diff --git a/Buildings/Applications/DataCenters/ChillerCooled/Examples/BaseClasses/PartialDataCenter.mo b/Buildings/Applications/DataCenters/ChillerCooled/Examples/BaseClasses/PartialDataCenter.mo
index 1e23ed09aac..1c741e37323 100644
--- a/Buildings/Applications/DataCenters/ChillerCooled/Examples/BaseClasses/PartialDataCenter.mo
+++ b/Buildings/Applications/DataCenters/ChillerCooled/Examples/BaseClasses/PartialDataCenter.mo
@@ -171,18 +171,15 @@ partial model PartialDataCenter
annotation (Placement(transformation(extent={{10,-10},{-10,10}},
rotation=90,
origin={-50,-150})));
- Buildings.Examples.ChillerPlant.BaseClasses.SimplifiedRoom roo(
+ Buildings.Examples.ChillerPlants.DataCenter.BaseClasses.SimplifiedRoom roo(
redeclare replaceable package Medium = MediumA,
rooLen=50,
rooWid=30,
rooHei=3,
m_flow_nominal=mAir_flow_nominal,
QRoo_flow=500000,
- nPorts=2)
- "Room model"
- annotation (Placement(transformation(
- extent={{10,-10},{-10,10}},
- origin={4,-180})));
+ nPorts=2) "Room model" annotation (Placement(transformation(extent={{10,-10},
+ {-10,10}}, origin={4,-180})));
Buildings.Fluid.Actuators.Valves.TwoWayLinear val[numChi](
redeclare each package Medium = MediumW,
each m_flow_nominal=m1_flow_chi_nominal,
diff --git a/Buildings/Applications/DataCenters/DXCooled/Examples/DXCooledAirsideEconomizer.mo b/Buildings/Applications/DataCenters/DXCooled/Examples/DXCooledAirsideEconomizer.mo
index 283dd51ef49..470b7da83fa 100644
--- a/Buildings/Applications/DataCenters/DXCooled/Examples/DXCooledAirsideEconomizer.mo
+++ b/Buildings/Applications/DataCenters/DXCooled/Examples/DXCooledAirsideEconomizer.mo
@@ -38,7 +38,7 @@ model DXCooledAirsideEconomizer
parameter Real minSpeFan = 0.2
"Minimum fan speed ratio required by variable speed fans";
- Buildings.Examples.ChillerPlant.BaseClasses.SimplifiedRoom roo(
+ Buildings.Examples.ChillerPlants.DataCenter.BaseClasses.SimplifiedRoom roo(
redeclare package Medium = Medium,
rooLen=50,
rooHei=3,
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/BypassValve/BypassValvePosition.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/BypassValve/BypassValvePosition.mo
new file mode 100644
index 00000000000..39eae7fa0f0
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/BypassValve/BypassValvePosition.mo
@@ -0,0 +1,194 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.BypassValve;
+block BypassValvePosition
+ "Sequence for controlling minimum flow bypass valve position"
+
+ parameter Integer nPum = 2
+ "Number of pumps";
+
+ parameter Buildings.Controls.OBC.CDL.Types.SimpleController controllerType= Buildings.Controls.OBC.CDL.Types.SimpleController.PI
+ "Type of controller";
+
+ parameter Real k(
+ final min=0,
+ final unit="1",
+ displayUnit="1") = 1
+ "Gain of controller";
+
+ parameter Real Ti(
+ final min=0,
+ final unit="s",
+ displayUnit="s",
+ final quantity="time") = 0.5
+ "Time constant of integrator block";
+
+ parameter Real Td(
+ final min=0,
+ final unit="s",
+ displayUnit="s",
+ final quantity="time") = 0.1
+ "Time constant of derivative block";
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uPumSta[nPum]
+ "Input signals indicating pump statuses"
+ annotation (Placement(transformation(extent={{-140,-20},{-100,20}}),
+ iconTransformation(extent={{-140,-40},{-100,0}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput VHotWat_flow(
+ final unit="m3/s",
+ displayUnit="m3/s",
+ final quantity="VolumeFlowRate")
+ "Measured hot-water flow-rate through primary circuit"
+ annotation (Placement(transformation(extent={{-140,20},{-100,60}}),
+ iconTransformation(extent={{-140,0},{-100,40}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput VHotWatMinSet_flow(
+ final unit="m3/s",
+ displayUnit="m3/s",
+ final quantity="VolumeFlowRate")
+ "Calculated hot water minimum flow setpoint through boilers"
+ annotation (Placement(transformation(extent={{-140,60},{-100,100}}),
+ iconTransformation(extent={{-140,40},{-100,80}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput uMinBypValPos(
+ final unit="1",
+ displayUnit="1",
+ final min=0)
+ "Minimum bypass valve position for condensation control in non-condensing boilers"
+ annotation (Placement(transformation(extent={{-140,-80},{-100,-40}}),
+ iconTransformation(extent={{-140,-80},{-100,-40}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealOutput yBypValPos(
+ final unit="1",
+ displayUnit="1",
+ final min=0)
+ "Bypass valve opening position"
+ annotation (Placement(transformation(extent={{100,-50},{140,-10}}),
+ iconTransformation(extent={{100,-20},{140,20}})));
+
+protected
+ Buildings.Controls.OBC.CDL.Continuous.Subtract sub2
+ "Difference between measured flowrate and minimum flow setpoint"
+ annotation (Placement(transformation(extent={{-70,30},{-50,50}})));
+
+ Buildings.Controls.OBC.CDL.Logical.MultiOr mulOr(
+ final nin=nPum)
+ "Block to detect if any of the pumps are proved ON"
+ annotation (Placement(transformation(extent={{-70,-10},{-50,10}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Divide div
+ "Normalize measured hot water flowrate"
+ annotation (Placement(transformation(extent={{-20,30},{0,50}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant con(
+ final k=0)
+ "Constant Real source"
+ annotation (Placement(transformation(extent={{-20,60},{0,80}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Max max
+ "Ensure bypass valve position is greater than lower limit for condensation control"
+ annotation (Placement(transformation(extent={{70,-40},{90,-20}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.AddParameter addPar(
+ final p=1e-6)
+ "Prevent division by zero"
+ annotation (Placement(transformation(extent={{-70,70},{-50,90}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.PIDWithReset conPID(
+ final controllerType=controllerType,
+ final k=k,
+ final Ti=Ti,
+ final Td=Td,
+ final yMax=1,
+ final yMin=0,
+ xi_start=1,
+ reverseActing=false)
+ "PID loop to regulate flow through primary loop using bypass valve"
+ annotation (Placement(transformation(extent={{20,60},{40,80}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Edge edg
+ "Reset PID loop when it is activated"
+ annotation (Placement(transformation(extent={{-20,-10},{0,10}})));
+
+equation
+
+ connect(mulOr.u[1:nPum], uPumSta) annotation (Line(points={{-72,0},{-120,0}},
+ color={255,0,255}));
+
+ connect(uMinBypValPos, max.u2) annotation (Line(points={{-120,-60},{50,-60},{50,
+ -36},{68,-36}}, color={0,0,127}));
+ connect(max.y, yBypValPos)
+ annotation (Line(points={{92,-30},{120,-30}}, color={0,0,127}));
+ connect(VHotWatMinSet_flow, addPar.u)
+ annotation (Line(points={{-120,80},{-72,80}}, color={0,0,127}));
+ connect(addPar.y, div.u2) annotation (Line(points={{-48,80},{-40,80},{-40,34},
+ {-22,34}}, color={0,0,127}));
+ connect(con.y, conPID.u_s)
+ annotation (Line(points={{2,70},{18,70}}, color={0,0,127}));
+ connect(div.y, conPID.u_m)
+ annotation (Line(points={{2,40},{30,40},{30,58}}, color={0,0,127}));
+ connect(mulOr.y, edg.u) annotation (Line(points={{-48,0},{-22,0}},
+ color={255,0,255}));
+ connect(edg.y, conPID.trigger)
+ annotation (Line(points={{2,0},{24,0},{24,58}}, color={255,0,255}));
+
+ connect(conPID.y, max.u1) annotation (Line(points={{42,70},{50,70},{50,-24},{68,
+ -24}}, color={0,0,127}));
+ connect(sub2.y, div.u1) annotation (Line(points={{-48,40},{-28,40},{-28,46},{-22,
+ 46}}, color={0,0,127}));
+ connect(VHotWatMinSet_flow,sub2. u1) annotation (Line(points={{-120,80},{-80,80},
+ {-80,46},{-72,46}}, color={0,0,127}));
+ connect(VHotWat_flow,sub2. u2) annotation (Line(points={{-120,40},{-80,40},{-80,
+ 34},{-72,34}}, color={0,0,127}));
+annotation (defaultComponentName="bypValPos",
+ Icon(coordinateSystem(preserveAspectRatio=false, extent={{-100,-100},{100,100}}),
+ graphics={Rectangle(
+ extent={{-100,100},{100,-100}},
+ lineColor={28,108,200},
+ fillColor={255,255,255},
+ fillPattern=FillPattern.Solid),
+ Text(
+ extent={{-70,20},{70,-20}},
+ textColor={0,0,0},
+ fillColor={255,255,255},
+ fillPattern=FillPattern.None,
+ textString="bypValPos"),
+ Text(
+ extent={{-100,146},{100,108}},
+ textColor={0,0,255},
+ textString="%name")}),
+ Diagram(coordinateSystem(preserveAspectRatio=false, extent={{-100,-100},{100,100}})),
+ Documentation(info="
+
+ Control sequence for bypass circuit valve position yBypValPos
+ for boiler plant loop.
+
+
+ -
+ The bypass valve is enabled when any of the hot-water supply pumps are proven on
+
uPumSta = true
, and disabled otherwise.
+
+ -
+ When enabled, a PID control loop modulates the bypass valve to maintain
+ a primary circuit flow rate of
VHotWatMinSet_flow
, calculated in class
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.SetPoints.MinimumFlowSetpoint.
+
+ -
+ When all the pumps are not proved on
uPumSta = false
, the valve
+ is fully opened.
+
+ -
+ When a non-condensing boiler is enabled, the bypass valve position is set to the
+ higher value between the signal generated by the PID loop, and the minimum valve
+ position for condensation control
uMinBypValPos
.
+
+
+ ", revisions="
+
+ -
+ August 17, 2020, by Karthik Devaprasad:
+ First implementation.
+
+
+ "));
+end BypassValvePosition;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/BypassValve/Validation/BypassValvePosition.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/BypassValve/Validation/BypassValvePosition.mo
new file mode 100644
index 00000000000..2cbf2ebfdc3
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/BypassValve/Validation/BypassValvePosition.mo
@@ -0,0 +1,105 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.BypassValve.Validation;
+block BypassValvePosition
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.BypassValve.BypassValvePosition
+ bypValPos(
+ final nPum=2,
+ final k=1,
+ final Ti=10,
+ final Td=10e-6)
+ "Test instance for bypass valve controller"
+ annotation (Placement(transformation(extent={{10,-10},{30,10}})));
+
+protected
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant con(
+ final k=1.2)
+ "Minimum flow setpoint"
+ annotation (Placement(transformation(extent={{-40,50},{-20,70}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Sine sin(
+ final amplitude=0.5,
+ final freqHz=1/75,
+ final phase=0,
+ final offset=1.2,
+ final startTime=1)
+ "Sine input"
+ annotation (Placement(transformation(extent={{-80,10},{-60,30}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Pulse booPul(
+ final width=0.5,
+ final period=300)
+ "Boolean pulse generator"
+ annotation (Placement(transformation(extent={{-80,-30},{-60,-10}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant con1(
+ final k=0.2)
+ "Minimum valve position for condensation control"
+ annotation (Placement(transformation(extent={{-40,-70},{-20,-50}})));
+
+ Buildings.Controls.OBC.CDL.Routing.BooleanScalarReplicator booRep(
+ final nout=2)
+ "Boolean replicator"
+ annotation (Placement(transformation(extent={{-40,-30},{-20,-10}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant con2(
+ final k=0)
+ "Constant zero signal"
+ annotation (Placement(transformation(extent={{-80,50},{-60,70}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Switch swi
+ "Pass zero flowrate when pumps are switched off"
+ annotation (Placement(transformation(extent={{-40,10},{-20,30}})));
+
+equation
+ connect(con.y, bypValPos.VHotWatMinSet_flow) annotation (Line(points={{-18,60},
+ {0,60},{0,6},{8,6}}, color={0,0,127}));
+ connect(con1.y, bypValPos.uMinBypValPos) annotation (Line(points={{-18,-60},{0,
+ -60},{0,-6},{8,-6}}, color={0,0,127}));
+ connect(booPul.y, booRep.u)
+ annotation (Line(points={{-58,-20},{-42,-20}}, color={255,0,255}));
+ connect(booRep.y, bypValPos.uPumSta) annotation (Line(points={{-18,-20},{-10,-20},
+ {-10,-2},{8,-2}}, color={255,0,255}));
+
+ connect(swi.y, bypValPos.VHotWat_flow) annotation (Line(points={{-18,20},{-10,
+ 20},{-10,2},{8,2}}, color={0,0,127}));
+ connect(sin.y, swi.u1) annotation (Line(points={{-58,20},{-50,20},{-50,28},{-42,
+ 28}}, color={0,0,127}));
+ connect(con2.y, swi.u3) annotation (Line(points={{-58,60},{-54,60},{-54,12},{-42,
+ 12}}, color={0,0,127}));
+ connect(booPul.y, swi.u2) annotation (Line(points={{-58,-20},{-46,-20},{-46,20},
+ {-42,20}}, color={255,0,255}));
+annotation (
+Documentation(info="
+
+This example validates
+
+Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.BypassValve.BypassValvePosition.
+
+", revisions="
+
+-
+August 17, 2020, by Karthik Devaprasad:
+First implementation.
+
+
+"),
+ Icon(coordinateSystem(preserveAspectRatio=false), graphics={
+ Ellipse(lineColor = {75,138,73},
+ fillColor={255,255,255},
+ fillPattern = FillPattern.Solid,
+ extent={{-100,-100},{100,100}}),
+ Polygon(lineColor = {0,0,255},
+ fillColor = {75,138,73},
+ pattern = LinePattern.None,
+ fillPattern = FillPattern.Solid,
+ points={{-36,60},{64,0},{-36,-60},{-36,60}})}), Diagram(
+ coordinateSystem(preserveAspectRatio=false)),
+ __Dymola_Commands(file=
+ "./Resources/Scripts/Dymola/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/BypassValve/Validation/BypassValvePosition.mos"
+ "Simulate and plot"),
+ experiment(
+ StartTime=0,
+ StopTime=300,
+ Interval=1,
+ Tolerance=1e-06));
+end BypassValvePosition;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/BypassValve/Validation/package.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/BypassValve/Validation/package.mo
new file mode 100644
index 00000000000..e9aa405304f
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/BypassValve/Validation/package.mo
@@ -0,0 +1,32 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.BypassValve;
+package Validation "Validation models for BypassValve sequences"
+
+
+
+
+ annotation (Icon(graphics={
+ Rectangle(
+ lineColor={200,200,200},
+ fillColor={248,248,248},
+ fillPattern=FillPattern.HorizontalCylinder,
+ extent={{-100,-100},{100,100}},
+ radius=25.0),
+ Rectangle(
+ lineColor={128,128,128},
+ extent={{-100,-100},{100,100}},
+ radius=25.0),
+ Polygon(
+ origin={8,14},
+ lineColor={78,138,73},
+ fillColor={78,138,73},
+ pattern=LinePattern.None,
+ fillPattern=FillPattern.Solid,
+ points={{-58.0,46.0},{42.0,-14.0},{-58.0,-74.0},{-58.0,46.0}})}),
+ Documentation(info="
+
+This package contains validation models for the classes in
+
+Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.BypassValve.
+
+"));
+end Validation;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/BypassValve/Validation/package.order b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/BypassValve/Validation/package.order
new file mode 100644
index 00000000000..6f71a7959fc
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/BypassValve/Validation/package.order
@@ -0,0 +1 @@
+BypassValvePosition
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/BypassValve/package.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/BypassValve/package.mo
new file mode 100644
index 00000000000..73c036b4bd6
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/BypassValve/package.mo
@@ -0,0 +1,42 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant;
+package BypassValve "Control sequences for minimum flow bypass valve"
+ annotation(Icon(graphics={
+ Rectangle(
+ lineColor={200,200,200},
+ fillColor={248,248,248},
+ fillPattern=FillPattern.HorizontalCylinder,
+ extent={{-100,-100},{100,100}},
+ radius=25.0),
+ Rectangle(
+ lineColor={128,128,128},
+ extent={{-100,-100},{100,100}},
+ radius=25.0),
+ Ellipse(
+ origin={10,10},
+ fillColor={76,76,76},
+ pattern=LinePattern.None,
+ fillPattern=FillPattern.Solid,
+ extent={{-80.0,-80.0},{-20.0,-20.0}}),
+ Ellipse(
+ origin={10,10},
+ pattern=LinePattern.None,
+ fillPattern=FillPattern.Solid,
+ extent={{0.0,-80.0},{60.0,-20.0}}),
+ Ellipse(
+ origin={10,10},
+ fillColor={128,128,128},
+ pattern=LinePattern.None,
+ fillPattern=FillPattern.Solid,
+ extent={{0.0,0.0},{60.0,60.0}}),
+ Ellipse(
+ origin={10,10},
+ lineColor={128,128,128},
+ fillColor={255,255,255},
+ fillPattern=FillPattern.Solid,
+ extent={{-80.0,0.0},{-20.0,60.0}})}),
+ Documentation(info="
+
+ This package contains control sequences for the minimum flow bypass valve.
+
+ "));
+end BypassValve;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/BypassValve/package.order b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/BypassValve/package.order
new file mode 100644
index 00000000000..79ae6896090
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/BypassValve/package.order
@@ -0,0 +1,2 @@
+BypassValvePosition
+Validation
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Controller.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Controller.mo
new file mode 100644
index 00000000000..1385924af7b
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Controller.mo
@@ -0,0 +1,2260 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant;
+model Controller
+ "Boiler plant controller"
+
+ parameter Buildings.Controls.OBC.CDL.Types.SimpleController controllerType_priPum= Buildings.Controls.OBC.CDL.Types.SimpleController.PI
+ "Type of controller"
+ annotation (Dialog(tab="Primary pump control parameters", group="PID parameters"));
+
+ parameter Buildings.Controls.OBC.CDL.Types.SimpleController controllerType_bypVal= Buildings.Controls.OBC.CDL.Types.SimpleController.PI
+ "Type of controller"
+ annotation(Dialog(tab="Bypass valve control parameters"));
+
+ parameter Buildings.Controls.OBC.CDL.Types.SimpleController controllerType_secPum= Buildings.Controls.OBC.CDL.Types.SimpleController.PI
+ "Type of controller"
+ annotation(Dialog(tab="Secondary pump control parameters", group="PID parameters"));
+
+ parameter Boolean have_priOnl = false
+ "Is the boiler plant a primary-only, condensing boiler plant?"
+ annotation(Dialog(tab="General", group="Boiler plant configuration parameters"));
+
+ parameter Boolean have_heaPriPum = true
+ "True: Headered primary hot water pumps;
+ False: Dedicated primary hot water pumps"
+ annotation(Dialog(tab="General", group="Boiler plant configuration parameters"));
+
+ parameter Boolean have_varPriPum = false
+ "True: Variable-speed primary pumps;
+ False: Fixed-speed primary pumps"
+ annotation(Dialog(tab="General", group="Boiler plant configuration parameters"));
+
+ parameter Boolean have_secFloSen=false
+ "True: Flowrate sensor in secondary loop;
+ False: Flowrate sensor in decoupler"
+ annotation(Dialog(tab="General",
+ group="Boiler plant configuration parameters",
+ enable = not have_priOnl));
+
+ parameter Boolean have_priSecTemSen=false
+ "True: Temperature sensors in primary and secondary loops;
+ False: Temperature sensors in boiler supply and secondary loop"
+ annotation (Dialog(tab="Primary pump control parameters",
+ group="General parameters",
+ enable = speConTypPri == Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Types.PrimaryPumpSpeedControlTypes.temperature));
+
+ parameter Boolean have_varSecPum = false
+ "True: Variable-speed secondary pumps;
+ False: Fixed-speed secondary pumps"
+ annotation (Dialog(group="Boiler plant configuration parameters"));
+
+ parameter Integer nIgnReq(
+ final min=0) = 0
+ "Number of hot-water requests to be ignored before enabling boiler plant loop"
+ annotation(dialog(tab="Plant enable/disable parameters"));
+
+ parameter Integer nSchRow(
+ final min=1) = 4
+ "Number of rows to be created for plant schedule table"
+ annotation(dialog(tab="Plant enable/disable parameters"));
+
+ parameter Integer nBoi
+ "Number of boilers"
+ annotation(Dialog(tab="General", group="Boiler plant configuration parameters"));
+
+ parameter Integer boiTyp[nBoi]={
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Types.BoilerTypes.condensingBoiler,
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Types.BoilerTypes.nonCondensingBoiler}
+ "Boiler type"
+ annotation(Dialog(tab="General", group="Boiler plant configuration parameters"));
+
+ parameter Integer nSta
+ "Number of boiler plant stages"
+ annotation(Dialog(tab="General", group="Boiler plant configuration parameters"));
+
+ parameter Integer staMat[nSta, nBoi]
+ "Staging matrix with stage as row index and boiler as column index"
+ annotation(Dialog(tab="General", group="Boiler plant configuration parameters"));
+
+ parameter Integer nPumPri
+ "Number of primary pumps in the boiler plant loop"
+ annotation(Dialog(tab="General", group="Boiler plant configuration parameters"));
+
+ parameter Integer nHotWatResReqIgn = 2
+ "Number of hot-water supply temperature reset requests to be ignored"
+ annotation(Dialog(tab="Supply temperature reset parameters", group="Trim-and-Respond Logic parameters"));
+
+ parameter Integer nSenPri
+ "Total number of remote differential pressure sensors in primary loop"
+ annotation(Dialog(tab="General",
+ group="Boiler plant configuration parameters",
+ enable = have_remDPRegPri or have_locDPRegPri));
+
+ parameter Integer numIgnReq = 0
+ "Number of ignored requests"
+ annotation (Dialog(tab="Primary pump control parameters",
+ group="Temperature-based speed regulation",
+ enable= speConTypPri == Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Types.PrimaryPumpSpeedControlTypes.temperature));
+
+ parameter Integer nPumPri_nominal(
+ final max=nPumPri,
+ final min=1) = nPumPri
+ "Total number of pumps that operate at design conditions"
+ annotation (Dialog(group="Boiler plant configuration parameters"));
+
+ parameter Integer nPumSec
+ "Total number of secondary hot water pumps"
+ annotation (Dialog(group="Boiler plant configuration parameters"));
+
+ parameter Integer nSenSec
+ "Total number of remote differential pressure sensors in secondary loop"
+ annotation (Dialog(group="Boiler plant configuration parameters"));
+
+ parameter Integer nPumSec_nominal(
+ final max=nPumSec) = nPumSec
+ "Total number of pumps that operate at design conditions in secondary loop"
+ annotation (Dialog(group="Boiler plant configuration parameters"));
+
+ parameter Real schTab[nSchRow,2] = [0,1;6,1;18,1;24,1]
+ "Table defining schedule for enabling plant"
+ annotation(dialog(tab="Plant enable/disable parameters"));
+
+ parameter Real TOutLoc(
+ final unit="K",
+ displayUnit="K") = 300
+ "Boiler lock-out temperature for outdoor air"
+ annotation(dialog(tab="Plant enable/disable parameters"));
+
+ parameter Real locDt(
+ final unit="K",
+ displayUnit="K",
+ final quantity="ThermodynamicTemperature") = 1
+ "Temperature deadband for boiler lockout"
+ annotation(dialog(tab="Plant enable/disable parameters", group="Advanced"));
+
+ parameter Real plaOffThrTim(
+ final unit="s",
+ displayUnit="s") = 900
+ "Minimum time for which the plant has to stay off once it has been disabled"
+ annotation(dialog(tab="Plant enable/disable parameters"));
+
+ parameter Real plaOnThrTim(
+ final unit="s",
+ displayUnit="s") = plaOffThrTim
+ "Minimum time for which the boiler plant has to stay on once it has been enabled"
+ annotation(dialog(tab="Plant enable/disable parameters"));
+
+ parameter Real staOnReqTim(
+ final unit="s",
+ displayUnit="s") = 180
+ "Time-limit for receiving hot-water requests to maintain enabled plant on"
+ annotation(dialog(tab="Plant enable/disable parameters"));
+
+ parameter Real boiDesCap[nBoi](
+ final unit="W",
+ displayUnit="W",
+ final quantity="Power")
+ "Design boiler capacities vector"
+ annotation(Dialog(tab="General", group="Boiler plant configuration parameters"));
+
+ parameter Real boiFirMin[nBoi](
+ final unit="1",
+ displayUnit="1")
+ "Boiler minimum firing ratio"
+ annotation(Dialog(tab="General", group="Boiler plant configuration parameters"));
+
+ parameter Real delStaCha(
+ final unit="s",
+ displayUnit="s",
+ final quantity="Time") = 600
+ "Hold period for each stage change"
+ annotation(Dialog(tab="Staging setpoint parameters", group="General parameters"));
+
+ parameter Real avePer(
+ final unit="s",
+ displayUnit="s",
+ final quantity="Time") = 300
+ "Time period for the capacity requirement rolling average"
+ annotation(Dialog(tab="Staging setpoint parameters", group="Capacity requirement calculation parameters"));
+
+ parameter Real fraNonConBoi(
+ final unit="1",
+ displayUnit="1") = 0.9
+ "Fraction of current stage design capacity at which efficiency condition is
+ satisfied for non-condensing boilers"
+ annotation(Dialog(tab="Staging setpoint parameters", group="Efficiency condition parameters"));
+
+ parameter Real fraConBoi(
+ final unit="1",
+ displayUnit="1") = 1.5
+ "Fraction of higher stage design capacity at which efficiency condition is
+ satisfied for condensing boilers"
+ annotation(Dialog(tab="Staging setpoint parameters", group="Efficiency condition parameters"));
+
+ parameter Real delEffCon(
+ final unit="s",
+ displayUnit="s",
+ final quantity="Time") = 600
+ "Enable delay for heating capacity requirement condition"
+ annotation(Dialog(tab="Staging setpoint parameters", group="Efficiency condition parameters"));
+
+ parameter Real TDif(
+ final unit="K",
+ displayUnit="K",
+ final quantity="TemperatureDifference") = 10
+ "Required temperature difference between setpoint and measured temperature"
+ annotation(Dialog(tab="Staging setpoint parameters", group="Failsafe condition parameters"));
+
+ parameter Real delFaiCon(
+ final unit="s",
+ displayUnit="s",
+ final quantity="Time") = 900
+ "Enable delay for temperature condition"
+ annotation(Dialog(tab="Staging setpoint parameters", group="Failsafe condition parameters"));
+
+ parameter Real sigDif(
+ final unit="1",
+ displayUnit="1") = 0.1
+ "Signal hysteresis deadband for flowrate measurements"
+ annotation (Dialog(tab="Staging setpoint parameters", group="Advanced"));
+
+ parameter Real TDifHys(
+ final unit="K",
+ displayUnit="K",
+ final quantity="TemperatureDifference") = 1
+ "Temperature deadband for hysteresis loop"
+ annotation (Dialog(tab="Staging setpoint parameters", group="Advanced"));
+
+ parameter Real fraMinFir(
+ final unit="1",
+ displayUnit="1") = 1.1
+ "Fraction of boiler minimum firing rate that required capacity needs to be
+ to initiate stage-down process"
+ annotation(Dialog(tab="Staging setpoint parameters", group="Staging down parameters"));
+
+ parameter Real delMinFir(
+ final unit="s",
+ displayUnit="s",
+ final quantity="Time") = 300
+ "Delay for staging based on minimum firing rate of current stage"
+ annotation(Dialog(tab="Staging setpoint parameters", group="Staging down parameters"));
+
+ parameter Real fraDesCap(
+ final unit="1",
+ displayUnit="1") = 0.8
+ "Fraction of design capacity of next lower stage that heating capacity needs
+ to be for staging down"
+ annotation(Dialog(tab="Staging setpoint parameters", group="Staging down parameters"));
+
+ parameter Real delDesCapNonConBoi(
+ final unit="s",
+ displayUnit="s",
+ final quantity="Time") = 600
+ "Enable delay for capacity requirement condition for non-condensing boilers"
+ annotation(Dialog(tab="Staging setpoint parameters", group="Staging down parameters"));
+
+ parameter Real delDesCapConBoi(
+ final unit="s",
+ displayUnit="s",
+ final quantity="Time") = 300
+ "Enable delay for capacity requirement condition for condensing boilers"
+ annotation(Dialog(tab="Staging setpoint parameters", group="Staging down parameters"));
+
+ parameter Real delBypVal(
+ final unit="s",
+ displayUnit="s",
+ final quantity="Time") = 300
+ "Enable delay for bypass valve condition for primary-only plants"
+ annotation (
+ Evaluate=true,
+ Dialog(
+ enable=have_priOnl,
+ tab="Staging setpoint parameters",
+ group="Staging down parameters"));
+
+ parameter Real TCirDif(
+ final unit="K",
+ displayUnit="K",
+ final quantity="TemperatureDifference") = 3
+ "Required return water temperature difference between primary and secondary
+ circuits for staging down"
+ annotation (
+ Evaluate=true,
+ Dialog(
+ enable=not
+ (have_priOnl),
+ tab="Staging setpoint parameters",
+ group="Staging down parameters"));
+
+ parameter Real delTRetDif(
+ final unit="s",
+ displayUnit="s",
+ final quantity="Time") = 300
+ "Enable delay for measured hot water return temperature difference condition"
+ annotation (
+ Evaluate=true,
+ Dialog(
+ enable=not
+ (have_priOnl),
+ tab="Staging setpoint parameters",
+ group="Staging down parameters"));
+
+ parameter Real bypValClo(
+ final unit="1",
+ displayUnit="1") = 0
+ "Adjustment for signal received when bypass valve is closed"
+ annotation (
+ Evaluate=true,
+ Dialog(
+ enable=have_priOnl,
+ tab="Staging setpoint parameters",
+ group="Advanced"));
+
+ parameter Real dTemp(
+ final unit="K",
+ displayUnit="K",
+ final quantity="TemperatureDifference") = 0.1
+ "Hysteresis deadband for measured temperatures"
+ annotation (Dialog(tab="Staging setpoint parameters", group="Advanced"));
+
+ parameter Real minFloSet[nBoi](
+ final unit="m3/s",
+ displayUnit="m3/s",
+ final quantity="VolumeFlowRate",
+ final min=1e-6,
+ final max=maxFloSet)
+ "Design minimum hot water flow through each boiler"
+ annotation(Dialog(tab="General", group="Boiler plant configuration parameters"));
+
+ parameter Real maxFloSet[nBoi](
+ final unit="m3/s",
+ displayUnit="m3/s",
+ final quantity="VolumeFlowRate",
+ final min=minFloSet)
+ "Design maximum hot water flow through each boiler"
+ annotation(Dialog(tab="General", group="Boiler plant configuration parameters"));
+
+ parameter Real bypSetRat(
+ final unit="m3/s2",
+ displayUnit="m3/s2",
+ final min=0) = 0.001
+ "Rate at which to reset bypass valve setpoint during stage change"
+ annotation(Dialog(tab="Staging setpoint parameters", group="General parameters"));
+
+ parameter Real TPlaHotWatSetMax(
+ final unit="K",
+ displayUnit="K",
+ final quantity="ThermodynamicTemperature") = 353.15
+ "The maximum allowed hot-water setpoint temperature for the plant"
+ annotation(Dialog(tab="Supply temperature reset parameters", group="Trim-and-Respond Logic parameters"));
+
+ parameter Real TConBoiHotWatSetMax(
+ final unit="K",
+ displayUnit="K",
+ final quantity="ThermodynamicTemperature") = 353.15
+ "The maximum allowed hot water setpoint temperature for condensing boilers"
+ annotation(Dialog(tab="Supply temperature reset parameters", group="Trim-and-Respond Logic parameters"));
+
+ parameter Real TConBoiHotWatSetOff(
+ final unit="K",
+ displayUnit="K",
+ final quantity="TemperatureDifference") = -10
+ "The offset for hot water setpoint temperature for condensing boilers in
+ non-condensing stage type"
+ annotation(Dialog(tab="Supply temperature reset parameters", group="General parameters"));
+
+ parameter Real THotWatSetMinNonConBoi(
+ final unit="K",
+ displayUnit="K",
+ final quantity="ThermodynamicTemperature") = 341.48
+ "The minimum allowed hot-water setpoint temperature for non-condensing boilers"
+ annotation(Dialog(tab="Supply temperature reset parameters", group="Trim-and-Respond Logic parameters"));
+
+ parameter Real THotWatSetMinConBoi(
+ final unit="K",
+ displayUnit="K",
+ final quantity="ThermodynamicTemperature") = 305.37
+ "The minimum allowed hot-water setpoint temperature for condensing boilers"
+ annotation(Dialog(tab="Supply temperature reset parameters", group="Trim-and-Respond Logic parameters"));
+
+ parameter Real delTimVal(
+ final unit="s",
+ displayUnit="s",
+ final quantity="Time") = 600
+ "Delay time"
+ annotation(Dialog(tab="Supply temperature reset parameters", group="Trim-and-Respond Logic parameters"));
+
+ parameter Real samPerVal(
+ final unit="s",
+ displayUnit="s",
+ final quantity="Time") = 300
+ "Sample period"
+ annotation(Dialog(tab="Supply temperature reset parameters", group="Trim-and-Respond Logic parameters"));
+
+ parameter Real triAmoVal(
+ final unit="K",
+ displayUnit="K",
+ final quantity="TemperatureDifference") = -2
+ "Setpoint trim value"
+ annotation(Dialog(tab="Supply temperature reset parameters", group="Trim-and-Respond Logic parameters"));
+
+ parameter Real resAmoVal(
+ final unit="K",
+ displayUnit="K",
+ final quantity="TemperatureDifference") = 3
+ "Setpoint respond value"
+ annotation(Dialog(tab="Supply temperature reset parameters", group="Trim-and-Respond Logic parameters"));
+
+ parameter Real maxResVal(
+ final unit="K",
+ displayUnit="K",
+ final quantity="TemperatureDifference") = 7
+ "Setpoint maximum respond value"
+ annotation(Dialog(tab="Supply temperature reset parameters", group="Trim-and-Respond Logic parameters"));
+
+ parameter Real holTimVal(
+ final unit="s",
+ displayUnit="s",
+ final quantity="Time") = 600
+ "Minimum setpoint hold time for stage change process"
+ annotation(Dialog(tab="Supply temperature reset parameters", group="General parameters"));
+
+ parameter Real TMinSupNonConBoi(
+ final unit="K",
+ displayUnit="K",
+ final quantity="ThermodynamicTemperature") = 333.2
+ "Minimum supply temperature required for non-condensing boilers"
+ annotation(Dialog(tab="General", group="Boiler plant configuration parameters"));
+
+ parameter Real delProSupTemSet(
+ final unit="s",
+ displayUnit="s",
+ final quantity="time")=300
+ "Process time-out for hot water supply temperature setpoint reset"
+ annotation (Dialog(tab="Staging process parameters",group="Time and delay parameters"));
+
+ parameter Real delEnaMinFloSet(
+ final unit="s",
+ displayUnit="s",
+ final quantity="time")=60
+ "Enable delay after minimum flow setpoint is achieved in bypass valve"
+ annotation (Dialog(tab="Staging process parameters",group="Time and delay parameters"));
+
+ parameter Real chaIsoValRat(
+ final unit="1/s",
+ displayUnit="1/s") = 1/60
+ "Rate at which to slowly change isolation valve position, should be determined
+ in the field"
+ annotation (Dialog(tab="Staging process parameters",group="Time and delay parameters"));
+
+ parameter Real chaIsoValTim(
+ final unit="s",
+ displayUnit="s",
+ final quantity="time") = 1/chaIsoValRat
+ "Time to slowly change isolation valve position from fully closed to fully open,
+ should be determined in the field"
+ annotation (Dialog(tab="Staging process parameters", group="Time and delay parameters"));
+
+ parameter Real delPreBoiEna(
+ final unit="s",
+ displayUnit="s",
+ final quantity="time") = 30
+ "Time delay after valve and pump change process has been completed before
+ starting boiler change process"
+ annotation (Dialog(tab="Staging process parameters",group="Time and delay parameters"));
+
+ parameter Real boiChaProOnTim(
+ final unit="s",
+ displayUnit="s",
+ final quantity="time") = 300
+ "Enabled boiler operation time to indicate if it is proven on during a staging
+ process where one boiler is turned on and the other is turned off"
+ annotation (Dialog(tab="Staging process parameters",group="Time and delay parameters"));
+
+ parameter Real delBoiEna(
+ final unit="s",
+ displayUnit="s",
+ final quantity="time") = 180
+ "Time delay after boiler change process has been completed before turning off
+ excess valves and pumps"
+ annotation (Dialog(tab="Staging process parameters",group="Time and delay parameters"));
+
+ parameter Real k_bypVal(
+ final min=0,
+ final unit="1",
+ displayUnit="1") = 1
+ "Gain of controller"
+ annotation(Dialog(tab="Bypass valve control parameters"));
+
+ parameter Real Ti_bypVal(
+ final min=0,
+ final unit="s",
+ displayUnit="s",
+ final quantity="time") = 0.5
+ "Time constant of integrator block"
+ annotation(Dialog(tab="Bypass valve control parameters"));
+
+ parameter Real Td_bypVal(
+ final min=0,
+ final unit="s",
+ displayUnit="s",
+ final quantity="time") = 0.1
+ "Time constant of derivative block"
+ annotation(Dialog(tab="Bypass valve control parameters"));
+
+ parameter Real minPumSpePri(
+ final unit="1",
+ displayUnit="1",
+ final min=0,
+ final max=maxPumSpePri) = 0.1
+ "Minimum pump speed"
+ annotation (Dialog(tab="Primary pump control parameters", group="General parameters", enable=have_varPriPum));
+
+ parameter Real maxPumSpePri(
+ final unit="1",
+ displayUnit="1",
+ final min=minPumSpePri,
+ final max=1) = 1
+ "Maximum pump speed"
+ annotation (Dialog(tab="Primary pump control parameters", group="General parameters", enable=have_varPriPum));
+
+ parameter Real VHotWatPri_flow_nominal(
+ final min=1e-6,
+ final unit="m3/s",
+ displayUnit="m3/s",
+ final quantity="VolumeFlowRate")
+ "Plant design hot water flow rate thorugh primary loop"
+ annotation (Dialog(group="Boiler plant configuration parameters"));
+
+ parameter Real boiDesFlo[nBoi](
+ final min=1e-6,
+ final unit="m3/s",
+ displayUnit="m3/s",
+ final quantity="VolumeFlowRate")
+ "Vector of design flowrates for all boilers in plant"
+ annotation (Dialog(group="Boiler plant configuration parameters"));
+
+ parameter Real maxLocDpPri(
+ final unit="Pa",
+ displayUnit="Pa",
+ final quantity="PressureDifference",
+ final min=1e-6) = 5*6894.75
+ "Maximum primary loop local differential pressure setpoint"
+ annotation (Dialog(tab="Primary pump control parameters", group="DP-based speed regulation",
+ enable = speConTypPri == Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Types.PrimaryPumpSpeedControlTypes.localDP
+ or speConTypPri == Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Types.PrimaryPumpSpeedControlTypes.remoteDP));
+
+ parameter Real minLocDpPri(
+ final unit="Pa",
+ displayUnit="Pa",
+ final quantity="PressureDifference",
+ final min=1e-6) = 5*6894.75
+ "Minimum primary loop local differential pressure setpoint"
+ annotation (Dialog(tab="Primary pump control parameters",
+ group="DP-based speed regulation",
+ enable = speConTypPri == Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Types.PrimaryPumpSpeedControlTypes.localDP
+ or speConTypPri == Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Types.PrimaryPumpSpeedControlTypes.remoteDP));
+
+ parameter Real offTimThr_priPum(
+ final unit="s",
+ displayUnit="s",
+ final quantity="time",
+ final min=0) = 180
+ "Threshold to check lead boiler off time"
+ annotation (Dialog(tab="Primary pump control parameters", group="Pump staging parameters"));
+
+ parameter Real timPer_priPum(
+ final unit="s",
+ displayUnit="s",
+ final quantity="time",
+ final min=0) = 600
+ "Delay time period for enabling and disabling lag pumps"
+ annotation (Dialog(tab="Primary pump control parameters", group="Pump staging parameters"));
+
+ parameter Real staCon_priPum(
+ final unit="1",
+ displayUnit="1") = -0.03
+ "Constant used in the staging equation"
+ annotation (Dialog(tab="Primary pump control parameters", group="Pump staging parameters"));
+
+ parameter Real relFloHys_priPum(
+ final unit="1",
+ displayUnit="1") = 0.01
+ "Constant value used in hysteresis for checking relative flow rate"
+ annotation (Dialog(tab="Primary pump control parameters", group="Pump staging parameters"));
+
+ parameter Real delTim_priPum(
+ final unit="s",
+ displayUnit="s",
+ final quantity="time",
+ final min=0) = 900
+ "Delay time"
+ annotation (Dialog(tab="Primary pump control parameters",
+ group="Temperature-based speed regulation",
+ enable = speConTypPri == Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Types.PrimaryPumpSpeedControlTypes.temperature));
+
+ parameter Real samPer_priPum(
+ final unit="s",
+ displayUnit="s",
+ final quantity="time",
+ final min=0) = 120
+ "Sample period of component"
+ annotation (Dialog(tab="Primary pump control parameters",
+ group="Temperature-based speed regulation",
+ enable = speConTypPri == Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Types.PrimaryPumpSpeedControlTypes.temperature));
+
+ parameter Real triAmo_priPum(
+ final unit="1",
+ displayUnit="1") = -0.02
+ "Trim amount"
+ annotation (Dialog(tab="Primary pump control parameters",
+ group="Temperature-based speed regulation",
+ enable = speConTypPri == Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Types.PrimaryPumpSpeedControlTypes.temperature));
+
+ parameter Real resAmo_priPum(
+ final unit="1",
+ displayUnit="1") = 0.03
+ "Respond amount"
+ annotation (Dialog(tab="Primary pump control parameters",
+ group="Temperature-based speed regulation",
+ enable = speConTypPri == Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Types.PrimaryPumpSpeedControlTypes.temperature));
+
+ parameter Real maxRes_priPum(
+ final unit="1",
+ displayUnit="1") = 0.06
+ "Maximum response per time interval"
+ annotation (Dialog(tab="Primary pump control parameters",
+ group="Temperature-based speed regulation",
+ enable = speConTypPri == Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Types.PrimaryPumpSpeedControlTypes.temperature));
+
+ parameter Real twoReqLimLow_priPum(
+ final unit="K",
+ displayUnit="K",
+ final quantity="TemperatureDifference") = 1.2
+ "Lower limit of hysteresis loop sending two requests"
+ annotation (Dialog(tab="Primary pump control parameters",
+ group="Temperature-based speed regulation",
+ enable = speConTypPri == Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Types.PrimaryPumpSpeedControlTypes.temperature));
+
+ parameter Real twoReqLimHig_priPum(
+ final unit="K",
+ displayUnit="K",
+ final quantity="TemperatureDifference") = 2
+ "Higher limit of hysteresis loop sending two requests"
+ annotation (Dialog(tab="Primary pump control parameters",
+ group="Temperature-based speed regulation",
+ enable = speConTypPri == Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Types.PrimaryPumpSpeedControlTypes.temperature));
+
+ parameter Real oneReqLimLow_priPum(
+ final unit="K",
+ displayUnit="K",
+ final quantity="TemperatureDifference") = 0.2
+ "Lower limit of hysteresis loop sending one request"
+ annotation (Dialog(tab="Primary pump control parameters",
+ group="Temperature-based speed regulation",
+ enable = speConTypPri == Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Types.PrimaryPumpSpeedControlTypes.temperature));
+
+ parameter Real oneReqLimHig_priPum(
+ final unit="K",
+ displayUnit="K",
+ final quantity="TemperatureDifference") = 1
+ "Higher limit of hysteresis loop sending one request"
+ annotation (Dialog(tab="Primary pump control parameters",
+ group="Temperature-based speed regulation",
+ enable = speConTypPri == Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Types.PrimaryPumpSpeedControlTypes.temperature));
+
+ parameter Real k_priPum(
+ final unit="1",
+ displayUnit="1",
+ final min=0) = 1
+ "Gain of controller"
+ annotation (Dialog(tab="Primary pump control parameters", group="PID parameters"));
+
+ parameter Real Ti_priPum(
+ final unit="s",
+ displayUnit="s",
+ final quantity="time",
+ final min=0) = 0.5
+ "Time constant of integrator block"
+ annotation (Dialog(tab="Primary pump control parameters", group="PID parameters"));
+
+ parameter Real Td_priPum(
+ final unit="s",
+ displayUnit="s",
+ final quantity="time",
+ final min=0) = 0.1
+ "Time constant of derivative block"
+ annotation (Dialog(tab="Primary pump control parameters", group="PID parameters"));
+
+ parameter Real TRetSet(
+ final unit="K",
+ displayUnit="K",
+ final quantity="ThermodynamicTemperature") = 333.15
+ "Minimum hot water return temperature for optimal non-condensing boiler performance"
+ annotation(Dialog(tab="Condensation control parameters"));
+
+ parameter Real TRetMinAll(
+ final unit="K",
+ displayUnit="K",
+ final quantity="ThermodynamicTemperature") = 330.35
+ "Minimum allowed hot water return temperature for non-condensing boiler"
+ annotation(Dialog(tab="Condensation control parameters"));
+
+ parameter Real minSecPumSpe(
+ final unit="1",
+ displayUnit="1",
+ final min=0,
+ final max=1) = 0
+ "Minimum secondary pump speed"
+ annotation(Dialog(tab="Condensation control parameters"));
+
+ parameter Real minPriPumSpeSta[nSta](
+ final unit=fill("1",nSta),
+ displayUnit=fill("1",nSta),
+ final min=fill(0,nSta),
+ final max=fill(1,nSta))
+ "Vector of minimum primary pump speed for each stage"
+ annotation(Dialog(group="Boiler plant configuration parameters"));
+
+ parameter Real minPumSpeSec(
+ final unit="1",
+ displayUnit="1",
+ final min=0,
+ final max=maxPumSpeSec) = 0.1
+ "Minimum pump speed"
+ annotation (Dialog(tab="Secondary pump control parameters",
+ group="General parameters",
+ enable=have_varSecPum));
+
+ parameter Real maxPumSpeSec(
+ final unit="1",
+ displayUnit="1",
+ final min=minPumSpeSec,
+ final max=1) = 1
+ "Maximum pump speed"
+ annotation (Dialog(tab="Secondary pump control parameters",
+ group="General parameters",
+ enable=have_varSecPum));
+
+ parameter Real VHotWatSec_flow_nominal(
+ final unit="m3/s",
+ displayUnit="m3/s",
+ final quantity="VolumeFlowRate") = 0.5
+ "Secondary loop design hot water flow rate"
+ annotation (Dialog(group="Boiler plant configuration parameters"));
+
+ parameter Real maxLocDpSec(
+ final unit="Pa",
+ displayUnit="Pa",
+ final quantity="PressureDifference",
+ final min=1e-6) = 5*6894.75
+ "Maximum hot water loop local differential pressure setpoint in secondary loop"
+ annotation (Dialog(tab="Secondary pump control parameters", group="DP-based speed regulation",
+ enable = speConTypSec == Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Types.PrimaryPumpSpeedControlTypes.localDP));
+
+ parameter Real minLocDpSec(
+ final unit="Pa",
+ displayUnit="Pa",
+ final quantity="PressureDifference",
+ final min=1e-6) = 5*6894.75
+ "Minimum hot water loop local differential pressure setpoint in secondary loop"
+ annotation (Dialog(tab="Secondary pump control parameters",
+ group="DP-based speed regulation",
+ enable = speConTypSec == Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Types.PrimaryPumpSpeedControlTypes.localDP));
+
+ parameter Real offTimThr(
+ final unit="s",
+ displayUnit="s",
+ final quantity="time",
+ final min=0) = 180
+ "Threshold to check lead boiler off time"
+ annotation (Dialog(tab="Secondary pump control parameters",
+ group="Pump staging parameters",
+ enable=have_varSecPum and have_secFloSen));
+
+ parameter Real timPerSec(
+ final unit="s",
+ displayUnit="s",
+ final quantity="time",
+ final min=0) = 600
+ "Delay time period for enabling and disabling secondary lag pumps"
+ annotation (Dialog(tab="Secondary pump control parameters",
+ group="Pump staging parameters",
+ enable=have_varSecPum and have_secFloSen));
+
+ parameter Real staConSec(
+ final unit="1",
+ displayUnit="1") = -0.03
+ "Constant used in the staging equation"
+ annotation (Dialog(tab="Secondary pump control parameters",
+ group="Pump staging parameters",
+ enable=have_varSecPum and have_secFloSen));
+
+ parameter Real speLim(
+ final unit="1",
+ displayUnit="1") = 0.9
+ "Speed limit with longer enable delay for enabling next lag pump"
+ annotation (Dialog(tab="Secondary pump control parameters",
+ group="Pump staging parameters",
+ enable=have_varSecPum and not have_secFloSen));
+
+ parameter Real speLim1(
+ final unit="1",
+ displayUnit="1") = 0.99
+ "Speed limit with shorter enable delay for enabling next lag pump"
+ annotation (Dialog(tab="Secondary pump control parameters",
+ group="Pump staging parameters",
+ enable=have_varSecPum and not have_secFloSen));
+
+ parameter Real speLim2(
+ final unit="1",
+ displayUnit="1") = 0.4
+ "Speed limit for disabling last lag pump"
+ annotation (Dialog(tab="Secondary pump control parameters",
+ group="Pump staging parameters",
+ enable=have_varSecPum and not have_secFloSen));
+
+ parameter Real timPer1(
+ final unit="s",
+ displayUnit="s",
+ final quantity="time") = 300
+ "Delay time period for enabling next lag pump at speed limit speLim"
+ annotation (Dialog(tab="Secondary pump control parameters",
+ group="Pump staging parameters",
+ enable=have_varSecPum and not have_secFloSen));
+
+ parameter Real timPer2(
+ final unit="s",
+ displayUnit="s",
+ final quantity="time") = 60
+ "Delay time period for enabling next lag pump at speed limit speLim1"
+ annotation (Dialog(tab="Secondary pump control parameters",
+ group="Pump staging parameters",
+ enable=have_varSecPum and not have_secFloSen));
+
+ parameter Real timPer3(
+ final unit="s",
+ displayUnit="s",
+ final quantity="time") = 600
+ "Delay time period for disabling last lag pump"
+ annotation (Dialog(tab="Secondary pump control parameters",
+ group="Pump staging parameters",
+ enable=have_varSecPum and not have_secFloSen));
+
+ parameter Real k_sec(
+ final unit="1",
+ displayUnit="1",
+ final min=0) = 1
+ "Gain of controller"
+ annotation (Dialog(tab="Secondary pump control parameters",
+ group="PID parameters",
+ enable=have_varSecPum));
+
+ parameter Real Ti_sec(
+ final unit="s",
+ displayUnit="s",
+ final quantity="time",
+ final min=0) = 0.5
+ "Time constant of integrator block"
+ annotation (Dialog(tab="Secondary pump control parameters",
+ group="PID parameters",
+ enable=have_varSecPum));
+
+ parameter Real Td_sec(
+ final unit="s",
+ displayUnit="s",
+ final quantity="time",
+ final min=0) = 0.1
+ "Time constant of derivative block"
+ annotation (Dialog(tab="Secondary pump control parameters",
+ group="PID parameters",
+ enable=have_varSecPum));
+
+ parameter Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Types.PrimaryPumpSpeedControlTypes
+ speConTypPri = Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Types.PrimaryPumpSpeedControlTypes.remoteDP
+ "Primary pump speed regulation method"
+ annotation (Dialog(group="Boiler plant configuration parameters", enable=have_varPriPum));
+
+ parameter Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Types.SecondaryPumpSpeedControlTypes
+ speConTypSec = Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Types.SecondaryPumpSpeedControlTypes.remoteDP
+ "Secondary pump speed regulation method"
+ annotation (Dialog(group="Boiler plant configuration parameters", enable=have_varSecPum));
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uBoiAva[nBoi]
+ "Boiler availability status signal"
+ annotation (Placement(transformation(extent={{-440,50},{-400,90}}),
+ iconTransformation(extent={{-140,60},{-100,100}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uBoi[nBoi]
+ "Boiler status vector from plant"
+ annotation (Placement(transformation(extent={{-440,-380},{-400,-340}}),
+ iconTransformation(extent={{-140,-190},{-100,-150}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uPriPum[nPumPri]
+ "Primary pump proven on signal from plant"
+ annotation (Placement(transformation(extent={{-440,-420},{-400,-380}}),
+ iconTransformation(extent={{-140,-220},{-100,-180}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uSecPum[nPumSec] if not have_priOnl
+ "Secondary pump proven on signal"
+ annotation (Placement(transformation(extent={{-440,-460},{-400,-420}}),
+ iconTransformation(extent={{-140,-250},{-100,-210}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.IntegerInput plaReq
+ "Plant requests"
+ annotation (Placement(transformation(extent={{-440,330},{-400,370}}),
+ iconTransformation(extent={{-140,270},{-100,310}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.IntegerInput TSupResReq
+ "Hot water supply temperature reset requests"
+ annotation (Placement(transformation(extent={{-440,360},{-400,400}}),
+ iconTransformation(extent={{-140,300},{-100,340}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput TOut(
+ final unit="K",
+ displayUnit="degC",
+ final quantity="ThermodynamicTemperature")
+ "Measured outdoor air temperature"
+ annotation (Placement(transformation(extent={{-440,290},{-400,330}}),
+ iconTransformation(extent={{-140,240},{-100,280}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput TSupPri(
+ final unit="K",
+ displayUnit="degC",
+ final quantity="ThermodynamicTemperature")
+ "Measured hot water supply temperature"
+ annotation (Placement(transformation(extent={{-440,250},{-400,290}}),
+ iconTransformation(extent={{-140,210},{-100,250}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput TRetPri(
+ final unit="K",
+ displayUnit="degC",
+ final quantity="ThermodynamicTemperature")
+ "Measured hot water primary return temperature"
+ annotation (Placement(transformation(extent={{-440,210},{-400,250}}),
+ iconTransformation(extent={{-140,180},{-100,220}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput VHotWatPri_flow(
+ final unit="m3/s",
+ displayUnit="m3/s",
+ final quantity="VolumeFlowRate")
+ "Measured hot water primary circuit flowrate"
+ annotation (Placement(transformation(extent={{-440,170},{-400,210}}),
+ iconTransformation(extent={{-140,150},{-100,190}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput dpHotWatPri_rem[nSenPri](
+ final unit=fill("Pa", nSenPri),
+ displayUnit=fill("Pa", nSenPri),
+ final quantity=fill("PressureDifference", nSenPri)) if have_varPriPum and (have_remDPRegPri or have_locDPRegPri)
+ "Measured differential pressure between hot water supply and return in primary circuit"
+ annotation (Placement(transformation(extent={{-440,90},{-400,130}}),
+ iconTransformation(extent={{-140,90},{-100,130}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput TRetSec(
+ final unit="K",
+ displayUnit="degC",
+ final quantity="ThermodynamicTemperature") if not have_priOnl
+ "Measured hot water secondary return temperature"
+ annotation (Placement(transformation(extent={{-440,130},{-400,170}}),
+ iconTransformation(extent={{-140,120},{-100,160}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput VHotWatSec_flow(
+ final unit="m3/s",
+ displayUnit="m3/s",
+ final quantity="VolumeFlowRate") if not have_priOnl and have_secFloSen
+ "Measured hot water secondary circuit flowrate"
+ annotation (Placement(transformation(extent={{-440,-90},{-400,-50}}),
+ iconTransformation(extent={{-140,30},{-100,70}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput VHotWatDec_flow(
+ final unit="m3/s",
+ displayUnit="m3/s",
+ final quantity="VolumeFlowRate") if not have_priOnl and have_varPriPum
+ and have_floRegPri and not have_secFloSen
+ "Measured hot water flowrate through decoupler leg"
+ annotation (Placement(transformation(extent={{-440,-130},{-400,-90}}),
+ iconTransformation(extent={{-140,0},{-100,40}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput TSupSec(
+ final unit="K",
+ displayUnit="degC",
+ final quantity="ThermodynamicTemperature") if not have_priOnl and
+ have_varPriPum and have_temRegPri and have_priSecTemSen
+ "Measured hot water supply temperature in secondary circuit"
+ annotation (Placement(transformation(extent={{-440,-170},{-400,-130}}),
+ iconTransformation(extent={{-140,-40},{-100,0}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput TSupBoi[nBoi](
+ final unit=fill("K", nBoi),
+ displayUnit=fill("degC", nBoi),
+ final quantity=fill("ThermodynamicTemperature", nBoi)) if not have_priOnl
+ and have_varPriPum and have_temRegPri and not have_priSecTemSen
+ "Measured hot water supply temperatureat boiler outlets"
+ annotation (Placement(transformation(extent={{-440,-210},{-400,-170}}),
+ iconTransformation(extent={{-140,-70},{-100,-30}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput dpHotWatSec_rem[nSenSec](
+ final unit=fill("Pa", nSenSec),
+ displayUnit=fill("Pa", nSenSec),
+ final quantity=fill("PressureDifference", nSenSec)) if not
+ have_priOnl and have_varSecPum and (have_remDPRegSec or have_locDPRegSec)
+ "Measured differential pressure between hot water supply and return in secondary circuit"
+ annotation (Placement(transformation(extent={{-440,-250},{-400,-210}}),
+ iconTransformation(extent={{-140,-100},{-100,-60}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput dpHotWatPri_loc(
+ final unit="Pa",
+ displayUnit="Pa",
+ final quantity="PressureDifference") if have_varPriPum and have_locDPRegPri
+ "Measured differential pressure between hot water supply and return in primary circuit"
+ annotation (Placement(transformation(extent={{-440,-290},{-400,-250}}),
+ iconTransformation(extent={{-140,-130},{-100,-90}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput dpHotWatSec_loc(
+ final unit="Pa",
+ displayUnit="Pa",
+ final quantity="PressureDifference") if not have_priOnl and
+ have_varSecPum and have_locDPRegSec
+ "Measured differential pressure between hot water supply and return in secondary circuit"
+ annotation (Placement(transformation(extent={{-440,-330},{-400,-290}}),
+ iconTransformation(extent={{-140,-160},{-100,-120}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput uHotWatIsoVal[nBoi](
+ final unit=fill("1",nBoi),
+ displayUnit=fill("1",nBoi)) if have_heaPriPum
+ "Measured boiler isolation valve position signals from plant"
+ annotation (Placement(transformation(extent={{-440,-500},{-400,-460}}),
+ iconTransformation(extent={{-140,-280},{-100,-240}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput uBypValPos(
+ final unit="1",
+ displayUnit="1") if have_priOnl
+ "Measured bypass valve position signal from plant"
+ annotation (Placement(transformation(extent={{-440,-540},{-400,-500}}),
+ iconTransformation(extent={{-140,-310},{-100,-270}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput uPriPumSpe[nPumPri](
+ final unit=fill("1",nBoi),
+ displayUnit=fill("1",nBoi)) if not have_priOnl
+ "Measured primary pump speed signal from plant"
+ annotation (Placement(transformation(extent={{-440,-580},{-400,-540}}),
+ iconTransformation(extent={{-140,-340},{-100,-300}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanOutput yBoi[nBoi]
+ "Boiler status vector"
+ annotation (Placement(transformation(extent={{400,180},{440,220}}),
+ iconTransformation(extent={{100,80},{140,120}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanOutput yPriPum[nPumPri]
+ "Primary pump enable status vector"
+ annotation (Placement(transformation(extent={{400,-150},{440,-110}}),
+ iconTransformation(extent={{100,-80},{140,-40}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanOutput ySecPum[nPumSec] if not have_priOnl
+ "Secondary pump enable status vector"
+ annotation (Placement(transformation(extent={{400,-360},{440,-320}}),
+ iconTransformation(extent={{100,-160},{140,-120}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanOutput yPla
+ "Plant enable signal"
+ annotation (Placement(transformation(extent={{400,280},{440,320}}),
+ iconTransformation(extent={{100,160},{140,200}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealOutput TPlaHotWatSupSet(
+ final unit="K",
+ displayUnit="K",
+ final quantity="ThermodynamicTemperature")
+ "Plant hot water supply temperature setpoint"
+ annotation (Placement(transformation(extent={{400,220},{440,260}}),
+ iconTransformation(extent={{100,120},{140,160}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealOutput yHotWatIsoVal[nBoi](
+ final unit=fill("1",nBoi),
+ displayUnit=fill("1",nBoi)) if have_heaPriPum
+ "Boiler hot water isolation valve position vector"
+ annotation (Placement(transformation(extent={{400,100},{440,140}}),
+ iconTransformation(extent={{100,0},{140,40}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealOutput yPriPumSpe(
+ final unit="1",
+ displayUnit="1") if have_varPriPum
+ "Primary pump speed"
+ annotation (Placement(transformation(extent={{400,-190},{440,-150}}),
+ iconTransformation(extent={{100,-120},{140,-80}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealOutput yBypValPos(
+ final unit="1",
+ displayUnit="1") if have_priOnl
+ "Bypass valve position"
+ annotation (Placement(transformation(extent={{400,-50},{440,-10}}),
+ iconTransformation(extent={{100,-40},{140,0}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealOutput ySecPumSpe(
+ final unit="1",
+ displayUnit="1") if not have_priOnl and have_varSecPum
+ "Secondary pump speed vector"
+ annotation (Placement(transformation(extent={{400,-410},{440,-370}}),
+ iconTransformation(extent={{100,-200},{140,-160}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealOutput TBoiHotWatSupSet[nBoi](
+ final unit=fill("K", nBoi),
+ displayUnit=fill("K", nBoi),
+ final quantity=fill("ThermodynamicTemperature", nBoi))
+ "Boiler hot water supply temperature setpoint vector"
+ annotation (Placement(transformation(extent={{400,150},{440,190}}),
+ iconTransformation(extent={{100,40},{140,80}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Generic.PlantEnable plaEna(
+ final nIgnReq=nIgnReq,
+ final nSchRow=nSchRow,
+ final schTab=schTab,
+ final TOutLoc=TOutLoc,
+ final plaOffThrTim=plaOffThrTim,
+ final plaOnThrTim=plaOnThrTim,
+ final staOnReqTim=staOnReqTim)
+ "Plant enable controller"
+ annotation (Placement(transformation(extent={{-340,320},{-320,340}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Staging.SetPoints.SetpointController staSetCon(
+ final have_priOnl=have_priOnl,
+ final nBoi=nBoi,
+ final boiTyp=boiTyp,
+ final nSta=nSta,
+ final staMat=staMat,
+ final boiDesCap=boiDesCap,
+ final boiFirMin=boiFirMin,
+ final boiMinPriPumSpeSta=minPriPumSpeSta,
+ final delStaCha=delStaCha,
+ final avePer=avePer,
+ final fraNonConBoi=fraNonConBoi,
+ final fraConBoi=fraConBoi,
+ final delEffCon=delEffCon,
+ final TDif=TDif,
+ final delFaiCon=delFaiCon,
+ final sigDif=sigDif,
+ final TDifHys=TDifHys,
+ final fraMinFir=fraMinFir,
+ final delMinFir=delMinFir,
+ final fraDesCap=fraDesCap,
+ final delDesCapNonConBoi=delDesCapNonConBoi,
+ final delDesCapConBoi=delDesCapConBoi,
+ final TCirDif=TCirDif,
+ final delTRetDif=delTRetDif,
+ final dTemp=dTemp)
+ "Staging setpoint controller"
+ annotation (Placement(transformation(extent={{-210,-18},{-190,18}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.SetPoints.MinimumFlowSetPoint minBoiFloSet(
+ final nBoi=nBoi,
+ final nSta=nSta,
+ final staMat=staMat,
+ final minFloSet=minFloSet,
+ final maxFloSet=maxFloSet,
+ final bypSetRat=bypSetRat) if have_priOnl
+ "Minimum flow setpoint for the primary loop"
+ annotation (Placement(transformation(extent={{250,310},{270,330}})));
+
+protected
+ parameter Boolean have_remDPRegPri = (speConTypPri == Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Types.PrimaryPumpSpeedControlTypes.remoteDP)
+ "Boolean flag for primary pump speed control with remote differential pressure";
+
+ parameter Boolean have_locDPRegPri = (speConTypPri == Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Types.PrimaryPumpSpeedControlTypes.localDP)
+ "Boolean flag for primary pump speed control with local differential pressure";
+
+ parameter Boolean have_temRegPri = (speConTypPri == Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Types.PrimaryPumpSpeedControlTypes.temperature)
+ "Boolean flag for primary pump speed control with temperature readings";
+
+ parameter Boolean have_floRegPri = (speConTypPri == Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Types.PrimaryPumpSpeedControlTypes.flowrate)
+ "Boolean flag for primary pump speed control with flowrate readings";
+
+ parameter Boolean have_remDPRegSec = (speConTypSec == Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Types.SecondaryPumpSpeedControlTypes.remoteDP)
+ "Boolean flag for secondary pump speed control with remote differential pressure";
+
+ parameter Boolean have_locDPRegSec = (speConTypSec == Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Types.SecondaryPumpSpeedControlTypes.localDP)
+ "Boolean flag for secondary pump speed control with local differential pressure";
+
+ parameter Integer staInd[nSta]={i for i in 1:nSta}
+ "Staging indices starting at 1";
+
+ parameter Integer priPumInd[nPumPri]={i for i in 1:nPumPri}
+ "Vector of primary pump indices up to total number of primary pumps";
+
+ parameter Integer secPumInd[nPumSec]={i for i in 1:nPumSec}
+ "Vector of secondary pump indices up to total number of secondary pumps";
+
+ Buildings.Controls.OBC.CDL.Continuous.IntegratorWithReset intWitRes
+ "Used to break algebraic loop and sample staging setpoint signal"
+ annotation (Placement(transformation(extent={{-210,360},{-190,380}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant con1(
+ final k=0)
+ "Constant zero signal source for integrator input"
+ annotation (Placement(transformation(extent={{-130,360},{-110,380}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.IntegratorWithReset intWitRes1
+ "Used to break algebraic loop and sample next boiler index to be enabled/disabled"
+ annotation (Placement(transformation(extent={{90,370},{110,390}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Change cha1
+ "Detect changes in staging setpoint signal"
+ annotation (Placement(transformation(extent={{-220,320},{-200,340}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Change cha2
+ "Detect changes to boiler index that is next enabled/disabled"
+ annotation (Placement(transformation(extent={{76,344},{96,364}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.MultiMax mulMax(
+ final nin=nPumPri) if not have_priOnl
+ "Identify maximum measured pump speed"
+ annotation (Placement(transformation(extent={{-380,-570},{-360,-550}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Change cha[nPumPri]
+ "Detect changes in primary pump status"
+ annotation (Placement(transformation(extent={{160,-430},{180,-410}})));
+
+ Buildings.Controls.OBC.CDL.Logical.MultiOr mulOr(
+ final nin=nPumPri)
+ "Pass true signal when any of the pump statuses change"
+ annotation (Placement(transformation(extent={{200,-430},{220,-410}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Staging.Processes.Up upProCon(
+ final have_priOnl=have_priOnl,
+ final have_heaPriPum=have_heaPriPum,
+ final nBoi=nBoi,
+ final nSta=nSta,
+ final TMinSupNonConBoi=TMinSupNonConBoi,
+ final delProSupTemSet=delProSupTemSet,
+ final delEnaMinFloSet=delEnaMinFloSet,
+ final chaIsoValTim=chaIsoValTim,
+ final delPreBoiEna=delPreBoiEna,
+ final boiChaProOnTim=boiChaProOnTim,
+ final delBoiEna=delBoiEna,
+ final sigDif=TDifHys,
+ final relFloDif=sigDif)
+ "Stage-up process controller"
+ annotation (Placement(transformation(extent={{120,76},{140,116}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Staging.Processes.Down dowProCon(
+ final have_priOnl=have_priOnl,
+ final have_heaPriPum=have_heaPriPum,
+ final nBoi=nBoi,
+ final nSta=nSta,
+ final delEnaMinFloSet=delEnaMinFloSet,
+ final chaIsoValTim=chaIsoValTim,
+ final delPreBoiEna=delPreBoiEna,
+ final boiChaProOnTim=boiChaProOnTim,
+ final delBoiEna=delBoiEna,
+ relFloDif=sigDif)
+ "Stage-down process controller"
+ annotation (Placement(transformation(extent={{120,20},{140,60}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Pumps.PrimaryPumps.Controller priPumCon(
+ final controllerType=controllerType_priPum,
+ final have_heaPriPum=have_heaPriPum,
+ final have_priOnl=have_priOnl,
+ final have_varPriPum=have_varPriPum,
+ final have_secFloSen=have_secFloSen,
+ final have_priSecTemSen=have_priSecTemSen,
+ final nPum=nPumPri,
+ final nBoi=nBoi,
+ final nSen=nSenPri,
+ final numIgnReq=numIgnReq,
+ final nPum_nominal=nPumPri,
+ final minPumSpe=minPumSpePri,
+ final maxPumSpe=maxPumSpePri,
+ final VHotWat_flow_nominal=VHotWatPri_flow_nominal,
+ final boiDesFlo=boiDesFlo,
+ final maxLocDp=maxLocDpPri,
+ final minLocDp=minLocDpPri,
+ final offTimThr=offTimThr_priPum,
+ final timPer=timPer_priPum,
+ final delBoiDis=delBoiEna,
+ final staCon=staCon_priPum,
+ final relFloHys=relFloHys_priPum,
+ final delTim=delTim_priPum,
+ final samPer=samPer_priPum,
+ final triAmo=triAmo_priPum,
+ final resAmo=resAmo_priPum,
+ final maxRes=maxRes_priPum,
+ final twoReqLimLow=twoReqLimLow_priPum,
+ final twoReqLimHig=twoReqLimHig_priPum,
+ final oneReqLimLow=oneReqLimLow_priPum,
+ final oneReqLimHig=oneReqLimHig_priPum,
+ final k=k_priPum,
+ final Ti=Ti_priPum,
+ final Td=Td_priPum,
+ final speConTyp=speConTypPri)
+ "Primary pump controller"
+ annotation (Placement(transformation(extent={{120,-208},{140,-152}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.BypassValve.BypassValvePosition bypValPos(
+ final nPum=nPumPri,
+ final controllerType=controllerType_bypVal,
+ final k=k_bypVal,
+ final Ti=Ti_bypVal,
+ final Td=Td_bypVal) if have_priOnl
+ "Bypass valve controller"
+ annotation (Placement(transformation(extent={{120,-50},{140,-30}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.SetPoints.HotWaterSupplyTemperatureReset hotWatSupTemRes(
+ final nPum=nPumPri,
+ final nSta=nSta,
+ final nBoi=nBoi,
+ final nHotWatResReqIgn=nHotWatResReqIgn,
+ final boiTyp=boiTyp,
+ final TPlaHotWatSetMax = TPlaHotWatSetMax,
+ final TConBoiHotWatSetMax = TConBoiHotWatSetMax,
+ final TConBoiHotWatSetOff=TConBoiHotWatSetOff,
+ final THotWatSetMinNonConBoi = THotWatSetMinNonConBoi,
+ final THotWatSetMinConBoi = THotWatSetMinConBoi,
+ final delTimVal=delTimVal,
+ final samPerVal=samPerVal,
+ final triAmoVal = triAmoVal,
+ final resAmoVal=resAmoVal,
+ final maxResVal=maxResVal,
+ final holTimVal=holTimVal)
+ "Hot water supply temperature setpoint reset controller"
+ annotation (Placement(transformation(extent={{-140,170},{-120,190}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Or or2
+ "Pass true signal at completion of stage up or stage down process"
+ annotation (Placement(transformation(extent={{180,60},{200,80}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.SetPoints.CondensationControl conSet(
+ final have_priOnl=have_priOnl,
+ final have_varPriPum=have_varPriPum,
+ final nSta=nSta,
+ final TRetSet=TRetSet,
+ final TRetMinAll=TRetMinAll,
+ final minSecPumSpe=minSecPumSpe,
+ final minPriPumSpeSta=minPriPumSpeSta)
+ "Condensation control setpoint controller"
+ annotation (Placement(transformation(extent={{-60,-112},{-40,-92}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Latch lat
+ "Latch to identify if process is stage-up or stage-down"
+ annotation (Placement(transformation(extent={{-50,350},{-30,370}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Switch logSwi
+ "Switch input signal between stage-up and stage-down processes"
+ annotation (Placement(transformation(extent={{22,320},{42,340}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Switch intSwi
+ "Switch input signal between stage-up and stage-down processes"
+ annotation (Placement(transformation(extent={{20,370},{40,390}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Latch lat1
+ "Latch to identify if staging process is complete or not"
+ annotation (Placement(transformation(extent={{-188,170},{-168,190}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.SetPoints.MinimumFlowSetPoint minBoiFloSet1[nSta](
+ final nBoi=fill(nBoi, nSta),
+ final nSta=fill(nSta, nSta),
+ final staMat=fill(staMat, nSta),
+ final minFloSet=fill(minFloSet, nSta),
+ final maxFloSet=fill(maxFloSet, nSta),
+ final bypSetRat=fill(bypSetRat, nSta))
+ "Calculate vector of minimum flow setpoints for all stages"
+ annotation (Placement(transformation(extent={{-340,0},{-320,20}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant conInt[nSta](
+ final k=fill(0, nSta))
+ "Constant zero Integer source"
+ annotation (Placement(transformation(extent={{-390,20},{-370,40}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant con[nSta](
+ final k=fill(false, nSta))
+ "Constant Boolean False signal"
+ annotation (Placement(transformation(extent={{-390,-10},{-370,10}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant conInt1[nSta](
+ final k=staInd)
+ "Constant stage Integer source"
+ annotation (Placement(transformation(extent={{-390,-40},{-370,-20}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant conInt2[nPumPri](
+ final k=priPumInd)
+ "Constant stage Integer source"
+ annotation (Placement(transformation(extent={{60,-138},{80,-118}})));
+
+ Buildings.Controls.OBC.CDL.Discrete.TriggeredSampler triSam
+ "Sample stage setpoint when stage change process is complete"
+ annotation (Placement(transformation(extent={{-160,-50},{-140,-30}})));
+
+ Buildings.Controls.OBC.CDL.Conversions.RealToInteger reaToInt
+ "Real to Integer conversion"
+ annotation (Placement(transformation(extent={{-128,-50},{-108,-30}})));
+
+ Buildings.Controls.OBC.CDL.Conversions.IntegerToReal intToRea
+ "Integer to Real converter"
+ annotation (Placement(transformation(extent={{-190,-50},{-170,-30}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant dpHotWatSet(
+ final k=maxLocDpPri) if have_priOnl
+ "Differential pressure setpoint for primary circuit"
+ annotation (Placement(transformation(extent={{60,-180},{80,-160}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Switch logSwi1[nBoi]
+ "Switch input signal between stage-up and stage-down processes"
+ annotation (Placement(transformation(extent={{180,260},{200,280}})));
+
+ Buildings.Controls.OBC.CDL.Routing.BooleanScalarReplicator booRep(
+ final nout=nBoi)
+ "Boolean replicator"
+ annotation (Placement(transformation(extent={{120,260},{140,280}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Switch swi[nBoi] if have_heaPriPum
+ "Switch input signal between stage-up and stage-down processes"
+ annotation (Placement(transformation(extent={{180,220},{200,240}})));
+
+ Buildings.Controls.OBC.CDL.Conversions.RealToInteger reaToInt1
+ "Real to Integer conversion"
+ annotation (Placement(transformation(extent={{-180,360},{-160,380}})));
+
+ Buildings.Controls.OBC.CDL.Conversions.IntegerToReal intToRea1
+ "Integer to Real conversion"
+ annotation (Placement(transformation(extent={{-240,360},{-220,380}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Pre pre4
+ "Logical pre block"
+ annotation (Placement(transformation(extent={{-216,170},{-196,190}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Pre pre6 if have_priOnl
+ "Logical pre block to break algebraic loop"
+ annotation (Placement(transformation(extent={{60,320},{80,340}})));
+
+ Buildings.Controls.OBC.CDL.Conversions.IntegerToReal intToRea2
+ "Integer to Real conversion"
+ annotation (Placement(transformation(extent={{60,370},{80,390}})));
+
+ Buildings.Controls.OBC.CDL.Conversions.RealToInteger reaToInt2
+ "Real to Integer conversion"
+ annotation (Placement(transformation(extent={{120,370},{140,390}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Pre pre1
+ "Logical pre block"
+ annotation (Placement(transformation(extent={{300,-20},{320,0}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Generic.PlantDisable plaDis(
+ final have_priOnl=have_priOnl,
+ final have_heaPriPum=have_heaPriPum,
+ final nBoi=nBoi,
+ final chaHotWatIsoRat=chaIsoValRat,
+ final delBoiDis=delBoiEna)
+ "Plant disable process controller"
+ annotation (Placement(transformation(extent={{240,60},{260,80}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Pumps.SecondaryPumps.Controller secPumCon(
+ final controllerType=controllerType_secPum,
+ final have_varSecPum=true,
+ final have_secFloSen=have_secFloSen,
+ final nPum=nPumSec,
+ final nPumPri=nPumPri,
+ final nBoi=nBoi,
+ final nSen=nSenSec,
+ final nPum_nominal=nPumSec,
+ final minPumSpe=minPumSpeSec,
+ final maxPumSpe=maxPumSpeSec,
+ final VHotWat_flow_nominal=VHotWatSec_flow_nominal,
+ final maxLocDp=maxLocDpSec,
+ final minLocDp=minLocDpSec,
+ final offTimThr=offTimThr,
+ final delBoiDis=0,
+ final timPer=timPerSec,
+ final staCon=staConSec,
+ final speLim=speLim,
+ final speLim1=speLim1,
+ final speLim2=speLim2,
+ final timPer1=timPer1,
+ final timPer2=timPer2,
+ final timPer3=timPer3,
+ final k=k_sec,
+ final Ti=Ti_sec,
+ final Td=Td_sec,
+ final speConTyp=speConTypSec) if not have_priOnl
+ "Secondary pump controller"
+ annotation (Placement(transformation(extent={{120,-380},{140,-340}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Switch intSwi1 if not have_priOnl
+ "Switch input signal between stage-up and stage-down processes"
+ annotation (Placement(transformation(extent={{64,280},{84,300}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant conInt3[nPumSec](
+ final k=secPumInd) if not have_priOnl
+ "Constant stage Integer source"
+ annotation (Placement(transformation(extent={{60,-290},{80,-270}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant dpHotWatSet1(
+ final k=maxLocDpSec) if not have_priOnl
+ "Differential pressure setpoint for secondary circuit"
+ annotation (Placement(transformation(extent={{60,-390},{80,-370}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Or or1 if not have_priOnl
+ "Or operator for pump stage change signal from up-staging, down-staging and plant disable process controllers"
+ annotation (Placement(transformation(extent={{58,-220},{78,-200}})));
+
+ Buildings.Controls.OBC.CDL.Logical.And and2
+ "Ensure stage-down process is not initiated when plant is disabled"
+ annotation (Placement(transformation(extent={{-28,50},{-8,70}})));
+
+equation
+ connect(staSetCon.yBoi, upProCon.uBoiSet) annotation (Line(points={{-188,-10},
+ {64,-10},{64,95},{118,95}},color={255,0,255}));
+ connect(staSetCon.yBoi, dowProCon.uBoiSet) annotation (Line(points={{-188,-10},
+ {86,-10},{86,38},{118,38}}, color={255,0,255}));
+ connect(staSetCon.ySta, upProCon.uStaSet) annotation (Line(points={{-188,6},{
+ 20,6},{20,86},{118,86}},
+ color={255,127,0}));
+ connect(staSetCon.ySta, dowProCon.uStaSet) annotation (Line(points={{-188,6},{
+ 20,6},{20,30},{118,30}},
+ color={255,127,0}));
+ connect(staSetCon.yStaTyp, upProCon.uStaTyp) annotation (Line(points={{-188,10},
+ {24,10},{24,89},{118,89}},color={255,127,0}));
+ connect(staSetCon.yChaUpEdg, upProCon.uStaUpPro) annotation (Line(points={{-188,2},
+ {58,2},{58,92},{118,92}}, color={255,0,255}));
+ connect(conSet.yMinBypValPos, bypValPos.uMinBypValPos) annotation (Line(
+ points={{-38,-96},{110,-96},{110,-46},{118,-46}},color={0,0,127}));
+ connect(staSetCon.yStaTyp, conSet.uStaTyp) annotation (Line(points={{-188,10},
+ {-90,10},{-90,-108},{-62,-108}},
+ color={255,127,0}));
+ connect(staSetCon.yChaUpEdg, lat.u) annotation (Line(points={{-188,2},{-64,2},
+ {-64,360},{-52,360}},
+ color={255,0,255}));
+ connect(staSetCon.yChaDowEdg, lat.clr) annotation (Line(points={{-188,-6},{-60,
+ -6},{-60,354},{-52,354}},
+ color={255,0,255}));
+ connect(lat.y, logSwi.u2) annotation (Line(points={{-28,360},{10,360},{10,330},
+ {20,330}}, color={255,0,255}));
+ connect(upProCon.yOnOff, logSwi.u1) annotation (Line(points={{142,96},{150,96},
+ {150,150},{0,150},{0,338},{20,338}}, color={255,0,255}));
+ connect(dowProCon.yOnOff, logSwi.u3) annotation (Line(points={{142,40},{154,40},
+ {154,144},{14,144},{14,322},{20,322}}, color={255,0,255}));
+ connect(lat.y, intSwi.u2) annotation (Line(points={{-28,360},{10,360},{10,380},
+ {18,380}}, color={255,0,255}));
+ connect(upProCon.yLasDisBoi, intSwi.u1) annotation (Line(points={{142,88},{146,
+ 88},{146,72},{-12,72},{-12,388},{18,388}}, color={255,127,0}));
+ connect(dowProCon.yLasDisBoi, intSwi.u3) annotation (Line(points={{142,32},{150,
+ 32},{150,68},{-6,68},{-6,372},{18,372}}, color={255,127,0}));
+ connect(lat1.y, hotWatSupTemRes.uStaCha)
+ annotation (Line(points={{-166,180},{-142,180}},
+ color={255,0,255}));
+ connect(staSetCon.yStaTyp, hotWatSupTemRes.uTyp) annotation (Line(points={{-188,10},
+ {-144,10},{-144,176},{-142,176}}, color={255,127,0}));
+ connect(minBoiFloSet1.VHotWatMinSet_flow, staSetCon.VMinSet_flow) annotation (
+ Line(points={{-318,10},{-274,10},{-274,5},{-212,5}},
+ color={0,0,127}));
+ connect(conInt.y, minBoiFloSet1.uLasDisBoi) annotation (Line(points={{-368,30},
+ {-360,30},{-360,16},{-342,16}}, color={255,127,0}));
+ connect(con.y, minBoiFloSet1.uOnOff) annotation (Line(points={{-368,0},{-360,0},
+ {-360,12},{-342,12}}, color={255,0,255}));
+ connect(con.y, minBoiFloSet1.uStaChaPro) annotation (Line(points={{-368,0},{-360,
+ 0},{-360,8},{-342,8}}, color={255,0,255}));
+ connect(conInt2.y, priPumCon.uPumLeaLag) annotation (Line(points={{82,-128},{
+ 86,-128},{86,-152.933},{118,-152.933}},
+ color={255,127,0}));
+ connect(plaReq, plaEna.supResReq) annotation (Line(points={{-420,350},{-360,350},
+ {-360,334},{-342,334}}, color={255,127,0}));
+ connect(reaToInt.u, triSam.y)
+ annotation (Line(points={{-130,-40},{-138,-40}},
+ color={0,0,127}));
+ connect(triSam.u, intToRea.y)
+ annotation (Line(points={{-162,-40},{-168,-40}},
+ color={0,0,127}));
+ connect(reaToInt.y, staSetCon.u) annotation (Line(points={{-106,-40},{-80,-40},
+ {-80,-60},{-220,-60},{-220,-13},{-212,-13}},
+ color={255,127,0}));
+ connect(TOut, plaEna.TOut) annotation (Line(points={{-420,310},{-360,310},{-360,
+ 326},{-342,326}},
+ color={0,0,127}));
+ connect(TSupPri, staSetCon.THotWatSup) annotation (Line(points={{-420,270},{-240,
+ 270},{-240,8},{-212,8}}, color={0,0,127}));
+ connect(TRetPri, staSetCon.THotWatRet) annotation (Line(points={{-420,230},{-260,
+ 230},{-260,14},{-212,14}}, color={0,0,127}));
+ connect(TRetPri, conSet.THotWatRet) annotation (Line(points={{-420,230},{-260,
+ 230},{-260,-96},{-62,-96}}, color={0,0,127}));
+ connect(VHotWatPri_flow, staSetCon.VHotWat_flow) annotation (Line(points={{-420,
+ 190},{-270,190},{-270,11},{-212,11}}, color={0,0,127}));
+ connect(VHotWatPri_flow, upProCon.VHotWat_flow) annotation (Line(points={{-420,
+ 190},{-270,190},{-270,110},{114,110},{114,115},{118,115}},
+ color={0,0,127}));
+ connect(VHotWatPri_flow, dowProCon.VHotWat_flow) annotation (Line(points={{-420,
+ 190},{-270,190},{-270,110},{114,110},{114,58},{118,58}},
+ color={0,0,127}));
+ connect(VHotWatPri_flow, bypValPos.VHotWat_flow) annotation (Line(points={{-420,
+ 190},{-270,190},{-270,110},{114,110},{114,-38},{118,-38}},
+ color={0,0,127}));
+ connect(VHotWatPri_flow, priPumCon.VHotWat_flow) annotation (Line(points={{-420,
+ 190},{-270,190},{-270,110},{114,110},{114,-164.133},{118,-164.133}},
+ color={0,0,
+ 127}));
+ connect(dpHotWatPri_rem, priPumCon.dpHotWat_remote) annotation (Line(points={{-420,
+ 110},{-280,110},{-280,-144},{-4,-144},{-4,-187.467},{118,-187.467}},
+ color={0,0,127}));
+ connect(dpHotWatSet.y, priPumCon.dpHotWatSet) annotation (Line(points={{82,-170},
+ {104,-170},{104,-190.267},{118,-190.267}},
+ color={0,0,127}));
+ connect(upProCon.yBoi, logSwi1.u1) annotation (Line(points={{142,108},{148,108},
+ {148,278},{178,278}}, color={255,0,255}));
+ connect(dowProCon.yBoi, logSwi1.u3) annotation (Line(points={{142,52},{156,52},
+ {156,262},{178,262}}, color={255,0,255}));
+ connect(lat.y, booRep.u) annotation (Line(points={{-28,360},{-16,360},{-16,270},
+ {118,270}}, color={255,0,255}));
+ connect(booRep.y, logSwi1.u2) annotation (Line(points={{142,270},{178,270}},
+ color={255,0,255}));
+ connect(upProCon.yHotWatIsoVal, swi.u1) annotation (Line(points={{142,100},{172,
+ 100},{172,238},{178,238}},
+ color={0,0,127}));
+ connect(dowProCon.yHotWatIsoVal, swi.u3) annotation (Line(points={{142,44},{164,
+ 44},{164,222},{178,222}},
+ color={0,0,127}));
+ connect(booRep.y, swi.u2) annotation (Line(points={{142,270},{160,270},{160,230},
+ {178,230}}, color={255,0,255}));
+ connect(priPumCon.yPumSpe, yPriPumSpe) annotation (Line(points={{142,-183.733},
+ {264,-183.733},{264,-170},{420,-170}},
+ color={0,0,127}));
+ connect(bypValPos.yBypValPos, yBypValPos) annotation (Line(points={{142,-40},{
+ 148,-40},{148,-30},{420,-30}}, color={0,0,127}));
+ connect(staSetCon.ySta, intToRea1.u) annotation (Line(points={{-188,6},{20,6},
+ {20,300},{-250,300},{-250,370},{-242,370}},
+ color={255,127,0}));
+ connect(reaToInt1.y, minBoiFloSet.uStaSet) annotation (Line(points={{-158,370},
+ {-148,370},{-148,314},{248,314}},
+ color={255,127,0}));
+ connect(plaEna.yPla, staSetCon.uPla) annotation (Line(points={{-318,330},{-230,
+ 330},{-230,-10},{-212,-10}}, color={255,0,255}));
+ connect(staSetCon.yChaEdg, pre4.u) annotation (Line(points={{-188,-2},{-180,-2},
+ {-180,150},{-220,150},{-220,180},{-218,180}},
+ color={255,0,255}));
+ connect(pre4.y, lat1.u) annotation (Line(points={{-194,180},{-190,180}},
+ color={255,0,255}));
+ connect(hotWatSupTemRes.TPlaHotWatSupSet, staSetCon.THotWatSupSet)
+ annotation (Line(points={{-118,184},{-100,184},{-100,90},{-226,90},{-226,17},
+ {-212,17}},
+ color={0,0,127}));
+ connect(reaToInt.y, conSet.uCurSta) annotation (Line(points={{-106,-40},{-80,-40},
+ {-80,-102},{-62,-102}}, color={255,127,0}));
+ connect(reaToInt1.y, intToRea.u) annotation (Line(points={{-158,370},{-148,370},
+ {-148,-22},{-196,-22},{-196,-40},{-192,-40}},
+ color={255,127,0}));
+ connect(reaToInt1.y, hotWatSupTemRes.uCurStaSet) annotation (Line(points={{-158,
+ 370},{-148,370},{-148,172},{-142,172}}, color={255,127,0}));
+ connect(minBoiFloSet.VHotWatMinSet_flow, upProCon.VMinHotWatSet_flow)
+ annotation (Line(points={{272,320},{280,320},{280,290},{110,290},{110,111},{
+ 118,111}}, color={0,0,127}));
+ connect(minBoiFloSet.VHotWatMinSet_flow, dowProCon.VMinHotWatSet_flow)
+ annotation (Line(points={{272,320},{280,320},{280,290},{110,290},{110,54},{118,
+ 54}}, color={0,0,127}));
+ connect(minBoiFloSet.VHotWatMinSet_flow, bypValPos.VHotWatMinSet_flow)
+ annotation (Line(points={{272,320},{280,320},{280,290},{110,290},{110,-34},{
+ 118,-34}}, color={0,0,127}));
+ connect(logSwi.y, pre6.u)
+ annotation (Line(points={{44,330},{58,330}}, color={255,0,255}));
+ connect(pre6.y, minBoiFloSet.uOnOff) annotation (Line(points={{82,330},{94,330},
+ {94,322},{248,322}}, color={255,0,255}));
+ connect(intSwi.y, intToRea2.u) annotation (Line(points={{42,380},{58,380}},
+ color={255,127,0}));
+ connect(reaToInt2.y, minBoiFloSet.uLasDisBoi) annotation (Line(points={{142,380},
+ {150,380},{150,326},{248,326}}, color={255,127,0}));
+ connect(upProCon.yStaChaPro, or2.u1) annotation (Line(points={{142,104},{168,104},
+ {168,70},{178,70}}, color={255,0,
+ 255}));
+ connect(dowProCon.yStaChaPro, or2.u2) annotation (Line(points={{142,48},{158,48},
+ {158,62},{178,62}}, color={255,0,255}));
+ connect(pre1.y, triSam.trigger) annotation (Line(points={{322,-10},{372,-10},
+ {372,-64},{-150,-64},{-150,-52}},
+ color={255,0,255}));
+ connect(pre1.y, staSetCon.uStaChaProEnd) annotation (Line(points={{322,-10},{372,
+ -10},{372,-64},{-209,-64},{-209,-20}},
+ color={255,0,255}));
+ connect(pre1.y, minBoiFloSet.uStaChaPro) annotation (Line(points={{322,-10},{372,
+ -10},{372,300},{140,300},{140,318},{248,318}},
+ color={255,0,255}));
+ connect(pre1.y, lat1.clr) annotation (Line(points={{322,-10},{372,-10},{372,164},
+ {-192,164},{-192,174},{-190,174}},
+ color={255,0,255}));
+ connect(priPumCon.yHotWatPum, yPriPum)
+ annotation (Line(points={{142,-176.267},{260,-176.267},{260,-130},{420,-130}},
+ color={255,0,255}));
+
+ connect(uBoiAva, staSetCon.uBoiAva) annotation (Line(points={{-420,70},{-300,70},
+ {-300,-16},{-212,-16}}, color={255,0,255}));
+ connect(plaEna.yPla, upProCon.uPlaEna) annotation (Line(points={{-318,330},{
+ -230,330},{-230,83},{118,83}}, color={255,
+ 0,255}));
+ connect(plaDis.yHotWatIsoVal, yHotWatIsoVal) annotation (Line(points={{262,68},
+ {300,68},{300,120},{420,120}}, color={0,0,127}));
+ connect(plaDis.yBoi, yBoi) annotation (Line(points={{262,76},{274,76},{274,200},
+ {420,200}}, color={255,0,255}));
+ connect(or2.y, plaDis.uStaChaProEnd) annotation (Line(points={{202,70},{208,70},
+ {208,62},{238,62}}, color={255,0,255}));
+ connect(swi.y, plaDis.uHotWatIsoVal) annotation (Line(points={{202,230},{220,230},
+ {220,70},{238,70}}, color={0,0,127}));
+ connect(logSwi1.y, plaDis.uBoi) annotation (Line(points={{202,270},{230,270},{
+ 230,74},{238,74}}, color={255,0,255}));
+ connect(plaDis.yStaChaPro, pre1.u) annotation (Line(points={{262,64},{266,64},
+ {266,-10},{298,-10}}, color={255,0,255}));
+ connect(plaEna.yPla, plaDis.uPla) annotation (Line(points={{-318,330},{-230,330},
+ {-230,140},{226,140},{226,78},{238,78}}, color={255,
+ 0,255}));
+ connect(plaEna.yPla, priPumCon.uPlaEna) annotation (Line(points={{-318,330},{
+ -230,330},{-230,-78},{90,-78},{90,-158.533},{118,-158.533}},
+ color={255,0,255}));
+ connect(hotWatSupTemRes.TPlaHotWatSupSet, upProCon.THotWatSupSet) annotation
+ (Line(points={{-118,184},{-100,184},{-100,107},{118,107}}, color={0,0,127}));
+ connect(TRetPri, staSetCon.THotWatRetPri) annotation (Line(points={{-420,230},
+ {-260,230},{-260,-1},{-212,-1}}, color={0,0,127}));
+ connect(TRetSec, staSetCon.THotWatRetSec) annotation (Line(points={{-420,150},
+ {-290,150},{-290,-4},{-212,-4}}, color={0,0,127}));
+ connect(upProCon.yNexEnaBoi, intSwi1.u1) annotation (Line(points={{142,92},{160,
+ 92},{160,160},{56,160},{56,298},{62,298}}, color={255,127,0}));
+ connect(dowProCon.yNexEnaBoi, intSwi1.u3) annotation (Line(points={{142,36},{152,
+ 36},{152,200},{44,200},{44,282},{62,282}}, color={255,127,0}));
+ connect(lat.y, intSwi1.u2) annotation (Line(points={{-28,360},{-16,360},{-16,290},
+ {62,290}}, color={255,0,255}));
+ connect(intSwi1.y, priPumCon.uNexEnaBoi) annotation (Line(points={{86,290},{
+ 96,290},{96,-178.133},{118,-178.133}},
+ color={255,127,0}));
+ connect(staSetCon.yChaUpEdg, priPumCon.uStaUp) annotation (Line(points={{-188,2},
+ {58,2},{58,-74},{92,-74},{92,-169.733},{118,-169.733}},
+ color={255,0,255}));
+ connect(logSwi.y, priPumCon.uOnOff) annotation (Line(points={{44,330},{50,330},
+ {50,-76},{98,-76},{98,-172.533},{118,-172.533}}, color={255,0,255}));
+ connect(plaDis.yBoi, priPumCon.uBoiSta) annotation (Line(points={{262,76},{
+ 274,76},{274,-88},{112,-88},{112,-166.933},{118,-166.933}},
+ color={255,0,255}));
+ connect(conSet.yMinPriPumSpe, priPumCon.uMinPriPumSpeCon) annotation (Line(
+ points={{-38,-102},{88,-102},{88,-193.067},{118,-193.067}},
+ color={0,0,127}));
+ connect(conInt3.y, secPumCon.uPumLeaLag) annotation (Line(points={{82,-280},{90,
+ -280},{90,-341.8},{118,-341.8}}, color={255,127,0}));
+ connect(VHotWatSec_flow, priPumCon.VHotWatSec_flow) annotation (Line(points={{-420,
+ -70},{8,-70},{8,-224},{114,-224},{114,-195.867},{118,-195.867}},
+ color={0,0,127}));
+ connect(VHotWatDec_flow, priPumCon.VHotWatDec_flow) annotation (Line(points={{-420,
+ -110},{-190,-110},{-190,-212},{6,-212},{6,-226},{116,-226},{116,
+ -198.667},{118,-198.667}},
+ color={0,0,127}));
+ connect(TSupPri, priPumCon.THotWatPri) annotation (Line(points={{-420,270},{
+ -240,270},{-240,-84},{0,-84},{0,-186},{112,-186},{112,-201.467},{118,
+ -201.467}}, color={0,0,127}));
+ connect(TSupSec, priPumCon.THotWatSec) annotation (Line(points={{-420,-150},{
+ -186,-150},{-186,-214},{2,-214},{2,-230},{108,-230},{108,-204.267},{
+ 118,-204.267}},
+ color={0,0,127}));
+ connect(TSupBoi, priPumCon.THotWatBoiSup) annotation (Line(points={{-420,-190},
+ {-184,-190},{-184,-216},{0,-216},{0,-232},{110,-232},{110,-207.067},{
+ 118,-207.067}},
+ color={0,0,127}));
+ connect(secPumCon.yHotWatPum, ySecPum)
+ annotation (Line(points={{142,-360},{220,-360},{220,-340},{420,-340}},
+ color={255,0,255}));
+ connect(plaReq, secPumCon.supResReq) annotation (Line(points={{-420,350},{-154,
+ 350},{-154,20},{14,20},{14,-354},{118,-354}}, color={255,127,0}));
+ connect(plaEna.yPla, secPumCon.uPlaEna) annotation (Line(points={{-318,330},{-230,
+ 330},{-230,-78},{12,-78},{12,-350},{118,-350}}, color={255,0,255}));
+ connect(VHotWatSec_flow, secPumCon.VHotWat_flow) annotation (Line(points={{-420,
+ -70},{8,-70},{8,-358},{118,-358}}, color={0,0,127}));
+ connect(conSet.yMaxSecPumSpe, secPumCon.uMaxSecPumSpeCon) annotation (Line(
+ points={{-38,-108},{94,-108},{94,-378},{118,-378}},color={0,0,127}));
+ connect(dpHotWatSet1.y, secPumCon.dpHotWatSet) annotation (Line(points={{82,-380},
+ {86,-380},{86,-374},{118,-374}}, color={0,0,127}));
+ connect(dpHotWatSec_rem, secPumCon.dpHotWat_remote) annotation (Line(points={{-420,
+ -230},{-190,-230},{-190,-300},{86,-300},{86,-370},{118,-370}},
+ color={0,0,127}));
+ connect(dpHotWatPri_loc, priPumCon.dpHotWat_local) annotation (Line(points={{-420,
+ -270},{-180,-270},{-180,-234},{96,-234},{96,-184.667},{118,-184.667}},
+ color={0,0,127}));
+ connect(dpHotWatSec_loc, secPumCon.dpHotWat_local) annotation (Line(points={{-420,
+ -310},{100,-310},{100,-366},{118,-366}}, color={0,0,127}));
+ connect(reaToInt2.y, priPumCon.uLasDisBoi) annotation (Line(points={{142,380},
+ {150,380},{150,340},{288,340},{288,-210},{102,-210},{102,-181.867},{
+ 118,-181.867}}, color={255,127,0}));
+ connect(conInt1.y, minBoiFloSet1.uStaSet) annotation (Line(points={{-368,-30},
+ {-350,-30},{-350,4},{-342,4}}, color={255,127,0}));
+ connect(pre1.y, dowProCon.uStaChaPro) annotation (Line(points={{322,-10},{372,
+ -10},{372,-64},{78,-64},{78,26},{118,26}}, color={255,0,255}));
+ connect(pre1.y, upProCon.uStaChaPro) annotation (Line(points={{322,-10},{372,
+ -10},{372,-64},{78,-64},{78,80},{118,80}}, color={255,0,255}));
+ connect(upProCon.yPumChaPro, or1.u1) annotation (Line(points={{142,84},{160,84},
+ {160,14},{32,14},{32,-210},{56,-210}}, color={255,0,255}));
+ connect(dowProCon.yPumChaPro, or1.u2) annotation (Line(points={{142,28},{156,28},
+ {156,18},{28,18},{28,-218},{56,-218}}, color={255,0,255}));
+ connect(or1.y, priPumCon.uPumChaPro) annotation (Line(points={{80,-210},{100,
+ -210},{100,-175.333},{118,-175.333}},
+ color={255,0,255}));
+ connect(staSetCon.yChaDowEdg, and2.u2) annotation (Line(points={{-188,-6},{-40,
+ -6},{-40,52},{-30,52}}, color={255,0,255}));
+ connect(plaEna.yPla, and2.u1) annotation (Line(points={{-318,330},{-230,330},{
+ -230,60},{-30,60}}, color={255,0,255}));
+ connect(and2.y, dowProCon.uStaDowPro) annotation (Line(points={{-6,60},{74,60},
+ {74,34},{118,34}}, color={255,0,255}));
+ connect(TSupResReq, hotWatSupTemRes.nHotWatSupResReq) annotation (Line(points=
+ {{-420,380},{-256,380},{-256,200},{-144,200},{-144,184},{-142,184}},
+ color={255,127,0}));
+ connect(uBoi, upProCon.uBoi) annotation (Line(points={{-420,-360},{-34,-360},{
+ -34,99},{118,99}}, color={255,0,255}));
+ connect(uBoi, dowProCon.uBoi) annotation (Line(points={{-420,-360},{-34,-360},
+ {-34,42},{118,42}}, color={255,0,255}));
+ connect(uPriPum, hotWatSupTemRes.uHotWatPumSta) annotation (Line(points={{-420,
+ -400},{-28,-400},{-28,28},{-158,28},{-158,188},{-142,188}}, color={255,
+ 0,255}));
+ connect(uPriPum, priPumCon.uHotWatPum) annotation (Line(points={{-420,-400},{
+ -28,-400},{-28,-155.733},{118,-155.733}},
+ color={255,0,255}));
+ connect(uPriPum, bypValPos.uPumSta) annotation (Line(points={{-420,-400},{-28,
+ -400},{-28,-42},{118,-42}}, color={255,0,255}));
+ connect(uPriPum, secPumCon.uPriPumSta) annotation (Line(points={{-420,-400},{-28,
+ -400},{-28,-362},{118,-362}}, color={255,0,255}));
+ connect(uPriPum, cha.u) annotation (Line(points={{-420,-400},{-28,-400},{-28,-420},
+ {158,-420}}, color={255,0,255}));
+ connect(cha.y, mulOr.u[1:nPumPri]) annotation (Line(points={{182,-420},{190,-420},{190,
+ -420},{198,-420}}, color={255,0,255}));
+ connect(mulOr.y, plaDis.uPumChaPro) annotation (Line(points={{222,-420},{232,-420},
+ {232,66},{238,66}}, color={255,0,255}));
+ connect(mulOr.y, upProCon.uPumChaPro) annotation (Line(points={{222,-420},{232,
+ -420},{232,-20},{70,-20},{70,77},{118,77}}, color={255,0,255}));
+ connect(mulOr.y, dowProCon.uPumChaPro) annotation (Line(points={{222,-420},{232,
+ -420},{232,-20},{70,-20},{70,22},{118,22}}, color={255,0,255}));
+ connect(uSecPum, secPumCon.uHotWatPum) annotation (Line(points={{-420,-440},{-20,
+ -440},{-20,-346},{118,-346}}, color={255,0,255}));
+ connect(uPriPumSpe, mulMax.u[1:2]) annotation (Line(points={{-420,-560},{-402,
+ -560},{-402,-560},{-382,-560}}, color={0,0,127}));
+ connect(mulMax.y, staSetCon.uPumSpe) annotation (Line(points={{-358,-560},{-262,
+ -560},{-262,-7},{-212,-7}}, color={0,0,127}));
+ connect(uHotWatIsoVal, upProCon.uHotWatIsoVal) annotation (Line(points={{-420,
+ -480},{38,-480},{38,103},{118,103}}, color={0,0,127}));
+ connect(uHotWatIsoVal, dowProCon.uHotWatIsoVal) annotation (Line(points={{-420,
+ -480},{38,-480},{38,46},{118,46}}, color={0,0,127}));
+ connect(uHotWatIsoVal, priPumCon.uHotIsoVal) annotation (Line(points={{-420,
+ -480},{38,-480},{38,-150},{110,-150},{110,-161.333},{118,-161.333}},
+ color={
+ 0,0,127}));
+ connect(uBypValPos, staSetCon.uBypValPos) annotation (Line(points={{-420,-520},
+ {-258,-520},{-258,2},{-212,2}}, color={0,0,127}));
+ connect(secPumCon.yPumSpe, ySecPumSpe) annotation (Line(points={{142,-370},{
+ 260,-370},{260,-390},{420,-390}}, color={0,0,127}));
+ connect(hotWatSupTemRes.TBoiHotWatSupSet, TBoiHotWatSupSet) annotation (Line(
+ points={{-118,176},{360,176},{360,170},{420,170}}, color={0,0,127}));
+ connect(intWitRes.y, reaToInt1.u)
+ annotation (Line(points={{-188,370},{-182,370}}, color={0,0,127}));
+ connect(intToRea1.y, intWitRes.y_reset_in) annotation (Line(points={{-218,370},
+ {-216,370},{-216,362},{-212,362}}, color={0,0,127}));
+ connect(reaToInt2.u, intWitRes1.y)
+ annotation (Line(points={{118,380},{112,380}}, color={0,0,127}));
+ connect(intToRea2.y, intWitRes1.y_reset_in) annotation (Line(points={{82,380},
+ {84,380},{84,372},{88,372}}, color={0,0,127}));
+ connect(con1.y, intWitRes.u) annotation (Line(points={{-108,370},{-100,370},{
+ -100,392},{-214,392},{-214,370},{-212,370}}, color={0,0,127}));
+ connect(con1.y, intWitRes1.u) annotation (Line(points={{-108,370},{-100,370},
+ {-100,398},{88,398},{88,380}}, color={0,0,127}));
+ connect(cha1.y, intWitRes.trigger) annotation (Line(points={{-198,330},{-190,
+ 330},{-190,352},{-200,352},{-200,358}}, color={255,0,255}));
+ connect(staSetCon.ySta, cha1.u) annotation (Line(points={{-188,6},{20,6},{20,
+ 300},{-226,300},{-226,330},{-222,330}}, color={255,127,0}));
+ connect(intSwi.y, cha2.u) annotation (Line(points={{42,380},{54,380},{54,354},
+ {74,354}}, color={255,127,0}));
+ connect(cha2.y, intWitRes1.trigger) annotation (Line(points={{98,354},{100,
+ 354},{100,368}}, color={255,0,255}));
+ connect(hotWatSupTemRes.TPlaHotWatSupSet, TPlaHotWatSupSet) annotation (Line(
+ points={{-118,184},{320,184},{320,240},{420,240}}, color={0,0,127}));
+ connect(plaEna.yPla, yPla) annotation (Line(points={{-318,330},{-230,330},{-230,
+ 252},{-80,252},{-80,192},{380,192},{380,300},{420,300}}, color={255,0,
+ 255}));
+ annotation (defaultComponentName="boiPlaCon",
+ Icon(coordinateSystem(extent={{-100,-340},{100,340}}),
+ graphics={
+ Rectangle(
+ extent={{-100,-340},{100,340}},
+ lineColor={0,0,0},
+ fillColor={255,255,255},
+ fillPattern=FillPattern.Solid),
+ Text(
+ extent={{-120,378},{100,338}},
+ textColor={0,0,255},
+ textString="%name"),
+ Rectangle(
+ extent={{-80,60},{82,-60}},
+ lineColor={28,108,200},
+ fillColor={210,210,210},
+ fillPattern=FillPattern.Solid,
+ borderPattern=BorderPattern.Raised),
+ Polygon(
+ points={{-80,60},{-14,4},{-80,-60},{-80,60}},
+ lineColor={175,175,175},
+ fillColor={175,175,175},
+ fillPattern=FillPattern.Solid)}), Diagram(
+ coordinateSystem(preserveAspectRatio=false, extent={{-400,-620},{400,400}}),
+ graphics={
+ Rectangle(
+ extent={{-394,392},{-266,290}},
+ fillColor={210,210,210},
+ fillPattern=FillPattern.Solid,
+ pattern=LinePattern.None),
+ Text(
+ extent={{-362,304},{-298,288}},
+ pattern=LinePattern.None,
+ fillColor={255,255,255},
+ fillPattern=FillPattern.Solid,
+ lineColor={0,0,127},
+ textString="Enable boiler plant"),
+ Rectangle(
+ extent={{-242,60},{-72,-70}},
+ fillColor={210,210,210},
+ fillPattern=FillPattern.Solid,
+ pattern=LinePattern.None),
+ Text(
+ extent={{-140,56},{-76,40}},
+ pattern=LinePattern.None,
+ fillColor={255,255,255},
+ fillPattern=FillPattern.Solid,
+ lineColor={0,0,127},
+ textString="Calculate stage setpoint"),
+ Rectangle(
+ extent={{-226,238},{-108,162}},
+ fillColor={210,210,210},
+ fillPattern=FillPattern.Solid,
+ pattern=LinePattern.None),
+ Text(
+ extent={{-226,236},{-156,218}},
+ pattern=LinePattern.None,
+ fillColor={255,255,255},
+ fillPattern=FillPattern.Solid,
+ lineColor={0,0,127},
+ textString="Calculate hot water supply
+temperature setpoint",
+ horizontalAlignment=TextAlignment.Left),
+ Rectangle(
+ extent={{-98,-76},{-2,-138}},
+ fillColor={210,210,210},
+ fillPattern=FillPattern.Solid,
+ pattern=LinePattern.None),
+ Text(
+ extent={{-94,-118},{0,-136}},
+ pattern=LinePattern.None,
+ fillColor={255,255,255},
+ fillPattern=FillPattern.Solid,
+ lineColor={0,0,127},
+ horizontalAlignment=TextAlignment.Left,
+ textString="Calculate condensation
+control setpoints"),
+ Rectangle(
+ extent={{52,-106},{224,-226}},
+ fillColor={210,210,210},
+ fillPattern=FillPattern.Solid,
+ pattern=LinePattern.None),
+ Text(
+ extent={{146,-106},{224,-114}},
+ pattern=LinePattern.None,
+ fillColor={255,255,255},
+ fillPattern=FillPattern.Solid,
+ lineColor={0,0,127},
+ horizontalAlignment=TextAlignment.Left,
+ textString="Primary pump controller"),
+ Rectangle(
+ extent={{34,-260},{206,-398}},
+ fillColor={210,210,210},
+ fillPattern=FillPattern.Solid,
+ pattern=LinePattern.None),
+ Text(
+ extent={{122,-386},{200,-394}},
+ pattern=LinePattern.None,
+ fillColor={255,255,255},
+ fillPattern=FillPattern.Solid,
+ lineColor={0,0,127},
+ horizontalAlignment=TextAlignment.Left,
+ textString="Secondary pump controller"),
+ Rectangle(
+ extent={{82,136},{264,-12}},
+ fillColor={210,210,210},
+ fillPattern=FillPattern.Solid,
+ pattern=LinePattern.None),
+ Text(
+ extent={{152,4},{226,-8}},
+ pattern=LinePattern.None,
+ fillColor={255,255,255},
+ fillPattern=FillPattern.Solid,
+ lineColor={0,0,127},
+ horizontalAlignment=TextAlignment.Left,
+ textString="Staging process controllers"),
+ Rectangle(
+ extent={{-70,398},{226,216}},
+ fillColor={210,210,210},
+ fillPattern=FillPattern.Solid,
+ pattern=LinePattern.None),
+ Text(
+ extent={{152,392},{226,354}},
+ pattern=LinePattern.None,
+ fillColor={255,255,255},
+ fillPattern=FillPattern.Solid,
+ lineColor={0,0,127},
+ horizontalAlignment=TextAlignment.Left,
+ textString="Pass signal from
+up-staging or down-staging
+process controller based
+on the appropriate process"),
+ Rectangle(
+ extent={{238,362},{358,282}},
+ fillColor={210,210,210},
+ fillPattern=FillPattern.Solid,
+ pattern=LinePattern.None),
+ Text(
+ extent={{292,362},{366,324}},
+ pattern=LinePattern.None,
+ fillColor={255,255,255},
+ fillPattern=FillPattern.Solid,
+ lineColor={0,0,127},
+ horizontalAlignment=TextAlignment.Left,
+ textString="Calculate minimum flow
+setpoint for current status"),
+ Rectangle(
+ extent={{-396,48},{-292,-54}},
+ fillColor={210,210,210},
+ fillPattern=FillPattern.Solid,
+ pattern=LinePattern.None),
+ Text(
+ extent={{-366,-26},{-292,-64}},
+ pattern=LinePattern.None,
+ fillColor={255,255,255},
+ fillPattern=FillPattern.Solid,
+ lineColor={0,0,127},
+ horizontalAlignment=TextAlignment.Left,
+ textString="Calculate minimum flow
+setpoint for all stages"),
+ Rectangle(
+ extent={{108,-22},{186,-60}},
+ fillColor={210,210,210},
+ fillPattern=FillPattern.Solid,
+ pattern=LinePattern.None),
+ Text(
+ extent={{156,-34},{192,-58}},
+ pattern=LinePattern.None,
+ fillColor={255,255,255},
+ fillPattern=FillPattern.Solid,
+ lineColor={0,0,127},
+ horizontalAlignment=TextAlignment.Left,
+ textString="Bypass
+valve
+controller")}),
+Documentation(info="
+
+Block that controls the boiler plant components according to section 5.3
+in ASHRAE RP-1711, March 2020 draft. It consists of the following components:
+
+
+
+The parameter values for valid boiler plant configurations are as follows:
+
+
+
+
+
+Boolean Parameters/Plant configurations |
+1 |
+2 |
+3 |
+4 |
+5 |
+6 |
+7 |
+8 |
+9 |
+10 |
+11 |
+12 |
+13 |
+14 |
+15 |
+16 |
+17 |
+18 |
+19 |
+20 |
+
+
+
+
+have_priOnl |
+True |
+True |
+False |
+False |
+False |
+False |
+False |
+False |
+False |
+False |
+False |
+False |
+False |
+False |
+False |
+False |
+False |
+False |
+False |
+False |
+
+
+have_heaPriPum |
+True |
+True |
+True |
+True |
+True |
+True |
+True |
+True |
+True |
+True |
+True |
+False |
+False |
+False |
+False |
+False |
+False |
+False |
+False |
+False |
+
+
+have_varPriPum |
+True |
+True |
+True |
+True |
+True |
+True |
+True |
+True |
+False |
+False |
+False |
+True |
+True |
+True |
+True |
+True |
+True |
+False |
+False |
+False |
+
+
+have_varSecPum |
+NA |
+NA |
+True |
+True |
+False |
+True |
+True |
+False |
+True |
+True |
+False |
+True |
+True |
+False |
+True |
+True |
+False |
+True |
+True |
+False |
+
+
+speConTypPri |
+localDP |
+remoteDP |
+flowrate |
+flowrate |
+flowrate |
+temperature |
+temperature |
+temperature |
+NA |
+NA |
+NA |
+flowrate |
+flowrate |
+flowrate |
+temperature |
+temperature |
+temperature |
+NA |
+NA |
+NA |
+
+
+speConTypSec |
+NA |
+NA |
+localDP |
+remoteDP |
+NA |
+localDP |
+remoteDP |
+NA |
+localDP |
+remoteDP |
+NA |
+localDP |
+remoteDP |
+NA |
+localDP |
+remoteDP |
+NA |
+localDP |
+remoteDP |
+NA |
+
+
+
+"));
+end Controller;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Generic/EquipmentRotation/ControllerTwo.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Generic/EquipmentRotation/ControllerTwo.mo
new file mode 100644
index 00000000000..435721c6d50
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Generic/EquipmentRotation/ControllerTwo.mo
@@ -0,0 +1,347 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Generic.EquipmentRotation;
+block ControllerTwo
+ "Lead/lag or lead/standby equipment rotation controller for two devices or two groups of devices"
+
+ parameter Boolean lag = true
+ "true = lead/lag; false = lead/standby";
+
+ parameter Boolean continuous = false
+ "Continuous lead device operation"
+ annotation (Evaluate=true, Dialog(enable=not lag));
+
+ parameter Boolean minLim = false
+ "Utilize minimum runtime period for a current lead device before rotation may occur"
+ annotation (Evaluate=true, Dialog(enable=not continuous));
+
+ parameter Boolean initRoles[nDev] = {true, false}
+ "Initial roles: true = lead, false = lag/standby"
+ annotation (Evaluate=true, Dialog(tab="Advanced", group="Initiation"));
+
+ parameter Boolean simTimSta = true
+ "Measure rotation time from the simulation start"
+ annotation(Evaluate=true, Dialog(group="Scheduler", enable=continuous));
+
+ parameter Boolean weeInt = true
+ "Rotation is scheduled in: true = weekly intervals; false = daily intervals"
+ annotation(Evaluate=true, Dialog(group="Scheduler", enable=not simTimSta));
+
+ parameter Integer houOfDay = 2
+ "Rotation hour of the day: 0 = midnight; 23 = 11pm"
+ annotation(Evaluate=true, Dialog(group="Scheduler", enable=not simTimSta));
+
+ parameter Integer weeCou = 1
+ "Number of weeks"
+ annotation (Evaluate=true, Dialog(enable=weeInt and not simTimSta, group="Scheduler"));
+
+ parameter Integer weekday = 1
+ "Rotation weekday, 1 = Monday, 7 = Sunday"
+ annotation (Evaluate=true, Dialog(enable=weeInt and not simTimSta, group="Scheduler"));
+
+ parameter Integer dayCou = 1
+ "Number of days"
+ annotation (Evaluate=true, Dialog(enable=not weeInt and not simTimSta, group="Scheduler"));
+
+ parameter Integer yearRef(min=firstYear, max=lastYear) = 2019
+ "Year when time = 0, used if zerTim=Custom"
+ annotation(Evaluate=true, Dialog(group="Calendar", enable=zerTim==Buildings.Controls.OBC.CDL.Types.ZeroTime.Custom and continuous));
+
+ parameter Real rotationPeriod(
+ final unit="s",
+ final quantity="Time",
+ displayUnit="h") = 1209600
+ "Rotation time period measured from simulation start"
+ annotation(Dialog(group="Scheduler", enable=simTimSta));
+
+ parameter Real minLeaRuntime(
+ final unit="s",
+ final quantity="Time",
+ displayUnit="h") = 43200
+ "Minimum cumulative runtime period for a current lead device before rotation may occur"
+ annotation (Evaluate=true, Dialog(enable=(not continuous and minLim)));
+
+ parameter Real offset(
+ final unit="s",
+ final quantity="Time") = 0
+ "Offset that is added to 'time', may be used for computing time in a different time zone"
+ annotation(Evaluate=true, Dialog(group="Calendar", enable=(continuous and not simTimSta)));
+
+ parameter Buildings.Controls.OBC.CDL.Types.ZeroTime zerTim = Buildings.Controls.OBC.CDL.Types.ZeroTime.NY2019
+ "Enumeration for choosing how reference time (time = 0) should be defined"
+ annotation(Evaluate=true, Dialog(group="Calendar", enable=(continuous and not simTimSta)));
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uLeaStaSet if not continuous
+ "Lead device status setpoint"
+ annotation (Placement(transformation(extent={{-200,-20},{-160,20}}),
+ iconTransformation(extent={{-140,40},{-100,80}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uLagStaSet if lag
+ "Lag device status setpoint"
+ annotation (Placement(transformation(extent={{-200,-100},{-160,-60}}),
+ iconTransformation(extent={{-140,-20},{-100,20}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uDevSta[nDev]
+ "Device proven ON status, where each index represents a physical device/group of devices"
+ annotation (Placement(transformation(extent={{-200,60},{-160,100}}),
+ iconTransformation(extent={{-140,-80},{-100,-40}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanOutput yDevStaSet[nDev]
+ "Device status setpoint, where each index represents a physical device/group of devices"
+ annotation (Placement(transformation(extent={{160,10},{180,30}}), iconTransformation(
+ extent={{100,40},{140,80}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanOutput yDevRol[nDev]
+ "Device role: true = lead, false = lag or standby"
+ annotation (Placement(transformation(extent={{160,-30},{180,-10}}),
+ iconTransformation(extent={{100,-80},{140,-40}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Generic.EquipmentRotation.Subsequences.Scheduler
+ rotSch(
+ final rotationPeriod=rotationPeriod,
+ final simTimSta=simTimSta,
+ final weeInt=weeInt,
+ final houOfDay=houOfDay,
+ final weeCou=weeCou,
+ final weekday=weekday,
+ final dayCou=dayCou,
+ final zerTim=zerTim,
+ final yearRef=yearRef,
+ final offset=offset) if continuous
+ "Generates equipment rotation trigger based on a schedule"
+ annotation (Placement(transformation(extent={{0,20},{20,40}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Generic.EquipmentRotation.Subsequences.MinimumLeadRuntime
+ minLeaTim(final minLeaRuntime=minLeaRuntime) if (minLim and not continuous)
+ "Rotation signal generator with a minimum leading device runtime limiter"
+ annotation (Placement(transformation(extent={{40,-40},{60,-20}})));
+
+protected
+ final parameter Integer nDev = 2
+ "Total number of devices, such as boilers, isolation valves, or HW pumps";
+
+ final constant Integer firstYear = 2010
+ "First year that is supported, i.e. the first year in timeStampsNewYear[:]"
+ annotation (Evaluate=true, Dialog(enable=not continuous));
+
+ final constant Integer lastYear = firstYear + 20
+ "Last year that is currently supported"
+ annotation (Evaluate=true, Dialog(enable=not continuous));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Generic.EquipmentRotation.Subsequences.LeastRuntime
+ leaRunTim(final lag=lag) if (not minLim and not continuous)
+ "Rotation signal generator based on least runtime, at device enable"
+ annotation (Placement(transformation(extent={{40,-90},{60,-70}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Generic.EquipmentRotation.Subsequences.ContinuousLeadSwapTwo
+ leaSwa if continuous
+ "Ensures no old lead device is switched off until the new lead device is proven on"
+ annotation (Placement(transformation(extent={{100,20},{120,40}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Generic.EquipmentRotation.Subsequences.Two
+ rotTwoCon if continuous
+ "Based on a rotation trigger sets device roles according to equipment rotation"
+ annotation (Placement(transformation(extent={{40,20},{60,40}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Generic.EquipmentRotation.Subsequences.Two
+ rotTwo if not continuous
+ "Based on a rotation trigger sets device roles according to equipment rotation"
+ annotation (Placement(transformation(extent={{100,-40},{120,-20}})));
+
+ Buildings.Controls.OBC.CDL.Routing.BooleanScalarReplicator repLea(
+ final nout=nDev) if not continuous
+ "Replicates lead signal"
+ annotation (Placement(transformation(extent={{-120,-20},{-100,0}})));
+
+ Buildings.Controls.OBC.CDL.Routing.BooleanScalarReplicator repLag(
+ final nout=nDev) if lag
+ "Replicates lag signal"
+ annotation (Placement(transformation(extent={{-120,-50},{-100,-30}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Switch logSwi1[nDev] if not continuous
+ "Switch"
+ annotation (Placement(transformation(extent={{-60,-42},{-40,-22}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant staBySta[nDev](
+ final k=fill(false, nDev)) if not lag and not continuous
+ "Standby status"
+ annotation (Placement(transformation(extent={{-120,-90},{-100,-70}})));
+
+equation
+ connect(logSwi1.u1, repLea.y) annotation (Line(points={{-62,-24},{-80,-24},{-80,
+ -10},{-98,-10}}, color={255,0,255}));
+ connect(logSwi1.u3,repLag. y) annotation (Line(points={{-62,-40},{-98,-40}},
+ color={255,0,255}));
+ connect(uLeaStaSet, repLea.u)
+ annotation (Line(points={{-180,0},{-140,0},{-140,-10},{-122,-10}},
+ color={255,0,255}));
+ connect(uLagStaSet, repLag.u)
+ annotation (Line(points={{-180,-80},{-140,-80},{-140,-40},{-122,-40}},
+ color={255,0,255}));
+ connect(logSwi1.y, yDevStaSet) annotation (Line(points={{-38,-32},{-30,-32},{-30,
+ 60},{140,60},{140,20},{170,20}}, color={255,0,255}));
+ connect(staBySta.y,logSwi1. u3) annotation (Line(points={{-98,-80},{-90,-80},{
+ -90,-40},{-62,-40}}, color={255,0,255}));
+ connect(leaSwa.yDevStaSet, yDevStaSet) annotation (Line(points={{122,30},{140,
+ 30},{140,20},{170,20}},
+ color={255,0,255}));
+ connect(minLeaTim.yRot, rotTwo.uRot)
+ annotation (Line(points={{62,-30},{98,-30}}, color={255,0,255}));
+ connect(rotTwo.yDevRol, yDevRol) annotation (Line(points={{122,-30},{140,-30},
+ {140,-20},{170,-20}},color={255,0,255}));
+ connect(rotTwo.yPreDevRolSig, minLeaTim.uPreDevRolSig) annotation (Line(
+ points={{122,-36},{140,-36},{140,-60},{20,-60},{20,-38},{38,-38}},
+ color={255,0,255}));
+ connect(rotTwo.yPreDevRolSig, logSwi1.u2) annotation (Line(points={{122,-36},{
+ 140,-36},{140,-60},{-80,-60},{-80,-32},{-62,-32}}, color={255,0,255}));
+ connect(rotSch.yRot, rotTwoCon.uRot)
+ annotation (Line(points={{22,30},{38,30}}, color={255,0,255}));
+ connect(uDevSta, leaSwa.uDevSta) annotation (Line(points={{-180,80},{90,80},{90,
+ 26},{98,26}}, color={255,0,255}));
+ connect(rotTwoCon.yDevRol, leaSwa.uDevRolSet) annotation (Line(points={{62,30},
+ {80,30},{80,34},{98,34}},
+ color={255,0,255}));
+ connect(rotTwoCon.yDevRol, yDevRol) annotation (Line(points={{62,30},{80,30},{
+ 80,0},{140,0},{140,-20},{170,-20}}, color={255,0,255}));
+ connect(uDevSta, minLeaTim.uDevSta) annotation (Line(points={{-180,80},{-20,80},
+ {-20,-30},{38,-30}}, color={255,0,255}));
+ connect(rotTwo.yPreDevRolSig, leaRunTim.uPreDevRolSig) annotation (Line(
+ points={{122,-36},{140,-36},{140,-94},{30,-94},{30,-88},{38,-88}},
+ color={255,0,255}));
+ connect(uDevSta, leaRunTim.uDevSta) annotation (Line(points={{-180,80},{-20,80},
+ {-20,-80},{38,-80}}, color={255,0,255}));
+ connect(leaRunTim.yRot, rotTwo.uRot) annotation (Line(points={{62,-80},{80,-80},
+ {80,-30},{98,-30}}, color={255,0,255}));
+
+ connect(uLeaStaSet, leaRunTim.uDevStaSet[1]) annotation (Line(points={{-180,0},
+ {-140,0},{-140,12},{0,12},{0,-73},{38,-73}}, color={255,0,255}));
+ connect(uLagStaSet, leaRunTim.uDevStaSet[2]) annotation (Line(points={{-180,
+ -80},{-140,-80},{-140,-54},{0,-54},{0,-71},{38,-71}}, color={255,0,
+ 255}));
+annotation(Diagram(coordinateSystem(extent={{-160,-100},{160,100}})),
+ defaultComponentName="equRot",
+ Icon(graphics={
+ Rectangle(
+ extent={{-100,-100},{100,100}},
+ lineColor={0,0,127},
+ fillColor={255,255,255},
+ fillPattern=FillPattern.Solid),
+ Ellipse(
+ extent={{71,7},{85,-7}},
+ lineColor=DynamicSelect({235,235,235}, if y then {0,255,0}
+ else {235,235,235}),
+ fillColor=DynamicSelect({235,235,235}, if y then {0,255,0}
+ else {235,235,235}),
+ fillPattern=FillPattern.Solid),
+ Ellipse(
+ extent={{-75,-6},{-89,8}},
+ lineColor=DynamicSelect({235,235,235}, if u1 then {0,255,0}
+ else {235,235,235}),
+ fillColor=DynamicSelect({235,235,235}, if u1 then {0,255,0}
+ else {235,235,235}),
+ fillPattern=FillPattern.Solid),
+ Text(
+ extent={{-120,146},{100,108}},
+ textColor={0,0,255},
+ textString="%name"),
+ Ellipse(
+ origin={-26.6667,38.6207},
+ lineColor={128,128,128},
+ fillColor={255,255,255},
+ fillPattern=FillPattern.Solid,
+ extent={{-53.3333,1.37927},{-13.3329,41.3792}}),
+ Ellipse(
+ origin={93.3333,-81.3793},
+ lineColor={128,128,128},
+ fillColor={255,255,255},
+ fillPattern=FillPattern.Solid,
+ extent={{-53.3333,1.37927},{-13.3329,41.3792}}),
+ Ellipse(
+ origin={-26.6667,-81.3793},
+ lineColor={128,128,128},
+ fillColor={28,108,200},
+ fillPattern=FillPattern.Solid,
+ extent={{-53.3333,1.37927},{-13.3329,41.3792}}),
+ Ellipse(
+ origin={93.333,38.6207},
+ lineColor={128,128,128},
+ fillColor={28,108,200},
+ fillPattern=FillPattern.Solid,
+ extent={{-53.3333,1.37927},{-13.3329,41.3792}}),
+ Line(points={{-40,60},{0,60},{0,-60},{40,-60}}, color={128,128,128}),
+ Line(points={{-40,-60},{0,-60},{0,60},{40,60}}, color={128,128,128})}),
+ Documentation(info="
+
+This controller block rotates equipment, such as boilers, pumps or valves, in order
+to ensure equal wear and tear. It is intended to be used for lead/lag and
+lead/standby operation of two devices or groups of devices. The implementation is
+based on the specification from ASHRAE RP-1711, March 2020 Draft, section 5.1.2.1.-4.
+
+
+The controller takes as inputs the current device proven ON/OFF status vector uDevSta
,
+lead device status setpoint uLeaStaSet
and lag device status setpoint uLagStaSet
.
+The controller features the following rotation subsequences to generate the device status setpoints yDevStaSet
+and device roles yDevRol
outputs:
+
+
+
+The
+Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Generic.EquipmentRotation.Subsequences.Two subsequence allocates
+the status setpoints yDevStaSet
to devices based on the rotation signal.
+
+
+The output vector yDevRol
indicates the role of each device, where true
+represents a lead role and false represents a lag or a standby role.
+
+
+The indices of both output vectors and the uDevSta
input vector represent physical devices.
+
+
+In addition to the specification in RP-1711, this model allows the user to:
+
+
+-
+specify time of day and either a number of days or a weekday with a number of weeks
+as time period to rotate devices or groups of devices that run continuously.
+
+-
+optionally impose a minimum cumulative runtime period
minLeaRuntime
for a current
+lead device before rotation may occur. The time is accumulated in any role for each device and
+reset for each lead device or group of devices at role rotation.
+This implementation assumes that a more frequent load is being sent to a lead device or group of devices.
+
+
+", revisions="
+
+-
+April 13, 2020, by Karthik Devaprasad:
+First implementation.
+
+
+"));
+end ControllerTwo;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Generic/EquipmentRotation/Subsequences/ContinuousLeadSwapTwo.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Generic/EquipmentRotation/Subsequences/ContinuousLeadSwapTwo.mo
new file mode 100644
index 00000000000..27f30ef2de1
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Generic/EquipmentRotation/Subsequences/ContinuousLeadSwapTwo.mo
@@ -0,0 +1,69 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Generic.EquipmentRotation.Subsequences;
+block ContinuousLeadSwapTwo
+ "Ensures that the previous lead device remains enabled until the new lead device is proven on"
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uDevRolSet[nDev]
+ "Device role setpoint: true = lead, false = standby"
+ annotation (Placement(transformation(extent={{-100,0},{-60,40}}),
+ iconTransformation(extent={{-140,20},{-100,60}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uDevSta[nDev]
+ "Device status: true = proven ON; false = proven OFF"
+ annotation (Placement(transformation(extent={{-100,-40},{-60,0}}),
+ iconTransformation(extent={{-140,-60},{-100,-20}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanOutput yDevStaSet[nDev]
+ "Device status setpoint"
+ annotation (Placement(transformation(extent={{60,0},{100,40}}),
+ iconTransformation(extent={{100,-20},{140,20}})));
+
+protected
+ final parameter Integer nDev = 2
+ "Total number of devices, such as boilers, isolation valves, HW pumps";
+
+ Buildings.Controls.OBC.CDL.Logical.Or or1[nDev] "Logical or"
+ annotation (Placement(transformation(extent={{20,10},{40,30}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Not not1[nDev] "Logical not"
+ annotation (Placement(transformation(extent={{-40,-30},{-20,-10}})));
+
+equation
+ connect(uDevSta, not1.u)
+ annotation (Line(points={{-80,-20},{-42,-20}}, color={255,0,255}));
+ connect(uDevRolSet, or1.u1)
+ annotation (Line(points={{-80,20},{18,20}},color={255,0,255}));
+ connect(not1[1].y, or1[2].u2)
+ annotation (Line(points={{-18,-20},{0,-20},{0,12},{18,12}}, color={255,0,255}));
+ connect(not1[2].y, or1[1].u2)
+ annotation (Line(points={{-18,-20},{-10,-20},{-10,12},{18,12}}, color={255,0,255}));
+ connect(or1.y, yDevStaSet)
+ annotation (Line(points={{42,20},{80,20}}, color={255,0,255}));
+ annotation (defaultComponentName="leaSwa",
+ Icon(graphics={Rectangle(
+ extent={{-100,-100},{100,100}},
+ lineColor={0,0,127}, fillColor={255,255,255},
+ fillPattern=FillPattern.Solid),
+ Ellipse( extent={{71,7},{85,-7}},
+ lineColor=DynamicSelect({235,235,235}, if y then {0,255,0} else {235,235,235}),
+ fillColor=DynamicSelect({235,235,235}, if y then {0,255,0} else {235,235,235}),
+ fillPattern=FillPattern.Solid), Ellipse( extent={{-75,-6},{-89,8}},
+ lineColor=DynamicSelect({235,235,235}, if u1 then {0,255,0} else {235,235,235}),
+ fillColor=DynamicSelect({235,235,235}, if u1 then {0,255,0} else {235,235,235}),
+ fillPattern=FillPattern.Solid), Text( extent={{-120,146},{100,108}},
+ textColor={0,0,255}, textString="%name")}),
+ Documentation(info="
+
+This block ensures that the new lead device is started and proven on before the old
+lead device is switched to standby and shut off. The implementation is
+according to March 2020 Draft RP-1711, section 5.1.2.4.2.
+
+", revisions="
+
+-
+May 18, 2020, by Milica Grahovac:
+First implementation.
+
+
+"),
+ Diagram(coordinateSystem(extent={{-60,-40},{60,40}})));
+end ContinuousLeadSwapTwo;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Generic/EquipmentRotation/Subsequences/LeastRuntime.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Generic/EquipmentRotation/Subsequences/LeastRuntime.mo
new file mode 100644
index 00000000000..87cbda05ac8
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Generic/EquipmentRotation/Subsequences/LeastRuntime.mo
@@ -0,0 +1,201 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Generic.EquipmentRotation.Subsequences;
+block LeastRuntime
+ "Generates equipment rotation signal at each device enable if that device has a least total runtime"
+
+ parameter Boolean lag = true
+ "true = lead/lag; false = lead/standby";
+
+ parameter Boolean initRoles[nDev] = {true, false}
+ "Initial roles: true = lead, false = lag/standby"
+ annotation (Evaluate=true, Dialog(tab="Advanced", group="Initiation"));
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uDevStaSet[nDev] if lag
+ "Device status setpoint: true = ON, false = OFF"
+ annotation (Placement(transformation(extent={{-200,20},{-160,60}}),
+ iconTransformation(extent={{-140,60},{-100,100}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uDevSta[nDev]
+ "Device status: true = proven ON, false = proven OFF"
+ annotation (Placement(transformation(extent={{-200,-20},{-160,20}}),
+ iconTransformation(extent={{-140,-20},{-100,20}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uPreDevRolSig[nDev]
+ "Device roles in the previous time instance: true = lead; false = lag or standby"
+ annotation (Placement(transformation(extent={{-200,-60},{-160,-20}}),
+ iconTransformation(extent={{-140,-100},{-100,-60}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanOutput yRot
+ "Rotation trigger signal"
+ annotation (Placement(transformation(extent={{160,-20},{200,20}}),
+ iconTransformation(extent={{100,-20},{140,20}})));
+
+ Buildings.Controls.OBC.CDL.Logical.TimerAccumulating accTim[nDev]
+ "Measures time spent loaded at the current role (lead or lag)"
+ annotation (Placement(transformation(extent={{-60,50},{-40,70}})));
+
+protected
+ final parameter Integer nDev = 2
+ "Total number of devices, such as boilers, isolation valves, or HW pumps";
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant con[nDev](
+ final k=fill(false, nDev))
+ "Constant"
+ annotation (Placement(transformation(extent={{-100,20},{-80,40}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Greater longer1
+ "Runtime of the first device is longer than runtime of the second device"
+ annotation (Placement(transformation(extent={{-20,50},{0,70}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Greater longer2
+ "Runtime of the second device is longer than the runtime of the first device"
+ annotation (Placement(transformation(extent={{-20,20},{0,40}})));
+
+ Buildings.Controls.OBC.CDL.Logical.MultiOr mulOr(
+ final nin=nDev)
+ "Multiple or"
+ annotation (Placement(transformation(extent={{130,-10},{150,10}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Not not1 if lag
+ "Logical not"
+ annotation (Placement(transformation(extent={{20,50},{40,70}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Not not2 if lag
+ "Logical not"
+ annotation (Placement(transformation(extent={{20,20},{40,40}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Not not3[nDev] if lag
+ "Logical not"
+ annotation (Placement(transformation(extent={{6,-50},{26,-30}})));
+
+ Buildings.Controls.OBC.CDL.Logical.And3 and3[nDev] if lag
+ "Logical not"
+ annotation (Placement(transformation(extent={{100,10},{120,30}})));
+
+ Buildings.Controls.OBC.CDL.Logical.And and1[nDev] if not lag
+ "Logical and"
+ annotation (Placement(transformation(extent={{100,-70},{120,-50}})));
+
+ Buildings.Controls.OBC.CDL.Logical.FallingEdge falEdg [nDev](
+ final pre_u_start=fill(false, nDev)) if not lag
+ "Falling edge"
+ annotation (Placement(transformation(extent={{-100,-70},{-80,-50}})));
+
+ Buildings.Controls.OBC.CDL.Routing.BooleanScalarReplicator booRep(
+ final nout=nDev) if lag
+ "Boolean replicator"
+ annotation (Placement(transformation(extent={{-40,-30},{-20,-10}})));
+
+ Buildings.Controls.OBC.CDL.Logical.MultiOr mulOr1(
+ final nin=nDev) if lag
+ "Multi Or"
+ annotation (Placement(transformation(extent={{-100,-30},{-80,-10}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Edge edg1 if lag
+ "Identify when component turns on after they have all been turned off"
+ annotation (Placement(transformation(extent={{-70,-30},{-50,-10}})));
+
+equation
+ connect(uDevSta, accTim.u)
+ annotation (Line(points={{-180,0},{-120,0},{-120,60},{-62,60}},
+ color={255,0,255}));
+ connect(accTim[1].y, longer1.u1)
+ annotation (Line(points={{-38,60},{-22,60}}, color={0,0,127}));
+ connect(accTim[2].y, longer1.u2) annotation (Line(points={{-38,60},{-30,60},{-30,
+ 52},{-22,52}}, color={0,0,127}));
+ connect(accTim[1].y, longer2.u2) annotation (Line(points={{-38,60},{-30,60},{-30,
+ 22},{-22,22}}, color={0,0,127}));
+ connect(accTim[2].y, longer2.u1) annotation (Line(points={{-38,60},{-30,60},{-30,
+ 30},{-22,30}}, color={0,0,127}));
+ connect(yRot, yRot)
+ annotation (Line(points={{180,0},{180,0}}, color={255,0,255}));
+ connect(longer2.y, not2.u)
+ annotation (Line(points={{2,30},{18,30}}, color={255,0,255}));
+ connect(longer1.y, not1.u)
+ annotation (Line(points={{2,60},{18,60}}, color={255,0,255}));
+ connect(uPreDevRolSig, not3.u)
+ annotation (Line(points={{-180,-40},{4,-40}}, color={255,0,255}));
+ connect(not1.y, and3[1].u1) annotation (Line(points={{42,60},{80,60},{80,28},{
+ 98,28}}, color={255,0,255}));
+ connect(not2.y, and3[2].u1) annotation (Line(points={{42,30},{80,30},{80,28},{
+ 98,28}}, color={255,0,255}));
+ connect(mulOr.y, yRot)
+ annotation (Line(points={{152,0},{180,0}}, color={255,0,255}));
+ connect(longer1.y, and1[1].u1) annotation (Line(points={{2,60},{10,60},{10,-20},
+ {80,-20},{80,-60},{98,-60}}, color={255,0,255}));
+ connect(longer2.y, and1[2].u1) annotation (Line(points={{2,30},{10,30},{10,-20},
+ {80,-20},{80,-60},{98,-60}}, color={255,0,255}));
+ connect(con.y, accTim.reset) annotation (Line(points={{-78,30},{-70,30},{-70,52},
+ {-62,52}}, color={255,0,255}));
+ connect(falEdg.y, and1.u2) annotation (Line(points={{-78,-60},{70,-60},{70,-68},
+ {98,-68}}, color={255,0,255}));
+ connect(and3.y, mulOr.u) annotation (Line(points={{122,20},{124,20},{124,
+ 0},{128,0}}, color={255,0,255}));
+ connect(and1.y, mulOr.u) annotation (Line(points={{122,-60},{124,-60},{
+ 124,0},{128,0}}, color={255,0,255}));
+ connect(booRep.y, and3.u3) annotation (Line(points={{-18,-20},{-10,-20},{-10,12},
+ {98,12}}, color={255,0,255}));
+ connect(not3.y, and3.u2) annotation (Line(points={{28,-40},{90,-40},{90,20},{98,
+ 20}}, color={255,0,255}));
+ connect(uDevStaSet, mulOr1.u[1:2]) annotation (Line(points={{-180,40},{-130,40},
+ {-130,-23.5},{-102,-23.5}}, color={255,0,255}));
+ connect(mulOr1.y, edg1.u)
+ annotation (Line(points={{-78,-20},{-72,-20}}, color={255,0,255}));
+ connect(edg1.y, booRep.u)
+ annotation (Line(points={{-48,-20},{-42,-20}}, color={255,0,255}));
+
+ connect(uDevSta, falEdg.u) annotation (Line(points={{-180,0},{-120,0},{-120,-60},
+ {-102,-60}}, color={255,0,255}));
+ annotation (Diagram(coordinateSystem(extent={{-160,-80},{160,80}})),
+ defaultComponentName="leaRunTim",
+ Icon(graphics={
+ Rectangle(
+ extent={{-100,-100},{100,100}},
+ lineColor={0,0,127},
+ fillColor={255,255,255},
+ fillPattern=FillPattern.Solid),
+ Text(
+ extent={{-120,146},{100,108}},
+ textColor={0,0,255},
+ textString="%name"),
+ Line(points={{-66,-70},{82,-70}},
+ color={192,192,192}),
+ Line(points={{-58,68},{-58,-80}},
+ color={192,192,192}),
+ Polygon(lineColor={192,192,192},
+ fillColor={192,192,192},
+ fillPattern=FillPattern.Solid,
+ points={{90.0,-70.0},{68.0,-62.0},{68.0,-78.0},{90.0,-70.0}}),
+ Polygon(lineColor={192,192,192},
+ fillColor={192,192,192},
+ fillPattern=FillPattern.Solid,
+ points={{-58,90},{-66,68},{-50,68},{-58,90}}),
+ Line(points={{-56,-70},{-38,-70},{-38,-26},{40,-26},{40,-70},{68,-70}},
+ color={255,0,255}),
+ Line(points={{-58,0},{-40,0},{40,90},{40,0},{68,0}},
+ color={0,0,127})}),
+ Documentation(info="
+
+This subsequence generates a rotation trigger signal yRot
based on measuring the time each of the devices/groups of devices
+has spent in its current role. The rotation trigger output yRot
is generated:
+
+
+-
+for lead/lag operation when a device/a group of devices is enabled that has the shortest cumulative runtime
+
+-
+for lead/standby operation when a device/a group of devices is disbled that has the longest cumulative runtime
+
+
+
+The implementation corresponts sections 5.1.2.3. and 5.1.2.4.1. of RP1711 March 2020 draft when applied to
+two devices or groups of devices.
+
+", revisions="
+
+-
+April 13 2020, by Karthik Devaprasad:
+First implementation.
+
+
+"));
+end LeastRuntime;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Generic/EquipmentRotation/Subsequences/MinimumLeadRuntime.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Generic/EquipmentRotation/Subsequences/MinimumLeadRuntime.mo
new file mode 100644
index 00000000000..c2de9d8cb6b
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Generic/EquipmentRotation/Subsequences/MinimumLeadRuntime.mo
@@ -0,0 +1,148 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Generic.EquipmentRotation.Subsequences;
+block MinimumLeadRuntime
+ "Generates equipment rotation signal when a lead device/group of devices exceeds a miminum cumulative runtime"
+
+ parameter Boolean initRoles[nDev] = {true, false}
+ "Initial roles: true = lead, false = lag/standby"
+ annotation (Evaluate=true, Dialog(tab="Advanced", group="Initiation"));
+
+ parameter Real minLeaRuntime(
+ final unit="s",
+ final quantity="Time",
+ displayUnit="h") = 864000
+ "Minimum cumulative runtime period for a current lead device before rotation may occur";
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uDevSta[nDev]
+ "Device status: true = proven ON, false = proven OFF"
+ annotation (Placement(transformation(extent={{-200,40},{-160,80}}),
+ iconTransformation(extent={{-140,-20},{-100,20}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uPreDevRolSig[nDev]
+ "Device roles in the previous time instance: true = lead; false = lag or standby"
+ annotation (Placement(transformation(extent={{-200,-80},{-160,-40}}),
+ iconTransformation(extent={{-140,-100},{-100,-60}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanOutput yRot "Rotation trigger signal"
+ annotation (Placement(transformation(extent={{160,0},{200,40}}),
+ iconTransformation(extent={{100,-20},{140,20}})));
+
+ Buildings.Controls.OBC.CDL.Logical.TimerAccumulating accTim[nDev](
+ final t=fill(minLeaRuntime, nDev))
+ "Measures time spent loaded at the current role (lead or lag)"
+ annotation (Placement(transformation(extent={{-60,50},{-40,70}})));
+
+protected
+ final parameter Integer nDev = 2
+ "Total number of devices, such as boilers, isolation valves, or HW pumps";
+
+ final parameter Real minLeaRuntimes[nDev](
+ final unit=fill("s",nDev),
+ final quantity=fill("Time",nDev)) = fill(minLeaRuntime, nDev)
+ "Staging runtimes array";
+
+ Buildings.Controls.OBC.CDL.Logical.And and2[nDev] "Logical and"
+ annotation (Placement(transformation(extent={{80,10},{100,30}})));
+
+ Buildings.Controls.OBC.CDL.Logical.MultiOr mulOr(
+ final nin=nDev) "Array or"
+ annotation (Placement(transformation(extent={{120,10},{140,30}})));
+
+ Buildings.Controls.OBC.CDL.Logical.MultiAnd allOn(
+ final nin=nDev) "Outputs true if all devices are enabled"
+ annotation (Placement(transformation(extent={{-60,20},{-40,40}})));
+
+ Buildings.Controls.OBC.CDL.Logical.MultiOr anyOn(
+ final nin=nDev) "Checks if any device is disabled"
+ annotation (Placement(transformation(extent={{-100,-20},{-80,0}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Not allOff
+ "Returns true if all devices are disabled"
+ annotation (Placement(transformation(extent={{-60,-20},{-40,0}})));
+
+ Buildings.Controls.OBC.CDL.Routing.BooleanScalarReplicator booRep1(
+ final nout=nDev) "Booolean replicator"
+ annotation (Placement(transformation(extent={{20,10},{40,30}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Or equSig
+ "Outputs true if either all devices are enabled or all devices are disabled"
+ annotation (Placement(transformation(extent={{-20,10},{0,30}})));
+
+ Buildings.Controls.OBC.CDL.Logical.FallingEdge falEdg1[nDev] "Falling Edge"
+ annotation (Placement(transformation(extent={{-140,-70},{-120,-50}})));
+
+equation
+ connect(mulOr.u, and2.y)
+ annotation (Line(points={{118,20},{102,20}}, color={255,0,255}));
+
+ connect(booRep1.y, and2.u2)
+ annotation (Line(points={{42,20},{50,20},{50,12},{78,12}}, color={255,0,255}));
+ connect(anyOn.y, allOff.u)
+ annotation (Line(points={{-78,-10},{-62,-10}}, color={255,0,255}));
+ connect(booRep1.u, equSig.y)
+ annotation (Line(points={{18,20},{2,20}}, color={255,0,255}));
+ connect(allOff.y, equSig.u2) annotation (Line(points={{-38,-10},{-30,-10},{-30,
+ 12},{-22,12}}, color={255,0,255}));
+ connect(allOn.y, equSig.u1) annotation (Line(points={{-38,30},{-30,30},{-30,20},
+ {-22,20}},color={255,0,255}));
+ connect(uDevSta, accTim.u)
+ annotation (Line(points={{-180,60},{-62,60}}, color={255,0,255}));
+ connect(uDevSta, allOn.u) annotation (Line(points={{-180,60},{-80,60},{-80,
+ 30},{-62,30}}, color={255,0,255}));
+ connect(uDevSta, anyOn.u) annotation (Line(points={{-180,60},{-120,60},{-120,
+ -10},{-102,-10}}, color={255,0,255}));
+ connect(mulOr.y, yRot)
+ annotation (Line(points={{142,20},{180,20}}, color={255,0,255}));
+ connect(uPreDevRolSig, falEdg1.u)
+ annotation (Line(points={{-180,-60},{-142,-60}}, color={255,0,255}));
+ connect(falEdg1.y, accTim.reset) annotation (Line(points={{-118,-60},{-110,-60},
+ {-110,52},{-62,52}}, color={255,0,255}));
+ connect(accTim.passed, and2.u1) annotation (Line(points={{-38,52},{60,52},{60,
+ 20},{78,20}}, color={255,0,255}));
+ annotation (Diagram(coordinateSystem(extent={{-160,-80},{160,80}})),
+ defaultComponentName="minLeaTim",
+ Icon(graphics={
+ Rectangle(
+ extent={{-100,-100},{100,100}},
+ lineColor={0,0,127},
+ fillColor={255,255,255},
+ fillPattern=FillPattern.Solid),
+ Text(
+ extent={{-120,146},{100,108}},
+ textColor={0,0,255},
+ textString="%name"),
+ Line(points={{-66,-70},{82,-70}},
+ color={192,192,192}),
+ Line(points={{-58,68},{-58,-80}},
+ color={192,192,192}),
+ Polygon(lineColor={192,192,192},
+ fillColor={192,192,192},
+ fillPattern=FillPattern.Solid,
+ points={{90.0,-70.0},{68.0,-62.0},{68.0,-78.0},{90.0,-70.0}}),
+ Polygon(lineColor={192,192,192},
+ fillColor={192,192,192},
+ fillPattern=FillPattern.Solid,
+ points={{-58,90},{-66,68},{-50,68},{-58,90}}),
+ Line(points={{-56,-70},{-38,-70},{-38,-26},{40,-26},{40,-70},{68,-70}},
+ color={255,0,255}),
+ Line(points={{-58,0},{-40,0},{40,90},{40,0},{68,0}},
+ color={0,0,127})}),
+ Documentation(info="
+
+This subsequence generates a rotation trigger based on measuring time each of the devices enable time.
+The rotation trigger output yRot
is generated as the current lead device runtime
+exceeds minLeaRuntime
and the conditions are met such that the devices are not hot swapped. To
+avoid hot swapping the lead and lag/standby device need to be either both ON or both OFF for the rotation to occur.
+As the rotation trigger output yRot
signal is generated, the runtime for the previous lead device
+or group of devices is reset to zero.
+
+This is an OBC custom implementation.
+
+", revisions="
+
+-
+May 15, 2020, by Milica Grahovac:
+First implementation.
+
+
+"));
+end MinimumLeadRuntime;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Generic/EquipmentRotation/Subsequences/Scheduler.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Generic/EquipmentRotation/Subsequences/Scheduler.mo
new file mode 100644
index 00000000000..0d2cbda85b3
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Generic/EquipmentRotation/Subsequences/Scheduler.mo
@@ -0,0 +1,251 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Generic.EquipmentRotation.Subsequences;
+block Scheduler
+ "Equipment rotation signal based on a scheduler for equipment that runs continuously"
+
+ parameter Boolean simTimSta = true
+ "Measure rotation time from the simulation start";
+
+ parameter Boolean weeInt = false
+ "Rotation is scheduled in: true = weekly intervals; false = daily intervals"
+ annotation (Evaluate=true, Dialog(enable=not simTimSta));
+
+ parameter Integer yearRef(
+ final min=firstYear,
+ final max=lastYear) = 2019
+ "Year when time = 0, used if zerTim=Custom"
+ annotation(Dialog(group="Calendar", enable=zerTim==Buildings.Controls.OBC.CDL.Types.ZeroTime.Custom));
+
+ parameter Integer houOfDay = 2 "Rotation hour of the day: 0 = midnight; 23 = 11pm"
+ annotation (Evaluate=true, Dialog(enable=not simTimSta));
+
+ parameter Integer weeCou = 1 "Number of weeks"
+ annotation (Evaluate=true, Dialog(enable=weeInt and not simTimSta));
+
+ parameter Integer weekday = 1
+ "Rotation weekday, 1 = Monday, 7 = Sunday"
+ annotation (Evaluate=true, Dialog(enable=weeInt and not simTimSta));
+
+ parameter Integer dayCou = 1 "Number of days"
+ annotation (Evaluate=true, Dialog(enable=not weeInt and not simTimSta));
+
+ parameter Real offset(
+ final unit="s",
+ final quantity="Time") = 0
+ "Offset that is added to 'time', may be used for computing time in different time zone"
+ annotation(Dialog(group="Calendar", enable=not simTimSta));
+
+ parameter Real rotationPeriod(
+ final unit="s",
+ final quantity="Time",
+ displayUnit="h") = 1209600
+ "Rotation time period measured from simulation start"
+ annotation(Dialog(group="Calendar", enable=simTimSta));
+
+ parameter Real iniRotDel(
+ final unit="s",
+ final quantity="Time",
+ displayUnit="s") = 1
+ "Delay before the first rotation measured from simulation start"
+ annotation(Dialog(group="Calendar", enable=simTimSta));
+
+ parameter Buildings.Controls.OBC.CDL.Types.ZeroTime zerTim = Buildings.Controls.OBC.CDL.Types.ZeroTime.NY2019
+ "Enumeration for choosing how reference time (time = 0) should be defined"
+ annotation(Dialog(group="Calendar", enable=not simTimSta));
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanOutput yRot
+ "Rotation trigger signal"
+ annotation (Placement(transformation(extent={{160,-20},{200,20}}),
+ iconTransformation(extent={{100,-20},{140,20}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.CalendarTime calTim(
+ final zerTim=zerTim,
+ final yearRef=yearRef,
+ final offset=offset) if not simTimSta
+ "Calendar time"
+ annotation (Placement(transformation(extent={{-140,100},{-120,120}})));
+
+ Buildings.Controls.OBC.CDL.Integers.OnCounter onCouInt if not simTimSta
+ "Integer counter"
+ annotation (Placement(transformation(extent={{0,10},{20,30}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.SampleTrigger rotTri(final period=
+ rotationPeriod, final shift=0) if simTimSta "Sample trigger"
+ annotation (Placement(transformation(extent={{-140,-120},{-120,-100}})));
+
+protected
+ final constant Integer firstYear = 2010
+ "First year that is supported, i.e. the first year in timeStampsNewYear[:]";
+
+ final constant Integer lastYear = firstYear + 11
+ "Last year that is supported (actual building automation system need to support a larger range)";
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant houOfDay1(
+ final k=houOfDay) if not simTimSta
+ "Hour of the day for rotating devices that run continuously"
+ annotation (Placement(transformation(extent={{-140,60},{-120,80}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant weeDay(
+ final k=weekday) if (weeInt and not simTimSta) "Weekday for the rotation"
+ annotation (Placement(transformation(extent={{-140,20},{-120,40}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant weeCou1(
+ final k=weeCou) if (weeInt and not simTimSta) "Number of weeks for scheduled rotation"
+ annotation (Placement(transformation(extent={{-140,-30},{-120,-10}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant dayCou1(
+ final k=dayCou) if (not weeInt and not simTimSta) "Number of days for scheduled rotation"
+ annotation (Placement(transformation(extent={{-140,-70},{-120,-50}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Equal isWee if (weeInt and not simTimSta)
+ "Checks if current weekday is the rotation weekday"
+ annotation (Placement(transformation(extent={{-100,30},{-80,50}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Equal intEqu if not simTimSta
+ "Checks equality"
+ annotation (Placement(transformation(extent={{-80,80},{-60,100}})));
+
+ Buildings.Controls.OBC.CDL.Logical.And and2 if not simTimSta
+ "Logical and"
+ annotation (Placement(transformation(extent={{-40,10},{-20,30}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Equal intEqu2 if not simTimSta
+ "Logical equal"
+ annotation (Placement(transformation(extent={{40,10},{60,30}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Pre pre if not simTimSta
+ "Logical pre"
+ annotation (Placement(transformation(extent={{80,10},{100,30}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Edge edg if not simTimSta
+ "Rising edge"
+ annotation (Placement(transformation(extent={{120,10},{140,30}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant truSig(
+ final k=true) if (not weeInt and not simTimSta) "True signal"
+ annotation (Placement(transformation(extent={{-100,0},{-80,20}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Timer tim(
+ final t=iniRotDel) if simTimSta
+ "Timer"
+ annotation (Placement(transformation(extent={{-60,-100},{-40,-80}})));
+
+ Buildings.Controls.OBC.CDL.Logical.And and1 if simTimSta
+ "Logical And"
+ annotation (Placement(transformation(extent={{20,-120},{40,-100}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant con(
+ final k=true) if simTimSta "True constant for the timer"
+ annotation (Placement(transformation(extent={{-100,-100},{-80,-80}})));
+
+equation
+ connect(dayCou1.y, intEqu2.u2) annotation (Line(points={{-118,-60},{30,-60},{30,
+ 12},{38,12}}, color={255,127,0}));
+ connect(calTim.hour, intEqu.u1) annotation (Line(points={{-119,116},{-100,116},
+ {-100,90},{-82,90}},color={255,127,0}));
+ connect(houOfDay1.y, intEqu.u2) annotation (Line(points={{-118,70},{-100,70},{
+ -100,82},{-82,82}}, color={255,127,0}));
+ connect(calTim.weekDay, isWee.u1) annotation (Line(points={{-119,104},{-110,104},
+ {-110,40},{-102,40}}, color={255,127,0}));
+ connect(weeDay.y, isWee.u2) annotation (Line(points={{-118,30},{-110,30},{-110,
+ 32},{-102,32}}, color={255,127,0}));
+ connect(intEqu.y, and2.u1) annotation (Line(points={{-58,90},{-50,90},{-50,20},
+ {-42,20}},color={255,0,255}));
+ connect(intEqu2.y, pre.u)
+ annotation (Line(points={{62,20},{78,20}}, color={255,0,255}));
+ connect(pre.y, edg.u)
+ annotation (Line(points={{102,20},{118,20}}, color={255,0,255}));
+ connect(and2.y, onCouInt.trigger)
+ annotation (Line(points={{-18,20},{-2,20}},color={255,0,255}));
+ connect(onCouInt.y, intEqu2.u1)
+ annotation (Line(points={{22,20},{38,20}}, color={255,127,0}));
+ connect(pre.y, onCouInt.reset) annotation (Line(points={{102,20},{110,20},{110,
+ -8},{10,-8},{10,8}},color={255,0,255}));
+ connect(edg.y, yRot)
+ annotation (Line(points={{142,20},{150,20},{150,0},{180,0}}, color={255,0,255}));
+ connect(weeCou1.y, intEqu2.u2) annotation (Line(points={{-118,-20},{30,-20},{30,
+ 12},{38,12}}, color={255,127,0}));
+ connect(isWee.y, and2.u2) annotation (Line(points={{-78,40},{-60,40},{-60,12},
+ {-42,12}}, color={255,0,255}));
+ connect(truSig.y, and2.u2) annotation (Line(points={{-78,10},{-60,10},{-60,12},
+ {-42,12}}, color={255,0,255}));
+ connect(rotTri.y, and1.u2) annotation (Line(points={{-118,-110},{-70,-110},{-70,
+ -118},{18,-118}}, color={255,0,255}));
+ connect(and1.y, yRot) annotation (Line(points={{42,-110},{150,-110},{150,0},{180,
+ 0}}, color={255,0,255}));
+ connect(con.y, tim.u)
+ annotation (Line(points={{-78,-90},{-62,-90}}, color={255,0,255}));
+ connect(tim.passed, and1.u1) annotation (Line(points={{-38,-98},{0,-98},{0,
+ -110},{18,-110}}, color={255,0,255}));
+ annotation (Diagram(coordinateSystem(extent={{-160,-140},{160,140}})),
+ defaultComponentName="rotSch",
+ Icon(graphics={
+ Rectangle(
+ extent={{-100,-100},{100,100}},
+ lineColor={0,0,127},
+ fillColor={255,255,255},
+ fillPattern=FillPattern.Solid),
+ Ellipse(
+ extent={{71,7},{85,-7}},
+ lineColor=DynamicSelect({235,235,235}, if y then {0,255,0}
+ else {235,235,235}),
+ fillColor=DynamicSelect({235,235,235}, if y then {0,255,0}
+ else {235,235,235}),
+ fillPattern=FillPattern.Solid),
+ Ellipse(
+ extent={{-75,-6},{-89,8}},
+ lineColor=DynamicSelect({235,235,235}, if u1 then {0,255,0}
+ else {235,235,235}),
+ fillColor=DynamicSelect({235,235,235}, if u1 then {0,255,0}
+ else {235,235,235}),
+ fillPattern=FillPattern.Solid),
+ Text(
+ extent={{-120,146},{100,108}},
+ textColor={0,0,255},
+ textString="%name"),
+ Ellipse(
+ extent={{-52,56},{58,-54}},
+ lineColor={160,160,164},
+ fillColor={215,215,215},
+ fillPattern=FillPattern.Solid),
+ Line(
+ points={{4,0},{-20,24}},
+ thickness=0.5),
+ Line(
+ points={{4,0},{30,0}},
+ thickness=0.5)}),
+ Documentation(info="
+
+This block outputs generates a rotation trigger at
+chosen time intervals for lead/standby configurations where a lead device runs continuously.
+The implementation is based on RP 1711 5.1.2.4.2, except 5.1.2.4.2 a.
+
+
+The user may chose to start counting time from simulation start to generate the
+rotation signal at regular intervals rotationPeriod
by setting a
+flag sinTimSta
to true
, or to use a calendar.
+
+
+If a calender is used the user needs to select the time of the day as an hour between 0 and 23 at which the rotation shall occur.
+Hour 0 is midnight.
+The block implements two options to select the time interval for the equipment rotation:
+
+
+-
+Each
dayCou
days;
+
+-
+Each
weeCou
weeks on a weekday
selected between 1 = Monday and 7 = Sunday.
+
+
+
+To enable weekly intervals set the weeInt
to true, otherwise a number of days can be used.
+
+", revisions="
+
+-
+May 18, 2020, by Milica Grahovac:
+First implementation.
+
+
+"));
+end Scheduler;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Generic/EquipmentRotation/Subsequences/Two.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Generic/EquipmentRotation/Subsequences/Two.mo
new file mode 100644
index 00000000000..24df5aa6b91
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Generic/EquipmentRotation/Subsequences/Two.mo
@@ -0,0 +1,114 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Generic.EquipmentRotation.Subsequences;
+block Two
+ "Updates device roles based on the equipment rotation signal"
+
+ parameter Boolean initRoles[nDev] = {true, false}
+ "Initial roles: true = lead, false = lag/standby"
+ annotation (Evaluate=true,Dialog(tab="Advanced", group="Initiation"));
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uRot
+ "Rising edge to rotate the equipment"
+ annotation (Placement(transformation(extent={{-140,-20},{-100,20}}),
+ iconTransformation(extent={{-140,-20},{-100,20}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanOutput yDevRol[nDev]
+ "Device role: true = lead, false = lag or standby"
+ annotation (Placement(transformation(extent={{100,10},{120,30}}),
+ iconTransformation(extent={{100,-20},{140,20}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanOutput yPreDevRolSig[nDev]
+ "Device roles in the previous time instance: true = lead; false = lag or standby"
+ annotation (Placement(transformation(extent={{100,-30},{120,-10}}),
+ iconTransformation(extent={{100,-80},{140,-40}})));
+
+protected
+ final parameter Integer nDev = 2
+ "Total number of devices, such as boilers, isolation valves, or HW pumps";
+
+ Buildings.Controls.OBC.CDL.Logical.Not not0[nDev] "Logical not"
+ annotation (Placement(transformation(extent={{-60,-20},{-40,0}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Switch logSwi[nDev] "Switch"
+ annotation (Placement(transformation(extent={{0,-10},{20,10}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Pre pre[nDev](
+ final pre_u_start=initRoles) "Previous timestep"
+ annotation (Placement(transformation(extent={{40,-30},{60,-10}})));
+
+ Buildings.Controls.OBC.CDL.Routing.BooleanScalarReplicator booRep(
+ final nout=nDev) "Signal replicator"
+ annotation (Placement(transformation(extent={{-60,20},{-40,40}})));
+
+equation
+ connect(logSwi.u1,not0. y) annotation (Line(points={{-2,8},{-30,8},{-30,-10},{
+ -38,-10}}, color={255,0,255}));
+ connect(logSwi.y,pre. u) annotation (Line(points={{22,0},{30,0},{30,-20},{38,-20}},
+ color={255,0,255}));
+ connect(pre.y,not0. u) annotation (Line(points={{62,-20},{80,-20},{80,-40},{-70,
+ -40},{-70,-10},{-62,-10}}, color={255,0,255}));
+ connect(pre.y,logSwi. u3) annotation (Line(points={{62,-20},{72,-20},{72,-34},
+ {-14,-34},{-14,-8},{-2,-8}}, color={255,0,255}));
+ connect(logSwi.y, yDevRol) annotation (Line(points={{22,0},{66,0},{66,20},{110,
+ 20}}, color={255,0,255}));
+ connect(uRot, booRep.u)
+ annotation (Line(points={{-120,0},{-80,0},{-80,30},{-62,30}},color={255,0,255}));
+ connect(booRep.y, logSwi.u2) annotation (Line(points={{-38,30},{-20,30},{-20,0},
+ {-2,0}}, color={255,0,255}));
+ connect(pre.y, yPreDevRolSig) annotation (Line(points={{62,-20},{110,-20}},
+ color={255,0,255}));
+ annotation (Diagram(coordinateSystem(extent={{-100,-60},{100,60}})),
+ defaultComponentName="rotTwo",
+ Icon(graphics={
+ Rectangle(
+ extent={{-100,-100},{100,100}},
+ lineColor={0,0,127},
+ fillColor={255,255,255},
+ fillPattern=FillPattern.Solid),
+ Text(
+ extent={{-120,146},{100,108}},
+ textColor={0,0,255},
+ textString="%name"),
+ Line(points={{-40,60},{0,60},{0,-60},{40,-60}}, color={128,128,128}),
+ Ellipse(
+ origin={-26.6667,38.6207},
+ lineColor={128,128,128},
+ fillColor={255,255,255},
+ fillPattern=FillPattern.Solid,
+ extent={{-53.3333,1.37927},{-13.3329,41.3792}}),
+ Ellipse(
+ origin={93.333,38.6207},
+ lineColor={128,128,128},
+ fillColor={28,108,200},
+ fillPattern=FillPattern.Solid,
+ extent={{-53.3333,1.37927},{-13.3329,41.3792}}),
+ Ellipse(
+ origin={93.3333,-81.3793},
+ lineColor={128,128,128},
+ fillColor={255,255,255},
+ fillPattern=FillPattern.Solid,
+ extent={{-53.3333,1.37927},{-13.3329,41.3792}}),
+ Ellipse(
+ origin={-26.6667,-81.3793},
+ lineColor={128,128,128},
+ fillColor={28,108,200},
+ fillPattern=FillPattern.Solid,
+ extent={{-53.3333,1.37927},{-13.3329,41.3792}}),
+ Line(points={{-40,-60},{0,-60},{0,60},{40,60}}, color={128,128,128})}),
+ Documentation(info="
+
+This subsequence takes a rotation trigger signal uRot
as input to
+rotate the device roles for two devices or groups of devices. It outputs the current device roles yDevRol
+vector and its previous time instance value yPreDevRolSig
, which is used
+as an input signal to any upstream subsequences in the
+
+Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Generic.EquipmentRotation.ControllerTwo.
+
+", revisions="
+
+-
+May 18, 2020, by Milica Grahovac:
+First implementation.
+
+
+"));
+end Two;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Generic/EquipmentRotation/Subsequences/Validation/ContinuousLeadSwapTwo_uDevSta.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Generic/EquipmentRotation/Subsequences/Validation/ContinuousLeadSwapTwo_uDevSta.mo
new file mode 100644
index 00000000000..a3584c93d9c
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Generic/EquipmentRotation/Subsequences/Validation/ContinuousLeadSwapTwo_uDevSta.mo
@@ -0,0 +1,174 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Generic.EquipmentRotation.Subsequences.Validation;
+model ContinuousLeadSwapTwo_uDevSta
+ "Validation sequence for lead device swap at continuous lead operation"
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Generic.EquipmentRotation.Subsequences.ContinuousLeadSwapTwo
+ leaSwa
+ "Makes sure the new lead device is proven on before passing on the lead role"
+ annotation (Placement(transformation(extent={{-40,40},{-20,60}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Generic.EquipmentRotation.Subsequences.ContinuousLeadSwapTwo
+ leaSwa1 "A way to switch two signals and invert their values"
+ annotation (Placement(transformation(extent={{-40,-30},{-20,-10}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Generic.EquipmentRotation.Subsequences.ContinuousLeadSwapTwo
+ leaSwa2
+ "Makes sure the new lead device is proven on before passing on the lead role"
+ annotation (Placement(transformation(extent={{180,40},{200,60}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Generic.EquipmentRotation.Subsequences.ContinuousLeadSwapTwo
+ leaSwa3
+ "Makes sure the new lead device is proven on before passing on the lead role"
+ annotation (Placement(transformation(extent={{180,-80},{200,-60}})));
+
+protected
+ Buildings.Controls.OBC.CDL.Logical.Sources.Pulse booPul(
+ final width=0.5,
+ final period=10) "Pulse signal"
+ annotation (Placement(transformation(extent={{-200,80},{-180,100}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Pulse booPul1(
+ final width=0.5,
+ final period=15,
+ final shift=0) "Pulse signal"
+ annotation (Placement(transformation(extent={{-200,20},{-180,40}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Pulse booPul2(
+ final width=0.5,
+ final period=10) "Pulse signal"
+ annotation (Placement(transformation(extent={{-200,-20},{-180,0}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Pulse booPul4(
+ final width=0.5,
+ final period=11) "Pulse signal"
+ annotation (Placement(transformation(extent={{20,80},{40,100}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Pulse booPul5(
+ final width=0.5,
+ final period=7,
+ final shift=0) "Pulse signal"
+ annotation (Placement(transformation(extent={{20,20},{40,40}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Pulse booPul6(
+ final width=0.5,
+ final period=10) "Pulse signal"
+ annotation (Placement(transformation(extent={{20,-40},{40,-20}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Pulse booPul7(
+ final width=0.5,
+ final period=10,
+ final shift=1) "Pulse signal"
+ annotation (Placement(transformation(extent={{20,-100},{40,-80}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Not not1 "Not"
+ annotation (Placement(transformation(extent={{-160,60},{-140,80}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Not not2 "Not"
+ annotation (Placement(transformation(extent={{-160,20},{-140,40}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Not not4 "Not"
+ annotation (Placement(transformation(extent={{-160,-40},{-140,-20}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Not not5 "Not"
+ annotation (Placement(transformation(extent={{60,20},{80,40}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Not not6 "Not"
+ annotation (Placement(transformation(extent={{60,60},{80,80}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Not not7 "Not"
+ annotation (Placement(transformation(extent={{60,-100},{80,-80}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Not not8 "Not"
+ annotation (Placement(transformation(extent={{60,-60},{80,-40}})));
+
+ Buildings.Controls.OBC.CDL.Logical.TrueFalseHold truFalHol(
+ final trueHoldDuration=0,
+ final falseHoldDuration=6) "Holds false signal"
+ annotation (Placement(transformation(extent={{-100,-60},{-80,-40}})));
+
+ Buildings.Controls.OBC.CDL.Logical.TrueFalseHold truFalHol1(
+ final trueHoldDuration=0,
+ final falseHoldDuration=6) "Holds false signal"
+ annotation (Placement(transformation(extent={{-100,-100},{-80,-80}})));
+
+equation
+ connect(booPul.y, not1.u) annotation (
+ Line(points={{-178,90},{-170,90},{-170,70},{-162,70}}, color={255,0,255}));
+ connect(booPul.y,leaSwa. uDevSta[1]) annotation (
+ Line(points={{-178,90},{-90,90},{-90,46},{-42,46}}, color={255,0,255}));
+ connect(booPul1.y, not2.u)
+ annotation (Line(points={{-178,30},{-162,30}},color={255,0,255}));
+ connect(not2.y,leaSwa. uDevSta[2]) annotation (
+ Line(points={{-138,30},{-120,30},{-120,46},{-42,46}},color={255,0,255}));
+
+ connect(booPul.y, leaSwa.uDevRolSet[1]) annotation (Line(points={{-178,90},{-60,
+ 90},{-60,54},{-42,54}}, color={255,0,255}));
+ connect(not1.y, leaSwa.uDevRolSet[2]) annotation (Line(points={{-138,70},{-60,
+ 70},{-60,54},{-42,54}}, color={255,0,255}));
+ connect(booPul2.y, not4.u) annotation (Line(points={{-178,-10},{-170,-10},{-170,
+ -30},{-162,-30}}, color={255,0,255}));
+ connect(booPul4.y, not6.u) annotation (Line(points={{42,90},{50,90},{50,70},{58,
+ 70}}, color={255,0,255}));
+ connect(booPul4.y, leaSwa2.uDevSta[1]) annotation (Line(points={{42,90},{130,90},
+ {130,46},{178,46}}, color={255,0,255}));
+ connect(booPul5.y,not5. u)
+ annotation (Line(points={{42,30},{58,30}}, color={255,0,255}));
+ connect(not5.y, leaSwa2.uDevSta[2]) annotation (Line(points={{82,30},{100,30},
+ {100,46},{178,46}}, color={255,0,255}));
+ connect(booPul4.y, leaSwa2.uDevRolSet[1]) annotation (Line(points={{42,90},{160,
+ 90},{160,54},{178,54}}, color={255,0,255}));
+ connect(not6.y, leaSwa2.uDevRolSet[2]) annotation (Line(points={{82,70},{160,70},
+ {160,54},{178,54}}, color={255,0,255}));
+ connect(booPul6.y,not8. u) annotation (Line(points={{42,-30},{50,-30},{50,-50},
+ {58,-50}}, color={255,0,255}));
+ connect(booPul6.y,leaSwa3. uDevSta[1]) annotation (Line(points={{42,-30},{130,
+ -30},{130,-74},{178,-74}}, color={255,0,255}));
+ connect(booPul7.y,not7. u)
+ annotation (Line(points={{42,-90},{58,-90}}, color={255,0,255}));
+ connect(not7.y,leaSwa3. uDevSta[2]) annotation (Line(points={{82,-90},{100,-90},
+ {100,-74},{178,-74}}, color={255,0,255}));
+ connect(booPul6.y,leaSwa3. uDevRolSet[1]) annotation (Line(points={{42,-30},{160,
+ -30},{160,-66},{178,-66}}, color={255,0,255}));
+ connect(not8.y,leaSwa3. uDevRolSet[2]) annotation (Line(points={{82,-50},{160,
+ -50},{160,-66},{178,-66}}, color={255,0,255}));
+ connect(booPul2.y, truFalHol.u) annotation (Line(points={{-178,-10},{-120,-10},
+ {-120,-50},{-102,-50}}, color={255,0,255}));
+ connect(not4.y, truFalHol1.u) annotation (Line(points={{-138,-30},{-130,-30},{
+ -130,-90},{-102,-90}}, color={255,0,255}));
+ connect(truFalHol.y, leaSwa1.uDevSta[1]) annotation (Line(points={{-78,-50},{-60,
+ -50},{-60,-24},{-42,-24}}, color={255,0,255}));
+ connect(truFalHol1.y, leaSwa1.uDevSta[2]) annotation (Line(points={{-78,-90},{
+ -60,-90},{-60,-24},{-42,-24}}, color={255,0,255}));
+ connect(booPul2.y, leaSwa1.uDevRolSet[1]) annotation (Line(points={{-178,-10},
+ {-60,-10},{-60,-16},{-42,-16}}, color={255,0,255}));
+ connect(not4.y, leaSwa1.uDevRolSet[2]) annotation (Line(points={{-138,-30},{-110,
+ -30},{-110,-16},{-42,-16}}, color={255,0,255}));
+annotation (
+ experiment(StopTime=180, Tolerance=1e-06),
+ __Dymola_Commands(file="modelica://Buildings/Resources/Scripts/Dymola/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Generic/EquipmentRotation/Subsequences/Validation/ContinuousLeadSwapTwo_uDevSta.mos"
+ "Simulate and plot"),
+ Documentation(info="
+
+This example validates
+
+Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Generic.EquipmentRotation.Subsequences.ContinuousLeadSwapTwo.
+
+", revisions="
+
+-
+May 18, 2020, by Milica Grahovac:
+First implementation.
+
+
+"),
+ Icon(graphics={Ellipse(lineColor = {75,138,73},
+ fillColor={255,255,255},
+ fillPattern = FillPattern.Solid,
+ extent = {{-100,-100},{100,100}}),
+ Polygon(lineColor = {0,0,255},
+ fillColor = {75,138,73},
+ pattern = LinePattern.None,
+ fillPattern = FillPattern.Solid,
+ points = {{-36,60},{64,0},{-36,-60},{-36,60}})}),
+ Diagram(coordinateSystem(preserveAspectRatio=false, extent={{-220,-120},{220,120}})));
+end ContinuousLeadSwapTwo_uDevSta;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Generic/EquipmentRotation/Subsequences/Validation/LeastRuntime_uDevRol.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Generic/EquipmentRotation/Subsequences/Validation/LeastRuntime_uDevRol.mo
new file mode 100644
index 00000000000..762c67b92cb
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Generic/EquipmentRotation/Subsequences/Validation/LeastRuntime_uDevRol.mo
@@ -0,0 +1,177 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Generic.EquipmentRotation.Subsequences.Validation;
+model LeastRuntime_uDevRol
+ "Validate lead/lag and lead/standby switching signal based on least device runtime"
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Generic.EquipmentRotation.Subsequences.LeastRuntime
+ leaRunTim(
+ final lag=true)
+ "Equipment rotation signal based on device runtime and current device status"
+ annotation (Placement(transformation(extent={{40,40},{60,60}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Generic.EquipmentRotation.Subsequences.LeastRuntime
+ leaRunTim1(
+ final lag=false)
+ "Equipment rotation signal based on device runtime and current device status"
+ annotation (Placement(transformation(extent={{40,-10},{60,10}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Generic.EquipmentRotation.Subsequences.LeastRuntime
+ leaRunTim2(
+ final lag=true)
+ "Equipment rotation signal based on device runtime and current device status"
+ annotation (Placement(transformation(extent={{40,-60},{60,-40}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Generic.EquipmentRotation.Subsequences.Two
+ rotTwo
+ "Updates device roles based on the equipment rotation signal"
+ annotation (Placement(transformation(extent={{80,40},{100,60}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Generic.EquipmentRotation.Subsequences.Two
+ rotTwo1
+ "Updates device roles based on the equipment rotation signal"
+ annotation (Placement(transformation(extent={{80,-10},{100,10}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Generic.EquipmentRotation.Subsequences.Two
+ rotTwo2
+ "Updates device roles based on the equipment rotation signal"
+ annotation (Placement(transformation(extent={{80,-60},{100,-40}})));
+
+protected
+ parameter Boolean initRoles[2] = {true, false}
+ "Sets initial roles: true = lead, false = lag or standby";
+
+ Buildings.Controls.OBC.CDL.Logical.Switch logSwi[2]
+ "Switch"
+ annotation (Placement(transformation(extent={{0,40},{20,60}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Switch logSwi1[2]
+ "Switch"
+ annotation (Placement(transformation(extent={{0,-10},{20,10}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Switch logSwi2[2]
+ "Switch"
+ annotation (Placement(transformation(extent={{0,-60},{20,-40}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant staSta[2](
+ final k=fill(false, 2))
+ "Standby status"
+ annotation (Placement(transformation(extent={{-100,-20},{-80,0}})));
+
+ Buildings.Controls.OBC.CDL.Routing.BooleanScalarReplicator repLag1(
+ final nout=2)
+ "Replicates lag signal"
+ annotation (Placement(transformation(extent={{-60,-80},{-40,-60}})));
+
+ Buildings.Controls.OBC.CDL.Routing.BooleanScalarReplicator repLag(
+ final nout=2)
+ "Replicates lag signal"
+ annotation (Placement(transformation(extent={{-60,30},{-40,50}})));
+
+ Buildings.Controls.OBC.CDL.Routing.BooleanScalarReplicator repLead(
+ final nout=2)
+ "Replicates lead signal"
+ annotation (Placement(transformation(extent={{-60,60},{-40,80}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Pulse leadLoad(
+ final width=0.8,
+ final period=7200) "Lead device enable status"
+ annotation (Placement(transformation(extent={{-100,70},{-80,90}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Pulse lagLoad(
+ final width=0.2,
+ final period=3600)
+ "Lag device enable status"
+ annotation (Placement(transformation(extent={{-100,20},{-80,40}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Pulse lagLoad1(
+ final width=0.2,
+ final period=5400)
+ "Lag device enable status"
+ annotation (Placement(transformation(extent={{-100,-80},{-80,-60}})));
+
+equation
+ connect(leadLoad.y, repLead.u) annotation (Line(points={{-78,80},{-70,80},{-70,
+ 70},{-62,70}}, color={255,0,255}));
+ connect(lagLoad.y, repLag.u) annotation (Line(points={{-78,30},{-70,30},{-70,40},
+ {-62,40}}, color={255,0,255}));
+ connect(repLead.y, logSwi.u1) annotation (Line(points={{-38,70},{-20,70},{-20,
+ 58},{-2,58}},color={255,0,255}));
+ connect(repLag.y, logSwi.u3) annotation (Line(points={{-38,40},{-10,40},{-10,42},
+ {-2,42}}, color={255,0,255}));
+ connect(logSwi.y,leaRunTim. uDevSta)
+ annotation (Line(points={{22,50},{38,50}}, color={255,0,255}));
+ connect(logSwi1.y,leaRunTim1. uDevSta)
+ annotation (Line(points={{22,0},{38,0}}, color={255,0,255}));
+ connect(staSta.y,logSwi1. u3) annotation (Line(points={{-78,-10},{-40,-10},{-40,
+ -8},{-2,-8}}, color={255,0,255}));
+ connect(repLead.y,logSwi1. u1) annotation (Line(points={{-38,70},{-30,70},{-30,
+ 8},{-2,8}}, color={255,0,255}));
+ connect(lagLoad1.y, repLag1.u)
+ annotation (Line(points={{-78,-70},{-62,-70}}, color={255,0,255}));
+ connect(repLead.y,logSwi2. u1) annotation (Line(points={{-38,70},{-30,70},{-30,
+ -42},{-2,-42}}, color={255,0,255}));
+ connect(repLag1.y,logSwi2. u3) annotation (Line(points={{-38,-70},{-30,-70},{-30,
+ -58},{-2,-58}}, color={255,0,255}));
+ connect(logSwi2.y,leaRunTim2. uDevSta)
+ annotation (Line(points={{22,-50},{38,-50}}, color={255,0,255}));
+ connect(leaRunTim.yRot, rotTwo.uRot)
+ annotation (Line(points={{62,50},{78,50}}, color={255,0,255}));
+ connect(rotTwo.yPreDevRolSig,leaRunTim. uPreDevRolSig) annotation (Line(points={{102,44},
+ {108,44},{108,30},{30,30},{30,42},{38,42}}, color={255,0,255}));
+ connect(rotTwo.yPreDevRolSig, logSwi.u2) annotation (Line(points={{102,44},{108,
+ 44},{108,30},{-20,30},{-20,50},{-2,50}}, color={255,0,255}));
+ connect(leaRunTim1.yRot, rotTwo1.uRot)
+ annotation (Line(points={{62,0},{78,0}}, color={255,0,255}));
+ connect(leaRunTim2.yRot, rotTwo2.uRot)
+ annotation (Line(points={{62,-50},{78,-50}}, color={255,0,255}));
+ connect(rotTwo2.yPreDevRolSig,leaRunTim2. uPreDevRolSig) annotation (Line(points={{102,-56},
+ {110,-56},{110,-70},{30,-70},{30,-58},{38,-58}}, color={255,
+ 0,255}));
+ connect(rotTwo2.yPreDevRolSig, logSwi2.u2) annotation (Line(points={{102,-56},
+ {110,-56},{110,-70},{-20,-70},{-20,-50},{-2,-50}}, color={255,0,255}));
+ connect(rotTwo1.yPreDevRolSig,leaRunTim1. uPreDevRolSig) annotation (Line(points={{102,-6},
+ {110,-6},{110,-20},{30,-20},{30,-8},{38,-8}}, color={255,0,
+ 255}));
+ connect(rotTwo1.yPreDevRolSig, logSwi1.u2) annotation (Line(points={{102,-6},{
+ 110,-6},{110,-20},{-20,-20},{-20,0},{-2,0}}, color={255,0,255}));
+ connect(logSwi.y, leaRunTim.uDevStaSet) annotation (Line(points={{22,50},{30,
+ 50},{30,58},{38,58}}, color={255,0,255}));
+ connect(logSwi1.y, leaRunTim1.uDevStaSet)
+ annotation (Line(points={{22,0},{30,0},{30,8},{38,8}}, color={255,0,255}));
+ connect(logSwi2.y, leaRunTim2.uDevStaSet) annotation (Line(points={{22,-50},{
+ 30,-50},{30,-42},{38,-42}}, color={255,0,255}));
+ annotation (
+ experiment(StopTime=100000.0, Tolerance=1e-06),
+ __Dymola_Commands(file="modelica://Buildings/Resources/Scripts/Dymola/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Generic/EquipmentRotation/Subsequences/Validation/LeastRuntime_uDevRol.mos"
+ "Simulate and plot"),
+ Documentation(info="
+
+This example validates
+
+Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Generic.EquipmentRotation.Subsequences.LeastRuntime.
+
+", revisions="
+
+-
+May 15, 2020, by Milica Grahovac:
+First implementation.
+
+
+"),
+Icon(graphics={
+ Ellipse(lineColor = {75,138,73},
+ fillColor={255,255,255},
+ fillPattern = FillPattern.Solid,
+ extent = {{-100,-100},{100,100}}),
+ Polygon(lineColor = {0,0,255},
+ fillColor = {75,138,73},
+ pattern = LinePattern.None,
+ fillPattern = FillPattern.Solid,
+ points = {{-36,60},{64,0},{-36,-60},{-36,60}})}),Diagram(
+ coordinateSystem(preserveAspectRatio=false, extent={{-120,-120},{120,120}}),
+ graphics={Text(
+ extent={{-52,-104},{46,-114}},
+ textColor={0,0,127},
+ textString="For simplicity this test assumes
+the device ON/OFF status equals its setpoint
+(there is no delay in starting or stopping devices).")}));
+end LeastRuntime_uDevRol;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Generic/EquipmentRotation/Subsequences/Validation/MinimumLeadRuntime_uDevRol.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Generic/EquipmentRotation/Subsequences/Validation/MinimumLeadRuntime_uDevRol.mo
new file mode 100644
index 00000000000..b20f295bba6
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Generic/EquipmentRotation/Subsequences/Validation/MinimumLeadRuntime_uDevRol.mo
@@ -0,0 +1,155 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Generic.EquipmentRotation.Subsequences.Validation;
+model MinimumLeadRuntime_uDevRol
+ "Validate lead/lag and lead/standby switching signal based on device runtime"
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Generic.EquipmentRotation.Subsequences.MinimumLeadRuntime
+ minLeaTim(final minLeaRuntime=43200)
+ "Equipment rotation signal based on device runtime and current device status"
+ annotation (Placement(transformation(extent={{40,40},{60,60}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Generic.EquipmentRotation.Subsequences.MinimumLeadRuntime
+ minLeaTim1(final minLeaRuntime=18000)
+ "Equipment rotation signal based on device runtime and current device status"
+ annotation (Placement(transformation(extent={{40,-10},{60,10}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Generic.EquipmentRotation.Subsequences.MinimumLeadRuntime
+ minLeaTim2(final minLeaRuntime=14400)
+ "Equipment rotation signal based on device runtime and current device status"
+ annotation (Placement(transformation(extent={{40,-60},{60,-40}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Generic.EquipmentRotation.Subsequences.Two
+ rotTwo "Updates device roles based on the equipment rotation signal"
+ annotation (Placement(transformation(extent={{80,40},{100,60}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Generic.EquipmentRotation.Subsequences.Two
+ rotTwo1 "Updates device roles based on the equipment rotation signal"
+ annotation (Placement(transformation(extent={{80,-10},{100,10}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Generic.EquipmentRotation.Subsequences.Two
+ rotTwo2 "Updates device roles based on the equipment rotation signal"
+ annotation (Placement(transformation(extent={{80,-60},{100,-40}})));
+
+protected
+ parameter Boolean initRoles[2] = {true, false}
+ "Sets initial roles: true = lead, false = lag or standby";
+
+ Buildings.Controls.OBC.CDL.Logical.Switch logSwi[2] "Switch"
+ annotation (Placement(transformation(extent={{0,40},{20,60}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Switch logSwi1[2] "Switch"
+ annotation (Placement(transformation(extent={{0,-10},{20,10}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Switch logSwi2[2] "Switch"
+ annotation (Placement(transformation(extent={{0,-60},{20,-40}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant staSta[2](
+ final k=fill(false, 2)) "Standby status"
+ annotation (Placement(transformation(extent={{-100,-20},{-80,0}})));
+
+ Buildings.Controls.OBC.CDL.Routing.BooleanScalarReplicator repLag1(final nout=2)
+ "Replicates lag signal"
+ annotation (Placement(transformation(extent={{-60,-80},{-40,-60}})));
+
+ Buildings.Controls.OBC.CDL.Routing.BooleanScalarReplicator repLag(final nout=2)
+ "Replicates lag signal"
+ annotation (Placement(transformation(extent={{-60,30},{-40,50}})));
+
+ Buildings.Controls.OBC.CDL.Routing.BooleanScalarReplicator repLead(final nout=2)
+ "Replicates lead signal"
+ annotation (Placement(transformation(extent={{-60,60},{-40,80}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Pulse leadLoad(
+ final width=0.8,
+ final period=7200) "Lead device enable status"
+ annotation (Placement(transformation(extent={{-100,70},{-80,90}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Pulse lagLoad(
+ final width=0.2, final period=3600) "Lag device enable status"
+ annotation (Placement(transformation(extent={{-100,20},{-80,40}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Pulse lagLoad1(
+ final width=0.2, final period=5400) "Lag device enable status"
+ annotation (Placement(transformation(extent={{-100,-80},{-80,-60}})));
+
+equation
+ connect(leadLoad.y, repLead.u) annotation (Line(points={{-78,80},{-70,80},{-70,
+ 70},{-62,70}}, color={255,0,255}));
+ connect(lagLoad.y, repLag.u) annotation (Line(points={{-78,30},{-70,30},{-70,40},
+ {-62,40}}, color={255,0,255}));
+ connect(repLead.y, logSwi.u1) annotation (Line(points={{-38,70},{-20,70},{-20,
+ 58},{-2,58}},color={255,0,255}));
+ connect(repLag.y, logSwi.u3) annotation (Line(points={{-38,40},{-10,40},{-10,42},
+ {-2,42}}, color={255,0,255}));
+ connect(logSwi.y, minLeaTim.uDevSta)
+ annotation (Line(points={{22,50},{38,50}}, color={255,0,255}));
+ connect(logSwi1.y, minLeaTim1.uDevSta)
+ annotation (Line(points={{22,0},{38,0}}, color={255,0,255}));
+ connect(staSta.y,logSwi1. u3) annotation (Line(points={{-78,-10},{-40,-10},{-40,
+ -8},{-2,-8}}, color={255,0,255}));
+ connect(repLead.y,logSwi1. u1) annotation (Line(points={{-38,70},{-30,70},{-30,
+ 8},{-2,8}}, color={255,0,255}));
+ connect(lagLoad1.y, repLag1.u)
+ annotation (Line(points={{-78,-70},{-62,-70}}, color={255,0,255}));
+ connect(repLead.y,logSwi2. u1) annotation (Line(points={{-38,70},{-30,70},{-30,
+ -42},{-2,-42}}, color={255,0,255}));
+ connect(repLag1.y,logSwi2. u3) annotation (Line(points={{-38,-70},{-30,-70},{-30,
+ -58},{-2,-58}}, color={255,0,255}));
+ connect(logSwi2.y, minLeaTim2.uDevSta)
+ annotation (Line(points={{22,-50},{38,-50}}, color={255,0,255}));
+ connect(minLeaTim.yRot, rotTwo.uRot)
+ annotation (Line(points={{62,50},{78,50}}, color={255,0,255}));
+ connect(rotTwo.yPreDevRolSig, minLeaTim.uPreDevRolSig) annotation (Line(points={{102,44},
+ {108,44},{108,30},{30,30},{30,42},{38,42}}, color={255,0,255}));
+ connect(rotTwo.yPreDevRolSig, logSwi.u2) annotation (Line(points={{102,44},{108,
+ 44},{108,30},{-20,30},{-20,50},{-2,50}}, color={255,0,255}));
+ connect(minLeaTim1.yRot, rotTwo1.uRot)
+ annotation (Line(points={{62,0},{78,0}}, color={255,0,255}));
+ connect(minLeaTim2.yRot, rotTwo2.uRot)
+ annotation (Line(points={{62,-50},{78,-50}}, color={255,0,255}));
+ connect(rotTwo2.yPreDevRolSig, minLeaTim2.uPreDevRolSig) annotation (Line(points={{102,-56},
+ {110,-56},{110,-70},{30,-70},{30,-58},{38,-58}}, color={255,
+ 0,255}));
+ connect(rotTwo2.yPreDevRolSig, logSwi2.u2) annotation (Line(points={{102,-56},
+ {110,-56},{110,-70},{-20,-70},{-20,-50},{-2,-50}}, color={255,0,255}));
+ connect(rotTwo1.yPreDevRolSig, minLeaTim1.uPreDevRolSig) annotation (Line(points={{102,-6},
+ {110,-6},{110,-20},{30,-20},{30,-8},{38,-8}}, color={255,0,
+ 255}));
+ connect(rotTwo1.yPreDevRolSig, logSwi1.u2) annotation (Line(points={{102,-6},{
+ 110,-6},{110,-20},{-20,-20},{-20,0},{-2,0}}, color={255,0,255}));
+
+annotation (
+ experiment(StopTime=100000.0, Tolerance=1e-06),
+ __Dymola_Commands(file="modelica://Buildings/Resources/Scripts/Dymola/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Generic/EquipmentRotation/Subsequences/Validation/MinimumLeadRuntime_uDevRol.mos"
+ "Simulate and plot"),
+ Documentation(info="
+
+This example validates
+
+Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Generic.EquipmentRotation.Subsequences.MinimumLeadRuntime.
+
+", revisions="
+
+-
+May 15, 2020, by Milica Grahovac:
+First implementation.
+
+
+"),
+Icon(graphics={
+ Ellipse(lineColor = {75,138,73},
+ fillColor={255,255,255},
+ fillPattern = FillPattern.Solid,
+ extent = {{-100,-100},{100,100}}),
+ Polygon(lineColor = {0,0,255},
+ fillColor = {75,138,73},
+ pattern = LinePattern.None,
+ fillPattern = FillPattern.Solid,
+ points = {{-36,60},{64,0},{-36,-60},{-36,60}})}),Diagram(
+ coordinateSystem(preserveAspectRatio=false, extent={{-120,-120},{120,120}}),
+ graphics={Text(
+ extent={{-52,-104},{46,-114}},
+ textColor={0,0,127},
+ textString="For simplicity this test assumes
+the device ON/OFF status equals its setpoint
+(there is no delay in starting or stopping devices).")}));
+end MinimumLeadRuntime_uDevRol;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Generic/EquipmentRotation/Subsequences/Validation/Scheduler.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Generic/EquipmentRotation/Subsequences/Validation/Scheduler.mo
new file mode 100644
index 00000000000..e3b3641318d
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Generic/EquipmentRotation/Subsequences/Validation/Scheduler.mo
@@ -0,0 +1,121 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Generic.EquipmentRotation.Subsequences.Validation;
+model Scheduler
+ "Validation sequence for the device swap scheduler in case of continuous lead device operation"
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Generic.EquipmentRotation.Subsequences.Scheduler
+ rotSch(
+ final simTimSta=false,
+ final weeInt=false,
+ final dayCou=10)
+ "Equipment rotation happens every 10 days at 2am"
+ annotation (Placement(transformation(extent={{-40,70},{-20,90}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Generic.EquipmentRotation.Subsequences.Scheduler
+ rotSch1(
+ final simTimSta=false,
+ weeInt=true,
+ final weeCou=2,
+ final weekday=2)
+ "Equipment rotation happens bi-weekly on Tuesday at 2am"
+ annotation (Placement(transformation(extent={{-40,30},{-20,50}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Generic.EquipmentRotation.Subsequences.Scheduler
+ rotSch2(
+ final weeInt=false,
+ final houOfDay=5,
+ final dayCou=6)
+ "Equipment rotation happens every 5 days at 6am"
+ annotation (Placement(transformation(extent={{-40,-10},{-20,10}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Generic.EquipmentRotation.Subsequences.Scheduler
+ rotSch3(
+ final simTimSta=false,
+ final weeInt=true,
+ final houOfDay=12,
+ final weeCou=4,
+ final weekday=6)
+ "Equipment rotation happens every 4 weeks on Saturday at noon"
+ annotation (Placement(transformation(extent={{-40,-50},{-20,-30}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Generic.EquipmentRotation.Subsequences.Scheduler
+ rotSch4(
+ final rotationPeriod=86400,
+ simTimSta=true,
+ final weeInt=true,
+ final houOfDay=12,
+ final weeCou=4,
+ final weekday=6)
+ "Equipment rotation happens every 4 weeks on Saturday at noon"
+ annotation (Placement(transformation(extent={{-40,-90},{-20,-70}})));
+
+ Buildings.Controls.OBC.CDL.Logical.TrueFalseHold truFalHol(
+ final trueHoldDuration=1800,
+ final falseHoldDuration=0)
+ "Holds the signal for visualization purposes"
+ annotation (Placement(transformation(extent={{20,70},{40,90}})));
+
+ Buildings.Controls.OBC.CDL.Logical.TrueFalseHold truFalHol1(
+ final trueHoldDuration=1800,
+ final falseHoldDuration=0)
+ "Holds the signal for visualization purposes"
+ annotation (Placement(transformation(extent={{20,30},{40,50}})));
+
+ Buildings.Controls.OBC.CDL.Logical.TrueFalseHold truFalHol2(
+ final trueHoldDuration=1800,
+ final falseHoldDuration=0)
+ "Holds the signal for visualization purposes"
+ annotation (Placement(transformation(extent={{20,-10},{40,10}})));
+
+ Buildings.Controls.OBC.CDL.Logical.TrueFalseHold truFalHol3(
+ final trueHoldDuration=1800,
+ final falseHoldDuration=0)
+ "Holds the signal for visualization purposes"
+ annotation (Placement(transformation(extent={{20,-50},{40,-30}})));
+
+ Buildings.Controls.OBC.CDL.Logical.TrueFalseHold truFalHol4(
+ final trueHoldDuration=1800,
+ final falseHoldDuration=0)
+ "Holds the signal for visualization purposes"
+ annotation (Placement(transformation(extent={{20,-90},{40,-70}})));
+
+equation
+ connect(rotSch.yRot, truFalHol.u)
+ annotation (Line(points={{-18,80},{18,80}}, color={255,0,255}));
+ connect(rotSch1.yRot, truFalHol1.u)
+ annotation (Line(points={{-18,40},{18,40}},color={255,0,255}));
+ connect(rotSch2.yRot, truFalHol2.u)
+ annotation (Line(points={{-18,0},{18,0}}, color={255,0,255}));
+ connect(rotSch3.yRot, truFalHol3.u)
+ annotation (Line(points={{-18,-40},{18,-40}},color={255,0,255}));
+ connect(rotSch4.yRot,truFalHol4. u)
+ annotation (Line(points={{-18,-80},{18,-80}},color={255,0,255}));
+annotation (
+ experiment(StopTime=3000000, Tolerance=1e-06),
+ __Dymola_Commands(file="modelica://Buildings/Resources/Scripts/Dymola/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Generic/EquipmentRotation/Subsequences/Validation/Scheduler.mos"
+ "Simulate and plot"),
+ Documentation(info="
+
+This example validates
+
+Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Generic.EquipmentRotation.Scheduler.
+
+", revisions="
+
+-
+May 18, 2020, by Milica Grahovac:
+First implementation.
+
+
+"),
+ Icon(coordinateSystem(extent={{-60,-100},{60,100}}),
+ graphics={Ellipse(lineColor = {75,138,73},
+ fillColor={255,255,255},
+ fillPattern = FillPattern.Solid,
+ extent = {{-100,-100},{100,100}}),
+ Polygon(lineColor = {0,0,255},
+ fillColor = {75,138,73},
+ pattern = LinePattern.None,
+ fillPattern = FillPattern.Solid,
+ points = {{-36,60},{64,0},{-36,-60},{-36,60}})}),
+ Diagram(coordinateSystem(preserveAspectRatio=false, extent={{-60,-100},{60,100}})));
+end Scheduler;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Generic/EquipmentRotation/Subsequences/Validation/Two_uRot.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Generic/EquipmentRotation/Subsequences/Validation/Two_uRot.mo
new file mode 100644
index 00000000000..d073ee1b29c
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Generic/EquipmentRotation/Subsequences/Validation/Two_uRot.mo
@@ -0,0 +1,55 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Generic.EquipmentRotation.Subsequences.Validation;
+model Two_uRot
+ "Validation sequence for device role rotation for two devices or groups of devices"
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Generic.EquipmentRotation.Subsequences.Two
+ rotTwo "Rotates roles between two devices or groups of devices"
+ annotation (Placement(transformation(extent={{20,20},{40,40}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Generic.EquipmentRotation.Subsequences.Two
+ rotTwo1 "Rotates roles between two devices or groups of devices"
+ annotation (Placement(transformation(extent={{20,-40},{40,-20}})));
+
+protected
+ Buildings.Controls.OBC.CDL.Logical.Sources.SampleTrigger rotation(period(
+ displayUnit="h") = 86400, shift=7200) "Rotation trigger"
+ annotation (Placement(transformation(extent={{-40,20},{-20,40}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.SampleTrigger rotation1(period(
+ displayUnit="h") = 172800, shift=7200) "Rotation trigger"
+ annotation (Placement(transformation(extent={{-40,-40},{-20,-20}})));
+
+equation
+ connect(rotation.y, rotTwo.uRot)
+ annotation (Line(points={{-18,30},{18,30}}, color={255,0,255}));
+ connect(rotation1.y, rotTwo1.uRot)
+ annotation (Line(points={{-18,-30},{18,-30}}, color={255,0,255}));
+annotation (
+ experiment(StopTime=1000000, Tolerance=1e-06),
+ __Dymola_Commands(file="modelica://Buildings/Resources/Scripts/Dymola/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Generic/EquipmentRotation/Subsequences/Validation/Two_uRot.mos"
+ "Simulate and plot"),
+ Documentation(info="
+
+This example validates
+
+Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Generic.EquipmentRotation.Two.
+
+", revisions="
+
+-
+November 5, 2019, by Milica Grahovac:
+First implementation.
+
+
+"),
+ Icon(graphics={Ellipse(lineColor = {75,138,73},
+ fillColor={255,255,255},
+ fillPattern = FillPattern.Solid,
+ extent = {{-100,-100},{100,100}}),
+ Polygon(lineColor = {0,0,255},
+ fillColor = {75,138,73},
+ pattern = LinePattern.None,
+ fillPattern = FillPattern.Solid,
+ points = {{-36,60},{64,0},{-36,-60},{-36,60}})}),
+ Diagram(coordinateSystem(preserveAspectRatio=false, extent={{-60,-60},{60,60}})));
+end Two_uRot;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Generic/EquipmentRotation/Subsequences/Validation/package.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Generic/EquipmentRotation/Subsequences/Validation/package.mo
new file mode 100644
index 00000000000..a3ca57267d0
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Generic/EquipmentRotation/Subsequences/Validation/package.mo
@@ -0,0 +1,37 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Generic.EquipmentRotation.Subsequences;
+package Validation "Collection of validation models"
+
+annotation (preferredView="info", Documentation(info="
+
+This package contains validation models for the classes in
+
+Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Generic.EquipmentRotation.Subsequences.
+
+
+Note that most validation models contain simple input data
+which may not be realistic, but for which the correct
+output can be obtained through an analytic solution.
+The examples plot various outputs, which have been verified against these
+solutions. These model outputs are stored as reference data and
+used for continuous validation whenever models in the library change.
+
+"),
+ Icon(graphics={
+ Rectangle(
+ lineColor={200,200,200},
+ fillColor={248,248,248},
+ fillPattern=FillPattern.HorizontalCylinder,
+ extent={{-100.0,-100.0},{100.0,100.0}},
+ radius=25.0),
+ Rectangle(
+ lineColor={128,128,128},
+ extent={{-100.0,-100.0},{100.0,100.0}},
+ radius=25.0),
+ Polygon(
+ origin={8.0,14.0},
+ lineColor={78,138,73},
+ fillColor={78,138,73},
+ pattern=LinePattern.None,
+ fillPattern=FillPattern.Solid,
+ points={{-58.0,46.0},{42.0,-14.0},{-58.0,-74.0},{-58.0,46.0}})}));
+end Validation;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Generic/EquipmentRotation/Subsequences/Validation/package.order b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Generic/EquipmentRotation/Subsequences/Validation/package.order
new file mode 100644
index 00000000000..7b775d54c4e
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Generic/EquipmentRotation/Subsequences/Validation/package.order
@@ -0,0 +1,5 @@
+ContinuousLeadSwapTwo_uDevSta
+LeastRuntime_uDevRol
+MinimumLeadRuntime_uDevRol
+Scheduler
+Two_uRot
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Generic/EquipmentRotation/Subsequences/package.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Generic/EquipmentRotation/Subsequences/package.mo
new file mode 100644
index 00000000000..ed9f6d78a4b
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Generic/EquipmentRotation/Subsequences/package.mo
@@ -0,0 +1,43 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Generic.EquipmentRotation;
+package Subsequences "Equipment rotation control subsequences"
+
+annotation (preferredView="info", Documentation(info="
+
+This package contains equipment staging and rotation control subsequences.
+
+"),
+ Icon(graphics={
+ Rectangle(
+ lineColor={200,200,200},
+ fillColor={248,248,248},
+ fillPattern=FillPattern.HorizontalCylinder,
+ extent={{-100.0,-100.0},{100.0,100.0}},
+ radius=25.0),
+ Rectangle(
+ lineColor={128,128,128},
+ extent={{-100.0,-100.0},{100.0,100.0}},
+ radius=25.0),
+ Ellipse(
+ origin={10.0,10.0},
+ lineColor={128,128,128},
+ fillColor={255,255,255},
+ fillPattern=FillPattern.Solid,
+ extent={{-80.0,0.0},{-20.0,60.0}}),
+ Ellipse(
+ origin={10.0,10.0},
+ fillColor={128,128,128},
+ pattern=LinePattern.None,
+ fillPattern=FillPattern.Solid,
+ extent={{0.0,0.0},{60.0,60.0}}),
+ Ellipse(
+ origin={10.0,10.0},
+ pattern=LinePattern.None,
+ fillPattern=FillPattern.Solid,
+ extent={{0.0,-80.0},{60.0,-20.0}}),
+ Ellipse(
+ origin={10.0,10.0},
+ fillColor={76,76,76},
+ pattern=LinePattern.None,
+ fillPattern=FillPattern.Solid,
+ extent={{-80.0,-80.0},{-20.0,-20.0}})}));
+end Subsequences;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Generic/EquipmentRotation/Subsequences/package.order b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Generic/EquipmentRotation/Subsequences/package.order
new file mode 100644
index 00000000000..8a7466fd0ea
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Generic/EquipmentRotation/Subsequences/package.order
@@ -0,0 +1,6 @@
+ContinuousLeadSwapTwo
+LeastRuntime
+MinimumLeadRuntime
+Scheduler
+Two
+Validation
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Generic/EquipmentRotation/Validation/ControllerTwo.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Generic/EquipmentRotation/Validation/ControllerTwo.mo
new file mode 100644
index 00000000000..2651fe2ae23
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Generic/EquipmentRotation/Validation/ControllerTwo.mo
@@ -0,0 +1,165 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Generic.EquipmentRotation.Validation;
+model ControllerTwo
+ "Validates lead/lag and lead/standby equipment rotation controller for two devices or groups of devices"
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Generic.EquipmentRotation.ControllerTwo
+ leaLag(
+ final lag=true,
+ final minLim=false)
+ "Lead/lag rotation"
+ annotation (Placement(transformation(extent={{-20,80},{0,100}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Generic.EquipmentRotation.ControllerTwo
+ leaLag1(
+ final lag=true,
+ final minLim=false)
+ "Lead/lag rotation"
+ annotation (Placement(transformation(extent={{-20,40},{0,60}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Generic.EquipmentRotation.ControllerTwo
+ leaSta(
+ final lag=false,
+ final minLim=false)
+ "Lead/lag rotation"
+ annotation (Placement(transformation(extent={{-20,0},{0,20}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Generic.EquipmentRotation.ControllerTwo
+ conLeaSimSta(
+ final lag=false,
+ final continuous=true,
+ final weeInt=false,
+ final rotationPeriod=1800,
+ final houOfDay=2,
+ final weeCou=1,
+ final weekday=6,
+ final dayCou=3)
+ "Lead/standby rotation for continuously operating device. Rotation time is measured from simulation start"
+ annotation (Placement(transformation(extent={{-20,-40},{0,-20}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Generic.EquipmentRotation.ControllerTwo
+ conLeaSch(
+ final lag=false,
+ final continuous=true,
+ final minLim=false,
+ final simTimSta=false,
+ final weeInt=false,
+ final zerTim=Buildings.Controls.OBC.CDL.Types.ZeroTime.Custom,
+ final yearRef=2020,
+ final houOfDay=2,
+ final weekday=3,
+ final dayCou=1)
+ "Lead/standby rotation for continuous operation"
+ annotation (Placement(transformation(extent={{-20,-80},{0,-60}})));
+
+protected
+ Buildings.Controls.OBC.CDL.Logical.TrueDelay truDel1[2](
+ final delayTime={300,400},
+ final delayOnInit={true,true})
+ "Emulates device start-up time"
+ annotation (Placement(transformation(extent={{20,-40},{40,-20}})));
+
+ Buildings.Controls.OBC.CDL.Logical.TrueDelay truDel[2](
+ final delayTime={600,600},
+ final delayOnInit={true,true})
+ "Emulates device start-up time"
+ annotation (Placement(transformation(extent={{20,0},{40,20}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Pre pre[2]
+ "Boolean pre"
+ annotation (Placement(transformation(extent={{60,-40},{80,-20}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Pre pre1[2]
+ "Boolean pre"
+ annotation (Placement(transformation(extent={{60,0},{80,20}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Pulse leadLoad(
+ final width=0.8,
+ final period(displayUnit="s") = 7200)
+ "Lead device ON/OFF status"
+ annotation (Placement(transformation(extent={{-100,80},{-80,100}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Pulse lagLoad(
+ final width=0.2,
+ final period=3600)
+ "Lag device ON/OFF status"
+ annotation (Placement(transformation(extent={{-100,40},{-80,60}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Pulse lagLoad1(
+ final width=0.2,
+ final period=5400)
+ "Lag device ON/OFF status"
+ annotation (Placement(transformation(extent={{-100,0},{-80,20}})));
+
+ Buildings.Controls.OBC.CDL.Logical.TrueDelay truDel2[2](
+ final delayTime={600,600},
+ final delayOnInit={true,true})
+ "Emulates device start-up time"
+ annotation (Placement(transformation(extent={{20,-80},{40,-60}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Pre pre2[2]
+ "Boolean pre"
+ annotation (Placement(transformation(extent={{60,-80},{80,-60}})));
+
+equation
+ connect(conLeaSimSta.yDevStaSet, truDel1.u) annotation (Line(points={{2,-24},{
+ 10,-24},{10,-30},{18,-30}}, color={255,0,255}));
+ connect(leadLoad.y, leaLag.uLeaStaSet) annotation (Line(points={{-78,90},{-50,
+ 90},{-50,96},{-22,96}}, color={255,0,255}));
+ connect(lagLoad.y, leaLag.uLagStaSet) annotation (Line(points={{-78,50},{-40,50},
+ {-40,90},{-22,90}}, color={255,0,255}));
+ connect(leadLoad.y, leaSta.uLeaStaSet) annotation (Line(points={{-78,90},{-70,
+ 90},{-70,16},{-22,16}}, color={255,0,255}));
+ connect(lagLoad1.y, leaLag1.uLagStaSet) annotation (Line(points={{-78,10},{-32,
+ 10},{-32,50},{-22,50}}, color={255,0,255}));
+ connect(leadLoad.y, leaLag1.uLeaStaSet) annotation (Line(points={{-78,90},{-50,
+ 90},{-50,56},{-22,56}}, color={255,0,255}));
+ connect(leaSta.yDevStaSet, truDel.u) annotation (Line(points={{2,16},{10,16},{
+ 10,10},{18,10}}, color={255,0,255}));
+ connect(leaLag.yDevStaSet, leaLag.uDevSta) annotation (Line(points={{2,96},{20,
+ 96},{20,70},{-30,70},{-30,84},{-22,84}}, color={255,0,255}));
+ connect(leaLag1.yDevStaSet, leaLag1.uDevSta) annotation (Line(points={{2,56},{
+ 20,56},{20,32},{-28,32},{-28,44},{-22,44}}, color={255,0,255}));
+ connect(truDel1.y, pre.u)
+ annotation (Line(points={{42,-30},{58,-30}}, color={255,0,255}));
+ connect(pre.y, conLeaSimSta.uDevSta) annotation (Line(points={{82,-30},{90,-30},
+ {90,-50},{-30,-50},{-30,-36},{-22,-36}}, color={255,0,255}));
+ connect(truDel.y, pre1.u)
+ annotation (Line(points={{42,10},{58,10}}, color={255,0,255}));
+ connect(pre1.y, leaSta.uDevSta) annotation (Line(points={{82,10},{90,10},{90,-10},
+ {-28,-10},{-28,4},{-22,4}}, color={255,0,255}));
+ connect(conLeaSch.yDevStaSet, truDel2.u) annotation (Line(points={{2,-64},{10,
+ -64},{10,-70},{18,-70}}, color={255,0,255}));
+ connect(truDel2.y, pre2.u)
+ annotation (Line(points={{42,-70},{58,-70}}, color={255,0,255}));
+ connect(pre2.y, conLeaSch.uDevSta) annotation (Line(points={{82,-70},{90,-70},
+ {90,-90},{-30,-90},{-30,-76},{-22,-76}}, color={255,0,255}));
+ annotation (
+ experiment(StopTime=100000.0, Tolerance=1e-06),
+ __Dymola_Commands(file="modelica://Buildings/Resources/Scripts/Dymola/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Generic/EquipmentRotation/Validation/ControllerTwo.mos"
+ "Simulate and plot"),
+ Documentation(info="
+
+This example validates
+
+Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Generic.EquipmentRotation.ControllerTwo.
+
+", revisions="
+
+-
+May 15 2020, by Milica Grahovac:
+First implementation.
+
+
+"),
+Icon(graphics={
+ Ellipse(lineColor = {75,138,73},
+ fillColor={255,255,255},
+ fillPattern = FillPattern.Solid,
+ extent = {{-100,-100},{100,100}}),
+ Polygon(lineColor = {0,0,255},
+ fillColor = {75,138,73},
+ pattern = LinePattern.None,
+ fillPattern = FillPattern.Solid,
+ points = {{-36,60},{64,0},{-36,-60},{-36,60}})}),Diagram(
+ coordinateSystem(preserveAspectRatio=false, extent={{-120,-120},{120,120}})));
+end ControllerTwo;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Generic/EquipmentRotation/Validation/ControllerTwo_MinimumLeadRuntime.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Generic/EquipmentRotation/Validation/ControllerTwo_MinimumLeadRuntime.mo
new file mode 100644
index 00000000000..49eb08cc8c5
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Generic/EquipmentRotation/Validation/ControllerTwo_MinimumLeadRuntime.mo
@@ -0,0 +1,109 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Generic.EquipmentRotation.Validation;
+model ControllerTwo_MinimumLeadRuntime
+ "Validates lead/lag and lead/standby equipment rotation controller for two devices or groups of devices"
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Generic.EquipmentRotation.ControllerTwo
+ leaLag(
+ final lag=true,
+ minLim=true,
+ final minLeaRuntime=43200)
+ "Lead/lag rotation"
+ annotation (Placement(transformation(extent={{-20,40},{0,60}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Generic.EquipmentRotation.ControllerTwo
+ leaLag1(
+ final lag=true,
+ minLim=true,
+ final minLeaRuntime=54000)
+ "Lead/lag rotation"
+ annotation (Placement(transformation(extent={{-20,0},{0,20}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Generic.EquipmentRotation.ControllerTwo
+ leaSta(
+ final lag=false,
+ minLim=true,
+ final minLeaRuntime=43200)
+ "Lead/standby rotation"
+ annotation (Placement(transformation(extent={{-20,-40},{0,-20}})));
+
+protected
+ Buildings.Controls.OBC.CDL.Logical.TrueDelay truDel[2](
+ final delayTime={600,600},
+ final delayOnInit={true,true})
+ "Emulates device start-up time"
+ annotation (Placement(transformation(extent={{20,-40},{40,-20}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Pre pre1[2]
+ "Boolean pre"
+ annotation (Placement(transformation(extent={{60,-40},{80,-20}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Pulse leadLoad(
+ final width=0.8,
+ final period=7200)
+ "Lead device ON/OFF status"
+ annotation (Placement(transformation(extent={{-100,40},{-80,60}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Pulse lagLoad(
+ final width=0.2,
+ final period=3600)
+ "Lag device ON/OFF status"
+ annotation (Placement(transformation(extent={{-100,0},{-80,20}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Pulse lagLoad1(
+ final width=0.2,
+ final period=5400)
+ "Lag device ON/OFF status"
+ annotation (Placement(transformation(extent={{-100,-40},{-80,-20}})));
+
+equation
+ connect(leadLoad.y, leaLag.uLeaStaSet) annotation (Line(points={{-78,50},{-50,
+ 50},{-50,56},{-22,56}}, color={255,0,255}));
+ connect(lagLoad.y, leaLag.uLagStaSet) annotation (Line(points={{-78,10},{-40,10},
+ {-40,50},{-22,50}}, color={255,0,255}));
+ connect(leadLoad.y, leaSta.uLeaStaSet) annotation (Line(points={{-78,50},{-70,
+ 50},{-70,-24},{-22,-24}},
+ color={255,0,255}));
+ connect(lagLoad1.y, leaLag1.uLagStaSet) annotation (Line(points={{-78,-30},{-32,
+ -30},{-32,10},{-22,10}}, color={255,0,255}));
+ connect(leadLoad.y, leaLag1.uLeaStaSet) annotation (Line(points={{-78,50},{-50,
+ 50},{-50,16},{-22,16}}, color={255,0,255}));
+ connect(leaSta.yDevStaSet, truDel.u) annotation (Line(points={{2,-24},{10,-24},
+ {10,-30},{18,-30}}, color={255,0,255}));
+ connect(leaLag.yDevStaSet, leaLag.uDevSta) annotation (Line(points={{2,56},{20,
+ 56},{20,30},{-30,30},{-30,44},{-22,44}}, color={255,0,255}));
+ connect(leaLag1.yDevStaSet, leaLag1.uDevSta) annotation (Line(points={{2,16},{
+ 20,16},{20,-8},{-28,-8},{-28,4},{-22,4}}, color={255,0,255}));
+ connect(truDel.y, pre1.u)
+ annotation (Line(points={{42,-30},{58,-30}}, color={255,0,255}));
+ connect(pre1.y, leaSta.uDevSta) annotation (Line(points={{82,-30},{90,-30},{90,
+ -50},{-28,-50},{-28,-36},{-22,-36}}, color={255,0,255}));
+ annotation (
+ experiment(StopTime=100000.0, Tolerance=1e-06),
+ __Dymola_Commands(file="modelica://Buildings/Resources/Scripts/Dymola/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Generic/EquipmentRotation/Validation/ControllerTwo_MinimumLeadRuntime.mos"
+ "Simulate and plot"),
+ Documentation(info="
+
+This example validates
+
+Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Generic.EquipmentRotation.ControllerTwo.
+
+", revisions="
+
+-
+May 15 2020, by Milica Grahovac:
+First implementation.
+
+
+"),
+Icon(graphics={
+ Ellipse(lineColor = {75,138,73},
+ fillColor={255,255,255},
+ fillPattern = FillPattern.Solid,
+ extent = {{-100,-100},{100,100}}),
+ Polygon(lineColor = {0,0,255},
+ fillColor = {75,138,73},
+ pattern = LinePattern.None,
+ fillPattern = FillPattern.Solid,
+ points = {{-36,60},{64,0},{-36,-60},{-36,60}})}),Diagram(
+ coordinateSystem(preserveAspectRatio=false, extent={{-120,-80},{120,80}})));
+end ControllerTwo_MinimumLeadRuntime;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Generic/EquipmentRotation/Validation/package.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Generic/EquipmentRotation/Validation/package.mo
new file mode 100644
index 00000000000..3e49b77ab6a
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Generic/EquipmentRotation/Validation/package.mo
@@ -0,0 +1,37 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Generic.EquipmentRotation;
+package Validation "Collection of validation models"
+
+annotation (preferredView="info", Documentation(info="
+
+This package contains validation models for the classes in
+
+Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Generic.EquipmentRotation.
+
+
+Note that most validation models contain simple input data
+which may not be realistic, but for which the correct
+output can be obtained through an analytic solution.
+The examples plot various outputs, which have been verified against these
+solutions. These model outputs are stored as reference data and
+used for continuous validation whenever models in the library change.
+
+"),
+ Icon(graphics={
+ Rectangle(
+ lineColor={200,200,200},
+ fillColor={248,248,248},
+ fillPattern=FillPattern.HorizontalCylinder,
+ extent={{-100.0,-100.0},{100.0,100.0}},
+ radius=25.0),
+ Rectangle(
+ lineColor={128,128,128},
+ extent={{-100.0,-100.0},{100.0,100.0}},
+ radius=25.0),
+ Polygon(
+ origin={8.0,14.0},
+ lineColor={78,138,73},
+ fillColor={78,138,73},
+ pattern=LinePattern.None,
+ fillPattern=FillPattern.Solid,
+ points={{-58.0,46.0},{42.0,-14.0},{-58.0,-74.0},{-58.0,46.0}})}));
+end Validation;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Generic/EquipmentRotation/Validation/package.order b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Generic/EquipmentRotation/Validation/package.order
new file mode 100644
index 00000000000..cfbefbf6d93
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Generic/EquipmentRotation/Validation/package.order
@@ -0,0 +1,2 @@
+ControllerTwo
+ControllerTwo_MinimumLeadRuntime
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Generic/EquipmentRotation/package.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Generic/EquipmentRotation/package.mo
new file mode 100644
index 00000000000..6d42ebb5672
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Generic/EquipmentRotation/package.mo
@@ -0,0 +1,48 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Generic;
+package EquipmentRotation "Equipment rotation sequences to maintain even wear"
+
+annotation (
+preferredView="info", Documentation(info="
+
+This package contains equipment staging and rotation sequences implemented based on ASHRAE RP1711.
+March 2020 draft, section 5.1.2. The control intent of these sequences is, where the device configuration allows for it,
+to have the devices be lead/lag or lead/standby rotated to maintain even wear.
+"),
+Icon(graphics={
+ Rectangle(
+ lineColor={200,200,200},
+ fillColor={248,248,248},
+ fillPattern=FillPattern.HorizontalCylinder,
+ extent={{-100.0,-100.0},{100.0,100.0}},
+ radius=25.0),
+ Ellipse(
+ origin={-26.6667,38.6207},
+ lineColor={128,128,128},
+ fillColor={255,255,255},
+ fillPattern=FillPattern.Solid,
+ extent={{-53.3333,1.37927},{-13.3329,41.3792}}),
+ Ellipse(
+ origin={93.3333,-81.3793},
+ lineColor={128,128,128},
+ fillColor={255,255,255},
+ fillPattern=FillPattern.Solid,
+ extent={{-53.3333,1.37927},{-13.3329,41.3792}}),
+ Ellipse(
+ origin={-26.6667,-81.3793},
+ lineColor={128,128,128},
+ fillColor={28,108,200},
+ fillPattern=FillPattern.Solid,
+ extent={{-53.3333,1.37927},{-13.3329,41.3792}}),
+ Ellipse(
+ origin={93.333,38.6207},
+ lineColor={128,128,128},
+ fillColor={28,108,200},
+ fillPattern=FillPattern.Solid,
+ extent={{-53.3333,1.37927},{-13.3329,41.3792}}),
+ Line(points={{-40,60},{0,60},{0,-60},{40,-60}}, color={128,128,128}),
+ Line(points={{-40,-60},{0,-60},{0,60},{40,60}}, color={128,128,128}),
+ Rectangle(
+ lineColor={128,128,128},
+ extent={{-100.0,-100.0},{100.0,100.0}},
+ radius=25.0)}));
+end EquipmentRotation;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Generic/EquipmentRotation/package.order b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Generic/EquipmentRotation/package.order
new file mode 100644
index 00000000000..d6215f892f4
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Generic/EquipmentRotation/package.order
@@ -0,0 +1,3 @@
+ControllerTwo
+Subsequences
+Validation
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Generic/PlantDisable.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Generic/PlantDisable.mo
new file mode 100644
index 00000000000..e48efb69b1d
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Generic/PlantDisable.mo
@@ -0,0 +1,309 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Generic;
+block PlantDisable
+ "Sequence to disable boiler plant components when plant has to be disabled"
+
+ parameter Boolean have_priOnl = false
+ "True: Boiler plant is primary-only; False: Boiler plant is not primary-only";
+
+ parameter Boolean have_heaPriPum = true
+ "True: Boiler plant has headered pump configuration; False: Boiler plant has dedicated pump configuration";
+
+ parameter Integer nBoi=3
+ "Total number of boilers in the plant";
+
+ parameter Real chaHotWatIsoRat(
+ final unit="1/s",
+ final displayUnit="1/s") = 1/60
+ "Rate at which to slowly change isolation valve, should be determined in the field";
+
+ parameter Real delBoiDis=180
+ "Time delay after boilers have been disabled before completing disabling process";
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uPla
+ "Plant enable/disable signal from plant enabler"
+ annotation (Placement(transformation(extent={{-200,100},{-160,140}}),
+ iconTransformation(extent={{-140,60},{-100,100}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uBoi[nBoi]
+ "Boiler enable status signal"
+ annotation (Placement(transformation(extent={{-200,30},{-160,70}}),
+ iconTransformation(extent={{-140,20},{-100,60}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uStaChaProEnd
+ "Signal from staging process controller indicating stage-up/stage-down has been completed"
+ annotation (Placement(transformation(extent={{-200,-140},{-160,-100}}),
+ iconTransformation(extent={{-140,-100},{-100,-60}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uPumChaPro if not have_priOnl
+ "Signal from pump controller indicating stage-up/stage-down has been completed"
+ annotation (Placement(transformation(extent={{-200,-100},{-160,-60}}),
+ iconTransformation(extent={{-140,-60},{-100,-20}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput uHotWatIsoVal[nBoi] if have_heaPriPum
+ "Boiler hot water isolation valve position vector"
+ annotation (Placement(transformation(extent={{-200,-60},{-160,-20}}),
+ iconTransformation(extent={{-140,-20},{-100,20}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanOutput yBoi[nBoi]
+ "Boiler enable status vector"
+ annotation (Placement(transformation(extent={{180,30},{220,70}}),
+ iconTransformation(extent={{100,40},{140,80}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanOutput yStaChaPro
+ "Signal indicating end of stage change/plant disable process"
+ annotation (Placement(transformation(extent={{180,-140},{220,-100}}),
+ iconTransformation(extent={{100,-80},{140,-40}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealOutput yHotWatIsoVal[nBoi] if have_heaPriPum
+ "Boiler hot water isolation valve position vector"
+ annotation (Placement(transformation(extent={{180,-70},{220,-30}}),
+ iconTransformation(extent={{100,-40},{140,0}})));
+
+protected
+ parameter Integer boiInd[nBoi]={i for i in 1:nBoi}
+ "Boiler index vector";
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Generic.Subsequences.HWIsoVal disHotWatIsoVal[nBoi](
+ final chaHotWatIsoRat=fill(chaHotWatIsoRat, nBoi)) if have_heaPriPum
+ "Disable boiler hot water isolation valve for all disabled boilers simultaneously"
+ annotation (Placement(transformation(extent={{20,-60},{40,-40}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Switch logSwi[nBoi]
+ "Pass input boiler enable status when plant is enabled and disable all boilers when plant is disabled"
+ annotation (Placement(transformation(extent={{140,40},{160,60}})));
+
+ Buildings.Controls.OBC.CDL.Routing.BooleanScalarReplicator booRep1(
+ final nout=nBoi)
+ "Boolean replicator"
+ annotation (Placement(transformation(extent={{-40,110},{-20,130}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Not not1
+ "Logical Not"
+ annotation (Placement(transformation(extent={{-130,-20},{-110,0}})));
+
+ Buildings.Controls.OBC.CDL.Routing.BooleanScalarReplicator booRep2(
+ final nout=nBoi) if have_heaPriPum
+ "Boolean replicator"
+ annotation (Placement(transformation(extent={{-20,-20},{0,0}})));
+
+ Buildings.Controls.OBC.CDL.Logical.TrueDelay truDel(
+ final delayTime=delBoiDis,
+ final delayOnInit=true)
+ "Delay after all boilers have been disabled"
+ annotation (Placement(transformation(extent={{-60,-20},{-40,0}})));
+
+ Buildings.Controls.OBC.CDL.Logical.And and2
+ "Pass through stage change completion signal from staging process controller when plant is enabled"
+ annotation (Placement(transformation(extent={{-10,-130},{10,-110}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Or or2
+ "Logical Or"
+ annotation (Placement(transformation(extent={{120,-130},{140,-110}})));
+
+ Buildings.Controls.OBC.CDL.Logical.MultiAnd mulAnd1(
+ final nin=nBoi) if have_priOnl and have_heaPriPum
+ "Multi And"
+ annotation (Placement(transformation(extent={{80,-126},{100,-106}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Latch lat1 if not have_priOnl
+ "Hold pump change status after receiving signal from primary pump controller"
+ annotation (Placement(transformation(extent={{-60,-90},{-40,-70}})));
+
+ Buildings.Controls.OBC.CDL.Logical.And and1 if not have_priOnl and have_heaPriPum
+ "Signal stage change completion when both pump stage change and isolation valve change are complete"
+ annotation (Placement(transformation(extent={{120,-100},{140,-80}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Pre pre if not have_priOnl
+ "Logical pre block"
+ annotation (Placement(transformation(extent={{-140,-110},{-120,-90}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Edge edg1
+ "Rising edge detector"
+ annotation (Placement(transformation(extent={{150,-130},{170,-110}})));
+
+
+ Buildings.Controls.OBC.CDL.Logical.MultiAnd mulAnd2(
+ final nin=nBoi) if not have_priOnl and have_heaPriPum
+ "Multi And"
+ annotation (Placement(transformation(extent={{80,-100},{100,-80}})));
+
+ Buildings.Controls.OBC.CDL.Logical.MultiOr mulOr1(
+ final nin=1) if not have_priOnl and not have_heaPriPum
+ "Multi Or"
+ annotation (Placement(transformation(extent={{-10,-100},{10,-80}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Switch swi[nBoi] if have_heaPriPum
+ "Real switch"
+ annotation (Placement(transformation(extent={{140,-60},{160,-40}})));
+
+ Buildings.Controls.OBC.CDL.Logical.And and3 if not have_priOnl
+ "Indicate pump change completion only when plant is disabled"
+ annotation (Placement(transformation(extent={{-90,-80},{-70,-60}})));
+
+equation
+ connect(uBoi, logSwi.u1) annotation (Line(points={{-180,50},{-120,50},{-120,
+ 58},{138,58}}, color={255,0,255}));
+
+ connect(booRep1.y, logSwi.u3) annotation (Line(points={{-18,120},{-10,120},{
+ -10,70},{60,70},{60,42},{138,42}},
+ color={255,0,255}));
+
+ connect(booRep2.u, truDel.y)
+ annotation (Line(points={{-22,-10},{-38,-10}}, color={255,0,255}));
+
+ connect(and2.y, or2.u2) annotation (Line(points={{12,-120},{60,-120},{60,-128},
+ {118,-128}}, color={255,0,255}));
+
+ connect(mulAnd1.y, or2.u1) annotation (Line(points={{102,-116},{110,-116},{110,
+ -120},{118,-120}}, color={255,0,255}));
+
+ connect(uStaChaProEnd, and2.u1)
+ annotation (Line(points={{-180,-120},{-12,-120}}, color={255,0,255}));
+
+ connect(lat1.y, and1.u1) annotation (Line(points={{-38,-80},{-20,-80},{-20,-72},
+ {114,-72},{114,-90},{118,-90}}, color={255,0,255}));
+
+ connect(and1.y, or2.u1) annotation (Line(points={{142,-90},{152,-90},{152,-104},
+ {116,-104},{116,-120},{118,-120}}, color={255,0,255}));
+
+ connect(pre.y, lat1.clr) annotation (Line(points={{-118,-100},{-110,-100},{-110,
+ -86},{-62,-86}}, color={255,0,255}));
+
+ connect(or2.y, edg1.u)
+ annotation (Line(points={{142,-120},{148,-120}}, color={255,0,255}));
+
+ connect(edg1.y, yStaChaPro)
+ annotation (Line(points={{172,-120},{200,-120}}, color={255,0,255}));
+
+ connect(edg1.y, pre.u) annotation (Line(points={{172,-120},{174,-120},{174,-132},
+ {-150,-132},{-150,-100},{-142,-100}}, color={255,0,255}));
+
+ connect(mulAnd2.y, and1.u2) annotation (Line(points={{102,-90},{108,-90},{108,
+ -98},{118,-98}}, color={255,0,255}));
+
+ connect(lat1.y, mulOr1.u[1]) annotation (Line(points={{-38,-80},{-20,-80},{-20,
+ -90},{-12,-90}},color={255,0,255}));
+
+ connect(mulOr1.y, or2.u1) annotation (Line(points={{12,-90},{48,-90},{48,-136},
+ {110,-136},{110,-120},{118,-120}}, color={255,0,255}));
+
+ connect(booRep1.y, logSwi.u2) annotation (Line(points={{-18,120},{-10,120},{
+ -10,70},{60,70},{60,50},{138,50}},
+ color={255,0,255}));
+
+ connect(logSwi.y, yBoi)
+ annotation (Line(points={{162,50},{200,50}}, color={255,0,255}));
+
+ connect(not1.y, truDel.u)
+ annotation (Line(points={{-108,-10},{-62,-10}},color={255,0,255}));
+
+ connect(swi.y, yHotWatIsoVal)
+ annotation (Line(points={{162,-50},{200,-50}}, color={0,0,127}));
+
+ connect(uPla, booRep1.u)
+ annotation (Line(points={{-180,120},{-42,120}}, color={255,0,255}));
+ connect(uPla, not1.u) annotation (Line(points={{-180,120},{-140,120},{-140,
+ -10},{-132,-10}},
+ color={255,0,255}));
+ connect(uPla, and2.u2) annotation (Line(points={{-180,120},{-140,120},{-140,
+ 10},{-34,10},{-34,-128},{-12,-128}},
+ color={255,0,255}));
+ connect(uHotWatIsoVal, disHotWatIsoVal.uHotWatIsoVal) annotation (Line(points={{-180,
+ -40},{0,-40},{0,-44},{18,-44}}, color={0,0,127}));
+ connect(disHotWatIsoVal.yDisHotWatIsoVal, mulAnd2.u[1:nBoi]) annotation (Line(
+ points={{42,-44},{60,-44},{60,-90},{78,-90}}, color={255,0,255}));
+ connect(disHotWatIsoVal.yDisHotWatIsoVal, mulAnd1.u[1:nBoi]) annotation (Line(
+ points={{42,-44},{60,-44},{60,-116},{78,-116}}, color={255,0,255}));
+ connect(disHotWatIsoVal.yHotWatIsoVal, swi.u1) annotation (Line(points={{42,-56},
+ {100,-56},{100,-42},{138,-42}}, color={0,0,127}));
+ connect(uHotWatIsoVal, swi.u3) annotation (Line(points={{-180,-40},{0,-40},{0,
+ -32},{130,-32},{130,-58},{138,-58}}, color={0,0,127}));
+ connect(booRep2.y, disHotWatIsoVal.uUpsDevSta) annotation (Line(points={{2,-10},
+ {10,-10},{10,-50},{18,-50}}, color={255,0,255}));
+ connect(booRep2.y, swi.u2) annotation (Line(points={{2,-10},{10,-10},{10,-20},
+ {120,-20},{120,-50},{138,-50}}, color={255,0,255}));
+ connect(and3.y, lat1.u) annotation (Line(points={{-68,-70},{-66,-70},{-66,-80},
+ {-62,-80}}, color={255,0,255}));
+ connect(uPumChaPro, and3.u2) annotation (Line(points={{-180,-80},{-100,-80},{
+ -100,-78},{-92,-78}}, color={255,0,255}));
+ connect(not1.y, and3.u1) annotation (Line(points={{-108,-10},{-100,-10},{-100,
+ -70},{-92,-70}}, color={255,0,255}));
+ connect(booRep2.y, disHotWatIsoVal.chaPro) annotation (Line(points={{2,-10},{10,
+ -10},{10,-56},{18,-56}}, color={255,0,255}));
+ annotation (defaultComponentName="plaDis",
+ Icon(graphics={
+ Rectangle(
+ extent={{-100,100},{100,-100}},
+ lineColor={0,0,0},
+ fillColor={255,255,255},
+ fillPattern=FillPattern.Solid,
+ lineThickness=0.1),
+ Rectangle(
+ extent={{-100,100},{100,-100}},
+ lineColor={28,108,200},
+ fillColor={255,255,255},
+ fillPattern=FillPattern.Solid,
+ lineThickness=5,
+ borderPattern=BorderPattern.Raised),
+ Text(
+ extent={{-120,146},{100,108}},
+ textColor={0,0,255},
+ textString="%name"),
+ Ellipse(
+ extent={{-80,80},{80,-80}},
+ lineColor={28,108,200},
+ fillColor={170,255,213},
+ fillPattern=FillPattern.Solid),
+ Ellipse(
+ extent={{-90,90},{90,-90}},
+ lineColor={28,108,200}),
+ Rectangle(
+ extent={{-75,2},{75,-2}},
+ lineColor={28,108,200},
+ fillColor={28,108,200},
+ fillPattern=FillPattern.Solid),
+ Text(
+ extent={{-66,46},{76,10}},
+ textColor={28,108,200},
+ textString="START"),
+ Text(
+ extent={{-66,-8},{76,-44}},
+ textColor={28,108,200},
+ textString="STOP")},
+ coordinateSystem(
+ preserveAspectRatio=false,
+ extent={{-100,-100},{100,100}})),
+ Diagram(
+ coordinateSystem(preserveAspectRatio=false,
+ extent={{-160,-140},{180,140}})),
+ Documentation(
+ info="
+
+ Block that controls boiler plant disable process according to ASHRAE RP-1711,
+ March, 2020 draft, section 5.3.2.5.
+
+
+ When the boiler plant is disabled by the plant enable controller
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Generic.PlantEnable,
+ the controller performs the following actions:
+
+
+ -
+ All the enabled boilers are disabled, ie,
yBoi[nBoi]=false
.
+
+ -
+ A time period
delBoiDis
after the boilers have been disabled,any
+ open hot water isolation valves are closed (if present) and any enabled pumps are disabled.
+
+
+ ",
+ revisions="
+
+ -
+ September 30, 2020, by Karthik Devaprasad:
+ First implementation.
+
+
+ "));
+end PlantDisable;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Generic/PlantEnable.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Generic/PlantEnable.mo
new file mode 100644
index 00000000000..fee4e54e247
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Generic/PlantEnable.mo
@@ -0,0 +1,303 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Generic;
+block PlantEnable
+ "Sequence to enable/disable boiler plant based on heating hot-water requirements"
+
+ parameter Integer nIgnReq(
+ final min=0) = 0
+ "Number of hot-water requests to be ignored before enablng boiler plant loop";
+
+ parameter Integer nSchRow(
+ final min=1) = 4
+ "Number of rows to be created for plant schedule table";
+
+ parameter Real schTab[nSchRow,2] = [0,1; 6,1; 18,1; 24,1]
+ "Table defining schedule for enabling plant";
+
+ parameter Real TOutLoc(
+ final unit="K",
+ final displayUnit="K") = 300
+ "Boiler lock-out temperature for outdoor air";
+
+ parameter Real plaOffThrTim(
+ final unit="s",
+ final displayUnit="s") = 900
+ "Minimum time for which the plant has to stay off once it has been disabled";
+
+ parameter Real plaOnThrTim(
+ final unit="s",
+ final displayUnit="s") = plaOffThrTim
+ "Minimum time for which the boiler plant has to stay on once it has been enabled";
+
+ parameter Real staOnReqTim(
+ final unit="s",
+ final displayUnit="s") = 180
+ "Time-limit for receiving hot-water requests to maintain enabled plant on";
+
+ parameter Real locDt(
+ final unit="K",
+ final displayUnit="K",
+ final quantity="ThermodynamicTemperature") = 1
+ "Temperature deadband for boiler lockout"
+ annotation (Dialog(tab="Advanced"));
+
+ Buildings.Controls.OBC.CDL.Interfaces.IntegerInput supResReq
+ "Number of heating hot-water requests"
+ annotation (Placement(transformation(extent={{-200,30},{-160,70}}),
+ iconTransformation(extent={{-140,20},{-100,60}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput TOut(
+ final unit="K",
+ final displayUnit="K",
+ final quantity="ThermodynamicTemperature")
+ "Measured outdoor air temperature"
+ annotation (Placement(transformation(extent={{-200,-40},{-160,0}}),
+ iconTransformation(extent={{-140,-60},{-100,-20}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanOutput yPla
+ "Plant enable signal"
+ annotation (Placement(transformation(extent={{160,-20},{200,20}}),
+ iconTransformation(extent={{100,-20},{140,20}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.TimeTable enaSch(
+ final table=schTab,
+ final smoothness=Buildings.Controls.OBC.CDL.Types.Smoothness.ConstantSegments,
+ final timeScale=3600)
+ "Table defining when plant can be enabled"
+ annotation (Placement(transformation(extent={{-150,-120},{-130,-100}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Timer tim(t=plaOnThrTim)
+ "Time since plant has been enabled"
+ annotation (Placement(transformation(extent={{10,0},{30,20}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Timer tim2(t=plaOffThrTim)
+ "Time since plant has been disabled"
+ annotation (Placement(transformation(extent={{10,60},{30,80}})));
+
+protected
+ Buildings.Controls.OBC.CDL.Continuous.MultiplyByParameter gai(
+ final k=-1)
+ "Invert signal for subtraction"
+ annotation (Placement(transformation(extent={{-152,-30},{-132,-10}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.GreaterThreshold greThr(
+ final t=0.5)
+ "Check if schedule lets the controller enable the plant or not"
+ annotation (Placement(transformation(extent={{-120,-120},{-100,-100}})));
+
+ Buildings.Controls.OBC.CDL.Integers.GreaterThreshold intGreThr(
+ final t=nIgnReq)
+ "Check if number of requests is greater than number of requests to be ignored"
+ annotation (Placement(transformation(extent={{-120,40},{-100,60}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Latch lat
+ "Maintain plant status till the conditions to change it are met"
+ annotation (Placement(transformation(extent={{120,-10},{140,10}})));
+
+ Buildings.Controls.OBC.CDL.Logical.MultiAnd mulAnd(
+ final nin=4)
+ "Check if all the conditions for enabling plant have been met"
+ annotation (Placement(transformation(extent={{80,110},{100,130}})));
+
+ Buildings.Controls.OBC.CDL.Logical.MultiOr mulOr(
+ final nin=3)
+ "Check if any conditions except plant-on time have been satisfied to disable plant"
+ annotation (Placement(transformation(extent={{30,-80},{50,-60}})));
+
+ Buildings.Controls.OBC.CDL.Logical.And and2
+ "Check if all conditions have been met to disable the plant"
+ annotation (Placement(transformation(extent={{80,-40},{100,-20}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Not not1
+ "Logical Not"
+ annotation (Placement(transformation(extent={{-10,-120},{10,-100}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.AddParameter addPar(
+ final p=TOutLoc)
+ "Compare measured outdoor air temperature to boiler lockout temperature"
+ annotation (Placement(transformation(extent={{-120,-30},{-100,-10}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Hysteresis hys(
+ final uLow=-locDt,
+ final uHigh=0)
+ "Hysteresis loop to prevent cycling caused by measured value"
+ annotation (Placement(transformation(extent={{-120,-60},{-100,-40}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Not not3
+ "Logical Not"
+ annotation (Placement(transformation(extent={{-70,-40},{-50,-20}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Timer tim1(t=staOnReqTim)
+ "Time since number of requests was greater than number of ignores"
+ annotation (Placement(transformation(extent={{-40,-40},{-20,-20}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Not not4
+ "Logical Not"
+ annotation (Placement(transformation(extent={{-20,60},{0,80}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Pre pre1
+ "Logical pre block"
+ annotation (Placement(transformation(extent={{-60,40},{-40,60}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Not not2
+ "Logical Not"
+ annotation (Placement(transformation(extent={{-10,-80},{10,-60}})));
+
+equation
+ connect(yPla, yPla)
+ annotation (Line(points={{180,0},{180,0}}, color={255,0,255}));
+ connect(greThr.y, not1.u)
+ annotation (Line(points={{-98,-110},{-12,-110}}, color={255,0,255}));
+ connect(hys.u, addPar.y) annotation (Line(points={{-122,-50},{-128,-50},{-128,
+ -34},{-96,-34},{-96,-20},{-98,-20}}, color={0,0,127}));
+ connect(not3.y, tim1.u)
+ annotation (Line(points={{-48,-30},{-42,-30}}, color={255,0,255}));
+ connect(not4.y, tim2.u)
+ annotation (Line(points={{2,70},{8,70}}, color={255,0,255}));
+ connect(not2.u, hys.y) annotation (Line(points={{-12,-70},{-20,-70},{-20,-50},
+ {-98,-50}}, color={255,0,255}));
+ connect(intGreThr.y, not3.u) annotation (Line(points={{-98,50},{-80,50},{-80,-30},
+ {-72,-30}}, color={255,0,255}));
+ connect(pre1.y, not4.u) annotation (Line(points={{-38,50},{-30,50},{-30,70},{-22,
+ 70}}, color={255,0,255}));
+ connect(greThr.y, mulAnd.u[1]) annotation (Line(points={{-98,-110},{-92,-110},
+ {-92,125.25},{78,125.25}},
+ color={255,0,255}));
+ connect(hys.y, mulAnd.u[2]) annotation (Line(points={{-98,-50},{-86,-50},{-86,
+ 121.75},{78,121.75}}, color={255,0,255}));
+ connect(intGreThr.y, mulAnd.u[3]) annotation (Line(points={{-98,50},{-80,50},{
+ -80,118.25},{78,118.25}}, color={255,0,255}));
+ connect(mulAnd.y, lat.u) annotation (Line(points={{102,120},{110,120},{110,0},
+ {118,0}}, color={255,0,255}));
+ connect(and2.y, lat.clr) annotation (Line(points={{102,-30},{110,-30},{110,-6},
+ {118,-6}}, color={255,0,255}));
+ connect(not2.y, mulOr.u[1]) annotation (Line(points={{12,-70},{20,-70},{20,
+ -65.3333},{28,-65.3333}},
+ color={255,0,255}));
+ connect(not1.y, mulOr.u[2]) annotation (Line(points={{12,-110},{20,-110},{20,-70},
+ {28,-70}}, color={255,0,255}));
+ connect(mulOr.y, and2.u2) annotation (Line(points={{52,-70},{70,-70},{70,-38},
+ {78,-38}}, color={255,0,255}));
+ connect(intGreThr.u, supResReq)
+ annotation (Line(points={{-122,50},{-180,50}}, color={255,127,0}));
+ connect(lat.y, yPla)
+ annotation (Line(points={{142,0},{180,0}}, color={255,0,255}));
+ connect(lat.y, pre1.u) annotation (Line(points={{142,0},{150,0},{150,30},{-70,
+ 30},{-70,50},{-62,50}}, color={255,0,255}));
+ connect(pre1.y, tim.u) annotation (Line(points={{-38,50},{-30,50},{-30,10},{8,
+ 10}}, color={255,0,255}));
+ connect(enaSch.y[1], greThr.u)
+ annotation (Line(points={{-128,-110},{-122,-110}}, color={0,0,127}));
+ connect(tim2.passed, mulAnd.u[4]) annotation (Line(points={{32,62},{60,62},{60,
+ 114},{78,114},{78,114.75}}, color={255,0,255}));
+ connect(tim.passed, and2.u1) annotation (Line(points={{32,2},{70,2},{70,-30},{
+ 78,-30}}, color={255,0,255}));
+ connect(tim1.passed, mulOr.u[3]) annotation (Line(points={{-18,-38},{20,-38},
+ {20,-74.6667},{28,-74.6667}},color={255,0,255}));
+ connect(addPar.u, gai.y)
+ annotation (Line(points={{-122,-20},{-130,-20}}, color={0,0,127}));
+ connect(TOut, gai.u)
+ annotation (Line(points={{-180,-20},{-154,-20}}, color={0,0,127}));
+ annotation (defaultComponentName = "plaEna",
+ Icon(graphics={
+ Rectangle(
+ extent={{-100,100},{100,-100}},
+ lineColor={0,0,0},
+ fillColor={255,255,255},
+ fillPattern=FillPattern.Solid,
+ lineThickness=0.1),
+ Rectangle(
+ extent={{-100,100},{100,-100}},
+ lineColor={28,108,200},
+ fillColor={255,255,255},
+ fillPattern=FillPattern.Solid,
+ lineThickness=5,
+ borderPattern=BorderPattern.Raised),
+ Text(
+ extent={{-120,146},{100,108}},
+ textColor={0,0,255},
+ textString="%name"),
+ Ellipse(extent={{-80,80},{80,-80}}, lineColor={28,108,200},fillColor={170,255,213},
+ fillPattern=FillPattern.Solid),
+ Ellipse(extent={{-90,90},{90,-90}}, lineColor={28,108,200}),
+ Rectangle(extent={{-75,2},{75,-2}}, lineColor={28,108,200},
+ fillColor={28,108,200},
+ fillPattern=FillPattern.Solid),
+ Text(
+ extent={{-66,46},{76,10}},
+ textColor={28,108,200},
+ textString="START"),
+ Text(
+ extent={{-66,-8},{76,-44}},
+ textColor={28,108,200},
+ textString="STOP")},
+ coordinateSystem(preserveAspectRatio=false, extent={{-100,-100},{100,100}})),
+ Diagram(coordinateSystem(preserveAspectRatio=false, extent={{-160,-140},{160,140}})),
+ Documentation(info="
+
+ Block that generates boiler plant enable signal according to sections 5.3.2.1,
+ 5.3.2.2, and 5.3.2.3 in RP-1711, March 2020 draft.
+
+
+ The boiler plant should be enabled and disabled according to the following
+ conditions:
+
+
+ -
+ An enabling schedule should be included to allow operators to lock out the
+ boiler plant during off-hour, e.g. to allow off-hour operation of HVAC systems
+ except the boiler plant. The default schedule shall be 24/7 and be adjustable.
+
+ -
+ The plant should be enabled when the plant has been continuously disabled
+ for at least
plaOffThrTim
and:
+
+ -
+ Number of boiler plant requests
supResReq
is greater than
+ number of requests to be ignored nIgnReq
, and,
+
+ -
+ Outdoor air temperature
TOut
is lower than boiler
+ lockout temperature TOutLoc
, and,
+
+ -
+ The operator defined enabling schedule
schTab
is active.
+
+
+
+ -
+ The plant should be disabled when it has been continuously enabled for at
+ least
plaOnThrTim
and:
+
+ -
+ Number of boiler plant requests
supResReq
is less than number
+ of requests to be ignored nIgnReq
for a time
+ staOnReqTim
, or,
+
+ -
+ Outdoor air temperature
TOut
is greater than boiler lockout
+ temperature TOutLoc
by locDt
or more,ie,
+ TOut
> TOutLoc
+ locDt
, or,
+
+ -
+ The operator defined enable schedule
schTab
is inactive.
+
+
+
+
+
+
+
+ Validation plot generated from model
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Generic.Validation.PlantEnable.
+
+ ",
+ revisions="
+
+ -
+ May 7, 2020, by Karthik Devaprasad:
+ First implementation.
+
+
+ "));
+end PlantEnable;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Generic/RotationController.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Generic/RotationController.mo
new file mode 100644
index 00000000000..23d991f52e3
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Generic/RotationController.mo
@@ -0,0 +1,284 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Generic;
+block RotationController
+ "Sequence to rotate components in lead/lag pairs"
+
+ parameter Boolean lag = true
+ "true = lead/lag; false = lead/standby";
+
+ parameter Boolean continuous = false
+ "Continuous lead device operation"
+ annotation (Evaluate=true, Dialog(enable=not lag));
+
+ parameter Boolean minLim = false
+ "Utilize minimum runtime period for a current lead device before rotation may occur"
+ annotation (Evaluate=true, Dialog(enable=not continuous));
+
+ parameter Boolean initRoles[nDev] = {true, false}
+ "Initial roles: true = lead, false = lag/standby"
+ annotation (Evaluate=true, Dialog(tab="Advanced", group="Initiation"));
+
+ parameter Boolean simTimSta = true
+ "Measure rotation time from the simulation start"
+ annotation(Evaluate=true, Dialog(group="Scheduler", enable=continuous));
+
+ parameter Boolean weeInt = true
+ "Rotation is scheduled in: true = weekly intervals; false = daily intervals"
+ annotation(Evaluate=true, Dialog(group="Scheduler", enable=not simTimSta));
+
+ parameter Integer yearRef(min=firstYear, max=lastYear) = 2019
+ "Year when time = 0, used if zerTim=Custom"
+ annotation(Evaluate=true, Dialog(group="Calendar", enable=zerTim==Buildings.Controls.OBC.CDL.Types.ZeroTime.Custom and continuous));
+
+ parameter Integer houOfDay = 2
+ "Rotation hour of the day: 0 = midnight; 23 = 11pm"
+ annotation(Evaluate=true, Dialog(group="Scheduler", enable=not simTimSta));
+
+ parameter Integer weeCou = 1 "Number of weeks"
+ annotation (Evaluate=true, Dialog(enable=weeInt and not simTimSta, group="Scheduler"));
+
+ parameter Integer weekday = 1
+ "Rotation weekday, 1 = Monday, 7 = Sunday"
+ annotation (Evaluate=true, Dialog(enable=weeInt and not simTimSta, group="Scheduler"));
+
+ parameter Integer dayCou = 1 "Number of days"
+ annotation (Evaluate=true, Dialog(enable=not weeInt and not simTimSta, group="Scheduler"));
+
+ parameter Real rotationPeriod(
+ final unit="s",
+ final quantity="Time",
+ displayUnit="h") = 1209600
+ "Rotation time period measured from simulation start"
+ annotation(Dialog(group="Scheduler", enable=simTimSta));
+
+ parameter Real minLeaRuntime(
+ final unit="s",
+ final quantity="Time",
+ displayUnit="h") = 43200
+ "Minimum cumulative runtime period for a current lead device before rotation may occur"
+ annotation (Evaluate=true, Dialog(enable=(not continuous and minLim)));
+
+ parameter Real offset(
+ final unit="s",
+ final quantity="Time") = 0
+ "Offset that is added to 'time', may be used for computing time in a different time zone"
+ annotation(Evaluate=true, Dialog(group="Calendar", enable=(continuous and not simTimSta)));
+
+ parameter Buildings.Controls.OBC.CDL.Types.ZeroTime zerTim = Buildings.Controls.OBC.CDL.Types.ZeroTime.NY2019
+ "Enumeration for choosing how reference time (time = 0) should be defined"
+ annotation(Evaluate=true, Dialog(group="Calendar", enable=(continuous and not simTimSta)));
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uDevStaSet[nDev]
+ "Device status setpoint from controller"
+ annotation (Placement(transformation(extent={{-140,30},{-100,70}}),
+ iconTransformation(extent={{-140,30},{-100,70}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uDevSta[nDev]
+ "Measured device status from plant"
+ annotation (Placement(transformation(extent={{-140,-50},{-100,-10}}),
+ iconTransformation(extent={{-140,-70},{-100,-30}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanOutput yDevStaSet[nDev]
+ "Device status setpoint from equipment rotation controller"
+ annotation (Placement(transformation(extent={{100,30},{140,70}}),
+ iconTransformation(extent={{100,30},{140,70}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanOutput yStaFee[nDev]
+ "Component status feedback signal back to main controller"
+ annotation (Placement(transformation(extent={{100,-80},{140,-40}}),
+ iconTransformation(extent={{100,-70},{140,-30}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Generic.EquipmentRotation.ControllerTwo equRot(
+ final lag = lag,
+ final continuous = continuous,
+ final minLim = minLim,
+ final initRoles = initRoles,
+ final simTimSta = simTimSta,
+ final weeInt = weeInt,
+ final rotationPeriod = rotationPeriod,
+ final minLeaRuntime = minLeaRuntime,
+ final offset = offset,
+ final zerTim = zerTim,
+ final yearRef = yearRef,
+ final houOfDay = houOfDay,
+ final weeCou = weeCou,
+ final weekday = weekday,
+ final dayCou = dayCou)
+ "Equipment rotation controller"
+ annotation (Placement(transformation(extent={{-70,30},{-50,50}})));
+
+protected
+ final parameter Integer nDev = 2
+ "Number of devices in lead/lag relationship";
+
+ final constant Integer firstYear = 2010
+ "First year that is supported, i.e. the first year in timeStampsNewYear[:]"
+ annotation (Evaluate=true, Dialog(enable=not continuous));
+
+ final constant Integer lastYear = firstYear + 20
+ "Last year that is currently supported"
+ annotation (Evaluate=true, Dialog(enable=not continuous));
+
+ Buildings.Controls.OBC.CDL.Conversions.BooleanToInteger booToInt[nDev]
+ "Boolean to Integer conversion"
+ annotation (Placement(transformation(extent={{-20,-10},{0,10}})));
+
+ Buildings.Controls.OBC.CDL.Integers.MultiSum mulSumInt(
+ final nin=nDev)
+ "Integer Multi-sum"
+ annotation (Placement(transformation(extent={{10,-10},{30,10}})));
+
+ Buildings.Controls.OBC.CDL.Integers.GreaterThreshold intGreThr
+ "Check if one component is enabled"
+ annotation (Placement(transformation(extent={{50,20},{70,40}})));
+
+ Buildings.Controls.OBC.CDL.Integers.GreaterThreshold intGreThr1(
+ final t=1)
+ "Check if both components are enabled"
+ annotation (Placement(transformation(extent={{50,-10},{70,10}})));
+
+ Buildings.Controls.OBC.CDL.Routing.BooleanScalarReplicator booRep[nDev](
+ final nout=fill(nDev, nDev))
+ "Boolean replicator"
+ annotation (Placement(transformation(extent={{-30,-50},{-10,-30}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Switch logSwi[nDev]
+ "Logical switch"
+ annotation (Placement(transformation(extent={{10,-90},{30,-70}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant con[nDev](
+ final k={true,false})
+ "Constant Boolean source"
+ annotation (Placement(transformation(extent={{-80,-60},{-60,-40}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant con1[nDev](
+ final k={false,false})
+ "Constant Boolean source"
+ annotation (Placement(transformation(extent={{-80,-90},{-60,-70}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Switch logSwi1[nDev]
+ "Logical switch"
+ annotation (Placement(transformation(extent={{50,-70},{70,-50}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant con2[nDev](
+ final k={true,true})
+ "Constant Boolean source"
+ annotation (Placement(transformation(extent={{10,-50},{30,-30}})));
+
+equation
+ connect(uDevStaSet[1], equRot.uLeaStaSet) annotation (Line(points={{-120,40},{
+ -120,50},{-80,50},{-80,46},{-72,46}},
+ color={255,0,255}));
+ connect(uDevSta, equRot.uDevSta) annotation (Line(points={{-120,-30},{-80,-30},
+ {-80,34},{-72,34}}, color={255,0,255}));
+ connect(equRot.yDevStaSet, yDevStaSet) annotation (Line(points={{-48,46},{-30,
+ 46},{-30,50},{120,50}}, color={255,0,255}));
+ connect(booToInt.y, mulSumInt.u[1:2])
+ annotation (Line(points={{2,0},{8,0},{8,-3.5}}, color={255,127,0}));
+ connect(mulSumInt.y, intGreThr.u) annotation (Line(points={{32,0},{40,0},{40,30},
+ {48,30}}, color={255,127,0}));
+ connect(mulSumInt.y, intGreThr1.u)
+ annotation (Line(points={{32,0},{48,0}}, color={255,127,0}));
+ connect(intGreThr.y, booRep[1].u) annotation (Line(points={{72,30},{80,30},{80,
+ -20},{-40,-20},{-40,-40},{-32,-40}}, color={255,0,255}));
+ connect(intGreThr1.y, booRep[2].u) annotation (Line(points={{72,0},{80,0},{80,
+ -20},{-40,-20},{-40,-40},{-32,-40}}, color={255,0,255}));
+ connect(booRep[1].y, logSwi.u2) annotation (Line(points={{-8,-40},{0,-40},{0,-80},
+ {8,-80}}, color={255,0,255}));
+ connect(con.y, logSwi.u1) annotation (Line(points={{-58,-50},{-48,-50},{-48,-72},
+ {8,-72}}, color={255,0,255}));
+ connect(con1.y, logSwi.u3) annotation (Line(points={{-58,-80},{-54,-80},{-54,-88},
+ {8,-88}}, color={255,0,255}));
+ connect(logSwi.y, logSwi1.u3) annotation (Line(points={{32,-80},{40,-80},{40,-68},
+ {48,-68}}, color={255,0,255}));
+ connect(booRep[2].y, logSwi1.u2) annotation (Line(points={{-8,-40},{0,-40},{0,
+ -60},{48,-60}}, color={255,0,255}));
+ connect(con2.y, logSwi1.u1) annotation (Line(points={{32,-40},{40,-40},{40,-52},
+ {48,-52}}, color={255,0,255}));
+ connect(logSwi1.y, yStaFee)
+ annotation (Line(points={{72,-60},{120,-60}}, color={255,0,255}));
+ connect(uDevSta, booToInt.u) annotation (Line(points={{-120,-30},{-80,-30},{-80,
+ 0},{-22,0}}, color={255,0,255}));
+ connect(uDevStaSet[2], equRot.uLagStaSet) annotation (Line(points={{-120,60},{
+ -120,50},{-80,50},{-80,40},{-72,40}}, color={255,0,255}));
+ annotation (defaultComponentName="rotCon",
+ Icon(graphics={
+ Text(
+ extent={{-120,146},{100,108}},
+ textColor={0,0,255},
+ textString="%name"),
+ Rectangle(
+ extent={{-100,-100},{100,100}},
+ lineColor={0,0,127},
+ fillColor={255,255,255},
+ fillPattern=FillPattern.Solid),
+ Ellipse(
+ extent={{71,7},{85,-7}},
+ lineColor=DynamicSelect({235,235,235}, if y then {0,255,0}
+ else {235,235,235}),
+ fillColor=DynamicSelect({235,235,235}, if y then {0,255,0}
+ else {235,235,235}),
+ fillPattern=FillPattern.Solid),
+ Ellipse(
+ extent={{-75,-6},{-89,8}},
+ lineColor=DynamicSelect({235,235,235}, if u1 then {0,255,0}
+ else {235,235,235}),
+ fillColor=DynamicSelect({235,235,235}, if u1 then {0,255,0}
+ else {235,235,235}),
+ fillPattern=FillPattern.Solid),
+ Ellipse(
+ origin={-26.667,38.6207},
+ lineColor={128,128,128},
+ fillColor={255,255,255},
+ fillPattern=FillPattern.Solid,
+ extent={{-53.3333,1.37927},{-13.3329,41.3792}}),
+ Ellipse(
+ origin={93.333,-81.379},
+ lineColor={128,128,128},
+ fillColor={255,255,255},
+ fillPattern=FillPattern.Solid,
+ extent={{-53.3333,1.37927},{-13.3329,41.3792}}),
+ Ellipse(
+ origin={-26.667,-81.379},
+ lineColor={128,128,128},
+ fillColor={28,108,200},
+ fillPattern=FillPattern.Solid,
+ extent={{-53.3333,1.37927},{-13.3329,41.3792}}),
+ Ellipse(
+ origin={93.333,38.6207},
+ lineColor={128,128,128},
+ fillColor={28,108,200},
+ fillPattern=FillPattern.Solid,
+ extent={{-53.3333,1.37927},{-13.3329,41.3792}}),
+ Line(points={{-40,60},{0,60},{0,-60},{40,-60}}, color={128,128,128}),
+ Line(points={{-40,-60},{0,-60},{0,60},{40,60}}, color={128,128,128})},
+ coordinateSystem(
+ preserveAspectRatio=false,
+ extent={{-100,-100},{100,100}})),
+ Diagram(
+ coordinateSystem(preserveAspectRatio=false,
+ extent={{-100,-100},{100,100}})),
+ Documentation(
+ info="
+
+ Block that controls equipment rotation process according to ASHRAE RP-1711,
+ March, 2020 draft, section 5.1.2.3.
+
+
+ The implemented block acts as a wrapper for the equipment rotation controller
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Generic.EquipmentRotation.ControllerTwo.
+ In addition to the inputs and outputs available from the above block,
+ the implemented sequence has an additional output yStaFee
,
+ which is the device status feedback to the main controller. This vector
+ arranges the status vector in the lead/lag order and sends it back to the
+ main controller.
+ ",
+ revisions="
+
+ -
+ April 12, 2021, by Karthik Devaprasad:
+ First implementation.
+
+
+ "));
+end RotationController;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Generic/Subsequences/HWIsoVal.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Generic/Subsequences/HWIsoVal.mo
new file mode 100644
index 00000000000..bd575cb02be
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Generic/Subsequences/HWIsoVal.mo
@@ -0,0 +1,313 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Generic.Subsequences;
+block HWIsoVal
+ "Sequence of enable or disable hot water isolation valve"
+
+ parameter Real chaHotWatIsoRat(
+ final unit="1/s",
+ displayUnit="1/s") = 1/60
+ "Rate at which to slowly close isolation valve, should be determined in the field";
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uUpsDevSta
+ "Status of device reset before enabling or disabling isolation valve"
+ annotation (Placement(transformation(extent={{-200,-160},{-160,-120}}),
+ iconTransformation(extent={{-140,-20},{-100,20}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput chaPro
+ "Indicate if there is a stage up or stage down command"
+ annotation (Placement(transformation(extent={{-200,-200},{-160,-160}}),
+ iconTransformation(extent={{-140,-80},{-100,-40}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput uHotWatIsoVal(
+ final unit="1",
+ displayUnit="1",
+ final min=0,
+ final max=1)
+ "Hot water isolation valve position"
+ annotation (Placement(transformation(extent={{-200,-120},{-160,-80}}),
+ iconTransformation(extent={{-140,40},{-100,80}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanOutput yDisHotWatIsoVal
+ "Status of hot water isolation valve control: true=disabled valve is fully closed"
+ annotation (Placement(transformation(extent={{180,120},{220,160}}),
+ iconTransformation(extent={{100,40},{140,80}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealOutput yHotWatIsoVal(
+ final unit="1",
+ displayUnit="1",
+ final min=0,
+ final max=1)
+ "Hot water isolation valve position"
+ annotation (Placement(transformation(extent={{180,-60},{220,-20}}),
+ iconTransformation(extent={{100,-80},{140,-40}})));
+
+protected
+ Buildings.Controls.OBC.CDL.Continuous.MultiplyByParameter gai(
+ final k=1/chaHotWatIsoRat)
+ "Find remaining time for valve position change"
+ annotation (Placement(transformation(extent={{-20,10},{0,30}})));
+
+ Buildings.Controls.OBC.CDL.Discrete.TriggeredSampler triSam
+ "Sample valve position at start of shutdown process"
+ annotation (Placement(transformation(extent={{-70,40},{-50,60}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.AddParameter addPar(
+ final p=1e-6)
+ "Determine time required to change valve position"
+ annotation (Placement(transformation(extent={{20,10},{40,30}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Greater gre
+ "Check if time required for changing valve position has elapsed"
+ annotation (Placement(transformation(extent={{60,110},{80,130}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant con9(
+ final k=0)
+ "Constant zero"
+ annotation (Placement(transformation(extent={{0,90},{20,110}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Line lin1
+ "Hot water isolation valve setpoint"
+ annotation (Placement(transformation(extent={{40,70},{60,90}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Timer tim
+ "Count the time after changing up-stream device status"
+ annotation (Placement(transformation(extent={{-100,90},{-80,110}})));
+
+ Buildings.Controls.OBC.CDL.Logical.And and2
+ "Check if it is time to change isolation valve position"
+ annotation (Placement(transformation(extent={{-80,-180},{-60,-160}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Switch swi
+ "Logical switch"
+ annotation (Placement(transformation(extent={{140,-50},{160,-30}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Hysteresis hys3(
+ final uLow=0.025,
+ final uHigh=0.05)
+ "Check if isolation valve is disabled"
+ annotation (Placement(transformation(extent={{-120,210},{-100,230}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Hysteresis hys4(
+ final uLow=0.925,
+ final uHigh=0.975)
+ "Check if isolation valve is open more than 95%"
+ annotation (Placement(transformation(extent={{-120,150},{-100,170}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Not not3
+ "Logical not"
+ annotation (Placement(transformation(extent={{-40,180},{-20,200}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Not not4
+ "Logical not"
+ annotation (Placement(transformation(extent={{-40,150},{-20,170}})));
+
+ Buildings.Controls.OBC.CDL.Logical.And and4
+ "Logical and"
+ annotation (Placement(transformation(extent={{0,180},{20,200}})));
+
+ Buildings.Controls.OBC.CDL.Logical.And and3
+ "Logical and"
+ annotation (Placement(transformation(extent={{0,210},{20,230}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Or or2
+ "Logical or"
+ annotation (Placement(transformation(extent={{40,210},{60,230}})));
+
+ Buildings.Controls.OBC.CDL.Logical.And3 and5
+ "Check if the isolation valve has been fully open"
+ annotation (Placement(transformation(extent={{140,130},{160,150}})));
+
+equation
+ connect(con9.y, lin1.x1)
+ annotation (Line(points={{22,100},{30,100},{30,88},{38,88}},
+ color={0,0,127}));
+
+ connect(tim.y, lin1.u)
+ annotation (Line(points={{-78,100},{-20,100},{-20,80},{38,80}},
+ color={0,0,127}));
+
+ connect(chaPro, and2.u2)
+ annotation (Line(points={{-180,-180},{-132,-180},{-132,-178},{-82,-178}},
+ color={255,0,255}));
+
+ connect(swi.y,yHotWatIsoVal)
+ annotation (Line(points={{162,-40},{200,-40}}, color={0,0,127}));
+
+ connect(uHotWatIsoVal, hys4.u)
+ annotation (Line(points={{-180,-100},{-140,-100},{-140,160},{-122,160}},
+ color={0,0,127}));
+
+ connect(uHotWatIsoVal, hys3.u)
+ annotation (Line(points={{-180,-100},{-140,-100},{-140,220},{-122,220}},
+ color={0,0,127}));
+
+ connect(hys3.y, and3.u1)
+ annotation (Line(points={{-98,220},{-2,220}}, color={255,0,255}));
+
+ connect(hys4.y, and3.u2)
+ annotation (Line(points={{-98,160},{-80,160},{-80,212},{-2,212}},
+ color={255,0,255}));
+
+ connect(hys4.y, not4.u)
+ annotation (Line(points={{-98,160},{-42,160}}, color={255,0,255}));
+
+ connect(hys3.y, not3.u)
+ annotation (Line(points={{-98,220},{-60,220},{-60,190},{-42,190}},
+ color={255,0,255}));
+
+ connect(not4.y, and4.u2)
+ annotation (Line(points={{-18,160},{-12,160},{-12,182},{-2,182}},
+ color={255,0,255}));
+
+ connect(not3.y, and4.u1)
+ annotation (Line(points={{-18,190},{-2,190}}, color={255,0,255}));
+
+ connect(and3.y, or2.u1)
+ annotation (Line(points={{22,220},{38,220}}, color={255,0,255}));
+
+ connect(and4.y, or2.u2)
+ annotation (Line(points={{22,190},{30,190},{30,212},{38,212}},
+ color={255,0,255}));
+
+ connect(and5.y,yDisHotWatIsoVal)
+ annotation (Line(points={{162,140},{200,140}}, color={255,0,255}));
+
+ connect(uUpsDevSta, and5.u2)
+ annotation (Line(points={{-180,-140},{-130,-140},{-130,140},{138,140}},
+ color={255,0,255}));
+
+ connect(uUpsDevSta, and2.u1) annotation (Line(points={{-180,-140},{-100,-140},
+ {-100,-170},{-82,-170}},color={255,0,255}));
+
+ connect(tim.u, and2.y) annotation (Line(points={{-102,100},{-120,100},{-120,
+ -200},{-50,-200},{-50,-170},{-58,-170}}, color={255,0,255}));
+
+ connect(addPar.y, lin1.x2) annotation (Line(points={{42,20},{80,20},{80,100},{
+ 34,100},{34,76},{38,76}},
+ color={0,0,127}));
+
+ connect(tim.y, gre.u1) annotation (Line(points={{-78,100},{-20,100},{-20,120},
+ {58,120}},
+ color={0,0,127}));
+
+ connect(addPar.y, gre.u2) annotation (Line(points={{42,20},{80,20},{80,100},{34,
+ 100},{34,112},{58,112}}, color={0,0,127}));
+
+ connect(gre.y, and5.u3) annotation (Line(points={{82,120},{120,120},{120,132},
+ {138,132}}, color={255,0,255}));
+
+ connect(con9.y, lin1.f2) annotation (Line(points={{22,100},{30,100},{30,72},{38,
+ 72}}, color={0,0,127}));
+ connect(triSam.y, lin1.f1) annotation (Line(points={{-48,50},{-40,50},{-40,84},
+ {38,84}}, color={0,0,127}));
+ connect(or2.y, and5.u1) annotation (Line(points={{62,220},{120,220},{120,148},
+ {138,148}}, color={255,0,255}));
+ connect(uHotWatIsoVal, triSam.u) annotation (Line(points={{-180,-100},{-100,-100},
+ {-100,50},{-72,50}}, color={0,0,127}));
+ connect(lin1.y, swi.u1) annotation (Line(points={{62,80},{100,80},{100,-32},{138,
+ -32}}, color={0,0,127}));
+ connect(uHotWatIsoVal, swi.u3) annotation (Line(points={{-180,-100},{110,-100},
+ {110,-48},{138,-48}}, color={0,0,127}));
+
+ connect(and2.y, swi.u2) annotation (Line(points={{-58,-170},{-50,-170},{-50,-40},
+ {138,-40}}, color={255,0,255}));
+ connect(and2.y, triSam.trigger) annotation (Line(points={{-58,-170},{-50,-170},
+ {-50,20},{-60,20},{-60,38}}, color={255,0,255}));
+ connect(addPar.u, gai.y)
+ annotation (Line(points={{18,20},{2,20}}, color={0,0,127}));
+ connect(gai.u, triSam.y) annotation (Line(points={{-22,20},{-40,20},{-40,50},{
+ -48,50}}, color={0,0,127}));
+annotation (
+ defaultComponentName="enaHotWatIsoVal",
+ Diagram(
+ coordinateSystem(preserveAspectRatio=false,
+ extent={{-160,-240},{180,240}}),
+ graphics={
+ Rectangle(
+ extent={{-158,238},{178,122}},
+ fillColor={210,210,210},
+ fillPattern=FillPattern.Solid,
+ pattern=LinePattern.None),
+ Text(
+ extent={{-38,184},{172,150}},
+ pattern=LinePattern.None,
+ fillColor={210,210,210},
+ fillPattern=FillPattern.Solid,
+ textColor={0,0,127},
+ horizontalAlignment=TextAlignment.Right,
+ textString="Check if all enabled HW isolation valves
+ have been fully open")}),
+ Icon(graphics={
+ Rectangle(
+ extent={{-100,-100},{100,100}},
+ lineColor={0,0,127},
+ fillColor={255,255,255},
+ fillPattern=FillPattern.Solid),
+ Text(
+ extent={{-120,146},{100,108}},
+ textColor={0,0,255},
+ textString="%name"),
+ Text(
+ extent={{-96,-54},{-60,-66}},
+ textColor={255,0,255},
+ pattern=LinePattern.Dash,
+ textString="chaPro"),
+ Text(
+ extent={{-96,8},{-66,-6}},
+ textColor={255,0,255},
+ pattern=LinePattern.Dash,
+ textString="uUpsDevSta"),
+ Text(
+ extent={{-96,68},{-42,56}},
+ textColor={0,0,127},
+ pattern=LinePattern.Dash,
+ textString="uHotWatIsoVal"),
+ Text(
+ extent={{32,70},{96,54}},
+ textColor={255,0,255},
+ pattern=LinePattern.Dash,
+ textString="yEnaHotWatIsoVal"),
+ Polygon(
+ points={{-60,40},{-60,-40},{0,0},{-60,40}},
+ lineColor={200,200,200},
+ fillColor={207,207,207},
+ fillPattern=FillPattern.Solid),
+ Polygon(
+ points={{60,40},{60,-40},{0,0},{60,40}},
+ lineColor={200,200,200},
+ fillColor={207,207,207},
+ fillPattern=FillPattern.Solid),
+ Text(
+ extent={{44,-54},{98,-66}},
+ textColor={0,0,127},
+ pattern=LinePattern.Dash,
+ textString="yHotWatIsoVal")}),
+ Documentation(info="
+
+ Block updates boiler hot water isolation valve position when
+ there is stage change command (chaPro=true
). It will also generate
+ status yDisHotWatIsoVal=true
to indicate if the valve reset process has finished.
+ This block is not based on any specific section in RP-1711, but has been designed
+ to carry out the hot water isolation valve operations in the plant disable sequences
+ defined in 5.3.2.5.
+
+
+ -
+ When there is a plant disable command (
chaPro=true
) and the boiler
+ being diabled has been shut off (uUpsDevSta=true
),
+ the boiler's isolation valve will be fully closed at a rate of change of position
+ chaHotWatIsoRat
.
+
+
+
+ This sequence will generate real signal yHoyWatIsoVal
which indicates
+ hot water isolation valve position.
+
+ ", revisions="
+
+ -
+ June 18, 2020, by Karthik Devaprasad:
+ First implementation.
+
+
+ "));
+end HWIsoVal;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Generic/Subsequences/Validation/HWIsoVal.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Generic/Subsequences/Validation/HWIsoVal.mo
new file mode 100644
index 00000000000..df33788b487
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Generic/Subsequences/Validation/HWIsoVal.mo
@@ -0,0 +1,108 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Generic.Subsequences.Validation;
+model HWIsoVal
+ "Validate isolation valve disable sequence"
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Generic.Subsequences.HWIsoVal
+ cloHotIsoVal(
+ final chaHotWatIsoRat=1/60) "Close isolation valve"
+ annotation (Placement(transformation(extent={{-100,0},{-80,20}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Generic.Subsequences.HWIsoVal
+ cloHotIsoVal1(
+ final chaHotWatIsoRat=1/60)
+ "Close isolation valve"
+ annotation (Placement(transformation(extent={{120,0},{140,20}})));
+
+protected
+ Buildings.Controls.OBC.CDL.Discrete.UnitDelay uniDel(
+ final samplePeriod=1,
+ final y_start=1)
+ "Unit delay"
+ annotation (Placement(transformation(extent={{-60,-10},{-40,10}})));
+
+ Buildings.Controls.OBC.CDL.Discrete.UnitDelay uniDel1(
+ final samplePeriod=1,
+ final y_start=0.75)
+ "Unit delay"
+ annotation (Placement(transformation(extent={{160,-10},{180,10}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Pulse booPul(
+ final width=0.15,
+ final period=3600)
+ "Boolean pulse"
+ annotation (Placement(transformation(extent={{-200,-80},{-180,-60}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Not staCha
+ "Stage change command"
+ annotation (Placement(transformation(extent={{-160,-80},{-140,-60}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Pulse booPul1(
+ final width=0.20,
+ final period=3600)
+ "Boolean pulse"
+ annotation (Placement(transformation(extent={{-200,-40},{-180,-20}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Not upsDevSta
+ "Upstream device status"
+ annotation (Placement(transformation(extent={{-160,-40},{-140,-20}})));
+
+equation
+ connect(booPul.y, staCha.u)
+ annotation (Line(points={{-178,-70},{-162,-70}}, color={255,0,255}));
+
+ connect(booPul1.y, upsDevSta.u)
+ annotation (Line(points={{-178,-30},{-162,-30}}, color={255,0,255}));
+
+ connect(upsDevSta.y,cloHotIsoVal. uUpsDevSta) annotation (Line(points={{-138,-30},
+ {-120,-30},{-120,10},{-102,10}}, color={255,0,255}));
+
+ connect(upsDevSta.y, cloHotIsoVal1.uUpsDevSta) annotation (Line(points={{-138,
+ -30},{100,-30},{100,10},{118,10}},
+ color={255,0,255}));
+
+ connect(staCha.y,cloHotIsoVal. chaPro) annotation (Line(points={{-138,-70},{-110,
+ -70},{-110,4},{-102,4}}, color={255,0,255}));
+
+ connect(staCha.y, cloHotIsoVal1.chaPro) annotation (Line(points={{-138,-70},{110,
+ -70},{110,4},{118,4}}, color={255,0,255}));
+
+ connect(cloHotIsoVal.yHotWatIsoVal, uniDel.u) annotation (Line(points={{-78,4},
+ {-70,4},{-70,0},{-62,0}}, color={0,0,127}));
+ connect(cloHotIsoVal1.yHotWatIsoVal, uniDel1.u) annotation (Line(points={{142,
+ 4},{150,4},{150,0},{158,0}}, color={0,0,127}));
+ connect(uniDel.y, cloHotIsoVal.uHotWatIsoVal) annotation (Line(points={{-38,0},
+ {-30,0},{-30,40},{-110,40},{-110,16},{-102,16}}, color={0,0,127}));
+ connect(uniDel1.y, cloHotIsoVal1.uHotWatIsoVal) annotation (Line(points={{182,
+ 0},{190,0},{190,40},{110,40},{110,16},{118,16}}, color={0,0,127}));
+annotation (
+ experiment(StopTime=3600, Tolerance=1e-06),
+ __Dymola_Commands(file="modelica://Buildings/Resources/Scripts/Dymola/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Generic/Subsequences/Validation/HWIsoVal.mos"
+ "Simulate and plot"),
+ Documentation(info="
+
+ This example validates
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Generic.Subsequences.HWIsoVal.
+
+ ", revisions="
+
+ -
+ September 30, 2020 by Karthik Devaprasad:
+ First implementation.
+
+
+ "),
+ Icon(coordinateSystem(extent={{-100,-100},{100,100}}),
+ graphics={
+ Ellipse(lineColor = {75,138,73},
+ fillColor={255,255,255},
+ fillPattern = FillPattern.Solid,
+ extent = {{-100,-100},{100,100}}),
+ Polygon(lineColor = {0,0,255},
+ fillColor = {75,138,73},
+ pattern = LinePattern.None,
+ fillPattern = FillPattern.Solid,
+ points = {{-36,60},{64,0},{-36,-60},{-36,60}})}),
+ Diagram(coordinateSystem(preserveAspectRatio=false,
+ extent={{-220,-120},{220,120}})));
+end HWIsoVal;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Generic/Subsequences/Validation/package.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Generic/Subsequences/Validation/package.mo
new file mode 100644
index 00000000000..49b62337d33
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Generic/Subsequences/Validation/package.mo
@@ -0,0 +1,38 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Generic.Subsequences;
+package Validation "Collection of validation models"
+
+
+annotation (preferredView="info", Documentation(info="
+
+This package contains validation models for the classes in
+
+Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Staging.Processes.Subsequences.
+
+
+Note that most validation models contain simple input data
+which may not be realistic, but for which the correct
+output can be obtained through an analytic solution.
+The examples plot various outputs, which have been verified against these
+solutions. These model outputs are stored as reference data and
+used for continuous validation whenever models in the library change.
+
+"),
+ Icon(graphics={
+ Rectangle(
+ lineColor={200,200,200},
+ fillColor={248,248,248},
+ fillPattern=FillPattern.HorizontalCylinder,
+ extent={{-100.0,-100.0},{100.0,100.0}},
+ radius=25.0),
+ Polygon(
+ origin={8.0,14.0},
+ lineColor={78,138,73},
+ fillColor={78,138,73},
+ pattern=LinePattern.None,
+ fillPattern=FillPattern.Solid,
+ points={{-58.0,46.0},{42.0,-14.0},{-58.0,-74.0},{-58.0,46.0}}),
+ Rectangle(
+ lineColor={128,128,128},
+ extent={{-100.0,-100.0},{100.0,100.0}},
+ radius=25.0)}));
+end Validation;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Generic/Subsequences/Validation/package.order b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Generic/Subsequences/Validation/package.order
new file mode 100644
index 00000000000..aba504acb16
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Generic/Subsequences/Validation/package.order
@@ -0,0 +1 @@
+HWIsoVal
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Generic/Subsequences/package.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Generic/Subsequences/package.mo
new file mode 100644
index 00000000000..dcfcddaf236
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Generic/Subsequences/package.mo
@@ -0,0 +1,46 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Generic;
+package Subsequences "Package of subsequences for generic boiler plant sequences"
+
+
+
+annotation (preferredView="info", Documentation(info="
+
+This package contains subsequences for controlling devices when there is stage-up
+or stage-down command.
+
+"),
+ Icon(graphics={
+ Rectangle(
+ lineColor={200,200,200},
+ fillColor={248,248,248},
+ fillPattern=FillPattern.HorizontalCylinder,
+ extent={{-100.0,-100.0},{100.0,100.0}},
+ radius=25.0),
+ Ellipse(
+ origin={10.0,10.0},
+ lineColor={128,128,128},
+ fillColor={255,255,255},
+ fillPattern=FillPattern.Solid,
+ extent={{-80.0,0.0},{-20.0,60.0}}),
+ Ellipse(
+ origin={10.0,10.0},
+ fillColor={128,128,128},
+ pattern=LinePattern.None,
+ fillPattern=FillPattern.Solid,
+ extent={{0.0,0.0},{60.0,60.0}}),
+ Ellipse(
+ origin={10.0,10.0},
+ pattern=LinePattern.None,
+ fillPattern=FillPattern.Solid,
+ extent={{0.0,-80.0},{60.0,-20.0}}),
+ Ellipse(
+ origin={10.0,10.0},
+ fillColor={76,76,76},
+ pattern=LinePattern.None,
+ fillPattern=FillPattern.Solid,
+ extent={{-80.0,-80.0},{-20.0,-20.0}}),
+ Rectangle(
+ lineColor={128,128,128},
+ extent={{-100.0,-100.0},{100.0,100.0}},
+ radius=25.0)}));
+end Subsequences;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Generic/Subsequences/package.order b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Generic/Subsequences/package.order
new file mode 100644
index 00000000000..d1a998767ef
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Generic/Subsequences/package.order
@@ -0,0 +1,2 @@
+HWIsoVal
+Validation
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Generic/Validation/PlantDisable.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Generic/Validation/PlantDisable.mo
new file mode 100644
index 00000000000..adcf1a3ebb4
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Generic/Validation/PlantDisable.mo
@@ -0,0 +1,240 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Generic.Validation;
+model PlantDisable
+ "Validation model for PlantDisable sequence"
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Generic.PlantDisable
+ plaDis(
+ final have_priOnl=true,
+ final have_heaPriPum=true,
+ final nBoi=2,
+ final chaHotWatIsoRat=1/60,
+ final delBoiDis=180)
+ "Plant disable for primary-only plants with headered pumps"
+ annotation (Placement(transformation(extent={{10,80},{30,100}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Generic.PlantDisable
+ plaDis1(
+ final have_priOnl=false,
+ final have_heaPriPum=true,
+ final nBoi=2,
+ final chaHotWatIsoRat=1/60,
+ final delBoiDis=180)
+ "Plant disable for primary-secondary plants with headered pumps"
+ annotation (Placement(transformation(extent={{10,-10},{30,10}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Generic.PlantDisable
+ plaDis2(
+ final have_priOnl=false,
+ final have_heaPriPum=false,
+ final nBoi=2,
+ final chaHotWatIsoRat=1/60,
+ final delBoiDis=180)
+ "Plant disable for primary-secondary plants with dedicated pumps"
+ annotation (Placement(transformation(extent={{10,-110},{30,-90}})));
+
+ Buildings.Controls.OBC.CDL.Logical.TrueFalseHold truFalHol(
+ final trueHoldDuration=10,
+ final falseHoldDuration=0)
+ "Hold rising edge signal for visualization"
+ annotation (Placement(transformation(extent={{40,60},{60,80}})));
+
+ Buildings.Controls.OBC.CDL.Logical.TrueFalseHold truFalHol1(
+ final trueHoldDuration=10,
+ final falseHoldDuration=0)
+ "Hold rising edge signal for visualization"
+ annotation (Placement(transformation(extent={{40,-30},{60,-10}})));
+
+ Buildings.Controls.OBC.CDL.Logical.TrueFalseHold truFalHol2(
+ final trueHoldDuration=10,
+ final falseHoldDuration=0)
+ "Hold rising edge signal for visualization"
+ annotation (Placement(transformation(extent={{40,-130},{60,-110}})));
+
+protected
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant con2(
+ final k=true)
+ "Constant Boolean source"
+ annotation (Placement(transformation(extent={{-50,-20},{-30,0}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant con[2](
+ final k={false,true})
+ "Boiler status before plant disable"
+ annotation (Placement(transformation(extent={{-90,0},{-70,20}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Pulse booPul(
+ final width=0.1,
+ final period=900,
+ final shift=1)
+ "Boolean pulse"
+ annotation (Placement(transformation(extent={{-90,110},{-70,130}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Edge edg
+ "Rising edge detector"
+ annotation (Placement(transformation(extent={{-60,90},{-40,110}})));
+
+ Buildings.Controls.OBC.CDL.Logical.FallingEdge falEdg
+ "Falling edge detector"
+ annotation (Placement(transformation(extent={{-60,60},{-40,80}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Or or2
+ "Logical Or"
+ annotation (Placement(transformation(extent={{-28,80},{-8,100}})));
+
+ Buildings.Controls.OBC.CDL.Discrete.UnitDelay uniDel[2](
+ final samplePeriod=fill(1, 2),
+ final y_start={0,1})
+ "Unit delay for valve position"
+ annotation (Placement(transformation(extent={{-90,-30},{-70,-10}})));
+
+ Buildings.Controls.OBC.CDL.Discrete.UnitDelay uniDel1[2](
+ final samplePeriod=fill(1, 2),
+ final y_start={0,1})
+ "Unit delay for valve position"
+ annotation (Placement(transformation(extent={{-90,70},{-70,90}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant con1[2](
+ final k={0,1})
+ "Valve position when plant is enabled"
+ annotation (Placement(transformation(extent={{-90,-60},{-70,-40}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Switch swi[2]
+ "Real switch"
+ annotation (Placement(transformation(extent={{-50,-60},{-30,-40}})));
+
+ Buildings.Controls.OBC.CDL.Routing.BooleanScalarReplicator booRep(
+ final nout=2)
+ "Boolean replicator"
+ annotation (Placement(transformation(extent={{-90,40},{-70,60}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Switch swi1[2]
+ "Real switch"
+ annotation (Placement(transformation(extent={{-30,40},{-10,60}})));
+
+equation
+ connect(con.y, plaDis.uBoi) annotation (Line(points={{-68,10},{0,10},{0,94},{
+ 8,94}}, color={255,0,255}));
+
+ connect(con.y, plaDis1.uBoi) annotation (Line(points={{-68,10},{0,10},{0,4},{
+ 8,4}}, color={255,0,255}));
+
+ connect(con.y, plaDis2.uBoi) annotation (Line(points={{-68,10},{0,10},{0,-96},
+ {8,-96}}, color={255,0,255}));
+
+ connect(booPul.y, plaDis.uPla) annotation (Line(points={{-68,120},{6,120},{6,
+ 98},{8,98}}, color={255,0,255}));
+
+ connect(booPul.y, plaDis1.uPla) annotation (Line(points={{-68,120},{6,120},{6,
+ 8},{8,8}}, color={255,0,255}));
+
+ connect(booPul.y, plaDis2.uPla) annotation (Line(points={{-68,120},{6,120},{6,
+ -92},{8,-92}}, color={255,0,255}));
+
+ connect(plaDis.yStaChaPro, truFalHol.u) annotation (Line(points={{32,84},{36,84},
+ {36,70},{38,70}}, color={255,0,255}));
+
+ connect(plaDis1.yStaChaPro, truFalHol1.u) annotation (Line(points={{32,-6},{36,
+ -6},{36,-20},{38,-20}}, color={255,0,255}));
+
+ connect(plaDis2.yStaChaPro, truFalHol2.u) annotation (Line(points={{32,-106},{
+ 36,-106},{36,-120},{38,-120}},
+ color={255,0,255}));
+
+ connect(booPul.y, edg.u) annotation (Line(points={{-68,120},{-64,120},{-64,
+ 100},{-62,100}},
+ color={255,0,255}));
+
+ connect(booPul.y, falEdg.u) annotation (Line(points={{-68,120},{-64,120},{-64,
+ 70},{-62,70}},
+ color={255,0,255}));
+
+ connect(falEdg.y, or2.u2) annotation (Line(points={{-38,70},{-36,70},{-36,82},
+ {-30,82}}, color={255,0,255}));
+
+ connect(edg.y, or2.u1) annotation (Line(points={{-38,100},{-36,100},{-36,90},
+ {-30,90}},
+ color={255,0,255}));
+
+ connect(or2.y, plaDis.uStaChaProEnd) annotation (Line(points={{-6,90},{-4,90},
+ {-4,82},{8,82}}, color={255,0,255}));
+
+ connect(or2.y, plaDis1.uStaChaProEnd) annotation (Line(points={{-6,90},{-4,90},
+ {-4,-8},{8,-8}}, color={255,0,255}));
+
+ connect(or2.y, plaDis2.uStaChaProEnd) annotation (Line(points={{-6,90},{-4,90},
+ {-4,-108},{8,-108}}, color={255,0,255}));
+
+ connect(plaDis.yHotWatIsoVal, uniDel1.u) annotation (Line(points={{32,88},{36,
+ 88},{36,136},{-96,136},{-96,80},{-92,80}},
+ color={0,0,127}));
+
+ connect(plaDis1.yHotWatIsoVal, uniDel.u) annotation (Line(points={{32,-2},{34,
+ -2},{34,28},{-96,28},{-96,-20},{-92,-20}}, color={0,0,127}));
+
+ connect(con1.y, swi.u1) annotation (Line(points={{-68,-50},{-60,-50},{-60,-42},
+ {-52,-42}}, color={0,0,127}));
+
+ connect(uniDel.y, swi.u3) annotation (Line(points={{-68,-20},{-64,-20},{-64,
+ -58},{-52,-58}}, color={0,0,127}));
+
+ connect(booPul.y, booRep.u) annotation (Line(points={{-68,120},{-64,120},{-64,
+ 68},{-96,68},{-96,50},{-92,50}}, color={255,0,255}));
+
+ connect(booRep.y, swi.u2) annotation (Line(points={{-68,50},{-56,50},{-56,-50},
+ {-52,-50}}, color={255,0,255}));
+
+ connect(swi.y, plaDis1.uHotWatIsoVal) annotation (Line(points={{-28,-50},{-12,
+ -50},{-12,0},{8,0}}, color={0,0,127}));
+
+ connect(uniDel1.y, swi1.u3) annotation (Line(points={{-68,80},{-66,80},{-66,
+ 42},{-32,42}}, color={0,0,127}));
+
+ connect(swi1.y, plaDis.uHotWatIsoVal)
+ annotation (Line(points={{-8,50},{2,50},{2,90},{8,90}}, color={0,0,127}));
+
+ connect(con1.y, swi1.u1) annotation (Line(points={{-68,-50},{-60,-50},{-60,58},
+ {-32,58}}, color={0,0,127}));
+
+ connect(booRep.y, swi1.u2)
+ annotation (Line(points={{-68,50},{-32,50}}, color={255,0,255}));
+
+ connect(con2.y, plaDis1.uPumChaPro) annotation (Line(points={{-28,-10},{-20,-10},
+ {-20,-4},{8,-4}}, color={255,0,255}));
+ connect(con2.y, plaDis2.uPumChaPro) annotation (Line(points={{-28,-10},{-20,-10},
+ {-20,-104},{8,-104}}, color={255,0,255}));
+ annotation (
+ Icon(coordinateSystem(preserveAspectRatio=false, extent={{-100,-100},{100,
+ 100}}),
+ graphics={Ellipse(
+ lineColor = {75,138,73},
+ fillColor={255,255,255},
+ fillPattern = FillPattern.Solid,
+ extent={{-100,-100},{100,100}}),
+ Polygon(
+ lineColor = {0,0,255},
+ fillColor = {75,138,73},
+ pattern = LinePattern.None,
+ fillPattern = FillPattern.Solid,
+ points={{-36,60},{64,0},{-36,-60},{-36,60}})}),
+ Diagram(coordinateSystem(
+ preserveAspectRatio=false, extent={{-100,-140},{100,140}})),
+ experiment(
+ StopTime=900,
+ Interval=1,
+ Tolerance=1e-06),
+ __Dymola_Commands(file="./Resources/Scripts/Dymola/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Generic/Validation/PlantDisable.mos"
+ "Simulate and plot"),
+ Documentation(info="
+
+ This example validates
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Generic.PlantDisable.
+
+ ", revisions="
+
+ -
+ May 7, 2020, by Karthik Devaprasad:
+ First implementation.
+
+
+ "));
+end PlantDisable;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Generic/Validation/PlantEnable.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Generic/Validation/PlantEnable.mo
new file mode 100644
index 00000000000..3f64d5b9f4b
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Generic/Validation/PlantEnable.mo
@@ -0,0 +1,191 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Generic.Validation;
+model PlantEnable "Validation model for PlantEnable sequence"
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Generic.PlantEnable
+ plaEna(
+ final nIgnReq=2,
+ final plaOffThrTim=15*60,
+ final plaOnThrTim=15*60,
+ final schTab=[0,0; 1,1; 18,1; 24,1])
+ "Testing time-variance for all inputs"
+ annotation (Placement(transformation(extent={{-20,50},{0,70}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Generic.PlantEnable
+ plaEna1(
+ final nIgnReq=2)
+ "Testing time-varying number of requests"
+ annotation (Placement(transformation(extent={{-20,-50},{0,-30}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Generic.PlantEnable
+ plaEna2(
+ final nIgnReq=2)
+ "Testing time-varying outdoor air temperature"
+ annotation (Placement(transformation(extent={{80,50},{100,70}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Generic.PlantEnable
+ plaEna3(
+ final nIgnReq=2,
+ final schTab=[0,0; 1,1; 18,1; 24,1])
+ "Testing time-varying boiler plant enable schedule"
+ annotation (Placement(transformation(extent={{80,-50},{100,-30}})));
+
+protected
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Sine sin(
+ final amplitude=2,
+ final freqHz=1/(6*60),
+ final offset=2,
+ final startTime=1)
+ "Input for number of requests"
+ annotation (Placement(transformation(extent={{-90,70},{-70,90}})));
+
+ Buildings.Controls.OBC.CDL.Conversions.RealToInteger reaToInt
+ "Rounding real input to nearest integer"
+ annotation (Placement(transformation(extent={{-60,70},{-40,90}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Sine sin1(
+ final amplitude=2/1.8,
+ final freqHz=1/700,
+ final phase=3.1415926535898,
+ final offset=300,
+ final startTime=1)
+ "Input for outdoor air temperature"
+ annotation (Placement(transformation(extent={{-90,30},{-70,50}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Sine sin2(
+ final amplitude=2,
+ final freqHz=1/(6*60),
+ final offset=2,
+ final startTime=1)
+ "Input for number of requests"
+ annotation (Placement(transformation(extent={{-90,-30},{-70,-10}})));
+
+ Buildings.Controls.OBC.CDL.Conversions.RealToInteger reaToInt1
+ "Rounding real input to nearest integer"
+ annotation (Placement(transformation(extent={{-60,-30},{-40,-10}})));
+
+ Buildings.Controls.OBC.CDL.Conversions.RealToInteger reaToInt2
+ "Rounding real input to nearest integer"
+ annotation (Placement(transformation(extent={{40,70},{60,90}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Sine sin5(
+ final amplitude=2/1.8,
+ final freqHz=1/700,
+ final phase=3.1415926535898,
+ final offset=300,
+ final startTime=1)
+ "Input for outdoor air temperature"
+ annotation (Placement(transformation(extent={{10,30},{30,50}})));
+
+ Buildings.Controls.OBC.CDL.Conversions.RealToInteger reaToInt3
+ "Rounding real input to nearest integer"
+ annotation (Placement(transformation(extent={{40,-30},{60,-10}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant con(
+ final k=3)
+ "Input for number of requests"
+ annotation (Placement(transformation(extent={{10,70},{30,90}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant con1(
+ final k=297)
+ "Input for outdoor air temperature"
+ annotation (Placement(transformation(extent={{-90,-70},{-70,-50}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant con2(
+ final k=3)
+ "Input for number of requests"
+ annotation (Placement(transformation(extent={{10,-30},{30,-10}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant con3(
+ final k=297)
+ "Input for outdoor air temperature"
+ annotation (Placement(transformation(extent={{10,-70},{30,-50}})));
+
+equation
+ connect(sin.y, reaToInt.u)
+ annotation (Line(points={{-68,80},{-62,80}},
+ color={0,0,127}));
+ connect(sin2.y, reaToInt1.u)
+ annotation (Line(points={{-68,-20},{-62,-20}},
+ color={0,0,127}));
+ connect(con.y, reaToInt2.u)
+ annotation (Line(points={{32,80},{38,80}},
+ color={0,0,127}));
+ connect(reaToInt3.u, con2.y)
+ annotation (Line(points={{38,-20},{32,-20}},
+ color={0,0,127}));
+ connect(plaEna1.supResReq, reaToInt1.y)
+ annotation (Line(points={{-22,-36},{-30,-36},{-30,-20},{-38,-20}},
+ color={255,127,0}));
+ connect(plaEna2.supResReq, reaToInt2.y)
+ annotation (Line(points={{78,64},{70,64},{70,80},{62,80}},
+ color={255,127,0}));
+ connect(plaEna2.TOut, sin5.y)
+ annotation (Line(points={{78,56},{70,56},{70,40},{32,40}},
+ color={0,0,127}));
+ connect(plaEna3.supResReq, reaToInt3.y)
+ annotation (Line(points={{78,-36},{70,-36},{70,-20},{62,-20}},
+ color={255,127,0}));
+ connect(plaEna3.TOut, con3.y)
+ annotation (Line(points={{78,-44},{70,-44},{70,-60},{32,-60}},
+ color={0,0,127}));
+ connect(reaToInt.y, plaEna.supResReq)
+ annotation (Line(points={{-38,80},{-30,80},{-30,64},{-22,64}},
+ color={255,127,0}));
+ connect(sin1.y, plaEna.TOut)
+ annotation (Line(points={{-68,40},{-30,40},{-30,56},{-22,56}},
+ color={0,0,127}));
+ connect(con1.y, plaEna1.TOut)
+ annotation (Line(points={{-68,-60},{-30,-60},{-30,-44},{-22,-44}},
+ color={0,0,127}));
+ annotation (
+ Icon(coordinateSystem(preserveAspectRatio=false),
+ graphics={Ellipse(
+ lineColor = {75,138,73},
+ fillColor={255,255,255},
+ fillPattern = FillPattern.Solid,
+ extent={{-100,-100},{100,100}}),
+ Polygon(
+ lineColor = {0,0,255},
+ fillColor = {75,138,73},
+ pattern = LinePattern.None,
+ fillPattern = FillPattern.Solid,
+ points={{-36,60},{64,0},{-36,-60},{-36,60}})}),
+ Diagram(coordinateSystem(
+ preserveAspectRatio=false),
+ graphics={Text(
+ extent={{-72,26},{-24,18}},
+ textColor={28,108,200},
+ textString="Combination of all inputs"),
+ Text(
+ extent={{32,26},{80,18}},
+ textColor={28,108,200},
+ textString="Changing outdoor temperature"),
+ Text(
+ extent={{-80,-74},{-16,-82}},
+ textColor={28,108,200},
+ textString="Changing number of hot-water requests"),
+ Text(
+ extent={{26,-74},{74,-82}},
+ textColor={28,108,200},
+ textString="Changing boiler-enable schedule")}),
+ experiment(
+ StopTime=7200,
+ Interval=1,
+ Tolerance=1e-06),
+ __Dymola_Commands(file="./Resources/Scripts/Dymola/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Generic/Validation/PlantEnable.mos"
+ "Simulate and plot"),
+ Documentation(info="
+
+ This example validates
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Generic.PlantEnable.
+
+ ", revisions="
+
+ -
+ May 7, 2020, by Karthik Devaprasad:
+ First implementation.
+
+
+ "));
+end PlantEnable;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Generic/Validation/RotationController.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Generic/Validation/RotationController.mo
new file mode 100644
index 00000000000..a4047c4cdda
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Generic/Validation/RotationController.mo
@@ -0,0 +1,117 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Generic.Validation;
+model RotationController
+ "Validation model for RotationController sequence"
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Generic.RotationController
+ rotCon(
+ final lag=true,
+ final minLim=false)
+ "Scenario-1: Only lead device being enabled and disabled"
+ annotation (Placement(transformation(extent={{-40,40},{-20,60}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Generic.RotationController
+ rotCon1(
+ final lag=true,
+ final minLim=false)
+ "Scenario-2: Lead device continuously enabled, lag device enabled and disabled"
+ annotation (Placement(transformation(extent={{-40,-40},{-20,-20}})));
+
+protected
+ Buildings.Controls.OBC.CDL.Logical.TrueDelay truDel[2](final delayTime=fill(
+ 15, 2))
+ "Delay representing component being enabled"
+ annotation (Placement(transformation(extent={{0,40},{20,60}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Pre pre[2]
+ "Logical Pre block"
+ annotation (Placement(transformation(extent={{40,40},{60,60}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant con(
+ final k=false)
+ "Constant Boolean source"
+ annotation (Placement(transformation(extent={{-90,50},{-70,70}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Pulse booPul(
+ final period=120,
+ final shift=5)
+ "Boolean pulse generator"
+ annotation (Placement(transformation(extent={{-90,20},{-70,40}})));
+
+ Buildings.Controls.OBC.CDL.Logical.TrueDelay truDel1[2](final delayTime=fill(
+ 15, 2))
+ "Delay representing component being enabled"
+ annotation (Placement(transformation(extent={{0,-40},{20,-20}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Pre pre1[2]
+ "Logical Pre block"
+ annotation (Placement(transformation(extent={{40,-40},{60,-20}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Pulse booPul1(
+ final period=120,
+ final shift=5)
+ "Boolean pulse generator"
+ annotation (Placement(transformation(extent={{-90,-60},{-70,-40}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Pulse booPul2(
+ final period=1200,
+ final shift=3)
+ "Boolean pulse generator"
+ annotation (Placement(transformation(extent={{-90,-30},{-70,-10}})));
+
+equation
+ connect(rotCon.yDevStaSet, truDel.u) annotation (Line(points={{-18,55},{-14,55},
+ {-14,50},{-2,50}}, color={255,0,255}));
+ connect(truDel.y, pre.u)
+ annotation (Line(points={{22,50},{38,50}}, color={255,0,255}));
+ connect(pre.y, rotCon.uDevSta) annotation (Line(points={{62,50},{70,50},{70,20},
+ {-60,20},{-60,45},{-42,45}}, color={255,0,255}));
+ connect(rotCon1.yDevStaSet, truDel1.u) annotation (Line(points={{-18,-25},{-14,
+ -25},{-14,-30},{-2,-30}}, color={255,0,255}));
+ connect(truDel1.y, pre1.u)
+ annotation (Line(points={{22,-30},{38,-30}}, color={255,0,255}));
+ connect(pre1.y, rotCon1.uDevSta) annotation (Line(points={{62,-30},{70,-30},{70,
+ -60},{-60,-60},{-60,-35},{-42,-35}}, color={255,0,255}));
+ connect(booPul1.y, rotCon1.uDevStaSet[2]) annotation (Line(points={{-68,-50},{
+ -64,-50},{-64,-25},{-42,-25}}, color={255,0,255}));
+ connect(booPul.y, rotCon.uDevStaSet[1]) annotation (Line(points={{-68,30},{-64,
+ 30},{-64,55},{-42,55}}, color={255,0,255}));
+ connect(con.y, rotCon.uDevStaSet[2]) annotation (Line(points={{-68,60},{-60,60},
+ {-60,55},{-42,55}}, color={255,0,255}));
+ connect(booPul2.y, rotCon1.uDevStaSet[1]) annotation (Line(points={{-68,-20},{
+ -50,-20},{-50,-25},{-42,-25}}, color={255,0,255}));
+ annotation (
+ Icon(coordinateSystem(preserveAspectRatio=false, extent={{-100,-100},{100,120}}),
+ graphics={Ellipse(
+ lineColor = {75,138,73},
+ fillColor={255,255,255},
+ fillPattern = FillPattern.Solid,
+ extent={{-100,-100},{100,100}}),
+ Polygon(
+ lineColor = {0,0,255},
+ fillColor = {75,138,73},
+ pattern = LinePattern.None,
+ fillPattern = FillPattern.Solid,
+ points={{-36,60},{64,0},{-36,-60},{-36,60}})}),
+ Diagram(coordinateSystem(
+ preserveAspectRatio=false, extent={{-100,-100},{100,100}})),
+ experiment(
+ StopTime=600,
+ Interval=1,
+ Tolerance=1e-06),
+ __Dymola_Commands(file="./Resources/Scripts/Dymola/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Generic/Validation/RotationController.mos"
+ "Simulate and plot"),
+ Documentation(info="
+
+ This example validates
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Generic.RotationController.
+
+ ", revisions="
+
+ -
+ April 12, 2021, by Karthik Devaprasad:
+ First implementation.
+
+
+ "));
+end RotationController;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Generic/Validation/package.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Generic/Validation/package.mo
new file mode 100644
index 00000000000..7b7d3b96857
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Generic/Validation/package.mo
@@ -0,0 +1,37 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Generic;
+package Validation "Collection of validation models"
+
+annotation (Icon(graphics={
+ Rectangle(
+ lineColor={200,200,200},
+ fillColor={248,248,248},
+ fillPattern=FillPattern.HorizontalCylinder,
+ extent={{-100,-100},{100,100}},
+ radius=25.0),
+ Rectangle(
+ lineColor={128,128,128},
+ extent={{-100,-100},{100,100}},
+ radius=25.0),
+ Polygon(
+ origin={8,14},
+ lineColor={78,138,73},
+ fillColor={78,138,73},
+ pattern=LinePattern.None,
+ fillPattern=FillPattern.Solid,
+ points={{-58.0,46.0},{42.0,-14.0},{-58.0,-74.0},{-58.0,46.0}})}),
+ Documentation(info="
+
+ This package contains validation models for the classes in
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Generic.
+
+
+ Note that most validation models contain simple input data
+ which may not be realistic, but for which the correct
+ output can be obtained through an analytic solution.
+ The examples plot various outputs, which have been verified against these
+ solutions. These model outputs are stored as reference data and
+ used for continuous validation whenever models in the library change.
+
+ "));
+end Validation;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Generic/Validation/package.order b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Generic/Validation/package.order
new file mode 100644
index 00000000000..cbfd9cb3843
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Generic/Validation/package.order
@@ -0,0 +1,3 @@
+PlantDisable
+PlantEnable
+RotationController
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Generic/package.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Generic/package.mo
new file mode 100644
index 00000000000..9f5fb23b9c0
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Generic/package.mo
@@ -0,0 +1,42 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant;
+package Generic "Generic control sequences"
+ annotation(Icon(graphics={
+ Rectangle(
+ lineColor={200,200,200},
+ fillColor={248,248,248},
+ fillPattern=FillPattern.HorizontalCylinder,
+ extent={{-100,-100},{100,100}},
+ radius=25.0),
+ Rectangle(
+ lineColor={128,128,128},
+ extent={{-100,-100},{100,100}},
+ radius=25.0),
+ Ellipse(
+ origin={10,10},
+ fillColor={76,76,76},
+ pattern=LinePattern.None,
+ fillPattern=FillPattern.Solid,
+ extent={{-80.0,-80.0},{-20.0,-20.0}}),
+ Ellipse(
+ origin={10,10},
+ pattern=LinePattern.None,
+ fillPattern=FillPattern.Solid,
+ extent={{0.0,-80.0},{60.0,-20.0}}),
+ Ellipse(
+ origin={10,10},
+ fillColor={128,128,128},
+ pattern=LinePattern.None,
+ fillPattern=FillPattern.Solid,
+ extent={{0.0,0.0},{60.0,60.0}}),
+ Ellipse(
+ origin={10,10},
+ lineColor={128,128,128},
+ fillColor={255,255,255},
+ fillPattern=FillPattern.Solid,
+ extent={{-80.0,0.0},{-20.0,60.0}})}),
+ Documentation(info="
+
+ This package contains generic boiler plant control sequences.
+
+ "));
+end Generic;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Generic/package.order b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Generic/package.order
new file mode 100644
index 00000000000..a2175baf07d
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Generic/package.order
@@ -0,0 +1,6 @@
+PlantDisable
+PlantEnable
+RotationController
+EquipmentRotation
+Subsequences
+Validation
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Pumps/Generic/ChangeStatus.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Pumps/Generic/ChangeStatus.mo
new file mode 100644
index 00000000000..6b39b6f0096
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Pumps/Generic/ChangeStatus.mo
@@ -0,0 +1,210 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Pumps.Generic;
+block ChangeStatus "Sequence to change pump status"
+
+ parameter Integer nPum = 2
+ "Total number of pumps";
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uHotWatPum[nPum]
+ "Hot water pump status"
+ annotation (Placement(transformation(extent={{-140,-20},{-100,20}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uNexLagPumSta
+ "Status of next lag pump"
+ annotation (Placement(transformation(extent={{-140,60},{-100,100}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uLasLagPumSta
+ "Status of last lag pump"
+ annotation (Placement(transformation(extent={{-140,30},{-100,70}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.IntegerInput uNexLagPum
+ "Index of next lag pump"
+ annotation (Placement(transformation(extent={{-140,-60},{-100,-20}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.IntegerInput uLasLagPum
+ "Index of last lag pump"
+ annotation (Placement(transformation(extent={{-140,-100},{-100,-60}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanOutput yHotWatPum[nPum]
+ "Hot water pump status"
+ annotation (Placement(transformation(extent={{100,-20},{140,20}})));
+
+protected
+ parameter Integer pumInd[nPum]={i for i in 1:nPum}
+ "Pump index, {1,2,...,n}";
+
+ Buildings.Controls.OBC.CDL.Routing.BooleanScalarReplicator booRep1(
+ final nout=nPum)
+ "Replicate boolean input"
+ annotation (Placement(transformation(extent={{-80,70},{-60,90}})));
+
+ Buildings.Controls.OBC.CDL.Routing.BooleanScalarReplicator booRep2(
+ final nout=nPum)
+ "Replicate boolean input"
+ annotation (Placement(transformation(extent={{-80,40},{-60,60}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Equal intEqu2[nPum]
+ "Check next lag pump"
+ annotation (Placement(transformation(extent={{-60,-50},{-40,-30}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Equal intEqu3[nPum]
+ "Check last lag pump"
+ annotation (Placement(transformation(extent={{-60,-90},{-40,-70}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Switch nexLagPumSta[nPum]
+ "Next lag pump status"
+ annotation (Placement(transformation(extent={{-20,-50},{0,-30}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Switch lasLagPumSta[nPum]
+ "Last lag pump status"
+ annotation (Placement(transformation(extent={{-20,-90},{0,-70}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Or enaPum[nPum]
+ "Hot water pump status"
+ annotation (Placement(transformation(extent={{10,-50},{30,-30}})));
+
+ Buildings.Controls.OBC.CDL.Logical.And pumSta[nPum]
+ "Hot water pump status"
+ annotation (Placement(transformation(extent={{20,-90},{40,-70}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Switch remPum[nPum]
+ "Remove pump"
+ annotation (Placement(transformation(extent={{50,-70},{70,-50}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Switch addPum[nPum]
+ "Add pump"
+ annotation (Placement(transformation(extent={{60,-10},{80,10}})));
+
+ Buildings.Controls.OBC.CDL.Routing.IntegerScalarReplicator intRep(
+ final nout=nPum)
+ "Integer replicator"
+ annotation (Placement(transformation(extent={{-90,-50},{-70,-30}})));
+
+ Buildings.Controls.OBC.CDL.Routing.IntegerScalarReplicator intRep1(
+ final nout=nPum)
+ "Integer replicator"
+ annotation (Placement(transformation(extent={{-90,-90},{-70,-70}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant conInt[nPum](
+ final k=pumInd)
+ "Pump index"
+ annotation (Placement(transformation(extent={{-90,10},{-70,30}})));
+
+equation
+ connect(nexLagPumSta.u2, intEqu2.y)
+ annotation (Line(points={{-22,-40},{-38,-40}}, color={255,0,255}));
+
+ connect(intEqu3.y, lasLagPumSta.u2)
+ annotation (Line(points={{-38,-80},{-22,-80}}, color={255,0,255}));
+
+ connect(uNexLagPumSta, booRep1.u)
+ annotation (Line(points={{-120,80},{-82,80}}, color={255,0,255}));
+
+ connect(uLasLagPumSta, booRep2.u)
+ annotation (Line(points={{-120,50},{-82,50}}, color={255,0,255}));
+
+ connect(intRep.y, intEqu2.u1)
+ annotation (Line(points={{-68,-40},{-62,-40}}, color={255,127,0}));
+
+ connect(intRep1.y, intEqu3.u1)
+ annotation (Line(points={{-68,-80},{-62,-80}}, color={255,127,0}));
+
+ connect(uNexLagPum, intRep.u)
+ annotation (Line(points={{-120,-40},{-92,-40}}, color={255,127,0}));
+
+ connect(uLasLagPum, intRep1.u)
+ annotation (Line(points={{-120,-80},{-92,-80}}, color={255,127,0}));
+
+ connect(booRep2.y, lasLagPumSta.u1) annotation (Line(points={{-58,50},{-36,50},
+ {-36,-72},{-22,-72}}, color={255,0,255}));
+
+ connect(booRep1.y, nexLagPumSta.u1) annotation (Line(points={{-58,80},{-24,80},
+ {-24,-32},{-22,-32}}, color={255,0,255}));
+
+ connect(uHotWatPum, nexLagPumSta.u3) annotation (Line(points={{-120,0},{-30,0},
+ {-30,-48},{-22,-48}}, color={255,0,255}));
+
+ connect(uHotWatPum, lasLagPumSta.u3) annotation (Line(points={{-120,0},{-30,0},
+ {-30,-88},{-22,-88}}, color={255,0,255}));
+
+ connect(nexLagPumSta.y, enaPum.u1)
+ annotation (Line(points={{2,-40},{8,-40}}, color={255,0,255}));
+
+ connect(uHotWatPum, enaPum.u2) annotation (Line(points={{-120,0},{4,0},{4,-48},
+ {8,-48}}, color={255,0,255}));
+
+ connect(uHotWatPum, remPum.u1) annotation (Line(points={{-120,0},{4,0},{4,-52},
+ {48,-52}}, color={255,0,255}));
+
+ connect(enaPum.y, addPum.u1) annotation (Line(points={{32,-40},{40,-40},{40,8},
+ {58,8}}, color={255,0,255}));
+
+ connect(lasLagPumSta.y, pumSta.u1)
+ annotation (Line(points={{2,-80},{18,-80}}, color={255,0,255}));
+
+ connect(enaPum.y, pumSta.u2) annotation (Line(points={{32,-40},{40,-40},{40,
+ -56},{10,-56},{10,-88},{18,-88}},
+ color={255,0,255}));
+
+ connect(pumSta.y, remPum.u3) annotation (Line(points={{42,-80},{46,-80},{46,-68},
+ {48,-68}}, color={255,0,255}));
+
+ connect(booRep2.y, remPum.u2) annotation (Line(points={{-58,50},{-36,50},{-36,
+ -60},{48,-60}}, color={255,0,255}));
+
+ connect(booRep1.y, addPum.u2) annotation (Line(points={{-58,80},{50,80},{50,0},
+ {58,0}}, color={255,0,255}));
+
+ connect(remPum.y, addPum.u3) annotation (Line(points={{72,-60},{80,-60},{80,-40},
+ {50,-40},{50,-8},{58,-8}}, color={255,0,255}));
+
+ connect(addPum.y, yHotWatPum) annotation (Line(points={{82,0},{120,0}},
+ color={255,0,255}));
+
+ connect(conInt.y, intEqu2.u2) annotation (Line(points={{-68,20},{-66,20},{-66,
+ -48},{-62,-48}}, color={255,127,0}));
+
+ connect(conInt.y, intEqu3.u2) annotation (Line(points={{-68,20},{-66,20},{-66,
+ -88},{-62,-88}}, color={255,127,0}));
+
+annotation (
+ defaultComponentName="chaSta",
+ Icon(coordinateSystem(preserveAspectRatio=false,
+ extent={{-100,-100},{120,100}}),
+ graphics={
+ Rectangle(
+ extent={{-100,-100},{100,100}},
+ lineColor={0,0,127},
+ fillColor={255,255,255},
+ fillPattern=FillPattern.Solid),
+ Text(
+ extent={{-100,150},{100,110}},
+ textColor={0,0,255},
+ textString="%name")}),
+ Diagram(coordinateSystem(preserveAspectRatio=false, extent={{-100,-100},{100,100}})),
+Documentation(info="
+
+Block that changes the status of pumps. This sequence is not directly specified
+in RP-1711. It provides a side calculation pertaining to generalization of the staging
+sequences for any number of pumps and stages provided by the user.
+
+
+-
+When the block receives the index of next lag pump to be enabled
uNexLagPum
+and a true
pulse on the next lag pump status uNexLagPumSta
,
+it changes the pump status yHotWatPum[uNexLagPum]
to true
.
+
+-
+When the block receives the index of last lag pump to be disabled
uLasLagPum
+and a false
pulse on the last lag pump status uLasLagPumSta
, it changes
+the pump status yHotWatPum[uLasLagPum]
to false
.
+
+
+", revisions="
+
+-
+August 19, 2020, by Karthik Devaprasad:
+First implementation.
+
+
+"));
+end ChangeStatus;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Pumps/Generic/EnableLag_flowrate.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Pumps/Generic/EnableLag_flowrate.mo
new file mode 100644
index 00000000000..5b71e3d685e
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Pumps/Generic/EnableLag_flowrate.mo
@@ -0,0 +1,287 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Pumps.Generic;
+block EnableLag_flowrate
+ "Sequences for enabling and disabling lag pumps using measured volue flow-rate"
+
+ parameter Integer nPum = 2
+ "Total number of pumps";
+
+ parameter Integer nPum_nominal(
+ final max = nPum,
+ final min = 1) = nPum
+ "Total number of pumps that operate at design conditions"
+ annotation (Dialog(group="Nominal conditions"));
+
+ parameter Real timPer(
+ final unit="s",
+ displayUnit="s",
+ final quantity="time") = 600
+ "Delay time period for enabling and disabling lag pumps";
+
+ parameter Real staCon(
+ final unit="1",
+ displayUnit="1") = -0.03
+ "Constant used in the staging equation"
+ annotation (Dialog(tab="Advanced"));
+
+ parameter Real relFloHys(
+ final unit="1",
+ displayUnit="1") = 0.01
+ "Constant value used in hysteresis for checking relative flow rate"
+ annotation (Dialog(tab="Advanced"));
+
+ parameter Real VHotWat_flow_nominal(
+ final min=1e-6,
+ final unit="m3/s",
+ displayUnit="m3/s",
+ final quantity="VolumeFlowRate")=0.5
+ "Total plant design hot water flow rate"
+ annotation (Dialog(group="Nominal conditions"));
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uHotWatPum[nPum]
+ "Hot water pump status"
+ annotation (Placement(transformation(extent={{-180,-20},{-140,20}}),
+ iconTransformation(extent={{-140,-58},{-100,-18}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput VHotWat_flow(
+ final unit="m3/s",
+ displayUnit="m3/s",
+ final quantity="VolumeFlowRate")
+ "Measured hot water flow rate"
+ annotation (Placement(transformation(extent={{-180,60},{-140,100}}),
+ iconTransformation(extent={{-140,20},{-100,60}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanOutput yUp
+ "Next lag pump status"
+ annotation (Placement(transformation(extent={{140,20},{180,60}}),
+ iconTransformation(extent={{100,20},{140,60}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanOutput yDown
+ "Last lag pump status"
+ annotation (Placement(transformation(extent={{140,-100},{180,-60}}),
+ iconTransformation(extent={{100,-60},{140,-20}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Hysteresis hys(
+ final uLow=(-1)*relFloHys,
+ final uHigh=relFloHys)
+ "Check if condition for enabling next lag pump is satisfied"
+ annotation (Placement(transformation(extent={{-40,30},{-20,50}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Hysteresis hys1(
+ final uLow=(-1)*relFloHys,
+ final uHigh=relFloHys)
+ "Check if condition for disabling last lag pump is satisfied"
+ annotation (Placement(transformation(extent={{-40,-90},{-20,-70}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.MultiplyByParameter hotWatFloRat(
+ final k=1/VHotWat_flow_nominal)
+ "Boiler hot water flow ratio"
+ annotation (Placement(transformation(extent={{-120,70},{-100,90}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.AddParameter addPar2(
+ final p=staCon)
+ "Add parameter"
+ annotation (Placement(transformation(extent={{80,-50},{100,-30}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Timer tim(
+ final t=timPer)
+ "Count time"
+ annotation (Placement(transformation(extent={{40,30},{60,50}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Timer tim1(
+ final t=timPer)
+ "Count time"
+ annotation (Placement(transformation(extent={{40,-90},{60,-70}})));
+
+protected
+ Buildings.Controls.OBC.CDL.Continuous.MultiplyByParameter gai(
+ final k=1/nPum_nominal)
+ "Divide by nominal number of pumps"
+ annotation (Placement(transformation(extent={{40,-10},{60,10}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Not not3
+ "Logical Not"
+ annotation (Placement(transformation(extent={{100,-90},{120,-70}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.AddParameter addPar(
+ final p=staCon)
+ "Add parameter"
+ annotation (Placement(transformation(extent={{80,-10},{100,10}})));
+
+ Buildings.Controls.OBC.CDL.Conversions.BooleanToInteger booToInt[nPum]
+ "Convert boolean input to integer number"
+ annotation (Placement(transformation(extent={{-80,-10},{-60,10}})));
+
+ Buildings.Controls.OBC.CDL.Integers.MultiSum numOpePum(
+ final nin=nPum)
+ "Total number of operating pumps"
+ annotation (Placement(transformation(extent={{-40,-10},{-20,10}})));
+
+ Buildings.Controls.OBC.CDL.Conversions.IntegerToReal intToRea
+ "Convert Integer to Real"
+ annotation (Placement(transformation(extent={{0,-10},{20,10}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.AddParameter addPar1(
+ final p=-1)
+ "Add real inputs"
+ annotation (Placement(transformation(extent={{-80,-50},{-60,-30}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Subtract sub2
+ "Difference between current flowrate ratio and limit for staging up"
+ annotation (Placement(transformation(extent={{-80,30},{-60,50}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Subtract sub1
+ "Difference between current flowrate ratio and limit for staging down"
+ annotation (Placement(transformation(extent={{-80,-90},{-60,-70}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Change cha[nPum]
+ "Detect changes in pump status"
+ annotation (Placement(transformation(extent={{-120,120},{-100,140}})));
+
+ Buildings.Controls.OBC.CDL.Logical.MultiOr mulOr(
+ final nin=nPum)
+ "Multi Or"
+ annotation (Placement(transformation(extent={{-80,120},{-60,140}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Not not1
+ "Logical Not"
+ annotation (Placement(transformation(extent={{-40,120},{-20,140}})));
+
+ Buildings.Controls.OBC.CDL.Logical.And and2
+ "Restart timer whenever change in pump status is detected"
+ annotation (Placement(transformation(extent={{0,30},{20,50}})));
+
+ Buildings.Controls.OBC.CDL.Logical.And and1
+ "Restart timer whenever change in pump status is detected"
+ annotation (Placement(transformation(extent={{0,-90},{20,-70}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.MultiplyByParameter gai1(
+ final k=1/nPum_nominal)
+ "Divide by nominal number of pumps"
+ annotation (Placement(transformation(extent={{40,-50},{60,-30}})));
+
+equation
+ connect(VHotWat_flow,hotWatFloRat. u)
+ annotation (Line(points={{-160,80},{-122,80}}, color={0,0,127}));
+
+ connect(uHotWatPum,booToInt. u)
+ annotation (Line(points={{-160,0},{-82,0}}, color={255,0,255}));
+
+ connect(booToInt.y,numOpePum. u)
+ annotation (Line(points={{-58,0},{-42,0}},
+ color={255,127,0}));
+
+ connect(numOpePum.y,intToRea. u)
+ annotation (Line(points={{-18,0},{-2,0}}, color={255,127,0}));
+
+ connect(sub2.y,hys. u)
+ annotation (Line(points={{-58,40},{-42,40}}, color={0,0,127}));
+
+ connect(sub1.y,hys1. u)
+ annotation (Line(points={{-58,-80},{-42,-80}}, color={0,0,127}));
+
+ connect(addPar.y,sub2. u2)
+ annotation (Line(points={{102,0},{120,0},{120,20},{-90,20},{-90,34},{-82,34}},
+ color={0,0,127}));
+
+ connect(intToRea.y, addPar1.u)
+ annotation (Line(points={{22,0},{30,0},{30,-20},{-90,-20},{-90,-40},{-82,-40}},
+ color={0,0,127}));
+
+ connect(addPar2.y,sub1. u1)
+ annotation (Line(points={{102,-40},{120,-40},{120,-60},{-90,-60},{-90,-74},{
+ -82,-74}},
+ color={0,0,127}));
+
+ connect(hotWatFloRat.y,sub2. u1)
+ annotation (Line(points={{-98,80},{-90,80},{-90,46},{-82,46}}, color={0,0,127}));
+
+ connect(hotWatFloRat.y,sub1. u2)
+ annotation (Line(points={{-98,80},{-90,80},{-90,60},{-100,60},{-100,-86},
+ {-82,-86}}, color={0,0,127}));
+
+ connect(not3.y, yDown)
+ annotation (Line(points={{122,-80},{160,-80}}, color={255,0,255}));
+
+ connect(uHotWatPum, cha.u) annotation (Line(points={{-160,0},{-130,0},{-130,130},
+ {-122,130}}, color={255,0,255}));
+ connect(cha.y, mulOr.u[1:nPum]) annotation (Line(points={{-98,130},{-90,130},{-90,
+ 130},{-82,130}}, color={255,0,255}));
+ connect(tim.passed, yUp) annotation (Line(points={{62,32},{80,32},{80,40},{160,
+ 40}}, color={255,0,255}));
+ connect(tim1.passed, not3.u) annotation (Line(points={{62,-88},{80,-88},{80,-80},
+ {98,-80}}, color={255,0,255}));
+ connect(mulOr.y, not1.u)
+ annotation (Line(points={{-58,130},{-42,130}}, color={255,0,255}));
+ connect(hys.y, and2.u1)
+ annotation (Line(points={{-18,40},{-2,40}}, color={255,0,255}));
+ connect(and2.y, tim.u)
+ annotation (Line(points={{22,40},{38,40}}, color={255,0,255}));
+ connect(not1.y, and2.u2) annotation (Line(points={{-18,130},{-12,130},{-12,32},
+ {-2,32}}, color={255,0,255}));
+ connect(hys1.y, and1.u1)
+ annotation (Line(points={{-18,-80},{-2,-80}}, color={255,0,255}));
+ connect(and1.y, tim1.u)
+ annotation (Line(points={{22,-80},{38,-80}}, color={255,0,255}));
+ connect(not1.y, and1.u2) annotation (Line(points={{-18,130},{-12,130},{-12,-88},
+ {-2,-88}}, color={255,0,255}));
+ connect(intToRea.y, gai.u)
+ annotation (Line(points={{22,0},{38,0}}, color={0,0,127}));
+ connect(gai.y, addPar.u)
+ annotation (Line(points={{62,0},{78,0}}, color={0,0,127}));
+ connect(addPar1.y, gai1.u)
+ annotation (Line(points={{-58,-40},{38,-40}}, color={0,0,127}));
+ connect(gai1.y, addPar2.u)
+ annotation (Line(points={{62,-40},{78,-40}}, color={0,0,127}));
+annotation (
+ defaultComponentName="enaLagPriPum",
+ Icon(coordinateSystem(preserveAspectRatio=false,
+ extent={{-100,-100},{100,100}}),
+ graphics={
+ Rectangle(
+ extent={{-100,-100},{100,100}},
+ lineColor={0,0,127},
+ fillColor={255,255,255},
+ fillPattern=FillPattern.Solid),
+ Text(
+ extent={{-100,150},{100,110}},
+ textColor={0,0,255},
+ textString="%name")}),
+ Diagram(coordinateSystem(preserveAspectRatio=false, extent={{-140,-160},{140,160}})),
+ Documentation(info="
+
+Block that enables and disables lag hot water pump according to ASHRAE RP-1711,
+March, 2020 draft, section 5.3.6.4 and section 5.3.7.3.
+
+
+Hot water pump shall be staged as a function of hot water flow ratio (HWFR),
+i.e. the ratio of current hot water flow VHotWat_flow
to design
+flow VHotWat_flow_nominal
, and the number of pumps num_nominal
+that operate at design conditions. Pumps are assumed to be equally sized.
+
+
+ VHotWat_flow
+ HWFR = ----------------------
+ VHotWat_flow_nominal
+
+
+1. Start the next lag pump yNexLagPum
whenever the following is
+true for time timPer
:
+
+
+ HWFR > Number_of_operating_pumps/num_nominal - 0.03
+
+
+2. Shut off the last lag pump whenever the following is true for timPer
:
+
+
+ HWFR ≤ (Number_of_operating_pumps - 1)/num_nominal - 0.03
+
+", revisions="
+
+-
+July 30, 2020, by Karthik Devaprasad:
+First implementation.
+
+
+"));
+end EnableLag_flowrate;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Pumps/Generic/Speed_localDp.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Pumps/Generic/Speed_localDp.mo
new file mode 100644
index 00000000000..0f06ef75f57
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Pumps/Generic/Speed_localDp.mo
@@ -0,0 +1,311 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Pumps.Generic;
+block Speed_localDp
+ "Pump speed control plants where the remote DP sensor(s) is not hardwired to the plant controller, but a local DP sensor is hardwired"
+
+ parameter Buildings.Controls.OBC.CDL.Types.SimpleController controllerType= Buildings.Controls.OBC.CDL.Types.SimpleController.PI
+ "Type of controller"
+ annotation(Dialog(group="Speed controller"));
+
+ parameter Integer nSen = 2
+ "Total number of remote differential pressure sensors";
+
+ parameter Integer nPum = 2
+ "Total number of hot water pumps";
+
+ parameter Real minLocDp(
+ final min=0,
+ displayUnit="Pa",
+ final unit= "Pa",
+ final quantity="PressureDifference")=5*6894.75
+ "Minimum hot water loop local differential pressure setpoint";
+
+ parameter Real maxLocDp(
+ final min=minLocDp,
+ displayUnit="Pa",
+ final unit="Pa",
+ final quantity="PressureDifference") = 15*6894.75
+ "Maximum hot water loop local differential pressure setpoint";
+
+ parameter Real minPumSpe(
+ final unit="1",
+ displayUnit="1",
+ final min=0,
+ final max=maxPumSpe) = 0.1
+ "Minimum pump speed";
+
+ parameter Real maxPumSpe(
+ final unit="1",
+ displayUnit="1",
+ final min=minPumSpe,
+ final max=1) = 1
+ "Maximum pump speed";
+
+ parameter Real k=1
+ "Gain of controller"
+ annotation(Dialog(group="Speed controller"));
+
+ parameter Real Ti(
+ final unit="s",
+ final quantity="time",
+ displayUnit="s")=0.5
+ "Time constant of integrator block"
+ annotation(Dialog(group="Speed controller"));
+
+ parameter Real Td(
+ final unit="s",
+ final quantity="time",
+ displayUnit="s")=0.1
+ "Time constant of derivative block"
+ annotation (Dialog(group="Speed controller"));
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uHotWatPum[nPum]
+ "Hot water pump status"
+ annotation (Placement(transformation(extent={{-180,-70},{-140,-30}}),
+ iconTransformation(extent={{-140,20},{-100,60}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput dpHotWat_local(
+ final unit="Pa",
+ final quantity="PressureDifference")
+ "Hot water differential static pressure from local sensor"
+ annotation (Placement(transformation(extent={{-180,70},{-140,110}}),
+ iconTransformation(extent={{-140,60},{-100,100}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput dpHotWat_remote[nSen](
+ final unit=fill("Pa", nSen),
+ final quantity=fill("PressureDifference", nSen),
+ displayUnit=fill("Pa", nSen))
+ "Hot water differential static pressure from remote sensor"
+ annotation (Placement(transformation(extent={{-180,-110},{-140,-70}}),
+ iconTransformation(extent={{-140,-60},{-100,-20}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput dpHotWatSet(
+ final unit="Pa",
+ final quantity="PressureDifference",
+ displayUnit="Pa")
+ "Hot water differential static pressure setpoint"
+ annotation (Placement(transformation(extent={{-180,-140},{-140,-100}}),
+ iconTransformation(extent={{-140,-100},{-100,-60}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealOutput yHotWatPumSpe(
+ final min=minPumSpe,
+ final max=maxPumSpe,
+ final unit="1")
+ "Hot water pump speed"
+ annotation (Placement(transformation(extent={{140,70},{180,110}}),
+ iconTransformation(extent={{100,-20},{140,20}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.MultiMax maxRemDP(
+ nin=nSen)
+ "Highest output from differential pressure control loops"
+ annotation (Placement(transformation(extent={{40,-30},{60,-10}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Line locDpSet
+ "Local differential pressure setpoint"
+ annotation (Placement(transformation(extent={{100,-30},{120,-10}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Pumps.Generic.Speed_remoteDp hotPumSpe(
+ controllerType=controllerType,
+ final nSen=1,
+ final nPum=nPum,
+ final minPumSpe=minPumSpe,
+ final maxPumSpe=maxPumSpe,
+ final k=k,
+ final Ti=Ti,
+ final Td=Td)
+ "Calculate pump speed based on pressure setpoint"
+ annotation (Placement(transformation(extent={{60,80},{80,100}})));
+
+protected
+ Buildings.Controls.OBC.CDL.Continuous.PIDWithReset conPID[nSen](
+ final controllerType=fill(controllerType, nSen),
+ final k=fill(k, nSen),
+ final Ti=fill(Ti, nSen),
+ final Td=fill(Td, nSen),
+ final yMax=fill(1,nSen),
+ final yMin=fill(0,nSen))
+ "PID controller for regulating local differential pressure setpoint"
+ annotation (Placement(transformation(extent={{0,-30},{20,-10}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Edge edg
+ "Reset PID loop when it is activated"
+ annotation (Placement(transformation(extent={{-70,-60},{-50,-40}})));
+
+ Buildings.Controls.OBC.CDL.Logical.MultiOr mulOr(
+ final nin=nPum)
+ "Check if any hot water pumps are enabled"
+ annotation (Placement(transformation(extent={{-110,-60},{-90,-40}})));
+
+ Buildings.Controls.OBC.CDL.Routing.RealScalarReplicator reaRep(
+ final nout=nSen)
+ "Replicate real input"
+ annotation (Placement(transformation(extent={{-120,-130},{-100,-110}})));
+
+ Buildings.Controls.OBC.CDL.Routing.BooleanScalarReplicator booRep(
+ final nout=nSen)
+ "Replicate boolean input"
+ annotation (Placement(transformation(extent={{-30,-60},{-10,-40}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant zer(
+ final k=0)
+ "Constant zero"
+ annotation (Placement(transformation(extent={{60,10},{80,30}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant locDp_min(
+ final k=minLocDp)
+ "Minimum local differential pressure"
+ annotation (Placement(transformation(extent={{40,-70},{60,-50}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant one(
+ final k=1)
+ "Constant one"
+ annotation (Placement(transformation(extent={{-120,10},{-100,30}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant locDp_max(
+ final k=maxLocDp)
+ "Maximum local differential pressure "
+ annotation (Placement(transformation(extent={{40,-130},{60,-110}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Divide div[nSen]
+ "Normalized pressure difference"
+ annotation (Placement(transformation(extent={{-40,-110},{-20,-90}})));
+
+ Buildings.Controls.OBC.CDL.Routing.RealScalarReplicator reaRep1(
+ final nout=nSen)
+ "Replicate real input"
+ annotation (Placement(transformation(extent={{-80,-10},{-60,10}})));
+
+equation
+ connect(dpHotWatSet, reaRep.u)
+ annotation (Line(points={{-160,-120},{-122,-120}}, color={0,0,127}));
+
+ connect(maxRemDP.y, locDpSet.u)
+ annotation (Line(points={{62,-20},{98,-20}}, color={0,0,127}));
+
+ connect(zer.y, locDpSet.x1)
+ annotation (Line(points={{82,20},{90,20},{90,-12},{98,-12}}, color={0,0,127}));
+
+ connect(locDp_min.y, locDpSet.f1)
+ annotation (Line(points={{62,-60},{70,-60},{70,-16},{98,-16}},
+ color={0,0,127}));
+
+ connect(one.y, locDpSet.x2)
+ annotation (Line(points={{-98,20},{40,20},{40,0},{80,0},{80,-24},{98,-24}},
+ color={0,0,127}));
+
+ connect(locDp_max.y, locDpSet.f2)
+ annotation (Line(points={{62,-120},{80,-120},{80,-28},{98,-28}},
+ color={0,0,127}));
+
+ connect(dpHotWat_remote, div.u1)
+ annotation (Line(points={{-160,-90},{-80,-90},{-80,-94},{-42,-94}},
+ color={0,0,127}));
+
+ connect(reaRep.y, div.u2)
+ annotation (Line(points={{-98,-120},{-80,-120},{-80,-106},{-42,-106}},
+ color={0,0,127}));
+
+ connect(one.y, reaRep1.u)
+ annotation (Line(points={{-98,20},{-90,20},{-90,0},{-82,0}}, color={0,0,127}));
+
+ connect(hotPumSpe.yHotWatPumSpe, yHotWatPumSpe)
+ annotation (Line(points={{82,90},{160,90}}, color={0,0,127}));
+ connect(uHotWatPum, mulOr.u[1:nPum]) annotation (Line(points={{-160,-50},{-112,
+ -50}}, color={255,0,255}));
+ connect(uHotWatPum, hotPumSpe.uHotWatPum) annotation (Line(points={{-160,-50},
+ {-130,-50},{-130,98},{58,98}}, color={255,0,255}));
+ connect(locDpSet.y, hotPumSpe.dpHotWatSet) annotation (Line(points={{122,-20},
+ {130,-20},{130,72},{40,72},{40,82},{58,82}}, color={0,0,127}));
+ connect(dpHotWat_local, hotPumSpe.dpHotWat[1])
+ annotation (Line(points={{-160,90},{58,90}}, color={0,0,127}));
+
+ connect(mulOr.y, edg.u)
+ annotation (Line(points={{-88,-50},{-72,-50}}, color={255,0,255}));
+ connect(edg.y, booRep.u)
+ annotation (Line(points={{-48,-50},{-32,-50}}, color={255,0,255}));
+ connect(booRep.y, conPID.trigger)
+ annotation (Line(points={{-8,-50},{4,-50},{4,-32}}, color={255,0,255}));
+ connect(div.y, conPID.u_m)
+ annotation (Line(points={{-18,-100},{10,-100},{10,-32}}, color={0,0,127}));
+ connect(reaRep1.y, conPID.u_s) annotation (Line(points={{-58,0},{-20,0},{-20,-20},
+ {-2,-20}}, color={0,0,127}));
+ connect(conPID.y, maxRemDP.u[1:nSen]) annotation (Line(points={{22,-20},{30,-20},
+ {30,-20},{38,-20}}, color={0,0,127}));
+
+annotation (
+ defaultComponentName="hotPumSpe",
+ Icon(coordinateSystem(extent={{-100,-100},{100,100}}),
+ graphics={
+ Rectangle(
+ extent={{-100,-100},{100,100}},
+ lineColor={0,0,127},
+ fillColor={255,255,255},
+ fillPattern=FillPattern.Solid),
+ Text(
+ extent={{-100,150},{100,110}},
+ textColor={0,0,255},
+ textString="%name"),
+ Text(
+ extent={{-98,52},{-44,30}},
+ textColor={255,0,255},
+ pattern=LinePattern.Dash,
+ textString="uHotWatPum"),
+ Text(
+ extent={{-98,-30},{-30,-52}},
+ textColor={0,0,127},
+ pattern=LinePattern.Dash,
+ textString="dpHotWat_remote"),
+ Text(
+ extent={{22,12},{98,-10}},
+ textColor={0,0,127},
+ pattern=LinePattern.Dash,
+ textString="yHotWatPumSpe"),
+ Text(
+ extent={{-98,-68},{-34,-90}},
+ textColor={0,0,127},
+ pattern=LinePattern.Dash,
+ textString="dpHotWatSet"),
+ Text(
+ extent={{-98,92},{-30,70}},
+ textColor={0,0,127},
+ pattern=LinePattern.Dash,
+ textString="dpHotWat_local")}),
+ Diagram(coordinateSystem(preserveAspectRatio=false, extent={{-140,-140},{140,140}})),
+ Documentation(info="
+
+Block that controls speed of enabled hot water pumps for plants where
+the remote pressure differential (DP) sensor(s) is not hardwired to the plant controller,
+but a local DP sensor is hardwired to the plant controller,
+according to ASHRAE RP-1711, March, 2020 draft, sections 5.3.6.7, 5.3.6.8, 5.3.6.9,
+5.3.7.7 , 5.3.7.8 and 5.3.7.9.
+
+
+-
+Remote dP
dpHotWat_remote
shall be maintained at setpoint dpHotWatSet
+by a reverse acting PID loop running in the controller to which the remote sensor is wired.
+The loop output shall be a dP setpoint for the local dP sensor
+hardwired to the plant controller. Reset local dP from minLocDp
,
+e.g. 5 psi (34473.8 Pa), at 0% loop output to maxLocDp
at 100%
+loop output.
+
+-
+When any pump is proven on, pump speed shall be controlled by a reverse acting
+PID loop maintaining the local dP
dpHotWat_local
at the DP setpoint output
+from the remote sensor control loop. All pumps receive the same speed signal.
+PID loop output shall be mapped from minimum pump speed (minPumSpe
)
+at 0% to maximum pump speed (maxPumSpe
) at 100%.
+
+-
+Where multiple remote DP sensors exist, a PID loop shall run for each sensor.
+The DP setpoint for the local DP sensor shall be the highest DP setpoint output
+from each of the remote loops.
+
+
+", revisions="
+
+-
+August 3, 2020, by Karthik Devaprasad:
+First implementation.
+
+
+"));
+end Speed_localDp;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Pumps/Generic/Speed_remoteDp.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Pumps/Generic/Speed_remoteDp.mo
new file mode 100644
index 00000000000..4eb29d22341
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Pumps/Generic/Speed_remoteDp.mo
@@ -0,0 +1,264 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Pumps.Generic;
+block Speed_remoteDp
+ "Pump speed control for plants where the remote DP sensor(s) is hardwired to the plant controller"
+
+ parameter Buildings.Controls.OBC.CDL.Types.SimpleController controllerType= Buildings.Controls.OBC.CDL.Types.SimpleController.PI
+ "Type of controller"
+ annotation(Dialog(group="Speed controller"));
+
+ parameter Integer nSen = 2
+ "Total number of remote differential pressure sensors";
+
+ parameter Integer nPum = 2
+ "Total number of hot water pumps";
+
+ parameter Real minPumSpe = 0.1
+ "Minimum pump speed";
+
+ parameter Real maxPumSpe = 1
+ "Maximum pump speed";
+
+ parameter Real k=1
+ "Gain of controller"
+ annotation(Dialog(group="Speed controller"));
+
+ parameter Real Ti(
+ final unit="s",
+ displayUnit="s",
+ final quantity="time",
+ final min=0) = 0.5
+ "Time constant of integrator block"
+ annotation(Dialog(group="Speed controller"));
+
+ parameter Real Td(
+ final unit="s",
+ displayUnit="s",
+ final quantity="time",
+ final min=0) = 0.1
+ "Time constant of derivative block"
+ annotation (Dialog(group="Speed controller"));
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uHotWatPum[nPum]
+ "Hot water pump status"
+ annotation (Placement(transformation(extent={{-160,-20},{-120,20}}),
+ iconTransformation(extent={{-140,60},{-100,100}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput dpHotWat[nSen](
+ final unit=fill("Pa", nSen),
+ displayUnit=fill("Pa", nSen),
+ final quantity=fill("PressureDifference", nSen))
+ "Hot water differential static pressure"
+ annotation (Placement(transformation(extent={{-160,-80},{-120,-40}}),
+ iconTransformation(extent={{-140,-20},{-100,20}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput dpHotWatSet(
+ final unit="Pa",
+ displayUnit="Pa",
+ final quantity="PressureDifference")
+ "Hot water differential static pressure setpoint"
+ annotation (Placement(transformation(extent={{-160,-120},{-120,-80}}),
+ iconTransformation(extent={{-140,-100},{-100,-60}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealOutput yHotWatPumSpe(
+ final min=minPumSpe,
+ final max=maxPumSpe,
+ final unit="1",
+ displayUnit="1")
+ "Hot water pump speed"
+ annotation (Placement(transformation(extent={{120,80},{160,120}}),
+ iconTransformation(extent={{100,-20},{140,20}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.MultiMax maxLoo(
+ final nin=nSen)
+ "Maximum DP loop output"
+ annotation (Placement(transformation(extent={{60,-10},{80,10}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Line pumSpe
+ "Pump speed"
+ annotation (Placement(transformation(extent={{60,50},{80,70}})));
+
+protected
+ Buildings.Controls.OBC.CDL.Continuous.PIDWithReset conPID[nSen](
+ final controllerType=fill(controllerType, nSen),
+ final k=fill(k, nSen),
+ final Ti=fill(Ti, nSen),
+ final Td=fill(Td, nSen),
+ final yMax=fill(1,nSen),
+ final yMin=fill(0,nSen))
+ "PID controller for regulating remote differential pressure"
+ annotation (Placement(transformation(extent={{20,-10},{40,10}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Edge edg
+ "Reset PID loop when it is activated"
+ annotation (Placement(transformation(extent={{-40,-50},{-20,-30}})));
+
+ Buildings.Controls.OBC.CDL.Logical.MultiOr mulOr(
+ final nin=nPum)
+ "Check if any hot water primary pumps are enabled"
+ annotation (Placement(transformation(extent={{-100,-10},{-80,10}})));
+
+ Buildings.Controls.OBC.CDL.Routing.RealScalarReplicator reaRep(
+ final nout=nSen)
+ "Replicate real input"
+ annotation (Placement(transformation(extent={{-100,-110},{-80,-90}})));
+
+ Buildings.Controls.OBC.CDL.Routing.BooleanScalarReplicator booRep(
+ final nout=nSen)
+ "Replicate boolean input"
+ annotation (Placement(transformation(extent={{-10,-50},{10,-30}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant pumSpe_min(
+ final k=minPumSpe)
+ "Minimum pump speed"
+ annotation (Placement(transformation(extent={{-80,70},{-60,90}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant pumSpe_max(
+ final k=maxPumSpe)
+ "Maximum pump speed"
+ annotation (Placement(transformation(extent={{-20,30},{0,50}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant one(
+ final k=1)
+ "Constant one"
+ annotation (Placement(transformation(extent={{-80,30},{-60,50}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant zer(
+ final k=0)
+ "Constant zero"
+ annotation (Placement(transformation(extent={{-20,70},{0,90}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Divide div[nSen]
+ "Normalized pressure difference"
+ annotation (Placement(transformation(extent={{-20,-90},{0,-70}})));
+
+ Buildings.Controls.OBC.CDL.Routing.RealScalarReplicator reaRep1(
+ final nout=nSen)
+ "Replicate real input"
+ annotation (Placement(transformation(extent={{-20,-10},{0,10}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Switch swi
+ "Logical switch"
+ annotation (Placement(transformation(extent={{80,90},{100,110}})));
+
+equation
+ connect(dpHotWatSet, reaRep.u)
+ annotation (Line(points={{-140,-100},{-102,-100}}, color={0,0,127}));
+
+ connect(zer.y, pumSpe.x1)
+ annotation (Line(points={{2,80},{20,80},{20,68},{58,68}}, color={0,0,127}));
+
+ connect(pumSpe_min.y, pumSpe.f1)
+ annotation (Line(points={{-58,80},{-40,80},{-40,64},{58,64}}, color={0,0,127}));
+
+ connect(one.y, pumSpe.x2)
+ annotation (Line(points={{-58,40},{-40,40},{-40,56},{58,56}}, color={0,0,127}));
+
+ connect(pumSpe_max.y, pumSpe.f2)
+ annotation (Line(points={{2,40},{10,40},{10,52},{58,52}}, color={0,0,127}));
+
+ connect(maxLoo.y, pumSpe.u)
+ annotation (Line(points={{82,0},{100,0},{100,40},{40,40},{40,60},{58,60}},
+ color={0,0,127}));
+
+ connect(dpHotWat, div.u1)
+ annotation (Line(points={{-140,-60},{-40,-60},{-40,-74},{-22,-74}},
+ color={0,0,127}));
+
+ connect(reaRep.y, div.u2)
+ annotation (Line(points={{-78,-100},{-40,-100},{-40,-86},{-22,-86}},
+ color={0,0,127}));
+
+ connect(one.y, reaRep1.u)
+ annotation (Line(points={{-58,40},{-40,40},{-40,0},{-22,0}},
+ color={0,0,127}));
+
+ connect(pumSpe.y, swi.u1)
+ annotation (Line(points={{82,60},{100,60},{100,80},{60,80},{60,108},{78,108}},
+ color={0,0,127}));
+
+ connect(swi.y,yHotWatPumSpe)
+ annotation (Line(points={{102,100},{140,100}}, color={0,0,127}));
+
+ connect(uHotWatPum, mulOr.u[1:nPum]) annotation (Line(points={{-140,0},{-122,0},{
+ -122,0},{-102,0}}, color={255,0,255}));
+ connect(mulOr.y, swi.u2) annotation (Line(points={{-78,0},{-50,0},{-50,100},{78,
+ 100}}, color={255,0,255}));
+ connect(mulOr.y, edg.u) annotation (Line(points={{-78,0},{-50,0},{-50,-40},{-42,
+ -40}}, color={255,0,255}));
+ connect(edg.y, booRep.u)
+ annotation (Line(points={{-18,-40},{-12,-40}}, color={255,0,255}));
+ connect(booRep.y, conPID.trigger)
+ annotation (Line(points={{12,-40},{24,-40},{24,-12}}, color={255,0,255}));
+ connect(reaRep1.y, conPID.u_s)
+ annotation (Line(points={{2,0},{18,0}}, color={0,0,127}));
+ connect(div.y, conPID.u_m)
+ annotation (Line(points={{2,-80},{30,-80},{30,-12}}, color={0,0,127}));
+ connect(conPID.y, maxLoo.u[1:nSen])
+ annotation (Line(points={{42,0},{50,0},{50,0},{58,0}}, color={0,0,127}));
+ connect(pumSpe_max.y, swi.u3) annotation (Line(points={{2,40},{10,40},{10,92},
+ {78,92}}, color={0,0,127}));
+annotation (
+ defaultComponentName="hotPumSpe",
+ Icon(coordinateSystem(extent={{-100,-100},{100,100}}),
+ graphics={
+ Rectangle(
+ extent={{-100,-100},{100,100}},
+ lineColor={0,0,127},
+ fillColor={255,255,255},
+ fillPattern=FillPattern.Solid),
+ Text(
+ extent={{-100,150},{100,110}},
+ textColor={0,0,255},
+ textString="%name"),
+ Text(
+ extent={{-98,92},{-44,70}},
+ textColor={255,0,255},
+ pattern=LinePattern.Dash,
+ textString="uHotWatPum"),
+ Text(
+ extent={{-98,10},{-44,-12}},
+ textColor={0,0,127},
+ pattern=LinePattern.Dash,
+ textString="dpHotWat"),
+ Text(
+ extent={{22,12},{98,-10}},
+ textColor={0,0,127},
+ pattern=LinePattern.Dash,
+ textString="yHotWatPumSpe"),
+ Text(
+ extent={{-98,-68},{-34,-90}},
+ textColor={0,0,127},
+ pattern=LinePattern.Dash,
+ textString="dpHotWatSet")}),
+ Diagram(coordinateSystem(preserveAspectRatio=false, extent={{-120,-120},{120,120}})),
+ Documentation(info="
+
+Block that outputs hot water pump speed setpoint for plants with
+headered, variable-speed pumps where the remote pressure differential sensor is
+hardwired to the plant controller, according to ASHRAE RP-1711, March, 2020 draft,
+sections 5.3.6.5, 5.3.6.6, 5.3.7.5 and 5.3.7.6.
+
+
+-
+When any hot water pump is proven on,
uHotWatPum = true
,
+pump speed will be controlled by a reverse acting PID loop maintaining the
+differential pressure signal at a setpoint dpHotWatSet
. All pumps
+receive the same speed signal. PID loop output shall be mapped from minimum
+pump speed (minPumSpe
) at 0% to maximum pump speed
+(maxPumSpe
) at 100%.
+
+-
+Where multiple differential pressure sensors exist, a PID loop shall run for
+each sensor. Hot water pumps shall be controlled to the maximum signal output
+of all DP sensor loops.
+
+
+", revisions="
+
+-
+August 3, 2020, by Karthik Devaprasad:
+First implementation.
+
+
+"));
+end Speed_remoteDp;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Pumps/Generic/Validation/ChangeStatus.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Pumps/Generic/Validation/ChangeStatus.mo
new file mode 100644
index 00000000000..b14b37d992c
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Pumps/Generic/Validation/ChangeStatus.mo
@@ -0,0 +1,141 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Pumps.Generic.Validation;
+model ChangeStatus
+ "Validate sequence for changing pump status"
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Pumps.Generic.ChangeStatus
+ chaPumSta(
+ final nPum=3)
+ "Scenario testing pump status changer"
+ annotation (Placement(transformation(extent={{60,-10},{82,10}})));
+
+protected
+ Buildings.Controls.OBC.CDL.Logical.Pre pre[3](
+ final pre_u_start=fill(false, 3))
+ "Logical pre block"
+ annotation (Placement(transformation(extent={{90,-10},{110,10}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.SampleTrigger samTri(
+ final period=5,
+ final shift=1)
+ "Sample trigger"
+ annotation (Placement(transformation(extent={{-130,-10},{-110,10}})));
+
+ Buildings.Controls.OBC.CDL.Integers.OnCounter onCouInt
+ "Boolean True pulse counter"
+ annotation (Placement(transformation(extent={{-100,-6},{-88,6}})));
+
+ Buildings.Controls.OBC.CDL.Integers.GreaterThreshold intGreThr(
+ final t=3)
+ "Switch pump staging to staging-down after 3 pump stage-ups"
+ annotation (Placement(transformation(extent={{-80,-10},{-60,10}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Switch logSwi
+ "Logical switch"
+ annotation (Placement(transformation(extent={{-40,40},{-20,60}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Switch logSwi1
+ "Logical switch"
+ annotation (Placement(transformation(extent={{-40,10},{-20,30}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant con(
+ final k=false)
+ "Constant Boolean false"
+ annotation (Placement(transformation(extent={{-130,70},{-110,90}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Not not1
+ "Logical Not"
+ annotation (Placement(transformation(extent={{-10,10},{10,30}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Subtract subInt
+ "Generate stage setpoints for staging down processes"
+ annotation (Placement(transformation(extent={{-40,-50},{-20,-30}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant conInt(
+ final k=7)
+ "Constant Integer source"
+ annotation (Placement(transformation(extent={{-100,-60},{-80,-40}})));
+
+equation
+ connect(pre.y, chaPumSta.uHotWatPum) annotation (Line(points={{112,0},{120,0},
+ {120,20},{40,20},{40,0},{58,0}}, color={255,0,255}));
+
+ connect(chaPumSta.yHotWatPum, pre.u)
+ annotation (Line(points={{82,0},{88,0}}, color={255,0,255}));
+
+ connect(samTri.y, onCouInt.trigger)
+ annotation (Line(points={{-108,0},{-101.2,0}}, color={255,0,255}));
+
+ connect(onCouInt.y, intGreThr.u)
+ annotation (Line(points={{-86.8,0},{-82,0}}, color={255,127,0}));
+
+ connect(onCouInt.y, chaPumSta.uNexLagPum) annotation (Line(points={{-86.8,0},{
+ -84,0},{-84,-20},{20,-20},{20,-4},{58,-4}}, color={255,127,0}));
+
+ connect(samTri.y, logSwi1.u1) annotation (Line(points={{-108,0},{-106,0},{-106,
+ 28},{-42,28}}, color={255,0,255}));
+
+ connect(samTri.y, logSwi.u3) annotation (Line(points={{-108,0},{-106,0},{-106,
+ 42},{-42,42}}, color={255,0,255}));
+
+ connect(intGreThr.y, logSwi1.u2) annotation (Line(points={{-58,0},{-54,0},{-54,
+ 20},{-42,20}}, color={255,0,255}));
+
+ connect(con.y, logSwi.u1) annotation (Line(points={{-108,80},{-50,80},{-50,58},
+ {-42,58}}, color={255,0,255}));
+
+ connect(con.y, logSwi1.u3) annotation (Line(points={{-108,80},{-50,80},{-50,12},
+ {-42,12}}, color={255,0,255}));
+
+ connect(intGreThr.y, logSwi.u2) annotation (Line(points={{-58,0},{-54,0},{-54,
+ 50},{-42,50}}, color={255,0,255}));
+
+ connect(logSwi1.y, not1.u)
+ annotation (Line(points={{-18,20},{-12,20}}, color={255,0,255}));
+
+ connect(not1.y, chaPumSta.uLasLagPumSta) annotation (Line(points={{12,20},{30,
+ 20},{30,5},{58,5}}, color={255,0,255}));
+
+ connect(logSwi.y, chaPumSta.uNexLagPumSta) annotation (Line(points={{-18,50},{
+ 50,50},{50,8},{58,8}}, color={255,0,255}));
+
+ connect(subInt.y, chaPumSta.uLasLagPum) annotation (Line(points={{-18,-40},{52,
+ -40},{52,-8},{58,-8}}, color={255,127,0}));
+
+ connect(con.y, onCouInt.reset) annotation (Line(points={{-108,80},{-104,80},{-104,
+ -14},{-94,-14},{-94,-7.2}}, color={255,0,255}));
+
+ connect(conInt.y,subInt. u1) annotation (Line(points={{-78,-50},{-60,-50},{-60,
+ -34},{-42,-34}}, color={255,127,0}));
+ connect(onCouInt.y,subInt. u2) annotation (Line(points={{-86.8,0},{-84,0},{-84,
+ -20},{-50,-20},{-50,-46},{-42,-46}}, color={255,127,0}));
+annotation (
+ experiment(StopTime=3600.0, Tolerance=1e-06),
+ __Dymola_Commands(file="modelica://Buildings/Resources/Scripts/Dymola/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Pumps/Generic/Validation/ChangeStatus.mos"
+ "Simulate and plot"),
+ Documentation(info="
+
+This example validates
+
+Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Pumps.Generic.ChangeStatus.
+
+", revisions="
+
+-
+August 19, 2020, by Karthik Devaprasad:
+First implementation.
+
+
+"),
+ Icon(coordinateSystem(preserveAspectRatio=false, extent={{-100,-100},{100,100}}),
+ graphics={
+ Ellipse(lineColor = {75,138,73},
+ fillColor={255,255,255},
+ fillPattern = FillPattern.Solid,
+ extent = {{-100,-100},{100,100}}),
+ Polygon(lineColor = {0,0,255},
+ fillColor = {75,138,73},
+ pattern = LinePattern.None,
+ fillPattern = FillPattern.Solid,
+ points = {{-36,60},{64,0},{-36,-60},{-36,60}})}), Diagram(
+ coordinateSystem(preserveAspectRatio=false, extent={{-140,-100},{140,100}})));
+end ChangeStatus;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Pumps/Generic/Validation/EnableLag_flowrate.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Pumps/Generic/Validation/EnableLag_flowrate.mo
new file mode 100644
index 00000000000..18f31b15ccd
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Pumps/Generic/Validation/EnableLag_flowrate.mo
@@ -0,0 +1,87 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Pumps.Generic.Validation;
+model EnableLag_flowrate
+ "Validate sequence for enabling lag pump using measured volume flow-rate"
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Pumps.Generic.EnableLag_flowrate
+ enaLagPriPum(
+ final nPum=3)
+ "Enable lag pump for primary-only plants with headered variable speed primary pumps"
+ annotation (Placement(transformation(extent={{-20,10},{0,30}})));
+
+ Buildings.Controls.OBC.CDL.Logical.TrueFalseHold nexLagPum(
+ final trueHoldDuration=10)
+ "Hold pulse signal for easy visualization"
+ annotation (Placement(transformation(extent={{30,20},{50,40}})));
+
+ Buildings.Controls.OBC.CDL.Logical.TrueFalseHold preLagPum(
+ final trueHoldDuration=10)
+ "Hold pulse signal for easy visualization"
+ annotation (Placement(transformation(extent={{30,-10},{50,10}})));
+
+protected
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant con[2](
+ final k=fill(true, 2))
+ "Constant true"
+ annotation (Placement(transformation(extent={{-80,-10},{-60,10}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant con1(
+ final k=false)
+ "Constant false"
+ annotation (Placement(transformation(extent={{-80,-50},{-60,-30}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Sine sin(
+ final amplitude=0.25,
+ final freqHz=1/3600,
+ final offset=0.25)
+ "Measured hot water flow rate"
+ annotation (Placement(transformation(extent={{-80,30},{-60,50}})));
+
+equation
+ connect(con[1].y,enaLagPriPum. uHotWatPum[1]) annotation (Line(points={{-58,0},
+ {-42,0},{-42,14.8667},{-22,14.8667}}, color={255,0,255}));
+
+ connect(con[2].y,enaLagPriPum. uHotWatPum[2]) annotation (Line(points={{-58,0},
+ {-42,0},{-42,16.2},{-22,16.2}}, color={255,0,255}));
+
+ connect(con1.y,enaLagPriPum. uHotWatPum[3]) annotation (Line(points={{-58,-40},
+ {-40,-40},{-40,17.5333},{-22,17.5333}}, color={255,0,255}));
+
+ connect(sin.y,enaLagPriPum.VHotWat_flow)
+ annotation (Line(points={{-58,40},{-40,40},{-40,24},{-22,24}},
+ color={0,0,127}));
+
+ connect(enaLagPriPum.yUp, nexLagPum.u) annotation (Line(points={{2,24},{16,24},
+ {16,30},{28,30}}, color={255,0,255}));
+ connect(enaLagPriPum.yDown, preLagPum.u) annotation (Line(points={{2,16},{16,16},
+ {16,0},{28,0}}, color={255,0,255}));
+annotation (
+ experiment(StopTime=3600.0, Tolerance=1e-06),
+ __Dymola_Commands(file="modelica://Buildings/Resources/Scripts/Dymola/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Pumps/Generic/Validation/EnableLag_flowrate.mos"
+ "Simulate and plot"),
+ Documentation(info="
+
+This example validates
+
+Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Pumps.Generic.EnableLag_flowrate.
+
+", revisions="
+
+-
+July 30, 2020, by Karthik Devaprasad:
+First implementation.
+
+
+"),
+ Icon(coordinateSystem(preserveAspectRatio=false, extent={{-100,-100},{100,100}}),
+ graphics={
+ Ellipse(lineColor = {75,138,73},
+ fillColor={255,255,255},
+ fillPattern = FillPattern.Solid,
+ extent = {{-100,-100},{100,100}}),
+ Polygon(lineColor = {0,0,255},
+ fillColor = {75,138,73},
+ pattern = LinePattern.None,
+ fillPattern = FillPattern.Solid,
+ points = {{-36,60},{64,0},{-36,-60},{-36,60}})}), Diagram(
+ coordinateSystem(preserveAspectRatio=false, extent={{-100,-100},{100,100}})));
+end EnableLag_flowrate;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Pumps/Generic/Validation/Speed_localDp.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Pumps/Generic/Validation/Speed_localDp.mo
new file mode 100644
index 00000000000..528617e7199
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Pumps/Generic/Validation/Speed_localDp.mo
@@ -0,0 +1,96 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Pumps.Generic.Validation;
+model Speed_localDp
+ "Validate sequence of controlling hot water pump speed for plants with local DP sensor hardwired to the plant controller"
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Pumps.Generic.Speed_localDp
+ hotPumSpe(
+ final nSen=2,
+ final nPum=2)
+ "Hot water pump speed control based on local pressure difference sensor"
+ annotation (Placement(transformation(extent={{20,-10},{40,10}})));
+
+protected
+ Buildings.Controls.OBC.CDL.Logical.Sources.Pulse pumSta[2](
+ final width=fill(0.95, 2),
+ final period=fill(10, 2),
+ final shift=fill(1, 2))
+ "Pump status"
+ annotation (Placement(transformation(extent={{-60,30},{-40,50}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant difPreSet(
+ final k=8.5*6894.75)
+ "Pressure difference setpoint"
+ annotation (Placement(transformation(extent={{-60,-90},{-40,-70}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Sine remPreSen1(
+ final offset=8.5*6894.75,
+ final freqHz=1/10,
+ final amplitude=1.5*6894.75)
+ "Remote pressure difference sensor reading"
+ annotation (Placement(transformation(extent={{-60,-10},{-40,10}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Sine remPreSen2(
+ final offset=8.5*6894.75,
+ final freqHz=1/10,
+ final startTime=2,
+ final amplitude=1*6894.75)
+ "Remote pressure difference sensor reading"
+ annotation (Placement(transformation(extent={{-60,-50},{-40,-30}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Sine locPreSen(
+ final freqHz=1/5,
+ final amplitude=1*6894.75,
+ final offset=8.5*6894.75)
+ "Local pressure difference sensor reading"
+ annotation (Placement(transformation(extent={{-60,70},{-40,90}})));
+
+equation
+ connect(locPreSen.y,hotPumSpe.dpHotWat_local)
+ annotation (Line(points={{-38,80},{0,80},{0,8},{18,8}},
+ color={0,0,127}));
+
+ connect(remPreSen1.y,hotPumSpe. dpHotWat_remote[1]) annotation (Line(points={
+ {-38,0},{-20,0},{-20,-5},{18,-5}}, color={0,0,127}));
+
+ connect(remPreSen2.y,hotPumSpe. dpHotWat_remote[2]) annotation (Line(points={
+ {-38,-40},{-20,-40},{-20,-3},{18,-3}}, color={0,0,127}));
+
+ connect(difPreSet.y,hotPumSpe.dpHotWatSet)
+ annotation (Line(points={{-38,-80},{0,-80},{0,-8},{18,-8}},
+ color={0,0,127}));
+
+ connect(pumSta.y,hotPumSpe.uHotWatPum)
+ annotation (Line(points={{-38,40},{-20,40},{-20,4},{18,4}},
+ color={255,0,255}));
+
+annotation (
+ experiment(StopTime=10.0, Tolerance=1e-06),
+ __Dymola_Commands(file="modelica://Buildings/Resources/Scripts/Dymola/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Pumps/Generic/Validation/Speed_localDp.mos"
+ "Simulate and plot"),
+ Documentation(info="
+
+This example validates
+
+Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Pumps.Generic.Speed_localDp.
+
+", revisions="
+
+-
+August 3, 2020, by Karthik Devaprasad:
+First implementation.
+
+
+"),
+ Icon(coordinateSystem(preserveAspectRatio=false, extent={{-100,-100},{100,100}}),
+ graphics={
+ Ellipse(lineColor = {75,138,73},
+ fillColor={255,255,255},
+ fillPattern = FillPattern.Solid,
+ extent = {{-100,-100},{100,100}}),
+ Polygon(lineColor = {0,0,255},
+ fillColor = {75,138,73},
+ pattern = LinePattern.None,
+ fillPattern = FillPattern.Solid,
+ points = {{-36,60},{64,0},{-36,-60},{-36,60}})}), Diagram(
+ coordinateSystem(preserveAspectRatio=false, extent={{-100,-100},{100,100}})));
+end Speed_localDp;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Pumps/Generic/Validation/Speed_remoteDp.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Pumps/Generic/Validation/Speed_remoteDp.mo
new file mode 100644
index 00000000000..78544886787
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Pumps/Generic/Validation/Speed_remoteDp.mo
@@ -0,0 +1,85 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Pumps.Generic.Validation;
+model Speed_remoteDp
+ "Validate sequence of controlling hot water pump speed for plants with remote DP sensor hardwired to the plant controller"
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Pumps.Generic.Speed_remoteDp
+ hotPumSpe(
+ nSen=2,
+ nPum=2)
+ "Hot water pump speed control based on remote hardwired differential pressure sensor"
+ annotation (Placement(transformation(extent={{20,-10},{40,10}})));
+
+protected
+ Buildings.Controls.OBC.CDL.Logical.Sources.Pulse pumSta[2](
+ final width=fill(0.95, 2),
+ final period=fill(10, 2),
+ final shift=fill(1, 2))
+ "Pump status"
+ annotation (Placement(transformation(extent={{-60,30},{-40,50}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant difPreSet(
+ final k=8.5)
+ "Pressure difference setpoint"
+ annotation (Placement(transformation(extent={{-60,-90},{-40,-70}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Sine remPreSen1(
+ final offset=8.5,
+ final freqHz=1/10,
+ final amplitude=1.5)
+ "Remote pressure difference sensor reading"
+ annotation (Placement(transformation(extent={{-60,-10},{-40,10}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Sine remPreSen2(
+ final offset=8.5,
+ final freqHz=1/10,
+ final startTime=2,
+ final amplitude=1)
+ "Remote pressure difference sensor reading"
+ annotation (Placement(transformation(extent={{-60,-50},{-40,-30}})));
+
+equation
+ connect(difPreSet.y,hotPumSpe.dpHotWatSet)
+ annotation (Line(points={{-38,-80},{-20,-80},{-20,-8},{18,-8}},
+ color={0,0,127}));
+
+ connect(pumSta.y,hotPumSpe.uHotWatPum)
+ annotation (Line(points={{-38,40},{-20,40},{-20,8},{18,8}},
+ color={255,0,255}));
+
+ connect(remPreSen1.y, hotPumSpe.dpHotWat[1]) annotation (Line(points={{-38,0},
+ {-10,0},{-10,-1},{18,-1}}, color={0,0,127}));
+
+ connect(remPreSen2.y, hotPumSpe.dpHotWat[2]) annotation (Line(points={{-38,-40},
+ {-28,-40},{-28,1},{18,1}}, color={0,0,127}));
+
+annotation (
+ experiment(StopTime=10.0, Tolerance=1e-06),
+ __Dymola_Commands(file="modelica://Buildings/Resources/Scripts/Dymola/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Pumps/Generic/Validation/Speed_remoteDp.mos"
+ "Simulate and plot"),
+ Documentation(info="
+
+This example validates
+
+Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Pumps.Generic.Speed_remoteDp.
+
+", revisions="
+
+-
+August 4, 2020, by Karthik Devaprasad:
+First implementation.
+
+
+"),
+ Icon(coordinateSystem(preserveAspectRatio=false, extent={{-100,-100},{100,100}}),
+ graphics={
+ Ellipse(lineColor = {75,138,73},
+ fillColor={255,255,255},
+ fillPattern = FillPattern.Solid,
+ extent = {{-100,-100},{100,100}}),
+ Polygon(lineColor = {0,0,255},
+ fillColor = {75,138,73},
+ pattern = LinePattern.None,
+ fillPattern = FillPattern.Solid,
+ points = {{-36,60},{64,0},{-36,-60},{-36,60}})}), Diagram(
+ coordinateSystem(preserveAspectRatio=false, extent={{-100,-100},{100,100}})));
+end Speed_remoteDp;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Pumps/Generic/Validation/package.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Pumps/Generic/Validation/package.mo
new file mode 100644
index 00000000000..bd7537a37cc
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Pumps/Generic/Validation/package.mo
@@ -0,0 +1,39 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Pumps.Generic;
+package Validation "Collection of validation models"
+
+
+
+annotation (preferredView="info", Documentation(info="
+
+This package contains validation models for the classes in
+
+Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Pumps.ChilledWater.Subsequences.
+
+
+Note that most validation models contain simple input data
+which may not be realistic, but for which the correct
+output can be obtained through an analytic solution.
+The examples plot various outputs, which have been verified against these
+solutions. These model outputs are stored as reference data and
+used for continuous validation whenever models in the library change.
+
+"),
+ Icon(graphics={
+ Rectangle(
+ lineColor={200,200,200},
+ fillColor={248,248,248},
+ fillPattern=FillPattern.HorizontalCylinder,
+ extent={{-100.0,-100.0},{100.0,100.0}},
+ radius=25.0),
+ Rectangle(
+ lineColor={128,128,128},
+ extent={{-100.0,-100.0},{100.0,100.0}},
+ radius=25.0),
+ Polygon(
+ origin={8.0,14.0},
+ lineColor={78,138,73},
+ fillColor={78,138,73},
+ pattern=LinePattern.None,
+ fillPattern=FillPattern.Solid,
+ points={{-58.0,46.0},{42.0,-14.0},{-58.0,-74.0},{-58.0,46.0}})}));
+end Validation;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Pumps/Generic/Validation/package.order b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Pumps/Generic/Validation/package.order
new file mode 100644
index 00000000000..0e9cdaeeccf
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Pumps/Generic/Validation/package.order
@@ -0,0 +1,4 @@
+ChangeStatus
+EnableLag_flowrate
+Speed_localDp
+Speed_remoteDp
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Pumps/Generic/package.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Pumps/Generic/package.mo
new file mode 100644
index 00000000000..15a88df14b2
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Pumps/Generic/package.mo
@@ -0,0 +1,33 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Pumps;
+package Generic "Generic sequences for both primary and secondary hot water pump control"
+
+
+annotation (
+preferredView="info", Documentation(info="
+
+This package contains control sequences for hot water pumps.
+The implementations are based on section 5.2.6 Primary hot water pumps,
+in ASHRAE RP-1711 (Draft 6 on July 25, 2019).
+
+"),
+ Icon(graphics={
+ Rectangle(
+ lineColor={200,200,200},
+ fillColor={248,248,248},
+ fillPattern=FillPattern.HorizontalCylinder,
+ extent={{-100.0,-100.0},{100.0,100.0}},
+ radius=25.0),
+ Rectangle(
+ lineColor={128,128,128},
+ extent={{-100.0,-100.0},{100.0,100.0}},
+ radius=25.0),
+ Ellipse(
+ extent={{-66,66},{68,-68}},
+ lineColor={0,0,0},
+ fillColor={255,255,255},
+ fillPattern=FillPattern.Solid), Polygon(
+ points={{0,66},{0,-68},{68,0},{0,66}},
+ lineColor={0,0,0},
+ fillColor={255,0,0},
+ fillPattern=FillPattern.Solid)}));
+end Generic;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Pumps/Generic/package.order b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Pumps/Generic/package.order
new file mode 100644
index 00000000000..f6b02402f61
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Pumps/Generic/package.order
@@ -0,0 +1,5 @@
+ChangeStatus
+EnableLag_flowrate
+Speed_localDp
+Speed_remoteDp
+Validation
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Pumps/PrimaryPumps/Controller.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Pumps/PrimaryPumps/Controller.mo
new file mode 100644
index 00000000000..e58ecf17cde
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Pumps/PrimaryPumps/Controller.mo
@@ -0,0 +1,1401 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Pumps.PrimaryPumps;
+block Controller
+ "Sequences to control hot water pumps in boiler plants"
+
+ parameter Buildings.Controls.OBC.CDL.Types.SimpleController controllerType= Buildings.Controls.OBC.CDL.Types.SimpleController.PI
+ "Type of controller"
+ annotation (Dialog(tab="Pump control parameters", group="PID parameters"));
+
+ parameter Boolean have_heaPriPum = true
+ "Flag of headered hot water pumps design: true=headered, false=dedicated"
+ annotation (Dialog(group="Plant parameters"));
+
+ parameter Boolean have_priOnl = false
+ "True: Plant is primary-only;
+ False: Plant is primary-secondary"
+ annotation (Dialog(group="Plant parameters"));
+
+ parameter Boolean have_varPriPum = false
+ "True: Variable-speed primary pumps;
+ False: Fixed-speed primary pumps"
+ annotation (Dialog(group="Plant parameters"));
+
+ parameter Boolean have_secFloSen = true
+ "True: Flowrate sensors in primary and secondary loops;
+ False: Flowrate sensor in decoupler"
+ annotation (Dialog(tab="Pump control parameters",
+ group="Flowrate-based speed regulation",
+ enable= speConTyp == Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Types.PrimaryPumpSpeedControlTypes.flowrate));
+
+ parameter Boolean have_priSecTemSen = true
+ "True: Temperature sensors in primary and secondary loops;
+ False: Temperature sensors in boiler supply and secondary loop"
+ annotation (Dialog(tab="Pump control parameters",
+ group="Temperature-based speed regulation",
+ enable= speConTyp == Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Types.PrimaryPumpSpeedControlTypes.temperature));
+
+ parameter Integer nPum = 2
+ "Total number of hot water pumps"
+ annotation (Dialog(group="Plant parameters"));
+
+ parameter Integer nBoi = 2
+ "Total number of boilers"
+ annotation (Dialog(group="Plant parameters"));
+
+ parameter Integer nSen = 2
+ "Total number of remote differential pressure sensors"
+ annotation (Dialog(group="Plant parameters"));
+
+ parameter Integer numIgnReq = 0
+ "Number of ignored requests"
+ annotation (Dialog(tab="Pump control parameters",
+ group="Temperature-based speed regulation",
+ enable= speConTyp == Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Types.PrimaryPumpSpeedControlTypes.temperature));
+
+ parameter Integer nPum_nominal(
+ final max=nPum,
+ final min=1) = nPum
+ "Total number of pumps that operate at design conditions"
+ annotation (Dialog(group="Plant parameters"));
+
+ parameter Real minPumSpe(
+ final unit="1",
+ displayUnit="1",
+ final min=0,
+ final max=maxPumSpe) = 0.1
+ "Minimum pump speed"
+ annotation (Dialog(group="Pump parameters", enable=have_varPriPum));
+
+ parameter Real maxPumSpe(
+ final unit="1",
+ displayUnit="1",
+ final min=minPumSpe,
+ final max=1) = 1
+ "Maximum pump speed"
+ annotation (Dialog(group="Pump parameters", enable=have_varPriPum));
+
+ parameter Real VHotWat_flow_nominal(
+ final min=1e-6,
+ final unit="m3/s",
+ displayUnit="m3/s",
+ final quantity="VolumeFlowRate") = 0.5
+ "Total plant design hot water flow rate"
+ annotation (Dialog(group="Plant parameters"));
+
+ parameter Real boiDesFlo[nBoi](
+ final min=1e-6,
+ final unit="m3/s",
+ displayUnit="m3/s",
+ final quantity="VolumeFlowRate") = {0.5,0.5}
+ "Vector of design flowrates for all boilers in plant"
+ annotation (Dialog(group="Plant parameters"));
+
+ parameter Real maxLocDp(
+ final unit="Pa",
+ displayUnit="Pa",
+ final quantity="PressureDifference",
+ final min=1e-6) = 5*6894.75
+ "Maximum hot water loop local differential pressure setpoint"
+ annotation (Dialog(tab="Pump control parameters", group="DP-based speed regulation",
+ enable = speConTyp == Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Types.PrimaryPumpSpeedControlTypes.localDP));
+
+ parameter Real minLocDp(
+ final unit="Pa",
+ displayUnit="Pa",
+ final quantity="PressureDifference",
+ final min=1e-6) = 5*6894.75
+ "Minimum hot water loop local differential pressure setpoint"
+ annotation (Dialog(tab="Pump control parameters",
+ group="DP-based speed regulation",
+ enable = speConTyp == Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Types.PrimaryPumpSpeedControlTypes.localDP));
+
+ parameter Real offTimThr(
+ final unit="s",
+ displayUnit="s",
+ final quantity="time",
+ final min=0) = 180
+ "Threshold to check lead boiler off time"
+ annotation (Dialog(tab="Pump control parameters", group="Pump staging parameters"));
+
+ parameter Real timPer(
+ final unit="s",
+ displayUnit="s",
+ final quantity="time",
+ final min=0) = 600
+ "Delay time period for enabling and disabling lag pumps"
+ annotation (Dialog(tab="Pump control parameters", group="Pump staging parameters"));
+
+ parameter Real delBoiDis(
+ final unit="s",
+ displayUnit="s",
+ final quantity="time",
+ final min=0)=180
+ "Time delay after boilers have been disabled before completing disabling process"
+ annotation (Dialog(tab="Pump control parameters", group="Pump staging parameters"));
+
+ parameter Real staCon(
+ final unit="1",
+ displayUnit="1") = -0.03
+ "Constant used in the staging equation"
+ annotation (Dialog(tab="Pump control parameters", group="Pump staging parameters"));
+
+ parameter Real relFloHys(
+ final unit="1",
+ displayUnit="1") = 0.01
+ "Constant value used in hysteresis for checking relative flow rate"
+ annotation (Dialog(tab="Pump control parameters", group="Pump staging parameters"));
+
+ parameter Real delTim(
+ final unit="s",
+ displayUnit="s",
+ final quantity="time",
+ final min=0) = 900
+ "Delay time"
+ annotation (Dialog(tab="Pump control parameters",
+ group="Temperature-based speed regulation",
+ enable = speConTyp == Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Types.PrimaryPumpSpeedControlTypes.temperature));
+
+ parameter Real samPer(
+ final unit="s",
+ displayUnit="s",
+ final quantity="time",
+ final min=0) = 120
+ "Sample period of component"
+ annotation (Dialog(tab="Pump control parameters",
+ group="Temperature-based speed regulation",
+ enable = speConTyp == Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Types.PrimaryPumpSpeedControlTypes.temperature));
+
+ parameter Real triAmo(
+ final unit="1",
+ displayUnit="1") = -0.02
+ "Trim amount"
+ annotation (Dialog(tab="Pump control parameters",
+ group="Temperature-based speed regulation",
+ enable = speConTyp == Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Types.PrimaryPumpSpeedControlTypes.temperature));
+
+ parameter Real resAmo(
+ final unit="1",
+ displayUnit="1") = 0.03
+ "Respond amount"
+ annotation (Dialog(tab="Pump control parameters",
+ group="Temperature-based speed regulation",
+ enable = speConTyp == Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Types.PrimaryPumpSpeedControlTypes.temperature));
+
+ parameter Real maxRes(
+ final unit="1",
+ displayUnit="1") = 0.06
+ "Maximum response per time interval"
+ annotation (Dialog(tab="Pump control parameters",
+ group="Temperature-based speed regulation",
+ enable = speConTyp == Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Types.PrimaryPumpSpeedControlTypes.temperature));
+
+ parameter Real twoReqLimLow(
+ final unit="K",
+ displayUnit="K",
+ final quantity="TemperatureDifference") = 1.2
+ "Lower limit of hysteresis loop sending two requests"
+ annotation (Dialog(tab="Pump control parameters",
+ group="Temperature-based speed regulation",
+ enable = speConTyp == Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Types.PrimaryPumpSpeedControlTypes.temperature));
+
+ parameter Real twoReqLimHig(
+ final unit="K",
+ displayUnit="K",
+ final quantity="TemperatureDifference") = 2
+ "Higher limit of hysteresis loop sending two requests"
+ annotation (Dialog(tab="Pump control parameters",
+ group="Temperature-based speed regulation",
+ enable = speConTyp == Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Types.PrimaryPumpSpeedControlTypes.temperature));
+
+ parameter Real oneReqLimLow(
+ final unit="K",
+ displayUnit="K",
+ final quantity="TemperatureDifference") = 0.2
+ "Lower limit of hysteresis loop sending one request"
+ annotation (Dialog(tab="Pump control parameters",
+ group="Temperature-based speed regulation",
+ enable = speConTyp == Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Types.PrimaryPumpSpeedControlTypes.temperature));
+
+ parameter Real oneReqLimHig(
+ final unit="K",
+ displayUnit="K",
+ final quantity="TemperatureDifference") = 1
+ "Higher limit of hysteresis loop sending one request"
+ annotation (Dialog(tab="Pump control parameters",
+ group="Temperature-based speed regulation",
+ enable = speConTyp == Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Types.PrimaryPumpSpeedControlTypes.temperature));
+
+ parameter Real k(
+ final unit="1",
+ displayUnit="1",
+ final min=0) = 1
+ "Gain of controller"
+ annotation (Dialog(tab="Pump control parameters", group="PID parameters"));
+
+ parameter Real Ti(
+ final unit="s",
+ displayUnit="s",
+ final quantity="time",
+ final min=0) = 0.5
+ "Time constant of integrator block"
+ annotation (Dialog(tab="Pump control parameters", group="PID parameters"));
+
+ parameter Real Td(
+ final unit="s",
+ displayUnit="s",
+ final quantity="time",
+ final min=0) = 0.1
+ "Time constant of derivative block"
+ annotation (Dialog(tab="Pump control parameters", group="PID parameters"));
+
+ parameter Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Types.PrimaryPumpSpeedControlTypes
+ speConTyp = Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Types.PrimaryPumpSpeedControlTypes.remoteDP
+ "Speed regulation method"
+ annotation (Dialog(group="Plant parameters", enable=have_varPriPum));
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uStaUp if not have_priOnl
+ "Stage up signal"
+ annotation (Placement(transformation(extent={{-320,-210},{-280,-170}}),
+ iconTransformation(extent={{-140,90},{-100,130}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uOnOff if not have_priOnl
+ "Signal indicating stage change with simultaneous enabling and disabling of boilers"
+ annotation (Placement(transformation(extent={{-320,-240},{-280,-200}}),
+ iconTransformation(extent={{-140,60},{-100,100}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uHotWatPum[nPum]
+ "Hot water pumps operating status"
+ annotation (Placement(transformation(extent={{-320,120},{-280,160}}),
+ iconTransformation(extent={{-140,240},{-100,280}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uPlaEna
+ "Plant enabling status"
+ annotation (Placement(transformation(extent={{-320,90},{-280,130}}),
+ iconTransformation(extent={{-140,210},{-100,250}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uBoiSta[nBoi] if not have_priOnl
+ "Boiler status vector"
+ annotation (Placement(transformation(extent={{-320,-90},{-280,-50}}),
+ iconTransformation(extent={{-140,120},{-100,160}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uPumChaPro if not have_priOnl
+ "Signal indicating start of pump change process"
+ annotation (Placement(transformation(extent={{-320,-270},{-280,-230}}),
+ iconTransformation(extent={{-140,30},{-100,70}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.IntegerInput uNexEnaBoi if not have_heaPriPum
+ "Index of next enabled boiler"
+ annotation (Placement(transformation(extent={{-320,-320},{-280,-280}}),
+ iconTransformation(extent={{-140,0},{-100,40}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.IntegerInput uLasDisBoi if not have_heaPriPum
+ "Index of last disabled boiler"
+ annotation (Placement(transformation(extent={{-320,-360},{-280,-320}}),
+ iconTransformation(extent={{-140,-40},{-100,0}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.IntegerInput uPumLeaLag[nPum] if have_heaPriPum
+ "Hot water pump lead-lag order"
+ annotation (Placement(transformation(extent={{-320,210},{-280,250}}),
+ iconTransformation(extent={{-140,270},{-100,310}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput uHotIsoVal[nBoi](
+ final unit="1",
+ displayUnit="1") if have_heaPriPum
+ "Hot water isolation valve status"
+ annotation (Placement(transformation(extent={{-320,50},{-280,90}}),
+ iconTransformation(extent={{-140,180},{-100,220}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput uMinPriPumSpeCon(
+ final unit="1",
+ displayUnit="1") if have_varPriPum and not have_priOnl
+ "Minimum allowed pump speed for non-condensing boilers"
+ annotation (Placement(transformation(extent={{-320,-560},{-280,-520}}),
+ iconTransformation(extent={{-140,-160},{-100,-120}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput dpHotWat_local(
+ final unit="Pa",
+ displayUnit="Pa",
+ final quantity="PressureDifference") if have_priOnl and have_varPriPum
+ and locDPReg
+ "Hot water differential static pressure from local sensor"
+ annotation (Placement(transformation(extent={{-320,-460},{-280,-420}}),
+ iconTransformation(extent={{-140,-70},{-100,-30}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput dpHotWat_remote[nSen](
+ final unit=fill("Pa", nSen),
+ final quantity=fill("PressureDifference", nSen)) if have_priOnl and
+ have_varPriPum and (locDPReg or remDPReg)
+ "Hot water differential static pressure from remote sensor"
+ annotation (Placement(transformation(extent={{-320,-500},{-280,-460}}),
+ iconTransformation(extent={{-140,-100},{-100,-60}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput dpHotWatSet(
+ final unit="Pa",
+ final quantity="PressureDifference") if have_priOnl and have_varPriPum
+ and (locDPReg or remDPReg)
+ "Hot water differential static pressure setpoint"
+ annotation (Placement(transformation(extent={{-320,-530},{-280,-490}}),
+ iconTransformation(extent={{-140,-130},{-100,-90}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput VHotWat_flow(
+ final unit="m3/s",
+ displayUnit="m3/s",
+ final quantity="VolumeFlowRate")
+ "Hot water flow"
+ annotation (Placement(transformation(extent={{-320,-40},{-280,0}}),
+ iconTransformation(extent={{-140,150},{-100,190}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput VHotWatSec_flow(
+ final unit="m3/s",
+ displayUnit="m3/s",
+ final quantity="VolumeFlowRate") if not have_priOnl and have_varPriPum
+ and floReg and have_secFloSen
+ "Measured hot water flowrate through secondary loop"
+ annotation (Placement(transformation(extent={{-320,-600},{-280,-560}}),
+ iconTransformation(extent={{-140,-190},{-100,-150}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput VHotWatDec_flow(
+ final unit="m3/s",
+ displayUnit="m3/s",
+ final quantity="VolumeFlowRate") if not have_priOnl and have_varPriPum
+ and floReg and not have_secFloSen
+ "Measured hot water flowrate through decoupler"
+ annotation (Placement(transformation(extent={{-320,-630},{-280,-590}}),
+ iconTransformation(extent={{-140,-220},{-100,-180}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput THotWatPri(
+ final unit="K",
+ displayUnit="K",
+ final quantity="ThermodynamicTemperature") if not have_priOnl and
+ have_varPriPum and temReg and
+ have_priSecTemSen
+ "Measured hot water temperature at primary loop supply"
+ annotation (Placement(transformation(extent={{-320,-660},{-280,-620}}),
+ iconTransformation(extent={{-140,-250},{-100,-210}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput THotWatSec(
+ final unit="K",
+ displayUnit="K",
+ final quantity="ThermodynamicTemperature") if not have_priOnl and
+ have_varPriPum and temReg
+ "Measured hot water temperature at secondary loop supply"
+ annotation (Placement(transformation(extent={{-320,-690},{-280,-650}}),
+ iconTransformation(extent={{-140,-280},{-100,-240}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput THotWatBoiSup[nBoi](
+ final unit=fill("K", nBoi),
+ displayUnit=fill("K",nBoi),
+ final quantity=fill("ThermodynamicTemperature",nBoi)) if not have_priOnl
+ and have_varPriPum and temReg and not
+ have_priSecTemSen
+ "Measured hot water temperature at boiler supply"
+ annotation (Placement(transformation(extent={{-320,-720},{-280,-680}}),
+ iconTransformation(extent={{-140,-310},{-100,-270}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanOutput yHotWatPum[nPum]
+ "Hot water pump status"
+ annotation (Placement(transformation(extent={{280,-20},{320,20}}),
+ iconTransformation(extent={{100,20},{140,60}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealOutput yPumSpe(
+ final min=0,
+ final max=1,
+ final unit="1") if have_varPriPum
+ "Hot water pump speed"
+ annotation (Placement(transformation(extent={{280,-566},{320,-526}}),
+ iconTransformation(extent={{100,-60},{140,-20}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Pumps.Generic.EnableLag_flowrate
+ enaLagHotPum(
+ final nPum=nPum,
+ final nPum_nominal=nPum_nominal,
+ final timPer=timPer,
+ final staCon=staCon,
+ final relFloHys=relFloHys,
+ final VHotWat_flow_nominal=VHotWat_flow_nominal) if have_priOnl and
+ have_heaPriPum
+ "Enable lag pump for primary-only plants using differential pressure pump speed control"
+ annotation (Placement(transformation(extent={{-200,-10},{-180,10}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Pumps.Generic.Speed_localDp
+ pumSpeLocDp(
+ final controllerType=controllerType,
+ final nSen=nSen,
+ final nPum=nPum,
+ final minLocDp=minLocDp,
+ final maxLocDp=maxLocDp,
+ final minPumSpe=minPumSpe,
+ final maxPumSpe=maxPumSpe,
+ final k=k,
+ final Ti=Ti,
+ final Td=Td) if have_priOnl and have_varPriPum and locDPReg
+ "Hot water pump speed control with local DP sensor"
+ annotation (Placement(transformation(extent={{-60,-490},{-40,-470}})));
+
+protected
+ parameter Boolean remDPReg = (speConTyp == Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Types.PrimaryPumpSpeedControlTypes.remoteDP)
+ "Boolean flag for pump speed control with remote differential pressure";
+
+ parameter Boolean locDPReg = (speConTyp == Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Types.PrimaryPumpSpeedControlTypes.localDP)
+ "Boolean flag for pump speed control with local differential pressure";
+
+ parameter Boolean temReg = (speConTyp == Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Types.PrimaryPumpSpeedControlTypes.temperature)
+ "Boolean flag for pump speed control with temperature readings";
+
+ parameter Boolean floReg = (speConTyp == Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Types.PrimaryPumpSpeedControlTypes.flowrate)
+ "Boolean flag for pump speed control with flowrate readings";
+
+ parameter Integer pumInd[nPum]={i for i in 1:nPum}
+ "Pump index, {1,2,...,n}";
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant con(
+ final k=0) if have_priOnl
+ "Constant Real zero signal"
+ annotation (Placement(transformation(extent={{40,-466},{60,-446}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.GreaterThreshold greThr(
+ final t=0,
+ final h=0) if not have_heaPriPum
+ "Check if the lead boiler is turned on"
+ annotation (Placement(transformation(extent={{-192,-80},{-172,-60}})));
+
+ Buildings.Controls.OBC.CDL.Logical.And and2 if not have_heaPriPum
+ "Logical And"
+ annotation (Placement(transformation(extent={{-46,-294},{-26,-274}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Or or3 if not have_heaPriPum
+ "Logical Or"
+ annotation (Placement(transformation(extent={{-48,-328},{-28,-308}})));
+
+ Buildings.Controls.OBC.CDL.Integers.GreaterEqualThreshold intGreEquThr1(
+ final t=1)
+ "Ensure module does not enable lead pump"
+ annotation (Placement(transformation(extent={{-30,22},{-10,42}})));
+
+ Buildings.Controls.OBC.CDL.Integers.LessEqualThreshold intLesEquThr1(
+ final t=1)
+ "Ensure module does not disable lead pump"
+ annotation (Placement(transformation(extent={{18,-20},{38,0}})));
+
+ Buildings.Controls.OBC.CDL.Logical.And and3 if have_heaPriPum
+ "Logical And"
+ annotation (Placement(transformation(extent={{70,22},{90,42}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Or or4 if have_heaPriPum
+ "Logical Or"
+ annotation (Placement(transformation(extent={{72,-20},{92,0}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Max max if have_varPriPum
+ "Pass higher value"
+ annotation (Placement(transformation(extent={{134,-556},{154,-536}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Pumps.PrimaryPumps.Subsequences.EnableLead_dedicated
+ enaDedLeaPum(
+ final offTimThr=offTimThr) if not have_heaPriPum
+ "Enable lead pump of dedicated pumps"
+ annotation (Placement(transformation(extent={{-200,100},{-180,120}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Pumps.PrimaryPumps.Subsequences.EnableLead_headered
+ enaHeaLeaPum(
+ final nBoi=nBoi) if have_heaPriPum "Enable lead pump of headered pumps"
+ annotation (Placement(transformation(extent={{-200,60},{-180,80}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Pumps.Generic.Speed_remoteDp
+ pumSpeRemDp(
+ final controllerType=controllerType,
+ final nSen=nSen,
+ final nPum=nPum,
+ final minPumSpe=minPumSpe,
+ final maxPumSpe=maxPumSpe,
+ final k=k,
+ final Ti=Ti,
+ final Td=Td) if have_priOnl and have_varPriPum and remDPReg
+ "Hot water pump speed control with remote DP sensor"
+ annotation (Placement(transformation(extent={{-60,-530},{-40,-510}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Pumps.PrimaryPumps.Subsequences.Speed_flow
+ pumSpeFlo(
+ final controllerType=controllerType,
+ final primarySecondarySensors=have_secFloSen,
+ final nPum=nPum,
+ final minPumSpe=minPumSpe,
+ final maxPumSpe=maxPumSpe,
+ final k=k,
+ final Ti=Ti,
+ final Td=Td,
+ final VHotWat_flow_nominal=VHotWat_flow_nominal) if not have_priOnl and
+ have_varPriPum and floReg
+ "Pump speed control using flow sensors"
+ annotation (Placement(transformation(extent={{-60,-574},{-40,-554}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Pumps.PrimaryPumps.Subsequences.Speed_temperature
+ pumSpeTem(
+ final primarySecondarySensors=have_priSecTemSen,
+ final nBoi=nBoi,
+ final nPum=nPum,
+ final numIgnReq=numIgnReq,
+ final boiDesFlo=boiDesFlo,
+ final minPumSpe=minPumSpe,
+ final maxPumSpe=maxPumSpe,
+ final delTim=delTim,
+ final samPer=samPer,
+ final triAmo=triAmo,
+ final resAmo=resAmo,
+ final maxRes=maxRes,
+ final twoReqLimLow=twoReqLimLow,
+ final twoReqLimHig=twoReqLimHig,
+ final oneReqLimLow=oneReqLimLow,
+ final oneReqLimHig=oneReqLimHig) if not have_priOnl and have_varPriPum
+ and temReg "Pump speed control using temperature sensors"
+ annotation (Placement(transformation(extent={{-60,-608},{-40,-588}})));
+
+ Buildings.Controls.OBC.CDL.Conversions.BooleanToReal booToRea[nBoi] if not have_heaPriPum
+ "Boolean to Real conversion"
+ annotation (Placement(transformation(extent={{-252,-80},{-232,-60}})));
+
+ Buildings.Controls.OBC.CDL.Routing.RealExtractor extIndSig(
+ final nin=nBoi) if not have_heaPriPum
+ "Identify status of lead boiler"
+ annotation (Placement(transformation(extent={{-222,-80},{-202,-60}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant conInt(
+ final k=1)
+ "Constant one"
+ annotation (Placement(transformation(extent={{-274,190},{-254,210}})));
+
+ Buildings.Controls.OBC.CDL.Conversions.IntegerToReal intToRea[nPum] if have_heaPriPum
+ "Convert integer to real number"
+ annotation (Placement(transformation(extent={{-220,220},{-200,240}})));
+
+ Buildings.Controls.OBC.CDL.Routing.RealExtractor leaPum(
+ final nin=nPum) if have_heaPriPum
+ "Lead pump index"
+ annotation (Placement(transformation(extent={{-80,220},{-60,240}})));
+
+ Buildings.Controls.OBC.CDL.Conversions.RealToInteger reaToInt if have_heaPriPum
+ "Convert real input to integer output"
+ annotation (Placement(transformation(extent={{-40,220},{-20,240}})));
+
+ Buildings.Controls.OBC.CDL.Routing.RealExtractor nexLagPum(
+ final nin=nPum) if have_heaPriPum
+ "Next lag pump"
+ annotation (Placement(transformation(extent={{-80,-60},{-60,-40}})));
+
+ Buildings.Controls.OBC.CDL.Conversions.RealToInteger reaToInt1 if have_heaPriPum
+ "Convert real input to integer output"
+ annotation (Placement(transformation(extent={{-40,-60},{-20,-40}})));
+
+ Buildings.Controls.OBC.CDL.Routing.RealExtractor lasLagPum(
+ final nin=nPum) if have_heaPriPum
+ "Last lag pump"
+ annotation (Placement(transformation(extent={{-80,-110},{-60,-90}})));
+
+ Buildings.Controls.OBC.CDL.Conversions.RealToInteger reaToInt2 if have_heaPriPum
+ "Convert real input to integer output"
+ annotation (Placement(transformation(extent={{-40,-110},{-20,-90}})));
+
+ Buildings.Controls.OBC.CDL.Conversions.BooleanToInteger booToInt[nPum]
+ "Convert boolean to integer"
+ annotation (Placement(transformation(extent={{-250,-130},{-230,-110}})));
+
+ Buildings.Controls.OBC.CDL.Integers.MultiSum mulSumInt(
+ final nin=nPum)
+ "Sum of integer inputs"
+ annotation (Placement(transformation(extent={{-200,-130},{-180,-110}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Add addInt if have_heaPriPum
+ "Integer add"
+ annotation (Placement(transformation(extent={{-120,-80},{-100,-60}})));
+
+ Buildings.Controls.OBC.CDL.Conversions.BooleanToInteger booToInt1[nPum] if
+ have_heaPriPum and (not have_priOnl)
+ "Convert boolean to integer"
+ annotation (Placement(transformation(extent={{-250,-166},{-230,-146}})));
+
+ Buildings.Controls.OBC.CDL.Integers.MultiSum mulSumInt1(
+ final nin=nBoi) if have_heaPriPum and (not have_priOnl)
+ "Sum of integer inputs"
+ annotation (Placement(transformation(extent={{-200,-166},{-180,-146}})));
+
+ Buildings.Controls.OBC.CDL.Conversions.BooleanToInteger booToInt2[nPum] if
+ have_heaPriPum and (not have_priOnl)
+ "Convert boolean to integer"
+ annotation (Placement(transformation(extent={{-248,-250},{-228,-230}})));
+
+ Buildings.Controls.OBC.CDL.Integers.MultiSum mulSumInt2(
+ final nin=nBoi) if have_heaPriPum and (not have_priOnl)
+ "Sum of integer inputs"
+ annotation (Placement(transformation(extent={{-202,-250},{-182,-230}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Or or1 if not have_priOnl
+ "Logical or"
+ annotation (Placement(transformation(extent={{-250,-200},{-230,-180}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Add addInt1 if have_heaPriPum and (not have_priOnl)
+ "Increase number of enabled boilers by one to initiate pump enable"
+ annotation (Placement(transformation(extent={{-130,-170},{-110,-150}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Switch intSwi if have_heaPriPum and (not have_priOnl)
+ "Integer switch"
+ annotation (Placement(transformation(extent={{-96,-200},{-76,-180}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Greater intGre if have_heaPriPum and (not
+ have_priOnl)
+ "Check if more boilers than pumps are enabled"
+ annotation (Placement(transformation(extent={{-40,-200},{-20,-180}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Less intLes if have_heaPriPum and (not
+ have_priOnl)
+ "Check if less boilers than pumps are enabled"
+ annotation (Placement(transformation(extent={{-38,-250},{-18,-230}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Latch lat if not have_priOnl
+ "Hold true signal when a pump needs to be enabled for stage change"
+ annotation (Placement(transformation(extent={{-200,-200},{-180,-180}})));
+
+ Buildings.Controls.OBC.CDL.Logical.And and4 if have_heaPriPum and (not
+ have_priOnl)
+ "Initiate the pump enable process"
+ annotation (Placement(transformation(extent={{0,-200},{20,-180}})));
+
+ Buildings.Controls.OBC.CDL.Logical.And and5 if have_heaPriPum and (not
+ have_priOnl)
+ "Initiate the pump disable process"
+ annotation (Placement(transformation(extent={{0,-250},{20,-230}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Not not1 if have_heaPriPum and (not
+ have_priOnl)
+ "Logical not"
+ annotation (Placement(transformation(extent={{50,-250},{70,-230}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Pumps.Generic.ChangeStatus
+ chaPumSta(final nPum=nPum) if
+ not have_heaPriPum
+ "Change lead pump status for dedicated primary pumps"
+ annotation (Placement(transformation(extent={{58,100},{80,120}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Pumps.Generic.ChangeStatus
+ chaPumSta1(
+ final nPum=nPum) if have_heaPriPum
+ "Change lead pump status for headered primary pumps"
+ annotation (Placement(transformation(extent={{58,66},{80,86}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Pumps.Generic.ChangeStatus
+ chaPumSta2(
+ final nPum=nPum) if have_priOnl and have_heaPriPum
+ "Change lag pump status for headered primary pumps in a plant that is primary-only"
+ annotation (Placement(transformation(extent={{128,-42},{150,-22}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Pumps.Generic.ChangeStatus
+ chaPumSta3(
+ final nPum=nPum) if have_heaPriPum and (not have_priOnl)
+ "Change lag pump status for headered primary pumps in a plant that is not primary-only"
+ annotation (Placement(transformation(extent={{130,-182},{152,-162}})));
+
+ Buildings.Controls.OBC.CDL.Logical.And and1 if not have_heaPriPum
+ "Lag pump enable"
+ annotation (Placement(transformation(extent={{-148,-294},{-128,-274}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Not not2 if not have_heaPriPum
+ "Logical not"
+ annotation (Placement(transformation(extent={{-148,-330},{-128,-310}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Pumps.Generic.ChangeStatus
+ chaPumSta4(
+ final nPum=nPum) if not have_heaPriPum
+ "Change lag pump status for dedicated primary pumps"
+ annotation (Placement(transformation(extent={{62,-314},{84,-294}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Or or2 if not have_heaPriPum
+ "Lag pump disable"
+ annotation (Placement(transformation(extent={{-110,-312},{-90,-292}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Not not3
+ "Logical Not"
+ annotation (Placement(transformation(extent={{-200,30},{-180,50}})));
+
+ Buildings.Controls.OBC.CDL.Logical.TrueDelay truDel(
+ final delayTime=delBoiDis)
+ "Delay pump disable after boilers have been disabled"
+ annotation (Placement(transformation(extent={{-120,30},{-100,50}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Switch logSwi[nPum]
+ "Logical switch"
+ annotation (Placement(transformation(extent={{182,-42},{202,-22}})));
+
+ Buildings.Controls.OBC.CDL.Routing.BooleanScalarReplicator booRep(
+ final nout=nPum)
+ "Boolean replicator"
+ annotation (Placement(transformation(extent={{142,30},{162,50}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant con1[nPum](
+ final k=fill(false, nPum))
+ "Boolean False signal"
+ annotation (Placement(transformation(extent={{128,0},{148,20}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Latch lat1 if not have_priOnl
+ "Latch to hold process completion signal"
+ annotation (Placement(transformation(extent={{-60,-400},{-40,-380}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Xor xor[nPum] if not have_priOnl
+ "Check if all pumps are enabled and disabled as required"
+ annotation (Placement(transformation(extent={{-180,-400},{-160,-380}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Not not4[nPum] if not have_priOnl
+ "True signal for pumps that are at correct state"
+ annotation (Placement(transformation(extent={{-140,-400},{-120,-380}})));
+
+ Buildings.Controls.OBC.CDL.Logical.MultiAnd mulAnd(nin=nPum) if not have_priOnl
+ "Check if all pumps are at desired status"
+ annotation (Placement(transformation(extent={{-100,-400},{-80,-380}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Pre pre1[nPum] if not have_priOnl
+ "Logical pre block"
+ annotation (Placement(transformation(extent={{-220,-400},{-200,-380}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Not not5 if not have_priOnl
+ "Generate true signal when process is incomplete"
+ annotation (Placement(transformation(extent={{-20,-400},{0,-380}})));
+
+equation
+ connect(enaDedLeaPum.uPlaEna, uPlaEna) annotation (Line(points={{-202,115},{-240,
+ 115},{-240,110},{-300,110}}, color={255,0,255}));
+
+ connect(uPumLeaLag, intToRea.u)
+ annotation (Line(points={{-300,230},{-222,230}}, color={255,127,0}));
+
+ connect(intToRea.y, leaPum.u)
+ annotation (Line(points={{-198,230},{-82,230}}, color={0,0,127}));
+
+ connect(conInt.y, leaPum.index)
+ annotation (Line(points={{-252,200},{-70,200},{-70,218}}, color={255,127,0}));
+
+ connect(leaPum.y, reaToInt.u)
+ annotation (Line(points={{-58,230},{-42,230}},color={0,0,127}));
+
+ connect(intToRea.y, nexLagPum.u)
+ annotation (Line(points={{-198,230},{-160,230},{-160,-50},{-82,-50}},
+ color={0,0,127}));
+
+ connect(nexLagPum.y, reaToInt1.u)
+ annotation (Line(points={{-58,-50},{-42,-50}}, color={0,0,127}));
+
+ connect(lasLagPum.y, reaToInt2.u)
+ annotation (Line(points={{-58,-100},{-42,-100}}, color={0,0,127}));
+
+ connect(enaLagHotPum.VHotWat_flow,VHotWat_flow)
+ annotation (Line(points={{-202,4},{-266,4},{-266,-20},{-300,-20}},
+ color={0,0,127}));
+
+ connect(uHotWatPum,enaLagHotPum.uHotWatPum)
+ annotation (Line(points={{-300,140},{-260,140},{-260,-3.8},{-202,-3.8}},
+ color={255,0,255}));
+
+ connect(intToRea.y, lasLagPum.u)
+ annotation (Line(points={{-198,230},{-160,230},{-160,-100},{-82,-100}},
+ color={0,0,127}));
+
+ connect(pumSpeLocDp.dpHotWat_local,dpHotWat_local)
+ annotation (Line(points={{-62,-472},{-230,-472},{-230,-440},{-300,-440}},
+ color={0,0,127}));
+
+ connect(pumSpeLocDp.dpHotWat_remote,dpHotWat_remote)
+ annotation (Line(points={{-62,-484},{-200,-484},{-200,-480},{-300,-480}},
+ color={0,0,127}));
+
+ connect(pumSpeLocDp.dpHotWatSet,dpHotWatSet)
+ annotation (Line(points={{-62,-488},{-220,-488},{-220,-510},{-300,-510}},
+ color={0,0,127}));
+
+ connect(dpHotWat_remote,pumSpeRemDp.dpHotWat)
+ annotation (Line(points={{-300,-480},{-200,-480},{-200,-520},{-62,-520}},
+ color={0,0,127}));
+
+ connect(dpHotWatSet,pumSpeRemDp.dpHotWatSet)
+ annotation (Line(points={{-300,-510},{-220,-510},{-220,-528},{-62,-528}},
+ color={0,0,127}));
+
+ connect(uHotWatPum, booToInt.u)
+ annotation (Line(points={{-300,140},{-260,140},{-260,-120},{-252,-120}},
+ color={255,0,255}));
+
+ connect(booToInt.y, mulSumInt.u)
+ annotation (Line(points={{-228,-120},{-202,-120}}, color={255,127,0}));
+
+ connect(addInt.y, nexLagPum.index)
+ annotation (Line(points={{-98,-70},{-70,-70},{-70,-62}}, color={255,127,0}));
+
+ connect(mulSumInt.y, addInt.u2)
+ annotation (Line(points={{-178,-120},{-128,-120},{-128,-76},{-122,-76}},
+ color={255,127,0}));
+
+ connect(conInt.y, addInt.u1)
+ annotation (Line(points={{-252,200},{-140,200},{-140,-64},{-122,-64}},
+ color={255,127,0}));
+
+ connect(mulSumInt.y, lasLagPum.index)
+ annotation (Line(points={{-178,-120},{-70,-120},{-70,-112}}, color={255,127,0}));
+
+ connect(uHotIsoVal, enaHeaLeaPum.uHotWatIsoVal) annotation (Line(points={{-300,70},
+ {-202,70}}, color={0,0,127}));
+
+ connect(VHotWat_flow,pumSpeFlo. VHotWatPri_flow) annotation (Line(points={{-300,
+ -20},{-266,-20},{-266,-564},{-62,-564}}, color={0,0,127}));
+
+ connect(VHotWatSec_flow,pumSpeFlo. VHotWatSec_flow) annotation (Line(points={{-300,
+ -580},{-240,-580},{-240,-569},{-62,-569}}, color={0,0,127}));
+
+ connect(VHotWatDec_flow,pumSpeFlo. VHotWatDec_flow) annotation (Line(points={{-300,
+ -610},{-240,-610},{-240,-569},{-62,-569}}, color={0,0,127}));
+
+ connect(THotWatPri, pumSpeTem.THotWatPri) annotation (Line(points={{-300,-640},
+ {-80,-640},{-80,-594},{-62,-594}}, color={0,0,127}));
+
+ connect(THotWatSec, pumSpeTem.THotWatSec) annotation (Line(points={{-300,-670},
+ {-76,-670},{-76,-598},{-62,-598}}, color={0,0,127}));
+
+ connect(THotWatBoiSup, pumSpeTem.THotWatBoiSup) annotation (Line(points={{-300,
+ -700},{-68,-700},{-68,-606},{-62,-606}}, color={0,0,127}));
+
+ connect(uBoiSta, pumSpeTem.uBoiSta) annotation (Line(points={{-300,-70},{-270,
+ -70},{-270,-602},{-62,-602}}, color={255,0,255}));
+
+ connect(uBoiSta, booToRea.u)
+ annotation (Line(points={{-300,-70},{-254,-70}}, color={255,0,255}));
+
+ connect(booToRea.y, extIndSig.u)
+ annotation (Line(points={{-230,-70},{-224,-70}}, color={0,0,127}));
+
+ connect(conInt.y, extIndSig.index) annotation (Line(points={{-252,200},{-140,200},
+ {-140,-88},{-212,-88},{-212,-82}}, color={255,127,0}));
+
+ connect(uBoiSta, booToInt1.u) annotation (Line(points={{-300,-70},{-270,-70},{
+ -270,-156},{-252,-156}}, color={255,0,255}));
+
+ connect(booToInt1.y, mulSumInt1.u[1:nPum]) annotation (Line(points={{-228,-156},
+ {-202,-156}}, color={255,127,0}));
+
+ connect(booToInt2.y,mulSumInt2. u[1:nPum]) annotation (Line(points={{-226,-240},
+ {-204,-240}}, color={255,127,0}));
+
+ connect(uHotWatPum, booToInt2.u) annotation (Line(points={{-300,140},{-260,140},
+ {-260,-240},{-250,-240}}, color={255,0,255}));
+
+ connect(or1.u1, uStaUp)
+ annotation (Line(points={{-252,-190},{-300,-190}}, color={255,0,255}));
+
+ connect(uOnOff, or1.u2) annotation (Line(points={{-300,-220},{-256,-220},{-256,
+ -198},{-252,-198}}, color={255,0,255}));
+
+ connect(conInt.y, addInt1.u1) annotation (Line(points={{-252,200},{-140,200},{
+ -140,-154},{-132,-154}}, color={255,127,0}));
+
+ connect(mulSumInt1.y, addInt1.u2) annotation (Line(points={{-178,-156},{-154,-156},
+ {-154,-166},{-132,-166}}, color={255,127,0}));
+
+ connect(addInt1.y, intSwi.u1) annotation (Line(points={{-108,-160},{-104,-160},
+ {-104,-182},{-98,-182}}, color={255,127,0}));
+
+ connect(mulSumInt1.y, intSwi.u3) annotation (Line(points={{-178,-156},{-154,-156},
+ {-154,-198},{-98,-198}}, color={255,127,0}));
+
+ connect(intSwi.y, intGre.u1)
+ annotation (Line(points={{-74,-190},{-42,-190}}, color={255,127,0}));
+
+ connect(mulSumInt2.y, intGre.u2) annotation (Line(points={{-180,-240},{-72,-240},
+ {-72,-198},{-42,-198}}, color={255,127,0}));
+
+ connect(intSwi.y, intLes.u1) annotation (Line(points={{-74,-190},{-56,-190},{-56,
+ -240},{-40,-240}}, color={255,127,0}));
+
+ connect(mulSumInt2.y, intLes.u2) annotation (Line(points={{-180,-240},{-72,-240},
+ {-72,-248},{-40,-248}}, color={255,127,0}));
+
+ connect(or1.y, lat.u)
+ annotation (Line(points={{-228,-190},{-202,-190}}, color={255,0,255}));
+
+ connect(lat.y, intSwi.u2)
+ annotation (Line(points={{-178,-190},{-98,-190}}, color={255,0,255}));
+
+ connect(intGre.y, and4.u1)
+ annotation (Line(points={{-18,-190},{-2,-190}}, color={255,0,255}));
+
+ connect(intLes.y, and5.u1)
+ annotation (Line(points={{-16,-240},{-2,-240}}, color={255,0,255}));
+
+ connect(not1.u, and5.y)
+ annotation (Line(points={{48,-240},{22,-240}}, color={255,0,255}));
+
+ connect(pumSpeRemDp.yHotWatPumSpe, max.u2) annotation (Line(points={{-38,-520},
+ {96,-520},{96,-552},{132,-552}}, color={0,0,127}));
+
+ connect(pumSpeLocDp.yHotWatPumSpe, max.u2) annotation (Line(points={{-38,-480},
+ {96,-480},{96,-552},{132,-552}}, color={0,0,127}));
+
+ connect(pumSpeFlo.yHotWatPumSpe, max.u2) annotation (Line(points={{-38,-564},{
+ 96,-564},{96,-552},{132,-552}}, color={0,0,127}));
+
+ connect(pumSpeTem.yHotWatPumSpe, max.u2) annotation (Line(points={{-38,-598},{
+ 96,-598},{96,-552},{132,-552}}, color={0,0,127}));
+
+ connect(uMinPriPumSpeCon, max.u1)
+ annotation (Line(points={{-300,-540},{132,-540}}, color={0,0,127}));
+
+ connect(enaDedLeaPum.yLea, chaPumSta.uNexLagPumSta) annotation (Line(points={
+ {-178,110},{22,110},{22,118},{56,118}}, color={255,0,255}));
+
+ connect(enaDedLeaPum.yLea, chaPumSta.uLasLagPumSta) annotation (Line(points={
+ {-178,110},{22,110},{22,115},{56,115}}, color={255,0,255}));
+
+ connect(reaToInt.y, chaPumSta1.uNexLagPum) annotation (Line(points={{-18,230},
+ {46,230},{46,72},{56,72}}, color={255,127,0}));
+
+ connect(reaToInt.y, chaPumSta1.uLasLagPum) annotation (Line(points={{-18,230},
+ {46,230},{46,68},{56,68}}, color={255,127,0}));
+
+ connect(enaHeaLeaPum.yLea, chaPumSta1.uNexLagPumSta) annotation (Line(points=
+ {{-178,70},{36,70},{36,84},{56,84}}, color={255,0,255}));
+
+ connect(enaHeaLeaPum.yLea, chaPumSta1.uLasLagPumSta) annotation (Line(points=
+ {{-178,70},{36,70},{36,81},{56,81}}, color={255,0,255}));
+
+ connect(uHotWatPum, chaPumSta.uHotWatPum) annotation (Line(points={{-300,140},
+ {26,140},{26,110},{56,110}}, color={255,0,255}));
+
+ connect(uHotWatPum, chaPumSta1.uHotWatPum) annotation (Line(points={{-300,140},
+ {26,140},{26,76},{56,76}}, color={255,0,255}));
+
+ connect(reaToInt1.y, chaPumSta2.uNexLagPum) annotation (Line(points={{-18,-50},
+ {30,-50},{30,-36},{126,-36}},color={255,127,0}));
+
+ connect(reaToInt2.y, chaPumSta2.uLasLagPum) annotation (Line(points={{-18,
+ -100},{34,-100},{34,-40},{126,-40}},color={255,127,0}));
+
+ connect(reaToInt1.y, chaPumSta3.uNexLagPum) annotation (Line(points={{-18,-50},
+ {30,-50},{30,-176},{128,-176}},color={255,127,0}));
+
+ connect(reaToInt2.y, chaPumSta3.uLasLagPum) annotation (Line(points={{-18,
+ -100},{34,-100},{34,-180},{128,-180}},color={255,127,0}));
+
+ connect(lat.y, and1.u1) annotation (Line(points={{-178,-190},{-170,-190},{
+ -170,-284},{-150,-284}}, color={255,0,255}));
+
+ connect(lat.y, or2.u1) annotation (Line(points={{-178,-190},{-170,-190},{-170,
+ -302},{-112,-302}}, color={255,0,255}));
+
+ connect(not2.y, or2.u2) annotation (Line(points={{-126,-320},{-118,-320},{
+ -118,-310},{-112,-310}}, color={255,0,255}));
+
+ connect(uNexEnaBoi, chaPumSta4.uNexLagPum) annotation (Line(points={{-300,
+ -300},{-188,-300},{-188,-334},{26,-334},{26,-308},{60,-308}}, color={
+ 255,127,0}));
+
+ connect(uLasDisBoi, chaPumSta4.uLasLagPum) annotation (Line(points={{-300,
+ -340},{32,-340},{32,-312},{60,-312}}, color={255,127,0}));
+
+ connect(chaPumSta.yHotWatPum, chaPumSta4.uHotWatPum) annotation (Line(points=
+ {{80,110},{104,110},{104,-266},{52,-266},{52,-304},{60,-304}}, color=
+ {255,0,255}));
+
+ connect(chaPumSta1.yHotWatPum, chaPumSta2.uHotWatPum) annotation (Line(points={{80,76},
+ {100,76},{100,-32},{126,-32}}, color={255,0,
+ 255}));
+ connect(chaPumSta1.yHotWatPum, chaPumSta3.uHotWatPum) annotation (Line(points={{80,76},
+ {100,76},{100,-172},{128,-172}}, color={
+ 255,0,255}));
+
+ connect(greThr.u, extIndSig.y)
+ annotation (Line(points={{-194,-70},{-200,-70}}, color={0,0,127}));
+ connect(greThr.y, enaDedLeaPum.uLeaBoiSta) annotation (Line(points={{-170,-70},
+ {-166,-70},{-166,-42},{-218,-42},{-218,105},{-202,105}}, color={255,0,
+ 255}));
+ connect(and1.y, and2.u1)
+ annotation (Line(points={{-126,-284},{-48,-284}}, color={255,0,255}));
+ connect(or2.y, or3.u1) annotation (Line(points={{-88,-302},{-70,-302},{-70,-318},
+ {-50,-318}},color={255,0,255}));
+ connect(and2.y, chaPumSta4.uNexLagPumSta) annotation (Line(points={{-24,-284},
+ {-20,-284},{-20,-296},{60,-296}}, color={255,0,255}));
+ connect(or3.y, chaPumSta4.uLasLagPumSta) annotation (Line(points={{-26,-318},{
+ 48,-318},{48,-299},{60,-299}}, color={255,0,255}));
+ connect(intGreEquThr1.y, and3.u1)
+ annotation (Line(points={{-8,32},{68,32}}, color={255,0,255}));
+ connect(enaLagHotPum.yUp, and3.u2) annotation (Line(points={{-178,4},{2,4},{2,
+ 24},{68,24}}, color={255,0,255}));
+ connect(or4.y, chaPumSta2.uLasLagPumSta) annotation (Line(points={{94,-10},{
+ 108,-10},{108,-27},{126,-27}}, color={255,0,255}));
+ connect(and3.y, chaPumSta2.uNexLagPumSta) annotation (Line(points={{92,32},{
+ 112,32},{112,-24},{126,-24}}, color={255,0,255}));
+ connect(intLesEquThr1.y, or4.u1)
+ annotation (Line(points={{40,-10},{70,-10}}, color={255,0,255}));
+ connect(enaLagHotPum.yDown, or4.u2) annotation (Line(points={{-178,-4},{2,-4},
+ {2,-28},{66,-28},{66,-18},{70,-18}}, color={255,0,255}));
+ connect(and4.y, and3.u2) annotation (Line(points={{22,-190},{50,-190},{50,24},
+ {68,24}}, color={255,0,255}));
+ connect(not1.y, or4.u2) annotation (Line(points={{72,-240},{76,-240},{76,-212},
+ {54,-212},{54,-28},{66,-28},{66,-18},{70,-18}}, color={255,0,255}));
+ connect(or4.y, chaPumSta3.uLasLagPumSta) annotation (Line(points={{94,-10},{
+ 108,-10},{108,-167},{128,-167}}, color={255,0,255}));
+ connect(and3.y, chaPumSta3.uNexLagPumSta) annotation (Line(points={{92,32},{
+ 112,32},{112,-164},{128,-164}}, color={255,0,255}));
+ connect(mulSumInt.y, intGreEquThr1.u) annotation (Line(points={{-178,-120},{
+ -48,-120},{-48,32},{-32,32}}, color={255,127,0}));
+ connect(mulSumInt.y, intLesEquThr1.u) annotation (Line(points={{-178,-120},{8,
+ -120},{8,-10},{16,-10}}, color={255,127,0}));
+ connect(con.y, max.u1) annotation (Line(points={{62,-456},{82,-456},{82,-540},
+ {132,-540}}, color={0,0,127}));
+ connect(uPlaEna, not3.u) annotation (Line(points={{-300,110},{-240,110},{-240,
+ 40},{-202,40}}, color={255,0,255}));
+ connect(not3.y, truDel.u)
+ annotation (Line(points={{-178,40},{-122,40}}, color={255,0,255}));
+ connect(truDel.y, booRep.u) annotation (Line(points={{-98,40},{-48,40},{-48,54},
+ {122,54},{122,40},{140,40}}, color={255,0,255}));
+ connect(chaPumSta2.yHotWatPum, logSwi.u3) annotation (Line(points={{150,-32},{
+ 166,-32},{166,-40},{180,-40}}, color={255,0,255}));
+ connect(booRep.y, logSwi.u2) annotation (Line(points={{164,40},{174,40},{174,-32},
+ {180,-32}}, color={255,0,255}));
+ connect(con1.y, logSwi.u1) annotation (Line(points={{150,10},{166,10},{166,-24},
+ {180,-24}}, color={255,0,255}));
+ connect(logSwi.y, yHotWatPum) annotation (Line(points={{204,-32},{248,-32},{248,
+ 0},{300,0}}, color={255,0,255}));
+ connect(chaPumSta3.yHotWatPum, logSwi.u3) annotation (Line(points={{152,-172},
+ {166,-172},{166,-40},{180,-40}}, color={255,0,255}));
+ connect(chaPumSta4.yHotWatPum, logSwi.u3) annotation (Line(points={{84,-304},{
+ 166,-304},{166,-40},{180,-40}}, color={255,0,255}));
+ connect(uNexEnaBoi, chaPumSta.uNexLagPum) annotation (Line(points={{-300,-300},
+ {-278,-300},{-278,98},{22,98},{22,106},{56,106}}, color={255,127,0}));
+ connect(uLasDisBoi, chaPumSta.uLasLagPum) annotation (Line(points={{-300,-340},
+ {-264,-340},{-264,96},{28,96},{28,102},{56,102}}, color={255,127,0}));
+ connect(uHotWatPum, pumSpeLocDp.uHotWatPum) annotation (Line(points={{-300,140},
+ {-260,140},{-260,-476},{-62,-476}}, color={255,0,255}));
+ connect(uHotWatPum, pumSpeRemDp.uHotWatPum) annotation (Line(points={{-300,140},
+ {-260,140},{-260,-512},{-62,-512}}, color={255,0,255}));
+ connect(uHotWatPum, pumSpeFlo.uHotWatPum) annotation (Line(points={{-300,140},
+ {-260,140},{-260,-559},{-62,-559}}, color={255,0,255}));
+ connect(uHotWatPum, pumSpeTem.uHotWatPum) annotation (Line(points={{-300,140},
+ {-260,140},{-260,-590},{-62,-590}}, color={255,0,255}));
+ connect(max.y, yPumSpe)
+ annotation (Line(points={{156,-546},{300,-546}}, color={0,0,127}));
+ connect(xor.y, not4.u)
+ annotation (Line(points={{-158,-390},{-142,-390}}, color={255,0,255}));
+ connect(not4.y, mulAnd.u[1:nPum]) annotation (Line(points={{-118,-390},{-110,-390},
+ {-110,-390},{-102,-390}}, color={255,0,255}));
+ connect(mulAnd.y, lat1.u)
+ annotation (Line(points={{-78,-390},{-62,-390}}, color={255,0,255}));
+ connect(pre1.y, xor.u1)
+ annotation (Line(points={{-198,-390},{-182,-390}}, color={255,0,255}));
+ connect(logSwi.y, pre1.u) annotation (Line(points={{204,-32},{248,-32},{248,-370},
+ {-240,-370},{-240,-390},{-222,-390}}, color={255,0,255}));
+ connect(uHotWatPum, xor.u2) annotation (Line(points={{-300,140},{-260,140},{-260,
+ -360},{-190,-360},{-190,-398},{-182,-398}}, color={255,0,255}));
+ connect(uPumChaPro, lat1.clr) annotation (Line(points={{-300,-250},{-274,-250},
+ {-274,-410},{-70,-410},{-70,-396},{-62,-396}}, color={255,0,255}));
+ connect(lat1.y, not5.u)
+ annotation (Line(points={{-38,-390},{-22,-390}}, color={255,0,255}));
+ connect(intGreEquThr1.y, and2.u2) annotation (Line(points={{-8,32},{58,32},{58,
+ -206},{82,-206},{82,-260},{-58,-260},{-58,-292},{-48,-292}}, color={255,
+ 0,255}));
+ connect(intLesEquThr1.y, or3.u2) annotation (Line(points={{40,-10},{62,-10},{62,
+ -200},{88,-200},{88,-342},{-64,-342},{-64,-326},{-50,-326}}, color={255,
+ 0,255}));
+ connect(lat1.y, lat.clr) annotation (Line(points={{-38,-390},{-34,-390},{-34,
+ -366},{-176,-366},{-176,-206},{-216,-206},{-216,-196},{-202,-196}},
+ color={255,0,255}));
+ connect(not5.y, not2.u) annotation (Line(points={{2,-390},{20,-390},{20,-360},
+ {-160,-360},{-160,-320},{-150,-320}}, color={255,0,255}));
+ connect(not5.y, and1.u2) annotation (Line(points={{2,-390},{20,-390},{20,-360},
+ {-160,-360},{-160,-292},{-150,-292}}, color={255,0,255}));
+ connect(not5.y, and4.u2) annotation (Line(points={{2,-390},{20,-390},{20,-360},
+ {-160,-360},{-160,-266},{-10,-266},{-10,-198},{-2,-198}}, color={255,
+ 0,255}));
+ connect(not5.y, and5.u2) annotation (Line(points={{2,-390},{20,-390},{20,-360},
+ {-160,-360},{-160,-266},{-10,-266},{-10,-248},{-2,-248}}, color={255,
+ 0,255}));
+annotation (defaultComponentName="priPumCon",
+ Diagram(coordinateSystem(preserveAspectRatio=false,extent={{-280,-720},{280,260}}),
+ graphics={
+ Rectangle(
+ extent={{-276,256},{274,60}},
+ fillColor={210,210,210},
+ fillPattern=FillPattern.Solid,
+ pattern=LinePattern.None),
+ Text(
+ extent={{206,248},{270,232}},
+ pattern=LinePattern.None,
+ fillColor={210,210,210},
+ fillPattern=FillPattern.Solid,
+ textColor={0,0,127},
+ horizontalAlignment=TextAlignment.Right,
+ textString="Enable lead pump"),
+ Rectangle(
+ extent={{-276,56},{274,-136}},
+ fillColor={210,210,210},
+ fillPattern=FillPattern.Solid,
+ pattern=LinePattern.None),
+ Text(
+ extent={{192,52},{270,36}},
+ pattern=LinePattern.None,
+ fillColor={210,210,210},
+ fillPattern=FillPattern.Solid,
+ textColor={0,0,127},
+ horizontalAlignment=TextAlignment.Right,
+ textString="Enable next lag pump"),
+ Text(
+ extent={{188,-126},{266,-136}},
+ pattern=LinePattern.None,
+ fillColor={210,210,210},
+ fillPattern=FillPattern.Solid,
+ textColor={0,0,127},
+ horizontalAlignment=TextAlignment.Right,
+ textString="Disable last lag pump"),
+ Rectangle(
+ extent={{-278,-420},{272,-714}},
+ fillColor={210,210,210},
+ fillPattern=FillPattern.Solid,
+ pattern=LinePattern.None),
+ Text(
+ extent={{220,-422},{266,-434}},
+ pattern=LinePattern.None,
+ fillColor={210,210,210},
+ fillPattern=FillPattern.Solid,
+ textColor={0,0,127},
+ horizontalAlignment=TextAlignment.Right,
+ textString="Pump speed"),
+ Rectangle(
+ extent={{-276,-268},{274,-356}},
+ fillColor={210,210,210},
+ fillPattern=FillPattern.Solid,
+ pattern=LinePattern.None),
+ Text(
+ extent={{74,-272},{262,-286}},
+ pattern=LinePattern.None,
+ fillColor={210,210,210},
+ fillPattern=FillPattern.Solid,
+ textColor={0,0,127},
+ horizontalAlignment=TextAlignment.Right,
+ textString="Enable/Disable lag pumps for dedicated primary pumps"),
+ Rectangle(
+ extent={{-276,-140},{274,-264}},
+ fillColor={210,210,210},
+ fillPattern=FillPattern.Solid,
+ pattern=LinePattern.None),
+ Text(
+ extent={{178,-146},{264,-202}},
+ pattern=LinePattern.None,
+ fillColor={210,210,210},
+ fillPattern=FillPattern.Solid,
+ textColor={0,0,127},
+ horizontalAlignment=TextAlignment.Left,
+ textString="Enable/Disable lag pumps
+for headered pumps in
+plants that are not
+primary-only")}),
+ Icon(coordinateSystem(preserveAspectRatio=false, extent={{-100,-300},{100,300}}),
+ graphics={
+ Rectangle(
+ extent={{-100,-300},{100,300}},
+ lineColor={0,0,0},
+ fillColor={255,255,255},
+ fillPattern=FillPattern.Solid),
+ Text(
+ extent={{-100,350},{100,310}},
+ textColor={0,0,255},
+ textString="%name"),
+ Rectangle(
+ extent={{-80,60},{82,-60}},
+ lineColor={28,108,200},
+ fillColor={210,210,210},
+ fillPattern=FillPattern.Solid,
+ borderPattern=BorderPattern.Raised),
+ Polygon(
+ points={{-80,60},{-14,4},{-80,-60},{-80,60}},
+ lineColor={175,175,175},
+ fillColor={175,175,175},
+ fillPattern=FillPattern.Solid)}),
+Documentation(info="
+
+Primary hot water pump control sequence per ASHRAE RP-1711, March, 2020 draft,
+section 5.3.6. It consists of:
+
+
+-
+Subsequences to enable lead pump,
+
+
+-
+Subsequences to stage lag pumps
+
+
-
+Subsequences to control pump speed,
+
+
+
+
+The parameter values for valid pump configurations are as follows:
+
+
+
+
+
+ Parameters/Pump configurations |
+ 1 |
+ 2 |
+ 3 |
+ 4 |
+ 5 |
+ 6 |
+ 7 |
+ 8 |
+ 9 |
+ 10 |
+ 11 |
+ 12 |
+
+
+
+
+ have_priOnl |
+ TRUE |
+ TRUE |
+ FALSE |
+ FALSE |
+ FALSE |
+ FALSE |
+ FALSE |
+ FALSE |
+ FALSE |
+ FALSE |
+ FALSE |
+ FALSE |
+
+
+ have_heaPriPum |
+ TRUE |
+ TRUE |
+ TRUE |
+ TRUE |
+ TRUE |
+ TRUE |
+ TRUE |
+ FALSE |
+ FALSE |
+ FALSE |
+ FALSE |
+ FALSE |
+
+
+ have_varPriPum |
+ TRUE |
+ TRUE |
+ TRUE |
+ TRUE |
+ TRUE |
+ TRUE |
+ FALSE |
+ TRUE |
+ TRUE |
+ TRUE |
+ TRUE |
+ FALSE |
+
+
+ speConTyp |
+ remoteDP |
+ localDP |
+ flowrate |
+ flowrate |
+ temperature |
+ temperature |
+ NA |
+ flowrate |
+ flowrate |
+ temperature |
+ temperature |
+ NA |
+
+
+ have_secFloSen |
+ NA |
+ NA |
+ TRUE |
+ FALSE |
+ NA |
+ NA |
+ NA |
+ TRUE |
+ FALSE |
+ NA |
+ NA |
+ NA |
+
+
+ have_priSecTemSen |
+ NA |
+ NA |
+ NA |
+ NA |
+ TRUE |
+ FALSE |
+ NA |
+ NA |
+NA |
+TRUE |
+FALSE |
+NA |
+
+
+
+",
+revisions="
+
+-
+August 11, 2020, by Karthik Devaprasad:
+First implementation.
+
+
+"));
+end Controller;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Pumps/PrimaryPumps/Subsequences/EnableLead_dedicated.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Pumps/PrimaryPumps/Subsequences/EnableLead_dedicated.mo
new file mode 100644
index 00000000000..55a7b9fa0b7
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Pumps/PrimaryPumps/Subsequences/EnableLead_dedicated.mo
@@ -0,0 +1,109 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Pumps.PrimaryPumps.Subsequences;
+block EnableLead_dedicated
+ "Sequence to enable or disable the lead pump of plants with dedicated primary hot water pumps"
+
+ parameter Real offTimThr(
+ final unit="s",
+ displayUnit="s",
+ final quantity="time") = 180
+ "Threshold to check lead boiler off time";
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uPlaEna
+ "Plant enabling status"
+ annotation (Placement(transformation(extent={{-140,30},{-100,70}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uLeaBoiSta
+ "Lead boiler status"
+ annotation (Placement(transformation(extent={{-140,-70},{-100,-30}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanOutput yLea
+ "Lead pump status"
+ annotation (Placement(transformation(extent={{100,-20},{140,20}}),
+ iconTransformation(extent={{100,-20},{140,20}})));
+
+protected
+ Buildings.Controls.OBC.CDL.Logical.Latch leaPumSta
+ "Lead pump status"
+ annotation (Placement(transformation(extent={{60,-10},{80,10}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Not not2
+ "Logical not"
+ annotation (Placement(transformation(extent={{-80,-60},{-60,-40}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Timer tim(
+ final t=offTimThr)
+ "Check if boiler disable time is greater than threshold"
+ annotation (Placement(transformation(extent={{0,-60},{20,-40}})));
+
+ Buildings.Controls.OBC.CDL.Logical.FallingEdge falEdg
+ "Detect plant being disabled"
+ annotation (Placement(transformation(extent={{-80,-20},{-60,0}})));
+
+ Buildings.Controls.OBC.CDL.Logical.And and2
+ "Logical And"
+ annotation (Placement(transformation(extent={{-30,-60},{-10,-40}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Latch lat
+ "Boolean latch"
+ annotation (Placement(transformation(extent={{-50,-20},{-30,0}})));
+
+equation
+ connect(uPlaEna, leaPumSta.u)
+ annotation (Line(points={{-120,50},{50,50},{50,0},{58,0}},
+ color={255,0,255}));
+
+ connect(leaPumSta.y, yLea)
+ annotation (Line(points={{82,0},{120,0}}, color={255,0,255}));
+
+ connect(uLeaBoiSta, not2.u)
+ annotation (Line(points={{-120,-50},{-82,-50}},
+ color={255,0,255}));
+
+ connect(tim.passed, leaPumSta.clr) annotation (Line(points={{22,-58},{50,-58},
+ {50,-6},{58,-6}}, color={255,0,255}));
+ connect(uPlaEna, falEdg.u) annotation (Line(points={{-120,50},{-90,50},{-90,
+ -10},{-82,-10}}, color={255,0,255}));
+ connect(and2.y, tim.u)
+ annotation (Line(points={{-8,-50},{-2,-50}}, color={255,0,255}));
+ connect(not2.y, and2.u2) annotation (Line(points={{-58,-50},{-50,-50},{-50,
+ -58},{-32,-58}}, color={255,0,255}));
+ connect(falEdg.y, lat.u)
+ annotation (Line(points={{-58,-10},{-52,-10}}, color={255,0,255}));
+ connect(uPlaEna, lat.clr) annotation (Line(points={{-120,50},{-56,50},{-56,
+ -16},{-52,-16}}, color={255,0,255}));
+ connect(lat.y, and2.u1) annotation (Line(points={{-28,-10},{-20,-10},{-20,-30},
+ {-40,-30},{-40,-50},{-32,-50}}, color={255,0,255}));
+annotation (
+ defaultComponentName="enaLeaPriPum_dedicated",
+ Icon(coordinateSystem(preserveAspectRatio=false), graphics={
+ Rectangle(
+ extent={{-100,-100},{100,100}},
+ lineColor={0,0,127},
+ fillColor={255,255,255},
+ fillPattern=FillPattern.Solid),
+ Text(
+ extent={{-100,150},{100,110}},
+ textColor={0,0,255},
+ textString="%name")}),
+ Diagram(coordinateSystem(preserveAspectRatio=false)),
+ Documentation(info="
+
+Block that enable and disable leading primary hot water pump, for plants
+with dedicated primary hot water pumps, according to ASHRAE RP-1711, March 2020 draft,
+section 5.3.6.3.
+
+
+The lead primary hot water pump status yLea
should be enabled when
+boiler plant is enabled (uPlaEna
= true). It should be disabled when
+the lead boiler is disabled and has been proven off (uLeaBoiSta
+= false) for time offTimThr
.
+
+", revisions="
+
+-
+July 30, 2020, by Karthik Devaprasad:
+First implementation.
+
+
+"));
+end EnableLead_dedicated;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Pumps/PrimaryPumps/Subsequences/EnableLead_headered.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Pumps/PrimaryPumps/Subsequences/EnableLead_headered.mo
new file mode 100644
index 00000000000..0b2aca9a262
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Pumps/PrimaryPumps/Subsequences/EnableLead_headered.mo
@@ -0,0 +1,110 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Pumps.PrimaryPumps.Subsequences;
+block EnableLead_headered
+ "Sequence to enable or disable the lead primary pump of plants with headered
+ primary hot water pumps"
+
+ parameter Integer nBoi=3
+ "Total number of hot water isolation valves (same as number of boilers)";
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput uHotWatIsoVal[nBoi](
+ final unit=fill("1",nBoi),
+ displayUnit=fill("1",nBoi),
+ final min=fill(0,nBoi),
+ final max=fill(1,nBoi))
+ "Hot water isolation valve status"
+ annotation (Placement(transformation(extent={{-140,-20},{-100,20}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanOutput yLea
+ "Lead pump status"
+ annotation (Placement(transformation(extent={{100,-20},{140,20}})));
+
+protected
+ Buildings.Controls.OBC.CDL.Continuous.GreaterThreshold greThr[nBoi](
+ final t=fill(0.975,nBoi),
+ final h=fill(0.025,nBoi))
+ "Determine if the isolation valve is open based on valve position"
+ annotation (Placement(transformation(extent={{-80,-10},{-60,10}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Switch leaPumSta
+ "Lead pump status"
+ annotation (Placement(transformation(extent={{40,-10},{60,10}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant con(
+ final k=true)
+ "Logical true"
+ annotation (Placement(transformation(extent={{-40,30},{-20,50}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant con1(
+ final k=false)
+ "Logical false"
+ annotation (Placement(transformation(extent={{-40,-50},{-20,-30}})));
+
+ Buildings.Controls.OBC.CDL.Logical.MultiOr mulOr(
+ final nin=nBoi)
+ "Check if there are any hot water isolation valves opened"
+ annotation (Placement(transformation(extent={{-40,-10},{-20,10}})));
+
+equation
+ connect(con.y,leaPumSta. u1)
+ annotation (Line(points={{-18,40},{30,40},{30,8},{38,8}},color={255,0,255}));
+
+ connect(con1.y,leaPumSta. u3)
+ annotation (Line(points={{-18,-40},{30,-40},{30,-8},{38,-8}},
+ color={255,0,255}));
+
+ connect(leaPumSta.y, yLea)
+ annotation (Line(points={{62,0},{120,0}}, color={255,0,255}));
+
+ connect(mulOr.y, leaPumSta.u2)
+ annotation (Line(points={{-18,0},{38,0}}, color={255,0,255}));
+
+ connect(uHotWatIsoVal, greThr.u)
+ annotation (Line(points={{-120,0},{-82,0}}, color={0,0,127}));
+ connect(greThr.y, mulOr.u[1:nBoi]) annotation (Line(points={{-58,0},{-50,0},{-50,
+ 0},{-42,0}}, color={255,0,255}));
+annotation (
+ defaultComponentName="enaLeaPriPum_headered",
+ Icon(coordinateSystem(preserveAspectRatio=false), graphics={
+ Rectangle(
+ extent={{-100,-100},{100,100}},
+ lineColor={0,0,127},
+ fillColor={255,255,255},
+ fillPattern=FillPattern.Solid),
+ Text(
+ extent={{-100,150},{100,110}},
+ textColor={0,0,255},
+ textString="%name"),
+ Text(
+ extent={{-94,12},{-40,-10}},
+ textColor={255,0,255},
+ pattern=LinePattern.Dash,
+ textString="uHotIsoVal"),
+ Text(
+ extent={{42,12},{96,-10}},
+ textColor={255,0,255},
+ pattern=LinePattern.Dash,
+ textString="yLeaPum")}),
+ Diagram(coordinateSystem(preserveAspectRatio=false)),
+ Documentation(info="
+
+Block that enables and disables lead primary hot water pump, for plants
+with headered primary hot water pumps, according to ASHRAE RP-1711, March 2020 draft,
+section 5.3.6.2.
+
+
+-
+The lead primary hot water pump shall be enabled when any boilers
+hot water isolation valve is commanded open
uHotWatIsoVal > 0.975
,
+and shall be disabled when all boilers' hot water isolation valves are commanded closed
+uHotWatIsoVal ≤ 0.975
.
+
+
+", revisions="
+
+-
+July 30, 2020, by Karthik Devaprasad:
+First implementation.
+
+
+"));
+end EnableLead_headered;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Pumps/PrimaryPumps/Subsequences/Speed_flow.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Pumps/PrimaryPumps/Subsequences/Speed_flow.mo
new file mode 100644
index 00000000000..e68d3c4f1fa
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Pumps/PrimaryPumps/Subsequences/Speed_flow.mo
@@ -0,0 +1,267 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Pumps.PrimaryPumps.Subsequences;
+block Speed_flow
+ "Pump speed control for primary-secondary plants where flowrate sensors are available in the hot water circuit"
+
+ parameter Buildings.Controls.OBC.CDL.Types.SimpleController controllerType= Buildings.Controls.OBC.CDL.Types.SimpleController.PI
+ "Type of controller"
+ annotation(Dialog(group="Speed controller"));
+
+ parameter Boolean primarySecondarySensors = true
+ "True: Flowrate sensors in primary and secondary circuits;
+ False: Flowrate sensor in decoupler";
+
+ parameter Integer nPum = 2
+ "Total number of hot water pumps";
+
+ parameter Real minPumSpe(
+ final unit="1",
+ displayUnit="1",
+ final min=0,
+ final max=maxPumSpe) = 0.1
+ "Minimum pump speed";
+
+ parameter Real maxPumSpe(
+ final unit="1",
+ displayUnit="1",
+ final min=minPumSpe,
+ final max=1) = 1
+ "Maximum pump speed";
+
+ parameter Real k(
+ final unit="1",
+ displayUnit="1")=1
+ "Gain of controller"
+ annotation(Dialog(group="Speed controller"));
+
+ parameter Real Ti(
+ final unit="s",
+ displayUnit="s",
+ final quantity="time",
+ final min=0) = 0.5
+ "Time constant of integrator block"
+ annotation(Dialog(group="Speed controller"));
+
+ parameter Real Td(
+ final unit="s",
+ displayUnit="s",
+ final quantity="time",
+ final min=0) = 0.1
+ "Time constant of derivative block"
+ annotation (Dialog(group="Speed controller"));
+
+ parameter Real VHotWat_flow_nominal(
+ final min=1e-6,
+ final unit="m3/s",
+ displayUnit="m3/s",
+ final quantity="VolumeFlowRate")=0.5
+ "Total plant design hot water flow rate";
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uHotWatPum[nPum]
+ "Hot water pump status"
+ annotation (Placement(transformation(extent={{-160,-20},{-120,20}}),
+ iconTransformation(extent={{-140,30},{-100,70}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput VHotWatPri_flow(
+ final unit="m3/s",
+ displayUnit="m3/s",
+ final quantity="VolumeFlowRate") if primarySecondarySensors
+ "Measured hot water flow rate through primary circuit"
+ annotation (Placement(transformation(extent={{-160,-50},{-120,-10}}),
+ iconTransformation(extent={{-140,-20},{-100,20}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput VHotWatSec_flow(
+ final unit="m3/s",
+ displayUnit="m3/s",
+ final quantity="VolumeFlowRate") if primarySecondarySensors
+ "Measured hot water flow rate through secondary circuit"
+ annotation (Placement(transformation(extent={{-160,-80},{-120,-40}}),
+ iconTransformation(extent={{-140,-70},{-100,-30}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput VHotWatDec_flow(
+ final unit="m3/s",
+ displayUnit="m3/s",
+ final quantity="VolumeFlowRate") if not primarySecondarySensors
+ "Measured hot water flow rate through decoupler"
+ annotation (Placement(transformation(extent={{-160,-120},{-120,-80}}),
+ iconTransformation(extent={{-140,-70},{-100,-30}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealOutput yHotWatPumSpe(
+ final min=minPumSpe,
+ final max=maxPumSpe,
+ final unit="1",
+ displayUnit="1")
+ "Hot water pump speed"
+ annotation (Placement(transformation(extent={{120,80},{160,120}}),
+ iconTransformation(extent={{100,-20},{140,20}})));
+
+protected
+ Buildings.Controls.OBC.CDL.Continuous.PIDWithReset conPID(
+ final controllerType=controllerType,
+ final k=k,
+ final Ti=Ti,
+ final Td=Td,
+ final yMax=1,
+ final yMin=0)
+ "PID loop to regulate flow through decoupler leg"
+ annotation (Placement(transformation(extent={{20,-10},{40,10}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Edge edg
+ "Reset PID loop when it is activated"
+ annotation (Placement(transformation(extent={{-40,-30},{-20,-10}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Line pumSpe
+ "Pump speed"
+ annotation (Placement(transformation(extent={{60,50},{80,70}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Subtract sub2 if primarySecondarySensors
+ "Compare measured flowrate in primary and secondary loops"
+ annotation (Placement(transformation(extent={{-100,-50},{-80,-30}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Divide div if primarySecondarySensors
+ "Normalize flow-rate value"
+ annotation (Placement(transformation(extent={{-60,-80},{-40,-60}})));
+
+ Buildings.Controls.OBC.CDL.Logical.MultiOr mulOr(
+ final nin=nPum)
+ "Check if any hot water primary pumps are enabled"
+ annotation (Placement(transformation(extent={{-100,-10},{-80,10}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant pumSpe_min(
+ final k=minPumSpe)
+ "Minimum pump speed"
+ annotation (Placement(transformation(extent={{-80,50},{-60,70}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant pumSpe_max(
+ final k=maxPumSpe)
+ "Maximum pump speed"
+ annotation (Placement(transformation(extent={{-20,30},{0,50}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant one(
+ final k=1)
+ "Constant one"
+ annotation (Placement(transformation(extent={{-80,20},{-60,40}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant zer(
+ final k=0)
+ "Constant zero"
+ annotation (Placement(transformation(extent={{-80,80},{-60,100}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Switch swi
+ "Logical switch"
+ annotation (Placement(transformation(extent={{80,90},{100,110}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.AddParameter addPar(
+ final p=1e-6) if primarySecondarySensors
+ "Ensure divisor is non-zero"
+ annotation (Placement(transformation(extent={{-100,-80},{-80,-60}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.MultiplyByParameter gai(
+ final k=1/VHotWat_flow_nominal) if not primarySecondarySensors
+ "Normalize flowrate"
+ annotation (Placement(transformation(extent={{-60,-110},{-40,-90}})));
+
+equation
+ connect(zer.y, pumSpe.x1)
+ annotation (Line(points={{-58,90},{-30,90},{-30,68},{58,68}},
+ color={0,0,127}));
+
+ connect(pumSpe_min.y, pumSpe.f1)
+ annotation (Line(points={{-58,60},{-40,60},{-40,64},{58,64}}, color={0,0,127}));
+
+ connect(one.y, pumSpe.x2)
+ annotation (Line(points={{-58,30},{-40,30},{-40,56},{58,56}}, color={0,0,127}));
+
+ connect(pumSpe_max.y, pumSpe.f2)
+ annotation (Line(points={{2,40},{20,40},{20,52},{58,52}}, color={0,0,127}));
+
+ connect(pumSpe.y, swi.u1)
+ annotation (Line(points={{82,60},{100,60},{100,80},{60,80},{60,108},{78,108}},
+ color={0,0,127}));
+
+ connect(zer.y, swi.u3)
+ annotation (Line(points={{-58,90},{-30,90},{-30,92},{78,92}},
+ color={0,0,127}));
+
+ connect(swi.y,yHotWatPumSpe)
+ annotation (Line(points={{102,100},{140,100}}, color={0,0,127}));
+
+ connect(uHotWatPum, mulOr.u[1:nPum]) annotation (Line(points={{-140,0},{-122,0},{
+ -122,0},{-102,0}}, color={255,0,255}));
+ connect(mulOr.y, swi.u2) annotation (Line(points={{-78,0},{-50,0},{-50,100},{78,
+ 100}}, color={255,0,255}));
+ connect(VHotWatPri_flow,sub2. u1) annotation (Line(points={{-140,-30},{-110,-30},
+ {-110,-34},{-102,-34}}, color={0,0,127}));
+ connect(VHotWatSec_flow,sub2. u2) annotation (Line(points={{-140,-60},{-106,-60},
+ {-106,-46},{-102,-46}}, color={0,0,127}));
+ connect(sub2.y, div.u1) annotation (Line(points={{-78,-40},{-70,-40},{-70,-64},
+ {-62,-64}}, color={0,0,127}));
+ connect(addPar.y, div.u2) annotation (Line(points={{-78,-70},{-70,-70},{-70,-76},
+ {-62,-76}}, color={0,0,127}));
+ connect(VHotWatPri_flow, addPar.u) annotation (Line(points={{-140,-30},{-110,-30},
+ {-110,-70},{-102,-70}}, color={0,0,127}));
+
+ connect(VHotWatDec_flow, gai.u)
+ annotation (Line(points={{-140,-100},{-62,-100}}, color={0,0,127}));
+ connect(zer.y, conPID.u_s) annotation (Line(points={{-58,90},{-30,90},{-30,0},
+ {18,0}}, color={0,0,127}));
+ connect(mulOr.y, edg.u) annotation (Line(points={{-78,0},{-50,0},{-50,-20},{
+ -42,-20}}, color={255,0,255}));
+ connect(edg.y, conPID.trigger)
+ annotation (Line(points={{-18,-20},{24,-20},{24,-12}}, color={255,0,255}));
+ connect(div.y, conPID.u_m)
+ annotation (Line(points={{-38,-70},{30,-70},{30,-12}}, color={0,0,127}));
+ connect(gai.y, conPID.u_m)
+ annotation (Line(points={{-38,-100},{30,-100},{30,-12}}, color={0,0,127}));
+ connect(conPID.y, pumSpe.u)
+ annotation (Line(points={{42,0},{50,0},{50,60},{58,60}}, color={0,0,127}));
+annotation (
+ defaultComponentName="hotPumSpe",
+ Icon(coordinateSystem(extent={{-100,-100},{100,100}}),
+ graphics={
+ Rectangle(
+ extent={{-100,-100},{100,100}},
+ lineColor={0,0,127},
+ fillColor={255,255,255},
+ fillPattern=FillPattern.Solid),
+ Text(
+ extent={{-100,150},{100,110}},
+ textColor={0,0,255},
+ textString="%name")}),
+ Diagram(coordinateSystem(preserveAspectRatio=false, extent={{-120,-120},{120,120}})),
+Documentation(info="
+
+Block that outputs hot water pump speed setpoint for primary-secondary plants with
+variable-speed primary pumps with flow sensors present in the primary and secondary
+loops, or in the decoupler, according to ASHRAE RP-1711, March, 2020 draft,
+sections 5.3.6.12 and 5.3.6.13.
+
+
+When any hot water pump is proven on, uHotWatPum = true
,
+pump speedyHotWatPumSpe
will be controlled by a reverse acting PID
+loop maintaining the flowrate through the decoupler at zero. PID loop output
+shall be mapped from minimum pump speed (minPumSpe
) at 0% to maximum
+pump speed(maxPumSpe
) at 100%.
+
+
+-
+When the plant has flowrate sensors in the primary and secondary loops,
+
primarySecondarySensors = true
, the measured flowrate in primary
+loop VHotWatPri_flow
and the measured flowrate in secondary loop
+VHotWatSec_flow
is used to calculate the flow through the decoupler
+(VHotWatPri_flow - VHotWatSec_flow
) and generate the control signal.
+
+-
+When the plant has a flowrate sensor in the decoupler,
+
primarySecondarySensors = false
, the measured flowrate through the
+decoupler is used to calculate the control signal.
+
+
+", revisions="
+
+-
+August 4, 2020, by Karthik Devaprasad:
+First implementation.
+
+
+"));
+end Speed_flow;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Pumps/PrimaryPumps/Subsequences/Speed_temperature.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Pumps/PrimaryPumps/Subsequences/Speed_temperature.mo
new file mode 100644
index 00000000000..341245aaed5
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Pumps/PrimaryPumps/Subsequences/Speed_temperature.mo
@@ -0,0 +1,399 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Pumps.PrimaryPumps.Subsequences;
+block Speed_temperature
+ "Pump speed control for primary-secondary plants where temperature sensors are available in the hot water circuit"
+
+ parameter Boolean primarySecondarySensors = true
+ "True: Temperature sensors in primary and secondary circuits;
+ False: Temperature sensors at boiler supply and in secondary circuit";
+
+ parameter Integer nBoi = 2
+ "Total number of boilers";
+
+ parameter Integer nPum = 2
+ "Total number of hot water pumps"
+ annotation(Dialog(group="Pump parameters"));
+
+ parameter Integer numIgnReq=0
+ "Number of ignored requests"
+ annotation(Dialog(group="Trim-and-Respond parameters"));
+
+ parameter Real boiDesFlo[nBoi]={0.5,0.5}
+ "Vector of design flowrates for all boilers in plant";
+
+ parameter Real minPumSpe(
+ final unit="1",
+ displayUnit="1",
+ final min=0,
+ final max=maxPumSpe) = 0.1
+ "Minimum pump speed"
+ annotation(Dialog(group="Pump parameters"));
+
+ parameter Real maxPumSpe(
+ final unit="1",
+ displayUnit="1",
+ final min=minPumSpe,
+ final max=1) = 1
+ "Maximum pump speed"
+ annotation(Dialog(group="Pump parameters"));
+
+ parameter Real delTim(
+ final unit="s",
+ displayUnit="s",
+ final quantity="time")=900
+ "Delay time"
+ annotation(Dialog(group="Trim-and-Respond parameters"));
+
+ parameter Real samPer(
+ final unit="s",
+ displayUnit="s",
+ final quantity="time")=120
+ "Sample period of component"
+ annotation(Dialog(group="Trim-and-Respond parameters"));
+
+ parameter Real triAmo(
+ final unit="1",
+ displayUnit="1")=-0.02
+ "Trim amount"
+ annotation(Dialog(group="Trim-and-Respond parameters"));
+
+ parameter Real resAmo(
+ final unit="1",
+ displayUnit="1")=0.03
+ "Respond amount"
+ annotation(Dialog(group="Trim-and-Respond parameters"));
+
+ parameter Real maxRes(
+ final unit="1",
+ displayUnit="1")=0.06
+ "Maximum response per time interval"
+ annotation(Dialog(group="Trim-and-Respond parameters"));
+
+ parameter Real twoReqLimLow(
+ final unit="K",
+ displayUnit="K",
+ final quantity="TemperatureDifference")=1.2
+ "Lower limit of hysteresis loop sending two requests"
+ annotation(Dialog(group="Hysteresis loop parameters for request generation"));
+
+ parameter Real twoReqLimHig(
+ final unit="K",
+ displayUnit="K",
+ final quantity="TemperatureDifference")=2
+ "Higher limit of hysteresis loop sending two requests"
+ annotation(Dialog(group="Hysteresis loop parameters for request generation"));
+
+ parameter Real oneReqLimLow(
+ final unit="K",
+ displayUnit="K",
+ final quantity="TemperatureDifference")=0.2
+ "Lower limit of hysteresis loop sending one request"
+ annotation(Dialog(group="Hysteresis loop parameters for request generation"));
+
+ parameter Real oneReqLimHig(
+ final unit="K",
+ displayUnit="K",
+ final quantity="TemperatureDifference")=1
+ "Higher limit of hysteresis loop sending one request"
+ annotation(Dialog(group="Hysteresis loop parameters for request generation"));
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uBoiSta[nBoi] if not primarySecondarySensors
+ "Boiler status vector"
+ annotation (Placement(transformation(extent={{-160,-70},{-120,-30}}),
+ iconTransformation(extent={{-140,-60},{-100,-20}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uHotWatPum[nPum]
+ "Hot water pump status"
+ annotation (Placement(transformation(extent={{-160,80},{-120,120}}),
+ iconTransformation(extent={{-140,60},{-100,100}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput THotWatPri(
+ final unit="K",
+ displayUnit="K",
+ final quantity="ThermodynamicTemperature") if primarySecondarySensors
+ "Measured hot water temperature in primary circuit"
+ annotation (Placement(transformation(extent={{-160,30},{-120,70}}),
+ iconTransformation(extent={{-140,20},{-100,60}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput THotWatSec(
+ final unit="K",
+ displayUnit="K",
+ final quantity="ThermodynamicTemperature")
+ "Measured hot water temperature in secondary circuit"
+ annotation (Placement(transformation(extent={{-160,-20},{-120,20}}),
+ iconTransformation(extent={{-140,-20},{-100,20}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput THotWatBoiSup[nBoi](
+ final unit=fill("K",nBoi),
+ displayUnit=fill("K",nBoi),
+ final quantity=fill("ThermodynamicTemperature",nBoi)) if not primarySecondarySensors
+ "Measured hot water temperature at boiler supply"
+ annotation (Placement(transformation(extent={{-160,-130},{-120,-90}}),
+ iconTransformation(extent={{-140,-100},{-100,-60}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealOutput yHotWatPumSpe(
+ final min=minPumSpe,
+ final max=maxPumSpe,
+ final unit="1",
+ displayUnit="1")
+ "Hot water pump speed"
+ annotation (Placement(transformation(extent={{120,80},{160,120}}),
+ iconTransformation(extent={{100,-20},{140,20}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Switch intSwi1
+ "Integer switch"
+ annotation (Placement(transformation(extent={{40,40},{60,60}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.MultiSum mulSum1(
+ final k=fill(1, nBoi),
+ final nin=nBoi) if not primarySecondarySensors
+ "Weighted average of boiler supply temperatures"
+ annotation (Placement(transformation(extent={{80,-90},{100,-70}})));
+
+protected
+ Buildings.Controls.OBC.CDL.Continuous.Hysteresis hys(
+ final uLow=twoReqLimLow,
+ final uHigh=twoReqLimHig)
+ "Hysteresis loop for sending two requests"
+ annotation (Placement(transformation(extent={{-60,40},{-40,60}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Hysteresis hys1(
+ final uLow=oneReqLimLow,
+ final uHigh=oneReqLimHig)
+ "Hysteresis loop for sending one request"
+ annotation (Placement(transformation(extent={{-60,0},{-40,20}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Switch intSwi
+ "Integer switch"
+ annotation (Placement(transformation(extent={{10,0},{30,20}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant conInt(
+ final k=1)
+ "Constant integer source"
+ annotation (Placement(transformation(extent={{-30,20},{-10,40}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant conInt1(
+ final k=0)
+ "Constant integer source"
+ annotation (Placement(transformation(extent={{-30,-20},{-10,0}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant conInt2(
+ final k=2)
+ "Constant integer source"
+ annotation (Placement(transformation(extent={{-30,60},{-10,80}})));
+
+ Buildings.Controls.OBC.ASHRAE.G36.Generic.TrimAndRespond triRes(
+ final iniSet=maxPumSpe,
+ final minSet=minPumSpe,
+ final maxSet=maxPumSpe,
+ final delTim=delTim,
+ final samplePeriod=samPer,
+ final numIgnReq=numIgnReq,
+ final triAmo=triAmo,
+ final resAmo=resAmo,
+ final maxRes=maxRes)
+ "Pump speed calculator"
+ annotation (Placement(transformation(extent={{80,40},{100,60}})));
+
+ Buildings.Controls.OBC.CDL.Conversions.BooleanToReal booToRea[nBoi] if not
+ primarySecondarySensors
+ "Boolean to Real converter"
+ annotation (Placement(transformation(extent={{-100,-60},{-80,-40}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant con[nBoi](
+ final k=boiDesFlo) if not primarySecondarySensors
+ "Vector of boiler design flowrates"
+ annotation (Placement(transformation(extent={{-100,-90},{-80,-70}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Multiply pro1[nBoi] if not
+ primarySecondarySensors
+ "Vector of design flowrates only for enabled boilers; Zero for disabled boilers"
+ annotation (Placement(transformation(extent={{-70,-70},{-50,-50}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.MultiSum mulSum(
+ final k=fill(1, nBoi),
+ final nin=nBoi) if not primarySecondarySensors
+ "Sum of flowrates of all enabled boilers"
+ annotation (Placement(transformation(extent={{-40,-100},{-20,-80}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Subtract sub2
+ "Compare measured temperature in primary and secondary loops"
+ annotation (Placement(transformation(extent={{-100,20},{-80,40}})));
+
+ Buildings.Controls.OBC.CDL.Logical.MultiOr mulOr(
+ final nin=nPum)
+ "Check if any hot water primary pumps are enabled"
+ annotation (Placement(transformation(extent={{-100,90},{-80,110}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant zer(
+ final k=0)
+ "Constant zero"
+ annotation (Placement(transformation(extent={{-60,70},{-40,90}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Switch swi
+ "Logical switch"
+ annotation (Placement(transformation(extent={{80,90},{100,110}})));
+
+ Buildings.Controls.OBC.CDL.Routing.RealScalarReplicator reaRep(
+ final nout=nBoi) if not primarySecondarySensors
+ "Real replicator"
+ annotation (Placement(transformation(extent={{20,-100},{40,-80}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Divide div[nBoi] if not primarySecondarySensors
+ "Calculate weights for average based on design flowrate"
+ annotation (Placement(transformation(extent={{20,-70},{40,-50}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Multiply pro[nBoi] if not primarySecondarySensors
+ "Calculate weighted boiler supply temperatures"
+ annotation (Placement(transformation(extent={{50,-90},{70,-70}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.AddParameter addPar(
+ final p=1e-6)
+ if not primarySecondarySensors
+ "Pass non-zero divisor in case sum is zero"
+ annotation (Placement(transformation(extent={{-10,-100},{10,-80}})));
+
+equation
+ connect(zer.y, swi.u3)
+ annotation (Line(points={{-38,80},{-34,80},{-34,92},{78,92}},
+ color={0,0,127}));
+
+ connect(swi.y,yHotWatPumSpe)
+ annotation (Line(points={{102,100},{140,100}}, color={0,0,127}));
+
+ connect(uHotWatPum, mulOr.u[1:nPum]) annotation (Line(points={{-140,100},{-102,
+ 100}}, color={255,0,255}));
+
+ connect(mulOr.y, swi.u2) annotation (Line(points={{-78,100},{78,100}},
+ color={255,0,255}));
+
+ connect(THotWatPri,sub2. u1) annotation (Line(points={{-140,50},{-114,50},{-114,
+ 36},{-102,36}}, color={0,0,127}));
+
+ connect(THotWatSec,sub2. u2) annotation (Line(points={{-140,0},{-110,0},{-110,
+ 24},{-102,24}}, color={0,0,127}));
+
+ connect(sub2.y, hys.u) annotation (Line(points={{-78,30},{-70,30},{-70,50},{-62,
+ 50}}, color={0,0,127}));
+
+ connect(sub2.y, hys1.u) annotation (Line(points={{-78,30},{-70,30},{-70,10},{-62,
+ 10}}, color={0,0,127}));
+
+ connect(hys1.y, intSwi.u2)
+ annotation (Line(points={{-38,10},{8,10}}, color={255,0,255}));
+
+ connect(conInt.y, intSwi.u1) annotation (Line(points={{-8,30},{-4,30},{-4,18},
+ {8,18}}, color={255,127,0}));
+
+ connect(conInt1.y, intSwi.u3) annotation (Line(points={{-8,-10},{-4,-10},{-4,2},
+ {8,2}}, color={255,127,0}));
+
+ connect(hys.y, intSwi1.u2)
+ annotation (Line(points={{-38,50},{38,50}}, color={255,0,255}));
+
+ connect(intSwi.y, intSwi1.u3) annotation (Line(points={{32,10},{36,10},{36,42},
+ {38,42}}, color={255,127,0}));
+
+ connect(conInt2.y, intSwi1.u1) annotation (Line(points={{-8,70},{36,70},{36,58},
+ {38,58}}, color={255,127,0}));
+
+ connect(intSwi1.y, triRes.numOfReq) annotation (Line(points={{62,50},{68,50},{
+ 68,42},{78,42}}, color={255,127,0}));
+
+ connect(mulOr.y, triRes.uDevSta) annotation (Line(points={{-78,100},{68,100},{
+ 68,58},{78,58}}, color={255,0,255}));
+
+ connect(triRes.y, swi.u1) annotation (Line(points={{102,50},{110,50},{110,80},
+ {70,80},{70,108},{78,108}},color={0,0,127}));
+
+ connect(uBoiSta, booToRea.u)
+ annotation (Line(points={{-140,-50},{-102,-50}}, color={255,0,255}));
+
+ connect(booToRea.y, pro1.u1) annotation (Line(points={{-78,-50},{-74,-50},{-74,
+ -54},{-72,-54}}, color={0,0,127}));
+
+ connect(con.y, pro1.u2) annotation (Line(points={{-78,-80},{-74,-80},{-74,-66},
+ {-72,-66}}, color={0,0,127}));
+
+ connect(reaRep.y, div.u2) annotation (Line(points={{42,-90},{44,-90},{44,-74},
+ {16,-74},{16,-66},{18,-66}},
+ color={0,0,127}));
+
+ connect(pro1.y, div.u1) annotation (Line(points={{-48,-60},{-46,-60},{-46,-54},
+ {18,-54}}, color={0,0,127}));
+
+ connect(div.y, pro.u1) annotation (Line(points={{42,-60},{46,-60},{46,-74},{48,
+ -74}}, color={0,0,127}));
+
+ connect(THotWatBoiSup, pro.u2) annotation (Line(points={{-140,-110},{46,-110},
+ {46,-86},{48,-86}}, color={0,0,127}));
+
+ connect(mulSum1.u[1:nBoi], pro.y) annotation (Line(points={{78,-80},{76,-80},{76,
+ -80},{72,-80}}, color={0,0,127}));
+
+ connect(mulSum1.y,sub2. u1) annotation (Line(points={{102,-80},{110,-80},{110,
+ -30},{-114,-30},{-114,36},{-102,36}}, color={0,0,127}));
+
+ connect(mulSum.y, addPar.u)
+ annotation (Line(points={{-18,-90},{-12,-90}}, color={0,0,127}));
+ connect(reaRep.u, addPar.y)
+ annotation (Line(points={{18,-90},{12,-90}}, color={0,0,127}));
+ connect(pro1.y, mulSum.u[1:nBoi]) annotation (Line(points={{-48,-60},{-46,-60},
+ {-46,-90},{-42,-90}},
+ color={0,0,127}));
+
+annotation (
+ defaultComponentName="hotPumSpe",
+ Icon(coordinateSystem(extent={{-100,-100},{100,100}}),
+ graphics={
+ Rectangle(
+ extent={{-100,-100},{100,100}},
+ lineColor={0,0,127},
+ fillColor={255,255,255},
+ fillPattern=FillPattern.Solid),
+ Text(
+ extent={{-100,150},{100,110}},
+ textColor={0,0,255},
+ textString="%name")}),
+ Diagram(coordinateSystem(preserveAspectRatio=false, extent={{-120,-120},{120,120}})),
+Documentation(info="
+
+Block that outputs hot water pump speed setpoint for primary-secondary plants with
+variable-speed primary pumps where the temperature sensors are present in the primary
+and secondary loops, or in the secondary loop and at the boiler supply, according
+to ASHRAE RP-1711, March, 2020 draft, sections 5.3.6.14, 5.3.6.15 and 5.3.6.16.
+
+
+When any hot water pump is proven on, uHotWatPum = true
,
+pump speed will be controlled by a Trim-and-Respond logic controller. The number
+of requests to the controller is calculated as follows:
+
+
+-
+When the difference between the primary loop temperature
THotWatPri
+and the secondary loop temperature THotWatSec
is greater than
+twoReqLimHig
, 2 requests are sent to the controller until the difference
+is less than twoReqLimLow
.
+
+-
+When the difference between
THotWatPri
and THotWatSec
+is greater than oneReqLimHig
, 1 request is sent to the controller
+until the difference is less than oneReqLimLow
.
+
+
+
+When there is no single temperature sensor in the primary loop and instead there
+are temperature sensors at each boiler supply outlet THotWatBoiSup
,
+primarySecondarySensors = false
, the primary loop temperature is
+calculated as the weighted average of THotWatBoiSup
, weighted by the
+boiler design flowrates boiDesFlo
of the enabled boilers
+uBoiSta
.
+
+", revisions="
+
+-
+August 4, 2020, by Karthik Devaprasad:
+First implementation.
+
+
+"));
+end Speed_temperature;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Pumps/PrimaryPumps/Subsequences/Validation/EnableLead_dedicated.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Pumps/PrimaryPumps/Subsequences/Validation/EnableLead_dedicated.mo
new file mode 100644
index 00000000000..2480332f5f7
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Pumps/PrimaryPumps/Subsequences/Validation/EnableLead_dedicated.mo
@@ -0,0 +1,54 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Pumps.PrimaryPumps.Subsequences.Validation;
+model EnableLead_dedicated
+ "Validate sequence for enabling lead pump of plants with dedicated primary hot water pumps"
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Pumps.PrimaryPumps.Subsequences.EnableLead_dedicated
+ enaLeaPriPum
+ "Enable and disable lead hot water primary pump"
+ annotation (Placement(transformation(extent={{40,-10},{60,10}})));
+
+protected
+ Buildings.Controls.OBC.CDL.Logical.Sources.Pulse booPul(
+ final period=3600,
+ final shift=300)
+ "Boolean pulse source"
+ annotation (Placement(transformation(extent={{-50,-10},{-30,10}})));
+
+equation
+ connect(booPul.y,enaLeaPriPum. uPlaEna) annotation (Line(points={{-28,0},{20,0},
+ {20,5},{38,5}}, color={255,0,255}));
+
+ connect(booPul.y,enaLeaPriPum.uLeaBoiSta)
+ annotation (Line(points={{-28,0},{20,0},{20,-5},{38,-5}}, color={255,0,255}));
+
+annotation (
+ experiment(StopTime=3600.0, Tolerance=1e-06),
+ __Dymola_Commands(file="modelica://Buildings/Resources/Scripts/Dymola/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Pumps/PrimaryPumps/Subsequences/Validation/EnableLead_dedicated.mos"
+ "Simulate and plot"),
+ Documentation(info="
+
+This example validates
+
+Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Pumps.PrimaryPumps.Subsequences.EnableLead_dedicated.
+
+", revisions="
+
+-
+July 30, 2020, by Karthik Devaprasad:
+First implementation.
+
+
+"),
+ Icon(coordinateSystem(preserveAspectRatio=false, extent={{-100,-100},
+ {100,100}}), graphics={
+ Ellipse(lineColor = {75,138,73},
+ fillColor={255,255,255},
+ fillPattern = FillPattern.Solid,
+ extent = {{-100,-100},{100,100}}),
+ Polygon(lineColor = {0,0,255},
+ fillColor = {75,138,73},
+ pattern = LinePattern.None,
+ fillPattern = FillPattern.Solid,
+ points = {{-36,60},{64,0},{-36,-60},{-36,60}})}), Diagram(
+ coordinateSystem(preserveAspectRatio=false, extent={{-100,-100},{100,100}})));
+end EnableLead_dedicated;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Pumps/PrimaryPumps/Subsequences/Validation/EnableLead_headered.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Pumps/PrimaryPumps/Subsequences/Validation/EnableLead_headered.mo
new file mode 100644
index 00000000000..ae3d5bc66b8
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Pumps/PrimaryPumps/Subsequences/Validation/EnableLead_headered.mo
@@ -0,0 +1,59 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Pumps.PrimaryPumps.Subsequences.Validation;
+model EnableLead_headered
+ "Validate sequence for enabling lead pump of plants with headered primary hot water pumps"
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Pumps.PrimaryPumps.Subsequences.EnableLead_headered
+ enaLeaPriPum(
+ final nBoi=2)
+ "Enable lead hot water pump based on the status of hot water isolation valves"
+ annotation (Placement(transformation(extent={{0,-10},{20,10}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Pulse pul(
+ final period=600,
+ final shift=300)
+ "Real pulse signal"
+ annotation (Placement(transformation(extent={{-50,20},{-30,40}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Pulse pul1(
+ final period=1000,
+ final shift=500)
+ "Real pulse signal"
+ annotation (Placement(transformation(extent={{-50,-40},{-30,-20}})));
+
+equation
+ connect(pul.y, enaLeaPriPum.uHotWatIsoVal[1]) annotation (Line(points={{-28,30},
+ {-16,30},{-16,-1},{-2,-1}}, color={0,0,127}));
+ connect(pul1.y, enaLeaPriPum.uHotWatIsoVal[2]) annotation (Line(points={{-28,-30},
+ {-16,-30},{-16,1},{-2,1}}, color={0,0,127}));
+
+annotation (
+ experiment(StopTime=3600.0, Tolerance=1e-06),
+ __Dymola_Commands(file="modelica://Buildings/Resources/Scripts/Dymola/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Pumps/PrimaryPumps/Subsequences/Validation/EnableLead_headered.mos"
+ "Simulate and plot"),
+ Documentation(info="
+
+This example validates
+
+Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Pumps.PrimaryPumps.Subsequences.EnableLead_headered.
+
+", revisions="
+
+-
+July 30, 2020, by Karthik Devaprasad:
+First implementation.
+
+
+"),
+ Icon(coordinateSystem(preserveAspectRatio=false, extent={{-100,-100},
+ {100,100}}), graphics={
+ Ellipse(lineColor = {75,138,73},
+ fillColor={255,255,255},
+ fillPattern = FillPattern.Solid,
+ extent = {{-100,-100},{100,100}}),
+ Polygon(lineColor = {0,0,255},
+ fillColor = {75,138,73},
+ pattern = LinePattern.None,
+ fillPattern = FillPattern.Solid,
+ points = {{-36,60},{64,0},{-36,-60},{-36,60}})}), Diagram(
+ coordinateSystem(preserveAspectRatio=false, extent={{-100,-100},{100,100}})));
+end EnableLead_headered;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Pumps/PrimaryPumps/Subsequences/Validation/Speed_flow.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Pumps/PrimaryPumps/Subsequences/Validation/Speed_flow.mo
new file mode 100644
index 00000000000..47b437fb9fc
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Pumps/PrimaryPumps/Subsequences/Validation/Speed_flow.mo
@@ -0,0 +1,91 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Pumps.PrimaryPumps.Subsequences.Validation;
+model Speed_flow
+ "Validate sequence of controlling hot water pump speed for primary-secondary plants with flowrate sensors"
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Pumps.PrimaryPumps.Subsequences.Speed_flow
+ hotPumSpe(
+ final primarySecondarySensors=true,
+ final nPum=2,
+ final VHotWat_flow_nominal=0.5)
+ "Scenario testing speed control using flowrate sensors in primary and secondary circuits"
+ annotation (Placement(transformation(extent={{-40,-10},{-20,10}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Pumps.PrimaryPumps.Subsequences.Speed_flow
+ hotPumSpe1(
+ final primarySecondarySensors=false,
+ final nPum=2,
+ final VHotWat_flow_nominal=0.5)
+ "Scenario testing speed control using flowrate sensor in decoupler"
+ annotation (Placement(transformation(extent={{40,-10},{60,10}})));
+
+protected
+ Buildings.Controls.OBC.CDL.Logical.Sources.Pulse pumSta[2](
+ final width=fill(0.95, 2),
+ final period=fill(10, 2),
+ final shift=fill(1, 2))
+ "Pump status"
+ annotation (Placement(transformation(extent={{-80,30},{-60,50}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant secFloSen(
+ final k=8.5)
+ "Flowrate sensor reading from secondary circuit"
+ annotation (Placement(transformation(extent={{-80,-50},{-60,-30}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Sine priFloSen(
+ final offset=8.5,
+ final freqHz=1/10,
+ final amplitude=1.5)
+ "Flowrate sensor reading from primary circuit"
+ annotation (Placement(transformation(extent={{-80,-10},{-60,10}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Sine decFloSen(
+ final offset=0,
+ final freqHz=1/10,
+ final amplitude=0.5)
+ "Flowrate sensor reading from decoupler"
+ annotation (Placement(transformation(extent={{0,-50},{20,-30}})));
+
+equation
+ connect(pumSta.y, hotPumSpe.uHotWatPum) annotation (Line(points={{-58,40},{-50,
+ 40},{-50,5},{-42,5}}, color={255,0,255}));
+ connect(priFloSen.y, hotPumSpe.VHotWatPri_flow)
+ annotation (Line(points={{-58,0},{-42,0}}, color={0,0,127}));
+ connect(secFloSen.y, hotPumSpe.VHotWatSec_flow) annotation (Line(points={{-58,
+ -40},{-50,-40},{-50,-5},{-42,-5}}, color={0,0,127}));
+ connect(pumSta.y, hotPumSpe1.uHotWatPum) annotation (Line(points={{-58,40},{30,
+ 40},{30,5},{38,5}}, color={255,0,255}));
+ connect(decFloSen.y, hotPumSpe1.VHotWatDec_flow)
+ annotation (Line(points={{22,-40},{30,-40},{30,-5},{38,-5}},
+ color={0,0,127}));
+
+annotation (
+ experiment(StopTime=10.0, Tolerance=1e-06),
+ __Dymola_Commands(file="modelica://Buildings/Resources/Scripts/Dymola/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Pumps/PrimaryPumps/Subsequences/Validation/Speed_flow.mos"
+ "Simulate and plot"),
+ Documentation(info="
+
+This example validates
+
+Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Pumps.PrimaryPumps.Subsequences.Speed_flow.
+
+", revisions="
+
+-
+August 4, 2020, by Karthik Devaprasad:
+First implementation.
+
+
+"),
+ Icon(coordinateSystem(preserveAspectRatio=false, extent={{-100,-100},{100,100}}),
+ graphics={
+ Ellipse(lineColor = {75,138,73},
+ fillColor={255,255,255},
+ fillPattern = FillPattern.Solid,
+ extent = {{-100,-100},{100,100}}),
+ Polygon(lineColor = {0,0,255},
+ fillColor = {75,138,73},
+ pattern = LinePattern.None,
+ fillPattern = FillPattern.Solid,
+ points = {{-36,60},{64,0},{-36,-60},{-36,60}})}), Diagram(
+ coordinateSystem(preserveAspectRatio=false, extent={{-100,-100},{100,100}})));
+end Speed_flow;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Pumps/PrimaryPumps/Subsequences/Validation/Speed_temperature.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Pumps/PrimaryPumps/Subsequences/Validation/Speed_temperature.mo
new file mode 100644
index 00000000000..4ade05c7d3b
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Pumps/PrimaryPumps/Subsequences/Validation/Speed_temperature.mo
@@ -0,0 +1,118 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Pumps.PrimaryPumps.Subsequences.Validation;
+model Speed_temperature
+ "Validate sequence of controlling hot water pump speed for primary-secondary plants with temperature sensors"
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Pumps.PrimaryPumps.Subsequences.Speed_temperature
+ hotPumSpe(
+ final primarySecondarySensors=true,
+ final nBoi=2,
+ final nPum=2,
+ final boiDesFlo={0.25,0.5},
+ final twoReqLimLow=1.2,
+ final twoReqLimHig=2,
+ final oneReqLimLow=0.2,
+ final oneReqLimHig=1)
+ "Testing controller for plant with temperature sensors in primary and secondary loops"
+ annotation (Placement(transformation(extent={{-40,-10},{-20,10}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Pumps.PrimaryPumps.Subsequences.Speed_temperature
+ hotPumSpe1(
+ final primarySecondarySensors=false,
+ final nBoi=2,
+ final nPum=2,
+ final boiDesFlo={0.25,0.5},
+ final twoReqLimLow=1.2,
+ final twoReqLimHig=2,
+ final oneReqLimLow=0.2,
+ final oneReqLimHig=1)
+ "Testing controller for plant with temperature sensors in secondary loop and boiler supply terminals"
+ annotation (Placement(transformation(extent={{40,-10},{60,10}})));
+
+protected
+ Buildings.Controls.OBC.CDL.Logical.Sources.Pulse pumSta[2](
+ final width=fill(0.95, 2),
+ final period=fill(3600, 2),
+ final shift=fill(1, 2))
+ "Pump status"
+ annotation (Placement(transformation(extent={{-80,30},{-60,50}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant TSecSup(
+ final k=8.5)
+ "Temperature sensor reading from secondary circuit"
+ annotation (Placement(transformation(extent={{-80,-50},{-60,-30}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Sine TPriSup(
+ phase=3.1415926535898,
+ final offset=8.5,
+ final freqHz=1/3600,
+ final amplitude=2.5)
+ "Temperature sensor reading from primary circuit"
+ annotation (Placement(transformation(extent={{-80,-10},{-60,10}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Sine TBoiSup2(
+ phase=3.1415926535898,
+ final offset=8,
+ final freqHz=1/3600,
+ final amplitude=2.5)
+ "Flowrate sensor reading from decoupler"
+ annotation (Placement(transformation(extent={{-10,-70},{10,-50}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Pulse pumSta1(
+ final width=0.5,
+ final period=1800,
+ final shift=1)
+ "Pump status"
+ annotation (Placement(transformation(extent={{-10,50},{10,70}})));
+
+equation
+
+ connect(pumSta.y, hotPumSpe.uHotWatPum) annotation (Line(points={{-58,40},{-50,
+ 40},{-50,8},{-42,8}}, color={255,0,255}));
+ connect(TPriSup.y, hotPumSpe.THotWatPri) annotation (Line(points={{-58,0},{-50,
+ 0},{-50,4},{-42,4}}, color={0,0,127}));
+ connect(TSecSup.y, hotPumSpe.THotWatSec) annotation (Line(points={{-58,-40},{-46,
+ -40},{-46,0},{-42,0}}, color={0,0,127}));
+ connect(TSecSup.y, hotPumSpe1.THotWatSec) annotation (Line(points={{-58,-40},{
+ 30,-40},{30,0},{38,0}}, color={0,0,127}));
+ connect(pumSta.y, hotPumSpe1.uHotWatPum) annotation (Line(points={{-58,40},{28,
+ 40},{28,8},{38,8}}, color={255,0,255}));
+ connect(TPriSup.y, hotPumSpe1.THotWatBoiSup[1]) annotation (Line(points={{-58,
+ 0},{-50,0},{-50,-18},{34,-18},{34,-9},{38,-9}}, color={0,0,127}));
+ connect(TBoiSup2.y, hotPumSpe1.THotWatBoiSup[2]) annotation (Line(points={{12,-60},
+ {36,-60},{36,-6},{38,-6},{38,-7}}, color={0,0,127}));
+ connect(pumSta[1].y, hotPumSpe1.uBoiSta[1]) annotation (Line(points={{-58,40},
+ {28,40},{28,-4},{38,-4},{38,-5}}, color={255,0,255}));
+ connect(pumSta1.y, hotPumSpe1.uBoiSta[2]) annotation (Line(points={{12,60},{34,
+ 60},{34,-3},{38,-3}}, color={255,0,255}));
+
+annotation (
+ experiment(StopTime=3600.0, Tolerance=1e-06),
+ __Dymola_Commands(file="modelica://Buildings/Resources/Scripts/Dymola/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Pumps/PrimaryPumps/Subsequences/Validation/Speed_temperature.mos"
+ "Simulate and plot"),
+ Documentation(info="
+
+This example validates
+
+Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Pumps.PrimaryPumps.Subsequences.Speed_temperature.
+
+", revisions="
+
+-
+August 4, 2020, by Karthik Devaprasad:
+First implementation.
+
+
+"),
+ Icon(coordinateSystem(preserveAspectRatio=false, extent={{-100,-100},{100,100}}),
+ graphics={
+ Ellipse(lineColor = {75,138,73},
+ fillColor={255,255,255},
+ fillPattern = FillPattern.Solid,
+ extent = {{-100,-100},{100,100}}),
+ Polygon(lineColor = {0,0,255},
+ fillColor = {75,138,73},
+ pattern = LinePattern.None,
+ fillPattern = FillPattern.Solid,
+ points = {{-36,60},{64,0},{-36,-60},{-36,60}})}), Diagram(
+ coordinateSystem(preserveAspectRatio=false, extent={{-100,-100},{100,100}})));
+end Speed_temperature;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Pumps/PrimaryPumps/Subsequences/Validation/package.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Pumps/PrimaryPumps/Subsequences/Validation/package.mo
new file mode 100644
index 00000000000..666c3fbd2b5
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Pumps/PrimaryPumps/Subsequences/Validation/package.mo
@@ -0,0 +1,38 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Pumps.PrimaryPumps.Subsequences;
+package Validation "Collection of validation models"
+
+
+annotation (preferredView="info", Documentation(info="
+
+This package contains validation models for the classes in
+
+Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Pumps.ChilledWater.Subsequences.
+
+
+Note that most validation models contain simple input data
+which may not be realistic, but for which the correct
+output can be obtained through an analytic solution.
+The examples plot various outputs, which have been verified against these
+solutions. These model outputs are stored as reference data and
+used for continuous validation whenever models in the library change.
+
+"),
+ Icon(graphics={
+ Rectangle(
+ lineColor={200,200,200},
+ fillColor={248,248,248},
+ fillPattern=FillPattern.HorizontalCylinder,
+ extent={{-100.0,-100.0},{100.0,100.0}},
+ radius=25.0),
+ Rectangle(
+ lineColor={128,128,128},
+ extent={{-100.0,-100.0},{100.0,100.0}},
+ radius=25.0),
+ Polygon(
+ origin={8.0,14.0},
+ lineColor={78,138,73},
+ fillColor={78,138,73},
+ pattern=LinePattern.None,
+ fillPattern=FillPattern.Solid,
+ points={{-58.0,46.0},{42.0,-14.0},{-58.0,-74.0},{-58.0,46.0}})}));
+end Validation;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Pumps/PrimaryPumps/Subsequences/Validation/package.order b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Pumps/PrimaryPumps/Subsequences/Validation/package.order
new file mode 100644
index 00000000000..0c35857da5a
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Pumps/PrimaryPumps/Subsequences/Validation/package.order
@@ -0,0 +1,4 @@
+EnableLead_dedicated
+EnableLead_headered
+Speed_flow
+Speed_temperature
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Pumps/PrimaryPumps/Subsequences/package.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Pumps/PrimaryPumps/Subsequences/package.mo
new file mode 100644
index 00000000000..aea474b5233
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Pumps/PrimaryPumps/Subsequences/package.mo
@@ -0,0 +1,44 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Pumps.PrimaryPumps;
+package Subsequences "Hot water pump control sequences"
+
+
+annotation (
+preferredView="info", Documentation(info="
+
+This package contains subsequences for hot water pumps control.
+"),
+Icon(graphics={
+ Rectangle(
+ lineColor={200,200,200},
+ fillColor={248,248,248},
+ fillPattern=FillPattern.HorizontalCylinder,
+ extent={{-100.0,-100.0},{100.0,100.0}},
+ radius=25.0),
+ Rectangle(
+ lineColor={128,128,128},
+ extent={{-100.0,-100.0},{100.0,100.0}},
+ radius=25.0),
+ Ellipse(
+ origin={10.0,10.0},
+ fillColor={76,76,76},
+ pattern=LinePattern.None,
+ fillPattern=FillPattern.Solid,
+ extent={{-80.0,-80.0},{-20.0,-20.0}}),
+ Ellipse(
+ origin={10.0,10.0},
+ pattern=LinePattern.None,
+ fillPattern=FillPattern.Solid,
+ extent={{0.0,-80.0},{60.0,-20.0}}),
+ Ellipse(
+ origin={10.0,10.0},
+ fillColor={128,128,128},
+ pattern=LinePattern.None,
+ fillPattern=FillPattern.Solid,
+ extent={{0.0,0.0},{60.0,60.0}}),
+ Ellipse(
+ origin={10.0,10.0},
+ lineColor={128,128,128},
+ fillColor={255,255,255},
+ fillPattern=FillPattern.Solid,
+ extent={{-80.0,0.0},{-20.0,60.0}})}));
+end Subsequences;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Pumps/PrimaryPumps/Subsequences/package.order b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Pumps/PrimaryPumps/Subsequences/package.order
new file mode 100644
index 00000000000..b8b0f47c26c
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Pumps/PrimaryPumps/Subsequences/package.order
@@ -0,0 +1,5 @@
+EnableLead_dedicated
+EnableLead_headered
+Speed_flow
+Speed_temperature
+Validation
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Pumps/PrimaryPumps/Validation/Controller.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Pumps/PrimaryPumps/Validation/Controller.mo
new file mode 100644
index 00000000000..cd99be3d9b0
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Pumps/PrimaryPumps/Validation/Controller.mo
@@ -0,0 +1,2248 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Pumps.PrimaryPumps.Validation;
+model Controller
+ "Validate boiler water pump control sequence"
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Pumps.PrimaryPumps.Controller
+ priPumCon(
+ final have_heaPriPum=true,
+ final have_priOnl=true,
+ final have_varPriPum=true,
+ final nPum=2,
+ final nBoi=2,
+ final nSen=2,
+ final nPum_nominal=2,
+ final minPumSpe=0.1,
+ final maxPumSpe=1,
+ final VHotWat_flow_nominal=0.5,
+ final boiDesFlo={0.5,0.5},
+ final maxLocDp=5*6894.75,
+ final minLocDp=5*6894.75,
+ final offTimThr=180,
+ final timPer=600,
+ final staCon=-0.03,
+ final relFloHys=0.01,
+ final k=1,
+ final Ti=10,
+ final Td=0.1,
+ final speConTyp=Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Types.PrimaryPumpSpeedControlTypes.remoteDP)
+ "Testing pump configuration 1"
+ annotation (Placement(transformation(extent={{-170,372},{-150,428}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Pumps.PrimaryPumps.Controller
+ priPumCon1(
+ final have_heaPriPum=true,
+ final have_priOnl=true,
+ final have_varPriPum=true,
+ final nPum=2,
+ final nBoi=2,
+ final nSen=2,
+ final nPum_nominal=2,
+ final minPumSpe=0.1,
+ final maxPumSpe=1,
+ final VHotWat_flow_nominal=0.5,
+ final boiDesFlo={0.5,0.5},
+ final maxLocDp=10,
+ final minLocDp=5,
+ final offTimThr=180,
+ final timPer=600,
+ final staCon=-0.03,
+ final relFloHys=0.01,
+ final k=1,
+ final Ti=0.5,
+ final Td=0.1,
+ final speConTyp=Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Types.PrimaryPumpSpeedControlTypes.localDP)
+ "Testing pump configuration 2"
+ annotation (Placement(transformation(extent={{190,362},{210,418}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Pumps.PrimaryPumps.Controller
+ priPumCon2(
+ final have_heaPriPum=true,
+ final have_priOnl=false,
+ final have_varPriPum=true,
+ final nPum=2,
+ final nBoi=2,
+ final nSen=2,
+ final nPum_nominal=2,
+ final minPumSpe=0.1,
+ final maxPumSpe=1,
+ final VHotWat_flow_nominal=0.5,
+ final boiDesFlo={0.5,0.5},
+ final maxLocDp=10,
+ final minLocDp=5,
+ final offTimThr=180,
+ final timPer=600,
+ final staCon=-0.03,
+ final relFloHys=0.01,
+ final k=1,
+ final Ti=0.5,
+ final Td=0.1,
+ final speConTyp=Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Types.PrimaryPumpSpeedControlTypes.flowrate)
+ "Testing pump configuration 3"
+ annotation (Placement(transformation(extent={{-170,222},{-150,278}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Pumps.PrimaryPumps.Controller
+ priPumCon3(
+ final have_heaPriPum=true,
+ final have_priOnl=false,
+ final have_varPriPum=true,
+ final have_secFloSen=false,
+ final nPum=2,
+ final nBoi=2,
+ final nSen=2,
+ final nPum_nominal=2,
+ final minPumSpe=0.1,
+ final maxPumSpe=1,
+ final VHotWat_flow_nominal=0.5,
+ final boiDesFlo={0.5,0.5},
+ final maxLocDp=10,
+ final minLocDp=5,
+ final offTimThr=180,
+ final timPer=600,
+ final staCon=-0.03,
+ final relFloHys=0.01,
+ final k=1,
+ final Ti=0.5,
+ final Td=0.1,
+ final speConTyp=Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Types.PrimaryPumpSpeedControlTypes.flowrate)
+ "Testing pump configuration 4"
+ annotation (Placement(transformation(extent={{190,202},{210,258}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Pumps.PrimaryPumps.Controller
+ priPumCon4(
+ final have_heaPriPum=true,
+ final have_priOnl=false,
+ final have_varPriPum=true,
+ final have_priSecTemSen=true,
+ final nPum=2,
+ final nBoi=2,
+ final nSen=2,
+ final numIgnReq=0,
+ final nPum_nominal=2,
+ final minPumSpe=0.1,
+ final maxPumSpe=1,
+ final VHotWat_flow_nominal=0.5,
+ final boiDesFlo={0.5,0.5},
+ final maxLocDp=10,
+ final minLocDp=5,
+ final offTimThr=180,
+ final timPer=600,
+ final staCon=-0.03,
+ final relFloHys=0.01,
+ final delTim=900,
+ final samPer=120,
+ final triAmo=-0.02,
+ final resAmo=0.03,
+ final maxRes=0.06,
+ final twoReqLimLow=1.2,
+ final twoReqLimHig=2,
+ final oneReqLimLow=0.2,
+ final oneReqLimHig=1,
+ final k=1,
+ final Ti=0.5,
+ final Td=0.1,
+ final speConTyp=Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Types.PrimaryPumpSpeedControlTypes.temperature)
+ "Testing pump configuration 5"
+ annotation (Placement(transformation(extent={{-170,62},{-150,118}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Pumps.PrimaryPumps.Controller
+ priPumCon5(
+ final have_heaPriPum=true,
+ final have_priOnl=false,
+ final have_varPriPum=true,
+ final have_priSecTemSen=false,
+ final nPum=2,
+ final nBoi=2,
+ final nSen=2,
+ final numIgnReq=0,
+ final nPum_nominal=2,
+ final minPumSpe=0.1,
+ final maxPumSpe=1,
+ final VHotWat_flow_nominal=0.5,
+ final boiDesFlo={0.5,0.5},
+ final maxLocDp=10,
+ final minLocDp=5,
+ final offTimThr=180,
+ final timPer=600,
+ final staCon=-0.03,
+ final relFloHys=0.01,
+ final delTim=900,
+ final samPer=120,
+ final triAmo=-0.02,
+ final resAmo=0.03,
+ final maxRes=0.06,
+ final twoReqLimLow=1.2,
+ final twoReqLimHig=2,
+ final oneReqLimLow=0.2,
+ final oneReqLimHig=1,
+ final k=1,
+ final Ti=0.5,
+ final Td=0.1,
+ final speConTyp=Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Types.PrimaryPumpSpeedControlTypes.temperature)
+ "Testing pump configuration 6"
+ annotation (Placement(transformation(extent={{190,42},{210,98}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Pumps.PrimaryPumps.Controller
+ priPumCon6(
+ final have_heaPriPum=true,
+ final have_priOnl=false,
+ final have_varPriPum=false,
+ final have_priSecTemSen=false,
+ final nPum=2,
+ final nBoi=2,
+ final nSen=2,
+ final numIgnReq=0,
+ final nPum_nominal=2,
+ final minPumSpe=0.1,
+ final maxPumSpe=1,
+ final VHotWat_flow_nominal=0.5,
+ final boiDesFlo={0.5,0.5},
+ final maxLocDp=10,
+ final minLocDp=5,
+ final offTimThr=180,
+ final timPer=600,
+ final staCon=-0.03,
+ final relFloHys=0.01,
+ final delTim=900,
+ final samPer=120,
+ final triAmo=-0.02,
+ final resAmo=0.03,
+ final maxRes=0.06,
+ final twoReqLimLow=1.2,
+ final twoReqLimHig=2,
+ final oneReqLimLow=0.2,
+ final oneReqLimHig=1,
+ final k=1,
+ final Ti=0.5,
+ final Td=0.1,
+ final speConTyp=Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Types.PrimaryPumpSpeedControlTypes.temperature)
+ "Testing pump configuration 7"
+ annotation (Placement(transformation(extent={{-180,-118},{-160,-62}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Pumps.PrimaryPumps.Controller
+ priPumCon7(
+ final have_heaPriPum=false,
+ final have_priOnl=false,
+ final have_varPriPum=true,
+ final nPum=2,
+ final nBoi=2,
+ final nSen=2,
+ final nPum_nominal=2,
+ final minPumSpe=0.1,
+ final maxPumSpe=1,
+ final VHotWat_flow_nominal=0.5,
+ final boiDesFlo={0.5,0.5},
+ final maxLocDp=10,
+ final minLocDp=5,
+ final offTimThr=180,
+ final timPer=600,
+ final staCon=-0.03,
+ final relFloHys=0.01,
+ final k=1,
+ final Ti=0.5,
+ final Td=0.1,
+ final speConTyp=Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Types.PrimaryPumpSpeedControlTypes.flowrate)
+ "Testing pump configuration 8"
+ annotation (Placement(transformation(extent={{210,-138},{230,-82}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Pumps.PrimaryPumps.Controller
+ priPumCon8(
+ final have_heaPriPum=false,
+ final have_priOnl=false,
+ final have_varPriPum=true,
+ final have_secFloSen=false,
+ final nPum=2,
+ final nBoi=2,
+ final nSen=2,
+ final nPum_nominal=2,
+ final minPumSpe=0.1,
+ final maxPumSpe=1,
+ final VHotWat_flow_nominal=0.5,
+ final boiDesFlo={0.5,0.5},
+ final maxLocDp=10,
+ final minLocDp=5,
+ final offTimThr=180,
+ final timPer=600,
+ final staCon=-0.03,
+ final relFloHys=0.01,
+ final k=1,
+ final Ti=0.5,
+ final Td=0.1,
+ final speConTyp=Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Types.PrimaryPumpSpeedControlTypes.flowrate)
+ "Testing pump configuration 9"
+ annotation (Placement(transformation(extent={{-180,-298},{-160,-242}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Pumps.PrimaryPumps.Controller
+ priPumCon9(
+ final have_heaPriPum=false,
+ final have_priOnl=false,
+ final have_varPriPum=true,
+ final have_priSecTemSen=true,
+ final nPum=2,
+ final nBoi=2,
+ final nSen=2,
+ final numIgnReq=0,
+ final nPum_nominal=2,
+ final minPumSpe=0.1,
+ final maxPumSpe=1,
+ final VHotWat_flow_nominal=0.5,
+ final boiDesFlo={0.5,0.5},
+ final maxLocDp=10,
+ final minLocDp=5,
+ final offTimThr=180,
+ final timPer=600,
+ final staCon=-0.03,
+ final relFloHys=0.01,
+ final delTim=900,
+ final samPer=120,
+ final triAmo=-0.02,
+ final resAmo=0.03,
+ final maxRes=0.06,
+ final twoReqLimLow=1.2,
+ final twoReqLimHig=2,
+ final oneReqLimLow=0.2,
+ final oneReqLimHig=1,
+ final k=1,
+ final Ti=0.5,
+ final Td=0.1,
+ final speConTyp=Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Types.PrimaryPumpSpeedControlTypes.temperature)
+ "Testing pump configuration 10"
+ annotation (Placement(transformation(extent={{210,-308},{230,-252}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Pumps.PrimaryPumps.Controller
+ priPumCon10(
+ final have_heaPriPum=false,
+ final have_priOnl=false,
+ final have_varPriPum=true,
+ final have_priSecTemSen=false,
+ final nPum=2,
+ final nBoi=2,
+ final nSen=2,
+ final numIgnReq=0,
+ final nPum_nominal=2,
+ final minPumSpe=0.1,
+ final maxPumSpe=1,
+ final VHotWat_flow_nominal=0.5,
+ final boiDesFlo={0.5,0.5},
+ final maxLocDp=10,
+ final minLocDp=5,
+ final offTimThr=180,
+ final timPer=600,
+ final staCon=-0.03,
+ final relFloHys=0.01,
+ final delTim=900,
+ final samPer=120,
+ final triAmo=-0.02,
+ final resAmo=0.03,
+ final maxRes=0.06,
+ final twoReqLimLow=1.2,
+ final twoReqLimHig=2,
+ final oneReqLimLow=0.2,
+ final oneReqLimHig=1,
+ final k=1,
+ final Ti=0.5,
+ final Td=0.1,
+ final speConTyp=Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Types.PrimaryPumpSpeedControlTypes.temperature)
+ "Testing pump configuration 11"
+ annotation (Placement(transformation(extent={{-170,-458},{-150,-402}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Pumps.PrimaryPumps.Controller
+ priPumCon11(
+ final have_heaPriPum=false,
+ final have_priOnl=false,
+ final have_varPriPum=false,
+ final have_priSecTemSen=false,
+ final nPum=2,
+ final nBoi=2,
+ final nSen=2,
+ final numIgnReq=0,
+ final nPum_nominal=2,
+ final minPumSpe=0.1,
+ final maxPumSpe=1,
+ final VHotWat_flow_nominal=0.5,
+ final boiDesFlo={0.5,0.5},
+ final maxLocDp=10,
+ final minLocDp=5,
+ final offTimThr=180,
+ final timPer=600,
+ final staCon=-0.03,
+ final relFloHys=0.01,
+ final delTim=900,
+ final samPer=120,
+ final triAmo=-0.02,
+ final resAmo=0.03,
+ final maxRes=0.06,
+ final twoReqLimLow=1.2,
+ final twoReqLimHig=2,
+ final oneReqLimLow=0.2,
+ final oneReqLimHig=1,
+ final k=1,
+ final Ti=0.5,
+ final Td=0.1,
+ final speConTyp=Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Types.PrimaryPumpSpeedControlTypes.temperature)
+ "Testing pump configuration 12"
+ annotation (Placement(transformation(extent={{190,-488},{210,-432}})));
+
+ Buildings.Controls.OBC.CDL.Logical.TrueFalseHold truFalHol(
+ final trueHoldDuration=10,
+ final falseHoldDuration=0)
+ "True-hold for signal visualization"
+ annotation (Placement(transformation(extent={{-50,210},{-30,230}})));
+
+ Buildings.Controls.OBC.CDL.Logical.TrueFalseHold truFalHol1(
+ final trueHoldDuration=10,
+ final falseHoldDuration=0)
+ "True-hold for signal visualization"
+ annotation (Placement(transformation(extent={{280,190},{300,210}})));
+
+ Buildings.Controls.OBC.CDL.Logical.TrueFalseHold truFalHol2(
+ final trueHoldDuration=10,
+ final falseHoldDuration=0)
+ "True-hold for signal visualization"
+ annotation (Placement(transformation(extent={{-38,80},{-18,100}})));
+
+ Buildings.Controls.OBC.CDL.Logical.TrueFalseHold truFalHol3(
+ final trueHoldDuration=10,
+ final falseHoldDuration=0)
+ "True-hold for signal visualization"
+ annotation (Placement(transformation(extent={{300,60},{320,80}})));
+
+ Buildings.Controls.OBC.CDL.Logical.TrueFalseHold truFalHol4(
+ final trueHoldDuration=10,
+ final falseHoldDuration=0)
+ "True-hold for signal visualization"
+ annotation (Placement(transformation(extent={{-60,-100},{-40,-80}})));
+
+ Buildings.Controls.OBC.CDL.Logical.TrueFalseHold truFalHol5(
+ final trueHoldDuration=10,
+ final falseHoldDuration=0)
+ "True-hold for signal visualization"
+ annotation (Placement(transformation(extent={{320,-110},{340,-90}})));
+
+ Buildings.Controls.OBC.CDL.Logical.TrueFalseHold truFalHol6(
+ final trueHoldDuration=10,
+ final falseHoldDuration=0)
+ "True-hold for signal visualization"
+ annotation (Placement(transformation(extent={{-60,-280},{-40,-260}})));
+
+ Buildings.Controls.OBC.CDL.Logical.TrueFalseHold truFalHol7(
+ final trueHoldDuration=10,
+ final falseHoldDuration=0)
+ "True-hold for signal visualization"
+ annotation (Placement(transformation(extent={{322,-290},{342,-270}})));
+
+ Buildings.Controls.OBC.CDL.Logical.TrueFalseHold truFalHol8(
+ final trueHoldDuration=10,
+ final falseHoldDuration=0)
+ "True-hold for signal visualization"
+ annotation (Placement(transformation(extent={{-60,-440},{-40,-420}})));
+
+ Buildings.Controls.OBC.CDL.Logical.TrueFalseHold truFalHol9(
+ final trueHoldDuration=10,
+ final falseHoldDuration=0)
+ "True-hold for signal visualization"
+ annotation (Placement(transformation(extent={{308,-450},{328,-430}})));
+
+protected
+ Buildings.Controls.OBC.CDL.Logical.TrueDelay truDel6[2](
+ final delayTime=fill(30, 2))
+ "True delay to simulate pump proven on process"
+ annotation (Placement(transformation(extent={{224,220},{244,240}})));
+
+ Buildings.Controls.OBC.CDL.Logical.TrueDelay truDel7[2](
+ final delayTime=fill(30, 2))
+ "True delay to simulate pump proven on process"
+ annotation (Placement(transformation(extent={{-140,80},{-120,100}})));
+
+ Buildings.Controls.OBC.CDL.Logical.TrueDelay truDel8[2](
+ final delayTime=fill(30, 2))
+ "True delay to simulate pump proven on process"
+ annotation (Placement(transformation(extent={{216,64},{236,84}})));
+
+ Buildings.Controls.OBC.CDL.Logical.TrueDelay truDel9[2](
+ final delayTime=fill(30, 2))
+ "True delay to simulate pump proven on process"
+ annotation (Placement(transformation(extent={{-152,-100},{-132,-80}})));
+
+ Buildings.Controls.OBC.CDL.Logical.TrueDelay truDel10[2](
+ final delayTime=fill(5, 2))
+ "True delay to simulate pump proven on process"
+ annotation (Placement(transformation(extent={{236,-116},{256,-96}})));
+
+ Buildings.Controls.OBC.CDL.Logical.TrueDelay truDel11[2](
+ delayTime=fill(5, 2))
+ "True delay to simulate pump proven on process"
+ annotation (Placement(transformation(extent={{-152,-278},{-132,-258}})));
+
+ Buildings.Controls.OBC.CDL.Logical.TrueDelay truDel12[2](
+ final delayTime=fill(5, 2))
+ "True delay to simulate pump proven on process"
+ annotation (Placement(transformation(extent={{236,-286},{256,-266}})));
+
+ Buildings.Controls.OBC.CDL.Logical.TrueDelay truDel13[2](
+ final delayTime=fill(5, 2))
+ "True delay to simulate pump proven on process"
+ annotation (Placement(transformation(extent={{-144,-434},{-124,-414}})));
+
+ Buildings.Controls.OBC.CDL.Logical.TrueDelay truDel14[2](
+ final delayTime=fill(5, 2))
+ "True delay to simulate pump proven on process"
+ annotation (Placement(transformation(extent={{218,-466},{238,-446}})));
+
+ Buildings.Controls.OBC.CDL.Logical.TrueFalseHold truFalHol10(
+ final trueHoldDuration=3300,
+ final falseHoldDuration=0)
+ "Hold boiler on signal"
+ annotation (Placement(transformation(extent={{130,-110},{150,-90}})));
+
+ Buildings.Controls.OBC.CDL.Logical.TrueFalseHold truFalHol11(
+ final trueHoldDuration=3300,
+ final falseHoldDuration=0)
+ "Hold boiler on signal"
+ annotation (Placement(transformation(extent={{-260,-270},{-240,-250}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Change cha[2]
+ "Detect changes in pump status"
+ annotation (Placement(transformation(extent={{-110,210},{-90,230}})));
+
+ Buildings.Controls.OBC.CDL.Logical.MultiOr mulOr(
+ final nin=2)
+ "Multi Or"
+ annotation (Placement(transformation(extent={{-78,210},{-58,230}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Change cha6[2]
+ "Detect changes in pump status"
+ annotation (Placement(transformation(extent={{220,190},{240,210}})));
+
+ Buildings.Controls.OBC.CDL.Logical.MultiOr mulOr1(
+ final nin=2)
+ "Multi Or"
+ annotation (Placement(transformation(extent={{250,190},{270,210}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Change cha7[2]
+ "Detect changes in pump status"
+ annotation (Placement(transformation(extent={{-98,60},{-78,80}})));
+
+ Buildings.Controls.OBC.CDL.Logical.MultiOr mulOr2(
+ final nin=2)
+ "Multi Or"
+ annotation (Placement(transformation(extent={{-68,60},{-48,80}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Change cha8[2]
+ "Detect changes in pump status"
+ annotation (Placement(transformation(extent={{240,60},{260,80}})));
+
+ Buildings.Controls.OBC.CDL.Logical.MultiOr mulOr3(
+ final nin=2)
+ "Multi Or"
+ annotation (Placement(transformation(extent={{270,60},{290,80}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Change cha9[2]
+ "Detect changes in pump status"
+ annotation (Placement(transformation(extent={{-120,-100},{-100,-80}})));
+
+ Buildings.Controls.OBC.CDL.Logical.MultiOr mulOr4(
+ final nin=2)
+ "Multi Or"
+ annotation (Placement(transformation(extent={{-90,-100},{-70,-80}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Change cha10[2]
+ "Detect changes in pump status"
+ annotation (Placement(transformation(extent={{260,-110},{280,-90}})));
+
+ Buildings.Controls.OBC.CDL.Logical.MultiOr mulOr5(
+ final nin=2)
+ "Multi Or"
+ annotation (Placement(transformation(extent={{290,-110},{310,-90}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Change cha11[2]
+ "Detect changes in pump status"
+ annotation (Placement(transformation(extent={{-120,-280},{-100,-260}})));
+
+ Buildings.Controls.OBC.CDL.Logical.MultiOr mulOr6(
+ final nin=2)
+ "Multi Or"
+ annotation (Placement(transformation(extent={{-90,-280},{-70,-260}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Change cha22[2]
+ "Detect changes in pump status"
+ annotation (Placement(transformation(extent={{262,-290},{282,-270}})));
+
+ Buildings.Controls.OBC.CDL.Logical.MultiOr mulOr7(
+ final nin=2)
+ "Multi Or"
+ annotation (Placement(transformation(extent={{292,-290},{312,-270}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Change cha23[2]
+ "Detect changes in pump status"
+ annotation (Placement(transformation(extent={{-120,-440},{-100,-420}})));
+
+ Buildings.Controls.OBC.CDL.Logical.MultiOr mulOr8(
+ final nin=2)
+ "Multi Or"
+ annotation (Placement(transformation(extent={{-90,-440},{-70,-420}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Change cha24[2]
+ "Detect changes in pump status"
+ annotation (Placement(transformation(extent={{248,-450},{268,-430}})));
+
+ Buildings.Controls.OBC.CDL.Logical.MultiOr mulOr9(
+ final nin=2)
+ "Multi Or"
+ annotation (Placement(transformation(extent={{278,-450},{298,-430}})));
+
+ Buildings.Controls.OBC.CDL.Logical.TrueDelay truDel5[2](
+ final delayTime=fill(1, 2))
+ "True delay to represent pump turning on"
+ annotation (Placement(transformation(extent={{-140,240},{-120,260}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Switch intSwi
+ "Integer switch"
+ annotation (Placement(transformation(extent={{280,-186},{300,-166}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Switch intSwi1
+ "Integer switch"
+ annotation (Placement(transformation(extent={{-120,-340},{-100,-320}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Switch intSwi2
+ "Integer switch"
+ annotation (Placement(transformation(extent={{280,-350},{300,-330}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Switch intSwi3
+ "Integer switch"
+ annotation (Placement(transformation(extent={{-100,-500},{-80,-480}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Switch intSwi4
+ "Integer switch"
+ annotation (Placement(transformation(extent={{260,-530},{280,-510}})));
+
+ Buildings.Controls.OBC.CDL.Logical.TrueDelay truDel(
+ final delayTime=10)
+ "Signal delay for boiler-2 enable"
+ annotation (Placement(transformation(extent={{130,-150},{150,-130}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant conInt[2](
+ final k={2,1})
+ "Pump rotation"
+ annotation (Placement(transformation(extent={{-220,440},{-200,460}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Pre pre1[2](
+ final pre_u_start=fill(false, 2))
+ "Logical pre block"
+ annotation (Placement(transformation(extent={{-130,390},{-110,410}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Sine sin[2](
+ final amplitude=fill(0.5, 2),
+ final freqHz=fill(1/900, 2),
+ final phase=fill(0, 2),
+ final offset=fill(1, 2),
+ final startTime=fill(0, 2))
+ "Sine signal"
+ annotation (Placement(transformation(extent={{-220,360},{-200,380}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Sine sin1(
+ final amplitude=0.1,
+ final freqHz=1/3600,
+ final offset=0.25)
+ "Sine signal"
+ annotation (Placement(transformation(extent={{-270,390},{-250,410}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant conInt1[2](
+ final k={2,1})
+ "Pump rotation"
+ annotation (Placement(transformation(extent={{140,430},{160,450}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Pre pre2[2](
+ final pre_u_start=fill(false, 2))
+ "Logical pre block"
+ annotation (Placement(transformation(extent={{230,380},{250,400}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Sine sin2[2](
+ final amplitude=fill(0.5, 2),
+ final freqHz=fill(1/900, 2),
+ final phase=fill(0, 2),
+ final offset=fill(1, 2),
+ final startTime=fill(0, 2))
+ "Sine signal"
+ annotation (Placement(transformation(extent={{146,348},{166,368}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Sine sin3(
+ final amplitude=0.1,
+ final freqHz=1/3600,
+ final offset=0.25)
+ "Sine signal"
+ annotation (Placement(transformation(extent={{80,350},{100,370}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Sine sin4(
+ final amplitude=5,
+ final freqHz=1/450,
+ final offset=7.5)
+ "Sine signal"
+ annotation (Placement(transformation(extent={{150,310},{170,330}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant conInt2[2](
+ final k={2,1})
+ "Pump rotation"
+ annotation (Placement(transformation(extent={{-220,290},{-200,310}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Pre pre3[2](
+ final pre_u_start=fill(false, 2))
+ "Logical pre block"
+ annotation (Placement(transformation(extent={{-110,240},{-90,260}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant con8(
+ final k=0.25)
+ "Constant Real source"
+ annotation (Placement(transformation(extent={{-310,190},{-290,210}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Sine sin5(
+ final amplitude=0.1,
+ final freqHz=1/900,
+ final offset=0.25)
+ "Sine signal"
+ annotation (Placement(transformation(extent={{-214,208},{-194,228}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Sine sin6(
+ final amplitude=0.1,
+ final freqHz=1/3600,
+ final offset=0.25)
+ "Sine signal"
+ annotation (Placement(transformation(extent={{-280,210},{-260,230}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Pulse booPul1(
+ final period=1800,
+ final shift=15)
+ "Boolean pulse signal"
+ annotation (Placement(transformation(extent={{-280,170},{-260,190}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant con9(
+ final k=true)
+ "Boolean true source"
+ annotation (Placement(transformation(extent={{-250,210},{-230,230}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant conInt3[2](
+ final k={2,1})
+ "Pump rotation"
+ annotation (Placement(transformation(extent={{140,270},{160,290}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Pre pre4[2](
+ final pre_u_start=fill(false, 2))
+ "Logical pre block"
+ annotation (Placement(transformation(extent={{260,220},{280,240}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant con12(
+ final k=0.25)
+ "Constant Real source"
+ annotation (Placement(transformation(extent={{50,170},{70,190}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Sine sin7(
+ final amplitude=0.1,
+ final freqHz=1/900,
+ final offset=0)
+ "Sine signal"
+ annotation (Placement(transformation(extent={{140,188},{160,208}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Sine sin8(
+ final amplitude=0.1,
+ final freqHz=1/3600,
+ final offset=0)
+ "Sine signal"
+ annotation (Placement(transformation(extent={{80,190},{100,210}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Pulse booPul3(
+ final period=1800,
+ final shift=60)
+ "Boolean pulse signal"
+ annotation (Placement(transformation(extent={{80,150},{100,170}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant con13(
+ final k=true)
+ "Boolean true source"
+ annotation (Placement(transformation(extent={{110,190},{130,210}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant conInt4[2](
+ final k={2,1})
+ "Pump rotation"
+ annotation (Placement(transformation(extent={{-220,130},{-200,150}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Pre pre5[2](
+ final pre_u_start=fill(false, 2))
+ "Logical pre block"
+ annotation (Placement(transformation(extent={{-98,100},{-78,120}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant con16(
+ final k=0.25)
+ "Constant Real source"
+ annotation (Placement(transformation(extent={{-310,30},{-290,50}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Sine sin9(
+ final amplitude=1.5,
+ final freqHz=1/3600,
+ final phase=3.1415926535898,
+ final offset=1)
+ "Sine signal"
+ annotation (Placement(transformation(extent={{-214,48},{-194,68}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Sine sin10(
+ final amplitude=0.1,
+ final freqHz=1/3600,
+ final offset=0.25)
+ "Sine signal"
+ annotation (Placement(transformation(extent={{-280,50},{-260,70}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Pulse booPul5(
+ final period=1800,
+ final shift=60)
+ "Boolean pulse signal"
+ annotation (Placement(transformation(extent={{-280,10},{-260,30}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant con17(
+ final k=true)
+ "Boolean true source"
+ annotation (Placement(transformation(extent={{-250,50},{-230,70}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant con18(
+ final k=1)
+ "Constant Real source"
+ annotation (Placement(transformation(extent={{-310,-10},{-290,10}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant conInt5[2](
+ final k={2,1})
+ "Pump rotation"
+ annotation (Placement(transformation(extent={{140,110},{160,130}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Pre pre6[2](
+ final pre_u_start=fill(false, 2))
+ "Logical pre block"
+ annotation (Placement(transformation(extent={{240,90},{260,110}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant con21(
+ final k=0.25)
+ "Constant Real source"
+ annotation (Placement(transformation(extent={{50,10},{70,30}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Sine sin11[2](
+ final amplitude=fill(1.5, 2),
+ final freqHz=fill(1/3600, 2),
+ final phase=fill(3.14, 2),
+ final offset=fill(1, 2),
+ final startTime=fill(0, 2))
+ "Sine signal"
+ annotation (Placement(transformation(extent={{150,30},{170,50}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Sine sin12(
+ final amplitude=0.1,
+ final freqHz=1/3600,
+ final offset=0.25)
+ "Sine signal"
+ annotation (Placement(transformation(extent={{80,30},{100,50}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Pulse booPul7(
+ final period=1800,
+ final shift=60)
+ "Boolean pulse signal"
+ annotation (Placement(transformation(extent={{80,-10},{100,10}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant con22(
+ final k=true)
+ "Boolean true source"
+ annotation (Placement(transformation(extent={{110,30},{130,50}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant con23(
+ final k=1)
+ "Constant Real source"
+ annotation (Placement(transformation(extent={{50,-30},{70,-10}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant conInt6[2](
+ final k={2,1})
+ "Pump rotation"
+ annotation (Placement(transformation(extent={{-230,-50},{-210,-30}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Pre pre7[2](
+ final pre_u_start=fill(false, 2))
+ "Logical pre block"
+ annotation (Placement(transformation(extent={{-120,-70},{-100,-50}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Sine sin14(
+ final amplitude=0.1,
+ final freqHz=1/3600,
+ final offset=0.25)
+ "Sine signal"
+ annotation (Placement(transformation(extent={{-290,-130},{-270,-110}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Pulse booPul9(
+ final period=1800,
+ final shift=60)
+ "Boolean pulse signal"
+ annotation (Placement(transformation(extent={{-290,-170},{-270,-150}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant con27(
+ final k=true)
+ "Boolean true source"
+ annotation (Placement(transformation(extent={{-260,-130},{-240,-110}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant conInt7(
+ final k=2)
+ "Pump rotation index"
+ annotation (Placement(transformation(extent={{240,-170},{260,-150}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Pre pre8[2](
+ final pre_u_start=fill(false, 2))
+ "Logical pre block"
+ annotation (Placement(transformation(extent={{260,-80},{280,-60}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant con29(
+ final k=0.25)
+ "Constant Real source"
+ annotation (Placement(transformation(extent={{70,-170},{90,-150}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Sine sin13(
+ final amplitude=0.5,
+ final freqHz=1/900,
+ final offset=0.25)
+ "Sine signal"
+ annotation (Placement(transformation(extent={{166,-152},{186,-132}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Sine sin15(
+ final amplitude=0.1,
+ final freqHz=1/3600,
+ final offset=0.25)
+ "Sine signal"
+ annotation (Placement(transformation(extent={{100,-150},{120,-130}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Pulse booPul11(
+ final period=1800,
+ final shift=10)
+ "Boolean pulse signal"
+ annotation (Placement(transformation(extent={{100,-190},{120,-170}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant conInt8(
+ final k=2)
+ "Pump rotation index"
+ annotation (Placement(transformation(extent={{-160,-328},{-140,-308}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Pre pre9[2](
+ final pre_u_start=fill(false, 2))
+ "Logical pre block"
+ annotation (Placement(transformation(extent={{-120,-250},{-100,-230}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant con32(
+ final k=0.25)
+ "Constant Real source"
+ annotation (Placement(transformation(extent={{-320,-330},{-300,-310}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Sine sin16(
+ final amplitude=0.5,
+ final freqHz=1/900,
+ final offset=0)
+ "Sine signal"
+ annotation (Placement(transformation(extent={{-230,-312},{-210,-292}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Sine sin17(
+ final amplitude=0.1,
+ final freqHz=1/3600,
+ final offset=0.25)
+ "Sine signal"
+ annotation (Placement(transformation(extent={{-290,-310},{-270,-290}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Pulse booPul13(
+ final period=1800,
+ final shift=10)
+ "Boolean pulse signal"
+ annotation (Placement(transformation(extent={{-290,-350},{-270,-330}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant conInt9(
+ final k=2)
+ "Pump rotation index"
+ annotation (Placement(transformation(extent={{240,-338},{260,-318}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Pre pre10[2](
+ final pre_u_start=fill(false, 2))
+ "Logical pre block"
+ annotation (Placement(transformation(extent={{254,-250},{274,-230}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant con35(
+ final k=0.25)
+ "Constant Real source"
+ annotation (Placement(transformation(extent={{70,-340},{90,-320}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Sine sin18(
+ final amplitude=1.5,
+ final freqHz=1/3600,
+ final phase(displayUnit="deg") = 3.1415926535898,
+ final offset=0.25)
+ "Sine signal"
+ annotation (Placement(transformation(extent={{166,-322},{186,-302}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Sine sin19(
+ final amplitude=0.1,
+ final freqHz=1/3600,
+ final offset=0.25)
+ "Sine signal"
+ annotation (Placement(transformation(extent={{100,-320},{120,-300}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Pulse booPul15(
+ final period=1800,
+ final shift=10)
+ "Boolean pulse signal"
+ annotation (Placement(transformation(extent={{100,-360},{120,-340}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant con37(
+ final k=0.25)
+ "Constant Real source"
+ annotation (Placement(transformation(extent={{70,-380},{90,-360}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant conInt10(
+ final k=2)
+ "Pump rotation index"
+ annotation (Placement(transformation(extent={{-140,-488},{-120,-468}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Pre pre11[2](
+ final pre_u_start=fill(false, 2))
+ "Logical pre block"
+ annotation (Placement(transformation(extent={{-120,-410},{-100,-390}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant con39(
+ final k=0.25)
+ "Constant Real source"
+ annotation (Placement(transformation(extent={{-310,-490},{-290,-470}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Sine sin20[2](
+ final amplitude=fill(1.5, 2),
+ final freqHz=fill(1/3600, 2),
+ final phase=fill(3.14, 2),
+ final offset=fill(1, 2),
+ final startTime=fill(0, 2))
+ "Sine signal"
+ annotation (Placement(transformation(extent={{-214,-472},{-194,-452}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Sine sin21(
+ final amplitude=0.1,
+ final freqHz=1/3600,
+ final offset=0.25)
+ "Sine signal"
+ annotation (Placement(transformation(extent={{-280,-470},{-260,-450}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Pulse booPul17(
+ final period=1800,
+ final shift=10)
+ "Boolean pulse signal"
+ annotation (Placement(transformation(extent={{-280,-510},{-260,-490}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant con41(
+ final k=1)
+ "Constant Real source"
+ annotation (Placement(transformation(extent={{-310,-530},{-290,-510}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant conInt11(
+ final k=2)
+ "Pump rotation index"
+ annotation (Placement(transformation(extent={{220,-518},{240,-498}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Pre pre12[2](
+ final pre_u_start=fill(false, 2))
+ "Logical pre block"
+ annotation (Placement(transformation(extent={{248,-420},{268,-400}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Sine sin22(
+ final amplitude=0.1,
+ final freqHz=1/3600,
+ final offset=0.25)
+ "Sine signal"
+ annotation (Placement(transformation(extent={{80,-500},{100,-480}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Pulse booPul19(
+ final period=1800,
+ final shift=10)
+ "Boolean pulse signal"
+ annotation (Placement(transformation(extent={{80,-540},{100,-520}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Change cha12
+ "Change detector"
+ annotation (Placement(transformation(extent={{-220,170},{-200,190}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Change cha13
+ "Change detector"
+ annotation (Placement(transformation(extent={{140,150},{160,170}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Change cha14
+ "Change detector"
+ annotation (Placement(transformation(extent={{-220,10},{-200,30}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Change cha15
+ "Change detector"
+ annotation (Placement(transformation(extent={{140,-10},{160,10}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Change cha16
+ "Change detector"
+ annotation (Placement(transformation(extent={{-230,-170},{-210,-150}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Change cha17
+ "Change detector"
+ annotation (Placement(transformation(extent={{120,-50},{140,-30}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Change cha18
+ "Change detector"
+ annotation (Placement(transformation(extent={{-260,-240},{-240,-220}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Change cha19
+ "Change detector"
+ annotation (Placement(transformation(extent={{130,-220},{150,-200}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Change cha20
+ "Change detector"
+ annotation (Placement(transformation(extent={{-250,-380},{-230,-360}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Change cha21
+ "Change detector"
+ annotation (Placement(transformation(extent={{110,-400},{130,-380}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Edge edg
+ "Edge detector"
+ annotation (Placement(transformation(extent={{180,-360},{200,-340}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Edge edg2
+ "Edge detector"
+ annotation (Placement(transformation(extent={{-210,-350},{-190,-330}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Edge edg3
+ "Edge detector"
+ annotation (Placement(transformation(extent={{-210,-510},{-190,-490}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Edge edg4
+ "Edge detector"
+ annotation (Placement(transformation(extent={{160,-540},{180,-520}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Pulse pul[2](
+ final amplitude=fill(1, 2),
+ final width=fill(0.95, 2),
+ final period=fill(3600, 2),
+ final shift=fill(10, 2))
+ "Real pulse signal"
+ annotation (Placement(transformation(extent={{-336,408},{-316,428}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant con1(
+ final k=1)
+ "Constant Real source"
+ annotation (Placement(transformation(extent={{-270,360},{-250,380}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Pulse pul1[2](
+ final amplitude=fill(1, 2),
+ final width=fill(0.95, 2),
+ final period=fill(3600, 2),
+ final shift=fill(10, 2))
+ "Real pulse signal"
+ annotation (Placement(transformation(extent={{0,400},{20,420}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant con3(
+ final k=1)
+ "Constant Real source"
+ annotation (Placement(transformation(extent={{80,380},{100,400}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Pulse pul2[2](
+ final amplitude=fill(1, 2),
+ final width=fill(0.95, 2),
+ final period=fill(3600, 2),
+ final shift=fill(10, 2))
+ "Real pulse signal"
+ annotation (Placement(transformation(extent={{-330,260},{-310,280}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Pulse pul3[2](
+ final amplitude=fill(1, 2),
+ final width=fill(0.95, 2),
+ final period=fill(3600, 2),
+ final shift=fill(10, 2))
+ "Real pulse signal"
+ annotation (Placement(transformation(extent={{10,240},{30,260}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Pulse pul4[2](
+ final amplitude=fill(1, 2),
+ final width=fill(0.95, 2),
+ final period=fill(3600, 2),
+ final shift=fill(10, 2))
+ "Real pulse signal"
+ annotation (Placement(transformation(extent={{-330,100},{-310,120}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Pulse pul5[2](
+ final amplitude=fill(1, 2),
+ final width=fill(0.95, 2),
+ final period=fill(3600, 2),
+ final shift=fill(10, 2))
+ "Real pulse signal"
+ annotation (Placement(transformation(extent={{20,80},{40,100}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Pulse pul6[2](
+ final amplitude=fill(1, 2),
+ final width=fill(0.95, 2),
+ final period=fill(3600, 2),
+ final shift=fill(10, 2))
+ "Real pulse signal"
+ annotation (Placement(transformation(extent={{-328,-80},{-308,-60}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Or or2
+ "Logical Or"
+ annotation (Placement(transformation(extent={{170,-80},{190,-60}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Or or1
+ "Logical Or"
+ annotation (Placement(transformation(extent={{-230,-220},{-210,-200}})));
+
+ Buildings.Controls.OBC.CDL.Logical.TrueFalseHold truFalHol12(
+ final trueHoldDuration=3300,
+ final falseHoldDuration=0)
+ "Hold boiler on signal"
+ annotation (Placement(transformation(extent={{130,-280},{150,-260}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Or or3
+ "Logical Or"
+ annotation (Placement(transformation(extent={{170,-250},{190,-230}})));
+
+ Buildings.Controls.OBC.CDL.Logical.TrueFalseHold truFalHol13(
+ final trueHoldDuration=3300,
+ final falseHoldDuration=0)
+ "Hold boiler on signal"
+ annotation (Placement(transformation(extent={{-250,-430},{-230,-410}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Or or4
+ "Logical Or"
+ annotation (Placement(transformation(extent={{-210,-400},{-190,-380}})));
+
+ Buildings.Controls.OBC.CDL.Logical.TrueFalseHold truFalHol14(
+ final trueHoldDuration=3300,
+ final falseHoldDuration=0)
+ "Hold boiler on signal"
+ annotation (Placement(transformation(extent={{110,-460},{130,-440}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Or or5
+ "Logical Or"
+ annotation (Placement(transformation(extent={{150,-430},{170,-410}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.MultiSum mulSum(
+ final nin=2)
+ "Sum of isolation valve positions"
+ annotation (Placement(transformation(extent={{-300,440},{-280,460}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.GreaterThreshold lesThr(
+ final t=0.05)
+ "Check if isolation valves are closed"
+ annotation (Placement(transformation(extent={{-260,440},{-240,460}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.MultiSum mulSum1(
+ final nin=2)
+ "Sum of isolation valve positions"
+ annotation (Placement(transformation(extent={{30,440},{50,460}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.GreaterThreshold lesThr1(
+ final t=0.05)
+ "Check if isolation valves are closed"
+ annotation (Placement(transformation(extent={{70,440},{90,460}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.MultiSum mulSum2(
+ final nin=2)
+ "Sum of isolation valve positions"
+ annotation (Placement(transformation(extent={{-300,300},{-280,320}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.GreaterThreshold lesThr2(
+ final t=0.05)
+ "Check if isolation valves are closed"
+ annotation (Placement(transformation(extent={{-270,300},{-250,320}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.MultiSum mulSum3(
+ final nin=2)
+ "Sum of isolation valve positions"
+ annotation (Placement(transformation(extent={{50,280},{70,300}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.GreaterThreshold lesThr3(
+ final t=0.05)
+ "Check if isolation valves are closed"
+ annotation (Placement(transformation(extent={{80,280},{100,300}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.MultiSum mulSum4(
+ final nin=2)
+ "Sum of isolation valve positions"
+ annotation (Placement(transformation(extent={{-300,140},{-280,160}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.GreaterThreshold lesThr4(
+ final t=0.05)
+ "Check if isolation valves are closed"
+ annotation (Placement(transformation(extent={{-270,140},{-250,160}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.MultiSum mulSum5(
+ final nin=2)
+ "Sum of isolation valve positions"
+ annotation (Placement(transformation(extent={{60,120},{80,140}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.GreaterThreshold lesThr5(
+ final t=0.05)
+ "Check if isolation valves are closed"
+ annotation (Placement(transformation(extent={{90,120},{110,140}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.MultiSum mulSum6(
+ final nin=2)
+ "Sum of isolation valve positions"
+ annotation (Placement(transformation(extent={{-300,-40},{-280,-20}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.GreaterThreshold lesThr6(
+ final t=0.05)
+ "Check if isolation valves are closed"
+ annotation (Placement(transformation(extent={{-270,-40},{-250,-20}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant conInt12(
+ final k=1)
+ "Pump rotation index"
+ annotation (Placement(transformation(extent={{240,-200},{260,-180}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant conInt13(
+ final k=1)
+ "Pump rotation index"
+ annotation (Placement(transformation(extent={{-160,-360},{-140,-340}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant conInt14(
+ final k=1)
+ "Pump rotation index"
+ annotation (Placement(transformation(extent={{240,-370},{260,-350}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant conInt15(
+ final k=1)
+ "Pump rotation index"
+ annotation (Placement(transformation(extent={{-140,-520},{-120,-500}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant conInt16(
+ final k=1)
+ "Pump rotation index"
+ annotation (Placement(transformation(extent={{220,-550},{240,-530}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Change cha1
+ "Change detector"
+ annotation (Placement(transformation(extent={{120,-80},{140,-60}})));
+
+ Buildings.Controls.OBC.CDL.Logical.TrueDelay truDel1(
+ final delayTime=10)
+ "Signal delay for boiler-2 enable"
+ annotation (Placement(transformation(extent={{-258,-314},{-238,-294}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Change cha2
+ "Change detector"
+ annotation (Placement(transformation(extent={{-260,-210},{-240,-190}})));
+
+ Buildings.Controls.OBC.CDL.Logical.TrueDelay truDel2(
+ final delayTime=10)
+ "Signal delay for boiler-2 enable"
+ annotation (Placement(transformation(extent={{130,-320},{150,-300}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Change cha3
+ "Change detector"
+ annotation (Placement(transformation(extent={{130,-254},{150,-234}})));
+
+ Buildings.Controls.OBC.CDL.Logical.TrueDelay truDel3(
+ final delayTime=10)
+ "Signal delay for boiler-2 enable"
+ annotation (Placement(transformation(extent={{-250,-470},{-230,-450}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Change cha4
+ "Change detector"
+ annotation (Placement(transformation(extent={{-250,-404},{-230,-384}})));
+
+ Buildings.Controls.OBC.CDL.Logical.TrueDelay truDel4(
+ final delayTime=10)
+ "Signal delay for boiler-2 enable"
+ annotation (Placement(transformation(extent={{120,-540},{140,-520}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Change cha5
+ "Change detector"
+ annotation (Placement(transformation(extent={{110,-430},{130,-410}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Pre pre13 "Logical pre block"
+ annotation (Placement(transformation(extent={{112,150},{132,170}})));
+
+equation
+ connect(conInt.y, priPumCon.uPumLeaLag) annotation (Line(points={{-198,450},{
+ -180,450},{-180,427.067},{-172,427.067}},
+ color={255,127,0}));
+
+ connect(priPumCon.yHotWatPum, pre1.u)
+ annotation (Line(points={{-148,403.733},{-140,403.733},{-140,400},{-132,400}},
+ color={255,0,255}));
+
+ connect(sin1.y, priPumCon.VHotWat_flow) annotation (Line(points={{-248,400},{
+ -194,400},{-194,415.867},{-172,415.867}}, color={0,0,127}));
+
+ connect(sin.y, priPumCon.dpHotWat_remote) annotation (Line(points={{-198,370},
+ {-186,370},{-186,392.533},{-172,392.533}},
+ color={0,0,127}));
+
+ connect(conInt1.y, priPumCon1.uPumLeaLag) annotation (Line(points={{162,440},
+ {180,440},{180,417.067},{188,417.067}},
+ color={255,127,0}));
+
+ connect(priPumCon1.yHotWatPum, pre2.u)
+ annotation (Line(points={{212,393.733},{220,393.733},{220,390},{228,390}},
+ color={255,0,255}));
+
+ connect(sin3.y, priPumCon1.VHotWat_flow) annotation (Line(points={{102,360},{
+ 142,360},{142,394},{166,394},{166,405.867},{188,405.867}},
+ color={0,0,127}));
+
+ connect(sin2.y, priPumCon1.dpHotWat_remote) annotation (Line(points={{168,358},
+ {174,358},{174,382.533},{188,382.533}},
+ color={0,0,127}));
+
+ connect(sin4.y, priPumCon1.dpHotWat_local) annotation (Line(points={{172,320},
+ {184,320},{184,385.333},{188,385.333}},
+ color={0,0,127}));
+
+ connect(conInt2.y,priPumCon2. uPumLeaLag) annotation (Line(points={{-198,300},
+ {-180,300},{-180,277.067},{-172,277.067}},
+ color={255,127,0}));
+
+ connect(con8.y,priPumCon2. uMinPriPumSpeCon) annotation (Line(points={{-288,
+ 200},{-180,200},{-180,236.933},{-172,236.933}},
+ color={0,0,127}));
+
+ connect(sin6.y,priPumCon2. VHotWat_flow) annotation (Line(points={{-258,220},
+ {-256,220},{-256,238},{-218,238},{-218,254},{-194,254},{-194,265.867},
+ {-172,265.867}}, color={0,0,127}));
+
+ connect(sin5.y, priPumCon2.VHotWatSec_flow) annotation (Line(points={{-192,
+ 218},{-184,218},{-184,234.133},{-172,234.133}},
+ color={0,0,127}));
+
+ connect(booPul1.y, priPumCon2.uStaUp) annotation (Line(points={{-258,180},{
+ -254,180},{-254,248},{-180,248},{-180,260.267},{-172,260.267}},
+ color={255,0,255}));
+
+ connect(booPul1.y, priPumCon2.uOnOff) annotation (Line(points={{-258,180},{
+ -254,180},{-254,248},{-180,248},{-180,257.467},{-172,257.467}},
+ color={255,0,255}));
+
+ connect(booPul1.y, priPumCon2.uBoiSta[2]) annotation (Line(points={{-258,180},
+ {-254,180},{-254,248},{-180,248},{-180,264},{-172,264}}, color={255,0,
+ 255}));
+
+ connect(con9.y, priPumCon2.uBoiSta[1]) annotation (Line(points={{-228,220},{
+ -226,220},{-226,244},{-188,244},{-188,262.133},{-172,262.133}},
+ color={255,0,255}));
+
+ connect(conInt3.y,priPumCon3. uPumLeaLag) annotation (Line(points={{162,280},
+ {180,280},{180,257.067},{188,257.067}},
+ color={255,127,0}));
+
+ connect(con12.y, priPumCon3.uMinPriPumSpeCon) annotation (Line(points={{72,180},
+ {180,180},{180,216.933},{188,216.933}},
+ color={0,0,127}));
+
+ connect(sin8.y,priPumCon3. VHotWat_flow) annotation (Line(points={{102,200},{
+ 104,200},{104,218},{142,218},{142,234},{166,234},{166,245.867},{188,
+ 245.867}}, color={0,0,127}));
+
+ connect(booPul3.y, priPumCon3.uStaUp) annotation (Line(points={{102,160},{106,
+ 160},{106,228},{180,228},{180,240.267},{188,240.267}},
+ color={255,0,255}));
+
+ connect(booPul3.y, priPumCon3.uOnOff) annotation (Line(points={{102,160},{106,
+ 160},{106,228},{180,228},{180,237.467},{188,237.467}},
+ color={255,0,255}));
+
+ connect(booPul3.y, priPumCon3.uBoiSta[2]) annotation (Line(points={{102,160},{
+ 106,160},{106,228},{180,228},{180,244},{188,244}}, color={255,0,255}));
+
+ connect(con13.y, priPumCon3.uBoiSta[1]) annotation (Line(points={{132,200},{
+ 134,200},{134,224},{172,224},{172,242.133},{188,242.133}},
+ color={255,0,255}));
+
+ connect(sin7.y, priPumCon3.VHotWatDec_flow) annotation (Line(points={{162,198},
+ {176,198},{176,211.333},{188,211.333}},
+ color={0,0,127}));
+
+ connect(conInt4.y,priPumCon4. uPumLeaLag) annotation (Line(points={{-198,140},
+ {-180,140},{-180,117.067},{-172,117.067}},
+ color={255,127,0}));
+
+ connect(con16.y, priPumCon4.uMinPriPumSpeCon) annotation (Line(points={{-288,40},
+ {-180,40},{-180,76.9333},{-172,76.9333}},
+ color={0,0,127}));
+
+ connect(sin10.y, priPumCon4.VHotWat_flow) annotation (Line(points={{-258,60},
+ {-256,60},{-256,78},{-218,78},{-218,94},{-194,94},{-194,105.867},{
+ -172,105.867}},
+ color={0,0,127}));
+
+ connect(booPul5.y, priPumCon4.uStaUp) annotation (Line(points={{-258,20},{
+ -254,20},{-254,88},{-180,88},{-180,100.267},{-172,100.267}},
+ color={255,0,255}));
+
+ connect(booPul5.y, priPumCon4.uOnOff) annotation (Line(points={{-258,20},{
+ -254,20},{-254,88},{-180,88},{-180,97.4667},{-172,97.4667}},
+ color={255,0,255}));
+
+ connect(booPul5.y, priPumCon4.uBoiSta[2]) annotation (Line(points={{-258,20},{
+ -254,20},{-254,88},{-180,88},{-180,104},{-172,104}}, color={255,0,255}));
+
+ connect(con17.y, priPumCon4.uBoiSta[1]) annotation (Line(points={{-228,60},{
+ -226,60},{-226,84},{-188,84},{-188,102.133},{-172,102.133}},
+ color={255,0,255}));
+
+ connect(sin9.y, priPumCon4.THotWatPri) annotation (Line(points={{-192,58},{
+ -182,58},{-182,68.5333},{-172,68.5333}},
+ color={0,0,127}));
+
+ connect(con18.y, priPumCon4.THotWatSec) annotation (Line(points={{-288,0},{
+ -224,0},{-224,38},{-176,38},{-176,65.7333},{-172,65.7333}},
+ color={0,0,127}));
+
+ connect(conInt5.y,priPumCon5. uPumLeaLag) annotation (Line(points={{162,120},
+ {180,120},{180,97.0667},{188,97.0667}},
+ color={255,127,0}));
+
+ connect(con21.y, priPumCon5.uMinPriPumSpeCon) annotation (Line(points={{72,20},
+ {180,20},{180,56.9333},{188,56.9333}},
+ color={0,0,127}));
+
+ connect(sin12.y, priPumCon5.VHotWat_flow) annotation (Line(points={{102,40},{
+ 104,40},{104,58},{142,58},{142,74},{166,74},{166,85.8667},{188,
+ 85.8667}}, color={0,0,
+ 127}));
+
+ connect(booPul7.y, priPumCon5.uStaUp) annotation (Line(points={{102,0},{106,0},
+ {106,68},{180,68},{180,80.2667},{188,80.2667}},
+ color={255,0,255}));
+
+ connect(booPul7.y, priPumCon5.uOnOff) annotation (Line(points={{102,0},{106,0},
+ {106,68},{180,68},{180,77.4667},{188,77.4667}},
+ color={255,0,255}));
+
+ connect(booPul7.y, priPumCon5.uBoiSta[2]) annotation (Line(points={{102,0},{106,
+ 0},{106,68},{180,68},{180,84},{188,84}}, color={255,0,255}));
+
+ connect(con22.y, priPumCon5.uBoiSta[1]) annotation (Line(points={{132,40},{
+ 134,40},{134,64},{172,64},{172,82.1333},{188,82.1333}},
+ color={255,0,255}));
+
+ connect(sin11.y, priPumCon5.THotWatBoiSup) annotation (Line(points={{172,40},
+ {178,40},{178,42.9333},{188,42.9333}},
+ color={0,0,127}));
+
+ connect(con23.y, priPumCon5.THotWatSec) annotation (Line(points={{72,-20},{
+ 136,-20},{136,18},{184,18},{184,45.7333},{188,45.7333}},
+ color={0,0,127}));
+
+ connect(conInt6.y,priPumCon6. uPumLeaLag) annotation (Line(points={{-208,-40},
+ {-190,-40},{-190,-62.9333},{-182,-62.9333}},
+ color={255,127,0}));
+
+ connect(sin14.y, priPumCon6.VHotWat_flow) annotation (Line(points={{-268,-120},
+ {-266,-120},{-266,-102},{-228,-102},{-228,-86},{-204,-86},{-204,
+ -74.1333},{-182,-74.1333}},
+ color={0,0,127}));
+
+ connect(booPul9.y, priPumCon6.uStaUp) annotation (Line(points={{-268,-160},{
+ -264,-160},{-264,-92},{-190,-92},{-190,-79.7333},{-182,-79.7333}},
+ color={255,0,255}));
+
+ connect(booPul9.y, priPumCon6.uOnOff) annotation (Line(points={{-268,-160},{
+ -264,-160},{-264,-92},{-190,-92},{-190,-82.5333},{-182,-82.5333}},
+ color={255,0,255}));
+
+ connect(booPul9.y, priPumCon6.uBoiSta[2]) annotation (Line(points={{-268,-160},
+ {-264,-160},{-264,-92},{-190,-92},{-190,-76},{-182,-76}}, color={255,0,
+ 255}));
+
+ connect(con27.y, priPumCon6.uBoiSta[1]) annotation (Line(points={{-238,-120},
+ {-236,-120},{-236,-96},{-198,-96},{-198,-77.8667},{-182,-77.8667}},
+ color={255,0,
+ 255}));
+
+ connect(con29.y, priPumCon7.uMinPriPumSpeCon) annotation (Line(points={{92,-160},
+ {200,-160},{200,-123.067},{208,-123.067}},
+ color={0,0,127}));
+
+ connect(sin15.y, priPumCon7.VHotWat_flow) annotation (Line(points={{122,-140},
+ {124,-140},{124,-122},{160,-122},{160,-106},{186,-106},{186,-94.1333},
+ {208,-94.1333}},
+ color={0,0,127}));
+
+ connect(sin13.y, priPumCon7.VHotWatSec_flow) annotation (Line(points={{188,
+ -142},{198,-142},{198,-125.867},{208,-125.867}},
+ color={0,0,127}));
+
+ connect(con32.y, priPumCon8.uMinPriPumSpeCon) annotation (Line(points={{-298,
+ -320},{-190,-320},{-190,-283.067},{-182,-283.067}},
+ color={0,0,127}));
+
+ connect(sin17.y, priPumCon8.VHotWat_flow) annotation (Line(points={{-268,-300},
+ {-266,-300},{-266,-282},{-228,-282},{-228,-266},{-204,-266},{-204,
+ -254.133},{-182,-254.133}},
+ color={0,0,127}));
+
+ connect(sin16.y, priPumCon8.VHotWatDec_flow) annotation (Line(points={{-208,
+ -302},{-194,-302},{-194,-288.667},{-182,-288.667}},
+ color={0,0,127}));
+
+ connect(con35.y, priPumCon9.uMinPriPumSpeCon) annotation (Line(points={{92,-330},
+ {200,-330},{200,-293.067},{208,-293.067}},
+ color={0,0,127}));
+
+ connect(sin19.y, priPumCon9.VHotWat_flow) annotation (Line(points={{122,-310},
+ {124,-310},{124,-292},{162,-292},{162,-276},{186,-276},{186,-264.133},
+ {208,-264.133}},
+ color={0,0,127}));
+
+ connect(sin18.y, priPumCon9.THotWatPri) annotation (Line(points={{188,-312},{
+ 198,-312},{198,-301.467},{208,-301.467}},
+ color={0,0,127}));
+
+ connect(con37.y, priPumCon9.THotWatSec) annotation (Line(points={{92,-370},{
+ 156,-370},{156,-332},{204,-332},{204,-304.267},{208,-304.267}},
+ color={0,0,127}));
+
+ connect(con39.y, priPumCon10.uMinPriPumSpeCon) annotation (Line(points={{-288,
+ -480},{-180,-480},{-180,-443.067},{-172,-443.067}},
+ color={0,0,127}));
+
+ connect(sin21.y, priPumCon10.VHotWat_flow) annotation (Line(points={{-258,
+ -460},{-256,-460},{-256,-442},{-218,-442},{-218,-426},{-194,-426},{
+ -194,-414.133},{-172,-414.133}},
+ color={0,0,127}));
+
+ connect(sin20.y, priPumCon10.THotWatBoiSup) annotation (Line(points={{-192,
+ -462},{-182,-462},{-182,-457.067},{-172,-457.067}},
+ color={0,0,127}));
+
+ connect(con41.y, priPumCon10.THotWatSec) annotation (Line(points={{-288,-520},
+ {-224,-520},{-224,-482},{-174,-482},{-174,-454.267},{-172,-454.267}},
+ color={0,0,127}));
+
+ connect(sin22.y, priPumCon11.VHotWat_flow) annotation (Line(points={{102,-490},
+ {104,-490},{104,-472},{142,-472},{142,-456},{166,-456},{166,-444.133},
+ {188,-444.133}},
+ color={0,0,127}));
+
+ connect(cha12.y, priPumCon2.uPumChaPro) annotation (Line(points={{-198,180},{
+ -176,180},{-176,254.667},{-172,254.667}},
+ color={255,0,255}));
+
+ connect(cha13.y, priPumCon3.uPumChaPro) annotation (Line(points={{162,160},{
+ 184,160},{184,234.667},{188,234.667}},
+ color={255,0,255}));
+
+ connect(cha14.y, priPumCon4.uPumChaPro) annotation (Line(points={{-198,20},{
+ -178,20},{-178,94.6667},{-172,94.6667}},
+ color={255,0,255}));
+
+ connect(cha15.y, priPumCon5.uPumChaPro) annotation (Line(points={{162,0},{182,
+ 0},{182,74.6667},{188,74.6667}},
+ color={255,0,255}));
+
+ connect(cha16.y, priPumCon6.uPumChaPro) annotation (Line(points={{-208,-160},
+ {-186,-160},{-186,-85.3333},{-182,-85.3333}},
+ color={255,0,255}));
+
+ connect(booPul1.y, cha12.u)
+ annotation (Line(points={{-258,180},{-222,180}}, color={255,0,255}));
+
+ connect(booPul5.y, cha14.u)
+ annotation (Line(points={{-258,20},{-222,20}}, color={255,0,255}));
+
+ connect(booPul7.y, cha15.u)
+ annotation (Line(points={{102,0},{138,0}}, color={255,0,255}));
+
+ connect(booPul9.y, cha16.u)
+ annotation (Line(points={{-268,-160},{-232,-160}}, color={255,0,255}));
+
+ connect(booPul13.y, cha18.u)
+ annotation (Line(points={{-268,-340},{-264,-340},{-264,-230},{-262,-230}},
+ color={255,0,255}));
+
+ connect(booPul15.y, cha19.u)
+ annotation (Line(points={{122,-350},{126,-350},{126,-210},{128,-210}},
+ color={255,0,255}));
+
+ connect(booPul17.y, cha20.u)
+ annotation (Line(points={{-258,-500},{-254,-500},{-254,-370},{-252,-370}},
+ color={255,0,255}));
+
+ connect(booPul19.y, cha21.u)
+ annotation (Line(points={{102,-530},{106,-530},{106,-390},{108,-390}},
+ color={255,0,255}));
+
+ connect(booPul15.y, edg.u) annotation (Line(points={{122,-350},{126,-350},{
+ 126,-366},{170,-366},{170,-350},{178,-350}}, color={255,0,255}));
+
+ connect(edg.y, priPumCon9.uStaUp) annotation (Line(points={{202,-350},{202,
+ -269.733},{208,-269.733}},
+ color={255,0,255}));
+
+ connect(edg.y, priPumCon9.uOnOff) annotation (Line(points={{202,-350},{202,
+ -272.533},{208,-272.533}},
+ color={255,0,255}));
+
+ connect(booPul13.y, edg2.u) annotation (Line(points={{-268,-340},{-264,-340},
+ {-264,-354},{-214,-354},{-214,-340},{-212,-340}}, color={255,0,255}));
+
+ connect(edg2.y, priPumCon8.uStaUp) annotation (Line(points={{-188,-340},{-186,
+ -340},{-186,-259.733},{-182,-259.733}},
+ color={255,0,255}));
+
+ connect(edg2.y, priPumCon8.uOnOff) annotation (Line(points={{-188,-340},{-186,
+ -340},{-186,-262.533},{-182,-262.533}},
+ color={255,0,255}));
+
+ connect(booPul17.y, edg3.u) annotation (Line(points={{-258,-500},{-254,-500},
+ {-254,-514},{-214,-514},{-214,-500},{-212,-500}}, color={255,0,255}));
+
+ connect(edg3.y, priPumCon10.uStaUp) annotation (Line(points={{-188,-500},{
+ -178,-500},{-178,-419.733},{-172,-419.733}},
+ color={255,0,255}));
+
+ connect(edg3.y, priPumCon10.uOnOff) annotation (Line(points={{-188,-500},{
+ -178,-500},{-178,-422.533},{-172,-422.533}},
+ color={255,0,255}));
+
+ connect(booPul19.y, edg4.u) annotation (Line(points={{102,-530},{106,-530},{
+ 106,-550},{150,-550},{150,-530},{158,-530}}, color={255,0,255}));
+
+ connect(edg4.y, priPumCon11.uStaUp) annotation (Line(points={{182,-530},{186,
+ -530},{186,-449.733},{188,-449.733}},
+ color={255,0,255}));
+
+ connect(edg4.y, priPumCon11.uOnOff) annotation (Line(points={{182,-530},{186,
+ -530},{186,-452.533},{188,-452.533}},
+ color={255,0,255}));
+
+ connect(pul.y, priPumCon.uHotIsoVal) annotation (Line(points={{-314,418},{
+ -244,418},{-244,418.667},{-172,418.667}},
+ color={0,0,127}));
+
+ connect(con1.y, priPumCon.dpHotWatSet) annotation (Line(points={{-248,370},{
+ -234,370},{-234,389.733},{-172,389.733}},
+ color={0,0,127}));
+
+ connect(pre1.y, priPumCon.uHotWatPum) annotation (Line(points={{-108,400},{
+ -100,400},{-100,440},{-190,440},{-190,424.267},{-172,424.267}},
+ color={255,0,
+ 255}));
+
+ connect(pre2.y, priPumCon1.uHotWatPum) annotation (Line(points={{252,390},{
+ 272,390},{272,460},{110,460},{110,414.267},{188,414.267}},
+ color={255,0,255}));
+
+ connect(pul1.y, priPumCon1.uHotIsoVal) annotation (Line(points={{22,410},{116,
+ 410},{116,408.667},{188,408.667}},
+ color={0,0,127}));
+
+ connect(con3.y, priPumCon1.dpHotWatSet) annotation (Line(points={{102,390},{
+ 160,390},{160,379.733},{188,379.733}},
+ color={0,0,127}));
+
+ connect(pul2.y, priPumCon2.uHotIsoVal) annotation (Line(points={{-308,270},{
+ -224,270},{-224,268.667},{-172,268.667}},
+ color={0,0,127}));
+
+ connect(pre3.y, priPumCon2.uHotWatPum) annotation (Line(points={{-88,250},{
+ -86,250},{-86,320},{-240,320},{-240,274.267},{-172,274.267}},
+ color={255,0,
+ 255}));
+
+ connect(pul3.y, priPumCon3.uHotIsoVal) annotation (Line(points={{32,250},{136,
+ 250},{136,248.667},{188,248.667}},
+ color={0,0,127}));
+
+ connect(pre4.y, priPumCon3.uHotWatPum) annotation (Line(points={{282,230},{
+ 290,230},{290,300},{130,300},{130,254.267},{188,254.267}},
+ color={255,0,255}));
+
+ connect(pul4.y, priPumCon4.uHotIsoVal) annotation (Line(points={{-308,110},{
+ -224,110},{-224,108.667},{-172,108.667}},
+ color={0,0,127}));
+
+ connect(pre5.y, priPumCon4.uHotWatPum) annotation (Line(points={{-76,110},{
+ -70,110},{-70,160},{-230,160},{-230,114.267},{-172,114.267}},
+ color={255,0,
+ 255}));
+
+ connect(pre6.y, priPumCon5.uHotWatPum) annotation (Line(points={{262,100},{
+ 270,100},{270,140},{130,140},{130,94.2667},{188,94.2667}},
+ color={255,0,255}));
+
+ connect(pul5.y, priPumCon5.uHotIsoVal) annotation (Line(points={{42,90},{136,
+ 90},{136,88.6667},{188,88.6667}},
+ color={0,0,127}));
+
+ connect(pre7.y, priPumCon6.uHotWatPum) annotation (Line(points={{-98,-60},{
+ -90,-60},{-90,-20},{-240,-20},{-240,-65.7333},{-182,-65.7333}},
+ color={255,0,
+ 255}));
+
+ connect(pul6.y, priPumCon6.uHotIsoVal) annotation (Line(points={{-306,-70},{
+ -220,-70},{-220,-71.3333},{-182,-71.3333}},
+ color={0,0,127}));
+
+ connect(pre8.y, priPumCon7.uHotWatPum) annotation (Line(points={{282,-70},{
+ 300,-70},{300,-32},{164,-32},{164,-86},{186,-86},{186,-85.7333},{208,
+ -85.7333}}, color={255,0,255}));
+
+ connect(pre9.y, priPumCon8.uHotWatPum) annotation (Line(points={{-98,-240},{
+ -88,-240},{-88,-210},{-190,-210},{-190,-245.733},{-182,-245.733}},
+ color={
+ 255,0,255}));
+
+ connect(pre10.y, priPumCon9.uHotWatPum) annotation (Line(points={{276,-240},{
+ 280,-240},{280,-220},{200,-220},{200,-255.733},{208,-255.733}},
+ color={255,0,
+ 255}));
+
+ connect(pre11.y, priPumCon10.uHotWatPum) annotation (Line(points={{-98,-400},
+ {-80,-400},{-80,-370},{-220,-370},{-220,-406},{-196,-406},{-196,
+ -405.733},{-172,-405.733}}, color={
+ 255,0,255}));
+
+ connect(pre12.y, priPumCon11.uHotWatPum) annotation (Line(points={{270,-410},
+ {280,-410},{280,-392},{180,-392},{180,-436},{184,-436},{184,-435.733},
+ {188,-435.733}}, color={255,0,
+ 255}));
+
+ connect(conInt7.y, priPumCon7.uLasDisBoi) annotation (Line(points={{262,-160},
+ {270,-160},{270,-140},{202,-140},{202,-111.867},{208,-111.867}},
+ color={255,127,0}));
+
+ connect(conInt8.y, priPumCon8.uLasDisBoi) annotation (Line(points={{-138,-318},
+ {-130,-318},{-130,-300},{-188,-300},{-188,-271.867},{-182,-271.867}},
+ color={255,127,0}));
+
+ connect(conInt9.y, priPumCon9.uLasDisBoi) annotation (Line(points={{262,-328},
+ {270,-328},{270,-314},{196,-314},{196,-281.867},{208,-281.867}},
+ color={255,127,0}));
+
+ connect(conInt10.y, priPumCon10.uLasDisBoi) annotation (Line(points={{-118,
+ -478},{-110,-478},{-110,-460},{-176,-460},{-176,-431.867},{-172,
+ -431.867}}, color={255,127,0}));
+
+ connect(booPul11.y, truFalHol10.u) annotation (Line(points={{122,-180},{126,-180},
+ {126,-100},{128,-100}}, color={255,0,255}));
+
+ connect(truFalHol10.y, priPumCon7.uBoiSta[1]) annotation (Line(points={{152,
+ -100},{192,-100},{192,-97.8667},{208,-97.8667}},
+ color={255,0,255}));
+
+ connect(booPul13.y, truFalHol11.u) annotation (Line(points={{-268,-340},{-264,
+ -340},{-264,-260},{-262,-260}}, color={255,0,255}));
+
+ connect(truFalHol11.y, priPumCon8.uBoiSta[1]) annotation (Line(points={{-238,
+ -260},{-236,-260},{-236,-257.867},{-182,-257.867}},
+ color={255,0,255}));
+
+ connect(booPul15.y, truFalHol12.u) annotation (Line(points={{122,-350},{126,-350},
+ {126,-270},{128,-270}}, color={255,0,255}));
+
+ connect(truFalHol12.y, priPumCon9.uBoiSta[1]) annotation (Line(points={{152,
+ -270},{160,-270},{160,-267.867},{208,-267.867}},
+ color={255,0,255}));
+
+ connect(booPul17.y, truFalHol13.u) annotation (Line(points={{-258,-500},{-254,
+ -500},{-254,-420},{-252,-420}}, color={255,0,255}));
+
+ connect(truFalHol13.y, priPumCon10.uBoiSta[1]) annotation (Line(points={{-228,
+ -420},{-220,-420},{-220,-417.867},{-172,-417.867}},
+ color={255,0,255}));
+
+ connect(booPul19.y, truFalHol14.u) annotation (Line(points={{102,-530},{106,-530},
+ {106,-450},{108,-450}}, color={255,0,255}));
+
+ connect(truFalHol14.y, priPumCon11.uBoiSta[1]) annotation (Line(points={{132,
+ -450},{140,-450},{140,-447.867},{188,-447.867}},
+ color={255,0,255}));
+
+ connect(pul.y, mulSum.u[1:2]) annotation (Line(points={{-314,418},{-308,418},{
+ -308,449},{-302,449}}, color={0,0,127}));
+
+ connect(mulSum.y, lesThr.u)
+ annotation (Line(points={{-278,450},{-262,450}}, color={0,0,127}));
+
+ connect(lesThr.y, priPumCon.uPlaEna) annotation (Line(points={{-238,450},{
+ -230,450},{-230,421.467},{-172,421.467}},
+ color={255,0,255}));
+
+ connect(mulSum1.y, lesThr1.u)
+ annotation (Line(points={{52,450},{68,450}}, color={0,0,127}));
+
+ connect(pul1.y, mulSum1.u[1:2]) annotation (Line(points={{22,410},{26,410},{26,
+ 449},{28,449}}, color={0,0,127}));
+
+ connect(lesThr1.y, priPumCon1.uPlaEna) annotation (Line(points={{92,450},{100,
+ 450},{100,411.467},{188,411.467}},
+ color={255,0,255}));
+
+ connect(mulSum2.y, lesThr2.u)
+ annotation (Line(points={{-278,310},{-272,310}}, color={0,0,127}));
+
+ connect(pul2.y, mulSum2.u[1:2]) annotation (Line(points={{-308,270},{-304,270},
+ {-304,309},{-302,309}}, color={0,0,127}));
+
+ connect(lesThr2.y, priPumCon2.uPlaEna) annotation (Line(points={{-248,310},{
+ -242,310},{-242,271.467},{-172,271.467}},
+ color={255,0,255}));
+
+ connect(mulSum3.y, lesThr3.u)
+ annotation (Line(points={{72,290},{78,290}}, color={0,0,127}));
+
+ connect(pul3.y, mulSum3.u[1:2]) annotation (Line(points={{32,250},{40,250},{40,
+ 289},{48,289}}, color={0,0,127}));
+
+ connect(lesThr3.y, priPumCon3.uPlaEna) annotation (Line(points={{102,290},{
+ 120,290},{120,251.467},{188,251.467}},
+ color={255,0,255}));
+
+ connect(mulSum4.y, lesThr4.u)
+ annotation (Line(points={{-278,150},{-272,150}}, color={0,0,127}));
+
+ connect(pul4.y, mulSum4.u[1:2]) annotation (Line(points={{-308,110},{-304,110},
+ {-304,149},{-302,149}}, color={0,0,127}));
+
+ connect(lesThr4.y, priPumCon4.uPlaEna) annotation (Line(points={{-248,150},{
+ -240,150},{-240,111.467},{-172,111.467}},
+ color={255,0,255}));
+
+ connect(mulSum5.y, lesThr5.u)
+ annotation (Line(points={{82,130},{88,130}}, color={0,0,127}));
+
+ connect(pul5.y, mulSum5.u[1:2]) annotation (Line(points={{42,90},{50,90},{50,129},
+ {58,129}}, color={0,0,127}));
+
+ connect(lesThr5.y, priPumCon5.uPlaEna) annotation (Line(points={{112,130},{
+ 120,130},{120,91.4667},{188,91.4667}},
+ color={255,0,255}));
+
+ connect(mulSum6.y, lesThr6.u)
+ annotation (Line(points={{-278,-30},{-272,-30}}, color={0,0,127}));
+
+ connect(pul6.y, mulSum6.u[1:2]) annotation (Line(points={{-306,-70},{-304,-70},
+ {-304,-31},{-302,-31}}, color={0,0,127}));
+
+ connect(lesThr6.y, priPumCon6.uPlaEna) annotation (Line(points={{-248,-30},{
+ -244,-30},{-244,-68.5333},{-182,-68.5333}},
+ color={255,0,255}));
+
+ connect(conInt7.y, intSwi.u1) annotation (Line(points={{262,-160},{270,-160},
+ {270,-168},{278,-168}},color={255,127,0}));
+
+ connect(conInt12.y, intSwi.u3) annotation (Line(points={{262,-190},{270,-190},
+ {270,-184},{278,-184}}, color={255,127,0}));
+
+ connect(intSwi.y, priPumCon7.uNexEnaBoi) annotation (Line(points={{302,-176},
+ {310,-176},{310,-144},{194,-144},{194,-108.133},{208,-108.133}},color=
+ {255,127,0}));
+
+ connect(conInt13.y, intSwi1.u3) annotation (Line(points={{-138,-350},{-130,-350},
+ {-130,-338},{-122,-338}}, color={255,127,0}));
+
+ connect(conInt14.y, intSwi2.u3) annotation (Line(points={{262,-360},{264,-360},
+ {264,-348},{278,-348}}, color={255,127,0}));
+
+ connect(conInt15.y, intSwi3.u3) annotation (Line(points={{-118,-510},{-110,-510},
+ {-110,-498},{-102,-498}}, color={255,127,0}));
+
+ connect(conInt16.y, intSwi4.u3) annotation (Line(points={{242,-540},{250,-540},
+ {250,-528},{258,-528}}, color={255,127,0}));
+
+ connect(conInt8.y, intSwi1.u1) annotation (Line(points={{-138,-318},{-130,
+ -318},{-130,-322},{-122,-322}},
+ color={255,127,0}));
+
+ connect(intSwi1.y, priPumCon8.uNexEnaBoi) annotation (Line(points={{-98,-330},
+ {-90,-330},{-90,-302},{-192,-302},{-192,-268.133},{-182,-268.133}},
+ color={255,127,0}));
+
+ connect(intSwi2.u1, conInt9.y) annotation (Line(points={{278,-332},{270,-332},
+ {270,-328},{262,-328}}, color={255,127,0}));
+
+ connect(intSwi2.y, priPumCon9.uNexEnaBoi) annotation (Line(points={{302,-340},
+ {308,-340},{308,-310},{192,-310},{192,-278.133},{208,-278.133}},
+ color={255,127,0}));
+
+ connect(conInt10.y, intSwi3.u1) annotation (Line(points={{-118,-478},{-110,
+ -478},{-110,-482},{-102,-482}},
+ color={255,127,0}));
+
+ connect(intSwi3.y, priPumCon10.uNexEnaBoi) annotation (Line(points={{-78,-490},
+ {-70,-490},{-70,-464},{-184,-464},{-184,-428.133},{-172,-428.133}},
+ color={255,127,0}));
+
+ connect(conInt11.y, intSwi4.u1) annotation (Line(points={{242,-508},{250,-508},
+ {250,-512},{258,-512}}, color={255,127,0}));
+
+ connect(intSwi4.y, priPumCon11.uNexEnaBoi) annotation (Line(points={{282,-520},
+ {292,-520},{292,-492},{176,-492},{176,-458.133},{188,-458.133}},
+ color={255,127,0}));
+
+ connect(conInt11.y, priPumCon11.uLasDisBoi) annotation (Line(points={{242,
+ -508},{250,-508},{250,-494},{182,-494},{182,-461.867},{188,-461.867}},
+ color={255,127,0}));
+
+ connect(booPul11.y, truDel.u) annotation (Line(points={{122,-180},{126,-180},{
+ 126,-140},{128,-140}}, color={255,0,255}));
+
+ connect(truDel.y, priPumCon7.uBoiSta[2]) annotation (Line(points={{152,-140},{
+ 156,-140},{156,-96},{208,-96}}, color={255,0,255}));
+
+ connect(truFalHol10.y, priPumCon7.uPlaEna) annotation (Line(points={{152,-100},
+ {180,-100},{180,-88.5333},{208,-88.5333}}, color={255,0,255}));
+
+ connect(truDel.y, intSwi.u2) annotation (Line(points={{152,-140},{156,-140},{
+ 156,-164},{234,-164},{234,-176},{278,-176}}, color={255,0,255}));
+
+ connect(booPul11.y, cha1.u) annotation (Line(points={{122,-180},{126,-180},{
+ 126,-86},{108,-86},{108,-70},{118,-70}}, color={255,0,255}));
+
+ connect(truDel.y, cha17.u) annotation (Line(points={{152,-140},{156,-140},{
+ 156,-82},{112,-82},{112,-40},{118,-40}}, color={255,0,255}));
+
+ connect(cha1.y, or2.u1)
+ annotation (Line(points={{142,-70},{168,-70}}, color={255,0,255}));
+
+ connect(cha17.y, or2.u2) annotation (Line(points={{142,-40},{160,-40},{160,
+ -78},{168,-78}}, color={255,0,255}));
+
+ connect(or2.y, priPumCon7.uPumChaPro) annotation (Line(points={{192,-70},{198,
+ -70},{198,-105.333},{208,-105.333}}, color={255,0,255}));
+
+ connect(truFalHol11.y, priPumCon8.uPlaEna) annotation (Line(points={{-238,
+ -260},{-236,-260},{-236,-248.533},{-182,-248.533}}, color={255,0,255}));
+
+ connect(booPul13.y, truDel1.u) annotation (Line(points={{-268,-340},{-264,
+ -340},{-264,-304},{-260,-304}}, color={255,0,255}));
+
+ connect(cha2.y, or1.u1) annotation (Line(points={{-238,-200},{-236,-200},{
+ -236,-210},{-232,-210}}, color={255,0,255}));
+
+ connect(cha18.y, or1.u2) annotation (Line(points={{-238,-230},{-236,-230},{
+ -236,-218},{-232,-218}}, color={255,0,255}));
+
+ connect(truDel1.y, cha2.u) annotation (Line(points={{-236,-304},{-234,-304},{
+ -234,-280},{-270,-280},{-270,-200},{-262,-200}}, color={255,0,255}));
+
+ connect(or1.y, priPumCon8.uPumChaPro) annotation (Line(points={{-208,-210},{
+ -200,-210},{-200,-265.333},{-182,-265.333}}, color={255,0,255}));
+
+ connect(truDel1.y, intSwi1.u2) annotation (Line(points={{-236,-304},{-234,
+ -304},{-234,-324},{-166,-324},{-166,-330},{-122,-330}}, color={255,0,
+ 255}));
+ connect(truDel1.y, priPumCon8.uBoiSta[2]) annotation (Line(points={{-236,-304},
+ {-234,-304},{-234,-270},{-194,-270},{-194,-256},{-182,-256}}, color={
+ 255,0,255}));
+ connect(booPul15.y, truDel2.u) annotation (Line(points={{122,-350},{126,-350},
+ {126,-310},{128,-310}}, color={255,0,255}));
+
+ connect(truFalHol12.y, priPumCon9.uPlaEna) annotation (Line(points={{152,-270},
+ {160,-270},{160,-258.533},{208,-258.533}}, color={255,0,255}));
+
+ connect(or3.y, priPumCon9.uPumChaPro) annotation (Line(points={{192,-240},{
+ 196,-240},{196,-275.333},{208,-275.333}}, color={255,0,255}));
+
+ connect(cha19.y, or3.u1) annotation (Line(points={{152,-210},{160,-210},{160,
+ -240},{168,-240}}, color={255,0,255}));
+
+ connect(truDel2.y, priPumCon9.uBoiSta[2]) annotation (Line(points={{152,-310},
+ {158,-310},{158,-266},{208,-266}}, color={255,0,255}));
+
+ connect(truDel2.y, cha3.u) annotation (Line(points={{152,-310},{158,-310},{
+ 158,-286},{120,-286},{120,-244},{128,-244}}, color={255,0,255}));
+
+ connect(cha3.y, or3.u2) annotation (Line(points={{152,-244},{160,-244},{160,
+ -248},{168,-248}}, color={255,0,255}));
+
+ connect(booPul17.y, truDel3.u) annotation (Line(points={{-258,-500},{-254,
+ -500},{-254,-460},{-252,-460}}, color={255,0,255}));
+
+ connect(cha20.y, or4.u1) annotation (Line(points={{-228,-370},{-224,-370},{
+ -224,-390},{-212,-390}}, color={255,0,255}));
+
+ connect(cha4.y, or4.u2) annotation (Line(points={{-228,-394},{-220,-394},{
+ -220,-398},{-212,-398}}, color={255,0,255}));
+
+ connect(truDel3.y, priPumCon10.uBoiSta[2]) annotation (Line(points={{-228,-460},
+ {-222,-460},{-222,-416},{-172,-416}}, color={255,0,255}));
+
+ connect(truDel3.y, cha4.u) annotation (Line(points={{-228,-460},{-222,-460},{
+ -222,-406},{-260,-406},{-260,-394},{-252,-394}}, color={255,0,255}));
+
+ connect(or4.y, priPumCon10.uPumChaPro) annotation (Line(points={{-188,-390},{
+ -180,-390},{-180,-425.333},{-172,-425.333}}, color={255,0,255}));
+
+ connect(truFalHol13.y, priPumCon10.uPlaEna) annotation (Line(points={{-228,
+ -420},{-220,-420},{-220,-408.533},{-172,-408.533}}, color={255,0,255}));
+
+ connect(truDel2.y, intSwi2.u2) annotation (Line(points={{152,-310},{158,-310},
+ {158,-334},{238,-334},{238,-340},{278,-340}}, color={255,0,255}));
+
+ connect(truDel3.y, intSwi3.u2) annotation (Line(points={{-228,-460},{-222,
+ -460},{-222,-484},{-144,-484},{-144,-490},{-102,-490}}, color={255,0,
+ 255}));
+ connect(truFalHol14.y, priPumCon11.uPlaEna) annotation (Line(points={{132,
+ -450},{140,-450},{140,-438.533},{188,-438.533}}, color={255,0,255}));
+
+ connect(booPul19.y, truDel4.u)
+ annotation (Line(points={{102,-530},{118,-530}}, color={255,0,255}));
+
+ connect(or5.y, priPumCon11.uPumChaPro) annotation (Line(points={{172,-420},{
+ 176,-420},{176,-455.333},{188,-455.333}}, color={255,0,255}));
+
+ connect(truDel4.y, priPumCon11.uBoiSta[2]) annotation (Line(points={{142,-530},
+ {146,-530},{146,-446},{188,-446}}, color={255,0,255}));
+
+ connect(truDel4.y, intSwi4.u2) annotation (Line(points={{142,-530},{146,-530},
+ {146,-500},{200,-500},{200,-520},{258,-520}}, color={255,0,255}));
+
+ connect(cha21.y, or5.u1) annotation (Line(points={{132,-390},{140,-390},{140,
+ -420},{148,-420}}, color={255,0,255}));
+
+ connect(cha5.y, or5.u2) annotation (Line(points={{132,-420},{138,-420},{138,
+ -428},{148,-428}}, color={255,0,255}));
+
+ connect(truDel4.y, cha5.u) annotation (Line(points={{142,-530},{146,-530},{
+ 146,-432},{100,-432},{100,-420},{108,-420}}, color={255,0,255}));
+
+ connect(cha.y, mulOr.u[1:2]) annotation (Line(points={{-88,220},{-84,220},{
+ -84,216.5},{-80,216.5}},
+ color={255,0,255}));
+ connect(mulOr.y, truFalHol.u)
+ annotation (Line(points={{-56,220},{-52,220}}, color={255,0,255}));
+ connect(cha6.y, mulOr1.u[1:2]) annotation (Line(points={{242,200},{244,200},{244,
+ 196.5},{248,196.5}}, color={255,0,255}));
+ connect(mulOr1.y, truFalHol1.u)
+ annotation (Line(points={{272,200},{278,200}}, color={255,0,255}));
+ connect(cha8.y, mulOr3.u[1:2]) annotation (Line(points={{262,70},{264,70},{
+ 264,66.5},{268,66.5}}, color={255,0,255}));
+ connect(cha9.y, mulOr4.u[1:2]) annotation (Line(points={{-98,-90},{-96,-90},{
+ -96,-93.5},{-92,-93.5}}, color={255,0,255}));
+ connect(cha10.y, mulOr5.u[1:2]) annotation (Line(points={{282,-100},{284,-100},
+ {284,-103.5},{288,-103.5}}, color={255,0,255}));
+ connect(cha11.y, mulOr6.u[1:2]) annotation (Line(points={{-98,-270},{-94,-270},
+ {-94,-273.5},{-92,-273.5}}, color={255,0,255}));
+ connect(cha22.y, mulOr7.u[1:2]) annotation (Line(points={{284,-280},{278,-280},
+ {278,-283.5},{290,-283.5}}, color={255,0,255}));
+ connect(cha23.y, mulOr8.u[1:2]) annotation (Line(points={{-98,-430},{-96,-430},
+ {-96,-433.5},{-92,-433.5}}, color={255,0,255}));
+ connect(cha24.y, mulOr9.u[1:2]) annotation (Line(points={{270,-440},{272,-440},
+ {272,-443.5},{276,-443.5}}, color={255,0,255}));
+ connect(mulOr2.y, truFalHol2.u)
+ annotation (Line(points={{-46,70},{-44,70},{-44,90},{-40,90}},
+ color={255,0,255}));
+ connect(mulOr3.y, truFalHol3.u)
+ annotation (Line(points={{292,70},{298,70}}, color={255,0,255}));
+ connect(mulOr4.y, truFalHol4.u)
+ annotation (Line(points={{-68,-90},{-62,-90}}, color={255,0,255}));
+ connect(mulOr5.y, truFalHol5.u)
+ annotation (Line(points={{312,-100},{318,-100}}, color={255,0,255}));
+ connect(mulOr6.y, truFalHol6.u)
+ annotation (Line(points={{-68,-270},{-62,-270}}, color={255,0,255}));
+ connect(mulOr7.y, truFalHol7.u)
+ annotation (Line(points={{314,-280},{320,-280}}, color={255,0,255}));
+ connect(mulOr8.y, truFalHol8.u)
+ annotation (Line(points={{-68,-430},{-62,-430}}, color={255,0,255}));
+ connect(mulOr9.y, truFalHol9.u)
+ annotation (Line(points={{300,-440},{306,-440}}, color={255,0,255}));
+ connect(priPumCon2.yHotWatPum, truDel5.u) annotation (Line(points={{-148,
+ 253.733},{-146,253.733},{-146,250},{-142,250}},
+ color={255,0,255}));
+ connect(truDel5.y, pre3.u)
+ annotation (Line(points={{-118,250},{-112,250}}, color={255,0,255}));
+ connect(truDel5.y, cha.u) annotation (Line(points={{-118,250},{-116,250},{
+ -116,220},{-112,220}}, color={255,0,255}));
+ connect(cha7.y, mulOr2.u[1:2]) annotation (Line(points={{-76,70},{-74,70},{
+ -74,66.5},{-70,66.5}}, color={255,0,255}));
+ connect(cha13.u, pre13.y)
+ annotation (Line(points={{138,160},{134,160}}, color={255,0,255}));
+ connect(booPul3.y, pre13.u)
+ annotation (Line(points={{102,160},{110,160}}, color={255,0,255}));
+ connect(truDel6.u, priPumCon3.yHotWatPum) annotation (Line(points={{222,230},
+ {218,230},{218,233.733},{212,233.733}}, color={255,0,255}));
+ connect(truDel6.y, pre4.u)
+ annotation (Line(points={{246,230},{258,230}}, color={255,0,255}));
+ connect(truDel6.y, cha6.u) annotation (Line(points={{246,230},{252,230},{252,
+ 214},{214,214},{214,200},{218,200}}, color={255,0,255}));
+ connect(priPumCon4.yHotWatPum, truDel7.u) annotation (Line(points={{-148,
+ 93.7333},{-147,93.7333},{-147,90},{-142,90}}, color={255,0,255}));
+ connect(truDel7.y, pre5.u) annotation (Line(points={{-118,90},{-108,90},{-108,
+ 110},{-100,110}}, color={255,0,255}));
+ connect(truDel7.y, cha7.u) annotation (Line(points={{-118,90},{-108,90},{-108,
+ 70},{-100,70}}, color={255,0,255}));
+ connect(priPumCon5.yHotWatPum, truDel8.u) annotation (Line(points={{212,
+ 73.7333},{214,73.7333},{214,74}}, color={255,0,255}));
+ connect(truDel8.y, pre6.u)
+ annotation (Line(points={{238,74},{238,100}}, color={255,0,255}));
+ connect(truDel8.y, cha8.u)
+ annotation (Line(points={{238,74},{238,70}}, color={255,0,255}));
+ connect(priPumCon6.yHotWatPum, truDel9.u) annotation (Line(points={{-158,
+ -86.2667},{-156,-86.2667},{-156,-90},{-154,-90}}, color={255,0,255}));
+ connect(truDel9.y, cha9.u) annotation (Line(points={{-130,-90},{-122,-90},{
+ -122,-90}}, color={255,0,255}));
+ connect(truDel9.y, pre7.u) annotation (Line(points={{-130,-90},{-128,-90},{
+ -128,-60},{-122,-60}}, color={255,0,255}));
+ connect(booPul11.y, priPumCon7.uStaUp) annotation (Line(points={{122,-180},{
+ 204,-180},{204,-99.7333},{208,-99.7333}}, color={255,0,255}));
+ connect(booPul11.y, priPumCon7.uOnOff) annotation (Line(points={{122,-180},{
+ 204,-180},{204,-102.533},{208,-102.533}}, color={255,0,255}));
+ connect(priPumCon7.yHotWatPum, truDel10.u) annotation (Line(points={{232,
+ -106.267},{234,-106.267},{234,-106}}, color={255,0,255}));
+ connect(truDel10.y, pre8.u)
+ annotation (Line(points={{258,-106},{258,-70}}, color={255,0,255}));
+ connect(truDel10.y, cha10.u)
+ annotation (Line(points={{258,-106},{258,-100}}, color={255,0,255}));
+ connect(priPumCon8.yHotWatPum, truDel11.u) annotation (Line(points={{-158,
+ -266.267},{-156,-266.267},{-156,-268},{-154,-268}}, color={255,0,255}));
+ connect(truDel11.y, cha11.u) annotation (Line(points={{-130,-268},{-128,-268},
+ {-128,-272},{-122,-272},{-122,-270}}, color={255,0,255}));
+ connect(truDel11.y, pre9.u) annotation (Line(points={{-130,-268},{-126,-268},
+ {-126,-240},{-122,-240}}, color={255,0,255}));
+ connect(priPumCon9.yHotWatPum, truDel12.u) annotation (Line(points={{232,
+ -276.267},{234,-276.267},{234,-276}}, color={255,0,255}));
+ connect(truDel12.y, cha22.u) annotation (Line(points={{258,-276},{260,-276},{
+ 260,-280},{260,-280}}, color={255,0,255}));
+ connect(truDel12.y, pre10.u) annotation (Line(points={{258,-276},{256,-276},{
+ 256,-240},{252,-240}}, color={255,0,255}));
+ connect(priPumCon10.yHotWatPum, truDel13.u) annotation (Line(points={{-148,
+ -426.267},{-148,-425.133},{-146,-425.133},{-146,-424}}, color={255,0,
+ 255}));
+ connect(truDel13.y, cha23.u) annotation (Line(points={{-122,-424},{-122,-430},
+ {-122,-430}}, color={255,0,255}));
+ connect(truDel13.y, pre11.u) annotation (Line(points={{-122,-424},{-122,-400},
+ {-122,-400}}, color={255,0,255}));
+ connect(priPumCon11.yHotWatPum, truDel14.u) annotation (Line(points={{212,
+ -456.267},{214,-456.267},{214,-456},{216,-456}}, color={255,0,255}));
+ connect(truDel14.y, pre12.u) annotation (Line(points={{240,-456},{244,-456},{
+ 244,-410},{246,-410}}, color={255,0,255}));
+ connect(truDel14.y, cha24.u) annotation (Line(points={{240,-456},{244,-456},{
+ 244,-440},{246,-440}}, color={255,0,255}));
+annotation (
+ experiment(
+ StopTime=3600,
+ Interval=0.5,
+ Tolerance=1e-06),
+ __Dymola_Commands(file="modelica://Buildings/Resources/Scripts/Dymola/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Pumps/PrimaryPumps/Validation/Controller.mos"
+ "Simulate and plot"),
+ Documentation(info="
+
+This example validates
+
+Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Pumps.PrimaryPumps.Controller.
+
+", revisions="
+
+-
+August 21, 2020, by Karthik Devaprasad:
+First implementation.
+
+
+"),
+ Icon(coordinateSystem(preserveAspectRatio=false, extent={{-100,-100},{100,100}}),
+ graphics={
+ Ellipse(lineColor = {75,138,73},
+ fillColor={255,255,255},
+ fillPattern = FillPattern.Solid,
+ extent = {{-100,-100},{100,100}}),
+ Polygon(lineColor = {0,0,255},
+ fillColor = {75,138,73},
+ pattern = LinePattern.None,
+ fillPattern = FillPattern.Solid,
+ points = {{-36,60},{64,0},{-36,-60},{-36,60}})}), Diagram(
+ coordinateSystem(preserveAspectRatio=false, extent={{-340,-560},{340,480}})));
+end Controller;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Pumps/PrimaryPumps/Validation/package.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Pumps/PrimaryPumps/Validation/package.mo
new file mode 100644
index 00000000000..3f910e4f5da
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Pumps/PrimaryPumps/Validation/package.mo
@@ -0,0 +1,38 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Pumps.PrimaryPumps;
+package Validation "Collection of validation models"
+
+
+annotation (preferredView="info", Documentation(info="
+
+This package contains validation models for the classes in
+
+Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Pumps.ChilledWater.
+
+
+Note that most validation models contain simple input data
+which may not be realistic, but for which the correct
+output can be obtained through an analytic solution.
+The examples plot various outputs, which have been verified against these
+solutions. These model outputs are stored as reference data and
+used for continuous validation whenever models in the library change.
+
+"),
+ Icon(graphics={
+ Rectangle(
+ lineColor={200,200,200},
+ fillColor={248,248,248},
+ fillPattern=FillPattern.HorizontalCylinder,
+ extent={{-100.0,-100.0},{100.0,100.0}},
+ radius=25.0),
+ Rectangle(
+ lineColor={128,128,128},
+ extent={{-100.0,-100.0},{100.0,100.0}},
+ radius=25.0),
+ Polygon(
+ origin={8.0,14.0},
+ lineColor={78,138,73},
+ fillColor={78,138,73},
+ pattern=LinePattern.None,
+ fillPattern=FillPattern.Solid,
+ points={{-58.0,46.0},{42.0,-14.0},{-58.0,-74.0},{-58.0,46.0}})}));
+end Validation;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Pumps/PrimaryPumps/Validation/package.order b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Pumps/PrimaryPumps/Validation/package.order
new file mode 100644
index 00000000000..8cba75e31a7
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Pumps/PrimaryPumps/Validation/package.order
@@ -0,0 +1 @@
+Controller
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Pumps/PrimaryPumps/package.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Pumps/PrimaryPumps/package.mo
new file mode 100644
index 00000000000..e2611e3aa1d
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Pumps/PrimaryPumps/package.mo
@@ -0,0 +1,33 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Pumps;
+package PrimaryPumps "Sequences for primary hot water pump control"
+
+
+annotation (
+preferredView="info", Documentation(info="
+
+This package contains control sequences for primary hot water pumps.
+The implementations are based on section 5.3.6,
+in ASHRAE RP-1711, March 2020 draft.
+
+"),
+ Icon(graphics={
+ Rectangle(
+ lineColor={200,200,200},
+ fillColor={248,248,248},
+ fillPattern=FillPattern.HorizontalCylinder,
+ extent={{-100.0,-100.0},{100.0,100.0}},
+ radius=25.0),
+ Rectangle(
+ lineColor={128,128,128},
+ extent={{-100.0,-100.0},{100.0,100.0}},
+ radius=25.0),
+ Ellipse(
+ extent={{-66,66},{68,-68}},
+ lineColor={0,0,0},
+ fillColor={255,255,255},
+ fillPattern=FillPattern.Solid), Polygon(
+ points={{0,66},{0,-68},{68,0},{0,66}},
+ lineColor={0,0,0},
+ fillColor={255,0,0},
+ fillPattern=FillPattern.Solid)}));
+end PrimaryPumps;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Pumps/PrimaryPumps/package.order b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Pumps/PrimaryPumps/package.order
new file mode 100644
index 00000000000..9ffbffcb990
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Pumps/PrimaryPumps/package.order
@@ -0,0 +1,3 @@
+Controller
+Subsequences
+Validation
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Pumps/SecondaryPumps/Controller.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Pumps/SecondaryPumps/Controller.mo
new file mode 100644
index 00000000000..5261b8728dc
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Pumps/SecondaryPumps/Controller.mo
@@ -0,0 +1,924 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Pumps.SecondaryPumps;
+block Controller
+ "Sequences to control hot water pumps in boiler plants"
+
+ parameter Buildings.Controls.OBC.CDL.Types.SimpleController controllerType= Buildings.Controls.OBC.CDL.Types.SimpleController.PI
+ "Type of controller"
+ annotation(Dialog(tab="Pump control parameters", group="PID parameters"));
+
+ parameter Boolean have_varSecPum = false
+ "True: Variable-speed secondary pumps;
+ False: Fixed-speed secondary pumps"
+ annotation (Dialog(group="Plant parameters"));
+
+ parameter Boolean have_secFloSen = true
+ "True: Flow sensor in secondary loop;
+ False: No flow sensor in secondary loop"
+ annotation (Dialog(group="Plant parameters",
+ enable=have_varSecPum));
+
+ parameter Integer nPum = 2
+ "Total number of secondary hot water pumps"
+ annotation (Dialog(group="Plant parameters"));
+
+ parameter Integer nPumPri = 2
+ "Total number of primary hot water pumps"
+ annotation (Dialog(group="Plant parameters",
+ enable=not have_varSecPum));
+
+ parameter Integer nBoi = 2
+ "Total number of boilers"
+ annotation (Dialog(group="Plant parameters"));
+
+ parameter Integer nSen=2
+ "Total number of remote differential pressure sensors"
+ annotation (Dialog(group="Plant parameters"));
+
+ parameter Integer nPum_nominal(
+ final max=nPum,
+ final min=1) = nPum
+ "Total number of pumps that operate at design conditions"
+ annotation (Dialog(group="Plant parameters"));
+
+ parameter Real minPumSpe(
+ final unit="1",
+ displayUnit="1",
+ final min=0,
+ final max=maxPumSpe) = 0.1
+ "Minimum pump speed"
+ annotation (Dialog(group="Pump parameters", enable=have_varSecPum));
+
+ parameter Real maxPumSpe(
+ final unit="1",
+ displayUnit="1",
+ final min=minPumSpe,
+ final max=1) = 1
+ "Maximum pump speed"
+ annotation (Dialog(group="Pump parameters", enable=have_varSecPum));
+
+ parameter Real VHotWat_flow_nominal(
+ final min=1e-6,
+ final unit="m3/s",
+ displayUnit="m3/s",
+ final quantity="VolumeFlowRate") = 0.5
+ "Total plant design hot water flow rate"
+ annotation (Dialog(group="Plant parameters"));
+
+ parameter Real maxLocDp(
+ final unit="Pa",
+ displayUnit="Pa",
+ final quantity="PressureDifference",
+ final min=1e-6) = 5*6894.75
+ "Maximum hot water loop local differential pressure setpoint"
+ annotation (Dialog(tab="Pump control parameters", group="DP-based speed regulation",
+ enable = speConTyp == Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Types.PrimaryPumpSpeedControlTypes.localDP));
+
+ parameter Real minLocDp(
+ final unit="Pa",
+ displayUnit="Pa",
+ final quantity="PressureDifference",
+ final min=1e-6) = 5*6894.75
+ "Minimum hot water loop local differential pressure setpoint"
+ annotation (Dialog(tab="Pump control parameters",
+ group="DP-based speed regulation",
+ enable = speConTyp == Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Types.PrimaryPumpSpeedControlTypes.localDP));
+
+ parameter Real offTimThr(
+ final unit="s",
+ displayUnit="s",
+ final quantity="time",
+ final min=0) = 180
+ "Threshold to check lead boiler off time"
+ annotation (Dialog(tab="Pump control parameters",
+ group="Pump staging parameters",
+ enable=have_varSecPum and have_secFloSen));
+
+ parameter Real delBoiDis(
+ final unit="s",
+ displayUnit="s",
+ final quantity="time",
+ final min=0)=180
+ "Time delay after boilers have been disabled before completing disabling process"
+ annotation (Dialog(tab="Pump control parameters", group="Pump staging parameters"));
+
+ parameter Real timPer(
+ final unit="s",
+ displayUnit="s",
+ final quantity="time",
+ final min=0) = 600
+ "Delay time period for enabling and disabling lag pumps"
+ annotation (Dialog(tab="Pump control parameters",
+ group="Pump staging parameters",
+ enable=have_varSecPum and have_secFloSen));
+
+ parameter Real staCon(
+ final unit="1",
+ displayUnit="1") = -0.03
+ "Constant used in the staging equation"
+ annotation (Dialog(tab="Pump control parameters",
+ group="Pump staging parameters",
+ enable=have_varSecPum and have_secFloSen));
+
+ parameter Real relFloHys(
+ final unit="1",
+ displayUnit="1") = 0.01
+ "Constant value used in hysteresis for checking relative flow rate"
+ annotation (Dialog(tab="Pump control parameters",
+ group="Pump staging parameters",
+ enable=have_varSecPum and have_secFloSen));
+
+ parameter Real speLim(
+ final unit="1",
+ displayUnit="1") = 0.9
+ "Speed limit with longer enable delay for enabling next lag pump"
+ annotation (Dialog(tab="Pump control parameters",
+ group="Pump staging parameters",
+ enable=have_varSecPum and not have_secFloSen));
+
+ parameter Real speLim1(
+ final unit="1",
+ displayUnit="1") = 0.99
+ "Speed limit with shorter enable delay for enabling next lag pump"
+ annotation (Dialog(tab="Pump control parameters",
+ group="Pump staging parameters",
+ enable=have_varSecPum and not have_secFloSen));
+
+ parameter Real speLim2(
+ final unit="1",
+ displayUnit="1") = 0.4
+ "Speed limit for disabling last lag pump"
+ annotation (Dialog(tab="Pump control parameters",
+ group="Pump staging parameters",
+ enable=have_varSecPum and not have_secFloSen));
+
+ parameter Real timPer1(
+ final unit="s",
+ displayUnit="s",
+ final quantity="time") = 300
+ "Delay time period for enabling next lag pump at speed limit speLim"
+ annotation (Dialog(tab="Pump control parameters",
+ group="Pump staging parameters",
+ enable=have_varSecPum and not have_secFloSen));
+
+ parameter Real timPer2(
+ final unit="s",
+ displayUnit="s",
+ final quantity="time") = 60
+ "Delay time period for enabling next lag pump at speed limit speLim1"
+ annotation (Dialog(tab="Pump control parameters",
+ group="Pump staging parameters",
+ enable=have_varSecPum and not have_secFloSen));
+
+ parameter Real timPer3(
+ final unit="s",
+ displayUnit="s",
+ final quantity="time") = 600
+ "Delay time period for disabling last lag pump"
+ annotation (Dialog(tab="Pump control parameters",
+ group="Pump staging parameters",
+ enable=have_varSecPum and not have_secFloSen));
+
+ parameter Real k(
+ final unit="1",
+ displayUnit="1",
+ final min=0) = 1
+ "Gain of controller"
+ annotation (Dialog(tab="Pump control parameters",
+ group="PID parameters",
+ enable=have_varSecPum));
+
+ parameter Real Ti(
+ final unit="s",
+ displayUnit="s",
+ final quantity="time",
+ final min=0) = 0.5
+ "Time constant of integrator block"
+ annotation (Dialog(tab="Pump control parameters",
+ group="PID parameters",
+ enable=have_varSecPum));
+
+ parameter Real Td(
+ final unit="s",
+ displayUnit="s",
+ final quantity="time",
+ final min=0) = 0.1
+ "Time constant of derivative block"
+ annotation (Dialog(tab="Pump control parameters",
+ group="PID parameters",
+ enable=have_varSecPum));
+
+ parameter Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Types.SecondaryPumpSpeedControlTypes
+ speConTyp = Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Types.SecondaryPumpSpeedControlTypes.remoteDP
+ "Speed regulation method"
+ annotation (Dialog(group="Plant parameters", enable=have_varSecPum));
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uHotWatPum[nPum]
+ "Secondary pumps operating status"
+ annotation (Placement(transformation(extent={{-320,120},{-280,160}}),
+ iconTransformation(extent={{-140,120},{-100,160}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uPlaEna
+ "Plant enable signal"
+ annotation (Placement(transformation(extent={{-320,70},{-280,110}}),
+ iconTransformation(extent={{-140,80},{-100,120}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uPriPumSta[nPumPri] if not have_varSecPum
+ "Primary pumps operating status"
+ annotation (Placement(transformation(extent={{-320,-176},{-280,-136}}),
+ iconTransformation(extent={{-140,-40},{-100,0}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.IntegerInput uPumLeaLag[nPum]
+ "Hot water pump lead-lag order"
+ annotation (Placement(transformation(extent={{-320,210},{-280,250}}),
+ iconTransformation(extent={{-140,162},{-100,202}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.IntegerInput supResReq
+ "Hot water supply reset requests"
+ annotation (Placement(transformation(extent={{-320,20},{-280,60}}),
+ iconTransformation(extent={{-140,40},{-100,80}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput uMaxSecPumSpeCon(
+ final unit="1",
+ displayUnit="1") if have_varSecPum
+ "Maximum allowed pump speed for non-condensing boilers"
+ annotation (Placement(transformation(extent={{-320,-410},{-280,-370}}),
+ iconTransformation(extent={{-140,-200},{-100,-160}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput dpHotWat_local(
+ final unit="Pa",
+ displayUnit="Pa",
+ final quantity="PressureDifference") if have_varSecPum and locDPReg
+ "Hot water differential static pressure from local sensor"
+ annotation (Placement(transformation(extent={{-320,-310},{-280,-270}}),
+ iconTransformation(extent={{-140,-80},{-100,-40}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput dpHotWat_remote[nSen](
+ final unit=fill("Pa", nSen),
+ final quantity=fill("PressureDifference", nSen),
+ displayUnit=fill("Pa", nSen)) if have_varSecPum and (locDPReg or remDPReg)
+ "Hot water differential static pressure from remote sensor"
+ annotation (Placement(transformation(extent={{-320,-350},{-280,-310}}),
+ iconTransformation(extent={{-140,-120},{-100,-80}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput dpHotWatSet(
+ final unit="Pa",
+ final quantity="PressureDifference",
+ displayUnit="Pa") if have_varSecPum and (locDPReg or remDPReg)
+ "Hot water differential static pressure setpoint"
+ annotation (Placement(transformation(extent={{-320,-380},{-280,-340}}),
+ iconTransformation(extent={{-140,-160},{-100,-120}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput VHotWat_flow(
+ final unit="m3/s",
+ displayUnit="m3/s",
+ final quantity="VolumeFlowRate") if have_varSecPum and have_secFloSen
+ "Hot water flow"
+ annotation (Placement(transformation(extent={{-320,-40},{-280,0}}),
+ iconTransformation(extent={{-140,0},{-100,40}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanOutput yHotWatPum[nPum]
+ "Hot water pump status"
+ annotation (Placement(transformation(extent={{280,-20},{320,20}}),
+ iconTransformation(extent={{100,-20},{140,20}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealOutput yPumSpe(
+ final min=0,
+ final max=1,
+ final unit="1",
+ displayUnit="1") if have_varSecPum "Hot water pump speed"
+ annotation (Placement(transformation(extent={{280,-420},{320,-380}}),
+ iconTransformation(extent={{100,-120},{140,-80}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Pumps.Generic.EnableLag_flowrate
+ enaLagHotPum(
+ final nPum=nPum,
+ final nPum_nominal=nPum_nominal,
+ final timPer=timPer,
+ final staCon=staCon,
+ final relFloHys=relFloHys,
+ final VHotWat_flow_nominal=VHotWat_flow_nominal) if have_varSecPum and
+ have_secFloSen
+ "Enable lag pump for primary-only plants using differential pressure pump speed control"
+ annotation (Placement(transformation(extent={{-200,-10},{-180,10}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Pumps.Generic.Speed_localDp
+ pumSpeLocDp(
+ controllerType=controllerType,
+ final nSen=nSen,
+ final nPum=nPum,
+ final minLocDp=minLocDp,
+ final maxLocDp=maxLocDp,
+ final minPumSpe=minPumSpe,
+ final maxPumSpe=maxPumSpe,
+ final k=k,
+ final Ti=Ti,
+ final Td=Td) if have_varSecPum and locDPReg
+ "Hot water pump speed control with local DP sensor"
+ annotation (Placement(transformation(extent={{-60,-340},{-40,-320}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Pumps.SecondaryPumps.Subsequences.EnableLag_pumpSpeed
+ enaLagSecPum(
+ final speLim=speLim,
+ final speLim1=speLim1,
+ final speLim2=speLim2,
+ final timPer=timPer1,
+ final timPer1=timPer2,
+ final timPer2=timPer3) if have_varSecPum and not have_secFloSen
+ "Enable and disable secondary lag pumps in secondary loop with no flow sensor"
+ annotation (Placement(transformation(extent={{-120,28},{-100,48}})));
+
+protected
+ parameter Boolean remDPReg = (speConTyp == Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Types.SecondaryPumpSpeedControlTypes.remoteDP)
+ "Boolean flag for pump speed control with remote differential pressure";
+
+ parameter Boolean locDPReg = (speConTyp == Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Types.SecondaryPumpSpeedControlTypes.localDP)
+ "Boolean flag for pump speed control with local differential pressure";
+
+ parameter Integer pumInd[nPum]={i for i in 1:nPum}
+ "Pump index, {1,2,...,n}";
+
+ Buildings.Controls.OBC.CDL.Discrete.UnitDelay uniDel(
+ final samplePeriod=1) if have_varSecPum and not have_secFloSen
+ "Unit delay for pump speed"
+ annotation (Placement(transformation(extent={{-200,28},{-180,48}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Min min if have_varSecPum
+ "Ensure pump speed is below maximum speed for condensation control"
+ annotation (Placement(transformation(extent={{160,-410},{180,-390}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Pumps.SecondaryPumps.Subsequences.EnableLead
+ enaHeaLeaPum "Enable lead pump of headered pumps"
+ annotation (Placement(transformation(extent={{-200,76},{-180,96}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Pumps.Generic.Speed_remoteDp
+ pumSpeRemDp(
+ controllerType=controllerType,
+ final nSen=nSen,
+ final nPum=nPum,
+ final minPumSpe=minPumSpe,
+ final maxPumSpe=maxPumSpe,
+ final k=k,
+ final Ti=Ti,
+ final Td=Td) if have_varSecPum and remDPReg
+ "Hot water pump speed control with remote DP sensor"
+ annotation (Placement(transformation(extent={{-60,-380},{-40,-360}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant conInt(
+ final k=1)
+ "Constant one"
+ annotation (Placement(transformation(extent={{-274,190},{-254,210}})));
+
+ Buildings.Controls.OBC.CDL.Conversions.IntegerToReal intToRea[nPum]
+ "Convert integer to real number"
+ annotation (Placement(transformation(extent={{-220,220},{-200,240}})));
+
+ Buildings.Controls.OBC.CDL.Routing.RealExtractor leaPum(
+ final nin=nPum)
+ "Lead pump index"
+ annotation (Placement(transformation(extent={{-80,220},{-60,240}})));
+
+ Buildings.Controls.OBC.CDL.Conversions.RealToInteger reaToInt
+ "Convert real input to integer output"
+ annotation (Placement(transformation(extent={{-40,220},{-20,240}})));
+
+ Buildings.Controls.OBC.CDL.Routing.RealExtractor nexLagPum(
+ final allowOutOfRange=true,
+ final nin=nPum,
+ final outOfRangeValue=0)
+ "Next lag pump"
+ annotation (Placement(transformation(extent={{-80,-60},{-60,-40}})));
+
+ Buildings.Controls.OBC.CDL.Conversions.RealToInteger reaToInt1
+ "Convert real input to integer output"
+ annotation (Placement(transformation(extent={{-8,-60},{12,-40}})));
+
+ Buildings.Controls.OBC.CDL.Routing.RealExtractor lasLagPum(
+ final allowOutOfRange=true,
+ final nin=nPum,
+ final outOfRangeValue=0)
+ "Last lag pump"
+ annotation (Placement(transformation(extent={{-80,-110},{-60,-90}})));
+
+ Buildings.Controls.OBC.CDL.Conversions.RealToInteger reaToInt2
+ "Convert real input to integer output"
+ annotation (Placement(transformation(extent={{-8,-110},{12,-90}})));
+
+ Buildings.Controls.OBC.CDL.Conversions.BooleanToInteger booToInt[nPum]
+ "Convert boolean to integer"
+ annotation (Placement(transformation(extent={{-250,-130},{-230,-110}})));
+
+ Buildings.Controls.OBC.CDL.Integers.MultiSum mulSumInt(
+ final nin=nPum)
+ "Sum of integer inputs"
+ annotation (Placement(transformation(extent={{-200,-130},{-180,-110}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Add addInt
+ "Integer add"
+ annotation (Placement(transformation(extent={{-120,-80},{-100,-60}})));
+
+ Buildings.Controls.OBC.CDL.Conversions.BooleanToInteger booToInt1[nPumPri] if not have_varSecPum
+ "Convert boolean to integer"
+ annotation (Placement(transformation(extent={{-250,-166},{-230,-146}})));
+
+ Buildings.Controls.OBC.CDL.Integers.MultiSum mulSumInt1(
+ final nin=nPumPri) if not have_varSecPum
+ "Sum of integer inputs"
+ annotation (Placement(transformation(extent={{-200,-166},{-180,-146}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Greater intGre if not have_varSecPum
+ "Check if more boilers than pumps are enabled"
+ annotation (Placement(transformation(extent={{-60,-200},{-40,-180}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Less intLes if not have_varSecPum
+ "Check if less boilers than pumps are enabled"
+ annotation (Placement(transformation(extent={{-50,-250},{-30,-230}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Not not1 if not have_varSecPum
+ "Logical not"
+ annotation (Placement(transformation(extent={{2,-250},{22,-230}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Pumps.Generic.ChangeStatus
+ chaPumSta1(final nPum=nPum)
+ "Change lead pump status for headered primary pumps"
+ annotation (Placement(transformation(extent={{58,68},{80,88}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Pumps.Generic.ChangeStatus
+ chaPumSta2(final nPum=nPum) if have_varSecPum and have_secFloSen
+ "Change lag pump status for headered primary pumps in a plant that is primary-only"
+ annotation (Placement(transformation(extent={{60,-44},{82,-24}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Pumps.Generic.ChangeStatus
+ chaPumSta3(final nPum=nPum) if not have_varSecPum
+ "Change lag pump status for headered primary pumps in a plant that is not primary-only"
+ annotation (Placement(transformation(extent={{62,-182},{84,-162}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Pumps.Generic.ChangeStatus
+ chaPumSta4(final nPum=nPum) if have_varSecPum and not have_secFloSen
+ "Change pump status of secondary lag pumps in secondary loop with no flow sensor"
+ annotation (Placement(transformation(extent={{58,8},{80,28}})));
+
+ Buildings.Controls.OBC.CDL.Integers.LessEqualThreshold intLesEquThr(
+ final t=1)
+ "Prevent status changer from disabling lead pump"
+ annotation (Placement(transformation(extent={{-158,-228},{-138,-208}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Or or2 if not have_varSecPum
+ "Logical Or"
+ annotation (Placement(transformation(extent={{34,-228},{54,-208}})));
+
+ Buildings.Controls.OBC.CDL.Logical.And and2 if not have_varSecPum
+ "Logical And"
+ annotation (Placement(transformation(extent={{0,-174},{20,-154}})));
+
+ Buildings.Controls.OBC.CDL.Integers.GreaterEqualThreshold intGreEquThr(
+ final t=1)
+ "Prevent status changer from enabling lead pump"
+ annotation (Placement(transformation(extent={{-112,-160},{-92,-140}})));
+
+ Buildings.Controls.OBC.CDL.Logical.And and1 if have_varSecPum
+ "Logical And"
+ annotation (Placement(transformation(extent={{-30,32},{-10,52}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Or or3 if have_varSecPum
+ "Logical Or"
+ annotation (Placement(transformation(extent={{-20,-8},{0,12}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Not not3
+ "Logical Not"
+ annotation (Placement(transformation(extent={{-200,108},{-180,128}})));
+
+ Buildings.Controls.OBC.CDL.Logical.TrueDelay truDel(
+ final delayTime=delBoiDis)
+ "Delay pump disable after boilers have been disabled"
+ annotation (Placement(transformation(extent={{-120,108},{-100,128}})));
+
+ Buildings.Controls.OBC.CDL.Routing.BooleanScalarReplicator booRep(
+ final nout=nPum)
+ "Boolean replicator"
+ annotation (Placement(transformation(extent={{-66,108},{-46,128}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Switch logSwi[nPum]
+ "Logical switch"
+ annotation (Placement(transformation(extent={{192,-10},{212,10}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant con1[nPum](
+ final k=fill(false,nPum))
+ "Boolean False signal"
+ annotation (Placement(transformation(extent={{132,38},{152,58}})));
+
+equation
+ connect(uPumLeaLag, intToRea.u)
+ annotation (Line(points={{-300,230},{-222,230}}, color={255,127,0}));
+
+ connect(intToRea.y, leaPum.u)
+ annotation (Line(points={{-198,230},{-82,230}}, color={0,0,127}));
+
+ connect(conInt.y, leaPum.index)
+ annotation (Line(points={{-252,200},{-70,200},{-70,218}}, color={255,127,0}));
+
+ connect(leaPum.y, reaToInt.u)
+ annotation (Line(points={{-58,230},{-42,230}},color={0,0,127}));
+
+ connect(intToRea.y, nexLagPum.u)
+ annotation (Line(points={{-198,230},{-160,230},{-160,-50},{-82,-50}},
+ color={0,0,127}));
+
+ connect(enaLagHotPum.VHotWat_flow,VHotWat_flow)
+ annotation (Line(points={{-202,4},{-266,4},{-266,-20},{-300,-20}},
+ color={0,0,127}));
+
+ connect(uHotWatPum,enaLagHotPum.uHotWatPum)
+ annotation (Line(points={{-300,140},{-260,140},{-260,-3.8},{-202,-3.8}},
+ color={255,0,255}));
+
+ connect(intToRea.y, lasLagPum.u)
+ annotation (Line(points={{-198,230},{-160,230},{-160,-100},{-82,-100}},
+ color={0,0,127}));
+
+ connect(pumSpeLocDp.dpHotWat_local,dpHotWat_local)
+ annotation (Line(points={{-62,-322},{-230,-322},{-230,-290},{-300,-290}},
+ color={0,0,127}));
+
+ connect(pumSpeLocDp.dpHotWat_remote,dpHotWat_remote)
+ annotation (Line(points={{-62,-334},{-200,-334},{-200,-330},{-300,-330}},
+ color={0,0,127}));
+
+ connect(pumSpeLocDp.dpHotWatSet,dpHotWatSet)
+ annotation (Line(points={{-62,-338},{-220,-338},{-220,-360},{-300,-360}},
+ color={0,0,127}));
+
+ connect(dpHotWat_remote,pumSpeRemDp.dpHotWat)
+ annotation (Line(points={{-300,-330},{-200,-330},{-200,-370},{-62,-370}},
+ color={0,0,127}));
+
+ connect(dpHotWatSet,pumSpeRemDp.dpHotWatSet)
+ annotation (Line(points={{-300,-360},{-220,-360},{-220,-378},{-62,-378}},
+ color={0,0,127}));
+
+ connect(uHotWatPum, booToInt.u)
+ annotation (Line(points={{-300,140},{-260,140},{-260,-120},{-252,-120}},
+ color={255,0,255}));
+
+ connect(booToInt.y, mulSumInt.u)
+ annotation (Line(points={{-228,-120},{-202,-120}}, color={255,127,0}));
+
+ connect(addInt.y, nexLagPum.index)
+ annotation (Line(points={{-98,-70},{-70,-70},{-70,-62}}, color={255,127,0}));
+
+ connect(mulSumInt.y, addInt.u2)
+ annotation (Line(points={{-178,-120},{-128,-120},{-128,-76},{-122,-76}},
+ color={255,127,0}));
+
+ connect(conInt.y, addInt.u1)
+ annotation (Line(points={{-252,200},{-140,200},{-140,-64},{-122,-64}},
+ color={255,127,0}));
+
+ connect(mulSumInt.y, lasLagPum.index)
+ annotation (Line(points={{-178,-120},{-70,-120},{-70,-112}}, color={255,127,0}));
+
+ connect(reaToInt.y, chaPumSta1.uNexLagPum) annotation (Line(points={{-18,230},
+ {46,230},{46,74},{56,74}}, color={255,127,0}));
+
+ connect(reaToInt.y, chaPumSta1.uLasLagPum) annotation (Line(points={{-18,230},
+ {46,230},{46,70},{56,70}}, color={255,127,0}));
+
+ connect(enaHeaLeaPum.yLea, chaPumSta1.uNexLagPumSta) annotation (Line(points={{-178,86},
+ {56,86}}, color={255,0,255}));
+
+ connect(enaHeaLeaPum.yLea, chaPumSta1.uLasLagPumSta) annotation (Line(points={{-178,86},
+ {36,86},{36,83},{56,83}}, color={255,0,255}));
+
+ connect(uHotWatPum, chaPumSta1.uHotWatPum) annotation (Line(points={{-300,140},
+ {26,140},{26,78},{56,78}}, color={255,0,255}));
+
+ connect(chaPumSta1.yHotWatPum, chaPumSta2.uHotWatPum) annotation (Line(points={{80,78},
+ {100,78},{100,-16},{46,-16},{46,-34},{58,-34}}, color={255,0,
+ 255}));
+
+ connect(chaPumSta1.yHotWatPum, chaPumSta3.uHotWatPum) annotation (Line(points={{80,78},
+ {100,78},{100,-154},{44,-154},{44,-172},{60,-172}}, color={
+ 255,0,255}));
+
+ connect(uMaxSecPumSpeCon, min.u1)
+ annotation (Line(points={{-300,-390},{-72,-390},{-72,-394},{158,-394}},
+ color={0,0,127}));
+
+ connect(pumSpeLocDp.yHotWatPumSpe, min.u2) annotation (Line(points={{-38,-330},
+ {146,-330},{146,-406},{158,-406}}, color={0,0,127}));
+
+ connect(pumSpeRemDp.yHotWatPumSpe, min.u2) annotation (Line(points={{-38,-370},
+ {146,-370},{146,-406},{158,-406}}, color={0,0,127}));
+
+ connect(uPriPumSta, booToInt1.u) annotation (Line(points={{-300,-156},{-252,-156}},
+ color={255,0,255}));
+
+ connect(mulSumInt1.y, intGre.u1) annotation (Line(points={{-178,-156},{-124,-156},
+ {-124,-190},{-62,-190}}, color={255,127,0}));
+
+ connect(mulSumInt1.y, intLes.u1) annotation (Line(points={{-178,-156},{-124,-156},
+ {-124,-240},{-52,-240}}, color={255,127,0}));
+
+ connect(intLes.y, not1.u)
+ annotation (Line(points={{-28,-240},{0,-240}}, color={255,0,255}));
+
+ connect(supResReq, enaHeaLeaPum.supResReq) annotation (Line(points={{-300,40},
+ {-220,40},{-220,82},{-202,82}}, color={255,127,0}));
+
+ connect(min.y, uniDel.u) annotation (Line(points={{182,-400},{200,-400},{200,-418},
+ {-210,-418},{-210,38},{-202,38}}, color={0,0,127}));
+
+ connect(uniDel.y, enaLagSecPum.uPumSpe)
+ annotation (Line(points={{-178,38},{-122,38}}, color={0,0,127}));
+
+ connect(chaPumSta1.yHotWatPum, chaPumSta4.uHotWatPum) annotation (Line(points={{80,78},
+ {100,78},{100,42},{50,42},{50,18},{56,18}}, color={255,0,255}));
+
+ connect(uPlaEna, enaHeaLeaPum.uPlaEna)
+ annotation (Line(points={{-300,90},{-202,90}}, color={255,0,255}));
+
+ connect(reaToInt1.y, chaPumSta4.uNexLagPum) annotation (Line(points={{14,-50},
+ {32,-50},{32,14},{56,14}}, color={255,127,0}));
+
+ connect(reaToInt1.y, chaPumSta2.uNexLagPum) annotation (Line(points={{14,-50},
+ {32,-50},{32,-38},{58,-38}}, color={255,127,0}));
+
+ connect(reaToInt1.y, chaPumSta3.uNexLagPum) annotation (Line(points={{14,-50},
+ {32,-50},{32,-176},{60,-176}}, color={255,127,0}));
+
+ connect(reaToInt2.y, chaPumSta4.uLasLagPum) annotation (Line(points={{14,-100},
+ {38,-100},{38,10},{56,10}}, color={255,127,0}));
+
+ connect(reaToInt2.y, chaPumSta2.uLasLagPum) annotation (Line(points={{14,-100},
+ {38,-100},{38,-42},{58,-42}}, color={255,127,0}));
+
+ connect(reaToInt2.y, chaPumSta3.uLasLagPum) annotation (Line(points={{14,-100},
+ {38,-100},{38,-180},{60,-180}}, color={255,127,0}));
+
+ connect(intLesEquThr.y, or2.u1)
+ annotation (Line(points={{-136,-218},{32,-218}}, color={255,0,255}));
+
+ connect(not1.y, or2.u2) annotation (Line(points={{24,-240},{28,-240},{28,-226},
+ {32,-226}}, color={255,0,255}));
+
+ connect(or2.y, chaPumSta3.uLasLagPumSta) annotation (Line(points={{56,-218},{58,
+ -218},{58,-167},{60,-167}}, color={255,0,255}));
+
+ connect(nexLagPum.y, reaToInt1.u)
+ annotation (Line(points={{-58,-50},{-10,-50}}, color={0,0,127}));
+
+ connect(lasLagPum.y, reaToInt2.u)
+ annotation (Line(points={{-58,-100},{-10,-100}}, color={0,0,127}));
+
+ connect(mulSumInt.y, intLesEquThr.u) annotation (Line(points={{-178,-120},{-166,
+ -120},{-166,-218},{-160,-218}}, color={255,127,0}));
+
+ connect(mulSumInt.y, intGre.u2) annotation (Line(points={{-178,-120},{-166,-120},
+ {-166,-198},{-62,-198}}, color={255,127,0}));
+
+ connect(mulSumInt.y, intLes.u2) annotation (Line(points={{-178,-120},{-166,-120},
+ {-166,-248},{-52,-248}}, color={255,127,0}));
+
+ connect(and2.y, chaPumSta3.uNexLagPumSta)
+ annotation (Line(points={{22,-164},{60,-164}}, color={255,0,255}));
+
+ connect(intGre.y, and2.u2) annotation (Line(points={{-38,-190},{-10,-190},{-10,
+ -172},{-2,-172}}, color={255,0,255}));
+
+ connect(intGreEquThr.y, and2.u1)
+ annotation (Line(points={{-90,-150},{-10,-150},{-10,-164},{-2,-164}},
+ color={255,0,255}));
+
+ connect(mulSumInt.y, intGreEquThr.u) annotation (Line(points={{-178,-120},{-166,
+ -120},{-166,-150},{-114,-150}},color={255,127,0}));
+
+ connect(enaLagSecPum.yUp, and1.u1)
+ annotation (Line(points={{-98,42},{-32,42}}, color={255,0,255}));
+ connect(intGreEquThr.y, and1.u2) annotation (Line(points={{-90,-150},{-40,-150},
+ {-40,34},{-32,34}}, color={255,0,255}));
+ connect(enaLagHotPum.yUp, and1.u1) annotation (Line(points={{-178,4},{-70,4},{
+ -70,42},{-32,42}}, color={255,0,255}));
+ connect(intLesEquThr.y, or3.u2) annotation (Line(points={{-136,-218},{-28,-218},
+ {-28,-6},{-22,-6}}, color={255,0,255}));
+ connect(enaLagSecPum.yDown, or3.u1) annotation (Line(points={{-98,34},{-48,34},
+ {-48,2},{-22,2}}, color={255,0,255}));
+ connect(enaLagHotPum.yDown, or3.u1) annotation (Line(points={{-178,-4},{-48,-4},
+ {-48,2},{-22,2}}, color={255,0,255}));
+ connect(and1.y, chaPumSta4.uNexLagPumSta) annotation (Line(points={{-8,42},{28,
+ 42},{28,26},{56,26}}, color={255,0,255}));
+ connect(or3.y, chaPumSta4.uLasLagPumSta) annotation (Line(points={{2,2},{20,2},
+ {20,23},{56,23}}, color={255,0,255}));
+ connect(and1.y, chaPumSta2.uNexLagPumSta) annotation (Line(points={{-8,42},{28,
+ 42},{28,-26},{58,-26}}, color={255,0,255}));
+ connect(or3.y, chaPumSta2.uLasLagPumSta) annotation (Line(points={{2,2},{20,2},
+ {20,-29},{58,-29}}, color={255,0,255}));
+
+ connect(not3.y,truDel. u)
+ annotation (Line(points={{-178,118},{-122,118}},
+ color={255,0,255}));
+ connect(truDel.y,booRep. u) annotation (Line(points={{-98,118},{-68,118}},
+ color={255,0,255}));
+ connect(booRep.y,logSwi. u2) annotation (Line(points={{-44,118},{174,118},{174,
+ 0},{190,0}},color={255,0,255}));
+ connect(con1.y,logSwi. u1) annotation (Line(points={{154,48},{166,48},{166,8},
+ {190,8}}, color={255,0,255}));
+ connect(uPlaEna, not3.u) annotation (Line(points={{-300,90},{-220,90},{-220,118},
+ {-202,118}}, color={255,0,255}));
+ connect(chaPumSta3.yHotWatPum, logSwi.u3) annotation (Line(points={{84,-172},{
+ 122,-172},{122,-174},{174,-174},{174,-8},{190,-8}}, color={255,0,255}));
+ connect(chaPumSta2.yHotWatPum, logSwi.u3) annotation (Line(points={{82,-34},{174,
+ -34},{174,-8},{190,-8}}, color={255,0,255}));
+ connect(chaPumSta4.yHotWatPum, logSwi.u3) annotation (Line(points={{80,18},{158,
+ 18},{158,-8},{190,-8}}, color={255,0,255}));
+ connect(logSwi.y, yHotWatPum)
+ annotation (Line(points={{214,0},{300,0}}, color={255,0,255}));
+ connect(logSwi.y, pumSpeLocDp.uHotWatPum) annotation (Line(points={{214,0},{274,
+ 0},{274,-264},{-74,-264},{-74,-326},{-62,-326}}, color={255,0,255}));
+ connect(logSwi.y, pumSpeRemDp.uHotWatPum) annotation (Line(points={{214,0},{274,
+ 0},{274,-264},{-74,-264},{-74,-362},{-62,-362}}, color={255,0,255}));
+ connect(booToInt1.y, mulSumInt1.u[1:2]) annotation (Line(points={{-228,-156},{
+ -216,-156},{-216,-159.5},{-202,-159.5}}, color={255,127,0}));
+ connect(min.y, yPumSpe)
+ annotation (Line(points={{182,-400},{300,-400}}, color={0,0,127}));
+annotation (defaultComponentName="secPumCon",
+ Diagram(coordinateSystem(preserveAspectRatio=false,
+ extent={{-280,-440},{280,260}}),
+ graphics={
+ Rectangle(
+ extent={{-276,256},{274,60}},
+ fillColor={210,210,210},
+ fillPattern=FillPattern.Solid,
+ pattern=LinePattern.None),
+ Text(
+ extent={{206,248},{270,232}},
+ pattern=LinePattern.None,
+ fillColor={210,210,210},
+ fillPattern=FillPattern.Solid,
+ textColor={0,0,127},
+ horizontalAlignment=TextAlignment.Right,
+ textString="Enable lead pump"),
+ Rectangle(
+ extent={{-276,56},{274,-136}},
+ fillColor={210,210,210},
+ fillPattern=FillPattern.Solid,
+ pattern=LinePattern.None),
+ Text(
+ extent={{192,52},{270,36}},
+ pattern=LinePattern.None,
+ fillColor={210,210,210},
+ fillPattern=FillPattern.Solid,
+ textColor={0,0,127},
+ horizontalAlignment=TextAlignment.Right,
+ textString="Enable next lag pump"),
+ Text(
+ extent={{188,-126},{266,-136}},
+ pattern=LinePattern.None,
+ fillColor={210,210,210},
+ fillPattern=FillPattern.Solid,
+ textColor={0,0,127},
+ horizontalAlignment=TextAlignment.Right,
+ textString="Disable last lag pump"),
+ Rectangle(
+ extent={{-278,-270},{274,-436}},
+ fillColor={210,210,210},
+ fillPattern=FillPattern.Solid,
+ pattern=LinePattern.None),
+ Text(
+ extent={{220,-272},{266,-284}},
+ pattern=LinePattern.None,
+ fillColor={210,210,210},
+ fillPattern=FillPattern.Solid,
+ textColor={0,0,127},
+ horizontalAlignment=TextAlignment.Right,
+ textString="Pump speed"),
+ Rectangle(
+ extent={{-276,-140},{274,-266}},
+ fillColor={210,210,210},
+ fillPattern=FillPattern.Solid,
+ pattern=LinePattern.None),
+ Text(
+ extent={{76,-142},{264,-156}},
+ pattern=LinePattern.None,
+ fillColor={210,210,210},
+ fillPattern=FillPattern.Solid,
+ textColor={0,0,127},
+ horizontalAlignment=TextAlignment.Right,
+ textString="Enable/Disable lag pumps for fixed-speed secondary pumps")}),
+ Icon(coordinateSystem(preserveAspectRatio=false, extent={{-100,-200},{100,200}}),
+ graphics={
+ Rectangle(
+ extent={{-100,-200},{100,200}},
+ lineColor={0,0,0},
+ fillColor={255,255,255},
+ fillPattern=FillPattern.Solid),
+ Text(
+ extent={{-100,250},{100,210}},
+ textColor={0,0,255},
+ textString="%name"),
+ Rectangle(
+ extent={{-80,60},{82,-60}},
+ lineColor={28,108,200},
+ fillColor={210,210,210},
+ fillPattern=FillPattern.Solid,
+ borderPattern=BorderPattern.Raised),
+ Polygon(
+ points={{-80,60},{-14,4},{-80,-60},{-80,60}},
+ lineColor={175,175,175},
+ fillColor={175,175,175},
+ fillPattern=FillPattern.Solid)}),
+ Documentation(info="
+
+Secondary hot water pump control sequence per ASHRAE RP-1711, March, 2020 draft,
+section 5.3.7. It consists of:
+
+
+
+The parameter values for valid pump configurations are as follows:
+
+
+
+
+
+ Boolean Parameters/Plant configurations |
+ 1 |
+ 2 |
+ 3 |
+ 4 |
+ 5 |
+
+
+
+
+ have_varSecPum |
+ TRUE |
+ TRUE |
+ TRUE |
+ TRUE |
+ FALSE |
+
+
+ have_secFloSen |
+ TRUE |
+ TRUE |
+ FALSE |
+ FALSE |
+ FALSE |
+
+
+ speConTyp |
+ localDP |
+ remoteDP |
+ localDP |
+ remoteDP |
+ NA |
+
+
+
+",
+revisions="
+
+-
+August 11, 2020, by Karthik Devaprasad:
+First implementation.
+
+
+"));
+end Controller;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Pumps/SecondaryPumps/Subsequences/EnableLag_pumpSpeed.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Pumps/SecondaryPumps/Subsequences/EnableLag_pumpSpeed.mo
new file mode 100644
index 00000000000..3878a70d423
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Pumps/SecondaryPumps/Subsequences/EnableLag_pumpSpeed.mo
@@ -0,0 +1,267 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Pumps.SecondaryPumps.Subsequences;
+block EnableLag_pumpSpeed
+ "Sequence for enabling and disabling lag pumps for variable-speed secondary pumps with no secondary loop flowrate sensor"
+
+ parameter Real speLim(
+ final unit="1",
+ displayUnit="1") = 0.9
+ "Speed limit with longer enable delay for enabling next lag pump";
+
+ parameter Real speLim1(
+ final unit="1",
+ displayUnit="1") = 0.99
+ "Speed limit with shorter enable delay for enabling next lag pump";
+
+ parameter Real speLim2(
+ final unit="1",
+ displayUnit="1") = 0.4
+ "Speed limit for disabling last lag pump";
+
+ parameter Real timPer(
+ final unit="s",
+ displayUnit="s",
+ final quantity="time") = 300
+ "Delay time period for enabling next lag pump at speed limit speLim";
+
+ parameter Real timPer1(
+ final unit="s",
+ displayUnit="s",
+ final quantity="time") = 60
+ "Delay time period for enabling next lag pump at speed limit speLim1";
+
+ parameter Real timPer2(
+ final unit="s",
+ displayUnit="s",
+ final quantity="time") = 600
+ "Delay time period for disabling last lag pump";
+
+ parameter Real sigDif(
+ final unit="1",
+ displayUnit="1") = 0.01
+ "Constant value used in hysteresis for checking pump speed"
+ annotation (Dialog(tab="Advanced"));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput uPumSpe(
+ final unit="1",
+ displayUnit="1")
+ "Calculated pump speed"
+ annotation (Placement(transformation(extent={{-180,-20},{-140,20}}),
+ iconTransformation(extent={{-140,-20},{-100,20}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanOutput yUp
+ "Next lag pump status"
+ annotation (Placement(transformation(extent={{140,10},{180,50}}),
+ iconTransformation(extent={{100,20},{140,60}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanOutput yDown
+ "Last lag pump status"
+ annotation (Placement(transformation(extent={{140,-110},{180,-70}}),
+ iconTransformation(extent={{100,-60},{140,-20}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Timer tim(
+ final t=timPer)
+ "Hysteresis loop enable timer"
+ annotation (Placement(transformation(extent={{-70,50},{-50,70}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Timer tim1(
+ final t=timPer1)
+ "Hysteresis loop enable timer"
+ annotation (Placement(transformation(extent={{-70,-10},{-50,10}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Timer tim2(
+ final t=timPer2)
+ "Hysteresis loop enable timer"
+ annotation (Placement(transformation(extent={{-50,-100},{-30,-80}})));
+
+protected
+ Buildings.Controls.OBC.CDL.Continuous.Hysteresis hys(
+ final uLow=speLim - sigDif,
+ final uHigh=speLim)
+ "Hysteresis for enabling next lag pump at speed limit speLim"
+ annotation (Placement(transformation(extent={{-120,50},{-100,70}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Hysteresis hys1(
+ final uLow=speLim1 - sigDif,
+ final uHigh=speLim1)
+ "Hysteresis for enabling next lag pump at speed limit speLim1"
+ annotation (Placement(transformation(extent={{-120,-10},{-100,10}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Hysteresis hys2(
+ final uLow=speLim2,
+ final uHigh=speLim2 + sigDif)
+ "Hysteresis for disabling last lag pump"
+ annotation (Placement(transformation(extent={{-120,-100},{-100,-80}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Pre pre1
+ "Logical pre block"
+ annotation (Placement(transformation(extent={{0,-50},{20,-30}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Edge edg
+ "Edge detector"
+ annotation (Placement(transformation(extent={{40,90},{60,110}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Not not1
+ "Logical Not"
+ annotation (Placement(transformation(extent={{70,90},{90,110}})));
+
+ Buildings.Controls.OBC.CDL.Logical.And and2
+ "Logical And"
+ annotation (Placement(transformation(extent={{100,90},{120,110}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Or or2
+ "Logical Or"
+ annotation (Placement(transformation(extent={{100,20},{120,40}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Edge edg1
+ "Edge detector"
+ annotation (Placement(transformation(extent={{40,-50},{60,-30}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Not not2
+ "Logical Not"
+ annotation (Placement(transformation(extent={{70,-50},{90,-30}})));
+
+ Buildings.Controls.OBC.CDL.Logical.And and1
+ "Logical And"
+ annotation (Placement(transformation(extent={{100,-50},{120,-30}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Not not3
+ "Logical Not"
+ annotation (Placement(transformation(extent={{-90,-100},{-70,-80}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Pre pre2
+ "Logical pre block"
+ annotation (Placement(transformation(extent={{10,-140},{30,-120}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Edge edg2
+ "Edge detector"
+ annotation (Placement(transformation(extent={{40,-140},{60,-120}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Not not4
+ "Logical Not"
+ annotation (Placement(transformation(extent={{70,-140},{90,-120}})));
+
+ Buildings.Controls.OBC.CDL.Logical.And and3
+ "Logical And"
+ annotation (Placement(transformation(extent={{100,-140},{120,-120}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Not not5
+ "Logical Not"
+ annotation (Placement(transformation(extent={{70,-100},{90,-80}})));
+
+equation
+ connect(uPumSpe, hys.u) annotation (Line(points={{-160,0},{-130,0},{-130,60},{
+ -122,60}},color={0,0,127}));
+
+ connect(uPumSpe, hys1.u)
+ annotation (Line(points={{-160,0},{-122,0}},color={0,0,127}));
+
+ connect(uPumSpe, hys2.u) annotation (Line(points={{-160,0},{-130,0},{-130,-90},
+ {-122,-90}},color={0,0,127}));
+
+ connect(edg.y, not1.u)
+ annotation (Line(points={{62,100},{68,100}}, color={255,0,255}));
+
+ connect(not1.y, and2.u1)
+ annotation (Line(points={{92,100},{98,100}}, color={255,0,255}));
+
+ connect(hys.y, and2.u2) annotation (Line(points={{-98,60},{-90,60},{-90,80},{94,
+ 80},{94,92},{98,92}}, color={255,0,255}));
+
+ connect(and2.y, tim.u) annotation (Line(points={{122,100},{132,100},{132,86},{
+ -80,86},{-80,60},{-72,60}}, color={255,0,255}));
+
+ connect(or2.y, yUp)
+ annotation (Line(points={{122,30},{160,30}}, color={255,0,255}));
+
+ connect(edg1.y, not2.u)
+ annotation (Line(points={{62,-40},{68,-40}},
+ color={255,0,255}));
+
+ connect(not2.y, and1.u1)
+ annotation (Line(points={{92,-40},{98,-40}},
+ color={255,0,255}));
+
+ connect(and1.y, tim1.u) annotation (Line(points={{122,-40},{130,-40},{130,-16},
+ {-80,-16},{-80,0},{-72,0}},
+ color={255,0,255}));
+
+ connect(hys1.y, and1.u2) annotation (Line(points={{-98,0},{-90,0},{-90,-20},{96,
+ -20},{96,-48},{98,-48}}, color={255,0,255}));
+
+ connect(hys2.y, not3.u)
+ annotation (Line(points={{-98,-90},{-92,-90}}, color={255,0,255}));
+
+ connect(not3.y, and3.u2) annotation (Line(points={{-68,-90},{-60,-90},{-60,-150},
+ {94,-150},{94,-138},{98,-138}}, color={255,0,255}));
+
+ connect(not4.y, and3.u1)
+ annotation (Line(points={{92,-130},{98,-130}}, color={255,0,255}));
+
+ connect(and3.y, tim2.u) annotation (Line(points={{122,-130},{130,-130},{130,-110},
+ {-56,-110},{-56,-90},{-52,-90}}, color={255,0,255}));
+
+ connect(pre2.y, edg2.u)
+ annotation (Line(points={{32,-130},{38,-130}}, color={255,0,255}));
+
+ connect(edg2.y, not4.u)
+ annotation (Line(points={{62,-130},{68,-130}}, color={255,0,255}));
+
+ connect(not5.y, yDown)
+ annotation (Line(points={{92,-90},{160,-90}}, color={255,0,255}));
+
+ connect(pre1.y, edg1.u)
+ annotation (Line(points={{22,-40},{38,-40}}, color={255,0,255}));
+
+ connect(pre1.y, edg.u) annotation (Line(points={{22,-40},{30,-40},{30,100},{38,
+ 100}}, color={255,0,255}));
+
+ connect(tim.passed, or2.u1) annotation (Line(points={{-48,52},{90,52},{90,30},
+ {98,30}}, color={255,0,255}));
+ connect(tim1.passed, or2.u2) annotation (Line(points={{-48,-8},{90,-8},{90,22},
+ {98,22}}, color={255,0,255}));
+ connect(tim2.passed, not5.u) annotation (Line(points={{-28,-98},{50,-98},{50,
+ -90},{68,-90}}, color={255,0,255}));
+ connect(or2.y, pre1.u) annotation (Line(points={{122,30},{130,30},{130,-12},{
+ -20,-12},{-20,-40},{-2,-40}}, color={255,0,255}));
+ connect(tim2.passed, pre2.u) annotation (Line(points={{-28,-98},{0,-98},{0,
+ -130},{8,-130}}, color={255,0,255}));
+annotation (
+defaultComponentName="enaLagSecPum",
+Icon(coordinateSystem(preserveAspectRatio=false,extent={{-100,-100},{100,100}}),
+ graphics={
+ Rectangle(
+ extent={{-100,-100},{100,100}},
+ lineColor={0,0,127},
+ fillColor={255,255,255},
+ fillPattern=FillPattern.Solid),
+ Text(
+ extent={{-100,150},{100,110}},
+ textColor={0,0,255},
+ textString="%name")}),
+Diagram(coordinateSystem(preserveAspectRatio=false, extent={{-140,-160},{140,160}})),
+Documentation(info="
+
+Block that enables and disables lag secondary hot water pump, for plants with
+variable-speed secondary pumps and no flowrate sensor in secondary loop, according
+to ASHRAE RP-1711, March, 2020 draft, section 5.3.7.4.
+
+
+-
+Stage up
yUp = true
when speed uPumSpe
exceeds speed limit
+speLim
for time period timPer
or speLim1
+for timPer1
.
+
+-
+Stage down
yDown = false
when uPumSpe
falls below speLim2
+for timPer2
.
+
+
+", revisions="
+
+-
+August 25, 2020, by Karthik Devaprasad:
+First implementation.
+
+
+"));
+end EnableLag_pumpSpeed;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Pumps/SecondaryPumps/Subsequences/EnableLead.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Pumps/SecondaryPumps/Subsequences/EnableLead.mo
new file mode 100644
index 00000000000..267f360948b
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Pumps/SecondaryPumps/Subsequences/EnableLead.mo
@@ -0,0 +1,77 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Pumps.SecondaryPumps.Subsequences;
+block EnableLead
+ "Sequence to enable or disable the lead secondary pump of boiler plants"
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uPlaEna
+ "Primary pump status signal"
+ annotation (Placement(transformation(extent={{-140,20},{-100,60}}),
+ iconTransformation(extent={{-140,20},{-100,60}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.IntegerInput supResReq
+ "Hot water supply reset requests"
+ annotation (Placement(transformation(extent={{-140,-60},{-100,-20}}),
+ iconTransformation(extent={{-140,-60},{-100,-20}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanOutput yLea
+ "Lead pump status"
+ annotation (Placement(transformation(extent={{100,-20},{140,20}}),
+ iconTransformation(extent={{100,-20},{140,20}})));
+
+protected
+ Buildings.Controls.OBC.CDL.Integers.GreaterThreshold intGreThr
+ "Check if any hot water requests are being generated"
+ annotation (Placement(transformation(extent={{-80,-50},{-60,-30}})));
+
+ Buildings.Controls.OBC.CDL.Logical.And and2
+ "Logical And"
+ annotation (Placement(transformation(extent={{-20,-10},{0,10}})));
+
+equation
+ connect(supResReq, intGreThr.u)
+ annotation (Line(points={{-120,-40},{-82,-40}}, color={255,127,0}));
+
+ connect(intGreThr.y, and2.u2) annotation (Line(points={{-58,-40},{-40,-40},{-40,
+ -8},{-22,-8}}, color={255,0,255}));
+
+ connect(and2.y, yLea)
+ annotation (Line(points={{2,0},{120,0}}, color={255,0,255}));
+
+ connect(uPlaEna, and2.u1) annotation (Line(points={{-120,40},{-40,40},{-40,0},
+ {-22,0}}, color={255,0,255}));
+
+annotation (
+ defaultComponentName="enaLeaSecPum",
+ Icon(coordinateSystem(preserveAspectRatio=false), graphics={
+ Rectangle(
+ extent={{-100,-100},{100,100}},
+ lineColor={0,0,127},
+ fillColor={255,255,255},
+ fillPattern=FillPattern.Solid),
+ Text(
+ extent={{-100,150},{100,110}},
+ textColor={0,0,255},
+ textString="%name")}),
+ Diagram(coordinateSystem(preserveAspectRatio=false)),
+ Documentation(info="
+
+ Block that enables and disables lead secondary hot water pump, for plants
+ with variable-speed hot water pumps, according to ASHRAE RP-1711, March 2020 draft,
+ section 5.3.7.2.
+
+
+ -
+ The lead secondary hot water pump shall be enabled
yLea = true
when
+ boiler plant is enabled uPlaEna = true
and hot water reset requests
+ are being received from the loads, ie, supResReq > 0
and shall
+ be disabled otherwise.
+
+
+ ", revisions="
+
+ -
+ August 25, 2020, by Karthik Devaprasad:
+ First implementation.
+
+
+ "));
+end EnableLead;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Pumps/SecondaryPumps/Subsequences/Validation/EnableLag_pumpSpeed.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Pumps/SecondaryPumps/Subsequences/Validation/EnableLag_pumpSpeed.mo
new file mode 100644
index 00000000000..583e97a0d70
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Pumps/SecondaryPumps/Subsequences/Validation/EnableLag_pumpSpeed.mo
@@ -0,0 +1,77 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Pumps.SecondaryPumps.Subsequences.Validation;
+model EnableLag_pumpSpeed
+ "Validate sequence for enabling variable-speed secondary lag pumps with no flowrate sensor in secondary loop"
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Pumps.SecondaryPumps.Subsequences.EnableLag_pumpSpeed
+ enaLagSecPum(
+ final speLim=0.9,
+ final speLim1=0.99,
+ final speLim2=0.4,
+ final timPer=300,
+ final timPer1=60,
+ final timPer2=600,
+ final sigDif=0.01) "Test instance for speed-limit speLim"
+ annotation (Placement(transformation(extent={{-10,-10},{10,10}})));
+
+ Buildings.Controls.OBC.CDL.Logical.TrueFalseHold yUp(
+ final trueHoldDuration=10,
+ final falseHoldDuration=0)
+ "Hold stage-up signal for easy visualization"
+ annotation (Placement(transformation(extent={{50,20},{70,40}})));
+
+ Buildings.Controls.OBC.CDL.Logical.TrueFalseHold yDow(
+ final trueHoldDuration=0,
+ final falseHoldDuration=10)
+ "Hold stage-down signal for easy visualization"
+ annotation (Placement(transformation(extent={{50,-40},{70,-20}})));
+
+protected
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Ramp ram(
+ final height=1,
+ final duration=3500,
+ final offset=0,
+ final startTime=0)
+ "Ramp input"
+ annotation (Placement(transformation(extent={{-70,-10},{-50,10}})));
+
+equation
+ connect(enaLagSecPum.yUp, yUp.u) annotation (Line(points={{12,4},{20,4},{20,30},
+ {48,30}}, color={255,0,255}));
+
+ connect(enaLagSecPum.yDown, yDow.u) annotation (Line(points={{12,-4},{20,-4},{
+ 20,-30},{48,-30}}, color={255,0,255}));
+
+ connect(ram.y, enaLagSecPum.uPumSpe)
+ annotation (Line(points={{-48,0},{-12,0}}, color={0,0,127}));
+
+annotation (
+ experiment(StopTime=3600.0, Tolerance=1e-06),
+ __Dymola_Commands(file="modelica://Buildings/Resources/Scripts/Dymola/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Pumps/SecondaryPumps/Subsequences/Validation/EnableLag_pumpSpeed.mos"
+ "Simulate and plot"),
+ Documentation(info="
+
+This example validates
+
+Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Pumps.SecondaryPumps.Subsequences.EnableLag_pumpSpeed.
+
+", revisions="
+
+-
+August 26, 2020, by Karthik Devaprasad:
+First implementation.
+
+
+"),
+ Icon(coordinateSystem(preserveAspectRatio=false, extent={{-100,-100},{100,100}}),
+ graphics={
+ Ellipse(lineColor = {75,138,73},
+ fillColor={255,255,255},
+ fillPattern = FillPattern.Solid,
+ extent = {{-100,-100},{100,100}}),
+ Polygon(lineColor = {0,0,255},
+ fillColor = {75,138,73},
+ pattern = LinePattern.None,
+ fillPattern = FillPattern.Solid,
+ points = {{-36,60},{64,0},{-36,-60},{-36,60}})}),
+ Diagram(coordinateSystem(preserveAspectRatio=false, extent={{-100,-100},{100,100}})));
+end EnableLag_pumpSpeed;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Pumps/SecondaryPumps/Subsequences/Validation/EnableLead.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Pumps/SecondaryPumps/Subsequences/Validation/EnableLead.mo
new file mode 100644
index 00000000000..be81c0de799
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Pumps/SecondaryPumps/Subsequences/Validation/EnableLead.mo
@@ -0,0 +1,67 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Pumps.SecondaryPumps.Subsequences.Validation;
+model EnableLead
+ "Validate sequence for enabling lead secondary pump of boiler plants"
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Pumps.SecondaryPumps.Subsequences.EnableLead
+ enaLeaSecPum
+ "Enable lead hot water pump based on the status of plant and hot water requests"
+ annotation (Placement(transformation(extent={{0,-10},{20,10}})));
+
+protected
+ Buildings.Controls.OBC.CDL.Logical.Sources.Pulse booPul(
+ final period=5)
+ "Boolean pulse signal"
+ annotation (Placement(transformation(extent={{-50,10},{-30,30}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Pulse pul(
+ final amplitude=1,
+ final period=10,
+ final offset=0)
+ "Real pulse signal"
+ annotation (Placement(transformation(extent={{-90,-30},{-70,-10}})));
+
+ Buildings.Controls.OBC.CDL.Conversions.RealToInteger reaToInt
+ "Real to Integer conversion"
+ annotation (Placement(transformation(extent={{-50,-30},{-30,-10}})));
+
+equation
+ connect(pul.y, reaToInt.u)
+ annotation (Line(points={{-68,-20},{-52,-20}}, color={0,0,127}));
+
+ connect(reaToInt.y, enaLeaSecPum.supResReq) annotation (Line(points={{-28,-20},
+ {-10,-20},{-10,-4},{-2,-4}}, color={255,127,0}));
+
+ connect(booPul.y, enaLeaSecPum.uPlaEna) annotation (Line(points={{-28,20},{
+ -10,20},{-10,4},{-2,4}}, color={255,0,255}));
+
+annotation (
+ experiment(StopTime=3600.0, Tolerance=1e-06),
+ __Dymola_Commands(file="modelica://Buildings/Resources/Scripts/Dymola/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Pumps/SecondaryPumps/Subsequences/Validation/EnableLead.mos"
+ "Simulate and plot"),
+ Documentation(info="
+
+ This example validates
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Pumps.SecondaryPumps.Subsequences.EnableLead.
+
+ ", revisions="
+
+ -
+ August 25, 2020, by Karthik Devaprasad:
+ First implementation.
+
+
+ "),
+ Icon(coordinateSystem(preserveAspectRatio=false, extent={{-100,-100},{100,100}}),
+ graphics={
+ Ellipse(lineColor = {75,138,73},
+ fillColor={255,255,255},
+ fillPattern = FillPattern.Solid,
+ extent = {{-100,-100},{100,100}}),
+ Polygon(lineColor = {0,0,255},
+ fillColor = {75,138,73},
+ pattern = LinePattern.None,
+ fillPattern = FillPattern.Solid,
+ points = {{-36,60},{64,0},{-36,-60},{-36,60}})}),
+ Diagram(coordinateSystem(preserveAspectRatio=false, extent={{-100,-100},{100,100}})));
+end EnableLead;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Pumps/SecondaryPumps/Subsequences/Validation/package.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Pumps/SecondaryPumps/Subsequences/Validation/package.mo
new file mode 100644
index 00000000000..b778f494d9b
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Pumps/SecondaryPumps/Subsequences/Validation/package.mo
@@ -0,0 +1,39 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Pumps.SecondaryPumps.Subsequences;
+package Validation "Collection of validation models"
+
+
+
+annotation (preferredView="info", Documentation(info="
+
+This package contains validation models for the classes in
+
+Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Pumps.ChilledWater.Subsequences.
+
+
+Note that most validation models contain simple input data
+which may not be realistic, but for which the correct
+output can be obtained through an analytic solution.
+The examples plot various outputs, which have been verified against these
+solutions. These model outputs are stored as reference data and
+used for continuous validation whenever models in the library change.
+
+"),
+ Icon(graphics={
+ Rectangle(
+ lineColor={200,200,200},
+ fillColor={248,248,248},
+ fillPattern=FillPattern.HorizontalCylinder,
+ extent={{-100.0,-100.0},{100.0,100.0}},
+ radius=25.0),
+ Rectangle(
+ lineColor={128,128,128},
+ extent={{-100.0,-100.0},{100.0,100.0}},
+ radius=25.0),
+ Polygon(
+ origin={8.0,14.0},
+ lineColor={78,138,73},
+ fillColor={78,138,73},
+ pattern=LinePattern.None,
+ fillPattern=FillPattern.Solid,
+ points={{-58.0,46.0},{42.0,-14.0},{-58.0,-74.0},{-58.0,46.0}})}));
+end Validation;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Pumps/SecondaryPumps/Subsequences/Validation/package.order b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Pumps/SecondaryPumps/Subsequences/Validation/package.order
new file mode 100644
index 00000000000..6cf6638457d
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Pumps/SecondaryPumps/Subsequences/Validation/package.order
@@ -0,0 +1,2 @@
+EnableLag_pumpSpeed
+EnableLead
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Pumps/SecondaryPumps/Subsequences/package.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Pumps/SecondaryPumps/Subsequences/package.mo
new file mode 100644
index 00000000000..136ecf7adaa
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Pumps/SecondaryPumps/Subsequences/package.mo
@@ -0,0 +1,45 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Pumps.SecondaryPumps;
+package Subsequences "Hot water pump control sequences"
+
+
+
+annotation (
+preferredView="info", Documentation(info="
+
+This package contains subsequences for hot water pumps control.
+"),
+Icon(graphics={
+ Rectangle(
+ lineColor={200,200,200},
+ fillColor={248,248,248},
+ fillPattern=FillPattern.HorizontalCylinder,
+ extent={{-100.0,-100.0},{100.0,100.0}},
+ radius=25.0),
+ Rectangle(
+ lineColor={128,128,128},
+ extent={{-100.0,-100.0},{100.0,100.0}},
+ radius=25.0),
+ Ellipse(
+ origin={10.0,10.0},
+ fillColor={76,76,76},
+ pattern=LinePattern.None,
+ fillPattern=FillPattern.Solid,
+ extent={{-80.0,-80.0},{-20.0,-20.0}}),
+ Ellipse(
+ origin={10.0,10.0},
+ pattern=LinePattern.None,
+ fillPattern=FillPattern.Solid,
+ extent={{0.0,-80.0},{60.0,-20.0}}),
+ Ellipse(
+ origin={10.0,10.0},
+ fillColor={128,128,128},
+ pattern=LinePattern.None,
+ fillPattern=FillPattern.Solid,
+ extent={{0.0,0.0},{60.0,60.0}}),
+ Ellipse(
+ origin={10.0,10.0},
+ lineColor={128,128,128},
+ fillColor={255,255,255},
+ fillPattern=FillPattern.Solid,
+ extent={{-80.0,0.0},{-20.0,60.0}})}));
+end Subsequences;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Pumps/SecondaryPumps/Subsequences/package.order b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Pumps/SecondaryPumps/Subsequences/package.order
new file mode 100644
index 00000000000..49635de3cc6
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Pumps/SecondaryPumps/Subsequences/package.order
@@ -0,0 +1,3 @@
+EnableLag_pumpSpeed
+EnableLead
+Validation
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Pumps/SecondaryPumps/Validation/Controller.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Pumps/SecondaryPumps/Validation/Controller.mo
new file mode 100644
index 00000000000..8bc06539057
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Pumps/SecondaryPumps/Validation/Controller.mo
@@ -0,0 +1,606 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Pumps.SecondaryPumps.Validation;
+model Controller
+ "Validate boiler water pump control sequence"
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Pumps.SecondaryPumps.Controller
+ secPumCon(
+ final have_varSecPum=true,
+ final have_secFloSen=true,
+ final nPum=2,
+ final nPumPri=2,
+ final nBoi=2,
+ final nSen=2,
+ final nPum_nominal=2,
+ final minPumSpe=0.1,
+ final maxPumSpe=1,
+ final VHotWat_flow_nominal=0.5,
+ final maxLocDp=5*6894.75,
+ final minLocDp=5*6894.75,
+ final offTimThr=180,
+ final timPer=600,
+ final staCon=-0.03,
+ final relFloHys=0.01,
+ final k=1,
+ final Ti=10,
+ final Td=0.1,
+ final speConTyp=Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Types.SecondaryPumpSpeedControlTypes.remoteDP)
+ "Testing pump configuration 1"
+ annotation (Placement(transformation(extent={{-100,140},{-80,180}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Pumps.SecondaryPumps.Controller
+ secPumCon1(
+ final have_varSecPum=true,
+ final have_secFloSen=true,
+ final nPum=2,
+ final nPumPri=2,
+ final nBoi=2,
+ final nSen=2,
+ final nPum_nominal=2,
+ final minPumSpe=0.1,
+ final maxPumSpe=1,
+ final VHotWat_flow_nominal=0.5,
+ final maxLocDp=10,
+ final minLocDp=5,
+ final offTimThr=180,
+ final timPer=600,
+ final staCon=-0.03,
+ final relFloHys=0.01,
+ final k=1,
+ final Ti=0.5,
+ final Td=0.1,
+ final speConTyp=Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Types.SecondaryPumpSpeedControlTypes.localDP)
+ "Testing pump configuration 2"
+ annotation (Placement(transformation(extent={{200,130},{220,170}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Pumps.SecondaryPumps.Controller
+ secPumCon2(
+ final have_varSecPum=true,
+ final have_secFloSen=false,
+ final nPum=2,
+ final nPumPri=2,
+ final nBoi=2,
+ final nSen=2,
+ final nPum_nominal=2,
+ final minPumSpe=0.1,
+ final maxPumSpe=1,
+ final VHotWat_flow_nominal=0.5,
+ final speLim=0.9,
+ final speLim1=0.99,
+ final speLim2=0.4,
+ final timPer1=300,
+ final timPer2=60,
+ final timPer3=600,
+ final maxLocDp=10,
+ final minLocDp=5,
+ final offTimThr=180,
+ final timPer=600,
+ final staCon=-0.03,
+ final relFloHys=0.01,
+ final k=1,
+ final Ti=0.5,
+ final Td=0.1,
+ final speConTyp=Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Types.SecondaryPumpSpeedControlTypes.remoteDP)
+ "Testing pump configuration 3"
+ annotation (Placement(transformation(extent={{-100,-30},{-80,10}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Pumps.SecondaryPumps.Controller
+ secPumCon3(
+ final have_varSecPum=true,
+ final have_secFloSen=false,
+ final nPum=2,
+ final nPumPri=2,
+ final nBoi=2,
+ final nSen=2,
+ final nPum_nominal=2,
+ final minPumSpe=0.1,
+ final maxPumSpe=1,
+ final VHotWat_flow_nominal=0.5,
+ final speLim=0.9,
+ final speLim1=0.99,
+ final speLim2=0.4,
+ final timPer1=300,
+ final timPer2=60,
+ final timPer3=600,
+ final maxLocDp=10,
+ final minLocDp=5,
+ final offTimThr=180,
+ final timPer=600,
+ final staCon=-0.03,
+ final relFloHys=0.01,
+ final k=1,
+ final Ti=0.5,
+ final Td=0.1,
+ final speConTyp=Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Types.SecondaryPumpSpeedControlTypes.localDP)
+ "Testing pump configuration 4"
+ annotation (Placement(transformation(extent={{200,-50},{220,-10}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Pumps.SecondaryPumps.Controller
+ secPumCon4(
+ final have_varSecPum=false,
+ final nPum=2,
+ final nPumPri=2,
+ final nBoi=2,
+ final nSen=2,
+ final nPum_nominal=2,
+ final minPumSpe=0.1,
+ final maxPumSpe=1,
+ final VHotWat_flow_nominal=0.5,
+ final maxLocDp=10,
+ final minLocDp=5,
+ final offTimThr=180,
+ final timPer=600,
+ final staCon=-0.03,
+ final relFloHys=0.01,
+ final k=1,
+ final Ti=0.5,
+ final Td=0.1) "Testing pump configuration 5"
+ annotation (Placement(transformation(extent={{-100,-230},{-80,-190}})));
+
+protected
+ Buildings.Controls.OBC.CDL.Logical.Sources.Pulse booPul(
+ final width=1,
+ final period=3600,
+ final shift=10)
+ "Boolean pulse"
+ annotation (Placement(transformation(extent={{-260,190},{-240,210}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Pulse pul(
+ final amplitude=2,
+ final width=1,
+ final period=3500,
+ final offset=0,
+ final shift=10)
+ "Real pulse"
+ annotation (Placement(transformation(extent={{-270,150},{-250,170}})));
+
+ Buildings.Controls.OBC.CDL.Conversions.RealToInteger reaToInt
+ "Real to Integer conversion"
+ annotation (Placement(transformation(extent={{-240,150},{-220,170}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Pulse booPul1(
+ final width=1,
+ final period=3600,
+ final shift=10)
+ "Boolean pulse"
+ annotation (Placement(transformation(extent={{50,200},{70,220}})));
+
+ Buildings.Controls.OBC.CDL.Conversions.RealToInteger reaToInt1
+ "Real to Integer conversion"
+ annotation (Placement(transformation(extent={{70,160},{90,180}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Pulse pul1(
+ final amplitude=2,
+ final width=1,
+ final period=3500,
+ final offset=0,
+ final shift=0)
+ "Real pulse"
+ annotation (Placement(transformation(extent={{40,160},{60,180}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Pulse booPul2(
+ final width=0.9,
+ final period=3600,
+ final shift=10)
+ "Boolean pulse"
+ annotation (Placement(transformation(extent={{-260,50},{-240,70}})));
+
+ Buildings.Controls.OBC.CDL.Conversions.RealToInteger reaToInt2
+ "Real to Integer conversion"
+ annotation (Placement(transformation(extent={{-220,10},{-200,30}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Pulse pul2(
+ final amplitude=2,
+ final width=1,
+ final period=3500,
+ final offset=0,
+ final shift=10)
+ "Real pulse"
+ annotation (Placement(transformation(extent={{-260,10},{-240,30}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Pulse booPul3(
+ final width=0.9,
+ final period=3600,
+ final shift=10)
+ "Boolean pulse"
+ annotation (Placement(transformation(extent={{40,30},{60,50}})));
+
+ Buildings.Controls.OBC.CDL.Conversions.RealToInteger reaToInt3
+ "Real to Integer conversion"
+ annotation (Placement(transformation(extent={{80,-10},{100,10}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Pulse pul3(
+ final amplitude=2,
+ final width=1,
+ final period=3500,
+ final offset=0,
+ final shift=0)
+ "Real pulse"
+ annotation (Placement(transformation(extent={{40,-10},{60,10}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Pulse booPul4(
+ final width=1,
+ final period=3600,
+ final shift=10)
+ "Boolean pulse"
+ annotation (Placement(transformation(extent={{-240,-180},{-220,-160}})));
+
+ Buildings.Controls.OBC.CDL.Conversions.RealToInteger reaToInt4
+ "Real to Integer conversion"
+ annotation (Placement(transformation(extent={{-220,-220},{-200,-200}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Pulse pul4(
+ final amplitude=2,
+ final width=1,
+ final period=3500,
+ final offset=0,
+ final shift=0)
+ "Real pulse"
+ annotation (Placement(transformation(extent={{-250,-220},{-230,-200}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Pulse booPul5(
+ final width=0.5,
+ final period=900,
+ final shift=60)
+ "Boolean pulse"
+ annotation (Placement(transformation(extent={{-240,-260},{-220,-240}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Pulse pul5(
+ final amplitude=0.6,
+ final width=0.5,
+ final period=3600,
+ final offset=0.35,
+ final shift=0)
+ "Real pulse"
+ annotation (Placement(transformation(extent={{-260,100},{-240,120}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Pulse pul6(
+ final amplitude=0.6,
+ final width=0.5,
+ final period=3600,
+ final offset=0.35,
+ final shift=0)
+ "Real pulse"
+ annotation (Placement(transformation(extent={{60,90},{80,110}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Pulse pul7(
+ final amplitude=0.6,
+ final width=0.5,
+ final period=3600,
+ final offset=0.35,
+ final shift=0)
+ "Real pulse"
+ annotation (Placement(transformation(extent={{-260,-110},{-240,-90}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Pulse pul8(
+ final amplitude=0.6,
+ final width=0.5,
+ final period=3600,
+ final offset=0.35,
+ final shift=0)
+ "Real pulse"
+ annotation (Placement(transformation(extent={{40,-170},{60,-150}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant conInt[2](
+ final k={2,1})
+ "Pump rotation"
+ annotation (Placement(transformation(extent={{-150,200},{-130,220}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Pre pre1[2](
+ final pre_u_start=fill(false, 2))
+ "Logical pre block"
+ annotation (Placement(transformation(extent={{-60,150},{-40,170}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Sine sin[2](
+ final amplitude=fill(0.5, 2),
+ final freqHz=fill(1/1800, 2),
+ final offset=fill(1, 2))
+ "Sine signal"
+ annotation (Placement(transformation(extent={{-200,120},{-180,140}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Sine sin1(
+ final amplitude=0.1,
+ final freqHz=1/3600,
+ final offset=0.25)
+ "Sine signal"
+ annotation (Placement(transformation(extent={{-200,150},{-180,170}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant conInt1[2](
+ final k={2,1})
+ "Pump rotation"
+ annotation (Placement(transformation(extent={{150,190},{170,210}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Pre pre2[2](
+ final pre_u_start=fill(false, 2))
+ "Logical pre block"
+ annotation (Placement(transformation(extent={{240,140},{260,160}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Sine sin2[2](
+ final amplitude=fill(0.5, 2),
+ final freqHz=fill(1/1800, 2),
+ final offset=fill(1, 2))
+ "Sine signal"
+ annotation (Placement(transformation(extent={{80,130},{100,150}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Sine sin3(
+ final amplitude=0.1,
+ final freqHz=1/3600,
+ final offset=0.25)
+ "Sine signal"
+ annotation (Placement(transformation(extent={{40,130},{60,150}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Sine sin4(
+ final amplitude=5,
+ final freqHz=1/900,
+ final offset=7.5)
+ "Sine signal"
+ annotation (Placement(transformation(extent={{160,70},{180,90}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant conInt2[2](
+ final k={2,1})
+ "Pump rotation"
+ annotation (Placement(transformation(extent={{-150,20},{-130,40}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Pre pre3[2](
+ final pre_u_start=fill(false, 2))
+ "Logical pre block"
+ annotation (Placement(transformation(extent={{-40,-20},{-20,0}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant conInt3[2](
+ final k={2,1})
+ "Pump rotation"
+ annotation (Placement(transformation(extent={{150,10},{170,30}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Pre pre4[2](
+ final pre_u_start=fill(false, 2))
+ "Logical pre block"
+ annotation (Placement(transformation(extent={{240,-40},{260,-20}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant conInt4[2](
+ final k={2,1})
+ "Pump rotation"
+ annotation (Placement(transformation(extent={{-150,-170},{-130,-150}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Pre pre5[2](
+ final pre_u_start=fill(false, 2))
+ "Logical pre block"
+ annotation (Placement(transformation(extent={{-60,-220},{-40,-200}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant con1(
+ final k=1)
+ "Constant Real source"
+ annotation (Placement(transformation(extent={{-190,200},{-170,220}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant con3(
+ final k=1)
+ "Constant Real source"
+ annotation (Placement(transformation(extent={{120,110},{140,130}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant con4(
+ final k=1)
+ "Constant Real source"
+ annotation (Placement(transformation(extent={{-260,-70},{-240,-50}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Sine sin6[2](
+ final amplitude=fill(0.5, 2),
+ final freqHz=fill(1/1800, 2),
+ final offset=fill(1, 2))
+ "Sine signal"
+ annotation (Placement(transformation(extent={{-260,-30},{-240,-10}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Sine sin5(
+ final amplitude=5,
+ final freqHz=1/900,
+ final offset=7.5)
+ "Sine signal"
+ annotation (Placement(transformation(extent={{40,-50},{60,-30}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Sine sin7[2](
+ final amplitude=fill(0.5, 2),
+ final freqHz=fill(1/1800, 2),
+ final offset=fill(1, 2))
+ "Sine signal"
+ annotation (Placement(transformation(extent={{40,-90},{60,-70}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant con6(
+ final k=1)
+ "Constant Real source"
+ annotation (Placement(transformation(extent={{40,-130},{60,-110}})));
+
+equation
+ connect(conInt.y,secPumCon. uPumLeaLag) annotation (Line(points={{-128,210},{-110,
+ 210},{-110,178.2},{-102,178.2}},
+ color={255,127,0}));
+
+ connect(secPumCon.yHotWatPum, pre1.u)
+ annotation (Line(points={{-78,160},{-62,160}}, color={255,0,255}));
+
+ connect(sin1.y,secPumCon. VHotWat_flow) annotation (Line(points={{-178,160},{-124,
+ 160},{-124,162},{-102,162}}, color={0,0,127}));
+
+ connect(sin.y,secPumCon. dpHotWat_remote) annotation (Line(points={{-178,130},
+ {-116,130},{-116,150},{-102,150}}, color={0,0,127}));
+
+ connect(conInt1.y,secPumCon1. uPumLeaLag) annotation (Line(points={{172,200},{
+ 190,200},{190,168.2},{198,168.2}},
+ color={255,127,0}));
+
+ connect(secPumCon1.yHotWatPum, pre2.u)
+ annotation (Line(points={{222,150},{238,150}}, color={255,0,255}));
+
+ connect(sin3.y,secPumCon1. VHotWat_flow) annotation (Line(points={{62,140},{
+ 70,140},{70,156},{160,156},{160,152},{198,152}},
+ color={0,0,127}));
+
+ connect(sin2.y,secPumCon1. dpHotWat_remote) annotation (Line(points={{102,140},
+ {198,140}}, color={0,0,127}));
+
+ connect(sin4.y,secPumCon1. dpHotWat_local) annotation (Line(points={{182,80},{
+ 194,80},{194,144},{198,144}}, color={0,0,127}));
+
+ connect(conInt2.y,secPumCon2. uPumLeaLag) annotation (Line(points={{-128,30},
+ {-110,30},{-110,8.2},{-102,8.2}},
+ color={255,127,0}));
+
+ connect(conInt3.y,secPumCon3. uPumLeaLag) annotation (Line(points={{172,20},{190,
+ 20},{190,-11.8},{198,-11.8}}, color={255,127,0}));
+
+ connect(secPumCon3.yHotWatPum,pre4. u)
+ annotation (Line(points={{222,-30},{238,-30}}, color={255,0,255}));
+
+ connect(conInt4.y,secPumCon4. uPumLeaLag) annotation (Line(points={{-128,-160},
+ {-110,-160},{-110,-191.8},{-102,-191.8}},
+ color={255,127,0}));
+
+ connect(secPumCon4.yHotWatPum,pre5. u)
+ annotation (Line(points={{-78,-210},{-62,-210}},
+ color={255,0,255}));
+
+ connect(con1.y,secPumCon. dpHotWatSet) annotation (Line(points={{-168,210},{-164,
+ 210},{-164,146},{-102,146}}, color={0,0,127}));
+
+ connect(pre1.y,secPumCon. uHotWatPum) annotation (Line(points={{-38,160},{-30,
+ 160},{-30,200},{-114,200},{-114,174},{-102,174}}, color={255,0,
+ 255}));
+
+ connect(pre2.y,secPumCon1. uHotWatPum) annotation (Line(points={{262,150},{270,
+ 150},{270,220},{120,220},{120,164},{198,164}}, color={255,0,255}));
+
+ connect(con3.y,secPumCon1. dpHotWatSet) annotation (Line(points={{142,120},{170,
+ 120},{170,136},{198,136}}, color={0,0,127}));
+
+ connect(pre3.y,secPumCon2. uHotWatPum) annotation (Line(points={{-18,-10},{
+ -10,-10},{-10,60},{-160,60},{-160,4},{-102,4}}, color={255,0,
+ 255}));
+
+ connect(pre4.y,secPumCon3. uHotWatPum) annotation (Line(points={{262,-30},{270,
+ -30},{270,40},{140,40},{140,-16},{198,-16}}, color={255,0,255}));
+
+ connect(pre5.y,secPumCon4. uHotWatPum) annotation (Line(points={{-38,-210},{
+ -30,-210},{-30,-140},{-160,-140},{-160,-196},{-102,-196}},
+ color={255,0,
+ 255}));
+
+ connect(sin6.y,secPumCon2. dpHotWat_remote) annotation (Line(points={{-238,
+ -20},{-102,-20}}, color={0,0,127}));
+
+ connect(con4.y,secPumCon2. dpHotWatSet) annotation (Line(points={{-238,-60},{
+ -140,-60},{-140,-24},{-102,-24}},
+ color={0,0,127}));
+
+ connect(sin5.y,secPumCon3. dpHotWat_local) annotation (Line(points={{62,-40},
+ {150,-40},{150,-36},{198,-36}},
+ color={0,0,127}));
+
+ connect(sin7.y,secPumCon3. dpHotWat_remote) annotation (Line(points={{62,-80},
+ {160,-80},{160,-40},{198,-40}}, color={0,0,127}));
+
+ connect(con6.y,secPumCon3. dpHotWatSet) annotation (Line(points={{62,-120},{
+ 174,-120},{174,-44},{198,-44}},color={0,0,127}));
+
+ connect(booPul.y,secPumCon. uPlaEna) annotation (Line(points={{-238,200},{-200,
+ 200},{-200,190},{-120,190},{-120,170},{-102,170}}, color={255,0,255}));
+
+ connect(reaToInt.u, pul.y)
+ annotation (Line(points={{-242,160},{-248,160}}, color={0,0,127}));
+
+ connect(reaToInt.y,secPumCon. supResReq) annotation (Line(points={{-218,160},{
+ -210,160},{-210,180},{-126,180},{-126,166},{-102,166}}, color={255,
+ 127,0}));
+
+ connect(booPul1.y,secPumCon1. uPlaEna) annotation (Line(points={{72,210},{140,
+ 210},{140,160},{198,160}}, color={255,0,255}));
+
+ connect(pul1.y, reaToInt1.u)
+ annotation (Line(points={{62,170},{68,170}}, color={0,0,127}));
+
+ connect(reaToInt1.y,secPumCon1. supResReq) annotation (Line(points={{92,170},
+ {164,170},{164,156},{198,156}}, color={255,127,0}));
+
+ connect(booPul2.y,secPumCon2. uPlaEna) annotation (Line(points={{-238,60},{
+ -164,60},{-164,0},{-102,0}},
+ color={255,0,255}));
+
+ connect(pul2.y, reaToInt2.u)
+ annotation (Line(points={{-238,20},{-222,20}}, color={0,0,127}));
+
+ connect(reaToInt2.y,secPumCon2. supResReq) annotation (Line(points={{-198,20},
+ {-168,20},{-168,-4},{-102,-4}}, color={255,127,0}));
+
+ connect(booPul3.y,secPumCon3. uPlaEna) annotation (Line(points={{62,40},{134,40},
+ {134,-20},{198,-20}},
+ color={255,0,255}));
+
+ connect(pul3.y, reaToInt3.u)
+ annotation (Line(points={{62,0},{78,0}}, color={0,0,127}));
+
+ connect(reaToInt3.y,secPumCon3. supResReq) annotation (Line(points={{102,0},{
+ 128,0},{128,-24},{198,-24}},color={255,127,0}));
+
+ connect(booPul4.y,secPumCon4. uPlaEna) annotation (Line(points={{-218,-170},{
+ -164,-170},{-164,-200},{-102,-200}},
+ color={255,0,255}));
+
+ connect(pul4.y, reaToInt4.u)
+ annotation (Line(points={{-228,-210},{-222,-210}}, color={0,0,127}));
+
+ connect(reaToInt4.y,secPumCon4. supResReq) annotation (Line(points={{-198,
+ -210},{-180,-210},{-180,-204},{-102,-204}},
+ color={255,127,0}));
+
+ connect(booPul4.y,secPumCon4. uPriPumSta[1]) annotation (Line(points={{-218,
+ -170},{-164,-170},{-164,-213},{-102,-213}},
+ color={255,0,255}));
+
+ connect(booPul5.y,secPumCon4. uPriPumSta[2]) annotation (Line(points={{-218,
+ -250},{-170,-250},{-170,-211},{-102,-211}},
+ color={255,0,255}));
+
+ connect(pul5.y,secPumCon. uMaxSecPumSpeCon) annotation (Line(points={{-238,110},
+ {-110,110},{-110,142},{-102,142}}, color={0,0,127}));
+
+ connect(pul6.y,secPumCon1. uMaxSecPumSpeCon) annotation (Line(points={{82,100},
+ {186,100},{186,132},{198,132}}, color={0,0,127}));
+
+ connect(pul7.y,secPumCon2. uMaxSecPumSpeCon) annotation (Line(points={{-238,
+ -100},{-110,-100},{-110,-28},{-102,-28}},
+ color={0,0,127}));
+
+ connect(pul8.y,secPumCon3. uMaxSecPumSpeCon) annotation (Line(points={{62,-160},
+ {190,-160},{190,-48},{198,-48}}, color={0,0,127}));
+
+ connect(secPumCon2.yHotWatPum, pre3.u)
+ annotation (Line(points={{-78,-10},{-42,-10}}, color={255,0,255}));
+annotation (
+ experiment(
+ StopTime=3600,
+ Interval=0.5,
+ Tolerance=1e-06),
+ __Dymola_Commands(file="modelica://Buildings/Resources/Scripts/Dymola/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Pumps/SecondaryPumps/Validation/Controller.mos"
+ "Simulate and plot"),
+ Documentation(info="
+
+This example validates
+
+Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Pumps.SecondaryPumps.Controller.
+
+", revisions="
+
+-
+September 1, 2020, by Karthik Devaprasad:
+First implementation.
+
+
+"),
+ Icon(coordinateSystem(preserveAspectRatio=false, extent={{-100,-100},{100,100}}),
+ graphics={
+ Ellipse(lineColor = {75,138,73},
+ fillColor={255,255,255},
+ fillPattern = FillPattern.Solid,
+ extent = {{-100,-100},{100,100}}),
+ Polygon(lineColor = {0,0,255},
+ fillColor = {75,138,73},
+ pattern = LinePattern.None,
+ fillPattern = FillPattern.Solid,
+ points = {{-36,60},{64,0},{-36,-60},{-36,60}})}), Diagram(
+ coordinateSystem(preserveAspectRatio=false, extent={{-300,-300},{300,300}})));
+end Controller;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Pumps/SecondaryPumps/Validation/package.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Pumps/SecondaryPumps/Validation/package.mo
new file mode 100644
index 00000000000..97dff2ffbf2
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Pumps/SecondaryPumps/Validation/package.mo
@@ -0,0 +1,38 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Pumps.SecondaryPumps;
+package Validation "Collection of validation models"
+
+
+annotation (preferredView="info", Documentation(info="
+
+This package contains validation models for the classes in
+
+Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Pumps.ChilledWater.
+
+
+Note that most validation models contain simple input data
+which may not be realistic, but for which the correct
+output can be obtained through an analytic solution.
+The examples plot various outputs, which have been verified against these
+solutions. These model outputs are stored as reference data and
+used for continuous validation whenever models in the library change.
+
+"),
+ Icon(graphics={
+ Rectangle(
+ lineColor={200,200,200},
+ fillColor={248,248,248},
+ fillPattern=FillPattern.HorizontalCylinder,
+ extent={{-100.0,-100.0},{100.0,100.0}},
+ radius=25.0),
+ Rectangle(
+ lineColor={128,128,128},
+ extent={{-100.0,-100.0},{100.0,100.0}},
+ radius=25.0),
+ Polygon(
+ origin={8.0,14.0},
+ lineColor={78,138,73},
+ fillColor={78,138,73},
+ pattern=LinePattern.None,
+ fillPattern=FillPattern.Solid,
+ points={{-58.0,46.0},{42.0,-14.0},{-58.0,-74.0},{-58.0,46.0}})}));
+end Validation;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Pumps/SecondaryPumps/Validation/package.order b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Pumps/SecondaryPumps/Validation/package.order
new file mode 100644
index 00000000000..8cba75e31a7
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Pumps/SecondaryPumps/Validation/package.order
@@ -0,0 +1 @@
+Controller
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Pumps/SecondaryPumps/package.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Pumps/SecondaryPumps/package.mo
new file mode 100644
index 00000000000..c3e5c8d4819
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Pumps/SecondaryPumps/package.mo
@@ -0,0 +1,33 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Pumps;
+package SecondaryPumps "Sequences for secondary hot water pump control"
+
+
+annotation (
+preferredView="info", Documentation(info="
+
+This package contains control sequences for hot water pumps.
+The implementations are based on section 5.2.6 Primary hot water pumps,
+in ASHRAE RP-1711 (Draft 6 on July 25, 2019).
+
+"),
+ Icon(graphics={
+ Rectangle(
+ lineColor={200,200,200},
+ fillColor={248,248,248},
+ fillPattern=FillPattern.HorizontalCylinder,
+ extent={{-100.0,-100.0},{100.0,100.0}},
+ radius=25.0),
+ Rectangle(
+ lineColor={128,128,128},
+ extent={{-100.0,-100.0},{100.0,100.0}},
+ radius=25.0),
+ Ellipse(
+ extent={{-66,66},{68,-68}},
+ lineColor={0,0,0},
+ fillColor={255,255,255},
+ fillPattern=FillPattern.Solid), Polygon(
+ points={{0,66},{0,-68},{68,0},{0,66}},
+ lineColor={0,0,0},
+ fillColor={255,0,0},
+ fillPattern=FillPattern.Solid)}));
+end SecondaryPumps;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Pumps/SecondaryPumps/package.order b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Pumps/SecondaryPumps/package.order
new file mode 100644
index 00000000000..9ffbffcb990
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Pumps/SecondaryPumps/package.order
@@ -0,0 +1,3 @@
+Controller
+Subsequences
+Validation
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Pumps/package.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Pumps/package.mo
new file mode 100644
index 00000000000..98b5cd792ee
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Pumps/package.mo
@@ -0,0 +1,47 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant;
+package Pumps "Sequences for condenser water and boiler water pumps control"
+
+
+annotation (
+preferredView="info", Documentation(info="
+
+This package contains control sequences for primary and secondary hot water pumps.
+The implementations are based on sections 5.3.6 and 5.3.7 in ASHRAE RP-1711,
+March 2020 draft.
+
+"),
+Icon(graphics={
+ Rectangle(
+ lineColor={200,200,200},
+ fillColor={248,248,248},
+ fillPattern=FillPattern.HorizontalCylinder,
+ extent={{-100.0,-100.0},{100.0,100.0}},
+ radius=25.0),
+ Rectangle(
+ lineColor={128,128,128},
+ extent={{-100.0,-100.0},{100.0,100.0}},
+ radius=25.0),
+ Ellipse(
+ origin={10.0,10.0},
+ fillColor={76,76,76},
+ pattern=LinePattern.None,
+ fillPattern=FillPattern.Solid,
+ extent={{-80.0,-80.0},{-20.0,-20.0}}),
+ Ellipse(
+ origin={10.0,10.0},
+ pattern=LinePattern.None,
+ fillPattern=FillPattern.Solid,
+ extent={{0.0,-80.0},{60.0,-20.0}}),
+ Ellipse(
+ origin={10.0,10.0},
+ fillColor={128,128,128},
+ pattern=LinePattern.None,
+ fillPattern=FillPattern.Solid,
+ extent={{0.0,0.0},{60.0,60.0}}),
+ Ellipse(
+ origin={10.0,10.0},
+ lineColor={128,128,128},
+ fillColor={255,255,255},
+ fillPattern=FillPattern.Solid,
+ extent={{-80.0,0.0},{-20.0,60.0}})}));
+end Pumps;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Pumps/package.order b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Pumps/package.order
new file mode 100644
index 00000000000..cf1240b15f6
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Pumps/package.order
@@ -0,0 +1,3 @@
+Generic
+PrimaryPumps
+SecondaryPumps
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/SetPoints/CondensationControl.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/SetPoints/CondensationControl.mo
new file mode 100644
index 00000000000..9dfbae29516
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/SetPoints/CondensationControl.mo
@@ -0,0 +1,231 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.SetPoints;
+block CondensationControl
+ "Sequence to calculate setpoint limits for condensation control in non-condesing boilers"
+
+ parameter Boolean have_priOnl = false
+ "True: Primary-only plant; False: Primary-secondary plant";
+
+ parameter Boolean have_varPriPum = true
+ "True: Variable speed pumps in primary loop; False: Constant speed pumps in primary loop"
+ annotation(Evaluate=true,Dialog(enable=(not have_priOnl)));
+
+ parameter Integer nSta=5
+ "Number of stages";
+
+ parameter Real TRetSet(
+ final unit="K",
+ final displayUnit="K",
+ final quantity="ThermodynamicTemperature") = 60
+ "Minimum hot water return temperature for optimal non-condensing boiler performance";
+
+ parameter Real TRetMinAll(
+ final unit="K",
+ final displayUnit="K",
+ final quantity="ThermodynamicTemperature") = 57.2
+ "Minimum allowed hot water return temperature for non-condensing boiler";
+
+ parameter Real minSecPumSpe(
+ final unit="1",
+ final displayUnit="1",
+ final min=0,
+ final max=1) = 0
+ "Minimum secondary pump speed";
+
+ parameter Real minPriPumSpeSta[nSta](
+ final unit="1",
+ final displayUnit="1",
+ final min=0,
+ final max=1) = {0,0,0,0,0}
+ "Vector of minimum primary pump speed for each stage";
+
+ Buildings.Controls.OBC.CDL.Interfaces.IntegerInput uCurSta
+ "Current stage"
+ annotation (Placement(transformation(extent={{-140,-20},{-100,20}}),
+ iconTransformation(extent={{-140,-20},{-100,20}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.IntegerInput uStaTyp[nSta]
+ "Stage type vector"
+ annotation (Placement(transformation(extent={{-140,-90},{-100,-50}}),
+ iconTransformation(extent={{-140,-80},{-100,-40}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput THotWatRet(
+ final unit="K",
+ final displayUnit="K",
+ final quantity="ThermodynamicTemperature")
+ "Measured hot water return temperature"
+ annotation (Placement(transformation(extent={{-140,50},{-100,90}}),
+ iconTransformation(extent={{-140,40},{-100,80}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealOutput yMinBypValPos(
+ final unit="1",
+ final displayUnit="1",
+ final min=0,
+ final max=1) if have_priOnl
+ "Minimum allowed setpoint of bypass valve position"
+ annotation (Placement(transformation(extent={{100,30},{140,70}}),
+ iconTransformation(extent={{100,40},{140,80}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealOutput yMinPriPumSpe(
+ final unit="1",
+ final displayUnit="1",
+ final min=0,
+ final max=1) if (have_varPriPum and not have_priOnl)
+ "Minimum allowed primary pump speed"
+ annotation (Placement(transformation(extent={{100,-20},{140,20}}),
+ iconTransformation(extent={{100,-20},{140,20}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealOutput yMaxSecPumSpe(
+ final unit="1",
+ final displayUnit="1",
+ final min=0,
+ final max=1) if not have_priOnl
+ "Maximum allowed secondary pump speed"
+ annotation (Placement(transformation(extent={{100,-70},{140,-30}}),
+ iconTransformation(extent={{100,-80},{140,-40}})));
+
+protected
+ Buildings.Controls.OBC.CDL.Continuous.Switch swi
+ "Pass 0 regulation signal if stage type is not non-condensing"
+ annotation (Placement(transformation(extent={{-50,40},{-30,60}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant con(
+ final k=0)
+ "Zero source"
+ annotation (Placement(transformation(extent={{-90,20},{-70,40}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.SetPoints.Subsequences.ProportionalRegulator proReg(
+ final TRetSet=TRetSet,
+ final TRetMinAll=TRetMinAll)
+ "Proportional regulator"
+ annotation (Placement(transformation(extent={{-90,60},{-70,80}})));
+
+ Buildings.Controls.OBC.CDL.Routing.RealExtractor extIndSig(
+ final nin=nSta)
+ "Identify stage type for current stage"
+ annotation (Placement(transformation(extent={{-50,-80},{-30,-60}})));
+
+ Buildings.Controls.OBC.CDL.Conversions.IntegerToReal intToRea[nSta]
+ "Integer to Real conversion"
+ annotation (Placement(transformation(extent={{-90,-80},{-70,-60}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.GreaterThreshold greThr(
+ final t=Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Types.BoilerTypes.condensingBoiler)
+ "Identify if current stage is condensing type or non-condensing type"
+ annotation (Placement(transformation(extent={{-10,-80},{10,-60}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.SetPoints.Subsequences.PumpSpeedLimits pumSpeLim(
+ final have_varPriPum=have_varPriPum,
+ final nSta=nSta,
+ final minSecPumSpe=minSecPumSpe,
+ final minPriPumSpeSta=minPriPumSpeSta) if not have_priOnl
+ "Block to calculate pump speed limits"
+ annotation (Placement(transformation(extent={{-10,-10},{10,10}})));
+
+equation
+ connect(THotWatRet, proReg.THotWatRet)
+ annotation (Line(points={{-120,70},{-92,70}},
+ color={0,0,127}));
+
+ connect(yMinBypValPos, yMinBypValPos)
+ annotation (Line(points={{120,50},{120,50}}, color={0,0,127}));
+
+ connect(uStaTyp, intToRea.u)
+ annotation (Line(points={{-120,-70},{-92,-70}},
+ color={255,127,0}));
+
+ connect(intToRea.y, extIndSig.u)
+ annotation (Line(points={{-68,-70},{-52,-70}},
+ color={0,0,127}));
+
+ connect(uCurSta, extIndSig.index) annotation (Line(points={{-120,0},{-60,0},{-60,
+ -90},{-40,-90},{-40,-82}},
+ color={255,127,0}));
+
+ connect(extIndSig.y, greThr.u)
+ annotation (Line(points={{-28,-70},{-12,-70}},
+ color={0,0,127}));
+
+ connect(proReg.yRegSig, swi.u1) annotation (Line(points={{-68,70},{-60,70},{-60,
+ 58},{-52,58}}, color={0,0,127}));
+ connect(greThr.y, swi.u2) annotation (Line(points={{12,-70},{20,-70},{20,-50},
+ {-56,-50},{-56,50},{-52,50}}, color={255,0,255}));
+ connect(swi.y, yMinBypValPos) annotation (Line(points={{-28,50},{120,50}},
+ color={0,0,127}));
+ connect(con.y, swi.u3) annotation (Line(points={{-68,30},{-60,30},{-60,42},{-52,
+ 42}}, color={0,0,127}));
+ connect(swi.y, pumSpeLim.uRegSig) annotation (Line(points={{-28,50},{-20,50},{
+ -20,-5},{-12,-5}}, color={0,0,127}));
+ connect(uCurSta, pumSpeLim.uCurSta) annotation (Line(points={{-120,0},{-60,0},
+ {-60,5},{-12,5}}, color={255,127,0}));
+ connect(pumSpeLim.yMinPriPumSpe, yMinPriPumSpe)
+ annotation (Line(points={{12,5},{30,5},{30,0},{120,0}},color={0,0,127}));
+ connect(pumSpeLim.yMaxSecPumSpe, yMaxSecPumSpe) annotation (Line(points={{12,-5},
+ {30,-5},{30,-50},{120,-50}}, color={0,0,127}));
+ annotation (defaultComponentName=
+ "conSet",
+ Icon(graphics={
+ Rectangle(
+ extent={{-100,100},{100,-100}},
+ lineColor={0,0,0},
+ fillColor={255,255,255},
+ fillPattern=FillPattern.Solid,
+ lineThickness=0.1),
+ Rectangle(
+ extent={{-100,100},{100,-100}},
+ lineColor={28,108,200},
+ fillColor={255,255,255},
+ fillPattern=FillPattern.Solid,
+ lineThickness=5,
+ borderPattern=BorderPattern.Raised),
+ Text(
+ extent={{-120,146},{100,108}},
+ textColor={0,0,255},
+ textString="%name"),
+ Ellipse(
+ extent={{-80,80},{80,-80}},
+ lineColor={28,108,200},
+ fillColor={170,255,213},
+ fillPattern=FillPattern.Solid)},
+ coordinateSystem(
+ preserveAspectRatio=false,
+ extent={{-100,-100},{100,100}})),
+ Diagram(
+ coordinateSystem(preserveAspectRatio=false,
+ extent={{-100,-100},{100,100}})),
+ Documentation(
+ info="
+
+ Block that generates condensation control setpoints according to ASHRAE RP-1711,
+ March, 2020 draft, section 5.3.5.
+
+
+ The sequence calculates the condensation control setpoints for minimum bypass
+ valve position yMinBypValPos
, minimum primary pump speed yMinPriPumSpe
+ and maximum secondary pump speed yMaxSecPumSpe
using the following calculations:
+
+ -
+ Block
proReg
implemented in the class
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.SetPoints.Subsequences.ProportionalRegulator
+ uses the measured hot water return temperature THotWatRet
to generate a regulation signal with P-only control loop.
+
+ -
+ The regulation signal is used as is for
yMinBypValPos
.
+
+ -
+ The regulation signal is used by block
pumSpeLim
implemented in the class
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.SetPoints.Subsequences.PumpSpeedLimits
+ to generate the pump speed limits yMinPriPumSpe
and yMaxSecPumSpe
.
+
+
+ ",
+ revisions="
+
+ -
+ May 18, 2020, by Karthik Devaprasad:
+ First implementation.
+
+
+ "));
+end CondensationControl;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/SetPoints/HotWaterSupplyTemperatureReset.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/SetPoints/HotWaterSupplyTemperatureReset.mo
new file mode 100644
index 00000000000..332be685ed4
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/SetPoints/HotWaterSupplyTemperatureReset.mo
@@ -0,0 +1,445 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.SetPoints;
+block HotWaterSupplyTemperatureReset
+ "Block to calculate temperature setpoint for hot water supply temperature"
+
+ parameter Integer nPum = 2
+ "Number of pumps in the boiler plant loop"
+ annotation(Dialog(group="Plant parameters"));
+
+ parameter Integer nSta = 3
+ "Number of stages in the boiler plant"
+ annotation(Dialog(group="Plant parameters"));
+
+ parameter Integer nBoi = 2
+ "Number of boilers in the plant"
+ annotation(Dialog(group="Plant parameters"));
+
+ parameter Integer nHotWatResReqIgn = 2
+ "Number of hot-water supply temperature reset requests to be ignored"
+ annotation(Dialog(group="Trim-and-Respond Logic parameters"));
+
+ parameter Integer boiTyp[nBoi]={
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Types.BoilerTypes.condensingBoiler,
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Types.BoilerTypes.condensingBoiler}
+ "Boiler type vector"
+ annotation(Dialog(group="Plant parameters"));
+
+ parameter Real TPlaHotWatSetMax(
+ final unit="K",
+ displayUnit="K",
+ final quantity="ThermodynamicTemperature") = 353.15
+ "The maximum allowed hot-water setpoint temperature for the plant"
+ annotation(Dialog(group="Trim-and-Respond Logic parameters"));
+
+ parameter Real TConBoiHotWatSetMax(
+ final unit="K",
+ displayUnit="K",
+ final quantity="ThermodynamicTemperature") = 353.15
+ "The maximum allowed hot water setpoint temperature for condensing boilers"
+ annotation(Dialog(group="Trim-and-Respond Logic parameters"));
+
+ parameter Real TConBoiHotWatSetOff(
+ final unit="K",
+ displayUnit="K",
+ final quantity="TemperatureDifference") = -10
+ "The offset for hot water setpoint temperature for condensing boilers in
+ non-condensing stage type"
+ annotation(Dialog(group="Plant parameters"));
+
+ parameter Real THotWatSetMinNonConBoi(
+ final unit="K",
+ displayUnit="K",
+ final quantity="ThermodynamicTemperature") = 341.48
+ "The minimum allowed hot-water setpoint temperature for non-condensing boilers"
+ annotation(Dialog(group="Trim-and-Respond Logic parameters"));
+
+ parameter Real THotWatSetMinConBoi(
+ final unit="K",
+ displayUnit="K",
+ final quantity="ThermodynamicTemperature") = 305.37
+ "The minimum allowed hot-water setpoint temperature for condensing boilers"
+ annotation(Dialog(group="Trim-and-Respond Logic parameters"));
+
+ parameter Real delTimVal(
+ final unit="s",
+ displayUnit="s",
+ final quantity="Time") = 600
+ "Delay time"
+ annotation(Dialog(group="Trim-and-Respond Logic parameters"));
+
+ parameter Real samPerVal(
+ final unit="s",
+ displayUnit="s",
+ final quantity="Time") = 300
+ "Sample period"
+ annotation(Dialog(group="Trim-and-Respond Logic parameters"));
+
+ parameter Real triAmoVal(
+ final unit="K",
+ displayUnit="K",
+ final quantity="TemperatureDifference") = -2
+ "Setpoint trim value"
+ annotation(Dialog(group="Trim-and-Respond Logic parameters"));
+
+ parameter Real resAmoVal(
+ final unit="K",
+ displayUnit="K",
+ final quantity="TemperatureDifference") = 3
+ "Setpoint respond value"
+ annotation(Dialog(group="Trim-and-Respond Logic parameters"));
+
+ parameter Real maxResVal(
+ final unit="K",
+ displayUnit="K",
+ final quantity="TemperatureDifference") = 7
+ "Setpoint maximum respond value"
+ annotation(Dialog(group="Trim-and-Respond Logic parameters"));
+
+ parameter Real holTimVal(
+ final unit="s",
+ displayUnit="s",
+ final quantity="Time") = 900
+ "Minimum setpoint hold time for stage change process"
+ annotation(Dialog(group="Plant parameters"));
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uStaCha
+ "Signal indicating plant is in the staging process"
+ annotation (Placement(transformation(extent={{-180,-20},{-140,20}}),
+ iconTransformation(extent={{-140,-20},{-100,20}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uHotWatPumSta[nPum]
+ "Status of hot-water pumps"
+ annotation (Placement(transformation(extent={{-180,70},{-140,110}}),
+ iconTransformation(extent={{-140,60},{-100,100}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.IntegerInput nHotWatSupResReq
+ "Number of hot-water supply temperature reset requests"
+ annotation (Placement(transformation(extent={{-180,30},{-140,70}}),
+ iconTransformation(extent={{-140,20},{-100,60}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.IntegerInput uTyp[nSta]
+ "Stage type vector for boiler plant"
+ annotation (Placement(transformation(extent={{-180,-90},{-140,-50}}),
+ iconTransformation(extent={{-140,-60},{-100,-20}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.IntegerInput uCurStaSet
+ "Current stage setpoint index"
+ annotation (Placement(transformation(extent={{-180,-140},{-140,-100}}),
+ iconTransformation(extent={{-140,-100},{-100,-60}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealOutput TPlaHotWatSupSet(
+ final unit="K",
+ displayUnit="K",
+ final quantity="ThermodynamicTemperature")
+ "Hot-water supply temperature setpoint for the plant"
+ annotation (Placement(transformation(extent={{140,-20},{180,20}}),
+ iconTransformation(extent={{100,20},{140,60}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealOutput TBoiHotWatSupSet[nBoi](
+ final unit=fill("K",nBoi),
+ displayUnit=fill("K",nBoi),
+ final quantity=fill("ThermodynamicTemperature",nBoi))
+ "Temperature setpoint vector for boilers"
+ annotation (Placement(transformation(extent={{140,-250},{180,-210}}),
+ iconTransformation(extent={{100,-60},{140,-20}})));
+
+protected
+ Buildings.Controls.OBC.CDL.Continuous.Switch swi1
+ "Select plant setpoint based on stage type"
+ annotation (Placement(transformation(extent={{10,60},{30,80}})));
+
+ Buildings.Controls.OBC.CDL.Routing.RealExtractor extIndSig(nin=nSta)
+ "Extract stage type for current stage"
+ annotation (Placement(transformation(extent={{-80,-80},{-60,-60}})));
+
+ Buildings.Controls.OBC.CDL.Conversions.IntegerToReal intToRea[nSta]
+ "Integer to Real conversion"
+ annotation (Placement(transformation(extent={{-120,-80},{-100,-60}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.GreaterThreshold greThr(
+ final t=Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Types.BoilerTypes.condensingBoiler)
+ "Check for non-condensing stage type"
+ annotation (Placement(transformation(extent={{-40,-80},{-20,-60}})));
+
+ Buildings.Controls.OBC.ASHRAE.G36.Generic.TrimAndRespond triRes(
+ final iniSet=TPlaHotWatSetMax,
+ final minSet=THotWatSetMinNonConBoi,
+ final maxSet=TPlaHotWatSetMax,
+ final delTim=delTimVal,
+ final samplePeriod=samPerVal,
+ final numIgnReq=nHotWatResReqIgn,
+ final triAmo=triAmoVal,
+ final resAmo=resAmoVal,
+ final maxRes=maxResVal)
+ "Trim and respond controller for non-condensing stage type"
+ annotation (Placement(transformation(extent={{-40,80},{-20,100}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Edge edg
+ "Detect start of stage change process"
+ annotation (Placement(transformation(extent={{-40,-10},{-20,10}})));
+
+ Buildings.Controls.OBC.CDL.Logical.TrueHoldWithReset truHol(duration=holTimVal)
+ "Hold setpoint value for duration of stage change"
+ annotation (Placement(transformation(extent={{-40,-40},{-20,-20}})));
+
+ Buildings.Controls.OBC.CDL.Discrete.TriggeredSampler triSam
+ "Retain last value before stage change initiates"
+ annotation (Placement(transformation(extent={{50,40},{70,60}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Switch swi
+ "Logical switch"
+ annotation (Placement(transformation(extent={{100,-10},{120,10}})));
+
+ Buildings.Controls.OBC.CDL.Logical.MultiOr mulOr(
+ final nin=nPum)
+ "Check if any pumps are turned on"
+ annotation (Placement(transformation(extent={{-120,80},{-100,100}})));
+
+ Buildings.Controls.OBC.ASHRAE.G36.Generic.TrimAndRespond triRes1(
+ final iniSet=TPlaHotWatSetMax,
+ final minSet=THotWatSetMinConBoi,
+ final maxSet=TPlaHotWatSetMax,
+ final delTim=delTimVal,
+ final samplePeriod=samPerVal,
+ final numIgnReq=nHotWatResReqIgn,
+ final triAmo=triAmoVal,
+ final resAmo=resAmoVal,
+ final maxRes=maxResVal)
+ "Trim and respond controller for condensing stage type"
+ annotation (Placement(transformation(extent={{-40,40},{-20,60}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant boiTypVec[nBoi](
+ final k=boiTyp)
+ "Boiler type vector"
+ annotation (Placement(transformation(extent={{-120,-260},{-100,-240}})));
+
+ Buildings.Controls.OBC.CDL.Integers.GreaterThreshold greThr1[nBoi](
+ final t=fill(Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Types.BoilerTypes.condensingBoiler,nBoi))
+ "Identify non-condensing boilers in plant"
+ annotation (Placement(transformation(extent={{-80,-260},{-60,-240}})));
+
+ Buildings.Controls.OBC.CDL.Conversions.BooleanToReal booToRea[nBoi](
+ final realTrue=fill(0, nBoi),
+ final realFalse=fill(1, nBoi))
+ "Generate binary vector to identify condensing boilers"
+ annotation (Placement(transformation(extent={{-40,-240},{-20,-220}})));
+
+ Buildings.Controls.OBC.CDL.Conversions.BooleanToReal booToRea1[nBoi](
+ final realTrue=fill(1, nBoi),
+ final realFalse=fill(0, nBoi))
+ "Generate binary vector to identify non-condensing boilers"
+ annotation (Placement(transformation(extent={{-40,-280},{-20,-260}})));
+
+ Buildings.Controls.OBC.CDL.Routing.RealScalarReplicator reaRep(
+ final nout=nBoi)
+ "Convert temperature setpoint into vector"
+ annotation (Placement(transformation(extent={{10,-200},{30,-180}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Multiply pro[nBoi]
+ "Element-wise product"
+ annotation (Placement(transformation(extent={{60,-200},{80,-180}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Switch swi2
+ "Logical Switch"
+ annotation (Placement(transformation(extent={{-40,-200},{-20,-180}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Add add2[nBoi]
+ "Combine setpoint vectors for condensing and non-condensing boilers"
+ annotation (Placement(transformation(extent={{100,-240},{120,-220}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant con(
+ final k=TConBoiHotWatSetMax)
+ "Design setpoint for condensing boilers"
+ annotation (Placement(transformation(extent={{-120,-160},{-100,-140}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.AddParameter addPar(
+ final p=TConBoiHotWatSetOff)
+ "Boiler setpoint for condensing boilers in non-condensing type stage"
+ annotation (Placement(transformation(extent={{-120,-200},{-100,-180}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Min min
+ "Ensure condensing boiler setpoint does not exceed design setpoint"
+ annotation (Placement(transformation(extent={{-80,-180},{-60,-160}})));
+
+ Buildings.Controls.OBC.CDL.Routing.RealScalarReplicator reaRep1(
+ final nout=nBoi)
+ "Convert temperature setpoint into vector"
+ annotation (Placement(transformation(extent={{10,-310},{30,-290}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Multiply pro1[nBoi]
+ "Element-wise product"
+ annotation (Placement(transformation(extent={{60,-280},{80,-260}})));
+
+equation
+ connect(uHotWatPumSta, mulOr.u[1:nPum]) annotation (Line(points={{-160,90},{-122,
+ 90}}, color={255,0,255}));
+ connect(mulOr.y, triRes.uDevSta)
+ annotation (Line(points={{-98,90},{-60,90},{-60,98},{-42,98}},
+ color={255,0,255}));
+ connect(truHol.u, uStaCha)
+ annotation (Line(points={{-42,-30},{-50,-30},{-50,0},{-160,0}},
+ color={255,0,255}));
+ connect(edg.u, uStaCha) annotation (Line(points={{-42,0},{-160,0}},
+ color={255,0,255}));
+ connect(edg.y, triSam.trigger) annotation (Line(points={{-18,0},{60,0},{60,38}},
+ color={255,0,255}));
+ connect(triSam.y, swi.u1)
+ annotation (Line(points={{72,50},{80,50},{80,8},{98,8}}, color={0,0,127}));
+ connect(truHol.y, swi.u2) annotation (Line(points={{-18,-30},{80,-30},{80,0},{
+ 98,0}}, color={255,0,255}));
+ connect(triRes.numOfReq, nHotWatSupResReq) annotation (Line(points={{-42,82},{
+ -50,82},{-50,50},{-160,50}},
+ color={255,127,0}));
+ connect(swi.y, TPlaHotWatSupSet)
+ annotation (Line(points={{122,0},{160,0}}, color={0,0,127}));
+ connect(swi1.y, triSam.u) annotation (Line(points={{32,70},{40,70},{40,50},{48,
+ 50}}, color={0,0,127}));
+ connect(triRes.y, swi1.u1) annotation (Line(points={{-18,90},{0,90},{0,78},{8,
+ 78}}, color={0,0,127}));
+ connect(triRes1.y, swi1.u3)
+ annotation (Line(points={{-18,50},{0,50},{0,62},{8,62}}, color={0,0,127}));
+ connect(triRes1.numOfReq, nHotWatSupResReq) annotation (Line(points={{-42,42},
+ {-50,42},{-50,50},{-160,50}}, color={255,127,0}));
+ connect(triRes1.uDevSta, mulOr.y) annotation (Line(points={{-42,58},{-60,58},{
+ -60,90},{-98,90}}, color={255,0,255}));
+ connect(swi1.y, swi.u3) annotation (Line(points={{32,70},{40,70},{40,-8},{98,-8}},
+ color={0,0,127}));
+ connect(uCurStaSet, extIndSig.index) annotation (Line(points={{-160,-120},{-70,
+ -120},{-70,-82}}, color={255,127,0}));
+ connect(extIndSig.u, intToRea.y)
+ annotation (Line(points={{-82,-70},{-98,-70}}, color={0,0,127}));
+ connect(intToRea.u, uTyp)
+ annotation (Line(points={{-122,-70},{-160,-70}}, color={255,127,0}));
+ connect(extIndSig.y, greThr.u)
+ annotation (Line(points={{-58,-70},{-42,-70}}, color={0,0,127}));
+ connect(greThr.y, swi1.u2) annotation (Line(points={{-18,-70},{-10,-70},{-10,70},
+ {8,70}}, color={255,0,255}));
+ connect(boiTypVec.y, greThr1.u)
+ annotation (Line(points={{-98,-250},{-82,-250}}, color={0,0,127}));
+ connect(booToRea1.u, greThr1.y) annotation (Line(points={{-42,-270},{-50,-270},
+ {-50,-250},{-58,-250}}, color={255,0,255}));
+ connect(booToRea.u, greThr1.y) annotation (Line(points={{-42,-230},{-50,-230},
+ {-50,-250},{-58,-250}}, color={255,0,255}));
+ connect(add2.y, TBoiHotWatSupSet)
+ annotation (Line(points={{122,-230},{160,-230}}, color={0,0,127}));
+ connect(swi2.u2, greThr.y) annotation (Line(points={{-42,-190},{-50,-190},{-50,
+ -100},{-10,-100},{-10,-70},{-18,-70}},
+ color={255,0,255}));
+ connect(swi2.u3, swi.y) annotation (Line(points={{-42,-198},{-46,-198},{-46,-210},
+ {-130,-210},{-130,-130},{130,-130},{130,0},{122,0}},
+ color={0,0,127}));
+ connect(addPar.u, swi.y) annotation (Line(points={{-122,-190},{-130,-190},{-130,
+ -130},{130,-130},{130,0},{122,0}}, color={0,0,127}));
+ connect(min.u1, con.y) annotation (Line(points={{-82,-164},{-90,-164},{-90,-150},
+ {-98,-150}}, color={0,0,127}));
+ connect(min.u2, addPar.y) annotation (Line(points={{-82,-176},{-90,-176},{-90,
+ -190},{-98,-190}}, color={0,0,127}));
+ connect(min.y, swi2.u1) annotation (Line(points={{-58,-170},{-46,-170},{-46,-182},
+ {-42,-182}}, color={0,0,127}));
+ connect(swi2.y, reaRep.u)
+ annotation (Line(points={{-18,-190},{8,-190}},color={0,0,127}));
+ connect(pro.u1, reaRep.y) annotation (Line(points={{58,-184},{50,-184},{50,-190},
+ {32,-190}}, color={0,0,127}));
+ connect(reaRep1.u, swi.y) annotation (Line(points={{8,-300},{-130,-300},{-130,
+ -130},{130,-130},{130,0},{122,0}}, color={0,0,127}));
+ connect(booToRea.y, pro.u2) annotation (Line(points={{-18,-230},{50,-230},{50,
+ -196},{58,-196}}, color={0,0,127}));
+ connect(pro.y, add2.u1) annotation (Line(points={{82,-190},{90,-190},{90,-224},
+ {98,-224}}, color={0,0,127}));
+ connect(reaRep1.y, pro1.u2) annotation (Line(points={{32,-300},{50,-300},{50,-276},
+ {58,-276}}, color={0,0,127}));
+ connect(booToRea1.y, pro1.u1) annotation (Line(points={{-18,-270},{50,-270},{50,
+ -264},{58,-264}}, color={0,0,127}));
+ connect(pro1.y, add2.u2) annotation (Line(points={{82,-270},{90,-270},{90,-236},
+ {98,-236}}, color={0,0,127}));
+
+annotation(defaultComponentName="hotWatSupTemRes",
+ Diagram(coordinateSystem(preserveAspectRatio=false,
+ extent={{-140,-320},{140,120}})),
+ Icon(coordinateSystem(preserveAspectRatio=false,
+ extent={{-100,-100},{100,100}}),
+ graphics={Rectangle(
+ extent={{-100,100},{100,-100}},
+ lineColor={28,108,200},
+ fillColor={255,255,255},
+ fillPattern=FillPattern.Solid),
+ Text(
+ extent={{-50,20},{50,-20}},
+ textColor={28,108,200},
+ fillColor={255,255,255},
+ fillPattern=FillPattern.None,
+ textString="hotWatSupTemRes"),
+ Text(
+ extent={{-100,150},{100,110}},
+ textColor={0,0,255},
+ textString="%name")}),
+ Documentation(info="
+
+Control sequence for hot-water supply temperature setpoint TPlaHotWatSupSet
+for boiler plant loop as per section 5.3.4 in ASHRAE RP-1711, March 2020 draft.
+
+
+-
+The setpoint controller is enabled when any of the hot-water supply pumps
+are proven on
uHotWatPumSta = true
, and disabled otherwise.
+
+-
+When enabled, a Trim-and-Respond logic controller adjusts the supply
+temperature setpoint
TPlaHotWatSupSet
according to the following parameters:
+
+
+
+ Variable | Value | Definition |
+Device | Any hot water pump | Associated device |
+iniSet | TPlaHotWatSetMax | Initial setpoint |
+minSet | THotWatSetMinConBoi for condensing boilers;
THotWatSetMinNonConBoi for non-condensing boilers | Minimum setpoint |
+maxSet | TPlaHotWatSetMax | Maximum setpoint |
+delTim | delTimVal | Delay timer |
+samplePeriod | samPerVal | Time step |
+numIgnReq | nHotWatResReqIgn | Number of ignored requests |
+numOfReq | nHotWatSupResReq | Number of requests |
+triAmo | triAmoVal | Trim amount |
+resAmo | resAmoVal | Respond amount |
+maxRes | maxResVal | Maximum response per time interval |
+
+
+-
+When the plant stage change is initiated
uStaCha=true
, the
+temperature reset shall be disabled and value fixed at its last value for
+the longer of holTimVal
and the time it takes for the plant
+to successfully stage.
+
+-
+When the current stage type
uTyp[uCurStaSet]
is condensing type, the
+condensing boiler setpoint TBoiHotWatSupSet
shall be the plant
+hot water supply setpoint TPlaHotWatSupSet
.
+
+-
+When
uTyp[uCurStaSet]
is non-condensing type,
+
+-
+the non-condensing boiler setpoints in
TBoiHotWatSupSet
shall
+be TPlaHotWatSupSet
.
+
+-
+minimum setpoint
minSet
in the Trim-and-Respond logic is reset to THotWatSetMinNonConBoi
.
+
+-
+condensing boiler setpoints in
TBoiHotWatSupSet
shall be
+lesser of condensing boiler design supply temperature TConBoiHotWatSetMax
,
+and TPlaHotWatSupSet
less an offset of TConBoiHotWatSetOff
,
+ie, TPlaHotWatSupSet
- TConBoiHotWatSetOff
.
+
+
+
+
+",
+revisions="
+
+-
+February 23, 2020, by Karthik Devaprasad:
+First implementation.
+
+
+"));
+end HotWaterSupplyTemperatureReset;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/SetPoints/MinimumFlowSetPoint.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/SetPoints/MinimumFlowSetPoint.mo
new file mode 100644
index 00000000000..3e3d1c94743
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/SetPoints/MinimumFlowSetPoint.mo
@@ -0,0 +1,707 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.SetPoints;
+block MinimumFlowSetPoint "Hot water minimum flow setpoint"
+
+ parameter Integer nBoi(
+ final min=1) = 3
+ "Total number of boilers";
+
+ parameter Integer nSta(
+ final min=1) = 5
+ "Total number of stages";
+
+ parameter Integer staMat[nSta, nBoi] = {{1,0,0},{0,1,0},{1,1,0},{0,1,1},{1,1,1}}
+ "Boiler staging matrix";
+
+ parameter Real minFloSet[nBoi](
+ final unit="m3/s",
+ displayUnit="m3/s",
+ final quantity="VolumeFlowRate",
+ final min=1e-6,
+ final max=maxFloSet) = {0.005, 0.005, 0.005}
+ "Design minimum hot water flow through each boiler";
+
+ parameter Real maxFloSet[nBoi](
+ final unit="m3/s",
+ displayUnit="m3/s",
+ final quantity="VolumeFlowRate",
+ final min=minFloSet) = {0.025, 0.025, 0.025}
+ "Design maximum hot water flow through each boiler";
+
+ parameter Real bypSetRat(
+ final unit="m3/s2",
+ displayUnit="m3/s2",
+ final min=0) = 0.001
+ "Rate at which to reset bypass valve setpoint during stage change";
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uOnOff
+ "Signal indicating stage change with boilers being both enabled and disabled"
+ annotation (Placement(transformation(extent={{-180,-30},{-140,10}}),
+ iconTransformation(extent={{-140,0},{-100,40}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uStaChaPro
+ "Signal indicating completion of stage change process"
+ annotation (Placement(transformation(extent={{-180,-70},{-140,-30}}),
+ iconTransformation(extent={{-140,-40},{-100,0}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.IntegerInput uStaSet
+ "Staging setpoint"
+ annotation (Placement(transformation(extent={{-180,-110},{-140,-70}}),
+ iconTransformation(extent={{-140,-80},{-100,-40}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.IntegerInput uLasDisBoi
+ "Index of boiler being disabled"
+ annotation (Placement(transformation(extent={{-180,10},{-140,50}}),
+ iconTransformation(extent={{-140,40},{-100,80}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealOutput VHotWatMinSet_flow(
+ final unit="m3/s",
+ displayUnit="m3/s",
+ final quantity="VolumeFlowRate")
+ "Hot water minimum flow setpoint"
+ annotation (Placement(transformation(extent={{320,-90},{360,-50}}),
+ iconTransformation(extent={{100,-20},{140,20}})));
+
+protected
+ parameter Integer boiInd[nBoi]={i for i in 1:nBoi}
+ "Boiler index, {1,2,...,n}";
+
+ parameter Integer staInd[nSta]={i for i in 1:nSta}
+ "Stage index, {1,2,...,n}";
+
+ parameter Real minFloSetMat[nSta, nBoi] = {minFloSet[i] for i in 1:nBoi, j in 1:nSta}
+ "Boiler minimum design flowrate expanded for element-wise multiplication
+ with the staging matrix";
+
+ parameter Real maxFloSetMat[nSta, nBoi] = {maxFloSet[i] for i in 1:nBoi, j in 1:nSta}
+ "Boiler maximum design flowrate expanded for element-wise multiplication
+ with the staging matrix";
+
+ Buildings.Controls.OBC.CDL.Continuous.IntegratorWithReset intWitRes
+ "Used to break algebraic loop and sample the minimum flow setpoint at the start
+ of stage change process to use as reference for calculations"
+ annotation (Placement(transformation(extent={{140,-110},{160,-90}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.MultiplyByParameter gai(
+ final k=1/bypSetRat)
+ "Find time required for changing bypass position setpoint"
+ annotation (Placement(transformation(extent={{210,-260},{230,-240}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Subtract sub3
+ "Find difference between new and old setpoints"
+ annotation (Placement(transformation(extent={{230,-210},{250,-190}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Abs abs
+ "Ensure time required is positive"
+ annotation (Placement(transformation(extent={{280,-260},{300,-240}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.AddParameter addPar1(
+ final p=1e-6)
+ "Calculate time required to reset setpoint"
+ annotation (Placement(transformation(extent={{250,-260},{270,-240}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Greater gre(
+ final h=0)
+ "Check if time required for setpoint change has elapsed"
+ annotation (Placement(transformation(extent={{200,-120},{220,-100}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant con[nSta,nBoi](
+ final k=minFloSetMat)
+ "Design minimum boiler flowrate"
+ annotation (Placement(transformation(extent={{-120,-150},{-100,-130}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant con1[nSta,nBoi](
+ final k=maxFloSetMat)
+ "Design maximum boiler flowrate"
+ annotation (Placement(transformation(extent={{-120,-190},{-100,-170}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant con2[nSta,nBoi](
+ final k=staMat)
+ "Boiler staging matrix"
+ annotation (Placement(transformation(extent={{-120,-230},{-100,-210}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Change cha
+ "Detect change in stage setpoint"
+ annotation (Placement(transformation(extent={{-120,-80},{-100,-60}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Latch lat
+ "Set minimum flow setpoint as per 5.3.8.2 if uOnOff=True, else as per 5.3.8.1"
+ annotation (Placement(transformation(extent={{-40,-40},{-20,-20}})));
+
+ Buildings.Controls.OBC.CDL.Logical.And and2
+ "Logical And"
+ annotation (Placement(transformation(extent={{-80,-40},{-60,-20}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Multiply pro[nSta,nBoi]
+ "Element-wise product"
+ annotation (Placement(transformation(extent={{-80,-150},{-60,-130}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Multiply pro1[nSta,nBoi]
+ "Element-wise product"
+ annotation (Placement(transformation(extent={{-80,-190},{-60,-170}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Divide div[nSta,nBoi]
+ "Element-wise division"
+ annotation (Placement(transformation(extent={{-20,-160},{0,-140}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.AddParameter addPar[nSta,nBoi](
+ final p=fill(1e-8,nSta,nBoi))
+ "Prevent divison by zero"
+ annotation (Placement(transformation(extent={{-50,-190},{-30,-170}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.MatrixMax matMax(
+ final rowMax=true,
+ final nRow=nSta,
+ final nCol=nBoi)
+ "Identify maximum flowrate ratio for all boilers operating in stage"
+ annotation (Placement(transformation(extent={{20,-160},{40,-140}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.MatrixGain matGai(
+ final K=staMat)
+ "Sum of maximum flowrates of operating boilers"
+ annotation (Placement(transformation(extent={{-40,-230},{-20,-210}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant con3[nBoi](
+ final k=maxFloSet)
+ "Design maximum boiler flowrate"
+ annotation (Placement(transformation(extent={{-80,-230},{-60,-210}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Multiply pro2
+ "Product of flowrate ratio and maximum flowrate"
+ annotation (Placement(transformation(extent={{140,60},{160,80}})));
+
+ Buildings.Controls.OBC.CDL.Routing.RealExtractor extIndSig(
+ final nin=nSta)
+ "Extract flow ratio of current setpoint during stage-up or stage-down"
+ annotation (Placement(transformation(extent={{60,-60},{80,-40}})));
+
+ Buildings.Controls.OBC.CDL.Routing.RealExtractor extIndSig1(
+ final allowOutOfRange=true,
+ final nin=nSta,
+ final outOfRangeValue=1e-6)
+ "Extract flow ratio of previous setpoint during stage-up"
+ annotation (Placement(transformation(extent={{60,70},{80,90}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Subtract subInt
+ "Previous stage during stage change"
+ annotation (Placement(transformation(extent={{-60,70},{-40,90}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant conInt(
+ final k=1)
+ "Constant Integer source"
+ annotation (Placement(transformation(extent={{-120,60},{-100,80}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Max max
+ "Max flowrate as per 5.3.8.2"
+ annotation (Placement(transformation(extent={{100,90},{120,110}})));
+
+ Buildings.Controls.OBC.CDL.Routing.RealExtractor extIndSig2(
+ final nin=nSta)
+ "Extract max flowrate of current setpoint during stage-up or stage-down"
+ annotation (Placement(transformation(extent={{0,-230},{20,-210}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Add add2
+ "Max flowrate as per 5.3.8.2"
+ annotation (Placement(transformation(extent={{60,30},{80,50}})));
+
+ Buildings.Controls.OBC.CDL.Routing.RealExtractor extIndSig3(
+ final allowOutOfRange=true,
+ final nin=nBoi,
+ final outOfRangeValue=1e-6)
+ "Extract max flowrate of boiler being disabled during stage-up"
+ annotation (Placement(transformation(extent={{-20,40},{0,60}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Switch swi
+ "Pass minimum flow setpoint based on whether stage-up involves a boiler being disabled"
+ annotation (Placement(transformation(extent={{140,0},{160,20}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Multiply pro3
+ "Product of flowrate ratio and maximum flowrate"
+ annotation (Placement(transformation(extent={{92,-100},{112,-80}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Switch swi1
+ "Pass minimum flow setpoint based on whether the plant is being staged-up or staged-down"
+ annotation (Placement(transformation(extent={{290,-80},{310,-60}})));
+
+ Buildings.Controls.OBC.CDL.Logical.And and1
+ "Logical And"
+ annotation (Placement(transformation(extent={{-80,-120},{-60,-100}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Latch lat1
+ "Set minimum flow setpoint as per 5.3.8.2 if uOnOff=True, else as per 5.3.8.1"
+ annotation (Placement(transformation(extent={{-40,-120},{-20,-100}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Latch lat2
+ "Set minimum flow setpoint as per 5.3.8.2 if uOnOff=True, else as per 5.3.8.1"
+ annotation (Placement(transformation(extent={{-80,-80},{-60,-60}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Switch swi2
+ "Pass minimum flow setpoint based on whether stage-down involves a boiler being enabled"
+ annotation (Placement(transformation(extent={{140,-160},{160,-140}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant conInt1(
+ final k=1)
+ "Constant Integer source"
+ annotation (Placement(transformation(extent={{-130,-330},{-110,-310}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Add addInt1
+ "Previous stage during stage change"
+ annotation (Placement(transformation(extent={{-90,-310},{-70,-290}})));
+
+ Buildings.Controls.OBC.CDL.Routing.RealExtractor extIndSig4(
+ final allowOutOfRange=true,
+ final nin=nSta,
+ final outOfRangeValue=1e-6)
+ "Extract flow ratio of previous setpoint during stage-down"
+ annotation (Placement(transformation(extent={{60,-280},{80,-260}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Max max1
+ "Max flowrate as per 5.3.8.2"
+ annotation (Placement(transformation(extent={{100,-260},{120,-240}})));
+
+ Buildings.Controls.OBC.CDL.Routing.RealExtractor extIndSig5(
+ final allowOutOfRange=true,
+ final nin=nBoi,
+ final outOfRangeValue=1e-6)
+ "Extract max flowrate of boiler being disabled during stage-down"
+ annotation (Placement(transformation(extent={{-40,-270},{-20,-250}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Add add1
+ "Max flowrate as per 5.3.8.2"
+ annotation (Placement(transformation(extent={{100,-310},{120,-290}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Multiply pro4
+ "Product of flowrate ratio and maximum flowrate"
+ annotation (Placement(transformation(extent={{140,-280},{160,-260}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Latch lat3
+ "Turn on timer for slow change of setpoint"
+ annotation (Placement(transformation(extent={{200,-50},{220,-30}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Line lin
+ "Change setpoint over a finite amnount of time during stage change"
+ annotation (Placement(transformation(extent={{260,-10},{280,10}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Line lin1
+ "Change setpoint over a finite amnount of time during stage change"
+ annotation (Placement(transformation(extent={{260,-150},{280,-130}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant con4(
+ final k=0)
+ "Constant Real source"
+ annotation (Placement(transformation(extent={{160,100},{180,120}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Timer tim(
+ final t=0)
+ "Timer for change of setpoint"
+ annotation (Placement(transformation(extent={{228,-50},{248,-30}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Pre pre1
+ "Logical pre block"
+ annotation (Placement(transformation(extent={{228,-120},{248,-100}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Or or2
+ "Detect start of change in minimum flow setpoint"
+ annotation (Placement(transformation(extent={{-40,-10},{-20,10}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Switch swi3
+ "Pass new minimum flow setpoint based on whether the plant is being staged-up or staged-down"
+ annotation (Placement(transformation(extent={{190,-210},{210,-190}})));
+
+equation
+ connect(uStaSet, cha.u)
+ annotation (Line(points={{-160,-90},{-128,-90},{-128,-70},{-122,-70}},
+ color={255,127,0}));
+
+ connect(lat.u, and2.y)
+ annotation (Line(points={{-42,-30},{-58,-30}},
+ color={255,0,255}));
+
+ connect(uOnOff, and2.u1)
+ annotation (Line(points={{-160,-10},{-124,-10},{-124,-30},{-82,-30}},
+ color={255,0,255}));
+
+ connect(cha.up, and2.u2) annotation (Line(points={{-98,-64},{-90,-64},{-90,-38},
+ {-82,-38}},color={255,0,255}));
+
+ connect(uStaChaPro, lat.clr) annotation (Line(points={{-160,-50},{-50,-50},{-50,
+ -36},{-42,-36}},
+ color={255,0,255}));
+
+ connect(con.y, pro.u1) annotation (Line(points={{-98,-140},{-90,-140},{-90,-134},
+ {-82,-134}},color={0,0,127}));
+
+ connect(con2.y, pro.u2) annotation (Line(points={{-98,-220},{-90,-220},{-90,-146},
+ {-82,-146}},
+ color={0,0,127}));
+
+ connect(con1.y, pro1.u1) annotation (Line(points={{-98,-180},{-92,-180},{-92,-174},
+ {-82,-174}},
+ color={0,0,127}));
+
+ connect(con2.y, pro1.u2) annotation (Line(points={{-98,-220},{-90,-220},{-90,-186},
+ {-82,-186}},
+ color={0,0,127}));
+
+ connect(pro.y, div.u1)
+ annotation (Line(points={{-58,-140},{-40,-140},{-40,-144},{-22,-144}},
+ color={0,0,127}));
+
+ connect(pro1.y, addPar.u)
+ annotation (Line(points={{-58,-180},{-52,-180}},
+ color={0,0,127}));
+
+ connect(addPar.y, div.u2) annotation (Line(points={{-28,-180},{-24,-180},{-24,
+ -156},{-22,-156}},
+ color={0,0,127}));
+
+ connect(con3.y, matGai.u)
+ annotation (Line(points={{-58,-220},{-42,-220}},
+ color={0,0,127}));
+
+ connect(div.y, matMax.u)
+ annotation (Line(points={{2,-150},{18,-150}},
+ color={0,0,127}));
+
+ connect(matMax.y, extIndSig.u)
+ annotation (Line(points={{42,-150},{52,-150},{52,-50},{58,-50}},
+ color={0,0,127}));
+
+ connect(uStaSet, extIndSig.index) annotation (Line(points={{-160,-90},{70,-90},
+ {70,-62}}, color={255,127,0}));
+
+ connect(matMax.y, extIndSig1.u) annotation (Line(points={{42,-150},{52,-150},{
+ 52,80},{58,80}},
+ color={0,0,127}));
+
+ connect(conInt.y,subInt. u2) annotation (Line(points={{-98,70},{-72,70},{-72,
+ 74},{-62,74}},
+ color={255,127,0}));
+
+ connect(uStaSet,subInt. u1) annotation (Line(points={{-160,-90},{-128,-90},{
+ -128,100},{-72,100},{-72,86},{-62,86}},
+ color={255,127,0}));
+
+ connect(subInt.y, extIndSig1.index) annotation (Line(points={{-38,80},{40,80},
+ {40,60},{70,60},{70,68}},color={255,127,0}));
+
+ connect(matGai.y, extIndSig2.u)
+ annotation (Line(points={{-18,-220},{-2,-220}},
+ color={0,0,127}));
+
+ connect(uStaSet, extIndSig2.index) annotation (Line(points={{-160,-90},{-128,-90},
+ {-128,-240},{10,-240},{10,-232}}, color={255,127,0}));
+
+ connect(con3.y, extIndSig3.u) annotation (Line(points={{-58,-220},{-54,-220},{
+ -54,50},{-22,50}}, color={0,0,127}));
+
+ connect(max.y, pro2.u1) annotation (Line(points={{122,100},{130,100},{130,76},
+ {138,76}}, color={0,0,127}));
+
+ connect(add2.y, pro2.u2) annotation (Line(points={{82,40},{130,40},{130,64},{138,
+ 64}}, color={0,0,127}));
+
+ connect(pro3.y, swi.u3) annotation (Line(points={{114,-90},{120,-90},{120,2},{
+ 138,2}}, color={0,0,127}));
+
+ connect(pro2.y, swi.u1) annotation (Line(points={{162,70},{170,70},{170,30},{130,
+ 30},{130,18},{138,18}}, color={0,0,127}));
+
+ connect(extIndSig.y, pro3.u1) annotation (Line(points={{82,-50},{88,-50},{88,-84},
+ {90,-84}}, color={0,0,127}));
+
+ connect(extIndSig2.y, pro3.u2) annotation (Line(points={{22,-220},{46,-220},{46,
+ -96},{90,-96}}, color={0,0,127}));
+
+ connect(lat.y, swi.u2) annotation (Line(points={{-18,-30},{126,-30},{126,10},{
+ 138,10}}, color={255,0,255}));
+
+ connect(swi1.y, VHotWatMinSet_flow)
+ annotation (Line(points={{312,-70},{340,-70}}, color={0,0,127}));
+
+ connect(cha.down, and1.u1) annotation (Line(points={{-98,-76},{-90,-76},{-90,-110},
+ {-82,-110}}, color={255,0,255}));
+
+ connect(and1.y, lat1.u)
+ annotation (Line(points={{-58,-110},{-42,-110}}, color={255,0,255}));
+
+ connect(uStaChaPro, lat1.clr) annotation (Line(points={{-160,-50},{-50,-50},{-50,
+ -116},{-42,-116}}, color={255,0,255}));
+
+ connect(cha.up, lat2.u) annotation (Line(points={{-98,-64},{-90,-64},{-90,-70},
+ {-82,-70}}, color={255,0,255}));
+
+ connect(cha.down, lat2.clr)
+ annotation (Line(points={{-98,-76},{-82,-76}}, color={255,0,255}));
+
+ connect(lat2.y, swi1.u2)
+ annotation (Line(points={{-58,-70},{288,-70}}, color={255,0,255}));
+
+ connect(lat1.y, swi2.u2) annotation (Line(points={{-18,-110},{126,-110},{126,-150},
+ {138,-150}}, color={255,0,255}));
+
+ connect(uOnOff, and1.u2) annotation (Line(points={{-160,-10},{-124,-10},{-124,
+ -118},{-82,-118}}, color={255,0,255}));
+
+ connect(pro3.y, swi2.u3) annotation (Line(points={{114,-90},{120,-90},{120,-158},
+ {138,-158}}, color={0,0,127}));
+
+ connect(extIndSig3.y, add2.u1) annotation (Line(points={{2,50},{40,50},{40,46},
+ {58,46}}, color={0,0,127}));
+
+ connect(extIndSig2.y, add2.u2) annotation (Line(points={{22,-220},{46,-220},{46,
+ 34},{58,34}}, color={0,0,127}));
+
+ connect(uLasDisBoi, extIndSig3.index)
+ annotation (Line(points={{-160,30},{-10,30},{-10,38}}, color={255,127,0}));
+
+ connect(extIndSig.y, max.u2) annotation (Line(points={{82,-50},{88,-50},{88,94},
+ {98,94}}, color={0,0,127}));
+
+ connect(extIndSig1.y, max.u1) annotation (Line(points={{82,80},{84,80},{84,106},
+ {98,106}}, color={0,0,127}));
+
+ connect(conInt1.y, addInt1.u2) annotation (Line(points={{-108,-320},{-100,-320},
+ {-100,-306},{-92,-306}}, color={255,127,0}));
+
+ connect(uStaSet, addInt1.u1) annotation (Line(points={{-160,-90},{-128,-90},{-128,
+ -294},{-92,-294}}, color={255,127,0}));
+
+ connect(matMax.y, extIndSig4.u) annotation (Line(points={{42,-150},{52,-150},{
+ 52,-270},{58,-270}}, color={0,0,127}));
+
+ connect(addInt1.y, extIndSig4.index) annotation (Line(points={{-68,-300},{70,-300},
+ {70,-282}}, color={255,127,0}));
+
+ connect(extIndSig4.y, max1.u2) annotation (Line(points={{82,-270},{88,-270},{88,
+ -256},{98,-256}}, color={0,0,127}));
+
+ connect(extIndSig.y, max1.u1) annotation (Line(points={{82,-50},{88,-50},{88,-244},
+ {98,-244}}, color={0,0,127}));
+
+ connect(con3.y, extIndSig5.u) annotation (Line(points={{-58,-220},{-54,-220},{
+ -54,-260},{-42,-260}}, color={0,0,127}));
+
+ connect(extIndSig2.y, add1.u1) annotation (Line(points={{22,-220},{46,-220},{46,
+ -294},{98,-294}}, color={0,0,127}));
+
+ connect(extIndSig5.y, add1.u2) annotation (Line(points={{-18,-260},{0,-260},{0,
+ -306},{98,-306}}, color={0,0,127}));
+
+ connect(max1.y, pro4.u1) annotation (Line(points={{122,-250},{130,-250},{130,-264},
+ {138,-264}}, color={0,0,127}));
+
+ connect(add1.y, pro4.u2) annotation (Line(points={{122,-300},{130,-300},{130,-276},
+ {138,-276}}, color={0,0,127}));
+
+ connect(pro4.y, swi2.u1) annotation (Line(points={{162,-270},{166,-270},{166,-170},
+ {132,-170},{132,-142},{138,-142}}, color={0,0,127}));
+
+ connect(uLasDisBoi, extIndSig5.index) annotation (Line(points={{-160,30},{-134,
+ 30},{-134,-280},{-30,-280},{-30,-272}}, color={255,127,0}));
+
+ connect(swi.y, lin.f2) annotation (Line(points={{162,10},{166,10},{166,-8},{258,
+ -8}}, color={0,0,127}));
+ connect(swi2.y, lin1.f2) annotation (Line(points={{162,-150},{254,-150},{254,-148},
+ {258,-148}}, color={0,0,127}));
+ connect(lat3.y, tim.u)
+ annotation (Line(points={{222,-40},{226,-40}}, color={255,0,255}));
+ connect(tim.y, lin.u) annotation (Line(points={{250,-40},{254,-40},{254,0},{258,
+ 0}}, color={0,0,127}));
+ connect(tim.y, lin1.u) annotation (Line(points={{250,-40},{254,-40},{254,-140},
+ {258,-140}}, color={0,0,127}));
+ connect(lin1.y, swi1.u3) annotation (Line(points={{282,-140},{286,-140},{286,-78},
+ {288,-78}}, color={0,0,127}));
+ connect(lin.y, swi1.u1) annotation (Line(points={{282,0},{286,0},{286,-62},{288,
+ -62}}, color={0,0,127}));
+ connect(con4.y, lin.x1) annotation (Line(points={{182,110},{188,110},{188,8},{
+ 258,8}}, color={0,0,127}));
+ connect(con4.y, lin1.x1) annotation (Line(points={{182,110},{188,110},{188,-132},
+ {258,-132}}, color={0,0,127}));
+ connect(pre1.y, lat3.clr) annotation (Line(points={{250,-110},{260,-110},{260,
+ -60},{192,-60},{192,-46},{198,-46}}, color={255,0,255}));
+ connect(uStaChaPro, or2.u2) annotation (Line(points={{-160,-50},{-50,-50},{-50,
+ -8},{-42,-8}}, color={255,0,255}));
+ connect(cha.y, or2.u1) annotation (Line(points={{-98,-70},{-94,-70},{-94,0},{-42,
+ 0}}, color={255,0,255}));
+ connect(or2.y, lat3.u) annotation (Line(points={{-18,0},{100,0},{100,-20},{192,
+ -20},{192,-40},{198,-40}}, color={255,0,255}));
+
+ connect(swi.y, swi3.u1) annotation (Line(points={{162,10},{166,10},{166,-8},{180,
+ -8},{180,-192},{188,-192}}, color={0,0,127}));
+ connect(swi2.y, swi3.u3) annotation (Line(points={{162,-150},{172,-150},{172,-208},
+ {188,-208}}, color={0,0,127}));
+ connect(lat2.y, swi3.u2) annotation (Line(points={{-58,-70},{176,-70},{176,-200},
+ {188,-200}}, color={255,0,255}));
+ connect(pre1.u, gre.y)
+ annotation (Line(points={{226,-110},{222,-110}}, color={255,0,255}));
+ connect(tim.y, gre.u1) annotation (Line(points={{250,-40},{254,-40},{254,-88},
+ {192,-88},{192,-110},{198,-110}}, color={0,0,127}));
+ connect(addPar1.y, abs.u)
+ annotation (Line(points={{272,-250},{278,-250}}, color={0,0,127}));
+ connect(abs.y, lin1.x2) annotation (Line(points={{302,-250},{310,-250},{310,-180},
+ {184,-180},{184,-144},{258,-144}}, color={0,0,127}));
+ connect(abs.y, gre.u2) annotation (Line(points={{302,-250},{310,-250},{310,-180},
+ {184,-180},{184,-118},{198,-118}}, color={0,0,127}));
+ connect(abs.y, lin.x2) annotation (Line(points={{302,-250},{310,-250},{310,-180},
+ {184,-180},{184,-4},{258,-4}}, color={0,0,127}));
+
+ connect(sub3.y, gai.u) annotation (Line(points={{252,-200},{260,-200},{260,-230},
+ {200,-230},{200,-250},{208,-250}}, color={0,0,127}));
+ connect(gai.y, addPar1.u)
+ annotation (Line(points={{232,-250},{248,-250}}, color={0,0,127}));
+ connect(swi3.y, sub3.u1) annotation (Line(points={{212,-200},{224,-200},{224,-194},
+ {228,-194}}, color={0,0,127}));
+ connect(con4.y, intWitRes.u) annotation (Line(points={{182,110},{188,110},{188,
+ -80},{132,-80},{132,-100},{138,-100}}, color={0,0,127}));
+ connect(swi1.y, intWitRes.y_reset_in) annotation (Line(points={{312,-70},{316,
+ -70},{316,-164},{128,-164},{128,-108},{138,-108}}, color={0,0,127}));
+ connect(gre.y, intWitRes.trigger) annotation (Line(points={{222,-110},{224,-110},
+ {224,-124},{150,-124},{150,-112}}, color={255,0,255}));
+ connect(intWitRes.y, lin.f1) annotation (Line(points={{162,-100},{172,-100},{172,
+ 4},{258,4}}, color={0,0,127}));
+ connect(intWitRes.y, lin1.f1) annotation (Line(points={{162,-100},{172,-100},{
+ 172,-136},{258,-136}}, color={0,0,127}));
+ connect(intWitRes.y, sub3.u2) annotation (Line(points={{162,-100},{172,-100},{
+ 172,-136},{220,-136},{220,-206},{228,-206}}, color={0,0,127}));
+annotation (
+ defaultComponentName="minBoiFloSet",
+ Icon(coordinateSystem(extent={{-100,-100},{100,100}}),
+ graphics={
+ Rectangle(
+ extent={{-100,-100},{100,100}},
+ lineColor={0,0,127},
+ fillColor={210,210,210},
+ fillPattern=FillPattern.Solid,
+ borderPattern=BorderPattern.Raised),
+ Text(
+ extent={{-120,146},{100,108}},
+ textColor={0,0,255},
+ textString="%name"),
+ Rectangle(extent={{-36,42},{0,28}}, lineColor={28,108,200}),
+ Rectangle(extent={{-36,28},{0,14}}, lineColor={28,108,200}),
+ Rectangle(extent={{-36,14},{0,0}}, lineColor={28,108,200}),
+ Rectangle(extent={{-36,0},{0,-14}}, lineColor={28,108,200}),
+ Rectangle(extent={{-36,-14},{0,-28}}, lineColor={28,108,200}),
+ Text(
+ extent={{-32,38},{-12,32}},
+ textColor={28,108,200},
+ textString="Stage #"),
+ Text(
+ extent={{-30,24},{-10,18}},
+ textColor={28,108,200},
+ textString="0"),
+ Text(
+ extent={{-30,10},{-10,4}},
+ textColor={28,108,200},
+ textString="1"),
+ Text(
+ extent={{-30,-4},{-10,-10}},
+ textColor={28,108,200},
+ textString="2"),
+ Rectangle(extent={{-36,-28},{0,-42}}, lineColor={28,108,200}),
+ Text(
+ extent={{-30,-18},{-10,-24}},
+ textColor={28,108,200},
+ textString="..."),
+ Text(
+ extent={{-30,-32},{-10,-38}},
+ textColor={28,108,200},
+ textString="n"),
+ Rectangle(extent={{2,42},{38,28}}, lineColor={28,108,200}),
+ Rectangle(extent={{2,28},{38,14}}, lineColor={28,108,200}),
+ Rectangle(extent={{2,14},{38,0}}, lineColor={28,108,200}),
+ Rectangle(extent={{2,0},{38,-14}}, lineColor={28,108,200}),
+ Rectangle(extent={{2,-14},{38,-28}}, lineColor={28,108,200}),
+ Text(
+ extent={{8,38},{34,32}},
+ textColor={28,108,200},
+ textString="Min flow"),
+ Text(
+ extent={{6,24},{34,18}},
+ textColor={28,108,200},
+ textString="minFloSet[1]"),
+ Rectangle(extent={{2,-28},{38,-42}}, lineColor={28,108,200}),
+ Text(
+ extent={{8,-18},{28,-24}},
+ textColor={28,108,200},
+ textString="..."),
+ Text(
+ extent={{6,10},{34,4}},
+ textColor={28,108,200},
+ textString="minFloSet[2]"),
+ Text(
+ extent={{6,-32},{34,-38}},
+ textColor={28,108,200},
+ textString="minFloSet[n]"),
+ Text(
+ extent={{6,-4},{34,-10}},
+ textColor={28,108,200},
+ textString="minFloSet[3]")}),
+ Diagram(coordinateSystem(preserveAspectRatio=false,
+ extent={{-140,-340},{320,140}})),
+ Documentation(info="
+
+Block that outputs hot water minimum flow setpoint for primary-only plants with
+a minimum flow bypass valve, according to ASHRAE RP-1711, March, 2020 draft,
+sections 5.3.8.1 and 5.3.8.2.
+
+
+-
+For plants with parallel boilers, bypass valve shall modulate to maintain minimum
+flow as measured by the hot water flow meter at a setpoint
VHotWatMinSet_flow
+that ensures minimum flow through all operating boilers, as follows:
+
+-
+For the operating boilers in current stage, identify the boiler with the
+highest ratio of design minimum flowrate
minFloSet
to design maximum
+flowrate maxFloSet
.
+
+-
+Calculate
VHotWatMinSet_flow
as the highest ratio multiplied by the sum
+of maxFloSet
for the operating boilers.
+
+
+
+
+ Boiler |
+ Minimum flow |
+ Maximum flow |
+
+
+1 |
+minFloSet [1] |
+maxFloSet [1] |
+
+
+2 |
+minFloSet [2] |
+maxFloSet [2] |
+
+
+... |
+... |
+... |
+
+
+
+
+-
+If there is any stage change requiring a boiler on and another boiler off,
+
VHotWatMinSet_flow
shall temporarily change to account for the
+minFloSet
of both the boiler to be enabled and to be disabled
+prior to starting the newly enabled boiler.
+
+
+
+Note that when there is a stage change requiring a change in VHotWatMinSet_flow
,
+the change should be slowly made at a rate bypSetRat
.
+
+", revisions="
+
+-
+September 09, 2020, by Karthik Devaprasad:
+First implementation.
+
+
+"));
+end MinimumFlowSetPoint;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/SetPoints/Subsequences/ProportionalRegulator.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/SetPoints/Subsequences/ProportionalRegulator.mo
new file mode 100644
index 00000000000..f30484653ce
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/SetPoints/Subsequences/ProportionalRegulator.mo
@@ -0,0 +1,127 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.SetPoints.Subsequences;
+block ProportionalRegulator
+ "Sequence to calculate regulation signal with measured return temperature as input"
+
+ parameter Real TRetSet(
+ final unit="K",
+ final displayUnit="K",
+ final quantity="ThermodynamicTemperature") = 60
+ "Minimum hot water return temperature for optimal non-condensing boiler performance";
+
+ parameter Real TRetMinAll(
+ final unit="K",
+ final displayUnit="K",
+ final quantity="ThermodynamicTemperature") = 57.2
+ "Minimum allowed hot water return temperature for non-condensing boiler";
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput THotWatRet(
+ final unit="K",
+ final displayUnit="K",
+ final quantity="ThermodynamicTemperature")
+ "Measured hot water return temperature"
+ annotation (Placement(transformation(extent={{-140,-20},{-100,20}}),
+ iconTransformation(extent={{-140,-20},{-100,20}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealOutput yRegSig(
+ final unit="1",
+ final displayUnit="1",
+ final min=0,
+ final max=1)
+ "Regulation signal from P-only loop for condensation control"
+ annotation (Placement(transformation(extent={{100,-20},{140,20}}),
+ iconTransformation(extent={{100,-20},{140,20}})));
+
+protected
+ Buildings.Controls.OBC.CDL.Continuous.Subtract sub
+ "Compare minimum return temperature setpoint to measured return temperature"
+ annotation (Placement(transformation(extent={{-60,-10},{-40,10}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant con(
+ final k=TRetSet)
+ "Constant signal source for minimum return temperature setpoint"
+ annotation (Placement(transformation(extent={{-90,30},{-70,50}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Limiter lim(
+ final uMax=TRetSet - TRetMinAll,
+ final uMin=0)
+ "Limit input for calculating control signal"
+ annotation (Placement(transformation(extent={{-10,-10},{10,10}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.MultiplyByParameter gai(
+ final k=1/(TRetSet - TRetMinAll))
+ "Calculate control signal"
+ annotation (Placement(transformation(extent={{40,-10},{60,10}})));
+
+equation
+
+ connect(lim.y, gai.u)
+ annotation (Line(points={{12,0},{38,0}}, color={0,0,127}));
+
+ connect(gai.y, yRegSig)
+ annotation (Line(points={{62,0},{120,0}}, color={0,0,127}));
+
+ connect(THotWatRet, sub.u2) annotation (Line(points={{-120,0},{-80,0},{-80,-6},
+ {-62,-6}}, color={0,0,127}));
+ connect(con.y, sub.u1) annotation (Line(points={{-68,40},{-66,40},{-66,6},{-62,
+ 6}}, color={0,0,127}));
+ connect(sub.y, lim.u)
+ annotation (Line(points={{-38,0},{-12,0}}, color={0,0,127}));
+ annotation (defaultComponentName=
+ "proReg",
+ Icon(graphics={
+ Rectangle(
+ extent={{-100,100},{100,-100}},
+ lineColor={0,0,0},
+ fillColor={255,255,255},
+ fillPattern=FillPattern.Solid,
+ lineThickness=0.1),
+ Rectangle(
+ extent={{-100,100},{100,-100}},
+ lineColor={28,108,200},
+ fillColor={255,255,255},
+ fillPattern=FillPattern.Solid,
+ lineThickness=5,
+ borderPattern=BorderPattern.Raised),
+ Text(
+ extent={{-120,146},{100,108}},
+ textColor={0,0,255},
+ textString="%name"),
+ Ellipse(
+ extent={{-80,80},{80,-80}},
+ lineColor={28,108,200},
+ fillColor={170,255,213},
+ fillPattern=FillPattern.Solid)},
+ coordinateSystem(
+ preserveAspectRatio=false,
+ extent={{-100,-100},{100,100}})),
+ Diagram(
+ coordinateSystem(preserveAspectRatio=false,
+ extent={{-100,-100},{100,100}})),
+ Documentation(info="
+
+Block that generates proportional regulation signal for condensation control
+in non-condensing boilers according to RP-1711, March, 2020 draft, section
+5.3.5.
+
+
+The minimum bypass valve position yProReg
is calculated
+as follows:
+
+
+-
+The measured hot-water return temperature
THotWatRet
is compared
+to the minimum hot water return temperature for optimal operation TRetSet
,
+with the output yProReg
varying linearly from 0% at
+TRetSet
to 100% at TRetMinAll
.
+
+
+",
+revisions="
+
+-
+July 21, 2020, by Karthik Devaprasad:
+First implementation.
+
+
+"));
+end ProportionalRegulator;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/SetPoints/Subsequences/PumpSpeedLimits.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/SetPoints/Subsequences/PumpSpeedLimits.mo
new file mode 100644
index 00000000000..29fdfd0731a
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/SetPoints/Subsequences/PumpSpeedLimits.mo
@@ -0,0 +1,271 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.SetPoints.Subsequences;
+block PumpSpeedLimits
+ "Sequence to calculate pump speed limits from regulation signal"
+
+ parameter Boolean have_varPriPum = true
+ "True: Variable speed pumps in primary loop; False: Constant speed pumps in primary loop";
+
+ parameter Integer nSta = 5
+ "Number of stages"
+ annotation(Evaluate=true,Dialog(enable=have_varPriPum));
+
+ parameter Real minSecPumSpe(
+ final unit="1",
+ final displayUnit="1",
+ final min=0,
+ final max=1) = 0
+ "Minimum secondary pump speed";
+
+ parameter Real minPriPumSpeSta[nSta](
+ final unit="1",
+ final displayUnit="1",
+ final min=0,
+ final max=1) = {0,0,0,0,0}
+ "Vector of minimum primary pump speed for each stage"
+ annotation(Evaluate=true,Dialog(enable=have_varPriPum));
+
+ Buildings.Controls.OBC.CDL.Interfaces.IntegerInput uCurSta if have_varPriPum
+ "Current stage"
+ annotation (Placement(transformation(extent={{-140,30},{-100,70}}),
+ iconTransformation(extent={{-140,30},{-100,70}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput uRegSig(
+ final unit="K",
+ final displayUnit="K",
+ final quantity="ThermodynamicTemperature")
+ "Regulation signal from proportional regulator"
+ annotation (Placement(transformation(extent={{-140,-20},{-100,20}}),
+ iconTransformation(extent={{-140,-70},{-100,-30}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealOutput yMinPriPumSpe(
+ final unit="1",
+ final displayUnit="1",
+ final min=0,
+ final max=1) if have_varPriPum
+ "Minimum allowed primary pump speed"
+ annotation (Placement(transformation(extent={{100,10},{140,50}}),
+ iconTransformation(extent={{100,30},{140,70}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealOutput yMaxSecPumSpe(
+ final unit="1",
+ final displayUnit="1",
+ final min=0,
+ final max=1)
+ "Maximum allowed secondary pump speed"
+ annotation (Placement(transformation(extent={{100,-20},{140,20}}),
+ iconTransformation(extent={{100,-70},{140,-30}})));
+
+protected
+ Buildings.Controls.OBC.CDL.Continuous.MultiplyByParameter gai2(
+ final k=-1) if have_varPriPum
+ "Invert signal for subtraction"
+ annotation (Placement(transformation(extent={{-20,70},{0,90}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.AddParameter addPar2(
+ final p=-0.5) if have_varPriPum
+ "Extract secondary pump signal from regulation signal"
+ annotation (Placement(transformation(extent={{-60,-10},{-40,10}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Limiter lim1(
+ final uMax=0.5,
+ final uMin=0) if have_varPriPum
+ "Limit signal between 0 and 0.5"
+ annotation (Placement(transformation(extent={{-30,-10},{-10,10}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.MultiplyByParameter gai1(
+ final k=2) if have_varPriPum
+ "Multiply signal by 2"
+ annotation (Placement(transformation(extent={{0,-10},{20,10}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.AddParameter addPar3(
+ final p=1) if have_varPriPum
+ "Generate secondary pump setpoint signal from regulation signal"
+ annotation (Placement(transformation(extent={{60,-10},{80,10}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.AddParameter addPar(
+ final p=1) if not have_varPriPum
+ "Generate secondary pump setpoint signal from regulation signal"
+ annotation (Placement(transformation(extent={{60,-50},{80,-30}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Limiter lim2(
+ final uMax=1,
+ final uMin=0) if not have_varPriPum
+ "Limit signal between 0 and 1"
+ annotation (Placement(transformation(extent={{-30,-50},{-10,-30}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Limiter lim(
+ final uMax=0.5,
+ final uMin=0) if have_varPriPum
+ "Limit signal between 0 and 0.5"
+ annotation (Placement(transformation(extent={{-60,20},{-40,40}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.MultiplyByParameter gai(
+ final k=2) if have_varPriPum
+ "Multiply signal by 2"
+ annotation (Placement(transformation(extent={{-30,20},{-10,40}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Multiply pro if have_varPriPum
+ "Normalize regulation signal in terms of pump speed"
+ annotation (Placement(transformation(extent={{0,20},{20,40}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Add add2 if have_varPriPum
+ "Add minimum pump speed value to normalized regulation signal"
+ annotation (Placement(transformation(extent={{30,20},{50,40}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.AddParameter addPar1(
+ final p=1) if have_varPriPum
+ "Subtract minimum primary pump speed from 1"
+ annotation (Placement(transformation(extent={{20,70},{40,90}})));
+
+ Buildings.Controls.OBC.CDL.Routing.RealExtractor extIndSig1(
+ final nin=nSta) if have_varPriPum
+ "Identify minimum primary pump speed for current stage"
+ annotation (Placement(transformation(extent={{-60,70},{-40,90}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant con2[nSta](
+ final k=minPriPumSpeSta) if have_varPriPum
+ "Source signal for B-MinPriPumpSpdStage"
+ annotation (Placement(transformation(extent={{-90,70},{-70,90}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.MultiplyByParameter gai3(
+ final k=minSecPumSpe - 1) if have_varPriPum
+ "Normalize signal for subtraction"
+ annotation (Placement(transformation(extent={{30,-10},{50,10}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.MultiplyByParameter gai4(
+ final k=minSecPumSpe - 1) if not have_varPriPum
+ "Normalize signal for subtraction"
+ annotation (Placement(transformation(extent={{20,-50},{40,-30}})));
+
+equation
+
+ connect(uRegSig, addPar2.u) annotation (Line(points={{-120,0},{-62,0}},
+ color={0,0,127}));
+
+ connect(addPar2.y, lim1.u)
+ annotation (Line(points={{-38,0},{-32,0}}, color={0,0,127}));
+
+ connect(lim1.y, gai1.u)
+ annotation (Line(points={{-8,0},{-2,0}}, color={0,0,127}));
+
+ connect(addPar3.y, yMaxSecPumSpe) annotation (Line(points={{82,0},{120,0}},
+ color={0,0,127}));
+
+ connect(addPar.y, yMaxSecPumSpe) annotation (Line(points={{82,-40},{90,-40},{90,
+ 0},{120,0}}, color={0,0,127}));
+
+ connect(uRegSig, lim2.u) annotation (Line(points={{-120,0},{-90,0},{-90,-40},{
+ -32,-40}}, color={0,0,127}));
+
+ connect(uRegSig, lim.u) annotation (Line(points={{-120,0},{-90,0},{-90,30},{-62,
+ 30}}, color={0,0,127}));
+
+ connect(lim.y, gai.u)
+ annotation (Line(points={{-38,30},{-32,30}}, color={0,0,127}));
+
+ connect(con2.y, extIndSig1.u)
+ annotation (Line(points={{-68,80},{-62,80}}, color={0,0,127}));
+
+ connect(add2.u2, pro.y) annotation (Line(points={{28,24},{26,24},{26,30},{22,30}},
+ color={0,0,127}));
+
+ connect(gai.y, pro.u2) annotation (Line(points={{-8,30},{-6,30},{-6,24},{-2,24}},
+ color={0,0,127}));
+
+ connect(uCurSta, extIndSig1.index)
+ annotation (Line(points={{-120,50},{-50,50},{-50,68}}, color={255,127,0}));
+
+ connect(add2.y, yMinPriPumSpe)
+ annotation (Line(points={{52,30},{120,30}}, color={0,0,127}));
+
+ connect(addPar1.y, pro.u1) annotation (Line(points={{42,80},{50,80},{50,66},{-6,
+ 66},{-6,36},{-2,36}},
+ color={0,0,127}));
+ connect(extIndSig1.y, add2.u1) annotation (Line(points={{-38,80},{-36,80},{
+ -36,60},{26,60},{26,36},{28,36}}, color={0,0,127}));
+ connect(extIndSig1.y, gai2.u)
+ annotation (Line(points={{-38,80},{-22,80}}, color={0,0,127}));
+ connect(gai2.y, addPar1.u)
+ annotation (Line(points={{2,80},{18,80}}, color={0,0,127}));
+ connect(gai1.y, gai3.u)
+ annotation (Line(points={{22,0},{28,0}}, color={0,0,127}));
+ connect(gai3.y, addPar3.u)
+ annotation (Line(points={{52,0},{58,0}}, color={0,0,127}));
+ connect(lim2.y, gai4.u)
+ annotation (Line(points={{-8,-40},{18,-40}}, color={0,0,127}));
+ connect(gai4.y, addPar.u)
+ annotation (Line(points={{42,-40},{58,-40}}, color={0,0,127}));
+ annotation (defaultComponentName="pumSpeLim",
+ Icon(graphics={
+ Rectangle(
+ extent={{-100,100},{100,-100}},
+ lineColor={0,0,0},
+ fillColor={255,255,255},
+ fillPattern=FillPattern.Solid,
+ lineThickness=0.1),
+ Rectangle(
+ extent={{-100,100},{100,-100}},
+ lineColor={28,108,200},
+ fillColor={255,255,255},
+ fillPattern=FillPattern.Solid,
+ lineThickness=5,
+ borderPattern=BorderPattern.Raised),
+ Text(
+ extent={{-120,146},{100,108}},
+ textColor={0,0,255},
+ textString="%name"),
+ Ellipse(
+ extent={{-80,80},{80,-80}},
+ lineColor={28,108,200},
+ fillColor={170,255,213},
+ fillPattern=FillPattern.Solid)},
+ coordinateSystem(
+ preserveAspectRatio=false,
+ extent={{-100,-100},{100,100}})),
+ Diagram(
+ coordinateSystem(preserveAspectRatio=false,
+ extent={{-100,-100},{100,100}})),
+ Documentation(
+info="
+
+Block that generates pump speed limits for condensation control
+in non-condensing boilers according to RP-1711, March, 2020 draft, sections
+5.3.5.3, 5.3.5.4, 5.3.5.5 and 5.3.5.6.
+
+
+The maximum allowed secondary pump speed yMaxSecPumSpe
is calculated
+as follows:
+
+
+-
+if the primary pumps are constant speed
have_varPriPum=false
,
+yMaxSecPumSpe
is reset from 100% pump speed at 0% of regulation
+signal uRegSig
to minimum pump speed minSecPumSpe
+at 100% of uRegSig
.
+
+-
+if the primary pumps are variable speed
have_varPriPum=true
,
+yMaxSecPumSpe
is reset from 100% pump speed at 50% of uRegSig
+to minSecPumSpe
at 100% of uRegSig
.
+
+
+
+If have_varPriPum=true
, the minimum allowed primary pump speed
+yMinPriPumSpe
is calculated as follows:
+
+
+-
+
yMinPriPumSpe
is reset from minPriPumSpeSta
at 0%
+of uRegSig
to 100% pump speed at 100% of uRegSig
.
+
+
+",
+revisions="
+
+-
+July 22, 2020, by Karthik Devaprasad:
+First implementation.
+
+
+"));
+end PumpSpeedLimits;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/SetPoints/Subsequences/Validation/ProportionalRegulator.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/SetPoints/Subsequences/Validation/ProportionalRegulator.mo
new file mode 100644
index 00000000000..266d5451f24
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/SetPoints/Subsequences/Validation/ProportionalRegulator.mo
@@ -0,0 +1,58 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.SetPoints.Subsequences.Validation;
+model ProportionalRegulator
+ "Validation model for ProportionalRegulator sequence"
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.SetPoints.Subsequences.ProportionalRegulator
+ proReg(
+ final TRetSet=60,
+ final TRetMinAll=57.2)
+ "Test model for ProportionalRegulator"
+ annotation (Placement(transformation(extent={{-10,-10},{10,10}})));
+
+protected
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Sine sin(
+ final amplitude=5,
+ final freqHz=1/60,
+ final offset=60)
+ "Sine input"
+ annotation (Placement(transformation(extent={{-50,-10},{-30,10}})));
+
+equation
+ connect(sin.y, proReg.THotWatRet)
+ annotation (Line(points={{-28,0},{-12,0}}, color={0,0,127}));
+
+ annotation (
+ Icon(coordinateSystem(preserveAspectRatio=false),
+ graphics={Ellipse(
+ lineColor = {75,138,73},
+ fillColor={255,255,255},
+ fillPattern = FillPattern.Solid,
+ extent={{-100,-100},{100,100}}),
+ Polygon(
+ lineColor = {0,0,255},
+ fillColor = {75,138,73},
+ pattern = LinePattern.None,
+ fillPattern = FillPattern.Solid,
+ points={{-36,60},{64,0},{-36,-60},{-36,60}})}),
+ Diagram(coordinateSystem(preserveAspectRatio=false)),
+ experiment(
+ StopTime=60,
+ Interval=1,
+ Tolerance=1e-06),
+ __Dymola_Commands(file="./Resources/Scripts/Dymola/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/SetPoints/Subsequences/Validation/ProportionalRegulator.mos"
+ "Simulate and plot"),
+ Documentation(info="
+
+ This example validates
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.SetPoints.Subsequences.ProportionalRegulator.
+
+ ", revisions="
+
+ -
+ July 21, 2020, by Karthik Devaprasad:
+ First implementation.
+
+
+ "));
+end ProportionalRegulator;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/SetPoints/Subsequences/Validation/PumpSpeedLimits.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/SetPoints/Subsequences/Validation/PumpSpeedLimits.mo
new file mode 100644
index 00000000000..361b18c0455
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/SetPoints/Subsequences/Validation/PumpSpeedLimits.mo
@@ -0,0 +1,78 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.SetPoints.Subsequences.Validation;
+model PumpSpeedLimits
+ "Validation model for PumpSpeedLimits sequence"
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.SetPoints.Subsequences.PumpSpeedLimits
+ pumSpeLim(
+ final have_varPriPum=true,
+ final nSta=1,
+ final minSecPumSpe=0.1,
+ final minPriPumSpeSta={0.2})
+ "Testing scenario with variable primary pumps"
+ annotation (Placement(transformation(extent={{10,10},{30,30}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.SetPoints.Subsequences.PumpSpeedLimits
+ pumSpeLim1(
+ final have_varPriPum=false,
+ final nSta=1,
+ final minSecPumSpe=0.1,
+ final minPriPumSpeSta={0.2})
+ "Testing scenario with fixed-speed primary pumps"
+ annotation (Placement(transformation(extent={{10,-30},{30,-10}})));
+
+protected
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Sine sin(
+ final amplitude=0.6,
+ final freqHz=1/60,
+ final offset=0.50)
+ "Sine input"
+ annotation (Placement(transformation(extent={{-30,-30},{-10,-10}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant conInt(
+ final k=1)
+ "Constant Integer source"
+ annotation (Placement(transformation(extent={{-30,10},{-10,30}})));
+
+equation
+ connect(conInt.y, pumSpeLim.uCurSta) annotation (Line(points={{-8,20},{0,20},
+ {0,25},{8,25}}, color={255,127,0}));
+ connect(sin.y, pumSpeLim.uRegSig) annotation (Line(points={{-8,-20},{0,-20},{
+ 0,15},{8,15}}, color={0,0,127}));
+ connect(sin.y, pumSpeLim1.uRegSig) annotation (Line(points={{-8,-20},{0,-20},
+ {0,-25},{8,-25}}, color={0,0,127}));
+ annotation (
+ Icon(coordinateSystem(preserveAspectRatio=false),
+ graphics={Ellipse(
+ lineColor = {75,138,73},
+ fillColor={255,255,255},
+ fillPattern = FillPattern.Solid,
+ extent={{-100,-100},{100,100}}),
+ Polygon(
+ lineColor = {0,0,255},
+ fillColor = {75,138,73},
+ pattern = LinePattern.None,
+ fillPattern = FillPattern.Solid,
+ points={{-36,60},{64,0},{-36,-60},{-36,60}})}),
+ Diagram(coordinateSystem(
+ preserveAspectRatio=false)),
+ experiment(
+ StopTime=60,
+ Interval=1,
+ Tolerance=1e-06),
+ __Dymola_Commands(file="./Resources/Scripts/Dymola/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/SetPoints/Subsequences/Validation/PumpSpeedLimits.mos"
+ "Simulate and plot"),
+ Documentation(info="
+
+ This example validates
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.SetPoints.Subsequences.PumpSpeedLimits.
+
+ ", revisions="
+
+ -
+ July 22, 2020, by Karthik Devaprasad:
+ First implementation.
+
+
+ "));
+end PumpSpeedLimits;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/SetPoints/Subsequences/Validation/package.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/SetPoints/Subsequences/Validation/package.mo
new file mode 100644
index 00000000000..6eff51d8f77
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/SetPoints/Subsequences/Validation/package.mo
@@ -0,0 +1,40 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.SetPoints.Subsequences;
+package Validation "Collection of validation models"
+
+
+
+
+annotation (Icon(graphics={
+ Rectangle(
+ lineColor={200,200,200},
+ fillColor={248,248,248},
+ fillPattern=FillPattern.HorizontalCylinder,
+ extent={{-100,-100},{100,100}},
+ radius=25.0),
+ Rectangle(
+ lineColor={128,128,128},
+ extent={{-100,-100},{100,100}},
+ radius=25.0),
+ Polygon(
+ origin={8,14},
+ lineColor={78,138,73},
+ fillColor={78,138,73},
+ pattern=LinePattern.None,
+ fillPattern=FillPattern.Solid,
+ points={{-58.0,46.0},{42.0,-14.0},{-58.0,-74.0},{-58.0,46.0}})}),
+ Documentation(info="
+
+ This package contains validation models for the classes in
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.CondensationControl.Subsequences.
+
+
+ Note that most validation models contain simple input data
+ which may not be realistic, but for which the correct
+ output can be obtained through an analytic solution.
+ The examples plot various outputs, which have been verified against these
+ solutions. These model outputs are stored as reference data and
+ used for continuous validation whenever models in the library change.
+
+ "));
+end Validation;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/SetPoints/Subsequences/Validation/package.order b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/SetPoints/Subsequences/Validation/package.order
new file mode 100644
index 00000000000..d5ec19c87d3
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/SetPoints/Subsequences/Validation/package.order
@@ -0,0 +1,2 @@
+ProportionalRegulator
+PumpSpeedLimits
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/SetPoints/Subsequences/package.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/SetPoints/Subsequences/package.mo
new file mode 100644
index 00000000000..1008f1f94b3
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/SetPoints/Subsequences/package.mo
@@ -0,0 +1,46 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.SetPoints;
+package Subsequences "Subsequences for setpoint calculations"
+
+
+
+
+annotation(Icon(graphics={
+ Rectangle(
+ lineColor={200,200,200},
+ fillColor={248,248,248},
+ fillPattern=FillPattern.HorizontalCylinder,
+ extent={{-100,-100},{100,100}},
+ radius=25.0),
+ Rectangle(
+ lineColor={128,128,128},
+ extent={{-100,-100},{100,100}},
+ radius=25.0),
+ Ellipse(
+ origin={10,10},
+ fillColor={76,76,76},
+ pattern=LinePattern.None,
+ fillPattern=FillPattern.Solid,
+ extent={{-80.0,-80.0},{-20.0,-20.0}}),
+ Ellipse(
+ origin={10,10},
+ pattern=LinePattern.None,
+ fillPattern=FillPattern.Solid,
+ extent={{0.0,-80.0},{60.0,-20.0}}),
+ Ellipse(
+ origin={10,10},
+ fillColor={128,128,128},
+ pattern=LinePattern.None,
+ fillPattern=FillPattern.Solid,
+ extent={{0.0,0.0},{60.0,60.0}}),
+ Ellipse(
+ origin={10,10},
+ lineColor={128,128,128},
+ fillColor={255,255,255},
+ fillPattern=FillPattern.Solid,
+ extent={{-80.0,0.0},{-20.0,60.0}})}),
+ Documentation(info="
+
+ This package contains control subsequences for setpoint calculations.
+
+ "));
+end Subsequences;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/SetPoints/Subsequences/package.order b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/SetPoints/Subsequences/package.order
new file mode 100644
index 00000000000..4ef1857ac5c
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/SetPoints/Subsequences/package.order
@@ -0,0 +1,3 @@
+ProportionalRegulator
+PumpSpeedLimits
+Validation
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/SetPoints/Validation/CondensationControl.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/SetPoints/Validation/CondensationControl.mo
new file mode 100644
index 00000000000..b56fe7f52ca
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/SetPoints/Validation/CondensationControl.mo
@@ -0,0 +1,197 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.SetPoints.Validation;
+model CondensationControl
+ "Validation model for CondensationControl sequence"
+
+ parameter Integer nSta=1
+ "Number of stages";
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.SetPoints.CondensationControl
+ conSet(
+ final have_priOnl=true,
+ final have_varPriPum=false,
+ final nSta=nSta,
+ final TRetSet=60,
+ final TRetMinAll=57.2,
+ final minSecPumSpe=0.1,
+ final minPriPumSpeSta={0.2})
+ "Setpoint generation for primary-only plant"
+ annotation (Placement(transformation(extent={{-40,40},{-20,60}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.SetPoints.CondensationControl
+ conSet1(
+ final have_priOnl=false,
+ final have_varPriPum=true,
+ final nSta=1,
+ final TRetSet=60,
+ final TRetMinAll=57.2,
+ final minSecPumSpe=0.1,
+ final minPriPumSpeSta={0.2})
+ "Setpoint generation for primary-secondary plant with variable speed primary loop pumps"
+ annotation (Placement(transformation(extent={{60,40},{80,60}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.SetPoints.CondensationControl
+ conSet2(
+ final have_priOnl=false,
+ final have_varPriPum=false,
+ final nSta=1,
+ final TRetSet=60,
+ final TRetMinAll=57.2,
+ final minSecPumSpe=0.1,
+ final minPriPumSpeSta={0.2})
+ "Setpoint generation for primary-secondary plant with constant speed primary loop pumps"
+ annotation (Placement(transformation(extent={{-40,-60},{-20,-40}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.SetPoints.CondensationControl
+ conSet3(
+ final have_priOnl=false,
+ final have_varPriPum=true,
+ final nSta=1,
+ final TRetSet=60,
+ final TRetMinAll=57.2,
+ final minSecPumSpe=0.1,
+ final minPriPumSpeSta={0.2})
+ "Setpoint generation when only condensing boilers are operating"
+ annotation (Placement(transformation(extent={{60,-60},{80,-40}})));
+
+protected
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Sine sin(
+ final amplitude=5,
+ final freqHz=1/60,
+ final offset=60)
+ "Sine input"
+ annotation (Placement(transformation(extent={{-80,70},{-60,90}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Sine sin1(
+ final amplitude=5,
+ final freqHz=1/60,
+ final offset=60)
+ "Sine input"
+ annotation (Placement(transformation(extent={{20,70},{40,90}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Sine sin2(
+ final amplitude=5,
+ final freqHz=1/60,
+ final offset=60)
+ "Sine input"
+ annotation (Placement(transformation(extent={{-80,-30},{-60,-10}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Sine sin3(
+ final amplitude=5,
+ final freqHz=1/60,
+ final offset=60)
+ "Sine input"
+ annotation (Placement(transformation(extent={{20,-30},{40,-10}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant conInt(
+ final k=1)
+ "Constant Integer source"
+ annotation (Placement(transformation(extent={{-80,40},{-60,60}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant conInt1(
+ final k=1)
+ "Constant Integer source"
+ annotation (Placement(transformation(extent={{20,40},{40,60}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant conInt2(
+ final k=1)
+ "Constant Integer source"
+ annotation (Placement(transformation(extent={{-80,-60},{-60,-40}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant conInt3(
+ final k=1)
+ "Constant Integer source"
+ annotation (Placement(transformation(extent={{20,-60},{40,-40}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant conInt4[nSta](
+ final k={2})
+ "Stage type vector source"
+ annotation (Placement(transformation(extent={{-80,10},{-60,30}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant conInt5[nSta](
+ final k={2})
+ "Stage type vector source"
+ annotation (Placement(transformation(extent={{20,10},{40,30}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant conInt6[nSta](
+ final k={2})
+ "Stage type vector source"
+ annotation (Placement(transformation(extent={{-80,-90},{-60,-70}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant conInt7[nSta](
+ final k={1})
+ "Stage type vector source"
+ annotation (Placement(transformation(extent={{20,-90},{40,-70}})));
+
+equation
+ connect(sin.y, conSet.THotWatRet) annotation (Line(points={{-58,80},{-50,80},{
+ -50,56},{-42,56}}, color={0,0,127}));
+
+ connect(sin2.y, conSet2.THotWatRet) annotation (Line(points={{-58,-20},{-50,-20},
+ {-50,-44},{-42,-44}}, color={0,0,127}));
+
+ connect(sin3.y, conSet3.THotWatRet) annotation (Line(points={{42,-20},{50,-20},
+ {50,-44},{58,-44}}, color={0,0,127}));
+
+ connect(conInt.y, conSet.uCurSta)
+ annotation (Line(points={{-58,50},{-42,50}}, color={255,127,0}));
+
+ connect(conInt1.y, conSet1.uCurSta)
+ annotation (Line(points={{42,50},{58,50}}, color={255,127,0}));
+
+ connect(conInt2.y, conSet2.uCurSta)
+ annotation (Line(points={{-58,-50},{-42,-50}}, color={255,127,0}));
+
+ connect(conInt3.y, conSet3.uCurSta)
+ annotation (Line(points={{42,-50},{58,-50}}, color={255,127,0}));
+
+ connect(conInt4.y, conSet.uStaTyp) annotation (Line(points={{-58,20},{-50,20},
+ {-50,44},{-42,44}}, color={255,127,0}));
+
+ connect(conInt5.y, conSet1.uStaTyp) annotation (Line(points={{42,20},{50,20},{
+ 50,44},{58,44}}, color={255,127,0}));
+
+ connect(conInt6.y, conSet2.uStaTyp) annotation (Line(points={{-58,-80},{-50,-80},
+ {-50,-56},{-42,-56}}, color={255,127,0}));
+
+ connect(conInt7.y, conSet3.uStaTyp) annotation (Line(points={{42,-80},{50,-80},
+ {50,-56},{58,-56}}, color={255,127,0}));
+
+ connect(sin1.y, conSet1.THotWatRet) annotation (Line(points={{42,80},{50,80},
+ {50,56},{58,56}}, color={0,0,127}));
+
+ annotation (
+ Icon(coordinateSystem(preserveAspectRatio=false),
+ graphics={Ellipse(
+ lineColor = {75,138,73},
+ fillColor={255,255,255},
+ fillPattern = FillPattern.Solid,
+ extent={{-100,-100},{100,100}}),
+ Polygon(
+ lineColor = {0,0,255},
+ fillColor = {75,138,73},
+ pattern = LinePattern.None,
+ fillPattern = FillPattern.Solid,
+ points={{-36,60},{64,0},{-36,-60},{-36,60}})}),
+ Diagram(coordinateSystem(
+ preserveAspectRatio=false)),
+ experiment(
+ StopTime=60,
+ Interval=1,
+ Tolerance=1e-06),
+ __Dymola_Commands(file="./Resources/Scripts/Dymola/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/SetPoints/Validation/CondensationControl.mos"
+ "Simulate and plot"),
+ Documentation(info="
+
+ This example validates
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.SetPoints.CondensationControl.
+
+ ", revisions="
+
+ -
+ May 7, 2020, by Karthik Devaprasad:
+ First implementation.
+
+
+ "));
+end CondensationControl;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/SetPoints/Validation/HotWaterSupplyTemperatureReset.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/SetPoints/Validation/HotWaterSupplyTemperatureReset.mo
new file mode 100644
index 00000000000..d5051f013f6
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/SetPoints/Validation/HotWaterSupplyTemperatureReset.mo
@@ -0,0 +1,401 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.SetPoints.Validation;
+block HotWaterSupplyTemperatureReset
+ "Validates hot water supply temperature setpoint reset for boiler plants"
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.SetPoints.HotWaterSupplyTemperatureReset
+ hotWatSupTemRes(
+ final nPum=2,
+ final nSta=1,
+ final nBoi=2,
+ final nHotWatResReqIgn=2,
+ final boiTyp={Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Types.BoilerTypes.condensingBoiler,
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Types.BoilerTypes.condensingBoiler},
+ final TPlaHotWatSetMax=353.15,
+ final TConBoiHotWatSetMax=353.15,
+ final TConBoiHotWatSetOff=-10,
+ final THotWatSetMinNonConBoi=341.48,
+ final THotWatSetMinConBoi=305.37,
+ final delTimVal=600,
+ final samPerVal=300,
+ final triAmoVal=-2,
+ final resAmoVal=3,
+ final maxResVal=7,
+ final holTimVal=900)
+ "Scenario testing lack of hot-water requests"
+ annotation (Placement(transformation(extent={{-120,90},{-100,110}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.SetPoints.HotWaterSupplyTemperatureReset
+ hotWatSupTemRes1(
+ final nPum=2,
+ final nSta=1,
+ final nBoi=2,
+ final nHotWatResReqIgn=2,
+ final boiTyp={Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Types.BoilerTypes.condensingBoiler,
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Types.BoilerTypes.condensingBoiler},
+ final TPlaHotWatSetMax=353.15,
+ final TConBoiHotWatSetMax=353.15,
+ final TConBoiHotWatSetOff=-10,
+ final THotWatSetMinNonConBoi=341.48,
+ final THotWatSetMinConBoi=305.37,
+ final delTimVal=600,
+ final samPerVal=300,
+ final triAmoVal=-2,
+ final resAmoVal=3,
+ final maxResVal=7,
+ final holTimVal=900)
+ "Scenario testing increasing number of requests"
+ annotation (Placement(transformation(extent={{100,90},{120,110}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.SetPoints.HotWaterSupplyTemperatureReset
+ hotWatSupTemRes2(
+ final nPum=2,
+ final nSta=1,
+ final nBoi=2,
+ final nHotWatResReqIgn=2,
+ final boiTyp={Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Types.BoilerTypes.condensingBoiler,
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Types.BoilerTypes.condensingBoiler},
+ final TPlaHotWatSetMax=353.15,
+ final TConBoiHotWatSetMax=353.15,
+ final TConBoiHotWatSetOff=-10,
+ final THotWatSetMinNonConBoi=341.48,
+ final THotWatSetMinConBoi=305.37,
+ final delTimVal=600,
+ final samPerVal=300,
+ final triAmoVal=-2,
+ final resAmoVal=3,
+ final maxResVal=7,
+ final holTimVal=900)
+ "Scenario testing lack of pumps proven on"
+ annotation (Placement(transformation(extent={{-20,90},{0,110}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.SetPoints.HotWaterSupplyTemperatureReset
+ hotWatSupTemRes3(
+ final nPum=2,
+ final nSta=1,
+ final nBoi=2,
+ final nHotWatResReqIgn=2,
+ final boiTyp={Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Types.BoilerTypes.condensingBoiler,
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Types.BoilerTypes.condensingBoiler},
+ final TPlaHotWatSetMax=353.15,
+ final TConBoiHotWatSetMax=353.15,
+ final TConBoiHotWatSetOff=-10,
+ final THotWatSetMinNonConBoi=341.48,
+ final THotWatSetMinConBoi=305.37,
+ final delTimVal=600,
+ final samPerVal=300,
+ final triAmoVal=-2,
+ final resAmoVal=3,
+ final maxResVal=7,
+ final holTimVal=900)
+ "Scenario testing effect of stage change process"
+ annotation (Placement(transformation(extent={{-120,-90},{-100,-70}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.SetPoints.HotWaterSupplyTemperatureReset
+ hotWatSupTemRes4(
+ final nPum=2,
+ final nSta=3,
+ final nBoi=2,
+ final nHotWatResReqIgn=2,
+ final boiTyp={Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Types.BoilerTypes.condensingBoiler,
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Types.BoilerTypes.nonCondensingBoiler},
+ final TPlaHotWatSetMax=353.15,
+ final TConBoiHotWatSetMax=353.15,
+ final TConBoiHotWatSetOff=-10,
+ final THotWatSetMinNonConBoi=341.48,
+ final THotWatSetMinConBoi=305.37,
+ final delTimVal=600,
+ final samPerVal=300,
+ final triAmoVal=-2,
+ final resAmoVal=3,
+ final maxResVal=7,
+ final holTimVal=900)
+ "Scenario testing switch between condensing and non-condensing stages"
+ annotation (Placement(transformation(extent={{-20,-90},{0,-70}})));
+
+protected
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant con(
+ final k=true)
+ "Constant source"
+ annotation (Placement(transformation(extent={{-150,150},{-130,170}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant con1(
+ final k=false)
+ "Constant source"
+ annotation (Placement(transformation(extent={{-150,120},{-130,140}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant conInt(
+ final k=2)
+ "Constant source"
+ annotation (Placement(transformation(extent={{-152,90},{-132,110}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant con2(
+ final k=false)
+ "Constant source"
+ annotation (Placement(transformation(extent={{-150,60},{-130,80}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant con3(
+ final k=true)
+ "Constant source"
+ annotation (Placement(transformation(extent={{60,150},{80,170}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant con4(
+ final k=false)
+ "Constant source"
+ annotation (Placement(transformation(extent={{60,120},{80,140}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant con5(
+ final k=false)
+ "Constant source"
+ annotation (Placement(transformation(extent={{60,60},{80,80}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant con6(
+ final k=false)
+ "Constant source"
+ annotation (Placement(transformation(extent={{-60,150},{-40,170}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant con7(
+ final k=false)
+ "Constant source"
+ annotation (Placement(transformation(extent={{-60,120},{-40,140}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant conInt2(
+ final k=2)
+ "Constant source"
+ annotation (Placement(transformation(extent={{-60,90},{-40,110}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant con8(
+ final k=false)
+ "Constant source"
+ annotation (Placement(transformation(extent={{-60,60},{-40,80}})));
+
+ Buildings.Controls.OBC.CDL.Conversions.RealToInteger reaToInt
+ "Real to integer converter"
+ annotation (Placement(transformation(extent={{60,90},{80,110}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Ramp ram(
+ final height=8,
+ final duration=1800,
+ final offset=2,
+ final startTime=1100)
+ "Ramp signal"
+ annotation (Placement(transformation(extent={{30,90},{50,110}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant con9(
+ final k=true)
+ "Constant source"
+ annotation (Placement(transformation(extent={{-150,-30},{-130,-10}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant con10(
+ final k=false)
+ "Constant source"
+ annotation (Placement(transformation(extent={{-150,-60},{-130,-40}})));
+
+ Buildings.Controls.OBC.CDL.Conversions.RealToInteger reaToInt1
+ "Real to integer converter"
+ annotation (Placement(transformation(extent={{-150,-90},{-130,-70}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Ramp ram1(
+ final height=8,
+ final duration=1800,
+ final offset=2,
+ final startTime=1100)
+ "Ramp signal"
+ annotation (Placement(transformation(extent={{-180,-90},{-160,-70}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Pulse booPul(
+ final period=1200,
+ final shift=1100)
+ "Boolean pulse signal"
+ annotation (Placement(transformation(extent={{-150,-120},{-130,-100}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant conInt1[1](
+ final k={1})
+ "Constant source"
+ annotation (Placement(transformation(extent={{-150,30},{-130,50}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant conInt3[1](
+ final k={1})
+ "Constant source"
+ annotation (Placement(transformation(extent={{-60,30},{-40,50}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant conInt4(
+ final k=1)
+ "Constant source"
+ annotation (Placement(transformation(extent={{-150,0},{-130,20}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant conInt5(
+ final k=1)
+ "Constant source"
+ annotation (Placement(transformation(extent={{-60,0},{-40,20}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant conInt6[1](
+ final k={1})
+ "Constant source"
+ annotation (Placement(transformation(extent={{60,30},{80,50}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant conInt7(
+ final k=1)
+ "Constant source"
+ annotation (Placement(transformation(extent={{60,0},{80,20}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant conInt8[1](
+ final k={1})
+ "Constant source"
+ annotation (Placement(transformation(extent={{-150,-150},{-130,-130}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant conInt9(
+ final k=1)
+ "Constant source"
+ annotation (Placement(transformation(extent={{-150,-180},{-130,-160}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant con11(
+ final k=true)
+ "Constant source"
+ annotation (Placement(transformation(extent={{-60,-30},{-40,-10}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant con12(
+ final k=false)
+ "Constant source"
+ annotation (Placement(transformation(extent={{-60,-60},{-40,-40}})));
+
+ Buildings.Controls.OBC.CDL.Conversions.RealToInteger reaToInt2
+ "Real to integer converter"
+ annotation (Placement(transformation(extent={{-60,-90},{-40,-70}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Ramp ram2(
+ final height=8,
+ final duration=1800,
+ final offset=2,
+ final startTime=1100)
+ "Ramp signal"
+ annotation (Placement(transformation(extent={{-90,-90},{-70,-70}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant con13(
+ final k=false)
+ "Constant source"
+ annotation (Placement(transformation(extent={{-60,-120},{-40,-100}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant conInt10[3](
+ final k={2,1,2})
+ "Constant source"
+ annotation (Placement(transformation(extent={{-60,-150},{-40,-130}})));
+
+ Buildings.Controls.OBC.CDL.Conversions.RealToInteger reaToInt3
+ "Real to integer converter"
+ annotation (Placement(transformation(extent={{-60,-180},{-40,-160}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Sine sin(
+ final amplitude=1.25,
+ final freqHz=1/7200,
+ final offset=2)
+ "Sine signal"
+ annotation (Placement(transformation(extent={{-90,-180},{-70,-160}})));
+
+equation
+ connect(ram.y, reaToInt.u)
+ annotation (Line(points={{52,100},{58,100}}, color={0,0,127}));
+ connect(ram1.y, reaToInt1.u)
+ annotation (Line(points={{-158,-80},{-152,-80}},
+ color={0,0,127}));
+ connect(con.y, hotWatSupTemRes.uHotWatPumSta[1]) annotation (Line(points={{-128,
+ 160},{-126,160},{-126,107},{-122,107}}, color={255,0,255}));
+ connect(con1.y, hotWatSupTemRes.uHotWatPumSta[2]) annotation (Line(points={{-128,
+ 130},{-124,130},{-124,109},{-122,109}}, color={255,0,255}));
+ connect(conInt.y, hotWatSupTemRes.nHotWatSupResReq) annotation (Line(points={{-130,
+ 100},{-130,104},{-122,104}}, color={255,127,0}));
+ connect(con2.y, hotWatSupTemRes.uStaCha) annotation (Line(points={{-128,70},{-128,
+ 100},{-122,100}}, color={255,0,255}));
+ connect(conInt1.y, hotWatSupTemRes.uTyp) annotation (Line(points={{-128,40},{-126,
+ 40},{-126,96},{-122,96}}, color={255,127,0}));
+ connect(con6.y, hotWatSupTemRes2.uHotWatPumSta[1]) annotation (Line(points={{-38,
+ 160},{-30,160},{-30,107},{-22,107}}, color={255,0,255}));
+ connect(con7.y, hotWatSupTemRes2.uHotWatPumSta[2]) annotation (Line(points={{-38,
+ 130},{-30,130},{-30,109},{-22,109}}, color={255,0,255}));
+ connect(conInt2.y, hotWatSupTemRes2.nHotWatSupResReq) annotation (Line(points=
+ {{-38,100},{-30,100},{-30,104},{-22,104}}, color={255,127,0}));
+ connect(con8.y, hotWatSupTemRes2.uStaCha) annotation (Line(points={{-38,70},{-28,
+ 70},{-28,100},{-22,100}}, color={255,0,255}));
+ connect(conInt3.y, hotWatSupTemRes2.uTyp) annotation (Line(points={{-38,40},{-26,
+ 40},{-26,96},{-22,96}}, color={255,127,0}));
+ connect(conInt4.y, hotWatSupTemRes.uCurStaSet) annotation (Line(points={{-128,
+ 10},{-124,10},{-124,92},{-122,92}}, color={255,127,0}));
+ connect(conInt5.y, hotWatSupTemRes2.uCurStaSet) annotation (Line(points={{-38,
+ 10},{-24,10},{-24,92},{-22,92}}, color={255,127,0}));
+ connect(con3.y, hotWatSupTemRes1.uHotWatPumSta[1]) annotation (Line(points={{82,
+ 160},{92,160},{92,107},{98,107}}, color={255,0,255}));
+ connect(con4.y, hotWatSupTemRes1.uHotWatPumSta[2]) annotation (Line(points={{82,
+ 130},{92,130},{92,109},{98,109}}, color={255,0,255}));
+ connect(reaToInt.y, hotWatSupTemRes1.nHotWatSupResReq) annotation (Line(
+ points={{82,100},{88,100},{88,104},{98,104}}, color={255,127,0}));
+ connect(con5.y, hotWatSupTemRes1.uStaCha) annotation (Line(points={{82,70},{90,
+ 70},{90,100},{98,100}}, color={255,0,255}));
+ connect(conInt6.y, hotWatSupTemRes1.uTyp) annotation (Line(points={{82,40},{92,
+ 40},{92,96},{98,96}}, color={255,127,0}));
+ connect(conInt7.y, hotWatSupTemRes1.uCurStaSet) annotation (Line(points={{82,
+ 10},{96,10},{96,92},{98,92}}, color={255,127,0}));
+ connect(con9.y, hotWatSupTemRes3.uHotWatPumSta[1]) annotation (Line(points={{-128,
+ -20},{-124,-20},{-124,-73},{-122,-73}}, color={255,0,255}));
+ connect(con10.y, hotWatSupTemRes3.uHotWatPumSta[2]) annotation (Line(points={{
+ -128,-50},{-126,-50},{-126,-71},{-122,-71}}, color={255,0,255}));
+ connect(reaToInt1.y, hotWatSupTemRes3.nHotWatSupResReq) annotation (Line(
+ points={{-128,-80},{-128,-76},{-122,-76}}, color={255,127,0}));
+ connect(booPul.y, hotWatSupTemRes3.uStaCha) annotation (Line(points={{-128,-110},
+ {-126,-110},{-126,-80},{-122,-80}}, color={255,0,255}));
+ connect(conInt8.y, hotWatSupTemRes3.uTyp) annotation (Line(points={{-128,-140},
+ {-124,-140},{-124,-84},{-122,-84}}, color={255,127,0}));
+ connect(conInt9.y, hotWatSupTemRes3.uCurStaSet) annotation (Line(points={{-128,
+ -170},{-122,-170},{-122,-88}}, color={255,127,0}));
+ connect(con11.y, hotWatSupTemRes4.uHotWatPumSta[1]) annotation (Line(points={{
+ -38,-20},{-30,-20},{-30,-73},{-22,-73}}, color={255,0,255}));
+ connect(con12.y, hotWatSupTemRes4.uHotWatPumSta[2]) annotation (Line(points={{
+ -38,-50},{-30,-50},{-30,-71},{-22,-71}}, color={255,0,255}));
+ connect(ram2.y,reaToInt2. u)
+ annotation (Line(points={{-68,-80},{-62,-80}},
+ color={0,0,127}));
+ connect(reaToInt2.y, hotWatSupTemRes4.nHotWatSupResReq) annotation (Line(
+ points={{-38,-80},{-30,-80},{-30,-76},{-22,-76}}, color={255,127,0}));
+ connect(con13.y, hotWatSupTemRes4.uStaCha) annotation (Line(points={{-38,-110},
+ {-28,-110},{-28,-80},{-22,-80}}, color={255,0,255}));
+ connect(conInt10.y, hotWatSupTemRes4.uTyp) annotation (Line(points={{-38,-140},
+ {-26,-140},{-26,-84},{-22,-84}}, color={255,127,0}));
+ connect(sin.y, reaToInt3.u)
+ annotation (Line(points={{-68,-170},{-62,-170}}, color={0,0,127}));
+ connect(reaToInt3.y, hotWatSupTemRes4.uCurStaSet) annotation (Line(points={{
+ -38,-170},{-22,-170},{-22,-88}}, color={255,127,0}));
+ annotation (
+ Icon(coordinateSystem(preserveAspectRatio=false,
+ extent={{-100,-100},{100,100}}),
+ graphics={
+ Ellipse(
+ lineColor = {75,138,73},
+ fillColor={255,255,255},
+ fillPattern = FillPattern.Solid,
+ extent={{-100,-100},{100,100}}),
+ Polygon(
+ lineColor = {0,0,255},
+ fillColor = {75,138,73},
+ pattern = LinePattern.None,
+ fillPattern = FillPattern.Solid,
+ points={{-36,60},{64,0},{-36,-60},{-36,60}})}), Diagram(
+ coordinateSystem(preserveAspectRatio=false, extent={{-200,-200},{180,180}})),
+ experiment(
+ StopTime=7200,
+ Interval=1,
+ Tolerance=1e-06),
+ __Dymola_Commands(file="./Resources/Scripts/Dymola/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/SetPoints/Validation/HotWaterSupplyTemperatureReset.mos"
+ "Simulate and plot"),
+ Documentation(info="
+
+ This example validates
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.SetPoints.HotWaterSupplyTemperatureReset.
+
+ ", revisions="
+
+ -
+ May 19, 2020, by Karthik Devaprasad:
+ First implementation.
+
+
+ "));
+end HotWaterSupplyTemperatureReset;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/SetPoints/Validation/MinimumFlowSetPoint.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/SetPoints/Validation/MinimumFlowSetPoint.mo
new file mode 100644
index 00000000000..f3966daa1ab
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/SetPoints/Validation/MinimumFlowSetPoint.mo
@@ -0,0 +1,244 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.SetPoints.Validation;
+model MinimumFlowSetPoint "Validation model for MinimumFlowSetPoint sequence"
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.SetPoints.MinimumFlowSetPoint
+ minBoiFloSet(
+ final nBoi=2,
+ final nSta=3,
+ final staMat={{1,0},{0,1},{1,1}},
+ final minFloSet={0.1,0.3},
+ final maxFloSet={0.25,0.9},
+ bypSetRat=0.1)
+ "Test minimum flow setpoint reset for stage-up process"
+ annotation (Placement(transformation(extent={{70,50},{90,70}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.SetPoints.MinimumFlowSetPoint
+ minBoiFloSet1(
+ final nBoi=2,
+ final nSta=3,
+ final staMat={{1,0},{0,1},{1,1}},
+ final minFloSet={0.1,0.3},
+ final maxFloSet={0.25,0.9},
+ bypSetRat=0.1)
+ "Test minimum flow setpoint reset for stage-down process"
+ annotation (Placement(transformation(extent={{70,-70},{90,-50}})));
+
+ Buildings.Controls.OBC.CDL.Logical.TrueFalseHold truFalHol(
+ final trueHoldDuration=5,
+ final falseHoldDuration=0)
+ "Hold pulse signal for visualization and to generate end of stage change signal"
+ annotation (Placement(transformation(extent={{0,30},{20,50}})));
+
+ Buildings.Controls.OBC.CDL.Logical.TrueFalseHold truFalHol1(
+ final trueHoldDuration=5,
+ final falseHoldDuration=0)
+ "Hold pulse signal for visualization and to generate end of stage change signal"
+ annotation (Placement(transformation(extent={{0,-90},{20,-70}})));
+
+protected
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Ramp ram(
+ final height=3,
+ final duration=45,
+ final offset=0,
+ final startTime=0)
+ "Ramp source for stage setpoint"
+ annotation (Placement(transformation(extent={{-90,10},{-70,30}})));
+
+ Buildings.Controls.OBC.CDL.Conversions.RealToInteger reaToInt
+ "Real to Integer conversion"
+ annotation (Placement(transformation(extent={{-60,10},{-40,30}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant con1[3](
+ final k={0,1,0})
+ "Last boiler being disabled during stage change"
+ annotation (Placement(transformation(extent={{-90,90},{-70,110}})));
+
+ Buildings.Controls.OBC.CDL.Routing.RealExtractor extIndSig(
+ final allowOutOfRange=true,
+ final nin=3,
+ final outOfRangeValue=0)
+ "Extract scalar out of vector"
+ annotation (Placement(transformation(extent={{-60,90},{-40,110}})));
+
+ Buildings.Controls.OBC.CDL.Conversions.RealToInteger reaToInt1
+ "Real to Integer conversion"
+ annotation (Placement(transformation(extent={{20,90},{40,110}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.GreaterThreshold greThr
+ "Check if current stage setpoint involves boilers being turned on and off"
+ annotation (Placement(transformation(extent={{-30,60},{-10,80}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Change cha1
+ "Detect change in setpoint"
+ annotation (Placement(transformation(extent={{-30,30},{-10,50}})));
+
+ Buildings.Controls.OBC.CDL.Logical.FallingEdge falEdg
+ "Generate end of stage change signal at end of hold period"
+ annotation (Placement(transformation(extent={{30,30},{50,50}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Ramp ram1(
+ final height=-3,
+ final duration=45,
+ final offset=4,
+ final startTime=0) "Ramp source for stage setpoint"
+ annotation (Placement(transformation(extent={{-90,-110},{-70,-90}})));
+
+ Buildings.Controls.OBC.CDL.Conversions.RealToInteger reaToInt2
+ "Real to Integer conversion"
+ annotation (Placement(transformation(extent={{-60,-110},{-40,-90}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant con2[3](
+ final k={2,1,0})
+ "Last boiler being disabled during stage change"
+ annotation (Placement(transformation(extent={{-90,-30},{-70,-10}})));
+
+ Buildings.Controls.OBC.CDL.Routing.RealExtractor extIndSig1(
+ final allowOutOfRange=true,
+ final nin=3,
+ final outOfRangeValue=0)
+ "Extract scalar out of vector"
+ annotation (Placement(transformation(extent={{-60,-30},{-40,-10}})));
+
+ Buildings.Controls.OBC.CDL.Conversions.RealToInteger reaToInt3
+ "Real to Integer conversion"
+ annotation (Placement(transformation(extent={{20,-30},{40,-10}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.GreaterThreshold greThr1
+ "Check if current stage setpoint involves boilers being turned on and off"
+ annotation (Placement(transformation(extent={{-30,-60},{-10,-40}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Change cha2
+ "Detect change in setpoint"
+ annotation (Placement(transformation(extent={{-30,-90},{-10,-70}})));
+
+ Buildings.Controls.OBC.CDL.Logical.FallingEdge falEdg1
+ "Generate end of stage change signal at end of hold period"
+ annotation (Placement(transformation(extent={{30,-90},{50,-70}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant con3[3](
+ final k={1,0,0})
+ "Vector indicating if stage change involves boilers being turned on and off"
+ annotation (Placement(transformation(extent={{-90,-60},{-70,-40}})));
+
+ Buildings.Controls.OBC.CDL.Routing.RealExtractor extIndSig2(
+ final allowOutOfRange=true,
+ final nin=3,
+ final outOfRangeValue=0)
+ "Extract scalar out of vector"
+ annotation (Placement(transformation(extent={{-60,-60},{-40,-40}})));
+
+equation
+ connect(ram.y, reaToInt.u)
+ annotation (Line(points={{-68,20},{-62,20}}, color={0,0,127}));
+
+ connect(reaToInt.y, minBoiFloSet.uStaSet) annotation (Line(points={{-38,20},{64,
+ 20},{64,54},{68,54}}, color={255,127,0}));
+
+ connect(con1.y, extIndSig.u)
+ annotation (Line(points={{-68,100},{-62,100}}, color={0,0,127}));
+
+ connect(reaToInt.y, extIndSig.index) annotation (Line(points={{-38,20},{64,20},
+ {64,86},{-50,86},{-50,88}}, color={255,127,0}));
+
+ connect(extIndSig.y, reaToInt1.u)
+ annotation (Line(points={{-38,100},{18,100}}, color={0,0,127}));
+
+ connect(reaToInt1.y, minBoiFloSet.uLasDisBoi) annotation (Line(points={{42,100},
+ {66,100},{66,66},{68,66}}, color={255,127,0}));
+
+ connect(extIndSig.y, greThr.u) annotation (Line(points={{-38,100},{-34,100},{-34,
+ 70},{-32,70}}, color={0,0,127}));
+
+ connect(greThr.y, minBoiFloSet.uOnOff) annotation (Line(points={{-8,70},{60,70},
+ {60,62},{68,62}}, color={255,0,255}));
+
+ connect(reaToInt.y, cha1.u) annotation (Line(points={{-38,20},{-36,20},{-36,40},
+ {-32,40}}, color={255,127,0}));
+
+ connect(cha1.y, truFalHol.u)
+ annotation (Line(points={{-8,40},{-2,40}}, color={255,0,255}));
+
+ connect(truFalHol.y, falEdg.u)
+ annotation (Line(points={{22,40},{28,40}}, color={255,0,255}));
+
+ connect(falEdg.y, minBoiFloSet.uStaChaPro) annotation (Line(points={{52,40},{60,
+ 40},{60,58},{68,58}}, color={255,0,255}));
+
+ connect(ram1.y, reaToInt2.u)
+ annotation (Line(points={{-68,-100},{-62,-100}}, color={0,0,127}));
+
+ connect(reaToInt2.y, minBoiFloSet1.uStaSet) annotation (Line(points={{-38,-100},
+ {64,-100},{64,-66},{68,-66}}, color={255,127,0}));
+
+ connect(con2.y, extIndSig1.u)
+ annotation (Line(points={{-68,-20},{-62,-20}}, color={0,0,127}));
+
+ connect(reaToInt2.y, extIndSig1.index) annotation (Line(points={{-38,-100},{64,
+ -100},{64,-34},{-50,-34},{-50,-32}}, color={255,127,0}));
+
+ connect(extIndSig1.y, reaToInt3.u)
+ annotation (Line(points={{-38,-20},{18,-20}}, color={0,0,127}));
+
+ connect(reaToInt3.y, minBoiFloSet1.uLasDisBoi) annotation (Line(points={{42,-20},
+ {66,-20},{66,-54},{68,-54}}, color={255,127,0}));
+
+ connect(greThr1.y, minBoiFloSet1.uOnOff) annotation (Line(points={{-8,-50},{60,
+ -50},{60,-58},{68,-58}}, color={255,0,255}));
+
+ connect(reaToInt2.y, cha2.u) annotation (Line(points={{-38,-100},{-36,-100},{-36,
+ -80},{-32,-80}}, color={255,127,0}));
+
+ connect(cha2.y, truFalHol1.u)
+ annotation (Line(points={{-8,-80},{-2,-80}}, color={255,0,255}));
+
+ connect(truFalHol1.y, falEdg1.u)
+ annotation (Line(points={{22,-80},{28,-80}}, color={255,0,255}));
+
+ connect(falEdg1.y, minBoiFloSet1.uStaChaPro) annotation (Line(points={{52,-80},
+ {60,-80},{60,-62},{68,-62}}, color={255,0,255}));
+
+ connect(con3.y, extIndSig2.u)
+ annotation (Line(points={{-68,-50},{-62,-50}}, color={0,0,127}));
+
+ connect(extIndSig2.y, greThr1.u)
+ annotation (Line(points={{-38,-50},{-32,-50}}, color={0,0,127}));
+
+ connect(reaToInt2.y, extIndSig2.index) annotation (Line(points={{-38,-100},{64,
+ -100},{64,-64},{-50,-64},{-50,-62}}, color={255,127,0}));
+
+ annotation (
+ Icon(coordinateSystem(preserveAspectRatio=false, extent={{-100,-100},{100,100}}),
+ graphics={Ellipse(
+ lineColor = {75,138,73},
+ fillColor={255,255,255},
+ fillPattern = FillPattern.Solid,
+ extent={{-100,-100},{100,100}}),
+ Polygon(
+ lineColor = {0,0,255},
+ fillColor = {75,138,73},
+ pattern = LinePattern.None,
+ fillPattern = FillPattern.Solid,
+ points={{-36,60},{64,0},{-36,-60},{-36,60}})}),
+ Diagram(coordinateSystem(
+ preserveAspectRatio=false, extent={{-100,-120},{100,120}})),
+ experiment(
+ StopTime=10,
+ Interval=1,
+ Tolerance=1e-06),
+ __Dymola_Commands(file="./Resources/Scripts/Dymola/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/SetPoints/Validation/MinimumFlowSetPoint.mos"
+ "Simulate and plot"),
+ Documentation(info="
+
+ This example validates
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.SetPoints.MinimumFlowSetPoint.
+
+ ", revisions="
+
+ -
+ September 9, 2020, by Karthik Devaprasad:
+ First implementation.
+
+
+ "));
+end MinimumFlowSetPoint;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/SetPoints/Validation/package.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/SetPoints/Validation/package.mo
new file mode 100644
index 00000000000..b546e2c19c4
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/SetPoints/Validation/package.mo
@@ -0,0 +1,37 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.SetPoints;
+package Validation "Collection of validation models"
+
+ annotation (Icon(graphics={
+ Rectangle(
+ lineColor={200,200,200},
+ fillColor={248,248,248},
+ fillPattern=FillPattern.HorizontalCylinder,
+ extent={{-100,-100},{100,100}},
+ radius=25.0),
+ Rectangle(
+ lineColor={128,128,128},
+ extent={{-100,-100},{100,100}},
+ radius=25.0),
+ Polygon(
+ origin={8,14},
+ lineColor={78,138,73},
+ fillColor={78,138,73},
+ pattern=LinePattern.None,
+ fillPattern=FillPattern.Solid,
+ points={{-58.0,46.0},{42.0,-14.0},{-58.0,-74.0},{-58.0,46.0}})}),
+ Documentation(info="
+
+ This package contains validation models for the classes in
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.SetPoints.
+
+
+ Note that most validation models contain simple input data
+ which may not be realistic, but for which the correct
+ output can be obtained through an analytic solution.
+ The examples plot various outputs, which have been verified against these
+ solutions. These model outputs are stored as reference data and
+ used for continuous validation whenever models in the library change.
+
+ "));
+end Validation;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/SetPoints/Validation/package.order b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/SetPoints/Validation/package.order
new file mode 100644
index 00000000000..d2cc6d86ed8
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/SetPoints/Validation/package.order
@@ -0,0 +1,3 @@
+CondensationControl
+HotWaterSupplyTemperatureReset
+MinimumFlowSetPoint
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/SetPoints/package.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/SetPoints/package.mo
new file mode 100644
index 00000000000..7ddc91c50c0
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/SetPoints/package.mo
@@ -0,0 +1,24 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant;
+package SetPoints "Control sequences for setpoint controllers"
+
+annotation (Icon(graphics={
+ Rectangle(
+ lineColor={200,200,200},
+ fillColor={248,248,248},
+ fillPattern=FillPattern.HorizontalCylinder,
+ extent={{-100,-100},{100,100}},
+ radius=25.0),
+ Rectangle(
+ lineColor={128,128,128},
+ extent={{-100,-100},{100,100}},
+ radius=25.0),
+ Text(
+ extent={{-100,100},{100,-100}},
+ textColor={0,0,0},
+ textString="S")}),
+ Documentation(info="
+
+ This package contains boiler plant setpoint control sequences. The implementation
+ is based on sections 5.3.4, 5.3.5, and 5.3.8 in ASHRAE RP-1711, Draft on March 23, 2020.
+"));
+end SetPoints;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/SetPoints/package.order b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/SetPoints/package.order
new file mode 100644
index 00000000000..6ff402de0c3
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/SetPoints/package.order
@@ -0,0 +1,5 @@
+CondensationControl
+HotWaterSupplyTemperatureReset
+MinimumFlowSetPoint
+Subsequences
+Validation
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Staging/Processes/Down.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Staging/Processes/Down.mo
new file mode 100644
index 00000000000..7c2f9d43136
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Staging/Processes/Down.mo
@@ -0,0 +1,623 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Staging.Processes;
+block Down
+ "Sequence for control devices when there is stage-down command"
+
+ parameter Boolean have_priOnl = false
+ "True: The boiler plant is primary-only"
+ annotation (Dialog(group="Boiler plant parameters"));
+
+ parameter Boolean have_heaPriPum = true
+ "True: Headered hot water pumps;
+ False: Dedicated hot water pumps"
+ annotation (Dialog(group="Boiler plant parameters"));
+
+ parameter Integer nBoi=3
+ "Total number of boilers in the plant"
+ annotation (Dialog(group="Boiler plant parameters"));
+
+ parameter Integer nSta=5
+ "Total number of stages"
+ annotation (Dialog(group="Boiler plant parameters"));
+
+ parameter Real delEnaMinFloSet(
+ final unit="s",
+ displayUnit="s",
+ final quantity="time")=60
+ "Time delay after minimum flow setpoint is achieved in bypass valve"
+ annotation (Evaluate=true,
+ Dialog(group="Time and delay parameters",
+ enable=have_priOnl));
+
+ parameter Real chaIsoValTim(
+ final unit="s",
+ displayUnit="s",
+ final quantity="time") = 60
+ "Time period to slowly change isolation valve position; Should be determined
+ in the field"
+ annotation (Evaluate=true,
+ Dialog(group="Time and delay parameters",
+ enable=have_heaPriPum));
+
+ parameter Real delPreBoiEna(
+ final unit="s",
+ displayUnit="s",
+ final quantity="time") = 30
+ "Time delay after valve position change and pump stage change process has been
+ completed before starting boiler stage change process"
+ annotation (Dialog(group="Time and delay parameters"));
+
+ parameter Real boiChaProOnTim(
+ final unit="s",
+ displayUnit="s",
+ final quantity="time") = 300
+ "Minimum time period threshold for uninterrupted proven on signal from newly
+ enabled boiler during a staging process where one boiler is turned on and
+ another is turned off"
+ annotation (Dialog(group="Time and delay parameters"));
+
+ parameter Real delBoiEna(
+ final unit="s",
+ displayUnit="s",
+ final quantity="time") = 180
+ "Time delay after boiler status change process has been completed before turning
+ off excess isolation valves and pumps"
+ annotation (Dialog(group="Time and delay parameters"));
+
+ parameter Real relFloDif(
+ final unit="1",
+ displayUnit="1")=0.05
+ "Relative error to the flow setpoint for checking if it has been achieved"
+ annotation (Evaluate=true,
+ Dialog(tab="Advanced",
+ enable=have_priOnl));
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uStaDowPro
+ "Rising edge indicating start of stage up process"
+ annotation (Placement(
+ transformation(extent={{-280,-20},{-240,20}}), iconTransformation(
+ extent={{-140,-80},{-100,-40}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uBoi[nBoi]
+ "Boiler proven on status vector"
+ annotation (Placement(transformation(extent={{-280,60},{-240,100}}),
+ iconTransformation(extent={{-140,0},{-100,40}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uStaChaPro
+ "Signal indicating final completion of stage change process" annotation (
+ Placement(transformation(extent={{-280,-150},{-240,-110}}),
+ iconTransformation(extent={{-140,-160},{-100,-120}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uPumChaPro if not have_priOnl
+ "Rising edge indicating all pump change processes have been completed and pumps have been proved on"
+ annotation (Placement(transformation(extent={{-280,-210},{-240,-170}}),
+ iconTransformation(extent={{-140,-200},{-100,-160}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uBoiSet[nBoi]
+ "Boiler status setpoint vector from staging setpoint controller"
+ annotation (Placement(transformation(extent={{-280,20},{-240,60}}),
+ iconTransformation(extent={{-140,-40},{-100,0}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.IntegerInput uStaSet
+ "Boiler stage setpoint index from staging setpoint controller"
+ annotation (Placement(transformation(extent={{-280,-100},{-240,-60}}),
+ iconTransformation(extent={{-140,-120},{-100,-80}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput VMinHotWatSet_flow(
+ final quantity="VolumeFlowRate",
+ final unit="m3/s",
+ displayUnit="m3/s",
+ final min=0) if have_priOnl
+ "Minimum hot water flow rate setpoint"
+ annotation (Placement(transformation(extent={{-280,180},{-240,220}}),
+ iconTransformation(extent={{-140,120},{-100,160}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput VHotWat_flow(
+ final min=0,
+ final quantity="VolumeFlowRate",
+ final unit="m3/s",
+ displayUnit="m3/s") if have_priOnl
+ "Measured hot water flow rate through the minimum flow bypass valve"
+ annotation (Placement(transformation(extent={{-280,220},{-240,260}}),
+ iconTransformation(extent={{-140,160},{-100,200}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput uHotWatIsoVal[nBoi](
+ final min=fill(0, nBoi),
+ final max=fill(1, nBoi),
+ final unit=fill("1", nBoi)) if have_heaPriPum
+ "Boiler hot water isolation valve position vector, indexed according to their
+ respective boilers"
+ annotation (Placement(transformation(extent={{-280,100},{-240,140}}),
+ iconTransformation(extent={{-140,40},{-100,80}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanOutput yBoi[nBoi]
+ "Boiler enable status vector"
+ annotation (Placement(transformation(extent={{280,90},{320,130}}),
+ iconTransformation(extent={{100,100},{140,140}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanOutput yStaChaPro
+ "Rising edge indicating end of stage change process"
+ annotation (Placement(transformation(extent={{280,30},{320,70}}),
+ iconTransformation(extent={{100,60},{140,100}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanOutput yPumChaPro if not
+ have_priOnl
+ "Rising edge indicating start of pump change process"
+ annotation (Placement(transformation(extent={{280,-260},{320,-220}}),
+ iconTransformation(extent={{100,-140},{140,-100}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanOutput yOnOff
+ "Signal indicating whether stage change involves simultaneous turning on
+ and turning off of boilers"
+ annotation (Placement(transformation(extent={{280,-130},{320,-90}}),
+ iconTransformation(extent={{100,-20},{140,20}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.IntegerOutput yNexEnaBoi
+ "Boiler index of next boiler being enabled"
+ annotation (Placement(transformation(extent={{280,-170},{320,-130}}),
+ iconTransformation(extent={{100,-60},{140,-20}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.IntegerOutput yLasDisBoi
+ "Boiler index of last boiler enabled that will be disabled"
+ annotation (Placement(transformation(extent={{280,-210},{320,-170}}),
+ iconTransformation(extent={{100,-100},{140,-60}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealOutput yHotWatIsoVal[nBoi](
+ final min=fill(0, nBoi),
+ final max=fill(1, nBoi),
+ final unit=fill("1", nBoi)) if have_heaPriPum
+ "Boiler hot water isolation valve position vector, indexed according to their
+ respective boilers"
+ annotation (Placement(transformation(extent={{280,-90},{320,-50}}),
+ iconTransformation(extent={{100,20},{140,60}})));
+
+protected
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Staging.Processes.Subsequences.ResetMinBypass minBypRes(
+ final delEna=delEnaMinFloSet,
+ final relFloDif=relFloDif) if have_priOnl
+ "Reset process for minimum flow bypass valve setpoint"
+ annotation (Placement(transformation(extent={{-170,10},{-150,30}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Staging.Processes.Subsequences.NextBoiler nexBoi(
+ final nBoi=nBoi)
+ "Identify boiler indices to be turned on and off during the stage change process"
+ annotation (Placement(transformation(extent={{-170,-76},{-150,-56}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Staging.Processes.Subsequences.HWIsoVal enaHotWatIsoVal(
+ final nBoi=nBoi,
+ final chaHotWatIsoTim=chaIsoValTim,
+ final iniValPos=0,
+ final endValPos=1) if have_heaPriPum
+ "Open hot water isolation valve for boiler being enabled"
+ annotation (Placement(transformation(extent={{-70,-10},{-50,10}})));
+
+ Buildings.Controls.OBC.CDL.Logical.And and1
+ "Check for completion of valve opening process and pump stage change process"
+ annotation (Placement(transformation(extent={{0,-10},{20,10}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Staging.Processes.Subsequences.DisableBoiler disBoi(
+ final nBoi=nBoi,
+ final proOnTim=boiChaProOnTim)
+ "Diable boiler status in boiler status vector as per required stage change"
+ annotation (Placement(transformation(extent={{60,-10},{80,10}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Staging.Processes.Subsequences.HWIsoVal disHotWatIsoVal1(
+ final nBoi=nBoi,
+ final chaHotWatIsoTim=chaIsoValTim,
+ final iniValPos=1,
+ final endValPos=0) if have_heaPriPum
+ "Close hot water valve for boiler being disabled"
+ annotation (Placement(transformation(extent={{150,-10},{170,10}})));
+
+ Buildings.Controls.OBC.CDL.Logical.And and3
+ "Check for completion of valve closing process and pump change process"
+ annotation (Placement(transformation(extent={{190,-10},{210,10}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Latch lat
+ "Latch to retain stage-up edge signal till the stage change process is completed"
+ annotation (Placement(transformation(extent={{-222,-10},{-202,10}})));
+
+ Buildings.Controls.OBC.CDL.Logical.TrueDelay truDel(
+ final delayTime=delBoiEna)
+ "Time delay after boiler status has been changed"
+ annotation (Placement(transformation(extent={{100,-10},{120,10}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Latch lat3 if not have_priOnl
+ "Hold process completion signal after pump enable process"
+ annotation (Placement(transformation(extent={{-140,-200},{-120,-180}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Latch lat4 if not have_priOnl
+ "Hold process completion signal after pump disable process"
+ annotation (Placement(transformation(extent={{160,-200},{180,-180}})));
+
+ Buildings.Controls.OBC.CDL.Logical.And and4 if not have_priOnl
+ "Check for pump disable completion after start of pump disable process"
+ annotation (Placement(transformation(extent={{132,-200},{152,-180}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Edge edg
+ "Detect change in process completion status and send out pulse signal"
+ annotation (Placement(transformation(extent={{230,40},{250,60}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Edge edg1 if not have_priOnl
+ "Generate pulse to signal start of pump change process"
+ annotation (Placement(transformation(extent={{-40,-250},{-20,-230}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Edge edg2 if not have_priOnl
+ "Generate pulse to signal start of pump change process"
+ annotation (Placement(transformation(extent={{140,-246},{160,-226}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Or or2 if not have_priOnl
+ "Check for pump change proces start signal"
+ annotation (Placement(transformation(extent={{210,-250},{230,-230}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Latch lat5 if not have_heaPriPum
+ "Latch to short valve opening process in dedicated pump configuration plants"
+ annotation (Placement(transformation(extent={{-70,30},{-50,50}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Latch lat6 if not have_heaPriPum
+ "Latch to short valve closing process in dedicated pump configuration plants"
+ annotation (Placement(transformation(extent={{150,30},{170,50}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Switch swi[nBoi] if have_heaPriPum
+ "Pass valve position signal from valve opening controller once the opening process starts"
+ annotation (Placement(transformation(extent={{40,-140},{60,-120}})));
+
+ Buildings.Controls.OBC.CDL.Routing.BooleanScalarReplicator booRep(
+ final nout=nBoi) if have_heaPriPum
+ "Boolean replicator"
+ annotation (Placement(transformation(extent={{0,-140},{20,-120}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Switch swi1[nBoi] if have_heaPriPum
+ "Pass valve position signal from valve closing controller once the closing process starts"
+ annotation (Placement(transformation(extent={{100,-120},{120,-100}})));
+
+ Buildings.Controls.OBC.CDL.Routing.BooleanScalarReplicator booRep1(
+ final nout=nBoi) if have_heaPriPum
+ "Boolean replicator"
+ annotation (Placement(transformation(extent={{70,-160},{90,-140}})));
+
+ Buildings.Controls.OBC.CDL.Logical.TrueDelay truDel1(
+ final delayTime=delPreBoiEna)
+ "Time delay after valve has been opened and pump status has been changed"
+ annotation (Placement(transformation(extent={{0,90},{20,110}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Switch logSwi
+ "Pass process completion signal based on whether stage change involves turning off larger boiler or not"
+ annotation (Placement(transformation(extent={{40,-50},{60,-30}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Latch lat1 if have_heaPriPum
+ "Hold process completion signal after valve has been opened"
+ annotation (Placement(transformation(extent={{-32,-120},{-12,-100}})));
+
+ Buildings.Controls.OBC.CDL.Logical.MultiOr mulOr(
+ final nin=1) if not have_priOnl
+ "Pass enable signal for plants that are not primary-only"
+ annotation (Placement(transformation(extent={{-170,50},{-150,70}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant con(
+ final k=true) if have_priOnl
+ "Boolean True signal"
+ annotation (Placement(transformation(extent={{-160,-170},{-140,-150}})));
+
+ Buildings.Controls.OBC.CDL.Logical.And and2 if not have_priOnl
+ "Logical And"
+ annotation (Placement(transformation(extent={{-80,-250},{-60,-230}})));
+
+equation
+ connect(lat.y, minBypRes.uUpsDevSta) annotation (Line(points={{-200,0},{-196,
+ 0},{-196,28},{-172,28}},
+ color={255,0,255}));
+
+ connect(lat.y, nexBoi.chaPro) annotation (Line(points={{-200,0},{-196,0},{-196,
+ -73},{-172,-73}}, color={255,0,255}));
+
+ connect(truDel.y,disHotWatIsoVal1. uUpsDevSta) annotation (Line(points={{122,0},
+ {126,0},{126,-5},{148,-5}}, color={255,0,255}));
+
+ connect(VHotWat_flow, minBypRes.VHotWat_flow) annotation (Line(points={{-260,
+ 240},{-176,240},{-176,16},{-172,16}},
+ color={0,0,127}));
+
+ connect(VMinHotWatSet_flow, minBypRes.VMinHotWatSet_flow) annotation (Line(
+ points={{-260,200},{-180,200},{-180,12},{-172,12}}, color={0,0,127}));
+
+ connect(uHotWatIsoVal, enaHotWatIsoVal.uHotWatIsoVal) annotation (Line(points={{-260,
+ 120},{-80,120},{-80,5},{-72,5}}, color={0,0,127}));
+
+ connect(nexBoi.uBoiSet, uBoiSet) annotation (Line(points={{-172,-66},{-190,-66},
+ {-190,40},{-260,40}}, color={255,0,255}));
+
+ connect(uStaSet, nexBoi.uStaSet) annotation (Line(points={{-260,-80},{-234,-80},
+ {-234,-59},{-172,-59}}, color={255,127,0}));
+
+ connect(uStaDowPro, lat.u)
+ annotation (Line(points={{-260,0},{-224,0}}, color={255,0,255}));
+
+ connect(lat3.y, and1.u2) annotation (Line(points={{-118,-190},{-48,-190},{-48,
+ -26},{-10,-26},{-10,-8},{-2,-8}}, color={255,0,255}));
+
+ connect(uPumChaPro, lat3.u)
+ annotation (Line(points={{-260,-190},{-142,-190}}, color={255,0,255}));
+
+ connect(and4.y, lat4.u)
+ annotation (Line(points={{154,-190},{158,-190}}, color={255,0,255}));
+
+ connect(truDel.y, and4.u1) annotation (Line(points={{122,0},{126,0},{126,-190},
+ {130,-190}}, color={255,0,255}));
+
+ connect(uPumChaPro, and4.u2) annotation (Line(points={{-260,-190},{-160,-190},
+ {-160,-210},{120,-210},{120,-198},{130,-198}}, color={255,0,255}));
+
+ connect(lat4.y, and3.u2) annotation (Line(points={{182,-190},{184,-190},{184,
+ -8},{188,-8}}, color={255,0,255}));
+
+ connect(edg.y, yStaChaPro)
+ annotation (Line(points={{252,50},{300,50}}, color={255,0,255}));
+
+ connect(edg2.y, or2.u1) annotation (Line(points={{162,-236},{200,-236},{200,
+ -240},{208,-240}}, color={255,0,255}));
+
+ connect(edg1.y, or2.u2) annotation (Line(points={{-18,-240},{66,-240},{66,-248},
+ {208,-248}}, color={255,0,255}));
+
+ connect(or2.y, yPumChaPro)
+ annotation (Line(points={{232,-240},{300,-240}}, color={255,0,255}));
+
+ connect(nexBoi.yOnOff, yOnOff) annotation (Line(points={{-148,-66},{144,-66},{
+ 144,-110},{300,-110}}, color={255,0,255}));
+
+ connect(truDel.y, edg2.u) annotation (Line(points={{122,0},{126,0},{126,-236},
+ {138,-236}}, color={255,0,255}));
+
+ connect(minBypRes.yMinBypRes, lat5.u) annotation (Line(points={{-148,20},{
+ -110,20},{-110,40},{-72,40}},
+ color={255,0,255}));
+
+ connect(lat5.y, and1.u1) annotation (Line(points={{-48,40},{-6,40},{-6,0},{-2,
+ 0}}, color={255,0,255}));
+
+ connect(truDel.y, lat6.u) annotation (Line(points={{122,0},{126,0},{126,40},{148,
+ 40}}, color={255,0,255}));
+
+ connect(lat6.y, and3.u1) annotation (Line(points={{172,40},{180,40},{180,0},{188,
+ 0}}, color={255,0,255}));
+
+ connect(enaHotWatIsoVal.yHotWatIsoVal, swi.u1) annotation (Line(points={{-48,
+ -6},{-30,-6},{-30,-90},{26,-90},{26,-122},{38,-122}}, color={0,0,127}));
+
+ connect(uHotWatIsoVal, swi.u3) annotation (Line(points={{-260,120},{30,120},{
+ 30,-138},{38,-138}}, color={0,0,127}));
+
+ connect(booRep.y, swi.u2)
+ annotation (Line(points={{22,-130},{38,-130}}, color={255,0,255}));
+
+ connect(swi.y, swi1.u3) annotation (Line(points={{62,-130},{92,-130},{92,-118},
+ {98,-118}}, color={0,0,127}));
+
+ connect(disHotWatIsoVal1.yHotWatIsoVal, swi1.u1) annotation (Line(points={{
+ 172,-6},{180,-6},{180,-70},{92,-70},{92,-102},{98,-102}}, color={0,0,
+ 127}));
+
+ connect(truDel.y, booRep1.u) annotation (Line(points={{122,0},{126,0},{126,-166},
+ {60,-166},{60,-150},{68,-150}}, color={255,0,255}));
+
+ connect(booRep1.y, swi1.u2) annotation (Line(points={{92,-150},{96,-150},{96,
+ -110},{98,-110}}, color={255,0,255}));
+
+ connect(swi1.y, yHotWatIsoVal) annotation (Line(points={{122,-110},{134,-110},
+ {134,-90},{210,-90},{210,-70},{300,-70}}, color={0,0,127}));
+
+ connect(and1.y, truDel1.u) annotation (Line(points={{22,0},{28,0},{28,60},{
+ -10,60},{-10,100},{-2,100}},
+ color={255,0,255}));
+
+ connect(disHotWatIsoVal1.yEnaHotWatIsoVal, and3.u1) annotation (Line(points={{
+ 172,6},{180,6},{180,0},{188,0}}, color={255,0,255}));
+
+ connect(minBypRes.yMinBypRes, booRep.u) annotation (Line(points={{-148,20},{
+ -110,20},{-110,-130},{-2,-130}}, color={255,0,255}));
+
+ connect(minBypRes.yMinBypRes, enaHotWatIsoVal.uUpsDevSta) annotation (Line(
+ points={{-148,20},{-110,20},{-110,-5},{-72,-5}}, color={255,0,255}));
+
+ connect(uHotWatIsoVal, disHotWatIsoVal1.uHotWatIsoVal) annotation (Line(
+ points={{-260,120},{144,120},{144,5},{148,5}}, color={0,0,127}));
+
+ connect(enaHotWatIsoVal.yEnaHotWatIsoVal, lat1.u) annotation (Line(points={{
+ -48,6},{-40,6},{-40,-110},{-34,-110}}, color={255,0,255}));
+
+ connect(lat1.y, and1.u1) annotation (Line(points={{-10,-110},{-6,-110},{-6,0},
+ {-2,0}}, color={255,0,255}));
+
+ connect(nexBoi.yOnOff, logSwi.u2) annotation (Line(points={{-148,-66},{34,-66},
+ {34,-40},{38,-40}}, color={255,0,255}));
+
+ connect(truDel1.y, logSwi.u1) annotation (Line(points={{22,100},{36,100},{36,-32},
+ {38,-32}}, color={255,0,255}));
+
+ connect(lat.y, logSwi.u3) annotation (Line(points={{-200,0},{-196,0},{-196,-48},
+ {38,-48}}, color={255,0,255}));
+
+ connect(nexBoi.yEnaSmaBoi, enaHotWatIsoVal.nexChaBoi) annotation (Line(points=
+ {{-148,-75},{-76,-75},{-76,8},{-72,8}}, color={255,127,0}));
+
+ connect(logSwi.y, disBoi.uUpsDevSta) annotation (Line(points={{62,-40},{70,-40},
+ {70,-20},{50,-20},{50,2},{58,2}}, color={255,0,255}));
+
+ connect(lat.y, disBoi.uStaDow) annotation (Line(points={{-200,0},{-196,0},{-196,
+ -20},{44,-20},{44,6},{58,6}}, color={255,0,255}));
+
+ connect(nexBoi.yEnaSmaBoi, disBoi.nexEnaBoi) annotation (Line(points={{-148,-75},
+ {-76,-75},{-76,20},{50,20},{50,9},{58,9}}, color={255,127,0}));
+
+ connect(uBoi, disBoi.uBoi) annotation (Line(points={{-260,80},{54,80},{54,-2},
+ {58,-2}}, color={255,0,255}));
+
+ connect(nexBoi.yLasDisBoi, disBoi.nexDisBoi) annotation (Line(points={{-148,-70},
+ {26,-70},{26,-5},{58,-5}}, color={255,127,0}));
+
+ connect(nexBoi.yOnOff, disBoi.uOnOff) annotation (Line(points={{-148,-66},{34,
+ -66},{34,-9},{58,-9}}, color={255,0,255}));
+
+ connect(disBoi.yBoiDisPro, truDel.u) annotation (Line(points={{82,-8},{90,-8},
+ {90,0},{98,0}}, color={255,0,255}));
+
+ connect(disBoi.yBoi, yBoi) annotation (Line(points={{82,0},{86,0},{86,110},{300,
+ 110}}, color={255,0,255}));
+
+ connect(nexBoi.yLasDisBoi, disHotWatIsoVal1.nexChaBoi) annotation (Line(
+ points={{-148,-70},{60,-70},{60,-60},{140,-60},{140,8},{148,8}}, color={
+ 255,127,0}));
+
+ connect(and3.y, edg.u) annotation (Line(points={{212,0},{220,0},{220,50},{228,
+ 50}}, color={255,0,255}));
+
+ connect(nexBoi.yOnOff, enaHotWatIsoVal.chaPro) annotation (Line(points={{-148,
+ -66},{-80,-66},{-80,-8},{-72,-8}}, color={255,0,255}));
+
+ connect(nexBoi.yOnOff, minBypRes.chaPro) annotation (Line(points={{-148,-66},{
+ -140,-66},{-140,0},{-184,0},{-184,24},{-172,24}}, color={255,0,255}));
+
+ connect(lat.y, disHotWatIsoVal1.chaPro) annotation (Line(points={{-200,0},{
+ -196,0},{-196,-20},{44,-20},{44,-18},{146,-18},{146,-8},{148,-8}},
+ color={255,
+ 0,255}));
+
+ connect(lat.y, mulOr.u[1]) annotation (Line(points={{-200,0},{-196,0},{-196,60},
+ {-172,60}}, color={255,0,255}));
+
+ connect(mulOr.y, lat5.u) annotation (Line(points={{-148,60},{-110,60},{-110,40},
+ {-72,40}}, color={255,0,255}));
+
+ connect(mulOr.y, enaHotWatIsoVal.uUpsDevSta) annotation (Line(points={{-148,60},
+ {-110,60},{-110,-5},{-72,-5}}, color={255,0,255}));
+
+ connect(mulOr.y, booRep.u) annotation (Line(points={{-148,60},{-110,60},{-110,
+ -130},{-2,-130}}, color={255,0,255}));
+
+ connect(nexBoi.yEnaSmaBoi, yNexEnaBoi) annotation (Line(points={{-148,-75},{-76,
+ -75},{-76,-86},{260,-86},{260,-150},{300,-150}}, color={255,127,0}));
+
+ connect(con.y, and1.u2) annotation (Line(points={{-138,-160},{-48,-160},{-48,-26},
+ {-10,-26},{-10,-8},{-2,-8}}, color={255,0,255}));
+ connect(con.y, and3.u2) annotation (Line(points={{-138,-160},{52,-160},{52,-172},
+ {184,-172},{184,-8},{188,-8}}, color={255,0,255}));
+ connect(nexBoi.yLasDisBoi, yLasDisBoi) annotation (Line(points={{-148,-70},{60,
+ -70},{60,-60},{140,-60},{140,-116},{254,-116},{254,-190},{300,-190}},
+ color={255,127,0}));
+ connect(uStaChaPro, lat.clr) annotation (Line(points={{-260,-130},{-230,-130},
+ {-230,-6},{-224,-6}}, color={255,0,255}));
+ connect(uStaChaPro, lat5.clr) annotation (Line(points={{-260,-130},{-230,-130},
+ {-230,-110},{-90,-110},{-90,34},{-72,34}}, color={255,0,255}));
+ connect(uStaChaPro, lat1.clr) annotation (Line(points={{-260,-130},{-230,-130},
+ {-230,-110},{-90,-110},{-90,-116},{-34,-116}}, color={255,0,255}));
+ connect(uStaChaPro, lat3.clr) annotation (Line(points={{-260,-130},{-230,-130},
+ {-230,-196},{-142,-196}}, color={255,0,255}));
+ connect(uStaChaPro, lat4.clr) annotation (Line(points={{-260,-130},{-230,-130},
+ {-230,-110},{-90,-110},{-90,-180},{110,-180},{110,-214},{156,-214},{156,
+ -196},{158,-196}}, color={255,0,255}));
+ connect(uStaChaPro, lat6.clr) annotation (Line(points={{-260,-130},{-230,-130},
+ {-230,-110},{-90,-110},{-90,70},{120,70},{120,34},{148,34}}, color={255,
+ 0,255}));
+
+ connect(and2.y, edg1.u)
+ annotation (Line(points={{-58,-240},{-42,-240}}, color={255,0,255}));
+ connect(mulOr.y, and2.u1) annotation (Line(points={{-148,60},{-110,60},{-110,-240},
+ {-82,-240}}, color={255,0,255}));
+ connect(nexBoi.yOnOff, and2.u2) annotation (Line(points={{-148,-66},{-100,-66},
+ {-100,-248},{-82,-248}}, color={255,0,255}));
+annotation (
+ defaultComponentName="dowProCon",
+ Diagram(coordinateSystem(preserveAspectRatio=false,
+ extent={{-240,-260},{280,260}})),
+ Icon(coordinateSystem(extent={{-100,-200},{100,200}}), graphics={
+ Rectangle(
+ extent={{-100,-200},{100,200}},
+ lineColor={0,0,127},
+ fillColor={255,255,255},
+ fillPattern=FillPattern.Solid,
+ borderPattern=BorderPattern.Raised),
+ Text(
+ extent={{-120,260},{120,200}},
+ textColor={0,0,255},
+ textString="%name"),
+ Rectangle(
+ extent={{-10,120},{10,-140}},
+ lineColor={200,200,200},
+ fillColor={207,207,207},
+ fillPattern=FillPattern.Solid,
+ rotation=180),
+ Polygon(
+ points={{0,160},{-40,120},{0,120},{40,120},{0,160}},
+ lineColor={200,200,200},
+ fillColor={207,207,207},
+ fillPattern=FillPattern.Solid,
+ rotation=180)}),
+Documentation(info="
+
+Block that controls boiler status and isolation valve position, initiates status
+change in devices like pumps and minimum flow bypass valve, and resets plant
+parameters like minimum flow setpoint when there is a stage-down command.
+This development is based on ASHRAE RP-1711, March 2020 draft,sections 5.3.3.11 - 5.3.3.18,
+which specify the step-by-step control of devices during boiler staging down process.
+
+
+-
+Identify the boiler(s) that should be disabled (and enabled). This is implemented in block
nexBoi
. See
+
+Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Staging.Processes.Subsequences.NextBoiler
+for more decriptions.
+
+-
+If the stage change process involves disabling a larger boiler and enabling a smaller boiler,
+
+
+-
+If the stage down process does not involve turning on a smaller boiler, start the
+staging down process immediately by changing
yBoi
using disBoi
.
+
+-
+Wait for time
delBoiEna
before closing the isolation valve for the
+disabled boiler using disHotWatIsoVal1
and initiating the pump stage
+change process.
+
+-
+End the staging process after the valve has been closed and the pump change process
+completion signal has been received. Send rising edge signal through
yStaChaPro
+to indicate the same.
+
+
+", revisions="
+
+-
+July 20, 2020, by Karthik Devaprasad:
+First implementation.
+
+
+"));
+end Down;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Staging/Processes/Subsequences/DisableBoiler.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Staging/Processes/Subsequences/DisableBoiler.mo
new file mode 100644
index 00000000000..eb4ef4a5a27
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Staging/Processes/Subsequences/DisableBoiler.mo
@@ -0,0 +1,573 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Staging.Processes.Subsequences;
+block DisableBoiler
+ "Sequence for disabling boiler in stage-down process"
+
+ parameter Integer nBoi = 3
+ "Total number of boilers";
+
+ parameter Real proOnTim(
+ final unit="s",
+ final quantity="Time",
+ displayUnit="s") = 300
+ "Enabled boiler operation time to indicate if it is proven on";
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uStaDow
+ "Stage-down command"
+ annotation (Placement(transformation(extent={{-240,120},{-200,160}}),
+ iconTransformation(extent={{-140,40},{-100,80}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uUpsDevSta
+ "Status of upstream device: true=upstream device has completed stage change
+ process"
+ annotation (Placement(transformation(extent={{-240,90},{-200,130}}),
+ iconTransformation(extent={{-140,0},{-100,40}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uBoi[nBoi]
+ "Boiler proven on status vector"
+ annotation (Placement(transformation(extent={{-240,40},{-200,80}}),
+ iconTransformation(extent={{-140,-40},{-100,0}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uOnOff
+ "Signal indicating if the stage change process requires one boiler to be
+ enabled while another is disabled"
+ annotation (Placement(transformation(extent={{-240,-140},{-200,-100}}),
+ iconTransformation(extent={{-140,-110},{-100,-70}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.IntegerInput nexDisBoi
+ "Next disabling boiler index"
+ annotation (Placement(transformation(extent={{-240,-100},{-200,-60}}),
+ iconTransformation(extent={{-140,-70},{-100,-30}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.IntegerInput nexEnaBoi
+ "Index of next enabling boiler when there is any stage down that requires one boiler
+ on and another off"
+ annotation (Placement(transformation(extent={{-240,180},{-200,220}}),
+ iconTransformation(extent={{-140,70},{-100,110}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanOutput yBoi[nBoi]
+ "Boiler enabling status vector"
+ annotation (Placement(transformation(extent={{200,-140},{240,-100}}),
+ iconTransformation(extent={{100,-20},{140,20}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanOutput yBoiDisPro
+ "Signal indicating completion of boiler disable process; True: Disable process
+ has been completed for the stage change process"
+ annotation (Placement(transformation(extent={{200,-70},{240,-30}}),
+ iconTransformation(extent={{100,-100},{140,-60}})));
+
+protected
+ final parameter Integer boiInd[nBoi]={i for i in 1:nBoi}
+ "Boiler index, {1,2,...,n}";
+
+ Buildings.Controls.OBC.CDL.Logical.Switch logSwi[nBoi]
+ "Logical switch"
+ annotation (Placement(transformation(extent={{100,190},{120,210}})));
+
+ Buildings.Controls.OBC.CDL.Logical.And and2
+ "Check for stage change sigal and upstream device status"
+ annotation (Placement(transformation(extent={{-160,130},{-140,150}})));
+
+ Buildings.Controls.OBC.CDL.Routing.BooleanScalarReplicator booRep(
+ final nout=nBoi)
+ "Replicate boolean input"
+ annotation (Placement(transformation(extent={{-100,130},{-80,150}})));
+
+ Buildings.Controls.OBC.CDL.Logical.And and1[nBoi]
+ "Logical and"
+ annotation (Placement(transformation(extent={{-40,190},{-20,210}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant con[nBoi](
+ final k=fill(true, nBoi))
+ "True constant"
+ annotation (Placement(transformation(extent={{-40,220},{-20,240}})));
+
+ Buildings.Controls.OBC.CDL.Conversions.BooleanToReal booToRea[nBoi]
+ "Convert boolean input to real output"
+ annotation (Placement(transformation(extent={{-100,90},{-80,110}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.GreaterThreshold greEquThr[nBoi](
+ final t=fill(0.5, nBoi))
+ "Convert real input to boolean output"
+ annotation (Placement(transformation(extent={{20,90},{40,110}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Switch logSwi1[nBoi]
+ "Logical switch"
+ annotation (Placement(transformation(extent={{100,0},{120,20}})));
+
+ Buildings.Controls.OBC.CDL.Logical.And and3[nBoi]
+ "Logical and"
+ annotation (Placement(transformation(extent={{40,-10},{60,10}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant con1[nBoi](
+ final k=fill(false, nBoi))
+ "False constant"
+ annotation (Placement(transformation(extent={{40,20},{60,40}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Switch logSwi2[nBoi]
+ "Logical switch"
+ annotation (Placement(transformation(extent={{160,40},{180,60}})));
+
+ Buildings.Controls.OBC.CDL.Routing.IntegerScalarReplicator intRep(
+ final nout=nBoi)
+ "Replicate integer input"
+ annotation (Placement(transformation(extent={{-160,190},{-140,210}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Equal intEqu[nBoi]
+ "Check next enabling isolation valve"
+ annotation (Placement(transformation(extent={{-100,190},{-80,210}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Timer tim(t=proOnTim)
+ "Count the time after new boiler has been enabled"
+ annotation (Placement(transformation(extent={{-100,-10},{-80,10}})));
+
+ Buildings.Controls.OBC.CDL.Discrete.TriggeredSampler triSam[nBoi]
+ "Record the old boiler hot water isolation valve status"
+ annotation (Placement(transformation(extent={{-20,90},{0,110}})));
+
+ Buildings.Controls.OBC.CDL.Routing.BooleanScalarReplicator booRep1(
+ final nout=nBoi)
+ "Replicate boolean input"
+ annotation (Placement(transformation(extent={{-60,60},{-40,80}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Edge edg
+ "Rising edge detector"
+ annotation (Placement(transformation(extent={{-100,60},{-80,80}})));
+
+ Buildings.Controls.OBC.CDL.Routing.BooleanScalarReplicator booRep2(
+ final nout=nBoi)
+ "Replicate boolean input"
+ annotation (Placement(transformation(extent={{-20,-10},{0,10}})));
+
+ Buildings.Controls.OBC.CDL.Routing.BooleanScalarReplicator booRep3(
+ final nout=nBoi)
+ "Replicate boolean input"
+ annotation (Placement(transformation(extent={{80,40},{100,60}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Not not1
+ "Logical not"
+ annotation (Placement(transformation(extent={{-20,40},{0,60}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant conInt[nBoi](
+ final k=boiInd)
+ "Boiler index array"
+ annotation (Placement(transformation(extent={{-160,160},{-140,180}})));
+
+ Buildings.Controls.OBC.CDL.Routing.IntegerScalarReplicator intRep1(
+ final nout=nBoi)
+ "Replicate integer input"
+ annotation (Placement(transformation(extent={{-160,-90},{-140,-70}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Equal intEqu1[nBoi]
+ "Check next enabling isolation valve"
+ annotation (Placement(transformation(extent={{-100,-90},{-80,-70}})));
+
+ Buildings.Controls.OBC.CDL.Routing.BooleanScalarReplicator booRep4(
+ final nout=nBoi)
+ "Replicate boolean input"
+ annotation (Placement(transformation(extent={{-80,-170},{-60,-150}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Edge edg1
+ "Rising edge, output true at the moment when input turns from false to true"
+ annotation (Placement(transformation(extent={{-160,-250},{-140,-230}})));
+
+ Buildings.Controls.OBC.CDL.Conversions.BooleanToReal booToRea1[nBoi]
+ "Convert boolean input to real output"
+ annotation (Placement(transformation(extent={{-160,-220},{-140,-200}})));
+
+ Buildings.Controls.OBC.CDL.Discrete.TriggeredSampler triSam1[nBoi]
+ "Record the old boiler hot water isolation valve status"
+ annotation (Placement(transformation(extent={{-80,-220},{-60,-200}})));
+
+ Buildings.Controls.OBC.CDL.Routing.BooleanScalarReplicator booRep5(
+ final nout=nBoi)
+ "Replicate boolean input"
+ annotation (Placement(transformation(extent={{-120,-250},{-100,-230}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.GreaterThreshold greEquThr1[nBoi](
+ final t=fill(0.5, nBoi))
+ "Convert real input to boolean output"
+ annotation (Placement(transformation(extent={{40,-220},{60,-200}})));
+
+ Buildings.Controls.OBC.CDL.Logical.And and4[nBoi]
+ "Logical and"
+ annotation (Placement(transformation(extent={{40,-190},{60,-170}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant con2[nBoi](
+ final k=fill(false, nBoi))
+ "False constant"
+ annotation (Placement(transformation(extent={{40,-160},{60,-140}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Switch logSwi3[nBoi]
+ "Logical switch"
+ annotation (Placement(transformation(extent={{100,-190},{120,-170}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Switch logSwi4[nBoi]
+ "Logical switch"
+ annotation (Placement(transformation(extent={{160,-130},{180,-110}})));
+
+ Buildings.Controls.OBC.CDL.Routing.BooleanScalarReplicator booRep6(
+ final nout=nBoi)
+ "Replicate boolean input"
+ annotation (Placement(transformation(extent={{100,-130},{120,-110}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Switch logSwi5[nBoi]
+ "Logical switch"
+ annotation (Placement(transformation(extent={{100,-100},{120,-80}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Switch logSwi6[nBoi]
+ "Logical switch"
+ annotation (Placement(transformation(extent={{100,-250},{120,-230}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Switch logSwi7
+ "Logical switch"
+ annotation (Placement(transformation(extent={{100,-60},{120,-40}})));
+
+equation
+ connect(nexEnaBoi, intRep.u)
+ annotation (Line(points={{-220,200},{-162,200}}, color={255,127,0}));
+
+ connect(intRep.y,intEqu. u1)
+ annotation (Line(points={{-138,200},{-102,200}}, color={255,127,0}));
+
+ connect(uUpsDevSta, and2.u2) annotation (Line(points={{-220,110},{-170,110},{-170,
+ 132},{-162,132}}, color={255,0,255}));
+
+ connect(uStaDow, and2.u1)
+ annotation (Line(points={{-220,140},{-162,140}}, color={255,0,255}));
+
+ connect(and2.y,booRep. u)
+ annotation (Line(points={{-138,140},{-102,140}}, color={255,0,255}));
+
+ connect(intEqu.y,and1. u1)
+ annotation (Line(points={{-78,200},{-42,200}}, color={255,0,255}));
+
+ connect(booRep.y,and1. u2)
+ annotation (Line(points={{-78,140},{-70,140},{-70,192},{-42,192}},
+ color={255,0,255}));
+
+ connect(and1.y,logSwi. u2)
+ annotation (Line(points={{-18,200},{98,200}}, color={255,0,255}));
+
+ connect(con.y,logSwi. u1)
+ annotation (Line(points={{-18,230},{0,230},{0,208},{98,208}}, color={255,0,255}));
+
+ connect(uBoi,booToRea. u)
+ annotation (Line(points={{-220,60},{-170,60},{-170,100},{-102,100}},
+ color={255,0,255}));
+
+ connect(and2.y,edg. u)
+ annotation (Line(points={{-138,140},{-120,140},{-120,70},{-102,70}},
+ color={255,0,255}));
+
+ connect(booToRea.y,triSam. u)
+ annotation (Line(points={{-78,100},{-22,100}}, color={0,0,127}));
+
+ connect(edg.y,booRep1. u)
+ annotation (Line(points={{-78,70},{-62,70}}, color={255,0,255}));
+
+ connect(booRep1.y,triSam. trigger)
+ annotation (Line(points={{-38,70},{-10,70},{-10,88}}, color={255,0,255}));
+
+ connect(triSam.y,greEquThr. u)
+ annotation (Line(points={{2,100},{18,100}}, color={0,0,127}));
+
+ connect(greEquThr.y,logSwi. u3)
+ annotation (Line(points={{42,100},{60,100},{60,192},{98,192}},
+ color={255,0,255}));
+
+ connect(and2.y,tim. u)
+ annotation (Line(points={{-138,140},{-120,140},{-120,0},{-102,0}},
+ color={255,0,255}));
+
+ connect(booRep2.y,and3. u1)
+ annotation (Line(points={{2,0},{38,0}}, color={255,0,255}));
+
+ connect(and3.y,logSwi1. u2)
+ annotation (Line(points={{62,0},{80,0},{80,10},{98,10}},
+ color={255,0,255}));
+
+ connect(con1.y,logSwi1. u1)
+ annotation (Line(points={{62,30},{80,30},{80,18},{98,18}},
+ color={255,0,255}));
+
+ connect(uBoi,logSwi1. u3)
+ annotation (Line(points={{-220,60},{-170,60},{-170,-20},{90,-20},{90,2},{98,
+ 2}}, color={255,0,255}));
+
+ connect(booRep3.y,logSwi2. u2)
+ annotation (Line(points={{102,50},{158,50}}, color={255,0,255}));
+
+ connect(logSwi1.y,logSwi2. u3)
+ annotation (Line(points={{122,10},{140,10},{140,42},{158,42}},
+ color={255,0,255}));
+
+ connect(logSwi.y,logSwi2. u1)
+ annotation (Line(points={{122,200},{140,200},{140,58},{158,58}},
+ color={255,0,255}));
+
+ connect(conInt.y,intEqu. u2)
+ annotation (Line(points={{-138,170},{-110,170},{-110,192},{-102,192}},
+ color={255,127,0}));
+
+ connect(nexDisBoi, intRep1.u)
+ annotation (Line(points={{-220,-80},{-162,-80}}, color={255,127,0}));
+
+ connect(intRep1.y,intEqu1. u1)
+ annotation (Line(points={{-138,-80},{-102,-80}}, color={255,127,0}));
+
+ connect(conInt.y,intEqu1. u2)
+ annotation (Line(points={{-138,170},{-110,170},{-110,-88},{-102,-88}},
+ color={255,127,0}));
+
+ connect(intEqu1.y,and3. u2)
+ annotation (Line(points={{-78,-80},{10,-80},{10,-8},{38,-8}},
+ color={255,0,255}));
+
+ connect(not1.y, booRep3.u)
+ annotation (Line(points={{2,50},{78,50}}, color={255,0,255}));
+
+ connect(uBoi, booToRea1.u)
+ annotation (Line(points={{-220,60},{-170,60},{-170,-210},{-162,-210}},
+ color={255,0,255}));
+
+ connect(uStaDow, edg1.u)
+ annotation (Line(points={{-220,140},{-180,140},{-180,-240},{-162,-240}},
+ color={255,0,255}));
+
+ connect(booToRea1.y, triSam1.u)
+ annotation (Line(points={{-138,-210},{-82,-210}},color={0,0,127}));
+
+ connect(edg1.y, booRep5.u)
+ annotation (Line(points={{-138,-240},{-122,-240}}, color={255,0,255}));
+
+ connect(triSam1.y, greEquThr1.u)
+ annotation (Line(points={{-58,-210},{38,-210}}, color={0,0,127}));
+
+ connect(booRep4.y, and4.u2)
+ annotation (Line(points={{-58,-160},{0,-160},{0,-188},{38,-188}},
+ color={255,0,255}));
+
+ connect(intEqu1.y, and4.u1)
+ annotation (Line(points={{-78,-80},{10,-80},{10,-180},{38,-180}},
+ color={255,0,255}));
+
+ connect(and4.y, logSwi3.u2)
+ annotation (Line(points={{62,-180},{98,-180}}, color={255,0,255}));
+
+ connect(con2.y, logSwi3.u1)
+ annotation (Line(points={{62,-150},{72,-150},{72,-172},{98,-172}},
+ color={255,0,255}));
+
+ connect(greEquThr1.y, logSwi3.u3)
+ annotation (Line(points={{62,-210},{80,-210},{80,-188},{98,-188}},
+ color={255,0,255}));
+
+ connect(uOnOff, booRep6.u)
+ annotation (Line(points={{-220,-120},{98,-120}}, color={255,0,255}));
+
+ connect(booRep6.y, logSwi4.u2)
+ annotation (Line(points={{122,-120},{158,-120}},color={255,0,255}));
+
+ connect(logSwi4.y,yBoi)
+ annotation (Line(points={{182,-120},{220,-120}}, color={255,0,255}));
+
+ connect(booRep.y, logSwi5.u2)
+ annotation (Line(points={{-78,140},{-70,140},{-70,-90},{98,-90}},
+ color={255,0,255}));
+
+ connect(uBoi, logSwi5.u3)
+ annotation (Line(points={{-220,60},{-170,60},{-170,-98},{98,-98}},
+ color={255,0,255}));
+
+ connect(logSwi2.y, logSwi5.u1)
+ annotation (Line(points={{182,50},{190,50},{190,-28},{60,-28},{60,-82},{98,-82}},
+ color={255,0,255}));
+
+ connect(logSwi5.y, logSwi4.u1)
+ annotation (Line(points={{122,-90},{140,-90},{140,-112},{158,-112}},
+ color={255,0,255}));
+
+ connect(booRep5.y, triSam1.trigger)
+ annotation (Line(points={{-98,-240},{-70,-240},{-70,-222}}, color={255,0,255}));
+
+ connect(booRep4.y, logSwi6.u2)
+ annotation (Line(points={{-58,-160},{0,-160},{0,-240},{98,-240}}, color={255,0,255}));
+
+ connect(logSwi3.y, logSwi6.u1)
+ annotation (Line(points={{122,-180},{130,-180},{130,-220},{80,-220},
+ {80,-232},{98,-232}}, color={255,0,255}));
+
+ connect(uBoi, logSwi6.u3)
+ annotation (Line(points={{-220,60},{-170,60},{-170,-180},{-40,-180},{-40,-248},
+ {98,-248}}, color={255,0,255}));
+
+ connect(logSwi6.y, logSwi4.u3)
+ annotation (Line(points={{122,-240},{140,-240},{140,-128},{158,-128}},
+ color={255,0,255}));
+
+ connect(uOnOff, logSwi7.u2)
+ annotation (Line(points={{-220,-120},{80,-120},{80,-50},{98,-50}},
+ color={255,0,255}));
+
+
+ connect(and2.y, booRep4.u) annotation (Line(points={{-138,140},{-120,140},{
+ -120,-160},{-82,-160}}, color={255,0,255}));
+
+ connect(and2.y, logSwi7.u3) annotation (Line(points={{-138,140},{-120,140},{
+ -120,-58},{98,-58}}, color={255,0,255}));
+
+ connect(logSwi7.y, yBoiDisPro)
+ annotation (Line(points={{122,-50},{220,-50}}, color={255,0,255}));
+
+ connect(tim.passed, booRep2.u) annotation (Line(points={{-78,-8},{-30,-8},{
+ -30,0},{-22,0}}, color={255,0,255}));
+ connect(tim.passed, logSwi7.u1) annotation (Line(points={{-78,-8},{-30,-8},{
+ -30,-42},{98,-42}}, color={255,0,255}));
+ connect(tim.passed, not1.u) annotation (Line(points={{-78,-8},{-30,-8},{-30,
+ 50},{-22,50}}, color={255,0,255}));
+annotation (
+ defaultComponentName="disBoi",
+ Icon(graphics={
+ Rectangle(
+ extent={{-100,-100},{100,100}},
+ lineColor={0,0,127},
+ fillColor={255,255,255},
+ fillPattern=FillPattern.Solid),
+ Text(extent={{-120,146},{100,108}},
+ textColor={0,0,255},
+ textString="%name"),
+ Rectangle(
+ extent={{-60,0},{60,-80}},
+ lineColor={200,200,200},
+ fillColor={207,207,207},
+ fillPattern=FillPattern.Solid),
+ Rectangle(
+ extent={{-52,20},{-40,0}},
+ lineColor={200,200,200},
+ fillColor={207,207,207},
+ fillPattern=FillPattern.Solid),
+ Rectangle(
+ extent={{40,20},{52,0}},
+ lineColor={200,200,200},
+ fillColor={207,207,207},
+ fillPattern=FillPattern.Solid),
+ Rectangle(
+ extent={{-60,60},{60,20}},
+ lineColor={200,200,200},
+ fillColor={207,207,207},
+ fillPattern=FillPattern.Solid),
+ Text(
+ extent={{-98,98},{-44,82}},
+ textColor={255,127,0},
+ textString="nexEnaBoi"),
+ Text(
+ extent={{-98,70},{-52,56}},
+ textColor={255,0,255},
+ textString="uStaDow"),
+ Text(
+ extent={{-96,30},{-24,10}},
+ textColor={255,0,255},
+ textString="uUpsDevSta"),
+ Text(
+ extent={{-100,-14},{-78,-24}},
+ textColor={255,0,255},
+ textString="uBoi"),
+ Text(
+ extent={{-98,-82},{-70,-94}},
+ textColor={255,0,255},
+ textString="uOnOff"),
+ Text(
+ extent={{-98,-40},{-44,-56}},
+ textColor={255,127,0},
+ textString="nexDisBoi"),
+ Text(
+ extent={{74,6},{98,-6}},
+ textColor={255,0,255},
+ textString="yBoi"),
+ Text(
+ extent={{44,-72},{96,-84}},
+ textColor={255,0,255},
+ textString="yBoiDis")}),
+ Diagram(coordinateSystem(preserveAspectRatio=false, extent={{-200,-260},{200,260}}),
+ graphics={
+ Rectangle(
+ extent={{-198,-142},{198,-258}},
+ fillColor={210,210,210},
+ fillPattern=FillPattern.Solid,
+ pattern=LinePattern.None),
+ Rectangle(
+ extent={{-198,258},{198,-98}},
+ fillColor={210,210,210},
+ fillPattern=FillPattern.Solid,
+ pattern=LinePattern.None),
+ Text(
+ extent={{100,188},{170,168}},
+ pattern=LinePattern.None,
+ fillColor={210,210,210},
+ fillPattern=FillPattern.Solid,
+ lineColor={0,0,127},
+ horizontalAlignment=TextAlignment.Right,
+ textString="Enable small boiler"),
+ Text(
+ extent={{102,-6},{172,-24}},
+ pattern=LinePattern.None,
+ fillColor={210,210,210},
+ fillPattern=FillPattern.Solid,
+ lineColor={0,0,127},
+ horizontalAlignment=TextAlignment.Right,
+ textString="Disable large boiler"),
+ Text(
+ extent={{-164,-244},{190,-286}},
+ pattern=LinePattern.None,
+ fillColor={210,210,210},
+ fillPattern=FillPattern.Solid,
+ lineColor={0,0,127},
+ horizontalAlignment=TextAlignment.Right,
+ textString="Disable boiler when the down-process does not require any other boiler being disabled"),
+ Text(
+ extent={{-144,278},{166,258}},
+ pattern=LinePattern.None,
+ fillColor={210,210,210},
+ fillPattern=FillPattern.Solid,
+ lineColor={0,0,127},
+ horizontalAlignment=TextAlignment.Right,
+ textString=
+ "Disable boiler when the down-process requires small boiler being enabled")}),
+Documentation(info="
+
+Block that controls boiler diabling process when there is stage down command
+uStaDow=true
.
+This implementation is based on RP-1711, March 2020 draft, sections 5.3.3.12,
+5.3.3.16, 5.3.3.17 and 5.3.3.18. These sections specify how to start the
+smaller boiler and shut off larger boiler when the stage change requires large
+boiler off and smaller boiler on.
+In other stage change, when it does not require boiler on/off, the boiler will then
+be shut off.
+
+
+When the stage-down process requires a smaller boiler being staged on and a larger
+boiler being staged off:
+
+
+-
+Start the smaller boiler after the upstream device is proven functional(
+
uUpsDevSta
becomes true).
+
+-
+Wait 5 minutes (
proOnTim
) for the newly enabled boiler to prove that
+it is operating correctly, then shut off the larger boiler.
+
+
+
+If staging-down from any other stage that does not require one boiler off and another
+boiler on, then shut off the last stage boiler.
+
+", revisions="
+
+-
+July 09, 2020, by Karthik Devaprasad:
+First implementation.
+
+
+"));
+end DisableBoiler;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Staging/Processes/Subsequences/EnableBoiler.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Staging/Processes/Subsequences/EnableBoiler.mo
new file mode 100644
index 00000000000..821941f13e4
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Staging/Processes/Subsequences/EnableBoiler.mo
@@ -0,0 +1,497 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Staging.Processes.Subsequences;
+block EnableBoiler
+ "Sequence for enabling boiler"
+
+ parameter Integer nBoi = 3
+ "Total number of boilers";
+
+ parameter Real proOnTim(
+ final unit="s",
+ final quantity="Time",
+ displayUnit="s") = 300
+ "Enabled boiler operation time to indicate if it is proven on";
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uStaUp
+ "Continuous stage-up command until change process is completed"
+ annotation (Placement(transformation(extent={{-240,40},{-200,80}}),
+ iconTransformation(extent={{-140,40},{-100,80}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uUpsDevSta
+ "Status of upstream device: true=upstream device is proved functional"
+ annotation (Placement(transformation(extent={{-240,10},{-200,50}}),
+ iconTransformation(extent={{-140,0},{-100,40}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uBoi[nBoi]
+ "Boiler status: true=ON"
+ annotation (Placement(transformation(extent={{-240,-20},{-200,20}}),
+ iconTransformation(extent={{-140,-40},{-100,0}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uOnOff
+ "Indicate if the stage require one boiler to be enabled while another is disabled"
+ annotation (Placement(transformation(extent={{-240,-70},{-200,-30}}),
+ iconTransformation(extent={{-140,-80},{-100,-40}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.IntegerInput nexDisBoi
+ "Next disabling boiler when there is any stage up that need one boiler on and another off"
+ annotation (Placement(transformation(extent={{-240,-170},{-200,-130}}),
+ iconTransformation(extent={{-140,-110},{-100,-70}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.IntegerInput nexEnaBoi
+ "Index of next enabling boiler"
+ annotation (Placement(transformation(extent={{-240,100},{-200,140}}),
+ iconTransformation(extent={{-140,70},{-100,110}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanOutput yBoi[nBoi]
+ "Boiler enabling status"
+ annotation (Placement(transformation(extent={{200,-70},{240,-30}}),
+ iconTransformation(extent={{100,60},{140,100}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanOutput yBoiEnaPro
+ "True signal when the boiler enabling process has been completed"
+ annotation (Placement(transformation(extent={{200,-190},{240,-150}}),
+ iconTransformation(extent={{100,-100},{140,-60}})));
+
+protected
+ final parameter Integer boiInd[nBoi]={i for i in 1:nBoi}
+ "Boiler index, {1,2,...,n}";
+
+ Buildings.Controls.OBC.CDL.Logical.Switch logSwi[nBoi]
+ "Logical switch"
+ annotation (Placement(transformation(extent={{100,110},{120,130}})));
+
+ Buildings.Controls.OBC.CDL.Logical.And and2
+ "Logical And"
+ annotation (Placement(transformation(extent={{-160,50},{-140,70}})));
+
+ Buildings.Controls.OBC.CDL.Routing.BooleanScalarReplicator booRep(
+ final nout=nBoi)
+ "Replicate boolean input"
+ annotation (Placement(transformation(extent={{-100,50},{-80,70}})));
+
+ Buildings.Controls.OBC.CDL.Logical.And and1[nBoi]
+ "Logical and"
+ annotation (Placement(transformation(extent={{-40,110},{-20,130}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant con[nBoi](
+ final k=fill(true, nBoi))
+ "True constant"
+ annotation (Placement(transformation(extent={{-40,140},{-20,160}})));
+
+ Buildings.Controls.OBC.CDL.Conversions.BooleanToReal booToRea[nBoi]
+ "Convert boolean input to real output"
+ annotation (Placement(transformation(extent={{-160,-10},{-140,10}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.GreaterThreshold greEquThr[nBoi](
+ final t=fill(0.5, nBoi))
+ "Check boilers that are on"
+ annotation (Placement(transformation(extent={{20,-10},{40,10}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Switch logSwi1[nBoi]
+ "Logical switch"
+ annotation (Placement(transformation(extent={{100,-120},{120,-100}})));
+
+ Buildings.Controls.OBC.CDL.Logical.And and3[nBoi]
+ "Logical and"
+ annotation (Placement(transformation(extent={{40,-120},{60,-100}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant con1[nBoi](
+ final k=fill(false, nBoi))
+ "False constant"
+ annotation (Placement(transformation(extent={{40,-90},{60,-70}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Switch logSwi2[nBoi]
+ "Logical switch"
+ annotation (Placement(transformation(extent={{160,-60},{180,-40}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Or or2
+ "Logical or"
+ annotation (Placement(transformation(extent={{40,-60},{60,-40}})));
+
+ Buildings.Controls.OBC.CDL.Routing.IntegerScalarReplicator intRep(
+ final nout=nBoi)
+ "Replicate integer input"
+ annotation (Placement(transformation(extent={{-160,110},{-140,130}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Equal intEqu[nBoi]
+ "Check next enabling boiler"
+ annotation (Placement(transformation(extent={{-100,110},{-80,130}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Timer tim(
+ final t=proOnTim)
+ "Count the time after new boiler has been enabled"
+ annotation (Placement(transformation(extent={{-100,-120},{-80,-100}})));
+
+ Buildings.Controls.OBC.CDL.Discrete.TriggeredSampler triSam[nBoi]
+ "Record the old boiler status"
+ annotation (Placement(transformation(extent={{-20,-10},{0,10}})));
+
+ Buildings.Controls.OBC.CDL.Routing.BooleanScalarReplicator booRep1(
+ final nout=nBoi)
+ "Replicate boolean input"
+ annotation (Placement(transformation(extent={{-60,-30},{-40,-10}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Edge edg
+ "Rising edge"
+ annotation (Placement(transformation(extent={{-100,-30},{-80,-10}})));
+
+ Buildings.Controls.OBC.CDL.Routing.BooleanScalarReplicator booRep2(
+ final nout=nBoi)
+ "Replicate boolean input"
+ annotation (Placement(transformation(extent={{-20,-120},{0,-100}})));
+
+ Buildings.Controls.OBC.CDL.Routing.BooleanScalarReplicator booRep3(
+ final nout=nBoi)
+ "Replicate boolean input"
+ annotation (Placement(transformation(extent={{80,-60},{100,-40}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Not not2
+ "Logical not"
+ annotation (Placement(transformation(extent={{-160,-60},{-140,-40}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Not not1
+ "Logical not"
+ annotation (Placement(transformation(extent={{-20,-80},{0,-60}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant conInt[nBoi](
+ final k=boiInd)
+ "Boiler index array"
+ annotation (Placement(transformation(extent={{-160,80},{-140,100}})));
+
+ Buildings.Controls.OBC.CDL.Routing.IntegerScalarReplicator intRep1(
+ final nout=nBoi)
+ "Replicate integer input"
+ annotation (Placement(transformation(extent={{-160,-160},{-140,-140}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Equal intEqu1[nBoi]
+ "Check next enabling boiler"
+ annotation (Placement(transformation(extent={{-100,-160},{-80,-140}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Switch logSwi3[nBoi]
+ "Logical switch"
+ annotation (Placement(transformation(extent={{60,30},{80,50}})));
+
+ Buildings.Controls.OBC.CDL.Routing.BooleanScalarReplicator booRep4(
+ final nout=nBoi)
+ "Replicate boolean input"
+ annotation (Placement(transformation(extent={{-40,30},{-20,50}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Switch logSwi4
+ "Logical switch"
+ annotation (Placement(transformation(extent={{120,-180},{140,-160}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Xor xor[nBoi]
+ "Boolean Exclusive Or"
+ annotation (Placement(transformation(extent={{-68,-230},{-48,-210}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Not not3[nBoi]
+ "Logical Not"
+ annotation (Placement(transformation(extent={{-20,-230},{0,-210}})));
+
+ Buildings.Controls.OBC.CDL.Logical.MultiAnd mulAnd(
+ final nin=nBoi+1)
+ "Multi-input Logical And"
+ annotation (Placement(transformation(extent={{52,-230},{72,-210}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Pre pre1[nBoi] "Logical pre block"
+ annotation (Placement(transformation(extent={{-160,-240},{-140,-220}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Pre pre2
+ "Logical pre block"
+ annotation (Placement(transformation(extent={{20,-210},{40,-190}})));
+
+equation
+ connect(nexEnaBoi, intRep.u)
+ annotation (Line(points={{-220,120},{-162,120}}, color={255,127,0}));
+
+ connect(intRep.y,intEqu. u1)
+ annotation (Line(points={{-138,120},{-102,120}}, color={255,127,0}));
+
+ connect(uUpsDevSta, and2.u2) annotation (Line(points={{-220,30},{-180,30},{-180,
+ 52},{-162,52}}, color={255,0,255}));
+
+ connect(uStaUp, and2.u1)
+ annotation (Line(points={{-220,60},{-162,60}}, color={255,0,255}));
+
+ connect(and2.y,booRep. u)
+ annotation (Line(points={{-138,60},{-102,60}}, color={255,0,255}));
+
+ connect(intEqu.y,and1. u1)
+ annotation (Line(points={{-78,120},{-42,120}}, color={255,0,255}));
+
+ connect(booRep.y,and1. u2)
+ annotation (Line(points={{-78,60},{-60,60},{-60,112},{-42,112}},
+ color={255,0,255}));
+
+ connect(and1.y,logSwi. u2)
+ annotation (Line(points={{-18,120},{98,120}}, color={255,0,255}));
+
+ connect(con.y,logSwi. u1)
+ annotation (Line(points={{-18,150},{0,150},{0,128},{98,128}}, color={255,0,255}));
+
+ connect(uBoi,booToRea. u)
+ annotation (Line(points={{-220,0},{-162,0}}, color={255,0,255}));
+
+ connect(booToRea.y,triSam. u)
+ annotation (Line(points={{-138,0},{-22,0}}, color={0,0,127}));
+
+ connect(edg.y,booRep1. u)
+ annotation (Line(points={{-78,-20},{-62,-20}}, color={255,0,255}));
+
+ connect(booRep1.y,triSam. trigger)
+ annotation (Line(points={{-38,-20},{-10,-20},{-10,-12}}, color={255,0,255}));
+
+ connect(triSam.y,greEquThr. u)
+ annotation (Line(points={{2,0},{18,0}}, color={0,0,127}));
+
+ connect(and2.y,tim. u)
+ annotation (Line(points={{-138,60},{-120,60},{-120,-110},{-102,-110}},
+ color={255,0,255}));
+
+ connect(booRep2.y,and3. u1)
+ annotation (Line(points={{2,-110},{38,-110}}, color={255,0,255}));
+
+ connect(and3.y,logSwi1. u2)
+ annotation (Line(points={{62,-110},{98,-110}}, color={255,0,255}));
+
+ connect(con1.y,logSwi1. u1)
+ annotation (Line(points={{62,-80},{80,-80},{80,-102},{98,-102}},
+ color={255,0,255}));
+
+ connect(uBoi,logSwi1. u3)
+ annotation (Line(points={{-220,0},{-180,0},{-180,-130},{80,-130},{80,-118},
+ {98,-118}}, color={255,0,255}));
+
+ connect(booRep3.y,logSwi2. u2)
+ annotation (Line(points={{102,-50},{158,-50}}, color={255,0,255}));
+
+ connect(uOnOff,not2. u)
+ annotation (Line(points={{-220,-50},{-162,-50}}, color={255,0,255}));
+
+ connect(logSwi1.y,logSwi2. u3)
+ annotation (Line(points={{122,-110},{140,-110},{140,-58},{158,-58}},
+ color={255,0,255}));
+
+ connect(logSwi.y,logSwi2. u1)
+ annotation (Line(points={{122,120},{140,120},{140,-42},{158,-42}},
+ color={255,0,255}));
+
+ connect(logSwi2.y,yBoi)
+ annotation (Line(points={{182,-50},{220,-50}}, color={255,0,255}));
+
+ connect(not2.y,or2. u1)
+ annotation (Line(points={{-138,-50},{38,-50}},color={255,0,255}));
+
+ connect(not1.y,or2. u2)
+ annotation (Line(points={{2,-70},{20,-70},{20,-58},{38,-58}},
+ color={255,0,255}));
+
+ connect(or2.y,booRep3. u)
+ annotation (Line(points={{62,-50},{78,-50}},color={255,0,255}));
+
+ connect(conInt.y,intEqu. u2)
+ annotation (Line(points={{-138,90},{-110,90},{-110,112},{-102,112}},
+ color={255,127,0}));
+
+ connect(nexDisBoi, intRep1.u)
+ annotation (Line(points={{-220,-150},{-162,-150}}, color={255,127,0}));
+
+ connect(intRep1.y, intEqu1.u1)
+ annotation (Line(points={{-138,-150},{-102,-150}}, color={255,127,0}));
+
+ connect(conInt.y, intEqu1.u2)
+ annotation (Line(points={{-138,90},{-110,90},{-110,-158},{-102,-158}},
+ color={255,127,0}));
+
+ connect(intEqu1.y, and3.u2)
+ annotation (Line(points={{-78,-150},{20,-150},{20,-118},{38,-118}},
+ color={255,0,255}));
+
+ connect(uStaUp, edg.u)
+ annotation (Line(points={{-220,60},{-190,60},{-190,-20},{-102,-20}},
+ color={255,0,255}));
+
+ connect(uStaUp, booRep4.u)
+ annotation (Line(points={{-220,60},{-190,60},{-190,40},{-42,40}},
+ color={255,0,255}));
+
+ connect(booRep4.y, logSwi3.u2)
+ annotation (Line(points={{-18,40},{58,40}}, color={255,0,255}));
+
+ connect(uBoi, logSwi3.u3)
+ annotation (Line(points={{-220,0},{-180,0},{-180,20},{40,20},{40,32},
+ {58,32}}, color={255,0,255}));
+
+ connect(greEquThr.y, logSwi3.u1)
+ annotation (Line(points={{42,0},{50,0},{50,48},{58,48}}, color={255,0,255}));
+
+ connect(logSwi3.y, logSwi.u3)
+ annotation (Line(points={{82,40},{90,40},{90,112},{98,112}},
+ color={255,0,255}));
+
+ connect(not2.y, logSwi4.u2)
+ annotation (Line(points={{-138,-50},{-130,-50},{-130,-170},{118,-170}},
+ color={255,0,255}));
+
+ connect(logSwi4.y, yBoiEnaPro)
+ annotation (Line(points={{142,-170},{220,-170}}, color={255,0,255}));
+
+ connect(tim.passed, booRep2.u) annotation (Line(points={{-78,-118},{-32,-118},
+ {-32,-110},{-22,-110}}, color={255,0,255}));
+ connect(tim.passed, logSwi4.u3) annotation (Line(points={{-78,-118},{-32,-118},
+ {-32,-178},{118,-178}}, color={255,0,255}));
+ connect(tim.passed, not1.u) annotation (Line(points={{-78,-118},{-32,-118},{-32,
+ -70},{-22,-70}}, color={255,0,255}));
+ connect(xor.y, not3.u)
+ annotation (Line(points={{-46,-220},{-22,-220}}, color={255,0,255}));
+ connect(uBoi, xor.u1) annotation (Line(points={{-220,0},{-180,0},{-180,-200},{
+ -130,-200},{-130,-220},{-70,-220}},
+ color={255,0,255}));
+ connect(not3.y, mulAnd.u[1:nBoi]) annotation (Line(points={{2,-220},{50,-220}},
+ color={255,0,255}));
+ connect(mulAnd.y, logSwi4.u1) annotation (Line(points={{74,-220},{100,-220},{100,
+ -162},{118,-162}}, color={255,0,255}));
+ connect(logSwi2.y, pre1.u) annotation (Line(points={{182,-50},{190,-50},{190,-250},
+ {-180,-250},{-180,-230},{-162,-230}}, color={255,0,255}));
+ connect(pre1.y, xor.u2) annotation (Line(points={{-138,-230},{-100,-230},{-100,
+ -228},{-70,-228}}, color={255,0,255}));
+ connect(and2.y, pre2.u) annotation (Line(points={{-138,60},{-120,60},{-120,-200},
+ {18,-200}}, color={255,0,255}));
+ connect(pre2.y, mulAnd.u[nBoi+1]) annotation (Line(points={{42,-200},{46,-200},{46,
+ -220},{50,-220}}, color={255,0,255}));
+annotation (
+ defaultComponentName="enaBoi",
+ Icon(coordinateSystem(preserveAspectRatio=false, extent={{-100,-100},{100,100}}),
+ graphics={
+ Rectangle(
+ extent={{-100,-100},{100,100}},
+ lineColor={0,0,127},
+ fillColor={255,255,255},
+ fillPattern=FillPattern.Solid),
+ Text(extent={{-120,146},{100,108}},
+ textColor={0,0,255},
+ textString="%name"),
+ Rectangle(
+ extent={{-60,60},{60,20}},
+ lineColor={200,200,200},
+ fillColor={207,207,207},
+ fillPattern=FillPattern.Solid),
+ Rectangle(
+ extent={{-52,20},{-40,0}},
+ lineColor={200,200,200},
+ fillColor={207,207,207},
+ fillPattern=FillPattern.Solid),
+ Rectangle(
+ extent={{40,20},{52,0}},
+ lineColor={200,200,200},
+ fillColor={207,207,207},
+ fillPattern=FillPattern.Solid),
+ Rectangle(
+ extent={{-60,0},{60,-80}},
+ lineColor={200,200,200},
+ fillColor={207,207,207},
+ fillPattern=FillPattern.Solid),
+ Text(
+ extent={{-98,96},{-50,84}},
+ textColor={255,127,0},
+ pattern=LinePattern.Dash,
+ textString="nexEnaBoi"),
+ Text(
+ extent={{-98,-84},{-50,-96}},
+ textColor={255,127,0},
+ pattern=LinePattern.Dash,
+ textString="nexDisBoi"),
+ Text(
+ extent={{-100,66},{-68,56}},
+ textColor={255,0,255},
+ pattern=LinePattern.Dash,
+ textString="uStaUp"),
+ Text(
+ extent={{-98,26},{-34,14}},
+ textColor={255,0,255},
+ pattern=LinePattern.Dash,
+ textString="uUpsDevSta"),
+ Text(
+ extent={{-100,-14},{-78,-24}},
+ textColor={255,0,255},
+ pattern=LinePattern.Dash,
+ textString="uBoi"),
+ Text(
+ extent={{-98,-54},{-72,-66}},
+ textColor={255,0,255},
+ pattern=LinePattern.Dash,
+ textString="uOnOff"),
+ Text(
+ extent={{74,86},{100,76}},
+ textColor={255,0,255},
+ pattern=LinePattern.Dash,
+ textString="yBoi"),
+ Text(
+ extent={{60,-72},{98,-84}},
+ textColor={255,0,255},
+ pattern=LinePattern.Dash,
+ textString="yNewBoiEna")}),
+ Diagram(
+ coordinateSystem(preserveAspectRatio=false, extent={{-200,-260},{200,180}}),
+ graphics={
+ Rectangle(
+ extent={{-198,-62},{198,-178}},
+ fillColor={210,210,210},
+ fillPattern=FillPattern.Solid,
+ pattern=LinePattern.None),
+ Rectangle(
+ extent={{-198,178},{198,-38}},
+ fillColor={210,210,210},
+ fillPattern=FillPattern.Solid,
+ pattern=LinePattern.None),
+ Text(
+ extent={{20,158},{100,150}},
+ pattern=LinePattern.None,
+ fillColor={210,210,210},
+ fillPattern=FillPattern.Solid,
+ lineColor={0,0,127},
+ horizontalAlignment=TextAlignment.Left,
+ textString="Output new boiler status array:\n1. When the stage change does not require one boiler off and another boiler on.\n2. When the stage change does require one boiler off and another boiler on,\n but the enabled boiler has not yet finished starting."),
+ Text(
+ extent={{34,-140},{114,-148}},
+ pattern=LinePattern.None,
+ fillColor={210,210,210},
+ fillPattern=FillPattern.Solid,
+ lineColor={0,0,127},
+ horizontalAlignment=TextAlignment.Left,
+ textString="Output new boiler status array:\nWhen the stage change does require one boiler off and another boiler on,\nand the enabled boiler has finished starting.")}),
+Documentation(info="
+
+Block that controls boiler when there is staging up command uStaUp=true
.
+This implementation is based on RP-1711, March 2020 draft, sections 5.3.3.11,
+5.3.3.13, 5.3.3.14 and 5.3.3.15. These sections specify when the next boiler should be enabled
+and when the running smaller boiler should be diabled.
+
+
+When the stage-up process does not requires a smaller boiler being staged off and
+a larger boiler being staged on (uOnOff=false
):
+
+
+-
+Start the next stage boiler after the upstream device is proved functional
+
uUpsDevSta=true
.
+
+
+
+For any stage change during which a smaller boiler is diabled and a larger boiler
+is enabled (uOnOff=true
):
+
+
+-
+Wait 5 minutes (
proOnTim
) for the newly enabled boiler to prove that it is
+operating correctly, then shut off the smaller boiler.
+
+
+", revisions="
+
+-
+July 08, 2020, by Karthik Devaprasad:
+First implementation.
+
+
+"));
+end EnableBoiler;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Staging/Processes/Subsequences/HWIsoVal.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Staging/Processes/Subsequences/HWIsoVal.mo
new file mode 100644
index 00000000000..e583a39096d
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Staging/Processes/Subsequences/HWIsoVal.mo
@@ -0,0 +1,450 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Staging.Processes.Subsequences;
+block HWIsoVal
+ "Sequence of enable or disable hot water isolation valve"
+
+ parameter Integer nBoi = 3
+ "Total number of boiler, which is also the total number of hot water isolation valve";
+
+ parameter Real chaHotWatIsoTim(
+ final unit="s",
+ final quantity="Time",
+ displayUnit="s") = 60
+ "Time to slowly change isolation valve position, should be determined in the field";
+
+ parameter Real iniValPos
+ "Initial valve position, if it needs to turn on boiler, the value should be 0";
+
+ parameter Real endValPos
+ "Ending valve position, if it needs to turn on boiler, the value should be 1";
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uUpsDevSta
+ "Status of device reset before enabling or disabling isolation valve"
+ annotation (Placement(transformation(extent={{-200,-160},{-160,-120}}),
+ iconTransformation(extent={{-140,-70},{-100,-30}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput chaPro
+ "Indicate if there is a stage up or stage down command"
+ annotation (Placement(transformation(extent={{-200,-198},{-160,-158}}),
+ iconTransformation(extent={{-140,-100},{-100,-60}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.IntegerInput nexChaBoi
+ "Index of next boiler that should change status"
+ annotation (Placement(transformation(extent={{-200,-10},{-160,30}}),
+ iconTransformation(extent={{-140,60},{-100,100}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput uHotWatIsoVal[nBoi](
+ final unit=fill("1", nBoi),
+ final min=fill(0, nBoi),
+ final max=fill(1, nBoi))
+ "Hot water isolation valve position"
+ annotation (Placement(transformation(extent={{-200,-120},{-160,-80}}),
+ iconTransformation(extent={{-140,30},{-100,70}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanOutput yEnaHotWatIsoVal
+ "Status of hot water isolation valve control: true=enabled valve is fully open"
+ annotation (Placement(transformation(extent={{180,120},{220,160}}),
+ iconTransformation(extent={{100,40},{140,80}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealOutput yHotWatIsoVal[nBoi](
+ final unit=fill("1", nBoi),
+ final min=fill(0, nBoi),
+ final max=fill(1, nBoi))
+ "Hot water isolation valve position"
+ annotation (Placement(transformation(extent={{180,-60},{220,-20}}),
+ iconTransformation(extent={{100,-80},{140,-40}})));
+
+protected
+ final parameter Integer boiInd[nBoi]={i for i in 1:nBoi}
+ "Boiler index, {1,2,...,nBoi}";
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant con7(
+ final k=chaHotWatIsoTim)
+ "Time to change hot water isolation valve"
+ annotation (Placement(transformation(extent={{-40,40},{-20,60}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant con8(
+ final k=endValPos)
+ "Ending valve position"
+ annotation (Placement(transformation(extent={{0,40},{20,60}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant con6(
+ final k=iniValPos)
+ "Initial isolation valve position"
+ annotation (Placement(transformation(extent={{-40,90},{-20,110}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant con9(
+ final k=0)
+ "Constant zero"
+ annotation (Placement(transformation(extent={{0,90},{20,110}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Line lin1
+ "Hot water isolation valve setpoint"
+ annotation (Placement(transformation(extent={{40,70},{60,90}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Timer tim(
+ final t=chaHotWatIsoTim)
+ "Count the time after changing up-stream device status"
+ annotation (Placement(transformation(extent={{-100,70},{-80,90}})));
+
+ Buildings.Controls.OBC.CDL.Discrete.TriggeredSampler triSam[nBoi]
+ "Record the old hot water isolation valve status"
+ annotation (Placement(transformation(extent={{-80,-110},{-60,-90}})));
+
+ Buildings.Controls.OBC.CDL.Routing.BooleanScalarReplicator booRep(
+ final nout=nBoi)
+ "Replicate boolean input"
+ annotation (Placement(transformation(extent={{20,-150},{40,-130}})));
+
+ Buildings.Controls.OBC.CDL.Logical.And and2
+ "Check if it is time to change isolation valve position"
+ annotation (Placement(transformation(extent={{-80,-180},{-60,-160}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Switch swi[nBoi]
+ "Logical switch"
+ annotation (Placement(transformation(extent={{120,-50},{140,-30}})));
+
+ Buildings.Controls.OBC.CDL.Routing.BooleanScalarReplicator booRep1(
+ final nout=nBoi)
+ "Replicate boolean input"
+ annotation (Placement(transformation(extent={{60,-180},{80,-160}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Not not2[nBoi]
+ "Logical not"
+ annotation (Placement(transformation(extent={{-20,-90},{0,-70}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Switch swi1[nBoi]
+ "Logical switch"
+ annotation (Placement(transformation(extent={{60,-70},{80,-50}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Switch swi2[nBoi]
+ "Logical switch"
+ annotation (Placement(transformation(extent={{60,0},{80,20}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Equal intEqu[nBoi]
+ "Check next enabling isolation valve"
+ annotation (Placement(transformation(extent={{-20,0},{0,20}})));
+
+ Buildings.Controls.OBC.CDL.Routing.IntegerScalarReplicator intRep(
+ final nout=nBoi)
+ "Replicate integer input"
+ annotation (Placement(transformation(extent={{-80,0},{-60,20}})));
+
+ Buildings.Controls.OBC.CDL.Routing.RealScalarReplicator reaRep(
+ final nout=nBoi)
+ "Replicate real input"
+ annotation (Placement(transformation(extent={{80,70},{100,90}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Hysteresis hys3[nBoi](
+ final uLow=fill(0.025,nBoi),
+ final uHigh=fill(0.05, nBoi))
+ "Check if isolation valve is enabled"
+ annotation (Placement(transformation(extent={{-120,210},{-100,230}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Hysteresis hys4[nBoi](
+ final uLow=fill(0.925,nBoi),
+ final uHigh=fill(0.975, nBoi))
+ "Check if isolation valve is open more than 95%"
+ annotation (Placement(transformation(extent={{-120,150},{-100,170}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Not not3[nBoi]
+ "Logical not"
+ annotation (Placement(transformation(extent={{-40,180},{-20,200}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Not not4[nBoi]
+ "Logical not"
+ annotation (Placement(transformation(extent={{-40,150},{-20,170}})));
+
+ Buildings.Controls.OBC.CDL.Logical.And and4[nBoi]
+ "Logical and"
+ annotation (Placement(transformation(extent={{0,180},{20,200}})));
+
+ Buildings.Controls.OBC.CDL.Logical.And and3[nBoi]
+ "Logical and"
+ annotation (Placement(transformation(extent={{0,210},{20,230}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Or or2[nBoi]
+ "Logical or"
+ annotation (Placement(transformation(extent={{40,210},{60,230}})));
+
+ Buildings.Controls.OBC.CDL.Logical.MultiAnd mulAnd1(
+ final nin=nBoi)
+ "Logical and"
+ annotation (Placement(transformation(extent={{80,210},{100,230}})));
+
+ Buildings.Controls.OBC.CDL.Logical.And3 and5
+ "Check if the isolation valve has been fully open"
+ annotation (Placement(transformation(extent={{140,130},{160,150}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant conInt[nBoi](
+ final k=boiInd)
+ "Boiler index array"
+ annotation (Placement(transformation(extent={{-80,-30},{-60,-10}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Edge edg
+ "Edge detector"
+ annotation (Placement(transformation(extent={{-20,-150},{0,-130}})));
+
+equation
+ connect(uHotWatIsoVal, triSam.u)
+ annotation (Line(points={{-180,-100},{-82,-100}}, color={0,0,127}));
+
+ connect(con9.y, lin1.x1)
+ annotation (Line(points={{22,100},{30,100},{30,88},{38,88}},
+ color={0,0,127}));
+
+ connect(con6.y, lin1.f1)
+ annotation (Line(points={{-18,100},{-10,100},{-10,84},{38,84}},
+ color={0,0,127}));
+
+ connect(con7.y, lin1.x2)
+ annotation (Line(points={{-18,50},{-10,50},{-10,76},{38,76}},
+ color={0,0,127}));
+
+ connect(con8.y, lin1.f2)
+ annotation (Line(points={{22,50},{30,50},{30,72},{38,72}}, color={0,0,127}));
+
+ connect(tim.y, lin1.u)
+ annotation (Line(points={{-78,80},{38,80}}, color={0,0,127}));
+
+ connect(chaPro, and2.u2)
+ annotation (Line(points={{-180,-178},{-82,-178}}, color={255,0,255}));
+
+ connect(booRep1.y, swi.u2)
+ annotation (Line(points={{82,-170},{100,-170},{100,-40},{118,-40}},
+ color={255,0,255}));
+
+ connect(swi.y,yHotWatIsoVal)
+ annotation (Line(points={{142,-40},{200,-40}}, color={0,0,127}));
+
+ connect(booRep.y, triSam.trigger)
+ annotation (Line(points={{42,-140},{60,-140},{60,-120},{-70,-120},{-70,-112}},
+ color={255,0,255}));
+
+ connect(booRep1.y, not2.u)
+ annotation (Line(points={{82,-170},{100,-170},{100,-110},{-40,-110},
+ {-40,-80},{-22,-80}}, color={255,0,255}));
+
+ connect(not2.y, swi1.u2)
+ annotation (Line(points={{2,-80},{20,-80},{20,-60},{58,-60}},
+ color={255,0,255}));
+
+ connect(triSam.y, swi1.u3)
+ annotation (Line(points={{-58,-100},{40,-100},{40,-68},{58,-68}},
+ color={0,0,127}));
+
+ connect(swi1.y, swi.u3)
+ annotation (Line(points={{82,-60},{90,-60},{90,-48},{118,-48}},
+ color={0,0,127}));
+
+ connect(uHotWatIsoVal, swi1.u1)
+ annotation (Line(points={{-180,-100},{-140,-100},{-140,-52},{58,-52}},
+ color={0,0,127}));
+
+ connect(swi2.y, swi.u1)
+ annotation (Line(points={{82,10},{100,10},{100,-32},{118,-32}},
+ color={0,0,127}));
+
+ connect(nexChaBoi, intRep.u)
+ annotation (Line(points={{-180,10},{-82,10}}, color={255,127,0}));
+
+ connect(intRep.y, intEqu.u1)
+ annotation (Line(points={{-58,10},{-22,10}}, color={255,127,0}));
+
+ connect(intEqu.y, swi2.u2)
+ annotation (Line(points={{2,10},{58,10}}, color={255,0,255}));
+
+ connect(lin1.y, reaRep.u)
+ annotation (Line(points={{62,80},{78,80}}, color={0,0,127}));
+
+ connect(reaRep.y, swi2.u1)
+ annotation (Line(points={{102,80},{120,80},{120,50},{40,50},{40,18},{58,18}},
+ color={0,0,127}));
+
+ connect(triSam.y, swi2.u3)
+ annotation (Line(points={{-58,-100},{40,-100},{40,2},{58,2}},
+ color={0,0,127}));
+
+ connect(uHotWatIsoVal, hys4.u)
+ annotation (Line(points={{-180,-100},{-140,-100},{-140,160},{-122,160}},
+ color={0,0,127}));
+
+ connect(uHotWatIsoVal, hys3.u)
+ annotation (Line(points={{-180,-100},{-140,-100},{-140,220},{-122,220}},
+ color={0,0,127}));
+
+ connect(hys3.y, and3.u1)
+ annotation (Line(points={{-98,220},{-2,220}}, color={255,0,255}));
+
+ connect(hys4.y, and3.u2)
+ annotation (Line(points={{-98,160},{-80,160},{-80,212},{-2,212}},
+ color={255,0,255}));
+
+ connect(hys4.y, not4.u)
+ annotation (Line(points={{-98,160},{-42,160}}, color={255,0,255}));
+
+ connect(hys3.y, not3.u)
+ annotation (Line(points={{-98,220},{-60,220},{-60,190},{-42,190}},
+ color={255,0,255}));
+
+ connect(not4.y, and4.u2)
+ annotation (Line(points={{-18,160},{-12,160},{-12,182},{-2,182}},
+ color={255,0,255}));
+
+ connect(not3.y, and4.u1)
+ annotation (Line(points={{-18,190},{-2,190}}, color={255,0,255}));
+
+ connect(and3.y, or2.u1)
+ annotation (Line(points={{22,220},{38,220}}, color={255,0,255}));
+
+ connect(and4.y, or2.u2)
+ annotation (Line(points={{22,190},{30,190},{30,212},{38,212}},
+ color={255,0,255}));
+
+ connect(mulAnd1.y, and5.u1)
+ annotation (Line(points={{102,220},{120,220},{120,148},{138,148}},
+ color={255,0,255}));
+
+ connect(and5.y,yEnaHotWatIsoVal)
+ annotation (Line(points={{162,140},{200,140}}, color={255,0,255}));
+
+ connect(or2.y, mulAnd1.u)
+ annotation (Line(points={{62,220},{78,220}}, color={255,0,255}));
+
+ connect(conInt.y, intEqu.u2)
+ annotation (Line(points={{-58,-20},{-40,-20},{-40,2},{-22,2}},
+ color={255,127,0}));
+
+ connect(uUpsDevSta, and5.u2)
+ annotation (Line(points={{-180,-140},{-130,-140},{-130,140},{138,140}},
+ color={255,0,255}));
+
+
+ connect(uUpsDevSta, and2.u1) annotation (Line(points={{-180,-140},{-100,-140},
+ {-100,-170},{-82,-170}},color={255,0,255}));
+
+ connect(and2.y, booRep1.u)
+ annotation (Line(points={{-58,-170},{58,-170}}, color={255,0,255}));
+
+ connect(edg.y, booRep.u)
+ annotation (Line(points={{2,-140},{18,-140}}, color={255,0,255}));
+
+ connect(and2.y, edg.u) annotation (Line(points={{-58,-170},{-40,-170},{-40,
+ -140},{-22,-140}}, color={255,0,255}));
+
+ connect(tim.u, and2.y) annotation (Line(points={{-102,80},{-120,80},{-120,
+ -200},{-40,-200},{-40,-170},{-58,-170}}, color={255,0,255}));
+
+ connect(tim.passed, and5.u3) annotation (Line(points={{-78,72},{-60,72},{-60,132},
+ {138,132}}, color={255,0,255}));
+annotation (
+ defaultComponentName="hotWatIsoVal",
+ Diagram(
+ coordinateSystem(preserveAspectRatio=false,
+ extent={{-160,-240},{180,240}}),
+ graphics={
+ Rectangle(
+ extent={{-158,238},{178,122}},
+ fillColor={210,210,210},
+ fillPattern=FillPattern.Solid,
+ pattern=LinePattern.None),
+ Text(
+ extent={{-38,184},{172,150}},
+ pattern=LinePattern.None,
+ fillColor={210,210,210},
+ fillPattern=FillPattern.Solid,
+ textColor={0,0,127},
+ horizontalAlignment=TextAlignment.Right,
+ textString="Check if all enabled HW isolation valves
+ have been fully open")}),
+ Icon(graphics={
+ Rectangle(
+ extent={{-100,-100},{100,100}},
+ lineColor={0,0,127},
+ fillColor={255,255,255},
+ fillPattern=FillPattern.Solid),
+ Text(
+ extent={{-120,146},{100,108}},
+ textColor={0,0,255},
+ textString="%name"),
+ Text(
+ extent={{-96,-74},{-60,-86}},
+ textColor={255,0,255},
+ pattern=LinePattern.Dash,
+ textString="chaPro"),
+ Text(
+ extent={{-96,-42},{-46,-56}},
+ textColor={255,0,255},
+ pattern=LinePattern.Dash,
+ textString="uUpsDevSta"),
+ Text(
+ extent={{-96,86},{-48,74}},
+ textColor={255,127,0},
+ pattern=LinePattern.Dash,
+ textString="nexChaBoi"),
+ Text(
+ extent={{-96,58},{-42,46}},
+ textColor={0,0,127},
+ pattern=LinePattern.Dash,
+ textString="uHotWatIsoVal"),
+ Text(
+ extent={{32,70},{96,54}},
+ textColor={255,0,255},
+ pattern=LinePattern.Dash,
+ textString="yEnaHotWatIsoVal"),
+ Polygon(
+ points={{-60,40},{-60,-40},{0,0},{-60,40}},
+ lineColor={200,200,200},
+ fillColor={207,207,207},
+ fillPattern=FillPattern.Solid),
+ Polygon(
+ points={{60,40},{60,-40},{0,0},{60,40}},
+ lineColor={200,200,200},
+ fillColor={207,207,207},
+ fillPattern=FillPattern.Solid),
+ Text(
+ extent={{44,-54},{98,-66}},
+ textColor={0,0,127},
+ pattern=LinePattern.Dash,
+ textString="yHotWatIsoVal")}),
+ Documentation(info="
+
+ Block updates boiler hot water isolation valve enabling-disabling status when
+ there is stage change command (chaPro=true
). It will also generate
+ status to indicate if the valve reset process has finished.
+ This block is not based on any specific section in RP-1711, but has been designed
+ to carry out the hot water isolation valve operations in the staging sequences
+ defined in 5.3.3.
+
+
+ -
+ When there is stage up command (
chaPro=true
) and next boiler has
+ been enabled (uUpsDevSta=true
), the hot water isolation valve of
+ next enabling boiler indicated by nexChaBoi
will be enabled
+ (iniValPos=0
, endValPos=1
).
+
+ -
+ When there is stage down command (
chaPro=true
) and the disabling
+ boiler (nexChaBoi
) or its associated pump has been shut off
+ (uUpsDevSta=true
), the boiler's isolation valve will be disabled
+ (iniValPos=1
, endValPos=0
).
+
+
+
+ The valve opens or closes in a time period chaHotWatIsoTim
, which
+ can be defined as per the valve specification.
+
+
+ This sequence will generate array yHoyWatIsoVal
which indicates
+ hot water isolation valve position setpoint. yEnaHotWatIsoVal
+ will be true when all the enabled valves are fully open and all the disabled valves
+ are fully closed.
+
+ ", revisions="
+
+ -
+ June 18, 2020, by Karthik Devaprasad:
+ First implementation.
+
+
+ "));
+end HWIsoVal;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Staging/Processes/Subsequences/NextBoiler.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Staging/Processes/Subsequences/NextBoiler.mo
new file mode 100644
index 00000000000..d27b4bf2bcf
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Staging/Processes/Subsequences/NextBoiler.mo
@@ -0,0 +1,383 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Staging.Processes.Subsequences;
+block NextBoiler
+ "Identify next enable and disable boilers"
+
+ parameter Integer nBoi=3
+ "Total number of boilers";
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uBoiSet[nBoi]
+ "Vector of boilers status setpoint"
+ annotation (Placement(transformation(extent={{-260,-20},{-220,20}}),
+ iconTransformation(extent={{-140,-20},{-100,20}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput chaPro
+ "True: in the stage change process"
+ annotation (Placement(transformation(extent={{-260,-180},{-220,-140}}),
+ iconTransformation(extent={{-140,-90},{-100,-50}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.IntegerInput uStaSet
+ "Boiler stage setpoint"
+ annotation (Placement(transformation(extent={{-260,90},{-220,130}}),
+ iconTransformation(extent={{-140,50},{-100,90}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanOutput yOnOff
+ "True: if the stage change require one boiler to be enabled while another is disabled"
+ annotation (Placement(transformation(extent={{220,-40},{260,0}}),
+ iconTransformation(extent={{100,-20},{140,20}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.IntegerOutput yNexEnaBoi
+ "Next enabling boiler index"
+ annotation (Placement(transformation(extent={{220,140},{260,180}}),
+ iconTransformation(extent={{100,70},{140,110}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.IntegerOutput yDisSmaBoi
+ "Smaller boiler to be disabled in staging-up process"
+ annotation (Placement(transformation(extent={{220,90},{260,130}}),
+ iconTransformation(extent={{100,20},{140,60}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.IntegerOutput yLasDisBoi
+ "Disable last boiler when it is in stage-down process"
+ annotation (Placement(transformation(extent={{220,-120},{260,-80}}),
+ iconTransformation(extent={{100,-60},{140,-20}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.IntegerOutput yEnaSmaBoi
+ "Smaller boiler to be enabled in stage-down process"
+ annotation (Placement(transformation(extent={{220,-180},{260,-140}}),
+ iconTransformation(extent={{100,-110},{140,-70}})));
+
+protected
+ parameter Integer boiInd[nBoi]={i for i in 1:nBoi}
+ "Boiler index, {1,2,...,n}";
+
+ Buildings.Controls.OBC.CDL.Integers.Change cha
+ "Check if it is stage up or stage down"
+ annotation (Placement(transformation(extent={{-200,100},{-180,120}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Latch enaBoi[nBoi]
+ "True when the boiler should be enabled"
+ annotation (Placement(transformation(extent={{-120,30},{-100,50}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Latch disBoi[nBoi]
+ "True when the boiler should be disabled"
+ annotation (Placement(transformation(extent={{-120,-110},{-100,-90}})));
+
+ Buildings.Controls.OBC.CDL.Logical.MultiOr anyEnaBoi(
+ final nin=nBoi)
+ "Check if there is any enabling boiler"
+ annotation (Placement(transformation(extent={{-80,-30},{-60,-10}})));
+
+ Buildings.Controls.OBC.CDL.Logical.MultiOr anyDisBoi(
+ final nin=nBoi)
+ "Check if there is any disabling boiler"
+ annotation (Placement(transformation(extent={{-80,-70},{-60,-50}})));
+
+ Buildings.Controls.OBC.CDL.Logical.And enaDis
+ "Check if enabling and disabling boilers at the same process"
+ annotation (Placement(transformation(extent={{-20,-30},{0,-10}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Multiply proInt[nBoi]
+ "Find out the index of enabling boiler"
+ annotation (Placement(transformation(extent={{-20,30},{0,50}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Multiply proInt1[nBoi]
+ "Find out the index of disabling boiler"
+ annotation (Placement(transformation(extent={{-20,-110},{0,-90}})));
+
+ Buildings.Controls.OBC.CDL.Integers.MultiSum enaBoiInd(
+ final nin=nBoi)
+ "Enabling boiler index"
+ annotation (Placement(transformation(extent={{20,30},{40,50}})));
+
+ Buildings.Controls.OBC.CDL.Integers.MultiSum disBoiInd(
+ final nin = nBoi)
+ "Disabling boiler index"
+ annotation (Placement(transformation(extent={{20,-110},{40,-90}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Latch upPro
+ "True when it is in stage up process"
+ annotation (Placement(transformation(extent={{-120,120},{-100,140}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Latch dowPro
+ "True when it is in stage down process"
+ annotation (Placement(transformation(extent={{-120,80},{-100,100}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Multiply proInt2
+ "Find out the index of enabling boiler"
+ annotation (Placement(transformation(extent={{120,150},{140,170}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Multiply proInt3
+ "Staging up process and it requires boiler on and off"
+ annotation (Placement(transformation(extent={{120,110},{140,130}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Multiply proInt4
+ "Disabling boiler during stage up process"
+ annotation (Placement(transformation(extent={{180,100},{200,120}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Multiply proInt5
+ "Find out the index of disabling boiler"
+ annotation (Placement(transformation(extent={{120,-110},{140,-90}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Multiply proInt6
+ "Staging down process and it requires boiler on and off"
+ annotation (Placement(transformation(extent={{120,-150},{140,-130}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Multiply proInt7
+ "Enabling boiler during stage down process"
+ annotation (Placement(transformation(extent={{180,-170},{200,-150}})));
+
+ Buildings.Controls.OBC.CDL.Conversions.BooleanToInteger booToInt[nBoi]
+ "Boolean to integer"
+ annotation (Placement(transformation(extent={{-80,30},{-60,50}})));
+
+ Buildings.Controls.OBC.CDL.Conversions.BooleanToInteger booToInt1[nBoi]
+ "Boolean to integer"
+ annotation (Placement(transformation(extent={{-80,-110},{-60,-90}})));
+
+ Buildings.Controls.OBC.CDL.Conversions.BooleanToInteger booToInt2
+ "Boolean to integer"
+ annotation (Placement(transformation(extent={{40,-70},{60,-50}})));
+
+ Buildings.Controls.OBC.CDL.Conversions.BooleanToInteger booToInt3
+ "Boolean to integer"
+ annotation (Placement(transformation(extent={{-80,120},{-60,140}})));
+
+ Buildings.Controls.OBC.CDL.Conversions.BooleanToInteger booToInt4
+ "Boolean to integer"
+ annotation (Placement(transformation(extent={{-80,80},{-60,100}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant boiIndVec[nBoi](
+ final k=boiInd)
+ "Vector of boiler index"
+ annotation (Placement(transformation(extent={{-120,-10},{-100,10}})));
+
+ Buildings.Controls.OBC.CDL.Routing.BooleanScalarReplicator booRep(
+ final nout=nBoi)
+ "Replicate boolean input"
+ annotation (Placement(transformation(extent={{-160,-170},{-140,-150}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Edge edg[nBoi]
+ "Detect boilers being turned on"
+ annotation (Placement(transformation(extent={{-200,30},{-180,50}})));
+
+ Buildings.Controls.OBC.CDL.Logical.FallingEdge falEdg[nBoi]
+ "Detect boilers being turned off"
+ annotation (Placement(transformation(extent={{-200,-110},{-180,-90}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Not not1
+ "Logical Not"
+ annotation (Placement(transformation(extent={{-200,-170},{-180,-150}})));
+
+equation
+ connect(booRep.y,enaBoi. clr) annotation (Line(points={{-138,-160},{-130,-160},
+ {-130,34},{-122,34}}, color={255,0,255}));
+
+ connect(booRep.y,disBoi. clr) annotation (Line(points={{-138,-160},{-130,-160},
+ {-130,-106},{-122,-106}}, color={255,0,255}));
+
+ connect(enaBoi.y,anyEnaBoi. u) annotation (Line(points={{-98,40},{-90,40},{-90,
+ -20},{-82,-20}},color={255,0,255}));
+
+ connect(anyEnaBoi.y, enaDis.u1) annotation (Line(points={{-58,-20},{-22,-20}},
+ color={255,0,255}));
+
+ connect(disBoi.y,anyDisBoi. u) annotation (Line(points={{-98,-100},{-90,-100},
+ {-90,-60},{-82,-60}},color={255,0,255}));
+
+ connect(anyDisBoi.y, enaDis.u2) annotation (Line(points={{-58,-60},{-30,-60},{
+ -30,-28},{-22,-28}}, color={255,0,255}));
+
+ connect(enaDis.y, yOnOff) annotation (Line(points={{2,-20},{240,-20}},
+ color={255,0,255}));
+
+ connect(uStaSet, cha.u)
+ annotation (Line(points={{-240,110},{-202,110}}, color={255,127,0}));
+
+ connect(disBoi.y, booToInt1.u)
+ annotation (Line(points={{-98,-100},{-82,-100}}, color={255,0,255}));
+
+ connect(enaBoi.y, booToInt.u)
+ annotation (Line(points={{-98,40},{-82,40}}, color={255,0,255}));
+
+ connect(booToInt.y, proInt.u1) annotation (Line(points={{-58,40},{-40,40},{-40,
+ 46},{-22,46}}, color={255,127,0}));
+
+ connect(booToInt1.y, proInt1.u2) annotation (Line(points={{-58,-100},{-40,-100},
+ {-40,-106},{-22,-106}}, color={255,127,0}));
+
+ connect(boiIndVec.y, proInt.u2) annotation (Line(points={{-98,0},{-40,0},{-40,
+ 34},{-22,34}}, color={255,127,0}));
+
+ connect(proInt.y,enaBoiInd. u)
+ annotation (Line(points={{2,40},{18,40}}, color={255,127,0}));
+
+ connect(boiIndVec.y, proInt1.u1) annotation (Line(points={{-98,0},{-40,0},{-40,
+ -94},{-22,-94}}, color={255,127,0}));
+
+ connect(proInt1.y,disBoiInd. u)
+ annotation (Line(points={{2,-100},{18,-100}}, color={255,127,0}));
+
+ connect(enaDis.y, booToInt2.u) annotation (Line(points={{2,-20},{20,-20},{20,-60},
+ {38,-60}}, color={255,0,255}));
+
+ connect(upPro.y, booToInt3.u)
+ annotation (Line(points={{-98,130},{-82,130}}, color={255,0,255}));
+
+ connect(booToInt3.y, proInt2.u1) annotation (Line(points={{-58,130},{-20,130},
+ {-20,166},{118,166}}, color={255,127,0}));
+
+ connect(enaBoiInd.y, proInt2.u2) annotation (Line(points={{42,40},{80,40},{80,
+ 154},{118,154}}, color={255,127,0}));
+
+ connect(proInt2.y,yNexEnaBoi)
+ annotation (Line(points={{142,160},{240,160}}, color={255,127,0}));
+
+ connect(booToInt3.y, proInt3.u1) annotation (Line(points={{-58,130},{-20,130},
+ {-20,126},{118,126}},color={255,127,0}));
+
+ connect(booToInt2.y, proInt3.u2) annotation (Line(points={{62,-60},{70,-60},{70,
+ 114},{118,114}},color={255,127,0}));
+
+ connect(proInt3.y, proInt4.u1) annotation (Line(points={{142,120},{160,120},{160,
+ 116},{178,116}}, color={255,127,0}));
+
+ connect(disBoiInd.y, proInt4.u2) annotation (Line(points={{42,-100},{90,-100},
+ {90,104},{178,104}}, color={255,127,0}));
+
+ connect(proInt4.y,yDisSmaBoi)
+ annotation (Line(points={{202,110},{240,110}}, color={255,127,0}));
+
+ connect(dowPro.y, booToInt4.u)
+ annotation (Line(points={{-98,90},{-82,90}}, color={255,0,255}));
+
+ connect(booToInt4.y, proInt5.u1) annotation (Line(points={{-58,90},{100,90},{
+ 100,-94},{118,-94}},
+ color={255,127,0}));
+
+ connect(disBoiInd.y, proInt5.u2) annotation (Line(points={{42,-100},{90,-100},
+ {90,-106},{118,-106}}, color={255,127,0}));
+
+ connect(proInt5.y,yLasDisBoi)
+ annotation (Line(points={{142,-100},{240,-100}}, color={255,127,0}));
+
+ connect(booToInt2.y, proInt6.u2) annotation (Line(points={{62,-60},{70,-60},{70,
+ -146},{118,-146}}, color={255,127,0}));
+
+ connect(booToInt4.y, proInt6.u1) annotation (Line(points={{-58,90},{100,90},{
+ 100,-134},{118,-134}},
+ color={255,127,0}));
+
+ connect(proInt6.y, proInt7.u1) annotation (Line(points={{142,-140},{160,-140},
+ {160,-154},{178,-154}}, color={255,127,0}));
+
+ connect(enaBoiInd.y, proInt7.u2) annotation (Line(points={{42,40},{80,40},{80,
+ -166},{178,-166}}, color={255,127,0}));
+
+ connect(proInt7.y,yEnaSmaBoi)
+ annotation (Line(points={{202,-160},{240,-160}}, color={255,127,0}));
+
+ connect(falEdg.u, uBoiSet) annotation (Line(points={{-202,-100},{-212,-100},{
+ -212,0},{-240,0}}, color={255,0,255}));
+
+ connect(edg.u, uBoiSet) annotation (Line(points={{-202,40},{-212,40},{-212,0},
+ {-240,0}}, color={255,0,255}));
+
+ connect(falEdg.y, disBoi.u)
+ annotation (Line(points={{-178,-100},{-122,-100}}, color={255,0,255}));
+ connect(edg.y, enaBoi.u)
+ annotation (Line(points={{-178,40},{-122,40}}, color={255,0,255}));
+ connect(cha.up, upPro.u) annotation (Line(points={{-178,116},{-140,116},{-140,
+ 130},{-122,130}}, color={255,0,255}));
+ connect(cha.down, dowPro.u) annotation (Line(points={{-178,104},{-140,104},{
+ -140,90},{-122,90}}, color={255,0,255}));
+ connect(chaPro, not1.u)
+ annotation (Line(points={{-240,-160},{-202,-160}}, color={255,0,255}));
+ connect(not1.y, booRep.u)
+ annotation (Line(points={{-178,-160},{-162,-160}}, color={255,0,255}));
+ connect(not1.y, upPro.clr) annotation (Line(points={{-178,-160},{-170,-160},{-170,
+ 124},{-122,124}}, color={255,0,255}));
+ connect(not1.y, dowPro.clr) annotation (Line(points={{-178,-160},{-170,-160},{
+ -170,84},{-122,84}}, color={255,0,255}));
+
+annotation (
+ defaultComponentName="nexBoi",
+ Diagram(coordinateSystem(preserveAspectRatio=false,
+ extent={{-220,-180},{220,180}})),
+ Icon(coordinateSystem(extent={{-100,-100},{100,100}}),
+ graphics={
+ Rectangle(
+ extent={{-100,-100},{100,100}},
+ lineColor={0,0,127},
+ fillColor={255,255,255},
+ fillPattern=FillPattern.Solid),
+ Text(extent={{-120,146},{100,108}},
+ textColor={0,0,255},
+ textString="%name"),
+ Text(
+ extent={{-100,76},{-64,66}},
+ textColor={255,127,0},
+ pattern=LinePattern.Dash,
+ textString="uStaSet"),
+ Text(
+ extent={{-100,8},{-58,-4}},
+ textColor={255,0,255},
+ pattern=LinePattern.Dash,
+ textString="uBoiSet"),
+ Text(
+ extent={{50,100},{98,80}},
+ textColor={255,127,0},
+ pattern=LinePattern.Dash,
+ textString="yNexEnaBoi"),
+ Text(
+ extent={{-98,-62},{-64,-74}},
+ textColor={255,0,255},
+ pattern=LinePattern.Dash,
+ textString="chaPro"),
+ Text(
+ extent={{50,52},{98,32}},
+ textColor={255,127,0},
+ pattern=LinePattern.Dash,
+ textString="yDisSmaBoi"),
+ Text(
+ extent={{50,-28},{98,-48}},
+ textColor={255,127,0},
+ pattern=LinePattern.Dash,
+ textString="yDisLasBoi"),
+ Text(
+ extent={{44,-78},{98,-100}},
+ textColor={255,127,0},
+ pattern=LinePattern.Dash,
+ textString="yEnaSmaBoi"),
+ Text(
+ extent={{54,8},{96,-4}},
+ textColor={255,0,255},
+ pattern=LinePattern.Dash,
+ textString="yOnOff"),
+ Text(
+ extent={{-100,100},{100,-100}},
+ textColor={0,0,0},
+ textString="?")}),
+Documentation(info="
+
+This block identifies index of next enabled boiler (yNexEnaBoi
and
+yEnaSmaBoi
) or disabled boiler (yDisSmaBoi
and
+yLasDisBoi
) based on current boiler stage setpoint
+uStaSet
and the boiler status setpoint uBoiSet
.
+
+
+This implementation assumes that the stage-up process (increased uStaSet
)
+will enable only one more boiler (yOnOff=false
), or enable a larger
+boiler and disable a smaller boiler (yOnOff=true
);
+ the stage-down
+process (decreased uStaSet
) will disable only one existing boiler
+(yOnOff=false
), or disable a larger boiler and enable a smaller
+boiler (yOnOff=true
).
+
+", revisions="
+
+-
+July 07, 2020, by Karthik Devaprasad:
+First implementation.
+
+
+"));
+end NextBoiler;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Staging/Processes/Subsequences/ResetHotWaterSupplyTemperature.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Staging/Processes/Subsequences/ResetHotWaterSupplyTemperature.mo
new file mode 100644
index 00000000000..c84131d7044
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Staging/Processes/Subsequences/ResetHotWaterSupplyTemperature.mo
@@ -0,0 +1,260 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Staging.Processes.Subsequences;
+block ResetHotWaterSupplyTemperature
+ "Sequence for hot water supply temperature reset"
+
+ parameter Integer nSta = 5
+ "Number of stages in boiler plant";
+
+ parameter Real delPro(
+ final unit="s",
+ final quantity="Time",
+ displayUnit="s") = 300
+ "Process time-out";
+
+ parameter Real TMinSupNonConBoi(
+ final min=0,
+ final unit="K",
+ displayUnit="K",
+ final quantity="ThermodynamicTemperature") = 333.2
+ "Minimum supply temperature required for non-condensing boilers";
+
+ parameter Real sigDif(
+ final min=0,
+ final unit="K",
+ displayUnit="K",
+ final quantity="TemperatureDifference") = 0.1
+ "Significant difference based on minimum resolution of temperature sensor"
+ annotation (Dialog(tab="Advanced"));
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uStaUp
+ "Stage up command"
+ annotation (Placement(transformation(extent={{-200,50},{-160,90}}),
+ iconTransformation(extent={{-140,50},{-100,90}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.IntegerInput uStaTyp[nSta]
+ "Vector of stage-types"
+ annotation (Placement(transformation(extent={{-200,-40},{-160,0}}),
+ iconTransformation(extent={{-140,-50},{-100,-10}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.IntegerInput uStaSet
+ "Stage setpoint being changed to"
+ annotation (Placement(transformation(extent={{-200,-100},{-160,-60}}),
+ iconTransformation(extent={{-140,-90},{-100,-50}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput THotWatSup(
+ final min=0,
+ final unit="K",
+ displayUnit="K",
+ final quantity="ThermodynamicTemperature")
+ "Measured hot water supply temperature"
+ annotation (Placement(transformation(extent={{-200,10},{-160,50}}),
+ iconTransformation(extent={{-140,10},{-100,50}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanOutput yHotWatSupTemRes
+ "True: Hot water supply temperature has been reset"
+ annotation (Placement(transformation(extent={{160,10},{200,50}}),
+ iconTransformation(extent={{100,-20},{140,20}})));
+
+protected
+ parameter Integer boiStaInd[nSta]={i for i in 1:nSta}
+ "Index vector of boiler plant stages";
+
+ Buildings.Controls.OBC.CDL.Logical.And and1
+ "Ensure stage-completion signal is passed only when the stage-up signal is active"
+ annotation (Placement(transformation(extent={{-40,40},{-20,60}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.LessThreshold lesThr(
+ final t=Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Types.BoilerTypes.nonCondensingBoiler)
+ "Pass True if all preceding stages are condensing boiler type stages"
+ annotation (Placement(transformation(extent={{80,-70},{100,-50}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant conInt[nSta](
+ final k=boiStaInd)
+ "Boiler plant stage index generator"
+ annotation (Placement(transformation(extent={{-156,-70},{-136,-50}})));
+
+ Buildings.Controls.OBC.CDL.Routing.IntegerScalarReplicator intRep(
+ final nout=nSta)
+ "Generate row vector with current stage setpoint"
+ annotation (Placement(transformation(extent={{-120,-90},{-100,-70}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Less intLes[nSta]
+ "Identify stage indices below current setpoint"
+ annotation (Placement(transformation(extent={{-80,-70},{-60,-50}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Switch intSwi[nSta]
+ "Pass stage-type values for all stage indices lower than current setpoint"
+ annotation (Placement(transformation(extent={{-40,-70},{-20,-50}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant conInt1[nSta](
+ final k=fill(0, nSta))
+ "Pass zero for stage indices higher than and equal to current setpoint"
+ annotation (Placement(transformation(extent={{-80,-96},{-60,-76}})));
+
+ Buildings.Controls.OBC.CDL.Conversions.IntegerToReal intToRea[nSta]
+ "Integer to Real conversion"
+ annotation (Placement(transformation(extent={{0,-70},{20,-50}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.MultiMax mulMax(
+ final nin=nSta)
+ "Detect maximum from stage-type vector"
+ annotation (Placement(transformation(extent={{40,-70},{60,-50}})));
+
+ Buildings.Controls.OBC.CDL.Routing.RealExtractor extIndSig(
+ final nin=nSta)
+ "Identify stage-type for current stage setpoint"
+ annotation (Placement(transformation(extent={{-100,-30},{-80,-10}})));
+
+ Buildings.Controls.OBC.CDL.Conversions.IntegerToReal intToRea1[nSta]
+ "Integer to Real conversion"
+ annotation (Placement(transformation(extent={{-140,-30},{-120,-10}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.GreaterThreshold greThr1(
+ final t=Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Types.BoilerTypes.condensingBoiler)
+ "Identify if current stage setpoint is a non-condensing boiler stage"
+ annotation (Placement(transformation(extent={{-60,-30},{-40,-10}})));
+
+ Buildings.Controls.OBC.CDL.Logical.And and2
+ "Ensure current stage setpoint is the lead non-condensing boiler stage"
+ annotation (Placement(transformation(extent={{120,-40},{140,-20}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Switch logSwi
+ "Pass process completion signal based on whether stage setpoint is lead non-condensing stage"
+ annotation (Placement(transformation(extent={{120,20},{140,40}})));
+
+ Buildings.Controls.OBC.CDL.Logical.TrueDelay truDel(
+ final delayTime=delPro,
+ final delayOnInit=true)
+ "Process time-out delay"
+ annotation (Placement(transformation(extent={{-140,60},{-120,80}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Or or2
+ "Pass process completion signal upon temperature reset or process time-out"
+ annotation (Placement(transformation(extent={{-100,40},{-80,60}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Hysteresis hys(
+ final uLow=TMinSupNonConBoi,
+ final uHigh=TMinSupNonConBoi + sigDif)
+ "Check if measured hot water supply temperature is greater than minimum
+ required temperature for non-condensing boilers"
+ annotation (Placement(transformation(extent={{-140,20},{-120,40}})));
+
+equation
+ connect(intRep.u, uStaSet)
+ annotation (Line(points={{-122,-80},{-180,-80}}, color={255,127,0}));
+
+ connect(uStaTyp, intSwi.u1) annotation (Line(points={{-180,-20},{-150,-20},{
+ -150,-40},{-50,-40},{-50,-52},{-42,-52}},
+ color={255,127,0}));
+
+ connect(conInt1.y, intSwi.u3) annotation (Line(points={{-58,-86},{-50,-86},{-50,
+ -68},{-42,-68}}, color={255,127,0}));
+
+ connect(intSwi.y, intToRea.u)
+ annotation (Line(points={{-18,-60},{-2,-60}}, color={255,127,0}));
+
+ connect(uStaTyp, intToRea1.u)
+ annotation (Line(points={{-180,-20},{-142,-20}}, color={255,127,0}));
+
+ connect(intToRea1.y, extIndSig.u)
+ annotation (Line(points={{-118,-20},{-102,-20}}, color={0,0,127}));
+
+ connect(extIndSig.index, uStaSet) annotation (Line(points={{-90,-32},{-90,-34},
+ {-130,-34},{-130,-80},{-180,-80}}, color={255,127,0}));
+
+ connect(extIndSig.y, greThr1.u)
+ annotation (Line(points={{-78,-20},{-62,-20}}, color={0,0,127}));
+
+ connect(greThr1.y, and2.u1) annotation (Line(points={{-38,-20},{110,-20},{110,
+ -30},{118,-30}}, color={255,0,255}));
+
+ connect(logSwi.y, yHotWatSupTemRes)
+ annotation (Line(points={{142,30},{180,30}}, color={255,0,255}));
+
+ connect(truDel.u, uStaUp) annotation (Line(points={{-142,70},{-180,70},{-180,
+ 70}}, color={255,0,255}));
+
+ connect(or2.u1, truDel.y) annotation (Line(points={{-102,50},{-110,50},{-110,
+ 70},{-118,70}}, color={255,0,255}));
+
+ connect(and2.y, logSwi.u2) annotation (Line(points={{142,-30},{150,-30},{150,
+ 10},{110,10},{110,30},{118,30}}, color={255,0,255}));
+
+ connect(uStaUp, logSwi.u3) annotation (Line(points={{-180,70},{-150,70},{-150,
+ 10},{100,10},{100,22},{118,22}}, color={255,0,255}));
+
+ connect(hys.u, THotWatSup)
+ annotation (Line(points={{-142,30},{-180,30}}, color={0,0,127}));
+
+ connect(hys.y, or2.u2) annotation (Line(points={{-118,30},{-110,30},{-110,42},
+ {-102,42}}, color={255,0,255}));
+
+ connect(intRep.y, intLes.u2) annotation (Line(points={{-98,-80},{-90,-80},{-90,
+ -68},{-82,-68}}, color={255,127,0}));
+
+ connect(conInt.y, intLes.u1)
+ annotation (Line(points={{-134,-60},{-82,-60}}, color={255,127,0}));
+
+ connect(intLes.y, intSwi.u2)
+ annotation (Line(points={{-58,-60},{-42,-60}}, color={255,0,255}));
+
+ connect(intToRea.y, mulMax.u[1:nSta]) annotation (Line(points={{22,-60},{30,-60},
+ {30,-60},{38,-60}}, color={0,0,127}));
+
+ connect(mulMax.y, lesThr.u)
+ annotation (Line(points={{62,-60},{78,-60}}, color={0,0,127}));
+
+ connect(lesThr.y, and2.u2) annotation (Line(points={{102,-60},{110,-60},{110,-38},
+ {118,-38}}, color={255,0,255}));
+
+ connect(or2.y, and1.u1)
+ annotation (Line(points={{-78,50},{-42,50}}, color={255,0,255}));
+
+ connect(uStaUp, and1.u2) annotation (Line(points={{-180,70},{-150,70},{-150,
+ 10},{-50,10},{-50,42},{-42,42}}, color={255,0,255}));
+
+ connect(and1.y, logSwi.u1) annotation (Line(points={{-18,50},{100,50},{100,38},
+ {118,38}}, color={255,0,255}));
+
+annotation (
+ defaultComponentName="hotWatSupTemRes",
+ Icon(graphics={
+ Rectangle(
+ extent={{-100,-100},{100,100}},
+ lineColor={0,0,127},
+ fillColor={255,255,255},
+ fillPattern=FillPattern.Solid),
+ Text(
+ extent={{-120,146},{100,108}},
+ textColor={0,0,255},
+ textString="%name"),
+ Text(
+ extent={{-100,100},{100,-100}},
+ textColor={0,0,0},
+ textString="S")}),
+ Diagram(coordinateSystem(preserveAspectRatio=false,
+ extent={{-160,-100},{160,100}})),
+ Documentation(info="
+
+Block that generates hot water supply temperature reset status when there is
+stage-change command.
+This development is based on RP-1711, March 2020 draft, section 5.3.3.14, item 3.
+
+
+When a stage-up command is received (uStaUp
= true),
+the sequence checks if the hot water supply temperature THotWatSup
+has exceeded the minimum supply temperature for non-condensing boilers
+TMinSupNonConBoi
or if the process time-out delPro
has
+been exceeded since uStaUp
became true. It will then set yHotWatSupTemRes
+to true.
+
+",
+revisions="
+
+-
+July 07, 2020, by Karthik Devaprasad:
+First implementation.
+
+
+"));
+end ResetHotWaterSupplyTemperature;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Staging/Processes/Subsequences/ResetMinBypass.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Staging/Processes/Subsequences/ResetMinBypass.mo
new file mode 100644
index 00000000000..b6c12c2a620
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Staging/Processes/Subsequences/ResetMinBypass.mo
@@ -0,0 +1,236 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Staging.Processes.Subsequences;
+block ResetMinBypass
+ "Sequence for minimum hot water flow setpoint reset"
+
+ parameter Real delEna(
+ final unit="s",
+ final quantity="Time",
+ displayUnit="s") = 60
+ "Enable delay after setpoint achieved";
+
+ parameter Real relFloDif(
+ final unit="1",
+ displayUnit="1")=0.05
+ "Relative error to the setpoint for checking if it has achieved flow rate setpoint"
+ annotation (Dialog(tab="Advanced"));
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uUpsDevSta
+ "Reset status of upstream device before resetting minimum flow setpoint"
+ annotation (Placement(transformation(extent={{-200,60},{-160,100}}),
+ iconTransformation(extent={{-140,60},{-100,100}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput chaPro
+ "Continuous signal indicating if stage change is in process"
+ annotation (Placement(transformation(extent={{-200,20},{-160,60}}),
+ iconTransformation(extent={{-140,20},{-100,60}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput VHotWat_flow(
+ final min=0,
+ final unit="m3/s",
+ displayUnit="m3/s",
+ final quantity="VolumeFlowRate")
+ "Measured hot water flow rate"
+ annotation (Placement(transformation(extent={{-200,-40},{-160,0}}),
+ iconTransformation(extent={{-140,-60},{-100,-20}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput VMinHotWatSet_flow(
+ final min=0,
+ final unit="m3/s",
+ displayUnit="m3/s",
+ final quantity="VolumeFlowRate")
+ "Minimum hot water flow setpoint"
+ annotation (Placement(transformation(extent={{-200,-100},{-160,-60}}),
+ iconTransformation(extent={{-140,-100},{-100,-60}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanOutput yMinBypRes
+ "True: minimum hot water flow bypass setpoint has been reset successfully"
+ annotation (Placement(transformation(extent={{160,60},{200,100}}),
+ iconTransformation(extent={{100,-20},{140,20}})));
+
+protected
+ Buildings.Controls.OBC.CDL.Continuous.Hysteresis hys(
+ final uLow=-relFloDif,
+ final uHigh=0)
+ "Check if boiler water flow rate is different from its setpoint"
+ annotation (Placement(transformation(extent={{-60,-70},{-40,-50}})));
+
+ Buildings.Controls.OBC.CDL.Logical.And3 and1
+ "Logical and"
+ annotation (Placement(transformation(extent={{120,70},{140,90}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Timer tim(
+ final t=delEna)
+ "Time after achieving setpoint"
+ annotation (Placement(transformation(extent={{40,-30},{60,-10}})));
+
+ Buildings.Controls.OBC.CDL.Logical.And and2
+ "Logical and"
+ annotation (Placement(transformation(extent={{-80,70},{-60,90}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Not not1
+ "Logical not"
+ annotation (Placement(transformation(extent={{-120,10},{-100,30}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Latch lat
+ "Logical latch"
+ annotation (Placement(transformation(extent={{80,30},{100,50}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Divide div
+ "Flow rate error divided by its setpoint"
+ annotation (Placement(transformation(extent={{-100,-70},{-80,-50}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.AddParameter addPar(
+ final p=1e-6)
+ "Add a small positive to avoid zero output"
+ annotation (Placement(transformation(extent={{-140,-90},{-120,-70}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Edge edg1
+ "Rising edge"
+ annotation (Placement(transformation(extent={{-80,10},{-60,30}})));
+
+ Buildings.Controls.OBC.CDL.Logical.And and3
+ "Logical and"
+ annotation (Placement(transformation(extent={{0,-30},{20,-10}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Edge edg2
+ "Rising edge"
+ annotation (Placement(transformation(extent={{40,30},{60,50}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Subtract sub2
+ "Find difference between measured flowrate and minimum flow setpoint"
+ annotation (Placement(transformation(extent={{-148,-30},{-128,-10}})));
+
+equation
+ connect(uUpsDevSta, and2.u1)
+ annotation (Line(points={{-180,80},{-82,80}}, color={255,0,255}));
+
+ connect(chaPro, and2.u2)
+ annotation (Line(points={{-180,40},{-140,40},{-140,72},{-82,72}},
+ color={255,0,255}));
+
+ connect(and2.y, and1.u1)
+ annotation (Line(points={{-58,80},{-10,80},{-10,88},{118,88}},
+ color={255,0,255}));
+
+ connect(and1.y,yMinBypRes)
+ annotation (Line(points={{142,80},{180,80}}, color={255,0,255}));
+
+ connect(chaPro, not1.u)
+ annotation (Line(points={{-180,40},{-140,40},{-140,20},{-122,20}},
+ color={255,0,255}));
+
+ connect(lat.y, and1.u2)
+ annotation (Line(points={{102,40},{108,40},{108,80},{118,80}},
+ color={255,0,255}));
+
+ connect(VMinHotWatSet_flow, addPar.u)
+ annotation (Line(points={{-180,-80},{-142,-80}}, color={0,0,127}));
+
+ connect(div.y, hys.u)
+ annotation (Line(points={{-78,-60},{-62,-60}}, color={0,0,127}));
+
+ connect(not1.y, edg1.u)
+ annotation (Line(points={{-98,20},{-82,20}}, color={255,0,255}));
+
+ connect(edg1.y, lat.clr)
+ annotation (Line(points={{-58,20},{70,20},{70,34},{78,34}},
+ color={255,0,255}));
+
+ connect(and3.y, tim.u)
+ annotation (Line(points={{22,-20},{38,-20}}, color={255,0,255}));
+
+ connect(addPar.y, div.u2)
+ annotation (Line(points={{-118,-80},{-110,-80},{-110,-66},{-102,-66}},
+ color={0,0,127}));
+
+ connect(and3.y, edg2.u)
+ annotation (Line(points={{22,-20},{30,-20},{30,40},{38,40}},
+ color={255,0,255}));
+
+ connect(edg2.y, lat.u)
+ annotation (Line(points={{62,40},{78,40}}, color={255,0,255}));
+
+ connect(and2.y, and3.u1)
+ annotation (Line(points={{-58,80},{-10,80},{-10,-20},{-2,-20}},
+ color={255,0,255}));
+
+ connect(sub2.u1, VHotWat_flow) annotation (Line(points={{-150,-14},{-154,-14},
+ {-154,-20},{-180,-20}}, color={0,0,127}));
+
+ connect(sub2.u2, VMinHotWatSet_flow) annotation (Line(points={{-150,-26},{-154,
+ -26},{-154,-80},{-180,-80}}, color={0,0,127}));
+
+ connect(tim.passed, and1.u3) annotation (Line(points={{62,-28},{114,-28},{114,
+ 72},{118,72}}, color={255,0,255}));
+ connect(hys.y, and3.u2) annotation (Line(points={{-38,-60},{-10,-60},{-10,-28},
+ {-2,-28}}, color={255,0,255}));
+ connect(sub2.y, div.u1) annotation (Line(points={{-126,-20},{-110,-20},{-110,-54},
+ {-102,-54}}, color={0,0,127}));
+annotation (
+ defaultComponentName="minBypRes",
+ Icon(graphics={
+ Rectangle(
+ extent={{-100,-100},{100,100}},
+ lineColor={0,0,127},
+ fillColor={255,255,255},
+ fillPattern=FillPattern.Solid),
+ Text(
+ extent={{-120,146},{100,108}},
+ textColor={0,0,255},
+ textString="%name"),
+ Text(
+ extent={{50,8},{98,-8}},
+ textColor={255,0,255},
+ pattern=LinePattern.Dash,
+ textString="yMinBypRes"),
+ Text(
+ extent={{-98,-32},{-50,-46}},
+ textColor={0,0,127},
+ pattern=LinePattern.Dash,
+ textString="VHotWat_flow"),
+ Text(
+ extent={{-98,-72},{-30,-88}},
+ textColor={0,0,127},
+ pattern=LinePattern.Dash,
+ textString="VMinHotWat_setpoint"),
+ Text(
+ extent={{-98,46},{-66,36}},
+ textColor={255,0,255},
+ pattern=LinePattern.Dash,
+ textString="chaPro"),
+ Text(
+ extent={{-100,100},{100,-100}},
+ textColor={0,0,0},
+ textString="S"),
+ Text(
+ extent={{-98,88},{-52,76}},
+ textColor={255,0,255},
+ pattern=LinePattern.Dash,
+ textString="uUpsDevSta")}),
+ Diagram(coordinateSystem(preserveAspectRatio=false,
+ extent={{-160,-100},{160,100}})),
+ Documentation(info="
+
+Block that generates minimum bypass flow reset status when there is
+stage-change command.
+This development is based on RP-1711, March 2020 draft, sections 5.3.3.11 and
+5.3.3.12, subsection 1.a.
+
+
+When a stage-change command is received (chaPro
= true) and the upstream
+device has finished its adjustment process (uUpsDevSta
= true),
+check if the minimum hot water flow rate VHotWat_flow
has achieved
+its new set point VMinHotWat_setpoint
.
+After new setpoint is achieved, wait for 1 minute (byPasSetTim
) to
+allow loop to stabilize. It will then set yMinBypRes
to true.
+
+",
+revisions="
+
+-
+July 07, 2020, by Karthik Devaprasad:
+First implementation.
+
+
+"));
+end ResetMinBypass;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Staging/Processes/Subsequences/Validation/DisableBoiler.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Staging/Processes/Subsequences/Validation/DisableBoiler.mo
new file mode 100644
index 00000000000..9eeb1a39928
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Staging/Processes/Subsequences/Validation/DisableBoiler.mo
@@ -0,0 +1,231 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Staging.Processes.Subsequences.Validation;
+model DisableBoiler
+ "Validate sequence of disabling boiler during stage-down process"
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Staging.Processes.Subsequences.DisableBoiler
+ boiOnOff(
+ final nBoi=3,
+ final proOnTim=300)
+ "Disable a boiler and enable another boiler"
+ annotation (Placement(transformation(extent={{-80,70},{-60,90}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Staging.Processes.Subsequences.DisableBoiler
+ boiOff(
+ final nBoi=3,
+ final proOnTim=300)
+ "Disable boiler"
+ annotation (Placement(transformation(extent={{102,70},{122,90}})));
+
+ Buildings.Controls.OBC.CDL.Logical.TrueFalseHold truFalHol(trueHoldDuration=10)
+ "Hold boolean pulse signal for easy visualization"
+ annotation (Placement(transformation(extent={{-10,90},{10,110}})));
+
+ Buildings.Controls.OBC.CDL.Logical.TrueFalseHold truFalHol1(trueHoldDuration=10)
+ "Hold boolean pulse signal for easy visualization"
+ annotation (Placement(transformation(extent={{170,90},{190,110}})));
+
+protected
+ Buildings.Controls.OBC.CDL.Logical.Sources.Pulse booPul(
+ final width=0.15,
+ final period=3600)
+ "Boolean pulse"
+ annotation (Placement(transformation(extent={{-200,50},{-180,70}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Not staCha
+ "Stage change command"
+ annotation (Placement(transformation(extent={{-160,50},{-140,70}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Pulse booPul1(
+ final width=0.20,
+ final period=3600)
+ "Boolean pulse"
+ annotation (Placement(transformation(extent={{-200,10},{-180,30}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Not upsDevSta
+ "Upstream device status"
+ annotation (Placement(transformation(extent={{-160,10},{-140,30}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant boiOne(
+ final k=true)
+ "Operating boiler one"
+ annotation (Placement(transformation(extent={{-160,-30},{-140,-10}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant enaBoi(
+ final k=3)
+ "Enabling boiler index"
+ annotation (Placement(transformation(extent={{-160,90},{-140,110}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Switch boiTwo
+ "Boiler two status"
+ annotation (Placement(transformation(extent={{-40,-50},{-20,-30}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant onOff(
+ final k=true)
+ "Requires one boiler on and another boiler off"
+ annotation (Placement(transformation(extent={{-160,-110},{-140,-90}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant disBoi(
+ final k=2)
+ "Disabling boiler index"
+ annotation (Placement(transformation(extent={{-160,-70},{-140,-50}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant enaBoi1(
+ final k=1)
+ "Enabling boiler index"
+ annotation (Placement(transformation(extent={{20,90},{40,110}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant noOnOff(
+ final k=false)
+ "Does not requires one boiler on and another boiler off"
+ annotation (Placement(transformation(extent={{20,-110},{40,-90}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Switch boiTwo1
+ "Boiler two status"
+ annotation (Placement(transformation(extent={{140,-50},{160,-30}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Pre boiStaRet[2]
+ "Boiler status return value"
+ annotation (Placement(transformation(extent={{-40,70},{-20,90}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Pre boiStaRet1[2]
+ "Boiler status return value"
+ annotation (Placement(transformation(extent={{140,70},{160,90}})));
+
+equation
+ connect(booPul.y, staCha.u)
+ annotation (Line(points={{-178,60},{-162,60}}, color={255,0,255}));
+
+ connect(booPul1.y, upsDevSta.u)
+ annotation (Line(points={{-178,20},{-162,20}}, color={255,0,255}));
+
+ connect(enaBoi.y, boiOnOff.nexEnaBoi) annotation (Line(points={{-138,100},{-100,
+ 100},{-100,89},{-82,89}}, color={255,127,0}));
+
+ connect(staCha.y,boiOnOff. uStaDow)
+ annotation (Line(points={{-138,60},{-124,60},{-124,86},{-82,86}},
+ color={255,0,255}));
+
+ connect(upsDevSta.y,boiOnOff. uUpsDevSta) annotation (Line(points={{-138,20},
+ {-116,20},{-116,82},{-82,82}}, color={255,0,255}));
+
+ connect(boiOne.y,boiOnOff. uBoi[1]) annotation (Line(points={{-138,-20},{-108,
+ -20},{-108,76.6667},{-82,76.6667}}, color={255,0,255}));
+
+ connect(upsDevSta.y,boiTwo. u2)
+ annotation (Line(points={{-138,20},{-116,20},{-116,-40},{-42,-40}},
+ color={255,0,255}));
+
+ connect(boiOne.y,boiTwo. u3)
+ annotation (Line(points={{-138,-20},{-108,-20},{-108,-48},{-42,-48}},
+ color={255,0,255}));
+
+ connect(boiStaRet[1].y,boiTwo. u1) annotation (Line(points={{-18,80},{-10,80},
+ {-10,0},{-50,0},{-50,-32},{-42,-32}}, color={255,0,255}));
+
+ connect(boiStaRet[2].y,boiOnOff. uBoi[3]) annotation (Line(points={{-18,80},{
+ -10,80},{-10,40},{-112,40},{-112,79.3333},{-82,79.3333}}, color={255,
+ 0,255}));
+
+ connect(boiTwo.y,boiOnOff. uBoi[2]) annotation (Line(points={{-18,-40},{-10,-40},
+ {-10,-70},{-120,-70},{-120,78},{-82,78}}, color={255,0,255}));
+
+ connect(disBoi.y,boiOnOff.nexDisBoi)
+ annotation (Line(points={{-138,-60},{-104,-60},{-104,75},{-82,75}},
+ color={255,127,0}));
+
+ connect(onOff.y,boiOnOff. uOnOff)
+ annotation (Line(points={{-138,-100},{-100,-100},{-100,71},{-82,71}},
+ color={255,0,255}));
+
+ connect(enaBoi1.y,boiOff.nexEnaBoi)
+ annotation (Line(points={{42,100},{80,100},{80,89},{100,89}},
+ color={255,127,0}));
+
+ connect(staCha.y,boiOff. uStaDow)
+ annotation (Line(points={{-138,60},{56,60},{56,86},{100,86}},
+ color={255,0,255}));
+
+ connect(boiOne.y,boiOff. uBoi[1]) annotation (Line(points={{-138,-20},{64,-20},
+ {64,76.6667},{100,76.6667}}, color={255,0,255}));
+
+ connect(disBoi.y,boiOff.nexDisBoi)
+ annotation (Line(points={{-138,-60},{76,-60},{76,75},{100,75}},
+ color={255,127,0}));
+
+ connect(noOnOff.y,boiOff. uOnOff)
+ annotation (Line(points={{42,-100},{80,-100},{80,71},{100,71}},
+ color={255,0,255}));
+
+ connect(staCha.y,boiTwo1. u2)
+ annotation (Line(points={{-138,60},{56,60},{56,-40},{138,-40}},
+ color={255,0,255}));
+
+ connect(boiOne.y,boiTwo1. u3)
+ annotation (Line(points={{-138,-20},{64,-20},{64,-48},{138,-48}},
+ color={255,0,255}));
+
+ connect(boiStaRet1[1].y,boiTwo1. u1) annotation (Line(points={{162,80},{170,
+ 80},{170,-20},{130,-20},{130,-32},{138,-32}}, color={255,0,255}));
+
+ connect(boiTwo1.y,boiOff. uBoi[2]) annotation (Line(points={{162,-40},{170,-40},
+ {170,-70},{68,-70},{68,78},{100,78}}, color={255,0,255}));
+
+ connect(boiStaRet1[2].y,boiOff. uBoi[3]) annotation (Line(points={{162,80},{
+ 170,80},{170,40},{72,40},{72,79.3333},{100,79.3333}}, color={255,0,
+ 255}));
+
+
+ connect(boiOnOff.yBoi[2], boiStaRet[1].u)
+ annotation (Line(points={{-58,80},{-42,80}}, color={255,0,255}));
+
+ connect(boiOnOff.yBoi[3], boiStaRet[2].u) annotation (Line(points={{-58,
+ 81.3333},{-52,81.3333},{-52,80},{-42,80}},
+ color={255,0,255}));
+
+ connect(boiOff.yBoi[2], boiStaRet1[1].u)
+ annotation (Line(points={{124,80},{138,80}}, color={255,0,255}));
+
+ connect(boiOff.yBoi[3], boiStaRet1[2].u) annotation (Line(points={{124,
+ 81.3333},{130,81.3333},{130,80},{138,80}},
+ color={255,0,255}));
+
+ connect(boiOnOff.yBoiDisPro, truFalHol.u) annotation (Line(points={{-58,72},{-48,
+ 72},{-48,100},{-12,100}}, color={255,0,255}));
+
+ connect(boiOff.yBoiDisPro, truFalHol1.u) annotation (Line(points={{124,72},{134,
+ 72},{134,100},{168,100}}, color={255,0,255}));
+
+ connect(upsDevSta.y, boiOff.uUpsDevSta) annotation (Line(points={{-138,20},{
+ 60,20},{60,82},{100,82}}, color={255,0,255}));
+
+annotation (
+ experiment(StopTime=3600, Tolerance=1e-06),
+ __Dymola_Commands(file="modelica://Buildings/Resources/Scripts/Dymola/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Staging/Processes/Subsequences/Validation/DisableBoiler.mos"
+ "Simulate and plot"),
+ Documentation(info="
+
+This example validates
+
+Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Staging.Processes.Subsequences.DisableBoiler.
+
+", revisions="
+
+-
+July 10, 2020 by Karthik Devaprasad:
+First implementation.
+
+
+"),
+Icon(coordinateSystem(extent={{-100,-100},{100,100}}),
+ graphics={
+ Ellipse(lineColor = {75,138,73},
+ fillColor={255,255,255},
+ fillPattern = FillPattern.Solid,
+ extent = {{-100,-100},{100,100}}),
+ Polygon(lineColor = {0,0,255},
+ fillColor = {75,138,73},
+ pattern = LinePattern.None,
+ fillPattern = FillPattern.Solid,
+ points = {{-36,60},{64,0},{-36,-60},{-36,60}})}),Diagram(
+ coordinateSystem(preserveAspectRatio=false, extent={{-220,-120},{220,120}})));
+end DisableBoiler;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Staging/Processes/Subsequences/Validation/EnableBoiler.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Staging/Processes/Subsequences/Validation/EnableBoiler.mo
new file mode 100644
index 00000000000..2223cadc452
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Staging/Processes/Subsequences/Validation/EnableBoiler.mo
@@ -0,0 +1,209 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Staging.Processes.Subsequences.Validation;
+model EnableBoiler
+ "Validate sequence of enabling and disabling boiler"
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Staging.Processes.Subsequences.EnableBoiler
+ enaDisBoi(
+ final nBoi=3)
+ "Enable larger boiler and disable smaller boiler"
+ annotation (Placement(transformation(extent={{-80,70},{-60,90}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Staging.Processes.Subsequences.EnableBoiler
+ enaOneBoi(
+ final nBoi=3)
+ "Enable additional boiler"
+ annotation (Placement(transformation(extent={{100,70},{120,90}})));
+
+ Buildings.Controls.OBC.CDL.Logical.TrueFalseHold truFalHol(
+ final trueHoldDuration=10)
+ "Hold pulse signal for visualization"
+ annotation (Placement(transformation(extent={{-40,110},{-20,130}})));
+
+ Buildings.Controls.OBC.CDL.Logical.TrueFalseHold truFalHol1(
+ final trueHoldDuration=10)
+ "Hold pulse signal for visualization"
+ annotation (Placement(transformation(extent={{140,110},{160,130}})));
+
+protected
+ Buildings.Controls.OBC.CDL.Logical.Sources.Pulse booPul(
+ final width=0.15,
+ final period=3600)
+ "Boolean pulse"
+ annotation (Placement(transformation(extent={{-200,50},{-180,70}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Not staUp
+ "Stage up command"
+ annotation (Placement(transformation(extent={{-160,50},{-140,70}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Pulse booPul1(
+ final width=0.20,
+ final period=3600)
+ "Boolean pulse"
+ annotation (Placement(transformation(extent={{-200,10},{-180,30}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Not boiIsoVal
+ "Hot water isolation valve resetting status"
+ annotation (Placement(transformation(extent={{-160,10},{-140,30}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant enaBoi(
+ final k=3)
+ "Enabling boiler index"
+ annotation (Placement(transformation(extent={{-160,90},{-140,110}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant boiOne(
+ final k=true)
+ "Operating boiler one"
+ annotation (Placement(transformation(extent={{-160,-30},{-140,-10}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant onOff(
+ final k=true)
+ "Requires one boiler on and another boiler off"
+ annotation (Placement(transformation(extent={{-160,-70},{-140,-50}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant disBoi(
+ final k=2)
+ "Disabling boiler index"
+ annotation (Placement(transformation(extent={{-160,-110},{-140,-90}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Pre boiStaRet[2]
+ "Boiler status return value"
+ annotation (Placement(transformation(extent={{-40,70},{-20,90}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Switch boiTwo
+ "Boiler two status"
+ annotation (Placement(transformation(extent={{-40,-50},{-20,-30}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Pre boiStaRet1
+ "Boiler status return value"
+ annotation (Placement(transformation(extent={{140,70},{160,90}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant noOnOff(
+ final k=false)
+ "Does not requires one boiler on and another boiler off"
+ annotation (Placement(transformation(extent={{20,-70},{40,-50}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant disBoi1(
+ final k=1)
+ "Disabling boiler index"
+ annotation (Placement(transformation(extent={{20,-110},{40,-90}})));
+
+equation
+ connect(booPul.y, staUp.u)
+ annotation (Line(points={{-178,60},{-162,60}}, color={255,0,255}));
+
+ connect(booPul1.y,boiIsoVal. u)
+ annotation (Line(points={{-178,20},{-162,20}}, color={255,0,255}));
+
+ connect(staUp.y,enaDisBoi. uStaUp)
+ annotation (Line(points={{-138,60},{-120,60},{-120,86},{-82,86}},
+ color={255,0,255}));
+
+ connect(boiIsoVal.y,boiTwo. u2)
+ annotation (Line(points={{-138,20},{-116,20},{-116,-40},{-42,-40}},
+ color={255,0,255}));
+
+ connect(boiOne.y,boiTwo. u3)
+ annotation (Line(points={{-138,-20},{-112,-20},{-112,-48},{-42,-48}},
+ color={255,0,255}));
+
+ connect(onOff.y,enaDisBoi. uOnOff)
+ annotation (Line(points={{-138,-60},{-100,-60},{-100,74},{-82,74}},
+ color={255,0,255}));
+
+ connect(staUp.y,enaOneBoi. uStaUp)
+ annotation (Line(points={{-138,60},{40,60},{40,86},{98,86}},
+ color={255,0,255}));
+
+ connect(noOnOff.y,enaOneBoi. uOnOff)
+ annotation (Line(points={{42,-60},{56,-60},{56,74},{98,74}},
+ color={255,0,255}));
+
+ connect(enaBoi.y, enaDisBoi.nexEnaBoi) annotation (Line(points={{-138,100},{-120,
+ 100},{-120,89},{-82,89}}, color={255,127,0}));
+
+ connect(boiIsoVal.y, enaDisBoi.uUpsDevSta) annotation (Line(points={{-138,20},
+ {-116,20},{-116,82},{-82,82}}, color={255,0,255}));
+
+ connect(boiOne.y, enaDisBoi.uBoi[1]) annotation (Line(points={{-138,-20},{
+ -112,-20},{-112,76.6667},{-82,76.6667}},
+ color={255,0,255}));
+
+ connect(boiTwo.y, enaDisBoi.uBoi[2]) annotation (Line(points={{-18,-40},{-10,-40},
+ {-10,40},{-108,40},{-108,78},{-82,78}}, color={255,0,255}));
+
+ connect(enaDisBoi.yBoi[2], boiStaRet[1].u) annotation (Line(points={{-58,88},{
+ -56,88},{-56,80},{-42,80}}, color={255,0,255}));
+
+ connect(boiStaRet[1].y, boiTwo.u1) annotation (Line(points={{-18,80},{0,80},{0,
+ 0},{-60,0},{-60,-32},{-42,-32}}, color={255,0,255}));
+
+ connect(enaDisBoi.yBoi[3], boiStaRet[2].u) annotation (Line(points={{-58,
+ 89.3333},{-52,89.3333},{-52,80},{-42,80}}, color={255,0,255}));
+
+ connect(boiStaRet[2].y, enaDisBoi.uBoi[3]) annotation (Line(points={{-18,80},
+ {0,80},{0,66},{-104,66},{-104,79.3333},{-82,79.3333}},color={255,0,255}));
+
+ connect(disBoi.y, enaDisBoi.nexDisBoi) annotation (Line(points={{-138,-100},{-90,
+ -100},{-90,71},{-82,71}}, color={255,127,0}));
+
+ connect(enaBoi.y, enaOneBoi.nexEnaBoi) annotation (Line(points={{-138,100},{80,
+ 100},{80,89},{98,89}}, color={255,127,0}));
+
+ connect(enaOneBoi.yBoi[3], boiStaRet1.u) annotation (Line(points={{122,
+ 89.3333},{130,89.3333},{130,80},{138,80}},
+ color={255,0,255}));
+
+ connect(boiOne.y, enaOneBoi.uBoi[1]) annotation (Line(points={{-138,-20},{50,
+ -20},{50,76.6667},{98,76.6667}},
+ color={255,0,255}));
+
+ connect(boiOne.y, enaOneBoi.uBoi[2]) annotation (Line(points={{-138,-20},{50,-20},
+ {50,78},{98,78}}, color={255,0,255}));
+
+ connect(boiStaRet1.y, enaOneBoi.uBoi[3]) annotation (Line(points={{162,80},{
+ 180,80},{180,60},{80,60},{80,79.3333},{98,79.3333}},
+ color={255,0,255}));
+
+ connect(boiIsoVal.y, enaOneBoi.uUpsDevSta) annotation (Line(points={{-138,20},
+ {46,20},{46,82},{98,82}}, color={255,0,255}));
+
+ connect(disBoi1.y, enaOneBoi.nexDisBoi) annotation (Line(points={{42,-100},{60,
+ -100},{60,71},{98,71}}, color={255,127,0}));
+
+ connect(enaDisBoi.yBoiEnaPro, truFalHol.u) annotation (Line(points={{-58,72},
+ {-50,72},{-50,120},{-42,120}}, color={255,0,255}));
+
+ connect(enaOneBoi.yBoiEnaPro, truFalHol1.u) annotation (Line(points={{122,72},
+ {132,72},{132,120},{138,120}}, color={255,0,255}));
+
+annotation (
+ experiment(StopTime=3600, Tolerance=1e-06),
+ __Dymola_Commands(file="modelica://Buildings/Resources/Scripts/Dymola/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Staging/Processes/Subsequences/Validation/EnableBoiler.mos"
+ "Simulate and plot"),
+ Documentation(info="
+
+This example validates
+
+Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Staging.Processes.Subsequences.EnableBoiler.
+
+", revisions="
+
+-
+July 08, 2020 by Karthik Devaprasad:
+First implementation.
+
+
+"),
+Icon(coordinateSystem(extent={{-100,-100},{100,100}}),
+ graphics={
+ Ellipse(lineColor = {75,138,73},
+ fillColor={255,255,255},
+ fillPattern = FillPattern.Solid,
+ extent = {{-100,-100},{100,100}}),
+ Polygon(lineColor = {0,0,255},
+ fillColor = {75,138,73},
+ pattern = LinePattern.None,
+ fillPattern = FillPattern.Solid,
+ points = {{-36,60},{64,0},{-36,-60},{-36,60}})}),Diagram(
+ coordinateSystem(preserveAspectRatio=false, extent={{-220,-140},{220,140}})));
+end EnableBoiler;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Staging/Processes/Subsequences/Validation/HWIsoVal.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Staging/Processes/Subsequences/Validation/HWIsoVal.mo
new file mode 100644
index 00000000000..20598b6e4b8
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Staging/Processes/Subsequences/Validation/HWIsoVal.mo
@@ -0,0 +1,145 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Staging.Processes.Subsequences.Validation;
+model HWIsoVal
+ "Validate isolation valve enable and disable sequence"
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Staging.Processes.Subsequences.HWIsoVal
+ enaHotIsoVal(
+ final nBoi=2,
+ final chaHotWatIsoTim=300,
+ final iniValPos=0,
+ final endValPos=1)
+ "Enable isolation valve"
+ annotation (Placement(transformation(extent={{-100,0},{-80,20}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Staging.Processes.Subsequences.HWIsoVal
+ disHotIsoVal(
+ final nBoi=2,
+ final chaHotWatIsoTim=300,
+ final iniValPos=1,
+ final endValPos=0)
+ "Disable isolation valve"
+ annotation (Placement(transformation(extent={{120,-10},{140,10}})));
+
+protected
+ Buildings.Controls.OBC.CDL.Logical.Sources.Pulse booPul(
+ final width=0.15,
+ final period=3600)
+ "Boolean pulse"
+ annotation (Placement(transformation(extent={{-200,-80},{-180,-60}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Not staCha
+ "Stage change command"
+ annotation (Placement(transformation(extent={{-160,-80},{-140,-60}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Pulse booPul1(
+ final width=0.20,
+ final period=3600)
+ "Boolean pulse"
+ annotation (Placement(transformation(extent={{-200,-40},{-180,-20}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Not upsDevSta
+ "Upstream device status"
+ annotation (Placement(transformation(extent={{-160,-40},{-140,-20}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant valOne(
+ final k=1)
+ "Valve one position, fully open"
+ annotation (Placement(transformation(extent={{-200,10},{-180,30}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant enaBoi(
+ final k=2)
+ "Enabling boiler index"
+ annotation (Placement(transformation(extent={{-160,70},{-140,90}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant valOne1(
+ final k=1)
+ "Valve one position, fully open"
+ annotation (Placement(transformation(extent={{20,10},{40,30}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant disBoi(
+ final k=2)
+ "Disabling boiler index"
+ annotation (Placement(transformation(extent={{60,70},{80,90}})));
+
+ Buildings.Controls.OBC.CDL.Discrete.UnitDelay uniDel(
+ final samplePeriod=1)
+ "Unit delay"
+ annotation (Placement(transformation(extent={{-60,-10},{-40,10}})));
+
+ Buildings.Controls.OBC.CDL.Discrete.UnitDelay uniDel1(
+ final samplePeriod=1,
+ final y_start=1)
+ "Unit delay"
+ annotation (Placement(transformation(extent={{160,-20},{180,0}})));
+
+equation
+ connect(booPul.y, staCha.u)
+ annotation (Line(points={{-178,-70},{-162,-70}}, color={255,0,255}));
+
+ connect(booPul1.y, upsDevSta.u)
+ annotation (Line(points={{-178,-30},{-162,-30}}, color={255,0,255}));
+
+ connect(enaBoi.y, enaHotIsoVal.nexChaBoi) annotation (Line(points={{-138,80},
+ {-120,80},{-120,18},{-102,18}}, color={255,127,0}));
+
+ connect(upsDevSta.y, enaHotIsoVal.uUpsDevSta) annotation (Line(points={{-138,
+ -30},{-120,-30},{-120,5},{-102,5}}, color={255,0,255}));
+
+ connect(upsDevSta.y, disHotIsoVal.uUpsDevSta) annotation (Line(points={{-138,
+ -30},{100,-30},{100,-5},{118,-5}}, color={255,0,255}));
+
+ connect(staCha.y, enaHotIsoVal.chaPro) annotation (Line(points={{-138,-70},{
+ -110,-70},{-110,2},{-102,2}}, color={255,0,255}));
+
+ connect(staCha.y, disHotIsoVal.chaPro) annotation (Line(points={{-138,-70},{
+ 110,-70},{110,-8},{118,-8}}, color={255,0,255}));
+
+ connect(disBoi.y, disHotIsoVal.nexChaBoi) annotation (Line(points={{82,80},{
+ 90,80},{90,8},{118,8}}, color={255,127,0}));
+
+ connect(valOne1.y, disHotIsoVal.uHotWatIsoVal[1]) annotation (Line(points={{
+ 42,20},{60,20},{60,4},{118,4}}, color={0,0,127}));
+
+ connect(valOne.y, enaHotIsoVal.uHotWatIsoVal[1]) annotation (Line(points={{-178,
+ 20},{-140,20},{-140,14},{-102,14}}, color={0,0,127}));
+ connect(enaHotIsoVal.yHotWatIsoVal[2], uniDel.u) annotation (Line(points={{-78,
+ 5},{-70,5},{-70,0},{-62,0}}, color={0,0,127}));
+ connect(uniDel.y, enaHotIsoVal.uHotWatIsoVal[2]) annotation (Line(points={{-38,
+ 0},{-30,0},{-30,40},{-110,40},{-110,16},{-102,16}}, color={0,0,127}));
+ connect(disHotIsoVal.yHotWatIsoVal[2], uniDel1.u) annotation (Line(points={{142,
+ -5},{150,-5},{150,-10},{158,-10}}, color={0,0,127}));
+ connect(uniDel1.y, disHotIsoVal.uHotWatIsoVal[2]) annotation (Line(points={{182,
+ -10},{190,-10},{190,30},{110,30},{110,6},{118,6}}, color={0,0,127}));
+
+annotation (
+ experiment(StopTime=3600, Tolerance=1e-06),
+ __Dymola_Commands(file="modelica://Buildings/Resources/Scripts/Dymola/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Staging/Processes/Subsequences/Validation/HWIsoVal.mos"
+ "Simulate and plot"),
+ Documentation(info="
+
+ This example validates
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Staging.Processes.Subsequences.HWIsoVal.
+
+ ", revisions="
+
+ -
+ June 18, 2020 by Karthik Devaprasad:
+ First implementation.
+
+
+ "),
+ Icon(coordinateSystem(extent={{-100,-100},{100,100}}),
+ graphics={
+ Ellipse(lineColor = {75,138,73},
+ fillColor={255,255,255},
+ fillPattern = FillPattern.Solid,
+ extent = {{-100,-100},{100,100}}),
+ Polygon(lineColor = {0,0,255},
+ fillColor = {75,138,73},
+ pattern = LinePattern.None,
+ fillPattern = FillPattern.Solid,
+ points = {{-36,60},{64,0},{-36,-60},{-36,60}})}),
+ Diagram(coordinateSystem(preserveAspectRatio=false,
+ extent={{-220,-120},{220,120}})));
+end HWIsoVal;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Staging/Processes/Subsequences/Validation/NextBoiler.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Staging/Processes/Subsequences/Validation/NextBoiler.mo
new file mode 100644
index 00000000000..ead5542a069
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Staging/Processes/Subsequences/Validation/NextBoiler.mo
@@ -0,0 +1,525 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Staging.Processes.Subsequences.Validation;
+model NextBoiler
+ "Validate sequence of identifying next enable or disable boilers"
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Staging.Processes.Subsequences.NextBoiler
+ nexBoi(
+ final nBoi=2)
+ "Identify next enabling and disabling boiler during the staging up process"
+ annotation (Placement(transformation(extent={{-60,170},{-40,190}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Staging.Processes.Subsequences.NextBoiler
+ nexBoi1(
+ final nBoi=2)
+ "Identify next enabling during the staging up process"
+ annotation (Placement(transformation(extent={{240,170},{260,190}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Staging.Processes.Subsequences.NextBoiler
+ nexBoi2(
+ final nBoi=2)
+ "Identify next enabling and disabling boiler during the staging down process"
+ annotation (Placement(transformation(extent={{-60,-150},{-40,-130}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Staging.Processes.Subsequences.NextBoiler
+ nexBoi3(
+ final nBoi=2)
+ "Identify next disabling boiler during the staging down process"
+ annotation (Placement(transformation(extent={{240,-150},{260,-130}})));
+
+protected
+ Buildings.Controls.OBC.CDL.Logical.Switch boiSet[2]
+ "Boiler status setpoint"
+ annotation (Placement(transformation(extent={{-140,90},{-120,110}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Switch inPro
+ "Check if it is in the staging process"
+ annotation (Placement(transformation(extent={{-140,30},{-120,50}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Switch boiSet1[2]
+ "Boiler status setpoint"
+ annotation (Placement(transformation(extent={{160,90},{180,110}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Switch inPro1
+ "Check if it is in the staging process"
+ annotation (Placement(transformation(extent={{160,30},{180,50}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Switch boiSet2[2]
+ "Boiler status setpoint"
+ annotation (Placement(transformation(extent={{-140,-230},{-120,-210}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Switch inPro2
+ "Check if it is in the staging process"
+ annotation (Placement(transformation(extent={{-140,-290},{-120,-270}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Switch boiSet3[2]
+ "Boiler status setpoint"
+ annotation (Placement(transformation(extent={{160,-230},{180,-210}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Switch inPro3
+ "Check if it is in the staging process"
+ annotation (Placement(transformation(extent={{160,-290},{180,-270}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Pulse booPul(
+ final width=0.15,
+ final period=120)
+ "Boolean pulse"
+ annotation (Placement(transformation(extent={{-260,150},{-240,170}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Not staUp
+ "Stage up command"
+ annotation (Placement(transformation(extent={{-220,150},{-200,170}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant staOneBoi[2](
+ final k={true,false})
+ "Vector of boilers status setpoint at stage one"
+ annotation (Placement(transformation(extent={{-260,70},{-240,90}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant upSta(
+ final k=2)
+ "Stage two"
+ annotation (Placement(transformation(extent={{-260,230},{-240,250}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant dowSta(
+ final k=1)
+ "Stage one"
+ annotation (Placement(transformation(extent={{-260,190},{-240,210}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Switch swi
+ "Logical switch"
+ annotation (Placement(transformation(extent={{-180,210},{-160,230}})));
+
+ Buildings.Controls.OBC.CDL.Conversions.RealToInteger staSet
+ "Stage setpoint index"
+ annotation (Placement(transformation(extent={{-140,210},{-120,230}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant staTwoBoi[2](
+ final k={false,true})
+ "Vector of boilers status setpoint at stage two"
+ annotation (Placement(transformation(extent={{-260,110},{-240,130}})));
+
+ Buildings.Controls.OBC.CDL.Routing.BooleanScalarReplicator booRep(
+ final nout=2)
+ "Replicate boolean input"
+ annotation (Placement(transformation(extent={{-180,90},{-160,110}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Pulse booPul4(
+ final width=0.5,
+ final period=120)
+ "Boolean pulse"
+ annotation (Placement(transformation(extent={{-260,30},{-240,50}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant notIn(
+ final k=false)
+ "Not in the process"
+ annotation (Placement(transformation(extent={{-220,10},{-200,30}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Pulse booPul1(
+ final width=0.15,
+ final period=120)
+ "Boolean pulse"
+ annotation (Placement(transformation(extent={{40,150},{60,170}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Not staUp1
+ "Stage up command"
+ annotation (Placement(transformation(extent={{80,150},{100,170}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant staOneBoi1[2](
+ final k={true,false})
+ "Vector of boilers status setpoint at stage one"
+ annotation (Placement(transformation(extent={{40,70},{60,90}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant upSta1(
+ final k=2)
+ "Stage two"
+ annotation (Placement(transformation(extent={{40,230},{60,250}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant dowSta1(
+ final k=1)
+ "Stage one"
+ annotation (Placement(transformation(extent={{40,190},{60,210}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Switch swi1
+ "Logical switch"
+ annotation (Placement(transformation(extent={{120,210},{140,230}})));
+
+ Buildings.Controls.OBC.CDL.Conversions.RealToInteger staSet1
+ "Stage setpoint index"
+ annotation (Placement(transformation(extent={{160,210},{180,230}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant staTwoBoi1[2](
+ final k={true,true})
+ "Vector of boilers status setpoint at stage two"
+ annotation (Placement(transformation(extent={{40,110},{60,130}})));
+
+ Buildings.Controls.OBC.CDL.Routing.BooleanScalarReplicator booRep1(
+ final nout=2)
+ "Replicate boolean input"
+ annotation (Placement(transformation(extent={{120,90},{140,110}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Pulse booPul5(
+ final width=0.5,
+ final period=120)
+ "Boolean pulse"
+ annotation (Placement(transformation(extent={{40,30},{60,50}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant notIn1(
+ final k=false)
+ "Not in the process"
+ annotation (Placement(transformation(extent={{80,10},{100,30}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Pulse booPul2(
+ final width=0.15,
+ final period=120)
+ "Boolean pulse"
+ annotation (Placement(transformation(extent={{-260,-170},{-240,-150}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Not staDow
+ "Stage down command"
+ annotation (Placement(transformation(extent={{-220,-170},{-200,-150}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant staOneBoi2[2](
+ final k={true,false})
+ "Vector of boilers status setpoint at stage one"
+ annotation (Placement(transformation(extent={{-260,-210},{-240,-190}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant upSta2(
+ final k=2)
+ "Stage two"
+ annotation (Placement(transformation(extent={{-260,-130},{-240,-110}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant dowSta2(
+ final k=1)
+ "Stage one"
+ annotation (Placement(transformation(extent={{-260,-90},{-240,-70}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Switch swi2
+ "Logical switch"
+ annotation (Placement(transformation(extent={{-180,-110},{-160,-90}})));
+
+ Buildings.Controls.OBC.CDL.Conversions.RealToInteger staSet2
+ "Stage setpoint index"
+ annotation (Placement(transformation(extent={{-140,-110},{-120,-90}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant staTwoBoi2[2](
+ final k={false,true})
+ "Vector of boilers status setpoint at stage two"
+ annotation (Placement(transformation(extent={{-260,-250},{-240,-230}})));
+
+ Buildings.Controls.OBC.CDL.Routing.BooleanScalarReplicator booRep2(
+ final nout=2)
+ "Replicate boolean input"
+ annotation (Placement(transformation(extent={{-180,-230},{-160,-210}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Pulse booPul6(
+ final width=0.5,
+ final period=120)
+ "Boolean pulse"
+ annotation (Placement(transformation(extent={{-260,-290},{-240,-270}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant notIn2(
+ final k=false)
+ "Not in the process"
+ annotation (Placement(transformation(extent={{-220,-310},{-200,-290}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Pulse booPul3(
+ final width=0.15,
+ final period=120)
+ "Boolean pulse"
+ annotation (Placement(transformation(extent={{40,-170},{60,-150}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Not staDow1
+ "Stage down command"
+ annotation (Placement(transformation(extent={{80,-170},{100,-150}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant staOneBoi3[2](
+ final k={true,false})
+ "Vector of boilers status setpoint at stage one"
+ annotation (Placement(transformation(extent={{40,-210},{60,-190}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant upSta3(
+ final k=2)
+ "Stage two"
+ annotation (Placement(transformation(extent={{40,-130},{60,-110}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant dowSta3(
+ final k=1)
+ "Stage one"
+ annotation (Placement(transformation(extent={{40,-90},{60,-70}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Switch swi3
+ "Logical switch"
+ annotation (Placement(transformation(extent={{120,-110},{140,-90}})));
+
+ Buildings.Controls.OBC.CDL.Conversions.RealToInteger staSet3
+ "Stage setpoint index"
+ annotation (Placement(transformation(extent={{160,-110},{180,-90}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant staTwoBoi3[2](
+ final k={true,true})
+ "Vector of boilers status setpoint at stage two"
+ annotation (Placement(transformation(extent={{40,-250},{60,-230}})));
+
+ Buildings.Controls.OBC.CDL.Routing.BooleanScalarReplicator booRep3(
+ final nout=2)
+ "Replicate boolean input"
+ annotation (Placement(transformation(extent={{120,-230},{140,-210}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Pulse booPul7(
+ final width=0.5,
+ final period=120)
+ "Boolean pulse"
+ annotation (Placement(transformation(extent={{40,-290},{60,-270}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant notIn3(
+ final k=false)
+ "Not in the process"
+ annotation (Placement(transformation(extent={{80,-310},{100,-290}})));
+
+equation
+ connect(booPul.y, staUp.u)
+ annotation (Line(points={{-238,160},{-222,160}}, color={255,0,255}));
+
+ connect(staUp.y, swi.u2)
+ annotation (Line(points={{-198,160},{-190,160},{-190,220},{-182,220}},
+ color={255,0,255}));
+
+ connect(dowSta.y, swi.u3)
+ annotation (Line(points={{-238,200},{-220,200},{-220,212},{-182,212}},
+ color={0,0,127}));
+
+ connect(upSta.y, swi.u1)
+ annotation (Line(points={{-238,240},{-220,240},{-220,228},{-182,228}},
+ color={0,0,127}));
+
+ connect(swi.y, staSet.u)
+ annotation (Line(points={{-158,220},{-142,220}}, color={0,0,127}));
+
+ connect(staUp.y, booRep.u) annotation (Line(points={{-198,160},{-190,160},{-190,
+ 100},{-182,100}}, color={255,0,255}));
+
+ connect(booRep.y,boiSet. u2)
+ annotation (Line(points={{-158,100},{-142,100}}, color={255,0,255}));
+
+ connect(staUp.y, inPro.u2) annotation (Line(points={{-198,160},{-190,160},{-190,
+ 40},{-142,40}}, color={255,0,255}));
+
+ connect(booPul4.y, inPro.u1) annotation (Line(points={{-238,40},{-220,40},{-220,
+ 48},{-142,48}}, color={255,0,255}));
+
+ connect(notIn.y, inPro.u3) annotation (Line(points={{-198,20},{-160,20},{-160,
+ 32},{-142,32},{-142,32}}, color={255,0,255}));
+
+ connect(booPul1.y, staUp1.u)
+ annotation (Line(points={{62,160},{78,160}}, color={255,0,255}));
+
+ connect(staUp1.y, swi1.u2) annotation (Line(points={{102,160},{110,160},{110,220},
+ {118,220}}, color={255,0,255}));
+
+ connect(dowSta1.y, swi1.u3) annotation (Line(points={{62,200},{80,200},{80,212},
+ {118,212}}, color={0,0,127}));
+
+ connect(upSta1.y, swi1.u1) annotation (Line(points={{62,240},{80,240},{80,228},
+ {118,228}}, color={0,0,127}));
+
+ connect(swi1.y, staSet1.u)
+ annotation (Line(points={{142,220},{158,220}}, color={0,0,127}));
+
+ connect(staUp1.y, booRep1.u) annotation (Line(points={{102,160},{110,160},{110,
+ 100},{118,100}}, color={255,0,255}));
+
+ connect(booRep1.y,boiSet1. u2)
+ annotation (Line(points={{142,100},{158,100}}, color={255,0,255}));
+
+ connect(staUp1.y, inPro1.u2) annotation (Line(points={{102,160},{110,160},{110,
+ 40},{158,40}}, color={255,0,255}));
+
+ connect(booPul5.y, inPro1.u1) annotation (Line(points={{62,40},{80,40},{80,48},
+ {158,48}}, color={255,0,255}));
+
+ connect(notIn1.y, inPro1.u3) annotation (Line(points={{102,20},{140,20},{140,32},
+ {158,32}}, color={255,0,255}));
+
+ connect(booPul2.y, staDow.u)
+ annotation (Line(points={{-238,-160},{-222,-160}}, color={255,0,255}));
+
+ connect(staDow.y, swi2.u2) annotation (Line(points={{-198,-160},{-190,-160},{-190,
+ -100},{-182,-100}}, color={255,0,255}));
+
+ connect(swi2.y, staSet2.u)
+ annotation (Line(points={{-158,-100},{-142,-100}}, color={0,0,127}));
+
+ connect(staDow.y, booRep2.u) annotation (Line(points={{-198,-160},{-190,-160},
+ {-190,-220},{-182,-220}}, color={255,0,255}));
+
+ connect(staOneBoi2.y,boiSet2. u1) annotation (Line(points={{-238,-200},{-150,-200},
+ {-150,-212},{-142,-212}}, color={255,0,255}));
+
+ connect(booRep2.y,boiSet2. u2)
+ annotation (Line(points={{-158,-220},{-142,-220}}, color={255,0,255}));
+
+ connect(staTwoBoi2.y,boiSet2. u3) annotation (Line(points={{-238,-240},{-148,-240},
+ {-148,-228},{-142,-228}}, color={255,0,255}));
+
+ connect(staDow.y, inPro2.u2) annotation (Line(points={{-198,-160},{-190,-160},
+ {-190,-280},{-142,-280}}, color={255,0,255}));
+
+ connect(booPul6.y, inPro2.u1) annotation (Line(points={{-238,-280},{-220,-280},
+ {-220,-272},{-142,-272}}, color={255,0,255}));
+
+ connect(notIn2.y, inPro2.u3) annotation (Line(points={{-198,-300},{-160,-300},
+ {-160,-288},{-142,-288}}, color={255,0,255}));
+
+ connect(dowSta2.y, swi2.u1) annotation (Line(points={{-238,-80},{-200,-80},{-200,
+ -92},{-182,-92}}, color={0,0,127}));
+
+ connect(upSta2.y, swi2.u3) annotation (Line(points={{-238,-120},{-200,-120},{-200,
+ -108},{-182,-108}}, color={0,0,127}));
+
+ connect(staTwoBoi.y,boiSet. u1) annotation (Line(points={{-238,120},{-150,120},
+ {-150,108},{-142,108}}, color={255,0,255}));
+
+ connect(staOneBoi.y,boiSet. u3) annotation (Line(points={{-238,80},{-150,80},{
+ -150,92},{-142,92}}, color={255,0,255}));
+
+ connect(staTwoBoi1.y,boiSet1. u1) annotation (Line(points={{62,120},{150,120},
+ {150,108},{158,108}}, color={255,0,255}));
+
+ connect(staOneBoi1.y,boiSet1. u3) annotation (Line(points={{62,80},{150,80},{150,
+ 92},{158,92}}, color={255,0,255}));
+
+ connect(booPul3.y, staDow1.u)
+ annotation (Line(points={{62,-160},{78,-160}}, color={255,0,255}));
+
+ connect(staDow1.y, swi3.u2) annotation (Line(points={{102,-160},{110,-160},{110,
+ -100},{118,-100}}, color={255,0,255}));
+
+ connect(swi3.y, staSet3.u)
+ annotation (Line(points={{142,-100},{158,-100}}, color={0,0,127}));
+
+ connect(staDow1.y, booRep3.u) annotation (Line(points={{102,-160},{110,-160},{
+ 110,-220},{118,-220}}, color={255,0,255}));
+
+ connect(staOneBoi3.y,boiSet3. u1) annotation (Line(points={{62,-200},{150,-200},
+ {150,-212},{158,-212}}, color={255,0,255}));
+
+ connect(booRep3.y,boiSet3. u2)
+ annotation (Line(points={{142,-220},{158,-220}}, color={255,0,255}));
+
+ connect(staTwoBoi3.y,boiSet3. u3) annotation (Line(points={{62,-240},{152,-240},
+ {152,-228},{158,-228}}, color={255,0,255}));
+
+ connect(staDow1.y, inPro3.u2) annotation (Line(points={{102,-160},{110,-160},{
+ 110,-280},{158,-280}}, color={255,0,255}));
+
+ connect(booPul7.y, inPro3.u1) annotation (Line(points={{62,-280},{80,-280},{80,
+ -272},{158,-272}}, color={255,0,255}));
+
+ connect(notIn3.y, inPro3.u3) annotation (Line(points={{102,-300},{140,-300},{140,
+ -288},{158,-288}}, color={255,0,255}));
+
+ connect(dowSta3.y, swi3.u1) annotation (Line(points={{62,-80},{100,-80},{100,-92},
+ {118,-92}}, color={0,0,127}));
+
+ connect(upSta3.y, swi3.u3) annotation (Line(points={{62,-120},{100,-120},{100,
+ -108},{118,-108}}, color={0,0,127}));
+
+ connect(staSet.y, nexBoi.uStaSet) annotation (Line(points={{-118,220},{-80,220},
+ {-80,187},{-62,187}}, color={255,127,0}));
+
+ connect(boiSet.y, nexBoi.uBoiSet) annotation (Line(points={{-118,100},{-100,100},
+ {-100,180},{-62,180}}, color={255,0,255}));
+
+ connect(inPro.y, nexBoi.chaPro) annotation (Line(points={{-118,40},{-80,40},{-80,
+ 173},{-62,173}}, color={255,0,255}));
+
+ connect(staSet1.y, nexBoi1.uStaSet) annotation (Line(points={{182,220},{220,220},
+ {220,187},{238,187}}, color={255,127,0}));
+
+ connect(boiSet1.y, nexBoi1.uBoiSet) annotation (Line(points={{182,100},{200,100},
+ {200,180},{238,180}}, color={255,0,255}));
+
+ connect(inPro1.y, nexBoi1.chaPro) annotation (Line(points={{182,40},{220,40},{
+ 220,173},{238,173}}, color={255,0,255}));
+
+ connect(staSet2.y, nexBoi2.uStaSet) annotation (Line(points={{-118,-100},{-80,
+ -100},{-80,-133},{-62,-133}}, color={255,127,0}));
+
+ connect(boiSet2.y, nexBoi2.uBoiSet) annotation (Line(points={{-118,-220},{-100,
+ -220},{-100,-140},{-62,-140}}, color={255,0,255}));
+
+ connect(inPro2.y, nexBoi2.chaPro) annotation (Line(points={{-118,-280},{-80,-280},
+ {-80,-147},{-62,-147}}, color={255,0,255}));
+
+ connect(staSet3.y, nexBoi3.uStaSet) annotation (Line(points={{182,-100},{220,-100},
+ {220,-133},{238,-133}}, color={255,127,0}));
+
+ connect(inPro3.y, nexBoi3.chaPro) annotation (Line(points={{182,-280},{220,-280},
+ {220,-147},{238,-147}}, color={255,0,255}));
+
+ connect(boiSet3.y, nexBoi3.uBoiSet) annotation (Line(points={{182,-220},{200,-220},
+ {200,-140},{238,-140}}, color={255,0,255}));
+
+annotation (
+ experiment(StopTime=120, Tolerance=1e-06),
+ __Dymola_Commands(file="modelica://Buildings/Resources/Scripts/Dymola/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Staging/Processes/Subsequences/Validation/NextBoiler.mos"
+ "Simulate and plot"),
+ Documentation(info="
+
+This example validates
+
+Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Staging.Processes.Subsequences.NextBoiler.
+
+", revisions="
+
+-
+July 13, 2020 by Karthik Devaprasad:
+First implementation.
+
+
+"),
+Icon(coordinateSystem(extent={{-100,-100},{100,100}}),
+ graphics={
+ Ellipse(lineColor = {75,138,73},
+ fillColor={255,255,255},
+ fillPattern = FillPattern.Solid,
+ extent = {{-100,-100},{100,100}}),
+ Polygon(lineColor = {0,0,255},
+ fillColor = {75,138,73},
+ pattern = LinePattern.None,
+ fillPattern = FillPattern.Solid,
+ points = {{-36,60},{64,0},{-36,-60},{-36,60}})}),Diagram(
+ coordinateSystem(preserveAspectRatio=false, extent={{-280,-320},{280,320}}),
+ graphics={
+ Text(
+ extent={{-258,292},{-146,280}},
+ textColor={0,0,127},
+ textString="In stage up process (stage 1 to 2),"),
+ Text(
+ extent={{-254,278},{-94,266}},
+ textColor={0,0,127},
+ textString="requires small boiler (1) off and large boiler (2) on."),
+ Text(
+ extent={{64,278},{228,268}},
+ textColor={0,0,127},
+ textString="add one more boiler (1) on top of current boiler (2)."),
+ Text(
+ extent={{62,292},{174,280}},
+ textColor={0,0,127},
+ textString="In stage up process (stage 2 to 3),"),
+ Text(
+ extent={{-256,-40},{-96,-52}},
+ textColor={0,0,127},
+ textString="requires large boiler (2) off and small boiler (1) on."),
+ Text(
+ extent={{-260,-26},{-140,-36}},
+ textColor={0,0,127},
+ textString="In stage down process (stage 2 to 1),"),
+ Text(
+ extent={{58,-42},{130,-52}},
+ textColor={0,0,127},
+ textString="disable boiler (2)."),
+ Text(
+ extent={{62,-28},{182,-38}},
+ textColor={0,0,127},
+ textString="In stage down process (stage 2 to 1),")}));
+end NextBoiler;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Staging/Processes/Subsequences/Validation/ResetHotWaterSupplyTemperature.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Staging/Processes/Subsequences/Validation/ResetHotWaterSupplyTemperature.mo
new file mode 100644
index 00000000000..4057e05f7a5
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Staging/Processes/Subsequences/Validation/ResetHotWaterSupplyTemperature.mo
@@ -0,0 +1,135 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Staging.Processes.Subsequences.Validation;
+model ResetHotWaterSupplyTemperature
+ "Validate sequence of reseting hot water supply temperature"
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Staging.Processes.Subsequences.ResetHotWaterSupplyTemperature
+ hotWatSupTemRes(
+ final nSta=1,
+ final delPro=300,
+ final TMinSupNonConBoi=333.2,
+ final sigDif=0.1)
+ "Scenario testing reset for condensing boiler stage type"
+ annotation (Placement(transformation(extent={{-40,-10},{-20,10}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Staging.Processes.Subsequences.ResetHotWaterSupplyTemperature
+ hotWatSupTemRes1(
+ final nSta=2,
+ final delPro=300,
+ final TMinSupNonConBoi=333.2,
+ final sigDif=0.1)
+ "Scenario testing reset for lead non-condensing boiler stage type"
+ annotation (Placement(transformation(extent={{60,-10},{80,10}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Staging.Processes.Subsequences.ResetHotWaterSupplyTemperature
+ hotWatSupTemRes2(
+ final nSta=2,
+ final delPro=300,
+ final TMinSupNonConBoi=333.2,
+ final sigDif=0.1)
+ "Scenario testing reset for lag non-condensing boiler stage type"
+ annotation (Placement(transformation(extent={{140,-10},{160,10}})));
+
+protected
+ Buildings.Controls.OBC.CDL.Logical.Sources.Pulse booPul(
+ final period=800)
+ "Stage-up signal"
+ annotation (Placement(transformation(extent={{-80,50},{-60,70}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant conInt[1](
+ final k={1})
+ "Vector of stage types"
+ annotation (Placement(transformation(extent={{-80,-30},{-60,-10}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Sine sin(
+ final amplitude=2,
+ final freqHz=1/3200,
+ final offset=333.2)
+ "Measured hot water supply temperature"
+ annotation (Placement(transformation(extent={{-80,10},{-60,30}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant conInt1(
+ final k=1)
+ "Current stage setpoint"
+ annotation (Placement(transformation(extent={{-80,-70},{-60,-50}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant conInt3[2](
+ final k={2,2})
+ "Vector of stage types"
+ annotation (Placement(transformation(extent={{20,-30},{40,-10}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant conInt4(
+ final k=2)
+ "Current stage setpoint"
+ annotation (Placement(transformation(extent={{100,-70},{120,-50}})));
+
+equation
+ connect(booPul.y, hotWatSupTemRes.uStaUp) annotation (Line(points={{-58,60},{-46,
+ 60},{-46,7},{-42,7}}, color={255,0,255}));
+
+ connect(conInt.y, hotWatSupTemRes.uStaTyp) annotation (Line(points={{-58,-20},
+ {-50,-20},{-50,-3},{-42,-3}}, color={255,127,0}));
+
+ connect(sin.y, hotWatSupTemRes.THotWatSup) annotation (Line(points={{-58,20},{
+ -50,20},{-50,3},{-42,3}}, color={0,0,127}));
+
+ connect(conInt1.y, hotWatSupTemRes.uStaSet) annotation (Line(points={{-58,-60},
+ {-46,-60},{-46,-7},{-42,-7}}, color={255,127,0}));
+
+ connect(booPul.y, hotWatSupTemRes1.uStaUp) annotation (Line(points={{-58,60},{
+ 54,60},{54,7},{58,7}}, color={255,0,255}));
+
+ connect(sin.y, hotWatSupTemRes1.THotWatSup) annotation (Line(points={{-58,20},
+ {50,20},{50,3},{58,3}}, color={0,0,127}));
+
+ connect(booPul.y, hotWatSupTemRes2.uStaUp) annotation (Line(points={{-58,60},{
+ 134,60},{134,7},{138,7}}, color={255,0,255}));
+
+ connect(sin.y, hotWatSupTemRes2.THotWatSup) annotation (Line(points={{-58,20},
+ {130,20},{130,3},{138,3}}, color={0,0,127}));
+
+ connect(conInt3.y, hotWatSupTemRes2.uStaTyp) annotation (Line(points={{42,-20},
+ {130,-20},{130,-3},{138,-3}}, color={255,127,0}));
+
+ connect(conInt4.y, hotWatSupTemRes2.uStaSet) annotation (Line(points={{122,-60},
+ {134,-60},{134,-7},{138,-7}}, color={255,127,0}));
+
+ connect(conInt3.y, hotWatSupTemRes1.uStaTyp) annotation (Line(points={{42,-20},
+ {50,-20},{50,-3},{58,-3}}, color={255,127,0}));
+
+ connect(conInt1.y, hotWatSupTemRes1.uStaSet) annotation (Line(points={{-58,-60},
+ {54,-60},{54,-7},{58,-7}}, color={255,127,0}));
+
+annotation (
+ experiment(
+ StopTime=3200,
+ Interval=1,
+ Tolerance=1e-06),
+ __Dymola_Commands(file="modelica://Buildings/Resources/Scripts/Dymola/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Staging/Processes/Subsequences/Validation/ResetHotWaterSupplyTemperature.mos"
+ "Simulate and plot"),
+ Documentation(info="
+
+This example validates
+
+Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Staging.Processes.Subsequences.ResetHotWaterSupplyTemperature.
+
+", revisions="
+
+-
+July 13, 2020 by Karthik Devaprasad:
+First implementation.
+
+
+"),
+Icon(coordinateSystem(extent={{-100,-100},{100,100}}),
+ graphics={
+ Ellipse(lineColor = {75,138,73},
+ fillColor={255,255,255},
+ fillPattern = FillPattern.Solid,
+ extent = {{-100,-100},{100,100}}),
+ Polygon(lineColor = {0,0,255},
+ fillColor = {75,138,73},
+ pattern = LinePattern.None,
+ fillPattern = FillPattern.Solid,
+ points = {{-36,60},{64,0},{-36,-60},{-36,60}})}),Diagram(
+ coordinateSystem(preserveAspectRatio=false, extent={{-100,-100},{180,100}})));
+end ResetHotWaterSupplyTemperature;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Staging/Processes/Subsequences/Validation/ResetMinBypass.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Staging/Processes/Subsequences/Validation/ResetMinBypass.mo
new file mode 100644
index 00000000000..48e29ddddac
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Staging/Processes/Subsequences/Validation/ResetMinBypass.mo
@@ -0,0 +1,97 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Staging.Processes.Subsequences.Validation;
+model ResetMinBypass
+ "Validate sequence of reseting minimum flow bypass"
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Staging.Processes.Subsequences.ResetMinBypass
+ minBypRes
+ "Check if the setpoint has achieved"
+ annotation (Placement(transformation(extent={{40,-10},{60,10}})));
+
+protected
+ Buildings.Controls.OBC.CDL.Logical.Sources.Pulse booPul1(
+ final width=0.15,
+ final period=600)
+ "Boolean pulse"
+ annotation (Placement(transformation(extent={{-80,10},{-60,30}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Not staUp
+ "Stage up command"
+ annotation (Placement(transformation(extent={{-40,10},{-20,30}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Not upStrDev
+ "Upstream device reset status"
+ annotation (Placement(transformation(extent={{-40,50},{-20,70}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Pulse booPul2(
+ final width=0.2,
+ final period=600)
+ "Boolean pulse"
+ annotation (Placement(transformation(extent={{-80,50},{-60,70}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Ramp minFloSet(
+ final height=0.5,
+ final duration=180,
+ final offset=1,
+ final startTime=60)
+ "Minimum boiler water flow setpoint"
+ annotation (Placement(transformation(extent={{-40,-70},{-20,-50}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Ramp meaFlo(
+ final height=0.5,
+ final duration=80,
+ final offset=1,
+ final startTime=120)
+ "Measured boiler water flow"
+ annotation (Placement(transformation(extent={{-40,-30},{-20,-10}})));
+
+equation
+ connect(booPul2.y, upStrDev.u)
+ annotation (Line(points={{-58,60},{-42,60}}, color={255,0,255}));
+
+ connect(booPul1.y, staUp.u)
+ annotation (Line(points={{-58,20},{-42,20}}, color={255,0,255}));
+
+ connect(upStrDev.y, minBypRes.uUpsDevSta)
+ annotation (Line(points={{-18,60},{16,60},{16,8},{38,8}}, color={255,0,255}));
+
+ connect(staUp.y, minBypRes.chaPro)
+ annotation (Line(points={{-18,20},{12,20},{12,4},{38,4}}, color={255,0,255}));
+
+ connect(meaFlo.y,minBypRes.VHotWat_flow)
+ annotation (Line(points={{-18,-20},{12,-20},{12,-4},{38,-4}},
+ color={0,0,127}));
+
+ connect(minFloSet.y, minBypRes.VMinHotWatSet_flow) annotation (Line(points={{-18,-60},
+ {16,-60},{16,-8},{38,-8}}, color={0,0,127}));
+
+annotation (
+ experiment(StopTime=600, Tolerance=1e-06),
+ __Dymola_Commands(file="modelica://Buildings/Resources/Scripts/Dymola/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Staging/Processes/Subsequences/Validation/ResetMinBypass.mos"
+ "Simulate and plot"),
+ Documentation(info="
+
+This example validates
+
+Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Staging.Processes.Subsequences.ResetMinBypass.
+
+", revisions="
+
+-
+July 13, 2020 by Karthik Devaprasad:
+First implementation.
+
+
+"),
+Icon(coordinateSystem(extent={{-100,-100},{100,100}}),
+ graphics={
+ Ellipse(lineColor = {75,138,73},
+ fillColor={255,255,255},
+ fillPattern = FillPattern.Solid,
+ extent = {{-100,-100},{100,100}}),
+ Polygon(lineColor = {0,0,255},
+ fillColor = {75,138,73},
+ pattern = LinePattern.None,
+ fillPattern = FillPattern.Solid,
+ points = {{-36,60},{64,0},{-36,-60},{-36,60}})}),Diagram(
+ coordinateSystem(preserveAspectRatio=false, extent={{-100,-100},{100,100}})));
+end ResetMinBypass;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Staging/Processes/Subsequences/Validation/package.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Staging/Processes/Subsequences/Validation/package.mo
new file mode 100644
index 00000000000..3453fb9058f
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Staging/Processes/Subsequences/Validation/package.mo
@@ -0,0 +1,38 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Staging.Processes.Subsequences;
+package Validation "Collection of validation models"
+
+
+annotation (preferredView="info", Documentation(info="
+
+This package contains validation models for the classes in
+
+Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Staging.Processes.Subsequences.
+
+
+Note that most validation models contain simple input data
+which may not be realistic, but for which the correct
+output can be obtained through an analytic solution.
+The examples plot various outputs, which have been verified against these
+solutions. These model outputs are stored as reference data and
+used for continuous validation whenever models in the library change.
+
+"),
+ Icon(graphics={
+ Rectangle(
+ lineColor={200,200,200},
+ fillColor={248,248,248},
+ fillPattern=FillPattern.HorizontalCylinder,
+ extent={{-100.0,-100.0},{100.0,100.0}},
+ radius=25.0),
+ Polygon(
+ origin={8.0,14.0},
+ lineColor={78,138,73},
+ fillColor={78,138,73},
+ pattern=LinePattern.None,
+ fillPattern=FillPattern.Solid,
+ points={{-58.0,46.0},{42.0,-14.0},{-58.0,-74.0},{-58.0,46.0}}),
+ Rectangle(
+ lineColor={128,128,128},
+ extent={{-100.0,-100.0},{100.0,100.0}},
+ radius=25.0)}));
+end Validation;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Staging/Processes/Subsequences/Validation/package.order b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Staging/Processes/Subsequences/Validation/package.order
new file mode 100644
index 00000000000..727f15f7b77
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Staging/Processes/Subsequences/Validation/package.order
@@ -0,0 +1,6 @@
+DisableBoiler
+EnableBoiler
+HWIsoVal
+NextBoiler
+ResetHotWaterSupplyTemperature
+ResetMinBypass
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Staging/Processes/Subsequences/package.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Staging/Processes/Subsequences/package.mo
new file mode 100644
index 00000000000..ddc312242f4
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Staging/Processes/Subsequences/package.mo
@@ -0,0 +1,46 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Staging.Processes;
+package Subsequences "Package of subsequences for staging up and down devices"
+
+
+
+annotation (preferredView="info", Documentation(info="
+
+This package contains subsequences for controlling devices when there is stage-up
+or stage-down command.
+
+"),
+ Icon(graphics={
+ Rectangle(
+ lineColor={200,200,200},
+ fillColor={248,248,248},
+ fillPattern=FillPattern.HorizontalCylinder,
+ extent={{-100.0,-100.0},{100.0,100.0}},
+ radius=25.0),
+ Ellipse(
+ origin={10.0,10.0},
+ lineColor={128,128,128},
+ fillColor={255,255,255},
+ fillPattern=FillPattern.Solid,
+ extent={{-80.0,0.0},{-20.0,60.0}}),
+ Ellipse(
+ origin={10.0,10.0},
+ fillColor={128,128,128},
+ pattern=LinePattern.None,
+ fillPattern=FillPattern.Solid,
+ extent={{0.0,0.0},{60.0,60.0}}),
+ Ellipse(
+ origin={10.0,10.0},
+ pattern=LinePattern.None,
+ fillPattern=FillPattern.Solid,
+ extent={{0.0,-80.0},{60.0,-20.0}}),
+ Ellipse(
+ origin={10.0,10.0},
+ fillColor={76,76,76},
+ pattern=LinePattern.None,
+ fillPattern=FillPattern.Solid,
+ extent={{-80.0,-80.0},{-20.0,-20.0}}),
+ Rectangle(
+ lineColor={128,128,128},
+ extent={{-100.0,-100.0},{100.0,100.0}},
+ radius=25.0)}));
+end Subsequences;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Staging/Processes/Subsequences/package.order b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Staging/Processes/Subsequences/package.order
new file mode 100644
index 00000000000..cd91253514e
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Staging/Processes/Subsequences/package.order
@@ -0,0 +1,7 @@
+DisableBoiler
+EnableBoiler
+HWIsoVal
+NextBoiler
+ResetHotWaterSupplyTemperature
+ResetMinBypass
+Validation
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Staging/Processes/Up.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Staging/Processes/Up.mo
new file mode 100644
index 00000000000..fd773844b74
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Staging/Processes/Up.mo
@@ -0,0 +1,679 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Staging.Processes;
+block Up
+ "Sequence for control devices when there is stage-up command"
+
+ parameter Boolean have_priOnl = false
+ "True: The boiler plant is primary-only"
+ annotation (Dialog(group="Boiler plant parameters"));
+
+ parameter Boolean have_heaPriPum = true
+ "True: Headered hot water pumps;
+ False: Dedicated hot water pumps"
+ annotation (Dialog(group="Boiler plant parameters"));
+
+ parameter Integer nBoi=3
+ "Total number of boilers in the plant"
+ annotation (Dialog(group="Boiler plant parameters"));
+
+ parameter Integer nSta=5
+ "Total number of stages"
+ annotation (Dialog(group="Boiler plant parameters"));
+
+ parameter Real TMinSupNonConBoi(
+ final unit="K",
+ displayUnit="K",
+ final quantity="ThermodynamicTemperature") = 333.2
+ "Minimum supply temperature required for non-condensing boilers"
+ annotation (Dialog(group="Boiler plant parameters"));
+
+ parameter Real delProSupTemSet(
+ final unit="s",
+ displayUnit="s",
+ final quantity="time") = 300
+ "Process time-out for hot water supply temperature setpoint reset"
+ annotation (Dialog(group="Time and delay parameters"));
+
+ parameter Real delEnaMinFloSet(
+ final unit="s",
+ displayUnit="s",
+ final quantity="time") = 60
+ "Enable delay after minimum flow setpoint is achieved in bypass valve"
+ annotation (Evaluate=true,
+ Dialog(group="Time and delay parameters",
+ enable=have_priOnl));
+
+ parameter Real chaIsoValTim(
+ final unit="s",
+ displayUnit="s",
+ final quantity="time") = 60
+ "Time to slowly change isolation valve, should be determined in the field"
+ annotation (Dialog(group="Time and delay parameters"));
+
+ parameter Real delPreBoiEna(
+ final unit="s",
+ displayUnit="s",
+ final quantity="time") = 30
+ "Time delay after valve and pump change process has been completed before
+ starting boiler change process"
+ annotation (Dialog(group="Time and delay parameters"));
+
+ parameter Real boiChaProOnTim(
+ final unit="s",
+ displayUnit="s",
+ final quantity="time") = 300
+ "Enabled boiler operation time to indicate if it is proven on during a staging
+ process where one boiler is turned on and the other is turned off"
+ annotation (Dialog(group="Time and delay parameters"));
+
+ parameter Real delBoiEna(
+ final unit="s",
+ displayUnit="s",
+ final quantity="time") = 180
+ "Time delay after boiler change process has been completed before turning off
+ excess valves and pumps"
+ annotation (Dialog(group="Time and delay parameters"));
+
+ parameter Real sigDif(
+ final unit="K",
+ displayUnit="K",
+ final quantity="TemperatureDifference")=0.1
+ "Significant difference based on minimum resolution of temperature sensor"
+ annotation (Dialog(tab="Advanced"));
+
+ parameter Real relFloDif(
+ final unit="1",
+ displayUnit="1")=0.05
+ "Relative error to the flow setpoint for checking if it has been achieved"
+ annotation (Evaluate=true,
+ Dialog(tab="Advanced",
+ enable=have_priOnl));
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uPlaEna
+ "Plant enable signal"
+ annotation (Placement(transformation(extent={{-280,-140},{-240,-100}}),
+ iconTransformation(extent={{-140,-150},{-100,-110}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uStaUpPro
+ "Pulse indicating start of stage up process"
+ annotation (Placement(transformation(extent={{-280,-20},{-240,20}}),
+ iconTransformation(extent={{-140,-60},{-100,-20}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uBoi[nBoi]
+ "Boiler status: true=ON"
+ annotation (Placement(transformation(extent={{-280,60},{-240,100}}),
+ iconTransformation(extent={{-140,10},{-100,50}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uPumChaPro if not
+ have_priOnl
+ "Pulse indicating all pump change processes have been completed and pumps have been proved on"
+ annotation (Placement(transformation(extent={{-280,-210},{-240,-170}}),
+ iconTransformation(extent={{-140,-210},{-100,-170}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uBoiSet[nBoi]
+ "Boiler status setpoint: true=ON"
+ annotation (Placement(transformation(extent={{-280,20},{-240,60}}),
+ iconTransformation(extent={{-140,-30},{-100,10}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uStaChaPro
+ "Signal indicating final completion of stage change processes"
+ annotation (Placement(transformation(extent={{-280,-170},{-240,-130}}),
+ iconTransformation(extent={{-140,-180},{-100,-140}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.IntegerInput uStaTyp[nSta]
+ "Boiler plant stage type vector"
+ annotation (Placement(transformation(extent={{-280,-60},{-240,-20}}),
+ iconTransformation(extent={{-140,-90},{-100,-50}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.IntegerInput uStaSet
+ "Boiler stage setpoint index"
+ annotation (Placement(transformation(extent={{-280,-100},{-240,-60}}),
+ iconTransformation(extent={{-140,-120},{-100,-80}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput VMinHotWatSet_flow(
+ final quantity="VolumeFlowRate",
+ final unit="m3/s",
+ displayUnit="m3/s",
+ final min=0) if have_priOnl
+ "Minimum hot water flow rate setpoint"
+ annotation (Placement(transformation(extent={{-280,180},{-240,220}}),
+ iconTransformation(extent={{-140,130},{-100,170}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput VHotWat_flow(
+ final min=0,
+ final quantity="VolumeFlowRate",
+ final unit="m3/s",
+ displayUnit="m3/s") if have_priOnl
+ "Measured hot water flow rate through the minimum flow bypass valve"
+ annotation (Placement(transformation(extent={{-280,220},{-240,260}}),
+ iconTransformation(extent={{-140,170},{-100,210}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput THotWatSupSet(
+ final unit="K",
+ displayUnit="K",
+ final quantity="ThermodynamicTemperature") if not have_priOnl
+ "Measured hot water supply temperature"
+ annotation (Placement(transformation(extent={{-280,140},{-240,180}}),
+ iconTransformation(extent={{-140,90},{-100,130}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput uHotWatIsoVal[nBoi](
+ final min=fill(0, nBoi),
+ final max=fill(1, nBoi),
+ final unit=fill("1", nBoi)) if have_heaPriPum
+ "Hot water isolation valve position"
+ annotation (Placement(transformation(extent={{-280,100},{-240,140}}),
+ iconTransformation(extent={{-140,50},{-100,90}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanOutput yBoi[nBoi]
+ "Boiler enabling status"
+ annotation (Placement(transformation(extent={{280,90},{320,130}}),
+ iconTransformation(extent={{100,100},{140,140}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanOutput yStaChaPro
+ "Pulse indicating end of stage change process"
+ annotation (Placement(transformation(extent={{280,30},{320,70}}),
+ iconTransformation(extent={{100,60},{140,100}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanOutput yPumChaPro if not
+ have_priOnl
+ "Pulse indicating start of pump change process"
+ annotation (Placement(transformation(extent={{280,-260},{320,-220}}),
+ iconTransformation(extent={{100,-140},{140,-100}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanOutput yOnOff
+ "Signal indicating whether stage change involves simultaneous turning on
+ and turning off of boilers"
+ annotation (Placement(transformation(extent={{280,-130},{320,-90}}),
+ iconTransformation(extent={{100,-20},{140,20}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.IntegerOutput yNexEnaBoi
+ "Boiler index of next boiler being enabled"
+ annotation (Placement(transformation(extent={{280,-170},{320,-130}}),
+ iconTransformation(extent={{100,-60},{140,-20}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.IntegerOutput yLasDisBoi
+ "Boiler index of last boilerenabled that will be disabled"
+ annotation (Placement(transformation(extent={{280,-210},{320,-170}}),
+ iconTransformation(extent={{100,-100},{140,-60}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealOutput yHotWatIsoVal[nBoi](
+ final min=fill(0, nBoi),
+ final max=fill(1, nBoi),
+ final unit=fill("1", nBoi)) if have_heaPriPum
+ "Boiler hot water isolation valve position"
+ annotation (Placement(transformation(extent={{280,-90},{320,-50}}),
+ iconTransformation(extent={{100,20},{140,60}})));
+
+protected
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Staging.Processes.Subsequences.ResetMinBypass minBypRes(
+ final delEna=delEnaMinFloSet,
+ final relFloDif=relFloDif) if have_priOnl
+ "Reset process for minimum flow bypass valve setpoint"
+ annotation (Placement(transformation(extent={{-170,10},{-150,30}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Staging.Processes.Subsequences.ResetHotWaterSupplyTemperature hotWatSupTemRes(
+ final nSta=nSta,
+ final delPro=delProSupTemSet,
+ final TMinSupNonConBoi=TMinSupNonConBoi,
+ final sigDif=sigDif) if not have_priOnl
+ "Reset process for hot water supply temperature setpoint"
+ annotation (Placement(transformation(extent={{-170,-30},{-150,-10}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Staging.Processes.Subsequences.NextBoiler nexBoi(
+ final nBoi=nBoi)
+ "Identify boiler indices to be turned on and off during the stage change process"
+ annotation (Placement(transformation(extent={{-170,-70},{-150,-50}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Staging.Processes.Subsequences.HWIsoVal enaHotWatIsoVal(
+ final nBoi=nBoi,
+ final chaHotWatIsoTim=chaIsoValTim,
+ final iniValPos=0,
+ final endValPos=1) if have_heaPriPum
+ "Open hot water isolation valve for boiler being enabled"
+ annotation (Placement(transformation(extent={{-70,-10},{-50,10}})));
+
+ Buildings.Controls.OBC.CDL.Logical.And and1
+ "Check for completion of valve opening process and pump change process"
+ annotation (Placement(transformation(extent={{0,-10},{20,10}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Staging.Processes.Subsequences.EnableBoiler enaBoi(
+ final nBoi=nBoi,
+ final proOnTim=boiChaProOnTim)
+ "Change boiler status as per stage change required"
+ annotation (Placement(transformation(extent={{60,-10},{80,10}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Staging.Processes.Subsequences.HWIsoVal disHotWatIsoVal1(
+ final nBoi=nBoi,
+ final chaHotWatIsoTim=chaIsoValTim,
+ final iniValPos=1,
+ final endValPos=0) if have_heaPriPum
+ "Close hot water valve for boiler being disabled"
+ annotation (Placement(transformation(extent={{150,-10},{170,10}})));
+
+ Buildings.Controls.OBC.CDL.Logical.And and3
+ "Check for completion of valve closing process and pump change process"
+ annotation (Placement(transformation(extent={{190,-10},{210,10}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Latch lat
+ "Latch to retain stage-up edge signal till the stage change process is completed"
+ annotation (Placement(transformation(extent={{-222,-10},{-202,10}})));
+
+ Buildings.Controls.OBC.CDL.Logical.TrueDelay truDel(
+ final delayTime=delBoiEna)
+ "Time delay after boiler status has been changed"
+ annotation (Placement(transformation(extent={{100,-10},{120,10}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Latch lat3 if not have_priOnl
+ "Hold process completion signal after pump enable process"
+ annotation (Placement(transformation(extent={{-180,-200},{-160,-180}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Latch lat4 if not have_priOnl
+ "Hold process completion signal after pump disable process"
+ annotation (Placement(transformation(extent={{160,-200},{180,-180}})));
+
+ Buildings.Controls.OBC.CDL.Logical.And and4 if not have_priOnl
+ "Check for pump disable completion after start of pump disable process"
+ annotation (Placement(transformation(extent={{132,-200},{152,-180}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Edge edg
+ "Detect change in process completion status and send out pulse signal"
+ annotation (Placement(transformation(extent={{230,40},{250,60}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Edge edg1 if not have_priOnl
+ "Generate pulse to signal start of pump change process"
+ annotation (Placement(transformation(extent={{-90,-250},{-70,-230}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Edge edg2 if not have_priOnl
+ "Generate pulse to signal start of pump change process"
+ annotation (Placement(transformation(extent={{170,-240},{190,-220}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Or or2 if not have_priOnl
+ "Check for pump change proces start signal"
+ annotation (Placement(transformation(extent={{210,-250},{230,-230}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Latch lat5 if not have_heaPriPum
+ "Latch to short valve opening process in dedicated pump configuration plants"
+ annotation (Placement(transformation(extent={{-70,30},{-50,50}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Latch lat6 if not have_heaPriPum
+ "Latch to short valve closing process in dedicated pump configuration plants"
+ annotation (Placement(transformation(extent={{150,30},{170,50}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Switch swi[nBoi] if have_heaPriPum
+ "Pass valve position signal from valve opening controller once the opening process starts"
+ annotation (Placement(transformation(extent={{40,-140},{60,-120}})));
+
+ Buildings.Controls.OBC.CDL.Routing.BooleanScalarReplicator booRep(
+ final nout=nBoi) if have_heaPriPum
+ "Boolean replicator"
+ annotation (Placement(transformation(extent={{0,-140},{20,-120}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Switch swi1[nBoi] if have_heaPriPum
+ "Pass valve position signal from valve closing controller once the closing process starts"
+ annotation (Placement(transformation(extent={{100,-120},{120,-100}})));
+
+ Buildings.Controls.OBC.CDL.Routing.BooleanScalarReplicator booRep1(
+ final nout=nBoi) if have_heaPriPum
+ "Boolean replicator"
+ annotation (Placement(transformation(extent={{70,-160},{90,-140}})));
+
+ Buildings.Controls.OBC.CDL.Logical.TrueDelay truDel1(
+ final delayTime=delPreBoiEna)
+ "Time delay after valve has been opened and pump status has been changed"
+ annotation (Placement(transformation(extent={{0,90},{20,110}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Switch logSwi
+ "Pass process completion signal based on whether stage change involves turning off smaller boiler or not"
+ annotation (Placement(transformation(extent={{230,-20},{250,0}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Latch lat1 if have_heaPriPum
+ "Hold process completion signal after valve has been opened"
+ annotation (Placement(transformation(extent={{-32,-120},{-12,-100}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant con(
+ final k=true) if have_priOnl
+ "Boolean True signal"
+ annotation (Placement(transformation(extent={{-180,-160},{-160,-140}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Or or1
+ "Pass signal when plant is enabled or when stage-up process is initiated"
+ annotation (Placement(transformation(extent={{-130,-130},{-110,-110}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Latch lat2
+ "Hold status when plant enable is detected"
+ annotation (Placement(transformation(extent={{-180,-130},{-160,-110}})));
+
+ Buildings.Controls.OBC.CDL.Logical.And and2 if not have_priOnl
+ "Logical And"
+ annotation (Placement(transformation(extent={{140,-240},{160,-220}})));
+
+equation
+ connect(nexBoi.yNexEnaBoi, enaHotWatIsoVal.nexChaBoi) annotation (Line(points={{-148,
+ -51},{-90,-51},{-90,8},{-72,8}}, color={255,127,0}));
+
+ connect(lat.y, minBypRes.uUpsDevSta) annotation (Line(points={{-200,0},{-196,
+ 0},{-196,28},{-172,28}},
+ color={255,0,255}));
+
+ connect(lat.y, minBypRes.chaPro) annotation (Line(points={{-200,0},{-196,0},{
+ -196,24},{-172,24}},
+ color={255,0,255}));
+
+ connect(lat.y, hotWatSupTemRes.uStaUp) annotation (Line(points={{-200,0},{
+ -196,0},{-196,-13},{-172,-13}},
+ color={255,0,255}));
+
+ connect(lat.y, nexBoi.chaPro) annotation (Line(points={{-200,0},{-196,0},{
+ -196,-67},{-172,-67}},
+ color={255,0,255}));
+
+ connect(enaBoi.yBoiEnaPro, truDel.u) annotation (Line(points={{82,-8},{90,-8},
+ {90,0},{98,0}}, color={255,0,255}));
+
+ connect(truDel.y,disHotWatIsoVal1. uUpsDevSta) annotation (Line(points={{122,0},
+ {126,0},{126,-5},{148,-5}}, color={255,0,255}));
+
+ connect(nexBoi.yDisSmaBoi,disHotWatIsoVal1. nexChaBoi) annotation (Line(
+ points={{-148,-56},{140,-56},{140,8},{148,8}}, color={255,127,0}));
+
+ connect(nexBoi.yOnOff,disHotWatIsoVal1. chaPro) annotation (Line(points={{-148,
+ -60},{144,-60},{144,-8},{148,-8}}, color={255,0,255}));
+
+ connect(lat.y, enaHotWatIsoVal.chaPro) annotation (Line(points={{-200,0},{-196,
+ 0},{-196,-34},{-80,-34},{-80,-8},{-72,-8}}, color={255,0,255}));
+
+ connect(lat.y, enaBoi.uStaUp) annotation (Line(points={{-200,0},{-196,0},{
+ -196,-34},{52,-34},{52,6},{58,6}},
+ color={255,0,255}));
+
+ connect(nexBoi.yOnOff, enaBoi.uOnOff) annotation (Line(points={{-148,-60},{42,
+ -60},{42,-6},{58,-6}}, color={255,0,255}));
+
+ connect(nexBoi.yDisSmaBoi, enaBoi.nexDisBoi) annotation (Line(points={{-148,
+ -56},{46,-56},{46,-9},{58,-9}},
+ color={255,127,0}));
+
+ connect(nexBoi.yNexEnaBoi, enaBoi.nexEnaBoi) annotation (Line(points={{-148,
+ -51},{-90,-51},{-90,-40},{38,-40},{38,9},{58,9}},
+ color={255,127,0}));
+
+ connect(VHotWat_flow, minBypRes.VHotWat_flow) annotation (Line(points={{-260,
+ 240},{-176,240},{-176,16},{-172,16}},
+ color={0,0,127}));
+
+ connect(VMinHotWatSet_flow, minBypRes.VMinHotWatSet_flow) annotation (Line(
+ points={{-260,200},{-180,200},{-180,12},{-172,12}}, color={0,0,127}));
+
+ connect(THotWatSupSet, hotWatSupTemRes.THotWatSup) annotation (Line(points={{-260,
+ 160},{-186,160},{-186,-17},{-172,-17}}, color={0,0,127}));
+
+ connect(uHotWatIsoVal, enaHotWatIsoVal.uHotWatIsoVal) annotation (Line(points={{-260,
+ 120},{-80,120},{-80,5},{-72,5}}, color={0,0,127}));
+
+ connect(nexBoi.uBoiSet, uBoiSet) annotation (Line(points={{-172,-60},{-190,
+ -60},{-190,40},{-260,40}}, color={255,0,255}));
+
+ connect(uBoi, enaBoi.uBoi) annotation (Line(points={{-260,80},{46,80},{46,-2},
+ {58,-2}}, color={255,0,255}));
+
+ connect(uStaSet, nexBoi.uStaSet) annotation (Line(points={{-260,-80},{-234,
+ -80},{-234,-53},{-172,-53}}, color={255,127,0}));
+
+ connect(uStaSet, hotWatSupTemRes.uStaSet) annotation (Line(points={{-260,-80},
+ {-234,-80},{-234,-27},{-172,-27}}, color={255,127,0}));
+
+ connect(uStaTyp, hotWatSupTemRes.uStaTyp) annotation (Line(points={{-260,-40},
+ {-186,-40},{-186,-23},{-172,-23}}, color={255,127,0}));
+
+ connect(uStaUpPro, lat.u)
+ annotation (Line(points={{-260,0},{-224,0}}, color={255,0,255}));
+
+ connect(lat3.y, and1.u2) annotation (Line(points={{-158,-190},{-48,-190},{-48,
+ -30},{-10,-30},{-10,-8},{-2,-8}}, color={255,0,255}));
+
+ connect(uPumChaPro, lat3.u)
+ annotation (Line(points={{-260,-190},{-182,-190}}, color={255,0,255}));
+
+ connect(and4.y, lat4.u)
+ annotation (Line(points={{154,-190},{158,-190}}, color={255,0,255}));
+
+ connect(truDel.y, and4.u1) annotation (Line(points={{122,0},{126,0},{126,-190},
+ {130,-190}}, color={255,0,255}));
+
+ connect(uPumChaPro, and4.u2) annotation (Line(points={{-260,-190},{-200,-190},
+ {-200,-210},{120,-210},{120,-198},{130,-198}}, color={255,0,255}));
+
+ connect(lat4.y, and3.u2) annotation (Line(points={{182,-190},{184,-190},{184,
+ -8},{188,-8}}, color={255,0,255}));
+
+ connect(edg.y, yStaChaPro)
+ annotation (Line(points={{252,50},{300,50}}, color={255,0,255}));
+
+ connect(edg2.y, or2.u1) annotation (Line(points={{192,-230},{200,-230},{200,-240},
+ {208,-240}}, color={255,0,255}));
+
+ connect(edg1.y, or2.u2) annotation (Line(points={{-68,-240},{66,-240},{66,-248},
+ {208,-248}}, color={255,0,255}));
+
+ connect(enaBoi.yBoi, yBoi) annotation (Line(points={{82,8},{90,8},{90,110},{300,
+ 110}}, color={255,0,255}));
+
+ connect(or2.y, yPumChaPro)
+ annotation (Line(points={{232,-240},{300,-240}}, color={255,0,255}));
+
+ connect(nexBoi.yOnOff, yOnOff) annotation (Line(points={{-148,-60},{144,-60},{
+ 144,-110},{300,-110}}, color={255,0,255}));
+
+ connect(nexBoi.yNexEnaBoi, yNexEnaBoi) annotation (Line(points={{-148,-51},{160,
+ -51},{160,-150},{300,-150}}, color={255,127,0}));
+
+ connect(lat5.y, and1.u1) annotation (Line(points={{-48,40},{-6,40},{-6,0},{-2,
+ 0}}, color={255,0,255}));
+
+ connect(truDel.y, lat6.u) annotation (Line(points={{122,0},{126,0},{126,40},{148,
+ 40}}, color={255,0,255}));
+
+ connect(lat6.y, and3.u1) annotation (Line(points={{172,40},{180,40},{180,0},{188,
+ 0}}, color={255,0,255}));
+
+ connect(enaHotWatIsoVal.yHotWatIsoVal, swi.u1) annotation (Line(points={{-48,
+ -6},{-30,-6},{-30,-90},{26,-90},{26,-122},{38,-122}}, color={0,0,127}));
+
+ connect(uHotWatIsoVal, swi.u3) annotation (Line(points={{-260,120},{30,120},{
+ 30,-138},{38,-138}}, color={0,0,127}));
+
+ connect(booRep.y, swi.u2)
+ annotation (Line(points={{22,-130},{38,-130}}, color={255,0,255}));
+
+ connect(swi.y, swi1.u3) annotation (Line(points={{62,-130},{92,-130},{92,-118},
+ {98,-118}}, color={0,0,127}));
+
+ connect(disHotWatIsoVal1.yHotWatIsoVal, swi1.u1) annotation (Line(points={{
+ 172,-6},{180,-6},{180,-70},{92,-70},{92,-102},{98,-102}}, color={0,0,
+ 127}));
+
+ connect(truDel.y, booRep1.u) annotation (Line(points={{122,0},{126,0},{126,
+ -170},{60,-170},{60,-150},{68,-150}}, color={255,0,255}));
+
+ connect(booRep1.y, swi1.u2) annotation (Line(points={{92,-150},{96,-150},{96,
+ -110},{98,-110}}, color={255,0,255}));
+
+ connect(swi1.y, yHotWatIsoVal) annotation (Line(points={{122,-110},{134,-110},
+ {134,-90},{210,-90},{210,-70},{300,-70}}, color={0,0,127}));
+
+ connect(and1.y, truDel1.u) annotation (Line(points={{22,0},{28,0},{28,60},{
+ -10,60},{-10,100},{-2,100}},
+ color={255,0,255}));
+
+ connect(truDel1.y, enaBoi.uUpsDevSta) annotation (Line(points={{22,100},{42,100},
+ {42,2},{58,2}}, color={255,0,255}));
+
+ connect(disHotWatIsoVal1.yEnaHotWatIsoVal, and3.u1) annotation (Line(points={{
+ 172,6},{180,6},{180,0},{188,0}}, color={255,0,255}));
+
+ connect(and3.y, logSwi.u1) annotation (Line(points={{212,0},{220,0},{220,-2},{
+ 228,-2}}, color={255,0,255}));
+
+ connect(enaBoi.yBoiEnaPro, logSwi.u3) annotation (Line(points={{82,-8},{90,-8},
+ {90,-18},{228,-18}}, color={255,0,255}));
+
+ connect(nexBoi.yOnOff, logSwi.u2) annotation (Line(points={{-148,-60},{170,-60},
+ {170,-24},{220,-24},{220,-10},{228,-10}}, color={255,0,255}));
+
+ connect(logSwi.y, edg.u) annotation (Line(points={{252,-10},{260,-10},{260,20},
+ {220,20},{220,50},{228,50}}, color={255,0,255}));
+
+ connect(uHotWatIsoVal, disHotWatIsoVal1.uHotWatIsoVal) annotation (Line(
+ points={{-260,120},{144,120},{144,5},{148,5}}, color={0,0,127}));
+
+ connect(enaHotWatIsoVal.yEnaHotWatIsoVal, lat1.u) annotation (Line(points={{
+ -48,6},{-40,6},{-40,-110},{-34,-110}}, color={255,0,255}));
+
+ connect(lat1.y, and1.u1) annotation (Line(points={{-10,-110},{-6,-110},{-6,0},
+ {-2,0}}, color={255,0,255}));
+
+ connect(con.y, and1.u2) annotation (Line(points={{-158,-150},{-48,-150},{-48,-30},
+ {-10,-30},{-10,-8},{-2,-8}}, color={255,0,255}));
+ connect(con.y, and3.u2) annotation (Line(points={{-158,-150},{-30,-150},{-30,-190},
+ {110,-190},{110,-160},{184,-160},{184,-8},{188,-8}}, color={255,0,255}));
+ connect(lat2.y, or1.u1)
+ annotation (Line(points={{-158,-120},{-132,-120}}, color={255,0,255}));
+ connect(minBypRes.yMinBypRes, or1.u2) annotation (Line(points={{-148,20},{-146,
+ 20},{-146,-128},{-132,-128}}, color={255,0,255}));
+ connect(hotWatSupTemRes.yHotWatSupTemRes, or1.u2) annotation (Line(points={{-148,
+ -20},{-146,-20},{-146,-128},{-132,-128}}, color={255,0,255}));
+ connect(or1.y, lat5.u) annotation (Line(points={{-108,-120},{-104,-120},{-104,
+ 40},{-72,40}}, color={255,0,255}));
+ connect(or1.y, booRep.u) annotation (Line(points={{-108,-120},{-104,-120},{-104,
+ -130},{-2,-130}}, color={255,0,255}));
+ connect(or1.y, enaHotWatIsoVal.uUpsDevSta) annotation (Line(points={{-108,-120},
+ {-104,-120},{-104,-5},{-72,-5}}, color={255,0,255}));
+ connect(nexBoi.yDisSmaBoi, yLasDisBoi) annotation (Line(points={{-148,-56},{156,
+ -56},{156,-156},{240,-156},{240,-190},{300,-190}}, color={255,127,0}));
+ connect(uStaChaPro, lat.clr) annotation (Line(points={{-260,-150},{-228,-150},
+ {-228,-6},{-224,-6}}, color={255,0,255}));
+ connect(uStaChaPro, lat2.clr) annotation (Line(points={{-260,-150},{-190,-150},
+ {-190,-126},{-182,-126}}, color={255,0,255}));
+ connect(uStaChaPro, lat3.clr) annotation (Line(points={{-260,-150},{-190,-150},
+ {-190,-196},{-182,-196}}, color={255,0,255}));
+ connect(uStaChaPro, lat5.clr) annotation (Line(points={{-260,-150},{-190,-150},
+ {-190,-100},{-98,-100},{-98,34},{-72,34}}, color={255,0,255}));
+ connect(uStaChaPro, lat6.clr) annotation (Line(points={{-260,-150},{-190,-150},
+ {-190,-100},{-98,-100},{-98,70},{132,70},{132,34},{148,34}}, color={
+ 255,0,255}));
+ connect(uStaChaPro, lat1.clr) annotation (Line(points={{-260,-150},{-190,-150},
+ {-190,-100},{-98,-100},{-98,-116},{-34,-116}}, color={255,0,255}));
+ connect(uStaChaPro, lat4.clr) annotation (Line(points={{-260,-150},{-190,-150},
+ {-190,-100},{-98,-100},{-98,70},{132,70},{132,-168},{156,-168},{156,
+ -196},{158,-196}}, color={255,0,255}));
+ connect(and2.y, edg2.u)
+ annotation (Line(points={{162,-230},{168,-230}}, color={255,0,255}));
+ connect(truDel.y, and2.u1) annotation (Line(points={{122,0},{126,0},{126,-230},
+ {138,-230}}, color={255,0,255}));
+ connect(nexBoi.yOnOff, and2.u2) annotation (Line(points={{-148,-60},{-54,-60},
+ {-54,-238},{138,-238}}, color={255,0,255}));
+ connect(or1.y, edg1.u) annotation (Line(points={{-108,-120},{-104,-120},{-104,
+ -240},{-92,-240}}, color={255,0,255}));
+ connect(uPlaEna, lat2.u)
+ annotation (Line(points={{-260,-120},{-182,-120}}, color={255,0,255}));
+annotation (
+ defaultComponentName="upProCon",
+ Diagram(coordinateSystem(preserveAspectRatio=false,
+ extent={{-240,-260},{280,260}})),
+ Icon(coordinateSystem(extent={{-100,-200},{100,200}}), graphics={
+ Rectangle(
+ extent={{-100,-200},{100,200}},
+ lineColor={0,0,127},
+ fillColor={255,255,255},
+ fillPattern=FillPattern.Solid,
+ borderPattern=BorderPattern.Raised),
+ Text(
+ extent={{-120,260},{120,200}},
+ textColor={0,0,255},
+ textString="%name"),
+ Rectangle(
+ extent={{-10,120},{10,-140}},
+ lineColor={200,200,200},
+ fillColor={207,207,207},
+ fillPattern=FillPattern.Solid),
+ Polygon(
+ points={{0,160},{-40,120},{0,120},{40,120},{0,160}},
+ lineColor={200,200,200},
+ fillColor={207,207,207},
+ fillPattern=FillPattern.Solid)}),
+Documentation(info="
+
+Block that controls boiler status and isolation valve position, initiates status
+change in devices like pumps and minimum flow bypass valve, and resets plant
+parameters like hot water supply temperature setpoint and minimum flow setpoint
+when there is a stage-up command.
+This development is based on ASHRAE RP-1711, March 2020 draft,sections 5.3.3.11 - 5.3.3.18,
+which specify the step-by-step control of devices during boiler staging up process.
+
+
+-
+Identify the boiler(s) that should be enabled (and disabled). This is implemented in block
nexBoi
. See
+
+Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Staging.Processes.Subsequences.NextBoiler
+for more decriptions.
+
+-
+Initiate the process to reset the minimum hot water flow setpoint for the minimum
+flow bypass valve,
+
+-
+For any stage change during which a smaller boiler is disabled and a larger boiler
+is enabled, slowly change the minimum hot water flow
+setpoint to the one that includes both boilers being enabled. After new setpoint is
+achieved, wait
delEnaMinFloSet
to allow loop to stabilize.
+
+-
+For any other stage change, reset the minimum hot water flow setpoint to the one
+that includes the new boiler. After new setpoint is
+achieved, wait
delEnaMinFloSet
to allow loop to stabilize.
+
+
+The minimum flow setpoint is reset in sequence
+(
+Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.MinimumFlowBypass.Subsequences.FlowSetpoint).
+Block minBypRes
checks if the new setpoint is achieved
+(
+Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Staging.Processes.Subsequences.ResetMinBypass).
+
+-
+Start the next hot water pump and/or open the hot water isolation valves using the
+block
enaHotWatIsoVal
using sequence implemented in
+Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Staging.Processes.Subsequences.HWIsoVal
+for the valves and initiating the pump change process with the pulse signal yPumChaPro
.
+Once the pumps have been reset, the controller receives a pulse signal on the
+input uPumChaPro
.
+
+-
+After waiting for time
delPreBoiEna
, the boiler status yBoi
+is changed using the boiler status controller enaBoi
implemented in the sequence
+
+Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Staging.Processes.Subsequences.EnableBoiler.
+
+-
+If the stage up process does not involve turning off a smaller boiler, end the
+staging up process by sending a pulse signal through
yStaChaPro
. Otherwise,
+
+-
+Wait for time
delBoiEna
before closing the isolation valve for the
+disabled boiler and initiating the pump change process.
+
+-
+End the staging process after the valve has been closed and the pump change process
+completion signal has been received. Send pulse signal through
yStaChaPro
+to indicate the same.
+
+
+
+", revisions="
+
+-
+July 20, 2020, by Karthik Devaprasad:
+First implementation.
+
+
+"));
+end Up;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Staging/Processes/Validation/Down.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Staging/Processes/Validation/Down.mo
new file mode 100644
index 00000000000..c4a5ba932af
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Staging/Processes/Validation/Down.mo
@@ -0,0 +1,863 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Staging.Processes.Validation;
+model Down
+ "Validate sequence of staging down process"
+
+ parameter Integer nBoi=2
+ "Total number of boilers in the plant";
+
+ parameter Integer nSta=3
+ "Total number of stages";
+
+ parameter Real delBoiEna(
+ final unit="s",
+ final displayUnit="s",
+ final quantity="Time") = 180
+ "Time delay after boiler change process has been completed before turning off excess valves and pumps";
+
+ parameter Real delEnaMinFloSet(
+ final unit="s",
+ final displayUnit="s",
+ final quantity="Time")=60
+ "Enable delay after minimum flow setpoint is achieved in bypass valve";
+
+ parameter Real delProSupTemSet(
+ final unit="s",
+ final displayUnit="s",
+ final quantity="Time")=300
+ "Process time-out for hot water supply temperature setpoint reset";
+
+ parameter Real TMinSupNonConBoi(
+ final unit="K",
+ final displayUnit="K",
+ final quantity="ThermodynamicTemperature")=333.2
+ "Minimum supply temperature required for non-condensing boilers";
+
+ parameter Real sigDif(
+ final unit="K",
+ final displayUnit="K",
+ final quantity="ThermodynamicTemperature")=0.1
+ "Significant difference based on minimum resolution of temperature sensor";
+
+ parameter Real chaIsoValTim(
+ final unit="s",
+ final displayUnit="s",
+ final quantity="Time")=60
+ "Time to slowly change isolation valve, should be determined in the field";
+
+ parameter Real boiChaProOnTim(
+ final unit="s",
+ final displayUnit="s",
+ final quantity="Time")=300
+ "Enabled boiler operation time to indicate if it is proven on during a staging
+ process where one boiler is turned on and the other is turned off";
+
+ parameter Real relFloDif(
+ final unit="1",
+ final displayUnit="1")=0.05
+ "Relative error to the flow setpoint for checking if it has been achieved";
+
+ parameter Real delPreBoiEna(
+ final unit="s",
+ final displayUnit="s",
+ final quantity="Time")=30
+ "Time delay after valve and pump change process has been completed before
+ starting boiler change process";
+
+ parameter Real VNom_flow(
+ final unit="m3/s",
+ final displayUnit="m3/s",
+ final quantity="VolumeFlowRate") = 1
+ "Nominal minimum flow rate";
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Staging.Processes.Down dowProCon(
+ final have_priOnl=false,
+ final have_heaPriPum=true,
+ final nBoi=nBoi,
+ final nSta=nSta,
+ final delBoiEna=delBoiEna,
+ final delPreBoiEna=delPreBoiEna,
+ final delEnaMinFloSet=delEnaMinFloSet,
+ final chaIsoValTim=chaIsoValTim,
+ final boiChaProOnTim=boiChaProOnTim,
+ final relFloDif=relFloDif)
+ "Stage down process for primary-secondary plant with headered pumps"
+ annotation (Placement(transformation(extent={{-160,166},{-140,206}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Staging.Processes.Down dowProCon1(
+ final have_priOnl=false,
+ final have_heaPriPum=false,
+ final nBoi=nBoi,
+ final nSta=nSta,
+ final delBoiEna=delBoiEna,
+ final delPreBoiEna=delPreBoiEna,
+ final delEnaMinFloSet=delEnaMinFloSet,
+ final chaIsoValTim=chaIsoValTim,
+ final boiChaProOnTim=boiChaProOnTim,
+ final relFloDif=relFloDif)
+ "Stage down process for primary-secondary plant with dedicated pumps"
+ annotation (Placement(transformation(extent={{210,166},{230,206}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Staging.Processes.Down dowProCon4(
+ final have_priOnl=true,
+ final have_heaPriPum=true,
+ final nBoi=nBoi,
+ final nSta=nSta,
+ final delBoiEna=delBoiEna,
+ final delPreBoiEna=delPreBoiEna,
+ final delEnaMinFloSet=delEnaMinFloSet,
+ final chaIsoValTim=chaIsoValTim,
+ final boiChaProOnTim=boiChaProOnTim,
+ final relFloDif=relFloDif)
+ "Stage down process for primary-only plant with headered pumps"
+ annotation (Placement(transformation(extent={{-160,-170},{-140,-130}})));
+
+ Buildings.Controls.OBC.CDL.Logical.TrueFalseHold yPumChaPro(
+ final trueHoldDuration=10,
+ final falseHoldDuration=0)
+ "Hold true pulse signal for visualization"
+ annotation (Placement(transformation(extent={{-120,150},{-100,170}})));
+
+ Buildings.Controls.OBC.CDL.Logical.TrueFalseHold yPumChaPro1(
+ final trueHoldDuration=10,
+ final falseHoldDuration=0)
+ "Hold true pulse signal for visualization"
+ annotation (Placement(transformation(extent={{250,150},{270,170}})));
+
+ Buildings.Controls.OBC.CDL.Logical.TrueFalseHold yStaChaPro(
+ final trueHoldDuration=10,
+ final falseHoldDuration=0)
+ "Hold true pulse signal for visualization"
+ annotation (Placement(transformation(extent={{-120,190},{-100,210}})));
+
+ Buildings.Controls.OBC.CDL.Logical.TrueFalseHold yStaChaPro1(
+ final trueHoldDuration=10,
+ final falseHoldDuration=0)
+ "Hold true pulse signal for visualization"
+ annotation (Placement(transformation(extent={{250,190},{270,210}})));
+
+ Buildings.Controls.OBC.CDL.Logical.TrueFalseHold yStaChaPro4(
+ final trueHoldDuration=10,
+ final falseHoldDuration=0)
+ "Hold true pulse signal for visualization"
+ annotation (Placement(transformation(extent={{-120,-146},{-100,-126}})));
+
+protected
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant con1[nBoi](
+ final k={false,true})
+ "Boiler setpoints for stage 2"
+ annotation (Placement(transformation(extent={{-334,70},{-314,90}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Pre pre3[nBoi](
+ final pre_u_start={true,true})
+ "Logical pre block"
+ annotation (Placement(transformation(extent={{-260,180},{-240,200}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Switch logSwi1[nBoi]
+ "Pass boiler setpoints for stage 3 after one stage change"
+ annotation (Placement(transformation(extent={{-220,100},{-200,120}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant con2[nBoi](
+ final k={true,false})
+ "Boiler setpoints for stage 3"
+ annotation (Placement(transformation(extent={{-260,120},{-240,140}})));
+
+ Buildings.Controls.OBC.CDL.Logical.FallingEdge falEdg
+ "Falling edge detector"
+ annotation (Placement(transformation(extent={{-90,150},{-70,170}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Switch intSwi
+ "Switch between stage 2 and stage 3 setpoints"
+ annotation (Placement(transformation(extent={{-220,30},{-200,50}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant conInt(
+ final k=1)
+ "Stage 3 setpoint"
+ annotation (Placement(transformation(extent={{-260,50},{-240,70}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant conInt1(
+ final k=2)
+ "Stage 2 setpoint"
+ annotation (Placement(transformation(extent={{-368,0},{-348,20}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Or or2
+ "Detect first triggering pulse and subsequent stage change completion signals"
+ annotation (Placement(transformation(extent={{-130,110},{-110,130}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Switch swi[nBoi]
+ "Pass initial valve position and switch to signal from controller"
+ annotation (Placement(transformation(extent={{-220,270},{-200,290}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Pulse booPul[nBoi](
+ final width=fill(0.1/1800, nBoi),
+ final period=fill(1800, nBoi))
+ "Boolean pulse to start initial stage change"
+ annotation (Placement(transformation(extent={{-370,250},{-350,270}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant con[nBoi](
+ final k={1,1})
+ "Initial isolation valve positions"
+ annotation (Placement(transformation(extent={{-300,280},{-280,300}})));
+
+ Buildings.Controls.OBC.CDL.Discrete.ZeroOrderHold zerOrdHol[nBoi](
+ final samplePeriod=fill(10, nBoi))
+ "Zero order hold"
+ annotation (Placement(transformation(extent={{-60,170},{-40,190}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Pre pre1
+ "Logical pre block"
+ annotation (Placement(transformation(extent={{-40,130},{-20,150}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Pre pre2
+ "Logical pre block"
+ annotation (Placement(transformation(extent={{-28,190},{-8,210}})));
+
+ Buildings.Controls.OBC.CDL.Logical.FallingEdge falEdg1
+ "Falling edge detector"
+ annotation (Placement(transformation(extent={{-90,190},{-70,210}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Switch logSwi2[nBoi]
+ "Pass boiler setpoints for stage 1 and switch to setpoints for stage 2"
+ annotation (Placement(transformation(extent={{-300,100},{-280,120}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant con4[nBoi](
+ final k={true,true})
+ "Initial boiler setpoints for stage 1"
+ annotation (Placement(transformation(extent={{-334,130},{-314,150}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Switch intSwi1
+ "Switch between stage 1 and stage 2 setpoints"
+ annotation (Placement(transformation(extent={{-320,20},{-300,40}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant conInt3(
+ final k=3)
+ "Stage 1 setpoint"
+ annotation (Placement(transformation(extent={{-370,40},{-350,60}})));
+
+ Buildings.Controls.OBC.CDL.Logical.FallingEdge falEdg2
+ "Falling edge detector"
+ annotation (Placement(transformation(extent={{-164,110},{-144,130}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Latch lat1[nBoi]
+ "Hold true signal once first stage change is completed"
+ annotation (Placement(transformation(extent={{-40,60},{-20,80}})));
+
+ Buildings.Controls.OBC.CDL.Routing.BooleanScalarReplicator booRep(
+ final nout=nBoi)
+ "Boolean replicator"
+ annotation (Placement(transformation(extent={{-80,60},{-60,80}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant con5[nBoi](
+ final k={false,true})
+ "Boiler setpoints for stage 2"
+ annotation (Placement(transformation(extent={{36,70},{56,90}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Pre pre4[nBoi](
+ final pre_u_start={true,true})
+ "Logical pre block"
+ annotation (Placement(transformation(extent={{110,180},{130,200}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Switch logSwi4[nBoi]
+ "Pass boiler setpoints for stage 3 after one stage change"
+ annotation (Placement(transformation(extent={{150,100},{170,120}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant con6[nBoi](
+ final k={true,false})
+ "Boiler setpoints for stage 3"
+ annotation (Placement(transformation(extent={{110,120},{130,140}})));
+
+ Buildings.Controls.OBC.CDL.Logical.FallingEdge falEdg3
+ "Falling edge detector"
+ annotation (Placement(transformation(extent={{280,150},{300,170}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Switch intSwi2
+ "Switch between stage 2 and stage 3 setpoints"
+ annotation (Placement(transformation(extent={{150,30},{170,50}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant conInt4(
+ final k=1)
+ "Stage 3 setpoint"
+ annotation (Placement(transformation(extent={{110,50},{130,70}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant conInt5(
+ final k=2)
+ "Stage 2 setpoint"
+ annotation (Placement(transformation(extent={{0,0},{20,20}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Or or1
+ "Detect first triggering pulse and subsequent stage change completion signals"
+ annotation (Placement(transformation(extent={{240,110},{260,130}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Pulse booPul1[nBoi](
+ final width=fill(0.1/1800, nBoi),
+ final period=fill(1800, nBoi))
+ "Boolean pulse to start initial stage change"
+ annotation (Placement(transformation(extent={{0,250},{20,270}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Pre pre5
+ "Logical pre block"
+ annotation (Placement(transformation(extent={{330,130},{350,150}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Pre pre6
+ "Logical pre block"
+ annotation (Placement(transformation(extent={{340,190},{360,210}})));
+
+ Buildings.Controls.OBC.CDL.Logical.FallingEdge falEdg4
+ "Falling edge detector"
+ annotation (Placement(transformation(extent={{280,190},{300,210}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Switch logSwi5[nBoi]
+ "Pass boiler setpoints for stage 1 and switch to setpoints for stage 2"
+ annotation (Placement(transformation(extent={{70,100},{90,120}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant con9[nBoi](
+ final k={true,true})
+ "Initial boiler setpoints for stage 1"
+ annotation (Placement(transformation(extent={{36,130},{56,150}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Switch intSwi3
+ "Switch between stage 1 and stage 2 setpoints"
+ annotation (Placement(transformation(extent={{50,20},{70,40}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant conInt7(
+ final k=3)
+ "Stage 1 setpoint"
+ annotation (Placement(transformation(extent={{0,40},{20,60}})));
+
+ Buildings.Controls.OBC.CDL.Logical.FallingEdge falEdg5
+ "Falling edge detector"
+ annotation (Placement(transformation(extent={{206,110},{226,130}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Latch lat3[nBoi]
+ "Hold true signal once first stage change is completed"
+ annotation (Placement(transformation(extent={{330,60},{350,80}})));
+
+ Buildings.Controls.OBC.CDL.Routing.BooleanScalarReplicator booRep1(
+ final nout=nBoi)
+ "Boolean replicator"
+ annotation (Placement(transformation(extent={{280,60},{300,80}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant con20[nBoi](
+ final k={false,true})
+ "Boiler setpoints for stage 2"
+ annotation (Placement(transformation(extent={{-334,-266},{-314,-246}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Pre pre13[nBoi](
+ final pre_u_start={true,true})
+ "Logical pre block"
+ annotation (Placement(transformation(extent={{-260,-160},{-240,-140}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Switch logSwi13[nBoi]
+ "Pass boiler setpoints for stage 3 after one stage change"
+ annotation (Placement(transformation(extent={{-220,-236},{-200,-216}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant con21[nBoi](
+ final k={true,
+ false})
+ "Boiler setpoints for stage 3"
+ annotation (Placement(transformation(extent={{-260,-216},{-240,-196}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Switch intSwi8
+ "Switch between stage 2 and stage 3 setpoints"
+ annotation (Placement(transformation(extent={{-220,-306},{-200,-286}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant conInt16(
+ final k=1)
+ "Stage 3 setpoint"
+ annotation (Placement(transformation(extent={{-260,-286},{-240,-266}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant conInt17(
+ final k=2)
+ "Stage 2 setpoint"
+ annotation (Placement(transformation(extent={{-370,-336},{-350,-316}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Or or5
+ "Detect first triggering pulse and subsequent stage change completion signals"
+ annotation (Placement(transformation(extent={{-130,-226},{-110,-206}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Switch swi4[nBoi]
+ "Pass initial valve position and switch to signal from controller"
+ annotation (Placement(transformation(extent={{-220,-66},{-200,-46}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Pulse booPul4[nBoi](
+ final width=fill(0.1/1800, nBoi),
+ final period=fill(1800, nBoi))
+ "Boolean pulse to start initial stage change"
+ annotation (Placement(transformation(extent={{-370,-86},{-350,-66}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant con22[nBoi](
+ final k={1,1})
+ "Initial isolation valve positions"
+ annotation (Placement(transformation(extent={{-300,-56},{-280,-36}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant con23(
+ final k=VNom_flow)
+ "Calculated minimum flow rate signal"
+ annotation (Placement(transformation(extent={{-180,-56},{-160,-36}})));
+
+ Buildings.Controls.OBC.CDL.Discrete.ZeroOrderHold zerOrdHol4[nBoi](
+ final samplePeriod=fill(10, nBoi))
+ "Zero order hold"
+ annotation (Placement(transformation(extent={{-60,-166},{-40,-146}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Pre pre15
+ "Logical pre block"
+ annotation (Placement(transformation(extent={{-28,-146},{-8,-126}})));
+
+ Buildings.Controls.OBC.CDL.Logical.FallingEdge falEdg13
+ "Falling edge detector"
+ annotation (Placement(transformation(extent={{-90,-146},{-70,-126}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Switch logSwi14[nBoi]
+ "Pass boiler setpoints for stage 1 and switch to setpoints for stage 2"
+ annotation (Placement(transformation(extent={{-300,-236},{-280,-216}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant con24[nBoi](
+ final k={true,true})
+ "Initial boiler setpoints for stage 1"
+ annotation (Placement(transformation(extent={{-334,-206},{-314,-186}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Switch intSwi9
+ "Switch between stage 1 and stage 2 setpoints"
+ annotation (Placement(transformation(extent={{-320,-316},{-300,-296}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant conInt19(
+ final k=3)
+ "Stage 1 setpoint"
+ annotation (Placement(transformation(extent={{-370,-296},{-350,-276}})));
+
+ Buildings.Controls.OBC.CDL.Logical.FallingEdge falEdg14
+ "Falling edge detector"
+ annotation (Placement(transformation(extent={{-164,-226},{-144,-206}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Latch lat9[nBoi]
+ "Hold true signal once first stage change is completed"
+ annotation (Placement(transformation(extent={{-50,-280},{-30,-260}})));
+
+ Buildings.Controls.OBC.CDL.Routing.BooleanScalarReplicator booRep4(
+ final nout=nBoi)
+ "Boolean replicator"
+ annotation (Placement(transformation(extent={{-90,-280},{-70,-260}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant con12(
+ final k=1.1*VNom_flow)
+ "Calculated minimum flow rate signal"
+ annotation (Placement(transformation(extent={{-90,-26},{-70,-6}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant con17(
+ final k=VNom_flow)
+ "Calculated minimum flow rate signal"
+ annotation (Placement(transformation(extent={{-90,-66},{-70,-46}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Switch swi2
+ "Pass different instances of measured flow-rate after stage change"
+ annotation (Placement(transformation(extent={{-50,-46},{-30,-26}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Latch lat10
+ "Hold true signal after stage change"
+ annotation (Placement(transformation(extent={{-130,-46},{-110,-26}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Pre pre7
+ "Logical pre block"
+ annotation (Placement(transformation(extent={{-120,60},{-100,80}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Pre pre8
+ "Logical pre block"
+ annotation (Placement(transformation(extent={{240,60},{260,80}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Pre pre9
+ "Logical pre block"
+ annotation (Placement(transformation(extent={{-130,-280},{-110,-260}})));
+
+equation
+
+ connect(con2.y, logSwi1.u1) annotation (Line(points={{-238,130},{-230,130},{
+ -230,118},{-222,118}},
+ color={255,0,255}));
+
+ connect(yPumChaPro.y, falEdg.u)
+ annotation (Line(points={{-98,160},{-92,160}}, color={255,0,255}));
+
+ connect(conInt.y, intSwi.u1) annotation (Line(points={{-238,60},{-230,60},{
+ -230,48},{-222,48}},
+ color={255,127,0}));
+
+ connect(booPul.y, swi.u2) annotation (Line(points={{-348,260},{-240,260},{
+ -240,280},{-222,280}},
+ color={255,0,255}));
+
+ connect(con.y, swi.u1) annotation (Line(points={{-278,290},{-230,290},{-230,
+ 288},{-222,288}},
+ color={0,0,127}));
+
+ connect(zerOrdHol.y, swi.u3) annotation (Line(points={{-38,180},{-34,180},{-34,
+ 260},{-230,260},{-230,272},{-222,272}},
+ color={0,0,127}));
+
+ connect(falEdg.y, pre1.u) annotation (Line(points={{-68,160},{-46,160},{-46,
+ 140},{-42,140}}, color={255,0,255}));
+
+ connect(yStaChaPro.y, falEdg1.u)
+ annotation (Line(points={{-98,200},{-92,200}}, color={255,0,255}));
+
+ connect(con1.y, logSwi2.u3) annotation (Line(points={{-312,80},{-306,80},{
+ -306,102},{-302,102}}, color={255,0,255}));
+
+ connect(con4.y, logSwi2.u1) annotation (Line(points={{-312,140},{-308,140},{-308,
+ 118},{-302,118}}, color={255,0,255}));
+
+ connect(booPul.y, logSwi2.u2) annotation (Line(points={{-348,260},{-340,260},
+ {-340,110},{-302,110}}, color={255,0,255}));
+
+ connect(logSwi2.y, logSwi1.u3) annotation (Line(points={{-278,110},{-272,110},
+ {-272,102},{-222,102}}, color={255,0,255}));
+
+ connect(conInt1.y, intSwi1.u3) annotation (Line(points={{-346,10},{-330,10},{-330,
+ 22},{-322,22}}, color={255,127,0}));
+
+ connect(conInt3.y, intSwi1.u1) annotation (Line(points={{-348,50},{-330,50},{-330,
+ 38},{-322,38}}, color={255,127,0}));
+
+ connect(intSwi1.y, intSwi.u3) annotation (Line(points={{-298,30},{-230,30},{-230,
+ 32},{-222,32}}, color={255,127,0}));
+
+ connect(booPul[1].y, intSwi1.u2) annotation (Line(points={{-348,260},{-340,260},
+ {-340,30},{-322,30}}, color={255,0,255}));
+
+ connect(falEdg1.y, pre2.u)
+ annotation (Line(points={{-68,200},{-30,200}}, color={255,0,255}));
+
+ connect(booPul[1].y, falEdg2.u) annotation (Line(points={{-348,260},{-340,260},
+ {-340,96},{-168,96},{-168,120},{-166,120}}, color={255,0,255}));
+
+ connect(falEdg2.y, or2.u1)
+ annotation (Line(points={{-142,120},{-132,120}}, color={255,0,255}));
+
+ connect(booRep.y, lat1.u)
+ annotation (Line(points={{-58,70},{-42,70}}, color={255,0,255}));
+
+ connect(lat1.y, logSwi1.u2) annotation (Line(points={{-18,70},{-10,70},{-10,
+ 50},{-160,50},{-160,74},{-226,74},{-226,110},{-222,110}}, color={255,
+ 0,255}));
+
+ connect(lat1[1].y, intSwi.u2) annotation (Line(points={{-18,70},{-10,70},{-10,
+ 50},{-160,50},{-160,74},{-226,74},{-226,40},{-222,40}}, color={255,0,
+ 255}));
+
+ connect(con1[1].y, lat1[1].clr) annotation (Line(points={{-312,80},{-150,80},
+ {-150,54},{-50,54},{-50,64},{-42,64}}, color={255,0,255}));
+
+ connect(con1[1].y, lat1[2].clr) annotation (Line(points={{-312,80},{-150,80},
+ {-150,54},{-50,54},{-50,64},{-42,64}}, color={255,0,255}));
+
+ connect(con6.y,logSwi4. u1) annotation (Line(points={{132,130},{140,130},{140,
+ 118},{148,118}}, color={255,0,255}));
+
+ connect(yPumChaPro1.y, falEdg3.u)
+ annotation (Line(points={{272,160},{278,160}}, color={255,0,255}));
+
+ connect(conInt4.y, intSwi2.u1) annotation (Line(points={{132,60},{140,60},{140,
+ 48},{148,48}}, color={255,127,0}));
+
+ connect(falEdg3.y, pre5.u) annotation (Line(points={{302,160},{324,160},{324,140},
+ {328,140}}, color={255,0,255}));
+
+ connect(yStaChaPro1.y, falEdg4.u)
+ annotation (Line(points={{272,200},{278,200}}, color={255,0,255}));
+
+ connect(con5.y,logSwi5. u3) annotation (Line(points={{58,80},{64,80},{64,102},
+ {68,102}}, color={255,0,255}));
+
+ connect(con9.y,logSwi5. u1) annotation (Line(points={{58,140},{62,140},{62,118},
+ {68,118}}, color={255,0,255}));
+
+ connect(booPul1.y, logSwi5.u2) annotation (Line(points={{22,260},{30,260},{30,
+ 110},{68,110}}, color={255,0,255}));
+
+ connect(logSwi5.y,logSwi4. u3) annotation (Line(points={{92,110},{98,110},{98,
+ 102},{148,102}}, color={255,0,255}));
+
+ connect(conInt5.y,intSwi3. u3) annotation (Line(points={{22,10},{40,10},{40,22},
+ {48,22}}, color={255,127,0}));
+
+ connect(conInt7.y,intSwi3. u1) annotation (Line(points={{22,50},{40,50},{40,38},
+ {48,38}}, color={255,127,0}));
+
+ connect(intSwi3.y, intSwi2.u3) annotation (Line(points={{72,30},{140,30},{140,
+ 32},{148,32}}, color={255,127,0}));
+
+ connect(booPul1[1].y, intSwi3.u2) annotation (Line(points={{22,260},{30,260},{
+ 30,30},{48,30}}, color={255,0,255}));
+
+ connect(falEdg4.y,pre6. u)
+ annotation (Line(points={{302,200},{338,200}}, color={255,0,255}));
+
+ connect(booPul1[1].y, falEdg5.u) annotation (Line(points={{22,260},{30,260},{30,
+ 96},{202,96},{202,120},{204,120}}, color={255,0,255}));
+
+ connect(falEdg5.y,or1. u1)
+ annotation (Line(points={{228,120},{238,120}}, color={255,0,255}));
+
+ connect(booRep1.y, lat3.u)
+ annotation (Line(points={{302,70},{328,70}}, color={255,0,255}));
+
+ connect(lat3.y,logSwi4. u2) annotation (Line(points={{352,70},{360,70},{360,
+ 50},{210,50},{210,74},{144,74},{144,110},{148,110}}, color={255,
+ 0,255}));
+ connect(lat3[1].y, intSwi2.u2) annotation (Line(points={{352,70},{360,70},{
+ 360,50},{210,50},{210,74},{144,74},{144,40},{148,40}},
+ color={255,0,255}));
+
+ connect(con5[1].y,lat3 [1].clr) annotation (Line(points={{58,80},{220,80},{
+ 220,54},{320,54},{320,64},{328,64}}, color={255,0,255}));
+
+ connect(con5[1].y,lat3 [2].clr) annotation (Line(points={{58,80},{220,80},{
+ 220,54},{320,54},{320,64},{328,64}}, color={255,0,255}));
+
+ connect(con21.y, logSwi13.u1) annotation (Line(points={{-238,-206},{-230,-206},
+ {-230,-218},{-222,-218}},
+ color={255,0,255}));
+
+ connect(conInt16.y, intSwi8.u1) annotation (Line(points={{-238,-276},{-230,-276},
+ {-230,-288},{-222,-288}},
+ color={255,127,0}));
+
+ connect(booPul4.y, swi4.u2) annotation (Line(points={{-348,-76},{-240,-76},{-240,
+ -56},{-222,-56}},color={255,0,255}));
+
+ connect(con22.y, swi4.u1) annotation (Line(points={{-278,-46},{-230,-46},{-230,
+ -48},{-222,-48}},
+ color={0,0,127}));
+
+ connect(zerOrdHol4.y, swi4.u3) annotation (Line(points={{-38,-156},{-34,-156},
+ {-34,-76},{-230,-76},{-230,-64},{-222,-64}},
+ color={0,0,127}));
+
+ connect(yStaChaPro4.y, falEdg13.u)
+ annotation (Line(points={{-98,-136},{-92,-136}},
+ color={255,0,255}));
+
+ connect(con20.y, logSwi14.u3) annotation (Line(points={{-312,-256},{-306,-256},
+ {-306,-234},{-302,-234}},
+ color={255,0,255}));
+
+ connect(con24.y, logSwi14.u1) annotation (Line(points={{-312,-196},{-310,-196},
+ {-310,-218},{-302,-218}},
+ color={255,0,255}));
+
+ connect(booPul4.y, logSwi14.u2) annotation (Line(points={{-348,-76},{-340,-76},
+ {-340,-226},{-302,-226}},
+ color={255,0,255}));
+
+ connect(logSwi14.y, logSwi13.u3) annotation (Line(points={{-278,-226},{-272,-226},
+ {-272,-234},{-222,-234}},
+ color={255,0,255}));
+
+ connect(conInt17.y, intSwi9.u3) annotation (Line(points={{-348,-326},{-330,-326},
+ {-330,-314},{-322,-314}},
+ color={255,127,0}));
+
+ connect(conInt19.y, intSwi9.u1) annotation (Line(points={{-348,-286},{-330,-286},
+ {-330,-298},{-322,-298}},
+ color={255,127,0}));
+
+ connect(intSwi9.y, intSwi8.u3) annotation (Line(points={{-298,-306},{-230,-306},
+ {-230,-304},{-222,-304}},
+ color={255,127,0}));
+
+ connect(booPul4[1].y, intSwi9.u2) annotation (Line(points={{-348,-76},{-340,-76},
+ {-340,-306},{-322,-306}},
+ color={255,0,255}));
+
+ connect(falEdg13.y, pre15.u)
+ annotation (Line(points={{-68,-136},{-30,-136}},
+ color={255,0,255}));
+
+ connect(booPul4[1].y, falEdg14.u) annotation (Line(points={{-348,-76},{-340,-76},
+ {-340,-240},{-168,-240},{-168,-216},{-166,-216}},
+ color={255,0,255}));
+
+ connect(falEdg14.y, or5.u1)
+ annotation (Line(points={{-142,-216},{-132,-216}},
+ color={255,0,255}));
+
+ connect(booRep4.y, lat9.u)
+ annotation (Line(points={{-68,-270},{-52,-270}},
+ color={255,0,255}));
+
+ connect(lat9.y, logSwi13.u2) annotation (Line(points={{-28,-270},{-20,-270},{
+ -20,-286},{-160,-286},{-160,-262},{-226,-262},{-226,-226},{-222,-226}},
+ color={255,0,255}));
+
+ connect(lat9[1].y, intSwi8.u2) annotation (Line(points={{-28,-270},{-20,-270},
+ {-20,-286},{-160,-286},{-160,-262},{-226,-262},{-226,-296},{-222,-296}},
+ color={255,0,255}));
+
+ connect(con20[1].y, lat9[1].clr) annotation (Line(points={{-312,-256},{-150,
+ -256},{-150,-282},{-60,-282},{-60,-276},{-52,-276}},
+ color={255,0,255}));
+
+ connect(con20[1].y, lat9[2].clr) annotation (Line(points={{-312,-256},{-150,
+ -256},{-150,-282},{-60,-282},{-60,-276},{-52,-276}},
+ color={255,0,255}));
+
+ connect(con12.y, swi2.u1) annotation (Line(points={{-68,-16},{-60,-16},{-60,-28},
+ {-52,-28}}, color={0,0,127}));
+
+ connect(con17.y, swi2.u3) annotation (Line(points={{-68,-56},{-60,-56},{-60,-44},
+ {-52,-44}}, color={0,0,127}));
+
+ connect(lat10.y, swi2.u2)
+ annotation (Line(points={{-108,-36},{-52,-36}},color={255,0,255}));
+
+ connect(pre15.y, lat10.u) annotation (Line(points={{-6,-136},{0,-136},{0,-80},
+ {-140,-80},{-140,-36},{-132,-36}}, color={255,0,255}));
+
+ connect(booPul4[1].y, lat10.clr) annotation (Line(points={{-348,-76},{-240,-76},
+ {-240,-82},{-136,-82},{-136,-42},{-132,-42}},
+ color={255,0,255}));
+
+ connect(swi.y, dowProCon.uHotWatIsoVal) annotation (Line(points={{-198,280},{-170,
+ 280},{-170,192},{-162,192}}, color={0,0,127}));
+
+ connect(dowProCon.yBoi, pre3.u) annotation (Line(points={{-138,198},{-130,198},
+ {-130,250},{-270,250},{-270,190},{-262,190}}, color={255,0,255}));
+
+ connect(logSwi1.y, dowProCon.uBoiSet) annotation (Line(points={{-198,110},{-180,
+ 110},{-180,184},{-162,184}}, color={255,0,255}));
+
+ connect(or2.y, dowProCon.uStaDowPro) annotation (Line(points={{-108,120},{-100,
+ 120},{-100,104},{-176,104},{-176,180},{-162,180}}, color={255,0,255}));
+
+ connect(intSwi.y, dowProCon.uStaSet) annotation (Line(points={{-198,40},{-172,
+ 40},{-172,176},{-162,176}}, color={255,127,0}));
+
+ connect(pre1.y, dowProCon.uPumChaPro) annotation (Line(points={{-18,140},{-10,
+ 140},{-10,120},{-80,120},{-80,140},{-166,140},{-166,168},{-162,168}},
+ color={255,0,255}));
+
+ connect(dowProCon.yStaChaPro, yStaChaPro.u) annotation (Line(points={{-138,194},
+ {-126,194},{-126,200},{-122,200}}, color={255,0,255}));
+
+ connect(dowProCon.yHotWatIsoVal, zerOrdHol.u) annotation (Line(points={{-138,190},
+ {-130,190},{-130,180},{-62,180}}, color={0,0,127}));
+
+ connect(dowProCon.yPumChaPro, yPumChaPro.u) annotation (Line(points={{-138,174},
+ {-130,174},{-130,160},{-122,160}}, color={255,0,255}));
+
+ connect(dowProCon1.yBoi, pre4.u) annotation (Line(points={{232,198},{240,198},
+ {240,250},{100,250},{100,190},{108,190}}, color={255,0,255}));
+
+ connect(logSwi4.y, dowProCon1.uBoiSet) annotation (Line(points={{172,110},{190,
+ 110},{190,184},{208,184}}, color={255,0,255}));
+
+ connect(or1.y, dowProCon1.uStaDowPro) annotation (Line(points={{262,120},{270,
+ 120},{270,104},{194,104},{194,180},{208,180}}, color={255,0,255}));
+
+ connect(intSwi2.y, dowProCon1.uStaSet) annotation (Line(points={{172,40},{198,
+ 40},{198,176},{208,176}}, color={255,127,0}));
+
+ connect(pre5.y, dowProCon1.uPumChaPro) annotation (Line(points={{352,140},{360,
+ 140},{360,120},{310,120},{310,140},{202,140},{202,168},{208,168}},
+ color={255,0,255}));
+
+ connect(dowProCon1.yStaChaPro, yStaChaPro1.u) annotation (Line(points={{232,194},
+ {244,194},{244,200},{248,200}}, color={255,0,255}));
+
+ connect(con23.y, dowProCon4.VMinHotWatSet_flow) annotation (Line(points={{-158,
+ -46},{-150,-46},{-150,-66},{-170,-66},{-170,-136},{-162,-136}}, color=
+ {0,0,127}));
+
+ connect(swi2.y, dowProCon4.VHotWat_flow) annotation (Line(points={{-28,-36},{-20,
+ -36},{-20,-96},{-166,-96},{-166,-132},{-162,-132}}, color={0,0,127}));
+
+ connect(swi4.y, dowProCon4.uHotWatIsoVal) annotation (Line(points={{-198,-56},
+ {-190,-56},{-190,-144},{-162,-144}}, color={0,
+ 0,127}));
+
+ connect(logSwi13.y, dowProCon4.uBoiSet) annotation (Line(points={{-198,-226},{
+ -180,-226},{-180,-152},{-162,-152}}, color={255,0,255}));
+
+ connect(or5.y, dowProCon4.uStaDowPro) annotation (Line(points={{-108,-216},{-104,
+ -216},{-104,-232},{-176,-232},{-176,-156},{-162,-156}}, color={255,0,255}));
+
+ connect(intSwi8.y, dowProCon4.uStaSet) annotation (Line(points={{-198,-296},{-172,
+ -296},{-172,-160},{-162,-160}}, color={255,127,0}));
+
+ connect(dowProCon4.yBoi, pre13.u) annotation (Line(points={{-138,-138},{-130,
+ -138},{-130,-86},{-270,-86},{-270,-150},{-262,-150}},
+ color={255,0,255}));
+
+ connect(dowProCon4.yStaChaPro, yStaChaPro4.u) annotation (Line(points={{-138,-142},
+ {-126,-142},{-126,-136},{-122,-136}}, color={255,0,255}));
+
+ connect(dowProCon4.yHotWatIsoVal, zerOrdHol4.u) annotation (Line(points={{-138,
+ -146},{-130,-146},{-130,-156},{-62,-156}}, color={0,0,127}));
+
+ connect(dowProCon1.yPumChaPro, yPumChaPro1.u) annotation (Line(points={{232,174},
+ {240,174},{240,160},{248,160}}, color={255,0,255}));
+
+ connect(pre2.y, dowProCon.uStaChaPro) annotation (Line(points={{-6,200},{0,200},
+ {0,100},{-184,100},{-184,172},{-162,172}}, color={255,0,255}));
+ connect(pre6.y, dowProCon1.uStaChaPro) annotation (Line(points={{362,200},{
+ 370,200},{370,100},{186,100},{186,172},{208,172}},
+ color={255,0,255}));
+ connect(pre15.y, dowProCon4.uStaChaPro) annotation (Line(points={{-6,-136},{0,
+ -136},{0,-236},{-184,-236},{-184,-164},{-162,-164}}, color={255,0,255}));
+ connect(pre3.y, dowProCon.uBoi) annotation (Line(points={{-238,190},{-180,190},
+ {-180,188},{-162,188}}, color={255,0,255}));
+ connect(pre7.y, booRep.u)
+ annotation (Line(points={{-98,70},{-82,70}}, color={255,0,255}));
+ connect(pre2.y, pre7.u) annotation (Line(points={{-6,200},{0,200},{0,90},{
+ -140,90},{-140,70},{-122,70}}, color={255,0,255}));
+ connect(pre7.y, or2.u2) annotation (Line(points={{-98,70},{-90,70},{-90,94},{
+ -140,94},{-140,112},{-132,112}}, color={255,0,255}));
+ connect(pre4.y, dowProCon1.uBoi) annotation (Line(points={{132,190},{190,190},
+ {190,188},{208,188}}, color={255,0,255}));
+ connect(pre8.y, booRep1.u)
+ annotation (Line(points={{262,70},{278,70}}, color={255,0,255}));
+ connect(pre8.y, or1.u2) annotation (Line(points={{262,70},{270,70},{270,90},{
+ 232,90},{232,112},{238,112}}, color={255,0,255}));
+ connect(pre6.y, pre8.u) annotation (Line(points={{362,200},{370,200},{370,100},
+ {226,100},{226,70},{238,70}}, color={255,0,255}));
+ connect(pre13.y, dowProCon4.uBoi) annotation (Line(points={{-238,-150},{-200,
+ -150},{-200,-148},{-162,-148}}, color={255,0,255}));
+ connect(booRep4.u, pre9.y)
+ annotation (Line(points={{-92,-270},{-108,-270}}, color={255,0,255}));
+ connect(pre15.y, pre9.u) annotation (Line(points={{-6,-136},{0,-136},{0,-236},
+ {-140,-236},{-140,-270},{-132,-270}}, color={255,0,255}));
+ connect(pre9.y, or5.u2) annotation (Line(points={{-108,-270},{-100,-270},{
+ -100,-240},{-136,-240},{-136,-224},{-132,-224}}, color={255,0,255}));
+annotation (
+ experiment(
+ StopTime=900,
+ Interval=1,
+ Tolerance=1e-06),
+ __Dymola_Commands(file="modelica://Buildings/Resources/Scripts/Dymola/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Staging/Processes/Validation/Down.mos"
+ "Simulate and plot"),
+ Documentation(info="
+
+This example validates
+
+Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Staging.Processes.Down.
+
+", revisions="
+
+-
+July 19, 2020 by Karthik Devaprasad:
+First implementation.
+
+
+"),
+Icon(coordinateSystem(extent={{-100,-100},{100,100}}),
+ graphics={
+ Ellipse(lineColor = {75,138,73},
+ fillColor={255,255,255},
+ fillPattern = FillPattern.Solid,
+ extent = {{-100,-100},{100,100}}),
+ Polygon(lineColor = {0,0,255},
+ fillColor = {75,138,73},
+ pattern = LinePattern.None,
+ fillPattern = FillPattern.Solid,
+ points = {{-36,60},{64,0},{-36,-60},{-36,60}})}),Diagram(
+ coordinateSystem(preserveAspectRatio=false, extent={{-380,-340},{380,340}})));
+end Down;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Staging/Processes/Validation/Up.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Staging/Processes/Validation/Up.mo
new file mode 100644
index 00000000000..71e9b0a10f3
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Staging/Processes/Validation/Up.mo
@@ -0,0 +1,1321 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Staging.Processes.Validation;
+model Up
+ "Validate sequence of staging up process"
+
+ parameter Integer nBoi=2
+ "Total number of boilers in the plant";
+
+ parameter Integer nSta=3
+ "Total number of stages";
+
+ parameter Real delBoiEna(
+ final unit="s",
+ final displayUnit="s",
+ final quantity="Time") = 180
+ "Time delay after boiler change process has been completed before turning off excess valves and pumps";
+
+ parameter Real delEnaMinFloSet(
+ final unit="s",
+ final displayUnit="s",
+ final quantity="Time")=60
+ "Enable delay after minimum flow setpoint is achieved in bypass valve";
+
+ parameter Real delProSupTemSet(
+ final unit="s",
+ final displayUnit="s",
+ final quantity="Time")=300
+ "Process time-out for hot water supply temperature setpoint reset";
+
+ parameter Real TMinSupNonConBoi(
+ final unit="K",
+ final displayUnit="K",
+ final quantity="ThermodynamicTemperature")=333.2
+ "Minimum supply temperature required for non-condensing boilers";
+
+ parameter Real sigDif(
+ final unit="K",
+ final displayUnit="K",
+ final quantity="ThermodynamicTemperature")=0.1
+ "Significant difference based on minimum resolution of temperature sensor";
+
+ parameter Real chaIsoValTim(
+ final unit="s",
+ final displayUnit="s",
+ final quantity="Time")=60
+ "Time to slowly change isolation valve, should be determined in the field";
+
+ parameter Real boiChaProOnTim(
+ final unit="s",
+ final displayUnit="s",
+ final quantity="Time")=300
+ "Enabled boiler operation time to indicate if it is proven on during a staging
+ process where one boiler is turned on and the other is turned off";
+
+ parameter Real relFloDif(
+ final unit="1",
+ final displayUnit="1")=0.05
+ "Relative error to the flow setpoint for checking if it has been achieved";
+
+ parameter Real delPreBoiEna(
+ final unit="s",
+ final displayUnit="s",
+ final quantity="Time")=30
+ "Time delay after valve and pump change process has been completed before
+ starting boiler change process";
+
+ parameter Real VNom_flow(
+ final unit="m3/s",
+ final displayUnit="m3/s",
+ final quantity="VolumeFlowRate") = 1
+ "Nominal minimum flow rate";
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Staging.Processes.Up upProCon(
+ final have_priOnl=false,
+ final have_heaPriPum=true,
+ final nBoi=nBoi,
+ final nSta=nSta,
+ final delBoiEna=delBoiEna,
+ final delPreBoiEna=delPreBoiEna,
+ final delEnaMinFloSet=delEnaMinFloSet,
+ final delProSupTemSet=delProSupTemSet,
+ final TMinSupNonConBoi=TMinSupNonConBoi,
+ final sigDif=sigDif,
+ final chaIsoValTim=chaIsoValTim,
+ final boiChaProOnTim=boiChaProOnTim,
+ final relFloDif=relFloDif)
+ "Stage up process where temperature reset condition is met with headered pumps"
+ annotation (Placement(transformation(extent={{-160,170},{-140,210}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Staging.Processes.Up upProCon1(
+ final have_priOnl=false,
+ final have_heaPriPum=true,
+ final nBoi=nBoi,
+ final nSta=nSta,
+ final delBoiEna=delBoiEna,
+ final delPreBoiEna=delPreBoiEna,
+ final delEnaMinFloSet=delEnaMinFloSet,
+ final delProSupTemSet=delProSupTemSet,
+ final TMinSupNonConBoi=TMinSupNonConBoi,
+ final sigDif=sigDif,
+ final chaIsoValTim=chaIsoValTim,
+ final boiChaProOnTim=boiChaProOnTim,
+ final relFloDif=relFloDif)
+ "Stage up process where temperature reset condition is not met with headered pumps"
+ annotation (Placement(transformation(extent={{210,170},{230,210}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Staging.Processes.Up upProCon2(
+ final have_priOnl=false,
+ final have_heaPriPum=false,
+ final nBoi=nBoi,
+ final nSta=nSta,
+ final delBoiEna=delBoiEna,
+ final delPreBoiEna=delPreBoiEna,
+ final delEnaMinFloSet=delEnaMinFloSet,
+ final delProSupTemSet=delProSupTemSet,
+ final TMinSupNonConBoi=TMinSupNonConBoi,
+ final sigDif=sigDif,
+ final chaIsoValTim=chaIsoValTim,
+ final boiChaProOnTim=boiChaProOnTim,
+ final relFloDif=relFloDif)
+ "Stage up process where temperature reset condition is met with dedicated pumps"
+ annotation (Placement(transformation(extent={{-170,-170},{-150,-130}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Staging.Processes.Up upProCon3(
+ final have_priOnl=false,
+ final have_heaPriPum=false,
+ final nBoi=nBoi,
+ final nSta=nSta,
+ final delBoiEna=delBoiEna,
+ final delPreBoiEna=delPreBoiEna,
+ final delEnaMinFloSet=delEnaMinFloSet,
+ final delProSupTemSet=delProSupTemSet,
+ final TMinSupNonConBoi=TMinSupNonConBoi,
+ final sigDif=sigDif,
+ final chaIsoValTim=chaIsoValTim,
+ final boiChaProOnTim=boiChaProOnTim,
+ final relFloDif=relFloDif)
+ "Stage up process where temperature reset condition is not met with dedicated pumps"
+ annotation (Placement(transformation(extent={{410,-172},{430,-132}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Staging.Processes.Up upProCon4(
+ final have_priOnl=true,
+ final have_heaPriPum=true,
+ final nBoi=nBoi,
+ final nSta=nSta,
+ final delBoiEna=delBoiEna,
+ final delPreBoiEna=delPreBoiEna,
+ final delEnaMinFloSet=delEnaMinFloSet,
+ final delProSupTemSet=delProSupTemSet,
+ final TMinSupNonConBoi=TMinSupNonConBoi,
+ final sigDif=sigDif,
+ final chaIsoValTim=chaIsoValTim,
+ final boiChaProOnTim=boiChaProOnTim,
+ final relFloDif=relFloDif)
+ "Stage up process for primary-only, condensing boiler plants with headered pumps"
+ annotation (Placement(transformation(extent={{600,168},{620,208}})));
+
+ Buildings.Controls.OBC.CDL.Logical.TrueFalseHold yStaChaPro(
+ final trueHoldDuration=10,
+ final falseHoldDuration=0)
+ "Hold true pulse signal for visualization"
+ annotation (Placement(transformation(extent={{-120,210},{-100,230}})));
+
+ Buildings.Controls.OBC.CDL.Logical.TrueFalseHold yStaChaPro1(
+ final trueHoldDuration=10,
+ final falseHoldDuration=0)
+ "Hold true pulse signal for visualization"
+ annotation (Placement(transformation(extent={{250,190},{270,210}})));
+
+ Buildings.Controls.OBC.CDL.Logical.TrueFalseHold yStaChaPro2(
+ final trueHoldDuration=10,
+ final falseHoldDuration=0)
+ "Hold true pulse signal for visualization"
+ annotation (Placement(transformation(extent={{-130,-140},{-110,-120}})));
+
+ Buildings.Controls.OBC.CDL.Logical.TrueFalseHold yStaChaPro3(
+ final trueHoldDuration=10,
+ final falseHoldDuration=0)
+ "Hold true pulse signal for visualization"
+ annotation (Placement(transformation(extent={{450,-140},{470,-120}})));
+
+ Buildings.Controls.OBC.CDL.Logical.TrueFalseHold yStaChaPro4(
+ final trueHoldDuration=10,
+ final falseHoldDuration=0)
+ "Hold true pulse signal for visualization"
+ annotation (Placement(transformation(extent={{640,190},{660,210}})));
+
+ Buildings.Controls.OBC.CDL.Logical.TrueFalseHold yPumChaPro(
+ final trueHoldDuration=10,
+ final falseHoldDuration=0)
+ "Hold true pulse signal for visualization"
+ annotation (Placement(transformation(extent={{-120,150},{-100,170}})));
+
+ Buildings.Controls.OBC.CDL.Logical.TrueFalseHold yPumChaPro1(
+ final trueHoldDuration=10,
+ final falseHoldDuration=0)
+ "Hold true pulse signal for visualization"
+ annotation (Placement(transformation(extent={{250,150},{270,170}})));
+
+ Buildings.Controls.OBC.CDL.Logical.TrueFalseHold yPumChaPro2(
+ final trueHoldDuration=10,
+ final falseHoldDuration=0)
+ "Hold true pulse signal for visualization"
+ annotation (Placement(transformation(extent={{-130,-180},{-110,-160}})));
+
+ Buildings.Controls.OBC.CDL.Logical.TrueFalseHold yPumChaPro3(
+ final trueHoldDuration=10,
+ final falseHoldDuration=0)
+ "Hold true pulse signal for visualization"
+ annotation (Placement(transformation(extent={{450,-180},{470,-160}})));
+
+protected
+ Buildings.Controls.OBC.CDL.Discrete.UnitDelay uniDel[nBoi](
+ final samplePeriod=fill(1, nBoi),
+ final y_start={1,0})
+ "Unit delay"
+ annotation (Placement(transformation(extent={{-60,170},{-40,190}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant con1[nBoi](
+ final k={false,true})
+ "Boiler setpoints for stage 2"
+ annotation (Placement(transformation(extent={{-330,70},{-310,90}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Pre pre3[nBoi](
+ final pre_u_start={true,false})
+ "Logical pre block"
+ annotation (Placement(transformation(extent={{-300,200},{-280,220}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Switch logSwi1[nBoi]
+ "Pass boiler setpoints for stage 3 after one stage change"
+ annotation (Placement(transformation(extent={{-220,100},{-200,120}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant con2[nBoi](
+ final k={true,true})
+ "Boiler setpoints for stage 3"
+ annotation (Placement(transformation(extent={{-260,120},{-240,140}})));
+
+ Buildings.Controls.OBC.CDL.Logical.FallingEdge falEdg
+ "Falling edge detector"
+ annotation (Placement(transformation(extent={{-90,150},{-70,170}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Switch intSwi
+ "Switch between stage 2 and stage 3 setpoints"
+ annotation (Placement(transformation(extent={{-220,30},{-200,50}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant conInt(
+ final k=3)
+ "Stage 3 setpoint"
+ annotation (Placement(transformation(extent={{-260,50},{-240,70}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant conInt1(
+ final k=2)
+ "Stage 2 setpoint"
+ annotation (Placement(transformation(extent={{-368,0},{-348,20}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant conInt2[nSta](
+ final k={1,2,2})
+ "Stage typer vector"
+ annotation (Placement(transformation(extent={{-220,140},{-200,160}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Or or2
+ "Detect first triggering pulse and subsequent stage change completion signals"
+ annotation (Placement(transformation(extent={{-110,110},{-90,130}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Pulse booPul[nBoi](
+ final width=fill(0.1/1800, nBoi),
+ final period=fill(1800, nBoi),
+ final shift=fill(1, nBoi))
+ "Boolean pulse to start initial stage change"
+ annotation (Placement(transformation(extent={{-370,250},{-350,270}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant con3(
+ final k=TMinSupNonConBoi + 1)
+ "Measured hot water supply temperature signal"
+ annotation (Placement(transformation(extent={{-180,280},{-160,300}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Pre pre1
+ "Logical pre block"
+ annotation (Placement(transformation(extent={{-30,150},{-10,170}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Pre pre2
+ "Logical pre block"
+ annotation (Placement(transformation(extent={{-60,210},{-40,230}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Switch logSwi2[nBoi]
+ "Pass boiler setpoints for stage 1 and switch to setpoints for stage 2"
+ annotation (Placement(transformation(extent={{-290,100},{-270,120}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant con4[nBoi](
+ final k={true,false})
+ "Initial boiler setpoints for stage 1"
+ annotation (Placement(transformation(extent={{-330,130},{-310,150}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Switch intSwi1
+ "Switch between stage 1 and stage 2 setpoints"
+ annotation (Placement(transformation(extent={{-320,20},{-300,40}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant conInt3(
+ final k=1)
+ "Stage 1 setpoint"
+ annotation (Placement(transformation(extent={{-370,40},{-350,60}})));
+
+ Buildings.Controls.OBC.CDL.Logical.FallingEdge falEdg2
+ "Falling edge detector"
+ annotation (Placement(transformation(extent={{-140,110},{-120,130}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Latch lat1[nBoi]
+ "Hold true signal once first stage change is completed"
+ annotation (Placement(transformation(extent={{-70,60},{-50,80}})));
+
+ Buildings.Controls.OBC.CDL.Routing.BooleanScalarReplicator booRep(
+ final nout=nBoi)
+ "Boolean replicator"
+ annotation (Placement(transformation(extent={{-110,60},{-90,80}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant con5[nBoi](
+ final k={false,true})
+ "Boiler setpoints for stage 2"
+ annotation (Placement(transformation(extent={{36,70},{56,90}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Pre pre4[nBoi](
+ final pre_u_start={true,false})
+ "Logical pre block"
+ annotation (Placement(transformation(extent={{70,200},{90,220}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Switch logSwi4[nBoi]
+ "Pass boiler setpoints for stage 3 after one stage change"
+ annotation (Placement(transformation(extent={{150,100},{170,120}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant con6[nBoi](
+ final k={true,true})
+ "Boiler setpoints for stage 3"
+ annotation (Placement(transformation(extent={{110,120},{130,140}})));
+
+ Buildings.Controls.OBC.CDL.Logical.FallingEdge falEdg3
+ "Falling edge detector"
+ annotation (Placement(transformation(extent={{280,150},{300,170}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Switch intSwi2
+ "Switch between stage 2 and stage 3 setpoints"
+ annotation (Placement(transformation(extent={{150,30},{170,50}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant conInt4(
+ final k=3)
+ "Stage 3 setpoint"
+ annotation (Placement(transformation(extent={{110,50},{130,70}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant conInt5(
+ final k=2)
+ "Stage 2 setpoint"
+ annotation (Placement(transformation(extent={{0,0},{20,20}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant conInt6[nSta](
+ final k={1,2,2})
+ "Stage typer vector"
+ annotation (Placement(transformation(extent={{150,140},{170,160}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Or or1
+ "Detect first triggering pulse and subsequent stage change completion signals"
+ annotation (Placement(transformation(extent={{270,110},{290,130}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Pulse booPul1[nBoi](
+ final width=fill(0.1/1800, nBoi),
+ final period=fill(1800, nBoi),
+ final shift=fill(1, nBoi))
+ "Boolean pulse to start initial stage change"
+ annotation (Placement(transformation(extent={{0,250},{20,270}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant con8(
+ final k=TMinSupNonConBoi - 1)
+ "Measured hot water supply temperature signal"
+ annotation (Placement(transformation(extent={{190,280},{210,300}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Pre pre5
+ "Logical pre block"
+ annotation (Placement(transformation(extent={{340,150},{360,170}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Pre pre6
+ "Logical pre block"
+ annotation (Placement(transformation(extent={{310,210},{330,230}})));
+
+ Buildings.Controls.OBC.CDL.Logical.FallingEdge falEdg4
+ "Falling edge detector"
+ annotation (Placement(transformation(extent={{280,190},{300,210}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Switch logSwi5[nBoi]
+ "Pass boiler setpoints for stage 1 and switch to setpoints for stage 2"
+ annotation (Placement(transformation(extent={{70,100},{90,120}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant con9[nBoi](
+ final k={true,false})
+ "Initial boiler setpoints for stage 1"
+ annotation (Placement(transformation(extent={{36,130},{56,150}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Switch intSwi3
+ "Switch between stage 1 and stage 2 setpoints"
+ annotation (Placement(transformation(extent={{50,20},{70,40}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant conInt7(
+ final k=1)
+ "Stage 1 setpoint"
+ annotation (Placement(transformation(extent={{0,40},{20,60}})));
+
+ Buildings.Controls.OBC.CDL.Logical.FallingEdge falEdg5
+ "Falling edge detector"
+ annotation (Placement(transformation(extent={{230,110},{250,130}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Latch lat3[nBoi]
+ "Hold true signal once first stage change is completed"
+ annotation (Placement(transformation(extent={{310,60},{330,80}})));
+
+ Buildings.Controls.OBC.CDL.Routing.BooleanScalarReplicator booRep1(
+ final nout=nBoi)
+ "Boolean replicator"
+ annotation (Placement(transformation(extent={{270,60},{290,80}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant con10[nBoi](
+ final k={false,true})
+ "Boiler setpoints for stage 2"
+ annotation (Placement(transformation(extent={{-344,-260},{-324,-240}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Pre pre7[nBoi](
+ final pre_u_start={true,false})
+ "Logical pre block"
+ annotation (Placement(transformation(extent={{-320,-140},{-300,-120}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Switch logSwi7[nBoi]
+ "Pass boiler setpoints for stage 3 after one stage change"
+ annotation (Placement(transformation(extent={{-230,-230},{-210,-210}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant con11[nBoi](
+ final k={true,true})
+ "Boiler setpoints for stage 3"
+ annotation (Placement(transformation(extent={{-270,-210},{-250,-190}})));
+
+ Buildings.Controls.OBC.CDL.Logical.FallingEdge falEdg6
+ "Falling edge detector"
+ annotation (Placement(transformation(extent={{-100,-180},{-80,-160}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Switch intSwi4
+ "Switch between stage 2 and stage 3 setpoints"
+ annotation (Placement(transformation(extent={{-230,-300},{-210,-280}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant conInt8(
+ final k=3)
+ "Stage 3 setpoint"
+ annotation (Placement(transformation(extent={{-270,-280},{-250,-260}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant conInt9(
+ final k=2)
+ "Stage 2 setpoint"
+ annotation (Placement(transformation(extent={{-380,-330},{-360,-310}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant conInt10[nSta](
+ final k={1,2,2})
+ "Stage typer vector"
+ annotation (Placement(transformation(extent={{-230,-190},{-210,-170}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Or or3
+ "Detect first triggering pulse and subsequent stage change completion signals"
+ annotation (Placement(transformation(extent={{-100,-220},{-80,-200}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Pulse booPul2[nBoi](
+ final width=fill(0.1/1800, nBoi),
+ final period=fill(1800, nBoi),
+ final shift=fill(1, nBoi))
+ "Boolean pulse to start initial stage change"
+ annotation (Placement(transformation(extent={{-380,-80},{-360,-60}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant con13(
+ final k=TMinSupNonConBoi + 1)
+ "Measured hot water supply temperature signal"
+ annotation (Placement(transformation(extent={{-340,-60},{-320,-40}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Pre pre8
+ "Logical pre block"
+ annotation (Placement(transformation(extent={{-50,-200},{-30,-180}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Pre pre9
+ "Logical pre block"
+ annotation (Placement(transformation(extent={{-38,-140},{-18,-120}})));
+
+ Buildings.Controls.OBC.CDL.Logical.FallingEdge falEdg7
+ "Falling edge detector"
+ annotation (Placement(transformation(extent={{-100,-140},{-80,-120}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Switch logSwi8[nBoi]
+ "Pass boiler setpoints for stage 1 and switch to setpoints for stage 2"
+ annotation (Placement(transformation(extent={{-310,-230},{-290,-210}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant con14[nBoi](
+ final k={true,false})
+ "Initial boiler setpoints for stage 1"
+ annotation (Placement(transformation(extent={{-344,-200},{-324,-180}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Switch intSwi5
+ "Switch between stage 1 and stage 2 setpoints"
+ annotation (Placement(transformation(extent={{-330,-310},{-310,-290}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant conInt11(
+ final k=1)
+ "Stage 1 setpoint"
+ annotation (Placement(transformation(extent={{-380,-290},{-360,-270}})));
+
+ Buildings.Controls.OBC.CDL.Logical.FallingEdge falEdg8
+ "Falling edge detector"
+ annotation (Placement(transformation(extent={{-174,-220},{-154,-200}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Latch lat5[nBoi]
+ "Hold true signal once first stage change is completed"
+ annotation (Placement(transformation(extent={{-70,-270},{-50,-250}})));
+
+ Buildings.Controls.OBC.CDL.Routing.BooleanScalarReplicator booRep2(
+ final nout=nBoi)
+ "Boolean replicator"
+ annotation (Placement(transformation(extent={{-110,-270},{-90,-250}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant con15[nBoi](
+ final k={false,true})
+ "Boiler setpoints for stage 2"
+ annotation (Placement(transformation(extent={{236,-260},{256,-240}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Pre pre10[nBoi](
+ final pre_u_start={true,false})
+ "Logical pre block"
+ annotation (Placement(transformation(extent={{260,-110},{280,-90}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Switch logSwi10[nBoi]
+ "Pass boiler setpoints for stage 3 after one stage change"
+ annotation (Placement(transformation(extent={{350,-230},{370,-210}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant con16[nBoi](
+ final k={true,true})
+ "Boiler setpoints for stage 3"
+ annotation (Placement(transformation(extent={{310,-210},{330,-190}})));
+
+ Buildings.Controls.OBC.CDL.Logical.FallingEdge falEdg9
+ "Falling edge detector"
+ annotation (Placement(transformation(extent={{480,-180},{500,-160}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Switch intSwi6
+ "Switch between stage 2 and stage 3 setpoints"
+ annotation (Placement(transformation(extent={{350,-300},{370,-280}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant conInt12(
+ final k=3)
+ "Stage 3 setpoint"
+ annotation (Placement(transformation(extent={{310,-280},{330,-260}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant conInt13(
+ final k=2)
+ "Stage 2 setpoint"
+ annotation (Placement(transformation(extent={{200,-330},{220,-310}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant conInt14[nSta](
+ final k={1,2,2})
+ "Stage typer vector"
+ annotation (Placement(transformation(extent={{350,-190},{370,-170}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Or or4
+ "Detect first triggering pulse and subsequent stage change completion signals"
+ annotation (Placement(transformation(extent={{470,-220},{490,-200}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Pulse booPul3[nBoi](
+ final width=fill(0.1/1800, nBoi),
+ final period=fill(1800, nBoi),
+ final shift=fill(1, nBoi))
+ "Boolean pulse to start initial stage change"
+ annotation (Placement(transformation(extent={{200,-80},{220,-60}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant con18(
+ final k=TMinSupNonConBoi - 1)
+ "Measured hot water supply temperature signal"
+ annotation (Placement(transformation(extent={{240,-60},{260,-40}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Pre pre11
+ "Logical pre block"
+ annotation (Placement(transformation(extent={{530,-200},{550,-180}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Pre pre12
+ "Logical pre block"
+ annotation (Placement(transformation(extent={{542,-140},{562,-120}})));
+
+ Buildings.Controls.OBC.CDL.Logical.FallingEdge falEdg10
+ "Falling edge detector"
+ annotation (Placement(transformation(extent={{480,-140},{500,-120}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Switch logSwi11[nBoi]
+ "Pass boiler setpoints for stage 1 and switch to setpoints for stage 2"
+ annotation (Placement(transformation(extent={{270,-230},{290,-210}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant con19[nBoi](
+ final k={true,false})
+ "Initial boiler setpoints for stage 1"
+ annotation (Placement(transformation(extent={{236,-200},{256,-180}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Switch intSwi7
+ "Switch between stage 1 and stage 2 setpoints"
+ annotation (Placement(transformation(extent={{250,-310},{270,-290}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant conInt15(
+ final k=1)
+ "Stage 1 setpoint"
+ annotation (Placement(transformation(extent={{200,-290},{220,-270}})));
+
+ Buildings.Controls.OBC.CDL.Logical.FallingEdge falEdg11
+ "Falling edge detector"
+ annotation (Placement(transformation(extent={{406,-220},{426,-200}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Latch lat7[nBoi]
+ "Hold true signal once first stage change is completed"
+ annotation (Placement(transformation(extent={{510,-270},{530,-250}})));
+
+ Buildings.Controls.OBC.CDL.Routing.BooleanScalarReplicator booRep3(
+ final nout=nBoi)
+ "Boolean replicator"
+ annotation (Placement(transformation(extent={{470,-270},{490,-250}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant con20[nBoi](
+ final k={false,true})
+ "Boiler setpoints for stage 2"
+ annotation (Placement(transformation(extent={{426,70},{446,90}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Pre pre13[nBoi](
+ final pre_u_start={true,false})
+ "Logical pre block"
+ annotation (Placement(transformation(extent={{460,200},{480,220}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Switch logSwi13[nBoi]
+ "Pass boiler setpoints for stage 3 after one stage change"
+ annotation (Placement(transformation(extent={{540,100},{560,120}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant con21[nBoi](
+ final k={true,true})
+ "Boiler setpoints for stage 3"
+ annotation (Placement(transformation(extent={{500,120},{520,140}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Switch intSwi8
+ "Switch between stage 2 and stage 3 setpoints"
+ annotation (Placement(transformation(extent={{540,30},{560,50}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant conInt16(
+ final k=3)
+ "Stage 3 setpoint"
+ annotation (Placement(transformation(extent={{500,50},{520,70}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant conInt17(
+ final k=2)
+ "Stage 2 setpoint"
+ annotation (Placement(transformation(extent={{390,0},{410,20}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant conInt18[nSta](
+ final k={1,1,1})
+ "Stage typer vector"
+ annotation (Placement(transformation(extent={{540,140},{560,160}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Or or5
+ "Detect first triggering pulse and subsequent stage change completion signals"
+ annotation (Placement(transformation(extent={{650,110},{670,130}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Pulse booPul4[nBoi](
+ final width=fill(0.1/1800, nBoi),
+ final period=fill(1800, nBoi),
+ final shift=fill(1, nBoi))
+ "Boolean pulse to start initial stage change"
+ annotation (Placement(transformation(extent={{390,250},{410,270}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant con23(
+ final k=VNom_flow)
+ "Calculated minimum flow rate signal"
+ annotation (Placement(transformation(extent={{580,280},{600,300}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Pre pre15
+ "Logical pre block"
+ annotation (Placement(transformation(extent={{700,210},{720,230}})));
+
+ Buildings.Controls.OBC.CDL.Logical.FallingEdge falEdg13
+ "Falling edge detector"
+ annotation (Placement(transformation(extent={{670,190},{690,210}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Switch logSwi14[nBoi]
+ "Pass boiler setpoints for stage 1 and switch to setpoints for stage 2"
+ annotation (Placement(transformation(extent={{460,100},{480,120}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant con24[nBoi](
+ final k={true,false})
+ "Initial boiler setpoints for stage 1"
+ annotation (Placement(transformation(extent={{426,130},{446,150}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Switch intSwi9
+ "Switch between stage 1 and stage 2 setpoints"
+ annotation (Placement(transformation(extent={{440,20},{460,40}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant conInt19(
+ final k=1)
+ "Stage 1 setpoint"
+ annotation (Placement(transformation(extent={{390,40},{410,60}})));
+
+ Buildings.Controls.OBC.CDL.Logical.FallingEdge falEdg14
+ "Falling edge detector"
+ annotation (Placement(transformation(extent={{596,110},{616,130}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Latch lat9[nBoi]
+ "Hold true signal once first stage change is completed"
+ annotation (Placement(transformation(extent={{700,60},{720,80}})));
+
+ Buildings.Controls.OBC.CDL.Routing.BooleanScalarReplicator booRep4(
+ final nout=nBoi)
+ "Boolean replicator"
+ annotation (Placement(transformation(extent={{650,60},{670,80}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant con17(
+ final k=1.1*VNom_flow)
+ "Calculated minimum flow rate signal"
+ annotation (Placement(transformation(extent={{540,260},{560,280}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Pre pre14
+ "Logical pre block"
+ annotation (Placement(transformation(extent={{-140,60},{-120,80}})));
+
+ Buildings.Controls.OBC.CDL.Discrete.UnitDelay uniDel1[nBoi](
+ final samplePeriod=fill(1, nBoi),
+ final y_start={1,0})
+ "Unit delay"
+ annotation (Placement(transformation(extent={{310,170},{330,190}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Pre pre16
+ "Logical pre block"
+ annotation (Placement(transformation(extent={{240,60},{260,80}})));
+
+ Buildings.Controls.OBC.CDL.Discrete.UnitDelay uniDel2[nBoi](
+ final samplePeriod=fill(1, nBoi),
+ final y_start={1,0})
+ "Unit delay"
+ annotation (Placement(transformation(extent={{700,170},{720,190}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Pre pre17
+ "Logical pre block"
+ annotation (Placement(transformation(extent={{620,60},{640,80}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Pre pre18
+ "Logical pre block"
+ annotation (Placement(transformation(extent={{-150,-270},{-130,-250}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Pre pre19
+ "Logical pre block"
+ annotation (Placement(transformation(extent={{440,-270},{460,-250}})));
+
+ Buildings.Controls.OBC.CDL.Logical.FallingEdge falEdg1
+ "Falling edge detector"
+ annotation (Placement(transformation(extent={{-90,210},{-70,230}})));
+
+equation
+ connect(con2.y, logSwi1.u1) annotation (Line(points={{-238,130},{-230,130},{
+ -230,118},{-222,118}},
+ color={255,0,255}));
+
+ connect(logSwi1.y, upProCon.uBoiSet) annotation (Line(points={{-198,110},{-180,
+ 110},{-180,189},{-162,189}}, color={255,0,255}));
+
+ connect(upProCon.yPumChaPro, yPumChaPro.u) annotation (Line(points={{-138,178},
+ {-130,178},{-130,160},{-122,160}}, color={255,0,255}));
+
+ connect(yPumChaPro.y, falEdg.u)
+ annotation (Line(points={{-98,160},{-92,160}}, color={255,0,255}));
+
+ connect(intSwi.y, upProCon.uStaSet) annotation (Line(points={{-198,40},{-172,40},
+ {-172,180},{-162,180}}, color={255,127,0}));
+
+ connect(conInt.y, intSwi.u1) annotation (Line(points={{-238,60},{-230,60},{
+ -230,48},{-222,48}},
+ color={255,127,0}));
+
+ connect(conInt2.y, upProCon.uStaTyp) annotation (Line(points={{-198,150},{-190,
+ 150},{-190,183},{-162,183}}, color={255,127,0}));
+
+ connect(con3.y, upProCon.THotWatSupSet) annotation (Line(points={{-158,290},{
+ -150,290},{-150,270},{-170,270},{-170,201},{-162,201}}, color={0,0,
+ 127}));
+
+ connect(falEdg.y, pre1.u) annotation (Line(points={{-68,160},{-32,160}},
+ color={255,0,255}));
+
+ connect(pre1.y, upProCon.uPumChaPro) annotation (Line(points={{-8,160},{-6,160},
+ {-6,140},{-168,140},{-168,171},{-162,171}},
+ color={255,0,255}));
+
+ connect(upProCon.yStaChaPro,yStaChaPro. u) annotation (Line(points={{-138,198},
+ {-126,198},{-126,220},{-122,220}}, color={255,0,255}));
+
+ connect(con1.y, logSwi2.u3) annotation (Line(points={{-308,80},{-300,80},{-300,
+ 102},{-292,102}}, color={255,0,255}));
+
+ connect(con4.y, logSwi2.u1) annotation (Line(points={{-308,140},{-300,140},{-300,
+ 118},{-292,118}}, color={255,0,255}));
+
+ connect(booPul.y, logSwi2.u2) annotation (Line(points={{-348,260},{-340,260},{
+ -340,110},{-292,110}}, color={255,0,255}));
+
+ connect(logSwi2.y, logSwi1.u3) annotation (Line(points={{-268,110},{-260,110},
+ {-260,102},{-222,102}}, color={255,0,255}));
+
+ connect(conInt1.y, intSwi1.u3) annotation (Line(points={{-346,10},{-330,10},{-330,
+ 22},{-322,22}}, color={255,127,0}));
+
+ connect(conInt3.y, intSwi1.u1) annotation (Line(points={{-348,50},{-330,50},{-330,
+ 38},{-322,38}}, color={255,127,0}));
+
+ connect(intSwi1.y, intSwi.u3) annotation (Line(points={{-298,30},{-230,30},{-230,
+ 32},{-222,32}}, color={255,127,0}));
+
+ connect(booPul[1].y, intSwi1.u2) annotation (Line(points={{-348,260},{-340,260},
+ {-340,30},{-322,30}}, color={255,0,255}));
+
+ connect(upProCon.yBoi, pre3.u) annotation (Line(points={{-138,202},{-130,202},
+ {-130,250},{-314,250},{-314,210},{-302,210}}, color={255,0,255}));
+
+ connect(booPul[1].y, falEdg2.u) annotation (Line(points={{-348,260},{-340,260},
+ {-340,98},{-168,98},{-168,120},{-142,120}}, color={255,0,255}));
+
+ connect(falEdg2.y, or2.u1)
+ annotation (Line(points={{-118,120},{-112,120}}, color={255,0,255}));
+
+ connect(booRep.y, lat1.u)
+ annotation (Line(points={{-88,70},{-72,70}}, color={255,0,255}));
+
+ connect(lat1.y, logSwi1.u2) annotation (Line(points={{-48,70},{-40,70},{-40,50},
+ {-160,50},{-160,74},{-226,74},{-226,110},{-222,110}}, color={255,
+ 0,255}));
+
+ connect(lat1[1].y, intSwi.u2) annotation (Line(points={{-48,70},{-40,70},{-40,
+ 50},{-160,50},{-160,74},{-226,74},{-226,40},{-222,40}}, color={255,0,
+ 255}));
+
+ connect(con1[1].y, lat1[1].clr) annotation (Line(points={{-308,80},{-150,80},{
+ -150,54},{-80,54},{-80,64},{-72,64}}, color={255,0,255}));
+
+ connect(con1[1].y, lat1[2].clr) annotation (Line(points={{-308,80},{-150,80},{
+ -150,54},{-80,54},{-80,64},{-72,64}}, color={255,0,255}));
+
+ connect(con6.y,logSwi4. u1) annotation (Line(points={{132,130},{140,130},{140,
+ 118},{148,118}}, color={255,0,255}));
+
+ connect(logSwi4.y, upProCon1.uBoiSet) annotation (Line(points={{172,110},{190,
+ 110},{190,189},{208,189}}, color={255,0,255}));
+
+ connect(upProCon1.yPumChaPro, yPumChaPro1.u) annotation (Line(points={{232,178},
+ {240,178},{240,160},{248,160}}, color={255,0,255}));
+
+ connect(yPumChaPro1.y, falEdg3.u)
+ annotation (Line(points={{272,160},{278,160}}, color={255,0,255}));
+
+ connect(intSwi2.y, upProCon1.uStaSet) annotation (Line(points={{172,40},{198,40},
+ {198,180},{208,180}}, color={255,127,0}));
+
+ connect(conInt4.y, intSwi2.u1) annotation (Line(points={{132,60},{140,60},{140,
+ 48},{148,48}}, color={255,127,0}));
+
+ connect(conInt6.y, upProCon1.uStaTyp) annotation (Line(points={{172,150},{180,
+ 150},{180,183},{208,183}}, color={255,127,0}));
+
+ connect(or1.y, upProCon1.uStaUpPro) annotation (Line(points={{292,120},{310,120},
+ {310,104},{194,104},{194,186},{208,186}}, color={255,0,255}));
+
+ connect(con8.y, upProCon1.THotWatSupSet) annotation (Line(points={{212,290},{
+ 220,290},{220,270},{200,270},{200,201},{208,201}}, color={0,0,127}));
+
+ connect(falEdg3.y, pre5.u) annotation (Line(points={{302,160},{338,160}},
+ color={255,0,255}));
+
+ connect(pre5.y, upProCon1.uPumChaPro) annotation (Line(points={{362,160},{364,
+ 160},{364,120},{320,120},{320,140},{202,140},{202,171},{208,171}},
+ color={255,0,255}));
+ connect(upProCon1.yStaChaPro, yStaChaPro1.u) annotation (Line(points={{232,198},
+ {244,198},{244,200},{248,200}}, color={255,0,255}));
+
+ connect(yStaChaPro1.y, falEdg4.u)
+ annotation (Line(points={{272,200},{278,200}}, color={255,0,255}));
+
+ connect(con5.y,logSwi5. u3) annotation (Line(points={{58,80},{64,80},{64,102},
+ {68,102}}, color={255,0,255}));
+
+ connect(con9.y,logSwi5. u1) annotation (Line(points={{58,140},{64,140},{64,118},
+ {68,118}}, color={255,0,255}));
+
+ connect(booPul1.y, logSwi5.u2) annotation (Line(points={{22,260},{30,260},{30,
+ 110},{68,110}}, color={255,0,255}));
+
+ connect(logSwi5.y,logSwi4. u3) annotation (Line(points={{92,110},{98,110},{98,
+ 102},{148,102}}, color={255,0,255}));
+
+ connect(conInt5.y,intSwi3. u3) annotation (Line(points={{22,10},{40,10},{40,22},
+ {48,22}}, color={255,127,0}));
+
+ connect(conInt7.y,intSwi3. u1) annotation (Line(points={{22,50},{40,50},{40,38},
+ {48,38}}, color={255,127,0}));
+
+ connect(intSwi3.y, intSwi2.u3) annotation (Line(points={{72,30},{140,30},{140,
+ 32},{148,32}}, color={255,127,0}));
+
+ connect(booPul1[1].y, intSwi3.u2) annotation (Line(points={{22,260},{30,260},{
+ 30,30},{48,30}}, color={255,0,255}));
+
+ connect(upProCon1.yBoi, pre4.u) annotation (Line(points={{232,202},{240,202},{
+ 240,230},{60,230},{60,210},{68,210}}, color={255,0,255}));
+
+ connect(falEdg4.y,pre6. u)
+ annotation (Line(points={{302,200},{306,200},{306,220},{308,220}},
+ color={255,0,255}));
+
+ connect(booPul1[1].y, falEdg5.u) annotation (Line(points={{22,260},{30,260},{30,
+ 96},{202,96},{202,120},{228,120}}, color={255,0,255}));
+
+ connect(falEdg5.y,or1. u1)
+ annotation (Line(points={{252,120},{268,120}}, color={255,0,255}));
+
+ connect(booRep1.y, lat3.u)
+ annotation (Line(points={{292,70},{308,70}}, color={255,0,255}));
+
+ connect(lat3.y,logSwi4. u2) annotation (Line(points={{332,70},{340,70},{340,50},
+ {210,50},{210,74},{144,74},{144,110},{148,110}}, color={255,
+ 0,255}));
+ connect(lat3[1].y, intSwi2.u2) annotation (Line(points={{332,70},{340,70},{340,
+ 50},{210,50},{210,74},{144,74},{144,40},{148,40}}, color={255,0,255}));
+
+ connect(con5[1].y,lat3 [1].clr) annotation (Line(points={{58,80},{220,80},{220,
+ 54},{300,54},{300,64},{308,64}}, color={255,0,255}));
+
+ connect(con5[1].y,lat3 [2].clr) annotation (Line(points={{58,80},{220,80},{220,
+ 54},{300,54},{300,64},{308,64}}, color={255,0,255}));
+
+ connect(con11.y, logSwi7.u1) annotation (Line(points={{-248,-200},{-240,-200},
+ {-240,-212},{-232,-212}}, color={255,0,255}));
+
+ connect(logSwi7.y, upProCon2.uBoiSet) annotation (Line(points={{-208,-220},{-190,
+ -220},{-190,-151},{-172,-151}}, color={255,0,255}));
+
+ connect(upProCon2.yPumChaPro, yPumChaPro2.u) annotation (Line(points={{-148,-162},
+ {-140,-162},{-140,-170},{-132,-170}}, color={255,0,255}));
+
+ connect(yPumChaPro2.y, falEdg6.u)
+ annotation (Line(points={{-108,-170},{-102,-170}}, color={255,0,255}));
+
+ connect(intSwi4.y, upProCon2.uStaSet) annotation (Line(points={{-208,-290},{-182,
+ -290},{-182,-160},{-172,-160}}, color={255,127,0}));
+
+ connect(conInt8.y, intSwi4.u1) annotation (Line(points={{-248,-270},{-240,-270},
+ {-240,-282},{-232,-282}}, color={255,127,0}));
+
+ connect(conInt10.y, upProCon2.uStaTyp) annotation (Line(points={{-208,-180},{-200,
+ -180},{-200,-157},{-172,-157}}, color={255,127,0}));
+
+ connect(or3.y, upProCon2.uStaUpPro) annotation (Line(points={{-78,-210},{-70,-210},
+ {-70,-226},{-186,-226},{-186,-154},{-172,-154}}, color={255,0,255}));
+
+ connect(con13.y, upProCon2.THotWatSupSet) annotation (Line(points={{-318,-50},
+ {-180,-50},{-180,-139},{-172,-139}}, color={0,0,127}));
+
+ connect(falEdg6.y, pre8.u) annotation (Line(points={{-78,-170},{-56,-170},{-56,
+ -190},{-52,-190}}, color={255,0,255}));
+
+ connect(pre8.y, upProCon2.uPumChaPro) annotation (Line(points={{-28,-190},{-16,
+ -190},{-16,-210},{-60,-210},{-60,-188},{-178,-188},{-178,-169},{-172,-169}},
+ color={255,0,255}));
+
+ connect(upProCon2.yStaChaPro, yStaChaPro2.u) annotation (Line(points={{-148,-142},
+ {-136,-142},{-136,-130},{-132,-130}}, color={255,0,255}));
+
+ connect(yStaChaPro2.y, falEdg7.u)
+ annotation (Line(points={{-108,-130},{-102,-130}}, color={255,0,255}));
+
+ connect(con10.y, logSwi8.u3) annotation (Line(points={{-322,-250},{-316,-250},
+ {-316,-228},{-312,-228}}, color={255,0,255}));
+
+ connect(con14.y, logSwi8.u1) annotation (Line(points={{-322,-190},{-316,-190},
+ {-316,-212},{-312,-212}}, color={255,0,255}));
+
+ connect(booPul2.y, logSwi8.u2) annotation (Line(points={{-358,-70},{-350,-70},
+ {-350,-220},{-312,-220}}, color={255,0,255}));
+
+ connect(logSwi8.y,logSwi7. u3) annotation (Line(points={{-288,-220},{-282,-220},
+ {-282,-228},{-232,-228}},
+ color={255,0,255}));
+ connect(conInt9.y,intSwi5. u3) annotation (Line(points={{-358,-320},{-340,-320},
+ {-340,-308},{-332,-308}},
+ color={255,127,0}));
+
+ connect(conInt11.y, intSwi5.u1) annotation (Line(points={{-358,-280},{-340,-280},
+ {-340,-292},{-332,-292}}, color={255,127,0}));
+
+ connect(intSwi5.y, intSwi4.u3) annotation (Line(points={{-308,-300},{-240,-300},
+ {-240,-298},{-232,-298}}, color={255,127,0}));
+
+ connect(booPul2[1].y, intSwi5.u2) annotation (Line(points={{-358,-70},{-350,-70},
+ {-350,-300},{-332,-300}}, color={255,0,255}));
+
+ connect(upProCon2.yBoi, pre7.u) annotation (Line(points={{-148,-138},{-140,-138},
+ {-140,-110},{-332,-110},{-332,-130},{-322,-130}},
+ color={255,0,255}));
+
+ connect(falEdg7.y,pre9. u)
+ annotation (Line(points={{-78,-130},{-40,-130}},
+ color={255,0,255}));
+
+ connect(booPul2[1].y, falEdg8.u) annotation (Line(points={{-358,-70},{-350,-70},
+ {-350,-234},{-178,-234},{-178,-210},{-176,-210}}, color={255,0,255}));
+
+ connect(falEdg8.y,or3. u1)
+ annotation (Line(points={{-152,-210},{-102,-210}},
+ color={255,0,255}));
+
+ connect(booRep2.y, lat5.u)
+ annotation (Line(points={{-88,-260},{-72,-260}}, color={255,0,255}));
+
+ connect(lat5.y,logSwi7. u2) annotation (Line(points={{-48,-260},{-30,-260},{-30,
+ -280},{-170,-280},{-170,-256},{-236,-256},{-236,-220},{-232,-220}},
+ color={255,
+ 0,255}));
+ connect(lat5[1].y, intSwi4.u2) annotation (Line(points={{-48,-260},{-30,-260},
+ {-30,-280},{-170,-280},{-170,-256},{-236,-256},{-236,-290},{-232,-290}},
+ color={255,0,255}));
+ connect(con10[1].y, lat5[1].clr) annotation (Line(points={{-322,-250},{-160,-250},
+ {-160,-276},{-80,-276},{-80,-266},{-72,-266}}, color={255,0,255}));
+
+ connect(con10[1].y, lat5[2].clr) annotation (Line(points={{-322,-250},{-160,-250},
+ {-160,-276},{-80,-276},{-80,-266},{-72,-266}}, color={255,0,255}));
+
+ connect(con16.y, logSwi10.u1) annotation (Line(points={{332,-200},{340,-200},{
+ 340,-212},{348,-212}}, color={255,0,255}));
+
+ connect(logSwi10.y, upProCon3.uBoiSet) annotation (Line(points={{372,-220},{390,
+ -220},{390,-153},{408,-153}}, color={255,0,255}));
+
+ connect(upProCon3.yPumChaPro, yPumChaPro3.u) annotation (Line(points={{432,-164},
+ {440,-164},{440,-170},{448,-170}}, color={255,0,255}));
+
+ connect(yPumChaPro3.y, falEdg9.u)
+ annotation (Line(points={{472,-170},{478,-170}}, color={255,0,255}));
+
+ connect(intSwi6.y, upProCon3.uStaSet) annotation (Line(points={{372,-290},{398,
+ -290},{398,-162},{408,-162}}, color={255,127,0}));
+
+ connect(conInt12.y, intSwi6.u1) annotation (Line(points={{332,-270},{340,-270},
+ {340,-282},{348,-282}}, color={255,127,0}));
+
+ connect(conInt14.y, upProCon3.uStaTyp) annotation (Line(points={{372,-180},{380,
+ -180},{380,-159},{408,-159}}, color={255,127,0}));
+
+ connect(or4.y, upProCon3.uStaUpPro) annotation (Line(points={{492,-210},{500,-210},
+ {500,-226},{394,-226},{394,-156},{408,-156}}, color={255,0,255}));
+
+ connect(con18.y, upProCon3.THotWatSupSet) annotation (Line(points={{262,-50},
+ {400,-50},{400,-141},{408,-141}}, color={0,0,127}));
+
+ connect(falEdg9.y, pre11.u) annotation (Line(points={{502,-170},{524,-170},{524,
+ -190},{528,-190}}, color={255,0,255}));
+
+ connect(pre11.y, upProCon3.uPumChaPro) annotation (Line(points={{552,-190},{564,
+ -190},{564,-210},{510,-210},{510,-188},{402,-188},{402,-171},{408,-171}},
+ color={255,0,255}));
+ connect(upProCon3.yStaChaPro, yStaChaPro3.u) annotation (Line(points={{432,-144},
+ {441,-144},{441,-130},{448,-130}}, color={255,0,255}));
+
+ connect(yStaChaPro3.y, falEdg10.u)
+ annotation (Line(points={{472,-130},{478,-130}}, color={255,0,255}));
+
+ connect(con15.y, logSwi11.u3) annotation (Line(points={{258,-250},{264,-250},{
+ 264,-228},{268,-228}},
+ color={255,0,255}));
+
+ connect(con19.y, logSwi11.u1) annotation (Line(points={{258,-190},{264,-190},{
+ 264,-212},{268,-212}},
+ color={255,0,255}));
+
+ connect(booPul3.y, logSwi11.u2) annotation (Line(points={{222,-70},{230,-70},{
+ 230,-220},{268,-220}},
+ color={255,0,255}));
+
+ connect(logSwi11.y, logSwi10.u3) annotation (Line(points={{292,-220},{298,-220},
+ {298,-228},{348,-228}},color={255,0,255}));
+
+ connect(conInt13.y, intSwi7.u3) annotation (Line(points={{222,-320},{240,-320},
+ {240,-308},{248,-308}},
+ color={255,127,0}));
+
+ connect(conInt15.y, intSwi7.u1) annotation (Line(points={{222,-280},{240,-280},
+ {240,-292},{248,-292}},
+ color={255,127,0}));
+
+ connect(intSwi7.y, intSwi6.u3) annotation (Line(points={{272,-300},{340,-300},
+ {340,-298},{348,-298}},color={255,127,0}));
+
+ connect(booPul3[1].y, intSwi7.u2) annotation (Line(points={{222,-70},{230,-70},
+ {230,-300},{248,-300}},
+ color={255,0,255}));
+
+ connect(upProCon3.yBoi, pre10.u) annotation (Line(points={{432,-140},{440,-140},
+ {440,-80},{250,-80},{250,-100},{258,-100}}, color={255,0,255}));
+
+ connect(falEdg10.y, pre12.u)
+ annotation (Line(points={{502,-130},{540,-130}}, color={255,0,255}));
+
+ connect(booPul3[1].y, falEdg11.u) annotation (Line(points={{222,-70},{230,-70},
+ {230,-234},{402,-234},{402,-210},{404,-210}},
+ color={255,0,255}));
+
+ connect(falEdg11.y, or4.u1)
+ annotation (Line(points={{428,-210},{468,-210}}, color={255,0,255}));
+
+ connect(booRep3.y, lat7.u)
+ annotation (Line(points={{492,-260},{508,-260}}, color={255,0,255}));
+
+ connect(lat7.y, logSwi10.u2) annotation (Line(points={{532,-260},{540,-260},{540,
+ -280},{410,-280},{410,-256},{344,-256},{344,-220},{348,-220}}, color={
+ 255,0,255}));
+
+ connect(lat7[1].y, intSwi6.u2) annotation (Line(points={{532,-260},{540,-260},
+ {540,-280},{410,-280},{410,-256},{344,-256},{344,-290},{348,-290}},
+ color={255,0,255}));
+ connect(con15[1].y, lat7[1].clr) annotation (Line(points={{258,-250},{420,-250},
+ {420,-276},{500,-276},{500,-266},{508,-266}}, color={255,0,255}));
+
+ connect(con15[1].y, lat7[2].clr) annotation (Line(points={{258,-250},{420,-250},
+ {420,-276},{500,-276},{500,-266},{508,-266}}, color={255,0,255}));
+
+ connect(con21.y, logSwi13.u1) annotation (Line(points={{522,130},{530,130},{530,
+ 118},{538,118}}, color={255,0,255}));
+
+ connect(logSwi13.y, upProCon4.uBoiSet) annotation (Line(points={{562,110},{580,
+ 110},{580,187},{598,187}}, color={255,0,255}));
+
+ connect(intSwi8.y, upProCon4.uStaSet) annotation (Line(points={{562,40},{588,40},
+ {588,178},{598,178}}, color={255,127,0}));
+
+ connect(conInt16.y, intSwi8.u1) annotation (Line(points={{522,60},{530,60},{530,
+ 48},{538,48}}, color={255,127,0}));
+
+ connect(conInt18.y, upProCon4.uStaTyp) annotation (Line(points={{562,150},{570,
+ 150},{570,181},{598,181}}, color={255,127,0}));
+
+ connect(or5.y, upProCon4.uStaUpPro) annotation (Line(points={{672,120},{680,120},
+ {680,104},{584,104},{584,184},{598,184}}, color={255,0,255}));
+
+ connect(upProCon4.yStaChaPro, yStaChaPro4.u) annotation (Line(points={{622,196},
+ {632,196},{632,200},{638,200}}, color={255,0,255}));
+
+ connect(yStaChaPro4.y, falEdg13.u)
+ annotation (Line(points={{662,200},{668,200}}, color={255,0,255}));
+
+ connect(con20.y, logSwi14.u3) annotation (Line(points={{448,80},{454,80},{454,
+ 102},{458,102}}, color={255,0,255}));
+
+ connect(con24.y, logSwi14.u1) annotation (Line(points={{448,140},{454,140},{454,
+ 118},{458,118}}, color={255,0,255}));
+
+ connect(booPul4.y, logSwi14.u2) annotation (Line(points={{412,260},{420,260},{
+ 420,110},{458,110}}, color={255,0,255}));
+
+ connect(logSwi14.y, logSwi13.u3) annotation (Line(points={{482,110},{488,110},
+ {488,102},{538,102}}, color={255,0,255}));
+
+ connect(conInt17.y, intSwi9.u3) annotation (Line(points={{412,10},{430,10},{430,
+ 22},{438,22}}, color={255,127,0}));
+
+ connect(conInt19.y, intSwi9.u1) annotation (Line(points={{412,50},{430,50},{430,
+ 38},{438,38}}, color={255,127,0}));
+
+ connect(intSwi9.y, intSwi8.u3) annotation (Line(points={{462,30},{530,30},{530,
+ 32},{538,32}}, color={255,127,0}));
+
+ connect(booPul4[1].y, intSwi9.u2) annotation (Line(points={{412,260},{420,260},
+ {420,30},{438,30}}, color={255,0,255}));
+
+ connect(upProCon4.yBoi, pre13.u) annotation (Line(points={{622,200},{630,200},
+ {630,230},{450,230},{450,210},{458,210}}, color={255,0,255}));
+
+ connect(falEdg13.y, pre15.u)
+ annotation (Line(points={{692,200},{696,200},{696,220},{698,220}},
+ color={255,0,255}));
+
+ connect(booPul4[1].y, falEdg14.u) annotation (Line(points={{412,260},{420,260},
+ {420,96},{592,96},{592,120},{594,120}}, color={255,0,255}));
+
+ connect(falEdg14.y, or5.u1)
+ annotation (Line(points={{618,120},{648,120}}, color={255,0,255}));
+
+ connect(booRep4.y, lat9.u)
+ annotation (Line(points={{672,70},{698,70}}, color={255,0,255}));
+
+ connect(lat9.y, logSwi13.u2) annotation (Line(points={{722,70},{740,70},{740,50},
+ {600,50},{600,74},{534,74},{534,110},{538,110}}, color={255,0,255}));
+
+ connect(lat9[1].y, intSwi8.u2) annotation (Line(points={{722,70},{740,70},{740,
+ 50},{600,50},{600,74},{534,74},{534,40},{538,40}}, color={255,0,255}));
+
+ connect(con20[1].y, lat9[1].clr) annotation (Line(points={{448,80},{610,80},{610,
+ 54},{680,54},{680,64},{698,64}}, color={255,0,255}));
+
+ connect(con20[1].y, lat9[2].clr) annotation (Line(points={{448,80},{610,80},{610,
+ 54},{680,54},{680,64},{698,64}}, color={255,0,255}));
+
+ connect(con23.y, upProCon4.VMinHotWatSet_flow) annotation (Line(points={{602,290},
+ {610,290},{610,268},{590,268},{590,203},{598,203}}, color={0,0,
+ 127}));
+
+ connect(booPul[1].y, upProCon.uPlaEna) annotation (Line(points={{-348,260},{-234,
+ 260},{-234,240},{-184,240},{-184,177},{-162,177}}, color={255,0,
+ 255}));
+ connect(booPul1[1].y, upProCon1.uPlaEna) annotation (Line(points={{22,260},{186,
+ 260},{186,177},{208,177}}, color={255,0,255}));
+ connect(booPul4[1].y, upProCon4.uPlaEna) annotation (Line(points={{412,260},{520,
+ 260},{520,254},{574,254},{574,175},{598,175}}, color={255,0,255}));
+ connect(booPul2[1].y, upProCon2.uPlaEna) annotation (Line(points={{-358,-70},{
+ -350,-70},{-350,-174},{-236,-174},{-236,-163},{-172,-163}}, color={
+ 255,0,255}));
+ connect(booPul3[1].y, upProCon3.uPlaEna) annotation (Line(points={{222,-70},{230,
+ -70},{230,-165},{408,-165}}, color={255,0,255}));
+ connect(pre3.y, upProCon.uBoi) annotation (Line(points={{-278,210},{-180,210},
+ {-180,193},{-162,193}}, color={255,0,255}));
+ connect(upProCon.yHotWatIsoVal, uniDel.u) annotation (Line(points={{-138,194},
+ {-126,194},{-126,180},{-62,180}}, color={0,0,127}));
+ connect(uniDel.y, upProCon.uHotWatIsoVal) annotation (Line(points={{-38,180},{
+ -30,180},{-30,240},{-176,240},{-176,197},{-162,197}}, color={0,0,127}));
+ connect(pre2.y, upProCon.uStaChaPro) annotation (Line(points={{-38,220},{0,220},
+ {0,100},{-184,100},{-184,174},{-162,174}}, color={255,0,255}));
+ connect(booRep.u, pre14.y)
+ annotation (Line(points={{-112,70},{-118,70}}, color={255,0,255}));
+ connect(pre2.y, pre14.u) annotation (Line(points={{-38,220},{0,220},{0,100},{-146,
+ 100},{-146,70},{-142,70}}, color={255,0,255}));
+ connect(pre14.y, or2.u2) annotation (Line(points={{-118,70},{-116,70},{-116,112},
+ {-112,112}}, color={255,0,255}));
+ connect(pre4.y, upProCon1.uBoi) annotation (Line(points={{92,210},{204,210},{204,
+ 193},{208,193}}, color={255,0,255}));
+ connect(upProCon1.yHotWatIsoVal, uniDel1.u) annotation (Line(points={{232,194},
+ {240,194},{240,180},{308,180}}, color={0,0,127}));
+ connect(uniDel1.y, upProCon1.uHotWatIsoVal) annotation (Line(points={{332,180},
+ {340,180},{340,240},{194,240},{194,197},{208,197}}, color={0,0,127}));
+ connect(pre6.y, upProCon1.uStaChaPro) annotation (Line(points={{332,220},{370,
+ 220},{370,100},{186,100},{186,174},{208,174}}, color={255,0,255}));
+ connect(pre16.y, booRep1.u)
+ annotation (Line(points={{262,70},{268,70}}, color={255,0,255}));
+ connect(pre16.y, or1.u2) annotation (Line(points={{262,70},{264,70},{264,112},
+ {268,112}}, color={255,0,255}));
+ connect(pre6.y, pre16.u) annotation (Line(points={{332,220},{370,220},{370,100},
+ {230,100},{230,70},{238,70}}, color={255,0,255}));
+ connect(pre13.y, upProCon4.uBoi) annotation (Line(points={{482,210},{588,210},
+ {588,191},{598,191}}, color={255,0,255}));
+ connect(upProCon4.yHotWatIsoVal, uniDel2.u) annotation (Line(points={{622,192},
+ {632,192},{632,180},{698,180}}, color={0,0,127}));
+ connect(uniDel2.y, upProCon4.uHotWatIsoVal) annotation (Line(points={{722,180},
+ {730,180},{730,160},{590,160},{590,195},{598,195}}, color={0,0,127}));
+ connect(pre15.y, upProCon4.uStaChaPro) annotation (Line(points={{722,220},{760,
+ 220},{760,100},{574,100},{574,172},{598,172}}, color={255,0,255}));
+ connect(booRep4.u, pre17.y)
+ annotation (Line(points={{648,70},{642,70}}, color={255,0,255}));
+ connect(pre15.y, pre17.u) annotation (Line(points={{722,220},{760,220},{760,100},
+ {614,100},{614,70},{618,70}}, color={255,0,255}));
+ connect(pre17.y, or5.u2) annotation (Line(points={{642,70},{644,70},{644,112},
+ {648,112}}, color={255,0,255}));
+ connect(pre7.y, upProCon2.uBoi) annotation (Line(points={{-298,-130},{-186,-130},
+ {-186,-147},{-172,-147}}, color={255,0,255}));
+ connect(pre9.y, upProCon2.uStaChaPro) annotation (Line(points={{-16,-130},{-10,
+ -130},{-10,-230},{-196,-230},{-196,-166},{-172,-166}}, color={255,0,255}));
+ connect(pre18.y, booRep2.u)
+ annotation (Line(points={{-128,-260},{-112,-260}}, color={255,0,255}));
+ connect(pre9.y, pre18.u) annotation (Line(points={{-16,-130},{-10,-130},{-10,-230},
+ {-156,-230},{-156,-260},{-152,-260}}, color={255,0,255}));
+ connect(pre18.y, or3.u2) annotation (Line(points={{-128,-260},{-120,-260},{-120,
+ -218},{-102,-218}}, color={255,0,255}));
+ connect(pre10.y, upProCon3.uBoi) annotation (Line(points={{282,-100},{396,-100},
+ {396,-149},{408,-149}}, color={255,0,255}));
+ connect(pre12.y, upProCon3.uStaChaPro) annotation (Line(points={{564,-130},{570,
+ -130},{570,-230},{386,-230},{386,-168},{408,-168}}, color={255,0,255}));
+ connect(pre19.y, booRep3.u)
+ annotation (Line(points={{462,-260},{468,-260}}, color={255,0,255}));
+ connect(pre19.y, or4.u2) annotation (Line(points={{462,-260},{466,-260},{466,-218},
+ {468,-218}}, color={255,0,255}));
+ connect(pre12.y, pre19.u) annotation (Line(points={{564,-130},{570,-130},{570,
+ -230},{430,-230},{430,-260},{438,-260}}, color={255,0,255}));
+
+ connect(falEdg1.y, pre2.u)
+ annotation (Line(points={{-68,220},{-62,220}}, color={255,0,255}));
+ connect(yStaChaPro.y, falEdg1.u)
+ annotation (Line(points={{-98,220},{-92,220}}, color={255,0,255}));
+ connect(or2.y, upProCon.uStaUpPro) annotation (Line(points={{-88,120},{-80,120},
+ {-80,104},{-176,104},{-176,186},{-162,186}}, color={255,0,255}));
+ connect(con17.y, upProCon4.VHotWat_flow) annotation (Line(points={{562,270},{
+ 580,270},{580,207},{598,207}}, color={0,0,127}));
+annotation (
+ experiment(
+ StopTime=900,
+ Interval=1,
+ Tolerance=1e-06),
+ __Dymola_Commands(file="modelica://Buildings/Resources/Scripts/Dymola/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Staging/Processes/Validation/Up.mos"
+ "Simulate and plot"),
+ Documentation(info="
+
+This example validates
+
+Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Staging.Processes.Up.
+
+", revisions="
+
+-
+July 19, 2020 by Karthik Devaprasad:
+First implementation.
+
+
+"),
+Icon(coordinateSystem(extent={{-100,-100},{100,100}}),
+ graphics={
+ Ellipse(lineColor = {75,138,73},
+ fillColor={255,255,255},
+ fillPattern = FillPattern.Solid,
+ extent = {{-100,-100},{100,100}}),
+ Polygon(lineColor = {0,0,255},
+ fillColor = {75,138,73},
+ pattern = LinePattern.None,
+ fillPattern = FillPattern.Solid,
+ points = {{-36,60},{64,0},{-36,-60},{-36,60}})}),Diagram(
+ coordinateSystem(preserveAspectRatio=false, extent={{-380,-340},{780,340}})));
+end Up;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Staging/Processes/Validation/package.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Staging/Processes/Validation/package.mo
new file mode 100644
index 00000000000..b24d6702592
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Staging/Processes/Validation/package.mo
@@ -0,0 +1,38 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Staging.Processes;
+package Validation "Collection of validation models"
+
+
+annotation (preferredView="info", Documentation(info="
+
+This package contains validation models for the classes in
+
+Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Staging.Processes.
+
+
+Note that most validation models contain simple input data
+which may not be realistic, but for which the correct
+output can be obtained through an analytic solution.
+The examples plot various outputs, which have been verified against these
+solutions. These model outputs are stored as reference data and
+used for continuous validation whenever models in the library change.
+
+"),
+ Icon(graphics={
+ Rectangle(
+ lineColor={200,200,200},
+ fillColor={248,248,248},
+ fillPattern=FillPattern.HorizontalCylinder,
+ extent={{-100.0,-100.0},{100.0,100.0}},
+ radius=25.0),
+ Polygon(
+ origin={8.0,14.0},
+ lineColor={78,138,73},
+ fillColor={78,138,73},
+ pattern=LinePattern.None,
+ fillPattern=FillPattern.Solid,
+ points={{-58.0,46.0},{42.0,-14.0},{-58.0,-74.0},{-58.0,46.0}}),
+ Rectangle(
+ lineColor={128,128,128},
+ extent={{-100.0,-100.0},{100.0,100.0}},
+ radius=25.0)}));
+end Validation;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Staging/Processes/Validation/package.order b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Staging/Processes/Validation/package.order
new file mode 100644
index 00000000000..c33e6f176dc
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Staging/Processes/Validation/package.order
@@ -0,0 +1,2 @@
+Down
+Up
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Staging/Processes/package.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Staging/Processes/package.mo
new file mode 100644
index 00000000000..b85eaa4a53c
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Staging/Processes/package.mo
@@ -0,0 +1,45 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Staging;
+package Processes "Package of sequences for controlling devices when there is a boiler stage change command"
+
+
+ annotation (preferredView="info", Documentation(info="
+
+This package contains sequences for controlling devices when there is stage-up
+or stage-down command.
+
+"),
+Icon(graphics={
+ Rectangle(
+ lineColor={200,200,200},
+ fillColor={248,248,248},
+ fillPattern=FillPattern.HorizontalCylinder,
+ extent={{-100.0,-100.0},{100.0,100.0}},
+ radius=25.0),
+ Ellipse(
+ origin={10.0,10.0},
+ lineColor={128,128,128},
+ fillColor={255,255,255},
+ fillPattern=FillPattern.Solid,
+ extent={{-80.0,0.0},{-20.0,60.0}}),
+ Ellipse(
+ origin={10.0,10.0},
+ fillColor={128,128,128},
+ pattern=LinePattern.None,
+ fillPattern=FillPattern.Solid,
+ extent={{0.0,0.0},{60.0,60.0}}),
+ Ellipse(
+ origin={10.0,10.0},
+ pattern=LinePattern.None,
+ fillPattern=FillPattern.Solid,
+ extent={{0.0,-80.0},{60.0,-20.0}}),
+ Ellipse(
+ origin={10.0,10.0},
+ fillColor={76,76,76},
+ pattern=LinePattern.None,
+ fillPattern=FillPattern.Solid,
+ extent={{-80.0,-80.0},{-20.0,-20.0}}),
+ Rectangle(
+ lineColor={128,128,128},
+ extent={{-100.0,-100.0},{100.0,100.0}},
+ radius=25.0)}));
+end Processes;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Staging/Processes/package.order b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Staging/Processes/package.order
new file mode 100644
index 00000000000..95417cff338
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Staging/Processes/package.order
@@ -0,0 +1,4 @@
+Down
+Up
+Subsequences
+Validation
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Staging/SetPoints/SetpointController.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Staging/SetPoints/SetpointController.mo
new file mode 100644
index 00000000000..1ca758de4f4
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Staging/SetPoints/SetpointController.mo
@@ -0,0 +1,598 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Staging.SetPoints;
+block SetpointController
+ "Calculates the boiler stage status setpoint signal"
+
+ parameter Boolean have_priOnl = false
+ "Is the boiler plant a primary-only, condensing boiler plant?"
+ annotation(Dialog(tab="General", group="Boiler plant configuration parameters"));
+
+ parameter Integer nBoi = 2
+ "Number of boilers"
+ annotation(Dialog(tab="General", group="Boiler plant configuration parameters"));
+
+ parameter Integer boiTyp[nBoi]={
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Types.BoilerTypes.condensingBoiler,
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Types.BoilerTypes.nonCondensingBoiler}
+ "Boiler type"
+ annotation(Dialog(tab="General", group="Boiler plant configuration parameters"));
+
+ parameter Integer nSta = 3
+ "Number of boiler plant stages"
+ annotation(Dialog(tab="General", group="Boiler plant configuration parameters"));
+
+ parameter Integer staMat[nSta, nBoi] = {{1,0},{0,1},{1,1}}
+ "Staging matrix with stage as row index and boiler as column index"
+ annotation(Dialog(tab="General", group="Boiler plant configuration parameters"));
+
+ parameter Real boiDesCap[nBoi](
+ final unit=fill("W",nBoi),
+ displayUnit=fill("W",nBoi),
+ final quantity=fill("Power",nBoi))
+ "Design boiler capacities vector"
+ annotation(Dialog(tab="General", group="Boiler plant configuration parameters"));
+
+ parameter Real boiFirMin[nBoi](
+ final unit=fill("1",nBoi),
+ displayUnit=fill("1",nBoi))
+ "Boiler minimum firing ratio"
+ annotation(Dialog(tab="General", group="Boiler plant configuration parameters"));
+
+ parameter Real boiMinPriPumSpeSta[nSta](
+ final unit=fill("1",nSta),
+ displayUnit=fill("1",nSta),
+ final max=fill(1,nSta),
+ final min=fill(0,nSta)) = {0,0,0}
+ "Minimum primary pump speed for the boiler plant stage"
+ annotation(Evaluate=true,
+ Dialog(enable=not
+ (have_priOnl),
+ tab="General",
+ group="Boiler plant configuration parameters"));
+
+ parameter Real delStaCha(
+ final unit="s",
+ displayUnit="s",
+ final quantity="Time") = 600
+ "Hold period for each stage change"
+ annotation(Dialog(tab="Staging parameters", group="General parameters"));
+
+ parameter Real avePer(
+ final unit="s",
+ displayUnit="s",
+ final quantity="Time") = 300
+ "Time period for the capacity requirement rolling average"
+ annotation(Dialog(tab="Staging parameters", group="Capacity requirement calculation parameters"));
+
+ parameter Real fraNonConBoi(
+ final unit="1",
+ displayUnit="1") = 0.9
+ "Fraction of current stage design capacity at which efficiency condition is
+ satisfied for non-condensing boilers"
+ annotation(Dialog(tab="Staging parameters", group="Efficiency condition parameters"));
+
+ parameter Real fraConBoi(
+ final unit="1",
+ displayUnit="1") = 1.5
+ "Fraction of higher stage design capacity at which efficiency condition is
+ satisfied for condensing boilers"
+ annotation(Dialog(tab="Staging parameters", group="Efficiency condition parameters"));
+
+ parameter Real delEffCon(
+ final unit="s",
+ displayUnit="s",
+ final quantity="Time") = 600
+ "Enable delay for heating capacity requirement condition"
+ annotation(Dialog(tab="Staging parameters", group="Efficiency condition parameters"));
+
+ parameter Real TDif(
+ final unit="K",
+ displayUnit="K",
+ final quantity="TemperatureDifference") = 10
+ "Required temperature difference between setpoint and measured temperature"
+ annotation(Dialog(tab="Staging parameters", group="Failsafe condition parameters"));
+
+ parameter Real delFaiCon(
+ final unit="s",
+ displayUnit="s",
+ final quantity="Time") = 900
+ "Enable delay for temperature condition"
+ annotation(Dialog(tab="Staging parameters", group="Failsafe condition parameters"));
+
+ parameter Real sigDif(
+ final unit="1",
+ displayUnit="1") = 0.1
+ "Signal hysteresis deadband"
+ annotation (Dialog(tab="Advanced", group="Efficiency condition parameters"));
+
+ parameter Real TDifHys(
+ final unit="K",
+ displayUnit="K",
+ final quantity="TemperatureDifference") = 1
+ "Temperature deadband for hysteresis loop"
+ annotation(Dialog(tab="Advanced", group="Failsafe condition parameters"));
+
+ parameter Real fraMinFir(
+ final unit="1",
+ displayUnit="1") = 1.1
+ "Fraction of boiler minimum firing rate that required capacity needs to be
+ to initiate stage-down process"
+ annotation(Dialog(tab="Staging parameters", group="Staging down parameters"));
+
+ parameter Real delMinFir(
+ final unit="s",
+ displayUnit="s",
+ final quantity="Time") = 300
+ "Delay for staging based on minimum firing rate of current stage"
+ annotation(Dialog(tab="Staging parameters", group="Staging down parameters"));
+
+ parameter Real fraDesCap(
+ final unit="1",
+ displayUnit="1") = 0.8
+ "Fraction of design capacity of next lower stage that heating capacity needs
+ to be for staging down"
+ annotation(Dialog(tab="Staging parameters", group="Staging down parameters"));
+
+ parameter Real delDesCapNonConBoi(
+ final unit="s",
+ displayUnit="s",
+ final quantity="Time") = 600
+ "Enable delay for capacity requirement condition for non-condensing boilers"
+ annotation(Dialog(tab="Staging parameters", group="Staging down parameters"));
+
+ parameter Real delDesCapConBoi(
+ final unit="s",
+ displayUnit="s",
+ final quantity="Time") = 300
+ "Enable delay for capacity requirement condition for condensing boilers"
+ annotation(Dialog(tab="Staging parameters", group="Staging down parameters"));
+
+ parameter Real delBypVal(
+ final unit="s",
+ displayUnit="s",
+ final quantity="Time") = 300
+ "Enable delay for bypass valve condition for primary-only plants"
+ annotation (
+ Evaluate=true,
+ Dialog(
+ enable=have_priOnl,
+ tab="Staging parameters",
+ group="Staging down parameters"));
+
+ parameter Real TCirDif(
+ final unit="K",
+ displayUnit="K",
+ final quantity="TemperatureDifference") = 3
+ "Required return water temperature difference between primary and secondary
+ circuits for staging down"
+ annotation (
+ Evaluate=true,
+ Dialog(
+ enable=not
+ (have_priOnl),
+ tab="Staging parameters",
+ group="Staging down parameters"));
+
+ parameter Real delTRetDif(
+ final unit="s",
+ displayUnit="s",
+ final quantity="Time") = 300
+ "Enable delay for measured hot water return temperature difference condition"
+ annotation (
+ Evaluate=true,
+ Dialog(
+ enable=not
+ (have_priOnl),
+ tab="Staging parameters",
+ group="Staging down parameters"));
+
+ parameter Real bypValClo(
+ final unit="1",
+ displayUnit="1") = 0
+ "Adjustment for signal received when bypass valve is closed"
+ annotation (
+ Evaluate=true,
+ Dialog(
+ enable=have_priOnl,
+ tab="Advanced",
+ group="Staging down parameters"));
+
+ parameter Real dTemp(
+ final unit="K",
+ displayUnit="K",
+ final quantity="TemperatureDifference") = 0.1
+ "Hysteresis deadband for measured temperatures"
+ annotation (Dialog(tab="Advanced", group="Failsafe condition parameters"));
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uStaChaProEnd
+ "Signal indicating end of stage change process"
+ annotation (Placement(transformation(extent={{-440,-280},{-400,-240}}),
+ iconTransformation(extent={{-140,150},{-100,190}},
+ rotation=90,
+ origin={80,-80})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uBoiAva[nBoi]
+ "Boiler availability status vector"
+ annotation (Placement(transformation(extent={{-440,-190},{-400,-150}}),
+ iconTransformation(extent={{-140,-180},{-100,-140}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uPla
+ "Plant enable signal"
+ annotation (Placement(transformation(extent={{-440,-100},{-400,-60}}),
+ iconTransformation(extent={{-140,-120},{-100,-80}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.IntegerInput u(
+ final min=0,
+ final max=nSta)
+ "Boiler stage"
+ annotation (Placement(transformation(extent={{-440,-130},{-400,-90}}),
+ iconTransformation(extent={{-140,-150},{-100,-110}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput THotWatRetPri(
+ final unit="K",
+ displayUnit="K",
+ final quantity="ThermodynamicTemperature") if not have_priOnl
+ "Measured temperature of return hot water in primary circuit"
+ annotation (Placement(transformation(extent={{-440,30},{-400,70}}),
+ iconTransformation(extent={{-140,-30},{-100,10}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput THotWatRetSec(
+ final unit="K",
+ displayUnit="K",
+ final quantity="ThermodynamicTemperature") if not have_priOnl
+ "Measured temperature of return hot water in secondary circuit"
+ annotation (Placement(transformation(extent={{-440,-10},{-400,30}}),
+ iconTransformation(extent={{-140,-60},{-100,-20}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput THotWatSupSet(
+ final unit="K",
+ displayUnit="K",
+ final quantity="ThermodynamicTemperature")
+ "Hot water supply temperature setpoint"
+ annotation (Placement(transformation(extent={{-440,270},{-400,310}}),
+ iconTransformation(extent={{-140,150},{-100,190}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput THotWatSup(
+ final unit="K",
+ displayUnit="K",
+ final quantity="ThermodynamicTemperature")
+ "Measured hot water supply temperature"
+ annotation (Placement(transformation(extent={{-440,150},{-400,190}}),
+ iconTransformation(extent={{-140,60},{-100,100}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput THotWatRet(
+ final unit="K",
+ displayUnit="K",
+ final quantity="ThermodynamicTemperature")
+ "Hot water return temperature"
+ annotation (Placement(transformation(extent={{-440,230},{-400,270}}),
+ iconTransformation(extent={{-140,120},{-100,160}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput VHotWat_flow(
+ final quantity="VolumeFlowRate",
+ final unit="m3/s",
+ displayUnit="m3/s")
+ "Measured hot water flow rate"
+ annotation (Placement(transformation(extent={{-440,190},{-400,230}}),
+ iconTransformation(extent={{-140,90},{-100,130}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput VMinSet_flow[nSta](
+ final unit=fill("m3/s",nSta),
+ displayUnit=fill("m3/s",nSta),
+ final quantity=fill("VolumeFlowRate",nSta))
+ "Vector with primary circuit minimum flow setpoint for all stages"
+ annotation (Placement(transformation(extent={{-440,110},{-400,150}}),
+ iconTransformation(extent={{-140,30},{-100,70}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput uBypValPos(
+ final unit="1",
+ displayUnit="1") if have_priOnl
+ "Bypass valve position"
+ annotation (Placement(transformation(extent={{-440,70},{-400,110}}),
+ iconTransformation(extent={{-140,0},{-100,40}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput uPumSpe(
+ final unit="1",
+ displayUnit="1") if not have_priOnl
+ "Pump speed signal"
+ annotation (Placement(transformation(extent={{-440,-50},{-400,-10}}),
+ iconTransformation(extent={{-140,-90},{-100,-50}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanOutput yChaUpEdg
+ "Boiler stage change higher edge signal"
+ annotation (Placement(transformation(extent={{120,-90},{160,-50}}),
+ iconTransformation(extent={{100,0},{140,40}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanOutput yChaDowEdg
+ "Boiler stage change lower edge signal"
+ annotation (Placement(transformation(extent={{120,-210},{160,-170}}),
+ iconTransformation(extent={{100,-80},{140,-40}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanOutput yBoi[nBoi]
+ "Boiler status setpoint vector for the current boiler stage setpoint"
+ annotation (Placement(transformation(extent={{120,-280},{160,-240}}),
+ iconTransformation(extent={{100,-120},{140,-80}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanOutput yChaEdg
+ "Boiler stage change edge signal"
+ annotation (Placement(transformation(extent={{120,-150},{160,-110}}),
+ iconTransformation(extent={{100,-40},{140,0}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.IntegerOutput ySta(
+ final min=0,
+ final max=nSta) "Boiler stage integer setpoint"
+ annotation (Placement(transformation(extent={{120,-20},{160,20}}),
+ iconTransformation(extent={{100,40},{140,80}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.IntegerOutput yStaTyp[nSta]
+ "Boiler stage type vector"
+ annotation (Placement(transformation(extent={{120,40},{160,80}}),
+ iconTransformation(extent={{100,80},{140,120}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Staging.SetPoints.Subsequences.CapacityRequirement capReq1(
+ final avePer=avePer)
+ "Capacity requirement calculator"
+ annotation (Placement(transformation(extent={{-360,240},{-340,260}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Staging.SetPoints.Subsequences.Capacities cap(
+ final nSta=nSta)
+ "Stage capacity calculator to to find design and minimum capacities for staging calculations"
+ annotation (Placement(transformation(extent={{-270,-180},{-250,-160}})));
+
+protected
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Staging.SetPoints.Subsequences.Change cha(
+ final nSta=nSta,
+ final delStaCha=delStaCha)
+ "Stage change assignment"
+ annotation (Placement(transformation(extent={{-20,-180},{0,-160}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Staging.SetPoints.Subsequences.BoilerIndices boiInd(
+ final nSta=nSta,
+ final nBoi=nBoi,
+ final staMat=staMat)
+ "Boiler index generator"
+ annotation (Placement(transformation(extent={{40,-210},{60,-190}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Staging.SetPoints.Subsequences.Configurator conf(
+ final nSta=nSta,
+ final nBoi=nBoi,
+ final boiTyp=boiTyp,
+ final staMat=staMat,
+ final boiDesCap=boiDesCap,
+ final boiFirMin=boiFirMin)
+ "Configurator to decide stage availability based on boiler availability"
+ annotation (Placement(transformation(extent={{-360,-180},{-340,-160}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Staging.SetPoints.Subsequences.Status sta(
+ final nSta=nSta,
+ final nBoi=nBoi,
+ final staMat=staMat)
+ "Status calculator to find next higher and lower available stages"
+ annotation (Placement(transformation(extent={{-310,-220},{-290,-200}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Staging.SetPoints.Subsequences.Up staUp(
+ final nSta=nSta,
+ final fraNonConBoi=fraNonConBoi,
+ final fraConBoi=fraConBoi,
+ final sigDif=sigDif,
+ final delEffCon=delEffCon,
+ final TDif=TDif,
+ final TDifHys=TDifHys,
+ final delFaiCon=delFaiCon)
+ "Staging up calculator"
+ annotation (Placement(transformation(extent={{-140,-120},{-120,-88}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Staging.SetPoints.Subsequences.Down staDow(
+ final have_priOnl=have_priOnl,
+ final nSta=nSta,
+ final fraMinFir=fraMinFir,
+ final delMinFir=delMinFir,
+ final fraDesCap=fraDesCap,
+ final delDesCapNonConBoi=delDesCapNonConBoi,
+ final delDesCapConBoi=delDesCapConBoi,
+ final sigDif=sigDif,
+ final delBypVal=delBypVal,
+ final bypValClo=bypValClo,
+ final TCirDif=TCirDif,
+ final delTRetDif=delTRetDif,
+ final dTemp=dTemp,
+ final TDif=TDif,
+ final delFaiCon=delFaiCon,
+ final boiMinPriPumSpeSta=boiMinPriPumSpeSta)
+ "Staging down calculator"
+ annotation (Placement(transformation(extent={{-140,-256},{-120,-221}})));
+
+ Buildings.Controls.OBC.CDL.Routing.RealExtractor extIndSig(
+ final nin=nSta)
+ "Identify minimum flow rate for the next higher available stage"
+ annotation (Placement(transformation(extent={{-240,-120},{-220,-100}})));
+
+equation
+ connect(uPla, cha.uPla) annotation (Line(points={{-420,-80},{-280,-80},{-280,-140},
+ {-60,-140},{-60,-165},{-22,-165}}, color={255,0,255}));
+ connect(cha.ySta, ySta) annotation (Line(points={{2,-164},{20,-164},{20,0},{
+ 140,0}}, color={255,127,0}));
+ connect(boiInd.yBoi,yBoi)
+ annotation (Line(points={{62,-200},{80,-200},{80,-260},{140,-260}},
+ color={255,0,255}));
+ connect(cha.ySta,boiInd. u) annotation (Line(points={{2,-164},{20,-164},{20,
+ -200},{38,-200}}, color={255,127,0}));
+ connect(capReq1.TSupSet, THotWatSupSet) annotation (Line(points={{-362,257},{
+ -380,257},{-380,290},{-420,290}},
+ color={0,0,127}));
+ connect(capReq1.TRet, THotWatRet)
+ annotation (Line(points={{-362,250},{-420,250}}, color={0,0,127}));
+ connect(capReq1.VHotWat_flow, VHotWat_flow) annotation (Line(points={{-362,
+ 243},{-380,243},{-380,210},{-420,210}},
+ color={0,0,127}));
+ connect(conf.uBoiAva,uBoiAva) annotation (Line(points={{-362,-170},{-420,-170}},
+ color={255,0,255}));
+ connect(sta.uAva, conf.yAva) annotation (Line(points={{-312,-216},{-332,-216},
+ {-332,-178},{-338,-178}}, color={255,0,255}));
+ connect(sta.u, u) annotation (Line(points={{-312,-204},{-328,-204},{-328,-110},
+ {-420,-110}},color={255,127,0}));
+ connect(conf.yCapDes, cap.uDesCap) annotation (Line(points={{-338,-162},{-310,
+ -162},{-310,-161},{-272,-161}}, color={0,0,127}));
+ connect(conf.yCapMin, cap.uMinCap) annotation (Line(points={{-338,-166},{-310,
+ -166},{-310,-164},{-272,-164}}, color={0,0,127}));
+ connect(cap.u, u) annotation (Line(points={{-272,-167},{-308,-167},{-308,-168},
+ {-328,-168},{-328,-110},{-420,-110}},
+ color={255,127,0}));
+ connect(sta.yAvaUp, cap.uUp) annotation (Line(points={{-288,-203},{-280,-203},
+ {-280,-170},{-272,-170}}, color={255,127,0}));
+ connect(sta.yAvaDow, cap.uDown) annotation (Line(points={{-288,-206},{-278,-206},
+ {-278,-173},{-272,-173}}, color={255,127,0}));
+ connect(sta.yHig, cap.uHig) annotation (Line(points={{-288,-211},{-276,-211},{
+ -276,-176},{-272,-176}}, color={255,0,255}));
+ connect(sta.yLow, cap.uLow) annotation (Line(points={{-288,-214},{-274,-214},{
+ -274,-179},{-272,-179}}, color={255,0,255}));
+ connect(cap.yDes, staUp.uCapDes) annotation (Line(points={{-248,-162},{-210,-162},
+ {-210,-92},{-142,-92}}, color={0,0,127}));
+ connect(cap.yUpMin, staUp.uCapUpMin) annotation (Line(points={{-248,-178},{-208,
+ -178},{-208,-95},{-142,-95}}, color={0,0,127}));
+ connect(conf.yTyp, staUp.uTyp) annotation (Line(points={{-338,-174},{-336,-174},
+ {-336,-226},{-206,-226},{-206,-104},{-142,-104}}, color={255,127,0}));
+ connect(sta.yAvaCur, staUp.uAvaCur) annotation (Line(points={{-288,-217},{-154,
+ -217},{-154,-116},{-142,-116}}, color={255,0,255}));
+ connect(THotWatSup, staUp.THotWatSup) annotation (Line(points={{-420,170},{-188,
+ 170},{-188,-113},{-142,-113}}, color={0,0,127}));
+ connect(THotWatSupSet, staUp.THotWatSupSet) annotation (Line(points={{-420,290},
+ {-184,290},{-184,-110},{-142,-110}}, color={0,0,127}));
+ connect(VHotWat_flow, staUp.VHotWat_flow) annotation (Line(points={{-420,210},
+ {-194,210},{-194,-98},{-142,-98}}, color={0,0,127}));
+ connect(staDow.THotWatSupSet, THotWatSupSet) annotation (Line(points={{-142,-231},
+ {-184,-231},{-184,290},{-420,290}}, color={0,0,127}));
+ connect(staDow.THotWatSup, THotWatSup) annotation (Line(points={{-142,-234},{-188,
+ -234},{-188,170},{-420,170}}, color={0,0,127}));
+ connect(staDow.uCapReq, capReq1.y) annotation (Line(points={{-142,-237},{-180,
+ -237},{-180,250},{-338,250}}, color={0,0,127}));
+ connect(extIndSig.y, staUp.VUpMinSet_flow) annotation (Line(points={{-218,-110},
+ {-216,-110},{-216,-101},{-142,-101}}, color={0,0,127}));
+ connect(extIndSig.u, VMinSet_flow) annotation (Line(points={{-242,-110},{-250,
+ -110},{-250,130},{-420,130}}, color={0,0,127}));
+ connect(extIndSig.index, sta.yAvaUp) annotation (Line(points={{-230,-122},{-230,
+ -154},{-280,-154},{-280,-203},{-288,-203}}, color={255,127,0}));
+ connect(cap.yMin, staDow.uCapMin) annotation (Line(points={{-248,-174},{-190,-174},
+ {-190,-240},{-142,-240}}, color={0,0,127}));
+ connect(cap.yDowDes, staDow.uCapDowDes) annotation (Line(points={{-248,-170},{
+ -192,-170},{-192,-243},{-142,-243}}, color={0,0,127}));
+ connect(staDow.uBypValPos, uBypValPos) annotation (Line(points={{-142,-246},{-172,
+ -246},{-172,90},{-420,90}}, color={0,0,127}));
+ connect(THotWatRetPri, staDow.TPriHotWatRet) annotation (Line(points={{-420,50},
+ {-170,50},{-170,-252},{-142,-252}}, color={0,0,127}));
+ connect(THotWatRetSec, staDow.TSecHotWatRet) annotation (Line(points={{-420,10},
+ {-168,10},{-168,-255},{-142,-255}}, color={0,0,127}));
+ connect(capReq1.y, staUp.uCapReq) annotation (Line(points={{-338,250},{-180,250},
+ {-180,-89},{-142,-89}}, color={0,0,127}));
+ connect(sta.yAvaUp, staUp.uAvaUp) annotation (Line(points={{-288,-203},{-280,-203},
+ {-280,-154},{-202,-154},{-202,-107},{-142,-107}}, color={255,127,0}));
+ connect(u, staDow.uCur) annotation (Line(points={{-420,-110},{-328,-110},{-328,
+ -228},{-142,-228}}, color={255,127,0}));
+ connect(cha.uAvaUp, sta.yAvaUp) annotation (Line(points={{-22,-168},{-60,-168},
+ {-60,-203},{-288,-203}}, color={255,127,0}));
+ connect(cha.uAvaDow, sta.yAvaDow) annotation (Line(points={{-22,-172},{-56,-172},
+ {-56,-206},{-288,-206}}, color={255,127,0}));
+ connect(staUp.yStaUp, cha.uUp) annotation (Line(points={{-118,-104},{-64,-104},
+ {-64,-175},{-22,-175}}, color={255,0,255}));
+ connect(staDow.yStaDow, cha.uDow) annotation (Line(points={{-118,-240},{-64,-240},
+ {-64,-178},{-22,-178}}, color={255,0,255}));
+ connect(uPumSpe, staDow.uPumSpe) annotation (Line(points={{-420,-30},{-198,
+ -30},{-198,-249},{-142,-249}},
+ color={0,0,127}));
+ connect(conf.yTyp, staDow.uTyp) annotation (Line(points={{-338,-174},{-336,-174},
+ {-336,-226},{-142,-226},{-142,-225}}, color={255,127,0}));
+ connect(uStaChaProEnd, staDow.uStaChaProEnd) annotation (Line(points={{-420,-260},
+ {-150,-260},{-150,-222},{-142,-222}}, color={255,0,255}));
+ connect(uStaChaProEnd, cha.uStaChaProEnd) annotation (Line(points={{-420,-260},
+ {-19,-260},{-19,-182}}, color={255,0,255}));
+ connect(cha.yChaEdg, yChaEdg) annotation (Line(points={{2,-172},{110,-172},{
+ 110,-130},{140,-130}}, color={255,0,255}));
+ connect(cha.yChaUpEdg, yChaUpEdg) annotation (Line(points={{2,-168},{100,-168},
+ {100,-70},{140,-70}}, color={255,0,255}));
+ connect(cha.yChaDowEdg, yChaDowEdg) annotation (Line(points={{2,-176},{100,
+ -176},{100,-190},{140,-190}}, color={255,0,255}));
+ connect(uStaChaProEnd, staUp.uStaChaProEnd) annotation (Line(points={{-420,-260},
+ {-150,-260},{-150,-119},{-142,-119}}, color={255,0,255}));
+ connect(conf.yAva, cha.uStaAva) annotation (Line(points={{-338,-178},{-332,
+ -178},{-332,-280},{-30,-280},{-30,-162},{-22,-162}}, color={255,0,255}));
+ connect(conf.yTyp, yStaTyp) annotation (Line(points={{-338,-174},{-336,-174},
+ {-336,60},{140,60}}, color={255,127,0}));
+ annotation (defaultComponentName = "staSetCon",
+ Icon(coordinateSystem(extent={{-100,-180},{100,180}}),
+ graphics={
+ Rectangle(
+ extent={{-100,-180},{100,180}},
+ lineColor={0,0,127},
+ fillColor={255,255,255},
+ fillPattern=FillPattern.Solid),
+ Text(
+ extent={{-110,210},{110,172}},
+ textColor={0,0,255},
+ textString="%name")}), Diagram(
+ coordinateSystem(preserveAspectRatio=false,
+ extent={{-400,-300},{120,320}})),
+Documentation(info="
+
+The sequence is a boiler stage status setpoint controller that outputs the
+boiler stage integer index ySta
, boiler stage change trigger signals
+yChaEdg
, yChaUpEdg
, yChaDowEdg
, and a boiler
+status vector for the current stage yBoi
.
+
+
+Implemented according to ASHRAE RP-1711 March 2020 Draft, section 5.3.3.10.
+
+
+The controller contains the following subsequences:
+
+
+",
+revisions="
+
+-
+June 22, 2020, by Karthik Devaprasad:
+First implementation.
+
+
+"));
+end SetpointController;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Staging/SetPoints/Subsequences/BoilerIndices.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Staging/SetPoints/Subsequences/BoilerIndices.mo
new file mode 100644
index 00000000000..1636ffe00e8
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Staging/SetPoints/Subsequences/BoilerIndices.mo
@@ -0,0 +1,145 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Staging.SetPoints.Subsequences;
+block BoilerIndices
+ "Returns boiler indices for the current stage"
+
+ parameter Integer nSta = 5
+ "Number of stages";
+
+ parameter Integer nBoi = 3
+ "Number of boilers";
+
+ parameter Integer staMat[nSta, nBoi] = {{1,0,0},{0,1,0},{1,1,0},{0,1,1},{1,1,1}}
+ "Staging matrix with stages in rows and boilers in columns";
+
+ Buildings.Controls.OBC.CDL.Interfaces.IntegerInput u(
+ final min=0,
+ final max=nSta,
+ final start=0)
+ "Current boiler stage"
+ annotation (Placement(transformation(extent={{-240,0},{-200,40}}),
+ iconTransformation(extent={{-140,-20},{-100,20}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanOutput yBoi[nBoi]
+ "Boiler status setpoint vector for the current stage"
+ annotation (Placement(transformation(extent={{200,-20},{240,20}}),
+ iconTransformation(extent={{100,-20},{140,20}})));
+
+protected
+ final parameter Integer staInd[nSta] = {i for i in 1:nSta}
+ "Stage index vector";
+
+ final parameter Integer staIndMat[nSta, nBoi] = {j for i in 1:nBoi, j in 1:nSta}
+ "Matrix of staging matrix dimensions with stage indices in each column";
+
+ final parameter Integer lowDia[nSta, nSta] = {if i<=j then 1 else 0 for i in 1:nSta, j in 1:nSta}
+ "Lower diagonal unit matrix";
+
+ Buildings.Controls.OBC.CDL.Routing.IntegerScalarReplicator intRep(
+ final nout=nSta)
+ "Replicates signal to a length equal the stage count"
+ annotation (Placement(transformation(extent={{-180,10},{-160,30}})));
+
+ Buildings.Controls.OBC.CDL.Routing.IntegerScalarReplicator intRep1[nSta](
+ final nout=fill(nBoi, nSta))
+ "Replicates signal to dimensions of the staging matrix"
+ annotation (Placement(transformation(extent={{-140,10},{-120,30}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant staIndMatr[nSta,nBoi](
+ final k=staIndMat)
+ "Matrix with stage index in each column"
+ annotation (Placement(transformation(extent={{-140,-40},{-120,-20}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Equal intEqu1[nSta,nBoi]
+ "Outputs a zero matrix populated with ones in the current stage index row"
+ annotation (Placement(transformation(extent={{-80,10},{-60,30}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant boiStaMatr[nSta,nBoi](
+ final k=staMat)
+ "Staging matrix"
+ annotation (Placement(transformation(extent={{-60,-40},{-40,-20}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.MatrixMax matMax(
+ final nRow=nSta,
+ final nCol=nBoi,
+ final rowMax=false)
+ "Column-wise matrix maximum"
+ annotation (Placement(transformation(extent={{100,-10},{120,10}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.GreaterThreshold boiInSta[nBoi](
+ final t=fill(0.5, nBoi))
+ "Identifies boilers designated to operate in a given stage"
+ annotation (Placement(transformation(extent={{140,-10},{160,10}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Multiply proInt[nSta,nBoi]
+ "Outputs a zero matrix populated with ones for any available boiler in the current stage"
+ annotation (Placement(transformation(extent={{20,-10},{40,10}})));
+
+ Buildings.Controls.OBC.CDL.Conversions.BooleanToInteger booToInt[nSta,nBoi](
+ final integerTrue=fill(1,nSta,nBoi),
+ final integerFalse=fill(0,nSta,nBoi))
+ "Type converter"
+ annotation (Placement(transformation(extent={{-40,10},{-20,30}})));
+
+ Buildings.Controls.OBC.CDL.Conversions.IntegerToReal intToRea[nSta,nBoi]
+ "Type converter"
+ annotation (Placement(transformation(extent={{60,-10},{80,10}})));
+
+equation
+ connect(intRep.y, intRep1.u)
+ annotation (Line(points={{-158,20},{-142,20}}, color={255,127,0}));
+ connect(intRep1.y, intEqu1.u1)
+ annotation (Line(points={{-118,20},{-82,20}}, color={255,127,0}));
+ connect(matMax.y,boiInSta. u)
+ annotation (Line(points={{122,0},{138,0}}, color={0,0,127}));
+ connect(staIndMatr.y, intEqu1.u2) annotation (Line(points={{-118,-30},{-100,-30},
+ {-100,12},{-82,12}}, color={255,127,0}));
+ connect(boiInSta.y, yBoi)
+ annotation (Line(points={{162,0},{220,0}},
+ color={255,0,255}));
+ connect(proInt.y, intToRea.u)
+ annotation (Line(points={{42,0},{58,0}}, color={255,127,0}));
+ connect(intToRea.y, matMax.u)
+ annotation (Line(points={{82,0},{98,0}}, color={0,0,127}));
+ connect(booToInt.y, proInt.u1) annotation (Line(points={{-18,20},{0,20},{0,6},
+ {18,6}}, color={255,127,0}));
+ connect(intEqu1.y, booToInt.u)
+ annotation (Line(points={{-58,20},{-42,20}}, color={255,0,255}));
+ connect(boiStaMatr.y, proInt.u2) annotation (Line(points={{-38,-30},{0,-30},{0,
+ -6},{18,-6}}, color={255,127,0}));
+ connect(u, intRep.u) annotation (Line(points={{-220,20},{-182,20}},
+ color={255,127,0}));
+
+ annotation (defaultComponentName = "boiInd",
+ Icon(graphics={
+ Rectangle(
+ extent={{-100,-100},{100,100}},
+ lineColor={0,0,127},
+ fillColor={255,255,255},
+ fillPattern=FillPattern.Solid),
+ Text(
+ extent={{-120,146},{100,108}},
+ textColor={0,0,255},
+ textString="%name")}),
+ Diagram(coordinateSystem(preserveAspectRatio=false,
+ extent={{-200,-60},{200,60}})),
+Documentation(info="
+
+This subsequence is not directly specified in 1711 as it provides
+a side calculation pertaining to generalization of the staging
+sequences for any number of boilers and stages provided by the
+user.
+
+
+The subsequence outputs a vector of boiler indices yBoi
+for a stage index input u
given a staging matrix staMat
.
+
+",
+revisions="
+
+-
+May 31, 2020, by Karthik Devaprasad:
+First implementation.
+
+
+"));
+end BoilerIndices;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Staging/SetPoints/Subsequences/Capacities.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Staging/SetPoints/Subsequences/Capacities.mo
new file mode 100644
index 00000000000..090ff09856b
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Staging/SetPoints/Subsequences/Capacities.mo
@@ -0,0 +1,276 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Staging.SetPoints.Subsequences;
+block Capacities
+ "Returns design and minimal stage capacities for current and next available higher and lower stage"
+
+ parameter Integer nSta = 5
+ "Total number of stages";
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uLow
+ "Current stage is the lowest available stage"
+ annotation (Placement(transformation(extent={{-240,-80},{-200,-40}}),
+ iconTransformation(extent={{-140,-110},{-100,-70}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uHig
+ "Current stage is the highest available stage"
+ annotation (Placement(transformation(extent={{-240,-140},{-200,-100}}),
+ iconTransformation(extent={{-140,-80},{-100,-40}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.IntegerInput u(
+ final min=0,
+ final max=nSta)
+ "Boiler plant stage"
+ annotation (Placement(transformation(extent={{-240,100},{-200,140}}),
+ iconTransformation(extent={{-140,10},{-100,50}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.IntegerInput uUp(
+ final min=0,
+ final max=nSta)
+ "Next available higher stage"
+ annotation (Placement(transformation(extent={{-240,40},{-200,80}}),
+ iconTransformation(extent={{-140,-20},{-100,20}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.IntegerInput uDown(
+ final min=0,
+ final max=nSta)
+ "Next available lower stage"
+ annotation (Placement(transformation(extent={{-240,-20},{-200,20}}),
+ iconTransformation(extent={{-140,-50},{-100,-10}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput uDesCap[nSta](
+ final quantity=fill("Power", nSta),
+ final unit=fill("W", nSta))
+ "Design stage capacities"
+ annotation (Placement(transformation(extent={{-240,160},{-200,200}}),
+ iconTransformation(extent={{-140,70},{-100,110}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput uMinCap[nSta](
+ final quantity=fill("Power", nSta),
+ final unit=fill("W", nSta))
+ "Unload stage capacities"
+ annotation (Placement(transformation(extent={{-240,-200},{-200,-160}}),
+ iconTransformation(extent={{-140,40},{-100,80}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealOutput yDes(
+ final unit="W",
+ final quantity="Power")
+ "Design capacity of the current stage"
+ annotation (Placement(transformation(extent={{200,130},{240,170}}),
+ iconTransformation(extent={{100,60},{140,100}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealOutput yDowDes(
+ final unit="W",
+ final quantity="Power")
+ "Design capacity of the next available lower stage"
+ annotation (Placement(transformation(extent={{200,0},{240,40}}),
+ iconTransformation(extent={{100,-20},{140,20}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealOutput yUpDes(
+ final unit="W",
+ final quantity="Power")
+ "Design capacity of the next available higher stage"
+ annotation (Placement(transformation(extent={{200,40},{240,80}}),
+ iconTransformation(extent={{100,20},{140,60}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealOutput yMin(
+ final unit="W",
+ final quantity="Power")
+ "Minimum capacity of the current stage"
+ annotation (Placement(transformation(extent={{200,-40},{240,0}}),
+ iconTransformation(extent={{100,-60},{140,-20}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealOutput yUpMin(
+ final unit="W",
+ final quantity="Power")
+ "Minimum capacity of the next available higher stage"
+ annotation (Placement(transformation(extent={{200,-110},{240,-70}}),
+ iconTransformation(extent={{100,-100},{140,-60}})));
+
+protected
+ final parameter Real larGai = 10
+ "Large gain";
+
+ Buildings.Controls.OBC.CDL.Routing.RealExtractor cap(
+ final nin=nSta)
+ "Extracts the design capacity at the current stage"
+ annotation (Placement(transformation(extent={{-100,140},{-80,160}})));
+
+ Buildings.Controls.OBC.CDL.Routing.RealExtractor dowCap(
+ final nin=nSta)
+ "Extracts the design capacity of one stage lower than the current stage"
+ annotation (Placement(transformation(extent={{-100,70},{-80,90}})));
+
+ Buildings.Controls.OBC.CDL.Routing.RealExtractor upCapMin(
+ final nin=nSta)
+ "Extracts minimal capacity of the next higher stage"
+ annotation (Placement(transformation(extent={{0,-40},{20,-20}})));
+
+ Buildings.Controls.OBC.CDL.Routing.RealExtractor upCap(
+ final nin=nSta)
+ "Extracts the design capacity of the next stage"
+ annotation (Placement(transformation(extent={{0,70},{20,90}})));
+
+ Buildings.Controls.OBC.CDL.Routing.RealExtractor capMin(
+ final nin=nSta)
+ "Extracts the minimum capacity of the current stage"
+ annotation (Placement(transformation(extent={{0,-80},{20,-60}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Switch swi2
+ "Switch"
+ annotation (Placement(transformation(extent={{160,50},{180,70}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Switch swi4
+ "Switch"
+ annotation (Placement(transformation(extent={{160,-100},{180,-80}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Switch swi1
+ "Outputs minimum current stage capacity as design stage down capacity if
+ operating in the lowest available stage"
+ annotation (Placement(transformation(extent={{100,10},{120,30}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.MultiplyByParameter gai(
+ final k=larGai)
+ "Ouputs a very large and unachievable staging up capacity when current is
+ the highest available stage"
+ annotation (Placement(transformation(extent={{-60,110},{-40,130}})));
+
+equation
+ connect(swi2.y, yUpDes) annotation (Line(points={{182,60},{220,60}}, color={0,0,127}));
+ connect(upCap.y, swi2.u3) annotation (
+ Line(points={{22,80},{80,80},{80,52},{158,52}}, color={0,0,127}));
+ connect(yMin, yMin)
+ annotation (Line(points={{220,-20},{220,-20}}, color={0,0,127}));
+ connect(upCapMin.y, swi4.u3) annotation (Line(points={{22,-30},{40,-30},{40,-98},
+ {158,-98}}, color={0,0,127}));
+ connect(swi4.y, yUpMin) annotation (Line(points={{182,-90},{220,-90}}, color={0,0,127}));
+ connect(capMin.y, yMin) annotation (Line(points={{22,-70},{80,-70},{80,-20},{220,
+ -20}}, color={0,0,127}));
+ connect(dowCap.y, swi1.u3) annotation (Line(points={{-78,80},{-40,80},{-40,12},
+ {98,12}}, color={0,0,127}));
+ connect(uMinCap, upCapMin.u) annotation (Line(points={{-220,-180},{-120,-180},
+ {-120,-30},{-2,-30}}, color={0,0,127}));
+ connect(uMinCap, capMin.u) annotation (Line(points={{-220,-180},{-120,-180},{-120,
+ -70},{-2,-70}}, color={0,0,127}));
+ connect(uDesCap, cap.u) annotation (Line(points={{-220,180},{-120,180},{-120,150},
+ {-102,150}}, color={0,0,127}));
+ connect(uDesCap, dowCap.u) annotation (Line(points={{-220,180},{-140,180},{-140,
+ 80},{-102,80}}, color={0,0,127}));
+ connect(uDesCap, upCap.u) annotation (Line(points={{-220,180},{-20,180},{-20,80},
+ {-2,80}}, color={0,0,127}));
+ connect(uLow, swi1.u2) annotation (Line(points={{-220,-60},{-140,-60},{-140,20},
+ {98,20}}, color={255,0,255}));
+ connect(uHig, swi2.u2) annotation (Line(points={{-220,-120},{140,-120},{140,60},
+ {158,60}}, color={255,0,255}));
+ connect(uHig, swi4.u2) annotation (Line(points={{-220,-120},{140,-120},{140,-90},
+ {158,-90}}, color={255,0,255}));
+ connect(cap.y, gai.u) annotation (Line(points={{-78,150},{-70,150},{-70,120},{
+ -62,120}}, color={0,0,127}));
+ connect(gai.y, swi2.u1) annotation (Line(points={{-38,120},{100,120},{100,68},
+ {158,68}}, color={0,0,127}));
+ connect(gai.y, swi4.u1) annotation (Line(points={{-38,120},{60,120},{60,-82},{
+ 158,-82}}, color={0,0,127}));
+ connect(swi1.y, yDowDes) annotation (Line(points={{122,20},{220,20}}, color={0,0,127}));
+ connect(u, cap.index) annotation (Line(points={{-220,120},{-90,120},{-90,138}},
+ color={255,127,0}));
+ connect(uDown, dowCap.index) annotation (Line(points={{-220,0},{-90,0},{-90,68}},
+ color={255,127,0}));
+ connect(uUp, upCap.index) annotation (Line(points={{-220,60},{10,60},{10,68}},
+ color={255,127,0}));
+ connect(uUp, upCapMin.index) annotation (Line(points={{-220,60},{-60,60},{-60,
+ -50},{10,-50},{10,-42}}, color={255,127,0}));
+ connect(cap.y, yDes) annotation (Line(points={{-78,150},{220,150}},
+ color={0,0,127}));
+ connect(capMin.y, swi1.u1) annotation (Line(points={{22,-70},{80,-70},{80,28},
+ {98,28}},color={0,0,127}));
+ connect(u, capMin.index) annotation (Line(points={{-220,120},{-160,120},{-160,
+ -90},{10,-90},{10,-82}}, color={255,127,0}));
+ connect(yUpMin, yUpMin)
+ annotation (Line(points={{220,-90},{220,-90}}, color={0,0,127}));
+
+annotation (defaultComponentName = "cap",
+ Icon(graphics={
+ Rectangle(
+ extent={{-100,-100},{100,100}},
+ lineColor={0,0,127},
+ fillColor={255,255,255},
+ fillPattern=FillPattern.Solid),
+ Text(
+ extent={{-120,146},{100,108}},
+ textColor={0,0,255},
+ textString="%name")}),
+ Diagram(coordinateSystem(preserveAspectRatio=false,
+ extent={{-200,-200},{200,200}})),
+Documentation(info="
+
+This subsequence is not directly specified in 1711 as it provides
+a side calculation pertaining to generalization of the staging
+sequences for any number of boilers and stages provided by the
+user.
+
+
+Based on:
+
+
+-
+the current boiler stage
u
index
+
+-
+the next available higher boiler stage
uUp
index
+
+-
+the next available lower boiler stage
uDown
index
+
+-
+boolean inputs that determine if the current stage is
+any of the following: the highest
uHigh
or the
+lowest uLow
available boiler stage
+
+
+
+the subsequence selects from the design stage capacity uDesCap
+and the minimal stage capacity uMinCap
vectors
+the following variables and outputs them:
+
+
+-
+the design capacities of the current
yDes
, first available higher
+yUpDes
and first available lower stage yDowDes
+
+-
+the minimal capacity of the current
yMin
and first available higher
+stage yUpMin
+
+
+
+for the purpose of calculations involved in staging the plant up and down.
+
+
+For numerical reasons and to ensure expected behavior in corner cases such as
+when the plant operates at the highest or the lowest available stage, the
+sequence implements the following:
+
+
+-
+if operating at the lowest available boiler stage, the minimal capacity
+of that stage is returned as the stage down design capacity.
+
+-
+if operating at the stage 0, the minimal and design capacity
+of that stage, as well as the stage down design capacity
+equals a small value, to avoid downstream division 0.
+
+-
+if operating at the highest stage, the design and minimal stage up conditionals
+are set to a value significantly larger than the design capacity of the highest
+stage. This ensures numerical stability and satisfies the staging down conditionals.
+
+
+",
+revisions="
+
+-
+June 1, 2020, by Karthik Devaprasad:
+First implementation.
+
+
+"));
+end Capacities;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Staging/SetPoints/Subsequences/CapacityRequirement.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Staging/SetPoints/Subsequences/CapacityRequirement.mo
new file mode 100644
index 00000000000..d0fde9fb7ce
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Staging/SetPoints/Subsequences/CapacityRequirement.mo
@@ -0,0 +1,171 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Staging.SetPoints.Subsequences;
+block CapacityRequirement
+ "Heating capacity requirement"
+
+ parameter Real avePer(
+ final unit="s",
+ final displayUnit="s",
+ final quantity="Time") = 300
+ "Time period for the rolling average";
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput TSupSet(
+ final unit="K",
+ final displayUnit="K",
+ final quantity="ThermodynamicTemperature")
+ "Hot water supply temperature setpoint"
+ annotation (Placement(transformation(extent={{-160,50},{-120,90}}),
+ iconTransformation(extent={{-140,50},{-100,90}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput TRet(
+ final unit="K",
+ final displayUnit="K",
+ final quantity="ThermodynamicTemperature")
+ "Measured hot water return temperature"
+ annotation (Placement(transformation(extent={{-160,-20},{-120,20}}),
+ iconTransformation(extent={{-140,-20},{-100,20}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput VHotWat_flow(
+ final quantity="VolumeFlowRate",
+ final unit="m3/s",
+ final displayUnit="m3/s")
+ "Measured hot water flow rate"
+ annotation (Placement(transformation(extent={{-160,-90},{-120,-50}}),
+ iconTransformation(extent={{-140,-90},{-100,-50}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealOutput y(
+ final quantity="Power",
+ final unit="W",
+ final displayUnit="W")
+ "Hot water heating capacity requirement"
+ annotation (Placement(transformation(extent={{120,-20},{160,20}}),
+ iconTransformation(extent={{100,-20},{140,20}})));
+
+protected
+ constant Real rhoWat(
+ final unit="kg/m3",
+ final quantity="Density") = 1000
+ "Water density";
+
+ constant Real cpWat(
+ final unit="J/(kg.K)",
+ final quantity="SpecificHeatCapacity") = 4184
+ "Specific heat capacity of water";
+
+ Buildings.Controls.OBC.CDL.Continuous.Max max
+ "Ensure negative heating requirement calculation is not passed downstream"
+ annotation (Placement(transformation(extent={{90,-10},{110,10}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant con(
+ final k=0)
+ "Lowest allowed heating requirement"
+ annotation (Placement(transformation(extent={{60,24},{80,44}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant density(
+ final k=rhoWat)
+ "Water density"
+ annotation (Placement(transformation(extent={{-100,-40},{-80,-20}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant speHeaCap(
+ final k=cpWat)
+ "Specific heat capacity of water"
+ annotation (Placement(transformation(extent={{-100,-80},{-80,-60}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Subtract sub2
+ "Difference between supply temperature setpoint and return temperature"
+ annotation (Placement(transformation(extent={{-100,30},{-80,50}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.MovingAverage movMea(
+ final delta=avePer)
+ "Moving average"
+ annotation (Placement(transformation(extent={{60,-16},{80,4}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Multiply pro
+ "Product"
+ annotation (Placement(transformation(extent={{20,-16},{40,4}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Multiply pro1
+ "Product"
+ annotation (Placement(transformation(extent={{-60,-60},{-40,-40}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Multiply pro2
+ "Product"
+ annotation (Placement(transformation(extent={{-20,-22},{0,-2}})));
+
+equation
+ connect(TRet,sub2. u2)
+ annotation (Line(points={{-140,0},{-110,0},{-110,34},{-102,34}},
+ color={0,0,127}));
+ connect(sub2.u1, TSupSet)
+ annotation (Line(points={{-102,46},{-110,46},{-110,70},{-140,70}},
+ color={0,0,127}));
+ connect(sub2.y, pro.u1)
+ annotation (Line(points={{-78,40},{10,40},{10,0},{18,0}},
+ color={0,0,127}));
+ connect(pro.y, movMea.u)
+ annotation (Line(points={{42,-6},{58,-6}},
+ color={0,0,127}));
+ connect(speHeaCap.y, pro1.u2)
+ annotation (Line(points={{-78,-70},{-70,-70},{-70,-56},{-62,-56}},
+ color={0,0,127}));
+ connect(pro1.y, pro2.u2)
+ annotation (Line(points={{-38,-50},{-30,-50},{-30,-18},{-22,-18}},
+ color={0,0,127}));
+ connect(pro.u2, pro2.y)
+ annotation (Line(points={{18,-12},{2,-12}},
+ color={0,0,127}));
+ connect(pro1.u1, density.y)
+ annotation (Line(points={{-62,-44},{-70,-44},{-70,-30},{-78,-30}},
+ color={0,0,127}));
+ connect(VHotWat_flow, pro2.u1)
+ annotation (Line(points={{-140,-70},{-110,-70},{-110,-6},{-22,-6}},
+ color={0,0,127}));
+ connect(movMea.y, max.u2)
+ annotation (Line(points={{82,-6},{88,-6}},
+ color={0,0,127}));
+ connect(con.y, max.u1)
+ annotation (Line(points={{82,34},{86,34},{86,6},{88,6}},
+ color={0,0,127}));
+ connect(max.y, y)
+ annotation (Line(points={{112,0},{140,0}},
+ color={0,0,127}));
+
+ annotation (defaultComponentName = "capReq",
+ Icon(coordinateSystem(extent={{-100,-100},{100,100}}),
+ graphics={
+ Rectangle(
+ extent={{-100,-100},{100,100}},
+ lineColor={0,0,127},
+ fillColor={255,255,255},
+ fillPattern=FillPattern.Solid),
+ Text(
+ extent={{-120,146},{100,108}},
+ textColor={0,0,255},
+ textString="%name"),
+ Text(
+ extent={{-62,88},{60,-76}},
+ textColor={0,0,0},
+ fillColor={255,255,255},
+ fillPattern=FillPattern.Solid,
+ textString="Load")}),
+ Diagram(coordinateSystem(preserveAspectRatio=false,
+ extent={{-120,-100},{120,100}})),
+ Documentation(info="
+
+ Calculates heating capacity requirement based on the measured hot water return
+ temperature, TRet
, calculated hot water supply temperature
+ setpoint TSupSet
, and the measured hot water flow rate,
+ VHotWat_flow
.
+
+ The calculation is according to section 5.3.3.5 and 5.3.3.6. in RP-1711, March
+ 2020 draft.
+
+ ",
+ revisions="
+
+ -
+ May 19, 2020, by Karthik Devaprasad:
+ First implementation.
+
+
+ "));
+end CapacityRequirement;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Staging/SetPoints/Subsequences/Change.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Staging/SetPoints/Subsequences/Change.mo
new file mode 100644
index 00000000000..d45a910c913
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Staging/SetPoints/Subsequences/Change.mo
@@ -0,0 +1,443 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Staging.SetPoints.Subsequences;
+block Change
+ "Calculates the boiler stage signal"
+
+ parameter Integer nSta = 5
+ "Number of boiler stages";
+
+ parameter Real delStaCha(
+ final unit="s",
+ displayUnit="s",
+ final quantity="Time") = 600
+ "Hold period for each stage change";
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uStaAva[nSta]
+ "Stage availability vector"
+ annotation (Placement(transformation(extent={{-480,250},{-440,290}}),
+ iconTransformation(extent={{-140,60},{-100,100}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uStaChaProEnd
+ "Signal indicating end of stage change process"
+ annotation (Placement(transformation(extent={{-480,-260},{-440,-220}}),
+ iconTransformation(extent={{-140,70},{-100,110}},
+ rotation=90)));
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uPla
+ "Plant enable signal"
+ annotation (Placement(transformation(extent={{-480,140},{-440,180}}),
+ iconTransformation(extent={{-140,30},{-100,70}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uUp
+ "Stage up signal"
+ annotation (Placement(transformation(extent={{-480,-60},{-440,-20}}),
+ iconTransformation(extent={{-140,-70},{-100,-30}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uDow
+ "Stage down signal"
+ annotation (Placement(transformation(extent={{-480,-160},{-440,-120}}),
+ iconTransformation(extent={{-140,-100},{-100,-60}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.IntegerInput uAvaUp(
+ final min=0,
+ final max=nSta)
+ "Next available stage up"
+ annotation (Placement(transformation(extent={{-480,80},{-440,120}}),
+ iconTransformation(extent={{-140,0},{-100,40}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.IntegerInput uAvaDow(
+ final min=0,
+ final max=nSta)
+ "Next available stage down"
+ annotation (Placement(transformation(extent={{-480,0},{-440,40}}),
+ iconTransformation(extent={{-140,-40},{-100,0}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanOutput yChaEdg
+ "Boiler stage change edge signal"
+ annotation (Placement(transformation(extent={{440,-20},{480,20}}),
+ iconTransformation(extent={{100,-40},{140,0}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanOutput yChaDowEdg
+ "Boiler stage change lower edge signal"
+ annotation (Placement(transformation(extent={{440,-90},{480,-50}}),
+ iconTransformation(extent={{100,-80},{140,-40}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanOutput yChaUpEdg
+ "Boiler stage change higher edge signal"
+ annotation (Placement(transformation(extent={{440,70},{480,110}}),
+ iconTransformation(extent={{100,0},{140,40}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.IntegerOutput ySta(
+ final min=0,
+ final max=nSta)
+ "Boiler stage integer setpoint"
+ annotation (Placement(transformation(extent={{440,130},{480,170}}),
+ iconTransformation(extent={{100,40},{140,80}})));
+
+protected
+ parameter Integer staInd[nSta]={i for i in 1:nSta}
+ "Stage index vector";
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant con(final k=0)
+ "Zero boiler stage"
+ annotation (Placement(transformation(extent={{-80,60},{-60,80}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Or or2
+ "Logical or"
+ annotation (Placement(transformation(extent={{-380,-90},{-360,-70}})));
+
+ Buildings.Controls.OBC.CDL.Discrete.TriggeredSampler triSam(
+ final y_start=0)
+ "Triggered sampler"
+ annotation (Placement(transformation(extent={{130,140},{150,160}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Switch switch1
+ "Switch"
+ annotation (Placement(transformation(extent={{-200,50},{-180,70}})));
+
+ Buildings.Controls.OBC.CDL.Conversions.IntegerToReal intToRea
+ "Type converter"
+ annotation (Placement(transformation(extent={{-320,10},{-300,30}})));
+
+ Buildings.Controls.OBC.CDL.Conversions.RealToInteger reaToInt
+ "Type converter"
+ annotation (Placement(transformation(extent={{360,140},{380,160}})));
+
+ Buildings.Controls.OBC.CDL.Conversions.IntegerToReal intToRea1
+ "Type converter"
+ annotation (Placement(transformation(extent={{-320,90},{-300,110}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Latch lat
+ "Latch"
+ annotation (Placement(transformation(extent={{-320,50},{-300,70}})));
+
+ Buildings.Controls.OBC.CDL.Logical.TrueFalseHold holIniSta(
+ final trueHoldDuration=delStaCha,
+ final falseHoldDuration=0)
+ "Holds stage switched to initial upon plant start"
+ annotation (Placement(transformation(extent={{-320,150},{-300,170}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Switch switch2
+ "Switch"
+ annotation (Placement(transformation(extent={{40,140},{60,160}})));
+
+ Buildings.Controls.OBC.CDL.Discrete.TriggeredSampler triSam1
+ "Triggered sampler"
+ annotation (Placement(transformation(extent={{240,0},{260,20}})));
+
+ Buildings.Controls.OBC.CDL.Conversions.BooleanToReal booToRea
+ "Boolean to Real conversion"
+ annotation (Placement(transformation(extent={{200,0},{220,20}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.GreaterThreshold greThr1(
+ final t=0.5)
+ "Check if plant is still enabled"
+ annotation (Placement(transformation(extent={{280,0},{300,20}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Latch lat1
+ "Ensures initial stage is held until the first stage change signal after the
+ initial stage phase is over"
+ annotation (Placement(transformation(extent={{-80,140},{-60,160}})));
+
+ Buildings.Controls.OBC.CDL.Logical.And and3
+ "Logical And"
+ annotation (Placement(transformation(extent={{280,60},{300,80}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Edge edg
+ "Detects plant start"
+ annotation (Placement(transformation(extent={{-380,150},{-360,170}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Not not3
+ "Logical not"
+ annotation (Placement(transformation(extent={{-280,150},{-260,170}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Or or3
+ "Logical or"
+ annotation (Placement(transformation(extent={{220,-60},{240,-40}})));
+
+ Buildings.Controls.OBC.CDL.Logical.FallingEdge falEdg
+ "Detects plant disable"
+ annotation (Placement(transformation(extent={{-60,-40},{-40,-20}})));
+
+ Buildings.Controls.OBC.CDL.Logical.TrueFalseHold staChaHol3(
+ final trueHoldDuration=delStaCha,
+ final falseHoldDuration=0)
+ "Stage change hold"
+ annotation (Placement(transformation(extent={{360,-120},{380,-100}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Not not1
+ "Logical not"
+ annotation (Placement(transformation(extent={{400,-120},{420,-100}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Pre pre1
+ "Previous value"
+ annotation (Placement(transformation(extent={{320,-120},{340,-100}})));
+
+ Buildings.Controls.OBC.CDL.Logical.MultiAnd mulAnd(
+ final nin=4)
+ "Ensure all conditions for stage change are satisfied"
+ annotation (Placement(transformation(extent={{-160,-90},{-140,-70}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Latch lat2
+ "Latch"
+ annotation (Placement(transformation(extent={{-280,-190},{-260,-170}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Change cha
+ "Integer change"
+ annotation (Placement(transformation(extent={{340,-10},{360,10}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Or or1
+ "Trigger stage number sampler when plant is turned on or when staging conditions are met"
+ annotation (Placement(transformation(extent={{100,100},{120,120}})));
+
+ Buildings.Controls.OBC.CDL.Logical.And and5
+ "Ensure stage change signal is passed through only when the plant is enabled"
+ annotation (Placement(transformation(extent={{-320,-90},{-300,-70}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Change cha1
+ "Detect change in boiler plant enable status"
+ annotation (Placement(transformation(extent={{-120,120},{-100,140}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Pre pre2
+ "Logical pre block"
+ annotation (Placement(transformation(extent={{-80,20},{-60,40}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Edge edg1
+ "Edge detector"
+ annotation (Placement(transformation(extent={{60,-90},{80,-70}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Switch switch3
+ "Switch"
+ annotation (Placement(transformation(extent={{-40,100},{-20,120}})));
+
+ Buildings.Controls.OBC.CDL.Conversions.BooleanToInteger booToInt[nSta]
+ "Boolean to Integer conversion"
+ annotation (Placement(transformation(extent={{-420,260},{-400,280}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Multiply proInt[nSta]
+ "Element-wise products"
+ annotation (Placement(transformation(extent={{-360,240},{-340,260}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant conInt[nSta](
+ final k=staInd)
+ "Vector of stage indices"
+ annotation (Placement(transformation(extent={{-420,220},{-400,240}})));
+
+ Buildings.Controls.OBC.CDL.Conversions.IntegerToReal intToRea2[nSta]
+ "Integer to Real conversion"
+ annotation (Placement(transformation(extent={{-320,240},{-300,260}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.MultiMin mulMin(
+ final nin=nSta)
+ "Find lowest available stage"
+ annotation (Placement(transformation(extent={{-280,240},{-260,260}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Or or4
+ "Logical Or"
+ annotation (Placement(transformation(extent={{-340,-190},{-320,-170}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Not not2
+ "Logical Not"
+ annotation (Placement(transformation(extent={{-380,-190},{-360,-170}})));
+
+equation
+ connect(reaToInt.y,ySta)
+ annotation (Line(points={{382,150},{460,150}}, color={255,127,0}));
+ connect(intToRea1.y,switch1. u1) annotation (Line(points={{-298,100},{-220,100},
+ {-220,68},{-202,68}}, color={0,0,127}));
+ connect(intToRea.y,switch1. u3) annotation (Line(points={{-298,20},{-220,20},{
+ -220,52},{-202,52}}, color={0,0,127}));
+ connect(edg.y,holIniSta. u)
+ annotation (Line(points={{-358,160},{-322,160}},
+ color={255,0,255}));
+ connect(triSam1.u,booToRea. y)
+ annotation (Line(points={{238,10},{222,10}}, color={0,0,127}));
+ connect(triSam1.y,greThr1. u)
+ annotation (Line(points={{262,10},{278,10}}, color={0,0,127}));
+ connect(greThr1.y,and3. u2) annotation (Line(points={{302,10},{320,10},{320,40},
+ {260,40},{260,62},{278,62}}, color={255,0,255}));
+ connect(uUp, lat.u) annotation (Line(points={{-460,-40},{-380,-40},{-380,60},{
+ -322,60}}, color={255,0,255}));
+ connect(uDow, lat.clr) annotation (Line(points={{-460,-140},{-340,-140},{-340,
+ 54},{-322,54}}, color={255,0,255}));
+ connect(uUp, or2.u1) annotation (Line(points={{-460,-40},{-400,-40},{-400,-80},
+ {-382,-80}}, color={255,0,255}));
+ connect(uDow, or2.u2) annotation (Line(points={{-460,-140},{-400,-140},{-400,-88},
+ {-382,-88}}, color={255,0,255}));
+ connect(uAvaUp, intToRea1.u)
+ annotation (Line(points={{-460,100},{-322,100}}, color={255,127,0}));
+ connect(uAvaDow, intToRea.u)
+ annotation (Line(points={{-460,20},{-322,20}}, color={255,127,0}));
+ connect(holIniSta.y, not3.u) annotation (Line(points={{-298,160},{-282,160}},
+ color={255,0,255}));
+ connect(uPla, booToRea.u) annotation (Line(points={{-460,160},{-388,160},{-388,
+ 130},{-160,130},{-160,10},{198,10}}, color={255,0,255}));
+ connect(or3.y, triSam1.trigger) annotation (Line(points={{242,-50},{250,-50},{
+ 250,-2}}, color={255,0,255}));
+ connect(uPla, falEdg.u) annotation (Line(points={{-460,160},{-388,160},{-388,130},
+ {-160,130},{-160,-30},{-62,-30}},
+ color={255,0,255}));
+ connect(falEdg.y, or3.u1) annotation (Line(points={{-38,-30},{210,-30},{210,-50},
+ {218,-50}}, color={255,0,255}));
+ connect(uPla, edg.u)
+ annotation (Line(points={{-460,160},{-382,160}}, color={255,0,255}));
+ connect(lat.y, switch1.u2)
+ annotation (Line(points={{-298,60},{-202,60}}, color={255,0,255}));
+ connect(staChaHol3.y, not1.u)
+ annotation (Line(points={{382,-110},{398,-110}}, color={255,0,255}));
+ connect(lat1.y, switch2.u2)
+ annotation (Line(points={{-58,150},{38,150}}, color={255,0,255}));
+ connect(switch2.y, triSam.u)
+ annotation (Line(points={{62,150},{128,150}}, color={0,0,127}));
+ connect(triSam.y, reaToInt.u)
+ annotation (Line(points={{152,150},{358,150}}, color={0,0,127}));
+ connect(switch1.y, switch2.u1) annotation (Line(points={{-178,60},{-140,60},{-140,
+ 180},{0,180},{0,158},{38,158}}, color={0,0,127}));
+ connect(and3.y, lat1.u) annotation (Line(points={{302,70},{320,70},{320,220},{
+ -120,220},{-120,150},{-82,150}}, color={255,0,255}));
+ connect(not3.y, mulAnd.u[1]) annotation (Line(points={{-258,160},{-240,160},{
+ -240,-74.75},{-162,-74.75}},
+ color={255,0,255}));
+ connect(mulAnd.y, and3.u1) annotation (Line(points={{-138,-80},{40,-80},{40,
+ 70},{278,70}}, color={255,0,255}));
+ connect(pre1.y, staChaHol3.u)
+ annotation (Line(points={{342,-110},{358,-110}}, color={255,0,255}));
+ connect(not1.y, mulAnd.u[2]) annotation (Line(points={{422,-110},{430,-110},{
+ 430,-140},{-200,-140},{-200,-78.25},{-162,-78.25}},
+ color={255,0,255}));
+ connect(lat2.y, mulAnd.u[3]) annotation (Line(points={{-258,-180},{-166,-180},
+ {-166,-81.75},{-162,-81.75}}, color={255,0,255}));
+ connect(pre1.y, lat2.clr) annotation (Line(points={{342,-110},{350,-110},{350,
+ -200},{-290,-200},{-290,-186},{-282,-186}}, color={255,0,255}));
+ connect(reaToInt.y, cha.u) annotation (Line(points={{382,150},{400,150},{400,130},
+ {330,130},{330,0},{338,0}}, color={255,127,0}));
+ connect(or1.y, triSam.trigger) annotation (Line(points={{122,110},{140,110},{140,
+ 138}}, color={255,0,255}));
+ connect(or2.y, and5.u1)
+ annotation (Line(points={{-358,-80},{-322,-80}}, color={255,0,255}));
+ connect(and5.y, mulAnd.u[4]) annotation (Line(points={{-298,-80},{-230,-80},{
+ -230,-85.25},{-162,-85.25}}, color={255,0,255}));
+ connect(uPla, and5.u2) annotation (Line(points={{-460,160},{-388,160},{-388,
+ -20},{-328,-20},{-328,-88},{-322,-88}}, color={255,0,255}));
+ connect(uPla, cha1.u) annotation (Line(points={{-460,160},{-388,160},{-388,130},
+ {-122,130}}, color={255,0,255}));
+ connect(cha1.y, lat1.clr) annotation (Line(points={{-98,130},{-90,130},{-90,144},
+ {-82,144}}, color={255,0,255}));
+ connect(cha1.y, pre2.u) annotation (Line(points={{-98,130},{-90,130},{-90,30},
+ {-82,30}}, color={255,0,255}));
+ connect(pre2.y, or1.u1) annotation (Line(points={{-58,30},{20,30},{20,110},{
+ 98,110}}, color={255,0,255}));
+ connect(mulAnd.y, edg1.u)
+ annotation (Line(points={{-138,-80},{58,-80}}, color={255,0,255}));
+ connect(edg1.y, or1.u2) annotation (Line(points={{82,-80},{92,-80},{92,102},{
+ 98,102}}, color={255,0,255}));
+ connect(edg1.y, or3.u2) annotation (Line(points={{82,-80},{120,-80},{120,-58},
+ {218,-58}}, color={255,0,255}));
+ connect(con.y, switch3.u3) annotation (Line(points={{-58,70},{-50,70},{-50,
+ 102},{-42,102}}, color={0,0,127}));
+ connect(switch3.y, switch2.u3) annotation (Line(points={{-18,110},{0,110},{0,
+ 142},{38,142}}, color={0,0,127}));
+ connect(uStaAva, booToInt.u)
+ annotation (Line(points={{-460,270},{-422,270}}, color={255,0,255}));
+ connect(booToInt.y, proInt.u1) annotation (Line(points={{-398,270},{-380,270},
+ {-380,256},{-362,256}}, color={255,127,0}));
+ connect(conInt.y, proInt.u2) annotation (Line(points={{-398,230},{-380,230},{-380,
+ 244},{-362,244}}, color={255,127,0}));
+ connect(proInt.y, intToRea2.u)
+ annotation (Line(points={{-338,250},{-322,250}}, color={255,127,0}));
+ connect(mulMin.u[1:nSta], intToRea2.y) annotation (Line(points={{-282,250},{-290,
+ 250},{-290,250},{-298,250}}, color={0,0,127}));
+ connect(mulMin.y, switch3.u1) annotation (Line(points={{-258,250},{-150,250},{
+ -150,100},{-68,100},{-68,118},{-42,118}}, color={0,0,127}));
+ connect(uPla, switch3.u2) annotation (Line(points={{-460,160},{-388,160},{-388,
+ 130},{-160,130},{-160,110},{-42,110}}, color={255,0,255}));
+ connect(cha.up, yChaUpEdg) annotation (Line(points={{362,6},{380,6},{380,92},
+ {460,92},{460,90}}, color={255,0,255}));
+ connect(cha.y, yChaEdg) annotation (Line(points={{362,0},{404,0},{404,0},{460,
+ 0}}, color={255,0,255}));
+ connect(cha.down, yChaDowEdg) annotation (Line(points={{362,-6},{380,-6},{380,
+ -70},{460,-70}}, color={255,0,255}));
+ connect(cha.y, pre1.u) annotation (Line(points={{362,0},{370,0},{370,-80},{
+ 310,-80},{310,-110},{318,-110}}, color={255,0,255}));
+ connect(or4.y, lat2.u)
+ annotation (Line(points={{-318,-180},{-282,-180}}, color={255,0,255}));
+ connect(not2.y, or4.u1)
+ annotation (Line(points={{-358,-180},{-342,-180}}, color={255,0,255}));
+ connect(uPla, not2.u) annotation (Line(points={{-460,160},{-388,160},{-388,-180},
+ {-382,-180}}, color={255,0,255}));
+ connect(uStaChaProEnd, or4.u2) annotation (Line(points={{-460,-240},{-350,-240},
+ {-350,-188},{-342,-188}}, color={255,0,255}));
+ annotation (defaultComponentName = "cha",
+ Icon(graphics={
+ Rectangle(
+ extent={{-100,-100},{100,100}},
+ lineColor={0,0,127},
+ fillColor={255,255,255},
+ fillPattern=FillPattern.Solid),
+ Text(
+ extent={{-112,150},{108,112}},
+ textColor={0,0,255},
+ textString="%name")}),
+ Diagram(
+ coordinateSystem(preserveAspectRatio=false,
+ extent={{-440,-300},{440,300}})),
+ Documentation(info="
+
+ This subsequence is not directly specified in 1711 as it provides a side
+ calculation pertaining to generalization of the staging sequences for any
+ number of boilers and stages provided by the user.
+
+ This subsequence is used to generate the boiler stage setpoint
+ ySta and a boolean vector of
+ boiler status setpoint indices y
+ for the ySta stage.
+ The inputs to the subsequece are:
+
+
+ If stage down and stage up happen at the same time for any faulty reason the
+ staging down is performed.
+
+
+ If stage down or stage up signal is held for a time longer than delStaCha
+ multiple consecutive stage change signals are issued.
+
+
+ At plant enable the intial stage is held for at least delStaCha
+ and until any stage up or down signal is generated.
+
+
+ Per 1711 March 2020 Draft 5.3.3.10.1, each stage shall have a minimum
+ runtime of delStaCha.
+
+ ",
+ revisions="
+
+ -
+ May 29, 2020, by Karthik Devaprasad:
+ First implementation.
+
+
+ "));
+end Change;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Staging/SetPoints/Subsequences/Configurator.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Staging/SetPoints/Subsequences/Configurator.mo
new file mode 100644
index 00000000000..ad152f238af
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Staging/SetPoints/Subsequences/Configurator.mo
@@ -0,0 +1,370 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Staging.SetPoints.Subsequences;
+block Configurator "Configures boiler staging"
+
+ parameter Integer nSta = 5
+ "Number of boiler stages";
+
+ parameter Integer nBoi = 3
+ "Number of boilers";
+
+ parameter Integer boiTyp[nBoi]={
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Types.BoilerTypes.condensingBoiler,
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Types.BoilerTypes.nonCondensingBoiler,
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Types.BoilerTypes.nonCondensingBoiler}
+ "Boiler type. Recommended staging order: 1. condensing boilers, 2. non-codensing boilers";
+
+ parameter Integer staMat[nSta, nBoi] = {{1,0,0},{0,1,0},{1,1,0},{0,1,1},{1,1,1}}
+ "Staging matrix with stage as row index and boiler as column index";
+
+ parameter Real boiDesCap[nBoi](
+ final unit="W",
+ displayUnit="W",
+ final quantity="Power")
+ "Design boiler capacities vector";
+
+ parameter Real boiFirMin[nBoi](
+ final unit="1",
+ displayUnit="1")
+ "Boiler minimum firing ratios vector";
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uBoiAva[nBoi]
+ "Boiler availability status vector"
+ annotation (Placement(transformation(extent={{-260,-60},{-220,-20}}),
+ iconTransformation(extent={{-140,-20},{-100,20}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanOutput yAva[nSta]
+ "Stage availability status vector"
+ annotation (Placement(transformation(extent={{220,-100},{260,-60}}),
+ iconTransformation(extent={{100,-100},{140,-60}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.IntegerOutput yTyp[nSta](
+ final max=fill(nSta, nSta))
+ "Boiler stage types vector"
+ annotation (Placement(transformation(extent={{220,-140},{260,-100}}),
+ iconTransformation(extent={{100,-60},{140,-20}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealOutput yCapDes[nSta](
+ final unit=fill("W", nSta),
+ final quantity=fill("Power", nSta))
+ "Stage design capacities vector"
+ annotation (Placement(transformation(extent={{220,0},{260,40}}),
+ iconTransformation(extent={{100,60},{140,100}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealOutput yCapMin[nSta](
+ final unit=fill("W", nSta),
+ final quantity=fill("Power", nSta))
+ "Minimum stage capacities vector"
+ annotation (Placement(transformation(extent={{220,-40},{260,0}}),
+ iconTransformation(extent={{100,20},{140,60}})));
+
+ Buildings.Controls.OBC.CDL.Utilities.Assert assMes1(
+ final message="The boilers must be tagged in order of design capacity if unequally sized")
+ "Asserts whether boilers are tagged in ascending order with regards to capacity"
+ annotation (Placement(transformation(extent={{60,150},{80,170}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Subtract sub1[nBoi]
+ "Subtracts signals"
+ annotation (Placement(transformation(extent={{-100,150},{-80,170}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.MultiMax multiMax(
+ nin=nBoi)
+ "Maximum value in a vector input"
+ annotation (Placement(transformation(extent={{-60,150},{-40,170}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Abs abs
+ "Absolute values"
+ annotation (Placement(transformation(extent={{-20,150},{0,170}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.LessThreshold lesThr1(
+ final t=0.5)
+ "Less threshold"
+ annotation (Placement(transformation(extent={{20,150},{40,170}})));
+
+protected
+ final parameter Integer boiTypMat[nSta, nBoi] = {boiTyp[i] for i in 1:nBoi, j in 1:nSta}
+ "Boiler type array expanded to allow for element-wise multiplication with the
+ staging matrix";
+
+ final parameter Real boiFirMinVal[nSta, nBoi] = {boiFirMin[i] for i in 1:nBoi, j in 1:nSta}
+ "Boiler minimum firing ratio array expanded for element-wise multiplication
+ with the staging matrix";
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant boiDesCaps[nBoi](
+ final k=boiDesCap)
+ "Design boiler capacities vector"
+ annotation (Placement(transformation(extent={{-200,100},{-180,120}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant boiFirMinMat[nSta,nBoi](
+ final k=boiFirMinVal)
+ "Boiler minimum firing ratios matrix"
+ annotation (Placement(transformation(extent={{-200,60},{-180,80}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.MatrixGain staDesCaps(
+ final K=staMat)
+ "Matrix gain for design capacities"
+ annotation (Placement(transformation(extent={{-140,100},{-120,120}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.MatrixGain sumNumBoi(
+ final K=staMat)
+ "Outputs the total boiler count per stage vector"
+ annotation (Placement(transformation(extent={{-140,10},{-120,30}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.MatrixGain sumNumAvaBoi(
+ final K=staMat)
+ "Outputs the available boiler count per stage vector"
+ annotation (Placement(transformation(extent={{-140,-50},{-120,-30}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant oneVec[nBoi](
+ final k=fill(1, nBoi))
+ "Mocks a case with all boilers available"
+ annotation (Placement(transformation(extent={{-200,10},{-180,30}})));
+
+ Buildings.Controls.OBC.CDL.Conversions.BooleanToReal booToRea[nBoi]
+ "Type converter"
+ annotation (Placement(transformation(extent={{-200,-50},{-180,-30}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Subtract sub2[nSta]
+ "Subtracts count of available boilers from the design count, at each stage"
+ annotation (Placement(transformation(extent={{-80,-20},{-60,0}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.LessThreshold lesThr[nSta](
+ final t=fill(0.5, nSta))
+ "Checks if the count of available boilers in each stage equals the design count"
+ annotation (Placement(transformation(extent={{-40,-20},{-20,0}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant boiStaMat[nSta,nBoi](
+ final k=staMat)
+ "Staging matrix"
+ annotation (Placement(transformation(extent={{-200,-100},{-180,-80}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant staType[nSta,nBoi](
+ final k=boiTypMat)
+ "Boiler stage type matrix"
+ annotation (Placement(transformation(extent={{-200,-160},{-180,-140}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Multiply pro[nSta,nBoi]
+ "Element-wise product"
+ annotation (Placement(transformation(extent={{-140,-130},{-120,-110}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.MatrixMax matMax(
+ final nRow=nSta,
+ final nCol=nBoi)
+ "Row-wise matrix maximum"
+ annotation (Placement(transformation(extent={{-100,-130},{-80,-110}})));
+
+ Buildings.Controls.OBC.CDL.Conversions.RealToInteger reaToInt[nSta]
+ "Type converter"
+ annotation (Placement(transformation(extent={{-60,-130},{-40,-110}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sort sort(
+ final nin=nSta)
+ "Vector sort"
+ annotation (Placement(transformation(extent={{20,-180},{40,-160}})));
+
+ Buildings.Controls.OBC.CDL.Conversions.IntegerToReal intToRea1[nSta]
+ "Type converter"
+ annotation (Placement(transformation(extent={{-20,-180},{0,-160}})));
+
+ Buildings.Controls.OBC.CDL.Conversions.RealToInteger reaToInt1[nSta]
+ "Type converter"
+ annotation (Placement(transformation(extent={{60,-180},{80,-160}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Equal intEqu[nSta]
+ "Integer equality"
+ annotation (Placement(transformation(extent={{100,-160},{120,-140}})));
+
+ Buildings.Controls.OBC.CDL.Utilities.Assert assMes(
+ final message="The boilers are not being staged in an order
+ recommended by ASHRAE RP1711 or Guideline 36.
+ Please make sure to follow the recommendation that is:
+ any condensing boilers first, any non-condensing boilers last.")
+ "Asserts warning if boilers are not staged in recommended order by type"
+ annotation (Placement(transformation(extent={{180,-160},{200,-140}})));
+
+ Buildings.Controls.OBC.CDL.Logical.MultiAnd mulAnd(
+ final nin=nSta)
+ "Logical and with a vector input"
+ annotation (Placement(transformation(extent={{140,-160},{160,-140}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Multiply pro1[nSta,nBoi]
+ "Element-wise product"
+ annotation (Placement(transformation(extent={{-160,60},{-140,80}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.MatrixMax matMax1(
+ final rowMax=true,
+ final nRow=nSta,
+ final nCol=nBoi)
+ "Find highest BFirMin in each stage"
+ annotation (Placement(transformation(extent={{-120,60},{-100,80}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Multiply pro2[nSta]
+ "Product"
+ annotation (Placement(transformation(extent={{-80,60},{-60,80}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sort sort1(
+ final nin=nBoi)
+ "Sort values"
+ annotation (Placement(transformation(extent={{-140,160},{-120,180}})));
+
+equation
+ connect(boiDesCaps.y, staDesCaps.u)
+ annotation (Line(points={{-178,110},{-142,110}},
+ color={0,0,127}));
+ connect(uBoiAva, booToRea.u)
+ annotation (Line(points={{-240,-40},{-202,-40}},
+ color={255,0,255}));
+ connect(booToRea.y,sumNumAvaBoi. u)
+ annotation (Line(points={{-178,-40},{-142,-40}},
+ color={0,0,127}));
+ connect(sumNumBoi.y,sub2. u1)
+ annotation (Line(points={{-118,20},{-100,20},{-100,-4},{-82,-4}},
+ color={0,0,127}));
+ connect(sumNumAvaBoi.y,sub2. u2)
+ annotation (Line(points={{-118,-40},{-100.5,-40},{-100.5,-16},{-82,-16}},
+ color={0,0,127}));
+ connect(sub2.y,lesThr. u)
+ annotation (Line(points={{-58,-10},{-42,-10}},
+ color={0,0,127}));
+ connect(lesThr.y, yAva)
+ annotation (Line(points={{-18,-10},{60,-10},{60,-80},{240,-80}},
+ color={255,0,255}));
+ connect(pro.y,matMax. u)
+ annotation (Line(points={{-118,-120},{-102,-120}},
+ color={0,0,127}));
+ connect(matMax.y,reaToInt. u)
+ annotation (Line(points={{-78,-120},{-62,-120}},
+ color={0,0,127}));
+ connect(reaToInt.y, yTyp)
+ annotation (Line(points={{-38,-120},{240,-120}},
+ color={255,127,0}));
+ connect(reaToInt.y, intToRea1.u)
+ annotation (Line(points={{-38,-120},{-30,-120},{-30,-170},{-22,-170}},
+ color={255,127,0}));
+ connect(intToRea1.y, sort.u)
+ annotation (Line(points={{2,-170},{18,-170}},
+ color={0,0,127}));
+ connect(sort.y, reaToInt1.u)
+ annotation (Line(points={{42,-170},{58,-170}},
+ color={0,0,127}));
+ connect(reaToInt.y,intEqu. u1)
+ annotation (Line(points={{-38,-120},{90,-120},{90,-150},{98,-150}},
+ color={255,127,0}));
+ connect(reaToInt1.y,intEqu. u2)
+ annotation (Line(points={{82,-170},{90,-170},{90,-158},{98,-158}},
+ color={255,127,0}));
+ connect(mulAnd.y, assMes.u)
+ annotation (Line(points={{162,-150},{178,-150}},
+ color={255,0,255}));
+ connect(intEqu.y, mulAnd.u)
+ annotation (Line(points={{122,-150},{138,-150}},
+ color={255,0,255}));
+ connect(staDesCaps.y,yCapDes)
+ annotation (Line(points={{-118,110},{100,110},{100,20},{240,20}},
+ color={0,0,127}));
+ connect(oneVec.y,sumNumBoi. u)
+ annotation (Line(points={{-178,20},{-142,20}},
+ color={0,0,127}));
+ connect(boiStaMat.y, pro.u1)
+ annotation (Line(points={{-178,-90},{-160,-90},{-160,-114},{-142,-114}},
+ color={0,0,127}));
+ connect(staType.y, pro.u2)
+ annotation (Line(points={{-178,-150},{-160,-150},{-160,-126},{-142,-126}},
+ color={0,0,127}));
+ connect(boiFirMinMat.y, pro1.u1)
+ annotation (Line(points={{-178,70},{-170,70},{-170,76},{-162,76}},
+ color={0,0,127}));
+ connect(pro1.u2, boiStaMat.y)
+ annotation (Line(points={{-162,64},{-170,64},{-170,-90},{-178,-90}},
+ color={0,0,127}));
+ connect(pro1.y, matMax1.u)
+ annotation (Line(points={{-138,70},{-122,70}},
+ color={0,0,127}));
+ connect(matMax1.y, pro2.u2)
+ annotation (Line(points={{-98,70},{-90,70},{-90,64},{-82,64}},
+ color={0,0,127}));
+ connect(staDesCaps.y, pro2.u1)
+ annotation (Line(points={{-118,110},{-90,110},{-90,76},{-82,76}},
+ color={0,0,127}));
+ connect(pro2.y,yCapMin)
+ annotation (Line(points={{-58,70},{80,70},{80,-20},{240,-20}},
+ color={0,0,127}));
+
+ connect(boiDesCaps.y,sub1. u2) annotation (Line(points={{-178,110},{-160,110},
+ {-160,154},{-102,154}}, color={0,0,127}));
+ connect(sort1.y,sub1. u1) annotation (Line(points={{-118,170},{-110,170},
+ {-110,166},{-102,166}}, color={0,0,127}));
+ connect(sub1.y, multiMax.u) annotation (Line(points={{-78,160},{-70,160},
+ {-70,160},{-62,160}}, color={0,0,127}));
+ connect(multiMax.y, abs.u)
+ annotation (Line(points={{-38,160},{-22,160}}, color={0,0,127}));
+ connect(abs.y, lesThr1.u)
+ annotation (Line(points={{2,160},{18,160}}, color={0,0,127}));
+ connect(lesThr1.y, assMes1.u)
+ annotation (Line(points={{42,160},{58,160}}, color={255,0,255}));
+ connect(sort1.u, boiDesCaps.y) annotation (Line(points={{-142,170},{-160,
+ 170},{-160,110},{-178,110}}, color={0,0,127}));
+ annotation (defaultComponentName = "conf",
+ Icon(graphics={
+ Rectangle(extent={{-100,-100},{100,100}},
+ lineColor={0,0,127},
+ fillColor={255,255,255},
+ fillPattern=FillPattern.Solid),
+ Text(extent={{-120,146},{100,108}},
+ textColor={0,0,255},
+ textString="%name")}),
+ Diagram(coordinateSystem(preserveAspectRatio=false,
+ extent={{-220,-200},{220,200}})),
+ Documentation(info="
+
+ This subsequence is not directly specified in 1711 as it provides
+ a side calculation pertaining to generalization of the staging
+ sequences for any number of boilers and stages provided by the
+ user.
+
+
+ Given the staging matrix input parameter staMat
the staging
+ configurator calculates:
+
+
+ -
+ Stage availability vector
yAva
from the boiler availability
+ uBoiAva
input vector according to RP-1711 March 2020 Draft
+ section 5.3.3.9.
+
+ -
+ Design stage capacity vector
yDesCap
from the design boiler
+ capacity vector input parameter boiDesCap
.
+
+ -
+ Minimum stage capacity vector
yMinCap
from the boiler minimum
+ firing rate input parameter boiMinCap
according to section
+ 5.3.3.8, 1711 March 2020 Draft.
+
+ -
+ Stage type vector
yTyp
from the boiler type vector input
+ parameter boiTyp
. Boiler types are defined in
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Types.BoilerTypes.
+ Stage type is based on the boiler types in that stage, and is classified
+ as:
+
+ -
+ non-condensing, if any of the boilers in that stage are non-condensing boilers.
+
+ -
+ condensing, if all the boilers in that stage are condensing boilers.
+
+
+ This stage type is used to determine the stage up and down conditions to apply.
+
+
+ ",
+ revisions="
+
+ -
+ May 20, 2020, by Karthik Devaprasad:
+ First implementation.
+
+
+ "));
+end Configurator;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Staging/SetPoints/Subsequences/Down.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Staging/SetPoints/Subsequences/Down.mo
new file mode 100644
index 00000000000..4e02a279727
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Staging/SetPoints/Subsequences/Down.mo
@@ -0,0 +1,672 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Staging.SetPoints.Subsequences;
+block Down
+ "Generates a stage down signal"
+
+ parameter Boolean have_priOnl = false
+ "Is the boiler plant a primary-only, condensing boiler plant?";
+
+ parameter Integer nSta = 5
+ "Number of stages";
+
+ parameter Real fraMinFir(
+ final unit="1",
+ displayUnit="1",
+ final min=0) = 1.10
+ "Fraction of boiler minimum firing ratio that required capacity needs to be
+ for minimum firing ratio condition"
+ annotation(Dialog(group="Minimum firing rate condition parameters"));
+
+ parameter Real delMinFir(
+ final unit="s",
+ displayUnit="s",
+ final quantity="Time")= 300
+ "Delay for staging based on minimum firing rate of current stage"
+ annotation(Dialog(group="Minimum firing rate condition parameters"));
+
+ parameter Real fraDesCap(
+ final unit="1",
+ displayUnit="1",
+ final min=0,
+ final max=1) = 0.80
+ "Fraction of design capacity of next lower stage that heating capacity needs
+ to be for lower design capacity ratio condition"
+ annotation(Dialog(group="Stage design capacity condition parameters"));
+
+ parameter Real delDesCapNonConBoi(
+ final unit="s",
+ displayUnit="s",
+ final quantity="Time") = 600
+ "Enable delay for lower stage design capacity ratio condition for non-condensing boilers"
+ annotation(Evaluate=true,Dialog(enable=not
+ (have_priOnl), group="Stage design capacity condition parameters"));
+
+ parameter Real delDesCapConBoi(
+ final unit="s",
+ displayUnit="s",
+ final quantity="Time") = 300
+ "Enable delay for lower stage design capacity ratio condition for condensing boilers"
+ annotation(Dialog(group="Stage design capacity condition parameters"));
+
+ parameter Real sigDif(
+ final unit="1",
+ displayUnit="1",
+ final min=0) = 0.01
+ "Hysteresis deadband normalized signals"
+ annotation(Dialog(tab="Advanced"));
+
+ parameter Real delBypVal(
+ final unit="s",
+ displayUnit="s",
+ final quantity="Time") = 300
+ "Enable delay for bypass valve position condition"
+ annotation (
+ Evaluate=true,
+ Dialog(
+ enable=have_priOnl,
+ group="Bypass valve condition parameters"));
+
+ parameter Real bypValClo = 0
+ "Adjustment for signal received when bypass valve is closed"
+ annotation (
+ Evaluate=true,
+ Dialog(
+ enable=have_priOnl,
+ tab="Advanced"));
+
+ parameter Real TCirDif(
+ final unit="K",
+ displayUnit="K",
+ final quantity="TemperatureDifference") = 3
+ "Required return water temperature difference between the primary and
+ secondary circuits for staging down"
+ annotation (
+ Evaluate=true,
+ Dialog(
+ enable=not
+ (have_priOnl),
+ group="Return temperature condition parameters"));
+
+ parameter Real delTRetDif(
+ final unit="s",
+ displayUnit="s",
+ final quantity="Time") = 300
+ "Enable delay for measured hot water return temperature difference condition"
+ annotation (
+ Evaluate=true,
+ Dialog(
+ enable=not
+ (have_priOnl),
+ group="Return temperature condition parameters"));
+
+ parameter Real dTemp(
+ final unit="K",
+ displayUnit="K",
+ final quantity="TemperatureDifference") = 0.1
+ "Hysteresis deadband for measured temperatures"
+ annotation(Dialog(tab="Advanced"));
+
+ parameter Real TDif(
+ final unit="K",
+ displayUnit="K",
+ final quantity="TemperatureDifference") = 10
+ "Temperature difference for failsafe condition"
+ annotation(Dialog(group="Failsafe condition parameters"));
+
+ parameter Real delFaiCon(
+ final unit="s",
+ displayUnit="s",
+ final quantity="Time") = 900
+ "Enable delay for the failsafe condition"
+ annotation(Dialog(group="Failsafe condition parameters"));
+
+ parameter Real boiMinPriPumSpeSta[nSta](
+ final unit=fill("1",nSta),
+ displayUnit=fill("1",nSta),
+ final min=fill(0,nSta),
+ final max=fill(1,nSta)) = {0,0,0,0,0}
+ "Minimum primary pump speed for the boiler plant stage";
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uStaChaProEnd
+ "Signal indicating end of stage change process"
+ annotation (Placement(transformation(extent={{-220,70},{-180,110}}),
+ iconTransformation(extent={{-140,160},{-100,200}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.IntegerInput uTyp[nSta]
+ "Type vector to identify boiler types in each stage"
+ annotation (Placement(transformation(
+ extent={{-220,130},{-180,170}},
+ rotation=90,
+ origin={80,-20}),
+ iconTransformation(extent={{-140,130},{-100,170}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.IntegerInput uCur
+ "Current stage index"
+ annotation (Placement(transformation(
+ extent={{-220,90},{-180,130}},
+ rotation=90,
+ origin={80,-20}),
+ iconTransformation(extent={{-140,100},{-100,140}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput THotWatSupSet(
+ final unit="K",
+ displayUnit="K",
+ final quantity="ThermodynamicTemperature")
+ "Hot water supply temperature setpoint"
+ annotation (Placement(transformation(extent={{-220,130},{-180,170}}),
+ iconTransformation(extent={{-140,70},{-100,110}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput THotWatSup(
+ final unit="K",
+ displayUnit="K",
+ final quantity="ThermodynamicTemperature")
+ "Measured hot water supply temperature"
+ annotation (Placement(transformation(extent={{-220,100},{-180,140}}),
+ iconTransformation(extent={{-140,40},{-100,80}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput uCapReq(
+ final unit="W",
+ displayUnit="W",
+ final quantity="Power")
+ "Heating capacity required"
+ annotation (Placement(transformation(extent={{-220,40},{-180,80}}),
+ iconTransformation(extent={{-140,10},{-100,50}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput uCapMin(
+ final unit="W",
+ displayUnit="W",
+ final quantity="Power")
+ "Minimum firing capacity of current stage"
+ annotation (Placement(transformation(extent={{-220,10},{-180,50}}),
+ iconTransformation(extent={{-140,-20},{-100,20}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput uCapDowDes(
+ final unit="W",
+ displayUnit="W",
+ final quantity="Power")
+ "Design capacity of the next lower available stage"
+ annotation (Placement(transformation(extent={{-220,-50},{-180,-10}}),
+ iconTransformation(extent={{-140,-50},{-100,-10}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput uPumSpe(
+ final unit="1",
+ displayUnit="1",
+ final min=0,
+ final max=1) if not have_priOnl
+ "Pump speed signal"
+ annotation (Placement(transformation(extent={{-220,-80},{-180,-40}}),
+ iconTransformation(extent={{-140,-110},{-100,-70}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput uBypValPos(
+ final unit="1",
+ displayUnit="1",
+ final min=0,
+ final max=1) if have_priOnl
+ "Bypass valve position"
+ annotation (Placement(transformation(extent={{-220,-20},{-180,20}}),
+ iconTransformation(extent={{-140,-80},{-100,-40}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput TPriHotWatRet(
+ final unit="K",
+ displayUnit="K",
+ final quantity="ThermodynamicTemperature") if not have_priOnl
+ "Measured primary hot water return temperature"
+ annotation (Placement(transformation(extent={{-220,-180},{-180,-140}}),
+ iconTransformation(extent={{-140,-140},{-100,-100}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput TSecHotWatRet(
+ final unit="K",
+ displayUnit="K",
+ final quantity="ThermodynamicTemperature") if not have_priOnl
+ "Measured secondary hot water return temperature"
+ annotation (Placement(transformation(extent={{-220,-210},{-180,-170}}),
+ iconTransformation(extent={{-140,-170},{-100,-130}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanOutput yStaDow
+ "Stage down signal"
+ annotation (Placement(transformation(extent={{220,-20},{260,20}}),
+ iconTransformation(extent={{100,-20},{140,20}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Staging.SetPoints.Subsequences.FailsafeCondition faiSafCon(
+ final delEna=delFaiCon,
+ final TDif=TDif,
+ final TDifHys=dTemp)
+ "Failsafe condition"
+ annotation (Placement(transformation(extent={{-160,120},{-140,140}})));
+
+protected
+ Buildings.Controls.OBC.CDL.Logical.Not not1
+ "Logical Not"
+ annotation (Placement(transformation(extent={{-120,120},{-100,140}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Divide div
+ "Thermal capacity ratio"
+ annotation (Placement(transformation(extent={{-150,34},{-130,54}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Hysteresis hys(
+ final uLow=fraMinFir,
+ final uHigh=fraMinFir + sigDif)
+ "Hysteresis loop"
+ annotation (Placement(transformation(extent={{-120,34},{-100,54}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Or or2 if have_priOnl
+ "Logical Or"
+ annotation (Placement(transformation(extent={{60,8},{80,28}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Divide div1
+ "Thermal capacity ratio"
+ annotation (Placement(transformation(extent={{-160,-50},{-140,-30}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Hysteresis hys1(
+ final uLow=fraDesCap,
+ final uHigh=fraDesCap + sigDif)
+ "Hysteresis loop"
+ annotation (Placement(transformation(extent={{-130,-50},{-110,-30}})));
+
+ Buildings.Controls.OBC.CDL.Logical.And3 and3
+ "Logical And"
+ annotation (Placement(transformation(extent={{180,-10},{200,10}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Subtract sub4 if not have_priOnl
+ "Compare primary and secondary circuit return temperature"
+ annotation (Placement(transformation(extent={{-162,-190},{-142,-170}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Hysteresis hys3(
+ final uLow=TCirDif - dTemp,
+ final uHigh=TCirDif) if not have_priOnl
+ "Hysteresis loop"
+ annotation (Placement(transformation(extent={{-132,-190},{-112,-170}})));
+
+ Buildings.Controls.OBC.CDL.Logical.And and2 if not have_priOnl
+ "Logical And"
+ annotation (Placement(transformation(extent={{-90,-110},{-70,-90}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Or or1 if not have_priOnl
+ "Logical Or"
+ annotation (Placement(transformation(extent={{60,-108},{80,-88}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Switch logSwi
+ "Logical switch"
+ annotation (Placement(transformation(extent={{100,-50},{120,-30}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant con1(
+ final k=true) if not have_priOnl
+ "Constant Boolean True source"
+ annotation (Placement(transformation(extent={{100,-80},{120,-60}})));
+
+ Buildings.Controls.OBC.CDL.Routing.RealExtractor extIndSig(
+ final nin=nSta)
+ "Identify stage type of current stage"
+ annotation (Placement(transformation(extent={{-20,-180},{0,-160}})));
+
+ Buildings.Controls.OBC.CDL.Conversions.IntegerToReal intToRea[nSta]
+ "Integer to Real conversion"
+ annotation (Placement(transformation(extent={{-60,-180},{-40,-160}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Switch logSwi1 if not have_priOnl
+ "Logical switch"
+ annotation (Placement(transformation(extent={{140,-100},{160,-80}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Not not2
+ "Logical Not"
+ annotation (Placement(transformation(extent={{-90,34},{-70,54}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Not not3
+ "Logical Not"
+ annotation (Placement(transformation(extent={{-90,-50},{-70,-30}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Hysteresis hys4(
+ final uLow=bypValClo,
+ final uHigh=bypValClo + sigDif) if have_priOnl
+ "Hysteresis loop"
+ annotation (Placement(transformation(extent={{-158,-10},{-138,10}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Hysteresis hys2(
+ final uLow=sigDif,
+ final uHigh=2*sigDif) if not have_priOnl
+ "Hysteresis loop"
+ annotation (Placement(transformation(extent={{-146,-90},{-126,-70}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Not not4 if not have_priOnl
+ "Logical Not"
+ annotation (Placement(transformation(extent={{-120,-90},{-100,-70}})));
+
+ Buildings.Controls.OBC.CDL.Conversions.RealToInteger reaToInt
+ "Real to Integer conversion"
+ annotation (Placement(transformation(extent={{20,-180},{40,-160}})));
+
+ Buildings.Controls.OBC.CDL.Integers.GreaterThreshold intGreThr(
+ final t=Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Types.BoilerTypes.condensingBoiler)
+ "Check for non-condensing boilers in stage"
+ annotation (Placement(transformation(extent={{60,-180},{80,-160}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Timer tim(
+ final t=delDesCapNonConBoi)
+ "Time since condition has been met"
+ annotation (Placement(transformation(extent={{50,-30},{70,-10}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Timer tim1(
+ final t=delBypVal) if have_priOnl
+ "Time since condition has been met"
+ annotation (Placement(transformation(extent={{-20,-10},{0,10}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Timer tim2(
+ final t=delTRetDif) if not have_priOnl
+ "Time since condition has been met"
+ annotation (Placement(transformation(extent={{-20,-110},{0,-90}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Timer tim3(
+ final t=delMinFir)
+ "Time since condition has been met"
+ annotation (Placement(transformation(extent={{-20,34},{0,54}})));
+
+ Buildings.Controls.OBC.CDL.Routing.RealExtractor extIndSig1(
+ final nin=nSta) if not have_priOnl
+ "Identify stage type of current stage"
+ annotation (Placement(transformation(extent={{-140,-140},{-120,-120}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant con2[nSta](
+ final k=boiMinPriPumSpeSta) if not have_priOnl
+ "Signal source for minimum primary pump speed for boiler plant stage"
+ annotation (Placement(transformation(extent={{-170,-140},{-150,-120}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Subtract sub2 if not have_priOnl
+ "Compare pump speed signal and minimum pump speed for stage"
+ annotation (Placement(transformation(extent={{-174,-90},{-154,-70}})));
+
+ Buildings.Controls.OBC.CDL.Logical.And and1
+ "Turn on timer when hysteresis turns on and reset it when hysteresis turns
+ off or stage change process is completed"
+ annotation (Placement(transformation(extent={{-50,34},{-30,54}})));
+
+ Buildings.Controls.OBC.CDL.Logical.And and4 if have_priOnl
+ "Turn on timer when hysteresis turns on and reset it when hysteresis turns
+ off or stage change process is completed"
+ annotation (Placement(transformation(extent={{-50,-10},{-30,10}})));
+
+ Buildings.Controls.OBC.CDL.Logical.And and5
+ "Turn on timer when hysteresis turns on and reset it when hysteresis turns
+ off or stage change process is completed"
+ annotation (Placement(transformation(extent={{-50,-50},{-30,-30}})));
+
+ Buildings.Controls.OBC.CDL.Logical.And and6 if not have_priOnl
+ "Turn on timer when hysteresis turns on and reset it when hysteresis turns
+ off or stage change process is completed"
+ annotation (Placement(transformation(extent={{-50,-110},{-30,-90}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Not not5
+ "Logical Not"
+ annotation (Placement(transformation(extent={{-120,80},{-100,100}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Timer tim4(
+ final t=delDesCapConBoi)
+ "Time since condition has been met"
+ annotation (Placement(transformation(extent={{50,-70},{70,-50}})));
+
+equation
+ connect(faiSafCon.TSupSet, THotWatSupSet) annotation (Line(points={{-162,135},
+ {-170,135},{-170,150},{-200,150}}, color={0,0,127}));
+ connect(faiSafCon.TSup, THotWatSup)
+ annotation (Line(points={{-162,130},{-170,130},{-170,120},{-200,120}},
+ color={0,0,127}));
+ connect(div.u2, uCapMin) annotation (Line(points={{-152,38},{-160,38},{-160,30},
+ {-200,30}}, color={0,0,127}));
+ connect(hys.u, div.y)
+ annotation (Line(points={{-122,44},{-128,44}},
+ color={0,0,127}));
+ connect(div1.u2, uCapDowDes) annotation (Line(points={{-162,-46},{-172,-46},{-172,
+ -30},{-200,-30}}, color={0,0,127}));
+ connect(hys1.u, div1.y)
+ annotation (Line(points={{-132,-40},{-138,-40}},
+ color={0,0,127}));
+ connect(and3.y, yStaDow)
+ annotation (Line(points={{202,0},{240,0}}, color={255,0,255}));
+ connect(and3.u1, not1.y) annotation (Line(points={{178,8},{150,8},{150,130},{-98,
+ 130}}, color={255,0,255}));
+ connect(and3.u2, or2.y) annotation (Line(points={{178,0},{134,0},{134,18},{82,
+ 18}}, color={255,0,255}));
+ connect(sub4.u1, TPriHotWatRet) annotation (Line(points={{-164,-174},{-170,
+ -174},{-170,-160},{-200,-160}}, color={0,0,127}));
+ connect(sub4.u2, TSecHotWatRet) annotation (Line(points={{-164,-186},{-170,
+ -186},{-170,-190},{-200,-190}}, color={0,0,127}));
+ connect(hys3.u,sub4. y)
+ annotation (Line(points={{-134,-180},{-140,-180}}, color={0,0,127}));
+ connect(logSwi.y, and3.u3) annotation (Line(points={{122,-40},{150,-40},{150,-8},
+ {178,-8}}, color={255,0,255}));
+ connect(intToRea.u, uTyp) annotation (Line(points={{-62,-170},{-70,-170},{-70,
+ -220}}, color={255,127,0}));
+ connect(intToRea.y, extIndSig.u)
+ annotation (Line(points={{-38,-170},{-22,-170}}, color={0,0,127}));
+ connect(uCur, extIndSig.index) annotation (Line(points={{-30,-220},{-30,-190},
+ {-10,-190},{-10,-182}}, color={255,127,0}));
+ connect(con1.y, logSwi1.u1) annotation (Line(points={{122,-70},{132,-70},{132,
+ -82},{138,-82}}, color={255,0,255}));
+ connect(or1.y, logSwi1.u3) annotation (Line(points={{82,-98},{138,-98}},
+ color={255,0,255}));
+ connect(and3.u2, logSwi1.y) annotation (Line(points={{178,0},{134,0},{134,-20},
+ {170,-20},{170,-90},{162,-90}}, color={255,0,255}));
+ connect(div.u1, uCapReq) annotation (Line(points={{-152,50},{-160,50},{-160,60},
+ {-200,60}}, color={0,0,127}));
+ connect(div1.u1, uCapReq) annotation (Line(points={{-162,-34},{-166,-34},{-166,
+ 60},{-200,60}}, color={0,0,127}));
+ connect(not2.u, hys.y)
+ annotation (Line(points={{-92,44},{-98,44}}, color={255,0,255}));
+ connect(hys1.y, not3.u)
+ annotation (Line(points={{-108,-40},{-92,-40}},color={255,0,255}));
+ connect(hys4.u, uBypValPos)
+ annotation (Line(points={{-160,0},{-200,0}}, color={0,0,127}));
+ connect(hys2.y, not4.u)
+ annotation (Line(points={{-124,-80},{-122,-80}},
+ color={255,0,255}));
+ connect(extIndSig.y, reaToInt.u)
+ annotation (Line(points={{2,-170},{18,-170}}, color={0,0,127}));
+ connect(intGreThr.u, reaToInt.y)
+ annotation (Line(points={{58,-170},{42,-170}}, color={255,127,0}));
+ connect(intGreThr.y, logSwi.u2) annotation (Line(points={{82,-170},{94,-170},{
+ 94,-40},{98,-40}},
+ color={255,0,255}));
+ connect(intGreThr.y, logSwi1.u2) annotation (Line(points={{82,-170},{94,-170},
+ {94,-90},{138,-90}},color={255,0,255}));
+ connect(faiSafCon.yFaiCon, not1.u)
+ annotation (Line(points={{-138,130},{-130,130},{-130,130},{-122,130}},
+ color={255,0,255}));
+ connect(not4.y, and2.u1) annotation (Line(points={{-98,-80},{-96,-80},{-96,-100},
+ {-92,-100}}, color={255,0,255}));
+ connect(hys3.y, and2.u2) annotation (Line(points={{-110,-180},{-98,-180},{-98,
+ -108},{-92,-108}},
+ color={255,0,255}));
+ connect(uStaChaProEnd, faiSafCon.uStaChaProEnd) annotation (Line(points={{-200,
+ 90},{-166,90},{-166,125},{-162,125}}, color={255,0,255}));
+ connect(con2.y, extIndSig1.u)
+ annotation (Line(points={{-148,-130},{-142,-130}}, color={0,0,127}));
+ connect(uCur, extIndSig1.index) annotation (Line(points={{-30,-220},{-30,-190},
+ {-80,-190},{-80,-160},{-130,-160},{-130,-142}}, color={255,127,0}));
+ connect(hys2.u,sub2. y)
+ annotation (Line(points={{-148,-80},{-152,-80}}, color={0,0,127}));
+ connect(uPumSpe,sub2. u1) annotation (Line(points={{-200,-60},{-176,-60},{
+ -176,-74}}, color={0,0,127}));
+ connect(extIndSig1.y,sub2. u2) annotation (Line(points={{-118,-130},{-112,-130},
+ {-112,-110},{-178,-110},{-178,-86},{-176,-86}}, color={0,0,127}));
+ connect(tim3.u, and1.y)
+ annotation (Line(points={{-22,44},{-28,44}}, color={255,0,255}));
+ connect(and1.u1, not2.y)
+ annotation (Line(points={{-52,44},{-68,44}}, color={255,0,255}));
+ connect(tim1.u, and4.y)
+ annotation (Line(points={{-22,0},{-28,0}}, color={255,0,255}));
+ connect(and5.y, tim.u)
+ annotation (Line(points={{-28,-40},{30,-40},{30,-20},{48,-20}},
+ color={255,0,255}));
+ connect(tim2.u, and6.y)
+ annotation (Line(points={{-22,-100},{-28,-100}}, color={255,0,255}));
+ connect(hys4.y, and4.u1)
+ annotation (Line(points={{-136,0},{-52,0}}, color={255,0,255}));
+ connect(not3.y, and5.u1)
+ annotation (Line(points={{-68,-40},{-52,-40}}, color={255,0,255}));
+ connect(and2.y, and6.u1)
+ annotation (Line(points={{-68,-100},{-52,-100}}, color={255,0,255}));
+ connect(not5.u, uStaChaProEnd)
+ annotation (Line(points={{-122,90},{-200,90}}, color={255,0,255}));
+ connect(not5.y, and1.u2) annotation (Line(points={{-98,90},{-60,90},{-60,36},{
+ -52,36}}, color={255,0,255}));
+ connect(not5.y, and4.u2) annotation (Line(points={{-98,90},{-60,90},{-60,-8},{
+ -52,-8}}, color={255,0,255}));
+ connect(not5.y, and5.u2) annotation (Line(points={{-98,90},{-60,90},{-60,-48},
+ {-52,-48}}, color={255,0,255}));
+ connect(not5.y, and6.u2) annotation (Line(points={{-98,90},{-60,90},{-60,-108},
+ {-52,-108}}, color={255,0,255}));
+
+ connect(tim3.passed, or2.u1) annotation (Line(points={{2,36},{40,36},{40,18},{
+ 58,18}}, color={255,0,255}));
+ connect(tim3.passed, or1.u1) annotation (Line(points={{2,36},{40,36},{40,-98},
+ {58,-98}}, color={255,0,255}));
+ connect(tim1.passed, or2.u2) annotation (Line(points={{2,-8},{50,-8},{50,10},{
+ 58,10}}, color={255,0,255}));
+ connect(and5.y, tim4.u) annotation (Line(points={{-28,-40},{30,-40},{30,-60},{
+ 48,-60}}, color={255,0,255}));
+ connect(tim.passed, logSwi.u1) annotation (Line(points={{72,-28},{90,-28},{90,
+ -32},{98,-32}}, color={255,0,255}));
+ connect(tim4.passed, logSwi.u3) annotation (Line(points={{72,-68},{90,-68},{90,
+ -48},{98,-48}}, color={255,0,255}));
+ connect(tim2.passed, or1.u2) annotation (Line(points={{2,-108},{40,-108},{40,-106},
+ {58,-106}}, color={255,0,255}));
+annotation(defaultComponentName = "staDow",
+ Icon(coordinateSystem(extent={{-100,-160},{100,190}}),
+ graphics={
+ Rectangle(
+ extent={{-100,-160},{100,190}},
+ lineColor={0,0,127},
+ fillColor={255,255,255},
+ fillPattern=FillPattern.Solid),
+ Text(
+ extent={{-120,244},{100,206}},
+ textColor={0,0,255},
+ textString="%name"),
+ Rectangle(
+ extent={{-80,-10},{-20,-22}},
+ lineColor={0,0,127}),
+ Rectangle(
+ extent={{-80,-28},{-20,-40}},
+ lineColor={0,0,127}),
+ Rectangle(
+ extent={{-76,-22},{-72,-28}},
+ lineColor={0,0,127}),
+ Rectangle(
+ extent={{-28,-22},{-24,-28}},
+ lineColor={0,0,127}),
+ Rectangle(
+ extent={{20,-10},{80,-22}},
+ lineColor={0,0,127}),
+ Rectangle(
+ extent={{20,-28},{80,-40}},
+ lineColor={0,0,127}),
+ Rectangle(
+ extent={{24,-22},{28,-28}},
+ lineColor={0,0,127}),
+ Rectangle(
+ extent={{72,-22},{76,-28}},
+ lineColor={0,0,127}),
+ Rectangle(
+ extent={{-80,30},{-20,18}},
+ lineColor={0,0,127}),
+ Rectangle(
+ extent={{-80,12},{-20,0}},
+ lineColor={0,0,127}),
+ Rectangle(
+ extent={{-76,18},{-72,12}},
+ lineColor={0,0,127}),
+ Rectangle(
+ extent={{-28,18},{-24,12}},
+ lineColor={0,0,127})}),
+ Diagram(coordinateSystem(preserveAspectRatio=false,
+ extent={{-180,-200},{220,180}})),
+ Documentation(info="
+
+-
+If the current stage
uCur
has only condensing boilers, the
+block outputs a boolean stage down signal yStaDow
when all
+the following are true:
+
+-
+
+-
+Required heating capacity
uCapReq
is lower than fraMinFir
+times the minimum firing rate uCapMin
of the current stage
+for a time period delMinFir
, or
+
+-
+Primary circuit pump speed
uPumSpe
is at the minimum
+allowed flow rate boiMinPriPumSpeSta
and primary circuit hot
+water return temperature TPriHotWatRet
+exceeds the secondary circuit hot water return temperature TSecHotWatRet
by
+TCirDif
for a time period delTRetDiff
.
+
+
+
+-
+Failsafe condition is not
true
.
+
+-
+Required heating capacity
uCapReq
is less than fraDesCap
+times the design capacity uCapDowDes
of the next available
+lower stage for a time period delDesCapConBoi
.
+
+
+
+-
+If the current stage
uCur
has a non-condensing boiler, the
+block outputs a boolean stage down signal yStaDow
when all
+the following are true:
+
+-
+Failsafe condition is not
true
.
+
+-
+Required heating capacity
uCapReq
is less than fraDesCap
+times the design capacity uCapDowDes
of the next available
+lower stage for a time period delDesCapNonConBoi
.
+
+
+
+-
+If the plant is a primary-only, condensing type boiler plant,
+
have_priOnl
is set to true
and the block
+outputs a boolean stage down signal yStaDow
+when all the following are true:
+
+-
+
+-
+Required heating capacity
uCapReq
is lower than fraMinFir
+times the minimum firing rate uCapMin
of the current stage
+for a time period delMinFir
, or
+
+-
+The minimum flow bypass valve position
uBypValPos
is greater
+than bypValClo
% open for a time period delBypVal
.
+
+
+
+-
+Failsafe condition is not
true
.
+
+-
+Required heating capacity
uCapReq
is less than fraDesCap
+times the design capacity uCapDowDes
of the next available
+lower stage for a time period delDesCapConBoi
.
+
+
+
+
+
+The implementation is according to ASHRAE RP1711 March 2020 draft, section 5.3.3.10.
+Timer reset has been implemented according to 5.3.3.10.2.
+
+",
+revisions="
+
+-
+May 27, 2020, by Karthik Devaprasad:
+First implementation.
+
+
+"));
+end Down;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Staging/SetPoints/Subsequences/EfficiencyCondition.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Staging/SetPoints/Subsequences/EfficiencyCondition.mo
new file mode 100644
index 00000000000..e697a0c036e
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Staging/SetPoints/Subsequences/EfficiencyCondition.mo
@@ -0,0 +1,318 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Staging.SetPoints.Subsequences;
+block EfficiencyCondition
+ "Efficiency condition used in staging up and down"
+
+ parameter Integer nSta = 5
+ "Number of stages in the boiler plant";
+
+ parameter Real fraNonConBoi(
+ final min=0,
+ final unit="1",
+ displayUnit="1") = 0.9
+ "Fraction of design capacity of current stage at which the efficiency condition
+ is satisfied for non-condensing boilers";
+
+ parameter Real fraConBoi(
+ final min=0,
+ final unit="1",
+ displayUnit="1") = 1.5
+ "Fraction of B-Stage minimum of next higher stage at which the efficiency
+ condition is satisfied for condensing boilers";
+
+ parameter Real sigDif(
+ final min=0,
+ final unit="1",
+ final max=1,
+ displayUnit="1") = 0.1
+ "Signal hysteresis deadband"
+ annotation (Dialog(tab="Advanced"));
+
+ parameter Real delCapReq(
+ final unit="s",
+ displayUnit="s",
+ final quantity="Time") = 600
+ "Enable delay for heating requirement condition";
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uStaChaProEnd
+ "Signal indicating end of stage change process"
+ annotation (Placement(transformation(extent={{-160,-200},{-120,-160}}),
+ iconTransformation(extent={{-140,70},{-100,110}},
+ rotation=90)));
+
+ Buildings.Controls.OBC.CDL.Interfaces.IntegerInput uTyp[nSta]
+ "Vector of boiler types for all stages"
+ annotation (Placement(transformation(extent={{-160,-120},{-120,-80}}),
+ iconTransformation(extent={{-140,-80},{-100,-40}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.IntegerInput uAvaUp
+ "Stage number of next available higher stage"
+ annotation (Placement(transformation(extent={{-160,-160},{-120,-120}}),
+ iconTransformation(extent={{-140,-110},{-100,-70}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput uCapReq(
+ final unit="W",
+ displayUnit="W",
+ final quantity="Power")
+ "Heating capacity required"
+ annotation (Placement(transformation(extent={{-160,40},{-120,80}}),
+ iconTransformation(extent={{-140,70},{-100,110}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput uCapDes(
+ final unit="W",
+ displayUnit="W",
+ final quantity="Power")
+ "Design heating capacity of current stage"
+ annotation (Placement(transformation(extent={{-160,80},{-120,120}}),
+ iconTransformation(extent={{-140,40},{-100,80}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput uCapUpMin(
+ final unit="W",
+ displayUnit="W",
+ final quantity="Power")
+ "Minimum capacity of the next available higher stage"
+ annotation (Placement(transformation(extent={{-160,0},{-120,40}}),
+ iconTransformation(extent={{-140,10},{-100,50}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput VHotWat_flow(
+ final unit="m3/s",
+ displayUnit="m3/s",
+ final quantity="VolumeFlowRate")
+ "Measured hot-water flow-rate"
+ annotation (Placement(transformation(extent={{-160,-40},{-120,0}}),
+ iconTransformation(extent={{-140,-20},{-100,20}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput VUpMinSet_flow(
+ final unit="m3/s",
+ displayUnit="m3/s",
+ final quantity="VolumeFlowRate")
+ "Minimum flow setpoint for the next available higher stage"
+ annotation (Placement(transformation(extent={{-160,-80},{-120,-40}}),
+ iconTransformation(extent={{-140,-50},{-100,-10}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanOutput yEffCon
+ "Efficiency condition for boiler staging"
+ annotation (Placement(transformation(extent={{160,-20},{200,20}}),
+ iconTransformation(extent={{100,-20},{140,20}})));
+
+protected
+ Buildings.Controls.OBC.CDL.Continuous.Divide div
+ "Divider to get relative value of required heating capacity"
+ annotation (Placement(transformation(extent={{-80,20},{-60,40}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.AddParameter addPar(
+ final p=1e-6)
+ annotation (Placement(transformation(extent={{-80,-80},{-60,-60}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Divide div1
+ "Divider to get relative value of required heating capacity"
+ annotation (Placement(transformation(extent={{-80,60},{-60,80}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Divide div2
+ "Divider to get relative value of flow-rate"
+ annotation (Placement(transformation(extent={{-40,-60},{-20,-40}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Hysteresis hys(
+ final uLow=-sigDif,
+ final uHigh=0)
+ "Hysteresis loop for flow-rate condition"
+ annotation (Placement(transformation(extent={{30,-60},{50,-40}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant con1(
+ final k=true)
+ "Constant boolean source"
+ annotation (Placement(transformation(extent={{30,-20},{50,0}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Hysteresis hys1(
+ final uLow=fraNonConBoi - sigDif,
+ final uHigh=fraNonConBoi)
+ "Hysteresis loop for heating capacity condition of non-condensing boilers"
+ annotation (Placement(transformation(extent={{-40,60},{-20,80}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Hysteresis hys2(
+ final uLow=fraConBoi - sigDif,
+ final uHigh=fraConBoi)
+ "Hysteresis loop for heating capacity condition of condensing boilers"
+ annotation (Placement(transformation(extent={{-40,20},{-20,40}})));
+
+ Buildings.Controls.OBC.CDL.Conversions.IntegerToReal intToRea[nSta]
+ "Convert integers in stage-type vector to real data-type"
+ annotation (Placement(transformation(extent={{-80,-110},{-60,-90}})));
+
+ Buildings.Controls.OBC.CDL.Routing.RealExtractor extIndSig(
+ final nin=nSta)
+ "Pick out stage-type for next stage from vector"
+ annotation (Placement(transformation(extent={{-40,-110},{-20,-90}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.GreaterThreshold greThr(
+ final t=1)
+ "Check for non-condensing boilers"
+ annotation (Placement(transformation(extent={{30,-110},{50,-90}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Switch logSwi
+ "Switch for heating capacity condition based on stage type"
+ annotation (Placement(transformation(extent={{100,40},{120,60}})));
+
+ Buildings.Controls.OBC.CDL.Logical.And and2
+ "Logical And"
+ annotation (Placement(transformation(extent={{130,-10},{150,10}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Switch logSwi1
+ "Switch for flow-rate condition"
+ annotation (Placement(transformation(extent={{100,-40},{120,-20}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Subtract sub1
+ "Find difference between measurted flowrate and minimum flow setpoint for next higher stage"
+ annotation (Placement(transformation(extent={{-80,-50},{-60,-30}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Timer tim(t=delCapReq)
+ "Time since condition has been met"
+ annotation (Placement(transformation(extent={{20,60},{40,80}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Timer tim1(t=delCapReq)
+ "Time since condition has been met"
+ annotation (Placement(transformation(extent={{20,20},{40,40}})));
+
+ Buildings.Controls.OBC.CDL.Logical.And and1
+ "Turn on timer when hysteresis turns on and reset it when hysteresis turns
+ off or stage change process is completed"
+ annotation (Placement(transformation(extent={{-10,60},{10,80}})));
+
+ Buildings.Controls.OBC.CDL.Logical.And and3
+ "Turn on timer when hysteresis turns on and reset it when hysteresis turns
+ off or stage change process is completed"
+ annotation (Placement(transformation(extent={{-10,20},{10,40}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Not not1
+ "Logical Not"
+ annotation (Placement(transformation(extent={{-40,-190},{-20,-170}})));
+
+equation
+ connect(div.u2,uCapUpMin)
+ annotation (Line(points={{-82,24},{-110,24},{-110,20},{-140,20}},
+ color={0,0,127}));
+ connect(div1.u2, uCapDes) annotation (Line(points={{-82,64},{-90,64},{-90,70},
+ {-114,70},{-114,100},{-140,100}}, color={0,0,127}));
+ connect(sub1.u1, VHotWat_flow) annotation (Line(points={{-82,-34},{-110,-34},{
+ -110,-20},{-140,-20}}, color={0,0,127}));
+ connect(sub1.u2, VUpMinSet_flow) annotation (Line(points={{-82,-46},{-110,-46},
+ {-110,-60},{-140,-60}}, color={0,0,127}));
+ connect(sub1.y, div2.u1)
+ annotation (Line(points={{-58,-40},{-50,-40},{-50,-44},{-42,-44}},
+ color={0,0,127}));
+ connect(div2.y, hys.u)
+ annotation (Line(points={{-18,-50},{28,-50}},
+ color={0,0,127}));
+ connect(div1.y, hys1.u)
+ annotation (Line(points={{-58,70},{-42,70}},
+ color={0,0,127}));
+ connect(div.y, hys2.u)
+ annotation (Line(points={{-58,30},{-42,30}},
+ color={0,0,127}));
+ connect(intToRea.u, uTyp)
+ annotation (Line(points={{-82,-100},{-140,-100}},
+ color={255,127,0}));
+ connect(extIndSig.u, intToRea.y)
+ annotation (Line(points={{-42,-100},{-58,-100}},
+ color={0,0,127}));
+ connect(extIndSig.index, uAvaUp)
+ annotation (Line(points={{-30,-112},{-30,-140},{-140,-140}},
+ color={255,127,0}));
+ connect(greThr.u, extIndSig.y)
+ annotation (Line(points={{28,-100},{-18,-100}},
+ color={0,0,127}));
+ connect(greThr.y, logSwi.u2)
+ annotation (Line(points={{52,-100},{92,-100},{92,50},{98,50}},
+ color={255,0,255}));
+ connect(and2.y, yEffCon)
+ annotation (Line(points={{152,0},{180,0}},
+ color={255,0,255}));
+ connect(logSwi.y, and2.u1)
+ annotation (Line(points={{122,50},{126,50},{126,0},{128,0}},
+ color={255,0,255}));
+ connect(logSwi1.y, and2.u2)
+ annotation (Line(points={{122,-30},{126,-30},{126,-8},{128,-8}},
+ color={255,0,255}));
+ connect(con1.y, logSwi1.u1)
+ annotation (Line(points={{52,-10},{80,-10},{80,-22},{98,-22}},
+ color={255,0,255}));
+ connect(hys.y, logSwi1.u3)
+ annotation (Line(points={{52,-50},{80,-50},{80,-38},{98,-38}},
+ color={255,0,255}));
+ connect(logSwi1.u2, greThr.y)
+ annotation (Line(points={{98,-30},{92,-30},{92,-100},{52,-100}},
+ color={255,0,255}));
+ connect(div.u1, uCapReq) annotation (Line(points={{-82,36},{-100,36},{-100,60},
+ {-140,60}}, color={0,0,127}));
+ connect(div1.u1, uCapReq) annotation (Line(points={{-82,76},{-100,76},{-100,60},
+ {-140,60}}, color={0,0,127}));
+ connect(hys1.y, and1.u1)
+ annotation (Line(points={{-18,70},{-12,70}}, color={255,0,255}));
+ connect(and1.y, tim.u)
+ annotation (Line(points={{12,70},{18,70}}, color={255,0,255}));
+ connect(and3.y, tim1.u)
+ annotation (Line(points={{12,30},{18,30}}, color={255,0,255}));
+ connect(and3.u1, hys2.y)
+ annotation (Line(points={{-12,30},{-18,30}}, color={255,0,255}));
+ connect(not1.u, uStaChaProEnd)
+ annotation (Line(points={{-42,-180},{-140,-180}}, color={255,0,255}));
+ connect(not1.y, and3.u2) annotation (Line(points={{-18,-180},{-16,-180},{-16,22},
+ {-12,22}}, color={255,0,255}));
+ connect(not1.y, and1.u2) annotation (Line(points={{-18,-180},{-16,-180},{-16,62},
+ {-12,62}}, color={255,0,255}));
+
+ connect(tim.passed, logSwi.u1) annotation (Line(points={{42,62},{80,62},{80,58},
+ {98,58}}, color={255,0,255}));
+ connect(tim1.passed, logSwi.u3) annotation (Line(points={{42,22},{80,22},{80,42},
+ {98,42}}, color={255,0,255}));
+ connect(VUpMinSet_flow, addPar.u) annotation (Line(points={{-140,-60},{-110,-60},
+ {-110,-70},{-82,-70}}, color={0,0,127}));
+ connect(addPar.y, div2.u2) annotation (Line(points={{-58,-70},{-50,-70},{-50,-56},
+ {-42,-56}}, color={0,0,127}));
+annotation (
+ defaultComponentName = "effCon",
+ Icon(
+ coordinateSystem(extent={{-100,-100},{100,100}}),
+ graphics={Rectangle(
+ extent={{-100,-100},{100,100}},
+ lineColor={0,0,127},
+ fillColor={255,255,255},
+ fillPattern=FillPattern.Solid),
+ Text(
+ extent={{-120,146},{100,108}},
+ textColor={0,0,255},
+ textString="%name")}),
+ Diagram(
+ coordinateSystem(
+ preserveAspectRatio=false,
+ extent={{-120,-200},{160,120}})),
+ Documentation(
+ info="
+
+ Efficiency condition used in staging up and down for boiler plants with both
+ condensing and non-condensing boilers. Implemented according to the
+ specification provided in 5.3.3.10, subsections 6.b, 8.b, 10.b and 12.b in
+ RP-1711, March 2020 Draft. Timer reset has been implemented according to
+ 5.3.3.10.2.
+
+
+
+
+ State-machine chart for the sequence for condensing boilers defined in RP-1711
+
+
+
+
+ State-machine chart for the sequence for non-condensing boilers defined in RP-1711
+
+ ",
+ revisions="
+
+ -
+ May 21, 2020, by Karthik Devaprasad:
+ First implementation.
+
+
+ "));
+end EfficiencyCondition;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Staging/SetPoints/Subsequences/FailsafeCondition.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Staging/SetPoints/Subsequences/FailsafeCondition.mo
new file mode 100644
index 00000000000..b0707b9b356
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Staging/SetPoints/Subsequences/FailsafeCondition.mo
@@ -0,0 +1,134 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Staging.SetPoints.Subsequences;
+block FailsafeCondition
+ "Failsafe condition used in staging up and down"
+
+ parameter Real TDif(
+ final unit="K",
+ displayUnit="K",
+ final quantity="TemperatureDifference") = 10
+ "Required temperature difference between setpoint and measured temperature
+ for failsafe condition";
+
+ parameter Real TDifHys(
+ final unit="K",
+ displayUnit="K",
+ final quantity="TemperatureDifference") = 1
+ "Temperature deadband for hysteresis loop"
+ annotation (Dialog(tab="Advanced"));
+
+ parameter Real delEna(
+ final unit="s",
+ displayUnit="s",
+ final quantity="Time") = 900
+ "Enable delay";
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uStaChaProEnd
+ "Signal indicating end of stage change process"
+ annotation (Placement(transformation(extent={{-160,-70},{-120,-30}}),
+ iconTransformation(extent={{-140,-70},{-100,-30}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput TSupSet(
+ final unit="K",
+ displayUnit="K",
+ final quantity="ThermodynamicTemperature")
+ "Hot water supply temperature setpoint"
+ annotation (Placement(transformation(extent={{-160,30},{-120,70}}),
+ iconTransformation(extent={{-140,30},{-100,70}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput TSup(
+ final unit="K",
+ displayUnit="K",
+ final quantity="ThermodynamicTemperature")
+ "Measured hot water supply temperature"
+ annotation (Placement(transformation(extent={{-160,-20},{-120,20}}),
+ iconTransformation(extent={{-140,-20},{-100,20}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanOutput yFaiCon
+ "Failsafe condition for boiler staging"
+ annotation (Placement(transformation(extent={{120,-20},{160,20}}),
+ iconTransformation(extent={{100,-20},{140,20}})));
+
+protected
+ Buildings.Controls.OBC.CDL.Continuous.Subtract sub2
+ "Difference between setpoint and measured temperature"
+ annotation (Placement(transformation(extent={{-80,-10},{-60,10}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Hysteresis hys(
+ final uLow=TDif - TDifHys,
+ final uHigh=TDif)
+ "Hysteresis deadband to prevent cycling"
+ annotation (Placement(transformation(extent={{-40,-10},{-20,10}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Timer tim(
+ final t=delEna)
+ "Time since condition has been met"
+ annotation (Placement(transformation(extent={{40,-10},{60,10}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Not not1
+ "Logical Not"
+ annotation (Placement(transformation(extent={{-40,-60},{-20,-40}})));
+
+ Buildings.Controls.OBC.CDL.Logical.And and2
+ "Turn on timer when hysteresis turns on and reset it when hysteresis turns
+ off or stage change process is completed"
+ annotation (Placement(transformation(extent={{0,-10},{20,10}})));
+
+equation
+ connect(sub2.u2, TSup)
+ annotation (Line(points={{-82,-6},{-90,-6},{-90,0},{-140,0}},
+ color={0,0,127}));
+ connect(sub2.u1, TSupSet)
+ annotation (Line(points={{-82,6},{-90,6},{-90,50},{-140,50}},
+ color={0,0,127}));
+ connect(sub2.y, hys.u)
+ annotation (Line(points={{-58,0},{-42,0}},
+ color={0,0,127}));
+ connect(not1.u, uStaChaProEnd)
+ annotation (Line(points={{-42,-50},{-140,-50}}, color={255,0,255}));
+ connect(hys.y, and2.u1)
+ annotation (Line(points={{-18,0},{-2,0}}, color={255,0,255}));
+ connect(not1.y, and2.u2) annotation (Line(points={{-18,-50},{-12,-50},{-12,-8},
+ {-2,-8}}, color={255,0,255}));
+ connect(and2.y, tim.u)
+ annotation (Line(points={{22,0},{38,0}}, color={255,0,255}));
+
+ connect(tim.passed, yFaiCon) annotation (Line(points={{62,-8},{70,-8},{70,0},{
+ 140,0}}, color={255,0,255}));
+annotation (defaultComponentName = "faiSafCon",
+ Icon(coordinateSystem(extent={{-100,-100},{100,100}}),
+ graphics={
+ Rectangle(
+ extent={{-100,-100},{100,100}},
+ lineColor={0,0,127},
+ fillColor={255,255,255},
+ fillPattern=FillPattern.Solid),
+ Text(
+ extent={{-120,146},{100,108}},
+ textColor={0,0,255},
+ textString="%name")}),
+ Diagram(coordinateSystem(
+ preserveAspectRatio=false,
+ extent={{-120,-120},{120,120}})),
+ Documentation(info="
+
+ Failsafe condition used in staging up and down, implemented according to
+ the specification provided in section 5.3.3.10, subsections 6.c, 8.c, 10.c
+ and 12.c in RP-1711, March 2020 Draft. Timer reset has been implemented
+ according to 5.3.3.10.2.
+
+
+
+
+ State-machine chart for the sequence defined in RP-1711
+
+ ",
+ revisions="
+
+ -
+ May 21, 2020, by Karthik Devaprasad:
+ First implementation.
+
+
+ "));
+end FailsafeCondition;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Staging/SetPoints/Subsequences/Status.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Staging/SetPoints/Subsequences/Status.mo
new file mode 100644
index 00000000000..682c70ddde3
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Staging/SetPoints/Subsequences/Status.mo
@@ -0,0 +1,403 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Staging.SetPoints.Subsequences;
+block Status
+ "Outputs current stage boiler index vector, current, next available lower and
+ higher stage index and whether current stage is the lowest and/or the highest
+ available stage"
+
+ parameter Integer nSta = 5
+ "Number of stages";
+
+ parameter Integer nBoi = 3
+ "Number of boilers";
+
+ parameter Integer staMat[nSta, nBoi] = {{1,0,0},{0,1,1},{1,1,0},{0,1,1},{1,1,1}}
+ "Staging matrix with stages in rows and boilers in columns";
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uAva[nSta](
+ final start = fill(true, nSta))
+ "Stage availability status"
+ annotation (Placement(transformation(extent={{-460,-100},{-420,-60}}),
+ iconTransformation(extent={{-140,-80},{-100,-40}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.IntegerInput u(
+ final min=0,
+ final max=nSta,
+ final start = 0)
+ "Current boiler stage"
+ annotation (Placement(transformation(extent={{-460,60},{-420,100}}),
+ iconTransformation(extent={{-140,40},{-100,80}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanOutput yHig
+ "If true current stage is the highest available stage"
+ annotation (Placement(transformation(extent={{440,20},{480,60}}),
+ iconTransformation(extent={{100,-30},{140,10}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanOutput yLow
+ "If true current stage is the lowest available stage"
+ annotation (Placement(transformation(extent={{440,-100},{480,-60}}),
+ iconTransformation(extent={{100,-60},{140,-20}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanOutput yAvaCur
+ "Current stage availability status"
+ annotation (Placement(transformation(extent={{440,-260},{480,-220}}),
+ iconTransformation(extent={{100,-90},{140,-50}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.IntegerOutput yAvaUp(
+ final min=0,
+ final max=nSta)
+ "Next available higher stage"
+ annotation (Placement(transformation(extent={{440,60},{480,100}}),
+ iconTransformation(extent={{100,50},{140,90}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.IntegerOutput yAvaDow(
+ final min=0,
+ final max=nSta)
+ "Next available lower stage"
+ annotation (Placement(
+ transformation(extent={{440,-60},{480,-20}}),
+ iconTransformation(extent={{100,20},{140,60}})));
+
+protected
+ final parameter Integer staInd[nSta] = {i for i in 1:nSta}
+ "Stage index vector";
+
+ final parameter Integer staIndMat[nSta, nBoi] = {j for i in 1:nBoi, j in 1:nSta}
+ "Matrix of staging matrix dimensions with stage indices in each column";
+
+ final parameter Integer lowDia[nSta, nSta] = {if i<=j then 1 else 0 for i in 1:nSta, j in 1:nSta}
+ "Lower diagonal unit matrix";
+
+ Buildings.Controls.OBC.CDL.Logical.Not not1 "Not available"
+ annotation (Placement(transformation(extent={{-60,-160},{-40,-140}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Switch intSwi2
+ "Switch"
+ annotation (Placement(transformation(extent={{100,-220},{120,-200}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Switch intSwi3
+ "Switch"
+ annotation (Placement(transformation(extent={{360,70},{380,90}})));
+
+ Buildings.Controls.OBC.CDL.Routing.IntegerScalarReplicator intRep(
+ final nout=nSta)
+ "Replicates signal to a length equal the stage count"
+ annotation (Placement(transformation(extent={{-300,190},{-280,210}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Multiply proInt1[nSta]
+ "Outputs a vector of stage indices for any available stage above the current stage"
+ annotation (Placement(transformation(extent={{-60,100},{-40,120}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant staIndx[nSta](
+ final k=staInd)
+ "Stage index vector"
+ annotation (Placement(transformation(extent={{-240,120},{-220,140}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Greater intGre[nSta]
+ "Identifies stages that are above the current stage"
+ annotation (Placement(transformation(extent={{-180,80},{-160,100}})));
+
+ Buildings.Controls.OBC.CDL.Conversions.BooleanToInteger booToInt1[nSta](
+ final integerTrue=fill(1, nSta),
+ final integerFalse=fill(nSta + 1, nSta))
+ "Type converter that outputs a value larger than the stage count for any false input"
+ annotation (Placement(transformation(extent={{-100,70},{-80,90}})));
+
+ Buildings.Controls.OBC.CDL.Logical.And and2[nSta]
+ "Identifies any available stages above the current stage"
+ annotation (Placement(transformation(extent={{-140,70},{-120,90}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.MultiMin multiMin(
+ final nin=nSta)
+ "Minimum of a vector input"
+ annotation (Placement(transformation(extent={{20,100},{40,120}})));
+
+ Buildings.Controls.OBC.CDL.Conversions.IntegerToReal intToRea1[nSta]
+ "Type converter"
+ annotation (Placement(transformation(extent={{-20,100},{0,120}})));
+
+ Buildings.Controls.OBC.CDL.Conversions.RealToInteger reaToInt
+ "Type converter"
+ annotation (Placement(transformation(extent={{60,100},{80,120}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Less intLes[nSta]
+ "Identifies stages that are below the current stage"
+ annotation (Placement(transformation(extent={{-180,-70},{-160,-50}})));
+
+ Buildings.Controls.OBC.CDL.Logical.And and1[nSta]
+ "Identifies any available stage below the current stage"
+ annotation (Placement(transformation(extent={{-140,-100},{-120,-80}})));
+
+ Buildings.Controls.OBC.CDL.Conversions.BooleanToInteger booToInt2[nSta](
+ final integerTrue=fill(1, nSta),
+ final integerFalse=fill(0, nSta))
+ "Type converter that outputs zero for any false input"
+ annotation (Placement(transformation(extent={{-100,-100},{-80,-80}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Multiply proInt2[nSta]
+ "Outputs vector of stage indices for any available stage below the current stage"
+ annotation (Placement(transformation(extent={{-60,-80},{-40,-60}})));
+
+ Buildings.Controls.OBC.CDL.Conversions.IntegerToReal intToRea3[nSta]
+ "Type converter"
+ annotation (Placement(transformation(extent={{-20,-80},{0,-60}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.MultiMax multiMax(
+ final nin=nSta)
+ "Maximum of a vector input"
+ annotation (Placement(transformation(extent={{20,-80},{40,-60}})));
+
+ Buildings.Controls.OBC.CDL.Conversions.RealToInteger reaToInt1
+ "Type converter"
+ annotation (Placement(transformation(extent={{60,-80},{80,-60}})));
+
+ Buildings.Controls.OBC.CDL.Integers.GreaterThreshold intGreThr(
+ final t=nSta)
+ "True if there are no higher available stages"
+ annotation (Placement(transformation(extent={{100,100},{120,120}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Switch intSwi
+ "If no higher stage is available, output current stage"
+ annotation (Placement(transformation(extent={{180,100},{200,120}})));
+
+ Buildings.Controls.OBC.CDL.Integers.LessEqualThreshold intLesEquThr(
+ final t=0)
+ "If the current stage is the lowest available the input value equals 0"
+ annotation (Placement(transformation(extent={{100,-80},{120,-60}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Switch intSwi1
+ "Logical switch"
+ annotation (Placement(transformation(extent={{180,-80},{200,-60}})));
+
+ CDL.Routing.BooleanExtractor extStaAva(
+ final nin=nSta)
+ "Extracts stage availability for the current stage"
+ annotation (Placement(transformation(extent={{-200,-160},{-180,-140}})));
+
+ Buildings.Controls.OBC.CDL.Utilities.Assert cheStaAva1(
+ final message="There are no available boiler stages. The staging cannot be performed.")
+ "Checks if any stage is available"
+ annotation (Placement(transformation(extent={{-320,-50},{-300,-30}})));
+
+ Buildings.Controls.OBC.CDL.Logical.MultiOr mulOr(
+ final nin=nSta)
+ "Logical or"
+ annotation (Placement(transformation(extent={{-360,-50},{-340,-30}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant conInt(
+ final k=1)
+ "Lowest allowed stage"
+ annotation (Placement(transformation(extent={{100,-40},{120,-20}})));
+
+ Buildings.Controls.OBC.CDL.Logical.And and4
+ "Logical And"
+ annotation (Placement(transformation(extent={{220,70},{240,90}})));
+
+ Buildings.Controls.OBC.CDL.Integers.GreaterEqualThreshold intGreEquThr(
+ final t=1)
+ "Check if index is in the range"
+ annotation (Placement(transformation(extent={{-380,-130},{-360,-110}})));
+
+ Buildings.Controls.OBC.CDL.Integers.LessEqualThreshold intLesEquThr1(
+ final t=nSta)
+ "Check if index is in the range"
+ annotation (Placement(transformation(extent={{-380,-210},{-360,-190}})));
+
+ Buildings.Controls.OBC.CDL.Logical.And and3
+ "Check if index is in the range"
+ annotation (Placement(transformation(extent={{-320,-130},{-300,-110}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant conInt1(
+ final k=1)
+ "Dummy index so the extractor will not have out of range index"
+ annotation (Placement(transformation(extent={{-320,-210},{-300,-190}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Switch intSwi4 "Valid index"
+ annotation (Placement(transformation(extent={{-260,-180},{-240,-160}})));
+
+equation
+ connect(staIndx.y, intGre.u1) annotation (Line(points={{-218,130},{-200,130},{
+ -200,90},{-182,90}}, color={255,127,0}));
+ connect(intRep.y, intGre.u2) annotation (Line(points={{-278,200},{-260,200},{
+ -260,82},{-182,82}},
+ color={255,127,0}));
+ connect(intGre.y, and2.u1) annotation (Line(points={{-158,90},{-150,90},{-150,
+ 80},{-142,80}},color={255,0,255}));
+ connect(uAva, and2.u2) annotation (Line(points={{-440,-80},{-220,-80},{-220,72},
+ {-142,72}}, color={255,0,255}));
+ connect(staIndx.y, proInt1.u1) annotation (Line(points={{-218,130},{-70,130},{
+ -70,116},{-62,116}}, color={255,127,0}));
+ connect(booToInt1.y, proInt1.u2) annotation (Line(points={{-78,80},{-70,80},{-70,
+ 104},{-62,104}}, color={255,127,0}));
+ connect(proInt1.y, intToRea1.u)
+ annotation (Line(points={{-38,110},{-22,110}}, color={255,127,0}));
+ connect(intToRea1.y, multiMin.u) annotation (Line(points={{2,110},{18,110}},
+ color={0,0,127}));
+ connect(intRep.y, intLes.u2) annotation (Line(points={{-278,200},{-260,200},{-260,
+ -68},{-182,-68}}, color={255,127,0}));
+ connect(staIndx.y, intLes.u1) annotation (Line(points={{-218,130},{-200,130},{
+ -200,-60},{-182,-60}}, color={255,127,0}));
+ connect(uAva, and1.u2) annotation (Line(points={{-440,-80},{-220,-80},{-220,-98},
+ {-142,-98}}, color={255,0,255}));
+ connect(intLes.y, and1.u1) annotation (Line(points={{-158,-60},{-150,-60},{-150,
+ -90},{-142,-90}}, color={255,0,255}));
+ connect(proInt2.y, intToRea3.u)
+ annotation (Line(points={{-38,-70},{-22,-70}}, color={255,127,0}));
+ connect(intToRea3.y, multiMax.u) annotation (Line(points={{2,-70},{18,-70}},
+ color={0,0,127}));
+ connect(staIndx.y, proInt2.u1) annotation (Line(points={{-218,130},{-200,130},
+ {-200,-30},{-70,-30},{-70,-64},{-62,-64}}, color={255,127,0}));
+ connect(booToInt2.y, proInt2.u2) annotation (Line(points={{-78,-90},{-70,-90},
+ {-70,-76},{-62,-76}}, color={255,127,0}));
+ connect(multiMax.y, reaToInt1.u)
+ annotation (Line(points={{42,-70},{58,-70}}, color={0,0,127}));
+ connect(multiMin.y, reaToInt.u)
+ annotation (Line(points={{42,110},{58,110}}, color={0,0,127}));
+ connect(reaToInt.y, intGreThr.u)
+ annotation (Line(points={{82,110},{98,110}}, color={255,127,0}));
+ connect(intGreThr.y, intSwi.u2)
+ annotation (Line(points={{122,110},{178,110}}, color={255,0,255}));
+ connect(intGreThr.y, yHig) annotation (Line(points={{122,110},{140,110},{140,40},
+ {460,40}}, color={255,0,255}));
+ connect(reaToInt1.y, intLesEquThr.u)
+ annotation (Line(points={{82,-70},{98,-70}}, color={255,127,0}));
+ connect(intLesEquThr.y, intSwi1.u2)
+ annotation (Line(points={{122,-70},{178,-70}}, color={255,0,255}));
+ connect(intLesEquThr.y, yLow) annotation (Line(points={{122,-70},{140,-70},{140,
+ -90},{340,-90},{340,-80},{460,-80}}, color={255,0,255}));
+ connect(and2.y, booToInt1.u)
+ annotation (Line(points={{-118,80},{-102,80}}, color={255,0,255}));
+ connect(intGreThr.y, and4.u1)
+ annotation (Line(points={{122,110},{140,110},{140,80},{218,80}},
+ color={255,0,255}));
+ connect(and4.y, intSwi3.u2)
+ annotation (Line(points={{242,80},{358,80}}, color={255,0,255}));
+ connect(yAvaUp, yAvaUp)
+ annotation (Line(points={{460,80},{460,80}}, color={255,127,0}));
+ connect(uAva, mulOr.u) annotation (Line(points={{-440,-80},{-380,-80},{-380,-40},
+ {-362,-40}}, color={255,0,255}));
+ connect(mulOr.y, cheStaAva1.u)
+ annotation (Line(points={{-338,-40},{-322,-40}}, color={255,0,255}));
+ connect(and1.y, booToInt2.u)
+ annotation (Line(points={{-118,-90},{-102,-90}}, color={255,0,255}));
+ connect(u, intRep.u) annotation (Line(points={{-440,80},{-320,80},{-320,200},
+ {-302,200}}, color={255,127,0}));
+ connect(conInt.y, intSwi1.u1) annotation (Line(points={{122,-30},{160,-30},{160,
+ -62},{178,-62}}, color={255,127,0}));
+ connect(intSwi1.y, yAvaDow) annotation (Line(points={{202,-70},{320,-70},{320,
+ -40},{460,-40}}, color={255,127,0}));
+ connect(intSwi1.y, intSwi2.u1) annotation (Line(points={{202,-70},{220,-70},{220,
+ -160},{80,-160},{80,-202},{98,-202}}, color={255,127,0}));
+ connect(intSwi2.y, intSwi3.u1) annotation (Line(points={{122,-210},{350,-210},
+ {350,88},{358,88}}, color={255,127,0}));
+ connect(u, intSwi2.u3) annotation (Line(points={{-440,80},{-400,80},{-400,-218},
+ {98,-218}}, color={255,127,0}));
+ connect(intSwi.y, intSwi3.u3) annotation (Line(points={{202,110},{340,110},{340,
+ 72},{358,72}}, color={255,127,0}));
+ connect(u, intSwi.u1) annotation (Line(points={{-440,80},{-300,80},{-300,160},
+ {160,160},{160,118},{178,118}}, color={255,127,0}));
+ connect(reaToInt.y, intSwi.u3) annotation (Line(points={{82,110},{90,110},{90,
+ 90},{160,90},{160,102},{178,102}}, color={255,127,0}));
+ connect(intSwi3.y, yAvaUp)
+ annotation (Line(points={{382,80},{460,80}}, color={255,127,0}));
+ connect(conInt1.y, intSwi4.u3) annotation (Line(points={{-298,-200},{-280,-200},
+ {-280,-178},{-262,-178}}, color={255,127,0}));
+ connect(and3.y, intSwi4.u2) annotation (Line(points={{-298,-120},{-280,-120},{
+ -280,-170},{-262,-170}}, color={255,0,255}));
+ connect(intGreEquThr.y, and3.u1)
+ annotation (Line(points={{-358,-120},{-322,-120}}, color={255,0,255}));
+ connect(intLesEquThr1.y, and3.u2) annotation (Line(points={{-358,-200},{-340,-200},
+ {-340,-128},{-322,-128}}, color={255,0,255}));
+ connect(u, intGreEquThr.u) annotation (Line(points={{-440,80},{-400,80},{-400,
+ -120},{-382,-120}}, color={255,127,0}));
+ connect(u, intLesEquThr1.u) annotation (Line(points={{-440,80},{-400,80},{-400,
+ -200},{-382,-200}}, color={255,127,0}));
+ connect(u, intSwi4.u1) annotation (Line(points={{-440,80},{-400,80},{-400,-162},
+ {-262,-162}}, color={255,127,0}));
+ connect(intSwi4.y, extStaAva.index) annotation (Line(points={{-238,-170},{-190,
+ -170},{-190,-162}}, color={255,127,0}));
+ connect(uAva, extStaAva.u) annotation (Line(points={{-440,-80},{-220,-80},{-220,
+ -150},{-202,-150}}, color={255,0,255}));
+ connect(extStaAva.y, not1.u)
+ annotation (Line(points={{-178,-150},{-62,-150}}, color={255,0,255}));
+ connect(not1.y, intSwi2.u2) annotation (Line(points={{-38,-150},{-20,-150},{-20,
+ -210},{98,-210}}, color={255,0,255}));
+ connect(not1.y, and4.u2) annotation (Line(points={{-38,-150},{210,-150},{210,72},
+ {218,72}}, color={255,0,255}));
+ connect(reaToInt1.y, intSwi1.u3) annotation (Line(points={{82,-70},{90,-70},{90,
+ -100},{160,-100},{160,-78},{178,-78}}, color={255,127,0}));
+ connect(extStaAva.y, yAvaCur) annotation (Line(points={{-178,-150},{-140,-150},
+ {-140,-240},{460,-240}}, color={255,0,255}));
+ annotation (defaultComponentName = "sta",
+ Icon(graphics={
+ Rectangle(
+ extent={{-100,-100},{100,100}},
+ lineColor={0,0,127},
+ fillColor={255,255,255},
+ fillPattern=FillPattern.Solid),
+ Text(
+ extent={{-120,146},{100,108}},
+ textColor={0,0,255},
+ textString="%name")}),
+ Diagram(coordinateSystem(preserveAspectRatio=false,
+ extent={{-420,-280},{440,280}})),
+ Documentation(info="
+
+ This subsequence is not directly specified in 1711 as it provides a side
+ calculation pertaining to generalization of the staging sequences for any number
+ of boilers and stages provided by the user.
+
+
+ Based on the current stage u
+ and stage availability vector uAva
+ the sequence outputs:
+
+
+ -
+ Integer indices of: the current stage y,
+ first available higher stage yUp
+ and the first available lower stage yDown.
+
+ -
+ Boolean status outputs to show if the current operating stage
+ u is:
+
+ -
+
+ -
+ Available, u
+
+ -
+ The highest available stage, yHig
+
+ -
+ The lowest available stage, yLow
+
+
+
+
+
+ The purpose of this sequence is to:
+
+
+ -
+ Provide inputs for the stage up and down conditionals such that staging into
+ unavailable stages is avoided.
+
+ -
+ Change the stage to the first available higher stage in an event that the
+ current stage becomes unavailable.
+
+
+
+ The sequences are implemented according to 1711 March 2020 Draft, section 5.3.3.9.
+
+ ",
+ revisions="
+
+ -
+ May 22, 2020, by Karthik Devaprasad:
+ First implementation.
+
+
+ "));
+end Status;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Staging/SetPoints/Subsequences/Up.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Staging/SetPoints/Subsequences/Up.mo
new file mode 100644
index 00000000000..1d706498f8f
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Staging/SetPoints/Subsequences/Up.mo
@@ -0,0 +1,265 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Staging.SetPoints.Subsequences;
+block Up
+ "Generates a stage up signal"
+
+ parameter Integer nSta = 5
+ "Number of stages in the boiler plant";
+
+ parameter Real fraNonConBoi(
+ final unit="1",
+ displayUnit="1",
+ final min=0,
+ final max=1) = 0.9
+ "Fraction of stage design capacity at which the efficiency condition
+ is satisfied for non-condensing boilers"
+ annotation(Dialog(group="Efficiency condition"));
+
+ parameter Real fraConBoi(
+ final unit="1",
+ displayUnit="1",
+ final min=0) = 1.5
+ "Fraction of stage minimum capacity at which the efficiency condition is
+ satisfied for condensing boilers"
+ annotation(Dialog(group="Efficiency condition"));
+
+ parameter Real sigDif(
+ final unit="1",
+ displayUnit="1",
+ final min=0) = 0.1
+ "Signal hysteresis deadband"
+ annotation (Dialog(tab="Advanced",
+ group="Efficiency condition"));
+
+ parameter Real delEffCon(
+ final unit="s",
+ displayUnit="s") = 600
+ "Enable delay for heating capacity and heating requirement"
+ annotation(Dialog(group="Efficiency condition"));
+
+ parameter Real TDif(
+ final unit="K",
+ displayUnit="K",
+ final quantity="ThermodynamicTemperature") = 10
+ "Required temperature difference between setpoint and measured temperature
+ for failsafe condition"
+ annotation(Dialog(group="Failsafe condition"));
+
+ parameter Real TDifHys(
+ final unit="K",
+ displayUnit="K",
+ final quantity="ThermodynamicTemperature") = 1
+ "Temperature deadband for hysteresis loop in failsafe condition"
+ annotation (Dialog(tab="Advanced",
+ group="Failsafe condition"));
+
+ parameter Real delFaiCon(
+ final unit="s",
+ displayUnit="s") = 900
+ "Enable delay for temperature"
+ annotation(Dialog(group="Failsafe condition"));
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uStaChaProEnd
+ "Signal indicating end of stage change process"
+ annotation (Placement(transformation(extent={{-140,-190},{-100,-150}}),
+ iconTransformation(extent={{-140,-170},{-100,-130}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uAvaCur
+ "Current stage availability status"
+ annotation (Placement(transformation(extent={{-140,-160},{-100,-120}}),
+ iconTransformation(extent={{-140,-140},{-100,-100}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.IntegerInput uTyp[nSta]
+ "Boiler-type vector specifying boiler-type in each stage"
+ annotation (Placement(transformation(extent={{-140,-40},{-100,0}}),
+ iconTransformation(extent={{-140,-20},{-100,20}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.IntegerInput uAvaUp
+ "Index of next available higher stage"
+ annotation (Placement(transformation(extent={{-140,-70},{-100,-30}}),
+ iconTransformation(extent={{-140,-50},{-100,-10}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput THotWatSupSet(
+ final unit="K",
+ final quantity="ThermodynamicTemperature")
+ "Hot water supply temperature setpoint"
+ annotation (Placement(transformation(extent={{-140,-100},{-100,-60}}),
+ iconTransformation(extent={{-140,-80},{-100,-40}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput THotWatSup(
+ final unit="K",
+ final quantity="ThermodynamicTemperature")
+ "Measured hot water supply temperature"
+ annotation (Placement(transformation(extent={{-140,-130},{-100,-90}}),
+ iconTransformation(extent={{-140,-110},{-100,-70}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput uCapUpMin(
+ final unit="W",
+ displayUnit="W",
+ final quantity="Power")
+ "Minimum heating capacity of next available stage"
+ annotation (Placement(transformation(extent={{-140,50},{-100,90}}),
+ iconTransformation(extent={{-140,70},{-100,110}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput uCapDes(
+ final unit="W",
+ displayUnit="W",
+ final quantity="Power")
+ "Design heating capacity of the current stage"
+ annotation (Placement(transformation(extent={{-140,80},{-100,120}}),
+ iconTransformation(extent={{-140,100},{-100,140}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput uCapReq(
+ final unit="W",
+ displayUnit="W",
+ final quantity="Power")
+ "Calculated heating capacity requirement"
+ annotation (Placement(transformation(extent={{-140,110},{-100,150}}),
+ iconTransformation(extent={{-140,130},{-100,170}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput VHotWat_flow(
+ final unit="m3/s",
+ displayUnit="m3/s",
+ final quantity="VolumeFlowRate")
+ "Measured hot water flow rate"
+ annotation (Placement(transformation(extent={{-140,20},{-100,60}}),
+ iconTransformation(extent={{-140,40},{-100,80}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput VUpMinSet_flow(
+ final unit="m3/s",
+ displayUnit="m3/s",
+ final quantity="VolumeFlowRate")
+ "Minimum flow setpoint for next available higher stage"
+ annotation (Placement(transformation(extent={{-140,-10},{-100,30}}),
+ iconTransformation(extent={{-140,10},{-100,50}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanOutput yStaUp
+ "Stage up signal"
+ annotation (Placement(transformation(extent={{100,-20},{140,20}}),
+ iconTransformation(extent={{100,-20},{140,20}})));
+
+protected
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Staging.SetPoints.Subsequences.EfficiencyCondition effCon(
+ final nSta=nSta,
+ final fraNonConBoi=fraNonConBoi,
+ final fraConBoi=fraConBoi,
+ final delCapReq=delEffCon,
+ final sigDif=sigDif)
+ "Efficiency condition for staging up"
+ annotation (Placement(transformation(extent={{-60,30},{-40,50}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Staging.SetPoints.Subsequences.FailsafeCondition faiSafCon(
+ final delEna=delFaiCon,
+ final TDif=TDif,
+ final TDifHys=TDifHys)
+ "Failsafe condition for staging up and down"
+ annotation (Placement(transformation(extent={{-60,-100},{-40,-80}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Not not1
+ "Logical not"
+ annotation (Placement(transformation(extent={{-60,-150},{-40,-130}})));
+
+ Buildings.Controls.OBC.CDL.Logical.MultiOr mulOr(
+ final nin=3)
+ "Logical Or"
+ annotation (Placement(transformation(extent={{40,-10},{60,10}})));
+
+equation
+ connect(effCon.uTyp, uTyp)
+ annotation (Line(points={{-62,34},{-72,34},{-72,-20},{-120,-20}},
+ color={255,127,0}));
+ connect(effCon.uAvaUp, uAvaUp)
+ annotation (Line(points={{-62,31},{-64,31},{-64,-50},{-120,-50}},
+ color={255,127,0}));
+ connect(faiSafCon.TSupSet, THotWatSupSet)
+ annotation (Line(points={{-62,-85},{-80,-85},{-80,-80},{-120,-80}},
+ color={0,0,127}));
+ connect(faiSafCon.TSup, THotWatSup)
+ annotation (Line(points={{-62,-90},{-80,-90},{-80,-110},{-120,-110}},
+ color={0,0,127}));
+ connect(mulOr.y, yStaUp)
+ annotation (Line(points={{62,0},{120,0}},
+ color={255,0,255}));
+ connect(effCon.yEffCon, mulOr.u[1])
+ annotation (Line(points={{-38,40},{10,40},{10,4.66667},{38,4.66667}},
+ color={255,0,255}));
+ connect(not1.u, uAvaCur)
+ annotation (Line(points={{-62,-140},{-120,-140}},
+ color={255,0,255}));
+ connect(faiSafCon.yFaiCon, mulOr.u[2]) annotation (Line(points={{-38,-90},{0,-90},
+ {0,0},{38,0}}, color={255,0,255}));
+ connect(not1.y, mulOr.u[3]) annotation (Line(points={{-38,-140},{10,-140},{10,
+ -4.66667},{38,-4.66667}}, color={255,0,255}));
+ connect(effCon.uCapReq, uCapReq) annotation (Line(points={{-62,49},{-64,49},{-64,
+ 130},{-120,130}}, color={0,0,127}));
+ connect(effCon.uCapDes, uCapDes) annotation (Line(points={{-62,46},{-72,46},{-72,
+ 100},{-120,100}}, color={0,0,127}));
+ connect(effCon.uCapUpMin, uCapUpMin) annotation (Line(points={{-62,43},{-80,43},
+ {-80,70},{-120,70}}, color={0,0,127}));
+ connect(effCon.VHotWat_flow, VHotWat_flow)
+ annotation (Line(points={{-62,40},{-120,40}}, color={0,0,127}));
+ connect(effCon.VUpMinSet_flow, VUpMinSet_flow) annotation (Line(points={{-62,37},
+ {-80,37},{-80,10},{-120,10}}, color={0,0,127}));
+ connect(uStaChaProEnd, faiSafCon.uStaChaProEnd) annotation (Line(points={{-120,
+ -170},{-70,-170},{-70,-95},{-62,-95}}, color={255,0,255}));
+ connect(uStaChaProEnd, effCon.uStaChaProEnd) annotation (Line(points={{-120,-170},
+ {-70,-170},{-70,-70},{-59,-70},{-59,28}}, color={255,0,255}));
+
+ annotation (defaultComponentName = "staUp",
+ Icon(coordinateSystem(extent={{-100,-160},{100,160}}),
+ graphics={
+ Rectangle(
+ extent={{-100,-160},{100,160}},
+ lineColor={0,0,127},
+ fillColor={255,255,255},
+ fillPattern=FillPattern.Solid),
+ Text(
+ extent={{-120,206},{100,168}},
+ textColor={0,0,255},
+ textString="%name"),
+ Rectangle(extent={{-80,-10},{-20,-22}}, lineColor={0,0,127}),
+ Rectangle(extent={{-80,-28},{-20,-40}}, lineColor={0,0,127}),
+ Rectangle(extent={{-76,-22},{-72,-28}}, lineColor={0,0,127}),
+ Rectangle(extent={{-28,-22},{-24,-28}}, lineColor={0,0,127}),
+ Rectangle(extent={{20,-10},{80,-22}}, lineColor={0,0,127}),
+ Rectangle(extent={{20,-28},{80,-40}}, lineColor={0,0,127}),
+ Rectangle(extent={{24,-22},{28,-28}}, lineColor={0,0,127}),
+ Rectangle(extent={{72,-22},{76,-28}}, lineColor={0,0,127}),
+ Rectangle(extent={{20,30},{80,18}}, lineColor={0,0,127}),
+ Rectangle(extent={{20,12},{80,0}}, lineColor={0,0,127}),
+ Rectangle(extent={{24,18},{28,12}}, lineColor={0,0,127}),
+ Rectangle(extent={{72,18},{76,12}}, lineColor={0,0,127}),
+ Line(points={{130,-48}}, color={0,0,127})}),
+ Diagram(coordinateSystem(preserveAspectRatio=false,
+ extent={{-100,-180},{100,140}})),
+ Documentation(info="
+
+ Outputs a boolean stage up signal yStaUp
based on the
+ various plant operation conditions that get provided as input signals.
+ Implemented according to 1711 March 2020 Draft, section 5.3.3.10.
+ and applies to all boiler plants defined in RP-1711. Timer reset has been
+ implemented according to 5.3.3.10.2.
+
+
+ The stage up signal yStaUp
becomes true
when:
+
+
+ -
+ Current stage becomes unavailable, or
+
+ -
+ Efficiency condition is true, or
+
+ -
+ Failsafe condition is true.
+
+
+ ",
+ revisions="
+
+ -
+ May 25, 2020, by Karthik Devaprasad:
+ First implementation.
+
+
+ "));
+end Up;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Staging/SetPoints/Subsequences/Validation/BoilerIndices.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Staging/SetPoints/Subsequences/Validation/BoilerIndices.mo
new file mode 100644
index 00000000000..603e0b48dfd
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Staging/SetPoints/Subsequences/Validation/BoilerIndices.mo
@@ -0,0 +1,143 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Staging.SetPoints.Subsequences.Validation;
+model BoilerIndices
+ "Validates extraction of boiler indices in a given stage"
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Staging.SetPoints.Subsequences.BoilerIndices
+ boiInd(
+ final nSta=3,
+ final nBoi=2,
+ final staMat={{1,0},{0,1},{1,1}})
+ "Boiler index generator"
+ annotation (Placement(transformation(extent={{0,80},{20,100}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Staging.SetPoints.Subsequences.BoilerIndices
+ boiInd1(
+ final nSta=3,
+ final nBoi=2,
+ final staMat={{1,0},{0,1},{1,1}})
+ "Boiler index generator"
+ annotation (Placement(transformation(extent={{0,40},{20,60}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Staging.SetPoints.Subsequences.BoilerIndices
+ boiInd2(
+ final nSta=3,
+ final nBoi=2,
+ final staMat={{1,0},{0,1},{1,1}})
+ "Boiler index generator"
+ annotation (Placement(transformation(extent={{0,0},{20,20}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Staging.SetPoints.Subsequences.BoilerIndices
+ boiInd3(
+ final nSta=3,
+ final nBoi=2,
+ final staMat={{1,0},{0,1},{1,1}})
+ "Boiler index generator"
+ annotation (Placement(transformation(extent={{0,-40},{20,-20}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Staging.SetPoints.Subsequences.BoilerIndices
+ boiInd4(
+ final nSta=5,
+ final nBoi=3,
+ final staMat={{1,0,0},{1,1,0},{1,0,1},{0,1,1},{1,1,1}})
+ "Boiler index generator"
+ annotation (Placement(transformation(extent={{40,60},{60,80}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Staging.SetPoints.Subsequences.BoilerIndices
+ boiInd5(
+ final nSta=5,
+ final nBoi=3,
+ final staMat={{1,0,0},{1,1,0},{1,0,1},{0,1,1},{1,1,1}})
+ "Boiler index generator"
+ annotation (Placement(transformation(extent={{40,20},{60,40}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Staging.SetPoints.Subsequences.BoilerIndices
+ boiInd6(
+ final nSta=5,
+ final nBoi=3,
+ final staMat={{1,0,0},{1,1,0},{1,0,1},{0,1,1},{1,1,1}})
+ "Boiler index generator"
+ annotation (Placement(transformation(extent={{40,-60},{60,-40}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Staging.SetPoints.Subsequences.BoilerIndices
+ boiInd7(
+ final nSta=5,
+ final nBoi=3,
+ final staMat={{1,0,0},{1,1,0},{1,0,1},{0,1,1},{1,1,1}})
+ "Boiler index generator"
+ annotation (Placement(transformation(extent={{40,-100},{60,-80}})));
+
+protected
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant u(
+ final k=0)
+ "Boiler stage"
+ annotation (Placement(transformation(extent={{-60,80},{-40,100}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant u1(
+ final k=1)
+ "Boiler stage"
+ annotation (Placement(transformation(extent={{-60,40},{-40,60}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant u2(
+ final k=2)
+ "Boiler stage"
+ annotation (Placement(transformation(extent={{-60,0},{-40,20}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant u3(
+ final k=3)
+ "Boiler stage"
+ annotation (Placement(transformation(extent={{-60,-40},{-40,-20}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant u4(
+ final k=5)
+ "Boiler stage"
+ annotation (Placement(transformation(extent={{-60,-80},{-40,-60}})));
+
+equation
+ connect(u.y, boiInd.u)
+ annotation (Line(points={{-38,90},{-2,90}}, color={255,127,0}));
+ connect(u1.y, boiInd1.u)
+ annotation (Line(points={{-38,50},{-2,50}}, color={255,127,0}));
+ connect(u2.y, boiInd2.u)
+ annotation (Line(points={{-38,10},{-2,10}}, color={255,127,0}));
+ connect(u3.y, boiInd3.u)
+ annotation (Line(points={{-38,-30},{-2,-30}}, color={255,127,0}));
+ connect(boiInd4.u, u.y) annotation (Line(points={{38,70},{-20,70},{-20,90},{-38,
+ 90}}, color={255,127,0}));
+ connect(boiInd5.u, u1.y) annotation (Line(points={{38,30},{-20,30},{-20,50},{-38,
+ 50}}, color={255,127,0}));
+ connect(boiInd6.u, u3.y) annotation (Line(points={{38,-50},{-20,-50},{-20,-30},
+ {-38,-30}}, color={255,127,0}));
+ connect(boiInd7.u, u4.y) annotation (Line(points={{38,-90},{-20,-90},{-20,-70},
+ {-38,-70}}, color={255,127,0}));
+annotation (
+ experiment(StopTime=10.0, Tolerance=1e-06),
+ __Dymola_Commands(file="modelica://Buildings/Resources/Scripts/Dymola/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Staging/SetPoints/Subsequences/Validation/BoilerIndices.mos"
+ "Simulate and plot"),
+ Documentation(info="
+
+ This example validates
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Staging.SetPoints.Subsequences.BoilerIndices.
+
+ ",
+ revisions="
+
+ -
+ May 31, 2020, by Karthik Devaprasad:
+ First implementation.
+
+
+ "),
+ Icon(graphics={
+ Ellipse(lineColor = {75,138,73},
+ fillColor={255,255,255},
+ fillPattern = FillPattern.Solid,
+ extent = {{-100,-100},{100,100}}),
+ Polygon(lineColor = {0,0,255},
+ fillColor = {75,138,73},
+ pattern = LinePattern.None,
+ fillPattern = FillPattern.Solid,
+ points = {{-36,60},{64,0},{-36,-60},{-36,60}})}),
+ Diagram(coordinateSystem(preserveAspectRatio=false,
+ extent={{-80,-120},{80,120}})));
+end BoilerIndices;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Staging/SetPoints/Subsequences/Validation/Capacities.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Staging/SetPoints/Subsequences/Validation/Capacities.mo
new file mode 100644
index 00000000000..eb07c310468
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Staging/SetPoints/Subsequences/Validation/Capacities.mo
@@ -0,0 +1,181 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Staging.SetPoints.Subsequences.Validation;
+model Capacities
+ "Validate stage capacities subsequence for boiler stage inputs"
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Staging.SetPoints.Subsequences.Capacities
+ staCap0(
+ final nSta=3)
+ "Outputs design capacitites at the current and stage one lower"
+ annotation (Placement(transformation(extent={{-100,0},{-80,20}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Staging.SetPoints.Subsequences.Capacities
+ staCap1(
+ final nSta=3)
+ "Outputs design capacitites at the current and stage one lower"
+ annotation (Placement(transformation(extent={{-20,0},{0,20}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Staging.SetPoints.Subsequences.Capacities
+ staCap2(
+ final nSta=3)
+ "Outputs design capacitites at the current and stage one lower"
+ annotation (Placement(transformation(extent={{60,0},{80,20}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Staging.SetPoints.Subsequences.Capacities
+ staCap3(
+ final nSta=3)
+ "Outputs design capacitites at the current and stage one lower"
+ annotation (Placement(transformation(extent={{140,0},{160,20}})));
+
+protected
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant desStaCap[3](
+ final k={2e5,1e6,1.5e6})
+ "Design stage capacities"
+ annotation (Placement(transformation(extent={{-140,100},{-120,120}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant minStaCap[3](
+ final k={4e4,2e5,3e5})
+ "Minimum stage capacities"
+ annotation (Placement(transformation(extent={{-140,60},{-120,80}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant stage0(
+ final k=0)
+ "Boiler stage"
+ annotation (Placement(transformation(extent={{-140,20},{-120,40}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant stage1(
+ final k=1)
+ "Boiler stage"
+ annotation (Placement(transformation(extent={{-60,20},{-40,40}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant stage2(
+ final k=2)
+ "Boiler stage"
+ annotation (Placement(transformation(extent={{20,20},{40,40}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant con(
+ final k=true)
+ "Boolean signal"
+ annotation (Placement(transformation(extent={{-140,-100},{-120,-80}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant stage3(
+ final k=3)
+ "Boiler stage"
+ annotation (Placement(transformation(extent={{100,20},{120,40}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant stage4(
+ final k=3)
+ "Boiler stage"
+ annotation (Placement(transformation(extent={{100,-20},{120,0}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant stage5(
+ final k=3)
+ "Boiler stage"
+ annotation (Placement(transformation(extent={{20,-20},{40,0}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant stage6(
+ final k=3)
+ "Boiler stage"
+ annotation (Placement(transformation(extent={{-60,-20},{-40,0}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant stage7(
+ final k=1)
+ "Boiler stage"
+ annotation (Placement(transformation(extent={{-140,-20},{-120,0}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant con1(
+ final k=false)
+ "Boolean signal"
+ annotation (Placement(transformation(extent={{-140,-60},{-120,-40}})));
+
+equation
+ connect(stage0.y, staCap0.u)
+ annotation (Line(points={{-118,30},{-110,30},{-110,13},{-102,13}},
+ color={255,127,0}));
+ connect(stage1.y, staCap1.u)
+ annotation (Line(points={{-38,30},{-30,30},{-30,13},{-22,13}},
+ color={255,127,0}));
+ connect(stage2.y, staCap2.u)
+ annotation (Line(points={{42,30},{50,30},{50,13},{58,13}},
+ color={255,127,0}));
+ connect(stage3.y, staCap3.u)
+ annotation (Line(points={{122,30},{130,30},{130,13},{138,13}},
+ color={255,127,0}));
+ connect(stage0.y, staCap0.uDown) annotation (Line(points={{-118,30},{-110,30},
+ {-110,7},{-102,7}}, color={255,127,0}));
+ connect(staCap0.uUp, stage7.y) annotation (Line(points={{-102,10},{-116,10},{-116,
+ -10},{-118,-10}}, color={255,127,0}));
+ connect(stage0.y, staCap1.uDown) annotation (Line(points={{-118,30},{-70,30},{
+ -70,7},{-22,7}}, color={255,127,0}));
+ connect(stage6.y, staCap1.uUp) annotation (Line(points={{-38,-10},{-30,-10},{-30,
+ 10},{-22,10}}, color={255,127,0}));
+ connect(stage1.y, staCap2.uDown) annotation (Line(points={{-38,30},{10,30},{10,
+ 7},{58,7}}, color={255,127,0}));
+ connect(staCap2.uUp, stage5.y) annotation (Line(points={{58,10},{50,10},{50,-10},
+ {42,-10}}, color={255,127,0}));
+ connect(stage2.y, staCap3.uDown) annotation (Line(points={{42,30},{90,30},{90,
+ 7},{138,7}}, color={255,127,0}));
+ connect(staCap3.uUp, stage4.y) annotation (Line(points={{138,10},{130,10},{130,
+ -10},{122,-10}}, color={255,127,0}));
+ connect(desStaCap.y, staCap0.uDesCap) annotation (Line(points={{-118,110},{
+ -106,110},{-106,19},{-102,19}}, color={0,0,127}));
+ connect(minStaCap.y, staCap0.uMinCap) annotation (Line(points={{-118,70},{-108,
+ 70},{-108,16},{-102,16}}, color={0,0,127}));
+ connect(desStaCap.y, staCap1.uDesCap) annotation (Line(points={{-118,110},{
+ -24,110},{-24,19},{-22,19}}, color={0,0,127}));
+ connect(minStaCap.y, staCap1.uMinCap) annotation (Line(points={{-118,70},{-26,
+ 70},{-26,16},{-22,16}}, color={0,0,127}));
+ connect(desStaCap.y, staCap2.uDesCap) annotation (Line(points={{-118,110},{54,
+ 110},{54,19},{58,19}}, color={0,0,127}));
+ connect(minStaCap.y, staCap2.uMinCap) annotation (Line(points={{-118,70},{52,70},
+ {52,16},{58,16}}, color={0,0,127}));
+ connect(desStaCap.y, staCap3.uDesCap) annotation (Line(points={{-118,110},{
+ 134,110},{134,19},{138,19}}, color={0,0,127}));
+ connect(staCap3.uMinCap, minStaCap.y) annotation (Line(points={{138,16},{132,16},
+ {132,70},{-118,70}}, color={0,0,127}));
+ connect(con1.y, staCap1.uHig) annotation (Line(points={{-118,-50},{-28,-50},{-28,
+ 4},{-22,4}}, color={255,0,255}));
+ connect(con.y, staCap1.uLow) annotation (Line(points={{-118,-90},{-26,-90},{-26,
+ 1},{-22,1}}, color={255,0,255}));
+ connect(staCap0.uHig, con1.y) annotation (Line(points={{-102,4},{-110,4},{-110,
+ -50},{-118,-50}}, color={255,0,255}));
+ connect(staCap0.uLow, con.y) annotation (Line(points={{-102,1},{-108,1},{-108,
+ -90},{-118,-90}}, color={255,0,255}));
+ connect(con1.y, staCap2.uHig) annotation (Line(points={{-118,-50},{52,-50},{52,
+ 4},{58,4}}, color={255,0,255}));
+ connect(con1.y, staCap2.uLow) annotation (Line(points={{-118,-50},{54,-50},{54,
+ 1},{58,1}}, color={255,0,255}));
+ connect(con.y, staCap3.uHig) annotation (Line(points={{-118,-90},{132,-90},{132,
+ 4},{138,4}}, color={255,0,255}));
+ connect(con1.y, staCap3.uLow) annotation (Line(points={{-118,-50},{134,-50},{134,
+ 1},{138,1}}, color={255,0,255}));
+annotation (
+ experiment(StopTime=10.0, Tolerance=1e-06),
+ __Dymola_Commands(file="modelica://Buildings/Resources/Scripts/Dymola/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Staging/SetPoints/Subsequences/Validation/Capacities.mos"
+ "Simulate and plot"),
+ Documentation(info="
+
+This example validates
+
+Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Staging.SetPoints.Subsequences.Capacities.
+
+", revisions="
+
+-
+June 1, 2020, by Karthik Devaprasad:
+First implementation.
+
+
+"),
+Icon(graphics={
+ Ellipse(lineColor = {75,138,73},
+ fillColor={255,255,255},
+ fillPattern = FillPattern.Solid,
+ extent = {{-100,-100},{100,100}}),
+ Polygon(lineColor = {0,0,255},
+ fillColor = {75,138,73},
+ pattern = LinePattern.None,
+ fillPattern = FillPattern.Solid,
+ points = {{-36,60},{64,0},{-36,-60},{-36,60}})}),
+Diagram(coordinateSystem(preserveAspectRatio=false,
+ extent={{-180,-120},{180,140}})));
+end Capacities;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Staging/SetPoints/Subsequences/Validation/CapacityRequirement.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Staging/SetPoints/Subsequences/Validation/CapacityRequirement.mo
new file mode 100644
index 00000000000..c3b692a7e6b
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Staging/SetPoints/Subsequences/Validation/CapacityRequirement.mo
@@ -0,0 +1,171 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Staging.SetPoints.Subsequences.Validation;
+block CapacityRequirement
+ "Validation model for CapacityRequirement"
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Staging.SetPoints.Subsequences.CapacityRequirement
+ capReq(
+ final avePer=300)
+ "Scenario with sine input for return temperature"
+ annotation (Placement(transformation(extent={{-40,40},{-20,60}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Staging.SetPoints.Subsequences.CapacityRequirement
+ capReq1(
+ final avePer=300)
+ "Scenario with sine input for supply setpoint temperature"
+ annotation (Placement(transformation(extent={{60,40},{80,60}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Staging.SetPoints.Subsequences.CapacityRequirement
+ capReq2(
+ final avePer=300)
+ "Scenario with sine input for flow-rate"
+ annotation (Placement(transformation(extent={{-40,-60},{-20,-40}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Staging.SetPoints.Subsequences.CapacityRequirement
+ capReq3(
+ final avePer=300)
+ "Scenario with sine input for all inputs"
+ annotation (Placement(transformation(extent={{60,-60},{80,-40}})));
+
+protected
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant con(
+ final k=333.15)
+ "Constant input"
+ annotation (Placement(transformation(extent={{-90,70},{-70,90}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Sine sin(
+ final amplitude=333.15 - 322.04,
+ final freqHz=1/3600,
+ final offset=322.04)
+ "Sine input"
+ annotation (Placement(transformation(extent={{-90,40},{-70,60}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant con1(
+ final k=1)
+ "Constant input"
+ annotation (Placement(transformation(extent={{-90,10},{-70,30}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant con2(
+ final k=322.04)
+ "Constant input"
+ annotation (Placement(transformation(extent={{10,40},{30,60}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Sine sin1(
+ final amplitude=333.15 - 322.04,
+ final freqHz=1/3600,
+ final offset=333.15)
+ "Sine input"
+ annotation (Placement(transformation(extent={{10,70},{30,90}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant con3(
+ final k=1)
+ "Constant input"
+ annotation (Placement(transformation(extent={{10,10},{30,30}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant con4(
+ final k=333.15)
+ "Constant input"
+ annotation (Placement(transformation(extent={{-90,-30},{-70,-10}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Sine sin2(
+ final amplitude=1,
+ final freqHz=1/3600,
+ final offset=1)
+ "Sine input"
+ annotation (Placement(transformation(extent={{-90,-90},{-70,-70}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant con5(
+ final k=322.04)
+ "Constant input"
+ annotation (Placement(transformation(extent={{-90,-60},{-70,-40}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Sine sin3(
+ final amplitude=333.15 - 322.04,
+ final freqHz=2/3600,
+ final offset=322.04)
+ "Sine input"
+ annotation (Placement(transformation(extent={{10,-60},{30,-40}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Sine sin4(
+ final amplitude=333.15 - 322.04,
+ final freqHz=1/3600,
+ final offset=333.15)
+ "Sine input"
+ annotation (Placement(transformation(extent={{10,-30},{30,-10}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Sine sin5(
+ final amplitude=1,
+ final freqHz=3/3600,
+ final offset=1)
+ "Sine input"
+ annotation (Placement(transformation(extent={{10,-90},{30,-70}})));
+
+equation
+ connect(con.y, capReq.TSupSet)
+ annotation (Line(points={{-68,80},{-50,80},{-50,57},{-42,57}},
+ color={0,0,127}));
+ connect(sin.y, capReq.TRet)
+ annotation (Line(points={{-68,50},{-42,50}},
+ color={0,0,127}));
+ connect(con1.y, capReq.VHotWat_flow)
+ annotation (Line(points={{-68,20},{-50,20},{-50,43},{-42,43}},
+ color={0,0,127}));
+ connect(con3.y, capReq1.VHotWat_flow)
+ annotation (Line(points={{32,20},{50,20},{50,43},{58,43}},
+ color={0,0,127}));
+ connect(con4.y, capReq2.TSupSet)
+ annotation (Line(points={{-68,-20},{-50,-20},{-50,-43},{-42,-43}},
+ color={0,0,127}));
+ connect(sin3.y, capReq3.TRet)
+ annotation (Line(points={{32,-50},{58,-50}},
+ color={0,0,127}));
+ connect(con2.y, capReq1.TRet)
+ annotation (Line(points={{32,50},{58,50}},
+ color={0,0,127}));
+ connect(sin1.y, capReq1.TSupSet)
+ annotation (Line(points={{32,80},{50,80},{50,57},{58,57}},
+ color={0,0,127}));
+ connect(con5.y, capReq2.TRet)
+ annotation (Line(points={{-68,-50},{-42,-50}},
+ color={0,0,127}));
+ connect(sin2.y, capReq2.VHotWat_flow)
+ annotation (Line(points={{-68,-80},{-50,-80},{-50,-57},{-42,-57}},
+ color={0,0,127}));
+ connect(sin5.y, capReq3.VHotWat_flow)
+ annotation (Line(points={{32,-80},{50,-80},{50,-57},{58,-57}},
+ color={0,0,127}));
+ connect(sin4.y, capReq3.TSupSet)
+ annotation (Line(points={{32,-20},{50,-20},{50,-43},{58,-43}},
+ color={0,0,127}));
+
+ annotation(Icon(coordinateSystem(preserveAspectRatio=false),
+ graphics={Ellipse(lineColor = {75,138,73},
+ fillColor={255,255,255},
+ fillPattern = FillPattern.Solid,
+ extent={{-100,-100},{100,100}}),
+ Polygon(lineColor = {0,0,255},
+ fillColor = {75,138,73},
+ pattern = LinePattern.None,
+ fillPattern = FillPattern.Solid,
+ points={{-36,60},{64,0},{-36,-60},{-36,60}})}),
+ Diagram(coordinateSystem(preserveAspectRatio=false)),
+ __Dymola_Commands(file="./Resources/Scripts/Dymola/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Staging/SetPoints/Subsequences/Validation/CapacityRequirement.mos"
+ "Simulate and plot"),
+ experiment(
+ StopTime=7200,
+ Interval=1,
+ Tolerance=1e-6),
+ Documentation(info="
+
+ This example validates
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Staging.SetPoints.Subsequences.CapacityRequirement.
+
+ ", revisions="
+
+ -
+ May 19, 2020, by Karthik Devaprasad:
+ First implementation.
+
+
+ "));
+end CapacityRequirement;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Staging/SetPoints/Subsequences/Validation/Change.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Staging/SetPoints/Subsequences/Validation/Change.mo
new file mode 100644
index 00000000000..c07029e17ae
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Staging/SetPoints/Subsequences/Validation/Change.mo
@@ -0,0 +1,434 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Staging.SetPoints.Subsequences.Validation;
+model Change
+ "Validates boiler stage status setpoint signal generation for boiler plants"
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Staging.SetPoints.Subsequences.Change
+ cha(
+ final nSta=10,
+ final delStaCha=600)
+ "Controls for stage up signal variations"
+ annotation (Placement(transformation(extent={{-40,180},{-20,200}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Staging.SetPoints.Subsequences.Change
+ cha1(
+ final nSta=10,
+ final delStaCha=600)
+ "Controls for stage down signal variations"
+ annotation (Placement(transformation(extent={{-40,0},{-20,20}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Staging.SetPoints.Subsequences.Change
+ cha2(
+ final nSta=10,
+ final delStaCha=600)
+ "Controls for stage up/stage down signal interaction"
+ annotation (Placement(transformation(extent={{-40,-180},{-20,-160}})));
+
+ Buildings.Controls.OBC.CDL.Logical.TrueFalseHold truFalHol(
+ final trueHoldDuration=10,
+ final falseHoldDuration=0)
+ "Short true hold to have stage change edge signals be better visible"
+ annotation (Placement(transformation(extent={{0,120},{20,140}})));
+
+ Buildings.Controls.OBC.CDL.Logical.TrueFalseHold truFalHol1(
+ final trueHoldDuration=10,
+ final falseHoldDuration=0)
+ "Short true hold to have stage change edge signals be better visible"
+ annotation (Placement(transformation(extent={{0,-60},{20,-40}})));
+
+ Buildings.Controls.OBC.CDL.Logical.TrueFalseHold truFalHol2(
+ final trueHoldDuration=10,
+ final falseHoldDuration=0)
+ "Short true hold to have stage change edge signals be better visible"
+ annotation (Placement(transformation(extent={{0,-240},{20,-220}})));
+
+ Buildings.Controls.OBC.CDL.Logical.TrueFalseHold truFalHol6(
+ final trueHoldDuration=10,
+ final falseHoldDuration=0)
+ "Short true hold to have stage change edge signals be better visible"
+ annotation (Placement(transformation(extent={{0,220},{20,240}})));
+
+ Buildings.Controls.OBC.CDL.Logical.TrueFalseHold truFalHol9(
+ final trueHoldDuration=10,
+ final falseHoldDuration=0)
+ "Short true hold to have stage change edge signals be better visible"
+ annotation (Placement(transformation(extent={{40,40},{60,60}})));
+
+ Buildings.Controls.OBC.CDL.Logical.TrueFalseHold truFalHol10(
+ final trueHoldDuration=10,
+ final falseHoldDuration=0)
+ "Short true hold to have stage change edge signals be better visible"
+ annotation (Placement(transformation(extent={{0,-140},{20,-120}})));
+
+ Buildings.Controls.OBC.CDL.Logical.TrueFalseHold truFalHol11(
+ final trueHoldDuration=10,
+ final falseHoldDuration=0)
+ "Short true hold to have stage change edge signals be better visible"
+ annotation (Placement(transformation(extent={{40,-140},{60,-120}})));
+
+protected
+ Buildings.Controls.OBC.CDL.Continuous.Sources.TimeTable timeTable(
+ final table=[0,0; 600,0; 600,1; 1200,1; 1200,0; 2500,0; 2500,1; 3700,1; 3700,0; 4300,
+ 0; 4300,1; 4500,1; 4500,0; 6000,0; 6000,1; 9200,1; 9200,0; 12000,0;
+ 12000,1; 14000,1; 14000,0])
+ "Stage up signal for the first example and stage down signal for the second
+ example from the top"
+ annotation (Placement(transformation(extent={{-160,220},{-140,240}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant con[10](
+ final k=fill(true, 10))
+ "Constant Boolean source"
+ annotation (Placement(transformation(extent={{-120,260},{-100,280}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.GreaterThreshold greThr(
+ final t=0.5)
+ "Greater than threshold"
+ annotation (Placement(transformation(extent={{-120,220},{-100,240}})));
+
+ Buildings.Controls.OBC.CDL.Conversions.IntegerToReal intToRea
+ "Type converter"
+ annotation (Placement(transformation(extent={{20,180},{40,200}})));
+
+ Buildings.Controls.OBC.CDL.Discrete.ZeroOrderHold zerOrdHol(
+ final samplePeriod=1)
+ "Zero order hold"
+ annotation (Placement(transformation(extent={{60,180},{80,200}})));
+
+ Buildings.Controls.OBC.CDL.Conversions.RealToInteger reaToInt
+ "Type converter"
+ annotation (Placement(transformation(extent={{100,180},{120,200}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Add addInt
+ "Find next higher stage"
+ annotation (Placement(transformation(extent={{140,200},{160,220}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Subtract subInt1
+ "Find next lower stage"
+ annotation (Placement(transformation(extent={{140,160},{160,180}})));
+
+ Buildings.Controls.OBC.CDL.Conversions.IntegerToReal intToRea1
+ "Type converter"
+ annotation (Placement(transformation(extent={{20,0},{40,20}})));
+
+ Buildings.Controls.OBC.CDL.Discrete.ZeroOrderHold zerOrdHol1(
+ final samplePeriod=1)
+ "Zero order hold"
+ annotation (Placement(transformation(extent={{60,0},{80,20}})));
+
+ Buildings.Controls.OBC.CDL.Conversions.RealToInteger reaToInt1
+ "Type converter"
+ annotation (Placement(transformation(extent={{100,0},{120,20}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Add addInt2
+ "Find next higher stage"
+ annotation (Placement(transformation(extent={{140,20},{160,40}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Subtract subInt3
+ "Find next lower stage"
+ annotation (Placement(transformation(extent={{140,-20},{160,0}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.TimeTable timeTable2(
+ final table=[0,0; 800,0; 800,1; 2700,1; 2700,0; 4500,0; 4500,1; 5200,1; 5200,0;
+ 6000,0; 6000,1; 6900,1; 6900,0; 7800,0; 7800,1; 8700,1; 8700,0; 12000,0;
+ 12000,1; 14000,1; 14000,0])
+ "Stage up signal, if simultaneous stage up and down signals are generated the plant will stage down"
+ annotation (Placement(transformation(extent={{-160,-140},{-140,-120}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.GreaterThreshold greThr2(
+ final t=0.5)
+ "Greater threshold"
+ annotation (Placement(transformation(extent={{-120,-140},{-100,-120}})));
+
+ Buildings.Controls.OBC.CDL.Conversions.IntegerToReal intToRea2
+ "Type converter"
+ annotation (Placement(transformation(extent={{20,-180},{40,-160}})));
+
+ Buildings.Controls.OBC.CDL.Discrete.ZeroOrderHold zerOrdHol2(
+ final samplePeriod=1)
+ "Zero order hold"
+ annotation (Placement(transformation(extent={{60,-180},{80,-160}})));
+
+ Buildings.Controls.OBC.CDL.Conversions.RealToInteger reaToInt2
+ "Type converter"
+ annotation (Placement(transformation(extent={{100,-180},{120,-160}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Add addInt4
+ "Find next higher stage"
+ annotation (Placement(transformation(extent={{140,-160},{160,-140}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Subtract subInt5
+ "Find next lower stage"
+ annotation (Placement(transformation(extent={{140,-200},{160,-180}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.GreaterThreshold greThr3(
+ final t=0.5)
+ "Greater than threshold"
+ annotation (Placement(transformation(extent={{-120,-180},{-100,-160}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant noStaChaSig(
+ final k=false)
+ "No stage change signal"
+ annotation (Placement(transformation(extent={{-200,100},{-180,120}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.TimeTable timeTable1(
+ final table=[0,0; 1600,0; 1600,1; 2400,1; 2400,0; 3700,0; 3700,1; 5900,1; 5900,
+ 0; 6900,0; 6900,1; 7800,1; 7800,0; 12000,0; 12000,1; 14000,1; 14000,0])
+ "Stage down signal"
+ annotation (Placement(transformation(extent={{-160,-180},{-140,-160}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Max maxInt
+ "Maximum"
+ annotation (Placement(transformation(extent={{180,140},{200,160}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Max maxInt1
+ "Maximum"
+ annotation (Placement(transformation(extent={{180,-40},{200,-20}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Max maxInt2
+ "Maximum"
+ annotation (Placement(transformation(extent={{180,-220},{200,-200}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant step(
+ final k=1)
+ "Assuming that the next available stage is always the next stage"
+ annotation (Placement(transformation(extent={{100,220},{120,240}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant step1(
+ final k=1)
+ "Assuming that the next available stage is always the next stage"
+ annotation (Placement(transformation(extent={{100,40},{120,60}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant step2(
+ final k=1)
+ "Assuming that the next available stage is always the next stage"
+ annotation (Placement(transformation(extent={{100,-140},{120,-120}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant u3(
+ final k=1)
+ "Boiler stage"
+ annotation (Placement(transformation(extent={{140,120},{160,140}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant u4(
+ final k=1)
+ "Boiler stage"
+ annotation (Placement(transformation(extent={{140,-60},{160,-40}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant u5(
+ final k=1)
+ "Boiler stage"
+ annotation (Placement(transformation(extent={{140,-240},{160,-220}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.TimeTable timeTable3(
+ final table=[0,0; 10,0; 10,1; 11000,1; 11000,0; 12000,0; 12000,1; 14000,1;
+ 14000,0])
+ "Plant enable"
+ annotation (Placement(transformation(extent={{-200,20},{-180,40}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.GreaterThreshold greThr1(
+ final t=0.5)
+ "Greater than threshold"
+ annotation (Placement(transformation(extent={{-160,20},{-140,40}})));
+
+ Buildings.Controls.OBC.CDL.Logical.TrueDelay truDel(
+ final delayTime=120)
+ "True delay to represent staging process"
+ annotation (Placement(transformation(extent={{70,-240},{90,-220}})));
+
+ Buildings.Controls.OBC.CDL.Logical.TrueFalseHold truFalHol3(
+ final trueHoldDuration=121,
+ final falseHoldDuration=0)
+ "True hold to represent staging process delay"
+ annotation (Placement(transformation(extent={{40,-240},{60,-220}})));
+
+ Buildings.Controls.OBC.CDL.Logical.TrueFalseHold truFalHol4(
+ final trueHoldDuration=121,
+ final falseHoldDuration=0)
+ "True hold to represent staging process delay"
+ annotation (Placement(transformation(extent={{40,-60},{60,-40}})));
+
+ Buildings.Controls.OBC.CDL.Logical.TrueDelay truDel1(
+ final delayTime=120)
+ "True delay to represent staging process"
+ annotation (Placement(transformation(extent={{70,-60},{90,-40}})));
+
+ Buildings.Controls.OBC.CDL.Logical.TrueFalseHold truFalHol5(
+ final trueHoldDuration=121,
+ final falseHoldDuration=0)
+ "True hold to represent staging process delay"
+ annotation (Placement(transformation(extent={{40,120},{60,140}})));
+
+ Buildings.Controls.OBC.CDL.Logical.TrueDelay truDel2(
+ final delayTime=120)
+ "True delay to represent staging process"
+ annotation (Placement(transformation(extent={{70,120},{90,140}})));
+
+equation
+ connect(timeTable.y[1], greThr.u)
+ annotation (Line(points={{-138,230},{-122,230}}, color={0,0,127}));
+ connect(cha.ySta, intToRea.u) annotation (Line(points={{-18,196},{0,196},{0,190},
+ {18,190}}, color={255,127,0}));
+ connect(intToRea.y, zerOrdHol.u)
+ annotation (Line(points={{42,190},{58,190}}, color={0,0,127}));
+ connect(zerOrdHol.y, reaToInt.u)
+ annotation (Line(points={{82,190},{98,190}}, color={0,0,127}));
+ connect(reaToInt.y, addInt.u2) annotation (Line(points={{122,190},{130,190},{
+ 130,204},{138,204}},
+ color={255,127,0}));
+ connect(reaToInt.y,subInt1. u1) annotation (Line(points={{122,190},{130,190},
+ {130,176},{138,176}},color={255,127,0}));
+ connect(step.y, addInt.u1) annotation (Line(points={{122,230},{130,230},{130,
+ 216},{138,216}},
+ color={255,127,0}));
+ connect(step.y,subInt1. u2) annotation (Line(points={{122,230},{126,230},{126,
+ 164},{138,164}}, color={255,127,0}));
+ connect(addInt.y, cha.uAvaUp) annotation (Line(points={{162,210},{170,210},{170,
+ 250},{-50,250},{-50,192},{-42,192}}, color={255,127,0}));
+ connect(cha1.ySta, intToRea1.u) annotation (Line(points={{-18,16},{0,16},{0,10},
+ {18,10}}, color={255,127,0}));
+ connect(intToRea1.y, zerOrdHol1.u)
+ annotation (Line(points={{42,10},{58,10}}, color={0,0,127}));
+ connect(zerOrdHol1.y, reaToInt1.u)
+ annotation (Line(points={{82,10},{98,10}}, color={0,0,127}));
+ connect(reaToInt1.y, addInt2.u2) annotation (Line(points={{122,10},{130,10},{
+ 130,24},{138,24}},color={255,127,0}));
+ connect(reaToInt1.y,subInt3. u1) annotation (Line(points={{122,10},{130,10},{
+ 130,-4},{138,-4}}, color={255,127,0}));
+ connect(step1.y, addInt2.u1) annotation (Line(points={{122,50},{130,50},{130,
+ 36},{138,36}},
+ color={255,127,0}));
+ connect(step1.y,subInt3. u2) annotation (Line(points={{122,50},{126,50},{126,
+ -16},{138,-16}},
+ color={255,127,0}));
+ connect(addInt2.y, cha1.uAvaUp) annotation (Line(points={{162,30},{170,30},{170,
+ 70},{-50,70},{-50,12},{-42,12}}, color={255,127,0}));
+ connect(timeTable2.y[1], greThr2.u)
+ annotation (Line(points={{-138,-130},{-122,-130}}, color={0,0,127}));
+ connect(cha2.ySta, intToRea2.u) annotation (Line(points={{-18,-164},{0,-164},{
+ 0,-170},{18,-170}}, color={255,127,0}));
+ connect(intToRea2.y, zerOrdHol2.u)
+ annotation (Line(points={{42,-170},{58,-170}}, color={0,0,127}));
+ connect(zerOrdHol2.y, reaToInt2.u)
+ annotation (Line(points={{82,-170},{98,-170}}, color={0,0,127}));
+ connect(reaToInt2.y, addInt4.u2) annotation (Line(points={{122,-170},{130,
+ -170},{130,-156},{138,-156}},
+ color={255,127,0}));
+ connect(reaToInt2.y,subInt5. u1) annotation (Line(points={{122,-170},{130,
+ -170},{130,-184},{138,-184}},
+ color={255,127,0}));
+ connect(step2.y, addInt4.u1) annotation (Line(points={{122,-130},{130,-130},{
+ 130,-144},{138,-144}},
+ color={255,127,0}));
+ connect(step2.y,subInt5. u2) annotation (Line(points={{122,-130},{126,-130},{
+ 126,-196},{138,-196}},
+ color={255,127,0}));
+ connect(addInt4.y, cha2.uAvaUp) annotation (Line(points={{162,-150},{170,-150},
+ {170,-110},{-50,-110},{-50,-168},{-42,-168}}, color={255,127,0}));
+ connect(noStaChaSig.y, cha.uDow) annotation (Line(points={{-178,110},{-170,110},
+ {-170,182},{-42,182}}, color={255,0,255}));
+ connect(noStaChaSig.y, cha1.uUp) annotation (Line(points={{-178,110},{-170,110},
+ {-170,60},{-80,60},{-80,5},{-42,5}}, color={255,0,255}));
+ connect(greThr.y, cha.uUp) annotation (Line(points={{-98,230},{-64,230},{-64,185},
+ {-42,185}}, color={255,0,255}));
+ connect(greThr2.y, cha2.uUp) annotation (Line(points={{-98,-130},{-80,-130},{-80,
+ -175},{-42,-175}}, color={255,0,255}));
+ connect(greThr3.y, cha2.uDow) annotation (Line(points={{-98,-170},{-90,-170},
+ {-90,-178},{-42,-178}},color={255,0,255}));
+ connect(greThr.y, cha1.uDow) annotation (Line(points={{-98,230},{-64,230},{-64,
+ 2},{-42,2}}, color={255,0,255}));
+ connect(timeTable1.y[1], greThr3.u)
+ annotation (Line(points={{-138,-170},{-122,-170}}, color={0,0,127}));
+ connect(cha.yChaEdg, truFalHol.u) annotation (Line(points={{-18,188},{-10,188},
+ {-10,130},{-2,130}}, color={255,0,255}));
+ connect(cha1.yChaEdg, truFalHol1.u) annotation (Line(points={{-18,8},{-10,8},{
+ -10,-50},{-2,-50}}, color={255,0,255}));
+ connect(cha2.yChaEdg, truFalHol2.u) annotation (Line(points={{-18,-172},{-10,-172},
+ {-10,-230},{-2,-230}}, color={255,0,255}));
+ connect(subInt1.y, maxInt.u1) annotation (Line(points={{162,170},{170,170},{
+ 170,156},{178,156}}, color={255,127,0}));
+ connect(maxInt.u2, u3.y) annotation (Line(points={{178,144},{170,144},{170,
+ 130},{162,130}}, color={255,127,0}));
+ connect(maxInt.y, cha.uAvaDow) annotation (Line(points={{202,150},{210,150},{210,
+ 110},{-50,110},{-50,188},{-42,188}}, color={255,127,0}));
+ connect(subInt3.y, maxInt1.u1) annotation (Line(points={{162,-10},{170,-10},{
+ 170,-24},{178,-24}}, color={255,127,0}));
+ connect(u4.y, maxInt1.u2) annotation (Line(points={{162,-50},{170,-50},{170,
+ -36},{178,-36}}, color={255,127,0}));
+ connect(maxInt1.y, cha1.uAvaDow) annotation (Line(points={{202,-30},{208,-30},
+ {208,-70},{-50,-70},{-50,8},{-42,8}}, color={255,127,0}));
+ connect(subInt5.y, maxInt2.u1) annotation (Line(points={{162,-190},{170,-190},
+ {170,-204},{178,-204}}, color={255,127,0}));
+ connect(u5.y, maxInt2.u2) annotation (Line(points={{162,-230},{170,-230},{170,
+ -216},{178,-216}}, color={255,127,0}));
+ connect(maxInt2.y, cha2.uAvaDow) annotation (Line(points={{202,-210},{208,-210},
+ {208,-252},{-50,-252},{-50,-172},{-42,-172}}, color={255,127,0}));
+ connect(timeTable3.y[1], greThr1.u)
+ annotation (Line(points={{-178,30},{-162,30}}, color={0,0,127}));
+ connect(greThr1.y, cha.uPla) annotation (Line(points={{-138,30},{-130,30},{-130,
+ 195},{-42,195}}, color={255,0,255}));
+ connect(greThr1.y, cha1.uPla) annotation (Line(points={{-138,30},{-130,30},{-130,
+ 15},{-42,15}}, color={255,0,255}));
+ connect(greThr1.y, cha2.uPla) annotation (Line(points={{-138,30},{-88,30},{-88,
+ -165},{-42,-165}}, color={255,0,255}));
+
+ connect(truDel.y, cha2.uStaChaProEnd) annotation (Line(points={{92,-230},{100,
+ -230},{100,-260},{-39,-260},{-39,-182}}, color={255,0,255}));
+ connect(truFalHol2.y, truFalHol3.u)
+ annotation (Line(points={{22,-230},{38,-230}}, color={255,0,255}));
+ connect(truDel.u, truFalHol3.y)
+ annotation (Line(points={{68,-230},{62,-230}}, color={255,0,255}));
+ connect(truFalHol1.y, truFalHol4.u)
+ annotation (Line(points={{22,-50},{38,-50}}, color={255,0,255}));
+ connect(truFalHol4.y, truDel1.u)
+ annotation (Line(points={{62,-50},{68,-50}}, color={255,0,255}));
+ connect(truDel1.y, cha1.uStaChaProEnd) annotation (Line(points={{92,-50},{100,
+ -50},{100,-80},{-39,-80},{-39,-2}}, color={255,0,255}));
+ connect(truFalHol.y, truFalHol5.u)
+ annotation (Line(points={{22,130},{38,130}}, color={255,0,255}));
+ connect(truFalHol5.y, truDel2.u)
+ annotation (Line(points={{62,130},{68,130}}, color={255,0,255}));
+ connect(truDel2.y, cha.uStaChaProEnd) annotation (Line(points={{92,130},{100,130},
+ {100,100},{-39,100},{-39,178}}, color={255,0,255}));
+ connect(cha.yChaUpEdg, truFalHol6.u) annotation (Line(points={{-18,192},{-10,192},
+ {-10,230},{-2,230}}, color={255,0,255}));
+ connect(truFalHol9.u, cha1.yChaDowEdg) annotation (Line(points={{38,50},{30,50},
+ {30,28},{12,28},{12,4},{-18,4}}, color={255,0,255}));
+ connect(truFalHol10.u, cha2.yChaUpEdg) annotation (Line(points={{-2,-130},{-10,
+ -130},{-10,-168},{-18,-168}}, color={255,0,255}));
+ connect(truFalHol11.u, cha2.yChaDowEdg) annotation (Line(points={{38,-130},{30,
+ -130},{30,-148},{10,-148},{10,-176},{-18,-176}}, color={255,0,255}));
+ connect(con.y, cha.uStaAva) annotation (Line(points={{-98,270},{-56,270},{-56,
+ 198},{-42,198}}, color={255,0,255}));
+ connect(con.y, cha1.uStaAva) annotation (Line(points={{-98,270},{-56,270},{-56,
+ 18},{-42,18}}, color={255,0,255}));
+ connect(con.y, cha2.uStaAva) annotation (Line(points={{-98,270},{-56,270},{-56,
+ -162},{-42,-162}}, color={255,0,255}));
+annotation (
+ experiment(StopTime=14000.0, Tolerance=1e-06),
+ __Dymola_Commands(file="modelica://Buildings/Resources/Scripts/Dymola/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Staging/SetPoints/Subsequences/Validation/Change.mos"
+ "Simulate and plot"),
+ Documentation(info="
+
+This example validates
+
+Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Staging.SetPoints.Subsequences.Change.
+
+", revisions="
+
+-
+May 31, 2020, by Karthik Devaprasad:
+First implementation.
+
+
+"),
+Icon(coordinateSystem(extent={{-100,-100},{100,100}}),
+ graphics={
+ Ellipse(lineColor = {75,138,73},
+ fillColor={255,255,255},
+ fillPattern = FillPattern.Solid,
+ extent = {{-100,-100},{100,100}}),
+ Polygon(lineColor = {0,0,255},
+ fillColor = {75,138,73},
+ pattern = LinePattern.None,
+ fillPattern = FillPattern.Solid,
+ points = {{-36,60},{64,0},{-36,-60},{-36,60}})}),
+Diagram(coordinateSystem(preserveAspectRatio=false, extent={{-220,-280},{220,300}})));
+end Change;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Staging/SetPoints/Subsequences/Validation/Configurator.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Staging/SetPoints/Subsequences/Validation/Configurator.mo
new file mode 100644
index 00000000000..b9add4c4fbf
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Staging/SetPoints/Subsequences/Validation/Configurator.mo
@@ -0,0 +1,156 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Staging.SetPoints.Subsequences.Validation;
+model Configurator "Validate boiler staging configurator subsequence"
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Staging.SetPoints.Subsequences.Configurator
+ conf(
+ final nSta=5,
+ final nBoi=3,
+ final boiTyp={Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Types.BoilerTypes.condensingBoiler,
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Types.BoilerTypes.nonCondensingBoiler,
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Types.BoilerTypes.condensingBoiler},
+ final staMat={{1,0,0},{0,1,0},{1,1,0},{0,1,1},{1,1,1}},
+ final boiDesCap={100,150,250},
+ final boiFirMin={0.4,0.2,0.3})
+ "Validation scenario-1"
+ annotation (Placement(transformation(extent={{20,90},{40,110}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Staging.SetPoints.Subsequences.Configurator
+ conf1(
+ final nSta=5,
+ final nBoi=3,
+ final boiTyp={Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Types.BoilerTypes.condensingBoiler,
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Types.BoilerTypes.nonCondensingBoiler,
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Types.BoilerTypes.condensingBoiler},
+ final staMat={{1,0,0},{0,1,0},{1,1,0},{0,1,1},{1,1,1}},
+ final boiDesCap={100,150,250},
+ final boiFirMin={0.4,0.2,0.3})
+ "Validation scenario-2"
+ annotation (Placement(transformation(extent={{20,50},{40,70}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Staging.SetPoints.Subsequences.Configurator
+ conf2(
+ final nSta=5,
+ final nBoi=3,
+ final boiTyp={Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Types.BoilerTypes.condensingBoiler,
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Types.BoilerTypes.nonCondensingBoiler,
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Types.BoilerTypes.condensingBoiler},
+ final staMat={{1,0,0},{0,1,0},{1,1,0},{0,1,1},{1,1,1}},
+ final boiDesCap={100,150,250},
+ final boiFirMin={0.4,0.2,0.3})
+ "Validation scenario-3"
+ annotation (Placement(transformation(extent={{20,10},{40,30}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Staging.SetPoints.Subsequences.Configurator
+ conf3(
+ final nSta=5,
+ final nBoi=3,
+ final boiTyp={Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Types.BoilerTypes.condensingBoiler,
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Types.BoilerTypes.nonCondensingBoiler,
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Types.BoilerTypes.condensingBoiler},
+ final staMat={{1,0,0},{0,1,0},{1,1,0},{0,1,1},{1,1,1}},
+ final boiDesCap={100,150,250},
+ final boiFirMin={0.4,0.2,0.3})
+ "Validation scenario-4"
+ annotation (Placement(transformation(extent={{20,-30},{40,-10}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Staging.SetPoints.Subsequences.Configurator
+ conf4(
+ final nSta=5,
+ final nBoi=3,
+ final boiTyp={Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Types.BoilerTypes.condensingBoiler,
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Types.BoilerTypes.nonCondensingBoiler,
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Types.BoilerTypes.condensingBoiler},
+ final staMat={{1,0,0},{0,1,0},{1,1,0},{0,1,1},{1,1,1}},
+ final boiDesCap={100,150,250},
+ final boiFirMin={0.4,0.2,0.3})
+ "Validation scenario-5"
+ annotation (Placement(transformation(extent={{20,-70},{40,-50}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Staging.SetPoints.Subsequences.Configurator
+ conf5(
+ final nSta=5,
+ final nBoi=3,
+ final boiTyp={Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Types.BoilerTypes.condensingBoiler,
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Types.BoilerTypes.nonCondensingBoiler,
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Types.BoilerTypes.condensingBoiler},
+ final staMat={{1,0,0},{0,1,0},{1,1,0},{0,1,1},{1,1,1}},
+ final boiDesCap={100,150,250},
+ final boiFirMin={0.4,0.2,0.3})
+ "Validation scenario-6"
+ annotation (Placement(transformation(extent={{20,-110},{40,-90}})));
+
+protected
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant boiAva[3](
+ final k={true,true,true})
+ "Boiler availability array"
+ annotation (Placement(transformation(extent={{-40,90},{-20,110}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant boiAva1[3](
+ final k={false,true,true})
+ "Boiler availability array"
+ annotation (Placement(transformation(extent={{-40,50},{-20,70}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant boiAva3[3](
+ final k={true,true,false})
+ "Boiler availability array"
+ annotation (Placement(transformation(extent={{-40,-30},{-20,-10}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant boiAva4[3](
+ final k={true,false,false})
+ "Boiler availability array"
+ annotation (Placement(transformation(extent={{-40,-70},{-20,-50}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant boiAva5[3](
+ final k={false,false,false})
+ "Boiler availability array"
+ annotation (Placement(transformation(extent={{-40,-110},{-20,-90}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant boiAva2[3](
+ final k={false,false,true})
+ "Boiler availability array"
+ annotation (Placement(transformation(extent={{-40,10},{-20,30}})));
+
+equation
+ connect(boiAva.y, conf.uBoiAva)
+ annotation (Line(points={{-18,100},{18,100}}, color={255,0,255}));
+ connect(boiAva1.y, conf1.uBoiAva)
+ annotation (Line(points={{-18,60},{18,60}}, color={255,0,255}));
+ connect(boiAva2.y, conf2.uBoiAva)
+ annotation (Line(points={{-18,20},{18,20}}, color={255,0,255}));
+ connect(boiAva3.y, conf3.uBoiAva)
+ annotation (Line(points={{-18,-20},{18,-20}}, color={255,0,255}));
+ connect(boiAva4.y, conf4.uBoiAva)
+ annotation (Line(points={{-18,-60},{18,-60}}, color={255,0,255}));
+ connect(boiAva5.y, conf5.uBoiAva)
+ annotation (Line(points={{-18,-100},{18,-100}}, color={255,0,255}));
+annotation (
+ experiment(StopTime=10.0, Tolerance=1e-06),
+ __Dymola_Commands(file=
+ "modelica://Buildings/Resources/Scripts/Dymola/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Staging/SetPoints/Subsequences/Validation/Configurator.mos"
+ "Simulate and plot"),
+ Documentation(info="
+
+ This example validates
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Staging.SetPoints.Subsequences.Configurator.
+
+ ", revisions="
+
+ -
+ May 21, 2020, by Karthik Devaprasad:
+ First implementation.
+
+
+ "),
+ Icon(graphics={
+ Ellipse(lineColor = {75,138,73},
+ fillColor={255,255,255},
+ fillPattern = FillPattern.Solid,
+ extent = {{-100,-100},{100,100}}),
+ Polygon(lineColor = {0,0,255},
+ fillColor = {75,138,73},
+ pattern = LinePattern.None,
+ fillPattern = FillPattern.Solid,
+ points = {{-36,60},{64,0},{-36,-60},{-36,60}})}),Diagram(
+ coordinateSystem(preserveAspectRatio=false, extent={{-60,-120},{60,120}})));
+end Configurator;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Staging/SetPoints/Subsequences/Validation/Down.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Staging/SetPoints/Subsequences/Validation/Down.mo
new file mode 100644
index 00000000000..33bf80cd22f
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Staging/SetPoints/Subsequences/Validation/Down.mo
@@ -0,0 +1,453 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Staging.SetPoints.Subsequences.Validation;
+model Down
+ "Validate model for stage down conditions sequence"
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Staging.SetPoints.Subsequences.Down
+ staDow(
+ final have_priOnl=false,
+ final nSta=1,
+ final fraMinFir=1.1,
+ final delMinFir=300,
+ final fraDesCap=0.8,
+ final delDesCapNonConBoi=600,
+ final delDesCapConBoi=300,
+ final sigDif=0.01,
+ final bypValClo=0,
+ final TCirDif=3,
+ final delTRetDif=300,
+ final dTemp=0.1,
+ final TDif=10,
+ final delFaiCon=900,
+ final boiMinPriPumSpeSta={0})
+ "Scenario testing sequence for condensing-type stage"
+ annotation (Placement(transformation(extent={{-120,-16},{-100,19}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Staging.SetPoints.Subsequences.Down
+ staDow1(
+ final have_priOnl=false,
+ final nSta=1,
+ final fraMinFir=1.1,
+ final delMinFir=300,
+ final fraDesCap=0.8,
+ final delDesCapNonConBoi=600,
+ final delDesCapConBoi=300,
+ final sigDif=0.01,
+ final bypValClo=0,
+ final TCirDif=3,
+ final delTRetDif=300,
+ final dTemp=0.1,
+ final TDif=10,
+ final delFaiCon=900,
+ final boiMinPriPumSpeSta={0})
+ "Scenario testing sequence for non-condensing-type stage"
+ annotation (Placement(transformation(extent={{20,-16},{40,19}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Staging.SetPoints.Subsequences.Down
+ staDow2(
+ final have_priOnl=true,
+ final nSta=1,
+ final fraMinFir=1.1,
+ final delMinFir=300,
+ final fraDesCap=0.8,
+ final delDesCapConBoi=300,
+ final sigDif=0.01,
+ final delBypVal=300,
+ final bypValClo=0,
+ final TCirDif=3,
+ final dTemp=0.1,
+ final TDif=10,
+ final delFaiCon=900,
+ final boiMinPriPumSpeSta={0})
+ "Scenario testing primary-only, condensing-type boiler plant"
+ annotation (Placement(transformation(extent={{160,-16},{180,19}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Staging.SetPoints.Subsequences.Down
+ staDow3(
+ final have_priOnl=true,
+ final nSta=1,
+ final fraMinFir=1.1,
+ final delMinFir=300,
+ final fraDesCap=0.8,
+ final delDesCapConBoi=300,
+ final sigDif=0.01,
+ final delBypVal=300,
+ final bypValClo=0,
+ final TCirDif=3,
+ final dTemp=0.1,
+ final TDif=10,
+ final delFaiCon=900,
+ final boiMinPriPumSpeSta={0})
+ "Scenario testing primary-only, condensing-type boiler plant"
+ annotation (Placement(transformation(extent={{270,-16},{290,19}})));
+
+protected
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant con(
+ final k=80)
+ "Constant real source"
+ annotation (Placement(transformation(extent={{-170,90},{-150,110}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Pulse pul(
+ final amplitude=12,
+ final period=2000,
+ final offset=69)
+ "Pulse source"
+ annotation (Placement(transformation(extent={{-170,50},{-150,70}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant conInt[1](
+ final k={1})
+ "Stage-type vector"
+ annotation (Placement(transformation(extent={{-170,160},{-150,180}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant conInt1(
+ final k=1)
+ "Constant integer source"
+ annotation (Placement(transformation(extent={{-170,120},{-150,140}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Pulse pul1(
+ final amplitude=0.3,
+ final period=4000,
+ final offset=1.05)
+ "Pulse source"
+ annotation (Placement(transformation(extent={{-170,10},{-150,30}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Pulse pul2(
+ final amplitude=4,
+ final period=16000,
+ final offset=79.8)
+ "Pulse source"
+ annotation (Placement(transformation(extent={{-170,-150},{-150,-130}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant con1(
+ final k=80)
+ "Constant real source"
+ annotation (Placement(transformation(extent={{-172,-190},{-152,-170}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant con2(
+ final k=1)
+ "Constant real source"
+ annotation (Placement(transformation(extent={{-168,-30},{-148,-10}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Pulse pul3(
+ final amplitude=0.3,
+ final period=8000,
+ final offset=0)
+ "Pulse source"
+ annotation (Placement(transformation(extent={{-170,-110},{-150,-90}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant con5(
+ final k=80)
+ "Constant real source"
+ annotation (Placement(transformation(extent={{-30,90},{-10,110}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Pulse pul4(
+ final amplitude=12,
+ final period=2000,
+ final offset=69)
+ "Pulse source"
+ annotation (Placement(transformation(extent={{-30,50},{-10,70}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant conInt2[1](
+ final k={2})
+ "Stage-type vector"
+ annotation (Placement(transformation(extent={{-30,160},{-10,180}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant conInt3(
+ final k=1)
+ "Constant integer source"
+ annotation (Placement(transformation(extent={{-30,120},{-10,140}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Pulse pul5(
+ final amplitude=0.3,
+ final period=4000,
+ final offset=1.05)
+ "Pulse source"
+ annotation (Placement(transformation(extent={{-30,10},{-10,30}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Pulse pul6(
+ final amplitude=4,
+ final period=16000,
+ final offset=79.8)
+ "Pulse source"
+ annotation (Placement(transformation(extent={{-30,-150},{-10,-130}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant con6(
+ final k=80)
+ "Constant real source"
+ annotation (Placement(transformation(extent={{-30,-190},{-10,-170}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant con7(
+ final k=1)
+ "Constant real source"
+ annotation (Placement(transformation(extent={{-32,-30},{-12,-10}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Pulse pul7(
+ final amplitude=0.3,
+ final period=8000,
+ final offset=0)
+ "Pulse source"
+ annotation (Placement(transformation(extent={{-30,-110},{-10,-90}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant con10(
+ final k=80)
+ "Constant real source"
+ annotation (Placement(transformation(extent={{110,70},{130,90}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Pulse pul8(
+ final amplitude=12,
+ final period=2000,
+ final offset=69)
+ "Pulse source"
+ annotation (Placement(transformation(extent={{110,30},{130,50}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant conInt4[1](
+ final k={1})
+ "Stage-type vector"
+ annotation (Placement(transformation(extent={{110,150},{130,170}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant conInt5(
+ final k=1)
+ "Constant integer source"
+ annotation (Placement(transformation(extent={{110,110},{130,130}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Pulse pul9(
+ final amplitude=0.3,
+ final period=4000,
+ final offset=1.05)
+ "Pulse source"
+ annotation (Placement(transformation(extent={{110,-70},{130,-50}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant con13(
+ final k=1)
+ "Constant real source"
+ annotation (Placement(transformation(extent={{110,-110},{130,-90}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Pulse pul11(
+ final amplitude=0.3,
+ final period=8000,
+ final offset=-0.1)
+ "Pulse source"
+ annotation (Placement(transformation(extent={{110,-190},{130,-170}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Pulse pul10(
+ final amplitude=0.6,
+ final period=16000,
+ final offset=1.4)
+ "Pulse source"
+ annotation (Placement(transformation(extent={{-168,-70},{-148,-50}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Pulse pul12(
+ final amplitude=0.6,
+ final period=16000,
+ final offset=1.4)
+ "Pulse source"
+ annotation (Placement(transformation(extent={{-30,-70},{-10,-50}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Pulse pul13(
+ final amplitude=0.6,
+ final period=16000,
+ final offset=1.4)
+ "Pulse source"
+ annotation (Placement(transformation(extent={{110,-150},{130,-130}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant con11(
+ final k=80)
+ "Constant real source"
+ annotation (Placement(transformation(extent={{220,70},{240,90}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant conInt6[1](
+ final k={1})
+ "Stage-type vector"
+ annotation (Placement(transformation(extent={{220,150},{240,170}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant conInt7(
+ final k=1)
+ "Constant integer source"
+ annotation (Placement(transformation(extent={{220,110},{240,130}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant con12(
+ final k=1)
+ "Constant real source"
+ annotation (Placement(transformation(extent={{220,-110},{240,-90}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Pulse booPul(
+ final width=0.05,
+ final period=1000,
+ final shift=960)
+ "Boolean pulse signal"
+ annotation (Placement(transformation(extent={{190,190},{210,210}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Edge edg
+ "Rising edge detector"
+ annotation (Placement(transformation(extent={{220,190},{240,210}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant con9(
+ final k=80)
+ "Constant real source"
+ annotation (Placement(transformation(extent={{220,30},{240,50}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant con14(
+ final k=1.05)
+ "Constant real source"
+ annotation (Placement(transformation(extent={{220,-70},{240,-50}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant con15(
+ final k=1.5)
+ "Constant real source"
+ annotation (Placement(transformation(extent={{220,-150},{240,-130}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant con16(
+ final k=0.5)
+ "Constant real source"
+ annotation (Placement(transformation(extent={{220,-190},{240,-170}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant con3(
+ final k=false)
+ "Constant Boolean False signal"
+ annotation (Placement(transformation(extent={{-170,190},{-150,210}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant con4(
+ final k=false)
+ "Constant Boolean False signal"
+ annotation (Placement(transformation(extent={{-30,190},{-10,210}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant con8(
+ final k=false)
+ "Constant Boolean False signal"
+ annotation (Placement(transformation(extent={{110,190},{130,210}})));
+
+equation
+ connect(con.y, staDow.THotWatSupSet) annotation (Line(points={{-148,100},{-130,
+ 100},{-130,9},{-122,9}}, color={0,0,127}));
+ connect(pul.y, staDow.THotWatSup) annotation (Line(points={{-148,60},{-134,60},
+ {-134,6},{-122,6}}, color={0,0,127}));
+ connect(pul1.y, staDow.uCapReq) annotation (Line(points={{-148,20},{-138,20},{
+ -138,3},{-122,3}}, color={0,0,127}));
+ connect(con2.y, staDow.uCapMin) annotation (Line(points={{-146,-20},{-142,-20},
+ {-142,0},{-122,0}},color={0,0,127}));
+ connect(pul3.y, staDow.uPumSpe) annotation (Line(points={{-148,-100},{-138,-100},
+ {-138,-9},{-122,-9}},
+ color={0,0,127}));
+ connect(pul2.y, staDow.TPriHotWatRet) annotation (Line(points={{-148,-140},{-134,
+ -140},{-134,-12},{-122,-12}},
+ color={0,0,127}));
+ connect(con1.y, staDow.TSecHotWatRet) annotation (Line(points={{-150,-180},{-128,
+ -180},{-128,-15},{-122,-15}},
+ color={0,0,127}));
+ connect(con5.y, staDow1.THotWatSupSet) annotation (Line(points={{-8,100},{8,100},
+ {8,9},{18,9}}, color={0,0,127}));
+ connect(pul4.y, staDow1.THotWatSup) annotation (Line(points={{-8,60},{4,60},{4,
+ 6},{18,6}}, color={0,0,127}));
+ connect(pul5.y, staDow1.uCapReq) annotation (Line(points={{-8,20},{0,20},{0,3},
+ {18,3}}, color={0,0,127}));
+ connect(con7.y, staDow1.uCapMin)
+ annotation (Line(points={{-10,-20},{0,-20},{0,0},{18,0}},
+ color={0,0,127}));
+ connect(pul7.y, staDow1.uPumSpe)
+ annotation (Line(points={{-8,-100},{8,-100},{8,-9},{18,-9}},
+ color={0,0,127}));
+ connect(pul6.y, staDow1.TPriHotWatRet) annotation (Line(points={{-8,-140},{12,
+ -140},{12,-12},{18,-12}},
+ color={0,0,127}));
+ connect(con6.y, staDow1.TSecHotWatRet) annotation (Line(points={{-8,-180},{16,
+ -180},{16,-15},{18,-15}},
+ color={0,0,127}));
+ connect(con10.y, staDow2.THotWatSupSet) annotation (Line(points={{132,80},{144,
+ 80},{144,9},{158,9}}, color={0,0,127}));
+ connect(pul8.y, staDow2.THotWatSup) annotation (Line(points={{132,40},{140,40},
+ {140,6},{158,6}}, color={0,0,127}));
+ connect(pul9.y, staDow2.uCapReq) annotation (Line(points={{132,-60},{140,-60},
+ {140,3},{158,3}}, color={0,0,127}));
+ connect(pul11.y, staDow2.uBypValPos) annotation (Line(points={{132,-180},{154,
+ -180},{154,-6},{158,-6}},
+ color={0,0,127}));
+ connect(pul10.y, staDow.uCapDowDes) annotation (Line(points={{-146,-60},{-140,
+ -60},{-140,-3},{-122,-3}},
+ color={0,0,127}));
+ connect(pul12.y, staDow1.uCapDowDes)
+ annotation (Line(points={{-8,-60},{4,-60},{4,-3},{18,-3}},
+ color={0,0,127}));
+ connect(pul13.y, staDow2.uCapDowDes) annotation (Line(points={{132,-140},{150,
+ -140},{150,-3},{158,-3}},
+ color={0,0,127}));
+ connect(con13.y, staDow2.uCapMin) annotation (Line(points={{132,-100},{146,-100},
+ {146,0},{158,0}},color={0,0,127}));
+ connect(conInt1.y, staDow.uCur) annotation (Line(points={{-148,130},{-126,130},
+ {-126,12},{-122,12}},
+ color={255,127,0}));
+ connect(conInt2.y, staDow1.uTyp) annotation (Line(points={{-8,170},{14,170},{14,
+ 14},{18,14},{18,15}},
+ color={255,127,0}));
+ connect(conInt3.y, staDow1.uCur) annotation (Line(points={{-8,130},{12,130},{12,
+ 12},{18,12}},
+ color={255,127,0}));
+ connect(conInt4.y, staDow2.uTyp) annotation (Line(points={{132,160},{152,160},
+ {152,14},{158,14},{158,15}},
+ color={255,127,0}));
+ connect(conInt5.y, staDow2.uCur) annotation (Line(points={{132,120},{148,120},
+ {148,12},{158,12}},
+ color={255,127,0}));
+ connect(conInt.y, staDow.uTyp) annotation (Line(points={{-148,170},{-124,170},
+ {-124,15},{-122,15}}, color={255,127,0}));
+ connect(con3.y, staDow.uStaChaProEnd) annotation (Line(points={{-148,200},{-122,
+ 200},{-122,18}}, color={255,0,255}));
+ connect(con4.y, staDow1.uStaChaProEnd)
+ annotation (Line(points={{-8,200},{18,200},{18,18}}, color={255,0,255}));
+ connect(con8.y, staDow2.uStaChaProEnd) annotation (Line(points={{132,200},{154,
+ 200},{154,18},{158,18}}, color={255,0,255}));
+ connect(con11.y,staDow3. THotWatSupSet) annotation (Line(points={{242,80},{254,
+ 80},{254,9},{268,9}}, color={0,0,127}));
+ connect(con12.y,staDow3. uCapMin) annotation (Line(points={{242,-100},{256,-100},
+ {256,0},{268,0}},color={0,0,127}));
+ connect(conInt6.y,staDow3. uTyp) annotation (Line(points={{242,160},{262,160},
+ {262,14},{268,14},{268,15}},
+ color={255,127,0}));
+ connect(conInt7.y,staDow3. uCur) annotation (Line(points={{242,120},{258,120},
+ {258,12},{268,12}},
+ color={255,127,0}));
+ connect(booPul.y, edg.u)
+ annotation (Line(points={{212,200},{218,200}}, color={255,0,255}));
+ connect(edg.y, staDow3.uStaChaProEnd) annotation (Line(points={{242,200},{264,
+ 200},{264,18},{268,18}}, color={255,0,255}));
+ connect(con9.y, staDow3.THotWatSup) annotation (Line(points={{242,40},{248,40},
+ {248,6},{268,6}}, color={0,0,127}));
+ connect(con14.y, staDow3.uCapReq) annotation (Line(points={{242,-60},{248,-60},
+ {248,3},{268,3}}, color={0,0,127}));
+ connect(con15.y, staDow3.uCapDowDes) annotation (Line(points={{242,-140},{260,
+ -140},{260,-3},{268,-3}}, color={0,0,127}));
+ connect(con16.y, staDow3.uBypValPos) annotation (Line(points={{242,-180},{264,
+ -180},{264,-6},{268,-6}}, color={0,0,127}));
+annotation (
+ experiment(
+ StopTime=16000,
+ Interval=1,
+ Tolerance=1e-06),
+ __Dymola_Commands(file="modelica://Buildings/Resources/Scripts/Dymola/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Staging/SetPoints/Subsequences/Validation/Down.mos"
+ "Simulate and plot"),
+ Documentation(info="
+
+ This example validates
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Staging.SetPoints.Subsequences.Down.
+
+ ", revisions="
+
+ -
+ May 28, 2020, by Karthik Devaprasad:
+ First implementation.
+
+
+ "),
+ Icon(coordinateSystem(extent={{-100,-100},{100,100}}),
+ graphics={
+ Ellipse(lineColor = {75,138,73},
+ fillColor={255,255,255},
+ fillPattern = FillPattern.Solid,
+ extent = {{-100,-100},{100,100}}),
+ Polygon(lineColor = {0,0,255},
+ fillColor = {75,138,73},
+ pattern = LinePattern.None,
+ fillPattern = FillPattern.Solid,
+ points = {{-36,60},{64,0},{-36,-60},{-36,60}})}),
+ Diagram(coordinateSystem(preserveAspectRatio=false,
+ extent={{-200,-200},{300,220}})));
+end Down;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Staging/SetPoints/Subsequences/Validation/EfficiencyCondition.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Staging/SetPoints/Subsequences/Validation/EfficiencyCondition.mo
new file mode 100644
index 00000000000..37f6d3e5e6f
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Staging/SetPoints/Subsequences/Validation/EfficiencyCondition.mo
@@ -0,0 +1,274 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Staging.SetPoints.Subsequences.Validation;
+block EfficiencyCondition
+ "Validation model for EfficiencyCondition"
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Staging.SetPoints.Subsequences.EfficiencyCondition
+ effCon(
+ final nSta=1,
+ final fraNonConBoi=0.9,
+ final fraConBoi=1.5,
+ final sigDif=0.1,
+ final delCapReq=600)
+ "Testing efficiency condition for condensing boiler stage type"
+ annotation (Placement(transformation(extent={{-30,-10},{-10,10}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Staging.SetPoints.Subsequences.EfficiencyCondition
+ effCon1(
+ final nSta=1,
+ final fraNonConBoi=0.9,
+ final fraConBoi=1.5,
+ final sigDif=0.1,
+ final delCapReq=600)
+ "Testing efficiency condition for non-condensing boiler stage type"
+ annotation (Placement(transformation(extent={{110,-10},{130,10}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Staging.SetPoints.Subsequences.EfficiencyCondition
+ effCon2(
+ final nSta=1,
+ final fraNonConBoi=0.9,
+ final fraConBoi=1.5,
+ final sigDif=0.1,
+ final delCapReq=600)
+ "Testing efficiency condition for non-condensing boiler stage type with timer reset"
+ annotation (Placement(transformation(extent={{250,-10},{270,10}})));
+
+protected
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Pulse pul(
+ final amplitude=1.2*0.1,
+ final period=2.5*600,
+ final offset=1.5 - 1.1*0.1)
+ "Pulse source"
+ annotation (Placement(transformation(extent={{-130,110},{-110,130}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Pulse pul3(
+ final amplitude=1.2*0.1,
+ final period=5*600,
+ final offset=1 - 1.1*0.1)
+ "Pulse source"
+ annotation (Placement(transformation(extent={{-130,-10},{-110,10}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant conIntp[1](
+ final k={1})
+ "Constant source"
+ annotation (Placement(transformation(extent={{-130,-90},{-110,-70}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant con(
+ final k=1)
+ "Constant source"
+ annotation (Placement(transformation(extent={{-130,70},{-110,90}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant con1(
+ final k=1)
+ "Constant source"
+ annotation (Placement(transformation(extent={{-130,30},{-110,50}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Pulse pul1(
+ final amplitude=1.2*0.1,
+ final period=2.5*600,
+ final offset=0.9 - 1.1*0.1)
+ "Pulse source"
+ annotation (Placement(transformation(extent={{10,110},{30,130}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Pulse pul2(
+ final amplitude=1.2*0.1,
+ final period=5*600,
+ final offset=1 - 1.1*0.1)
+ "Pulse source"
+ annotation (Placement(transformation(extent={{10,-10},{30,10}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant conIntp1[1](
+ final k={2})
+ "Constant source"
+ annotation (Placement(transformation(extent={{10,-90},{30,-70}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant con2(
+ final k=1)
+ "Constant source"
+ annotation (Placement(transformation(extent={{10,70},{30,90}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant con3(
+ final k=1)
+ "Constant source"
+ annotation (Placement(transformation(extent={{10,30},{30,50}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant conInt(
+ final k=1)
+ "Constant source"
+ annotation (Placement(transformation(extent={{-130,-130},{-110,-110}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant conInt1(
+ final k=1)
+ "Constant source"
+ annotation (Placement(transformation(extent={{10,-130},{30,-110}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant con4(
+ final k=1)
+ "Constant source"
+ annotation (Placement(transformation(extent={{-130,-50},{-110,-30}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant con5(
+ final k=1)
+ "Constant source"
+ annotation (Placement(transformation(extent={{10,-50},{30,-30}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant conIntp2[1](
+ final k={2})
+ "Constant source"
+ annotation (Placement(transformation(extent={{150,-90},{170,-70}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant con6(
+ final k=1)
+ "Constant source"
+ annotation (Placement(transformation(extent={{150,70},{170,90}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant con7(
+ final k=1)
+ "Constant source"
+ annotation (Placement(transformation(extent={{150,30},{170,50}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant conInt2(
+ final k=1)
+ "Constant source"
+ annotation (Placement(transformation(extent={{150,-130},{170,-110}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant con8(
+ final k=1)
+ "Constant source"
+ annotation (Placement(transformation(extent={{150,-50},{170,-30}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant con9(
+ final k=false)
+ "Constant Boolean false"
+ annotation (Placement(transformation(extent={{-130,-170},{-110,-150}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant con10(
+ final k=false)
+ "Constant Boolean false"
+ annotation (Placement(transformation(extent={{10,-170},{30,-150}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Pulse booPul(
+ final width=0.05,
+ final period=1000,
+ final shift=960)
+ "Boolean pulse signal"
+ annotation (Placement(transformation(extent={{150,-170},{170,-150}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Edge edg
+ "Edge detector"
+ annotation (Placement(transformation(extent={{180,-170},{200,-150}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant con11(
+ final k=1.6)
+ "Constant source"
+ annotation (Placement(transformation(extent={{150,110},{170,130}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant con12(
+ final k=1.1)
+ "Constant source"
+ annotation (Placement(transformation(extent={{150,-10},{170,10}})));
+
+equation
+ connect(conIntp.y, effCon.uTyp)
+ annotation (Line(points={{-108,-80},{-50,-80},{-50,-6},{-32,-6}},
+ color={255,127,0}));
+ connect(pul3.y, effCon.VHotWat_flow)
+ annotation (Line(points={{-108,0},{-70,0},{-70,0},{-32,0}},
+ color={0,0,127}));
+ connect(pul.y, effCon.uCapReq)
+ annotation (Line(points={{-108,120},{-40,120},{-40,9},{-32,9}},
+ color={0,0,127}));
+ connect(con.y, effCon.uCapDes)
+ annotation (Line(points={{-108,80},{-50,80},{-50,6},{-32,6}},
+ color={0,0,127}));
+ connect(con1.y, effCon.uCapUpMin)
+ annotation (Line(points={{-108,40},{-60,40},{-60,3},{-32,3}},
+ color={0,0,127}));
+ connect(conIntp1.y, effCon1.uTyp)
+ annotation (Line(points={{32,-80},{90,-80},{90,-6},{108,-6}},
+ color={255,127,0}));
+ connect(pul2.y, effCon1.VHotWat_flow)
+ annotation (Line(points={{32,0},{72,0},{72,0},{108,0}},
+ color={0,0,127}));
+ connect(pul1.y, effCon1.uCapReq)
+ annotation (Line(points={{32,120},{100,120},{100,9},{108,9}},
+ color={0,0,127}));
+ connect(con2.y, effCon1.uCapDes)
+ annotation (Line(points={{32,80},{90,80},{90,6},{108,6}},
+ color={0,0,127}));
+ connect(con3.y, effCon1.uCapUpMin)
+ annotation (Line(points={{32,40},{80,40},{80,3},{108,3}},
+ color={0,0,127}));
+ connect(conInt.y, effCon.uAvaUp)
+ annotation (Line(points={{-108,-120},{-40,-120},{-40,-9},{-32,-9}},
+ color={255,127,0}));
+ connect(conInt1.y, effCon1.uAvaUp)
+ annotation (Line(points={{32,-120},{100,-120},{100,-9},{108,-9}},
+ color={255,127,0}));
+ connect(con4.y, effCon.VUpMinSet_flow)
+ annotation (Line(points={{-108,-40},{-60,-40},{-60,-3},{-32,-3}},
+ color={0,0,127}));
+ connect(con5.y, effCon1.VUpMinSet_flow)
+ annotation (Line(points={{32,-40},{80,-40},{80,-3},{108,-3}},
+ color={0,0,127}));
+ connect(conIntp2.y,effCon2. uTyp)
+ annotation (Line(points={{172,-80},{230,-80},{230,-6},{248,-6}},
+ color={255,127,0}));
+ connect(con6.y,effCon2. uCapDes)
+ annotation (Line(points={{172,80},{230,80},{230,6},{248,6}},
+ color={0,0,127}));
+ connect(con7.y,effCon2. uCapUpMin)
+ annotation (Line(points={{172,40},{220,40},{220,3},{248,3}},
+ color={0,0,127}));
+ connect(conInt2.y,effCon2. uAvaUp)
+ annotation (Line(points={{172,-120},{240,-120},{240,-9},{248,-9}},
+ color={255,127,0}));
+ connect(con8.y,effCon2. VUpMinSet_flow)
+ annotation (Line(points={{172,-40},{220,-40},{220,-3},{248,-3}},
+ color={0,0,127}));
+ connect(con9.y, effCon.uStaChaProEnd) annotation (Line(points={{-108,-160},{-29,
+ -160},{-29,-12}}, color={255,0,255}));
+ connect(con10.y, effCon1.uStaChaProEnd) annotation (Line(points={{32,-160},{111,
+ -160},{111,-12}}, color={255,0,255}));
+ connect(booPul.y, edg.u)
+ annotation (Line(points={{172,-160},{178,-160}}, color={255,0,255}));
+ connect(edg.y, effCon2.uStaChaProEnd) annotation (Line(points={{202,-160},{251,
+ -160},{251,-12}}, color={255,0,255}));
+ connect(con11.y, effCon2.uCapReq) annotation (Line(points={{172,120},{240,120},
+ {240,9},{248,9}}, color={0,0,127}));
+ connect(con12.y, effCon2.VHotWat_flow)
+ annotation (Line(points={{172,0},{248,0}}, color={0,0,127}));
+ annotation(Icon(coordinateSystem(preserveAspectRatio=false,
+ extent={{-100,-100},{100,100}}),
+ graphics={Ellipse(lineColor = {75,138,73},
+ fillColor={255,255,255},
+ fillPattern = FillPattern.Solid,
+ extent={{-100,-100},{100,100}}),
+ Polygon(lineColor = {0,0,255},
+ fillColor = {75,138,73},
+ pattern = LinePattern.None,
+ fillPattern = FillPattern.Solid,
+ points={{-36,60},{64,0},{-36,-60},{-36,60}})}),
+ Diagram(coordinateSystem(preserveAspectRatio=false,
+ extent={{-140,-180},{280,140}})),
+ experiment(
+ StopTime=7200,
+ Interval=1,
+ Tolerance=1e-6),
+ __Dymola_Commands(file="./Resources/Scripts/Dymola/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Staging/SetPoints/Subsequences/Validation/EfficiencyCondition.mos"
+ "Simulate and plot"),
+ Documentation(info="
+
+ This example validates
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Staging.SetPoints.Subsequences.EfficiencyCondition
+
+ ",
+ revisions="
+
+ -
+ May 21, 2020, by Karthik Devaprasad:
+ First implementation.
+
+
+ "));
+end EfficiencyCondition;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Staging/SetPoints/Subsequences/Validation/FailsafeCondition.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Staging/SetPoints/Subsequences/Validation/FailsafeCondition.mo
new file mode 100644
index 00000000000..41cbb1bf1e1
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Staging/SetPoints/Subsequences/Validation/FailsafeCondition.mo
@@ -0,0 +1,223 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Staging.SetPoints.Subsequences.Validation;
+block FailsafeCondition
+ "Validation model for FailsafeCondition"
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Staging.SetPoints.Subsequences.FailsafeCondition
+ faiSafCon(
+ final delEna=900,
+ final TDif=10,
+ final TDifHys=1)
+ "Testing scenario with FailsafeCondition unmet"
+ annotation (Placement(transformation(extent={{-40,40},{-20,60}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Staging.SetPoints.Subsequences.FailsafeCondition
+ faiSafCon1(
+ final delEna=900,
+ final TDif=10,
+ final TDifHys=1)
+ "Testing scenario with FailsafeCondition met"
+ annotation (Placement(transformation(extent={{60,40},{80,60}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Staging.SetPoints.Subsequences.FailsafeCondition
+ faiSafCon2(
+ final delEna=900,
+ final TDif=10,
+ final TDifHys=1)
+ "Testing scenario exhibiting lower limit of hysteresis loop in sequence being
+ unmet"
+ annotation (Placement(transformation(extent={{-40,-60},{-20,-40}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Staging.SetPoints.Subsequences.FailsafeCondition
+ faiSafCon3(
+ final delEna=900,
+ final TDif=10,
+ final TDifHys=1)
+ "Testing scenario exhibitng lower limit of hysteresis loop in sequence being
+ met"
+ annotation (Placement(transformation(extent={{60,-60},{80,-40}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Staging.SetPoints.Subsequences.FailsafeCondition
+ faiSafCon4(
+ final delEna=900,
+ final TDif=10,
+ final TDifHys=1)
+ "Testing scenario with timer reset"
+ annotation (Placement(transformation(extent={{140,40},{160,60}})));
+
+protected
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Pulse pul(
+ final amplitude=-10 + 1,
+ final period=2.5*900,
+ final offset=80)
+ "Pulse input"
+ annotation (Placement(transformation(extent={{-80,40},{-60,60}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Pulse pul1(
+ final amplitude=-10 - 1,
+ final period=2.5*900,
+ final offset=80)
+ "Pulse input"
+ annotation (Placement(transformation(extent={{20,40},{40,60}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Pulse pul2(
+ final amplitude=-1,
+ final period=2.5*900,
+ final offset=80 - 10)
+ "Pulse input"
+ annotation (Placement(transformation(extent={{-80,-60},{-60,-40}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Pulse pul3(
+ final amplitude=-2*1 - 1/10,
+ final period=2.5*900,
+ final offset=80 - 10 + 1 + 1/10)
+ "Pulse input"
+ annotation (Placement(transformation(extent={{20,-60},{40,-40}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant con(
+ final k=80)
+ "Constant input"
+ annotation (Placement(transformation(extent={{-80,70},{-60,90}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant con1(
+ final k=80)
+ "Constant input"
+ annotation (Placement(transformation(extent={{20,70},{40,90}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant con2(
+ final k=80)
+ "Constant input"
+ annotation (Placement(transformation(extent={{-80,-30},{-60,-10}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant con3(
+ final k=80)
+ "Constant input"
+ annotation (Placement(transformation(extent={{20,-30},{40,-10}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant con4(
+ final k=80)
+ "Constant input"
+ annotation (Placement(transformation(extent={{100,70},{120,90}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant con5(
+ final k=69)
+ "Constant input"
+ annotation (Placement(transformation(extent={{100,40},{120,60}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Pulse booPul(
+ final width=0.05,
+ final period=1000,
+ final shift=960)
+ "Boolean pulse signal"
+ annotation (Placement(transformation(extent={{80,10},{100,30}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant con6(
+ final k=false)
+ "Constant Boolean false"
+ annotation (Placement(transformation(extent={{-80,10},{-60,30}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant con7(
+ final k=false)
+ "Constant Boolean false"
+ annotation (Placement(transformation(extent={{-80,-90},{-60,-70}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant con8(
+ final k=false)
+ "Constant Boolean false"
+ annotation (Placement(transformation(extent={{20,10},{40,30}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant con9(
+ final k=false)
+ "Constant Boolean false"
+ annotation (Placement(transformation(extent={{20,-90},{40,-70}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Edge edg
+ "Rising edge detector"
+ annotation (Placement(transformation(extent={{110,10},{130,30}})));
+
+equation
+ connect(con.y, faiSafCon.TSupSet)
+ annotation (Line(points={{-58,80},{-50,80},{-50,55},{-42,55}},
+ color={0,0,127}));
+ connect(pul.y, faiSafCon.TSup)
+ annotation (Line(points={{-58,50},{-50,50},{-50,50},{-42,50}},
+ color={0,0,127}));
+ connect(con1.y, faiSafCon1.TSupSet)
+ annotation (Line(points={{42,80},{50,80},{50,55},{58,55}},
+ color={0,0,127}));
+ connect(pul1.y, faiSafCon1.TSup)
+ annotation (Line(points={{42,50},{50,50},{50,50},{58,50}},
+ color={0,0,127}));
+ connect(con2.y,faiSafCon2.TSupSet)
+ annotation (Line(points={{-58,-20},{-50,-20},{-50,-45},{-42,-45}},
+ color={0,0,127}));
+ connect(pul2.y,faiSafCon2.TSup)
+ annotation (Line(points={{-58,-50},{-50,-50},{-50,-50},{-42,-50}},
+ color={0,0,127}));
+ connect(con3.y,faiSafCon3.TSupSet)
+ annotation (Line(points={{42,-20},{50,-20},{50,-45},{58,-45}},
+ color={0,0,127}));
+ connect(pul3.y,faiSafCon3.TSup)
+ annotation (Line(points={{42,-50},{50,-50},{50,-50},{58,-50}},
+ color={0,0,127}));
+ connect(con4.y,faiSafCon4. TSupSet)
+ annotation (Line(points={{122,80},{130,80},{130,55},{138,55}},
+ color={0,0,127}));
+ connect(con5.y, faiSafCon4.TSup)
+ annotation (Line(points={{122,50},{130,50},{130,50},{138,50}},
+ color={0,0,127}));
+ connect(con6.y, faiSafCon.uStaChaProEnd)
+ annotation (Line(points={{-58,20},{-50,20},{-50,45},{-42,45}},
+ color={255,0,255}));
+ connect(con7.y, faiSafCon2.uStaChaProEnd)
+ annotation (Line(points={{-58,-80},{-50,-80},{-50,-55},{-42,-55}},
+ color={255,0,255}));
+ connect(con8.y, faiSafCon1.uStaChaProEnd)
+ annotation (Line(points={{42,20},{50,20},{50,45},{58,45}},
+ color={255,0,255}));
+ connect(con9.y, faiSafCon3.uStaChaProEnd)
+ annotation (Line(points={{42,-80},{50,-80},{50,-55},{58,-55}},
+ color={255,0,255}));
+ connect(booPul.y, edg.u)
+ annotation (Line(points={{102,20},{108,20}},
+ color={255,0,255}));
+ connect(edg.y, faiSafCon4.uStaChaProEnd)
+ annotation (Line(points={{132,20},{134,20},{134,45},{138,45}},
+ color={255,0,255}));
+ annotation (
+ Icon(coordinateSystem(preserveAspectRatio=false,
+ extent={{-100,-100},{100,100}}),
+ graphics={
+ Ellipse(lineColor = {75,138,73},
+ fillColor={255,255,255},
+ fillPattern = FillPattern.Solid,
+ extent={{-100,-100},{100,100}}),
+ Polygon(lineColor = {0,0,255},
+ fillColor = {75,138,73},
+ pattern = LinePattern.None,
+ fillPattern = FillPattern.Solid,
+ points={{-36,60},{64,0},{-36,-60},{-36,60}})}),
+ Diagram(coordinateSystem(preserveAspectRatio=false,
+ extent={{-100,-100},{180,100}})),
+ experiment(
+ StopTime=7200,
+ Interval=1,
+ Tolerance=1e-6),
+ Documentation(info="
+
+ This example validates
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Staging.SetPoints.Subsequences.FailsafeCondition
+
+ ",
+ revisions="
+
+ -
+ May 21, 2020, by Karthik Devaprasad:
+ First implementation.
+
+
+ "),
+ __Dymola_Commands(file=
+ "./Resources/Scripts/Dymola/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Staging/SetPoints/Subsequences/Validation/FailsafeCondition.mos"
+ "Simulate and plot"));
+end FailsafeCondition;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Staging/SetPoints/Subsequences/Validation/Status.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Staging/SetPoints/Subsequences/Validation/Status.mo
new file mode 100644
index 00000000000..709ea3de18f
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Staging/SetPoints/Subsequences/Validation/Status.mo
@@ -0,0 +1,227 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Staging.SetPoints.Subsequences.Validation;
+model Status
+ "Validates boiler stage status subsequence"
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Staging.SetPoints.Subsequences.Status sta(
+ final nSta=4,
+ final nBoi=3,
+ final staMat={{1,0,0},{1,1,0},{0,1,1},{1,1,1}})
+ "Tests boiler stage status"
+ annotation (Placement(transformation(extent={{-40,120},{-20,140}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Staging.SetPoints.Subsequences.Status sta1(
+ final nSta=4,
+ final nBoi=3,
+ final staMat={{1,0,0},{1,1,0},{0,1,1},{1,1,1}})
+ "Tests boiler stage status at the first stage"
+ annotation (Placement(transformation(extent={{-40,40},{-20,60}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Staging.SetPoints.Subsequences.Status sta2(
+ final nSta=4,
+ final nBoi=3,
+ final staMat={{0,1,0},{1,1,0},{0,1,1},{1,1,1}})
+ "Tests boiler stage status with no higher stages available"
+ annotation (Placement(transformation(extent={{120,120},{140,140}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Staging.SetPoints.Subsequences.Status sta3(
+ final nSta=4,
+ final nBoi=3,
+ final staMat={{0,1,0},{1,1,0},{0,1,1},{1,1,1}})
+ "Tests boiler stage status with no lower stages available"
+ annotation (Placement(transformation(extent={{120,40},{140,60}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Staging.SetPoints.Subsequences.Status sta4(
+ final nSta=4,
+ final nBoi=3,
+ final staMat={{1,0,0},{1,1,0},{0,1,1},{1,1,1}})
+ "Tests boiler stage status at the highest stage"
+ annotation (Placement(transformation(extent={{-40,-60},{-20,-40}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Staging.SetPoints.Subsequences.Status sta6(
+ final nSta=4,
+ final nBoi=3,
+ final staMat={{1,0,0},{1,1,0},{0,1,1},{1,1,1}})
+ "Tests for unavailable current stage input"
+ annotation (Placement(transformation(extent={{120,-60},{140,-40}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Staging.SetPoints.Subsequences.Status sta7(
+ final nSta=4,
+ final nBoi=3,
+ final staMat={{1,0,0},{1,1,0},{0,1,1},{1,1,1}})
+ "Tests for unavailable current stage input, with no higher stages available"
+ annotation (Placement(transformation(extent={{120,-130},{140,-110}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Staging.SetPoints.Subsequences.Status sta5(
+ final nSta=4,
+ final nBoi=3,
+ final staMat={{1,0,0},{1,1,0},{0,1,1},{1,1,1}})
+ "Tests boiler stage status at zero current stage"
+ annotation (Placement(transformation(extent={{-40,-140},{-20,-120}})));
+
+protected
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant u(
+ final k=3)
+ "Boiler stage"
+ annotation (Placement(transformation(extent={{-140,100},{-120,120}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant u1(
+ final k=2)
+ "Boiler stage"
+ annotation (Placement(transformation(extent={{-140,20},{-120,40}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant u2(
+ final k=3)
+ "Boiler stage"
+ annotation (Placement(transformation(extent={{20,100},{40,120}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant u3(
+ final k=1)
+ "Boiler stage"
+ annotation (Placement(transformation(extent={{20,20},{40,40}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant u4(
+ final k=4)
+ "Boiler stage"
+ annotation (Placement(transformation(extent={{-140,-80},{-120,-60}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant u5(
+ final k=2)
+ "Boiler stage"
+ annotation (Placement(transformation(extent={{20,-80},{40,-60}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant u7(
+ final k=0)
+ "Boiler stage"
+ annotation (Placement(transformation(extent={{-140,-160},{-120,-140}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant ava[4](
+ final k={true,true,true,true})
+ "Stage availability array"
+ annotation (Placement(transformation(extent={{-140,140},{-120,160}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant ava1[4](
+ final k={false,true,true,true})
+ "Stage availability array"
+ annotation (Placement(transformation(extent={{-140,60},{-120,80}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant ava2[4](
+ final k={true,false,true,false})
+ "Stage availability array"
+ annotation (Placement(transformation(extent={{20,140},{40,160}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant ava3[4](
+ final k={true,false,true,false})
+ "Stage availability array"
+ annotation (Placement(transformation(extent={{20,60},{40,80}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant ava6[4](
+ final k={true,true,false,false})
+ "Stage availability array"
+ annotation (Placement(transformation(extent={{20,-120},{40,-100}})));
+
+ Buildings.Controls.OBC.CDL.Conversions.IntegerToReal intToRea
+ "Type converter"
+ annotation (Placement(transformation(extent={{20,-160},{40,-140}})));
+
+ Buildings.Controls.OBC.CDL.Conversions.RealToInteger reaToInt
+ "Type converter"
+ annotation (Placement(transformation(extent={{80,-160},{100,-140}})));
+
+ Buildings.Controls.OBC.CDL.Discrete.UnitDelay uniDel(
+ final samplePeriod=1,
+ final y_start=3)
+ "Logical value delay"
+ annotation (Placement(transformation(extent={{50,-160},{70,-140}})));
+
+equation
+ connect(ava.y, sta.uAva)
+ annotation (Line(points={{-118,150},{-80,150},{-80,124},{-42,124}},
+ color={255,0,255}));
+ connect(u.y, sta.u)
+ annotation (Line(points={{-118,110},{-60,110},{-60,136},{-42,136}},
+ color={255,127,0}));
+ connect(ava1.y, sta1.uAva)
+ annotation (Line(points={{-118,70},{-80,70},{-80,44},{-42,44}},
+ color={255,0,255}));
+ connect(u1.y, sta1.u)
+ annotation (Line(points={{-118,30},{-60,30},{-60,56},{-42,56}},
+ color={255,127,0}));
+ connect(ava2.y, sta2.uAva)
+ annotation (Line(points={{42,150},{80,150},{80,124},{118,124}},
+ color={255,0,255}));
+ connect(u2.y, sta2.u)
+ annotation (Line(points={{42,110},{100,110},{100,136},{118,136}},
+ color={255,127,0}));
+ connect(ava3.y, sta3.uAva)
+ annotation (Line(points={{42,70},{80,70},{80,44},{118,44}},
+ color={255,0,255}));
+ connect(u3.y, sta3.u)
+ annotation (Line(points={{42,30},{100,30},{100,56},{118,56}},
+ color={255,127,0}));
+ connect(u4.y, sta4.u)
+ annotation (Line(points={{-118,-70},{-80,-70},{-80,-44},{-42,-44}},
+ color={255,127,0}));
+ connect(u5.y, sta6.u)
+ annotation (Line(points={{42,-70},{100,-70},{100,-44},{118,-44}},
+ color={255,127,0}));
+ connect(ava6.y, sta7.uAva)
+ annotation (Line(points={{42,-110},{80,-110},{80,-126},{118,-126}},
+ color={255,0,255}));
+ connect(u7.y, sta5.u)
+ annotation (Line(points={{-118,-150},{-80,-150},{-80,-124},{-42,-124}},
+ color={255,127,0}));
+ connect(ava.y, sta4.uAva)
+ annotation (Line(points={{-118,150},{-100,150},{-100,-56},{-42,-56}},
+ color={255,0,255}));
+ connect(ava.y, sta5.uAva)
+ annotation (Line(points={{-118,150},{-100,150},{-100,-136},{-42,-136}},
+ color={255,0,255}));
+ connect(ava3.y, sta6.uAva)
+ annotation (Line(points={{42,70},{60,70},{60,-56},{118,-56}},
+ color={255,0,255}));
+ connect(intToRea.y, uniDel.u)
+ annotation (Line(points={{42,-150},{48,-150}},
+ color={0,0,127}));
+ connect(uniDel.y, reaToInt.u)
+ annotation (Line(points={{72,-150},{78,-150}},
+ color={0,0,127}));
+ connect(reaToInt.y, sta7.u)
+ annotation (Line(points={{102,-150},{110,-150},{110,-114},{118,-114}},
+ color={255,127,0}));
+ connect(sta7.yAvaUp, intToRea.u)
+ annotation (Line(points={{142,-113},{148,-113},{148,-168},{8,-168},{8,-150},{18,-150}},
+ color={255,127,0}));
+
+annotation (
+ experiment(StopTime=10.0,
+ Tolerance=1e-06),
+ __Dymola_Commands(file="modelica://Buildings/Resources/Scripts/Dymola/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Staging/SetPoints/Subsequences/Validation/Status.mos"
+ "Simulate and plot"),
+ Documentation(info="
+
+ This example validates
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Staging.SetPoints.Subsequences.Status.
+
+ ",
+ revisions="
+
+ -
+ May 22, 2020, by Karthik Devaprasad:
+ First implementation.
+
+
+ "),
+ Icon(graphics={
+ Ellipse(lineColor = {75,138,73},
+ fillColor={255,255,255},
+ fillPattern = FillPattern.Solid,
+ extent = {{-100,-100},{100,100}}),
+ Polygon(lineColor = {0,0,255},
+ fillColor = {75,138,73},
+ pattern = LinePattern.None,
+ fillPattern = FillPattern.Solid,
+ points = {{-36,60},{64,0},{-36,-60},{-36,60}})}),Diagram(
+ coordinateSystem(preserveAspectRatio=false,
+ extent={{-160,-180},{160,180}})));
+end Status;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Staging/SetPoints/Subsequences/Validation/Up.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Staging/SetPoints/Subsequences/Validation/Up.mo
new file mode 100644
index 00000000000..7ffe58191b2
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Staging/SetPoints/Subsequences/Validation/Up.mo
@@ -0,0 +1,319 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Staging.SetPoints.Subsequences.Validation;
+model Up
+ "Validate model for stage up conditions sequence"
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Staging.SetPoints.Subsequences.Up
+ staUp(
+ final nSta=2,
+ final fraNonConBoi=0.9,
+ final fraConBoi=1.5,
+ final delEffCon=600,
+ final delFaiCon=900,
+ final sigDif=0.1,
+ final TDif=10,
+ final TDifHys=1)
+ "Scenario testing activation by efficiency condition"
+ annotation (Placement(transformation(extent={{-100,-16},{-80,16}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Staging.SetPoints.Subsequences.Up
+ staUp1(
+ final nSta=2,
+ final fraNonConBoi=0.9,
+ final fraConBoi=1.5,
+ final delEffCon=600,
+ final delFaiCon=900,
+ final sigDif=0.1,
+ final TDif=10,
+ final TDifHys=1)
+ "Scenario testing activation by failsafe condition"
+ annotation (Placement(transformation(extent={{30,-16},{50,16}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Staging.SetPoints.Subsequences.Up
+ staUp2(
+ final nSta=2,
+ final fraNonConBoi=0.9,
+ final fraConBoi=1.5,
+ final delEffCon=600,
+ final delFaiCon=900,
+ final sigDif=0.1,
+ final TDif=10,
+ final TDifHys=1)
+ "Scenario testing activation due to current stage unavailability"
+ annotation (Placement(transformation(extent={{160,-16},{180,16}})));
+
+protected
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant con6(
+ final k=true) "Constant Boolean True signal"
+ annotation (Placement(transformation(extent={{-180,-190},{-160,-170}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant con7(
+ final k=true) "Constant Boolean True signal"
+ annotation (Placement(transformation(extent={{-50,-190},{-30,-170}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Pulse booPul(
+ final period=600) "Boolean pulse signal"
+ annotation (Placement(transformation(extent={{80,-190},{100,-170}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant con(
+ final k=1)
+ "Constant source"
+ annotation (Placement(transformation(extent={{-180,130},{-160,150}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant con1(
+ final k=1)
+ "Constant source"
+ annotation (Placement(transformation(extent={{-180,90},{-160,110}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Pulse pul3(
+ final amplitude=1.2*0.1,
+ final period=5*10*60,
+ final offset=1 - 1.1*0.1)
+ "Pulse source"
+ annotation (Placement(transformation(extent={{-180,50},{-160,70}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant con4(
+ final k=1)
+ "Constant source"
+ annotation (Placement(transformation(extent={{-180,10},{-160,30}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant conIntp[2](
+ final k={1,1})
+ "Constant source"
+ annotation (Placement(transformation(extent={{-180,-30},{-160,-10}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant conInt(
+ final k=2)
+ "Constant source"
+ annotation (Placement(transformation(extent={{-180,-70},{-160,-50}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant con2(
+ final k=80)
+ "Constant input"
+ annotation (Placement(transformation(extent={{-180,-110},{-160,-90}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant con3(
+ final k=1.6)
+ "Constant source"
+ annotation (Placement(transformation(extent={{-180,170},{-160,190}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant con5(
+ final k=82)
+ "Constant input"
+ annotation (Placement(transformation(extent={{-180,-150},{-160,-130}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant con8(
+ final k=1)
+ "Constant source"
+ annotation (Placement(transformation(extent={{-50,130},{-30,150}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant con9(
+ final k=1)
+ "Constant source"
+ annotation (Placement(transformation(extent={{-50,90},{-30,110}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant con10(
+ final k=1)
+ "Constant source"
+ annotation (Placement(transformation(extent={{-50,10},{-30,30}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant conIntp1[2](
+ final k={1,1})
+ "Constant source"
+ annotation (Placement(transformation(extent={{-50,-30},{-30,-10}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant conInt1(
+ final k=2)
+ "Constant source"
+ annotation (Placement(transformation(extent={{-50,-70},{-30,-50}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant con12(
+ final k=1.3)
+ "Constant source"
+ annotation (Placement(transformation(extent={{-50,170},{-30,190}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant con15(
+ final k=1)
+ "Constant source"
+ annotation (Placement(transformation(extent={{80,130},{100,150}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant con16(
+ final k=1)
+ "Constant source"
+ annotation (Placement(transformation(extent={{80,90},{100,110}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant con17(
+ final k=1)
+ "Constant source"
+ annotation (Placement(transformation(extent={{80,10},{100,30}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant conIntp2[2](
+ final k={1,1})
+ "Constant source"
+ annotation (Placement(transformation(extent={{80,-30},{100,-10}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant conInt2(
+ final k=2)
+ "Constant source"
+ annotation (Placement(transformation(extent={{80,-70},{100,-50}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant con18(
+ final k=80)
+ "Constant input"
+ annotation (Placement(transformation(extent={{80,-110},{100,-90}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant con19(
+ final k=1.3)
+ "Constant source"
+ annotation (Placement(transformation(extent={{80,170},{100,190}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant con20(
+ final k=82)
+ "Constant input"
+ annotation (Placement(transformation(extent={{80,-150},{100,-130}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant con21(
+ final k=1.1)
+ "Constant source"
+ annotation (Placement(transformation(extent={{-50,50},{-30,70}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant con13(
+ final k=80)
+ "Constant input"
+ annotation (Placement(transformation(extent={{-50,-110},{-30,-90}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Pulse pul(
+ final amplitude=-11.2,
+ final period=2.5*900,
+ final offset=81.1)
+ "Pulse input"
+ annotation (Placement(transformation(extent={{-50,-150},{-30,-130}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant con11(
+ final k=1.1)
+ "Constant source"
+ annotation (Placement(transformation(extent={{80,50},{100,70}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant con14(
+ final k=false)
+ "Constant Boolean False signal"
+ annotation (Placement(transformation(extent={{-180,-230},{-160,-210}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant con22(
+ final k=false)
+ "Constant Boolean False signal"
+ annotation (Placement(transformation(extent={{-50,-230},{-30,-210}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant con23(
+ final k=false)
+ "Constant Boolean False signal"
+ annotation (Placement(transformation(extent={{80,-230},{100,-210}})));
+
+equation
+ connect(staUp.uCapDes, con.y) annotation (Line(points={{-102,12},{-114,12},{-114,
+ 140},{-158,140}}, color={0,0,127}));
+ connect(con1.y, staUp.uCapUpMin) annotation (Line(points={{-158,100},{-120,100},
+ {-120,9},{-102,9}}, color={0,0,127}));
+ connect(pul3.y, staUp.VHotWat_flow) annotation (Line(points={{-158,60},{-126,60},
+ {-126,6},{-102,6}}, color={0,0,127}));
+ connect(con4.y, staUp.VUpMinSet_flow) annotation (Line(points={{-158,20},{-132,
+ 20},{-132,3},{-102,3}}, color={0,0,127}));
+ connect(conIntp.y, staUp.uTyp) annotation (Line(points={{-158,-20},{-132,-20},
+ {-132,0},{-102,0}}, color={255,127,0}));
+ connect(conInt.y, staUp.uAvaUp) annotation (Line(points={{-158,-60},{-126,-60},
+ {-126,-3},{-102,-3}}, color={255,127,0}));
+ connect(con2.y, staUp.THotWatSupSet) annotation (Line(points={{-158,-100},{-120,
+ -100},{-120,-6},{-102,-6}}, color={0,0,127}));
+ connect(con3.y, staUp.uCapReq) annotation (Line(points={{-158,180},{-110,180},
+ {-110,15},{-102,15}},
+ color={0,0,127}));
+ connect(con5.y, staUp.THotWatSup) annotation (Line(points={{-158,-140},{-114,-140},
+ {-114,-9},{-102,-9}}, color={0,0,127}));
+ connect(con6.y, staUp.uAvaCur) annotation (Line(points={{-158,-180},{-110,-180},
+ {-110,-12},{-102,-12}},
+ color={255,0,255}));
+ connect(staUp1.uCapDes, con8.y) annotation (Line(points={{28,12},{16,12},{16,140},
+ {-28,140}}, color={0,0,127}));
+ connect(con9.y, staUp1.uCapUpMin) annotation (Line(points={{-28,100},{10,100},
+ {10,9},{28,9}}, color={0,0,127}));
+ connect(con10.y, staUp1.VUpMinSet_flow) annotation (Line(points={{-28,20},{-2,
+ 20},{-2,3},{28,3}}, color={0,0,127}));
+ connect(conIntp1.y, staUp1.uTyp) annotation (Line(points={{-28,-20},{-2,-20},{
+ -2,0},{28,0}}, color={255,127,0}));
+ connect(conInt1.y, staUp1.uAvaUp) annotation (Line(points={{-28,-60},{4,-60},{
+ 4,-3},{28,-3}}, color={255,127,0}));
+ connect(con12.y, staUp1.uCapReq) annotation (Line(points={{-28,180},{20,180},{
+ 20,15},{28,15}},
+ color={0,0,127}));
+ connect(con7.y, staUp1.uAvaCur) annotation (Line(points={{-28,-180},{20,-180},
+ {20,-12},{28,-12}},
+ color={255,0,255}));
+ connect(staUp2.uCapDes, con15.y) annotation (Line(points={{158,12},{146,12},{146,
+ 140},{102,140}}, color={0,0,127}));
+ connect(con16.y, staUp2.uCapUpMin) annotation (Line(points={{102,100},{140,100},
+ {140,9},{158,9}}, color={0,0,127}));
+ connect(con17.y, staUp2.VUpMinSet_flow) annotation (Line(points={{102,20},{128,
+ 20},{128,3},{158,3}}, color={0,0,127}));
+ connect(conIntp2.y, staUp2.uTyp) annotation (Line(points={{102,-20},{128,-20},
+ {128,0},{158,0}}, color={255,127,0}));
+ connect(conInt2.y, staUp2.uAvaUp) annotation (Line(points={{102,-60},{134,-60},
+ {134,-3},{158,-3}}, color={255,127,0}));
+ connect(con18.y, staUp2.THotWatSupSet) annotation (Line(points={{102,-100},{140,
+ -100},{140,-6},{158,-6}}, color={0,0,127}));
+ connect(con19.y, staUp2.uCapReq) annotation (Line(points={{102,180},{150,180},
+ {150,15},{158,15}},
+ color={0,0,127}));
+ connect(con20.y, staUp2.THotWatSup) annotation (Line(points={{102,-140},{146,-140},
+ {146,-9},{158,-9}}, color={0,0,127}));
+ connect(con21.y, staUp1.VHotWat_flow)
+ annotation (Line(points={{-28,60},{4,60},{4,6},{28,6}}, color={0,0,127}));
+ connect(con13.y, staUp1.THotWatSupSet) annotation (Line(points={{-28,-100},{10,
+ -100},{10,-6},{28,-6}}, color={0,0,127}));
+ connect(pul.y, staUp1.THotWatSup) annotation (Line(points={{-28,-140},{16,-140},
+ {16,-9},{28,-9}}, color={0,0,127}));
+ connect(con11.y, staUp2.VHotWat_flow) annotation (Line(points={{102,60},{134,60},
+ {134,6},{158,6}}, color={0,0,127}));
+ connect(booPul.y, staUp2.uAvaCur) annotation (Line(points={{102,-180},{150,-180},
+ {150,-12},{158,-12}},
+ color={255,0,255}));
+ connect(con14.y, staUp.uStaChaProEnd) annotation (Line(points={{-158,-220},{-106,
+ -220},{-106,-15},{-102,-15}}, color={255,0,255}));
+ connect(con22.y, staUp1.uStaChaProEnd) annotation (Line(points={{-28,-220},{24,
+ -220},{24,-15},{28,-15}}, color={255,0,255}));
+ connect(con23.y, staUp2.uStaChaProEnd) annotation (Line(points={{102,-220},{154,
+ -220},{154,-15},{158,-15}}, color={255,0,255}));
+
+annotation (
+ experiment(
+ StopTime=7200,
+ Interval=1,
+ Tolerance=1e-06),
+ __Dymola_Commands(file="modelica://Buildings/Resources/Scripts/Dymola/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Staging/SetPoints/Subsequences/Validation/Up.mos"
+ "Simulate and plot"),
+ Documentation(info="
+
+ This example validates
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Staging.SetPoints.Subsequences.Up.
+
+ ", revisions="
+
+ -
+ May 26, 2020, by Karthik Devaprasad:
+ First implementation.
+
+
+ "),
+ Icon(coordinateSystem(extent={{-100,-100},{100,100}}),
+ graphics={
+ Ellipse(lineColor = {75,138,73},
+ fillColor={255,255,255},
+ fillPattern = FillPattern.Solid,
+ extent = {{-100,-100},{100,100}}),
+ Polygon(lineColor = {0,0,255},
+ fillColor = {75,138,73},
+ pattern = LinePattern.None,
+ fillPattern = FillPattern.Solid,
+ points = {{-36,60},{64,0},{-36,-60},{-36,60}})}),
+ Diagram(coordinateSystem(preserveAspectRatio=false,
+ extent={{-200,-240},{200,200}})));
+end Up;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Staging/SetPoints/Subsequences/Validation/package.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Staging/SetPoints/Subsequences/Validation/package.mo
new file mode 100644
index 00000000000..bb879253a48
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Staging/SetPoints/Subsequences/Validation/package.mo
@@ -0,0 +1,36 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Staging.SetPoints.Subsequences;
+package Validation "Collection of validation models"
+annotation (Icon(graphics={
+ Rectangle(
+ lineColor={200,200,200},
+ fillColor={248,248,248},
+ fillPattern=FillPattern.HorizontalCylinder,
+ extent={{-100,-100},{100,100}},
+ radius=25.0),
+ Rectangle(
+ lineColor={128,128,128},
+ extent={{-100,-100},{100,100}},
+ radius=25.0),
+ Polygon(
+ origin={8,14},
+ lineColor={78,138,73},
+ fillColor={78,138,73},
+ pattern=LinePattern.None,
+ fillPattern=FillPattern.Solid,
+ points={{-58.0,46.0},{42.0,-14.0},{-58.0,-74.0},{-58.0,46.0}})}),
+ Documentation(info="
+
+ This package contains validation models for the classes in
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Staging.SetPoints.Subsequences.
+
+
+ Note that most validation models contain simple input data
+ which may not be realistic, but for which the correct
+ output can be obtained through an analytic solution.
+ The examples plot various outputs, which have been verified against these
+ solutions. These model outputs are stored as reference data and
+ used for continuous validation whenever models in the library change.
+
+ "));
+end Validation;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Staging/SetPoints/Subsequences/Validation/package.order b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Staging/SetPoints/Subsequences/Validation/package.order
new file mode 100644
index 00000000000..369181c67db
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Staging/SetPoints/Subsequences/Validation/package.order
@@ -0,0 +1,10 @@
+BoilerIndices
+Capacities
+CapacityRequirement
+Change
+Configurator
+Down
+EfficiencyCondition
+FailsafeCondition
+Status
+Up
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Staging/SetPoints/Subsequences/package.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Staging/SetPoints/Subsequences/package.mo
new file mode 100644
index 00000000000..11417c8b6ed
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Staging/SetPoints/Subsequences/package.mo
@@ -0,0 +1,43 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Staging.SetPoints;
+package Subsequences "Boiler staging setpoint subsequences"
+
+ annotation (Icon(graphics={
+ Rectangle(
+ lineColor={200,200,200},
+ fillColor={248,248,248},
+ fillPattern=FillPattern.HorizontalCylinder,
+ extent={{-100,-100},{100,100}},
+ radius=25.0),
+ Rectangle(
+ lineColor={128,128,128},
+ extent={{-100,-100},{100,100}},
+ radius=25.0),
+ Ellipse(
+ origin={10,10},
+ fillColor={76,76,76},
+ pattern=LinePattern.None,
+ fillPattern=FillPattern.Solid,
+ extent={{-80.0,-80.0},{-20.0,-20.0}}),
+ Ellipse(
+ origin={10,10},
+ pattern=LinePattern.None,
+ fillPattern=FillPattern.Solid,
+ extent={{0.0,-80.0},{60.0,-20.0}}),
+ Ellipse(
+ origin={10,10},
+ fillColor={128,128,128},
+ pattern=LinePattern.None,
+ fillPattern=FillPattern.Solid,
+ extent={{0.0,0.0},{60.0,60.0}}),
+ Ellipse(
+ origin={10,10},
+ lineColor={128,128,128},
+ fillColor={255,255,255},
+ fillPattern=FillPattern.Solid,
+ extent={{-80.0,0.0},{-20.0,60.0}})}),
+ Documentation(info="
+
+ This package contains subsequences used in boiler staging setpoint control.
+
+ "));
+end Subsequences;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Staging/SetPoints/Subsequences/package.order b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Staging/SetPoints/Subsequences/package.order
new file mode 100644
index 00000000000..d1db2c14227
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Staging/SetPoints/Subsequences/package.order
@@ -0,0 +1,11 @@
+BoilerIndices
+Capacities
+CapacityRequirement
+Change
+Configurator
+Down
+EfficiencyCondition
+FailsafeCondition
+Status
+Up
+Validation
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Staging/SetPoints/Validation/SetpointController.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Staging/SetPoints/Validation/SetpointController.mo
new file mode 100644
index 00000000000..279485de299
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Staging/SetPoints/Validation/SetpointController.mo
@@ -0,0 +1,554 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Staging.SetPoints.Validation;
+model SetpointController
+ "Validates boiler stage status setpoint signal generation for boiler plants"
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Staging.SetPoints.SetpointController staSetCon(
+ final have_priOnl=false,
+ final nBoi=2,
+ final boiTyp={Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Types.BoilerTypes.condensingBoiler,
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Types.BoilerTypes.condensingBoiler},
+ final nSta=3,
+ final staMat=[1,0; 0,1; 1,1],
+ final boiDesCap={1000000,1500000},
+ final boiFirMin={0.2,0.3},
+ final boiMinPriPumSpeSta={0,0,0},
+ final delStaCha=600,
+ final avePer=300,
+ final fraNonConBoi=0.9,
+ final fraConBoi=1.5,
+ final delEffCon=600,
+ final TDif=10,
+ final delFaiCon=900,
+ final sigDif=0.01,
+ final TDifHys=1,
+ final fraMinFir=1.1,
+ final delMinFir=300,
+ final fraDesCap=0.8,
+ final delDesCapNonConBoi=600,
+ final delDesCapConBoi=300,
+ final TCirDif=3,
+ final delTRetDif=300,
+ final dTemp=0.1)
+ "Testing staging setpoint controller for condensing boiler plant that is not primary-only"
+ annotation (Placement(transformation(extent={{60,140},{80,176}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Staging.SetPoints.SetpointController staSetCon1(
+ final have_priOnl=false,
+ final nBoi=2,
+ final boiTyp={Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Types.BoilerTypes.nonCondensingBoiler,
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Types.BoilerTypes.nonCondensingBoiler},
+ final nSta=3,
+ final staMat=[1,0; 0,1; 1,1],
+ final boiDesCap={1000000,1500000},
+ final boiFirMin={0.2,0.3},
+ final boiMinPriPumSpeSta={0,0,0},
+ final delStaCha=600,
+ final avePer=300,
+ final fraNonConBoi=0.9,
+ final fraConBoi=1.5,
+ final delEffCon=600,
+ final TDif=10,
+ final delFaiCon=900,
+ final sigDif=0.01,
+ final TDifHys=1,
+ final fraMinFir=1.1,
+ final delMinFir=300,
+ final fraDesCap=0.8,
+ final delDesCapNonConBoi=600,
+ final delDesCapConBoi=300,
+ final TCirDif=3,
+ final delTRetDif=300,
+ final dTemp=0.1)
+ "Testing staging setpoint controller for non-condensing boiler plant"
+ annotation (Placement(transformation(extent={{60,-100},{80,-64}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Staging.SetPoints.SetpointController staSetCon2(
+ final have_priOnl=true,
+ final nBoi=2,
+ final boiTyp={Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Types.BoilerTypes.condensingBoiler,
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Types.BoilerTypes.condensingBoiler},
+ final nSta=3,
+ final staMat=[1,0; 0,1; 1,1],
+ final boiDesCap={1000000,1500000},
+ final boiFirMin={0.2,0.3},
+ final boiMinPriPumSpeSta={0,0,0},
+ final delStaCha=600,
+ final avePer=300,
+ final fraNonConBoi=0.9,
+ final fraConBoi=1.5,
+ final delEffCon=600,
+ final TDif=10,
+ final delFaiCon=900,
+ final sigDif=0.01,
+ final TDifHys=1,
+ final fraMinFir=1.1,
+ final delMinFir=300,
+ final fraDesCap=0.8,
+ final delDesCapNonConBoi=600,
+ final delDesCapConBoi=300,
+ final TCirDif=3,
+ final delTRetDif=300,
+ final dTemp=0.1)
+ "Testing staging setpoint controller for primary-only, condensing boiler plant"
+ annotation (Placement(transformation(extent={{460,140},{480,176}})));
+
+ Buildings.Controls.OBC.CDL.Logical.TrueFalseHold staCha(
+ final trueHoldDuration=900,
+ final falseHoldDuration=0)
+ "Detect stage change signal"
+ annotation (Placement(transformation(extent={{100,60},{120,80}})));
+
+ Buildings.Controls.OBC.CDL.Logical.TrueFalseHold staCha1(
+ final trueHoldDuration=900,
+ final falseHoldDuration=0)
+ "Detect stage change signal"
+ annotation (Placement(transformation(extent={{100,-180},{120,-160}})));
+
+ Buildings.Controls.OBC.CDL.Logical.TrueFalseHold staCha2(
+ final trueHoldDuration=900,
+ final falseHoldDuration=0)
+ "Detect stage change signal"
+ annotation (Placement(transformation(extent={{500,60},{520,80}})));
+
+ Buildings.Controls.OBC.CDL.Logical.TrueFalseHold staUp(
+ final trueHoldDuration=10,
+ final falseHoldDuration=0)
+ "Detect stage up signal"
+ annotation (Placement(transformation(extent={{100,180},{120,200}})));
+
+ Buildings.Controls.OBC.CDL.Logical.TrueFalseHold staUp1(
+ final trueHoldDuration=10,
+ final falseHoldDuration=0)
+ "Detect stage up signal"
+ annotation (Placement(transformation(extent={{100,-60},{120,-40}})));
+
+ Buildings.Controls.OBC.CDL.Logical.TrueFalseHold staUp2(
+ final trueHoldDuration=10,
+ final falseHoldDuration=0)
+ "Detect stage up signal"
+ annotation (Placement(transformation(extent={{500,180},{520,200}})));
+
+ Buildings.Controls.OBC.CDL.Logical.TrueFalseHold staDow(
+ final trueHoldDuration=10,
+ final falseHoldDuration=0)
+ "Detect stage down signal"
+ annotation (Placement(transformation(extent={{100,120},{120,140}})));
+
+ Buildings.Controls.OBC.CDL.Logical.TrueFalseHold staDow1(
+ final trueHoldDuration=10,
+ final falseHoldDuration=0)
+ "Detect stage down signal"
+ annotation (Placement(transformation(extent={{100,-120},{120,-100}})));
+
+ Buildings.Controls.OBC.CDL.Logical.TrueFalseHold staDow2(
+ final trueHoldDuration=10,
+ final falseHoldDuration=0)
+ "Detect stage down signal"
+ annotation (Placement(transformation(extent={{500,120},{520,140}})));
+
+protected
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Sine THotWatRet(
+ final amplitude=7,
+ final phase=0,
+ final offset=273.15 + 22,
+ final freqHz=1/21600)
+ "Hot water return temeprature"
+ annotation (Placement(transformation(extent={{-80,178},{-60,198}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant boiAva[2](
+ final k={true,true})
+ "Boiler availability vector"
+ annotation (Placement(transformation(extent={{-160,10},{-140,30}})));
+
+ Buildings.Controls.OBC.CDL.Discrete.ZeroOrderHold zerOrdHol(
+ final samplePeriod=10) "Hold stage setpoint for signal feedback"
+ annotation (Placement(transformation(extent={{140,148},{160,168}})));
+
+ Buildings.Controls.OBC.CDL.Conversions.IntegerToReal intToRea
+ "Integer to Real converter"
+ annotation (Placement(transformation(extent={{100,148},{120,168}})));
+
+ Buildings.Controls.OBC.CDL.Conversions.RealToInteger reaToInt
+ "Real to Integer converter"
+ annotation (Placement(transformation(extent={{180,148},{200,168}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Pre pre3
+ "Logical pre block"
+ annotation (Placement(transformation(extent={{130,60},{150,80}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant plaSta(
+ final k=true)
+ "Plant status"
+ annotation (Placement(transformation(extent={{-160,40},{-140,60}})));
+
+ Buildings.Controls.OBC.CDL.Logical.TrueDelay truDel(
+ final delayTime=10,
+ final delayOnInit=true)
+ "Delay plant enable signal"
+ annotation (Placement(transformation(extent={{-120,40},{-100,60}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant THotWatSupSet(
+ final k=273.15 + 30)
+ "Hot water supply temperature setpoint"
+ annotation (Placement(transformation(extent={{-80,210},{-60,230}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant zero(
+ final k=10^(-10))
+ "Constant"
+ annotation (Placement(transformation(extent={{-160,110},{-140,130}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant THotWatSup(
+ final k=273.15 + 30)
+ "Hot water supply temperature"
+ annotation (Placement(transformation(extent={{-80,130},{-60,150}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant VHotWat_flow(
+ final k=0.037)
+ "Hot water flow rate"
+ annotation (Placement(transformation(extent={{-160,170},{-140,190}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant THotWatRetSec(
+ final k=273.15 + 26)
+ "Hot water secondary loop return temperature"
+ annotation (Placement(transformation(extent={{-80,90},{-60,110}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Sine uPumSpe(
+ final amplitude=1,
+ final offset=0,
+ final freqHz=1/21600)
+ "Pump speed signal"
+ annotation (Placement(transformation(extent={{-80,60},{-60,80}})));
+
+ Buildings.Controls.OBC.CDL.Logical.FallingEdge falEdg1
+ "Falling edge detector"
+ annotation (Placement(transformation(extent={{160,-180},{180,-160}})));
+
+ Buildings.Controls.OBC.CDL.Routing.RealScalarReplicator reaRep1(
+ final nout=3)
+ "Convert input into array"
+ annotation (Placement(transformation(extent={{-120,-130},{-100,-110}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Sine THotWatRet1(
+ final amplitude=7,
+ final phase=0,
+ final offset=273.15 + 22,
+ final freqHz=1/21600)
+ "Hot water return temeprature"
+ annotation (Placement(transformation(extent={{-80,-62},{-60,-42}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant boiAva1[2](
+ final k={true,true})
+ "Boiler availability vector"
+ annotation (Placement(transformation(extent={{-160,-230},{-140,-210}})));
+
+ Buildings.Controls.OBC.CDL.Discrete.ZeroOrderHold zerOrdHol1(
+ final samplePeriod=10)
+ "Hold stage setpoint for signal feedback"
+ annotation (Placement(transformation(extent={{140,-92},{160,-72}})));
+
+ Buildings.Controls.OBC.CDL.Conversions.IntegerToReal intToRea1
+ "Integer to Real converter"
+ annotation (Placement(transformation(extent={{100,-92},{120,-72}})));
+
+ Buildings.Controls.OBC.CDL.Conversions.RealToInteger reaToInt1
+ "Real to Integer converter"
+ annotation (Placement(transformation(extent={{180,-92},{200,-72}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Pre pre1
+ "Logical pre block"
+ annotation (Placement(transformation(extent={{130,-180},{150,-160}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant plaSta1(
+ final k=true)
+ "Plant status"
+ annotation (Placement(transformation(extent={{-160,-200},{-140,-180}})));
+
+ Buildings.Controls.OBC.CDL.Logical.TrueDelay truDel1(
+ final delayTime=10,
+ final delayOnInit=true)
+ "Delay plant enable signal"
+ annotation (Placement(transformation(extent={{-120,-200},{-100,-180}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant THotWatSupSet1(
+ final k=273.15 + 30)
+ "Hot water supply temperature setpoint"
+ annotation (Placement(transformation(extent={{-80,-30},{-60,-10}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant zero1(
+ final k=10^(-10))
+ "Constant"
+ annotation (Placement(transformation(extent={{-160,-130},{-140,-110}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant THotWatSup1(
+ final k=273.15 + 30)
+ "Hot water supply temperature"
+ annotation (Placement(transformation(extent={{-80,-110},{-60,-90}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant VHotWat_flow1(
+ final k=0.037)
+ "Hot water flow rate"
+ annotation (Placement(transformation(extent={{-160,-70},{-140,-50}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant THotWatRetSec1(
+ final k=273.15 + 26)
+ "Hot water secondary loop return temperature"
+ annotation (Placement(transformation(extent={{-80,-150},{-60,-130}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Sine uPumSpe1(
+ final amplitude=1,
+ final offset=0,
+ final freqHz=1/21600) "Pump speed signal"
+ annotation (Placement(transformation(extent={{-80,-180},{-60,-160}})));
+
+ Buildings.Controls.OBC.CDL.Logical.FallingEdge falEdg2
+ "Falling edge detector"
+ annotation (Placement(transformation(extent={{560,60},{580,80}})));
+
+ Buildings.Controls.OBC.CDL.Routing.RealScalarReplicator reaRep2(
+ final nout=3)
+ "Convert input into array"
+ annotation (Placement(transformation(extent={{280,110},{300,130}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Sine THotWatRet2(
+ final amplitude=7,
+ final phase=0,
+ final offset=273.15 + 22,
+ final freqHz=1/21600)
+ "Hot water return temeprature"
+ annotation (Placement(transformation(extent={{320,170},{340,190}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant boiAva2[2](
+ final k={true,true})
+ "Boiler availability vector"
+ annotation (Placement(transformation(extent={{240,10},{260,30}})));
+
+ Buildings.Controls.OBC.CDL.Discrete.ZeroOrderHold zerOrdHol2(
+ final samplePeriod=10)
+ "Hold stage setpoint for signal feedback"
+ annotation (Placement(transformation(extent={{540,148},{560,168}})));
+
+ Buildings.Controls.OBC.CDL.Conversions.IntegerToReal intToRea2
+ "Integer to Real converter"
+ annotation (Placement(transformation(extent={{500,148},{520,168}})));
+
+ Buildings.Controls.OBC.CDL.Conversions.RealToInteger reaToInt2
+ "Real to Integer converter"
+ annotation (Placement(transformation(extent={{580,148},{600,168}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Pre pre2
+ "Logical pre block"
+ annotation (Placement(transformation(extent={{530,60},{550,80}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant plaSta2(
+ final k=true)
+ "Plant status"
+ annotation (Placement(transformation(extent={{240,40},{260,60}})));
+
+ Buildings.Controls.OBC.CDL.Logical.TrueDelay truDel2(
+ final delayTime=10,
+ final delayOnInit=true)
+ "Delay plant enable signal"
+ annotation (Placement(transformation(extent={{280,40},{300,60}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant THotWatSupSet2(
+ final k=273.15 + 30)
+ "Hot water supply temperature setpoint"
+ annotation (Placement(transformation(extent={{320,202},{340,222}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant zero2(
+ final k=10^(-10))
+ "Constant"
+ annotation (Placement(transformation(extent={{240,110},{260,130}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant THotWatSup2(
+ final k=273.15 + 30)
+ "Hot water supply temperature"
+ annotation (Placement(transformation(extent={{320,130},{340,150}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant VHotWat_flow2(
+ final k=0.037)
+ "Hot water flow rate"
+ annotation (Placement(transformation(extent={{240,170},{260,190}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Sine uPumSpe2(
+ final amplitude=1,
+ final offset=0,
+ final freqHz=1/21600) "Pump speed signal"
+ annotation (Placement(transformation(extent={{320,80},{340,100}})));
+
+ Buildings.Controls.OBC.CDL.Logical.FallingEdge falEdg
+ "Falling edge detector"
+ annotation (Placement(transformation(extent={{160,60},{180,80}})));
+
+ Buildings.Controls.OBC.CDL.Routing.RealScalarReplicator reaRep(
+ final nout=3)
+ "Convert input into array"
+ annotation (Placement(transformation(extent={{-120,110},{-100,130}})));
+
+equation
+ connect(staSetCon.ySta,intToRea. u)
+ annotation (Line(points={{82,166},{94,166},{94,158},{98,158}},
+ color={255,127,0}));
+ connect(intToRea.y,zerOrdHol. u)
+ annotation (Line(points={{122,158},{138,158}},
+ color={0,0,127}));
+ connect(zerOrdHol.y,reaToInt. u)
+ annotation (Line(points={{162,158},{178,158}},
+ color={0,0,127}));
+ connect(reaToInt.y,staSetCon. u) annotation (Line(points={{202,158},{210,158},
+ {210,100},{48,100},{48,145},{58,145}},
+ color={255,127,0}));
+ connect(staSetCon.yChaEdg, staCha.u) annotation (Line(points={{82,158},{90,158},
+ {90,70},{98,70}}, color={255,0,255}));
+ connect(staCha.y, pre3.u)
+ annotation (Line(points={{122,70},{128,70}}, color={255,0,255}));
+ connect(truDel.y,staSetCon. uPla) annotation (Line(points={{-98,50},{32,50},{32,
+ 148},{58,148}},
+ color={255,0,255}));
+ connect(plaSta.y, truDel.u) annotation (Line(points={{-138,50},{-122,50}},
+ color={255,0,255}));
+ connect(pre3.y, falEdg.u)
+ annotation (Line(points={{152,70},{158,70}}, color={255,0,255}));
+ connect(falEdg.y, staSetCon.uStaChaProEnd) annotation (Line(points={{182,70},{
+ 190,70},{190,50},{61,50},{61,138}}, color={255,0,255}));
+ connect(THotWatSupSet.y, staSetCon.THotWatSupSet) annotation (Line(points={{-58,220},
+ {-30,220},{-30,175},{58,175}}, color={0,0,127}));
+ connect(THotWatRet.y, staSetCon.THotWatRet) annotation (Line(points={{-58,188},
+ {-48,188},{-48,172},{58,172}}, color={0,0,127}));
+ connect(THotWatSup.y, staSetCon.THotWatSup) annotation (Line(points={{-58,140},
+ {-40,140},{-40,166},{58,166}}, color={0,0,127}));
+ connect(zero.y, reaRep.u) annotation (Line(points={{-138,120},{-122,120}},
+ color={0,0,127}));
+ connect(reaRep.y, staSetCon.VMinSet_flow) annotation (Line(points={{-98,120},{
+ -30,120},{-30,163},{58,163}}, color={0,0,127}));
+ connect(boiAva.y, staSetCon.uBoiAva) annotation (Line(points={{-138,20},{40,20},
+ {40,142},{58,142}}, color={255,0,255}));
+ connect(VHotWat_flow.y, staSetCon.VHotWat_flow) annotation (Line(points={{-138,
+ 180},{-100,180},{-100,169},{58,169}}, color={0,0,127}));
+ connect(THotWatRet.y, staSetCon.THotWatRetPri) annotation (Line(points={{-58,188},
+ {-48,188},{-48,157},{58,157}}, color={0,0,127}));
+ connect(THotWatRetSec.y, staSetCon.THotWatRetSec) annotation (Line(points={{-58,100},
+ {-24,100},{-24,154},{58,154}}, color={0,0,127}));
+ connect(uPumSpe.y, staSetCon.uPumSpe) annotation (Line(points={{-58,70},{-16,70},
+ {-16,151},{58,151}}, color={0,0,127}));
+ connect(staUp.u, staSetCon.yChaUpEdg) annotation (Line(points={{98,190},{90,190},
+ {90,162},{82,162}}, color={255,0,255}));
+ connect(staDow.u, staSetCon.yChaDowEdg) annotation (Line(points={{98,130},{94,
+ 130},{94,154},{82,154}}, color={255,0,255}));
+ connect(staSetCon1.ySta, intToRea1.u)
+ annotation (Line(points={{82,-74},{94,-74},{94,-82},{98,-82}},
+ color={255,127,0}));
+ connect(intToRea1.y, zerOrdHol1.u)
+ annotation (Line(points={{122,-82},{138,-82}}, color={0,0,127}));
+ connect(zerOrdHol1.y, reaToInt1.u)
+ annotation (Line(points={{162,-82},{178,-82}}, color={0,0,127}));
+ connect(reaToInt1.y, staSetCon1.u) annotation (Line(points={{202,-82},{210,-82},
+ {210,-140},{48,-140},{48,-95},{58,-95}}, color={255,127,0}));
+ connect(staSetCon1.yChaEdg, staCha1.u) annotation (Line(points={{82,-82},{90,-82},
+ {90,-170},{98,-170}}, color={255,0,255}));
+ connect(staCha1.y, pre1.u)
+ annotation (Line(points={{122,-170},{128,-170}}, color={255,0,255}));
+ connect(truDel1.y, staSetCon1.uPla) annotation (Line(points={{-98,-190},{32,-190},
+ {32,-92},{58,-92}}, color={255,0,255}));
+ connect(plaSta1.y, truDel1.u)
+ annotation (Line(points={{-138,-190},{-122,-190}}, color={255,0,255}));
+ connect(pre1.y, falEdg1.u)
+ annotation (Line(points={{152,-170},{158,-170}}, color={255,0,255}));
+ connect(falEdg1.y, staSetCon1.uStaChaProEnd) annotation (Line(points={{182,-170},
+ {190,-170},{190,-190},{61,-190},{61,-102}}, color={255,0,255}));
+ connect(THotWatSupSet1.y, staSetCon1.THotWatSupSet) annotation (Line(points={{-58,-20},
+ {-30,-20},{-30,-65},{58,-65}}, color={0,0,127}));
+ connect(THotWatRet1.y, staSetCon1.THotWatRet) annotation (Line(points={{-58,-52},
+ {-48,-52},{-48,-68},{58,-68}}, color={0,0,127}));
+ connect(THotWatSup1.y, staSetCon1.THotWatSup) annotation (Line(points={{-58,-100},
+ {-40,-100},{-40,-74},{58,-74}}, color={0,0,127}));
+ connect(zero1.y, reaRep1.u)
+ annotation (Line(points={{-138,-120},{-122,-120}}, color={0,0,127}));
+ connect(reaRep1.y, staSetCon1.VMinSet_flow) annotation (Line(points={{-98,-120},
+ {-30,-120},{-30,-77},{58,-77}}, color={0,0,127}));
+ connect(boiAva1.y, staSetCon1.uBoiAva) annotation (Line(points={{-138,-220},{40,
+ -220},{40,-98},{58,-98}}, color={255,0,255}));
+ connect(VHotWat_flow1.y, staSetCon1.VHotWat_flow) annotation (Line(points={{-138,
+ -60},{-100,-60},{-100,-71},{58,-71}}, color={0,0,127}));
+ connect(THotWatRet1.y, staSetCon1.THotWatRetPri) annotation (Line(points={{-58,-52},
+ {-48,-52},{-48,-83},{58,-83}}, color={0,0,127}));
+ connect(THotWatRetSec1.y, staSetCon1.THotWatRetSec) annotation (Line(points={{-58,
+ -140},{-24,-140},{-24,-86},{58,-86}}, color={0,0,127}));
+ connect(uPumSpe1.y, staSetCon1.uPumSpe) annotation (Line(points={{-58,-170},{-16,
+ -170},{-16,-89},{58,-89}}, color={0,0,127}));
+ connect(staUp1.u, staSetCon1.yChaUpEdg) annotation (Line(points={{98,-50},{90,
+ -50},{90,-78},{82,-78}}, color={255,0,255}));
+ connect(staDow1.u, staSetCon1.yChaDowEdg) annotation (Line(points={{98,-110},{
+ 94,-110},{94,-86},{82,-86}}, color={255,0,255}));
+ connect(staSetCon2.ySta, intToRea2.u)
+ annotation (Line(points={{482,166},{494,166},{494,158},{498,158}},
+ color={255,127,0}));
+ connect(intToRea2.y, zerOrdHol2.u)
+ annotation (Line(points={{522,158},{538,158}}, color={0,0,127}));
+ connect(zerOrdHol2.y, reaToInt2.u)
+ annotation (Line(points={{562,158},{578,158}}, color={0,0,127}));
+ connect(reaToInt2.y, staSetCon2.u) annotation (Line(points={{602,158},{610,158},
+ {610,100},{448,100},{448,145},{458,145}}, color={255,127,0}));
+ connect(staSetCon2.yChaEdg, staCha2.u) annotation (Line(points={{482,158},{490,
+ 158},{490,70},{498,70}}, color={255,0,255}));
+ connect(staCha2.y, pre2.u)
+ annotation (Line(points={{522,70},{528,70}}, color={255,0,255}));
+ connect(truDel2.y, staSetCon2.uPla) annotation (Line(points={{302,50},{432,50},
+ {432,148},{458,148}}, color={255,0,255}));
+ connect(plaSta2.y, truDel2.u)
+ annotation (Line(points={{262,50},{278,50}}, color={255,0,255}));
+ connect(pre2.y, falEdg2.u)
+ annotation (Line(points={{552,70},{558,70}}, color={255,0,255}));
+ connect(falEdg2.y, staSetCon2.uStaChaProEnd) annotation (Line(points={{582,70},
+ {590,70},{590,50},{461,50},{461,138}}, color={255,0,255}));
+ connect(THotWatSupSet2.y, staSetCon2.THotWatSupSet) annotation (Line(points={{342,212},
+ {370,212},{370,175},{458,175}}, color={0,0,127}));
+ connect(THotWatRet2.y, staSetCon2.THotWatRet) annotation (Line(points={{342,180},
+ {352,180},{352,172},{458,172}}, color={0,0,127}));
+ connect(THotWatSup2.y, staSetCon2.THotWatSup) annotation (Line(points={{342,140},
+ {360,140},{360,166},{458,166}}, color={0,0,127}));
+ connect(zero2.y, reaRep2.u)
+ annotation (Line(points={{262,120},{278,120}}, color={0,0,127}));
+ connect(reaRep2.y, staSetCon2.VMinSet_flow) annotation (Line(points={{302,120},
+ {370,120},{370,163},{458,163}}, color={0,0,127}));
+ connect(boiAva2.y, staSetCon2.uBoiAva) annotation (Line(points={{262,20},{440,
+ 20},{440,142},{458,142}}, color={255,0,255}));
+ connect(VHotWat_flow2.y, staSetCon2.VHotWat_flow) annotation (Line(points={{262,180},
+ {300,180},{300,169},{458,169}}, color={0,0,127}));
+ connect(staUp2.u, staSetCon2.yChaUpEdg) annotation (Line(points={{498,190},{490,
+ 190},{490,162},{482,162}}, color={255,0,255}));
+ connect(staDow2.u, staSetCon2.yChaDowEdg) annotation (Line(points={{498,130},{
+ 494,130},{494,154},{482,154}}, color={255,0,255}));
+ connect(uPumSpe2.y, staSetCon2.uBypValPos) annotation (Line(points={{342,90},{
+ 380,90},{380,160},{458,160}}, color={0,0,127}));
+annotation (
+ experiment(StopTime=14000.0, Tolerance=1e-06),
+ __Dymola_Commands(file="modelica://Buildings/Resources/Scripts/Dymola/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Staging/SetPoints/Validation/SetpointController.mos"
+ "Simulate and plot"),
+ Documentation(info="
+
+This example validates
+
+Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Staging.SetPoints.SetpointController.
+
+", revisions="
+
+-
+July 2, 2020, by Karthik Devaprasad:
+First implementation.
+
+
+"),
+Icon(coordinateSystem(extent={{-100,-100},{100,100}}),
+ graphics={
+ Ellipse(lineColor = {75,138,73},
+ fillColor={255,255,255},
+ fillPattern = FillPattern.Solid,
+ extent = {{-100,-100},{100,100}}),
+ Polygon(lineColor = {0,0,255},
+ fillColor = {75,138,73},
+ pattern = LinePattern.None,
+ fillPattern = FillPattern.Solid,
+ points = {{-36,60},{64,0},{-36,-60},{-36,60}})}),Diagram(
+ coordinateSystem(preserveAspectRatio=false, extent={{-220,-240},{620,240}})));
+end SetpointController;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Staging/SetPoints/Validation/package.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Staging/SetPoints/Validation/package.mo
new file mode 100644
index 00000000000..bddc39431e4
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Staging/SetPoints/Validation/package.mo
@@ -0,0 +1,37 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Staging.SetPoints;
+package Validation "Collection of validation models"
+
+annotation (Icon(graphics={
+ Rectangle(
+ lineColor={200,200,200},
+ fillColor={248,248,248},
+ fillPattern=FillPattern.HorizontalCylinder,
+ extent={{-100,-100},{100,100}},
+ radius=25.0),
+ Rectangle(
+ lineColor={128,128,128},
+ extent={{-100,-100},{100,100}},
+ radius=25.0),
+ Polygon(
+ origin={8,14},
+ lineColor={78,138,73},
+ fillColor={78,138,73},
+ pattern=LinePattern.None,
+ fillPattern=FillPattern.Solid,
+ points={{-58.0,46.0},{42.0,-14.0},{-58.0,-74.0},{-58.0,46.0}})}),
+ Documentation(info="
+
+ This package contains validation models for the classes in
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Staging.SetPoints.
+
+
+ Note that most validation models contain simple input data
+ which may not be realistic, but for which the correct
+ output can be obtained through an analytic solution.
+ The examples plot various outputs, which have been verified against these
+ solutions. These model outputs are stored as reference data and
+ used for continuous validation whenever models in the library change.
+
+ "));
+end Validation;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Staging/SetPoints/Validation/package.order b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Staging/SetPoints/Validation/package.order
new file mode 100644
index 00000000000..704eb1c7289
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Staging/SetPoints/Validation/package.order
@@ -0,0 +1 @@
+SetpointController
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Staging/SetPoints/package.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Staging/SetPoints/package.mo
new file mode 100644
index 00000000000..c4c2eab088f
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Staging/SetPoints/package.mo
@@ -0,0 +1,24 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Staging;
+package SetPoints "Package for boiler plant staging setpoint control sequences"
+
+ annotation (Icon(graphics={
+ Rectangle(
+ lineColor={200,200,200},
+ fillColor={248,248,248},
+ fillPattern=FillPattern.HorizontalCylinder,
+ extent={{-100,-100},{100,100}},
+ radius=25.0),
+ Rectangle(
+ lineColor={128,128,128},
+ extent={{-100,-100},{100,100}},
+ radius=25.0),
+ Text(
+ extent={{-100,100},{100,-100}},
+ textColor={0,0,0},
+ textString="S")}),
+ Documentation(info="
+
+ This package contains boiler stage setpoint control sequences. The implementation
+ is based on section 5.3.3 in ASHRAE RP-1711, Draft on March 23, 2020.
+"));
+end SetPoints;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Staging/SetPoints/package.order b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Staging/SetPoints/package.order
new file mode 100644
index 00000000000..45752c2fcd2
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Staging/SetPoints/package.order
@@ -0,0 +1,3 @@
+SetpointController
+Subsequences
+Validation
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Staging/package.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Staging/package.mo
new file mode 100644
index 00000000000..b3876514905
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Staging/package.mo
@@ -0,0 +1,42 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant;
+package Staging "Boiler staging sequences"
+ annotation (Icon(graphics={
+ Rectangle(
+ lineColor={200,200,200},
+ fillColor={248,248,248},
+ fillPattern=FillPattern.HorizontalCylinder,
+ extent={{-100,-100},{100,100}},
+ radius=25.0),
+ Rectangle(
+ lineColor={128,128,128},
+ extent={{-100,-100},{100,100}},
+ radius=25.0),
+ Ellipse(
+ origin={10,10},
+ fillColor={76,76,76},
+ pattern=LinePattern.None,
+ fillPattern=FillPattern.Solid,
+ extent={{-80.0,-80.0},{-20.0,-20.0}}),
+ Ellipse(
+ origin={10,10},
+ pattern=LinePattern.None,
+ fillPattern=FillPattern.Solid,
+ extent={{0.0,-80.0},{60.0,-20.0}}),
+ Ellipse(
+ origin={10,10},
+ fillColor={128,128,128},
+ pattern=LinePattern.None,
+ fillPattern=FillPattern.Solid,
+ extent={{0.0,0.0},{60.0,60.0}}),
+ Ellipse(
+ origin={10,10},
+ lineColor={128,128,128},
+ fillColor={255,255,255},
+ fillPattern=FillPattern.Solid,
+ extent={{-80.0,0.0},{-20.0,60.0}})}),
+ Documentation(info="
+
+ This package contains the boiler staging sequences.
+
+ "));
+end Staging;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Staging/package.order b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Staging/package.order
new file mode 100644
index 00000000000..0aa2322c4dc
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Staging/package.order
@@ -0,0 +1,2 @@
+Processes
+SetPoints
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Types/BoilerTypes.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Types/BoilerTypes.mo
new file mode 100644
index 00000000000..047306d5093
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Types/BoilerTypes.mo
@@ -0,0 +1,39 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Types;
+package BoilerTypes
+ "Definitions for boiler types"
+
+ constant Integer condensingBoiler = 1
+ "Condensing boiler";
+
+ constant Integer nonCondensingBoiler = 2
+ "Non-condensing boiler";
+
+annotation (
+ Documentation(info="
+
+ This package provides constants that indicate the boiler type based on the
+ presence of flue gas heat recovery.
+ The boiler types are enumerated in an order that enables identification of stage
+ type as condensing or non-condensing.
+
+ ",
+ revisions="
+
+ -
+ May 21, 2020, by Karthik Devaprasad:
+ First implementation.
+
+
+ "),
+ Icon(graphics={
+ Rectangle(
+ lineColor={200,200,200},
+ fillColor={248,248,248},
+ fillPattern=FillPattern.HorizontalCylinder,
+ extent={{-100.0,-100.0},{100.0,100.0}},
+ radius=25.0),
+ Rectangle(
+ lineColor={128,128,128},
+ extent={{-100.0,-100.0},{100.0,100.0}},
+ radius=25.0)}));
+end BoilerTypes;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Types/PrimaryPumpSpeedControlTypes.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Types/PrimaryPumpSpeedControlTypes.mo
new file mode 100644
index 00000000000..7442e243c5a
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Types/PrimaryPumpSpeedControlTypes.mo
@@ -0,0 +1,20 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Types;
+type PrimaryPumpSpeedControlTypes = enumeration(
+ localDP "Pump speed regulated to maintain local differential pressure setpoint",
+ remoteDP "Pump speed regulated to maintain remote differential pressure setpoint",
+ flowrate "Pump speed regulated to maintain flowrate through decoupler",
+ temperature "Pump speed regulated to maintain temperature difference between
+ primary and secondary loops")
+ "Definitions for primary pump speed control types" annotation (Documentation(
+ info="
+
+Enumeration to define the choice of primary pump speed control types:
+
+
+Enumeration | Description |
+localDP | Pump speed regulated to maintain local differential pressure setpoint. |
+remoteDP | Pump speed regulated to maintain remote differential pressure setpoint. |
+flowrate | Pump speed regulated to maintain flowrate through decoupler. |
+temperature | Pump speed regulated to maintain temperature difference between primary and secondary loops. |
+
+"));
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Types/SecondaryPumpSpeedControlTypes.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Types/SecondaryPumpSpeedControlTypes.mo
new file mode 100644
index 00000000000..78102e38577
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Types/SecondaryPumpSpeedControlTypes.mo
@@ -0,0 +1,15 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Types;
+type SecondaryPumpSpeedControlTypes = enumeration(
+ localDP "Pump speed regulated to maintain local differential pressure setpoint",
+ remoteDP "Pump speed regulated to maintain remote differential pressure setpoint")
+ "Definitions for secondary pump speed control types" annotation (
+ Documentation(info="
+
+Enumeration to define the choice of secondary pump speed control types:
+
+
+Enumeration | Description |
+localDP | Pump speed regulated to maintain local differential pressure setpoint. |
+remoteDP | Pump speed regulated to maintain remote differential pressure setpoint. |
+
+"));
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Types/package.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Types/package.mo
new file mode 100644
index 00000000000..848584bd0e1
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Types/package.mo
@@ -0,0 +1,46 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant;
+package Types "Package with type definitions for boiler plants"
+annotation (Documentation(info="
+
+ This package provides type definitions used in boiler plant control sequences.
+
+ ",
+ revisions="
+
+ -
+ May 21, 2020, by Karthik Devaprasad:
+ First implementation.
+
+
+ "),
+ Icon(graphics={
+ Rectangle(
+ lineColor={200,200,200},
+ fillColor={248,248,248},
+ fillPattern=FillPattern.HorizontalCylinder,
+ extent={{-100.0,-100.0},{100.0,100.0}},
+ radius=25.0),
+ Rectangle(
+ lineColor={128,128,128},
+ extent={{-100.0,-100.0},{100.0,100.0}},
+ radius=25.0),
+ Polygon(
+ origin={-12.167,-23},
+ fillColor={128,128,128},
+ pattern=LinePattern.None,
+ fillPattern=FillPattern.Solid,
+ points={{12.167,65},{14.167,93},{36.167,89},{24.167,20},{4.167,-30},
+ {14.167,-30},{24.167,-30},{24.167,-40},{-5.833,-50},{-15.833,
+ -30},{4.167,20},{12.167,65}},
+ smooth=Smooth.Bezier,
+ lineColor={0,0,0}),
+ Polygon(
+ origin={2.7403,1.6673},
+ fillColor={128,128,128},
+ pattern=LinePattern.None,
+ fillPattern=FillPattern.Solid,
+ points={{49.2597,22.3327},{31.2597,24.3327},{7.2597,18.3327},{-26.7403,
+ 10.3327},{-46.7403,14.3327},{-48.7403,6.3327},{-32.7403,0.3327},{-6.7403,
+ 4.3327},{33.2597,14.3327},{49.2597,14.3327},{49.2597,22.3327}},
+ smooth=Smooth.Bezier)}));
+end Types;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Types/package.order b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Types/package.order
new file mode 100644
index 00000000000..55dd25fb332
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Types/package.order
@@ -0,0 +1,3 @@
+BoilerTypes
+PrimaryPumpSpeedControlTypes
+SecondaryPumpSpeedControlTypes
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Validation/Controller.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Validation/Controller.mo
new file mode 100644
index 00000000000..c70da3b199e
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Validation/Controller.mo
@@ -0,0 +1,554 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Validation;
+model Controller
+ "Validation model for boiler plant control sequence"
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Controller controller(
+ final have_priOnl=true,
+ final nBoi=2,
+ final boiTyp={Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Types.BoilerTypes.condensingBoiler,
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Types.BoilerTypes.condensingBoiler},
+ final nSta=3,
+ final staMat=[1,0; 0,1; 1,1],
+ final nSenPri=1,
+ final nPumPri_nominal=2,
+ final nPumSec=0,
+ final nSenSec=0,
+ final nPumSec_nominal=0,
+ final VHotWatPri_flow_nominal=0.0006,
+ final maxLocDpPri=4100,
+ final minLocDpPri=3900,
+ final VHotWatSec_flow_nominal=0,
+ final speConTypPri=Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Types.PrimaryPumpSpeedControlTypes.remoteDP,
+ final boiDesCap={15000*0.8,15000*0.8},
+ final boiFirMin={0.2,0.3},
+ final minFloSet={0.2*0.0003,0.3*0.0003},
+ final maxFloSet={0.0003,0.0003},
+ final bypSetRat=0.00001,
+ final nPumPri=2,
+ final have_heaPriPum=true,
+ final TMinSupNonConBoi = 333.2,
+ final have_varPriPum=true,
+ final boiDesFlo={0.0003,0.0003},
+ final minPriPumSpeSta={0,0,0})
+ "Test scenario for primary-only boiler plants with headered variable speed primary pumps"
+ annotation (Placement(transformation(extent={{-260,40},{-240,108}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Controller controller1(
+ final have_priOnl=false,
+ final have_secFloSen=true,
+ final have_varSecPum=true,
+ final nBoi=2,
+ final boiTyp={Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Types.BoilerTypes.condensingBoiler,
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Types.BoilerTypes.condensingBoiler},
+ final nSta=3,
+ final staMat=[1,0; 0,1; 1,1],
+ final nSenPri=1,
+ final nPumPri_nominal=2,
+ final nPumSec=2,
+ final nSenSec=1,
+ final nPumSec_nominal=2,
+ final VHotWatPri_flow_nominal=0.0006,
+ final maxLocDpPri=4100,
+ final minLocDpPri=3900,
+ final VHotWatSec_flow_nominal=0.0004,
+ final maxLocDpSec=4100,
+ final minLocDpSec=3900,
+ final speConTypPri=Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Types.PrimaryPumpSpeedControlTypes.flowrate,
+ final boiDesCap={15000*0.8,15000*0.8},
+ final boiFirMin={0.2,0.3},
+ final minFloSet={0.2*0.0003,0.3*0.0003},
+ final maxFloSet={0.0003,0.0003},
+ final bypSetRat=0.00001,
+ final nPumPri=2,
+ final have_heaPriPum=true,
+ final TMinSupNonConBoi=333.2,
+ final have_varPriPum=true,
+ final boiDesFlo={0.0003,0.0003},
+ final minPriPumSpeSta={0,0,0},
+ final speConTypSec=Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Types.SecondaryPumpSpeedControlTypes.remoteDP)
+ "Test scenario for primary-secondary boiler plants with headered variable speed primary pumps"
+ annotation (Placement(transformation(extent={{0,40},{20,108}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Controller controller2(
+ final have_priOnl=false,
+ final have_secFloSen=true,
+ final have_varSecPum=true,
+ final nBoi=2,
+ final boiTyp={Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Types.BoilerTypes.condensingBoiler,
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Types.BoilerTypes.condensingBoiler},
+ final nSta=3,
+ final staMat=[1,0; 0,1; 1,1],
+ final nSenPri=1,
+ final nPumPri_nominal=2,
+ final nPumSec=2,
+ final nSenSec=1,
+ final nPumSec_nominal=2,
+ final VHotWatPri_flow_nominal=0.0006,
+ final maxLocDpPri=4100,
+ final minLocDpPri=3900,
+ final VHotWatSec_flow_nominal=0.0004,
+ final maxLocDpSec=4100,
+ final minLocDpSec=3900,
+ final speConTypPri=Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Types.PrimaryPumpSpeedControlTypes.flowrate,
+ final boiDesCap={15000*0.8,15000*0.8},
+ final boiFirMin={0.2,0.3},
+ final minFloSet={0.2*0.0003,0.3*0.0003},
+ final maxFloSet={0.0003,0.0003},
+ final bypSetRat=0.00001,
+ final nPumPri=2,
+ final have_heaPriPum=false,
+ final TMinSupNonConBoi=333.2,
+ final have_varPriPum=true,
+ final boiDesFlo={0.0003,0.0003},
+ final minPriPumSpeSta={0,0,0},
+ final speConTypSec=Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Types.SecondaryPumpSpeedControlTypes.remoteDP)
+ "Test scenario for primary-secondary boiler plants with dedicated variable speed primary pumps"
+ annotation (Placement(transformation(extent={{220,40},{240,108}})));
+
+protected
+ Buildings.Controls.OBC.CDL.Logical.TrueDelay truDel[2](
+ final delayTime=fill(10, 2))
+ "True delay for simulating boiler proven on process"
+ annotation (Placement(transformation(extent={{-220,130},{-200,150}})));
+
+ Buildings.Controls.OBC.CDL.Logical.TrueDelay truDel1[2](
+ final delayTime=fill(20, 2))
+ "True delay for simulating pump proven on process"
+ annotation (Placement(transformation(extent={{-220,40},{-200,60}})));
+
+ Buildings.Controls.OBC.CDL.Discrete.UnitDelay uniDel(
+ final samplePeriod=1)
+ "Unit delay to simulate change of bypass valve position"
+ annotation (Placement(transformation(extent={{-220,70},{-200,90}})));
+
+ Buildings.Controls.OBC.CDL.Discrete.UnitDelay uniDel1[2](
+ final samplePeriod=fill(1, 2))
+ "Unit delay to simulate change of isolation valve position"
+ annotation (Placement(transformation(extent={{-220,100},{-200,120}})));
+
+ Buildings.Controls.OBC.CDL.Logical.TrueDelay truDel2[2](
+ final delayTime=fill(15, 2))
+ "True delay for simulating boiler proven on process"
+ annotation (Placement(transformation(extent={{40,130},{60,150}})));
+
+ Buildings.Controls.OBC.CDL.Discrete.UnitDelay uniDel2[2](
+ final samplePeriod=fill(1, 2))
+ "Unit delay to simulate change of isolation valve position"
+ annotation (Placement(transformation(extent={{40,100},{60,120}})));
+
+ Buildings.Controls.OBC.CDL.Logical.TrueDelay truDel3[2](
+ final delayTime=fill(20, 2))
+ "True delay for simulating pump proven on process"
+ annotation (Placement(transformation(extent={{40,60},{60,80}})));
+
+ Buildings.Controls.OBC.CDL.Discrete.UnitDelay uniDel4[2](
+ final samplePeriod=fill(1, 2))
+ "Unit delay to simulate change of pump speed"
+ annotation (Placement(transformation(extent={{70,30},{90,50}})));
+
+ Buildings.Controls.OBC.CDL.Logical.TrueDelay truDel4[2](
+ final delayTime=fill(20, 2))
+ "True delay for simulating pump proven on process"
+ annotation (Placement(transformation(extent={{40,0},{60,20}})));
+
+ Buildings.Controls.OBC.CDL.Routing.RealScalarReplicator reaRep(
+ final nout=2)
+ "Replicate pump speed to all pumps in system"
+ annotation (Placement(transformation(extent={{40,30},{60,50}})));
+
+ Buildings.Controls.OBC.CDL.Logical.TrueDelay truDel5[2](
+ final delayTime=fill(20, 2))
+ "True delay for simulating boiler proven on process"
+ annotation (Placement(transformation(extent={{260,120},{280,140}})));
+
+ Buildings.Controls.OBC.CDL.Logical.TrueDelay truDel6[2](
+ final delayTime=fill(20, 2))
+ "True delay for simulating pump proven on process"
+ annotation (Placement(transformation(extent={{260,90},{280,110}})));
+
+ Buildings.Controls.OBC.CDL.Discrete.UnitDelay uniDel3[2](
+ final samplePeriod=fill(1, 2))
+ "Unit delay to simulate change of pump speed"
+ annotation (Placement(transformation(extent={{290,60},{310,80}})));
+
+ Buildings.Controls.OBC.CDL.Routing.RealScalarReplicator reaRep1(
+ final nout=2)
+ "Replicate pump speed to all pumps in system"
+ annotation (Placement(transformation(extent={{260,60},{280,80}})));
+
+ Buildings.Controls.OBC.CDL.Logical.TrueDelay truDel7[2](
+ final delayTime=fill(20, 2))
+ "True delay for simulating pump proven on process"
+ annotation (Placement(transformation(extent={{260,30},{280,50}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant conInt(
+ final k=0)
+ "Number of temperature reset requests"
+ annotation (Placement(transformation(extent={{-340,150},{-320,170}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Pre pre1[2]
+ "Logical pre block"
+ annotation (Placement(transformation(extent={{-190,130},{-170,150}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Pre pre2[2]
+ "Logical pre block"
+ annotation (Placement(transformation(extent={{-190,40},{-170,60}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Pre pre3[2]
+ "Logical pre block"
+ annotation (Placement(transformation(extent={{70,130},{90,150}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Pre pre4[2]
+ "Logical pre block"
+ annotation (Placement(transformation(extent={{70,60},{90,80}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Pre pre5[2]
+ "Logical pre block"
+ annotation (Placement(transformation(extent={{70,0},{90,20}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Pre pre6[2]
+ "Logical pre block"
+ annotation (Placement(transformation(extent={{290,120},{310,140}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Pre pre7[2]
+ "Logical pre block"
+ annotation (Placement(transformation(extent={{290,90},{310,110}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Pre pre8[2]
+ "Logical pre block"
+ annotation (Placement(transformation(extent={{290,30},{310,50}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant TOut(
+ final k=290)
+ "Measured outdoor air drybulb temperature"
+ annotation (Placement(transformation(extent={{-340,90},{-320,110}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant TSup(
+ final k=340)
+ "Measured hot water supply temperature"
+ annotation (Placement(transformation(extent={{-340,60},{-320,80}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant TRet(
+ final k=335)
+ "Measured hot water return temperature"
+ annotation (Placement(transformation(extent={{-340,30},{-320,50}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant VHotWat_flow[4](
+ final k={6e-5,9e-5,20e-5,0.0004})
+ "Measured hot water volume flowrate in primary loop"
+ annotation (Placement(transformation(extent={{-340,0},{-320,20}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant dPHotWat[1](
+ final k={4000})
+ "Measured differential pressure between hot water supply and return in primary loop"
+ annotation (Placement(transformation(extent={{-340,-30},{-320,-10}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant uBoiAva[2](
+ final k={true,true})
+ "Boiler availability status vector"
+ annotation (Placement(transformation(extent={{-340,-60},{-320,-40}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Sine sin(
+ final amplitude=2,
+ final freqHz=1/14400)
+ "Sine input"
+ annotation (Placement(transformation(extent={{-340,120},{-320,140}})));
+
+ Buildings.Controls.OBC.CDL.Conversions.RealToInteger reaToInt
+ "Real to Integer conversion"
+ annotation (Placement(transformation(extent={{-300,120},{-280,140}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant TOut1(
+ final k=290)
+ "Measured outdoor air drybulb temperature"
+ annotation (Placement(transformation(extent={{-80,90},{-60,110}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant TSup1(
+ final k=340)
+ "Measured hot water supply temperature"
+ annotation (Placement(transformation(extent={{-80,60},{-60,80}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant TRet1(
+ final k=335)
+ "Measured hot water return temperature"
+ annotation (Placement(transformation(extent={{-80,30},{-60,50}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant VHotWat_flow1[4](
+ final k={6e-5,9e-5,20e-5,0.00029})
+ "Measured hot water volume flowrate in primary loop"
+ annotation (Placement(transformation(extent={{-80,0},{-60,20}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant dPHotWat1[1](
+ final k={4000})
+ "Measured differential pressure between hot water supply and return in secondary loop"
+ annotation (Placement(transformation(extent={{-80,-30},{-60,-10}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant uBoiAva1[2](
+ final k={true,true})
+ "Boiler availability status vector"
+ annotation (Placement(transformation(extent={{-80,-60},{-60,-40}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Sine sin1(
+ final amplitude=2, final freqHz=1/14400)
+ "Sine input"
+ annotation (Placement(transformation(extent={{-80,120},{-60,140}})));
+
+ Buildings.Controls.OBC.CDL.Conversions.RealToInteger reaToInt1
+ "Real to Integer conversion"
+ annotation (Placement(transformation(extent={{-40,120},{-20,140}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant VHotWatSec_flow(
+ final k=0.0003)
+ "Measured hot water volume flowrate in secondary loop"
+ annotation (Placement(transformation(extent={{-80,-100},{-60,-80}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant TOut2(
+ final k=290)
+ "Measured outdoor air drybulb temperature"
+ annotation (Placement(transformation(extent={{140,90},{160,110}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant TSup2(
+ final k=340)
+ "Measured hot water supply temperature"
+ annotation (Placement(transformation(extent={{140,60},{160,80}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant TRet2(
+ final k=335)
+ "Measured hot water return temperature"
+ annotation (Placement(transformation(extent={{140,30},{160,50}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant VHotWat_flow2[4](
+ final k={6e-5,9e-5,20e-5,0.00029})
+ "Measured hot water volume flowrate in primary loop"
+ annotation (Placement(transformation(extent={{140,0},{160,20}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant dPHotWat2[1](
+ final k={4000})
+ "Measured differential pressure between hot water supply and return in secondary loop"
+ annotation (Placement(transformation(extent={{140,-30},{160,-10}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant uBoiAva2[2](
+ final k={true,true})
+ "Boiler availability status vector"
+ annotation (Placement(transformation(extent={{140,-60},{160,-40}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Sine sin2(
+ final amplitude=2,
+ final freqHz=1/14400)
+ "Sine input"
+ annotation (Placement(transformation(extent={{140,120},{160,140}})));
+
+ Buildings.Controls.OBC.CDL.Conversions.RealToInteger reaToInt2
+ "Real to Integer conversion"
+ annotation (Placement(transformation(extent={{180,120},{200,140}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant VHotWatSec_flow1(
+ final k=0.0003)
+ "Measured hot water volume flowrate in secondary loop"
+ annotation (Placement(transformation(extent={{140,-100},{160,-80}})));
+
+equation
+ connect(TOut.y, controller.TOut) annotation (Line(points={{-318,100},{-262,100}},
+ color={0,0,127}));
+
+ connect(uBoiAva.y, controller.uBoiAva) annotation (Line(points={{-318,-50},{-288,
+ -50},{-288,82},{-262,82}}, color={255,0,255}));
+
+ connect(TSup.y, controller.TSupPri) annotation (Line(points={{-318,70},{-310,70},
+ {-310,97},{-262,97}}, color={0,0,127}));
+
+ connect(TRet.y, controller.TRetPri) annotation (Line(points={{-318,40},{-300,40},
+ {-300,94},{-262,94}}, color={0,0,127}));
+
+ connect(dPHotWat.y, controller.dpHotWatPri_rem) annotation (Line(points={{-318,
+ -20},{-294,-20},{-294,85},{-262,85}}, color={0,0,127}));
+
+ connect(VHotWat_flow[4].y, controller.VHotWatPri_flow) annotation (Line(
+ points={{-318,10},{-298,10},{-298,91},{-262,91}}, color={0,0,127}));
+
+ connect(sin.y, reaToInt.u)
+ annotation (Line(points={{-318,130},{-302,130}}, color={0,0,127}));
+
+ connect(TOut1.y, controller1.TOut) annotation (Line(points={{-58,100},{-2,100}},
+ color={0,0,127}));
+
+ connect(uBoiAva1.y, controller1.uBoiAva) annotation (Line(points={{-58,-50},{-34,
+ -50},{-34,82},{-2,82}}, color={255,0,255}));
+
+ connect(TSup1.y, controller1.TSupPri) annotation (Line(points={{-58,70},{-50,70},
+ {-50,97},{-2,97}}, color={0,0,127}));
+
+ connect(TRet1.y, controller1.TRetPri) annotation (Line(points={{-58,40},{-40,40},
+ {-40,94},{-2,94}}, color={0,0,127}));
+
+ connect(VHotWat_flow1[4].y, controller1.VHotWatPri_flow) annotation (Line(
+ points={{-58,10},{-38,10},{-38,91},{-2,91}}, color={0,0,127}));
+
+ connect(sin1.y, reaToInt1.u)
+ annotation (Line(points={{-58,130},{-42,130}}, color={0,0,127}));
+
+ connect(VHotWatSec_flow.y, controller1.VHotWatSec_flow) annotation (Line(
+ points={{-58,-90},{-30,-90},{-30,79},{-2,79}},
+ color={0,0,127}));
+
+ connect(dPHotWat1.y, controller1.dpHotWatSec_rem) annotation (Line(points={{-58,-20},
+ {-26,-20},{-26,66},{-2,66}}, color={0,0,127}));
+
+ connect(TRet1.y, controller1.TRetSec) annotation (Line(points={{-58,40},{-40,40},
+ {-40,88},{-2,88}}, color={0,0,127}));
+
+ connect(TOut2.y,controller2. TOut) annotation (Line(points={{162,100},{218,100}},
+ color={0,0,127}));
+
+ connect(uBoiAva2.y,controller2. uBoiAva) annotation (Line(points={{162,-50},{192,
+ -50},{192,82},{218,82}},color={255,0,255}));
+
+ connect(TSup2.y,controller2. TSupPri) annotation (Line(points={{162,70},{170,70},
+ {170,97},{218,97}}, color={0,0,127}));
+
+ connect(TRet2.y,controller2. TRetPri) annotation (Line(points={{162,40},{180,40},
+ {180,94},{218,94}}, color={0,0,127}));
+
+ connect(VHotWat_flow2[4].y,controller2. VHotWatPri_flow) annotation (Line(
+ points={{162,10},{182,10},{182,91},{218,91}}, color={0,0,127}));
+
+ connect(sin2.y,reaToInt2. u)
+ annotation (Line(points={{162,130},{178,130}}, color={0,0,127}));
+
+ connect(VHotWatSec_flow1.y, controller2.VHotWatSec_flow) annotation (Line(
+ points={{162,-90},{196,-90},{196,79},{218,79}}, color={0,0,127}));
+
+ connect(dPHotWat2.y,controller2. dpHotWatSec_rem) annotation (Line(points={{162,-20},
+ {200,-20},{200,66},{218,66}}, color={0,0,127}));
+
+ connect(TRet2.y,controller2. TRetSec) annotation (Line(points={{162,40},{180,40},
+ {180,88},{218,88}}, color={0,0,127}));
+
+ connect(controller.yBoi, truDel.u) annotation (Line(points={{-238,84},{-230,
+ 84},{-230,140},{-222,140}},
+ color={255,0,255}));
+ connect(controller.yPriPum, truDel1.u) annotation (Line(points={{-238,68},{
+ -230,68},{-230,50},{-222,50}},
+ color={255,0,255}));
+ connect(controller.yBypValPos, uniDel.u) annotation (Line(points={{-238,72},{
+ -224,72},{-224,80},{-222,80}},
+ color={0,0,127}));
+ connect(uniDel.y, controller.uBypValPos) annotation (Line(points={{-198,80},{-150,
+ 80},{-150,20},{-272,20},{-272,45},{-262,45}}, color={0,0,127}));
+ connect(controller.yHotWatIsoVal, uniDel1.u) annotation (Line(points={{-238,76},
+ {-226,76},{-226,110},{-222,110}}, color={0,0,127}));
+ connect(uniDel1.y, controller.uHotWatIsoVal) annotation (Line(points={{-198,110},
+ {-144,110},{-144,-16},{-278,-16},{-278,48},{-262,48}}, color={0,0,127}));
+ connect(controller1.yBoi, truDel2.u) annotation (Line(points={{22,84},{26,84},
+ {26,140},{38,140}}, color={255,0,255}));
+ connect(controller1.yHotWatIsoVal, uniDel2.u) annotation (Line(points={{22,76},
+ {28,76},{28,110},{38,110}}, color={0,0,127}));
+ connect(controller1.yPriPum, truDel3.u) annotation (Line(points={{22,68},{34,
+ 68},{34,70},{38,70}},
+ color={255,0,255}));
+ connect(uniDel2.y, controller1.uHotWatIsoVal) annotation (Line(points={{62,110},
+ {106,110},{106,-16},{-18,-16},{-18,48},{-2,48}}, color={0,0,127}));
+ connect(controller1.ySecPum, truDel4.u) annotation (Line(points={{22,60},{30,
+ 60},{30,10},{38,10}},
+ color={255,0,255}));
+ connect(reaRep.y, uniDel4.u)
+ annotation (Line(points={{62,40},{68,40}}, color={0,0,127}));
+ connect(controller1.yPriPumSpe, reaRep.u) annotation (Line(points={{22,64},{
+ 32,64},{32,40},{38,40}},
+ color={0,0,127}));
+ connect(uniDel4.y, controller1.uPriPumSpe) annotation (Line(points={{92,40},{96,
+ 40},{96,-10},{-6,-10},{-6,42},{-2,42}}, color={0,0,127}));
+ connect(controller2.yBoi, truDel5.u) annotation (Line(points={{242,84},{250,
+ 84},{250,130},{258,130}},
+ color={255,0,255}));
+ connect(truDel6.u, controller2.yPriPum) annotation (Line(points={{258,100},{
+ 254,100},{254,68},{242,68}},
+ color={255,0,255}));
+ connect(reaRep1.y, uniDel3.u)
+ annotation (Line(points={{282,70},{288,70}}, color={0,0,127}));
+ connect(controller2.yPriPumSpe, reaRep1.u) annotation (Line(points={{242,64},
+ {254,64},{254,70},{258,70}},color={0,0,127}));
+ connect(uniDel3.y, controller2.uPriPumSpe) annotation (Line(points={{312,70},{
+ 320,70},{320,10},{216,10},{216,42},{218,42}}, color={0,0,127}));
+ connect(controller2.ySecPum, truDel7.u) annotation (Line(points={{242,60},{
+ 252,60},{252,40},{258,40}},
+ color={255,0,255}));
+ connect(conInt.y, controller.TSupResReq) annotation (Line(points={{-318,160},{
+ -266,160},{-266,106},{-262,106}}, color={255,127,0}));
+ connect(conInt.y, controller1.TSupResReq) annotation (Line(points={{-318,160},
+ {-6,160},{-6,106},{-2,106}}, color={255,127,0}));
+ connect(conInt.y, controller2.TSupResReq) annotation (Line(points={{-318,160},
+ {212,160},{212,106},{218,106}}, color={255,127,0}));
+ connect(truDel.y, pre1.u)
+ annotation (Line(points={{-198,140},{-192,140}}, color={255,0,255}));
+ connect(pre1.y, controller.uBoi) annotation (Line(points={{-168,140},{-130,140},
+ {-130,-30},{-284,-30},{-284,57},{-262,57}}, color={255,0,255}));
+ connect(pre2.u, truDel1.y)
+ annotation (Line(points={{-192,50},{-198,50}}, color={255,0,255}));
+ connect(pre2.y, controller.uPriPum) annotation (Line(points={{-168,50},{-154,50},
+ {-154,8},{-274,8},{-274,54},{-262,54}}, color={255,0,255}));
+ connect(truDel2.y, pre3.u)
+ annotation (Line(points={{62,140},{68,140}}, color={255,0,255}));
+ connect(truDel3.y, pre4.u)
+ annotation (Line(points={{62,70},{68,70}}, color={255,0,255}));
+ connect(truDel4.y, pre5.u)
+ annotation (Line(points={{62,10},{68,10}}, color={255,0,255}));
+ connect(pre5.y, controller1.uSecPum) annotation (Line(points={{92,10},{100,10},
+ {100,-12},{-14,-12},{-14,51},{-2,51}}, color={255,0,255}));
+ connect(pre4.y, controller1.uPriPum) annotation (Line(points={{92,70},{108,70},
+ {108,-20},{-10,-20},{-10,54},{-2,54}}, color={255,0,255}));
+ connect(pre3.y, controller1.uBoi) annotation (Line(points={{92,140},{110,140},
+ {110,-22},{-20,-22},{-20,57},{-2,57}}, color={255,0,255}));
+ connect(pre6.u, truDel5.y)
+ annotation (Line(points={{288,130},{282,130}}, color={255,0,255}));
+ connect(pre6.y, controller2.uBoi) annotation (Line(points={{312,130},{340,130},
+ {340,0},{202,0},{202,57},{218,57}}, color={255,0,255}));
+ connect(pre7.u, truDel6.y)
+ annotation (Line(points={{288,100},{282,100}}, color={255,0,255}));
+ connect(pre7.y, controller2.uPriPum) annotation (Line(points={{312,100},{338,100},
+ {338,2},{204,2},{204,54},{218,54}}, color={255,0,255}));
+ connect(truDel7.y, pre8.u)
+ annotation (Line(points={{282,40},{288,40}}, color={255,0,255}));
+ connect(pre8.y, controller2.uSecPum) annotation (Line(points={{312,40},{336,40},
+ {336,4},{206,4},{206,51},{218,51}}, color={255,0,255}));
+ connect(reaToInt.y, controller.plaReq) annotation (Line(points={{-278,130},{
+ -272,130},{-272,103},{-262,103}}, color={255,127,0}));
+ connect(reaToInt1.y, controller1.plaReq) annotation (Line(points={{-18,130},{
+ -12,130},{-12,103},{-2,103}}, color={255,127,0}));
+ connect(reaToInt2.y, controller2.plaReq) annotation (Line(points={{202,130},{
+ 208,130},{208,103},{218,103}}, color={255,127,0}));
+ annotation (
+ Icon(coordinateSystem(preserveAspectRatio=false, extent={{-100,-100},{100,100}}),
+ graphics={Ellipse(
+ lineColor = {75,138,73},
+ fillColor={255,255,255},
+ fillPattern = FillPattern.Solid,
+ extent={{-100,-100},{100,100}}),
+ Polygon(
+ lineColor = {0,0,255},
+ fillColor = {75,138,73},
+ pattern = LinePattern.None,
+ fillPattern = FillPattern.Solid,
+ points={{-36,60},{64,0},{-36,-60},{-36,60}})}),
+ Diagram(coordinateSystem(
+ preserveAspectRatio=false, extent={{-360,-240},{360,240}})),
+ experiment(
+ StopTime=7500,
+ Tolerance=1e-06),
+ __Dymola_Commands(file="./Resources/Scripts/Dymola/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Validation/Controller.mos"
+ "Simulate and plot"),
+ Documentation(info="
+
+ This example validates
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Controller.
+
+ ", revisions="
+
+ -
+ November 4, 2020, by Karthik Devaprasad:
+ First implementation.
+
+
+ "));
+end Controller;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Validation/package.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Validation/package.mo
new file mode 100644
index 00000000000..e6fca1d71f2
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Validation/package.mo
@@ -0,0 +1,37 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant;
+package Validation "Collection of validation models"
+
+annotation (Icon(graphics={
+ Rectangle(
+ lineColor={200,200,200},
+ fillColor={248,248,248},
+ fillPattern=FillPattern.HorizontalCylinder,
+ extent={{-100,-100},{100,100}},
+ radius=25.0),
+ Rectangle(
+ lineColor={128,128,128},
+ extent={{-100,-100},{100,100}},
+ radius=25.0),
+ Polygon(
+ origin={8,14},
+ lineColor={78,138,73},
+ fillColor={78,138,73},
+ pattern=LinePattern.None,
+ fillPattern=FillPattern.Solid,
+ points={{-58.0,46.0},{42.0,-14.0},{-58.0,-74.0},{-58.0,46.0}})}),
+ Documentation(info="
+
+ This package contains validation models for the classes in
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Generic.
+
+
+ Note that most validation models contain simple input data
+ which may not be realistic, but for which the correct
+ output can be obtained through an analytic solution.
+ The examples plot various outputs, which have been verified against these
+ solutions. These model outputs are stored as reference data and
+ used for continuous validation whenever models in the library change.
+
+ "));
+end Validation;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Validation/package.order b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Validation/package.order
new file mode 100644
index 00000000000..8cba75e31a7
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/Validation/package.order
@@ -0,0 +1 @@
+Controller
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/package.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/package.mo
new file mode 100644
index 00000000000..7980bff1d48
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/package.mo
@@ -0,0 +1,23 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem;
+package BoilerPlant "Boiler plant control sequences"
+
+annotation (preferredView="info",
+ Icon(graphics={
+ Rectangle(
+ lineColor={200,200,200},
+ fillColor={248,248,248},
+ fillPattern=FillPattern.HorizontalCylinder,
+ extent={{-100.0,-100.0},{100.0,100.0}},
+ radius=25.0),
+ Rectangle(
+ lineColor={128,128,128},
+ extent={{-100.0,-100.0},{100.0,100.0}},
+ radius=25.0)}),
+ Documentation(info="
+
+ This package contains control sequences for a boiler plant comprising a single boiler or multiple boilers,
+ hot water pumps and flow-control devices.
+ The control sequences are implemented based on ASHRAE RP-1711, Draft 4 and Draft 5.
+
+ "));
+end BoilerPlant;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/package.order b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/package.order
new file mode 100644
index 00000000000..0dc8706a7c3
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/package.order
@@ -0,0 +1,8 @@
+Controller
+BypassValve
+Generic
+Pumps
+SetPoints
+Staging
+Types
+Validation
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Controller.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Controller.mo
new file mode 100644
index 00000000000..64b2a023eab
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Controller.mo
@@ -0,0 +1,2499 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant;
+block Controller "Chiller plant controller"
+
+ parameter Boolean closeCoupledPlant=false
+ "True: the plant is close coupled, i.e. the pipe length from the chillers to cooling towers does not exceed approximately 100 feet"
+ annotation (Dialog(tab="General"));
+
+ // ---- General: Chiller configuration ----
+
+ parameter Integer nChi=2
+ "Total number of chillers"
+ annotation(Dialog(tab="General", group="Chillers configuration"));
+
+ parameter Boolean have_parChi=true
+ "Flag: true means that the plant has parallel chillers"
+ annotation(Dialog(tab="General", group="Chillers configuration"));
+
+ parameter Boolean have_ponyChiller=false
+ "True: have pony chiller"
+ annotation (Dialog(tab="General", group="Chillers configuration"));
+
+ parameter Boolean need_reduceChillerDemand=false
+ "True: need limit chiller demand when chiller staging"
+ annotation (Dialog(tab="General", group="Chillers configuration"));
+
+ parameter Real desCap(unit="W")=1e6
+ "Plant design capacity"
+ annotation (Dialog(tab="General", group="Chillers configuration"));
+
+ parameter Integer chiTyp[nChi]={
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Types.ChillerAndStageTypes.positiveDisplacement,
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Types.ChillerAndStageTypes.variableSpeedCentrifugal}
+ "Chiller type. Recommended staging order: positive displacement, variable speed centrifugal, constant speed centrifugal"
+ annotation (Dialog(tab="General", group="Chillers configuration"));
+
+ parameter Real chiDesCap[nChi](unit="W")
+ "Design chiller capacities vector"
+ annotation (Dialog(tab="General", group="Chillers configuration"));
+
+ parameter Real chiMinCap[nChi](unit="W")
+ "Chiller minimum cycling loads vector"
+ annotation (Dialog(tab="General", group="Chillers configuration"));
+
+ parameter Real TChiWatSupMin[nChi](
+ unit="K",
+ displayUnit="degC")={278.15,278.15}
+ "Minimum chilled water supply temperature"
+ annotation (Dialog(tab="General", group="Chillers configuration"));
+
+ parameter Real minChiLif(
+ unit="K",
+ displayUnit="K")=10
+ "Minimum allowable lift at minimum load for chiller"
+ annotation(Dialog(tab="General", group="Chillers configuration", enable=not have_heaPreConSig));
+
+ parameter Boolean have_heaPreConSig=false
+ "True: if there is head pressure control signal from chiller controller"
+ annotation(Dialog(tab="General", group="Chillers configuration"));
+
+ parameter Boolean anyVsdCen = false
+ "True: the plant contains at least one variable speed centrifugal chiller"
+ annotation (Dialog(tab="General", group="Chillers configuration"));
+
+ // ---- General: Waterside economizer ----
+
+ parameter Boolean have_WSE=true
+ "True if the plant has waterside economizer. When the plant has waterside economizer, the condenser water pump speed must be variable"
+ annotation (Dialog(tab="General", group="Waterside economizer"));
+
+ parameter Real heaExcAppDes(
+ unit="K",
+ displayUnit="K")=2
+ "Design heat exchanger approach"
+ annotation(Evaluate=true, Dialog(tab="General", group="Waterside economizer", enable=have_WSE));
+
+ parameter Boolean have_byPasValCon=false
+ "True: chilled water flow through economizer is controlled using heat exchanger bypass valve"
+ annotation (Dialog(group="Waterside economizer", enable=have_WSE));
+
+ // ----- General: Chilled water pump ---
+
+ parameter Integer nChiWatPum = 2
+ "Total number of chilled water pumps"
+ annotation (Dialog(tab="General", group="Chilled water pump"));
+
+ parameter Boolean have_heaChiWatPum=true
+ "Flag of headered chilled water pumps design: true=headered, false=dedicated"
+ annotation (Dialog(tab="General", group="Chilled water pump"));
+
+ parameter Boolean have_locSenChiWatPum=false
+ "True: there is local differential pressure sensor hardwired to the plant controller"
+ annotation (Dialog(tab="General", group="Chilled water pump"));
+
+ parameter Integer nSenChiWatPum=2
+ "Total number of remote differential pressure sensors"
+ annotation (Dialog(tab="General", group="Chilled water pump"));
+
+ // ---- General: Condenser water pump ----
+
+ parameter Integer nConWatPum=2
+ "Total number of condenser water pumps"
+ annotation (Dialog(tab="General", group="Condenser water pump"));
+
+ parameter Boolean have_fixSpeConWatPum = false
+ "True: the plant has fixed speed condenser water pumps. When the plant has waterside economizer, it must be false"
+ annotation(Dialog(tab="General", group="Condenser water pump", enable=not have_WSE));
+
+ parameter Real fixConWatPumSpe = 0.9
+ "Fixed speed of the constant speed condenser water pump"
+ annotation(Dialog(tab="General", group="Condenser water pump", enable=not have_WSE and have_fixSpeConWatPum));
+
+ parameter Boolean have_heaConWatPum=true
+ "True: headered condenser water pumps"
+ annotation (Dialog(tab="General", group="Condenser water pump"));
+
+ // ---- General: Chiller staging settings ----
+
+ parameter Integer nSta = 2
+ "Number of chiller stages, neither zero stage nor the stages with enabled waterside economizer is included"
+ annotation (Dialog(tab="General", group="Staging configuration"));
+
+ parameter Integer totSta=6
+ "Total number of plant stages, including stage zero and the stages with a WSE, if applicable"
+ annotation (Dialog(tab="General", group="Staging configuration"));
+
+ parameter Integer staMat[nSta, nChi] = {{1,0},{1,1}}
+ "Staging matrix with chiller stage as row index and chiller as column index"
+ annotation (Dialog(tab="General", group="Staging configuration"));
+
+ parameter Real desChiNum[nSta+1]={0,1,2}
+ "Design number of chiller that should be ON at each chiller stage, including the zero stage"
+ annotation (Dialog(tab="General", group="Staging configuration", enable=have_fixSpeConWatPum));
+
+ parameter Real staVec[totSta]={0,0.5,1,1.5,2,2.5}
+ "Plant stage vector, element value like x.5 means chiller stage x plus WSE"
+ annotation (Dialog(tab="General", group="Staging configuration"));
+
+ parameter Real desConWatPumSpe[totSta](
+ final min=fill(0, totSta),
+ final max=fill(1, totSta))={0,0.5,0.75,0.6,0.75,0.9}
+ "Design condenser water pump speed setpoints, according to current chiller stage and WSE status"
+ annotation (Dialog(tab="General", group="Staging configuration"));
+
+ parameter Real desConWatPumNum[totSta]={0,1,1,2,2,2}
+ "Design number of condenser water pumps that should be ON, according to current chiller stage and WSE status"
+ annotation (Dialog(tab="General", group="Staging configuration"));
+
+ parameter Real towCelOnSet[totSta]={0,2,2,4,4,4}
+ "Design number of tower fan cells that should be ON, according to current chiller stage and WSE status"
+ annotation(Dialog(tab="General", group="Staging configuration"));
+
+ // ---- General: Cooling tower ----
+
+ parameter Integer nTowCel=4
+ "Total number of cooling tower cells"
+ annotation (Dialog(tab="General", group="Cooling tower"));
+
+ parameter Real cooTowAppDes(
+ unit="K",
+ displayUnit="K")=2
+ "Design cooling tower approach"
+ annotation(Evaluate=true, Dialog(tab="General", group="Cooling tower"));
+
+ // ---- Plant enable ----
+
+ parameter Real schTab[4,2] = [0,1; 6*3600,1; 19*3600,1; 24*3600,1]
+ "Plant enabling schedule allowing operators to lock out the plant during off-hour"
+ annotation(Dialog(tab="Plant enable"));
+
+ parameter Real TChiLocOut(
+ unit="K",
+ displayUnit="degC")=277.5
+ "Outdoor air lockout temperature below which the chiller plant should be disabled"
+ annotation(Dialog(tab="Plant enable"));
+
+ parameter Real plaThrTim(unit="s")=900
+ "Threshold time to check status of chiller plant"
+ annotation(Dialog(tab="Plant enable"));
+
+ parameter Real reqThrTim(unit="s")=180
+ "Threshold time to check current chiller plant request"
+ annotation(Dialog(tab="Plant enable"));
+
+ parameter Integer ignReq = 0
+ "Ignorable chiller plant requests"
+ annotation(Dialog(tab="Plant enable"));
+
+ // ---- Waterside economizer ----
+
+ parameter Real holdPeriod(unit="s")=1200
+ "WSE minimum on or off time"
+ annotation(Evaluate=true, Dialog(tab="Waterside economizer", group="Enable parameters", enable=have_WSE));
+
+ parameter Real delDis(unit="s")=120
+ "Delay disable time period"
+ annotation(Evaluate=true, Dialog(tab="Waterside economizer", group="Enable parameters", enable=have_WSE));
+
+ parameter Real TOffsetEna(unit="K")=2
+ "Temperature offset between the chilled water return upstream of WSE and the predicted WSE output"
+ annotation(Evaluate=true, Dialog(tab="Waterside economizer", group="Enable parameters", enable=have_WSE));
+
+ parameter Real TOffsetDis(unit="K")=1
+ "Temperature offset between the chilled water return upstream and downstream WSE"
+ annotation(Evaluate=true, Dialog(tab="Waterside economizer", group="Enable parameters", enable=have_WSE));
+
+ parameter Real TOutWetDes(
+ unit="K",
+ displayUnit="degC")=288.15
+ "Design outdoor air wet bulb temperature"
+ annotation(Evaluate=true, Dialog(tab="Waterside economizer", group="Design parameters", enable=have_WSE));
+
+ parameter Real VHeaExcDes_flow(unit="m3/s")=0.015
+ "Desing heat exchanger chilled water volume flow rate"
+ annotation(Evaluate=true, Dialog(tab="Waterside economizer", group="Design parameters", enable=have_WSE));
+
+ parameter Real step=0.02 "Tuning step"
+ annotation(Evaluate=true, Dialog(tab="Waterside economizer", group="Tuning", enable=have_WSE));
+
+ parameter Real wseOnTimDec(unit="s")=3600
+ "Economizer enable time needed to allow decrease of the tuning parameter"
+ annotation(Evaluate=true, Dialog(tab="Waterside economizer", group="Tuning", enable=have_WSE));
+
+ parameter Real wseOnTimInc(unit="s")=1800
+ "Economizer enable time needed to allow increase of the tuning parameter"
+ annotation(Evaluate=true, Dialog(tab="Waterside economizer", group="Tuning", enable=have_WSE));
+
+ parameter Real dpDes=6000
+ "Design pressure difference across the chilled water side economizer"
+ annotation (Dialog(tab="Waterside economizer", group="Valve or pump control",
+ enable=have_WSE and have_byPasValCon));
+
+ parameter CDL.Types.SimpleController ecoValCon=Buildings.Controls.OBC.CDL.Types.SimpleController.PI
+ "Type of controller"
+ annotation (Dialog(tab="Waterside economizer",group="Valve or pump control",
+ enable=have_WSE and have_byPasValCon));
+
+ parameter Real kEcoVal=0.1 "Gain of controller"
+ annotation (Dialog(tab="Waterside economizer",group="Valve or pump control",
+ enable=have_WSE and have_byPasValCon));
+
+ parameter Real TiEcoVal=0.5
+ "Time constant of integrator block"
+ annotation (Dialog(tab="Waterside economizer", group="Valve or pump control",
+ enable=have_WSE and have_byPasValCon
+ and (ecoValCon == CDL.Types.SimpleController.PI or ecoValCon == CDL.Types.SimpleController.PID)));
+
+ parameter Real TdEcoVal=0.1
+ "Time constant of derivative block"
+ annotation (Dialog(tab="Waterside economizer",group="Valve or pump control",
+ enable=have_WSE and have_byPasValCon
+ and (ecoValCon == CDL.Types.SimpleController.PD or ecoValCon == CDL.Types.SimpleController.PID)));
+
+ parameter Real minEcoSpe=0.1
+ "Minimum economizer chilled water pump speed"
+ annotation (Dialog(tab="Waterside economizer",group="Valve or pump control",
+ enable=have_WSE and not have_byPasValCon));
+
+ parameter Real desEcoSpe=0.9
+ "Design economizer pump speed"
+ annotation (Dialog(tab="Waterside economizer",group="Valve or pump control",
+ enable=have_WSE and not have_byPasValCon));
+
+ // ---- Head pressure ----
+
+ parameter Real minConWatPumSpe(unit="1")=0.1
+ "Minimum condenser water pump speed"
+ annotation(Dialog(enable= not ((not have_WSE) and have_fixSpeConWatPum), tab="Head pressure", group="Limits"));
+
+ parameter Real minHeaPreValPos(unit="1")=0.1
+ "Minimum head pressure control valve position"
+ annotation(Dialog(enable= (not ((not have_WSE) and (not have_fixSpeConWatPum))), tab="Head pressure", group="Limits"));
+
+ parameter Buildings.Controls.OBC.CDL.Types.SimpleController controllerTypeHeaPre=
+ Buildings.Controls.OBC.CDL.Types.SimpleController.PI "Type of controller"
+ annotation(Dialog(tab="Head pressure", group="Loop signal", enable=not have_heaPreConSig));
+
+ parameter Real kHeaPreCon=1
+ "Gain of controller"
+ annotation(Dialog(tab="Head pressure", group="Loop signal", enable=not have_heaPreConSig));
+
+ parameter Real TiHeaPreCon(unit="s")=0.5
+ "Time constant of integrator block"
+ annotation(Dialog(tab="Head pressure", group="Loop signal", enable=not have_heaPreConSig));
+
+ // ---- Minimum flow bypass ----
+
+ parameter Real byPasSetTim(unit="s")=300
+ "Time constant for resetting minimum bypass flow"
+ annotation(Dialog(tab="Minimum flow bypass", group="Time parameters"));
+
+ parameter Real minFloSet[nChi](unit="m3/s")={0.0089,0.0089}
+ "Minimum chilled water flow through each chiller"
+ annotation(Dialog(tab="Minimum flow bypass", group="Flow limits"));
+
+ parameter Real maxFloSet[nChi](unit="m3/s")={0.025,0.025}
+ "Maximum chilled water flow through each chiller"
+ annotation(Dialog(tab="Minimum flow bypass", group="Flow limits"));
+
+ parameter Buildings.Controls.OBC.CDL.Types.SimpleController controllerTypeMinFloByp=
+ Buildings.Controls.OBC.CDL.Types.SimpleController.PI
+ "Type of controller"
+ annotation (Dialog(tab="Minimum flow bypass", group="Controller"));
+
+ parameter Real kMinFloBypCon=1
+ "Gain of controller"
+ annotation (Dialog(tab="Minimum flow bypass", group="Controller"));
+
+ parameter Real TiMinFloBypCon(unit="s")=0.5
+ "Time constant of integrator block"
+ annotation (Dialog(tab="Minimum flow bypass",
+ group="Controller", enable=controllerTypeMinFloByp==Buildings.Controls.OBC.CDL.Types.SimpleController.PI or
+ controllerTypeMinFloByp==Buildings.Controls.OBC.CDL.Types.SimpleController.PID));
+
+ parameter Real TdMinFloBypCon(unit="s")=0
+ "Time constant of derivative block"
+ annotation (Dialog(tab="Minimum flow bypass",
+ group="Controller", enable=controllerTypeMinFloByp==Buildings.Controls.OBC.CDL.Types.SimpleController.PD or
+ controllerTypeMinFloByp==Buildings.Controls.OBC.CDL.Types.SimpleController.PID));
+
+ parameter Real yMaxFloBypCon(unit="1")=1
+ "Upper limit of output"
+ annotation (Dialog(tab="Minimum flow bypass", group="Controller"));
+
+ parameter Real yMinFloBypCon(unit="1")=0.1
+ "Lower limit of output"
+ annotation (Dialog(tab="Minimum flow bypass", group="Controller"));
+
+ // ---- Chilled water pumps ----
+
+ parameter Real minChiWatPumSpe(unit="1")=0.1
+ "Minimum pump speed"
+ annotation (Dialog(tab="Chilled water pumps", group="Speed controller"));
+
+ parameter Real maxChiWatPumSpe(unit="1")=1
+ "Maximum pump speed"
+ annotation (Dialog(tab="Chilled water pumps", group="Speed controller"));
+
+ parameter Integer nPum_nominal(
+ final max=nChiWatPum,
+ final min=1)=nChiWatPum
+ "Total number of pumps that operate at design conditions"
+ annotation (Dialog(tab="Chilled water pumps", group="Nominal conditions"));
+
+ parameter Real VChiWat_flow_nominal(unit="m3/s")=0.5
+ "Total plant design chilled water flow rate"
+ annotation (Dialog(tab="Chilled water pumps", group="Nominal conditions"));
+
+ parameter Real maxLocDp(unit="Pa")=15*6894.75
+ "Maximum chilled water loop local differential pressure setpoint"
+ annotation (Dialog(tab="Chilled water pumps", group="Pump speed control when there is local DP sensor", enable=have_locSenChiWatPum));
+
+ parameter Buildings.Controls.OBC.CDL.Types.SimpleController controllerTypeChiWatPum=
+ Buildings.Controls.OBC.CDL.Types.SimpleController.PI
+ "Type of controller"
+ annotation (Dialog(tab="Chilled water pumps", group="Speed controller"));
+
+ parameter Real kChiWatPum=1 "Gain of controller"
+ annotation (Dialog(tab="Chilled water pumps", group="Speed controller"));
+
+ parameter Real TiChiWatPum(unit="s")=0.5
+ "Time constant of integrator block"
+ annotation (Dialog(tab="Chilled water pumps", group="Speed controller"));
+
+ parameter Real TdChiWatPum(unit="s")=0.1
+ "Time constant of derivative block"
+ annotation (Dialog(tab="Chilled water pumps", group="Speed controller",
+ enable=controllerTypeChiWatPum == Buildings.Controls.OBC.CDL.Types.SimpleController.PD or
+ controllerTypeChiWatPum == Buildings.Controls.OBC.CDL.Types.SimpleController.PID));
+
+ // ---- Plant reset ----
+
+ parameter Real holTim(unit="s")=900
+ "Time to fix plant reset value"
+ annotation(Dialog(tab="Plant Reset"));
+
+ parameter Real iniSet(unit="1")=0
+ "Initial setpoint"
+ annotation (Dialog(tab="Plant Reset", group="Trim and respond"));
+
+ parameter Real minSet(unit="1")=0
+ "Minimum plant reset value"
+ annotation (Dialog(tab="Plant Reset", group="Trim and respond"));
+
+ parameter Real maxSet(unit="1")=1
+ "Maximum plant reset value"
+ annotation (Dialog(tab="Plant Reset", group="Trim and respond"));
+
+ parameter Real delTim(unit="s")=900
+ "Delay time after which trim and respond is activated"
+ annotation (Dialog(tab="Plant Reset", group="Trim and respond"));
+
+ parameter Real samplePeriod(unit="s")=300
+ "Sample period time"
+ annotation (Dialog(tab="Plant Reset", group="Trim and respond"));
+
+ parameter Integer numIgnReq = 2
+ "Number of ignored requests"
+ annotation (Dialog(tab="Plant Reset", group="Trim and respond"));
+
+ parameter Real triAmo = -0.02 "Trim amount"
+ annotation (Dialog(tab="Plant Reset", group="Trim and respond"));
+
+ parameter Real resAmo = 0.03
+ "Respond amount (must be opposite in to triAmo)"
+ annotation (Dialog(tab="Plant Reset", group="Trim and respond"));
+
+ parameter Real maxRes = 0.07
+ "Maximum response per time interval (same sign as resAmo)"
+ annotation (Dialog(tab="Plant Reset", group="Trim and respond"));
+
+ parameter Real dpChiWatPumMin(
+ unit="Pa",
+ displayUnit="Pa")=34473.8
+ "Minimum chilled water pump differential static pressure, default 5 psi"
+ annotation (Dialog(tab="Plant Reset", group="Chilled water supply"));
+
+ parameter Real dpChiWatPumMax[nSenChiWatPum](unit="Pa", displayUnit="Pa")
+ "Maximum chilled water pump differential static pressure, the array size equals to the number of remote pressure sensor"
+ annotation (Dialog(tab="Plant Reset", group="Chilled water supply"));
+
+ parameter Real TChiWatSupMax(
+ unit="K",
+ displayUnit="degC")=288.706
+ "Maximum chilled water supply temperature, default 60 degF"
+ annotation (Dialog(tab="Plant Reset", group="Chilled water supply"));
+
+ parameter Real halSet = 0.5
+ "Half plant reset value"
+ annotation (Dialog(tab="Plant Reset", group="Chilled water supply"));
+
+ // ---- Staging setpoints ----
+
+ parameter Real avePer(unit="s")=300
+ "Time period for the capacity requirement rolling average"
+ annotation (Dialog(tab="Staging", group="Hold and delay"));
+
+ parameter Real delayStaCha(unit="s")=900
+ "Hold period for each stage change"
+ annotation (Dialog(tab="Staging", group="Hold and delay"));
+
+ parameter Real parLoaRatDelay(unit="s")=900
+ "Enable delay for operating and staging part load ratio condition"
+ annotation (Dialog(tab="Staging", group="Hold and delay"));
+
+ parameter Real faiSafTruDelay(unit="s")=900
+ "Enable delay for failsafe condition"
+ annotation (Dialog(tab="Staging", group="Hold and delay"));
+
+ parameter Real effConTruDelay(unit="s")=900
+ "Enable delay for efficiency condition"
+ annotation (Dialog(tab="Staging", group="Hold and delay"));
+
+ parameter Real shortTDelay(unit="s")=600
+ "Short enable delay for staging from zero to first available stage up"
+ annotation(Evaluate=true, Dialog(enable=have_WSE, tab="Staging", group="Hold and delay"));
+
+ parameter Real longTDelay(unit="s")=1200
+ "Long enable delay for staging from zero to first available stage up"
+ annotation(Evaluate=true, Dialog(enable=have_WSE, tab="Staging", group="Hold and delay"));
+
+ parameter Real posDisMult(unit="1")=0.8
+ "Positive displacement chiller type staging multiplier"
+ annotation (Dialog(tab="Staging", group="Staging part load ratio"));
+
+ parameter Real conSpeCenMult(unit="1")=0.9
+ "Constant speed centrifugal chiller type staging multiplier"
+ annotation (Dialog(tab="Staging", group="Staging part load ratio"));
+
+ parameter Real anyOutOfScoMult(unit="1")=0.9
+ "Outside of G36 recommended staging order chiller type SPLR multiplier"
+ annotation(Evaluate=true, __cdl(ValueInReference=False), Dialog(tab="Staging", group="Staging part load ratio"));
+
+ parameter Real varSpeStaMin(unit="1")=0.45
+ "Minimum stage up or down part load ratio for variable speed centrifugal stage types"
+ annotation(Evaluate=true, Dialog(enable=anyVsdCen, tab="Staging", group="Staging part load ratio"));
+
+ parameter Real varSpeStaMax(unit="1")=0.9
+ "Maximum stage up or down part load ratio for variable speed centrifugal stage types"
+ annotation(Evaluate=true, Dialog(enable=anyVsdCen, tab="Staging", group="Staging part load ratio"));
+
+ parameter Real smallTDif(unit="K")=1
+ "Offset between the chilled water supply temperature and its setpoint for the long condition"
+ annotation(Evaluate=true, Dialog(enable=have_WSE, tab="Staging", group="Value comparison"));
+
+ parameter Real largeTDif(unit="K")=2
+ "Offset between the chilled water supply temperature and its setpoint for the short condition"
+ annotation(Evaluate=true, Dialog(enable=have_WSE, tab="Staging", group="Value comparison"));
+
+ parameter Real faiSafTDif(unit="K")=1
+ "Offset between the chilled water supply temperature and its setpoint for the failsafe condition"
+ annotation (Dialog(tab="Staging", group="Value comparison"));
+
+ parameter Real dpDif(
+ unit="Pa",
+ displayUnit="Pa")=2*6895
+ "Offset between the chilled water pump diferential static pressure and its setpoint"
+ annotation (Dialog(tab="Staging", group="Value comparison"));
+
+ parameter Real TDif(unit="K")=1
+ "Offset between the chilled water supply temperature and its setpoint for staging down to WSE only"
+ annotation (Dialog(tab="Staging", group="Value comparison"));
+
+ parameter Real faiSafDpDif(
+ unit="Pa",
+ displayUnit="Pa")=2*6895
+ "Offset between the chilled water differential pressure and its setpoint"
+ annotation (Dialog(tab="Staging", group="Value comparison"));
+
+ parameter Real effConSigDif(
+ final min=0,
+ final max=1) = 0.05
+ "Signal hysteresis deadband"
+ annotation (Dialog(tab="Staging", group="Value comparison"));
+
+ // ---- Staging up and down process ----
+
+ parameter Real chiDemRedFac(unit="1")=0.75
+ "Demand reducing factor of current operating chillers"
+ annotation (Dialog(tab="Staging", group="Up and down process", enable=need_reduceChillerDemand));
+
+ parameter Real holChiDemTim(unit="s")=300
+ "Maximum time to wait for the actual demand less than percentage of current load"
+ annotation (Dialog(tab="Staging", group="Up and down process", enable=need_reduceChillerDemand));
+
+ parameter Real aftByPasSetTim(unit="s")=60
+ "Time to allow loop to stabilize after resetting minimum chilled water flow setpoint"
+ annotation (Dialog(tab="Staging", group="Up and down process"));
+
+ parameter Real waiTim(unit="s")=30
+ "Waiting time after enabling next head pressure control"
+ annotation (Dialog(tab="Staging", group="Up and down process"));
+
+ parameter Real chaChiWatIsoTim(unit="s")=300
+ "Time to slowly change isolation valve, should be determined in the field"
+ annotation (Dialog(tab="Staging", group="Up and down process"));
+
+ parameter Real proOnTim(unit="s")=300
+ "Threshold time to check after newly enabled chiller being operated"
+ annotation (Dialog(tab="Staging", group="Up and down process", enable=have_ponyChiller));
+
+ parameter Real thrTimEnb(unit="s")=10
+ "Threshold time to enable head pressure control after condenser water pump being reset"
+ annotation (Dialog(tab="Staging", group="Up and down process"));
+
+ // ---- Cooling tower: fan speed ----
+
+ parameter Real fanSpeMin(unit="1")=0.1
+ "Minimum tower fan speed"
+ annotation (Dialog(tab="Cooling Towers", group="Fan speed"));
+
+ parameter Real fanSpeMax(unit="1")=1
+ "Maximum tower fan speed"
+ annotation (Dialog(tab="Cooling Towers", group="Fan speed"));
+
+ parameter Buildings.Controls.OBC.CDL.Types.SimpleController intOpeCon=
+ Buildings.Controls.OBC.CDL.Types.SimpleController.PI
+ "Controller in the mode when WSE and chillers are enabled"
+ annotation (Dialog(tab="Cooling Towers", group="Fan speed controller with WSE enabled",
+ enable=have_WSE));
+
+ parameter Real kIntOpeTowFan=1 "Gain of controller"
+ annotation (Dialog(tab="Cooling Towers", group="Fan speed controller with WSE enabled",
+ enable=have_WSE));
+
+ parameter Real TiIntOpeTowFan(unit="s")=0.5
+ "Time constant of integrator block"
+ annotation (Dialog(tab="Cooling Towers", group="Fan speed controller with WSE enabled",
+ enable=have_WSE and (intOpeCon==Buildings.Controls.OBC.CDL.Types.SimpleController.PI or
+ intOpeCon==Buildings.Controls.OBC.CDL.Types.SimpleController.PID)));
+
+ parameter Real TdIntOpeTowFan(unit="s")=0.1
+ "Time constant of derivative block"
+ annotation (Dialog(tab="Cooling Towers", group="Fan speed controller with WSE enabled",
+ enable=have_WSE and (intOpeCon==Buildings.Controls.OBC.CDL.Types.SimpleController.PD or
+ intOpeCon==Buildings.Controls.OBC.CDL.Types.SimpleController.PID)));
+
+ parameter Buildings.Controls.OBC.CDL.Types.SimpleController chiWatConTowFan=
+ Buildings.Controls.OBC.CDL.Types.SimpleController.PI
+ "Controller in the mode when only WSE is enabled"
+ annotation (Dialog(tab="Cooling Towers", group="Fan speed controller with WSE enabled", enable=have_WSE));
+
+ parameter Real kWSETowFan=1 "Gain of controller"
+ annotation (Dialog(tab="Cooling Towers", group="Fan speed controller with WSE enabled", enable=have_WSE));
+
+ parameter Real TiWSETowFan(unit="s")=0.5
+ "Time constant of integrator block"
+ annotation (Dialog(tab="Cooling Towers", group="Fan speed controller with WSE enabled",
+ enable=have_WSE and (chiWatConTowFan==Buildings.Controls.OBC.CDL.Types.SimpleController.PI or
+ chiWatConTowFan==Buildings.Controls.OBC.CDL.Types.SimpleController.PID)));
+
+ parameter Real TdWSETowFan(unit="s")=0.1
+ "Time constant of derivative block"
+ annotation (Dialog(tab="Cooling Towers", group="Fan speed controller with WSE enabled",
+ enable=have_WSE and (chiWatConTowFan==Buildings.Controls.OBC.CDL.Types.SimpleController.PD or
+ chiWatConTowFan==Buildings.Controls.OBC.CDL.Types.SimpleController.PID)));
+
+ // Fan speed control: controlling condenser return water temperature when WSE is not enabled
+ parameter Real LIFT_min[nChi](unit="K")={12,12}
+ "Minimum LIFT of each chiller"
+ annotation (Evaluate=true, Dialog(tab="Cooling Towers", group="Fan speed: Return temperature control"));
+
+ parameter Real TConWatSup_nominal[nChi](
+ unit="K",
+ displayUnit="degC")={293.15,293.15}
+ "Condenser water supply temperature (condenser entering) of each chiller"
+ annotation (Evaluate=true, Dialog(tab="Cooling Towers", group="Fan speed: Return temperature control"));
+
+ parameter Real TConWatRet_nominal[nChi](
+ unit="K",
+ displayUnit="degC")={303.15,303.15}
+ "Condenser water return temperature (condenser leaving) of each chiller"
+ annotation (Evaluate=true, Dialog(tab="Cooling Towers", group="Fan speed: Return temperature control"));
+
+ parameter Buildings.Controls.OBC.CDL.Types.SimpleController couPlaCon=
+ Buildings.Controls.OBC.CDL.Types.SimpleController.PI
+ "Type of coupled plant controller"
+ annotation (Dialog(tab="Cooling Towers", group="Fan speed: Return temperature control",
+ enable=closeCoupledPlant));
+
+ parameter Real kCouPla=1 "Gain of controller"
+ annotation (Dialog(tab="Cooling Towers", group="Fan speed: Return temperature control",
+ enable=closeCoupledPlant));
+
+ parameter Real TiCouPla(unit="s")=0.5
+ "Time constant of integrator block"
+ annotation (Dialog(tab="Cooling Towers", group="Fan speed: Return temperature control",
+ enable=closeCoupledPlant and (couPlaCon==Buildings.Controls.OBC.CDL.Types.SimpleController.PI or
+ couPlaCon==Buildings.Controls.OBC.CDL.Types.SimpleController.PID)));
+
+ parameter Real TdCouPla(unit="s")=0.1
+ "Time constant of derivative block"
+ annotation (Dialog(tab="Cooling Towers", group="Fan speed: Return temperature control",
+ enable=closeCoupledPlant and (couPlaCon==Buildings.Controls.OBC.CDL.Types.SimpleController.PD or
+ couPlaCon==Buildings.Controls.OBC.CDL.Types.SimpleController.PID)));
+
+ parameter Real yCouPlaMax(unit="1")=1
+ "Upper limit of output"
+ annotation (Dialog(tab="Cooling Towers", group="Fan speed: Return temperature control",
+ enable=closeCoupledPlant));
+
+ parameter Real yCouPlaMin(unit="1")=0
+ "Lower limit of output"
+ annotation (Dialog(tab="Cooling Towers", group="Fan speed: Return temperature control",
+ enable=closeCoupledPlant));
+
+ parameter Real samplePeriodConTDiff(unit="s")=30
+ "Period of sampling condenser water supply and return temperature difference"
+ annotation (Dialog(tab="Cooling Towers", group="Fan speed: Return temperature control",
+ enable=not closeCoupledPlant));
+
+ parameter Buildings.Controls.OBC.CDL.Types.SimpleController supWatCon=
+ Buildings.Controls.OBC.CDL.Types.SimpleController.PI
+ "Condenser supply water temperature controller for less coupled plant"
+ annotation (Dialog(tab="Cooling Towers", group="Fan speed: Return temperature control",
+ enable=not closeCoupledPlant));
+
+ parameter Real kSupCon=1 "Gain of controller"
+ annotation (Dialog(tab="Cooling Towers", group="Fan speed: Return temperature control",
+ enable=not closeCoupledPlant));
+
+ parameter Real TiSupCon(unit="s")=0.5
+ "Time constant of integrator block"
+ annotation (Dialog(tab="Cooling Towers", group="Fan speed: Return temperature control",
+ enable=not closeCoupledPlant and (supWatCon==Buildings.Controls.OBC.CDL.Types.SimpleController.PI or
+ supWatCon==Buildings.Controls.OBC.CDL.Types.SimpleController.PID)));
+
+ parameter Real TdSupCon(unit="s")=0.1
+ "Time constant of derivative block"
+ annotation (Dialog(tab="Cooling Towers", group="Fan speed: Return temperature control",
+ enable=not closeCoupledPlant and (supWatCon==Buildings.Controls.OBC.CDL.Types.SimpleController.PD or
+ supWatCon==Buildings.Controls.OBC.CDL.Types.SimpleController.PID)));
+
+ parameter Real ySupConMax=1 "Upper limit of output"
+ annotation (Dialog(tab="Cooling Towers", group="Fan speed: Return temperature control",
+ enable=not closeCoupledPlant));
+
+ parameter Real ySupConMin=0 "Lower limit of output"
+ annotation (Dialog(tab="Cooling Towers", group="Fan speed: Return temperature control",
+ enable=not closeCoupledPlant));
+
+ parameter Real iniPlaTim(unit="s")=600
+ "Time to hold return temperature at initial setpoint after plant being enabled"
+ annotation (Dialog(tab="Cooling Towers", group="Advanced"));
+
+ parameter Real ramTim(unit="s")=180
+ "Time to ramp return water temperature from initial value to setpoint"
+ annotation (Dialog(tab="Cooling Towers", group="Advanced"));
+
+ parameter Real cheMinFanSpe(unit="s")=300
+ "Threshold time for checking duration when tower fan equals to the minimum tower fan speed"
+ annotation (Dialog(tab="Cooling Towers", group="Advanced"));
+
+ parameter Real cheMaxTowSpe(unit="s")=300
+ "Threshold time for checking duration when any enabled chiller maximum cooling speed equals to the minimum tower fan speed"
+ annotation (Dialog(tab="Cooling Towers", group="Advanced"));
+
+ parameter Real cheTowOff(unit="s")=60
+ "Threshold time for checking duration when there is no enabled tower fan"
+ annotation (Dialog(tab="Cooling Towers", group="Advanced"));
+
+ // ---- Cooling tower: staging ----
+ parameter Real chaTowCelIsoTim(unit="s")=300
+ "Time to slowly change isolation valve"
+ annotation (Dialog(tab="Cooling Towers", group="Enable isolation valve"));
+
+ // ---- Cooling tower: Water level control ----
+ parameter Real watLevMin(unit="1")=0.7
+ "Minimum cooling tower water level recommended by manufacturer"
+ annotation (Dialog(tab="Cooling Towers", group="Makeup water"));
+
+ parameter Real watLevMax(unit="1")=1
+ "Maximum cooling tower water level recommended by manufacturer"
+ annotation (Dialog(tab="Cooling Towers", group="Makeup water"));
+
+ // ---- Advanced ----
+ parameter Real locDt(unit="K")=1
+ "Offset temperature for lockout chiller"
+ annotation(Evaluate=true, Dialog(tab="Advanced", group="Plant enable"));
+
+ parameter Real hysDt(
+ unit="K",
+ displayUnit="K")=1
+ "Deadband temperature used in hysteresis block"
+ annotation(Evaluate=true, Dialog(tab="Advanced", group="Waterside economizer"));
+
+ parameter Real dpDifHys(
+ unit="Pa",
+ displayUnit="Pa")=0.5*6895
+ "Pressure difference hysteresis deadband"
+ annotation (Dialog(tab="Advanced", group="Staging"));
+
+ parameter Real relFloDif=0.05
+ "Relative error to the setpoint for checking if it has achieved flow rate setpoint"
+ annotation (Dialog(tab="Advanced", group="Staging"));
+
+ parameter Real speChe=0.005
+ "Lower threshold value to check fan or pump speed"
+ annotation (Dialog(tab="Advanced", group="Cooling towers"));
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uChiConIsoVal[nChi]
+ "Chiller condenser water isolation valve status"
+ annotation (Placement(transformation(extent={{-940,644},{-900,684}}),
+ iconTransformation(extent={{-140,360},{-100,400}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uChiWatReq[nChi]
+ "Chilled water requst status for each chiller"
+ annotation (Placement(transformation(extent={{-940,614},{-900,654}}),
+ iconTransformation(extent={{-140,340},{-100,380}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uConWatReq[nChi]
+ "Condenser water requst status for each chiller"
+ annotation (Placement(transformation(extent={{-940,584},{-900,624}}),
+ iconTransformation(extent={{-140,320},{-100,360}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uChiWatPum[nChiWatPum]
+ "Chilled water pump status"
+ annotation(Placement(transformation(extent={{-940,554},{-900,594}}),
+ iconTransformation(extent={{-140,300},{-100,340}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uChiIsoVal[nChi] if have_heaChiWatPum
+ "Chilled water isolation valve status"
+ annotation(Placement(transformation(extent={{-940,520},{-900,560}}),
+ iconTransformation(extent={{-140,280},{-100,320}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput dpChiWat_local(
+ final quantity="PressureDifference",
+ final displayUnit="Pa") if have_locSenChiWatPum
+ "Chilled water differential static pressure from local sensor"
+ annotation (Placement(transformation(extent={{-940,490},{-900,530}}),
+ iconTransformation(extent={{-140,240},{-100,280}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput dpChiWat_remote[nSenChiWatPum](
+ final unit=fill("Pa", nSenChiWatPum),
+ final quantity=fill("PressureDifference", nSenChiWatPum))
+ "Chilled water differential static pressure from remote sensor"
+ annotation(Placement(transformation(extent={{-940,450},{-900,490}}),
+ iconTransformation(extent={{-140,220},{-100,260}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput VChiWat_flow(
+ final quantity="VolumeFlowRate",
+ final unit="m3/s")
+ "Measured chilled water volume flow rate"
+ annotation(Placement(transformation(extent={{-940,420},{-900,460}}),
+ iconTransformation(extent={{-140,200},{-100,240}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uChi[nChi]
+ "Vector of chiller proven on status: true=ON"
+ annotation(Placement(transformation(extent={{-940,380},{-900,420}}),
+ iconTransformation(extent={{-140,180},{-100,220}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput TOutWet(
+ final unit="K",
+ displayUnit="degC",
+ final quantity="ThermodynamicTemperature") if have_WSE
+ "Outdoor air wet bulb temperature"
+ annotation(Placement(transformation(extent={{-940,340},{-900,380}}),
+ iconTransformation(extent={{-140,140},{-100,180}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput TChiWatRetDow(
+ final unit="K",
+ displayUnit="degC",
+ final quantity="ThermodynamicTemperature") if have_WSE
+ "Chiller water return temperature downstream of the WSE"
+ annotation(Placement(transformation(extent={{-940,300},{-900,340}}),
+ iconTransformation(extent={{-140,120},{-100,160}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput TChiWatRet(
+ final unit="K",
+ displayUnit="degC",
+ final quantity="ThermodynamicTemperature")
+ "Chiller water return temperature upstream of the WSE"
+ annotation(Placement(transformation(extent={{-940,260},{-900,300}}),
+ iconTransformation(extent={{-140,100},{-100,140}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput TConWatRet(
+ final unit="K",
+ displayUnit="degC",
+ final quantity="ThermodynamicTemperature")
+ "Measured condenser water return temperature (condenser leaving)"
+ annotation(Placement(transformation(extent={{-940,220},{-900,260}}),
+ iconTransformation(extent={{-140,80},{-100,120}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput TChiWatSup(
+ final unit="K",
+ displayUnit="degC",
+ final quantity="ThermodynamicTemperature")
+ "Measured chilled water supply temperature"
+ annotation(Placement(transformation(extent={{-940,190},{-900,230}}),
+ iconTransformation(extent={{-140,60},{-100,100}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput uHeaPreCon[nChi] if have_heaPreConSig
+ "Chiller head pressure control loop signal from chiller controller"
+ annotation (Placement(transformation(extent={{-940,160},{-900,200}}),
+ iconTransformation(extent={{-140,30},{-100,70}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput uChiLoa[nChi](
+ final quantity=fill("ElectricCurrent",nChi),
+ final unit=fill("A", nChi)) if need_reduceChillerDemand
+ "Current chiller load, in amperage"
+ annotation(Placement(transformation(extent={{-940,120},{-900,160}}),
+ iconTransformation(extent={{-140,0},{-100,40}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput dpChiWat(
+ final unit="Pa",
+ final quantity="PressureDifference")
+ if have_WSE and have_byPasValCon
+ "Differential static pressure across economizer in the chilled water side"
+ annotation (Placement(transformation(extent={{-940,90},{-900,130}}),
+ iconTransformation(extent={{-140,-30},{-100,10}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uChiAva[nChi]
+ "Chiller availability status vector"
+ annotation(Placement(transformation(extent={{-940,60},{-900,100}}),
+ iconTransformation(extent={{-140,-50},{-100,-10}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uEcoPum
+ if have_WSE and not have_byPasValCon
+ "True: economizer heat exchanger pump is proven on"
+ annotation (Placement(transformation(extent={{-940,30},{-900,70}}),
+ iconTransformation(extent={{-140,-70},{-100,-30}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput TEntHex(
+ final unit="K",
+ displayUnit="degC",
+ final quantity="ThermodynamicTemperature")
+ if have_WSE and not have_byPasValCon
+ "Chilled water temperature entering economizer heat exchanger"
+ annotation (Placement(transformation(extent={{-940,0},{-900,40}}),
+ iconTransformation(extent={{-140,-90},{-100,-50}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uChiHeaCon[nChi]
+ "Chillers head pressure control status"
+ annotation (Placement(transformation(extent={{-940,-100},{-900,-60}}),
+ iconTransformation(extent={{-140,-120},{-100,-80}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput uChiWatIsoVal[nChi](
+ final min=fill(0, nChi),
+ final max=fill(1, nChi),
+ final unit=fill("1", nChi))
+ "Chilled water isolation valve position"
+ annotation(Placement(transformation(extent={{-940,-248},{-900,-208}}),
+ iconTransformation(extent={{-140,-140},{-100,-100}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.IntegerInput TChiWatSupResReq
+ "Chilled water supply temperature setpoint reset request"
+ annotation (Placement(transformation(extent={{-940,-320},{-900,-280}}),
+ iconTransformation(extent={{-140,-160},{-100,-120}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.IntegerInput chiPlaReq
+ "Number of chiller plant cooling requests"
+ annotation (Placement(transformation(extent={{-940,-360},{-900,-320}}),
+ iconTransformation(extent={{-140,-180},{-100,-140}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput uConWatPumSpe[nConWatPum](
+ final min=fill(0, nConWatPum),
+ final max=fill(1, nConWatPum),
+ final unit=fill("1", nConWatPum)) "Current condenser water pump speed"
+ annotation(Placement(transformation(extent={{-940,-400},{-900,-360}}),
+ iconTransformation(extent={{-140,-220},{-100,-180}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uConWatPum[nConWatPum]
+ "Condenser water pump status"
+ annotation (Placement(transformation(extent={{-940,-430},{-900,-390}}),
+ iconTransformation(extent={{-140,-240},{-100,-200}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput TOut(
+ final unit="K",
+ displayUnit="degC",
+ final quantity="ThermodynamicTemperature")
+ "Outdoor air dry bulb temperature"
+ annotation (Placement(transformation(extent={{-940,-540},{-900,-500}}),
+ iconTransformation(extent={{-140,-260},{-100,-220}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput uChiCooLoa[nChi](
+ final quantity=fill("HeatFlowRate",nChi),
+ final unit=fill("W", nChi)) if have_WSE
+ "Current chiller cooling load"
+ annotation (Placement(transformation(extent={{-940,-580},{-900,-540}}),
+ iconTransformation(extent={{-140,-280},{-100,-240}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput uFanSpe(
+ final quantity="1",
+ final min=0,
+ final max=1) "Tower fan speed"
+ annotation (Placement(transformation(extent={{-940,-608},{-900,-568}}),
+ iconTransformation(extent={{-140,-320},{-100,-280}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput TConWatSup(
+ final unit="K",
+ displayUnit="degC",
+ final quantity="ThermodynamicTemperature") if not closeCoupledPlant
+ "Condenser water supply temperature (condenser entering)"
+ annotation(Placement(transformation(extent={{-940,-680},{-900,-640}}),
+ iconTransformation(extent={{-140,-340},{-100,-300}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput uIsoVal[nTowCel](
+ final min=fill(0, nTowCel),
+ final max=fill(1, nTowCel),
+ final unit=fill("1", nTowCel))
+ "Vector of tower cells isolation valve position"
+ annotation(Placement(transformation(extent={{-940,-728},{-900,-688}}),
+ iconTransformation(extent={{-140,-360},{-100,-320}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput watLev
+ "Measured water level"
+ annotation (Placement(transformation(extent={{-940,-760},{-900,-720}}),
+ iconTransformation(extent={{-140,-380},{-100,-340}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uTowSta[nTowCel]
+ "Vector of tower cell proven on status: true=running tower cell"
+ annotation(Placement(transformation(extent={{-940,-800},{-900,-760}}),
+ iconTransformation(extent={{-140,-400},{-100,-360}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealOutput yEcoConWatIsoVal if have_WSE
+ "Economizer condensing water isolation valve position"
+ annotation (Placement(transformation(extent={{920,760},{960,800}}),
+ iconTransformation(extent={{100,370},{140,410}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealOutput yWseRetVal(
+ final min=0,
+ final max=1,
+ final unit="1") if have_byPasValCon and have_WSE
+ "WSE in-line CHW return line valve position"
+ annotation (Placement(transformation(extent={{920,730},{960,770}}),
+ iconTransformation(extent={{100,338},{140,378}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanOutput yWsePumOn
+ if have_WSE and not have_byPasValCon
+ "Heat exchanger pump command on"
+ annotation (Placement(transformation(extent={{920,700},{960,740}}),
+ iconTransformation(extent={{100,310},{140,350}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealOutput yWsePumSpe(
+ final min=0,
+ final unit="1",
+ final max=1) if have_WSE and not have_byPasValCon
+ "Heat exchanger pump speed setpoint"
+ annotation (Placement(transformation(extent={{920,670},{960,710}}),
+ iconTransformation(extent={{100,290},{140,330}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealOutput TChiWatSupSet(
+ final unit="K",
+ displayUnit="degC",
+ final quantity="ThermodynamicTemperature")
+ "Chilled water supply temperature"
+ annotation (Placement(transformation(extent={{920,630},{960,670}}),
+ iconTransformation(extent={{100,260},{140,300}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanOutput yChiWatPum[nChiWatPum]
+ if have_heaChiWatPum
+ "Chilled water pump status setpoint"
+ annotation(Placement(transformation(extent={{920,500},{960,540}}),
+ iconTransformation(extent={{100,230},{140,270}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealOutput yChiPumSpe[nChiWatPum](
+ final min=0,
+ final max=1,
+ final unit="1") "Chilled water pump speed setpoint"
+ annotation (Placement(transformation(extent={{920,460},{960,500}}),
+ iconTransformation(extent={{100,200},{140,240}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealOutput yChiDem[nChi](
+ final quantity=fill("ElectricCurrent",nChi),
+ final unit=fill("A", nChi)) if need_reduceChillerDemand
+ "Chiller demand setpoint to set through BACnet or similar "
+ annotation(Placement(transformation(extent={{920,400},{960,440}}),
+ iconTransformation(extent={{100,170},{140,210}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanOutput yChi[nChi]
+ "Chiller enabling status setpoint"
+ annotation(Placement(transformation(extent={{920,330},{960,370}}),
+ iconTransformation(extent={{100,140},{140,180}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanOutput yHeaPreConValSta[nChi]
+ "Chiller head pressure control status setpoint"
+ annotation (Placement(transformation(extent={{920,260},{960,300}}),
+ iconTransformation(extent={{100,110},{140,150}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealOutput yHeaPreConVal[nChi](
+ final min=fill(0, nChi),
+ final max=fill(1, nChi),
+ final unit=fill("1", nChi))
+ "Head pressure control valve position"
+ annotation (Placement(transformation(extent={{920,220},{960,260}}),
+ iconTransformation(extent={{100,70},{140,110}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealOutput yConWatPumSpe[nConWatPum](
+ final unit=fill("1", nChi),
+ final min=fill(0, nChi),
+ final max=fill(1, nChi))
+ "Condenser water pump speed setpoint"
+ annotation (Placement(transformation(extent={{920,130},{960,170}}),
+ iconTransformation(extent={{100,40},{140,80}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealOutput yChiWatMinFloSet(
+ final quantity="VolumeFlowRate",
+ final unit="m3/s",
+ final min=0) "Chilled water minimum flow setpoint"
+ annotation (Placement(transformation(extent={{920,100},{960,140}}),
+ iconTransformation(extent={{100,12},{140,52}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanOutput yConWatPum[nConWatPum]
+ "Status setpoint of condenser water pump"
+ annotation (Placement(transformation(extent={{920,70},{960,110}}),
+ iconTransformation(extent={{100,-20},{140,20}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealOutput yChiWatIsoVal[nChi](
+ final unit=fill("1", nChi),
+ final min=fill(0, nChi),
+ final max=fill(1, nChi))
+ "Chiller isolation valve position setpoints"
+ annotation (Placement(transformation(extent={{920,-20},{960,20}}),
+ iconTransformation(extent={{100,-90},{140,-50}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanOutput yReaChiDemLim
+ if need_reduceChillerDemand
+ "Release chiller demand limit, normally true"
+ annotation (Placement(transformation(extent={{920,-230},{960,-190}}),
+ iconTransformation(extent={{100,-60},{140,-20}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealOutput yMinValPosSet(
+ final min=0,
+ final max=1,
+ final unit="1") "Chilled water minimum flow bypass valve position setpoint"
+ annotation (Placement(transformation(extent={{920,-340},{960,-300}}),
+ iconTransformation(extent={{100,-120},{140,-80}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealOutput yTowCelIsoVal[nTowCel](
+ final min=fill(0, nTowCel),
+ final max=fill(1, nTowCel),
+ final unit=fill("1", nTowCel))
+ "Cooling tower cells isolation valve position"
+ annotation (Placement(transformation(extent={{920,-640},{960,-600}}),
+ iconTransformation(extent={{100,-200},{140,-160}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanOutput yTowCel[nTowCel]
+ "Vector of tower cells status setpoint"
+ annotation(Placement(transformation(extent={{920,-680},{960,-640}}),
+ iconTransformation(extent={{100,-230},{140,-190}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealOutput yTowFanSpe[nTowCel](
+ final min=fill(0, nTowCel),
+ final max=fill(1, nTowCel),
+ final unit=fill("1", nTowCel))
+ "Fan speed setpoint of each cooling tower cell"
+ annotation (Placement(transformation(extent={{920,-720},{960,-680}}),
+ iconTransformation(extent={{100,-260},{140,-220}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanOutput yMakUp
+ "Makeup water valve On-Off status"
+ annotation(Placement(transformation(extent={{920,-780},{960,-740}}),
+ iconTransformation(extent={{100,-290},{140,-250}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Economizers.Controller wseSta(
+ final have_byPasValCon=have_byPasValCon,
+ final nSta=nSta,
+ final holdPeriod=holdPeriod,
+ final delDis=delDis,
+ final TOffsetEna=TOffsetEna,
+ final TOffsetDis=TOffsetDis,
+ final heaExcAppDes=heaExcAppDes,
+ final cooTowAppDes=cooTowAppDes,
+ final TOutWetDes=TOutWetDes,
+ final VHeaExcDes_flow=VHeaExcDes_flow,
+ final hysDt=hysDt,
+ final step=step,
+ final wseOnTimDec=wseOnTimDec,
+ final wseOnTimInc=wseOnTimInc,
+ final dpDes=dpDes,
+ final valCon=ecoValCon,
+ final k=kEcoVal,
+ final Ti=TiEcoVal,
+ final Td=TdEcoVal,
+ final minSpe=minEcoSpe,
+ final desSpe=desEcoSpe) if have_WSE
+ "Waterside economizer (WSE) enable/disable status"
+ annotation(Placement(transformation(extent={{-700,300},{-660,340}})));
+
+ Generic.PlantEnable.Enable plaEna(
+ final have_WSE=have_WSE,
+ final schTab=schTab,
+ final TChiLocOut=TChiLocOut,
+ final plaThrTim=plaThrTim,
+ final reqThrTim=reqThrTim,
+ final ignReq=ignReq,
+ final locDt=locDt) "Sequence to enable and disable plant"
+ annotation (Placement(transformation(extent={{-700,-540},{-660,-500}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.HeadPressure.Controller
+ heaPreCon[nChi](
+ final have_fixSpeConWatPum=fill(have_fixSpeConWatPum, nChi),
+ final have_heaPreConSig=fill(have_heaPreConSig, nChi),
+ final have_WSE=fill(have_WSE, nChi),
+ final minTowSpe=fill(fanSpeMin, nChi),
+ final minConWatPumSpe=fill(minConWatPumSpe, nChi),
+ final minHeaPreValPos=fill(minHeaPreValPos, nChi),
+ final controllerType=fill(controllerTypeHeaPre, nChi),
+ final minChiLif=fill(minChiLif, nChi),
+ final k=fill(kHeaPreCon, nChi),
+ final Ti=fill(TiHeaPreCon, nChi)) "Chiller head pressure controller"
+ annotation (Placement(transformation(extent={{-520,180},{-480,220}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.MinimumFlowBypass.Controller minBypValCon(
+ final nChi=nChi,
+ final minFloSet=minFloSet,
+ final controllerType=controllerTypeMinFloByp,
+ final k=kMinFloBypCon,
+ final Ti=TiMinFloBypCon,
+ final Td=TdMinFloBypCon,
+ final yMax=yMaxFloBypCon,
+ final yMin=yMinFloBypCon)
+ "Controller for chilled water minimum flow bypass valve"
+ annotation (Placement(transformation(extent={{-680,-160},{-640,-120}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Pumps.ChilledWater.Controller chiWatPumCon(
+ final have_heaPum=have_heaChiWatPum,
+ final have_locSen=have_locSenChiWatPum,
+ final nChi=nChi,
+ final nPum=nChiWatPum,
+ final nSen=nSenChiWatPum,
+ final minPumSpe=minChiWatPumSpe,
+ final maxPumSpe=maxChiWatPumSpe,
+ final nPum_nominal=nPum_nominal,
+ final VChiWat_flow_nominal=VChiWat_flow_nominal,
+ final maxLocDp=maxLocDp,
+ final controllerType=controllerTypeChiWatPum,
+ final k=kChiWatPum,
+ final Ti=TiChiWatPum,
+ final Td=TdChiWatPum)
+ "Sequences to control chilled water pumps in primary-only plant system"
+ annotation(Placement(transformation(extent={{440,480},{500,540}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.SetPoints.ChilledWaterPlantReset chiWatPlaRes(
+ final nPum=nChiWatPum,
+ final holTim=holTim,
+ final iniSet=iniSet,
+ final minSet=minSet,
+ final maxSet=maxSet,
+ final delTim=delTim,
+ final samplePeriod=samplePeriod,
+ final numIgnReq=numIgnReq,
+ final triAmo=triAmo,
+ final resAmo=resAmo,
+ final maxRes=maxRes)
+ "Sequences to generate chilled water plant reset"
+ annotation(Placement(transformation(extent={{-700,-320},{-660,-280}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.SetPoints.ChilledWaterSupply chiWatSupSet(
+ final nRemDpSen=nSenChiWatPum,
+ final dpChiWatPumMin=dpChiWatPumMin,
+ final dpChiWatPumMax=dpChiWatPumMax,
+ final TChiWatSupMin=TChiWatSupMin_Lowest,
+ final TChiWatSupMax=TChiWatSupMax,
+ final minSet=minSet,
+ final maxSet=maxSet,
+ final halSet=halSet)
+ "Sequences to generate setpoints of chilled water supply temperature and the pump differential static pressure"
+ annotation(Placement(transformation(extent={{-520,420},{-480,460}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.SetPoints.SetpointController staSetCon(
+ final have_WSE=have_WSE,
+ final have_serChi=have_serChi,
+ final have_locSen=have_locSenChiWatPum,
+ final nRemSen=nSenChiWatPum,
+ final anyVsdCen=anyVsdCen,
+ final nChi=nChi,
+ final chiDesCap=chiDesCap,
+ final chiMinCap=chiMinCap,
+ final chiTyp=chiTyp,
+ final nSta=nSta,
+ final staMat=staMat,
+ final avePer=avePer,
+ final delayStaCha=delayStaCha,
+ final parLoaRatDelay=parLoaRatDelay,
+ final faiSafTruDelay=faiSafTruDelay,
+ final effConTruDelay=effConTruDelay,
+ final shortTDelay=shortTDelay,
+ final longTDelay=longTDelay,
+ final posDisMult=posDisMult,
+ final conSpeCenMult=conSpeCenMult,
+ final anyOutOfScoMult=anyOutOfScoMult,
+ final varSpeStaMin=varSpeStaMin,
+ final varSpeStaMax=varSpeStaMax,
+ final smallTDif=smallTDif,
+ final largeTDif=largeTDif,
+ final faiSafTDif=faiSafTDif,
+ final dpDif=dpDif,
+ final TDif=TDif,
+ final TDifHys=hysDt,
+ final faiSafDpDif=faiSafDpDif,
+ final dpDifHys=dpDifHys,
+ final effConSigDif=effConSigDif)
+ "Calculates the chiller stage status setpoint signal"
+ annotation(Placement(transformation(extent={{-260,-68},{-180,100}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Towers.Controller towCon(
+ final nChi=nChi,
+ final totSta=totSta,
+ final nTowCel=nTowCel,
+ final nConWatPum=nConWatPum,
+ final closeCoupledPlant=closeCoupledPlant,
+ final have_WSE=have_WSE,
+ final desCap=desCap,
+ final fanSpeMin=fanSpeMin,
+ final fanSpeMax=fanSpeMax,
+ final chiMinCap=chiMinCap,
+ final intOpeCon=intOpeCon,
+ final kIntOpe=kIntOpeTowFan,
+ final TiIntOpe=TiIntOpeTowFan,
+ final TdIntOpe=TdIntOpeTowFan,
+ final chiWatCon=chiWatConTowFan,
+ final kWSE=kWSETowFan,
+ final TiWSE=TiWSETowFan,
+ final TdWSE=TdWSETowFan,
+ final LIFT_min=LIFT_min,
+ final TConWatSup_nominal=TConWatSup_nominal,
+ final TConWatRet_nominal=TConWatRet_nominal,
+ final TChiWatSupMin=TChiWatSupMin,
+ final couPlaCon=couPlaCon,
+ final kCouPla=kCouPla,
+ final TiCouPla=TiCouPla,
+ final TdCouPla=TdCouPla,
+ final yCouPlaMax=yCouPlaMax,
+ final yCouPlaMin=yCouPlaMin,
+ final samplePeriod=samplePeriodConTDiff,
+ final supWatCon=supWatCon,
+ final kSupCon=kSupCon,
+ final TiSupCon=TiSupCon,
+ final TdSupCon=TdSupCon,
+ final ySupConMax=ySupConMax,
+ final ySupConMin=ySupConMin,
+ final speChe=speChe,
+ final iniPlaTim=iniPlaTim,
+ final ramTim=ramTim,
+ final cheMinFanSpe=cheMinFanSpe,
+ final cheMaxTowSpe=cheMaxTowSpe,
+ final cheTowOff=cheTowOff,
+ final staVec=staVec,
+ final towCelOnSet=towCelOnSet,
+ final chaTowCelIsoTim=chaTowCelIsoTim,
+ final watLevMin=watLevMin,
+ final watLevMax=watLevMax)
+ "Cooling tower controller"
+ annotation(Placement(transformation(extent={{-260,-720},{-180,-560}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.Processes.Down dowProCon(
+ final nChi=nChi,
+ final nConWatPum=nConWatPum,
+ final totSta=totSta,
+ final nChiSta=nSta + 1,
+ final have_WSE=have_WSE,
+ final have_ponyChiller=have_ponyChiller,
+ final have_parChi=have_parChi,
+ final have_heaConWatPum=have_heaConWatPum,
+ final have_fixSpeConWatPum=have_fixSpeConWatPum,
+ final need_reduceChillerDemand=need_reduceChillerDemand,
+ final chiDemRedFac=chiDemRedFac,
+ final holChiDemTim=holChiDemTim,
+ final waiTim=waiTim,
+ final proOnTim=proOnTim,
+ final chaChiWatIsoTim=chaChiWatIsoTim,
+ final staVec=staVec,
+ final desConWatPumSpe=desConWatPumSpe,
+ final desConWatPumNum=desConWatPumNum,
+ final byPasSetTim=byPasSetTim,
+ final minFloSet=minFloSet,
+ final maxFloSet=maxFloSet,
+ final aftByPasSetTim=aftByPasSetTim,
+ final pumSpeChe=speChe,
+ final relFloDif=relFloDif,
+ final desChiNum=desChiNum)
+ "Staging down process controller"
+ annotation(Placement(transformation(extent={{180,-300},{260,-140}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.Processes.Up upProCon(
+ final nChi=nChi,
+ final nConWatPum=nConWatPum,
+ final totSta=totSta,
+ final nChiSta=nSta + 1,
+ final have_WSE=have_WSE,
+ final have_ponyChiller=have_ponyChiller,
+ final have_parChi=have_parChi,
+ final have_heaConWatPum=have_heaConWatPum,
+ final have_fixSpeConWatPum=have_fixSpeConWatPum,
+ final need_reduceChillerDemand=need_reduceChillerDemand,
+ final chiDemRedFac=chiDemRedFac,
+ final holChiDemTim=holChiDemTim,
+ final byPasSetTim=byPasSetTim,
+ final minFloSet=minFloSet,
+ final maxFloSet=maxFloSet,
+ final aftByPasSetTim=aftByPasSetTim,
+ final staVec=staVec,
+ final desConWatPumSpe=desConWatPumSpe,
+ final desConWatPumNum=desConWatPumNum,
+ final thrTimEnb=thrTimEnb,
+ final waiTim=waiTim,
+ final chaChiWatIsoTim=chaChiWatIsoTim,
+ final proOnTim=proOnTim,
+ final pumSpeChe=speChe,
+ final relFloDif=relFloDif,
+ final desChiNum=desChiNum)
+ "Staging up process controller"
+ annotation(Placement(transformation(extent={{180,280},{260,440}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.MultiMax mulMax(
+ final nin=nTowCel) if have_WSE
+ "All input values are the same"
+ annotation(Placement(transformation(extent={{-60,-590},{-40,-570}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Or chaProUpDown "Either in staging up or in staging down process"
+ annotation(Placement(transformation(extent={{380,-90},{400,-70}})));
+
+ Buildings.Controls.OBC.CDL.Discrete.TriggeredSampler staSam
+ "Samples stage index after each staging process is finished"
+ annotation(Placement(transformation(extent={{-20,-20},{0,0}})));
+
+ Buildings.Controls.OBC.CDL.Conversions.RealToInteger reaToInt1
+ "Real to integer"
+ annotation(Placement(transformation(extent={{20,-20},{40,0}})));
+
+ Buildings.Controls.OBC.CDL.Conversions.IntegerToReal intToRea
+ "Integer to real"
+ annotation(Placement(transformation(extent={{-100,-20},{-80,0}})));
+
+ Buildings.Controls.OBC.CDL.Logical.FallingEdge falEdg
+ "Check if stage change is finished"
+ annotation(Placement(transformation(extent={{480,-90},{500,-70}})));
+
+ Buildings.Controls.OBC.CDL.Logical.MultiOr mulOr(
+ final nin=nChiWatPum) "Check if there is any chilled water pump is enabled"
+ annotation(Placement(transformation(extent={{-740,-134},{-720,-114}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.MultiMax conWatPumSpe(
+ final nin=nConWatPum)
+ if not have_fixSpeConWatPum
+ "Running condenser water pump speed"
+ annotation (Placement(transformation(extent={{-660,-390},{-640,-370}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Or staCooTow
+ "Tower stage change status: true=stage cooling tower"
+ annotation (Placement(transformation(extent={{480,-130},{500,-110}})));
+
+ Buildings.Controls.OBC.CDL.Routing.BooleanScalarReplicator booRep(
+ final nout=nChi) if have_WSE
+ "Waterside economizer status"
+ annotation (Placement(transformation(extent={{-620,240},{-600,260}})));
+
+ Buildings.Controls.OBC.CDL.Routing.RealScalarReplicator conWatRetTem(
+ final nout=nChi)
+ if not have_heaPreConSig
+ "Condenser water return temperature"
+ annotation (Placement(transformation(extent={{-680,230},{-660,250}})));
+
+ Buildings.Controls.OBC.CDL.Routing.RealScalarReplicator chiWatSupTem(
+ final nout=nChi)
+ if not have_heaPreConSig
+ "Chilled water supply temperature"
+ annotation (Placement(transformation(extent={{-680,194},{-660,214}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Switch desConWatPumSpeSwi
+ if not have_fixSpeConWatPum
+ "Design condenser water pump speed"
+ annotation (Placement(transformation(extent={{480,190},{500,210}})));
+
+ Buildings.Controls.OBC.CDL.Routing.RealScalarReplicator repDesConTem(
+ final nout=nChi)
+ if not have_fixSpeConWatPum
+ "Replicate design condenser water temperature"
+ annotation (Placement(transformation(extent={{540,190},{560,210}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.MultiMin mulMin(
+ final nin=nChi)
+ if not have_fixSpeConWatPum
+ annotation (Placement(transformation(extent={{-460,150},{-440,170}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Switch chiMinFloSet
+ "Chiller water minimum flow setpoint"
+ annotation (Placement(transformation(extent={{480,110},{500,130}})));
+
+ Buildings.Controls.OBC.CDL.Routing.BooleanScalarReplicator uChiSwi(
+ final nout=nChi)
+ "In chiller stage up process"
+ annotation (Placement(transformation(extent={{460,340},{480,360}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Switch uChiStaPro[nChi]
+ "Chiller head pressure control status"
+ annotation (Placement(transformation(extent={{640,340},{660,360}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Pre preConPumLeaSta
+ "Lead condenser water pump status from previous step"
+ annotation (Placement(transformation(extent={{480,-260},{500,-240}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Generic.EquipmentRotation.ControllerTwo equRot if have_heaChiWatPum
+ "Rotates two pumps or groups of pumps"
+ annotation (Placement(transformation(extent={{260,570},{280,590}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant conInt1[nChiWatPum](
+ final k={1,2}) if have_heaChiWatPum
+ "Two pumps or groups of pumps only"
+ annotation (Placement(transformation(extent={{320,600},{340,620}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant conInt2[nChiWatPum](
+ final k={2,1}) if have_heaChiWatPum
+ "Two pumps or groups of pumps only"
+ annotation (Placement(transformation(extent={{320,550},{340,570}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Switch intSwi[2] if have_heaChiWatPum
+ "Two devices or groups of devices"
+ annotation (Placement(transformation(extent={{380,570},{400,590}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Latch chiStaUp
+ "In chiller stage up process"
+ annotation (Placement(transformation(extent={{380,310},{400,330}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Pre pre2 "Stage cooling tower"
+ annotation (Placement(transformation(extent={{80,-450},{100,-430}})));
+
+ Buildings.Controls.OBC.CDL.Conversions.BooleanToInteger booToInt[nChiWatPum] if have_heaChiWatPum
+ "Convert boolean to integer"
+ annotation (Placement(transformation(extent={{580,550},{600,570}})));
+
+ Buildings.Controls.OBC.CDL.Integers.MultiSum totChiPum(
+ final nin=nChiWatPum) if have_heaChiWatPum
+ "Total enabled chilled water pump"
+ annotation (Placement(transformation(extent={{620,550},{640,570}})));
+
+ Buildings.Controls.OBC.CDL.Integers.GreaterThreshold intGreThr(
+ final t=1)
+ "Check if more than one pump is enabled, if yes, then it means lag pump is enabled"
+ annotation (Placement(transformation(extent={{580,590},{600,610}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Switch chiHeaCon[nChi]
+ "Chiller head control enabling status"
+ annotation (Placement(transformation(extent={{520,270},{540,290}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Switch conWatPumNum
+ "Total number of enablded condenser water pump"
+ annotation (Placement(transformation(extent={{440,50},{460,70}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Generic.EquipmentRotation.ControllerTwo equRot1 if have_heaChiWatPum
+ "Rotates two pumps or groups of pumps"
+ annotation (Placement(transformation(extent={{540,50},{560,70}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Switch conPumLeaSta
+ "Pick the condenser water pump lead status"
+ annotation (Placement(transformation(extent={{440,-260},{460,-240}})));
+
+ Buildings.Controls.OBC.CDL.Integers.GreaterThreshold intGreThr1(
+ final t=1)
+ "Check if more than one pump is enabled, if yes, then it means lag pump is enabled"
+ annotation (Placement(transformation(extent={{480,50},{500,70}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Switch chiIsoVal[nChi]
+ "Chiller isolation valve position setpoint"
+ annotation (Placement(transformation(extent={{540,-10},{560,10}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Switch chiDem[nChi]
+ if need_reduceChillerDemand
+ "Chiller demand"
+ annotation (Placement(transformation(extent={{640,410},{660,430}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Switch relDem if need_reduceChillerDemand
+ "Release chiller demand limit"
+ annotation (Placement(transformation(extent={{480,-220},{500,-200}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Pre preChaPro
+ "Stage changing process status from previous step"
+ annotation (Placement(transformation(extent={{440,-90},{460,-70}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Pre leaChiPumPre
+ "Lead chilled water pump status previous value"
+ annotation (Placement(transformation(extent={{520,590},{540,610}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Pre leaChiWatPum[nChiWatPum]
+ "Chilled water pump status previous value"
+ annotation (Placement(transformation(extent={{540,550},{560,570}})));
+
+ Buildings.Controls.OBC.CDL.Discrete.ZeroOrderHold zerOrdHol(
+ final samplePeriod=1)
+ "Zero order hold"
+ annotation (Placement(transformation(extent={{-60,-20},{-40,0}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant con(
+ final k=fixConWatPumSpe)
+ if have_fixSpeConWatPum "Speed of constant speed condenser water pump"
+ annotation (Placement(transformation(extent={{540,90},{560,110}})));
+
+ Buildings.Controls.OBC.CDL.Routing.RealScalarReplicator chiWatPumSpe(
+ final nout=nChiWatPum)
+ "Chilled water pump speed"
+ annotation (Placement(transformation(extent={{580,450},{600,470}})));
+
+ Buildings.Controls.OBC.CDL.Conversions.BooleanToReal booToRea[nChiWatPum]
+ "Boolean to real"
+ annotation (Placement(transformation(extent={{580,490},{600,510}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Multiply pro[nChiWatPum]
+ "Chilled water pump speed setpoint"
+ annotation (Placement(transformation(extent={{640,470},{660,490}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Multiply pro1[nChiWatPum]
+ "Chilled water pump speed setpoint"
+ annotation (Placement(transformation(extent={{660,140},{680,160}})));
+
+ Buildings.Controls.OBC.CDL.Routing.RealScalarReplicator conWatPumSpe1(
+ final nout=nConWatPum) "Condenser water pump speed"
+ annotation (Placement(transformation(extent={{590,140},{610,160}})));
+
+ Buildings.Controls.OBC.CDL.Conversions.BooleanToReal booToRea1[nConWatPum]
+ "Boolean to real"
+ annotation (Placement(transformation(extent={{580,56},{600,76}})));
+
+ Buildings.Controls.OBC.CDL.Conversions.BooleanToReal booToRea3[nChi]
+ "Boolean to real"
+ annotation (Placement(transformation(extent={{580,250},{600,270}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Multiply pro4[nChi]
+ "Head pressure control valve position"
+ annotation (Placement(transformation(extent={{660,230},{680,250}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant fulOpeVal[nChi](
+ final k=fill(1, nChi))
+ if not have_WSE and not have_fixSpeConWatPum
+ "Full open head pressure control valve"
+ annotation (Placement(transformation(extent={{240,180},{260,200}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Generic.PlantEnable.EnableDevices enaDev(
+ final nSta=nSta,
+ final nChiWatPum=nChiWatPum,
+ final nConWatPum=nConWatPum)
+ "Enable devices when plant is enabled"
+ annotation (Placement(transformation(extent={{-540,-440},{-520,-420}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Switch leaChiPum "Lead chilled water pump"
+ annotation (Placement(transformation(extent={{200,582},{220,602}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Generic.PlantEnable.DisableChillers disChi(
+ final nChi=nChi,
+ final nChiWatPum=nChiWatPum,
+ final nConWatPum=nConWatPum,
+ final nTowCel=nTowCel) "Disable devices when plant is disabled"
+ annotation (Placement(transformation(extent={{740,-480},{760,-460}})));
+
+ Buildings.Controls.OBC.CDL.Logical.And celCom[nTowCel]
+ "False: disable tower cell"
+ annotation (Placement(transformation(extent={{820,-670},{840,-650}})));
+
+ Buildings.Controls.OBC.CDL.Routing.BooleanScalarReplicator enaTowCel(
+ final nout=nTowCel)
+ "False: disable all tower cells"
+ annotation (Placement(transformation(extent={{780,-590},{800,-570}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Switch swi[nTowCel]
+ "Tower cell isolation valve position setpoint"
+ annotation (Placement(transformation(extent={{880,-630},{900,-610}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant con1[nTowCel](
+ final k=fill(0, nTowCel))
+ "Constant zero"
+ annotation (Placement(transformation(extent={{700,-590},{720,-570}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Switch swi1[nTowCel]
+ "Tower cell fan speed setpoint"
+ annotation (Placement(transformation(extent={{880,-710},{900,-690}})));
+
+protected
+ final parameter Boolean have_serChi = not have_parChi
+ "true = series chillers plant; false = parallel chillers plant"
+ annotation (Dialog(tab="General", group="Chillers configuration"));
+
+ final parameter Real TChiWatSupMin_Lowest(
+ final unit="K",
+ final quantity="ThermodynamicTemperature",
+ displayUnit="degC")=min(TChiWatSupMin)
+ "Minimum chilled water supply temperature. This is the lowest minimum chilled water supply temperature of chillers in the plant";
+
+equation
+ connect(staSetCon.uPla, plaEna.yPla) annotation(Line(points={{-268,72},{-580,72},
+ {-580,-520},{-658,-520}}, color={255,0,255}));
+ connect(TChiWatRetDow, wseSta.TChiWatRetDow) annotation(Line(points={{-920,320},
+ {-840,320},{-840,332},{-704,332}}, color={0,0,127}));
+ connect(chiWatSupSet.TChiWatSupSet, staSetCon.TChiWatSupSet) annotation(Line(
+ points={{-476,428},{-380,428},{-380,48},{-268,48}}, color={0,0,127}));
+ connect(TChiWatSup, staSetCon.TChiWatSup) annotation(Line(points={{-920,210},{
+ -840,210},{-840,40},{-268,40}}, color={0,0,127}));
+ connect(VChiWat_flow, minBypValCon.VChiWat_flow) annotation(Line(points={{-920,
+ 440},{-880,440},{-880,-140},{-684,-140}}, color={0,0,127}));
+ connect(TChiWatRet, staSetCon.TChiWatRet) annotation(Line(points={{-920,280},{
+ -860,280},{-860,-48},{-268,-48}}, color={0,0,127}));
+ connect(staSetCon.TWsePre, wseSta.TWsePre) annotation(Line(points={{-268,-56},
+ {-420,-56},{-420,338},{-656,338}}, color={0,0,127}));
+ connect(VChiWat_flow, staSetCon.VChiWat_flow) annotation(Line(points={{-920,440},
+ {-880,440},{-880,-64},{-268,-64}}, color={0,0,127}));
+ connect(TChiWatSupResReq, chiWatPlaRes.TChiWatSupResReq)
+ annotation (Line(points={{-920,-300},{-704,-300}}, color={255,127,0}));
+ connect(chiWatPlaRes.yChiWatPlaRes, chiWatSupSet.uChiWatPlaRes) annotation (
+ Line(points={{-656,-300},{-540,-300},{-540,440},{-524,440}}, color={0,0,127}));
+ connect(wseSta.y, staSetCon.uWseSta) annotation(Line(points={{-656,326},{-630,
+ 326},{-630,96},{-268,96}}, color={255,0,255}));
+ connect(wseSta.y, towCon.uWse) annotation(Line(points={{-656,326},{-630,326},{
+ -630,-580},{-268,-580}}, color={255,0,255}));
+ connect(plaEna.yPla, towCon.uPla) annotation(Line(points={{-658,-520},{-580,-520},
+ {-580,-636},{-268,-636}}, color={255,0,255}));
+ connect(TOutWet, staSetCon.TOutWet) annotation(Line(points={{-920,360},{-870,360},
+ {-870,-20},{-268,-20}}, color={0,0,127}));
+ connect(mulMax.y, staSetCon.uTowFanSpeMax) annotation(Line(points={{-38,-580},
+ {0,-580},{0,-360},{-780,-360},{-780,-36},{-268,-36}},
+ color={0,0,127}));
+ connect(staSetCon.ySta, upProCon.uStaSet) annotation(Line(points={{-172,-24},{
+ -140,-24},{-140,436},{172,436}}, color={255,127,0}));
+ connect(staSetCon.ySta, dowProCon.uStaSet) annotation(Line(points={{-172,-24},
+ {-140,-24},{-140,-144},{172,-144}}, color={255,127,0}));
+ connect(staSetCon.yChiSet, upProCon.uChiSet) annotation(Line(points={{-172,4},
+ {-130,4},{-130,424},{172,424}}, color={255,0,255}));
+ connect(staSetCon.yChiSet, dowProCon.uChiSet) annotation(Line(points={{-172,4},
+ {-130,4},{-130,-152},{172,-152}}, color={255,0,255}));
+ connect(uChiLoa, upProCon.uChiLoa) annotation(Line(points={{-920,140},{-830,140},
+ {-830,408},{172,408}}, color={0,0,127}));
+ connect(upProCon.yStaPro, chaProUpDown.u1) annotation(Line(points={{268,436},{
+ 330,436},{330,-80},{378,-80}}, color={255,0,255}));
+ connect(dowProCon.yStaPro, chaProUpDown.u2) annotation(Line(points={{268,-144},
+ {340,-144},{340,-88},{378,-88}}, color={255,0,255}));
+ connect(uChi, dowProCon.uChi) annotation(Line(points={{-920,400},{-800,400},{-800,
+ -184},{172,-184}}, color={255,0,255}));
+ connect(staSam.y, reaToInt1.u)
+ annotation(Line(points={{2,-10},{18,-10}}, color={0,0,127}));
+ connect(staSetCon.ySta, intToRea.u) annotation(Line(points={{-172,-24},{-140,-24},
+ {-140,-10},{-102,-10}}, color={255,127,0}));
+ connect(reaToInt1.y, dowProCon.uChiSta) annotation(Line(points={{42,-10},{60,-10},
+ {60,-204},{172,-204}}, color={255,127,0}));
+ connect(reaToInt1.y, staSetCon.uSta) annotation(Line(points={{42,-10},{60,-10},
+ {60,-208},{-460,-208},{-460,60},{-268,60}}, color={255,127,0}));
+ connect(mulMax.y, wseSta.uTowFanSpeMax) annotation(Line(points={{-38,-580},{0,
+ -580},{0,-360},{-780,-360},{-780,324},{-704,324}}, color={0,0,127}));
+ connect(towCon.yMakUp, yMakUp) annotation(Line(points={{-172,-708},{-140,-708},
+ {-140,-760},{940,-760}}, color={255,0,255}));
+ connect(uChiWatPum, chiWatPlaRes.uChiWatPum) annotation(Line(points={{-920,574},
+ {-790,574},{-790,-288},{-704,-288}},
+ color={255,0,255}));
+ connect(mulOr.y, minBypValCon.uChiWatPum) annotation(Line(points={{-718,-124},
+ {-684,-124}}, color={255,0,255}));
+ connect(uChiWatPum, mulOr.u) annotation(Line(points={{-920,574},{-790,574},{-790,
+ -124},{-742,-124}}, color={255,0,255}));
+ connect(staSetCon.yOpeParLoaRatMin, dowProCon.yOpeParLoaRatMin) annotation (
+ Line(points={{-172,-52.8},{-120,-52.8},{-120,-164},{172,-164}}, color=
+ {0,0,127}));
+ connect(uChi, upProCon.uChi) annotation(Line(points={{-920,400},{172,400}},
+ color={255,0,255}));
+ connect(wseSta.y, upProCon.uWSE) annotation(Line(points={{-656,326},{-630,326},
+ {-630,344},{172,344}}, color={255,0,255}));
+ connect(wseSta.y, dowProCon.uWSE) annotation(Line(points={{-656,326},{-630,326},
+ {-630,-272},{172,-272}}, color={255,0,255}));
+ connect(dowProCon.VChiWat_flow, VChiWat_flow) annotation(Line(points={{172,-192},
+ {-880,-192},{-880,440},{-920,440}},color={0,0,127}));
+ connect(uChiIsoVal, chiWatPumCon.uChiIsoVal) annotation(Line(points={{-920,540},
+ {-630,540},{-630,507},{434,507}}, color={255,0,255}));
+ connect(VChiWat_flow, chiWatPumCon.VChiWat_flow) annotation(Line(points={{-920,
+ 440},{-880,440},{-880,495},{434,495}},color={0,0,127}));
+ connect(dpChiWat_remote, chiWatPumCon.dpChiWat_remote) annotation(Line(
+ points={{-920,470},{-770,470},{-770,483},{434,483}}, color={0,0,127}));
+ connect(TChiWatSup, towCon.TChiWatSup) annotation(Line(points={{-920,210},{-840,
+ 210},{-840,-596},{-268,-596}}, color={0,0,127}));
+ connect(chiWatSupSet.TChiWatSupSet, towCon.TChiWatSupSet) annotation(Line(
+ points={{-476,428},{-380,428},{-380,-604},{-268,-604}},color={0,0,127}));
+ connect(dowProCon.uChiLoa, uChiLoa) annotation(Line(points={{172,-172},{-830,-172},
+ {-830,140},{-920,140}},color={0,0,127}));
+ connect(dowProCon.uChiWatIsoVal, uChiWatIsoVal) annotation(Line(points={{172,-228},
+ {-920,-228}}, color={0,0,127}));
+ connect(uChiWatIsoVal, upProCon.uChiWatIsoVal) annotation(Line(points={{-920,-228},
+ {110,-228},{110,292},{172,292}}, color={0,0,127}));
+ connect(chiWatSupSet.dpChiWatPumSet, chiWatPumCon.dpChiWatSet_remote)
+ annotation (Line(points={{-476,452},{-370,452},{-370,477},{434,477}}, color=
+ {0,0,127}));
+ connect(uChiAva, staSetCon.uChiAva) annotation(Line(points={{-920,80},{-268,80}},
+ color={255,0,255}));
+ connect(minBypValCon.yValPos, yMinValPosSet) annotation (Line(points={{-636,-140},
+ {-480,-140},{-480,-320},{940,-320}}, color={0,0,127}));
+ connect(staSetCon.ySta, towCon.uChiStaSet) annotation(Line(points={{-172,-24},
+ {-140,-24},{-140,-120},{-330,-120},{-330,-684},{-268,-684}},
+ color={255,127,0}));
+ connect(TConWatSup, towCon.TConWatSup) annotation(Line(points={{-920,-660},{-268,
+ -660}}, color={0,0,127}));
+ connect(TConWatRet, towCon.TConWatRet) annotation(Line(points={{-920,240},{-850,
+ 240},{-850,-644},{-268,-644}}, color={0,0,127}));
+ connect(watLev, towCon.watLev) annotation (Line(points={{-920,-740},{-300,-740},
+ {-300,-716},{-268,-716}}, color={0,0,127}));
+ connect(towCon.uIsoVal, uIsoVal) annotation(Line(points={{-268,-708},{-920,-708}},
+ color={0,0,127}));
+ connect(uTowSta, towCon.uTowSta) annotation (Line(points={{-920,-780},{-440,-780},
+ {-440,-628},{-268,-628}}, color={255,0,255}));
+ connect(uConWatPumSpe, conWatPumSpe.u) annotation (Line(points={{-920,-380},{-662,
+ -380}}, color={0,0,127}));
+ connect(uConWatPumSpe, towCon.uConWatPumSpe) annotation (Line(points={{-920,-380},
+ {-820,-380},{-820,-652},{-268,-652}}, color={0,0,127}));
+ connect(conWatPumSpe.y, dowProCon.uConWatPumSpe) annotation (Line(points={{-638,
+ -380},{130,-380},{130,-288},{172,-288}}, color={0,0,127}));
+ connect(conWatPumSpe.y, upProCon.uConWatPumSpe) annotation (Line(points={{-638,
+ -380},{130,-380},{130,328},{172,328}}, color={0,0,127}));
+ connect(wseSta.yTunPar, staSetCon.uTunPar) annotation (Line(points={{-656,332},
+ {-640,332},{-640,-28},{-268,-28}}, color={0,0,127}));
+ connect(TChiWatRet, wseSta.TChiWatRet) annotation (Line(points={{-920,280},{-860,
+ 280},{-860,336},{-704,336}}, color={0,0,127}));
+ connect(reaToInt1.y, upProCon.uChiSta) annotation (Line(points={{42,-10},{60,-10},
+ {60,372},{172,372}}, color={255,127,0}));
+ connect(reaToInt1.y, towCon.uChiSta) annotation (Line(points={{42,-10},{60,-10},
+ {60,-208},{-340,-208},{-340,-676},{-268,-676}}, color={255,127,0}));
+ connect(upProCon.yTowStaUp, staCooTow.u1) annotation (Line(points={{268,388},{
+ 310,388},{310,-120},{478,-120}}, color={255,0,255}));
+ connect(dowProCon.yTowStaDow, staCooTow.u2) annotation (Line(points={{268,-220},
+ {380,-220},{380,-128},{478,-128}}, color={255,0,255}));
+ connect(TOut, plaEna.TOut) annotation (Line(points={{-920,-520},{-860,-520},{-860,
+ -528.4},{-704,-528.4}}, color={0,0,127}));
+ connect(towCon.uFanSpe, uFanSpe)
+ annotation (Line(points={{-268,-588},{-920,-588}}, color={0,0,127}));
+ connect(uChiConIsoVal, dowProCon.uChiConIsoVal) annotation (Line(points={{-920,
+ 664},{100,664},{100,-260},{172,-260}}, color={255,0,255}));
+ connect(uChiConIsoVal, upProCon.uChiConIsoVal) annotation (Line(points={{-920,
+ 664},{100,664},{100,380},{172,380}}, color={255,0,255}));
+ connect(upProCon.uConWatReq, uConWatReq) annotation (Line(points={{172,352},{80,
+ 352},{80,604},{-920,604}}, color={255,0,255}));
+ connect(upProCon.uChiWatReq, uChiWatReq) annotation (Line(points={{172,284},{90,
+ 284},{90,634},{-920,634}}, color={255,0,255}));
+ connect(uChiWatReq, dowProCon.uChiWatReq) annotation (Line(points={{-920,634},
+ {90,634},{90,-240},{172,-240}}, color={255,0,255}));
+ connect(uConWatReq, dowProCon.uConWatReq) annotation (Line(points={{-920,604},
+ {80,604},{80,-248},{172,-248}}, color={255,0,255}));
+ connect(VChiWat_flow, upProCon.VChiWat_flow) annotation (Line(points={{-920,440},
+ {-880,440},{-880,390.4},{172,390.4}}, color={0,0,127}));
+ connect(wseSta.y, booRep.u) annotation (Line(points={{-656,326},{-630,326},{-630,
+ 250},{-622,250}}, color={255,0,255}));
+ connect(booRep.y, heaPreCon.uWSE) annotation (Line(points={{-598,250},{-550,250},
+ {-550,188},{-524,188}}, color={255,0,255}));
+ connect(TConWatRet, conWatRetTem.u) annotation (Line(points={{-920,240},{-682,
+ 240}}, color={0,0,127}));
+ connect(conWatRetTem.y, heaPreCon.TConWatRet) annotation (Line(points={{-658,240},
+ {-650,240},{-650,212},{-524,212}}, color={0,0,127}));
+ connect(TChiWatSup, chiWatSupTem.u) annotation (Line(points={{-920,210},{-840,
+ 210},{-840,204},{-682,204}}, color={0,0,127}));
+ connect(chiWatSupTem.y, heaPreCon.TChiWatSup) annotation (Line(points={{-658,204},
+ {-524,204}}, color={0,0,127}));
+ connect(falEdg.y, staSam.trigger) annotation (Line(points={{502,-80},{590,-80},
+ {590,-40},{-10,-40},{-10,-22}}, color={255,0,255}));
+ connect(upProCon.yDesConWatPumSpe, desConWatPumSpeSwi.u1) annotation (Line(
+ points={{268,356},{360,356},{360,208},{478,208}}, color={0,0,127}));
+ connect(dowProCon.yDesConWatPumSpe, desConWatPumSpeSwi.u3) annotation (Line(
+ points={{268,-264},{360,-264},{360,192},{478,192}}, color={0,0,127}));
+ connect(repDesConTem.y, heaPreCon.desConWatPumSpe) annotation (Line(points={{562,200},
+ {580,200},{580,240},{-532,240},{-532,196},{-524,196}}, color={0,0,127}));
+ connect(heaPreCon.uHeaPreCon, uHeaPreCon) annotation (Line(points={{-524,180},
+ {-920,180}}, color={0,0,127}));
+ connect(heaPreCon.yMaxTowSpeSet, towCon.uMaxTowSpeSet) annotation (Line(
+ points={{-476,212},{-360,212},{-360,-620},{-268,-620}}, color={0,0,127}));
+ connect(heaPreCon.yConWatPumSpeSet, mulMin.u) annotation (Line(points={{-476,188},
+ {-470,188},{-470,160},{-462,160}}, color={0,0,127}));
+ connect(mulMin.y, dowProCon.uConWatPumSpeSet) annotation (Line(points={{-438,160},
+ {-400,160},{-400,-280},{172,-280}}, color={0,0,127}));
+ connect(mulMin.y, upProCon.uConWatPumSpeSet) annotation (Line(points={{-438,160},
+ {-400,160},{-400,336},{172,336}}, color={0,0,127}));
+ connect(upProCon.yChiWatMinFloSet, chiMinFloSet.u1) annotation (Line(points={{268,404},
+ {350,404},{350,128},{478,128}}, color={0,0,127}));
+ connect(dowProCon.yChiWatMinFloSet, chiMinFloSet.u3) annotation (Line(points={{268,
+ -296},{350,-296},{350,112},{478,112}}, color={0,0,127}));
+ connect(chiMinFloSet.y, minBypValCon.VChiWatSet_flow) annotation (Line(points={{502,120},
+ {640,120},{640,-100},{-700,-100},{-700,-156},{-684,-156}},
+ color={0,0,127}));
+ connect(uChiSwi.y, uChiStaPro.u2)
+ annotation (Line(points={{482,350},{638,350}}, color={255,0,255}));
+ connect(upProCon.yChi, uChiStaPro.u1) annotation (Line(points={{268,284},{300,
+ 284},{300,380},{620,380},{620,358},{638,358}}, color={255,0,255}));
+ connect(dowProCon.yChi, uChiStaPro.u3) annotation (Line(points={{268,-172},{620,
+ -172},{620,342},{638,342}}, color={255,0,255}));
+ connect(staSetCon.yCapReq, towCon.reqPlaCap) annotation (Line(points={{-172,-64},
+ {-160,-64},{-160,-500},{-370,-500},{-370,-612},{-268,-612}}, color=
+ {0,0,127}));
+ connect(preConPumLeaSta.y, towCon.uLeaConWatPum) annotation (Line(points={{502,
+ -250},{560,-250},{560,-520},{-310,-520},{-310,-700},{-268,-700}},
+ color={255,0,255}));
+ connect(equRot.yDevRol, intSwi.u2) annotation (Line(points={{282,574},{310,574},
+ {310,580},{378,580}}, color={255,0,255}));
+ connect(conInt1.y, intSwi.u1) annotation (Line(points={{342,610},{360,610},{360,
+ 588},{378,588}}, color={255,127,0}));
+ connect(conInt2.y, intSwi.u3) annotation (Line(points={{342,560},{360,560},{360,
+ 572},{378,572}}, color={255,127,0}));
+ connect(intSwi.y, chiWatPumCon.uPumLeaLag) annotation (Line(points={{402,580},
+ {420,580},{420,543},{434,543}}, color={255,127,0}));
+ connect(uChiWatPum, equRot.uDevSta) annotation (Line(points={{-920,574},{258,574}},
+ color={255,0,255}));
+ connect(chiStaUp.y, chiMinFloSet.u2) annotation (Line(points={{402,320},{420,320},
+ {420,120},{478,120}}, color={255,0,255}));
+ connect(upProCon.yStaPro, chiStaUp.u) annotation (Line(points={{268,436},{330,
+ 436},{330,320},{378,320}}, color={255,0,255}));
+ connect(dowProCon.yStaPro, chiStaUp.clr) annotation (Line(points={{268,-144},{
+ 340,-144},{340,314},{378,314}}, color={255,0,255}));
+ connect(VChiWat_flow, wseSta.VChiWat_flow) annotation (Line(points={{-920,440},
+ {-880,440},{-880,328},{-704,328}}, color={0,0,127}));
+ connect(TOutWet, wseSta.TOutWet) annotation (Line(points={{-920,360},{-870,360},
+ {-870,340},{-704,340}}, color={0,0,127}));
+ connect(pre2.y, towCon.uTowStaCha) annotation (Line(points={{102,-440},{120,-440},
+ {120,-510},{-320,-510},{-320,-692},{-268,-692}}, color={255,0,255}));
+ connect(staCooTow.y, pre2.u) annotation (Line(points={{502,-120},{590,-120},{590,
+ -400},{60,-400},{60,-440},{78,-440}}, color={255,0,255}));
+ connect(towCon.ySpeSet, mulMax.u) annotation (Line(points={{-172,-684},{-100,
+ -684},{-100,-580},{-62,-580}},
+ color={0,0,127}));
+ connect(booToInt.y, totChiPum.u)
+ annotation (Line(points={{602,560},{618,560}}, color={255,127,0}));
+ connect(chiStaUp.y, desConWatPumSpeSwi.u2) annotation (Line(points={{402,320},
+ {420,320},{420,200},{478,200}}, color={255,0,255}));
+ connect(chiStaUp.y, uChiSwi.u) annotation (Line(points={{402,320},{420,320},{420,
+ 350},{458,350}}, color={255,0,255}));
+ connect(upProCon.yChiHeaCon, chiHeaCon.u1) annotation (Line(points={{268,324},
+ {320,324},{320,288},{518,288}}, color={255,0,255}));
+ connect(uChiSwi.y, chiHeaCon.u2) annotation (Line(points={{482,350},{510,350},
+ {510,280},{518,280}}, color={255,0,255}));
+ connect(dowProCon.yChiHeaCon, chiHeaCon.u3) annotation (Line(points={{268,-232},
+ {320,-232},{320,272},{518,272}}, color={255,0,255}));
+ connect(chiStaUp.y, conWatPumNum.u2) annotation (Line(points={{402,320},{420,320},
+ {420,60},{438,60}}, color={255,0,255}));
+ connect(upProCon.yConWatPumNum, conWatPumNum.u1) annotation (Line(points={{268,340},
+ {370,340},{370,68},{438,68}}, color={255,127,0}));
+ connect(dowProCon.yConWatPumNum, conWatPumNum.u3) annotation (Line(points={{268,
+ -280},{370,-280},{370,52},{438,52}}, color={255,127,0}));
+ connect(chiStaUp.y, conPumLeaSta.u2) annotation (Line(points={{402,320},{420,320},
+ {420,-250},{438,-250}}, color={255,0,255}));
+ connect(dowProCon.yLeaPum, conPumLeaSta.u3) annotation (Line(points={{268,-248},
+ {380,-248},{380,-258},{438,-258}}, color={255,0,255}));
+ connect(upProCon.yLeaPum, conPumLeaSta.u1) annotation (Line(points={{268,372},
+ {290,372},{290,-242},{438,-242}}, color={255,0,255}));
+ connect(conPumLeaSta.y, preConPumLeaSta.u)
+ annotation (Line(points={{462,-250},{478,-250}}, color={255,0,255}));
+ connect(conWatPumNum.y, intGreThr1.u)
+ annotation (Line(points={{462,60},{478,60}}, color={255,127,0}));
+ connect(intGreThr1.y, equRot1.uLagStaSet)
+ annotation (Line(points={{502,60},{538,60}}, color={255,0,255}));
+ connect(preConPumLeaSta.y, equRot1.uLeaStaSet) annotation (Line(points={{502,-250},
+ {520,-250},{520,66},{538,66}}, color={255,0,255}));
+ connect(uConWatPum, equRot1.uDevSta) annotation (Line(points={{-920,-410},{530,
+ -410},{530,54},{538,54}}, color={255,0,255}));
+ connect(equRot1.yDevStaSet, yConWatPum)
+ annotation (Line(points={{562,66},{570,66},{570,90},{940,90}}, color={255,0,255}));
+ connect(chiMinFloSet.y, yChiWatMinFloSet)
+ annotation (Line(points={{502,120},{940,120}}, color={0,0,127}));
+ connect(uChiSwi.y, chiIsoVal.u2) annotation (Line(points={{482,350},{510,350},
+ {510,0},{538,0}}, color={255,0,255}));
+ connect(upProCon.yChiWatIsoVal, chiIsoVal.u1) annotation (Line(points={{268,304},
+ {280,304},{280,8},{538,8}}, color={0,0,127}));
+ connect(dowProCon.yChiWatIsoVal, chiIsoVal.u3) annotation (Line(points={{268,-204},
+ {280,-204},{280,-8},{538,-8}}, color={0,0,127}));
+ connect(uChiCooLoa, towCon.chiLoa) annotation (Line(points={{-920,-560},{-594,
+ -560},{-594,-564},{-268,-564}}, color={0,0,127}));
+ connect(uChiSwi.y, chiDem.u2) annotation (Line(points={{482,350},{510,350},{510,
+ 420},{638,420}}, color={255,0,255}));
+ connect(upProCon.yChiDem, chiDem.u1) annotation (Line(points={{268,420},{430,420},
+ {430,428},{638,428}}, color={0,0,127}));
+ connect(dowProCon.yChiDem, chiDem.u3) annotation (Line(points={{268,-160},{430,
+ -160},{430,412},{638,412}}, color={0,0,127}));
+ connect(chiDem.y, yChiDem)
+ annotation (Line(points={{662,420},{940,420}}, color={0,0,127}));
+ connect(uConWatPum, upProCon.uConWatPum) annotation (Line(points={{-920,-410},
+ {140,-410},{140,308},{172,308}}, color={255,0,255}));
+ connect(uConWatPum, dowProCon.uConWatPum) annotation (Line(points={{-920,-410},
+ {140,-410},{140,-296},{172,-296}}, color={255,0,255}));
+ connect(desConWatPumSpeSwi.y, repDesConTem.u)
+ annotation (Line(points={{502,200},{538,200}}, color={0,0,127}));
+ connect(dowProCon.yReaDemLim, relDem.u3) annotation (Line(points={{268,-188},{
+ 390,-188},{390,-218},{478,-218}}, color={255,0,255}));
+ connect(upProCon.yStaPro, relDem.u1) annotation (Line(points={{268,436},{330,436},
+ {330,-202},{478,-202}}, color={255,0,255}));
+ connect(chiStaUp.y, relDem.u2) annotation (Line(points={{402,320},{420,320},{420,
+ -210},{478,-210}}, color={255,0,255}));
+ connect(relDem.y, yReaChiDemLim)
+ annotation (Line(points={{502,-210},{940,-210}}, color={255,0,255}));
+ connect(dpChiWat_local, chiWatPumCon.dpChiWat_local) annotation (Line(points={{-920,
+ 510},{-820,510},{-820,489},{434,489}}, color={0,0,127}));
+ connect(dpChiWat_local, staSetCon.dpChiWatPum_local) annotation (Line(points={{-920,
+ 510},{-820,510},{-820,4},{-268,4}}, color={0,0,127}));
+ connect(chiWatPumCon.dpChiWatPumSet_local, staSetCon.dpChiWatPumSet_local)
+ annotation (Line(points={{506,483},{520,483},{520,460},{-350,460},{-350,12},
+ {-268,12}}, color={0,0,127}));
+ connect(chiWatSupSet.dpChiWatPumSet, staSetCon.dpChiWatPumSet_remote)
+ annotation (Line(points={{-476,452},{-370,452},{-370,-4},{-268,-4}}, color={
+ 0,0,127}));
+ connect(dpChiWat_remote, staSetCon.dpChiWatPum_remote) annotation (Line(
+ points={{-920,470},{-770,470},{-770,-12},{-268,-12}}, color={0,0,127}));
+ connect(falEdg.u, preChaPro.y)
+ annotation (Line(points={{478,-80},{462,-80}}, color={255,0,255}));
+ connect(chaProUpDown.y, preChaPro.u)
+ annotation (Line(points={{402,-80},{438,-80}}, color={255,0,255}));
+ connect(preChaPro.y, chiWatPlaRes.chaPro) annotation (Line(points={{462,-80},{
+ 470,-80},{470,-330},{-720,-330},{-720,-312},{-704,-312}}, color={255,0,
+ 255}));
+ connect(preChaPro.y, staSetCon.chaPro) annotation (Line(points={{462,-80},{470,
+ -80},{470,-330},{-320,-330},{-320,88},{-268,88}}, color={255,0,255}));
+ connect(staSam.u, zerOrdHol.y)
+ annotation (Line(points={{-22,-10},{-38,-10}}, color={0,0,127}));
+ connect(zerOrdHol.u, intToRea.y)
+ annotation (Line(points={{-62,-10},{-78,-10}}, color={0,0,127}));
+ connect(leaChiWatPum.y, booToInt.u)
+ annotation (Line(points={{562,560},{578,560}}, color={255,0,255}));
+ connect(chiWatPumCon.yChiWatPum, leaChiWatPum.u) annotation (Line(points={{506,510},
+ {530,510},{530,560},{538,560}}, color={255,0,255}));
+ connect(totChiPum.y, intGreThr.u) annotation (Line(points={{642,560},{650,560},
+ {650,580},{570,580},{570,600},{578,600}}, color={255,127,0}));
+ connect(intGreThr.y, equRot.uLagStaSet) annotation (Line(points={{602,600},{610,
+ 600},{610,640},{240,640},{240,580},{258,580}}, color={255,0,255}));
+ connect(chiWatPumCon.yLea, leaChiPumPre.u) annotation (Line(points={{506,534},
+ {510,534},{510,600},{518,600}}, color={255,0,255}));
+ connect(uChiHeaCon, heaPreCon.uChiHeaCon) annotation (Line(points={{-920,-80},
+ {-560,-80},{-560,220},{-524,220}}, color={255,0,255}));
+ connect(uChiHeaCon, dowProCon.uChiHeaCon) annotation (Line(points={{-920,-80},
+ {150,-80},{150,-216},{172,-216}}, color={255,0,255}));
+ connect(uChiHeaCon, upProCon.uChiHeaCon) annotation (Line(points={{-920,-80},{
+ 150,-80},{150,300},{172,300}}, color={255,0,255}));
+ connect(chiHeaCon.y, yHeaPreConValSta)
+ annotation (Line(points={{542,280},{940,280}}, color={255,0,255}));
+ connect(chiWatPumCon.yChiWatPum, booToRea.u) annotation (Line(points={{506,510},
+ {540,510},{540,500},{578,500}}, color={255,0,255}));
+ connect(chiWatPumCon.yPumSpe, chiWatPumSpe.u) annotation (Line(points={{506,492},
+ {540,492},{540,460},{578,460}}, color={0,0,127}));
+ connect(chiWatPumCon.yChiWatPum, yChiWatPum) annotation (Line(points={{506,510},
+ {530,510},{530,520},{940,520}}, color={255,0,255}));
+ connect(booToRea.y, pro.u1) annotation (Line(points={{602,500},{620,500},{620,
+ 486},{638,486}}, color={0,0,127}));
+ connect(chiWatPumSpe.y, pro.u2) annotation (Line(points={{602,460},{620,460},{
+ 620,474},{638,474}}, color={0,0,127}));
+ connect(desConWatPumSpeSwi.y, conWatPumSpe1.u) annotation (Line(points={{502,200},
+ {520,200},{520,150},{588,150}}, color={0,0,127}));
+ connect(equRot1.yDevStaSet, booToRea1.u)
+ annotation (Line(points={{562,66},{578,66}}, color={255,0,255}));
+ connect(booToRea1.y, pro1.u2) annotation (Line(points={{602,66},{650,66},{650,
+ 144},{658,144}}, color={0,0,127}));
+ connect(con.y, conWatPumSpe1.u) annotation (Line(points={{562,100},{570,100},{
+ 570,150},{588,150}}, color={0,0,127}));
+ connect(conWatPumSpe1.y, pro1.u1) annotation (Line(points={{612,150},{640,150},
+ {640,156},{658,156}}, color={0,0,127}));
+ connect(chiHeaCon.y, booToRea3.u) annotation (Line(points={{542,280},{560,280},
+ {560,260},{578,260}}, color={255,0,255}));
+ connect(booToRea3.y, pro4.u1) annotation (Line(points={{602,260},{640,260},{640,
+ 246},{658,246}}, color={0,0,127}));
+ connect(heaPreCon.yHeaPreConVal, pro4.u2) annotation (Line(points={{-476,200},
+ {-160,200},{-160,234},{658,234}}, color={0,0,127}));
+ connect(fulOpeVal.y, pro4.u2) annotation (Line(points={{262,190},{272,190},{272,
+ 234},{658,234}}, color={0,0,127}));
+ connect(chiWatSupSet.TChiWatSupSet, TChiWatSupSet) annotation (Line(points={{-476,
+ 428},{-380,428},{-380,650},{940,650}}, color={0,0,127}));
+ connect(plaEna.chiPlaReq, chiPlaReq) annotation (Line(points={{-704,-512},{-860,
+ -512},{-860,-340},{-920,-340}}, color={255,127,0}));
+ connect(uChi, towCon.uChi) annotation (Line(points={{-920,400},{-800,400},{-800,
+ -572},{-268,-572}}, color={255,0,255}));
+ connect(staSetCon.yIni, wseSta.uIni) annotation (Line(points={{-172,-16},{-150,
+ -16},{-150,272},{-750,272},{-750,316},{-704,316}}, color={255,127,0}));
+ connect(plaEna.yPla, wseSta.uPla) annotation (Line(points={{-658,-520},{-580,-520},
+ {-580,72},{-760,72},{-760,320},{-704,320}}, color={255,0,255}));
+ connect(staSetCon.ySta, wseSta.uChiSta) annotation (Line(points={{-172,-24},{-140,
+ -24},{-140,280},{-740,280},{-740,312},{-704,312}},color={255,127,0}));
+ connect(dpChiWat, wseSta.dpChiWat) annotation (Line(points={{-920,110},{-730,110},
+ {-730,308},{-704,308}}, color={0,0,127}));
+ connect(uEcoPum, wseSta.uPum) annotation (Line(points={{-920,50},{-720,50},{-720,
+ 304},{-704,304}}, color={255,0,255}));
+ connect(TEntHex, wseSta.TEntHex) annotation (Line(points={{-920,20},{-710,20},
+ {-710,300},{-704,300}}, color={0,0,127}));
+ connect(plaEna.yPla, enaDev.uPla) annotation (Line(points={{-658,-520},{-580,-520},
+ {-580,-422},{-542,-422}}, color={255,0,255}));
+ connect(staSetCon.yIni, enaDev.uIni) annotation (Line(points={{-172,-16},{-150,
+ -16},{-150,-370},{-570,-370},{-570,-426},{-542,-426}}, color={255,127,0}));
+ connect(staSetCon.ySta, enaDev.uChiSta) annotation (Line(points={{-172,-24},{-140,
+ -24},{-140,-144},{-560,-144},{-560,-430},{-542,-430}},color={255,127,0}));
+ connect(uConWatPum, enaDev.uConWatPum) annotation (Line(points={{-920,-410},{-590,
+ -410},{-590,-438},{-542,-438}}, color={255,0,255}));
+ connect(uChiWatPum, enaDev.uChiWatPum) annotation (Line(points={{-920,574},{-790,
+ 574},{-790,-434},{-542,-434}}, color={255,0,255}));
+ connect(equRot.yDevStaSet, chiWatPumCon.uChiWatPum) annotation (Line(points={{282,586},
+ {300,586},{300,531},{434,531}}, color={255,0,255}));
+ connect(enaDev.yEnaPlaPro, chiWatPumCon.uEnaPla) annotation (Line(points={{-518,
+ -421},{-410,-421},{-410,501},{434,501}}, color={255,0,255}));
+ connect(plaEna.yPla, chiWatPumCon.uPla) annotation (Line(points={{-658,-520},{
+ -580,-520},{-580,537},{434,537}}, color={255,0,255}));
+ connect(leaChiPum.y, equRot.uLeaStaSet) annotation (Line(points={{222,592},{234,
+ 592},{234,586},{258,586}}, color={255,0,255}));
+ connect(leaChiPumPre.y, leaChiPum.u3) annotation (Line(points={{542,600},{550,
+ 600},{550,630},{190,630},{190,584},{198,584}}, color={255,0,255}));
+ connect(enaDev.yEnaPlaPro, leaChiPum.u2) annotation (Line(points={{-518,-421},
+ {-410,-421},{-410,592},{198,592}}, color={255,0,255}));
+ connect(enaDev.yLeaPriChiPum, leaChiPum.u1) annotation (Line(points={{-518,-430},
+ {-390,-430},{-390,600},{198,600}}, color={255,0,255}));
+ connect(enaDev.yLeaConPum, upProCon.uEnaPlaConPum) annotation (Line(points={{-518,
+ -433},{-110,-433},{-110,364},{172,364}}, color={255,0,255}));
+ connect(enaDev.yConWatIsoVal, upProCon.uEnaPlaConIso) annotation (Line(points={{-518,
+ -426},{70,-426},{70,320},{172,320}}, color={255,0,255}));
+ connect(enaDev.yLeaTowCel, towCon.uEnaPla) annotation (Line(points={{-518,-436},
+ {-400,-436},{-400,-668},{-268,-668}}, color={255,0,255}));
+ connect(wseSta.yConWatIsoVal, yEcoConWatIsoVal) annotation (Line(points={{-656,
+ 320},{-620,320},{-620,780},{940,780}}, color={0,0,127}));
+ connect(wseSta.yRetVal,yWseRetVal) annotation (Line(points={{-656,313.6},{-610,
+ 313.6},{-610,750},{940,750}}, color={0,0,127}));
+ connect(wseSta.yPumOn, yWsePumOn) annotation (Line(points={{-656,308},{-600,308},
+ {-600,720},{940,720}}, color={255,0,255}));
+ connect(wseSta.yPumSpe, yWsePumSpe) annotation (Line(points={{-656,302},{-590,
+ 302},{-590,690},{940,690}}, color={0,0,127}));
+ connect(plaEna.yPla, disChi.uPla) annotation (Line(points={{-658,-520},{-580,-520},
+ {-580,-463},{738,-463}}, color={255,0,255}));
+ connect(uChiStaPro.y, disChi.uChi) annotation (Line(points={{662,350},{710,350},
+ {710,-461},{738,-461}}, color={255,0,255}));
+ connect(chiIsoVal.y, disChi.uChiWatIsoVal) annotation (Line(points={{562,0},{660,
+ 0},{660,-468},{738,-468}}, color={0,0,127}));
+ connect(uChiWatReq, disChi.uChiWatReq) annotation (Line(points={{-920,634},{-810,
+ 634},{-810,-466},{738,-466}}, color={255,0,255}));
+ connect(disChi.yChi, yChi) annotation (Line(points={{762,-461},{800,-461},{800,
+ 350},{940,350}}, color={255,0,255}));
+ connect(disChi.yChiWatIsoVal, yChiWatIsoVal) annotation (Line(points={{762,-465},
+ {810,-465},{810,0},{940,0}}, color={0,0,127}));
+ connect(uChiWatPum, disChi.uConWatReq) annotation (Line(points={{-920,574},{-790,
+ 574},{-790,-472},{738,-472}}, color={255,0,255}));
+ connect(pro4.y, disChi.uConWatIsoVal) annotation (Line(points={{682,240},{700,
+ 240},{700,-474},{738,-474}}, color={0,0,127}));
+ connect(disChi.yConWatIsoVal, yHeaPreConVal) annotation (Line(points={{762,-468},
+ {820,-468},{820,240},{940,240}}, color={0,0,127}));
+ connect(disChi.yChiWatPumSpe, yChiPumSpe) annotation (Line(points={{762,-472},
+ {830,-472},{830,480},{940,480}}, color={0,0,127}));
+ connect(pro.y, disChi.uChiWatPumSpe) annotation (Line(points={{662,480},{720,480},
+ {720,-477},{738,-477}}, color={0,0,127}));
+ connect(pro1.y, disChi.uConWatPumSpe) annotation (Line(points={{682,150},{730,
+ 150},{730,-479},{738,-479}}, color={0,0,127}));
+ connect(disChi.yConWatPumSpe, yConWatPumSpe) annotation (Line(points={{762,-475},
+ {840,-475},{840,150},{940,150}}, color={0,0,127}));
+ connect(disChi.yTow, enaTowCel.u) annotation (Line(points={{762,-479},{770,-479},
+ {770,-580},{778,-580}}, color={255,0,255}));
+ connect(enaTowCel.y, celCom.u2) annotation (Line(points={{802,-580},{810,-580},
+ {810,-668},{818,-668}}, color={255,0,255}));
+ connect(towCon.yTowSta, celCom.u1)
+ annotation (Line(points={{-172,-660},{818,-660}}, color={255,0,255}));
+ connect(celCom.y, yTowCel)
+ annotation (Line(points={{842,-660},{940,-660}}, color={255,0,255}));
+ connect(swi.y, yTowCelIsoVal)
+ annotation (Line(points={{902,-620},{940,-620}}, color={0,0,127}));
+ connect(celCom.y, swi.u2) annotation (Line(points={{842,-660},{860,-660},{860,
+ -620},{878,-620}}, color={255,0,255}));
+ connect(towCon.yIsoVal, swi.u1) annotation (Line(points={{-172,-620},{720,-620},
+ {720,-612},{878,-612}}, color={0,0,127}));
+ connect(con1.y, swi.u3) annotation (Line(points={{722,-580},{740,-580},{740,-628},
+ {878,-628}}, color={0,0,127}));
+ connect(swi1.y, yTowFanSpe)
+ annotation (Line(points={{902,-700},{940,-700}}, color={0,0,127}));
+ connect(celCom.y, swi1.u2) annotation (Line(points={{842,-660},{860,-660},{860,
+ -700},{878,-700}}, color={255,0,255}));
+ connect(con1.y, swi1.u3) annotation (Line(points={{722,-580},{740,-580},{740,-708},
+ {878,-708}}, color={0,0,127}));
+ connect(towCon.ySpeSet, swi1.u1) annotation (Line(points={{-172,-684},{-100,-684},
+ {-100,-692},{878,-692}}, color={0,0,127}));
+annotation (
+ defaultComponentName="chiPlaCon",
+ Icon(coordinateSystem(preserveAspectRatio=false, extent={{-100,-400},{100,400}}),
+ graphics={
+ Rectangle(
+ extent={{-100,-400},{100,400}},
+ lineColor={0,0,0},
+ fillColor={255,255,255},
+ fillPattern=FillPattern.Solid,
+ borderPattern=BorderPattern.Raised),
+ Text(
+ extent={{-100,440},{100,400}},
+ textColor={0,0,255},
+ textString="%name"),
+ Rectangle(
+ extent={{-50,160},{50,-162}},
+ lineColor={28,108,200},
+ fillColor={210,210,210},
+ fillPattern=FillPattern.Solid,
+ borderPattern=BorderPattern.Raised),
+ Polygon(
+ points={{-50,160},{16,4},{-50,-162},{-50,160}},
+ lineColor={175,175,175},
+ fillColor={175,175,175},
+ fillPattern=FillPattern.Solid),
+ Text(
+ extent={{-98,388},{-50,374}},
+ textColor={255,0,255},
+ textString="uChiConIsoVal"),
+ Text(
+ extent={{-98,366},{-58,354}},
+ textColor={255,0,255},
+ textString="uChiWatReq"),
+ Text(
+ extent={{-100,326},{-56,316}},
+ textColor={255,0,255},
+ textString="uChiWatPum"),
+ Text(
+ extent={{-98,346},{-56,334}},
+ textColor={255,0,255},
+ textString="uConWatReq"),
+ Text(
+ extent={{-100,306},{-62,296}},
+ textColor={255,0,255},
+ textString="uChiIsoVal",
+ visible=have_heaChiWatPum),
+ Text(
+ extent={{-98,248},{-50,234}},
+ textColor={0,0,127},
+ textString="dpChiWat_remote"),
+ Text(
+ extent={{-100,228},{-58,216}},
+ textColor={0,0,127},
+ textString="VChiWat_flow"),
+ Text(
+ extent={{-98,206},{-80,194}},
+ textColor={255,0,255},
+ textString="uChi"),
+ Text(
+ extent={{-100,166},{-68,156}},
+ textColor={0,0,127},
+ textString="TOutWet",
+ visible=have_WSE),
+ Text(
+ extent={{-98,148},{-50,134}},
+ textColor={0,0,125},
+ textString="TChiWatRetDow",
+ visible=have_WSE),
+ Text(
+ extent={{-100,126},{-60,116}},
+ textColor={0,0,127},
+ textString="TChiWatRet"),
+ Text(
+ extent={{-100,108},{-60,92}},
+ textColor={0,0,127},
+ textString="TConWatRet"),
+ Text(
+ extent={{-98,86},{-58,74}},
+ textColor={0,0,127},
+ textString="TChiWatSup"),
+ Text(
+ extent={{-98,58},{-60,44}},
+ textColor={0,0,127},
+ textString="uHeaPreCon",
+ visible=have_heaPreConSig),
+ Text(
+ extent={{-98,26},{-66,14}},
+ textColor={0,0,127},
+ textString="uChiLoa",
+ visible=need_reduceChillerDemand),
+ Text(
+ extent={{-100,-24},{-64,-36}},
+ textColor={255,0,255},
+ textString="uChiAva"),
+ Text(
+ extent={{-98,-112},{-50,-126}},
+ textColor={0,0,127},
+ textString="uChiWatIsoVal"),
+ Text(
+ extent={{-98,-132},{-50,-146}},
+ textColor={255,127,0},
+ textString="TChiWatSupResReq"),
+ Text(
+ extent={{-98,-192},{-50,-206}},
+ textColor={0,0,127},
+ textString="uConWatPumSpe"),
+ Text(
+ extent={{-98,-212},{-50,-226}},
+ textColor={255,0,255},
+ textString="uConWatPum"),
+ Text(
+ extent={{-98,-232},{-78,-246}},
+ textColor={0,0,127},
+ textString="TOut"),
+ Text(
+ extent={{-98,-252},{-50,-266}},
+ textColor={0,0,127},
+ textString="uChiCooLoa",
+ visible=have_WSE),
+ Text(
+ extent={{-96,-294},{-64,-306}},
+ textColor={0,0,127},
+ textString="uFanSpe"),
+ Text(
+ extent={{-98,-314},{-50,-328}},
+ textColor={0,0,127},
+ textString="TConWatSup",
+ visible=not closeCoupledPlant),
+ Text(
+ extent={{-100,-334},{-68,-346}},
+ textColor={0,0,127},
+ textString="uIsoVal"),
+ Text(
+ extent={{-98,-352},{-68,-364}},
+ textColor={0,0,127},
+ textString="watLev"),
+ Text(
+ extent={{-98,-372},{-62,-386}},
+ textColor={255,0,255},
+ textString="uTowSta"),
+ Text(
+ extent={{50,258},{98,244}},
+ textColor={255,0,255},
+ textString="yChiWatPum",
+ visible=have_heaChiWatPum),
+ Text(
+ extent={{76,168},{98,154}},
+ textColor={255,0,255},
+ textString="yChi"),
+ Text(
+ extent={{52,8},{100,-6}},
+ textColor={255,0,255},
+ textString="yConWatPum"),
+ Text(
+ extent={{62,-202},{98,-216}},
+ textColor={255,0,255},
+ textString="yTowCel"),
+ Text(
+ extent={{64,-264},{98,-278}},
+ textColor={255,0,255},
+ textString="yMakUp"),
+ Text(
+ extent={{52,228},{100,214}},
+ textColor={0,0,127},
+ textString="yChiPumSpe"),
+ Text(
+ extent={{52,198},{100,184}},
+ textColor={0,0,127},
+ textString="yChiDem",
+ visible=need_reduceChillerDemand),
+ Text(
+ extent={{52,98},{100,84}},
+ textColor={0,0,127},
+ textString="yHeaPreConVal"),
+ Text(
+ extent={{52,68},{100,54}},
+ textColor={0,0,127},
+ textString="yConWatPumSpe"),
+ Text(
+ extent={{52,40},{100,26}},
+ textColor={0,0,127},
+ textString="yChiWatMinFloSet"),
+ Text(
+ extent={{52,-62},{100,-76}},
+ textColor={0,0,127},
+ textString="yChiWatIsoVal"),
+ Text(
+ extent={{52,-92},{100,-106}},
+ textColor={0,0,127},
+ textString="yMinValPosSet"),
+ Text(
+ extent={{52,-172},{100,-186}},
+ textColor={0,0,127},
+ textString="yTowCelIsoVal"),
+ Text(
+ extent={{52,-232},{100,-246}},
+ textColor={0,0,127},
+ textString="yTwoFanSpe"),
+ Text(
+ extent={{52,-30},{100,-44}},
+ textColor={255,0,255},
+ textString="yReaChiDemLim",
+ visible=need_reduceChillerDemand),
+ Text(
+ extent={{-98,268},{-50,254}},
+ textColor={0,0,127},
+ visible=have_locSenChiWatPum,
+ textString="dpChiWat_local"),
+ Text(
+ extent={{-98,-94},{-54,-108}},
+ textColor={255,0,255},
+ textString="uChiHeaCon"),
+ Text(
+ extent={{50,136},{98,122}},
+ textColor={255,0,255},
+ visible=have_heaChiWatPum,
+ textString="yHeaPreConValSta"),
+ Text(
+ extent={{48,290},{96,276}},
+ textColor={0,0,125},
+ textString="TChiWatSupSet"),
+ Text(
+ extent={{-98,-154},{-70,-164}},
+ textColor={255,127,0},
+ textString="chiPlaReq"),
+ Text(
+ extent={{-98,-64},{-62,-78}},
+ textColor={0,0,127},
+ textString="TEntHex",
+ visible=have_WSE and not have_byPasValCon),
+ Text(
+ extent={{-98,-2},{-50,-16}},
+ textColor={0,0,127},
+ textString="dpChiWat",
+ visible=have_WSE and have_byPasValCon),
+ Text(
+ extent={{-98,-44},{-62,-56}},
+ textColor={255,0,255},
+ textString="uEcoPum",
+ visible=have_WSE and not have_byPasValCon),
+ Text(
+ extent={{34,398},{94,384}},
+ textColor={0,0,125},
+ textString="yEcoConWatIsoVal",
+ visible=have_WSE),
+ Text(
+ extent={{46,368},{94,354}},
+ textColor={0,0,125},
+ textString="yWseRetVal",
+ visible=have_byPasValCon and have_WSE),
+ Text(
+ extent={{46,318},{94,304}},
+ textColor={0,0,125},
+ textString="yWsePumSpe",
+ visible=have_WSE and not have_byPasValCon),
+ Text(
+ extent={{48,338},{96,324}},
+ textColor={255,0,255},
+ visible=have_WSE and not have_byPasValCon,
+ textString="yWsePumOn")}),
+ Diagram(coordinateSystem(extent={{-900,-800},{920,800}}), graphics={Text(
+ extent={{-574,-594},{-490,-614}},
+ textColor={28,108,200},
+ textString="might need a pre block")}),
+Documentation(info="
+
+This is chiller plant control sequence implemented according to ASHRAE RP-1711 Advanced
+Sequences of Operation for HVAC Systems Phase II –
+Central Plants and Hydronic Systems (draft version on March 23, 2020). It is
+assembled by following subsequences:
+
+1. Plant reset
+
+The sequences
+
+Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.SetPoints.ChilledWaterPlantReset
+and
+
+Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.SetPoints.ChilledWaterSupply
+are for resetting chilled water temperature setpoint and differential pressure setpoint.
+They are applicable for the primary-only plants or for the primary-secondary systems
+serving differential pressure controlled pumps.
+
+
+Applicable |
+Primary-only systems |
+Primay-secondary systems serving differential pressure controlled pumps |
+Not applicable |
+Primary-only systems serving a single large load, e.g. large AHU |
+Primay-secondary systems where there are any coil pumps |
+Plants with multiple reset loops |
+Plants with series chiller |
+
+
+2. Head pressure control
+
+The sequence
+
+Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.HeadPressure.Controller
+generates control signals for chiller head pressure control.
+
+
+Applicable |
+Plants with headered condenser water pump, fixed or variable speed |
+Plants with or without waterside economizer |
+Not applicable |
+Plants with air-cooling chillers |
+
+
+Note the sequence assumes:
+
+
+-
+the plants with fixed speed condenser water pump do not have waterside economizer.
+
+-
+when plants have variable speed condenser water pump and have waterside economizer,
+the pumps are headered.
+
+
+
+3. Minimum flow bypass valve control
+
+The sequence
+
+Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.MinimumFlowBypass.Controller
+and
+
+Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.MinimumFlowBypass.FlowSetpoint
+control chilled water minimum flow bypass valve.
+
+
+Applicable |
+Primary-only plants, with parallel or series chillers |
+Not applicable |
+Primary-secondary plants |
+
+
+4. Chilled water pump control
+
+The sequence
+
+Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Pumps.ChilledWater.Controller
+controls chilled water pump. It is applicable for primary-only plants with parallel
+chillers.
+
+
+Applicable |
+Primary-only plants with parallel chillers |
+Not applicable |
+Primary-only plants with series chillers |
+Primary-secondary plants |
+
+
+5. Chiller staging control
+
+The sequences
+
+Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.Processes.Up
+and
+
+Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.Processes.Down
+controls chiller staging up and down process. They are applicable for following plants:
+
+
+Applicable |
+water-cooled, primary-only, parallel chiller plants with headered chilled water pumps and headered condenser water pumps |
+air-cooled primary-only, parallel chiller plants with headered chilled water pumps |
+Not applicable |
+Primary-only plants with parallel chillers, dedicated chilled water or condenser water pumps |
+Primary-only plants with series chillers |
+Primary-secondary plants |
+
+
+6. Tower control
+
+The sequence
+
+Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Towers.Controller
+controls cooling tower staging and the fans speed. It is appliable for plants with
+dynamic load profiles, i.e. those for which PLR may change by more than approximately
+25% in any hour, for controlling condenser water return temperature. It is not
+applicable for the plants where 2-position tower bypass control valves are needed
+to prevent tower freezing.
+Note that the sequence assumes that the cells are enabled in order as it is labelled, meaning
+that it enabled the cells as cell 1, 2, 3, etc.
+
+
+7. Equipment rotation
+
+The sequence
+
+Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Generic.EquipmentRotation.ControllerTwo
+rotates equipment, such as chillers or pumps, in order to ensure equal wear and tear.
+It is applicable for two identical devices or device groups.
+
+
+", revisions="
+
+-
+August 30, 2021, by Jianjun Hu:
+Cleaned implementation and added documentation.
+
+-
+May 30, 2020, by Milica Grahovac:
+First implementation.
+
+
+"));
+end Controller;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Economizers/Controller.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Economizers/Controller.mo
new file mode 100644
index 00000000000..f256378e6c9
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Economizers/Controller.mo
@@ -0,0 +1,565 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Economizers;
+block Controller "Waterside economizer (WSE) enable/disable status"
+
+ parameter Boolean have_byPasValCon=true
+ "True: chilled water flow through economizer is controlled using heat exchanger bypass valve";
+
+ parameter Integer nSta = 3
+ "Number of chiller stages";
+
+ parameter Real holdPeriod(
+ final unit="s",
+ final quantity="Time")=1200
+ "WSE minimum on or off time"
+ annotation(Dialog(group="Enable parameters"));
+
+ parameter Real delDis(
+ final unit="s",
+ final quantity="Time")=120
+ "Delay disable time period"
+ annotation(Dialog(group="Enable parameters"));
+
+ parameter Real TOffsetEna(
+ final unit="K",
+ final quantity="TemperatureDifference")=2
+ "Temperature offset between the chilled water return upstream of WSE and the predicted WSE output"
+ annotation(Dialog(group="Enable parameters"));
+
+ parameter Real TOffsetDis(
+ final unit="K",
+ final quantity="TemperatureDifference")=1
+ "Temperature offset between the chilled water return upstream and downstream WSE"
+ annotation(Dialog(group="Enable parameters"));
+
+ parameter Real heaExcAppDes(
+ final unit="K",
+ final quantity="TemperatureDifference")=2
+ "Design heat exchanger approach"
+ annotation(Dialog(group="Design parameters"));
+
+ parameter Real cooTowAppDes(
+ final unit="K",
+ final quantity="TemperatureDifference")=2
+ "Design cooling tower approach"
+ annotation(Dialog(group="Design parameters"));
+
+ parameter Real TOutWetDes(
+ final unit="K",
+ final quantity="ThermodynamicTemperature",
+ displayUnit="degC")=288.15
+ "Design outdoor air wet bulb temperature"
+ annotation(Dialog(group="Design parameters"));
+
+ parameter Real hysDt(
+ final unit="K",
+ final quantity="TemperatureDifference")=1
+ "Deadband temperature used in hysteresis block"
+ annotation (Evaluate=true, Dialog(tab="Advanced", group="Hysteresis"));
+
+ parameter Real VHeaExcDes_flow(
+ final unit="m3/s",
+ final quantity="VolumeFlowRate",
+ displayUnit="m3/s")=0.015
+ "Design heat exchanger chilled water volume flow rate"
+ annotation(Dialog(group="Design parameters"));
+
+ parameter Real step(
+ final unit="1")=0.02
+ "Incremental step used to reduce or increase the water-side economizer tuning parameter"
+ annotation (Evaluate=true, Dialog(tab="Advanced", group="Tuning"));
+
+ parameter Real wseOnTimDec(
+ final unit="s",
+ final quantity="Time",
+ displayUnit="h") = 3600
+ "Economizer enable time needed to allow decrease of the tuning parameter"
+ annotation (Evaluate=true,Dialog(tab="Advanced", group="Tuning"));
+
+ parameter Real wseOnTimInc(
+ final unit="s",
+ final quantity="Time",
+ displayUnit="h") = 1800
+ "Economizer enable time needed to allow increase of the tuning parameter"
+ annotation (Evaluate=true,Dialog(tab="Advanced", group="Tuning"));
+
+ parameter Real dpDes(
+ final unit="Pa",
+ final quantity="PresureDifference")=6000
+ "Design pressure difference across the chilled water side economizer"
+ annotation (Dialog(group="Valve or pump control", enable=have_byPasValCon));
+ parameter CDL.Types.SimpleController valCon=Buildings.Controls.OBC.CDL.Types.SimpleController.PI
+ "Type of controller"
+ annotation (Dialog(group="Valve or pump control", enable=have_byPasValCon));
+ parameter Real k=0.1
+ "Gain of controller"
+ annotation (Dialog(group="Valve or pump control", enable=have_byPasValCon));
+ parameter Real Ti(unit="s")=0.5
+ "Time constant of integrator block"
+ annotation (Dialog(group="Valve or pump control",
+ enable=(valCon == CDL.Types.SimpleController.PI or valCon == CDL.Types.SimpleController.PID)
+ and have_byPasValCon));
+ parameter Real Td(unit="s")=0.1
+ "Time constant of derivative block"
+ annotation (Dialog(group="Valve or pump control",
+ enable=(valCon == CDL.Types.SimpleController.PD or valCon == CDL.Types.SimpleController.PID)
+ and have_byPasValCon));
+ parameter Real minSpe(
+ final min=0,
+ final max=1)=0.1
+ "Minimum pump speed"
+ annotation (Dialog(group="Valve or pump control", enable=not have_byPasValCon));
+ parameter Real desSpe(
+ final min=0,
+ final max=1)=0.9
+ "Design pump speed"
+ annotation (Dialog(group="Valve or pump control", enable=not have_byPasValCon));
+
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput TOutWet(
+ final unit="K",
+ displayUnit="degC",
+ final quantity="ThermodynamicTemperature")
+ "Outdoor air wet bulb temperature"
+ annotation (Placement(transformation(extent={{-220,190},{-180,230}}),
+ iconTransformation(extent={{-140,80},{-100,120}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput TChiWatRet(
+ final unit="K",
+ displayUnit="degC",
+ final quantity="ThermodynamicTemperature")
+ "Chilled water return temperature upstream of the WSE"
+ annotation (Placement(transformation(extent={{-220,150},{-180,190}}),
+ iconTransformation(extent={{-140,60},{-100,100}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput TChiWatRetDow(
+ final unit="K",
+ displayUnit="degC",
+ final quantity="ThermodynamicTemperature")
+ "Chilled water return temperature downstream of the WSE"
+ annotation (Placement(transformation(extent={{-220,110},{-180,150}}),
+ iconTransformation(extent={{-140,40},{-100,80}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput uTowFanSpeMax(
+ final min=0,
+ final max=1,
+ final unit="1")
+ "Maximum cooling tower fan speed"
+ annotation (Placement(transformation(extent={{-220,-10},{-180,30}}),
+ iconTransformation(extent={{-140,0},{-100,40}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput VChiWat_flow(
+ final quantity="VolumeFlowRate",
+ final unit="m3/s")
+ "Measured chilled water volume flow rate"
+ annotation (Placement(transformation(extent={{-220,50},{-180,90}}),
+ iconTransformation(extent={{-140,20},{-100,60}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uPla
+ "Plant enable signal"
+ annotation (Placement(transformation(extent={{-220,-40},{-180,0}}),
+ iconTransformation(extent={{-140,-20},{-100,20}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.IntegerInput uIni(
+ final min=0,
+ final max=nSta) "Initial chiller stage (at plant enable)"
+ annotation (Placement(transformation(extent={{-220,-70},{-180,-30}}),
+ iconTransformation(extent={{-140,-40},{-100,0}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.IntegerInput uChiSta(
+ final min=0,
+ final max=nSta)
+ "Current chiller stage"
+ annotation (Placement(transformation(extent={{-220,-128},{-180,-88}}),
+ iconTransformation(extent={{-140,-60},{-100,-20}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput dpChiWat(
+ final unit="Pa",
+ final quantity="PressureDifference") if have_byPasValCon
+ "Differential static pressure across economizer in the chilled water side"
+ annotation (Placement(transformation(extent={{-220,-160},{-180,-120}}),
+ iconTransformation(extent={{-140,-80},{-100,-40}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uPum
+ if not have_byPasValCon "True: heat exchanger pump is proven on"
+ annotation (Placement(transformation(extent={{-220,-200},{-180,-160}}),
+ iconTransformation(extent={{-140,-100},{-100,-60}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput TEntHex(
+ final unit="K",
+ displayUnit="degC",
+ final quantity="ThermodynamicTemperature") if not have_byPasValCon
+ "Chilled water temperature entering heat exchanger"
+ annotation (Placement(transformation(extent={{-220,-230},{-180,-190}}),
+ iconTransformation(extent={{-140,-120},{-100,-80}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealOutput TWsePre(
+ final quantity="ThermodynamicTemperature",
+ displayUnit="degC",
+ final unit="K")
+ "Predicted waterside economizer outlet temperature"
+ annotation (Placement(transformation(extent={{180,110},{220,150}}),
+ iconTransformation(extent={{100,70},{140,110}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealOutput yTunPar
+ "Tuning parameter"
+ annotation (Placement(transformation(extent={{180,10},{220,50}}),
+ iconTransformation(extent={{100,40},{140,80}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanOutput y
+ "WSE enable/disable status"
+ annotation (Placement(transformation(extent={{180,-40},{220,0}}),
+ iconTransformation(extent={{100,10},{140,50}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealOutput yConWatIsoVal(
+ final min=0,
+ final max=1,
+ final unit="1") "Economizer condensing water isolation valve position"
+ annotation (Placement(transformation(extent={{180,-120},{220,-80}}),
+ iconTransformation(extent={{100,-20},{140,20}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealOutput yRetVal(
+ final min=0,
+ final max=1,
+ final unit="1") if have_byPasValCon
+ "WSE in-line CHW return line valve position"
+ annotation (Placement(transformation(extent={{180,-166},{220,-126}}),
+ iconTransformation(extent={{100,-52},{140,-12}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanOutput yPumOn
+ if not have_byPasValCon "Heat exchanger pump command on"
+ annotation (Placement(transformation(extent={{180,-200},{220,-160}}),
+ iconTransformation(extent={{100,-80},{140,-40}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealOutput yPumSpe(
+ final min=0,
+ final max=1,
+ final unit="1") if not have_byPasValCon
+ "Heat exchanger pump speed setpoint"
+ annotation (Placement(transformation(extent={{180,-230},{220,-190}}),
+ iconTransformation(extent={{100,-110},{140,-70}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.LessThreshold enaTChiWatRet(
+ final t=delDis)
+ "Enable condition based on chilled water return temperature upstream and downstream WSE"
+ annotation (Placement(transformation(extent={{60,90},{80,110}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Hysteresis enaTWet(
+ final uLow = TOffsetEna - hysDt/2,
+ final uHigh = TOffsetEna + hysDt/2)
+ "Enable condition based on the outdoor wet bulb temperature"
+ annotation (Placement(transformation(extent={{20,156},{40,176}})));
+
+protected
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Economizers.Subsequences.Tuning wseTun(
+ final step=step,
+ final wseOnTimDec=wseOnTimDec,
+ final wseOnTimInc=wseOnTimInc)
+ "Tuning parameter for the WSE outlet temperature calculation"
+ annotation (Placement(transformation(extent={{-140,20},{-120,40}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Economizers.Subsequences.PredictedOutletTemperature wseTOut(
+ final heaExcAppDes=heaExcAppDes,
+ final cooTowAppDes=cooTowAppDes,
+ final TOutWetDes=TOutWetDes,
+ final VHeaExcDes_flow=VHeaExcDes_flow)
+ "Calculates the predicted WSE outlet temperature"
+ annotation (Placement(transformation(extent={{-100,150},{-80,170}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Subtract sub2 "Subtract"
+ annotation (Placement(transformation(extent={{-20,156},{0,176}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Pre pre "Logical pre"
+ annotation (Placement(transformation(extent={{120,-70},{140,-50}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Subtract sub1 "Subtract"
+ annotation (Placement(transformation(extent={{-100,90},{-80,110}})));
+
+ Buildings.Controls.OBC.CDL.Logical.TrueFalseHold truFalHol(
+ final trueHoldDuration=holdPeriod,
+ final falseHoldDuration=holdPeriod)
+ "Keeps a signal constant for a given time period"
+ annotation (Placement(transformation(extent={{140,156},{160,176}})));
+
+ Buildings.Controls.OBC.CDL.Logical.And and2 "And"
+ annotation (Placement(transformation(extent={{100,156},{120,176}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Hysteresis hys(
+ final uLow = TOffsetDis - hysDt/2,
+ final uHigh = TOffsetDis + hysDt/2)
+ "Hysteresis comparing CHW temperatures upstream and downstream WSE"
+ annotation (Placement(transformation(extent={{-60,90},{-40,110}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Timer timer
+ "Measures the disable condition satisfied time "
+ annotation (Placement(transformation(extent={{20,90},{40,110}})));
+
+ Buildings.Controls.OBC.CDL.Logical.FallingEdge falEdg
+ "Falling edge to indicate the moment of disable"
+ annotation (Placement(transformation(extent={{-100,50},{-80,70}})));
+
+ Buildings.Controls.OBC.CDL.Logical.TrueHoldWithReset truHol(
+ final duration=holdPeriod)
+ "Holds a true signal for a period of time right after disable"
+ annotation (Placement(transformation(extent={{-60,50},{-40,70}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Nor nor
+ "Not either of the inputs"
+ annotation (Placement(transformation(extent={{-20,90},{0,110}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Economizers.Subsequences.BypassValve wseVal(
+ final dpDes=dpDes,
+ final controllerType=valCon,
+ final k=k,
+ final Ti=Ti,
+ final Td=Td) if have_byPasValCon
+ "Chilled water flow through economizer is controlled using bypass valve"
+ annotation (Placement(transformation(extent={{120,-150},{140,-130}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Economizers.Subsequences.HeatExchangerPump wsePum(
+ final minSpe=minSpe,
+ final desSpe=desSpe)
+ if not have_byPasValCon
+ "Pump control for economizer when the chilled water flow is controlled by a variable speed heat exchanger pump"
+ annotation (Placement(transformation(extent={{120,-190},{140,-170}})));
+
+ Buildings.Controls.OBC.CDL.Logical.And and1
+ "Plant enabled with 0 initial stage, it means enabled with economizer-only operation"
+ annotation (Placement(transformation(extent={{-60,-30},{-40,-10}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant conInt(
+ final k=0) "Stage 0"
+ annotation (Placement(transformation(extent={{-140,-90},{-120,-70}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Equal intEqu
+ "Check if initial stage is 0"
+ annotation (Placement(transformation(extent={{-100,-60},{-80,-40}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Edge edg
+ "Plant enable edge"
+ annotation (Placement(transformation(extent={{-140,-30},{-120,-10}})));
+ Buildings.Controls.OBC.CDL.Logical.Latch lat
+ "Plant enabled with economizer-only operation"
+ annotation (Placement(transformation(extent={{20,-30},{40,-10}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Equal intEqu1
+ "Check if current stage is initial stage"
+ annotation (Placement(transformation(extent={{-100,-110},{-80,-90}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Not not1
+ "Not in initial stage"
+ annotation (Placement(transformation(extent={{-60,-110},{-40,-90}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Edge edg1
+ "Becoming not initial stage"
+ annotation (Placement(transformation(extent={{-20,-110},{0,-90}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Or enaEco "Economizer enabled"
+ annotation (Placement(transformation(extent={{80,-30},{100,-10}})));
+
+equation
+ connect(uTowFanSpeMax, wseTun.uTowFanSpeMax) annotation (Line(points={{-200,10},
+ {-150,10},{-150,25},{-142,25}}, color={0,0,127}));
+ connect(TOutWet, wseTOut.TOutWet)
+ annotation (Line(points={{-200,210},{-120,210},{-120,168},{-102,168}},
+ color={0,0,127}));
+ connect(VChiWat_flow, wseTOut.VChiWat_flow)
+ annotation (Line(points={{-200,70},{-120,70},{-120,160},{-102,160}},
+ color={0,0,127}));
+ connect(pre.y,wseTun.uWseSta)
+ annotation (Line(points={{142,-60},{150,-60},{150,-120},{-160,-120},{-160,35},
+ {-142,35}}, color={255,0,255}));
+ connect(TChiWatRet, sub1.u1)
+ annotation (Line(points={{-200,170},{-170,170},{-170,106},{-102,106}},
+ color={0,0,127}));
+ connect(enaTWet.y, and2.u1)
+ annotation (Line(points={{42,166},{98,166}}, color={255,0,255}));
+ connect(truFalHol.u, and2.y)
+ annotation (Line(points={{138,166},{122,166}},
+ color={255,0,255}));
+ connect(timer.y, enaTChiWatRet.u)
+ annotation (Line(points={{42,100},{58,100}}, color={0,0,127}));
+ connect(TChiWatRetDow, sub1.u2)
+ annotation (Line(points={{-200,130},{-160,130},{-160,94},{-102,94}},
+ color={0,0,127}));
+ connect(sub1.y, hys.u)
+ annotation (Line(points={{-78,100},{-62,100}},color={0,0,127}));
+ connect(enaTChiWatRet.y, and2.u2) annotation (Line(points={{82,100},{90,100},{
+ 90,158},{98,158}}, color={255,0,255}));
+ connect(wseTun.y, wseTOut.uTunPar) annotation (Line(points={{-119,30},{-110,30},
+ {-110,152},{-102,152}}, color={0,0,127}));
+ connect(wseTOut.y, sub2.u2) annotation (Line(points={{-78,160},{-22,160}},
+ color={0,0,127}));
+ connect(TChiWatRet, sub2.u1) annotation (Line(points={{-200,170},{-170,170},{-170,
+ 180},{-60,180},{-60,172},{-22,172}}, color={0,0,127}));
+ connect(sub2.y, enaTWet.u)
+ annotation (Line(points={{2,166},{18,166}}, color={0,0,127}));
+ connect(wseTun.y, yTunPar)
+ annotation (Line(points={{-119,30},{200,30}}, color={0,0,127}));
+ connect(nor.y, timer.u)
+ annotation (Line(points={{2,100},{18,100}}, color={255,0,255}));
+ connect(hys.y, nor.u1)
+ annotation (Line(points={{-38,100},{-22,100}}, color={255,0,255}));
+ connect(truHol.y, nor.u2) annotation (Line(points={{-38,60},{-30,60},{-30,92},
+ {-22,92}}, color={255,0,255}));
+ connect(falEdg.y, truHol.u)
+ annotation (Line(points={{-78,60},{-62,60}}, color={255,0,255}));
+ connect(pre.y, falEdg.u) annotation (Line(points={{142,-60},{150,-60},{150,-120},
+ {-160,-120},{-160,60},{-102,60}}, color={255,0,255}));
+ connect(wseTOut.y, TWsePre) annotation (Line(points={{-78,160},{-60,160},{-60,
+ 130},{200,130}}, color={0,0,127}));
+ connect(uIni, intEqu.u1)
+ annotation (Line(points={{-200,-50},{-102,-50}}, color={255,127,0}));
+ connect(conInt.y, intEqu.u2) annotation (Line(points={{-118,-80},{-110,-80},{-110,
+ -58},{-102,-58}}, color={255,127,0}));
+ connect(intEqu.y, and1.u2) annotation (Line(points={{-78,-50},{-70,-50},{-70,-28},
+ {-62,-28}}, color={255,0,255}));
+ connect(uPla, edg.u)
+ annotation (Line(points={{-200,-20},{-142,-20}}, color={255,0,255}));
+ connect(edg.y, and1.u1)
+ annotation (Line(points={{-118,-20},{-62,-20}}, color={255,0,255}));
+ connect(uIni, intEqu1.u1) annotation (Line(points={{-200,-50},{-150,-50},{-150,
+ -100},{-102,-100}}, color={255,127,0}));
+ connect(uChiSta, intEqu1.u2)
+ annotation (Line(points={{-200,-108},{-102,-108}}, color={255,127,0}));
+ connect(intEqu1.y, not1.u)
+ annotation (Line(points={{-78,-100},{-62,-100}}, color={255,0,255}));
+ connect(not1.y, edg1.u)
+ annotation (Line(points={{-38,-100},{-22,-100}}, color={255,0,255}));
+ connect(and1.y, lat.u)
+ annotation (Line(points={{-38,-20},{18,-20}}, color={255,0,255}));
+ connect(edg1.y, lat.clr) annotation (Line(points={{2,-100},{10,-100},{10,-26},
+ {18,-26}}, color={255,0,255}));
+ connect(lat.y, enaEco.u2) annotation (Line(points={{42,-20},{60,-20},{60,-28},
+ {78,-28}}, color={255,0,255}));
+ connect(truFalHol.y, enaEco.u1) annotation (Line(points={{162,166},{170,166},{
+ 170,70},{70,70},{70,-20},{78,-20}}, color={255,0,255}));
+ connect(enaEco.y, y)
+ annotation (Line(points={{102,-20},{200,-20}}, color={255,0,255}));
+ connect(enaEco.y, pre.u) annotation (Line(points={{102,-20},{110,-20},{110,-60},
+ {118,-60}}, color={255,0,255}));
+ connect(enaEco.y, wseVal.uWSE) annotation (Line(points={{102,-20},{110,-20},{
+ 110,-140},{118,-140}},
+ color={255,0,255}));
+ connect(enaEco.y, wsePum.uWSE) annotation (Line(points={{102,-20},{110,-20},{
+ 110,-176},{118,-176}},
+ color={255,0,255}));
+ connect(dpChiWat, wseVal.dpChiWat) annotation (Line(points={{-200,-140},{-60,-140},
+ {-60,-146},{118,-146}}, color={0,0,127}));
+ connect(uPum, wsePum.uPum) annotation (Line(points={{-200,-180},{118,-180}},
+ color={255,0,255}));
+ connect(TEntHex, wsePum.TEntHex) annotation (Line(points={{-200,-210},{100,
+ -210},{100,-188},{118,-188}},
+ color={0,0,127}));
+ connect(wseVal.yConWatIsoVal, yConWatIsoVal) annotation (Line(points={{142,-134},
+ {160,-134},{160,-100},{200,-100}}, color={0,0,127}));
+ connect(wseVal.yRetVal, yRetVal)
+ annotation (Line(points={{142,-146},{200,-146}}, color={0,0,127}));
+ connect(wsePum.yPumOn, yPumOn)
+ annotation (Line(points={{142,-180},{200,-180}}, color={255,0,255}));
+ connect(wsePum.yPumSpe, yPumSpe) annotation (Line(points={{142,-186},{160,-186},
+ {160,-210},{200,-210}}, color={0,0,127}));
+ connect(wsePum.yConWatIsoVal, yConWatIsoVal) annotation (Line(points={{142,-174},
+ {160,-174},{160,-100},{200,-100}}, color={0,0,127}));
+ connect(TChiWatRet, wsePum.TEntWSE) annotation (Line(points={{-200,170},{-170,
+ 170},{-170,-184},{118,-184}}, color={0,0,127}));
+ connect(uPla, wseVal.uPla) annotation (Line(points={{-200,-20},{-154,-20},{
+ -154,-134},{118,-134}}, color={255,0,255}));
+ connect(uPla, wsePum.uPla) annotation (Line(points={{-200,-20},{-154,-20},{
+ -154,-172},{118,-172}}, color={255,0,255}));
+ annotation (defaultComponentName = "wseSta",
+ Icon(coordinateSystem(extent={{-100,-100},{100,100}}),
+ graphics={
+ Rectangle(
+ extent={{-100,-100},{100,100}},
+ lineColor={0,0,127},
+ fillColor={255,255,255},
+ fillPattern=FillPattern.Solid),
+ Text(
+ extent={{-100,140},{100,100}},
+ textColor={0,0,255},
+ textString="%name"),
+ Rectangle(
+ extent={{-82,64},{80,-56}},
+ lineColor={28,108,200},
+ fillColor={210,210,210},
+ fillPattern=FillPattern.Solid,
+ borderPattern=BorderPattern.Raised),
+ Polygon(
+ points={{-82,64},{-16,8},{-82,-56},{-82,64}},
+ lineColor={175,175,175},
+ fillColor={175,175,175},
+ fillPattern=FillPattern.Solid),
+ Rectangle(
+ extent={{6,60},{72,-52}},
+ lineColor={28,108,200},
+ lineThickness=0.5),
+ Line(
+ points={{6,-52},{72,60}},
+ color={28,108,200},
+ thickness=0.5)}),
+ Diagram(coordinateSystem(preserveAspectRatio=false,
+ extent={{-180,-220},{180,220}}), graphics={
+ Rectangle(
+ extent={{-178,-2},{58,-118}},
+ fillColor={210,210,210},
+ fillPattern=FillPattern.Solid,
+ pattern=LinePattern.None), Text(
+ extent={{-92,-64},{52,-78}},
+ textColor={0,0,127},
+ textString="Plant enabled in water side economizer mode")}),
+Documentation(info="
+
+Waterside economizer (WSE) control sequence per ASHRAE RP-1711, March 2020, section 5.2.3.
+It implements the enable/disable conditions as provided in sections 5.2.3.1. and 5.2.3.2.
+
+
+The sequence controls the WSE status as follows:
+
+
+-
+Enable WSE if it has been disabled for at least
holdPeriod
of time and the chilled water return
+temperature (CHWRT) upstream of WSE, TChiWatRet
, is greater than the WSE predicted heat
+exchanger leaving water temperature (PHXLWT) increased in TOffsetEna
.
+
+-
+Disable WSE if it has been enabled for at least
holdPeriod
of time and CHWRT downstream of
+WSE, TChiWatRetDow
, is greater than TChiWatRet
decreased in TOffsetDis
+for delDis
time period.
+
+
+
+The following state machine chart illustrates the transitions between WSE enabled and disabled state:
+
+
+
+
+
+The WSE control sequence uses the following subsequences:
+
+
+",
+revisions="
+
+-
+January 19, 2021, by Milica Grahovac:
+Added state chart illustration.
+
+-
+October 13, 2018, by Milica Grahovac:
+First implementation.
+
+
+"));
+end Controller;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Economizers/Subsequences/BypassValve.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Economizers/Subsequences/BypassValve.mo
new file mode 100644
index 00000000000..da8b0d79afa
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Economizers/Subsequences/BypassValve.mo
@@ -0,0 +1,155 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Economizers.Subsequences;
+block BypassValve
+ "Valves control when chilled water flow through economizer is controlled using bypass valve"
+
+ parameter Real dpDes(
+ final unit="Pa",
+ displayUnit="Pa",
+ final quantity="PressureDifference",
+ final min=0)=6000
+ "Design pressure difference across the chilled water side economizer";
+ parameter CDL.Types.SimpleController controllerType=Buildings.Controls.OBC.CDL.Types.SimpleController.PI
+ "Type of controller"
+ annotation (Dialog(group="Valve controller"));
+ parameter Real k=0.1
+ "Gain of controller"
+ annotation (Dialog(group="Valve controller"));
+ parameter Real Ti(unit="s")=0.5
+ "Time constant of integrator block"
+ annotation (Dialog(group="Valve controller",
+ enable=controllerType == CDL.Types.SimpleController.PI or controllerType == CDL.Types.SimpleController.PID));
+ parameter Real Td(unit="s")=0.1
+ "Time constant of derivative block"
+ annotation (Dialog(group="Valve controller",
+ enable=controllerType == CDL.Types.SimpleController.PD or controllerType == CDL.Types.SimpleController.PID));
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uPla
+ "Plant enable signal"
+ annotation (Placement(transformation(extent={{-140,60},{-100,100}}),
+ iconTransformation(extent={{-140,40},{-100,80}})));
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uWSE
+ "True: waterside economizer is enabled"
+ annotation (Placement(transformation(extent={{-140,20},{-100,60}}),
+ iconTransformation(extent={{-140,-20},{-100,20}})));
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput dpChiWat(
+ final unit="Pa",
+ final quantity="PressureDifference")
+ "Differential static pressure across economizer in the chilled water side"
+ annotation (Placement(transformation(extent={{-140,-60},{-100,-20}}),
+ iconTransformation(extent={{-140,-80},{-100,-40}})));
+ Buildings.Controls.OBC.CDL.Interfaces.RealOutput yConWatIsoVal(
+ final min=0,
+ final max=1,
+ final unit="1")
+ "Economizer condensing water isolation valve position"
+ annotation (Placement(transformation(extent={{100,20},{140,60}}),
+ iconTransformation(extent={{100,40},{140,80}})));
+ Buildings.Controls.OBC.CDL.Interfaces.RealOutput yRetVal(
+ final min=0,
+ final max=1,
+ final unit="1")
+ "WSE in-line CHW return line valve position"
+ annotation (Placement(transformation(extent={{100,-40},{140,0}}),
+ iconTransformation(extent={{100,-80},{140,-40}})));
+
+ Buildings.Controls.OBC.CDL.Conversions.BooleanToReal booToRea
+ annotation (Placement(transformation(extent={{60,30},{80,50}})));
+ Buildings.Controls.OBC.CDL.Continuous.PIDWithReset conPID(
+ final controllerType=controllerType,
+ final k=k,
+ final Ti=Ti,
+ final Td=Td,
+ final reverseActing=false,
+ final y_reset=1) "Chilled water return line valve controller"
+ annotation (Placement(transformation(extent={{-10,-10},{10,10}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant con(
+ final k=1) "Constant one"
+ annotation (Placement(transformation(extent={{-80,-10},{-60,10}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant con1(
+ final k=dpDes)
+ "Design static pressure difference across waterside economizer in chilled water side"
+ annotation (Placement(transformation(extent={{-80,-90},{-60,-70}})));
+ Buildings.Controls.OBC.CDL.Continuous.Divide div1
+ annotation (Placement(transformation(extent={{-40,-56},{-20,-36}})));
+ Buildings.Controls.OBC.CDL.Continuous.Switch swi
+ annotation (Placement(transformation(extent={{60,-30},{80,-10}})));
+ Buildings.Controls.OBC.CDL.Logical.And and1
+ "Waterside economizer commanded on"
+ annotation (Placement(transformation(extent={{-80,30},{-60,50}})));
+equation
+ connect(dpChiWat, div1.u1)
+ annotation (Line(points={{-120,-40},{-42,-40}}, color={0,0,127}));
+ connect(con1.y, div1.u2) annotation (Line(points={{-58,-80},{-50,-80},{-50,-52},
+ {-42,-52}}, color={0,0,127}));
+ connect(con.y, conPID.u_s)
+ annotation (Line(points={{-58,0},{-12,0}}, color={0,0,127}));
+ connect(div1.y, conPID.u_m)
+ annotation (Line(points={{-18,-46},{0,-46},{0,-12}}, color={0,0,127}));
+ connect(conPID.y, swi.u1) annotation (Line(points={{12,0},{20,0},{20,-12},{58,
+ -12}},color={0,0,127}));
+ connect(con.y, swi.u3) annotation (Line(points={{-58,0},{-50,0},{-50,-28},{58,
+ -28}},color={0,0,127}));
+ connect(swi.y, yRetVal) annotation (Line(points={{82,-20},{120,-20}},
+ color={0,0,127}));
+ connect(booToRea.y, yConWatIsoVal)
+ annotation (Line(points={{82,40},{120,40}}, color={0,0,127}));
+ connect(uWSE, and1.u1)
+ annotation (Line(points={{-120,40},{-82,40}}, color={255,0,255}));
+ connect(uPla, and1.u2) annotation (Line(points={{-120,80},{-90,80},{-90,32},{-82,
+ 32}}, color={255,0,255}));
+ connect(and1.y, booToRea.u)
+ annotation (Line(points={{-58,40},{58,40}}, color={255,0,255}));
+ connect(and1.y, conPID.trigger) annotation (Line(points={{-58,40},{-40,40},{-40,
+ -20},{-6,-20},{-6,-12}}, color={255,0,255}));
+ connect(and1.y, swi.u2) annotation (Line(points={{-58,40},{-40,40},{-40,-20},{
+ 58,-20}}, color={255,0,255}));
+annotation (defaultComponentName = "wseVal",
+ Icon(coordinateSystem(preserveAspectRatio=false), graphics={
+ Rectangle(
+ extent={{-100,-100},{100,100}},
+ lineColor={0,0,127},
+ fillColor={255,255,255},
+ fillPattern=FillPattern.Solid),
+ Text(
+ extent={{-100,140},{100,100}},
+ textColor={0,0,255},
+ textString="%name")}),
+ Diagram(coordinateSystem(preserveAspectRatio=false)),
+ Documentation(info="
+
+Waterside economizer valves control when the chilled water flow through the economizer
+is controlled using a modulating heat exchanger bypass valve. It is implemented
+according to ASHRAE RP-1711, March 2020, section 5.2.3.4-6.
+
+
+When economizer is enabled, start next condenser pump and (or) adjust the pump
+speed (see
+Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Pumps.CondenserWater.Controller),
+open the condenser water isolation valve to the heat exchanger (yConWatIsoVal=1
),
+and enable the economizer in-line chilled water return line valve (yRetVal=1
).
+
+
+When the in-line valve is enabled, it shall be modulated by a direct-acting PID
+loop to maintain the static pressure difference across the chilled water side
+of the heat exchanger at the design value (dpDes
). Map the loop output from 0% open
+at 0% output to 100% open at 100% output. Bias the loop to launce from 100%
+output. The valve shall be fully open when the loop is disabled.
+
+
+When the economizer is disabled, the economizer in-line chilled water return line
+valve shall be disabled (fully open), the heat exchanger condensing water isolation
+valve fully closed (yConWatIsoVal=0
), and the last lag condenser water
+pump disabled and (or) change the pump speed
+(see
+Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Pumps.CondenserWater.Controller).
+
+",
+revisions="
+
+-
+July 14, 2022, by Jianjun Hu:
+First implementation.
+
+
+"));
+end BypassValve;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Economizers/Subsequences/HeatExchangerPump.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Economizers/Subsequences/HeatExchangerPump.mo
new file mode 100644
index 00000000000..9537971d024
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Economizers/Subsequences/HeatExchangerPump.mo
@@ -0,0 +1,219 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Economizers.Subsequences;
+block HeatExchangerPump
+ "Pump control for economizer when the chilled water flow is controlled by a variable speed heat exchanger pump"
+ parameter Real minSpe = 0.1 "Minimum pump speed";
+ parameter Real desSpe = 0.9 "Design pump speed";
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uPla
+ "Plant enable signal"
+ annotation (Placement(transformation(extent={{-200,120},{-160,160}}),
+ iconTransformation(extent={{-140,60},{-100,100}})));
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uWSE
+ "True: waterside economizer is enabled"
+ annotation (Placement(transformation(extent={{-200,90},{-160,130}}),
+ iconTransformation(extent={{-140,20},{-100,60}})));
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uPum
+ "True: heat exchanger pump is proven on"
+ annotation (Placement(transformation(extent={{-200,40},{-160,80}}),
+ iconTransformation(extent={{-140,-20},{-100,20}})));
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput TEntWSE(
+ final unit="K",
+ displayUnit="degC",
+ final quantity="ThermodynamicTemperature")
+ "Chilled water return temperature upstream of the economizer"
+ annotation (Placement(transformation(extent={{-200,0},{-160,40}}),
+ iconTransformation(extent={{-140,-60},{-100,-20}})));
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput TEntHex(
+ final unit="K",
+ displayUnit="degC",
+ final quantity="ThermodynamicTemperature")
+ "Chilled water temperature entering heat exchanger"
+ annotation (Placement(transformation(extent={{-200,-60},{-160,-20}}),
+ iconTransformation(extent={{-140,-100},{-100,-60}})));
+ Buildings.Controls.OBC.CDL.Interfaces.RealOutput yConWatIsoVal(
+ final min=0,
+ final max=1,
+ final unit="1") "Economizer condensing water isolation valve position"
+ annotation (Placement(transformation(extent={{160,90},{200,130}}),
+ iconTransformation(extent={{100,40},{140,80}})));
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanOutput yPumOn
+ "Heat exchanger pump command on"
+ annotation (Placement(transformation(extent={{160,50},{200,90}}),
+ iconTransformation(extent={{100,-20},{140,20}})));
+ Buildings.Controls.OBC.CDL.Interfaces.RealOutput yPumSpe(
+ final min=0,
+ final max=1,
+ final unit="1") "Heat exchanger pump speed setpoint"
+ annotation (Placement(transformation(extent={{160,10},{200,50}}),
+ iconTransformation(extent={{100,-80},{140,-40}})));
+
+ Buildings.Controls.OBC.CDL.Conversions.BooleanToReal booToRea
+ annotation (Placement(transformation(extent={{40,100},{60,120}})));
+ Buildings.Controls.OBC.CDL.Continuous.Subtract sub "Temperature difference"
+ annotation (Placement(transformation(extent={{-140,-20},{-120,0}})));
+ Buildings.Controls.OBC.CDL.Continuous.GreaterThreshold greThr(
+ final t=1.11,
+ final h=0.44)
+ "Check if the temperature difference is greater than 2 degF (1.11 degK)"
+ annotation (Placement(transformation(extent={{-100,-20},{-80,0}})));
+ Buildings.Controls.OBC.CDL.Continuous.GreaterThreshold greThr1(
+ final t=0.56,
+ final h=0.45)
+ "Check if the temperature difference is greater than 1 degF (0.56 degK)"
+ annotation (Placement(transformation(extent={{-100,-100},{-80,-80}})));
+ Buildings.Controls.OBC.CDL.Integers.Switch resSpeReq1 "Pump speed reset request"
+ annotation (Placement(transformation(extent={{-40,-100},{-20,-80}})));
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant two(
+ final k=2) "Constant two"
+ annotation (Placement(transformation(extent={{-100,20},{-80,40}})));
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant one(
+ final k=1) "Constant one"
+ annotation (Placement(transformation(extent={{-100,-60},{-80,-40}})));
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant zer(
+ final k=0) "Constant zero"
+ annotation (Placement(transformation(extent={{-100,-140},{-80,-120}})));
+ Buildings.Controls.OBC.CDL.Integers.Switch resSpeReq
+ "Pump speed reset request"
+ annotation (Placement(transformation(extent={{20,-20},{40,0}})));
+ Buildings.Controls.OBC.ASHRAE.G36.Generic.TrimAndRespond resSpe(
+ final iniSet=desSpe,
+ final minSet=minSpe,
+ final maxSet=desSpe,
+ final delTim=900,
+ final samplePeriod=120,
+ final numIgnReq=0,
+ final triAmo=0.02,
+ final resAmo=-0.03,
+ final maxRes=-0.06)
+ "Reset pump speed"
+ annotation (Placement(transformation(extent={{60,-20},{80,0}})));
+ Buildings.Controls.OBC.CDL.Continuous.Multiply mul "Pump Speed"
+ annotation (Placement(transformation(extent={{120,20},{140,40}})));
+ Buildings.Controls.OBC.CDL.Logical.And and1
+ "Waterside economizer commanded on"
+ annotation (Placement(transformation(extent={{-100,100},{-80,120}})));
+equation
+ connect(booToRea.y, yConWatIsoVal)
+ annotation (Line(points={{62,110},{180,110}}, color={0,0,127}));
+ connect(TEntWSE, sub.u1) annotation (Line(points={{-180,20},{-150,20},{-150,-4},
+ {-142,-4}}, color={0,0,127}));
+ connect(TEntHex, sub.u2) annotation (Line(points={{-180,-40},{-150,-40},{-150,
+ -16},{-142,-16}}, color={0,0,127}));
+ connect(sub.y, greThr.u)
+ annotation (Line(points={{-118,-10},{-102,-10}}, color={0,0,127}));
+ connect(sub.y, greThr1.u) annotation (Line(points={{-118,-10},{-110,-10},{-110,
+ -90},{-102,-90}}, color={0,0,127}));
+ connect(greThr1.y, resSpeReq1.u2)
+ annotation (Line(points={{-78,-90},{-42,-90}}, color={255,0,255}));
+ connect(zer.y, resSpeReq1.u3) annotation (Line(points={{-78,-130},{-60,-130},{
+ -60,-98},{-42,-98}}, color={255,127,0}));
+ connect(greThr.y, resSpeReq.u2)
+ annotation (Line(points={{-78,-10},{18,-10}},color={255,0,255}));
+ connect(two.y, resSpeReq.u1) annotation (Line(points={{-78,30},{0,30},{0,-2},{
+ 18,-2}}, color={255,127,0}));
+ connect(resSpeReq1.y, resSpeReq.u3) annotation (Line(points={{-18,-90},{0,-90},
+ {0,-18},{18,-18}}, color={255,127,0}));
+ connect(one.y, resSpeReq1.u1) annotation (Line(points={{-78,-50},{-60,-50},{-60,
+ -82},{-42,-82}}, color={255,127,0}));
+ connect(resSpeReq.y,resSpe. numOfReq) annotation (Line(points={{42,-10},{50,-10},
+ {50,-18},{58,-18}}, color={255,127,0}));
+ connect(uPum,resSpe. uDevSta) annotation (Line(points={{-180,60},{50,60},{50,-2},
+ {58,-2}}, color={255,0,255}));
+ connect(resSpe.y, mul.u2) annotation (Line(points={{82,-10},{100,-10},{100,24},
+ {118,24}},color={0,0,127}));
+ connect(booToRea.y, mul.u1) annotation (Line(points={{62,110},{100,110},{100,36},
+ {118,36}}, color={0,0,127}));
+ connect(mul.y, yPumSpe)
+ annotation (Line(points={{142,30},{180,30}}, color={0,0,127}));
+ connect(uWSE, and1.u1)
+ annotation (Line(points={{-180,110},{-102,110}}, color={255,0,255}));
+ connect(and1.y, booToRea.u)
+ annotation (Line(points={{-78,110},{38,110}}, color={255,0,255}));
+ connect(and1.y, yPumOn) annotation (Line(points={{-78,110},{20,110},{20,70},{180,
+ 70}}, color={255,0,255}));
+ connect(uPla, and1.u2) annotation (Line(points={{-180,140},{-120,140},{-120,102},
+ {-102,102}}, color={255,0,255}));
+annotation (defaultComponentName = "wsePum",
+ Icon(coordinateSystem(preserveAspectRatio=false, extent={{-100,-100},{100,100}}),
+ graphics={
+ Rectangle(
+ extent={{-100,-100},{100,100}},
+ lineColor={0,0,127},
+ fillColor={255,255,255},
+ fillPattern=FillPattern.Solid),
+ Text(
+ extent={{-100,140},{100,100}},
+ textColor={0,0,255},
+ textString="%name")}),
+ Diagram(coordinateSystem(preserveAspectRatio=false, extent={{-160,-160},{160,160}})),
+ Documentation(info="
+
+Waterside economizer valves control when the chilled water flow through the economizer
+is controlled by variable speed heat exchanger pump. It is implemented
+according to ASHRAE RP-1711, March 2020, section 5.2.3.7-10.
+
+
+When economizer is enabled (uWSE=true
), start next condenser water
+pump and (or) adjust the pump speed
+(see
+Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Pumps.CondenserWater.Controller),
+open the condenser water isolation valve to the heat exchanger (yConWatIsoVal=1
),
+and enable the chilled water heat exchanger pump.
+
+
+The economizer heat exchanger pump speed reset requests shall be generated based
+on the difference between chilled water return temperature upstream of the economizer
+and economizer heat exchanger entering chilled water temperature.
+
+
+-
+If the temperature difference exceeeds 2 °F (1.11 °K), send 2 requests
+unit the difference is less than 1.2 °F (0.67 °F).
+
+-
+Else if the temperature difference exceeds 1 °F (0.56 °K), send 1 request
+until the difference is less than 0.2 °F (0.11 °K).
+
+-
+Else send 0 requests.
+
+
+
+When the heat exchanger pump is proven on, the pump speed shall be reset using
+Trim and Respond logic with the following parameters:
+
+
+
+ Variable | Value | Definition |
+Device | Economizer heat exchanger pump proven on | Associated device |
+SP0 | Pump design speed (desSpe ) | Initial setpoint |
+SPmin | Pump minimum speed (minSpe ) | Minimum setpoint |
+SPmax | Pump design speed (desSpe ) | Maximum setpoint |
+Td | 15 minutes | Delay timer |
+T | 2 minutes | Time step |
+I | 0 | Number of ignored requests |
+R | Pump speed reset requests | Number of requests |
+SPtrim | 2% | Trim amount |
+SPres | -3% | Respond amount |
+SPres_max | -6% | Maximum response per time interval |
+
+
+
+
+When economizer is disabled (uWSE=false
), the chilled water heat
+exchanger pump shall be disabled, the heat exchanger condenser water isolation
+valve fully closed (yConWatIsoVal=0
), and the last lag condenser water pump disabled
+and (or) change the pump speed
+see
+Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Pumps.CondenserWater.Controller).
+
+",
+revisions="
+
+-
+July 14, 2022, by Jianjun Hu:
+First implementation.
+
+
+"));
+end HeatExchangerPump;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Economizers/Subsequences/PredictedOutletTemperature.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Economizers/Subsequences/PredictedOutletTemperature.mo
new file mode 100644
index 00000000000..cfbc1f3728f
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Economizers/Subsequences/PredictedOutletTemperature.mo
@@ -0,0 +1,191 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Economizers.Subsequences;
+block PredictedOutletTemperature
+ "Waterside economizer predicted outlet temperature"
+
+ parameter Real heaExcAppDes(
+ final unit="K",
+ final quantity="TemperatureDifference")=2
+ "Design heat exchanger approach";
+
+ parameter Real cooTowAppDes(
+ final unit="K",
+ final quantity="TemperatureDifference")=2
+ "Design cooling tower approach";
+
+ parameter Real TOutWetDes(
+ final unit="K",
+ final quantity="ThermodynamicTemperature",
+ displayUnit="degC")=288.15
+ "Design outdoor air wet bulb temperature";
+
+ parameter Real VHeaExcDes_flow(
+ final unit="m3/s",
+ final quantity="VolumeFlowRate",
+ displayUnit="m3/s")=0.01
+ "Desing heat exchanger chilled water flow rate";
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput uTunPar(
+ final min=-0.2,
+ final max=0.5) "Tuning parameter"
+ annotation (Placement(transformation(extent={{-200,-160},{-160,-120}}),
+ iconTransformation(extent={{-140,-100},{-100,-60}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput TOutWet(
+ final unit="K",
+ displayUnit="degC",
+ final quantity="ThermodynamicTemperature") "Outdoor air wet bulb temperature"
+ annotation (Placement(transformation(extent={{-200,120},{-160,160}}),
+ iconTransformation(extent={{-140,60},{-100,100}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput VChiWat_flow(
+ final quantity="VolumeFlowRate",
+ final unit="m3/s")
+ "Measured (secondary for primary-secondary plants) chilled water flow rate"
+ annotation (Placement(transformation(extent={{-200,-20},{-160,20}}),
+ iconTransformation(extent={{-140,-20},{-100,20}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealOutput y(
+ final quantity="ThermodynamicTemperature",
+ final unit="K")
+ "Predicted waterside economizer outlet temperature"
+ annotation (Placement(transformation(extent={{160,-20},{200,20}}),
+ iconTransformation(extent={{100,-20},{140,20}})));
+
+protected
+ Buildings.Controls.OBC.CDL.Continuous.Divide heaExcPlr
+ "Heat exchanger flow part load ratio"
+ annotation (Placement(transformation(extent={{-90,60},{-70,80}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant heaExcDes_flow(
+ final k= VHeaExcDes_flow) "Heat exchanger design flow"
+ annotation (Placement(transformation(extent={{-130,40},{-110,60}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant heaAppDes(
+ final k=heaExcAppDes)
+ "Heat exchanger design approach"
+ annotation (Placement(transformation(extent={{-60,20},{-40,40}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Multiply pro "Product"
+ annotation (Placement(transformation(extent={{-20,44},{0,64}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Subtract sub1 "Subtraction"
+ annotation (Placement(transformation(extent={{-60,-60},{-40,-40}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant TWetDes(
+ final k=TOutWetDes)
+ "Design outdoor air wet bulb temperature"
+ annotation (Placement(transformation(extent={{-120,-40},{-100,-20}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Multiply pro1 "Product"
+ annotation (Placement(transformation(extent={{-20,-60},{0,-40}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant towAppDes(
+ final k=cooTowAppDes)
+ "Cooling tower design approach"
+ annotation (Placement(transformation(extent={{20,-100},{40,-80}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.MultiSum mulSum(
+ final nin=4)
+ "Sum of multiple inputs"
+ annotation (Placement(transformation(extent={{80,-10},{100,10}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Limiter lim(
+ final uMax=1,
+ final uMin=0) "Limiter"
+ annotation (Placement(transformation(extent={{-60,60},{-40,80}})));
+
+equation
+ connect(heaExcPlr.u2, heaExcDes_flow.y) annotation (Line(points={{-92,64},{
+ -100,64},{-100,50},{-108,50}}, color={0,0,127}));
+ connect(VChiWat_flow, heaExcPlr.u1) annotation (Line(points={{-180,0},{-140,0},
+ {-140,76},{-92,76}}, color={0,0,127}));
+ connect(heaAppDes.y, pro.u2) annotation (Line(points={{-38,30},{-30,30},{-30,
+ 48},{-22,48}}, color={0,0,127}));
+ connect(sub1.y, pro1.u1) annotation (Line(points={{-38,-50},{-30,-50},{-30,
+ -44},{-22,-44}}, color={0,0,127}));
+ connect(uTunPar, pro1.u2) annotation (Line(points={{-180,-140},{-30,-140},{-30,
+ -56},{-22,-56}}, color={0,0,127}));
+ connect(TOutWet, mulSum.u[1]) annotation (Line(points={{-180,140},{60,140},{60,
+ -0.75},{78,-0.75}},
+ color={0,0,127}));
+ connect(pro.y, mulSum.u[2]) annotation (Line(points={{2,54},{20,54},{20,-0.25},
+ {78,-0.25}},color={0,0,127}));
+ connect(pro1.y, mulSum.u[3]) annotation (Line(points={{2,-50},{20,-50},{20,0.25},
+ {78,0.25}}, color={0,0,127}));
+ connect(towAppDes.y, mulSum.u[4]) annotation (Line(points={{42,-90},{60,-90},{
+ 60,-2},{78,-2},{78,0.75}}, color={0,0,127}));
+ connect(mulSum.y, y)
+ annotation (Line(points={{102,0},{180,0}}, color={0,0,127}));
+ connect(heaExcPlr.y, lim.u)
+ annotation (Line(points={{-68,70},{-62,70}}, color={0,0,127}));
+ connect(pro.u1, lim.y)
+ annotation (Line(points={{-22,60},{-30,60},{-30,70},{-38,70}},
+ color={0,0,127}));
+ connect(TOutWet, sub1.u2) annotation (Line(points={{-180,140},{-150,140},{-150,
+ -56},{-62,-56}}, color={0,0,127}));
+ connect(TWetDes.y, sub1.u1) annotation (Line(points={{-98,-30},{-80,-30},{-80,
+ -44},{-62,-44}}, color={0,0,127}));
+ annotation (defaultComponentName = "wseTOut",
+ Icon(graphics={
+ Rectangle(
+ extent={{-100,-100},{100,100}},
+ lineColor={0,0,127},
+ fillColor={255,255,255},
+ fillPattern=FillPattern.Solid),
+ Text(
+ extent={{-120,146},{100,108}},
+ textColor={0,0,255},
+ textString="%name")}), Diagram(
+ coordinateSystem(preserveAspectRatio=false,
+ extent={{-160,-180},{160,180}})),
+Documentation(info="
+
+The waterside economizer (WSE) is enabled or disabled based on the predicted WSE
+heat exchanger (HX) leaving water temperature, y
.
+This block predicts y
based on current plant load
+and ambient wet bulb temperature with resepect to the design conditions, as described in
+ASHRAE RP-1711, March 2020, section 5.2.3.1.
+
+
+The block calculates the predicted WSE output temperature y
as a sum of these
+three components:
+
+
+-
+Current outoor air wet bulb temperature
TOutWet
.
+
+-
+Predicted heat exchanger approach at current part load flow, which equals
+the product of the design heat exchanger approach
heaExcAppDes
and the
+lesser of 1 and predicted heat exchanger part load ratio (PLRHX). PRLHX is a ratio
+of the current chilled water flow rate for primary-only plants or the current secondary chilled water
+flow rate for primary-secondary plants, VChiWat_flow
,
+divided by design HX chilled water flow rate VHeaExcDes_flow
.
+
+-
+Predicted cooling tower approach, which is a sum of the:
+
+
+
+",
+revisions="
+
+-
+October 13, 2018, by Milica Grahovac:
+First implementation.
+
+
+"));
+end PredictedOutletTemperature;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Economizers/Subsequences/Tuning.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Economizers/Subsequences/Tuning.mo
new file mode 100644
index 00000000000..19fc45c8180
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Economizers/Subsequences/Tuning.mo
@@ -0,0 +1,321 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Economizers.Subsequences;
+block Tuning
+ "Defines a tuning parameter for the temperature prediction downstream of WSE"
+
+ parameter Real step(
+ final unit="1")=0.02
+ "Incremental step used to reduce or increase the water-side economizer tuning parameter";
+
+ parameter Real wseOnTimDec(
+ final unit="s",
+ final quantity="Time",
+ displayUnit="h")=3600
+ "Economizer enable time needed to allow decrease of the tuning parameter";
+
+ parameter Real wseOnTimInc(
+ final unit="s",
+ final quantity="Time",
+ displayUnit="h")=1800
+ "Economizer enable time needed to allow increase of the tuning parameter";
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uWseSta "WSE enable disable status"
+ annotation (Placement(transformation(extent={{-360,100},{-320,140}}),
+ iconTransformation(extent={{-140,30},{-100,70}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput uTowFanSpeMax(
+ final unit="1")
+ "Maximum cooling tower fan speed signal"
+ annotation (Placement(transformation(
+ extent={{-360,-100},{-320,-60}}), iconTransformation(extent={{-140,-70},
+ {-100,-30}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealOutput y(
+ final max=maxTunPar,
+ final min=minTunPar,
+ final start=initTunPar)
+ "Tuning parameter for the waterside economizer outlet temperature prediction"
+ annotation (Placement(transformation(extent={{320,-10},{340,10}}),
+ iconTransformation(extent={{100,-10},{120,10}})));
+
+protected
+ final parameter Integer larInt=65535 "Large integer used to reset counters";
+
+ final parameter Real antWinGai=1 "Anti-windup gain";
+
+ final parameter Real initTunPar = 0
+ "Initial value of the tuning parameter";
+
+ final parameter Real minTunPar(
+ final unit="1") = -0.2
+ "Tuning parameter minimum limit";
+
+ final parameter Real maxTunPar(
+ final unit="1") = 0.5
+ "Tuning parameter maximum limit";
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant resVal(
+ final k=0) "Reset value"
+ annotation (Placement(transformation(extent={{120,0},{140,20}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.MultiSum mulSum(
+ final k={-1*step,step,1}, nin=3) "Multiple input sum"
+ annotation (Placement(transformation(extent={{120,60},{140,80}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Subtract sub1 "Anti-windup adder"
+ annotation (Placement(transformation(extent={{200,20},{220,40}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Timer tim(final t=wseOnTimDec) "Timer"
+ annotation (Placement(transformation(extent={{-260,140},{-240,160}})));
+
+ Buildings.Controls.OBC.CDL.Logical.FallingEdge falEdg "Falling edge"
+ annotation (Placement(transformation(extent={{-220,90},{-200,110}})));
+
+ Buildings.Controls.OBC.CDL.Logical.And and2 "And"
+ annotation (Placement(transformation(extent={{-140,140},{-120,160}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Timer tim1 "Timer"
+ annotation (Placement(transformation(extent={{-260,40},{-240,60}})));
+
+ Buildings.Controls.OBC.CDL.Logical.FallingEdge falEdg1 "Falling edge"
+ annotation (Placement(transformation(extent={{-220,-10},{-200,10}})));
+
+ Buildings.Controls.OBC.CDL.Logical.And3 and1 "And"
+ annotation (Placement(transformation(extent={{-140,0},{-120,20}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.LessThreshold lesThr(
+ final t=wseOnTimInc) "Less than"
+ annotation (Placement(transformation(extent={{-220,40},{-200,60}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Pre truHol1
+ "Logical pre to capture true signal just before the WSE gets disabled"
+ annotation (Placement(transformation(extent={{-180,40},{-160,60}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Hysteresis hys(
+ final uHigh=0.99,
+ final uLow=0.98) "Checks if the signal is at its maximum"
+ annotation (Placement(transformation(extent={{-280,-90},{-260,-70}})));
+
+ Buildings.Controls.OBC.CDL.Discrete.TriggeredSampler triSam2(
+ final y_start=0) "Sampler"
+ annotation (Placement(transformation(extent={{-60,-90},{-40,-70}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.GreaterThreshold greThr(
+ final t=0.5) "Greater or equal than"
+ annotation (Placement(transformation(extent={{-20,-90},{0,-70}})));
+
+ Buildings.Controls.OBC.CDL.Conversions.BooleanToReal booToRea "Conversion"
+ annotation (Placement(transformation(extent={{-100,-90},{-80,-70}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Not not1 "Not"
+ annotation (Placement(transformation(extent={{-260,-30},{-240,-10}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Not not2 "Not"
+ annotation (Placement(transformation(extent={{-240,-150},{-220,-130}})));
+
+ Buildings.Controls.OBC.CDL.Logical.And and5 "And"
+ annotation (Placement(transformation(extent={{-200,-160},{-180,-140}})));
+
+ Buildings.Controls.OBC.CDL.Logical.And and6 "And"
+ annotation (Placement(transformation(extent={{-200,-120},{-180,-100}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Or and4 "And"
+ annotation (Placement(transformation(extent={{-80,-120},{-60,-100}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Latch lat "Latch"
+ annotation (Placement(transformation(extent={{-160,-140},{-140,-120}})));
+
+ Buildings.Controls.OBC.CDL.Integers.OnCounter disCou
+ "Counts the number of times the WSE got disabled"
+ annotation (Placement(transformation(extent={{-100,140},{-80,160}})));
+
+ Buildings.Controls.OBC.CDL.Integers.OnCounter disCou1
+ "Counts the number of times the WSE got disabled"
+ annotation (Placement(transformation(extent={{-100,0},{-80,20}})));
+
+ Buildings.Controls.OBC.CDL.Conversions.IntegerToReal intToRea
+ "Type converter"
+ annotation (Placement(transformation(extent={{60,140},{80,160}})));
+
+ Buildings.Controls.OBC.CDL.Conversions.IntegerToReal intToRea1
+ "Type converter"
+ annotation (Placement(transformation(extent={{60,0},{80,20}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Max maxInt
+ "Greater or equal a threshold"
+ annotation (Placement(transformation(extent={{-40,70},{-20,90}})));
+
+ Buildings.Controls.OBC.CDL.Integers.GreaterEqualThreshold intGreEquThr1(
+ final t=larInt) "Greater or equal a threshold"
+ annotation (Placement(transformation(extent={{-10,70},{10,90}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Pre truHol
+ "Holds true signal for a short period of time to catch the falling edge"
+ annotation (Placement(transformation(extent={{-180,140},{-160,160}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Limiter lim(
+ final uMax=maxTunPar,
+ final uMin=minTunPar) "Limiter"
+ annotation (Placement(transformation(extent={{160,60},{180,80}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.IntegratorWithReset intWitRes(
+ final k=antWinGai)
+ "Integrator with reset"
+ annotation (Placement(transformation(extent={{240,0},{260,20}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Pre preRes
+ "Breaks algebraic loop for the counter and integrator reset"
+ annotation (Placement(transformation(extent={{20,70},{40,90}})));
+
+equation
+ connect(uWseSta, tim.u)
+ annotation (Line(points={{-340,120},{-280,120},{-280,150},{-262,150}},
+ color={255,0,255}));
+ connect(uWseSta, tim1.u) annotation (Line(points={{-340,120},{-280,120},{-280,
+ 50},{-262,50}},color={255,0,255}));
+ connect(lesThr.y, truHol1.u)
+ annotation (Line(points={{-198,50},{-182,50}}, color={255,0,255}));
+ connect(and1.u1, truHol1.y) annotation (Line(points={{-142,18},{-150,18},{-150,
+ 50},{-158,50}}, color={255,0,255}));
+ connect(uTowFanSpeMax, hys.u)
+ annotation (Line(points={{-340,-80},{-282,-80}}, color={0,0,127}));
+ connect(triSam2.y, greThr.u)
+ annotation (Line(points={{-38,-80},{-22,-80}}, color={0,0,127}));
+ connect(booToRea.y, triSam2.u) annotation (Line(points={{-78,-80},{-62,-80}},
+ color={0,0,127}));
+ connect(uWseSta, falEdg.u) annotation (Line(points={{-340,120},{-280,120},{-280,
+ 100},{-222,100}}, color={255,0,255}));
+ connect(falEdg.y, and2.u2) annotation (Line(points={{-198,100},{-150,100},{-150,
+ 142},{-142,142}},color={255,0,255}));
+ connect(uWseSta, falEdg1.u) annotation (Line(points={{-340,120},{-280,120},{-280,
+ 0},{-222,0}}, color={255,0,255}));
+ connect(and1.u2, falEdg1.y) annotation (Line(points={{-142,10},{-160,10},{-160,
+ 0},{-198,0}}, color={255,0,255}));
+ connect(hys.y, booToRea.u)
+ annotation (Line(points={{-258,-80},{-102,-80}},color={255,0,255}));
+ connect(and4.y, triSam2.trigger) annotation (Line(points={{-58,-110},{-50,-110},
+ {-50,-92}}, color={255,0,255}));
+ connect(uWseSta, not1.u) annotation (Line(points={{-340,120},{-280,120},{-280,
+ -20},{-262,-20}},color={255,0,255}));
+ connect(hys.y, and6.u1) annotation (Line(points={{-258,-80},{-244,-80},{-244,-110},
+ {-202,-110}}, color={255,0,255}));
+ connect(not1.y, and6.u2) annotation (Line(points={{-238,-20},{-210,-20},{-210,
+ -118},{-202,-118}},color={255,0,255}));
+ connect(and4.u1, and6.y) annotation (Line(points={{-82,-110},{-178,-110}},
+ color={255,0,255}));
+ connect(uWseSta, and5.u2) annotation (Line(points={{-340,120},{-300,120},{-300,
+ -158},{-202,-158}}, color={255,0,255}));
+ connect(hys.y, not2.u) annotation (Line(points={{-258,-80},{-252,-80},{-252,-140},
+ {-242,-140}}, color={255,0,255}));
+ connect(and5.u1, not2.y)
+ annotation (Line(points={{-202,-150},{-210,-150},{-210,-140},{-218,-140}},
+ color={255,0,255}));
+ connect(and5.y, lat.u) annotation (Line(points={{-178,-150},{-172,-150},{-172,
+ -130},{-162,-130}}, color={255,0,255}));
+ connect(lat.y, and4.u2) annotation (Line(points={{-138,-130},{-90,-130},{-90,-118},
+ {-82,-118}}, color={255,0,255}));
+ connect(greThr.y, and1.u3) annotation (Line(points={{2,-80},{10,-80},{10,-50},
+ {-150,-50},{-150,2},{-142,2}},color={255,0,255}));
+ connect(not1.y, lat.clr) annotation (Line(points={{-238,-20},{-168,-20},{-168,
+ -136},{-162,-136}}, color={255,0,255}));
+ connect(tim1.y, lesThr.u)
+ annotation (Line(points={{-238,50},{-222,50}}, color={0,0,127}));
+ connect(and1.y, disCou1.trigger)
+ annotation (Line(points={{-118,10},{-102,10}}, color={255,0,255}));
+ connect(intToRea.u, disCou.y)
+ annotation (Line(points={{58,150},{-78,150}},color={255,127,0}));
+ connect(and2.y, disCou.trigger)
+ annotation (Line(points={{-118,150},{-102,150}}, color={255,0,255}));
+ connect(y, y) annotation (Line(points={{330,0},{330,0}}, color={0,0,127}));
+ connect(disCou1.y, intToRea1.u)
+ annotation (Line(points={{-78,10},{58,10}}, color={255,127,0}));
+ connect(truHol.y, and2.u1)
+ annotation (Line(points={{-158,150},{-142,150}}, color={255,0,255}));
+ connect(lim.y, y)
+ annotation (Line(points={{182,70},{300,70},{300,0},{330,0}}, color={0,0,127}));
+ connect(mulSum.y, lim.u)
+ annotation (Line(points={{142,70},{158,70}}, color={0,0,127}));
+ connect(lim.y, sub1.u1) annotation (Line(points={{182,70},{190,70},{190,36},{198,
+ 36}}, color={0,0,127}));
+ connect(mulSum.y, sub1.u2) annotation (Line(points={{142,70},{152,70},{152,24},
+ {198,24}}, color={0,0,127}));
+ connect(sub1.y, intWitRes.u) annotation (Line(points={{222,30},{230,30},{230,10},
+ {238,10}}, color={0,0,127}));
+ connect(maxInt.y, intGreEquThr1.u)
+ annotation (Line(points={{-18,80},{-12,80}},color={255,127,0}));
+ connect(disCou.y, maxInt.u1) annotation (Line(points={{-78,150},{-60,150},{-60,
+ 86},{-42,86}}, color={255,127,0}));
+ connect(disCou1.y, maxInt.u2) annotation (Line(points={{-78,10},{-60,10},{-60,
+ 74},{-42,74}}, color={255,127,0}));
+ connect(intToRea.y, mulSum.u[1]) annotation (Line(points={{82,150},{100,150},
+ {100,69.3333},{118,69.3333}},color={0,0,127}));
+ connect(intToRea1.y, mulSum.u[2]) annotation (Line(points={{82,10},{100,10},{100,
+ 70},{118,70}}, color={0,0,127}));
+ connect(intWitRes.y, mulSum.u[3]) annotation (Line(points={{262,10},{280,10},
+ {280,-40},{100,-40},{100,70.6667},{118,70.6667}},color={0,0,127}));
+ connect(intGreEquThr1.y, preRes.u)
+ annotation (Line(points={{12,80},{18,80}}, color={255,0,255}));
+ connect(preRes.y, disCou.reset) annotation (Line(points={{42,80},{50,80},{50,
+ 120},{-90,120},{-90,138}}, color={255,0,255}));
+ connect(preRes.y, disCou1.reset) annotation (Line(points={{42,80},{50,80},{50,
+ -10},{-90,-10},{-90,-2}}, color={255,0,255}));
+ connect(preRes.y, intWitRes.trigger) annotation (Line(points={{42,80},{50,80},
+ {50,-10},{250,-10},{250,-2}}, color={255,0,255}));
+ connect(resVal.y, intWitRes.y_reset_in) annotation (Line(points={{142,10},{182,
+ 10},{182,2},{238,2}}, color={0,0,127}));
+ connect(tim.passed, truHol.u) annotation (Line(points={{-238,142},{-200,142},
+ {-200,150},{-182,150}}, color={255,0,255}));
+ annotation (defaultComponentName = "wseTun",
+ Icon(graphics={
+ Rectangle(
+ extent={{-100,-100},{100,100}},
+ lineColor={0,0,127},
+ fillColor={255,255,255},
+ fillPattern=FillPattern.Solid),
+ Text(
+ extent={{-120,146},{100,108}},
+ textColor={0,0,255},
+ textString="%name")}),
+ Diagram(coordinateSystem(preserveAspectRatio=false,
+ extent={{-320,-200},{320,200}})),
+Documentation(info="
+
+Waterside economizer outlet temperature prediction tuning parameter subsequence
+per ASHRAE RP-1711, March 2020, section 5.2.3.3.
+
+
+The subsequence calculates the tuning parameter y
as follows:
+
+
+-
+Decrease
y
in step
when the WSE is disabled if the WSE remained enabled for greater than wseOnTimDec
time period.
+
+-
+Increase
y
in step
when the WSE is disabled if the WSE
+remained enabled for less than wseOnTimInc
time period and
+the cooling tower fan speed signal uTowFanSpeMax
did not decrease
+below 100% speed while the WSE was enabled.
+
+
+
+y
initializes at 0 upon first plant start up,
+it holds its value when the plant is disabled and tuning resumes from that value when the plant is re-enabled.
+It is limited between -0.2 and 0.5.
+
+
+In order to avoid large integer values above larInt
, the counters
+get reset to 0 each time any of them reaches that value.
+
+",
+revisions="
+
+-
+September 12, 2019, by Milica Grahovac:
+Revised for performance.
+
+-
+October 13, 2018, by Milica Grahovac:
+First implementation.
+
+
+"));
+end Tuning;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Economizers/Subsequences/Validation/BypassValve.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Economizers/Subsequences/Validation/BypassValve.mo
new file mode 100644
index 00000000000..4cea9e28cdd
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Economizers/Subsequences/Validation/BypassValve.mo
@@ -0,0 +1,62 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Economizers.Subsequences.Validation;
+model BypassValve "Validate the control of inline valve"
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Economizers.Subsequences.BypassValve wseVal(
+ final Ti=10)
+ "Chilled water return line in-line valve control"
+ annotation (Placement(transformation(extent={{20,-10},{40,10}})));
+ Buildings.Controls.OBC.CDL.Logical.Sources.Pulse ecoSta(
+ final width=0.8,
+ final period=3600) "Water side economizer enable/disable status"
+ annotation (Placement(transformation(extent={{-60,-10},{-40,10}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Pulse dpWSE(
+ final amplitude=3000,
+ final period=3600,
+ final offset=4500)
+ "Static pressure difference across chilled water side economizer"
+ annotation (Placement(transformation(extent={{-60,-50},{-40,-30}})));
+ Buildings.Controls.OBC.CDL.Logical.Not not2
+ "Plant enable"
+ annotation (Placement(transformation(extent={{-40,40},{-20,60}})));
+ Buildings.Controls.OBC.CDL.Logical.Sources.Pulse enaPla(
+ final width=0.2, final period=3600)
+ "Enabled plant"
+ annotation (Placement(transformation(extent={{-80,40},{-60,60}})));
+equation
+ connect(ecoSta.y, wseVal.uWSE) annotation (Line(points={{-38,0},{18,0}},
+ color={255,0,255}));
+ connect(dpWSE.y, wseVal.dpChiWat) annotation (Line(points={{-38,-40},{-20,-40},
+ {-20,-6},{18,-6}}, color={0,0,127}));
+ connect(enaPla.y, not2.u)
+ annotation (Line(points={{-58,50},{-42,50}}, color={255,0,255}));
+ connect(not2.y, wseVal.uPla) annotation (Line(points={{-18,50},{0,50},{0,6},{18,
+ 6}}, color={255,0,255}));
+annotation (
+ experiment(StopTime=3600.0, Tolerance=1e-06),
+ __Dymola_Commands(file="modelica://Buildings/Resources/Scripts/Dymola/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Economizers/Subsequences/Validation/BypassValve.mos"
+ "Simulate and plot"),
+ Documentation(info="
+
+This example validates
+
+Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Economizers.Subsequences.BypassValve.
+
+", revisions="
+
+-
+July 15, 2022, by Jianjun Hu:
+First implementation.
+
+
+"),
+Icon(graphics={
+ Ellipse(lineColor = {75,138,73},
+ fillColor={255,255,255},
+ fillPattern = FillPattern.Solid,
+ extent = {{-100,-100},{100,100}}),
+ Polygon(lineColor = {0,0,255},
+ fillColor = {75,138,73},
+ pattern = LinePattern.None,
+ fillPattern = FillPattern.Solid,
+ points = {{-36,60},{64,0},{-36,-60},{-36,60}})}),Diagram(
+ coordinateSystem(preserveAspectRatio=false)));
+end BypassValve;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Economizers/Subsequences/Validation/HeatExchangerPump.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Economizers/Subsequences/Validation/HeatExchangerPump.mo
new file mode 100644
index 00000000000..e48f4d8e1ca
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Economizers/Subsequences/Validation/HeatExchangerPump.mo
@@ -0,0 +1,76 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Economizers.Subsequences.Validation;
+model HeatExchangerPump "Validate the control of heat exchanger pump"
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Economizers.Subsequences.HeatExchangerPump wsePum
+ "Economizer heat exchanger pump control"
+ annotation (Placement(transformation(extent={{20,-10},{40,10}})));
+ Buildings.Controls.OBC.CDL.Logical.Sources.Pulse ecoSta(
+ final width=0.8,
+ final period=3600) "Water side economizer enable/disable status"
+ annotation (Placement(transformation(extent={{-60,40},{-40,60}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Ramp entWSETem(
+ final height=6,
+ final duration=3600,
+ final offset=285.15)
+ "Economizer upstream chilled water temperature"
+ annotation (Placement(transformation(extent={{-60,-40},{-40,-20}})));
+ Buildings.Controls.OBC.CDL.Logical.Sources.Pulse pumOn(
+ final width=0.8,
+ final period=3600)
+ "Pump proven on"
+ annotation (Placement(transformation(extent={{-60,0},{-40,20}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Ramp entHexTem(
+ final height=8,
+ final duration=3600,
+ final offset=283.15)
+ "Entering heat exchanger return chilled water temperature"
+ annotation (Placement(transformation(extent={{-60,-80},{-40,-60}})));
+ Buildings.Controls.OBC.CDL.Logical.Not not2
+ "Plant enable"
+ annotation (Placement(transformation(extent={{-40,70},{-20,90}})));
+ Buildings.Controls.OBC.CDL.Logical.Sources.Pulse enaPla(
+ final width=0.2, final period=3600)
+ "Enabled plant"
+ annotation (Placement(transformation(extent={{-80,70},{-60,90}})));
+equation
+ connect(ecoSta.y,wsePum. uWSE) annotation (Line(points={{-38,50},{0,50},{0,4},
+ {18,4}}, color={255,0,255}));
+ connect(pumOn.y, wsePum.uPum) annotation (Line(points={{-38,10},{-10,10},{-10,
+ 0},{18,0}}, color={255,0,255}));
+ connect(entWSETem.y, wsePum.TEntWSE) annotation (Line(points={{-38,-30},{-10,-30},
+ {-10,-4},{18,-4}}, color={0,0,127}));
+ connect(entHexTem.y, wsePum.TEntHex) annotation (Line(points={{-38,-70},{0,-70},
+ {0,-8},{18,-8}}, color={0,0,127}));
+ connect(enaPla.y, not2.u)
+ annotation (Line(points={{-58,80},{-42,80}}, color={255,0,255}));
+ connect(not2.y, wsePum.uPla) annotation (Line(points={{-18,80},{8,80},{8,8},{18,
+ 8}}, color={255,0,255}));
+annotation (
+ experiment(StopTime=3600.0, Tolerance=1e-06),
+ __Dymola_Commands(file="modelica://Buildings/Resources/Scripts/Dymola/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Economizers/Subsequences/Validation/HeatExchangerPump.mos"
+ "Simulate and plot"),
+ Documentation(info="
+
+This example validates
+
+Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Economizers.Subsequences.HeatExchangerPump.
+
+", revisions="
+
+-
+July 15, 2022, by Jianjun Hu:
+First implementation.
+
+
+"),
+Icon(graphics={
+ Ellipse(lineColor = {75,138,73},
+ fillColor={255,255,255},
+ fillPattern = FillPattern.Solid,
+ extent = {{-100,-100},{100,100}}),
+ Polygon(lineColor = {0,0,255},
+ fillColor = {75,138,73},
+ pattern = LinePattern.None,
+ fillPattern = FillPattern.Solid,
+ points = {{-36,60},{64,0},{-36,-60},{-36,60}})}),Diagram(
+ coordinateSystem(preserveAspectRatio=false)));
+end HeatExchangerPump;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Economizers/Subsequences/Validation/PredictedOutletTemperature.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Economizers/Subsequences/Validation/PredictedOutletTemperature.mo
new file mode 100644
index 00000000000..eebeee4103b
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Economizers/Subsequences/Validation/PredictedOutletTemperature.mo
@@ -0,0 +1,84 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Economizers.Subsequences.Validation;
+model PredictedOutletTemperature
+ "Validate water side economizer outlet temperature prediction"
+
+ parameter Real aveTWetBul(
+ final unit="K",
+ final quantity="ThermodynamicTemperature",
+ displayUnit="degC")=288.15
+ "Chilled water supply set temperature";
+
+ parameter Real aveVChiWat_flow(
+ final unit="m3/s",
+ final quantity="VolumeFlowRate",
+ displayUnit="m3/s")=0.01
+ "Average measured chilled water return temperature";
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Economizers.Subsequences.PredictedOutletTemperature
+ wseTOut "Waterside economizer outlet temperature prediction"
+ annotation (Placement(transformation(extent={{40,0},{60,20}})));
+
+protected
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Sine TOutWetSig(
+ final amplitude=2,
+ final freqHz=1/600,
+ final offset=aveTWetBul)
+ "Measured outdoor air wet bulb temperature"
+ annotation (Placement(transformation(extent={{-60,40},{-40,60}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Sine chiWatFlow(
+ final freqHz=1/600,
+ final offset=aveVChiWat_flow,
+ final amplitude=0.002) "Chilled water flow"
+ annotation (Placement(transformation(extent={{-60,0},{-40,20}})));
+
+ Buildings.Controls.OBC.CDL.Discrete.Sampler sam1(
+ final samplePeriod=60) "Sampler"
+ annotation (Placement(transformation(extent={{-20,-60},{0,-40}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Ramp ram(
+ final offset=-0.2,
+ final height=0.7,
+ final duration=2100) "Ramp"
+ annotation (Placement(transformation(extent={{-60,-60},{-40,-40}})));
+
+equation
+ connect(ram.y, sam1.u)
+ annotation (Line(points={{-38,-50},{-22,-50}}, color={0,0,127}));
+ connect(sam1.y, wseTOut.uTunPar) annotation (Line(points={{2,-50},{20,-50},{20,
+ 2},{38,2}}, color={0,0,127}));
+ connect(TOutWetSig.y, wseTOut.TOutWet) annotation (Line(points={{-38,50},{20,50},
+ {20,18},{38,18}},color={0,0,127}));
+ connect(chiWatFlow.y, wseTOut.VChiWat_flow)
+ annotation (Line(points={{-38,10},{38,10}}, color={0,0,127}));
+
+annotation (
+ experiment(StopTime=2100.0, Tolerance=1e-06),
+ __Dymola_Commands(file="modelica://Buildings/Resources/Scripts/Dymola/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Economizers/Subsequences/Validation/PredictedOutletTemperature.mos"
+ "Simulate and plot"),
+ Documentation(info="
+
+This example validates
+
+Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Economizers.Subsequences.PredictedOutletTemperature.
+
+", revisions="
+
+-
+October 15, 2018, by Milica Grahovac:
+First implementation.
+
+
+"),
+Icon(graphics={
+ Ellipse(lineColor = {75,138,73},
+ fillColor={255,255,255},
+ fillPattern = FillPattern.Solid,
+ extent = {{-100,-100},{100,100}}),
+ Polygon(lineColor = {0,0,255},
+ fillColor = {75,138,73},
+ pattern = LinePattern.None,
+ fillPattern = FillPattern.Solid,
+ points = {{-36,60},{64,0},{-36,-60},{-36,60}})}),Diagram(
+ coordinateSystem(preserveAspectRatio=false)));
+end PredictedOutletTemperature;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Economizers/Subsequences/Validation/Tuning_uEcoSta_uTowFanSpeMax.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Economizers/Subsequences/Validation/Tuning_uEcoSta_uTowFanSpeMax.mo
new file mode 100644
index 00000000000..d87b08dd458
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Economizers/Subsequences/Validation/Tuning_uEcoSta_uTowFanSpeMax.mo
@@ -0,0 +1,197 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Economizers.Subsequences.Validation;
+model Tuning_uEcoSta_uTowFanSpeMax
+ "Validate water side economizer tuning parameter sequence"
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Economizers.Subsequences.Tuning wseTun
+ "Tests tuning parameter increase due to a dip in tower fan speed"
+ annotation (Placement(transformation(extent={{-40,160},{-20,180}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Economizers.Subsequences.Tuning wseTun1
+ "Tests tuning parameter remains constant inspite of a dip in tower fan speed due to the prolonged WSE on status"
+ annotation (Placement(transformation(extent={{100,160},{120,180}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Economizers.Subsequences.Tuning wseTun2
+ "Tests tuning parameter decrease due to WSE being on for a long time before disable"
+ annotation (Placement(transformation(extent={{-40,60},{-20,80}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Economizers.Subsequences.Tuning wseTun3
+ "Tests tuning parameter remains constant despite of a dip in tower fan speed due to the prolonged WSE on status"
+ annotation (Placement(transformation(extent={{100,40},{120,60}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Economizers.Subsequences.Tuning wseTun4
+ "Tests anti-windup"
+ annotation (Placement(transformation(extent={{100,-100},{120,-80}})));
+
+protected
+ Buildings.Controls.OBC.CDL.Logical.Timer tim
+ "Timer"
+ annotation (Placement(transformation(extent={{-80,-90},{-60,-70}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.GreaterThreshold greThr1(
+ final t=7e4) "Greater than"
+ annotation (Placement(transformation(extent={{-40,-90},{-20,-70}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant con(
+ final k=true) "Constant"
+ annotation (Placement(transformation(extent={{-120,-90},{-100,-70}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Switch logSwi "Logical switch"
+ annotation (Placement(transformation(extent={{60,-90},{80,-70}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Pulse ecoSta(
+ final width=0.5,
+ final period=2*55*60)
+ "Water side economizer enable/disable status"
+ annotation (Placement(transformation(extent={{-120,200},{-100,220}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant maxTowFanSpeSig0(
+ final k=1)
+ "Maximum cooling tower fan speed signal"
+ annotation (Placement(transformation(extent={{-120,140},{-100,160}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant maxTowFanSpeSig2(
+ final k=1)
+ "Maximum cooling tower fan speed signal"
+ annotation (Placement(transformation(extent={{-120,40},{-100,60}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant maxTowFanSig1(
+ final k=1)
+ "Cooling tower fan full load signal"
+ annotation (Placement(transformation(extent={{20,160},{40,180}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Pulse ecoSta1(
+ final width=0.5,
+ final period=2*16*60)
+ "Water side economizer enable/disable status"
+ annotation (Placement(transformation(extent={{20,200},{40,220}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Sine cooTowFanSta1(
+ final amplitude=0.2,
+ final offset=1.1,
+ final freqHz=1/(80*60),
+ final phase=3.1415926535898) "Cooling tower fan speed status signal"
+ annotation (Placement(transformation(extent={{20,118},{40,138}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Min min1 "Minimum"
+ annotation (Placement(transformation(extent={{60,140},{80,160}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Pulse ecoSta2(
+ final width=0.5,
+ final period=2*65*60)
+ "Water side economizer enable/disable status"
+ annotation (Placement(transformation(extent={{-120,100},{-100,120}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Pulse ecoSta3(
+ final width=0.5,
+ final period=2*20*60)
+ "Water side economizer enable/disable status"
+ annotation (Placement(transformation(extent={{20,80},{40,100}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant maxTowFanSpeSig3(
+ final k=1)
+ "Maximum cooling tower fan speed signal"
+ annotation (Placement(transformation(extent={{20,30},{40,50}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Pulse ecoSta4(
+ final width=0.5,
+ final period=2*20*60)
+ "Water side economizer enable/disable status"
+ annotation (Placement(transformation(extent={{20,-120},{40,-100}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant maxTowFanSpeSig1(
+ final k=1)
+ "Maximum cooling tower fan speed signal"
+ annotation (Placement(transformation(extent={{20,-180},{40,-160}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Pulse ecoSta5(
+ final width=0.5,
+ final period=2*65*60)
+ "Water side economizer enable/disable status"
+ annotation (Placement(transformation(extent={{20,-60},{40,-40}})));
+
+equation
+ connect(ecoSta.y,wseTun.uWseSta) annotation (Line(points={{-98,210},{-70,210},
+ {-70,175},{-42,175}}, color={255,0,255}));
+ connect(maxTowFanSig1.y, min1.u1) annotation (Line(points={{42,170},{50,170},{
+ 50,156},{58,156}}, color={0,0,127}));
+ connect(cooTowFanSta1.y, min1.u2) annotation (Line(points={{42,128},{48,128},{
+ 48,144},{58,144}}, color={0,0,127}));
+ connect(min1.y, wseTun1.uTowFanSpeMax) annotation (Line(points={{82,150},{90,150},
+ {90,165},{98,165}}, color={0,0,127}));
+ connect(ecoSta1.y,wseTun1.uWseSta) annotation (Line(points={{42,210},{70,210},
+ {70,175},{98,175}}, color={255,0,255}));
+ connect(ecoSta2.y,wseTun2.uWseSta) annotation (Line(points={{-98,110},{-70,110},
+ {-70,75},{-42,75}}, color={255,0,255}));
+ connect(maxTowFanSpeSig2.y, wseTun2.uTowFanSpeMax) annotation (Line(points={{-98,50},
+ {-70,50},{-70,65},{-42,65}}, color={0,0,127}));
+ connect(maxTowFanSpeSig0.y, wseTun.uTowFanSpeMax) annotation (Line(points={{-98,150},
+ {-70,150},{-70,165},{-42,165}}, color={0,0,127}));
+ connect(ecoSta3.y,wseTun3.uWseSta) annotation (Line(points={{42,90},{70,90},{
+ 70,55},{98,55}}, color={255,0,255}));
+ connect(wseTun3.uTowFanSpeMax, maxTowFanSpeSig3.y) annotation (Line(points={{98,45},
+ {70,45},{70,40},{42,40}}, color={0,0,127}));
+ connect(maxTowFanSpeSig1.y, wseTun4.uTowFanSpeMax) annotation (Line(points={{42,-170},
+ {80,-170},{80,-95},{98,-95}}, color={0,0,127}));
+ connect(con.y, tim.u)
+ annotation (Line(points={{-98,-80},{-82,-80}}, color={255,0,255}));
+ connect(tim.y, greThr1.u)
+ annotation (Line(points={{-58,-80},{-42,-80}}, color={0,0,127}));
+ connect(greThr1.y, logSwi.u2)
+ annotation (Line(points={{-18,-80},{58,-80}}, color={255,0,255}));
+ connect(ecoSta5.y, logSwi.u1) annotation (Line(points={{42,-50},{50,-50},{50,
+ -72},{58,-72}},
+ color={255,0,255}));
+ connect(ecoSta4.y, logSwi.u3) annotation (Line(points={{42,-110},{50,-110},{50,
+ -88},{58,-88}}, color={255,0,255}));
+ connect(logSwi.y, wseTun4.uWseSta) annotation (Line(points={{82,-80},{90,-80},
+ {90,-85},{98,-85}}, color={255,0,255}));
+annotation (
+ experiment(
+ StopTime=150000,
+ Tolerance=1e-06),
+ __Dymola_Commands(file="modelica://Buildings/Resources/Scripts/Dymola/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Economizers/Subsequences/Validation/Tuning_uEcoSta_uTowFanSpeMax.mos"
+ "Simulate and plot"),
+ Documentation(info="
+
+This example validates
+
+Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Economizers.Subsequences.Tuning.
+
+", revisions="
+
+-
+October 15, 2018, by Milica Grahovac:
+First implementation.
+
+
+"),
+Icon(graphics={
+ Ellipse(lineColor = {75,138,73},
+ fillColor={255,255,255},
+ fillPattern = FillPattern.Solid,
+ extent = {{-100,-100},{100,100}}),
+ Polygon(lineColor = {0,0,255},
+ fillColor = {75,138,73},
+ pattern = LinePattern.None,
+ fillPattern = FillPattern.Solid,
+ points = {{-36,60},{64,0},{-36,-60},{-36,60}})}),Diagram(
+ coordinateSystem(preserveAspectRatio=false, extent={{-140,-240},{140,240}}),
+ graphics={
+ Text(
+ extent={{-126,6},{-20,-6}},
+ textColor={0,0,127},
+ textString="Tests tuning parameter decrease
+based on WSE enable duration
+prior to disable"),
+ Text(
+ extent={{-10,14},{154,-18}},
+ textColor={0,0,127},
+ textString="Tests tuning parameter increase
+based on WSE enable duration
+prior to disable and cooling tower
+fan speed during WSE enable."),
+ Text(
+ extent={{-46,-208},{48,-214}},
+ textColor={0,0,127},
+ textString="Tests anti-windup")}));
+end Tuning_uEcoSta_uTowFanSpeMax;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Economizers/Subsequences/Validation/package.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Economizers/Subsequences/Validation/package.mo
new file mode 100644
index 00000000000..a831498af37
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Economizers/Subsequences/Validation/package.mo
@@ -0,0 +1,37 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Economizers.Subsequences;
+package Validation "Collection of validation models"
+
+annotation (preferredView="info", Documentation(info="
+
+This package contains validation models for the classes in
+
+Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Economizers.Subsequences.
+
+
+Note that most validation models contain simple input data
+which may not be realistic, but for which the correct
+output can be obtained through an analytic solution.
+The examples plot various outputs, which have been verified against these
+solutions. These model outputs are stored as reference data and
+used for continuous validation whenever models in the library change.
+
+"),
+ Icon(graphics={
+ Rectangle(
+ lineColor={200,200,200},
+ fillColor={248,248,248},
+ fillPattern=FillPattern.HorizontalCylinder,
+ extent={{-100.0,-100.0},{100.0,100.0}},
+ radius=25.0),
+ Rectangle(
+ lineColor={128,128,128},
+ extent={{-100.0,-100.0},{100.0,100.0}},
+ radius=25.0),
+ Polygon(
+ origin={8.0,14.0},
+ lineColor={78,138,73},
+ fillColor={78,138,73},
+ pattern=LinePattern.None,
+ fillPattern=FillPattern.Solid,
+ points={{-58.0,46.0},{42.0,-14.0},{-58.0,-74.0},{-58.0,46.0}})}));
+end Validation;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Economizers/Subsequences/Validation/package.order b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Economizers/Subsequences/Validation/package.order
new file mode 100644
index 00000000000..9314cb28bf0
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Economizers/Subsequences/Validation/package.order
@@ -0,0 +1,4 @@
+BypassValve
+HeatExchangerPump
+PredictedOutletTemperature
+Tuning_uEcoSta_uTowFanSpeMax
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Economizers/Subsequences/package.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Economizers/Subsequences/package.mo
new file mode 100644
index 00000000000..22f19d76e81
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Economizers/Subsequences/package.mo
@@ -0,0 +1,43 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Economizers;
+package Subsequences "Waterside economizer control subsequences"
+
+annotation (preferredView="info", Documentation(info="
+
+This package contains waterside economizer control subsequences.
+
+"),
+ Icon(graphics={
+ Rectangle(
+ lineColor={200,200,200},
+ fillColor={248,248,248},
+ fillPattern=FillPattern.HorizontalCylinder,
+ extent={{-100.0,-100.0},{100.0,100.0}},
+ radius=25.0),
+ Rectangle(
+ lineColor={128,128,128},
+ extent={{-100.0,-100.0},{100.0,100.0}},
+ radius=25.0),
+ Ellipse(
+ origin={10.0,10.0},
+ lineColor={128,128,128},
+ fillColor={255,255,255},
+ fillPattern=FillPattern.Solid,
+ extent={{-80.0,0.0},{-20.0,60.0}}),
+ Ellipse(
+ origin={10.0,10.0},
+ fillColor={128,128,128},
+ pattern=LinePattern.None,
+ fillPattern=FillPattern.Solid,
+ extent={{0.0,0.0},{60.0,60.0}}),
+ Ellipse(
+ origin={10.0,10.0},
+ pattern=LinePattern.None,
+ fillPattern=FillPattern.Solid,
+ extent={{0.0,-80.0},{60.0,-20.0}}),
+ Ellipse(
+ origin={10.0,10.0},
+ fillColor={76,76,76},
+ pattern=LinePattern.None,
+ fillPattern=FillPattern.Solid,
+ extent={{-80.0,-80.0},{-20.0,-20.0}})}));
+end Subsequences;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Economizers/Subsequences/package.order b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Economizers/Subsequences/package.order
new file mode 100644
index 00000000000..51698baf81d
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Economizers/Subsequences/package.order
@@ -0,0 +1,5 @@
+BypassValve
+HeatExchangerPump
+PredictedOutletTemperature
+Tuning
+Validation
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Economizers/Validation/Controller.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Economizers/Validation/Controller.mo
new file mode 100644
index 00000000000..3e3990ab51c
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Economizers/Validation/Controller.mo
@@ -0,0 +1,315 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Economizers.Validation;
+model Controller
+ "Validates the waterside economizer enable/disable controller"
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Economizers.Controller
+ wseSta(TOutWetDes(displayUnit="degC"))
+ "Waterside economizer enable status sequence"
+ annotation (Placement(transformation(extent={{-190,40},{-170,60}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Economizers.Controller
+ wseSta1 "Waterside economizer enable status sequence"
+ annotation (Placement(transformation(extent={{-80,40},{-60,60}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Economizers.Controller
+ wseSta2 "Waterside economizer enable status sequence"
+ annotation (Placement(transformation(extent={{40,40},{60,60}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Economizers.Controller
+ wseSta3(
+ final have_byPasValCon=false,
+ TOutWetDes(displayUnit="degC"))
+ "Waterside economizer enable status sequence"
+ annotation (Placement(transformation(extent={{240,40},{260,60}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Sine dpWSE(
+ final amplitude=3000,
+ freqHz=1/3600,
+ final offset=4500)
+ "Static pressure difference across chilled water side economizer"
+ annotation (Placement(transformation(extent={{-260,-80},{-240,-60}})));
+
+protected
+ parameter Real TOutWetBul(
+ final unit="K",
+ final quantity="ThermodynamicTemperature",
+ displayUnit="degC")=283.15
+ "Average outdoor air wet bulb temperature";
+
+ parameter Real TChiWatRet(
+ final unit="K",
+ final quantity="ThermodynamicTemperature",
+ displayUnit="degC")=293.15
+ "Chilled water retun temperature upstream of the WSE";
+
+ parameter Real TWseOut(
+ final unit="K",
+ final quantity="ThermodynamicTemperature",
+ displayUnit="degC")=290.15
+ "Chilled water retun temperature downstream of the WSE";
+
+ parameter Real VChiWat_flow(
+ final unit="m3/s",
+ final quantity="VolumeFlowRate",
+ displayUnit="m3/s")=0.01
+ "Measured chilled water return temperature";
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant chiWatFlow(
+ final k=VChiWat_flow)
+ "Chilled water flow"
+ annotation (Placement(transformation(extent={{-260,0},{-240,20}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Pulse TOutWetSig(
+ final amplitude=5,
+ final period=2*15*60,
+ final offset=TOutWetBul) "Measured outdoor air wet bulb temperature"
+ annotation (Placement(transformation(extent={{-260,100},{-240,120}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant constTowFanSig(
+ final k=1)
+ "Cooling tower fan full load signal"
+ annotation (Placement(transformation(extent={{-260,-40},{-240,-20}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant TChiWatRetSig(
+ final k=TChiWatRet)
+ "Chilled water return temperature upstream of WSE"
+ annotation (Placement(transformation(extent={{-260,70},{-240,90}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant TChiWatRetDow(
+ final k=TWseOut)
+ "Chilled water return temperature downstream of WSE"
+ annotation (Placement(transformation(extent={{-260,40},{-240,60}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant chiWatFlow1(
+ final k=VChiWat_flow)
+ "Chilled water flow"
+ annotation (Placement(transformation(extent={{-150,0},{-130,20}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant TOutWetSig1(
+ final k=TOutWetBul)
+ "Measured outdoor air wet bulb temperature"
+ annotation (Placement(transformation(extent={{-150,100},{-130,120}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant constTowFanSig1(
+ final k=1)
+ "Cooling tower fan full load signal"
+ annotation (Placement(transformation(extent={{-150,-40},{-130,-20}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant TChiWatRetSig1(
+ final k=TChiWatRet)
+ "Chilled water return temperature upstream of WSE"
+ annotation (Placement(transformation(extent={{-150,70},{-130,90}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Sine TChiWatRetDow1(
+ final offset=TWseOut,
+ final freqHz=1/1800,
+ final amplitude=4)
+ "Chilled water return temperature downstream of WSE"
+ annotation (Placement(transformation(extent={{-150,40},{-130,60}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant chiWatFlow2(
+ final k=VChiWat_flow)
+ "Chilled water flow"
+ annotation (Placement(transformation(extent={{-30,0},{-10,20}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Pulse TOutWetSig2(
+ final amplitude=5,
+ final period=2*15*60,
+ final offset=TOutWetBul) "Measured outdoor air wet bulb temperature"
+ annotation (Placement(transformation(extent={{-30,100},{-10,120}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant constTowFanSig2(
+ final k=1)
+ "Cooling tower fan full load signal"
+ annotation (Placement(transformation(extent={{-30,-40},{-10,-20}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant TChiWatRetSig2(
+ final k=TChiWatRet)
+ "Chilled water return temperature upstream of WSE"
+ annotation (Placement(transformation(extent={{-30,70},{-10,90}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Sine TChiWatRetDow3(
+ final offset=TWseOut,
+ final freqHz=1/1800,
+ final amplitude=4)
+ "Chilled water return temperature downstream of WSE"
+ annotation (Placement(transformation(extent={{-30,40},{-10,60}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant conInt(
+ final k=0)
+ "Stage 0"
+ annotation (Placement(transformation(extent={{-300,-20},{-280,0}})));
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant conInt1(
+ final k=2)
+ "Stage 0"
+ annotation (Placement(transformation(extent={{-300,-60},{-280,-40}})));
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant con(
+ final k=true) "Enabled plant"
+ annotation (Placement(transformation(extent={{-300,22},{-280,42}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant chiWatFlow3(
+ final k=VChiWat_flow)
+ "Chilled water flow"
+ annotation (Placement(transformation(extent={{160,0},{180,20}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant constTowFanSig3(
+ final k=1)
+ "Cooling tower fan full load signal"
+ annotation (Placement(transformation(extent={{160,-40},{180,-20}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant TChiWatRetSig3(
+ final k=TChiWatRet)
+ "Chilled water return temperature upstream of WSE"
+ annotation (Placement(transformation(extent={{160,70},{180,90}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant TChiWatRetDow2(
+ final k=TWseOut)
+ "Chilled water return temperature downstream of WSE"
+ annotation (Placement(transformation(extent={{160,40},{180,60}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant TOutWetSig3(
+ final k=292.15)
+ "Measured outdoor air wet bulb temperature"
+ annotation (Placement(transformation(extent={{160,100},{180,120}})));
+ Buildings.Controls.OBC.CDL.Logical.Sources.Pulse booPul(
+ final width=0.1,
+ final period=3600) "Enabled plant"
+ annotation (Placement(transformation(extent={{80,20},{100,40}})));
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant conInt2(
+ final k=0)
+ "Stage 0"
+ annotation (Placement(transformation(extent={{120,-20},{140,0}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Ramp TEntHex(
+ final height=3,
+ final duration=3600,
+ final offset=290.15)
+ "Return chilled water temperature entering heat exchanger"
+ annotation (Placement(transformation(extent={{160,-80},{180,-60}})));
+ Buildings.Controls.OBC.CDL.Logical.Not not1
+ "Logical not"
+ annotation (Placement(transformation(extent={{120,20},{140,40}})));
+equation
+ connect(constTowFanSig.y, wseSta.uTowFanSpeMax) annotation (Line(points={{-238,
+ -30},{-200,-30},{-200,52},{-192,52}}, color={0,0,127}));
+ connect(TOutWetSig.y, wseSta.TOutWet) annotation (Line(points={{-238,110},{-200,
+ 110},{-200,60},{-192,60}}, color={0,0,127}));
+ connect(TChiWatRetSig.y, wseSta.TChiWatRet) annotation (Line(points={{-238,80},
+ {-220,80},{-220,58},{-192,58}}, color={0,0,127}));
+ connect(chiWatFlow.y, wseSta.VChiWat_flow) annotation (Line(points={{-238,10},
+ {-210,10},{-210,54},{-192,54}}, color={0,0,127}));
+ connect(TChiWatRetDow.y,wseSta.TChiWatRetDow)
+ annotation (Line(points={{-238,50},{-230,50},{-230,56},{-192,56}}, color={0,0,127}));
+ connect(constTowFanSig1.y, wseSta1.uTowFanSpeMax) annotation (Line(points={{-128,
+ -30},{-90,-30},{-90,52},{-82,52}}, color={0,0,127}));
+ connect(TOutWetSig1.y, wseSta1.TOutWet) annotation (Line(points={{-128,110},{-90,
+ 110},{-90,60},{-82,60}}, color={0,0,127}));
+ connect(TChiWatRetSig1.y, wseSta1.TChiWatRet) annotation (Line(points={{-128,80},
+ {-110,80},{-110,58},{-82,58}}, color={0,0,127}));
+ connect(chiWatFlow1.y, wseSta1.VChiWat_flow) annotation (Line(points={{-128,10},
+ {-100,10},{-100,54},{-82,54}}, color={0,0,127}));
+ connect(TChiWatRetDow1.y,wseSta1.TChiWatRetDow)
+ annotation (Line(points={{-128,50},{-120,50},{-120,56},{-82,56}}, color={0,0,127}));
+ connect(constTowFanSig2.y, wseSta2.uTowFanSpeMax) annotation (Line(points={{-8,-30},
+ {30,-30},{30,52},{38,52}}, color={0,0,127}));
+ connect(TOutWetSig2.y,wseSta2. TOutWet) annotation (Line(points={{-8,110},{30,
+ 110},{30,60},{38,60}}, color={0,0,127}));
+ connect(TChiWatRetSig2.y,wseSta2. TChiWatRet) annotation (Line(points={{-8,80},
+ {10,80},{10,58},{38,58}}, color={0,0,127}));
+ connect(chiWatFlow2.y,wseSta2. VChiWat_flow) annotation (Line(points={{-8,10},
+ {20,10},{20,54},{38,54}}, color={0,0,127}));
+ connect(wseSta2.TChiWatRetDow, TChiWatRetDow3.y)
+ annotation (Line(points={{38,56},{0,56},{0,50},{-8,50}}, color={0,0,127}));
+ connect(con.y, wseSta.uPla) annotation (Line(points={{-278,32},{-220,32},{-220,
+ 50},{-192,50}}, color={255,0,255}));
+ connect(con.y, wseSta1.uPla) annotation (Line(points={{-278,32},{-110,32},{-110,
+ 50},{-82,50}}, color={255,0,255}));
+ connect(con.y, wseSta2.uPla) annotation (Line(points={{-278,32},{10,32},{10,50},
+ {38,50}}, color={255,0,255}));
+ connect(conInt.y, wseSta.uIni) annotation (Line(points={{-278,-10},{-216,-10},
+ {-216,48},{-192,48}}, color={255,127,0}));
+ connect(conInt.y, wseSta1.uIni) annotation (Line(points={{-278,-10},{-106,-10},
+ {-106,48},{-82,48}}, color={255,127,0}));
+ connect(conInt.y, wseSta2.uIni) annotation (Line(points={{-278,-10},{14,-10},{
+ 14,48},{38,48}}, color={255,127,0}));
+ connect(conInt1.y, wseSta.uChiSta) annotation (Line(points={{-278,-50},{-206,-50},
+ {-206,46},{-192,46}}, color={255,127,0}));
+ connect(conInt1.y, wseSta1.uChiSta) annotation (Line(points={{-278,-50},{-96,-50},
+ {-96,46},{-82,46}}, color={255,127,0}));
+ connect(conInt1.y, wseSta2.uChiSta) annotation (Line(points={{-278,-50},{24,-50},
+ {24,46},{38,46}}, color={255,127,0}));
+ connect(dpWSE.y, wseSta.dpChiWat) annotation (Line(points={{-238,-70},{-226,-70},
+ {-226,44},{-192,44}}, color={0,0,127}));
+ connect(dpWSE.y, wseSta1.dpChiWat) annotation (Line(points={{-238,-70},{-116,-70},
+ {-116,44},{-82,44}}, color={0,0,127}));
+ connect(dpWSE.y, wseSta2.dpChiWat) annotation (Line(points={{-238,-70},{4,-70},
+ {4,44},{38,44}}, color={0,0,127}));
+ connect(TOutWetSig3.y, wseSta3.TOutWet) annotation (Line(points={{182,110},{220,
+ 110},{220,60},{238,60}}, color={0,0,127}));
+ connect(TChiWatRetSig3.y, wseSta3.TChiWatRet) annotation (Line(points={{182,80},
+ {214,80},{214,58},{238,58}}, color={0,0,127}));
+ connect(TChiWatRetDow2.y, wseSta3.TChiWatRetDow) annotation (Line(points={{182,
+ 50},{196,50},{196,56},{238,56}}, color={0,0,127}));
+ connect(chiWatFlow3.y, wseSta3.VChiWat_flow) annotation (Line(points={{182,10},
+ {204,10},{204,54},{238,54}}, color={0,0,127}));
+ connect(constTowFanSig3.y, wseSta3.uTowFanSpeMax) annotation (Line(points={{182,
+ -30},{208,-30},{208,52},{238,52}}, color={0,0,127}));
+ connect(conInt2.y, wseSta3.uIni) annotation (Line(points={{142,-10},{212,-10},
+ {212,48},{238,48}}, color={255,127,0}));
+ connect(booPul.y, not1.u)
+ annotation (Line(points={{102,30},{118,30}}, color={255,0,255}));
+ connect(not1.y, wseSta3.uPla) annotation (Line(points={{142,30},{200,30},{200,
+ 50},{238,50}}, color={255,0,255}));
+ connect(not1.y, wseSta3.uPum) annotation (Line(points={{142,30},{200,30},{200,
+ 42},{238,42}}, color={255,0,255}));
+ connect(TEntHex.y, wseSta3.TEntHex) annotation (Line(points={{182,-70},{220,-70},
+ {220,40},{238,40}}, color={0,0,127}));
+ connect(conInt2.y, wseSta3.uChiSta) annotation (Line(points={{142,-10},{212,-10},
+ {212,46},{238,46}}, color={255,127,0}));
+annotation (
+ experiment(StopTime=3600.0, Tolerance=1e-06),
+ __Dymola_Commands(file="modelica://Buildings/Resources/Scripts/Dymola/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Economizers/Validation/Controller.mos"
+ "Simulate and plot"),
+ Documentation(info="
+
+This example validates
+
+Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Economizers.Controller.
+
+", revisions="
+
+-
+October 15, 2018, by Milica Grahovac:
+First implementation.
+
+
+"),
+Icon(coordinateSystem(extent={{-100,-100},{100,100}}),
+ graphics={
+ Ellipse(lineColor = {75,138,73},
+ fillColor={255,255,255},
+ fillPattern = FillPattern.Solid,
+ extent = {{-100,-100},{100,100}}),
+ Polygon(lineColor = {0,0,255},
+ fillColor = {75,138,73},
+ pattern = LinePattern.None,
+ fillPattern = FillPattern.Solid,
+ points = {{-36,60},{64,0},{-36,-60},{-36,60}})}),Diagram(
+ coordinateSystem(preserveAspectRatio=false, extent={{-320,-140},{320,140}}),
+ graphics={
+ Text(
+ extent={{-276,-88},{-194,-112}},
+ textColor={0,0,127},
+ textString="Tests enable conditions
+based on the outdoor air
+wetbulb temperature"),
+ Text(
+ extent={{-166,-84},{-78,-114}},
+ textColor={0,0,127},
+ textString="Tests disable conditions
+based on the chilled water
+temperature downstream of WSE"),
+ Text(
+ extent={{-34,-88},{40,-108}},
+ textColor={0,0,127},
+ textString="Combines conditions from
+the first two tests"),
+ Text(
+ extent={{164,-86},{254,-98}},
+ textColor={0,0,127},
+ textString="Plant enabled in economizer mode")}));
+end Controller;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Economizers/Validation/package.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Economizers/Validation/package.mo
new file mode 100644
index 00000000000..d9a4a2fa203
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Economizers/Validation/package.mo
@@ -0,0 +1,37 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Economizers;
+package Validation "Collection of validation models"
+
+annotation (preferredView="info", Documentation(info="
+
+This package contains validation models for the classes in
+
+Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Economizers.
+
+
+Note that most validation models contain simple input data
+which may not be realistic, but for which the correct
+output can be obtained through an analytic solution.
+The examples plot various outputs, which have been verified against these
+solutions. These model outputs are stored as reference data and
+used for continuous validation whenever models in the library change.
+
+"),
+ Icon(graphics={
+ Rectangle(
+ lineColor={200,200,200},
+ fillColor={248,248,248},
+ fillPattern=FillPattern.HorizontalCylinder,
+ extent={{-100.0,-100.0},{100.0,100.0}},
+ radius=25.0),
+ Rectangle(
+ lineColor={128,128,128},
+ extent={{-100.0,-100.0},{100.0,100.0}},
+ radius=25.0),
+ Polygon(
+ origin={8.0,14.0},
+ lineColor={78,138,73},
+ fillColor={78,138,73},
+ pattern=LinePattern.None,
+ fillPattern=FillPattern.Solid,
+ points={{-58.0,46.0},{42.0,-14.0},{-58.0,-74.0},{-58.0,46.0}})}));
+end Validation;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Economizers/Validation/package.order b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Economizers/Validation/package.order
new file mode 100644
index 00000000000..8cba75e31a7
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Economizers/Validation/package.order
@@ -0,0 +1 @@
+Controller
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Economizers/package.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Economizers/package.mo
new file mode 100644
index 00000000000..d7e62128518
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Economizers/package.mo
@@ -0,0 +1,47 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant;
+package Economizers "Waterside economizer (WSE) sequences"
+
+annotation (
+preferredView="info", Documentation(info="
+
+This package contains waterside economizer (WSE) control sequences.
+The implementation is based on section 5.2.3. in ASHRAE RP-1711 Advanced Sequences
+of Operation for HVAC Systems Phase II –
+Central Plants and Hydronic Systems (draft version on March 23, 2020).
+
+"),
+Icon(graphics={
+ Rectangle(
+ lineColor={200,200,200},
+ fillColor={248,248,248},
+ fillPattern=FillPattern.HorizontalCylinder,
+ extent={{-100.0,-100.0},{100.0,100.0}},
+ radius=25.0),
+ Rectangle(
+ lineColor={128,128,128},
+ extent={{-100.0,-100.0},{100.0,100.0}},
+ radius=25.0),
+ Ellipse(
+ origin={10.0,10.0},
+ fillColor={76,76,76},
+ pattern=LinePattern.None,
+ fillPattern=FillPattern.Solid,
+ extent={{-80.0,-80.0},{-20.0,-20.0}}),
+ Ellipse(
+ origin={10.0,10.0},
+ pattern=LinePattern.None,
+ fillPattern=FillPattern.Solid,
+ extent={{0.0,-80.0},{60.0,-20.0}}),
+ Ellipse(
+ origin={10.0,10.0},
+ fillColor={128,128,128},
+ pattern=LinePattern.None,
+ fillPattern=FillPattern.Solid,
+ extent={{0.0,0.0},{60.0,60.0}}),
+ Ellipse(
+ origin={10.0,10.0},
+ lineColor={128,128,128},
+ fillColor={255,255,255},
+ fillPattern=FillPattern.Solid,
+ extent={{-80.0,0.0},{-20.0,60.0}})}));
+end Economizers;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Economizers/package.order b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Economizers/package.order
new file mode 100644
index 00000000000..9ffbffcb990
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Economizers/package.order
@@ -0,0 +1,3 @@
+Controller
+Subsequences
+Validation
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Generic/EquipmentRotation/ControllerTwo.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Generic/EquipmentRotation/ControllerTwo.mo
new file mode 100644
index 00000000000..d8b8d88d950
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Generic/EquipmentRotation/ControllerTwo.mo
@@ -0,0 +1,337 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Generic.EquipmentRotation;
+block ControllerTwo
+ "Lead/lag or lead/standby equipment rotation controller for two devices or two groups of devices"
+
+ parameter Boolean lag = true
+ "true = lead/lag; false = lead/standby";
+
+ parameter Boolean continuous = false
+ "Continuous lead device operation"
+ annotation (Evaluate=true, Dialog(enable=not lag));
+
+ parameter Boolean minLim = false
+ "Utilize minimum runtime period for a current lead device before rotation may occur"
+ annotation (Evaluate=true, Dialog(enable=not continuous));
+
+ parameter Boolean initRoles[nDev] = {true, false}
+ "Initial roles: true = lead, false = lag/standby"
+ annotation (Evaluate=true, Dialog(tab="Advanced", group="Initiation"));
+
+ parameter Boolean simTimSta = true
+ "Measure rotation time from the simulation start"
+ annotation(Evaluate=true, Dialog(group="Scheduler", enable=continuous));
+
+ parameter Boolean weeInt = true
+ "Rotation is scheduled in: true = weekly intervals; false = daily intervals"
+ annotation(Evaluate=true, Dialog(group="Scheduler", enable=not simTimSta));
+
+ parameter Real rotationPeriod(
+ final unit="s",
+ final quantity="Time",
+ displayUnit="h") = 1209600
+ "Rotation time period measured from simulation start"
+ annotation(Dialog(group="Scheduler", enable=simTimSta));
+
+ parameter Real minLeaRuntime(
+ final unit="s",
+ final quantity="Time",
+ displayUnit="h") = 43200
+ "Minimum cumulative runtime period for a current lead device before rotation may occur"
+ annotation (Evaluate=true, Dialog(enable=(not continuous and minLim)));
+
+ parameter Real offset(
+ final unit="s",
+ final quantity="Time") = 0
+ "Offset that is added to 'time', may be used for computing time in a different time zone"
+ annotation(Evaluate=true, Dialog(group="Calendar", enable=(continuous and not simTimSta)));
+
+ parameter Buildings.Controls.OBC.CDL.Types.ZeroTime zerTim = Buildings.Controls.OBC.CDL.Types.ZeroTime.NY2019
+ "Enumeration for choosing how reference time (time = 0) should be defined"
+ annotation(Evaluate=true, Dialog(group="Calendar", enable=(continuous and not simTimSta)));
+
+ parameter Integer yearRef(min=firstYear, max=lastYear) = 2019
+ "Year when time = 0, used if zerTim=Custom"
+ annotation(Evaluate=true, Dialog(group="Calendar", enable=zerTim==Buildings.Controls.OBC.CDL.Types.ZeroTime.Custom and continuous));
+
+ parameter Integer houOfDay = 2
+ "Rotation hour of the day: 0 = midnight; 23 = 11pm"
+ annotation(Evaluate=true, Dialog(group="Scheduler", enable=not simTimSta));
+
+ parameter Integer weeCou = 1 "Number of weeks"
+ annotation (Evaluate=true, Dialog(enable=weeInt and not simTimSta, group="Scheduler"));
+
+ parameter Integer weekday = 1
+ "Rotation weekday, 1 = Monday, 7 = Sunday"
+ annotation (Evaluate=true, Dialog(enable=weeInt and not simTimSta, group="Scheduler"));
+
+ parameter Integer dayCou = 1 "Number of days"
+ annotation (Evaluate=true, Dialog(enable=not weeInt and not simTimSta, group="Scheduler"));
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uLeaStaSet if not continuous
+ "Lead device status setpoint"
+ annotation (Placement(transformation(extent={{-200,-20},{-160,20}}),
+ iconTransformation(extent={{-140,40},{-100,80}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uLagStaSet if lag
+ "Lag device status setpoint"
+ annotation (Placement(transformation(extent={{-200,-100},{-160,-60}}),
+ iconTransformation(extent={{-140,-20},{-100,20}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uDevSta[nDev]
+ "Device proven ON status, where each index represents a physical device/group of devices"
+ annotation (Placement(transformation(extent={{-200,60},{-160,100}}),
+ iconTransformation(extent={{-140,-80},{-100,-40}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanOutput yDevStaSet[nDev]
+ "Device status setpoint, where each index represents a physical device/group of devices"
+ annotation (Placement(transformation(extent={{160,10},{180,30}}), iconTransformation(
+ extent={{100,40},{140,80}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanOutput yDevRol[nDev]
+ "Device role: true = lead, false = lag or standby" annotation (Placement(
+ transformation(extent={{160,-30},{180,-10}}), iconTransformation(extent={{100,-80},
+ {140,-40}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Generic.EquipmentRotation.Subsequences.Scheduler
+ rotSch(
+ final rotationPeriod=rotationPeriod,
+ final simTimSta=simTimSta,
+ final weeInt=weeInt,
+ final houOfDay=houOfDay,
+ final weeCou=weeCou,
+ final weekday=weekday,
+ final dayCou=dayCou,
+ final zerTim=zerTim,
+ final yearRef=yearRef,
+ final offset=offset) if continuous
+ "Generates equipment rotation trigger based on a schedule"
+ annotation (Placement(transformation(extent={{0,20},{20,40}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Generic.EquipmentRotation.Subsequences.MinimumLeadRuntime
+ minLeaTim(final minLeaRuntime=minLeaRuntime) if (minLim and not continuous)
+ "Rotation signal generator with a minimum leading device runtime limiter"
+ annotation (Placement(transformation(extent={{40,-40},{60,-20}})));
+
+protected
+ final parameter Integer nDev = 2
+ "Total number of devices, such as chillers, isolation valves, CW pumps, or CHW pumps";
+
+ final constant Integer firstYear = 2010
+ "First year that is supported, i.e. the first year in timeStampsNewYear[:]"
+ annotation (Evaluate=true, Dialog(enable=not continuous));
+
+ final constant Integer lastYear = firstYear + 20
+ "Last year that is currently supported"
+ annotation (Evaluate=true, Dialog(enable=not continuous));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Generic.EquipmentRotation.Subsequences.LeastRuntime
+ leaRunTim(final lag=lag) if (not minLim and not continuous)
+ "Rotation signal generator based on least runtime, at device enable"
+ annotation (Placement(transformation(extent={{40,-90},{60,-70}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Generic.EquipmentRotation.Subsequences.ContinuousLeadSwapTwo
+ leaSwa if continuous
+ "Ensures no old lead device is switched off until the new lead device is proven on"
+ annotation (Placement(transformation(extent={{100,20},{120,40}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Generic.EquipmentRotation.Subsequences.Two
+ rotTwoCon if continuous
+ "Based on a rotation trigger sets device roles according to equipment rotation"
+ annotation (Placement(transformation(extent={{40,20},{60,40}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Generic.EquipmentRotation.Subsequences.Two
+ rotTwo if not continuous
+ "Based on a rotation trigger sets device roles according to equipment rotation"
+ annotation (Placement(transformation(extent={{100,-40},{120,-20}})));
+
+ Buildings.Controls.OBC.CDL.Routing.BooleanScalarReplicator repLea(
+ final nout=nDev) if not continuous "Replicates lead signal"
+ annotation (Placement(transformation(extent={{-120,-20},{-100,0}})));
+
+ Buildings.Controls.OBC.CDL.Routing.BooleanScalarReplicator repLag(
+ final nout=nDev) if lag "Replicates lag signal"
+ annotation (Placement(transformation(extent={{-120,-50},{-100,-30}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Switch logSwi1[nDev] if not continuous
+ "Switch"
+ annotation (Placement(transformation(extent={{-60,-42},{-40,-22}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant staBySta[nDev](
+ final k=fill(false, nDev)) if not lag and not continuous "Standby status"
+ annotation (Placement(transformation(extent={{-120,-90},{-100,-70}})));
+
+equation
+ connect(logSwi1.u1, repLea.y) annotation (Line(points={{-62,-24},{-80,-24},{-80,
+ -10},{-98,-10}}, color={255,0,255}));
+ connect(logSwi1.u3,repLag. y) annotation (Line(points={{-62,-40},{-98,-40}},
+ color={255,0,255}));
+ connect(uLeaStaSet, repLea.u)
+ annotation (Line(points={{-180,0},{-140,0},{-140,-10},{-122,-10}},
+ color={255,0,255}));
+ connect(uLagStaSet, repLag.u)
+ annotation (Line(points={{-180,-80},{-140,-80},{-140,-40},{-122,-40}},
+ color={255,0,255}));
+ connect(logSwi1.y, yDevStaSet) annotation (Line(points={{-38,-32},{-30,-32},{-30,
+ 60},{140,60},{140,20},{170,20}}, color={255,0,255}));
+ connect(staBySta.y,logSwi1. u3) annotation (Line(points={{-98,-80},{-90,-80},{
+ -90,-40},{-62,-40}}, color={255,0,255}));
+ connect(leaSwa.yDevStaSet, yDevStaSet) annotation (Line(points={{122,30},{140,
+ 30},{140,20},{170,20}},
+ color={255,0,255}));
+ connect(minLeaTim.yRot, rotTwo.uRot)
+ annotation (Line(points={{62,-30},{98,-30}}, color={255,0,255}));
+ connect(rotTwo.yDevRol, yDevRol) annotation (Line(points={{122,-30},{140,-30},
+ {140,-20},{170,-20}},color={255,0,255}));
+ connect(rotTwo.yPreDevRolSig, minLeaTim.uPreDevRolSig) annotation (Line(
+ points={{122,-36},{140,-36},{140,-60},{20,-60},{20,-38},{38,-38}},
+ color={255,0,255}));
+ connect(rotTwo.yPreDevRolSig, logSwi1.u2) annotation (Line(points={{122,-36},{
+ 140,-36},{140,-60},{-80,-60},{-80,-32},{-62,-32}}, color={255,0,255}));
+ connect(rotSch.yRot, rotTwoCon.uRot)
+ annotation (Line(points={{22,30},{38,30}}, color={255,0,255}));
+ connect(uDevSta, leaSwa.uDevSta) annotation (Line(points={{-180,80},{90,80},{90,
+ 26},{98,26}}, color={255,0,255}));
+ connect(rotTwoCon.yDevRol, leaSwa.uDevRolSet) annotation (Line(points={{62,30},
+ {80,30},{80,34},{98,34}},
+ color={255,0,255}));
+ connect(rotTwoCon.yDevRol, yDevRol) annotation (Line(points={{62,30},{80,30},{
+ 80,0},{140,0},{140,-20},{170,-20}}, color={255,0,255}));
+ connect(uDevSta, minLeaTim.uDevSta) annotation (Line(points={{-180,80},{-20,80},
+ {-20,-30},{38,-30}}, color={255,0,255}));
+ connect(rotTwo.yPreDevRolSig, leaRunTim.uPreDevRolSig) annotation (Line(
+ points={{122,-36},{140,-36},{140,-94},{30,-94},{30,-88},{38,-88}},
+ color={255,0,255}));
+ connect(uDevSta, leaRunTim.uDevSta) annotation (Line(points={{-180,80},{-20,80},
+ {-20,-80},{38,-80}}, color={255,0,255}));
+ connect(leaRunTim.yRot, rotTwo.uRot) annotation (Line(points={{62,-80},{80,-80},
+ {80,-30},{98,-30}}, color={255,0,255}));
+
+annotation(Diagram(coordinateSystem(extent={{-160,-100},{160,100}})),
+ defaultComponentName="equRot",
+ Icon(graphics={
+ Rectangle(
+ extent={{-100,-100},{100,100}},
+ lineColor={0,0,127},
+ fillColor={255,255,255},
+ fillPattern=FillPattern.Solid),
+ Ellipse(
+ extent={{71,7},{85,-7}},
+ lineColor=DynamicSelect({235,235,235}, if y then {0,255,0}
+ else {235,235,235}),
+ fillColor=DynamicSelect({235,235,235}, if y then {0,255,0}
+ else {235,235,235}),
+ fillPattern=FillPattern.Solid),
+ Ellipse(
+ extent={{-75,-6},{-89,8}},
+ lineColor=DynamicSelect({235,235,235}, if u1 then {0,255,0}
+ else {235,235,235}),
+ fillColor=DynamicSelect({235,235,235}, if u1 then {0,255,0}
+ else {235,235,235}),
+ fillPattern=FillPattern.Solid),
+ Text(
+ extent={{-120,146},{100,108}},
+ textColor={0,0,255},
+ textString="%name"),
+ Ellipse(
+ origin={-26.6667,38.6207},
+ lineColor={128,128,128},
+ fillColor={255,255,255},
+ fillPattern=FillPattern.Solid,
+ extent={{-53.3333,1.37927},{-13.3329,41.3792}}),
+ Ellipse(
+ origin={93.3333,-81.3793},
+ lineColor={128,128,128},
+ fillColor={255,255,255},
+ fillPattern=FillPattern.Solid,
+ extent={{-53.3333,1.37927},{-13.3329,41.3792}}),
+ Ellipse(
+ origin={-26.6667,-81.3793},
+ lineColor={128,128,128},
+ fillColor={28,108,200},
+ fillPattern=FillPattern.Solid,
+ extent={{-53.3333,1.37927},{-13.3329,41.3792}}),
+ Ellipse(
+ origin={93.333,38.6207},
+ lineColor={128,128,128},
+ fillColor={28,108,200},
+ fillPattern=FillPattern.Solid,
+ extent={{-53.3333,1.37927},{-13.3329,41.3792}}),
+ Line(points={{-40,60},{0,60},{0,-60},{40,-60}}, color={128,128,128}),
+ Line(points={{-40,-60},{0,-60},{0,60},{40,60}}, color={128,128,128})}),
+ Documentation(info="
+
+This controller block rotates equipment, such as chillers, pumps or valves, in order
+to ensure equal wear and tear. It is intended to be used for lead/lag and
+lead/standby operation of two devices or groups of devices. The implementation is
+based on the specification from ASHRAE RP-1711, March 2020 Draft, section 5.1.2.1.-4.
+
+
+The controller takes as inputs the current device proven ON/OFF status vector uDevSta
,
+lead device status setpoint uLeaStaSet
and lag device status setpoint uLagStaSet
.
+The controller features the following rotation subsequences to generate the device status setpoints yDevStaSet
+and device roles yDevRol
outputs:
+
+
+
+The
+Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Generic.EquipmentRotation.Subsequences.Two subsequence allocates
+the status setpoints yDevStaSet
to devices based on the rotation signal.
+
+
+The output vector yDevRol
indicates the role of each device, where true
+represents a lead role and false represents a lag or a standby role.
+
+
+The indices of both output vectors and the uDevSta
input vector represent physical devices.
+
+
+In addition to the specification in RP-1711, this model allows the user to:
+
+
+-
+specify time of day and either a number of days or a weekday with a number of weeks
+as time period to rotate devices or groups of devices that run continuously.
+
+-
+optionally impose a minimum cumulative runtime period
minLeaRuntime
for a current
+lead device before rotation may occur. The time is accumulated in any role for each device and
+reset for each lead device or group of devices at role rotation.
+This implementation assumes that a more frequent load is being sent to a lead device or group of devices.
+
+
+", revisions="
+
+-
+May 18, 2020, by Milica Grahovac:
+First implementation.
+
+
+"));
+end ControllerTwo;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Generic/EquipmentRotation/Subsequences/ContinuousLeadSwapTwo.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Generic/EquipmentRotation/Subsequences/ContinuousLeadSwapTwo.mo
new file mode 100644
index 00000000000..55b37f39749
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Generic/EquipmentRotation/Subsequences/ContinuousLeadSwapTwo.mo
@@ -0,0 +1,69 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Generic.EquipmentRotation.Subsequences;
+block ContinuousLeadSwapTwo
+ "Ensures that the previous lead device remains enabled until the new lead device is proven on"
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uDevRolSet[nDev]
+ "Device role setpoint: true = lead, false = standby"
+ annotation (Placement(transformation(extent={{-100,0},{-60,40}}),
+ iconTransformation(extent={{-140,20},{-100,60}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uDevSta[nDev]
+ "Device status: true = proven ON; false = proven OFF"
+ annotation (Placement(transformation(extent={{-100,-40},{-60,0}}),
+ iconTransformation(extent={{-140,-60},{-100,-20}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanOutput yDevStaSet[nDev]
+ "Device status setpoint"
+ annotation (Placement(transformation(extent={{60,0},{100,40}}),
+ iconTransformation(extent={{100,-20},{140,20}})));
+
+protected
+ final parameter Integer nDev = 2
+ "Total number of devices, such as chillers, isolation valves, CW pumps, or CHW pumps";
+
+ Buildings.Controls.OBC.CDL.Logical.Or or1[nDev] "Logical or"
+ annotation (Placement(transformation(extent={{20,10},{40,30}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Not not1[nDev] "Logical not"
+ annotation (Placement(transformation(extent={{-40,-30},{-20,-10}})));
+
+equation
+ connect(uDevSta, not1.u)
+ annotation (Line(points={{-80,-20},{-42,-20}}, color={255,0,255}));
+ connect(uDevRolSet, or1.u1)
+ annotation (Line(points={{-80,20},{18,20}},color={255,0,255}));
+ connect(not1[1].y, or1[2].u2)
+ annotation (Line(points={{-18,-20},{0,-20},{0,12},{18,12}}, color={255,0,255}));
+ connect(not1[2].y, or1[1].u2)
+ annotation (Line(points={{-18,-20},{-10,-20},{-10,12},{18,12}}, color={255,0,255}));
+ connect(or1.y, yDevStaSet)
+ annotation (Line(points={{42,20},{80,20}}, color={255,0,255}));
+ annotation (defaultComponentName="leaSwa",
+ Icon(graphics={Rectangle(
+ extent={{-100,-100},{100,100}},
+ lineColor={0,0,127}, fillColor={255,255,255},
+ fillPattern=FillPattern.Solid),
+ Ellipse( extent={{71,7},{85,-7}},
+ lineColor=DynamicSelect({235,235,235}, if y then {0,255,0} else {235,235,235}),
+ fillColor=DynamicSelect({235,235,235}, if y then {0,255,0} else {235,235,235}),
+ fillPattern=FillPattern.Solid), Ellipse( extent={{-75,-6},{-89,8}},
+ lineColor=DynamicSelect({235,235,235}, if u1 then {0,255,0} else {235,235,235}),
+ fillColor=DynamicSelect({235,235,235}, if u1 then {0,255,0} else {235,235,235}),
+ fillPattern=FillPattern.Solid), Text( extent={{-120,146},{100,108}},
+ textColor={0,0,255}, textString="%name")}),
+ Documentation(info="
+
+This block ensures that the new lead device is started and proven on before the old
+lead device is switched to standby and shut off. The implementation is
+according to March 2020 Draft RP-1711, section 5.1.2.4.2.
+
+", revisions="
+
+-
+May 18, 2020, by Milica Grahovac:
+First implementation.
+
+
+"),
+ Diagram(coordinateSystem(extent={{-60,-40},{60,40}})));
+end ContinuousLeadSwapTwo;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Generic/EquipmentRotation/Subsequences/LeastRuntime.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Generic/EquipmentRotation/Subsequences/LeastRuntime.mo
new file mode 100644
index 00000000000..76b702adbb2
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Generic/EquipmentRotation/Subsequences/LeastRuntime.mo
@@ -0,0 +1,172 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Generic.EquipmentRotation.Subsequences;
+block LeastRuntime
+ "Generates equipment rotation signal at each device enable if that device has a least total runtime"
+
+ parameter Boolean lag = true
+ "true = lead/lag; false = lead/standby";
+
+ parameter Boolean initRoles[nDev] = {true, false}
+ "Initial roles: true = lead, false = lag/standby"
+ annotation (Evaluate=true, Dialog(tab="Advanced", group="Initiation"));
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uDevSta[nDev]
+ "Device status: true = proven ON, false = proven OFF"
+ annotation (Placement(transformation(extent={{-200,40},{-160,80}}),
+ iconTransformation(extent={{-140,-20},{-100,20}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uPreDevRolSig[nDev]
+ "Device roles in the previous time instance: true = lead; false = lag or standby"
+ annotation (Placement(transformation(extent={{-200,-60},{-160,-20}}),
+ iconTransformation(extent={{-140,-100},{-100,-60}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanOutput yRot
+ "Rotation trigger signal"
+ annotation (Placement(transformation(extent={{160,-20},{200,20}}),
+ iconTransformation(extent={{100,-20},{140,20}})));
+
+ Buildings.Controls.OBC.CDL.Logical.TimerAccumulating accTim[nDev]
+ "Measures time spent loaded at the current role (lead or lag)"
+ annotation (Placement(transformation(extent={{-60,50},{-40,70}})));
+
+protected
+ final parameter Integer nDev = 2
+ "Total number of devices, such as chillers, isolation valves, CW pumps, or CHW pumps";
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant con[nDev](
+ final k=fill(false, nDev)) "Constant"
+ annotation (Placement(transformation(extent={{-100,20},{-80,40}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Greater longer1
+ "Runtime of the first device is longer than runtime of the second device"
+ annotation (Placement(transformation(extent={{-20,50},{0,70}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Greater longer2
+ "Runtime of the second device is longer than the runtime of the first device"
+ annotation (Placement(transformation(extent={{-20,20},{0,40}})));
+
+ Buildings.Controls.OBC.CDL.Logical.MultiOr mulOr(
+ final nin=nDev) "Multiple or"
+ annotation (Placement(transformation(extent={{130,-10},{150,10}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Not not1 if lag "Logical not"
+ annotation (Placement(transformation(extent={{20,50},{40,70}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Not not2 if lag "Logical not"
+ annotation (Placement(transformation(extent={{20,20},{40,40}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Not not3[nDev] if lag "Logical not"
+ annotation (Placement(transformation(extent={{20,-50},{40,-30}})));
+
+ Buildings.Controls.OBC.CDL.Logical.And3 and3[nDev] if lag "Logical not"
+ annotation (Placement(transformation(extent={{100,10},{120,30}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Edge edg [nDev](
+ final pre_u_start=fill(false, nDev)) if lag "Rising edge"
+ annotation (Placement(transformation(extent={{-100,-20},{-80,0}})));
+
+ Buildings.Controls.OBC.CDL.Logical.And and1[nDev] if not lag "Logical and"
+ annotation (Placement(transformation(extent={{100,-70},{120,-50}})));
+
+ Buildings.Controls.OBC.CDL.Logical.FallingEdge falEdg [nDev](
+ final pre_u_start=fill(false, nDev)) if not lag "Falling edge"
+ annotation (Placement(transformation(extent={{-100,-70},{-80,-50}})));
+
+equation
+ connect(uDevSta, accTim.u)
+ annotation (Line(points={{-180,60},{-62,60}}, color={255,0,255}));
+ connect(accTim[1].y, longer1.u1)
+ annotation (Line(points={{-38,60},{-22,60}}, color={0,0,127}));
+ connect(accTim[2].y, longer1.u2) annotation (Line(points={{-38,60},{-30,60},{-30,
+ 52},{-22,52}}, color={0,0,127}));
+ connect(accTim[1].y, longer2.u2) annotation (Line(points={{-38,60},{-30,60},{-30,
+ 22},{-22,22}}, color={0,0,127}));
+ connect(accTim[2].y, longer2.u1) annotation (Line(points={{-38,60},{-30,60},{-30,
+ 30},{-22,30}}, color={0,0,127}));
+ connect(uDevSta, edg.u) annotation (Line(points={{-180,60},{-120,60},{-120,-10},
+ {-102,-10}}, color={255,0,255}));
+ connect(yRot, yRot)
+ annotation (Line(points={{180,0},{180,0}}, color={255,0,255}));
+ connect(longer2.y, not2.u)
+ annotation (Line(points={{2,30},{18,30}}, color={255,0,255}));
+ connect(longer1.y, not1.u)
+ annotation (Line(points={{2,60},{18,60}}, color={255,0,255}));
+ connect(uPreDevRolSig, not3.u)
+ annotation (Line(points={{-180,-40},{18,-40}}, color={255,0,255}));
+ connect(edg.y, and3.u2) annotation (Line(points={{-78,-10},{80,-10},{80,20},{98,
+ 20}}, color={255,0,255}));
+ connect(not3.y, and3.u3) annotation (Line(points={{42,-40},{88,-40},{88,12},{98,
+ 12}}, color={255,0,255}));
+ connect(not1.y, and3[1].u1) annotation (Line(points={{42,60},{80,60},{80,28},{
+ 98,28}}, color={255,0,255}));
+ connect(not2.y, and3[2].u1) annotation (Line(points={{42,30},{70,30},{70,28},{
+ 98,28}}, color={255,0,255}));
+ connect(mulOr.y, yRot)
+ annotation (Line(points={{152,0},{180,0}}, color={255,0,255}));
+ connect(and3.y, mulOr.u) annotation (Line(points={{122,20},{124,20},{124,0},{128,
+ 0},{128,0}}, color={255,0,255}));
+ connect(uDevSta, falEdg.u) annotation (Line(points={{-180,60},{-120,60},{-120,
+ -60},{-102,-60}}, color={255,0,255}));
+ connect(longer1.y, and1[1].u1) annotation (Line(points={{2,60},{10,60},{10,-20},
+ {80,-20},{80,-60},{98,-60}}, color={255,0,255}));
+ connect(longer2.y, and1[2].u1) annotation (Line(points={{2,30},{10,30},{10,-20},
+ {80,-20},{80,-60},{98,-60}}, color={255,0,255}));
+ connect(and1.y, mulOr.u) annotation (Line(points={{122,-60},{122,0},{128,0}},
+ color={255,0,255}));
+ connect(falEdg.y, and1.u2) annotation (Line(points={{-78,-60},{20,-60},{20,
+ -68},{98,-68}}, color={255,0,255}));
+ connect(con.y, accTim.reset) annotation (Line(points={{-78,30},{-70,30},{-70,52},
+ {-62,52}}, color={255,0,255}));
+ annotation (Diagram(coordinateSystem(extent={{-160,-80},{160,80}})),
+ defaultComponentName="leaRunTim",
+ Icon(graphics={
+ Rectangle(
+ extent={{-100,-100},{100,100}},
+ lineColor={0,0,127},
+ fillColor={255,255,255},
+ fillPattern=FillPattern.Solid),
+ Text(
+ extent={{-120,146},{100,108}},
+ textColor={0,0,255},
+ textString="%name"),
+ Line(points={{-66,-70},{82,-70}},
+ color={192,192,192}),
+ Line(points={{-58,68},{-58,-80}},
+ color={192,192,192}),
+ Polygon(lineColor={192,192,192},
+ fillColor={192,192,192},
+ fillPattern=FillPattern.Solid,
+ points={{90.0,-70.0},{68.0,-62.0},{68.0,-78.0},{90.0,-70.0}}),
+ Polygon(lineColor={192,192,192},
+ fillColor={192,192,192},
+ fillPattern=FillPattern.Solid,
+ points={{-58,90},{-66,68},{-50,68},{-58,90}}),
+ Line(points={{-56,-70},{-38,-70},{-38,-26},{40,-26},{40,-70},{68,-70}},
+ color={255,0,255}),
+ Line(points={{-58,0},{-40,0},{40,90},{40,0},{68,0}},
+ color={0,0,127})}),
+ Documentation(info="
+
+This subsequence generates a rotation trigger signal yRot
based on measuring the time each of the devices/groups of devices
+has spent in its current role. The rotation trigger output yRot
is generated:
+
+
+-
+for lead/lag operation when a device/a group of devices is enabled that has the shortest cumulative runtime
+
+-
+for lead/standby operation when a device/a group of devices is disbled that has the longest cumulative runtime
+
+
+
+The implementation corresponts sections 5.1.2.3. and 5.1.2.4.1. of RP1711 March 2020 draft when applied to
+two devices or groups of devices.
+
+", revisions="
+
+-
+May 15 2020, by Milica Grahovac:
+First implementation.
+
+
+"));
+end LeastRuntime;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Generic/EquipmentRotation/Subsequences/MinimumLeadRuntime.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Generic/EquipmentRotation/Subsequences/MinimumLeadRuntime.mo
new file mode 100644
index 00000000000..a39e657b5ff
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Generic/EquipmentRotation/Subsequences/MinimumLeadRuntime.mo
@@ -0,0 +1,148 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Generic.EquipmentRotation.Subsequences;
+block MinimumLeadRuntime
+ "Generates equipment rotation signal when a lead device/group of devices exceeds a miminum cumulative runtime"
+
+ parameter Boolean initRoles[nDev] = {true, false}
+ "Initial roles: true = lead, false = lag/standby"
+ annotation (Evaluate=true, Dialog(tab="Advanced", group="Initiation"));
+
+ parameter Real minLeaRuntime(
+ final unit="s",
+ final quantity="Time",
+ displayUnit="h") = 864000
+ "Minimum cumulative runtime period for a current lead device before rotation may occur";
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uDevSta[nDev]
+ "Device status: true = proven ON, false = proven OFF"
+ annotation (Placement(transformation(extent={{-200,40},{-160,80}}),
+ iconTransformation(extent={{-140,-20},{-100,20}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uPreDevRolSig[nDev]
+ "Device roles in the previous time instance: true = lead; false = lag or standby"
+ annotation (Placement(transformation(extent={{-200,-80},{-160,-40}}),
+ iconTransformation(extent={{-140,-100},{-100,-60}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanOutput yRot "Rotation trigger signal"
+ annotation (Placement(transformation(extent={{160,0},{200,40}}),
+ iconTransformation(extent={{100,-20},{140,20}})));
+
+ Buildings.Controls.OBC.CDL.Logical.TimerAccumulating accTim[nDev](
+ final t=fill(minLeaRuntime, nDev))
+ "Measures time spent loaded at the current role (lead or lag)"
+ annotation (Placement(transformation(extent={{-60,50},{-40,70}})));
+
+protected
+ final parameter Integer nDev = 2
+ "Total number of devices, such as chillers, isolation valves, CW pumps, or CHW pumps";
+
+ final parameter Real minLeaRuntimes[nDev](
+ final unit=fill("s",nDev),
+ final quantity=fill("Time",nDev)) = fill(minLeaRuntime, nDev)
+ "Staging runtimes array";
+
+ Buildings.Controls.OBC.CDL.Logical.And and2[nDev] "Logical and"
+ annotation (Placement(transformation(extent={{80,10},{100,30}})));
+
+ Buildings.Controls.OBC.CDL.Logical.MultiOr mulOr(
+ final nin=nDev) "Array or"
+ annotation (Placement(transformation(extent={{120,10},{140,30}})));
+
+ Buildings.Controls.OBC.CDL.Logical.MultiAnd allOn(
+ final nin=nDev) "Outputs true if all devices are enabled"
+ annotation (Placement(transformation(extent={{-60,20},{-40,40}})));
+
+ Buildings.Controls.OBC.CDL.Logical.MultiOr anyOn(
+ final nin=nDev) "Checks if any device is disabled"
+ annotation (Placement(transformation(extent={{-100,-20},{-80,0}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Not allOff
+ "Returns true if all devices are disabled"
+ annotation (Placement(transformation(extent={{-60,-20},{-40,0}})));
+
+ Buildings.Controls.OBC.CDL.Routing.BooleanScalarReplicator booRep1(
+ final nout=nDev) "Booolean replicator"
+ annotation (Placement(transformation(extent={{20,10},{40,30}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Or equSig
+ "Outputs true if either all devices are enabled or all devices are disabled"
+ annotation (Placement(transformation(extent={{-20,10},{0,30}})));
+
+ Buildings.Controls.OBC.CDL.Logical.FallingEdge falEdg1[nDev] "Falling Edge"
+ annotation (Placement(transformation(extent={{-140,-70},{-120,-50}})));
+
+equation
+ connect(mulOr.u, and2.y)
+ annotation (Line(points={{118,20},{102,20}}, color={255,0,255}));
+
+ connect(booRep1.y, and2.u2)
+ annotation (Line(points={{42,20},{50,20},{50,12},{78,12}}, color={255,0,255}));
+ connect(anyOn.y, allOff.u)
+ annotation (Line(points={{-78,-10},{-62,-10}}, color={255,0,255}));
+ connect(booRep1.u, equSig.y)
+ annotation (Line(points={{18,20},{2,20}}, color={255,0,255}));
+ connect(allOff.y, equSig.u2) annotation (Line(points={{-38,-10},{-30,-10},{-30,
+ 12},{-22,12}}, color={255,0,255}));
+ connect(allOn.y, equSig.u1) annotation (Line(points={{-38,30},{-30,30},{-30,20},
+ {-22,20}},color={255,0,255}));
+ connect(uDevSta, accTim.u)
+ annotation (Line(points={{-180,60},{-62,60}}, color={255,0,255}));
+ connect(uDevSta, allOn.u) annotation (Line(points={{-180,60},{-80,60},{-80,
+ 30},{-62,30}}, color={255,0,255}));
+ connect(uDevSta, anyOn.u) annotation (Line(points={{-180,60},{-120,60},{-120,
+ -10},{-102,-10}}, color={255,0,255}));
+ connect(mulOr.y, yRot)
+ annotation (Line(points={{142,20},{180,20}}, color={255,0,255}));
+ connect(uPreDevRolSig, falEdg1.u)
+ annotation (Line(points={{-180,-60},{-142,-60}}, color={255,0,255}));
+ connect(falEdg1.y, accTim.reset) annotation (Line(points={{-118,-60},{-110,-60},
+ {-110,52},{-62,52}}, color={255,0,255}));
+ connect(accTim.passed, and2.u1) annotation (Line(points={{-38,52},{60,52},{60,
+ 20},{78,20}}, color={255,0,255}));
+ annotation (Diagram(coordinateSystem(extent={{-160,-80},{160,80}})),
+ defaultComponentName="minLeaTim",
+ Icon(graphics={
+ Rectangle(
+ extent={{-100,-100},{100,100}},
+ lineColor={0,0,127},
+ fillColor={255,255,255},
+ fillPattern=FillPattern.Solid),
+ Text(
+ extent={{-120,146},{100,108}},
+ textColor={0,0,255},
+ textString="%name"),
+ Line(points={{-66,-70},{82,-70}},
+ color={192,192,192}),
+ Line(points={{-58,68},{-58,-80}},
+ color={192,192,192}),
+ Polygon(lineColor={192,192,192},
+ fillColor={192,192,192},
+ fillPattern=FillPattern.Solid,
+ points={{90.0,-70.0},{68.0,-62.0},{68.0,-78.0},{90.0,-70.0}}),
+ Polygon(lineColor={192,192,192},
+ fillColor={192,192,192},
+ fillPattern=FillPattern.Solid,
+ points={{-58,90},{-66,68},{-50,68},{-58,90}}),
+ Line(points={{-56,-70},{-38,-70},{-38,-26},{40,-26},{40,-70},{68,-70}},
+ color={255,0,255}),
+ Line(points={{-58,0},{-40,0},{40,90},{40,0},{68,0}},
+ color={0,0,127})}),
+ Documentation(info="
+
+This subsequence generates a rotation trigger based on measuring time each of the devices enable time.
+The rotation trigger output yRot
is generated as the current lead device runtime
+exceeds minLeaRuntime
and the conditions are met such that the devices are not hot swapped. To
+avoid hot swapping the lead and lag/standby device need to be either both ON or both OFF for the rotation to occur.
+As the rotation trigger output yRot
signal is generated, the runtime for the previous lead device
+or group of devices is reset to zero.
+
+This is an OBC custom implementation.
+
+", revisions="
+
+-
+May 15, 2020, by Milica Grahovac:
+First implementation.
+
+
+"));
+end MinimumLeadRuntime;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Generic/EquipmentRotation/Subsequences/Scheduler.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Generic/EquipmentRotation/Subsequences/Scheduler.mo
new file mode 100644
index 00000000000..cec7329b8c3
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Generic/EquipmentRotation/Subsequences/Scheduler.mo
@@ -0,0 +1,251 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Generic.EquipmentRotation.Subsequences;
+block Scheduler
+ "Equipment rotation signal based on a scheduler for equipment that runs continuously"
+
+ parameter Buildings.Controls.OBC.CDL.Types.ZeroTime zerTim = Buildings.Controls.OBC.CDL.Types.ZeroTime.NY2019
+ "Enumeration for choosing how reference time (time = 0) should be defined"
+ annotation(Dialog(group="Calendar", enable=not simTimSta));
+
+ parameter Integer yearRef(
+ final min=firstYear,
+ final max=lastYear) = 2019
+ "Year when time = 0, used if zerTim=Custom"
+ annotation(Dialog(group="Calendar", enable=zerTim==Buildings.Controls.OBC.CDL.Types.ZeroTime.Custom));
+
+ parameter Real offset(
+ final unit="s",
+ final quantity="Time") = 0
+ "Offset that is added to 'time', may be used for computing time in different time zone"
+ annotation(Dialog(group="Calendar", enable=not simTimSta));
+
+ parameter Real rotationPeriod(
+ final unit="s",
+ final quantity="Time",
+ displayUnit="h") = 1209600
+ "Rotation time period measured from simulation start"
+ annotation(Dialog(group="Calendar", enable=simTimSta));
+
+ parameter Real iniRotDel(
+ final unit="s",
+ final quantity="Time",
+ displayUnit="s") = 1
+ "Delay before the first rotation measured from simulation start"
+ annotation(Dialog(group="Calendar", enable=simTimSta));
+
+ parameter Boolean simTimSta = true
+ "Measure rotation time from the simulation start";
+
+ parameter Boolean weeInt = false
+ "Rotation is scheduled in: true = weekly intervals; false = daily intervals"
+ annotation (Evaluate=true, Dialog(enable=not simTimSta));
+
+ parameter Integer houOfDay = 2 "Rotation hour of the day: 0 = midnight; 23 = 11pm"
+ annotation (Evaluate=true, Dialog(enable=not simTimSta));
+
+ parameter Integer weeCou = 1 "Number of weeks"
+ annotation (Evaluate=true, Dialog(enable=weeInt and not simTimSta));
+
+ parameter Integer weekday = 1
+ "Rotation weekday, 1 = Monday, 7 = Sunday"
+ annotation (Evaluate=true, Dialog(enable=weeInt and not simTimSta));
+
+ parameter Integer dayCou = 1 "Number of days"
+ annotation (Evaluate=true, Dialog(enable=not weeInt and not simTimSta));
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanOutput yRot
+ "Rotation trigger signal"
+ annotation (Placement(transformation(extent={{160,-20},{200,20}}),
+ iconTransformation(extent={{100,-20},{140,20}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.CalendarTime calTim(
+ final zerTim=zerTim,
+ final yearRef=yearRef,
+ final offset=offset) if not simTimSta
+ "Calendar time"
+ annotation (Placement(transformation(extent={{-140,100},{-120,120}})));
+
+ Buildings.Controls.OBC.CDL.Integers.OnCounter onCouInt if not simTimSta
+ "Integer counter"
+ annotation (Placement(transformation(extent={{0,10},{20,30}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.SampleTrigger rotTri(final period=
+ rotationPeriod, final shift=0) if simTimSta "Sample trigger"
+ annotation (Placement(transformation(extent={{-140,-120},{-120,-100}})));
+
+protected
+ final constant Integer firstYear = 2010
+ "First year that is supported, i.e. the first year in timeStampsNewYear[:]";
+
+ final constant Integer lastYear = firstYear + 11
+ "Last year that is supported (actual building automation system need to support a larger range)";
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant houOfDay1(
+ final k=houOfDay) if not simTimSta
+ "Hour of the day for rotating devices that run continuously"
+ annotation (Placement(transformation(extent={{-140,60},{-120,80}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant weeDay(
+ final k=weekday) if (weeInt and not simTimSta) "Weekday for the rotation"
+ annotation (Placement(transformation(extent={{-140,20},{-120,40}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant weeCou1(
+ final k=weeCou) if (weeInt and not simTimSta) "Number of weeks for scheduled rotation"
+ annotation (Placement(transformation(extent={{-140,-30},{-120,-10}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant dayCou1(
+ final k=dayCou) if (not weeInt and not simTimSta) "Number of days for scheduled rotation"
+ annotation (Placement(transformation(extent={{-140,-70},{-120,-50}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Equal isWee if (weeInt and not simTimSta)
+ "Checks if current weekday is the rotation weekday"
+ annotation (Placement(transformation(extent={{-100,30},{-80,50}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Equal intEqu if not simTimSta
+ "Checks equality"
+ annotation (Placement(transformation(extent={{-80,80},{-60,100}})));
+
+ Buildings.Controls.OBC.CDL.Logical.And and2 if not simTimSta
+ "Logical and"
+ annotation (Placement(transformation(extent={{-40,10},{-20,30}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Equal intEqu2 if not simTimSta
+ "Logical equal"
+ annotation (Placement(transformation(extent={{40,10},{60,30}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Pre pre if not simTimSta
+ "Logical pre"
+ annotation (Placement(transformation(extent={{80,10},{100,30}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Edge edg if not simTimSta
+ "Rising edge"
+ annotation (Placement(transformation(extent={{120,10},{140,30}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant truSig(
+ final k=true) if (not weeInt and not simTimSta) "True signal"
+ annotation (Placement(transformation(extent={{-100,0},{-80,20}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Timer tim(
+ final t=iniRotDel) if simTimSta
+ "Timer"
+ annotation (Placement(transformation(extent={{-60,-100},{-40,-80}})));
+
+ Buildings.Controls.OBC.CDL.Logical.And and1 if simTimSta
+ "Logical And"
+ annotation (Placement(transformation(extent={{20,-120},{40,-100}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant con(
+ final k=true) if simTimSta "True constant for the timer"
+ annotation (Placement(transformation(extent={{-100,-100},{-80,-80}})));
+
+equation
+ connect(dayCou1.y, intEqu2.u2) annotation (Line(points={{-118,-60},{30,-60},{30,
+ 12},{38,12}}, color={255,127,0}));
+ connect(calTim.hour, intEqu.u1) annotation (Line(points={{-119,116},{-100,116},
+ {-100,90},{-82,90}},color={255,127,0}));
+ connect(houOfDay1.y, intEqu.u2) annotation (Line(points={{-118,70},{-100,70},{
+ -100,82},{-82,82}}, color={255,127,0}));
+ connect(calTim.weekDay, isWee.u1) annotation (Line(points={{-119,104},{-110,104},
+ {-110,40},{-102,40}}, color={255,127,0}));
+ connect(weeDay.y, isWee.u2) annotation (Line(points={{-118,30},{-110,30},{-110,
+ 32},{-102,32}}, color={255,127,0}));
+ connect(intEqu.y, and2.u1) annotation (Line(points={{-58,90},{-50,90},{-50,20},
+ {-42,20}},color={255,0,255}));
+ connect(intEqu2.y, pre.u)
+ annotation (Line(points={{62,20},{78,20}}, color={255,0,255}));
+ connect(pre.y, edg.u)
+ annotation (Line(points={{102,20},{118,20}}, color={255,0,255}));
+ connect(and2.y, onCouInt.trigger)
+ annotation (Line(points={{-18,20},{-2,20}},color={255,0,255}));
+ connect(onCouInt.y, intEqu2.u1)
+ annotation (Line(points={{22,20},{38,20}}, color={255,127,0}));
+ connect(pre.y, onCouInt.reset) annotation (Line(points={{102,20},{110,20},{110,
+ -8},{10,-8},{10,8}},color={255,0,255}));
+ connect(edg.y, yRot)
+ annotation (Line(points={{142,20},{150,20},{150,0},{180,0}}, color={255,0,255}));
+ connect(weeCou1.y, intEqu2.u2) annotation (Line(points={{-118,-20},{30,-20},{30,
+ 12},{38,12}}, color={255,127,0}));
+ connect(isWee.y, and2.u2) annotation (Line(points={{-78,40},{-60,40},{-60,12},
+ {-42,12}}, color={255,0,255}));
+ connect(truSig.y, and2.u2) annotation (Line(points={{-78,10},{-60,10},{-60,12},
+ {-42,12}}, color={255,0,255}));
+ connect(rotTri.y, and1.u2) annotation (Line(points={{-118,-110},{-70,-110},{-70,
+ -118},{18,-118}}, color={255,0,255}));
+ connect(and1.y, yRot) annotation (Line(points={{42,-110},{150,-110},{150,0},{180,
+ 0}}, color={255,0,255}));
+ connect(con.y, tim.u)
+ annotation (Line(points={{-78,-90},{-62,-90}}, color={255,0,255}));
+ connect(tim.passed, and1.u1) annotation (Line(points={{-38,-98},{0,-98},{0,
+ -110},{18,-110}}, color={255,0,255}));
+ annotation (Diagram(coordinateSystem(extent={{-160,-140},{160,140}})),
+ defaultComponentName="rotSch",
+ Icon(graphics={
+ Rectangle(
+ extent={{-100,-100},{100,100}},
+ lineColor={0,0,127},
+ fillColor={255,255,255},
+ fillPattern=FillPattern.Solid),
+ Ellipse(
+ extent={{71,7},{85,-7}},
+ lineColor=DynamicSelect({235,235,235}, if y then {0,255,0}
+ else {235,235,235}),
+ fillColor=DynamicSelect({235,235,235}, if y then {0,255,0}
+ else {235,235,235}),
+ fillPattern=FillPattern.Solid),
+ Ellipse(
+ extent={{-75,-6},{-89,8}},
+ lineColor=DynamicSelect({235,235,235}, if u1 then {0,255,0}
+ else {235,235,235}),
+ fillColor=DynamicSelect({235,235,235}, if u1 then {0,255,0}
+ else {235,235,235}),
+ fillPattern=FillPattern.Solid),
+ Text(
+ extent={{-120,146},{100,108}},
+ textColor={0,0,255},
+ textString="%name"),
+ Ellipse(
+ extent={{-52,56},{58,-54}},
+ lineColor={160,160,164},
+ fillColor={215,215,215},
+ fillPattern=FillPattern.Solid),
+ Line(
+ points={{4,0},{-20,24}},
+ thickness=0.5),
+ Line(
+ points={{4,0},{30,0}},
+ thickness=0.5)}),
+ Documentation(info="
+
+This block outputs generates a rotation trigger at
+chosen time intervals for lead/standby configurations where a lead device runs continuously.
+The implementation is based on RP 1711 5.1.2.4.2, except 5.1.2.4.2 a.
+
+
+The user may chose to start counting time from simulation start to generate the
+rotation signal at regular intervals rotationPeriod
by setting a
+flag sinTimSta
to true
, or to use a calendar.
+
+
+If a calender is used the user needs to select the time of the day as an hour between 0 and 23 at which the rotation shall occur.
+Hour 0 is midnight.
+The block implements two options to select the time interval for the equipment rotation:
+
+
+-
+Each
dayCou
days;
+
+-
+Each
weeCou
weeks on a weekday
selected between 1 = Monday and 7 = Sunday.
+
+
+
+To enable weekly intervals set the weeInt
to true, otherwise a number of days can be used.
+
+", revisions="
+
+-
+May 18, 2020, by Milica Grahovac:
+First implementation.
+
+
+"));
+end Scheduler;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Generic/EquipmentRotation/Subsequences/Two.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Generic/EquipmentRotation/Subsequences/Two.mo
new file mode 100644
index 00000000000..aa373381d96
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Generic/EquipmentRotation/Subsequences/Two.mo
@@ -0,0 +1,115 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Generic.EquipmentRotation.Subsequences;
+block Two
+ "Updates device roles based on the equipment rotation signal"
+
+ parameter Boolean initRoles[nDev] = {true, false}
+ "Initial roles: true = lead, false = lag/standby"
+ annotation (Evaluate=true,Dialog(tab="Advanced", group="Initiation"));
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uRot
+ "Rising edge to rotate the equipment"
+ annotation (Placement(transformation(extent={{-140,-20},{-100,20}}),
+ iconTransformation(extent={{-140,-20},{-100,20}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanOutput yDevRol[nDev]
+ "Device role: true = lead, false = lag or standby"
+ annotation (Placement(
+ transformation(extent={{100,10},{120,30}}), iconTransformation(extent={{100,-20},
+ {140,20}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanOutput yPreDevRolSig[nDev]
+ "Device roles in the previous time instance: true = lead; false = lag or standby"
+ annotation (Placement(transformation(extent={{100,-30},{120,-10}}),
+ iconTransformation(extent={{100,-80},{140,-40}})));
+
+protected
+ final parameter Integer nDev = 2
+ "Total number of devices, such as chillers, isolation valves, CW pumps, or CHW pumps";
+
+ Buildings.Controls.OBC.CDL.Logical.Not not0[nDev] "Logical not"
+ annotation (Placement(transformation(extent={{-60,-20},{-40,0}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Switch logSwi[nDev] "Switch"
+ annotation (Placement(transformation(extent={{0,-10},{20,10}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Pre pre[nDev](
+ final pre_u_start=initRoles) "Previous timestep"
+ annotation (Placement(transformation(extent={{40,-30},{60,-10}})));
+
+ Buildings.Controls.OBC.CDL.Routing.BooleanScalarReplicator booRep(
+ final nout=nDev) "Signal replicator"
+ annotation (Placement(transformation(extent={{-60,20},{-40,40}})));
+
+equation
+ connect(logSwi.u1,not0. y) annotation (Line(points={{-2,8},{-30,8},{-30,-10},{
+ -38,-10}}, color={255,0,255}));
+ connect(logSwi.y,pre. u) annotation (Line(points={{22,0},{30,0},{30,-20},{38,-20}},
+ color={255,0,255}));
+ connect(pre.y,not0. u) annotation (Line(points={{62,-20},{80,-20},{80,-40},{-70,
+ -40},{-70,-10},{-62,-10}}, color={255,0,255}));
+ connect(pre.y,logSwi. u3) annotation (Line(points={{62,-20},{72,-20},{72,-34},
+ {-14,-34},{-14,-8},{-2,-8}}, color={255,0,255}));
+ connect(logSwi.y, yDevRol) annotation (Line(points={{22,0},{66,0},{66,20},{110,
+ 20}}, color={255,0,255}));
+ connect(uRot, booRep.u)
+ annotation (Line(points={{-120,0},{-80,0},{-80,30},{-62,30}},color={255,0,255}));
+ connect(booRep.y, logSwi.u2) annotation (Line(points={{-38,30},{-20,30},{-20,0},
+ {-2,0}}, color={255,0,255}));
+ connect(pre.y, yPreDevRolSig) annotation (Line(points={{62,-20},{110,-20}},
+ color={255,0,255}));
+ annotation (Diagram(coordinateSystem(extent={{-100,-60},{100,60}})),
+ defaultComponentName="rotTwo",
+ Icon(graphics={
+ Rectangle(
+ extent={{-100,-100},{100,100}},
+ lineColor={0,0,127},
+ fillColor={255,255,255},
+ fillPattern=FillPattern.Solid),
+ Text(
+ extent={{-120,146},{100,108}},
+ textColor={0,0,255},
+ textString="%name"),
+ Line(points={{-40,60},{0,60},{0,-60},{40,-60}}, color={128,128,128}),
+ Ellipse(
+ origin={-26.6667,38.6207},
+ lineColor={128,128,128},
+ fillColor={255,255,255},
+ fillPattern=FillPattern.Solid,
+ extent={{-53.3333,1.37927},{-13.3329,41.3792}}),
+ Ellipse(
+ origin={93.333,38.6207},
+ lineColor={128,128,128},
+ fillColor={28,108,200},
+ fillPattern=FillPattern.Solid,
+ extent={{-53.3333,1.37927},{-13.3329,41.3792}}),
+ Ellipse(
+ origin={93.3333,-81.3793},
+ lineColor={128,128,128},
+ fillColor={255,255,255},
+ fillPattern=FillPattern.Solid,
+ extent={{-53.3333,1.37927},{-13.3329,41.3792}}),
+ Ellipse(
+ origin={-26.6667,-81.3793},
+ lineColor={128,128,128},
+ fillColor={28,108,200},
+ fillPattern=FillPattern.Solid,
+ extent={{-53.3333,1.37927},{-13.3329,41.3792}}),
+ Line(points={{-40,-60},{0,-60},{0,60},{40,60}}, color={128,128,128})}),
+ Documentation(info="
+
+This subsequence takes a rotation trigger signal uRot
as input to
+rotate the device roles for two devices or groups of devices. It outputs the current device roles yDevRol
+vector and its previous time instance value yPreDevRolSig
, which is used
+as an input signal to any upstream subsequences in the
+
+Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Generic.EquipmentRotation.ControllerTwo.
+
+", revisions="
+
+-
+May 18, 2020, by Milica Grahovac:
+First implementation.
+
+
+"));
+end Two;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Generic/EquipmentRotation/Subsequences/Validation/ContinuousLeadSwapTwo_uDevSta.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Generic/EquipmentRotation/Subsequences/Validation/ContinuousLeadSwapTwo_uDevSta.mo
new file mode 100644
index 00000000000..e2c90186e18
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Generic/EquipmentRotation/Subsequences/Validation/ContinuousLeadSwapTwo_uDevSta.mo
@@ -0,0 +1,177 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Generic.EquipmentRotation.Subsequences.Validation;
+model ContinuousLeadSwapTwo_uDevSta
+ "Validation sequence for lead device swap at continuous lead operation"
+
+ parameter Real aveTWetBul(
+ final unit="K",
+ final quantity="ThermodynamicTemperature",
+ displayUnit="degC")=288.15
+ "Chilled water supply set temperature";
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Generic.EquipmentRotation.Subsequences.ContinuousLeadSwapTwo leaSwa
+ "Makes sure the new lead device is proven on before passing on the lead role"
+ annotation (Placement(transformation(extent={{-40,40},{-20,60}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Generic.EquipmentRotation.Subsequences.ContinuousLeadSwapTwo leaSwa1
+ "A way to switch two signals and invert their values"
+ annotation (Placement(transformation(extent={{-40,-30},{-20,-10}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Generic.EquipmentRotation.Subsequences.ContinuousLeadSwapTwo leaSwa2
+ "Makes sure the new lead device is proven on before passing on the lead role"
+ annotation (Placement(transformation(extent={{180,40},{200,60}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Generic.EquipmentRotation.Subsequences.ContinuousLeadSwapTwo leaSwa3
+ "Makes sure the new lead device is proven on before passing on the lead role"
+ annotation (Placement(transformation(extent={{180,-80},{200,-60}})));
+
+protected
+ Buildings.Controls.OBC.CDL.Logical.Sources.Pulse booPul(
+ final width=0.5,
+ final period=10) "Pulse signal"
+ annotation (Placement(transformation(extent={{-200,80},{-180,100}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Pulse booPul1(
+ final width=0.5,
+ final period=15,
+ final shift=0) "Pulse signal"
+ annotation (Placement(transformation(extent={{-200,20},{-180,40}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Pulse booPul2(
+ final width=0.5,
+ final period=10) "Pulse signal"
+ annotation (Placement(transformation(extent={{-200,-20},{-180,0}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Pulse booPul4(
+ final width=0.5,
+ final period=11) "Pulse signal"
+ annotation (Placement(transformation(extent={{20,80},{40,100}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Pulse booPul5(
+ final width=0.5,
+ final period=7,
+ final shift=0) "Pulse signal"
+ annotation (Placement(transformation(extent={{20,20},{40,40}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Pulse booPul6(
+ final width=0.5,
+ final period=10) "Pulse signal"
+ annotation (Placement(transformation(extent={{20,-40},{40,-20}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Pulse booPul7(
+ final width=0.5,
+ final period=10,
+ final shift=1) "Pulse signal"
+ annotation (Placement(transformation(extent={{20,-100},{40,-80}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Not not1 "Not"
+ annotation (Placement(transformation(extent={{-160,60},{-140,80}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Not not2 "Not"
+ annotation (Placement(transformation(extent={{-160,20},{-140,40}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Not not4 "Not"
+ annotation (Placement(transformation(extent={{-160,-40},{-140,-20}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Not not5 "Not"
+ annotation (Placement(transformation(extent={{60,20},{80,40}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Not not6 "Not"
+ annotation (Placement(transformation(extent={{60,60},{80,80}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Not not7 "Not"
+ annotation (Placement(transformation(extent={{60,-100},{80,-80}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Not not8 "Not"
+ annotation (Placement(transformation(extent={{60,-60},{80,-40}})));
+
+ Buildings.Controls.OBC.CDL.Logical.TrueFalseHold truFalHol(
+ final trueHoldDuration=0,
+ final falseHoldDuration=6) "Holds false signal"
+ annotation (Placement(transformation(extent={{-100,-60},{-80,-40}})));
+
+ Buildings.Controls.OBC.CDL.Logical.TrueFalseHold truFalHol1(
+ final trueHoldDuration=0,
+ final falseHoldDuration=6) "Holds false signal"
+ annotation (Placement(transformation(extent={{-100,-100},{-80,-80}})));
+
+equation
+ connect(booPul.y, not1.u) annotation (
+ Line(points={{-178,90},{-170,90},{-170,70},{-162,70}}, color={255,0,255}));
+ connect(booPul.y,leaSwa. uDevSta[1]) annotation (
+ Line(points={{-178,90},{-90,90},{-90,46},{-42,46}}, color={255,0,255}));
+ connect(booPul1.y, not2.u)
+ annotation (Line(points={{-178,30},{-162,30}},color={255,0,255}));
+ connect(not2.y,leaSwa. uDevSta[2]) annotation (
+ Line(points={{-138,30},{-120,30},{-120,46},{-42,46}},color={255,0,255}));
+
+ connect(booPul.y, leaSwa.uDevRolSet[1]) annotation (Line(points={{-178,90},{-60,
+ 90},{-60,54},{-42,54}}, color={255,0,255}));
+ connect(not1.y, leaSwa.uDevRolSet[2]) annotation (Line(points={{-138,70},{-60,
+ 70},{-60,54},{-42,54}}, color={255,0,255}));
+ connect(booPul2.y, not4.u) annotation (Line(points={{-178,-10},{-170,-10},{-170,
+ -30},{-162,-30}}, color={255,0,255}));
+ connect(booPul4.y, not6.u) annotation (Line(points={{42,90},{50,90},{50,70},{58,
+ 70}}, color={255,0,255}));
+ connect(booPul4.y, leaSwa2.uDevSta[1]) annotation (Line(points={{42,90},{130,90},
+ {130,46},{178,46}}, color={255,0,255}));
+ connect(booPul5.y,not5. u)
+ annotation (Line(points={{42,30},{58,30}}, color={255,0,255}));
+ connect(not5.y, leaSwa2.uDevSta[2]) annotation (Line(points={{82,30},{100,30},
+ {100,46},{178,46}}, color={255,0,255}));
+ connect(booPul4.y, leaSwa2.uDevRolSet[1]) annotation (Line(points={{42,90},{160,
+ 90},{160,54},{178,54}}, color={255,0,255}));
+ connect(not6.y, leaSwa2.uDevRolSet[2]) annotation (Line(points={{82,70},{160,70},
+ {160,54},{178,54}}, color={255,0,255}));
+ connect(booPul6.y,not8. u) annotation (Line(points={{42,-30},{50,-30},{50,-50},
+ {58,-50}}, color={255,0,255}));
+ connect(booPul6.y,leaSwa3. uDevSta[1]) annotation (Line(points={{42,-30},{130,
+ -30},{130,-74},{178,-74}}, color={255,0,255}));
+ connect(booPul7.y,not7. u)
+ annotation (Line(points={{42,-90},{58,-90}}, color={255,0,255}));
+ connect(not7.y,leaSwa3. uDevSta[2]) annotation (Line(points={{82,-90},{100,-90},
+ {100,-74},{178,-74}}, color={255,0,255}));
+ connect(booPul6.y,leaSwa3. uDevRolSet[1]) annotation (Line(points={{42,-30},{160,
+ -30},{160,-66},{178,-66}}, color={255,0,255}));
+ connect(not8.y,leaSwa3. uDevRolSet[2]) annotation (Line(points={{82,-50},{160,
+ -50},{160,-66},{178,-66}}, color={255,0,255}));
+ connect(booPul2.y, truFalHol.u) annotation (Line(points={{-178,-10},{-120,-10},
+ {-120,-50},{-102,-50}}, color={255,0,255}));
+ connect(not4.y, truFalHol1.u) annotation (Line(points={{-138,-30},{-130,-30},{
+ -130,-90},{-102,-90}}, color={255,0,255}));
+ connect(truFalHol.y, leaSwa1.uDevSta[1]) annotation (Line(points={{-78,-50},{-60,
+ -50},{-60,-24},{-42,-24}}, color={255,0,255}));
+ connect(truFalHol1.y, leaSwa1.uDevSta[2]) annotation (Line(points={{-78,-90},{
+ -60,-90},{-60,-24},{-42,-24}}, color={255,0,255}));
+ connect(booPul2.y, leaSwa1.uDevRolSet[1]) annotation (Line(points={{-178,-10},
+ {-60,-10},{-60,-16},{-42,-16}}, color={255,0,255}));
+ connect(not4.y, leaSwa1.uDevRolSet[2]) annotation (Line(points={{-138,-30},{-110,
+ -30},{-110,-16},{-42,-16}}, color={255,0,255}));
+annotation (
+ experiment(StopTime=180, Tolerance=1e-06),
+ __Dymola_Commands(file="modelica://Buildings/Resources/Scripts/Dymola/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Generic/EquipmentRotation/Subsequences/Validation/ContinuousLeadSwapTwo_uDevSta.mos"
+ "Simulate and plot"),
+ Documentation(info="
+
+This example validates
+
+Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Generic.EquipmentRotation.Subsequences.ContinuousLeadSwapTwo.
+
+", revisions="
+
+-
+May 18, 2020, by Milica Grahovac:
+First implementation.
+
+
+"),
+ Icon(graphics={Ellipse(lineColor = {75,138,73},
+ fillColor={255,255,255},
+ fillPattern = FillPattern.Solid,
+ extent = {{-100,-100},{100,100}}),
+ Polygon(lineColor = {0,0,255},
+ fillColor = {75,138,73},
+ pattern = LinePattern.None,
+ fillPattern = FillPattern.Solid,
+ points = {{-36,60},{64,0},{-36,-60},{-36,60}})}),
+ Diagram(coordinateSystem(preserveAspectRatio=false, extent={{-220,-120},{220,120}})));
+end ContinuousLeadSwapTwo_uDevSta;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Generic/EquipmentRotation/Subsequences/Validation/LeastRuntime_uDevRol.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Generic/EquipmentRotation/Subsequences/Validation/LeastRuntime_uDevRol.mo
new file mode 100644
index 00000000000..5dc24677abc
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Generic/EquipmentRotation/Subsequences/Validation/LeastRuntime_uDevRol.mo
@@ -0,0 +1,154 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Generic.EquipmentRotation.Subsequences.Validation;
+model LeastRuntime_uDevRol
+ "Validate lead/lag and lead/standby switching signal based on least device runtime"
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Generic.EquipmentRotation.Subsequences.LeastRuntime
+ leaRunTim(final lag=true)
+ "Equipment rotation signal based on device runtime and current device status"
+ annotation (Placement(transformation(extent={{40,40},{60,60}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Generic.EquipmentRotation.Subsequences.LeastRuntime
+ leaRunTim1(final lag=false)
+ "Equipment rotation signal based on device runtime and current device status"
+ annotation (Placement(transformation(extent={{40,-10},{60,10}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Generic.EquipmentRotation.Subsequences.LeastRuntime
+ leaRunTim2(final lag=true)
+ "Equipment rotation signal based on device runtime and current device status"
+ annotation (Placement(transformation(extent={{40,-60},{60,-40}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Generic.EquipmentRotation.Subsequences.Two
+ rotTwo "Updates device roles based on the equipment rotation signal"
+ annotation (Placement(transformation(extent={{80,40},{100,60}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Generic.EquipmentRotation.Subsequences.Two
+ rotTwo1 "Updates device roles based on the equipment rotation signal"
+ annotation (Placement(transformation(extent={{80,-10},{100,10}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Generic.EquipmentRotation.Subsequences.Two
+ rotTwo2 "Updates device roles based on the equipment rotation signal"
+ annotation (Placement(transformation(extent={{80,-60},{100,-40}})));
+
+protected
+ parameter Boolean initRoles[2] = {true, false}
+ "Sets initial roles: true = lead, false = lag or standby";
+
+ Buildings.Controls.OBC.CDL.Logical.Switch logSwi[2] "Switch"
+ annotation (Placement(transformation(extent={{0,40},{20,60}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Switch logSwi1[2] "Switch"
+ annotation (Placement(transformation(extent={{0,-10},{20,10}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Switch logSwi2[2] "Switch"
+ annotation (Placement(transformation(extent={{0,-60},{20,-40}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant staSta[2](
+ final k=fill(false, 2)) "Standby status"
+ annotation (Placement(transformation(extent={{-100,-20},{-80,0}})));
+
+ Buildings.Controls.OBC.CDL.Routing.BooleanScalarReplicator repLag1(final nout=2)
+ "Replicates lag signal"
+ annotation (Placement(transformation(extent={{-60,-80},{-40,-60}})));
+
+ Buildings.Controls.OBC.CDL.Routing.BooleanScalarReplicator repLag(final nout=2)
+ "Replicates lag signal"
+ annotation (Placement(transformation(extent={{-60,30},{-40,50}})));
+
+ Buildings.Controls.OBC.CDL.Routing.BooleanScalarReplicator repLead(final nout=2)
+ "Replicates lead signal"
+ annotation (Placement(transformation(extent={{-60,60},{-40,80}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Pulse leadLoad(
+ final width=0.8,
+ final period=7200) "Lead device enable status"
+ annotation (Placement(transformation(extent={{-100,70},{-80,90}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Pulse lagLoad(
+ final width=0.2, final period=3600) "Lag device enable status"
+ annotation (Placement(transformation(extent={{-100,20},{-80,40}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Pulse lagLoad1(
+ final width=0.2, final period=5400) "Lag device enable status"
+ annotation (Placement(transformation(extent={{-100,-80},{-80,-60}})));
+
+equation
+ connect(leadLoad.y, repLead.u) annotation (Line(points={{-78,80},{-70,80},{-70,
+ 70},{-62,70}}, color={255,0,255}));
+ connect(lagLoad.y, repLag.u) annotation (Line(points={{-78,30},{-70,30},{-70,40},
+ {-62,40}}, color={255,0,255}));
+ connect(repLead.y, logSwi.u1) annotation (Line(points={{-38,70},{-20,70},{-20,
+ 58},{-2,58}},color={255,0,255}));
+ connect(repLag.y, logSwi.u3) annotation (Line(points={{-38,40},{-10,40},{-10,42},
+ {-2,42}}, color={255,0,255}));
+ connect(logSwi.y,leaRunTim. uDevSta)
+ annotation (Line(points={{22,50},{38,50}}, color={255,0,255}));
+ connect(logSwi1.y,leaRunTim1. uDevSta)
+ annotation (Line(points={{22,0},{38,0}}, color={255,0,255}));
+ connect(staSta.y,logSwi1. u3) annotation (Line(points={{-78,-10},{-40,-10},{-40,
+ -8},{-2,-8}}, color={255,0,255}));
+ connect(repLead.y,logSwi1. u1) annotation (Line(points={{-38,70},{-30,70},{-30,
+ 8},{-2,8}}, color={255,0,255}));
+ connect(lagLoad1.y, repLag1.u)
+ annotation (Line(points={{-78,-70},{-62,-70}}, color={255,0,255}));
+ connect(repLead.y,logSwi2. u1) annotation (Line(points={{-38,70},{-30,70},{-30,
+ -42},{-2,-42}}, color={255,0,255}));
+ connect(repLag1.y,logSwi2. u3) annotation (Line(points={{-38,-70},{-30,-70},{-30,
+ -58},{-2,-58}}, color={255,0,255}));
+ connect(logSwi2.y,leaRunTim2. uDevSta)
+ annotation (Line(points={{22,-50},{38,-50}}, color={255,0,255}));
+ connect(leaRunTim.yRot, rotTwo.uRot)
+ annotation (Line(points={{62,50},{78,50}}, color={255,0,255}));
+ connect(rotTwo.yPreDevRolSig,leaRunTim. uPreDevRolSig) annotation (Line(points={{102,44},
+ {108,44},{108,30},{30,30},{30,42},{38,42}}, color={255,0,255}));
+ connect(rotTwo.yPreDevRolSig, logSwi.u2) annotation (Line(points={{102,44},{108,
+ 44},{108,30},{-20,30},{-20,50},{-2,50}}, color={255,0,255}));
+ connect(leaRunTim1.yRot, rotTwo1.uRot)
+ annotation (Line(points={{62,0},{78,0}}, color={255,0,255}));
+ connect(leaRunTim2.yRot, rotTwo2.uRot)
+ annotation (Line(points={{62,-50},{78,-50}}, color={255,0,255}));
+ connect(rotTwo2.yPreDevRolSig,leaRunTim2. uPreDevRolSig) annotation (Line(points={{102,-56},
+ {110,-56},{110,-70},{30,-70},{30,-58},{38,-58}}, color={255,
+ 0,255}));
+ connect(rotTwo2.yPreDevRolSig, logSwi2.u2) annotation (Line(points={{102,-56},
+ {110,-56},{110,-70},{-20,-70},{-20,-50},{-2,-50}}, color={255,0,255}));
+ connect(rotTwo1.yPreDevRolSig,leaRunTim1. uPreDevRolSig) annotation (Line(points={{102,-6},
+ {110,-6},{110,-20},{30,-20},{30,-8},{38,-8}}, color={255,0,
+ 255}));
+ connect(rotTwo1.yPreDevRolSig, logSwi1.u2) annotation (Line(points={{102,-6},{
+ 110,-6},{110,-20},{-20,-20},{-20,0},{-2,0}}, color={255,0,255}));
+ annotation (
+ experiment(StopTime=100000.0, Tolerance=1e-06),
+ __Dymola_Commands(file="modelica://Buildings/Resources/Scripts/Dymola/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Generic/EquipmentRotation/Subsequences/Validation/LeastRuntime_uDevRol.mos"
+ "Simulate and plot"),
+ Documentation(info="
+
+This example validates
+
+Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Generic.EquipmentRotation.Subsequences.LeastRuntime.
+
+", revisions="
+
+-
+May 15, 2020, by Milica Grahovac:
+First implementation.
+
+
+"),
+Icon(graphics={
+ Ellipse(lineColor = {75,138,73},
+ fillColor={255,255,255},
+ fillPattern = FillPattern.Solid,
+ extent = {{-100,-100},{100,100}}),
+ Polygon(lineColor = {0,0,255},
+ fillColor = {75,138,73},
+ pattern = LinePattern.None,
+ fillPattern = FillPattern.Solid,
+ points = {{-36,60},{64,0},{-36,-60},{-36,60}})}),Diagram(
+ coordinateSystem(preserveAspectRatio=false, extent={{-120,-120},{120,120}}),
+ graphics={Text(
+ extent={{-52,-104},{46,-114}},
+ textColor={0,0,127},
+ textString="For simplicity this test assumes
+the device ON/OFF status equals its setpoint
+(there is no delay in starting or stopping devices).")}));
+end LeastRuntime_uDevRol;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Generic/EquipmentRotation/Subsequences/Validation/MinimumLeadRuntime_uDevRol.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Generic/EquipmentRotation/Subsequences/Validation/MinimumLeadRuntime_uDevRol.mo
new file mode 100644
index 00000000000..d06d037dd71
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Generic/EquipmentRotation/Subsequences/Validation/MinimumLeadRuntime_uDevRol.mo
@@ -0,0 +1,155 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Generic.EquipmentRotation.Subsequences.Validation;
+model MinimumLeadRuntime_uDevRol
+ "Validate lead/lag and lead/standby switching signal based on device runtime"
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Generic.EquipmentRotation.Subsequences.MinimumLeadRuntime
+ minLeaTim(final minLeaRuntime=43200)
+ "Equipment rotation signal based on device runtime and current device status"
+ annotation (Placement(transformation(extent={{40,40},{60,60}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Generic.EquipmentRotation.Subsequences.MinimumLeadRuntime
+ minLeaTim1(final minLeaRuntime=18000)
+ "Equipment rotation signal based on device runtime and current device status"
+ annotation (Placement(transformation(extent={{40,-10},{60,10}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Generic.EquipmentRotation.Subsequences.MinimumLeadRuntime
+ minLeaTim2(final minLeaRuntime=14400)
+ "Equipment rotation signal based on device runtime and current device status"
+ annotation (Placement(transformation(extent={{40,-60},{60,-40}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Generic.EquipmentRotation.Subsequences.Two
+ rotTwo "Updates device roles based on the equipment rotation signal"
+ annotation (Placement(transformation(extent={{80,40},{100,60}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Generic.EquipmentRotation.Subsequences.Two
+ rotTwo1 "Updates device roles based on the equipment rotation signal"
+ annotation (Placement(transformation(extent={{80,-10},{100,10}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Generic.EquipmentRotation.Subsequences.Two
+ rotTwo2 "Updates device roles based on the equipment rotation signal"
+ annotation (Placement(transformation(extent={{80,-60},{100,-40}})));
+
+protected
+ parameter Boolean initRoles[2] = {true, false}
+ "Sets initial roles: true = lead, false = lag or standby";
+
+ Buildings.Controls.OBC.CDL.Logical.Switch logSwi[2] "Switch"
+ annotation (Placement(transformation(extent={{0,40},{20,60}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Switch logSwi1[2] "Switch"
+ annotation (Placement(transformation(extent={{0,-10},{20,10}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Switch logSwi2[2] "Switch"
+ annotation (Placement(transformation(extent={{0,-60},{20,-40}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant staSta[2](
+ final k=fill(false, 2)) "Standby status"
+ annotation (Placement(transformation(extent={{-100,-20},{-80,0}})));
+
+ Buildings.Controls.OBC.CDL.Routing.BooleanScalarReplicator repLag1(final nout=2)
+ "Replicates lag signal"
+ annotation (Placement(transformation(extent={{-60,-80},{-40,-60}})));
+
+ Buildings.Controls.OBC.CDL.Routing.BooleanScalarReplicator repLag(final nout=2)
+ "Replicates lag signal"
+ annotation (Placement(transformation(extent={{-60,30},{-40,50}})));
+
+ Buildings.Controls.OBC.CDL.Routing.BooleanScalarReplicator repLead(final nout=2)
+ "Replicates lead signal"
+ annotation (Placement(transformation(extent={{-60,60},{-40,80}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Pulse leadLoad(
+ final width=0.8,
+ final period=7200) "Lead device enable status"
+ annotation (Placement(transformation(extent={{-100,70},{-80,90}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Pulse lagLoad(
+ final width=0.2, final period=3600) "Lag device enable status"
+ annotation (Placement(transformation(extent={{-100,20},{-80,40}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Pulse lagLoad1(
+ final width=0.2, final period=5400) "Lag device enable status"
+ annotation (Placement(transformation(extent={{-100,-80},{-80,-60}})));
+
+equation
+ connect(leadLoad.y, repLead.u) annotation (Line(points={{-78,80},{-70,80},{-70,
+ 70},{-62,70}}, color={255,0,255}));
+ connect(lagLoad.y, repLag.u) annotation (Line(points={{-78,30},{-70,30},{-70,40},
+ {-62,40}}, color={255,0,255}));
+ connect(repLead.y, logSwi.u1) annotation (Line(points={{-38,70},{-20,70},{-20,
+ 58},{-2,58}},color={255,0,255}));
+ connect(repLag.y, logSwi.u3) annotation (Line(points={{-38,40},{-10,40},{-10,42},
+ {-2,42}}, color={255,0,255}));
+ connect(logSwi.y, minLeaTim.uDevSta)
+ annotation (Line(points={{22,50},{38,50}}, color={255,0,255}));
+ connect(logSwi1.y, minLeaTim1.uDevSta)
+ annotation (Line(points={{22,0},{38,0}}, color={255,0,255}));
+ connect(staSta.y,logSwi1. u3) annotation (Line(points={{-78,-10},{-40,-10},{-40,
+ -8},{-2,-8}}, color={255,0,255}));
+ connect(repLead.y,logSwi1. u1) annotation (Line(points={{-38,70},{-30,70},{-30,
+ 8},{-2,8}}, color={255,0,255}));
+ connect(lagLoad1.y, repLag1.u)
+ annotation (Line(points={{-78,-70},{-62,-70}}, color={255,0,255}));
+ connect(repLead.y,logSwi2. u1) annotation (Line(points={{-38,70},{-30,70},{-30,
+ -42},{-2,-42}}, color={255,0,255}));
+ connect(repLag1.y,logSwi2. u3) annotation (Line(points={{-38,-70},{-30,-70},{-30,
+ -58},{-2,-58}}, color={255,0,255}));
+ connect(logSwi2.y, minLeaTim2.uDevSta)
+ annotation (Line(points={{22,-50},{38,-50}}, color={255,0,255}));
+ connect(minLeaTim.yRot, rotTwo.uRot)
+ annotation (Line(points={{62,50},{78,50}}, color={255,0,255}));
+ connect(rotTwo.yPreDevRolSig, minLeaTim.uPreDevRolSig) annotation (Line(points={{102,44},
+ {108,44},{108,30},{30,30},{30,42},{38,42}}, color={255,0,255}));
+ connect(rotTwo.yPreDevRolSig, logSwi.u2) annotation (Line(points={{102,44},{108,
+ 44},{108,30},{-20,30},{-20,50},{-2,50}}, color={255,0,255}));
+ connect(minLeaTim1.yRot, rotTwo1.uRot)
+ annotation (Line(points={{62,0},{78,0}}, color={255,0,255}));
+ connect(minLeaTim2.yRot, rotTwo2.uRot)
+ annotation (Line(points={{62,-50},{78,-50}}, color={255,0,255}));
+ connect(rotTwo2.yPreDevRolSig, minLeaTim2.uPreDevRolSig) annotation (Line(points={{102,-56},
+ {110,-56},{110,-70},{30,-70},{30,-58},{38,-58}}, color={255,
+ 0,255}));
+ connect(rotTwo2.yPreDevRolSig, logSwi2.u2) annotation (Line(points={{102,-56},
+ {110,-56},{110,-70},{-20,-70},{-20,-50},{-2,-50}}, color={255,0,255}));
+ connect(rotTwo1.yPreDevRolSig, minLeaTim1.uPreDevRolSig) annotation (Line(points={{102,-6},
+ {110,-6},{110,-20},{30,-20},{30,-8},{38,-8}}, color={255,0,
+ 255}));
+ connect(rotTwo1.yPreDevRolSig, logSwi1.u2) annotation (Line(points={{102,-6},{
+ 110,-6},{110,-20},{-20,-20},{-20,0},{-2,0}}, color={255,0,255}));
+
+annotation (
+ experiment(StopTime=100000.0, Tolerance=1e-06),
+ __Dymola_Commands(file="modelica://Buildings/Resources/Scripts/Dymola/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Generic/EquipmentRotation/Subsequences/Validation/MinimumLeadRuntime_uDevRol.mos"
+ "Simulate and plot"),
+ Documentation(info="
+
+This example validates
+
+Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Generic.EquipmentRotation.Subsequences.MinimumLeadRuntime.
+
+", revisions="
+
+-
+May 15, 2020, by Milica Grahovac:
+First implementation.
+
+
+"),
+Icon(graphics={
+ Ellipse(lineColor = {75,138,73},
+ fillColor={255,255,255},
+ fillPattern = FillPattern.Solid,
+ extent = {{-100,-100},{100,100}}),
+ Polygon(lineColor = {0,0,255},
+ fillColor = {75,138,73},
+ pattern = LinePattern.None,
+ fillPattern = FillPattern.Solid,
+ points = {{-36,60},{64,0},{-36,-60},{-36,60}})}),Diagram(
+ coordinateSystem(preserveAspectRatio=false, extent={{-120,-120},{120,120}}),
+ graphics={Text(
+ extent={{-52,-104},{46,-114}},
+ textColor={0,0,127},
+ textString="For simplicity this test assumes
+the device ON/OFF status equals its setpoint
+(there is no delay in starting or stopping devices).")}));
+end MinimumLeadRuntime_uDevRol;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Generic/EquipmentRotation/Subsequences/Validation/Scheduler.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Generic/EquipmentRotation/Subsequences/Validation/Scheduler.mo
new file mode 100644
index 00000000000..ed9f74289b6
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Generic/EquipmentRotation/Subsequences/Validation/Scheduler.mo
@@ -0,0 +1,118 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Generic.EquipmentRotation.Subsequences.Validation;
+model Scheduler
+ "Validation sequence for the device swap scheduler in case of continuous lead device operation"
+
+ parameter Real aveTWetBul(
+ final unit="K",
+ final quantity="ThermodynamicTemperature",
+ displayUnit="degC")=288.15
+ "Chilled water supply set temperature";
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Generic.EquipmentRotation.Subsequences.Scheduler
+ rotSch(
+ final simTimSta=false,
+ final weeInt=false,
+ final dayCou=10) "Equipment rotation happens every 10 days at 2am"
+ annotation (Placement(transformation(extent={{-40,70},{-20,90}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Generic.EquipmentRotation.Subsequences.Scheduler
+ rotSch1(
+ final simTimSta=false,
+ weeInt=true,
+ final weeCou=2,
+ final weekday=2) "Equipment rotation happens bi-weekly on Tuesday at 2am"
+ annotation (Placement(transformation(extent={{-40,30},{-20,50}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Generic.EquipmentRotation.Subsequences.Scheduler
+ rotSch2(
+ final weeInt=false,
+ final houOfDay=5,
+ final dayCou=6) "Equipment rotation happens every 5 days at 6am"
+ annotation (Placement(transformation(extent={{-40,-10},{-20,10}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Generic.EquipmentRotation.Subsequences.Scheduler
+ rotSch3(
+ final simTimSta=false,
+ final weeInt=true,
+ final houOfDay=12,
+ final weeCou=4,
+ final weekday=6) "Equipment rotation happens every 4 weeks on Saturday at noon"
+ annotation (Placement(transformation(extent={{-40,-50},{-20,-30}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Generic.EquipmentRotation.Subsequences.Scheduler
+ rotSch4(
+ final rotationPeriod=86400,
+ simTimSta=true,
+ final weeInt=true,
+ final houOfDay=12,
+ final weeCou=4,
+ final weekday=6) "Equipment rotation happens every 4 weeks on Saturday at noon"
+ annotation (Placement(transformation(extent={{-40,-90},{-20,-70}})));
+
+ Buildings.Controls.OBC.CDL.Logical.TrueFalseHold truFalHol(
+ final trueHoldDuration=1800,
+ final falseHoldDuration=0) "Holds the signal for visualization purposes"
+ annotation (Placement(transformation(extent={{20,70},{40,90}})));
+
+ Buildings.Controls.OBC.CDL.Logical.TrueFalseHold truFalHol1(
+ final trueHoldDuration=1800,
+ final falseHoldDuration=0) "Holds the signal for visualization purposes"
+ annotation (Placement(transformation(extent={{20,30},{40,50}})));
+
+ Buildings.Controls.OBC.CDL.Logical.TrueFalseHold truFalHol2(
+ final trueHoldDuration=1800,
+ final falseHoldDuration=0) "Holds the signal for visualization purposes"
+ annotation (Placement(transformation(extent={{20,-10},{40,10}})));
+
+ Buildings.Controls.OBC.CDL.Logical.TrueFalseHold truFalHol3(
+ final trueHoldDuration=1800,
+ final falseHoldDuration=0) "Holds the signal for visualization purposes"
+ annotation (Placement(transformation(extent={{20,-50},{40,-30}})));
+
+ Buildings.Controls.OBC.CDL.Logical.TrueFalseHold truFalHol4(
+ final trueHoldDuration=1800,
+ final falseHoldDuration=0)
+ "Holds the signal for visualization purposes"
+ annotation (Placement(transformation(extent={{20,-90},{40,-70}})));
+
+equation
+ connect(rotSch.yRot, truFalHol.u)
+ annotation (Line(points={{-18,80},{18,80}}, color={255,0,255}));
+ connect(rotSch1.yRot, truFalHol1.u)
+ annotation (Line(points={{-18,40},{18,40}},color={255,0,255}));
+ connect(rotSch2.yRot, truFalHol2.u)
+ annotation (Line(points={{-18,0},{18,0}}, color={255,0,255}));
+ connect(rotSch3.yRot, truFalHol3.u)
+ annotation (Line(points={{-18,-40},{18,-40}},color={255,0,255}));
+ connect(rotSch4.yRot,truFalHol4. u)
+ annotation (Line(points={{-18,-80},{18,-80}},color={255,0,255}));
+annotation (
+ experiment(StopTime=3000000, Tolerance=1e-06),
+ __Dymola_Commands(file="modelica://Buildings/Resources/Scripts/Dymola/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Generic/EquipmentRotation/Subsequences/Validation/Scheduler.mos"
+ "Simulate and plot"),
+ Documentation(info="
+
+This example validates
+
+Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Generic.EquipmentRotation.Scheduler.
+
+", revisions="
+
+-
+May 18, 2020, by Milica Grahovac:
+First implementation.
+
+
+"),
+ Icon(coordinateSystem(extent={{-60,-100},{60,100}}),
+ graphics={Ellipse(lineColor = {75,138,73},
+ fillColor={255,255,255},
+ fillPattern = FillPattern.Solid,
+ extent = {{-100,-100},{100,100}}),
+ Polygon(lineColor = {0,0,255},
+ fillColor = {75,138,73},
+ pattern = LinePattern.None,
+ fillPattern = FillPattern.Solid,
+ points = {{-36,60},{64,0},{-36,-60},{-36,60}})}),
+ Diagram(coordinateSystem(preserveAspectRatio=false, extent={{-60,-100},{60,100}})));
+end Scheduler;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Generic/EquipmentRotation/Subsequences/Validation/Two_uRot.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Generic/EquipmentRotation/Subsequences/Validation/Two_uRot.mo
new file mode 100644
index 00000000000..d2dca7e7970
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Generic/EquipmentRotation/Subsequences/Validation/Two_uRot.mo
@@ -0,0 +1,55 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Generic.EquipmentRotation.Subsequences.Validation;
+model Two_uRot
+ "Validation sequence for device role rotation for two devices or groups of devices"
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Generic.EquipmentRotation.Subsequences.Two rotTwo
+ "Rotates roles between two devices or groups of devices"
+ annotation (Placement(transformation(extent={{20,20},{40,40}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Generic.EquipmentRotation.Subsequences.Two rotTwo1
+ "Rotates roles between two devices or groups of devices"
+ annotation (Placement(transformation(extent={{20,-40},{40,-20}})));
+
+protected
+ Buildings.Controls.OBC.CDL.Logical.Sources.SampleTrigger rotation(period(
+ displayUnit="h") = 86400, shift=7200) "Rotation trigger"
+ annotation (Placement(transformation(extent={{-40,20},{-20,40}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.SampleTrigger rotation1(period(
+ displayUnit="h") = 172800, shift=7200) "Rotation trigger"
+ annotation (Placement(transformation(extent={{-40,-40},{-20,-20}})));
+
+equation
+ connect(rotation.y, rotTwo.uRot)
+ annotation (Line(points={{-18,30},{18,30}}, color={255,0,255}));
+ connect(rotation1.y, rotTwo1.uRot)
+ annotation (Line(points={{-18,-30},{18,-30}}, color={255,0,255}));
+annotation (
+ experiment(StopTime=1000000, Tolerance=1e-06),
+ __Dymola_Commands(file="modelica://Buildings/Resources/Scripts/Dymola/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Generic/EquipmentRotation/Subsequences/Validation/Two_uRot.mos"
+ "Simulate and plot"),
+ Documentation(info="
+
+This example validates
+
+Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Generic.EquipmentRotation.Two.
+
+", revisions="
+
+-
+November 5, 2019, by Milica Grahovac:
+First implementation.
+
+
+"),
+ Icon(graphics={Ellipse(lineColor = {75,138,73},
+ fillColor={255,255,255},
+ fillPattern = FillPattern.Solid,
+ extent = {{-100,-100},{100,100}}),
+ Polygon(lineColor = {0,0,255},
+ fillColor = {75,138,73},
+ pattern = LinePattern.None,
+ fillPattern = FillPattern.Solid,
+ points = {{-36,60},{64,0},{-36,-60},{-36,60}})}),
+ Diagram(coordinateSystem(preserveAspectRatio=false, extent={{-60,-60},{60,60}})));
+end Two_uRot;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Generic/EquipmentRotation/Subsequences/Validation/package.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Generic/EquipmentRotation/Subsequences/Validation/package.mo
new file mode 100644
index 00000000000..0b3887a2463
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Generic/EquipmentRotation/Subsequences/Validation/package.mo
@@ -0,0 +1,37 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Generic.EquipmentRotation.Subsequences;
+package Validation "Collection of validation models"
+
+annotation (preferredView="info", Documentation(info="
+
+This package contains validation models for the classes in
+
+Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Generic.EquipmentRotation.Subsequences.
+
+
+Note that most validation models contain simple input data
+which may not be realistic, but for which the correct
+output can be obtained through an analytic solution.
+The examples plot various outputs, which have been verified against these
+solutions. These model outputs are stored as reference data and
+used for continuous validation whenever models in the library change.
+
+"),
+ Icon(graphics={
+ Rectangle(
+ lineColor={200,200,200},
+ fillColor={248,248,248},
+ fillPattern=FillPattern.HorizontalCylinder,
+ extent={{-100.0,-100.0},{100.0,100.0}},
+ radius=25.0),
+ Rectangle(
+ lineColor={128,128,128},
+ extent={{-100.0,-100.0},{100.0,100.0}},
+ radius=25.0),
+ Polygon(
+ origin={8.0,14.0},
+ lineColor={78,138,73},
+ fillColor={78,138,73},
+ pattern=LinePattern.None,
+ fillPattern=FillPattern.Solid,
+ points={{-58.0,46.0},{42.0,-14.0},{-58.0,-74.0},{-58.0,46.0}})}));
+end Validation;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Generic/EquipmentRotation/Subsequences/Validation/package.order b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Generic/EquipmentRotation/Subsequences/Validation/package.order
new file mode 100644
index 00000000000..7b775d54c4e
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Generic/EquipmentRotation/Subsequences/Validation/package.order
@@ -0,0 +1,5 @@
+ContinuousLeadSwapTwo_uDevSta
+LeastRuntime_uDevRol
+MinimumLeadRuntime_uDevRol
+Scheduler
+Two_uRot
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Generic/EquipmentRotation/Subsequences/package.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Generic/EquipmentRotation/Subsequences/package.mo
new file mode 100644
index 00000000000..fa2dc10860c
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Generic/EquipmentRotation/Subsequences/package.mo
@@ -0,0 +1,43 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Generic.EquipmentRotation;
+package Subsequences "Equipment rotation control subsequences"
+
+annotation (preferredView="info", Documentation(info="
+
+This package contains equipment staging and rotation control subsequences.
+
+"),
+ Icon(graphics={
+ Rectangle(
+ lineColor={200,200,200},
+ fillColor={248,248,248},
+ fillPattern=FillPattern.HorizontalCylinder,
+ extent={{-100.0,-100.0},{100.0,100.0}},
+ radius=25.0),
+ Rectangle(
+ lineColor={128,128,128},
+ extent={{-100.0,-100.0},{100.0,100.0}},
+ radius=25.0),
+ Ellipse(
+ origin={10.0,10.0},
+ lineColor={128,128,128},
+ fillColor={255,255,255},
+ fillPattern=FillPattern.Solid,
+ extent={{-80.0,0.0},{-20.0,60.0}}),
+ Ellipse(
+ origin={10.0,10.0},
+ fillColor={128,128,128},
+ pattern=LinePattern.None,
+ fillPattern=FillPattern.Solid,
+ extent={{0.0,0.0},{60.0,60.0}}),
+ Ellipse(
+ origin={10.0,10.0},
+ pattern=LinePattern.None,
+ fillPattern=FillPattern.Solid,
+ extent={{0.0,-80.0},{60.0,-20.0}}),
+ Ellipse(
+ origin={10.0,10.0},
+ fillColor={76,76,76},
+ pattern=LinePattern.None,
+ fillPattern=FillPattern.Solid,
+ extent={{-80.0,-80.0},{-20.0,-20.0}})}));
+end Subsequences;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Generic/EquipmentRotation/Subsequences/package.order b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Generic/EquipmentRotation/Subsequences/package.order
new file mode 100644
index 00000000000..8a7466fd0ea
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Generic/EquipmentRotation/Subsequences/package.order
@@ -0,0 +1,6 @@
+ContinuousLeadSwapTwo
+LeastRuntime
+MinimumLeadRuntime
+Scheduler
+Two
+Validation
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Generic/EquipmentRotation/Validation/ControllerTwo.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Generic/EquipmentRotation/Validation/ControllerTwo.mo
new file mode 100644
index 00000000000..60a6c2d6f7c
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Generic/EquipmentRotation/Validation/ControllerTwo.mo
@@ -0,0 +1,155 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Generic.EquipmentRotation.Validation;
+model ControllerTwo
+ "Validates lead/lag and lead/standby equipment rotation controller for two devices or groups of devices"
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Generic.EquipmentRotation.ControllerTwo
+ leaLag(
+ final lag=true,
+ final minLim=false) "Lead/lag rotation"
+ annotation (Placement(transformation(extent={{-20,80},{0,100}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Generic.EquipmentRotation.ControllerTwo
+ leaLag1(
+ final lag=true,
+ final minLim=false) "Lead/lag rotation"
+ annotation (Placement(transformation(extent={{-20,40},{0,60}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Generic.EquipmentRotation.ControllerTwo
+ leaSta(
+ final lag=false,
+ final minLim=false) "Lead/lag rotation"
+ annotation (Placement(transformation(extent={{-20,0},{0,20}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Generic.EquipmentRotation.ControllerTwo
+ conLeaSimSta(
+ final lag=false,
+ final continuous=true,
+ final weeInt=false,
+ final rotationPeriod=1800,
+ final houOfDay=2,
+ final weeCou=1,
+ final weekday=6,
+ final dayCou=3)
+ "Lead/standby rotation for continuously operating device. Rotation time is measured from simulation start"
+ annotation (Placement(transformation(extent={{-20,-40},{0,-20}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Generic.EquipmentRotation.ControllerTwo
+ conLeaSch(
+ final lag=false,
+ final continuous=true,
+ final minLim=false,
+ final simTimSta=false,
+ weeInt=false,
+ zerTim=Buildings.Controls.OBC.CDL.Types.ZeroTime.Custom,
+ yearRef=2020,
+ houOfDay=2,
+ weekday=3,
+ dayCou=1)
+ "Lead/standby rotation for continuous operation"
+ annotation (Placement(transformation(extent={{-20,-80},{0,-60}})));
+
+protected
+ Buildings.Controls.OBC.CDL.Logical.TrueDelay truDel1[2](final delayTime={300,
+ 400},
+ final delayOnInit={true,true})
+ "Emulates device start-up time"
+ annotation (Placement(transformation(extent={{20,-40},{40,-20}})));
+
+ Buildings.Controls.OBC.CDL.Logical.TrueDelay truDel[2](
+ final delayTime={600,600},
+ final delayOnInit={true,true}) "Emulates device start-up time"
+ annotation (Placement(transformation(extent={{20,0},{40,20}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Pre pre[2] "Boolean pre"
+ annotation (Placement(transformation(extent={{60,-40},{80,-20}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Pre pre1[2] "Boolean pre"
+ annotation (Placement(transformation(extent={{60,0},{80,20}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Pulse leadLoad(
+ final width=0.8, final period(displayUnit="s") = 7200)
+ "Lead device ON/OFF status"
+ annotation (Placement(transformation(extent={{-100,80},{-80,100}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Pulse lagLoad(
+ final width=0.2,
+ final period=3600) "Lag device ON/OFF status"
+ annotation (Placement(transformation(extent={{-100,40},{-80,60}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Pulse lagLoad1(
+ final width=0.2,
+ final period=5400) "Lag device ON/OFF status"
+ annotation (Placement(transformation(extent={{-100,0},{-80,20}})));
+
+ Buildings.Controls.OBC.CDL.Logical.TrueDelay truDel2[2](
+ final delayTime={600,600},
+ final delayOnInit={true,true})
+ "Emulates device start-up time"
+ annotation (Placement(transformation(extent={{20,-80},{40,-60}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Pre pre2[2] "Boolean pre"
+ annotation (Placement(transformation(extent={{60,-80},{80,-60}})));
+
+equation
+ connect(conLeaSimSta.yDevStaSet, truDel1.u) annotation (Line(points={{2,-24},{
+ 10,-24},{10,-30},{18,-30}}, color={255,0,255}));
+ connect(leadLoad.y, leaLag.uLeaStaSet) annotation (Line(points={{-78,90},{-50,
+ 90},{-50,96},{-22,96}}, color={255,0,255}));
+ connect(lagLoad.y, leaLag.uLagStaSet) annotation (Line(points={{-78,50},{-40,50},
+ {-40,90},{-22,90}}, color={255,0,255}));
+ connect(leadLoad.y, leaSta.uLeaStaSet) annotation (Line(points={{-78,90},{-70,
+ 90},{-70,16},{-22,16}}, color={255,0,255}));
+ connect(lagLoad1.y, leaLag1.uLagStaSet) annotation (Line(points={{-78,10},{-32,
+ 10},{-32,50},{-22,50}}, color={255,0,255}));
+ connect(leadLoad.y, leaLag1.uLeaStaSet) annotation (Line(points={{-78,90},{-50,
+ 90},{-50,56},{-22,56}}, color={255,0,255}));
+ connect(leaSta.yDevStaSet, truDel.u) annotation (Line(points={{2,16},{10,16},{
+ 10,10},{18,10}}, color={255,0,255}));
+ connect(leaLag.yDevStaSet, leaLag.uDevSta) annotation (Line(points={{2,96},{20,
+ 96},{20,70},{-30,70},{-30,84},{-22,84}}, color={255,0,255}));
+ connect(leaLag1.yDevStaSet, leaLag1.uDevSta) annotation (Line(points={{2,56},{
+ 20,56},{20,32},{-28,32},{-28,44},{-22,44}}, color={255,0,255}));
+ connect(truDel1.y, pre.u)
+ annotation (Line(points={{42,-30},{58,-30}}, color={255,0,255}));
+ connect(pre.y, conLeaSimSta.uDevSta) annotation (Line(points={{82,-30},{90,-30},
+ {90,-50},{-30,-50},{-30,-36},{-22,-36}}, color={255,0,255}));
+ connect(truDel.y, pre1.u)
+ annotation (Line(points={{42,10},{58,10}}, color={255,0,255}));
+ connect(pre1.y, leaSta.uDevSta) annotation (Line(points={{82,10},{90,10},{90,-10},
+ {-28,-10},{-28,4},{-22,4}}, color={255,0,255}));
+ connect(conLeaSch.yDevStaSet, truDel2.u) annotation (Line(points={{2,-64},{10,
+ -64},{10,-70},{18,-70}}, color={255,0,255}));
+ connect(truDel2.y, pre2.u)
+ annotation (Line(points={{42,-70},{58,-70}}, color={255,0,255}));
+ connect(pre2.y, conLeaSch.uDevSta) annotation (Line(points={{82,-70},{90,-70},
+ {90,-90},{-30,-90},{-30,-76},{-22,-76}}, color={255,0,255}));
+ annotation (
+ experiment(StopTime=100000.0, Tolerance=1e-06),
+ __Dymola_Commands(file="modelica://Buildings/Resources/Scripts/Dymola/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Generic/EquipmentRotation/Validation/ControllerTwo.mos"
+ "Simulate and plot"),
+ Documentation(info="
+
+This example validates
+
+Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Generic.EquipmentRotation.ControllerTwo.
+
+", revisions="
+
+-
+May 15 2020, by Milica Grahovac:
+First implementation.
+
+
+"),
+Icon(graphics={
+ Ellipse(lineColor = {75,138,73},
+ fillColor={255,255,255},
+ fillPattern = FillPattern.Solid,
+ extent = {{-100,-100},{100,100}}),
+ Polygon(lineColor = {0,0,255},
+ fillColor = {75,138,73},
+ pattern = LinePattern.None,
+ fillPattern = FillPattern.Solid,
+ points = {{-36,60},{64,0},{-36,-60},{-36,60}})}),Diagram(
+ coordinateSystem(preserveAspectRatio=false, extent={{-120,-120},{120,120}})));
+end ControllerTwo;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Generic/EquipmentRotation/Validation/ControllerTwo_MinimumLeadRuntime.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Generic/EquipmentRotation/Validation/ControllerTwo_MinimumLeadRuntime.mo
new file mode 100644
index 00000000000..b05b56185a1
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Generic/EquipmentRotation/Validation/ControllerTwo_MinimumLeadRuntime.mo
@@ -0,0 +1,104 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Generic.EquipmentRotation.Validation;
+model ControllerTwo_MinimumLeadRuntime
+ "Validates lead/lag and lead/standby equipment rotation controller for two devices or groups of devices"
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Generic.EquipmentRotation.ControllerTwo
+ leaLag(
+ final lag=true,
+ minLim=true,
+ final minLeaRuntime=43200)
+ "Lead/lag rotation"
+ annotation (Placement(transformation(extent={{-20,40},{0,60}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Generic.EquipmentRotation.ControllerTwo
+ leaLag1(
+ final lag=true,
+ minLim=true,
+ final minLeaRuntime=54000)
+ "Lead/lag rotation"
+ annotation (Placement(transformation(extent={{-20,0},{0,20}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Generic.EquipmentRotation.ControllerTwo
+ leaSta(
+ final lag=false,
+ minLim=true,
+ final minLeaRuntime=43200)
+ "Lead/standby rotation"
+ annotation (Placement(transformation(extent={{-20,-40},{0,-20}})));
+
+protected
+ Buildings.Controls.OBC.CDL.Logical.TrueDelay truDel[2](
+ final delayTime={600,600},
+ final delayOnInit={true,true}) "Emulates device start-up time"
+ annotation (Placement(transformation(extent={{20,-40},{40,-20}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Pre pre1[2] "Boolean pre"
+ annotation (Placement(transformation(extent={{60,-40},{80,-20}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Pulse leadLoad(
+ final width=0.8,
+ final period=7200) "Lead device ON/OFF status"
+ annotation (Placement(transformation(extent={{-100,40},{-80,60}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Pulse lagLoad(
+ final width=0.2,
+ final period=3600) "Lag device ON/OFF status"
+ annotation (Placement(transformation(extent={{-100,0},{-80,20}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Pulse lagLoad1(
+ final width=0.2,
+ final period=5400) "Lag device ON/OFF status"
+ annotation (Placement(transformation(extent={{-100,-40},{-80,-20}})));
+
+equation
+ connect(leadLoad.y, leaLag.uLeaStaSet) annotation (Line(points={{-78,50},{-50,
+ 50},{-50,56},{-22,56}}, color={255,0,255}));
+ connect(lagLoad.y, leaLag.uLagStaSet) annotation (Line(points={{-78,10},{-40,10},
+ {-40,50},{-22,50}}, color={255,0,255}));
+ connect(leadLoad.y, leaSta.uLeaStaSet) annotation (Line(points={{-78,50},{-70,
+ 50},{-70,-24},{-22,-24}},
+ color={255,0,255}));
+ connect(lagLoad1.y, leaLag1.uLagStaSet) annotation (Line(points={{-78,-30},{-32,
+ -30},{-32,10},{-22,10}}, color={255,0,255}));
+ connect(leadLoad.y, leaLag1.uLeaStaSet) annotation (Line(points={{-78,50},{-50,
+ 50},{-50,16},{-22,16}}, color={255,0,255}));
+ connect(leaSta.yDevStaSet, truDel.u) annotation (Line(points={{2,-24},{10,-24},
+ {10,-30},{18,-30}}, color={255,0,255}));
+ connect(leaLag.yDevStaSet, leaLag.uDevSta) annotation (Line(points={{2,56},{20,
+ 56},{20,30},{-30,30},{-30,44},{-22,44}}, color={255,0,255}));
+ connect(leaLag1.yDevStaSet, leaLag1.uDevSta) annotation (Line(points={{2,16},{
+ 20,16},{20,-8},{-28,-8},{-28,4},{-22,4}}, color={255,0,255}));
+ connect(truDel.y, pre1.u)
+ annotation (Line(points={{42,-30},{58,-30}}, color={255,0,255}));
+ connect(pre1.y, leaSta.uDevSta) annotation (Line(points={{82,-30},{90,-30},{90,
+ -50},{-28,-50},{-28,-36},{-22,-36}}, color={255,0,255}));
+ annotation (
+ experiment(StopTime=100000.0, Tolerance=1e-06),
+ __Dymola_Commands(file="modelica://Buildings/Resources/Scripts/Dymola/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Generic/EquipmentRotation/Validation/ControllerTwo_MinimumLeadRuntime.mos"
+ "Simulate and plot"),
+ Documentation(info="
+
+This example validates
+
+Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Generic.EquipmentRotation.ControllerTwo.
+
+", revisions="
+
+-
+May 15 2020, by Milica Grahovac:
+First implementation.
+
+
+"),
+Icon(graphics={
+ Ellipse(lineColor = {75,138,73},
+ fillColor={255,255,255},
+ fillPattern = FillPattern.Solid,
+ extent = {{-100,-100},{100,100}}),
+ Polygon(lineColor = {0,0,255},
+ fillColor = {75,138,73},
+ pattern = LinePattern.None,
+ fillPattern = FillPattern.Solid,
+ points = {{-36,60},{64,0},{-36,-60},{-36,60}})}),Diagram(
+ coordinateSystem(preserveAspectRatio=false, extent={{-120,-80},{120,80}})));
+end ControllerTwo_MinimumLeadRuntime;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Generic/EquipmentRotation/Validation/package.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Generic/EquipmentRotation/Validation/package.mo
new file mode 100644
index 00000000000..cf21515766b
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Generic/EquipmentRotation/Validation/package.mo
@@ -0,0 +1,37 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Generic.EquipmentRotation;
+package Validation "Collection of validation models"
+
+annotation (preferredView="info", Documentation(info="
+
+This package contains validation models for the classes in
+
+Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Generic.EquipmentRotation.
+
+
+Note that most validation models contain simple input data
+which may not be realistic, but for which the correct
+output can be obtained through an analytic solution.
+The examples plot various outputs, which have been verified against these
+solutions. These model outputs are stored as reference data and
+used for continuous validation whenever models in the library change.
+
+"),
+ Icon(graphics={
+ Rectangle(
+ lineColor={200,200,200},
+ fillColor={248,248,248},
+ fillPattern=FillPattern.HorizontalCylinder,
+ extent={{-100.0,-100.0},{100.0,100.0}},
+ radius=25.0),
+ Rectangle(
+ lineColor={128,128,128},
+ extent={{-100.0,-100.0},{100.0,100.0}},
+ radius=25.0),
+ Polygon(
+ origin={8.0,14.0},
+ lineColor={78,138,73},
+ fillColor={78,138,73},
+ pattern=LinePattern.None,
+ fillPattern=FillPattern.Solid,
+ points={{-58.0,46.0},{42.0,-14.0},{-58.0,-74.0},{-58.0,46.0}})}));
+end Validation;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Generic/EquipmentRotation/Validation/package.order b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Generic/EquipmentRotation/Validation/package.order
new file mode 100644
index 00000000000..cfbefbf6d93
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Generic/EquipmentRotation/Validation/package.order
@@ -0,0 +1,2 @@
+ControllerTwo
+ControllerTwo_MinimumLeadRuntime
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Generic/EquipmentRotation/package.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Generic/EquipmentRotation/package.mo
new file mode 100644
index 00000000000..b779097a535
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Generic/EquipmentRotation/package.mo
@@ -0,0 +1,48 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Generic;
+package EquipmentRotation "Equipment rotation sequences to maintain even wear"
+
+annotation (
+preferredView="info", Documentation(info="
+
+This package contains equipment staging and rotation sequences implemented based on ASHRAE RP1711.
+March 2020 draft, section 5.1.2. The control intent of these sequences is, where the device configuration allows for it,
+to have the devices be lead/lag or lead/standby rotated to maintain even wear.
+"),
+Icon(graphics={
+ Rectangle(
+ lineColor={200,200,200},
+ fillColor={248,248,248},
+ fillPattern=FillPattern.HorizontalCylinder,
+ extent={{-100.0,-100.0},{100.0,100.0}},
+ radius=25.0),
+ Ellipse(
+ origin={-26.6667,38.6207},
+ lineColor={128,128,128},
+ fillColor={255,255,255},
+ fillPattern=FillPattern.Solid,
+ extent={{-53.3333,1.37927},{-13.3329,41.3792}}),
+ Ellipse(
+ origin={93.3333,-81.3793},
+ lineColor={128,128,128},
+ fillColor={255,255,255},
+ fillPattern=FillPattern.Solid,
+ extent={{-53.3333,1.37927},{-13.3329,41.3792}}),
+ Ellipse(
+ origin={-26.6667,-81.3793},
+ lineColor={128,128,128},
+ fillColor={28,108,200},
+ fillPattern=FillPattern.Solid,
+ extent={{-53.3333,1.37927},{-13.3329,41.3792}}),
+ Ellipse(
+ origin={93.333,38.6207},
+ lineColor={128,128,128},
+ fillColor={28,108,200},
+ fillPattern=FillPattern.Solid,
+ extent={{-53.3333,1.37927},{-13.3329,41.3792}}),
+ Line(points={{-40,60},{0,60},{0,-60},{40,-60}}, color={128,128,128}),
+ Line(points={{-40,-60},{0,-60},{0,60},{40,60}}, color={128,128,128}),
+ Rectangle(
+ lineColor={128,128,128},
+ extent={{-100.0,-100.0},{100.0,100.0}},
+ radius=25.0)}));
+end EquipmentRotation;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Generic/EquipmentRotation/package.order b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Generic/EquipmentRotation/package.order
new file mode 100644
index 00000000000..d6215f892f4
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Generic/EquipmentRotation/package.order
@@ -0,0 +1,3 @@
+ControllerTwo
+Subsequences
+Validation
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Generic/PlantEnable/DisableChillers.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Generic/PlantEnable/DisableChillers.mo
new file mode 100644
index 00000000000..0bbe0dc358b
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Generic/PlantEnable/DisableChillers.mo
@@ -0,0 +1,280 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Generic.PlantEnable;
+block DisableChillers
+ "Disable devices when the plant is disabled from chiller mode"
+
+ parameter Integer nChi=2
+ "Total number of chillers";
+ parameter Integer nChiWatPum = 2
+ "Total number of chilled water pumps";
+ parameter Integer nConWatPum = 2
+ "Total number of condenser water pumps";
+ parameter Integer nTowCel = 2
+ "Total number of cooling tower cells";
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uChi[nChi]
+ "Chiller commanded on"
+ annotation (Placement(transformation(extent={{-180,220},{-140,260}}),
+ iconTransformation(extent={{-140,70},{-100,110}})));
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uPla
+ "Plant enable signal"
+ annotation (Placement(transformation(extent={{-180,180},{-140,220}}),
+ iconTransformation(extent={{-140,50},{-100,90}})));
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uChiWatReq[nChi]
+ "Chilled water requst status for each chiller"
+ annotation (Placement(transformation(extent={{-180,40},{-140,80}}),
+ iconTransformation(extent={{-140,20},{-100,60}})));
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput uChiWatIsoVal[nChi](
+ final min=fill(0, nChi),
+ final max=fill(1, nChi),
+ final unit=fill("1", nChi)) "Chilled water isolation valve position"
+ annotation(Placement(transformation(extent={{-180,10},{-140,50}}),
+ iconTransformation(extent={{-140,0},{-100,40}})));
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uConWatReq[nChi]
+ "Condenser water requst status for each chiller"
+ annotation (Placement(transformation(extent={{-180,-50},{-140,-10}}),
+ iconTransformation(extent={{-140,-40},{-100,0}})));
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput uConWatIsoVal[nChi](
+ final min=fill(0, nChi),
+ final max=fill(1, nChi),
+ final unit=fill("1", nChi))
+ "Chiller condenser water isolation valve position"
+ annotation (Placement(transformation(extent={{-180,-90},{-140,-50}}),
+ iconTransformation(extent={{-140,-60},{-100,-20}})));
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput uChiWatPumSpe[nChiWatPum]
+ "Chilled water pump speed"
+ annotation (Placement(transformation(extent={{-180,-160},{-140,-120}}),
+ iconTransformation(extent={{-140,-90},{-100,-50}})));
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput uConWatPumSpe[nConWatPum]
+ "Condenser water pump speed"
+ annotation (Placement(transformation(extent={{-180,-200},{-140,-160}}),
+ iconTransformation(extent={{-140,-110},{-100,-70}})));
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanOutput yChi[nChi]
+ "Chiller commanded on"
+ annotation(Placement(transformation(extent={{140,180},{180,220}}),
+ iconTransformation(extent={{100,70},{140,110}})));
+ Buildings.Controls.OBC.CDL.Interfaces.RealOutput yChiWatIsoVal[nChi](
+ final unit=fill("1", nChi),
+ final min=fill(0, nChi),
+ final max=fill(1, nChi))
+ "Chiller chilled water isolation valve position setpoints"
+ annotation (Placement(transformation(extent={{140,80},{180,120}}),
+ iconTransformation(extent={{100,30},{140,70}})));
+ Buildings.Controls.OBC.CDL.Interfaces.RealOutput yConWatIsoVal[nChi](
+ final unit=fill("1", nChi),
+ final min=fill(0, nChi),
+ final max=fill(1, nChi))
+ "Chiller condenser water isolation valve position setpoints"
+ annotation (Placement(transformation(extent={{140,-30},{180,10}}),
+ iconTransformation(extent={{100,0},{140,40}})));
+ Buildings.Controls.OBC.CDL.Interfaces.RealOutput yChiWatPumSpe[nChiWatPum](
+ final unit=fill("1", nChiWatPum),
+ final min=fill(0, nChiWatPum),
+ final max=fill(1, nChiWatPum))
+ "Chilled water pump speed"
+ annotation (Placement(transformation(extent={{140,-140},{180,-100}}),
+ iconTransformation(extent={{100,-40},{140,0}})));
+ Buildings.Controls.OBC.CDL.Interfaces.RealOutput yConWatPumSpe[nConWatPum](
+ final unit=fill("1", nConWatPum),
+ final min=fill(0, nConWatPum),
+ final max=fill(1, nConWatPum))
+ "Condenser water pump speed"
+ annotation (Placement(transformation(extent={{140,-180},{180,-140}}),
+ iconTransformation(extent={{100,-70},{140,-30}})));
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanOutput yTow
+ "Cooling tower commanded on" annotation (Placement(transformation(extent={{140,
+ -250},{180,-210}}), iconTransformation(extent={{100,-110},{140,-70}})));
+
+ Buildings.Controls.OBC.CDL.Routing.BooleanScalarReplicator booScaRep(
+ final nout=nChi)
+ "Replicate boolean input"
+ annotation (Placement(transformation(extent={{20,190},{40,210}})));
+ Buildings.Controls.OBC.CDL.Logical.Switch logSwi[nChi]
+ "Chiller commanded on"
+ annotation (Placement(transformation(extent={{100,190},{120,210}})));
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant con[nChi](
+ final k=fill(false, nChi))
+ "Disable chillers"
+ annotation (Placement(transformation(extent={{20,160},{40,180}})));
+ Buildings.Controls.OBC.CDL.Logical.TrueDelay truDel(
+ final delayTime=180)
+ "Threshold time after chiller being disabled"
+ annotation (Placement(transformation(extent={{-60,90},{-40,110}})));
+ Buildings.Controls.OBC.CDL.Logical.MultiOr mulOr(
+ final nin=nChi)
+ "Check if there is any chilled water request"
+ annotation (Placement(transformation(extent={{-100,50},{-80,70}})));
+ Buildings.Controls.OBC.CDL.Routing.BooleanScalarReplicator booScaRep1(
+ final nout=nChi)
+ "Replicate boolean input"
+ annotation (Placement(transformation(extent={{40,90},{60,110}})));
+ Buildings.Controls.OBC.CDL.Logical.MultiOr mulOr1(
+ final nin=nChi)
+ "Check if there is any condenser water request"
+ annotation (Placement(transformation(extent={{-100,-40},{-80,-20}})));
+ Buildings.Controls.OBC.CDL.Routing.BooleanScalarReplicator booScaRep2(
+ final nout=nChi)
+ "Replicate boolean input"
+ annotation (Placement(transformation(extent={{40,-20},{60,0}})));
+ Buildings.Controls.OBC.CDL.Routing.BooleanScalarReplicator booScaRep3(
+ final nout=nChiWatPum)
+ "Replicate boolean input"
+ annotation (Placement(transformation(extent={{40,-130},{60,-110}})));
+ Buildings.Controls.OBC.CDL.Routing.BooleanScalarReplicator booScaRep5(
+ final nout=nConWatPum)
+ "Replicate boolean input"
+ annotation (Placement(transformation(extent={{40,-170},{60,-150}})));
+ Buildings.Controls.OBC.CDL.Logical.Not not1
+ "Logical not"
+ annotation (Placement(transformation(extent={{-100,90},{-80,110}})));
+ Buildings.Controls.OBC.CDL.Logical.Not not2 "No chilled water request"
+ annotation (Placement(transformation(extent={{-60,50},{-40,70}})));
+ Buildings.Controls.OBC.CDL.Logical.Or cloChiIsoVal
+ "Close all chilled water isolation valve"
+ annotation (Placement(transformation(extent={{0,90},{20,110}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant con1[nChi](
+ final k=fill(0, nChi)) "Close valve"
+ annotation (Placement(transformation(extent={{-60,130},{-40,150}})));
+ Buildings.Controls.OBC.CDL.Continuous.Switch swi[nChi] "Close valve"
+ annotation (Placement(transformation(extent={{100,90},{120,110}})));
+ Buildings.Controls.OBC.CDL.Logical.Or cloChiIsoVal1
+ "Close all chilled water isolation valve"
+ annotation (Placement(transformation(extent={{0,-20},{20,0}})));
+ Buildings.Controls.OBC.CDL.Logical.Not not3 "No condenser water request"
+ annotation (Placement(transformation(extent={{-60,-40},{-40,-20}})));
+ Buildings.Controls.OBC.CDL.Continuous.Switch swi1[nChi]
+ "Close valve"
+ annotation (Placement(transformation(extent={{100,-20},{120,0}})));
+ Buildings.Controls.OBC.CDL.Logical.Or cloPums "Disable pumps"
+ annotation (Placement(transformation(extent={{-20,-110},{0,-90}})));
+ Buildings.Controls.OBC.CDL.Continuous.Switch swi2[nChiWatPum]
+ "Disable pumps"
+ annotation (Placement(transformation(extent={{100,-130},{120,-110}})));
+ Buildings.Controls.OBC.CDL.Continuous.Switch swi3[nConWatPum]
+ "Disable pumps"
+ annotation (Placement(transformation(extent={{100,-170},{120,-150}})));
+
+equation
+ connect(uPla, booScaRep.u)
+ annotation (Line(points={{-160,200},{18,200}}, color={255,0,255}));
+ connect(booScaRep.y, logSwi.u2)
+ annotation (Line(points={{42,200},{98,200}}, color={255,0,255}));
+ connect(uChi, logSwi.u1) annotation (Line(points={{-160,240},{80,240},{80,208},
+ {98,208}}, color={255,0,255}));
+ connect(con.y, logSwi.u3) annotation (Line(points={{42,170},{80,170},{80,192},
+ {98,192}}, color={255,0,255}));
+ connect(logSwi.y, yChi)
+ annotation (Line(points={{122,200},{160,200}}, color={255,0,255}));
+ connect(uPla, not1.u) annotation (Line(points={{-160,200},{-120,200},{-120,100},
+ {-102,100}},color={255,0,255}));
+ connect(not1.y, truDel.u)
+ annotation (Line(points={{-78,100},{-62,100}}, color={255,0,255}));
+ connect(uChiWatReq, mulOr.u)
+ annotation (Line(points={{-160,60},{-102,60}}, color={255,0,255}));
+ connect(mulOr.y, not2.u)
+ annotation (Line(points={{-78,60},{-62,60}}, color={255,0,255}));
+ connect(truDel.y, cloChiIsoVal.u1)
+ annotation (Line(points={{-38,100},{-2,100}}, color={255,0,255}));
+ connect(not2.y, cloChiIsoVal.u2) annotation (Line(points={{-38,60},{-20,60},{-20,
+ 92},{-2,92}}, color={255,0,255}));
+ connect(cloChiIsoVal.y, booScaRep1.u)
+ annotation (Line(points={{22,100},{38,100}}, color={255,0,255}));
+ connect(booScaRep1.y, swi.u2)
+ annotation (Line(points={{62,100},{98,100}}, color={255,0,255}));
+ connect(con1.y, swi.u1) annotation (Line(points={{-38,140},{80,140},{80,108},{
+ 98,108}}, color={0,0,127}));
+ connect(uChiWatIsoVal, swi.u3) annotation (Line(points={{-160,30},{70,30},{70,
+ 92},{98,92}}, color={0,0,127}));
+ connect(swi.y, yChiWatIsoVal)
+ annotation (Line(points={{122,100},{160,100}}, color={0,0,127}));
+ connect(truDel.y, cloChiIsoVal1.u1) annotation (Line(points={{-38,100},{-10,100},
+ {-10,-10},{-2,-10}}, color={255,0,255}));
+ connect(mulOr1.y, not3.u)
+ annotation (Line(points={{-78,-30},{-62,-30}}, color={255,0,255}));
+ connect(uConWatReq, mulOr1.u)
+ annotation (Line(points={{-160,-30},{-102,-30}}, color={255,0,255}));
+ connect(not3.y, cloChiIsoVal1.u2) annotation (Line(points={{-38,-30},{-20,-30},
+ {-20,-18},{-2,-18}}, color={255,0,255}));
+ connect(swi1.y, yConWatIsoVal)
+ annotation (Line(points={{122,-10},{160,-10}}, color={0,0,127}));
+ connect(cloChiIsoVal1.y, booScaRep2.u)
+ annotation (Line(points={{22,-10},{38,-10}}, color={255,0,255}));
+ connect(booScaRep2.y, swi1.u2)
+ annotation (Line(points={{62,-10},{98,-10}}, color={255,0,255}));
+ connect(con1.y, swi1.u1) annotation (Line(points={{-38,140},{80,140},{80,-2},{
+ 98,-2}}, color={0,0,127}));
+ connect(uConWatIsoVal, swi1.u3) annotation (Line(points={{-160,-70},{72,-70},{
+ 72,-18},{98,-18}}, color={0,0,127}));
+ connect(cloChiIsoVal.y, cloPums.u2) annotation (Line(points={{22,100},{30,100},
+ {30,40},{-70,40},{-70,-108},{-22,-108}}, color={255,0,255}));
+ connect(cloChiIsoVal1.y, cloPums.u1) annotation (Line(points={{22,-10},{30,-10},
+ {30,-60},{-40,-60},{-40,-100},{-22,-100}}, color={255,0,255}));
+ connect(cloPums.y, booScaRep3.u) annotation (Line(points={{2,-100},{20,-100},{
+ 20,-120},{38,-120}}, color={255,0,255}));
+ connect(booScaRep3.y, swi2.u2) annotation (Line(points={{62,-120},{98,-120}},
+ color={255,0,255}));
+ connect(con1.y, swi2.u1) annotation (Line(points={{-38,140},{80,140},{80,-112},
+ {98,-112}}, color={0,0,127}));
+ connect(uChiWatPumSpe, swi2.u3) annotation (Line(points={{-160,-140},{70,-140},
+ {70,-128},{98,-128}}, color={0,0,127}));
+ connect(swi2.y, yChiWatPumSpe)
+ annotation (Line(points={{122,-120},{160,-120}}, color={0,0,127}));
+ connect(con1.y, swi3.u1) annotation (Line(points={{-38,140},{80,140},{80,-152},
+ {98,-152}}, color={0,0,127}));
+ connect(uConWatPumSpe, swi3.u3) annotation (Line(points={{-160,-180},{70,-180},
+ {70,-168},{98,-168}}, color={0,0,127}));
+ connect(swi3.y, yConWatPumSpe)
+ annotation (Line(points={{122,-160},{160,-160}}, color={0,0,127}));
+ connect(cloPums.y, booScaRep5.u) annotation (Line(points={{2,-100},{20,-100},{
+ 20,-160},{38,-160}}, color={255,0,255}));
+ connect(booScaRep5.y, swi3.u2)
+ annotation (Line(points={{62,-160},{98,-160}}, color={255,0,255}));
+ connect(cloPums.y, yTow) annotation (Line(points={{2,-100},{20,-100},{20,-230},
+ {160,-230}}, color={255,0,255}));
+annotation (defaultComponentName = "disChi",
+ Icon(coordinateSystem(preserveAspectRatio=false, extent={{-100,-100},{100,100}}),
+ graphics={
+ Rectangle(
+ extent={{-100,-100},{100,100}},
+ lineColor={0,0,127},
+ fillColor={255,255,255},
+ fillPattern=FillPattern.Solid),
+ Text(
+ extent={{-100,140},{100,100}},
+ textColor={0,0,255},
+ textString="%name")}),
+ Diagram(coordinateSystem(preserveAspectRatio=false,extent={{-140,-260},{140,260}})),
+ Documentation(info="
+
+It disables the devices when the chiller plant is disabled in chiller mode.
+It is implemented as provided in sections 5.2.2.5 and 5.2.2.7.
+
+
+When the plant is disabled:
+
+
+-
+Shut off all enabled chillers, if any.
+
+-
+For each enabled chiller, close the chilled water isolation valve after
+3 minutes or the chiller is not requesting chilled water flow.
+
+-
+For each enabled chiller, close the condenser water isolation valve after
+3 minutes or the chiller is not requesting condenser water flow.
+
+-
+Disable the operating primary chilled water pumps, condenser water pumps, and
+cooling towers.
+
+
+",
+revisions="
+
+-
+July 20, 2022, by Jianjun Hu:
+First implementation.
+
+
+"));
+end DisableChillers;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Generic/PlantEnable/Enable.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Generic/PlantEnable/Enable.mo
new file mode 100644
index 00000000000..dd37fe513af
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Generic/PlantEnable/Enable.mo
@@ -0,0 +1,292 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Generic.PlantEnable;
+block Enable "Sequence to enable and disable plant"
+
+ parameter Boolean have_WSE = true
+ "Flag to indicate if the plant has waterside economizer";
+
+ parameter Real schTab[4,2] = [0,1; 6*3600,1; 19*3600,1; 24*3600,1]
+ "Plant enabling schedule allowing operators to lock out the plant during off-hour";
+
+ parameter Real TChiLocOut=277.5
+ "Outdoor air lockout temperature below which the chiller plant should be disabled";
+
+ parameter Real plaThrTim(
+ final unit="s",
+ final quantity="Time")=900
+ "Threshold time to check status of chiller plant";
+
+ parameter Real reqThrTim(
+ final unit="s",
+ final quantity="Time")=180
+ "Threshold time to check current chiller plant request";
+
+ parameter Integer ignReq = 0
+ "Ignorable chiller plant requests";
+
+ parameter Real locDt = 1
+ "Offset temperature for lockout chiller"
+ annotation (Dialog(tab="Advanced"));
+
+ Buildings.Controls.OBC.CDL.Interfaces.IntegerInput chiPlaReq
+ "Number of chiller plant cooling requests"
+ annotation (Placement(transformation(extent={{-240,70},{-200,110}}),
+ iconTransformation(extent={{-140,20},{-100,60}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput TOut(
+ final unit="K",
+ final quantity="ThermodynamicTemperature")
+ "Outdoor air temperature"
+ annotation (Placement(transformation(extent={{-240,-170},{-200,-130}}),
+ iconTransformation(extent={{-140,-62},{-100,-22}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanOutput yPla
+ "Chiller plant enabling status"
+ annotation (Placement(transformation(extent={{200,70},{220,90}}),
+ iconTransformation(extent={{100,-10},{120,10}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.TimeTable enaSch(
+ final table=schTab,
+ final smoothness=tabSmo,
+ final extrapolation=extrapolation)
+ "Plant enabling schedule allowing operators to lock out the plant during off-hour"
+ annotation (Placement(transformation(extent={{-140,40},{-120,60}})));
+
+protected
+ final parameter Buildings.Controls.OBC.CDL.Types.Smoothness tabSmo=
+ Buildings.Controls.OBC.CDL.Types.Smoothness.ConstantSegments
+ "Smoothness of table interpolation";
+
+ final parameter Buildings.Controls.OBC.CDL.Types.Extrapolation extrapolation=
+ Buildings.Controls.OBC.CDL.Types.Extrapolation.Periodic
+ "Extrapolation of data outside the definition range";
+
+ Buildings.Controls.OBC.CDL.Continuous.GreaterThreshold schOn(
+ final t=0.5)
+ "Check if enabling schedule is active"
+ annotation (Placement(transformation(extent={{-100,40},{-80,60}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Not not1 "Logical not"
+ annotation (Placement(transformation(extent={{-140,110},{-120,130}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Timer disTim(
+ final t=plaThrTim)
+ "Check if chiller plant has been disabled more than threshold time"
+ annotation (Placement(transformation(extent={{-100,110},{-80,130}})));
+
+ Buildings.Controls.OBC.CDL.Integers.GreaterThreshold hasReq(
+ final t=ignReq)
+ "Check if the number of chiller plant request is greater than the number of ignorable request"
+ annotation (Placement(transformation(extent={{-140,80},{-120,100}})));
+
+ Buildings.Controls.OBC.CDL.Logical.MultiAnd enaPla(
+ final nin=4) "Enable chiller plant"
+ annotation (Placement(transformation(extent={{40,70},{60,90}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Timer enaTim(
+ final t=plaThrTim)
+ "Check if chiller plant has been enabled more than threshold time"
+ annotation (Placement(transformation(extent={{-140,-20},{-120,0}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Timer enaTim1(
+ final t=reqThrTim)
+ "Check if number of chiller plant request has been less than ignorable request by more than threshold time"
+ annotation (Placement(transformation(extent={{-100,-80},{-80,-60}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Not not2 "Logical not"
+ annotation (Placement(transformation(extent={{-20,-60},{0,-40}})));
+
+ Buildings.Controls.OBC.CDL.Logical.And disPla
+ "Disable chiller plant"
+ annotation (Placement(transformation(extent={{40,-20},{60,0}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Latch plaSta
+ "Chiller plant enabling status"
+ annotation (Placement(transformation(extent={{100,70},{120,90}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Hysteresis hys(
+ final uLow=0,
+ final uHigh=locDt)
+ "Check if outdoor temperature is lower than chiller lockout temperature"
+ annotation (Placement(transformation(extent={{-100,-140},{-80,-120}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Or3 disPlaCon
+ "Disable chiller plant conditions"
+ annotation (Placement(transformation(extent={{40,-80},{60,-60}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Not not3 "Logical not"
+ annotation (Placement(transformation(extent={{-140,-80},{-120,-60}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Not notLoc
+ "Check if outdoor temperature is higher than the chiller lockout temperature"
+ annotation (Placement(transformation(extent={{-20,0},{0,20}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Pre pre1 "Pre"
+ annotation (Placement(transformation(extent={{-180,110},{-160,130}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant chiLocOutTem(
+ final k=TChiLocOut)
+ "Outdoor air lockout temperature"
+ annotation (Placement(transformation(extent={{-180,-120},{-160,-100}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Subtract sub1
+ "Difference between chiller lockout temperature and outdoor temperature"
+ annotation (Placement(transformation(extent={{-140,-140},{-120,-120}})));
+
+equation
+ connect(enaSch.y[1], schOn.u)
+ annotation (Line(points={{-118,50},{-102,50}}, color={0,0,127}));
+ connect(not1.y, disTim.u)
+ annotation (Line(points={{-118,120},{-102,120}}, color={255,0,255}));
+ connect(chiPlaReq, hasReq.u)
+ annotation (Line(points={{-220,90},{-142,90}}, color={255,127,0}));
+ connect(disTim.passed,enaPla. u[1])
+ annotation (Line(points={{-78,112},{20,112},{20,77.375},{38,77.375}},
+ color={255,0,255}));
+ connect(hasReq.y,enaPla. u[2])
+ annotation (Line(points={{-118,90},{-20,90},{-20,79.125},{38,79.125}},
+ color={255,0,255}));
+ connect(schOn.y,enaPla. u[3])
+ annotation (Line(points={{-78,50},{0,50},{0,80.875},{38,80.875}},
+ color={255,0,255}));
+ connect(schOn.y, not2.u)
+ annotation (Line(points={{-78,50},{-40,50},{-40,-50},{-22,-50}},
+ color={255,0,255}));
+ connect(enaPla.y, plaSta.u)
+ annotation (Line(points={{62,80},{98,80}}, color={255,0,255}));
+ connect(plaSta.y, yPla)
+ annotation (Line(points={{122,80},{210,80}}, color={255,0,255}));
+ connect(disPlaCon.y, disPla.u2) annotation (Line(points={{62,-70},{80,-70},{80,
+ -30},{20,-30},{20,-18},{38,-18}}, color={255,0,255}));
+ connect(not2.y, disPlaCon.u1) annotation (Line(points={{2,-50},{20,-50},{20,-62},
+ {38,-62}}, color={255,0,255}));
+ connect(hasReq.y, not3.u)
+ annotation (Line(points={{-118,90},{-20,90},{-20,70},{-180,70},{-180,-70},{-142,
+ -70}}, color={255,0,255}));
+ connect(not3.y, enaTim1.u)
+ annotation (Line(points={{-118,-70},{-102,-70}}, color={255,0,255}));
+ connect(plaSta.y, pre1.u) annotation (Line(points={{122,80},{140,80},{140,140},
+ {-190,140},{-190,120},{-182,120}}, color={255,0,255}));
+ connect(pre1.y, not1.u)
+ annotation (Line(points={{-158,120},{-142,120}}, color={255,0,255}));
+ connect(pre1.y, enaTim.u)
+ annotation (Line(points={{-158,120},{-150,120},{-150,-10},{-142,-10}},
+ color={255,0,255}));
+ connect(TOut, sub1.u2)
+ annotation (Line(points={{-220,-150},{-150,-150},{-150,-136},{-142,-136}},
+ color={0,0,127}));
+ connect(chiLocOutTem.y, sub1.u1)
+ annotation (Line(points={{-158,-110},{-150,-110},{-150,-124},{-142,-124}},
+ color={0,0,127}));
+ connect(sub1.y, hys.u)
+ annotation (Line(points={{-118,-130},{-102,-130}}, color={0,0,127}));
+ connect(hys.y, disPlaCon.u3) annotation (Line(points={{-78,-130},{20,-130},{20,
+ -78},{38,-78}}, color={255,0,255}));
+ connect(hys.y, notLoc.u) annotation (Line(points={{-78,-130},{-60,-130},{-60,10},
+ {-22,10}}, color={255,0,255}));
+ connect(notLoc.y, enaPla.u[4]) annotation (Line(points={{2,10},{20,10},{20,82.625},
+ {38,82.625}},color={255,0,255}));
+ connect(disPla.y, plaSta.clr) annotation (Line(points={{62,-10},{80,-10},{80,74},
+ {98,74}}, color={255,0,255}));
+ connect(enaTim1.passed, disPlaCon.u2) annotation (Line(points={{-78,-78},{-20,
+ -78},{-20,-70},{38,-70}}, color={255,0,255}));
+ connect(enaTim.passed, disPla.u1) annotation (Line(points={{-118,-18},{-80,-18},
+ {-80,-10},{38,-10}}, color={255,0,255}));
+
+annotation (
+ defaultComponentName = "plaEna",
+ Diagram(coordinateSystem(preserveAspectRatio=false, extent={{-200,-180},{200,180}})),
+ Icon(graphics={
+ Text(
+ extent={{-120,146},{100,108}},
+ textColor={0,0,255},
+ textString="%name"),
+ Ellipse(extent={{-80,80},{80,-80}}, lineColor={28,108,200},fillColor={170,255,213},
+ fillPattern=FillPattern.Solid),
+ Ellipse(extent={{-90,90},{90,-90}}, lineColor={28,108,200}),
+ Rectangle(extent={{-75,2},{75,-2}}, lineColor={28,108,200},
+ fillColor={28,108,200},
+ fillPattern=FillPattern.Solid),
+ Text(
+ extent={{-66,46},{76,10}},
+ textColor={28,108,200},
+ textString="START"),
+ Text(
+ extent={{-66,-8},{76,-44}},
+ textColor={28,108,200},
+ textString="STOP")}),
+ Documentation(info="
+
+Block that generate chiller plant enable signals and output the initial plant stage,
+according to ASHRAE RP-1711 Advanced Sequences of Operation for HVAC Systems Phase II –
+Central Plants and Hydronic Systems (Draft on March 23, 2020), section 5.2.2.1,
+5.2.2.2 and 5.2.2.3.
+
+
+The chiller plant should be enabled and disabled according to following sequences:
+
+
+-
+An enabling schedule should be included to allow operators to lock out the
+chiller plant during off-hour, e.g. to allow off-hour operation of HVAC systems
+except the chiller plant. The default schedule shall be 24/7 and be adjustable.
+
+-
+The plant should be enabled in the lowest stage when the plant has been
+disabled for at least
plaThrTim
, e.g. 15 minutes and:
+
+-
+Number of chiller plant requests >
ignReq
(ignReq
+should default to 0 and adjustable), and,
+
+-
+Outdoor air temperature is greater than chiller lockout temperature,
+
TOut
> TChiLocOut
, and,
+
+-
+The chiller enable schedule is active.
+
+
+
+-
+The plant should be disabled when it has been enabled for at least
+
plaThrTim
, e.g. 15 minutes and:
+
+-
+Number of chiller plant requests ≤
ignReq
for reqThrTim
, or,
+
+-
+Outdoor air temperature is 1 °F less than chiller lockout temperature,
+
TOut
< TChiLocOut
- 1 °F, or,
+
+-
+The chiller enable schedule is inactive.
+
+
+
+
+
+The following state machine chart illustrates the transitions between plant enable and plant disable:
+
+
+
+
+",
+revisions="
+
+-
+January 19, 2021, by Milica Grahovac:
+Added state chart illustration.
+
+-
+March 12, 2020, by Milica Grahovac:
+Removed initial stage determination as it is imlemented as a separate sequence. This is for
+issue 1831.
+
+-
+January 24, 2019, by Jianjun Hu:
+First implementation.
+
+
+"));
+end Enable;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Generic/PlantEnable/EnableDevices.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Generic/PlantEnable/EnableDevices.mo
new file mode 100644
index 00000000000..fc58cde481f
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Generic/PlantEnable/EnableDevices.mo
@@ -0,0 +1,204 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Generic.PlantEnable;
+block EnableDevices
+ "Enable devices when plants is enabled in chiller mode or waterside economizer mode"
+
+ parameter Integer nSta = 3
+ "Number of chiller stages";
+ parameter Integer nChiWatPum = 2
+ "Total number of chilled water pumps";
+ parameter Integer nConWatPum = 2
+ "Total number of condenser water pumps";
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uPla
+ "Plant enable signal"
+ annotation (Placement(transformation(extent={{-200,80},{-160,120}}),
+ iconTransformation(extent={{-140,60},{-100,100}})));
+ Buildings.Controls.OBC.CDL.Interfaces.IntegerInput uIni(
+ final min=0,
+ final max=nSta)
+ "Initial chiller stage (at plant enable)"
+ annotation (Placement(transformation(extent={{-200,40},{-160,80}}),
+ iconTransformation(extent={{-140,20},{-100,60}})));
+ Buildings.Controls.OBC.CDL.Interfaces.IntegerInput uChiSta(
+ final min=0,
+ final max=nSta)
+ "Current chiller stage"
+ annotation (Placement(transformation(extent={{-200,10},{-160,50}}),
+ iconTransformation(extent={{-140,-20},{-100,20}})));
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uChiWatPum[nChiWatPum]
+ "Chilled water pump proven on"
+ annotation (Placement(transformation(extent={{-200,-80},{-160,-40}}),
+ iconTransformation(extent={{-140,-60},{-100,-20}})));
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uConWatPum[nConWatPum]
+ "Condenser water pump proven on"
+ annotation (Placement(transformation(extent={{-200,-130},{-160,-90}}),
+ iconTransformation(extent={{-140,-100},{-100,-60}})));
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanOutput yEnaPlaPro
+ "True: it is in the plant enabling process"
+ annotation (Placement(transformation(extent={{160,80},{200,120}}),
+ iconTransformation(extent={{100,70},{140,110}})));
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanOutput yChiWatIsoVal
+ "Lead chiller chilled water isolation valve commanded open"
+ annotation (Placement(transformation(extent={{160,10},{200,50}}),
+ iconTransformation(extent={{100,40},{140,80}})));
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanOutput yConWatIsoVal
+ "Lead chiller condenser water isolation valve commanded open"
+ annotation (Placement(transformation(extent={{160,-20},{200,20}}),
+ iconTransformation(extent={{100,20},{140,60}})));
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanOutput yLeaPriChiPum
+ "Lead primary chilled water pump commanded on"
+ annotation (Placement(transformation(extent={{160,-50},{200,-10}}),
+ iconTransformation(extent={{100,-20},{140,20}})));
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanOutput yLeaConPum
+ "Lead condenser water pump commanded on"
+ annotation (Placement(transformation(extent={{160,-80},{200,-40}}),
+ iconTransformation(extent={{100,-50},{140,-10}})));
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanOutput yLeaTowCel
+ "Lead cooling tower cell commanded on"
+ annotation (Placement(transformation(extent={{160,-110},{200,-70}}),
+ iconTransformation(extent={{100,-80},{140,-40}})));
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanOutput yLeaChi
+ "Lead chiller commanded on"
+ annotation (Placement(transformation(extent={{160,-140},{200,-100}}),
+ iconTransformation(extent={{100,-110},{140,-70}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Equal intEqu1
+ "Check if current stage is initial stage"
+ annotation (Placement(transformation(extent={{-100,50},{-80,70}})));
+ Buildings.Controls.OBC.CDL.Logical.Not not1
+ "Not in initial stage"
+ annotation (Placement(transformation(extent={{-60,50},{-40,70}})));
+ Buildings.Controls.OBC.CDL.Logical.Edge edg1
+ "Becoming not initial stage"
+ annotation (Placement(transformation(extent={{-20,50},{0,70}})));
+ Buildings.Controls.OBC.CDL.Logical.Edge edg
+ "Plant enable edge"
+ annotation (Placement(transformation(extent={{-100,90},{-80,110}})));
+ Buildings.Controls.OBC.CDL.Logical.Latch ecoMod "Plant enabled in economizer mode"
+ annotation (Placement(transformation(extent={{40,90},{60,110}})));
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant conInt(
+ final k=1)
+ "Stage 1, meaning it stages in chiller mode"
+ annotation (Placement(transformation(extent={{-120,-10},{-100,10}})));
+ Buildings.Controls.OBC.CDL.Integers.Equal intEqu
+ "Check if initial stage is 0"
+ annotation (Placement(transformation(extent={{-40,20},{-20,40}})));
+ Buildings.Controls.OBC.CDL.Logical.And and1
+ "Logical andEnsures the stage is changed at high load increases/decreases where a stage up or a stage down signal is uninterrupted after a single stage change as an another one is needed right away"
+ annotation (Placement(transformation(extent={{100,20},{120,40}})));
+ Buildings.Controls.OBC.CDL.Logical.MultiOr mulOr(
+ final nin=nChiWatPum)
+ "Check if there is any chilled water pump proven on"
+ annotation (Placement(transformation(extent={{-120,-70},{-100,-50}})));
+ Buildings.Controls.OBC.CDL.Logical.MultiOr mulOr1(
+ final nin=nConWatPum)
+ "Check if there is any condenser water pump proven on"
+ annotation (Placement(transformation(extent={{-120,-120},{-100,-100}})));
+ Buildings.Controls.OBC.CDL.Logical.And and2
+ "Check if the lead pumps are proven on"
+ annotation (Placement(transformation(extent={{-60,-70},{-40,-50}})));
+ Buildings.Controls.OBC.CDL.Logical.And and3
+ "Enable lead chiller"
+ annotation (Placement(transformation(extent={{20,-130},{40,-110}})));
+
+equation
+ connect(uPla, edg.u)
+ annotation (Line(points={{-180,100},{-102,100}}, color={255,0,255}));
+ connect(uIni, intEqu1.u1) annotation (Line(points={{-180,60},{-102,60}},
+ color={255,127,0}));
+ connect(uChiSta, intEqu1.u2)
+ annotation (Line(points={{-180,30},{-140,30},{-140,52},{-102,52}}, color={255,127,0}));
+ connect(intEqu1.y, not1.u)
+ annotation (Line(points={{-78,60},{-62,60}}, color={255,0,255}));
+ connect(not1.y, edg1.u)
+ annotation (Line(points={{-38,60},{-22,60}}, color={255,0,255}));
+ connect(edg1.y, ecoMod.clr) annotation (Line(points={{2,60},{20,60},{20,94},{38,
+ 94}}, color={255,0,255}));
+ connect(edg.y, ecoMod.u)
+ annotation (Line(points={{-78,100},{38,100}}, color={255,0,255}));
+ connect(ecoMod.y, yEnaPlaPro)
+ annotation (Line(points={{62,100},{180,100}}, color={255,0,255}));
+ connect(ecoMod.y, yLeaPriChiPum) annotation (Line(points={{62,100},{80,100},{80,
+ -30},{180,-30}}, color={255,0,255}));
+ connect(ecoMod.y, yLeaConPum) annotation (Line(points={{62,100},{80,100},{80,-60},
+ {180,-60}}, color={255,0,255}));
+ connect(ecoMod.y,yLeaTowCel) annotation (Line(points={{62,100},{80,100},{80,-90},
+ {180,-90}}, color={255,0,255}));
+ connect(conInt.y, intEqu.u2) annotation (Line(points={{-98,0},{-60,0},{-60,22},
+ {-42,22}}, color={255,127,0}));
+ connect(uIni, intEqu.u1) annotation (Line(points={{-180,60},{-120,60},{-120,30},
+ {-42,30}}, color={255,127,0}));
+ connect(intEqu.y, and1.u1)
+ annotation (Line(points={{-18,30},{98,30}}, color={255,0,255}));
+ connect(ecoMod.y, and1.u2) annotation (Line(points={{62,100},{80,100},{80,22},
+ {98,22}}, color={255,0,255}));
+ connect(and1.y, yChiWatIsoVal)
+ annotation (Line(points={{122,30},{180,30}}, color={255,0,255}));
+ connect(and1.y, yConWatIsoVal) annotation (Line(points={{122,30},{140,30},{140,
+ 0},{180,0}}, color={255,0,255}));
+ connect(uChiWatPum, mulOr.u)
+ annotation (Line(points={{-180,-60},{-122,-60}}, color={255,0,255}));
+ connect(uConWatPum, mulOr1.u)
+ annotation (Line(points={{-180,-110},{-122,-110}}, color={255,0,255}));
+ connect(mulOr.y, and2.u1)
+ annotation (Line(points={{-98,-60},{-62,-60}}, color={255,0,255}));
+ connect(mulOr1.y, and2.u2) annotation (Line(points={{-98,-110},{-80,-110},{-80,
+ -68},{-62,-68}}, color={255,0,255}));
+ connect(and2.y, and3.u2) annotation (Line(points={{-38,-60},{-20,-60},{-20,-128},
+ {18,-128}}, color={255,0,255}));
+ connect(and1.y, and3.u1) annotation (Line(points={{122,30},{140,30},{140,0},{0,
+ 0},{0,-120},{18,-120}}, color={255,0,255}));
+ connect(and3.y, yLeaChi)
+ annotation (Line(points={{42,-120},{180,-120}}, color={255,0,255}));
+annotation (defaultComponentName = "enaDev",
+ Icon(coordinateSystem(preserveAspectRatio=false, extent={{-100,-100},{100,100}}),
+ graphics={
+ Rectangle(
+ extent={{-100,-100},{100,100}},
+ lineColor={0,0,127},
+ fillColor={255,255,255},
+ fillPattern=FillPattern.Solid),
+ Text(extent={{-100,138},{100,98}},
+ textColor={0,0,255},
+ textString="%name")}),
+ Diagram(coordinateSystem(preserveAspectRatio=false,extent={{-160,-140},{160,140}})),
+ Documentation(info="
+
+It controls the devices when the chiller plant is enabled in chiller mode or
+waterside economizer mode. It is implemented as provided in sections 5.2.2.4,
+section 1 and 2.
+
+
+-
+Open the isolation valves,
+
+-
+If the plant is enabled in waterside economizer mode,
+open the condenser water isolation valve of the waterside economizer.
+
+-
+If the plant is enabled in chiller mode,
+open the chilled water isolation valve and the condenser water isolation valve
+of the lead chiller.
+
+
+
+-
+Stage on lead primary chilled water pump, condenser water pump, and cooling
+tower respectively.
+
+-
+If the plant is enabled in chiller mode,
+once the lead pumps are proven on, enable lead chiller.
+
+
+",
+revisions="
+
+-
+July 20, 2022, by Jianjun Hu:
+First implementation.
+
+
+"));
+end EnableDevices;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Generic/PlantEnable/Validation/DisableChillers.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Generic/PlantEnable/Validation/DisableChillers.mo
new file mode 100644
index 00000000000..5899a4678a7
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Generic/PlantEnable/Validation/DisableChillers.mo
@@ -0,0 +1,90 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Generic.PlantEnable.Validation;
+model DisableChillers
+ "Validation sequence for disabling chillers and the associated devices"
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Generic.PlantEnable.DisableChillers disDev
+ "Disable chillers and the associated devices"
+ annotation (Placement(transformation(extent={{60,20},{80,40}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Pulse booPul(
+ final width=0.6,
+ final period=3600)
+ "Enabled plant"
+ annotation (Placement(transformation(extent={{-40,40},{-20,60}})));
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant con[2](
+ final k={true,false})
+ "Enabled chiller"
+ annotation (Placement(transformation(extent={{-80,70},{-60,90}})));
+ Buildings.Controls.OBC.CDL.Logical.Sources.Pulse booPul2(
+ final width=0.7,
+ final period=3600)
+ "Chilled water request"
+ annotation (Placement(transformation(extent={{-80,10},{-60,30}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant chiIsoVal[2](
+ final k={1,0})
+ "Chilled water isolation valve"
+ annotation (Placement(transformation(extent={{-40,-10},{-20,10}})));
+ Buildings.Controls.OBC.CDL.Logical.Sources.Pulse booPul3(
+ final width=0.7,
+ final period=3600)
+ "Condenser water request"
+ annotation (Placement(transformation(extent={{-80,-30},{-60,-10}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant conIsoVal1[2](
+ final k={1,0})
+ "Condenser water isolation valve"
+ annotation (Placement(transformation(extent={{-40,-60},{-20,-40}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant pumSpe[2](
+ final k={0.75,0}) "Pumps speed"
+ annotation (Placement(transformation(extent={{-80,-90},{-60,-70}})));
+
+equation
+ connect(booPul.y, disDev.uPla) annotation (Line(points={{-18,50},{-5,50},{-5,37},
+ {58,37}}, color={255,0,255}));
+ connect(con.y, disDev.uChi) annotation (Line(points={{-58,80},{40,80},{40,39},
+ {58,39}}, color={255,0,255}));
+ connect(booPul2.y, disDev.uChiWatReq[1]) annotation (Line(points={{-58,20},{2,
+ 20},{2,34},{58,34}}, color={255,0,255}));
+ connect(con[2].y, disDev.uChiWatReq[2]) annotation (Line(points={{-58,80},{2,80},
+ {2,34},{58,34}}, color={255,0,255}));
+ connect(chiIsoVal.y, disDev.uChiWatIsoVal) annotation (Line(points={{-18,0},{12,
+ 0},{12,32},{58,32}}, color={0,0,127}));
+ connect(booPul3.y, disDev.uConWatReq[1]) annotation (Line(points={{-58,-20},{22,
+ -20},{22,28},{58,28}}, color={255,0,255}));
+ connect(con[2].y, disDev.uConWatReq[2]) annotation (Line(points={{-58,80},{40,
+ 80},{40,28},{58,28}}, color={255,0,255}));
+ connect(conIsoVal1.y, disDev.uConWatIsoVal) annotation (Line(points={{-18,-50},
+ {32,-50},{32,26},{58,26}}, color={0,0,127}));
+ connect(pumSpe.y, disDev.uChiWatPumSpe) annotation (Line(points={{-58,-80},{40,
+ -80},{40,23},{58,23}}, color={0,0,127}));
+ connect(pumSpe.y, disDev.uConWatPumSpe) annotation (Line(points={{-58,-80},{40,
+ -80},{40,21},{58,21}}, color={0,0,127}));
+annotation (
+ experiment(StopTime=3600.0, Tolerance=1e-06),
+ __Dymola_Commands(file="modelica://Buildings/Resources/Scripts/Dymola/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Generic/PlantEnable/Validation/DisableChillers.mos"
+ "Simulate and plot"),
+ Documentation(info="
+
+This example validates
+
+Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Generic.PlantEnable.DisableChillers.
+
+", revisions="
+
+-
+July 22, 2022, by Jianjun Hu:
+First implementation.
+
+
+"),
+ Icon(coordinateSystem(extent={{-100,-100},{100,100}}),
+ graphics={Ellipse(lineColor = {75,138,73},
+ fillColor={255,255,255},
+ fillPattern = FillPattern.Solid,
+ extent = {{-100,-100},{100,100}}),
+ Polygon(lineColor = {0,0,255},
+ fillColor = {75,138,73},
+ pattern = LinePattern.None,
+ fillPattern = FillPattern.Solid,
+ points = {{-36,60},{64,0},{-36,-60},{-36,60}})}),
+ Diagram(coordinateSystem(preserveAspectRatio=false, extent={{-100,-100},{100,100}})));
+end DisableChillers;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Generic/PlantEnable/Validation/Enable.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Generic/PlantEnable/Validation/Enable.mo
new file mode 100644
index 00000000000..b14d5dc8551
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Generic/PlantEnable/Validation/Enable.mo
@@ -0,0 +1,143 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Generic.PlantEnable.Validation;
+model Enable
+ "Validation sequence for enabling and disabling chiller plant"
+
+ parameter Real aveTWetBul(
+ final unit="K",
+ final quantity="ThermodynamicTemperature",
+ displayUnit="degC")=288.15
+ "Chilled water supply set temperature";
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Generic.PlantEnable.Enable
+ disPlaSch(final schTab=[0,0; 6*3600,1; 19*3600,0; 24*3600,0], ignReq=1)
+ "Disable plant without waterside economizer, due to schedule"
+ annotation (Placement(transformation(extent={{40,90},{60,110}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Generic.PlantEnable.Enable
+ disPlaReq(final schTab=[0,0; 6*3600,1; 19*3600,0; 24*3600,0], ignReq=1)
+ "Disable plant without waterside economizer, due to lack of request"
+ annotation (Placement(transformation(extent={{40,0},{60,20}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Generic.PlantEnable.Enable
+ disPlaOutTem(final schTab=[0,0; 6*3600,1; 19*3600,0; 24*3600,0])
+ "Disable plant without waterside economizer, due to low outdoor temperature"
+ annotation (Placement(transformation(extent={{40,-80},{60,-60}})));
+
+protected
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant conInt(
+ final k=3)
+ "Chiller plant requests above the number of ignored requests"
+ annotation (Placement(transformation(extent={{-20,100},{0,120}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant conOutTem(
+ final k=293.15) "Constant outdoor temperature above lockout"
+ annotation (Placement(transformation(extent={{-20,60},{0,80}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.TimeTable chiPlaReq2(
+ final table=[0,1; 6.5*3600,1; 9*3600,2;14*3600,0; 19*3600,0; 24*3600,1],
+ final smoothness=Buildings.Controls.OBC.CDL.Types.Smoothness.ConstantSegments)
+ "Number of chiller plant request"
+ annotation (Placement(transformation(extent={{-60,0},{-40,20}})));
+
+ Buildings.Controls.OBC.CDL.Conversions.RealToInteger reaToInt2
+ "Convert real input to integer output"
+ annotation (Placement(transformation(extent={{-20,0},{0,20}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant conOutTem1(
+ final k=282.15)
+ "Constant outdoor temperature"
+ annotation (Placement(transformation(extent={{-20,-30},{0,-10}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.TimeTable chiPlaReq3(
+ final table=[0,1; 6.5*3600,1; 9*3600,2;14*3600,3; 19*3600,3; 24*3600,1],
+ final smoothness=Buildings.Controls.OBC.CDL.Types.Smoothness.ConstantSegments)
+ "Number of chiller plant request"
+ annotation (Placement(transformation(extent={{-60,-80},{-40,-60}})));
+
+ Buildings.Controls.OBC.CDL.Conversions.RealToInteger reaToInt3
+ "Convert real input to integer output"
+ annotation (Placement(transformation(extent={{-20,-80},{0,-60}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Sine outTem1(
+ final amplitude=7.5,
+ final freqHz=1/(24*3600),
+ final offset=280.15) "Outdoor temperature"
+ annotation (Placement(transformation(extent={{-20,-110},{0,-90}})));
+
+equation
+ connect(conOutTem.y, disPlaSch.TOut)
+ annotation (Line(points={{2,70},{24,70},{24,95.8},{38,95.8}}, color={0,0,127}));
+ connect(chiPlaReq2.y[1], reaToInt2.u)
+ annotation (Line(points={{-38,10},{-22,10}}, color={0,0,127}));
+ connect(reaToInt2.y, disPlaReq.chiPlaReq) annotation (Line(points={{2,10},{20,
+ 10},{20,14},{38,14}}, color={255,127,0}));
+ connect(conOutTem1.y, disPlaReq.TOut)
+ annotation (Line(points={{2,-20},{24,-20},{24,5.8},{38,5.8}}, color={0,0,127}));
+ connect(chiPlaReq3.y[1], reaToInt3.u)
+ annotation (Line(points={{-38,-70},{-22,-70}}, color={0,0,127}));
+ connect(reaToInt3.y, disPlaOutTem.chiPlaReq) annotation (Line(points={{2,-70},
+ {20,-70},{20,-66},{38,-66}}, color={255,127,0}));
+ connect(outTem1.y, disPlaOutTem.TOut)
+ annotation (Line(points={{2,-100},{24,-100},{24,-74.2},{38,-74.2}}, color={0,0,127}));
+ connect(conInt.y, disPlaSch.chiPlaReq) annotation (Line(points={{2,110},{20,
+ 110},{20,104},{38,104}}, color={255,127,0}));
+annotation (
+ experiment(StopTime=86400.0, Tolerance=1e-06),
+ __Dymola_Commands(file="modelica://Buildings/Resources/Scripts/Dymola/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Generic/PlantEnable/Validation/Enable.mos"
+ "Simulate and plot"),
+ Documentation(info="
+
+This example validates
+
+Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Generic.PlantEnable.Enable.
+
+", revisions="
+
+-
+March 12, 2020, by Milica Grahovac:
+Removed tests related to initial stage determination. This is for
+issue 1831.
+Updated tests to include schedule based reference results.
+
+-
+March 20, 2019, by Jianjun Hu:
+First implementation.
+
+
+"),
+ Icon(graphics={Ellipse(lineColor = {75,138,73},
+ fillColor={255,255,255},
+ fillPattern = FillPattern.Solid,
+ extent = {{-100,-100},{100,100}}),
+ Polygon(lineColor = {0,0,255},
+ fillColor = {75,138,73},
+ pattern = LinePattern.None,
+ fillPattern = FillPattern.Solid,
+ points = {{-36,60},{64,0},{-36,-60},{-36,60}})}),
+ Diagram(coordinateSystem(preserveAspectRatio=false, extent={{-140,-140},{140,140}}),
+ graphics={
+ Text(
+ extent={{40,90},{106,74}},
+ textColor={0,0,255},
+ fillColor={255,255,255},
+ fillPattern=FillPattern.Solid,
+ horizontalAlignment=TextAlignment.Left,
+ textString="Disable plant
+due to inactive schedule"),
+ Text(
+ extent={{40,0},{98,-12}},
+ textColor={0,0,255},
+ fillColor={255,255,255},
+ fillPattern=FillPattern.Solid,
+ horizontalAlignment=TextAlignment.Left,
+ textString="Disable plant
+due to zero request"),
+ Text(
+ extent={{40,-82},{120,-96}},
+ textColor={0,0,255},
+ fillColor={255,255,255},
+ fillPattern=FillPattern.Solid,
+ horizontalAlignment=TextAlignment.Left,
+ textString="Disable plant
+due to low outdoor temperature")}));
+end Enable;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Generic/PlantEnable/Validation/EnableDevices.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Generic/PlantEnable/Validation/EnableDevices.mo
new file mode 100644
index 00000000000..6b9afc6c937
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Generic/PlantEnable/Validation/EnableDevices.mo
@@ -0,0 +1,86 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Generic.PlantEnable.Validation;
+model EnableDevices "Validation sequence for enabling plant devices"
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Generic.PlantEnable.EnableDevices enaDev
+ "Enable valves and pumps"
+ annotation (Placement(transformation(extent={{60,20},{80,40}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Pulse booPul(
+ final width=0.1,
+ final period=3600)
+ "Enabled plant"
+ annotation (Placement(transformation(extent={{-80,70},{-60,90}})));
+ Buildings.Controls.OBC.CDL.Logical.Not not1
+ "Logical not"
+ annotation (Placement(transformation(extent={{-40,70},{-20,90}})));
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant conInt(
+ final k=1)
+ "Stage 1, meaning it stages in chiller mode"
+ annotation (Placement(transformation(extent={{-60,30},{-40,50}})));
+ Buildings.Controls.OBC.CDL.Integers.Sources.Pulse staSet(
+ final amplitude=-1,
+ final width=0.8,
+ final period=3600,
+ offset=2) "Stage setpoint"
+ annotation (Placement(transformation(extent={{-80,-10},{-60,10}})));
+ Buildings.Controls.OBC.CDL.Logical.Sources.Pulse booPul1(
+ final width=0.3,
+ final period=3600)
+ "Proven on pumps"
+ annotation (Placement(transformation(extent={{-80,-50},{-60,-30}})));
+ Buildings.Controls.OBC.CDL.Logical.Not not2
+ "Logical not"
+ annotation (Placement(transformation(extent={{-40,-50},{-20,-30}})));
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant con(
+ final k=false)
+ "Disabled pump"
+ annotation (Placement(transformation(extent={{-40,-90},{-20,-70}})));
+equation
+ connect(booPul.y, not1.u)
+ annotation (Line(points={{-58,80},{-42,80}}, color={255,0,255}));
+ connect(not1.y, enaDev.uPla) annotation (Line(points={{-18,80},{40,80},{40,38},
+ {58,38}}, color={255,0,255}));
+ connect(conInt.y, enaDev.uIni) annotation (Line(points={{-38,40},{28,40},{28,34},
+ {58,34}}, color={255,127,0}));
+ connect(staSet.y, enaDev.uChiSta) annotation (Line(points={{-58,0},{0,0},{0,30},
+ {58,30}}, color={255,127,0}));
+ connect(booPul1.y, not2.u)
+ annotation (Line(points={{-58,-40},{-42,-40}}, color={255,0,255}));
+ connect(not2.y, enaDev.uChiWatPum[1]) annotation (Line(points={{-18,-40},{20,-40},
+ {20,26},{58,26}}, color={255,0,255}));
+ connect(not2.y, enaDev.uConWatPum[1]) annotation (Line(points={{-18,-40},{20,-40},
+ {20,22},{58,22}}, color={255,0,255}));
+ connect(con.y, enaDev.uChiWatPum[2]) annotation (Line(points={{-18,-80},{40,-80},
+ {40,26},{58,26}}, color={255,0,255}));
+ connect(con.y, enaDev.uConWatPum[2]) annotation (Line(points={{-18,-80},{40,-80},
+ {40,22},{58,22}}, color={255,0,255}));
+annotation (
+ experiment(StopTime=3600.0, Tolerance=1e-06),
+ __Dymola_Commands(file="modelica://Buildings/Resources/Scripts/Dymola/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Generic/PlantEnable/Validation/EnableDevices.mos"
+ "Simulate and plot"),
+ Documentation(info="
+
+This example validates
+
+Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Generic.PlantEnable.EnableDevices.
+
+", revisions="
+
+-
+July 22, 2022, by Jianjun Hu:
+First implementation.
+
+
+"),
+ Icon(coordinateSystem(extent={{-100,-100},{100,100}}),
+ graphics={Ellipse(lineColor = {75,138,73},
+ fillColor={255,255,255},
+ fillPattern = FillPattern.Solid,
+ extent = {{-100,-100},{100,100}}),
+ Polygon(lineColor = {0,0,255},
+ fillColor = {75,138,73},
+ pattern = LinePattern.None,
+ fillPattern = FillPattern.Solid,
+ points = {{-36,60},{64,0},{-36,-60},{-36,60}})}),
+ Diagram(coordinateSystem(preserveAspectRatio=false, extent={{-100,-100},{100,100}})));
+end EnableDevices;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Generic/PlantEnable/Validation/package.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Generic/PlantEnable/Validation/package.mo
new file mode 100644
index 00000000000..1fa93695d82
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Generic/PlantEnable/Validation/package.mo
@@ -0,0 +1,36 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Generic.PlantEnable;
+package Validation "Collection of validation models"
+ annotation ( preferredView="info", Documentation(info="
+
+This package contains validation models for the classes in
+
+Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Generic.PlantEnable.
+
+
+Note that most validation models contain simple input data
+which may not be realistic, but for which the correct
+output can be obtained through an analytic solution.
+The examples plot various outputs, which have been verified against these
+solutions. These model outputs are stored as reference data and
+used for continuous validation whenever models in the library change.
+
+"),
+Icon(graphics={
+ Rectangle(
+ lineColor={200,200,200},
+ fillColor={248,248,248},
+ fillPattern=FillPattern.HorizontalCylinder,
+ extent={{-100.0,-100.0},{100.0,100.0}},
+ radius=25.0),
+ Rectangle(
+ lineColor={128,128,128},
+ extent={{-100.0,-100.0},{100.0,100.0}},
+ radius=25.0),
+ Polygon(
+ origin={8.0,14.0},
+ lineColor={78,138,73},
+ fillColor={78,138,73},
+ pattern=LinePattern.None,
+ fillPattern=FillPattern.Solid,
+ points={{-58.0,46.0},{42.0,-14.0},{-58.0,-74.0},{-58.0,46.0}})}));
+end Validation;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Generic/PlantEnable/Validation/package.order b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Generic/PlantEnable/Validation/package.order
new file mode 100644
index 00000000000..4cf17c6ee05
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Generic/PlantEnable/Validation/package.order
@@ -0,0 +1,3 @@
+DisableChillers
+Enable
+EnableDevices
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Generic/PlantEnable/package.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Generic/PlantEnable/package.mo
new file mode 100644
index 00000000000..42ea7228864
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Generic/PlantEnable/package.mo
@@ -0,0 +1,37 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Generic;
+package PlantEnable "Package of sequences for enabling plant and the associated devices"
+
+annotation (
+preferredView="info", Documentation(info="
+
+This package contains sequences for enabling plant and the associate devices.
+The sequences are implemented based on ASHRAE RP1711.
+March 2020 draft, section 5.2.2.
+"),
+Icon(graphics={
+ Rectangle(
+ extent={{-100,100},{100,-100}},
+ lineColor={28,108,200},
+ fillColor={255,255,255},
+ fillPattern=FillPattern.Solid,
+ lineThickness=5,
+ borderPattern=BorderPattern.Raised),
+ Text(
+ extent={{-120,146},{100,108}},
+ textColor={0,0,255},
+ textString="%name"),
+ Ellipse(extent={{-80,80},{80,-80}}, lineColor={28,108,200},fillColor={170,255,213},
+ fillPattern=FillPattern.Solid),
+ Ellipse(extent={{-90,90},{90,-90}}, lineColor={28,108,200}),
+ Rectangle(extent={{-75,2},{75,-2}}, lineColor={28,108,200},
+ fillColor={28,108,200},
+ fillPattern=FillPattern.Solid),
+ Text(
+ extent={{-66,46},{76,10}},
+ textColor={28,108,200},
+ textString="START"),
+ Text(
+ extent={{-66,-8},{76,-44}},
+ textColor={28,108,200},
+ textString="STOP")}));
+end PlantEnable;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Generic/PlantEnable/package.order b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Generic/PlantEnable/package.order
new file mode 100644
index 00000000000..ac6f1b7f7c8
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Generic/PlantEnable/package.order
@@ -0,0 +1,4 @@
+DisableChillers
+Enable
+EnableDevices
+Validation
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Generic/package.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Generic/package.mo
new file mode 100644
index 00000000000..53a2df1c70a
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Generic/package.mo
@@ -0,0 +1,43 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant;
+package Generic "Generic control sequences"
+
+annotation (preferredView="info", Documentation(info="
+
+This package contains generic primary plant control sequences.
+
+"),
+Icon(graphics={
+ Rectangle(
+ lineColor={200,200,200},
+ fillColor={248,248,248},
+ fillPattern=FillPattern.HorizontalCylinder,
+ extent={{-100.0,-100.0},{100.0,100.0}},
+ radius=25.0),
+ Rectangle(
+ lineColor={128,128,128},
+ extent={{-100.0,-100.0},{100.0,100.0}},
+ radius=25.0),
+ Ellipse(
+ origin={10.0,10.0},
+ fillColor={76,76,76},
+ pattern=LinePattern.None,
+ fillPattern=FillPattern.Solid,
+ extent={{-80.0,-80.0},{-20.0,-20.0}}),
+ Ellipse(
+ origin={10.0,10.0},
+ pattern=LinePattern.None,
+ fillPattern=FillPattern.Solid,
+ extent={{0.0,-80.0},{60.0,-20.0}}),
+ Ellipse(
+ origin={10.0,10.0},
+ fillColor={128,128,128},
+ pattern=LinePattern.None,
+ fillPattern=FillPattern.Solid,
+ extent={{0.0,0.0},{60.0,60.0}}),
+ Ellipse(
+ origin={10.0,10.0},
+ lineColor={128,128,128},
+ fillColor={255,255,255},
+ fillPattern=FillPattern.Solid,
+ extent={{-80.0,0.0},{-20.0,60.0}})}));
+end Generic;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Generic/package.order b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Generic/package.order
new file mode 100644
index 00000000000..7324ea03c38
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Generic/package.order
@@ -0,0 +1,2 @@
+EquipmentRotation
+PlantEnable
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/HeadPressure/Controller.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/HeadPressure/Controller.mo
new file mode 100644
index 00000000000..7a316df97a5
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/HeadPressure/Controller.mo
@@ -0,0 +1,274 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.HeadPressure;
+block Controller "Head pressure controller for plants with headered condenser water pumps"
+ parameter Boolean have_heaPreConSig = false
+ "Flag indicating if there is head pressure control signal from chiller controller"
+ annotation (Dialog(group="Plant"));
+ parameter Boolean have_WSE=true
+ "True if the plant has waterside economizer. When the plant has waterside economizer, the condenser water pump speed must be variable"
+ annotation (Dialog(group="Plant"));
+ parameter Boolean have_fixSpeConWatPum=false
+ "Flag indicating if the plant has fixed speed condenser water pumps"
+ annotation (Dialog(group="Plant", enable=not have_WSE));
+ parameter Real minTowSpe=0.1 "Minimum cooling tower fan speed"
+ annotation (Dialog(group="Setpoints"));
+ parameter Real minConWatPumSpe=0.1 "Minimum condenser water pump speed"
+ annotation (Dialog(group="Setpoints", enable= not ((not have_WSE) and have_fixSpeConWatPum)));
+ parameter Real minHeaPreValPos=0.1 "Minimum head pressure control valve position"
+ annotation (Dialog(group="Setpoints", enable= (not ((not have_WSE) and (not have_fixSpeConWatPum)))));
+ parameter Real minChiLif=10
+ "Minimum allowable lift at minimum load for chiller"
+ annotation (Dialog(tab="Loop signal", enable=not have_heaPreConSig));
+ parameter Buildings.Controls.OBC.CDL.Types.SimpleController controllerType=
+ Buildings.Controls.OBC.CDL.Types.SimpleController.PI "Type of controller"
+ annotation (Dialog(tab="Loop signal", group="PID controller", enable=not have_heaPreConSig));
+ parameter Real k=1 "Gain of controller"
+ annotation (Dialog(tab="Loop signal", group="PID controller", enable=not have_heaPreConSig));
+ parameter Real Ti(
+ final unit="s",
+ final quantity="Time")=0.5 "Time constant of integrator block"
+ annotation (Dialog(tab="Loop signal", group="PID controller", enable=not have_heaPreConSig));
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uChiHeaCon
+ "Chillers head pressure control status: true = ON, false = OFF"
+ annotation (Placement(transformation(extent={{-140,100},{-100,140}}),
+ iconTransformation(extent={{-140,80},{-100,120}})));
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput TConWatRet(
+ final unit="K",
+ displayUnit="degC",
+ final quantity="ThermodynamicTemperature") if not have_heaPreConSig
+ "Measured condenser water return temperature (condenser leaving)"
+ annotation (Placement(transformation(extent={{-140,70},{-100,110}}),
+ iconTransformation(extent={{-140,40},{-100,80}})));
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput TChiWatSup(
+ final unit="K",
+ displayUnit="degC",
+ final quantity="ThermodynamicTemperature") if not have_heaPreConSig
+ "Measured chilled water supply temperature"
+ annotation (Placement(transformation(extent={{-140,40},{-100,80}}),
+ iconTransformation(extent={{-140,0},{-100,40}})));
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput desConWatPumSpe(
+ final min=0,
+ final max=1,
+ final unit="1") if not have_fixSpeConWatPum
+ "Design condenser water pump speed for current stage"
+ annotation (Placement(transformation(extent={{-140,10},{-100,50}}),
+ iconTransformation(extent={{-140,-40},{-100,0}})));
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uWSE
+ if have_WSE and (not have_fixSpeConWatPum)
+ "Status of water side economizer: true = ON, false = OFF"
+ annotation (Placement(transformation(extent={{-140,-20},{-100,20}}),
+ iconTransformation(extent={{-140,-80},{-100,-40}})));
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput uHeaPreCon(
+ final min=0,
+ final max=1,
+ final unit="1") if have_heaPreConSig
+ "Chiller head pressure control loop signal from chiller controller"
+ annotation (Placement(transformation(extent={{-140,-50},{-100,-10}}),
+ iconTransformation(extent={{-140,-120},{-100,-80}})));
+ Buildings.Controls.OBC.CDL.Interfaces.RealOutput yMaxTowSpeSet(
+ final min=0,
+ final max=1,
+ final unit="1") "Maximum cooling tower speed setpoint"
+ annotation (Placement(transformation(extent={{100,60},{140,100}}),
+ iconTransformation(extent={{100,40},{140,80}})));
+ Buildings.Controls.OBC.CDL.Interfaces.RealOutput yHeaPreConVal(
+ final min=0,
+ final max=1,
+ final unit="1") if have_WSE or (not have_WSE and have_fixSpeConWatPum)
+ "Head pressure control valve position"
+ annotation (Placement(transformation(extent={{100,10},{140,50}}),
+ iconTransformation(extent={{100,-20},{140,20}})));
+ Buildings.Controls.OBC.CDL.Interfaces.RealOutput yConWatPumSpeSet(
+ final min=0,
+ final max=1,
+ final unit="1") if not have_fixSpeConWatPum
+ "Condenser water pump speed setpoint"
+ annotation (Placement(transformation(extent={{100,-30},{140,10}}),
+ iconTransformation(extent={{100,-80},{140,-40}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.HeadPressure.Subsequences.ControlLoop
+ chiHeaPreLoo(
+ final minChiLif=minChiLif,
+ final controllerType=controllerType,
+ final k=k,
+ final Ti=Ti) if not have_heaPreConSig
+ "Generate chiller head pressure control loop signal"
+ annotation (Placement(transformation(extent={{-20,80},{0,100}})));
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.HeadPressure.Subsequences.MappingWithoutWSE
+ noWSE(
+ final have_fixSpeConWatPum=have_fixSpeConWatPum,
+ final minTowSpe=minTowSpe,
+ final minConWatPumSpe=minConWatPumSpe,
+ final minHeaPreValPos=minHeaPreValPos) if not have_WSE
+ "Controlling equipments for plants without waterside economizer"
+ annotation (Placement(transformation(extent={{40,40},{60,60}})));
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.HeadPressure.Subsequences.MappingWithWSE
+ withWSE(
+ final minTowSpe=minTowSpe,
+ final minConWatPumSpe=minConWatPumSpe,
+ final minHeaPreValPos=minHeaPreValPos) if have_WSE and (not have_fixSpeConWatPum)
+ "Controlling equipments for plants with waterside economizer"
+ annotation (Placement(transformation(extent={{40,-20},{60,0}})));
+
+protected
+ Buildings.Controls.OBC.CDL.Continuous.Switch swi if have_heaPreConSig
+ annotation (Placement(transformation(extent={{-20,-50},{0,-30}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant con(
+ final k=0) if have_heaPreConSig "Constant"
+ annotation (Placement(transformation(extent={{-80,-70},{-60,-50}})));
+ Buildings.Controls.OBC.CDL.Utilities.Assert assMes1(
+ final message="If the plant has waterside economizer, the condenser water pump cannot be fix speed.")
+ "Asserts if the plant has waterside economizer and the condenser water pump has fix speed"
+ annotation (Placement(transformation(extent={{60,-110},{80,-90}})));
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant havWSE(
+ final k=have_WSE)
+ "Have waterside economizer"
+ annotation (Placement(transformation(extent={{-60,-100},{-40,-80}})));
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant fixSpe(
+ final k=have_fixSpeConWatPum)
+ "Fix speed condenser water pump"
+ annotation (Placement(transformation(extent={{-60,-130},{-40,-110}})));
+ Buildings.Controls.OBC.CDL.Logical.And and2
+ "The plant has waterside economizer and the condenser water pump is fix speed"
+ annotation (Placement(transformation(extent={{-20,-110},{0,-90}})));
+ Buildings.Controls.OBC.CDL.Logical.Not not1 "Logical not"
+ annotation (Placement(transformation(extent={{20,-110},{40,-90}})));
+
+equation
+ connect(chiHeaPreLoo.TConWatRet, TConWatRet)
+ annotation (Line(points={{-22,90},{-120,90}}, color={0,0,127}));
+ connect(chiHeaPreLoo.TChiWatSup, TChiWatSup)
+ annotation (Line(points={{-22,82},{-40,82},{-40,60},{-120,60}}, color={0,0,127}));
+ connect(chiHeaPreLoo.yHeaPreCon, noWSE.uHeaPreCon)
+ annotation (Line(points={{2,90},{20,90},{20,58},{38,58}}, color={0,0,127}));
+ connect(chiHeaPreLoo.yHeaPreCon, withWSE.uHeaPreCon)
+ annotation (Line(points={{2,90},{20,90},{20,-2},{38,-2}}, color={0,0,127}));
+ connect(uChiHeaCon, noWSE.uHeaPreEna)
+ annotation (Line(points={{-120,120},{-80,120},{-80,42},{38,42}},
+ color={255,0,255}));
+ connect(withWSE.uWSE, uWSE)
+ annotation (Line(points={{38,-14},{-20,-14},{-20,0},{-120,0}},
+ color={255,0,255}));
+ connect(uChiHeaCon, withWSE.uHeaPreEna)
+ annotation (Line(points={{-120,120},{-80,120},{-80,-18},{38,-18}},
+ color={255,0,255}));
+ connect(uChiHeaCon, swi.u2)
+ annotation (Line(points={{-120,120},{-80,120},{-80,-40},{-22,-40}},
+ color={255,0,255}));
+ connect(uHeaPreCon, swi.u1)
+ annotation (Line(points={{-120,-30},{-40,-30},{-40,-32},{-22,-32}},
+ color={0,0,127}));
+ connect(con.y, swi.u3)
+ annotation (Line(points={{-58,-60},{-40,-60},{-40,-48},{-22,-48}},
+ color={0,0,127}));
+ connect(swi.y, noWSE.uHeaPreCon)
+ annotation (Line(points={{2,-40},{20,-40},{20,58},{38,58}}, color={0,0,127}));
+ connect(swi.y, withWSE.uHeaPreCon)
+ annotation (Line(points={{2,-40},{20,-40},{20,-2},{38,-2}}, color={0,0,127}));
+ connect(noWSE.yMaxTowSpeSet, yMaxTowSpeSet)
+ annotation (Line(points={{62,56},{80,56},{80,80},{120,80}}, color={0,0,127}));
+ connect(withWSE.yHeaPreConVal, yHeaPreConVal)
+ annotation (Line(points={{62,-16},{90,-16},{90,30},{120,30}}, color={0,0,127}));
+ connect(withWSE.yMaxTowSpeSet, yMaxTowSpeSet)
+ annotation (Line(points={{62,-4},{80,-4},{80,80},{120,80}}, color={0,0,127}));
+ connect(withWSE.yConWatPumSpeSet, yConWatPumSpeSet)
+ annotation (Line(points={{62,-10},{120,-10}}, color={0,0,127}));
+ connect(desConWatPumSpe, withWSE.desConWatPumSpe)
+ annotation (Line(points={{-120,30},{0,30},{0,-6},{38,-6}}, color={0,0,127}));
+ connect(noWSE.yConWatPumSpeSet, yConWatPumSpeSet)
+ annotation (Line(points={{62,42},{70,42},{70,-10},{120,-10}}, color={0,0,127}));
+ connect(noWSE.yHeaPreConVal, yHeaPreConVal)
+ annotation (Line(points={{62,46},{90,46},{90,30},{120,30}}, color={0,0,127}));
+ connect(uChiHeaCon, chiHeaPreLoo.uHeaPreEna)
+ annotation (Line(points={{-120,120},{-80,120},{-80,98},{-22,98}},
+ color={255,0,255}));
+ connect(desConWatPumSpe, noWSE.desConWatPumSpe)
+ annotation (Line(points={{-120,30},{0,30},{0,50},{38,50}}, color={0,0,127}));
+ connect(havWSE.y, and2.u1) annotation (Line(points={{-38,-90},{-30,-90},{-30,-100},
+ {-22,-100}}, color={255,0,255}));
+ connect(fixSpe.y, and2.u2) annotation (Line(points={{-38,-120},{-30,-120},{-30,
+ -108},{-22,-108}}, color={255,0,255}));
+ connect(and2.y, not1.u)
+ annotation (Line(points={{2,-100},{18,-100}}, color={255,0,255}));
+ connect(not1.y, assMes1.u)
+ annotation (Line(points={{42,-100},{58,-100}}, color={255,0,255}));
+
+annotation (
+ defaultComponentName="heaPreCon",
+ Icon(coordinateSystem(preserveAspectRatio=false, extent={{-100,-100},{100,100}}),
+ graphics={
+ Rectangle(
+ extent={{-100,-100},{100,100}},
+ lineColor={0,0,0},
+ fillColor={255,255,255},
+ fillPattern=FillPattern.Solid),
+ Text(
+ extent={{-120,146},{100,108}},
+ textColor={0,0,255},
+ textString="%name"),
+ Rectangle(
+ extent={{-80,60},{82,-60}},
+ lineColor={28,108,200},
+ fillColor={210,210,210},
+ fillPattern=FillPattern.Solid,
+ borderPattern=BorderPattern.Raised),
+ Polygon(
+ points={{-80,60},{-14,4},{-80,-60},{-80,60}},
+ lineColor={175,175,175},
+ fillColor={175,175,175},
+ fillPattern=FillPattern.Solid)}),
+ Diagram(coordinateSystem(preserveAspectRatio=false,
+ extent={{-100,-140},{100,140}})),
+ Documentation(info="
+
+Block that generates control signals for chiller head pressure control,
+according to ASHRAE RP-1711 Advanced Sequences of Operation for HVAC Systems Phase II –
+Central Plants and Hydronic Systems (draft version on March 23, 2020),
+section 5.2.10 Head pressure control.
+
+
+Note that if a plant has waterside economizer, the condenser water pump must be
+variable speed.
+
+
+This sequence contains three subsequences:
+
+
+",
+revisions="
+
+-
+January 30, 2019, by Jianjun Hu:
+First implementation.
+
+
+"));
+end Controller;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/HeadPressure/Subsequences/ControlLoop.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/HeadPressure/Subsequences/ControlLoop.mo
new file mode 100644
index 00000000000..ae032ddd842
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/HeadPressure/Subsequences/ControlLoop.mo
@@ -0,0 +1,140 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.HeadPressure.Subsequences;
+block ControlLoop
+ "Sequence to generate head pressure control signal if it is not available from the chiller controller"
+ parameter Real minChiLif(
+ final min=1e-5,
+ final unit="K",
+ final quantity="TemperatureDifference",
+ displayUnit="degC") = 10
+ "Minimum allowable lift at minimum load for chiller";
+ parameter Buildings.Controls.OBC.CDL.Types.SimpleController controllerType=
+ Buildings.Controls.OBC.CDL.Types.SimpleController.PI
+ "Type of controller"
+ annotation (Dialog(group="PID controller"));
+ parameter Real k=1 "Gain of controller"
+ annotation (Dialog(group="PID controller"));
+ parameter Real Ti(
+ final unit="s",
+ final quantity="Time")=0.5 "Time constant of integrator block"
+ annotation (Dialog(group="PID controller"));
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uHeaPreEna
+ "Status of head pressure control: true = ON, false = OFF"
+ annotation (Placement(transformation(extent={{-140,0},{-100,40}}),
+ iconTransformation(extent={{-140,60},{-100,100}})));
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput TConWatRet(
+ final unit="K",
+ displayUnit="degC",
+ final quantity="ThermodynamicTemperature")
+ "Measured condenser water return temperature (condenser leaving)"
+ annotation (Placement(transformation(extent={{-140,-40},{-100,0}}),
+ iconTransformation(extent={{-140,-20},{-100,20}})));
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput TChiWatSup(
+ final unit="K",
+ displayUnit="degC",
+ final quantity="ThermodynamicTemperature")
+ "Measured chilled water supply temperature"
+ annotation (Placement(transformation(extent={{-140,-100},{-100,-60}}),
+ iconTransformation(extent={{-140,-100},{-100,-60}})));
+ Buildings.Controls.OBC.CDL.Interfaces.RealOutput yHeaPreCon(
+ final unit="1",
+ final min=0,
+ final max=1) "Chiller head pressure control loop output"
+ annotation (Placement(transformation(extent={{100,-20},{140,20}}),
+ iconTransformation(extent={{100,-20},{140,20}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.PIDWithReset conPID(
+ final controllerType=controllerType,
+ final k=k,
+ final Ti=Ti,
+ final yMax=1,
+ final yMin=0,
+ final y_reset=0) "Generate head pressure control signal"
+ annotation (Placement(transformation(extent={{20,50},{40,70}})));
+
+protected
+ Buildings.Controls.OBC.CDL.Continuous.Subtract sub1
+ annotation (Placement(transformation(extent={{-70,-30},{-50,-10}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant con(final k=1)
+ "Constant one"
+ annotation (Placement(transformation(extent={{-40,50},{-20,70}})));
+ Buildings.Controls.OBC.CDL.Continuous.MultiplyByParameter gai(final k=1/minChiLif)
+ "Normalized by minimum allowable lift at minimum load for chiller"
+ annotation (Placement(transformation(extent={{-20,-30},{0,-10}})));
+
+equation
+ connect(TConWatRet, sub1.u1)
+ annotation (Line(points={{-120,-20},{-80,-20},{-80,-14},{-72,-14}},
+ color={0,0,127}));
+ connect(con.y, conPID.u_s)
+ annotation (Line(points={{-18,60},{18,60}}, color={0,0,127}));
+ connect(conPID.y, yHeaPreCon)
+ annotation (Line(points={{42,60},{60,60},{60,0},{120,0}}, color={0,0,127}));
+ connect(sub1.y, gai.u)
+ annotation (Line(points={{-48,-20},{-22,-20}}, color={0,0,127}));
+ connect(gai.y, conPID.u_m)
+ annotation (Line(points={{2,-20},{30,-20},{30,48}}, color={0,0,127}));
+ connect(uHeaPreEna, conPID.trigger)
+ annotation (Line(points={{-120,20},{24,20},{24,48}}, color={255,0,255}));
+
+ connect(TChiWatSup, sub1.u2) annotation (Line(points={{-120,-80},{-80,-80},{
+ -80,-26},{-72,-26}}, color={0,0,127}));
+annotation (
+ defaultComponentName= "chiHeaPreLoo",
+ Icon(coordinateSystem(preserveAspectRatio=false), graphics={
+ Rectangle(
+ extent={{-100,-100},{100,100}},
+ lineColor={170,255,255},
+ fillColor={255,255,255},
+ fillPattern=FillPattern.Solid,
+ borderPattern=BorderPattern.Raised),
+ Text(
+ extent={{-120,146},{100,108}},
+ textColor={0,0,255},
+ textString="%name"),
+ Polygon(
+ points={{-80,90},{-88,68},{-72,68},{-80,90}},
+ lineColor={192,192,192},
+ fillColor={192,192,192},
+ fillPattern=FillPattern.Solid),
+ Line(points={{-80,78},{-80,-90}}, color={192,192,192}),
+ Line(points={{-90,0},{82,0}}, color={192,192,192}),
+ Polygon(
+ points={{90,0},{68,8},{68,-8},{90,0}},
+ lineColor={192,192,192},
+ fillColor={192,192,192},
+ fillPattern=FillPattern.Solid),
+ Line(origin = {-1.939,-1.816},
+ points={{61.939,7.816},{37.939,15.816},{11.939,-80.184},{-29.966,113.485},
+ {-65.374,-61.217},{-78.061,-78.184}},
+ color = {0,0,127},
+ smooth = Smooth.Bezier)}),
+ Diagram(coordinateSystem(preserveAspectRatio=false)),
+ Documentation(info="
+
+Block that generates chiller head pressure control loop signal when the signal
+is not available from chiller controller,
+according to ASHRAE RP-1711 Advanced Sequences of Operation for HVAC Systems Phase II –
+Central Plants and Hydronic Systems (Draft on March 23, 2020),
+section 5.2.10 Head pressure control, part 5.2.10.1 and 5.2.10.2.
+
+
+1. When head pressure control loop is enabled, PID loop shall
+maintain the temperature differential between the chiller condenser water
+return (condenser leaving) temperature TConWatRet
and chilled water supply temperature
+TChiWatSup
at minimum allowable lift minChiLif
(chiller lift
+equals to TConWatRet
minus TChiWatSup
)
+
+
+2. Each operating chiller shall have its own head pressure control loop.
+
+",
+revisions="
+
+-
+January 30, 2019, by Jianjun Hu:
+First implementation.
+
+
+"));
+end ControlLoop;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/HeadPressure/Subsequences/MappingWithWSE.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/HeadPressure/Subsequences/MappingWithWSE.mo
new file mode 100644
index 00000000000..eb45f55154c
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/HeadPressure/Subsequences/MappingWithWSE.mo
@@ -0,0 +1,309 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.HeadPressure.Subsequences;
+block MappingWithWSE
+ "Equipment setpoints when chiller head pressure control is enabled, for plants with waterside economizer and headered condenser water pumps"
+ parameter Real minTowSpe = 0.1
+ "Minimum cooling tower fan speed";
+ parameter Real minConWatPumSpe = 0.1
+ "Minimum condenser water pump speed";
+ parameter Real minHeaPreValPos = 0.1
+ "Minimum head pressure control valve position";
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput uHeaPreCon
+ "Chiller head pressure control loop signal"
+ annotation (Placement(transformation(extent={{-160,110},{-120,150}}),
+ iconTransformation(extent={{-140,60},{-100,100}})));
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput desConWatPumSpe
+ "Design condenser water pump speed for current stage"
+ annotation (Placement(transformation(extent={{-160,40},{-120,80}}),
+ iconTransformation(extent={{-140,20},{-100,60}})));
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uWSE
+ "Status of water side economizer: true = ON, false = OFF"
+ annotation (Placement(transformation(extent={{-160,-20},{-120,20}}),
+ iconTransformation(extent={{-140,-60},{-100,-20}})));
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uHeaPreEna
+ "Status of head pressure control: true = ON, false = OFF"
+ annotation (Placement(transformation(extent={{-160,-180},{-120,-140}}),
+ iconTransformation(extent={{-140,-100},{-100,-60}})));
+ Buildings.Controls.OBC.CDL.Interfaces.RealOutput yMaxTowSpeSet(
+ final unit="1",
+ final min=0,
+ final max=1) "Maximum cooling tower speed setpoint"
+ annotation (Placement(transformation(extent={{120,160},{160,200}}),
+ iconTransformation(extent={{100,40},{140,80}})));
+ Buildings.Controls.OBC.CDL.Interfaces.RealOutput yConWatPumSpeSet(
+ final unit="1",
+ final min=0,
+ final max=1) "Condenser water pump speed setpoint"
+ annotation (Placement(transformation(extent={{120,50},{160,90}}),
+ iconTransformation(extent={{100,-20},{140,20}})));
+ Buildings.Controls.OBC.CDL.Interfaces.RealOutput yHeaPreConVal(
+ final unit="1",
+ final min=0,
+ final max=1) "Head pressure control valve position"
+ annotation (Placement(transformation(extent={{120,-180},{160,-140}}),
+ iconTransformation(extent={{100,-80},{140,-40}})));
+
+protected
+ Buildings.Controls.OBC.CDL.Continuous.Line maxCooTowSpeSet
+ "Maximum cooling tower speed setpoint"
+ annotation (Placement(transformation(extent={{40,120},{60,140}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant zer(final k=0)
+ "Constant zero"
+ annotation (Placement(transformation(extent={{0,140},{20,160}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant one(final k=1)
+ "Constant one"
+ annotation (Placement(transformation(extent={{-40,140},{-20,160}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant hal(final k=0.5)
+ "Constant value"
+ annotation (Placement(transformation(extent={{-40,100},{-20,120}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant hpTowMaxSpe(
+ final k=minTowSpe)
+ "Minimum allowable tower speed"
+ annotation (Placement(transformation(extent={{0,100},{20,120}})));
+ Buildings.Controls.OBC.CDL.Continuous.Line conWatPumSpe
+ "Condenser water pump speed"
+ annotation (Placement(transformation(extent={{40,20},{60,40}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant hal1(final k=0.5)
+ "Constant value"
+ annotation (Placement(transformation(extent={{0,40},{20,60}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant one2(final k=1)
+ "Constant one"
+ annotation (Placement(transformation(extent={{-40,-10},{-20,10}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant con(
+ final k=minConWatPumSpe) "Minimum condenser water pump speed"
+ annotation (Placement(transformation(extent={{0,-10},{20,10}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant one3(final k=1)
+ "Constant one"
+ annotation (Placement(transformation(extent={{-40,-50},{-20,-30}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant one4(final k=1)
+ "Constant one"
+ annotation (Placement(transformation(extent={{-40,-90},{-20,-70}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant con1(
+ final k=minHeaPreValPos)
+ "Minimum head pressure control valve position"
+ annotation (Placement(transformation(extent={{0,-90},{20,-70}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant zer1(final k=0)
+ "Constant value"
+ annotation (Placement(transformation(extent={{0,-50},{20,-30}})));
+ Buildings.Controls.OBC.CDL.Continuous.Line heaPreConVal
+ "Head pressure control valve position"
+ annotation (Placement(transformation(extent={{40,-70},{60,-50}})));
+ Buildings.Controls.OBC.CDL.Continuous.Switch swi
+ annotation (Placement(transformation(extent={{80,170},{100,190}})));
+ Buildings.Controls.OBC.CDL.Continuous.Switch swi1
+ annotation (Placement(transformation(extent={{80,60},{100,80}})));
+ Buildings.Controls.OBC.CDL.Continuous.Switch swi2
+ annotation (Placement(transformation(extent={{80,-120},{100,-100}})));
+ Buildings.Controls.OBC.CDL.Continuous.Switch swi3
+ annotation (Placement(transformation(extent={{80,-170},{100,-150}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant zer2(final k=0)
+ "Constant value"
+ annotation (Placement(transformation(extent={{-40,-190},{-20,-170}})));
+ Buildings.Controls.OBC.CDL.Logical.Not not1 "Logical not"
+ annotation (Placement(transformation(extent={{-100,-150},{-80,-130}})));
+ Buildings.Controls.OBC.CDL.Logical.Or or2 "Logical or"
+ annotation (Placement(transformation(extent={{-80,170},{-60,190}})));
+
+equation
+ connect(zer.y, maxCooTowSpeSet.x1)
+ annotation (Line(points={{22,150},{30,150},{30,138},{38,138}},color={0,0,127}));
+ connect(one.y, maxCooTowSpeSet.f1)
+ annotation (Line(points={{-18,150},{-10,150},{-10,134},{38,134}},
+ color={0,0,127}));
+ connect(hal.y, maxCooTowSpeSet.x2)
+ annotation (Line(points={{-18,110},{-10,110},{-10,126},{38,126}},
+ color={0,0,127}));
+ connect(hpTowMaxSpe.y, maxCooTowSpeSet.f2)
+ annotation (Line(points={{22,110},{30,110},{30,122},{38,122}},color={0,0,127}));
+ connect(uHeaPreCon, maxCooTowSpeSet.u)
+ annotation (Line(points={{-140,130},{38,130}}, color={0,0,127}));
+ connect(hal1.y,conWatPumSpe. x1)
+ annotation (Line(points={{22,50},{30,50},{30,38},{38,38}},color={0,0,127}));
+ connect(con.y,conWatPumSpe. f2)
+ annotation (Line(points={{22,0},{30,0},{30,22},{38,22}},color={0,0,127}));
+ connect(one2.y,conWatPumSpe. x2)
+ annotation (Line(points={{-18,0},{-10,0},{-10,26},{38,26}}, color={0,0,127}));
+ connect(uHeaPreCon,conWatPumSpe. u)
+ annotation (Line(points={{-140,130},{-80,130},{-80,30},{38,30}},
+ color={0,0,127}));
+ connect(zer1.y, heaPreConVal.x1)
+ annotation (Line(points={{22,-40},{30,-40},{30,-52},{38,-52}},color={0,0,127}));
+ connect(one3.y, heaPreConVal.f1)
+ annotation (Line(points={{-18,-40},{-10,-40},{-10,-56},{38,-56}},
+ color={0,0,127}));
+ connect(one4.y, heaPreConVal.x2)
+ annotation (Line(points={{-18,-80},{-10,-80},{-10,-64},{38,-64}},
+ color={0,0,127}));
+ connect(con1.y, heaPreConVal.f2)
+ annotation (Line(points={{22,-80},{30,-80},{30,-68},{38,-68}},color={0,0,127}));
+ connect(uHeaPreCon, heaPreConVal.u)
+ annotation (Line(points={{-140,130},{-80,130},{-80,-60},{38,-60}},
+ color={0,0,127}));
+ connect(maxCooTowSpeSet.y, swi.u3)
+ annotation (Line(points={{62,130},{70,130},{70,172},{78,172}},
+ color={0,0,127}));
+ connect(swi.y, yMaxTowSpeSet)
+ annotation (Line(points={{102,180},{140,180}}, color={0,0,127}));
+ connect(desConWatPumSpe, swi1.u1)
+ annotation (Line(points={{-140,60},{-60,60},{-60,78},{78,78}}, color={0,0,127}));
+ connect(conWatPumSpe.y, swi1.u3)
+ annotation (Line(points={{62,30},{70,30},{70,62},{78,62}},
+ color={0,0,127}));
+ connect(swi1.y, yConWatPumSpeSet)
+ annotation (Line(points={{102,70},{140,70}}, color={0,0,127}));
+ connect(uWSE, swi2.u2)
+ annotation (Line(points={{-140,0},{-100,0},{-100,-110},{78,-110}},
+ color={255,0,255}));
+ connect(zer2.y, swi3.u3)
+ annotation (Line(points={{-18,-180},{60,-180},{60,-168},{78,-168}},
+ color={0,0,127}));
+ connect(uHeaPreEna, swi3.u2)
+ annotation (Line(points={{-140,-160},{78,-160}}, color={255,0,255}));
+ connect(swi2.y, swi3.u1)
+ annotation (Line(points={{102,-110},{110,-110},{110,-140},{60,-140},
+ {60,-152},{78,-152}}, color={0,0,127}));
+ connect(swi3.y, yHeaPreConVal)
+ annotation (Line(points={{102,-160},{140,-160}}, color={0,0,127}));
+ connect(one.y, swi.u1)
+ annotation (Line(points={{-18,150},{-10,150},{-10,188},{78,188}},
+ color={0,0,127}));
+ connect(desConWatPumSpe, conWatPumSpe.f1)
+ annotation (Line(points={{-140,60},{-60,60},{-60,34},{38,34}},
+ color={0,0,127}));
+ connect(one4.y, swi2.u3)
+ annotation (Line(points={{-18,-80},{-10,-80},{-10,-118},{78,-118}},
+ color={0,0,127}));
+ connect(uHeaPreEna, not1.u)
+ annotation (Line(points={{-140,-160},{-110,-160},{-110,-140},{-102,-140}},
+ color={255,0,255}));
+ connect(uWSE, or2.u1)
+ annotation (Line(points={{-140,0},{-100,0},{-100,180},{-82,180}},
+ color={255,0,255}));
+ connect(not1.y, or2.u2)
+ annotation (Line(points={{-78,-140},{-60,-140},{-60,-120},{-96,-120},
+ {-96,172},{-82,172}}, color={255,0,255}));
+ connect(or2.y, swi.u2)
+ annotation (Line(points={{-58,180},{78,180}}, color={255,0,255}));
+ connect(or2.y, swi1.u2)
+ annotation (Line(points={{-58,180},{-50,180},{-50,70},{78,70}},
+ color={255,0,255}));
+ connect(heaPreConVal.y, swi2.u1)
+ annotation (Line(points={{62,-60},{70,-60},{70,-102},{78,-102}},
+ color={0,0,127}));
+
+annotation (
+ defaultComponentName= "heaPreConEqu",
+ Icon(coordinateSystem(preserveAspectRatio=false, extent={{-100,-100},{100,100}}),
+ graphics={
+ Rectangle(
+ extent={{-100,-100},{100,100}},
+ lineColor={0,0,127},
+ fillColor={255,255,255},
+ fillPattern=FillPattern.Solid,
+ borderPattern=BorderPattern.Raised),
+ Text(
+ extent={{-120,146},{100,108}},
+ textColor={0,0,255},
+ textString="%name"),
+ Line(points={{-70,60},{-70,-54},{70,-54},{70,58}}, color={28,108,200}),
+ Line(
+ points={{-70,36},{-2,36},{70,-34}},
+ color={28,108,200},
+ thickness=0.5),
+ Line(
+ points={{-70,36},{-2,-30}},
+ color={28,108,200},
+ thickness=0.5),
+ Polygon(
+ points={{-70,60},{-72,56},{-68,56},{-70,60}},
+ lineColor={28,108,200},
+ lineThickness=0.5,
+ fillColor={28,108,200},
+ fillPattern=FillPattern.Solid),
+ Polygon(
+ points={{70,60},{68,56},{72,56},{70,60}},
+ lineColor={28,108,200},
+ lineThickness=0.5,
+ fillColor={28,108,200},
+ fillPattern=FillPattern.Solid),
+ Line(
+ points={{-2,-54},{-2,52}},
+ color={28,108,200},
+ pattern=LinePattern.Dash)}),
+ Diagram(coordinateSystem(
+ preserveAspectRatio=false, extent={{-120,-200},{120,200}})),
+ Documentation(info="
+
+Block that resets maximum cooling tower speed setpoint yMaxTowSpeSet
,
+controls condenser water pump speed yConWatPumSpeSet
and
+head pressure control valve position yHeaPreConVal
+for plants with water side economizers and headered condenser water pumps.
+The development follows ASHRAE RP-1711 Advanced Sequences of Operation for HVAC Systems
+Phase II – Central Plants and Hydronic Systems (Draft on March 23, 2020),
+section 5.2.10 Head pressure control, part 5.2.10.5, 5.2.10.6 and 5.2.10.7.
+
+
+1. For each chiller, when the waterside economizer is disabled (uWSE
= false),
+map chiller head pressure control loop signal uHeaPreCon
as follows:
+
+
+-
+When
uHeaPreCon
changes from 0 to 50%, reset maximum cooling tower
+speed setpoint yMaxTowSpeSet
from 100% to minimum speed
+minTowSpe
.
+
+-
+When
uHeaPreCon
changes from 50% to 100%, reset condenser water
+pump speed yConWatPumSpeSet
from design speed for the stage
+desConWatPumSpe
to minimum speed minConWatPumSpe
.
+
+-
+Each head pressure control valve
yHeaPreConVal
of enabled chiller shall
+be 100% open, irrespective of loop output.
+
+
+
+
+
+
+
+
+2. When the waterside economizer is enabled (uWSE
= true),
+
+
+-
+Maximum cooling tower speed setpoint
yMaxTowSpeSet
shall be 100%
+irrespective of loop output.
+
+-
+Condenser water pump speed
yConWatPumSpeSet
shall be equal to the design
+speed for the stage desConWatPumSpe
, irrespective of loop output.
+
+-
+Each enabled chiller head pressure control loop output
uHeaPreCon
+shall reset head pressure control valve position yHeaPreConVal
+from 100% open at 0% loop output to minimum position minHeaPreValPos
+at 100% loop output.
+
+
+
+
+
+
+
+
+3. When the head pressure control loop is disabled (uHeaPreEna
= false),
+the head pressure control valve shall be closed.
+
+",
+revisions="
+
+-
+January 30, 2019, by Jianjun Hu:
+First implementation.
+
+
+"));
+end MappingWithWSE;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/HeadPressure/Subsequences/MappingWithoutWSE.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/HeadPressure/Subsequences/MappingWithoutWSE.mo
new file mode 100644
index 00000000000..f7077ad2e15
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/HeadPressure/Subsequences/MappingWithoutWSE.mo
@@ -0,0 +1,240 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.HeadPressure.Subsequences;
+block MappingWithoutWSE
+ "Equipment setpoints when chiller head pressure control is enabled, for plants without waterside economizer"
+ parameter Boolean have_fixSpeConWatPum = true
+ "Flag: true=fixed speed condenser water pumps, false=variable speed condenser water pumps";
+ parameter Real minTowSpe = 0.1
+ "Minimum cooling tower fan speed";
+ parameter Real minConWatPumSpe = 0.1 "Minimum condenser water pump speed"
+ annotation (Dialog(enable=not have_fixSpeConWatPum));
+ parameter Real minHeaPreValPos = 0.1 "Minimum head pressure control valve position"
+ annotation (Dialog(enable=have_fixSpeConWatPum));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput uHeaPreCon(
+ final min=0,
+ final max=1,
+ final unit="1")
+ "Chiller head pressure control loop signal"
+ annotation (Placement(transformation(extent={{-140,40},{-100,80}}),
+ iconTransformation(extent={{-140,60},{-100,100}})));
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput desConWatPumSpe(
+ final min=0,
+ final max=1,
+ final unit="1") if not have_fixSpeConWatPum
+ "Design condenser water pump speed for current stage"
+ annotation (Placement(transformation(extent={{-140,-20},{-100,20}}),
+ iconTransformation(extent={{-140,-20},{-100,20}})));
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uHeaPreEna
+ "Status of head pressure control: true = ON, false = OFF"
+ annotation (Placement(transformation(extent={{-140,-100},{-100,-60}}),
+ iconTransformation(extent={{-140,-100},{-100,-60}})));
+ Buildings.Controls.OBC.CDL.Interfaces.RealOutput yMaxTowSpeSet(
+ final unit="1",
+ final min=0,
+ final max=1) "Maximum cooling tower speed setpoint"
+ annotation (Placement(transformation(extent={{100,80},{140,120}}),
+ iconTransformation(extent={{100,40},{140,80}})));
+ Buildings.Controls.OBC.CDL.Interfaces.RealOutput yHeaPreConVal(
+ final unit="1",
+ final min=0,
+ final max=1) if have_fixSpeConWatPum "Head pressure control valve position"
+ annotation (Placement(transformation(extent={{100,-60},{140,-20}}),
+ iconTransformation(extent={{100,-60},{140,-20}})));
+ Buildings.Controls.OBC.CDL.Interfaces.RealOutput yConWatPumSpeSet(
+ final unit="1",
+ final min=0,
+ final max=1) if not have_fixSpeConWatPum "Condenser water pump speed setpoint"
+ annotation (Placement(transformation(extent={{100,-100},{140,-60}}),
+ iconTransformation(extent={{100,-100},{140,-60}})));
+
+protected
+ Buildings.Controls.OBC.CDL.Continuous.Line maxCooTowSpeSet
+ "Maximum cooling tower speed setpoint"
+ annotation (Placement(transformation(extent={{40,50},{60,70}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant zer(final k=0)
+ "Constant zero"
+ annotation (Placement(transformation(extent={{0,70},{20,90}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant one(final k=1)
+ "Constant one"
+ annotation (Placement(transformation(extent={{-40,70},{-20,90}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant hal(final k=0.5)
+ "Constant value"
+ annotation (Placement(transformation(extent={{-40,30},{-20,50}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant hpTowMaxSpe(
+ final k=minTowSpe)
+ "Minimum allowable tower speed"
+ annotation (Placement(transformation(extent={{0,30},{20,50}})));
+ Buildings.Controls.OBC.CDL.Continuous.Line lin
+ "Head pressure control valve position, or condenser water pump speed"
+ annotation (Placement(transformation(extent={{40,-30},{60,-10}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant hal1(final k=0.5)
+ "Constant value"
+ annotation (Placement(transformation(extent={{0,-10},{20,10}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant fulOpeVal(
+ final k=1) if have_fixSpeConWatPum "Fully open valve position"
+ annotation (Placement(transformation(extent={{-40,-10},{-20,10}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant one2(k=1) "Constant one"
+ annotation (Placement(transformation(extent={{-80,-50},{-60,-30}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant minValPos(
+ final k=minHeaPreValPos) if have_fixSpeConWatPum
+ "Minimum head pressure control valve position"
+ annotation (Placement(transformation(extent={{0,-60},{20,-40}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant zer2(final k=0)
+ "Constant value"
+ annotation (Placement(transformation(extent={{-40,-110},{-20,-90}})));
+ Buildings.Controls.OBC.CDL.Continuous.Switch swi "Logical switch"
+ annotation (Placement(transformation(extent={{60,-90},{80,-70}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant minPumSpe(
+ final k=minConWatPumSpe) if not have_fixSpeConWatPum
+ "Minimum condenser water pump speed"
+ annotation (Placement(transformation(extent={{-40,-60},{-20,-40}})));
+ Buildings.Controls.OBC.CDL.Continuous.Switch swi1 "Logical switch"
+ annotation (Placement(transformation(extent={{60,90},{80,110}})));
+
+equation
+ connect(zer.y, maxCooTowSpeSet.x1)
+ annotation (Line(points={{22,80},{30,80},{30,68},{38,68}},color={0,0,127}));
+ connect(one.y, maxCooTowSpeSet.f1)
+ annotation (Line(points={{-18,80},{-10,80},{-10,64},{38,64}}, color={0,0,127}));
+ connect(hal.y, maxCooTowSpeSet.x2)
+ annotation (Line(points={{-18,40},{-10,40},{-10,56},{38,56}}, color={0,0,127}));
+ connect(hpTowMaxSpe.y, maxCooTowSpeSet.f2)
+ annotation (Line(points={{22,40},{30,40},{30,52},{38,52}},color={0,0,127}));
+ connect(uHeaPreCon, maxCooTowSpeSet.u)
+ annotation (Line(points={{-120,60},{38,60}}, color={0,0,127}));
+ connect(hal1.y, lin.x1)
+ annotation (Line(points={{22,0},{30,0},{30,-12},{38,-12}}, color={0,0,127}));
+ connect(fulOpeVal.y, lin.f1)
+ annotation (Line(points={{-18,0},{-10,0},{-10,-16},{38,-16}}, color={0,0,127}));
+ connect(minValPos.y, lin.f2)
+ annotation (Line(points={{22,-50},{30,-50},{30,-28},{38,-28}},
+ color={0,0,127}));
+ connect(one2.y, lin.x2)
+ annotation (Line(points={{-58,-40},{-50,-40},{-50,-24},{38,-24}},
+ color={0,0,127}));
+ connect(uHeaPreCon, lin.u)
+ annotation (Line(points={{-120,60},{-60,60},{-60,-20},{38,-20}},
+ color={0,0,127}));
+ connect(uHeaPreEna, swi.u2)
+ annotation (Line(points={{-120,-80},{58,-80}}, color={255,0,255}));
+ connect(lin.y, swi.u1)
+ annotation (Line(points={{62,-20},{80,-20},{80,-40},{40,-40},{40,-72},
+ {58,-72}}, color={0,0,127}));
+ connect(zer2.y, swi.u3)
+ annotation (Line(points={{-18,-100},{40,-100},{40,-88},{58,-88}},
+ color={0,0,127}));
+ connect(swi.y, yConWatPumSpeSet)
+ annotation (Line(points={{82,-80},{120,-80}}, color={0,0,127}));
+ connect(desConWatPumSpe, lin.f1)
+ annotation (Line(points={{-120,0},{-80,0},{-80,-16},{38,-16}},
+ color={0,0,127}));
+ connect(minPumSpe.y, lin.f2)
+ annotation (Line(points={{-18,-50},{-10,-50},{-10,-28},{38,-28}},
+ color={0,0,127}));
+ connect(swi.y, yHeaPreConVal)
+ annotation (Line(points={{82,-80},{90,-80},{90,-40},{120,-40}}, color={0,0,127}));
+ connect(uHeaPreEna, swi1.u2)
+ annotation (Line(points={{-120,-80},{-90,-80},{-90,100},{58,100}},
+ color={255,0,255}));
+ connect(maxCooTowSpeSet.y, swi1.u1)
+ annotation (Line(points={{62,60},{70,60},{70,80},{40,80},{40,108},{58,108}},
+ color={0,0,127}));
+ connect(swi1.y, yMaxTowSpeSet)
+ annotation (Line(points={{82,100},{120,100}}, color={0,0,127}));
+ connect(one.y, swi1.u3)
+ annotation (Line(points={{-18,80},{-10,80},{-10,92},{58,92}}, color={0,0,127}));
+
+annotation (
+ defaultComponentName= "heaPreConEqu",
+ Icon(coordinateSystem(preserveAspectRatio=false), graphics={
+ Rectangle(
+ extent={{-100,-100},{100,100}},
+ lineColor={0,0,127},
+ fillColor={255,255,255},
+ fillPattern=FillPattern.Solid,
+ borderPattern=BorderPattern.Raised),
+ Text(
+ extent={{-120,146},{100,108}},
+ textColor={0,0,255},
+ textString="%name"),
+ Line(points={{-70,60},{-70,-54},{70,-54},{70,58}}, color={28,108,200}),
+ Line(
+ points={{-70,36},{-2,36},{70,-34}},
+ color={28,108,200},
+ thickness=0.5),
+ Line(
+ points={{-70,36},{-2,-30}},
+ color={28,108,200},
+ thickness=0.5),
+ Polygon(
+ points={{-70,60},{-72,56},{-68,56},{-70,60}},
+ lineColor={28,108,200},
+ lineThickness=0.5,
+ fillColor={28,108,200},
+ fillPattern=FillPattern.Solid),
+ Polygon(
+ points={{70,60},{68,56},{72,56},{70,60}},
+ lineColor={28,108,200},
+ lineThickness=0.5,
+ fillColor={28,108,200},
+ fillPattern=FillPattern.Solid),
+ Line(
+ points={{-2,-54},{-2,52}},
+ color={28,108,200},
+ pattern=LinePattern.Dash)}),
+ Diagram(coordinateSystem(preserveAspectRatio=false,
+ extent={{-100,-120},{100,120}})),
+ Documentation(info="
+
+Block that resets maximum cooling tower speed setpoint yMaxTowSpeSet
,
+controls head pressure control valve position yHeaPreConVal
or
+condenser water pump speed yConWatPumSpeSet
+for plants without water side economizers. The development follows
+ASHRAE RP-1711 Advanced Sequences of Operation for HVAC Systems Phase II –
+Central Plants and Hydronic Systems (Draft on March 23, 2020),
+section 5.2.10 Head pressure control, part 5.2.10.3, part 5.2.10.4 and 5.2.10.7.
+
+
+1. For each chiller, map chiller head pressure control loop signal
+uHeaPreCon
as follows:
+
+
+-
+When
uHeaPreCon
changes from 0 to 50%, reset maximum cooling tower
+speed setpoint yMaxTowSpeSet
from 100% to minimum speed
+minTowSpe
.
+
+-
+If the plant has fixed speed condenser water pumps (
have_fixSpeConWatPum
=true), then:
+when uHeaPreCon
changes from 50% to 100%, reset head pressure control
+valve position yHeaPreConVal
from 100% open to
+minHeaPreValPos
.
+
+-
+If the plant has variable speed condenser water pumps (
have_fixSpeConWatPum
=false), then:
+when uHeaPreCon
changes from 50% to 100%, reset condenser water pump
+speed yConWatPumSpeSet
from design speed for the stage desConWatPumSpe
to
+minimum speed minConWatPumSpe
. When the pumps are dedicated, speed
+reset shall be independent for each chiller.
+
+
+
+
+
+
+
+
+2. When the head pressure control loop is disabled (uHeaPreEna
= false),
+the head pressure control valve shall be closed, or the pump should be disabled.
+
+",
+revisions="
+
+-
+January 30, 2019, by Jianjun Hu:
+First implementation.
+
+
+"));
+end MappingWithoutWSE;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/HeadPressure/Subsequences/Validation/ControlLoop.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/HeadPressure/Subsequences/Validation/ControlLoop.mo
new file mode 100644
index 00000000000..333065f25c3
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/HeadPressure/Subsequences/Validation/ControlLoop.mo
@@ -0,0 +1,60 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.HeadPressure.Subsequences.Validation;
+model ControlLoop "Validate sequence of output head pressure control signal"
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.HeadPressure.Subsequences.ControlLoop
+ chiHeaPreLoo
+ "Output chiller head pressure control loop signal"
+ annotation (Placement(transformation(extent={{20,40},{40,60}})));
+ Buildings.Controls.OBC.CDL.Logical.Sources.Pulse booPul(
+ final width=0.7,
+ final period=5,
+ final shift=0.5) "Head pressure control enabling status"
+ annotation (Placement(transformation(extent={{-80,60},{-60,80}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Sine TConWatRet(
+ final amplitude=-11,
+ final freqHz=2/10,
+ final offset=273.15 + 27) "Measured condenser water return temperature"
+ annotation (Placement(transformation(extent={{-80,10},{-60,30}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Sine TChiWatSup(
+ final amplitude=1,
+ final freqHz=1/5,
+ final offset=273.15 + 6) "Measured chilled water supply temperature"
+ annotation (Placement(transformation(extent={{-80,-30},{-60,-10}})));
+
+equation
+ connect(TConWatRet.y, chiHeaPreLoo.TConWatRet)
+ annotation (Line(points={{-58,20},{-20,20},{-20,50},{18,50}}, color={0,0,127}));
+ connect(TChiWatSup.y, chiHeaPreLoo.TChiWatSup)
+ annotation (Line(points={{-58,-20},{0,-20},{0,42},{18,42}}, color={0,0,127}));
+ connect(booPul.y, chiHeaPreLoo.uHeaPreEna)
+ annotation (Line(points={{-58,70},{-20,70},{-20,58},{18,58}}, color={255,0,255}));
+
+annotation (
+ experiment(StopTime=5.0, Tolerance=1e-06),
+ __Dymola_Commands(file="modelica://Buildings/Resources/Scripts/Dymola/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/HeadPressure/Subsequences/Validation/ControlLoop.mos"
+ "Simulate and plot"),
+ Documentation(info="
+
+This example validates
+
+Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.HeadPressure.Subsequences.ControlLoop.
+
+", revisions="
+
+-
+March 22, 2019, by Jianjun Hu:
+First implementation.
+
+
+"),
+ Icon(coordinateSystem(preserveAspectRatio=false), graphics={
+ Ellipse(lineColor = {75,138,73},
+ fillColor={255,255,255},
+ fillPattern = FillPattern.Solid,
+ extent = {{-100,-100},{100,100}}),
+ Polygon(lineColor = {0,0,255},
+ fillColor = {75,138,73},
+ pattern = LinePattern.None,
+ fillPattern = FillPattern.Solid,
+ points = {{-36,60},{64,0},{-36,-60},{-36,60}})}), Diagram(
+ coordinateSystem(preserveAspectRatio=false)));
+end ControlLoop;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/HeadPressure/Subsequences/Validation/MappingWithWSE.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/HeadPressure/Subsequences/Validation/MappingWithWSE.mo
new file mode 100644
index 00000000000..c69c220b9ab
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/HeadPressure/Subsequences/Validation/MappingWithWSE.mo
@@ -0,0 +1,78 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.HeadPressure.Subsequences.Validation;
+model MappingWithWSE
+ "Validate sequence of specifying equipment setpoint based on head pressure control loop output"
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.HeadPressure.Subsequences.MappingWithWSE
+ witWSE "Specify setpoints for plant when waterside economizer is enabled"
+ annotation (Placement(transformation(extent={{0,50},{20,70}})));
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.HeadPressure.Subsequences.MappingWithWSE
+ noWSE "Specify setpoints for plant when waterside economizer is disabled"
+ annotation (Placement(transformation(extent={{0,-90},{20,-70}})));
+
+protected
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant enaPreCon(
+ final k=true) "Constant true"
+ annotation (Placement(transformation(extent={{-60,-50},{-40,-30}})));
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant enaWSE(
+ final k=true) "Constant true"
+ annotation (Placement(transformation(extent={{-60,-10},{-40,10}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant desPumSpe(
+ final k=0.75) "Design condenser water pump speed at current stage"
+ annotation (Placement(transformation(extent={{-60,30},{-40,50}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Ramp conLoo(
+ final duration=5) "Control loop output"
+ annotation (Placement(transformation(extent={{-60,70},{-40,90}})));
+ Buildings.Controls.OBC.CDL.Logical.Not not1 "Logical not"
+ annotation (Placement(transformation(extent={{0,-10},{20,10}})));
+
+equation
+ connect(conLoo.y, witWSE.uHeaPreCon)
+ annotation (Line(points={{-38,80},{-24,80},{-24,68},{-2,68}}, color={0,0,127}));
+ connect(desPumSpe.y, witWSE.desConWatPumSpe)
+ annotation (Line(points={{-38,40},{-20,40},{-20,64},{-2,64}}, color={0,0,127}));
+ connect(enaWSE.y, witWSE.uWSE)
+ annotation (Line(points={{-38,0},{-16,0},{-16,56},{-2,56}}, color={255,0,255}));
+ connect(enaPreCon.y, witWSE.uHeaPreEna)
+ annotation (Line(points={{-38,-40},{-12,-40},{-12,52},{-2,52}}, color={255,0,255}));
+ connect(conLoo.y, noWSE.uHeaPreCon)
+ annotation (Line(points={{-38,80},{-24,80},{-24,-72},{-2,-72}}, color={0,0,127}));
+ connect(desPumSpe.y, noWSE.desConWatPumSpe)
+ annotation (Line(points={{-38,40},{-20,40},{-20,-76},{-2,-76}}, color={0,0,127}));
+ connect(enaWSE.y, not1.u)
+ annotation (Line(points={{-38,0},{-2,0}}, color={255,0,255}));
+ connect(not1.y, noWSE.uWSE)
+ annotation (Line(points={{22,0},{40,0},{40,-60},{-16,-60},{-16,-84},{-2,-84}},
+ color={255,0,255}));
+ connect(enaPreCon.y, noWSE.uHeaPreEna)
+ annotation (Line(points={{-38,-40},{-12,-40},{-12,-88},{-2,-88}}, color={255,0,255}));
+
+annotation (
+ experiment(StopTime=5.0, Tolerance=1e-06),
+ __Dymola_Commands(file="modelica://Buildings/Resources/Scripts/Dymola/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/HeadPressure/Subsequences/Validation/MappingWithWSE.mos"
+ "Simulate and plot"),
+ Documentation(info="
+
+This example validates
+
+Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.HeadPressure.Subsequences.MappingWithWSE.
+
+", revisions="
+
+-
+April 1, 2019, by Jianjun Hu:
+First implementation.
+
+
+"),
+ Icon(coordinateSystem(preserveAspectRatio=false, extent={{-100,-100},
+ {100,100}}), graphics={
+ Ellipse(lineColor = {75,138,73},
+ fillColor={255,255,255},
+ fillPattern = FillPattern.Solid,
+ extent = {{-100,-100},{100,100}}),
+ Polygon(lineColor = {0,0,255},
+ fillColor = {75,138,73},
+ pattern = LinePattern.None,
+ fillPattern = FillPattern.Solid,
+ points = {{-36,60},{64,0},{-36,-60},{-36,60}})}), Diagram(
+ coordinateSystem(preserveAspectRatio=false, extent={{-100,-100},{100,100}})));
+end MappingWithWSE;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/HeadPressure/Subsequences/Validation/MappingWithoutWSE.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/HeadPressure/Subsequences/Validation/MappingWithoutWSE.mo
new file mode 100644
index 00000000000..816b6397fa1
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/HeadPressure/Subsequences/Validation/MappingWithoutWSE.mo
@@ -0,0 +1,66 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.HeadPressure.Subsequences.Validation;
+model MappingWithoutWSE
+ "Validate sequence of specifying equipment setpoint based on head pressure control loop output"
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.HeadPressure.Subsequences.MappingWithoutWSE
+ fixPumSpe
+ "Specify setpoints for plant with constant speed condenser water pumps"
+ annotation (Placement(transformation(extent={{0,30},{20,50}})));
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.HeadPressure.Subsequences.MappingWithoutWSE
+ varPumSpe(final have_fixSpeConWatPum=false)
+ "Specify setpoints for plant with constant speed condenser water pumps"
+ annotation (Placement(transformation(extent={{0,-50},{20,-30}})));
+
+protected
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant enaPreCon(
+ final k=true) "Constant true"
+ annotation (Placement(transformation(extent={{-60,-10},{-40,10}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant desPumSpe(
+ final k=0.75) "Design condenser water pump speed at current stage"
+ annotation (Placement(transformation(extent={{-60,-50},{-40,-30}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Ramp conLoo(
+ final duration=5) "Control loop output"
+ annotation (Placement(transformation(extent={{-60,50},{-40,70}})));
+
+equation
+ connect(conLoo.y, fixPumSpe.uHeaPreCon)
+ annotation (Line(points={{-38,60},{-20,60},{-20,48},{-2,48}}, color={0,0,127}));
+ connect(enaPreCon.y, fixPumSpe.uHeaPreEna)
+ annotation (Line(points={{-38,0},{-12,0},{-12,32},{-2,32}}, color={255,0,255}));
+ connect(conLoo.y, varPumSpe.uHeaPreCon)
+ annotation (Line(points={{-38,60},{-20,60},{-20,-32},{-2,-32}}, color={0,0,127}));
+ connect(enaPreCon.y, varPumSpe.uHeaPreEna)
+ annotation (Line(points={{-38,0},{-12,0},{-12,-48},{-2,-48}}, color={255,0,255}));
+ connect(desPumSpe.y, varPumSpe.desConWatPumSpe)
+ annotation (Line(points={{-38,-40},{-2,-40}}, color={0,0,127}));
+
+annotation (
+ experiment(StopTime=5.0, Tolerance=1e-06),
+ __Dymola_Commands(file="modelica://Buildings/Resources/Scripts/Dymola/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/HeadPressure/Subsequences/Validation/MappingWithoutWSE.mos"
+ "Simulate and plot"),
+ Documentation(info="
+
+This example validates
+
+Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.HeadPressure.Subsequences.MappingWithoutWSE.
+
+", revisions="
+
+-
+April 1, 2019, by Jianjun Hu:
+First implementation.
+
+
+"),
+ Icon(coordinateSystem(preserveAspectRatio=false, extent={{-100,-100},
+ {100,100}}), graphics={
+ Ellipse(lineColor = {75,138,73},
+ fillColor={255,255,255},
+ fillPattern = FillPattern.Solid,
+ extent = {{-100,-100},{100,100}}),
+ Polygon(lineColor = {0,0,255},
+ fillColor = {75,138,73},
+ pattern = LinePattern.None,
+ fillPattern = FillPattern.Solid,
+ points = {{-36,60},{64,0},{-36,-60},{-36,60}})}), Diagram(
+ coordinateSystem(preserveAspectRatio=false, extent={{-100,-100},{100,100}})));
+end MappingWithoutWSE;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/HeadPressure/Subsequences/Validation/package.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/HeadPressure/Subsequences/Validation/package.mo
new file mode 100644
index 00000000000..2ae2c13c15d
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/HeadPressure/Subsequences/Validation/package.mo
@@ -0,0 +1,37 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.HeadPressure.Subsequences;
+package Validation "Collection of validation models"
+
+annotation (Icon(graphics={
+ Rectangle(
+ lineColor={200,200,200},
+ fillColor={248,248,248},
+ fillPattern=FillPattern.HorizontalCylinder,
+ extent={{-100.0,-100.0},{100.0,100.0}},
+ radius=25.0),
+ Rectangle(
+ lineColor={128,128,128},
+ extent={{-100.0,-100.0},{100.0,100.0}},
+ radius=25.0),
+ Polygon(
+ origin={8.0,14.0},
+ lineColor={78,138,73},
+ fillColor={78,138,73},
+ pattern=LinePattern.None,
+ fillPattern=FillPattern.Solid,
+ points={{-58.0,46.0},{42.0,-14.0},{-58.0,-74.0},{-58.0,46.0}})}),
+preferredView="info", Documentation(info="
+
+This package contains validation models for the classes in
+
+Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.HeadPressure.Subsequences.
+
+
+Note that most validation models contain simple input data
+which may not be realistic, but for which the correct
+output can be obtained through an analytic solution.
+The examples plot various outputs, which have been verified against these
+solutions. These model outputs are stored as reference data and
+used for continuous validation whenever models in the library change.
+
+"));
+end Validation;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/HeadPressure/Subsequences/Validation/package.order b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/HeadPressure/Subsequences/Validation/package.order
new file mode 100644
index 00000000000..39d5c4147c0
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/HeadPressure/Subsequences/Validation/package.order
@@ -0,0 +1,3 @@
+ControlLoop
+MappingWithWSE
+MappingWithoutWSE
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/HeadPressure/Subsequences/package.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/HeadPressure/Subsequences/package.mo
new file mode 100644
index 00000000000..3a2dbf02a21
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/HeadPressure/Subsequences/package.mo
@@ -0,0 +1,43 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.HeadPressure;
+package Subsequences "Subsequences for chiller head pressure control"
+
+annotation (preferredView="info", Documentation(info="
+
+This package contains chiller head pressure control subsequences.
+
+"),
+ Icon(graphics={
+ Rectangle(
+ lineColor={200,200,200},
+ fillColor={248,248,248},
+ fillPattern=FillPattern.HorizontalCylinder,
+ extent={{-100.0,-100.0},{100.0,100.0}},
+ radius=25.0),
+ Rectangle(
+ lineColor={128,128,128},
+ extent={{-100.0,-100.0},{100.0,100.0}},
+ radius=25.0),
+ Ellipse(
+ origin={10.0,10.0},
+ lineColor={128,128,128},
+ fillColor={255,255,255},
+ fillPattern=FillPattern.Solid,
+ extent={{-80.0,0.0},{-20.0,60.0}}),
+ Ellipse(
+ origin={10.0,10.0},
+ fillColor={128,128,128},
+ pattern=LinePattern.None,
+ fillPattern=FillPattern.Solid,
+ extent={{0.0,0.0},{60.0,60.0}}),
+ Ellipse(
+ origin={10.0,10.0},
+ pattern=LinePattern.None,
+ fillPattern=FillPattern.Solid,
+ extent={{0.0,-80.0},{60.0,-20.0}}),
+ Ellipse(
+ origin={10.0,10.0},
+ fillColor={76,76,76},
+ pattern=LinePattern.None,
+ fillPattern=FillPattern.Solid,
+ extent={{-80.0,-80.0},{-20.0,-20.0}})}));
+end Subsequences;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/HeadPressure/Subsequences/package.order b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/HeadPressure/Subsequences/package.order
new file mode 100644
index 00000000000..af2e13caba3
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/HeadPressure/Subsequences/package.order
@@ -0,0 +1,4 @@
+ControlLoop
+MappingWithWSE
+MappingWithoutWSE
+Validation
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/HeadPressure/Validation/Controller.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/HeadPressure/Validation/Controller.mo
new file mode 100644
index 00000000000..876c3d2bc6c
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/HeadPressure/Validation/Controller.mo
@@ -0,0 +1,115 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.HeadPressure.Validation;
+model Controller "Validation head pressure controller"
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.HeadPressure.Controller
+ enaWSE "Head pressure for plant with waterside economizer that is enabled"
+ annotation (Placement(transformation(extent={{60,70},{80,90}})));
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.HeadPressure.Controller
+ disWSE "Head pressure for plant with waterside economizer that is disabled"
+ annotation (Placement(transformation(extent={{60,-70},{80,-50}})));
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.HeadPressure.Controller
+ conSpePum(
+ final have_WSE=false)
+ "Head pressure for plant without waterside economizer, constant speed condenser water pump"
+ annotation (Placement(transformation(extent={{100,30},{120,50}})));
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.HeadPressure.Controller
+ varSpePum(
+ final have_WSE=false)
+ "Head pressure for plant without waterside economizer, variable speed condenser water pump"
+ annotation (Placement(transformation(extent={{100,-110},{120,-90}})));
+
+protected
+ Buildings.Controls.OBC.CDL.Logical.Sources.Pulse booPul(
+ final width=0.7,
+ final period=5,
+ final shift=0.5) "Head pressure control enabling status"
+ annotation (Placement(transformation(extent={{-120,90},{-100,110}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Sine TConWatRet(
+ final amplitude=-11,
+ final freqHz=2/10,
+ final offset=273.15 + 27) "Measured condenser water return temperature"
+ annotation (Placement(transformation(extent={{-120,50},{-100,70}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Sine TChiWatSup(
+ final amplitude=1,
+ final freqHz=1/5,
+ final offset=273.15 + 6) "Measured chilled water supply temperature"
+ annotation (Placement(transformation(extent={{-120,10},{-100,30}})));
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant runWSE(
+ final k=true) "Constant true"
+ annotation (Placement(transformation(extent={{-120,-70},{-100,-50}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant desPumSpe(
+ final k=0.75) "Design condenser water pump speed at current stage"
+ annotation (Placement(transformation(extent={{-120,-30},{-100,-10}})));
+ Buildings.Controls.OBC.CDL.Logical.Not not1 "Logical not"
+ annotation (Placement(transformation(extent={{-60,-90},{-40,-70}})));
+
+equation
+ connect(booPul.y,enaWSE.uChiHeaCon)
+ annotation (Line(points={{-98,100},{20,100},{20,90},{58,90}}, color={255,0,255}));
+ connect(TConWatRet.y, enaWSE.TConWatRet)
+ annotation (Line(points={{-98,60},{-20,60},{-20,86},{58,86}}, color={0,0,127}));
+ connect(TChiWatSup.y, enaWSE.TChiWatSup)
+ annotation (Line(points={{-98,20},{-10,20},{-10,82},{58,82}}, color={0,0,127}));
+ connect(desPumSpe.y, enaWSE.desConWatPumSpe)
+ annotation (Line(points={{-98,-20},{10,-20},{10,78},{58,78}}, color={0,0,127}));
+ connect(runWSE.y, enaWSE.uWSE)
+ annotation (Line(points={{-98,-60},{0,-60},{0,74},{58,74}}, color={255,0,255}));
+ connect(booPul.y,disWSE.uChiHeaCon)
+ annotation (Line(points={{-98,100},{20,100},{20,-50},{58,-50}}, color={255,0,255}));
+ connect(TConWatRet.y, disWSE.TConWatRet)
+ annotation (Line(points={{-98,60},{-20,60},{-20,-54},{58,-54}}, color={0,0,127}));
+ connect(TChiWatSup.y, disWSE.TChiWatSup)
+ annotation (Line(points={{-98,20},{-10,20},{-10,-58},{58,-58}}, color={0,0,127}));
+ connect(desPumSpe.y, disWSE.desConWatPumSpe)
+ annotation (Line(points={{-98,-20},{10,-20},{10,-62},{58,-62}}, color={0,0,127}));
+ connect(runWSE.y, not1.u)
+ annotation (Line(points={{-98,-60},{-80,-60},{-80,-80},{-62,-80}}, color={255,0,255}));
+ connect(not1.y, disWSE.uWSE)
+ annotation (Line(points={{-38,-80},{-28,-80},{-28,-66},{58,-66}}, color={255,0,255}));
+ connect(booPul.y,conSpePum.uChiHeaCon)
+ annotation (Line(points={{-98,100},{20,100},{20,50},{98,50}}, color={255,0,255}));
+ connect(booPul.y,varSpePum.uChiHeaCon)
+ annotation (Line(points={{-98,100},{20,100},{20,-90},{98,-90}}, color={255,0,255}));
+ connect(TConWatRet.y, conSpePum.TConWatRet)
+ annotation (Line(points={{-98,60},{-20,60},{-20,46},{98,46}}, color={0,0,127}));
+ connect(TChiWatSup.y, conSpePum.TChiWatSup)
+ annotation (Line(points={{-98,20},{-10,20},{-10,42},{98,42}}, color={0,0,127}));
+ connect(TConWatRet.y, varSpePum.TConWatRet)
+ annotation (Line(points={{-98,60},{-20,60},{-20,-94},{98,-94}}, color={0,0,127}));
+ connect(TChiWatSup.y, varSpePum.TChiWatSup)
+ annotation (Line(points={{-98,20},{-10,20},{-10,-98},{98,-98}}, color={0,0,127}));
+ connect(desPumSpe.y, varSpePum.desConWatPumSpe)
+ annotation (Line(points={{-98,-20},{10,-20},{10,-102},{98,-102}}, color={0,0,127}));
+
+ connect(desPumSpe.y, conSpePum.desConWatPumSpe) annotation (Line(points={{-98,
+ -20},{10,-20},{10,38},{98,38}}, color={0,0,127}));
+annotation (
+ experiment(StopTime=5.0, Tolerance=1e-06),
+ __Dymola_Commands(file="modelica://Buildings/Resources/Scripts/Dymola/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/HeadPressure/Validation/Controller.mos"
+ "Simulate and plot"),
+ Documentation(info="
+
+This example validates
+
+Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.HeadPressure.Controller.
+
+", revisions="
+
+-
+April 2, 2019, by Jianjun Hu:
+First implementation.
+
+
+"),
+ Icon(coordinateSystem(preserveAspectRatio=false, extent={{-100,-100},{100,100}}),
+ graphics={
+ Ellipse(lineColor = {75,138,73},
+ fillColor={255,255,255},
+ fillPattern = FillPattern.Solid,
+ extent = {{-100,-100},{100,100}}),
+ Polygon(lineColor = {0,0,255},
+ fillColor = {75,138,73},
+ pattern = LinePattern.None,
+ fillPattern = FillPattern.Solid,
+ points = {{-36,60},{64,0},{-36,-60},{-36,60}})}), Diagram(
+ coordinateSystem(preserveAspectRatio=false, extent={{-140,-120},{140,120}})));
+end Controller;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/HeadPressure/Validation/package.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/HeadPressure/Validation/package.mo
new file mode 100644
index 00000000000..276dcac6da8
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/HeadPressure/Validation/package.mo
@@ -0,0 +1,37 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.HeadPressure;
+package Validation "Collection of validation models"
+
+annotation (Icon(graphics={
+ Rectangle(
+ lineColor={200,200,200},
+ fillColor={248,248,248},
+ fillPattern=FillPattern.HorizontalCylinder,
+ extent={{-100.0,-100.0},{100.0,100.0}},
+ radius=25.0),
+ Rectangle(
+ lineColor={128,128,128},
+ extent={{-100.0,-100.0},{100.0,100.0}},
+ radius=25.0),
+ Polygon(
+ origin={8.0,14.0},
+ lineColor={78,138,73},
+ fillColor={78,138,73},
+ pattern=LinePattern.None,
+ fillPattern=FillPattern.Solid,
+ points={{-58.0,46.0},{42.0,-14.0},{-58.0,-74.0},{-58.0,46.0}})}),
+preferredView="info", Documentation(info="
+
+This package contains validation models for the classes in
+
+Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.HeadPressure.
+
+
+Note that most validation models contain simple input data
+which may not be realistic, but for which the correct
+output can be obtained through an analytic solution.
+The examples plot various outputs, which have been verified against these
+solutions. These model outputs are stored as reference data and
+used for continuous validation whenever models in the library change.
+
+"));
+end Validation;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/HeadPressure/Validation/package.order b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/HeadPressure/Validation/package.order
new file mode 100644
index 00000000000..8cba75e31a7
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/HeadPressure/Validation/package.order
@@ -0,0 +1 @@
+Controller
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/HeadPressure/package.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/HeadPressure/package.mo
new file mode 100644
index 00000000000..7adee66a048
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/HeadPressure/package.mo
@@ -0,0 +1,47 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant;
+package HeadPressure "Chiller head pressure control sequence"
+
+annotation (
+preferredView="info", Documentation(info="
+
+This package contains chiller head pressure control sequences.
+The implementation is based on section 5.2.10. in ASHRAE RP-1711 Advanced Sequences
+of Operation for HVAC Systems Phase II –
+Central Plants and Hydronic Systems (draft version on March 23, 2020).
+
+"),
+Icon(graphics={
+ Rectangle(
+ lineColor={200,200,200},
+ fillColor={248,248,248},
+ fillPattern=FillPattern.HorizontalCylinder,
+ extent={{-100.0,-100.0},{100.0,100.0}},
+ radius=25.0),
+ Rectangle(
+ lineColor={128,128,128},
+ extent={{-100.0,-100.0},{100.0,100.0}},
+ radius=25.0),
+ Ellipse(
+ origin={10.0,10.0},
+ fillColor={76,76,76},
+ pattern=LinePattern.None,
+ fillPattern=FillPattern.Solid,
+ extent={{-80.0,-80.0},{-20.0,-20.0}}),
+ Ellipse(
+ origin={10.0,10.0},
+ pattern=LinePattern.None,
+ fillPattern=FillPattern.Solid,
+ extent={{0.0,-80.0},{60.0,-20.0}}),
+ Ellipse(
+ origin={10.0,10.0},
+ fillColor={128,128,128},
+ pattern=LinePattern.None,
+ fillPattern=FillPattern.Solid,
+ extent={{0.0,0.0},{60.0,60.0}}),
+ Ellipse(
+ origin={10.0,10.0},
+ lineColor={128,128,128},
+ fillColor={255,255,255},
+ fillPattern=FillPattern.Solid,
+ extent={{-80.0,0.0},{-20.0,60.0}})}));
+end HeadPressure;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/HeadPressure/package.order b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/HeadPressure/package.order
new file mode 100644
index 00000000000..9ffbffcb990
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/HeadPressure/package.order
@@ -0,0 +1,3 @@
+Controller
+Subsequences
+Validation
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/MinimumFlowBypass/Controller.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/MinimumFlowBypass/Controller.mo
new file mode 100644
index 00000000000..37bc358cd37
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/MinimumFlowBypass/Controller.mo
@@ -0,0 +1,193 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.MinimumFlowBypass;
+block Controller
+ "Controller for chilled water minimum flow bypass valve"
+
+ parameter Integer nChi=2 "Total number of chillers";
+ parameter Real minFloSet[nChi](
+ final min=fill(0,nChi),
+ final unit=fill("m3/s",nChi),
+ quantity=fill("VolumeFlowRate",nChi))
+ "Minimum chilled water flow through each chiller"
+ annotation (Evaluate=true);
+ parameter Buildings.Controls.OBC.CDL.Types.SimpleController controllerType=
+ Buildings.Controls.OBC.CDL.Types.SimpleController.PI
+ "Type of controller"
+ annotation (Dialog(group="Controller"));
+ parameter Real k=1 "Gain of controller"
+ annotation (Dialog(group="Controller"));
+ parameter Real Ti(
+ final unit="s",
+ final quantity="Time")=0.5 "Time constant of integrator block"
+ annotation (Dialog(group="Controller", enable=controllerType==Buildings.Controls.OBC.CDL.Types.SimpleController.PI or
+ controllerType==Buildings.Controls.OBC.CDL.Types.SimpleController.PID));
+ parameter Real Td(
+ final unit="s",
+ final quantity="Time")=0 "Time constant of derivative block"
+ annotation (Dialog(group="Controller", enable=controllerType==Buildings.Controls.OBC.CDL.Types.SimpleController.PD or
+ controllerType==Buildings.Controls.OBC.CDL.Types.SimpleController.PID));
+ parameter Real yMax=1 "Upper limit of output"
+ annotation (Dialog(group="Controller"));
+ parameter Real yMin=0.1 "Lower limit of output"
+ annotation (Dialog(group="Controller"));
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uChiWatPum
+ "Maximum status feedback of all the chilled water pumps: true means at least one pump is proven on"
+ annotation (Placement(transformation(extent={{-140,60},{-100,100}}),
+ iconTransformation(extent={{-140,60},{-100,100}})));
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput VChiWat_flow(
+ final min=0,
+ final unit="m3/s",
+ quantity="VolumeFlowRate")
+ "Measured chilled water flow rate through chillers"
+ annotation (Placement(transformation(extent={{-140,-10},{-100,30}}),
+ iconTransformation(extent={{-140,-20},{-100,20}})));
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput VChiWatSet_flow(
+ final min=0,
+ final unit="m3/s",
+ quantity="VolumeFlowRate") "Chiller water minimum flow setpoint"
+ annotation (Placement(transformation(extent={{-140,-60},{-100,-20}}),
+ iconTransformation(extent={{-140,-100},{-100,-60}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealOutput yValPos(
+ final min=0,
+ final max=1,
+ final unit="1") "Chilled water minimum flow bypass valve position"
+ annotation (Placement(transformation(extent={{100,60},{140,100}}),
+ iconTransformation(extent={{100,-20},{140,20}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.PIDWithReset valPos(
+ final controllerType=controllerType,
+ final k=k,
+ final Ti=Ti,
+ final Td=Td,
+ final yMax=yMax,
+ final yMin=yMin,
+ final y_reset=1) "Bypass valve position PI controller"
+ annotation (Placement(transformation(extent={{40,20},{60,40}})));
+
+protected
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant minFlo[nChi](
+ final k=minFloSet) "Minimum bypass flow rate at each stage"
+ annotation (Placement(transformation(extent={{-80,-90},{-60,-70}})));
+ Buildings.Controls.OBC.CDL.Continuous.MultiSum mulSum(
+ final nin=nChi)
+ "Sum of minimum chilled water flow of all chillers"
+ annotation (Placement(transformation(extent={{-40,-90},{-20,-70}})));
+ Buildings.Controls.OBC.CDL.Continuous.Divide div
+ "Normalized minimum flow setpoint"
+ annotation (Placement(transformation(extent={{20,-70},{40,-50}})));
+ Buildings.Controls.OBC.CDL.Continuous.Divide div1
+ "Normalized minimum bypass flow "
+ annotation (Placement(transformation(extent={{20,-20},{40,0}})));
+ Buildings.Controls.OBC.CDL.Continuous.Switch swi "Logical switch"
+ annotation (Placement(transformation(extent={{40,70},{60,90}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant opeVal(
+ final k=1) "Valve open"
+ annotation (Placement(transformation(extent={{-40,50},{-20,70}})));
+
+equation
+ connect(minFlo.y, mulSum.u)
+ annotation (Line(points={{-58,-80},{-42,-80}},color={0,0,127}));
+ connect(VChiWat_flow, div1.u1)
+ annotation (Line(points={{-120,10},{-80,10},{-80,-4},{18,-4}}, color={0,0,127}));
+ connect(mulSum.y, div1.u2)
+ annotation (Line(points={{-18,-80},{10,-80},{10,-16},{18,-16}},
+ color={0,0,127}));
+ connect(mulSum.y, div.u2)
+ annotation (Line(points={{-18,-80},{10,-80},{10,-66},{18,-66}},
+ color={0,0,127}));
+ connect(div1.y, valPos.u_m)
+ annotation (Line(points={{42,-10},{50,-10},{50,18}}, color={0,0,127}));
+ connect(div.y, valPos.u_s)
+ annotation (Line(points={{42,-60},{50,-60},{50,-40},{0,-40},{0,30},{38,30}},
+ color={0,0,127}));
+ connect(uChiWatPum, swi.u2)
+ annotation (Line(points={{-120,80},{38,80}}, color={255,0,255}));
+ connect(opeVal.y, swi.u3)
+ annotation (Line(points={{-18,60},{0,60},{0,72},{38,72}}, color={0,0,127}));
+ connect(swi.y, yValPos)
+ annotation (Line(points={{62,80},{120,80}}, color={0,0,127}));
+ connect(div.u1, VChiWatSet_flow)
+ annotation (Line(points={{18,-54},{-80,-54},{-80,-40},{-120,-40}},
+ color={0,0,127}));
+ connect(uChiWatPum, valPos.trigger)
+ annotation (Line(points={{-120,80},{-60,80},{-60,10},{44,10},{44,18}},
+ color={255,0,255}));
+ connect(valPos.y, swi.u1)
+ annotation (Line(points={{62,30},{80,30},{80,60},{20,60},{20,88},{38,88}},
+ color={0,0,127}));
+
+annotation (
+ defaultComponentName="minBypValCon",
+ Icon(coordinateSystem(preserveAspectRatio=false, extent={{-100,-100},{100,100}}),
+ graphics={
+ Rectangle(
+ extent={{-100,-100},{100,100}},
+ lineColor={0,0,0},
+ fillColor={255,255,255},
+ fillPattern=FillPattern.Solid),
+ Text(
+ extent={{-120,146},{100,108}},
+ textColor={0,0,255},
+ textString="%name"),
+ Rectangle(
+ extent={{-60,40},{80,-40}},
+ lineColor={28,108,200},
+ fillColor={210,210,210},
+ fillPattern=FillPattern.Solid,
+ borderPattern=BorderPattern.Raised),
+ Polygon(
+ points={{-60,40},{-20,0},{-60,-40},{-60,40}},
+ lineColor={175,175,175},
+ fillColor={175,175,175},
+ fillPattern=FillPattern.Solid),
+ Text(
+ extent={{-98,88},{-54,74}},
+ textColor={255,0,255},
+ textString="uChiWatPum"),
+ Text(
+ extent={{-98,6},{-54,-4}},
+ textColor={0,0,127},
+ pattern=LinePattern.Dash,
+ textString="VChiWat_flow"),
+ Text(
+ extent={{68,6},{102,-4}},
+ textColor={0,0,127},
+ pattern=LinePattern.Dash,
+ textString="yValPos"),
+ Text(
+ extent={{-98,-74},{-42,-86}},
+ textColor={0,0,127},
+ pattern=LinePattern.Dash,
+ textString="VChiWatSet_flow")}),
+ Diagram(coordinateSystem(preserveAspectRatio=false,
+ extent={{-100,-100},{100,100}})),
+ Documentation(info="
+
+Block that controls chilled water minimum flow for primary-only
+plants with a minimum flow bypass valve,
+according to ASHRAE RP-1711 Advanced Sequences of Operation for HVAC Systems Phase II –
+Central Plants and Hydronic Systems (Draft on March 23, 2020),
+section 5.2.8 Chilled water minimum flow bypass valve.
+
+
+The minimum chilled water flow setpoint VChiWatSet_flow
is specified by block
+
+Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.MinimumFlowBypass.Subsequences.FlowSetpoint.
+
+
+When any chilled water pump is proven on (uChiWatPum
= true),
+the bypass valve PID loop shall be enabled. The valve shall be opened 100% otherwise.
+When enabled, the bypass valve loop shall be biased to start with the valve
+100% open.
+
+",
+revisions="
+
+-
+January 31, 2019, by Jianjun Hu:
+First implementation.
+
+
+"));
+end Controller;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/MinimumFlowBypass/FlowSetpoint.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/MinimumFlowBypass/FlowSetpoint.mo
new file mode 100644
index 00000000000..53fbf9ed037
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/MinimumFlowBypass/FlowSetpoint.mo
@@ -0,0 +1,958 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.MinimumFlowBypass;
+block FlowSetpoint "Chilled water minimum flow setpoint for primary-only plants"
+
+ parameter Integer nChi = 3
+ "Total number of chillers";
+ parameter Boolean have_parChi=true
+ "Flag: true means that the plant has parallel chillers";
+ parameter Real byPasSetTim(
+ final unit="s",
+ final quantity="Time")=300
+ "Time constant for resetting minimum bypass flow";
+ parameter Real minFloSet[nChi](
+ final unit=fill("m3/s",nChi),
+ final quantity=fill("VolumeFlowRate",nChi),
+ displayUnit=fill("m3/s",nChi)) = {0.005, 0.005, 0.005}
+ "Minimum chilled water flow through each chiller";
+ parameter Real maxFloSet[nChi](
+ final unit=fill("m3/s",nChi),
+ final quantity=fill("VolumeFlowRate",nChi),
+ displayUnit=fill("m3/s",nChi)) = {0.025, 0.025, 0.025}
+ "Maximum chilled water flow through each chiller";
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uStaUp
+ "Stage up logical signal"
+ annotation (Placement(transformation(extent={{-480,400},{-440,440}}),
+ iconTransformation(extent={{-140,70},{-100,110}})));
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uUpsDevSta
+ "Resetting status of upstream device (in staging up or down process) before reset minimum chilled water flow setpoint"
+ annotation (Placement(transformation(extent={{-480,360},{-440,400}}),
+ iconTransformation(extent={{-140,50},{-100,90}})));
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uChi[nChi]
+ "Chiller status: true=ON"
+ annotation (Placement(transformation(extent={{-480,320},{-440,360}}),
+ iconTransformation(extent={{-140,20},{-100,60}})));
+ Buildings.Controls.OBC.CDL.Interfaces.IntegerInput nexEnaChi
+ "Index of next chiller to be enabled"
+ annotation (Placement(transformation(extent={{-480,50},{-440,90}}),
+ iconTransformation(extent={{-140,-10},{-100,30}})));
+ Buildings.Controls.OBC.CDL.Interfaces.IntegerInput nexDisChi
+ "Index of next chiller to be disabled"
+ annotation (Placement(transformation(extent={{-480,-90},{-440,-50}}),
+ iconTransformation(extent={{-140,-30},{-100,10}})));
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uSubCha
+ "Indicate if upstream device has been reset in the sub-process. This input is used when the stage change needs chiller on-off"
+ annotation (Placement(transformation(extent={{-480,-300},{-440,-260}}),
+ iconTransformation(extent={{-140,-60},{-100,-20}})));
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uOnOff
+ "Indicate if the stage change requires one chiller to be enabled while another is disabled"
+ annotation (Placement(transformation(extent={{-480,-340},{-440,-300}}),
+ iconTransformation(extent={{-140,-90},{-100,-50}})));
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uStaDow
+ "Stage down logical signal"
+ annotation (Placement(transformation(extent={{-480,-410},{-440,-370}}),
+ iconTransformation(extent={{-140,-110},{-100,-70}})));
+ Buildings.Controls.OBC.CDL.Interfaces.RealOutput yChiWatMinFloSet(
+ final quantity="VolumeFlowRate",
+ final unit="m3/s",
+ final min=0)
+ "Chilled water minimum flow setpoint"
+ annotation (Placement(transformation(extent={{440,120},{480,160}}),
+ iconTransformation(extent={{100,-20},{140,20}})));
+
+protected
+ final parameter Integer chiInd[nChi]={i for i in 1:nChi}
+ "Chiller index, {1,2,...,n}";
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant con3(
+ final k=byPasSetTim)
+ "Duration time to change old setpoint to new setpoint"
+ annotation (Placement(transformation(extent={{-60,158},{-40,178}})));
+ Buildings.Controls.OBC.CDL.Continuous.Line oneMorSet
+ "Minimum flow setpoint when adding one more chiller"
+ annotation (Placement(transformation(extent={{100,220},{120,240}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant con2(final k=0)
+ "Constant zero"
+ annotation (Placement(transformation(extent={{-60,200},{-40,220}})));
+ Buildings.Controls.OBC.CDL.Logical.Timer tim
+ "Time after suppress chiller demand"
+ annotation (Placement(transformation(extent={{-218,410},{-198,430}})));
+ Buildings.Controls.OBC.CDL.Continuous.Line oneLeSet
+ "Minimum flow setpoint when disabling one chiller"
+ annotation (Placement(transformation(extent={{100,-150},{120,-130}})));
+ Buildings.Controls.OBC.CDL.Logical.Timer tim1
+ "Time after suppress chiller demand"
+ annotation (Placement(transformation(extent={{-220,-400},{-200,-380}})));
+ Buildings.Controls.OBC.CDL.Continuous.Switch dowSet
+ "Minimum flow chilled water flow setpoint when there is stage-down command"
+ annotation (Placement(transformation(extent={{240,-130},{260,-110}})));
+ Buildings.Controls.OBC.CDL.Logical.Not not2 "Logical not"
+ annotation (Placement(transformation(extent={{-220,-430},{-200,-410}})));
+ Buildings.Controls.OBC.CDL.Continuous.Switch byPasSet1
+ "Minimum flow chilled water flow setpoint"
+ annotation (Placement(transformation(extent={{400,130},{420,150}})));
+ Buildings.Controls.OBC.CDL.Logical.And and1 "Logical and"
+ annotation (Placement(transformation(extent={{-320,410},{-300,430}})));
+ Buildings.Controls.OBC.CDL.Logical.And and3 "Logical and"
+ annotation (Placement(transformation(extent={{-320,-400},{-300,-380}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant minFlo[nChi](
+ final k=minFloSet)
+ "Minimum chilled water flow through each chiller"
+ annotation (Placement(transformation(extent={{-400,190},{-380,210}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant maxFlo[nChi](
+ final k=maxFloSet)
+ "Maximum chilled water flow through each chiller"
+ annotation (Placement(transformation(extent={{-400,150},{-380,170}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant zer[nChi](
+ final k=fill(0,nChi)) "Constant zero"
+ annotation (Placement(transformation(extent={{-400,110},{-380,130}})));
+ Buildings.Controls.OBC.CDL.Continuous.Divide floRat[nChi]
+ "Flow rate ratio through each chiller"
+ annotation (Placement(transformation(extent={{-280,170},{-260,190}})));
+ Buildings.Controls.OBC.CDL.Routing.RealExtractor nexChiRat(final nin=nChi)
+ if have_parChi
+ "Flow rate ratio of next enabling chiller"
+ annotation (Placement(transformation(extent={{-220,80},{-200,100}})));
+ Buildings.Controls.OBC.CDL.Routing.RealExtractor nexChiMaxFlo(final nin=nChi)
+ if have_parChi "Maximum flow rate of next enabling chiller"
+ annotation (Placement(transformation(extent={{-220,40},{-200,60}})));
+ Buildings.Controls.OBC.CDL.Continuous.Max max if have_parChi
+ "Maximum flow rate ratio of operating chillers after one chiller being enabled"
+ annotation (Placement(transformation(extent={{-80,80},{-60,100}})));
+ Buildings.Controls.OBC.CDL.Continuous.Add add2 if have_parChi
+ "Sum of maximum chilled water flow rate setpoint of operating chillers after one chiller being enabled"
+ annotation (Placement(transformation(extent={{-80,40},{-60,60}})));
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant conInt[nChi](
+ final k=chiInd) "Chiller index vector"
+ annotation (Placement(transformation(extent={{-400,-40},{-380,-20}})));
+ Buildings.Controls.OBC.CDL.Routing.IntegerScalarReplicator intRep(
+ final nout=nChi) "Replicate integer input"
+ annotation (Placement(transformation(extent={{-400,-80},{-380,-60}})));
+ Buildings.Controls.OBC.CDL.Integers.Equal intEqu[nChi] "Check equality of two integer inputs"
+ annotation (Placement(transformation(extent={{-320,-40},{-300,-20}})));
+ Buildings.Controls.OBC.CDL.Logical.Xor xor[nChi] "Outputs true if exactly one input is true"
+ annotation (Placement(transformation(extent={{-220,-40},{-200,-20}})));
+ Buildings.Controls.OBC.CDL.Continuous.Switch swi3[nChi] if have_parChi
+ "Flow rate ratio of operating chiller"
+ annotation (Placement(transformation(extent={{-120,-10},{-100,10}})));
+ Buildings.Controls.OBC.CDL.Continuous.Switch swi4[nChi] if have_parChi
+ "Maximum flow rate of operating chiller"
+ annotation (Placement(transformation(extent={{-120,-70},{-100,-50}})));
+ Buildings.Controls.OBC.CDL.Continuous.Multiply pro2 if have_parChi
+ "Chilled water flow setpoint after disabling next chiller"
+ annotation (Placement(transformation(extent={{-20,-40},{0,-20}})));
+ Buildings.Controls.OBC.CDL.Continuous.Max max1 if not have_parChi
+ "Largest minimum flow rate setpoint of operating chillers after one chiller being enabled"
+ annotation (Placement(transformation(extent={{-20,-200},{0,-180}})));
+ Buildings.Controls.OBC.CDL.Continuous.MultiSum mulSum1(final nin=nChi)
+ if have_parChi
+ "Sum of maximum chilled water flow rate setpoint of operating chillers after one chiller being disabled"
+ annotation (Placement(transformation(extent={{-80,-70},{-60,-50}})));
+ Buildings.Controls.OBC.CDL.Continuous.MultiMax multiMax1(final nin=nChi)
+ if not have_parChi
+ "Largest minimum flow rate setpoint of operating chillers"
+ annotation (Placement(transformation(extent={{-80,-160},{-60,-140}})));
+ Buildings.Controls.OBC.CDL.Continuous.MultiMax multiMax2(final nin=nChi)
+ if have_parChi
+ "Maximum flow rate ratio of operating chillers after one chiller being disabled"
+ annotation (Placement(transformation(extent={{-80,-10},{-60,10}})));
+ Buildings.Controls.OBC.CDL.Continuous.MultiMax multiMax3(final nin=nChi)
+ if not have_parChi
+ "Largest minimum flow rate setpoint of operating chillers after one chiller being disabled"
+ annotation (Placement(transformation(extent={{-20,-240},{0,-220}})));
+ Buildings.Controls.OBC.CDL.Continuous.Switch swi5[nChi] if not have_parChi
+ "Minimum flow rate of operating chiller"
+ annotation (Placement(transformation(extent={{-120,-160},{-100,-140}})));
+ Buildings.Controls.OBC.CDL.Routing.RealExtractor nexChiMinFlo(final nin=nChi)
+ if not have_parChi "Minimum flow rate of next enabling chiller"
+ annotation (Placement(transformation(extent={{-220,-200},{-200,-180}})));
+ Buildings.Controls.OBC.CDL.Continuous.Switch swi6[nChi] if not have_parChi
+ "Minimum flow rate of operating chiller"
+ annotation (Placement(transformation(extent={{-100,-240},{-80,-220}})));
+ Buildings.Controls.OBC.CDL.Logical.Or or2 "Logical and"
+ annotation (Placement(transformation(extent={{-400,-10},{-380,10}})));
+ Buildings.Controls.OBC.CDL.Continuous.Switch swi9[nChi] if have_parChi
+ "Flow rate ratio of operating chiller"
+ annotation (Placement(transformation(extent={{-220,340},{-200,360}})));
+ Buildings.Controls.OBC.CDL.Continuous.MultiMax multiMax4(
+ final nin=nChi) if have_parChi
+ "Maximum flow rate ratio of operating chillers"
+ annotation (Placement(transformation(extent={{-180,340},{-160,360}})));
+ Buildings.Controls.OBC.CDL.Continuous.Switch swi10[nChi] if have_parChi
+ "Maximum flow rate of operating chiller"
+ annotation (Placement(transformation(extent={{-220,300},{-200,320}})));
+ Buildings.Controls.OBC.CDL.Continuous.MultiSum mulSum2(
+ final nin=nChi) if have_parChi
+ "Sum of maximum chilled water flow rate setpoint of operating chillers"
+ annotation (Placement(transformation(extent={{-180,300},{-160,320}})));
+ Buildings.Controls.OBC.CDL.Continuous.Multiply pro3 if have_parChi
+ "Chilled water flow setpoint for current operating chillers"
+ annotation (Placement(transformation(extent={{-60,320},{-40,340}})));
+ Buildings.Controls.OBC.CDL.Continuous.Switch swi11[nChi] if have_parChi
+ "Maximum flow rate of operating chiller"
+ annotation (Placement(transformation(extent={{-220,220},{-200,240}})));
+ Buildings.Controls.OBC.CDL.Continuous.MultiSum mulSum3(
+ final nin=nChi) if have_parChi
+ "Sum of maximum chilled water flow rate setpoint of operating chillers"
+ annotation (Placement(transformation(extent={{-180,220},{-160,240}})));
+ Buildings.Controls.OBC.CDL.Continuous.Switch swi12[nChi] if have_parChi
+ "Flow rate ratio of operating chiller"
+ annotation (Placement(transformation(extent={{-220,260},{-200,280}})));
+ Buildings.Controls.OBC.CDL.Continuous.MultiMax multiMax5(final nin=nChi)
+ if have_parChi
+ "Maximum flow rate ratio of operating chillers"
+ annotation (Placement(transformation(extent={{-180,260},{-160,280}})));
+ Buildings.Controls.OBC.CDL.Continuous.Multiply pro4 if have_parChi
+ "Chilled water flow setpoint for current operating chillers"
+ annotation (Placement(transformation(extent={{-60,240},{-40,260}})));
+ Buildings.Controls.OBC.CDL.Continuous.Multiply pro1 if have_parChi
+ "Chilled water flow setpoint for current operating chillers"
+ annotation (Placement(transformation(extent={{-20,60},{0,80}})));
+ Buildings.Controls.OBC.CDL.Continuous.MultiMax multiMax6(
+ final nin=nChi) if not have_parChi
+ "Largest minimum flow rate setpoint of operating chillers"
+ annotation (Placement(transformation(extent={{-80,-120},{-60,-100}})));
+ Buildings.Controls.OBC.CDL.Continuous.Switch swi1[nChi] if not have_parChi
+ "Minimum flow rate of operating chiller"
+ annotation (Placement(transformation(extent={{-120,-120},{-100,-100}})));
+ Buildings.Controls.OBC.CDL.Continuous.Switch byPasSet2
+ "Minimum flow chilled water flow setpoint"
+ annotation (Placement(transformation(extent={{180,250},{200,270}})));
+ Buildings.Controls.OBC.CDL.Continuous.Switch upSet
+ "Minimum flow chilled water flow setpoint when there is stage-up command"
+ annotation (Placement(transformation(extent={{240,210},{260,230}})));
+ Buildings.Controls.OBC.CDL.Logical.Timer tim2
+ "Time after suppress chiller demand"
+ annotation (Placement(transformation(extent={{-220,-360},{-200,-340}})));
+ Buildings.Controls.OBC.CDL.Logical.And and2 "Logical and"
+ annotation (Placement(transformation(extent={{-320,-360},{-300,-340}})));
+ Buildings.Controls.OBC.CDL.Continuous.Line oneMorSet1
+ "Minimum flow setpoint when adding one more chiller"
+ annotation (Placement(transformation(extent={{100,-360},{120,-340}})));
+ Buildings.Controls.OBC.CDL.Continuous.Switch byPasSet4
+ "Minimum flow chilled water flow setpoint"
+ annotation (Placement(transformation(extent={{160,-310},{180,-290}})));
+ Buildings.Controls.OBC.CDL.Continuous.Switch chaSet
+ "Minimum flow chilled water flow setpoint when there is stage-change command"
+ annotation (Placement(transformation(extent={{300,40},{320,60}})));
+ Buildings.Controls.OBC.CDL.Logical.Not not1 "Logical not"
+ annotation (Placement(transformation(extent={{300,130},{320,150}})));
+ Buildings.Controls.OBC.CDL.Logical.And and4 "Logical and"
+ annotation (Placement(transformation(extent={{340,130},{360,150}})));
+ Buildings.Controls.OBC.CDL.Discrete.TriggeredSampler triSam[nChi]
+ "Hold the chiller status when there is any stage change"
+ annotation (Placement(transformation(extent={{-360,240},{-340,260}})));
+ Buildings.Controls.OBC.CDL.Conversions.BooleanToReal booToRea[nChi] "Boolean to real"
+ annotation (Placement(transformation(extent={{-400,240},{-380,260}})));
+ Buildings.Controls.OBC.CDL.Routing.BooleanScalarReplicator booRep(
+ final nout=nChi) "Replicate boolean input"
+ annotation (Placement(transformation(extent={{-380,30},{-360,50}})));
+ Buildings.Controls.OBC.CDL.Continuous.GreaterThreshold greEquThr[nChi](
+ final t=fill(0.5, nChi))
+ "Convert real to boolean"
+ annotation (Placement(transformation(extent={{-320,240},{-300,260}})));
+ Buildings.Controls.OBC.CDL.Integers.GreaterEqualThreshold intGreEquThr(
+ final t=1)
+ "Check if index is in the range"
+ annotation (Placement(transformation(extent={{-400,-180},{-380,-160}})));
+ Buildings.Controls.OBC.CDL.Integers.LessEqualThreshold intLesEquThr(
+ final t=nChi)
+ "Check if index is in the range"
+ annotation (Placement(transformation(extent={{-400,-270},{-380,-250}})));
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant conInt1(
+ final k=1)
+ "Dummy index so the extractor will not have out of range index"
+ annotation (Placement(transformation(extent={{-360,-270},{-340,-250}})));
+ Buildings.Controls.OBC.CDL.Logical.And and5
+ "Check if index is in the range"
+ annotation (Placement(transformation(extent={{-360,-180},{-340,-160}})));
+ Buildings.Controls.OBC.CDL.Conversions.BooleanToReal booToRea1
+ "Convert boolean to real"
+ annotation (Placement(transformation(extent={{-320,-180},{-300,-160}})));
+ Buildings.Controls.OBC.CDL.Integers.Switch intSwi "Valid index"
+ annotation (Placement(transformation(extent={{-320,-240},{-300,-220}})));
+ Buildings.Controls.OBC.CDL.Continuous.Multiply mul3 if not have_parChi
+ "Ensure zero output when the index is out of range"
+ annotation (Placement(transformation(extent={{-120,-190},{-100,-170}})));
+ Buildings.Controls.OBC.CDL.Continuous.Multiply mul1[2] if have_parChi
+ "Ensure zero output when the index is out of range"
+ annotation (Placement(transformation(extent={{-160,40},{-140,60}})));
+ Buildings.Controls.OBC.CDL.Routing.RealScalarReplicator reaScaRep(
+ final nout=3)
+ "Replicate real input"
+ annotation (Placement(transformation(extent={{-270,-180},{-250,-160}})));
+equation
+ connect(uStaDow, not2.u)
+ annotation (Line(points={{-460,-390},{-410,-390},{-410,-420},{-222,-420}},
+ color={255,0,255}));
+ connect(byPasSet1.y, yChiWatMinFloSet)
+ annotation (Line(points={{422,140},{460,140}}, color={0,0,127}));
+ connect(and1.y, tim.u)
+ annotation (Line(points={{-298,420},{-220,420}}, color={255,0,255}));
+ connect(uStaDow, and3.u1)
+ annotation (Line(points={{-460,-390},{-322,-390}}, color={255,0,255}));
+ connect(and3.y, tim1.u)
+ annotation (Line(points={{-298,-390},{-222,-390}}, color={255,0,255}));
+ connect(minFlo.y, floRat.u1)
+ annotation (Line(points={{-378,200},{-300,200},{-300,186},{-282,186}},
+ color={0,0,127}));
+ connect(maxFlo.y, floRat.u2)
+ annotation (Line(points={{-378,160},{-290,160},{-290,174},{-282,174}},
+ color={0,0,127}));
+ connect(nexDisChi, intRep.u)
+ annotation (Line(points={{-460,-70},{-402,-70}}, color={255,127,0}));
+ connect(conInt.y, intEqu.u1)
+ annotation (Line(points={{-378,-30},{-322,-30}}, color={255,127,0}));
+ connect(intRep.y, intEqu.u2)
+ annotation (Line(points={{-378,-70},{-360,-70},{-360,-38},{-322,-38}},
+ color={255,127,0}));
+ connect(intEqu.y, xor.u1)
+ annotation (Line(points={{-298,-30},{-222,-30}}, color={255,0,255}));
+ connect(xor.y, swi3.u2)
+ annotation (Line(points={{-198,-30},{-140,-30},{-140,0},{-122,0}},
+ color={255,0,255}));
+ connect(xor.y, swi4.u2)
+ annotation (Line(points={{-198,-30},{-140,-30},{-140,-60},{-122,-60}},
+ color={255,0,255}));
+ connect(multiMax2.y, pro2.u1)
+ annotation (Line(points={{-58,0},{-40,0},{-40,-24},{-22,-24}},
+ color={0,0,127}));
+ connect(mulSum1.y, pro2.u2)
+ annotation (Line(points={{-58,-60},{-40,-60},{-40,-36},{-22,-36}},
+ color={0,0,127}));
+ connect(swi3.y, multiMax2.u)
+ annotation (Line(points={{-98,0},{-82,0}}, color={0,0,127}));
+ connect(swi4.y, mulSum1.u)
+ annotation (Line(points={{-98,-60},{-82,-60}}, color={0,0,127}));
+ connect(swi5.y, multiMax1.u)
+ annotation (Line(points={{-98,-150},{-82,-150}}, color={0,0,127}));
+ connect(swi6.y, multiMax3.u)
+ annotation (Line(points={{-78,-230},{-22,-230}}, color={0,0,127}));
+ connect(multiMax1.y, max1.u1)
+ annotation (Line(points={{-58,-150},{-40,-150},{-40,-184},{-22,-184}},
+ color={0,0,127}));
+ connect(xor.y, swi6.u2)
+ annotation (Line(points={{-198,-30},{-140,-30},{-140,-230},{-102,-230}},
+ color={255,0,255}));
+ connect(uStaDow, or2.u2)
+ annotation (Line(points={{-460,-390},{-410,-390},{-410,-8},{-402,-8}},
+ color={255,0,255}));
+ connect(uStaUp, or2.u1)
+ annotation (Line(points={{-460,420},{-410,420},{-410,0},{-402,0}},
+ color={255,0,255}));
+ connect(booToRea.y, triSam.u)
+ annotation (Line(points={{-378,250},{-362,250}}, color={0,0,127}));
+ connect(or2.y, booRep.u)
+ annotation (Line(points={{-378,0},{-370,0},{-370,20},{-390,20},{-390,40},
+ {-382,40}}, color={255,0,255}));
+ connect(booRep.y, triSam.trigger)
+ annotation (Line(points={{-358,40},{-350,40},{-350,238}}, color={255,0,255}));
+ connect(uChi, booToRea.u)
+ annotation (Line(points={{-460,340},{-420,340},{-420,250},{-402,250}},
+ color={255,0,255}));
+ connect(uChi, swi9.u2)
+ annotation (Line(points={{-460,340},{-330,340},{-330,350},{-222,350}},
+ color={255,0,255}));
+ connect(uChi, swi10.u2)
+ annotation (Line(points={{-460,340},{-330,340},{-330,310},{-222,310}},
+ color={255,0,255}));
+ connect(floRat.y, swi9.u1)
+ annotation (Line(points={{-258,180},{-250,180},{-250,358},{-222,358}},
+ color={0,0,127}));
+ connect(swi9.y, multiMax4.u)
+ annotation (Line(points={{-198,350},{-188,350},{-188,350},{-182,350}},
+ color={0,0,127}));
+ connect(maxFlo.y, swi10.u1)
+ annotation (Line(points={{-378,160},{-290,160},{-290,318},{-222,318}},
+ color={0,0,127}));
+ connect(zer.y, swi9.u3)
+ annotation (Line(points={{-378,120},{-240,120},{-240,342},{-222,342}},
+ color={0,0,127}));
+ connect(zer.y, swi10.u3)
+ annotation (Line(points={{-378,120},{-240,120},{-240,302},{-222,302}},
+ color={0,0,127}));
+ connect(swi10.y, mulSum2.u)
+ annotation (Line(points={{-198,310},{-190,310},{-190,310},{-182,310}},
+ color={0,0,127}));
+ connect(multiMax4.y, pro3.u1)
+ annotation (Line(points={{-158,350},{-140,350},{-140,336},{-62,336}},
+ color={0,0,127}));
+ connect(mulSum2.y, pro3.u2)
+ annotation (Line(points={{-158,310},{-140,310},{-140,324},{-62,324}},
+ color={0,0,127}));
+ connect(floRat.y, swi12.u1)
+ annotation (Line(points={{-258,180},{-250,180},{-250,278},{-222,278}},
+ color={0,0,127}));
+ connect(triSam.y, greEquThr.u)
+ annotation (Line(points={{-338,250},{-322,250}}, color={0,0,127}));
+ connect(greEquThr.y, swi12.u2)
+ annotation (Line(points={{-298,250},{-230,250},{-230,270},{-222,270}},
+ color={255,0,255}));
+ connect(greEquThr.y, swi11.u2)
+ annotation (Line(points={{-298,250},{-230,250},{-230,230},{-222,230}},
+ color={255,0,255}));
+ connect(zer.y, swi12.u3)
+ annotation (Line(points={{-378,120},{-240,120},{-240,262},{-222,262}},
+ color={0,0,127}));
+ connect(maxFlo.y, swi11.u1)
+ annotation (Line(points={{-378,160},{-290,160},{-290,238},{-222,238}},
+ color={0,0,127}));
+ connect(zer.y, swi11.u3)
+ annotation (Line(points={{-378,120},{-240,120},{-240,222},{-222,222}},
+ color={0,0,127}));
+ connect(swi12.y, multiMax5.u)
+ annotation (Line(points={{-198,270},{-190,270},{-190,270},{-182,270}},
+ color={0,0,127}));
+ connect(swi11.y, mulSum3.u)
+ annotation (Line(points={{-198,230},{-190,230},{-190,230},{-182,230}},
+ color={0,0,127}));
+ connect(multiMax5.y, pro4.u1)
+ annotation (Line(points={{-158,270},{-120,270},{-120,256},{-62,256}},
+ color={0,0,127}));
+ connect(mulSum3.y, pro4.u2)
+ annotation (Line(points={{-158,230},{-100,230},{-100,244},{-62,244}},
+ color={0,0,127}));
+ connect(multiMax5.y, max.u1)
+ annotation (Line(points={{-158,270},{-120,270},{-120,96},{-82,96}},
+ color={0,0,127}));
+ connect(mulSum3.y, add2.u1)
+ annotation (Line(points={{-158,230},{-100,230},{-100,56},{-82,56}},
+ color={0,0,127}));
+ connect(max.y, pro1.u1)
+ annotation (Line(points={{-58,90},{-40,90},{-40,76},{-22,76}}, color={0,0,127}));
+ connect(add2.y, pro1.u2)
+ annotation (Line(points={{-58,50},{-40,50},{-40,64},{-22,64}}, color={0,0,127}));
+ connect(maxFlo.y, nexChiMaxFlo.u)
+ annotation (Line(points={{-378,160},{-290,160},{-290,50},{-222,50}},
+ color={0,0,127}));
+ connect(greEquThr.y, xor.u2)
+ annotation (Line(points={{-298,250},{-230,250},{-230,-38},{-222,-38}},
+ color={255,0,255}));
+ connect(floRat.y, swi3.u1)
+ annotation (Line(points={{-258,180},{-250,180},{-250,8},{-122,8}},
+ color={0,0,127}));
+ connect(zer.y, swi3.u3)
+ annotation (Line(points={{-378,120},{-240,120},{-240,-8},{-122,-8}},
+ color={0,0,127}));
+ connect(zer.y, swi4.u3)
+ annotation (Line(points={{-378,120},{-240,120},{-240,-68},{-122,-68}},
+ color={0,0,127}));
+ connect(maxFlo.y, swi4.u1)
+ annotation (Line(points={{-378,160},{-290,160},{-290,-52},{-122,-52}},
+ color={0,0,127}));
+ connect(uChi, swi1.u2)
+ annotation (Line(points={{-460,340},{-330,340},{-330,-110},{-122,-110}},
+ color={255,0,255}));
+ connect(greEquThr.y, swi5.u2)
+ annotation (Line(points={{-298,250},{-230,250},{-230,-150},{-122,-150}},
+ color={255,0,255}));
+ connect(swi1.y, multiMax6.u)
+ annotation (Line(points={{-98,-110},{-82,-110}},
+ color={0,0,127}));
+ connect(zer.y, swi1.u3)
+ annotation (Line(points={{-378,120},{-240,120},{-240,-118},{-122,-118}},
+ color={0,0,127}));
+ connect(zer.y, swi5.u3)
+ annotation (Line(points={{-378,120},{-240,120},{-240,-158},{-122,-158}},
+ color={0,0,127}));
+ connect(maxFlo.y, swi1.u1)
+ annotation (Line(points={{-378,160},{-290,160},{-290,-102},{-122,-102}},
+ color={0,0,127}));
+ connect(maxFlo.y, swi5.u1)
+ annotation (Line(points={{-378,160},{-290,160},{-290,-142},{-122,-142}},
+ color={0,0,127}));
+ connect(maxFlo.y, nexChiMinFlo.u)
+ annotation (Line(points={{-378,160},{-290,160},{-290,-190},{-222,-190}},
+ color={0,0,127}));
+ connect(maxFlo.y, swi6.u1)
+ annotation (Line(points={{-378,160},{-290,160},{-290,-222},{-102,-222}},
+ color={0,0,127}));
+ connect(zer.y, swi6.u3)
+ annotation (Line(points={{-378,120},{-240,120},{-240,-238},{-102,-238}},
+ color={0,0,127}));
+ connect(uUpsDevSta, and1.u2)
+ annotation (Line(points={{-460,380},{-380,380},{-380,412},{-322,412}},
+ color={255,0,255}));
+ connect(uStaUp, and1.u1)
+ annotation (Line(points={{-460,420},{-322,420}}, color={255,0,255}));
+ connect(con2.y, oneMorSet.x1)
+ annotation (Line(points={{-38,210},{70,210},{70,238},{98,238}}, color={0,0,127}));
+ connect(pro4.y, oneMorSet.f1)
+ annotation (Line(points={{-38,250},{60,250},{60,234},{98,234}}, color={0,0,127}));
+ connect(con3.y, oneMorSet.x2)
+ annotation (Line(points={{-38,168},{80,168},{80,226},{98,226}}, color={0,0,127}));
+ connect(pro1.y, oneMorSet.f2)
+ annotation (Line(points={{2,70},{90,70},{90,222},{98,222}},
+ color={0,0,127}));
+ connect(tim.y, oneMorSet.u)
+ annotation (Line(points={{-196,420},{50,420},{50,230},{98,230}},
+ color={0,0,127}));
+ connect(con2.y, oneLeSet.x1)
+ annotation (Line(points={{-38,210},{70,210},{70,-132},{98,-132}},
+ color={0,0,127}));
+ connect(pro4.y, oneLeSet.f1)
+ annotation (Line(points={{-38,250},{60,250},{60,-136},{98,-136}},
+ color={0,0,127}));
+ connect(con3.y, oneLeSet.x2)
+ annotation (Line(points={{-38,168},{80,168},{80,-144},{98,-144}},
+ color={0,0,127}));
+ connect(pro2.y, oneLeSet.f2)
+ annotation (Line(points={{2,-30},{50,-30},{50,-148},{98,-148}},
+ color={0,0,127}));
+ connect(oneMorSet.y, byPasSet2.u3)
+ annotation (Line(points={{122,230},{170,230},{170,252},{178,252}},
+ color={0,0,127}));
+ connect(pro3.y, byPasSet2.u1)
+ annotation (Line(points={{-38,330},{40,330},{40,268},{178,268}},
+ color={0,0,127}));
+ connect(uSubCha, byPasSet2.u2)
+ annotation (Line(points={{-460,-280},{150,-280},{150,260},{178,260}},
+ color={255,0,255}));
+ connect(uOnOff, upSet.u2)
+ annotation (Line(points={{-460,-320},{220,-320},{220,220},{238,220}},
+ color={255,0,255}));
+ connect(byPasSet2.y, upSet.u1)
+ annotation (Line(points={{202,260},{220,260},{220,228},{238,228}},
+ color={0,0,127}));
+ connect(oneMorSet.y, upSet.u3)
+ annotation (Line(points={{122,230},{170,230},{170,212},{238,212}},
+ color={0,0,127}));
+ connect(uStaDow, and2.u2)
+ annotation (Line(points={{-460,-390},{-410,-390},{-410,-358},{-322,-358}},
+ color={255,0,255}));
+ connect(uSubCha, and2.u1)
+ annotation (Line(points={{-460,-280},{-420,-280},{-420,-350},{-322,-350}},
+ color={255,0,255}));
+ connect(and2.y, tim2.u)
+ annotation (Line(points={{-298,-350},{-222,-350}}, color={255,0,255}));
+ connect(con2.y, oneMorSet1.x1)
+ annotation (Line(points={{-38,210},{70,210},{70,-342},{98,-342}},
+ color={0,0,127}));
+ connect(pro4.y, oneMorSet1.f1)
+ annotation (Line(points={{-38,250},{60,250},{60,-346},{98,-346}},
+ color={0,0,127}));
+ connect(con3.y, oneMorSet1.x2)
+ annotation (Line(points={{-38,168},{80,168},{80,-354},{98,-354}},
+ color={0,0,127}));
+ connect(pro1.y, oneMorSet1.f2)
+ annotation (Line(points={{2,70},{90,70},{90,-358},{98,-358}},
+ color={0,0,127}));
+ connect(tim2.y, oneMorSet1.u)
+ annotation (Line(points={{-198,-350},{98,-350}}, color={0,0,127}));
+ connect(oneMorSet1.y, byPasSet4.u3)
+ annotation (Line(points={{122,-350},{140,-350},{140,-308},{158,-308}},
+ color={0,0,127}));
+ connect(uUpsDevSta, byPasSet4.u2)
+ annotation (Line(points={{-460,380},{-430,380},{-430,-300},{158,-300}},
+ color={255,0,255}));
+ connect(pro3.y, byPasSet4.u1)
+ annotation (Line(points={{-38,330},{40,330},{40,-292},{158,-292}},
+ color={0,0,127}));
+ connect(uOnOff, dowSet.u2)
+ annotation (Line(points={{-460,-320},{220,-320},{220,-120},{238,-120}},
+ color={255,0,255}));
+ connect(byPasSet4.y, dowSet.u1)
+ annotation (Line(points={{182,-300},{200,-300},{200,-112},{238,-112}},
+ color={0,0,127}));
+ connect(uUpsDevSta, and3.u2)
+ annotation (Line(points={{-460,380},{-430,380},{-430,-398},{-322,-398}},
+ color={255,0,255}));
+ connect(tim1.y, oneLeSet.u)
+ annotation (Line(points={{-198,-390},{30,-390},{30,-140},{98,-140}},
+ color={0,0,127}));
+ connect(oneLeSet.y, dowSet.u3)
+ annotation (Line(points={{122,-140},{180,-140},{180,-128},{238,-128}},
+ color={0,0,127}));
+ connect(dowSet.y, chaSet.u3)
+ annotation (Line(points={{262,-120},{270,-120},{270,42},{298,42}},
+ color={0,0,127}));
+ connect(upSet.y, chaSet.u1)
+ annotation (Line(points={{262,220},{270,220},{270,58},{298,58}},
+ color={0,0,127}));
+ connect(uStaUp, chaSet.u2)
+ annotation (Line(points={{-460,420},{-410,420},{-410,400},{280,400},{280,50},
+ {298,50}}, color={255,0,255}));
+ connect(not1.y, and4.u1)
+ annotation (Line(points={{322,140},{338,140}}, color={255,0,255}));
+ connect(and4.y, byPasSet1.u2)
+ annotation (Line(points={{362,140},{398,140}}, color={255,0,255}));
+ connect(not2.y, and4.u2)
+ annotation (Line(points={{-198,-420},{330,-420},{330,132},{338,132}},
+ color={255,0,255}));
+ connect(chaSet.y, byPasSet1.u3)
+ annotation (Line(points={{322,50},{380,50},{380,132},{398,132}},
+ color={0,0,127}));
+ connect(pro3.y, byPasSet1.u1)
+ annotation (Line(points={{-38,330},{380,330},{380,148},{398,148}},
+ color={0,0,127}));
+ connect(uStaUp, not1.u)
+ annotation (Line(points={{-460,420},{-410,420},{-410,400},{280,400},
+ {280,140},{298,140}}, color={255,0,255}));
+ connect(multiMax1.y, oneMorSet.f1)
+ annotation (Line(points={{-58,-150},{60,-150},{60,234},{98,234}},
+ color={0,0,127}));
+ connect(multiMax1.y, oneMorSet1.f1)
+ annotation (Line(points={{-58,-150},{60,-150},{60,-346},{98,-346}},
+ color={0,0,127}));
+ connect(max1.y, oneMorSet.f2)
+ annotation (Line(points={{2,-190},{90,-190},{90,222},{98,222}},
+ color={0,0,127}));
+ connect(max1.y, oneMorSet1.f2)
+ annotation (Line(points={{2,-190},{90,-190},{90,-358},{98,-358}},
+ color={0,0,127}));
+ connect(multiMax3.y, oneLeSet.f2)
+ annotation (Line(points={{2,-230},{50,-230},{50,-148},{98,-148}},
+ color={0,0,127}));
+ connect(multiMax6.y, byPasSet2.u1)
+ annotation (Line(points={{-58,-110},{40,-110},{40,268},{178,268}},
+ color={0,0,127}));
+ connect(multiMax6.y, byPasSet4.u1)
+ annotation (Line(points={{-58,-110},{40,-110},{40,-292},{158,-292}},
+ color={0,0,127}));
+ connect(multiMax6.y, byPasSet1.u1)
+ annotation (Line(points={{-58,-110},{40,-110},{40,180},{380,180},{380,148},{
+ 398,148}}, color={0,0,127}));
+ connect(multiMax1.y, oneLeSet.f1)
+ annotation (Line(points={{-58,-150},{60,-150},{60,-136},{98,-136}},
+ color={0,0,127}));
+ connect(floRat.y, nexChiRat.u)
+ annotation (Line(points={{-258,180},{-250,180},{-250,90},{-222,90}},
+ color={0,0,127}));
+ connect(conInt1.y, intSwi.u3) annotation (Line(points={{-338,-260},{-330,-260},
+ {-330,-238},{-322,-238}}, color={255,127,0}));
+ connect(and5.y, booToRea1.u)
+ annotation (Line(points={{-338,-170},{-322,-170}}, color={255,0,255}));
+ connect(and5.y, intSwi.u2) annotation (Line(points={{-338,-170},{-330,-170},{-330,
+ -230},{-322,-230}}, color={255,0,255}));
+ connect(intGreEquThr.y, and5.u1)
+ annotation (Line(points={{-378,-170},{-362,-170}}, color={255,0,255}));
+ connect(intLesEquThr.y, and5.u2) annotation (Line(points={{-378,-260},{-370,-260},
+ {-370,-178},{-362,-178}}, color={255,0,255}));
+ connect(nexEnaChi, intGreEquThr.u) annotation (Line(points={{-460,70},{-420,70},
+ {-420,-170},{-402,-170}}, color={255,127,0}));
+ connect(nexEnaChi, intSwi.u1) annotation (Line(points={{-460,70},{-420,70},{-420,
+ -222},{-322,-222}}, color={255,127,0}));
+ connect(nexEnaChi, intLesEquThr.u) annotation (Line(points={{-460,70},{-420,70},
+ {-420,-260},{-402,-260}}, color={255,127,0}));
+ connect(intSwi.y, nexChiMinFlo.index) annotation (Line(points={{-298,-230},{-280,
+ -230},{-280,-210},{-210,-210},{-210,-202}}, color={255,127,0}));
+ connect(intSwi.y, nexChiMaxFlo.index) annotation (Line(points={{-298,-230},{-280,
+ -230},{-280,30},{-210,30},{-210,38}}, color={255,127,0}));
+ connect(intSwi.y, nexChiRat.index) annotation (Line(points={{-298,-230},{-280,
+ -230},{-280,70},{-210,70},{-210,78}}, color={255,127,0}));
+ connect(booToRea1.y, reaScaRep.u)
+ annotation (Line(points={{-298,-170},{-272,-170}}, color={0,0,127}));
+ connect(mul3.y, max1.u2) annotation (Line(points={{-98,-180},{-80,-180},{-80,-196},
+ {-22,-196}}, color={0,0,127}));
+ connect(reaScaRep.y[3], mul3.u1) annotation (Line(points={{-248,-169.333},{
+ -180,-169.333},{-180,-174},{-122,-174}},
+ color={0,0,127}));
+ connect(reaScaRep.y[1], mul1[1].u2) annotation (Line(points={{-248,-170.667},
+ {-180,-170.667},{-180,44},{-162,44}},color={0,0,127}));
+ connect(reaScaRep.y[2], mul1[2].u2) annotation (Line(points={{-248,-170},{-180,
+ -170},{-180,44},{-162,44}}, color={0,0,127}));
+ connect(nexChiMaxFlo.y, mul1[2].u1) annotation (Line(points={{-198,50},{-180,50},
+ {-180,56},{-162,56}}, color={0,0,127}));
+ connect(nexChiRat.y, mul1[1].u1) annotation (Line(points={{-198,90},{-180,90},
+ {-180,56},{-162,56}}, color={0,0,127}));
+ connect(mul1[1].y, max.u2) annotation (Line(points={{-138,50},{-120,50},{-120,
+ 84},{-82,84}}, color={0,0,127}));
+ connect(mul1[2].y, add2.u2) annotation (Line(points={{-138,50},{-120,50},{-120,
+ 44},{-82,44}}, color={0,0,127}));
+ connect(nexChiMinFlo.y, mul3.u2) annotation (Line(points={{-198,-190},{-180,-190},
+ {-180,-186},{-122,-186}}, color={0,0,127}));
+annotation (
+ defaultComponentName="minChiFloSet",
+ Icon(coordinateSystem(extent={{-100,-100},{100,100}}),
+ graphics={
+ Rectangle(
+ extent={{-100,-100},{100,100}},
+ lineColor={0,0,127},
+ fillColor={210,210,210},
+ fillPattern=FillPattern.Solid,
+ borderPattern=BorderPattern.Raised),
+ Text(
+ extent={{-120,146},{100,108}},
+ textColor={0,0,255},
+ textString="%name"),
+ Rectangle(extent={{-36,42},{0,28}}, lineColor={28,108,200}),
+ Rectangle(extent={{-36,28},{0,14}}, lineColor={28,108,200}),
+ Rectangle(extent={{-36,14},{0,0}}, lineColor={28,108,200}),
+ Rectangle(extent={{-36,0},{0,-14}}, lineColor={28,108,200}),
+ Rectangle(extent={{-36,-14},{0,-28}}, lineColor={28,108,200}),
+ Text(
+ extent={{-32,38},{-12,32}},
+ textColor={28,108,200},
+ textString="Stage #"),
+ Text(
+ extent={{-30,24},{-10,18}},
+ textColor={28,108,200},
+ textString="0"),
+ Text(
+ extent={{-30,10},{-10,4}},
+ textColor={28,108,200},
+ textString="1"),
+ Text(
+ extent={{-30,-4},{-10,-10}},
+ textColor={28,108,200},
+ textString="2"),
+ Rectangle(extent={{-36,-28},{0,-42}}, lineColor={28,108,200}),
+ Text(
+ extent={{-30,-18},{-10,-24}},
+ textColor={28,108,200},
+ textString="..."),
+ Text(
+ extent={{-30,-32},{-10,-38}},
+ textColor={28,108,200},
+ textString="n"),
+ Rectangle(extent={{2,42},{38,28}}, lineColor={28,108,200}),
+ Rectangle(extent={{2,28},{38,14}}, lineColor={28,108,200}),
+ Rectangle(extent={{2,14},{38,0}}, lineColor={28,108,200}),
+ Rectangle(extent={{2,0},{38,-14}}, lineColor={28,108,200}),
+ Rectangle(extent={{2,-14},{38,-28}}, lineColor={28,108,200}),
+ Text(
+ extent={{8,38},{34,32}},
+ textColor={28,108,200},
+ textString="Min flow"),
+ Text(
+ extent={{6,24},{34,18}},
+ textColor={28,108,200},
+ textString="minFloSet[1]"),
+ Rectangle(extent={{2,-28},{38,-42}}, lineColor={28,108,200}),
+ Text(
+ extent={{8,-18},{28,-24}},
+ textColor={28,108,200},
+ textString="..."),
+ Text(
+ extent={{6,10},{34,4}},
+ textColor={28,108,200},
+ textString="minFloSet[2]"),
+ Text(
+ extent={{6,-32},{34,-38}},
+ textColor={28,108,200},
+ textString="minFloSet[n]"),
+ Text(
+ extent={{6,-4},{34,-10}},
+ textColor={28,108,200},
+ textString="minFloSet[3]"),
+ Text(
+ extent={{-98,20},{-44,4}},
+ textColor={255,127,0},
+ textString="nexEnaChi"),
+ Text(
+ extent={{-98,0},{-44,-16}},
+ textColor={255,127,0},
+ textString="nexDisChi"),
+ Text(
+ extent={{-98,-82},{-52,-96}},
+ textColor={255,0,255},
+ textString="uStaDow"),
+ Text(
+ extent={{-102,-64},{-60,-76}},
+ textColor={255,0,255},
+ textString="uOnOff"),
+ Text(
+ extent={{-98,-32},{-52,-46}},
+ textColor={255,0,255},
+ textString="uSubCha"),
+ Text(
+ extent={{-98,98},{-58,84}},
+ textColor={255,0,255},
+ textString="uStaUp"),
+ Text(
+ extent={{-98,78},{-38,64}},
+ textColor={255,0,255},
+ textString="uUpsDevSta"),
+ Text(
+ extent={{-98,48},{-70,34}},
+ textColor={255,0,255},
+ textString="uChi"),
+ Text(
+ extent={{44,6},{98,-6}},
+ textColor={0,0,127},
+ pattern=LinePattern.Dash,
+ textString="yChiWatMinFloSet")}),
+ Diagram(coordinateSystem(preserveAspectRatio=false,
+ extent={{-440,-440},{440,440}}), graphics={
+ Rectangle(
+ extent={{-398,398},{18,-58}},
+ lineColor={0,0,0},
+ fillColor={215,215,215},
+ fillPattern=FillPattern.Solid,
+ pattern=LinePattern.None),
+ Rectangle(
+ extent={{-398,-82},{18,-278}},
+ lineColor={0,0,0},
+ fillColor={215,215,215},
+ fillPattern=FillPattern.Solid,
+ pattern=LinePattern.None),
+ Text(
+ extent={{-92,394},{14,378}},
+ textColor={0,0,127},
+ fillColor={215,215,215},
+ fillPattern=FillPattern.Solid,
+ horizontalAlignment=TextAlignment.Right,
+ textString="Plant with parallel chillers"),
+ Text(
+ extent={{-80,-78},{18,-94}},
+ textColor={0,0,127},
+ fillColor={215,215,215},
+ fillPattern=FillPattern.Solid,
+ horizontalAlignment=TextAlignment.Right,
+ textString="Plant with series chillers"),
+ Text(
+ extent={{-54,114},{18,98}},
+ textColor={0,0,127},
+ fillColor={215,215,215},
+ fillPattern=FillPattern.Solid,
+ horizontalAlignment=TextAlignment.Right,
+ textString="Minimum flow setpoint when"),
+ Text(
+ extent={{-46,102},{18,88}},
+ textColor={0,0,127},
+ fillColor={215,215,215},
+ fillPattern=FillPattern.Solid,
+ horizontalAlignment=TextAlignment.Right,
+ textString="enabling additional chiller"),
+ Text(
+ extent={{-34,2},{18,-12}},
+ textColor={0,0,127},
+ fillColor={215,215,215},
+ fillPattern=FillPattern.Solid,
+ horizontalAlignment=TextAlignment.Right,
+ textString="disabling one chiller"),
+ Text(
+ extent={{-54,14},{18,-2}},
+ textColor={0,0,127},
+ fillColor={215,215,215},
+ fillPattern=FillPattern.Solid,
+ horizontalAlignment=TextAlignment.Right,
+ textString="Minimum flow setpoint when"),
+ Text(
+ extent={{-42,-160},{22,-174}},
+ textColor={0,0,127},
+ fillColor={215,215,215},
+ fillPattern=FillPattern.Solid,
+ horizontalAlignment=TextAlignment.Right,
+ textString="enabling additional chiller"),
+ Text(
+ extent={{-30,-242},{22,-256}},
+ textColor={0,0,127},
+ fillColor={215,215,215},
+ fillPattern=FillPattern.Solid,
+ horizontalAlignment=TextAlignment.Right,
+ textString="disabling one chiller"),
+ Text(
+ extent={{-92,372},{10,356}},
+ textColor={0,0,127},
+ fillColor={215,215,215},
+ fillPattern=FillPattern.Solid,
+ horizontalAlignment=TextAlignment.Right,
+ textString="Minimum flow setpoint according to"),
+ Text(
+ extent={{-54,360},{10,346}},
+ textColor={0,0,127},
+ fillColor={215,215,215},
+ fillPattern=FillPattern.Solid,
+ horizontalAlignment=TextAlignment.Right,
+ textString="current chillers status"),
+ Text(
+ extent={{-88,302},{14,286}},
+ textColor={0,0,127},
+ fillColor={215,215,215},
+ fillPattern=FillPattern.Solid,
+ horizontalAlignment=TextAlignment.Right,
+ textString="Minimum flow setpoint according to"),
+ Text(
+ extent={{-66,290},{14,276}},
+ textColor={0,0,127},
+ fillColor={215,215,215},
+ fillPattern=FillPattern.Solid,
+ horizontalAlignment=TextAlignment.Right,
+ textString="chillers status at the moment"),
+ Text(
+ extent={{-62,280},{16,266}},
+ textColor={0,0,127},
+ fillColor={215,215,215},
+ fillPattern=FillPattern.Solid,
+ horizontalAlignment=TextAlignment.Right,
+ textString="when requiring stage change"),
+ Text(
+ extent={{-38,-96},{26,-110}},
+ textColor={0,0,127},
+ fillColor={215,215,215},
+ fillPattern=FillPattern.Solid,
+ horizontalAlignment=TextAlignment.Right,
+ textString="current chillers status")}),
+ Documentation(info="
+
+Block that outputs chilled water minimum flow setpoint for primary-only
+plants with a minimum flow bypass valve,
+according to ASHRAE RP-1711 Advanced Sequences of Operation for HVAC Systems Phase II –
+Central Plants and Hydronic Systems (Draft on March 23, 2020),
+section 5.2.8 Chilled water minimum flow bypass valve.
+
+
+1. For plants with parallel chillers, bypass valve shall modulate to maintain minimum
+flow as measured by the chilled water flow meter at a setpoint that ensures minimum
+flow through all operating chillers, as follows:
+
+
+-
+For the operating chillers in current stage, identify the chiller with the
+highest ratio of
minFloSet
to maxFloSet
.
+
+-
+Calculate the minimum flow setpoint as the highest ratio multiplied by the sum
+of
maxFloSet
for the operating chillers.
+
+
+
+
+ Chiller |
+ Minimum flow |
+ Maximum flow |
+
+
+1 |
+minFloSet [1] |
+maxFloSet [1] |
+
+
+2 |
+minFloSet [2] |
+maxFloSet [2] |
+
+
+... |
+... |
+... |
+
+
+
+
+
+2. For plants with series chillers, bypass valve shall modulate to maintain minimum
+flow as measured by the chilled water flow meter at a setpoint equal to the largest
+minFloSet
of the operating chillers in current stage.
+
+
+3. If there is any stage change requiring a chiller on and another chiller off,
+the minimum flow setpoint shall temporarily change to account for the
+minFloSet
of both the chiller to be enabled and to be disabled
+prior to starting the newly enabled chiller.
+
+
+Note that when there is a stage change requiring a change in the
+minimum flow setpoint, the change should be slowly.
+For example, this could be accomplished by resetting the setpoint X GPM/second,
+where X = (NewSetpoint - OldSetpoint) / byPasSetTim
.
+
+", revisions="
+
+-
+January 31, 2019, by Jianjun Hu:
+First implementation.
+
+
+"));
+end FlowSetpoint;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/MinimumFlowBypass/Validation/Controller.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/MinimumFlowBypass/Validation/Controller.mo
new file mode 100644
index 00000000000..6fe06bc50d6
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/MinimumFlowBypass/Validation/Controller.mo
@@ -0,0 +1,86 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.MinimumFlowBypass.Validation;
+model Controller "Validate control of minimum bypass valve"
+
+ parameter Integer nChi=3 "Total number of chillers";
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.MinimumFlowBypass.Controller
+ minBypValCon(final nChi=3, final minFloSet={0.005,0.005,0.005})
+ "Minimum bypass valve position"
+ annotation (Placement(transformation(extent={{40,-10},{60,10}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Pulse chiFloSet(
+ final amplitude=-0.005,
+ final period=3,
+ final offset=0.015) "Minimum flow setpoint"
+ annotation (Placement(transformation(extent={{-80,-82},{-60,-60}})));
+
+protected
+ Buildings.Controls.OBC.CDL.Logical.Sources.Pulse chiWatPum(
+ final width=0.15,
+ final period=4,
+ final shift=0.1) "Chilled water pump on command"
+ annotation (Placement(transformation(extent={{-80,50},{-60,70}})));
+ Buildings.Controls.OBC.CDL.Logical.Not not4 "Logical not"
+ annotation (Placement(transformation(extent={{-40,50},{-20,70}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Sine sin(
+ final amplitude=0.0025,
+ final freqHz=1/2,
+ final offset=0.005) "Output sine wave value"
+ annotation (Placement(transformation(extent={{-80,10},{-60,30}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Ramp ram(
+ final height=0.015,
+ final duration=2,
+ final startTime=1.2) "Output ramp value"
+ annotation (Placement(transformation(extent={{-80,-30},{-60,-10}})));
+ Buildings.Controls.OBC.CDL.Continuous.Add add2
+ "Measured minimum bypass flow rate"
+ annotation (Placement(transformation(extent={{-20,-10},{0,10}})));
+
+equation
+ connect(chiWatPum.y, not4.u)
+ annotation (Line(points={{-58,60},{-42,60}}, color={255,0,255}));
+ connect(not4.y, minBypValCon.uChiWatPum)
+ annotation (Line(points={{-18,60},{20,60},{20,8},{38,8}},
+ color={255,0,255}));
+ connect(sin.y, add2.u1)
+ annotation (Line(points={{-58,20},{-40,20},{-40,6},{-22,6}},
+ color={0,0,127}));
+ connect(ram.y, add2.u2)
+ annotation (Line(points={{-58,-20},{-40,-20},{-40,-6},{-22,-6}},
+ color={0,0,127}));
+ connect(add2.y, minBypValCon.VChiWat_flow)
+ annotation (Line(points={{2,0},{38,0}},
+ color={0,0,127}));
+ connect(chiFloSet.y, minBypValCon.VChiWatSet_flow)
+ annotation (Line(points={{-58,-71},{20,-71},{20,-8},{38,-8}}, color={0,0,127}));
+
+annotation (
+ experiment(StopTime=4.0, Tolerance=1e-06),
+ __Dymola_Commands(file="modelica://Buildings/Resources/Scripts/Dymola/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/MinimumFlowBypass/Validation/Controller.mos"
+ "Simulate and plot"),
+ Documentation(info="
+
+This example validates
+
+Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.MinimumFlowBypass.Controller.
+
+", revisions="
+
+-
+March 28, 2019, by Jianjun Hu:
+First implementation.
+
+
+"),
+Icon(coordinateSystem(preserveAspectRatio=false, extent={{-100,-100},{100,100}}),
+ graphics={
+ Ellipse(lineColor = {75,138,73},
+ fillColor={255,255,255},
+ fillPattern = FillPattern.Solid,
+ extent = {{-100,-100},{100,100}}),
+ Polygon(lineColor = {0,0,255},
+ fillColor = {75,138,73},
+ pattern = LinePattern.None,
+ fillPattern = FillPattern.Solid,
+ points = {{-36,60},{64,0},{-36,-60},{-36,60}})}),Diagram(
+ coordinateSystem(preserveAspectRatio=false, extent={{-100,-100},{100,100}})));
+end Controller;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/MinimumFlowBypass/Validation/FlowSetpoint.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/MinimumFlowBypass/Validation/FlowSetpoint.mo
new file mode 100644
index 00000000000..860bfdfeb76
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/MinimumFlowBypass/Validation/FlowSetpoint.mo
@@ -0,0 +1,219 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.MinimumFlowBypass.Validation;
+model FlowSetpoint
+ "Validation sequence of specifying minimum bypass flow setpoint"
+
+ parameter Integer nChi=3 "Total number of chillers";
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.MinimumFlowBypass.FlowSetpoint
+ staUpMinFlo(
+ final nChi=nChi,
+ final byPasSetTim=1.5)
+ "Minimum flow setpoint when there is stage up command"
+ annotation (Placement(transformation(extent={{120,170},{140,190}})));
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.MinimumFlowBypass.FlowSetpoint
+ onOffStaUpMinFlo(
+ final nChi=nChi,
+ final byPasSetTim=1.5)
+ "Minimum flow setpoint when there is stage up command and the change requires one chiller off and another chiller on"
+ annotation (Placement(transformation(extent={{120,-10},{140,10}})));
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.MinimumFlowBypass.FlowSetpoint
+ staDowMinFlo(
+ final nChi=nChi,
+ final byPasSetTim=1.5)
+ "Minimum flow setpoint when there is stage down command"
+ annotation (Placement(transformation(extent={{120,-170},{140,-150}})));
+
+protected
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant noOnOff(
+ final k=false)
+ "No chiller on/off during the stage change"
+ annotation (Placement(transformation(extent={{-140,50},{-120,70}})));
+ Buildings.Controls.OBC.CDL.Logical.Sources.Pulse staCha(
+ final width=0.25,
+ final period=4) "Stage up command"
+ annotation (Placement(transformation(extent={{-140,190},{-120,210}})));
+ Buildings.Controls.OBC.CDL.Logical.Sources.Pulse upDev(
+ final width=0.3,
+ final period=4)
+ "Status of upflow device"
+ annotation (Placement(transformation(extent={{-140,160},{-120,180}})));
+ Buildings.Controls.OBC.CDL.Continuous.Switch enaChi "Next enabling chiller"
+ annotation (Placement(transformation(extent={{-40,90},{-20,110}})));
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant noStaCha(
+ final k=false) "No stage change"
+ annotation (Placement(transformation(extent={{-140,10},{-120,30}})));
+ Buildings.Controls.OBC.CDL.Logical.Not not1 "Logical not"
+ annotation (Placement(transformation(extent={{-100,190},{-80,210}})));
+ Buildings.Controls.OBC.CDL.Logical.Not not2 "Logical not"
+ annotation (Placement(transformation(extent={{-100,160},{-80,180}})));
+ Buildings.Controls.OBC.CDL.Continuous.Switch disChi "Disabling chiller"
+ annotation (Placement(transformation(extent={{-40,-130},{-20,-110}})));
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant haveOnOff(
+ final k=true)
+ "Have chiller on/off during the stage change"
+ annotation (Placement(transformation(extent={{-140,-70},{-120,-50}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Pulse enaNexChi(
+ final width=0.8,
+ final period=4)
+ "Enable next chiller"
+ annotation (Placement(transformation(extent={{-140,-30},{-120,-10}})));
+ Buildings.Controls.OBC.CDL.Logical.Not not3 "Logical not"
+ annotation (Placement(transformation(extent={{-100,-30},{-80,-10}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant con(
+ final k=3) "Index of enabling chiller"
+ annotation (Placement(transformation(extent={{-140,110},{-120,130}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant zer(
+ final k=0) "Zero"
+ annotation (Placement(transformation(extent={{-140,-190},{-120,-170}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant con1(
+ final k=2) "Index of disabling chiller"
+ annotation (Placement(transformation(extent={{-140,-110},{-120,-90}})));
+ Buildings.Controls.OBC.CDL.Conversions.RealToInteger reaToInt
+ "Convert real input to integer output"
+ annotation (Placement(transformation(extent={{0,90},{20,110}})));
+ Buildings.Controls.OBC.CDL.Conversions.RealToInteger reaToInt1
+ "Convert real input to integer output"
+ annotation (Placement(transformation(extent={{0,-130},{20,-110}})));
+ Buildings.Controls.OBC.CDL.Conversions.RealToInteger reaToInt2
+ "Convert real input to integer output"
+ annotation (Placement(transformation(extent={{0,-190},{20,-170}})));
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant chiSta[nChi](
+ final k={true,true,false})
+ "Current chiller status"
+ annotation (Placement(transformation(extent={{-40,130},{-20,150}})));
+
+equation
+ connect(noOnOff.y, staUpMinFlo.uOnOff)
+ annotation (Line(points={{-118,60},{76,60},{76,173},{118,173}},
+ color={255,0,255}));
+ connect(noStaCha.y, staUpMinFlo.uStaDow)
+ annotation (Line(points={{-118,20},{92,20},{92,171},{118,171}},
+ color={255,0,255}));
+ connect(staCha.y, not1.u)
+ annotation (Line(points={{-118,200},{-102,200}}, color={255,0,255}));
+ connect(upDev.y, not2.u)
+ annotation (Line(points={{-118,170},{-102,170}}, color={255,0,255}));
+ connect(not1.y,enaChi. u2)
+ annotation (Line(points={{-78,200},{-60,200},{-60,100},{-42,100}},
+ color={255,0,255}));
+ connect(not1.y, staUpMinFlo.uStaUp)
+ annotation (Line(points={{-78,200},{68,200},{68,189},{118,189}},
+ color={255,0,255}));
+ connect(not2.y, staUpMinFlo.uUpsDevSta)
+ annotation (Line(points={{-78,170},{72,170},{72,187},{118,187}},
+ color={255,0,255}));
+ connect(not1.y, disChi.u2)
+ annotation (Line(points={{-78,200},{-60,200},{-60,-120},{-42,-120}},
+ color={255,0,255}));
+ connect(noOnOff.y, staDowMinFlo.uOnOff)
+ annotation (Line(points={{-118,60},{76,60},{76,-167},{118,-167}},
+ color={255,0,255}));
+ connect(noStaCha.y, staDowMinFlo.uStaUp)
+ annotation (Line(points={{-118,20},{92,20},{92,-151},{118,-151}},
+ color={255,0,255}));
+ connect(not2.y, staDowMinFlo.uUpsDevSta)
+ annotation (Line(points={{-78,170},{72,170},{72,-153},{118,-153}},
+ color={255,0,255}));
+ connect(not1.y, staDowMinFlo.uStaDow)
+ annotation (Line(points={{-78,200},{68,200},{68,-169},{118,-169}},
+ color={255,0,255}));
+ connect(not1.y, onOffStaUpMinFlo.uStaUp)
+ annotation (Line(points={{-78,200},{68,200},{68,9},{118,9}},
+ color={255,0,255}));
+ connect(not2.y, onOffStaUpMinFlo.uUpsDevSta)
+ annotation (Line(points={{-78,170},{72,170},{72,7},{118,7}},
+ color={255,0,255}));
+ connect(haveOnOff.y, onOffStaUpMinFlo.uOnOff)
+ annotation (Line(points={{-118,-60},{40,-60},{40,-7},{118,-7}},
+ color={255,0,255}));
+ connect(noStaCha.y, onOffStaUpMinFlo.uStaDow)
+ annotation (Line(points={{-118,20},{0,20},{0,-9},{118,-9}},
+ color={255,0,255}));
+ connect(con.y, enaChi.u1)
+ annotation (Line(points={{-118,120},{-100,120},{-100,108},{-42,108}},
+ color={0,0,127}));
+ connect(con1.y, disChi.u1)
+ annotation (Line(points={{-118,-100},{-100,-100},{-100,-112},{-42,-112}},
+ color={0,0,127}));
+ connect(zer.y, enaChi.u3)
+ annotation (Line(points={{-118,-180},{-64,-180},{-64,92},{-42,92}},
+ color={0,0,127}));
+ connect(zer.y, disChi.u3)
+ annotation (Line(points={{-118,-180},{-64,-180},{-64,-128},{-42,-128}},
+ color={0,0,127}));
+ connect(enaChi.y, reaToInt.u)
+ annotation (Line(points={{-18,100},{-2,100}}, color={0,0,127}));
+ connect(disChi.y, reaToInt1.u)
+ annotation (Line(points={{-18,-120},{-2,-120}}, color={0,0,127}));
+ connect(zer.y, reaToInt2.u)
+ annotation (Line(points={{-118,-180},{-60,-180},{-60,-180},{-2,-180}},
+ color={0,0,127}));
+ connect(chiSta.y, staUpMinFlo.uChi)
+ annotation (Line(points={{-18,140},{80,140},{80,184},{118,184}},
+ color={255,0,255}));
+ connect(chiSta.y, onOffStaUpMinFlo.uChi)
+ annotation (Line(points={{-18,140},{80,140},{80,4},{118,4}},
+ color={255,0,255}));
+ connect(chiSta.y, staDowMinFlo.uChi)
+ annotation (Line(points={{-18,140},{80,140},{80,-156},{118,-156}},
+ color={255,0,255}));
+ connect(reaToInt.y, staUpMinFlo.nexEnaChi)
+ annotation (Line(points={{22,100},{88,100},{88,181},{118,181}},
+ color={255,127,0}));
+ connect(reaToInt2.y, staUpMinFlo.nexDisChi)
+ annotation (Line(points={{22,-180},{84,-180},{84,179},{118,179}},
+ color={255,127,0}));
+ connect(reaToInt2.y, staDowMinFlo.nexEnaChi)
+ annotation (Line(points={{22,-180},{84,-180},{84,-159},{118,-159}},
+ color={255,127,0}));
+ connect(reaToInt1.y, staDowMinFlo.nexDisChi)
+ annotation (Line(points={{22,-120},{88,-120},{88,-161},{118,-161}},
+ color={255,127,0}));
+ connect(reaToInt.y, onOffStaUpMinFlo.nexEnaChi)
+ annotation (Line(points={{22,100},{88,100},{88,1},{118,1}},
+ color={255,127,0}));
+ connect(reaToInt1.y, onOffStaUpMinFlo.nexDisChi)
+ annotation (Line(points={{22,-120},{88,-120},{88,-1},{118,-1}},
+ color={255,127,0}));
+ connect(enaNexChi.y, not3.u)
+ annotation (Line(points={{-118,-20},{-102,-20}}, color={255,0,255}));
+ connect(noOnOff.y, staUpMinFlo.uSubCha) annotation (Line(points={{-118,60},{
+ 76,60},{76,176},{118,176}}, color={255,0,255}));
+ connect(noOnOff.y, staDowMinFlo.uSubCha) annotation (Line(points={{-118,60},{
+ 76,60},{76,-164},{118,-164}}, color={255,0,255}));
+ connect(not3.y, onOffStaUpMinFlo.uSubCha) annotation (Line(points={{-78,-20},
+ {20,-20},{20,-4},{118,-4}}, color={255,0,255}));
+
+annotation (
+ experiment(StopTime=4.0, Tolerance=1e-06),
+ __Dymola_Commands(file="modelica://Buildings/Resources/Scripts/Dymola/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/MinimumFlowBypass/Validation/FlowSetpoint.mos"
+ "Simulate and plot"),
+ Documentation(info="
+
+This example validates
+
+Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.MinimumFlowBypass.FlowSetpoint.
+
+", revisions="
+
+-
+March 28, 2019, by Jianjun Hu:
+First implementation.
+
+
+"),
+Icon(coordinateSystem(preserveAspectRatio=false, extent={{-100,
+ -100},{100,100}}), graphics={
+ Ellipse(lineColor = {75,138,73},
+ fillColor={255,255,255},
+ fillPattern = FillPattern.Solid,
+ extent = {{-100,-100},{100,100}}),
+ Polygon(lineColor = {0,0,255},
+ fillColor = {75,138,73},
+ pattern = LinePattern.None,
+ fillPattern = FillPattern.Solid,
+ points = {{-36,60},{64,0},{-36,-60},{-36,60}})}), Diagram(
+ coordinateSystem(preserveAspectRatio=false, extent={{-160,-220},{160,
+ 220}})));
+end FlowSetpoint;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/MinimumFlowBypass/Validation/package.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/MinimumFlowBypass/Validation/package.mo
new file mode 100644
index 00000000000..fdc1f0fd350
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/MinimumFlowBypass/Validation/package.mo
@@ -0,0 +1,29 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.MinimumFlowBypass;
+package Validation "Collection of validation models"
+
+annotation (preferredView="info", Documentation(info="
+
+This package contains validation models for the classes in
+
+Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.MinimumFlowBypass.
+
+"),
+Icon(graphics={
+ Rectangle(
+ lineColor={200,200,200},
+ fillColor={248,248,248},
+ fillPattern=FillPattern.HorizontalCylinder,
+ extent={{-100.0,-100.0},{100.0,100.0}},
+ radius=25.0),
+ Rectangle(
+ lineColor={128,128,128},
+ extent={{-100.0,-100.0},{100.0,100.0}},
+ radius=25.0),
+ Polygon(
+ origin={8.0,14.0},
+ lineColor={78,138,73},
+ fillColor={78,138,73},
+ pattern=LinePattern.None,
+ fillPattern=FillPattern.Solid,
+ points={{-58.0,46.0},{42.0,-14.0},{-58.0,-74.0},{-58.0,46.0}})}));
+end Validation;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/MinimumFlowBypass/Validation/package.order b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/MinimumFlowBypass/Validation/package.order
new file mode 100644
index 00000000000..963d7cb2bbf
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/MinimumFlowBypass/Validation/package.order
@@ -0,0 +1,2 @@
+Controller
+FlowSetpoint
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/MinimumFlowBypass/package.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/MinimumFlowBypass/package.mo
new file mode 100644
index 00000000000..5e671766e9a
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/MinimumFlowBypass/package.mo
@@ -0,0 +1,46 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant;
+package MinimumFlowBypass "Sequences for controlling chilled water minimum flow bypass valve"
+
+annotation (preferredView="info", Documentation(info="
+
+This package contains chilled water minimum flow bypass valve control sequences.
+The implementation is based on section 5.2.8. in ASHRAE RP-1711 Advanced Sequences
+of Operation for HVAC Systems Phase II –
+Central Plants and Hydronic Systems (draft version on March 23, 2020).
+
+"),
+Icon(graphics={
+ Rectangle(
+ lineColor={200,200,200},
+ fillColor={248,248,248},
+ fillPattern=FillPattern.HorizontalCylinder,
+ extent={{-100.0,-100.0},{100.0,100.0}},
+ radius=25.0),
+ Rectangle(
+ lineColor={128,128,128},
+ extent={{-100.0,-100.0},{100.0,100.0}},
+ radius=25.0),
+ Ellipse(
+ origin={10.0,10.0},
+ fillColor={76,76,76},
+ pattern=LinePattern.None,
+ fillPattern=FillPattern.Solid,
+ extent={{-80.0,-80.0},{-20.0,-20.0}}),
+ Ellipse(
+ origin={10.0,10.0},
+ pattern=LinePattern.None,
+ fillPattern=FillPattern.Solid,
+ extent={{0.0,-80.0},{60.0,-20.0}}),
+ Ellipse(
+ origin={10.0,10.0},
+ fillColor={128,128,128},
+ pattern=LinePattern.None,
+ fillPattern=FillPattern.Solid,
+ extent={{0.0,0.0},{60.0,60.0}}),
+ Ellipse(
+ origin={10.0,10.0},
+ lineColor={128,128,128},
+ fillColor={255,255,255},
+ fillPattern=FillPattern.Solid,
+ extent={{-80.0,0.0},{-20.0,60.0}})}));
+end MinimumFlowBypass;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/MinimumFlowBypass/package.order b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/MinimumFlowBypass/package.order
new file mode 100644
index 00000000000..f9fe0732435
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/MinimumFlowBypass/package.order
@@ -0,0 +1,3 @@
+Controller
+FlowSetpoint
+Validation
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Pumps/ChilledWater/Controller.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Pumps/ChilledWater/Controller.mo
new file mode 100644
index 00000000000..1f93427dbd3
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Pumps/ChilledWater/Controller.mo
@@ -0,0 +1,627 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Pumps.ChilledWater;
+block Controller
+ "Sequences to control chilled water pumps in primary-only plant system"
+
+ parameter Boolean have_heaPum = true
+ "Flag of headered chilled water pumps design: true=headered, false=dedicated";
+ parameter Boolean have_locSen = false
+ "Flag of local DP sensor: true=local DP sensor hardwired to controller";
+ parameter Integer nPum = 2
+ "Total number of chilled water pumps";
+ parameter Integer nChi = 2
+ "Total number of chillers";
+ parameter Integer nSen=2
+ "Total number of remote differential pressure sensors";
+ parameter Real minPumSpe=0.1 "Minimum pump speed";
+ parameter Real maxPumSpe=1 "Maximum pump speed";
+ parameter Integer nPum_nominal(
+ final max=nPum,
+ final min=1)=nPum
+ "Total number of pumps that operate at design conditions"
+ annotation (Dialog(group="Nominal conditions"));
+ parameter Real VChiWat_flow_nominal(
+ final unit="m3/s",
+ final quantity="VolumeFlowRate",
+ final min=1e-6)=0.5
+ "Total plant design chilled water flow rate"
+ annotation (Dialog(group="Nominal conditions"));
+ parameter Real maxLocDp(
+ final unit="Pa",
+ final quantity="PressureDifference")=15*6894.75
+ "Maximum chilled water loop local differential pressure setpoint"
+ annotation (Dialog(group="Pump speed control when there is local DP sensor", enable=have_locSen));
+ parameter Buildings.Controls.OBC.CDL.Types.SimpleController controllerType=
+ Buildings.Controls.OBC.CDL.Types.SimpleController.PI
+ "Type of controller"
+ annotation (Dialog(group="Speed controller"));
+ parameter Real k=1 "Gain of controller"
+ annotation (Dialog(group="Speed controller"));
+ parameter Real Ti(
+ final unit="s",
+ final quantity="Time",
+ displayUnit="s")=0.5 "Time constant of integrator block"
+ annotation (Dialog(group="Speed controller"));
+ parameter Real Td(
+ final unit="s",
+ final quantity="Time",
+ displayUnit="s")=0.1 "Time constant of derivative block"
+ annotation (Dialog(group="Speed controller",
+ enable=
+ controllerType == Buildings.Controls.OBC.CDL.Types.SimpleController.PD or
+ controllerType == Buildings.Controls.OBC.CDL.Types.SimpleController.PID));
+
+ Buildings.Controls.OBC.CDL.Interfaces.IntegerInput uPumLeaLag[nPum] if have_heaPum
+ "Index of chilled water pumps in lead-lag order: lead pump, first lag pump, second lag pump, etc."
+ annotation (Placement(transformation(extent={{-320,210},{-280,250}}),
+ iconTransformation(extent={{-140,90},{-100,130}})));
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uPla if not have_heaPum
+ "True: plant is enabled"
+ annotation (Placement(transformation(extent={{-320,160},{-280,200}}),
+ iconTransformation(extent={{-140,70},{-100,110}})));
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uChiWatPum[nPum]
+ "Chilled water pumps proven on status"
+ annotation (Placement(transformation(extent={{-320,120},{-280,160}}),
+ iconTransformation(extent={{-140,50},{-100,90}})));
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uLeaChiEna if not have_heaPum
+ "Lead chiller enabling status"
+ annotation (Placement(transformation(extent={{-320,90},{-280,130}}),
+ iconTransformation(extent={{-140,30},{-100,70}})));
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uLeaChiSta if not have_heaPum
+ "Lead chiller proven on status"
+ annotation (Placement(transformation(extent={{-320,60},{-280,100}}),
+ iconTransformation(extent={{-140,10},{-100,50}})));
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uLeaChiWatReq if not have_heaPum
+ "Status indicating if lead chiller is requesting chilled water"
+ annotation (Placement(transformation(extent={{-320,30},{-280,70}}),
+ iconTransformation(extent={{-140,-10},{-100,30}})));
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uChiIsoVal[nChi] if have_heaPum
+ "Chilled water isolation valve status"
+ annotation (Placement(transformation(extent={{-320,0},{-280,40}}),
+ iconTransformation(extent={{-140,-30},{-100,10}})));
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uEnaPla if have_heaPum
+ "True: plant is just enabled"
+ annotation(Placement(transformation(extent={{-320,-30},{-280,10}}),
+ iconTransformation(extent={{-140,-50},{-100,-10}})));
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput VChiWat_flow(
+ final unit="m3/s") if have_heaPum
+ "Chilled water flow"
+ annotation (Placement(transformation(extent={{-320,-70},{-280,-30}}),
+ iconTransformation(extent={{-140,-70},{-100,-30}})));
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput dpChiWat_local(
+ final unit="Pa",
+ final quantity="PressureDifference") if have_locSen
+ "Chilled water differential static pressure from local sensor"
+ annotation (Placement(transformation(extent={{-320,-180},{-280,-140}}),
+ iconTransformation(extent={{-140,-90},{-100,-50}})));
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput dpChiWat_remote[nSen](
+ final unit=fill("Pa", nSen),
+ final quantity=fill("PressureDifference", nSen))
+ "Chilled water differential static pressure from remote sensor"
+ annotation (Placement(transformation(extent={{-320,-220},{-280,-180}}),
+ iconTransformation(extent={{-140,-110},{-100,-70}})));
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput dpChiWatSet_remote[nSen](
+ final unit=fill("Pa", nSen),
+ final quantity=fill("PressureDifference",nSen))
+ "Chilled water differential static pressure setpoint"
+ annotation (Placement(transformation(extent={{-320,-260},{-280,-220}}),
+ iconTransformation(extent={{-140,-130},{-100,-90}})));
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanOutput yLea
+ "Lead pump status setpoint"
+ annotation (Placement(transformation(extent={{280,50},{320,90}}),
+ iconTransformation(extent={{100,60},{140,100}})));
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanOutput yChiWatPum[nPum]
+ if have_heaPum
+ "Chilled water pump status setpoint"
+ annotation (Placement(transformation(extent={{280,-20},{320,20}}),
+ iconTransformation(extent={{100,-20},{140,20}})));
+ Buildings.Controls.OBC.CDL.Interfaces.RealOutput yPumSpe(
+ final min=0,
+ final max=1,
+ final unit="1") "Enabled chilled water pump speed"
+ annotation (Placement(transformation(extent={{280,-220},{320,-180}}),
+ iconTransformation(extent={{100,-80},{140,-40}})));
+ Buildings.Controls.OBC.CDL.Interfaces.RealOutput dpChiWatPumSet_local(
+ final quantity="PressureDifference",
+ final unit="Pa",
+ displayUnit="Pa") if have_locSen
+ "Local differential pressure setpoint"
+ annotation (Placement(transformation(extent={{280,-260},{320,-220}}),
+ iconTransformation(extent={{100,-110},{140,-70}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Pumps.ChilledWater.Subsequences.EnableLead_dedicated
+ enaDedLeaPum if not have_heaPum
+ "Enable lead pump of dedicated pumps"
+ annotation (Placement(transformation(extent={{-200,100},{-180,120}})));
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Pumps.ChilledWater.Subsequences.EnableLead_headered
+ enaHeaLeaPum(final nChi=nChi) if have_heaPum
+ "Enable lead pump of headered pumps"
+ annotation (Placement(transformation(extent={{-200,60},{-180,80}})));
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Pumps.ChilledWater.Subsequences.EnableLag_primary_dP
+ enaLagChiPum(
+ final nPum=nPum,
+ final nPum_nominal=nPum_nominal,
+ final VChiWat_flow_nominal=VChiWat_flow_nominal) if have_heaPum
+ "Enable lag pump for primary-only plants using differential pressure pump speed control"
+ annotation (Placement(transformation(extent={{-240,-10},{-220,10}})));
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Pumps.ChilledWater.Subsequences.Speed_primary_localDp
+ pumSpeLocDp(
+ final nSen=nSen,
+ final nPum=nPum,
+ final minLocDp=minLocDp,
+ final maxLocDp=maxLocDp,
+ final minPumSpe=minPumSpe,
+ final maxPumSpe=maxPumSpe,
+ final controllerType=controllerType,
+ final k=k,
+ final Ti=Ti,
+ final Td=Td) if have_locSen
+ "Chilled water pump speed control with local DP sensor"
+ annotation (Placement(transformation(extent={{-60,-210},{-40,-190}})));
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Pumps.ChilledWater.Subsequences.Speed_primary_remoteDp
+ pumSpeRemDp(
+ final nSen=nSen,
+ final nPum=nPum,
+ final minPumSpe=minPumSpe,
+ final maxPumSpe=maxPumSpe,
+ final controllerType=controllerType,
+ final k=k,
+ final Ti=Ti,
+ final Td=Td) if not have_locSen
+ "Chilled water pump speed control with remote DP sensor"
+ annotation (Placement(transformation(extent={{-60,-250},{-40,-230}})));
+
+protected
+ final parameter Real minLocDp(
+ final unit="Pa",
+ final quantity="PressureDifference")=5*6894.75
+ "Minimum chilled water loop local differential pressure setpoint"
+ annotation (Dialog(group="Pump speed control when there is local DP sensor", enable=have_locSen));
+ final parameter Integer pumInd[nPum]={i for i in 1:nPum}
+ "Pump index, {1,2,...,n}";
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant conInt(
+ final k=1) if have_heaPum
+ "Constant one"
+ annotation (Placement(transformation(extent={{-220,190},{-200,210}})));
+ Buildings.Controls.OBC.CDL.Routing.IntegerScalarReplicator intRep(
+ final nout=nPum) if have_heaPum
+ "Replicate integer input"
+ annotation (Placement(transformation(extent={{0,220},{20,240}})));
+ Buildings.Controls.OBC.CDL.Routing.BooleanScalarReplicator booRep(
+ final nout=nPum) if have_heaPum
+ "Replicate boolean input"
+ annotation (Placement(transformation(extent={{0,100},{20,120}})));
+ Buildings.Controls.OBC.CDL.Routing.IntegerScalarReplicator intRep1(
+ final nout=nPum) if have_heaPum
+ "Replicate integer input"
+ annotation (Placement(transformation(extent={{0,-60},{20,-40}})));
+ Buildings.Controls.OBC.CDL.Routing.BooleanScalarReplicator booRep1(
+ final nout=nPum) if have_heaPum
+ "Replicate boolean input"
+ annotation (Placement(transformation(extent={{60,20},{80,40}})));
+ Buildings.Controls.OBC.CDL.Routing.IntegerScalarReplicator intRep2(
+ final nout=nPum) if have_heaPum
+ "Replicate integer input"
+ annotation (Placement(transformation(extent={{0,-110},{20,-90}})));
+ Buildings.Controls.OBC.CDL.Routing.BooleanScalarReplicator booRep2(
+ final nout=nPum) if have_heaPum
+ "Replicate boolean input"
+ annotation (Placement(transformation(extent={{60,-10},{80,10}})));
+ Buildings.Controls.OBC.CDL.Conversions.IntegerToReal intToRea[nPum]
+ if have_heaPum
+ "Convert integer to real number"
+ annotation (Placement(transformation(extent={{-220,220},{-200,240}})));
+ Buildings.Controls.OBC.CDL.Routing.RealExtractor leaPum(
+ final nin=nPum) if have_heaPum
+ "Lead pump index"
+ annotation (Placement(transformation(extent={{-80,220},{-60,240}})));
+ Buildings.Controls.OBC.CDL.Conversions.RealToInteger reaToInt if have_heaPum
+ "Convert real input to integer output"
+ annotation (Placement(transformation(extent={{-40,220},{-20,240}})));
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant pumIndCon[nPum](
+ final k=pumInd) if have_heaPum
+ "Pump index array"
+ annotation (Placement(transformation(extent={{-220,160},{-200,180}})));
+ Buildings.Controls.OBC.CDL.Integers.Equal intEqu1[nPum] if have_heaPum
+ "Check lead pump"
+ annotation (Placement(transformation(extent={{60,180},{80,200}})));
+ Buildings.Controls.OBC.CDL.Routing.RealExtractor nexLagPum(
+ final nin=nPum) if have_heaPum
+ "Next lag pump"
+ annotation (Placement(transformation(extent={{-80,-60},{-60,-40}})));
+ Buildings.Controls.OBC.CDL.Conversions.RealToInteger reaToInt1 if have_heaPum
+ "Convert real input to integer output"
+ annotation (Placement(transformation(extent={{-40,-60},{-20,-40}})));
+ Buildings.Controls.OBC.CDL.Integers.Equal intEqu2[nPum] if have_heaPum
+ "Check next lag pump"
+ annotation (Placement(transformation(extent={{60,-40},{80,-20}})));
+ Buildings.Controls.OBC.CDL.Routing.RealExtractor lasLagPum(
+ final nin=nPum) if have_heaPum
+ "Last lag pump"
+ annotation (Placement(transformation(extent={{-80,-110},{-60,-90}})));
+ Buildings.Controls.OBC.CDL.Conversions.RealToInteger reaToInt2 if have_heaPum
+ "Convert real input to integer output"
+ annotation (Placement(transformation(extent={{-40,-110},{-20,-90}})));
+ Buildings.Controls.OBC.CDL.Integers.Equal intEqu3[nPum] if have_heaPum
+ "Check next lag pump"
+ annotation (Placement(transformation(extent={{60,-100},{80,-80}})));
+ Buildings.Controls.OBC.CDL.Conversions.BooleanToInteger booToInt[nPum]
+ if have_heaPum
+ "Convert boolean to integer"
+ annotation (Placement(transformation(extent={{-240,-130},{-220,-110}})));
+ Buildings.Controls.OBC.CDL.Integers.MultiSum mulSumInt(
+ final nin=nPum) if have_heaPum
+ "Sum of integer inputs"
+ annotation (Placement(transformation(extent={{-180,-130},{-160,-110}})));
+ Buildings.Controls.OBC.CDL.Integers.Add addInt if have_heaPum
+ "Integer add"
+ annotation (Placement(transformation(extent={{-140,-80},{-120,-60}})));
+ Buildings.Controls.OBC.CDL.Integers.Equal intEqu4[nPum] if have_heaPum
+ "Check if all the pumps have achieved the setpoint status"
+ annotation (Placement(transformation(extent={{-200,-80},{-180,-60}})));
+ Buildings.Controls.OBC.CDL.Conversions.BooleanToInteger booToInt1[nPum] if have_heaPum
+ "Convert boolean to integer"
+ annotation (Placement(transformation(extent={{-240,-80},{-220,-60}})));
+ Buildings.Controls.OBC.CDL.Logical.Edge edg1 if have_heaPum
+ "Rising edge"
+ annotation (Placement(transformation(extent={{-100,-30},{-80,-10}})));
+ Buildings.Controls.OBC.CDL.Logical.Pre pre1[nPum] if have_heaPum
+ "Breaks algebraic loops"
+ annotation (Placement(transformation(extent={{220,-130},{240,-110}})));
+ Buildings.Controls.OBC.CDL.Logical.Switch leaPumSta[nPum]
+ if have_heaPum
+ "Lead pump status"
+ annotation (Placement(transformation(extent={{120,180},{140,200}})));
+ Buildings.Controls.OBC.CDL.Logical.Switch nexLagPumSta[nPum]
+ if have_heaPum
+ "Next lag pump status"
+ annotation (Placement(transformation(extent={{120,-40},{140,-20}})));
+ Buildings.Controls.OBC.CDL.Logical.Switch lasLagPumSta[nPum]
+ if have_heaPum
+ "Last lag pump status"
+ annotation (Placement(transformation(extent={{120,-100},{140,-80}})));
+ Buildings.Controls.OBC.CDL.Logical.Or enaPum[nPum] if have_heaPum
+ "Chilled water pump status"
+ annotation (Placement(transformation(extent={{180,-40},{200,-20}})));
+ Buildings.Controls.OBC.CDL.Logical.And pumSta[nPum] if have_heaPum
+ "Chilled water pump status"
+ annotation (Placement(transformation(extent={{180,-100},{200,-80}})));
+ Buildings.Controls.OBC.CDL.Logical.Switch addPum[nPum] if have_heaPum
+ "Add pump"
+ annotation (Placement(transformation(extent={{240,-10},{260,10}})));
+ Buildings.Controls.OBC.CDL.Logical.Switch remPum[nPum] if have_heaPum
+ "Remove pump"
+ annotation (Placement(transformation(extent={{220,-80},{240,-60}})));
+ Buildings.Controls.OBC.CDL.Logical.MultiAnd mulAnd(
+ final nin=nPum) if have_heaPum
+ "Check if all the pumps have achieved the setpoint status"
+ annotation (Placement(transformation(extent={{-140,-30},{-120,-10}})));
+ Buildings.Controls.OBC.CDL.Logical.Latch enaNexLag if have_heaPum
+ "Hold the enabling signal till the pump is proven on"
+ annotation (Placement(transformation(extent={{0,20},{20,40}})));
+ Buildings.Controls.OBC.CDL.Logical.Not not1 if have_heaPum
+ "Logical not"
+ annotation (Placement(transformation(extent={{-200,-10},{-180,10}})));
+ Buildings.Controls.OBC.CDL.Logical.Latch disLasLag if have_heaPum
+ "Hold the disabling signal till the pump is proven off"
+ annotation (Placement(transformation(extent={{-40,-10},{-20,10}})));
+ Buildings.Controls.OBC.CDL.Logical.Not not2 if have_heaPum
+ "Logical not"
+ annotation (Placement(transformation(extent={{0,-10},{20,10}})));
+
+equation
+ connect(enaDedLeaPum.uLeaChiEna, uLeaChiEna)
+ annotation (Line(points={{-202,113},{-240,113},{-240,110},{-300,110}},
+ color={255,0,255}));
+ connect(enaDedLeaPum.uLeaChiSta, uLeaChiSta)
+ annotation (Line(points={{-202,107},{-240,107},{-240,80},{-300,80}},
+ color={255,0,255}));
+ connect(enaDedLeaPum.uLeaChiWatReq, uLeaChiWatReq)
+ annotation (Line(points={{-202,102},{-230,102},{-230,50},{-300,50}},
+ color={255,0,255}));
+ connect(enaHeaLeaPum.uChiIsoVal, uChiIsoVal)
+ annotation (Line(points={{-202,70},{-220,70},{-220,20},{-300,20}},
+ color={255,0,255}));
+ connect(uPumLeaLag, intToRea.u)
+ annotation (Line(points={{-300,230},{-222,230}}, color={255,127,0}));
+ connect(intToRea.y, leaPum.u)
+ annotation (Line(points={{-198,230},{-82,230}}, color={0,0,127}));
+ connect(conInt.y, leaPum.index)
+ annotation (Line(points={{-198,200},{-70,200},{-70,218}}, color={255,127,0}));
+ connect(leaPum.y, reaToInt.u)
+ annotation (Line(points={{-58,230},{-42,230}},color={0,0,127}));
+ connect(reaToInt.y, intRep.u)
+ annotation (Line(points={{-18,230},{-2,230}}, color={255,127,0}));
+ connect(intRep.y, intEqu1.u1)
+ annotation (Line(points={{22,230},{30,230},{30,190},{58,190}}, color={255,127,0}));
+ connect(pumIndCon.y, intEqu1.u2)
+ annotation (Line(points={{-198,170},{40,170},{40,182},{58,182}},
+ color={255,127,0}));
+ connect(intEqu1.y, leaPumSta.u2)
+ annotation (Line(points={{82,190},{118,190}}, color={255,0,255}));
+ connect(uChiWatPum, leaPumSta.u3)
+ annotation (Line(points={{-300,140},{100,140},{100,182},{118,182}},
+ color={255,0,255}));
+ connect(booRep.y, leaPumSta.u1)
+ annotation (Line(points={{22,110},{90,110},{90,198},{118,198}},
+ color={255,0,255}));
+ connect(intToRea.y, nexLagPum.u)
+ annotation (Line(points={{-198,230},{-160,230},{-160,-50},{-82,-50}},
+ color={0,0,127}));
+ connect(nexLagPum.y, reaToInt1.u)
+ annotation (Line(points={{-58,-50},{-42,-50}}, color={0,0,127}));
+ connect(reaToInt1.y, intRep1.u)
+ annotation (Line(points={{-18,-50},{-2,-50}}, color={255,127,0}));
+ connect(intRep1.y, intEqu2.u2)
+ annotation (Line(points={{22,-50},{30,-50},{30,-38},{58,-38}}, color={255,127,0}));
+ connect(pumIndCon.y, intEqu2.u1)
+ annotation (Line(points={{-198,170},{40,170},{40,-30},{58,-30}},
+ color={255,127,0}));
+ connect(intEqu2.y, nexLagPumSta.u2)
+ annotation (Line(points={{82,-30},{118,-30}}, color={255,0,255}));
+ connect(booRep1.y, nexLagPumSta.u1)
+ annotation (Line(points={{82,30},{110,30},{110,-22},{118,-22}},
+ color={255,0,255}));
+ connect(uChiWatPum, nexLagPumSta.u3)
+ annotation (Line(points={{-300,140},{100,140},{100,-38},{118,-38}},
+ color={255,0,255}));
+ connect(lasLagPum.y, reaToInt2.u)
+ annotation (Line(points={{-58,-100},{-42,-100}}, color={0,0,127}));
+ connect(reaToInt2.y, intRep2.u)
+ annotation (Line(points={{-18,-100},{-2,-100}}, color={255,127,0}));
+ connect(intRep2.y, intEqu3.u2)
+ annotation (Line(points={{22,-100},{30,-100},{30,-98},{58,-98}},
+ color={255,127,0}));
+ connect(pumIndCon.y, intEqu3.u1)
+ annotation (Line(points={{-198,170},{40,170},{40,-90},{58,-90}},
+ color={255,127,0}));
+ connect(intEqu3.y, lasLagPumSta.u2)
+ annotation (Line(points={{82,-90},{118,-90}}, color={255,0,255}));
+ connect(enaLagChiPum.VChiWat_flow, VChiWat_flow)
+ annotation (Line(points={{-242,4},{-250,4},{-250,-50},{-300,-50}},
+ color={0,0,127}));
+ connect(uChiWatPum, enaLagChiPum.uChiWatPum)
+ annotation (Line(points={{-300,140},{-260,140},{-260,-3.8},{-242,-3.8}},
+ color={255,0,255}));
+ connect(intToRea.y, lasLagPum.u)
+ annotation (Line(points={{-198,230},{-160,230},{-160,-100},{-82,-100}},
+ color={0,0,127}));
+ connect(booRep2.y, lasLagPumSta.u1)
+ annotation (Line(points={{82,0},{90,0},{90,-82},{118,-82}},
+ color={255,0,255}));
+ connect(uChiWatPum, lasLagPumSta.u3)
+ annotation (Line(points={{-300,140},{100,140},{100,-98},{118,-98}},
+ color={255,0,255}));
+ connect(nexLagPumSta.y,enaPum. u2)
+ annotation (Line(points={{142,-30},{150,-30},{150,-38},{178,-38}},
+ color={255,0,255}));
+ connect(leaPumSta.y,enaPum. u1)
+ annotation (Line(points={{142,190},{160,190},{160,-30},{178,-30}},
+ color={255,0,255}));
+ connect(pumSpeLocDp.dpChiWat_local, dpChiWat_local)
+ annotation (Line(points={{-62,-192},{-240,-192},{-240,-160},{-300,-160}},
+ color={0,0,127}));
+ connect(pumSpeLocDp.dpChiWat_remote, dpChiWat_remote)
+ annotation (Line(points={{-62,-204},{-200,-204},{-200,-200},{-300,-200}},
+ color={0,0,127}));
+ connect(pumSpeLocDp.dpChiWatSet_remote, dpChiWatSet_remote) annotation (Line(
+ points={{-62,-208},{-220,-208},{-220,-240},{-300,-240}}, color={0,0,127}));
+ connect(dpChiWat_remote, pumSpeRemDp.dpChiWat_remote) annotation (Line(points=
+ {{-300,-200},{-200,-200},{-200,-240},{-62,-240}}, color={0,0,127}));
+ connect(dpChiWatSet_remote, pumSpeRemDp.dpChiWatSet_remote) annotation (Line(
+ points={{-300,-240},{-220,-240},{-220,-248},{-62,-248}}, color={0,0,127}));
+ connect(enaPum.y, pumSta.u2)
+ annotation (Line(points={{202,-30},{210,-30},{210,-50},{150,-50},{150,-98},
+ {178,-98}}, color={255,0,255}));
+ connect(lasLagPumSta.y, pumSta.u1)
+ annotation (Line(points={{142,-90},{178,-90}}, color={255,0,255}));
+ connect(enaDedLeaPum.yLea, booRep.u)
+ annotation (Line(points={{-178,110},{-2,110}}, color={255,0,255}));
+ connect(enaHeaLeaPum.yLea, booRep.u)
+ annotation (Line(points={{-178,70},{-90,70},{-90,110},{-2,110}}, color={255,0,255}));
+ connect(booRep2.y, remPum.u2)
+ annotation (Line(points={{82,0},{90,0},{90,-70},{218,-70}},
+ color={255,0,255}));
+ connect(pumSta.y, remPum.u3)
+ annotation (Line(points={{202,-90},{210,-90},{210,-78},{218,-78}},
+ color={255,0,255}));
+ connect(leaPumSta.y, remPum.u1)
+ annotation (Line(points={{142,190},{160,190},{160,-62},{218,-62}}, color={255,0,255}));
+ connect(enaPum.y, addPum.u1)
+ annotation (Line(points={{202,-30},{210,-30},{210,8},{238,8}}, color={255,0,255}));
+ connect(booRep1.y, addPum.u2)
+ annotation (Line(points={{82,30},{110,30},{110,0},{238,0}}, color={255,0,255}));
+ connect(addPum.y, yChiWatPum)
+ annotation (Line(points={{262,0},{300,0}}, color={255,0,255}));
+ connect(remPum.y, addPum.u3)
+ annotation (Line(points={{242,-70},{250,-70},{250,-20},{220,-20},{220,-8},
+ {238,-8}}, color={255,0,255}));
+ connect(uChiWatPum, booToInt.u)
+ annotation (Line(points={{-300,140},{-260,140},{-260,-120},{-242,-120}},
+ color={255,0,255}));
+ connect(booToInt.y, mulSumInt.u)
+ annotation (Line(points={{-218,-120},{-182,-120}}, color={255,127,0}));
+ connect(addInt.y, nexLagPum.index)
+ annotation (Line(points={{-118,-70},{-70,-70},{-70,-62}},color={255,127,0}));
+ connect(mulSumInt.y, addInt.u2)
+ annotation (Line(points={{-158,-120},{-150,-120},{-150,-76},{-142,-76}},
+ color={255,127,0}));
+ connect(conInt.y, addInt.u1)
+ annotation (Line(points={{-198,200},{-150,200},{-150,-64},{-142,-64}},
+ color={255,127,0}));
+ connect(mulSumInt.y, lasLagPum.index)
+ annotation (Line(points={{-158,-120},{-70,-120},{-70,-112}}, color={255,127,0}));
+ connect(enaDedLeaPum.uPla, uPla)
+ annotation (Line(points={{-202,118},{-240,118},{-240,180},{-300,180}},
+ color={255,0,255}));
+ connect(uChiWatPum, pumSpeLocDp.uChiWatPum) annotation (Line(points={{-300,140},
+ {-260,140},{-260,-196},{-62,-196}}, color={255,0,255}));
+ connect(uChiWatPum, pumSpeRemDp.uChiWatPum) annotation (Line(points={{-300,140},
+ {-260,140},{-260,-232},{-62,-232}}, color={255,0,255}));
+ connect(pumSpeLocDp.yChiWatPumSpe, yPumSpe)
+ annotation (Line(points={{-38,-200},{300,-200}}, color={0,0,127}));
+ connect(pumSpeRemDp.yChiWatPumSpe, yPumSpe) annotation (Line(points={{-39,-240},
+ {-20,-240},{-20,-200},{300,-200}}, color={0,0,127}));
+ connect(enaDedLeaPum.yLea, yLea)
+ annotation (Line(points={{-178,110},{-90,110},{-90,70},{300,70}}, color={255,0,255}));
+ connect(enaHeaLeaPum.yLea, yLea)
+ annotation (Line(points={{-178,70},{300,70}}, color={255,0,255}));
+ connect(enaLagChiPum.yUp, enaNexLag.u) annotation (Line(points={{-218,4},{-210,
+ 4},{-210,30},{-2,30}}, color={255,0,255}));
+ connect(enaNexLag.y, booRep1.u)
+ annotation (Line(points={{22,30},{58,30}}, color={255,0,255}));
+ connect(booToInt1.y, intEqu4.u1)
+ annotation (Line(points={{-218,-70},{-202,-70}}, color={255,127,0}));
+ connect(booToInt.y, intEqu4.u2) annotation (Line(points={{-218,-120},{-210,-120},
+ {-210,-78},{-202,-78}}, color={255,127,0}));
+ connect(intEqu4.y, mulAnd.u) annotation (Line(points={{-178,-70},{-170,-70},{-170,
+ -20},{-142,-20}}, color={255,0,255}));
+ connect(enaLagChiPum.yDown, not1.u) annotation (Line(points={{-218,-4},{-210,-4},
+ {-210,0},{-202,0}}, color={255,0,255}));
+ connect(not1.y, disLasLag.u)
+ annotation (Line(points={{-178,0},{-42,0}}, color={255,0,255}));
+ connect(disLasLag.y, not2.u)
+ annotation (Line(points={{-18,0},{-2,0}}, color={255,0,255}));
+ connect(not2.y, booRep2.u)
+ annotation (Line(points={{22,0},{58,0}}, color={255,0,255}));
+ connect(mulAnd.y, edg1.u)
+ annotation (Line(points={{-118,-20},{-102,-20}}, color={255,0,255}));
+ connect(edg1.y, enaNexLag.clr) annotation (Line(points={{-78,-20},{-60,-20},{-60,
+ 24},{-2,24}}, color={255,0,255}));
+ connect(edg1.y, disLasLag.clr) annotation (Line(points={{-78,-20},{-60,-20},{-60,
+ -6},{-42,-6}}, color={255,0,255}));
+ connect(addPum.y, pre1.u) annotation (Line(points={{262,0},{270,0},{270,-100},
+ {210,-100},{210,-120},{218,-120}}, color={255,0,255}));
+ connect(pre1.y, booToInt1.u) annotation (Line(points={{242,-120},{260,-120},{260,
+ -140},{-250,-140},{-250,-70},{-242,-70}}, color={255,0,255}));
+ connect(pumSpeLocDp.dpChiWatPumSet_local, dpChiWatPumSet_local) annotation (
+ Line(points={{-38,-206},{200,-206},{200,-240},{300,-240}}, color={0,0,127}));
+ connect(uEnaPla, enaHeaLeaPum.uEnaPla) annotation (Line(points={{-300,-10},{-270,
+ -10},{-270,64},{-202,64}}, color={255,0,255}));
+annotation (
+ defaultComponentName="chiWatPum",
+ Diagram(coordinateSystem(preserveAspectRatio=false,
+ extent={{-280,-260},{280,260}}), graphics={
+ Rectangle(
+ extent={{-276,256},{156,64}},
+ fillColor={210,210,210},
+ fillPattern=FillPattern.Solid,
+ pattern=LinePattern.None),
+ Text(
+ extent={{66,252},{140,236}},
+ pattern=LinePattern.None,
+ fillColor={210,210,210},
+ fillPattern=FillPattern.Solid,
+ textColor={0,0,127},
+ horizontalAlignment=TextAlignment.Right,
+ textString="Enable lead pump"),
+ Rectangle(
+ extent={{-276,56},{156,-136}},
+ fillColor={210,210,210},
+ fillPattern=FillPattern.Solid,
+ pattern=LinePattern.None),
+ Text(
+ extent={{70,58},{154,44}},
+ pattern=LinePattern.None,
+ fillColor={210,210,210},
+ fillPattern=FillPattern.Solid,
+ textColor={0,0,127},
+ horizontalAlignment=TextAlignment.Right,
+ textString="Enable next lag pump"),
+ Text(
+ extent={{70,-116},{152,-134}},
+ pattern=LinePattern.None,
+ fillColor={210,210,210},
+ fillPattern=FillPattern.Solid,
+ textColor={0,0,127},
+ horizontalAlignment=TextAlignment.Right,
+ textString="Disable last lag pump"),
+ Rectangle(
+ extent={{-276,-144},{156,-256}},
+ fillColor={210,210,210},
+ fillPattern=FillPattern.Solid,
+ pattern=LinePattern.None),
+ Text(
+ extent={{70,-154},{152,-168}},
+ pattern=LinePattern.None,
+ fillColor={210,210,210},
+ fillPattern=FillPattern.Solid,
+ textColor={0,0,127},
+ horizontalAlignment=TextAlignment.Right,
+ textString="Enabled pump speed")}),
+ Icon(coordinateSystem(preserveAspectRatio=false, extent={{-100,-100},{100,100}}),
+ graphics={
+ Rectangle(
+ extent={{-100,-100},{100,100}},
+ lineColor={0,0,0},
+ fillColor={255,255,255},
+ fillPattern=FillPattern.Solid),
+ Text(
+ extent={{-120,146},{100,108}},
+ textColor={0,0,255},
+ textString="%name"),
+ Rectangle(
+ extent={{-80,60},{82,-60}},
+ lineColor={28,108,200},
+ fillColor={210,210,210},
+ fillPattern=FillPattern.Solid,
+ borderPattern=BorderPattern.Raised),
+ Polygon(
+ points={{-80,60},{-14,4},{-80,-60},{-80,60}},
+ lineColor={175,175,175},
+ fillColor={175,175,175},
+ fillPattern=FillPattern.Solid)}),
+ Documentation(info="
+
+Primary chilled water pump control sequence per ASHRAE RP-1711, (Draft on March 23, 2020),
+section 5.2.6.1 to section 5.2.6.11, except section 3 and 4. It includes:
+
+
+",
+revisions="
+
+-
+February 13, 2019, by Jianjun Hu:
+First implementation.
+
+
+"));
+end Controller;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Pumps/ChilledWater/Subsequences/EnableLag_primary_dP.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Pumps/ChilledWater/Subsequences/EnableLag_primary_dP.mo
new file mode 100644
index 00000000000..69ed1b8ad2a
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Pumps/ChilledWater/Subsequences/EnableLag_primary_dP.mo
@@ -0,0 +1,292 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Pumps.ChilledWater.Subsequences;
+block EnableLag_primary_dP
+ "Sequences for enabling and disabling lag pumps for primary-only plants using differential pressure pump speed control"
+ parameter Integer nPum = 2 "Total number of pumps";
+ parameter Real timPer(
+ final unit="s",
+ final quantity="Time")=600
+ "Delay time period for enabling and disabling lag pumps";
+ parameter Real staCon = -0.03 "Constant used in the staging equation"
+ annotation (Dialog(tab="Advanced"));
+ parameter Real relFloHys = 0.01
+ "Constant value used in hysteresis for checking relative flow rate"
+ annotation (Dialog(tab="Advanced"));
+ parameter Integer nPum_nominal(
+ final max = nPum,
+ final min = 1) = nPum
+ "Total number of pumps that operate at design conditions"
+ annotation (Dialog(group="Nominal conditions"));
+ parameter Real VChiWat_flow_nominal(
+ final unit="m3/s",
+ final quantity="VolumeFlowRate",
+ final min=1e-6)=0.5
+ "Total plant design chilled water flow rate"
+ annotation (Dialog(group="Nominal conditions"));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput VChiWat_flow(
+ final unit="m3/s",
+ final quantity="VolumeFlowRate") "Chilled water flow"
+ annotation (Placement(transformation(extent={{-180,60},{-140,100}}),
+ iconTransformation(extent={{-140,20},{-100,60}})));
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uChiWatPum[nPum]
+ "Chilled water pump status"
+ annotation (Placement(transformation(extent={{-180,-20},{-140,20}}),
+ iconTransformation(extent={{-140,-58},{-100,-18}})));
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanOutput yUp
+ "Next lag pump status, a rising edge indicates that next lag pump should be enabled"
+ annotation (Placement(transformation(extent={{140,20},{180,60}}),
+ iconTransformation(extent={{100,20},{140,60}})));
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanOutput yDown
+ "Last lag pump status, a falling edge indicates that last lag pump should be disabled"
+ annotation (Placement(transformation(extent={{140,-100},{180,-60}}),
+ iconTransformation(extent={{100,-60},{140,-20}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Hysteresis hys(
+ final uLow=(-1)*relFloHys,
+ final uHigh=relFloHys)
+ "Check if condition for enabling next lag pump is satisfied"
+ annotation (Placement(transformation(extent={{-40,30},{-20,50}})));
+ Buildings.Controls.OBC.CDL.Continuous.Hysteresis hys1(
+ final uLow=(-1)*relFloHys,
+ final uHigh=relFloHys)
+ "Check if condition for disabling last lag pump is satisfied"
+ annotation (Placement(transformation(extent={{-40,-90},{-20,-70}})));
+ Buildings.Controls.OBC.CDL.Continuous.MultiplyByParameter chiWatFloRat(
+ final k=1/VChiWat_flow_nominal) "Chiller water flow ratio"
+ annotation (Placement(transformation(extent={{-120,70},{-100,90}})));
+ Buildings.Controls.OBC.CDL.Continuous.AddParameter addPar(
+ final p=staCon) "Add parameter"
+ annotation (Placement(transformation(extent={{40,-10},{60,10}})));
+ Buildings.Controls.OBC.CDL.Continuous.AddParameter addPar2(
+ final p=staCon) "Add parameter"
+ annotation (Placement(transformation(extent={{0,-50},{20,-30}})));
+ Buildings.Controls.OBC.CDL.Logical.Timer tim(
+ final t=timPer)
+ "Check if the time is greater than delay time period"
+ annotation (Placement(transformation(extent={{0,30},{20,50}})));
+ Buildings.Controls.OBC.CDL.Logical.Timer tim1(
+ final t=timPer)
+ "Check if the time is greater than delay time period"
+ annotation (Placement(transformation(extent={{0,-90},{20,-70}})));
+
+protected
+ Buildings.Controls.OBC.CDL.Conversions.BooleanToInteger booToInt[nPum]
+ "Convert boolean input to integer number"
+ annotation (Placement(transformation(extent={{-130,-10},{-110,10}})));
+ Buildings.Controls.OBC.CDL.Integers.MultiSum numOpePum(final nin=nPum)
+ "Total number of operating pumps"
+ annotation (Placement(transformation(extent={{-90,-10},{-70,10}})));
+ Buildings.Controls.OBC.CDL.Conversions.IntegerToReal intToRea
+ "Convert integer to real"
+ annotation (Placement(transformation(extent={{-50,-10},{-30,10}})));
+ Buildings.Controls.OBC.CDL.Continuous.AddParameter addPar1(
+ final p=-1) "Add real inputs"
+ annotation (Placement(transformation(extent={{-80,-50},{-60,-30}})));
+ Buildings.Controls.OBC.CDL.Continuous.Subtract sub2
+ "Find inputs difference"
+ annotation (Placement(transformation(extent={{-80,30},{-60,50}})));
+ Buildings.Controls.OBC.CDL.Continuous.Subtract sub1
+ "Find inputs difference"
+ annotation (Placement(transformation(extent={{-80,-90},{-60,-70}})));
+ Buildings.Controls.OBC.CDL.Logical.Switch enaNexLag
+ "Enabling next lag pump"
+ annotation (Placement(transformation(extent={{100,30},{120,50}})));
+ Buildings.Controls.OBC.CDL.Logical.Switch shuLasLag
+ "Shut off last lag pump"
+ annotation (Placement(transformation(extent={{100,-90},{120,-70}})));
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant con(
+ final k=true)
+ "Logical true"
+ annotation (Placement(transformation(extent={{40,110},{60,130}})));
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant con1(
+ final k=false)
+ "Logical false"
+ annotation (Placement(transformation(extent={{40,-50},{60,-30}})));
+ Buildings.Controls.OBC.CDL.Logical.Edge edg "Rising edge"
+ annotation (Placement(transformation(extent={{-40,-150},{-20,-130}})));
+ Buildings.Controls.OBC.CDL.Logical.Not not1 "Logical not"
+ annotation (Placement(transformation(extent={{0,-150},{20,-130}})));
+ Buildings.Controls.OBC.CDL.Logical.And and2 "Logical and"
+ annotation (Placement(transformation(extent={{40,-130},{60,-110}})));
+ Buildings.Controls.OBC.CDL.Logical.Pre pre "Breaks algebraic loops"
+ annotation (Placement(transformation(extent={{-80,-150},{-60,-130}})));
+ Buildings.Controls.OBC.CDL.Logical.Edge edg1 "Rising edge"
+ annotation (Placement(transformation(extent={{-40,90},{-20,110}})));
+ Buildings.Controls.OBC.CDL.Logical.Not not2 "Logical not"
+ annotation (Placement(transformation(extent={{0,90},{20,110}})));
+ Buildings.Controls.OBC.CDL.Logical.Pre pre1 "Breaks algebraic loops"
+ annotation (Placement(transformation(extent={{-80,90},{-60,110}})));
+ Buildings.Controls.OBC.CDL.Logical.And and1 "Logical and"
+ annotation (Placement(transformation(extent={{40,70},{60,90}})));
+ Buildings.Controls.OBC.CDL.Continuous.MultiplyByParameter nomPum(
+ final k=1/nPum_nominal)
+ "Pump number ratio"
+ annotation (Placement(transformation(extent={{0,-10},{20,10}})));
+ Buildings.Controls.OBC.CDL.Continuous.MultiplyByParameter nomPum1(
+ final k=1/nPum_nominal)
+ "Pump number ratio"
+ annotation (Placement(transformation(extent={{-40,-50},{-20,-30}})));
+
+equation
+ connect(VChiWat_flow,chiWatFloRat. u)
+ annotation (Line(points={{-160,80},{-122,80}}, color={0,0,127}));
+ connect(uChiWatPum,booToInt. u)
+ annotation (Line(points={{-160,0},{-132,0}}, color={255,0,255}));
+ connect(booToInt.y,numOpePum. u)
+ annotation (Line(points={{-108,0},{-92,0}},
+ color={255,127,0}));
+ connect(numOpePum.y,intToRea. u)
+ annotation (Line(points={{-68,0},{-52,0}},color={255,127,0}));
+ connect(sub2.y,hys. u)
+ annotation (Line(points={{-58,40},{-42,40}}, color={0,0,127}));
+ connect(sub1.y,hys1. u)
+ annotation (Line(points={{-58,-80},{-42,-80}}, color={0,0,127}));
+ connect(addPar.y, sub2.u2)
+ annotation (Line(points={{62,0},{70,0},{70,20},{-90,20},{-90,34},{-82,34}},
+ color={0,0,127}));
+ connect(intToRea.y, addPar1.u)
+ annotation (Line(points={{-28,0},{-10,0},{-10,-20},{-90,-20},{-90,-40},{-82,
+ -40}},
+ color={0,0,127}));
+ connect(addPar2.y, sub1.u1)
+ annotation (Line(points={{22,-40},{30,-40},{30,-60},{-90,-60},{-90,-74},{-82,
+ -74}}, color={0,0,127}));
+ connect(chiWatFloRat.y, sub2.u1)
+ annotation (Line(points={{-98,80},{-90,80},{-90,46},{-82,46}}, color={0,0,127}));
+ connect(chiWatFloRat.y, sub1.u2)
+ annotation (Line(points={{-98,80},{-90,80},{-90,60},{-100,60},{-100,-86},
+ {-82,-86}}, color={0,0,127}));
+ connect(con.y, enaNexLag.u1)
+ annotation (Line(points={{62,120},{90,120},{90,48},{98,48}}, color={255,0,255}));
+ connect(con.y, shuLasLag.u3)
+ annotation (Line(points={{62,120},{90,120},{90,-88},{98,-88}}, color={255,0,255}));
+ connect(shuLasLag.y, yDown)
+ annotation (Line(points={{122,-80},{160,-80}}, color={255,0,255}));
+ connect(enaNexLag.y, yUp)
+ annotation (Line(points={{122,40},{160,40}}, color={255,0,255}));
+ connect(con1.y, enaNexLag.u3)
+ annotation (Line(points={{62,-40},{80,-40},{80,32},{98,32}},
+ color={255,0,255}));
+ connect(con1.y, shuLasLag.u1)
+ annotation (Line(points={{62,-40},{80,-40},{80,-72},{98,-72}},
+ color={255,0,255}));
+ connect(edg.y, not1.u)
+ annotation (Line(points={{-18,-140},{-2,-140}}, color={255,0,255}));
+ connect(edg.u, pre.y)
+ annotation (Line(points={{-42,-140},{-58,-140}}, color={255,0,255}));
+ connect(hys1.y, and2.u1)
+ annotation (Line(points={{-18,-80},{-14,-80},{-14,-120},{38,-120}},
+ color={255,0,255}));
+ connect(not1.y, and2.u2)
+ annotation (Line(points={{22,-140},{30,-140},{30,-128},{38,-128}},
+ color={255,0,255}));
+ connect(and2.y, tim1.u)
+ annotation (Line(points={{62,-120},{80,-120},{80,-104},{-6,-104},{-6,-80},
+ {-2,-80}}, color={255,0,255}));
+ connect(edg1.y, not2.u)
+ annotation (Line(points={{-18,100},{-2,100}}, color={255,0,255}));
+ connect(edg1.u, pre1.y)
+ annotation (Line(points={{-42,100},{-58,100}}, color={255,0,255}));
+ connect(not2.y, and1.u1)
+ annotation (Line(points={{22,100},{30,100},{30,80},{38,80}}, color={255,0,255}));
+ connect(hys.y, and1.u2)
+ annotation (Line(points={{-18,40},{-12,40},{-12,72},{38,72}}, color={255,0,255}));
+ connect(and1.y, tim.u)
+ annotation (Line(points={{62,80},{70,80},{70,66},{-6,66},{-6,40},{-2,40}},
+ color={255,0,255}));
+ connect(tim.passed, enaNexLag.u2) annotation (Line(points={{22,32},{60,32},{60,
+ 40},{98,40}}, color={255,0,255}));
+ connect(tim.passed, pre1.u) annotation (Line(points={{22,32},{60,32},{60,60},{
+ -86,60},{-86,100},{-82,100}}, color={255,0,255}));
+ connect(tim1.passed, shuLasLag.u2) annotation (Line(points={{22,-88},{60,-88},
+ {60,-80},{98,-80}}, color={255,0,255}));
+ connect(tim1.passed, pre.u) annotation (Line(points={{22,-88},{60,-88},{60,-100},
+ {-100,-100},{-100,-140},{-82,-140}}, color={255,0,255}));
+ connect(intToRea.y, nomPum.u)
+ annotation (Line(points={{-28,0},{-2,0}}, color={0,0,127}));
+ connect(nomPum.y, addPar.u)
+ annotation (Line(points={{22,0},{38,0}}, color={0,0,127}));
+ connect(addPar1.y, nomPum1.u)
+ annotation (Line(points={{-58,-40},{-42,-40}}, color={0,0,127}));
+ connect(nomPum1.y, addPar2.u)
+ annotation (Line(points={{-18,-40},{-2,-40}}, color={0,0,127}));
+
+annotation (
+ defaultComponentName="enaLagChiPum",
+ Icon(coordinateSystem(preserveAspectRatio=false, extent={{-100,-100},{100,100}}),
+ graphics={
+ Rectangle(
+ extent={{-100,-100},{100,100}},
+ lineColor={0,0,127},
+ fillColor={255,255,255},
+ fillPattern=FillPattern.Solid),
+ Text(
+ extent={{-100,150},{100,110}},
+ textColor={0,0,255},
+ textString="%name"),
+ Text(
+ extent={{-98,52},{-38,30}},
+ textColor={0,0,127},
+ pattern=LinePattern.Dash,
+ textString="VChiWat_flow"),
+ Text(
+ extent={{-98,-24},{-34,-48}},
+ textColor={255,0,255},
+ pattern=LinePattern.Dash,
+ textString="uChiWatPum"),
+ Text(
+ extent={{64,48},{98,34}},
+ textColor={255,0,255},
+ pattern=LinePattern.Dash,
+ textString="yUp"),
+ Text(
+ extent={{62,-26},{96,-50}},
+ textColor={255,0,255},
+ pattern=LinePattern.Dash,
+ textString="yDown")}),
+ Diagram(coordinateSystem(preserveAspectRatio=false, extent={{-140,-160},{140,160}})),
+ Documentation(info="
+
+Block that enable and disable lag primary chilled water pump, for plants
+with headered primary chilled water pumps,
+according to ASHRAE RP-1711 Advanced Sequences of Operation for HVAC Systems Phase II –
+Central Plants and Hydronic Systems (Draft on March 23, 2020),
+section 5.2.6 Primary chilled water pumps, part 5.2.6.6.
+
+
+Chilled water pump shall be staged as a function of chilled water flow ratio (CHWFR),
+i.e. the ratio of current chilled water flow VChiWat_flow
to design
+flow VChiWat_flow_nominal
, and the number of pumps num_nominal
+that operate at design conditions. Pumps are assumed to be equally sized.
+
+
+ VChiWat_flow
+ CHWFR = ----------------------
+ VChiWat_flow_nominal
+
+
+1. Start the next lag pump yNexLagPum
whenever the following is
+true for 10 minutes:
+
+
+ Number_of_operating_pumps
+ CHWFR > --------------------------- - 0.03
+ num_nominal
+
+
+2. Shut off the last lag pump whenever the following is true for 10 minutes:
+
+
+ Number_of_operating_pumps - 1
+ CHWFR ≤ ------------------------------- - 0.03
+ num_nominal
+
+", revisions="
+
+-
+January 28, 2019, by Jianjun Hu:
+First implementation.
+
+
+"));
+end EnableLag_primary_dP;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Pumps/ChilledWater/Subsequences/EnableLead_dedicated.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Pumps/ChilledWater/Subsequences/EnableLead_dedicated.mo
new file mode 100644
index 00000000000..6c300f7f3b6
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Pumps/ChilledWater/Subsequences/EnableLead_dedicated.mo
@@ -0,0 +1,140 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Pumps.ChilledWater.Subsequences;
+block EnableLead_dedicated
+ "Sequence to enable or disable the lead pump of plants with dedicated primary chilled water pumps"
+
+ final parameter Real offTimThr(
+ final unit="s",
+ final quantity="Time")=180
+ "Threshold to check lead chiller off time";
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uPla
+ "True: plant is enabled"
+ annotation (Placement(transformation(extent={{-140,50},{-100,90}}),
+ iconTransformation(extent={{-140,60},{-100,100}})));
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uLeaChiEna
+ "True: lead chiller is enabled"
+ annotation (Placement(transformation(extent={{-140,20},{-100,60}}),
+ iconTransformation(extent={{-140,10},{-100,50}})));
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uLeaChiSta
+ "True: lead chiller is proven on"
+ annotation (Placement(transformation(extent={{-140,-60},{-100,-20}}),
+ iconTransformation(extent={{-140,-50},{-100,-10}})));
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uLeaChiWatReq
+ "True: lead chiller is requesting chilled water"
+ annotation (Placement(transformation(extent={{-140,-100},{-100,-60}})));
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanOutput yLea
+ "Lead pump status setpoint"
+ annotation (Placement(transformation(extent={{100,50},{140,90}}),
+ iconTransformation(extent={{100,-20},{140,20}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Latch leaPumSta
+ "Lead pump status"
+ annotation (Placement(transformation(extent={{40,60},{60,80}})));
+
+protected
+ Buildings.Controls.OBC.CDL.Logical.Or or2 "Logical or"
+ annotation (Placement(transformation(extent={{40,-50},{60,-30}})));
+ Buildings.Controls.OBC.CDL.Logical.Not noChiWatReq "No chilled water request"
+ annotation (Placement(transformation(extent={{-80,-90},{-60,-70}})));
+ Buildings.Controls.OBC.CDL.Logical.Not proOff "Lead chiller proven off"
+ annotation (Placement(transformation(extent={{-80,-50},{-60,-30}})));
+ Buildings.Controls.OBC.CDL.Logical.Timer tim(
+ final t=offTimThr)
+ "Check if the chiller has been OFF for more than 3 minutes"
+ annotation (Placement(transformation(extent={{-40,-50},{-20,-30}})));
+ Buildings.Controls.OBC.CDL.Logical.And and2 "Logical and"
+ annotation (Placement(transformation(extent={{-40,30},{-20,50}})));
+ Buildings.Controls.OBC.CDL.Logical.Not disLeaChi "Disabled lead chiller"
+ annotation (Placement(transformation(extent={{-80,30},{-60,50}})));
+ Buildings.Controls.OBC.CDL.Logical.Edge disLeaPum
+ "Disable lead pump when the input has rising edge"
+ annotation (Placement(transformation(extent={{0,30},{20,50}})));
+equation
+ connect(uLeaChiWatReq, noChiWatReq.u)
+ annotation (Line(points={{-120,-80},{-82,-80}}, color={255,0,255}));
+ connect(uLeaChiSta, proOff.u)
+ annotation (Line(points={{-120,-40},{-82,-40}}, color={255,0,255}));
+ connect(proOff.y, tim.u)
+ annotation (Line(points={{-58,-40},{-42,-40}}, color={255,0,255}));
+ connect(noChiWatReq.y, or2.u2)
+ annotation (Line(points={{-58,-80},{30,-80},{30,-48},{38,-48}},
+ color={255,0,255}));
+ connect(uLeaChiEna, disLeaChi.u)
+ annotation (Line(points={{-120,40},{-82,40}}, color={255,0,255}));
+ connect(disLeaChi.y, and2.u1)
+ annotation (Line(points={{-58,40},{-42,40}}, color={255,0,255}));
+ connect(or2.y, and2.u2)
+ annotation (Line(points={{62,-40},{80,-40},{80,-10},{-50,-10},{-50,32},{-42,
+ 32}}, color={255,0,255}));
+ connect(uPla, leaPumSta.u)
+ annotation (Line(points={{-120,70},{38,70}}, color={255,0,255}));
+ connect(and2.y, disLeaPum.u)
+ annotation (Line(points={{-18,40},{-2,40}}, color={255,0,255}));
+ connect(disLeaPum.y, leaPumSta.clr)
+ annotation (Line(points={{22,40},{30,40},{30,64},{38,64}}, color={255,0,255}));
+ connect(tim.passed, or2.u1) annotation (Line(points={{-18,-48},{20,-48},{20,-40},
+ {38,-40}}, color={255,0,255}));
+ connect(leaPumSta.y, yLea)
+ annotation (Line(points={{62,70},{120,70}}, color={255,0,255}));
+annotation (
+ defaultComponentName="enaLeaChiPum",
+ Icon(coordinateSystem(preserveAspectRatio=false), graphics={
+ Rectangle(
+ extent={{-100,-100},{100,100}},
+ lineColor={0,0,127},
+ fillColor={255,255,255},
+ fillPattern=FillPattern.Solid),
+ Text(
+ extent={{-98,42},{-44,20}},
+ textColor={255,0,255},
+ pattern=LinePattern.Dash,
+ textString="uLeaChiEna"),
+ Text(
+ extent={{62,10},{98,-6}},
+ textColor={255,0,255},
+ pattern=LinePattern.Dash,
+ textString="yUp"),
+ Text(
+ extent={{-100,150},{100,110}},
+ textColor={0,0,255},
+ textString="%name"),
+ Text(
+ extent={{-98,-18},{-44,-40}},
+ textColor={255,0,255},
+ pattern=LinePattern.Dash,
+ textString="uLeaChiOn"),
+ Text(
+ extent={{-98,-68},{-26,-90}},
+ textColor={255,0,255},
+ pattern=LinePattern.Dash,
+ textString="uLeaChiWatReq"),
+ Text(
+ extent={{-94,90},{-74,74}},
+ textColor={255,0,255},
+ pattern=LinePattern.Dash,
+ textString="uPla")}),
+ Diagram(coordinateSystem(preserveAspectRatio=false)),
+ Documentation(info="
+
+Block that enable and disable leading primary chilled water pump, for plants
+with dedicated primary chilled water pumps and parallel chillers,
+according to ASHRAE RP-1711 Advanced Sequences of Operation for HVAC Systems Phase II –
+Central Plants and Hydronic Systems (Draft on March, 2020),
+section 5.2.6 Primary chilled water pumps, part 5.2.6.5.
+
+
+The lead primary chilled water pump should be enabled when the plant is enabled
+(uPla
= true). It should be disabled when the lead
+chiller is disabled (uLeaChiEna
= false) and either the lead chiller
+has been proven off (uLeaChiSta
= false) for 3 minutes or is not
+requesting chilled water flow (uLeaChiWatReq
= false).
+
+", revisions="
+
+-
+August 1, 2020, by Jianjun Hu:
+First implementation.
+
+
+"));
+end EnableLead_dedicated;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Pumps/ChilledWater/Subsequences/EnableLead_headered.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Pumps/ChilledWater/Subsequences/EnableLead_headered.mo
new file mode 100644
index 00000000000..7af8cae6e5d
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Pumps/ChilledWater/Subsequences/EnableLead_headered.mo
@@ -0,0 +1,104 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Pumps.ChilledWater.Subsequences;
+block EnableLead_headered
+ "Sequence to enable or disable the lead pump of plants with headered primary chilled water pumps"
+ parameter Integer nChi=2 "Total number of chiller CHW isolation valves";
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uChiIsoVal[nChi]
+ "True: chilled water isolation valve commended on"
+ annotation (Placement(transformation(extent={{-140,-20},{-100,20}})));
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uEnaPla
+ "True: plant is just enabled"
+ annotation(Placement(transformation(extent={{-140,-60},{-100,-20}}),
+ iconTransformation(extent={{-140,-80},{-100,-40}})));
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanOutput yLea
+ "Lead pump status setpoint"
+ annotation (Placement(transformation(extent={{100,-20},{140,20}})));
+
+protected
+ Buildings.Controls.OBC.CDL.Logical.Switch leaPumSta "Lead pump status"
+ annotation (Placement(transformation(extent={{40,-10},{60,10}})));
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant con(final k=true)
+ "Logical true"
+ annotation (Placement(transformation(extent={{-40,50},{-20,70}})));
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant con1(final k=false)
+ "Logical false"
+ annotation (Placement(transformation(extent={{-40,-70},{-20,-50}})));
+ Buildings.Controls.OBC.CDL.Logical.MultiOr mulOr(final nin=nChi)
+ "Check if there is any chiller enabled"
+ annotation (Placement(transformation(extent={{-80,-10},{-60,10}})));
+ Buildings.Controls.OBC.CDL.Logical.Or or2 "Check if enabling lead pump"
+ annotation (Placement(transformation(extent={{-20,-10},{0,10}})));
+equation
+ connect(con.y,leaPumSta. u1)
+ annotation (Line(points={{-18,60},{30,60},{30,8},{38,8}},color={255,0,255}));
+ connect(con1.y,leaPumSta. u3)
+ annotation (Line(points={{-18,-60},{30,-60},{30,-8},{38,-8}},
+ color={255,0,255}));
+ connect(leaPumSta.y, yLea)
+ annotation (Line(points={{62,0},{120,0}}, color={255,0,255}));
+ connect(uChiIsoVal, mulOr.u)
+ annotation (Line(points={{-120,0},{-82,0}},
+ color={255,0,255}));
+ connect(mulOr.y, or2.u1)
+ annotation (Line(points={{-58,0},{-22,0}}, color={255,0,255}));
+ connect(uEnaPla, or2.u2) annotation (Line(points={{-120,-40},{-40,-40},{-40,
+ -8},{-22,-8}},
+ color={255,0,255}));
+ connect(or2.y, leaPumSta.u2)
+ annotation (Line(points={{2,0},{38,0}}, color={255,0,255}));
+annotation (
+ defaultComponentName="enaLeaChiPum",
+ Icon(coordinateSystem(preserveAspectRatio=false), graphics={
+ Rectangle(
+ extent={{-100,-100},{100,100}},
+ lineColor={0,0,127},
+ fillColor={255,255,255},
+ fillPattern=FillPattern.Solid),
+ Text(
+ extent={{-100,150},{100,110}},
+ textColor={0,0,255},
+ textString="%name"),
+ Text(
+ extent={{-94,12},{-40,-10}},
+ textColor={255,0,255},
+ pattern=LinePattern.Dash,
+ textString="uChiIsoVal"),
+ Text(
+ extent={{42,12},{96,-10}},
+ textColor={255,0,255},
+ pattern=LinePattern.Dash,
+ textString="yLeaPum"),
+ Text(
+ extent={{-96,-50},{-48,-66}},
+ textColor={255,0,255},
+ pattern=LinePattern.Dash,
+ textString="uEnaPla")}),
+ Diagram(coordinateSystem(preserveAspectRatio=false)),
+ Documentation(info="
+
+Block that enable and disable leading primary chilled water pump, for plants
+with headered primary chilled water pumps and parallel chillers,
+according to ASHRAE RP-1711 Advanced Sequences of Operation for HVAC Systems Phase II –
+Central Plants and Hydronic Systems (Draft on March, 2020),
+section 5.2.6 Primary chilled water pumps, part 1 and 2.
+
+
+-
+Primary chilled water pumps shall be lead-lag. Note that the lead-lag control is
+implemented in a separated sequence.
+
+-
+The lead primary chilled water pump shall be enabled when any chiller
+CHW isolation valve
uChiIsoVal
is commanded open, shall be disabled
+when chiller CHW isolation valves are commanded closed.
+
+
+", revisions="
+
+-
+August 1, 2019, by Jianjun Hu:
+First implementation.
+
+
+"));
+end EnableLead_headered;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Pumps/ChilledWater/Subsequences/Speed_primary_localDp.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Pumps/ChilledWater/Subsequences/Speed_primary_localDp.mo
new file mode 100644
index 00000000000..67e5afd50f3
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Pumps/ChilledWater/Subsequences/Speed_primary_localDp.mo
@@ -0,0 +1,295 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Pumps.ChilledWater.Subsequences;
+block Speed_primary_localDp
+ "Pump speed control for primary-only plants where the remote DP sensor(s) is not hardwired to the plant controller, but a local DP sensor is hardwired"
+ parameter Integer nSen = 2
+ "Total number of remote differential pressure sensors";
+ parameter Integer nPum = 2
+ "Total number of chilled water pumps";
+ parameter Real minLocDp(
+ final unit="Pa",
+ displayUnit="Pa",
+ final quantity="PressureDifference",
+ final min=0)=5*6894.75
+ "Minimum chilled water loop local differential pressure setpoint";
+ parameter Real maxLocDp(
+ final unit="Pa",
+ displayUnit="Pa",
+ final quantity="PressureDifference",
+ final min=minLocDp) = 15*6894.75
+ "Maximum chilled water loop local differential pressure setpoint";
+ parameter Real minPumSpe = 0.1 "Minimum pump speed";
+ parameter Real maxPumSpe = 1 "Maximum pump speed";
+ parameter Buildings.Controls.OBC.CDL.Types.SimpleController controllerType=
+ Buildings.Controls.OBC.CDL.Types.SimpleController.PI
+ "Type of controller"
+ annotation(Dialog(group="Speed controller"));
+ parameter Real k=1 "Gain of controller"
+ annotation(Dialog(group="Speed controller"));
+ parameter Real Ti(
+ final unit="s",
+ final quantity="Time")=0.5 "Time constant of integrator block"
+ annotation(Dialog(group="Speed controller"));
+ parameter Real Td(
+ final unit="s",
+ final quantity="Time")=0.1 "Time constant of derivative block"
+ annotation (Dialog(group="Speed controller",
+ enable=
+ controllerType == Buildings.Controls.OBC.CDL.Types.SimpleController.PD or
+ controllerType == Buildings.Controls.OBC.CDL.Types.SimpleController.PID));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput dpChiWat_local(
+ final unit="Pa",
+ final quantity="PressureDifference")
+ "Chilled water differential static pressure from local sensor"
+ annotation (Placement(transformation(extent={{-180,80},{-140,120}}),
+ iconTransformation(extent={{-140,60},{-100,100}})));
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uChiWatPum[nPum]
+ "Chilled water pump status"
+ annotation (Placement(transformation(extent={{-180,-60},{-140,-20}}),
+ iconTransformation(extent={{-140,20},{-100,60}})));
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput dpChiWat_remote[nSen](
+ final unit=fill("Pa", nSen),
+ final quantity=fill("PressureDifference", nSen))
+ "Chilled water differential static pressure from remote sensor"
+ annotation (Placement(transformation(extent={{-180,-100},{-140,-60}}),
+ iconTransformation(extent={{-140,-60},{-100,-20}})));
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput dpChiWatSet_remote[nSen](
+ final unit=fill("Pa", nSen), final quantity=fill("PressureDifference",
+ nSen)) "Chilled water differential static pressure setpoint"
+ annotation (Placement(transformation(extent={{-180,-140},{-140,-100}}),
+ iconTransformation(extent={{-140,-100},{-100,-60}})));
+ Buildings.Controls.OBC.CDL.Interfaces.RealOutput yChiWatPumSpe(
+ final min=minPumSpe,
+ final max=maxPumSpe,
+ final unit="1") "Chilled water pump speed"
+ annotation (Placement(transformation(extent={{140,100},{180,140}}),
+ iconTransformation(extent={{100,-20},{140,20}})));
+ Buildings.Controls.OBC.CDL.Interfaces.RealOutput dpChiWatPumSet_local(
+ final quantity="PressureDifference",
+ final unit="Pa",
+ displayUnit="Pa")
+ "Local differential pressure setpoint"
+ annotation (Placement(transformation(extent={{140,-40},{180,0}}),
+ iconTransformation(extent={{100,-80},{140,-40}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.PIDWithReset conPID1(
+ final controllerType=controllerType,
+ final k=k,
+ final Ti=Ti,
+ final Td=Td,
+ final yMax=1,
+ final yMin=0,
+ final y_reset=0) "Pump speed controller"
+ annotation (Placement(transformation(extent={{-40,50},{-20,70}})));
+ Buildings.Controls.OBC.CDL.Continuous.Line pumSpe "Pump speed"
+ annotation (Placement(transformation(extent={{100,50},{120,70}})));
+ Buildings.Controls.OBC.CDL.Continuous.MultiMax maxRemDP(
+ final nin=nSen)
+ "Highest output from differential pressure control loops"
+ annotation (Placement(transformation(extent={{40,-30},{60,-10}})));
+ Buildings.Controls.OBC.CDL.Continuous.Line locDpSet
+ "Local differential pressure setpoint"
+ annotation (Placement(transformation(extent={{100,-30},{120,-10}})));
+ Buildings.Controls.OBC.CDL.Continuous.PIDWithReset conPID[nSen](
+ final controllerType=fill(controllerType, nSen),
+ final k=fill(k, nSen),
+ final Ti=fill(Ti, nSen),
+ final Td=fill(Td, nSen),
+ final yMax=fill(1, nSen),
+ final yMin=fill(0, nSen),
+ final y_reset=fill(0, nSen)) "Pump speed controller"
+ annotation (Placement(transformation(extent={{0,-30},{20,-10}})));
+
+protected
+ Buildings.Controls.OBC.CDL.Routing.BooleanScalarReplicator booRep(
+ final nout=nSen)
+ "Replicate boolean input"
+ annotation (Placement(transformation(extent={{-40,-50},{-20,-30}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant zer(final k=0)
+ "Constant zero"
+ annotation (Placement(transformation(extent={{60,10},{80,30}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant locDp_min(
+ final k=minLocDp)
+ "Minimum local differential pressure"
+ annotation (Placement(transformation(extent={{40,-70},{60,-50}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant one(final k=1)
+ "Constant one"
+ annotation (Placement(transformation(extent={{-120,10},{-100,30}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant locDp_max(
+ final k=maxLocDp)
+ "Maximum local differential pressure "
+ annotation (Placement(transformation(extent={{40,-130},{60,-110}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant pumSpe_min(
+ final k=minPumSpe) "Minimum pump speed"
+ annotation (Placement(transformation(extent={{40,90},{60,110}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant pumSpe_max(
+ final k=maxPumSpe) "Maximum pump speed"
+ annotation (Placement(transformation(extent={{-20,90},{0,110}})));
+ Buildings.Controls.OBC.CDL.Continuous.Divide div[nSen]
+ "Normalized pressure difference"
+ annotation (Placement(transformation(extent={{-40,-110},{-20,-90}})));
+ Buildings.Controls.OBC.CDL.Continuous.Divide div1
+ "Normalized pressure difference"
+ annotation (Placement(transformation(extent={{-100,70},{-80,90}})));
+ Buildings.Controls.OBC.CDL.Routing.RealScalarReplicator reaRep1(
+ final nout=nSen) "Replicate real input"
+ annotation (Placement(transformation(extent={{-80,-10},{-60,10}})));
+ Buildings.Controls.OBC.CDL.Continuous.Switch swi "Logical switch"
+ annotation (Placement(transformation(extent={{100,110},{120,130}})));
+ Buildings.Controls.OBC.CDL.Logical.MultiOr mulOr(final nin=nPum)
+ "Check if there is any pump enabled"
+ annotation (Placement(transformation(extent={{-120,-50},{-100,-30}})));
+
+equation
+ connect(conPID.y, maxRemDP.u)
+ annotation (Line(points={{22,-20},{38,-20}}, color={0,0,127}));
+ connect(booRep.y, conPID.trigger)
+ annotation (Line(points={{-18,-40},{4,-40},{4,-32}}, color={255,0,255}));
+ connect(maxRemDP.y, locDpSet.u)
+ annotation (Line(points={{62,-20},{98,-20}}, color={0,0,127}));
+ connect(zer.y, locDpSet.x1)
+ annotation (Line(points={{82,20},{90,20},{90,-12},{98,-12}}, color={0,0,127}));
+ connect(locDp_min.y, locDpSet.f1)
+ annotation (Line(points={{62,-60},{70,-60},{70,-16},{98,-16}},
+ color={0,0,127}));
+ connect(one.y, locDpSet.x2)
+ annotation (Line(points={{-98,20},{40,20},{40,0},{80,0},{80,-24},{98,-24}},
+ color={0,0,127}));
+ connect(locDp_max.y, locDpSet.f2)
+ annotation (Line(points={{62,-120},{80,-120},{80,-28},{98,-28}},
+ color={0,0,127}));
+ connect(zer.y, pumSpe.x1)
+ annotation (Line(points={{82,20},{90,20},{90,68},{98,68}}, color={0,0,127}));
+ connect(pumSpe_min.y, pumSpe.f1)
+ annotation (Line(points={{62,100},{70,100},{70,64},{98,64}}, color={0,0,127}));
+ connect(conPID1.y, pumSpe.u)
+ annotation (Line(points={{-18,60},{98,60}}, color={0,0,127}));
+ connect(one.y, pumSpe.x2)
+ annotation (Line(points={{-98,20},{40,20},{40,56},{98,56}},color={0,0,127}));
+ connect(pumSpe_max.y, pumSpe.f2)
+ annotation (Line(points={{2,100},{20,100},{20,52},{98,52}}, color={0,0,127}));
+ connect(dpChiWat_remote, div.u1)
+ annotation (Line(points={{-160,-80},{-80,-80},{-80,-94},{-42,-94}},
+ color={0,0,127}));
+ connect(locDpSet.y, div1.u2)
+ annotation (Line(points={{122,-20},{130,-20},{130,40},{-120,40},{-120,74},
+ {-102,74}}, color={0,0,127}));
+ connect(dpChiWat_local, div1.u1)
+ annotation (Line(points={{-160,100},{-120,100},{-120,86},{-102,86}},
+ color={0,0,127}));
+ connect(one.y, reaRep1.u)
+ annotation (Line(points={{-98,20},{-90,20},{-90,0},{-82,0}}, color={0,0,127}));
+ connect(reaRep1.y, conPID.u_s)
+ annotation (Line(points={{-58,0},{-20,0},{-20,-20},{-2,-20}}, color={0,0,127}));
+ connect(div.y, conPID.u_m)
+ annotation (Line(points={{-18,-100},{10,-100},{10,-32}}, color={0,0,127}));
+ connect(one.y, conPID1.u_s)
+ annotation (Line(points={{-98,20},{-90,20},{-90,60},{-42,60}}, color={0,0,127}));
+ connect(div1.y, conPID1.u_m)
+ annotation (Line(points={{-78,80},{-60,80},{-60,32},{-30,32},{-30,48}},
+ color={0,0,127}));
+ connect(pumSpe.y, swi.u1)
+ annotation (Line(points={{122,60},{130,60},{130,100},{80,100},{80,128},{98,128}},
+ color={0,0,127}));
+ connect(zer.y, swi.u3)
+ annotation (Line(points={{82,20},{90,20},{90,112},{98,112}},
+ color={0,0,127}));
+ connect(swi.y, yChiWatPumSpe)
+ annotation (Line(points={{122,120},{160,120}}, color={0,0,127}));
+ connect(mulOr.y, booRep.u)
+ annotation (Line(points={{-98,-40},{-42,-40}}, color={255,0,255}));
+ connect(mulOr.y, swi.u2)
+ annotation (Line(points={{-98,-40},{-50,-40},{-50,120},{98,120}},
+ color={255,0,255}));
+ connect(mulOr.y, conPID1.trigger)
+ annotation (Line(points={{-98,-40},{-50,-40},{-50,-20},{-36,-20},{-36,48}},
+ color={255,0,255}));
+ connect(uChiWatPum, mulOr.u)
+ annotation (Line(points={{-160,-40},{-122,-40}},color={255,0,255}));
+ connect(dpChiWatSet_remote, div.u2) annotation (Line(points={{-160,-120},{-80,
+ -120},{-80,-106},{-42,-106}}, color={0,0,127}));
+ connect(locDpSet.y, dpChiWatPumSet_local)
+ annotation (Line(points={{122,-20},{160,-20}}, color={0,0,127}));
+annotation (
+ defaultComponentName="chiPumSpe",
+ Icon(coordinateSystem(extent={{-100,-100},{100,100}}),
+ graphics={
+ Rectangle(
+ extent={{-100,-100},{100,100}},
+ lineColor={0,0,127},
+ fillColor={255,255,255},
+ fillPattern=FillPattern.Solid),
+ Text(
+ extent={{-100,150},{100,110}},
+ textColor={0,0,255},
+ textString="%name"),
+ Text(
+ extent={{-98,52},{-44,30}},
+ textColor={255,0,255},
+ pattern=LinePattern.Dash,
+ textString="uChiWatPum"),
+ Text(
+ extent={{-98,-30},{-30,-52}},
+ textColor={0,0,127},
+ pattern=LinePattern.Dash,
+ textString="dpChiWat_remote"),
+ Text(
+ extent={{22,12},{98,-10}},
+ textColor={0,0,127},
+ pattern=LinePattern.Dash,
+ textString="yChiWatPumSpe"),
+ Text(
+ extent={{-98,-68},{-20,-92}},
+ textColor={0,0,127},
+ pattern=LinePattern.Dash,
+ textString="dpChiWatSet_remote"),
+ Text(
+ extent={{-98,92},{-30,70}},
+ textColor={0,0,127},
+ pattern=LinePattern.Dash,
+ textString="dpChiWat_local"),
+ Text(
+ extent={{6,-46},{98,-70}},
+ textColor={0,0,127},
+ pattern=LinePattern.Dash,
+ textString="dpChiWatPumSet_local")}),
+ Diagram(coordinateSystem(preserveAspectRatio=false, extent={{-140,-140},{140,140}})),
+ Documentation(info="
+
+Block that control speed of enabled chilled water pumps for primary-only plants where
+the remote pressure differential (DP) sensor(s) is not hardwired to the plant controller,
+but a local DP sensor is hardwired to the plant controller,
+according to ASHRAE RP-1711 (Draft on March 23, 2020),
+section 5.2.6 Primary chilled water pumps, part 5.2.6.9, 5.2.6.10 and 5.2.6.11.
+
+
+-
+Remote DP shall be maintained at setpoint
dpChiWatSet
by a reverse
+acting PID loop running in the controller to which the remote sensor is wired.
+The loop output shall be a DP setpoint for the local primary loop DP sensor
+hardwired to the plant controller. Reset local DP from minLocDp
,
+e.g. 5 psi (34473.8 Pa), at 0% loop output to maxLocDp
at 100%
+loop output.
+
+-
+When any pump is proven on, pump speed shall be controlled by a reverse acting
+PID loop maintaining the local primary DP signal at the DP setpoint output
+from the remote sensor control loop. All pumps receive the same speed signal.
+PID loop output shall be mapped from minimum pump speed (
minPumSpe
)
+at 0% to maximum pump speed (maxPumSpe
) at 100%.
+
+-
+Where multiple remote DP sensors exist, a PID loop shall run for each sensor.
+The DP setpoint for the local DP sensor shall be the highest DP setpoint output
+from each of the remote loops.
+
+
+", revisions="
+
+-
+August 1, 2019, by Jianjun Hu:
+First implementation.
+
+
+"));
+end Speed_primary_localDp;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Pumps/ChilledWater/Subsequences/Speed_primary_remoteDp.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Pumps/ChilledWater/Subsequences/Speed_primary_remoteDp.mo
new file mode 100644
index 00000000000..a7f93d1bfc3
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Pumps/ChilledWater/Subsequences/Speed_primary_remoteDp.mo
@@ -0,0 +1,205 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Pumps.ChilledWater.Subsequences;
+block Speed_primary_remoteDp
+ "Pump speed control for primary-only plants where the remote DP sensor(s) is hardwired to the plant controller"
+ parameter Integer nSen = 2
+ "Total number of remote differential pressure sensors";
+ parameter Integer nPum = 2
+ "Total number of chilled water pumps";
+ parameter Real minPumSpe = 0.1 "Minimum pump speed";
+ parameter Real maxPumSpe = 1 "Maximum pump speed";
+ parameter Buildings.Controls.OBC.CDL.Types.SimpleController controllerType=
+ Buildings.Controls.OBC.CDL.Types.SimpleController.PI
+ "Type of controller"
+ annotation(Dialog(group="Speed controller"));
+ parameter Real k=1 "Gain of controller"
+ annotation(Dialog(group="Speed controller"));
+ parameter Real Ti(
+ final unit="s",
+ final quantity="Time",
+ displayUnit="h")=0.5 "Time constant of integrator block"
+ annotation(Dialog(group="Speed controller"));
+ parameter Real Td(
+ final unit="s",
+ final quantity="Time",
+ displayUnit="h")=0.1 "Time constant of derivative block"
+ annotation (Dialog(group="Speed controller",
+ enable=
+ controllerType == Buildings.Controls.OBC.CDL.Types.SimpleController.PD or
+ controllerType == Buildings.Controls.OBC.CDL.Types.SimpleController.PID));
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uChiWatPum[nPum]
+ "Chilled water pump status"
+ annotation (Placement(transformation(extent={{-160,-20},{-120,20}}),
+ iconTransformation(extent={{-140,60},{-100,100}})));
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput dpChiWat_remote[nSen](
+ final unit=fill("Pa", nSen),
+ final quantity=fill("PressureDifference", nSen))
+ "Chilled water differential static pressure"
+ annotation (Placement(transformation(extent={{-160,-80},{-120,-40}}),
+ iconTransformation(extent={{-140,-20},{-100,20}})));
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput dpChiWatSet_remote[nSen](
+ final unit=fill("Pa", nSen),
+ final quantity=fill("PressureDifference",nSen)) "Chilled water differential static pressure setpoint"
+ annotation (Placement(transformation(extent={{-160,-120},{-120,-80}}),
+ iconTransformation(extent={{-140,-100},{-100,-60}})));
+ Buildings.Controls.OBC.CDL.Interfaces.RealOutput yChiWatPumSpe(
+ final min=minPumSpe,
+ final max=maxPumSpe,
+ final unit="1") "Chilled water pump speed"
+ annotation (Placement(transformation(extent={{120,80},{160,120}}),
+ iconTransformation(extent={{100,-10},{120,10}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.MultiMax maxLoo(
+ final nin=nSen) "Maximum DP loop output"
+ annotation (Placement(transformation(extent={{60,-10},{80,10}})));
+ Buildings.Controls.OBC.CDL.Continuous.Line pumSpe "Pump speed"
+ annotation (Placement(transformation(extent={{60,50},{80,70}})));
+ Buildings.Controls.OBC.CDL.Continuous.PIDWithReset conPID[nSen](
+ final controllerType=fill(controllerType, nSen),
+ final k=fill(k, nSen),
+ final Ti=fill(Ti, nSen),
+ final Td=fill(Td, nSen),
+ final yMax=fill(1, nSen),
+ final yMin=fill(0, nSen),
+ final y_reset=fill(0, nSen)) "Pump speed controller"
+ annotation (Placement(transformation(extent={{20,-10},{40,10}})));
+
+protected
+ Buildings.Controls.OBC.CDL.Routing.BooleanScalarReplicator booRep(
+ final nout=nSen)
+ "Replicate boolean input"
+ annotation (Placement(transformation(extent={{-20,-50},{0,-30}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant pumSpe_min(
+ final k=minPumSpe) "Minimum pump speed"
+ annotation (Placement(transformation(extent={{-80,70},{-60,90}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant pumSpe_max(
+ final k=maxPumSpe) "Maximum pump speed"
+ annotation (Placement(transformation(extent={{-20,30},{0,50}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant one(final k=1)
+ "Constant one"
+ annotation (Placement(transformation(extent={{-80,30},{-60,50}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant zer(final k=0)
+ "Constant zero"
+ annotation (Placement(transformation(extent={{-20,70},{0,90}})));
+ Buildings.Controls.OBC.CDL.Continuous.Divide div[nSen]
+ "Normalized pressure difference"
+ annotation (Placement(transformation(extent={{-20,-90},{0,-70}})));
+ Buildings.Controls.OBC.CDL.Routing.RealScalarReplicator reaRep1(
+ final nout=nSen) "Replicate real input"
+ annotation (Placement(transformation(extent={{-20,-10},{0,10}})));
+ Buildings.Controls.OBC.CDL.Continuous.Switch swi "Logical switch"
+ annotation (Placement(transformation(extent={{80,90},{100,110}})));
+ Buildings.Controls.OBC.CDL.Logical.MultiOr mulOr(final nin=nPum)
+ "Check if there is any pump enabled"
+ annotation (Placement(transformation(extent={{-100,-10},{-80,10}})));
+
+equation
+ connect(conPID.y, maxLoo.u)
+ annotation (Line(points={{42,0},{58,0}}, color={0,0,127}));
+ connect(booRep.y, conPID.trigger)
+ annotation (Line(points={{2,-40},{24,-40},{24,-12}}, color={255,0,255}));
+ connect(zer.y, pumSpe.x1)
+ annotation (Line(points={{2,80},{20,80},{20,68},{58,68}}, color={0,0,127}));
+ connect(pumSpe_min.y, pumSpe.f1)
+ annotation (Line(points={{-58,80},{-40,80},{-40,64},{58,64}}, color={0,0,127}));
+ connect(one.y, pumSpe.x2)
+ annotation (Line(points={{-58,40},{-40,40},{-40,56},{58,56}}, color={0,0,127}));
+ connect(pumSpe_max.y, pumSpe.f2)
+ annotation (Line(points={{2,40},{20,40},{20,52},{58,52}}, color={0,0,127}));
+ connect(maxLoo.y, pumSpe.u)
+ annotation (Line(points={{82,0},{100,0},{100,40},{40,40},{40,60},{58,60}},
+ color={0,0,127}));
+ connect(dpChiWat_remote, div.u1) annotation (Line(points={{-140,-60},{-40,-60},
+ {-40,-74},{-22,-74}}, color={0,0,127}));
+ connect(div.y, conPID.u_m)
+ annotation (Line(points={{2,-80},{30,-80},{30,-12}}, color={0,0,127}));
+ connect(one.y, reaRep1.u)
+ annotation (Line(points={{-58,40},{-40,40},{-40,0},{-22,0}},
+ color={0,0,127}));
+ connect(reaRep1.y, conPID.u_s)
+ annotation (Line(points={{2,0},{18,0}}, color={0,0,127}));
+ connect(pumSpe.y, swi.u1)
+ annotation (Line(points={{82,60},{100,60},{100,80},{60,80},{60,108},{78,108}},
+ color={0,0,127}));
+ connect(zer.y, swi.u3)
+ annotation (Line(points={{2,80},{20,80},{20,92},{78,92}},
+ color={0,0,127}));
+ connect(swi.y, yChiWatPumSpe)
+ annotation (Line(points={{102,100},{140,100}}, color={0,0,127}));
+ connect(mulOr.y, booRep.u)
+ annotation (Line(points={{-78,0},{-50,0},{-50,-40},{-22,-40}},
+ color={255,0,255}));
+ connect(mulOr.y, swi.u2)
+ annotation (Line(points={{-78,0},{-50,0},{-50,100},{78,100}},
+ color={255,0,255}));
+ connect(uChiWatPum, mulOr.u)
+ annotation (Line(points={{-140,0},{-102,0}}, color={255,0,255}));
+
+ connect(dpChiWatSet_remote, div.u2) annotation (Line(points={{-140,-100},{-40,
+ -100},{-40,-86},{-22,-86}}, color={0,0,127}));
+annotation (
+ defaultComponentName="chiPumSpe",
+ Icon(coordinateSystem(extent={{-100,-100},{100,100}}),
+ graphics={
+ Rectangle(
+ extent={{-100,-100},{100,100}},
+ lineColor={0,0,127},
+ fillColor={255,255,255},
+ fillPattern=FillPattern.Solid),
+ Text(
+ extent={{-100,150},{100,110}},
+ textColor={0,0,255},
+ textString="%name"),
+ Text(
+ extent={{-98,92},{-44,70}},
+ textColor={255,0,255},
+ pattern=LinePattern.Dash,
+ textString="uChiWatPum"),
+ Text(
+ extent={{-98,10},{-26,-10}},
+ textColor={0,0,127},
+ pattern=LinePattern.Dash,
+ textString="dpChiWat_remote"),
+ Text(
+ extent={{22,12},{98,-10}},
+ textColor={0,0,127},
+ pattern=LinePattern.Dash,
+ textString="yChiWatPumSpe"),
+ Text(
+ extent={{-98,-68},{-10,-88}},
+ textColor={0,0,127},
+ pattern=LinePattern.Dash,
+ textString="dpChiWatSet_remote")}),
+ Diagram(coordinateSystem(preserveAspectRatio=false, extent={{-120,-120},{120,120}})),
+ Documentation(info="
+
+Block that output chilled water pump speed setpoint for primary-only plants where
+the remote pressure differential sensor is hardwired to the plant controller,
+according to ASHRAE RP-1711 Advanced Sequences of Operation for HVAC Systems Phase II –
+Central Plants and Hydronic Systems (Draft on March 23, 2020),
+section 5.2.6 Primary chilled water pumps, part 5.2.6.7 and 5.2.6.8.
+
+
+-
+When any chilled water pump is proven on,
uChiWatPum
= true,
+pump speed will be controlled by a reverse acting PID loop maintaining the
+differential pressure signal at a setpoint dpChiWatSet
. All pumps
+receive the same speed signal. PID loop output shall be mapped from minimum
+pump speed (minPumSpe
) at 0% to maximum pump speed
+(maxPumSpe
) at 100%.
+
+-
+Where multiple differential pressure sensors exist, a PID loop shall run for
+each sensor. Chilled water pumps shall be controlled to the maximum signal output
+of all DP sensor loops.
+
+
+", revisions="
+
+-
+August 1, 2019, by Jianjun Hu:
+First implementation.
+
+
+"));
+end Speed_primary_remoteDp;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Pumps/ChilledWater/Subsequences/Validation/EnableLag_primary_dP.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Pumps/ChilledWater/Subsequences/Validation/EnableLag_primary_dP.mo
new file mode 100644
index 00000000000..5e0c21cc10a
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Pumps/ChilledWater/Subsequences/Validation/EnableLag_primary_dP.mo
@@ -0,0 +1,88 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Pumps.ChilledWater.Subsequences.Validation;
+model EnableLag_primary_dP
+ "Validate sequence for enabling lag pump for primary-only plants using differential pressure pump speed control"
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Pumps.ChilledWater.Subsequences.EnableLag_primary_dP
+ enaLagChiPum(
+ final nPum=3,
+ final VChiWat_flow_nominal=0.5)
+ "Enable lag pump for primary-only plants using differential pressure pump speed control"
+ annotation (Placement(transformation(extent={{-20,10},{0,30}})));
+
+ Buildings.Controls.OBC.CDL.Discrete.TriggeredSampler nexLagPumTri
+ "Next lag pump enabling trigger"
+ annotation (Placement(transformation(extent={{40,50},{60,70}})));
+ Buildings.Controls.OBC.CDL.Discrete.TriggeredSampler lasLagPumTri
+ "Last lag pump disabling trigger"
+ annotation (Placement(transformation(extent={{40,-10},{60,10}})));
+
+protected
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant con[2](
+ final k=fill(true, 2)) "Constant true"
+ annotation (Placement(transformation(extent={{-80,-10},{-60,10}})));
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant con1(final k=false)
+ "Constant false"
+ annotation (Placement(transformation(extent={{-80,-50},{-60,-30}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Sine sin(
+ final amplitude=0.25,
+ final freqHz=1/3600,
+ final offset=0.25) "Measured chilled water flow rate"
+ annotation (Placement(transformation(extent={{-80,30},{-60,50}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Sine sin1(
+ final freqHz=1/3600) "Generate sine wave"
+ annotation (Placement(transformation(extent={{-20,50},{0,70}})));
+
+equation
+ connect(con[1].y, enaLagChiPum.uChiWatPum[1])
+ annotation (Line(points={{-58,0},{-40,0},{-40,14.8667},{-22,14.8667}},
+ color={255,0,255}));
+ connect(con[2].y, enaLagChiPum.uChiWatPum[2])
+ annotation (Line(points={{-58,0},{-40,0},{-40,16.2},{-22,16.2}},
+ color={255,0,255}));
+ connect(con1.y, enaLagChiPum.uChiWatPum[3])
+ annotation (Line(points={{-58,-40},{-40,-40},{-40,17.5333},{-22,17.5333}},
+ color={255,0,255}));
+ connect(sin.y, enaLagChiPum.VChiWat_flow)
+ annotation (Line(points={{-58,40},{-40,40},{-40,24},{-22,24}},
+ color={0,0,127}));
+ connect(sin1.y, nexLagPumTri.u)
+ annotation (Line(points={{2,60},{38,60}}, color={0,0,127}));
+ connect(enaLagChiPum.yUp, nexLagPumTri.trigger)
+ annotation (Line(points={{2,24},{50,24},{50,48.2}}, color={255,0,255}));
+ connect(sin1.y, lasLagPumTri.u)
+ annotation (Line(points={{2,60},{20,60},{20,0},{38,0}}, color={0,0,127}));
+ connect(enaLagChiPum.yDown, lasLagPumTri.trigger)
+ annotation (Line(points={{2,16},{10,16},{10,-20},{50,-20},{50,-11.8}},
+ color={255,0,255}));
+
+annotation (
+ experiment(StopTime=3600.0, Tolerance=1e-06),
+ __Dymola_Commands(file="modelica://Buildings/Resources/Scripts/Dymola/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Pumps/ChilledWater/Subsequences/Validation/EnableLag_primary_dP.mos"
+ "Simulate and plot"),
+ Documentation(info="
+
+This example validates
+
+Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Pumps.ChilledWater.Subsequences.EnableLag_primary_dP.
+
+", revisions="
+
+-
+Arpil 4, 2019, by Jianjun Hu:
+First implementation.
+
+
+"),
+ Icon(coordinateSystem(preserveAspectRatio=false, extent={{-100,-100},{100,100}}),
+ graphics={
+ Ellipse(lineColor = {75,138,73},
+ fillColor={255,255,255},
+ fillPattern = FillPattern.Solid,
+ extent = {{-100,-100},{100,100}}),
+ Polygon(lineColor = {0,0,255},
+ fillColor = {75,138,73},
+ pattern = LinePattern.None,
+ fillPattern = FillPattern.Solid,
+ points = {{-36,60},{64,0},{-36,-60},{-36,60}})}), Diagram(
+ coordinateSystem(preserveAspectRatio=false, extent={{-100,-100},{100,100}})));
+end EnableLag_primary_dP;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Pumps/ChilledWater/Subsequences/Validation/EnableLead_dedicated.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Pumps/ChilledWater/Subsequences/Validation/EnableLead_dedicated.mo
new file mode 100644
index 00000000000..e92fc561a2c
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Pumps/ChilledWater/Subsequences/Validation/EnableLead_dedicated.mo
@@ -0,0 +1,89 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Pumps.ChilledWater.Subsequences.Validation;
+model EnableLead_dedicated
+ "Validate sequence for enabling lead pump of plants with dedicated primary chilled water pumps"
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Pumps.ChilledWater.Subsequences.EnableLead_dedicated
+ enaLeaChiPum
+ "Enable lead chilled water pump when the lead chiller is enabled"
+ annotation (Placement(transformation(extent={{40,10},{60,30}})));
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Pumps.ChilledWater.Subsequences.EnableLead_dedicated
+ disLeaChiPum
+ "Disable lead pump due to that the lead chiller has been proven off"
+ annotation (Placement(transformation(extent={{40,-30},{60,-10}})));
+
+ Buildings.Controls.OBC.CDL.Logical.TrueHoldWithReset leaChiProOn(
+ final duration=2000) "Lead chiller proven on status"
+ annotation (Placement(transformation(extent={{-40,0},{-20,20}})));
+protected
+ Buildings.Controls.OBC.CDL.Logical.Sources.Pulse leaChiEna(
+ final period=3600,
+ final shift=300) "Lead chiller enabling status"
+ annotation (Placement(transformation(extent={{-80,30},{-60,50}})));
+ Buildings.Controls.OBC.CDL.Logical.Latch lat
+ "Maintains a true signal until conditions changes"
+ annotation (Placement(transformation(extent={{-20,-50},{0,-30}})));
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant con(
+ final k=false) "Constant false"
+ annotation (Placement(transformation(extent={{-60,-70},{-40,-50}})));
+ Buildings.Controls.OBC.CDL.Logical.Sources.Pulse enaPla(
+ final period=7200,
+ final shift=200)
+ "Plant enabling status"
+ annotation (Placement(transformation(extent={{-80,70},{-60,90}})));
+
+equation
+ connect(leaChiEna.y, enaLeaChiPum.uLeaChiEna) annotation (Line(points={{-58,40},
+ {20,40},{20,23},{38,23}}, color={255,0,255}));
+ connect(leaChiEna.y, disLeaChiPum.uLeaChiEna) annotation (Line(points={{-58,40},
+ {20,40},{20,-17},{38,-17}}, color={255,0,255}));
+ connect(leaChiEna.y, lat.u) annotation (Line(points={{-58,40},{20,40},{20,-20},
+ {-40,-20},{-40,-40},{-22,-40}}, color={255,0,255}));
+ connect(lat.y, disLeaChiPum.uLeaChiWatReq)
+ annotation (Line(points={{2,-40},{20,-40},{20,-28},{38,-28}},
+ color={255,0,255}));
+ connect(con.y, lat.clr)
+ annotation (Line(points={{-38,-60},{-30,-60},{-30,-46},{-22,-46}},
+ color={255,0,255}));
+ connect(leaChiEna.y, leaChiProOn.u) annotation (Line(points={{-58,40},{-50,40},
+ {-50,10},{-42,10}}, color={255,0,255}));
+ connect(leaChiProOn.y, enaLeaChiPum.uLeaChiSta) annotation (Line(points={{-18,10},
+ {10,10},{10,17},{38,17}}, color={255,0,255}));
+ connect(leaChiProOn.y, disLeaChiPum.uLeaChiSta) annotation (Line(points={{-18,10},
+ {10,10},{10,-23},{38,-23}}, color={255,0,255}));
+ connect(leaChiProOn.y, enaLeaChiPum.uLeaChiWatReq) annotation (Line(points={{
+ -18,10},{10,10},{10,12},{38,12}}, color={255,0,255}));
+ connect(enaPla.y, enaLeaChiPum.uPla) annotation (Line(points={{-58,80},{28,80},
+ {28,28},{38,28}}, color={255,0,255}));
+ connect(enaPla.y, disLeaChiPum.uPla) annotation (Line(points={{-58,80},{28,80},
+ {28,-12},{38,-12}}, color={255,0,255}));
+annotation (
+ experiment(StopTime=3600.0, Tolerance=1e-06),
+ __Dymola_Commands(file="modelica://Buildings/Resources/Scripts/Dymola/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Pumps/ChilledWater/Subsequences/Validation/EnableLead_dedicated.mos"
+ "Simulate and plot"),
+ Documentation(info="
+
+This example validates
+
+Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Pumps.ChilledWater.Subsequences.EnableLead_dedicated.
+
+", revisions="
+
+-
+Arpil 4, 2019, by Jianjun Hu:
+First implementation.
+
+
+"),
+ Icon(coordinateSystem(preserveAspectRatio=false, extent={{-100,-100},
+ {100,100}}), graphics={
+ Ellipse(lineColor = {75,138,73},
+ fillColor={255,255,255},
+ fillPattern = FillPattern.Solid,
+ extent = {{-100,-100},{100,100}}),
+ Polygon(lineColor = {0,0,255},
+ fillColor = {75,138,73},
+ pattern = LinePattern.None,
+ fillPattern = FillPattern.Solid,
+ points = {{-36,60},{64,0},{-36,-60},{-36,60}})}), Diagram(
+ coordinateSystem(preserveAspectRatio=false, extent={{-100,-100},{100,100}})));
+end EnableLead_dedicated;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Pumps/ChilledWater/Subsequences/Validation/EnableLead_headered.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Pumps/ChilledWater/Subsequences/Validation/EnableLead_headered.mo
new file mode 100644
index 00000000000..b68f329b8bf
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Pumps/ChilledWater/Subsequences/Validation/EnableLead_headered.mo
@@ -0,0 +1,69 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Pumps.ChilledWater.Subsequences.Validation;
+model EnableLead_headered
+ "Validate sequence for enabling lead pump of plants with headered primary chilled water pumps"
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Pumps.ChilledWater.Subsequences.EnableLead_headered
+ enaLeaChiPum(final nChi=3)
+ "Enable lead chilled water pump based on the status of chilled water isolation valves"
+ annotation (Placement(transformation(extent={{40,-10},{60,10}})));
+
+protected
+ Buildings.Controls.OBC.CDL.Logical.Sources.Pulse isoVal(
+ final period=3600,
+ final shift=300) "Isolation valve status"
+ annotation (Placement(transformation(extent={{-20,50},{0,70}})));
+ Buildings.Controls.OBC.CDL.Logical.Sources.Pulse isoVal1(
+ final period=3600,
+ final shift=600) "Isolation valve status"
+ annotation (Placement(transformation(extent={{-20,-10},{0,10}})));
+ Buildings.Controls.OBC.CDL.Logical.Sources.Pulse isoVal2(
+ final period=3600,
+ final shift=1000) "Isolation valve status"
+ annotation (Placement(transformation(extent={{-20,-70},{0,-50}})));
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant con1(
+ final k=false)
+ "Logical false"
+ annotation (Placement(transformation(extent={{-60,-40},{-40,-20}})));
+
+equation
+ connect(isoVal.y, enaLeaChiPum.uChiIsoVal[3])
+ annotation (Line(points={{2,60},{20,60},{20,0.666667},{38,0.666667}},
+ color={255,0,255}));
+ connect(isoVal1.y, enaLeaChiPum.uChiIsoVal[2])
+ annotation (Line(points={{2,0},{38,0}}, color={255,0,255}));
+ connect(isoVal2.y, enaLeaChiPum.uChiIsoVal[1])
+ annotation (Line(points={{2,-60},{20,-60},{20,-0.666667},{38,-0.666667}},
+ color={255,0,255}));
+ connect(con1.y, enaLeaChiPum.uEnaPla) annotation (Line(points={{-38,-30},{10,-30},
+ {10,-6},{38,-6}}, color={255,0,255}));
+annotation (
+ experiment(StopTime=3600.0, Tolerance=1e-06),
+ __Dymola_Commands(file="modelica://Buildings/Resources/Scripts/Dymola/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Pumps/ChilledWater/Subsequences/Validation/EnableLead_headered.mos"
+ "Simulate and plot"),
+ Documentation(info="
+
+This example validates
+
+Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Pumps.ChilledWater.Subsequences.EnableLead_headered.
+
+", revisions="
+
+-
+Arpil 4, 2019, by Jianjun Hu:
+First implementation.
+
+
+"),
+ Icon(coordinateSystem(preserveAspectRatio=false, extent={{-100,-100},
+ {100,100}}), graphics={
+ Ellipse(lineColor = {75,138,73},
+ fillColor={255,255,255},
+ fillPattern = FillPattern.Solid,
+ extent = {{-100,-100},{100,100}}),
+ Polygon(lineColor = {0,0,255},
+ fillColor = {75,138,73},
+ pattern = LinePattern.None,
+ fillPattern = FillPattern.Solid,
+ points = {{-36,60},{64,0},{-36,-60},{-36,60}})}), Diagram(
+ coordinateSystem(preserveAspectRatio=false, extent={{-100,-100},{100,100}})));
+end EnableLead_headered;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Pumps/ChilledWater/Subsequences/Validation/Speed_primary_localDp.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Pumps/ChilledWater/Subsequences/Validation/Speed_primary_localDp.mo
new file mode 100644
index 00000000000..61b6bc32d5a
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Pumps/ChilledWater/Subsequences/Validation/Speed_primary_localDp.mo
@@ -0,0 +1,88 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Pumps.ChilledWater.Subsequences.Validation;
+model Speed_primary_localDp
+ "Validate sequence of controlling chilled water pump speed for primary-only plants with local DP sensor hardwired to the plant controller"
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Pumps.ChilledWater.Subsequences.Speed_primary_localDp
+ chiPumSpe(nSen=2, nPum=2)
+ "Chilled water pump speed control based local pressure difference sensor"
+ annotation (Placement(transformation(extent={{20,-10},{40,10}})));
+
+protected
+ Buildings.Controls.OBC.CDL.Logical.Sources.Pulse pumSta[2](
+ final width=fill(0.9, 2),
+ final period=fill(10, 2),
+ final shift=fill(1, 2)) "Pump status"
+ annotation (Placement(transformation(extent={{-60,30},{-40,50}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant difPreSet(
+ final k=8.5*6894.75)
+ "Pressure difference setpoint"
+ annotation (Placement(transformation(extent={{-60,-90},{-40,-70}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Sine remPreSen1(
+ final offset=8.5*6894.75,
+ final freqHz=1/10,
+ final amplitude=1.5*6894.75) "Remote pressure difference sensor reading"
+ annotation (Placement(transformation(extent={{-60,-10},{-40,10}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Sine remPreSen2(
+ final offset=8.5*6894.75,
+ final freqHz=1/10,
+ final startTime=2,
+ final amplitude=1*6894.75) "Remote pressure difference sensor reading"
+ annotation (Placement(transformation(extent={{-60,-50},{-40,-30}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Sine locPreSen(
+ final freqHz=1/5,
+ final amplitude=1*6894.75,
+ final offset=8.5*6894.75) "Local pressure difference sensor reading"
+ annotation (Placement(transformation(extent={{-60,70},{-40,90}})));
+ Buildings.Controls.OBC.CDL.Routing.RealScalarReplicator reaRep(
+ final nout=2) "Replicate real input"
+ annotation (Placement(transformation(extent={{-30,-90},{-10,-70}})));
+
+equation
+ connect(locPreSen.y, chiPumSpe.dpChiWat_local)
+ annotation (Line(points={{-38,80},{0,80},{0,8},{18,8}},
+ color={0,0,127}));
+ connect(remPreSen1.y, chiPumSpe.dpChiWat_remote[1])
+ annotation (Line(points={{-38,0},{-20,0},{-20,-5},{18,-5}},
+ color={0,0,127}));
+ connect(remPreSen2.y, chiPumSpe.dpChiWat_remote[2])
+ annotation (Line(points={{-38,-40},{-20,-40},{-20,-3},{18,-3}},
+ color={0,0,127}));
+ connect(pumSta.y, chiPumSpe.uChiWatPum)
+ annotation (Line(points={{-38,40},{-20,40},{-20,4},{18,4}},
+ color={255,0,255}));
+ connect(difPreSet.y, reaRep.u)
+ annotation (Line(points={{-38,-80},{-32,-80}}, color={0,0,127}));
+ connect(reaRep.y, chiPumSpe.dpChiWatSet_remote)
+ annotation (Line(points={{-8,-80},{0,-80},{0,-8},{18,-8}}, color={0,0,127}));
+
+annotation (
+ experiment(StopTime=10.0, Tolerance=1e-06),
+ __Dymola_Commands(file="modelica://Buildings/Resources/Scripts/Dymola/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Pumps/ChilledWater/Subsequences/Validation/Speed_primary_localDp.mos"
+ "Simulate and plot"),
+ Documentation(info="
+
+This example validates
+
+Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Pumps.ChilledWater.Subsequences.Speed_primary_localDp.
+
+", revisions="
+
+-
+Arpil 4, 2019, by Jianjun Hu:
+First implementation.
+
+
+"),
+ Icon(coordinateSystem(preserveAspectRatio=false, extent={{-100,-100},{100,100}}),
+ graphics={
+ Ellipse(lineColor = {75,138,73},
+ fillColor={255,255,255},
+ fillPattern = FillPattern.Solid,
+ extent = {{-100,-100},{100,100}}),
+ Polygon(lineColor = {0,0,255},
+ fillColor = {75,138,73},
+ pattern = LinePattern.None,
+ fillPattern = FillPattern.Solid,
+ points = {{-36,60},{64,0},{-36,-60},{-36,60}})}), Diagram(
+ coordinateSystem(preserveAspectRatio=false, extent={{-100,-100},{100,100}})));
+end Speed_primary_localDp;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Pumps/ChilledWater/Subsequences/Validation/Speed_primary_remoteDp.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Pumps/ChilledWater/Subsequences/Validation/Speed_primary_remoteDp.mo
new file mode 100644
index 00000000000..cb0da5889f0
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Pumps/ChilledWater/Subsequences/Validation/Speed_primary_remoteDp.mo
@@ -0,0 +1,78 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Pumps.ChilledWater.Subsequences.Validation;
+model Speed_primary_remoteDp
+ "Validate sequence of controlling chilled water pump speed for primary-only plants with remote DP sensor hardwired to the plant controller"
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Pumps.ChilledWater.Subsequences.Speed_primary_remoteDp
+ chiPumSpe(nSen=2, nPum=2)
+ "Chilled water pump speed control based remote pressure difference sensor"
+ annotation (Placement(transformation(extent={{20,-10},{40,10}})));
+
+//protected
+ Buildings.Controls.OBC.CDL.Logical.Sources.Pulse pumSta[2](
+ final width=fill(0.9, 2),
+ final period=fill(10, 2),
+ final shift=fill(1, 2)) "Pump status"
+ annotation (Placement(transformation(extent={{-60,30},{-40,50}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant difPreSet(
+ final k=8.5*6894.75)
+ "Pressure difference setpoint"
+ annotation (Placement(transformation(extent={{-60,-90},{-40,-70}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Sine remPreSen1(
+ final offset=8.5*6894.75,
+ final freqHz=1/10,
+ final amplitude=1.5*6894.75) "Remote pressure difference sensor reading"
+ annotation (Placement(transformation(extent={{-60,-10},{-40,10}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Sine remPreSen2(
+ final offset=8.5*6894.75,
+ final freqHz=1/10,
+ final startTime=2,
+ final amplitude=1*6894.75) "Remote pressure difference sensor reading"
+ annotation (Placement(transformation(extent={{-60,-50},{-40,-30}})));
+ Buildings.Controls.OBC.CDL.Routing.RealScalarReplicator reaRep(
+ final nout=2) "Replicate real input"
+ annotation (Placement(transformation(extent={{-30,-90},{-10,-70}})));
+
+equation
+ connect(pumSta.y, chiPumSpe.uChiWatPum)
+ annotation (Line(points={{-38,40},{-20,40},{-20,8},{18,8}},
+ color={255,0,255}));
+ connect(remPreSen1.y, chiPumSpe.dpChiWat_remote[1]) annotation (Line(points={
+ {-38,0},{-10,0},{-10,-1},{18,-1}}, color={0,0,127}));
+ connect(remPreSen2.y, chiPumSpe.dpChiWat_remote[2]) annotation (Line(points={
+ {-38,-40},{-28,-40},{-28,1},{18,1}}, color={0,0,127}));
+ connect(difPreSet.y, reaRep.u)
+ annotation (Line(points={{-38,-80},{-32,-80}}, color={0,0,127}));
+ connect(reaRep.y, chiPumSpe.dpChiWatSet_remote) annotation (Line(points={{-8,
+ -80},{0,-80},{0,-8},{18,-8}}, color={0,0,127}));
+
+annotation (
+ experiment(StopTime=10.0, Tolerance=1e-06),
+ __Dymola_Commands(file="modelica://Buildings/Resources/Scripts/Dymola/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Pumps/ChilledWater/Subsequences/Validation/Speed_primary_remoteDp.mos"
+ "Simulate and plot"),
+ Documentation(info="
+
+This example validates
+
+Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Pumps.ChilledWater.Subsequences.Speed_primary_remoteDp.
+
+", revisions="
+
+-
+Arpil 4, 2019, by Jianjun Hu:
+First implementation.
+
+
+"),
+ Icon(coordinateSystem(preserveAspectRatio=false, extent={{-100,-100},{100,100}}),
+ graphics={
+ Ellipse(lineColor = {75,138,73},
+ fillColor={255,255,255},
+ fillPattern = FillPattern.Solid,
+ extent = {{-100,-100},{100,100}}),
+ Polygon(lineColor = {0,0,255},
+ fillColor = {75,138,73},
+ pattern = LinePattern.None,
+ fillPattern = FillPattern.Solid,
+ points = {{-36,60},{64,0},{-36,-60},{-36,60}})}), Diagram(
+ coordinateSystem(preserveAspectRatio=false, extent={{-100,-100},{100,100}})));
+end Speed_primary_remoteDp;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Pumps/ChilledWater/Subsequences/Validation/package.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Pumps/ChilledWater/Subsequences/Validation/package.mo
new file mode 100644
index 00000000000..d30e244dc53
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Pumps/ChilledWater/Subsequences/Validation/package.mo
@@ -0,0 +1,37 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Pumps.ChilledWater.Subsequences;
+package Validation "Collection of validation models"
+
+annotation (preferredView="info", Documentation(info="
+
+This package contains validation models for the classes in
+
+Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Pumps.ChilledWater.Subsequences.
+
+
+Note that most validation models contain simple input data
+which may not be realistic, but for which the correct
+output can be obtained through an analytic solution.
+The examples plot various outputs, which have been verified against these
+solutions. These model outputs are stored as reference data and
+used for continuous validation whenever models in the library change.
+
+"),
+ Icon(graphics={
+ Rectangle(
+ lineColor={200,200,200},
+ fillColor={248,248,248},
+ fillPattern=FillPattern.HorizontalCylinder,
+ extent={{-100.0,-100.0},{100.0,100.0}},
+ radius=25.0),
+ Rectangle(
+ lineColor={128,128,128},
+ extent={{-100.0,-100.0},{100.0,100.0}},
+ radius=25.0),
+ Polygon(
+ origin={8.0,14.0},
+ lineColor={78,138,73},
+ fillColor={78,138,73},
+ pattern=LinePattern.None,
+ fillPattern=FillPattern.Solid,
+ points={{-58.0,46.0},{42.0,-14.0},{-58.0,-74.0},{-58.0,46.0}})}));
+end Validation;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Pumps/ChilledWater/Subsequences/Validation/package.order b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Pumps/ChilledWater/Subsequences/Validation/package.order
new file mode 100644
index 00000000000..d16f96117bb
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Pumps/ChilledWater/Subsequences/Validation/package.order
@@ -0,0 +1,5 @@
+EnableLag_primary_dP
+EnableLead_dedicated
+EnableLead_headered
+Speed_primary_localDp
+Speed_primary_remoteDp
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Pumps/ChilledWater/Subsequences/package.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Pumps/ChilledWater/Subsequences/package.mo
new file mode 100644
index 00000000000..d6272b5fe84
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Pumps/ChilledWater/Subsequences/package.mo
@@ -0,0 +1,45 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Pumps.ChilledWater;
+package Subsequences "Chilled water pump control sequences"
+
+annotation (
+preferredView="info", Documentation(info="
+
+This package contains subsequences for chilled water pumps control for plants with
+parallel chillers.
+
+"),
+Icon(graphics={
+ Rectangle(
+ lineColor={200,200,200},
+ fillColor={248,248,248},
+ fillPattern=FillPattern.HorizontalCylinder,
+ extent={{-100.0,-100.0},{100.0,100.0}},
+ radius=25.0),
+ Rectangle(
+ lineColor={128,128,128},
+ extent={{-100.0,-100.0},{100.0,100.0}},
+ radius=25.0),
+ Ellipse(
+ origin={10.0,10.0},
+ fillColor={76,76,76},
+ pattern=LinePattern.None,
+ fillPattern=FillPattern.Solid,
+ extent={{-80.0,-80.0},{-20.0,-20.0}}),
+ Ellipse(
+ origin={10.0,10.0},
+ pattern=LinePattern.None,
+ fillPattern=FillPattern.Solid,
+ extent={{0.0,-80.0},{60.0,-20.0}}),
+ Ellipse(
+ origin={10.0,10.0},
+ fillColor={128,128,128},
+ pattern=LinePattern.None,
+ fillPattern=FillPattern.Solid,
+ extent={{0.0,0.0},{60.0,60.0}}),
+ Ellipse(
+ origin={10.0,10.0},
+ lineColor={128,128,128},
+ fillColor={255,255,255},
+ fillPattern=FillPattern.Solid,
+ extent={{-80.0,0.0},{-20.0,60.0}})}));
+end Subsequences;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Pumps/ChilledWater/Subsequences/package.order b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Pumps/ChilledWater/Subsequences/package.order
new file mode 100644
index 00000000000..9e96bb60c2d
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Pumps/ChilledWater/Subsequences/package.order
@@ -0,0 +1,6 @@
+EnableLag_primary_dP
+EnableLead_dedicated
+EnableLead_headered
+Speed_primary_localDp
+Speed_primary_remoteDp
+Validation
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Pumps/ChilledWater/Validation/Controller.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Pumps/ChilledWater/Validation/Controller.mo
new file mode 100644
index 00000000000..05d3db138c5
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Pumps/ChilledWater/Validation/Controller.mo
@@ -0,0 +1,187 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Pumps.ChilledWater.Validation;
+model Controller "Validate chiller water pump control sequence"
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Pumps.ChilledWater.Controller
+ heaNoLoc(
+ final nPum=3,
+ final nPum_nominal=3)
+ "Pump speed control for plant with headered primary chilled water pump and without local DP sensor"
+ annotation (Placement(transformation(extent={{80,150},{100,170}})));
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Pumps.ChilledWater.Controller
+ dedNoLoc(
+ final have_heaPum=false,
+ final nPum=3,
+ final nPum_nominal=3)
+ "Pump speed control for plant with dedicated primary chilled water pump and without local DP sensor"
+ annotation (Placement(transformation(extent={{80,60},{100,80}})));
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Pumps.ChilledWater.Controller
+ dedLoc(
+ final have_heaPum=false,
+ final have_locSen=true,
+ final nPum=3,
+ final nPum_nominal=3)
+ "Pump speed control for plant with dedicated primary chilled water pump and with local DP sensor"
+ annotation (Placement(transformation(extent={{80,-90},{100,-70}})));
+
+protected
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant conInt[3](
+ final k={2,1,3})
+ "Chilled water pump operating priority"
+ annotation (Placement(transformation(extent={{-60,150},{-40,170}})));
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant con(final k=true)
+ "Constant true"
+ annotation (Placement(transformation(extent={{-20,130},{0,150}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Sine chiWatFlo(
+ final amplitude=0.25,
+ final freqHz=1/3600,
+ final offset=0.25) "Measured chilled water flow rate"
+ annotation (Placement(transformation(extent={{-60,-60},{-40,-40}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Sine remPreSen1(
+ final offset=8.4*6894.75,
+ final freqHz=1/3600,
+ final amplitude=0.2*6894.75) "Remote pressure difference sensor reading"
+ annotation (Placement(transformation(extent={{-100,-80},{-80,-60}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Sine remPreSen2(
+ final offset=8.5*6894.75,
+ final freqHz=1/3600,
+ final startTime=2,
+ final amplitude=0.05*6894.75) "Remote pressure difference sensor reading"
+ annotation (Placement(transformation(extent={{-60,-100},{-40,-80}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant difPreSet(
+ final k=8.5*6894.75)
+ "Pressure difference setpoint"
+ annotation (Placement(transformation(extent={{-60,-140},{-40,-120}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Sine locPreSen(
+ final offset=8.5*6894.75,
+ final freqHz=1/3600,
+ final startTime=2,
+ final amplitude=0.2*6894.75) "Local pressure difference sensor reading"
+ annotation (Placement(transformation(extent={{-100,-120},{-80,-100}})));
+ Buildings.Controls.OBC.CDL.Logical.Pre enaStaRet[3](
+ final pre_u_start={true,true,false})
+ "Pump enabled status return"
+ annotation (Placement(transformation(extent={{-60,80},{-40,100}})));
+ Buildings.Controls.OBC.CDL.Logical.TrueHoldWithReset leaChiProOn(
+ final duration=2000)
+ "Lead chiller proven on status"
+ annotation (Placement(transformation(extent={{-20,-30},{0,-10}})));
+ Buildings.Controls.OBC.CDL.Routing.BooleanScalarReplicator booRep(
+ final nout=3) "Replicate plant enabling status"
+ annotation (Placement(transformation(extent={{-20,30},{0,50}})));
+ Buildings.Controls.OBC.CDL.Logical.Sources.Pulse enaPla(
+ final period=7200,
+ final shift=200)
+ "Plant enabling status"
+ annotation (Placement(transformation(extent={{-60,50},{-40,70}})));
+ Buildings.Controls.OBC.CDL.Logical.Sources.Pulse leaChiEna(
+ final period=3600,
+ final shift=300) "Lead chiller enabling status"
+ annotation (Placement(transformation(extent={{-60,0},{-40,20}})));
+ Buildings.Controls.OBC.CDL.Routing.RealScalarReplicator reaRep(
+ final nout=2)
+ "Replicate real input"
+ annotation (Placement(transformation(extent={{-20,-140},{0,-120}})));
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant con1(
+ final k=false)
+ "Constant false"
+ annotation (Placement(transformation(extent={{-108,110},{-88,130}})));
+
+equation
+ connect(conInt.y, heaNoLoc.uPumLeaLag)
+ annotation (Line(points={{-38,160},{32,160},{32,171},{78,171}}, color={255,127,0}));
+ connect(chiWatFlo.y, heaNoLoc.VChiWat_flow)
+ annotation (Line(points={{-38,-50},{48,-50},{48,155},{78,155}},
+ color={0,0,127}));
+ connect(remPreSen1.y, heaNoLoc.dpChiWat_remote[1])
+ annotation (Line(points={{-78,-70},{52,-70},{52,151},{78,151}},
+ color={0,0,127}));
+ connect(remPreSen2.y, heaNoLoc.dpChiWat_remote[2])
+ annotation (Line(points={{-38,-90},{52,-90},{52,151},{78,151}},
+ color={0,0,127}));
+ connect(remPreSen1.y, dedNoLoc.dpChiWat_remote[1])
+ annotation (Line(points={{-78,-70},{52,-70},{52,61},{78,61}},
+ color={0,0,127}));
+ connect(remPreSen2.y, dedNoLoc.dpChiWat_remote[2])
+ annotation (Line(points={{-38,-90},{52,-90},{52,61},{78,61}},
+ color={0,0,127}));
+ connect(locPreSen.y, dedLoc.dpChiWat_local)
+ annotation (Line(points={{-78,-110},{48,-110},{48,-87},{78,-87}}, color={0,0,127}));
+ connect(remPreSen1.y, dedLoc.dpChiWat_remote[1])
+ annotation (Line(points={{-78,-70},{52,-70},{52,-89},{78,-89}},
+ color={0,0,127}));
+ connect(remPreSen2.y, dedLoc.dpChiWat_remote[2])
+ annotation (Line(points={{-38,-90},{52,-90},{52,-89},{78,-89}},
+ color={0,0,127}));
+ connect(enaStaRet.y, heaNoLoc.uChiWatPum) annotation (Line(points={{-38,90},{44,
+ 90},{44,167},{78,167}}, color={255,0,255}));
+ connect(con.y, heaNoLoc.uChiIsoVal[1])
+ annotation (Line(points={{2,140},{36,140},{36,159},{78,159}}, color={255,0,255}));
+ connect(con.y, heaNoLoc.uChiIsoVal[2])
+ annotation (Line(points={{2,140},{36,140},{36,159},{78,159}}, color={255,0,255}));
+ connect(heaNoLoc.yChiWatPum, enaStaRet.u) annotation (Line(points={{102,160},{
+ 120,160},{120,110},{-80,110},{-80,90},{-62,90}}, color={255,0,255}));
+ connect(enaPla.y, dedNoLoc.uPla) annotation (Line(points={{-38,60},{20,60},{20,
+ 79},{78,79}}, color={255,0,255}));
+ connect(enaPla.y, dedLoc.uPla) annotation (Line(points={{-38,60},{20,60},{20,-71},
+ {78,-71}}, color={255,0,255}));
+ connect(leaChiEna.y, dedNoLoc.uLeaChiEna) annotation (Line(points={{-38,10},{24,
+ 10},{24,75},{78,75}}, color={255,0,255}));
+ connect(leaChiEna.y, dedLoc.uLeaChiEna) annotation (Line(points={{-38,10},{24,
+ 10},{24,-75},{78,-75}}, color={255,0,255}));
+ connect(leaChiEna.y, leaChiProOn.u) annotation (Line(points={{-38,10},{-30,10},
+ {-30,-20},{-22,-20}}, color={255,0,255}));
+ connect(leaChiProOn.y, dedNoLoc.uLeaChiSta) annotation (Line(points={{2,-20},{
+ 28,-20},{28,73},{78,73}}, color={255,0,255}));
+ connect(leaChiProOn.y, dedLoc.uLeaChiSta) annotation (Line(points={{2,-20},{28,
+ -20},{28,-77},{78,-77}}, color={255,0,255}));
+ connect(leaChiProOn.y, dedNoLoc.uLeaChiWatReq) annotation (Line(points={{2,-20},
+ {28,-20},{28,71},{78,71}}, color={255,0,255}));
+ connect(leaChiProOn.y, dedLoc.uLeaChiWatReq) annotation (Line(points={{2,-20},
+ {28,-20},{28,-79},{78,-79}}, color={255,0,255}));
+ connect(enaPla.y, booRep.u) annotation (Line(points={{-38,60},{-30,60},{-30,40},
+ {-22,40}}, color={255,0,255}));
+ connect(booRep.y, dedNoLoc.uChiWatPum) annotation (Line(points={{2,40},{32,40},
+ {32,77},{78,77}}, color={255,0,255}));
+ connect(booRep.y, dedLoc.uChiWatPum) annotation (Line(points={{2,40},{32,40},{
+ 32,-73},{78,-73}}, color={255,0,255}));
+ connect(difPreSet.y, reaRep.u)
+ annotation (Line(points={{-38,-130},{-22,-130}}, color={0,0,127}));
+ connect(reaRep.y, heaNoLoc.dpChiWatSet_remote) annotation (Line(points={{2,-130},
+ {56,-130},{56,149},{78,149}}, color={0,0,127}));
+ connect(reaRep.y, dedNoLoc.dpChiWatSet_remote) annotation (Line(points={{2,-130},
+ {56,-130},{56,59},{78,59}}, color={0,0,127}));
+ connect(reaRep.y, dedLoc.dpChiWatSet_remote) annotation (Line(points={{2,-130},
+ {56,-130},{56,-91},{78,-91}}, color={0,0,127}));
+ connect(con1.y, heaNoLoc.uEnaPla) annotation (Line(points={{-86,120},{40,120},
+ {40,157},{78,157}}, color={255,0,255}));
+annotation (
+ experiment(StopTime=3600.0, Tolerance=1e-06),
+ __Dymola_Commands(file="modelica://Buildings/Resources/Scripts/Dymola/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Pumps/ChilledWater/Validation/Controller.mos"
+ "Simulate and plot"),
+ Documentation(info="
+
+This example validates
+
+Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Pumps.ChilledWater.Controller.
+
+", revisions="
+
+-
+Arpil 4, 2019, by Jianjun Hu:
+First implementation.
+
+
+"),
+ Icon(coordinateSystem(preserveAspectRatio=false, extent={{-100,-100},{100,100}}),
+ graphics={
+ Ellipse(lineColor = {75,138,73},
+ fillColor={255,255,255},
+ fillPattern = FillPattern.Solid,
+ extent = {{-100,-100},{100,100}}),
+ Polygon(lineColor = {0,0,255},
+ fillColor = {75,138,73},
+ pattern = LinePattern.None,
+ fillPattern = FillPattern.Solid,
+ points = {{-36,60},{64,0},{-36,-60},{-36,60}})}),
+ Diagram(coordinateSystem(preserveAspectRatio=false, extent={{-120,-180},{140,180}})));
+end Controller;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Pumps/ChilledWater/Validation/package.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Pumps/ChilledWater/Validation/package.mo
new file mode 100644
index 00000000000..abf439d8131
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Pumps/ChilledWater/Validation/package.mo
@@ -0,0 +1,37 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Pumps.ChilledWater;
+package Validation "Collection of validation models"
+
+annotation (preferredView="info", Documentation(info="
+
+This package contains validation models for the classes in
+
+Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Pumps.ChilledWater.
+
+
+Note that most validation models contain simple input data
+which may not be realistic, but for which the correct
+output can be obtained through an analytic solution.
+The examples plot various outputs, which have been verified against these
+solutions. These model outputs are stored as reference data and
+used for continuous validation whenever models in the library change.
+
+"),
+ Icon(graphics={
+ Rectangle(
+ lineColor={200,200,200},
+ fillColor={248,248,248},
+ fillPattern=FillPattern.HorizontalCylinder,
+ extent={{-100.0,-100.0},{100.0,100.0}},
+ radius=25.0),
+ Rectangle(
+ lineColor={128,128,128},
+ extent={{-100.0,-100.0},{100.0,100.0}},
+ radius=25.0),
+ Polygon(
+ origin={8.0,14.0},
+ lineColor={78,138,73},
+ fillColor={78,138,73},
+ pattern=LinePattern.None,
+ fillPattern=FillPattern.Solid,
+ points={{-58.0,46.0},{42.0,-14.0},{-58.0,-74.0},{-58.0,46.0}})}));
+end Validation;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Pumps/ChilledWater/Validation/package.order b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Pumps/ChilledWater/Validation/package.order
new file mode 100644
index 00000000000..8cba75e31a7
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Pumps/ChilledWater/Validation/package.order
@@ -0,0 +1 @@
+Controller
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Pumps/ChilledWater/package.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Pumps/ChilledWater/package.mo
new file mode 100644
index 00000000000..0bdbf6ec5bf
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Pumps/ChilledWater/package.mo
@@ -0,0 +1,33 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Pumps;
+package ChilledWater "Sequences for chilled water pump control"
+
+annotation (
+preferredView="info", Documentation(info="
+
+This package contains control sequences for chilled water pumps.
+The implementations are based on section 5.2.6 Primary chilled water pumps,
+in ASHRAE RP-1711 Advanced Sequences of Operation for HVAC Systems Phase II –
+Central Plants and Hydronic Systems (draft version on March 23, 2020).
+
+"),
+ Icon(graphics={
+ Rectangle(
+ lineColor={200,200,200},
+ fillColor={248,248,248},
+ fillPattern=FillPattern.HorizontalCylinder,
+ extent={{-100.0,-100.0},{100.0,100.0}},
+ radius=25.0),
+ Rectangle(
+ lineColor={128,128,128},
+ extent={{-100.0,-100.0},{100.0,100.0}},
+ radius=25.0),
+ Ellipse(
+ extent={{-66,66},{68,-68}},
+ lineColor={0,0,0},
+ fillColor={255,255,255},
+ fillPattern=FillPattern.Solid), Polygon(
+ points={{0,66},{0,-68},{68,0},{0,66}},
+ lineColor={0,0,0},
+ fillColor={0,127,255},
+ fillPattern=FillPattern.Solid)}));
+end ChilledWater;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Pumps/ChilledWater/package.order b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Pumps/ChilledWater/package.order
new file mode 100644
index 00000000000..9ffbffcb990
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Pumps/ChilledWater/package.order
@@ -0,0 +1,3 @@
+Controller
+Subsequences
+Validation
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Pumps/CondenserWater/Controller.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Pumps/CondenserWater/Controller.mo
new file mode 100644
index 00000000000..ddcaba49fd6
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Pumps/CondenserWater/Controller.mo
@@ -0,0 +1,316 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Pumps.CondenserWater;
+block Controller "Condenser water pump controller"
+
+ parameter Boolean have_heaPum = true
+ "Flag of headered condenser water pumps design: true=headered, false=dedicated";
+ parameter Boolean have_WSE = true
+ "Flag of waterside economizer: true=have WSE, false=no WSE";
+ parameter Boolean fixSpe = false
+ "Flag to indicate if the plant has fix speed condenser water pump";
+ parameter Integer nChi=2 "Total number of chillers";
+ parameter Integer nConWatPum=2 "Total number of condenser water pumps";
+ parameter Integer totSta=6
+ "Total number of plant stages, including stage zero and the stages with a WSE, if applicable"
+ annotation (Dialog(group="Stage design speed"));
+ parameter Integer nChiSta = 3
+ "Total number of chiller stages, including stage zero but not the stages with a WSE, if applicable";
+ parameter Real staVec[totSta]={0,0.5,1,1.5,2,2.5}
+ "Chiller stage vector, element value like x.5 means chiller stage x plus WSE"
+ annotation (Dialog(group="Stage design speed"));
+ parameter Real desConWatPumSpe[totSta]={0,0.5,0.75,0.6,0.75,0.9}
+ "Design condenser water pump speed setpoints, according to current chiller stage and WSE status"
+ annotation (Dialog(group="Stage design speed"));
+ parameter Real desConWatPumNum[totSta]={0,1,1,2,2,2}
+ "Design number of condenser water pumps that should be ON, according to current chiller stage and WSE status"
+ annotation (Dialog(group="Stage design speed"));
+ parameter Real desChiNum[nChiSta]={0,1,2}
+ "Design number of chiller that should be ON, according to current chiller stage"
+ annotation (Dialog(group="Stage design speed", enable=fixSpe));
+ parameter Real pumSpeChe = 0.05
+ "Lower threshold value to check if condenser water pump has achieved setpoint";
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uChiConIsoVal[nChi]
+ "Chiller condenser water isolation valve status"
+ annotation (Placement(transformation(extent={{-160,130},{-120,170}}),
+ iconTransformation(extent={{-140,80},{-100,120}})));
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uLeaChiEna
+ "Lead chiller enabling status: true=lead chiller is enabled"
+ annotation (Placement(transformation(extent={{-160,100},{-120,140}}),
+ iconTransformation(extent={{-140,60},{-100,100}})));
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uLeaChiSta
+ "Lead chiller status: true=lead chiller proven on"
+ annotation (Placement(transformation(extent={{-162,70},{-122,110}}),
+ iconTransformation(extent={{-140,40},{-100,80}})));
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uLeaConWatReq
+ "Status indicating if chiller is requesting condenser water"
+ annotation (Placement(transformation(extent={{-162,40},{-122,80}}),
+ iconTransformation(extent={{-140,20},{-100,60}})));
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uEnaPla
+ "True: plant is just enabled"
+ annotation(Placement(transformation(extent={{-160,10},{-120,50}}),
+ iconTransformation(extent={{-140,0},{-100,40}})));
+ Buildings.Controls.OBC.CDL.Interfaces.IntegerInput uChiSta
+ "Current chiller stage that does not include WSE"
+ annotation (Placement(transformation(extent={{-160,-26},{-120,14}}),
+ iconTransformation(extent={{-140,-30},{-100,10}})));
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uWSE if have_WSE
+ "Water side economizer status: true = ON, false = OFF"
+ annotation (Placement(transformation(extent={{-160,-60},{-120,-20}}),
+ iconTransformation(extent={{-140,-50},{-100,-10}})));
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput uConWatPumSpeSet(
+ final min=0,
+ final max=1,
+ final unit="1") if not fixSpe
+ "Condenser water pump speed setpoint"
+ annotation (Placement(transformation(extent={{-160,-90},{-120,-50}}),
+ iconTransformation(extent={{-140,-70},{-100,-30}})));
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput uConWatPumSpe(
+ final min=0,
+ final max=1,
+ final unit="1") if not fixSpe
+ "Current condenser water pump speed"
+ annotation (Placement(transformation(extent={{-160,-130},{-120,-90}}),
+ iconTransformation(extent={{-140,-90},{-100,-50}})));
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uConWatPum[nConWatPum] if fixSpe
+ "Status indicating if condenser water pump is running"
+ annotation (Placement(transformation(extent={{-160,-160},{-120,-120}}),
+ iconTransformation(extent={{-140,-110},{-100,-70}})));
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanOutput yLeaPum
+ "Lead pump status setpoint"
+ annotation (Placement(transformation(extent={{120,110},{160,150}}),
+ iconTransformation(extent={{100,70},{140,110}})));
+ Buildings.Controls.OBC.CDL.Interfaces.RealOutput yDesConWatPumSpe
+ if not fixSpe
+ "Condenser water pump design speed at current stage"
+ annotation (Placement(transformation(extent={{120,40},{160,80}}),
+ iconTransformation(extent={{100,10},{140,50}})));
+ Buildings.Controls.OBC.CDL.Interfaces.IntegerOutput yConWatPumNum
+ "Number of operating condenser water pumps"
+ annotation (Placement(transformation(extent={{120,0},{160,40}}),
+ iconTransformation(extent={{100,-50},{140,-10}})));
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanOutput yPumSpeChe
+ "Flag to indicate if pump speed achieves setpoint"
+ annotation (Placement(transformation(extent={{120,-70},{160,-30}}),
+ iconTransformation(extent={{100,-110},{140,-70}})));
+
+protected
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Pumps.CondenserWater.Subsequences.EnableLead_headered
+ enaLeaHeaPum(final have_WSE=have_WSE) if have_heaPum
+ "Enable lead pumps for plants with headered condenser water pump"
+ annotation (Placement(transformation(extent={{20,120},{40,140}})));
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Pumps.CondenserWater.Subsequences.EnableLead_dedicated
+ enaLeaDedPum if not have_heaPum
+ "Enable lead pumps for plants with dedicated condenser water pump"
+ annotation (Placement(transformation(extent={{20,70},{40,90}})));
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Pumps.CondenserWater.Subsequences.Speed
+ pumSpe(
+ final have_WSE=have_WSE,
+ final fixSpe=fixSpe,
+ final totSta=totSta,
+ final nChiSta=nChiSta,
+ final staVec=staVec,
+ final desConWatPumSpe=desConWatPumSpe,
+ final desConWatPumNum=desConWatPumNum,
+ final desChiNum=desChiNum)
+ "Design pump speed of condenser water pump at current stage"
+ annotation (Placement(transformation(extent={{20,-20},{40,0}})));
+ Buildings.Controls.OBC.CDL.Continuous.Subtract speDif if not fixSpe
+ "Calculate difference between speed setpoint and operating speed"
+ annotation (Placement(transformation(extent={{-80,-100},{-60,-80}})));
+ Buildings.Controls.OBC.CDL.Continuous.Abs abs if not fixSpe
+ "Absolute difference"
+ annotation (Placement(transformation(extent={{-40,-100},{-20,-80}})));
+ Buildings.Controls.OBC.CDL.Continuous.Hysteresis hys(final uLow=pumSpeChe,
+ final uHigh=2*pumSpeChe) if not fixSpe
+ "Check if operating speed equals to setpoint"
+ annotation (Placement(transformation(extent={{0,-100},{20,-80}})));
+ Buildings.Controls.OBC.CDL.Logical.Not not1 if not fixSpe
+ "Logical not"
+ annotation (Placement(transformation(extent={{40,-100},{60,-80}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant zer(final k=0)
+ if not fixSpe
+ "Constant zero"
+ annotation (Placement(transformation(extent={{-60,42},{-40,62}})));
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant zer1(final k=0)
+ "Constant zero"
+ annotation (Placement(transformation(extent={{-60,2},{-40,22}})));
+ Buildings.Controls.OBC.CDL.Continuous.Switch swi if not fixSpe
+ "Real switch"
+ annotation (Placement(transformation(extent={{80,50},{100,70}})));
+ Buildings.Controls.OBC.CDL.Integers.Switch intSwi "Integer switch"
+ annotation (Placement(transformation(extent={{80,10},{100,30}})));
+ Buildings.Controls.OBC.CDL.Logical.And and2 "Logical and"
+ annotation (Placement(transformation(extent={{80,-60},{100,-40}})));
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant con(
+ final k=false) if not have_WSE
+ "Logical true"
+ annotation (Placement(transformation(extent={{-60,100},{-40,120}})));
+ Buildings.Controls.OBC.CDL.Conversions.BooleanToInteger booToInt[nConWatPum] if fixSpe
+ "Convert boolean to integer"
+ annotation (Placement(transformation(extent={{-100,-150},{-80,-130}})));
+ Buildings.Controls.OBC.CDL.Integers.MultiSum mulSumInt(
+ final nin=nConWatPum) if fixSpe
+ "Calculate total number of pumps that are running"
+ annotation (Placement(transformation(extent={{-40,-150},{-20,-130}})));
+ Buildings.Controls.OBC.CDL.Integers.Equal intEqu if fixSpe
+ "Check if total number of running pumps are equal to setpoint"
+ annotation (Placement(transformation(extent={{40,-130},{60,-110}})));
+
+equation
+ connect(uWSE, enaLeaHeaPum.uWseConIsoVal)
+ annotation (Line(points={{-140,-40},{0,-40},{0,130},{18,130}},
+ color={255,0,255}));
+ connect(enaLeaDedPum.uLeaChiSta, uLeaChiSta)
+ annotation (Line(points={{18,76},{-90,76},{-90,90},{-142,90}}, color={255,0,255}));
+ connect(enaLeaDedPum.uLeaConWatReq, uLeaConWatReq)
+ annotation (Line(points={{18,72},{-80,72},{-80,60},{-142,60}},
+ color={255,0,255}));
+ connect(uWSE, pumSpe.uWSE)
+ annotation (Line(points={{-140,-40},{0,-40},{0,-14},{18,-14}}, color={255,0,255}));
+ connect(enaLeaHeaPum.yLea, yLeaPum)
+ annotation (Line(points={{42,130},{140,130}}, color={255,0,255}));
+ connect(enaLeaDedPum.yLea, yLeaPum)
+ annotation (Line(points={{42,80},{50,80},{50,130},{140,130}}, color={255,0,255}));
+ connect(speDif.y, abs.u)
+ annotation (Line(points={{-58,-90},{-42,-90}}, color={0,0,127}));
+ connect(hys.y, not1.u)
+ annotation (Line(points={{22,-90},{38,-90}}, color={255,0,255}));
+ connect(uChiSta, pumSpe.uChiSta)
+ annotation (Line(points={{-140,-6},{18,-6}},
+ color={255,127,0}));
+ connect(swi.y,yDesConWatPumSpe)
+ annotation (Line(points={{102,60},{140,60}}, color={0,0,127}));
+ connect(enaLeaDedPum.yLea, swi.u2)
+ annotation (Line(points={{42,80},{50,80},{50,60},{78,60}}, color={255,0,255}));
+ connect(enaLeaHeaPum.yLea, swi.u2)
+ annotation (Line(points={{42,130},{50,130},{50,60},{78,60}}, color={255,0,255}));
+ connect(zer.y, swi.u3)
+ annotation (Line(points={{-38,52},{78,52}}, color={0,0,127}));
+ connect(enaLeaHeaPum.yLea, intSwi.u2)
+ annotation (Line(points={{42,130},{50,130},{50,20},{78,20}}, color={255,0,255}));
+ connect(enaLeaDedPum.yLea, intSwi.u2)
+ annotation (Line(points={{42,80},{50,80},{50,20},{78,20}}, color={255,0,255}));
+ connect(pumSpe.yConWatPumNum, intSwi.u1)
+ annotation (Line(points={{42,-10},{68,-10},{68,28},{78,28}}, color={255,127,0}));
+ connect(intSwi.y, yConWatPumNum)
+ annotation (Line(points={{102,20},{140,20}}, color={255,127,0}));
+ connect(zer1.y, intSwi.u3)
+ annotation (Line(points={{-38,12},{78,12}}, color={255,127,0}));
+ connect(and2.y, yPumSpeChe)
+ annotation (Line(points={{102,-50},{140,-50}}, color={255,0,255}));
+ connect(not1.y, and2.u2)
+ annotation (Line(points={{62,-90},{70,-90},{70,-58},{78,-58}},
+ color={255,0,255}));
+ connect(enaLeaHeaPum.yLea, and2.u1)
+ annotation (Line(points={{42,130},{50,130},{50,-50},{78,-50}}, color={255,0,255}));
+ connect(enaLeaDedPum.yLea, and2.u1)
+ annotation (Line(points={{42,80},{50,80},{50,-50},{78,-50}}, color={255,0,255}));
+ connect(pumSpe.yDesConWatPumSpe, swi.u1)
+ annotation (Line(points={{42,-4},{60,-4},{60,68},{78,68}}, color={0,0,127}));
+ connect(con.y, enaLeaHeaPum.uWseConIsoVal)
+ annotation (Line(points={{-38,110},{-20,110},{-20,130},{18,130}},
+ color={255,0,255}));
+ connect(con.y, pumSpe.uWSE)
+ annotation (Line(points={{-38,110},{-20,110},{-20,-14},{18,-14}},
+ color={255,0,255}));
+ connect(uLeaChiEna, enaLeaDedPum.uLeaChiEna)
+ annotation (Line(points={{-140,120},{-80,120},{-80,84},{18,84}},
+ color={255,0,255}));
+ connect(enaLeaHeaPum.uChiConIsoVal, uChiConIsoVal) annotation (Line(points={{18,136},
+ {-40,136},{-40,150},{-140,150}}, color={255,0,255}));
+ connect(uConWatPum, booToInt.u)
+ annotation (Line(points={{-140,-140},{-102,-140}}, color={255,0,255}));
+ connect(booToInt.y, mulSumInt.u)
+ annotation (Line(points={{-78,-140},{-42,-140}}, color={255,127,0}));
+ connect(mulSumInt.y, intEqu.u2) annotation (Line(points={{-18,-140},{20,-140},
+ {20,-128},{38,-128}}, color={255,127,0}));
+ connect(intSwi.y, intEqu.u1) annotation (Line(points={{102,20},{110,20},{110,-30},
+ {30,-30},{30,-120},{38,-120}}, color={255,127,0}));
+ connect(intEqu.y, and2.u2) annotation (Line(points={{62,-120},{70,-120},{70,-58},
+ {78,-58}}, color={255,0,255}));
+ connect(abs.y, hys.u) annotation (Line(points={{-18,-90},{-2,-90}},
+ color={0,0,127}));
+ connect(uConWatPumSpeSet, speDif.u1) annotation (Line(points={{-140,-70},{-100,
+ -70},{-100,-84},{-82,-84}}, color={0,0,127}));
+ connect(uConWatPumSpe, speDif.u2) annotation (Line(points={{-140,-110},{-100,-110},
+ {-100,-96},{-82,-96}}, color={0,0,127}));
+ connect(uEnaPla, enaLeaHeaPum.uEnaPla) annotation (Line(points={{-140,30},{10,
+ 30},{10,124},{18,124}}, color={255,0,255}));
+ connect(uEnaPla, enaLeaDedPum.uEnaPla) annotation (Line(points={{-140,30},{10,
+ 30},{10,88},{18,88}}, color={255,0,255}));
+
+annotation (Dialog(tab="Advanced"),
+ defaultComponentName="conWatPumCon",
+ Icon(coordinateSystem(extent={{-100,-100},{100,100}}),
+ graphics={
+ Rectangle(
+ extent={{-100,-100},{100,100}},
+ lineColor={0,0,127},
+ fillColor={255,255,255},
+ fillPattern=FillPattern.Solid),
+ Text(extent={{-120,146},{100,108}},
+ textColor={0,0,255},
+ textString="%name"),
+ Rectangle(
+ extent={{-100,-100},{100,100}},
+ lineColor={0,0,0},
+ fillColor={255,255,255},
+ fillPattern=FillPattern.Solid),
+ Rectangle(
+ extent={{-80,60},{82,-60}},
+ lineColor={28,108,200},
+ fillColor={210,210,210},
+ fillPattern=FillPattern.Solid,
+ borderPattern=BorderPattern.Raised),
+ Polygon(
+ points={{-80,60},{-14,4},{-80,-60},{-80,60}},
+ lineColor={175,175,175},
+ fillColor={175,175,175},
+ fillPattern=FillPattern.Solid)}),
+ Diagram(coordinateSystem(preserveAspectRatio=false,
+ extent={{-120,-160},{120,160}})),
+ Documentation(info="
+
+Block that generates control signals for condenser water pumps control,
+according to ASHRAE RP-1711 Advanced Sequences of Operation for HVAC Systems Phase II –
+Central Plants and Hydronic Systems (Draft on March 23, 2020),
+section 5.2.9 Condenser water pumps.
+
+
+This sequence contains three subsequences:
+
+
+",
+revisions="
+
+-
+Febuary 4, 2019, by Jianjun Hu:
+First implementation.
+
+
+"));
+end Controller;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Pumps/CondenserWater/Subsequences/EnableLead_dedicated.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Pumps/CondenserWater/Subsequences/EnableLead_dedicated.mo
new file mode 100644
index 00000000000..7b95a0956bb
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Pumps/CondenserWater/Subsequences/EnableLead_dedicated.mo
@@ -0,0 +1,146 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Pumps.CondenserWater.Subsequences;
+block EnableLead_dedicated
+ "Sequence for enabling lead pump of plants with dedicated condenser water pumps"
+
+ final parameter Real offTimThr(
+ final unit="s",
+ final quantity="Time")=180
+ "Threshold to check lead chiller OFF time";
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uEnaPla
+ "True: plant is just enabled"
+ annotation(Placement(transformation(extent={{-140,50},{-100,90}}),
+ iconTransformation(extent={{-140,60},{-100,100}})));
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uLeaChiEna
+ "Lead chiller commanded on status"
+ annotation (Placement(transformation(extent={{-140,10},{-100,50}}),
+ iconTransformation(extent={{-140,20},{-100,60}})));
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uLeaChiSta
+ "Lead chiller proven on status"
+ annotation (Placement(transformation(extent={{-140,-60},{-100,-20}}),
+ iconTransformation(extent={{-140,-60},{-100,-20}})));
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uLeaConWatReq
+ "Status indicating if chiller is requesting condenser water"
+ annotation (Placement(transformation(extent={{-140,-100},{-100,-60}}),
+ iconTransformation(extent={{-140,-100},{-100,-60}})));
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanOutput yLea "Lead pump status"
+ annotation (Placement(transformation(extent={{100,50},{140,90}}),
+ iconTransformation(extent={{100,-20},{140,20}})));
+
+protected
+ Buildings.Controls.OBC.CDL.Logical.Or or2 "Logical or"
+ annotation (Placement(transformation(extent={{40,-50},{60,-30}})));
+ Buildings.Controls.OBC.CDL.Logical.Not not1 "Logical not"
+ annotation (Placement(transformation(extent={{-80,-90},{-60,-70}})));
+ Buildings.Controls.OBC.CDL.Logical.Not not2 "Logical not"
+ annotation (Placement(transformation(extent={{-80,-50},{-60,-30}})));
+ Buildings.Controls.OBC.CDL.Logical.Latch leaPumSta
+ "Lead pump status"
+ annotation (Placement(transformation(extent={{20,20},{40,40}})));
+ Buildings.Controls.OBC.CDL.Logical.Timer tim(
+ final t=offTimThr)
+ "Check if the chiller has been proven off for more than threshold time"
+ annotation (Placement(transformation(extent={{-40,-50},{-20,-30}})));
+ Buildings.Controls.OBC.CDL.Logical.Not not3
+ "Check if the lead chiller is disabled"
+ annotation (Placement(transformation(extent={{-60,-10},{-40,10}})));
+ Buildings.Controls.OBC.CDL.Logical.And and2 "Logical and"
+ annotation (Placement(transformation(extent={{-20,-10},{0,10}})));
+ Buildings.Controls.OBC.CDL.Logical.Or or1
+ "Logical or"
+ annotation (Placement(transformation(extent={{60,60},{80,80}})));
+
+equation
+ connect(uLeaConWatReq, not1.u)
+ annotation (Line(points={{-120,-80},{-82,-80}}, color={255,0,255}));
+ connect(uLeaChiEna, leaPumSta.u)
+ annotation (Line(points={{-120,30},{18,30}}, color={255,0,255}));
+ connect(uLeaChiSta, not2.u)
+ annotation (Line(points={{-120,-40},{-82,-40}}, color={255,0,255}));
+ connect(not2.y, tim.u)
+ annotation (Line(points={{-58,-40},{-42,-40}}, color={255,0,255}));
+ connect(not1.y, or2.u2)
+ annotation (Line(points={{-58,-80},{20,-80},{20,-48},{38,-48}},
+ color={255,0,255}));
+ connect(or2.y, and2.u2)
+ annotation (Line(points={{62,-40},{80,-40},{80,-20},{-30,-20},{-30,-8},
+ {-22,-8}},color={255,0,255}));
+ connect(uLeaChiEna, not3.u)
+ annotation (Line(points={{-120,30},{-80,30},{-80,0},{-62,0}},
+ color={255,0,255}));
+ connect(not3.y, and2.u1)
+ annotation (Line(points={{-38,0},{-22,0}}, color={255,0,255}));
+ connect(and2.y, leaPumSta.clr)
+ annotation (Line(points={{2,0},{10,0},{10,24},{18,24}}, color={255,0,255}));
+ connect(tim.passed, or2.u1)
+ annotation (Line(points={{-18,-48},{0,-48},{0,-40},{38,-40}},
+ color={255,0,255}));
+ connect(or1.y, yLea)
+ annotation (Line(points={{82,70},{120,70}}, color={255,0,255}));
+ connect(uEnaPla, or1.u1)
+ annotation (Line(points={{-120,70},{58,70}}, color={255,0,255}));
+ connect(leaPumSta.y, or1.u2) annotation (Line(points={{42,30},{50,30},{50,62},
+ {58,62}}, color={255,0,255}));
+
+annotation (
+ defaultComponentName="enaLeaConPum",
+ Icon(coordinateSystem(preserveAspectRatio=false), graphics={
+ Rectangle(
+ extent={{-100,-100},{100,100}},
+ lineColor={0,0,127},
+ fillColor={255,255,255},
+ fillPattern=FillPattern.Solid),
+ Text(
+ extent={{-98,54},{-44,32}},
+ textColor={255,0,255},
+ pattern=LinePattern.Dash,
+ textString="uLeaChiEna"),
+ Text(
+ extent={{42,12},{96,-10}},
+ textColor={255,0,255},
+ pattern=LinePattern.Dash,
+ textString="yLeaPum"),
+ Text(
+ extent={{-100,150},{100,110}},
+ textColor={0,0,255},
+ textString="%name"),
+ Text(
+ extent={{-98,-28},{-44,-50}},
+ textColor={255,0,255},
+ pattern=LinePattern.Dash,
+ textString="uLeaChiOn"),
+ Text(
+ extent={{-98,-68},{-26,-90}},
+ textColor={255,0,255},
+ pattern=LinePattern.Dash,
+ textString="uLeaConWatReq"),
+ Text(
+ extent={{-96,90},{-50,70}},
+ textColor={255,0,255},
+ pattern=LinePattern.Dash,
+ textString="uEnaPla")}),
+ Diagram(coordinateSystem(preserveAspectRatio=false)),
+ Documentation(info="
+
+Block that enable and disable lead condenser water pump, for plants
+with dedicated condenser water pumps,
+according to ASHRAE RP-1711 Advanced Sequences of Operation for HVAC Systems Phase II –
+Central Plants and Hydronic Systems (Draft on March 23, 2020),
+section 5.2.9 Condenser water pumps, part 5.2.9.4.
+
+
+The lead condenser water pump should be enabled when lead chiller is commanded
+to run (uLeaChiEna
= true). It should be disabled when the lead
+chiller is disabled and either the lead chiller has been proven off
+(uLeaChiSta
= false) for offTimThr
, i.e. 3 minutes, or
+is not requesting condenser water flow (uLeaConWatReq
= false).
+
+", revisions="
+
+-
+January 28, 2019, by Jianjun Hu:
+First implementation.
+
+
+"));
+end EnableLead_dedicated;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Pumps/CondenserWater/Subsequences/EnableLead_headered.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Pumps/CondenserWater/Subsequences/EnableLead_headered.mo
new file mode 100644
index 00000000000..5662a8eb72c
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Pumps/CondenserWater/Subsequences/EnableLead_headered.mo
@@ -0,0 +1,133 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Pumps.CondenserWater.Subsequences;
+block EnableLead_headered
+ "Sequence for enabling lead pump of plants with headered condenser water pumps"
+ parameter Boolean have_WSE = true
+ "Flag of waterside economizer: true=have WSE, false=no WSE";
+ parameter Integer nChi=2 "Total number of chiller";
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uWseConIsoVal
+ if have_WSE "WSE condenser water isolation valve commanded status"
+ annotation (Placement(transformation(extent={{-140,-28},{-100,12}}),
+ iconTransformation(extent={{-140,-20},{-100,20}})));
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uChiConIsoVal[nChi]
+ "Chiller condenser water isolation valve commanded status"
+ annotation (Placement(transformation(extent={{-140,30},{-100,70}}),
+ iconTransformation(extent={{-140,40},{-100,80}})));
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uEnaPla
+ "True: plant is just enabled"
+ annotation(Placement(transformation(extent={{-140,-80},{-100,-40}}),
+ iconTransformation(extent={{-140,-80},{-100,-40}})));
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanOutput yLea "Lead pump status"
+ annotation (Placement(transformation(extent={{100,-20},{140,20}}),
+ iconTransformation(extent={{100,-20},{140,20}})));
+
+protected
+ Buildings.Controls.OBC.CDL.Logical.Switch leaPumSta "Lead pump status"
+ annotation (Placement(transformation(extent={{60,-10},{80,10}})));
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant con1(
+ final k=false) "Logical false"
+ annotation (Placement(transformation(extent={{-20,-90},{0,-70}})));
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant con(
+ final k=true) "Logical true"
+ annotation (Placement(transformation(extent={{-20,70},{0,90}})));
+ Buildings.Controls.OBC.CDL.Logical.Or or2 "Logical or"
+ annotation (Placement(transformation(extent={{-40,-10},{-20,10}})));
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant con2(
+ final k=false) if not have_WSE
+ "Logical false"
+ annotation (Placement(transformation(extent={{-80,-48},{-60,-28}})));
+ Buildings.Controls.OBC.CDL.Logical.MultiOr mulOr(
+ final nin=nChi)
+ "Check if there is any chiller enabled"
+ annotation (Placement(transformation(extent={{-80,40},{-60,60}})));
+ Buildings.Controls.OBC.CDL.Logical.Or or1 "Logical or"
+ annotation (Placement(transformation(extent={{0,-10},{20,10}})));
+
+equation
+ connect(con1.y, leaPumSta.u3)
+ annotation (Line(points={{2,-80},{40,-80},{40,-8},{58,-8}},
+ color={255,0,255}));
+ connect(con.y, leaPumSta.u1)
+ annotation (Line(points={{2,80},{40,80},{40,8},{58,8}}, color={255,0,255}));
+ connect(leaPumSta.y, yLea)
+ annotation (Line(points={{82,0},{120,0}}, color={255,0,255}));
+ connect(uWseConIsoVal, or2.u2)
+ annotation (Line(points={{-120,-8},{-42,-8}},
+ color={255,0,255}));
+ connect(con2.y, or2.u2)
+ annotation (Line(points={{-58,-38},{-50,-38},{-50,-8},{-42,-8}},
+ color={255,0,255}));
+ connect(uChiConIsoVal, mulOr.u)
+ annotation (Line(points={{-120,50},{-82,50}}, color={255,0,255}));
+ connect(mulOr.y, or2.u1)
+ annotation (Line(points={{-58,50},{-50,50},{-50,0},{-42,0}},
+ color={255,0,255}));
+ connect(or2.y, or1.u1) annotation (Line(points={{-18,0},{-2,0}},
+ color={255,0,255}));
+ connect(uEnaPla, or1.u2) annotation (Line(points={{-120,-60},{-10,-60},{-10,-8},
+ {-2,-8}}, color={255,0,255}));
+ connect(or1.y, leaPumSta.u2)
+ annotation (Line(points={{22,0},{58,0}}, color={255,0,255}));
+
+annotation (
+ defaultComponentName="enaLeaConPum",
+ Icon(coordinateSystem(preserveAspectRatio=false), graphics={
+ Rectangle(
+ extent={{-100,-100},{100,100}},
+ lineColor={0,0,127},
+ fillColor={255,255,255},
+ fillPattern=FillPattern.Solid),
+ Text(
+ extent={{-100,150},{100,110}},
+ textColor={0,0,255},
+ textString="%name"),
+ Text(
+ extent={{-98,72},{-44,50}},
+ textColor={255,0,255},
+ pattern=LinePattern.Dash,
+ textString="uChiConIsoVal"),
+ Text(
+ extent={{42,12},{96,-10}},
+ textColor={255,0,255},
+ pattern=LinePattern.Dash,
+ textString="yLeaPum"),
+ Text(
+ extent={{-98,12},{-44,-10}},
+ textColor={255,0,255},
+ pattern=LinePattern.Dash,
+ textString="uWseConIsoVal"),
+ Text(
+ extent={{-98,-50},{-58,-68}},
+ textColor={255,0,255},
+ pattern=LinePattern.Dash,
+ textString="uEnaPla")}),
+ Diagram(coordinateSystem(preserveAspectRatio=false)),
+ Documentation(info="
+
+Block that enable and disable lead condenser water pump, for plants
+with headered condenser water pumps,
+according to ASHRAE RP-1711 Advanced Sequences of Operation for HVAC Systems Phase II –
+Central Plants and Hydronic Systems (Draft on March 23, 2020),
+section 5.2.9 Condenser water pumps, part 5.2.9.2-3.
+
+
+-
+Condenser water pumps shall be lead-lag.
+
+-
+The lead condenser water pump shall be enabled when condenser water
+isolation valve of any chiller
uChiConIsoVal
or water side economizer
+uWseConIsoVal
is commanded open. It shall be disabled when
+all chiller and water side economizer condenser water isolation valves are
+commanded closed.
+
+
+", revisions="
+
+-
+January 28, 2019, by Jianjun Hu:
+First implementation.
+
+
+"));
+end EnableLead_headered;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Pumps/CondenserWater/Subsequences/Speed.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Pumps/CondenserWater/Subsequences/Speed.mo
new file mode 100644
index 00000000000..d2b4e3f6b2f
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Pumps/CondenserWater/Subsequences/Speed.mo
@@ -0,0 +1,267 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Pumps.CondenserWater.Subsequences;
+block Speed
+ "Output design speed of condenser water pumps at current stage"
+
+ parameter Boolean have_WSE = true
+ "Flag to indicate if the plant has water side economizer";
+ parameter Boolean fixSpe = false
+ "Flag to indicate if the plant has fix speed condenser water pump";
+ parameter Integer totSta = 6
+ "Total number of plant stages, including stage zero and the stages with a WSE, if applicable";
+ parameter Integer nChiSta = 3
+ "Total number of chiller stages, including stage zero but not the stages with a WSE, if applicable";
+ parameter Real staVec[totSta] = {0, 0.5, 1, 1.5, 2, 2.5}
+ "Chiller stage vector, element value like x.5 means chiller stage x plus WSE";
+ parameter Real desConWatPumSpe[totSta] = {0, 0.5, 0.75, 0.6, 0.75, 0.9}
+ "Design condenser water pump speed setpoint, according to current chiller stage and WSE status"
+ annotation (Dialog(group="Setpoint according to stage"));
+ parameter Real desConWatPumNum[totSta] = {0,1,1,2,2,2}
+ "Design number of condenser water pumps that should be ON, according to current chiller stage and WSE status"
+ annotation (Dialog(group="Setpoint according to stage"));
+ parameter Real desChiNum[nChiSta] = {0, 1, 2}
+ "Design number of chiller that should be ON, according to current chiller stage"
+ annotation (Dialog(group="Setpoint according to stage", enable=fixSpe));
+
+ Buildings.Controls.OBC.CDL.Interfaces.IntegerInput uChiSta
+ "Current chiller stage index that does not include the WSE"
+ annotation (Placement(transformation(extent={{-180,80},{-140,120}}),
+ iconTransformation(extent={{-140,20},{-100,60}})));
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uWSE if have_WSE
+ "Water side economizer status: true = ON, false = OFF"
+ annotation (Placement(transformation(extent={{-180,-60},{-140,-20}}),
+ iconTransformation(extent={{-140,-60},{-100,-20}})));
+ Buildings.Controls.OBC.CDL.Interfaces.IntegerOutput yConWatPumNum
+ "Design number of operating condenser water pumps at current stage"
+ annotation (Placement(transformation(extent={{140,-40},{180,0}}),
+ iconTransformation(extent={{100,-20},{140,20}})));
+ Buildings.Controls.OBC.CDL.Interfaces.RealOutput yDesConWatPumSpe
+ if not fixSpe
+ "Design condenser water pump speed at current stage"
+ annotation (Placement(transformation(extent={{140,0},{180,40}}),
+ iconTransformation(extent={{100,40},{140,80}})));
+
+protected
+ Buildings.Controls.OBC.CDL.Routing.RealExtractor conWatPumOn(
+ final nin=totSta) if not fixSpe
+ "Number of condenser water pump should be on"
+ annotation (Placement(transformation(extent={{20,-30},{40,-10}})));
+ Buildings.Controls.OBC.CDL.Routing.RealExtractor conWatPumSpe(
+ final nin=totSta) if not fixSpe
+ "Condenser water pump speed"
+ annotation (Placement(transformation(extent={{80,10},{100,30}})));
+ Buildings.Controls.OBC.CDL.Conversions.RealToInteger reaToInt if not fixSpe
+ "Convert real input to integer output"
+ annotation (Placement(transformation(extent={{60,-30},{80,-10}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant con1[totSta](
+ final k=desConWatPumSpe) if not fixSpe
+ "Condenser water pump speed setpoint"
+ annotation (Placement(transformation(extent={{40,10},{60,30}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant con2[totSta](
+ final k=desConWatPumNum) if not fixSpe
+ "Number of condenser water pump should be on"
+ annotation (Placement(transformation(extent={{-20,-30},{0,-10}})));
+ Buildings.Controls.OBC.CDL.Conversions.IntegerToReal intToRea if not fixSpe
+ "Convert integer to real number"
+ annotation (Placement(transformation(extent={{-120,90},{-100,110}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant con3[totSta](
+ final k=staVec) if not fixSpe
+ "Chiller stage vector, element value like x.5 means chiller stage x plus WSE"
+ annotation (Placement(transformation(extent={{-40,50},{-20,70}})));
+ Buildings.Controls.OBC.CDL.Conversions.BooleanToReal booToRea(
+ final realTrue=0.5) if have_WSE
+ "Convert boolean input to real output"
+ annotation (Placement(transformation(extent={{-120,-50},{-100,-30}})));
+ Buildings.Controls.OBC.CDL.Continuous.Add add2 if not fixSpe
+ "Add two real inputs"
+ annotation (Placement(transformation(extent={{-80,90},{-60,110}})));
+ Buildings.Controls.OBC.CDL.Routing.RealScalarReplicator reaRep(
+ final nout=totSta) if not fixSpe
+ "Replicate real input"
+ annotation (Placement(transformation(extent={{-40,90},{-20,110}})));
+ Buildings.Controls.OBC.CDL.Continuous.Subtract sub1[totSta] if not fixSpe
+ "Add two real inputs"
+ annotation (Placement(transformation(extent={{0,70},{20,90}})));
+ Buildings.Controls.OBC.CDL.Continuous.GreaterThreshold greEquThr[totSta](
+ final t=fill(-0.1, totSta)) if not fixSpe
+ "Identify current stage"
+ annotation (Placement(transformation(extent={{40,70},{60,90}})));
+ Buildings.Controls.OBC.CDL.Conversions.BooleanToInteger booToInt[totSta]
+ if not fixSpe
+ "Convert boolean to integer"
+ annotation (Placement(transformation(extent={{80,70},{100,90}})));
+ Buildings.Controls.OBC.CDL.Integers.MultiSum mulSumInt(
+ final nin=totSta) if not fixSpe
+ "Current stage index"
+ annotation (Placement(transformation(extent={{-60,-10},{-40,10}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant con4(
+ final k=0) if not have_WSE
+ "Constant zero"
+ annotation (Placement(transformation(extent={{-120,-10},{-100,10}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant con5[nChiSta](
+ final k=desChiNum) if fixSpe
+ "Number of chiller should be enabled"
+ annotation (Placement(transformation(extent={{-20,-70},{0,-50}})));
+ Buildings.Controls.OBC.CDL.Routing.RealExtractor conWatPumOn1(
+ final nin=nChiSta) if fixSpe
+ "Number of condenser water pump should be on"
+ annotation (Placement(transformation(extent={{20,-70},{40,-50}})));
+ Buildings.Controls.OBC.CDL.Conversions.RealToInteger reaToInt1 if fixSpe
+ "Convert real input to integer output"
+ annotation (Placement(transformation(extent={{60,-70},{80,-50}})));
+
+equation
+ connect(con1.y,conWatPumSpe. u)
+ annotation (Line(points={{62,20},{78,20}}, color={0,0,127}));
+ connect(con2.y,conWatPumOn. u)
+ annotation (Line(points={{2,-20},{18,-20}}, color={0,0,127}));
+ connect(uChiSta,intToRea. u)
+ annotation (Line(points={{-160,100},{-122,100}}, color={255,127,0}));
+ connect(conWatPumSpe.y, yDesConWatPumSpe)
+ annotation (Line(points={{102,20},{160,20}}, color={0,0,127}));
+ connect(yConWatPumNum, reaToInt.y)
+ annotation (Line(points={{160,-20},{82,-20}}, color={255,127,0}));
+ connect(conWatPumOn.y, reaToInt.u)
+ annotation (Line(points={{42,-20},{58,-20}}, color={0,0,127}));
+ connect(uWSE, booToRea.u)
+ annotation (Line(points={{-160,-40},{-122,-40}}, color={255,0,255}));
+ connect(intToRea.y, add2.u1)
+ annotation (Line(points={{-98,100},{-90,100},{-90,106},{-82,106}}, color={0,0,127}));
+ connect(booToRea.y, add2.u2)
+ annotation (Line(points={{-98,-40},{-90,-40},{-90,94},{-82,94}}, color={0,0,127}));
+ connect(add2.y, reaRep.u)
+ annotation (Line(points={{-58,100},{-42,100}}, color={0,0,127}));
+ connect(sub1.y,greEquThr. u)
+ annotation (Line(points={{22,80},{38,80}}, color={0,0,127}));
+ connect(greEquThr.y, booToInt.u)
+ annotation (Line(points={{62,80},{78,80}}, color={255,0,255}));
+ connect(mulSumInt.y, conWatPumSpe.index)
+ annotation (Line(points={{-38,0},{90,0},{90,8}}, color={255,127,0}));
+ connect(mulSumInt.y, conWatPumOn.index)
+ annotation (Line(points={{-38,0},{-30,0},{-30,-40},{30,-40},{30,-32}},
+ color={255,127,0}));
+ connect(booToInt.y, mulSumInt.u)
+ annotation (Line(points={{102,80},{120,80},{120,40},{-80,40},{-80,0},{-62,0}},
+ color={255,127,0}));
+ connect(con4.y, add2.u2)
+ annotation (Line(points={{-98,0},{-90,0},{-90,94},{-82,94}}, color={0,0,127}));
+ connect(uChiSta, conWatPumOn1.index) annotation (Line(points={{-160,100},{-130,
+ 100},{-130,-80},{30,-80},{30,-72}},color={255,127,0}));
+ connect(con5.y, conWatPumOn1.u)
+ annotation (Line(points={{2,-60},{18,-60}}, color={0,0,127}));
+ connect(conWatPumOn1.y, reaToInt1.u)
+ annotation (Line(points={{42,-60},{58,-60}}, color={0,0,127}));
+ connect(reaToInt1.y, yConWatPumNum) annotation (Line(points={{82,-60},{120,-60},
+ {120,-20},{160,-20}}, color={255,127,0}));
+ connect(reaRep.y, sub1.u1) annotation (Line(points={{-18,100},{-10,100},{-10,86},
+ {-2,86}}, color={0,0,127}));
+ connect(con3.y, sub1.u2) annotation (Line(points={{-18,60},{-10,60},{-10,74},{
+ -2,74}}, color={0,0,127}));
+
+annotation (
+ defaultComponentName="conPumSpe",
+ Icon(coordinateSystem(preserveAspectRatio=false, extent={{-100,-100},{100,100}}),
+ graphics={
+ Text(
+ extent={{-100,150},{100,110}},
+ textColor={0,0,255},
+ textString="%name"),
+ Rectangle(
+ extent={{-100,-100},{100,100}},
+ lineColor={0,0,127},
+ fillColor={255,255,255},
+ fillPattern=FillPattern.Solid),
+ Text(
+ extent={{36,74},{96,50}},
+ textColor={0,0,127},
+ pattern=LinePattern.Dash,
+ textString="yConWatPumSpe"),
+ Text(
+ extent={{-98,-32},{-54,-48}},
+ textColor={255,0,255},
+ pattern=LinePattern.Dash,
+ textString="uWSE"),
+ Text(
+ extent={{36,14},{96,-10}},
+ textColor={255,127,0},
+ pattern=LinePattern.Dash,
+ textString="yConWatPumNum"),
+ Text(
+ extent={{-96,52},{-36,28}},
+ textColor={255,127,0},
+ pattern=LinePattern.Dash,
+ textString="uChiSta")}),
+ Diagram(coordinateSystem(preserveAspectRatio=false, extent={{-140,-100},{140,120}})),
+ Documentation(info="
+
+Block that outputs number of operating condenser water pumps and design pump speed
+for current stage,
+according to ASHRAE RP-1711 Advanced Sequences of Operation for HVAC Systems Phase II –
+Central Plants and Hydronic Systems (Draft on March 23, 2020),
+section 5.2.9 Condenser water pumps, part 5.2.9.5 and 5.2.9.6.
+
+If the plant has fixed speed condenser water pump (fixSpe=true
) and
+does not have wateside economizer (have_WSE=false
):
+
+-
+The number of operating condenser water pumps shall match the number of operating chillers.
+
+
+Otherwise:
+
+-
+The number of operating condenser water pumps
yConWatPumNum
and design
+condenser water pump speed yDesConWatPumSpe
shall be set by chiller
+stage per the table below.
+
+
+
+
+Chiller stage |
+Number of pump ON |
+Design pump speed setpoint for current stage |
+
+
+0 |
+0 |
+N/A, Off |
+
+
+0+WSE |
+1 |
+Per TAB to provide design flow through HX |
+
+
+1 |
+1 |
+Per TAB to provide design flow through chiller |
+
+
+1+WSE |
+2 |
+Per TAB to provide at least design flow through both chiller and WSE |
+
+
+2 |
+2 |
+Per TAB to provide at least design flow through both chillers |
+
+
+2+WSE |
+2 |
+Per TAB to provide at least design flow through both chillers and WSE,
+or 100% speed if design flow cannot be achieved. |
+
+
+
+
+Note that this sequence is for plants with the condenser water pumps are equally sized.
+
+", revisions="
+
+-
+January 28, 2019, by Jianjun Hu:
+First implementation.
+
+
+"));
+end Speed;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Pumps/CondenserWater/Subsequences/Validation/EnableLead_dedicated.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Pumps/CondenserWater/Subsequences/Validation/EnableLead_dedicated.mo
new file mode 100644
index 00000000000..5403e28cf80
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Pumps/CondenserWater/Subsequences/Validation/EnableLead_dedicated.mo
@@ -0,0 +1,84 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Pumps.CondenserWater.Subsequences.Validation;
+model EnableLead_dedicated
+ "Validate sequence for enabling lead pump of plants with dedicated condenser water pumps"
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Pumps.CondenserWater.Subsequences.EnableLead_dedicated
+ enaLeaConPum
+ "Enable lead condenser water pump when the lead chiller is enabled"
+ annotation (Placement(transformation(extent={{40,10},{60,30}})));
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Pumps.CondenserWater.Subsequences.EnableLead_dedicated
+ disLeaConPum
+ "Disable lead pump due to that the lead chiller has been proven off"
+ annotation (Placement(transformation(extent={{40,-30},{60,-10}})));
+
+protected
+ Buildings.Controls.OBC.CDL.Logical.Sources.Pulse booPul(
+ final period=3600,
+ final shift=300) "Lead chiller enabling status"
+ annotation (Placement(transformation(extent={{-20,40},{0,60}})));
+ Buildings.Controls.OBC.CDL.Logical.Latch lat
+ "Maintains a true signal until conditions changes"
+ annotation (Placement(transformation(extent={{-20,-50},{0,-30}})));
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant con(
+ final k=false) "Constant false"
+ annotation (Placement(transformation(extent={{-60,-70},{-40,-50}})));
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant con1(
+ final k=false)
+ "Constant false"
+ annotation (Placement(transformation(extent={{-60,10},{-40,30}})));
+
+equation
+ connect(booPul.y,enaLeaConPum. uLeaChiEna)
+ annotation (Line(points={{2,50},{20,50},{20,24},{38,24}}, color={255,0,255}));
+ connect(booPul.y, enaLeaConPum.uLeaChiSta)
+ annotation (Line(points={{2,50},{20,50},{20,16},{38,16}}, color={255,0,255}));
+ connect(booPul.y,disLeaConPum. uLeaChiEna)
+ annotation (Line(points={{2,50},{20,50},{20,-16},{38,-16}}, color={255,0,255}));
+ connect(booPul.y, disLeaConPum.uLeaChiSta)
+ annotation (Line(points={{2,50},{20,50},{20,-24},{38,-24}}, color={255,0,255}));
+ connect(booPul.y, lat.u)
+ annotation (Line(points={{2,50},{20,50},{20,-20},{-40,-20},{-40,-40},{-22,-40}},
+ color={255,0,255}));
+ connect(booPul.y, enaLeaConPum.uLeaConWatReq)
+ annotation (Line(points={{2,50},{20,50},{20,12},{38,12}}, color={255,0,255}));
+ connect(lat.y,disLeaConPum. uLeaConWatReq)
+ annotation (Line(points={{2,-40},{20,-40},{20,-28},{38,-28}}, color={255,0,255}));
+ connect(con.y, lat.clr)
+ annotation (Line(points={{-38,-60},{-30,-60},{-30,-46},{-22,-46}},
+ color={255,0,255}));
+ connect(con1.y, enaLeaConPum.uEnaPla) annotation (Line(points={{-38,20},{10,20},
+ {10,28},{38,28}}, color={255,0,255}));
+ connect(con1.y, disLeaConPum.uEnaPla) annotation (Line(points={{-38,20},{10,20},
+ {10,-12},{38,-12}}, color={255,0,255}));
+
+annotation (
+ experiment(StopTime=3600.0, Tolerance=1e-06),
+ __Dymola_Commands(file="modelica://Buildings/Resources/Scripts/Dymola/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Pumps/CondenserWater/Subsequences/Validation/EnableLead_dedicated.mos"
+ "Simulate and plot"),
+ Documentation(info="
+
+This example validates
+
+Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Pumps.CondenserWater.Subsequences.EnableLead_dedicated.
+
+", revisions="
+
+-
+August 4, 2019, by Jianjun Hu:
+First implementation.
+
+
+"),
+ Icon(coordinateSystem(preserveAspectRatio=false, extent={{-100,-100},
+ {100,100}}), graphics={
+ Ellipse(lineColor = {75,138,73},
+ fillColor={255,255,255},
+ fillPattern = FillPattern.Solid,
+ extent = {{-100,-100},{100,100}}),
+ Polygon(lineColor = {0,0,255},
+ fillColor = {75,138,73},
+ pattern = LinePattern.None,
+ fillPattern = FillPattern.Solid,
+ points = {{-36,60},{64,0},{-36,-60},{-36,60}})}), Diagram(
+ coordinateSystem(preserveAspectRatio=false, extent={{-100,-100},{100,100}})));
+end EnableLead_dedicated;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Pumps/CondenserWater/Subsequences/Validation/EnableLead_headered.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Pumps/CondenserWater/Subsequences/Validation/EnableLead_headered.mo
new file mode 100644
index 00000000000..562172c3639
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Pumps/CondenserWater/Subsequences/Validation/EnableLead_headered.mo
@@ -0,0 +1,65 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Pumps.CondenserWater.Subsequences.Validation;
+model EnableLead_headered
+ "Validate sequence for enabling lead pump of plants with headered condenser water pumps"
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Pumps.CondenserWater.Subsequences.EnableLead_headered
+ enaLeaConPum
+ "Enable lead chilled water pump based on status of chilled water isolation valve status"
+ annotation (Placement(transformation(extent={{40,-10},{60,10}})));
+
+protected
+ Buildings.Controls.OBC.CDL.Logical.Sources.Pulse chiConWatIsoVal[2](
+ final period=fill(3600, 2),
+ final shift=fill(300, 2))
+ "Chiller condenser water isolation valve status"
+ annotation (Placement(transformation(extent={{-20,20},{0,40}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Pulse WSEConWatIsoVal(
+ final period=3600,
+ final shift=800) "Water side economizer condenser water isolation valve status"
+ annotation (Placement(transformation(extent={{-20,-40},{0,-20}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant con1(
+ final k=false)
+ "Constant false"
+ annotation (Placement(transformation(extent={{-20,-80},{0,-60}})));
+
+equation
+ connect(WSEConWatIsoVal.y, enaLeaConPum.uWseConIsoVal)
+ annotation (Line(points={{2,-30},{20,-30},{20,0},{38,0}}, color={255,0,255}));
+ connect(chiConWatIsoVal.y, enaLeaConPum.uChiConIsoVal) annotation (Line(
+ points={{2,30},{20,30},{20,6},{38,6}}, color={255,0,255}));
+ connect(con1.y, enaLeaConPum.uEnaPla) annotation (Line(points={{2,-70},{30,-70},
+ {30,-6},{38,-6}}, color={255,0,255}));
+
+annotation (
+ experiment(StopTime=3600.0, Tolerance=1e-06),
+ __Dymola_Commands(file="modelica://Buildings/Resources/Scripts/Dymola/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Pumps/CondenserWater/Subsequences/Validation/EnableLead_headered.mos"
+ "Simulate and plot"),
+ Documentation(info="
+
+This example validates
+
+Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Pumps.CondenserWater.Subsequences.EnableLead_headered.
+
+", revisions="
+
+-
+August 4, 2019, by Jianjun Hu:
+First implementation.
+
+
+"),
+ Icon(coordinateSystem(preserveAspectRatio=false, extent={{-100,-100},
+ {100,100}}), graphics={
+ Ellipse(lineColor = {75,138,73},
+ fillColor={255,255,255},
+ fillPattern = FillPattern.Solid,
+ extent = {{-100,-100},{100,100}}),
+ Polygon(lineColor = {0,0,255},
+ fillColor = {75,138,73},
+ pattern = LinePattern.None,
+ fillPattern = FillPattern.Solid,
+ points = {{-36,60},{64,0},{-36,-60},{-36,60}})}), Diagram(
+ coordinateSystem(preserveAspectRatio=false, extent={{-100,-100},{100,100}})));
+end EnableLead_headered;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Pumps/CondenserWater/Subsequences/Validation/Speed.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Pumps/CondenserWater/Subsequences/Validation/Speed.mo
new file mode 100644
index 00000000000..a98f6ed7478
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Pumps/CondenserWater/Subsequences/Validation/Speed.mo
@@ -0,0 +1,65 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Pumps.CondenserWater.Subsequences.Validation;
+model Speed
+ "Validate sequence for generating design speed of condenser water pump at current stage"
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Pumps.CondenserWater.Subsequences.Speed
+ conPumSpe(
+ final desConWatPumSpe={0,0.5,0.75,0.6,0.75,0.9},
+ final desConWatPumNum={0,1,1,2,2,2}) "Condenser water pump speed"
+ annotation (Placement(transformation(extent={{60,-10},{80,10}})));
+
+protected
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Ramp ramp(
+ final duration=1,
+ final height=3) "Block that generates ramp signal"
+ annotation (Placement(transformation(extent={{-80,10},{-60,30}})));
+ Buildings.Controls.OBC.CDL.Continuous.Round round(final n=0)
+ "Round real number to given digits"
+ annotation (Placement(transformation(extent={{-40,10},{-20,30}})));
+ Buildings.Controls.OBC.CDL.Conversions.RealToInteger reaToInt
+ "Convert real to integer"
+ annotation (Placement(transformation(extent={{0,10},{20,30}})));
+ Buildings.Controls.OBC.CDL.Logical.Sources.Pulse wseSta(
+ final period=0.75,
+ final shift=0) "Waterside economizer status"
+ annotation (Placement(transformation(extent={{0,-30},{20,-10}})));
+
+equation
+ connect(ramp.y, round.u)
+ annotation (Line(points={{-58,20},{-42,20}}, color={0,0,127}));
+ connect(round.y, reaToInt.u)
+ annotation (Line(points={{-18,20},{-2,20}}, color={0,0,127}));
+ connect(reaToInt.y, conPumSpe.uChiSta)
+ annotation (Line(points={{22,20},{40,20},{40,4},{58,4}}, color={255,127,0}));
+ connect(wseSta.y, conPumSpe.uWSE)
+ annotation (Line(points={{22,-20},{40,-20},{40,-4},{58,-4}}, color={255,0,255}));
+
+annotation (
+ experiment(StopTime=1.0, Tolerance=1e-06),
+ __Dymola_Commands(file="modelica://Buildings/Resources/Scripts/Dymola/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Pumps/CondenserWater/Subsequences/Validation/Speed.mos"
+ "Simulate and plot"),
+ Documentation(info="
+
+This example validates
+
+Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Pumps.CondenserWater.Subsequences.Speed.
+
+", revisions="
+
+-
+August 4, 2019, by Jianjun Hu:
+First implementation.
+
+
+"), Icon(coordinateSystem(preserveAspectRatio=false), graphics={
+ Ellipse(lineColor = {75,138,73},
+ fillColor={255,255,255},
+ fillPattern = FillPattern.Solid,
+ extent = {{-100,-100},{100,100}}),
+ Polygon(lineColor = {0,0,255},
+ fillColor = {75,138,73},
+ pattern = LinePattern.None,
+ fillPattern = FillPattern.Solid,
+ points = {{-36,60},{64,0},{-36,-60},{-36,60}})}), Diagram(
+ coordinateSystem(preserveAspectRatio=false)));
+end Speed;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Pumps/CondenserWater/Subsequences/Validation/package.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Pumps/CondenserWater/Subsequences/Validation/package.mo
new file mode 100644
index 00000000000..34db91503b4
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Pumps/CondenserWater/Subsequences/Validation/package.mo
@@ -0,0 +1,36 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Pumps.CondenserWater.Subsequences;
+package Validation "Collection of validation models"
+
+ annotation (preferredView="info", Documentation(info="
+
+This package contains validation models for the classes in
+
+Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Pumps.CondenserWater.Subsequences.
+
+
+Note that most validation models contain simple input data
+which may not be realistic, but for which the correct
+output can be obtained through an analytic solution.
+The examples plot various outputs, which have been verified against these
+solutions. These model outputs are stored as reference data and
+used for continuous validation whenever models in the library change.
+
+"), Icon(graphics={
+ Rectangle(
+ lineColor={200,200,200},
+ fillColor={248,248,248},
+ fillPattern=FillPattern.HorizontalCylinder,
+ extent={{-100.0,-100.0},{100.0,100.0}},
+ radius=25.0),
+ Rectangle(
+ lineColor={128,128,128},
+ extent={{-100.0,-100.0},{100.0,100.0}},
+ radius=25.0),
+ Polygon(
+ origin={8.0,14.0},
+ lineColor={78,138,73},
+ fillColor={78,138,73},
+ pattern=LinePattern.None,
+ fillPattern=FillPattern.Solid,
+ points={{-58.0,46.0},{42.0,-14.0},{-58.0,-74.0},{-58.0,46.0}})}));
+end Validation;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Pumps/CondenserWater/Subsequences/Validation/package.order b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Pumps/CondenserWater/Subsequences/Validation/package.order
new file mode 100644
index 00000000000..e77950db8de
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Pumps/CondenserWater/Subsequences/Validation/package.order
@@ -0,0 +1,3 @@
+EnableLead_dedicated
+EnableLead_headered
+Speed
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Pumps/CondenserWater/Subsequences/package.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Pumps/CondenserWater/Subsequences/package.mo
new file mode 100644
index 00000000000..1f4b888a1f5
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Pumps/CondenserWater/Subsequences/package.mo
@@ -0,0 +1,43 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Pumps.CondenserWater;
+package Subsequences "Condenser water pump control sequences"
+
+ annotation (
+preferredView="info", Documentation(info="
+
+This package contains subsequences for condenser water pumps control.
+"),
+Icon(graphics={
+ Rectangle(
+ lineColor={200,200,200},
+ fillColor={248,248,248},
+ fillPattern=FillPattern.HorizontalCylinder,
+ extent={{-100.0,-100.0},{100.0,100.0}},
+ radius=25.0),
+ Rectangle(
+ lineColor={128,128,128},
+ extent={{-100.0,-100.0},{100.0,100.0}},
+ radius=25.0),
+ Ellipse(
+ origin={10.0,10.0},
+ fillColor={76,76,76},
+ pattern=LinePattern.None,
+ fillPattern=FillPattern.Solid,
+ extent={{-80.0,-80.0},{-20.0,-20.0}}),
+ Ellipse(
+ origin={10.0,10.0},
+ pattern=LinePattern.None,
+ fillPattern=FillPattern.Solid,
+ extent={{0.0,-80.0},{60.0,-20.0}}),
+ Ellipse(
+ origin={10.0,10.0},
+ fillColor={128,128,128},
+ pattern=LinePattern.None,
+ fillPattern=FillPattern.Solid,
+ extent={{0.0,0.0},{60.0,60.0}}),
+ Ellipse(
+ origin={10.0,10.0},
+ lineColor={128,128,128},
+ fillColor={255,255,255},
+ fillPattern=FillPattern.Solid,
+ extent={{-80.0,0.0},{-20.0,60.0}})}));
+end Subsequences;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Pumps/CondenserWater/Subsequences/package.order b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Pumps/CondenserWater/Subsequences/package.order
new file mode 100644
index 00000000000..8bf4f395688
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Pumps/CondenserWater/Subsequences/package.order
@@ -0,0 +1,4 @@
+EnableLead_dedicated
+EnableLead_headered
+Speed
+Validation
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Pumps/CondenserWater/Validation/Controller.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Pumps/CondenserWater/Validation/Controller.mo
new file mode 100644
index 00000000000..27149ce0c79
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Pumps/CondenserWater/Validation/Controller.mo
@@ -0,0 +1,195 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Pumps.CondenserWater.Validation;
+model Controller "Validate condenser water pump control sequence"
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Pumps.CondenserWater.Controller
+ heaHavWse
+ "Condenser water pumps controller for plant with headered condenser water pump and have waterside economizer"
+ annotation (Placement(transformation(extent={{60,90},{80,110}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Pumps.CondenserWater.Controller
+ dedHavWse(
+ final have_heaPum=false)
+ "Condenser water pumps controller for plant with dedicated condenser water pump and have waterside economizer"
+ annotation (Placement(transformation(extent={{60,60},{80,80}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Pumps.CondenserWater.Controller
+ heaNoWse(
+ final have_WSE=false,
+ final totSta=4,
+ final staVec={0,1,2,3},
+ final desConWatPumSpe={0,0.5,0.5,0.75},
+ final desConWatPumNum={0,1,1,2})
+ "Condenser water pumps controller for plant with headered condenser water pump and without waterside economizer"
+ annotation (Placement(transformation(extent={{60,-70},{80,-50}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Pulse pumSpe(
+ final amplitude=0.2,
+ final period=900,
+ final offset=0.3) "Measured pump speed"
+ annotation (Placement(transformation(extent={{-80,-36},{-60,-16}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Ramp ramp1(
+ final duration=3600,
+ final height=2.4) "Block that generates ramp signal"
+ annotation (Placement(transformation(extent={{-90,80},{-70,100}})));
+ Buildings.Controls.OBC.CDL.Continuous.Round round1(final n=0)
+ "Round real number to given digits"
+ annotation (Placement(transformation(extent={{-50,80},{-30,100}})));
+ Buildings.Controls.OBC.CDL.Conversions.RealToInteger chiSta
+ "Convert real to integer"
+ annotation (Placement(transformation(extent={{-10,80},{10,100}})));
+ Buildings.Controls.OBC.CDL.Integers.GreaterThreshold chiOn "Chiller status"
+ annotation (Placement(transformation(extent={{-10,50},{10,70}})));
+ Buildings.Controls.OBC.CDL.Logical.Sources.Pulse wseSta(
+ final period=1800)
+ "Waterside economizer status"
+ annotation (Placement(transformation(extent={{-10,14},{10,34}})));
+ Buildings.Controls.OBC.CDL.Continuous.Switch meaPumSpe "Measured pump speed"
+ annotation (Placement(transformation(extent={{-10,-46},{10,-26}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant zer(final k=0)
+ "Zero pump speed"
+ annotation (Placement(transformation(extent={{-80,-66},{-60,-46}})));
+ Buildings.Controls.OBC.CDL.Continuous.Switch pumSpeSet "Pump speed setpoint"
+ annotation (Placement(transformation(extent={{-10,-16},{10,4}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Pulse pumSpeSetVal(
+ final amplitude=0.2,
+ final period=900,
+ final offset=0.3,
+ final shift=100) "Pump speed setpoint"
+ annotation (Placement(transformation(extent={{-80,4},{-60,24}})));
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant fal(
+ final k=false) "Logical false"
+ annotation (Placement(transformation(extent={{-80,34},{-60,54}})));
+ Buildings.Controls.OBC.CDL.Logical.Sources.Pulse booPul(
+ final period=3600) "Output boolean pulse"
+ annotation (Placement(transformation(extent={{-80,-110},{-60,-90}})));
+ Buildings.Controls.OBC.CDL.Conversions.BooleanToInteger booToInt(
+ final integerTrue=2) "Convert boolean to integer"
+ annotation (Placement(transformation(extent={{-50,-110},{-30,-90}})));
+ Buildings.Controls.OBC.CDL.Integers.Add addInt "Add two integer inputs"
+ annotation (Placement(transformation(extent={{-10,-110},{10,-90}})));
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant con1(final k=false)
+ "Constant false"
+ annotation (Placement(transformation(extent={{-10,-74},{10,-54}})));
+
+equation
+ connect(ramp1.y,round1. u)
+ annotation (Line(points={{-68,90},{-52,90}}, color={0,0,127}));
+ connect(round1.y, chiSta.u)
+ annotation (Line(points={{-28,90},{-12,90}}, color={0,0,127}));
+ connect(chiSta.y, chiOn.u)
+ annotation (Line(points={{12,90},{20,90},{20,76},{-20,76},{-20,60},{-12,60}},
+ color={255,127,0}));
+ connect(chiSta.y, heaHavWse.uChiSta)
+ annotation (Line(points={{12,90},{20,90},{20,99},{58,99}}, color={255,127,0}));
+ connect(chiSta.y, dedHavWse.uChiSta)
+ annotation (Line(points={{12,90},{20,90},{20,69},{58,69}}, color={255,127,0}));
+ connect(wseSta.y, heaHavWse.uWSE)
+ annotation (Line(points={{12,24},{32,24},{32,97},{58,97}}, color={255,0,255}));
+ connect(wseSta.y, dedHavWse.uWSE)
+ annotation (Line(points={{12,24},{32,24},{32,67},{58,67}}, color={255,0,255}));
+ connect(heaHavWse.yLeaPum, meaPumSpe.u2)
+ annotation (Line(points={{82,109},{90,109},{90,36},{-40,36},{-40,-36},{-12,-36}},
+ color={255,0,255}));
+ connect(pumSpe.y, meaPumSpe.u1)
+ annotation (Line(points={{-58,-26},{-20,-26},{-20,-28},{-12,-28}},
+ color={0,0,127}));
+ connect(zer.y, meaPumSpe.u3)
+ annotation (Line(points={{-58,-56},{-30,-56},{-30,-44},{-12,-44}},
+ color={0,0,127}));
+ connect(meaPumSpe.y, heaHavWse.uConWatPumSpe)
+ annotation (Line(points={{12,-36},{46,-36},{46,93},{58,93}}, color={0,0,127}));
+ connect(meaPumSpe.y, dedHavWse.uConWatPumSpe)
+ annotation (Line(points={{12,-36},{46,-36},{46,63},{58,63}}, color={0,0,127}));
+ connect(meaPumSpe.y, heaNoWse.uConWatPumSpe)
+ annotation (Line(points={{12,-36},{46,-36},{46,-67},{58,-67}}, color={0,0,127}));
+ connect(pumSpeSet.u2, heaHavWse.yLeaPum)
+ annotation (Line(points={{-12,-6},{-40,-6},{-40,36},{90,36},{90,109},{82,109}},
+ color={255,0,255}));
+ connect(pumSpeSetVal.y, pumSpeSet.u1)
+ annotation (Line(points={{-58,14},{-20,14},{-20,2},{-12,2}}, color={0,0,127}));
+ connect(zer.y, pumSpeSet.u3)
+ annotation (Line(points={{-58,-56},{-30,-56},{-30,-14},{-12,-14}},
+ color={0,0,127}));
+ connect(pumSpeSet.y, heaHavWse.uConWatPumSpeSet)
+ annotation (Line(points={{12,-6},{40,-6},{40,95},{58,95}}, color={0,0,127}));
+ connect(pumSpeSet.y, dedHavWse.uConWatPumSpeSet)
+ annotation (Line(points={{12,-6},{40,-6},{40,65},{58,65}}, color={0,0,127}));
+ connect(pumSpeSet.y, heaNoWse.uConWatPumSpeSet)
+ annotation (Line(points={{12,-6},{40,-6},{40,-65},{58,-65}}, color={0,0,127}));
+ connect(chiOn.y, heaHavWse.uLeaChiSta)
+ annotation (Line(points={{12,60},{26,60},{26,106},{58,106}}, color={255,0,255}));
+ connect(chiOn.y, heaHavWse.uLeaConWatReq)
+ annotation (Line(points={{12,60},{26,60},{26,104},{58,104}}, color={255,0,255}));
+ connect(chiOn.y, dedHavWse.uLeaChiSta)
+ annotation (Line(points={{12,60},{26,60},{26,76},{58,76}}, color={255,0,255}));
+ connect(chiOn.y, dedHavWse.uLeaConWatReq)
+ annotation (Line(points={{12,60},{26,60},{26,74},{58,74}}, color={255,0,255}));
+ connect(chiOn.y, heaNoWse.uLeaChiSta)
+ annotation (Line(points={{12,60},{26,60},{26,-54},{58,-54}}, color={255,0,255}));
+ connect(chiOn.y, heaNoWse.uLeaConWatReq)
+ annotation (Line(points={{12,60},{26,60},{26,-56},{58,-56}}, color={255,0,255}));
+ connect(booPul.y, booToInt.u)
+ annotation (Line(points={{-58,-100},{-52,-100}}, color={255,0,255}));
+ connect(booToInt.y, addInt.u2)
+ annotation (Line(points={{-28,-100},{-20,-100},{-20,-106},{-12,-106}},
+ color={255,127,0}));
+ connect(chiSta.y, addInt.u1)
+ annotation (Line(points={{12,90},{20,90},{20,-80},{-20,-80},{-20,-94},
+ {-12,-94}}, color={255,127,0}));
+ connect(addInt.y, heaNoWse.uChiSta)
+ annotation (Line(points={{12,-100},{26,-100},{26,-61},{58,-61}}, color={255,127,0}));
+ connect(chiOn.y, heaHavWse.uLeaChiEna)
+ annotation (Line(points={{12,60},{28,60},{28,108},{58,108}}, color={255,0,255}));
+ connect(chiOn.y, dedHavWse.uLeaChiEna)
+ annotation (Line(points={{12,60},{28,60},{28,78},{58,78}}, color={255,0,255}));
+ connect(chiOn.y, heaNoWse.uLeaChiEna)
+ annotation (Line(points={{12,60},{28,60},{28,-52},{58,-52}}, color={255,0,255}));
+ connect(chiOn.y, heaHavWse.uChiConIsoVal[1])
+ annotation (Line(points={{12,60},{28,60},{28,110},{58,110}}, color={255,0,255}));
+ connect(chiOn.y, dedHavWse.uChiConIsoVal[1])
+ annotation (Line(points={{12,60},{28,60},{28,80},{58,80}}, color={255,0,255}));
+ connect(chiOn.y, heaNoWse.uChiConIsoVal[1])
+ annotation (Line(points={{12,60},{28,60},{28,-50},{58,-50}}, color={255,0,255}));
+ connect(fal.y, heaHavWse.uChiConIsoVal[2])
+ annotation (Line(points={{-58,44},{30,44},{30,110},{58,110}}, color={255,0,255}));
+ connect(fal.y, dedHavWse.uChiConIsoVal[2])
+ annotation (Line(points={{-58,44},{30,44},{30,80},{58,80}}, color={255,0,255}));
+ connect(fal.y, heaNoWse.uChiConIsoVal[2])
+ annotation (Line(points={{-58,44},{30,44},{30,-50},{58,-50}}, color={255,0,255}));
+ connect(con1.y, heaHavWse.uEnaPla) annotation (Line(points={{12,-64},{36,-64},
+ {36,102},{58,102}}, color={255,0,255}));
+ connect(con1.y, dedHavWse.uEnaPla) annotation (Line(points={{12,-64},{36,-64},
+ {36,72},{58,72}}, color={255,0,255}));
+ connect(con1.y, heaNoWse.uEnaPla) annotation (Line(points={{12,-64},{36,-64},{
+ 36,-58},{58,-58}}, color={255,0,255}));
+annotation (
+ experiment(StopTime=3600.0, Tolerance=1e-06),
+ __Dymola_Commands(file="modelica://Buildings/Resources/Scripts/Dymola/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Pumps/CondenserWater/Validation/Controller.mos"
+ "Simulate and plot"),
+ Documentation(info="
+
+This example validates
+
+Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Pumps.CondenserWater.Controller.
+
+", revisions="
+
+-
+August 4, 2019, by Jianjun Hu:
+First implementation.
+
+
+"),
+ Icon(coordinateSystem(preserveAspectRatio=false, extent={{-100,-100},{100,100}}),
+ graphics={
+ Ellipse(lineColor = {75,138,73},
+ fillColor={255,255,255},
+ fillPattern = FillPattern.Solid,
+ extent = {{-100,-100},{100,100}}),
+ Polygon(lineColor = {0,0,255},
+ fillColor = {75,138,73},
+ pattern = LinePattern.None,
+ fillPattern = FillPattern.Solid,
+ points = {{-36,60},{64,0},{-36,-60},{-36,60}})}), Diagram(
+ coordinateSystem(preserveAspectRatio=false, extent={{-100,-120},{100,120}})));
+end Controller;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Pumps/CondenserWater/Validation/package.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Pumps/CondenserWater/Validation/package.mo
new file mode 100644
index 00000000000..3e7ed99cc2d
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Pumps/CondenserWater/Validation/package.mo
@@ -0,0 +1,36 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Pumps.CondenserWater;
+package Validation "Collection of validation models"
+
+ annotation (preferredView="info", Documentation(info="
+
+This package contains validation models for the classes in
+
+Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Pumps.CondenserWater.
+
+
+Note that most validation models contain simple input data
+which may not be realistic, but for which the correct
+output can be obtained through an analytic solution.
+The examples plot various outputs, which have been verified against these
+solutions. These model outputs are stored as reference data and
+used for continuous validation whenever models in the library change.
+
+"), Icon(graphics={
+ Rectangle(
+ lineColor={200,200,200},
+ fillColor={248,248,248},
+ fillPattern=FillPattern.HorizontalCylinder,
+ extent={{-100.0,-100.0},{100.0,100.0}},
+ radius=25.0),
+ Rectangle(
+ lineColor={128,128,128},
+ extent={{-100.0,-100.0},{100.0,100.0}},
+ radius=25.0),
+ Polygon(
+ origin={8.0,14.0},
+ lineColor={78,138,73},
+ fillColor={78,138,73},
+ pattern=LinePattern.None,
+ fillPattern=FillPattern.Solid,
+ points={{-58.0,46.0},{42.0,-14.0},{-58.0,-74.0},{-58.0,46.0}})}));
+end Validation;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Pumps/CondenserWater/Validation/package.order b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Pumps/CondenserWater/Validation/package.order
new file mode 100644
index 00000000000..8cba75e31a7
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Pumps/CondenserWater/Validation/package.order
@@ -0,0 +1 @@
+Controller
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Pumps/CondenserWater/package.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Pumps/CondenserWater/package.mo
new file mode 100644
index 00000000000..0477fe1b151
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Pumps/CondenserWater/package.mo
@@ -0,0 +1,31 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Pumps;
+package CondenserWater "Sequences for condenser water pump control"
+
+annotation (preferredView="info", Documentation(info="
+
+This package contains control sequences for condenser water pumps.
+The implementations are based on section 5.2.9 Condener water water pumps,
+in ASHRAE RP-1711 Advanced Sequences of Operation for HVAC Systems Phase II –
+Central Plants and Hydronic Systems (draft version on March 23, 2020).
+
+"), Icon(graphics={
+ Rectangle(
+ lineColor={200,200,200},
+ fillColor={248,248,248},
+ fillPattern=FillPattern.HorizontalCylinder,
+ extent={{-100.0,-100.0},{100.0,100.0}},
+ radius=25.0),
+ Rectangle(
+ lineColor={128,128,128},
+ extent={{-100.0,-100.0},{100.0,100.0}},
+ radius=25.0),
+ Ellipse(
+ extent={{-66,66},{68,-68}},
+ lineColor={0,0,0},
+ fillColor={255,255,255},
+ fillPattern=FillPattern.Solid), Polygon(
+ points={{0,66},{0,-68},{68,0},{0,66}},
+ lineColor={0,0,0},
+ fillColor={238,46,47},
+ fillPattern=FillPattern.Solid)}));
+end CondenserWater;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Pumps/CondenserWater/package.order b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Pumps/CondenserWater/package.order
new file mode 100644
index 00000000000..9ffbffcb990
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Pumps/CondenserWater/package.order
@@ -0,0 +1,3 @@
+Controller
+Subsequences
+Validation
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Pumps/package.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Pumps/package.mo
new file mode 100644
index 00000000000..d8ad0b31f1f
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Pumps/package.mo
@@ -0,0 +1,48 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant;
+package Pumps "Sequences for condenser water and chiller water pumps control"
+
+annotation (
+preferredView="info", Documentation(info="
+
+This package contains control sequences for condenser and chilled water pumps.
+The implementations are based on section 5.2.9 Condenser water pumps and
+section 5.2.6 Primary chilled water pumps, in
+ASHRAE RP-1711 Advanced Sequences of Operation for HVAC Systems Phase II –
+Central Plants and Hydronic Systems (draft version on March 23, 2020).
+
+"),
+Icon(graphics={
+ Rectangle(
+ lineColor={200,200,200},
+ fillColor={248,248,248},
+ fillPattern=FillPattern.HorizontalCylinder,
+ extent={{-100.0,-100.0},{100.0,100.0}},
+ radius=25.0),
+ Rectangle(
+ lineColor={128,128,128},
+ extent={{-100.0,-100.0},{100.0,100.0}},
+ radius=25.0),
+ Ellipse(
+ origin={10.0,10.0},
+ fillColor={76,76,76},
+ pattern=LinePattern.None,
+ fillPattern=FillPattern.Solid,
+ extent={{-80.0,-80.0},{-20.0,-20.0}}),
+ Ellipse(
+ origin={10.0,10.0},
+ pattern=LinePattern.None,
+ fillPattern=FillPattern.Solid,
+ extent={{0.0,-80.0},{60.0,-20.0}}),
+ Ellipse(
+ origin={10.0,10.0},
+ fillColor={128,128,128},
+ pattern=LinePattern.None,
+ fillPattern=FillPattern.Solid,
+ extent={{0.0,0.0},{60.0,60.0}}),
+ Ellipse(
+ origin={10.0,10.0},
+ lineColor={128,128,128},
+ fillColor={255,255,255},
+ fillPattern=FillPattern.Solid,
+ extent={{-80.0,0.0},{-20.0,60.0}})}));
+end Pumps;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Pumps/package.order b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Pumps/package.order
new file mode 100644
index 00000000000..6648c541436
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Pumps/package.order
@@ -0,0 +1,2 @@
+ChilledWater
+CondenserWater
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/SetPoints/ChilledWaterPlantReset.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/SetPoints/ChilledWaterPlantReset.mo
new file mode 100644
index 00000000000..a388b93c9d2
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/SetPoints/ChilledWaterPlantReset.mo
@@ -0,0 +1,243 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.SetPoints;
+block ChilledWaterPlantReset
+ "Sequences to generate chilled water plant reset"
+
+ parameter Integer nPum = 2 "Total number of chilled water pumps";
+ parameter Real holTim(
+ final unit="s",
+ final quantity="Time",
+ displayUnit="h")=900
+ "Time to fix plant reset value";
+ parameter Real iniSet = 0 "Initial setpoint"
+ annotation (Dialog(group="Trim and respond parameters"));
+ parameter Real minSet = 0 "Minimum setpoint"
+ annotation (Dialog(group="Trim and respond parameters"));
+ parameter Real maxSet = 1 "Maximum setpoint"
+ annotation (Dialog(group="Trim and respond parameters"));
+ parameter Real delTim(
+ final unit="s",
+ final quantity="Time",
+ displayUnit="h")=900
+ "Delay time after which trim and respond is activated"
+ annotation (Dialog(group="Trim and respond parameters"));
+ parameter Real samplePeriod(
+ final unit="s",
+ final quantity="Time")=300
+ "Sample period time"
+ annotation (Dialog(group="Trim and respond parameters"));
+ parameter Integer numIgnReq = 2
+ "Number of ignored requests"
+ annotation (Dialog(group="Trim and respond parameters"));
+ parameter Real triAmo = -0.02 "Trim amount"
+ annotation (Dialog(group="Trim and respond parameters"));
+ parameter Real resAmo = 0.03
+ "Respond amount (must be opposite in to triAmo)"
+ annotation (Dialog(group="Trim and respond parameters"));
+ parameter Real maxRes = 0.07
+ "Maximum response per time interval (same sign as resAmo)"
+ annotation (Dialog(group="Trim and respond parameters"));
+
+ Buildings.Controls.OBC.CDL.Interfaces.IntegerInput TChiWatSupResReq
+ "Chilled water supply temperature setpoint reset request"
+ annotation (Placement(transformation(extent={{-160,0},{-120,40}}),
+ iconTransformation(extent={{-140,-20},{-100,20}})));
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput chaPro
+ "Plant staging status that indicates if the plant is in the staging process"
+ annotation (Placement(transformation(extent={{-160,-60},{-120,-20}}),
+ iconTransformation(extent={{-140,-80},{-100,-40}})));
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uChiWatPum[nPum]
+ "Chilled water pump status"
+ annotation (Placement(transformation(extent={{-160,40},{-120,80}}),
+ iconTransformation(extent={{-140,40},{-100,80}})));
+ Buildings.Controls.OBC.CDL.Interfaces.RealOutput yChiWatPlaRes(
+ final min=minSet,
+ final max=maxSet,
+ final unit="1") "Chilled water plant reset"
+ annotation (Placement(transformation(extent={{120,-60},{160,-20}}),
+ iconTransformation(extent={{100,-20},{140,20}})));
+
+ Buildings.Controls.OBC.ASHRAE.G36.Generic.TrimAndRespond triRes(
+ final iniSet=iniSet,
+ final minSet=minSet,
+ final maxSet=maxSet,
+ final delTim=delTim,
+ final samplePeriod=samplePeriod,
+ final numIgnReq=numIgnReq,
+ final triAmo=triAmo,
+ final resAmo=resAmo,
+ final maxRes=maxRes) "Calculate chilled water plant reset"
+ annotation (Placement(transformation(extent={{20,50},{40,70}})));
+ Buildings.Controls.OBC.CDL.Discrete.TriggeredSampler triSam
+ "Sample last reset value when there is chiller stage change"
+ annotation (Placement(transformation(extent={{60,50},{80,70}})));
+ Buildings.Controls.OBC.CDL.Logical.TrueHoldWithReset truHol(
+ final duration=holTim)
+ "Hold the true input with given time"
+ annotation (Placement(transformation(extent={{-20,-50},{0,-30}})));
+
+protected
+ Buildings.Controls.OBC.CDL.Logical.Edge edg
+ "Check if the input changes from false to true"
+ annotation (Placement(transformation(extent={{-20,-10},{0,10}})));
+ Buildings.Controls.OBC.CDL.Continuous.Switch swi
+ "Switch plant reset value depends on if there is chiller stage change"
+ annotation (Placement(transformation(extent={{80,-50},{100,-30}})));
+ Buildings.Controls.OBC.CDL.Logical.Not not1[nPum] "Logical not"
+ annotation (Placement(transformation(extent={{-100,50},{-80,70}})));
+ Buildings.Controls.OBC.CDL.Logical.MultiAnd mulAnd(
+ final nin=nPum) "Logical and"
+ annotation (Placement(transformation(extent={{-60,50},{-40,70}})));
+ Buildings.Controls.OBC.CDL.Logical.Not not2
+ "Check if these is any CHW pump is proven on"
+ annotation (Placement(transformation(extent={{-20,50},{0,70}})));
+
+equation
+ connect(not1.y, mulAnd.u)
+ annotation (Line(points={{-78,60},{-62,60}}, color={255,0,255}));
+ connect(TChiWatSupResReq, triRes.numOfReq)
+ annotation (Line(points={{-140,20},{10,20},{10,52},{18,52}},
+ color={255,127,0}));
+ connect(mulAnd.y, not2.u)
+ annotation (Line(points={{-38,60},{-22,60}}, color={255,0,255}));
+ connect(not2.y, triRes.uDevSta)
+ annotation (Line(points={{2,60},{10,60},{10,68},{18,68}},
+ color={255,0,255}));
+ connect(uChiWatPum, not1.u)
+ annotation (Line(points={{-140,60},{-102,60}}, color={255,0,255}));
+ connect(triRes.y, triSam.u)
+ annotation (Line(points={{42,60},{58,60}}, color={0,0,127}));
+ connect(truHol.y, swi.u2)
+ annotation (Line(points={{2,-40},{78,-40}}, color={255,0,255}));
+ connect(triRes.y, swi.u3)
+ annotation (Line(points={{42,60},{50,60},{50,-48},{78,-48}},
+ color={0,0,127}));
+ connect(triSam.y, swi.u1)
+ annotation (Line(points={{82,60},{100,60},{100,-20},{60,-20},{60,-32},{78,-32}},
+ color={0,0,127}));
+ connect(edg.y, triSam.trigger)
+ annotation (Line(points={{2,0},{70,0},{70,48}}, color={255,0,255}));
+ connect(swi.y, yChiWatPlaRes)
+ annotation (Line(points={{102,-40},{140,-40}}, color={0,0,127}));
+ connect(chaPro, truHol.u)
+ annotation (Line(points={{-140,-40},{-22,-40}},color={255,0,255}));
+ connect(chaPro, edg.u)
+ annotation (Line(points={{-140,-40},{-60,-40},{-60,0},{-22,0}},
+ color={255,0,255}));
+
+annotation (
+ defaultComponentName="chiWatPlaRes",
+ Diagram(coordinateSystem(preserveAspectRatio=false,
+ extent={{-120,-100},{120,100}}),graphics={Rectangle(
+ extent={{-118,98},{78,-18}},
+ fillColor={210,210,210},
+ fillPattern=FillPattern.Solid,
+ pattern=LinePattern.None),
+ Text(
+ extent={{-108,96},{44,80}},
+ pattern=LinePattern.None,
+ fillColor={210,210,210},
+ fillPattern=FillPattern.Solid,
+ textColor={0,0,255},
+ horizontalAlignment=TextAlignment.Left,
+ textString="Calculate the plant reset, hold its last value when there is chiller stage change")}),
+ Icon(coordinateSystem(extent={{-100,-100},{100,100}}),
+ graphics={Text(
+ extent={{-100,150},{100,110}},
+ textColor={0,0,255},
+ textString="%name"),
+ Rectangle(
+ extent={{-100,-100},{100,100}},
+ lineColor={0,0,127},
+ fillColor={255,255,255},
+ fillPattern=FillPattern.Solid),
+ Text(
+ extent={{-94,68},{-36,56}},
+ textColor={255,0,255},
+ pattern=LinePattern.Dash,
+ textString="uChiWatPum"),
+ Text(
+ extent={{-94,12},{-10,-10}},
+ textColor={255,127,0},
+ pattern=LinePattern.Dash,
+ textString="TChiWatSupResReq"),
+ Text(
+ extent={{-94,-52},{-56,-66}},
+ textColor={255,0,255},
+ pattern=LinePattern.Dash,
+ textString="chaPro"),
+ Text(
+ extent={{38,12},{96,-12}},
+ textColor={0,0,127},
+ pattern=LinePattern.Dash,
+ textString="yChiWatPlaRes")}),
+Documentation(info="
+
+Block that output chilled water plant reset yChiWatPlaRes
according
+to ASHRAE RP-1711 Advanced Sequences of Operation for HVAC Systems Phase II –
+Central Plants and Hydronic Systems (Draft March 23, 2020), section 5.2.5.2.
+
+
+Following implementation is for plants with primary-only and primary-secondary
+systems serving differential pressure controlled pumps.
+
+
+-
+Chilled water plant reset
yChiWatPlaRes
shall be reset
+using trim-respond logic with following parameters:
+
+
+
+ Variable | Value | Definition |
+Device | Any chilled water pump | Associated device |
+SP0 | iniSet | Initial setpoint |
+SPmin | minSet | Minimum setpoint |
+SPmax | maxSet | Maximum setpoint |
+Td | delTim | Delay timer |
+T | samplePeriod | Time step |
+I | numIgnReq | Number of ignored requests |
+R | TChiWatSupResReq | Number of requests |
+SPtrim | triAmo | Trim amount |
+SPres | resAmo | Respond amount |
+SPres_max | maxRes | Maximum response per time interval |
+
+
+
+-
+Plant reset loop shall be enabled when the plant is enabled (any chilled water
+pump is enabled,
uChiWatPum
= true) and disabled when
+the plant is disabled (all chilled water pumps are disabled, uChiWatPum
= false).
+
+
+
+-
+When the plant stage change is initiated (
uStaCha
=true), the plant
+reset yChiWatPlaRes
shall be disabled and value fixed at its last
+value for the longer of holTim
and the time it takes for the plant
+to successfully stage.
+
+
+
+For primary-secondary plants serving more than one set of differential pressure
+controlled pumps, an unique instance of the reset shall be used for each set of
+differential pressure controlled secondary pumps.
+
+
+-
+Chilled water reset requests from all loads served by a set of pumps shall be
+directed to those pumps reset loop only.
+
+-
+The differential pressure setpoint output from each reset shall be used in the
+pressure control loop for the associated set of pumps only.
+
+
+
+", revisions="
+
+-
+April 15, 2019, by Jianjun Hu:
+First implementation.
+
+
+"));
+end ChilledWaterPlantReset;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/SetPoints/ChilledWaterSupply.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/SetPoints/ChilledWaterSupply.mo
new file mode 100644
index 00000000000..c3b9c42e80a
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/SetPoints/ChilledWaterSupply.mo
@@ -0,0 +1,235 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.SetPoints;
+block ChilledWaterSupply
+ "Sequences to generate setpoints of chilled water supply temperature and the pump differential static pressure"
+
+ parameter Integer nRemDpSen=1
+ "Total number of remote pressure differential sensor";
+ parameter Real dpChiWatPumMin(
+ final min=0,
+ final unit="Pa",
+ final quantity="PressureDifference",
+ displayUnit="Pa") = 34473.8
+ "Minimum chilled water pump differential static pressure, default 5 psi";
+ parameter Real dpChiWatPumMax[nRemDpSen](
+ final min=fill(dpChiWatPumMin,nRemDpSen),
+ final unit=fill("Pa",nRemDpSen),
+ final quantity=fill("PressureDifference",nRemDpSen),
+ displayUnit=fill("Pa",nRemDpSen))
+ "Maximum chilled water pump differential static pressure";
+ parameter Real TChiWatSupMin(
+ final quantity="ThermodynamicTemperature",
+ displayUnit="degC")
+ "Minimum chilled water supply temperature. This is the lowest minimum chilled water supply temperature of chillers in the plant";
+ parameter Real TChiWatSupMax(
+ final min=TChiWatSupMin,
+ final quantity="ThermodynamicTemperature",
+ final unit="K",
+ displayUnit="degC") = 288.706
+ "Maximum chilled water supply temperature, default 60 degF";
+ parameter Real minSet = 0 "Minimum plant reset value";
+ parameter Real maxSet = 1 "Maximum plant reset value";
+ parameter Real halSet = 0.5 "Half plant reset value";
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput uChiWatPlaRes(
+ final min=minSet,
+ final max=maxSet,
+ final unit="1")
+ "Chilled water plant reset"
+ annotation (Placement(transformation(extent={{-120,-20},{-80,20}}),
+ iconTransformation(extent={{-140,-20},{-100,20}})));
+ Buildings.Controls.OBC.CDL.Interfaces.RealOutput dpChiWatPumSet[nRemDpSen](
+ final unit=fill("Pa", nRemDpSen),
+ final quantity=fill("PressureDifference",nRemDpSen))
+ "Chilled water pump differential static pressure setpoint"
+ annotation (Placement(transformation(extent={{80,30},{120,70}}),
+ iconTransformation(extent={{100,40},{140,80}})));
+ Buildings.Controls.OBC.CDL.Interfaces.RealOutput TChiWatSupSet(
+ final unit="K",
+ displayUnit="degC",
+ final quantity="ThermodynamicTemperature")
+ "Chilled water supply temperature"
+ annotation (Placement(transformation(extent={{80,-70},{120,-30}}),
+ iconTransformation(extent={{100,-80},{140,-40}})));
+
+protected
+ Buildings.Controls.OBC.CDL.Continuous.Line chiWatPumPre[nRemDpSen]
+ "Chilled water pump differential pressure setpoint"
+ annotation (Placement(transformation(extent={{40,40},{60,60}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant zerRes[nRemDpSen](
+ final k=fill(minSet, nRemDpSen)) "Minimum plant reset"
+ annotation (Placement(transformation(extent={{-60,80},{-40,100}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant halRes[nRemDpSen](
+ final k=fill(halSet, nRemDpSen)) "Half one plant reset"
+ annotation (Placement(transformation(extent={{-60,-10},{-40,10}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant oneRes(
+ final k=maxSet) "Maximum plant reset"
+ annotation (Placement(transformation(extent={{-60,-100},{-40,-80}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant minChiWatPumPre[nRemDpSen](
+ final k=fill(dpChiWatPumMin, nRemDpSen))
+ "Minimum chilled water pump differential pressure setpoint"
+ annotation (Placement(transformation(extent={{-20,60},{0,80}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant maxChiWatPumPre[nRemDpSen](
+ final k=dpChiWatPumMax)
+ "Maximum chilled water pump differential pressure setpoint"
+ annotation (Placement(transformation(extent={{-20,18},{0,38}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant maxChiWatTem(
+ final k=TChiWatSupMax)
+ "Maximum chilled water supply temperature"
+ annotation (Placement(transformation(extent={{-20,-40},{0,-20}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant minChiWatTem(
+ final k=TChiWatSupMin)
+ "Minimum chilled water supply temperature"
+ annotation (Placement(transformation(extent={{-20,-80},{0,-60}})));
+ Buildings.Controls.OBC.CDL.Continuous.Line chiWatTem
+ "Chilled water temperature setpoint"
+ annotation (Placement(transformation(extent={{40,-60},{60,-40}})));
+ Buildings.Controls.OBC.CDL.Routing.RealScalarReplicator reaRep(
+ final nout=nRemDpSen)
+ "Distribute reset value to each remote sensor"
+ annotation (Placement(transformation(extent={{-60,40},{-40,60}})));
+
+equation
+ connect(zerRes.y, chiWatPumPre.x1)
+ annotation (Line(points={{-38,90},{20,90},{20,58},{38,58}},
+ color={0,0,127}));
+ connect(minChiWatPumPre.y, chiWatPumPre.f1)
+ annotation (Line(points={{2,70},{14,70},{14,54},{38,54}},
+ color={0,0,127}));
+ connect(halRes.y, chiWatPumPre.x2)
+ annotation (Line(points={{-38,0},{20,0},{20,46},{38,46}},
+ color={0,0,127}));
+ connect(maxChiWatPumPre.y, chiWatPumPre.f2)
+ annotation (Line(points={{2,28},{14,28},{14,42},{38,42}},
+ color={0,0,127}));
+ connect(maxChiWatTem.y, chiWatTem.f1)
+ annotation (Line(points={{2,-30},{14,-30},{14,-46},{38,-46}},
+ color={0,0,127}));
+ connect(oneRes.y, chiWatTem.x2)
+ annotation (Line(points={{-38,-90},{14,-90},{14,-54},{38,-54}},
+ color={0,0,127}));
+ connect(minChiWatTem.y, chiWatTem.f2)
+ annotation (Line(points={{2,-70},{20,-70},{20,-58},{38,-58}},
+ color={0,0,127}));
+ connect(chiWatPumPre.y, dpChiWatPumSet)
+ annotation (Line(points={{62,50},{100,50}},color={0,0,127}));
+ connect(chiWatTem.y, TChiWatSupSet)
+ annotation (Line(points={{62,-50},{100,-50}},color={0,0,127}));
+ connect(uChiWatPlaRes, chiWatTem.u) annotation (Line(points={{-100,0},{-70,0},
+ {-70,-50},{38,-50}}, color={0,0,127}));
+ connect(uChiWatPlaRes, reaRep.u) annotation (Line(points={{-100,0},{-70,0},{-70,
+ 50},{-62,50}}, color={0,0,127}));
+ connect(halRes[1].y, chiWatTem.x1) annotation (Line(points={{-38,0},{20,0},{20,
+ -42},{38,-42}}, color={0,0,127}));
+ connect(reaRep.y, chiWatPumPre.u)
+ annotation (Line(points={{-38,50},{38,50}}, color={0,0,127}));
+
+annotation (
+ defaultComponentName="chiWatSupSet",
+ Diagram(coordinateSystem(preserveAspectRatio=false,
+ extent={{-80,-120},{80,120}}), graphics={Rectangle(
+ extent={{-78,118},{78,2}},
+ fillColor={210,210,210},
+ fillPattern=FillPattern.Solid,
+ pattern=LinePattern.None), Rectangle(
+ extent={{-78,-2},{78,-118}},
+ fillColor={210,210,210},
+ fillPattern=FillPattern.Solid,
+ pattern=LinePattern.None),
+ Text(
+ extent={{-26,118},{74,106}},
+ pattern=LinePattern.None,
+ fillColor={210,210,210},
+ fillPattern=FillPattern.Solid,
+ textColor={0,0,255},
+ horizontalAlignment=TextAlignment.Left,
+ textString="Chilled water pump differential pressure setpoint"),
+ Text(
+ extent={{-22,-104},{74,-116}},
+ pattern=LinePattern.None,
+ fillColor={210,210,210},
+ fillPattern=FillPattern.Solid,
+ textColor={0,0,255},
+ horizontalAlignment=TextAlignment.Left,
+ textString="Chilled water supply temperature setpoint")}),
+ Icon(graphics={Text(
+ extent={{-100,150},{100,110}},
+ textColor={0,0,255},
+ textString="%name"),
+ Rectangle(
+ extent={{-100,-100},{100,100}},
+ lineColor={0,0,127},
+ fillColor={255,255,255},
+ fillPattern=FillPattern.Solid),
+ Line(points={{-80,72},{-80,-54},{80,-54},{80,72}}, color={95,95,95}),
+ Line(
+ points={{-80,64},{-2,64},{80,-54}},
+ color={0,0,0},
+ thickness=0.5),
+ Line(
+ points={{-80,-54},{-2,64},{80,64}},
+ color={28,108,200},
+ pattern=LinePattern.Dash,
+ thickness=0.5),
+ Line(
+ points={{-2,64},{-2,-54}},
+ color={215,215,215},
+ pattern=LinePattern.Dash),
+ Polygon(
+ points={{-72,-66},{-50,-60},{-50,-72},{-72,-66}},
+ lineColor={95,95,95},
+ fillColor={95,95,95},
+ fillPattern=FillPattern.Solid),
+ Line(points={{-10,-66},{-68,-66}},color={95,95,95}),
+ Line(points={{8,-66},{70,-66}}, color={95,95,95}),
+ Polygon(
+ points={{72,-66},{50,-60},{50,-72},{72,-66}},
+ lineColor={95,95,95},
+ fillColor={95,95,95},
+ fillPattern=FillPattern.Solid),
+ Text(
+ extent={{-20,-66},{22,-82}},
+ textColor={95,95,95},
+ textString="Plant reset"),
+ Text(
+ extent={{14,26},{68,6}},
+ textColor={95,95,95},
+ horizontalAlignment=TextAlignment.Right,
+ textString="Temperature
+setpoint"),
+ Text(
+ extent={{-76,22},{-42,8}},
+ textColor={95,95,95},
+ horizontalAlignment=TextAlignment.Right,
+ textString="DP
+setpoint"),
+ Text(
+ extent={{-14,-56},{12,-62}},
+ textColor={95,95,95},
+ textString="0.5")}),
+Documentation(info="
+
+Block that output setpoints for the chilled water supply of primary-only and
+primary-secondary systems serving differential pressure controlled pumps.
+The outputs include supply temperature setpoint TChiWatSupSet
+and pump differential pressure setpoint dpChiWatPumSet
, according
+to ASHRAE RP-1711 Advanced Sequences of Operation for HVAC Systems Phase II –
+Central Plants and Hydronic Systems (Draft March 23, 2020), section 5.2.5.2.
+
+
+Chilled water supply temperature setpoint TChiWatSupSet
and pump
+differential pressure setpoint dpChiWatPumSet
shall be reset based on
+the current value of chilled water plant reset uChiWatPlaRes
.
+
+
+
+
+", revisions="
+
+-
+April 15, 2019, by Jianjun Hu:
+First implementation.
+
+
+"));
+end ChilledWaterSupply;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/SetPoints/Validation/ChilledWaterPlantReset.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/SetPoints/Validation/ChilledWaterPlantReset.mo
new file mode 100644
index 00000000000..17b8be854b5
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/SetPoints/Validation/ChilledWaterPlantReset.mo
@@ -0,0 +1,113 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.SetPoints.Validation;
+model ChilledWaterPlantReset
+ "Validate model of generating chilled water plant reset"
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.SetPoints.ChilledWaterPlantReset
+ plaRes "Chilled water plant reset"
+ annotation (Placement(transformation(extent={{60,60},{80,80}})));
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.SetPoints.ChilledWaterPlantReset
+ devRes "Validate chilled water plant reset affected by device status"
+ annotation (Placement(transformation(extent={{60,-40},{80,-20}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant uChiWatPum[2](
+ final k={true,false}) "Plant status"
+ annotation (Placement(transformation(extent={{-80,70},{-60,90}})));
+ Buildings.Controls.OBC.CDL.Conversions.RealToInteger reaToInt1
+ "Convert real to integer"
+ annotation (Placement(transformation(extent={{0,40},{20,60}})));
+ Buildings.Controls.OBC.CDL.Logical.Sources.Pulse booPul(
+ final period=2700,
+ final width=0.3)
+ "Generate pulse signal of type Boolean"
+ annotation (Placement(transformation(extent={{-80,-30},{-60,-10}})));
+ Buildings.Controls.OBC.CDL.Logical.Not not1 "Logical not"
+ annotation (Placement(transformation(extent={{-40,-30},{-20,-10}})));
+ Buildings.Controls.OBC.CDL.Continuous.Switch swi
+ "Switch between two Real signals"
+ annotation (Placement(transformation(extent={{-40,-60},{-20,-40}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant con1(final k=0)
+ "Zero request when device is OFF"
+ annotation (Placement(transformation(extent={{-80,-60},{-60,-40}})));
+ Buildings.Controls.OBC.CDL.Conversions.RealToInteger reaToInt3
+ "Convert real to integer"
+ annotation (Placement(transformation(extent={{0,-60},{20,-40}})));
+
+ Buildings.Controls.OBC.CDL.Routing.BooleanScalarReplicator booRep(nout=2)
+ annotation (Placement(transformation(extent={{0,-30},{20,-10}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.TimeTable timTabLin1(
+ final smoothness=Buildings.Controls.OBC.CDL.Types.Smoothness.ConstantSegments,
+ final table=[0,0;150,1; 300,2; 450,3; 600,4; 750,5; 900,6;
+ 1050,5; 1200,4; 1350,3; 1500,2; 1650,1; 1800,0])
+ "Time table with smoothness method of constant segments"
+ annotation (Placement(transformation(extent={{-40,40},{-20,60}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.TimeTable timTabLin2(
+ final smoothness=Buildings.Controls.OBC.CDL.Types.Smoothness.ConstantSegments,
+ final table=[0,0;150,1; 300,2; 450,3; 600,4; 750,5; 900,6;
+ 1050,5; 1200,4; 1350,3; 1500,2; 1650,1; 1800,0])
+ "Time table with smoothness method of constant segments"
+ annotation (Placement(transformation(extent={{-80,-90},{-60,-70}})));
+ Buildings.Controls.OBC.CDL.Logical.Sources.Pulse booPul1(final period=3600)
+ "Generate pulse signal of type Boolean"
+ annotation (Placement(transformation(extent={{0,10},{20,30}})));
+
+equation
+ connect(uChiWatPum.y, plaRes.uChiWatPum)
+ annotation (Line(points={{-58,80},{40,80},{40,76},{58,76}}, color={255,0,255}));
+ connect(con1.y,swi. u1)
+ annotation (Line(points={{-58,-50},{-52,-50},{-52,-42},{-42,-42}},
+ color={0,0,127}));
+ connect(booPul.y,swi. u2)
+ annotation (Line(points={{-58,-20},{-48,-20},{-48,-50},{-42,-50}},
+ color={255,0,255}));
+ connect(booPul.y,not1. u)
+ annotation (Line(points={{-58,-20},{-42,-20}},color={255,0,255}));
+ connect(not1.y, booRep.u)
+ annotation (Line(points={{-18,-20},{-2,-20}}, color={255,0,255}));
+ connect(booRep.y, devRes.uChiWatPum)
+ annotation (Line(points={{22,-20},{40,-20},{40,-24},{58,-24}}, color={255,0,255}));
+ connect(reaToInt1.y, plaRes.TChiWatSupResReq)
+ annotation (Line(points={{22,50},{40,50},{40,70},{58,70}}, color={255,127,0}));
+ connect(reaToInt3.y, devRes.TChiWatSupResReq)
+ annotation (Line(points={{22,-50},{40,-50},{40,-30},{58,-30}}, color={255,127,0}));
+ connect(timTabLin1.y[1], reaToInt1.u)
+ annotation (Line(points={{-18,50},{-2,50}}, color={0,0,127}));
+ connect(timTabLin2.y[1], swi.u3)
+ annotation (Line(points={{-58,-80},{-52,-80},{-52,-58},{-42,-58}},
+ color={0,0,127}));
+ connect(swi.y, reaToInt3.u)
+ annotation (Line(points={{-18,-50},{-2,-50}}, color={0,0,127}));
+ connect(booPul1.y, plaRes.chaPro)
+ annotation (Line(points={{22,20},{50,20},{50,64},{58,64}}, color={255,0,255}));
+ connect(booPul1.y, devRes.chaPro)
+ annotation (Line(points={{22,20},{50,20},{50,-36},{58,-36}}, color={255,0,255}));
+
+annotation (
+ experiment(StopTime=9000.0, Tolerance=1e-06),
+ __Dymola_Commands(file="modelica://Buildings/Resources/Scripts/Dymola/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/SetPoints/Validation/ChilledWaterPlantReset.mos"
+ "Simulate and plot"),
+ Documentation(info="
+
+This example validates
+
+Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.SetPoints.ChilledWaterPlantReset.
+
+", revisions="
+
+-
+March 14, 2018, by Jianjun Hu:
+First implementation.
+
+
+"),
+Icon(graphics={
+ Ellipse(lineColor = {75,138,73},
+ fillColor={255,255,255},
+ fillPattern = FillPattern.Solid,
+ extent = {{-100,-100},{100,100}}),
+ Polygon(lineColor = {0,0,255},
+ fillColor = {75,138,73},
+ pattern = LinePattern.None,
+ fillPattern = FillPattern.Solid,
+ points = {{-36,60},{64,0},{-36,-60},{-36,60}})}),Diagram(
+ coordinateSystem(preserveAspectRatio=false)));
+end ChilledWaterPlantReset;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/SetPoints/Validation/ChilledWaterSupply.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/SetPoints/Validation/ChilledWaterSupply.mo
new file mode 100644
index 00000000000..d2861d39111
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/SetPoints/Validation/ChilledWaterSupply.mo
@@ -0,0 +1,48 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.SetPoints.Validation;
+model ChilledWaterSupply
+ "Validate model of generating setpoints for chilled water supply control"
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.SetPoints.ChilledWaterSupply
+ chiWatSupSet(
+ final dpChiWatPumMin=60,
+ final dpChiWatPumMax={150},
+ final TChiWatSupMin=280.15,
+ final TChiWatSupMax=291.15) "Generate setpoint for chilled water supply control"
+ annotation (Placement(transformation(extent={{20,-10},{40,10}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Ramp ram(final duration=3600)
+ annotation (Placement(transformation(extent={{-40,-10},{-20,10}})));
+
+equation
+ connect(ram.y, chiWatSupSet.uChiWatPlaRes)
+ annotation (Line(points={{-18,0},{18,0}}, color={0,0,127}));
+
+annotation (
+ experiment(StopTime=3600.0, Tolerance=1e-06),
+ __Dymola_Commands(file="modelica://Buildings/Resources/Scripts/Dymola/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/SetPoints/Validation/ChilledWaterSupply.mos"
+ "Simulate and plot"),
+ Documentation(info="
+
+This example validates
+
+Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.SetPoints.ChilledWaterSupply.
+
+", revisions="
+
+-
+March 15, 2018, by Jianjun Hu:
+First implementation.
+
+
+"),
+Icon(graphics={
+ Ellipse(lineColor = {75,138,73},
+ fillColor={255,255,255},
+ fillPattern = FillPattern.Solid,
+ extent = {{-100,-100},{100,100}}),
+ Polygon(lineColor = {0,0,255},
+ fillColor = {75,138,73},
+ pattern = LinePattern.None,
+ fillPattern = FillPattern.Solid,
+ points = {{-36,60},{64,0},{-36,-60},{-36,60}})}),Diagram(
+ coordinateSystem(preserveAspectRatio=false)));
+end ChilledWaterSupply;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/SetPoints/Validation/package.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/SetPoints/Validation/package.mo
new file mode 100644
index 00000000000..f594d9ea7c9
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/SetPoints/Validation/package.mo
@@ -0,0 +1,38 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.SetPoints;
+package Validation "Collection of validation models"
+
+annotation (
+Icon(graphics={
+ Rectangle(
+ lineColor={200,200,200},
+ fillColor={248,248,248},
+ fillPattern=FillPattern.HorizontalCylinder,
+ extent={{-100.0,-100.0},{100.0,100.0}},
+ radius=25.0),
+ Rectangle(
+ lineColor={128,128,128},
+ extent={{-100.0,-100.0},{100.0,100.0}},
+ radius=25.0),
+ Polygon(
+ origin={8.0,14.0},
+ lineColor={78,138,73},
+ fillColor={78,138,73},
+ pattern=LinePattern.None,
+ fillPattern=FillPattern.Solid,
+ points={{-58.0,46.0},{42.0,-14.0},{-58.0,-74.0},{-58.0,46.0}})}),
+preferredView="info", Documentation(info="
+
+This package contains validation models for the classes in
+
+Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Setpoints.
+
+
+Note that most validation models contain simple input data
+which may not be realistic, but for which the correct
+output can be obtained through an analytic solution.
+The examples plot various outputs, which have been verified against these
+solutions. These model outputs are stored as reference data and
+used for continuous validation whenever models in the library change.
+
+"));
+end Validation;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/SetPoints/Validation/package.order b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/SetPoints/Validation/package.order
new file mode 100644
index 00000000000..6ae8b2ac697
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/SetPoints/Validation/package.order
@@ -0,0 +1,2 @@
+ChilledWaterPlantReset
+ChilledWaterSupply
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/SetPoints/package.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/SetPoints/package.mo
new file mode 100644
index 00000000000..98382339fed
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/SetPoints/package.mo
@@ -0,0 +1,27 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant;
+package SetPoints
+
+annotation (preferredView="info", Documentation(info="
+
+This package contains chilled water plant reset control sequences.
+The implementation is based on section 5.2.5.2. in ASHRAE RP-1711 Advanced Sequences
+of Operation for HVAC Systems Phase II –
+Central Plants and Hydronic Systems (draft version on March 23, 2020).
+
+"),
+ Icon(graphics={
+ Rectangle(
+ lineColor={200,200,200},
+ fillColor={248,248,248},
+ fillPattern=FillPattern.HorizontalCylinder,
+ extent={{-100.0,-100.0},{100.0,100.0}},
+ radius=25.0),
+ Rectangle(
+ lineColor={128,128,128},
+ extent={{-100.0,-100.0},{100.0,100.0}},
+ radius=25.0),
+ Text(
+ extent={{-100,100},{100,-100}},
+ textColor={0,0,0},
+ textString="S")}));
+end SetPoints;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/SetPoints/package.order b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/SetPoints/package.order
new file mode 100644
index 00000000000..f3e4cf99024
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/SetPoints/package.order
@@ -0,0 +1,3 @@
+ChilledWaterPlantReset
+ChilledWaterSupply
+Validation
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/Processes/Down.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/Processes/Down.mo
new file mode 100644
index 00000000000..c09ee7486e9
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/Processes/Down.mo
@@ -0,0 +1,947 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.Processes;
+block Down
+ "Sequence for controlling devices when there is a stage-down command"
+
+ parameter Integer nChi = 2 "Total number of chillers in the plant";
+ parameter Integer nConWatPum=2 "Total number of condenser water pumps";
+ parameter Integer totSta = 3
+ "Total number of plant stages, including stage zero and the stages with a WSE, if applicable";
+ parameter Integer nChiSta=3
+ "Total number of chiller stages, including stage zero but not the stages with a WSE, if applicable";
+ parameter Boolean have_WSE=true
+ "True: have waterside economizer";
+ parameter Boolean have_ponyChiller=false
+ "True: have pony chiller";
+ parameter Boolean have_parChi=true
+ "True: the plant has parallel chillers";
+ parameter Boolean have_heaConWatPum=true
+ "True: headered condenser water pumps";
+ parameter Boolean have_fixSpeConWatPum=false
+ "True: fixed speed condenser water pump";
+ parameter Boolean need_reduceChillerDemand=false
+ "True: need limit chiller demand when chiller staging";
+ parameter Real chiDemRedFac=0.75
+ "Demand reducing factor of current operating chillers"
+ annotation (Dialog(group="Disable last chiller", enable=have_ponyChiller and need_reduceChillerDemand));
+ parameter Real holChiDemTim(
+ final unit="s",
+ final quantity="Time",
+ displayUnit="s")=300
+ "Maximum time to wait for the actual demand less than percentage of current load"
+ annotation (Dialog(group="Disable last chiller", enable=have_ponyChiller and need_reduceChillerDemand));
+ parameter Real waiTim(
+ final unit="s",
+ final quantity="Time",
+ displayUnit="s")=30
+ "Waiting time after enabling next head pressure control"
+ annotation (Dialog(group="Disable last chiller", enable=have_ponyChiller));
+ parameter Real proOnTim(
+ final unit="s",
+ final quantity="Time",
+ displayUnit="s")=300
+ "Enabled chiller operation time to indicate if it is proven on"
+ annotation (Dialog(group="Disable last chiller", enable=have_ponyChiller));
+ parameter Real chaChiWatIsoTim(
+ final unit="s",
+ final quantity="Time",
+ displayUnit="s")
+ "Time to slowly change isolation valve, should be determined in the field"
+ annotation (Dialog(group="Disable CHW isolation valve"));
+ parameter Real staVec[totSta]
+ "Chiller stage vector, element value like x.5 means chiller stage x plus WSE"
+ annotation (Dialog(group="Disable condenser water pump"));
+ parameter Real desConWatPumSpe[totSta]
+ "Design condenser water pump speed setpoints, according to current chiller stage and WSE status"
+ annotation (Dialog(group="Disable condenser water pump"));
+ parameter Real desConWatPumNum[totSta]
+ "Design number of condenser water pumps that should be ON, according to current chiller stage and WSE status"
+ annotation (Dialog(group="Disable condenser water pump"));
+ parameter Real desChiNum[nChiSta]={0,1,2}
+ "Design number of chiller that should be ON, according to current chiller stage"
+ annotation (Dialog(group="Disable condenser water pump", enable=have_fixSpeConWatPum));
+ parameter Real byPasSetTim(
+ final unit="s",
+ final quantity="Time",
+ displayUnit="s")
+ "Time to reset minimum by-pass flow"
+ annotation (Dialog(group="Reset CHW minimum flow setpoint"));
+ parameter Real minFloSet[nChi](
+ final unit="m3/s",
+ final quantity="VolumeFlowRate",
+ displayUnit="m3/s")
+ "Minimum chilled water flow through each chiller"
+ annotation (Dialog(group="Reset CHW minimum flow setpoint"));
+ parameter Real maxFloSet[nChi](
+ final unit="m3/s",
+ final quantity="VolumeFlowRate",
+ displayUnit="m3/s")
+ "Maximum chilled water flow through each chiller"
+ annotation (Dialog(group="Reset CHW minimum flow setpoint"));
+ parameter Real aftByPasSetTim(
+ final unit="s",
+ final quantity="Time",
+ displayUnit="s")=60
+ "Time to allow loop to stabilize after resetting minimum chilled water flow setpoint"
+ annotation (Dialog(group="Reset bypass"));
+ parameter Real pumSpeChe = 0.05
+ "Lower threshold value to check if condenser water pump has achieved setpoint"
+ annotation (Dialog(tab="Advanced", group="Disable condenser water pump"));
+ parameter Real relFloDif=0.05
+ "Relative error to the setpoint for checking if it has achieved flow rate setpoint"
+ annotation (Dialog(tab="Advanced", group="Reset bypass"));
+
+ Buildings.Controls.OBC.CDL.Interfaces.IntegerInput uStaSet
+ "Chiller stage setpoint index"
+ annotation (Placement(transformation(extent={{-320,360},{-280,400}}),
+ iconTransformation(extent={{-140,170},{-100,210}})));
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uChiSet[nChi]
+ "Vector of chillers status setpoint"
+ annotation (Placement(transformation(extent={{-320,300},{-280,340}}),
+ iconTransformation(extent={{-140,150},{-100,190}})));
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput yOpeParLoaRatMin(
+ final min=0,
+ final max=1,
+ final unit="1") if need_reduceChillerDemand
+ "Current stage minimum cycling operative partial load ratio"
+ annotation (Placement(transformation(extent={{-320,260},{-280,300}}),
+ iconTransformation(extent={{-140,120},{-100,160}})));
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput uChiLoa[nChi](
+ final quantity=fill("ElectricCurrent", nChi),
+ final unit=fill("A", nChi)) if need_reduceChillerDemand
+ "Current chiller load"
+ annotation (Placement(transformation(extent={{-320,230},{-280,270}}),
+ iconTransformation(extent={{-140,100},{-100,140}})));
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uChi[nChi]
+ "Chiller status: true=ON"
+ annotation (Placement(transformation(extent={{-320,200},{-280,240}}),
+ iconTransformation(extent={{-140,70},{-100,110}})));
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput VChiWat_flow(
+ final min=0,
+ final unit="m3/s",
+ final quantity="VolumeFlowRate")
+ "Measured chilled water flow rate"
+ annotation (Placement(transformation(extent={{-320,170},{-280,210}}),
+ iconTransformation(extent={{-140,50},{-100,90}})));
+ Buildings.Controls.OBC.CDL.Interfaces.IntegerInput uChiSta
+ "Current chiller stage, it would the same as chiller stage setpoint when it is not in staging process"
+ annotation (Placement(transformation(extent={{-320,140},{-280,180}}),
+ iconTransformation(extent={{-140,20},{-100,60}})));
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uChiHeaCon[nChi]
+ "Chillers head pressure control status"
+ annotation (Placement(transformation(extent={{-320,110},{-280,150}}),
+ iconTransformation(extent={{-140,-10},{-100,30}})));
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput uChiWatIsoVal[nChi](
+ final min=fill(0, nChi),
+ final max=fill(1, nChi),
+ final unit=fill("1", nChi))
+ "Chilled water isolation valve position"
+ annotation (Placement(transformation(extent={{-320,80},{-280,120}}),
+ iconTransformation(extent={{-140,-40},{-100,0}})));
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uChiWatReq[nChi]
+ "Chilled water requst status for each chiller"
+ annotation (Placement(transformation(extent={{-320,-30},{-280,10}}),
+ iconTransformation(extent={{-140,-70},{-100,-30}})));
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uConWatReq[nChi]
+ "Condenser water requst status for each chiller"
+ annotation (Placement(transformation(extent={{-320,-140},{-280,-100}}),
+ iconTransformation(extent={{-140,-90},{-100,-50}})));
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uChiConIsoVal[nChi]
+ "Chiller condenser water isolation valve status"
+ annotation (Placement(transformation(extent={{-320,-200},{-280,-160}}),
+ iconTransformation(extent={{-140,-120},{-100,-80}})));
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uWSE if have_WSE
+ "Water side economizer status: true = ON, false = OFF"
+ annotation (Placement(transformation(extent={{-320,-260},{-280,-220}}),
+ iconTransformation(extent={{-140,-150},{-100,-110}})));
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput uConWatPumSpeSet(
+ final min=0,
+ final max=1,
+ final unit="1") if not have_fixSpeConWatPum
+ "Condenser water pump speed setpoint"
+ annotation (Placement(transformation(extent={{-320,-300},{-280,-260}}),
+ iconTransformation(extent={{-140,-170},{-100,-130}})));
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput uConWatPumSpe(
+ final min=0,
+ final max=1,
+ final unit="1") if not have_fixSpeConWatPum
+ "Current condenser water pump speed"
+ annotation (Placement(transformation(extent={{-320,-360},{-280,-320}}),
+ iconTransformation(extent={{-140,-190},{-100,-150}})));
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uConWatPum[nConWatPum] if have_fixSpeConWatPum
+ "Status indicating if condenser water pump is running"
+ annotation (Placement(transformation(extent={{-320,-400},{-280,-360}}),
+ iconTransformation(extent={{-140,-210},{-100,-170}})));
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanOutput yStaPro
+ "Indicate stage-down status: true=in stage-down process"
+ annotation (Placement(transformation(extent={{280,330},{320,370}}),
+ iconTransformation(extent={{100,170},{140,210}})));
+ Buildings.Controls.OBC.CDL.Interfaces.RealOutput yChiDem[nChi](
+ final quantity=fill("ElectricCurrent", nChi),
+ final unit=fill("A", nChi)) if need_reduceChillerDemand
+ "Chiller demand setpoint"
+ annotation (Placement(transformation(extent={{280,240},{320,280}}),
+ iconTransformation(extent={{100,130},{140,170}})));
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanOutput yChi[nChi]
+ "Chiller enabling status"
+ annotation (Placement(transformation(extent={{280,200},{320,240}}),
+ iconTransformation(extent={{100,100},{140,140}})));
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanOutput yReaDemLim
+ if need_reduceChillerDemand
+ "Release demand limit"
+ annotation (Placement(transformation(extent={{280,160},{320,200}}),
+ iconTransformation(extent={{100,60},{140,100}})));
+ Buildings.Controls.OBC.CDL.Interfaces.RealOutput yChiWatIsoVal[nChi](
+ final min=fill(0, nChi),
+ final max=fill(1, nChi),
+ final unit=fill("1", nChi))
+ "Chiller chilled water isolation valve position"
+ annotation (Placement(transformation(extent={{280,20},{320,60}}),
+ iconTransformation(extent={{100,20},{140,60}})));
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanOutput yTowStaDow
+ "Tower stage down status: true=stage down cooling tower"
+ annotation (Placement(transformation(extent={{280,-80},{320,-40}}),
+ iconTransformation(extent={{100,-20},{140,20}})));
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanOutput yChiHeaCon[nChi]
+ "Chiller head pressure control enabling status"
+ annotation (Placement(transformation(extent={{280,-120},{320,-80}}),
+ iconTransformation(extent={{100,-50},{140,-10}})));
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanOutput yLeaPum
+ "Lead condenser water pump status"
+ annotation (Placement(transformation(extent={{280,-170},{320,-130}}),
+ iconTransformation(extent={{100,-90},{140,-50}})));
+ Buildings.Controls.OBC.CDL.Interfaces.RealOutput yDesConWatPumSpe(
+ final min=0,
+ final max=1,
+ final unit="1") if not have_fixSpeConWatPum
+ "Condenser water pump design speed at current stage"
+ annotation (Placement(transformation(extent={{280,-200},{320,-160}}),
+ iconTransformation(extent={{100,-130},{140,-90}})));
+ Buildings.Controls.OBC.CDL.Interfaces.IntegerOutput yConWatPumNum
+ "Number of operating condenser water pumps"
+ annotation (Placement(transformation(extent={{280,-240},{320,-200}}),
+ iconTransformation(extent={{100,-170},{140,-130}})));
+ Buildings.Controls.OBC.CDL.Interfaces.RealOutput yChiWatMinFloSet(
+ final min=0,
+ final unit="m3/s",
+ final quantity="VolumeFlowRate")
+ "Chilled water minimum flow setpoint"
+ annotation (Placement(transformation(extent={{280,-350},{320,-310}}),
+ iconTransformation(extent={{100,-210},{140,-170}})));
+
+protected
+ Buildings.Controls.OBC.CDL.Integers.Change cha
+ "Check if stage setpoint dicreases"
+ annotation (Placement(transformation(extent={{-240,340},{-220,360}})));
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.Processes.Subsequences.NextChiller
+ nexChi(final nChi=nChi) "Identify next enabling chiller"
+ annotation (Placement(transformation(extent={{-40,310},{-20,330}})));
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.Processes.Subsequences.DownStart
+ dowSta(
+ final nChi=nChi,
+ final have_parChi=have_parChi,
+ final need_reduceChillerDemand=need_reduceChillerDemand,
+ final chiDemRedFac=chiDemRedFac,
+ final holChiDemTim=holChiDemTim,
+ final minFloSet=minFloSet,
+ final maxFloSet=maxFloSet,
+ final aftByPasSetTim=aftByPasSetTim,
+ final relFloDif=relFloDif,
+ final byPasSetTim=byPasSetTim,
+ final waiTim=waiTim,
+ final chaChiWatIsoTim=chaChiWatIsoTim,
+ final proOnTim=proOnTim) "Start stage-down process"
+ annotation (Placement(transformation(extent={{60,220},{80,240}})));
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.Processes.Subsequences.CHWIsoVal
+ disChiIsoVal(
+ final nChi=nChi,
+ final chaChiWatIsoTim=chaChiWatIsoTim,
+ final iniValPos=1,
+ final endValPos=0) "Disable isolation valve of the chiller being disabled"
+ annotation (Placement(transformation(extent={{200,50},{220,70}})));
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.Processes.Subsequences.HeadControl
+ disHeaCon(
+ final nChi=nChi,
+ final thrTimEnb=0,
+ final waiTim=0,
+ final heaStaCha=false)
+ "Disable head pressure control of the chiller being disabled"
+ annotation (Placement(transformation(extent={{200,-110},{220,-90}})));
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.Processes.Subsequences.EnableCWPump
+ disNexCWP
+ "Identify correct stage number for disabling next condenser water pump"
+ annotation (Placement(transformation(extent={{100,-170},{120,-150}})));
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Pumps.CondenserWater.Controller
+ conWatPumCon(
+ final have_heaPum=have_heaConWatPum,
+ final have_WSE=have_WSE,
+ final fixSpe=have_fixSpeConWatPum,
+ final nChi=nChi,
+ final nConWatPum=nConWatPum,
+ final totSta=totSta,
+ final nChiSta=nChiSta,
+ final staVec=staVec,
+ final desConWatPumSpe=desConWatPumSpe,
+ final desConWatPumNum=desConWatPumNum,
+ final desChiNum=desChiNum,
+ final pumSpeChe=pumSpeChe)
+ "Enabling next condenser water pump or change pump speed"
+ annotation (Placement(transformation(extent={{140,-192},{160,-172}})));
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.MinimumFlowBypass.FlowSetpoint
+ minChiWatFlo(
+ final nChi=nChi,
+ final have_parChi=have_parChi,
+ final maxFloSet=maxFloSet,
+ final byPasSetTim=byPasSetTim,
+ final minFloSet=minFloSet) "Minimum chilled water flow setpoint"
+ annotation (Placement(transformation(extent={{100,-330},{120,-310}})));
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.Processes.Subsequences.ResetMinBypass
+ minBypSet(
+ final aftByPasSetTim=aftByPasSetTim,
+ final relFloDif=relFloDif)
+ "Check if minium bypass has been reset"
+ annotation (Placement(transformation(extent={{100,-380},{120,-360}})));
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant con(final k=false)
+ "False constant"
+ annotation (Placement(transformation(extent={{-160,190},{-140,210}})));
+ Buildings.Controls.OBC.CDL.Conversions.BooleanToReal booToRea1[nChi]
+ "Convert boolean input to real output"
+ annotation (Placement(transformation(extent={{-240,-20},{-220,0}})));
+ Buildings.Controls.OBC.CDL.Routing.RealExtractor curDisChi(final nin=nChi)
+ "Current disabling chiller"
+ annotation (Placement(transformation(extent={{-80,-20},{-60,0}})));
+ Buildings.Controls.OBC.CDL.Continuous.LessThreshold lesEquThr(
+ final t=0.5)
+ "Check if the disabled chiller has chilled water request"
+ annotation (Placement(transformation(extent={{-40,-20},{-20,0}})));
+ Buildings.Controls.OBC.CDL.Logical.And and4 "Logical and"
+ annotation (Placement(transformation(extent={{-40,20},{-20,40}})));
+ Buildings.Controls.OBC.CDL.Logical.Switch logSwi2 "Logical switch"
+ annotation (Placement(transformation(extent={{60,10},{80,30}})));
+ Buildings.Controls.OBC.CDL.Logical.And and1 "Logical and"
+ annotation (Placement(transformation(extent={{140,10},{160,30}})));
+ Buildings.Controls.OBC.CDL.Routing.BooleanScalarReplicator booRep4(final nout=nChi)
+ "Replicate boolean input"
+ annotation (Placement(transformation(extent={{40,70},{60,90}})));
+ Buildings.Controls.OBC.CDL.Continuous.Switch swi[nChi]
+ "Chilled water isolvation valve position"
+ annotation (Placement(transformation(extent={{140,70},{160,90}})));
+ Buildings.Controls.OBC.CDL.Conversions.BooleanToReal booToRea2[nChi]
+ "Convert boolean input to real output"
+ annotation (Placement(transformation(extent={{-240,-130},{-220,-110}})));
+ Buildings.Controls.OBC.CDL.Routing.RealExtractor curDisChi1(final nin=nChi)
+ "Current disabling chiller"
+ annotation (Placement(transformation(extent={{-80,-130},{-60,-110}})));
+ Buildings.Controls.OBC.CDL.Continuous.LessThreshold lesEquThr1(
+ final t=0.5)
+ "Check if the disabled chiller is not requiring condenser water"
+ annotation (Placement(transformation(extent={{-40,-130},{-20,-110}})));
+ Buildings.Controls.OBC.CDL.Logical.And3 and5 "Logical and"
+ annotation (Placement(transformation(extent={{60,-130},{80,-110}})));
+ Buildings.Controls.OBC.CDL.Routing.BooleanScalarReplicator booRep1(final nout=nChi)
+ "Replicate boolean input"
+ annotation (Placement(transformation(extent={{60,-80},{80,-60}})));
+ Buildings.Controls.OBC.CDL.Logical.Switch logSwi [nChi]
+ "Chillers head pressure control status"
+ annotation (Placement(transformation(extent={{140,-80},{160,-60}})));
+ Buildings.Controls.OBC.CDL.Logical.MultiOr mulOr(final nin=nChi) "Multiple or"
+ annotation (Placement(transformation(extent={{-80,-210},{-60,-190}})));
+ Buildings.Controls.OBC.CDL.Logical.MultiOr mulOr1(final nin=nChi) "Multiple or"
+ annotation (Placement(transformation(extent={{-40,-230},{-20,-210}})));
+ Buildings.Controls.OBC.CDL.Logical.Latch lat
+ "Logical latch, maintain ON signal until condition changes"
+ annotation (Placement(transformation(extent={{-180,340},{-160,360}})));
+ Buildings.Controls.OBC.CDL.Logical.And and2 "Logical and"
+ annotation (Placement(transformation(extent={{200,-250},{220,-230}})));
+ Buildings.Controls.OBC.CDL.Logical.Edge edg1
+ "Rising edge, output true at the moment when input turns from false to true"
+ annotation (Placement(transformation(extent={{200,-380},{220,-360}})));
+ Buildings.Controls.OBC.CDL.Logical.Pre pre
+ "Break algebraic loop"
+ annotation (Placement(transformation(extent={{160,-380},{180,-360}})));
+ Buildings.Controls.OBC.CDL.Logical.Latch lat1
+ "Maintain ON signal when condenser water pump has been disabled"
+ annotation (Placement(transformation(extent={{240,-270},{260,-250}})));
+ Buildings.Controls.OBC.CDL.Logical.Latch lat2
+ "Maintain ON signal when chiller demand has been limited"
+ annotation (Placement(transformation(extent={{120,150},{140,170}})));
+ Buildings.Controls.OBC.CDL.Continuous.Switch chiWatMinSet
+ "Chilled water minimum flow set"
+ annotation (Placement(transformation(extent={{200,-340},{220,-320}})));
+ Buildings.Controls.OBC.CDL.Logical.Latch lat3
+ "Maintain ON signal when chilled water isolation valve has been disabled"
+ annotation (Placement(transformation(extent={{200,-40},{220,-20}})));
+ Buildings.Controls.OBC.CDL.Logical.Latch lat4
+ "Maintain ON signal when chiller head pressure control has been disabled"
+ annotation (Placement(transformation(extent={{200,-140},{220,-120}})));
+
+equation
+ connect(nexChi.yEnaSmaChi,dowSta. nexEnaChi)
+ annotation (Line(points={{-18,311},{30,311},{30,226},{58,226}},
+ color={255,127,0}));
+ connect(dowSta.uChiWatIsoVal, uChiWatIsoVal)
+ annotation (Line(points={{58,222},{-60,222},{-60,100},{-300,100}},
+ color={0,0,127}));
+ connect(nexChi.yLasDisChi,dowSta. nexDisChi)
+ annotation (Line(points={{-18,316},{20,316},{20,220},{58,220}},
+ color={255,127,0}));
+ connect(uChiWatReq, booToRea1.u)
+ annotation (Line(points={{-300,-10},{-242,-10}}, color={255,0,255}));
+ connect(booToRea1.y, curDisChi.u)
+ annotation (Line(points={{-218,-10},{-82,-10}}, color={0,0,127}));
+ connect(curDisChi.y, lesEquThr.u)
+ annotation (Line(points={{-58,-10},{-42,-10}}, color={0,0,127}));
+ connect(nexChi.yOnOff, logSwi2.u2)
+ annotation (Line(points={{-18,320},{0,320},{0,20},{58,20}},
+ color={255,0,255}));
+ connect(and4.y, logSwi2.u1)
+ annotation (Line(points={{-18,30},{40,30},{40,28},{58,28}},
+ color={255,0,255}));
+ connect(nexChi.yLasDisChi, curDisChi.index)
+ annotation (Line(points={{-18,316},{20,316},{20,120},{-140,120},{-140,-30},
+ {-70,-30},{-70,-22}}, color={255,127,0}));
+ connect(lesEquThr.y, and1.u2)
+ annotation (Line(points={{-18,-10},{120,-10},{120,12},{138,12}},
+ color={255,0,255}));
+ connect(logSwi2.y, and1.u1)
+ annotation (Line(points={{82,20},{138,20}}, color={255,0,255}));
+ connect(nexChi.yLasDisChi, disChiIsoVal.nexChaChi)
+ annotation (Line(points={{-18,316},{20,316},{20,68},{198,68}},
+ color={255,127,0}));
+ connect(and1.y,disChiIsoVal.uUpsDevSta)
+ annotation (Line(points={{162,20},{180,20},{180,55},{198,55}},
+ color={255,0,255}));
+ connect(nexChi.yOnOff, booRep4.u)
+ annotation (Line(points={{-18,320},{0,320},{0,80},{38,80}}, color={255,0,255}));
+ connect(booRep4.y, swi.u2)
+ annotation (Line(points={{62,80},{138,80}}, color={255,0,255}));
+ connect(uChiWatIsoVal, swi.u3)
+ annotation (Line(points={{-300,100},{80,100},{80,72},{138,72}},
+ color={0,0,127}));
+ connect(dowSta.yChiWatIsoVal, swi.u1)
+ annotation (Line(points={{82,228},{96,228},{96,88},{138,88}},
+ color={0,0,127}));
+ connect(swi.y, disChiIsoVal.uChiWatIsoVal)
+ annotation (Line(points={{162,80},{180,80},{180,65},{198,65}},
+ color={0,0,127}));
+ connect(uConWatReq, booToRea2.u)
+ annotation (Line(points={{-300,-120},{-242,-120}}, color={255,0,255}));
+ connect(booToRea2.y, curDisChi1.u)
+ annotation (Line(points={{-218,-120},{-82,-120}},color={0,0,127}));
+ connect(curDisChi1.y, lesEquThr1.u)
+ annotation (Line(points={{-58,-120},{-42,-120}}, color={0,0,127}));
+ connect(logSwi2.y, and5.u1)
+ annotation (Line(points={{82,20},{90,20},{90,-20},{10,-20},{10,-112},{58,-112}},
+ color={255,0,255}));
+ connect(lesEquThr1.y, and5.u3)
+ annotation (Line(points={{-18,-120},{10,-120},{10,-128},{58,-128}},
+ color={255,0,255}));
+ connect(uChi,dowSta. uChi)
+ annotation (Line(points={{-300,220},{-200,220},{-200,234},{58,234}},
+ color={255,0,255}));
+ connect(nexChi.yLasDisChi, curDisChi1.index)
+ annotation (Line(points={{-18,316},{20,316},{20,120},{-140,120},{-140,-140},
+ {-70,-140},{-70,-132}}, color={255,127,0}));
+ connect(nexChi.yOnOff, booRep1.u)
+ annotation (Line(points={{-18,320},{0,320},{0,-70},{58,-70}},
+ color={255,0,255}));
+ connect(booRep1.y, logSwi.u2)
+ annotation (Line(points={{82,-70},{138,-70}}, color={255,0,255}));
+ connect(dowSta.yChiHeaCon, logSwi.u1)
+ annotation (Line(points={{82,232},{100,232},{100,-62},{138,-62}},
+ color={255,0,255}));
+ connect(and5.y, disHeaCon.uUpsDevSta)
+ annotation (Line(points={{82,-120},{160,-120},{160,-96},{198,-96}},
+ color={255,0,255}));
+ connect(nexChi.yLasDisChi, disHeaCon.nexChaChi)
+ annotation (Line(points={{-18,316},{20,316},{20,-104},{198,-104}},
+ color={255,127,0}));
+ connect(logSwi.y, disHeaCon.uChiHeaCon)
+ annotation (Line(points={{162,-70},{180,-70},{180,-108},{198,-108}},
+ color={255,0,255}));
+ connect(con.y,disNexCWP. uStaUp)
+ annotation (Line(points={{-138,200},{-120,200},{-120,-158},{98,-158}},
+ color={255,0,255}));
+ connect(disNexCWP.yChiSta, conWatPumCon.uChiSta)
+ annotation (Line(points={{122,-160},{130,-160},{130,-183},{138,-183}},
+ color={255,127,0}));
+ connect(mulOr1.y, conWatPumCon.uLeaConWatReq)
+ annotation (Line(points={{-18,-220},{46,-220},{46,-178},{138,-178}},
+ color={255,0,255}));
+ connect(uChi, mulOr.u)
+ annotation (Line(points={{-300,220},{-200,220},{-200,-200},{-82,-200}},
+ color={255,0,255}));
+ connect(uConWatReq, mulOr1.u)
+ annotation (Line(points={{-300,-120},{-250,-120},{-250,-220},{-42,-220}},
+ color={255,0,255}));
+ connect(conWatPumCon.uWSE, uWSE)
+ annotation (Line(points={{138,-185},{52,-185},{52,-240},{-300,-240}},
+ color={255,0,255}));
+ connect(conWatPumCon.uConWatPumSpe, uConWatPumSpe)
+ annotation (Line(points={{138,-189},{64,-189},{64,-340},{-300,-340}},
+ color={0,0,127}));
+ connect(con.y, minChiWatFlo.uStaUp)
+ annotation (Line(points={{-138,200},{-120,200},{-120,-311},{98,-311}},
+ color={255,0,255}));
+ connect(nexChi.yOnOff, minChiWatFlo.uOnOff)
+ annotation (Line(points={{-18,320},{0,320},{0,-327},{98,-327}},
+ color={255,0,255}));
+ connect(dowSta.yChiDem, yChiDem)
+ annotation (Line(points={{82,239},{179.5,239},{179.5,260},{300,260}},
+ color={0,0,127}));
+ connect(dowSta.yChi, yChi)
+ annotation (Line(points={{82,224},{180,224},{180,220},{300,220}},
+ color={255,0,255}));
+ connect(disChiIsoVal.yChiWatIsoVal, yChiWatIsoVal)
+ annotation (Line(points={{222,54},{250,54},{250,40},{300,40}},
+ color={0,0,127}));
+ connect(lat.y, minBypSet.chaPro)
+ annotation (Line(points={{-158,350},{-140,350},{-140,328},{-260,328},
+ {-260,-366}, {98,-366}}, color={255,0,255}));
+ connect(VChiWat_flow, minBypSet.VChiWat_flow)
+ annotation (Line(points={{-300,190},{-170,190},{-170,-374},{98,-374}},
+ color={0,0,127}));
+ connect(VChiWat_flow, dowSta.VChiWat_flow)
+ annotation (Line(points={{-300,190},{-170,190},{-170,232},{58,232}},
+ color={0,0,127}));
+ connect(uChiLoa,dowSta. uChiLoa)
+ annotation (Line(points={{-300,250},{-170,250},{-170,236},{58,236}},
+ color={0,0,127}));
+ connect(lat.y,dowSta. uStaDow)
+ annotation (Line(points={{-158,350},{-140,350},{-140,328},{-260,328},{-260,240},
+ {58,240}}, color={255,0,255}));
+ connect(lat.y, disChiIsoVal.chaPro)
+ annotation (Line(points={{-158,350},{-140,350},{-140,328},{-260,328},{-260,52},
+ {198,52}}, color={255,0,255}));
+ connect(lat.y, and4.u2)
+ annotation (Line(points={{-158,350},{-140,350},{-140,328},{-260,328},{-260,22},
+ {-42,22}}, color={255,0,255}));
+ connect(lat.y, logSwi2.u3)
+ annotation (Line(points={{-158,350},{-140,350},{-140,328},{-260,328},{-260,12},
+ {58,12}}, color={255,0,255}));
+ connect(lat.y, disHeaCon.chaPro)
+ annotation (Line(points={{-158,350},{-140,350},{-140,328},{-260,328},{-260,-100},
+ {198,-100}}, color={255,0,255}));
+ connect(lat.y, minChiWatFlo.uStaDow)
+ annotation (Line(points={{-158,350},{-140,350},{-140,328},{-260,328},{-260,-329},
+ {98,-329}}, color={255,0,255}));
+ connect(lat.y,disNexCWP. uStaDow)
+ annotation (Line(points={{-158,350},{-140,350},{-140,328},{-260,328},{-260,-162},
+ {98,-162}}, color={255,0,255}));
+ connect(lat.y, yStaPro)
+ annotation (Line(points={{-158,350},{300,350}},color={255,0,255}));
+ connect(dowSta.yOpeParLoaRatMin, yOpeParLoaRatMin)
+ annotation (Line(points={{58,238},{40,238},{40,280},{-300,280}},
+ color={0,0,127}));
+ connect(conWatPumCon.uChiConIsoVal, uChiConIsoVal)
+ annotation (Line(points={{138,-172},{-140,-172},{-140,-180},{-300,-180}},
+ color={255,0,255}));
+ connect(mulOr.y, conWatPumCon.uLeaChiEna)
+ annotation (Line(points={{-58,-200},{40,-200},{40,-174},{138,-174}},
+ color={255,0,255}));
+ connect(mulOr.y, conWatPumCon.uLeaChiSta)
+ annotation (Line(points={{-58,-200},{40,-200},{40,-176},{138,-176}},
+ color={255,0,255}));
+ connect(conWatPumCon.yDesConWatPumSpe, yDesConWatPumSpe)
+ annotation (Line(points={{162,-179},{240,-179},{240,-180},{300,-180}},
+ color={0,0,127}));
+ connect(conWatPumCon.uConWatPumSpeSet, uConWatPumSpeSet)
+ annotation (Line(points={{138,-187},{58,-187},{58,-280},{-300,-280}},
+ color={0,0,127}));
+ connect(uChi, minChiWatFlo.uChi)
+ annotation (Line(points={{-300,220},{-200,220},{-200,-316},{98,-316}},
+ color={255,0,255}));
+ connect(nexChi.yLasDisChi, minChiWatFlo.nexDisChi)
+ annotation (Line(points={{-18,316},{20,316},{20,-321},{98,-321}},
+ color={255,127,0}));
+ connect(nexChi.yEnaSmaChi, minChiWatFlo.nexEnaChi)
+ annotation (Line(points={{-18,311},{30,311},{30,-319},{98,-319}},
+ color={255,127,0}));
+ connect(con.y, minChiWatFlo.uSubCha)
+ annotation (Line(points={{-138,200},{-120,200},{-120,-324},{98,-324}},
+ color={255,0,255}));
+ connect(edg1.y, lat.clr)
+ annotation (Line(points={{222,-370},{260,-370},{260,-390},{-190,-390},
+ {-190,344},{-182,344}}, color={255,0,255}));
+ connect(conWatPumCon.yConWatPumNum, yConWatPumNum)
+ annotation (Line(points={{162,-185},{220,-185},{220,-220},{300,-220}},
+ color={255,127,0}));
+ connect(conWatPumCon.yLeaPum, yLeaPum)
+ annotation (Line(points={{162,-173},{220,-173},{220,-150},{300,-150}},
+ color={255,0,255}));
+ connect(disHeaCon.yChiHeaCon, yChiHeaCon)
+ annotation (Line(points={{222,-106},{260,-106},{260,-100},{300,-100}},
+ color={255,0,255}));
+ connect(minBypSet.yMinBypRes, pre.u)
+ annotation (Line(points={{122,-370},{158,-370}}, color={255,0,255}));
+ connect(pre.y, edg1.u)
+ annotation (Line(points={{182,-370},{198,-370}}, color={255,0,255}));
+ connect(dowSta.yReaDemLim, yReaDemLim)
+ annotation (Line(points={{82,221},{92,221},{92,180},{300,180}},
+ color={255,0,255}));
+ connect(dowSta.yReaDemLim, lat2.u)
+ annotation (Line(points={{82,221},{92,221},{92,160},{118,160}},
+ color={255,0,255}));
+ connect(edg1.y, lat2.clr)
+ annotation (Line(points={{222,-370},{260,-370},{260,-390},{-190,-390},
+ {-190,154},{118,154}}, color={255,0,255}));
+ connect(lat2.y, and4.u1)
+ annotation (Line(points={{142,160},{160,160},{160,140},{-80,140},{-80,30},
+ {-42,30}}, color={255,0,255}));
+ connect(conWatPumCon.yPumSpeChe, and2.u1)
+ annotation (Line(points={{162,-191},{180,-191},{180,-240},{198,-240}},
+ color={255,0,255}));
+ connect(and2.y, lat1.u)
+ annotation (Line(points={{222,-240},{230,-240},{230,-260},{238,-260}},
+ color={255,0,255}));
+ connect(edg1.y, lat1.clr)
+ annotation (Line(points={{222,-370},{260,-370},{260,-390},{-190,-390},
+ {-190,-266},{238,-266}}, color={255,0,255}));
+ connect(lat1.y, minChiWatFlo.uUpsDevSta)
+ annotation (Line(points={{262,-260},{270,-260},{270,-290},{-40,-290},
+ {-40,-313},{98,-313}}, color={255,0,255}));
+ connect(lat1.y, minBypSet.uUpsDevSta)
+ annotation (Line(points={{262,-260},{270,-260},{270,-290},{-40,-290},
+ {-40,-362},{98,-362}}, color={255,0,255}));
+ connect(dowSta.yChiWatMinFloSet, chiWatMinSet.u3)
+ annotation (Line(points={{82,236},{170,236},{170,-338},{198,-338}},
+ color={0,0,127}));
+ connect(minChiWatFlo.yChiWatMinFloSet, chiWatMinSet.u1)
+ annotation (Line(points={{122,-320},{140,-320},{140,-322},{198,-322}},
+ color={0,0,127}));
+ connect(lat1.y, chiWatMinSet.u2)
+ annotation (Line(points={{262,-260},{270,-260},{270,-290},{160,-290},
+ {160,-330},{198,-330}}, color={255,0,255}));
+ connect(chiWatMinSet.y, yChiWatMinFloSet)
+ annotation (Line(points={{222,-330},{300,-330}}, color={0,0,127}));
+ connect(chiWatMinSet.y, minBypSet.VMinChiWat_setpoint)
+ annotation (Line(points={{222,-330},{240,-330},{240,-350},{60,-350},
+ {60,-378},{98,-378}}, color={0,0,127}));
+ connect(nexChi.yOnOff, dowSta.uOnOff)
+ annotation (Line(points={{-18,320},{0,320},{0,228},{58,228}},
+ color={255,0,255}));
+ connect(edg1.y, dowSta.clr)
+ annotation (Line(points={{222,-370},{260,-370},{260,-390},{-190,-390},
+ {-190,230},{58,230}}, color={255,0,255}));
+ connect(disChiIsoVal.yEnaChiWatIsoVal, lat3.u)
+ annotation (Line(points={{222,66},{240,66},{240,0},{180,0},{180,-30},
+ {198,-30}}, color={255,0,255}));
+ connect(lat3.y, and5.u2)
+ annotation (Line(points={{222,-30},{240,-30},{240,-50},{40,-50},{40,-120},
+ {58,-120}}, color={255,0,255}));
+ connect(edg1.y, lat3.clr)
+ annotation (Line(points={{222,-370},{260,-370},{260,-390},{-190,-390},
+ {-190,-36},{198,-36}}, color={255,0,255}));
+ connect(disHeaCon.yEnaHeaCon, lat4.u)
+ annotation (Line(points={{222,-94},{240,-94},{240,-114},{180,-114},
+ {180,-130},{198,-130}}, color={255,0,255}));
+ connect(lat4.y, yTowStaDow)
+ annotation (Line(points={{222,-130},{250,-130},{250,-60},{300,-60}},
+ color={255,0,255}));
+ connect(lat4.y, disNexCWP.uUpsDevSta)
+ annotation (Line(points={{222,-130},{250,-130},{250,-142},{80,-142},{80,-152},
+ {98,-152}}, color={255,0,255}));
+ connect(lat4.y, and2.u2)
+ annotation (Line(points={{222,-130},{250,-130},{250,-142},{80,-142},{80,-248},
+ {198,-248}}, color={255,0,255}));
+ connect(edg1.y, lat4.clr)
+ annotation (Line(points={{222,-370},{260,-370},{260,-390},{-190,-390},
+ {-190,-136},{198,-136}}, color={255,0,255}));
+ connect(lat.y, nexChi.chaPro)
+ annotation (Line(points={{-158,350},{-140,350},{-140,328},{-260,328},
+ {-260,313},{-42,313}}, color={255,0,255}));
+ connect(uStaSet, nexChi.uStaSet)
+ annotation (Line(points={{-300,380},{-60,380},{-60,327},{-42,327}},
+ color={255,127,0}));
+ connect(nexChi.uChiSet, uChiSet)
+ annotation (Line(points={{-42,320},{-300,320}}, color={255,0,255}));
+ connect(uStaSet, cha.u)
+ annotation (Line(points={{-300,380},{-260,380},{-260,350},{-242,350}},
+ color={255,127,0}));
+ connect(cha.down, lat.u)
+ annotation (Line(points={{-218,344},{-200,344},{-200,350},{-182,350}},
+ color={255,0,255}));
+ connect(uStaSet, disNexCWP.uStaSet)
+ annotation (Line(points={{-300,380},{-130,380},{-130,-169},{98,-169}},
+ color={255,127,0}));
+ connect(uChiSta, disNexCWP.uChiSta)
+ annotation (Line(points={{-300,160},{-150,160},{-150,-165},{98,-165}},
+ color={255,127,0}));
+ connect(dowSta.uChiHeaCon, uChiHeaCon) annotation (Line(points={{58,224},{-100,
+ 224},{-100,130},{-300,130}}, color={255,0,255}));
+ connect(uChiHeaCon, logSwi.u3) annotation (Line(points={{-300,130},{-100,130},
+ {-100,-86},{120,-86},{120,-78},{138,-78}}, color={255,0,255}));
+ connect(conWatPumCon.uConWatPum, uConWatPum) annotation (Line(points={{138,-191},
+ {70,-191},{70,-380},{-300,-380}}, color={255,0,255}));
+ connect(con.y, disHeaCon.uEnaPla) annotation (Line(points={{-138,200},{-120,200},
+ {-120,-92},{198,-92}}, color={255,0,255}));
+ connect(con.y, conWatPumCon.uEnaPla) annotation (Line(points={{-138,200},{
+ -120,200},{-120,-180},{138,-180}}, color={255,0,255}));
+annotation (
+ defaultComponentName="dowProCon",
+ Diagram(coordinateSystem(preserveAspectRatio=false, extent={{-280,-400},{280,400}})),
+ Icon(coordinateSystem(extent={{-100,-200},{100,200}}), graphics={
+ Rectangle(
+ extent={{-100,-200},{100,200}},
+ lineColor={0,0,127},
+ fillColor={255,255,255},
+ fillPattern=FillPattern.Solid,
+ borderPattern=BorderPattern.Raised),
+ Text(
+ extent={{-120,240},{120,200}},
+ textColor={0,0,255},
+ textString="%name"),
+ Rectangle(
+ extent={{-10,140},{10,-120}},
+ lineColor={200,200,200},
+ fillColor={207,207,207},
+ fillPattern=FillPattern.Solid),
+ Polygon(
+ points={{0,-120},{-42,-120},{0,-160},{40,-120},{0,-120}},
+ lineColor={200,200,200},
+ fillColor={207,207,207},
+ fillPattern=FillPattern.Solid),
+ Text(
+ extent={{-100,198},{-58,186}},
+ textColor={255,127,0},
+ textString="uStaSet"),
+ Text(
+ extent={{-96,148},{-26,134}},
+ textColor={0,0,127},
+ pattern=LinePattern.Dash,
+ textString="yOpeParLoaRatMin",
+ visible=need_reduceChillerDemand),
+ Text(
+ extent={{-96,126},{-60,114}},
+ textColor={0,0,127},
+ pattern=LinePattern.Dash,
+ textString="uChiLoa",
+ visible=need_reduceChillerDemand),
+ Text(
+ extent={{-100,96},{-70,84}},
+ textColor={255,0,255},
+ textString="uChi"),
+ Text(
+ extent={{-98,76},{-44,62}},
+ textColor={0,0,127},
+ pattern=LinePattern.Dash,
+ textString="VChiWat_flow"),
+ Text(
+ extent={{-100,-14},{-40,-26}},
+ textColor={0,0,127},
+ pattern=LinePattern.Dash,
+ textString="uChiWatIsoVal"),
+ Text(
+ extent={{-100,-44},{-50,-56}},
+ textColor={255,0,255},
+ textString="uChiWatReq"),
+ Text(
+ extent={{-98,-62},{-48,-76}},
+ textColor={255,0,255},
+ textString="uConWatReq"),
+ Text(
+ extent={{-98,-92},{-44,-108}},
+ textColor={255,0,255},
+ textString="uChiConIsoVal"),
+ Text(
+ extent={{-104,-124},{-68,-136}},
+ textColor={255,0,255},
+ textString="uWSE",
+ visible=have_WSE),
+ Text(
+ extent={{-98,-162},{-32,-176}},
+ textColor={0,0,127},
+ pattern=LinePattern.Dash,
+ textString="uConWatPumSpe",
+ visible=not have_fixSpeConWatPum),
+ Text(
+ extent={{-98,-140},{-26,-158}},
+ textColor={0,0,127},
+ pattern=LinePattern.Dash,
+ textString="uConWatPumSpeSet",
+ visible=not have_fixSpeConWatPum),
+ Text(
+ extent={{60,198},{100,186}},
+ textColor={255,0,255},
+ textString="yStaPro"),
+ Text(
+ extent={{60,158},{96,146}},
+ textColor={0,0,127},
+ pattern=LinePattern.Dash,
+ textString="yChiDem",
+ visible=need_reduceChillerDemand),
+ Text(
+ extent={{72,126},{96,114}},
+ textColor={255,0,255},
+ textString="yChi"),
+ Text(
+ extent={{36,50},{96,34}},
+ textColor={0,0,127},
+ pattern=LinePattern.Dash,
+ textString="yChiWatIsoVal"),
+ Text(
+ extent={{42,8},{96,-4}},
+ textColor={255,0,255},
+ textString="yTowStaDow"),
+ Text(
+ extent={{48,-22},{96,-36}},
+ textColor={255,0,255},
+ textString="yChiHeaCon"),
+ Text(
+ extent={{58,-62},{96,-74}},
+ textColor={255,0,255},
+ textString="yLeaPum"),
+ Text(
+ extent={{18,-104},{98,-114}},
+ textColor={0,0,127},
+ pattern=LinePattern.Dash,
+ textString="yDesConWatPumSpe",
+ visible=not have_fixSpeConWatPum),
+ Text(
+ extent={{34,-142},{96,-156}},
+ textColor={255,127,0},
+ textString="yConWatPumNum"),
+ Text(
+ extent={{28,-180},{98,-194}},
+ textColor={0,0,127},
+ pattern=LinePattern.Dash,
+ textString="yChiWatMinFloSet"),
+ Text(
+ extent={{40,88},{96,74}},
+ textColor={255,0,255},
+ textString="yReaDemLim",
+ visible=need_reduceChillerDemand),
+ Text(
+ extent={{-100,178},{-60,166}},
+ textColor={255,0,255},
+ textString="uChiSet"),
+ Text(
+ extent={{-100,46},{-58,34}},
+ textColor={255,127,0},
+ textString="uChiSta"),
+ Text(
+ extent={{-98,16},{-44,4}},
+ textColor={255,0,255},
+ textString="uChiHeaCon"),
+ Text(
+ extent={{-98,-182},{-42,-196}},
+ textColor={255,0,255},
+ textString="uConWatPum",
+ visible=have_fixSpeConWatPum)}),
+Documentation(info="
+
+Block that controls devices when there is a stage-down command. This sequence is for
+water-cooled primary-only parallel chiller plants with headered chilled water pumps
+and headered condenser water pumps, or air-cooled primary-only parallel chiller
+plants with headered chilled water pumps.
+This development is based on ASHRAE RP-1711 Advanced Sequences of Operation for
+HVAC Systems Phase II – Central Plants and Hydronic Systems (Draft on March 23, 2020),
+section 5.2.4.17, which specifies the step-by-step control of
+devices during chiller staging down process.
+
+
+-
+Identify the chiller(s) that should be enabled (and disabled, if
have_ponyChiller=true
).
+This is implemented in block nexChi
. See
+
+Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.Processes.Subsequences.NextChiller
+for more decriptions.
+
+-
+Start the staging down process,
+
+-
+For any stage change during which a smaller chiller is enabled and a larger chller
+is disabled:
+
+-
+Command operating chillers to reduce demand to 75% (
chiDemRedFac
) of
+their current load (uChiLoa
) or a percentage equal to current stage
+minimum cycling operative partial load ratio yOpeParLoaRatMin
, whichever is greater.
+Wait until actual demand < 80% of current load up to a maximum of 5 minutes
+(holChiDemTim
) before proceeding.
+
+-
+Slowly change the minimum flow bypass setpoint to the one that includes both
+chillers are enabled. After new setpoint is achieved, wait 1 minute
+(
aftByPasSetTim
) to allow loop stabilize.
+
+-
+Enable head pressure control for the chiller being enabled. Wait 30 seconds (
waiTim
).
+
+-
+Slowly (
chaChiWatIsoTim
) open chilled water isolation valve of the smaller
+chiller being enabled. The valve timing should be determind in the field.
+
+-
+Start the smaller chiller after its chilled water isolation valve is fully open.
+
+-
+Wait 5 minutes (
proOnTim
) for the newly enabled chiller to prove that
+it is operating correctly, then shut off the larger chiller and release the
+demand limit.
+
+
+
+-
+If staging down from any other stage, shut off the last stage chiller.
+
+
+These are implemented in block dowSta
. See
+
+Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.Processes.Subsequences.DownStart
+for more decriptions.
+
+-
+When the controller of the chiller being shut off indicates no request for chilled
+water flow (
uChiWatReq=false
), slowly (chaChiWatIsoTim
)
+close the chiller's chilled water isolation valve to avoid a sudden change in flow
+through other operating chillers.
+This is implemented in block disChiIsoVal
. See
+
+Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.Processes.Subsequences.CHWIsoVal
+for more decriptions.
+
+
+-
+When the controller of the chiller being shut off indicates no request for condenser
+water flow (
uConWatReq=false
), disable the chiller's head pressure control
+loop.
+This is implemented in block disHeaCon
. See
+
+Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.Processes.Subsequences.HeadControl
+for more decriptions.
+
+
+-
+When the condenser water head pressure control valve is fully closed, shut off
+the last lag condenser water pump or change the pump speed to that required of
+the new stage.
+Block
disNexCWP
identifies chiller stage for the condenser water pump
+control
+(
+Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.Processes.Subsequences.EnableCWPump)
+and block conWatPumCon
checks if the condenser water pumps have been reset
+(
+Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Pumps.CondenserWater.Controller).
+
+
+-
+Change the chilled water minimum flow setpoint to that appropriate for the new
+stage.
+The minimum flow setpoint is reset in block
minChiWatFlo
+(
+Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.MinimumFlowBypass.Subsequences.FlowSetpoint).
+Block minBypSet
checks if the new setpoint is achieved
+(
+Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.Processes.Subsequences.ResetMinBypass).
+
+
+", revisions="
+
+-
+September 23, 2019, by Jianjun Hu:
+First implementation.
+
+
+"));
+end Down;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/Processes/Subsequences/CHWIsoVal.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/Processes/Subsequences/CHWIsoVal.mo
new file mode 100644
index 00000000000..1bcfa573441
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/Processes/Subsequences/CHWIsoVal.mo
@@ -0,0 +1,392 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.Processes.Subsequences;
+block CHWIsoVal "Sequence of enable or disable chilled water isolation valve"
+
+ parameter Integer nChi=2
+ "Total number of chiller, which is also the total number of chilled water isolation valve";
+ parameter Real chaChiWatIsoTim(
+ final unit="s",
+ final quantity="Time",
+ displayUnit="h")
+ "Time to slowly change isolation valve, should be determined in the field";
+ parameter Real iniValPos
+ "Initial valve position, if it needs to turn on chiller, the value should be 0";
+ parameter Real endValPos
+ "Ending valve position, if it needs to turn on chiller, the value should be 1";
+
+ Buildings.Controls.OBC.CDL.Interfaces.IntegerInput nexChaChi
+ "Index of next chiller that should change status"
+ annotation (Placement(transformation(extent={{-200,-20},{-160,20}}),
+ iconTransformation(extent={{-140,60},{-100,100}})));
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput uChiWatIsoVal[nChi](
+ final unit=fill("1", nChi),
+ final min=fill(0, nChi),
+ final max=fill(1, nChi)) "Chilled water isolation valve position"
+ annotation (Placement(transformation(extent={{-200,-120},{-160,-80}}),
+ iconTransformation(extent={{-140,30},{-100,70}})));
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uUpsDevSta
+ "Status of resetting status of device before enabling or disabling isolation valve"
+ annotation (Placement(transformation(extent={{-200,-160},{-160,-120}}),
+ iconTransformation(extent={{-140,-70},{-100,-30}})));
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput chaPro
+ "Indicate if there is a stage up or stage down command"
+ annotation (Placement(transformation(extent={{-200,-198},{-160,-158}}),
+ iconTransformation(extent={{-140,-100},{-100,-60}})));
+ Buildings.Controls.OBC.CDL.Interfaces.RealOutput yChiWatIsoVal[nChi](
+ final unit=fill("1", nChi),
+ final min=fill(0, nChi),
+ final max=fill(1, nChi)) "Chiller chilled water isolation valve position"
+ annotation (Placement(transformation(extent={{180,-60},{220,-20}}),
+ iconTransformation(extent={{100,-80},{140,-40}})));
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanOutput yEnaChiWatIsoVal
+ "Status of chilled water isolation valve control: true=enabled valve is fully open"
+ annotation (Placement(transformation(extent={{180,120},{220,160}}),
+ iconTransformation(extent={{100,40},{140,80}})));
+
+protected
+ final parameter Integer chiInd[nChi]={i for i in 1:nChi}
+ "Chiller index, {1,2,...,n}";
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant con7(
+ final k=chaChiWatIsoTim) "Time to change chilled water isolation valve"
+ annotation (Placement(transformation(extent={{-40,20},{-20,40}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant con8(
+ final k=endValPos)
+ "Ending valve position"
+ annotation (Placement(transformation(extent={{0,20},{20,40}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant con6(
+ final k=iniValPos)
+ "Initial isolation valve position"
+ annotation (Placement(transformation(extent={{-40,70},{-20,90}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant con9(
+ final k=0)
+ "Constant zero"
+ annotation (Placement(transformation(extent={{0,70},{20,90}})));
+ Buildings.Controls.OBC.CDL.Continuous.Line lin1
+ "Chilled water isolation valve setpoint"
+ annotation (Placement(transformation(extent={{40,50},{60,70}})));
+ Buildings.Controls.OBC.CDL.Logical.Timer tim(
+ final t=chaChiWatIsoTim)
+ "Count the time after changing up-stream device status"
+ annotation (Placement(transformation(extent={{-100,50},{-80,70}})));
+ Buildings.Controls.OBC.CDL.Logical.Edge edg
+ "Rising edge, output true at the moment when input turns from false to true"
+ annotation (Placement(transformation(extent={{-100,-150},{-80,-130}})));
+ Buildings.Controls.OBC.CDL.Logical.Latch lat
+ "Logical latch, maintain ON signal until condition changes"
+ annotation (Placement(transformation(extent={{20,-180},{40,-160}})));
+ Buildings.Controls.OBC.CDL.Discrete.TriggeredSampler triSam[nChi]
+ "Record the old chiller chilled water isolation valve status"
+ annotation (Placement(transformation(extent={{-80,-110},{-60,-90}})));
+ Buildings.Controls.OBC.CDL.Routing.BooleanScalarReplicator booRep(
+ final nout=nChi)
+ "Replicate boolean input"
+ annotation (Placement(transformation(extent={{20,-150},{40,-130}})));
+ Buildings.Controls.OBC.CDL.Logical.And and2
+ "Check if it is time to change isolation valve position"
+ annotation (Placement(transformation(extent={{-40,-180},{-20,-160}})));
+ Buildings.Controls.OBC.CDL.Logical.Not not1 "Logical not"
+ annotation (Placement(transformation(extent={{-40,-210},{-20,-190}})));
+ Buildings.Controls.OBC.CDL.Continuous.Switch swi[nChi] "Logical switch"
+ annotation (Placement(transformation(extent={{120,-50},{140,-30}})));
+ Buildings.Controls.OBC.CDL.Routing.BooleanScalarReplicator booRep1(
+ final nout=nChi)
+ "Replicate boolean input"
+ annotation (Placement(transformation(extent={{60,-180},{80,-160}})));
+ Buildings.Controls.OBC.CDL.Logical.Not not2[nChi] "Logical not"
+ annotation (Placement(transformation(extent={{-20,-90},{0,-70}})));
+ Buildings.Controls.OBC.CDL.Continuous.Switch swi1[nChi] "Logical switch"
+ annotation (Placement(transformation(extent={{60,-70},{80,-50}})));
+ Buildings.Controls.OBC.CDL.Continuous.Switch swi2[nChi] "Logical switch"
+ annotation (Placement(transformation(extent={{60,-10},{80,10}})));
+ Buildings.Controls.OBC.CDL.Integers.Equal intEqu[nChi]
+ "Check next enabling isolation valve"
+ annotation (Placement(transformation(extent={{-20,-10},{0,10}})));
+ Buildings.Controls.OBC.CDL.Routing.IntegerScalarReplicator intRep(
+ final nout=nChi)
+ "Replicate integer input"
+ annotation (Placement(transformation(extent={{-80,-10},{-60,10}})));
+ Buildings.Controls.OBC.CDL.Routing.RealScalarReplicator reaRep(
+ final nout=nChi)
+ "Replicate real input"
+ annotation (Placement(transformation(extent={{80,50},{100,70}})));
+ Buildings.Controls.OBC.CDL.Continuous.Hysteresis hys3[nChi](
+ final uLow=fill(0.025, nChi),
+ final uHigh=fill(0.05, nChi)) "Check if isolation valve is enabled"
+ annotation (Placement(transformation(extent={{-120,210},{-100,230}})));
+ Buildings.Controls.OBC.CDL.Continuous.Hysteresis hys4[nChi](
+ final uLow=fill(0.925, nChi),
+ final uHigh=fill(0.975, nChi)) "Check if isolation valve is open more than 95%"
+ annotation (Placement(transformation(extent={{-120,150},{-100,170}})));
+ Buildings.Controls.OBC.CDL.Logical.Not not3[nChi] "Logical not"
+ annotation (Placement(transformation(extent={{-40,180},{-20,200}})));
+ Buildings.Controls.OBC.CDL.Logical.Not not4[nChi] "Logical not"
+ annotation (Placement(transformation(extent={{-40,150},{-20,170}})));
+ Buildings.Controls.OBC.CDL.Logical.And and4[nChi] "Logical and"
+ annotation (Placement(transformation(extent={{0,180},{20,200}})));
+ Buildings.Controls.OBC.CDL.Logical.And and3[nChi] "Logical and"
+ annotation (Placement(transformation(extent={{0,210},{20,230}})));
+ Buildings.Controls.OBC.CDL.Logical.Or or2[nChi] "Logicla or"
+ annotation (Placement(transformation(extent={{40,210},{60,230}})));
+ Buildings.Controls.OBC.CDL.Logical.MultiAnd mulAnd1(
+ final nin=nChi)
+ "Logical and"
+ annotation (Placement(transformation(extent={{80,210},{100,230}})));
+ Buildings.Controls.OBC.CDL.Logical.And3 and5
+ "Check if the isolation valve has been fully open"
+ annotation (Placement(transformation(extent={{140,130},{160,150}})));
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant conInt[nChi](
+ final k=chiInd) "Chiller index array"
+ annotation (Placement(transformation(extent={{-80,-40},{-60,-20}})));
+ Buildings.Controls.OBC.CDL.Logical.Latch lat1
+ "Logical latch, maintain ON signal until condition changes"
+ annotation (Placement(transformation(extent={{-70,130},{-50,150}})));
+ Buildings.Controls.OBC.CDL.Logical.Latch lat2
+ "Logical latch, maintain ON signal until condition changes"
+ annotation (Placement(transformation(extent={{-40,110},{-20,130}})));
+ Buildings.Controls.OBC.CDL.Logical.TrueDelay truDel(
+ final delayTime=5) "Delay the true input"
+ annotation (Placement(transformation(extent={{-100,90},{-80,110}})));
+
+equation
+ connect(uChiWatIsoVal, triSam.u)
+ annotation (Line(points={{-180,-100},{-82,-100}}, color={0,0,127}));
+ connect(con9.y, lin1.x1)
+ annotation (Line(points={{22,80},{30,80},{30,68},{38,68}},
+ color={0,0,127}));
+ connect(con6.y, lin1.f1)
+ annotation (Line(points={{-18,80},{-10,80},{-10,64},{38,64}},
+ color={0,0,127}));
+ connect(con7.y, lin1.x2)
+ annotation (Line(points={{-18,30},{-10,30},{-10,56},{38,56}},
+ color={0,0,127}));
+ connect(con8.y, lin1.f2)
+ annotation (Line(points={{22,30},{30,30},{30,52},{38,52}}, color={0,0,127}));
+ connect(tim.y, lin1.u)
+ annotation (Line(points={{-78,60},{38,60}}, color={0,0,127}));
+ connect(uUpsDevSta, edg.u)
+ annotation (Line(points={{-180,-140},{-102,-140}}, color={255,0,255}));
+ connect(chaPro, and2.u2)
+ annotation (Line(points={{-180,-178},{-42,-178}}, color={255,0,255}));
+ connect(edg.y, and2.u1)
+ annotation (Line(points={{-78,-140},{-60,-140},{-60,-170},{-42,-170}},
+ color={255,0,255}));
+ connect(and2.y, lat.u)
+ annotation (Line(points={{-18,-170},{18,-170}}, color={255,0,255}));
+ connect(chaPro, not1.u)
+ annotation (Line(points={{-180,-178},{-80,-178},{-80,-200},{-42,-200}},
+ color={255,0,255}));
+ connect(not1.y, lat.clr)
+ annotation (Line(points={{-18,-200},{0,-200},{0,-176},{18,-176}},
+ color={255,0,255}));
+ connect(lat.y, booRep1.u)
+ annotation (Line(points={{42,-170},{58,-170}}, color={255,0,255}));
+ connect(booRep1.y, swi.u2)
+ annotation (Line(points={{82,-170},{100,-170},{100,-40},{118,-40}},
+ color={255,0,255}));
+ connect(swi.y, yChiWatIsoVal)
+ annotation (Line(points={{142,-40},{200,-40}}, color={0,0,127}));
+ connect(booRep.y, triSam.trigger)
+ annotation (Line(points={{42,-140},{60,-140},{60,-120},{-70,-120},{-70,-112}},
+ color={255,0,255}));
+ connect(and2.y, booRep.u)
+ annotation (Line(points={{-18,-170},{0,-170},{0,-140},{18,-140}},
+ color={255,0,255}));
+ connect(booRep1.y, not2.u)
+ annotation (Line(points={{82,-170},{100,-170},{100,-110},{-40,-110},
+ {-40,-80},{-22,-80}}, color={255,0,255}));
+ connect(not2.y, swi1.u2)
+ annotation (Line(points={{2,-80},{20,-80},{20,-60},{58,-60}},
+ color={255,0,255}));
+ connect(triSam.y, swi1.u3)
+ annotation (Line(points={{-58,-100},{40,-100},{40,-68},{58,-68}},
+ color={0,0,127}));
+ connect(swi1.y, swi.u3)
+ annotation (Line(points={{82,-60},{90,-60},{90,-48},{118,-48}},
+ color={0,0,127}));
+ connect(uChiWatIsoVal, swi1.u1)
+ annotation (Line(points={{-180,-100},{-140,-100},{-140,-52},{58,-52}},
+ color={0,0,127}));
+ connect(swi2.y, swi.u1)
+ annotation (Line(points={{82,0},{100,0},{100,-32},{118,-32}},
+ color={0,0,127}));
+ connect(nexChaChi, intRep.u)
+ annotation (Line(points={{-180,0},{-82,0}}, color={255,127,0}));
+ connect(intRep.y, intEqu.u1)
+ annotation (Line(points={{-58,0},{-22,0}}, color={255,127,0}));
+ connect(intEqu.y, swi2.u2)
+ annotation (Line(points={{2,0},{58,0}}, color={255,0,255}));
+ connect(lin1.y, reaRep.u)
+ annotation (Line(points={{62,60},{78,60}}, color={0,0,127}));
+ connect(lat.y, tim.u)
+ annotation (Line(points={{42,-170},{50,-170},{50,-220},{-120,-220},{-120,60},
+ {-102,60}}, color={255,0,255}));
+ connect(reaRep.y, swi2.u1)
+ annotation (Line(points={{102,60},{120,60},{120,30},{40,30},{40,8},{58,8}},
+ color={0,0,127}));
+ connect(triSam.y, swi2.u3)
+ annotation (Line(points={{-58,-100},{40,-100},{40,-8},{58,-8}},
+ color={0,0,127}));
+ connect(uChiWatIsoVal, hys4.u)
+ annotation (Line(points={{-180,-100},{-140,-100},{-140,160},{-122,160}},
+ color={0,0,127}));
+ connect(uChiWatIsoVal, hys3.u)
+ annotation (Line(points={{-180,-100},{-140,-100},{-140,220},{-122,220}},
+ color={0,0,127}));
+ connect(hys3.y, and3.u1)
+ annotation (Line(points={{-98,220},{-2,220}}, color={255,0,255}));
+ connect(hys4.y, and3.u2)
+ annotation (Line(points={{-98,160},{-80,160},{-80,212},{-2,212}},
+ color={255,0,255}));
+ connect(hys4.y, not4.u)
+ annotation (Line(points={{-98,160},{-42,160}}, color={255,0,255}));
+ connect(hys3.y, not3.u)
+ annotation (Line(points={{-98,220},{-60,220},{-60,190},{-42,190}},
+ color={255,0,255}));
+ connect(not4.y, and4.u2)
+ annotation (Line(points={{-18,160},{-12,160},{-12,182},{-2,182}},
+ color={255,0,255}));
+ connect(not3.y, and4.u1)
+ annotation (Line(points={{-18,190},{-2,190}}, color={255,0,255}));
+ connect(and3.y, or2.u1)
+ annotation (Line(points={{22,220},{38,220}}, color={255,0,255}));
+ connect(and4.y, or2.u2)
+ annotation (Line(points={{22,190},{30,190},{30,212},{38,212}},
+ color={255,0,255}));
+ connect(mulAnd1.y, and5.u1)
+ annotation (Line(points={{102,220},{120,220},{120,148},{138,148}},
+ color={255,0,255}));
+ connect(and5.y, yEnaChiWatIsoVal)
+ annotation (Line(points={{162,140},{200,140}}, color={255,0,255}));
+ connect(or2.y, mulAnd1.u)
+ annotation (Line(points={{62,220},{78,220}}, color={255,0,255}));
+ connect(conInt.y, intEqu.u2)
+ annotation (Line(points={{-58,-30},{-40,-30},{-40,-8},{-22,-8}},
+ color={255,127,0}));
+ connect(lat1.y, and5.u2)
+ annotation (Line(points={{-48,140},{138,140}}, color={255,0,255}));
+ connect(uUpsDevSta, lat1.u) annotation (Line(points={{-180,-140},{-130,-140},{
+ -130,140},{-72,140}}, color={255,0,255}));
+ connect(not1.y, truDel.u) annotation (Line(points={{-18,-200},{0,-200},{0,-230},
+ {-110,-230},{-110,100},{-102,100}}, color={255,0,255}));
+ connect(truDel.y, lat1.clr) annotation (Line(points={{-78,100},{-74,100},{-74,
+ 134},{-72,134}}, color={255,0,255}));
+ connect(tim.passed, lat2.u) annotation (Line(points={{-78,52},{-60,52},{-60,120},
+ {-42,120}}, color={255,0,255}));
+ connect(truDel.y, lat2.clr) annotation (Line(points={{-78,100},{-74,100},{-74,
+ 114},{-42,114}}, color={255,0,255}));
+ connect(lat2.y, and5.u3) annotation (Line(points={{-18,120},{0,120},{0,132},{138,
+ 132}}, color={255,0,255}));
+
+annotation (
+ defaultComponentName="enaChiIsoVal",
+ Diagram(coordinateSystem(preserveAspectRatio=false,
+ extent={{-160,-240},{180,240}}),
+ graphics={
+ Rectangle(
+ extent={{-158,238},{178,122}},
+ fillColor={210,210,210},
+ fillPattern=FillPattern.Solid,
+ pattern=LinePattern.None),
+ Text(
+ extent={{-38,184},{172,150}},
+ pattern=LinePattern.None,
+ fillColor={210,210,210},
+ fillPattern=FillPattern.Solid,
+ textColor={0,0,127},
+ horizontalAlignment=TextAlignment.Right,
+ textString="Check if all enabled CHW isolation valves
+have been fully open")}),
+ Icon(graphics={
+ Rectangle(
+ extent={{-100,-100},{100,100}},
+ lineColor={0,0,127},
+ fillColor={255,255,255},
+ fillPattern=FillPattern.Solid),
+ Text(extent={{-120,146},{100,108}},
+ textColor={0,0,255},
+ textString="%name"),
+ Text(
+ extent={{-96,-74},{-60,-86}},
+ textColor={255,0,255},
+ pattern=LinePattern.Dash,
+ textString="chaPro"),
+ Text(
+ extent={{-96,-42},{-46,-56}},
+ textColor={255,0,255},
+ pattern=LinePattern.Dash,
+ textString="uUpsDevSta"),
+ Text(
+ extent={{-96,86},{-48,74}},
+ textColor={255,127,0},
+ pattern=LinePattern.Dash,
+ textString="nexChaChi"),
+ Text(
+ extent={{-96,58},{-42,46}},
+ textColor={0,0,127},
+ pattern=LinePattern.Dash,
+ textString="uChiWatIsoVal"),
+ Text(
+ extent={{32,70},{96,54}},
+ textColor={255,0,255},
+ pattern=LinePattern.Dash,
+ textString="yEnaChiWatIsoVal"),
+ Polygon(
+ points={{-60,40},{-60,-40},{0,0},{-60,40}},
+ lineColor={200,200,200},
+ fillColor={207,207,207},
+ fillPattern=FillPattern.Solid),
+ Polygon(
+ points={{60,40},{60,-40},{0,0},{60,40}},
+ lineColor={200,200,200},
+ fillColor={207,207,207},
+ fillPattern=FillPattern.Solid),
+ Text(
+ extent={{44,-54},{98,-66}},
+ textColor={0,0,127},
+ pattern=LinePattern.Dash,
+ textString="yChiWatIsoVal")}),
+ Documentation(info="
+
+Block updates chiller chilled water isolation valve enabling-disabling status when
+there is stage change command (chaPro=true
). It will also generate
+status to indicate if the valve reset process has finished.
+This development is based on ASHRAE RP-1711 Advanced Sequences of Operation for
+HVAC Systems Phase II – Central Plants and Hydronic Systems (Draft on March 23, 2020),
+section 5.2.4.16, item 5 and section 5.2.4.17, item 3, which specifies when
+and how the isolation valve should be controlled when it is in stage changing process.
+
+
+-
+When there is stage up command (
chaPro=true
) and next chiller
+head pressure control has been enabled (uUpsDevSta=true
),
+the chilled water isolation valve of next enabling chiller indicated
+by nexChaChi
will be enabled (iniValPos=0
,
+endValPos=1
).
+
+-
+When there is stage down command (
chaPro=true
) and the disabling chiller
+(nexChaChi
) has been shut off (uUpsDevSta=true
),
+the chiller's isolation valve will be disabled (iniValPos=1
,
+endValPos=0
).
+
+
+
+The valve should open or close slowly. For example, this could be accomplished by
+resetting the valve position X /seconds, where X = (endValPos
-
+iniValPos
) / chaChiWatIsoTim
.
+The valve time chaChiWatIsoTim
should be determined in the field.
+
+
+This sequence will generate array yChiWatIsoVal
which indicates
+chilled water isolation valve position setpoint. yEnaChiWatIsoVal
+will be true when all the enabled valves are fully open and all the disabled valves
+are fully closed.
+
+", revisions="
+
+-
+February 4, 2020, by Jianjun Hu:
+First implementation.
+
+
+"));
+end CHWIsoVal;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/Processes/Subsequences/DisableChiller.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/Processes/Subsequences/DisableChiller.mo
new file mode 100644
index 00000000000..088bd255468
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/Processes/Subsequences/DisableChiller.mo
@@ -0,0 +1,458 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.Processes.Subsequences;
+block DisableChiller "Sequence for disabling chiller in stage-down process"
+
+ parameter Integer nChi=2 "Total number of chillers";
+ parameter Real proOnTim(
+ final unit="s",
+ final quantity="Time",
+ displayUnit="h") = 300
+ "Enabled chiller operation time to indicate if it is proven on";
+
+ Buildings.Controls.OBC.CDL.Interfaces.IntegerInput nexEnaChi
+ "Index of next enabling chiller"
+ annotation (Placement(transformation(extent={{-240,180},{-200,220}}),
+ iconTransformation(extent={{-140,70},{-100,110}})));
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uStaDow
+ "Stage-down command"
+ annotation (Placement(transformation(extent={{-240,120},{-200,160}}),
+ iconTransformation(extent={{-140,40},{-100,80}})));
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uEnaChiWatIsoVal
+ "Status of chiller chilled water isolation valve control: true=enabled valve is fully open"
+ annotation (Placement(transformation(extent={{-240,90},{-200,130}}),
+ iconTransformation(extent={{-140,0},{-100,40}})));
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uChi[nChi]
+ "Chiller status: true=ON"
+ annotation (Placement(transformation(extent={{-240,60},{-200,100}}),
+ iconTransformation(extent={{-140,-40},{-100,0}})));
+ Buildings.Controls.OBC.CDL.Interfaces.IntegerInput nexDisChi
+ "Next disabling chiller when there is any stage up that need one chiller on and another off"
+ annotation (Placement(transformation(extent={{-240,-100},{-200,-60}}),
+ iconTransformation(extent={{-140,-70},{-100,-30}})));
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uOnOff
+ "Indicate if the stage require one chiller to be enabled while another is disabled"
+ annotation (Placement(transformation(extent={{-240,-140},{-200,-100}}),
+ iconTransformation(extent={{-140,-110},{-100,-70}})));
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanOutput yChi[nChi]
+ "Chiller enabling status"
+ annotation (Placement(transformation(extent={{200,-140},{240,-100}}),
+ iconTransformation(extent={{100,-20},{140,20}})));
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanOutput yReaDemLim
+ "Release demand limit"
+ annotation (Placement(transformation(extent={{200,-70},{240,-30}}),
+ iconTransformation(extent={{100,-100},{140,-60}})));
+
+protected
+ final parameter Integer chiInd[nChi]={i for i in 1:nChi}
+ "Chiller index, {1,2,...,n}";
+ Buildings.Controls.OBC.CDL.Logical.Switch logSwi[nChi] "Logical switch"
+ annotation (Placement(transformation(extent={{100,190},{120,210}})));
+ Buildings.Controls.OBC.CDL.Logical.And and2
+ annotation (Placement(transformation(extent={{-160,130},{-140,150}})));
+ Buildings.Controls.OBC.CDL.Routing.BooleanScalarReplicator booRep(
+ final nout=nChi)
+ "Replicate boolean input"
+ annotation (Placement(transformation(extent={{-100,130},{-80,150}})));
+ Buildings.Controls.OBC.CDL.Logical.And and1[nChi] "Logical and"
+ annotation (Placement(transformation(extent={{-40,190},{-20,210}})));
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant con[nChi](
+ final k=fill(true, nChi)) "True constant"
+ annotation (Placement(transformation(extent={{-40,220},{-20,240}})));
+ Buildings.Controls.OBC.CDL.Conversions.BooleanToReal booToRea[nChi]
+ "Convert boolean input to real output"
+ annotation (Placement(transformation(extent={{-100,90},{-80,110}})));
+ Buildings.Controls.OBC.CDL.Continuous.GreaterThreshold greEquThr[nChi](
+ final t=fill(0.5, nChi))
+ "Convert real input to boolean output"
+ annotation (Placement(transformation(extent={{20,90},{40,110}})));
+ Buildings.Controls.OBC.CDL.Logical.Switch logSwi1[nChi]
+ "Logical switch"
+ annotation (Placement(transformation(extent={{100,0},{120,20}})));
+ Buildings.Controls.OBC.CDL.Logical.And and3[nChi] "Logical and"
+ annotation (Placement(transformation(extent={{40,-10},{60,10}})));
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant con1[nChi](
+ final k=fill(false, nChi)) "False constant"
+ annotation (Placement(transformation(extent={{40,20},{60,40}})));
+ Buildings.Controls.OBC.CDL.Logical.Switch logSwi2[nChi]
+ "Logical switch"
+ annotation (Placement(transformation(extent={{160,40},{180,60}})));
+ Buildings.Controls.OBC.CDL.Routing.IntegerScalarReplicator intRep(final nout=nChi)
+ "Replicate integer input"
+ annotation (Placement(transformation(extent={{-160,190},{-140,210}})));
+ Buildings.Controls.OBC.CDL.Integers.Equal intEqu[nChi]
+ "Check next enabling isolation valve"
+ annotation (Placement(transformation(extent={{-100,190},{-80,210}})));
+ Buildings.Controls.OBC.CDL.Logical.Timer tim(final t=proOnTim)
+ "Count the time after new chiller has been enabled"
+ annotation (Placement(transformation(extent={{-100,-10},{-80,10}})));
+ Buildings.Controls.OBC.CDL.Discrete.TriggeredSampler triSam[nChi]
+ "Record the old chiller chilled water isolation valve status"
+ annotation (Placement(transformation(extent={{-20,90},{0,110}})));
+ Buildings.Controls.OBC.CDL.Routing.BooleanScalarReplicator booRep1(final nout=nChi)
+ "Replicate boolean input"
+ annotation (Placement(transformation(extent={{-60,60},{-40,80}})));
+ Buildings.Controls.OBC.CDL.Logical.Edge edg
+ "Rising edge, output true at the moment when input turns from false to true"
+ annotation (Placement(transformation(extent={{-100,60},{-80,80}})));
+ Buildings.Controls.OBC.CDL.Routing.BooleanScalarReplicator booRep2(final nout=nChi)
+ "Replicate boolean input"
+ annotation (Placement(transformation(extent={{-20,-10},{0,10}})));
+ Buildings.Controls.OBC.CDL.Routing.BooleanScalarReplicator booRep3(final nout=nChi)
+ "Replicate boolean input"
+ annotation (Placement(transformation(extent={{80,40},{100,60}})));
+ Buildings.Controls.OBC.CDL.Logical.Not not1 "Logical not"
+ annotation (Placement(transformation(extent={{-20,40},{0,60}})));
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant conInt[nChi](
+ final k=chiInd) "Chiller index array"
+ annotation (Placement(transformation(extent={{-160,160},{-140,180}})));
+ Buildings.Controls.OBC.CDL.Routing.IntegerScalarReplicator intRep1(final nout=nChi)
+ "Replicate integer input"
+ annotation (Placement(transformation(extent={{-160,-90},{-140,-70}})));
+ Buildings.Controls.OBC.CDL.Integers.Equal intEqu1[nChi]
+ "Check next enabling isolation valve"
+ annotation (Placement(transformation(extent={{-100,-90},{-80,-70}})));
+ Buildings.Controls.OBC.CDL.Routing.BooleanScalarReplicator booRep4(final nout=nChi)
+ "Replicate boolean input"
+ annotation (Placement(transformation(extent={{-160,-170},{-140,-150}})));
+ Buildings.Controls.OBC.CDL.Logical.Edge edg1
+ "Rising edge, output true at the moment when input turns from false to true"
+ annotation (Placement(transformation(extent={{-160,-250},{-140,-230}})));
+ Buildings.Controls.OBC.CDL.Conversions.BooleanToReal booToRea1[nChi]
+ "Convert boolean input to real output"
+ annotation (Placement(transformation(extent={{-160,-220},{-140,-200}})));
+ Buildings.Controls.OBC.CDL.Discrete.TriggeredSampler triSam1[nChi]
+ "Record the old chiller chilled water isolation valve status"
+ annotation (Placement(transformation(extent={{-80,-220},{-60,-200}})));
+ Buildings.Controls.OBC.CDL.Routing.BooleanScalarReplicator booRep5(final nout=nChi)
+ "Replicate boolean input"
+ annotation (Placement(transformation(extent={{-120,-250},{-100,-230}})));
+ Buildings.Controls.OBC.CDL.Continuous.GreaterThreshold greEquThr1[nChi](
+ final t=fill(0.5, nChi))
+ "Convert real input to boolean output"
+ annotation (Placement(transformation(extent={{40,-220},{60,-200}})));
+ Buildings.Controls.OBC.CDL.Logical.And and4[nChi] "Logical and"
+ annotation (Placement(transformation(extent={{40,-190},{60,-170}})));
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant con2[nChi](
+ final k=fill(false, nChi))
+ "False constant"
+ annotation (Placement(transformation(extent={{40,-160},{60,-140}})));
+ Buildings.Controls.OBC.CDL.Logical.Switch logSwi3[nChi]
+ "Logical switch"
+ annotation (Placement(transformation(extent={{100,-190},{120,-170}})));
+ Buildings.Controls.OBC.CDL.Logical.Switch logSwi4[nChi]
+ "Logical switch"
+ annotation (Placement(transformation(extent={{160,-130},{180,-110}})));
+ Buildings.Controls.OBC.CDL.Routing.BooleanScalarReplicator booRep6(
+ final nout=nChi)
+ "Replicate boolean input"
+ annotation (Placement(transformation(extent={{100,-130},{120,-110}})));
+ Buildings.Controls.OBC.CDL.Logical.Switch logSwi5[nChi]
+ "Logical switch"
+ annotation (Placement(transformation(extent={{100,-100},{120,-80}})));
+ Buildings.Controls.OBC.CDL.Logical.Switch logSwi6[nChi]
+ "Logical switch"
+ annotation (Placement(transformation(extent={{100,-250},{120,-230}})));
+ Buildings.Controls.OBC.CDL.Logical.Switch logSwi7
+ "Logical switch"
+ annotation (Placement(transformation(extent={{160,-62},{180,-42}})));
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant con3(
+ final k=true)
+ "When the process does not require chiller on-off, there is no need to limit chiller demand"
+ annotation (Placement(transformation(extent={{20,-80},{40,-60}})));
+
+equation
+ connect(nexEnaChi, intRep.u)
+ annotation (Line(points={{-220,200},{-162,200}}, color={255,127,0}));
+ connect(intRep.y,intEqu. u1)
+ annotation (Line(points={{-138,200},{-102,200}}, color={255,127,0}));
+ connect(uEnaChiWatIsoVal,and2. u2)
+ annotation (Line(points={{-220,110},{-170,110},{-170,132},{-162,132}},
+ color={255,0,255}));
+ connect(uStaDow, and2.u1)
+ annotation (Line(points={{-220,140},{-162,140}}, color={255,0,255}));
+ connect(and2.y,booRep. u)
+ annotation (Line(points={{-138,140},{-102,140}}, color={255,0,255}));
+ connect(intEqu.y,and1. u1)
+ annotation (Line(points={{-78,200},{-42,200}}, color={255,0,255}));
+ connect(booRep.y,and1. u2)
+ annotation (Line(points={{-78,140},{-70,140},{-70,192},{-42,192}},
+ color={255,0,255}));
+ connect(and1.y,logSwi. u2)
+ annotation (Line(points={{-18,200},{98,200}}, color={255,0,255}));
+ connect(con.y,logSwi. u1)
+ annotation (Line(points={{-18,230},{0,230},{0,208},{98,208}}, color={255,0,255}));
+ connect(uChi,booToRea. u)
+ annotation (Line(points={{-220,80},{-170,80},{-170,100},{-102,100}},
+ color={255,0,255}));
+ connect(and2.y,edg. u)
+ annotation (Line(points={{-138,140},{-120,140},{-120,70},{-102,70}},
+ color={255,0,255}));
+ connect(booToRea.y,triSam. u)
+ annotation (Line(points={{-78,100},{-22,100}}, color={0,0,127}));
+ connect(edg.y,booRep1. u)
+ annotation (Line(points={{-78,70},{-62,70}}, color={255,0,255}));
+ connect(booRep1.y,triSam. trigger)
+ annotation (Line(points={{-38,70},{-10,70},{-10,88}}, color={255,0,255}));
+ connect(triSam.y,greEquThr. u)
+ annotation (Line(points={{2,100},{18,100}}, color={0,0,127}));
+ connect(greEquThr.y,logSwi. u3)
+ annotation (Line(points={{42,100},{60,100},{60,192},{98,192}},
+ color={255,0,255}));
+ connect(and2.y,tim. u)
+ annotation (Line(points={{-138,140},{-120,140},{-120,0},{-102,0}},
+ color={255,0,255}));
+ connect(booRep2.y,and3. u1)
+ annotation (Line(points={{2,0},{38,0}}, color={255,0,255}));
+ connect(and3.y,logSwi1. u2)
+ annotation (Line(points={{62,0},{80,0},{80,10},{98,10}},
+ color={255,0,255}));
+ connect(con1.y,logSwi1. u1)
+ annotation (Line(points={{62,30},{80,30},{80,18},{98,18}},
+ color={255,0,255}));
+ connect(uChi,logSwi1. u3)
+ annotation (Line(points={{-220,80},{-170,80},{-170,-20},{90,-20},{90,2},
+ {98,2}}, color={255,0,255}));
+ connect(booRep3.y,logSwi2. u2)
+ annotation (Line(points={{102,50},{158,50}}, color={255,0,255}));
+ connect(logSwi1.y,logSwi2. u3)
+ annotation (Line(points={{122,10},{140,10},{140,42},{158,42}},
+ color={255,0,255}));
+ connect(logSwi.y,logSwi2. u1)
+ annotation (Line(points={{122,200},{140,200},{140,58},{158,58}},
+ color={255,0,255}));
+ connect(conInt.y,intEqu. u2)
+ annotation (Line(points={{-138,170},{-110,170},{-110,192},{-102,192}},
+ color={255,127,0}));
+ connect(nexDisChi, intRep1.u)
+ annotation (Line(points={{-220,-80},{-162,-80}}, color={255,127,0}));
+ connect(intRep1.y,intEqu1. u1)
+ annotation (Line(points={{-138,-80},{-102,-80}}, color={255,127,0}));
+ connect(conInt.y,intEqu1. u2)
+ annotation (Line(points={{-138,170},{-110,170},{-110,-88},{-102,-88}},
+ color={255,127,0}));
+ connect(intEqu1.y,and3. u2)
+ annotation (Line(points={{-78,-80},{10,-80},{10,-8},{38,-8}},
+ color={255,0,255}));
+ connect(not1.y, booRep3.u)
+ annotation (Line(points={{2,50},{78,50}}, color={255,0,255}));
+ connect(uStaDow, booRep4.u)
+ annotation (Line(points={{-220,140},{-180,140},{-180,-160},{-162,-160}},
+ color={255,0,255}));
+ connect(uChi, booToRea1.u)
+ annotation (Line(points={{-220,80},{-170,80},{-170,-210},{-162,-210}},
+ color={255,0,255}));
+ connect(uStaDow, edg1.u)
+ annotation (Line(points={{-220,140},{-180,140},{-180,-240},{-162,-240}},
+ color={255,0,255}));
+ connect(booToRea1.y, triSam1.u)
+ annotation (Line(points={{-138,-210},{-82,-210}},color={0,0,127}));
+ connect(edg1.y, booRep5.u)
+ annotation (Line(points={{-138,-240},{-122,-240}}, color={255,0,255}));
+ connect(triSam1.y, greEquThr1.u)
+ annotation (Line(points={{-58,-210},{38,-210}}, color={0,0,127}));
+ connect(booRep4.y, and4.u2)
+ annotation (Line(points={{-138,-160},{0,-160},{0,-188},{38,-188}},
+ color={255,0,255}));
+ connect(intEqu1.y, and4.u1)
+ annotation (Line(points={{-78,-80},{10,-80},{10,-180},{38,-180}},
+ color={255,0,255}));
+ connect(and4.y, logSwi3.u2)
+ annotation (Line(points={{62,-180},{98,-180}}, color={255,0,255}));
+ connect(con2.y, logSwi3.u1)
+ annotation (Line(points={{62,-150},{72,-150},{72,-172},{98,-172}},
+ color={255,0,255}));
+ connect(greEquThr1.y, logSwi3.u3)
+ annotation (Line(points={{62,-210},{80,-210},{80,-188},{98,-188}},
+ color={255,0,255}));
+ connect(uOnOff, booRep6.u)
+ annotation (Line(points={{-220,-120},{98,-120}}, color={255,0,255}));
+ connect(booRep6.y, logSwi4.u2)
+ annotation (Line(points={{122,-120},{158,-120}},color={255,0,255}));
+ connect(logSwi4.y, yChi)
+ annotation (Line(points={{182,-120},{220,-120}}, color={255,0,255}));
+ connect(booRep.y, logSwi5.u2)
+ annotation (Line(points={{-78,140},{-70,140},{-70,-90},{98,-90}},
+ color={255,0,255}));
+ connect(uChi, logSwi5.u3)
+ annotation (Line(points={{-220,80},{-170,80},{-170,-98},{98,-98}},
+ color={255,0,255}));
+ connect(logSwi2.y, logSwi5.u1)
+ annotation (Line(points={{182,50},{190,50},{190,-28},{60,-28},{60,-82},{98,-82}},
+ color={255,0,255}));
+ connect(logSwi5.y, logSwi4.u1)
+ annotation (Line(points={{122,-90},{140,-90},{140,-112},{158,-112}},
+ color={255,0,255}));
+ connect(booRep5.y, triSam1.trigger)
+ annotation (Line(points={{-98,-240},{-70,-240},{-70,-222}}, color={255,0,255}));
+ connect(booRep4.y, logSwi6.u2)
+ annotation (Line(points={{-138,-160},{0,-160},{0,-240},{98,-240}}, color={255,0,255}));
+ connect(logSwi3.y, logSwi6.u1)
+ annotation (Line(points={{122,-180},{130,-180},{130,-220},{80,-220},
+ {80,-232},{98,-232}}, color={255,0,255}));
+ connect(uChi, logSwi6.u3)
+ annotation (Line(points={{-220,80},{-170,80},{-170,-180},{-40,-180},
+ {-40,-248},{98,-248}}, color={255,0,255}));
+ connect(logSwi6.y, logSwi4.u3)
+ annotation (Line(points={{122,-240},{140,-240},{140,-128},{158,-128}},
+ color={255,0,255}));
+ connect(uOnOff, logSwi7.u2)
+ annotation (Line(points={{-220,-120},{80,-120},{80,-52},{158,-52}},
+ color={255,0,255}));
+ connect(logSwi7.y, yReaDemLim)
+ annotation (Line(points={{182,-52},{202,-52},{202,-50},{220,-50}},
+ color={255,0,255}));
+ connect(tim.passed, not1.u)
+ annotation (Line(points={{-78,-8},{-40,-8},{-40,50},{-22,50}},
+ color={255,0,255}));
+ connect(tim.passed, booRep2.u)
+ annotation (Line(points={{-78,-8},{-40,-8},{-40,0},{-22,0}},
+ color={255,0,255}));
+ connect(tim.passed, logSwi7.u1)
+ annotation (Line(points={{-78,-8},{-40,-8},{-40,-44},{158,-44}},
+ color={255,0,255}));
+
+ connect(con3.y, logSwi7.u3) annotation (Line(points={{42,-70},{90,-70},{90,-60},
+ {158,-60}}, color={255,0,255}));
+annotation (
+ defaultComponentName="disChi",
+ Icon(graphics={
+ Rectangle(
+ extent={{-100,-100},{100,100}},
+ lineColor={0,0,127},
+ fillColor={255,255,255},
+ fillPattern=FillPattern.Solid),
+ Text(extent={{-120,146},{100,108}},
+ textColor={0,0,255},
+ textString="%name"),
+ Rectangle(
+ extent={{-60,0},{60,-80}},
+ lineColor={200,200,200},
+ fillColor={207,207,207},
+ fillPattern=FillPattern.Solid),
+ Rectangle(
+ extent={{-52,20},{-40,0}},
+ lineColor={200,200,200},
+ fillColor={207,207,207},
+ fillPattern=FillPattern.Solid),
+ Rectangle(
+ extent={{40,20},{52,0}},
+ lineColor={200,200,200},
+ fillColor={207,207,207},
+ fillPattern=FillPattern.Solid),
+ Rectangle(
+ extent={{-60,60},{60,20}},
+ lineColor={200,200,200},
+ fillColor={207,207,207},
+ fillPattern=FillPattern.Solid),
+ Text(
+ extent={{-98,98},{-44,82}},
+ textColor={255,127,0},
+ textString="nexEnaChi"),
+ Text(
+ extent={{-98,70},{-52,56}},
+ textColor={255,0,255},
+ textString="uStaDow"),
+ Text(
+ extent={{-96,30},{-24,10}},
+ textColor={255,0,255},
+ textString="uEnaChiWatIsoVal"),
+ Text(
+ extent={{-100,-14},{-78,-24}},
+ textColor={255,0,255},
+ textString="uChi"),
+ Text(
+ extent={{-98,-82},{-70,-94}},
+ textColor={255,0,255},
+ textString="uOnOff"),
+ Text(
+ extent={{-98,-40},{-44,-56}},
+ textColor={255,127,0},
+ textString="nexDisChi"),
+ Text(
+ extent={{74,6},{98,-6}},
+ textColor={255,0,255},
+ textString="yChi"),
+ Text(
+ extent={{44,-72},{96,-84}},
+ textColor={255,0,255},
+ textString="yReaDemLim")}),
+ Diagram(coordinateSystem(preserveAspectRatio=false, extent={{-200,-260},{200,260}}),
+ graphics={
+ Rectangle(
+ extent={{-198,-142},{198,-258}},
+ fillColor={210,210,210},
+ fillPattern=FillPattern.Solid,
+ pattern=LinePattern.None),
+ Rectangle(
+ extent={{-198,258},{198,-98}},
+ fillColor={210,210,210},
+ fillPattern=FillPattern.Solid,
+ pattern=LinePattern.None),
+ Text(
+ extent={{100,188},{170,168}},
+ pattern=LinePattern.None,
+ fillColor={210,210,210},
+ fillPattern=FillPattern.Solid,
+ textColor={0,0,127},
+ horizontalAlignment=TextAlignment.Right,
+ textString="Enable small chiller"),
+ Text(
+ extent={{102,-6},{172,-24}},
+ pattern=LinePattern.None,
+ fillColor={210,210,210},
+ fillPattern=FillPattern.Solid,
+ textColor={0,0,127},
+ horizontalAlignment=TextAlignment.Right,
+ textString="Disable large chiller"),
+ Text(
+ extent={{-164,-244},{190,-286}},
+ pattern=LinePattern.None,
+ fillColor={210,210,210},
+ fillPattern=FillPattern.Solid,
+ textColor={0,0,127},
+ horizontalAlignment=TextAlignment.Right,
+ textString="Disable chiller when the down-process does not require any other chiller being enabled"),
+ Text(
+ extent={{-144,278},{166,258}},
+ pattern=LinePattern.None,
+ fillColor={210,210,210},
+ fillPattern=FillPattern.Solid,
+ textColor={0,0,127},
+ horizontalAlignment=TextAlignment.Right,
+ textString="Disable chiller when the down-process requires small chiller being enabled")}),
+Documentation(info="
+
+Block that controlles chiller when there is staging down command uStaDow=true
.
+This implementation is based on ASHRAE RP-1711 Advanced Sequences of Operation for HVAC Systems Phase II –
+Central Plants and Hydronic Systems (Draft on March 23, 2020), section 5.2.4.17,
+item 1.e and f. These two sections specify how to start the smaller chiller and shut
+off larger chiller when the stage change requires large chiller off and small chill on.
+In other stage change, when it does not require chiller on/off, the chiller will then
+be shut off as specified in section 5.2.4.17, item 2.
+
+
+When the stage-down process requires a smaller chiller being staged on and a larger
+chiller being staged off:
+
+
+-
+Start the smaller chiller after its chilled water isolation valve is fully open (
+
uEnaChiWatIsoVal
becomes true).
+
+-
+Wait 5 minutes (
proOnTim
) for the newly enabled chiller to prove that
+it is operating correctly, then shut off the larger chiller and release the demand limit.
+
+
+
+If staging-down from any other stage that does not require one chiller off and another
+chiller on, then shut off the last stage chiller.
+
+", revisions="
+
+-
+September 15, 2019, by Jianjun Hu:
+First implementation.
+
+
+"));
+end DisableChiller;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/Processes/Subsequences/DownStart.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/Processes/Subsequences/DownStart.mo
new file mode 100644
index 00000000000..693900349cf
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/Processes/Subsequences/DownStart.mo
@@ -0,0 +1,604 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.Processes.Subsequences;
+block DownStart "Sequence for starting stage-down process"
+
+ parameter Integer nChi "Total number of chillers";
+ parameter Boolean have_parChi=true
+ "Flag: true means that the plant has parallel chillers";
+ parameter Boolean need_reduceChillerDemand=false
+ "True: need limit chiller demand when chiller staging";
+ parameter Real chiDemRedFac=0.75
+ "Demand reducing factor of current operating chillers"
+ annotation (Dialog(group="Demand limit", enable=need_reduceChillerDemand));
+ parameter Real holChiDemTim(
+ final unit="s",
+ final quantity="Time",
+ displayUnit="h")=300
+ "Maximum time to wait for the actual demand less than percentage of current load"
+ annotation (Dialog(group="Demand limit", enable=need_reduceChillerDemand));
+ parameter Real byPasSetTim(
+ final unit="s",
+ final quantity="Time",
+ displayUnit="h")
+ "Time constant for resetting minimum bypass flow"
+ annotation (Dialog(group="Reset CHW minimum flow setpoint"));
+ parameter Real minFloSet[nChi](
+ final unit=fill("m3/s", nChi),
+ final quantity=fill("VolumeFlowRate", nChi),
+ displayUnit=fill("m3/s", nChi))
+ "Minimum chilled water flow through each chiller"
+ annotation (Dialog(group="Reset CHW minimum flow setpoint"));
+ parameter Real maxFloSet[nChi](
+ final unit=fill("m3/s", nChi),
+ final quantity=fill("VolumeFlowRate", nChi),
+ displayUnit=fill("m3/s", nChi))
+ "Maximum chilled water flow through each chiller"
+ annotation (Dialog(group="Reset CHW minimum flow setpoint"));
+ parameter Real aftByPasSetTim(
+ final unit="s",
+ final quantity="Time",
+ displayUnit="h")=60
+ "Time after setpoint achieved"
+ annotation (Dialog(group="Reset bypass"));
+ parameter Real waiTim(
+ final unit="s",
+ final quantity="Time",
+ displayUnit="h")=30
+ "Waiting time after enabling next head pressure control"
+ annotation (Dialog(group="Head pressure control"));
+ parameter Real chaChiWatIsoTim(
+ final unit="s",
+ final quantity="Time",
+ displayUnit="h")
+ "Time to slowly change isolation valve, should be determined in the field"
+ annotation (Dialog(group="Chilled water isolation valve"));
+ parameter Real proOnTim(
+ final unit="s",
+ final quantity="Time",
+ displayUnit="h")=300
+ "Enabled chiller operation time to indicate if it is proven on"
+ annotation (Dialog(group="Disable last chiller"));
+ parameter Real relFloDif=0.05
+ "Relative error to the setpoint for checking if it has achieved flow rate setpoint"
+ annotation (Dialog(tab="Advanced", group="Reset bypass"));
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uStaDow
+ "Stage down status: true=stage-down"
+ annotation (Placement(transformation(extent={{-200,190},{-160,230}}),
+ iconTransformation(extent={{-140,80},{-100,120}})));
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput yOpeParLoaRatMin(
+ final min=0,
+ final max=1,
+ final unit="1") if need_reduceChillerDemand
+ "Current stage minimum cycling operative partial load ratio"
+ annotation (Placement(transformation(extent={{-200,160},{-160,200}}),
+ iconTransformation(extent={{-140,60},{-100,100}})));
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput uChiLoa[nChi](
+ final quantity=fill("ElectricCurrent", nChi),
+ final unit=fill("A", nChi))
+ if need_reduceChillerDemand "Current chiller load"
+ annotation (Placement(transformation(extent={{-200,130},{-160,170}}),
+ iconTransformation(extent={{-140,40},{-100,80}})));
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uChi[nChi]
+ "Chiller status: true=ON"
+ annotation (Placement(transformation(extent={{-200,100},{-160,140}}),
+ iconTransformation(extent={{-140,20},{-100,60}})));
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput VChiWat_flow(
+ final min=0,
+ final unit="m3/s",
+ final quantity="VolumeFlowRate")
+ "Measured chilled water flow rate"
+ annotation (Placement(transformation(extent={{-200,70},{-160,110}}),
+ iconTransformation(extent={{-140,0},{-100,40}})));
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput clr
+ "Clear stage down process"
+ annotation (Placement(transformation(extent={{-200,30},{-160,70}}),
+ iconTransformation(extent={{-140,-20},{-100,20}})));
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uOnOff
+ "True: if the stage change require enabling one chiller and disable another one"
+ annotation (Placement(transformation(extent={{-200,0},{-160,40}}),
+ iconTransformation(extent={{-140,-40},{-100,0}})));
+ Buildings.Controls.OBC.CDL.Interfaces.IntegerInput nexEnaChi
+ "Index of next enabling chiller"
+ annotation (Placement(transformation(extent={{-200,-50},{-160,-10}}),
+ iconTransformation(extent={{-140,-60},{-100,-20}})));
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uChiHeaCon[nChi]
+ "Chillers head pressure control status"
+ annotation (Placement(transformation(extent={{-200,-80},{-160,-40}}),
+ iconTransformation(extent={{-140,-80},{-100,-40}})));
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput uChiWatIsoVal[nChi](
+ final min=fill(0, nChi),
+ final max=fill(1, nChi),
+ final unit=fill("1", nChi)) "Chilled water isolation valve position"
+ annotation (Placement(transformation(extent={{-200,-120},{-160,-80}}),
+ iconTransformation(extent={{-140,-100},{-100,-60}})));
+ Buildings.Controls.OBC.CDL.Interfaces.IntegerInput nexDisChi
+ "Next disabling chiller when there is any stage up that need one chiller on and another off"
+ annotation (Placement(transformation(extent={{-200,-190},{-160,-150}}),
+ iconTransformation(extent={{-140,-120},{-100,-80}})));
+ Buildings.Controls.OBC.CDL.Interfaces.RealOutput yChiDem[nChi](
+ final quantity=fill("ElectricCurrent", nChi),
+ final unit=fill("A", nChi))
+ if need_reduceChillerDemand "Chiller demand setpoint"
+ annotation (Placement(transformation(extent={{180,120},{220,160}}),
+ iconTransformation(extent={{100,70},{140,110}})));
+ Buildings.Controls.OBC.CDL.Interfaces.RealOutput yChiWatMinFloSet
+ "Chilled water minimum flow setpoint"
+ annotation (Placement(transformation(extent={{180,50},{220,90}}),
+ iconTransformation(extent={{100,40},{140,80}})));
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanOutput yChiHeaCon[nChi]
+ "Chiller head pressure control enabling status"
+ annotation (Placement(transformation(extent={{180,-30},{220,10}}),
+ iconTransformation(extent={{100,0},{140,40}})));
+ Buildings.Controls.OBC.CDL.Interfaces.RealOutput yChiWatIsoVal[nChi](
+ final min=fill(0, nChi),
+ final max=fill(1, nChi),
+ final unit=fill("1", nChi))
+ "Chiller chilled water isolation valve position"
+ annotation (Placement(transformation(extent={{180,-90},{220,-50}}),
+ iconTransformation(extent={{100,-40},{140,0}})));
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanOutput yChi[nChi]
+ "Chiller enabling status"
+ annotation (Placement(transformation(extent={{180,-120},{220,-80}}),
+ iconTransformation(extent={{100,-80},{140,-40}})));
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanOutput yReaDemLim
+ "Release demand limit"
+ annotation (Placement(transformation(extent={{180,-160},{220,-120}}),
+ iconTransformation(extent={{100,-110},{140,-70}})));
+
+protected
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.Processes.Subsequences.ReduceDemand
+ chiDemRed(
+ final nChi=nChi,
+ final chiDemRedFac=chiDemRedFac,
+ final holChiDemTim=holChiDemTim) if need_reduceChillerDemand
+ "Reduce chiller demand"
+ annotation (Placement(transformation(extent={{-20,160},{0,180}})));
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.Processes.Subsequences.ResetMinBypass
+ minBypRes(
+ final aftByPasSetTim=aftByPasSetTim,
+ final relFloDif=relFloDif)
+ "Slowly change the minimum flow bypass setpoint"
+ annotation (Placement(transformation(extent={{60,100},{80,120}})));
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.Processes.Subsequences.HeadControl
+ enaHeaCon(
+ final nChi=nChi,
+ final thrTimEnb=0,
+ final waiTim=waiTim,
+ final heaStaCha=true)
+ "Enable head pressure control of the chiller being enabled"
+ annotation (Placement(transformation(extent={{0,-10},{20,10}})));
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.Processes.Subsequences.CHWIsoVal
+ enaChiIsoVal(
+ final nChi=nChi,
+ final chaChiWatIsoTim=chaChiWatIsoTim,
+ final iniValPos=0,
+ final endValPos=1) "Enable chiller chilled water isolation valve "
+ annotation (Placement(transformation(extent={{0,-110},{20,-90}})));
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.Processes.Subsequences.DisableChiller
+ disChi(
+ final nChi=nChi,
+ final proOnTim=proOnTim) "Disable last chiller"
+ annotation (Placement(transformation(extent={{0,-160},{20,-140}})));
+ Buildings.Controls.OBC.CDL.Logical.And and2 "Logical and"
+ annotation (Placement(transformation(extent={{-100,190},{-80,210}})));
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.MinimumFlowBypass.FlowSetpoint
+ minChiWatSet(
+ final nChi=nChi,
+ final have_parChi=have_parChi,
+ final maxFloSet=maxFloSet,
+ final byPasSetTim=byPasSetTim,
+ final minFloSet=minFloSet) "Reset minimum chilled water flow setpoint"
+ annotation (Placement(transformation(extent={{0,60},{20,80}})));
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant con3(final k=false)
+ "False constant"
+ annotation (Placement(transformation(extent={{-100,80},{-80,100}})));
+ Buildings.Controls.OBC.CDL.Logical.Switch heaPreCon[nChi] "Logical switch"
+ annotation (Placement(transformation(extent={{140,-20},{160,0}})));
+ Buildings.Controls.OBC.CDL.Continuous.Switch chiDem[nChi]
+ if need_reduceChillerDemand "Chiller demand"
+ annotation (Placement(transformation(extent={{140,130},{160,150}})));
+ Buildings.Controls.OBC.CDL.Routing.BooleanScalarReplicator booRep4(final nout=nChi)
+ "Replicate boolean input"
+ annotation (Placement(transformation(extent={{60,10},{80,30}})));
+ Buildings.Controls.OBC.CDL.Continuous.Switch chiWatIsoVal[nChi]
+ "Chilled water isolation valve"
+ annotation (Placement(transformation(extent={{140,-80},{160,-60}})));
+ Buildings.Controls.OBC.CDL.Logical.Not not1 "Logical not"
+ annotation (Placement(transformation(extent={{120,-180},{140,-160}})));
+ Buildings.Controls.OBC.CDL.Logical.Pre pre(final pre_u_start=false)
+ "Break algebraic loop"
+ annotation (Placement(transformation(extent={{80,-180},{100,-160}})));
+ Buildings.Controls.OBC.CDL.Logical.Latch lat1
+ "Maintain ON signal when minimum chilled water setpoint has been set"
+ annotation (Placement(transformation(extent={{60,40},{80,60}})));
+ Buildings.Controls.OBC.CDL.Logical.Latch lat2 if need_reduceChillerDemand
+ "Maintain ON signal when chiller demand has been limited"
+ annotation (Placement(transformation(extent={{20,140},{40,160}})));
+ Buildings.Controls.OBC.CDL.Logical.Latch lat3
+ "Maintain ON signal when chiller head control has been enabled"
+ annotation (Placement(transformation(extent={{60,-50},{80,-30}})));
+ Buildings.Controls.OBC.CDL.Logical.Latch lat4
+ "Maintain ON signal when chilled water isolation valve has been enabled"
+ annotation (Placement(transformation(extent={{60,-120},{80,-100}})));
+ Buildings.Controls.OBC.CDL.Logical.Or or2 if not need_reduceChillerDemand
+ "Dummy or"
+ annotation (Placement(transformation(extent={{20,190},{40,210}})));
+
+equation
+ connect(chiDemRed.uChiLoa, uChiLoa)
+ annotation (Line(points={{-22,175},{-100,175},{-100,150},{-180,150}},
+ color={0,0,127}));
+ connect(chiDemRed.uChi, uChi)
+ annotation (Line(points={{-22,161},{-40,161},{-40,120},{-180,120}},color={255,0,255}));
+ connect(con3.y, minChiWatSet.uStaUp)
+ annotation (Line(points={{-78,90},{-60,90},{-60,79},{-2,79}}, color={255,0,255}));
+ connect(minChiWatSet.uStaDow, uStaDow)
+ annotation (Line(points={{-2,61},{-140,61},{-140,210},{-180,210}},
+ color={255,0,255}));
+ connect(minChiWatSet.uOnOff, uOnOff)
+ annotation (Line(points={{-2,63},{-110,63},{-110,20},{-180,20}},
+ color={255,0,255}));
+ connect(uStaDow, minBypRes.chaPro)
+ annotation (Line(points={{-180,210},{-140,210},{-140,114},{58,114}},
+ color={255,0,255}));
+ connect(VChiWat_flow, minBypRes.VChiWat_flow)
+ annotation (Line(points={{-180,90},{-150,90},{-150,106},{58,106}},
+ color={0,0,127}));
+ connect(uStaDow, enaHeaCon.chaPro)
+ annotation (Line(points={{-180,210},{-140,210},{-140,0},{-2,0}},
+ color={255,0,255}));
+ connect(enaHeaCon.nexChaChi, nexEnaChi)
+ annotation (Line(points={{-2,-4},{-60,-4},{-60,-30},{-180,-30}},
+ color={255,127,0}));
+ connect(enaHeaCon.uChiHeaCon, uChiHeaCon)
+ annotation (Line(points={{-2,-8},{-30,-8},{-30,-60},{-180,-60}},
+ color={255,0,255}));
+ connect(nexEnaChi, enaChiIsoVal.nexChaChi)
+ annotation (Line(points={{-180,-30},{-60,-30},{-60,-92},{-2,-92}},
+ color={255,127,0}));
+ connect(enaChiIsoVal.uChiWatIsoVal, uChiWatIsoVal)
+ annotation (Line(points={{-2,-95},{-100,-95},{-100,-100},{-180,-100}},
+ color={0,0,127}));
+ connect(uStaDow, enaChiIsoVal.chaPro)
+ annotation (Line(points={{-180,210},{-140,210},{-140,-108},{-2,-108}},
+ color={255,0,255}));
+ connect(nexEnaChi, disChi.nexEnaChi)
+ annotation (Line(points={{-180,-30},{-60,-30},{-60,-141},{-2,-141}},
+ color={255,127,0}));
+ connect(uStaDow, disChi.uStaDow)
+ annotation (Line(points={{-180,210},{-140,210},{-140,-144},{-2,-144}},
+ color={255,0,255}));
+ connect(uChi, disChi.uChi)
+ annotation (Line(points={{-180,120},{-40,120},{-40,-152},{-2,-152}},
+ color={255,0,255}));
+ connect(uOnOff, disChi.uOnOff)
+ annotation (Line(points={{-180,20},{-110,20},{-110,-159},{-2,-159}},
+ color={255,0,255}));
+ connect(disChi.nexDisChi, nexDisChi)
+ annotation (Line(points={{-2,-155},{-80,-155},{-80,-170},{-180,-170}},
+ color={255,127,0}));
+ connect(uStaDow, and2.u1)
+ annotation (Line(points={{-180,210},{-140,210},{-140,200},{-102,200}},
+ color={255,0,255}));
+ connect(and2.y, chiDemRed.uDemLim)
+ annotation (Line(points={{-78,200},{-40,200},{-40,179},{-22,179}},
+ color={255,0,255}));
+ connect(uOnOff, booRep4.u)
+ annotation (Line(points={{-180,20},{58,20}}, color={255,0,255}));
+ connect(booRep4.y, chiDem.u2)
+ annotation (Line(points={{82,20},{120,20},{120,140},{138,140}},
+ color={255,0,255}));
+ connect(chiDemRed.yChiDem, chiDem.u1)
+ annotation (Line(points={{2,174},{120,174},{120,148},{138,148}},
+ color={0,0,127}));
+ connect(uChiLoa, chiDem.u3)
+ annotation (Line(points={{-180,150},{-100,150},{-100,132},{138,132}},
+ color={0,0,127}));
+ connect(booRep4.y, heaPreCon.u2)
+ annotation (Line(points={{82,20},{120,20},{120,-10},{138,-10}},
+ color={255,0,255}));
+ connect(enaHeaCon.yChiHeaCon, heaPreCon.u1)
+ annotation (Line(points={{22,-6},{80,-6},{80,-2},{138,-2}},
+ color={255,0,255}));
+ connect(uChiHeaCon, heaPreCon.u3)
+ annotation (Line(points={{-180,-60},{-30,-60},{-30,-18},{138,-18}},
+ color={255,0,255}));
+ connect(booRep4.y, chiWatIsoVal.u2)
+ annotation (Line(points={{82,20},{120,20},{120,-70},{138,-70}},
+ color={255,0,255}));
+ connect(enaChiIsoVal.yChiWatIsoVal, chiWatIsoVal.u1)
+ annotation (Line(points={{22,-106},{40,-106},{40,-62},{138,-62}},
+ color={0,0,127}));
+ connect(uChiWatIsoVal, chiWatIsoVal.u3)
+ annotation (Line(points={{-180,-100},{-100,-100},{-100,-78},{138,-78}},
+ color={0,0,127}));
+ connect(chiDem.y, yChiDem)
+ annotation (Line(points={{162,140},{200,140}}, color={0,0,127}));
+ connect(heaPreCon.y, yChiHeaCon)
+ annotation (Line(points={{162,-10},{200,-10}}, color={255,0,255}));
+ connect(chiWatIsoVal.y, yChiWatIsoVal)
+ annotation (Line(points={{162,-70},{200,-70}}, color={0,0,127}));
+ connect(disChi.yChi, yChi)
+ annotation (Line(points={{22,-150},{140,-150},{140,-100},{200,-100}},
+ color={255,0,255}));
+ connect(disChi.yReaDemLim, yReaDemLim)
+ annotation (Line(points={{22,-158},{60,-158},{60,-140},{200,-140}},
+ color={255,0,255}));
+ connect(yOpeParLoaRatMin, chiDemRed.yOpeParLoaRatMin)
+ annotation (Line(points={{-180,180},{-110,180},{-110,171},{-22,171}},
+ color={0,0,127}));
+ connect(uStaDow, chiDemRed.uStaDow)
+ annotation (Line(points={{-180,210},{-140,210},{-140,168},{-22,168}},
+ color={255,0,255}));
+ connect(uOnOff, chiDemRed.uOnOff)
+ annotation (Line(points={{-180,20},{-110,20},{-110,165},{-22,165}},
+ color={255,0,255}));
+ connect(uChi, minChiWatSet.uChi)
+ annotation (Line(points={{-180,120},{-40,120},{-40,74},{-2,74}},
+ color={255,0,255}));
+ connect(nexEnaChi, minChiWatSet.nexEnaChi)
+ annotation (Line(points={{-180,-30},{-60,-30},{-60,71},{-2,71}},
+ color={255,127,0}));
+ connect(nexDisChi, minChiWatSet.nexDisChi)
+ annotation (Line(points={{-180,-170},{-80,-170},{-80,69},{-2,69}},
+ color={255,127,0}));
+ connect(minChiWatSet.yChiWatMinFloSet, minBypRes.VMinChiWat_setpoint)
+ annotation (Line(points={{22,70},{40,70},{40,102},{58,102}},
+ color={0,0,127}));
+ connect(con3.y, minChiWatSet.uUpsDevSta)
+ annotation (Line(points={{-78,90},{-60,90},{-60,77},{-2,77}},
+ color={255,0,255}));
+ connect(minBypRes.yMinBypRes, lat1.u)
+ annotation (Line(points={{82,110},{100,110},{100,80},{50,80},{50,50},{58,50}},
+ color={255,0,255}));
+ connect(lat1.y, enaHeaCon.uUpsDevSta)
+ annotation (Line(points={{82,50},{100,50},{100,36},{-20,36},{-20,4},{-2,4}},
+ color={255,0,255}));
+ connect(chiDemRed.yChiDemRed, lat2.u)
+ annotation (Line(points={{2,166},{10,166},{10,150},{18,150}},
+ color={255,0,255}));
+ connect(lat2.y, minBypRes.uUpsDevSta)
+ annotation (Line(points={{42,150},{50,150},{50,118},{58,118}},
+ color={255,0,255}));
+ connect(lat2.y, minChiWatSet.uSubCha)
+ annotation (Line(points={{42,150},{50,150},{50,108},{-20,108},{-20,66},{-2,66}},
+ color={255,0,255}));
+ connect(disChi.yReaDemLim, pre.u)
+ annotation (Line(points={{22,-158},{60,-158},{60,-170},{78,-170}},
+ color={255,0,255}));
+ connect(pre.y, not1.u)
+ annotation (Line(points={{102,-170},{118,-170}}, color={255,0,255}));
+ connect(not1.y, and2.u2)
+ annotation (Line(points={{142,-170},{160,-170},{160,-192},{-120,-192},
+ {-120,192},{-102,192}}, color={255,0,255}));
+ connect(minChiWatSet.yChiWatMinFloSet, yChiWatMinFloSet)
+ annotation (Line(points={{22,70},{200,70}}, color={0,0,127}));
+ connect(clr, lat2.clr)
+ annotation (Line(points={{-180,50},{-130,50},{-130,144},{18,144}},
+ color={255,0,255}));
+ connect(clr, lat1.clr)
+ annotation (Line(points={{-180,50},{-130,50},{-130,44},{58,44}},
+ color={255,0,255}));
+ connect(enaHeaCon.yEnaHeaCon, lat3.u)
+ annotation (Line(points={{22,6},{30,6},{30,-40},{58,-40}}, color={255,0,255}));
+ connect(lat3.y, enaChiIsoVal.uUpsDevSta)
+ annotation (Line(points={{82,-40},{100,-40},{100,-60},{-20,-60},{-20,-105},
+ {-2,-105}}, color={255,0,255}));
+ connect(clr, lat3.clr)
+ annotation (Line(points={{-180,50},{-130,50},{-130,-46},{58,-46}},
+ color={255,0,255}));
+ connect(enaChiIsoVal.yEnaChiWatIsoVal, lat4.u)
+ annotation (Line(points={{22,-94},{50,-94},{50,-110},{58,-110}},
+ color={255,0,255}));
+ connect(lat4.y, disChi.uEnaChiWatIsoVal)
+ annotation (Line(points={{82,-110},{120,-110},{120,-130},{-20,-130},
+ {-20,-148},{-2,-148}}, color={255,0,255}));
+ connect(clr, lat4.clr)
+ annotation (Line(points={{-180,50},{-130,50},{-130,-116},{58,-116}},
+ color={255,0,255}));
+ connect(and2.y, or2.u1)
+ annotation (Line(points={{-78,200},{18,200}}, color={255,0,255}));
+ connect(con3.y, or2.u2) annotation (Line(points={{-78,90},{-60,90},{-60,192},{
+ 18,192}}, color={255,0,255}));
+ connect(or2.y, minBypRes.uUpsDevSta) annotation (Line(points={{42,200},{50,200},
+ {50,118},{58,118}}, color={255,0,255}));
+ connect(or2.y, minChiWatSet.uSubCha) annotation (Line(points={{42,200},{50,200},
+ {50,108},{-20,108},{-20,66},{-2,66}}, color={255,0,255}));
+
+ connect(con3.y, enaHeaCon.uEnaPla) annotation (Line(points={{-78,90},{-70,90},
+ {-70,8},{-2,8}}, color={255,0,255}));
+annotation (
+ defaultComponentName="staStaDow",
+ Diagram(coordinateSystem(preserveAspectRatio=false, extent={{-160,-200},{180,220}})),
+ Icon(graphics={
+ Rectangle(
+ extent={{-100,-100},{100,100}},
+ lineColor={0,0,127},
+ fillColor={255,255,255},
+ fillPattern=FillPattern.Solid),
+ Text(
+ extent={{-120,146},{100,108}},
+ textColor={0,0,255},
+ textString="%name"),
+ Rectangle(
+ extent={{-40,6},{40,-6}},
+ lineColor={200,200,200},
+ fillColor={207,207,207},
+ fillPattern=FillPattern.Solid),
+ Rectangle(
+ extent={{-2,-6},{2,-72}},
+ lineColor={200,200,200},
+ fillColor={207,207,207},
+ fillPattern=FillPattern.Solid),
+ Polygon(
+ points={{0,-72},{-20,-72},{0,-90},{20,-72},{0,-72}},
+ lineColor={200,200,200},
+ fillColor={207,207,207},
+ fillPattern=FillPattern.Solid),
+ Text(
+ extent={{-98,-90},{-58,-102}},
+ textColor={255,127,0},
+ pattern=LinePattern.Dash,
+ textString="nexDisChi"),
+ Text(
+ extent={{-98,-72},{-46,-86}},
+ textColor={0,0,127},
+ pattern=LinePattern.Dash,
+ textString="uChiWatIsoVal"),
+ Text(
+ extent={{-98,28},{-46,16}},
+ textColor={0,0,127},
+ pattern=LinePattern.Dash,
+ textString="vChiWat_flow"),
+ Text(
+ extent={{-98,86},{-58,74}},
+ textColor={0,0,127},
+ pattern=LinePattern.Dash,
+ textString="yOpeParLoaRatMin",
+ visible=need_reduceChillerDemand),
+ Text(
+ extent={{-100,66},{-64,56}},
+ textColor={0,0,127},
+ pattern=LinePattern.Dash,
+ textString="uChiLoa",
+ visible=need_reduceChillerDemand),
+ Text(
+ extent={{-102,46},{-74,36}},
+ textColor={255,0,255},
+ pattern=LinePattern.Dash,
+ textString="uChi"),
+ Text(
+ extent={{-98,102},{-64,90}},
+ textColor={255,0,255},
+ pattern=LinePattern.Dash,
+ textString="uStaDow"),
+ Text(
+ extent={{-100,-12},{-66,-22}},
+ textColor={255,0,255},
+ pattern=LinePattern.Dash,
+ textString="uOnOff"),
+ Text(
+ extent={{-98,-32},{-54,-44}},
+ textColor={255,127,0},
+ pattern=LinePattern.Dash,
+ textString="nexEnaChi"),
+ Text(
+ extent={{-98,-54},{-52,-64}},
+ textColor={255,0,255},
+ pattern=LinePattern.Dash,
+ textString="uChiHeaCon"),
+ Text(
+ extent={{64,98},{100,88}},
+ textColor={0,0,127},
+ pattern=LinePattern.Dash,
+ textString="yChiDem",
+ visible=need_reduceChillerDemand),
+ Text(
+ extent={{60,-14},{96,-24}},
+ textColor={0,0,127},
+ pattern=LinePattern.Dash,
+ textString="yChiIsoVal"),
+ Text(
+ extent={{54,26},{96,14}},
+ textColor={255,0,255},
+ pattern=LinePattern.Dash,
+ textString="yChiHeaCon"),
+ Text(
+ extent={{66,-54},{104,-64}},
+ textColor={255,0,255},
+ pattern=LinePattern.Dash,
+ textString="yChi"),
+ Text(
+ extent={{54,-82},{96,-94}},
+ textColor={255,0,255},
+ pattern=LinePattern.Dash,
+ textString="yReaDemLim",
+ visible=need_reduceChillerDemand),
+ Text(
+ extent={{32,66},{98,56}},
+ textColor={0,0,127},
+ pattern=LinePattern.Dash,
+ textString="yChiWatMinFloSet"),
+ Text(
+ extent={{-100,6},{-84,-4}},
+ textColor={255,0,255},
+ pattern=LinePattern.Dash,
+ textString="clr")}),
+Documentation(info="
+
+Block that controls devices at the first step of chiller staging down process.
+This development is based on ASHRAE RP-1711 Advanced Sequences of Operation for
+HVAC Systems Phase II – Central Plants and Hydronic Systems (Draft on March 23, 2020),
+section 5.2.4.17, item 1 and 2. The sections specifies the first step of
+staging down process.
+
+
+For the stage-down process that requires a smaller chiller being enabled and a
+larger chiller being disabled (uOnOff=true
):
+
+
+-
+Command operating chilers to reduce demand to 75% (
chiDemRedFac
) of
+their current load or a percentage equal to current stage minimum cycling operative
+partial load ratio (yOpeParLoaRatMin
), whichever is greater. Wait until acutal
+demand < 80% of current load up to a maximum of 5 minutes (holChiDemTim
)
+before proceeding. This is implemented in block chiDemRed
. See
+
+Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.Processes.Subsequences.ReduceDemand
+for more decriptions.
+
+-
+Slowly change the minimum chilled water flow setpoint to that approriate for the
+stage transition (
minChiWatSet
). After new setpoint is achieved, wait
+1 minutes (aftByPasSetTim
) to allow loop to stabilize (minBypRes
).
+See
+
+Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.MinimumFlowBypass.Subsequences.FlowSetpoint
+and
+
+Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.Processes.Subsequences.ResetMinBypass
+for more decriptions.
+
+-
+Enable head pressure control for the chiller being enabled. Wait 30 seconds (
waiTim
).
+It is implemented in block enaHeaCon
, see
+
+Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.Processes.Subsequences.HeadControl
+for more decriptions.
+
+-
+Slowly open chilled water isolation valve of the smaller chiller being enabled.
+Determine valve timing
chaChiWatIsoTim
in the field as that required
+to prevent nuisance trips.
+It is implemented in block enaChiIsoVal
, see
+
+Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.Processes.Subsequences.CHWIsoVal
+for more decriptions.
+
+-
+Start the smaller chiller after its chilled water isolation valve is fully open.
+Wait 5 minutes (
proOnTim
) after the newly enabled chiller to prove that
+it is operating correctly, then shut off the larger chiller and release the demand
+limit (yReaDemLim=true
).
+It is implemented in block disChi
, see
+
+Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.Processes.Subsequences.DisableChiller
+for more decriptions.
+
+
+
+For staging down from any other stage (uOnOff=false
), just shut off
+the last stage chiller. This is implemented in block disChi
, see
+
+Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.Processes.Subsequences.DisableChiller
+for more decriptions.
+
+", revisions="
+
+-
+September 19, 2019, by Jianjun Hu:
+First implementation.
+
+
+"));
+end DownStart;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/Processes/Subsequences/EnableCWPump.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/Processes/Subsequences/EnableCWPump.mo
new file mode 100644
index 00000000000..8fe79095874
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/Processes/Subsequences/EnableCWPump.mo
@@ -0,0 +1,207 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.Processes.Subsequences;
+block EnableCWPump
+ "Generate staging index for condenser water pump control"
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uUpsDevSta
+ "Status of resetting status of device before enabling or disabling condenser water pump"
+ annotation (Placement(transformation(extent={{-160,60},{-120,100}}),
+ iconTransformation(extent={{-140,60},{-100,100}})));
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uStaUp "Stage-up command"
+ annotation (Placement(transformation(extent={{-160,20},{-120,60}}),
+ iconTransformation(extent={{-140,0},{-100,40}})));
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uStaDow
+ "Stage-down command"
+ annotation (Placement(transformation(extent={{-160,-30},{-120,10}}),
+ iconTransformation(extent={{-140,-40},{-100,0}})));
+ Buildings.Controls.OBC.CDL.Interfaces.IntegerInput uChiSta
+ "Current chiller stage, does not include stages like X + WSE"
+ annotation (Placement(transformation(extent={{-160,-60},{-120,-20}}),
+ iconTransformation(extent={{-140,-70},{-100,-30}})));
+ Buildings.Controls.OBC.CDL.Interfaces.IntegerInput uStaSet
+ "Current chiller stage setpoint, does not include stages like X + WSE"
+ annotation (Placement(transformation(extent={{-160,-100},{-120,-60}}),
+ iconTransformation(extent={{-140,-110},{-100,-70}})));
+ Buildings.Controls.OBC.CDL.Interfaces.IntegerOutput yChiSta
+ "Stage for condenser water pumps control"
+ annotation (Placement(transformation(extent={{120,20},{160,60}}),
+ iconTransformation(extent={{100,-20},{140,20}})));
+
+protected
+ Buildings.Controls.OBC.CDL.Conversions.IntegerToReal intToRea
+ "Convert integer input to real output"
+ annotation (Placement(transformation(extent={{-100,-90},{-80,-70}})));
+ Buildings.Controls.OBC.CDL.Continuous.Switch swi "Logical switch"
+ annotation (Placement(transformation(extent={{40,30},{60,50}})));
+ Buildings.Controls.OBC.CDL.Logical.And and2 "Logical and"
+ annotation (Placement(transformation(extent={{-80,70},{-60,90}})));
+ Buildings.Controls.OBC.CDL.Continuous.Switch swi1 "Logical switch"
+ annotation (Placement(transformation(extent={{0,70},{20,90}})));
+ Buildings.Controls.OBC.CDL.Logical.And and1 "Logicla and"
+ annotation (Placement(transformation(extent={{-80,0},{-60,20}})));
+ Buildings.Controls.OBC.CDL.Continuous.Switch swi2 "Logical switch"
+ annotation (Placement(transformation(extent={{0,0},{20,20}})));
+ Buildings.Controls.OBC.CDL.Continuous.Switch swi3 "Logical switch"
+ annotation (Placement(transformation(extent={{40,-20},{60,0}})));
+ Buildings.Controls.OBC.CDL.Conversions.RealToInteger reaToInt
+ "Convert integer input to real output"
+ annotation (Placement(transformation(extent={{80,30},{100,50}})));
+ Buildings.Controls.OBC.CDL.Conversions.IntegerToReal intToRea1
+ "Convert integer input to real output"
+ annotation (Placement(transformation(extent={{-100,-50},{-80,-30}})));
+
+equation
+ connect(uStaSet, intToRea.u)
+ annotation (Line(points={{-140,-80},{-102,-80}}, color={255,127,0}));
+ connect(uUpsDevSta, and2.u1)
+ annotation (Line(points={{-140,80},{-82,80}}, color={255,0,255}));
+ connect(uStaUp, and2.u2)
+ annotation (Line(points={{-140,40},{-100,40},{-100,72},{-82,72}},
+ color={255,0,255}));
+ connect(and2.y, swi1.u2)
+ annotation (Line(points={{-58,80},{-2,80}}, color={255,0,255}));
+ connect(intToRea.y, swi1.u1)
+ annotation (Line(points={{-78,-80},{-40,-80},{-40,88},{-2,88}},
+ color={0,0,127}));
+ connect(uUpsDevSta, and1.u1)
+ annotation (Line(points={{-140,80},{-110,80},{-110,10},{-82,10}},
+ color={255,0,255}));
+ connect(uStaDow, and1.u2)
+ annotation (Line(points={{-140,-10},{-100,-10},{-100,2},{-82,2}},
+ color={255,0,255}));
+ connect(and1.y, swi2.u2)
+ annotation (Line(points={{-58,10},{-2,10}}, color={255,0,255}));
+ connect(intToRea.y, swi2.u1)
+ annotation (Line(points={{-78,-80},{-40,-80},{-40,18},{-2,18}},
+ color={0,0,127}));
+ connect(uStaUp, swi.u2)
+ annotation (Line(points={{-140,40},{38,40}}, color={255,0,255}));
+ connect(swi1.y, swi.u1)
+ annotation (Line(points={{22,80},{30,80},{30,48},{38,48}},
+ color={0,0,127}));
+ connect(uStaDow, swi3.u2)
+ annotation (Line(points={{-140,-10},{38,-10}}, color={255,0,255}));
+ connect(swi2.y, swi3.u1)
+ annotation (Line(points={{22,10},{30,10},{30,-2},{38,-2}},
+ color={0,0,127}));
+ connect(intToRea.y, swi3.u3)
+ annotation (Line(points={{-78,-80},{-40,-80},{-40,-18},{38,-18}},
+ color={0,0,127}));
+ connect(swi3.y, swi.u3)
+ annotation (Line(points={{62,-10},{70,-10},{70,20},{30,20},{30,32},{38,32}},
+ color={0,0,127}));
+ connect(swi.y, reaToInt.u)
+ annotation (Line(points={{62,40},{78,40}}, color={0,0,127}));
+ connect(reaToInt.y, yChiSta)
+ annotation (Line(points={{102,40},{140,40}}, color={255,127,0}));
+ connect(uChiSta, intToRea1.u)
+ annotation (Line(points={{-140,-40},{-102,-40}}, color={255,127,0}));
+ connect(intToRea1.y, swi1.u3)
+ annotation (Line(points={{-78,-40},{-20,-40},{-20,72},{-2,72}}, color={0,0,127}));
+ connect(intToRea1.y, swi2.u3)
+ annotation (Line(points={{-78,-40},{-20,-40},{-20,2},{-2,2}}, color={0,0,127}));
+
+annotation (
+ defaultComponentName="enaNexCWP",
+ Diagram(coordinateSystem(preserveAspectRatio=false,
+ extent={{-120,-100},{120,100}})),
+ Icon(graphics={
+ Rectangle(
+ extent={{-100,-100},{100,100}},
+ lineColor={0,0,127},
+ fillColor={255,255,255},
+ fillPattern=FillPattern.Solid),
+ Text(extent={{-120,146},{100,108}},
+ textColor={0,0,255},
+ textString="%name"),
+ Text(
+ extent={{-96,-82},{-62,-94}},
+ textColor={255,127,0},
+ pattern=LinePattern.Dash,
+ textString="uStaSet"),
+ Text(
+ extent={{-98,88},{-50,72}},
+ textColor={255,0,255},
+ pattern=LinePattern.Dash,
+ textString="uUpsDevSta"),
+ Text(
+ extent={{-98,28},{-64,16}},
+ textColor={255,0,255},
+ pattern=LinePattern.Dash,
+ textString="uStaUp"),
+ Text(
+ extent={{68,8},{98,-8}},
+ textColor={255,127,0},
+ pattern=LinePattern.Dash,
+ textString="yChiSta"),
+ Text(
+ extent={{-98,-12},{-60,-24}},
+ textColor={255,0,255},
+ pattern=LinePattern.Dash,
+ textString="uStaDow"),
+ Ellipse(
+ extent={{-60,60},{60,-60}},
+ lineColor={0,0,0},
+ fillColor={255,255,255},
+ fillPattern=FillPattern.Solid),
+ Polygon(
+ points={{0,60},{0,-60},{60,0},{0,60}},
+ lineColor={0,0,0},
+ fillColor={238,46,47},
+ fillPattern=FillPattern.Solid),
+ Text(
+ extent={{-96,-46},{-62,-58}},
+ textColor={255,127,0},
+ pattern=LinePattern.Dash,
+ textString="uChiSta")}),
+ Documentation(info="
+
+This block generates stage signal as input for condenser water pump control.
+
+
+-
+When there is no stage change command (
uStaUp=false
,
+uStaDow=false
), it outputs current stage setpoint uStaSet
.
+
+-
+When there is stage up command (
uStaUp=true
, uStaDow=false
)
+which means stage setpoint uStaSet
has changed up to new stage,
+
+-
+When the minimum bypass flow has not been reset (
uUpsDevSta=false
),
+the stage index for condenser water pump control should still be the old stage
+(yChiSta
= uChiSta
).
+
+-
+When the minimum bypass flow has been reset (
uUpsDevSta=true
),
+the stage index for condenser water pump control should be the stage setpoint
+uStaSet
.
+
+
+
+-
+When there is stage down command (
uStaUp=false
, uStaDow=true
)
+which means stage setpoint uStaSet
has changed down to new stage,
+
+-
+When the head pressure control of the chiller being shut off has not been disabled
+(
uUpsDevSta=false
), the stage index for condenser water pump control
+should still be the old stage (yChiSta
= uChiSta
).
+
+-
+When the head pressure control of the chiller being shut off has been disabled
+(
uUpsDevSta=true
), the stage index for condenser water pump control
+should be the current stage setpoint uStaSet
.
+
+
+
+
+",
+revisions="
+
+-
+February 4, 2019, by Jianjun Hu:
+First implementation.
+
+
+"));
+end EnableCWPump;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/Processes/Subsequences/EnableChiller.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/Processes/Subsequences/EnableChiller.mo
new file mode 100644
index 00000000000..b8e9980c7d2
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/Processes/Subsequences/EnableChiller.mo
@@ -0,0 +1,407 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.Processes.Subsequences;
+block EnableChiller "Sequence for enabling chiller"
+
+ parameter Integer nChi=2 "Total number of chillers";
+ parameter Real proOnTim(
+ final unit="s",
+ final quantity="Time",
+ displayUnit="h") = 300
+ "Enabled chiller operation time to indicate if it is proven on";
+
+ Buildings.Controls.OBC.CDL.Interfaces.IntegerInput nexEnaChi
+ "Index of next enabling chiller"
+ annotation (Placement(transformation(extent={{-240,100},{-200,140}}),
+ iconTransformation(extent={{-140,70},{-100,110}})));
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uStaUp "Stage-up command"
+ annotation (Placement(transformation(extent={{-240,40},{-200,80}}),
+ iconTransformation(extent={{-140,40},{-100,80}})));
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uEnaChiWatIsoVal
+ "Status of chilled water isolation valve control: true=enabled valve is fully open"
+ annotation (Placement(transformation(extent={{-240,10},{-200,50}}),
+ iconTransformation(extent={{-140,0},{-100,40}})));
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uChi[nChi]
+ "Chiller status: true=ON"
+ annotation (Placement(transformation(extent={{-240,-20},{-200,20}}),
+ iconTransformation(extent={{-140,-40},{-100,0}})));
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uOnOff
+ "Indicate if the stage require one chiller to be enabled while another is disabled"
+ annotation (Placement(transformation(extent={{-240,-70},{-200,-30}}),
+ iconTransformation(extent={{-140,-80},{-100,-40}})));
+ Buildings.Controls.OBC.CDL.Interfaces.IntegerInput nexDisChi
+ "Next disabling chiller when there is any stage up that need one chiller on and another off"
+ annotation (Placement(transformation(extent={{-240,-170},{-200,-130}}),
+ iconTransformation(extent={{-140,-110},{-100,-70}})));
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanOutput yChi[nChi]
+ "Chiller enabling status"
+ annotation (Placement(transformation(extent={{200,-70},{240,-30}}),
+ iconTransformation(extent={{100,60},{140,100}})));
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanOutput yNewChiEna
+ "Newly enabled chiller has been proven on by more than 5 minutes"
+ annotation (Placement(transformation(extent={{200,-190},{240,-150}}),
+ iconTransformation(extent={{100,-100},{140,-60}})));
+
+protected
+ final parameter Integer chiInd[nChi]={i for i in 1:nChi}
+ "Chiller index, {1,2,...,n}";
+ Buildings.Controls.OBC.CDL.Logical.Switch logSwi[nChi]
+ "Logical switch"
+ annotation (Placement(transformation(extent={{100,110},{120,130}})));
+ Buildings.Controls.OBC.CDL.Logical.And and2
+ annotation (Placement(transformation(extent={{-160,50},{-140,70}})));
+ Buildings.Controls.OBC.CDL.Routing.BooleanScalarReplicator booRep(final nout=nChi)
+ "Replicate boolean input"
+ annotation (Placement(transformation(extent={{-100,50},{-80,70}})));
+ Buildings.Controls.OBC.CDL.Logical.And and1[nChi] "Logical and"
+ annotation (Placement(transformation(extent={{-40,110},{-20,130}})));
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant con[nChi](
+ final k=fill(true, nChi)) "True constant"
+ annotation (Placement(transformation(extent={{-40,140},{-20,160}})));
+ Buildings.Controls.OBC.CDL.Conversions.BooleanToReal booToRea[nChi]
+ "Convert boolean input to real output"
+ annotation (Placement(transformation(extent={{-160,-10},{-140,10}})));
+ Buildings.Controls.OBC.CDL.Continuous.GreaterThreshold greEquThr[nChi](
+ final t=fill(0.5, nChi))
+ "Convert real input to boolean output"
+ annotation (Placement(transformation(extent={{20,-10},{40,10}})));
+ Buildings.Controls.OBC.CDL.Logical.Switch logSwi1[nChi]
+ "Logical switch"
+ annotation (Placement(transformation(extent={{100,-120},{120,-100}})));
+ Buildings.Controls.OBC.CDL.Logical.And and3[nChi] "Logical and"
+ annotation (Placement(transformation(extent={{40,-120},{60,-100}})));
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant con1[nChi](
+ final k=fill(false, nChi)) "False constant"
+ annotation (Placement(transformation(extent={{40,-90},{60,-70}})));
+ Buildings.Controls.OBC.CDL.Logical.Switch logSwi2[nChi]
+ "Logical switch"
+ annotation (Placement(transformation(extent={{160,-60},{180,-40}})));
+ Buildings.Controls.OBC.CDL.Logical.Or or2 "Logical or"
+ annotation (Placement(transformation(extent={{40,-60},{60,-40}})));
+ Buildings.Controls.OBC.CDL.Routing.IntegerScalarReplicator intRep(final nout=nChi)
+ "Replicate integer input"
+ annotation (Placement(transformation(extent={{-160,110},{-140,130}})));
+ Buildings.Controls.OBC.CDL.Integers.Equal intEqu[nChi]
+ "Check next enabling isolation valve"
+ annotation (Placement(transformation(extent={{-100,110},{-80,130}})));
+ Buildings.Controls.OBC.CDL.Logical.Timer tim(final t=proOnTim)
+ "Count the time after new chiller has been enabled"
+ annotation (Placement(transformation(extent={{-100,-120},{-80,-100}})));
+ Buildings.Controls.OBC.CDL.Discrete.TriggeredSampler triSam[nChi]
+ "Record the old chiller status"
+ annotation (Placement(transformation(extent={{-20,-10},{0,10}})));
+ Buildings.Controls.OBC.CDL.Routing.BooleanScalarReplicator booRep1(final nout=nChi)
+ "Replicate boolean input"
+ annotation (Placement(transformation(extent={{-60,-30},{-40,-10}})));
+ Buildings.Controls.OBC.CDL.Logical.Edge edg
+ "Rising edge, output true at the moment when input turns from false to true"
+ annotation (Placement(transformation(extent={{-100,-30},{-80,-10}})));
+ Buildings.Controls.OBC.CDL.Routing.BooleanScalarReplicator booRep2(final nout=nChi)
+ "Replicate boolean input"
+ annotation (Placement(transformation(extent={{-20,-120},{0,-100}})));
+ Buildings.Controls.OBC.CDL.Routing.BooleanScalarReplicator booRep3(final nout=nChi)
+ "Replicate boolean input"
+ annotation (Placement(transformation(extent={{80,-60},{100,-40}})));
+ Buildings.Controls.OBC.CDL.Logical.Not not2 "Logical not"
+ annotation (Placement(transformation(extent={{-160,-60},{-140,-40}})));
+ Buildings.Controls.OBC.CDL.Logical.Not not1 "Logical not"
+ annotation (Placement(transformation(extent={{-20,-80},{0,-60}})));
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant conInt[nChi](
+ final k=chiInd) "Chiller index array"
+ annotation (Placement(transformation(extent={{-160,80},{-140,100}})));
+ Buildings.Controls.OBC.CDL.Routing.IntegerScalarReplicator intRep1(final nout=nChi)
+ "Replicate integer input"
+ annotation (Placement(transformation(extent={{-160,-160},{-140,-140}})));
+ Buildings.Controls.OBC.CDL.Integers.Equal intEqu1[nChi]
+ "Check next enabling isolation valve"
+ annotation (Placement(transformation(extent={{-100,-160},{-80,-140}})));
+ Buildings.Controls.OBC.CDL.Logical.Switch logSwi3[nChi]
+ "Logical switch"
+ annotation (Placement(transformation(extent={{60,30},{80,50}})));
+ Buildings.Controls.OBC.CDL.Routing.BooleanScalarReplicator booRep4(final nout=nChi)
+ "Replicate boolean input"
+ annotation (Placement(transformation(extent={{-40,30},{-20,50}})));
+ Buildings.Controls.OBC.CDL.Logical.Switch logSwi4 "Logical switch"
+ annotation (Placement(transformation(extent={{160,-180},{180,-160}})));
+
+equation
+ connect(nexEnaChi, intRep.u)
+ annotation (Line(points={{-220,120},{-162,120}}, color={255,127,0}));
+ connect(intRep.y,intEqu. u1)
+ annotation (Line(points={{-138,120},{-102,120}}, color={255,127,0}));
+ connect(uEnaChiWatIsoVal,and2. u2)
+ annotation (Line(points={{-220,30},{-180,30},{-180,52},{-162,52}},
+ color={255,0,255}));
+ connect(uStaUp, and2.u1)
+ annotation (Line(points={{-220,60},{-162,60}}, color={255,0,255}));
+ connect(and2.y,booRep. u)
+ annotation (Line(points={{-138,60},{-102,60}}, color={255,0,255}));
+ connect(intEqu.y,and1. u1)
+ annotation (Line(points={{-78,120},{-42,120}}, color={255,0,255}));
+ connect(booRep.y,and1. u2)
+ annotation (Line(points={{-78,60},{-60,60},{-60,112},{-42,112}},
+ color={255,0,255}));
+ connect(and1.y,logSwi. u2)
+ annotation (Line(points={{-18,120},{98,120}}, color={255,0,255}));
+ connect(con.y,logSwi. u1)
+ annotation (Line(points={{-18,150},{0,150},{0,128},{98,128}}, color={255,0,255}));
+ connect(uChi,booToRea. u)
+ annotation (Line(points={{-220,0},{-162,0}}, color={255,0,255}));
+ connect(booToRea.y,triSam. u)
+ annotation (Line(points={{-138,0},{-22,0}}, color={0,0,127}));
+ connect(edg.y,booRep1. u)
+ annotation (Line(points={{-78,-20},{-62,-20}}, color={255,0,255}));
+ connect(booRep1.y,triSam. trigger)
+ annotation (Line(points={{-38,-20},{-10,-20},{-10,-12}}, color={255,0,255}));
+ connect(triSam.y,greEquThr. u)
+ annotation (Line(points={{2,0},{18,0}}, color={0,0,127}));
+ connect(and2.y,tim. u)
+ annotation (Line(points={{-138,60},{-120,60},{-120,-110},{-102,-110}},
+ color={255,0,255}));
+ connect(booRep2.y,and3. u1)
+ annotation (Line(points={{2,-110},{38,-110}}, color={255,0,255}));
+ connect(and3.y,logSwi1. u2)
+ annotation (Line(points={{62,-110},{98,-110}}, color={255,0,255}));
+ connect(con1.y,logSwi1. u1)
+ annotation (Line(points={{62,-80},{80,-80},{80,-102},{98,-102}},
+ color={255,0,255}));
+ connect(uChi,logSwi1. u3)
+ annotation (Line(points={{-220,0},{-180,0},{-180,-130},{80,-130},{80,-118},
+ {98,-118}}, color={255,0,255}));
+ connect(booRep3.y,logSwi2. u2)
+ annotation (Line(points={{102,-50},{158,-50}}, color={255,0,255}));
+ connect(uOnOff,not2. u)
+ annotation (Line(points={{-220,-50},{-162,-50}}, color={255,0,255}));
+ connect(logSwi1.y,logSwi2. u3)
+ annotation (Line(points={{122,-110},{140,-110},{140,-58},{158,-58}},
+ color={255,0,255}));
+ connect(logSwi.y,logSwi2. u1)
+ annotation (Line(points={{122,120},{140,120},{140,-42},{158,-42}},
+ color={255,0,255}));
+ connect(logSwi2.y,yChi)
+ annotation (Line(points={{182,-50},{220,-50}}, color={255,0,255}));
+ connect(not2.y,or2. u1)
+ annotation (Line(points={{-138,-50},{38,-50}},color={255,0,255}));
+ connect(not1.y,or2. u2)
+ annotation (Line(points={{2,-70},{20,-70},{20,-58},{38,-58}},
+ color={255,0,255}));
+ connect(or2.y,booRep3. u)
+ annotation (Line(points={{62,-50},{78,-50}},color={255,0,255}));
+ connect(conInt.y,intEqu. u2)
+ annotation (Line(points={{-138,90},{-110,90},{-110,112},{-102,112}},
+ color={255,127,0}));
+ connect(nexDisChi, intRep1.u)
+ annotation (Line(points={{-220,-150},{-162,-150}}, color={255,127,0}));
+ connect(intRep1.y, intEqu1.u1)
+ annotation (Line(points={{-138,-150},{-102,-150}}, color={255,127,0}));
+ connect(conInt.y, intEqu1.u2)
+ annotation (Line(points={{-138,90},{-110,90},{-110,-158},{-102,-158}},
+ color={255,127,0}));
+ connect(intEqu1.y, and3.u2)
+ annotation (Line(points={{-78,-150},{20,-150},{20,-118},{38,-118}},
+ color={255,0,255}));
+ connect(uStaUp, edg.u)
+ annotation (Line(points={{-220,60},{-190,60},{-190,-20},{-102,-20}},
+ color={255,0,255}));
+ connect(uStaUp, booRep4.u)
+ annotation (Line(points={{-220,60},{-190,60},{-190,40},{-42,40}},
+ color={255,0,255}));
+ connect(booRep4.y, logSwi3.u2)
+ annotation (Line(points={{-18,40},{58,40}}, color={255,0,255}));
+ connect(uChi, logSwi3.u3)
+ annotation (Line(points={{-220,0},{-180,0},{-180,20},{40,20},{40,32},
+ {58,32}}, color={255,0,255}));
+ connect(greEquThr.y, logSwi3.u1)
+ annotation (Line(points={{42,0},{50,0},{50,48},{58,48}}, color={255,0,255}));
+ connect(logSwi3.y, logSwi.u3)
+ annotation (Line(points={{82,40},{90,40},{90,112},{98,112}},
+ color={255,0,255}));
+ connect(not2.y, logSwi4.u2)
+ annotation (Line(points={{-138,-50},{-130,-50},{-130,-170},{158,-170}},
+ color={255,0,255}));
+ connect(and2.y, logSwi4.u1)
+ annotation (Line(points={{-138,60},{-120,60},{-120,-162},{158,-162}},
+ color={255,0,255}));
+ connect(logSwi4.y, yNewChiEna)
+ annotation (Line(points={{182,-170},{220,-170}}, color={255,0,255}));
+ connect(tim.passed, not1.u)
+ annotation (Line(points={{-78,-118},{-40,-118},{-40,-70},{-22,-70}},
+ color={255,0,255}));
+ connect(tim.passed, booRep2.u)
+ annotation (Line(points={{-78,-118},{-40,-118},{-40,-110},{-22,-110}},
+ color={255,0,255}));
+ connect(tim.passed, logSwi4.u3)
+ annotation (Line(points={{-78,-118},{-40,-118},{-40,-178},{158,-178}},
+ color={255,0,255}));
+
+annotation (
+ defaultComponentName="enaChi",
+ Icon(coordinateSystem(preserveAspectRatio=false), graphics={
+ Rectangle(
+ extent={{-100,-100},{100,100}},
+ lineColor={0,0,127},
+ fillColor={255,255,255},
+ fillPattern=FillPattern.Solid),
+ Text(extent={{-120,146},{100,108}},
+ textColor={0,0,255},
+ textString="%name"),
+ Rectangle(
+ extent={{-60,60},{60,20}},
+ lineColor={200,200,200},
+ fillColor={207,207,207},
+ fillPattern=FillPattern.Solid),
+ Rectangle(
+ extent={{-52,20},{-40,0}},
+ lineColor={200,200,200},
+ fillColor={207,207,207},
+ fillPattern=FillPattern.Solid),
+ Rectangle(
+ extent={{40,20},{52,0}},
+ lineColor={200,200,200},
+ fillColor={207,207,207},
+ fillPattern=FillPattern.Solid),
+ Rectangle(
+ extent={{-60,0},{60,-80}},
+ lineColor={200,200,200},
+ fillColor={207,207,207},
+ fillPattern=FillPattern.Solid),
+ Text(
+ extent={{-98,96},{-50,84}},
+ textColor={255,127,0},
+ pattern=LinePattern.Dash,
+ textString="nexEnaChi"),
+ Text(
+ extent={{-98,-84},{-50,-96}},
+ textColor={255,127,0},
+ pattern=LinePattern.Dash,
+ textString="nexDisChi"),
+ Text(
+ extent={{-100,66},{-68,56}},
+ textColor={255,0,255},
+ pattern=LinePattern.Dash,
+ textString="uStaUp"),
+ Text(
+ extent={{-98,26},{-34,14}},
+ textColor={255,0,255},
+ pattern=LinePattern.Dash,
+ textString="uEnaChiWatIsoVal"),
+ Text(
+ extent={{-100,-14},{-78,-24}},
+ textColor={255,0,255},
+ pattern=LinePattern.Dash,
+ textString="uChi"),
+ Text(
+ extent={{-98,-54},{-72,-66}},
+ textColor={255,0,255},
+ pattern=LinePattern.Dash,
+ textString="uOnOff"),
+ Text(
+ extent={{74,86},{100,76}},
+ textColor={255,0,255},
+ pattern=LinePattern.Dash,
+ textString="yChi"),
+ Text(
+ extent={{60,-72},{98,-84}},
+ textColor={255,0,255},
+ pattern=LinePattern.Dash,
+ textString="yNewChiEna")}), Diagram(
+ coordinateSystem(preserveAspectRatio=false, extent={{-200,-180},{200,180}}),
+ graphics={
+ Rectangle(
+ extent={{-198,-62},{198,-178}},
+ fillColor={210,210,210},
+ fillPattern=FillPattern.Solid,
+ pattern=LinePattern.None),
+ Rectangle(
+ extent={{-198,178},{198,-38}},
+ fillColor={210,210,210},
+ fillPattern=FillPattern.Solid,
+ pattern=LinePattern.None),
+ Text(
+ extent={{68,104},{148,96}},
+ pattern=LinePattern.None,
+ fillColor={210,210,210},
+ fillPattern=FillPattern.Solid,
+ textColor={0,0,127},
+ horizontalAlignment=TextAlignment.Right,
+ textString="Output new chiller status array:"),
+ Text(
+ extent={{46,-76},{124,-84}},
+ pattern=LinePattern.None,
+ fillColor={210,210,210},
+ fillPattern=FillPattern.Solid,
+ textColor={0,0,127},
+ horizontalAlignment=TextAlignment.Right,
+ textString="Disable
+small chiller"),
+ Text(
+ extent={{70,94},{262,74}},
+ pattern=LinePattern.None,
+ fillColor={210,210,210},
+ fillPattern=FillPattern.Solid,
+ textColor={0,0,127},
+ horizontalAlignment=TextAlignment.Left,
+ textString=
+ "1. When the stage change does not require one chiller off and another chiller on."),
+ Text(
+ extent={{72,76},{284,54}},
+ pattern=LinePattern.None,
+ fillColor={210,210,210},
+ fillPattern=FillPattern.Solid,
+ textColor={0,0,127},
+ horizontalAlignment=TextAlignment.Left,
+ textString="2. When the stage change does require one chiller off and another chiller on,
+but the enabled chiller has not yet finished starting."),
+ Text(
+ extent={{82,-122},{162,-130}},
+ pattern=LinePattern.None,
+ fillColor={210,210,210},
+ fillPattern=FillPattern.Solid,
+ textColor={0,0,127},
+ horizontalAlignment=TextAlignment.Right,
+ textString="Output new chiller status array:"),
+ Text(
+ extent={{24,-132},{236,-154}},
+ pattern=LinePattern.None,
+ fillColor={210,210,210},
+ fillPattern=FillPattern.Solid,
+ textColor={0,0,127},
+ horizontalAlignment=TextAlignment.Left,
+ textString="When the stage change does require one chiller off and another chiller on,
+ and the enabled chiller has finished starting.")}),
+Documentation(info="
+
+Block that controlles chiller when there is staging up command uStaUp=true
.
+
+This implementation is based on ASHRAE RP-1711 Advanced Sequences of Operation for HVAC Systems Phase II –
+Central Plants and Hydronic Systems (Draft on March 23, 2020), section 5.2.4.16,
+item 6 and item 7.a. These sections specify when the next chiller should be enabled
+and when the running smaller chiller should be diabled.
+
+
+When the stage-up process does not requires a smaller chiller being staged off and
+a larger chiller being staged on (uOnOff=false
):
+
+
+-
+Start the next stage chiller after the chilled water isolation valve is fully open
+
uEnaChiWatIsoVal=true
.
+
+
+
+For any stage change during which a smaller chiller is diabled and a larger chiller
+is enabled (uOnOff=true
):
+
+
+-
+Wait 5 minutes (
proOnTim
) for the newly enabled chiller to prove that is
+operating correctly yNewChiEna=true
, then shut off the smaller chiller.
+
+
+", revisions="
+
+-
+September 15, 2019, by Jianjun Hu:
+First implementation.
+
+
+"));
+end EnableChiller;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/Processes/Subsequences/HeadControl.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/Processes/Subsequences/HeadControl.mo
new file mode 100644
index 00000000000..e2c8235f757
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/Processes/Subsequences/HeadControl.mo
@@ -0,0 +1,361 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.Processes.Subsequences;
+block HeadControl
+ "Sequences for enabling or disabling head pressure control for the chiller being enabled or disabled"
+
+ parameter Integer nChi=2 "Total number of chiller";
+ parameter Real thrTimEnb(
+ final unit="s",
+ final quantity="Time",
+ displayUnit="h")=10
+ "Threshold time to enable head pressure control after condenser water pump being reset";
+ parameter Real waiTim(
+ final unit="s",
+ final quantity="Time",
+ displayUnit="h") = 30
+ "Waiting time after enabling next head pressure control";
+ parameter Boolean heaStaCha = true
+ "Flag to indicate if head pressure control of next chiller should be ON or OFF: true = in stage-up process so it should be ON";
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uEnaPla
+ "True: plant is just enabled"
+ annotation(Placement(transformation(extent={{-220,140},{-180,180}}),
+ iconTransformation(extent={{-140,60},{-100,100}})));
+ Buildings.Controls.OBC.CDL.Interfaces.IntegerInput nexChaChi
+ "Index of next enabling or disabling chiller"
+ annotation (Placement(transformation(extent={{-220,-50},{-180,-10}}),
+ iconTransformation(extent={{-140,-60},{-100,-20}})));
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uUpsDevSta
+ "Status of resetting status of device before enabling or disabling head pressure control"
+ annotation (Placement(transformation(extent={{-220,110},{-180,150}}),
+ iconTransformation(extent={{-140,20},{-100,60}})));
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uChiHeaCon[nChi]
+ "Chillers head pressure control status"
+ annotation (Placement(transformation(extent={{-220,-130},{-180,-90}}),
+ iconTransformation(extent={{-140,-100},{-100,-60}})));
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput chaPro
+ "Indicate if there is stage change"
+ annotation (Placement(transformation(extent={{-220,32},{-180,72}}),
+ iconTransformation(extent={{-140,-20},{-100,20}})));
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanOutput yChiHeaCon[nChi]
+ "Chiller head pressure control enabling status"
+ annotation (Placement(transformation(extent={{180,-100},{220,-60}}),
+ iconTransformation(extent={{100,-80},{140,-40}})));
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanOutput yEnaHeaCon
+ "Status of heat pressure control: true=enabled head pressure control"
+ annotation (Placement(transformation(extent={{180,80},{220,120}}),
+ iconTransformation(extent={{100,40},{140,80}})));
+
+protected
+ final parameter Integer chiInd[nChi]={i for i in 1:nChi}
+ "Chiller index, {1,2,...,n}";
+ Buildings.Controls.OBC.CDL.Logical.Timer tim
+ "Count the time after condenser water pump being reset"
+ annotation (Placement(transformation(extent={{-60,50},{-40,70}})));
+ Buildings.Controls.OBC.CDL.Logical.Edge edg
+ "Rising edge, output true at the moment when input turns from false to true"
+ annotation (Placement(transformation(extent={{-160,90},{-140,110}})));
+ Buildings.Controls.OBC.CDL.Logical.Latch lat
+ "Logical latch, maintain ON signal until condition changes"
+ annotation (Placement(transformation(extent={{-100,50},{-80,70}})));
+ Buildings.Controls.OBC.CDL.Continuous.GreaterThreshold greThr(
+ final t=thrTimEnb)
+ "Check if it has been threhold time after condenser water pump achieves its new setpoint"
+ annotation (Placement(transformation(extent={{0,50},{20,70}})));
+ Buildings.Controls.OBC.CDL.Discrete.TriggeredSampler triSam[nChi]
+ "Record the old chiller head pressure control status"
+ annotation (Placement(transformation(extent={{-60,-120},{-40,-100}})));
+ Buildings.Controls.OBC.CDL.Conversions.BooleanToReal booToRea[nChi]
+ "Convert boolean input to real output"
+ annotation (Placement(transformation(extent={{-160,-120},{-140,-100}})));
+ Buildings.Controls.OBC.CDL.Routing.BooleanScalarReplicator booRep(final nout=nChi)
+ "Replicate boolean input"
+ annotation (Placement(transformation(extent={{-100,-140},{-80,-120}})));
+ Buildings.Controls.OBC.CDL.Logical.And and2 "Logical and"
+ annotation (Placement(transformation(extent={{-160,50},{-140,70}})));
+ Buildings.Controls.OBC.CDL.Logical.Not not1 "Logical not"
+ annotation (Placement(transformation(extent={{-160,10},{-140,30}})));
+ Buildings.Controls.OBC.CDL.Continuous.Switch swi[nChi] "Logical switch"
+ annotation (Placement(transformation(extent={{100,-30},{120,-10}})));
+ Buildings.Controls.OBC.CDL.Continuous.GreaterThreshold greThr1(
+ final t=thrTimEnb + waiTim)
+ "Check if it has been threshold time after condenser water pump achieves its new setpoint and have waited for another amount of time"
+ annotation (Placement(transformation(extent={{0,90},{20,110}})));
+ Buildings.Controls.OBC.CDL.Routing.BooleanScalarReplicator booRep1(
+ final nout=nChi) "Replicate boolean input"
+ annotation (Placement(transformation(extent={{40,50},{60,70}})));
+ Buildings.Controls.OBC.CDL.Continuous.GreaterThreshold greEquThr[nChi](
+ final t=fill(0.5, nChi))
+ "Convert real input to boolean output"
+ annotation (Placement(transformation(extent={{140,-30},{160,-10}})));
+ Buildings.Controls.OBC.CDL.Logical.Not not2 "Logical not"
+ annotation (Placement(transformation(extent={{-60,-70},{-40,-50}})));
+ Buildings.Controls.OBC.CDL.Continuous.Switch swi1[nChi] "Logical switch"
+ annotation (Placement(transformation(extent={{40,-70},{60,-50}})));
+ Buildings.Controls.OBC.CDL.Routing.BooleanScalarReplicator booRep2(final nout=nChi)
+ "Replicate boolean input"
+ annotation (Placement(transformation(extent={{-20,-70},{0,-50}})));
+ Buildings.Controls.OBC.CDL.Routing.IntegerScalarReplicator intRep(final nout=nChi)
+ "Replicate integer input"
+ annotation (Placement(transformation(extent={{-160,-40},{-140,-20}})));
+ Buildings.Controls.OBC.CDL.Integers.Equal intEqu[nChi]
+ "Check next enabling isolation valve"
+ annotation (Placement(transformation(extent={{-100,-40},{-80,-20}})));
+ Buildings.Controls.OBC.CDL.Continuous.Switch swi2[nChi] "Logical switch"
+ annotation (Placement(transformation(extent={{40,-40},{60,-20}})));
+ Buildings.Controls.OBC.CDL.Conversions.BooleanToReal booToRea1[nChi]
+ "Convert boolean input to real output"
+ annotation (Placement(transformation(extent={{40,0},{60,20}})));
+ Buildings.Controls.OBC.CDL.Routing.BooleanScalarReplicator booRep3(final nout=nChi)
+ "Replicate boolean input"
+ annotation (Placement(transformation(extent={{0,0},{20,20}})));
+ Buildings.Controls.OBC.CDL.Logical.Switch logSwi "Logical switch"
+ annotation (Placement(transformation(extent={{-40,0},{-20,20}})));
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant con(final k=false)
+ "False constant"
+ annotation (Placement(transformation(extent={{-100,-10},{-80,10}})));
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant con1(final k=heaStaCha)
+ "Head control status change"
+ annotation (Placement(transformation(extent={{-100,20},{-80,40}})));
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant conInt[nChi](
+ final k=chiInd) "Chiller index array"
+ annotation (Placement(transformation(extent={{-160,-70},{-140,-50}})));
+ Buildings.Controls.OBC.CDL.Logical.And and1 "Logical and"
+ annotation (Placement(transformation(extent={{100,90},{120,110}})));
+ Buildings.Controls.OBC.CDL.Logical.Switch logSwi1[nChi]
+ "Logical switch"
+ annotation (Placement(transformation(extent={{140,-90},{160,-70}})));
+ Buildings.Controls.OBC.CDL.Routing.BooleanScalarReplicator booRep4(final nout=nChi)
+ "Replicate boolean input"
+ annotation (Placement(transformation(extent={{40,-160},{60,-140}})));
+ Buildings.Controls.OBC.CDL.Logical.Or or1
+ "Plant just enabeld or it is in the chiller staging process"
+ annotation (Placement(transformation(extent={{-140,150},{-120,170}})));
+
+equation
+ connect(lat.y, tim.u)
+ annotation (Line(points={{-78,60},{-62,60}}, color={255,0,255}));
+ connect(tim.y, greThr.u)
+ annotation (Line(points={{-38,60},{-2,60}}, color={0,0,127}));
+ connect(uChiHeaCon, booToRea.u)
+ annotation (Line(points={{-200,-110},{-162,-110}}, color={255,0,255}));
+ connect(booToRea.y, triSam.u)
+ annotation (Line(points={{-138,-110},{-62,-110}}, color={0,0,127}));
+ connect(edg.y, and2.u1)
+ annotation (Line(points={{-138,100},{-120,100},{-120,80},{-170,80},{-170,60},
+ {-162,60}}, color={255,0,255}));
+ connect(chaPro, and2.u2)
+ annotation (Line(points={{-200,52},{-162,52}}, color={255,0,255}));
+ connect(and2.y, lat.u)
+ annotation (Line(points={{-138,60},{-102,60}}, color={255,0,255}));
+ connect(chaPro, not1.u)
+ annotation (Line(points={{-200,52},{-170,52},{-170,20},{-162,20}},
+ color={255,0,255}));
+ connect(not1.y, lat.clr)
+ annotation (Line(points={{-138,20},{-110,20},{-110,54},{-102,54}},
+ color={255,0,255}));
+ connect(booRep.y, triSam.trigger)
+ annotation (Line(points={{-78,-130},{-50,-130},{-50,-122}},
+ color={255,0,255}));
+ connect(tim.y, greThr1.u)
+ annotation (Line(points={{-38,60},{-20,60},{-20,100},{-2,100}}, color={0,0,127}));
+ connect(booRep1.y, swi.u2)
+ annotation (Line(points={{62,60},{80,60},{80,-20},{98,-20}},
+ color={255,0,255}));
+ connect(greThr.y, booRep1.u)
+ annotation (Line(points={{22,60},{38,60}}, color={255,0,255}));
+ connect(swi.y, greEquThr.u)
+ annotation (Line(points={{122,-20},{138,-20}}, color={0,0,127}));
+ connect(not2.y, booRep2.u)
+ annotation (Line(points={{-38,-60},{-22,-60}}, color={255,0,255}));
+ connect(booRep2.y, swi1.u2)
+ annotation (Line(points={{2,-60},{38,-60}}, color={255,0,255}));
+ connect(triSam.y, swi1.u3)
+ annotation (Line(points={{-38,-110},{20,-110},{20,-68},{38,-68}},
+ color={0,0,127}));
+ connect(swi1.y, swi.u3)
+ annotation (Line(points={{62,-60},{80,-60},{80,-28},{98,-28}},
+ color={0,0,127}));
+ connect(lat.y, not2.u)
+ annotation (Line(points={{-78,60},{-70,60},{-70,-60},{-62,-60}},
+ color={255,0,255}));
+ connect(nexChaChi, intRep.u)
+ annotation (Line(points={{-200,-30},{-162,-30}}, color={255,127,0}));
+ connect(intRep.y, intEqu.u1)
+ annotation (Line(points={{-138,-30},{-102,-30}}, color={255,127,0}));
+ connect(booToRea.y, swi1.u1)
+ annotation (Line(points={{-138,-110},{-100,-110},{-100,-80},{10,-80},{10,-52},
+ {38,-52}}, color={0,0,127}));
+ connect(intEqu.y, swi2.u2)
+ annotation (Line(points={{-78,-30},{38,-30}}, color={255,0,255}));
+ connect(swi2.y, swi.u1)
+ annotation (Line(points={{62,-30},{70,-30},{70,-12},{98,-12}},
+ color={0,0,127}));
+ connect(triSam.y, swi2.u3)
+ annotation (Line(points={{-38,-110},{20,-110},{20,-38},{38,-38}},
+ color={0,0,127}));
+ connect(con1.y, logSwi.u1)
+ annotation (Line(points={{-78,30},{-60,30},{-60,18},{-42,18}},
+ color={255,0,255}));
+ connect(con.y, logSwi.u3)
+ annotation (Line(points={{-78,0},{-60,0},{-60,2},{-42,2}},
+ color={255,0,255}));
+ connect(greThr.y, logSwi.u2)
+ annotation (Line(points={{22,60},{30,60},{30,40},{-50,40},{-50,10},{-42,10}},
+ color={255,0,255}));
+ connect(logSwi.y, booRep3.u)
+ annotation (Line(points={{-18,10},{-2,10}},color={255,0,255}));
+ connect(booRep3.y, booToRea1.u)
+ annotation (Line(points={{22,10},{38,10}}, color={255,0,255}));
+ connect(booToRea1.y, swi2.u1)
+ annotation (Line(points={{62,10},{70,10},{70,-10},{20,-10},{20,-22},{38,-22}},
+ color={0,0,127}));
+ connect(conInt.y, intEqu.u2)
+ annotation (Line(points={{-138,-60},{-130,-60},{-130,-38},{-102,-38}},
+ color={255,127,0}));
+ connect(greThr1.y, and1.u1)
+ annotation (Line(points={{22,100},{98,100}}, color={255,0,255}));
+ connect(and1.y, yEnaHeaCon)
+ annotation (Line(points={{122,100},{200,100}}, color={255,0,255}));
+ connect(and2.y, booRep.u)
+ annotation (Line(points={{-138,60},{-120,60},{-120,-130},{-102,-130}},
+ color={255,0,255}));
+ connect(chaPro, booRep4.u)
+ annotation (Line(points={{-200,52},{-170,52},{-170,-150},{38,-150}},
+ color={255,0,255}));
+ connect(uChiHeaCon, logSwi1.u3)
+ annotation (Line(points={{-200,-110},{-166,-110},{-166,-88},{138,-88}},
+ color={255,0,255}));
+ connect(booRep4.y, logSwi1.u2)
+ annotation (Line(points={{62,-150},{80,-150},{80,-80},{138,-80}},
+ color={255,0,255}));
+ connect(greEquThr.y, logSwi1.u1)
+ annotation (Line(points={{162,-20},{170,-20},{170,-50},{120,-50},{120,-72},{
+ 138,-72}}, color={255,0,255}));
+ connect(logSwi1.y, yChiHeaCon)
+ annotation (Line(points={{162,-80},{200,-80}}, color={255,0,255}));
+ connect(uEnaPla, or1.u1)
+ annotation (Line(points={{-200,160},{-142,160}}, color={255,0,255}));
+ connect(or1.y, and1.u2) annotation (Line(points={{-118,160},{80,160},{80,92},
+ {98,92}}, color={255,0,255}));
+ connect(uUpsDevSta, or1.u2) annotation (Line(points={{-200,130},{-160,130},{-160,
+ 152},{-142,152}}, color={255,0,255}));
+ connect(or1.y, edg.u) annotation (Line(points={{-118,160},{-100,160},{-100,
+ 120},{-170,120},{-170,100},{-162,100}}, color={255,0,255}));
+annotation (
+ defaultComponentName="enaHeaCon",
+ Diagram(coordinateSystem(preserveAspectRatio=false,
+ extent={{-180,-180},{180,180}})),
+ Icon(coordinateSystem(extent={{-100,-100},{100,100}}),
+ graphics={
+ Rectangle(
+ extent={{-100,-100},{100,100}},
+ lineColor={0,0,127},
+ fillColor={255,255,255},
+ fillPattern=FillPattern.Solid),
+ Text(extent={{-120,146},{100,108}},
+ textColor={0,0,255},
+ textString="%name"),
+ Text(
+ extent={{-98,-34},{-54,-46}},
+ textColor={255,127,0},
+ pattern=LinePattern.Dash,
+ textString="nexChaChi"),
+ Text(
+ extent={{-96,52},{-44,38}},
+ textColor={255,0,255},
+ pattern=LinePattern.Dash,
+ textString="uUpsDevSta"),
+ Text(
+ extent={{-100,6},{-66,-6}},
+ textColor={255,0,255},
+ pattern=LinePattern.Dash,
+ textString="chaPro"),
+ Text(
+ extent={{-98,-72},{-46,-86}},
+ textColor={255,0,255},
+ pattern=LinePattern.Dash,
+ textString="uChiHeaCon"),
+ Text(
+ extent={{44,68},{96,54}},
+ textColor={255,0,255},
+ pattern=LinePattern.Dash,
+ textString="yEnaHeaCon"),
+ Text(
+ extent={{44,-50},{96,-64}},
+ textColor={255,0,255},
+ pattern=LinePattern.Dash,
+ textString="yChiHeaCon"),
+ Polygon(
+ points={{-60,40},{-60,-40},{0,0},{-60,40}},
+ lineColor={200,200,200},
+ fillColor={207,207,207},
+ fillPattern=FillPattern.Solid),
+ Polygon(
+ points={{60,40},{60,-40},{0,0},{60,40}},
+ lineColor={200,200,200},
+ fillColor={207,207,207},
+ fillPattern=FillPattern.Solid),
+ Text(
+ extent={{-100,88},{-48,74}},
+ textColor={255,0,255},
+ pattern=LinePattern.Dash,
+ textString="uEnaPla")}),
+ Documentation(info="
+
+Block that generates chiller head pressure control enabling status array when
+there is stage change command (chaPro=true
). It also generates status
+to indicate if the head pressure control status change process has finished.
+This development is based on ASHRAE RP-1711 Advanced Sequences of Operation for
+HVAC Systems Phase II – Central Plants and Hydronic Systems (Draft on March 23, 2020):
+
+
+In stage-up process, section 5.2.4.16, item 4:
+
+
+-
+After the condenser water pumps speed or number has been changed by
thrTimEnb
,
+e.g. 10 seconds, enable head pressure control for the chiller being enabled.
+Wait 30 seconds (waiTim=30
).
+
+
+
+In stage-up process when requires smaller chiller being shut off and larger chiller
+being enabled, section 5.2.4.16, item 7.c:
+
+
+-
+When the controller of the smaller chiller being shut off indicates no request for
+condenser water flow, disable the chiller's head pressure control loop,
+(
thrTimEnb=0
and waiTim=0
).
+
+
+
+In stage-down process, section 5.2.4.17, item 4:
+
+
+-
+When the controller of the chiller being shut off indicates no request for condenser
+water flow, disable the chiller's head pressure control loop,
+(
thrTimEnb=0
and waiTim=0
).
+
+
+
+In stage-down process when requires smaller chiller being enabled and larger chiller
+being disabled, section 5.2.4.17, item 1.c:
+
+
+-
+After minimum flow bypass has been changed, enable head pressure control for
+the chiller being enabled. Wait 30 seconds.
+(
thrTimEnb=0
and waiTim=30
).
+
+
+", revisions="
+
+-
+February 4, 2019, by Jianjun Hu:
+First implementation.
+
+
+"));
+end HeadControl;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/Processes/Subsequences/NextChiller.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/Processes/Subsequences/NextChiller.mo
new file mode 100644
index 00000000000..ba1f106a5e8
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/Processes/Subsequences/NextChiller.mo
@@ -0,0 +1,303 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.Processes.Subsequences;
+block NextChiller "Identify next enable and disable chillers"
+
+ parameter Integer nChi=2 "Total number of chillers";
+
+ Buildings.Controls.OBC.CDL.Interfaces.IntegerInput uStaSet
+ "Chiller stage setpoint"
+ annotation (Placement(transformation(extent={{-260,110},{-220,150}}),
+ iconTransformation(extent={{-140,50},{-100,90}})));
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uChiSet[nChi]
+ "Vector of chillers status setpoint"
+ annotation (Placement(transformation(extent={{-260,-40},{-220,0}}),
+ iconTransformation(extent={{-140,-20},{-100,20}})));
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput chaPro
+ "True: in the stage change process"
+ annotation (Placement(transformation(extent={{-260,-180},{-220,-140}}),
+ iconTransformation(extent={{-140,-90},{-100,-50}})));
+ Buildings.Controls.OBC.CDL.Interfaces.IntegerOutput yNexEnaChi
+ "Next enabling chiller index"
+ annotation (Placement(transformation(extent={{220,140},{260,180}}),
+ iconTransformation(extent={{100,70},{140,110}})));
+ Buildings.Controls.OBC.CDL.Interfaces.IntegerOutput yDisSmaChi
+ "Smaller chiller to be disabled in staging-up process"
+ annotation (Placement(transformation(extent={{220,90},{260,130}}),
+ iconTransformation(extent={{100,20},{140,60}})));
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanOutput yOnOff
+ "True: if the stage change require one chiller to be enabled while another is disabled"
+ annotation (Placement(transformation(extent={{220,-40},{260,0}}),
+ iconTransformation(extent={{100,-20},{140,20}})));
+ Buildings.Controls.OBC.CDL.Interfaces.IntegerOutput yLasDisChi
+ "Disable last chiller when it is in stage-down process"
+ annotation (Placement(transformation(extent={{220,-120},{260,-80}}),
+ iconTransformation(extent={{100,-60},{140,-20}})));
+ Buildings.Controls.OBC.CDL.Interfaces.IntegerOutput yEnaSmaChi
+ "Smaller chiller to be enabled in stage-down process"
+ annotation (Placement(transformation(extent={{220,-180},{260,-140}}),
+ iconTransformation(extent={{100,-110},{140,-70}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Change cha
+ "Check if it is stage up or stage down"
+ annotation (Placement(transformation(extent={{-200,120},{-180,140}})));
+ Buildings.Controls.OBC.CDL.Logical.Edge edg[nChi]
+ "Check if the chiller is being enabled"
+ annotation (Placement(transformation(extent={{-200,30},{-180,50}})));
+ Buildings.Controls.OBC.CDL.Logical.FallingEdge falEdg[nChi]
+ "Check if the chiller is being disabled"
+ annotation (Placement(transformation(extent={{-200,-110},{-180,-90}})));
+ Buildings.Controls.OBC.CDL.Logical.Latch enaChi[nChi]
+ "True when the chiller should be enabled"
+ annotation (Placement(transformation(extent={{-120,30},{-100,50}})));
+ Buildings.Controls.OBC.CDL.Logical.FallingEdge endPro
+ "True: chiller stage change is end"
+ annotation (Placement(transformation(extent={{-200,-170},{-180,-150}})));
+ Buildings.Controls.OBC.CDL.Logical.Latch disChi[nChi]
+ "True when the chiller should be disabled"
+ annotation (Placement(transformation(extent={{-120,-110},{-100,-90}})));
+ Buildings.Controls.OBC.CDL.Logical.MultiOr anyEnaChi(final nin=nChi)
+ "Check if there is any enabling chiller"
+ annotation (Placement(transformation(extent={{-80,-30},{-60,-10}})));
+ Buildings.Controls.OBC.CDL.Logical.MultiOr anyDisChi(final nin=nChi)
+ "Check if there is any disabling chiller"
+ annotation (Placement(transformation(extent={{-80,-70},{-60,-50}})));
+ Buildings.Controls.OBC.CDL.Logical.And enaDis
+ "Check if enabling and disabling chillers at the same process"
+ annotation (Placement(transformation(extent={{-20,-30},{0,-10}})));
+ Buildings.Controls.OBC.CDL.Integers.Multiply proInt[nChi]
+ "Find out the index of enabling chiller"
+ annotation (Placement(transformation(extent={{-20,30},{0,50}})));
+ Buildings.Controls.OBC.CDL.Integers.Multiply proInt1[nChi]
+ "Find out the index of disabling chiller"
+ annotation (Placement(transformation(extent={{-20,-110},{0,-90}})));
+ Buildings.Controls.OBC.CDL.Integers.MultiSum enaChiInd(final nin = nChi)
+ "Enabling chiller index"
+ annotation (Placement(transformation(extent={{20,30},{40,50}})));
+ Buildings.Controls.OBC.CDL.Integers.MultiSum disChiInd(final nin = nChi)
+ "Disabling chiller index"
+ annotation (Placement(transformation(extent={{20,-110},{40,-90}})));
+ Buildings.Controls.OBC.CDL.Logical.Latch upPro
+ "True when it is in stage up process"
+ annotation (Placement(transformation(extent={{-120,150},{-100,170}})));
+ Buildings.Controls.OBC.CDL.Logical.Latch dowPro
+ "True when it is in stage down process"
+ annotation (Placement(transformation(extent={{-120,80},{-100,100}})));
+ Buildings.Controls.OBC.CDL.Integers.Multiply proInt2
+ "Find out the index of enabling chiller"
+ annotation (Placement(transformation(extent={{120,150},{140,170}})));
+ Buildings.Controls.OBC.CDL.Integers.Multiply proInt3
+ "Staging up process and it requires chiller on and off"
+ annotation (Placement(transformation(extent={{120,110},{140,130}})));
+ Buildings.Controls.OBC.CDL.Integers.Multiply proInt4
+ "Disabling chiller during stage up process"
+ annotation (Placement(transformation(extent={{180,100},{200,120}})));
+ Buildings.Controls.OBC.CDL.Integers.Multiply proInt5
+ "Find out the index of disabling chiller"
+ annotation (Placement(transformation(extent={{120,-110},{140,-90}})));
+ Buildings.Controls.OBC.CDL.Integers.Multiply proInt6
+ "Staging down process and it requires chiller on and off"
+ annotation (Placement(transformation(extent={{120,-150},{140,-130}})));
+ Buildings.Controls.OBC.CDL.Integers.Multiply proInt7
+ "Enabling chiller during stage down process"
+ annotation (Placement(transformation(extent={{180,-170},{200,-150}})));
+
+protected
+ parameter Integer chiInd[nChi]={i for i in 1:nChi}
+ "Chiller index, {1,2,...,n}";
+ Buildings.Controls.OBC.CDL.Conversions.BooleanToInteger booToInt[nChi]
+ "Boolean to integer"
+ annotation (Placement(transformation(extent={{-80,30},{-60,50}})));
+ Buildings.Controls.OBC.CDL.Conversions.BooleanToInteger booToInt1[nChi]
+ "Boolean to integer"
+ annotation (Placement(transformation(extent={{-80,-110},{-60,-90}})));
+ Buildings.Controls.OBC.CDL.Conversions.BooleanToInteger booToInt2
+ "Boolean to integer"
+ annotation (Placement(transformation(extent={{40,-70},{60,-50}})));
+ Buildings.Controls.OBC.CDL.Conversions.BooleanToInteger booToInt3
+ "Boolean to integer"
+ annotation (Placement(transformation(extent={{-80,150},{-60,170}})));
+ Buildings.Controls.OBC.CDL.Conversions.BooleanToInteger booToInt4
+ "Boolean to integer"
+ annotation (Placement(transformation(extent={{-80,80},{-60,100}})));
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant chiIndVec[nChi](
+ final k=chiInd)
+ "Vector of chiller index"
+ annotation (Placement(transformation(extent={{-120,-10},{-100,10}})));
+ Buildings.Controls.OBC.CDL.Routing.BooleanScalarReplicator booRep(
+ final nout=nChi)
+ "Replicate boolean input"
+ annotation (Placement(transformation(extent={{-160,-170},{-140,-150}})));
+
+equation
+ connect(uChiSet, edg.u) annotation (Line(points={{-240,-20},{-210,-20},{-210,40},
+ {-202,40}}, color={255,0,255}));
+ connect(uChiSet, falEdg.u) annotation (Line(points={{-240,-20},{-210,-20},{-210,
+ -100},{-202,-100}}, color={255,0,255}));
+ connect(chaPro, endPro.u)
+ annotation (Line(points={{-240,-160},{-202,-160}}, color={255,0,255}));
+ connect(edg.y, enaChi.u)
+ annotation (Line(points={{-178,40},{-122,40}}, color={255,0,255}));
+ connect(falEdg.y, disChi.u)
+ annotation (Line(points={{-178,-100},{-122,-100}}, color={255,0,255}));
+ connect(endPro.y, booRep.u)
+ annotation (Line(points={{-178,-160},{-162,-160}}, color={255,0,255}));
+ connect(booRep.y, enaChi.clr) annotation (Line(points={{-138,-160},{-130,-160},
+ {-130,34},{-122,34}}, color={255,0,255}));
+ connect(booRep.y, disChi.clr) annotation (Line(points={{-138,-160},{-130,-160},
+ {-130,-106},{-122,-106}}, color={255,0,255}));
+ connect(enaChi.y, anyEnaChi.u) annotation (Line(points={{-98,40},{-90,40},{-90,
+ -20},{-82,-20}},color={255,0,255}));
+ connect(anyEnaChi.y, enaDis.u1) annotation (Line(points={{-58,-20},{-22,-20}},
+ color={255,0,255}));
+ connect(disChi.y, anyDisChi.u) annotation (Line(points={{-98,-100},{-90,-100},
+ {-90,-60},{-82,-60}},color={255,0,255}));
+ connect(anyDisChi.y, enaDis.u2) annotation (Line(points={{-58,-60},{-30,-60},{
+ -30,-28},{-22,-28}}, color={255,0,255}));
+ connect(enaDis.y, yOnOff) annotation (Line(points={{2,-20},{240,-20}},
+ color={255,0,255}));
+ connect(uStaSet, cha.u)
+ annotation (Line(points={{-240,130},{-202,130}}, color={255,127,0}));
+ connect(disChi.y, booToInt1.u)
+ annotation (Line(points={{-98,-100},{-82,-100}}, color={255,0,255}));
+ connect(enaChi.y, booToInt.u)
+ annotation (Line(points={{-98,40},{-82,40}}, color={255,0,255}));
+ connect(booToInt.y, proInt.u1) annotation (Line(points={{-58,40},{-40,40},{-40,
+ 46},{-22,46}}, color={255,127,0}));
+ connect(booToInt1.y, proInt1.u2) annotation (Line(points={{-58,-100},{-40,-100},
+ {-40,-106},{-22,-106}}, color={255,127,0}));
+ connect(chiIndVec.y, proInt.u2) annotation (Line(points={{-98,0},{-40,0},{-40,
+ 34},{-22,34}}, color={255,127,0}));
+ connect(proInt.y, enaChiInd.u)
+ annotation (Line(points={{2,40},{18,40}}, color={255,127,0}));
+ connect(chiIndVec.y, proInt1.u1) annotation (Line(points={{-98,0},{-40,0},{-40,
+ -94},{-22,-94}}, color={255,127,0}));
+ connect(proInt1.y, disChiInd.u)
+ annotation (Line(points={{2,-100},{18,-100}}, color={255,127,0}));
+ connect(cha.up, upPro.u) annotation (Line(points={{-178,136},{-140,136},{-140,
+ 160},{-122,160}}, color={255,0,255}));
+ connect(cha.down, dowPro.u) annotation (Line(points={{-178,124},{-140,124},{-140,
+ 90},{-122,90}}, color={255,0,255}));
+ connect(endPro.y, upPro.clr) annotation (Line(points={{-178,-160},{-170,-160},
+ {-170,154},{-122,154}}, color={255,0,255}));
+ connect(endPro.y, dowPro.clr) annotation (Line(points={{-178,-160},{-170,-160},
+ {-170,84},{-122,84}}, color={255,0,255}));
+ connect(enaDis.y, booToInt2.u) annotation (Line(points={{2,-20},{20,-20},{20,-60},
+ {38,-60}}, color={255,0,255}));
+ connect(upPro.y, booToInt3.u)
+ annotation (Line(points={{-98,160},{-82,160}}, color={255,0,255}));
+ connect(booToInt3.y, proInt2.u1) annotation (Line(points={{-58,160},{-20,160},
+ {-20,166},{118,166}}, color={255,127,0}));
+ connect(enaChiInd.y, proInt2.u2) annotation (Line(points={{42,40},{80,40},{80,
+ 154},{118,154}}, color={255,127,0}));
+ connect(proInt2.y, yNexEnaChi)
+ annotation (Line(points={{142,160},{240,160}}, color={255,127,0}));
+ connect(booToInt3.y, proInt3.u1) annotation (Line(points={{-58,160},{-20,160},
+ {-20,126},{118,126}},color={255,127,0}));
+ connect(booToInt2.y, proInt3.u2) annotation (Line(points={{62,-60},{70,-60},{70,
+ 114},{118,114}},color={255,127,0}));
+ connect(proInt3.y, proInt4.u1) annotation (Line(points={{142,120},{160,120},{160,
+ 116},{178,116}}, color={255,127,0}));
+ connect(disChiInd.y, proInt4.u2) annotation (Line(points={{42,-100},{90,-100},
+ {90,104},{178,104}}, color={255,127,0}));
+ connect(proInt4.y, yDisSmaChi)
+ annotation (Line(points={{202,110},{240,110}}, color={255,127,0}));
+ connect(dowPro.y, booToInt4.u)
+ annotation (Line(points={{-98,90},{-82,90}}, color={255,0,255}));
+ connect(booToInt4.y, proInt5.u1) annotation (Line(points={{-58,90},{100,90},{100,
+ -94},{118,-94}}, color={255,127,0}));
+ connect(disChiInd.y, proInt5.u2) annotation (Line(points={{42,-100},{90,-100},
+ {90,-106},{118,-106}}, color={255,127,0}));
+ connect(proInt5.y, yLasDisChi)
+ annotation (Line(points={{142,-100},{240,-100}}, color={255,127,0}));
+ connect(booToInt2.y, proInt6.u2) annotation (Line(points={{62,-60},{70,-60},{70,
+ -146},{118,-146}}, color={255,127,0}));
+ connect(booToInt4.y, proInt6.u1) annotation (Line(points={{-58,90},{100,90},{100,
+ -134},{118,-134}}, color={255,127,0}));
+ connect(proInt6.y, proInt7.u1) annotation (Line(points={{142,-140},{160,-140},
+ {160,-154},{178,-154}}, color={255,127,0}));
+ connect(enaChiInd.y, proInt7.u2) annotation (Line(points={{42,40},{80,40},{80,
+ -166},{178,-166}}, color={255,127,0}));
+ connect(proInt7.y, yEnaSmaChi)
+ annotation (Line(points={{202,-160},{240,-160}}, color={255,127,0}));
+
+annotation (
+ defaultComponentName="nexChi",
+ Diagram(coordinateSystem(preserveAspectRatio=false,
+ extent={{-220,-180},{220,180}})),
+ Icon(coordinateSystem(extent={{-100,-100},{100,100}}),
+ graphics={
+ Rectangle(
+ extent={{-100,-100},{100,100}},
+ lineColor={0,0,127},
+ fillColor={255,255,255},
+ fillPattern=FillPattern.Solid),
+ Text(extent={{-120,146},{100,108}},
+ textColor={0,0,255},
+ textString="%name"),
+ Text(
+ extent={{-100,76},{-64,66}},
+ textColor={255,127,0},
+ pattern=LinePattern.Dash,
+ textString="uStaSet"),
+ Text(
+ extent={{-100,8},{-58,-4}},
+ textColor={255,0,255},
+ pattern=LinePattern.Dash,
+ textString="uChiSet"),
+ Text(
+ extent={{50,100},{98,80}},
+ textColor={255,127,0},
+ pattern=LinePattern.Dash,
+ textString="yNexEnaChi"),
+ Text(
+ extent={{-98,-62},{-64,-74}},
+ textColor={255,0,255},
+ pattern=LinePattern.Dash,
+ textString="chaPro"),
+ Text(
+ extent={{50,52},{98,32}},
+ textColor={255,127,0},
+ pattern=LinePattern.Dash,
+ textString="yDisSmaChi"),
+ Text(
+ extent={{50,-28},{98,-48}},
+ textColor={255,127,0},
+ pattern=LinePattern.Dash,
+ textString="yDisLasChi"),
+ Text(
+ extent={{44,-78},{98,-100}},
+ textColor={255,127,0},
+ pattern=LinePattern.Dash,
+ textString="yEnaSmaChi"),
+ Text(
+ extent={{54,8},{96,-4}},
+ textColor={255,0,255},
+ pattern=LinePattern.Dash,
+ textString="yOnOff"),
+ Text(
+ extent={{-100,100},{100,-100}},
+ textColor={0,0,0},
+ textString="?")}),
+Documentation(info="
+
+This block identifies index of next enable (yNexEnaChi
and
+yEnaSmaChi
) or disable chiller (yDisSmaChi
and
+yLasDisChi
) based on current chiller stage setpoint
+uStaSet
and the chiller status setpoint uChiSet
.
+
+
+This implementation assumes that the stage-up process (increased uStaSet
)
+will enable only one more chiller (yOnOff=false
), or enable a larger
+chiller and disable a smaller chiller (yOnOff=true
); the stage-down
+process (dicreased uStaSet
) will disable only one existing chiller
+(yOnOff=false
), or disable a larger chiller and enable a smaller
+chiller (yOnOff=true
).
+
+", revisions="
+
+-
+May 06, 2020, by Jianjun Hu:
+First implementation.
+
+
+"));
+end NextChiller;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/Processes/Subsequences/ReduceDemand.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/Processes/Subsequences/ReduceDemand.mo
new file mode 100644
index 00000000000..db6ae244864
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/Processes/Subsequences/ReduceDemand.mo
@@ -0,0 +1,343 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.Processes.Subsequences;
+block ReduceDemand "Sequence for reducing operating chiller demand"
+
+ parameter Integer nChi=2 "Total number of chillers in the plant";
+ parameter Real chiDemRedFac = 0.75
+ "Demand reducing factor of current operating chillers";
+ parameter Real holChiDemTim(
+ final unit="s",
+ final quantity="Time",
+ displayUnit="h") = 300
+ "Maximum time to wait for the actual demand less than percentage of current load";
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uDemLim
+ "Demand limit: true=limit chiller demand"
+ annotation (Placement(transformation(extent={{-200,140},{-160,180}}),
+ iconTransformation(extent={{-140,70},{-100,110}})));
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput uChiLoa[nChi](
+ final quantity=fill("ElectricCurrent", nChi),
+ final unit=fill("A", nChi))
+ "Current chiller load"
+ annotation (Placement(transformation(extent={{-200,110},{-160,150}}),
+ iconTransformation(extent={{-140,30},{-100,70}})));
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput yOpeParLoaRatMin(
+ final min=0,
+ final max=1,
+ final unit="1")
+ "Current stage minimum cycling operative partial load ratio"
+ annotation (Placement(transformation(extent={{-200,20},{-160,60}}),
+ iconTransformation(extent={{-140,-10},{-100,30}})));
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uStaDow "Stage down status: true=stage-down"
+ annotation (Placement(transformation(extent={{-200,-20},{-160,20}}),
+ iconTransformation(extent={{-140,-40},{-100,0}})));
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uOnOff
+ "True: if the stage change require one chiller to be enabled while another is disabled"
+ annotation (Placement(transformation(extent={{-200,-60},{-160,-20}}),
+ iconTransformation(extent={{-140,-70},{-100,-30}})));
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uChi[nChi]
+ "Chiller status: true=ON"
+ annotation (Placement(transformation(extent={{-200,-130},{-160,-90}}),
+ iconTransformation(extent={{-140,-110},{-100,-70}})));
+ Buildings.Controls.OBC.CDL.Interfaces.RealOutput yChiDem[nChi](
+ final quantity=fill("ElectricCurrent", nChi),
+ final unit=fill("A", nChi))
+ "Chiller demand setpoint"
+ annotation (Placement(transformation(extent={{160,70},{200,110}}),
+ iconTransformation(extent={{100,20},{140,60}})));
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanOutput yChiDemRed
+ "Indicate if the chiller demand reduction process has finished"
+ annotation (Placement(transformation(extent={{160,30},{200,70}}),
+ iconTransformation(extent={{100,-60},{140,-20}})));
+
+protected
+ Buildings.Controls.OBC.CDL.Discrete.TriggeredSampler triSam[nChi](
+ final y_start=fill(1e-6,nChi))
+ "Triggered sampler to sample current chiller demand"
+ annotation (Placement(transformation(extent={{0,120},{20,140}})));
+ Buildings.Controls.OBC.CDL.Routing.BooleanScalarReplicator booRep(
+ final nout=nChi)
+ "Replicate boolean input"
+ annotation (Placement(transformation(extent={{-60,150},{-40,170}})));
+ Buildings.Controls.OBC.CDL.Continuous.Switch swi4[nChi]
+ "Current setpoint to chillers"
+ annotation (Placement(transformation(extent={{120,80},{140,100}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant con[nChi](
+ final k=fill(0.2, nChi)) "Constant value to avoid zero as the denominator"
+ annotation (Placement(transformation(extent={{-140,-170},{-120,-150}})));
+ Buildings.Controls.OBC.CDL.Continuous.Switch swi[nChi]
+ "Change zero input to a given constant if the chiller is not enabled"
+ annotation (Placement(transformation(extent={{-80,-120},{-60,-100}})));
+ Buildings.Controls.OBC.CDL.Continuous.Hysteresis hys[nChi](
+ final uLow=fill(chiDemRedFac + 0.05 - 0.01, nChi),
+ final uHigh=fill(chiDemRedFac + 0.05 + 0.01, nChi))
+ "Check if actual demand has already reduced at instant when receiving stage change signal"
+ annotation (Placement(transformation(extent={{0,-120},{20,-100}})));
+ Buildings.Controls.OBC.CDL.Continuous.Divide div[nChi]
+ "Output result of first input divided by second input"
+ annotation (Placement(transformation(extent={{-40,-120},{-20,-100}})));
+ Buildings.Controls.OBC.CDL.Logical.Not not1[nChi] "Logical not"
+ annotation (Placement(transformation(extent={{40,-120},{60,-100}})));
+ Buildings.Controls.OBC.CDL.Logical.MultiAnd mulAnd(final nin=nChi)
+ "Current chillers demand have been lower than 80%"
+ annotation (Placement(transformation(extent={{80,-120},{100,-100}})));
+ Buildings.Controls.OBC.CDL.Logical.Edge edg
+ "Rising edge, output true at the moment when input turns from false to true"
+ annotation (Placement(transformation(extent={{-100,150},{-80,170}})));
+ Buildings.Controls.OBC.CDL.Routing.BooleanScalarReplicator booRep1(
+ final nout=nChi)
+ "Replicate boolean input "
+ annotation (Placement(transformation(extent={{-80,90},{-60,110}})));
+ Buildings.Controls.OBC.CDL.Logical.And and2 "Logical and"
+ annotation (Placement(transformation(extent={{120,40},{140,60}})));
+ Buildings.Controls.OBC.CDL.Logical.And and1 "Logical and"
+ annotation (Placement(transformation(extent={{-100,-10},{-80,10}})));
+ Buildings.Controls.OBC.CDL.Continuous.Switch swi1
+ "Minimum cycling operative partial load ratio"
+ annotation (Placement(transformation(extent={{-40,-10},{-20,10}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant con1(
+ final k=0) "Constant zero"
+ annotation (Placement(transformation(extent={{-100,-40},{-80,-20}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant con2(
+ final k=chiDemRedFac)
+ "Demand reducing factor of current operating chillers"
+ annotation (Placement(transformation(extent={{-40,20},{-20,40}})));
+ Buildings.Controls.OBC.CDL.Continuous.Max max "Maximum value of two real inputs"
+ annotation (Placement(transformation(extent={{0,10},{20,30}})));
+ Buildings.Controls.OBC.CDL.Routing.RealScalarReplicator reaRep(final nout=nChi)
+ "Replicate real input"
+ annotation (Placement(transformation(extent={{60,10},{80,30}})));
+ Buildings.Controls.OBC.CDL.Continuous.Multiply pro[nChi]
+ "Percentage of the current load"
+ annotation (Placement(transformation(extent={{80,120},{100,140}})));
+ Buildings.Controls.OBC.CDL.Continuous.AddParameter addPar[nChi](
+ final p=fill(1e-6, nChi))
+ "Add a small value to avoid potentially zero denominator"
+ annotation (Placement(transformation(extent={{60,-30},{80,-10}})));
+ Buildings.Controls.OBC.CDL.Logical.Timer tim(
+ final t=holChiDemTim)
+ "Check if the demand limit has been 5 minutes"
+ annotation (Placement(transformation(extent={{-40,-80},{-20,-60}})));
+ Buildings.Controls.OBC.CDL.Logical.Or or2 "Logical or"
+ annotation (Placement(transformation(extent={{120,-80},{140,-60}})));
+
+equation
+ connect(booRep.y, triSam.trigger)
+ annotation (Line(points={{-38,160},{-20,160},{-20,110},{10,110},{10,118}},
+ color={255,0,255}));
+ connect(uChiLoa, triSam.u)
+ annotation (Line(points={{-180,130},{-2,130}}, color={0,0,127}));
+ connect(uChiLoa, swi4.u3)
+ annotation (Line(points={{-180,130},{-140,130},{-140,82},{118,82}}, color={0,0,127}));
+ connect(uChi, swi.u2)
+ annotation (Line(points={{-180,-110},{-82,-110}}, color={255,0,255}));
+ connect(con.y, swi.u3)
+ annotation (Line(points={{-118,-160},{-100,-160},{-100,-118},{-82,-118}},
+ color={0,0,127}));
+ connect(swi.y, div.u2)
+ annotation (Line(points={{-58,-110},{-50,-110},{-50,-116},{-42,-116}},
+ color={0,0,127}));
+ connect(uChiLoa, div.u1)
+ annotation (Line(points={{-180,130},{-140,130},{-140,-80},{-50,-80},
+ {-50,-104},{-42,-104}}, color={0,0,127}));
+ connect(div.y, hys.u)
+ annotation (Line(points={{-18,-110},{-2,-110}}, color={0,0,127}));
+ connect(hys.y, not1.u)
+ annotation (Line(points={{22,-110},{38,-110}}, color={255,0,255}));
+ connect(not1.y, mulAnd.u)
+ annotation (Line(points={{62,-110},{78,-110}}, color={255,0,255}));
+ connect(swi4.y,yChiDem)
+ annotation (Line(points={{142,90},{180,90}}, color={0,0,127}));
+ connect(uDemLim, edg.u)
+ annotation (Line(points={{-180,160},{-102,160}}, color={255,0,255}));
+ connect(edg.y, booRep.u)
+ annotation (Line(points={{-78,160},{-62,160}}, color={255,0,255}));
+ connect(uDemLim, booRep1.u)
+ annotation (Line(points={{-180,160},{-120,160},{-120,100},{-82,100}},
+ color={255,0,255}));
+ connect(booRep1.y, swi4.u2)
+ annotation (Line(points={{-58,100},{-40,100},{-40,90},{118,90}},
+ color={255,0,255}));
+ connect(uDemLim, and2.u1)
+ annotation (Line(points={{-180,160},{-120,160},{-120,50},{118,50}},
+ color={255,0,255}));
+ connect(and2.y, yChiDemRed)
+ annotation (Line(points={{142,50},{180,50}}, color={255,0,255}));
+ connect(uStaDow, and1.u1)
+ annotation (Line(points={{-180,0},{-102,0}}, color={255,0,255}));
+ connect(uOnOff, and1.u2)
+ annotation (Line(points={{-180,-40},{-130,-40},{-130,-8},{-102,-8}},
+ color={255,0,255}));
+ connect(yOpeParLoaRatMin, swi1.u1)
+ annotation (Line(points={{-180,40},{-60,40},{-60,8},{-42,8}},
+ color={0,0,127}));
+ connect(and1.y, swi1.u2)
+ annotation (Line(points={{-78,0},{-42,0}}, color={255,0,255}));
+ connect(con1.y, swi1.u3)
+ annotation (Line(points={{-78,-30},{-60,-30},{-60,-8},{-42,-8}},
+ color={0,0,127}));
+ connect(swi1.y, max.u2)
+ annotation (Line(points={{-18,0},{-10,0},{-10,14},{-2,14}}, color={0,0,127}));
+ connect(con2.y, max.u1)
+ annotation (Line(points={{-18,30},{-10,30},{-10,26},{-2,26}},
+ color={0,0,127}));
+ connect(max.y, reaRep.u)
+ annotation (Line(points={{22,20},{58,20}}, color={0,0,127}));
+ connect(triSam.y, pro.u1)
+ annotation (Line(points={{22,130},{40,130},{40,136},{78,136}},
+ color={0,0,127}));
+ connect(reaRep.y, pro.u2)
+ annotation (Line(points={{82,20},{90,20},{90,100},{60,100},{60,124},{78,124}},
+ color={0,0,127}));
+ connect(pro.y, swi4.u1)
+ annotation (Line(points={{102,130},{110,130},{110,98},{118,98}},
+ color={0,0,127}));
+ connect(triSam.y, addPar.u)
+ annotation (Line(points={{22,130},{40,130},{40,-20},{58,-20}},
+ color={0,0,127}));
+ connect(addPar.y, swi.u1)
+ annotation (Line(points={{82,-20},{100,-20},{100,-52},{-100,-52},{-100,-102},
+ {-82,-102}}, color={0,0,127}));
+ connect(uDemLim, tim.u)
+ annotation (Line(points={{-180,160},{-120,160},{-120,-70},{-42,-70}},
+ color={255,0,255}));
+ connect(mulAnd.y, or2.u2)
+ annotation (Line(points={{102,-110},{110,-110},{110,-78},{118,-78}},
+ color={255,0,255}));
+ connect(or2.y, and2.u2)
+ annotation (Line(points={{142,-70},{150,-70},{150,0},{100,0},{100,42},
+ {118,42}}, color={255,0,255}));
+ connect(tim.passed, or2.u1)
+ annotation (Line(points={{-18,-78},{40,-78},{40,-70},{118,-70}},
+ color={255,0,255}));
+
+annotation (
+ defaultComponentName="chiDemRed",
+ Icon(coordinateSystem(extent={{-100,-100},{100,100}}),
+ graphics={
+ Rectangle(
+ extent={{-100,-100},{100,100}},
+ lineColor={0,0,127},
+ fillColor={255,255,255},
+ fillPattern=FillPattern.Solid),
+ Text(
+ extent={{-120,146},{100,108}},
+ textColor={0,0,255},
+ textString="%name"),
+ Rectangle(
+ extent={{-60,60},{60,20}},
+ lineColor={200,200,200},
+ fillColor={207,207,207},
+ fillPattern=FillPattern.Solid),
+ Rectangle(
+ extent={{-52,20},{-40,0}},
+ lineColor={200,200,200},
+ fillColor={207,207,207},
+ fillPattern=FillPattern.Solid),
+ Rectangle(
+ extent={{40,20},{52,0}},
+ lineColor={200,200,200},
+ fillColor={207,207,207},
+ fillPattern=FillPattern.Solid),
+ Rectangle(
+ extent={{-60,0},{60,-80}},
+ lineColor={200,200,200},
+ fillColor={207,207,207},
+ fillPattern=FillPattern.Solid),
+ Text(
+ extent={{-15,9.5},{15,-9.5}},
+ textColor={0,0,127},
+ pattern=LinePattern.Dash,
+ origin={-83,49.5},
+ rotation=0,
+ textString="uChiLoa"),
+ Text(
+ extent={{-98,98},{-66,86}},
+ textColor={255,0,255},
+ pattern=LinePattern.Dash,
+ textString="uDemLim"),
+ Text(
+ extent={{-18,6.5},{18,-6.5}},
+ textColor={0,0,127},
+ pattern=LinePattern.Dash,
+ origin={78,42.5},
+ rotation=0,
+ textString="yChiDem"),
+ Text(
+ extent={{46,-34},{96,-46}},
+ textColor={255,0,255},
+ pattern=LinePattern.Dash,
+ textString="yChiDemRed"),
+ Text(
+ extent={{-100,-84},{-76,-94}},
+ textColor={255,0,255},
+ pattern=LinePattern.Dash,
+ textString="uChi"),
+ Text(
+ extent={{-98,-42},{-74,-56}},
+ textColor={255,0,255},
+ pattern=LinePattern.Dash,
+ textString="uOnOff"),
+ Text(
+ extent={{-98,-12},{-64,-28}},
+ textColor={255,0,255},
+ pattern=LinePattern.Dash,
+ textString="uStaDow"),
+ Text(
+ extent={{-17,9.5},{17,-9.5}},
+ textColor={0,0,127},
+ pattern=LinePattern.Dash,
+ origin={-81,11.5},
+ rotation=0,
+ textString="yOpeParLoaRatMin")}),
+ Diagram(coordinateSystem(preserveAspectRatio=false,
+ extent={{-160,-180},{160,180}})),
+ Documentation(info="
+
+Block that reduces demand of current operating chillers when there is a stage-up
+command, according to ASHRAE RP-1711 Advanced Sequences of Operation for
+HVAC Systems Phase II – Central Plants and Hydronic Systems (Draft on March 23, 2020),
+section 5.2.4.16, item 1 which specifies how to start the stage-up
+process of the current operating chillers; and section 5.2.4.17, item 1.a which specifies
+how to start the stage-down process of the current operating chiller when the
+stage-down process requires one chiller off and another chiller on.
+
+
+When there is a stage-up command,
+
+
+-
+Command operating chillers to reduce demand to
chiDemRedFac
of
+their current load, e.g. 75%.
+
+-
+Wait until actual demand < 80% of current load up to a maximum of
+
holChiDemTim
(e.g. 5 minutes) before proceeding.
+
+
+
+When there is a stage-down command (uStaDow=true
) and the process
+requires a smaller chiller being enabled and a larger chiller being disabled
+(uOnOff=true
),
+
+
+-
+Command operating chillers to reduce demand to
chiDemRedFac
of
+their current load, e.g. 75% or a percentage equal to current stage
+minimum cycling operative partial load ratio yOpeParLoaRatMin
, whichever is
+greater.
+
+-
+Wait until actual demand < 80% of current load up to a maximum of
+
holChiDemTim
(e.g. 5 minutes) before proceeding.
+
+
+",
+revisions="
+
+-
+September 17, 2019, by Jianjun Hu:
+First implementation.
+
+
+"));
+end ReduceDemand;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/Processes/Subsequences/ResetMinBypass.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/Processes/Subsequences/ResetMinBypass.mo
new file mode 100644
index 00000000000..ad5c2b0e723
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/Processes/Subsequences/ResetMinBypass.mo
@@ -0,0 +1,207 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.Processes.Subsequences;
+block ResetMinBypass
+ "Sequence for minimum chilled water flow setpoint reset"
+
+ parameter Real aftByPasSetTim(
+ final unit="s",
+ final quantity="Time",
+ displayUnit="h") = 60
+ "Time after setpoint achieved";
+ parameter Real relFloDif=0.05
+ "Relative error to the setpoint for checking if it has achieved flow rate setpoint"
+ annotation (Dialog(tab="Advanced"));
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uUpsDevSta
+ "Status of resetting status of device before reset minimum flow setpoint"
+ annotation (Placement(transformation(extent={{-200,60},{-160,100}}),
+ iconTransformation(extent={{-140,60},{-100,100}})));
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput chaPro
+ "Indicate if there is stage change"
+ annotation (Placement(transformation(extent={{-200,20},{-160,60}}),
+ iconTransformation(extent={{-140,20},{-100,60}})));
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput VChiWat_flow(
+ final min=0,
+ final unit="m3/s",
+ final quantity="VolumeFlowRate") "Measured chilled water flow rate"
+ annotation (Placement(transformation(extent={{-200,-40},{-160,0}}),
+ iconTransformation(extent={{-140,-60},{-100,-20}})));
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput VMinChiWat_setpoint(
+ final min=0,
+ final unit="m3/s",
+ final quantity="VolumeFlowRate") "Minimum chiller water flow setpoint"
+ annotation (Placement(transformation(extent={{-200,-100},{-160,-60}}),
+ iconTransformation(extent={{-140,-100},{-100,-60}})));
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanOutput yMinBypRes
+ "True: minimum chilled water flow bypass setpoint has been resetted successfully"
+ annotation (Placement(transformation(extent={{160,60},{200,100}}),
+ iconTransformation(extent={{100,-20},{140,20}})));
+
+protected
+ Buildings.Controls.OBC.CDL.Continuous.Hysteresis hys(
+ final uLow=relFloDif - 0.01,
+ final uHigh=relFloDif + 0.01)
+ "Check if chiller water flow rate is different from its setpoint"
+ annotation (Placement(transformation(extent={{-60,-70},{-40,-50}})));
+ Buildings.Controls.OBC.CDL.Logical.And3 and1 "Logical and"
+ annotation (Placement(transformation(extent={{120,70},{140,90}})));
+ Buildings.Controls.OBC.CDL.Logical.Timer tim(
+ final t=aftByPasSetTim)
+ "Check if it has been over threshold time after new setpoint achieved"
+ annotation (Placement(transformation(extent={{40,-30},{60,-10}})));
+ Buildings.Controls.OBC.CDL.Logical.And and2 "Logical and"
+ annotation (Placement(transformation(extent={{-80,70},{-60,90}})));
+ Buildings.Controls.OBC.CDL.Logical.Not not1 "Logical not"
+ annotation (Placement(transformation(extent={{-120,10},{-100,30}})));
+ Buildings.Controls.OBC.CDL.Logical.Latch lat
+ "Logical latch, maintain ON signal until condition changes"
+ annotation (Placement(transformation(extent={{80,30},{100,50}})));
+ Buildings.Controls.OBC.CDL.Continuous.Divide div
+ "Flow rate error divided by its setpoint"
+ annotation (Placement(transformation(extent={{-100,-70},{-80,-50}})));
+ Buildings.Controls.OBC.CDL.Continuous.AddParameter addPar(
+ final p=1e-6)
+ "Add a small positive to avoid zero output"
+ annotation (Placement(transformation(extent={{-140,-90},{-120,-70}})));
+ Buildings.Controls.OBC.CDL.Logical.Edge edg1
+ "Rising edge, output true at the moment when input turns from false to true"
+ annotation (Placement(transformation(extent={{-80,10},{-60,30}})));
+ Buildings.Controls.OBC.CDL.Logical.And and3 "Logical and"
+ annotation (Placement(transformation(extent={{0,-30},{20,-10}})));
+ Buildings.Controls.OBC.CDL.Logical.Edge edg2
+ "Rising edge, output true at the moment when input turns from false to true"
+ annotation (Placement(transformation(extent={{40,30},{60,50}})));
+ Buildings.Controls.OBC.CDL.Continuous.Abs abs "Absolute value"
+ annotation (Placement(transformation(extent={{-80,-30},{-60,-10}})));
+ Buildings.Controls.OBC.CDL.Continuous.Subtract floDif
+ "Checkout the flow rate difference"
+ annotation (Placement(transformation(extent={{-120,-30},{-100,-10}})));
+ Buildings.Controls.OBC.CDL.Logical.Not not2 "Logical not"
+ annotation (Placement(transformation(extent={{-20,-70},{0,-50}})));
+
+equation
+ connect(uUpsDevSta, and2.u1)
+ annotation (Line(points={{-180,80},{-82,80}}, color={255,0,255}));
+ connect(chaPro, and2.u2)
+ annotation (Line(points={{-180,40},{-140,40},{-140,72},{-82,72}},
+ color={255,0,255}));
+ connect(and2.y, and1.u1)
+ annotation (Line(points={{-58,80},{-10,80},{-10,88},{118,88}},
+ color={255,0,255}));
+ connect(and1.y,yMinBypRes)
+ annotation (Line(points={{142,80},{180,80}}, color={255,0,255}));
+ connect(chaPro, not1.u)
+ annotation (Line(points={{-180,40},{-140,40},{-140,20},{-122,20}},
+ color={255,0,255}));
+ connect(lat.y, and1.u2)
+ annotation (Line(points={{102,40},{108,40},{108,80},{118,80}},
+ color={255,0,255}));
+ connect(VMinChiWat_setpoint, addPar.u)
+ annotation (Line(points={{-180,-80},{-142,-80}}, color={0,0,127}));
+ connect(div.y, hys.u)
+ annotation (Line(points={{-78,-60},{-62,-60}}, color={0,0,127}));
+ connect(not1.y, edg1.u)
+ annotation (Line(points={{-98,20},{-82,20}}, color={255,0,255}));
+ connect(edg1.y, lat.clr)
+ annotation (Line(points={{-58,20},{70,20},{70,34},{78,34}},
+ color={255,0,255}));
+ connect(and3.y, tim.u)
+ annotation (Line(points={{22,-20},{38,-20}}, color={255,0,255}));
+ connect(addPar.y, div.u2)
+ annotation (Line(points={{-118,-80},{-110,-80},{-110,-66},{-102,-66}},
+ color={0,0,127}));
+ connect(and3.y, edg2.u)
+ annotation (Line(points={{22,-20},{30,-20},{30,40},{38,40}},
+ color={255,0,255}));
+ connect(edg2.y, lat.u)
+ annotation (Line(points={{62,40},{78,40}}, color={255,0,255}));
+ connect(VChiWat_flow, floDif.u1)
+ annotation (Line(points={{-180,-20},{-140,-20},{-140,-14},{-122,-14}}, color={0,0,127}));
+ connect(floDif.y, abs.u)
+ annotation (Line(points={{-98,-20},{-82,-20}}, color={0,0,127}));
+ connect(abs.y, div.u1)
+ annotation (Line(points={{-58,-20},{-40,-20},{-40,-40},{-110,-40},{-110,-54},
+ {-102,-54}}, color={0,0,127}));
+ connect(hys.y, not2.u)
+ annotation (Line(points={{-38,-60},{-22,-60}}, color={255,0,255}));
+ connect(and2.y, and3.u1)
+ annotation (Line(points={{-58,80},{-10,80},{-10,-20},{-2,-20}},
+ color={255,0,255}));
+ connect(not2.y, and3.u2)
+ annotation (Line(points={{2,-60},{10,-60},{10,-40},{-10,-40},{-10,-28},
+ {-2,-28}}, color={255,0,255}));
+ connect(tim.passed, and1.u3)
+ annotation (Line(points={{62,-28},{114,-28},{114,72},{118,72}},
+ color={255,0,255}));
+ connect(VMinChiWat_setpoint, floDif.u2) annotation (Line(points={{-180,-80},{-150,
+ -80},{-150,-26},{-122,-26}}, color={0,0,127}));
+
+annotation (
+ defaultComponentName="minBypRes",
+ Icon(graphics={
+ Rectangle(
+ extent={{-100,-100},{100,100}},
+ lineColor={0,0,127},
+ fillColor={255,255,255},
+ fillPattern=FillPattern.Solid),
+ Text(
+ extent={{-120,146},{100,108}},
+ textColor={0,0,255},
+ textString="%name"),
+ Text(
+ extent={{50,8},{98,-8}},
+ textColor={255,0,255},
+ pattern=LinePattern.Dash,
+ textString="yMinBypRes"),
+ Text(
+ extent={{-98,-32},{-50,-46}},
+ textColor={0,0,127},
+ pattern=LinePattern.Dash,
+ textString="VChiWat_flow"),
+ Text(
+ extent={{-98,-72},{-30,-88}},
+ textColor={0,0,127},
+ pattern=LinePattern.Dash,
+ textString="VMinChiWat_setpoint"),
+ Text(
+ extent={{-98,46},{-66,36}},
+ textColor={255,0,255},
+ pattern=LinePattern.Dash,
+ textString="chaPro"),
+ Text(
+ extent={{-100,100},{100,-100}},
+ textColor={0,0,0},
+ textString="S"),
+ Text(
+ extent={{-98,88},{-52,76}},
+ textColor={255,0,255},
+ pattern=LinePattern.Dash,
+ textString="uUpsDevSta")}),
+ Diagram(coordinateSystem(preserveAspectRatio=false,
+ extent={{-160,-100},{160,100}})),
+ Documentation(info="
+
+Block that generates minimum bypass flow reset status when there is
+stage-change command.
+This development is based on ASHRAE RP-1711 Advanced Sequences of Operation for
+HVAC Systems Phase II – Central Plants and Hydronic Systems (Draft on March 23, 2020),
+section 5.2.4.16, item 2.
+
+
+When there is stage-change command (chaPro
= true) and the upstream
+device has finished its adjustment process (uUpsDevSta
= true),
+like in the stage-up process the operating chillers have reduced the demand,
+check if the minimum chilled water flow rate VChiWat_flow
has achieved
+its new set point VMinChiWat_setpoint
.
+After new setpoint is achieved, wait for 1 minute (byPasSetTim
) to
+allow loop to stabilize. It will then set yMinBypRes
to true.
+
+",
+revisions="
+
+-
+September 17, 2019, by Jianjun Hu:
+First implementation.
+
+
+"));
+end ResetMinBypass;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/Processes/Subsequences/UpEnd.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/Processes/Subsequences/UpEnd.mo
new file mode 100644
index 00000000000..ef62cde338f
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/Processes/Subsequences/UpEnd.mo
@@ -0,0 +1,723 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.Processes.Subsequences;
+block UpEnd "Sequence for ending stage-up process"
+
+ parameter Integer nChi=2 "Total number of chillers";
+ parameter Boolean have_parChi=true
+ "True: the plant has parallel chillers";
+
+ parameter Real proOnTim(
+ final unit="s",
+ final quantity="Time",
+ displayUnit="h") = 300
+ "Threshold time to check if newly enabled chiller being operated by more than 5 minutes"
+ annotation (Dialog(group="Enable next chiller"));
+ parameter Real chaChiWatIsoTim(
+ final unit="s",
+ final quantity="Time",
+ displayUnit="h")
+ "Time to slowly change isolation valve, should be determined in the field"
+ annotation (Dialog(group="Chilled water isolation valve"));
+ parameter Real byPasSetTim(
+ final unit="s",
+ final quantity="Time",
+ displayUnit="h")
+ "Time to slowly reset minimum bypass flow"
+ annotation (Dialog(group="Reset CHW minimum flow setpoint"));
+ parameter Real minFloSet[nChi](
+ final unit=fill("m3/s", nChi),
+ final quantity=fill("VolumeFlowRate", nChi),
+ displayUnit=fill("m3/s", nChi))
+ "Minimum chilled water flow through each chiller"
+ annotation (Dialog(group="Reset CHW minimum flow setpoint"));
+ parameter Real maxFloSet[nChi](
+ final unit=fill("m3/s", nChi),
+ final quantity=fill("VolumeFlowRate", nChi),
+ displayUnit=fill("m3/s", nChi))
+ "Maximum chilled water flow through each chiller"
+ annotation (Dialog(group="Reset CHW minimum flow setpoint"));
+ parameter Real aftByPasSetTim(
+ final unit="s",
+ final quantity="Time",
+ displayUnit="h")=60
+ "Time after minimum bypass flow being resetted to new setpoint"
+ annotation (Dialog(group="Reset bypass"));
+ parameter Real relFloDif=0.05
+ "Relative error to the setpoint for checking if it has achieved flow rate setpoint"
+ annotation (Dialog(tab="Advanced", group="Reset bypass"));
+
+ Buildings.Controls.OBC.CDL.Interfaces.IntegerInput nexEnaChi
+ "Index of next enabling chiller"
+ annotation (Placement(transformation(extent={{-240,220},{-200,260}}),
+ iconTransformation(extent={{-140,100},{-100,140}})));
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uStaUp "Stage-up command"
+ annotation (Placement(transformation(extent={{-240,190},{-200,230}}),
+ iconTransformation(extent={{-140,80},{-100,120}})));
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uEnaChiWatIsoVal
+ "Status of chiller chilled water isolation valve control: true=enabled valve is fully open"
+ annotation (Placement(transformation(extent={{-240,160},{-200,200}}),
+ iconTransformation(extent={{-140,60},{-100,100}})));
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uChi[nChi]
+ "Chiller status: true=ON"
+ annotation (Placement(transformation(extent={{-240,130},{-200,170}}),
+ iconTransformation(extent={{-140,40},{-100,80}})));
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uOnOff
+ "Indicate if the stage require one chiller to be enabled while another is disabled"
+ annotation (Placement(transformation(extent={{-240,90},{-200,130}}),
+ iconTransformation(extent={{-140,20},{-100,60}})));
+ Buildings.Controls.OBC.CDL.Interfaces.IntegerInput nexDisChi
+ "Next disabling chiller when there is any stage up that need one chiller on and another off"
+ annotation (Placement(transformation(extent={{-240,50},{-200,90}}),
+ iconTransformation(extent={{-140,0},{-100,40}})));
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uChiWatReq[nChi]
+ "Chilled water request status for each chiller"
+ annotation (Placement(transformation(extent={{-240,0},{-200,40}}),
+ iconTransformation(extent={{-140,-20},{-100,20}})));
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput uChiWatIsoVal[nChi](
+ final unit=fill("1", nChi),
+ final min=fill(0, nChi),
+ final max=fill(1, nChi)) "Chilled water isolation valve position"
+ annotation (Placement(transformation(extent={{-240,-30},{-200,10}}),
+ iconTransformation(extent={{-140,-40},{-100,0}})));
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uConWatReq[nChi]
+ "Condenser water request status for each chiller"
+ annotation (Placement(transformation(extent={{-240,-90},{-200,-50}}),
+ iconTransformation(extent={{-140,-60},{-100,-20}})));
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uChiHeaCon[nChi]
+ "Chillers head pressure control status"
+ annotation (Placement(transformation(extent={{-240,-120},{-200,-80}}),
+ iconTransformation(extent={{-140,-80},{-100,-40}})));
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput VChiWat_flow(
+ final unit="m3/s")
+ "Measured chilled water flow rate"
+ annotation (Placement(transformation(extent={{-240,-190},{-200,-150}}),
+ iconTransformation(extent={{-140,-100},{-100,-60}})));
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput VMinChiWat_setpoint(
+ final unit="m3/s")
+ "Minimum chiller water flow setpoint calculated from upstream process"
+ annotation (Placement(transformation(extent={{-240,-220},{-200,-180}}),
+ iconTransformation(extent={{-140,-120},{-100,-80}})));
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanOutput yChi[nChi]
+ "Chiller enabling status"
+ annotation (Placement(transformation(extent={{200,200},{240,240}}),
+ iconTransformation(extent={{100,70},{140,110}})));
+ Buildings.Controls.OBC.CDL.Interfaces.RealOutput yChiWatIsoVal[nChi](
+ final min=fill(0, nChi),
+ final max=fill(1, nChi),
+ final unit=fill("1", nChi))
+ "Chiller chilled water isolation valve position"
+ annotation (Placement(transformation(extent={{200,40},{240,80}}),
+ iconTransformation(extent={{100,30},{140,70}})));
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanOutput yChiHeaCon[nChi]
+ "Chiller head pressure control enabling status"
+ annotation (Placement(transformation(extent={{200,-70},{240,-30}}),
+ iconTransformation(extent={{100,-10},{140,30}})));
+ Buildings.Controls.OBC.CDL.Interfaces.RealOutput yChiWatMinSet(
+ final unit="m3/s") "Chilled water minimum flow setpoint"
+ annotation (Placement(transformation(extent={{200,-130},{240,-90}}),
+ iconTransformation(extent={{100,-50},{140,-10}})));
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanOutput yEndSta
+ "Flag to indicate if the staging process is finished"
+ annotation (Placement(transformation(extent={{200,-210},{240,-170}}),
+ iconTransformation(extent={{100,-90},{140,-50}})));
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanOutput endStaTri
+ "Staging end trigger"
+ annotation (Placement(transformation(extent={{200,-250},{240,-210}}),
+ iconTransformation(extent={{100,-110},{140,-70}})));
+
+protected
+ parameter Integer chiInd[nChi]={i for i in 1:nChi}
+ "Chiller index, {1,2,...,n}";
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.Processes.Subsequences.EnableChiller
+ enaChi(
+ final nChi=nChi,
+ final proOnTim=proOnTim) "Enable next chiller"
+ annotation (Placement(transformation(extent={{-100,180},{-80,200}})));
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.Processes.Subsequences.CHWIsoVal
+ disChiIsoVal(
+ final nChi=nChi,
+ final chaChiWatIsoTim=chaChiWatIsoTim,
+ final iniValPos=1,
+ final endValPos=0)
+ "Disable isolation valve of the chiller being disabled"
+ annotation (Placement(transformation(extent={{60,-20},{80,0}})));
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.Processes.Subsequences.HeadControl
+ disHeaCon(
+ final nChi=nChi,
+ final thrTimEnb=0,
+ final waiTim=0,
+ final heaStaCha=false)
+ "Disable head pressure control of the chiller being disabled"
+ annotation (Placement(transformation(extent={{40,-80},{60,-60}})));
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.MinimumFlowBypass.FlowSetpoint
+ minChiWatSet(
+ final nChi=nChi,
+ final have_parChi=have_parChi,
+ final byPasSetTim=byPasSetTim,
+ final minFloSet=minFloSet,
+ final maxFloSet=maxFloSet) "Reset minimum chilled water flow setpoint"
+ annotation (Placement(transformation(extent={{40,-140},{60,-120}})));
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.Processes.Subsequences.ResetMinBypass
+ minBypSet(
+ final aftByPasSetTim=aftByPasSetTim,
+ final relFloDif=relFloDif)
+ "Check if minimum bypass flow has been resetted"
+ annotation (Placement(transformation(extent={{40,-190},{60,-170}})));
+ Buildings.Controls.OBC.CDL.Logical.And and4 "Logical and"
+ annotation (Placement(transformation(extent={{0,30},{20,50}})));
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant con2(
+ final k=true) "True constant"
+ annotation (Placement(transformation(extent={{-80,-50},{-60,-30}})));
+ Buildings.Controls.OBC.CDL.Logical.And and5 "Logical and"
+ annotation (Placement(transformation(extent={{-20,-80},{0,-60}})));
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant con3(final k=false)
+ "False constant"
+ annotation (Placement(transformation(extent={{-160,-160},{-140,-140}})));
+ Buildings.Controls.OBC.CDL.Logical.Not not2 "Logical not"
+ annotation (Placement(transformation(extent={{-160,100},{-140,120}})));
+ Buildings.Controls.OBC.CDL.Routing.BooleanExtractor curDisChi(final nin=nChi)
+ "Current disabling chiller"
+ annotation (Placement(transformation(extent={{-160,10},{-140,30}})));
+ Buildings.Controls.OBC.CDL.Routing.BooleanExtractor curDisChi1(final nin=nChi)
+ "Current disabling chiller"
+ annotation (Placement(transformation(extent={{-160,-80},{-140,-60}})));
+ Buildings.Controls.OBC.CDL.Logical.Switch logSwi3[nChi]
+ "Logical switch"
+ annotation (Placement(transformation(extent={{160,-60},{180,-40}})));
+ Buildings.Controls.OBC.CDL.Routing.BooleanScalarReplicator booRep4(final nout=nChi)
+ "Replicate boolean input"
+ annotation (Placement(transformation(extent={{-80,50},{-60,70}})));
+ Buildings.Controls.OBC.CDL.Continuous.Switch chiWatIso[nChi]
+ "Chilled water isolation valve"
+ annotation (Placement(transformation(extent={{160,50},{180,70}})));
+ Buildings.Controls.OBC.CDL.Logical.Switch logSwi4
+ "Logical switch"
+ annotation (Placement(transformation(extent={{160,-170},{180,-150}})));
+ Buildings.Controls.OBC.CDL.Continuous.Switch chiWatByp
+ "Chilled water bypass flow setpoint"
+ annotation (Placement(transformation(extent={{160,-120},{180,-100}})));
+ Buildings.Controls.OBC.CDL.Logical.Switch logSwi5 "Logical switch"
+ annotation (Placement(transformation(extent={{60,-240},{80,-220}})));
+ Buildings.Controls.OBC.CDL.Continuous.Switch chiWatByp1
+ "Chilled water bypass flow setpoint"
+ annotation (Placement(transformation(extent={{100,-140},{120,-120}})));
+ Buildings.Controls.OBC.CDL.Logical.Latch lat1
+ "Maintain ON signal when the chiller has been proven on"
+ annotation (Placement(transformation(extent={{-60,160},{-40,180}})));
+ Buildings.Controls.OBC.CDL.Logical.Pre pre
+ "Break algebraic loop"
+ annotation (Placement(transformation(extent={{120,-240},{140,-220}})));
+ Buildings.Controls.OBC.CDL.Logical.Edge edg1
+ "Rising edge, output true at the moment when input turns from false to true"
+ annotation (Placement(transformation(extent={{160,-240},{180,-220}})));
+ Buildings.Controls.OBC.CDL.Logical.Latch lat2
+ "Maintain ON signal when the chilled water isolation valve has been closed"
+ annotation (Placement(transformation(extent={{120,-30},{140,-10}})));
+ Buildings.Controls.OBC.CDL.Logical.Latch lat3
+ "Maintain ON signal when the chiller head pressure control has been disabled"
+ annotation (Placement(transformation(extent={{100,-90},{120,-70}})));
+ Buildings.Controls.OBC.CDL.Logical.Not not1
+ "Check if the disabled chiller is not requiring chilled water"
+ annotation (Placement(transformation(extent={{-120,10},{-100,30}})));
+ Buildings.Controls.OBC.CDL.Logical.Not not3
+ "Check if the disabled chiller is not requiring condenser water"
+ annotation (Placement(transformation(extent={{-120,-80},{-100,-60}})));
+ Buildings.Controls.OBC.CDL.Logical.And and1 "Logical and"
+ annotation (Placement(transformation(extent={{-80,18},{-60,38}})));
+ Buildings.Controls.OBC.CDL.Logical.And and3 "Logical and"
+ annotation (Placement(transformation(extent={{-78,-80},{-58,-60}})));
+ Buildings.Controls.OBC.CDL.Integers.LessEqualThreshold intLesEquThr(
+ final t=nChi) "Check if index is in the range"
+ annotation (Placement(transformation(extent={{0,90},{20,110}})));
+ Buildings.Controls.OBC.CDL.Integers.GreaterEqualThreshold intGreEquThr(
+ final t=1) "Check if index is in the range"
+ annotation (Placement(transformation(extent={{0,140},{20,160}})));
+ Buildings.Controls.OBC.CDL.Logical.And and2 "Check if index is in the range"
+ annotation (Placement(transformation(extent={{40,140},{60,160}})));
+ Buildings.Controls.OBC.CDL.Integers.Switch intSwi "Valid index"
+ annotation (Placement(transformation(extent={{100,110},{120,130}})));
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant conInt(
+ final k=1) "Dummy index so the extractor will not have out of range index"
+ annotation (Placement(transformation(extent={{40,90},{60,110}})));
+equation
+ connect(uOnOff, not2.u)
+ annotation (Line(points={{-220,110},{-162,110}}, color={255,0,255}));
+ connect(nexDisChi, disChiIsoVal.nexChaChi)
+ annotation (Line(points={{-220,70},{-180,70},{-180,-2},{58,-2}},
+ color={255,127,0}));
+ connect(uChiWatIsoVal,disChiIsoVal. uChiWatIsoVal)
+ annotation (Line(points={{-220,-10},{50,-10},{50,-5},{58,-5}},
+ color={0,0,127}));
+ connect(and4.y,disChiIsoVal.uUpsDevSta)
+ annotation (Line(points={{22,40},{30,40},{30,-15},{58,-15}}, color={255,0,255}));
+ connect(con2.y,disChiIsoVal. chaPro)
+ annotation (Line(points={{-58,-40},{10,-40},{10,-18},{58,-18}},
+ color={255,0,255}));
+ connect(con2.y, disHeaCon.chaPro)
+ annotation (Line(points={{-58,-40},{10,-40},{10,-70},{38,-70}}, color={255,0,255}));
+ connect(and5.y, disHeaCon.uUpsDevSta)
+ annotation (Line(points={{2,-70},{20,-70},{20,-66},{38,-66}},
+ color={255,0,255}));
+ connect(nexDisChi, disHeaCon.nexChaChi)
+ annotation (Line(points={{-220,70},{-180,70},{-180,-90},{20,-90},{20,-74},
+ {38,-74}}, color={255,127,0}));
+ connect(disHeaCon.uChiHeaCon, uChiHeaCon)
+ annotation (Line(points={{38,-78},{30,-78},{30,-100},{-220,-100}},
+ color={255,0,255}));
+ connect(con3.y, minChiWatSet.uStaDow)
+ annotation (Line(points={{-138,-150},{-20,-150},{-20,-139},{38,-139}},
+ color={255,0,255}));
+ connect(con2.y, minBypSet.chaPro)
+ annotation (Line(points={{-58,-40},{10,-40},{10,-176},{38,-176}},
+ color={255,0,255}));
+ connect(minBypSet.VChiWat_flow, VChiWat_flow)
+ annotation (Line(points={{38,-184},{-20,-184},{-20,-170},{-220,-170}},
+ color={0,0,127}));
+ connect(not2.y, booRep4.u)
+ annotation (Line(points={{-138,110},{-130,110},{-130,60},{-82,60}},
+ color={255,0,255}));
+ connect(uChiHeaCon, logSwi3.u1)
+ annotation (Line(points={{-220,-100},{130,-100},{130,-42},{158,-42}},
+ color={255,0,255}));
+ connect(disHeaCon.yChiHeaCon, logSwi3.u3)
+ annotation (Line(points={{62,-76},{80,-76},{80,-58},{158,-58}},
+ color={255,0,255}));
+ connect(logSwi3.y, yChiHeaCon)
+ annotation (Line(points={{182,-50},{220,-50}}, color={255,0,255}));
+ connect(booRep4.y, logSwi3.u2)
+ annotation (Line(points={{-58,60},{40,60},{40,-50},{158,-50}},
+ color={255,0,255}));
+ connect(booRep4.y, chiWatIso.u2)
+ annotation (Line(points={{-58,60},{158,60}}, color={255,0,255}));
+ connect(uChiWatIsoVal, chiWatIso.u1)
+ annotation (Line(points={{-220,-10},{50,-10},{50,68},{158,68}},
+ color={0,0,127}));
+ connect(disChiIsoVal.yChiWatIsoVal, chiWatIso.u3)
+ annotation (Line(points={{82,-16},{90,-16},{90,52},{158,52}},
+ color={0,0,127}));
+ connect(chiWatIso.y, yChiWatIsoVal)
+ annotation (Line(points={{182,60},{220,60}}, color={0,0,127}));
+ connect(not2.y, logSwi4.u2)
+ annotation (Line(points={{-138,110},{-130,110},{-130,-160},{158,-160}},
+ color={255,0,255}));
+ connect(con2.y, logSwi4.u1)
+ annotation (Line(points={{-58,-40},{10,-40},{10,-152},{158,-152}},
+ color={255,0,255}));
+ connect(minBypSet.yMinBypRes, logSwi4.u3)
+ annotation (Line(points={{62,-180},{120,-180},{120,-168},{158,-168}},
+ color={255,0,255}));
+ connect(not2.y, chiWatByp.u2)
+ annotation (Line(points={{-138,110},{-130,110},{-130,-110},{158,-110}},
+ color={255,0,255}));
+ connect(chiWatByp.y,yChiWatMinSet)
+ annotation (Line(points={{182,-110},{220,-110}}, color={0,0,127}));
+ connect(not2.y, logSwi5.u2)
+ annotation (Line(points={{-138,110},{-130,110},{-130,-230},{58,-230}},
+ color={255,0,255}));
+ connect(logSwi4.y, logSwi5.u3)
+ annotation (Line(points={{182,-160},{190,-160},{190,-210},{40,-210},
+ {40,-238},{58,-238}}, color={255,0,255}));
+ connect(logSwi5.y, yEndSta)
+ annotation (Line(points={{82,-230},{100,-230},{100,-190},{220,-190}},
+ color={255,0,255}));
+ connect(nexEnaChi, enaChi.nexEnaChi)
+ annotation (Line(points={{-220,240},{-126,240},{-126,199},{-102,199}},
+ color={255,127,0}));
+ connect(uStaUp, enaChi.uStaUp)
+ annotation (Line(points={{-220,210},{-140,210},{-140,196},{-102,196}},
+ color={255,0,255}));
+ connect(uEnaChiWatIsoVal, enaChi.uEnaChiWatIsoVal)
+ annotation (Line(points={{-220,180},{-160,180},{-160,192},{-102,192}},
+ color={255,0,255}));
+ connect(uChi, enaChi.uChi)
+ annotation (Line(points={{-220,150},{-140,150},{-140,188},{-102,188}},
+ color={255,0,255}));
+ connect(uOnOff, enaChi.uOnOff)
+ annotation (Line(points={{-220,110},{-190,110},{-190,184},{-102,184}},
+ color={255,0,255}));
+ connect(nexDisChi, enaChi.nexDisChi)
+ annotation (Line(points={{-220,70},{-110,70},{-110,181},{-102,181}},
+ color={255,127,0}));
+ connect(enaChi.yChi, yChi)
+ annotation (Line(points={{-78,198},{-40,198},{-40,220},{220,220}},
+ color={255,0,255}));
+ connect(uChi, minChiWatSet.uChi)
+ annotation (Line(points={{-220,150},{-170,150},{-170,-126},{38,-126}},
+ color={255,0,255}));
+ connect(nexDisChi, minChiWatSet.nexDisChi)
+ annotation (Line(points={{-220,70},{-180,70},{-180,-131},{38,-131}},
+ color={255,127,0}));
+ connect(uOnOff, minChiWatSet.uOnOff)
+ annotation (Line(points={{-220,110},{-190,110},{-190,-137},{38,-137}},
+ color={255,0,255}));
+ connect(minChiWatSet.yChiWatMinFloSet, minBypSet.VMinChiWat_setpoint)
+ annotation (Line(points={{62,-130},{70,-130},{70,-146},{30,-146},{30,-188},
+ {38,-188}}, color={0,0,127}));
+ connect(con3.y, minChiWatSet.uUpsDevSta)
+ annotation (Line(points={{-138,-150},{-20,-150},{-20,-123},{38,-123}},
+ color={255,0,255}));
+ connect(minChiWatSet.yChiWatMinFloSet, chiWatByp1.u1)
+ annotation (Line(points={{62,-130},{70,-130},{70,-122},{98,-122}},
+ color={0,0,127}));
+ connect(VMinChiWat_setpoint, chiWatByp1.u3)
+ annotation (Line(points={{-220,-200},{80,-200},{80,-138},{98,-138}},
+ color={0,0,127}));
+ connect(VMinChiWat_setpoint, chiWatByp.u1)
+ annotation (Line(points={{-220,-200},{140,-200},{140,-102},{158,-102}},
+ color={0,0,127}));
+ connect(chiWatByp1.y, chiWatByp.u3)
+ annotation (Line(points={{122,-130},{150,-130},{150,-118},{158,-118}},
+ color={0,0,127}));
+ connect(nexEnaChi, minChiWatSet.nexEnaChi)
+ annotation (Line(points={{-220,240},{-126,240},{-126,-129},{38,-129}},
+ color={255,127,0}));
+ connect(enaChi.yNewChiEna, lat1.u)
+ annotation (Line(points={{-78,182},{-70,182},{-70,170},{-62,170}},
+ color={255,0,255}));
+ connect(lat1.y, and4.u1)
+ annotation (Line(points={{-38,170},{-30,170},{-30,40},{-2,40}},
+ color={255,0,255}));
+ connect(lat1.y, minChiWatSet.uStaUp)
+ annotation (Line(points={{-38,170},{-30,170},{-30,-121},{38,-121}},
+ color={255,0,255}));
+ connect(lat1.y, logSwi5.u1)
+ annotation (Line(points={{-38,170},{-30,170},{-30,-222},{58,-222}},
+ color={255,0,255}));
+ connect(logSwi5.y, pre.u)
+ annotation (Line(points={{82,-230},{118,-230}}, color={255,0,255}));
+ connect(pre.y, edg1.u)
+ annotation (Line(points={{142,-230},{158,-230}}, color={255,0,255}));
+ connect(edg1.y, endStaTri)
+ annotation (Line(points={{182,-230},{220,-230}}, color={255,0,255}));
+ connect(edg1.y, lat1.clr)
+ annotation (Line(points={{182,-230},{190,-230},{190,-210},{-50,-210},{-50,140},
+ {-70,140},{-70,164},{-62,164}}, color={255,0,255}));
+ connect(disChiIsoVal.yEnaChiWatIsoVal, lat2.u)
+ annotation (Line(points={{82,-4},{100,-4},{100,-20},{118,-20}},
+ color={255,0,255}));
+ connect(lat2.y, and5.u2)
+ annotation (Line(points={{142,-20},{160,-20},{160,-34},{-40,-34},{-40,-78},
+ {-22,-78}}, color={255,0,255}));
+ connect(edg1.y, lat2.clr)
+ annotation (Line(points={{182,-230},{190,-230},{190,-250},{-50,-250},
+ {-50,-26},{118,-26}}, color={255,0,255}));
+ connect(disHeaCon.yEnaHeaCon, lat3.u)
+ annotation (Line(points={{62,-64},{90,-64},{90,-80},{98,-80}}, color={255,0,255}));
+ connect(lat3.y, chiWatByp1.u2)
+ annotation (Line(points={{122,-80},{140,-80},{140,-94},{80,-94},{80,-130},
+ {98,-130}}, color={255,0,255}));
+ connect(lat3.y, minChiWatSet.uSubCha)
+ annotation (Line(points={{122,-80},{140,-80},{140,-94},{20,-94},{20,-134},
+ {38,-134}}, color={255,0,255}));
+ connect(lat3.y, minBypSet.uUpsDevSta)
+ annotation (Line(points={{122,-80},{140,-80},{140,-94},{20,-94},{20,-172},
+ {38,-172}}, color={255,0,255}));
+ connect(edg1.y, lat3.clr)
+ annotation (Line(points={{182,-230},{190,-230},{190,-250},{-50,-250},
+ {-50,-86},{98,-86}}, color={255,0,255}));
+ connect(con3.y, disHeaCon.uEnaPla)
+ annotation (Line(points={{-138,-150},{16,-150},{16,-62},{38,-62}},
+ color={255,0,255}));
+ connect(uChiWatReq, curDisChi.u)
+ annotation (Line(points={{-220,20},{-162,20}}, color={255,0,255}));
+ connect(uConWatReq, curDisChi1.u)
+ annotation (Line(points={{-220,-70},{-162,-70}}, color={255,0,255}));
+ connect(curDisChi.y, not1.u)
+ annotation (Line(points={{-138,20},{-122,20}}, color={255,0,255}));
+ connect(curDisChi1.y, not3.u)
+ annotation (Line(points={{-138,-70},{-122,-70}}, color={255,0,255}));
+ connect(nexDisChi, intLesEquThr.u) annotation (Line(points={{-220,70},{-110,70},
+ {-110,100},{-2,100}}, color={255,127,0}));
+ connect(nexDisChi, intGreEquThr.u) annotation (Line(points={{-220,70},{-110,70},
+ {-110,150},{-2,150}}, color={255,127,0}));
+ connect(intGreEquThr.y, and2.u1)
+ annotation (Line(points={{22,150},{38,150}}, color={255,0,255}));
+ connect(intLesEquThr.y, and2.u2) annotation (Line(points={{22,100},{30,100},{30,
+ 142},{38,142}}, color={255,0,255}));
+ connect(and2.y, intSwi.u2) annotation (Line(points={{62,150},{80,150},{80,120},
+ {98,120}}, color={255,0,255}));
+ connect(nexDisChi, intSwi.u1) annotation (Line(points={{-220,70},{-110,70},{-110,
+ 128},{98,128}}, color={255,127,0}));
+ connect(conInt.y, intSwi.u3) annotation (Line(points={{62,100},{90,100},{90,112},
+ {98,112}}, color={255,127,0}));
+ connect(intSwi.y, curDisChi.index) annotation (Line(points={{122,120},{130,120},
+ {130,80},{-176,80},{-176,4},{-150,4},{-150,8}}, color={255,127,0}));
+ connect(intSwi.y, curDisChi1.index) annotation (Line(points={{122,120},{130,120},
+ {130,80},{-176,80},{-176,-86},{-150,-86},{-150,-82}}, color={255,127,0}));
+ connect(not1.y, and1.u2)
+ annotation (Line(points={{-98,20},{-82,20}}, color={255,0,255}));
+ connect(and1.y, and4.u2) annotation (Line(points={{-58,28},{-40,28},{-40,32},{
+ -2,32}}, color={255,0,255}));
+ connect(not3.y, and3.u1)
+ annotation (Line(points={{-98,-70},{-80,-70}}, color={255,0,255}));
+ connect(and3.y, and5.u1)
+ annotation (Line(points={{-56,-70},{-22,-70}}, color={255,0,255}));
+ connect(and2.y, and1.u1) annotation (Line(points={{62,150},{80,150},{80,120},{
+ -90,120},{-90,28},{-82,28}}, color={255,0,255}));
+ connect(and2.y, and3.u2) annotation (Line(points={{62,150},{80,150},{80,120},{
+ -90,120},{-90,-78},{-80,-78}}, color={255,0,255}));
+annotation (
+ defaultComponentName="endUp",
+ Diagram(coordinateSystem(preserveAspectRatio=false,
+ extent={{-200,-260},{200,260}}), graphics={
+ Rectangle(
+ extent={{-198,38},{198,-38}},
+ fillColor={210,210,210},
+ fillPattern=FillPattern.Solid,
+ pattern=LinePattern.None),
+ Text(
+ extent={{52,32},{194,24}},
+ pattern=LinePattern.None,
+ fillColor={210,210,210},
+ fillPattern=FillPattern.Solid,
+ textColor={0,0,127},
+ horizontalAlignment=TextAlignment.Right,
+ textString="Close chilled water
+isolation valve"),
+ Rectangle(
+ extent={{-198,-62},{198,-98}},
+ fillColor={210,210,210},
+ fillPattern=FillPattern.Solid,
+ pattern=LinePattern.None),
+ Text(
+ extent={{76,-64},{192,-72}},
+ pattern=LinePattern.None,
+ fillColor={210,210,210},
+ fillPattern=FillPattern.Solid,
+ textColor={0,0,127},
+ horizontalAlignment=TextAlignment.Right,
+ textString="Disable head
+pressure control"),
+ Rectangle(
+ extent={{-198,-102},{198,-198}},
+ fillColor={210,210,210},
+ fillPattern=FillPattern.Solid,
+ pattern=LinePattern.None),
+ Text(
+ extent={{-182,-166},{-66,-174}},
+ pattern=LinePattern.None,
+ fillColor={210,210,210},
+ fillPattern=FillPattern.Solid,
+ textColor={0,0,127},
+ horizontalAlignment=TextAlignment.Right,
+ textString="Reset minimum
+bypass setpoint"),
+ Rectangle(
+ extent={{-198,-202},{198,-258}},
+ fillColor={210,210,210},
+ fillPattern=FillPattern.Solid,
+ pattern=LinePattern.None),
+ Text(
+ extent={{-168,-212},{-52,-220}},
+ pattern=LinePattern.None,
+ fillColor={210,210,210},
+ fillPattern=FillPattern.Solid,
+ textColor={0,0,127},
+ horizontalAlignment=TextAlignment.Right,
+ textString="End stage-up process"),
+ Rectangle(
+ extent={{-198,238},{198,62}},
+ fillColor={210,210,210},
+ fillPattern=FillPattern.Solid,
+ pattern=LinePattern.None),
+ Text(
+ extent={{48,198},{190,190}},
+ pattern=LinePattern.None,
+ fillColor={210,210,210},
+ fillPattern=FillPattern.Solid,
+ textColor={0,0,127},
+ horizontalAlignment=TextAlignment.Right,
+ textString="Enable next chiller")}),
+ Icon(graphics={
+ Rectangle(
+ extent={{-100,-100},{100,100}},
+ lineColor={0,0,127},
+ fillColor={255,255,255},
+ fillPattern=FillPattern.Solid),
+ Text(
+ extent={{-120,146},{100,108}},
+ textColor={0,0,255},
+ textString="%name"),
+ Rectangle(
+ extent={{-40,6},{40,-6}},
+ lineColor={200,200,200},
+ fillColor={207,207,207},
+ fillPattern=FillPattern.Solid),
+ Rectangle(
+ extent={{-2,72},{2,6}},
+ lineColor={200,200,200},
+ fillColor={207,207,207},
+ fillPattern=FillPattern.Solid),
+ Polygon(
+ points={{0,90},{-20,72},{0,72},{20,72},{0,90}},
+ lineColor={200,200,200},
+ fillColor={207,207,207},
+ fillPattern=FillPattern.Solid),
+ Text(
+ extent={{-98,122},{-66,112}},
+ textColor={255,127,0},
+ pattern=LinePattern.Dash,
+ textString="nexEnaChi"),
+ Text(
+ extent={{-98,104},{-76,92}},
+ textColor={255,0,255},
+ pattern=LinePattern.Dash,
+ textString="uStaUp"),
+ Text(
+ extent={{-98,86},{-46,72}},
+ textColor={255,0,255},
+ pattern=LinePattern.Dash,
+ textString="uEnaChiWatIsoVal"),
+ Text(
+ extent={{-98,62},{-84,54}},
+ textColor={255,0,255},
+ pattern=LinePattern.Dash,
+ textString="uChi"),
+ Text(
+ extent={{-98,42},{-76,34}},
+ textColor={255,0,255},
+ pattern=LinePattern.Dash,
+ textString="uOnOff"),
+ Text(
+ extent={{-98,24},{-68,14}},
+ textColor={255,127,0},
+ pattern=LinePattern.Dash,
+ textString="nexDisChi"),
+ Text(
+ extent={{-98,4},{-64,-10}},
+ textColor={255,0,255},
+ pattern=LinePattern.Dash,
+ textString="uChiWatReq"),
+ Text(
+ extent={{-98,-14},{-56,-26}},
+ textColor={0,0,127},
+ pattern=LinePattern.Dash,
+ textString="uChiWatIsoVal"),
+ Text(
+ extent={{-98,-34},{-64,-48}},
+ textColor={255,0,255},
+ pattern=LinePattern.Dash,
+ textString="uConWatReq"),
+ Text(
+ extent={{-98,-56},{-64,-70}},
+ textColor={255,0,255},
+ pattern=LinePattern.Dash,
+ textString="uChiHeaCon"),
+ Text(
+ extent={{-98,-74},{-56,-86}},
+ textColor={0,0,127},
+ pattern=LinePattern.Dash,
+ textString="VChiWat_flow"),
+ Text(
+ extent={{56,-22},{98,-34}},
+ textColor={0,0,127},
+ pattern=LinePattern.Dash,
+ textString="yChiWatMinSet"),
+ Text(
+ extent={{72,-62},{96,-74}},
+ textColor={255,0,255},
+ pattern=LinePattern.Dash,
+ textString="yEndSta"),
+ Text(
+ extent={{64,18},{98,4}},
+ textColor={255,0,255},
+ pattern=LinePattern.Dash,
+ textString="yChiHeaCon"),
+ Text(
+ extent={{56,58},{98,46}},
+ textColor={0,0,127},
+ pattern=LinePattern.Dash,
+ textString="yChiWatIsoVal"),
+ Text(
+ extent={{82,96},{96,88}},
+ textColor={255,0,255},
+ pattern=LinePattern.Dash,
+ textString="yChi"),
+ Text(
+ extent={{-98,-90},{-30,-100}},
+ textColor={0,0,127},
+ pattern=LinePattern.Dash,
+ textString="VMinChiWat_setpoint"),
+ Text(
+ extent={{68,-82},{96,-96}},
+ textColor={255,0,255},
+ pattern=LinePattern.Dash,
+ textString="endStaTri")}),
+Documentation(info="
+
+Block that controls devices at the ending step of chiller staging up process.
+This development is based on ASHRAE RP-1711 Advanced Sequences of Operation for
+HVAC Systems Phase II – Central Plants and Hydronic Systems (Draft on March 23,
+2020), section 5.2.4.16, item 6 and 7. These sections specify the controls of
+devices at the ending step of staging up process.
+
+
+For the stage-up process that does not require a smaller chiller being disabled
+and a larger chiller being enabled (uOnOff=false
),
+
+
+
+For any stage change during which a smaller chiller is diabled and a larger chiller
+is enabled (uOnOff=true
), after starting the next stage chiller
+specified above, do following:
+
+
+-
+Wait 5 minutes (
proOnTim
) for the newly enabled chiller to prove that
+is operating correctly, then shut off the small chiller (nexDisChi
).
+This is implemented in block enaChi
. See
+
+Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.Processes.Subsequences.EnableChiller
+for more decriptions.
+
+-
+When the controller of the smaller chiller being shut off indicates no request
+for chilled water flow (
uChiWatReq=false
), slowly close the chiller's
+chilled water isolation valve to avoid a sudden change in flow through other
+operating chillers.
+This is implemented in block disChiIsoVal
. See
+
+Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.Processes.Subsequences.CHWIsoVal
+for more decriptions.
+
+-
+When the controller of the smaller chiller being shut off indicates no request for
+condenser water flow (
uConWatReq=false
), disable the chiller's head
+pressure control loop.
+This is implemented in block disHeaCon
. See
+
+Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.Processes.Subsequences.HeadControl
+for more decriptions.
+
+-
+Change the minimum flow bypass setpoint to that appropriate for the new stage.
+This is implemented in block
minChiWatSet
. See
+
+Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.MinimumFlowBypass.Subsequences.FlowSetpoint
+for more decriptions.
+
+-
+Block
minBypSet
will then check if the new chilled water flow setpoint
+has been achieved. See
+
+Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.Processes.Subsequences.ResetMinBypass
+for more decriptions.
+
+
+", revisions="
+
+-
+September 22, 2019, by Jianjun Hu:
+First implementation.
+
+
+"));
+end UpEnd;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/Processes/Subsequences/Validation/CHWIsoVal.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/Processes/Subsequences/Validation/CHWIsoVal.mo
new file mode 100644
index 00000000000..6638a9111ee
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/Processes/Subsequences/Validation/CHWIsoVal.mo
@@ -0,0 +1,137 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.Processes.Subsequences.Validation;
+model CHWIsoVal
+ "Validate isolation valve enable and disable sequence"
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.Processes.Subsequences.CHWIsoVal
+ enaChiIsoVal(
+ final nChi=2,
+ final chaChiWatIsoTim=300,
+ final iniValPos=0,
+ final endValPos=1) "Enable isolation valve"
+ annotation (Placement(transformation(extent={{-100,0},{-80,20}})));
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.Processes.Subsequences.CHWIsoVal
+ disChiIsoVal(
+ final nChi=2,
+ final chaChiWatIsoTim=300,
+ final iniValPos=1,
+ final endValPos=0) "Disable isolation valve"
+ annotation (Placement(transformation(extent={{120,-10},{140,10}})));
+
+protected
+ Buildings.Controls.OBC.CDL.Logical.Sources.Pulse booPul(
+ final width=0.15,
+ final period=3600) "Boolean pulse"
+ annotation (Placement(transformation(extent={{-200,-80},{-180,-60}})));
+ Buildings.Controls.OBC.CDL.Logical.Not staCha "Stage change command"
+ annotation (Placement(transformation(extent={{-160,-80},{-140,-60}})));
+ Buildings.Controls.OBC.CDL.Logical.Sources.Pulse booPul1(
+ final width=0.20,
+ final period=3600) "Boolean pulse"
+ annotation (Placement(transformation(extent={{-200,-40},{-180,-20}})));
+ Buildings.Controls.OBC.CDL.Logical.Not upsDevSta "Upstream device status"
+ annotation (Placement(transformation(extent={{-160,-40},{-140,-20}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant valOne(
+ final k=1) "Valve one position, fully open"
+ annotation (Placement(transformation(extent={{-200,10},{-180,30}})));
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant enaChi(
+ final k=2) "Enabling chiller index"
+ annotation (Placement(transformation(extent={{-160,70},{-140,90}})));
+ Buildings.Controls.OBC.CDL.Discrete.ZeroOrderHold zerOrdHol(
+ final samplePeriod=2)
+ "Output the input signal with a zero order hold"
+ annotation (Placement(transformation(extent={{-60,-10},{-40,10}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant valOne1(
+ final k=1)
+ "Valve one position, fully open"
+ annotation (Placement(transformation(extent={{20,10},{40,30}})));
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant disChi(
+ final k=2)
+ "Disabling chiller index"
+ annotation (Placement(transformation(extent={{60,70},{80,90}})));
+ Buildings.Controls.OBC.CDL.Discrete.ZeroOrderHold zerOrdHol1(
+ final samplePeriod=2)
+ "Output the input signal with a zero order hold"
+ annotation (Placement(transformation(extent={{160,-20},{180,0}})));
+ Buildings.Controls.OBC.CDL.Continuous.Switch swi
+ "Second chiller isolation valve position"
+ annotation (Placement(transformation(extent={{160,30},{180,50}})));
+
+equation
+ connect(booPul.y, staCha.u)
+ annotation (Line(points={{-178,-70},{-162,-70}}, color={255,0,255}));
+ connect(booPul1.y, upsDevSta.u)
+ annotation (Line(points={{-178,-30},{-162,-30}}, color={255,0,255}));
+ connect(enaChi.y, enaChiIsoVal.nexChaChi)
+ annotation (Line(points={{-138,80},{-120,80},{-120,18},{-102,18}},
+ color={255,127,0}));
+ connect(valOne.y, enaChiIsoVal.uChiWatIsoVal[1])
+ annotation (Line(points={{-178,20},{-160,20},{-160,14},{-102,14}},
+ color={0,0,127}));
+ connect(upsDevSta.y, enaChiIsoVal.uUpsDevSta)
+ annotation (Line(points={{-138,-30},{-120,-30},{-120,5},{-102,5}},
+ color={255,0,255}));
+ connect(staCha.y, enaChiIsoVal.chaPro)
+ annotation (Line(points={{-138,-70},{-110,-70},{-110,2},{-102,2}},
+ color={255,0,255}));
+ connect(enaChiIsoVal.yChiWatIsoVal[2], zerOrdHol.u)
+ annotation (Line(points={{-78,5},{-70,5},{-70,0},{-62,0}}, color={0,0,127}));
+ connect(zerOrdHol.y, enaChiIsoVal.uChiWatIsoVal[2])
+ annotation (Line(points={{-38,0},{-20,0},{-20,60},{-140,60},{-140,16},
+ {-102,16}}, color={0,0,127}));
+ connect(disChi.y, disChiIsoVal.nexChaChi)
+ annotation (Line(points={{82,80},{110,80},{110,8},{118,8}},
+ color={255,127,0}));
+ connect(valOne1.y, disChiIsoVal.uChiWatIsoVal[1])
+ annotation (Line(points={{42,20},{60,20},{60,4},{118,4}}, color={0,0,127}));
+ connect(disChiIsoVal.yChiWatIsoVal[2], zerOrdHol1.u)
+ annotation (Line(points={{142,-5},{150,-5},{150,-10},{158,-10}},
+ color={0,0,127}));
+ connect(valOne1.y, swi.u3)
+ annotation (Line(points={{42,20},{60,20},{60,32},{158,32}}, color={0,0,127}));
+ connect(zerOrdHol1.y, swi.u1)
+ annotation (Line(points={{182,-10},{200,-10},{200,20},{150,20},{150,48},
+ {158,48}}, color={0,0,127}));
+ connect(swi.y, disChiIsoVal.uChiWatIsoVal[2])
+ annotation (Line(points={{182,40},{200,40},{200,60},{80,60},{80,6},{118,6}},
+ color={0,0,127}));
+ connect(upsDevSta.y, disChiIsoVal.uUpsDevSta)
+ annotation (Line(points={{-138,-30},{100,-30},{100,-5},{118,-5}},
+ color={255,0,255}));
+ connect(staCha.y, disChiIsoVal.chaPro)
+ annotation (Line(points={{-138,-70},{110,-70},{110,-8},{118,-8}},
+ color={255,0,255}));
+ connect(upsDevSta.y, swi.u2)
+ annotation (Line(points={{-138,-30},{100,-30},{100,40},{158,40}},
+ color={255,0,255}));
+
+annotation (
+ experiment(StopTime=3600, Tolerance=1e-06),
+ __Dymola_Commands(file="modelica://Buildings/Resources/Scripts/Dymola/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/Processes/Subsequences/Validation/CHWIsoVal.mos"
+ "Simulate and plot"),
+ Documentation(info="
+
+This example validates
+
+Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.Processes.Subsequences.CHWIsoVal.
+
+", revisions="
+
+-
+September 24, by Jianjun Hu:
+First implementation.
+
+
+"),
+Icon(coordinateSystem(extent={{-100,-100},{100,100}}),
+ graphics={
+ Ellipse(lineColor = {75,138,73},
+ fillColor={255,255,255},
+ fillPattern = FillPattern.Solid,
+ extent = {{-100,-100},{100,100}}),
+ Polygon(lineColor = {0,0,255},
+ fillColor = {75,138,73},
+ pattern = LinePattern.None,
+ fillPattern = FillPattern.Solid,
+ points = {{-36,60},{64,0},{-36,-60},{-36,60}})}),Diagram(
+ coordinateSystem(preserveAspectRatio=false, extent={{-220,-120},{220,120}})));
+end CHWIsoVal;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/Processes/Subsequences/Validation/DisableChiller.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/Processes/Subsequences/Validation/DisableChiller.mo
new file mode 100644
index 00000000000..b53a0a150a5
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/Processes/Subsequences/Validation/DisableChiller.mo
@@ -0,0 +1,169 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.Processes.Subsequences.Validation;
+model DisableChiller
+ "Validate sequence of disabling chiller during stage-down process"
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.Processes.Subsequences.DisableChiller
+ chiOnOff(
+ final nChi=3,
+ final proOnTim=300) "Disable a chiller and enable another chiller"
+ annotation (Placement(transformation(extent={{-80,70},{-60,90}})));
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.Processes.Subsequences.DisableChiller
+ chiOff(
+ final nChi=3,
+ final proOnTim=300) "Disable chiller"
+ annotation (Placement(transformation(extent={{102,70},{122,90}})));
+
+protected
+ Buildings.Controls.OBC.CDL.Logical.Sources.Pulse booPul(
+ final width=0.15,
+ final period=3600) "Boolean pulse"
+ annotation (Placement(transformation(extent={{-200,50},{-180,70}})));
+ Buildings.Controls.OBC.CDL.Logical.Not staCha "Stage change command"
+ annotation (Placement(transformation(extent={{-160,50},{-140,70}})));
+ Buildings.Controls.OBC.CDL.Logical.Sources.Pulse booPul1(
+ final width=0.20,
+ final period=3600) "Boolean pulse"
+ annotation (Placement(transformation(extent={{-200,10},{-180,30}})));
+ Buildings.Controls.OBC.CDL.Logical.Not upsDevSta "Upstream device status"
+ annotation (Placement(transformation(extent={{-160,10},{-140,30}})));
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant chiOne(
+ final k=true) "Operating chiller one"
+ annotation (Placement(transformation(extent={{-160,-30},{-140,-10}})));
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant enaChi(final k=3)
+ "Enabling chiller index"
+ annotation (Placement(transformation(extent={{-160,90},{-140,110}})));
+ Buildings.Controls.OBC.CDL.Logical.Switch chiTwo "Chiller two status"
+ annotation (Placement(transformation(extent={{-40,-50},{-20,-30}})));
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant onOff(final k=true)
+ "Requires one chiller on and another chiller off"
+ annotation (Placement(transformation(extent={{-160,-110},{-140,-90}})));
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant disChi(
+ final k=2) "Disabling chiller index"
+ annotation (Placement(transformation(extent={{-160,-70},{-140,-50}})));
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant enaChi1(final k=0)
+ "No Chiller needs to be enabled"
+ annotation (Placement(transformation(extent={{20,90},{40,110}})));
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant noOnOff(final k=false)
+ "Does not requires one chiller on and another chiller off"
+ annotation (Placement(transformation(extent={{20,-110},{40,-90}})));
+ Buildings.Controls.OBC.CDL.Logical.Switch chiTwo1 "Chiller two status"
+ annotation (Placement(transformation(extent={{140,-50},{160,-30}})));
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant noUpDev(final k=false)
+ "Constant false"
+ annotation (Placement(transformation(extent={{20,10},{40,30}})));
+ Buildings.Controls.OBC.CDL.Logical.Pre chiStaRet[2]
+ "Chiller status return value"
+ annotation (Placement(transformation(extent={{-40,70},{-20,90}})));
+ Buildings.Controls.OBC.CDL.Logical.Pre chiStaRet1[2]
+ "Chiller status return value"
+ annotation (Placement(transformation(extent={{140,70},{160,90}})));
+
+equation
+ connect(booPul.y, staCha.u)
+ annotation (Line(points={{-178,60},{-162,60}}, color={255,0,255}));
+ connect(booPul1.y, upsDevSta.u)
+ annotation (Line(points={{-178,20},{-162,20}}, color={255,0,255}));
+ connect(enaChi.y, chiOnOff.nexEnaChi)
+ annotation (Line(points={{-138,100},{-100,100},{-100,89},{-82,89}},
+ color={255,127,0}));
+ connect(staCha.y, chiOnOff.uStaDow)
+ annotation (Line(points={{-138,60},{-124,60},{-124,86},{-82,86}},
+ color={255,0,255}));
+ connect(upsDevSta.y, chiOnOff.uEnaChiWatIsoVal)
+ annotation (Line(points={{-138,20},{-116,20},{-116,82},{-82,82}},
+ color={255,0,255}));
+ connect(chiOne.y, chiOnOff.uChi[1])
+ annotation (Line(points={{-138,-20},{-108,-20},{-108,76.6667},{-82,76.6667}},
+ color={255,0,255}));
+ connect(upsDevSta.y, chiTwo.u2)
+ annotation (Line(points={{-138,20},{-116,20},{-116,-40},{-42,-40}},
+ color={255,0,255}));
+ connect(chiOne.y, chiTwo.u3)
+ annotation (Line(points={{-138,-20},{-108,-20},{-108,-48},{-42,-48}},
+ color={255,0,255}));
+ connect(chiOnOff.yChi[2], chiStaRet[1].u)
+ annotation (Line(points={{-58,80},{-42,80}}, color={255,0,255}));
+ connect(chiOnOff.yChi[3], chiStaRet[2].u) annotation (Line(points={{-58,
+ 81.3333},{-50,81.3333},{-50,80},{-42,80}}, color={255,0,255}));
+ connect(chiStaRet[1].y, chiTwo.u1) annotation (Line(points={{-18,80},{-10,80},
+ {-10,0},{-50,0},{-50,-32},{-42,-32}}, color={255,0,255}));
+ connect(chiStaRet[2].y, chiOnOff.uChi[3]) annotation (Line(points={{-18,80},{
+ -10,80},{-10,40},{-112,40},{-112,79.3333},{-82,79.3333}}, color={255,
+ 0,255}));
+ connect(chiTwo.y, chiOnOff.uChi[2])
+ annotation (Line(points={{-18,-40},{-10,-40},{-10,-70},{-120,-70},{-120,78},
+ {-82,78}}, color={255,0,255}));
+ connect(disChi.y, chiOnOff.nexDisChi)
+ annotation (Line(points={{-138,-60},{-104,-60},{-104,75},{-82,75}},
+ color={255,127,0}));
+ connect(onOff.y, chiOnOff.uOnOff)
+ annotation (Line(points={{-138,-100},{-100,-100},{-100,71},{-82,71}},
+ color={255,0,255}));
+ connect(enaChi1.y, chiOff.nexEnaChi)
+ annotation (Line(points={{42,100},{80,100},{80,89},{100,89}},
+ color={255,127,0}));
+ connect(staCha.y, chiOff.uStaDow)
+ annotation (Line(points={{-138,60},{56,60},{56,86},{100,86}},
+ color={255,0,255}));
+ connect(chiOne.y, chiOff.uChi[1])
+ annotation (Line(points={{-138,-20},{64,-20},{64,76.6667},{100,76.6667}},
+ color={255,0,255}));
+ connect(disChi.y, chiOff.nexDisChi)
+ annotation (Line(points={{-138,-60},{76,-60},{76,75},{100,75}},
+ color={255,127,0}));
+ connect(noOnOff.y, chiOff.uOnOff)
+ annotation (Line(points={{42,-100},{80,-100},{80,71},{100,71}},
+ color={255,0,255}));
+ connect(chiOff.yChi[2], chiStaRet1[1].u)
+ annotation (Line(points={{124,80},{138,80}}, color={255,0,255}));
+ connect(chiOff.yChi[3], chiStaRet1[2].u) annotation (Line(points={{124,
+ 81.3333},{132,81.3333},{132,80},{138,80}}, color={255,0,255}));
+ connect(staCha.y, chiTwo1.u2)
+ annotation (Line(points={{-138,60},{56,60},{56,-40},{138,-40}},
+ color={255,0,255}));
+ connect(chiOne.y, chiTwo1.u3)
+ annotation (Line(points={{-138,-20},{64,-20},{64,-48},{138,-48}},
+ color={255,0,255}));
+ connect(chiStaRet1[1].y, chiTwo1.u1) annotation (Line(points={{162,80},{170,
+ 80},{170,-20},{130,-20},{130,-32},{138,-32}}, color={255,0,255}));
+ connect(chiTwo1.y, chiOff.uChi[2])
+ annotation (Line(points={{162,-40},{170,-40},{170,-70},{68,-70},
+ {68,78},{100,78}}, color={255,0,255}));
+ connect(chiStaRet1[2].y, chiOff.uChi[3]) annotation (Line(points={{162,80},{
+ 170,80},{170,40},{72,40},{72,79.3333},{100,79.3333}}, color={255,0,
+ 255}));
+ connect(noUpDev.y, chiOff.uEnaChiWatIsoVal)
+ annotation (Line(points={{42,20},{60,20},{60,82},{100,82}},
+ color={255,0,255}));
+
+annotation (
+ experiment(StopTime=3600, Tolerance=1e-06),
+ __Dymola_Commands(file="modelica://Buildings/Resources/Scripts/Dymola/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/Processes/Subsequences/Validation/DisableChiller.mos"
+ "Simulate and plot"),
+ Documentation(info="
+
+This example validates
+
+Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.Processes.Subsequences.DisableChiller.
+
+", revisions="
+
+-
+September 24, by Jianjun Hu:
+First implementation.
+
+
+"),
+Icon(coordinateSystem(extent={{-100,-100},{100,100}}),
+ graphics={
+ Ellipse(lineColor = {75,138,73},
+ fillColor={255,255,255},
+ fillPattern = FillPattern.Solid,
+ extent = {{-100,-100},{100,100}}),
+ Polygon(lineColor = {0,0,255},
+ fillColor = {75,138,73},
+ pattern = LinePattern.None,
+ fillPattern = FillPattern.Solid,
+ points = {{-36,60},{64,0},{-36,-60},{-36,60}})}),Diagram(
+ coordinateSystem(preserveAspectRatio=false, extent={{-220,-120},{220,120}})));
+end DisableChiller;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/Processes/Subsequences/Validation/DownStartWithOn.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/Processes/Subsequences/Validation/DownStartWithOn.mo
new file mode 100644
index 00000000000..6545623383b
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/Processes/Subsequences/Validation/DownStartWithOn.mo
@@ -0,0 +1,313 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.Processes.Subsequences.Validation;
+model DownStartWithOn
+ "Validate sequence of starting the staging down process which requires enabling a chiller"
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.Processes.Subsequences.DownStart
+ staStaDow1(
+ final nChi=2,
+ need_reduceChillerDemand=true,
+ final byPasSetTim=300,
+ final minFloSet={1,1},
+ final maxFloSet={1.5,1.5},
+ final chaChiWatIsoTim=300)
+ "Chiller stage down when the process does require one chiller on and another chiller off"
+ annotation (Placement(transformation(extent={{0,130},{20,150}})));
+ Buildings.Controls.OBC.CDL.Discrete.TriggeredSampler demLimRel
+ "To indicate if the demand limit has been released"
+ annotation (Placement(transformation(extent={{20,190},{40,210}})));
+
+protected
+ Buildings.Controls.OBC.CDL.Logical.Sources.Pulse booPul1(
+ final width=0.15,
+ final period=1200) "Boolean pulse"
+ annotation (Placement(transformation(extent={{-180,210},{-160,230}})));
+ Buildings.Controls.OBC.CDL.Logical.Not staDow1 "Stage down command"
+ annotation (Placement(transformation(extent={{-140,210},{-120,230}})));
+ Buildings.Controls.OBC.CDL.Continuous.Switch swi3 "Logical switch"
+ annotation (Placement(transformation(extent={{-100,-250},{-80,-230}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant zerLoa(
+ final k=0) "Zero load"
+ annotation (Placement(transformation(extent={{-180,100},{-160,120}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant yOpeParLoaRatMin1(final k=0.7)
+ "Minimum cycling operative partial load ratio"
+ annotation (Placement(transformation(extent={{-180,170},{-160,190}})));
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant onOff1(
+ final k=true) "Chiller on-off command"
+ annotation (Placement(transformation(extent={{-180,-30},{-160,-10}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant chiFlo1(
+ final k=2) "Chilled water flow"
+ annotation (Placement(transformation(extent={{-180,10},{-160,30}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant nexDisChi1(
+ final k=2) "Next disable chiller"
+ annotation (Placement(transformation(extent={{-180,-230},{-160,-210}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant zer2(
+ final k=0) "Constant zero"
+ annotation (Placement(transformation(extent={{-180,-270},{-160,-250}})));
+ Buildings.Controls.OBC.CDL.Conversions.RealToInteger reaToInt1
+ "Convert real input to integer output"
+ annotation (Placement(transformation(extent={{-60,-250},{-40,-230}})));
+ Buildings.Controls.OBC.CDL.Logical.Pre chiOneSta(
+ final pre_u_start=false) "Break algebraic loop"
+ annotation (Placement(transformation(extent={{80,50},{100,70}})));
+ Buildings.Controls.OBC.CDL.Continuous.Switch chiOneLoa "Chiller one"
+ annotation (Placement(transformation(extent={{-100,100},{-80,120}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant chiLoa2(
+ final k=1000) "Chiller load"
+ annotation (Placement(transformation(extent={{-180,60},{-160,80}})));
+ Buildings.Controls.OBC.CDL.Continuous.Switch chiTwoLoa "Chiller two load"
+ annotation (Placement(transformation(extent={{-100,60},{-80,80}})));
+ Buildings.Controls.OBC.CDL.Logical.Pre chiTwoSta(
+ final pre_u_start=true) "Break algebraic loop"
+ annotation (Placement(transformation(extent={{80,20},{100,40}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant nexEnaChi3(
+ final k=1) "Next enable chiller"
+ annotation (Placement(transformation(extent={{-180,-70},{-160,-50}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant zer4(final k=0)
+ "Constant zero"
+ annotation (Placement(transformation(extent={{-180,-110},{-160,-90}})));
+ Buildings.Controls.OBC.CDL.Continuous.Switch swi4 "Logical switch"
+ annotation (Placement(transformation(extent={{-100,-90},{-80,-70}})));
+ Buildings.Controls.OBC.CDL.Conversions.RealToInteger reaToInt2
+ "Convert real input to integer output"
+ annotation (Placement(transformation(extent={{-60,-90},{-40,-70}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant fulOpe(
+ final k=1) "Full open"
+ annotation (Placement(transformation(extent={{-180,-190},{-160,-170}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant zerOpe(
+ final k=0) "Zero open"
+ annotation (Placement(transformation(extent={{-180,-150},{-160,-130}})));
+ Buildings.Controls.OBC.CDL.Continuous.Switch chiIsoVal2
+ "Chilled water isolation valve one"
+ annotation (Placement(transformation(extent={{-100,-190},{-80,-170}})));
+ Buildings.Controls.OBC.CDL.Continuous.Switch chiIsoVal1
+ "Chilled water isolation valve one"
+ annotation (Placement(transformation(extent={{-100,-150},{-80,-130}})));
+ Buildings.Controls.OBC.CDL.Discrete.ZeroOrderHold zerOrdHol(
+ final samplePeriod=10) "Output the input signal with a zero order hold"
+ annotation (Placement(transformation(extent={{60,150},{80,170}})));
+ Buildings.Controls.OBC.CDL.Discrete.ZeroOrderHold zerOrdHol1[2](
+ final samplePeriod=fill(10,2))
+ "Output the input signal with a zero order hold"
+ annotation (Placement(transformation(extent={{120,-120},{140,-100}})));
+ Buildings.Controls.OBC.CDL.Continuous.Switch chiLoa1[2] "Chiller load"
+ annotation (Placement(transformation(extent={{120,150},{140,170}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant zer3[2](
+ final k=fill(0,2)) "Constant zero"
+ annotation (Placement(transformation(extent={{60,100},{80,120}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant chiLoa3(final k=1000)
+ "Chiller load"
+ annotation (Placement(transformation(extent={{60,190},{80,210}})));
+ Buildings.Controls.OBC.CDL.Discrete.ZeroOrderHold zerOrdHol2(
+ final samplePeriod=10)
+ "Output the input signal with a zero order hold"
+ annotation (Placement(transformation(extent={{160,190},{180,210}})));
+ Buildings.Controls.OBC.CDL.Logical.Pre chiOneHea(
+ final pre_u_start=false) "Break algebraic loop"
+ annotation (Placement(transformation(extent={{60,-30},{80,-10}})));
+ Buildings.Controls.OBC.CDL.Logical.Pre chiTwoHea(
+ final pre_u_start=true) "Break algebraic loop"
+ annotation (Placement(transformation(extent={{60,-60},{80,-40}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant one(
+ final k=1) "Constant one"
+ annotation (Placement(transformation(extent={{-20,190},{0,210}})));
+ Buildings.Controls.OBC.CDL.Logical.Sources.Pulse booPul2(
+ final width=0.95,
+ final period=1200) "Boolean pulse"
+ annotation (Placement(transformation(extent={{-180,130},{-160,150}})));
+ Buildings.Controls.OBC.CDL.Logical.Not staDow2 "Stage down command"
+ annotation (Placement(transformation(extent={{-140,130},{-120,150}})));
+
+equation
+ connect(booPul1.y, staDow1.u)
+ annotation (Line(points={{-158,220},{-142,220}}, color={255,0,255}));
+ connect(staDow1.y, swi3.u2)
+ annotation (Line(points={{-118,220},{-110,220},{-110,-240},{-102,-240}},
+ color={255,0,255}));
+ connect(nexDisChi1.y, swi3.u1)
+ annotation (Line(points={{-158,-220},{-140,-220},{-140,-232},{-102,-232}},
+ color={0,0,127}));
+ connect(zer2.y, swi3.u3)
+ annotation (Line(points={{-158,-260},{-140,-260},{-140,-248},{-102,-248}},
+ color={0,0,127}));
+ connect(swi3.y, reaToInt1.u)
+ annotation (Line(points={{-78,-240},{-62,-240}}, color={0,0,127}));
+ connect(staDow1.y, chiOneLoa.u2)
+ annotation (Line(points={{-118,220},{-110,220},{-110,110},{-102,110}},
+ color={255,0,255}));
+ connect(zerLoa.y, chiOneLoa.u3)
+ annotation (Line(points={{-158,110},{-140,110},{-140,102},{-102,102}},
+ color={0,0,127}));
+ connect(staDow1.y, chiTwoLoa.u2)
+ annotation (Line(points={{-118,220},{-110,220},{-110,70},{-102,70}},
+ color={255,0,255}));
+ connect(chiLoa2.y, chiTwoLoa.u3)
+ annotation (Line(points={{-158,70},{-140,70},{-140,62},{-102,62}},
+ color={0,0,127}));
+ connect(staStaDow1.yChi[1], chiOneSta.u)
+ annotation (Line(points={{22,133.5},{52,133.5},{52,60},{78,60}},
+ color={255,0,255}));
+ connect(staStaDow1.yChi[2], chiTwoSta.u)
+ annotation (Line(points={{22,134.5},{48,134.5},{48,30},{78,30}},
+ color={255,0,255}));
+ connect(staDow1.y, staStaDow1.uStaDow)
+ annotation (Line(points={{-118,220},{-110,220},{-110,150},{-2,150}},
+ color={255,0,255}));
+ connect(yOpeParLoaRatMin1.y, staStaDow1.yOpeParLoaRatMin)
+ annotation (Line(points={{-158,180},{-100,180},{-100,148},{-2,148}},
+ color={0,0,127}));
+ connect(chiOneLoa.y, staStaDow1.uChiLoa[1])
+ annotation (Line(points={{-78,110},{-56,110},{-56,145.5},{-2,145.5}},
+ color={0,0,127}));
+ connect(chiTwoLoa.y, staStaDow1.uChiLoa[2])
+ annotation (Line(points={{-78,70},{-60,70},{-60,146.5},{-2,146.5}},
+ color={0,0,127}));
+ connect(chiOneSta.y, staStaDow1.uChi[1])
+ annotation (Line(points={{102,60},{180,60},{180,0},{-52,0},{-52,143.5},{-2,143.5}},
+ color={255,0,255}));
+ connect(chiTwoSta.y, staStaDow1.uChi[2])
+ annotation (Line(points={{102,30},{110,30},{110,4},{-48,4},{-48,144.5},{-2,144.5}},
+ color={255,0,255}));
+ connect(chiFlo1.y, staStaDow1.VChiWat_flow)
+ annotation (Line(points={{-158,20},{-44,20},{-44,142},{-2,142}},
+ color={0,0,127}));
+ connect(onOff1.y, staStaDow1.uOnOff)
+ annotation (Line(points={{-158,-20},{-40,-20},{-40,138},{-2,138}},
+ color={255,0,255}));
+ connect(zer4.y, swi4.u3)
+ annotation (Line(points={{-158,-100},{-140,-100},{-140,-88},{-102,-88}},
+ color={0,0,127}));
+ connect(nexEnaChi3.y, swi4.u1)
+ annotation (Line(points={{-158,-60},{-140,-60},{-140,-72},{-102,-72}},
+ color={0,0,127}));
+ connect(swi4.y, reaToInt2.u)
+ annotation (Line(points={{-78,-80},{-62,-80}}, color={0,0,127}));
+ connect(staDow1.y, swi4.u2)
+ annotation (Line(points={{-118,220},{-110,220},{-110,-80},{-102,-80}},
+ color={255,0,255}));
+ connect(reaToInt2.y, staStaDow1.nexEnaChi)
+ annotation (Line(points={{-38,-80},{-36,-80},{-36,136},{-2,136}},
+ color={255,127,0}));
+ connect(fulOpe.y, chiIsoVal2.u3)
+ annotation (Line(points={{-158,-180},{-140,-180},{-140,-188},{-102,-188}},
+ color={0,0,127}));
+ connect(zerOpe.y, chiIsoVal1.u3)
+ annotation (Line(points={{-158,-140},{-140,-140},{-140,-148},{-102,-148}},
+ color={0,0,127}));
+ connect(staDow1.y, chiIsoVal1.u2)
+ annotation (Line(points={{-118,220},{-110,220},{-110,-140},{-102,-140}},
+ color={255,0,255}));
+ connect(staDow1.y, chiIsoVal2.u2)
+ annotation (Line(points={{-118,220},{-110,220},{-110,-180},{-102,-180}},
+ color={255,0,255}));
+ connect(staStaDow1.yChiWatIsoVal, zerOrdHol1.u)
+ annotation (Line(points={{22,138},{44,138},{44,-110},{118,-110}},
+ color={0,0,127}));
+ connect(zerOrdHol1[1].y, chiIsoVal1.u1)
+ annotation (Line(points={{142,-110},{160,-110},{160,-160},{-120,-160},
+ {-120,-132},{-102,-132}}, color={0,0,127}));
+ connect(zerOrdHol1[2].y, chiIsoVal2.u1)
+ annotation (Line(points={{142,-110},{160,-110},{160,-200},{-120,-200},
+ {-120,-172},{-102,-172}}, color={0,0,127}));
+ connect(chiIsoVal1.y, staStaDow1.uChiWatIsoVal[1])
+ annotation (Line(points={{-78,-140},{-24,-140},{-24,131.5},{-2,131.5}},
+ color={0,0,127}));
+ connect(chiIsoVal2.y, staStaDow1.uChiWatIsoVal[2])
+ annotation (Line(points={{-78,-180},{-20,-180},{-20,132.5},{-2,132.5}},
+ color={0,0,127}));
+ connect(reaToInt1.y, staStaDow1.nexDisChi)
+ annotation (Line(points={{-38,-240},{-16,-240},{-16,130},{-2,130}},
+ color={255,127,0}));
+ connect(chiOneSta.y, chiLoa1[1].u2)
+ annotation (Line(points={{102,60},{180,60},{180,130},{110,130},{110,160},
+ {118,160}}, color={255,0,255}));
+ connect(chiTwoSta.y, chiLoa1[2].u2)
+ annotation (Line(points={{102,30},{110,30},{110,160},{118,160}},
+ color={255,0,255}));
+ connect(zer3.y, chiLoa1.u3)
+ annotation (Line(points={{82,110},{100,110},{100,152},{118,152}},
+ color={0,0,127}));
+ connect(staStaDow1.yChiDem[2], zerOrdHol.u)
+ annotation (Line(points={{22,149.5},{52,149.5},{52,160},{58,160}},
+ color={0,0,127}));
+ connect(zerOrdHol.y, chiLoa1[2].u1)
+ annotation (Line(points={{82,160},{100,160},{100,168},{118,168}},
+ color={0,0,127}));
+ connect(chiLoa3.y, chiLoa1[1].u1)
+ annotation (Line(points={{82,200},{100,200},{100,168},{118,168}},
+ color={0,0,127}));
+ connect(chiLoa1[1].y, zerOrdHol2.u)
+ annotation (Line(points={{142,160},{150,160},{150,200},{158,200}},
+ color={0,0,127}));
+ connect(chiLoa1[2].y, chiTwoLoa.u1)
+ annotation (Line(points={{142,160},{150,160},{150,10},{-120,10},{-120,78},
+ {-102,78}}, color={0,0,127}));
+ connect(zerOrdHol2.y, chiOneLoa.u1)
+ annotation (Line(points={{182,200},{190,200},{190,90},{-120,90},{-120,118},
+ {-102,118}}, color={0,0,127}));
+ connect(staStaDow1.yChiHeaCon[1], chiOneHea.u)
+ annotation (Line(points={{22,141.5},{36,141.5},{36,-20},{58,-20}},
+ color={255,0,255}));
+ connect(staStaDow1.yChiHeaCon[2], chiTwoHea.u)
+ annotation (Line(points={{22,142.5},{40,142.5},{40,-50},{58,-50}},
+ color={255,0,255}));
+ connect(chiOneHea.y, staStaDow1.uChiHeaCon[1])
+ annotation (Line(points={{82,-20},{90,-20},{90,-36},{-32,-36},{-32,133.5},{-2,
+ 133.5}},
+ color={255,0,255}));
+ connect(chiTwoHea.y, staStaDow1.uChiHeaCon[2])
+ annotation (Line(points={{82,-50},{90,-50},{90,-70},{-28,-70},{-28,134.5},{-2,
+ 134.5}},color={255,0,255}));
+ connect(one.y, demLimRel.u)
+ annotation (Line(points={{2,200},{18,200}}, color={0,0,127}));
+ connect(staStaDow1.yReaDemLim, demLimRel.trigger)
+ annotation (Line(points={{22,131},{30,131},{30,188}}, color={255,0,255}));
+ connect(booPul2.y, staDow2.u)
+ annotation (Line(points={{-158,140},{-142,140}}, color={255,0,255}));
+ connect(staDow2.y, staStaDow1.clr)
+ annotation (Line(points={{-118,140},{-2,140}},
+ color={255,0,255}));
+
+annotation (
+ experiment(StopTime=1200, Tolerance=1e-06),
+ __Dymola_Commands(file="modelica://Buildings/Resources/Scripts/Dymola/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/Processes/Subsequences/Validation/DownStartWithOn.mos"
+ "Simulate and plot"),
+ Documentation(info="
+
+This example validates
+
+Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.Processes.Subsequences.DownStart.
+
+", revisions="
+
+-
+September 26, by Jianjun Hu:
+First implementation.
+
+
+"),
+Icon(coordinateSystem(extent={{-100,-100},{100,100}}),
+ graphics={
+ Ellipse(lineColor = {75,138,73},
+ fillColor={255,255,255},
+ fillPattern = FillPattern.Solid,
+ extent = {{-100,-100},{100,100}}),
+ Polygon(lineColor = {0,0,255},
+ fillColor = {75,138,73},
+ pattern = LinePattern.None,
+ fillPattern = FillPattern.Solid,
+ points = {{-36,60},{64,0},{-36,-60},{-36,60}})}),Diagram(
+ coordinateSystem(preserveAspectRatio=false, extent={{-200,-300},{200,300}}),
+ graphics={
+ Text(
+ extent={{-176,264},{14,248}},
+ textColor={0,0,127},
+ textString="to stage 1 which only has small chiller enabled (chiller 1)."),
+ Text(
+ extent={{-174,276},{14,266}},
+ textColor={0,0,127},
+ textString="from stage 2 which only has large chiller enabled (chiller 2), "),
+ Text(
+ extent={{-184,288},{-136,280}},
+ textColor={0,0,127},
+ textString="Stage down:")}));
+end DownStartWithOn;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/Processes/Subsequences/Validation/DownStartWithoutOn.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/Processes/Subsequences/Validation/DownStartWithoutOn.mo
new file mode 100644
index 00000000000..de27a5b8e70
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/Processes/Subsequences/Validation/DownStartWithoutOn.mo
@@ -0,0 +1,191 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.Processes.Subsequences.Validation;
+model DownStartWithoutOn
+ "Validate sequence of starting the staging down process which does not require enabling a chiller"
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.Processes.Subsequences.DownStart
+ staStaDow(
+ final nChi=2,
+ need_reduceChillerDemand=true,
+ final byPasSetTim=300,
+ final minFloSet={1,1},
+ final maxFloSet={1.5,1.5},
+ final chaChiWatIsoTim=300)
+ "Chiller stage down when the process does not require one chiller on and another chiller off"
+ annotation (Placement(transformation(extent={{60,190},{80,210}})));
+
+protected
+ Buildings.Controls.OBC.CDL.Logical.Sources.Pulse booPul(
+ final width=0.15,
+ final period=1200) "Boolean pulse"
+ annotation (Placement(transformation(extent={{-120,210},{-100,230}})));
+ Buildings.Controls.OBC.CDL.Logical.Not staDow "Stage down command"
+ annotation (Placement(transformation(extent={{-80,210},{-60,230}})));
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant chiOn[2](
+ final k=fill(true,2))
+ "Operating chiller one"
+ annotation (Placement(transformation(extent={{-120,50},{-100,70}})));
+ Buildings.Controls.OBC.CDL.Continuous.Switch swi "Logical switch"
+ annotation (Placement(transformation(extent={{-40,-250},{-20,-230}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant chiLoa[2](
+ final k=fill(1000,2)) "Chiller load"
+ annotation (Placement(transformation(extent={{-120,130},{-100,150}})));
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant nexEnaChi(
+ final k=0) "Next enabling chiller"
+ annotation (Placement(transformation(extent={{-120,-110},{-100,-90}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant yOpeParLoaRatMin(
+ final k=0.7)
+ "Minimum cycling operative partial load ratio"
+ annotation (Placement(transformation(extent={{-120,170},{-100,190}})));
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant onOff(
+ final k=false) "Chiller on-off command"
+ annotation (Placement(transformation(extent={{-120,-70},{-100,-50}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant chiFlo(
+ final k=2) "Chilled water flow"
+ annotation (Placement(transformation(extent={{-120,-30},{-100,-10}})));
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant chiHea[2](
+ final k=fill(true,2))
+ "Chiller head pressure control"
+ annotation (Placement(transformation(extent={{-120,-150},{-100,-130}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant chiIsoVal[2](
+ final k=fill(1,2)) "Chilled water isolation valve"
+ annotation (Placement(transformation(extent={{-120,-190},{-100,-170}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant nexDisChi(
+ final k=2) "Next disable chiller"
+ annotation (Placement(transformation(extent={{-120,-230},{-100,-210}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant zer(
+ final k=0) "Constant zero"
+ annotation (Placement(transformation(extent={{-120,-270},{-100,-250}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant zer1[2](
+ final k=fill(0,2)) "Constant zero"
+ annotation (Placement(transformation(extent={{-120,90},{-100,110}})));
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant fal[2](
+ final k=fill(false,2)) "Constant false"
+ annotation (Placement(transformation(extent={{-120,10},{-100,30}})));
+ Buildings.Controls.OBC.CDL.Conversions.RealToInteger reaToInt "Convert real input to integer output"
+ annotation (Placement(transformation(extent={{0,-250},{20,-230}})));
+ Buildings.Controls.OBC.CDL.Logical.Pre chiStaRet[2](final pre_u_start=fill(
+ true, 2)) "Chiller status return value"
+ annotation (Placement(transformation(extent={{100,170},{120,190}})));
+ Buildings.Controls.OBC.CDL.Logical.Switch logSwi[2] "Logical switch"
+ annotation (Placement(transformation(extent={{-40,50},{-20,70}})));
+ Buildings.Controls.OBC.CDL.Continuous.Switch swi1[2] "Logical switch"
+ annotation (Placement(transformation(extent={{-40,130},{-20,150}})));
+ Buildings.Controls.OBC.CDL.Logical.Sources.Pulse booPul2(
+ final width=0.95,
+ final period=1200) "Boolean pulse"
+ annotation (Placement(transformation(extent={{60,90},{80,110}})));
+ Buildings.Controls.OBC.CDL.Logical.Not staDow2 "Stage down command"
+ annotation (Placement(transformation(extent={{100,90},{120,110}})));
+
+equation
+ connect(booPul.y,staDow. u)
+ annotation (Line(points={{-98,220},{-82,220}}, color={255,0,255}));
+ connect(staDow.y, swi.u2)
+ annotation (Line(points={{-58,220},{-50,220},{-50,-240},{-42,-240}},
+ color={255,0,255}));
+ connect(nexDisChi.y, swi.u1)
+ annotation (Line(points={{-98,-220},{-60,-220},{-60,-232},{-42,-232}},
+ color={0,0,127}));
+ connect(zer.y, swi.u3)
+ annotation (Line(points={{-98,-260},{-60,-260},{-60,-248},{-42,-248}},
+ color={0,0,127}));
+ connect(staDow.y, staStaDow.uStaDow)
+ annotation (Line(points={{-58,220},{-50,220},{-50,210},{58,210}},
+ color={255,0,255}));
+ connect(yOpeParLoaRatMin.y, staStaDow.yOpeParLoaRatMin)
+ annotation (Line(points={{-98,180},{12,180},{12,208},{58,208}},
+ color={0,0,127}));
+ connect(chiFlo.y, staStaDow.VChiWat_flow)
+ annotation (Line(points={{-98,-20},{24,-20},{24,202},{58,202}},
+ color={0,0,127}));
+ connect(onOff.y, staStaDow.uOnOff)
+ annotation (Line(points={{-98,-60},{32,-60},{32,198},{58,198}},
+ color={255,0,255}));
+ connect(nexEnaChi.y, staStaDow.nexEnaChi)
+ annotation (Line(points={{-98,-100},{36,-100},{36,196},{58,196}},
+ color={255,127,0}));
+ connect(swi.y, reaToInt.u)
+ annotation (Line(points={{-18,-240},{-2,-240}}, color={0,0,127}));
+ connect(reaToInt.y, staStaDow.nexDisChi)
+ annotation (Line(points={{22,-240},{48,-240},{48,190},{58,190}},
+ color={255,127,0}));
+ connect(staStaDow.yChi, chiStaRet.u) annotation (Line(points={{82,194},{90,
+ 194},{90,180},{98,180}}, color={255,0,255}));
+ connect(chiStaRet.y, swi1.u2) annotation (Line(points={{122,180},{130,180},{
+ 130,160},{-60,160},{-60,140},{-42,140}}, color={255,0,255}));
+ connect(chiLoa.y, swi1.u1)
+ annotation (Line(points={{-98,140},{-90,140},{-90,148},{-42,148}},
+ color={0,0,127}));
+ connect(zer1.y, swi1.u3)
+ annotation (Line(points={{-98,100},{-80,100},{-80,132},{-42,132}},
+ color={0,0,127}));
+ connect(chiStaRet.y, logSwi.u2) annotation (Line(points={{122,180},{130,180},
+ {130,160},{-60,160},{-60,60},{-42,60}}, color={255,0,255}));
+ connect(chiOn.y, logSwi.u1)
+ annotation (Line(points={{-98,60},{-90,60},{-90,68},{-42,68}},
+ color={255,0,255}));
+ connect(fal.y, logSwi.u3)
+ annotation (Line(points={{-98,20},{-70,20},{-70,52},{-42,52}},
+ color={255,0,255}));
+ connect(swi1.y, staStaDow.uChiLoa)
+ annotation (Line(points={{-18,140},{16,140},{16,206},{58,206}},
+ color={0,0,127}));
+ connect(logSwi.y, staStaDow.uChi)
+ annotation (Line(points={{-18,60},{20,60},{20,204},{58,204}},
+ color={255,0,255}));
+ connect(chiHea.y, staStaDow.uChiHeaCon)
+ annotation (Line(points={{-98,-140},{40,-140},{40,194},{58,194}},
+ color={255,0,255}));
+ connect(chiIsoVal.y, staStaDow.uChiWatIsoVal)
+ annotation (Line(points={{-98,-180},{44,-180},{44,192},{58,192}},
+ color={0,0,127}));
+ connect(booPul2.y, staDow2.u)
+ annotation (Line(points={{82,100},{98,100}}, color={255,0,255}));
+ connect(staDow2.y, staStaDow.clr)
+ annotation (Line(points={{122,100},{130,100},{130,150},{28,150},{28,200},
+ {58,200}}, color={255,0,255}));
+
+annotation (
+ experiment(StopTime=1200, Tolerance=1e-06),
+ __Dymola_Commands(file="modelica://Buildings/Resources/Scripts/Dymola/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/Processes/Subsequences/Validation/DownStartWithoutOn.mos"
+ "Simulate and plot"),
+ Documentation(info="
+
+This example validates
+
+Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.Processes.Subsequences.DownStart.
+
+", revisions="
+
+-
+September 26, by Jianjun Hu:
+First implementation.
+
+
+"),
+Icon(coordinateSystem(extent={{-100,-100},{100,100}}),
+ graphics={
+ Ellipse(lineColor = {75,138,73},
+ fillColor={255,255,255},
+ fillPattern = FillPattern.Solid,
+ extent = {{-100,-100},{100,100}}),
+ Polygon(lineColor = {0,0,255},
+ fillColor = {75,138,73},
+ pattern = LinePattern.None,
+ fillPattern = FillPattern.Solid,
+ points = {{-36,60},{64,0},{-36,-60},{-36,60}})}),Diagram(
+ coordinateSystem(preserveAspectRatio=false, extent={{-140,-300},{140,300}}),
+ graphics={
+ Text(
+ extent={{-122,288},{-74,280}},
+ textColor={0,0,127},
+ textString="Stage down:"),
+ Text(
+ extent={{-114,276},{46,266}},
+ textColor={0,0,127},
+ textString="from stage 2 which has chiller one and two enabled, "),
+ Text(
+ extent={{-116,264},{-14,250}},
+ textColor={0,0,127},
+ textString="to stage 1 which only has chiller 1.")}));
+end DownStartWithoutOn;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/Processes/Subsequences/Validation/EnableCWPump.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/Processes/Subsequences/Validation/EnableCWPump.mo
new file mode 100644
index 00000000000..5a3a7d71b05
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/Processes/Subsequences/Validation/EnableCWPump.mo
@@ -0,0 +1,138 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.Processes.Subsequences.Validation;
+model EnableCWPump
+ "Validate sequence of generating stage index for CW pump control"
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.Processes.Subsequences.EnableCWPump
+ staUpInd "Generating chiller stage index when there is stage up command"
+ annotation (Placement(transformation(extent={{0,50},{20,70}})));
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.Processes.Subsequences.EnableCWPump
+ staDowInd "Generating chiller stage index when there is stage down command"
+ annotation (Placement(transformation(extent={{80,50},{100,70}})));
+
+protected
+ Buildings.Controls.OBC.CDL.Continuous.Switch curSta
+ "Current chiller stage setpoint"
+ annotation (Placement(transformation(extent={{-20,-50},{0,-30}})));
+ Buildings.Controls.OBC.CDL.Conversions.RealToInteger reaToInt[2]
+ "Real input to integer output"
+ annotation (Placement(transformation(extent={{20,-30},{40,-10}})));
+ Buildings.Controls.OBC.CDL.Continuous.Switch curSta1
+ "Current chiller stage setpoint"
+ annotation (Placement(transformation(extent={{-20,-90},{0,-70}})));
+ Buildings.Controls.OBC.CDL.Conversions.RealToInteger reaToInt1[2]
+ "Real input to integer output"
+ annotation (Placement(transformation(extent={{20,-70},{40,-50}})));
+ Buildings.Controls.OBC.CDL.Logical.Sources.Pulse booPul(
+ final width=0.15,
+ final period=3600) "Boolean pulse"
+ annotation (Placement(transformation(extent={{-100,30},{-80,50}})));
+ Buildings.Controls.OBC.CDL.Logical.Not staCha "Stage change command"
+ annotation (Placement(transformation(extent={{-60,30},{-40,50}})));
+ Buildings.Controls.OBC.CDL.Logical.Sources.Pulse booPul1(
+ final width=0.20,
+ final period=3600) "Boolean pulse"
+ annotation (Placement(transformation(extent={{-100,70},{-80,90}})));
+ Buildings.Controls.OBC.CDL.Logical.Not upsDevSta "Upstream device status"
+ annotation (Placement(transformation(extent={{-60,70},{-40,90}})));
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant fal(
+ final k=false)
+ "No stage change"
+ annotation (Placement(transformation(extent={{-60,-10},{-40,10}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant staTwo(
+ final k=2) "Chiller stage index"
+ annotation (Placement(transformation(extent={{-100,-70},{-80,-50}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant staOne(
+ final k=1) "Chiller stage index"
+ annotation (Placement(transformation(extent={{-100,-30},{-80,-10}})));
+
+equation
+ connect(booPul.y, staCha.u)
+ annotation (Line(points={{-78,40},{-62,40}}, color={255,0,255}));
+ connect(booPul1.y, upsDevSta.u)
+ annotation (Line(points={{-78,80},{-62,80}}, color={255,0,255}));
+ connect(upsDevSta.y, staUpInd.uUpsDevSta)
+ annotation (Line(points={{-38,80},{-20,80},{-20,68},{-2,68}},
+ color={255,0,255}));
+ connect(staCha.y, staUpInd.uStaUp)
+ annotation (Line(points={{-38,40},{-30,40},{-30,62},{-2,62}},
+ color={255,0,255}));
+ connect(fal.y, staUpInd.uStaDow)
+ annotation (Line(points={{-38,0},{-20,0},{-20,58},{-2,58}},
+ color={255,0,255}));
+ connect(upsDevSta.y, staDowInd.uUpsDevSta)
+ annotation (Line(points={{-38,80},{60,80},{60,68},{78,68}},
+ color={255,0,255}));
+ connect(fal.y, staDowInd.uStaUp)
+ annotation (Line(points={{-38,0},{60,0},{60,62},{78,62}},
+ color={255,0,255}));
+ connect(staCha.y, staDowInd.uStaDow)
+ annotation (Line(points={{-38,40},{66,40},{66,58},{78,58}},
+ color={255,0,255}));
+ connect(staCha.y, curSta.u2)
+ annotation (Line(points={{-38,40},{-30,40},{-30,-40},{-22,-40}},
+ color={255,0,255}));
+ connect(staTwo.y, curSta.u1)
+ annotation (Line(points={{-78,-60},{-60,-60},{-60,-32},{-22,-32}},
+ color={0,0,127}));
+ connect(staOne.y, curSta.u3)
+ annotation (Line(points={{-78,-20},{-40,-20},{-40,-48},{-22,-48}},
+ color={0,0,127}));
+ connect(staCha.y, curSta1.u2)
+ annotation (Line(points={{-38,40},{-30,40},{-30,-80},{-22,-80}},
+ color={255,0,255}));
+ connect(staTwo.y, curSta1.u3)
+ annotation (Line(points={{-78,-60},{-60,-60},{-60,-88},{-22,-88}},
+ color={0,0,127}));
+ connect(staOne.y, curSta1.u1)
+ annotation (Line(points={{-78,-20},{-40,-20},{-40,-72},{-22,-72}},
+ color={0,0,127}));
+ connect(staOne.y, reaToInt[1].u)
+ annotation (Line(points={{-78,-20},{18,-20}}, color={0,0,127}));
+ connect(curSta.y, reaToInt[2].u)
+ annotation (Line(points={{2,-40},{10,-40},{10,-20},{18,-20}}, color={0,0,127}));
+ connect(reaToInt[1].y, staUpInd.uChiSta)
+ annotation (Line(points={{42,-20},{50,-20},{50,20},{-10,20},{-10,55},{-2,55}},
+ color={255,127,0}));
+ connect(reaToInt[2].y, staUpInd.uStaSet)
+ annotation (Line(points={{42,-20},{50,-20},{50,20},{-10,20},{-10,51},{-2,51}},
+ color={255,127,0}));
+ connect(staTwo.y, reaToInt1[1].u)
+ annotation (Line(points={{-78,-60},{18,-60}}, color={0,0,127}));
+ connect(curSta1.y, reaToInt1[2].u)
+ annotation (Line(points={{2,-80},{10,-80},{10,-60},{18,-60}}, color={0,0,127}));
+ connect(reaToInt1[1].y, staDowInd.uChiSta)
+ annotation (Line(points={{42,-60},{72,-60},{72,55},{78,55}}, color={255,127,0}));
+ connect(reaToInt1[2].y, staDowInd.uStaSet)
+ annotation (Line(points={{42,-60},{72,-60},{72,51},{78,51}}, color={255,127,0}));
+
+annotation (
+ experiment(StopTime=3600, Tolerance=1e-06),
+ __Dymola_Commands(file="modelica://Buildings/Resources/Scripts/Dymola/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/Processes/Subsequences/Validation/EnableCWPump.mos"
+ "Simulate and plot"),
+ Documentation(info="
+
+This example validates
+
+Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.Processes.Subsequences.EnableCWPump.
+
+", revisions="
+
+-
+September 24, by Jianjun Hu:
+First implementation.
+
+
+"),
+Icon(coordinateSystem(extent={{-100,-100},{100,100}}),
+ graphics={
+ Ellipse(lineColor = {75,138,73},
+ fillColor={255,255,255},
+ fillPattern = FillPattern.Solid,
+ extent = {{-100,-100},{100,100}}),
+ Polygon(lineColor = {0,0,255},
+ fillColor = {75,138,73},
+ pattern = LinePattern.None,
+ fillPattern = FillPattern.Solid,
+ points = {{-36,60},{64,0},{-36,-60},{-36,60}})}),Diagram(
+ coordinateSystem(preserveAspectRatio=false, extent={{-120,-100},{120,100}})));
+end EnableCWPump;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/Processes/Subsequences/Validation/EnableChiller.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/Processes/Subsequences/Validation/EnableChiller.mo
new file mode 100644
index 00000000000..a21807c7a15
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/Processes/Subsequences/Validation/EnableChiller.mo
@@ -0,0 +1,150 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.Processes.Subsequences.Validation;
+model EnableChiller
+ "Validate sequence of enabling and disabling chiller"
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.Processes.Subsequences.EnableChiller
+ enaDisChi(final nChi=3) "Enable larger chiller and disable smaller chiller"
+ annotation (Placement(transformation(extent={{-80,70},{-60,90}})));
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.Processes.Subsequences.EnableChiller
+ enaOneChi(final nChi=3) "Enable additional chiller"
+ annotation (Placement(transformation(extent={{100,70},{120,90}})));
+
+protected
+ Buildings.Controls.OBC.CDL.Logical.Sources.Pulse booPul(
+ final width=0.15,
+ final period=3600) "Boolean pulse"
+ annotation (Placement(transformation(extent={{-200,50},{-180,70}})));
+ Buildings.Controls.OBC.CDL.Logical.Not staUp "Stage up command"
+ annotation (Placement(transformation(extent={{-160,50},{-140,70}})));
+ Buildings.Controls.OBC.CDL.Logical.Sources.Pulse booPul1(
+ final width=0.20,
+ final period=3600) "Boolean pulse"
+ annotation (Placement(transformation(extent={{-200,10},{-180,30}})));
+ Buildings.Controls.OBC.CDL.Logical.Not chiIsoVal
+ "Chilled water isolation valve resetting status"
+ annotation (Placement(transformation(extent={{-160,10},{-140,30}})));
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant enaChi(final k=3)
+ "Enabling chiller index"
+ annotation (Placement(transformation(extent={{-160,90},{-140,110}})));
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant chiOne(final k=true)
+ "Operating chiller one"
+ annotation (Placement(transformation(extent={{-160,-30},{-140,-10}})));
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant onOff(final k=true)
+ "Requires one chiller on and another chiller off"
+ annotation (Placement(transformation(extent={{-160,-70},{-140,-50}})));
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant disChi(final k=2)
+ "Disabling chiller index"
+ annotation (Placement(transformation(extent={{-160,-110},{-140,-90}})));
+ Buildings.Controls.OBC.CDL.Logical.Pre chiStaRet[2]
+ "Chiller status return value"
+ annotation (Placement(transformation(extent={{-40,70},{-20,90}})));
+ Buildings.Controls.OBC.CDL.Logical.Switch chiTwo "Chiller two status"
+ annotation (Placement(transformation(extent={{-40,-50},{-20,-30}})));
+ Buildings.Controls.OBC.CDL.Logical.Pre chiStaRet1
+ "Chiller status return value"
+ annotation (Placement(transformation(extent={{140,70},{160,90}})));
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant noOnOff(final k=false)
+ "Does not requires one chiller on and another chiller off"
+ annotation (Placement(transformation(extent={{20,-70},{40,-50}})));
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant disChi1(final k=0)
+ "Disabling chiller index"
+ annotation (Placement(transformation(extent={{20,-110},{40,-90}})));
+
+equation
+ connect(booPul.y, staUp.u)
+ annotation (Line(points={{-178,60},{-162,60}}, color={255,0,255}));
+ connect(booPul1.y,chiIsoVal. u)
+ annotation (Line(points={{-178,20},{-162,20}}, color={255,0,255}));
+ connect(enaChi.y, enaDisChi.nexEnaChi)
+ annotation (Line(points={{-138,100},{-120,100},{-120,89},{-82,89}},
+ color={255,127,0}));
+ connect(staUp.y, enaDisChi.uStaUp)
+ annotation (Line(points={{-138,60},{-120,60},{-120,86},{-82,86}},
+ color={255,0,255}));
+ connect(chiIsoVal.y, enaDisChi.uEnaChiWatIsoVal)
+ annotation (Line(points={{-138,20},{-116,20},{-116,82},{-82,82}},
+ color={255,0,255}));
+ connect(chiOne.y, enaDisChi.uChi[1])
+ annotation (Line(points={{-138,-20},{-112,-20},{-112,76.6667},{-82,76.6667}},
+ color={255,0,255}));
+ connect(chiIsoVal.y, chiTwo.u2)
+ annotation (Line(points={{-138,20},{-116,20},{-116,-40},{-42,-40}},
+ color={255,0,255}));
+ connect(chiStaRet[1].y, chiTwo.u1) annotation (Line(points={{-18,80},{0,80},{
+ 0,0},{-60,0},{-60,-32},{-42,-32}}, color={255,0,255}));
+ connect(chiOne.y, chiTwo.u3)
+ annotation (Line(points={{-138,-20},{-112,-20},{-112,-48},{-42,-48}},
+ color={255,0,255}));
+ connect(chiTwo.y, enaDisChi.uChi[2])
+ annotation (Line(points={{-18,-40},{0,-40},{0,-70},{-108,-70},{-108,78},
+ {-82,78}}, color={255,0,255}));
+ connect(enaDisChi.yChi[2], chiStaRet[1].u) annotation (Line(points={{-58,88},
+ {-50,88},{-50,80},{-42,80}}, color={255,0,255}));
+ connect(enaDisChi.yChi[3], chiStaRet[2].u) annotation (Line(points={{-58,
+ 89.3333},{-50,89.3333},{-50,80},{-42,80}}, color={255,0,255}));
+ connect(chiStaRet[2].y, enaDisChi.uChi[3]) annotation (Line(points={{-18,80},
+ {0,80},{0,40},{-104,40},{-104,79.3333},{-82,79.3333}}, color={255,0,
+ 255}));
+ connect(onOff.y, enaDisChi.uOnOff)
+ annotation (Line(points={{-138,-60},{-100,-60},{-100,74},{-82,74}},
+ color={255,0,255}));
+ connect(disChi.y, enaDisChi.nexDisChi)
+ annotation (Line(points={{-138,-100},{-96,-100},{-96,71},{-82,71}},
+ color={255,127,0}));
+ connect(enaChi.y, enaOneChi.nexEnaChi)
+ annotation (Line(points={{-138,100},{40,100},{40,89},{98,89}},
+ color={255,127,0}));
+ connect(staUp.y, enaOneChi.uStaUp)
+ annotation (Line(points={{-138,60},{40,60},{40,86},{98,86}},
+ color={255,0,255}));
+ connect(chiIsoVal.y, enaOneChi.uEnaChiWatIsoVal)
+ annotation (Line(points={{-138,20},{44,20},{44,82},{98,82}},
+ color={255,0,255}));
+ connect(chiOne.y, enaOneChi.uChi[1])
+ annotation (Line(points={{-138,-20},{48,-20},{48,76.6667},{98,76.6667}},
+ color={255,0,255}));
+ connect(chiOne.y, enaOneChi.uChi[2])
+ annotation (Line(points={{-138,-20},{48,-20},{48,78},{98,78}},
+ color={255,0,255}));
+ connect(noOnOff.y, enaOneChi.uOnOff)
+ annotation (Line(points={{42,-60},{56,-60},{56,74},{98,74}},
+ color={255,0,255}));
+ connect(disChi1.y, enaOneChi.nexDisChi)
+ annotation (Line(points={{42,-100},{60,-100},{60,71},{98,71}},
+ color={255,127,0}));
+ connect(enaOneChi.yChi[3], chiStaRet1.u) annotation (Line(points={{122,
+ 89.3333},{130,89.3333},{130,80},{138,80}}, color={255,0,255}));
+ connect(chiStaRet1.y, enaOneChi.uChi[3]) annotation (Line(points={{162,80},{
+ 180,80},{180,40},{52,40},{52,79.3333},{98,79.3333}}, color={255,0,255}));
+
+annotation (
+ experiment(StopTime=3600, Tolerance=1e-06),
+ __Dymola_Commands(file="modelica://Buildings/Resources/Scripts/Dymola/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/Processes/Subsequences/Validation/EnableChiller.mos"
+ "Simulate and plot"),
+ Documentation(info="
+
+This example validates
+
+Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.Processes.Subsequences.EnableChiller.
+
+", revisions="
+
+-
+September 24, by Jianjun Hu:
+First implementation.
+
+
+"),
+Icon(coordinateSystem(extent={{-100,-100},{100,100}}),
+ graphics={
+ Ellipse(lineColor = {75,138,73},
+ fillColor={255,255,255},
+ fillPattern = FillPattern.Solid,
+ extent = {{-100,-100},{100,100}}),
+ Polygon(lineColor = {0,0,255},
+ fillColor = {75,138,73},
+ pattern = LinePattern.None,
+ fillPattern = FillPattern.Solid,
+ points = {{-36,60},{64,0},{-36,-60},{-36,60}})}),Diagram(
+ coordinateSystem(preserveAspectRatio=false, extent={{-220,-140},{220,140}})));
+end EnableChiller;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/Processes/Subsequences/Validation/HeadControl.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/Processes/Subsequences/Validation/HeadControl.mo
new file mode 100644
index 00000000000..72853057dd8
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/Processes/Subsequences/Validation/HeadControl.mo
@@ -0,0 +1,282 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.Processes.Subsequences.Validation;
+model HeadControl
+ "Validate sequence of enabling and disabling head pressure control loop"
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.Processes.Subsequences.HeadControl
+ enaHeaCon(
+ final nChi=2)
+ "Enable head pressure control after condenser water pump reset"
+ annotation (Placement(transformation(extent={{-40,130},{-20,150}})));
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.Processes.Subsequences.HeadControl
+ disHeaCon(
+ final nChi=2,
+ final thrTimEnb=0,
+ final waiTim=0,
+ final heaStaCha=false)
+ "Disable head pressure control of smaller chiller when the stage-up requires large chiller on and small chiller off"
+ annotation (Placement(transformation(extent={{60,130},{80,150}})));
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.Processes.Subsequences.HeadControl
+ disHeaCon1(
+ final nChi=2,
+ final thrTimEnb=0,
+ final waiTim=0,
+ final heaStaCha=false)
+ "Disable head pressure control of the chiller being disabled"
+ annotation (Placement(transformation(extent={{-40,-90},{-20,-70}})));
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.Processes.Subsequences.HeadControl
+ enaHeaCon1(
+ final nChi=2,
+ final thrTimEnb=0,
+ final waiTim=30,
+ final heaStaCha=true)
+ "Disable head pressure control of smaller chiller when the stage-up requires large chiller on and small chiller off"
+ annotation (Placement(transformation(extent={{100,-90},{120,-70}})));
+
+protected
+ Buildings.Controls.OBC.CDL.Logical.Sources.Pulse booPul(
+ final width=0.15,
+ final period=120) "Boolean pulse"
+ annotation (Placement(transformation(extent={{-140,110},{-120,130}})));
+ Buildings.Controls.OBC.CDL.Logical.Not staUp "Stage up command"
+ annotation (Placement(transformation(extent={{-100,110},{-80,130}})));
+ Buildings.Controls.OBC.CDL.Logical.Sources.Pulse booPul1(
+ final width=0.20,
+ final period=120) "Boolean pulse"
+ annotation (Placement(transformation(extent={{-140,150},{-120,170}})));
+ Buildings.Controls.OBC.CDL.Logical.Not upStrDev
+ "Upstream device reset status"
+ annotation (Placement(transformation(extent={{-100,150},{-80,170}})));
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant chiOne(
+ final k=true) "Operating chiller one"
+ annotation (Placement(transformation(extent={{-100,20},{-80,40}})));
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant enaChi(final k=2)
+ "Enabling chiller index"
+ annotation (Placement(transformation(extent={{-100,50},{-80,70}})));
+ Buildings.Controls.OBC.CDL.Logical.Pre heaPreConRet
+ "Return value of chiller head pressure control status"
+ annotation (Placement(transformation(extent={{0,90},{20,110}})));
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant disChi(final k=2)
+ "Disabling small chiller"
+ annotation (Placement(transformation(extent={{0,50},{20,70}})));
+ Buildings.Controls.OBC.CDL.Logical.Pre heaPreConRet1
+ "Return value of chiller head pressure control status"
+ annotation (Placement(transformation(extent={{100,90},{120,110}})));
+ Buildings.Controls.OBC.CDL.Logical.Switch chiTwo "Chiller two status"
+ annotation (Placement(transformation(extent={{140,70},{160,90}})));
+ Buildings.Controls.OBC.CDL.Logical.Sources.Pulse booPul2(
+ final width=0.15,
+ final period=120) "Boolean pulse"
+ annotation (Placement(transformation(extent={{-140,-110},{-120,-90}})));
+ Buildings.Controls.OBC.CDL.Logical.Not staUp1 "Stage up command"
+ annotation (Placement(transformation(extent={{-100,-110},{-80,-90}})));
+ Buildings.Controls.OBC.CDL.Logical.Sources.Pulse booPul3(
+ final width=0.20,
+ final period=120) "Boolean pulse"
+ annotation (Placement(transformation(extent={{-140,-70},{-120,-50}})));
+ Buildings.Controls.OBC.CDL.Logical.Not upStrDev1 "Upstream device reset status"
+ annotation (Placement(transformation(extent={{-100,-70},{-80,-50}})));
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant chiOne1(final k=true)
+ "Operating chiller one"
+ annotation (Placement(transformation(extent={{-100,-190},{-80,-170}})));
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant disChi1(final k=2)
+ "Disabling chiller index"
+ annotation (Placement(transformation(extent={{-100,-160},{-80,-140}})));
+ Buildings.Controls.OBC.CDL.Logical.Pre heaPreConRet2
+ "Return value of chiller head pressure control status"
+ annotation (Placement(transformation(extent={{0,-130},{20,-110}})));
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant enaChi1(
+ final k=2) "Enabling small chiller"
+ annotation (Placement(transformation(extent={{60,-126},{80,-106}})));
+ Buildings.Controls.OBC.CDL.Logical.Pre heaPreConRet3
+ "Return value of chiller head pressure control status"
+ annotation (Placement(transformation(extent={{140,-130},{160,-110}})));
+ Buildings.Controls.OBC.CDL.Logical.Switch chiTwo1 "Chiller two status"
+ annotation (Placement(transformation(extent={{40,-150},{60,-130}})));
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant enaPla(
+ final k=false)
+ "Plant is just enabled"
+ annotation (Placement(transformation(extent={{-140,0},{-120,20}})));
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant enaPla1(
+ final k=false)
+ "Plant is just enabled"
+ annotation (Placement(transformation(extent={{-140,-210},{-120,-190}})));
+equation
+ connect(booPul.y, staUp.u)
+ annotation (Line(points={{-118,120},{-102,120}}, color={255,0,255}));
+ connect(booPul1.y, upStrDev.u)
+ annotation (Line(points={{-118,160},{-102,160}}, color={255,0,255}));
+ connect(upStrDev.y, enaHeaCon.uUpsDevSta)
+ annotation (Line(points={{-78,160},{-60,160},{-60,144},{-42,144}},
+ color={255,0,255}));
+ connect(staUp.y, enaHeaCon.chaPro)
+ annotation (Line(points={{-78,120},{-60,120},{-60,140},{-42,140}},
+ color={255,0,255}));
+ connect(enaChi.y, enaHeaCon.nexChaChi)
+ annotation (Line(points={{-78,60},{-56,60},{-56,136},{-42,136}},
+ color={255,127,0}));
+ connect(chiOne.y, enaHeaCon.uChiHeaCon[1])
+ annotation (Line(points={{-78,30},{-52,30},{-52,131.5},{-42,131.5}},
+ color={255,0,255}));
+ connect(enaHeaCon.yChiHeaCon[2], heaPreConRet.u) annotation (Line(points={{-18,
+ 134.5},{-10,134.5},{-10,100},{-2,100}}, color={255,0,255}));
+ connect(heaPreConRet.y, enaHeaCon.uChiHeaCon[2]) annotation (Line(points={{22,100},
+ {30,100},{30,84},{-48,84},{-48,132.5},{-42,132.5}}, color={255,0,255}));
+ connect(upStrDev.y, disHeaCon.uUpsDevSta)
+ annotation (Line(points={{-78,160},{40,160},{40,144},{58,144}},
+ color={255,0,255}));
+ connect(staUp.y, disHeaCon.chaPro)
+ annotation (Line(points={{-78,120},{40,120},{40,140},{58,140}},
+ color={255,0,255}));
+ connect(disChi.y, disHeaCon.nexChaChi)
+ annotation (Line(points={{22,60},{44,60},{44,136},{58,136}},
+ color={255,127,0}));
+ connect(chiOne.y, disHeaCon.uChiHeaCon[1])
+ annotation (Line(points={{-78,30},{48,30},{48,131.5},{58,131.5}},
+ color={255,0,255}));
+ connect(disHeaCon.yChiHeaCon[2], heaPreConRet1.u) annotation (Line(points={{82,
+ 134.5},{90,134.5},{90,100},{98,100}}, color={255,0,255}));
+ connect(staUp.y, chiTwo.u2)
+ annotation (Line(points={{-78,120},{-60,120},{-60,80},{138,80}},
+ color={255,0,255}));
+ connect(heaPreConRet1.y, chiTwo.u1) annotation (Line(points={{122,100},{130,100},
+ {130,88},{138,88}}, color={255,0,255}));
+ connect(chiOne.y, chiTwo.u3)
+ annotation (Line(points={{-78,30},{120,30},{120,72},{138,72}},
+ color={255,0,255}));
+ connect(chiTwo.y, disHeaCon.uChiHeaCon[2])
+ annotation (Line(points={{162,80},{170,80},{170,60},{52,60},{52,132.5},{58,132.5}},
+ color={255,0,255}));
+ connect(booPul2.y, staUp1.u)
+ annotation (Line(points={{-118,-100},{-102,-100}}, color={255,0,255}));
+ connect(booPul3.y, upStrDev1.u)
+ annotation (Line(points={{-118,-60},{-102,-60}}, color={255,0,255}));
+ connect(upStrDev1.y, disHeaCon1.uUpsDevSta)
+ annotation (Line(points={{-78,-60},{-60,-60},{-60,-76},{-42,-76}},
+ color={255,0,255}));
+ connect(staUp1.y, disHeaCon1.chaPro)
+ annotation (Line(points={{-78,-100},{-60,-100},{-60,-80},{-42,-80}},
+ color={255,0,255}));
+ connect(disChi1.y, disHeaCon1.nexChaChi)
+ annotation (Line(points={{-78,-150},{-56,-150},{-56,-84},{-42,-84}},
+ color={255,127,0}));
+ connect(chiOne1.y, disHeaCon1.uChiHeaCon[1])
+ annotation (Line(points={{-78,-180},{-52,-180},{-52,-88.5},{-42,-88.5}},
+ color={255,0,255}));
+ connect(disHeaCon1.yChiHeaCon[2], heaPreConRet2.u) annotation (Line(points={{-18,
+ -85.5},{-10,-85.5},{-10,-120},{-2,-120}}, color={255,0,255}));
+ connect(enaHeaCon1.yChiHeaCon[2], heaPreConRet3.u) annotation (Line(points={{122,
+ -85.5},{130,-85.5},{130,-120},{138,-120}}, color={255,0,255}));
+ connect(staUp1.y, chiTwo1.u2)
+ annotation (Line(points={{-78,-100},{-60,-100},{-60,-140},{38,-140}},
+ color={255,0,255}));
+ connect(heaPreConRet2.y, chiTwo1.u1) annotation (Line(points={{22,-120},{30,-120},
+ {30,-132},{38,-132}}, color={255,0,255}));
+ connect(chiOne1.y, chiTwo1.u3)
+ annotation (Line(points={{-78,-180},{-52,-180},{-52,-148},{38,-148}},
+ color={255,0,255}));
+ connect(chiTwo1.y, disHeaCon1.uChiHeaCon[2])
+ annotation (Line(points={{62,-140},{70,-140},{70,-170},{-48,-170},{-48,-87.5},
+ {-42,-87.5}}, color={255,0,255}));
+ connect(upStrDev1.y, enaHeaCon1.uUpsDevSta)
+ annotation (Line(points={{-78,-60},{80,-60},{80,-76},{98,-76}},
+ color={255,0,255}));
+ connect(staUp1.y, enaHeaCon1.chaPro)
+ annotation (Line(points={{-78,-100},{80,-100},{80,-80},{98,-80}},
+ color={255,0,255}));
+ connect(enaChi1.y, enaHeaCon1.nexChaChi)
+ annotation (Line(points={{82,-116},{84,-116},{84,-84},{98,-84}},
+ color={255,127,0}));
+ connect(chiOne1.y, enaHeaCon1.uChiHeaCon[1])
+ annotation (Line(points={{-78,-180},{88,-180},{88,-88.5},{98,-88.5}},
+ color={255,0,255}));
+ connect(heaPreConRet3.y, enaHeaCon1.uChiHeaCon[2])
+ annotation (Line(points={{162,-120},{170,-120},{170,-150},{92,-150},{92,-87.5},
+ {98,-87.5}}, color={255,0,255}));
+ connect(enaPla.y, enaHeaCon.uEnaPla) annotation (Line(points={{-118,10},{-64,10},
+ {-64,148},{-42,148}}, color={255,0,255}));
+ connect(enaPla.y, disHeaCon.uEnaPla) annotation (Line(points={{-118,10},{36,10},
+ {36,148},{58,148}}, color={255,0,255}));
+ connect(enaPla1.y, disHeaCon1.uEnaPla) annotation (Line(points={{-118,-200},{-64,
+ -200},{-64,-72},{-42,-72}}, color={255,0,255}));
+ connect(enaPla1.y, enaHeaCon1.uEnaPla) annotation (Line(points={{-118,-200},{34,
+ -200},{34,-72},{98,-72}}, color={255,0,255}));
+annotation (
+ experiment(StopTime=120, Tolerance=1e-06),
+ __Dymola_Commands(file="modelica://Buildings/Resources/Scripts/Dymola/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/Processes/Subsequences/Validation/HeadControl.mos"
+ "Simulate and plot"),
+ Documentation(info="
+
+This example validates
+
+Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.Processes.Subsequences.HeadControl.
+
+", revisions="
+
+-
+September 24, by Jianjun Hu:
+First implementation.
+
+
+"),
+Icon(coordinateSystem(extent={{-100,-100},{100,100}}),
+ graphics={
+ Ellipse(lineColor = {75,138,73},
+ fillColor={255,255,255},
+ fillPattern = FillPattern.Solid,
+ extent = {{-100,-100},{100,100}}),
+ Polygon(lineColor = {0,0,255},
+ fillColor = {75,138,73},
+ pattern = LinePattern.None,
+ fillPattern = FillPattern.Solid,
+ points = {{-36,60},{64,0},{-36,-60},{-36,60}})}),Diagram(
+ coordinateSystem(preserveAspectRatio=false, extent={{-160,-220},{180,220}}),
+ graphics={
+ Text(
+ extent={{-138,194},{-4,174}},
+ textColor={0,0,127},
+ textString="enable head pressure control of the chiler being enabled."),
+ Text(
+ extent={{-140,202},{-52,186}},
+ textColor={0,0,127},
+ textString="after resetting condenser water pump,"),
+ Text(
+ extent={{44,190},{124,176}},
+ textColor={0,0,127},
+ textString="disable its head pressure control."),
+ Text(
+ extent={{44,200},{122,186}},
+ textColor={0,0,127},
+ textString="after small chiller being shut off,"),
+ Text(
+ extent={{-140,210},{-92,200}},
+ textColor={0,0,127},
+ textString="In stage up process,"),
+ Text(
+ extent={{44,210},{166,200}},
+ textColor={0,0,127},
+ textString="In stage up process that requires chillers on and off,"),
+ Text(
+ extent={{-146,-8},{-98,-18}},
+ textColor={0,0,127},
+ textString="In stage down process,"),
+ Text(
+ extent={{-146,-16},{-58,-32}},
+ textColor={0,0,127},
+ textString="after the disabling chiller being shut off,"),
+ Text(
+ extent={{-146,-28},{-72,-38}},
+ textColor={0,0,127},
+ textString="disable its head pressure control."),
+ Text(
+ extent={{42,-18},{120,-32}},
+ textColor={0,0,127},
+ textString="after minimum bypass being reset,"),
+ Text(
+ extent={{42,-8},{164,-18}},
+ textColor={0,0,127},
+ textString="In stage down process that requires chillers on and off,"),
+ Text(
+ extent={{44,-26},{174,-44}},
+ textColor={0,0,127},
+ textString="enable head pressure control of the chiler being enabled.")}));
+end HeadControl;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/Processes/Subsequences/Validation/NextChiller.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/Processes/Subsequences/Validation/NextChiller.mo
new file mode 100644
index 00000000000..7fee2337864
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/Processes/Subsequences/Validation/NextChiller.mo
@@ -0,0 +1,376 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.Processes.Subsequences.Validation;
+model NextChiller
+ "Validate sequence of identifying next enable or disable chillers"
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.Processes.Subsequences.NextChiller
+ nexChi
+ "Identify next enabling and disabling chiller during the staging up process"
+ annotation (Placement(transformation(extent={{-60,170},{-40,190}})));
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.Processes.Subsequences.NextChiller
+ nexChi1 "Identify next enabling during the staging up process"
+ annotation (Placement(transformation(extent={{240,170},{260,190}})));
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.Processes.Subsequences.NextChiller
+ nexChi2
+ "Identify next enabling and disabling chiller during the staging down process"
+ annotation (Placement(transformation(extent={{-60,-150},{-40,-130}})));
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.Processes.Subsequences.NextChiller
+ nexChi3 "Identify next disabling chiller during the staging down process"
+ annotation (Placement(transformation(extent={{240,-150},{260,-130}})));
+
+protected
+ Buildings.Controls.OBC.CDL.Logical.Switch chiSet[2]
+ "Chiller status setpoint"
+ annotation (Placement(transformation(extent={{-140,90},{-120,110}})));
+ Buildings.Controls.OBC.CDL.Logical.Switch inPro
+ "Check if it is in the staging process"
+ annotation (Placement(transformation(extent={{-140,30},{-120,50}})));
+ Buildings.Controls.OBC.CDL.Logical.Switch chiSet1[2]
+ "Chiller status setpoint"
+ annotation (Placement(transformation(extent={{160,90},{180,110}})));
+ Buildings.Controls.OBC.CDL.Logical.Switch inPro1
+ "Check if it is in the staging process"
+ annotation (Placement(transformation(extent={{160,30},{180,50}})));
+ Buildings.Controls.OBC.CDL.Logical.Switch chiSet2[2]
+ "Chiller status setpoint"
+ annotation (Placement(transformation(extent={{-140,-230},{-120,-210}})));
+ Buildings.Controls.OBC.CDL.Logical.Switch inPro2
+ "Check if it is in the staging process"
+ annotation (Placement(transformation(extent={{-140,-290},{-120,-270}})));
+ Buildings.Controls.OBC.CDL.Logical.Switch chiSet3[2]
+ "Chiller status setpoint"
+ annotation (Placement(transformation(extent={{160,-230},{180,-210}})));
+ Buildings.Controls.OBC.CDL.Logical.Switch inPro3
+ "Check if it is in the staging process"
+ annotation (Placement(transformation(extent={{160,-290},{180,-270}})));
+ Buildings.Controls.OBC.CDL.Logical.Sources.Pulse booPul(
+ final width=0.15,
+ final period=120) "Boolean pulse"
+ annotation (Placement(transformation(extent={{-260,150},{-240,170}})));
+ Buildings.Controls.OBC.CDL.Logical.Not staUp "Stage up command"
+ annotation (Placement(transformation(extent={{-220,150},{-200,170}})));
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant staOneChi[2](
+ final k={true,false}) "Vector of chillers status setpoint at stage one"
+ annotation (Placement(transformation(extent={{-260,70},{-240,90}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant upSta(
+ final k=2) "Stage two"
+ annotation (Placement(transformation(extent={{-260,230},{-240,250}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant dowSta(
+ final k=1) "Stage one"
+ annotation (Placement(transformation(extent={{-260,190},{-240,210}})));
+ Buildings.Controls.OBC.CDL.Continuous.Switch swi "Logical switch"
+ annotation (Placement(transformation(extent={{-180,210},{-160,230}})));
+ Buildings.Controls.OBC.CDL.Conversions.RealToInteger staSet
+ "Stage setpoint index"
+ annotation (Placement(transformation(extent={{-140,210},{-120,230}})));
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant staTwoChi[2](
+ final k={false,true})
+ "Vector of chillers status setpoint at stage two"
+ annotation (Placement(transformation(extent={{-260,110},{-240,130}})));
+ Buildings.Controls.OBC.CDL.Routing.BooleanScalarReplicator booRep(
+ final nout=2)
+ "Replicate boolean input"
+ annotation (Placement(transformation(extent={{-180,90},{-160,110}})));
+ Buildings.Controls.OBC.CDL.Logical.Sources.Pulse booPul4(
+ final width=0.5,
+ final period=120) "Boolean pulse"
+ annotation (Placement(transformation(extent={{-260,30},{-240,50}})));
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant notIn(
+ final k=false) "Not in the process"
+ annotation (Placement(transformation(extent={{-220,10},{-200,30}})));
+ Buildings.Controls.OBC.CDL.Logical.Sources.Pulse booPul1(
+ final width=0.15,
+ final period=120) "Boolean pulse"
+ annotation (Placement(transformation(extent={{40,150},{60,170}})));
+ Buildings.Controls.OBC.CDL.Logical.Not staUp1 "Stage up command"
+ annotation (Placement(transformation(extent={{80,150},{100,170}})));
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant staOneChi1[2](
+ final k={true,false})
+ "Vector of chillers status setpoint at stage one"
+ annotation (Placement(transformation(extent={{40,70},{60,90}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant upSta1(
+ final k=2)
+ "Stage two"
+ annotation (Placement(transformation(extent={{40,230},{60,250}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant dowSta1(
+ final k=1)
+ "Stage one"
+ annotation (Placement(transformation(extent={{40,190},{60,210}})));
+ Buildings.Controls.OBC.CDL.Continuous.Switch swi1 "Logical switch"
+ annotation (Placement(transformation(extent={{120,210},{140,230}})));
+ Buildings.Controls.OBC.CDL.Conversions.RealToInteger staSet1
+ "Stage setpoint index"
+ annotation (Placement(transformation(extent={{160,210},{180,230}})));
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant staTwoChi1[2](
+ final k={true,true})
+ "Vector of chillers status setpoint at stage two"
+ annotation (Placement(transformation(extent={{40,110},{60,130}})));
+ Buildings.Controls.OBC.CDL.Routing.BooleanScalarReplicator booRep1(
+ final nout=2)
+ "Replicate boolean input"
+ annotation (Placement(transformation(extent={{120,90},{140,110}})));
+ Buildings.Controls.OBC.CDL.Logical.Sources.Pulse booPul5(
+ final width=0.5,
+ final period=120) "Boolean pulse"
+ annotation (Placement(transformation(extent={{40,30},{60,50}})));
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant notIn1(
+ final k=false) "Not in the process"
+ annotation (Placement(transformation(extent={{80,10},{100,30}})));
+ Buildings.Controls.OBC.CDL.Logical.Sources.Pulse booPul2(
+ final width=0.15,
+ final period=120) "Boolean pulse"
+ annotation (Placement(transformation(extent={{-260,-170},{-240,-150}})));
+ Buildings.Controls.OBC.CDL.Logical.Not staDow "Stage down command"
+ annotation (Placement(transformation(extent={{-220,-170},{-200,-150}})));
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant staOneChi2[2](
+ final k={true,false})
+ "Vector of chillers status setpoint at stage one"
+ annotation (Placement(transformation(extent={{-260,-210},{-240,-190}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant upSta2(
+ final k=2) "Stage two"
+ annotation (Placement(transformation(extent={{-260,-130},{-240,-110}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant dowSta2(
+ final k=1) "Stage one"
+ annotation (Placement(transformation(extent={{-260,-90},{-240,-70}})));
+ Buildings.Controls.OBC.CDL.Continuous.Switch swi2 "Logical switch"
+ annotation (Placement(transformation(extent={{-180,-110},{-160,-90}})));
+ Buildings.Controls.OBC.CDL.Conversions.RealToInteger staSet2
+ "Stage setpoint index"
+ annotation (Placement(transformation(extent={{-140,-110},{-120,-90}})));
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant staTwoChi2[2](
+ final k={false,true})
+ "Vector of chillers status setpoint at stage two"
+ annotation (Placement(transformation(extent={{-260,-250},{-240,-230}})));
+ Buildings.Controls.OBC.CDL.Routing.BooleanScalarReplicator booRep2(
+ final nout=2) "Replicate boolean input"
+ annotation (Placement(transformation(extent={{-180,-230},{-160,-210}})));
+ Buildings.Controls.OBC.CDL.Logical.Sources.Pulse booPul6(
+ final width=0.5,
+ final period=120) "Boolean pulse"
+ annotation (Placement(transformation(extent={{-260,-290},{-240,-270}})));
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant notIn2(
+ final k=false) "Not in the process"
+ annotation (Placement(transformation(extent={{-220,-310},{-200,-290}})));
+ Buildings.Controls.OBC.CDL.Logical.Sources.Pulse booPul3(
+ final width=0.15,
+ final period=120) "Boolean pulse"
+ annotation (Placement(transformation(extent={{40,-170},{60,-150}})));
+ Buildings.Controls.OBC.CDL.Logical.Not staDow1 "Stage down command"
+ annotation (Placement(transformation(extent={{80,-170},{100,-150}})));
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant staOneChi3[2](
+ final k={true,false})
+ "Vector of chillers status setpoint at stage one"
+ annotation (Placement(transformation(extent={{40,-210},{60,-190}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant upSta3(
+ final k=2) "Stage two"
+ annotation (Placement(transformation(extent={{40,-130},{60,-110}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant dowSta3(
+ final k=1) "Stage one"
+ annotation (Placement(transformation(extent={{40,-90},{60,-70}})));
+ Buildings.Controls.OBC.CDL.Continuous.Switch swi3 "Logical switch"
+ annotation (Placement(transformation(extent={{120,-110},{140,-90}})));
+ Buildings.Controls.OBC.CDL.Conversions.RealToInteger staSet3 "Stage setpoint index"
+ annotation (Placement(transformation(extent={{160,-110},{180,-90}})));
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant staTwoChi3[2](
+ final k={true,true})
+ "Vector of chillers status setpoint at stage two"
+ annotation (Placement(transformation(extent={{40,-250},{60,-230}})));
+ Buildings.Controls.OBC.CDL.Routing.BooleanScalarReplicator booRep3(
+ final nout=2) "Replicate boolean input"
+ annotation (Placement(transformation(extent={{120,-230},{140,-210}})));
+ Buildings.Controls.OBC.CDL.Logical.Sources.Pulse booPul7(
+ final width=0.5,
+ final period=120) "Boolean pulse"
+ annotation (Placement(transformation(extent={{40,-290},{60,-270}})));
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant notIn3(
+ final k=false) "Not in the process"
+ annotation (Placement(transformation(extent={{80,-310},{100,-290}})));
+
+equation
+ connect(booPul.y, staUp.u)
+ annotation (Line(points={{-238,160},{-222,160}}, color={255,0,255}));
+ connect(staUp.y, swi.u2)
+ annotation (Line(points={{-198,160},{-190,160},{-190,220},{-182,220}},
+ color={255,0,255}));
+ connect(dowSta.y, swi.u3)
+ annotation (Line(points={{-238,200},{-220,200},{-220,212},{-182,212}},
+ color={0,0,127}));
+ connect(upSta.y, swi.u1)
+ annotation (Line(points={{-238,240},{-220,240},{-220,228},{-182,228}},
+ color={0,0,127}));
+ connect(swi.y, staSet.u)
+ annotation (Line(points={{-158,220},{-142,220}}, color={0,0,127}));
+ connect(staUp.y, booRep.u) annotation (Line(points={{-198,160},{-190,160},{-190,
+ 100},{-182,100}}, color={255,0,255}));
+ connect(booRep.y, chiSet.u2)
+ annotation (Line(points={{-158,100},{-142,100}}, color={255,0,255}));
+ connect(staUp.y, inPro.u2) annotation (Line(points={{-198,160},{-190,160},{-190,
+ 40},{-142,40}}, color={255,0,255}));
+ connect(booPul4.y, inPro.u1) annotation (Line(points={{-238,40},{-220,40},{-220,
+ 48},{-142,48}}, color={255,0,255}));
+ connect(notIn.y, inPro.u3) annotation (Line(points={{-198,20},{-160,20},{-160,
+ 32},{-142,32},{-142,32}}, color={255,0,255}));
+ connect(staSet.y, nexChi.uStaSet) annotation (Line(points={{-118,220},{-80,220},
+ {-80,187},{-62,187}}, color={255,127,0}));
+ connect(chiSet.y, nexChi.uChiSet) annotation (Line(points={{-118,100},{-100,100},
+ {-100,180},{-62,180}}, color={255,0,255}));
+ connect(inPro.y, nexChi.chaPro) annotation (Line(points={{-118,40},{-80,40},{-80,
+ 173},{-62,173}}, color={255,0,255}));
+ connect(booPul1.y, staUp1.u)
+ annotation (Line(points={{62,160},{78,160}}, color={255,0,255}));
+ connect(staUp1.y, swi1.u2) annotation (Line(points={{102,160},{110,160},{110,220},
+ {118,220}}, color={255,0,255}));
+ connect(dowSta1.y, swi1.u3) annotation (Line(points={{62,200},{80,200},{80,212},
+ {118,212}}, color={0,0,127}));
+ connect(upSta1.y, swi1.u1) annotation (Line(points={{62,240},{80,240},{80,228},
+ {118,228}}, color={0,0,127}));
+ connect(swi1.y, staSet1.u)
+ annotation (Line(points={{142,220},{158,220}}, color={0,0,127}));
+ connect(staUp1.y, booRep1.u) annotation (Line(points={{102,160},{110,160},{110,
+ 100},{118,100}}, color={255,0,255}));
+ connect(booRep1.y, chiSet1.u2)
+ annotation (Line(points={{142,100},{158,100}}, color={255,0,255}));
+ connect(staUp1.y, inPro1.u2) annotation (Line(points={{102,160},{110,160},{110,
+ 40},{158,40}}, color={255,0,255}));
+ connect(booPul5.y, inPro1.u1) annotation (Line(points={{62,40},{80,40},{80,48},
+ {158,48}}, color={255,0,255}));
+ connect(notIn1.y, inPro1.u3) annotation (Line(points={{102,20},{140,20},{140,32},
+ {158,32}}, color={255,0,255}));
+ connect(staSet1.y, nexChi1.uStaSet) annotation (Line(points={{182,220},{220,220},
+ {220,187},{238,187}}, color={255,127,0}));
+ connect(chiSet1.y, nexChi1.uChiSet) annotation (Line(points={{182,100},{200,100},
+ {200,180},{238,180}}, color={255,0,255}));
+ connect(inPro1.y, nexChi1.chaPro) annotation (Line(points={{182,40},{220,40},{
+ 220,173},{238,173}}, color={255,0,255}));
+ connect(booPul2.y, staDow.u)
+ annotation (Line(points={{-238,-160},{-222,-160}}, color={255,0,255}));
+ connect(staDow.y, swi2.u2) annotation (Line(points={{-198,-160},{-190,-160},{-190,
+ -100},{-182,-100}}, color={255,0,255}));
+ connect(swi2.y, staSet2.u)
+ annotation (Line(points={{-158,-100},{-142,-100}}, color={0,0,127}));
+ connect(staDow.y, booRep2.u) annotation (Line(points={{-198,-160},{-190,-160},
+ {-190,-220},{-182,-220}}, color={255,0,255}));
+ connect(staOneChi2.y, chiSet2.u1) annotation (Line(points={{-238,-200},{-150,-200},
+ {-150,-212},{-142,-212}}, color={255,0,255}));
+ connect(booRep2.y, chiSet2.u2)
+ annotation (Line(points={{-158,-220},{-142,-220}}, color={255,0,255}));
+ connect(staTwoChi2.y, chiSet2.u3) annotation (Line(points={{-238,-240},{-148,-240},
+ {-148,-228},{-142,-228}}, color={255,0,255}));
+ connect(staDow.y, inPro2.u2) annotation (Line(points={{-198,-160},{-190,-160},
+ {-190,-280},{-142,-280}}, color={255,0,255}));
+ connect(booPul6.y, inPro2.u1) annotation (Line(points={{-238,-280},{-220,-280},
+ {-220,-272},{-142,-272}}, color={255,0,255}));
+ connect(notIn2.y, inPro2.u3) annotation (Line(points={{-198,-300},{-160,-300},
+ {-160,-288},{-142,-288}}, color={255,0,255}));
+ connect(staSet2.y, nexChi2.uStaSet) annotation (Line(points={{-118,-100},{-80,
+ -100},{-80,-133},{-62,-133}}, color={255,127,0}));
+ connect(chiSet2.y, nexChi2.uChiSet) annotation (Line(points={{-118,-220},{-100,
+ -220},{-100,-140},{-62,-140}}, color={255,0,255}));
+ connect(inPro2.y, nexChi2.chaPro) annotation (Line(points={{-118,-280},{-80,-280},
+ {-80,-147},{-62,-147}}, color={255,0,255}));
+ connect(dowSta2.y, swi2.u1) annotation (Line(points={{-238,-80},{-200,-80},{-200,
+ -92},{-182,-92}}, color={0,0,127}));
+ connect(upSta2.y, swi2.u3) annotation (Line(points={{-238,-120},{-200,-120},{-200,
+ -108},{-182,-108}}, color={0,0,127}));
+ connect(staTwoChi.y, chiSet.u1) annotation (Line(points={{-238,120},{-150,120},
+ {-150,108},{-142,108}}, color={255,0,255}));
+ connect(staOneChi.y, chiSet.u3) annotation (Line(points={{-238,80},{-150,80},{
+ -150,92},{-142,92}}, color={255,0,255}));
+ connect(staTwoChi1.y, chiSet1.u1) annotation (Line(points={{62,120},{150,120},
+ {150,108},{158,108}}, color={255,0,255}));
+ connect(staOneChi1.y, chiSet1.u3) annotation (Line(points={{62,80},{150,80},{150,
+ 92},{158,92}}, color={255,0,255}));
+ connect(booPul3.y, staDow1.u)
+ annotation (Line(points={{62,-160},{78,-160}}, color={255,0,255}));
+ connect(staDow1.y, swi3.u2) annotation (Line(points={{102,-160},{110,-160},{110,
+ -100},{118,-100}}, color={255,0,255}));
+ connect(swi3.y, staSet3.u)
+ annotation (Line(points={{142,-100},{158,-100}}, color={0,0,127}));
+ connect(staDow1.y, booRep3.u) annotation (Line(points={{102,-160},{110,-160},{
+ 110,-220},{118,-220}}, color={255,0,255}));
+ connect(staOneChi3.y, chiSet3.u1) annotation (Line(points={{62,-200},{150,-200},
+ {150,-212},{158,-212}}, color={255,0,255}));
+ connect(booRep3.y, chiSet3.u2)
+ annotation (Line(points={{142,-220},{158,-220}}, color={255,0,255}));
+ connect(staTwoChi3.y, chiSet3.u3) annotation (Line(points={{62,-240},{152,-240},
+ {152,-228},{158,-228}}, color={255,0,255}));
+ connect(staDow1.y, inPro3.u2) annotation (Line(points={{102,-160},{110,-160},{
+ 110,-280},{158,-280}}, color={255,0,255}));
+ connect(booPul7.y, inPro3.u1) annotation (Line(points={{62,-280},{80,-280},{80,
+ -272},{158,-272}}, color={255,0,255}));
+ connect(notIn3.y, inPro3.u3) annotation (Line(points={{102,-300},{140,-300},{140,
+ -288},{158,-288}}, color={255,0,255}));
+ connect(staSet3.y, nexChi3.uStaSet) annotation (Line(points={{182,-100},{220,-100},
+ {220,-133},{238,-133}}, color={255,127,0}));
+ connect(chiSet3.y, nexChi3.uChiSet) annotation (Line(points={{182,-220},{200,-220},
+ {200,-140},{238,-140}}, color={255,0,255}));
+ connect(inPro3.y, nexChi3.chaPro) annotation (Line(points={{182,-280},{220,-280},
+ {220,-147},{238,-147}}, color={255,0,255}));
+ connect(dowSta3.y, swi3.u1) annotation (Line(points={{62,-80},{100,-80},{100,-92},
+ {118,-92}}, color={0,0,127}));
+ connect(upSta3.y, swi3.u3) annotation (Line(points={{62,-120},{100,-120},{100,
+ -108},{118,-108}}, color={0,0,127}));
+
+annotation (
+ experiment(StopTime=120, Tolerance=1e-06),
+ __Dymola_Commands(file="modelica://Buildings/Resources/Scripts/Dymola/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/Processes/Subsequences/Validation/NextChiller.mos"
+ "Simulate and plot"),
+ Documentation(info="
+
+This example validates
+
+Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.Processes.Subsequences.NextChiller.
+
+", revisions="
+
+-
+September 26, by Jianjun Hu:
+First implementation.
+
+
+"),
+Icon(coordinateSystem(extent={{-100,-100},{100,100}}),
+ graphics={
+ Ellipse(lineColor = {75,138,73},
+ fillColor={255,255,255},
+ fillPattern = FillPattern.Solid,
+ extent = {{-100,-100},{100,100}}),
+ Polygon(lineColor = {0,0,255},
+ fillColor = {75,138,73},
+ pattern = LinePattern.None,
+ fillPattern = FillPattern.Solid,
+ points = {{-36,60},{64,0},{-36,-60},{-36,60}})}),Diagram(
+ coordinateSystem(preserveAspectRatio=false, extent={{-280,-320},{280,320}}),
+ graphics={
+ Text(
+ extent={{-258,292},{-146,280}},
+ textColor={0,0,127},
+ textString="In stage up process (stage 1 to 2),"),
+ Text(
+ extent={{-254,278},{-94,266}},
+ textColor={0,0,127},
+ textString="requires small chiller (1) off and large chiller (2) on."),
+ Text(
+ extent={{64,278},{228,268}},
+ textColor={0,0,127},
+ textString="add one more chiller (1) on top of current chiller (2)."),
+ Text(
+ extent={{62,292},{174,280}},
+ textColor={0,0,127},
+ textString="In stage up process (stage 2 to 3),"),
+ Text(
+ extent={{-256,-40},{-96,-52}},
+ textColor={0,0,127},
+ textString="requires large chiller (2) off and small chiller (1) on."),
+ Text(
+ extent={{-260,-26},{-140,-36}},
+ textColor={0,0,127},
+ textString="In stage down process (stage 2 to 1),"),
+ Text(
+ extent={{58,-42},{130,-52}},
+ textColor={0,0,127},
+ textString="disable chiller (2)."),
+ Text(
+ extent={{62,-28},{182,-38}},
+ textColor={0,0,127},
+ textString="In stage down process (stage 2 to 1),")}));
+end NextChiller;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/Processes/Subsequences/Validation/ReduceDemand.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/Processes/Subsequences/Validation/ReduceDemand.mo
new file mode 100644
index 00000000000..106fc120f2f
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/Processes/Subsequences/Validation/ReduceDemand.mo
@@ -0,0 +1,200 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.Processes.Subsequences.Validation;
+model ReduceDemand
+ "Validate sequence of reducing chiller demand when there is stage up command"
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.Processes.Subsequences.ReduceDemand
+ chiDemRed(
+ final nChi=2)
+ "Reduce operaing chiller load as the first step of stage up process"
+ annotation (Placement(transformation(extent={{-100,100},{-80,120}})));
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.Processes.Subsequences.ReduceDemand
+ chiDemRed1(
+ final nChi=2)
+ "Reduce operaing chiller load as the first step of stage down process when it requires another chiller on"
+ annotation (Placement(transformation(extent={{200,50},{220,70}})));
+
+protected
+ Buildings.Controls.OBC.CDL.Logical.Sources.Pulse booPul(
+ final width=0.15, final period=600) "Boolean pulse"
+ annotation (Placement(transformation(extent={{-260,90},{-240,110}})));
+ Buildings.Controls.OBC.CDL.Logical.Not limDem "Limit demand command"
+ annotation (Placement(transformation(extent={{-220,90},{-200,110}})));
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant chiOn(
+ final k=true) "Operating chiller one"
+ annotation (Placement(transformation(extent={{-260,-150},{-240,-130}})));
+ Buildings.Controls.OBC.CDL.Continuous.Switch swi "Logical switch"
+ annotation (Placement(transformation(extent={{-160,50},{-140,70}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant chiLoa(
+ final k=1000) "Chiller load"
+ annotation (Placement(transformation(extent={{-260,50},{-240,70}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant zerLoa(
+ final k=0) "Zero chiller load"
+ annotation (Placement(transformation(extent={{-260,10},{-240,30}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant yOpeParLoaRatMin(
+ final k=0.7)
+ "Minimum cycling operative partial load ratio"
+ annotation (Placement(transformation(extent={{-260,-30},{-240,-10}})));
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant staDow(
+ final k=false) "Stage down command"
+ annotation (Placement(transformation(extent={{-260,-70},{-240,-50}})));
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant onOff(
+ final k=false) "Chiller on-off command"
+ annotation (Placement(transformation(extent={{-260,-110},{-240,-90}})));
+ Buildings.Controls.OBC.CDL.Logical.Sources.Pulse booPul1(
+ final width=0.15, final period=600)
+ "Boolean pulse"
+ annotation (Placement(transformation(extent={{40,90},{60,110}})));
+ Buildings.Controls.OBC.CDL.Logical.Not limDem1 "Limit demand command"
+ annotation (Placement(transformation(extent={{80,90},{100,110}})));
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant chiOn1[2](
+ final k=fill(true,2)) "Operating chiller one"
+ annotation (Placement(transformation(extent={{40,-150},{60,-130}})));
+ Buildings.Controls.OBC.CDL.Continuous.Switch swi1[2] "Logical switch"
+ annotation (Placement(transformation(extent={{140,-50},{160,-30}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant chiLoa1(
+ final k=1000) "Chiller load"
+ annotation (Placement(transformation(extent={{40,-50},{60,-30}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant yOpeParLoaRatMin1(
+ final k=0.7)
+ "Minimum cycling operative partial load ratio"
+ annotation (Placement(transformation(extent={{40,-100},{60,-80}})));
+ Buildings.Controls.OBC.CDL.Discrete.ZeroOrderHold zerOrdHol(
+ final samplePeriod=20)
+ "Output the input signal with zero order hold"
+ annotation (Placement(transformation(extent={{-60,90},{-40,110}})));
+ Buildings.Controls.OBC.CDL.Discrete.ZeroOrderHold zerOrdHol1[2](
+ final samplePeriod=fill(20,2))
+ "Output the input signal with zero order hold"
+ annotation (Placement(transformation(extent={{240,40},{260,60}})));
+ Buildings.Controls.OBC.CDL.Routing.BooleanScalarReplicator booRep(
+ final nout=2) "Replicate boolean input"
+ annotation (Placement(transformation(extent={{140,20},{160,40}})));
+ Buildings.Controls.OBC.CDL.Routing.RealScalarReplicator reaRep(
+ final nout=2) "Replicate real input"
+ annotation (Placement(transformation(extent={{80,-50},{100,-30}})));
+
+equation
+ connect(booPul.y, limDem.u)
+ annotation (Line(points={{-238,100},{-222,100}}, color={255,0,255}));
+ connect(limDem.y, chiDemRed.uDemLim)
+ annotation (Line(points={{-198,100},{-180,100},{-180,119},{-102,119}},
+ color={255,0,255}));
+ connect(chiDemRed.yChiDem[1], zerOrdHol.u)
+ annotation (Line(points={{-78,113.5},{-70,113.5},{-70,100},{-62,100}},
+ color={0,0,127}));
+ connect(limDem.y, swi.u2)
+ annotation (Line(points={{-198,100},{-180,100},{-180,60},{-162,60}},
+ color={255,0,255}));
+ connect(chiLoa.y, swi.u3)
+ annotation (Line(points={{-238,60},{-190,60},{-190,52},{-162,52}},
+ color={0,0,127}));
+ connect(zerOrdHol.y, swi.u1)
+ annotation (Line(points={{-38,100},{-30,100},{-30,80},{-170,80},{-170,68},
+ {-162,68}}, color={0,0,127}));
+ connect(swi.y, chiDemRed.uChiLoa[1])
+ annotation (Line(points={{-138,60},{-130,60},{-130,114.5},{-102,114.5}},
+ color={0,0,127}));
+ connect(zerLoa.y, chiDemRed.uChiLoa[2])
+ annotation (Line(points={{-238,20},{-126,20},{-126,115.5},{-102,115.5}},
+ color={0,0,127}));
+ connect(yOpeParLoaRatMin.y, chiDemRed.yOpeParLoaRatMin)
+ annotation (Line(points={{-238,-20},{-122,-20},{-122,111},{-102,111}},
+ color={0,0,127}));
+ connect(staDow.y, chiDemRed.uStaDow)
+ annotation (Line(points={{-238,-60},{-118,-60},{-118,108},{-102,108}},
+ color={255,0,255}));
+ connect(onOff.y, chiDemRed.uOnOff)
+ annotation (Line(points={{-238,-100},{-114,-100},{-114,105},{-102,105}},
+ color={255,0,255}));
+ connect(chiOn.y, chiDemRed.uChi[1])
+ annotation (Line(points={{-238,-140},{-110,-140},{-110,100.5},{-102,100.5}},
+ color={255,0,255}));
+ connect(onOff.y, chiDemRed.uChi[2])
+ annotation (Line(points={{-238,-100},{-106,-100},{-106,101.5},{-102,101.5}},
+ color={255,0,255}));
+ connect(booPul1.y, limDem1.u)
+ annotation (Line(points={{62,100},{78,100}}, color={255,0,255}));
+ connect(limDem1.y, chiDemRed1.uDemLim)
+ annotation (Line(points={{102,100},{120,100},{120,69},{198,69}},
+ color={255,0,255}));
+ connect(yOpeParLoaRatMin1.y, chiDemRed1.yOpeParLoaRatMin)
+ annotation (Line(points={{62,-90},{178,-90},{178,61},{198,61}},
+ color={0,0,127}));
+ connect(chiDemRed1.yChiDem, zerOrdHol1.u)
+ annotation (Line(points={{222,64},{230,64},{230,50},{238,50}},
+ color={0,0,127}));
+ connect(chiLoa1.y, reaRep.u)
+ annotation (Line(points={{62,-40},{78,-40}}, color={0,0,127}));
+ connect(booRep.y, swi1.u2)
+ annotation (Line(points={{162,30},{170,30},{170,10},{120,10},{120,-40},
+ {138,-40}}, color={255,0,255}));
+ connect(reaRep.y, swi1.u3)
+ annotation (Line(points={{102,-40},{110,-40},{110,-48},{138,-48}},
+ color={0,0,127}));
+ connect(zerOrdHol1.y, swi1.u1)
+ annotation (Line(points={{262,50},{270,50},{270,-10},{130,-10},{130,-32},
+ {138,-32}}, color={0,0,127}));
+ connect(swi1.y, chiDemRed1.uChiLoa)
+ annotation (Line(points={{162,-40},{174,-40},{174,65},{198,65}},
+ color={0,0,127}));
+ connect(limDem1.y, booRep.u)
+ annotation (Line(points={{102,100},{120,100},{120,30},{138,30}},
+ color={255,0,255}));
+ connect(limDem1.y, chiDemRed1.uStaDow)
+ annotation (Line(points={{102,100},{120,100},{120,58},{198,58}},
+ color={255,0,255}));
+ connect(limDem1.y, chiDemRed1.uOnOff)
+ annotation (Line(points={{102,100},{120,100},{120,55},{198,55}},
+ color={255,0,255}));
+ connect(chiOn1.y, chiDemRed1.uChi)
+ annotation (Line(points={{62,-140},{182,-140},{182,51},{198,51}},
+ color={255,0,255}));
+
+annotation (
+ experiment(StopTime=600, Tolerance=1e-06),
+ __Dymola_Commands(file="modelica://Buildings/Resources/Scripts/Dymola/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/Processes/Subsequences/Validation/ReduceDemand.mos"
+ "Simulate and plot"),
+ Documentation(info="
+
+This example validates
+
+Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.Processes.Subsequences.ReduceDemand.
+
+", revisions="
+
+-
+September 26, by Jianjun Hu:
+First implementation.
+
+
+"),
+Icon(coordinateSystem(extent={{-100,-100},{100,100}}),
+ graphics={
+ Ellipse(lineColor = {75,138,73},
+ fillColor={255,255,255},
+ fillPattern = FillPattern.Solid,
+ extent = {{-100,-100},{100,100}}),
+ Polygon(lineColor = {0,0,255},
+ fillColor = {75,138,73},
+ pattern = LinePattern.None,
+ fillPattern = FillPattern.Solid,
+ points = {{-36,60},{64,0},{-36,-60},{-36,60}})}),Diagram(
+ coordinateSystem(preserveAspectRatio=false, extent={{-280,-160},{280,160}}),
+ graphics={
+ Text(
+ extent={{-258,152},{-184,142}},
+ textColor={0,0,127},
+ textString="In stage up process,"),
+ Text(
+ extent={{-258,138},{-166,128}},
+ textColor={0,0,127},
+ textString="enable one more chiller."),
+ Text(
+ extent={{38,136},{130,126}},
+ textColor={0,0,127},
+ textString="enable enabling chiller."),
+ Text(
+ extent={{42,152},{244,140}},
+ textColor={0,0,127},
+ textString="In stage down process that requires chiller on and off,")}));
+end ReduceDemand;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/Processes/Subsequences/Validation/ResetMinBypass.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/Processes/Subsequences/Validation/ResetMinBypass.mo
new file mode 100644
index 00000000000..8a6cece67ce
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/Processes/Subsequences/Validation/ResetMinBypass.mo
@@ -0,0 +1,81 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.Processes.Subsequences.Validation;
+model ResetMinBypass
+ "Validate sequence of reseting minimum flow bypass"
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.Processes.Subsequences.ResetMinBypass
+ minBypRes
+ "Check if the setpoint has achieved"
+ annotation (Placement(transformation(extent={{40,38},{60,58}})));
+
+protected
+ Buildings.Controls.OBC.CDL.Logical.Sources.Pulse booPul1(
+ final width=0.15,
+ final period=600) "Boolean pulse"
+ annotation (Placement(transformation(extent={{-80,0},{-60,20}})));
+ Buildings.Controls.OBC.CDL.Logical.Not staUp "Stage up command"
+ annotation (Placement(transformation(extent={{-40,0},{-20,20}})));
+ Buildings.Controls.OBC.CDL.Logical.Not upStrDev
+ "Upstream device reset status"
+ annotation (Placement(transformation(extent={{-40,40},{-20,60}})));
+ Buildings.Controls.OBC.CDL.Logical.Sources.Pulse booPul2(
+ final width=0.2,
+ final period=600) "Boolean pulse"
+ annotation (Placement(transformation(extent={{-80,40},{-60,60}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Ramp minFloSet(
+ final height=0.5,
+ final duration=60,
+ final offset=1,
+ final startTime=120) "Minimum chiller water flow setpoint"
+ annotation (Placement(transformation(extent={{-40,-80},{-20,-60}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Ramp meaFlo(
+ final height=0.5,
+ final duration=80,
+ final offset=1,
+ final startTime=120) "Measured chiller water flow"
+ annotation (Placement(transformation(extent={{-40,-40},{-20,-20}})));
+
+equation
+ connect(booPul2.y, upStrDev.u)
+ annotation (Line(points={{-58,50},{-42,50}}, color={255,0,255}));
+ connect(booPul1.y, staUp.u)
+ annotation (Line(points={{-58,10},{-42,10}}, color={255,0,255}));
+ connect(upStrDev.y, minBypRes.uUpsDevSta)
+ annotation (Line(points={{-18,50},{0,50},{0,56},{38,56}}, color={255,0,255}));
+ connect(staUp.y, minBypRes.chaPro)
+ annotation (Line(points={{-18,10},{4,10},{4,52},{38,52}}, color={255,0,255}));
+ connect(meaFlo.y, minBypRes.VChiWat_flow)
+ annotation (Line(points={{-18,-30},{8,-30},{8,44},{38,44}}, color={0,0,127}));
+ connect(minFloSet.y, minBypRes.VMinChiWat_setpoint)
+ annotation (Line(points={{-18,-70},{12,-70},{12,40},{38,40}}, color={0,0,127}));
+
+annotation (
+ experiment(StopTime=600, Tolerance=1e-06),
+ __Dymola_Commands(file="modelica://Buildings/Resources/Scripts/Dymola/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/Processes/Subsequences/Validation/ResetMinBypass.mos"
+ "Simulate and plot"),
+ Documentation(info="
+
+This example validates
+
+Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.Processes.Subsequences.ResetMinBypass.
+
+", revisions="
+
+-
+September 26, by Jianjun Hu:
+First implementation.
+
+
+"),
+Icon(coordinateSystem(extent={{-100,-120},{100,100}}),
+ graphics={
+ Ellipse(lineColor = {75,138,73},
+ fillColor={255,255,255},
+ fillPattern = FillPattern.Solid,
+ extent = {{-100,-100},{100,100}}),
+ Polygon(lineColor = {0,0,255},
+ fillColor = {75,138,73},
+ pattern = LinePattern.None,
+ fillPattern = FillPattern.Solid,
+ points = {{-36,60},{64,0},{-36,-60},{-36,60}})}),Diagram(
+ coordinateSystem(preserveAspectRatio=false, extent={{-100,-100},{100,100}})));
+end ResetMinBypass;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/Processes/Subsequences/Validation/UpEndWithOff.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/Processes/Subsequences/Validation/UpEndWithOff.mo
new file mode 100644
index 00000000000..ad85965ce79
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/Processes/Subsequences/Validation/UpEndWithOff.mo
@@ -0,0 +1,239 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.Processes.Subsequences.Validation;
+model UpEndWithOff
+ "Validate sequence of end staging up process which requires chiller OFF"
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.Processes.Subsequences.UpEnd
+ endUp1(
+ final nChi=2,
+ final chaChiWatIsoTim=300,
+ final byPasSetTim=300,
+ final minFloSet={0.5,1},
+ final maxFloSet={1,1.5})
+ "End staging up process which does require one chiller on and another chiller off"
+ annotation (Placement(transformation(extent={{60,150},{80,170}})));
+
+protected
+ Buildings.Controls.OBC.CDL.Conversions.RealToInteger reaToInt1
+ "Convert real input to integer output"
+ annotation (Placement(transformation(extent={{-60,150},{-40,170}})));
+ Buildings.Controls.OBC.CDL.Continuous.Switch swi1 "Logical switch"
+ annotation (Placement(transformation(extent={{-100,150},{-80,170}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant nexEnaChi1(final k=2)
+ "Next enable chiller"
+ annotation (Placement(transformation(extent={{-180,170},{-160,190}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant zer1(final k=0)
+ "Constant zero"
+ annotation (Placement(transformation(extent={{-180,130},{-160,150}})));
+ Buildings.Controls.OBC.CDL.Logical.Sources.Pulse booPul3(
+ final width=0.15,
+ final period=1200) "Boolean pulse"
+ annotation (Placement(transformation(extent={{-180,80},{-160,100}})));
+ Buildings.Controls.OBC.CDL.Logical.Not staUp1 "Stage up command"
+ annotation (Placement(transformation(extent={{-140,80},{-120,100}})));
+ Buildings.Controls.OBC.CDL.Logical.Not upStrDev1 "Upstream device status"
+ annotation (Placement(transformation(extent={{-140,40},{-120,60}})));
+ Buildings.Controls.OBC.CDL.Logical.Sources.Pulse booPul4(
+ final width=0.20,
+ final period=1200) "Boolean pulse"
+ annotation (Placement(transformation(extent={{-180,40},{-160,60}})));
+ Buildings.Controls.OBC.CDL.Logical.Pre chiOneSta1(final pre_u_start=true)
+ "Chiller one status"
+ annotation (Placement(transformation(extent={{140,120},{160,140}})));
+ Buildings.Controls.OBC.CDL.Logical.Pre chiTwoSta1(final pre_u_start=false)
+ "Chiller two status"
+ annotation (Placement(transformation(extent={{140,80},{160,100}})));
+ Buildings.Controls.OBC.CDL.Conversions.RealToInteger reaToInt2
+ "Convert real input to integer output"
+ annotation (Placement(transformation(extent={{-60,-20},{-40,0}})));
+ Buildings.Controls.OBC.CDL.Continuous.Switch swi3 "Logical switch"
+ annotation (Placement(transformation(extent={{-100,-20},{-80,0}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant zer4(final k=0)
+ "Constant zero"
+ annotation (Placement(transformation(extent={{-180,-40},{-160,-20}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant nexDisChi2(final k=1)
+ "Next disable chiller"
+ annotation (Placement(transformation(extent={{-180,0},{-160,20}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant fulOpe(final k=1)
+ "Full open"
+ annotation (Placement(transformation(extent={{-180,-80},{-160,-60}})));
+ Buildings.Controls.OBC.CDL.Continuous.Switch chiIsoVal1
+ "Chilled water isolation valve one"
+ annotation (Placement(transformation(extent={{-100,-80},{-80,-60}})));
+ Buildings.Controls.OBC.CDL.Discrete.ZeroOrderHold zerOrdHol1[2](
+ final samplePeriod=fill(10, 2))
+ "Output the input signal with a zero order hold"
+ annotation (Placement(transformation(extent={{140,-20},{160,0}})));
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant enaHeaCon(final k=true)
+ "Enable head pressure control"
+ annotation (Placement(transformation(extent={{-180,-170},{-160,-150}})));
+ Buildings.Controls.OBC.CDL.Logical.Switch chiOneHeaCon
+ "Chiller one head pressure control"
+ annotation (Placement(transformation(extent={{-100,-170},{-80,-150}})));
+ Buildings.Controls.OBC.CDL.Logical.Pre chiOneHea1(final pre_u_start=true)
+ "Chiller one head pressure control"
+ annotation (Placement(transformation(extent={{140,-130},{160,-110}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant chiWatFlo1(final k=1)
+ "Chilled water flow rate"
+ annotation (Placement(transformation(extent={{-180,-210},{-160,-190}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant chiWatFlo2(final k=1.667)
+ "Minimum chilled water flow setpoint calculated from upstream process"
+ annotation (Placement(transformation(extent={{-180,-250},{-160,-230}})));
+
+equation
+ connect(booPul3.y, staUp1.u)
+ annotation (Line(points={{-158,90},{-142,90}}, color={255,0,255}));
+ connect(booPul4.y, upStrDev1.u)
+ annotation (Line(points={{-158,50},{-142,50}}, color={255,0,255}));
+ connect(nexEnaChi1.y, swi1.u1)
+ annotation (Line(points={{-158,180},{-140,180},{-140,168},{-102,168}},
+ color={0,0,127}));
+ connect(zer1.y, swi1.u3)
+ annotation (Line(points={{-158,140},{-140,140},{-140,152},{-102,152}},
+ color={0,0,127}));
+ connect(swi1.y, reaToInt1.u)
+ annotation (Line(points={{-78,160},{-62,160}}, color={0,0,127}));
+ connect(staUp1.y, swi1.u2)
+ annotation (Line(points={{-118,90},{-110,90},{-110,160},{-102,160}},
+ color={255,0,255}));
+ connect(reaToInt1.y, endUp1.nexEnaChi)
+ annotation (Line(points={{-38,160},{-20,160},{-20,172},{58,172}},
+ color={255,127,0}));
+ connect(staUp1.y, endUp1.uStaUp)
+ annotation (Line(points={{-118,90},{-16,90},{-16,170},{58,170}},
+ color={255,0,255}));
+ connect(upStrDev1.y, endUp1.uEnaChiWatIsoVal)
+ annotation (Line(points={{-118,50},{-12,50},{-12,168},{58,168}},
+ color={255,0,255}));
+ connect(endUp1.yChi[1], chiOneSta1.u)
+ annotation (Line(points={{82,168.5},{128,168.5},{128,130},{138,130}},
+ color={255,0,255}));
+ connect(endUp1.yChi[2], chiTwoSta1.u)
+ annotation (Line(points={{82,169.5},{130,169.5},{130,90},{138,90}},
+ color={255,0,255}));
+ connect(chiTwoSta1.y, endUp1.uChi[2])
+ annotation (Line(points={{162,90},{176,90},{176,60},{-8,60},{-8,166.5},{58,166.5}},
+ color={255,0,255}));
+ connect(chiOneSta1.y, endUp1.uChi[1])
+ annotation (Line(points={{162,130},{180,130},{180,40},{-4,40},{-4,165.5},{58,
+ 165.5}},
+ color={255,0,255}));
+ connect(staUp1.y, endUp1.uOnOff)
+ annotation (Line(points={{-118,90},{0,90},{0,164},{58,164}},
+ color={255,0,255}));
+ connect(nexDisChi2.y, swi3.u1)
+ annotation (Line(points={{-158,10},{-140,10},{-140,-2},{-102,-2}},
+ color={0,0,127}));
+ connect(zer4.y, swi3.u3)
+ annotation (Line(points={{-158,-30},{-140,-30},{-140,-18},{-102,-18}},
+ color={0,0,127}));
+ connect(staUp1.y, swi3.u2)
+ annotation (Line(points={{-118,90},{-110,90},{-110,-10},{-102,-10}},
+ color={255,0,255}));
+ connect(swi3.y, reaToInt2.u)
+ annotation (Line(points={{-78,-10},{-62,-10}}, color={0,0,127}));
+ connect(reaToInt2.y, endUp1.nexDisChi)
+ annotation (Line(points={{-38,-10},{4,-10},{4,162},{58,162}},
+ color={255,127,0}));
+ connect(chiTwoSta1.y, endUp1.uChiWatReq[2])
+ annotation (Line(points={{162,90},{176,90},{176,60},{8,60},{8,160.5},{58,160.5}},
+ color={255,0,255}));
+ connect(chiOneSta1.y, endUp1.uChiWatReq[1])
+ annotation (Line(points={{162,130},{180,130},{180,40},{12,40},{12,159.5},{58,
+ 159.5}},
+ color={255,0,255}));
+ connect(fulOpe.y, chiIsoVal1.u3)
+ annotation (Line(points={{-158,-70},{-140,-70},{-140,-78},{-102,-78}},
+ color={0,0,127}));
+ connect(staUp1.y, chiIsoVal1.u2)
+ annotation (Line(points={{-118,90},{-110,90},{-110,-70},{-102,-70}},
+ color={255,0,255}));
+ connect(endUp1.yChiWatIsoVal, zerOrdHol1.u)
+ annotation (Line(points={{82,165},{124,165},{124,-10},{138,-10}},
+ color={0,0,127}));
+ connect(zerOrdHol1[1].y, chiIsoVal1.u1)
+ annotation (Line(points={{162,-10},{166,-10},{166,-40},{-120,-40},{-120,-62},
+ {-102,-62}}, color={0,0,127}));
+ connect(chiIsoVal1.y, endUp1.uChiWatIsoVal[1])
+ annotation (Line(points={{-78,-70},{16,-70},{16,157.5},{58,157.5}},
+ color={0,0,127}));
+ connect(chiOneSta1.y, endUp1.uConWatReq[1])
+ annotation (Line(points={{162,130},{180,130},{180,40},{24,40},{24,155.5},{58,
+ 155.5}},
+ color={255,0,255}));
+ connect(chiTwoSta1.y, endUp1.uConWatReq[2])
+ annotation (Line(points={{162,90},{176,90},{176,60},{28,60},{28,156.5},{58,156.5}},
+ color={255,0,255}));
+ connect(enaHeaCon.y, chiOneHeaCon.u3)
+ annotation (Line(points={{-158,-160},{-140,-160},{-140,-168},{-102,-168}},
+ color={255,0,255}));
+ connect(staUp1.y, chiOneHeaCon.u2)
+ annotation (Line(points={{-118,90},{-110,90},{-110,-160},{-102,-160}},
+ color={255,0,255}));
+ connect(endUp1.yChiHeaCon[1], chiOneHea1.u)
+ annotation (Line(points={{82,160.5},{120,160.5},{120,-120},{138,-120}},
+ color={255,0,255}));
+ connect(chiOneHea1.y, chiOneHeaCon.u1)
+ annotation (Line(points={{162,-120},{170,-120},{170,-140},{-120,-140},
+ {-120,-152},{-102,-152}}, color={255,0,255}));
+ connect(chiOneHeaCon.y, endUp1.uChiHeaCon[1])
+ annotation (Line(points={{-78,-160},{32,-160},{32,153.5},{58,153.5}},
+ color={255,0,255}));
+ connect(chiWatFlo1.y, endUp1.VChiWat_flow)
+ annotation (Line(points={{-158,-200},{40,-200},{40,152},{58,152}},
+ color={0,0,127}));
+ connect(fulOpe.y, endUp1.uChiWatIsoVal[2])
+ annotation (Line(points={{-158,-70},{-140,-70},{-140,-100},{20,-100},{20,158.5},
+ {58,158.5}},
+ color={0,0,127}));
+ connect(enaHeaCon.y, endUp1.uChiHeaCon[2])
+ annotation (Line(points={{-158,-160},{-140,-160},{-140,-180},{36,-180},{36,154.5},
+ {58,154.5}},
+ color={255,0,255}));
+ connect(chiWatFlo2.y, endUp1.VMinChiWat_setpoint)
+ annotation (Line(points={{-158,-240},{44,-240},{44,150},{58,150}},
+ color={0,0,127}));
+
+annotation (
+ experiment(StopTime=1200, Tolerance=1e-06),
+ __Dymola_Commands(file="modelica://Buildings/Resources/Scripts/Dymola/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/Processes/Subsequences/Validation/UpEndWithOff.mos"
+ "Simulate and plot"),
+ Documentation(info="
+
+This example validates
+
+Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.Processes.Subsequences.UpEnd.
+
+", revisions="
+
+-
+September 30, by Jianjun Hu:
+First implementation.
+
+
+"),
+Icon(coordinateSystem(extent={{-100,-100},{100,100}}),
+ graphics={
+ Ellipse(lineColor = {75,138,73},
+ fillColor={255,255,255},
+ fillPattern = FillPattern.Solid,
+ extent = {{-100,-100},{100,100}}),
+ Polygon(lineColor = {0,0,255},
+ fillColor = {75,138,73},
+ pattern = LinePattern.None,
+ fillPattern = FillPattern.Solid,
+ points = {{-36,60},{64,0},{-36,-60},{-36,60}})}),Diagram(
+ coordinateSystem(preserveAspectRatio=false, extent={{-200,-260},{200,260}}),
+ graphics={
+ Text(
+ extent={{-182,250},{-150,242}},
+ textColor={0,0,127},
+ textString="Stage up:"),
+ Text(
+ extent={{-176,236},{-16,226}},
+ textColor={0,0,127},
+ textString="from stage 1 which has small chiller 1 being enabled, "),
+ Text(
+ extent={{-180,224},{82,210}},
+ textColor={0,0,127},
+ textString="to stage 2 which has small chiller 1 being disabled and large chiller 2 being enabled.")}));
+end UpEndWithOff;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/Processes/Subsequences/Validation/UpEndWithoutOff.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/Processes/Subsequences/Validation/UpEndWithoutOff.mo
new file mode 100644
index 00000000000..68c3140b735
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/Processes/Subsequences/Validation/UpEndWithoutOff.mo
@@ -0,0 +1,175 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.Processes.Subsequences.Validation;
+model UpEndWithoutOff
+ "Validate sequence of end staging up process which does not require chiller OFF"
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.Processes.Subsequences.UpEnd
+ endUp(
+ final nChi=2,
+ final chaChiWatIsoTim=300,
+ final byPasSetTim=300,
+ final minFloSet={0.5,1},
+ final maxFloSet={1,1.5})
+ "End staging up process which does not require one chiller on and another chiller off"
+ annotation (Placement(transformation(extent={{100,140},{120,160}})));
+
+protected
+ Buildings.Controls.OBC.CDL.Logical.Sources.Pulse booPul(
+ final width=0.15,
+ final period=1200) "Boolean pulse"
+ annotation (Placement(transformation(extent={{-140,70},{-120,90}})));
+ Buildings.Controls.OBC.CDL.Logical.Not staUp "Stage up command"
+ annotation (Placement(transformation(extent={{-100,70},{-80,90}})));
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant nexDisChi(
+ final k=0) "Next disabling chiller"
+ annotation (Placement(transformation(extent={{-140,-50},{-120,-30}})));
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant onOff(
+ final k=false) "Chiller on-off command"
+ annotation (Placement(transformation(extent={{-140,-10},{-120,10}})));
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant chiHea[2](
+ final k=fill(true,2)) "Chiller one head pressure control"
+ annotation (Placement(transformation(extent={{-140,-170},{-120,-150}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant chiWatFlo(final k=1.667)
+ "Chilled water flow rate"
+ annotation (Placement(transformation(extent={{-140,-250},{-120,-230}})));
+ Buildings.Controls.OBC.CDL.Logical.Pre chiOneSta(
+ final pre_u_start=true) "Chiller one status"
+ annotation (Placement(transformation(extent={{140,110},{160,130}})));
+ Buildings.Controls.OBC.CDL.Continuous.Switch swi2 "Logical switch"
+ annotation (Placement(transformation(extent={{-60,140},{-40,160}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant nexEnaChi(
+ final k=2) "Next enable chiller"
+ annotation (Placement(transformation(extent={{-140,160},{-120,180}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant zer2(final k=0)
+ "Constant zero"
+ annotation (Placement(transformation(extent={{-140,120},{-120,140}})));
+ Buildings.Controls.OBC.CDL.Conversions.RealToInteger reaToInt
+ "Convert real input to integer output"
+ annotation (Placement(transformation(extent={{-20,140},{0,160}})));
+ Buildings.Controls.OBC.CDL.Logical.Sources.Pulse booPul1(
+ final width=0.20,
+ final period=1200) "Boolean pulse"
+ annotation (Placement(transformation(extent={{-140,30},{-120,50}})));
+ Buildings.Controls.OBC.CDL.Logical.Not upStrDev "Upstream device status"
+ annotation (Placement(transformation(extent={{-100,30},{-80,50}})));
+ Buildings.Controls.OBC.CDL.Logical.Pre chiTwoSta(
+ final pre_u_start=false) "Chiller two status"
+ annotation (Placement(transformation(extent={{140,70},{160,90}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant chiWatIsoVal[2](
+ final k=fill(1, 2)) "Constant one"
+ annotation (Placement(transformation(extent={{-140,-90},{-120,-70}})));
+
+equation
+ connect(booPul.y, staUp.u)
+ annotation (Line(points={{-118,80},{-102,80}}, color={255,0,255}));
+ connect(staUp.y, swi2.u2)
+ annotation (Line(points={{-78,80},{-70,80},{-70,150},{-62,150}},
+ color={255,0,255}));
+ connect(nexEnaChi.y, swi2.u1)
+ annotation (Line(points={{-118,170},{-100,170},{-100,158},{-62,158}},
+ color={0,0,127}));
+ connect(zer2.y, swi2.u3)
+ annotation (Line(points={{-118,130},{-100,130},{-100,142},{-62,142}},
+ color={0,0,127}));
+ connect(swi2.y, reaToInt.u)
+ annotation (Line(points={{-38,150},{-22,150}}, color={0,0,127}));
+ connect(booPul1.y, upStrDev.u)
+ annotation (Line(points={{-118,40},{-102,40}}, color={255,0,255}));
+ connect(endUp.yChi[1], chiOneSta.u)
+ annotation (Line(points={{122,158.5},{130,158.5},{130,120},{138,120}},
+ color={255,0,255}));
+ connect(endUp.yChi[2], chiTwoSta.u)
+ annotation (Line(points={{122,159.5},{130,159.5},{130,80},{138,80}},
+ color={255,0,255}));
+ connect(reaToInt.y, endUp.nexEnaChi)
+ annotation (Line(points={{2,150},{20,150},{20,162},{98,162}},
+ color={255,127,0}));
+ connect(staUp.y, endUp.uStaUp)
+ annotation (Line(points={{-78,80},{24,80},{24,160},{98,160}},
+ color={255,0,255}));
+ connect(upStrDev.y, endUp.uEnaChiWatIsoVal)
+ annotation (Line(points={{-78,40},{28,40},{28,158},{98,158}},
+ color={255,0,255}));
+ connect(chiOneSta.y, endUp.uChi[1])
+ annotation (Line(points={{162,120},{174,120},{174,100},{32,100},{32,155.5},{
+ 98,155.5}},
+ color={255,0,255}));
+ connect(chiTwoSta.y, endUp.uChi[2])
+ annotation (Line(points={{162,80},{170,80},{170,60},{36,60},{36,156.5},{98,156.5}},
+ color={255,0,255}));
+ connect(onOff.y, endUp.uOnOff)
+ annotation (Line(points={{-118,0},{40,0},{40,154},{98,154}},
+ color={255,0,255}));
+ connect(nexDisChi.y, endUp.nexDisChi)
+ annotation (Line(points={{-118,-40},{44,-40},{44,152},{98,152}},
+ color={255,127,0}));
+ connect(chiOneSta.y, endUp.uChiWatReq[1])
+ annotation (Line(points={{162,120},{174,120},{174,100},{48,100},{48,149.5},{
+ 98,149.5}},
+ color={255,0,255}));
+ connect(chiTwoSta.y, endUp.uChiWatReq[2])
+ annotation (Line(points={{162,80},{170,80},{170,60},{52,60},{52,150.5},{98,150.5}},
+ color={255,0,255}));
+ connect(chiOneSta.y, endUp.uConWatReq[1])
+ annotation (Line(points={{162,120},{174,120},{174,100},{60,100},{60,145.5},{
+ 98,145.5}},
+ color={255,0,255}));
+ connect(chiTwoSta.y, endUp.uConWatReq[2])
+ annotation (Line(points={{162,80},{170,80},{170,60},{64,60},{64,146.5},{98,146.5}},
+ color={255,0,255}));
+ connect(chiWatFlo.y, endUp.VChiWat_flow)
+ annotation (Line(points={{-118,-240},{72,-240},{72,142},{98,142}},
+ color={0,0,127}));
+ connect(chiWatIsoVal.y, endUp.uChiWatIsoVal)
+ annotation (Line(points={{-118,-80},{56,-80},{56,148},{98,148}},
+ color={0,0,127}));
+ connect(chiHea.y, endUp.uChiHeaCon)
+ annotation (Line(points={{-118,-160},{68,-160},{68,144},{98,144}},
+ color={255,0,255}));
+ connect(chiWatFlo.y, endUp.VMinChiWat_setpoint)
+ annotation (Line(points={{-118,-240},{72,-240},{72,140},{98,140}},
+ color={0,0,127}));
+
+annotation (
+ experiment(StopTime=1200, Tolerance=1e-06),
+ __Dymola_Commands(file="modelica://Buildings/Resources/Scripts/Dymola/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/Processes/Subsequences/Validation/UpEndWithoutOff.mos"
+ "Simulate and plot"),
+ Documentation(info="
+
+This example validates
+
+Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.Processes.Subsequences.UpEnd.
+
+", revisions="
+
+-
+September 30, by Jianjun Hu:
+First implementation.
+
+
+"),
+Icon(coordinateSystem(extent={{-100,-100},{100,100}}),
+ graphics={
+ Ellipse(lineColor = {75,138,73},
+ fillColor={255,255,255},
+ fillPattern = FillPattern.Solid,
+ extent = {{-100,-100},{100,100}}),
+ Polygon(lineColor = {0,0,255},
+ fillColor = {75,138,73},
+ pattern = LinePattern.None,
+ fillPattern = FillPattern.Solid,
+ points = {{-36,60},{64,0},{-36,-60},{-36,60}})}),Diagram(
+ coordinateSystem(preserveAspectRatio=false, extent={{-180,-260},{180,260}}),
+ graphics={
+ Text(
+ extent={{-142,240},{-110,232}},
+ textColor={0,0,127},
+ textString="Stage up:"),
+ Text(
+ extent={{-138,226},{22,216}},
+ textColor={0,0,127},
+ textString="from stage 1 which has only chiller 1 being enabled, "),
+ Text(
+ extent={{-138,214},{16,200}},
+ textColor={0,0,127},
+ textString="to stage 2 which has chiller 1 and 2 being enabled.")}));
+end UpEndWithoutOff;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/Processes/Subsequences/Validation/package.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/Processes/Subsequences/Validation/package.mo
new file mode 100644
index 00000000000..aace7958dd6
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/Processes/Subsequences/Validation/package.mo
@@ -0,0 +1,36 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.Processes.Subsequences;
+package Validation "Collection of validation models"
+annotation (preferredView="info", Documentation(info="
+
+This package contains validation models for the classes in
+
+Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.Processes.Subsequences.
+
+
+Note that most validation models contain simple input data
+which may not be realistic, but for which the correct
+output can be obtained through an analytic solution.
+The examples plot various outputs, which have been verified against these
+solutions. These model outputs are stored as reference data and
+used for continuous validation whenever models in the library change.
+
+"),
+ Icon(graphics={
+ Rectangle(
+ lineColor={200,200,200},
+ fillColor={248,248,248},
+ fillPattern=FillPattern.HorizontalCylinder,
+ extent={{-100.0,-100.0},{100.0,100.0}},
+ radius=25.0),
+ Polygon(
+ origin={8.0,14.0},
+ lineColor={78,138,73},
+ fillColor={78,138,73},
+ pattern=LinePattern.None,
+ fillPattern=FillPattern.Solid,
+ points={{-58.0,46.0},{42.0,-14.0},{-58.0,-74.0},{-58.0,46.0}}),
+ Rectangle(
+ lineColor={128,128,128},
+ extent={{-100.0,-100.0},{100.0,100.0}},
+ radius=25.0)}));
+end Validation;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/Processes/Subsequences/Validation/package.order b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/Processes/Subsequences/Validation/package.order
new file mode 100644
index 00000000000..673266a6037
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/Processes/Subsequences/Validation/package.order
@@ -0,0 +1,12 @@
+CHWIsoVal
+DisableChiller
+DownStartWithOn
+DownStartWithoutOn
+EnableCWPump
+EnableChiller
+HeadControl
+NextChiller
+ReduceDemand
+ResetMinBypass
+UpEndWithOff
+UpEndWithoutOff
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/Processes/Subsequences/package.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/Processes/Subsequences/package.mo
new file mode 100644
index 00000000000..117822b0a83
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/Processes/Subsequences/package.mo
@@ -0,0 +1,44 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.Processes;
+package Subsequences "Package of subsequences for staging up and down devices"
+
+annotation (preferredView="info", Documentation(info="
+
+This package contains subsequences for controlling devices when there is stage-up
+or stage-down command.
+
+"),
+ Icon(graphics={
+ Rectangle(
+ lineColor={200,200,200},
+ fillColor={248,248,248},
+ fillPattern=FillPattern.HorizontalCylinder,
+ extent={{-100.0,-100.0},{100.0,100.0}},
+ radius=25.0),
+ Ellipse(
+ origin={10.0,10.0},
+ lineColor={128,128,128},
+ fillColor={255,255,255},
+ fillPattern=FillPattern.Solid,
+ extent={{-80.0,0.0},{-20.0,60.0}}),
+ Ellipse(
+ origin={10.0,10.0},
+ fillColor={128,128,128},
+ pattern=LinePattern.None,
+ fillPattern=FillPattern.Solid,
+ extent={{0.0,0.0},{60.0,60.0}}),
+ Ellipse(
+ origin={10.0,10.0},
+ pattern=LinePattern.None,
+ fillPattern=FillPattern.Solid,
+ extent={{0.0,-80.0},{60.0,-20.0}}),
+ Ellipse(
+ origin={10.0,10.0},
+ fillColor={76,76,76},
+ pattern=LinePattern.None,
+ fillPattern=FillPattern.Solid,
+ extent={{-80.0,-80.0},{-20.0,-20.0}}),
+ Rectangle(
+ lineColor={128,128,128},
+ extent={{-100.0,-100.0},{100.0,100.0}},
+ radius=25.0)}));
+end Subsequences;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/Processes/Subsequences/package.order b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/Processes/Subsequences/package.order
new file mode 100644
index 00000000000..c5c50244d09
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/Processes/Subsequences/package.order
@@ -0,0 +1,11 @@
+CHWIsoVal
+DisableChiller
+DownStart
+EnableCWPump
+EnableChiller
+HeadControl
+NextChiller
+ReduceDemand
+ResetMinBypass
+UpEnd
+Validation
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/Processes/Up.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/Processes/Up.mo
new file mode 100644
index 00000000000..4266d7d90f5
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/Processes/Up.mo
@@ -0,0 +1,899 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.Processes;
+block Up "Sequence for control devices when there is stage-up command"
+
+ parameter Integer nChi=2 "Total number of chillers in the plant";
+ parameter Integer nConWatPum=2 "Total number of condenser water pumps";
+ parameter Integer totSta=6
+ "Total number of plant stages, including stage zero and the stages with a WSE, if applicable";
+ parameter Integer nChiSta=3
+ "Total number of chiller stages, including stage zero but not the stages with a WSE, if applicable";
+ parameter Boolean have_WSE=true
+ "True: have waterside economizer";
+ parameter Boolean have_ponyChiller=false
+ "True: have pony chiller";
+ parameter Boolean have_parChi=true
+ "True: the plant has parallel chillers";
+ parameter Boolean have_heaConWatPum=true
+ "True: headered condenser water pumps";
+ parameter Boolean have_fixSpeConWatPum=true
+ "True: fixed speed condenser water pump";
+ parameter Boolean need_reduceChillerDemand=false
+ "True: need limit chiller demand when chiller staging";
+ parameter Real chiDemRedFac=0.75
+ "Demand reducing factor of current operating chillers"
+ annotation (Dialog(group="Limit chiller demand", enable=need_reduceChillerDemand));
+ parameter Real holChiDemTim(
+ unit="s",
+ displayUnit="s")=300
+ "Maximum time to wait for the actual demand less than percentage of current load"
+ annotation (Dialog(group="Limit chiller demand", enable=need_reduceChillerDemand));
+ parameter Real byPasSetTim(
+ unit="s",
+ displayUnit="s")=300
+ "Time to reset minimum bypass flow"
+ annotation (Dialog(group="Reset CHW minimum flow setpoint"));
+ parameter Real minFloSet[nChi](
+ unit="m3/s",
+ displayUnit="m3/s")={0.0089,0.0089}
+ "Minimum chilled water flow through each chiller"
+ annotation (Dialog(group="Reset CHW minimum flow setpoint"));
+ parameter Real maxFloSet[nChi](
+ unit="m3/s",
+ displayUnit="m3/s")={0.025,0.025}
+ "Maximum chilled water flow through each chiller"
+ annotation (Dialog(group="Reset CHW minimum flow setpoint"));
+ parameter Real aftByPasSetTim(
+ unit="s",
+ displayUnit="s")=60
+ "Time to allow loop to stabilize after resetting minimum chilled water flow setpoint"
+ annotation (Dialog(group="Reset bypass"));
+ parameter Real staVec[totSta]={0,0.5,1,1.5,2,2.5}
+ "Chiller stage vector, element value like x.5 means chiller stage x plus WSE"
+ annotation (Dialog(group="Enable condenser water pump"));
+ parameter Real desConWatPumSpe[totSta]={0,0.5,0.75,0.6,0.75,0.9}
+ "Design condenser water pump speed setpoints, according to current chiller stage and WSE status"
+ annotation (Dialog(group="Enable condenser water pump"));
+ parameter Real desConWatPumNum[totSta]={0,1,1,2,2,2}
+ "Design number of condenser water pumps that should be ON, according to current chiller stage and WSE status"
+ annotation (Dialog(group="Enable condenser water pump"));
+ parameter Real desChiNum[nChiSta]={0,1,2}
+ "Design number of chiller that should be ON, according to current chiller stage"
+ annotation (Dialog(group="Enable condenser water pump", enable=have_fixSpeConWatPum));
+ parameter Real thrTimEnb(
+ unit="s",
+ displayUnit="s")=10
+ "Threshold time to enable head pressure control after condenser water pump being reset"
+ annotation (Dialog(group="Enable head pressure control"));
+ parameter Real waiTim(
+ unit="s",
+ displayUnit="s")=30
+ "Waiting time after enabling next head pressure control"
+ annotation (Dialog(group="Enable head pressure control"));
+ parameter Real chaChiWatIsoTim(
+ unit="s",
+ displayUnit="s")=300
+ "Time to slowly change isolation valve, should be determined in the field"
+ annotation (Dialog(group="Enable CHW isolation valve"));
+ parameter Real proOnTim(
+ unit="s",
+ displayUnit="s")=300
+ "Threshold time to check after newly enabled chiller being operated"
+ annotation (Dialog(group="Enable next chiller",enable=have_ponyChiller));
+ parameter Real pumSpeChe = 0.05
+ "Lower threshold value to check if condenser water pump has achieved setpoint"
+ annotation (Dialog(tab="Advanced", group="Enable condenser water pump"));
+ parameter Real relFloDif=0.05
+ "Relative error to the setpoint for checking if it has achieved flow rate setpoint"
+ annotation (Dialog(tab="Advanced", group="Reset bypass"));
+
+ Buildings.Controls.OBC.CDL.Interfaces.IntegerInput uStaSet
+ "Chiller stage setpoint index"
+ annotation (Placement(transformation(extent={{-280,180},{-240,220}}),
+ iconTransformation(extent={{-140,170},{-100,210}})));
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uChiSet[nChi]
+ "Vector of chillers status setpoint"
+ annotation (Placement(transformation(extent={{-280,150},{-240,190}}),
+ iconTransformation(extent={{-140,140},{-100,180}})));
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput uChiLoa[nChi](
+ final quantity=fill("ElectricCurrent", nChi),
+ final unit=fill("A", nChi))
+ if need_reduceChillerDemand
+ "Current chiller load"
+ annotation (Placement(transformation(extent={{-280,100},{-240,140}}),
+ iconTransformation(extent={{-140,100},{-100,140}})));
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uChi[nChi]
+ "Chiller status: true=ON"
+ annotation (Placement(transformation(extent={{-280,60},{-240,100}}),
+ iconTransformation(extent={{-140,80},{-100,120}})));
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput VChiWat_flow(
+ final min=0,
+ final unit="m3/s",
+ final quantity="VolumeFlowRate") "Measured chilled water flow rate"
+ annotation (Placement(transformation(extent={{-280,30},{-240,70}}),
+ iconTransformation(extent={{-140,56},{-100,96}})));
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uChiConIsoVal[nChi]
+ "Chiller condenser water isolation valve status"
+ annotation (Placement(transformation(extent={{-280,-10},{-240,30}}),
+ iconTransformation(extent={{-140,30},{-100,70}})));
+ Buildings.Controls.OBC.CDL.Interfaces.IntegerInput uChiSta
+ "Current chiller stage, it would the same as chiller stage setpoint when it is not in staging process"
+ annotation (Placement(transformation(extent={{-280,-30},{-240,10}}),
+ iconTransformation(extent={{-140,10},{-100,50}})));
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uEnaPlaConPum
+ "True: enable condenser water pump when the plant is just enabled"
+ annotation (Placement(transformation(extent={{-280,-56},{-240,-16}}),
+ iconTransformation(extent={{-140,-10},{-100,30}})));
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uConWatReq[nChi]
+ "Condenser water requst status for each chiller"
+ annotation (Placement(transformation(extent={{-280,-90},{-240,-50}}),
+ iconTransformation(extent={{-140,-40},{-100,0}})));
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uWSE if have_WSE
+ "Water side economizer status: true = ON, false = OFF"
+ annotation (Placement(transformation(extent={{-280,-110},{-240,-70}}),
+ iconTransformation(extent={{-140,-60},{-100,-20}})));
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput uConWatPumSpeSet(
+ final min=0,
+ final max=1,
+ final unit="1") if not have_fixSpeConWatPum
+ "Condenser water pump speed setpoint"
+ annotation (Placement(transformation(extent={{-280,-130},{-240,-90}}),
+ iconTransformation(extent={{-140,-80},{-100,-40}})));
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput uConWatPumSpe(
+ final min=0,
+ final max=1,
+ final unit="1") if not have_fixSpeConWatPum
+ "Current condenser water pump speed"
+ annotation (Placement(transformation(extent={{-280,-150},{-240,-110}}),
+ iconTransformation(extent={{-140,-100},{-100,-60}})));
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uEnaPlaConIso
+ "True: enable condenser water pump when then plant is just enabled"
+ annotation (Placement(transformation(extent={{-280,-180},{-240,-140}}),
+ iconTransformation(extent={{-140,-120},{-100,-80}})));
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uConWatPum[nConWatPum] if have_fixSpeConWatPum
+ "Status indicating if condenser water pump is running"
+ annotation (Placement(transformation(extent={{-280,-210},{-240,-170}}),
+ iconTransformation(extent={{-140,-150},{-100,-110}})));
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uChiHeaCon[nChi]
+ "Chillers head pressure control status"
+ annotation (Placement(transformation(extent={{-280,-240},{-240,-200}}),
+ iconTransformation(extent={{-140,-170},{-100,-130}})));
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput uChiWatIsoVal[nChi](
+ final min=fill(0, nChi),
+ final max=fill(1, nChi),
+ final unit=fill("1", nChi))
+ "Chilled water isolation valve position"
+ annotation (Placement(transformation(extent={{-280,-270},{-240,-230}}),
+ iconTransformation(extent={{-140,-190},{-100,-150}})));
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uChiWatReq[nChi]
+ "Chilled water requst status for each chiller"
+ annotation (Placement(transformation(extent={{-280,-300},{-240,-260}}),
+ iconTransformation(extent={{-140,-210},{-100,-170}})));
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanOutput yStaPro
+ "Indicate if it is in stage-up process: true=in stage-up process"
+ annotation (Placement(transformation(extent={{240,170},{280,210}}),
+ iconTransformation(extent={{100,170},{140,210}})));
+ Buildings.Controls.OBC.CDL.Interfaces.RealOutput yChiDem[nChi](
+ final quantity=fill("ElectricCurrent", nChi),
+ final unit=fill("A", nChi))
+ if need_reduceChillerDemand
+ "Chiller demand setpoint"
+ annotation (Placement(transformation(extent={{240,90},{280,130}}),
+ iconTransformation(extent={{100,130},{140,170}})));
+ Buildings.Controls.OBC.CDL.Interfaces.RealOutput yChiWatMinFloSet(
+ final min=0,
+ final unit="m3/s",
+ final quantity="VolumeFlowRate")
+ "Chilled water minimum flow setpoint"
+ annotation (Placement(transformation(extent={{240,20},{280,60}}),
+ iconTransformation(extent={{100,90},{140,130}})));
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanOutput yTowStaUp
+ "Tower stage up status: true=stage up cooling tower"
+ annotation (Placement(transformation(extent={{240,-20},{280,20}}),
+ iconTransformation(extent={{100,50},{140,90}})));
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanOutput yLeaPum
+ "Lead condenser water pump status"
+ annotation (Placement(transformation(extent={{240,-50},{280,-10}}),
+ iconTransformation(extent={{100,10},{140,50}})));
+ Buildings.Controls.OBC.CDL.Interfaces.RealOutput yDesConWatPumSpe(
+ final min=0,
+ final max=1,
+ final unit="1") if not have_fixSpeConWatPum
+ "Condenser water pump design speed at current stage"
+ annotation (Placement(transformation(extent={{240,-80},{280,-40}}),
+ iconTransformation(extent={{100,-30},{140,10}})));
+ Buildings.Controls.OBC.CDL.Interfaces.IntegerOutput yConWatPumNum
+ "Number of operating condenser water pumps"
+ annotation (Placement(transformation(extent={{240,-110},{280,-70}}),
+ iconTransformation(extent={{100,-70},{140,-30}})));
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanOutput yChiHeaCon[nChi]
+ "Chiller head pressure control enabling status"
+ annotation (Placement(transformation(extent={{240,-150},{280,-110}}),
+ iconTransformation(extent={{100,-110},{140,-70}})));
+ Buildings.Controls.OBC.CDL.Interfaces.RealOutput yChiWatIsoVal[nChi](
+ final min=fill(0, nChi),
+ final max=fill(1, nChi),
+ final unit=fill("1", nChi))
+ "Chiller chilled water isolation valve position"
+ annotation (Placement(transformation(extent={{240,-210},{280,-170}}),
+ iconTransformation(extent={{100,-160},{140,-120}})));
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanOutput yChi[nChi]
+ "Chiller enabling status"
+ annotation (Placement(transformation(extent={{240,-290},{280,-250}}),
+ iconTransformation(extent={{100,-210},{140,-170}})));
+
+protected
+ Buildings.Controls.OBC.CDL.Integers.Change cha
+ "Check if stage setpoint increases"
+ annotation (Placement(transformation(extent={{-200,140},{-180,160}})));
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.Processes.Subsequences.NextChiller
+ nexChi(final nChi=nChi) "Identify next enabling chiller"
+ annotation (Placement(transformation(extent={{-80,160},{-60,180}})));
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.Processes.Subsequences.ReduceDemand
+ chiDemRed(
+ final nChi=nChi,
+ final chiDemRedFac=chiDemRedFac,
+ final holChiDemTim=holChiDemTim) if need_reduceChillerDemand
+ "Limit chiller demand"
+ annotation (Placement(transformation(extent={{-80,110},{-60,130}})));
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.MinimumFlowBypass.FlowSetpoint
+ minChiWatFlo(
+ final nChi=nChi,
+ final have_parChi=have_parChi,
+ final byPasSetTim=byPasSetTim,
+ final minFloSet=minFloSet,
+ final maxFloSet=maxFloSet) "Minimum chilled water flow setpoint"
+ annotation (Placement(transformation(extent={{20,30},{40,50}})));
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.Processes.Subsequences.ResetMinBypass
+ minBypSet(
+ final aftByPasSetTim=aftByPasSetTim,
+ final relFloDif=relFloDif)
+ "Check if minium bypass has been reset"
+ annotation (Placement(transformation(extent={{60,70},{80,90}})));
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.Processes.Subsequences.EnableCWPump
+ enaNexCWP
+ "Identify correct stage number for enabling next condenser water pump"
+ annotation (Placement(transformation(extent={{0,-20},{20,0}})));
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Pumps.CondenserWater.Controller
+ conWatPumCon(
+ final have_heaPum=have_heaConWatPum,
+ final have_WSE=have_WSE,
+ final fixSpe=have_fixSpeConWatPum,
+ final nChi=nChi,
+ final totSta=totSta,
+ final nChiSta=nChiSta,
+ final staVec=staVec,
+ final desConWatPumSpe=desConWatPumSpe,
+ final desConWatPumNum=desConWatPumNum,
+ final desChiNum=desChiNum,
+ final pumSpeChe=pumSpeChe)
+ "Enabling next condenser water pump or change pump speed"
+ annotation (Placement(transformation(extent={{60,-70},{80,-50}})));
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.Processes.Subsequences.HeadControl
+ enaHeaCon(
+ final nChi=nChi,
+ final thrTimEnb=thrTimEnb,
+ final waiTim=waiTim,
+ final heaStaCha=true)
+ "Enabling head pressure control for next enabling chiller"
+ annotation (Placement(transformation(extent={{60,-150},{80,-130}})));
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.Processes.Subsequences.CHWIsoVal
+ enaChiIsoVal(
+ final nChi=nChi,
+ final chaChiWatIsoTim=chaChiWatIsoTim,
+ final iniValPos=0,
+ final endValPos=1)
+ "Enable chilled water isolation valve for next enabling chiller"
+ annotation (Placement(transformation(extent={{60,-210},{80,-190}})));
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.Processes.Subsequences.UpEnd
+ endUp(
+ final nChi=nChi,
+ final have_parChi=have_parChi,
+ final chaChiWatIsoTim=chaChiWatIsoTim,
+ final maxFloSet=maxFloSet,
+ final proOnTim=proOnTim,
+ final minFloSet=minFloSet,
+ final byPasSetTim=byPasSetTim,
+ final aftByPasSetTim=aftByPasSetTim,
+ final relFloDif=relFloDif) "End stage-up process"
+ annotation (Placement(transformation(extent={{20,-280},{40,-260}})));
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant con(final k=false)
+ "False constant"
+ annotation (Placement(transformation(extent={{-200,20},{-180,40}})));
+ Buildings.Controls.OBC.CDL.Logical.MultiOr mulOr(final nin=nChi) "Multiple or"
+ annotation (Placement(transformation(extent={{-140,-62},{-120,-42}})));
+ Buildings.Controls.OBC.CDL.Logical.MultiOr mulOr1(final nin=nChi) "Multiple or"
+ annotation (Placement(transformation(extent={{-80,-80},{-60,-60}})));
+ Buildings.Controls.OBC.CDL.Continuous.Switch swi[nChi] "Logical switch"
+ annotation (Placement(transformation(extent={{200,-200},{220,-180}})));
+ Buildings.Controls.OBC.CDL.Routing.BooleanScalarReplicator booRep(final nout=nChi)
+ "Replicate boolean input"
+ annotation (Placement(transformation(extent={{140,-230},{160,-210}})));
+ Buildings.Controls.OBC.CDL.Logical.Switch logSwi[nChi] "Logical switch"
+ annotation (Placement(transformation(extent={{200,-140},{220,-120}})));
+ Buildings.Controls.OBC.CDL.Continuous.Switch swi1 "Logical switch"
+ annotation (Placement(transformation(extent={{200,30},{220,50}})));
+ Buildings.Controls.OBC.CDL.Logical.Latch lat
+ "Logical latch, maintain ON signal until condition changes"
+ annotation (Placement(transformation(extent={{-140,140},{-120,160}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant con1(final k=0)
+ if need_reduceChillerDemand
+ "Constant zero"
+ annotation (Placement(transformation(extent={{-200,80},{-180,100}})));
+ Buildings.Controls.OBC.CDL.Logical.And and2 "Logical and"
+ annotation (Placement(transformation(extent={{20,-126},{40,-106}})));
+ Buildings.Controls.OBC.CDL.Logical.Latch lat1 if need_reduceChillerDemand
+ "Maintain ON signal when chiller demand has been limited"
+ annotation (Placement(transformation(extent={{-20,90},{0,110}})));
+ Buildings.Controls.OBC.CDL.Logical.Latch lat2
+ "Maintain ON signal when minimum chilled water flow has been reset"
+ annotation (Placement(transformation(extent={{100,60},{120,80}})));
+ Buildings.Controls.OBC.CDL.Logical.Latch lat3
+ "Maintain ON signal when condenser water pump has been enabled"
+ annotation (Placement(transformation(extent={{120,-90},{140,-70}})));
+ Buildings.Controls.OBC.CDL.Logical.Latch lat4
+ "Maintain ON signal when chiller head pressure control has been enabled"
+ annotation (Placement(transformation(extent={{120,-170},{140,-150}})));
+ Buildings.Controls.OBC.CDL.Logical.Latch lat5
+ "Maintain ON signal when chilled water isolation valve has been open"
+ annotation (Placement(transformation(extent={{100,-230},{120,-210}})));
+ Buildings.Controls.OBC.CDL.Logical.Or or2 if not need_reduceChillerDemand
+ "Dummy or"
+ annotation (Placement(transformation(extent={{-20,140},{0,160}})));
+ Buildings.Controls.OBC.CDL.Logical.And and1 "Logical and"
+ annotation (Placement(transformation(extent={{-100,290},{-80,310}})));
+ Buildings.Controls.OBC.CDL.Logical.Switch logSwi1 "Logical switch"
+ annotation (Placement(transformation(extent={{-40,230},{-20,250}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.ModelTime modTim
+ "Simulation time"
+ annotation (Placement(transformation(extent={{-200,220},{-180,240}})));
+ Buildings.Controls.OBC.CDL.Continuous.GreaterThreshold greThr(final t=1)
+ "Check if it has passed initial time"
+ annotation (Placement(transformation(extent={{-140,220},{-120,240}})));
+ Buildings.Controls.OBC.CDL.Integers.Equal intEqu
+ "Check if the stage setpoint is zero"
+ annotation (Placement(transformation(extent={{-140,270},{-120,290}})));
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant conInt(
+ final k=0) "Constant zero"
+ annotation (Placement(transformation(extent={{-220,290},{-200,310}})));
+
+equation
+ connect(lat.y,chiDemRed.uDemLim)
+ annotation (Line(points={{-118,150},{-100,150},{-100,129},{-82,129}},
+ color={255,0,255}));
+ connect(chiDemRed.uChiLoa, uChiLoa)
+ annotation (Line(points={{-82,125},{-180,125},{-180,120},{-260,120}},
+ color={0,0,127}));
+ connect(chiDemRed.uChi, uChi)
+ annotation (Line(points={{-82,111},{-220,111},{-220,80},{-260,80}},
+ color={255,0,255}));
+ connect(lat.y, minBypSet.chaPro)
+ annotation (Line(points={{-118,150},{-100,150},{-100,84},{58,84}},
+ color={255,0,255}));
+ connect(minBypSet.VChiWat_flow, VChiWat_flow)
+ annotation (Line(points={{58,76},{-156,76},{-156,50},{-260,50}},
+ color={0,0,127}));
+ connect(lat.y, minChiWatFlo.uStaUp)
+ annotation (Line(points={{-118,150},{-100,150},{-100,49},{18,49}},
+ color={255,0,255}));
+ connect(con.y, minChiWatFlo.uStaDow)
+ annotation (Line(points={{-178,30},{-96,30},{-96,31},{18,31}},
+ color={255,0,255}));
+ connect(lat.y, enaNexCWP.uStaUp)
+ annotation (Line(points={{-118,150},{-100,150},{-100,-8},{-2,-8}},
+ color={255,0,255}));
+ connect(conWatPumCon.uWSE, uWSE)
+ annotation (Line(points={{58,-63},{-6,-63},{-6,-90},{-260,-90}},
+ color={255,0,255}));
+ connect(conWatPumCon.uConWatPumSpe, uConWatPumSpe)
+ annotation (Line(points={{58,-67},{2,-67},{2,-130},{-260,-130}},
+ color={0,0,127}));
+ connect(enaNexCWP.yChiSta, conWatPumCon.uChiSta)
+ annotation (Line(points={{22,-10},{36,-10},{36,-61},{58,-61}},
+ color={255,127,0}));
+ connect(lat.y, enaHeaCon.chaPro)
+ annotation (Line(points={{-118,150},{-100,150},{-100,-140},{58,-140}},
+ color={255,0,255}));
+ connect(nexChi.yNexEnaChi, enaHeaCon.nexChaChi)
+ annotation (Line(points={{-58,179},{-36,179},{-36,-144},{58,-144}},
+ color={255,127,0}));
+ connect(nexChi.yNexEnaChi, enaChiIsoVal.nexChaChi)
+ annotation (Line(points={{-58,179},{-36,179},{-36,-192},{58,-192}},
+ color={255,127,0}));
+ connect(enaChiIsoVal.uChiWatIsoVal, uChiWatIsoVal)
+ annotation (Line(points={{58,-195},{-96,-195},{-96,-250},{-260,-250}},
+ color={0,0,127}));
+ connect(lat.y, enaChiIsoVal.chaPro)
+ annotation (Line(points={{-118,150},{-100,150},{-100,-208},{58,-208}},
+ color={255,0,255}));
+ connect(nexChi.yNexEnaChi, endUp.nexEnaChi)
+ annotation (Line(points={{-58,179},{-36,179},{-36,-258},{18,-258}},
+ color={255,127,0}));
+ connect(lat.y, endUp.uStaUp)
+ annotation (Line(points={{-118,150},{-100,150},{-100,-260},{18,-260}},
+ color={255,0,255}));
+ connect(uChi, endUp.uChi)
+ annotation (Line(points={{-260,80},{-220,80},{-220,-264},{18,-264}},
+ color={255,0,255}));
+ connect(endUp.uChiWatReq, uChiWatReq)
+ annotation (Line(points={{18,-270},{-168,-270},{-168,-280},{-260,-280}},
+ color={255,0,255}));
+ connect(endUp.uChiWatIsoVal, uChiWatIsoVal)
+ annotation (Line(points={{18,-272},{-96,-272},{-96,-250},{-260,-250}},
+ color={0,0,127}));
+ connect(uConWatReq, endUp.uConWatReq)
+ annotation (Line(points={{-260,-70},{-164,-70},{-164,-274},{18,-274}},
+ color={255,0,255}));
+ connect(VChiWat_flow, endUp.VChiWat_flow)
+ annotation (Line(points={{-260,50},{-156,50},{-156,-278},{18,-278}},
+ color={0,0,127}));
+ connect(uConWatReq, mulOr1.u)
+ annotation (Line(points={{-260,-70},{-82,-70}},
+ color={255,0,255}));
+ connect(uChi, mulOr.u)
+ annotation (Line(points={{-260,80},{-220,80},{-220,-52},{-142,-52}},
+ color={255,0,255}));
+ connect(chiDemRed.yChiDem, yChiDem)
+ annotation (Line(points={{-58,124},{100,124},{100,110},{260,110}},
+ color={0,0,127}));
+ connect(conWatPumCon.yLeaPum, yLeaPum)
+ annotation (Line(points={{82,-51},{120,-51},{120,-30},{260,-30}}, color={255,0,255}));
+ connect(endUp.yChi, yChi)
+ annotation (Line(points={{42,-261},{220,-261},{220,-270},{260,-270}},
+ color={255,0,255}));
+ connect(endUp.yChiWatIsoVal, swi.u1)
+ annotation (Line(points={{42,-265},{184,-265},{184,-182},{198,-182}},
+ color={0,0,127}));
+ connect(swi.y, yChiWatIsoVal)
+ annotation (Line(points={{222,-190},{260,-190}}, color={0,0,127}));
+ connect(endUp.yChiHeaCon, logSwi.u1)
+ annotation (Line(points={{42,-269},{172,-269},{172,-122},{198,-122}},
+ color={255,0,255}));
+ connect(enaHeaCon.yChiHeaCon, logSwi.u3)
+ annotation (Line(points={{82,-146},{120,-146},{120,-138},{198,-138}},
+ color={255,0,255}));
+ connect(logSwi.y, yChiHeaCon)
+ annotation (Line(points={{222,-130},{260,-130}}, color={255,0,255}));
+ connect(enaChiIsoVal.yEnaChiWatIsoVal, swi1.u2)
+ annotation (Line(points={{82,-194},{100,-194},{100,40},{198,40}},
+ color={255,0,255}));
+ connect(endUp.yChiWatMinSet, swi1.u1)
+ annotation (Line(points={{42,-273},{178,-273},{178,48},{198,48}},
+ color={0,0,127}));
+ connect(swi1.y, yChiWatMinFloSet)
+ annotation (Line(points={{222,40},{260,40}}, color={0,0,127}));
+ connect(enaChiIsoVal.yChiWatIsoVal, swi.u3)
+ annotation (Line(points={{82,-206},{100,-206},{100,-198},{198,-198}},
+ color={0,0,127}));
+ connect(nexChi.yDisSmaChi, endUp.nexDisChi)
+ annotation (Line(points={{-58,174},{-40,174},{-40,-268},{18,-268}},
+ color={255,127,0}));
+ connect(nexChi.yOnOff, minChiWatFlo.uOnOff)
+ annotation (Line(points={{-58,170},{-44,170},{-44,33},{18,33}},
+ color={255,0,255}));
+ connect(nexChi.yOnOff, endUp.uOnOff)
+ annotation (Line(points={{-58,170},{-44,170},{-44,-266},{18,-266}},
+ color={255,0,255}));
+ connect(con.y, enaNexCWP.uStaDow)
+ annotation (Line(points={{-178,30},{-96,30},{-96,-12},{-2,-12}},
+ color={255,0,255}));
+ connect(lat.y, yStaPro)
+ annotation (Line(points={{-118,150},{-100,150},{-100,190},{260,190}},
+ color={255,0,255}));
+ connect(and2.y, enaHeaCon.uUpsDevSta)
+ annotation (Line(points={{42,-116},{50,-116},{50,-136},{58,-136}},
+ color={255,0,255}));
+ connect(con.y, chiDemRed.uStaDow)
+ annotation (Line(points={{-178,30},{-96,30},{-96,118},{-82,118}},
+ color={255,0,255}));
+ connect(con1.y, chiDemRed.yOpeParLoaRatMin)
+ annotation (Line(points={{-178,90},{-140,90},{-140,121},{-82,121}},
+ color={0,0,127}));
+ connect(uChi, minChiWatFlo.uChi)
+ annotation (Line(points={{-260,80},{-220,80},{-220,44},{18,44}},
+ color={255,0,255}));
+ connect(nexChi.yNexEnaChi, minChiWatFlo.nexEnaChi)
+ annotation (Line(points={{-58,179},{-36,179},{-36,41},{18,41}},
+ color={255,127,0}));
+ connect(nexChi.yDisSmaChi, minChiWatFlo.nexDisChi)
+ annotation (Line(points={{-58,174},{-40,174},{-40,39},{18,39}},
+ color={255,127,0}));
+ connect(con.y, minChiWatFlo.uSubCha)
+ annotation (Line(points={{-178,30},{-96,30},{-96,36},{18,36}},
+ color={255,0,255}));
+ connect(nexChi.yOnOff, chiDemRed.uOnOff)
+ annotation (Line(points={{-58,170},{-44,170},{-44,140},{-92,140},{-92,115},{
+ -82,115}}, color={255,0,255}));
+ connect(minChiWatFlo.yChiWatMinFloSet, minBypSet.VMinChiWat_setpoint)
+ annotation (Line(points={{42,40},{50,40},{50,72},{58,72}},
+ color={0,0,127}));
+ connect(minChiWatFlo.yChiWatMinFloSet, swi1.u3)
+ annotation (Line(points={{42,40},{50,40},{50,32},{198,32}},
+ color={0,0,127}));
+ connect(conWatPumCon.yDesConWatPumSpe, yDesConWatPumSpe)
+ annotation (Line(points={{82,-57},{120,-57},{120,-60},{260,-60}},
+ color={0,0,127}));
+ connect(conWatPumCon.uChiConIsoVal, uChiConIsoVal)
+ annotation (Line(points={{58,-50},{48,-50},{48,10},{-260,10}},
+ color={255,0,255}));
+ connect(mulOr.y, conWatPumCon.uLeaChiSta)
+ annotation (Line(points={{-118,-52},{44,-52},{44,-54},{58,-54}},
+ color={255,0,255}));
+ connect(mulOr.y, conWatPumCon.uLeaChiEna)
+ annotation (Line(points={{-118,-52},{58,-52}},
+ color={255,0,255}));
+ connect(mulOr1.y, conWatPumCon.uLeaConWatReq)
+ annotation (Line(points={{-58,-70},{-10,-70},{-10,-56},{58,-56}},
+ color={255,0,255}));
+ connect(conWatPumCon.uConWatPumSpeSet, uConWatPumSpeSet)
+ annotation (Line(points={{58,-65},{-2,-65},{-2,-110},{-260,-110}},
+ color={0,0,127}));
+ connect(conWatPumCon.yConWatPumNum, yConWatPumNum)
+ annotation (Line(points={{82,-63},{220,-63},{220,-90},{260,-90}},
+ color={255,127,0}));
+ connect(minChiWatFlo.yChiWatMinFloSet, endUp.VMinChiWat_setpoint)
+ annotation (Line(points={{42,40},{50,40},{50,20},{-92,20},{-92,-280},{18,-280}},
+ color={0,0,127}));
+ connect(chiDemRed.yChiDemRed, lat1.u) annotation (Line(points={{-58,116},{-32,
+ 116},{-32,100},{-22,100}}, color={255,0,255}));
+ connect(lat1.y, minBypSet.uUpsDevSta) annotation (Line(points={{2,100},{10,100},
+ {10,88},{58,88}}, color={255,0,255}));
+ connect(lat1.y, minChiWatFlo.uUpsDevSta) annotation (Line(points={{2,100},{10,
+ 100},{10,47},{18,47}}, color={255,0,255}));
+ connect(minBypSet.yMinBypRes, lat2.u) annotation (Line(points={{82,80},{90,80},
+ {90,70},{98,70}}, color={255,0,255}));
+ connect(lat2.y, yTowStaUp) annotation (Line(points={{122,70},{140,70},{140,0},
+ {260,0}}, color={255,0,255}));
+ connect(lat2.y, enaNexCWP.uUpsDevSta) annotation (Line(points={{122,70},{140,70},
+ {140,14},{-20,14},{-20,-2},{-2,-2}}, color={255,0,255}));
+ connect(lat2.y, and2.u2) annotation (Line(points={{122,70},{140,70},{140,14},{
+ -20,14},{-20,-124},{18,-124}},color={255,0,255}));
+ connect(conWatPumCon.yPumSpeChe, lat3.u) annotation (Line(points={{82,-69},{110,
+ -69},{110,-80},{118,-80}}, color={255,0,255}));
+ connect(lat3.y, and2.u1) annotation (Line(points={{142,-80},{160,-80},{160,-98},
+ {10,-98},{10,-116},{18,-116}}, color={255,0,255}));
+ connect(enaHeaCon.yEnaHeaCon, lat4.u) annotation (Line(points={{82,-134},{110,
+ -134},{110,-160},{118,-160}}, color={255,0,255}));
+ connect(lat4.y, enaChiIsoVal.uUpsDevSta) annotation (Line(points={{142,-160},{
+ 160,-160},{160,-180},{40,-180},{40,-205},{58,-205}}, color={255,0,255}));
+ connect(enaChiIsoVal.yEnaChiWatIsoVal, lat5.u) annotation (Line(points={{82,-194},
+ {90,-194},{90,-220},{98,-220}}, color={255,0,255}));
+ connect(lat5.y, booRep.u)
+ annotation (Line(points={{122,-220},{138,-220}}, color={255,0,255}));
+ connect(booRep.y, logSwi.u2) annotation (Line(points={{162,-220},{166,-220},{166,
+ -130},{198,-130}}, color={255,0,255}));
+ connect(booRep.y, swi.u2) annotation (Line(points={{162,-220},{166,-220},{166,
+ -190},{198,-190}}, color={255,0,255}));
+ connect(lat5.y, endUp.uEnaChiWatIsoVal) annotation (Line(points={{122,-220},{130,
+ -220},{130,-242},{0,-242},{0,-262},{18,-262}}, color={255,0,255}));
+ connect(endUp.endStaTri, lat.clr) annotation (Line(points={{42,-279},{60,-279},
+ {60,-300},{-160,-300},{-160,144},{-142,144}}, color={255,0,255}));
+ connect(endUp.endStaTri, lat1.clr) annotation (Line(points={{42,-279},{60,-279},
+ {60,-300},{-160,-300},{-160,94},{-22,94}}, color={255,0,255}));
+ connect(endUp.endStaTri, lat2.clr) annotation (Line(points={{42,-279},{60,-279},
+ {60,-300},{-160,-300},{-160,64},{98,64}}, color={255,0,255}));
+ connect(endUp.endStaTri, lat3.clr) annotation (Line(points={{42,-279},{60,-279},
+ {60,-300},{-160,-300},{-160,-86},{118,-86}}, color={255,0,255}));
+ connect(endUp.endStaTri, lat4.clr) annotation (Line(points={{42,-279},{60,-279},
+ {60,-300},{-160,-300},{-160,-166},{118,-166}}, color={255,0,255}));
+ connect(uStaSet, nexChi.uStaSet) annotation (Line(points={{-260,200},{-104,200},
+ {-104,177},{-82,177}}, color={255,127,0}));
+ connect(lat.y, nexChi.chaPro) annotation (Line(points={{-118,150},{-100,150},{
+ -100,163},{-82,163}}, color={255,0,255}));
+ connect(nexChi.uChiSet, uChiSet)
+ annotation (Line(points={{-82,170},{-260,170}}, color={255,0,255}));
+ connect(uStaSet, cha.u) annotation (Line(points={{-260,200},{-220,200},{-220,150},
+ {-202,150}}, color={255,127,0}));
+ connect(uStaSet, enaNexCWP.uStaSet) annotation (Line(points={{-260,200},{-104,
+ 200},{-104,-19},{-2,-19}}, color={255,127,0}));
+ connect(uChiSta, enaNexCWP.uChiSta) annotation (Line(points={{-260,-10},{-180,
+ -10},{-180,-15},{-2,-15}}, color={255,127,0}));
+ connect(enaHeaCon.uChiHeaCon, uChiHeaCon) annotation (Line(points={{58,-148},{
+ -48,-148},{-48,-220},{-260,-220}}, color={255,0,255}));
+ connect(uChiHeaCon, endUp.uChiHeaCon) annotation (Line(points={{-260,-220},{-48,
+ -220},{-48,-276},{18,-276}}, color={255,0,255}));
+ connect(conWatPumCon.uConWatPum, uConWatPum) annotation (Line(points={{58,-69},
+ {6,-69},{6,-190},{-260,-190}}, color={255,0,255}));
+ connect(endUp.endStaTri, lat5.clr) annotation (Line(points={{42,-279},{60,-279},
+ {60,-300},{-160,-300},{-160,-226},{98,-226}}, color={255,0,255}));
+ connect(lat.y, or2.u1)
+ annotation (Line(points={{-118,150},{-22,150}}, color={255,0,255}));
+ connect(con.y, or2.u2) annotation (Line(points={{-178,30},{-96,30},{-96,142},{
+ -22,142}}, color={255,0,255}));
+ connect(or2.y, minBypSet.uUpsDevSta) annotation (Line(points={{2,150},{10,150},
+ {10,88},{58,88}}, color={255,0,255}));
+ connect(or2.y, minChiWatFlo.uUpsDevSta) annotation (Line(points={{2,150},{10,150},
+ {10,47},{18,47}}, color={255,0,255}));
+ connect(modTim.y, greThr.u)
+ annotation (Line(points={{-178,230},{-142,230}}, color={0,0,127}));
+ connect(intEqu.y, and1.u2) annotation (Line(points={{-118,280},{-110,280},{-110,
+ 292},{-102,292}}, color={255,0,255}));
+ connect(conInt.y, intEqu.u1) annotation (Line(points={{-198,300},{-180,300},{-180,
+ 280},{-142,280}}, color={255,127,0}));
+ connect(uStaSet, intEqu.u2) annotation (Line(points={{-260,200},{-220,200},{-220,
+ 272},{-142,272}}, color={255,127,0}));
+ connect(cha.up, and1.u1) annotation (Line(points={{-178,156},{-170,156},{-170,
+ 300},{-102,300}}, color={255,0,255}));
+ connect(greThr.y, logSwi1.u2) annotation (Line(points={{-118,230},{-80,230},{-80,
+ 240},{-42,240}}, color={255,0,255}));
+ connect(and1.y, logSwi1.u3) annotation (Line(points={{-78,300},{-60,300},{-60,
+ 232},{-42,232}}, color={255,0,255}));
+ connect(cha.up, logSwi1.u1) annotation (Line(points={{-178,156},{-170,156},{-170,
+ 248},{-42,248}}, color={255,0,255}));
+ connect(logSwi1.y, lat.u) annotation (Line(points={{-18,240},{0,240},{0,210},{
+ -160,210},{-160,150},{-142,150}}, color={255,0,255}));
+ connect(uEnaPlaConPum, conWatPumCon.uEnaPla) annotation (Line(points={{-260,-36},
+ {40,-36},{40,-58},{58,-58}}, color={255,0,255}));
+ connect(uEnaPlaConIso, enaHeaCon.uEnaPla) annotation (Line(points={{-260,-160},
+ {-52,-160},{-52,-132},{58,-132}}, color={255,0,255}));
+annotation (
+ defaultComponentName="upProCon",
+ Diagram(coordinateSystem(preserveAspectRatio=false,
+ extent={{-240,-320},{240,320}}), graphics={
+ Rectangle(
+ extent={{-238,318},{158,202}},
+ fillColor={210,210,210},
+ fillPattern=FillPattern.Solid,
+ pattern=LinePattern.None),
+ Text(
+ extent={{-40,302},{138,260}},
+ pattern=LinePattern.None,
+ fillColor={210,210,210},
+ fillPattern=FillPattern.Solid,
+ textColor={0,0,127},
+ horizontalAlignment=TextAlignment.Right,
+ textString="The Change block in default has initial input of zero.
+This is to avoid the initial edge.")}),
+ Icon(coordinateSystem(extent={{-100,-200},{100,200}}), graphics={
+ Rectangle(
+ extent={{-100,-200},{100,200}},
+ lineColor={0,0,127},
+ fillColor={255,255,255},
+ fillPattern=FillPattern.Solid,
+ borderPattern=BorderPattern.Raised),
+ Text(
+ extent={{-120,240},{120,200}},
+ textColor={0,0,255},
+ textString="%name"),
+ Rectangle(
+ extent={{-10,120},{10,-140}},
+ lineColor={200,200,200},
+ fillColor={207,207,207},
+ fillPattern=FillPattern.Solid),
+ Polygon(
+ points={{0,160},{-40,120},{0,120},{40,120},{0,160}},
+ lineColor={200,200,200},
+ fillColor={207,207,207},
+ fillPattern=FillPattern.Solid),
+ Text(
+ extent={{-100,198},{-58,186}},
+ textColor={255,127,0},
+ textString="uStaSet"),
+ Text(
+ extent={{-100,106},{-70,94}},
+ textColor={255,0,255},
+ textString="uChi"),
+ Text(
+ extent={{-96,58},{-32,44}},
+ textColor={255,0,255},
+ textString="uChiConIsoVal"),
+ Text(
+ extent={{-96,-12},{-38,-26}},
+ textColor={255,0,255},
+ textString="uConWatReq"),
+ Text(
+ extent={{-100,-34},{-64,-46}},
+ textColor={255,0,255},
+ textString="uWSE",
+ visible=have_WSE),
+ Text(
+ extent={{-98,-184},{-48,-196}},
+ textColor={255,0,255},
+ textString="uChiWatReq"),
+ Text(
+ extent={{-96,128},{-60,116}},
+ textColor={0,0,127},
+ pattern=LinePattern.Dash,
+ textString="uChiLoa",
+ visible=need_reduceChillerDemand),
+ Text(
+ extent={{-96,84},{-40,70}},
+ textColor={0,0,127},
+ pattern=LinePattern.Dash,
+ textString="VChiWat_flow"),
+ Text(
+ extent={{-96,-50},{-12,-68}},
+ textColor={0,0,127},
+ pattern=LinePattern.Dash,
+ textString="uConWatPumSpeSet",
+ visible=not have_fixSpeConWatPum),
+ Text(
+ extent={{-96,-72},{-22,-86}},
+ textColor={0,0,127},
+ pattern=LinePattern.Dash,
+ textString="uConWatPumSpe",
+ visible=not have_fixSpeConWatPum),
+ Text(
+ extent={{-96,-164},{-36,-176}},
+ textColor={0,0,127},
+ pattern=LinePattern.Dash,
+ textString="uChiWatIsoVal"),
+ Text(
+ extent={{60,198},{100,186}},
+ textColor={255,0,255},
+ textString="yStaPro"),
+ Text(
+ extent={{52,78},{98,66}},
+ textColor={255,0,255},
+ textString="yTowStaUp"),
+ Text(
+ extent={{58,38},{96,26}},
+ textColor={255,0,255},
+ textString="yLeaPum"),
+ Text(
+ extent={{48,-82},{96,-96}},
+ textColor={255,0,255},
+ textString="yChiHeaCon"),
+ Text(
+ extent={{76,-182},{100,-194}},
+ textColor={255,0,255},
+ textString="yChi"),
+ Text(
+ extent={{60,158},{96,146}},
+ textColor={0,0,127},
+ pattern=LinePattern.Dash,
+ textString="yChiDem",
+ visible=need_reduceChillerDemand),
+ Text(
+ extent={{28,118},{98,104}},
+ textColor={0,0,127},
+ pattern=LinePattern.Dash,
+ textString="yChiWatMinFloSet"),
+ Text(
+ extent={{18,-4},{98,-14}},
+ textColor={0,0,127},
+ pattern=LinePattern.Dash,
+ textString="yDesConWatPumSpe",
+ visible=not have_fixSpeConWatPum),
+ Text(
+ extent={{36,-130},{96,-146}},
+ textColor={0,0,127},
+ pattern=LinePattern.Dash,
+ textString="yChiWatIsoVal"),
+ Text(
+ extent={{34,-42},{96,-56}},
+ textColor={255,127,0},
+ textString="yConWatPumNum"),
+ Text(
+ extent={{-100,168},{-60,156}},
+ textColor={255,0,255},
+ textString="uChiSet"),
+ Text(
+ extent={{-98,36},{-56,24}},
+ textColor={255,127,0},
+ textString="uChiSta"),
+ Text(
+ extent={{-98,-144},{-48,-156}},
+ textColor={255,0,255},
+ textString="uChiHeaCon"),
+ Text(
+ extent={{-96,-122},{-38,-136}},
+ textColor={255,0,255},
+ textString="uConWatPum",
+ visible=have_fixSpeConWatPum),
+ Text(
+ extent={{-96,-92},{-30,-106}},
+ textColor={255,0,255},
+ textString="uEnaPlaConIso"),
+ Text(
+ extent={{-96,16},{-24,2}},
+ textColor={255,0,255},
+ textString="uEnaPlaConPum")}),
+Documentation(info="
+
+Block that controls devices when there is a stage-up command. This sequence is for
+water-cooled primary-only parallel chiller plants with headered chilled water pumps
+and headered condenser water pumps, or air-cooled primary-only parallel chiller
+plants with headered chilled water pumps.
+This development is based on ASHRAE RP-1711 Advanced Sequences of Operation for
+HVAC Systems Phase II – Central Plants and Hydronic Systems (Draft on March 23, 2020),
+section 5.2.4.16, which specifies the step-by-step control of
+devices during chiller staging up process.
+
+
+-
+Identify the chiller(s) that should be enabled (and disabled, if
have_ponyChiller=true
).
+This is implemented in block nexChi
. See
+
+Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.Processes.Subsequences.NextChiller
+for more decriptions.
+
+-
+Command operating chillers to reduce demand to 75% (
chiDemRedFac
) of
+their current load (uChiLoa
). Wait until actual demand < 80% of
+current load up to a maximum of 5 minutes (holChiDemTim
) before proceeding.
+This is implemented in block chiDemRed
. See
+
+Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.Processes.Subsequences.ReduceDemand
+for more decriptions.
+
+-
+Reset the minimum chilled water flow setpoint,
+
+-
+For any stage change during which a smaller chiller is disabled and a larger chiller
+is enabled, slowly change (
byPasSetTim
) the minimum chilled water flow
+setpoint to the one that includes both chillers are enabled. After new setpoint is
+achieved, wait 1 minute (aftByPasSetTim
) to allow loop to stabilize.
+
+-
+For any other stage change, reset ((
byPasSetTim
)) the minimum chilled
+water flow setpoint to the one that includes the new chiller. After new setpoint is
+achieved, wait 1 minute (aftByPasSetTim
) to allow loop to stabilize.
+
+
+The minimum flow setpoint is reset in block minChiWatFlo
+(
+Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.MinimumFlowBypass.Subsequences.FlowSetpoint).
+Block minBypSet
checks if the new setpoint is achieved
+(
+Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.Processes.Subsequences.ResetMinBypass).
+
+-
+Start the next condenser water pump and/or change condenser water pump speed
+to that required of the new stage. Wait 10 seconds (
thrTimEnb
).
+Block enaNexCWP
identifies chiller stage for the condenser water pump
+control
+(
+Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.Processes.Subsequences.EnableCWPump)
+and block conWatPumCon
checks if the condenser water pumps have been reset
+(
+Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Pumps.CondenserWater.Controller).
+
+-
+Enabled head pressure control for the chiller being enabled. Wait 30 seconds (
waiTim
).
+This is implemented in block enaHeaCon
. See
+
+Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.Processes.Subsequences.HeadControl
+for more decriptions.
+
+-
+Slowly (
chaChiWatIsoTim
) open chilled water isolation valve of the chiller
+being enabled. The valve timing should be determined in the fields.
+This is implemented in block enaChiIsoVal
. See
+
+Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.Processes.Subsequences.CHWIsoVal
+for more decriptions.
+
+-
+End the staging up process:
+
+-
+If the stage change does not require one chiller enabled and another chiller disabled,
+start the next stage chiller after the isolation valve is fully open.
+
+-
+If the stage change does require one chiller enabled and another chiller disabled,
+starting the next stage chiller after the isolation valve is fully open, then shut off
+the smaller chiller, close the chiller's chilled water isolation valve, disable
+the head pressure control loop, and change the minimum chilled water flow setpoint
+to the one for the new stage.
+
+-
+Release the demand limit, which marks the end of the staging process.
+
+
+These are implemented in block endUp
. See
+
+Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.Processes.Subsequences.UpEnd
+for more decriptions.
+
+
+", revisions="
+
+-
+September 23, 2019, by Jianjun Hu:
+First implementation.
+
+
+"));
+end Up;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/Processes/Validation/DownWithOnOff.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/Processes/Validation/DownWithOnOff.mo
new file mode 100644
index 00000000000..e43d0137089
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/Processes/Validation/DownWithOnOff.mo
@@ -0,0 +1,382 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.Processes.Validation;
+model DownWithOnOff
+ "Validate sequence of staging down process which requires enabling one chiller and disabling another chiller"
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.Processes.Down
+ dowProCon(
+ final nChi=2,
+ final totSta=4,
+ final have_ponyChiller=true,
+ final need_reduceChillerDemand=true,
+ final chaChiWatIsoTim=300,
+ final staVec={0,0.5,1,2},
+ final desConWatPumSpe={0,0.5,0.75,0.6},
+ final desConWatPumNum={0,1,1,2},
+ final byPasSetTim=300,
+ final minFloSet={0.5,1},
+ final maxFloSet={1,1.5})
+ "Stage down process when does require chiller on and off"
+ annotation (Placement(transformation(extent={{20,60},{40,100}})));
+
+protected
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Ramp chiWatFlo1(
+ final height=0.5 - 5/3,
+ final duration=300,
+ final offset=5/3,
+ final startTime=800) "Chilled water flow rate"
+ annotation (Placement(transformation(extent={{-200,-100},{-180,-80}})));
+ Buildings.Controls.OBC.CDL.Logical.Sources.Pulse booPul1(
+ final width=0.1,
+ final period=1500) "Boolean pulse"
+ annotation (Placement(transformation(extent={{-200,130},{-180,150}})));
+ Buildings.Controls.OBC.CDL.Logical.Not staDow1 "Stage down command"
+ annotation (Placement(transformation(extent={{-160,130},{-140,150}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant chiLoa1(
+ final k=2) "Chiller load"
+ annotation (Placement(transformation(extent={{-200,-60},{-180,-40}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant yOpeParLoaRatMin1(
+ final k=0.78)
+ "Minimum cycling operative partial load ratio"
+ annotation (Placement(transformation(extent={{-200,20},{-180,40}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant fulOpe1(final k=1)
+ "Full open isolation valve"
+ annotation (Placement(transformation(extent={{-200,-260},{-180,-240}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant zerLoa(
+ final k=0) "Constant zero"
+ annotation (Placement(transformation(extent={{-200,-20},{-180,0}})));
+ Buildings.Controls.OBC.CDL.Logical.Pre chiOneSta(
+ final pre_u_start=false) "Chiller one status"
+ annotation (Placement(transformation(extent={{100,30},{120,50}})));
+ Buildings.Controls.OBC.CDL.Continuous.Switch chiOneLoa "Chiller one load"
+ annotation (Placement(transformation(extent={{-120,-20},{-100,0}})));
+ Buildings.Controls.OBC.CDL.Continuous.Switch IsoValOne "Logical switch"
+ annotation (Placement(transformation(extent={{-120,-220},{-100,-200}})));
+ Buildings.Controls.OBC.CDL.Discrete.ZeroOrderHold zerOrdHol3[2](
+ final samplePeriod=fill(10, 2))
+ "Output the input signal with a zero order hold"
+ annotation (Placement(transformation(extent={{100,-180},{120,-160}})));
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant wseSta1(
+ final k=false)
+ "Waterside economizer status"
+ annotation (Placement(transformation(extent={{-200,-300},{-180,-280}})));
+ Buildings.Controls.OBC.CDL.Discrete.ZeroOrderHold zerOrdHol4(
+ final samplePeriod=10)
+ "Output the input signal with a zero order hold"
+ annotation (Placement(transformation(extent={{100,-220},{120,-200}})));
+ Buildings.Controls.OBC.CDL.Discrete.ZeroOrderHold zerOrdHol5(
+ final samplePeriod=20)
+ "Output the input signal with a zero order hold"
+ annotation (Placement(transformation(extent={{100,-260},{120,-240}})));
+ Buildings.Controls.OBC.CDL.Continuous.Switch chiTwoLoa "Chiller two load"
+ annotation (Placement(transformation(extent={{-120,-60},{-100,-40}})));
+ Buildings.Controls.OBC.CDL.Logical.Pre chiTwoSta(
+ final pre_u_start=true) "Chiller two status"
+ annotation (Placement(transformation(extent={{100,-10},{120,10}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant zer3[2](
+ final k=fill(0,2)) "Constant zero"
+ annotation (Placement(transformation(extent={{80,80},{100,100}})));
+ Buildings.Controls.OBC.CDL.Discrete.ZeroOrderHold zerOrdHol6(
+ final samplePeriod=10) "Output the input signal with a zero order hold"
+ annotation (Placement(transformation(extent={{80,110},{100,130}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant chiLoa3(
+ final k=1000)
+ "Chiller load"
+ annotation (Placement(transformation(extent={{80,150},{100,170}})));
+ Buildings.Controls.OBC.CDL.Continuous.Switch chiLoa2[2] "Chiller load"
+ annotation (Placement(transformation(extent={{140,110},{160,130}})));
+ Buildings.Controls.OBC.CDL.Discrete.ZeroOrderHold zerOrdHol7(
+ final samplePeriod=10)
+ "Output the input signal with a zero order hold"
+ annotation (Placement(transformation(extent={{180,110},{200,130}})));
+ Buildings.Controls.OBC.CDL.Logical.Pre chiOneHea(
+ final pre_u_start=false)
+ "Chiller one head pressure control"
+ annotation (Placement(transformation(extent={{100,-100},{120,-80}})));
+ Buildings.Controls.OBC.CDL.Logical.Pre chiTwoHea(
+ final pre_u_start=true)
+ "Chiller two head pressure control"
+ annotation (Placement(transformation(extent={{100,-140},{120,-120}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant zerOpe2(
+ final k=0) "Closed isolation valve"
+ annotation (Placement(transformation(extent={{-200,-220},{-180,-200}})));
+ Buildings.Controls.OBC.CDL.Continuous.Switch IsoValTwo "Logical switch"
+ annotation (Placement(transformation(extent={{-120,-260},{-100,-240}})));
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant staTwoChi2[2](
+ final k={false,true})
+ "Vector of chillers status setpoint at stage two"
+ annotation (Placement(transformation(extent={{-200,90},{-180,110}})));
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant staOneChi2[2](
+ final k={true,false})
+ "Vector of chillers status setpoint at stage one"
+ annotation (Placement(transformation(extent={{-200,160},{-180,180}})));
+ Buildings.Controls.OBC.CDL.Routing.BooleanScalarReplicator booRep2(
+ final nout=2)
+ "Replicate boolean input"
+ annotation (Placement(transformation(extent={{-120,130},{-100,150}})));
+ Buildings.Controls.OBC.CDL.Logical.Switch chiSet2[2]
+ "Chiller status setpoint"
+ annotation (Placement(transformation(extent={{-80,130},{-60,150}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant upSta2(
+ final k=2)
+ "Stage two"
+ annotation (Placement(transformation(extent={{-200,190},{-180,210}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant dowSta2(
+ final k=1)
+ "Stage one"
+ annotation (Placement(transformation(extent={{-200,230},{-180,250}})));
+ Buildings.Controls.OBC.CDL.Continuous.Switch swi2 "Logical switch"
+ annotation (Placement(transformation(extent={{-120,210},{-100,230}})));
+ Buildings.Controls.OBC.CDL.Conversions.RealToInteger staSet2
+ "Stage setpoint index"
+ annotation (Placement(transformation(extent={{-80,210},{-60,230}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant staOne(
+ final k=1) "Stage one"
+ annotation (Placement(transformation(extent={{-200,-140},{-180,-120}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant staTwo(
+ final k=2)
+ "Stage two"
+ annotation (Placement(transformation(extent={{-200,-180},{-180,-160}})));
+ Buildings.Controls.OBC.CDL.Continuous.Switch chiSta "Current chiller stage"
+ annotation (Placement(transformation(extent={{-120,-160},{-100,-140}})));
+ Buildings.Controls.OBC.CDL.Conversions.RealToInteger sta "Current chiller stage"
+ annotation (Placement(transformation(extent={{-80,-160},{-60,-140}})));
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant fal(
+ final k=false)
+ "Logical false"
+ annotation (Placement(transformation(extent={{80,180},{100,200}})));
+ Buildings.Controls.OBC.CDL.Logical.FallingEdge falEdg
+ "Check if the down process has ended"
+ annotation (Placement(transformation(extent={{80,210},{100,230}})));
+ Buildings.Controls.OBC.CDL.Logical.Latch lat
+ "True when it is not in process"
+ annotation (Placement(transformation(extent={{120,210},{140,230}})));
+
+equation
+ connect(booPul1.y, staDow1.u)
+ annotation (Line(points={{-178,140},{-162,140}}, color={255,0,255}));
+ connect(staDow1.y, chiOneLoa.u2)
+ annotation (Line(points={{-138,140},{-130,140},{-130,-10},{-122,-10}},
+ color={255,0,255}));
+ connect(staDow1.y, chiTwoLoa.u2)
+ annotation (Line(points={{-138,140},{-130,140},{-130,-50},{-122,-50}},
+ color={255,0,255}));
+ connect(chiLoa1.y, chiTwoLoa.u3)
+ annotation (Line(points={{-178,-50},{-160,-50},{-160,-58},{-122,-58}},
+ color={0,0,127}));
+ connect(zerLoa.y, chiOneLoa.u3)
+ annotation (Line(points={{-178,-10},{-160,-10},{-160,-18},{-122,-18}},
+ color={0,0,127}));
+ connect(chiLoa3.y, chiLoa2[1].u1)
+ annotation (Line(points={{102,160},{120,160},{120,128},{138,128}},
+ color={0,0,127}));
+ connect(zerOrdHol6.y, chiLoa2[2].u1)
+ annotation (Line(points={{102,120},{120,120},{120,128},{138,128}},
+ color={0,0,127}));
+ connect(zer3.y, chiLoa2.u3)
+ annotation (Line(points={{102,90},{120,90},{120,112},{138,112}},
+ color={0,0,127}));
+ connect(dowProCon.yChiDem[2], zerOrdHol6.u)
+ annotation (Line(points={{42,95.5},{60,95.5},{60,120},{78,120}},
+ color={0,0,127}));
+ connect(dowProCon.yChi[1], chiOneSta.u)
+ annotation (Line(points={{42,91.5},{60,91.5},{60,40},{98,40}},
+ color={255,0,255}));
+ connect(dowProCon.yChi[2], chiTwoSta.u)
+ annotation (Line(points={{42,92.5},{62,92.5},{62,0},{98,0}},
+ color={255,0,255}));
+ connect(chiOneSta.y, chiLoa2[1].u2)
+ annotation (Line(points={{122,40},{130,40},{130,120},{138,120}},
+ color={255,0,255}));
+ connect(chiTwoSta.y, chiLoa2[2].u2)
+ annotation (Line(points={{122,0},{132,0},{132,120},{138,120}},
+ color={255,0,255}));
+ connect(chiLoa2[2].y, chiTwoLoa.u1)
+ annotation (Line(points={{162,120},{170,120},{170,-70},{-140,-70},{-140,-42},
+ {-122,-42}}, color={0,0,127}));
+ connect(chiLoa2[1].y, zerOrdHol7.u)
+ annotation (Line(points={{162,120},{178,120}}, color={0,0,127}));
+ connect(zerOrdHol7.y, chiOneLoa.u1)
+ annotation (Line(points={{202,120},{210,120},{210,-30},{-140,-30},{-140,-2},
+ {-122,-2}}, color={0,0,127}));
+ connect(yOpeParLoaRatMin1.y, dowProCon.yOpeParLoaRatMin)
+ annotation (Line(points={{-178,30},{-126,30},{-126,94},{18,94}},
+ color={0,0,127}));
+ connect(chiOneLoa.y, dowProCon.uChiLoa[1])
+ annotation (Line(points={{-98,-10},{-90,-10},{-90,91.5},{18,91.5}},
+ color={0,0,127}));
+ connect(chiTwoLoa.y, dowProCon.uChiLoa[2])
+ annotation (Line(points={{-98,-50},{-88,-50},{-88,92.5},{18,92.5}},
+ color={0,0,127}));
+ connect(chiOneSta.y, dowProCon.uChi[1])
+ annotation (Line(points={{122,40},{130,40},{130,20},{-80,20},{-80,88.5},{18,
+ 88.5}},
+ color={255,0,255}));
+ connect(chiTwoSta.y, dowProCon.uChi[2])
+ annotation (Line(points={{122,0},{132,0},{132,-20},{-78,-20},{-78,89.5},{18,
+ 89.5}},
+ color={255,0,255}));
+ connect(chiWatFlo1.y, dowProCon.VChiWat_flow)
+ annotation (Line(points={{-178,-90},{-76,-90},{-76,87},{18,87}},
+ color={0,0,127}));
+ connect(dowProCon.yChiHeaCon[1], chiOneHea.u)
+ annotation (Line(points={{42,76.5},{58,76.5},{58,-90},{98,-90}},
+ color={255,0,255}));
+ connect(dowProCon.yChiHeaCon[2], chiTwoHea.u)
+ annotation (Line(points={{42,77.5},{56,77.5},{56,-130},{98,-130}},
+ color={255,0,255}));
+ connect(chiOneHea.y, dowProCon.uChiHeaCon[1])
+ annotation (Line(points={{122,-90},{140,-90},{140,-60},{-32,-60},{-32,80.5},
+ {18,80.5}},
+ color={255,0,255}));
+ connect(chiTwoHea.y, dowProCon.uChiHeaCon[2])
+ annotation (Line(points={{122,-130},{140,-130},{140,-112},{-34,-112},{-34,81.5},
+ {18,81.5}},
+ color={255,0,255}));
+ connect(zerOpe2.y, IsoValOne.u3)
+ annotation (Line(points={{-178,-210},{-160,-210},{-160,-218},{-122,-218}},
+ color={0,0,127}));
+ connect(fulOpe1.y, IsoValTwo.u3)
+ annotation (Line(points={{-178,-250},{-160,-250},{-160,-258},{-122,-258}},
+ color={0,0,127}));
+ connect(staDow1.y, IsoValOne.u2)
+ annotation (Line(points={{-138,140},{-130,140},{-130,-210},{-122,-210}},
+ color={255,0,255}));
+ connect(staDow1.y, IsoValTwo.u2)
+ annotation (Line(points={{-138,140},{-130,140},{-130,-250},{-122,-250}},
+ color={255,0,255}));
+ connect(dowProCon.yChiWatIsoVal, zerOrdHol3.u)
+ annotation (Line(points={{42,84},{72,84},{72,-170},{98,-170}},
+ color={0,0,127}));
+ connect(zerOrdHol3[1].y, IsoValOne.u1)
+ annotation (Line(points={{122,-170},{140,-170},{140,-190},{-140,-190},{-140,
+ -202},{-122,-202}}, color={0,0,127}));
+ connect(zerOrdHol3[2].y, IsoValTwo.u1)
+ annotation (Line(points={{122,-170},{140,-170},{140,-190},{-140,-190},{-140,
+ -242},{-122,-242}}, color={0,0,127}));
+ connect(IsoValOne.y, dowProCon.uChiWatIsoVal[1])
+ annotation (Line(points={{-98,-210},{-44,-210},{-44,77.5},{18,77.5}},
+ color={0,0,127}));
+ connect(IsoValTwo.y, dowProCon.uChiWatIsoVal[2])
+ annotation (Line(points={{-98,-250},{-42,-250},{-42,78.5},{18,78.5}},
+ color={0,0,127}));
+ connect(chiOneSta.y, dowProCon.uChiWatReq[1])
+ annotation (Line(points={{122,40},{130,40},{130,20},{-30,20},{-30,74.5},{18,
+ 74.5}},
+ color={255,0,255}));
+ connect(chiTwoSta.y, dowProCon.uChiWatReq[2])
+ annotation (Line(points={{122,0},{132,0},{132,-20},{-28,-20},{-28,75.5},{18,
+ 75.5}},
+ color={255,0,255}));
+ connect(chiOneSta.y, dowProCon.uConWatReq[1])
+ annotation (Line(points={{122,40},{130,40},{130,20},{-26,20},{-26,72.5},{18,
+ 72.5}},
+ color={255,0,255}));
+ connect(chiTwoSta.y, dowProCon.uConWatReq[2])
+ annotation (Line(points={{122,0},{132,0},{132,-20},{-24,-20},{-24,73.5},{18,
+ 73.5}},
+ color={255,0,255}));
+ connect(chiOneSta.y, dowProCon.uChiConIsoVal[1])
+ annotation (Line(points={{122,40},{130,40},{130,20},{-22,20},{-22,69.5},{18,
+ 69.5}},
+ color={255,0,255}));
+ connect(chiTwoSta.y, dowProCon.uChiConIsoVal[2])
+ annotation (Line(points={{122,0},{132,0},{132,-20},{-20,-20},{-20,70.5},{18,
+ 70.5}},
+ color={255,0,255}));
+ connect(wseSta1.y, dowProCon.uWSE)
+ annotation (Line(points={{-178,-290},{-10,-290},{-10,67},{18,67}},
+ color={255,0,255}));
+ connect(dowProCon.yDesConWatPumSpe, zerOrdHol4.u)
+ annotation (Line(points={{42,69},{78,69},{78,-210},{98,-210}},
+ color={0,0,127}));
+ connect(zerOrdHol4.y, zerOrdHol5.u)
+ annotation (Line(points={{122,-210},{140,-210},{140,-230},{80,-230},{80,-250},
+ {98,-250}}, color={0,0,127}));
+ connect(zerOrdHol4.y, dowProCon.uConWatPumSpeSet)
+ annotation (Line(points={{122,-210},{140,-210},{140,-230},{-8,-230},{-8,65},
+ {18,65}}, color={0,0,127}));
+ connect(zerOrdHol5.y, dowProCon.uConWatPumSpe)
+ annotation (Line(points={{122,-250},{140,-250},{140,-270},{-6,-270},{-6,63},
+ {18,63}}, color={0,0,127}));
+ connect(staDow1.y, booRep2.u)
+ annotation (Line(points={{-138,140},{-122,140}}, color={255,0,255}));
+ connect(staTwoChi2.y, chiSet2.u3) annotation (Line(points={{-178,100},{-90,100},
+ {-90,132},{-82,132}}, color={255,0,255}));
+ connect(booRep2.y, chiSet2.u2)
+ annotation (Line(points={{-98,140},{-82,140}}, color={255,0,255}));
+ connect(staOneChi2.y, chiSet2.u1) annotation (Line(points={{-178,170},{-90,170},
+ {-90,148},{-82,148}}, color={255,0,255}));
+ connect(dowSta2.y, swi2.u1) annotation (Line(points={{-178,240},{-140,240},{-140,
+ 228},{-122,228}}, color={0,0,127}));
+ connect(upSta2.y, swi2.u3) annotation (Line(points={{-178,200},{-140,200},{-140,
+ 212},{-122,212}}, color={0,0,127}));
+ connect(staDow1.y, swi2.u2) annotation (Line(points={{-138,140},{-130,140},{-130,
+ 220},{-122,220}}, color={255,0,255}));
+ connect(swi2.y, staSet2.u)
+ annotation (Line(points={{-98,220},{-82,220}}, color={0,0,127}));
+ connect(chiSet2.y, dowProCon.uChiSet) annotation (Line(points={{-58,140},{-40,
+ 140},{-40,97},{18,97}}, color={255,0,255}));
+ connect(staSet2.y, dowProCon.uStaSet) annotation (Line(points={{-58,220},{-36,
+ 220},{-36,99},{18,99}}, color={255,127,0}));
+ connect(staOne.y, chiSta.u1) annotation (Line(points={{-178,-130},{-160,-130},
+ {-160,-142},{-122,-142}}, color={0,0,127}));
+ connect(staTwo.y, chiSta.u3) annotation (Line(points={{-178,-170},{-160,-170},
+ {-160,-158},{-122,-158}}, color={0,0,127}));
+ connect(chiSta.y, sta.u)
+ annotation (Line(points={{-98,-150},{-82,-150}}, color={0,0,127}));
+ connect(dowProCon.yStaPro, falEdg.u) annotation (Line(points={{42,99},{56,99},
+ {56,220},{78,220}}, color={255,0,255}));
+ connect(falEdg.y, lat.u)
+ annotation (Line(points={{102,220},{118,220}}, color={255,0,255}));
+ connect(fal.y, lat.clr) annotation (Line(points={{102,190},{110,190},{110,214},
+ {118,214}}, color={255,0,255}));
+ connect(lat.y, chiSta.u2) annotation (Line(points={{142,220},{214,220},{214,-104},
+ {-140,-104},{-140,-150},{-122,-150}}, color={255,0,255}));
+ connect(sta.y, dowProCon.uChiSta) annotation (Line(points={{-58,-150},{-50,
+ -150},{-50,84},{18,84}},
+ color={255,127,0}));
+
+annotation (
+ experiment(StopTime=1500, Tolerance=1e-06),
+ __Dymola_Commands(file="modelica://Buildings/Resources/Scripts/Dymola/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/Processes/Validation/DownWithOnOff.mos"
+ "Simulate and plot"),
+ Documentation(info="
+
+This example validates
+
+Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.Processes.Down.
+
+", revisions="
+
+-
+October 2, by Jianjun Hu:
+First implementation.
+
+
+"),
+Icon(coordinateSystem(extent={{-100,-100},{100,100}}),
+ graphics={
+ Ellipse(lineColor = {75,138,73},
+ fillColor={255,255,255},
+ fillPattern = FillPattern.Solid,
+ extent = {{-100,-100},{100,100}}),
+ Polygon(lineColor = {0,0,255},
+ fillColor = {75,138,73},
+ pattern = LinePattern.None,
+ fillPattern = FillPattern.Solid,
+ points = {{-36,60},{64,0},{-36,-60},{-36,60}})}),Diagram(
+ coordinateSystem(preserveAspectRatio=false, extent={{-220,-320},{220,320}}),
+ graphics={
+ Text(
+ extent={{-194,276},{-4,260}},
+ textColor={0,0,127},
+ textString="to stage 1 which only has small chiller enabled (chiller 1)."),
+ Text(
+ extent={{-194,288},{-6,278}},
+ textColor={0,0,127},
+ textString="from stage 2 which only has large chiller enabled (chiller 2), "),
+ Text(
+ extent={{-204,300},{-156,292}},
+ textColor={0,0,127},
+ textString="Stage down:")}));
+end DownWithOnOff;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/Processes/Validation/DownWithoutOnOff.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/Processes/Validation/DownWithoutOnOff.mo
new file mode 100644
index 00000000000..88071a5b9ee
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/Processes/Validation/DownWithoutOnOff.mo
@@ -0,0 +1,268 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.Processes.Validation;
+model DownWithoutOnOff
+ "Validate sequence of staging down process which does require chiller ON"
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.Processes.Down
+ dowProCon(
+ final nChi=2,
+ final totSta=4,
+ final need_reduceChillerDemand=true,
+ final chaChiWatIsoTim=300,
+ final staVec={0,0.5,1,2},
+ final desConWatPumSpe={0,0.5,0.75,0.6},
+ final desConWatPumNum={0,1,1,2},
+ final byPasSetTim=300,
+ final minFloSet={1,1},
+ final maxFloSet={1.5,1.5})
+ "Stage down process when does not require chiller on and off"
+ annotation (Placement(transformation(extent={{40,50},{60,90}})));
+
+protected
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Ramp chiWatFlo(
+ final height=-1,
+ final duration=300,
+ final offset=2,
+ final startTime=800) "Chilled water flow rate"
+ annotation (Placement(transformation(extent={{-140,-110},{-120,-90}})));
+ Buildings.Controls.OBC.CDL.Routing.BooleanScalarReplicator booRep(
+ final nout=2) "Replicate boolean input"
+ annotation (Placement(transformation(extent={{-60,-210},{-40,-190}})));
+ Buildings.Controls.OBC.CDL.Logical.Sources.Pulse booPul(
+ final width=0.075,
+ final period=1500) "Boolean pulse"
+ annotation (Placement(transformation(extent={{-140,120},{-120,140}})));
+ Buildings.Controls.OBC.CDL.Logical.Not staDow "Stage down command"
+ annotation (Placement(transformation(extent={{-100,120},{-80,140}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant chiLoa[2](
+ final k=fill(2, 2))
+ "Chiller load"
+ annotation (Placement(transformation(extent={{-140,-30},{-120,-10}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant yOpeParLoaRatMin(
+ final k=0.78) "Minimum cycling operative partial load ratio"
+ annotation (Placement(transformation(extent={{-140,10},{-120,30}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant fulOpe[2](
+ final k=fill(1, 2)) "Full open isolation valve"
+ annotation (Placement(transformation(extent={{-140,-240},{-120,-220}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant zer1[2](
+ final k=fill(0,2)) "Constant zero"
+ annotation (Placement(transformation(extent={{-140,-70},{-120,-50}})));
+ Buildings.Controls.OBC.CDL.Logical.Pre pre2[2](
+ final pre_u_start=fill(true,2)) "Break algebraic loop"
+ annotation (Placement(transformation(extent={{100,30},{120,50}})));
+ Buildings.Controls.OBC.CDL.Continuous.Switch swi1[2] "Logical switch"
+ annotation (Placement(transformation(extent={{-60,-50},{-40,-30}})));
+ Buildings.Controls.OBC.CDL.Continuous.Switch IsoVal[2] "Logical switch"
+ annotation (Placement(transformation(extent={{-20,-240},{0,-220}})));
+ Buildings.Controls.OBC.CDL.Discrete.ZeroOrderHold zerOrdHol[2](
+ final samplePeriod=fill(10, 2))
+ "Output the input signal with a zero order hold"
+ annotation (Placement(transformation(extent={{100,-40},{120,-20}})));
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant wseSta(final k=false)
+ "Waterside economizer status"
+ annotation (Placement(transformation(extent={{-140,-280},{-120,-260}})));
+ Buildings.Controls.OBC.CDL.Discrete.ZeroOrderHold zerOrdHol1(
+ final samplePeriod=10)
+ "Output the input signal with a zero order hold"
+ annotation (Placement(transformation(extent={{100,-90},{120,-70}})));
+ Buildings.Controls.OBC.CDL.Discrete.ZeroOrderHold zerOrdHol2(
+ final samplePeriod=20)
+ "Output the input signal with a zero order hold"
+ annotation (Placement(transformation(extent={{100,-130},{120,-110}})));
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant staTwoChi2[2](final k={
+ true,true})
+ "Vector of chillers status setpoint at stage two"
+ annotation (Placement(transformation(extent={{-140,90},{-120,110}})));
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant staOneChi2[2](
+ final k={true,false})
+ "Vector of chillers status setpoint at stage one"
+ annotation (Placement(transformation(extent={{-140,150},{-120,170}})));
+ Buildings.Controls.OBC.CDL.Routing.BooleanScalarReplicator booRep2(final nout=2)
+ "Replicate boolean input"
+ annotation (Placement(transformation(extent={{-60,120},{-40,140}})));
+ Buildings.Controls.OBC.CDL.Logical.Switch chiSet2[2]
+ "Chiller status setpoint"
+ annotation (Placement(transformation(extent={{-20,120},{0,140}})));
+ Buildings.Controls.OBC.CDL.Conversions.RealToInteger staSet2
+ "Stage setpoint index"
+ annotation (Placement(transformation(extent={{-20,200},{0,220}})));
+ Buildings.Controls.OBC.CDL.Continuous.Switch swi2 "Logical switch"
+ annotation (Placement(transformation(extent={{-60,200},{-40,220}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant upSta2(final k=2)
+ "Stage two"
+ annotation (Placement(transformation(extent={{-140,180},{-120,200}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant dowSta2(final k=1)
+ "Stage one"
+ annotation (Placement(transformation(extent={{-140,220},{-120,240}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant staOne(final k=1) "Stage one"
+ annotation (Placement(transformation(extent={{-140,-150},{-120,-130}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant staTwo(final k=2)
+ "Stage two"
+ annotation (Placement(transformation(extent={{-140,-190},{-120,-170}})));
+ Buildings.Controls.OBC.CDL.Continuous.Switch chiSta "Current chiller stage"
+ annotation (Placement(transformation(extent={{-60,-170},{-40,-150}})));
+ Buildings.Controls.OBC.CDL.Conversions.RealToInteger sta "Current chiller stage"
+ annotation (Placement(transformation(extent={{-20,-170},{0,-150}})));
+ Buildings.Controls.OBC.CDL.Logical.FallingEdge falEdg
+ "Check if the down process has ended"
+ annotation (Placement(transformation(extent={{80,130},{100,150}})));
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant fal(final k=false)
+ "Logical false"
+ annotation (Placement(transformation(extent={{80,100},{100,120}})));
+ Buildings.Controls.OBC.CDL.Logical.Latch lat
+ "True when it is not in process"
+ annotation (Placement(transformation(extent={{120,130},{140,150}})));
+
+equation
+ connect(booPul.y,staDow. u)
+ annotation (Line(points={{-118,130},{-102,130}}, color={255,0,255}));
+ connect(yOpeParLoaRatMin.y, dowProCon.yOpeParLoaRatMin)
+ annotation (Line(points={{-118,20},{-58,20},{-58,84},{38,84}},
+ color={0,0,127}));
+ connect(dowProCon.yChi, pre2.u)
+ annotation (Line(points={{62,82},{94,82},{94,40},{98,40}},
+ color={255,0,255}));
+ connect(pre2.y, swi1.u2)
+ annotation (Line(points={{122,40},{140,40},{140,0},{-80,0},{-80,-40},{-62,-40}},
+ color={255,0,255}));
+ connect(chiLoa.y, swi1.u1)
+ annotation (Line(points={{-118,-20},{-100,-20},{-100,-32},{-62,-32}},
+ color={0,0,127}));
+ connect(zer1.y, swi1.u3)
+ annotation (Line(points={{-118,-60},{-100,-60},{-100,-48},{-62,-48}},
+ color={0,0,127}));
+ connect(swi1.y, dowProCon.uChiLoa)
+ annotation (Line(points={{-38,-40},{-30,-40},{-30,82},{38,82}},
+ color={0,0,127}));
+ connect(pre2.y, dowProCon.uChi)
+ annotation (Line(points={{122,40},{140,40},{140,0},{-28,0},{-28,79},{38,79}},
+ color={255,0,255}));
+ connect(chiWatFlo.y, dowProCon.VChiWat_flow)
+ annotation (Line(points={{-118,-100},{-26,-100},{-26,77},{38,77}},
+ color={0,0,127}));
+ connect(pre2.y, dowProCon.uChiHeaCon)
+ annotation (Line(points={{122,40},{140,40},{140,0},{12,0},{12,71},{38,71}},
+ color={255,0,255}));
+ connect(staDow.y, booRep.u)
+ annotation (Line(points={{-78,130},{-70,130},{-70,-200},{-62,-200}},
+ color={255,0,255}));
+ connect(booRep.y, IsoVal.u2)
+ annotation (Line(points={{-38,-200},{-30,-200},{-30,-230},{-22,-230}},
+ color={255,0,255}));
+ connect(fulOpe.y, IsoVal.u3)
+ annotation (Line(points={{-118,-230},{-100,-230},{-100,-238},{-22,-238}},
+ color={0,0,127}));
+ connect(dowProCon.yChiWatIsoVal, zerOrdHol.u)
+ annotation (Line(points={{62,74},{88,74},{88,-30},{98,-30}},
+ color={0,0,127}));
+ connect(zerOrdHol.y, IsoVal.u1)
+ annotation (Line(points={{122,-30},{150,-30},{150,-190},{-26,-190},{-26,-222},
+ {-22,-222}}, color={0,0,127}));
+ connect(IsoVal.y, dowProCon.uChiWatIsoVal)
+ annotation (Line(points={{2,-230},{14,-230},{14,68},{38,68}},
+ color={0,0,127}));
+ connect(pre2.y, dowProCon.uChiWatReq)
+ annotation (Line(points={{122,40},{140,40},{140,0},{16,0},{16,65},{38,65}},
+ color={255,0,255}));
+ connect(pre2.y, dowProCon.uConWatReq)
+ annotation (Line(points={{122,40},{140,40},{140,0},{18,0},{18,63},{38,63}},
+ color={255,0,255}));
+ connect(pre2.y, dowProCon.uChiConIsoVal)
+ annotation (Line(points={{122,40},{140,40},{140,0},{20,0},{20,60},{38,60}},
+ color={255,0,255}));
+ connect(wseSta.y, dowProCon.uWSE)
+ annotation (Line(points={{-118,-270},{22,-270},{22,57},{38,57}},
+ color={255,0,255}));
+ connect(dowProCon.yDesConWatPumSpe, zerOrdHol1.u)
+ annotation (Line(points={{62,59},{80,59},{80,-80},{98,-80}},
+ color={0,0,127}));
+ connect(zerOrdHol1.y, dowProCon.uConWatPumSpeSet)
+ annotation (Line(points={{122,-80},{140,-80},{140,-160},{24,-160},{24,55},{
+ 38,55}},
+ color={0,0,127}));
+ connect(zerOrdHol1.y, zerOrdHol2.u)
+ annotation (Line(points={{122,-80},{140,-80},{140,-100},{80,-100},{80,-120},
+ {98,-120}}, color={0,0,127}));
+ connect(zerOrdHol2.y, dowProCon.uConWatPumSpe)
+ annotation (Line(points={{122,-120},{130,-120},{130,-140},{26,-140},{26,53},
+ {38,53}}, color={0,0,127}));
+ connect(staDow.y, booRep2.u)
+ annotation (Line(points={{-78,130},{-62,130}}, color={255,0,255}));
+ connect(staTwoChi2.y, chiSet2.u3) annotation (Line(points={{-118,100},{-30,100},
+ {-30,122},{-22,122}}, color={255,0,255}));
+ connect(booRep2.y, chiSet2.u2)
+ annotation (Line(points={{-38,130},{-22,130}}, color={255,0,255}));
+ connect(staOneChi2.y, chiSet2.u1) annotation (Line(points={{-118,160},{-30,160},
+ {-30,138},{-22,138}}, color={255,0,255}));
+ connect(upSta2.y, swi2.u3) annotation (Line(points={{-118,190},{-100,190},{-100,
+ 202},{-62,202}}, color={0,0,127}));
+ connect(dowSta2.y, swi2.u1) annotation (Line(points={{-118,230},{-100,230},{-100,
+ 218},{-62,218}}, color={0,0,127}));
+ connect(swi2.y, staSet2.u)
+ annotation (Line(points={{-38,210},{-22,210}}, color={0,0,127}));
+ connect(staDow.y, swi2.u2) annotation (Line(points={{-78,130},{-70,130},{-70,210},
+ {-62,210}}, color={255,0,255}));
+ connect(chiSet2.y, dowProCon.uChiSet) annotation (Line(points={{2,130},{12,
+ 130},{12,87},{38,87}}, color={255,0,255}));
+ connect(staSet2.y, dowProCon.uStaSet) annotation (Line(points={{2,210},{20,
+ 210},{20,89},{38,89}}, color={255,127,0}));
+ connect(staOne.y, chiSta.u1) annotation (Line(points={{-118,-140},{-100,-140},
+ {-100,-152},{-62,-152}}, color={0,0,127}));
+ connect(staTwo.y, chiSta.u3) annotation (Line(points={{-118,-180},{-100,-180},
+ {-100,-168},{-62,-168}}, color={0,0,127}));
+ connect(chiSta.y, sta.u)
+ annotation (Line(points={{-38,-160},{-22,-160}}, color={0,0,127}));
+ connect(dowProCon.yStaPro, falEdg.u) annotation (Line(points={{62,89},{70,89},
+ {70,140},{78,140}}, color={255,0,255}));
+ connect(falEdg.y, lat.u)
+ annotation (Line(points={{102,140},{118,140}}, color={255,0,255}));
+ connect(fal.y, lat.clr) annotation (Line(points={{102,110},{110,110},{110,134},
+ {118,134}}, color={255,0,255}));
+ connect(lat.y, chiSta.u2) annotation (Line(points={{142,140},{154,140},{154,-180},
+ {-80,-180},{-80,-160},{-62,-160}}, color={255,0,255}));
+ connect(sta.y, dowProCon.uChiSta) annotation (Line(points={{2,-160},{10,-160},
+ {10,74},{38,74}}, color={255,127,0}));
+
+annotation (
+ experiment(StopTime=1500, Tolerance=1e-06),
+ __Dymola_Commands(file="modelica://Buildings/Resources/Scripts/Dymola/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/Processes/Validation/DownWithoutOnOff.mos"
+ "Simulate and plot"),
+ Documentation(info="
+
+This example validates
+
+Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.Processes.Down.
+
+", revisions="
+
+-
+October 2, by Jianjun Hu:
+First implementation.
+
+
+"),
+Icon(coordinateSystem(extent={{-100,-100},{100,100}}),
+ graphics={
+ Ellipse(lineColor = {75,138,73},
+ fillColor={255,255,255},
+ fillPattern = FillPattern.Solid,
+ extent = {{-100,-100},{100,100}}),
+ Polygon(lineColor = {0,0,255},
+ fillColor = {75,138,73},
+ pattern = LinePattern.None,
+ fillPattern = FillPattern.Solid,
+ points = {{-36,60},{64,0},{-36,-60},{-36,60}})}),Diagram(
+ coordinateSystem(preserveAspectRatio=false, extent={{-160,-300},{160,300}}),
+ graphics={
+ Text(
+ extent={{-144,294},{-96,286}},
+ textColor={0,0,127},
+ textString="Stage down:"),
+ Text(
+ extent={{-134,282},{26,272}},
+ textColor={0,0,127},
+ textString="from stage 2 which has chiller one and two enabled, "),
+ Text(
+ extent={{-138,270},{-36,256}},
+ textColor={0,0,127},
+ textString="to stage 1 which only has chiller 1.")}));
+end DownWithoutOnOff;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/Processes/Validation/UpWithOnOff.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/Processes/Validation/UpWithOnOff.mo
new file mode 100644
index 00000000000..c4a9b81a3ca
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/Processes/Validation/UpWithOnOff.mo
@@ -0,0 +1,344 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.Processes.Validation;
+model UpWithOnOff
+ "Validate sequence of staging up process which does require chiller OFF"
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.Processes.Up upProCon(
+ final nChi=2,
+ final totSta=4,
+ final have_ponyChiller=true,
+ final have_fixSpeConWatPum=false,
+ final need_reduceChillerDemand=true,
+ final chaChiWatIsoTim=300,
+ final staVec={0,0.5,1,2},
+ final desConWatPumSpe={0,0.5,0.75,0.6},
+ final desConWatPumNum={0,1,1,2},
+ final byPasSetTim=300,
+ final minFloSet={0.5,1},
+ final maxFloSet={1,1.5})
+ "Stage up process when does not require chiller off"
+ annotation (Placement(transformation(extent={{20,80},{40,120}})));
+
+protected
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Ramp chiWatFlo(
+ final height=5/3 - 0.5,
+ final duration=300,
+ final offset=0.5,
+ final startTime=500) "Chilled water flow rate"
+ annotation (Placement(transformation(extent={{-200,-70},{-180,-50}})));
+ Buildings.Controls.OBC.CDL.Logical.Sources.Pulse booPul(
+ final width=0.075,
+ final period=2000) "Boolean pulse"
+ annotation (Placement(transformation(extent={{-200,110},{-180,130}})));
+ Buildings.Controls.OBC.CDL.Logical.Not staUp "Stage up command"
+ annotation (Placement(transformation(extent={{-160,110},{-140,130}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant fulLoa(final k=2)
+ "Full load"
+ annotation (Placement(transformation(extent={{-200,10},{-180,30}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant zerLoa(
+ final k=0)
+ "Zero load"
+ annotation (Placement(transformation(extent={{-200,-30},{-180,-10}})));
+ Buildings.Controls.OBC.CDL.Logical.Pre chiOneSta(
+ final pre_u_start=true)
+ "Break algebraic loop"
+ annotation (Placement(transformation(extent={{80,60},{100,80}})));
+ Buildings.Controls.OBC.CDL.Continuous.Switch loaOne "Chiller load one"
+ annotation (Placement(transformation(extent={{-120,10},{-100,30}})));
+ Buildings.Controls.OBC.CDL.Discrete.ZeroOrderHold zerOrdHol[2](
+ final samplePeriod=fill(10, 2))
+ "Output the input signal with a zero order hold"
+ annotation (Placement(transformation(extent={{80,-190},{100,-170}})));
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant wseSta(
+ final k=false)
+ "Waterside economizer status"
+ annotation (Placement(transformation(extent={{-200,-190},{-180,-170}})));
+ Buildings.Controls.OBC.CDL.Discrete.ZeroOrderHold conPumSpeSet(
+ final samplePeriod=10) "Design condenser water pump speed setpoint"
+ annotation (Placement(transformation(extent={{80,-30},{100,-10}})));
+ Buildings.Controls.OBC.CDL.Discrete.ZeroOrderHold conPumSpe(
+ final samplePeriod=20) "Condenser water pump speed"
+ annotation (Placement(transformation(extent={{80,-70},{100,-50}})));
+ Buildings.Controls.OBC.CDL.Continuous.Switch loaTwo "Chiller load two"
+ annotation (Placement(transformation(extent={{-120,-30},{-100,-10}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant zer3[2](
+ final k=fill(0,2)) "Constant zero"
+ annotation (Placement(transformation(extent={{80,100},{100,120}})));
+ Buildings.Controls.OBC.CDL.Discrete.ZeroOrderHold chiTwoDem(
+ final samplePeriod=10) "Chiller two limited demand"
+ annotation (Placement(transformation(extent={{80,130},{100,150}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant chiLoa3(
+ final k=1000)
+ "Chiller load"
+ annotation (Placement(transformation(extent={{80,160},{100,180}})));
+ Buildings.Controls.OBC.CDL.Continuous.Switch chiLoa[2] "Limited chiller load"
+ annotation (Placement(transformation(extent={{140,130},{160,150}})));
+ Buildings.Controls.OBC.CDL.Discrete.ZeroOrderHold chiTwoDem1(
+ final samplePeriod=10) "Limited chiller two demand"
+ annotation (Placement(transformation(extent={{180,130},{200,150}})));
+ Buildings.Controls.OBC.CDL.Logical.Pre chiTwoSta(
+ final pre_u_start=false) "Chiller two status"
+ annotation (Placement(transformation(extent={{80,20},{100,40}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant zerOpe(
+ final k=0) "Closed isolation valve"
+ annotation (Placement(transformation(extent={{-200,-270},{-180,-250}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant fulOpe(
+ final k=1) "Full open isolation valve"
+ annotation (Placement(transformation(extent={{-200,-230},{-180,-210}})));
+ Buildings.Controls.OBC.CDL.Continuous.Switch IsoValOne "Logical switch"
+ annotation (Placement(transformation(extent={{-120,-230},{-100,-210}})));
+ Buildings.Controls.OBC.CDL.Continuous.Switch IsoValTwo "Logical switch"
+ annotation (Placement(transformation(extent={{-120,-270},{-100,-250}})));
+ Buildings.Controls.OBC.CDL.Logical.Pre chiOneHea(
+ final pre_u_start=true)
+ "Chiller one head pressure control"
+ annotation (Placement(transformation(extent={{80,-110},{100,-90}})));
+ Buildings.Controls.OBC.CDL.Logical.Pre chiTwoHea(
+ final pre_u_start=false)
+ "Chiller two head pressure control"
+ annotation (Placement(transformation(extent={{80,-150},{100,-130}})));
+ Buildings.Controls.OBC.CDL.Discrete.ZeroOrderHold zerOrdHol3(
+ final samplePeriod=20)
+ "Output the input signal with a zero order hold"
+ annotation (Placement(transformation(extent={{80,-230},{100,-210}})));
+ Buildings.Controls.OBC.CDL.Continuous.Switch chiWatFlo1 "Chilled water flow rate"
+ annotation (Placement(transformation(extent={{-120,-70},{-100,-50}})));
+ Buildings.Controls.OBC.CDL.Logical.Pre chiOneHea1(
+ final pre_u_start=false)
+ "Chiller one head pressure control"
+ annotation (Placement(transformation(extent={{0,-30},{20,-10}})));
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant staOneChi[2](
+ final k={true,false})
+ "Vector of chillers status setpoint at stage one"
+ annotation (Placement(transformation(extent={{-200,70},{-180,90}})));
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant staTwoChi[2](
+ final k={false,true})
+ "Vector of chillers status setpoint at stage two"
+ annotation (Placement(transformation(extent={{-200,150},{-180,170}})));
+ Buildings.Controls.OBC.CDL.Routing.BooleanScalarReplicator booRep(
+ final nout=2)
+ "Replicate boolean input"
+ annotation (Placement(transformation(extent={{-120,110},{-100,130}})));
+ Buildings.Controls.OBC.CDL.Logical.Switch chiSet[2]
+ "Chiller status setpoint"
+ annotation (Placement(transformation(extent={{-80,130},{-60,150}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant dowSta(
+ final k=1)
+ "Stage one"
+ annotation (Placement(transformation(extent={{-200,190},{-180,210}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant upSta(
+ final k=2)
+ "Stage two"
+ annotation (Placement(transformation(extent={{-200,220},{-180,240}})));
+ Buildings.Controls.OBC.CDL.Continuous.Switch swi "Logical switch"
+ annotation (Placement(transformation(extent={{-120,200},{-100,220}})));
+ Buildings.Controls.OBC.CDL.Conversions.RealToInteger staSet
+ "Stage setpoint index"
+ annotation (Placement(transformation(extent={{-80,200},{-60,220}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant staOne(
+ final k=1) "Stage one"
+ annotation (Placement(transformation(extent={{-200,-150},{-180,-130}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant staTwo(
+ final k=2)
+ "Stage two"
+ annotation (Placement(transformation(extent={{-200,-110},{-180,-90}})));
+ Buildings.Controls.OBC.CDL.Continuous.Switch chiSta "Current chiller stage"
+ annotation (Placement(transformation(extent={{-120,-130},{-100,-110}})));
+ Buildings.Controls.OBC.CDL.Conversions.RealToInteger sta "Current chiller stage"
+ annotation (Placement(transformation(extent={{-80,-130},{-60,-110}})));
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant fal(
+ final k=false)
+ "Logical false"
+ annotation (Placement(transformation(extent={{140,170},{160,190}})));
+ Buildings.Controls.OBC.CDL.Logical.FallingEdge falEdg
+ "Check if the up process has ended"
+ annotation (Placement(transformation(extent={{80,190},{100,210}})));
+ Buildings.Controls.OBC.CDL.Logical.Latch lat
+ "True when it is not in process"
+ annotation (Placement(transformation(extent={{180,190},{200,210}})));
+
+equation
+ connect(booPul.y, staUp.u)
+ annotation (Line(points={{-178,120},{-162,120}}, color={255,0,255}));
+ connect(fulLoa.y, loaOne.u3) annotation (Line(points={{-178,20},{-160,20},{-160,
+ 12},{-122,12}}, color={0,0,127}));
+ connect(zerLoa.y, loaTwo.u3) annotation (Line(points={{-178,-20},{-160,-20},{-160,
+ -28},{-122,-28}}, color={0,0,127}));
+ connect(staUp.y, loaOne.u2) annotation (Line(points={{-138,120},{-130,120},{-130,
+ 20},{-122,20}}, color={255,0,255}));
+ connect(staUp.y, loaTwo.u2) annotation (Line(points={{-138,120},{-130,120},{-130,
+ -20},{-122,-20}}, color={255,0,255}));
+ connect(upProCon.yChi[1], chiOneSta.u) annotation (Line(points={{42,80.5},{60,
+ 80.5},{60,70},{78,70}}, color={255,0,255}));
+ connect(upProCon.yChi[2], chiTwoSta.u) annotation (Line(points={{42,81.5},{58,
+ 81.5},{58,30},{78,30}}, color={255,0,255}));
+ connect(chiOneSta.y, chiLoa[1].u2) annotation (Line(points={{102,70},{130,70},
+ {130,140},{138,140}}, color={255,0,255}));
+ connect(chiTwoSta.y, chiLoa[2].u2) annotation (Line(points={{102,30},{132,30},
+ {132,140},{138,140}}, color={255,0,255}));
+ connect(upProCon.yChiDem[2], chiTwoDem.u) annotation (Line(points={{42,115.5},
+ {60,115.5},{60,140},{78,140}}, color={0,0,127}));
+ connect(chiTwoDem.y, chiLoa[2].u1) annotation (Line(points={{102,140},{120,140},
+ {120,148},{138,148}}, color={0,0,127}));
+ connect(chiLoa3.y, chiLoa[1].u1) annotation (Line(points={{102,170},{120,170},
+ {120,148},{138,148}}, color={0,0,127}));
+ connect(zer3.y, chiLoa.u3) annotation (Line(points={{102,110},{120,110},{120,132},
+ {138,132}}, color={0,0,127}));
+ connect(chiLoa[2].y, chiTwoDem1.u)
+ annotation (Line(points={{162,140},{178,140}}, color={0,0,127}));
+ connect(chiLoa[1].y, loaOne.u1) annotation (Line(points={{162,140},{170,140},{
+ 170,46},{-140,46},{-140,28},{-122,28}}, color={0,0,127}));
+ connect(chiTwoDem1.y, loaTwo.u1) annotation (Line(points={{202,140},{210,140},
+ {210,0},{-140,0},{-140,-12},{-122,-12}}, color={0,0,127}));
+ connect(loaOne.y, upProCon.uChiLoa[1]) annotation (Line(points={{-98,20},{-60,
+ 20},{-60,111.5},{18,111.5}}, color={0,0,127}));
+ connect(loaTwo.y, upProCon.uChiLoa[2]) annotation (Line(points={{-98,-20},{-58,
+ -20},{-58,112.5},{18,112.5}}, color={0,0,127}));
+ connect(chiOneSta.y, upProCon.uChi[1]) annotation (Line(points={{102,70},{130,
+ 70},{130,50},{-56,50},{-56,109.5},{18,109.5}}, color={255,0,255}));
+ connect(chiTwoSta.y, upProCon.uChi[2]) annotation (Line(points={{102,30},{132,
+ 30},{132,10},{-54,10},{-54,110.5},{18,110.5}}, color={255,0,255}));
+ connect(zerOpe.y, IsoValTwo.u3) annotation (Line(points={{-178,-260},{-160,-260},
+ {-160,-268},{-122,-268}}, color={0,0,127}));
+ connect(fulOpe.y, IsoValOne.u3) annotation (Line(points={{-178,-220},{-160,-220},
+ {-160,-228},{-122,-228}}, color={0,0,127}));
+ connect(staUp.y, IsoValOne.u2) annotation (Line(points={{-138,120},{-130,120},
+ {-130,-220},{-122,-220}}, color={255,0,255}));
+ connect(staUp.y, IsoValTwo.u2) annotation (Line(points={{-138,120},{-130,120},
+ {-130,-260},{-122,-260}}, color={255,0,255}));
+ connect(upProCon.yChiWatIsoVal, zerOrdHol.u) annotation (Line(points={{42,86},
+ {56,86},{56,-180},{78,-180}}, color={0,0,127}));
+ connect(zerOrdHol[1].y, IsoValOne.u1) annotation (Line(points={{102,-180},{120,
+ -180},{120,-200},{-140,-200},{-140,-212},{-122,-212}}, color={0,0,127}));
+ connect(zerOrdHol[2].y, IsoValTwo.u1) annotation (Line(points={{102,-180},{120,
+ -180},{120,-200},{-140,-200},{-140,-252},{-122,-252}}, color={0,0,127}));
+ connect(chiOneSta.y, upProCon.uChiConIsoVal[1]) annotation (Line(points={{102,70},
+ {130,70},{130,50},{-50,50},{-50,104.5},{18,104.5}}, color={255,0,255}));
+ connect(chiTwoSta.y, upProCon.uChiConIsoVal[2]) annotation (Line(points={{102,30},
+ {132,30},{132,10},{-48,10},{-48,105.5},{18,105.5}}, color={255,0,255}));
+ connect(chiOneSta.y, upProCon.uConWatReq[1]) annotation (Line(points={{102,70},
+ {130,70},{130,50},{-44,50},{-44,97.5},{18,97.5}},color={255,0,255}));
+ connect(chiTwoSta.y, upProCon.uConWatReq[2]) annotation (Line(points={{102,30},
+ {132,30},{132,10},{-42,10},{-42,98.5},{18,98.5}}, color={255,0,255}));
+ connect(wseSta.y, upProCon.uWSE) annotation (Line(points={{-178,-180},{-40,-180},
+ {-40,96},{18,96}}, color={255,0,255}));
+ connect(upProCon.yDesConWatPumSpe, conPumSpeSet.u) annotation (Line(points={{42,99},
+ {54,99},{54,-20},{78,-20}}, color={0,0,127}));
+ connect(conPumSpeSet.y, conPumSpe.u) annotation (Line(points={{102,-20},{120,-20},
+ {120,-40},{60,-40},{60,-60},{78,-60}}, color={0,0,127}));
+ connect(conPumSpeSet.y, upProCon.uConWatPumSpeSet) annotation (Line(points={{102,-20},
+ {120,-20},{120,-40},{-38,-40},{-38,94},{18,94}}, color={0,0,127}));
+ connect(conPumSpe.y, upProCon.uConWatPumSpe) annotation (Line(points={{102,-60},
+ {120,-60},{120,-80},{-36,-80},{-36,92},{18,92}}, color={0,0,127}));
+ connect(chiOneHea.y, upProCon.uChiHeaCon[1]) annotation (Line(points={{102,-100},
+ {120,-100},{120,-116},{-32,-116},{-32,84.5},{18,84.5}}, color={255,0,255}));
+ connect(chiTwoHea.y, upProCon.uChiHeaCon[2]) annotation (Line(points={{102,-140},
+ {120,-140},{120,-124},{-34,-124},{-34,85.5},{18,85.5}}, color={255,0,255}));
+ connect(upProCon.yChiHeaCon[1], chiOneHea.u) annotation (Line(points={{42,90.5},
+ {50,90.5},{50,-100},{78,-100}}, color={255,0,255}));
+ connect(upProCon.yChiHeaCon[2], chiTwoHea.u) annotation (Line(points={{42,91.5},
+ {52,91.5},{52,-140},{78,-140}}, color={255,0,255}));
+ connect(IsoValOne.y, upProCon.uChiWatIsoVal[1]) annotation (Line(points={{-98,
+ -220},{-30,-220},{-30,82.5},{18,82.5}}, color={0,0,127}));
+ connect(IsoValTwo.y, upProCon.uChiWatIsoVal[2]) annotation (Line(points={{-98,
+ -260},{-28,-260},{-28,83.5},{18,83.5}}, color={0,0,127}));
+ connect(chiOneSta.y, upProCon.uChiWatReq[1]) annotation (Line(points={{102,70},
+ {130,70},{130,50},{-26,50},{-26,80.5},{18,80.5}},color={255,0,255}));
+ connect(chiTwoSta.y, upProCon.uChiWatReq[2]) annotation (Line(points={{102,30},
+ {132,30},{132,10},{-24,10},{-24,81.5},{18,81.5}}, color={255,0,255}));
+ connect(upProCon.yChiWatMinFloSet, zerOrdHol3.u) annotation (Line(points={{42,111},
+ {48,111},{48,-220},{78,-220}}, color={0,0,127}));
+ connect(chiWatFlo.y, chiWatFlo1.u3) annotation (Line(points={{-178,-60},{-160,
+ -60},{-160,-68},{-122,-68}}, color={0,0,127}));
+ connect(zerOrdHol3.y, chiWatFlo1.u1) annotation (Line(points={{102,-220},{120,
+ -220},{120,-240},{-90,-240},{-90,-40},{-140,-40},{-140,-52},{-122,-52}},
+ color={0,0,127}));
+ connect(chiWatFlo1.y, upProCon.VChiWat_flow) annotation (Line(points={{-98,-60},
+ {-52,-60},{-52,107.6},{18,107.6}}, color={0,0,127}));
+ connect(upProCon.yTowStaUp, chiOneHea1.u) annotation (Line(points={{42,107},{46,
+ 107},{46,20},{-20,20},{-20,-20},{-2,-20}}, color={255,0,255}));
+ connect(chiOneHea1.y, chiWatFlo1.u2) annotation (Line(points={{22,-20},{40,-20},
+ {40,-34},{-150,-34},{-150,-60},{-122,-60}}, color={255,0,255}));
+ connect(upSta.y, swi.u1) annotation (Line(points={{-178,230},{-160,230},{-160,
+ 218},{-122,218}}, color={0,0,127}));
+ connect(dowSta.y, swi.u3) annotation (Line(points={{-178,200},{-160,200},{-160,
+ 202},{-122,202}}, color={0,0,127}));
+ connect(swi.y, staSet.u)
+ annotation (Line(points={{-98,210},{-82,210}}, color={0,0,127}));
+ connect(booRep.y, chiSet.u2) annotation (Line(points={{-98,120},{-92,120},{-92,
+ 140},{-82,140}}, color={255,0,255}));
+ connect(staUp.y, booRep.u)
+ annotation (Line(points={{-138,120},{-122,120}}, color={255,0,255}));
+ connect(staOneChi.y, chiSet.u3) annotation (Line(points={{-178,80},{-88,80},{-88,
+ 132},{-82,132}}, color={255,0,255}));
+ connect(staTwoChi.y, chiSet.u1) annotation (Line(points={{-178,160},{-90,160},
+ {-90,148},{-82,148}}, color={255,0,255}));
+ connect(staUp.y, swi.u2) annotation (Line(points={{-138,120},{-130,120},{-130,
+ 210},{-122,210}}, color={255,0,255}));
+ connect(staSet.y, upProCon.uStaSet) annotation (Line(points={{-58,210},{0,210},
+ {0,119},{18,119}}, color={255,127,0}));
+ connect(chiSet.y, upProCon.uChiSet) annotation (Line(points={{-58,140},{-4,140},
+ {-4,116},{18,116}}, color={255,0,255}));
+ connect(staTwo.y, chiSta.u1) annotation (Line(points={{-178,-100},{-160,-100},
+ {-160,-112},{-122,-112}}, color={0,0,127}));
+ connect(staOne.y, chiSta.u3) annotation (Line(points={{-178,-140},{-160,-140},
+ {-160,-128},{-122,-128}}, color={0,0,127}));
+ connect(chiSta.y, sta.u)
+ annotation (Line(points={{-98,-120},{-82,-120}}, color={0,0,127}));
+ connect(sta.y, upProCon.uChiSta) annotation (Line(points={{-58,-120},{-46,-120},
+ {-46,103},{18,103}}, color={255,127,0}));
+ connect(upProCon.yStaPro, falEdg.u) annotation (Line(points={{42,119},{56,119},
+ {56,200},{78,200}}, color={255,0,255}));
+ connect(falEdg.y, lat.u)
+ annotation (Line(points={{102,200},{178,200}}, color={255,0,255}));
+ connect(fal.y, lat.clr) annotation (Line(points={{162,180},{170,180},{170,194},
+ {178,194}}, color={255,0,255}));
+ connect(lat.y, chiSta.u2) annotation (Line(points={{202,200},{214,200},{214,-84},
+ {-140,-84},{-140,-120},{-122,-120}}, color={255,0,255}));
+ connect(wseSta.y, upProCon.uEnaPlaConPum) annotation (Line(points={{-178,-180},
+ {-40,-180},{-40,101},{18,101}}, color={255,0,255}));
+ connect(wseSta.y, upProCon.uEnaPlaConIso) annotation (Line(points={{-178,-180},
+ {-40,-180},{-40,90},{18,90}}, color={255,0,255}));
+annotation (
+ experiment(StopTime=2000, Tolerance=1e-06),
+ __Dymola_Commands(file="modelica://Buildings/Resources/Scripts/Dymola/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/Processes/Validation/UpWithOnOff.mos"
+ "Simulate and plot"),
+ Documentation(info="
+
+This example validates
+
+Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.Processes.Up.
+
+", revisions="
+
+-
+October 14, by Jianjun Hu:
+First implementation.
+
+
+"),
+Icon(coordinateSystem(extent={{-100,-100},{100,100}}),
+ graphics={
+ Ellipse(lineColor = {75,138,73},
+ fillColor={255,255,255},
+ fillPattern = FillPattern.Solid,
+ extent = {{-100,-100},{100,100}}),
+ Polygon(lineColor = {0,0,255},
+ fillColor = {75,138,73},
+ pattern = LinePattern.None,
+ fillPattern = FillPattern.Solid,
+ points = {{-36,60},{64,0},{-36,-60},{-36,60}})}),Diagram(
+ coordinateSystem(preserveAspectRatio=false, extent={{-220,-300},{220,300}}),
+ graphics={
+ Text(
+ extent={{-208,294},{-160,286}},
+ textColor={0,0,127},
+ textString="Stage up:"),
+ Text(
+ extent={{-196,280},{-50,272}},
+ textColor={0,0,127},
+ textString="from stage 1 which has small chiller one been enabled, "),
+ Text(
+ extent={{-196,268},{-70,254}},
+ textColor={0,0,127},
+ textString="to stage 2 which has large chiller 2 been enabled.")}));
+end UpWithOnOff;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/Processes/Validation/UpWithoutOnOff.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/Processes/Validation/UpWithoutOnOff.mo
new file mode 100644
index 00000000000..2298a172f6c
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/Processes/Validation/UpWithoutOnOff.mo
@@ -0,0 +1,249 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.Processes.Validation;
+model UpWithoutOnOff
+ "Validate sequence of staging up process which does not require chiller OFF"
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.Processes.Up upProCon(
+ final nChi=2,
+ final totSta=4,
+ final have_fixSpeConWatPum=false,
+ final need_reduceChillerDemand=true,
+ final chaChiWatIsoTim=300,
+ final staVec={0,0.5,1,2},
+ final desConWatPumSpe={0,0.5,0.75,0.6},
+ final desConWatPumNum={0,1,1,2},
+ final byPasSetTim=300,
+ final minFloSet={1,1},
+ final maxFloSet={1.5,1.5})
+ "Stage up process when does not require chiller off"
+ annotation (Placement(transformation(extent={{40,48},{60,88}})));
+
+protected
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Ramp chiWatFlo(
+ final height=1,
+ final duration=300,
+ final offset=1,
+ final startTime=500) "Chilled water flow rate"
+ annotation (Placement(transformation(extent={{-140,-50},{-120,-30}})));
+ Buildings.Controls.OBC.CDL.Routing.BooleanScalarReplicator booRep(
+ final nout=2) "Replicate boolean input"
+ annotation (Placement(transformation(extent={{-60,-230},{-40,-210}})));
+ Buildings.Controls.OBC.CDL.Logical.Sources.Pulse booPul(
+ final width=0.1,
+ final period=1500) "Boolean pulse"
+ annotation (Placement(transformation(extent={{-140,100},{-120,120}})));
+ Buildings.Controls.OBC.CDL.Logical.Not staUp "Stage up command"
+ annotation (Placement(transformation(extent={{-100,100},{-80,120}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant chiLoa[2](
+ final k=fill(2, 2))
+ "Chiller load"
+ annotation (Placement(transformation(extent={{-140,30},{-120,50}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant iniChiIsoVal[2](
+ final k={1,0}) "Initial chilled water solation valve"
+ annotation (Placement(transformation(extent={{-140,-260},{-120,-240}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant zer1[2](
+ final k=fill(0,2)) "Constant zero"
+ annotation (Placement(transformation(extent={{-140,-10},{-120,10}})));
+ Buildings.Controls.OBC.CDL.Logical.Pre chiStaRet[2](
+ final pre_u_start={true,false}) "Chiller status return value"
+ annotation (Placement(transformation(extent={{100,60},{120,80}})));
+ Buildings.Controls.OBC.CDL.Continuous.Switch swi1[2] "Logical switch"
+ annotation (Placement(transformation(extent={{-60,10},{-40,30}})));
+ Buildings.Controls.OBC.CDL.Continuous.Switch IsoVal[2] "Logical switch"
+ annotation (Placement(transformation(extent={{-20,-260},{0,-240}})));
+ Buildings.Controls.OBC.CDL.Discrete.ZeroOrderHold zerOrdHol[2](
+ final samplePeriod=fill(10, 2))
+ "Output the input signal with a zero order hold"
+ annotation (Placement(transformation(extent={{100,-30},{120,-10}})));
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant wseSta(final k=false)
+ "Waterside economizer status"
+ annotation (Placement(transformation(extent={{-140,-180},{-120,-160}})));
+ Buildings.Controls.OBC.CDL.Discrete.ZeroOrderHold zerOrdHol1(
+ final samplePeriod=10)
+ "Output the input signal with a zero order hold"
+ annotation (Placement(transformation(extent={{100,-70},{120,-50}})));
+ Buildings.Controls.OBC.CDL.Discrete.ZeroOrderHold zerOrdHol2(
+ final samplePeriod=20)
+ "Output the input signal with a zero order hold"
+ annotation (Placement(transformation(extent={{100,-120},{120,-100}})));
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant staOneChi[2](
+ final k={true,false})
+ "Vector of chillers status setpoint at stage one"
+ annotation (Placement(transformation(extent={{-140,62},{-120,82}})));
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant staTwoChi[2](
+ final k={true,true})
+ "Vector of chillers status setpoint at stage two"
+ annotation (Placement(transformation(extent={{-140,140},{-120,160}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant dowSta(final k=1)
+ "Stage one"
+ annotation (Placement(transformation(extent={{-140,170},{-120,190}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant upSta(final k=2)
+ "Stage two"
+ annotation (Placement(transformation(extent={{-140,210},{-120,230}})));
+ Buildings.Controls.OBC.CDL.Continuous.Switch swi "Logical switch"
+ annotation (Placement(transformation(extent={{-60,190},{-40,210}})));
+ Buildings.Controls.OBC.CDL.Conversions.RealToInteger staSet
+ "Stage setpoint index"
+ annotation (Placement(transformation(extent={{-20,190},{0,210}})));
+ Buildings.Controls.OBC.CDL.Routing.BooleanScalarReplicator booRep1(final nout=2)
+ "Replicate boolean input"
+ annotation (Placement(transformation(extent={{-60,100},{-40,120}})));
+ Buildings.Controls.OBC.CDL.Logical.Switch chiSet[2]
+ "Chiller status setpoint"
+ annotation (Placement(transformation(extent={{-20,100},{0,120}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant staOne(final k=1) "Stage one"
+ annotation (Placement(transformation(extent={{-140,-140},{-120,-120}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant staTwo(final k=2)
+ "Stage two"
+ annotation (Placement(transformation(extent={{-140,-100},{-120,-80}})));
+ Buildings.Controls.OBC.CDL.Continuous.Switch chiSta "Current chiller stage"
+ annotation (Placement(transformation(extent={{-60,-120},{-40,-100}})));
+ Buildings.Controls.OBC.CDL.Conversions.RealToInteger sta "Current chiller stage"
+ annotation (Placement(transformation(extent={{-20,-120},{0,-100}})));
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant fal(final k=false)
+ "Logical false"
+ annotation (Placement(transformation(extent={{80,100},{100,120}})));
+ Buildings.Controls.OBC.CDL.Logical.FallingEdge falEdg
+ "Check if the up process has ended"
+ annotation (Placement(transformation(extent={{80,130},{100,150}})));
+ Buildings.Controls.OBC.CDL.Logical.Latch lat
+ "True when it is not in process"
+ annotation (Placement(transformation(extent={{120,130},{140,150}})));
+
+equation
+ connect(booPul.y, staUp.u)
+ annotation (Line(points={{-118,110},{-102,110}}, color={255,0,255}));
+ connect(chiLoa.y, swi1.u1)
+ annotation (Line(points={{-118,40},{-100,40},{-100,28},{-62,28}},
+ color={0,0,127}));
+ connect(zer1.y, swi1.u3)
+ annotation (Line(points={{-118,0},{-100,0},{-100,12},{-62,12}},
+ color={0,0,127}));
+ connect(iniChiIsoVal.y, IsoVal.u3)
+ annotation (Line(points={{-118,-250},{-100,-250},{-100,-258},{-22,-258}},
+ color={0,0,127}));
+ connect(upProCon.yChi, chiStaRet.u) annotation (Line(points={{62,49},{94,49},
+ {94,70},{98,70}}, color={255,0,255}));
+ connect(chiStaRet.y, swi1.u2) annotation (Line(points={{122,70},{140,70},{140,
+ 40},{-80,40},{-80,20},{-62,20}}, color={255,0,255}));
+ connect(swi1.y, upProCon.uChiLoa) annotation (Line(points={{-38,20},{-30,20},{
+ -30,80},{38,80}}, color={0,0,127}));
+ connect(chiStaRet.y, upProCon.uChi) annotation (Line(points={{122,70},{140,70},
+ {140,40},{-28,40},{-28,78},{38,78}}, color={255,0,255}));
+ connect(chiWatFlo.y, upProCon.VChiWat_flow) annotation (Line(points={{-118,-40},
+ {-26,-40},{-26,75.6},{38,75.6}}, color={0,0,127}));
+ connect(chiStaRet.y, upProCon.uChiConIsoVal) annotation (Line(points={{122,70},
+ {140,70},{140,40},{-24,40},{-24,73},{38,73}}, color={255,0,255}));
+ connect(chiStaRet.y, upProCon.uConWatReq) annotation (Line(points={{122,70},{
+ 140,70},{140,40},{12,40},{12,66},{38,66}}, color={255,0,255}));
+ connect(wseSta.y, upProCon.uWSE) annotation (Line(points={{-118,-170},{14,
+ -170},{14,64},{38,64}},
+ color={255,0,255}));
+ connect(upProCon.yDesConWatPumSpe, zerOrdHol1.u) annotation (Line(points={{62,67},
+ {80,67},{80,-60},{98,-60}}, color={0,0,127}));
+ connect(zerOrdHol1.y, upProCon.uConWatPumSpeSet) annotation (Line(points={{122,-60},
+ {140,-60},{140,-140},{16,-140},{16,62},{38,62}}, color={0,0,127}));
+ connect(zerOrdHol1.y, zerOrdHol2.u) annotation (Line(points={{122,-60},{140,-60},
+ {140,-90},{80,-90},{80,-110},{98,-110}}, color={0,0,127}));
+ connect(zerOrdHol2.y, upProCon.uConWatPumSpe) annotation (Line(points={{122,
+ -110},{130,-110},{130,-134},{18,-134},{18,60},{38,60}},
+ color={0,0,127}));
+ connect(chiStaRet.y, upProCon.uChiHeaCon) annotation (Line(points={{122,70},{
+ 140,70},{140,40},{20,40},{20,53},{38,53}}, color={255,0,255}));
+ connect(staUp.y, booRep.u) annotation (Line(points={{-78,110},{-70,110},{-70,-220},
+ {-62,-220}}, color={255,0,255}));
+ connect(booRep.y, IsoVal.u2) annotation (Line(points={{-38,-220},{-30,-220},{-30,
+ -250},{-22,-250}}, color={255,0,255}));
+ connect(upProCon.yChiWatIsoVal, zerOrdHol.u) annotation (Line(points={{62,54},
+ {88,54},{88,-20},{98,-20}},color={0,0,127}));
+ connect(zerOrdHol.y, IsoVal.u1) annotation (Line(points={{122,-20},{150,-20},{
+ 150,-190},{-80,-190},{-80,-242},{-22,-242}}, color={0,0,127}));
+ connect(IsoVal.y, upProCon.uChiWatIsoVal) annotation (Line(points={{2,-250},{22,
+ -250},{22,51},{38,51}}, color={0,0,127}));
+ connect(chiStaRet.y, upProCon.uChiWatReq) annotation (Line(points={{122,70},{
+ 140,70},{140,40},{24,40},{24,49},{38,49}}, color={255,0,255}));
+ connect(staUp.y, booRep1.u)
+ annotation (Line(points={{-78,110},{-62,110}}, color={255,0,255}));
+ connect(staOneChi.y, chiSet.u3) annotation (Line(points={{-118,72},{-60,72},{-60,
+ 90},{-30,90},{-30,102},{-22,102}}, color={255,0,255}));
+ connect(booRep1.y, chiSet.u2)
+ annotation (Line(points={{-38,110},{-22,110}}, color={255,0,255}));
+ connect(staTwoChi.y, chiSet.u1) annotation (Line(points={{-118,150},{-30,150},
+ {-30,118},{-22,118}}, color={255,0,255}));
+ connect(upSta.y, swi.u1) annotation (Line(points={{-118,220},{-80,220},{-80,208},
+ {-62,208}}, color={0,0,127}));
+ connect(dowSta.y, swi.u3) annotation (Line(points={{-118,180},{-80,180},{-80,192},
+ {-62,192}}, color={0,0,127}));
+ connect(staUp.y, swi.u2) annotation (Line(points={{-78,110},{-70,110},{-70,200},
+ {-62,200}}, color={255,0,255}));
+ connect(swi.y, staSet.u)
+ annotation (Line(points={{-38,200},{-22,200}}, color={0,0,127}));
+ connect(staSet.y, upProCon.uStaSet) annotation (Line(points={{2,200},{30,200},
+ {30,87},{38,87}}, color={255,127,0}));
+ connect(chiSet.y, upProCon.uChiSet) annotation (Line(points={{2,110},{20,110},
+ {20,84},{38,84}}, color={255,0,255}));
+ connect(staTwo.y, chiSta.u1) annotation (Line(points={{-118,-90},{-100,-90},{-100,
+ -102},{-62,-102}}, color={0,0,127}));
+ connect(staOne.y, chiSta.u3) annotation (Line(points={{-118,-130},{-100,-130},
+ {-100,-118},{-62,-118}}, color={0,0,127}));
+ connect(chiSta.y, sta.u)
+ annotation (Line(points={{-38,-110},{-22,-110}}, color={0,0,127}));
+ connect(sta.y, upProCon.uChiSta) annotation (Line(points={{2,-110},{8,-110},{
+ 8,71},{38,71}},
+ color={255,127,0}));
+ connect(upProCon.yStaPro, falEdg.u) annotation (Line(points={{62,87},{70,87},{
+ 70,140},{78,140}}, color={255,0,255}));
+ connect(falEdg.y, lat.u)
+ annotation (Line(points={{102,140},{118,140}}, color={255,0,255}));
+ connect(fal.y, lat.clr) annotation (Line(points={{102,110},{110,110},{110,134},
+ {118,134}}, color={255,0,255}));
+ connect(lat.y, chiSta.u2) annotation (Line(points={{142,140},{150,140},{150,0},
+ {-80,0},{-80,-110},{-62,-110}}, color={255,0,255}));
+
+ connect(wseSta.y, upProCon.uEnaPlaConPum) annotation (Line(points={{-118,-170},
+ {14,-170},{14,69},{38,69}}, color={255,0,255}));
+ connect(wseSta.y, upProCon.uEnaPlaConIso) annotation (Line(points={{-118,-170},
+ {14,-170},{14,58},{38,58}}, color={255,0,255}));
+annotation (
+ experiment(StopTime=1500, Tolerance=1e-06),
+ __Dymola_Commands(file="modelica://Buildings/Resources/Scripts/Dymola/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/Processes/Validation/UpWithoutOnOff.mos"
+ "Simulate and plot"),
+ Documentation(info="
+
+This example validates
+
+Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.Processes.Up.
+
+", revisions="
+
+-
+October 12, by Jianjun Hu:
+First implementation.
+
+
+"),
+Icon(coordinateSystem(extent={{-100,-100},{100,100}}),
+ graphics={
+ Ellipse(lineColor = {75,138,73},
+ fillColor={255,255,255},
+ fillPattern = FillPattern.Solid,
+ extent = {{-100,-100},{100,100}}),
+ Polygon(lineColor = {0,0,255},
+ fillColor = {75,138,73},
+ pattern = LinePattern.None,
+ fillPattern = FillPattern.Solid,
+ points = {{-36,60},{64,0},{-36,-60},{-36,60}})}),Diagram(
+ coordinateSystem(preserveAspectRatio=false, extent={{-160,-300},{160,300}}),
+ graphics={
+ Text(
+ extent={{-148,290},{-100,282}},
+ textColor={0,0,127},
+ textString="Stage up:"),
+ Text(
+ extent={{-138,274},{-8,264}},
+ textColor={0,0,127},
+ textString="from stage 1 which has chiller 1 enabled, "),
+ Text(
+ extent={{-136,262},{-10,248}},
+ textColor={0,0,127},
+ textString="to stage 2 which has chiller 1 and 2 enabled.")}));
+end UpWithoutOnOff;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/Processes/Validation/package.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/Processes/Validation/package.mo
new file mode 100644
index 00000000000..846bf37c7f5
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/Processes/Validation/package.mo
@@ -0,0 +1,36 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.Processes;
+package Validation "Collection of validation models"
+annotation (preferredView="info", Documentation(info="
+
+This package contains validation models for the classes in
+
+Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.Processes.
+
+
+Note that most validation models contain simple input data
+which may not be realistic, but for which the correct
+output can be obtained through an analytic solution.
+The examples plot various outputs, which have been verified against these
+solutions. These model outputs are stored as reference data and
+used for continuous validation whenever models in the library change.
+
+"),
+ Icon(graphics={
+ Rectangle(
+ lineColor={200,200,200},
+ fillColor={248,248,248},
+ fillPattern=FillPattern.HorizontalCylinder,
+ extent={{-100.0,-100.0},{100.0,100.0}},
+ radius=25.0),
+ Polygon(
+ origin={8.0,14.0},
+ lineColor={78,138,73},
+ fillColor={78,138,73},
+ pattern=LinePattern.None,
+ fillPattern=FillPattern.Solid,
+ points={{-58.0,46.0},{42.0,-14.0},{-58.0,-74.0},{-58.0,46.0}}),
+ Rectangle(
+ lineColor={128,128,128},
+ extent={{-100.0,-100.0},{100.0,100.0}},
+ radius=25.0)}));
+end Validation;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/Processes/Validation/package.order b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/Processes/Validation/package.order
new file mode 100644
index 00000000000..fd9062ca55c
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/Processes/Validation/package.order
@@ -0,0 +1,4 @@
+DownWithOnOff
+DownWithoutOnOff
+UpWithOnOff
+UpWithoutOnOff
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/Processes/package.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/Processes/package.mo
new file mode 100644
index 00000000000..3543a331612
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/Processes/package.mo
@@ -0,0 +1,43 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging;
+package Processes "Package of sequences for controlling devices when there is a chiller stage change command"
+ annotation (preferredView="info", Documentation(info="
+
+This package contains sequences for controlling devices when there is stage-up
+or stage-down command.
+
+"),
+Icon(graphics={
+ Rectangle(
+ lineColor={200,200,200},
+ fillColor={248,248,248},
+ fillPattern=FillPattern.HorizontalCylinder,
+ extent={{-100.0,-100.0},{100.0,100.0}},
+ radius=25.0),
+ Ellipse(
+ origin={10.0,10.0},
+ lineColor={128,128,128},
+ fillColor={255,255,255},
+ fillPattern=FillPattern.Solid,
+ extent={{-80.0,0.0},{-20.0,60.0}}),
+ Ellipse(
+ origin={10.0,10.0},
+ fillColor={128,128,128},
+ pattern=LinePattern.None,
+ fillPattern=FillPattern.Solid,
+ extent={{0.0,0.0},{60.0,60.0}}),
+ Ellipse(
+ origin={10.0,10.0},
+ pattern=LinePattern.None,
+ fillPattern=FillPattern.Solid,
+ extent={{0.0,-80.0},{60.0,-20.0}}),
+ Ellipse(
+ origin={10.0,10.0},
+ fillColor={76,76,76},
+ pattern=LinePattern.None,
+ fillPattern=FillPattern.Solid,
+ extent={{-80.0,-80.0},{-20.0,-20.0}}),
+ Rectangle(
+ lineColor={128,128,128},
+ extent={{-100.0,-100.0},{100.0,100.0}},
+ radius=25.0)}));
+end Processes;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/Processes/package.order b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/Processes/package.order
new file mode 100644
index 00000000000..95417cff338
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/Processes/package.order
@@ -0,0 +1,4 @@
+Down
+Up
+Subsequences
+Validation
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/SetPoints/SetpointController.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/SetPoints/SetpointController.mo
new file mode 100644
index 00000000000..86be5a1e1c9
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/SetPoints/SetpointController.mo
@@ -0,0 +1,839 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.SetPoints;
+block SetpointController
+ "Calculates the chiller stage status setpoint signal"
+
+ parameter Boolean have_WSE = false
+ "true = plant has a WSE, false = plant does not have WSE"
+ annotation (Dialog(tab="General", group="Plant configuration parameters"));
+
+ parameter Boolean have_serChi = false
+ "true = series chillers plant; false = parallel chillers plant"
+ annotation (Dialog(tab="General", group="Plant configuration parameters"));
+
+ parameter Boolean have_locSen=false
+ "Flag of local DP sensor: true=local DP sensor hardwired to controller"
+ annotation (Dialog(tab="General", group="Plant configuration parameters", enable=not have_serChi));
+
+ parameter Integer nRemSen=2
+ "Total number of remote differential pressure sensors"
+ annotation (Dialog(tab="General", group="Plant configuration parameters", enable=not have_serChi));
+
+ parameter Boolean anyVsdCen=false
+ "Plant contains at least one variable speed centrifugal chiller"
+ annotation (Dialog(tab="General", group="Plant configuration parameters"));
+
+ parameter Integer nChi = 2
+ "Number of chillers"
+ annotation (Dialog(tab="General", group="Chiller configuration parameters"));
+
+ parameter Real chiDesCap[nChi](unit="W", displayUnit="W")
+ "Design chiller capacities vector"
+ annotation (Dialog(tab="General", group="Chiller configuration parameters"));
+
+ parameter Real chiMinCap[nChi](unit="W", displayUnit="W")
+ "Chiller minimum cycling loads vector"
+ annotation (Dialog(tab="General", group="Chiller configuration parameters"));
+
+ parameter Integer chiTyp[nChi]={
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Types.ChillerAndStageTypes.positiveDisplacement,
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Types.ChillerAndStageTypes.variableSpeedCentrifugal}
+ "Chiller type. Recommended staging order: positive displacement, variable speed centrifugal, constant speed centrifugal"
+ annotation (Dialog(tab="General", group="Chiller configuration parameters"));
+
+ parameter Integer nSta = 3
+ "Number of chiller stages, does not include zero stage"
+ annotation (Dialog(tab="General", group="Chiller configuration parameters"));
+
+ parameter Integer staMat[nSta, nChi] = {{1,0},{0,1},{1,1}}
+ "Staging matrix with stage as row index and chiller as column index"
+ annotation (Dialog(tab="General", group="Chiller configuration parameters"));
+
+ parameter Real avePer(unit="s")=300
+ "Time period for the capacity requirement rolling average"
+ annotation (Dialog(tab="Time parameters", group="Hold and delay parameters"));
+
+ parameter Real delayStaCha(
+ unit="s",
+ displayUnit="h")=900
+ "Hold period for each stage change"
+ annotation (Dialog(tab="Time parameters", group="Hold and delay parameters"));
+
+ parameter Real parLoaRatDelay(
+ unit="s",
+ displayUnit="h")=900
+ "Enable delay for operating and staging part load ratio condition"
+ annotation (Dialog(tab="Time parameters", group="Hold and delay parameters"));
+
+ parameter Real faiSafTruDelay(
+ unit="s",
+ displayUnit="h")=900
+ "Enable delay for failsafe condition"
+ annotation (Dialog(tab="Time parameters", group="Hold and delay parameters"));
+
+ parameter Real effConTruDelay(
+ unit="s",
+ displayUnit="h")=900
+ "Enable delay for efficiency condition"
+ annotation (Dialog(tab="Time parameters", group="Hold and delay parameters"));
+
+ parameter Real shortTDelay(
+ unit="s",
+ displayUnit="h")=600
+ "Short enable delay for staging from zero to first available stage up"
+ annotation(Evaluate=true, Dialog(enable=have_WSE, tab="Time parameters", group="Hold and delay parameters"));
+
+ parameter Real longTDelay(
+ unit="s",
+ displayUnit="h")=1200
+ "Long enable delay for staging from zero to first available stage up"
+ annotation(Evaluate=true, Dialog(enable=have_WSE, tab="Time parameters", group="Hold and delay parameters"));
+
+ parameter Real posDisMult(unit="1")=0.8
+ "Positive displacement chiller type staging multiplier"
+ annotation (Dialog(tab="Conditionals", group="Staging part load ratio parameters"));
+
+ parameter Real conSpeCenMult(unit="1")=0.9
+ "Constant speed centrifugal chiller type staging multiplier"
+ annotation (Dialog(tab="Conditionals", group="Staging part load ratio parameters"));
+
+ parameter Real anyOutOfScoMult(unit="1")=0.9
+ "Outside of G36 recommended staging order chiller type SPLR multiplier"
+ annotation(Evaluate=true, __cdl(ValueInReference=False), Dialog(tab="Conditionals", group="Staging part load ratio parameters"));
+
+ parameter Real varSpeStaMin(unit="1")=0.45
+ "Minimum stage up or down part load ratio for variable speed centrifugal stage types"
+ annotation(Evaluate=true, Dialog(enable=anyVsdCen, tab="Conditionals", group="Staging part load ratio parameters"));
+
+ parameter Real varSpeStaMax(unit="1")=0.9
+ "Maximum stage up or down part load ratio for variable speed centrifugal stage types"
+ annotation(Evaluate=true, Dialog(enable=anyVsdCen, tab="Conditionals", group="Staging part load ratio parameters"));
+
+ parameter Real smallTDif(
+ unit="K",
+ displayUnit="degC")=1
+ "Offset between the chilled water supply temperature and its setpoint for the long condition"
+ annotation(Evaluate=true, Dialog(enable=have_WSE, tab="Conditionals", group="Value comparison parameters"));
+
+ parameter Real largeTDif(
+ unit="K",
+ displayUnit="degC")=2
+ "Offset between the chilled water supply temperature and its setpoint for the short condition"
+ annotation(Evaluate=true, Dialog(enable=have_WSE, tab="Conditionals", group="Value comparison parameters"));
+
+ parameter Real faiSafTDif(
+ unit="K",
+ displayUnit="degC")=1
+ "Offset between the chilled water supply temperature and its setpoint for the failsafe condition"
+ annotation (Dialog(tab="Conditionals", group="Value comparison parameters"));
+
+ parameter Real dpDif(
+ unit="Pa",
+ displayUnit="Pa")=2*6895
+ "Offset between the chilled water pump diferential static pressure and its setpoint"
+ annotation (Dialog(tab="Conditionals", group="Value comparison parameters"));
+
+ parameter Real TDif(
+ unit="K",
+ displayUnit="degC")=1
+ "Offset between the chilled water supply temperature and its setpoint for staging down to WSE only"
+ annotation (Dialog(tab="Conditionals", group="Value comparison parameters"));
+
+ parameter Real TDifHys(
+ unit="K",
+ displayUnit="degC")=1
+ "Hysteresis deadband for temperature"
+ annotation (Dialog(tab="Conditionals", group="Value comparison parameters"));
+
+ parameter Real faiSafDpDif(
+ unit="Pa",
+ displayUnit="Pa")=2*6895
+ "Offset between the chilled water differential pressure and its setpoint"
+ annotation (Dialog(tab="Conditionals", group="Value comparison parameters"));
+
+ parameter Real dpDifHys(
+ unit="Pa",
+ displayUnit="Pa")=0.5*6895
+ "Pressure difference hysteresis deadband"
+ annotation (Dialog(tab="Conditionals", group="Value comparison parameters"));
+
+ parameter Real effConSigDif(unit="1")=0.05
+ "Signal hysteresis deadband"
+ annotation (Dialog(tab="Conditionals", group="Value comparison parameters"));
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uPla "Plant enable signal"
+ annotation (Placement(
+ transformation(extent={{-440,-120},{-400,-80}}), iconTransformation(
+ extent={{-140,110},{-100,150}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput chaPro "Stage change process status signal"
+ annotation (Placement(transformation(extent={{-440,-160},{-400,-120}}),
+ iconTransformation(extent={{-140,150},{-100,190}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uWseSta if have_WSE
+ "WSE status"
+ annotation (Placement(transformation(extent={{-442,-280},{-402,-240}}),
+ iconTransformation(extent={{-140,170},{-100,210}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uChiAva[nChi]
+ "Chiller availability status vector"
+ annotation (Placement(transformation(extent={{-442,-220},{-402,-180}}),
+ iconTransformation(extent={{-140,130},{-100,170}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.IntegerInput uSta(
+ final min=0,
+ final max=nSta)
+ "Chiller stage"
+ annotation (Placement(transformation(extent={{-440,
+ -80},{-400,-40}}), iconTransformation(extent={{-140,80},{-100,120}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput TWsePre(
+ final quantity="ThermodynamicTemperature",
+ final unit="K") if have_WSE
+ "Predicted WSE outlet temperature"
+ annotation (Placement(transformation(extent={{-440,70},{-400,110}}),
+ iconTransformation(extent={{-140,-210},{-100,-170}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput uTowFanSpeMax if have_WSE
+ "Maximum cooling tower fan speed"
+ annotation (Placement(transformation(extent={{-440,40},{-400,80}}),
+ iconTransformation(extent={{-140,-160},{-100,-120}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput uLifMin(
+ final unit="K",
+ final quantity="TemperatureDifference") if anyVsdCen
+ "Minimum chiller lift"
+ annotation (Placement(transformation(extent={{-440,-30},{-400,10}}),
+ iconTransformation(extent={{-140,-20},{-100,20}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput uLifMax(
+ final unit="K",
+ final quantity="TemperatureDifference") if anyVsdCen
+ "Maximum chiller lift"
+ annotation (Placement(transformation(extent={{-440,0},{-400,40}}),
+ iconTransformation(extent={{-140,0},{-100,40}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput TChiWatSupSet(
+ final unit="K",
+ final quantity="ThermodynamicTemperature")
+ "Chilled water supply temperature setpoint"
+ annotation (Placement(transformation(extent={{-442,350},{-402,390}}),
+ iconTransformation(extent={{-140,50},{-100,90}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput TChiWatRet(
+ final unit="K",
+ final quantity="ThermodynamicTemperature")
+ "Chilled water return temperature"
+ annotation (Placement(transformation(extent={{-440,280},{-400,320}}),
+ iconTransformation(extent={{-140,-190},{-100,-150}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput VChiWat_flow(
+ final quantity="VolumeFlowRate",
+ final unit="m3/s") "Measured chilled water flow rate"
+ annotation (Placement(transformation(extent={{-440,250},{-400,290}}),
+ iconTransformation(extent={{-140,-230},{-100,-190}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput dpChiWatPumSet_local(
+ final unit="Pa",
+ final quantity="PressureDifference")
+ if (not have_serChi) and have_locSen
+ "Chilled water pump differential static pressure setpoint for local sensor"
+ annotation (Placement(transformation(extent={{-440,220},{-400,260}}),
+ iconTransformation(extent={{-140,-40},{-100,0}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput dpChiWatPum_local(
+ final unit="Pa",
+ final quantity="PressureDifference") if (not have_serChi) and have_locSen
+ "Chilled water pump differential static pressure from local sensor"
+ annotation (Placement(transformation(extent={{-440,190},{-400,230}}),
+ iconTransformation(extent={{-140,-60},{-100,-20}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput dpChiWatPumSet_remote[nRemSen](
+ final unit=fill("Pa", nRemSen),
+ final quantity=fill("PressureDifference",nRemSen))
+ if (not have_serChi) and (not have_locSen)
+ "Chilled water differential pressure setpoint for remote sensor"
+ annotation (Placement(transformation(extent={{-440,160},{-400,200}}),
+ iconTransformation(extent={{-140,-80},{-100,-40}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput dpChiWatPum_remote[nRemSen](
+ final unit=fill("Pa", nRemSen),
+ final quantity=fill("PressureDifference",nRemSen))
+ if (not have_serChi) and (not have_locSen)
+ "Chilled water differential pressure from remote sensor"
+ annotation (Placement(transformation(extent={{-440,130},{-400,170}}),
+ iconTransformation(extent={{-140,-100},{-100,-60}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput TChiWatSup(
+ final unit="K",
+ final quantity="ThermodynamicTemperature")
+ "Chilled water supply temperature"
+ annotation (Placement(transformation(extent={{-442,320},{-402,360}}),
+ iconTransformation(extent={{-140,30},{-100,70}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput uTunPar if have_WSE
+ "Tuning parameter as at last plant disable"
+ annotation (Placement(transformation(extent={{-440,100},{-400,140}}),
+ iconTransformation(extent={{-140,-140},{-100,-100}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput TOutWet(
+ final unit="K",
+ final quantity="ThermodynamicTemperature") if have_WSE
+ "Outdoor air wet bulb temperature"
+ annotation (Placement(transformation(extent={{-440,380},{-400,420}}),
+ iconTransformation(extent={{-140,-120},{-100,-80}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanOutput yChiSet[nChi]
+ "Chiller status setpoint vector for the current chiller stage setpoint"
+ annotation (Placement(transformation(extent={{120,-280},{160,-240}}),
+ iconTransformation(extent={{100,-60},{140,-20}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanOutput yChaEdg
+ "Chiller stage change edge signal"
+ annotation (Placement(transformation(extent={{120,-160},{160,-120}}),
+ iconTransformation(extent={{100,40},{140,80}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanOutput yChaUpEdg
+ "Chiller stage up change edge signal"
+ annotation (Placement(transformation(extent={{120,-120},{160,-80}}),
+ iconTransformation(extent={{100,70},{140,110}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanOutput yChaDowEdg
+ "Chiller stage down change edge signal"
+ annotation (Placement(transformation(extent={{120,-220},{160,-180}}),
+ iconTransformation(extent={{100,10},{140,50}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.IntegerOutput yIni
+ "Initial chiller plant stage"
+ annotation (Placement(transformation(extent={{120,280},{160,320}}),
+ iconTransformation(extent={{100,-110},{140,-70}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.IntegerOutput ySta(
+ final min=0,
+ final max=nSta)
+ "Chiller stage integer setpoint"
+ annotation (Placement(transformation(extent={{120,220},{160,260}}),
+ iconTransformation(extent={{100,-130},{140,-90}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanOutput yUp
+ "Stage up signal"
+ annotation (Placement(transformation(extent={{120,60},{160,100}}),
+ iconTransformation(extent={{100,160},{140,200}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanOutput yDow
+ "Stage down signal"
+ annotation (Placement(transformation(extent={{120,22},{156,58}}),
+ iconTransformation(extent={{100,130},{140,170}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealOutput yOpeParLoaRatMin(
+ final unit="1",
+ final min=0)
+ "Minimum operating part load ratio at current stage"
+ annotation (Placement(transformation(extent={{120,320},{160,360}}),
+ iconTransformation(extent={{100,-202},{140,-162}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealOutput yCapReq(
+ final quantity="HeatFlowRate",
+ final unit="W")
+ "Chilled water cooling capacity requirement"
+ annotation (Placement(transformation(extent={{120,370},{160,410}}),
+ iconTransformation(extent={{100,-230},{140,-190}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.SetPoints.Subsequences.Up staUp(
+ final have_WSE=have_WSE,
+ final have_serChi=have_serChi,
+ final have_locSen=have_locSen,
+ final nRemSen=nRemSen,
+ final effConTruDelay=effConTruDelay,
+ final faiSafTruDelay=faiSafTruDelay,
+ final shortTDelay=shortTDelay,
+ final longTDelay=longTDelay,
+ final faiSafTDif=faiSafTDif,
+ final TDifHys=TDifHys,
+ final smallTDif=smallTDif,
+ final largeTDif=largeTDif,
+ final faiSafDpDif=faiSafDpDif,
+ final dpDifHys=dpDifHys,
+ final effConSigDif=effConSigDif) "Stage up conditions"
+ annotation (Placement(transformation(extent={{-100,-120},{-80,-100}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.SetPoints.Subsequences.Down staDow(
+ final have_WSE=have_WSE,
+ final have_serChi=have_serChi,
+ final have_locSen=have_locSen,
+ final nRemSen=nRemSen,
+ final parLoaRatDelay=parLoaRatDelay,
+ final faiSafTruDelay=faiSafTruDelay,
+ final faiSafTDif=faiSafTDif,
+ final faiSafDpDif=faiSafDpDif,
+ final TDif=TDif,
+ final TDifHys=TDifHys) "Stage down conditions"
+ annotation (Placement(transformation(extent={{-100,-240},{-80,-220}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.SetPoints.Subsequences.CapacityRequirement capReq(
+ final avePer = avePer,
+ final holPer = delayStaCha) "Capacity requirement"
+ annotation (Placement(transformation(extent={{-320,300},{-300,320}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.SetPoints.Subsequences.Capacities cap(
+ final nSta=nSta) "Design and minimum capacities for relevant chiller stages"
+ annotation (Placement(transformation(extent={{-270,-180},{-250,-160}})));
+
+protected
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.SetPoints.Subsequences.Initial iniSta(
+ final have_WSE=have_WSE) "Initia stage"
+ annotation (Placement(transformation(extent={{-80,100},{-60,120}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.SetPoints.Subsequences.Configurator conf(
+ final nSta = nSta,
+ final nChi = nChi,
+ final chiTyp = chiTyp,
+ final chiDesCap = chiDesCap,
+ final chiMinCap = chiMinCap,
+ final staMat = staMat)
+ "Configures chiller staging variables such as capacity and stage type vectors"
+ annotation (Placement(transformation(extent={{-360,-180},{-340,-160}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.SetPoints.Subsequences.Status sta(
+ final nSta=nSta,
+ final nChi=nChi,
+ final staMat=staMat) "First higher and lower available stage index, end stage boolean flags and chiller status setpoints"
+ annotation (Placement(transformation(extent={{-320,-220},{-300,-200}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.SetPoints.Subsequences.PartLoadRatios PLRs(
+ final anyVsdCen=anyVsdCen,
+ final nSta=nSta,
+ final posDisMult=posDisMult,
+ final conSpeCenMult=conSpeCenMult,
+ final anyOutOfScoMult=anyOutOfScoMult,
+ final varSpeStaMin=varSpeStaMin,
+ final varSpeStaMax=varSpeStaMax) "Operative and staging part load ratios"
+ annotation (Placement(transformation(extent={{-182,-200},{-162,-160}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.SetPoints.Subsequences.Change cha(
+ final nSta=nSta,
+ final delayStaCha=delayStaCha) "Stage change assignment"
+ annotation (Placement(transformation(extent={{-20,-180},{0,-160}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.SetPoints.Subsequences.ChillerIndices chiInd(
+ nSta=nSta,
+ nChi=nChi,
+ staMat=staMat) "Calculates chiller status setpoint vector"
+ annotation (Placement(transformation(extent={{40,-240},{60,-220}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Subtract lift if anyVsdCen
+ "Calculates chiller lift for variable speed centrifugal chiller containing configurations"
+ annotation (Placement(transformation(extent={{-260,30},{-240,50}})));
+
+equation
+ connect(uChiAva, conf.uChiAva)
+ annotation (Line(points={{-422,-200},{-382,-200},{-382,-170},{-362,-170}},
+ color={255,0,255}));
+ connect(conf.yAva, sta.uAva) annotation (Line(points={{-338,-178},{-332,-178},
+ {-332,-216},{-322,-216}},color={255,0,255}));
+ connect(TChiWatSupSet, capReq.TChiWatSupSet) annotation (Line(points={{-422,370},
+ {-360,370},{-360,319},{-322,319}}, color={0,0,127}));
+ connect(TChiWatRet, capReq.TChiWatRet) annotation (Line(points={{-420,300},{-374,
+ 300},{-374,314},{-322,314}}, color={0,0,127}));
+ connect(VChiWat_flow, capReq.VChiWat_flow) annotation (Line(points={{-420,270},
+ {-370,270},{-370,309},{-322,309}}, color={0,0,127}));
+ connect(conf.yDesCap, cap.uDesCap) annotation (Line(points={{-338,-162},{-322,
+ -162},{-322,-161},{-272,-161}}, color={0,0,127}));
+ connect(conf.yMinCap, cap.uMinCap) annotation (Line(points={{-338,-166},{-312,
+ -166},{-312,-164},{-272,-164}}, color={0,0,127}));
+ connect(sta.yAvaUp, cap.uUp) annotation (Line(points={{-298,-203},{-286,-203},
+ {-286,-170},{-272,-170}}, color={255,127,0}));
+ connect(sta.yAvaDow, cap.uDown) annotation (Line(points={{-298,-206},{-282,-206},
+ {-282,-173},{-272,-173}}, color={255,127,0}));
+ connect(sta.yHig, cap.uHig) annotation (Line(points={{-298,-211},{-280,-211},
+ {-280,-176},{-272,-176}},color={255,0,255}));
+ connect(capReq.y, PLRs.uCapReq) annotation (Line(points={{-298,310},{-194,310},
+ {-194,-166},{-184,-166}},
+ color={0,0,127}));
+ connect(cap.yDes, PLRs.uCapDes) annotation (Line(points={{-248,-162},{-234,
+ -162},{-234,-168},{-184,-168}},
+ color={0,0,127}));
+ connect(cap.yUpDes, PLRs.uUpCapDes) annotation (Line(points={{-248,-166},{
+ -236,-166},{-236,-170},{-184,-170}},
+ color={0,0,127}));
+ connect(cap.yDowDes, PLRs.uDowCapDes) annotation (Line(points={{-248,-170},{
+ -238,-170},{-238,-172},{-184,-172}},
+ color={0,0,127}));
+ connect(cap.yMin, PLRs.uCapMin) annotation (Line(points={{-248,-174},{-240,
+ -174},{-240,-175},{-184,-175}},
+ color={0,0,127}));
+ connect(cap.yUpMin, PLRs.uUpCapMin) annotation (Line(points={{-248,-178},{
+ -242,-178},{-242,-177},{-184,-177}},
+ color={0,0,127}));
+ connect(uLifMax, PLRs.uLifMax) annotation (Line(points={{-420,20},{-212,20},{
+ -212,-182},{-184,-182}},
+ color={0,0,127}));
+ connect(uLifMin, PLRs.uLifMin) annotation (Line(points={{-420,-10},{-222,-10},
+ {-222,-184},{-184,-184}},
+ color={0,0,127}));
+ connect(conf.yTyp, PLRs.uTyp) annotation (Line(points={{-338,-174},{-302,-174},
+ {-302,-188},{-184,-188}}, color={255,127,0}));
+ connect(sta.yAvaUp, PLRs.uUp) annotation (Line(points={{-298,-203},{-242,-203},
+ {-242,-194},{-184,-194}}, color={255,127,0}));
+ connect(sta.yAvaDow, PLRs.uDown)
+ annotation (Line(points={{-298,-206},{-242,-206},{-242,-196},{-184,-196}},
+ color={255,127,0}));
+ connect(sta.yLow, cap.uLow) annotation (Line(points={{-298,-214},{-278,-214},
+ {-278,-179},{-272,-179}},color={255,0,255}));
+ connect(PLRs.yOpe, staUp.uOpe) annotation (Line(points={{-160,-172},{-136,
+ -172},{-136,-99},{-102,-99}},
+ color={0,0,127}));
+ connect(PLRs.yStaUp, staUp.uStaUp) annotation (Line(points={{-160,-181},{-134,
+ -181},{-134,-101},{-102,-101}},
+ color={0,0,127}));
+ connect(TChiWatSupSet, staUp.TChiWatSupSet) annotation (Line(points={{-422,
+ 370},{-162,370},{-162,-103},{-102,-103}},
+ color={0,0,127}));
+ connect(TChiWatSup, staUp.TChiWatSup) annotation (Line(points={{-422,340},{
+ -386,340},{-386,284},{-164,284},{-164,-105},{-102,-105}},
+ color={0,0,127}));
+ connect(dpChiWatPumSet_local, staUp.dpChiWatPumSet_local) annotation (Line(
+ points={{-420,240},{-144,240},{-144,-107},{-102,-107}}, color={0,0,127}));
+ connect(dpChiWatPum_local, staUp.dpChiWatPum_local) annotation (Line(points={{-420,
+ 210},{-146,210},{-146,-109},{-102,-109}}, color={0,0,127}));
+ connect(PLRs.yOpeDow, staDow.uOpeDow) annotation (Line(points={{-160,-176},{
+ -142,-176},{-142,-219},{-102,-219}},
+ color={0,0,127}));
+ connect(staDow.uStaDow, PLRs.yStaDow) annotation (Line(points={{-102,-221},{
+ -144,-221},{-144,-183},{-160,-183}},
+ color={0,0,127}));
+ connect(dpChiWatPumSet_local, staDow.dpChiWatPumSet_local) annotation (Line(
+ points={{-420,240},{-144,240},{-144,-223},{-102,-223}}, color={0,0,127}));
+ connect(dpChiWatPum_local, staDow.dpChiWatPum_local) annotation (Line(points={
+ {-420,210},{-146,210},{-146,-225},{-102,-225}}, color={0,0,127}));
+ connect(TChiWatSupSet, staDow.TChiWatSupSet) annotation (Line(points={{-422,370},
+ {-152,370},{-152,-231.2},{-102,-231.2}},
+ color={0,0,127}));
+ connect(TChiWatSup, staDow.TChiWatSup) annotation (Line(points={{-422,340},{-386,
+ 340},{-386,284},{-154,284},{-154,-233.2},{-102,-233.2}},
+ color={0,0,127}));
+ connect(TWsePre, staDow.TWsePre) annotation (Line(points={{-420,90},{-156,90},
+ {-156,-235.2},{-102,-235.2}},
+ color={0,0,127}));
+ connect(uTowFanSpeMax, staDow.uTowFanSpeMax) annotation (Line(points={{-420,60},
+ {-158,60},{-158,-237.2},{-102,-237.2}},
+ color={0,0,127}));
+ connect(staDow.uWseSta, uWseSta) annotation (Line(points={{-102,-241},{-340,-241},
+ {-340,-260},{-422,-260}}, color={255,0,255}));
+ connect(uSta, sta.u) annotation (Line(points={{-420,-60},{-328,-60},{-328,-204},
+ {-322,-204}}, color={255,127,0}));
+ connect(sta.yAvaCur, staUp.uAvaCur) annotation (Line(points={{-298,-217},{
+ -242,-217},{-242,-210},{-122,-210},{-122,-117},{-102,-117}},
+ color={255,0,255}));
+ connect(uSta, cap.u) annotation (Line(points={{-420,-60},{-328,-60},{-328,-167},
+ {-272,-167}}, color={255,127,0}));
+ connect(uSta, PLRs.u) annotation (Line(points={{-420,-60},{-232,-60},{-232,
+ -192},{-184,-192}},
+ color={255,127,0}));
+ connect(uSta, staUp.u) annotation (Line(points={{-420,-60},{-112,-60},{-112,
+ -115},{-102,-115}},
+ color={255,127,0}));
+ connect(uSta, staDow.u) annotation (Line(points={{-420,-60},{-328,-60},{-328,-239},
+ {-102,-239}}, color={255,127,0}));
+ connect(chaPro, capReq.chaPro) annotation (Line(points={{-420,-140},{-350,
+ -140},{-350,302},{-322,302}}, color={255,0,255}));
+ connect(sta.yAvaUp, cha.uAvaUp) annotation (Line(points={{-298,-203},{-292,-203},
+ {-292,-148},{-40,-148},{-40,-164},{-22,-164}}, color={255,127,0}));
+ connect(sta.yAvaDow, cha.uAvaDow) annotation (Line(points={{-298,-206},{-290,-206},
+ {-290,-150},{-44,-150},{-44,-168},{-22,-168}}, color={255,127,0}));
+ connect(staUp.y, cha.uUp) annotation (Line(points={{-78,-110},{-50,-110},{-50,
+ -172},{-22,-172}}, color={255,0,255}));
+ connect(staDow.y, cha.uDow) annotation (Line(points={{-78,-230},{-60,-230},{
+ -60,-176},{-22,-176}},
+ color={255,0,255}));
+ connect(uPla, cha.uPla) annotation (Line(points={{-420,-100},{-280,-100},{
+ -280,-140},{-70,-140},{-70,-180},{-22,-180}},
+ color={255,0,255}));
+ connect(cha.ySta, ySta) annotation (Line(points={{2,-166},{20,-166},{20,240},{
+ 140,240}}, color={255,127,0}));
+ connect(cha.yChaEdg, yChaEdg) annotation (Line(points={{2,-174},{80,-174},{80,
+ -140},{140,-140}}, color={255,0,255}));
+ connect(chiInd.yChi, yChiSet) annotation (Line(points={{62,-230},{80,-230},{
+ 80,-260},{140,-260}}, color={255,0,255}));
+ connect(cha.ySta, chiInd.u) annotation (Line(points={{2,-166},{20,-166},{20,
+ -230},{38,-230}}, color={255,127,0}));
+ connect(TChiWatSupSet, iniSta.TChiWatSupSet) annotation (Line(points={{-422,370},
+ {-100,370},{-100,113},{-82,113}}, color={0,0,127}));
+ connect(uTunPar, iniSta.uTunPar) annotation (Line(points={{-420,120},{-104,120},
+ {-104,116},{-82,116}}, color={0,0,127}));
+ connect(iniSta.yIni, cha.uIni) annotation (Line(points={{-59,110},{-30,110},{-30,
+ -160},{-22,-160}}, color={255,127,0}));
+ connect(TOutWet, iniSta.TOutWet) annotation (Line(points={{-420,400},{-96,400},
+ {-96,119},{-82,119}}, color={0,0,127}));
+ connect(sta.yAvaUp, iniSta.uUp) annotation (Line(points={{-298,-203},{-294,-203},
+ {-294,110},{-82,110}}, color={255,127,0}));
+ connect(uPla, iniSta.uPla) annotation (Line(points={{-420,-100},{-280,-100},{-280,
+ 104},{-82,104}}, color={255,0,255}));
+ connect(cha.yChaUpEdg, yChaUpEdg) annotation (Line(points={{2,-170},{60,-170},
+ {60,-100},{140,-100}},
+ color={255,0,255}));
+ connect(cha.yChaDowEdg, yChaDowEdg) annotation (Line(points={{2,-178},{60,
+ -178},{60,-200},{140,-200}},
+ color={255,0,255}));
+ connect(PLRs.yOpeMin, yOpeParLoaRatMin) annotation (Line(points={{-160,-187},
+ {-130,-187},{-130,340},{140,340}},
+ color={0,0,127}));
+ connect(staUp.y, yUp) annotation (Line(points={{-78,-110},{-50,-110},{-50,80},
+ {140,80}}, color={255,0,255}));
+ connect(staDow.y, yDow) annotation (Line(points={{-78,-230},{-60,-230},{-60,
+ 40},{138,40}}, color={255,0,255}));
+ connect(TChiWatRet, lift.u1) annotation (Line(points={{-420,300},{-388,300},{-388,
+ 46},{-262,46}}, color={0,0,127}));
+ connect(TChiWatSupSet, lift.u2) annotation (Line(points={{-422,370},{-360,370},
+ {-360,34},{-262,34}}, color={0,0,127}));
+ connect(PLRs.uLif, lift.y) annotation (Line(points={{-184,-180},{-202,-180},{
+ -202,40},{-238,40}},
+ color={0,0,127}));
+ connect(capReq.y, yCapReq) annotation (Line(points={{-298,310},{-194,310},{-194,
+ 390},{140,390}}, color={0,0,127}));
+ connect(dpChiWatPumSet_remote, staUp.dpChiWatPumSet_remote) annotation (Line(
+ points={{-420,180},{-148,180},{-148,-111},{-102,-111}}, color={0,0,127}));
+ connect(dpChiWatPumSet_remote, staDow.dpChiWatPumSet_remote) annotation (Line(
+ points={{-420,180},{-148,180},{-148,-227},{-102,-227}}, color={0,0,127}));
+ connect(dpChiWatPum_remote, staUp.dpChiWatPum_remote) annotation (Line(points={{-420,
+ 150},{-150,150},{-150,-113},{-102,-113}}, color={0,0,127}));
+ connect(dpChiWatPum_remote, staDow.dpChiWatPum_remote) annotation (Line(
+ points={{-420,150},{-150,150},{-150,-229},{-102,-229}}, color={0,0,127}));
+ connect(iniSta.yIni, yIni) annotation (Line(points={{-59,110},{-30,110},{-30,300},
+ {140,300}}, color={255,127,0}));
+ connect(uPla, staUp.uPla) annotation (Line(points={{-420,-100},{-280,-100},{
+ -280,-119},{-102,-119}}, color={255,0,255}));
+ annotation (defaultComponentName = "staSetCon",
+ Icon(coordinateSystem(extent={{-100,-220},{100,200}}, initialScale=0.2),
+ graphics={
+ Rectangle(
+ extent={{-100,-220},{100,200}},
+ lineColor={0,0,127},
+ fillColor={255,255,85},
+ fillPattern=FillPattern.Solid),
+ Text(
+ extent={{-112,244},{108,206}},
+ textColor={0,0,255},
+ textString="%name"),
+ Text(
+ extent={{-96,88},{-8,54}},
+ textColor={0,0,127},
+ pattern=LinePattern.Dash,
+ textString="TChiWatSupSet"),
+ Text(
+ extent={{-96,66},{-24,34}},
+ textColor={0,0,127},
+ pattern=LinePattern.Dash,
+ textString="TChiWatSup"),
+ Text(
+ extent={{-96,-182},{-40,-198}},
+ textColor={0,0,127},
+ pattern=LinePattern.Dash,
+ textString="TWsePre"),
+ Text(
+ extent={{-98,-160},{-24,-178}},
+ textColor={0,0,127},
+ pattern=LinePattern.Dash,
+ textString="TChiWatRet"),
+ Text(
+ extent={{-98,-196},{-14,-222}},
+ textColor={0,0,127},
+ pattern=LinePattern.Dash,
+ textString="VChiWat_flow"),
+ Text(
+ extent={{-96,-128},{8,-152}},
+ textColor={0,0,127},
+ pattern=LinePattern.Dash,
+ textString="uTowFanSpeMax"),
+ Text(
+ extent={{-94,-10},{0,-32}},
+ textColor={0,0,127},
+ pattern=LinePattern.Dash,
+ textString="dpChiWatPumSet_local",
+ visible=(not have_serChi) and have_locSen),
+ Text(
+ extent={{-96,-28},{-10,-48}},
+ textColor={0,0,127},
+ pattern=LinePattern.Dash,
+ textString="dpChiWatPum_local",
+ visible=(not have_serChi) and have_locSen),
+ Text(
+ extent={{-96,8},{-48,-10}},
+ textColor={0,0,127},
+ pattern=LinePattern.Dash,
+ textString="uLifMin",
+ visible=anyVsdCen),
+ Text(
+ extent={{-96,32},{-46,14}},
+ textColor={0,0,127},
+ pattern=LinePattern.Dash,
+ textString="uLifMax",
+ visible=anyVsdCen),
+ Text(
+ extent={{-98,112},{-68,92}},
+ textColor={244,125,35},
+ pattern=LinePattern.Dash,
+ textString="uSta"),
+ Text(
+ extent={{-98,200},{-46,180}},
+ textColor={217,67,180},
+ pattern=LinePattern.Dash,
+ textString="uWseSta"),
+ Text(
+ extent={{-100,180},{-50,164}},
+ textColor={217,67,180},
+ pattern=LinePattern.Dash,
+ textString="chaPro"),
+ Text(
+ extent={{-96,142},{-68,120}},
+ textColor={217,67,180},
+ pattern=LinePattern.Dash,
+ textString="uPla"),
+ Text(
+ extent={{-96,160},{-44,142}},
+ textColor={217,67,180},
+ pattern=LinePattern.Dash,
+ textString="uChiAva"),
+ Text(
+ extent={{62,-116},{94,-100}},
+ textColor={244,125,35},
+ pattern=LinePattern.Dash,
+ textString="ySta"),
+ Text(
+ extent={{42,74},{94,50}},
+ textColor={217,67,180},
+ pattern=LinePattern.Dash,
+ textString="yChaEdg"),
+ Text(
+ extent={{40,-24},{92,-52}},
+ textColor={217,67,180},
+ pattern=LinePattern.Dash,
+ textString="yChiSet[]"),
+ Text(
+ extent={{-98,-110},{-48,-126}},
+ textColor={0,0,127},
+ pattern=LinePattern.Dash,
+ textString="uTunPar"),
+ Text(
+ extent={{-98,-90},{-46,-108}},
+ textColor={0,0,127},
+ pattern=LinePattern.Dash,
+ textString="TOutWet"),
+ Text(
+ extent={{28,112},{94,70}},
+ textColor={217,67,180},
+ pattern=LinePattern.Dash,
+ textString="yChaUpEdg"),
+ Text(
+ extent={{16,50},{94,14}},
+ textColor={217,67,180},
+ pattern=LinePattern.Dash,
+ textString="yChaDowEdg"),
+ Text(
+ extent={{-12,-154},{96,-200}},
+ textColor={0,0,127},
+ pattern=LinePattern.Dash,
+ textString="yOpeParLoaRatMin"),
+ Text(
+ extent={{54,194},{98,170}},
+ textColor={217,67,180},
+ pattern=LinePattern.Dash,
+ textString="yUp"),
+ Text(
+ extent={{52,164},{100,140}},
+ textColor={217,67,180},
+ pattern=LinePattern.Dash,
+ textString="yDow"),
+ Text(
+ extent={{42,-198},{94,-220}},
+ textColor={0,0,127},
+ pattern=LinePattern.Dash,
+ textString="yCapReq"),
+ Text(
+ extent={{-96,-48},{8,-72}},
+ textColor={0,0,127},
+ pattern=LinePattern.Dash,
+ textString="dpChiWatPumSet_remote",
+ visible=(not have_serChi) and (not have_locSen)),
+ Text(
+ extent={{-96,-68},{8,-92}},
+ textColor={0,0,127},
+ pattern=LinePattern.Dash,
+ textString="dpChiWatPum_remote",
+ visible=(not have_serChi) and (not have_locSen)),
+ Text(
+ extent={{62,-98},{94,-82}},
+ textColor={244,125,35},
+ pattern=LinePattern.Dash,
+ textString="yIni")}), Diagram(
+ coordinateSystem(preserveAspectRatio=false,
+ extent={{-400,-300},{120,420}})),
+Documentation(info="
+
+The sequence is a chiller stage status setpoint controller that outputs the
+chiller stage integer index ySta
, chiller stage change trigger signal
+y
and a chiller status vector for the current stage yChi
.
+
+
+Implemented according to ASHRAE RP-1711 March 2020 Draft, section 5.2.4.1 - 17.
+
+
+The controller contains the following subsequences:
+
+
+",
+revisions="
+
+-
+April 14, 2020, by Milica Grahovac:
+First implementation.
+
+
+"));
+end SetpointController;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/SetPoints/Subsequences/Capacities.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/SetPoints/Subsequences/Capacities.mo
new file mode 100644
index 00000000000..4fbfd41be54
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/SetPoints/Subsequences/Capacities.mo
@@ -0,0 +1,338 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.SetPoints.Subsequences;
+block Capacities
+ "Returns design and minimal stage capacities for current and next available higher and lower stage"
+
+ parameter Integer nSta = 3
+ "Number of chiller stages, does not include zero stage";
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uLow
+ "Current stage is the lowest available stage"
+ annotation (Placement(transformation(extent={{-240,-80},{-200,-40}}),
+ iconTransformation(extent={{-140,-110},{-100,-70}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uHig
+ "Current stage is the highest available stage"
+ annotation (Placement(transformation(extent={{-240,-110},{-200,-70}}),
+ iconTransformation(extent={{-140,-80},{-100,-40}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.IntegerInput u(
+ final min=0,
+ final max=nSta) "Chiller stage"
+ annotation (Placement(transformation(extent={{-240,100},{-200,140}}),
+ iconTransformation(extent={{-140,10},{-100,50}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.IntegerInput uUp(
+ final min=0,
+ final max=nSta) "Next available higher stage"
+ annotation (Placement(transformation(extent={{-240,40},{-200,80}}),
+ iconTransformation(extent={{-140,-20},{-100,20}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.IntegerInput uDown(
+ final min=0,
+ final max=nSta) "Next available lower stage"
+ annotation (Placement(transformation(extent={{-240,-40},{-200,0}}),
+ iconTransformation(extent={{-140,-50},{-100,-10}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput uDesCap[nSta](
+ final quantity=fill("HeatFlowRate", nSta),
+ final unit=fill("W", nSta)) "Design stage capacities"
+ annotation (Placement(transformation(extent={{-240,160},{-200,200}}),
+ iconTransformation(extent={{-140,70},{-100,110}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput uMinCap[nSta](
+ final quantity=fill("HeatFlowRate", nSta),
+ final unit=fill("W", nSta)) "Unload stage capacities"
+ annotation (Placement(transformation(extent={{-240,-200},{-200,-160}}),
+ iconTransformation(extent={{-140,40},{-100,80}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealOutput yDes(
+ final unit="W",
+ final quantity="HeatFlowRate") "Design capacity of the current stage"
+ annotation (Placement(transformation(extent={{200,130},{240,170}}),
+ iconTransformation(extent={{100,60},{140,100}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealOutput yDowDes(
+ final unit="W",
+ final quantity="HeatFlowRate") "Design capacity of the next available lower stage"
+ annotation (Placement(transformation(extent={{200,0},{240,40}}),
+ iconTransformation(extent={{100,-20},{140,20}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealOutput yUpDes(
+ final unit="W",
+ final quantity="HeatFlowRate") "Design capacity of the next available higher stage"
+ annotation (Placement(transformation(extent={{200,40},{240,80}}),
+ iconTransformation(extent={{100,20},{140,60}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealOutput yMin(
+ final unit="W",
+ final quantity="HeatFlowRate") "Minimum capacity of the current stage"
+ annotation (Placement(transformation(extent={{200,-40},{240,0}}),
+ iconTransformation(extent={{100,-60},{140,-20}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealOutput yUpMin(
+ final unit="W",
+ final quantity="HeatFlowRate") "Minimum capacity of the next available higher stage"
+ annotation (Placement(transformation(extent={{200,-110},{240,-70}}),
+ iconTransformation(extent={{100,-100},{140,-60}})));
+
+protected
+ final parameter Real larGai = 10
+ "Large gain";
+
+ Buildings.Controls.OBC.CDL.Routing.RealExtractor cap(
+ final nin=nSta)
+ "Extracts the design capacity at the current stage"
+ annotation (Placement(transformation(extent={{-10,170},{10,190}})));
+
+ Buildings.Controls.OBC.CDL.Routing.RealExtractor dowCap(
+ final nin=nSta)
+ "Extracts the design capacity of one stage lower than the current stage"
+ annotation (Placement(transformation(extent={{0,-10},{20,10}})));
+
+ Buildings.Controls.OBC.CDL.Routing.RealExtractor upCapMin(
+ final nin=nSta)
+ "Extracts minimal capacity of the next higher stage"
+ annotation (Placement(transformation(extent={{0,-70},{20,-50}})));
+
+ Buildings.Controls.OBC.CDL.Routing.RealExtractor upCap(
+ final nin=nSta)
+ "Extracts the design capacity of the next stage"
+ annotation (Placement(transformation(extent={{0,80},{20,100}})));
+
+ Buildings.Controls.OBC.CDL.Routing.RealExtractor capMin(
+ final nin=nSta)
+ "Extracts the minimum capacity of the current stage"
+ annotation (Placement(transformation(extent={{0,-150},{20,-130}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Switch swi2 "Switch"
+ annotation (Placement(transformation(extent={{160,50},{180,70}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Switch swi4 "Switch"
+ annotation (Placement(transformation(extent={{160,-100},{180,-80}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Switch swi1
+ "Outputs minimum current stage capacity as design stage down capacity if operating in the lowest available stage"
+ annotation (Placement(transformation(extent={{160,10},{180,30}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.MultiplyByParameter gai(
+ final k=larGai)
+ "Ouputs a very large and unachievable staging up capacity when current is the highest available stage"
+ annotation (Placement(transformation(extent={{80,110},{100,130}})));
+
+ Buildings.Controls.OBC.CDL.Conversions.BooleanToReal booToRea[3]
+ "Convert boolean to real"
+ annotation (Placement(transformation(extent={{-80,70},{-60,90}})));
+ Buildings.Controls.OBC.CDL.Continuous.Multiply mul
+ "Ensure zero output when the index is out of range"
+ annotation (Placement(transformation(extent={{30,140},{50,160}})));
+ Buildings.Controls.OBC.CDL.Continuous.Multiply mul1
+ "Ensure zero output when the index is out of range"
+ annotation (Placement(transformation(extent={{60,-130},{80,-110}})));
+ Buildings.Controls.OBC.CDL.Continuous.Multiply mul2
+ "Ensure zero output when the index is out of range"
+ annotation (Placement(transformation(extent={{60,-50},{80,-30}})));
+ Buildings.Controls.OBC.CDL.Continuous.Multiply mul3
+ "Ensure zero output when the index is out of range"
+ annotation (Placement(transformation(extent={{60,60},{80,80}})));
+ Buildings.Controls.OBC.CDL.Continuous.Multiply mul4
+ "Ensure zero output when the index is out of range"
+ annotation (Placement(transformation(extent={{60,30},{80,50}})));
+ Buildings.Controls.OBC.CDL.Integers.GreaterEqualThreshold intGreEquThr[3](
+ final t=fill(1, 3)) "Check if index is in the range"
+ annotation (Placement(transformation(extent={{-160,70},{-140,90}})));
+ Buildings.Controls.OBC.CDL.Integers.LessEqualThreshold intLesEquThr[3](
+ final t=fill(nSta, 3)) "Check if index is in the range"
+ annotation (Placement(transformation(extent={{-160,-10},{-140,10}})));
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant conInt[3](
+ final k=fill(1, 3))
+ "Dummy index so the extractor will not have out of range index"
+ annotation (Placement(transformation(extent={{-120,-10},{-100,10}})));
+ Buildings.Controls.OBC.CDL.Logical.And and2[3]
+ "Check if index is in the range"
+ annotation (Placement(transformation(extent={{-120,70},{-100,90}})));
+ Buildings.Controls.OBC.CDL.Integers.Switch intSwi[3] "Valid index"
+ annotation (Placement(transformation(extent={{-80,20},{-60,40}})));
+equation
+ connect(swi2.y, yUpDes) annotation (Line(points={{182,60},{220,60}}, color={0,0,127}));
+ connect(yMin, yMin)
+ annotation (Line(points={{220,-20},{220,-20}}, color={0,0,127}));
+ connect(swi4.y, yUpMin) annotation (Line(points={{182,-90},{220,-90}}, color={0,0,127}));
+ connect(uMinCap, upCapMin.u) annotation (Line(points={{-220,-180},{-20,-180},{
+ -20,-60},{-2,-60}}, color={0,0,127}));
+ connect(uMinCap, capMin.u) annotation (Line(points={{-220,-180},{-20,-180},{-20,
+ -140},{-2,-140}}, color={0,0,127}));
+ connect(uDesCap, cap.u) annotation (Line(points={{-220,180},{-12,180}},
+ color={0,0,127}));
+ connect(uDesCap, dowCap.u) annotation (Line(points={{-220,180},{-20,180},{-20,
+ 0},{-2,0}}, color={0,0,127}));
+ connect(uDesCap, upCap.u) annotation (Line(points={{-220,180},{-20,180},{-20,90},
+ {-2,90}}, color={0,0,127}));
+ connect(uLow, swi1.u2) annotation (Line(points={{-220,-60},{-50,-60},{-50,20},
+ {158,20}}, color={255,0,255}));
+ connect(uHig, swi2.u2) annotation (Line(points={{-220,-90},{140,-90},{140,60},
+ {158,60}}, color={255,0,255}));
+ connect(uHig, swi4.u2) annotation (Line(points={{-220,-90},{158,-90}},
+ color={255,0,255}));
+ connect(gai.y, swi2.u1) annotation (Line(points={{102,120},{120,120},{120,68},
+ {158,68}}, color={0,0,127}));
+ connect(gai.y, swi4.u1) annotation (Line(points={{102,120},{120,120},{120,-82},
+ {158,-82}},color={0,0,127}));
+ connect(swi1.y, yDowDes) annotation (Line(points={{182,20},{220,20}}, color={0,0,127}));
+ connect(cap.y, yDes) annotation (Line(points={{12,180},{122,180},{122,150},{220,
+ 150}}, color={0,0,127}));
+ connect(yUpMin, yUpMin)
+ annotation (Line(points={{220,-90},{220,-90}}, color={0,0,127}));
+ connect(intGreEquThr.y, and2.u1)
+ annotation (Line(points={{-138,80},{-122,80}}, color={255,0,255}));
+ connect(intLesEquThr.y, and2.u2) annotation (Line(points={{-138,0},{-130,0},{-130,
+ 72},{-122,72}}, color={255,0,255}));
+ connect(and2.y, intSwi.u2) annotation (Line(points={{-98,80},{-90,80},{-90,30},
+ {-82,30}}, color={255,0,255}));
+ connect(conInt.y, intSwi.u3) annotation (Line(points={{-98,0},{-90,0},{-90,22},
+ {-82,22}}, color={255,127,0}));
+ connect(and2.y, booToRea.u)
+ annotation (Line(points={{-98,80},{-82,80}}, color={255,0,255}));
+ connect(cap.y, mul.u1) annotation (Line(points={{12,180},{20,180},{20,156},{28,
+ 156}}, color={0,0,127}));
+ connect(mul.y, gai.u) annotation (Line(points={{52,150},{60,150},{60,120},{78,
+ 120}}, color={0,0,127}));
+ connect(capMin.y, mul1.u2) annotation (Line(points={{22,-140},{40,-140},{40,-126},
+ {58,-126}}, color={0,0,127}));
+ connect(mul1.y, yMin) annotation (Line(points={{82,-120},{130,-120},{130,-20},
+ {220,-20}}, color={0,0,127}));
+ connect(mul1.y, swi1.u1) annotation (Line(points={{82,-120},{130,-120},{130,28},
+ {158,28}}, color={0,0,127}));
+ connect(u, intGreEquThr[1].u) annotation (Line(points={{-220,120},{-190,120},{
+ -190,80},{-162,80}}, color={255,127,0}));
+ connect(u, intLesEquThr[1].u) annotation (Line(points={{-220,120},{-190,120},{
+ -190,0},{-162,0}}, color={255,127,0}));
+ connect(u, intSwi[1].u1) annotation (Line(points={{-220,120},{-190,120},{-190,
+ 38},{-82,38}}, color={255,127,0}));
+ connect(booToRea[1].y, mul1.u1) annotation (Line(points={{-58,80},{-30,80},{-30,
+ -114},{58,-114}}, color={0,0,127}));
+ connect(booToRea[1].y, mul.u2) annotation (Line(points={{-58,80},{-30,80},{-30,
+ 144},{28,144}}, color={0,0,127}));
+ connect(intSwi[1].y, cap.index) annotation (Line(points={{-58,30},{-40,30},{-40,
+ 160},{0,160},{0,168}}, color={255,127,0}));
+ connect(intSwi[1].y, capMin.index) annotation (Line(points={{-58,30},{-40,30},
+ {-40,-160},{10,-160},{10,-152}}, color={255,127,0}));
+ connect(mul2.y, swi4.u3) annotation (Line(points={{82,-40},{100,-40},{100,-98},
+ {158,-98}}, color={0,0,127}));
+ connect(upCapMin.y, mul2.u2) annotation (Line(points={{22,-60},{40,-60},{40,-46},
+ {58,-46}}, color={0,0,127}));
+ connect(booToRea[2].y, mul2.u1) annotation (Line(points={{-58,80},{-30,80},{-30,
+ -34},{58,-34}}, color={0,0,127}));
+ connect(intSwi[2].y, upCapMin.index) annotation (Line(points={{-58,30},{-40,30},
+ {-40,-80},{10,-80},{10,-72}}, color={255,127,0}));
+ connect(upCap.y, mul3.u1) annotation (Line(points={{22,90},{40,90},{40,76},{58,
+ 76}}, color={0,0,127}));
+ connect(mul3.y, swi2.u3) annotation (Line(points={{82,70},{100,70},{100,52},{158,
+ 52}}, color={0,0,127}));
+ connect(booToRea[2].y, mul3.u2) annotation (Line(points={{-58,80},{-14,80},{-14,
+ 64},{58,64}}, color={0,0,127}));
+ connect(intSwi[2].y, upCap.index)
+ annotation (Line(points={{-58,30},{10,30},{10,78}}, color={255,127,0}));
+ connect(mul4.y, swi1.u3) annotation (Line(points={{82,40},{100,40},{100,12},{158,
+ 12}}, color={0,0,127}));
+ connect(dowCap.y, mul4.u2)
+ annotation (Line(points={{22,0},{40,0},{40,34},{58,34}}, color={0,0,127}));
+ connect(booToRea[3].y, mul4.u1) annotation (Line(points={{-58,80},{-30,80},{-30,
+ 46},{58,46}}, color={0,0,127}));
+ connect(intSwi[3].y, dowCap.index) annotation (Line(points={{-58,30},{-40,30},
+ {-40,-20},{10,-20},{10,-12}}, color={255,127,0}));
+ connect(uUp, intGreEquThr[2].u) annotation (Line(points={{-220,60},{-180,60},{
+ -180,80},{-162,80}}, color={255,127,0}));
+ connect(uUp, intLesEquThr[2].u) annotation (Line(points={{-220,60},{-180,60},{
+ -180,0},{-162,0}}, color={255,127,0}));
+ connect(uUp, intSwi[2].u1) annotation (Line(points={{-220,60},{-180,60},{-180,
+ 38},{-82,38}}, color={255,127,0}));
+ connect(uDown, intGreEquThr[3].u) annotation (Line(points={{-220,-20},{-170,-20},
+ {-170,80},{-162,80}}, color={255,127,0}));
+ connect(uDown, intLesEquThr[3].u) annotation (Line(points={{-220,-20},{-170,-20},
+ {-170,0},{-162,0}}, color={255,127,0}));
+ connect(uDown, intSwi[3].u1) annotation (Line(points={{-220,-20},{-170,-20},{-170,
+ 38},{-82,38}}, color={255,127,0}));
+annotation (defaultComponentName = "cap",
+ Icon(graphics={
+ Rectangle(
+ extent={{-100,-100},{100,100}},
+ lineColor={0,0,127},
+ fillColor={255,255,255},
+ fillPattern=FillPattern.Solid),
+ Text(
+ extent={{-120,146},{100,108}},
+ textColor={0,0,255},
+ textString="%name")}),
+ Diagram(coordinateSystem(preserveAspectRatio=false,
+ extent={{-200,-200},{200,200}})),
+Documentation(info="
+
+This subsequence is not directly specified in 1711 as it provides
+a side calculation pertaining to generalization of the staging
+sequences for any number of chillers and stages provided by the
+user.
+
+
+Based on:
+
+
+-
+the current chiller stage
u
index
+
+-
+the next available higher chiller stage
uUp
index
+
+-
+the next available lower chiller stage
uDown
index
+
+-
+boolean inputs that determine if the current stage is
+any of the following: the highest
uHigh
or the
+lowest uLow
available chiller stage
+
+
+
+the subsequence selects from the design stage capacity uDesCap
+and the minimal stage capacity uMinCap
vectors
+the following variables and outputs them:
+
+
+-
+the design capacities of the current
yDes
, first available higher
+yUpDes
and first available lower stage yDowDes
+
+-
+the minimal capacity of the current
yMin
and first available higher
+stage yUpMin
+
+
+
+for the purpose of calculating the operative part load ratios
+(OPLR) up and down, respectively. The OPLR is defined in 1711 March 2020 draft section 5.2.4.6.
+
+
+For numerical reasons and to ensure expected behavior in corner cases such as
+when the plant operates at the highest or the lowest available stage, the
+sequence implements the following:
+
+
+-
+if operating at the lowest available chiller stage, the minimal capacity
+of that stage is returned as the stage down design capacity.
+
+-
+if operating at the highest stage, the design and minimal stage up conditionals are set to
+a value significantly larger than the design capacity of the highest stage.
+This ensures numerical stability and satisfies the staging down conditionals.
+
+
+",
+revisions="
+
+-
+January 13, 2020, by Milica Grahovac:
+First implementation.
+
+
+"));
+end Capacities;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/SetPoints/Subsequences/CapacityRequirement.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/SetPoints/Subsequences/CapacityRequirement.mo
new file mode 100644
index 00000000000..c57502adb1b
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/SetPoints/Subsequences/CapacityRequirement.mo
@@ -0,0 +1,190 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.SetPoints.Subsequences;
+block CapacityRequirement
+ "Cooling capacity requirement"
+
+ parameter Real avePer(
+ final unit="s",
+ final quantity="Time")=300
+ "Time period for the rolling average";
+
+ parameter Real holPer(
+ final unit="s",
+ final quantity="Time",
+ displayUnit="h")=900
+ "Time period for the value hold at stage change";
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput chaPro
+ "Stage change process status, true = on, false = off"
+ annotation (Placement(transformation(extent={{-180,90},{-140,130}}),
+ iconTransformation(extent={{-140,-100},{-100,-60}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput TChiWatSupSet(
+ final unit="K",
+ final quantity="ThermodynamicTemperature")
+ "Chilled water supply temperature setpoint"
+ annotation (Placement(transformation(extent={{-180,-10},{-140,30}}),
+ iconTransformation(extent={{-140,70},{-100,110}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput TChiWatRet(
+ final unit="K",
+ final quantity="ThermodynamicTemperature")
+ "Chilled water return temperature"
+ annotation (Placement(transformation(extent={{-180,-70},{-140,-30}}),
+ iconTransformation(extent={{-140,20},{-100,60}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput VChiWat_flow(
+ final quantity="VolumeFlowRate",
+ final unit="m3/s") "Measured chilled water flow rate"
+ annotation (Placement(transformation(extent={{-180,-150},{-140,-110}}),
+ iconTransformation(extent={{-140,-30},{-100,10}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealOutput y(
+ final quantity="HeatFlowRate",
+ final unit="W") "Chilled water cooling capacity requirement"
+ annotation (Placement(transformation(extent={{140,110},{180,150}}),
+ iconTransformation(extent={{100,-20},{140,20}})));
+
+protected
+ constant Real rhoWat(
+ final unit="kg/m3",
+ final quantity="Density",
+ displayUnit="kg/m3")=1000 "Water density";
+
+ constant Real cpWat(
+ final unit="J/(kg.K)",
+ final quantity="SpecificEntropy",
+ displayUnit="J/(kg.K)")=4184
+ "Specific heat capacity of water";
+
+ Buildings.Controls.OBC.CDL.Discrete.TriggeredSampler triSam
+ "Triggered sampler"
+ annotation (Placement(transformation(extent={{-40,120},{-20,140}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Switch swi "Switch"
+ annotation (Placement(transformation(extent={{80,120},{100,140}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Edge edg "Edge"
+ annotation (Placement(transformation(extent={{-100,100},{-80,120}})));
+
+ Buildings.Controls.OBC.CDL.Logical.TrueFalseHold truFalHol(
+ final trueHoldDuration=holPer,
+ final falseHoldDuration=0) "True hold"
+ annotation (Placement(transformation(extent={{-40,70},{-20,90}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant density(
+ final k = rhoWat)
+ "Water density"
+ annotation (Placement(transformation(extent={{-120,-110},{-100,-90}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant speHeaCap(
+ final k = cpWat)
+ "Specific heat capacity of water"
+ annotation (Placement(transformation(extent={{-120,-160},{-100,-140}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant minLim(
+ final k=0)
+ "Minimum capacity requirement limit"
+ annotation (Placement(transformation(extent={{60,-30},{80,-10}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Subtract sub1
+ "Find input difference"
+ annotation (Placement(transformation(extent={{-80,-30},{-60,-10}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.MovingAverage movMea(
+ final delta=avePer)
+ "Moving average"
+ annotation (Placement(transformation(extent={{60,-80},{80,-60}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Multiply pro "Product"
+ annotation (Placement(transformation(extent={{20,-80},{40,-60}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Multiply pro1 "Product"
+ annotation (Placement(transformation(extent={{-80,-130},{-60,-110}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Multiply pro2 "Product"
+ annotation (Placement(transformation(extent={{-20,-90},{0,-70}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Max max "Maximum of two inputs"
+ annotation (Placement(transformation(extent={{100,-80},{120,-60}})));
+
+equation
+ connect(sub1.y, pro.u1) annotation (Line(points={{-58,-20},{10,-20},{10,-64},
+ {18,-64}},color={0,0,127}));
+ connect(pro.y, movMea.u)
+ annotation (Line(points={{42,-70},{58,-70}}, color={0,0,127}));
+ connect(speHeaCap.y, pro1.u2) annotation (Line(points={{-98,-150},{-90,-150},{
+ -90,-126},{-82,-126}}, color={0,0,127}));
+ connect(pro1.y, pro2.u2) annotation (Line(points={{-58,-120},{-50,-120},{-50,-86},
+ {-22,-86}}, color={0,0,127}));
+ connect(pro.u2, pro2.y) annotation (Line(points={{18,-76},{10,-76},{10,-80},{2,
+ -80}}, color={0,0,127}));
+ connect(pro1.u1, density.y) annotation (Line(points={{-82,-114},{-90,-114},{-90,
+ -100},{-98,-100}}, color={0,0,127}));
+ connect(VChiWat_flow, pro2.u1) annotation (Line(points={{-160,-130},{-130,-130},
+ {-130,-74},{-22,-74}}, color={0,0,127}));
+ connect(max.u1, minLim.y) annotation (Line(points={{98,-64},{90,-64},{90,-20},
+ {82,-20}}, color={0,0,127}));
+ connect(movMea.y, max.u2) annotation (Line(points={{82,-70},{90,-70},{90,-76},
+ {98,-76}}, color={0,0,127}));
+ connect(max.y, triSam.u) annotation (Line(points={{122,-70},{130,-70},{130,20},
+ {-60,20},{-60,130},{-42,130}}, color={0,0,127}));
+ connect(chaPro, edg.u)
+ annotation (Line(points={{-160,110},{-102,110}}, color={255,0,255}));
+ connect(edg.y, triSam.trigger) annotation (Line(points={{-78,110},{-30,110},{-30,
+ 118}}, color={255,0,255}));
+ connect(triSam.y, swi.u1) annotation (Line(points={{-18,130},{10,130},{10,138},
+ {78,138}}, color={0,0,127}));
+ connect(max.y, swi.u3) annotation (Line(points={{122,-70},{130,-70},{130,60},{
+ 60,60},{60,122},{78,122}}, color={0,0,127}));
+ connect(swi.y, y)
+ annotation (Line(points={{102,130},{160,130}},color={0,0,127}));
+ connect(chaPro, truFalHol.u) annotation (Line(points={{-160,110},{-120,110},{
+ -120,80},{-42,80}}, color={255,0,255}));
+ connect(truFalHol.y, swi.u2) annotation (Line(points={{-18,80},{40,80},{40,
+ 130},{78,130}}, color={255,0,255}));
+ connect(TChiWatSupSet, sub1.u2) annotation (Line(points={{-160,10},{-120,10},{
+ -120,-26},{-82,-26}}, color={0,0,127}));
+ connect(TChiWatRet, sub1.u1) annotation (Line(points={{-160,-50},{-100,-50},{-100,
+ -14},{-82,-14}}, color={0,0,127}));
+
+ annotation (defaultComponentName = "capReq",
+ Icon(graphics={
+ Rectangle(
+ extent={{-100,-100},{100,100}},
+ lineColor={0,0,127},
+ fillColor={255,255,255},
+ fillPattern=FillPattern.Solid),
+ Text(
+ extent={{-120,146},{100,108}},
+ textColor={0,0,255},
+ textString="%name"),
+ Text(
+ extent={{-62,88},{60,-76}},
+ textColor={0,0,0},
+ fillColor={255,255,255},
+ fillPattern=FillPattern.Solid,
+ textString="Load")}), Diagram(
+ coordinateSystem(preserveAspectRatio=false, extent={{-140,-180},{140,160}})),
+Documentation(info="
+
+Calculates cooling capacity requirement based on the measured chilled water return temperature TChiWatRet
,
+calculated chilled water supply temperature setpoint
+TChiWatSupSet
and the measured chilled water flow VChiWat_flow
.
+The calculation is according to 1711 March 2020 Draft, section 5.2.4.8.
+
+
+When a stage change process is in progress, as indicated by a boolean input
+chaPro
, the capacity requirement is kept constant for the longer of
+holPer
and the duration of the change process.
+The calculation is according to 1711 March 2020 Draft, section 5.2.4.9.
+
+",
+revisions="
+
+-
+July 5, 2019, by Milica Grahovac:
+First implementation.
+
+
+"));
+end CapacityRequirement;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/SetPoints/Subsequences/Change.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/SetPoints/Subsequences/Change.mo
new file mode 100644
index 00000000000..b9af35363ec
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/SetPoints/Subsequences/Change.mo
@@ -0,0 +1,474 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.SetPoints.Subsequences;
+block Change "Calculates the chiller stage signal"
+
+ parameter Integer nSta = 3
+ "Number of chiller stages, does not include zero stage";
+
+ parameter Real delayStaCha(
+ final unit="s",
+ final quantity="Time",
+ displayUnit="h")=900
+ "Hold period for each stage change";
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uPla
+ "Plant enable signal"
+ annotation (Placement(transformation(extent={{-480,150},{-440,190}}),
+ iconTransformation(extent={{-140,-120},{-100,-80}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uUp
+ "Stage up status"
+ annotation (Placement(transformation(extent={{-480,-60},{-440,-20}}),
+ iconTransformation(extent={{-140,-40},{-100,0}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uDow
+ "Stage down signal"
+ annotation (Placement(transformation(extent={{-480,-160},{-440,-120}}),
+ iconTransformation(extent={{-140,-80},{-100,-40}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.IntegerInput uIni(
+ final min=0,
+ final max=nSta)
+ "Initial chiller stage (at plant enable)"
+ annotation (Placement(transformation(extent={{-480,220},{-440,260}}),
+ iconTransformation(extent={{-140,80},{-100,120}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.IntegerInput uAvaUp(
+ final min=0,
+ final max=nSta)
+ "Next available stage up"
+ annotation (Placement(transformation(extent={{-480,90},{-440,130}}),
+ iconTransformation(extent={{-140,40},{-100,80}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.IntegerInput uAvaDow(
+ final min=0,
+ final max=nSta)
+ "Next available stage down"
+ annotation (Placement(transformation(extent={{-480,10},{-440,50}}),
+ iconTransformation(extent={{-140,0},{-100,40}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanOutput yChaEdg
+ "Chiller stage change edge signal"
+ annotation (Placement(transformation(extent={{440,-102},{480,-62}}),
+ iconTransformation(extent={{100,-60},{140,-20}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanOutput yChaUpEdg
+ "Chiller stage up change edge signal"
+ annotation (Placement(transformation(extent={{440,-62},{480,-22}}),
+ iconTransformation(extent={{100,-20},{140,20}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanOutput yChaDowEdg
+ "Chiller stage down change edge signal"
+ annotation (Placement(transformation(extent={{440,-142},{480,-102}}),
+ iconTransformation(extent={{100,-100},{140,-60}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.IntegerOutput ySta(
+ final min=0,
+ final max = nSta)
+ "Chiller stage integer setpoint"
+ annotation (Placement(transformation(extent={{440,150},{480,190}}),
+ iconTransformation(extent={{100,20},{140,60}})));
+
+ CDL.Conversions.BooleanToInteger booToInt
+ "Convert boolean input to integer output"
+ annotation (Placement(transformation(extent={{-120,140},{-100,160}})));
+ CDL.Integers.Multiply mulInt "Stage zero when the plant is not enabled"
+ annotation (Placement(transformation(extent={{240,160},{260,180}})));
+protected
+ Buildings.Controls.OBC.CDL.Logical.Or or2 "Logical or"
+ annotation (Placement(transformation(extent={{-380,-90},{-360,-70}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Edge edg1
+ "Boolean signal change"
+ annotation (Placement(transformation(extent={{-80,-90},{-60,-70}})));
+
+ Buildings.Controls.OBC.CDL.Discrete.TriggeredSampler triSam "Triggered sampler"
+ annotation (Placement(transformation(extent={{110,60},{130,80}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Switch switch1 "Switch"
+ annotation (Placement(transformation(extent={{-240,60},{-220,80}})));
+
+ Buildings.Controls.OBC.CDL.Conversions.IntegerToReal intToRea "Type converter"
+ annotation (Placement(transformation(extent={{-320,20},{-300,40}})));
+
+ Buildings.Controls.OBC.CDL.Conversions.RealToInteger reaToInt "Type converter"
+ annotation (Placement(transformation(extent={{200,190},{220,210}})));
+
+ Buildings.Controls.OBC.CDL.Conversions.IntegerToReal intToRea1 "Type converter"
+ annotation (Placement(transformation(extent={{-320,100},{-300,120}})));
+
+ Buildings.Controls.OBC.CDL.Conversions.IntegerToReal intToRea2
+ "Integer to real conversion"
+ annotation (Placement(transformation(extent={{-40,230},{-20,250}})));
+
+ Buildings.Controls.OBC.CDL.Logical.TrueFalseHold holIniSta(
+ final trueHoldDuration=delayStaCha,
+ final falseHoldDuration=0)
+ "Holds stage switched to initial upon plant start"
+ annotation (Placement(transformation(extent={{-320,160},{-300,180}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Switch switch2 "Switch"
+ annotation (Placement(transformation(extent={{160,190},{180,210}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Or or1 "Logical or"
+ annotation (Placement(transformation(extent={{40,-60},{60,-40}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Edge edg2
+ "Boolean signal change"
+ annotation (Placement(transformation(extent={{-40,-180},{-20,-160}})));
+
+ Buildings.Controls.OBC.CDL.Logical.And and2
+ "Ensures the stage is changed at high load increases/decreases where a stage up or a stage down signal is uninterrupted after a single stage change as an another one is needed right away"
+ annotation (Placement(transformation(extent={{0,-140},{20,-120}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Timer tim "Timer"
+ annotation (Placement(transformation(extent={{-80,-240},{-60,-220}})));
+
+ Buildings.Controls.OBC.CDL.Logical.And and1 "Logical andEnsures the stage is changed at high load increases/decreases where a stage up or a stage down signal is uninterrupted after a single stage change as an another one is needed right away"
+ annotation (Placement(transformation(extent={{-140,-200},{-120,-180}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Pre pre "Previous value"
+ annotation (Placement(transformation(extent={{0,-240},{20,-220}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.LessThreshold lesEquThr(
+ final t=delayStaCha) "Less equal threshold"
+ annotation (Placement(transformation(extent={{-40,-240},{-20,-220}})));
+
+ Buildings.Controls.OBC.CDL.Discrete.TriggeredSampler triSam1
+ "Triggered sampler"
+ annotation (Placement(transformation(extent={{180,0},{200,20}})));
+
+ Buildings.Controls.OBC.CDL.Conversions.BooleanToReal booToRea "Type conveter"
+ annotation (Placement(transformation(extent={{60,0},{80,20}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.GreaterThreshold greThr1(
+ final t=0.5) "Greater than a threshold"
+ annotation (Placement(transformation(extent={{-20,80},{0,100}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Latch lat1
+ "Ensures initial stage is held until the first stage change signal after the initial stage phase is over"
+ annotation (Placement(transformation(extent={{100,190},{120,210}})));
+
+ Buildings.Controls.OBC.CDL.Logical.And and3 "And"
+ annotation (Placement(transformation(extent={{40,110},{60,130}})));
+
+ Buildings.Controls.OBC.CDL.Logical.TrueFalseHold staChaHol1(
+ final trueHoldDuration=delayStaCha,
+ final falseHoldDuration=0)
+ "Ensures stage change delay is kept at long stage up or down signals that cause multiple consecutive stage changes "
+ annotation (Placement(transformation(extent={{-80,-180},{-60,-160}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Edge edg
+ "Detects plant start"
+ annotation (Placement(transformation(extent={{-380,160},{-360,180}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Not not3 "Logical not"
+ annotation (Placement(transformation(extent={{-260,-70},{-240,-50}})));
+
+ Buildings.Controls.OBC.CDL.Logical.And3 and6 "Logical not"
+ annotation (Placement(transformation(extent={{-200,-90},{-180,-70}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Or or3 "Logical or"
+ annotation (Placement(transformation(extent={{160,-60},{180,-40}})));
+
+ Buildings.Controls.OBC.CDL.Logical.FallingEdge falEdg
+ "Detects plant start"
+ annotation (Placement(transformation(extent={{-80,-30},{-60,-10}})));
+
+ Buildings.Controls.OBC.CDL.Logical.TrueFalseHold staChaHol2(
+ final trueHoldDuration=0,
+ final falseHoldDuration=delayStaCha)
+ "Stage change hold"
+ annotation (Placement(transformation(extent={{80,-60},{100,-40}})));
+
+ Buildings.Controls.OBC.CDL.Logical.TrueFalseHold staChaHol3(
+ final trueHoldDuration=delayStaCha,
+ final falseHoldDuration=0)
+ "Stage change hold"
+ annotation (Placement(transformation(extent={{340,-260},{360,-240}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Not not1 "Logical not"
+ annotation (Placement(transformation(extent={{372,-260},{392,-240}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Pre pre1 "Previous value"
+ annotation (Placement(transformation(extent={{400,-260},{420,-240}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Change cha
+ "Check if there is stage change"
+ annotation (Placement(transformation(extent={{300,90},{320,110}})));
+
+ Buildings.Controls.OBC.CDL.Logical.And and4
+ "Consider staging up only if stage down signal is not on"
+ annotation (Placement(transformation(extent={{-320,60},{-300,80}})));
+ Buildings.Controls.OBC.CDL.Logical.Not not2 "Logical not"
+ annotation (Placement(transformation(extent={{-380,40},{-360,60}})));
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant conInt(final k=0)
+ "Constant zero"
+ annotation (Placement(transformation(extent={{180,-170},{200,-150}})));
+ Buildings.Controls.OBC.CDL.Integers.Equal intEqu
+ "Check if the stage setpoint is zero"
+ annotation (Placement(transformation(extent={{240,-170},{260,-150}})));
+ Buildings.Controls.OBC.CDL.Logical.And and5 "Logical and"
+ annotation (Placement(transformation(extent={{280,-140},{300,-120}})));
+ Buildings.Controls.OBC.CDL.Logical.Switch logSwi1 "Logical switch"
+ annotation (Placement(transformation(extent={{380,-132},{400,-112}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.ModelTime modTim
+ "Simulation time"
+ annotation (Placement(transformation(extent={{182,-220},{202,-200}})));
+ Buildings.Controls.OBC.CDL.Continuous.GreaterThreshold greThr(final t=1)
+ "Check if it has passed initial time"
+ annotation (Placement(transformation(extent={{240,-220},{260,-200}})));
+ Buildings.Controls.OBC.CDL.Logical.And and7 "Logical and"
+ annotation (Placement(transformation(extent={{280,-100},{300,-80}})));
+ Buildings.Controls.OBC.CDL.Logical.And and8 "Logical and"
+ annotation (Placement(transformation(extent={{280,-60},{300,-40}})));
+ Buildings.Controls.OBC.CDL.Logical.Switch logSwi2 "Logical switch"
+ annotation (Placement(transformation(extent={{380,-92},{400,-72}})));
+ Buildings.Controls.OBC.CDL.Logical.Switch logSwi3 "Logical switch"
+ annotation (Placement(transformation(extent={{380,-52},{400,-32}})));
+equation
+ connect(switch1.y,triSam. u)
+ annotation (Line(points={{-218,70},{108,70}}, color={0,0,127}));
+ connect(intToRea1.y,switch1. u1) annotation (Line(points={{-298,110},{-260,110},
+ {-260,78},{-242,78}}, color={0,0,127}));
+ connect(intToRea.y,switch1. u3) annotation (Line(points={{-298,30},{-260,30},{
+ -260,62},{-242,62}}, color={0,0,127}));
+ connect(edg.y,holIniSta. u)
+ annotation (Line(points={{-358,170},{-322,170}}, color={255,0,255}));
+ connect(triSam.y,switch2. u3) annotation (Line(points={{132,70},{140,70},{140,
+ 192},{158,192}}, color={0,0,127}));
+ connect(uIni,intToRea2. u) annotation (Line(points={{-460,240},{-42,240}},
+ color={255,127,0}));
+ connect(intToRea2.y,switch2. u1) annotation (Line(points={{-18,240},{140,240},
+ {140,208},{158,208}}, color={0,0,127}));
+ connect(and2.y,or1. u2) annotation (Line(points={{22,-130},{30,-130},{30,-58},
+ {38,-58}}, color={255,0,255}));
+ connect(tim.y,lesEquThr. u) annotation (Line(points={{-58,-230},{-42,-230}},
+ color={0,0,127}));
+ connect(lesEquThr.y,pre. u) annotation (Line(points={{-18,-230},{-2,-230}},
+ color={255,0,255}));
+ connect(pre.y,and1. u2) annotation (Line(points={{22,-230},{40,-230},{40,-260},
+ {-160,-260},{-160,-198},{-142,-198}}, color={255,0,255}));
+ connect(and1.y,tim. u) annotation (Line(points={{-118,-190},{-100,-190},{-100,
+ -230},{-82,-230}}, color={255,0,255}));
+ connect(triSam1.u,booToRea. y)
+ annotation (Line(points={{178,10},{82,10}}, color={0,0,127}));
+ connect(edg.y,lat1. u) annotation (Line(points={{-358,170},{-340,170},{-340,
+ 200},{98,200}},
+ color={255,0,255}));
+ connect(switch2.y,reaToInt. u)
+ annotation (Line(points={{182,200},{198,200}}, color={0,0,127}));
+ connect(and3.y,lat1. clr) annotation (Line(points={{62,120},{80,120},{80,194},
+ {98,194}}, color={255,0,255}));
+ connect(and1.y,staChaHol1. u) annotation (Line(points={{-118,-190},{-100,-190},
+ {-100,-170},{-82,-170}}, color={255,0,255}));
+ connect(staChaHol1.y,edg2. u)
+ annotation (Line(points={{-58,-170},{-42,-170}}, color={255,0,255}));
+ connect(uUp, or2.u1) annotation (Line(points={{-460,-40},{-410,-40},{-410,-80},
+ {-382,-80}}, color={255,0,255}));
+ connect(uDow, or2.u2) annotation (Line(points={{-460,-140},{-400,-140},{-400,-88},
+ {-382,-88}}, color={255,0,255}));
+ connect(uAvaUp, intToRea1.u)
+ annotation (Line(points={{-460,110},{-322,110}}, color={255,127,0}));
+ connect(uAvaDow, intToRea.u)
+ annotation (Line(points={{-460,30},{-322,30}}, color={255,127,0}));
+ connect(holIniSta.y, not3.u) annotation (Line(points={{-298,170},{-280,170},{
+ -280,-60},{-262,-60}},
+ color={255,0,255}));
+ connect(not3.y, and6.u1) annotation (Line(points={{-238,-60},{-220,-60},{-220,
+ -72},{-202,-72}}, color={255,0,255}));
+ connect(or2.y, and6.u2) annotation (Line(points={{-358,-80},{-202,-80}},
+ color={255,0,255}));
+ connect(and6.y, and1.u1) annotation (Line(points={{-178,-80},{-160,-80},{-160,
+ -190},{-142,-190}}, color={255,0,255}));
+ connect(and6.y, edg1.u)
+ annotation (Line(points={{-178,-80},{-82,-80}},color={255,0,255}));
+ connect(uPla, booToRea.u) annotation (Line(points={{-460,170},{-420,170},{
+ -420,10},{58,10}}, color={255,0,255}));
+ connect(uPla, falEdg.u) annotation (Line(points={{-460,170},{-420,170},{-420,
+ -20},{-82,-20}}, color={255,0,255}));
+ connect(falEdg.y, or3.u1) annotation (Line(points={{-58,-20},{140,-20},{140,-50},
+ {158,-50}}, color={255,0,255}));
+ connect(uPla, edg.u)
+ annotation (Line(points={{-460,170},{-382,170}}, color={255,0,255}));
+ connect(and3.u1, and6.y) annotation (Line(points={{38,120},{-160,120},{-160,-80},
+ {-178,-80}}, color={255,0,255}));
+ connect(lat1.y, switch2.u2) annotation (Line(points={{122,200},{158,200}},
+ color={255,0,255}));
+ connect(or1.y, staChaHol2.u) annotation (Line(points={{62,-50},{78,-50}},
+ color={255,0,255}));
+ connect(staChaHol2.y, triSam.trigger) annotation (Line(points={{102,-50},{120,
+ -50},{120,58}}, color={255,0,255}));
+ connect(edg1.y, or1.u1) annotation (Line(points={{-58,-80},{0,-80},{0,-50},{38,
+ -50}}, color={255,0,255}));
+ connect(edg1.y, or3.u2) annotation (Line(points={{-58,-80},{140,-80},{140,-58},
+ {158,-58}}, color={255,0,255}));
+ connect(staChaHol3.y, not1.u)
+ annotation (Line(points={{362,-250},{370,-250}}, color={255,0,255}));
+ connect(not1.y, pre1.u)
+ annotation (Line(points={{394,-250},{398,-250}}, color={255,0,255}));
+ connect(pre1.y, and6.u3) annotation (Line(points={{422,-250},{430,-250},{430,-280},
+ {-280,-280},{-280,-88},{-202,-88}},
+ color={255,0,255}));
+ connect(uUp, and4.u1) annotation (Line(points={{-460,-40},{-410,-40},{-410,70},
+ {-322,70}}, color={255,0,255}));
+ connect(uDow, not2.u) annotation (Line(points={{-460,-140},{-400,-140},{-400,50},
+ {-382,50}}, color={255,0,255}));
+ connect(not2.y, and4.u2) annotation (Line(points={{-358,50},{-340,50},{-340,62},
+ {-322,62}}, color={255,0,255}));
+ connect(and4.y, switch1.u2) annotation (Line(points={{-298,70},{-242,70}},
+ color={255,0,255}));
+ connect(conInt.y,intEqu. u1) annotation (Line(points={{202,-160},{238,-160}},
+ color={255,127,0}));
+ connect(intEqu.y,and5. u2) annotation (Line(points={{262,-160},{270,-160},{
+ 270,-138},{278,-138}},
+ color={255,0,255}));
+ connect(and5.y,logSwi1. u3) annotation (Line(points={{302,-130},{378,-130}},
+ color={255,0,255}));
+ connect(modTim.y,greThr. u)
+ annotation (Line(points={{204,-210},{238,-210}}, color={0,0,127}));
+ connect(greThr.y,logSwi1. u2) annotation (Line(points={{262,-210},{340,-210},
+ {340,-122},{378,-122}},
+ color={255,0,255}));
+ connect(edg2.y, and2.u2) annotation (Line(points={{-18,-170},{-10,-170},{-10,-138},
+ {-2,-138}}, color={255,0,255}));
+ connect(and6.y, and2.u1) annotation (Line(points={{-178,-80},{-160,-80},{-160,
+ -130},{-2,-130}}, color={255,0,255}));
+ connect(and7.y, logSwi2.u3) annotation (Line(points={{302,-90},{378,-90}},
+ color={255,0,255}));
+ connect(and8.y, logSwi3.u3) annotation (Line(points={{302,-50},{378,-50}},
+ color={255,0,255}));
+ connect(intEqu.y, and7.u2) annotation (Line(points={{262,-160},{270,-160},{
+ 270,-98},{278,-98}},
+ color={255,0,255}));
+ connect(intEqu.y, and8.u2) annotation (Line(points={{262,-160},{270,-160},{
+ 270,-58},{278,-58}},
+ color={255,0,255}));
+ connect(or3.y, triSam1.trigger) annotation (Line(points={{182,-50},{190,-50},{
+ 190,-2}}, color={255,0,255}));
+ connect(triSam1.y, greThr1.u) annotation (Line(points={{202,10},{210,10},{210,
+ 40},{-40,40},{-40,90},{-22,90}}, color={0,0,127}));
+ connect(greThr1.y, and3.u2) annotation (Line(points={{2,90},{20,90},{20,112},{
+ 38,112}}, color={255,0,255}));
+ connect(cha.down, and5.u1) annotation (Line(points={{322,94},{350,94},{350,20},
+ {240,20},{240,-130},{278,-130}}, color={255,0,255}));
+ connect(cha.y, and7.u1) annotation (Line(points={{322,100},{360,100},{360,10},
+ {250,10},{250,-90},{278,-90}}, color={255,0,255}));
+ connect(cha.up, and8.u1) annotation (Line(points={{322,106},{370,106},{370,0},
+ {260,0},{260,-50},{278,-50}}, color={255,0,255}));
+ connect(cha.up, logSwi3.u1) annotation (Line(points={{322,106},{370,106},{370,
+ -34},{378,-34}}, color={255,0,255}));
+ connect(cha.y, logSwi2.u1) annotation (Line(points={{322,100},{360,100},{360,
+ -74},{378,-74}},
+ color={255,0,255}));
+ connect(cha.down, logSwi1.u1) annotation (Line(points={{322,94},{350,94},{350,
+ -114},{378,-114}}, color={255,0,255}));
+ connect(greThr.y, logSwi2.u2) annotation (Line(points={{262,-210},{340,-210},
+ {340,-82},{378,-82}}, color={255,0,255}));
+ connect(greThr.y, logSwi3.u2) annotation (Line(points={{262,-210},{340,-210},
+ {340,-42},{378,-42}}, color={255,0,255}));
+ connect(logSwi1.y, yChaDowEdg)
+ annotation (Line(points={{402,-122},{460,-122}}, color={255,0,255}));
+ connect(logSwi2.y, yChaEdg)
+ annotation (Line(points={{402,-82},{460,-82}}, color={255,0,255}));
+ connect(logSwi3.y, yChaUpEdg)
+ annotation (Line(points={{402,-42},{460,-42}}, color={255,0,255}));
+ connect(logSwi2.y, staChaHol3.u) annotation (Line(points={{402,-82},{420,-82},
+ {420,-100},{320,-100},{320,-250},{338,-250}}, color={255,0,255}));
+ connect(uPla, booToInt.u) annotation (Line(points={{-460,170},{-420,170},{
+ -420,150},{-122,150}}, color={255,0,255}));
+ connect(booToInt.y, mulInt.u2) annotation (Line(points={{-98,150},{200,150},{
+ 200,164},{238,164}}, color={255,127,0}));
+ connect(reaToInt.y, mulInt.u1) annotation (Line(points={{222,200},{230,200},{
+ 230,176},{238,176}}, color={255,127,0}));
+ connect(mulInt.y, ySta)
+ annotation (Line(points={{262,170},{460,170}}, color={255,127,0}));
+ connect(mulInt.y, cha.u) annotation (Line(points={{262,170},{280,170},{280,
+ 100},{298,100}}, color={255,127,0}));
+ connect(mulInt.y, intEqu.u2) annotation (Line(points={{262,170},{280,170},{
+ 280,100},{220,100},{220,-168},{238,-168}}, color={255,127,0}));
+ annotation (defaultComponentName = "cha",
+ Icon(graphics={
+ Rectangle(
+ extent={{-100,-100},{100,100}},
+ lineColor={0,0,127},
+ fillColor={255,255,255},
+ fillPattern=FillPattern.Solid),
+ Text(
+ extent={{-112,150},{108,112}},
+ textColor={0,0,255},
+ textString="%name")}), Diagram(
+ coordinateSystem(preserveAspectRatio=false,
+ extent={{-440,-300},{440,300}})),
+Documentation(info="
+
+This subsequence is not directly specified in 1711 as it provides a side
+calculation pertaining to generalization of the staging sequences for any number
+of chillers and stages provided by the user.
+
+
+This subsequence is used to generate the chiller stage setpoint
+ySta and a boolean vector of
+chiller status setpoint indices y
+for the ySta stage.
+
+
+The inputs to the subsequece are:
+
+
+
+If stage down and stage up happen at the same time for any faulty reason the staging down is performed.
+
+
+If stage down or stage up signal is held for a time longer than delayStaCha
+multiple consecutive stage change signals are issued.
+
+
+At plant enable the intial stage uIni
is held for at least delayStaCha
+and until any stage up or down signal is generated.
+
+
+Per 1711 March 2020 Draft 5.2.4.15.1. Each stage shall have a minimum runtime
+of delayStaCha.
+
+",
+revisions="
+
+-
+April 14, 2020, by Milica Grahovac:
+First implementation.
+
+
+"));
+end Change;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/SetPoints/Subsequences/ChillerIndices.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/SetPoints/Subsequences/ChillerIndices.mo
new file mode 100644
index 00000000000..257e17b7618
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/SetPoints/Subsequences/ChillerIndices.mo
@@ -0,0 +1,136 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.SetPoints.Subsequences;
+block ChillerIndices "Returns chiller indices for the current stage"
+
+ parameter Integer nSta = 3
+ "Number of chiller stages";
+
+ parameter Integer nChi = 2
+ "Number of chillers";
+
+ parameter Integer staMat[nSta, nChi] = {{1,0},{0,1},{1,1}}
+ "Staging matrix with stages in rows and chillers in columns";
+
+ Buildings.Controls.OBC.CDL.Interfaces.IntegerInput u(
+ final min=0,
+ final max=nSta,
+ final start=0) "Current chiller stage"
+ annotation (Placement(transformation(extent={{-240,0},{-200,40}}),
+ iconTransformation(extent={{-140,-20},{-100,20}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanOutput yChi[nChi]
+ "Chiller status setpoint vector for the current stage"
+ annotation (Placement(transformation(extent={{200,-20},{240,20}}),
+ iconTransformation(extent={{100,-20},{140,20}})));
+
+protected
+ final parameter Integer staInd[nSta] = {i for i in 1:nSta}
+ "Stage index vector";
+
+ final parameter Integer staIndMat[nSta, nChi] = {j for i in 1:nChi, j in 1:nSta}
+ "Matrix of staging matrix dimensions with stage indices in each column";
+
+ final parameter Integer lowDia[nSta, nSta] = {if i<=j then 1 else 0 for i in 1:nSta, j in 1:nSta}
+ "Lower diagonal unit matrix";
+
+ Buildings.Controls.OBC.CDL.Routing.IntegerScalarReplicator intRep(
+ final nout=nSta) "Replicates signal to a length equal the stage count"
+ annotation (Placement(transformation(extent={{-180,10},{-160,30}})));
+
+ Buildings.Controls.OBC.CDL.Routing.IntegerScalarReplicator intRep1[nSta](
+ final nout=fill(nChi, nSta)) "Replicates signal to dimensions of the staging matrix"
+ annotation (Placement(transformation(extent={{-140,10},{-120,30}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant staIndMatr[nSta,nChi](
+ final k=staIndMat) "Matrix with stage index in each column"
+ annotation (Placement(transformation(extent={{-140,-40},{-120,-20}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Equal intEqu1[nSta,nChi]
+ "Outputs a zero matrix populated with ones in the current stage index row"
+ annotation (Placement(transformation(extent={{-80,10},{-60,30}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant chiStaMatr[nSta,nChi](
+ final k=staMat) "Staging matrix"
+ annotation (Placement(transformation(extent={{-60,-40},{-40,-20}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.MatrixMax matMax(
+ final nRow=nSta,
+ final nCol=nChi,
+ final rowMax=false) "Column-wise matrix maximum"
+ annotation (Placement(transformation(extent={{100,-10},{120,10}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.GreaterThreshold chiInSta[nChi](t=fill(0.5, nChi))
+ "Identifies chillers designated to operate in a given stage"
+ annotation (Placement(transformation(extent={{140,-10},{160,10}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Multiply proInt[nSta,nChi]
+ "Outputs a zero matrix populated with ones for any available chiller in the current stage"
+ annotation (Placement(transformation(extent={{20,-10},{40,10}})));
+
+ Buildings.Controls.OBC.CDL.Conversions.BooleanToInteger booToInt[nSta,nChi](
+ final integerTrue=fill(1, nSta, nChi),
+ final integerFalse=fill(0, nSta, nChi))
+ "Type converter"
+ annotation (Placement(transformation(extent={{-40,10},{-20,30}})));
+
+ Buildings.Controls.OBC.CDL.Conversions.IntegerToReal intToRea[nSta,nChi]
+ "Type converter"
+ annotation (Placement(transformation(extent={{60,-10},{80,10}})));
+
+equation
+ connect(intRep.y, intRep1.u)
+ annotation (Line(points={{-158,20},{-142,20}}, color={255,127,0}));
+ connect(intRep1.y, intEqu1.u1)
+ annotation (Line(points={{-118,20},{-82,20}}, color={255,127,0}));
+ connect(matMax.y, chiInSta.u)
+ annotation (Line(points={{122,0},{138,0}}, color={0,0,127}));
+ connect(staIndMatr.y, intEqu1.u2) annotation (Line(points={{-118,-30},{-100,-30},
+ {-100,12},{-82,12}}, color={255,127,0}));
+ connect(chiInSta.y, yChi)
+ annotation (Line(points={{162,0},{220,0}},
+ color={255,0,255}));
+ connect(proInt.y, intToRea.u)
+ annotation (Line(points={{42,0},{58,0}}, color={255,127,0}));
+ connect(intToRea.y, matMax.u)
+ annotation (Line(points={{82,0},{98,0}}, color={0,0,127}));
+ connect(booToInt.y, proInt.u1) annotation (Line(points={{-18,20},{0,20},{0,6},
+ {18,6}}, color={255,127,0}));
+ connect(intEqu1.y, booToInt.u)
+ annotation (Line(points={{-58,20},{-42,20}}, color={255,0,255}));
+ connect(chiStaMatr.y, proInt.u2) annotation (Line(points={{-38,-30},{0,-30},{0,
+ -6},{18,-6}}, color={255,127,0}));
+ connect(u, intRep.u) annotation (Line(points={{-220,20},{-182,20}},
+ color={255,127,0}));
+ annotation (defaultComponentName = "chiInd",
+ Icon(graphics={
+ Rectangle(
+ extent={{-100,-100},{100,100}},
+ lineColor={0,0,127},
+ fillColor={255,255,255},
+ fillPattern=FillPattern.Solid),
+ Text(
+ extent={{-120,146},{100,108}},
+ textColor={0,0,255},
+ textString="%name")}),
+ Diagram(coordinateSystem(preserveAspectRatio=false,
+ extent={{-200,-60},{200,60}})),
+Documentation(info="
+
+This subsequence is not directly specified in 1711 as it provides
+a side calculation pertaining to generalization of the staging
+sequences for any number of chillers and stages provided by the
+user.
+
+
+The subsequence outputs a vector of chiller indices yChi
+for a stage index input u
given a staging matrix staMat
.
+
+",
+revisions="
+
+-
+April 15, 2020, by Milica Grahovac:
+First implementation.
+
+
+"));
+end ChillerIndices;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/SetPoints/Subsequences/Configurator.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/SetPoints/Subsequences/Configurator.mo
new file mode 100644
index 00000000000..c45a0ec4edd
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/SetPoints/Subsequences/Configurator.mo
@@ -0,0 +1,310 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.SetPoints.Subsequences;
+block Configurator "Configures chiller staging"
+
+ parameter Integer nSta = 3
+ "Number of chiller stages, does not include zero stage";
+
+ parameter Integer nChi = 2
+ "Number of chillers";
+
+ parameter Real chiDesCap[nChi](
+ final unit=fill("W",nChi),
+ final quantity=fill("HeatFlowRate",nChi),
+ displayUnit=fill("W",nChi))
+ "Design chiller capacities vector"
+ annotation (Evaluate=true);
+
+ parameter Real chiMinCap[nChi](
+ final unit=fill("W",nChi),
+ final quantity=fill("HeatFlowRate",nChi),
+ displayUnit=fill("W",nChi))
+ "Chiller minimum cycling loads vector"
+ annotation (Evaluate=true);
+
+ parameter Integer chiTyp[nChi]={
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Types.ChillerAndStageTypes.positiveDisplacement,
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Types.ChillerAndStageTypes.constantSpeedCentrifugal}
+ "Chiller type. Recommended staging order: positive displacement, variable speed centrifugal, constant speed centrifugal";
+
+ parameter Integer staMat[nSta, nChi] = {{1,0},{0,1},{1,1}}
+ "Staging matrix with stage as row index and chiller as column index";
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uChiAva[nChi]
+ "Chiller availability status vector. Chiller may be deemend unavailable due to unavailability of a dedicated chilled or condenser water pump"
+ annotation (Placement(transformation(extent={{-260,-60},{-220,-20}}),
+ iconTransformation(extent={{-140,-20},{-100,20}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanOutput yAva[nSta]
+ "Stage availability status vector"
+ annotation (Placement(transformation(extent={{220,-100},{260,-60}}),
+ iconTransformation(extent={{100,-100},{140,-60}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.IntegerOutput yTyp[nSta](
+ final max=fill(nSta, nSta)) "Chiller stage types vector"
+ annotation (Placement(transformation(extent={{220,-140},{260,-100}}),
+ iconTransformation(extent={{100,-60},{140,-20}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealOutput yDesCap[nSta](
+ final unit=fill("W", nSta),
+ final quantity=fill("HeatFlowRate", nSta)) "Stage design capacities vector"
+ annotation (Placement(transformation(extent={{220,0},{260,40}}),
+ iconTransformation(extent={{100,60},{140,100}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealOutput yMinCap[nSta](
+ final unit=fill("W", nSta),
+ final quantity=fill("HeatFlowRate", nSta)) "Unload stage capacities vector"
+ annotation (Placement(transformation(extent={{220,-40},{260,0}}),
+ iconTransformation(extent={{100,20},{140,60}})));
+
+protected
+ final parameter Integer chiTypMat[nSta, nChi] = {chiTyp[i] for i in 1:nChi, j in 1:nSta}
+ "Chiller type array expanded to allow for element-wise multiplication with the staging matrix";
+
+ Buildings.Controls.OBC.CDL.Utilities.Assert assMes1(
+ final message="The chillers must be tagged in order of design capacity if unequally sized")
+ "Asserts whether chillers are tagged in ascending order with regards to capacity"
+ annotation (Placement(transformation(extent={{60,160},{80,180}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sort sort1(
+ final nin=nChi) "Ascending sort"
+ annotation (Placement(transformation(extent={{-140,160},{-120,180}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Subtract sub1[nChi]
+ "Subtracts signals"
+ annotation (Placement(transformation(extent={{-100,160},{-80,180}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.MultiMax multiMax(
+ final nin=nChi) "Maximum value in a vector input"
+ annotation (Placement(transformation(extent={{-60,160},{-40,180}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Abs abs "Absolute values"
+ annotation (Placement(transformation(extent={{-20,160},{0,180}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.LessThreshold lesThr1(
+ final t=0.5) "Less threshold"
+ annotation (Placement(transformation(extent={{20,160},{40,180}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant chiDesCaps[nChi](
+ final k=chiDesCap) "Design chiller capacities vector"
+ annotation (Placement(transformation(extent={{-200,100},{-180,120}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant chiMinCaps[nChi](
+ final k=chiMinCap) "Chiller unload capacities vector"
+ annotation (Placement(transformation(extent={{-200,60},{-180,80}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.MatrixGain staDesCaps(
+ final K=staMat) "Matrix gain for design capacities"
+ annotation (Placement(transformation(extent={{-140,100},{-120,120}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.MatrixGain staMinCaps(
+ final K=staMat) "Matrix gain from minimal capacities"
+ annotation (Placement(transformation(extent={{-140,60},{-120,80}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.MatrixGain sumNumChi(
+ final K=staMat)
+ "Outputs the total chiller count per stage vector"
+ annotation (Placement(transformation(extent={{-140,10},{-120,30}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.MatrixGain sumNumAvaChi(
+ final K=staMat)
+ "Outputs the available chiller count per stage vector"
+ annotation (Placement(transformation(extent={{-140,-50},{-120,-30}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant oneVec[nChi](
+ final k=fill(1, nChi)) "Mocks a case with all chillers available"
+ annotation (Placement(transformation(extent={{-200,10},{-180,30}})));
+
+ Buildings.Controls.OBC.CDL.Conversions.BooleanToReal booToRea[nChi]
+ "Type converter"
+ annotation (Placement(transformation(extent={{-200,-50},{-180,-30}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Subtract sub2[nSta]
+ "Subtracts count of available chillers from the design count, at each stage"
+ annotation (Placement(transformation(extent={{-80,-20},{-60,0}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.LessThreshold lesThr[nSta](
+ final t=fill(0.5, nSta))
+ "Checks if the count of available chillers in each stage equals the design count"
+ annotation (Placement(transformation(extent={{-40,-20},{-20,0}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant chiStaMat[nSta,nChi](
+ final k=staMat) "Staging matrix"
+ annotation (Placement(transformation(extent={{-200,-170},{-180,-150}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant staType[nSta,nChi](
+ final k=chiTypMat) "Chiller stage type matrix"
+ annotation (Placement(transformation(extent={{-200,-110},{-180,-90}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Multiply pro[nSta,nChi]
+ "Element-wise product"
+ annotation (Placement(transformation(extent={{-140,-130},{-120,-110}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.MatrixMax matMax(
+ final nRow=nSta,
+ final nCol=nChi) "Row-wise matrix maximum"
+ annotation (Placement(transformation(extent={{-100,-130},{-80,-110}})));
+
+ Buildings.Controls.OBC.CDL.Conversions.RealToInteger reaToInt[nSta]
+ "Type converter"
+ annotation (Placement(transformation(extent={{-60,-130},{-40,-110}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sort sort(
+ final nin=nSta) "Vector sort"
+ annotation (Placement(transformation(extent={{20,-180},{40,-160}})));
+
+ Buildings.Controls.OBC.CDL.Conversions.IntegerToReal intToRea1[nSta]
+ "Type converter"
+ annotation (Placement(transformation(extent={{-20,-180},{0,-160}})));
+
+ Buildings.Controls.OBC.CDL.Conversions.RealToInteger reaToInt1[nSta]
+ "Type converter"
+ annotation (Placement(transformation(extent={{60,-180},{80,-160}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Equal intEqu[nSta] "Integer equality"
+ annotation (Placement(transformation(extent={{100,-160},{120,-140}})));
+
+ Buildings.Controls.OBC.CDL.Utilities.Assert assMes(
+ final message="It could be that the chillers are not being staged in an order
+ recommended by ASHRAE RP1711 or Guideline 36.
+ Please make sure to follow the recommendation that is:
+ any positive displacement machines first,
+ any variable speed centrifugal next and any constant speed centrifugal last.")
+ "Assert block"
+ annotation (Placement(transformation(extent={{180,-160},{200,-140}})));
+
+ Buildings.Controls.OBC.CDL.Logical.MultiAnd mulAnd(
+ final nin=nSta) "Logical and with a vector input"
+ annotation (Placement(transformation(extent={{140,-160},{160,-140}})));
+
+equation
+ connect(chiDesCaps.y, staDesCaps.u) annotation (Line(points={{-178,110},{-142,
+ 110}}, color={0,0,127}));
+ connect(chiMinCaps.y, staMinCaps.u) annotation (Line(points={{-178,70},{-142,70}},
+ color={0,0,127}));
+ connect(uChiAva, booToRea.u)
+ annotation (Line(points={{-240,-40},{-202,-40}}, color={255,0,255}));
+ connect(booToRea.y, sumNumAvaChi.u)
+ annotation (Line(points={{-178,-40},{-142,-40}}, color={0,0,127}));
+ connect(sumNumChi.y, sub2.u1) annotation (Line(points={{-118,20},{-100,20},{-100,
+ -4},{-82,-4}}, color={0,0,127}));
+ connect(sumNumAvaChi.y, sub2.u2) annotation (Line(points={{-118,-40},{-100.5,-40},
+ {-100.5,-16},{-82,-16}}, color={0,0,127}));
+ connect(sub2.y,lesThr. u)
+ annotation (Line(points={{-58,-10},{-42,-10}}, color={0,0,127}));
+ connect(lesThr.y, yAva) annotation (Line(points={{-18,-10},{60,-10},{60,-80},{
+ 240,-80}}, color={255,0,255}));
+ connect(chiStaMat.y,pro. u2) annotation (Line(points={{-178,-160},{-160,-160},
+ {-160,-126},{-142,-126}}, color={0,0,127}));
+ connect(pro.y,matMax. u)
+ annotation (Line(points={{-118,-120},{-102,-120}}, color={0,0,127}));
+ connect(matMax.y,reaToInt. u)
+ annotation (Line(points={{-78,-120},{-62,-120}}, color={0,0,127}));
+ connect(reaToInt.y, yTyp) annotation (Line(points={{-38,-120},{240,-120}},
+ color={255,127,0}));
+ connect(reaToInt.y, intToRea1.u) annotation (Line(points={{-38,-120},{-28,-120},
+ {-28,-170},{-22,-170}},color={255,127,0}));
+ connect(intToRea1.y, sort.u)
+ annotation (Line(points={{2,-170},{18,-170}}, color={0,0,127}));
+ connect(sort.y, reaToInt1.u)
+ annotation (Line(points={{42,-170},{58,-170}}, color={0,0,127}));
+ connect(reaToInt.y,intEqu. u1) annotation (Line(points={{-38,-120},{90,-120},{
+ 90,-150},{98,-150}}, color={255,127,0}));
+ connect(reaToInt1.y,intEqu. u2) annotation (Line(points={{82,-170},{90,-170},{
+ 90,-158},{98,-158}}, color={255,127,0}));
+ connect(mulAnd.y, assMes.u)
+ annotation (Line(points={{162,-150},{178,-150}}, color={255,0,255}));
+ connect(intEqu.y, mulAnd.u) annotation (Line(points={{122,-150},{138,-150}},
+ color={255,0,255}));
+ connect(staType.y, pro.u1) annotation (Line(points={{-178,-100},{-160,-100},{-160,
+ -114},{-142,-114}}, color={0,0,127}));
+ connect(staDesCaps.y, yDesCap) annotation (Line(points={{-118,110},{100,110},{
+ 100,20},{240,20}}, color={0,0,127}));
+ connect(staMinCaps.y, yMinCap) annotation (Line(points={{-118,70},{80,70},{80,
+ -20},{240,-20}}, color={0,0,127}));
+ connect(oneVec.y, sumNumChi.u)
+ annotation (Line(points={{-178,20},{-142,20}}, color={0,0,127}));
+ connect(sort1.u, chiDesCaps.y) annotation (Line(points={{-142,170},{-160,
+ 170},{-160,110},{-178,110}}, color={0,0,127}));
+ connect(sort1.y, sub1.u1) annotation (Line(points={{-118,170},{-110,170},{-110,
+ 176},{-102,176}}, color={0,0,127}));
+ connect(chiDesCaps.y, sub1.u2) annotation (Line(points={{-178,110},{-160,110},
+ {-160,150},{-110,150},{-110,164},{-102,164}}, color={0,0,127}));
+ connect(sub1.y, multiMax.u)
+ annotation (Line(points={{-78,170},{-62,170}}, color={0,0,127}));
+ connect(multiMax.y, abs.u)
+ annotation (Line(points={{-38,170},{-22,170}}, color={0,0,127}));
+ connect(abs.y, lesThr1.u)
+ annotation (Line(points={{2,170},{18,170}}, color={0,0,127}));
+ connect(lesThr1.y, assMes1.u)
+ annotation (Line(points={{42,170},{58,170}}, color={255,0,255}));
+ annotation (defaultComponentName = "conf",
+ Icon(graphics={
+ Rectangle(
+ extent={{-100,-100},{100,100}},
+ lineColor={0,0,127},
+ fillColor={255,255,255},
+ fillPattern=FillPattern.Solid),
+ Text(
+ extent={{-120,146},{100,108}},
+ textColor={0,0,255},
+ textString="%name")}),
+ Diagram(coordinateSystem(preserveAspectRatio=false,
+ extent={{-220,-200},{220,200}})),
+Documentation(info="
+
+This subsequence is not directly specified in 1711 as it provides
+a side calculation pertaining to generalization of the staging
+sequences for any number of chillers and stages provided by the
+user.
+
+
+Given the staging matrix input parameter staMat
the staging configurator calculates:
+
+
+-
+Stage availability vector
yAva
from the chiller availability uChiAva
+input vector according to RP-1711 March 2020 Draft section 5.2.4.13
+
+-
+Design stage capacity vector
yDesCap
from the design chiller capacity vector
+input parameter chiDesCap
.
+The chillers need to be tagged in order of ascending chiller capacity if unequally sized. This is
+according to 3.1.1.4.1 1711 March 2020 Draft, otherwise a warning is thrown.
+
+-
+Minimum stage capacity vector
yMinCap
from the chiller minimum cycling load input
+parameter chiMinCap
according to section 3.1.1.5.1, 1711 March 2020 Draft.
+
+-
+Stage type vector
yTyp
from the chiller type vector input parameter
+uChiTyp
, as listed in section 5.2.4.14, 1711 March 2020 Draft. Chiller types are defined in
+
+Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Types.ChillerAndStageTypes.
+Stage type is, based on the chiller types in that stage and in the recommended staging order:
+
+-
+Positive displacement, for any stage with only positive displacement chiller(s)
+
+-
+Variable speed centirfugal, for any stage with any variable speed chiller(s) and no constant speed chiller(s)
+
+-
+Constant speed centirfugal, for any stage with any constant speed centrifugal chiller(s)
+
+
+This stage type is used in the
+
+Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.SetPoints.Subsequences.PartLoadRatios
+subsequence to determine the stage up and down part load ratios.
+
+
+",
+revisions="
+
+-
+June 7, 2019, by Milica Grahovac:
+First implementation.
+
+
+"));
+end Configurator;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/SetPoints/Subsequences/Down.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/SetPoints/Subsequences/Down.mo
new file mode 100644
index 00000000000..06d2c272968
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/SetPoints/Subsequences/Down.mo
@@ -0,0 +1,333 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.SetPoints.Subsequences;
+block Down "Generates a stage down signal"
+
+ parameter Boolean have_WSE = true
+ "true = plant has a WSE, false = plant does not have WSE";
+
+ parameter Boolean have_serChi = false
+ "true = series chillers plant; false = parallel chillers plant";
+
+ parameter Boolean have_locSen=false
+ "Flag of local DP sensor: true=local DP sensor hardwired to controller"
+ annotation (Dialog(enable=not have_serChi));
+
+ parameter Integer nRemSen=2
+ "Total number of remote differential pressure sensors"
+ annotation (Dialog(enable=not have_serChi));
+
+ parameter Real parLoaRatDelay(
+ final unit="s",
+ final quantity="Time",
+ displayUnit="h")=900
+ "Enable delay for operating and staging part load ratio condition";
+
+ parameter Real faiSafTruDelay(
+ final unit="s",
+ final quantity="Time",
+ displayUnit="h")=900
+ "Enable delay for failsafe condition";
+
+ parameter Real faiSafTDif(
+ final unit="K",
+ final quantity="TemperatureDifference",
+ displayUnit="degC")=1
+ "Offset between the chilled water supply temperature and its setpoint for the failsafe condition";
+
+ parameter Real TDif(
+ final unit="K",
+ final quantity="TemperatureDifference",
+ displayUnit="degC")=1
+ "Offset between the chilled water supply temperature and its setpoint"
+ annotation(Evaluate=true, Dialog(enable=have_WSE));
+
+ parameter Real TDifHys(
+ final unit="K",
+ final quantity="TemperatureDifference",
+ displayUnit="degC")=1
+ "Hysteresis deadband for temperature"
+ annotation(Evaluate=true, Dialog(enable=have_WSE));
+
+ parameter Real faiSafDpDif(
+ final unit="Pa",
+ final quantity="PressureDifference",
+ displayUnit="Pa")=2 * 6895
+ "Offset between the chilled water pump differential static pressure and its setpoint";
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uWseSta if have_WSE
+ "WSE status"
+ annotation (Placement(transformation(extent={{-220,-150},{-180,-110}}),
+ iconTransformation(extent={{-140,-130},{-100,-90}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.IntegerInput u
+ "Chiller stage"
+ annotation (Placement(transformation(extent={{-220,-180},{-180,-140}}),
+ iconTransformation(extent={{-140,-110},{-100,-70}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput uOpeDow(final unit="1")
+ "Next available stage down operating part load ratio (OPLR)"
+ annotation (Placement(
+ transformation(extent={{-220,190},{-180,230}}), iconTransformation(
+ extent={{-140,90},{-100,130}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput uStaDow(final unit="1")
+ "Next available stage down staging part load ratio (SPLR)"
+ annotation (Placement(transformation(extent={{-220,150},{-180,190}}),
+ iconTransformation(extent={{-140,70},{-100,110}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput TChiWatSupSet(
+ final unit="K",
+ final quantity="ThermodynamicTemperature")
+ "Chilled water supply temperature setpoint"
+ annotation (Placement(transformation(extent={{-220,-60},{-180,-20}}),
+ iconTransformation(extent={{-140,-32},{-100,8}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput TChiWatSup(
+ final unit="K",
+ final quantity="ThermodynamicTemperature")
+ "Chilled water supply temperature"
+ annotation (Placement(transformation(extent={{-220,110},{-180,150}}),
+ iconTransformation(extent={{-140,-52},{-100,-12}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput dpChiWatPumSet_local(
+ final unit="Pa",
+ final quantity="PressureDifference")
+ if (not have_serChi) and have_locSen
+ "Chilled water pump differential static pressure setpoint for local pressure sensor"
+ annotation (Placement(transformation(extent={{-220,80},{-180,120}}),
+ iconTransformation(extent={{-140,50},{-100,90}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput dpChiWatPum_local(
+ final unit="Pa",
+ final quantity="PressureDifference") if (not have_serChi) and have_locSen
+ "Chilled water pump differential static pressure"
+ annotation (Placement(transformation(extent={{-220,50},{-180,90}}),
+ iconTransformation(extent={{-140,30},{-100,70}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput dpChiWatPumSet_remote[nRemSen](
+ final unit=fill("Pa", nRemSen),
+ final quantity=fill("PressureDifference",nRemSen))
+ if (not have_serChi) and (not have_locSen)
+ "Chilled water differential pressure setpoint for remote sensor"
+ annotation (Placement(transformation(extent={{-220,10},{-180,50}}),
+ iconTransformation(extent={{-140,10},{-100,50}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput dpChiWatPum_remote[nRemSen](
+ final unit=fill("Pa", nRemSen),
+ final quantity=fill("PressureDifference",nRemSen))
+ if (not have_serChi) and (not have_locSen)
+ "Chilled water differential pressure from remote sensor"
+ annotation (Placement(transformation(extent={{-220,-20},{-180,20}}),
+ iconTransformation(extent={{-140,-10},{-100,30}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput TWsePre(
+ final quantity="ThermodynamicTemperature",
+ final unit="K") if have_WSE
+ "Predicted waterside economizer outlet temperaturePredicted WSE outlet temperature"
+ annotation (Placement(transformation(extent={{-220,-90},{-180,-50}}),
+ iconTransformation(extent={{-140,-72},{-100,-32}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput uTowFanSpeMax if have_WSE
+ "Maximum cooling tower fan speed"
+ annotation (Placement(transformation(extent={{-220,-120},{-180,-80}}),
+ iconTransformation(extent={{-140,-92},{-100,-52}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanOutput y
+ "Stage down signal"
+ annotation (Placement(transformation(extent={{180,-10},{200,10}}),
+ iconTransformation(extent={{100,-20},{140,20}})));
+
+protected
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.SetPoints.Subsequences.FailsafeCondition faiSafCon(
+ final have_serChi=have_serChi,
+ final have_locSen=have_locSen,
+ final nRemSen=nRemSen,
+ final faiSafTruDelay=faiSafTruDelay,
+ final TDif=TDif,
+ final dpDif=faiSafDpDif)
+ "Failsafe condition of the next lower stage"
+ annotation (Placement(transformation(extent={{-80,40},{-60,60}})));
+
+ Buildings.Controls.OBC.CDL.Logical.And and0 "And for staging down"
+ annotation (Placement(transformation(extent={{20,80},{40,100}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Switch logSwi "Logical switch"
+ annotation (Placement(transformation(extent={{100,-10},{120,10}})));
+
+ Buildings.Controls.OBC.CDL.Integers.GreaterThreshold intGreThr(
+ final t=1)
+ "Switches staging down rules"
+ annotation (Placement(transformation(extent={{-120,-170},{-100,-150}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Hysteresis hysTSup(
+ final uLow=TDif - TDifHys,
+ final uHigh=TDif) if have_WSE
+ "Checks if the predicted downstream WSE chilled water supply temperature is higher than its setpoint plus an offset"
+ annotation (Placement(transformation(extent={{-40,-70},{-20,-50}})));
+
+ Buildings.Controls.OBC.CDL.Logical.And3 and1 if have_WSE
+ "Or for staging up"
+ annotation (Placement(transformation(extent={{20,-70},{40,-50}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Not not0 if have_WSE
+ "Outputs true if signal is below maximum"
+ annotation (Placement(transformation(extent={{-80,-110},{-60,-90}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Not not1
+ "Logical not"
+ annotation (Placement(transformation(extent={{-40,40},{-20,60}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Subtract sub1 if have_WSE
+ "Temperature difference"
+ annotation (Placement(transformation(extent={{-80,-70},{-60,-50}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Hysteresis hys(
+ final uHigh=0.99,
+ final uLow=0.98) if have_WSE
+ "Checks if the signal is at its maximum"
+ annotation (Placement(transformation(extent={{-120,-110},{-100,-90}})));
+
+ Buildings.Controls.OBC.CDL.Logical.TrueDelay truDel1(
+ final delayTime=parLoaRatDelay,
+ final delayOnInit=true)
+ "Delays a true signal"
+ annotation (Placement(transformation(extent={{-40,180},{-20,200}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Hysteresis hysDow(
+ final uLow=0,
+ final uHigh=0.05)
+ "Checks if the operating PLR of the next available stage down exceeds the staging down PLR for that stage"
+ annotation (Placement(transformation(extent={{-80,180},{-60,200}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Subtract sub2
+ "Subtracts part load ratios"
+ annotation (Placement(transformation(extent={{-120,180},{-100,200}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant noWSEcoSig(
+ final k=false) if not have_WSE
+ "Staging from 1 to 0 for plants without a WSE is depends on the plant disable sequence"
+ annotation (Placement(transformation(extent={{20,-20},{40,0}})));
+
+equation
+ connect(TChiWatSupSet, faiSafCon.TChiWatSupSet) annotation (Line(points={{-200,
+ -40},{-160,-40},{-160,59},{-82,59}},color={0,0,127}));
+ connect(dpChiWatPumSet_local, faiSafCon.dpChiWatPumSet_local) annotation (
+ Line(points={{-200,100},{-130,100},{-130,51},{-82,51}}, color={0,0,127}));
+ connect(dpChiWatPum_local, faiSafCon.dpChiWatPum_local) annotation (Line(
+ points={{-200,70},{-140,70},{-140,48},{-82,48}}, color={0,0,127}));
+ connect(u, intGreThr.u)
+ annotation (Line(points={{-200,-160},{-122,-160}}, color={255,127,0}));
+ connect(sub1.y,hysTSup. u)
+ annotation (Line(points={{-58,-60},{-42,-60}}, color={0,0,127}));
+ connect(TChiWatSup, faiSafCon.TChiWatSup) annotation (Line(points={{-200,130},
+ {-120,130},{-120,56},{-82,56}}, color={0,0,127}));
+ connect(hys.y, not0.u)
+ annotation (Line(points={{-98,-100},{-82,-100}}, color={255,0,255}));
+ connect(uTowFanSpeMax, hys.u) annotation (
+ Line(points={{-200,-100},{-122,-100}},color={0,0,127}));
+ connect(uWseSta, and1.u3) annotation (Line(points={{-200,-130},{10,-130},{10,
+ -68},{18,-68}},
+ color={255,0,255}));
+ connect(hysTSup.y, and1.u1) annotation (Line(points={{-18,-60},{-10,-60},{-10,
+ -52},{18,-52}}, color={255,0,255}));
+ connect(not1.y, and0.u2) annotation (Line(points={{-18,50},{0,50},{0,82},{18,82}},
+ color={255,0,255}));
+ connect(intGreThr.y, logSwi.u2) annotation (Line(points={{-98,-160},{90,-160},
+ {90,0},{98,0}}, color={255,0,255}));
+ connect(not0.y, and1.u2) annotation (Line(points={{-58,-100},{0,-100},{0,-60},
+ {18,-60}}, color={255,0,255}));
+ connect(sub2.y, hysDow.u)
+ annotation (Line(points={{-98,190},{-82,190}}, color={0,0,127}));
+ connect(TChiWatSupSet, sub1.u1) annotation (Line(points={{-200,-40},{-160,-40},
+ {-160,-54},{-82,-54}}, color={0,0,127}));
+ connect(TWsePre, sub1.u2) annotation (Line(points={{-200,-70},{-140,-70},{-140,
+ -66},{-82,-66}}, color={0,0,127}));
+ connect(noWSEcoSig.y, logSwi.u3) annotation (Line(points={{42,-10},{70,-10},{70,
+ -8},{98,-8}}, color={255,0,255}));
+ connect(hysDow.y, truDel1.u)
+ annotation (Line(points={{-58,190},{-42,190}}, color={255,0,255}));
+ connect(truDel1.y, and0.u1) annotation (Line(points={{-18,190},{0,190},{0,90},
+ {18,90}}, color={255,0,255}));
+ connect(and0.y, logSwi.u1) annotation (Line(points={{42,90},{70,90},{70,8},{98,
+ 8}}, color={255,0,255}));
+ connect(logSwi.y, y)
+ annotation (Line(points={{122,0},{190,0}}, color={255,0,255}));
+ connect(and1.y, logSwi.u3) annotation (Line(points={{42,-60},{80,-60},{80,-8},
+ {98,-8}}, color={255,0,255}));
+ connect(faiSafCon.y, not1.u)
+ annotation (Line(points={{-58,50},{-42,50}}, color={255,0,255}));
+ connect(dpChiWatPumSet_remote, faiSafCon.dpChiWatPumSet_remote) annotation (
+ Line(points={{-200,30},{-130,30},{-130,44},{-82,44}}, color={0,0,127}));
+ connect(dpChiWatPum_remote, faiSafCon.dpChiWatPum_remote) annotation (Line(
+ points={{-200,0},{-120,0},{-120,41},{-82,41}}, color={0,0,127}));
+ connect(uOpeDow, sub2.u2) annotation (Line(points={{-200,210},{-160,210},{-160,
+ 184},{-122,184}}, color={0,0,127}));
+ connect(uStaDow, sub2.u1) annotation (Line(points={{-200,170},{-140,170},{-140,
+ 196},{-122,196}}, color={0,0,127}));
+ annotation (defaultComponentName = "staDow",
+ Icon(graphics={
+ Rectangle(
+ extent={{-100,-100},{100,100}},
+ lineColor={0,0,127},
+ fillColor={255,255,255},
+ fillPattern=FillPattern.Solid),
+ Text(
+ extent={{-100,140},{100,100}},
+ textColor={0,0,255},
+ textString="%name"),
+ Rectangle(extent={{-80,-10},{-20,-22}}, lineColor={0,0,127}),
+ Rectangle(extent={{-80,-28},{-20,-40}}, lineColor={0,0,127}),
+ Rectangle(extent={{-76,-22},{-72,-28}}, lineColor={0,0,127}),
+ Rectangle(extent={{-28,-22},{-24,-28}}, lineColor={0,0,127}),
+ Rectangle(extent={{20,-10},{80,-22}}, lineColor={0,0,127}),
+ Rectangle(extent={{20,-28},{80,-40}}, lineColor={0,0,127}),
+ Rectangle(extent={{24,-22},{28,-28}}, lineColor={0,0,127}),
+ Rectangle(extent={{72,-22},{76,-28}}, lineColor={0,0,127}),
+ Rectangle(extent={{-80,30},{-20,18}}, lineColor={0,0,127}),
+ Rectangle(extent={{-80,12},{-20,0}}, lineColor={0,0,127}),
+ Rectangle(extent={{-76,18},{-72,12}}, lineColor={0,0,127}),
+ Rectangle(extent={{-28,18},{-24,12}}, lineColor={0,0,127})}),
+ Diagram(
+ coordinateSystem(preserveAspectRatio=false,
+ extent={{-180,-200},{180,240}})),
+Documentation(info="
+
+Outputs a boolean stage down signal y
when:
+
+
+-
+Operating
uOpeDow
part load ratio of the next available stage down is below
+its staging uStaDow
part load ratio for at least parLoaRatDelay
, and
+
+-
+Failsafe condition is not
true
.
+
+
+
+If the plant has a WSE, staging from the lowest available chiller stage to
+WSE stage occurs when:
+
+-
+WSE is enabled, and
+
+-
+The predicted WSE return temperature
TWsePre
is sufficently under the
+chilled water supply temperature setpoint TChiWatSupSet
for defined periods of time, and
+
+-
+Maximum cooling tower fan speed
uTowFanSpeMax
is below 100%
+
+
+
+The implementation is according to ASHRAE RP1711 March 2020 draft, section 5.2.4.15.
+and can be used for both primary-only plants with and without a WSE.
+
+",
+revisions="
+
+-
+January 02, 2020, by Milica Grahovac:
+First implementation.
+
+
+"));
+end Down;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/SetPoints/Subsequences/EfficiencyCondition.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/SetPoints/Subsequences/EfficiencyCondition.mo
new file mode 100644
index 00000000000..fa0670cea61
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/SetPoints/Subsequences/EfficiencyCondition.mo
@@ -0,0 +1,84 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.SetPoints.Subsequences;
+block EfficiencyCondition
+ "Efficiency condition used in staging up and down"
+
+ parameter Real effConTruDelay(
+ final unit="s",
+ final quantity="Time",
+ displayUnit="h")=900
+ "Enable delay";
+
+ parameter Real sigDif = 0.05
+ "Signal hysteresis deadband";
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput uOpe(
+ final unit="1")
+ "Operative part load ratio of the current stage"
+ annotation (Placement(transformation(extent={{-140,0},{-100,40}}),
+ iconTransformation(extent={{-140,30},{-100,70}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput uStaUp(
+ final unit="1")
+ "Staging part load ratio of the next stage up"
+ annotation (Placement(transformation(extent={{-140,-40},{-100,0}}),
+ iconTransformation(extent={{-140,-70},{-100,-30}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanOutput y
+ "Efficiency condition for chiller staging"
+ annotation (Placement(transformation(extent={{80,-20},{120,20}}),
+ iconTransformation(extent={{100,-20},{140,20}})));
+
+protected
+ Buildings.Controls.OBC.CDL.Logical.TrueDelay truDel(
+ final delayTime=effConTruDelay,
+ final delayOnInit=true)
+ "Delays a true signal"
+ annotation (Placement(transformation(extent={{20,-10},{40,10}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Hysteresis hysOpe(
+ final uLow=0,
+ final uHigh=sigDif)
+ "Checks if the current stage operating part load ratio exceeds the stage up part load ratio"
+ annotation (Placement(transformation(extent={{-20,-10},{0,10}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Subtract sub
+ "Subtracts part load ratios"
+ annotation (Placement(transformation(extent={{-60,-10},{-40,10}})));
+
+equation
+ connect(truDel.y, y)
+ annotation (Line(points={{42,0},{100,0}},color={255,0,255}));
+ connect(hysOpe.y, truDel.u)
+ annotation (Line(points={{2,0},{18,0}}, color={255,0,255}));
+ connect(sub.y, hysOpe.u)
+ annotation (Line(points={{-38,0},{-22,0}}, color={0,0,127}));
+ connect(uOpe, sub.u1) annotation (Line(points={{-120,20},{-80,20},{-80,6},{-62,
+ 6}}, color={0,0,127}));
+ connect(uStaUp, sub.u2) annotation (Line(points={{-120,-20},{-80,-20},{-80,-6},
+ {-62,-6}}, color={0,0,127}));
+
+annotation (defaultComponentName = "effCon",
+ Icon(graphics={
+ Rectangle(
+ extent={{-100,-100},{100,100}},
+ lineColor={0,0,127},
+ fillColor={255,255,255},
+ fillPattern=FillPattern.Solid),
+ Text(
+ extent={{-120,146},{100,108}},
+ textColor={0,0,255},
+ textString="%name")}),
+ Diagram(coordinateSystem(preserveAspectRatio=false,
+ extent={{-100,-60},{80,60}})),
+Documentation(info="
+Efficiency condition used in staging up and down for plants primary-only and primary-secondary plants, both with and without a water side economizer. implemented according to the specification provided in 5.2.4.15., 1711 March 2020 Draft.
+",
+revisions="
+
+-
+April 5, 2020, by Milica Grahovac:
+First implementation.
+
+
+"));
+end EfficiencyCondition;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/SetPoints/Subsequences/FailsafeCondition.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/SetPoints/Subsequences/FailsafeCondition.mo
new file mode 100644
index 00000000000..0c42d577d61
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/SetPoints/Subsequences/FailsafeCondition.mo
@@ -0,0 +1,224 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.SetPoints.Subsequences;
+block FailsafeCondition
+ "Failsafe condition used in staging up and down"
+
+ parameter Boolean have_serChi = false
+ "true = series chillers plant; false = parallel chillers plant";
+
+ parameter Boolean have_locSen = false
+ "Flag of local DP sensor: true=local DP sensor hardwired to controller"
+ annotation (Dialog(enable=not have_serChi));
+
+ parameter Integer nRemSen=2
+ "Total number of remote differential pressure sensors"
+ annotation (Dialog(enable=not have_serChi));
+
+ parameter Real faiSafTruDelay(
+ final unit="s",
+ final quantity="Time",
+ displayUnit="h")=900
+ "Enable delay";
+
+ parameter Real TDif(
+ final unit="K",
+ final quantity="TemperatureDifference",
+ displayUnit="degC")=1
+ "Offset between the chilled water supply temperature and its setpoint";
+
+ parameter Real TDifHys(
+ final unit="K",
+ final quantity="TemperatureDifference",
+ displayUnit="degC")=1
+ "Temperature hysteresis deadband";
+
+ parameter Real dpDif(
+ final unit="Pa",
+ final quantity="PressureDifference",
+ displayUnit="Pa")=2 * 6895
+ "Offset between the chilled water differential pressure and its setpoint";
+
+ parameter Real dpDifHys(
+ final unit="Pa",
+ final quantity="PressureDifference",
+ displayUnit="Pa")=0.5 * 6895
+ "Pressure difference hysteresis deadband";
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput TChiWatSupSet(
+ final unit="K",
+ final quantity="ThermodynamicTemperature")
+ "Chilled water supply temperature setpoint"
+ annotation (Placement(transformation(extent={{-180,70},{-140,110}}),
+ iconTransformation(extent={{-140,70},{-100,110}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput TChiWatSup(
+ final unit="K",
+ final quantity="ThermodynamicTemperature")
+ "Chilled water supply temperature"
+ annotation (Placement(transformation(extent={{-180,30},{-140,70}}),
+ iconTransformation(extent={{-140,40},{-100,80}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput dpChiWatPumSet_local(
+ final unit="Pa",
+ final quantity="PressureDifference")
+ if (not have_serChi) and have_locSen
+ "Chilled water differential pressure setpoint for local pressure sensor"
+ annotation (Placement(transformation(extent={{-180,0},{-140,40}}),
+ iconTransformation(extent={{-140,-10},{-100,30}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput dpChiWatPum_local(
+ final unit="Pa",
+ final quantity="PressureDifference") if (not have_serChi) and have_locSen
+ "Chilled water differential pressure from local pressure sensor"
+ annotation (Placement(transformation(extent={{-180,-40},{-140,0}}),
+ iconTransformation(extent={{-140,-40},{-100,0}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput dpChiWatPumSet_remote[nRemSen](
+ final unit=fill("Pa", nRemSen),
+ final quantity=fill("PressureDifference", nRemSen))
+ if (not have_serChi) and (not have_locSen)
+ "Chilled water differential pressure setpoint for remote sensor"
+ annotation (Placement(transformation(extent={{-180,-80},{-140,-40}}),
+ iconTransformation(extent={{-140,-80},{-100,-40}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput dpChiWatPum_remote[nRemSen](
+ final unit=fill("Pa", nRemSen),
+ final quantity=fill("PressureDifference", nRemSen))
+ if (not have_serChi) and (not have_locSen)
+ "Chilled water differential pressure from remote sensor"
+ annotation (Placement(transformation(extent={{-180,-120},{-140,-80}}),
+ iconTransformation(extent={{-140,-110},{-100,-70}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanOutput y
+ "Failsafe condition for chiller staging"
+ annotation (Placement(transformation(extent={{140,-20},{180,20}}),
+ iconTransformation(extent={{100,-20},{140,20}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Hysteresis hysdpSup(
+ final uLow=dpDif - dpDifHys,
+ final uHigh=dpDif) if (not have_serChi) and have_locSen
+ "Checks how closely the chilled water pump differential pressure aproaches its setpoint from below"
+ annotation (Placement(transformation(extent={{-60,-10},{-40,10}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Hysteresis hysTSup(
+ final uLow=TDif - TDifHys,
+ final uHigh=TDif)
+ "Checks if the chilled water supply temperature is higher than its setpoint plus an offset"
+ annotation (Placement(transformation(extent={{-60,70},{-40,90}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Hysteresis hysdpSup1[nRemSen](
+ final uLow=fill(dpDif - dpDifHys, nRemSen),
+ final uHigh=fill(dpDif, nRemSen))
+ if (not have_serChi) and (not have_locSen)
+ "Checks how closely the chilled water pump differential pressure aproaches its setpoint from below"
+ annotation (Placement(transformation(extent={{-60,-90},{-40,-70}})));
+
+protected
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant con(
+ final k=false) if have_serChi
+ "Virtual signal for series chiller plants"
+ annotation (Placement(transformation(extent={{-20,-50},{0,-30}})));
+
+ Buildings.Controls.OBC.CDL.Logical.TrueDelay truDel(
+ final delayTime=faiSafTruDelay,
+ final delayOnInit=false)
+ "Delays a true signal"
+ annotation (Placement(transformation(extent={{-20,70},{0,90}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Or or1 "Logical or"
+ annotation (Placement(transformation(extent={{100,-10},{120,10}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Subtract sub0
+ "Adder for temperatures"
+ annotation (Placement(transformation(extent={{-100,70},{-80,90}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Subtract sub1
+ if (not have_serChi) and have_locSen
+ "Subtracts differential pressures"
+ annotation (Placement(transformation(extent={{-100,-10},{-80,10}})));
+
+ Buildings.Controls.OBC.CDL.Logical.MultiOr mulOr(
+ final nin=nRemSen)
+ if (not have_serChi) and (not have_locSen)
+ annotation (Placement(transformation(extent={{20,-90},{40,-70}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Subtract sub2[nRemSen]
+ if (not have_serChi) and (not have_locSen)
+ "Subtracts differential pressures"
+ annotation (Placement(transformation(extent={{-100,-90},{-80,-70}})));
+
+ Buildings.Controls.OBC.CDL.Logical.TrueDelay truDel1[nRemSen](
+ final delayTime=fill(faiSafTruDelay,nRemSen),
+ final delayOnInit=fill(false, nRemSen))
+ if (not have_serChi) and (not have_locSen) "Delays a true signal"
+ annotation (Placement(transformation(extent={{-20,-90},{0,-70}})));
+
+ Buildings.Controls.OBC.CDL.Logical.TrueDelay truDel2(
+ final delayTime=faiSafTruDelay,
+ final delayOnInit=false)
+ if (not have_serChi) and have_locSen "Delays a true signal"
+ annotation (Placement(transformation(extent={{-20,-10},{0,10}})));
+
+equation
+ connect(sub1.y, hysdpSup.u)
+ annotation (Line(points={{-78,0},{-62,0}}, color={0,0,127}));
+ connect(dpChiWatPumSet_local, sub1.u1) annotation (Line(points={{-160,20},{-120,
+ 20},{-120,6},{-102,6}}, color={0,0,127}));
+ connect(dpChiWatPum_local, sub1.u2) annotation (Line(points={{-160,-20},{-120,
+ -20},{-120,-6},{-102,-6}}, color={0,0,127}));
+ connect(sub0.y, hysTSup.u)
+ annotation (Line(points={{-78,80},{-62,80}}, color={0,0,127}));
+ connect(sub2.y, hysdpSup1.u)
+ annotation (Line(points={{-78,-80},{-62,-80}}, color={0,0,127}));
+ connect(dpChiWatPumSet_remote, sub2.u1) annotation (Line(points={{-160,-60},{-120,
+ -60},{-120,-74},{-102,-74}}, color={0,0,127}));
+ connect(dpChiWatPum_remote, sub2.u2) annotation (Line(points={{-160,-100},{-120,
+ -100},{-120,-86},{-102,-86}}, color={0,0,127}));
+ connect(or1.y, y)
+ annotation (Line(points={{122,0},{160,0}}, color={255,0,255}));
+ connect(hysTSup.y, truDel.u)
+ annotation (Line(points={{-38,80},{-22,80}}, color={255,0,255}));
+ connect(hysdpSup1.y, truDel1.u)
+ annotation (Line(points={{-38,-80},{-22,-80}}, color={255,0,255}));
+ connect(hysdpSup.y, truDel2.u)
+ annotation (Line(points={{-38,0},{-22,0}}, color={255,0,255}));
+ connect(truDel.y, or1.u1) annotation (Line(points={{2,80},{80,80},{80,0},{98,0}},
+ color={255,0,255}));
+ connect(truDel2.y, or1.u2) annotation (Line(points={{2,0},{60,0},{60,-8},{98,-8}},
+ color={255,0,255}));
+ connect(con.y, or1.u2) annotation (Line(points={{2,-40},{60,-40},{60,-8},{98,-8}},
+ color={255,0,255}));
+ connect(mulOr.y, or1.u2) annotation (Line(points={{42,-80},{60,-80},{60,-8},{98,
+ -8}}, color={255,0,255}));
+ connect(truDel1.y, mulOr.u)
+ annotation (Line(points={{2,-80},{18,-80}}, color={255,0,255}));
+ connect(TChiWatSupSet, sub0.u2) annotation (Line(points={{-160,90},{-130,90},{
+ -130,74},{-102,74}}, color={0,0,127}));
+ connect(TChiWatSup, sub0.u1) annotation (Line(points={{-160,50},{-120,50},{-120,
+ 86},{-102,86}}, color={0,0,127}));
+
+annotation (defaultComponentName = "faiSafCon",
+ Icon(coordinateSystem(extent={{-100,-100},{100,100}}),
+ graphics={
+ Rectangle(
+ extent={{-100,-100},{100,100}},
+ lineColor={0,0,127},
+ fillColor={255,255,255},
+ fillPattern=FillPattern.Solid),
+ Text(
+ extent={{-120,146},{100,108}},
+ textColor={0,0,255},
+ textString="%name")}),
+ Diagram(coordinateSystem(preserveAspectRatio=false,
+ extent={{-140,-120},{140,120}})),
+Documentation(info="
+Failsafe condition used in staging up and down, implemented according to the specification provided in section 5.2.4.15. 1711 March 2020 Draft. The subsequence applies to primary-only plants with and without a WSE. The sequence contains a boolean flag to differentiate between parallel and series chiller plants.
+",
+revisions="
+
+-
+January 21, 2019, by Milica Grahovac:
+First implementation.
+
+
+"));
+end FailsafeCondition;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/SetPoints/Subsequences/Initial.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/SetPoints/Subsequences/Initial.mo
new file mode 100644
index 00000000000..3ce30e39a64
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/SetPoints/Subsequences/Initial.mo
@@ -0,0 +1,214 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.SetPoints.Subsequences;
+block Initial "Outputs the initial stage"
+
+ parameter Boolean have_WSE = true
+ "true = plant has a WSE, false = plant does not have WSE";
+
+ parameter Real wseDt = 1
+ "Offset for checking waterside economizer leaving water temperature"
+ annotation (Dialog(tab="Advanced", enable=have_WSE));
+
+ parameter Real heaExcAppDes(
+ final unit="K",
+ final quantity="TemperatureDifference",
+ displayUnit="degC")=2
+ "Design heat exchanger approach"
+ annotation (Dialog(group="Waterside economizer", enable=have_WSE));
+
+ parameter Real cooTowAppDes(
+ final unit="K",
+ final quantity="TemperatureDifference",
+ displayUnit="degC")=2
+ "Design cooling tower approach"
+ annotation (Dialog(group="Waterside economizer", enable=have_WSE));
+
+ parameter Real TOutWetDes(
+ final unit="K",
+ final quantity="ThermodynamicTemperature",
+ displayUnit="degC")=288.15
+ "Design outdoor air wet bulb temperature"
+ annotation (Dialog(group="Waterside economizer", enable=have_WSE));
+
+ parameter Real VHeaExcDes_flow(
+ final unit="m3/s",
+ final quantity="VolumeFlowRate",
+ displayUnit="m3/s")=0.01
+ "Desing heat exchanger chilled water flow rate"
+ annotation (Dialog(group="Waterside economizer", enable=have_WSE));
+
+ Buildings.Controls.OBC.CDL.Interfaces.IntegerInput uUp
+ "First higher available chiller stage"
+ annotation (Placement(transformation(extent={{-280,-60},{-240,-20}}),
+ iconTransformation(extent={{-140,-20},{-100,20}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput TOutWet(
+ final unit="K",
+ final quantity="ThermodynamicTemperature") if have_WSE
+ "Outdoor air wet bulb temperature"
+ annotation (Placement(transformation(extent={{-280,50},{-240,90}}),
+ iconTransformation(extent={{-140,70},{-100,110}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput uTunPar if have_WSE
+ "Tuning parameter as at last plant disable"
+ annotation (Placement(transformation(extent={{-280,-20},{-240,20}}),
+ iconTransformation(extent={{-140,40},{-100,80}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput TChiWatSupSet(
+ final unit="K",
+ final quantity="ThermodynamicTemperature") if have_WSE
+ "Chilled water supply setpoint"
+ annotation (Placement(transformation(extent={{-280,90},{-240,130}}),
+ iconTransformation(extent={{-140,10},{-100,50}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.IntegerOutput yIni
+ "Initial chiller plant stage"
+ annotation (Placement(transformation(extent={{240,-10},{260,10}}),
+ iconTransformation(extent={{100,-10},{120,10}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uPla
+ "Plant enable signal"
+ annotation (Placement(transformation(extent={{-280,-110},{-240,-70}}),
+ iconTransformation(extent={{-140,-80},{-100,-40}})));
+
+ Buildings.Controls.OBC.CDL.Discrete.TriggeredSampler triSam
+ "Samples first available stage up at plant enable"
+ annotation (Placement(transformation(extent={{-10,-10},{10,10}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Edge edg(
+ final pre_u_start=false) "Rising edge"
+ annotation (Placement(transformation(extent={{-60,-100},{-40,-80}})));
+
+//protected
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Economizers.Subsequences.PredictedOutletTemperature
+ wseTOut(
+ final heaExcAppDes=heaExcAppDes,
+ final cooTowAppDes=cooTowAppDes,
+ final TOutWetDes=TOutWetDes,
+ final VHeaExcDes_flow=VHeaExcDes_flow) if have_WSE
+ "Waterside economizer outlet temperature predictor"
+ annotation (Placement(transformation(extent={{-160,20},{-140,40}})));
+
+ Buildings.Controls.OBC.CDL.Conversions.IntegerToReal intToRea "Type converter"
+ annotation (Placement(transformation(extent={{-60,-10},{-40,10}})));
+
+ Buildings.Controls.OBC.CDL.Conversions.RealToInteger reaToInt "Type converter"
+ annotation (Placement(transformation(extent={{160,30},{180,50}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant staZer(
+ final k=0)
+ "Zero stage"
+ annotation (Placement(transformation(extent={{0,100},{20,120}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Hysteresis hys1(
+ final uLow=0,
+ final uHigh=wseDt) if have_WSE
+ "Check if the initial predicted heat exchange leaving water temperature is greater than chilled water supply temperature setpoint less offset"
+ annotation (Placement(transformation(extent={{-60,80},{-40,100}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Subtract sub1 if have_WSE
+ "Difference between predicted heat exchanger leaving water temperature and chilled water supply temperature setpoint"
+ annotation (Placement(transformation(extent={{-100,80},{-80,100}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Switch swi "Logical switch"
+ annotation (Placement(transformation(extent={{60,80},{80,100}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant noWSE(
+ final k=false) if not have_WSE "Replacement signal for no WSE case"
+ annotation (Placement(transformation(extent={{-60,40},{-40,60}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant con3(
+ final k=VHeaExcDes_flow) if have_WSE
+ "Design heat exchanger chiller water flow rate"
+ annotation (Placement(transformation(extent={{-220,20},{-200,40}})));
+
+equation
+ connect(reaToInt.y, yIni)
+ annotation (Line(points={{182,40},{200,40},{200,0},{250,0}}, color={255,127,0}));
+ connect(sub1.y,hys1. u)
+ annotation (Line(points={{-78,90},{-62,90}}, color={0,0,127}));
+ connect(noWSE.y,swi. u2)
+ annotation (Line(points={{-38,50},{-20,50},{-20,90},{58,90}},
+ color={255,0,255}));
+ connect(hys1.y,swi. u2)
+ annotation (Line(points={{-38,90},{58,90}}, color={255,0,255}));
+ connect(wseTOut.TOutWet,TOutWet)
+ annotation (Line(points={{-162,38},{-180,38},{-180,70},{-260,70}},
+ color={0,0,127}));
+ connect(con3.y,wseTOut. VChiWat_flow)
+ annotation (Line(points={{-198,30},{-162,30}},
+ color={0,0,127}));
+ connect(wseTOut.uTunPar,uTunPar)
+ annotation (Line(points={{-162,22},{-180,22},{-180,0},{-260,0}},
+ color={0,0,127}));
+ connect(TChiWatSupSet,sub1. u1)
+ annotation (Line(points={{-260,110},{-170,110},{-170,96},{-102,96}},
+ color={0,0,127}));
+ connect(staZer.y,swi. u1)
+ annotation (Line(points={{22,110},{40,110},{40,98},{58,98}}, color={0,0,127}));
+ connect(uUp, intToRea.u) annotation (Line(points={{-260,-40},{-100,-40},{-100,
+ 0},{-62,0}}, color={255,127,0}));
+ connect(swi.y, reaToInt.u) annotation (Line(points={{82,90},{140,90},{140,40},
+ {158,40}}, color={0,0,127}));
+ connect(intToRea.y, triSam.u)
+ annotation (Line(points={{-38,0},{-12,0}}, color={0,0,127}));
+ connect(triSam.y, swi.u3)
+ annotation (Line(points={{12,0},{40,0},{40,82},{58,82}}, color={0,0,127}));
+ connect(uPla, edg.u)
+ annotation (Line(points={{-260,-90},{-62,-90}}, color={255,0,255}));
+ connect(edg.y, triSam.trigger)
+ annotation (Line(points={{-38,-90},{0,-90},{0,-12}}, color={255,0,255}));
+ connect(wseTOut.y, sub1.u2) annotation (Line(points={{-138,30},{-120,30},{
+ -120,84},{-102,84}}, color={0,0,127}));
+annotation (defaultComponentName = "iniSta",
+ Icon(graphics={
+ Rectangle(
+ extent={{-100,-100},{100,100}},
+ lineColor={0,0,127},
+ fillColor={255,255,255},
+ fillPattern=FillPattern.Solid),
+ Text(
+ extent={{-120,146},{100,108}},
+ textColor={0,0,255},
+ textString="%name"),
+ Line(
+ points={{-54,-50},{-2,-50},{-2,54},{50,54}},
+ color={244,125,35},
+ thickness=0.5),
+ Text(
+ extent={{-68,-44},{58,-114}},
+ textColor={0,0,0},
+ lineThickness=0.5,
+ textString="At Enable")}),
+ Diagram(coordinateSystem(preserveAspectRatio=false,
+ extent={{-240,-140},{240,140}})),
+ Documentation(info="
+This subsequence is not directly specified in 1711 as it provides a side calculation pertaining to generalization of the staging sequences for any number of chillers and stages provided by the user.
+Determines the initial stage upon plant startup for both plants with and without a WSE. Implemented according to section 5.2.4.15. 1711 March 2020 Draft, under 8. (primary-only) and 15. (primary-secondary) plants.
+The initial stage yIni is defined as:
+When the plant is enabled and the plant has no waterside economizer (have_WSE=false), the initial stage will be the lowest available stage uUp.
+When the plant is enabled and the plant has waterside economizer (have_WSE=true), the initial stage will be:
+
+
+The following state machine chart illustrates the initial stage selection for plants with a waterside economizer:
+
+
+
+
+",
+revisions="
+
+-
+January 19, 2021, by Milica Grahovac:
+Added state chart illustration.
+
+-
+March 12, 2020, by Milica Grahovac:
+First implementation.
+
+
+"));
+end Initial;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/SetPoints/Subsequences/PartLoadRatios.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/SetPoints/Subsequences/PartLoadRatios.mo
new file mode 100644
index 00000000000..713aa0eeb4b
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/SetPoints/Subsequences/PartLoadRatios.mo
@@ -0,0 +1,711 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.SetPoints.Subsequences;
+block PartLoadRatios
+ "Operating and staging part load ratios with chiller type reset"
+
+ parameter Boolean anyVsdCen = true
+ "Plant contains at least one variable speed centrifugal chiller";
+
+ parameter Integer nSta = 3
+ "Number of chiller stages, does not include zero stage";
+
+ parameter Real posDisMult(
+ final unit = "1",
+ final min = 0,
+ final max = 1)=0.8
+ "Positive displacement chiller type staging multiplier";
+
+ parameter Real conSpeCenMult(
+ final unit = "1",
+ final min = 0,
+ final max = 1)=0.9
+ "Constant speed centrifugal chiller type staging multiplier";
+
+ parameter Real anyOutOfScoMult(
+ final unit = "1",
+ final min = 0,
+ final max = 1)=0.9
+ "Outside of G36 recommended staging order chiller type SPLR multiplier"
+ annotation(Evaluate=true, __cdl(ValueInReference=False));
+
+ parameter Real varSpeStaMin(
+ final unit = "1",
+ final min = 0.1,
+ final max = 1)=0.45
+ "Minimum stage up or down part load ratio for variable speed centrifugal stage types"
+ annotation(Evaluate=true, Dialog(enable=anyVsdCen));
+
+ parameter Real varSpeStaMax(
+ final unit = "1",
+ final min = varSpeStaMin,
+ final max = 1)=0.9
+ "Maximum stage up or down part load ratio for variable speed centrifugal stage types"
+ annotation(Evaluate=true, Dialog(enable=anyVsdCen));
+
+ parameter Real avePer(
+ final unit="s",
+ final quantity="Time")=300
+ "Moving mean time period for staging multiplier calculation for variable speed centrifugal stage types"
+ annotation(Evaluate=true, Dialog(enable=anyVsdCen));
+
+ Buildings.Controls.OBC.CDL.Interfaces.IntegerInput u(
+ final min=0,
+ final max=nSta) "Chiller stage"
+ annotation (Placement(transformation(extent={{-420,220},{-380,260}}),
+ iconTransformation(extent={{-140,-140},{-100,-100}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.IntegerInput uUp(
+ final min=0,
+ final max=nSta) "Next available stage up"
+ annotation (
+ Placement(transformation(extent={{-420,180},{-380,220}}),
+ iconTransformation(extent={{-140,-160},{-100,-120}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.IntegerInput uDown(
+ final min=0,
+ final max=nSta) "Next available stage down"
+ annotation (
+ Placement(transformation(extent={{-420,20},{-380,60}}),
+ iconTransformation(extent={{-140,-180},{-100,-140}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.IntegerInput uTyp[nSta](
+ final min=fill(1, nSta),
+ final max=fill(3, nSta)) "Design chiller stage types"
+ annotation (Placement(
+ transformation(extent={{-420,280},{-380,320}}), iconTransformation(
+ extent={{-140,-100},{-100,-60}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput uUpCapDes(
+ final unit="W",
+ final quantity="HeatFlowRate")
+ "Design capacity of the next available stage up"
+ annotation (Placement(transformation(extent={{-420,-200},{-380,-160}}),
+ iconTransformation(extent={{-140,80},{-100,120}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput uCapReq(
+ final unit="W",
+ final quantity="HeatFlowRate")
+ "Chilled water cooling capacity requirement"
+ annotation (Placement(transformation(extent={{-420,-30},{-380,10}}),
+ iconTransformation(extent={{-140,120},{-100,160}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput uCapDes(
+ final unit="W",
+ final quantity="HeatFlowRate")
+ "Design capacity of the current stage"
+ annotation (Placement(transformation(extent={{-420,-100},{-380,-60}}),
+ iconTransformation(extent={{-140,100},{-100,140}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput uUpCapMin(
+ final unit="W",
+ final quantity="HeatFlowRate")
+ "Minimal capacity of the next available stage up"
+ annotation (Placement(transformation(extent={{-420,-300},{-380,-260}}),
+ iconTransformation(extent={{-140,10},{-100,50}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput uDowCapDes(
+ final unit="W",
+ final quantity="HeatFlowRate")
+ "Design capacity of next available stage down"
+ annotation (Placement(transformation(extent={{-420,-150},{-380,-110}}),
+ iconTransformation(extent={{-140,60},{-100,100}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput uLifMin(
+ final unit="K",
+ final quantity="TemperatureDifference") if anyVsdCen
+ "Minimum chiller lift"
+ annotation (Placement(transformation(extent={{-420,-450},{-380,-410}}),
+ iconTransformation(extent={{-140,-60},{-100,-20}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput uLifMax(
+ final unit="K",
+ final quantity="TemperatureDifference") if anyVsdCen
+ "Maximum chiller lift"
+ annotation (Placement(transformation(extent={{-420,-380},{-380,-340}}),
+ iconTransformation(extent={{-140,-40},{-100,0}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput uLif(
+ final unit="K",
+ final quantity="TemperatureDifference") if anyVsdCen
+ "Chiller lift"
+ annotation (Placement(transformation(extent={{-420,-590},{-380,-550}}),
+ iconTransformation(extent={{-140,-20},{-100,20}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput uCapMin(
+ final unit="W",
+ final quantity="HeatFlowRate")
+ "Minimal capacity of the current stage"
+ annotation (Placement(transformation(extent={{-420,-240},{-380,-200}}),
+ iconTransformation(extent={{-140,30},{-100,70}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealOutput yOpeUp(final unit="1",
+ final min=0) "Operating part load ratio of the next higher stage"
+ annotation (Placement(transformation(extent={{380,-140},{420,-100}}),
+ iconTransformation(extent={{100,40},{140,80}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealOutput yOpeDow(final unit="1",
+ final min=0) "Operating part load ratio of the next stage down"
+ annotation (Placement(transformation(extent={{380,-100},{420,-60}}),
+ iconTransformation(extent={{100,20},{140,60}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealOutput yOpeMin(final unit="1",
+ final min=0) "Minimum operating part load ratio at current stage"
+ annotation (Placement(transformation(extent={{380,-220},{420,-180}}),
+ iconTransformation(extent={{100,-90},{140,-50}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealOutput yOpe(
+ final unit="1",
+ final min=0) "Operating part load ratio of the current stage"
+ annotation (
+ Placement(transformation(extent={{380,-60},{420,-20}}),
+ iconTransformation(extent={{100,60},{140,100}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealOutput yStaDow(
+ final unit="1",
+ final min = 0)
+ "Staging down part load ratio"
+ annotation (Placement(transformation(extent={{380,-180},{420,-140}}),
+ iconTransformation(extent={{100,-50},{140,-10}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealOutput yStaUp(
+ final unit="1",
+ final min = 0)
+ "Staging up part load ratio"
+ annotation (Placement(transformation(extent={{380,-20},{420,20}}),
+ iconTransformation(extent={{100,-30},{140,10}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealOutput yOpeUpMin(
+ final unit="1",
+ final min=0)
+ "Minimum operating part load ratio of the next available stage up"
+ annotation (Placement(transformation(extent={{380,-260},{420,-220}}),
+ iconTransformation(extent={{100,-110},{140,-70}})));
+
+protected
+ final parameter Real small = Buildings.Controls.OBC.CDL.Constants.small
+ "Small number to avoid division with zero";
+
+ Buildings.Controls.OBC.CDL.Continuous.Divide opePlrSta
+ "Calculates operating part load ratio at the current stage"
+ annotation (Placement(transformation(extent={{-200,-60},{-180,-40}})));
+
+ Buildings.Controls.OBC.CDL.Routing.IntegerExtractor extCurTyp(
+ final nin=nSta) "Extract current stage type"
+ annotation (Placement(transformation(extent={{-120,290},{-100,310}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant one(
+ final k=1) "Stage 1"
+ annotation (Placement(transformation(extent={{-360,130},{-340,150}})));
+
+ Buildings.Controls.OBC.CDL.Routing.IntegerExtractor extUpTyp(
+ final nin=nSta)
+ "Extract stage type for the first higher available stage"
+ annotation (Placement(transformation(extent={{-120,200},{-100,220}})));
+
+ Buildings.Controls.OBC.CDL.Routing.IntegerExtractor extDowTyp(
+ final nin=nSta)
+ "Extract stage type for the first lower available stage"
+ annotation (Placement(transformation(extent={{-120,110},{-100,130}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Switch swi
+ "Logical switch"
+ annotation (Placement(transformation(extent={{200,140},{220,160}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant conSpeCenTyp(
+ final k=Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Types.ChillerAndStageTypes.constantSpeedCentrifugal)
+ "Stage type with any constant speed centrifugal chillers"
+ annotation (Placement(transformation(extent={{-20,130},{0,150}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant posDisTyp(
+ final k=Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Types.ChillerAndStageTypes.positiveDisplacement)
+ "Stage type with none but positive displacement chillers"
+ annotation (Placement(transformation(extent={{-20,70},{0,90}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Equal intEqu "Equality"
+ annotation (Placement(transformation(extent={{60,160},{80,180}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant posDisTypMult(
+ final k=posDisMult)
+ "Positive displacement chiller type SPLR multiplier"
+ annotation (Placement(transformation(extent={{-140,-120},{-120,-100}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant conSpeCenTypMult(
+ final k=conSpeCenMult)
+ "Constant speed centrifugal chiller type SPLR multiplier"
+ annotation (Placement(transformation(extent={{-140,-40},{-120,-20}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Switch swi1 "Logical switch"
+ annotation (Placement(transformation(extent={{160,60},{180,80}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Switch swi2 "Logical switch"
+ annotation (Placement(transformation(extent={{100,-190},{120,-170}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Switch swi3 "Logical switch"
+ annotation (Placement(transformation(extent={{60,-240},{80,-220}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Equal intEqu1 "Logical equality"
+ annotation (Placement(transformation(extent={{60,100},{80,120}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Equal intEqu2 "Logical equality"
+ annotation (Placement(transformation(extent={{20,20},{40,40}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Divide minOpePlrUp
+ "Calculates minimum OPLR of one stage up"
+ annotation (Placement(transformation(extent={{-200,-200},{-180,-180}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Divide opePlrUp
+ "Calculates operating part load ratio at the next stage up"
+ annotation (Placement(transformation(extent={{-200,-150},{-180,-130}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant const(
+ final k=0.9) if anyVsdCen "Constant"
+ annotation (Placement(transformation(extent={{-200,-360},{-180,-340}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Subtract sub2
+ if anyVsdCen "Subtract"
+ annotation (Placement(transformation(extent={{-80,-420},{-60,-400}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Divide div if anyVsdCen
+ "Division"
+ annotation (Placement(transformation(extent={{-20,-370},{0,-350}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant const1(
+ final k=0.4) if anyVsdCen "Constant"
+ annotation (Placement(transformation(extent={{-200,-480},{-180,-460}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant const2(
+ final k=1.4) if anyVsdCen "Constant"
+ annotation (Placement(transformation(extent={{-200,-560},{-180,-540}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Subtract sub1
+ if anyVsdCen "Subtract"
+ annotation (Placement(transformation(extent={{-80,-500},{-60,-480}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Multiply mult0 if anyVsdCen "Multiplier"
+ annotation (Placement(transformation(extent={{-140,-460},{-120,-440}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Multiply mult1 if anyVsdCen "Multiplier"
+ annotation (Placement(transformation(extent={{-140,-540},{-120,-520}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Multiply mult2 if anyVsdCen "Multiplier"
+ annotation (Placement(transformation(extent={{40,-440},{60,-420}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Multiply mult3 if anyVsdCen "Multiplier"
+ annotation (Placement(transformation(extent={{100,-510},{120,-490}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Add add3 if anyVsdCen "Add"
+ annotation (Placement(transformation(extent={{160,-482},{180,-462}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant const3(
+ final k=-1) if not anyVsdCen
+ "Constant"
+ annotation (Placement(transformation(extent={{100,20},{120,40}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant const4(
+ final k=-1) if not anyVsdCen
+ "Constant"
+ annotation (Placement(transformation(extent={{0,-260},{20,-240}})));
+
+ Buildings.Controls.OBC.CDL.Utilities.Assert cheStaTyp(
+ final message="Recommended staging order got violated or an unlisted chiller type got provided when staging up")
+ "Chiller type outside of recommenation when staging up"
+ annotation (Placement(transformation(extent={{300,280},{320,300}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.GreaterThreshold greThr(
+ final t=-0.5)
+ "Less than threshold"
+ annotation (Placement(transformation(extent={{260,200},{280,220}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.GreaterThreshold greThr1(
+ final t=-0.5) "Less than threshold"
+ annotation (Placement(transformation(extent={{200,-110},{220,-90}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Divide opePlrDow
+ "Calculates operating part load ratio of the next stage down"
+ annotation (Placement(transformation(extent={{-200,-90},{-180,-70}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Divide minOpePlr
+ "Calculates minimum OPLR of the current stage"
+ annotation (Placement(transformation(extent={{-200,-240},{-180,-220}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Equal intEqu3 "Integer equal"
+ annotation (Placement(transformation(extent={{60,240},{80,260}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Switch swi4 "Switch"
+ annotation (Placement(transformation(extent={{160,-170},{180,-150}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant const5(
+ final k=1)
+ "If staging down to stage 0 set staging down part load to 1"
+ annotation (Placement(transformation(extent={{100,-150},{120,-130}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Equal intEqu4 "Equality"
+ annotation (Placement(transformation(extent={{-140,0},{-120,20}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Max maxInt "Maximum"
+ annotation (Placement(transformation(extent={{-300,260},{-280,280}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Max maxIntUp "Maximum"
+ annotation (Placement(transformation(extent={{-300,170},{-280,190}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Max maxIntDown "Maximum"
+ annotation (Placement(transformation(extent={{-300,60},{-280,80}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Max max if anyVsdCen "Maximum"
+ annotation (Placement(transformation(extent={{220,-420},{240,-400}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Min min if anyVsdCen "Minimum"
+ annotation (Placement(transformation(extent={{260,-380},{280,-360}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant maxLim(
+ final k=varSpeStaMax) if anyVsdCen "Constant"
+ annotation (Placement(transformation(extent={{160,-360},{180,-340}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant minLim(
+ final k=varSpeStaMin) if anyVsdCen "Constant"
+ annotation (Placement(transformation(extent={{160,-420},{180,-400}})));
+
+ Buildings.Controls.OBC.CDL.Utilities.Assert cheStaTyp1(
+ final message="Recommended staging order got violated or an unlisted chiller type got provided when staging down")
+ "Chiller type outside of recommenation when staging down"
+ annotation (Placement(transformation(extent={{260,-20},{280,0}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant conSpeCenTypMult1(
+ final k=anyOutOfScoMult)
+ "Outside of G36 recommended staging order chiller type SPLR multiplier"
+ annotation (Placement(transformation(extent={{200,20},{220,40}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Switch swi5
+ "Logical switch"
+ annotation (Placement(transformation(extent={{320,220},{340,240}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Switch swi6
+ "Logical switch"
+ annotation (Placement(transformation(extent={{260,-110},{280,-90}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant smaNum(
+ final k=small) "Small constant"
+ annotation (Placement(transformation(extent={{-360,-54},{-340,-34}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Max max1
+ "Maximum output to avoid zero denominator in downstream"
+ annotation (Placement(transformation(extent={{-300,-60},{-280,-40}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Max max2
+ "Maximum output to avoid zero denominator in downstream"
+ annotation (Placement(transformation(extent={{-300,-110},{-280,-90}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Max max3
+ "Maximum output to avoid zero denominator in downstream"
+ annotation (Placement(transformation(extent={{-300,-170},{-280,-150}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.MovingAverage movMea(
+ final delta=avePer) if anyVsdCen
+ annotation (Placement(transformation(extent={{300,-330},{320,-310}})));
+
+ Buildings.Controls.OBC.CDL.Integers.GreaterThreshold intGreThr[3](
+ final t=fill(nSta, 3))
+ "Check if index is out of the range"
+ annotation (Placement(transformation(extent={{-240,140},{-220,160}})));
+ Buildings.Controls.OBC.CDL.Integers.Switch intSwi[3]
+ "Valid index"
+ annotation (Placement(transformation(extent={{-180,80},{-160,100}})));
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant conInt[3](
+ final k=fill(nSta, 3))
+ "Dummy index so the extractor will not have out of range index"
+ annotation (Placement(transformation(extent={{-240,230},{-220,250}})));
+ Buildings.Controls.OBC.CDL.Integers.Switch intSwi1[3]
+ "Valid value"
+ annotation (Placement(transformation(extent={{-80,140},{-60,160}})));
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant con[3](
+ final k=fill(-1, 3)) "Dummy stage"
+ annotation (Placement(transformation(extent={{-180,160},{-160,180}})));
+
+equation
+ connect(intEqu.u2, conSpeCenTyp.y) annotation (Line(points={{58,162},{10,162},
+ {10,140},{2,140}}, color={255,127,0}));
+ connect(opePlrSta.y, yOpe) annotation (Line(points={{-178,-50},{0,-50},{0,-40},
+ {400,-40}}, color={0,0,127}));
+ connect(posDisTyp.y, intEqu1.u2) annotation (Line(points={{2,80},{10,80},{10,102},
+ {58,102}}, color={255,127,0}));
+ connect(intEqu1.y, swi1.u2) annotation (Line(points={{82,110},{140,110},{140,70},
+ {158,70}},color={255,0,255}));
+ connect(swi1.y, swi.u3) annotation (Line(points={{182,70},{190,70},{190,142},{
+ 198,142}}, color={0,0,127}));
+ connect(posDisTyp.y, intEqu2.u2) annotation (Line(points={{2,80},{10,80},{10,22},
+ {18,22}}, color={255,127,0}));
+ connect(swi3.y, swi2.u3) annotation (Line(points={{82,-230},{90,-230},{90,-188},
+ {98,-188}}, color={0,0,127}));
+ connect(intEqu2.y, swi3.u2) annotation (Line(points={{42,30},{50,30},{50,-230},
+ {58,-230}}, color={255,0,255}));
+ connect(opePlrUp.y, yOpeUp) annotation (Line(points={{-178,-140},{0,-140},{0,-120},
+ {400,-120}}, color={0,0,127}));
+ connect(minOpePlrUp.y, yOpeUpMin) annotation (Line(points={{-178,-190},{-60,-190},
+ {-60,-280},{240,-280},{240,-240},{400,-240}}, color={0,0,127}));
+ connect(uLifMin, sub2.u2) annotation (Line(points={{-400,-430},{-240,-430},{-240,
+ -416},{-82,-416}}, color={0,0,127}));
+ connect(const.y, div.u1) annotation (Line(points={{-178,-350},{-40,-350},{-40,
+ -354},{-22,-354}}, color={0,0,127}));
+ connect(sub2.y, div.u2) annotation (Line(points={{-58,-410},{-40,-410},{-40,-366},
+ {-22,-366}}, color={0,0,127}));
+ connect(const1.y, mult0.u2) annotation (Line(points={{-178,-470},{-160,-470},{
+ -160,-456},{-142,-456}}, color={0,0,127}));
+ connect(uLifMax, mult0.u1) annotation (Line(points={{-400,-360},{-220,-360},{-220,
+ -444},{-142,-444}}, color={0,0,127}));
+ connect(uLifMin, mult1.u1) annotation (Line(points={{-400,-430},{-240,-430},{-240,
+ -524},{-142,-524}},
+ color={0,0,127}));
+ connect(const2.y, mult1.u2) annotation (Line(points={{-178,-550},{-160,-550},{
+ -160,-536},{-142,-536}}, color={0,0,127}));
+ connect(mult0.y, sub1.u1) annotation (Line(points={{-118,-450},{-110,-450},{-110,
+ -484},{-82,-484}}, color={0,0,127}));
+ connect(mult1.y, sub1.u2) annotation (Line(points={{-118,-530},{-108,-530},{-108,
+ -496},{-82,-496}}, color={0,0,127}));
+ connect(div.y, mult2.u1) annotation (Line(points={{2,-360},{20,-360},{20,-424},
+ {38,-424}}, color={0,0,127}));
+ connect(sub1.y, mult2.u2) annotation (Line(points={{-58,-490},{20,-490},{20,-436},
+ {38,-436}}, color={0,0,127}));
+ connect(div.y, mult3.u1) annotation (Line(points={{2,-360},{80,-360},{80,-494},
+ {98,-494}},
+ color={0,0,127}));
+ connect(uLif, mult3.u2) annotation (Line(points={{-400,-570},{80,-570},{80,-506},
+ {98,-506}}, color={0,0,127}));
+ connect(mult3.y, add3.u2) annotation (Line(points={{122,-500},{130,-500},{130,
+ -478},{158,-478}}, color={0,0,127}));
+ connect(mult2.y, add3.u1) annotation (Line(points={{62,-430},{140,-430},{140,-466},
+ {158,-466}}, color={0,0,127}));
+ connect(swi.y,greThr. u) annotation (Line(points={{222,150},{248,150},{248,210},
+ {258,210}}, color={0,0,127}));
+ connect(uLifMax, sub2.u1) annotation (Line(points={{-400,-360},{-220,-360},{-220,
+ -404},{-82,-404}}, color={0,0,127}));
+ connect(opePlrDow.y, yOpeDow)
+ annotation (Line(points={{-178,-80},{400,-80}}, color={0,0,127}));
+ connect(minOpePlr.y, yOpeMin) annotation (Line(points={{-178,-230},{-40,-230},
+ {-40,-200},{400,-200}}, color={0,0,127}));
+ connect(conSpeCenTypMult.y, swi.u1) annotation (Line(points={{-118,-30},{0,-30},
+ {0,-20},{96,-20},{96,158},{198,158}}, color={0,0,127}));
+ connect(posDisTypMult.y, swi1.u1) annotation (Line(points={{-118,-110},{-20,-110},
+ {-20,50},{40,50},{40,78},{158,78}}, color={0,0,127}));
+ connect(posDisTypMult.y, swi3.u1) annotation (Line(points={{-118,-110},{-20,-110},
+ {-20,-222},{58,-222}}, color={0,0,127}));
+ connect(conSpeCenTypMult.y, swi2.u1) annotation (Line(points={{-118,-30},{40,-30},
+ {40,-172},{98,-172}},color={0,0,127}));
+ connect(conSpeCenTyp.y, intEqu3.u2) annotation (Line(points={{2,140},{10,140},
+ {10,242},{58,242}}, color={255,127,0}));
+ connect(intEqu3.y, swi2.u2) annotation (Line(points={{82,250},{90,250},{90,-180},
+ {98,-180}},color={255,0,255}));
+ connect(uCapMin, minOpePlr.u1) annotation (Line(points={{-400,-220},{-300,-220},
+ {-300,-224},{-202,-224}}, color={0,0,127}));
+ connect(uUpCapMin, minOpePlrUp.u1) annotation (Line(points={{-400,-280},{-220,
+ -280},{-220,-184},{-202,-184}}, color={0,0,127}));
+ connect(intEqu.y, swi.u2) annotation (Line(points={{82,170},{160,170},{160,150},
+ {198,150}}, color={255,0,255}));
+ connect(const4.y, swi3.u3) annotation (Line(points={{22,-250},{40,-250},{40,-238},
+ {58,-238}}, color={0,0,127}));
+ connect(const3.y, swi1.u3) annotation (Line(points={{122,30},{140,30},{140,62},
+ {158,62}}, color={0,0,127}));
+ connect(swi2.y, swi4.u3) annotation (Line(points={{122,-180},{140,-180},{140,-168},
+ {158,-168}}, color={0,0,127}));
+ connect(const5.y, swi4.u1) annotation (Line(points={{122,-140},{140,-140},{140,
+ -152},{158,-152}}, color={0,0,127}));
+ connect(u, intEqu4.u2) annotation (Line(points={{-400,240},{-330,240},{-330,2},
+ {-142,2}}, color={255,127,0}));
+ connect(one.y, intEqu4.u1) annotation (Line(points={{-338,140},{-320,140},{-320,
+ 10},{-142,10}}, color={255,127,0}));
+ connect(intEqu4.y, swi4.u2) annotation (Line(points={{-118,10},{20,10},{20,-160},
+ {158,-160}}, color={255,0,255}));
+ connect(one.y, maxInt.u2) annotation (Line(points={{-338,140},{-320,140},{-320,
+ 264},{-302,264}}, color={255,127,0}));
+ connect(u, maxInt.u1) annotation (Line(points={{-400,240},{-330,240},{-330,276},
+ {-302,276}}, color={255,127,0}));
+ connect(one.y, maxIntUp.u2) annotation (Line(points={{-338,140},{-320,140},{-320,
+ 174},{-302,174}}, color={255,127,0}));
+ connect(uUp, maxIntUp.u1) annotation (Line(points={{-400,200},{-340,200},{-340,
+ 186},{-302,186}}, color={255,127,0}));
+ connect(one.y, maxIntDown.u1) annotation (Line(points={{-338,140},{-320,140},{
+ -320,76},{-302,76}}, color={255,127,0}));
+ connect(uDown, maxIntDown.u2) annotation (Line(points={{-400,40},{-340,40},{-340,
+ 64},{-302,64}}, color={255,127,0}));
+ connect(add3.y, max.u2) annotation (Line(points={{182,-472},{200,-472},{200,-416},
+ {218,-416}}, color={0,0,127}));
+ connect(minLim.y, max.u1) annotation (Line(points={{182,-410},{200,-410},{200,
+ -404},{218,-404}}, color={0,0,127}));
+ connect(max.y, min.u2) annotation (Line(points={{242,-410},{250,-410},{250,-376},
+ {258,-376}}, color={0,0,127}));
+ connect(maxLim.y, min.u1) annotation (Line(points={{182,-350},{220,-350},{220,
+ -364},{258,-364}}, color={0,0,127}));
+ connect(swi4.y, greThr1.u) annotation (Line(points={{182,-160},{192,-160},{192,
+ -100},{198,-100}}, color={0,0,127}));
+ connect(swi.y, swi5.u1) annotation (Line(points={{222,150},{240,150},{240,238},
+ {318,238}}, color={0,0,127}));
+ connect(greThr.y, swi5.u2) annotation (Line(points={{282,210},{290,210},{290,230},
+ {318,230}}, color={255,0,255}));
+ connect(greThr.y, cheStaTyp.u) annotation (Line(points={{282,210},{290,210},{290,
+ 290},{298,290}}, color={255,0,255}));
+ connect(conSpeCenTypMult1.y, swi5.u3) annotation (Line(points={{222,30},{300,30},
+ {300,222},{318,222}}, color={0,0,127}));
+ connect(swi5.y, yStaUp) annotation (Line(points={{342,230},{354,230},{354,0},
+ {400,0}},color={0,0,127}));
+ connect(swi6.y, yStaDow) annotation (Line(points={{282,-100},{290,-100},{290,-160},
+ {400,-160}}, color={0,0,127}));
+ connect(greThr1.y, swi6.u2)
+ annotation (Line(points={{222,-100},{258,-100}}, color={255,0,255}));
+ connect(swi4.y, swi6.u1) annotation (Line(points={{182,-160},{240,-160},{240,-92},
+ {258,-92}}, color={0,0,127}));
+ connect(conSpeCenTypMult1.y, swi6.u3) annotation (Line(points={{222,30},{250,30},
+ {250,-108},{258,-108}}, color={0,0,127}));
+ connect(greThr1.y, cheStaTyp1.u) annotation (Line(points={{222,-100},{230,-100},
+ {230,-10},{258,-10}}, color={255,0,255}));
+ connect(max1.y, opePlrSta.u2) annotation (Line(points={{-278,-50},{-240,-50},
+ {-240,-56},{-202,-56}}, color={0,0,127}));
+ connect(smaNum.y, max1.u1) annotation (Line(points={{-338,-44},{-302,-44}},
+ color={0,0,127}));
+ connect(max1.y, minOpePlr.u2) annotation (Line(points={{-278,-50},{-260,-50},{
+ -260,-236},{-202,-236}}, color={0,0,127}));
+ connect(max2.y, opePlrDow.u2) annotation (Line(points={{-278,-100},{-240,-100},
+ {-240,-86},{-202,-86}}, color={0,0,127}));
+ connect(smaNum.y, max2.u1) annotation (Line(points={{-338,-44},{-320,-44},{-320,
+ -94},{-302,-94}}, color={0,0,127}));
+ connect(uDowCapDes, max2.u2) annotation (Line(points={{-400,-130},{-330,-130},
+ {-330,-106},{-302,-106}}, color={0,0,127}));
+ connect(max3.y, opePlrUp.u2) annotation (Line(points={{-278,-160},{-240,-160},
+ {-240,-146},{-202,-146}}, color={0,0,127}));
+ connect(max3.y, minOpePlrUp.u2) annotation (Line(points={{-278,-160},{-240,
+ -160},{-240,-196},{-202,-196},{-202,-196}}, color={0,0,127}));
+ connect(smaNum.y, max3.u1) annotation (Line(points={{-338,-44},{-320,-44},{-320,
+ -154},{-302,-154}}, color={0,0,127}));
+ connect(uUpCapDes, max3.u2) annotation (Line(points={{-400,-180},{-320,-180},{
+ -320,-166},{-302,-166}}, color={0,0,127}));
+ connect(uCapDes, max1.u2) annotation (Line(points={{-400,-80},{-330,-80},{-330,
+ -56},{-302,-56}}, color={0,0,127}));
+ connect(uCapReq, opePlrSta.u1) annotation (Line(points={{-400,-10},{-220,-10},
+ {-220,-44},{-202,-44}}, color={0,0,127}));
+ connect(uCapReq, opePlrDow.u1) annotation (Line(points={{-400,-10},{-220,-10},
+ {-220,-74},{-202,-74}}, color={0,0,127}));
+ connect(uCapReq, opePlrUp.u1) annotation (Line(points={{-400,-10},{-220,-10},{
+ -220,-134},{-202,-134}}, color={0,0,127}));
+ connect(min.y, movMea.u) annotation (Line(points={{282,-370},{290,-370},{290,-320},
+ {298,-320}}, color={0,0,127}));
+ connect(movMea.y, swi3.u3) annotation (Line(points={{322,-320},{340,-320},{340,
+ -300},{50,-300},{50,-238},{58,-238}}, color={0,0,127}));
+ connect(movMea.y, swi1.u3) annotation (Line(points={{322,-320},{340,-320},{340,
+ -260},{150,-260},{150,62},{158,62}}, color={0,0,127}));
+ connect(uTyp, extCurTyp.u)
+ annotation (Line(points={{-400,300},{-122,300}}, color={255,127,0}));
+ connect(uTyp, extUpTyp.u) annotation (Line(points={{-400,300},{-140,300},{
+ -140,210},{-122,210}}, color={255,127,0}));
+ connect(uTyp, extDowTyp.u) annotation (Line(points={{-400,300},{-140,300},{-140,
+ 120},{-122,120}}, color={255,127,0}));
+ connect(maxInt.y, intGreThr[1].u) annotation (Line(points={{-278,270},{-260,270},
+ {-260,150},{-242,150}}, color={255,127,0}));
+ connect(intGreThr.y, intSwi.u2) annotation (Line(points={{-218,150},{-190,150},
+ {-190,90},{-182,90}}, color={255,0,255}));
+ connect(maxInt.y, intSwi[1].u3) annotation (Line(points={{-278,270},{-200,270},
+ {-200,82},{-182,82}}, color={255,127,0}));
+ connect(intSwi[1].y, extCurTyp.index) annotation (Line(points={{-158,90},{-150,
+ 90},{-150,280},{-110,280},{-110,288}}, color={255,127,0}));
+ connect(maxIntUp.y, intGreThr[2].u) annotation (Line(points={{-278,180},{-260,
+ 180},{-260,150},{-242,150}}, color={255,127,0}));
+ connect(conInt.y, intSwi.u1) annotation (Line(points={{-218,240},{-210,240},{-210,
+ 98},{-182,98}}, color={255,127,0}));
+ connect(intSwi[2].y, extUpTyp.index) annotation (Line(points={{-158,90},{-150,
+ 90},{-150,190},{-110,190},{-110,198}}, color={255,127,0}));
+ connect(maxIntDown.y, intGreThr[3].u) annotation (Line(points={{-278,70},{-260,
+ 70},{-260,150},{-242,150}}, color={255,127,0}));
+ connect(maxIntUp.y, intSwi[2].u3) annotation (Line(points={{-278,180},{-200,180},
+ {-200,82},{-182,82}}, color={255,127,0}));
+ connect(intSwi[3].y, extDowTyp.index) annotation (Line(points={{-158,90},{-110,
+ 90},{-110,108}}, color={255,127,0}));
+ connect(maxIntDown.y, intSwi[3].u3) annotation (Line(points={{-278,70},{-200,70},
+ {-200,82},{-182,82}}, color={255,127,0}));
+ connect(intGreThr.y, intSwi1.u2)
+ annotation (Line(points={{-218,150},{-82,150}}, color={255,0,255}));
+ connect(con.y, intSwi1.u1) annotation (Line(points={{-158,170},{-100,170},{-100,
+ 158},{-82,158}}, color={255,127,0}));
+ connect(extCurTyp.y, intSwi1[1].u3) annotation (Line(points={{-98,300},{-90,300},
+ {-90,142},{-82,142}}, color={255,127,0}));
+ connect(extUpTyp.y, intSwi1[2].u3) annotation (Line(points={{-98,210},{-90,210},
+ {-90,142},{-82,142}}, color={255,127,0}));
+ connect(extDowTyp.y, intSwi1[3].u3) annotation (Line(points={{-98,120},{-90,120},
+ {-90,142},{-82,142}}, color={255,127,0}));
+ connect(intSwi1[1].y, intEqu3.u1) annotation (Line(points={{-58,150},{-50,150},
+ {-50,250},{58,250}}, color={255,127,0}));
+ connect(intSwi1[1].y, intEqu1.u1) annotation (Line(points={{-58,150},{-50,150},
+ {-50,110},{58,110}}, color={255,127,0}));
+ connect(intSwi1[2].y, intEqu.u1) annotation (Line(points={{-58,150},{-40,150},
+ {-40,170},{58,170}}, color={255,127,0}));
+ connect(intSwi1[3].y, intEqu2.u1) annotation (Line(points={{-58,150},{-40,150},
+ {-40,30},{18,30}}, color={255,127,0}));
+ annotation (defaultComponentName = "PLRs",
+ Icon(coordinateSystem(extent={{-100,-200},{100,200}}), graphics={
+ Text(
+ extent={{-100,240},{100,200}},
+ textColor={0,0,255},
+ textString="%name"),
+ Rectangle(
+ extent={{-100,-200},{100,200}},
+ lineColor={0,0,127},
+ fillColor={255,255,255},
+ fillPattern=FillPattern.Solid),
+ Text(
+ extent={{-60,36},{64,-42}},
+ textColor={0,0,127},
+ fillColor={255,255,255},
+ fillPattern=FillPattern.Solid,
+ textString="PLR")}), Diagram(
+ coordinateSystem(preserveAspectRatio=false,
+ extent={{-380,-600},{380,340}})),
+ Documentation(info="
+Calculates operative part load ratios (OPLR) per sections 5.2.4.5., 9., 10. and stage part load ratios (SPLR, up or down) per section 5.2.4.5.13 (July Draft).
+OPLR is a ratio of the current capacity requirement to a given design or minimal stage capacity, such as:
+
+- Current stage design OPLR (y).
+- Current stage minimal OPLR (yMin).
+- Next available higher stage nominal OPLR (yUp).
+- Next available higher stage minimal OPLR (yUpMin).
+
+
+SPLRup yStaUp
or SPLRdown yStaDown
value depends on the stage type staTyp
as indicated in the table below.
+Note that the rules are prioritized by stage type column, from left to right
The stage type is determined by the
+
+Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.SetPoints.Subsequences.Configurator subsequence based on the type of chillers staged.
+
+
+
+Row: Stage / Column: Stage Type |
+Any Constant Speed Centrifugal |
+All Positive Displacement |
+Any Variable Speed and no Constant Speed Centrifugal |
+
+
+Next Available Up |
+yStaUp=conSpeCenMult |
+N/A |
+N/A |
+
+
+Current |
+yStaDown=conSpeCenMult |
+yStaUp=posDisMult |
+yStaUp=f(uLif, uLifMin, uLifMax) |
+
+
+Next Available Down |
+N/A |
+yStaDown=posDisMult |
+yStaDown=f(uLif, uLifMin, uLifMax) |
+
+
+For operation outside of the recommended staging order as provided in the table above a constant
+SPLRup and SPLRdown value anyOutOfScoMult
is set to prevent
+simulation interruption, accompanied with a warning.
+
+",
+revisions="
+
+-
+January 03, 2020, by Milica Grahovac:
+First implementation.
+
+
+"));
+end PartLoadRatios;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/SetPoints/Subsequences/Status.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/SetPoints/Subsequences/Status.mo
new file mode 100644
index 00000000000..eac9c9a93c1
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/SetPoints/Subsequences/Status.mo
@@ -0,0 +1,354 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.SetPoints.Subsequences;
+block Status
+ "Outputs current stage chiller index vector, current, next available lower and higher stage index and whether curent stage is the lowest and/or the highest available stage"
+
+ parameter Integer nSta = 3
+ "Number of chiller stages, does not include zero stage";
+
+ parameter Integer nChi = 2
+ "Number of chillers";
+
+ parameter Integer staMat[nSta, nChi] = {{1,0},{0,1},{1,1}}
+ "Staging matrix with stages in rows and chillers in columns";
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uAva[nSta](
+ final start = fill(true, nSta)) "Stage availability status"
+ annotation (Placement(transformation(extent={{-460,-100},{-420,-60}}),
+ iconTransformation(extent={{-140,-80},{-100,-40}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.IntegerInput u(
+ final min=0,
+ final max=nSta,
+ final start = 0) "Current chiller stage"
+ annotation (Placement(transformation(extent={{-460,60},{-420,100}}),
+ iconTransformation(extent={{-140,40},{-100,80}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanOutput yHig
+ "If true current stage is the highest available stage"
+ annotation (Placement(transformation(extent={{440,20},{480,60}}),
+ iconTransformation(extent={{100,-30},{140,10}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanOutput yLow
+ "If true current stage is the lowest available stage"
+ annotation (Placement(transformation(extent={{440,-110},{480,-70}}),
+ iconTransformation(extent={{100,-60},{140,-20}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanOutput yAvaCur
+ "Current stage availability status"
+ annotation (Placement(transformation(extent={{440,-260},{480,-220}}),
+ iconTransformation(extent={{100,-90},{140,-50}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.IntegerOutput yAvaUp(
+ final min=0,
+ final max=nSta)
+ "Next available higher stage"
+ annotation (Placement(transformation(extent={{440,60},{480,100}}),
+ iconTransformation(extent={{100,50},{140,90}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.IntegerOutput yAvaDow(
+ final min=0,
+ final max=nSta)
+ "Next available lower stage"
+ annotation (Placement(transformation(extent={{440,-60},{480,-20}}),
+ iconTransformation(extent={{100,20},{140,60}})));
+
+protected
+ final parameter Integer staInd[nSta] = {i for i in 1:nSta}
+ "Stage index vector";
+
+ final parameter Integer staIndMat[nSta, nChi] = {j for i in 1:nChi, j in 1:nSta}
+ "Matrix of staging matrix dimensions with stage indices in each column";
+
+ final parameter Integer lowDia[nSta, nSta] = {if i<=j then 1 else 0 for i in 1:nSta, j in 1:nSta}
+ "Lower diagonal unit matrix";
+
+ Buildings.Controls.OBC.CDL.Logical.Not not1 "Not unavailable"
+ annotation (Placement(transformation(extent={{-60,-180},{-40,-160}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Switch intSwi2 "Switch"
+ annotation (Placement(transformation(extent={{260,-220},{280,-200}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Switch intSwi3 "Switch"
+ annotation (Placement(transformation(extent={{360,70},{380,90}})));
+
+ Buildings.Controls.OBC.CDL.Routing.IntegerScalarReplicator intRep(
+ final nout=nSta) "Replicates signal to a length equal the stage count"
+ annotation (Placement(transformation(extent={{-300,190},{-280,210}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Multiply proInt1[nSta]
+ "Outputs a vector of stage indices for any available stage above the current stage"
+ annotation (Placement(transformation(extent={{-60,100},{-40,120}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant staIndx[nSta](
+ final k=staInd) "Stage index vector"
+ annotation (Placement(transformation(extent={{-240,120},{-220,140}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Greater intGre[nSta]
+ "Identifies stages that are above the current stage"
+ annotation (Placement(transformation(extent={{-180,80},{-160,100}})));
+
+ Buildings.Controls.OBC.CDL.Conversions.BooleanToInteger booToInt1[nSta](
+ final integerTrue=fill(1, nSta),
+ final integerFalse=fill(nSta + 1, nSta))
+ "Type converter that outputs a value larger than the stage count for any false input"
+ annotation (Placement(transformation(extent={{-100,70},{-80,90}})));
+
+ Buildings.Controls.OBC.CDL.Logical.And and2[nSta]
+ "Identifies any available stages above the current stage"
+ annotation (Placement(transformation(extent={{-140,70},{-120,90}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.MultiMin multiMin(
+ final nin=nSta)
+ "Minimum of a vector input"
+ annotation (Placement(transformation(extent={{20,100},{40,120}})));
+
+ Buildings.Controls.OBC.CDL.Conversions.IntegerToReal intToRea1[nSta]
+ "Type converter"
+ annotation (Placement(transformation(extent={{-20,100},{0,120}})));
+
+ Buildings.Controls.OBC.CDL.Conversions.RealToInteger reaToInt
+ "Type converter"
+ annotation (Placement(transformation(extent={{60,100},{80,120}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Less intLes[nSta]
+ "Identifies stages that are below the current stage"
+ annotation (Placement(transformation(extent={{-180,-80},{-160,-60}})));
+
+ Buildings.Controls.OBC.CDL.Logical.And and1[nSta]
+ "Identifies any available stage below the current stage"
+ annotation (Placement(transformation(extent={{-140,-100},{-120,-80}})));
+
+ Buildings.Controls.OBC.CDL.Conversions.BooleanToInteger booToInt2[nSta](
+ integerTrue=fill(1, nSta), integerFalse=fill(0, nSta))
+ "Type converter that outputs zero for any false input"
+ annotation (Placement(transformation(extent={{-100,-100},{-80,-80}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Multiply proInt2[nSta]
+ "Outputs vector of stage indices for any available stage below the current stage"
+ annotation (Placement(transformation(extent={{-60,-80},{-40,-60}})));
+
+ Buildings.Controls.OBC.CDL.Conversions.IntegerToReal intToRea3[nSta]
+ "Type converter"
+ annotation (Placement(transformation(extent={{-20,-80},{0,-60}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.MultiMax multiMax(
+ final nin=nSta)
+ "Maximum of a vector input"
+ annotation (Placement(transformation(extent={{20,-80},{40,-60}})));
+
+ Buildings.Controls.OBC.CDL.Conversions.RealToInteger reaToInt1
+ "Type converter"
+ annotation (Placement(transformation(extent={{60,-80},{80,-60}})));
+
+ Buildings.Controls.OBC.CDL.Integers.GreaterThreshold intGreThr(
+ final t=nSta) "True if there are no higher available stages"
+ annotation (Placement(transformation(extent={{100,100},{120,120}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Switch intSwi
+ "If no higher stage is available, output current stage"
+ annotation (Placement(transformation(extent={{180,100},{200,120}})));
+
+ Buildings.Controls.OBC.CDL.Integers.LessEqualThreshold intLesEquThr(
+ final t=0)
+ "If the current stage is the lowest available the input value equals 0"
+ annotation (Placement(transformation(extent={{100,-80},{120,-60}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Switch intSwi1 "Logical switch"
+ annotation (Placement(transformation(extent={{180,-80},{200,-60}})));
+
+ Buildings.Controls.OBC.CDL.Routing.BooleanExtractor extStaAva(
+ final nin=nSta) "Extracts stage availability for the current stage"
+ annotation (Placement(transformation(extent={{-200,-140},{-180,-120}})));
+
+ Buildings.Controls.OBC.CDL.Utilities.Assert cheStaAva1(
+ final message="There are no available chiller stages. The staging cannot be performed.")
+ "Checks if any stage is available"
+ annotation (Placement(transformation(extent={{-320,-50},{-300,-30}})));
+
+ Buildings.Controls.OBC.CDL.Logical.MultiOr mulOr(
+ final nin=nSta) "Logical or"
+ annotation (Placement(transformation(extent={{-360,-50},{-340,-30}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant conInt(
+ final k=0) "Zero"
+ annotation (Placement(transformation(extent={{100,-40},{120,-20}})));
+
+ Buildings.Controls.OBC.CDL.Logical.And and4 "Logical and"
+ annotation (Placement(transformation(extent={{220,70},{240,90}})));
+
+ Buildings.Controls.OBC.CDL.Integers.GreaterEqualThreshold intGreEquThr(
+ final t=1)
+ "Check if index is in the range"
+ annotation (Placement(transformation(extent={{-380,-120},{-360,-100}})));
+ Buildings.Controls.OBC.CDL.Integers.LessEqualThreshold intLesEquThr1(
+ final t=nSta)
+ "Check if index is in the range"
+ annotation (Placement(transformation(extent={{-380,-200},{-360,-180}})));
+ Buildings.Controls.OBC.CDL.Logical.And and3 "Check if index is in the range"
+ annotation (Placement(transformation(extent={{-320,-120},{-300,-100}})));
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant conInt1(
+ final k=1)
+ "Dummy index so the extractor will not have out of range index"
+ annotation (Placement(transformation(extent={{-320,-200},{-300,-180}})));
+ Buildings.Controls.OBC.CDL.Integers.Switch intSwi4 "Valid index"
+ annotation (Placement(transformation(extent={{-260,-160},{-240,-140}})));
+ Buildings.Controls.OBC.CDL.Logical.And and5 "Chiller availability"
+ annotation (Placement(transformation(extent={{-140,-180},{-120,-160}})));
+
+equation
+ connect(staIndx.y, intGre.u1) annotation (Line(points={{-218,130},{-200,130},{
+ -200,90},{-182,90}}, color={255,127,0}));
+ connect(intRep.y, intGre.u2) annotation (Line(points={{-278,200},{-260,200},{
+ -260,82},{-182,82}}, color={255,127,0}));
+ connect(intGre.y, and2.u1) annotation (Line(points={{-158,90},{-150,90},{-150,
+ 80},{-142,80}},color={255,0,255}));
+ connect(uAva, and2.u2) annotation (Line(points={{-440,-80},{-220,-80},{-220,72},
+ {-142,72}}, color={255,0,255}));
+ connect(staIndx.y, proInt1.u1) annotation (Line(points={{-218,130},{-70,130},{
+ -70,116},{-62,116}}, color={255,127,0}));
+ connect(booToInt1.y, proInt1.u2) annotation (Line(points={{-78,80},{-70,80},{-70,
+ 104},{-62,104}}, color={255,127,0}));
+ connect(proInt1.y, intToRea1.u)
+ annotation (Line(points={{-38,110},{-22,110}}, color={255,127,0}));
+ connect(intToRea1.y, multiMin.u) annotation (Line(points={{2,110},{18,110}},
+ color={0,0,127}));
+ connect(intRep.y, intLes.u2) annotation (Line(points={{-278,200},{-260,200},{
+ -260,-78},{-182,-78}}, color={255,127,0}));
+ connect(staIndx.y, intLes.u1) annotation (Line(points={{-218,130},{-200,130},{
+ -200,-70},{-182,-70}}, color={255,127,0}));
+ connect(uAva, and1.u2) annotation (Line(points={{-440,-80},{-220,-80},{-220,-98},
+ {-142,-98}}, color={255,0,255}));
+ connect(intLes.y, and1.u1) annotation (Line(points={{-158,-70},{-150,-70},{-150,
+ -90},{-142,-90}}, color={255,0,255}));
+ connect(proInt2.y, intToRea3.u)
+ annotation (Line(points={{-38,-70},{-22,-70}}, color={255,127,0}));
+ connect(intToRea3.y, multiMax.u) annotation (Line(points={{2,-70},{18,-70}},
+ color={0,0,127}));
+ connect(staIndx.y, proInt2.u1) annotation (Line(points={{-218,130},{-200,130},
+ {-200,-40},{-70,-40},{-70,-64},{-62,-64}}, color={255,127,0}));
+ connect(booToInt2.y, proInt2.u2) annotation (Line(points={{-78,-90},{-70,-90},
+ {-70,-76},{-62,-76}}, color={255,127,0}));
+ connect(multiMax.y, reaToInt1.u)
+ annotation (Line(points={{42,-70},{58,-70}}, color={0,0,127}));
+ connect(multiMin.y, reaToInt.u)
+ annotation (Line(points={{42,110},{58,110}}, color={0,0,127}));
+ connect(reaToInt.y, intGreThr.u)
+ annotation (Line(points={{82,110},{98,110}}, color={255,127,0}));
+ connect(intGreThr.y, intSwi.u2)
+ annotation (Line(points={{122,110},{178,110}}, color={255,0,255}));
+ connect(intGreThr.y, yHig) annotation (Line(points={{122,110},{140,110},{140,40},
+ {460,40}}, color={255,0,255}));
+ connect(reaToInt1.y, intLesEquThr.u)
+ annotation (Line(points={{82,-70},{98,-70}}, color={255,127,0}));
+ connect(intLesEquThr.y, intSwi1.u2)
+ annotation (Line(points={{122,-70},{178,-70}}, color={255,0,255}));
+ connect(intLesEquThr.y, yLow) annotation (Line(points={{122,-70},{140,-70},{140,
+ -90},{460,-90}}, color={255,0,255}));
+ connect(and2.y, booToInt1.u)
+ annotation (Line(points={{-118,80},{-102,80}}, color={255,0,255}));
+ connect(intGreThr.y, and4.u1)
+ annotation (Line(points={{122,110},{140,110},{140,80},{218,80}},
+ color={255,0,255}));
+ connect(and4.y, intSwi3.u2)
+ annotation (Line(points={{242,80},{358,80}}, color={255,0,255}));
+ connect(yAvaUp, yAvaUp)
+ annotation (Line(points={{460,80},{460,80}}, color={255,127,0}));
+ connect(uAva, mulOr.u) annotation (Line(points={{-440,-80},{-380,-80},{-380,-40},
+ {-362,-40}}, color={255,0,255}));
+ connect(mulOr.y, cheStaAva1.u)
+ annotation (Line(points={{-338,-40},{-322,-40}}, color={255,0,255}));
+ connect(and1.y, booToInt2.u)
+ annotation (Line(points={{-118,-90},{-102,-90}}, color={255,0,255}));
+ connect(u, intRep.u) annotation (Line(points={{-440,80},{-400,80},{-400,200},{
+ -302,200}}, color={255,127,0}));
+ connect(conInt.y, intSwi1.u1) annotation (Line(points={{122,-30},{160,-30},{160,
+ -62},{178,-62}}, color={255,127,0}));
+ connect(intSwi1.y, yAvaDow) annotation (Line(points={{202,-70},{320,-70},{320,
+ -40},{460,-40}}, color={255,127,0}));
+ connect(intSwi1.y, intSwi2.u1) annotation (Line(points={{202,-70},{220,-70},{220,
+ -202},{258,-202}}, color={255,127,0}));
+ connect(intSwi2.y, intSwi3.u1) annotation (Line(points={{282,-210},{350,-210},
+ {350,88},{358,88}}, color={255,127,0}));
+ connect(u, intSwi2.u3) annotation (Line(points={{-440,80},{-400,80},{-400,-218},
+ {258,-218}}, color={255,127,0}));
+ connect(intSwi.y, intSwi3.u3) annotation (Line(points={{202,110},{340,110},{340,
+ 72},{358,72}}, color={255,127,0}));
+ connect(u, intSwi.u1) annotation (Line(points={{-440,80},{-400,80},{-400,160},
+ {160,160},{160,118},{178,118}}, color={255,127,0}));
+ connect(reaToInt.y, intSwi.u3) annotation (Line(points={{82,110},{90,110},{90,
+ 90},{160,90},{160,102},{178,102}}, color={255,127,0}));
+ connect(reaToInt1.y, intSwi1.u3) annotation (Line(points={{82,-70},{90,-70},{90,
+ -100},{170,-100},{170,-78},{178,-78}}, color={255,127,0}));
+ connect(intSwi3.y, yAvaUp)
+ annotation (Line(points={{382,80},{460,80}}, color={255,127,0}));
+ connect(uAva, extStaAva.u) annotation (Line(points={{-440,-80},{-220,-80},{-220,
+ -130},{-202,-130}}, color={255,0,255}));
+ connect(not1.y, intSwi2.u2) annotation (Line(points={{-38,-170},{210,-170},{210,
+ -210},{258,-210}},color={255,0,255}));
+ connect(not1.y, and4.u2) annotation (Line(points={{-38,-170},{210,-170},{210,72},
+ {218,72}}, color={255,0,255}));
+ connect(u, intGreEquThr.u) annotation (Line(points={{-440,80},{-400,80},{-400,
+ -110},{-382,-110}}, color={255,127,0}));
+ connect(u, intLesEquThr1.u) annotation (Line(points={{-440,80},{-400,80},{-400,
+ -190},{-382,-190}}, color={255,127,0}));
+ connect(intGreEquThr.y, and3.u1)
+ annotation (Line(points={{-358,-110},{-322,-110}}, color={255,0,255}));
+ connect(intLesEquThr1.y, and3.u2) annotation (Line(points={{-358,-190},{-340,-190},
+ {-340,-118},{-322,-118}}, color={255,0,255}));
+ connect(intSwi4.y, extStaAva.index) annotation (Line(points={{-238,-150},{-190,
+ -150},{-190,-142}}, color={255,127,0}));
+ connect(and3.y, intSwi4.u2) annotation (Line(points={{-298,-110},{-280,-110},{
+ -280,-150},{-262,-150}}, color={255,0,255}));
+ connect(u, intSwi4.u1) annotation (Line(points={{-440,80},{-400,80},{-400,-142},
+ {-262,-142}}, color={255,127,0}));
+ connect(conInt1.y, intSwi4.u3) annotation (Line(points={{-298,-190},{-290,-190},
+ {-290,-158},{-262,-158}}, color={255,127,0}));
+ connect(extStaAva.y, and5.u1) annotation (Line(points={{-178,-130},{-160,-130},
+ {-160,-170},{-142,-170}}, color={255,0,255}));
+ connect(and5.y, not1.u)
+ annotation (Line(points={{-118,-170},{-62,-170}}, color={255,0,255}));
+ connect(and5.y, yAvaCur) annotation (Line(points={{-118,-170},{-100,-170},{-100,
+ -240},{460,-240}}, color={255,0,255}));
+ connect(and3.y, and5.u2) annotation (Line(points={{-298,-110},{-280,-110},{-280,
+ -178},{-142,-178}}, color={255,0,255}));
+ annotation (defaultComponentName = "sta",
+ Icon(graphics={
+ Rectangle(
+ extent={{-100,-100},{100,100}},
+ lineColor={0,0,127},
+ fillColor={255,255,255},
+ fillPattern=FillPattern.Solid),
+ Text(
+ extent={{-120,146},{100,108}},
+ textColor={0,0,255},
+ textString="%name")}),
+ Diagram(coordinateSystem(preserveAspectRatio=false,
+ extent={{-420,-280},{440,280}})),
+Documentation(info="
+This subsequence is not directly specified in 1711 as it provides a side calculation pertaining to generalization of the staging sequences for any number of chillers and stages provided by the user.
+Based on the current stage u and stage availability vector uAva the sequence outputs:
+
+- Integer indices of: the current stage y, first available higher stage yUp and the first available lower stage yDown.
+- Boolean status outputs to show if the current operating stage u is:
+
+- Available, u
+- The highest available stage, yHig
+- The lowest available stage, yLow
+
+
+The purpose of this sequence is to:
+
+- Provide inputs for the stage up and down conditionals such that staging into unavailable stages is avoided.
+- Change the stage to the first available higher stage in an event that the current stage becomes unavailable.
+
+The sequences are implemented according to 1711 March 2020 Draft, section 5.2.4.15.
+",
+revisions="
+
+-
+June 10, 2019, by Milica Grahovac:
+First implementation.
+
+
+"));
+end Status;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/SetPoints/Subsequences/Up.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/SetPoints/Subsequences/Up.mo
new file mode 100644
index 00000000000..ce0d2696757
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/SetPoints/Subsequences/Up.mo
@@ -0,0 +1,378 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.SetPoints.Subsequences;
+block Up "Generates a stage up signal"
+ parameter Boolean have_WSE = true
+ "true = plant has a WSE, false = plant does not have WSE";
+
+ parameter Boolean have_serChi = false
+ "true = series chillers plant; false = parallel chillers plant";
+
+ parameter Boolean have_locSen=false
+ "Flag of local DP sensor: true=local DP sensor hardwired to controller"
+ annotation (Dialog(enable=not have_serChi));
+
+ parameter Integer nRemSen=2
+ "Total number of remote differential pressure sensors"
+ annotation (Dialog(enable=not have_serChi));
+
+ parameter Real effConTruDelay(
+ final unit="s",
+ final quantity="Time")=900
+ "Enable delay for efficiency condition";
+
+ parameter Real faiSafTruDelay(
+ final unit="s",
+ final quantity="Time")=900
+ "Enable delay for failsafe condition";
+
+ parameter Real shortTDelay(
+ final unit="s",
+ final quantity="Time")=600
+ "Short enable delay for staging from zero to first available stage up"
+ annotation(Evaluate=true, Dialog(enable=have_WSE));
+
+ parameter Real longTDelay(
+ final unit="s",
+ final quantity="Time")=1200
+ "Long enable delay for staging from zero to first available stage up"
+ annotation(Evaluate=true, Dialog(enable=have_WSE));
+
+ parameter Real faiSafTDif(
+ final unit="K",
+ final quantity="TemperatureDifference")=1
+ "Offset between the chilled water supply temperature and its setpoint";
+
+ parameter Real TDifHys(
+ final unit="K",
+ final quantity="TemperatureDifference")=1
+ "Hysteresis deadband for temperature";
+
+ parameter Real smallTDif(
+ final unit="K",
+ final quantity="TemperatureDifference")=1
+ "Offset between the chilled water supply temperature and its setpoint for the long condition"
+ annotation(Evaluate=true, Dialog(enable=have_WSE));
+
+ parameter Real largeTDif(
+ final unit="K",
+ final quantity="TemperatureDifference")=2
+ "Offset between the chilled water supply temperature and its setpoint for the short condition"
+ annotation(Evaluate=true, Dialog(enable=have_WSE));
+
+ parameter Real faiSafDpDif(
+ final unit="Pa",
+ final quantity="PressureDifference",
+ displayUnit="Pa")=2 * 6895
+ "Offset between the chilled water differential pressure and its setpoint";
+
+ parameter Real dpDifHys(
+ final unit="Pa",
+ final quantity="PressureDifference",
+ displayUnit="Pa")=0.5 * 6895
+ "Pressure difference hysteresis deadband";
+
+ parameter Real effConSigDif(
+ final min=0,
+ final max=1,
+ final unit="1") = 0.05
+ "Signal hysteresis deadband";
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uAvaCur
+ "Current stage availability status"
+ annotation (Placement(transformation(extent={{-200,0},{-160,40}}),
+ iconTransformation(extent={{-140,-90},{-100,-50}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.IntegerInput u
+ "Chiller stage"
+ annotation (Placement(transformation(extent={{-200,-120},{-160,-80}}),
+ iconTransformation(extent={{-140,-70},{-100,-30}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput uOpe(
+ final unit="1")
+ "Operating part load ratio of the current stage"
+ annotation (Placement(transformation(extent={{-200,180},{-160,220}}),
+ iconTransformation(extent={{-140,90},{-100,130}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput uStaUp(
+ final unit="1")
+ "Staging part load ratio of the next stage up"
+ annotation (Placement(transformation(extent={{-200,150},{-160,190}}),
+ iconTransformation(extent={{-140,70},{-100,110}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput dpChiWatPumSet_local(
+ final unit="Pa",
+ final quantity="PressureDifference")
+ if (not have_serChi) and have_locSen
+ "Chilled water pump Diferential static pressure setpoint for local sensor"
+ annotation (Placement(transformation(extent={{-200,120},{-160,160}}),
+ iconTransformation(extent={{-140,10},{-100,50}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput dpChiWatPum_local(
+ final unit="Pa",
+ final quantity="PressureDifference") if (not have_serChi) and have_locSen
+ "Chilled water pump Diferential static pressure"
+ annotation (Placement(transformation(extent={{-200,90},{-160,130}}),
+ iconTransformation(extent={{-140,-10},{-100,30}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput dpChiWatPumSet_remote[nRemSen](
+ final unit=fill("Pa", nRemSen),
+ final quantity=fill("PressureDifference",nRemSen))
+ if (not have_serChi) and (not have_locSen)
+ "Chilled water differential pressure setpoint for remote sensor"
+ annotation (Placement(transformation(extent={{-200,60},{-160,100}}),
+ iconTransformation(extent={{-140,-30},{-100,10}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput dpChiWatPum_remote[nRemSen](
+ final unit=fill("Pa", nRemSen),
+ final quantity=fill("PressureDifference",nRemSen))
+ if (not have_serChi) and (not have_locSen)
+ "Chilled water differential pressure from remote sensor"
+ annotation (Placement(transformation(extent={{-200,30},{-160,70}}),
+ iconTransformation(extent={{-140,-50},{-100,-10}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput TChiWatSupSet(
+ final unit="K",
+ final quantity="ThermodynamicTemperature")
+ "Chilled water supply temperature setpoint"
+ annotation (Placement(transformation(extent={{-200,-50},{-160,-10}}),
+ iconTransformation(extent={{-140,50},{-100,90}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput TChiWatSup(
+ final unit="K",
+ final quantity="ThermodynamicTemperature")
+ "Chilled water supply temperature"
+ annotation (Placement(transformation(extent={{-200,-90},{-160,-50}}),
+ iconTransformation(extent={{-140,30},{-100,70}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uPla
+ "Plant enable signal"
+ annotation (Placement(transformation(extent={{-200,-200},{-160,-160}}),
+ iconTransformation(extent={{-140,-110},{-100,-70}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanOutput y "Stage up signal"
+ annotation (Placement(transformation(extent={{160,-200},{200,-160}}),
+ iconTransformation(extent={{100,-20},{140,20}})));
+
+protected
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.SetPoints.Subsequences.FailsafeCondition faiSafCon(
+ final have_serChi=have_serChi,
+ final faiSafTruDelay=faiSafTruDelay,
+ final have_locSen=have_locSen,
+ final nRemSen=nRemSen,
+ final TDif=faiSafTDif,
+ final TDifHys=TDifHys,
+ final dpDif=faiSafDpDif,
+ final dpDifHys=dpDifHys)
+ "Failsafe condition of the current stage"
+ annotation (Placement(transformation(extent={{-100,90},{-80,110}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.SetPoints.Subsequences.EfficiencyCondition effCon(
+ final effConTruDelay = effConTruDelay,
+ final sigDif=effConSigDif)
+ "Efficiency condition of the current stage"
+ annotation (Placement(transformation(extent={{-100,170},{-80,190}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Or3 orStaUp "Or for staging up"
+ annotation (Placement(transformation(extent={{-20,110},{0,130}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Switch logSwi "Logical switch"
+ annotation (Placement(transformation(extent={{80,70},{100,90}})));
+
+ Buildings.Controls.OBC.CDL.Integers.GreaterThreshold intGreThr if have_WSE
+ "Switches staging up rules"
+ annotation (Placement(transformation(extent={{-120,-110},{-100,-90}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Hysteresis hysTSup(
+ final uLow=smallTDif - TDifHys,
+ final uHigh=smallTDif,
+ final pre_y_start=false) if have_WSE
+ "Checks if the chilled water supply temperature is higher than its setpoint plus an offset"
+ annotation (Placement(transformation(extent={{-60,-10},{-40,10}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Hysteresis hysTSup1(
+ final uLow=largeTDif - TDifHys,
+ final uHigh=largeTDif,
+ final pre_y_start=false) if have_WSE
+ "Checks if the chilled water supply temperature is higher than its setpoint plus an offset"
+ annotation (Placement(transformation(extent={{-60,-50},{-40,-30}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Or orStaUp1 if have_WSE
+ "Or for staging up"
+ annotation (Placement(transformation(extent={{40,-10},{60,10}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Subtract sub1 if have_WSE
+ "Temperature difference"
+ annotation (Placement(transformation(extent={{-110,-40},{-90,-20}})));
+
+ Buildings.Controls.OBC.CDL.Logical.TrueDelay truDel(
+ final delayTime=longTDelay,
+ final delayOnInit=true)
+ if have_WSE
+ "Delays a true signal"
+ annotation (Placement(transformation(extent={{-20,-10},{0,10}})));
+
+ Buildings.Controls.OBC.CDL.Logical.TrueDelay truDel1(
+ final delayTime=shortTDelay,
+ final delayOnInit=true)
+ if have_WSE
+ "Delays a true signal"
+ annotation (Placement(transformation(extent={{-20,-50},{0,-30}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant noWSE(
+ final k=true) if not have_WSE
+ "Replacement signal for when a plant does not have a WSE"
+ annotation (Placement(transformation(extent={{-20,70},{0,90}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Not not1 "Logical not"
+ annotation (Placement(transformation(extent={{-120,10},{-100,30}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Switch logSwi1
+ "Logical switch"
+ annotation (Placement(transformation(extent={{120,-190},{140,-170}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant noUp(
+ final k=false)
+ "No stage up signal when it is in initial stage"
+ annotation (Placement(transformation(extent={{40,-150},{60,-130}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Edge edg "Rising edge"
+ annotation (Placement(transformation(extent={{-20,-190},{0,-170}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Latch lat
+ "If it is in initial stage, there will be stage up signal when enabling plant"
+ annotation (Placement(transformation(extent={{40,-190},{60,-170}})));
+
+equation
+ connect(uOpe, effCon.uOpe) annotation (Line(points={{-180,200},{-150,200},{-150,
+ 185},{-102,185}},color={0,0,127}));
+ connect(uStaUp, effCon.uStaUp) annotation (Line(points={{-180,170},{-150,170},
+ {-150,175},{-102,175}},color={0,0,127}));
+ connect(TChiWatSupSet, faiSafCon.TChiWatSupSet) annotation (Line(points={{-180,
+ -30},{-140,-30},{-140,109},{-102,109}}, color={0,0,127}));
+ connect(TChiWatSup, faiSafCon.TChiWatSup) annotation (Line(points={{-180,-70},
+ {-130,-70},{-130,106},{-102,106}}, color={0,0,127}));
+ connect(dpChiWatPumSet_local, faiSafCon.dpChiWatPumSet_local) annotation (
+ Line(points={{-180,140},{-120,140},{-120,101},{-102,101}}, color={0,0,127}));
+ connect(dpChiWatPum_local, faiSafCon.dpChiWatPum_local) annotation (Line(
+ points={{-180,110},{-150,110},{-150,98},{-102,98}}, color={0,0,127}));
+ connect(effCon.y, orStaUp.u1) annotation (Line(points={{-78,180},{-40,180},{-40,
+ 128},{-22,128}}, color={255,0,255}));
+ connect(faiSafCon.y, orStaUp.u2) annotation (Line(points={{-78,100},{-50,100},
+ {-50,120},{-22,120}}, color={255,0,255}));
+ connect(intGreThr.y, logSwi.u2) annotation (Line(points={{-98,-100},{20,-100},
+ {20,80},{78,80}}, color={255,0,255}));
+ connect(orStaUp.y, logSwi.u1) annotation (Line(points={{2,120},{10,120},{10,88},
+ {78,88}}, color={255,0,255}));
+ connect(sub1.y, hysTSup1.u)
+ annotation (Line(points={{-88,-30},{-80,-30},{-80,-40},{-62,-40}}, color={0,0,127}));
+ connect(hysTSup.y, truDel.u)
+ annotation (Line(points={{-38,0},{-22,0}}, color={255,0,255}));
+ connect(hysTSup1.y, truDel1.u)
+ annotation (Line(points={{-38,-40},{-22,-40}}, color={255,0,255}));
+ connect(truDel.y, orStaUp1.u1) annotation (Line(points={{2,0},{38,0}},
+ color={255,0,255}));
+ connect(truDel1.y, orStaUp1.u2) annotation (Line(points={{2,-40},{10,-40},{10,
+ -8},{38,-8}}, color={255,0,255}));
+ connect(orStaUp1.y, logSwi.u3) annotation (Line(points={{62,0},{70,0},{70,72},
+ {78,72}}, color={255,0,255}));
+ connect(noWSE.y, logSwi.u2)
+ annotation (Line(points={{2,80},{78,80}}, color={255,0,255}));
+ connect(noWSE.y, logSwi.u3) annotation (Line(points={{2,80},{30,80},{30,72},{78,
+ 72}}, color={255,0,255}));
+ connect(u, intGreThr.u)
+ annotation (Line(points={{-180,-100},{-122,-100}}, color={255,127,0}));
+ connect(sub1.y, hysTSup.u) annotation (Line(points={{-88,-30},{-80,-30},{-80,0},
+ {-62,0}}, color={0,0,127}));
+ connect(TChiWatSup, sub1.u1) annotation (Line(points={{-180,-70},{-130,-70},{-130,
+ -24},{-112,-24}}, color={0,0,127}));
+ connect(TChiWatSupSet, sub1.u2) annotation (Line(points={{-180,-30},{-140,-30},
+ {-140,-36},{-112,-36}}, color={0,0,127}));
+ connect(uAvaCur, not1.u)
+ annotation (Line(points={{-180,20},{-122,20}}, color={255,0,255}));
+ connect(not1.y, orStaUp.u3) annotation (Line(points={{-98,20},{-40,20},{-40,112},
+ {-22,112}}, color={255,0,255}));
+ connect(dpChiWatPumSet_remote, faiSafCon.dpChiWatPumSet_remote) annotation (
+ Line(points={{-180,80},{-150,80},{-150,94},{-102,94}}, color={0,0,127}));
+ connect(dpChiWatPum_remote, faiSafCon.dpChiWatPum_remote) annotation (Line(
+ points={{-180,50},{-120,50},{-120,91},{-102,91}}, color={0,0,127}));
+ connect(edg.y, lat.u)
+ annotation (Line(points={{2,-180},{38,-180}}, color={255,0,255}));
+ connect(lat.y, logSwi1.u2)
+ annotation (Line(points={{62,-180},{118,-180}}, color={255,0,255}));
+ connect(logSwi.y, logSwi1.u3) annotation (Line(points={{102,80},{110,80},{110,
+ -188},{118,-188}}, color={255,0,255}));
+ connect(logSwi1.y, y)
+ annotation (Line(points={{142,-180},{180,-180}}, color={255,0,255}));
+ connect(noUp.y, logSwi1.u1) annotation (Line(points={{62,-140},{100,-140},{100,
+ -172},{118,-172}}, color={255,0,255}));
+ connect(logSwi.y, lat.clr) annotation (Line(points={{102,80},{110,80},{110,-110},
+ {20,-110},{20,-186},{38,-186}}, color={255,0,255}));
+ connect(uPla, edg.u)
+ annotation (Line(points={{-180,-180},{-22,-180}}, color={255,0,255}));
+ annotation (defaultComponentName = "staUp",
+ Icon(coordinateSystem(extent={{-100,-100},{100,100}}),
+ graphics={
+ Rectangle(
+ extent={{-100,-100},{100,100}},
+ lineColor={0,0,127},
+ fillColor={255,255,255},
+ fillPattern=FillPattern.Solid),
+ Text(
+ extent={{-100,140},{100,100}},
+ textColor={0,0,255},
+ textString="%name"),
+ Rectangle(extent={{-80,-10},{-20,-22}}, lineColor={0,0,127}),
+ Rectangle(extent={{-80,-28},{-20,-40}}, lineColor={0,0,127}),
+ Rectangle(extent={{-76,-22},{-72,-28}}, lineColor={0,0,127}),
+ Rectangle(extent={{-28,-22},{-24,-28}}, lineColor={0,0,127}),
+ Rectangle(extent={{20,-10},{80,-22}}, lineColor={0,0,127}),
+ Rectangle(extent={{20,-28},{80,-40}}, lineColor={0,0,127}),
+ Rectangle(extent={{24,-22},{28,-28}}, lineColor={0,0,127}),
+ Rectangle(extent={{72,-22},{76,-28}}, lineColor={0,0,127}),
+ Rectangle(extent={{20,30},{80,18}}, lineColor={0,0,127}),
+ Rectangle(extent={{20,12},{80,0}}, lineColor={0,0,127}),
+ Rectangle(extent={{24,18},{28,12}}, lineColor={0,0,127}),
+ Rectangle(extent={{72,18},{76,12}}, lineColor={0,0,127}),
+ Line(points={{130,-48}}, color={0,0,127})}), Diagram(
+ coordinateSystem(preserveAspectRatio=false,
+ extent={{-160,-220},{160,220}})),
+Documentation(info="
+Outputs a boolean stage up signal y
based on the
+various plant operation conditions that get provided as input signals.
+Implemented according to 1711 March 2020 Draft, section 5.2.4.15.
+ and applies to primary-only plant with and without a WSE.
+
+
+The stage up signal becomes true
when:
+
+
+-
+Current stage becomes unavailable, or
+
+-
+Efficiency condition is true, or
+
+-
+Failsafe condition is true.
+
+
+
+If have_WSE
boolean flag is true, staging up from WSE only to the first available
+stage occurs when the chilled water supply temperature is sufficienctly above its setpoint
+for either a shorter or a longer time period
+
+
+Note that when the plant is enabled in chiller mode, the stage up signal will keep
+false. The plant will control by the
+
+Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Generic.PlantEnable.EnableWithChiller.
+
+",
+revisions="
+
+-
+March 15, 2020, by Milica Grahovac:
+First implementation.
+
+
+"));
+end Up;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/SetPoints/Subsequences/Validation/Capacities_u.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/SetPoints/Subsequences/Validation/Capacities_u.mo
new file mode 100644
index 00000000000..939ff7af312
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/SetPoints/Subsequences/Validation/Capacities_u.mo
@@ -0,0 +1,162 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.SetPoints.Subsequences.Validation;
+model Capacities_u
+ "Validate stage capacities subsequence for chiller stage inputs"
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.SetPoints.Subsequences.Capacities
+ staCap0(final nSta=3)
+ "Outputs design capacitites at the current and stage one lower"
+ annotation (Placement(transformation(extent={{-100,0},{-80,20}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.SetPoints.Subsequences.Capacities
+ staCap1(final nSta=3)
+ "Outputs design capacitites at the current and stage one lower"
+ annotation (Placement(transformation(extent={{-20,0},{0,20}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.SetPoints.Subsequences.Capacities
+ staCap2(final nSta=3)
+ "Outputs design capacitites at the current and stage one lower"
+ annotation (Placement(transformation(extent={{60,0},{80,20}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.SetPoints.Subsequences.Capacities
+ staCap3(final nSta=3)
+ "Outputs design capacitites at the current and stage one lower"
+ annotation (Placement(transformation(extent={{140,0},{160,20}})));
+
+protected
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant desStaCap[3](
+ final k={2e5,1e6,1.5e6}) "Design stage capacities"
+ annotation (Placement(transformation(extent={{-140,100},{-120,120}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant minStaCap[3](
+ final k={4e4,2e5,3e5}) "Minimum stage capacities"
+ annotation (Placement(transformation(extent={{-140,60},{-120,80}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant stage0(final k=0)
+ "Chiller stage"
+ annotation (Placement(transformation(extent={{-140,20},{-120,40}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant stage1(final k=1)
+ "Chiller stage"
+ annotation (Placement(transformation(extent={{-60,20},{-40,40}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant stage2(final k=2)
+ "Chiller stage"
+ annotation (Placement(transformation(extent={{20,20},{40,40}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant con(final k=true)
+ "Boolean signal"
+ annotation (Placement(transformation(extent={{-140,-100},{-120,-80}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant stage3(final k=3)
+ "Chiller stage"
+ annotation (Placement(transformation(extent={{100,20},{120,40}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant stage4(final k=3)
+ "Chiller stage"
+ annotation (Placement(transformation(extent={{100,-20},{120,0}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant stage5(final k=3)
+ "Chiller stage"
+ annotation (Placement(transformation(extent={{20,-20},{40,0}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant stage6(final k=3)
+ "Chiller stage"
+ annotation (Placement(transformation(extent={{-60,-20},{-40,0}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant stage7(final k=1)
+ "Chiller stage"
+ annotation (Placement(transformation(extent={{-140,-20},{-120,0}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant con1(final k=false)
+ "Boolean signal"
+ annotation (Placement(transformation(extent={{-140,-60},{-120,-40}})));
+
+equation
+ connect(stage0.y, staCap0.u)
+ annotation (Line(points={{-118,30},{-110,30},{-110,13},{-102,13}},
+ color={255,127,0}));
+ connect(stage1.y, staCap1.u)
+ annotation (Line(points={{-38,30},{-30,30},{-30,13},{-22,13}},
+ color={255,127,0}));
+ connect(stage2.y, staCap2.u)
+ annotation (Line(points={{42,30},{50,30},{50,13},{58,13}}, color={255,127,0}));
+ connect(stage3.y, staCap3.u) annotation (Line(points={{122,30},{130,30},{130,13},
+ {138,13}}, color={255,127,0}));
+ connect(stage0.y, staCap0.uDown) annotation (Line(points={{-118,30},{-110,30},
+ {-110,7},{-102,7}}, color={255,127,0}));
+ connect(staCap0.uUp, stage7.y) annotation (Line(points={{-102,10},{-116,10},{-116,
+ -10},{-118,-10}}, color={255,127,0}));
+ connect(stage0.y, staCap1.uDown) annotation (Line(points={{-118,30},{-70,30},{
+ -70,7},{-22,7}}, color={255,127,0}));
+ connect(stage6.y, staCap1.uUp) annotation (Line(points={{-38,-10},{-30,-10},{-30,
+ 10},{-22,10}}, color={255,127,0}));
+ connect(stage1.y, staCap2.uDown) annotation (Line(points={{-38,30},{10,30},{10,
+ 7},{58,7}}, color={255,127,0}));
+ connect(staCap2.uUp, stage5.y) annotation (Line(points={{58,10},{50,10},{50,-10},
+ {42,-10}}, color={255,127,0}));
+ connect(stage2.y, staCap3.uDown) annotation (Line(points={{42,30},{90,30},{90,
+ 7},{138,7}}, color={255,127,0}));
+ connect(staCap3.uUp, stage4.y) annotation (Line(points={{138,10},{130,10},{130,
+ -10},{122,-10}}, color={255,127,0}));
+ connect(desStaCap.y, staCap0.uDesCap) annotation (Line(points={{-118,110},{
+ -106,110},{-106,19},{-102,19}}, color={0,0,127}));
+ connect(minStaCap.y, staCap0.uMinCap) annotation (Line(points={{-118,70},{-108,
+ 70},{-108,16},{-102,16}}, color={0,0,127}));
+ connect(desStaCap.y, staCap1.uDesCap) annotation (Line(points={{-118,110},{
+ -24,110},{-24,19},{-22,19}}, color={0,0,127}));
+ connect(minStaCap.y, staCap1.uMinCap) annotation (Line(points={{-118,70},{-26,
+ 70},{-26,16},{-22,16}}, color={0,0,127}));
+ connect(desStaCap.y, staCap2.uDesCap) annotation (Line(points={{-118,110},{54,
+ 110},{54,19},{58,19}}, color={0,0,127}));
+ connect(minStaCap.y, staCap2.uMinCap) annotation (Line(points={{-118,70},{52,70},
+ {52,16},{58,16}}, color={0,0,127}));
+ connect(desStaCap.y, staCap3.uDesCap) annotation (Line(points={{-118,110},{
+ 134,110},{134,19},{138,19}}, color={0,0,127}));
+ connect(staCap3.uMinCap, minStaCap.y) annotation (Line(points={{138,16},{132,16},
+ {132,70},{-118,70}}, color={0,0,127}));
+ connect(con1.y, staCap1.uHig) annotation (Line(points={{-118,-50},{-28,-50},{-28,
+ 4},{-22,4}}, color={255,0,255}));
+ connect(con.y, staCap1.uLow) annotation (Line(points={{-118,-90},{-26,-90},{-26,
+ 1},{-22,1}}, color={255,0,255}));
+ connect(staCap0.uHig, con1.y) annotation (Line(points={{-102,4},{-110,4},{-110,
+ -50},{-118,-50}}, color={255,0,255}));
+ connect(staCap0.uLow, con.y) annotation (Line(points={{-102,1},{-108,1},{-108,
+ -90},{-118,-90}}, color={255,0,255}));
+ connect(con1.y, staCap2.uHig) annotation (Line(points={{-118,-50},{52,-50},{52,
+ 4},{58,4}}, color={255,0,255}));
+ connect(con1.y, staCap2.uLow) annotation (Line(points={{-118,-50},{54,-50},{54,
+ 1},{58,1}}, color={255,0,255}));
+ connect(con.y, staCap3.uHig) annotation (Line(points={{-118,-90},{132,-90},{132,
+ 4},{138,4}}, color={255,0,255}));
+ connect(con1.y, staCap3.uLow) annotation (Line(points={{-118,-50},{134,-50},{134,
+ 1},{138,1}}, color={255,0,255}));
+annotation (
+ experiment(StopTime=10.0, Tolerance=1e-06),
+ __Dymola_Commands(file="modelica://Buildings/Resources/Scripts/Dymola/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/SetPoints/Subsequences/Validation/Capacities_u.mos"
+ "Simulate and plot"),
+ Documentation(info="
+
+This example validates
+
+Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.Generic.Capacities.
+
+", revisions="
+
+-
+January 15, 2020, by Milica Grahovac:
+First implementation.
+
+
+"),
+Icon(graphics={
+ Ellipse(lineColor = {75,138,73},
+ fillColor={255,255,255},
+ fillPattern = FillPattern.Solid,
+ extent = {{-100,-100},{100,100}}),
+ Polygon(lineColor = {0,0,255},
+ fillColor = {75,138,73},
+ pattern = LinePattern.None,
+ fillPattern = FillPattern.Solid,
+ points = {{-36,60},{64,0},{-36,-60},{-36,60}})}),Diagram(
+ coordinateSystem(preserveAspectRatio=false, extent={{-180,-120},{180,140}})));
+end Capacities_u;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/SetPoints/Subsequences/Validation/Capacities_uLow_uHig.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/SetPoints/Subsequences/Validation/Capacities_uLow_uHig.mo
new file mode 100644
index 00000000000..a99ea42f0f9
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/SetPoints/Subsequences/Validation/Capacities_uLow_uHig.mo
@@ -0,0 +1,126 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.SetPoints.Subsequences.Validation;
+model Capacities_uLow_uHig
+ "Validate stage capacities subsequence for highest and lowest available stage inputs"
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.SetPoints.Subsequences.Capacities
+ staCap0(final nSta=3)
+ "Nominal capacitites at the current and stage one lower"
+ annotation (Placement(transformation(extent={{-60,0},{-40,20}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.SetPoints.Subsequences.Capacities
+ staCap1(final nSta=3)
+ "Nominal capacitites at the current and stage one lower"
+ annotation (Placement(transformation(extent={{20,0},{40,20}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.SetPoints.Subsequences.Capacities
+ staCap2(final nSta=3)
+ "Nominal capacitites at the current and stage one lower"
+ annotation (Placement(transformation(extent={{100,0},{120,20}})));
+
+protected
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant desStaCap[3](
+ final k={2e5,1e6,1.5e6}) "Design stage capacities"
+ annotation (Placement(transformation(extent={{-100,100},{-80,120}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant minStaCap[3](
+ final k={4e4,2e5,3e5}) "Minimum stage capacities"
+ annotation (Placement(transformation(extent={{-100,60},{-80,80}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant stage0(final k=2)
+ "Chiller stage"
+ annotation (Placement(transformation(extent={{-100,20},{-80,40}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant stage2(final k=2)
+ "Chiller stage"
+ annotation (Placement(transformation(extent={{60,20},{80,40}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant con(final k=true)
+ "Boolean signal"
+ annotation (Placement(transformation(extent={{-100,-100},{-80,-80}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant stage6(final k=3)
+ "Chiller stage"
+ annotation (Placement(transformation(extent={{-20,-20},{0,0}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant stage7(final k=1)
+ "Chiller stage"
+ annotation (Placement(transformation(extent={{-100,-20},{-80,0}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant con1(final k=false)
+ "Boolean signal"
+ annotation (Placement(transformation(extent={{-100,-60},{-80,-40}})));
+
+equation
+ connect(stage0.y, staCap0.u)
+ annotation (Line(points={{-78,30},{-70,30},{-70,13},{-62,13}},
+ color={255,127,0}));
+ connect(stage2.y, staCap2.u)
+ annotation (Line(points={{82,30},{90,30},{90,13},{98,13}}, color={255,127,0}));
+ connect(stage0.y, staCap1.uDown) annotation (Line(points={{-78,30},{-20,30},{-20,
+ 7},{18,7}}, color={255,127,0}));
+ connect(stage6.y, staCap1.uUp) annotation (Line(points={{2,-10},{10,-10},{10,10},
+ {18,10}}, color={255,127,0}));
+ connect(desStaCap.y, staCap0.uDesCap) annotation (Line(points={{-78,110},{-66,
+ 110},{-66,19},{-62,19}}, color={0,0,127}));
+ connect(minStaCap.y, staCap0.uMinCap) annotation (Line(points={{-78,70},{-68,70},
+ {-68,16},{-62,16}}, color={0,0,127}));
+ connect(desStaCap.y, staCap1.uDesCap) annotation (Line(points={{-78,110},{16,
+ 110},{16,19},{18,19}}, color={0,0,127}));
+ connect(minStaCap.y, staCap1.uMinCap) annotation (Line(points={{-78,70},{14,70},
+ {14,16},{18,16}}, color={0,0,127}));
+ connect(desStaCap.y, staCap2.uDesCap) annotation (Line(points={{-78,110},{94,
+ 110},{94,19},{98,19}}, color={0,0,127}));
+ connect(minStaCap.y, staCap2.uMinCap) annotation (Line(points={{-78,70},{92,70},
+ {92,16},{98,16}}, color={0,0,127}));
+ connect(con1.y, staCap1.uHig) annotation (Line(points={{-78,-50},{12,-50},{12,
+ 4},{18,4}}, color={255,0,255}));
+ connect(con.y, staCap1.uLow) annotation (Line(points={{-78,-90},{14,-90},{14,1},
+ {18,1}}, color={255,0,255}));
+ connect(staCap0.uUp, stage0.y) annotation (Line(points={{-62,10},{-70,10},{-70,
+ 30},{-78,30}}, color={255,127,0}));
+ connect(stage7.y, staCap0.uDown) annotation (Line(points={{-78,-10},{-70,-10},
+ {-70,7},{-62,7}}, color={255,127,0}));
+ connect(con1.y, staCap0.uLow) annotation (Line(points={{-78,-50},{-66,-50},{-66,
+ 1},{-62,1}}, color={255,0,255}));
+ connect(con.y, staCap0.uHig) annotation (Line(points={{-78,-90},{-68,-90},{-68,
+ 4},{-62,4}}, color={255,0,255}));
+ connect(con.y, staCap2.uHig) annotation (Line(points={{-78,-90},{92,-90},{92,4},
+ {98,4}}, color={255,0,255}));
+ connect(con.y, staCap2.uLow) annotation (Line(points={{-78,-90},{94,-90},{94,1},
+ {98,1}}, color={255,0,255}));
+ connect(stage2.y, staCap2.uUp) annotation (Line(points={{82,30},{90,30},{90,10},
+ {98,10}}, color={255,127,0}));
+ connect(stage2.y, staCap2.uDown) annotation (Line(points={{82,30},{90,30},{90,
+ 7},{98,7}}, color={255,127,0}));
+ connect(stage0.y, staCap1.u) annotation (Line(points={{-78,30},{0,30},{0,13},{
+ 18,13}}, color={255,127,0}));
+annotation (
+ experiment(StopTime=10.0, Tolerance=1e-06),
+ __Dymola_Commands(file="modelica://Buildings/Resources/Scripts/Dymola/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/SetPoints/Subsequences/Validation/Capacities_uLow_uHig.mos"
+ "Simulate and plot"),
+ Documentation(info="
+
+This example validates
+
+Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.Generic.Capacities.
+
+", revisions="
+
+-
+January 15, 2020, by Milica Grahovac:
+First implementation.
+
+
+"),
+Icon(graphics={
+ Ellipse(lineColor = {75,138,73},
+ fillColor={255,255,255},
+ fillPattern = FillPattern.Solid,
+ extent = {{-100,-100},{100,100}}),
+ Polygon(lineColor = {0,0,255},
+ fillColor = {75,138,73},
+ pattern = LinePattern.None,
+ fillPattern = FillPattern.Solid,
+ points = {{-36,60},{64,0},{-36,-60},{-36,60}})}),Diagram(
+ coordinateSystem(preserveAspectRatio=false, extent={{-120,-120},{140,140}})));
+end Capacities_uLow_uHig;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/SetPoints/Subsequences/Validation/CapacityRequirement.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/SetPoints/Subsequences/Validation/CapacityRequirement.mo
new file mode 100644
index 00000000000..5f37688752f
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/SetPoints/Subsequences/Validation/CapacityRequirement.mo
@@ -0,0 +1,155 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.SetPoints.Subsequences.Validation;
+model CapacityRequirement
+ "Validates the cooling capacity requirement calculation"
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.SetPoints.Subsequences.CapacityRequirement
+ capReq "Capacity requirement when no stage chage occurs"
+ annotation (Placement(transformation(extent={{-80,0},{-60,20}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.SetPoints.Subsequences.CapacityRequirement
+ capReq1 "Capacity requirement when stage change occurs and the process is shorter than 15 minutes"
+ annotation (Placement(transformation(extent={{20,0},{40,20}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.SetPoints.Subsequences.CapacityRequirement
+ capReq2 "Capacity requirement when stage change occurs and the process is longer than 15 minutes"
+ annotation (Placement(transformation(extent={{120,0},{140,20}})));
+
+protected
+ parameter Real TChiWatSupSet(
+ final unit="K",
+ final quantity="ThermodynamicTemperature",
+ displayUnit="degC")=285.15
+ "Chilled water supply set temperature";
+
+ parameter Real aveTChiWatRet(
+ final unit="K",
+ final quantity="ThermodynamicTemperature",
+ displayUnit="degC")=288.15
+ "Average measured chilled water return temperature";
+
+ parameter Real aveVChiWat_flow(
+ final quantity="VolumeFlowRate",
+ final unit="m3/s") = 0.02
+ "Average measured chilled water flow rate";
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant TCWSupSet(
+ final k=TChiWatSupSet) "Chilled water supply temperature"
+ annotation (Placement(transformation(extent={{-140,10},{-120,30}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Sine TChiWatRet(
+ final amplitude=2,
+ final freqHz=1/300,
+ final offset=aveTChiWatRet) "Chilled water return temeprature"
+ annotation (Placement(transformation(extent={{-140,-30},{-120,-10}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Sine chiWatFlow(
+ final freqHz=1/600,
+ final offset=aveVChiWat_flow,
+ final amplitude=0.01) "Chilled water flow"
+ annotation (Placement(transformation(extent={{-140,-70},{-120,-50}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant chaPro(final k=false)
+ "Stage change is not in process"
+ annotation (Placement(transformation(extent={{-140,60},{-120,80}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant TCWSupSet1(
+ final k=TChiWatSupSet) "Chilled water supply temperature"
+ annotation (Placement(transformation(extent={{-40,10},{-20,30}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Sine TChiWatRet1(
+ final amplitude=2,
+ final freqHz=1/300,
+ final offset=aveTChiWatRet) "Chilled water return temeprature"
+ annotation (Placement(transformation(extent={{-40,-30},{-20,-10}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Sine chiWatFlow1(
+ final freqHz=1/600,
+ final offset=aveVChiWat_flow,
+ final amplitude=0.01) "Chilled water flow"
+ annotation (Placement(transformation(extent={{-40,-70},{-20,-50}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Pulse chaPro1(
+ final period=24*60,
+ final shift=5*60)
+ "Stage change process status signal"
+ annotation (Placement(transformation(extent={{-40,60},{-20,80}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant TCWSupSet2(
+ final k= TChiWatSupSet) "Chilled water supply temperature"
+ annotation (Placement(transformation(extent={{60,10},{80,30}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Sine TChiWatRet2(
+ final amplitude=2,
+ final freqHz=1/300,
+ final offset=aveTChiWatRet) "Chilled water return temeprature"
+ annotation (Placement(transformation(extent={{60,-30},{80,-10}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Sine chiWatFlow2(
+ final freqHz=1/600,
+ final offset=aveVChiWat_flow,
+ final amplitude=0.01) "Chilled water flow"
+ annotation (Placement(transformation(extent={{60,-70},{80,-50}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Pulse chaPro2(
+ final period=32*60,
+ final shift=5*60)
+ "Stage change process status signal"
+ annotation (Placement(transformation(extent={{60,60},{80,80}})));
+
+equation
+ connect(TCWSupSet.y, capReq.TChiWatSupSet) annotation (Line(points={{-118,20},
+ {-90,20},{-90,19},{-82,19}}, color={0,0,127}));
+ connect(TChiWatRet.y, capReq.TChiWatRet) annotation (Line(points={{-118,-20},
+ {-100,-20},{-100,14},{-82,14}},
+ color={0,0,127}));
+ connect(chiWatFlow.y, capReq.VChiWat_flow) annotation (Line(points={{-118,-60},
+ {-88,-60},{-88,9},{-82,9}},color={0,0,127}));
+ connect(chaPro.y, capReq.chaPro) annotation (Line(points={{-118,70},{-86,70},
+ {-86,2},{-82,2}}, color={255,0,255}));
+ connect(TCWSupSet1.y, capReq1.TChiWatSupSet) annotation (Line(points={{-18,20},
+ {10,20},{10,19},{18,19}}, color={0,0,127}));
+ connect(TChiWatRet1.y, capReq1.TChiWatRet) annotation (Line(points={{-18,-20},
+ {0,-20},{0,14},{18,14}},
+ color={0,0,127}));
+ connect(chiWatFlow1.y, capReq1.VChiWat_flow) annotation (Line(points={{-18,-60},
+ {12,-60},{12,9},{18,9}}, color={0,0,127}));
+ connect(chaPro1.y, capReq1.chaPro) annotation (Line(points={{-18,70},{14,70},
+ {14,2},{18,2}}, color={255,0,255}));
+ connect(TCWSupSet2.y, capReq2.TChiWatSupSet) annotation (Line(points={{82,20},
+ {110,20},{110,19},{118,19}}, color={0,0,127}));
+ connect(TChiWatRet2.y, capReq2.TChiWatRet) annotation (Line(points={{82,-20},
+ {100,-20},{100,14},{118,14}},
+ color={0,0,127}));
+ connect(chiWatFlow2.y, capReq2.VChiWat_flow) annotation (Line(points={{82,-60},
+ {112,-60},{112,9},{118,9}}, color={0,0,127}));
+ connect(chaPro2.y, capReq2.chaPro) annotation (Line(points={{82,70},{114,70},
+ {114,2},{118,2}}, color={255,0,255}));
+annotation (experiment(StopTime=3600.0, Tolerance=1e-06),
+ __Dymola_Commands(file="modelica://Buildings/Resources/Scripts/Dymola/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/SetPoints/Subsequences/Validation/CapacityRequirement.mos"
+ "Simulate and plot"),
+ Documentation(info="
+
+This example validates
+
+Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.Generic.CapacityRequirement.
+
+", revisions="
+
+-
+December 1, 2019, by Milica Grahovac:
+First implementation.
+
+
+"),
+Icon(graphics={
+ Ellipse(lineColor = {75,138,73},
+ fillColor={255,255,255},
+ fillPattern = FillPattern.Solid,
+ extent = {{-100,-100},{100,100}}),
+ Polygon(lineColor = {0,0,255},
+ fillColor = {75,138,73},
+ pattern = LinePattern.None,
+ fillPattern = FillPattern.Solid,
+ points = {{-36,60},{64,0},{-36,-60},{-36,60}})}),Diagram(
+ coordinateSystem(preserveAspectRatio=false, extent={{-160,-100},{160,100}})));
+end CapacityRequirement;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/SetPoints/Subsequences/Validation/Change.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/SetPoints/Subsequences/Validation/Change.mo
new file mode 100644
index 00000000000..98b60d681a9
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/SetPoints/Subsequences/Validation/Change.mo
@@ -0,0 +1,343 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.SetPoints.Subsequences.Validation;
+model Change
+ "Validates chiller stage status setpoint signal generation for plants with WSE"
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.SetPoints.Subsequences.Change
+ cha(final nSta=10)
+ "Controls for stage up signal variations"
+ annotation (Placement(transformation(extent={{-40,180},{-20,200}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.SetPoints.Subsequences.Change
+ cha1(final nSta=10)
+ "Controls for stage down signal variations"
+ annotation (Placement(transformation(extent={{-40,0},{-20,20}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.SetPoints.Subsequences.Change
+ cha2
+ "Controls for stage up/stage down signal interaction"
+ annotation (Placement(transformation(extent={{-40,-180},{-20,-160}})));
+
+ Buildings.Controls.OBC.CDL.Logical.TrueFalseHold truFalHol(
+ final trueHoldDuration=10,
+ final falseHoldDuration=0)
+ "Short true hold to have stage change edge signals be better visible"
+ annotation (Placement(transformation(extent={{0,120},{20,140}})));
+
+ Buildings.Controls.OBC.CDL.Logical.TrueFalseHold truFalHol1(
+ final trueHoldDuration=10,
+ final falseHoldDuration=0)
+ "Short true hold to have stage change edge signals be better visible"
+ annotation (Placement(transformation(extent={{0,-60},{20,-40}})));
+
+ Buildings.Controls.OBC.CDL.Logical.TrueFalseHold truFalHol2(
+ final trueHoldDuration=10,
+ final falseHoldDuration=0)
+ "Short true hold to have stage change edge signals be better visible"
+ annotation (Placement(transformation(extent={{0,-240},{20,-220}})));
+
+protected
+ parameter Real TChiWatSupSet(
+ final unit="K",
+ final quantity="ThermodynamicTemperature",
+ displayUnit="degC")=285.15
+ "Chilled water supply set temperature";
+
+ parameter Real aveTChiWatRet(
+ final unit="K",
+ final quantity="ThermodynamicTemperature",
+ displayUnit="degC")=288.15
+ "Average measured chilled water return temperature";
+
+ parameter Real minStaRuntime(
+ final unit="s",
+ final quantity="Time",
+ displayUnit="h")=900
+ "Minimum stage runtime";
+
+ parameter Real aveVChiWat_flow(
+ final unit="m3/s",
+ final quantity="VolumeFlowRate",
+ displayUnit="m3/s")=0.05
+ "Average measured chilled water flow rate";
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.TimeTable timeTable(
+ final table=[0,0; 600,0; 600,1; 1200,1; 1200,0; 2500,0; 2500,1; 3700,1; 3700,0; 4300,
+ 0; 4300,1; 4500,1; 4500,0; 6000,0; 6000,1; 9200,1; 9200,0; 12000,0;
+ 12000,1; 14000,1; 14000,0])
+ "Stage up signal for the first exampe and stage down signal for the second example from the top"
+ annotation (Placement(transformation(extent={{-160,220},{-140,240}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.GreaterThreshold greThr(
+ final t=0.5) "Greater than threshold"
+ annotation (Placement(transformation(extent={{-120,220},{-100,240}})));
+
+ Buildings.Controls.OBC.CDL.Conversions.IntegerToReal intToRea
+ "Type converter"
+ annotation (Placement(transformation(extent={{20,180},{40,200}})));
+
+ Buildings.Controls.OBC.CDL.Discrete.ZeroOrderHold zerOrdHol(
+ final samplePeriod=1) "Zero order hold"
+ annotation (Placement(transformation(extent={{60,180},{80,200}})));
+
+ Buildings.Controls.OBC.CDL.Conversions.RealToInteger reaToInt
+ "Type converter"
+ annotation (Placement(transformation(extent={{100,180},{120,200}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Add addInt
+ "Adder"
+ annotation (Placement(transformation(extent={{140,200},{160,220}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Subtract addInt1 "Adder"
+ annotation (Placement(transformation(extent={{140,160},{160,180}})));
+
+ Buildings.Controls.OBC.CDL.Conversions.IntegerToReal intToRea1
+ "Type converter"
+ annotation (Placement(transformation(extent={{20,0},{40,20}})));
+
+ Buildings.Controls.OBC.CDL.Discrete.ZeroOrderHold zerOrdHol1(
+ final samplePeriod=1) "Zero order hold"
+ annotation (Placement(transformation(extent={{60,0},{80,20}})));
+
+ Buildings.Controls.OBC.CDL.Conversions.RealToInteger reaToInt1
+ "Type converter"
+ annotation (Placement(transformation(extent={{100,0},{120,20}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Add addInt2 "Adder"
+ annotation (Placement(transformation(extent={{140,20},{160,40}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Subtract addInt3 "Addder"
+ annotation (Placement(transformation(extent={{140,-20},{160,0}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.TimeTable timeTable2(
+ final table=[0,0; 800,0; 800,1; 2700,1; 2700,0; 4500,0; 4500,1; 5200,1; 5200,0;
+ 6000,0; 6000,1; 6900,1; 6900,0; 7800,0; 7800,1; 8700,1; 8700,0; 12000,0;
+ 12000,1; 14000,1; 14000,0])
+ "Stage up signal, if simultaneous stage up and down signals are generated the plant will stage down"
+ annotation (Placement(transformation(extent={{-160,-140},{-140,-120}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.GreaterThreshold greThr2(
+ final t=0.5) "Greater threshold"
+ annotation (Placement(transformation(extent={{-120,-140},{-100,-120}})));
+
+ Buildings.Controls.OBC.CDL.Conversions.IntegerToReal intToRea2
+ "Type converter"
+ annotation (Placement(transformation(extent={{20,-180},{40,-160}})));
+
+ Buildings.Controls.OBC.CDL.Discrete.ZeroOrderHold zerOrdHol2(
+ final samplePeriod=1) "Zero order hold"
+ annotation (Placement(transformation(extent={{60,-180},{80,-160}})));
+
+ Buildings.Controls.OBC.CDL.Conversions.RealToInteger reaToInt2
+ "Type converter"
+ annotation (Placement(transformation(extent={{100,-180},{120,-160}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Add addInt4 "Adder"
+ annotation (Placement(transformation(extent={{140,-160},{160,-140}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Subtract addInt5 "Adder"
+ annotation (Placement(transformation(extent={{140,-200},{160,-180}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.GreaterThreshold greThr3(
+ final t=0.5) "Greater than threshold"
+ annotation (Placement(transformation(extent={{-120,-180},{-100,-160}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant noStaChaSig(
+ final k=false)
+ "No stage change signal"
+ annotation (Placement(transformation(extent={{-200,100},{-180,120}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.TimeTable timeTable1(
+ final table=[0,0; 1600,0; 1600,1; 2400,1; 2400,0; 3700,0; 3700,1; 5900,1; 5900,
+ 0; 6900,0; 6900,1; 7800,1; 7800,0; 12000,0; 12000,1; 14000,1; 14000,0])
+ "Stage down signal"
+ annotation (Placement(transformation(extent={{-160,-180},{-140,-160}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Max maxInt "Maximum"
+ annotation (Placement(transformation(extent={{180,140},{200,160}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Max maxInt1 "Maximum"
+ annotation (Placement(transformation(extent={{180,-40},{200,-20}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Max maxInt2 "Maximum"
+ annotation (Placement(transformation(extent={{180,-220},{200,-200}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant uIni(final k=0)
+ "Chiller stage"
+ annotation (Placement(transformation(extent={{-120,260},{-100,280}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant step(final k=1)
+ "Assuming that the next available stage is always the next stage"
+ annotation (Placement(transformation(extent={{100,220},{120,240}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant uIni1(final k=7)
+ "Chiller stage"
+ annotation (Placement(transformation(extent={{-120,80},{-100,100}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant step1(final k=1)
+ "Assuming that the next available stage is always the next stage"
+ annotation (Placement(transformation(extent={{100,40},{120,60}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant uIni2(final k=3)
+ "Chiller stage"
+ annotation (Placement(transformation(extent={{-120,-100},{-100,-80}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant step2(final k=1)
+ "Assuming that the next available stage is always the next stage"
+ annotation (Placement(transformation(extent={{100,-140},{120,-120}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant u3(final k=0)
+ "Chiller stage"
+ annotation (Placement(transformation(extent={{140,120},{160,140}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant u4(final k=0)
+ "Chiller stage"
+ annotation (Placement(transformation(extent={{140,-60},{160,-40}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant u5(final k=0)
+ "Chiller stage"
+ annotation (Placement(transformation(extent={{140,-240},{160,-220}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.TimeTable timeTable3(
+ final table=[0,0; 10,0; 10,1; 11000,1; 11000,0; 12000,0; 12000,1; 14000,1;
+ 14000,0]) "Plant enable"
+ annotation (Placement(transformation(extent={{-200,20},{-180,40}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.GreaterThreshold greThr1(
+ final t=0.5) "Greater than threshold"
+ annotation (Placement(transformation(extent={{-160,20},{-140,40}})));
+
+equation
+ connect(cha.uIni, uIni.y) annotation (Line(points={{-42,200},{-60,200},{-60,
+ 270},{-98,270}}, color={255,127,0}));
+ connect(timeTable.y[1], greThr.u)
+ annotation (Line(points={{-138,230},{-122,230}}, color={0,0,127}));
+ connect(cha.ySta, intToRea.u) annotation (Line(points={{-18,194},{0,194},{0,
+ 190},{18,190}}, color={255,127,0}));
+ connect(intToRea.y, zerOrdHol.u)
+ annotation (Line(points={{42,190},{58,190}}, color={0,0,127}));
+ connect(zerOrdHol.y, reaToInt.u)
+ annotation (Line(points={{82,190},{98,190}}, color={0,0,127}));
+ connect(reaToInt.y, addInt.u2) annotation (Line(points={{122,190},{130,190},{
+ 130,204},{138,204}}, color={255,127,0}));
+ connect(reaToInt.y, addInt1.u1) annotation (Line(points={{122,190},{130,190},{
+ 130,176},{138,176}}, color={255,127,0}));
+ connect(step.y, addInt.u1) annotation (Line(points={{122,230},{130,230},{130,
+ 216},{138,216}}, color={255,127,0}));
+ connect(step.y, addInt1.u2) annotation (Line(points={{122,230},{126,230},{126,
+ 164},{138,164}}, color={255,127,0}));
+ connect(addInt.y, cha.uAvaUp) annotation (Line(points={{162,210},{170,210},{
+ 170,250},{-50,250},{-50,196},{-42,196}}, color={255,127,0}));
+ connect(cha1.uIni, uIni1.y) annotation (Line(points={{-42,20},{-60,20},{-60,
+ 90},{-98,90}}, color={255,127,0}));
+ connect(cha1.ySta, intToRea1.u) annotation (Line(points={{-18,14},{0,14},{0,
+ 10},{18,10}}, color={255,127,0}));
+ connect(intToRea1.y, zerOrdHol1.u)
+ annotation (Line(points={{42,10},{58,10}}, color={0,0,127}));
+ connect(zerOrdHol1.y, reaToInt1.u)
+ annotation (Line(points={{82,10},{98,10}}, color={0,0,127}));
+ connect(reaToInt1.y, addInt2.u2) annotation (Line(points={{122,10},{130,10},{
+ 130,24},{138,24}},color={255,127,0}));
+ connect(reaToInt1.y, addInt3.u1) annotation (Line(points={{122,10},{130,10},{
+ 130,-4},{138,-4}}, color={255,127,0}));
+ connect(step1.y, addInt2.u1) annotation (Line(points={{122,50},{130,50},{130,
+ 36},{138,36}}, color={255,127,0}));
+ connect(step1.y, addInt3.u2) annotation (Line(points={{122,50},{126,50},{126,
+ -16},{138,-16}}, color={255,127,0}));
+ connect(addInt2.y, cha1.uAvaUp) annotation (Line(points={{162,30},{170,30},{
+ 170,70},{-50,70},{-50,16},{-42,16}}, color={255,127,0}));
+ connect(timeTable2.y[1], greThr2.u)
+ annotation (Line(points={{-138,-130},{-122,-130}}, color={0,0,127}));
+ connect(cha2.uIni, uIni2.y) annotation (Line(points={{-42,-160},{-60,-160},{-60,
+ -90},{-98,-90}}, color={255,127,0}));
+ connect(cha2.ySta, intToRea2.u) annotation (Line(points={{-18,-166},{0,-166},
+ {0,-170},{18,-170}},color={255,127,0}));
+ connect(intToRea2.y, zerOrdHol2.u)
+ annotation (Line(points={{42,-170},{58,-170}}, color={0,0,127}));
+ connect(zerOrdHol2.y, reaToInt2.u)
+ annotation (Line(points={{82,-170},{98,-170}}, color={0,0,127}));
+ connect(reaToInt2.y, addInt4.u2) annotation (Line(points={{122,-170},{130,
+ -170},{130,-156},{138,-156}}, color={255,127,0}));
+ connect(reaToInt2.y, addInt5.u1) annotation (Line(points={{122,-170},{130,
+ -170},{130,-184},{138,-184}}, color={255,127,0}));
+ connect(step2.y, addInt4.u1) annotation (Line(points={{122,-130},{130,-130},{
+ 130,-144},{138,-144}}, color={255,127,0}));
+ connect(step2.y, addInt5.u2) annotation (Line(points={{122,-130},{126,-130},{
+ 126,-196},{138,-196}}, color={255,127,0}));
+ connect(addInt4.y, cha2.uAvaUp) annotation (Line(points={{162,-150},{170,-150},
+ {170,-110},{-50,-110},{-50,-164},{-42,-164}}, color={255,127,0}));
+ connect(noStaChaSig.y, cha.uDow) annotation (Line(points={{-178,110},{-170,
+ 110},{-170,184},{-42,184}}, color={255,0,255}));
+ connect(noStaChaSig.y, cha1.uUp) annotation (Line(points={{-178,110},{-170,
+ 110},{-170,60},{-80,60},{-80,8},{-42,8}},color={255,0,255}));
+ connect(greThr.y, cha.uUp) annotation (Line(points={{-98,230},{-70,230},{-70,
+ 188},{-42,188}}, color={255,0,255}));
+ connect(greThr2.y, cha2.uUp) annotation (Line(points={{-98,-130},{-80,-130},{
+ -80,-172},{-42,-172}}, color={255,0,255}));
+ connect(greThr3.y, cha2.uDow) annotation (Line(points={{-98,-170},{-90,-170},
+ {-90,-176},{-42,-176}},color={255,0,255}));
+ connect(greThr.y, cha1.uDow) annotation (Line(points={{-98,230},{-64,230},{
+ -64,4},{-42,4}}, color={255,0,255}));
+ connect(timeTable1.y[1], greThr3.u)
+ annotation (Line(points={{-138,-170},{-122,-170}}, color={0,0,127}));
+ connect(cha.yChaEdg, truFalHol.u) annotation (Line(points={{-18,186},{-10,186},
+ {-10,130},{-2,130}}, color={255,0,255}));
+ connect(cha1.yChaEdg, truFalHol1.u) annotation (Line(points={{-18,6},{-10,6},
+ {-10,-50},{-2,-50}}, color={255,0,255}));
+ connect(cha2.yChaEdg, truFalHol2.u) annotation (Line(points={{-18,-174},{-10,
+ -174},{-10,-230},{-2,-230}}, color={255,0,255}));
+ connect(maxInt.u2, u3.y) annotation (Line(points={{178,144},{170,144},{170,130},
+ {162,130}}, color={255,127,0}));
+ connect(maxInt.y, cha.uAvaDow) annotation (Line(points={{202,150},{210,150},{210,
+ 110},{-50,110},{-50,192},{-42,192}}, color={255,127,0}));
+ connect(u4.y, maxInt1.u2) annotation (Line(points={{162,-50},{170,-50},{170,
+ -36},{178,-36}}, color={255,127,0}));
+ connect(maxInt1.y, cha1.uAvaDow) annotation (Line(points={{202,-30},{208,-30},
+ {208,-70},{-50,-70},{-50,12},{-42,12}}, color={255,127,0}));
+ connect(u5.y, maxInt2.u2) annotation (Line(points={{162,-230},{170,-230},{170,
+ -216},{178,-216}}, color={255,127,0}));
+ connect(maxInt2.y, cha2.uAvaDow) annotation (Line(points={{202,-210},{208,
+ -210},{208,-252},{-50,-252},{-50,-168},{-42,-168}}, color={255,127,0}));
+ connect(timeTable3.y[1], greThr1.u)
+ annotation (Line(points={{-178,30},{-162,30}}, color={0,0,127}));
+ connect(greThr1.y, cha.uPla) annotation (Line(points={{-138,30},{-130,30},{
+ -130,180},{-42,180}}, color={255,0,255}));
+ connect(greThr1.y, cha1.uPla) annotation (Line(points={{-138,30},{-130,30},{
+ -130,0},{-42,0}}, color={255,0,255}));
+ connect(greThr1.y, cha2.uPla) annotation (Line(points={{-138,30},{-88,30},{
+ -88,-180},{-42,-180}}, color={255,0,255}));
+ connect(addInt3.y, maxInt1.u1) annotation (Line(points={{160,-10},{170,-10},{170,
+ -24},{178,-24}}, color={255,127,0}));
+ connect(addInt5.y, maxInt2.u1) annotation (Line(points={{160,-190},{170,-190},
+ {170,-204},{178,-204}}, color={255,127,0}));
+ connect(addInt1.y, maxInt.u1) annotation (Line(points={{160,170},{170,170},{170,
+ 156},{178,156}}, color={255,127,0}));
+annotation (
+ experiment(StopTime=14000.0, Tolerance=1e-06),
+ __Dymola_Commands(file="modelica://Buildings/Resources/Scripts/Dymola/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/SetPoints/Subsequences/Validation/Change.mos"
+ "Simulate and plot"),
+ Documentation(info="
+
+This example validates
+
+Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.SetPoints.Subsequences.Change.
+
+", revisions="
+
+-
+April 15, 2020, by Milica Grahovac:
+First implementation.
+
+
+"),
+Icon(graphics={
+ Ellipse(lineColor = {75,138,73},
+ fillColor={255,255,255},
+ fillPattern = FillPattern.Solid,
+ extent = {{-100,-100},{100,100}}),
+ Polygon(lineColor = {0,0,255},
+ fillColor = {75,138,73},
+ pattern = LinePattern.None,
+ fillPattern = FillPattern.Solid,
+ points = {{-36,60},{64,0},{-36,-60},{-36,60}})}),Diagram(
+ coordinateSystem(preserveAspectRatio=false, extent={{-220,-280},{220,300}})));
+end Change;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/SetPoints/Subsequences/Validation/ChillerIndices_u.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/SetPoints/Subsequences/Validation/ChillerIndices_u.mo
new file mode 100644
index 00000000000..5dce93390e1
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/SetPoints/Subsequences/Validation/ChillerIndices_u.mo
@@ -0,0 +1,125 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.SetPoints.Subsequences.Validation;
+model ChillerIndices_u
+ "Validates extraction of chiller indices in a given stage"
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.SetPoints.Subsequences.ChillerIndices chiInd(
+ final nSta=3,
+ final nChi=2,
+ staMat={{1,0},{0,1},{1,1}})
+ "Setup with two chillers and three stages"
+ annotation (Placement(transformation(extent={{0,80},{20,100}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.SetPoints.Subsequences.ChillerIndices chiInd1(
+ final nSta=3,
+ final nChi=2,
+ staMat={{1,0},{0,1},{1,1}})
+ "Setup with two chillers and three stages"
+ annotation (Placement(transformation(extent={{0,40},{20,60}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.SetPoints.Subsequences.ChillerIndices chiInd2(
+ final nSta=3,
+ final nChi=2,
+ staMat={{1,0},{0,1},{1,1}})
+ "Setup with two chillers and three stages"
+ annotation (Placement(transformation(extent={{0,0},{20,20}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.SetPoints.Subsequences.ChillerIndices chiInd4(
+ final nSta=5,
+ final nChi=3,
+ staMat={{1,0,0},{1,1,0},{1,0,1},{0,1,1},{1,1,1}})
+ "Setup with three chillers and five stages"
+ annotation (Placement(transformation(extent={{40,60},{60,80}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.SetPoints.Subsequences.ChillerIndices chiInd5(
+ final nSta=5,
+ final nChi=3,
+ final staMat={{1,0,0},{1,1,0},{1,0,1},{0,1,1},{1,1,1}})
+ "Setup with three chillers and five stages"
+ annotation (Placement(transformation(extent={{40,20},{60,40}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.SetPoints.Subsequences.ChillerIndices chiInd6(
+ final nSta=5,
+ final nChi=3,
+ final staMat={{1,0,0},{1,1,0},{1,0,1},{0,1,1},{1,1,1}})
+ "Setup with three chillers and five stages"
+ annotation (Placement(transformation(extent={{40,-60},{60,-40}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.SetPoints.Subsequences.ChillerIndices chiInd7(
+ final nSta=5,
+ final nChi=3,
+ final staMat={{1,0,0},{1,1,0},{1,0,1},{0,1,1},{1,1,1}})
+ "Setup with three chillers and five stages"
+ annotation (Placement(transformation(extent={{40,-100},{60,-80}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.SetPoints.Subsequences.ChillerIndices chiInd3
+ "Setup with default settings that is two chillers and three stages"
+ annotation (Placement(transformation(extent={{0,-40},{20,-20}})));
+
+protected
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant u(final k=0)
+ "Chiller stage"
+ annotation (Placement(transformation(extent={{-60,80},{-40,100}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant u1(final k=1)
+ "Chiller stage"
+ annotation (Placement(transformation(extent={{-60,40},{-40,60}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant u2(final k=2)
+ "Chiller stage"
+ annotation (Placement(transformation(extent={{-60,0},{-40,20}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant u3(final k=3)
+ "Chiller stage"
+ annotation (Placement(transformation(extent={{-60,-40},{-40,-20}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant u4(final k=5)
+ "Chiller stage"
+ annotation (Placement(transformation(extent={{-60,-80},{-40,-60}})));
+
+equation
+ connect(u.y, chiInd.u)
+ annotation (Line(points={{-38,90},{-2,90}}, color={255,127,0}));
+ connect(u1.y, chiInd1.u)
+ annotation (Line(points={{-38,50},{-2,50}}, color={255,127,0}));
+ connect(u2.y, chiInd2.u)
+ annotation (Line(points={{-38,10},{-2,10}}, color={255,127,0}));
+ connect(u3.y, chiInd3.u)
+ annotation (Line(points={{-38,-30},{-2,-30}}, color={255,127,0}));
+ connect(u.y, chiInd4.u) annotation (Line(points={{-38,90},{-20,90},{-20,70},{
+ 38,70}}, color={255,127,0}));
+ connect(u1.y, chiInd5.u) annotation (Line(points={{-38,50},{-20,50},{-20,30},
+ {38,30}}, color={255,127,0}));
+ connect(u3.y, chiInd6.u) annotation (Line(points={{-38,-30},{-20,-30},{-20,-50},
+ {38,-50}}, color={255,127,0}));
+ connect(u4.y,chiInd7. u) annotation (Line(points={{-38,-70},{0,-70},{0,-90},{38,
+ -90}}, color={255,127,0}));
+annotation (
+ experiment(StopTime=10.0, Tolerance=1e-06),
+ __Dymola_Commands(file="modelica://Buildings/Resources/Scripts/Dymola/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/SetPoints/Subsequences/Validation/ChillerIndices_u.mos"
+ "Simulate and plot"),
+ Documentation(info="
+
+This example validates
+
+Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.SetPoints.Subsequences.ChillerIndices.
+
+", revisions="
+
+-
+March 26, 2020, by Milica Grahovac:
+First implementation.
+
+
+"),
+Icon(graphics={
+ Ellipse(lineColor = {75,138,73},
+ fillColor={255,255,255},
+ fillPattern = FillPattern.Solid,
+ extent = {{-100,-100},{100,100}}),
+ Polygon(lineColor = {0,0,255},
+ fillColor = {75,138,73},
+ pattern = LinePattern.None,
+ fillPattern = FillPattern.Solid,
+ points = {{-36,60},{64,0},{-36,-60},{-36,60}})}),Diagram(
+ coordinateSystem(preserveAspectRatio=false, extent={{-80,-120},{80,120}})));
+end ChillerIndices_u;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/SetPoints/Subsequences/Validation/Configurator_uChiAva.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/SetPoints/Subsequences/Validation/Configurator_uChiAva.mo
new file mode 100644
index 00000000000..cfce38c0a6a
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/SetPoints/Subsequences/Validation/Configurator_uChiAva.mo
@@ -0,0 +1,149 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.SetPoints.Subsequences.Validation;
+model Configurator_uChiAva "Validate chiller staging configurator subsequence"
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.SetPoints.Subsequences.Configurator conf(
+ final nSta=4,
+ final nChi=3,
+ final staMat={{1,0,0},{1,0,1},{0,1,1},{1,1,1}},
+ final chiTyp={Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Types.ChillerAndStageTypes.positiveDisplacement,
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Types.ChillerAndStageTypes.variableSpeedCentrifugal,
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Types.ChillerAndStageTypes.constantSpeedCentrifugal},
+ final chiDesCap={1e6,1.5e6,2e6},
+ final chiMinCap={2e5,3e5,4e5})
+ "Stage configurator"
+ annotation (Placement(transformation(extent={{20,90},{40,110}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.SetPoints.Subsequences.Configurator conf1(
+ final nSta=4,
+ final nChi=3,
+ final staMat={{1,0,0},{1,0,1},{0,1,1},{1,1,1}},
+ final chiTyp={Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Types.ChillerAndStageTypes.positiveDisplacement,
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Types.ChillerAndStageTypes.variableSpeedCentrifugal,
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Types.ChillerAndStageTypes.constantSpeedCentrifugal},
+ final chiDesCap={1e6,1.5e6,2e6},
+ final chiMinCap={2e5,3e5,4e5})
+ "Stage configurator"
+ annotation (Placement(transformation(extent={{20,50},{40,70}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.SetPoints.Subsequences.Configurator conf3(
+ final nSta=4,
+ final nChi=3,
+ final staMat={{1,0,0},{1,0,1},{0,1,1},{1,1,1}},
+ final chiTyp={Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Types.ChillerAndStageTypes.positiveDisplacement,
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Types.ChillerAndStageTypes.variableSpeedCentrifugal,
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Types.ChillerAndStageTypes.constantSpeedCentrifugal},
+ final chiDesCap={1e6,1.5e6,2e6},
+ final chiMinCap={2e5,3e5,4e5})
+ "Stage configurator"
+ annotation (Placement(transformation(extent={{20,-30},{40,-10}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.SetPoints.Subsequences.Configurator conf4(
+ final nSta=4,
+ final nChi=3,
+ final staMat={{1,0,0},{1,0,1},{0,1,1},{1,1,1}},
+ final chiTyp={Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Types.ChillerAndStageTypes.positiveDisplacement,
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Types.ChillerAndStageTypes.variableSpeedCentrifugal,
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Types.ChillerAndStageTypes.constantSpeedCentrifugal},
+ final chiDesCap={1e6,1.5e6,2e6},
+ final chiMinCap={2e5,3e5,4e5})
+ "Stage configurator"
+ annotation (Placement(transformation(extent={{20,-70},{40,-50}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.SetPoints.Subsequences.Configurator conf5(
+ final nSta=4,
+ final nChi=3,
+ final staMat={{1,0,0},{1,0,1},{0,1,1},{1,1,1}},
+ final chiTyp={Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Types.ChillerAndStageTypes.positiveDisplacement,
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Types.ChillerAndStageTypes.variableSpeedCentrifugal,
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Types.ChillerAndStageTypes.constantSpeedCentrifugal},
+ final chiDesCap={1e6,1.5e6,2e6},
+ final chiMinCap={2e5,3e5,4e5})
+ "Stage configurator"
+ annotation (Placement(transformation(extent={{20,-110},{40,-90}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.SetPoints.Subsequences.Configurator conf2(
+ final nSta=4,
+ final nChi=3,
+ final staMat={{1,0,0},{1,0,1},{0,1,1},{1,1,1}},
+ final chiTyp={Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Types.ChillerAndStageTypes.positiveDisplacement,
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Types.ChillerAndStageTypes.variableSpeedCentrifugal,
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Types.ChillerAndStageTypes.constantSpeedCentrifugal},
+ final chiDesCap={1e6,1.5e6,2e6},
+ final chiMinCap={2e5,3e5,4e5})
+ "Stage configurator"
+ annotation (Placement(transformation(extent={{20,10},{40,30}})));
+
+protected
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant chiAva[3](
+ final k={true,true,true})
+ "Chiller availability array"
+ annotation (Placement(transformation(extent={{-40,90},{-20,110}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant chiAva1[3](
+ final k={false,true,true})
+ "Chiller availability array"
+ annotation (Placement(transformation(extent={{-40,50},{-20,70}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant chiAva3[3](
+ final k={true,true,false})
+ "Chiller availability array"
+ annotation (Placement(transformation(extent={{-40,-30},{-20,-10}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant chiAva4[3](
+ final k={true,false,false})
+ "Chiller availability array"
+ annotation (Placement(transformation(extent={{-40,-70},{-20,-50}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant chiAva5[3](
+ final k={false,false,false})
+ "Chiller availability array"
+ annotation (Placement(transformation(extent={{-40,-110},{-20,-90}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant chiAva2[3](
+ final k={false,false,true})
+ "Chiller availability array"
+ annotation (Placement(transformation(extent={{-40,10},{-20,30}})));
+
+equation
+ connect(chiAva.y, conf.uChiAva)
+ annotation (Line(points={{-18,100},{18,100}},color={255,0,255}));
+ connect(chiAva1.y, conf1.uChiAva)
+ annotation (Line(points={{-18,60},{18,60}}, color={255,0,255}));
+ connect(chiAva3.y, conf3.uChiAva)
+ annotation (Line(points={{-18,-20},{18,-20}}, color={255,0,255}));
+ connect(chiAva4.y, conf4.uChiAva)
+ annotation (Line(points={{-18,-60},{18,-60}}, color={255,0,255}));
+ connect(chiAva5.y, conf5.uChiAva)
+ annotation (Line(points={{-18,-100},{18,-100}}, color={255,0,255}));
+ connect(chiAva2.y, conf2.uChiAva)
+ annotation (Line(points={{-18,20},{18,20}}, color={255,0,255}));
+annotation (
+ experiment(StopTime=10.0, Tolerance=1e-06),
+ __Dymola_Commands(file="modelica://Buildings/Resources/Scripts/Dymola/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/SetPoints/Subsequences/Validation/Configurator_uChiAva.mos"
+ "Simulate and plot"),
+ Documentation(info="
+
+This example validates
+
+Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.SetPoints.Subsequences.Configurator.
+
+", revisions="
+
+-
+June 7, 2019,by Milica Grahovac:
+First implementation.
+
+
+"),
+Icon(graphics={
+ Ellipse(lineColor = {75,138,73},
+ fillColor={255,255,255},
+ fillPattern = FillPattern.Solid,
+ extent = {{-100,-100},{100,100}}),
+ Polygon(lineColor = {0,0,255},
+ fillColor = {75,138,73},
+ pattern = LinePattern.None,
+ fillPattern = FillPattern.Solid,
+ points = {{-36,60},{64,0},{-36,-60},{-36,60}})}),Diagram(
+ coordinateSystem(preserveAspectRatio=false, extent={{-60,-120},{60,120}})));
+end Configurator_uChiAva;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/SetPoints/Subsequences/Validation/Down.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/SetPoints/Subsequences/Validation/Down.mo
new file mode 100644
index 00000000000..8a493fe9b0f
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/SetPoints/Subsequences/Validation/Down.mo
@@ -0,0 +1,226 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.SetPoints.Subsequences.Validation;
+model Down "Validate change stage down condition sequence"
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.SetPoints.Subsequences.Down
+ withWSE(have_locSen=true)
+ "Generates stage down signal"
+ annotation (Placement(transformation(extent={{-40,40},{-20,60}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.SetPoints.Subsequences.Down
+ withWSE1(have_locSen=true)
+ "Generates stage down signal"
+ annotation (Placement(transformation(extent={{140,40},{160,60}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.SetPoints.Subsequences.Down
+ noWSE(have_WSE=false, have_locSen=true)
+ "Generates stage down signal for a plant with a WSE"
+ annotation (Placement(transformation(extent={{-40,80},{-20,100}})));
+
+protected
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant stage2(
+ final k=2)
+ "Second stage"
+ annotation (Placement(transformation(extent={{-160,-100},{-140,-80}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant WSESta(
+ final k=true)
+ "Waterside economizer status"
+ annotation (Placement(transformation(extent={{-120,-80},{-100,-60}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant stage1(
+ final k=1) "2nd stage"
+ annotation (Placement(transformation(extent={{20,-100},{40,-80}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant WSESta1(
+ final k=true) "WSE status"
+ annotation (Placement(transformation(extent={{60,-80},{80,-60}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant TCWSupSet(
+ final k=273.15 + 14) "Chilled water supply temperature setpoint"
+ annotation (Placement(transformation(extent={{-160,-20},{-140,0}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant dpChiWatSet(
+ final k=65*6895) "Chilled water differential pressure setpoint"
+ annotation (Placement(transformation(extent={{-120,0},{-100,20}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant TCWSup(
+ final k=273.15 + 14) "Chilled water supply temperature"
+ annotation (Placement(transformation(extent={{-160,-60},{-140,-40}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant dpChiWat(
+ final k=65*6895)
+ "Chilled water differential pressure"
+ annotation (Placement(transformation(extent={{-120,-40},{-100,-20}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant splrDown(
+ final k=0.8)
+ "Staging down part load ratio"
+ annotation (Placement(transformation(extent={{-160,100},{-140,120}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Sine oplrDown(
+ final amplitude=0.1,
+ final startTime=0,
+ final freqHz=1/4800,
+ final phase(displayUnit="deg") = -1.5707963267949,
+ final offset=0.75) "Operating part load ratio of the next stage down"
+ annotation (Placement(transformation(extent={{-120,120},{-100,140}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant TWsePre(
+ final k=273.15 + 14)
+ "Chilled water supply temperature setpoint"
+ annotation (Placement(transformation(extent={{-160,20},{-140,40}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant TowFanSpeMax(
+ final k=0.9)
+ "Maximum cooling tower speed signal"
+ annotation (Placement(transformation(extent={{-120,40},{-100,60}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant TCWSupSet1(
+ final k=273.15 + 14)
+ "Chilled water supply temperature setpoint"
+ annotation (Placement(transformation(extent={{20,-20},{40,0}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant dpChiWatSet1(
+ final k=65*6895)
+ "Chilled water differential pressure setpoint"
+ annotation (Placement(transformation(extent={{60,0},{80,20}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant TCWSup1(
+ final k=273.15 + 14)
+ "Chilled water supply temperature"
+ annotation (Placement(transformation(extent={{20,-60},{40,-40}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant dpChiWat1(
+ final k=62*6895)
+ "Chilled water differential pressure"
+ annotation (Placement(transformation(extent={{60,-40},{80,-20}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant oplrDown1(final k=1)
+ "Operating part load ratio of stage 0"
+ annotation (Placement(transformation(extent={{60,120},{80,140}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant TowFanSpeMax1(
+ final k=0.9)
+ "Maximum cooling tower speed signal"
+ annotation (Placement(transformation(extent={{60,40},{80,60}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Sine TWsePre1(
+ final amplitude=4,
+ final freqHz=1/2100,
+ final offset=273.15 + 12.5)
+ "Chilled water supply temperature setpoint"
+ annotation (Placement(transformation(extent={{20,20},{40,40}})));
+
+ CDL.Continuous.Sources.Constant splrDown1(final k=1)
+ "Staging down part load ratio"
+ annotation (Placement(transformation(extent={{40,80},{60,100}})));
+equation
+
+ connect(TCWSupSet.y, withWSE.TChiWatSupSet) annotation (Line(points={{-138,
+ -10},{-70,-10},{-70,48.8},{-42,48.8}},
+ color={0,0,127}));
+ connect(TCWSup.y, withWSE.TChiWatSup) annotation (Line(points={{-138,-50},{
+ -68,-50},{-68,46.8},{-42,46.8}},
+ color={0,0,127}));
+ connect(dpChiWatSet.y, withWSE.dpChiWatPumSet_local) annotation (Line(points=
+ {{-98,10},{-76,10},{-76,57},{-42,57}}, color={0,0,127}));
+ connect(dpChiWat.y, withWSE.dpChiWatPum_local) annotation (Line(points={{-98,
+ -30},{-72,-30},{-72,55},{-42,55}}, color={0,0,127}));
+ connect(oplrDown.y, withWSE.uOpeDow) annotation (Line(points={{-98,130},{-70,
+ 130},{-70,61},{-42,61}}, color={0,0,127}));
+ connect(splrDown.y, withWSE.uStaDow) annotation (Line(points={{-138,110},{-72,
+ 110},{-72,59},{-42,59}}, color={0,0,127}));
+ connect(WSESta.y, withWSE.uWseSta) annotation (Line(points={{-98,-70},{-66,
+ -70},{-66,39},{-42,39}}, color={255,0,255}));
+ connect(stage2.y, withWSE.u) annotation (Line(points={{-138,-90},{-62,-90},{
+ -62,41},{-42,41}}, color={255,127,0}));
+ connect(TWsePre.y, withWSE.TWsePre) annotation (Line(points={{-138,30},{-80,
+ 30},{-80,44.8},{-42,44.8}},
+ color={0,0,127}));
+ connect(TowFanSpeMax.y, withWSE.uTowFanSpeMax) annotation (Line(points={{-98,50},
+ {-90,50},{-90,42.8},{-42,42.8}}, color={0,0,127}));
+ connect(TCWSupSet1.y, withWSE1.TChiWatSupSet) annotation (Line(points={{42,-10},
+ {110,-10},{110,48.8},{138,48.8}}, color={0,0,127}));
+ connect(TCWSup1.y, withWSE1.TChiWatSup) annotation (Line(points={{42,-50},{
+ 112,-50},{112,46.8},{138,46.8}},
+ color={0,0,127}));
+ connect(dpChiWatSet1.y, withWSE1.dpChiWatPumSet_local) annotation (Line(
+ points={{82,10},{104,10},{104,57},{138,57}}, color={0,0,127}));
+ connect(dpChiWat1.y, withWSE1.dpChiWatPum_local) annotation (Line(points={{82,
+ -30},{108,-30},{108,55},{138,55}}, color={0,0,127}));
+ connect(oplrDown1.y, withWSE1.uOpeDow) annotation (Line(points={{82,130},{110,
+ 130},{110,61},{138,61}}, color={0,0,127}));
+ connect(WSESta1.y, withWSE1.uWseSta) annotation (Line(points={{82,-70},{114,
+ -70},{114,39},{138,39}}, color={255,0,255}));
+ connect(stage1.y, withWSE1.u) annotation (Line(points={{42,-90},{116,-90},{
+ 116,41},{138,41}}, color={255,127,0}));
+ connect(TowFanSpeMax1.y, withWSE1.uTowFanSpeMax) annotation (Line(points={{82,50},
+ {90,50},{90,42.8},{138,42.8}}, color={0,0,127}));
+ connect(TWsePre1.y, withWSE1.TWsePre) annotation (Line(points={{42,30},{106,
+ 30},{106,44.8},{138,44.8}},
+ color={0,0,127}));
+ connect(oplrDown.y, noWSE.uOpeDow) annotation (Line(points={{-98,130},{-70,
+ 130},{-70,101},{-42,101}}, color={0,0,127}));
+ connect(splrDown.y, noWSE.uStaDow) annotation (Line(points={{-138,110},{-72,
+ 110},{-72,99},{-42,99}}, color={0,0,127}));
+ connect(dpChiWatSet.y, noWSE.dpChiWatPumSet_local) annotation (Line(points={{
+ -98,10},{-82,10},{-82,86},{-56,86},{-56,97},{-42,97}}, color={0,0,127}));
+ connect(dpChiWat.y, noWSE.dpChiWatPum_local) annotation (Line(points={{-98,
+ -30},{-86,-30},{-86,84},{-54,84},{-54,95},{-42,95}}, color={0,0,127}));
+ connect(TCWSup.y, noWSE.TChiWatSup) annotation (Line(points={{-138,-50},{-88,
+ -50},{-88,82},{-50,82},{-50,86.8},{-42,86.8}},
+ color={0,0,127}));
+ connect(TCWSupSet.y, noWSE.TChiWatSupSet) annotation (Line(points={{-138,-10},
+ {-84,-10},{-84,80},{-52,80},{-52,88.8},{-42,88.8}},
+ color={0,0,127}));
+ connect(stage2.y, noWSE.u) annotation (Line(points={{-138,-90},{-64,-90},{-64,
+ 81},{-42,81}}, color={255,127,0}));
+ connect(splrDown1.y, withWSE1.uStaDow) annotation (Line(points={{62,90},{100,
+ 90},{100,59},{138,59}}, color={0,0,127}));
+annotation (
+ experiment(StopTime=3600.0, Tolerance=1e-06),
+ __Dymola_Commands(file="modelica://Buildings/Resources/Scripts/Dymola/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/SetPoints/Subsequences/Validation/Down.mos"
+ "Simulate and plot"),
+ Documentation(info="
+
+This example validates
+
+Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.Generic.Down.
+
+", revisions="
+
+-
+March 26, 2020, by Milica Grahovac:
+First implementation.
+
+
+"),
+Icon(graphics={
+ Ellipse(lineColor = {75,138,73},
+ fillColor={255,255,255},
+ fillPattern = FillPattern.Solid,
+ extent = {{-100,-100},{100,100}}),
+ Polygon(lineColor = {0,0,255},
+ fillColor = {75,138,73},
+ pattern = LinePattern.None,
+ fillPattern = FillPattern.Solid,
+ points = {{-36,60},{64,0},{-36,-60},{-36,60}})}),Diagram(
+ coordinateSystem(preserveAspectRatio=false, extent={{-180,-160},{180,180}}),
+ graphics={
+ Text(
+ extent={{-136,-120},{-76,-142}},
+ textColor={0,0,127},
+ textString="Tests stage down from stages higher than stage 1.
+
+The tests assumes a false output of the failsafe condition and
+checks functionality for the next available stage down SPLR and OPLR inputs."),
+ Text(
+ extent={{38,-120},{98,-142}},
+ textColor={0,0,127},
+ textString="Tests stage down from stage 1.
+
+Test assumes WSE is on and
+maximum tower fan speed signal
+is less than 1. The test ensures stage down gets initiated as the
+cooling capacity of the first stage exceeds the demand
+given the presence of WSE.")}));
+end Down;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/SetPoints/Subsequences/Validation/EfficiencyCondition.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/SetPoints/Subsequences/Validation/EfficiencyCondition.mo
new file mode 100644
index 00000000000..9bf2764c19f
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/SetPoints/Subsequences/Validation/EfficiencyCondition.mo
@@ -0,0 +1,57 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.SetPoints.Subsequences.Validation;
+model EfficiencyCondition "Validate efficiency condition sequence"
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.SetPoints.Subsequences.EfficiencyCondition
+ effCon
+ "Failsafe condition to test for the operating part load ratio input"
+ annotation (Placement(transformation(extent={{0,0},{20,20}})));
+
+protected
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Sine oplr(
+ final amplitude=0.1,
+ final phase(displayUnit="rad"),
+ final startTime=0,
+ final offset=0.85,
+ final freqHz=1/2100) "Operating part load ratio of the current stage"
+ annotation (Placement(transformation(extent={{-40,20},{-20,40}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant splrUp(
+ final k=0.8)
+ "Staging part load ratio of the next stage up"
+ annotation (Placement(transformation(extent={{-40,-20},{-20,0}})));
+
+equation
+ connect(oplr.y, effCon.uOpe) annotation (Line(points={{-18,30},{-10,30},{-10,
+ 15},{-2,15}}, color={0,0,127}));
+ connect(splrUp.y, effCon.uStaUp) annotation (Line(points={{-18,-10},{-10,-10},
+ {-10,5},{-2,5}}, color={0,0,127}));
+annotation (
+ experiment(StopTime=3600.0, Tolerance=1e-06),
+ __Dymola_Commands(file="modelica://Buildings/Resources/Scripts/Dymola/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/SetPoints/Subsequences/Validation/EfficiencyCondition.mos"
+ "Simulate and plot"),
+ Documentation(info="
+
+This example validates
+
+Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.Generic.EfficiencyCondition.
+
+", revisions="
+
+-
+January 28, 2019, by Milica Grahovac:
+First implementation.
+
+
+"),
+Icon(graphics={
+ Ellipse(lineColor = {75,138,73},
+ fillColor={255,255,255},
+ fillPattern = FillPattern.Solid,
+ extent = {{-100,-100},{100,100}}),
+ Polygon(lineColor = {0,0,255},
+ fillColor = {75,138,73},
+ pattern = LinePattern.None,
+ fillPattern = FillPattern.Solid,
+ points = {{-36,60},{64,0},{-36,-60},{-36,60}})}),Diagram(
+ coordinateSystem(preserveAspectRatio=false, extent={{-60,-40},{40,60}})));
+end EfficiencyCondition;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/SetPoints/Subsequences/Validation/FailsafeCondition.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/SetPoints/Subsequences/Validation/FailsafeCondition.mo
new file mode 100644
index 00000000000..6ea4de20821
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/SetPoints/Subsequences/Validation/FailsafeCondition.mo
@@ -0,0 +1,127 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.SetPoints.Subsequences.Validation;
+model FailsafeCondition "Validate failsafe condition sequence"
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.SetPoints.Subsequences.FailsafeCondition
+ faiSafCon0(have_locSen=true)
+ "Failsafe condition to test for the current stage availability input"
+ annotation (Placement(transformation(extent={{-40,80},{-20,100}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.SetPoints.Subsequences.FailsafeCondition
+ faiSafCon1(have_locSen=true)
+ "Failsafe condition to test for the chilled water supply temperature and differential pressure inputs"
+ annotation (Placement(transformation(extent={{120,80},{140,100}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.SetPoints.Subsequences.FailsafeCondition
+ faiSafCon2(final have_serChi=true)
+ "Failsafe condition to test for the chilled water supply temperature input for series chillers plant"
+ annotation (Placement(transformation(extent={{-40,-40},{-20,-20}})));
+
+protected
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant TCWSup(
+ final k=273.15 + 18)
+ "Chilled water supply temperature"
+ annotation (Placement(transformation(extent={{-140,60},{-120,80}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant TCWSupSet(
+ final k=273.15 + 14)
+ "Chilled water supply temperature setpoint"
+ annotation (Placement(transformation(extent={{-140,100},{-120,120}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant dpChiWat(
+ final k=64.1*6895)
+ "Chilled water differential pressure"
+ annotation (Placement(transformation(extent={{-100,20},{-80,40}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant dpChiWatSet(
+ final k=65*6895)
+ "Chilled water differential pressure setpoint"
+ annotation (Placement(transformation(extent={{-100,60},{-80,80}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant TCWSupSet1(
+ final k=273.15 + 14)
+ "Chilled water supply temperature setpoint"
+ annotation (Placement(transformation(extent={{20,100},{40,120}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant dpChiWatSet1(
+ final k=65*6895)
+ "Chilled water differential pressure setpoint"
+ annotation (Placement(transformation(extent={{60,60},{80,80}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Sine TCWSup1(
+ final amplitude=1.5,
+ final offset=273.15 + 15.5,
+ final freqHz=1/900) "Chilled water supply temperature"
+ annotation (Placement(transformation(extent={{20,60},{40,80}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Sine dpChiWat2(
+ final amplitude=6895,
+ final offset=63*6895,
+ final freqHz=1/1500,
+ final startTime=0,
+ phase=0.78539816339745)
+ "Chilled water differential pressure"
+ annotation (Placement(transformation(extent={{60,20},{80,40}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant TCWSupSet2(
+ final k=273.15 + 14)
+ "Chilled water supply temperature setpoint"
+ annotation (Placement(transformation(extent={{-140,-40},{-120,-20}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Sine TCWSup2(
+ final amplitude=1.5,
+ final offset=273.15 + 15.5,
+ final freqHz=1/2100)
+ "Chilled water supply temperature"
+ annotation (Placement(transformation(extent={{-140,-80},{-120,-60}})));
+
+equation
+ connect(TCWSup.y, faiSafCon0.TChiWatSup) annotation (Line(points={{-118,70},{
+ -110,70},{-110,96},{-42,96}}, color={0,0,127}));
+ connect(TCWSupSet.y, faiSafCon0.TChiWatSupSet) annotation (Line(points={{-118,
+ 110},{-60,110},{-60,99},{-42,99}}, color={0,0,127}));
+ connect(dpChiWatSet.y, faiSafCon0.dpChiWatPumSet_local) annotation (Line(
+ points={{-78,70},{-60,70},{-60,91},{-42,91}}, color={0,0,127}));
+ connect(dpChiWat.y, faiSafCon0.dpChiWatPum_local) annotation (Line(points={{
+ -78,30},{-56,30},{-56,88},{-42,88}}, color={0,0,127}));
+ connect(TCWSupSet1.y, faiSafCon1.TChiWatSupSet) annotation (Line(points={{42,110},
+ {100,110},{100,99},{118,99}}, color={0,0,127}));
+ connect(dpChiWatSet1.y, faiSafCon1.dpChiWatPumSet_local) annotation (Line(
+ points={{82,70},{90,70},{90,91},{118,91}}, color={0,0,127}));
+ connect(TCWSup1.y, faiSafCon1.TChiWatSup) annotation (Line(points={{42,70},{
+ 50,70},{50,96},{118,96}}, color={0,0,127}));
+ connect(dpChiWat2.y, faiSafCon1.dpChiWatPum_local) annotation (Line(points={{
+ 82,30},{100,30},{100,88},{118,88}}, color={0,0,127}));
+ connect(TCWSupSet2.y,faiSafCon2. TChiWatSupSet) annotation (Line(points={{-118,
+ -30},{-100,-30},{-100,-21},{-42,-21}}, color={0,0,127}));
+ connect(TCWSup2.y,faiSafCon2. TChiWatSup) annotation (Line(points={{-118,-70},
+ {-100,-70},{-100,-40},{-60,-40},{-60,-24},{-42,-24}}, color={0,0,127}));
+annotation (
+ experiment(StopTime=3600.0, Tolerance=1e-06),
+ __Dymola_Commands(file="modelica://Buildings/Resources/Scripts/Dymola/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/SetPoints/Subsequences/Validation/FailsafeCondition.mos"
+ "Simulate and plot"),
+ Documentation(info="
+
+This example validates
+
+Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.Generic.FailsafeCondition.
+
+", revisions="
+
+-
+January 21, 2019, by Milica Grahovac:
+First implementation.
+
+
+"),
+Icon(graphics={
+ Ellipse(lineColor = {75,138,73},
+ fillColor={255,255,255},
+ fillPattern = FillPattern.Solid,
+ extent = {{-100,-100},{100,100}}),
+ Polygon(lineColor = {0,0,255},
+ fillColor = {75,138,73},
+ pattern = LinePattern.None,
+ fillPattern = FillPattern.Solid,
+ points = {{-36,60},{64,0},{-36,-60},{-36,60}})}),Diagram(
+ coordinateSystem(preserveAspectRatio=false, extent={{-160,-140},{160,140}})));
+end FailsafeCondition;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/SetPoints/Subsequences/Validation/Initial_WSE.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/SetPoints/Subsequences/Validation/Initial_WSE.mo
new file mode 100644
index 00000000000..54bb7fe2acb
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/SetPoints/Subsequences/Validation/Initial_WSE.mo
@@ -0,0 +1,109 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.SetPoints.Subsequences.Validation;
+model Initial_WSE "Validate initial stage sequence for a plant with WSE"
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.SetPoints.Subsequences.Initial iniStaCol(
+ final have_WSE=true) "Initial stage is the WSE only stage"
+ annotation (Placement(transformation(extent={{0,-10},{20,10}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.SetPoints.Subsequences.Initial iniStaHot(
+ final have_WSE=true)
+ "Initial stage is the lowest available chiller stage"
+ annotation (Placement(transformation(extent={{60,-10},{80,10}})));
+
+protected
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant lowAvaSta(
+ final k=1)
+ "Lowest chiller stage that is available "
+ annotation (Placement(transformation(extent={{-40,-60},{-20,-40}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Sine outTemHot(
+ final amplitude=8,
+ final freqHz=1/(24*3600),
+ final phase=-1.5707963267949,
+ final offset=298.15)
+ "Measured outdoor air wet bulb temperature on a hot day"
+ annotation (Placement(transformation(extent={{20,40},{40,60}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Sine outTemCol(
+ final amplitude=8,
+ final freqHz=1/(24*3600),
+ final phase=-1.5707963267949,
+ final offset=278.15)
+ "Measured outdoor air wet bulb temperature on a cold day"
+ annotation (Placement(transformation(extent={{-80,-20},{-60,0}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant tunPar(
+ final k=0.06)
+ "Assume a constant tuning parameter"
+ annotation (Placement(transformation(extent={{-80,40},{-60,60}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant TChiWatSupSet(
+ final k=285.15)
+ "Chilled water supply temperature setpoint"
+ annotation (Placement(transformation(extent={{-40,40},{-20,60}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant plaSta(
+ final k=true)
+ "Plant status"
+ annotation (Placement(transformation(extent={{-120,-60},{-100,-40}})));
+
+ Buildings.Controls.OBC.CDL.Logical.TrueDelay truDel(
+ final delayTime=600,
+ final delayOnInit=true) "True delay"
+ annotation (Placement(transformation(extent={{-80,-60},{-60,-40}})));
+
+equation
+ connect(lowAvaSta.y,iniStaCol. uUp) annotation (Line(points={{-18,-50},{-10,-50},
+ {-10,0},{-2,0}}, color={255,127,0}));
+ connect(TChiWatSupSet.y,iniStaCol. TChiWatSupSet) annotation (Line(points={{-18,
+ 50},{-10,50},{-10,3},{-2,3}}, color={0,0,127}));
+ connect(TChiWatSupSet.y, iniStaHot.TChiWatSupSet) annotation (Line(points={{-18,
+ 50},{-10,50},{-10,20},{50,20},{50,3},{58,3}}, color={0,0,127}));
+ connect(tunPar.y,iniStaCol. uTunPar) annotation (Line(points={{-58,50},{-50,50},
+ {-50,6},{-2,6}}, color={0,0,127}));
+ connect(tunPar.y, iniStaHot.uTunPar) annotation (Line(points={{-58,50},{-50,50},
+ {-50,16},{46,16},{46,6},{58,6}}, color={0,0,127}));
+ connect(outTemHot.y, iniStaHot.TOutWet)
+ annotation (Line(points={{42,50},{54,50},{54,9},{58,9}}, color={0,0,127}));
+ connect(outTemCol.y, iniStaCol.TOutWet) annotation (Line(points={{-58,-10},{-30,
+ -10},{-30,9},{-2,9}}, color={0,0,127}));
+ connect(lowAvaSta.y, iniStaHot.uUp) annotation (Line(points={{-18,-50},{50,-50},
+ {50,0},{58,0}}, color={255,127,0}));
+ connect(plaSta.y, truDel.u)
+ annotation (Line(points={{-98,-50},{-82,-50}}, color={255,0,255}));
+ connect(truDel.y, iniStaCol.uPla) annotation (Line(points={{-58,-50},{-50,-50},
+ {-50,-20},{-20,-20},{-20,-6},{-2,-6}}, color={255,0,255}));
+ connect(truDel.y, iniStaHot.uPla) annotation (Line(points={{-58,-50},{-50,-50},
+ {-50,-20},{40,-20},{40,-6},{58,-6}}, color={255,0,255}));
+
+annotation (
+ experiment(StopTime=86400.0, Tolerance=1e-06),
+ __Dymola_Commands(file="modelica://Buildings/Resources/Scripts/Dymola/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/SetPoints/Subsequences/Validation/Initial_WSE.mos"
+ "Simulate and plot"),
+ Documentation(info="
+
+This example validates
+
+Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.SetPoints.Subsequences.Initial
+for chiller plants with WSE.
+
+", revisions="
+
+-
+March 14, 2020, by Milica Grahovac:
+First implementation.
+
+
+"),
+Icon(graphics={
+ Ellipse(lineColor = {75,138,73},
+ fillColor={255,255,255},
+ fillPattern = FillPattern.Solid,
+ extent = {{-100,-100},{100,100}}),
+ Polygon(lineColor = {0,0,255},
+ fillColor = {75,138,73},
+ pattern = LinePattern.None,
+ fillPattern = FillPattern.Solid,
+ points = {{-36,60},{64,0},{-36,-60},{-36,60}})}),Diagram(
+ coordinateSystem(preserveAspectRatio=false, extent={{-140,-80},{140,80}})));
+end Initial_WSE;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/SetPoints/Subsequences/Validation/Initial_noWSE.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/SetPoints/Subsequences/Validation/Initial_noWSE.mo
new file mode 100644
index 00000000000..9d599f9662e
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/SetPoints/Subsequences/Validation/Initial_noWSE.mo
@@ -0,0 +1,77 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.SetPoints.Subsequences.Validation;
+model Initial_noWSE
+ "Validate initial stage sequence in case of no WSE"
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.SetPoints.Subsequences.Initial iniSta(
+ final have_WSE=false)
+ "Tests if initial stage is the lowest available stage"
+ annotation (Placement(transformation(extent={{20,20},{40,40}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.SetPoints.Subsequences.Initial iniSta1(
+ final have_WSE=false)
+ "Tests if initial stage is the lowest available stage"
+ annotation (Placement(transformation(extent={{20,-50},{40,-30}})));
+
+protected
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant lowAvaSta(
+ final k=2)
+ "Lowest chiller stage that is available"
+ annotation (Placement(transformation(extent={{-40,20},{-20,40}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant lowAvaSta1(
+ final k=2)
+ "Lowest chiller stage that is available"
+ annotation (Placement(transformation(extent={{-40,-50},{-20,-30}})));
+
+ Buildings.Controls.OBC.CDL.Logical.TrueDelay truDel(
+ final delayTime=10,
+ final delayOnInit=true)
+ "True signal delay"
+ annotation (Placement(transformation(extent={{-20,-10},{0,10}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant plaSta(
+ final k=true) "Plant status"
+ annotation (Placement(transformation(extent={{-60,-10},{-40,10}})));
+
+equation
+ connect(lowAvaSta.y, iniSta.uUp)
+ annotation (Line(points={{-18,30},{18,30}},color={255,127,0}));
+ connect(lowAvaSta1.y, iniSta1.uUp)
+ annotation (Line(points={{-18,-40},{18,-40}}, color={255,127,0}));
+ connect(plaSta.y, truDel.u)
+ annotation (Line(points={{-38,0},{-22,0}}, color={255,0,255}));
+ connect(truDel.y, iniSta.uPla) annotation (Line(points={{2,0},{10,0},{10,24},{
+ 18,24}}, color={255,0,255}));
+ connect(plaSta.y, iniSta1.uPla) annotation (Line(points={{-38,0},{-30,0},{-30,
+ -20},{0,-20},{0,-46},{18,-46}}, color={255,0,255}));
+annotation (
+ experiment(StopTime=100.0, Tolerance=1e-06),
+ __Dymola_Commands(file="modelica://Buildings/Resources/Scripts/Dymola/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/SetPoints/Subsequences/Validation/Initial_noWSE.mos"
+ "Simulate and plot"),
+ Documentation(info="
+
+This example validates
+
+Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.SetPoints.Subsequences.Initial
+ for chiller plants without WSE.
+
+", revisions="
+
+-
+March 12, 2020, by Milica Grahovac:
+First implementation.
+
+
+"),
+Icon(graphics={
+ Ellipse(lineColor = {75,138,73},
+ fillColor={255,255,255},
+ fillPattern = FillPattern.Solid,
+ extent = {{-100,-100},{100,100}}),
+ Polygon(lineColor = {0,0,255},
+ fillColor = {75,138,73},
+ pattern = LinePattern.None,
+ fillPattern = FillPattern.Solid,
+ points = {{-36,60},{64,0},{-36,-60},{-36,60}})}),Diagram(
+ coordinateSystem(preserveAspectRatio=false, extent={{-80,-60},{80,60}})));
+end Initial_noWSE;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/SetPoints/Subsequences/Validation/PartLoadRatios_u_uTyp.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/SetPoints/Subsequences/Validation/PartLoadRatios_u_uTyp.mo
new file mode 100644
index 00000000000..58e36478b89
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/SetPoints/Subsequences/Validation/PartLoadRatios_u_uTyp.mo
@@ -0,0 +1,600 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.SetPoints.Subsequences.Validation;
+model PartLoadRatios_u_uTyp
+ "Validates the operating and stage part load ratios calculation for chiller stage and stage type inputs"
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.SetPoints.Subsequences.PartLoadRatios PLRs0(
+ final anyVsdCen=false,
+ final nSta=3)
+ "Stage and operative part load ratios"
+ annotation (Placement(transformation(extent={{-260,170},{-240,210}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.SetPoints.Subsequences.PartLoadRatios PLRs1(
+ final anyVsdCen=false,
+ final nSta=3)
+ "Stage and operative part load ratios"
+ annotation (Placement(transformation(extent={{-40,170},{-20,210}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.SetPoints.Subsequences.PartLoadRatios PLRs2(
+ final anyVsdCen=false,
+ final nSta=3)
+ "Stage and operative part load ratios"
+ annotation (Placement(transformation(extent={{180,170},{200,210}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.SetPoints.Subsequences.PartLoadRatios PLRs3(
+ final anyVsdCen=false,
+ final nSta=3)
+ "Stage and operative part load ratios"
+ annotation (Placement(transformation(extent={{420,170},{440,210}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.SetPoints.Subsequences.PartLoadRatios PLRs4(
+ final anyVsdCen=true,
+ final nSta=3)
+ "Stage and operative part load ratios"
+ annotation (Placement(transformation(extent={{-260,-170},{-240,-130}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.SetPoints.Subsequences.PartLoadRatios PLRs5(
+ final anyVsdCen=true,
+ final nSta=3)
+ "Stage and operative part load ratios"
+ annotation (Placement(transformation(extent={{-40,-170},{-20,-130}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.SetPoints.Subsequences.PartLoadRatios PLRs6(
+ final anyVsdCen=true,
+ final nSta=3)
+ "Stage and operative part load ratios"
+ annotation (Placement(transformation(extent={{180,-170},{200,-130}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.SetPoints.Subsequences.PartLoadRatios PLRs7(
+ final anyVsdCen=true,
+ final nSta=3)
+ "Stage and operative part load ratios"
+ annotation (Placement(transformation(extent={{420,-170},{440,-130}})));
+
+protected
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant staTyp[3](final k={
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Types.ChillerAndStageTypes.positiveDisplacement,
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Types.ChillerAndStageTypes.constantSpeedCentrifugal,
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Types.ChillerAndStageTypes.constantSpeedCentrifugal})
+ "Stage types"
+ annotation (Placement(transformation(extent={{-420,220},{-400,240}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant staTyp4[3](final k={
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Types.ChillerAndStageTypes.positiveDisplacement,
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Types.ChillerAndStageTypes.variableSpeedCentrifugal,
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Types.ChillerAndStageTypes.constantSpeedCentrifugal})
+ "Stage types"
+ annotation (Placement(transformation(extent={{-420,-270},{-400,-250}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Max max "Maximum"
+ annotation (Placement(transformation(extent={{-340,360},{-320,380}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Max max1 "Maximum"
+ annotation (Placement(transformation(extent={{-120,360},{-100,380}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Max max2 "Maximum"
+ annotation (Placement(transformation(extent={{100,360},{120,380}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Max max3 "Maximum"
+ annotation (Placement(transformation(extent={{340,360},{360,380}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Max max4 "Maximum"
+ annotation (Placement(transformation(extent={{-340,0},{-320,20}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Max max5 "Maximum"
+ annotation (Placement(transformation(extent={{-120,0},{-100,20}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Max max6 "Maximum"
+ annotation (Placement(transformation(extent={{100,0},{120,20}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Max max7 "Maximum"
+ annotation (Placement(transformation(extent={{340,0},{360,20}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant curSta(
+ final k=1) "Current chiller stage"
+ annotation (Placement(transformation(extent={{-420,180},{-400,200}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Sine capReq3(
+ final amplitude=6e5,
+ final freqHz=1/1800,
+ final offset=9e5,
+ final startTime=0)
+ "Capacity requirement"
+ annotation (Placement(transformation(extent={{-420,380},{-400,400}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant staUp(
+ final k=2)
+ "Next available chiller stage up"
+ annotation (Placement(transformation(extent={{-420,140},{-400,160}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant staDown(
+ final k=0)
+ "Next available chiller stage down"
+ annotation (Placement(transformation(extent={{-420,100},{-400,120}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant lowLim(
+ final k=0)
+ "Capacity requirement"
+ annotation (Placement(transformation(extent={{-420,340},{-400,360}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant capDes[3](
+ final k={10e5,15e5,25e5})
+ "Stage design capacities"
+ annotation (Placement(transformation(extent={{-380,300},{-360,320}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant capMin[3](
+ final k={2e5,3e5,5e5})
+ "Stage unload capacities"
+ annotation (Placement(transformation(extent={{-380,260},{-360,280}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant curSta1(
+ final k=2)
+ "Current chiller stage"
+ annotation (Placement(transformation(extent={{-200,180},{-180,200}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Sine capReq1(
+ final amplitude=6e5,
+ final freqHz=1/1800,
+ final offset=14e5,
+ final startTime=0)
+ "Capacity requirement"
+ annotation (Placement(transformation(extent={{-200,380},{-180,400}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant staUp1(
+ final k=3)
+ "Next available chiller stage up"
+ annotation (Placement(transformation(extent={{-200,140},{-180,160}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant staDown1(
+ final k=1)
+ "Next available chiller stage down"
+ annotation (Placement(transformation(extent={{-200,100},{-180,120}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant curSta2(
+ final k=3)
+ "Current chiller stage"
+ annotation (Placement(transformation(extent={{20,180},{40,200}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Sine capReq2(
+ final amplitude=6e5,
+ final freqHz=1/1800,
+ final offset=19e5,
+ final startTime=0)
+ "Capacity requirement"
+ annotation (Placement(transformation(extent={{20,380},{40,400}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant staUp2(
+ final k=3)
+ "Next available chiller stage up"
+ annotation (Placement(transformation(extent={{20,140},{40,160}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant staDown2(final k=2)
+ "Next available chiller stage down"
+ annotation (Placement(transformation(extent={{20,100},{40,120}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant curSta3(
+ final k=0)
+ "Current chiller stage"
+ annotation (Placement(transformation(extent={{260,180},{280,200}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Sine capReq4(
+ final amplitude=6e5,
+ final freqHz=1/1800,
+ final offset=5e5,
+ final startTime=0)
+ "Capacity requirement"
+ annotation (Placement(transformation(extent={{260,380},{280,400}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant staUp3(
+ final k=1)
+ "Next available chiller stage up"
+ annotation (Placement(transformation(extent={{260,140},{280,160}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant staDown3(
+ final k=0)
+ "Next available chiller stage down"
+ annotation (Placement(transformation(extent={{260,100},{280,120}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant curSta4(
+ final k=1)
+ "Current chiller stage"
+ annotation (Placement(transformation(extent={{-420,-310},{-400,-290}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Sine capReq5(
+ final amplitude=6e5,
+ final freqHz=1/1800,
+ final offset=9e5,
+ final startTime=0)
+ "Capacity requirement"
+ annotation (Placement(transformation(extent={{-420,20},{-400,40}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant staUp4(
+ final k=2)
+ "Next available chiller stage up"
+ annotation (Placement(transformation(extent={{-420,-350},{-400,-330}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant staDown4(
+ final k=0)
+ "Next available chiller stage down"
+ annotation (Placement(transformation(extent={{-420,-390},{-400,-370}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant lowLim4(
+ final k=0)
+ "Capacity requirement"
+ annotation (Placement(transformation(extent={{-420,-20},{-400,0}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant capDes1[3](
+ final k={10e5,15e5,25e5}) "Stage design capacities"
+ annotation (Placement(transformation(extent={{-380,-60},{-360,-40}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant capMin1[3](
+ final k={2e5,3e5,5e5})
+ "Stage unload capacities"
+ annotation (Placement(transformation(extent={{-380,-100},{-360,-80}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant curSta5(
+ final k=2)
+ "Current chiller stage"
+ annotation (Placement(transformation(extent={{-200,-310},{-180,-290}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Sine capReq6(
+ final amplitude=6e5,
+ final freqHz=1/1800,
+ final offset=14e5,
+ final startTime=0)
+ "Capacity requirement"
+ annotation (Placement(transformation(extent={{-200,20},{-180,40}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant staUp5(
+ final k=3)
+ "Next available chiller stage up"
+ annotation (Placement(transformation(extent={{-200,-350},{-180,-330}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant staDown5(
+ final k=1)
+ "Next available chiller stage down"
+ annotation (Placement(transformation(extent={{-200,-390},{-180,-370}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant curSta6(
+ final k=3)
+ "Current chiller stage"
+ annotation (Placement(transformation(extent={{20,-310},{40,-290}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Sine capReq7(
+ final amplitude=6e5,
+ final freqHz=1/1800,
+ final offset=19e5,
+ final startTime=0)
+ "Capacity requirement"
+ annotation (Placement(transformation(extent={{20,20},{40,40}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant staUp6(
+ final k=3)
+ "Next available chiller stage up"
+ annotation (Placement(transformation(extent={{20,-350},{40,-330}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant staDown6(
+ final k=2)
+ "Next available chiller stage down"
+ annotation (Placement(transformation(extent={{20,-390},{40,-370}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant curSta7(
+ final k=0)
+ "Current chiller stage"
+ annotation (Placement(transformation(extent={{260,-310},{280,-290}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Sine capReq8(
+ final amplitude=6e5,
+ final freqHz=1/1800,
+ final offset=5e5,
+ final startTime=0)
+ "Capacity requirement"
+ annotation (Placement(transformation(extent={{260,20},{280,40}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant staUp7(
+ final k=1)
+ "Next available chiller stage up"
+ annotation (Placement(transformation(extent={{260,-350},{280,-330}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant staDown7(
+ final k=0)
+ "Next available chiller stage down"
+ annotation (Placement(transformation(extent={{260,-390},{280,-370}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant Lift(
+ final k=16) "Chiller lift"
+ annotation (Placement(transformation(extent={{-420,-130},{-400,-110}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant LiftMin(
+ final k=10) "Minimum chiller lift"
+ annotation (Placement(transformation(extent={{-420,-220},{-400,-200}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant LiftMax(
+ final k=20) "Maximum chiller lift"
+ annotation (Placement(transformation(extent={{-420,-180},{-400,-160}})));
+
+equation
+
+ connect(curSta.y, PLRs0.u) annotation (Line(points={{-398,190},{-330,190},{-330,
+ 178},{-262,178}},
+ color={255,127,0}));
+ connect(staUp.y, PLRs0.uUp) annotation (Line(points={{-398,150},{-320,150},{-320,
+ 176},{-262,176}}, color={255,127,0}));
+ connect(staDown.y, PLRs0.uDown) annotation (Line(points={{-398,110},{-310,110},
+ {-310,174},{-262,174}}, color={255,127,0}));
+ connect(max.y, PLRs0.uCapReq) annotation (Line(points={{-318,370},{-290,370},{
+ -290,204},{-262,204}}, color={0,0,127}));
+ connect(capReq3.y, max.u1) annotation (Line(points={{-398,390},{-360,390},{-360,
+ 376},{-342,376}}, color={0,0,127}));
+ connect(lowLim.y, max.u2) annotation (Line(points={{-398,350},{-360,350},{-360,
+ 364},{-342,364}}, color={0,0,127}));
+ connect(capDes[1].y, PLRs0.uCapDes) annotation (Line(points={{-358,310},{-292,
+ 310},{-292,202},{-262,202}}, color={0,0,127}));
+ connect(capDes[2].y, PLRs0.uUpCapDes) annotation (Line(points={{-358,310},{-292,
+ 310},{-292,200},{-262,200}}, color={0,0,127}));
+ connect(capMin[1].y, PLRs0.uDowCapDes) annotation (Line(points={{-358,270},{-294,
+ 270},{-294,198},{-262,198}}, color={0,0,127}));
+ connect(capMin[1].y, PLRs0.uCapMin) annotation (Line(points={{-358,270},{-294,
+ 270},{-294,195},{-262,195}}, color={0,0,127}));
+ connect(capMin[2].y, PLRs0.uUpCapMin) annotation (Line(points={{-358,270},{-296,
+ 270},{-296,193},{-262,193}}, color={0,0,127}));
+ connect(staTyp.y, PLRs0.uTyp) annotation (Line(points={{-398,230},{-310,230},{
+ -310,182},{-262,182}}, color={255,127,0}));
+ connect(curSta1.y, PLRs1.u)
+ annotation (Line(points={{-178,190},{-110,190},{-110,178},{-42,178}},
+ color={255,127,0}));
+ connect(staUp1.y, PLRs1.uUp) annotation (Line(points={{-178,150},{-100,150},{-100,
+ 176},{-42,176}}, color={255,127,0}));
+ connect(staDown1.y, PLRs1.uDown) annotation (Line(points={{-178,110},{-90,110},
+ {-90,174},{-42,174}}, color={255,127,0}));
+ connect(max1.y, PLRs1.uCapReq) annotation (Line(points={{-98,370},{-70,370},{-70,
+ 204},{-42,204}}, color={0,0,127}));
+ connect(capReq1.y, max1.u1) annotation (Line(points={{-178,390},{-140,390},{-140,
+ 376},{-122,376}}, color={0,0,127}));
+ connect(curSta2.y,PLRs2. u)
+ annotation (Line(points={{42,190},{110,190},{110,178},{178,178}},
+ color={255,127,0}));
+ connect(staUp2.y,PLRs2.uUp) annotation (Line(points={{42,150},{120,150},{120,176},
+ {178,176}}, color={255,127,0}));
+ connect(staDown2.y,PLRs2.uDown) annotation (Line(points={{42,110},{130,110},{130,
+ 174},{178,174}}, color={255,127,0}));
+ connect(max2.y,PLRs2.uCapReq) annotation (Line(points={{122,370},{150,370},{150,
+ 204},{178,204}}, color={0,0,127}));
+ connect(capReq2.y,max2.u1) annotation (Line(points={{42,390},{80,390},{80,376},
+ {98,376}}, color={0,0,127}));
+ connect(curSta3.y,PLRs3. u)
+ annotation (Line(points={{282,190},{350,190},{350,178},{418,178}},
+ color={255,127,0}));
+ connect(staUp3.y,PLRs3.uUp) annotation (Line(points={{282,150},{360,150},{360,
+ 176},{418,176}}, color={255,127,0}));
+ connect(staDown3.y,PLRs3.uDown) annotation (Line(points={{282,110},{370,110},{
+ 370,174},{418,174}}, color={255,127,0}));
+ connect(max3.y,PLRs3.uCapReq) annotation (Line(points={{362,370},{410,370},{410,
+ 204},{418,204}}, color={0,0,127}));
+ connect(capReq4.y,max3.u1) annotation (Line(points={{282,390},{320,390},{320,376},
+ {338,376}}, color={0,0,127}));
+ connect(curSta4.y, PLRs4.u) annotation (Line(points={{-398,-300},{-330,-300},{
+ -330,-162},{-262,-162}}, color={255,127,0}));
+ connect(staUp4.y, PLRs4.uUp) annotation (Line(points={{-398,-340},{-320,-340},
+ {-320,-164},{-262,-164}}, color={255,127,0}));
+ connect(staDown4.y, PLRs4.uDown) annotation (Line(points={{-398,-380},{-310,-380},
+ {-310,-166},{-262,-166}}, color={255,127,0}));
+ connect(max4.y, PLRs4.uCapReq) annotation (Line(points={{-318,10},{-290,10},{-290,
+ -136},{-262,-136}}, color={0,0,127}));
+ connect(capReq5.y, max4.u1) annotation (Line(points={{-398,30},{-360,30},{-360,
+ 16},{-342,16}}, color={0,0,127}));
+ connect(lowLim4.y, max4.u2) annotation (Line(points={{-398,-10},{-360,-10},{-360,
+ 4},{-342,4}}, color={0,0,127}));
+ connect(capDes1[1].y, PLRs4.uCapDes) annotation (Line(points={{-358,-50},{-292,
+ -50},{-292,-138},{-262,-138}}, color={0,0,127}));
+ connect(capDes1[2].y, PLRs4.uUpCapDes) annotation (Line(points={{-358,-50},{-292,
+ -50},{-292,-140},{-262,-140}}, color={0,0,127}));
+ connect(capMin1[1].y, PLRs4.uDowCapDes) annotation (Line(points={{-358,-90},{-294,
+ -90},{-294,-142},{-262,-142}}, color={0,0,127}));
+ connect(capMin1[1].y, PLRs4.uCapMin) annotation (Line(points={{-358,-90},{-294,
+ -90},{-294,-145},{-262,-145}}, color={0,0,127}));
+ connect(capMin1[2].y, PLRs4.uUpCapMin) annotation (Line(points={{-358,-90},{-296,
+ -90},{-296,-147},{-262,-147}}, color={0,0,127}));
+ connect(staTyp4.y, PLRs4.uTyp) annotation (Line(points={{-398,-260},{-340,-260},
+ {-340,-158},{-262,-158}}, color={255,127,0}));
+ connect(curSta5.y,PLRs5. u)
+ annotation (Line(points={{-178,-300},{-110,-300},{-110,-162},{-42,-162}},
+ color={255,127,0}));
+ connect(staUp5.y,PLRs5. uUp) annotation (Line(points={{-178,-340},{-100,-340},
+ {-100,-164},{-42,-164}}, color={255,127,0}));
+ connect(staDown5.y,PLRs5. uDown) annotation (Line(points={{-178,-380},{-90,
+ -380},{-90,-166},{-42,-166}},
+ color={255,127,0}));
+ connect(max5.y,PLRs5. uCapReq) annotation (Line(points={{-98,10},{-70,10},{
+ -70,-136},{-42,-136}},color={0,0,127}));
+ connect(capReq6.y,max5. u1) annotation (Line(points={{-178,30},{-140,30},{-140,
+ 16},{-122,16}}, color={0,0,127}));
+ connect(curSta6.y,PLRs6. u)
+ annotation (Line(points={{42,-300},{110,-300},{110,-162},{178,-162}},
+ color={255,127,0}));
+ connect(staUp6.y,PLRs6.uUp) annotation (Line(points={{42,-340},{120,-340},{
+ 120,-164},{178,-164}},
+ color={255,127,0}));
+ connect(staDown6.y,PLRs6.uDown) annotation (Line(points={{42,-380},{130,-380},
+ {130,-166},{178,-166}}, color={255,127,0}));
+ connect(max6.y,PLRs6.uCapReq) annotation (Line(points={{122,10},{150,10},{150,
+ -136},{178,-136}}, color={0,0,127}));
+ connect(capReq7.y,max6.u1) annotation (Line(points={{42,30},{80,30},{80,16},{98,
+ 16}}, color={0,0,127}));
+ connect(curSta7.y,PLRs7. u)
+ annotation (Line(points={{282,-300},{350,-300},{350,-162},{418,-162}},
+ color={255,127,0}));
+ connect(staUp7.y,PLRs7.uUp) annotation (Line(points={{282,-340},{360,-340},{
+ 360,-164},{418,-164}},
+ color={255,127,0}));
+ connect(staDown7.y,PLRs7.uDown) annotation (Line(points={{282,-380},{370,-380},
+ {370,-166},{418,-166}}, color={255,127,0}));
+ connect(max7.y,PLRs7.uCapReq) annotation (Line(points={{362,10},{390,10},{390,
+ -136},{418,-136}}, color={0,0,127}));
+ connect(capReq8.y,max7.u1) annotation (Line(points={{282,30},{320,30},{320,16},
+ {338,16}}, color={0,0,127}));
+ connect(capMin1[1].y,PLRs7.uCapDes) annotation (Line(points={{-358,-90},{388,
+ -90},{388,-138},{418,-138}},
+ color={0,0,127}));
+ connect(capDes1[1].y,PLRs7.uUpCapDes) annotation (Line(points={{-358,-50},{
+ 388,-50},{388,-140},{418,-140}},
+ color={0,0,127}));
+ connect(capMin1[1].y,PLRs7.uDowCapDes) annotation (Line(points={{-358,-90},{
+ 386,-90},{386,-142},{418,-142}},
+ color={0,0,127}));
+ connect(capMin1[1].y,PLRs7.uCapMin) annotation (Line(points={{-358,-90},{386,
+ -90},{386,-145},{418,-145}},
+ color={0,0,127}));
+ connect(capMin1[1].y,PLRs7.uUpCapMin) annotation (Line(points={{-358,-90},{
+ 384,-90},{384,-147},{418,-147}},
+ color={0,0,127}));
+ connect(staTyp.y, PLRs1.uTyp) annotation (Line(points={{-398,230},{-90,230},{-90,
+ 182},{-42,182}}, color={255,127,0}));
+ connect(staTyp.y, PLRs2.uTyp) annotation (Line(points={{-398,230},{130,230},{130,
+ 182},{178,182}}, color={255,127,0}));
+ connect(staTyp4.y, PLRs5.uTyp) annotation (Line(points={{-398,-260},{-120,
+ -260},{-120,-158},{-42,-158}},
+ color={255,127,0}));
+ connect(staTyp4.y, PLRs6.uTyp) annotation (Line(points={{-398,-260},{100,-260},
+ {100,-158},{178,-158}}, color={255,127,0}));
+ connect(staTyp4.y, PLRs7.uTyp) annotation (Line(points={{-398,-260},{340,-260},
+ {340,-158},{418,-158}}, color={255,127,0}));
+ connect(Lift.y, PLRs4.uLif) annotation (Line(points={{-398,-120},{-360,-120},
+ {-360,-150},{-262,-150}},color={0,0,127}));
+ connect(LiftMax.y, PLRs4.uLifMax) annotation (Line(points={{-398,-170},{-380,-170},
+ {-380,-152},{-262,-152}}, color={0,0,127}));
+ connect(LiftMin.y, PLRs4.uLifMin) annotation (Line(points={{-398,-210},{-360,-210},
+ {-360,-154},{-262,-154}}, color={0,0,127}));
+ connect(Lift.y, PLRs5.uLif) annotation (Line(points={{-398,-120},{-140,-120},
+ {-140,-150},{-42,-150}},color={0,0,127}));
+ connect(LiftMax.y, PLRs5.uLifMax) annotation (Line(points={{-398,-170},{-380,
+ -170},{-380,-180},{-140,-180},{-140,-152},{-42,-152}},
+ color={0,0,127}));
+ connect(LiftMin.y, PLRs5.uLifMin) annotation (Line(points={{-398,-210},{-130,
+ -210},{-130,-154},{-42,-154}},
+ color={0,0,127}));
+ connect(Lift.y, PLRs6.uLif) annotation (Line(points={{-398,-120},{80,-120},{
+ 80,-150},{178,-150}},
+ color={0,0,127}));
+ connect(Lift.y, PLRs7.uLif) annotation (Line(points={{-398,-120},{320,-120},{
+ 320,-150},{418,-150}},
+ color={0,0,127}));
+ connect(LiftMax.y, PLRs6.uLifMax) annotation (Line(points={{-398,-170},{-380,
+ -170},{-380,-180},{80,-180},{80,-152},{178,-152}},
+ color={0,0,127}));
+ connect(LiftMax.y, PLRs7.uLifMax) annotation (Line(points={{-398,-170},{-380,
+ -170},{-380,-180},{320,-180},{320,-152},{418,-152}},
+ color={0,0,127}));
+ connect(LiftMin.y, PLRs6.uLifMin) annotation (Line(points={{-398,-210},{92,
+ -210},{92,-154},{178,-154}},
+ color={0,0,127}));
+ connect(PLRs7.uLifMin, LiftMin.y) annotation (Line(points={{418,-154},{332,
+ -154},{332,-210},{-398,-210}},
+ color={0,0,127}));
+ connect(staTyp.y, PLRs3.uTyp) annotation (Line(points={{-398,230},{372,230},{372,
+ 182},{418,182}}, color={255,127,0}));
+ connect(lowLim.y, max1.u2) annotation (Line(points={{-398,350},{-140,350},{-140,
+ 364},{-122,364}}, color={0,0,127}));
+ connect(lowLim.y, max2.u2) annotation (Line(points={{-398,350},{80,350},{80,364},
+ {98,364}}, color={0,0,127}));
+ connect(lowLim.y, max3.u2) annotation (Line(points={{-398,350},{320,350},{320,
+ 364},{338,364}}, color={0,0,127}));
+ connect(lowLim4.y, max5.u2) annotation (Line(points={{-398,-10},{-140,-10},{-140,
+ 4},{-122,4}}, color={0,0,127}));
+ connect(lowLim4.y, max6.u2) annotation (Line(points={{-398,-10},{80,-10},{80,4},
+ {98,4}}, color={0,0,127}));
+ connect(lowLim4.y, max7.u2) annotation (Line(points={{-398,-10},{320,-10},{320,
+ 4},{338,4}}, color={0,0,127}));
+ connect(capDes[2].y, PLRs1.uCapDes) annotation (Line(points={{-358,310},{-72,310},
+ {-72,202},{-42,202}}, color={0,0,127}));
+ connect(capDes[3].y, PLRs1.uUpCapDes) annotation (Line(points={{-358,310},{-72,
+ 310},{-72,200},{-42,200}}, color={0,0,127}));
+ connect(capDes[1].y, PLRs1.uDowCapDes) annotation (Line(points={{-358,310},{-72,
+ 310},{-72,198},{-42,198}}, color={0,0,127}));
+ connect(capMin[2].y, PLRs1.uCapMin) annotation (Line(points={{-358,270},{-74,270},
+ {-74,195},{-42,195}}, color={0,0,127}));
+ connect(capMin[3].y, PLRs1.uUpCapMin) annotation (Line(points={{-358,270},{-74,
+ 270},{-74,193},{-42,193}}, color={0,0,127}));
+ connect(capDes1[2].y, PLRs5.uCapDes) annotation (Line(points={{-358,-50},{-80,
+ -50},{-80,-138},{-42,-138}}, color={0,0,127}));
+ connect(capDes1[3].y, PLRs5.uUpCapDes) annotation (Line(points={{-358,-50},{
+ -80,-50},{-80,-140},{-42,-140}},
+ color={0,0,127}));
+ connect(capDes1[1].y, PLRs5.uDowCapDes) annotation (Line(points={{-358,-50},{
+ -80,-50},{-80,-142},{-42,-142}},
+ color={0,0,127}));
+ connect(capMin1[2].y, PLRs5.uCapMin) annotation (Line(points={{-358,-90},{-90,
+ -90},{-90,-145},{-42,-145}}, color={0,0,127}));
+ connect(capMin1[1].y, PLRs5.uUpCapMin) annotation (Line(points={{-358,-90},{
+ -90,-90},{-90,-147},{-42,-147}},
+ color={0,0,127}));
+ connect(capDes[3].y, PLRs2.uCapDes) annotation (Line(points={{-358,310},{140,310},
+ {140,202},{178,202}}, color={0,0,127}));
+ connect(capDes[3].y, PLRs2.uUpCapDes) annotation (Line(points={{-358,310},{140,
+ 310},{140,200},{178,200}}, color={0,0,127}));
+ connect(capDes[2].y, PLRs2.uDowCapDes) annotation (Line(points={{-358,310},{140,
+ 310},{140,198},{178,198}}, color={0,0,127}));
+ connect(capMin[3].y, PLRs2.uCapMin) annotation (Line(points={{-358,270},{138,270},
+ {138,195},{178,195}}, color={0,0,127}));
+ connect(capMin[3].y, PLRs2.uUpCapMin) annotation (Line(points={{-358,270},{138,
+ 270},{138,193},{178,193}}, color={0,0,127}));
+ connect(capDes1[3].y, PLRs6.uCapDes) annotation (Line(points={{-358,-50},{140,
+ -50},{140,-138},{178,-138}}, color={0,0,127}));
+ connect(capDes1[3].y, PLRs6.uUpCapDes) annotation (Line(points={{-358,-50},{
+ 140,-50},{140,-140},{178,-140}},
+ color={0,0,127}));
+ connect(capDes1[2].y, PLRs6.uDowCapDes) annotation (Line(points={{-358,-50},{
+ 140,-50},{140,-142},{178,-142}},
+ color={0,0,127}));
+ connect(capMin1[3].y, PLRs6.uCapMin) annotation (Line(points={{-358,-90},{130,
+ -90},{130,-145},{178,-145}}, color={0,0,127}));
+ connect(capMin1[3].y, PLRs6.uUpCapMin) annotation (Line(points={{-358,-90},{
+ 130,-90},{130,-147},{178,-147}},
+ color={0,0,127}));
+ connect(capMin[1].y, PLRs3.uCapDes) annotation (Line(points={{-358,270},{398,270},
+ {398,202},{418,202}}, color={0,0,127}));
+ connect(capDes[1].y, PLRs3.uUpCapDes) annotation (Line(points={{-358,310},{400,
+ 310},{400,200},{418,200}}, color={0,0,127}));
+ connect(capMin[1].y, PLRs3.uDowCapDes) annotation (Line(points={{-358,270},{398,
+ 270},{398,198},{418,198}}, color={0,0,127}));
+ connect(capMin[1].y, PLRs3.uCapMin) annotation (Line(points={{-358,270},{398,270},
+ {398,195},{418,195}}, color={0,0,127}));
+ connect(capMin[1].y, PLRs3.uUpCapMin) annotation (Line(points={{-358,270},{398,
+ 270},{398,193},{418,193}}, color={0,0,127}));
+annotation (
+ experiment(StopTime=1200.0, Tolerance=1e-06),
+ __Dymola_Commands(file="modelica://Buildings/Resources/Scripts/Dymola/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/SetPoints/Subsequences/Validation/PartLoadRatios_u_uTyp.mos"
+ "Simulate and plot"),
+ Documentation(info="
+
+This example validates
+
+Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.SetPoints.Subsequences.PartLoadRatios.
+
+", revisions="
+
+-
+January 03, 2020, by Milica Grahovac:
+First implementation.
+
+
+"),
+Icon(graphics={
+ Ellipse(lineColor = {75,138,73},
+ fillColor={255,255,255},
+ fillPattern = FillPattern.Solid,
+ extent = {{-100,-100},{100,100}}),
+ Polygon(lineColor = {0,0,255},
+ fillColor = {75,138,73},
+ pattern = LinePattern.None,
+ fillPattern = FillPattern.Solid,
+ points = {{-36,60},{64,0},{-36,-60},{-36,60}})}),Diagram(
+ coordinateSystem(preserveAspectRatio=false, extent={{-480,-420},{480,420}}),
+ graphics={Text(
+ extent={{-232,102},{252,40}},
+ textColor={127,127,127},
+ textString="Stage types: 1 - positive displacement, 2 and 3 - constant speed centrifugal"),
+ Text(
+ extent={{-256,-372},{308,-446}},
+ textColor={127,127,127},
+ textString="Stage types: 1 - positive displacement, 2 - variable speed centrifugal, 3 - constant speed centrifugal")}));
+end PartLoadRatios_u_uTyp;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/SetPoints/Subsequences/Validation/Status_u_uAva.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/SetPoints/Subsequences/Validation/Status_u_uAva.mo
new file mode 100644
index 00000000000..7869dd85989
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/SetPoints/Subsequences/Validation/Status_u_uAva.mo
@@ -0,0 +1,200 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.SetPoints.Subsequences.Validation;
+model Status_u_uAva "Validates chiller stage status subsequence"
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.SetPoints.Subsequences.Status sta(
+ final nSta=4,
+ final nChi=3,
+ final staMat={{1,0,0},{1,1,0},{0,1,1},{1,1,1}})
+ "Tests chiller stage status"
+ annotation (Placement(transformation(extent={{-40,120},{-20,140}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.SetPoints.Subsequences.Status sta1(
+ final nSta=4,
+ final nChi=3,
+ final staMat={{1,0,0},{1,1,0},{0,1,1},{1,1,1}})
+ "Tests chiller stage status at the first stage"
+ annotation (Placement(transformation(extent={{-40,40},{-20,60}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.SetPoints.Subsequences.Status sta2(
+ final nSta=4,
+ final nChi=3,
+ final staMat={{0,1,0},{1,1,0},{0,1,1},{1,1,1}})
+ "Tests chiller stage status with no higher stages available"
+ annotation (Placement(transformation(extent={{120,120},{140,140}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.SetPoints.Subsequences.Status sta3(
+ final nSta=4,
+ final nChi=3,
+ final staMat={{0,1,0},{1,1,0},{0,1,1},{1,1,1}})
+ "Tests chiller stage status with no lower stages available"
+ annotation (Placement(transformation(extent={{120,40},{140,60}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.SetPoints.Subsequences.Status sta4(
+ final nSta=4,
+ final nChi=3,
+ final staMat={{1,0,0},{1,1,0},{0,1,1},{1,1,1}})
+ "Tests chiller stage status at the highest stage"
+ annotation (Placement(transformation(extent={{-40,-60},{-20,-40}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.SetPoints.Subsequences.Status sta6(
+ final nSta=4,
+ final nChi=3,
+ final staMat={{1,0,0},{1,1,0},{0,1,1},{1,1,1}})
+ "Tests for unavailable current stage input"
+ annotation (Placement(transformation(extent={{120,-60},{140,-40}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.SetPoints.Subsequences.Status sta7(
+ final nSta=4,
+ final nChi=3,
+ final staMat={{1,0,0},{1,1,0},{0,1,1},{1,1,1}})
+ "Tests for unavailable current stage input, with no higher stages available"
+ annotation (Placement(transformation(extent={{120,-130},{140,-110}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.SetPoints.Subsequences.Status sta5(
+ final nSta=4,
+ final nChi=3,
+ final staMat={{1,0,0},{1,1,0},{0,1,1},{1,1,1}})
+ "Tests chiller stage status at zero current stage"
+ annotation (Placement(transformation(extent={{-40,-140},{-20,-120}})));
+
+protected
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant u(final k=3)
+ "Chiller stage"
+ annotation (Placement(transformation(extent={{-140,100},{-120,120}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant u1(final k=2)
+ "Chiller stage"
+ annotation (Placement(transformation(extent={{-140,20},{-120,40}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant u2(final k=3)
+ "Chiller stage"
+ annotation (Placement(transformation(extent={{20,100},{40,120}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant u3(final k=1)
+ "Chiller stage"
+ annotation (Placement(transformation(extent={{20,20},{40,40}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant u4(final k=4)
+ "Chiller stage"
+ annotation (Placement(transformation(extent={{-140,-80},{-120,-60}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant u5(final k=2)
+ "Chiller stage"
+ annotation (Placement(transformation(extent={{20,-80},{40,-60}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant u7(final k=0)
+ "Chiller stage"
+ annotation (Placement(transformation(extent={{-140,-160},{-120,-140}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant ava[4](
+ final k={true,true,true,true}) "Stage availability array"
+ annotation (Placement(transformation(extent={{-140,140},{-120,160}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant ava1[4](
+ final k={false,true,true,true}) "Stage availability array"
+ annotation (Placement(transformation(extent={{-140,60},{-120,80}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant ava2[4](
+ final k={true,false,true,false}) "Stage availability array"
+ annotation (Placement(transformation(extent={{20,140},{40,160}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant ava3[4](
+ final k={true,false,true,false}) "Stage availability array"
+ annotation (Placement(transformation(extent={{20,60},{40,80}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant ava6[4](
+ final k={true,true,false,false}) "Stage availability array"
+ annotation (Placement(transformation(extent={{20,-120},{40,-100}})));
+
+ Buildings.Controls.OBC.CDL.Conversions.IntegerToReal intToRea "Type converter"
+ annotation (Placement(transformation(extent={{20,-160},{40,-140}})));
+
+ Buildings.Controls.OBC.CDL.Conversions.RealToInteger reaToInt "Type converter"
+ annotation (Placement(transformation(extent={{80,-160},{100,-140}})));
+
+ Buildings.Controls.OBC.CDL.Discrete.UnitDelay uniDel(
+ final samplePeriod=1,
+ final y_start=3) "Unit delay"
+ annotation (Placement(transformation(extent={{50,-160},{70,-140}})));
+
+equation
+ connect(ava.y, sta.uAva) annotation (Line(points={{-118,150},{-80,150},{-80,
+ 124},{-42,124}},
+ color={255,0,255}));
+ connect(u.y, sta.u) annotation (Line(points={{-118,110},{-60,110},{-60,136},{
+ -42,136}},
+ color={255,127,0}));
+ connect(ava1.y, sta1.uAva) annotation (Line(points={{-118,70},{-80,70},{-80,
+ 44},{-42,44}},
+ color={255,0,255}));
+ connect(u1.y, sta1.u) annotation (Line(points={{-118,30},{-60,30},{-60,56},{
+ -42,56}},
+ color={255,127,0}));
+ connect(ava2.y, sta2.uAva) annotation (Line(points={{42,150},{80,150},{80,124},
+ {118,124}}, color={255,0,255}));
+ connect(u2.y, sta2.u) annotation (Line(points={{42,110},{100,110},{100,136},{
+ 118,136}},
+ color={255,127,0}));
+ connect(ava3.y, sta3.uAva) annotation (Line(points={{42,70},{80,70},{80,44},{
+ 118,44}},
+ color={255,0,255}));
+ connect(u3.y, sta3.u) annotation (Line(points={{42,30},{100,30},{100,56},{118,
+ 56}}, color={255,127,0}));
+ connect(u4.y, sta4.u) annotation (Line(points={{-118,-70},{-80,-70},{-80,-44},
+ {-42,-44}}, color={255,127,0}));
+ connect(u5.y, sta6.u) annotation (Line(points={{42,-70},{100,-70},{100,-44},{
+ 118,-44}},
+ color={255,127,0}));
+ connect(ava6.y, sta7.uAva) annotation (Line(points={{42,-110},{80,-110},{80,
+ -126},{118,-126}},
+ color={255,0,255}));
+ connect(u7.y, sta5.u) annotation (Line(points={{-118,-150},{-80,-150},{-80,
+ -124},{-42,-124}},
+ color={255,127,0}));
+ connect(ava.y, sta4.uAva) annotation (Line(points={{-118,150},{-100,150},{
+ -100,-56},{-42,-56}},
+ color={255,0,255}));
+ connect(ava.y, sta5.uAva) annotation (Line(points={{-118,150},{-100,150},{
+ -100,-136},{-42,-136}},
+ color={255,0,255}));
+ connect(ava3.y, sta6.uAva) annotation (Line(points={{42,70},{60,70},{60,-56},
+ {118,-56}},color={255,0,255}));
+ connect(intToRea.y, uniDel.u)
+ annotation (Line(points={{42,-150},{48,-150}}, color={0,0,127}));
+ connect(uniDel.y, reaToInt.u)
+ annotation (Line(points={{72,-150},{78,-150}}, color={0,0,127}));
+ connect(reaToInt.y, sta7.u) annotation (Line(points={{102,-150},{110,-150},{
+ 110,-114},{118,-114}},
+ color={255,127,0}));
+ connect(sta7.yAvaUp, intToRea.u) annotation (Line(points={{142,-113},{148,-113},
+ {148,-168},{8,-168},{8,-150},{18,-150}}, color={255,127,0}));
+annotation (
+ experiment(StopTime=10.0, Tolerance=1e-06),
+ __Dymola_Commands(file="modelica://Buildings/Resources/Scripts/Dymola/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/SetPoints/Subsequences/Validation/Status_u_uAva.mos"
+ "Simulate and plot"),
+ Documentation(info="
+
+This example validates
+
+Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.Generic.Status.
+
+", revisions="
+
+-
+March 26, 2020, by Milica Grahovac:
+First implementation.
+
+
+"),
+Icon(graphics={
+ Ellipse(lineColor = {75,138,73},
+ fillColor={255,255,255},
+ fillPattern = FillPattern.Solid,
+ extent = {{-100,-100},{100,100}}),
+ Polygon(lineColor = {0,0,255},
+ fillColor = {75,138,73},
+ pattern = LinePattern.None,
+ fillPattern = FillPattern.Solid,
+ points = {{-36,60},{64,0},{-36,-60},{-36,60}})}),Diagram(
+ coordinateSystem(preserveAspectRatio=false, extent={{-160,-180},{160,180}})));
+end Status_u_uAva;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/SetPoints/Subsequences/Validation/Up.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/SetPoints/Subsequences/Validation/Up.mo
new file mode 100644
index 00000000000..b4e8258a7ee
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/SetPoints/Subsequences/Validation/Up.mo
@@ -0,0 +1,198 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.SetPoints.Subsequences.Validation;
+model Up "Validate change stage up condition sequence"
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.SetPoints.Subsequences.Up
+ staUp(have_locSen=true, effConTruDelay=900)
+ "Generates stage up signal"
+ annotation (Placement(transformation(extent={{-40,50},{-20,70}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.SetPoints.Subsequences.Up
+ staUp1(final have_WSE=true, have_locSen=true)
+ "Generates stage up signal"
+ annotation (Placement(transformation(extent={{140,50},{160,70}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant avaCur(
+ final k=true)
+ "Current stage availability"
+ annotation (Placement(transformation(extent={{-100,-70},{-80,-50}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant avaCur1(
+ final k=true)
+ "Current stage availability"
+ annotation (Placement(transformation(extent={{80,-70},{100,-50}})));
+
+ CDL.Logical.Sources.Pulse booPul(final width=0.1,
+ final period=3600)
+ "Enabled plant"
+ annotation (Placement(transformation(extent={{-160,-100},{-140,-80}})));
+ CDL.Logical.Not not1
+ "Logical not"
+ annotation (Placement(transformation(extent={{-120,-100},{-100,-80}})));
+protected
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant stage0(
+ final k=0) "0th stage"
+ annotation (Placement(transformation(extent={{-160,110},{-140,130}})));
+
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant stage1(
+ final k=1) "1st stage"
+ annotation (Placement(transformation(extent={{20,110},{40,130}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant TCWSupSet(
+ final k=273.15 + 14) "Chilled water supply temperature setpoint"
+ annotation (Placement(transformation(extent={{-160,-10},{-140,10}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant dpChiWatSet(
+ final k=65*6895) "Chilled water differential pressure setpoint"
+ annotation (Placement(transformation(extent={{-120,10},{-100,30}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Sine TCWSup(
+ final amplitude=3,
+ final freqHz=1/3600,
+ final offset=273.15 + 16) "Chilled water supply temperature"
+ annotation (Placement(transformation(extent={{-160,-50},{-140,-30}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Sine dpChiWat(
+ final amplitude=6895,
+ final startTime=300,
+ final freqHz=1/1200,
+ final offset=63*6895) "Chilled water differential pressure"
+ annotation (Placement(transformation(extent={{-120,-30},{-100,-10}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Sine Ope(
+ final phase(displayUnit="rad"),
+ final startTime=0,
+ final offset=0.85,
+ final freqHz=1/2100,
+ final amplitude=0.05) "Operating part load ratio of the current stage"
+ annotation (Placement(transformation(extent={{-120,90},{-100,110}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant StaUp(
+ final k=0.8)
+ "Staging part load ratio of the next stage up"
+ annotation (Placement(transformation(extent={{-120,50},{-100,70}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant TCWSupSet1(
+ final k=273.15 + 14) "Chilled water supply temperature setpoint"
+ annotation (Placement(transformation(extent={{20,-10},{40,10}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant dpChiWatSet1(
+ final k=65*6895)
+ "Chilled water differential pressure setpoint"
+ annotation (Placement(transformation(extent={{60,10},{80,30}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Sine TCWSup1(
+ final amplitude=3,
+ final offset=273.15 + 15.5,
+ final freqHz=1/3600)
+ "Chilled water supply temperature"
+ annotation (Placement(transformation(extent={{20,-50},{40,-30}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Sine dpChiWat1(
+ final amplitude=6895,
+ phase=-0.78539816339745,
+ final startTime=300,
+ final freqHz=1/1200,
+ final offset=63*6895) "Chilled water differential pressure"
+ annotation (Placement(transformation(extent={{60,-30},{80,-10}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Sine Ope1(
+ final amplitude=0.1,
+ final phase(displayUnit="rad"),
+ final startTime=0,
+ final offset=0.85,
+ final freqHz=1/2100) "Operating part load ratio of the current stage"
+ annotation (Placement(transformation(extent={{60,90},{80,110}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant StaUp1(
+ final k=0.8)
+ "Staging part load ratio of the next stage up"
+ annotation (Placement(transformation(extent={{60,50},{80,70}})));
+
+equation
+
+ connect(StaUp.y, staUp.uStaUp) annotation (Line(points={{-98,60},{-88,60},{
+ -88,69},{-42,69}}, color={0,0,127}));
+ connect(Ope.y, staUp.uOpe) annotation (Line(points={{-98,100},{-80,100},{-80,
+ 71},{-42,71}},
+ color={0,0,127}));
+ connect(TCWSupSet.y, staUp.TChiWatSupSet) annotation (Line(points={{-138,0},{
+ -80,0},{-80,67},{-42,67}}, color={0,0,127}));
+ connect(TCWSup.y, staUp.TChiWatSup) annotation (Line(points={{-138,-40},{-74,
+ -40},{-74,65},{-42,65}},color={0,0,127}));
+ connect(dpChiWatSet.y, staUp.dpChiWatPumSet_local) annotation (Line(points={{-98,20},
+ {-68,20},{-68,63},{-42,63}}, color={0,0,127}));
+ connect(dpChiWat.y, staUp.dpChiWatPum_local) annotation (Line(points={{-98,-20},
+ {-62,-20},{-62,61},{-42,61}}, color={0,0,127}));
+ connect(stage0.y, staUp.u) annotation (Line(points={{-138,120},{-56,120},{-56,
+ 55},{-42,55}}, color={255,127,0}));
+ connect(StaUp1.y, staUp1.uStaUp) annotation (Line(points={{82,60},{92,60},{92,
+ 69},{138,69}}, color={0,0,127}));
+ connect(Ope1.y, staUp1.uOpe) annotation (Line(points={{82,100},{100,100},{100,
+ 71},{138,71}}, color={0,0,127}));
+ connect(TCWSupSet1.y, staUp1.TChiWatSupSet) annotation (Line(points={{42,0},{
+ 100,0},{100,67},{138,67}}, color={0,0,127}));
+ connect(TCWSup1.y, staUp1.TChiWatSup) annotation (Line(points={{42,-40},{106,
+ -40},{106,65},{138,65}}, color={0,0,127}));
+ connect(dpChiWatSet1.y, staUp1.dpChiWatPumSet_local) annotation (Line(points={{82,20},
+ {112,20},{112,63},{138,63}}, color={0,0,127}));
+ connect(dpChiWat1.y, staUp1.dpChiWatPum_local) annotation (Line(points={{82,-20},
+ {118,-20},{118,61},{138,61}}, color={0,0,127}));
+ connect(stage1.y, staUp1.u) annotation (Line(points={{42,120},{124,120},{124,
+ 55},{138,55}},
+ color={255,127,0}));
+ connect(avaCur.y, staUp.uAvaCur) annotation (Line(points={{-78,-60},{-56,-60},
+ {-56,53},{-42,53}}, color={255,0,255}));
+ connect(avaCur1.y, staUp1.uAvaCur) annotation (Line(points={{102,-60},{124,
+ -60},{124,53},{138,53}}, color={255,0,255}));
+ connect(booPul.y, not1.u)
+ annotation (Line(points={{-138,-90},{-122,-90}}, color={255,0,255}));
+ connect(not1.y, staUp.uPla) annotation (Line(points={{-98,-90},{-50,-90},{-50,
+ 51},{-42,51}}, color={255,0,255}));
+ connect(avaCur1.y, staUp1.uPla) annotation (Line(points={{102,-60},{124,-60},
+ {124,51},{138,51}}, color={255,0,255}));
+annotation (
+ experiment(StopTime=3600.0, Tolerance=1e-06),
+ __Dymola_Commands(file="modelica://Buildings/Resources/Scripts/Dymola/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/SetPoints/Subsequences/Validation/Up.mos"
+ "Simulate and plot"),
+ Documentation(info="
+
+This example validates
+
+Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.SetPoints.Subsequences.Up.
+
+", revisions="
+
+-
+March 26, 2020, by Milica Grahovac:
+First implementation.
+
+
+"),
+Icon(graphics={
+ Ellipse(lineColor = {75,138,73},
+ fillColor={255,255,255},
+ fillPattern = FillPattern.Solid,
+ extent = {{-100,-100},{100,100}}),
+ Polygon(lineColor = {0,0,255},
+ fillColor = {75,138,73},
+ pattern = LinePattern.None,
+ fillPattern = FillPattern.Solid,
+ points = {{-36,60},{64,0},{-36,-60},{-36,60}})}),Diagram(
+ coordinateSystem(preserveAspectRatio=false, extent={{-180,-140},{180,
+ 140}}),
+ graphics={
+ Text(
+ extent={{-138,-110},{-76,-134}},
+ textColor={0,0,127},
+ textString="Tests stage 0 to stage 1 enable
+based on chilled water supply
+temperature.
+
+Other inputs are kept the same
+as in the example on the right."),
+ Text(
+ extent={{46,-108},{106,-130}},
+ textColor={0,0,127},
+ textString="Tests stage up enable for any stage above
+and including stage 1. In this test the plant has a WSE.
+The same applies for any stage in case the plant does not have a WSE.")}));
+end Up;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/SetPoints/Subsequences/Validation/package.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/SetPoints/Subsequences/Validation/package.mo
new file mode 100644
index 00000000000..c33089f4696
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/SetPoints/Subsequences/Validation/package.mo
@@ -0,0 +1,37 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.SetPoints.Subsequences;
+package Validation "Collection of validation models"
+
+annotation (preferredView="info", Documentation(info="
+
+This package contains validation models for the classes in
+
+Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.SetPoints.Subsequences.
+
+
+Note that most validation models contain simple input data
+which may not be realistic, but for which the correct
+output can be obtained through an analytic solution.
+The examples plot various outputs, which have been verified against these
+solutions. These model outputs are stored as reference data and
+used for continuous validation whenever models in the library change.
+
+"),
+ Icon(graphics={
+ Rectangle(
+ lineColor={200,200,200},
+ fillColor={248,248,248},
+ fillPattern=FillPattern.HorizontalCylinder,
+ extent={{-100.0,-100.0},{100.0,100.0}},
+ radius=25.0),
+ Polygon(
+ origin={8.0,14.0},
+ lineColor={78,138,73},
+ fillColor={78,138,73},
+ pattern=LinePattern.None,
+ fillPattern=FillPattern.Solid,
+ points={{-58.0,46.0},{42.0,-14.0},{-58.0,-74.0},{-58.0,46.0}}),
+ Rectangle(
+ lineColor={128,128,128},
+ extent={{-100.0,-100.0},{100.0,100.0}},
+ radius=25.0)}));
+end Validation;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/SetPoints/Subsequences/Validation/package.order b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/SetPoints/Subsequences/Validation/package.order
new file mode 100644
index 00000000000..ee24e61ea07
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/SetPoints/Subsequences/Validation/package.order
@@ -0,0 +1,14 @@
+Capacities_u
+Capacities_uLow_uHig
+CapacityRequirement
+Change
+ChillerIndices_u
+Configurator_uChiAva
+Down
+EfficiencyCondition
+FailsafeCondition
+Initial_WSE
+Initial_noWSE
+PartLoadRatios_u_uTyp
+Status_u_uAva
+Up
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/SetPoints/Subsequences/package.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/SetPoints/Subsequences/package.mo
new file mode 100644
index 00000000000..97309c02001
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/SetPoints/Subsequences/package.mo
@@ -0,0 +1,40 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.SetPoints;
+package Subsequences "Chiller staging subsequences"
+annotation (preferredView="info", Documentation(info="
+This package contains chiller stage setpoint control subsequences.
+"),
+ Icon(graphics={
+ Rectangle(
+ lineColor={200,200,200},
+ fillColor={248,248,248},
+ fillPattern=FillPattern.HorizontalCylinder,
+ extent={{-100.0,-100.0},{100.0,100.0}},
+ radius=25.0),
+ Ellipse(
+ origin={10.0,10.0},
+ lineColor={128,128,128},
+ fillColor={255,255,255},
+ fillPattern=FillPattern.Solid,
+ extent={{-80.0,0.0},{-20.0,60.0}}),
+ Ellipse(
+ origin={10.0,10.0},
+ fillColor={128,128,128},
+ pattern=LinePattern.None,
+ fillPattern=FillPattern.Solid,
+ extent={{0.0,0.0},{60.0,60.0}}),
+ Ellipse(
+ origin={10.0,10.0},
+ pattern=LinePattern.None,
+ fillPattern=FillPattern.Solid,
+ extent={{0.0,-80.0},{60.0,-20.0}}),
+ Ellipse(
+ origin={10.0,10.0},
+ fillColor={76,76,76},
+ pattern=LinePattern.None,
+ fillPattern=FillPattern.Solid,
+ extent={{-80.0,-80.0},{-20.0,-20.0}}),
+ Rectangle(
+ lineColor={128,128,128},
+ extent={{-100.0,-100.0},{100.0,100.0}},
+ radius=25.0)}));
+end Subsequences;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/SetPoints/Subsequences/package.order b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/SetPoints/Subsequences/package.order
new file mode 100644
index 00000000000..420994352a2
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/SetPoints/Subsequences/package.order
@@ -0,0 +1,13 @@
+Capacities
+CapacityRequirement
+Change
+ChillerIndices
+Configurator
+Down
+EfficiencyCondition
+FailsafeCondition
+Initial
+PartLoadRatios
+Status
+Up
+Validation
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/SetPoints/Validation/SetpointController_WSE.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/SetPoints/Validation/SetpointController_WSE.mo
new file mode 100644
index 00000000000..ba12d4bb174
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/SetPoints/Validation/SetpointController_WSE.mo
@@ -0,0 +1,434 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.SetPoints.Validation;
+model SetpointController_WSE
+ "Validates chiller stage status setpoint signal generation for plants with WSE"
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.SetPoints.SetpointController staSetCon(
+ final have_WSE=true,
+ final have_locSen=true,
+ final chiDesCap={500000,700000},
+ final chiMinCap={100000,200000},
+ final chiTyp={Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Types.ChillerAndStageTypes.positiveDisplacement,
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Types.ChillerAndStageTypes.positiveDisplacement})
+ "Chiller stage setpoint controller"
+ annotation (Placement(transformation(extent={{60,140},{80,180}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.SetPoints.SetpointController staSetCon1(
+ final have_WSE=true,
+ final have_locSen=true,
+ final nSta=4,
+ final nChi=3,
+ final staMat={{1,0,0},{0,1,0},{1,1,0},{1,1,1}},
+ final chiDesCap={300000,400000,500000},
+ final chiMinCap={50000,100000,150000},
+ final chiTyp={Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Types.ChillerAndStageTypes.positiveDisplacement,
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Types.ChillerAndStageTypes.positiveDisplacement,
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Types.ChillerAndStageTypes.constantSpeedCentrifugal})
+ "Chiller stage setpoint controller"
+ annotation (Placement(transformation(extent={{60,-100},{80,-60}})));
+
+protected
+ parameter Real TChiWatSupSet(
+ final unit="K",
+ final quantity="ThermodynamicTemperature",
+ displayUnit="degC")=285.15
+ "Chilled water supply set temperature";
+
+ parameter Real aveTChiWatRet(
+ final unit="K",
+ final quantity="ThermodynamicTemperature",
+ displayUnit="degC")=288.15
+ "Average measured chilled water return temperature";
+
+ parameter Real minStaRuntime(
+ final unit="s",
+ final quantity="Time",
+ displayUnit="h")=900
+ "Minimum stage runtime";
+
+ parameter Real aveVChiWat_flow(
+ final unit="m3/s",
+ final quantity="VolumeFlowRate",
+ displayUnit="m3/s")=0.05
+ "Average measured chilled water flow rate";
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Sine TChiWatRet(
+ final amplitude=7,
+ final offset=273.15 + 15,
+ final freqHz=1/21600)
+ "Chilled water return temeprature"
+ annotation (Placement(transformation(extent={{-200,140},{-180,160}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Sine chiWatFlow(
+ final offset=0,
+ final freqHz=1/21600,
+ final amplitude=0.037)
+ "Chilled water flow"
+ annotation (Placement(transformation(extent={{-200,100},{-180,120}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant chiAva[2](
+ final k={true,true})
+ "Chiller availability vector"
+ annotation (Placement(transformation(extent={{-120,200},{-100,220}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Max max "Maximum"
+ annotation (Placement(transformation(extent={{-160,100},{-140,120}})));
+
+ Buildings.Controls.OBC.CDL.Discrete.ZeroOrderHold zerOrdHol(
+ final samplePeriod=10) "Zero order hold"
+ annotation (Placement(transformation(extent={{140,140},{160,160}})));
+
+ Buildings.Controls.OBC.CDL.Conversions.IntegerToReal intToRea
+ "Integer to real conversion"
+ annotation (Placement(transformation(extent={{100,140},{120,160}})));
+
+ Buildings.Controls.OBC.CDL.Conversions.RealToInteger reaToInt
+ "Real to integer conversion"
+ annotation (Placement(transformation(extent={{180,140},{200,160}})));
+
+ Buildings.Controls.OBC.CDL.Logical.TrueFalseHold truFalHol(
+ final trueHoldDuration=100,
+ final falseHoldDuration=0)
+ "True hold to visualize the stage change initiation"
+ annotation (Placement(transformation(extent={{100,60},{120,80}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Pre pre "Pre block"
+ annotation (Placement(transformation(extent={{140,60},{160,80}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant plaSta(
+ final k=true)
+ "Plant status"
+ annotation (Placement(transformation(extent={{-60,50},{-40,70}})));
+
+ Buildings.Controls.OBC.CDL.Logical.TrueDelay truDel(
+ final delayTime=10,
+ final delayOnInit=true) "True delay"
+ annotation (Placement(transformation(extent={{-20,50},{0,70}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.AddParameter wseTPre(
+ final p=-3) "Predicted WSE outlet temperature"
+ annotation (Placement(transformation(extent={{0,200},{20,220}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Ramp TCWSup(
+ final height=-2.1,
+ final duration=300,
+ final offset=273.15 + 16,
+ final startTime=1500) "Chilled water supply temperature ramp"
+ annotation (Placement(transformation(extent={{-120,100},{-100,120}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.TimeTable wseSta(
+ final table=[0,1; 1500,1; 1500,0; 12500,0;
+ 12500,1; 14000,1], smoothness=Buildings.Controls.OBC.CDL.Types.Smoothness.LinearSegments)
+ "WSE is on during low loads, off during high loads"
+ annotation (Placement(transformation(extent={{-60,10},{-40,30}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.GreaterThreshold greThr(
+ final t=0.5) "Greater threshold"
+ annotation (Placement(transformation(extent={{-20,10},{0,30}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Sine TChiWatRet1(
+ final amplitude=7,
+ final offset=273.15 + 15,
+ final freqHz=1/21600)
+ "Chilled water return temeprature"
+ annotation (Placement(transformation(extent={{-200,-100},{-180,-80}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Sine chiWatFlow1(
+ final offset=0,
+ final freqHz=1/21600,
+ final amplitude=0.037)
+ "Chilled water flow"
+ annotation (Placement(transformation(extent={{-200,-140},{-180,-120}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant chiAva1[3](
+ final k={true,true,true})
+ "Chiller availability vector"
+ annotation (Placement(transformation(extent={{-120,-40},{-100,-20}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Max max1 "Maximum"
+ annotation (Placement(transformation(extent={{-160,-140},{-140,-120}})));
+
+ Buildings.Controls.OBC.CDL.Discrete.ZeroOrderHold zerOrdHol1(
+ final samplePeriod=10) "Zero order hold"
+ annotation (Placement(transformation(extent={{140,-100},{160,-80}})));
+
+ Buildings.Controls.OBC.CDL.Conversions.IntegerToReal intToRea1
+ "Type converter"
+ annotation (Placement(transformation(extent={{100,-100},{120,-80}})));
+
+ Buildings.Controls.OBC.CDL.Conversions.RealToInteger reaToInt1
+ "Type converter"
+ annotation (Placement(transformation(extent={{180,-100},{200,-80}})));
+
+ Buildings.Controls.OBC.CDL.Logical.TrueFalseHold truFalHol1(final
+ trueHoldDuration=100, final falseHoldDuration=0)
+ "True hold to visualize the stage change initiation"
+ annotation (Placement(transformation(extent={{100,-180},{120,-160}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Pre pre1 "Logical pre"
+ annotation (Placement(transformation(extent={{140,-180},{160,-160}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant plaSta1(
+ final k=true) "Plant status"
+ annotation (Placement(transformation(extent={{-60,-180},{-40,-160}})));
+
+ Buildings.Controls.OBC.CDL.Logical.TrueDelay truDel1(
+ final delayTime=10,
+ final delayOnInit=true) "True delay"
+ annotation (Placement(transformation(extent={{-20,-180},{0,-160}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.AddParameter wseTPre1(
+ final p=-3)
+ "Predicted WSE outlet temperature"
+ annotation (Placement(transformation(extent={{0,-40},{20,-20}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Ramp TCWSup1(
+ final height=-2.1,
+ final duration=300,
+ final offset=273.15 + 16,
+ final startTime=1500) "Chilled water supply temperature ramp"
+ annotation (Placement(transformation(extent={{-120,-140},{-100,-120}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.TimeTable wseSta1(
+ final table=[0,1; 1500,1; 1500,0; 12500,0;
+ 12500,1; 14000,1], smoothness=Buildings.Controls.OBC.CDL.Types.Smoothness.LinearSegments)
+ "WSE is on during low loads, off during high loads"
+ annotation (Placement(transformation(extent={{-60,-220},{-40,-200}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.GreaterThreshold greThr1(
+ final t=0.5) "Greater than threshold"
+ annotation (Placement(transformation(extent={{-20,-220},{0,-200}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant dpChiWat(
+ final k=65*6895)
+ "Chilled water differential pressure"
+ annotation (Placement(transformation(extent={{-120,10},{-100,30}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant TCWSupSet(
+ final k=273.15 + 14)
+ "Chilled water supply temperature setpoint"
+ annotation (Placement(transformation(extent={{-120,160},{-100,180}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant dpChiWatSet(
+ final k=65*6895)
+ "Chilled water differential pressure setpoint"
+ annotation (Placement(transformation(extent={{-120,60},{-100,80}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant zero(
+ final k=0) "Constant"
+ annotation (Placement(transformation(extent={{-200,60},{-180,80}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Ramp maxTowFanSpe(
+ final height=-0.05,
+ final duration=60,
+ final offset=1,
+ final startTime=13000) "Constant"
+ annotation (Placement(transformation(extent={{-160,180},{-140,200}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant dpChiWat1(
+ final k=65*6895)
+ "Chilled water differential pressure"
+ annotation (Placement(transformation(extent={{-120,-230},{-100,-210}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant TCWSupSet1(
+ final k=273.15 + 14)
+ "Chilled water supply temperature setpoint"
+ annotation (Placement(transformation(extent={{-120,-80},{-100,-60}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant dpChiWatSet1(
+ final k=65*6895)
+ "Chilled water differential pressure setpoint"
+ annotation (Placement(transformation(extent={{-120,-180},{-100,-160}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant zero1(
+ final k=0) "Constant"
+ annotation (Placement(transformation(extent={{-200,-180},{-180,-160}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Ramp maxTowFanSpe1(
+ final height=-0.05,
+ final duration=60,
+ final offset=1,
+ final startTime=13000) "Constant"
+ annotation (Placement(transformation(extent={{-160,-60},{-140,-40}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant tunPar(
+ final k=0.06)
+ "Assume a constant tuning parameter"
+ annotation (Placement(transformation(extent={{-60,90},{-40,110}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.AddParameter TOutWet(
+ final p=-10)
+ "Predicted WSE outlet temperature"
+ annotation (Placement(transformation(extent={{-60,120},{-40,140}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.AddParameter TOutWet1(
+ final p=-10)
+ "Predicted WSE outlet temperature"
+ annotation (Placement(transformation(extent={{-60,-130},{-40,-110}})));
+
+equation
+ connect(dpChiWatSet.y, staSetCon.dpChiWatPumSet_local) annotation (Line(
+ points={{-98,70},{-92,70},{-92,159.048},{58,159.048}}, color={0,0,127}));
+ connect(dpChiWat.y, staSetCon.dpChiWatPum_local) annotation (Line(points={{-98,20},
+ {-90,20},{-90,157.143},{58,157.143}}, color={0,0,127}));
+ connect(chiAva.y,staSetCon. uChiAva) annotation (Line(points={{-98,210},{-28,
+ 210},{-28,175.238},{58,175.238}},
+ color={255,0,255}));
+ connect(zero.y,max. u2) annotation (Line(points={{-178,70},{-170,70},{-170,
+ 104},{-162,104}},
+ color={0,0,127}));
+ connect(chiWatFlow.y,max. u1) annotation (Line(points={{-178,110},{-170,110},
+ {-170,116},{-162,116}},color={0,0,127}));
+ connect(staSetCon.VChiWat_flow,max. y) annotation (Line(points={{58,140.952},
+ {-130,140.952},{-130,110},{-138,110}},
+ color={0,0,127}));
+ connect(TChiWatRet.y,staSetCon. TChiWatRet) annotation (Line(points={{-178,
+ 150},{-130,150},{-130,144.762},{58,144.762}},
+ color={0,0,127}));
+ connect(staSetCon.ySta,intToRea. u)
+ annotation (Line(points={{82,150.476},{92,150.476},{92,150},{98,150}},
+ color={255,127,0}));
+ connect(intToRea.y,zerOrdHol. u)
+ annotation (Line(points={{122,150},{138,150}},
+ color={0,0,127}));
+ connect(zerOrdHol.y,reaToInt. u)
+ annotation (Line(points={{162,150},{178,150}},
+ color={0,0,127}));
+ connect(reaToInt.y, staSetCon.uSta) annotation (Line(points={{202,150},{210,
+ 150},{210,100},{50,100},{50,170.476},{58,170.476}},
+ color={255,127,0}));
+ connect(staSetCon.yChaEdg, truFalHol.u) annotation (Line(points={{82,166.667},
+ {90,166.667},{90,70},{98,70}},
+ color={255,0,255}));
+ connect(truFalHol.y,pre. u)
+ annotation (Line(points={{122,70},{138,70}}, color={255,0,255}));
+ connect(pre.y,staSetCon. chaPro) annotation (Line(points={{162,70},{170,70},{
+ 170,50},{36,50},{36,177.143},{58,177.143}},
+ color={255,0,255}));
+ connect(truDel.y,staSetCon. uPla) annotation (Line(points={{2,60},{30,60},{30,
+ 173.333},{58,173.333}},
+ color={255,0,255}));
+ connect(maxTowFanSpe.y, staSetCon.uTowFanSpeMax) annotation (Line(points={{-138,
+ 190},{34,190},{34,147.619},{58,147.619}},
+ color={0,0,127}));
+ connect(TCWSupSet.y, wseTPre.u) annotation (Line(points={{-98,170},{-80,170},
+ {-80,216},{-16,216},{-16,210},{-2,210}}, color={0,0,127}));
+ connect(TCWSupSet.y, staSetCon.TChiWatSupSet) annotation (Line(points={{-98,170},
+ {-20,170},{-20,167.619},{58,167.619}},
+ color={0,0,127}));
+ connect(TCWSup.y, staSetCon.TChiWatSup) annotation (Line(points={{-98,110},{
+ -70,110},{-70,165.714},{58,165.714}}, color={0,0,127}));
+ connect(greThr.y, staSetCon.uWseSta) annotation (Line(points={{2,20},{32,20},
+ {32,179.048},{58,179.048}},
+ color={255,0,255}));
+ connect(dpChiWatSet1.y, staSetCon1.dpChiWatPumSet_local) annotation (Line(
+ points={{-98,-170},{-92,-170},{-92,-80.9524},{58,-80.9524}}, color={0,
+ 0,127}));
+ connect(dpChiWat1.y, staSetCon1.dpChiWatPum_local) annotation (Line(points={{-98,
+ -220},{-88,-220},{-88,-82.8571},{58,-82.8571}}, color={0,0,127}));
+ connect(chiAva1.y, staSetCon1.uChiAva) annotation (Line(points={{-98,-30},{
+ -28,-30},{-28,-64.7619},{58,-64.7619}},
+ color={255,0,255}));
+ connect(zero1.y, max1.u2) annotation (Line(points={{-178,-170},{-170,-170},{
+ -170,-136},{-162,-136}}, color={0,0,127}));
+ connect(chiWatFlow1.y, max1.u1) annotation (Line(points={{-178,-130},{-170,
+ -130},{-170,-124},{-162,-124}}, color={0,0,127}));
+ connect(staSetCon1.VChiWat_flow, max1.y) annotation (Line(points={{58,
+ -99.0476},{-130,-99.0476},{-130,-130},{-138,-130}},
+ color={0,0,127}));
+ connect(TChiWatRet1.y, staSetCon1.TChiWatRet) annotation (Line(points={{-178,
+ -90},{-130,-90},{-130,-95.2381},{58,-95.2381}},
+ color={0,0,127}));
+ connect(staSetCon1.ySta, intToRea1.u)
+ annotation (Line(points={{82,-89.5238},{92,-89.5238},{92,-90},{98,-90}},
+ color={255,127,0}));
+ connect(intToRea1.y, zerOrdHol1.u)
+ annotation (Line(points={{122,-90},{138,-90}}, color={0,0,127}));
+ connect(zerOrdHol1.y, reaToInt1.u)
+ annotation (Line(points={{162,-90},{178,-90}}, color={0,0,127}));
+ connect(reaToInt1.y, staSetCon1.uSta) annotation (Line(points={{202,-90},{210,
+ -90},{210,-140},{50,-140},{50,-69.5238},{58,-69.5238}},
+ color={255,127,0}));
+ connect(staSetCon1.yChaEdg, truFalHol1.u) annotation (Line(points={{82,
+ -73.3333},{90,-73.3333},{90,-170},{98,-170}},
+ color={255,0,255}));
+ connect(truFalHol1.y, pre1.u)
+ annotation (Line(points={{122,-170},{138,-170}}, color={255,0,255}));
+ connect(pre1.y, staSetCon1.chaPro) annotation (Line(points={{162,-170},{170,
+ -170},{170,-190},{36,-190},{36,-62.8571},{58,-62.8571}},
+ color={255,0,255}));
+ connect(plaSta1.y, truDel1.u)
+ annotation (Line(points={{-38,-170},{-22,-170}}, color={255,0,255}));
+ connect(truDel1.y, staSetCon1.uPla) annotation (Line(points={{2,-170},{26,
+ -170},{26,-66.6667},{58,-66.6667}},
+ color={255,0,255}));
+ connect(maxTowFanSpe1.y, staSetCon1.uTowFanSpeMax) annotation (Line(points={{-138,
+ -50},{34,-50},{34,-92.381},{58,-92.381}},
+ color={0,0,127}));
+ connect(TCWSupSet1.y, wseTPre1.u) annotation (Line(points={{-98,-70},{-80,-70},
+ {-80,-24},{-16,-24},{-16,-30},{-2,-30}}, color={0,0,127}));
+ connect(staSetCon1.TWsePre, wseTPre1.y) annotation (Line(points={{58,-97.1429},
+ {30,-97.1429},{30,-30},{22,-30}}, color={0,0,127}));
+ connect(TCWSupSet1.y, staSetCon1.TChiWatSupSet) annotation (Line(points={{-98,-70},
+ {-20,-70},{-20,-72.381},{58,-72.381}},
+ color={0,0,127}));
+ connect(TCWSup1.y, staSetCon1.TChiWatSup) annotation (Line(points={{-98,-130},
+ {-70,-130},{-70,-74.2857},{58,-74.2857}},
+ color={0,0,127}));
+ connect(wseSta1.y[1], greThr1.u)
+ annotation (Line(points={{-38,-210},{-22,-210}}, color={0,0,127}));
+ connect(greThr1.y, staSetCon1.uWseSta) annotation (Line(points={{2,-210},{32,
+ -210},{32,-60.9524},{58,-60.9524}},
+ color={255,0,255}));
+ connect(plaSta.y, truDel.u) annotation (Line(points={{-38,60},{-22,60}},
+ color={255,0,255}));
+ connect(wseSta.y[1], greThr.u)
+ annotation (Line(points={{-38,20},{-22,20}}, color={0,0,127}));
+ connect(tunPar.y, staSetCon.uTunPar) annotation (Line(points={{-38,100},{20,
+ 100},{20,149.524},{58,149.524}},
+ color={0,0,127}));
+ connect(tunPar.y, staSetCon1.uTunPar) annotation (Line(points={{-38,100},{40,
+ 100},{40,-90.4762},{58,-90.4762}},
+ color={0,0,127}));
+ connect(TCWSupSet.y, TOutWet.u) annotation (Line(points={{-98,170},{-80,170},{
+ -80,130},{-62,130}}, color={0,0,127}));
+ connect(TOutWet.y, staSetCon.TOutWet) annotation (Line(points={{-38,130},{0,
+ 130},{0,151.429},{58,151.429}},
+ color={0,0,127}));
+ connect(wseTPre.y, staSetCon.TWsePre) annotation (Line(points={{22,210},{40,
+ 210},{40,142.857},{58,142.857}},
+ color={0,0,127}));
+ connect(TCWSupSet1.y, TOutWet1.u) annotation (Line(points={{-98,-70},{-80,-70},
+ {-80,-120},{-62,-120}}, color={0,0,127}));
+ connect(TOutWet1.y, staSetCon1.TOutWet) annotation (Line(points={{-38,-120},{
+ 28,-120},{28,-88.5714},{58,-88.5714}},
+ color={0,0,127}));
+annotation (
+ experiment(StopTime=14000.0, Tolerance=1e-06),
+ __Dymola_Commands(file="modelica://Buildings/Resources/Scripts/Dymola/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/SetPoints/Validation/SetpointController_WSE.mos"
+ "Simulate and plot"),
+ Documentation(info="
+
+This example validates
+
+Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.SetPoints.SetpointController.
+
+", revisions="
+
+-
+March 26, 2020, by Milica Grahovac:
+First implementation.
+
+
+"),
+Icon(graphics={
+ Ellipse(lineColor = {75,138,73},
+ fillColor={255,255,255},
+ fillPattern = FillPattern.Solid,
+ extent = {{-100,-100},{100,100}}),
+ Polygon(lineColor = {0,0,255},
+ fillColor = {75,138,73},
+ pattern = LinePattern.None,
+ fillPattern = FillPattern.Solid,
+ points = {{-36,60},{64,0},{-36,-60},{-36,60}})}),Diagram(
+ coordinateSystem(preserveAspectRatio=false, extent={{-220,-240},{220,240}})));
+end SetpointController_WSE;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/SetPoints/Validation/SetpointController_noWSE.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/SetPoints/Validation/SetpointController_noWSE.mo
new file mode 100644
index 00000000000..f507f8a40df
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/SetPoints/Validation/SetpointController_noWSE.mo
@@ -0,0 +1,326 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.SetPoints.Validation;
+model SetpointController_noWSE
+ "Validates chiller stage status setpoint signal generation for plants without WSE"
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.SetPoints.SetpointController staSetCon(
+ have_locSen=true,
+ final chiDesCap={500000,700000},
+ final chiMinCap={100000,200000},
+ final chiTyp={Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Types.ChillerAndStageTypes.positiveDisplacement,
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Types.ChillerAndStageTypes.positiveDisplacement})
+ "Chiller stage setpoint controller"
+ annotation (Placement(transformation(extent={{60,140},{84,178}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.SetPoints.SetpointController staSetCon1(
+ final have_WSE=false,
+ have_locSen=true,
+ final nSta=4,
+ final nChi=3,
+ final staMat={{1,0,0},{0,1,0},{1,1,0},{1,1,1}},
+ final chiDesCap={300000,400000,500000},
+ final chiMinCap={50000,100000,150000},
+ final chiTyp={Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Types.ChillerAndStageTypes.positiveDisplacement,
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Types.ChillerAndStageTypes.positiveDisplacement,
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Types.ChillerAndStageTypes.constantSpeedCentrifugal})
+ "Chiller stage setpoint controller"
+ annotation (Placement(transformation(extent={{60,-100},{84,-62}})));
+
+protected
+ Real TChiWatSupSet(
+ final unit="K",
+ final quantity="ThermodynamicTemperature",
+ displayUnit="degC")=285.15
+ "Chilled water supply set temperature";
+
+ parameter Real aveTChiWatRet(
+ final unit="K",
+ final quantity="ThermodynamicTemperature",
+ displayUnit="degC")=288.15
+ "Average measured chilled water return temperature";
+
+ parameter Real minStaRuntime(
+ final unit="s",
+ final quantity="Time",
+ displayUnit="h")=900
+ "Minimum stage runtime";
+
+ parameter Real aveVChiWat_flow(
+ final unit="m3/s",
+ final quantity="VolumeFlowRate",
+ displayUnit="m3/s")=0.05
+ "Average measured chilled water flow rate";
+
+ Buildings.Controls.OBC.CDL.Logical.TrueFalseHold truFalHol(final
+ trueHoldDuration=100, final falseHoldDuration=0)
+ "False hold to visualize the stage change initiation"
+ annotation (Placement(transformation(extent={{100,60},{120,80}})));
+
+ Buildings.Controls.OBC.CDL.Logical.TrueFalseHold truFalHol1(final
+ trueHoldDuration=100, final falseHoldDuration=0)
+ "False hold to visualize the stage change initiation"
+ annotation (Placement(transformation(extent={{100,-180},{120,-160}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Sine TChiWatRet(
+ final amplitude=7,
+ final offset=273.15 + 15,
+ final freqHz=1/21600)
+ "Chilled water return temeprature"
+ annotation (Placement(transformation(extent={{-200,140},{-180,160}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Sine chiWatFlow(
+ final offset=0,
+ final freqHz=1/21600,
+ final amplitude=0.037)
+ "Chilled water flow"
+ annotation (Placement(transformation(extent={{-200,100},{-180,120}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant chiAva[2](
+ final k={true,true})
+ "Chiller availability vector"
+ annotation (Placement(transformation(extent={{-120,200},{-100,220}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Max max "Maximum"
+ annotation (Placement(transformation(extent={{-160,80},{-140,100}})));
+
+ Buildings.Controls.OBC.CDL.Discrete.ZeroOrderHold zerOrdHol(
+ final samplePeriod=10) "Short plant start delay"
+ annotation (Placement(transformation(extent={{140,140},{160,160}})));
+
+ Buildings.Controls.OBC.CDL.Conversions.IntegerToReal intToRea "Type converter"
+ annotation (Placement(transformation(extent={{100,140},{120,160}})));
+
+ Buildings.Controls.OBC.CDL.Conversions.RealToInteger reaToInt "Type converter"
+ annotation (Placement(transformation(extent={{180,140},{200,160}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Pre pre "Pre block"
+ annotation (Placement(transformation(extent={{140,60},{160,80}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant plaSta(
+ final k=true) "Plant status"
+ annotation (Placement(transformation(extent={{-60,60},{-40,80}})));
+
+ Buildings.Controls.OBC.CDL.Logical.TrueDelay truDel(
+ final delayTime=10,
+ final delayOnInit=true) "True delay"
+ annotation (Placement(transformation(extent={{-20,60},{0,80}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Sine TChiWatRet1(
+ final amplitude=7,
+ final offset=273.15 + 15,
+ final freqHz=1/21600)
+ "Chilled water return temeprature"
+ annotation (Placement(transformation(extent={{-200,-100},{-180,-80}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Sine chiWatFlow1(
+ final offset=0,
+ final freqHz=1/21600,
+ final amplitude=0.037)
+ "Chilled water flow"
+ annotation (Placement(transformation(extent={{-200,-140},{-180,-120}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant chiAva1[3](
+ final k={true,true,true})
+ "Chiller availability vector"
+ annotation (Placement(transformation(extent={{-120,-40},{-100,-20}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Max max1 "Maximum"
+ annotation (Placement(transformation(extent={{-160,-160},{-140,-140}})));
+
+ Buildings.Controls.OBC.CDL.Discrete.ZeroOrderHold zerOrdHol1(
+ final samplePeriod=10) "Zero order hold"
+ annotation (Placement(transformation(extent={{140,-100},{160,-80}})));
+
+ Buildings.Controls.OBC.CDL.Conversions.IntegerToReal intToRea1 "Type converter"
+ annotation (Placement(transformation(extent={{100,-100},{120,-80}})));
+
+ Buildings.Controls.OBC.CDL.Conversions.RealToInteger reaToInt1 "Type converter"
+ annotation (Placement(transformation(extent={{180,-100},{200,-80}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Pre pre1 "Pre block"
+ annotation (Placement(transformation(extent={{140,-180},{160,-160}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant plaSta1(
+ final k=true) "Plant status"
+ annotation (Placement(transformation(extent={{-60,-180},{-40,-160}})));
+
+ Buildings.Controls.OBC.CDL.Logical.TrueDelay truDel1(
+ final delayTime=10,
+ final delayOnInit=true) "True delay"
+ annotation (Placement(transformation(extent={{-20,-180},{0,-160}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant dpChiWat(
+ final k=65*6895)
+ "Chilled water differential pressure"
+ annotation (Placement(transformation(extent={{-120,10},{-100,30}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant TCWSupSet(
+ final k=273.15 + 14)
+ "Chilled water supply temperature setpoint"
+ annotation (Placement(transformation(extent={{-120,160},{-100,180}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant dpChiWatSet(
+ final k=65*6895)
+ "Chilled water differential pressure setpoint"
+ annotation (Placement(transformation(extent={{-120,60},{-100,80}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant TCWSup(
+ final k=273.15 + 14)
+ "Chilled water supply temperature"
+ annotation (Placement(transformation(extent={{-120,100},{-100,120}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant zero(
+ final k=0) "Constant"
+ annotation (Placement(transformation(extent={{-200,60},{-180,80}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant dpChiWat1(
+ final k=65*6895)
+ "Chilled water differential pressure"
+ annotation (Placement(transformation(extent={{-120,-230},{-100,-210}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant TCWSupSet1(
+ final k=273.15 + 14)
+ "Chilled water supply temperature setpoint"
+ annotation (Placement(transformation(extent={{-120,-80},{-100,-60}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant dpChiWatSet1(
+ final k=65*6895)
+ "Chilled water differential pressure setpoint"
+ annotation (Placement(transformation(extent={{-120,-180},{-100,-160}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant TCWSup1(
+ final k=273.15 + 14)
+ "Chilled water supply temperature"
+ annotation (Placement(transformation(extent={{-120,-140},{-100,-120}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant zero1(
+ final k=0) "Constant"
+ annotation (Placement(transformation(extent={{-200,-180},{-180,-160}})));
+
+equation
+ connect(dpChiWatSet.y, staSetCon.dpChiWatPumSet_local) annotation (Line(
+ points={{-98,70},{-92,70},{-92,158.095},{57.6,158.095}}, color={0,0,127}));
+ connect(dpChiWat.y, staSetCon.dpChiWatPum_local) annotation (Line(points={{-98,20},
+ {-90,20},{-90,156.286},{57.6,156.286}}, color={0,0,127}));
+ connect(TCWSupSet.y, staSetCon.TChiWatSupSet) annotation (Line(points={{-98,170},
+ {-32,170},{-32,166.238},{57.6,166.238}},
+ color={0,0,127}));
+ connect(chiAva.y, staSetCon.uChiAva) annotation (Line(points={{-98,210},{-28,
+ 210},{-28,173.476},{57.6,173.476}},
+ color={255,0,255}));
+ connect(TCWSup.y, staSetCon.TChiWatSup) annotation (Line(points={{-98,110},{
+ -94,110},{-94,164.429},{57.6,164.429}},
+ color={0,0,127}));
+ connect(zero.y, max.u2) annotation (Line(points={{-178,70},{-170,70},{-170,84},
+ {-162,84}}, color={0,0,127}));
+ connect(chiWatFlow.y, max.u1) annotation (Line(points={{-178,110},{-170,110},{
+ -170,96},{-162,96}}, color={0,0,127}));
+ connect(staSetCon.VChiWat_flow, max.y) annotation (Line(points={{57.6,140.905},
+ {-130,140.905},{-130,90},{-138,90}},
+ color={0,0,127}));
+ connect(TChiWatRet.y, staSetCon.TChiWatRet) annotation (Line(points={{-178,
+ 150},{-130,150},{-130,144.524},{57.6,144.524}},
+ color={0,0,127}));
+ connect(staSetCon.ySta, intToRea.u)
+ annotation (Line(points={{86.4,149.952},{92,149.952},{92,150},{98,150}},
+ color={255,127,0}));
+ connect(intToRea.y, zerOrdHol.u)
+ annotation (Line(points={{122,150},{138,150}},
+ color={0,0,127}));
+ connect(zerOrdHol.y, reaToInt.u)
+ annotation (Line(points={{162,150},{178,150}},
+ color={0,0,127}));
+ connect(reaToInt.y, staSetCon.uSta) annotation (Line(points={{202,150},{210,
+ 150},{210,100},{50,100},{50,168.952},{57.6,168.952}},
+ color={255,127,0}));
+ connect(staSetCon.yChaEdg, truFalHol.u) annotation (Line(points={{86.4,
+ 165.333},{90,165.333},{90,70},{98,70}},
+ color={255,0,255}));
+ connect(truFalHol.y, pre.u)
+ annotation (Line(points={{122,70},{138,70}}, color={255,0,255}));
+ connect(pre.y, staSetCon.chaPro) annotation (Line(points={{162,70},{170,70},{
+ 170,50},{40,50},{40,175.286},{57.6,175.286}},
+ color={255,0,255}));
+ connect(plaSta.y, truDel.u)
+ annotation (Line(points={{-38,70},{-22,70}}, color={255,0,255}));
+ connect(truDel.y, staSetCon.uPla) annotation (Line(points={{2,70},{34,70},{34,
+ 171.667},{57.6,171.667}},
+ color={255,0,255}));
+ connect(dpChiWatSet1.y, staSetCon1.dpChiWatPumSet_local) annotation (Line(
+ points={{-98,-170},{-92,-170},{-92,-81.9048},{57.6,-81.9048}}, color={0,
+ 0,127}));
+ connect(dpChiWat1.y, staSetCon1.dpChiWatPum_local) annotation (Line(points={{-98,
+ -220},{-90,-220},{-90,-83.7143},{57.6,-83.7143}}, color={0,0,127}));
+ connect(TCWSupSet1.y, staSetCon1.TChiWatSupSet) annotation (Line(points={{-98,-70},
+ {-32,-70},{-32,-73.7619},{57.6,-73.7619}},
+ color={0,0,127}));
+ connect(chiAva1.y, staSetCon1.uChiAva) annotation (Line(points={{-98,-30},{
+ -28,-30},{-28,-66.5238},{57.6,-66.5238}},
+ color={255,0,255}));
+ connect(TCWSup1.y, staSetCon1.TChiWatSup) annotation (Line(points={{-98,-130},
+ {-94,-130},{-94,-75.5714},{57.6,-75.5714}},
+ color={0,0,127}));
+ connect(zero1.y, max1.u2) annotation (Line(points={{-178,-170},{-170,-170},{
+ -170,-156},{-162,-156}}, color={0,0,127}));
+ connect(chiWatFlow1.y, max1.u1) annotation (Line(points={{-178,-130},{-170,
+ -130},{-170,-144},{-162,-144}}, color={0,0,127}));
+ connect(staSetCon1.VChiWat_flow, max1.y) annotation (Line(points={{57.6,
+ -99.0952},{-130,-99.0952},{-130,-150},{-138,-150}},
+ color={0,0,127}));
+ connect(TChiWatRet1.y, staSetCon1.TChiWatRet) annotation (Line(points={{-178,
+ -90},{-130,-90},{-130,-95.4762},{57.6,-95.4762}},
+ color={0,0,127}));
+ connect(staSetCon1.ySta, intToRea1.u)
+ annotation (Line(points={{86.4,-90.0476},{92,-90.0476},{92,-90},{98,-90}},
+ color={255,127,0}));
+ connect(intToRea1.y, zerOrdHol1.u)
+ annotation (Line(points={{122,-90},{138,-90}}, color={0,0,127}));
+ connect(zerOrdHol1.y, reaToInt1.u)
+ annotation (Line(points={{162,-90},{178,-90}}, color={0,0,127}));
+ connect(reaToInt1.y, staSetCon1.uSta) annotation (Line(points={{202,-90},{210,
+ -90},{210,-140},{50,-140},{50,-71.0476},{57.6,-71.0476}},
+ color={255,127,0}));
+ connect(staSetCon1.yChaEdg, truFalHol1.u) annotation (Line(points={{86.4,
+ -74.6667},{90,-74.6667},{90,-170},{98,-170}},
+ color={255,0,255}));
+ connect(truFalHol1.y, pre1.u)
+ annotation (Line(points={{122,-170},{138,-170}}, color={255,0,255}));
+ connect(pre1.y, staSetCon1.chaPro) annotation (Line(points={{162,-170},{170,
+ -170},{170,-190},{40,-190},{40,-64.7143},{57.6,-64.7143}},
+ color={255,0,255}));
+ connect(plaSta1.y, truDel1.u)
+ annotation (Line(points={{-38,-170},{-22,-170}}, color={255,0,255}));
+ connect(truDel1.y, staSetCon1.uPla) annotation (Line(points={{2,-170},{34,
+ -170},{34,-68.3333},{57.6,-68.3333}},
+ color={255,0,255}));
+annotation (
+ experiment(
+ StopTime=14000,
+ Tolerance=1e-06),
+ __Dymola_Commands(file="modelica://Buildings/Resources/Scripts/Dymola/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/SetPoints/Validation/SetpointController_noWSE.mos"
+ "Simulate and plot"),
+ Documentation(info="
+
+This example validates
+
+Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.SetPoints.SetpointController.
+
+", revisions="
+
+-
+March 26, 2020, by Milica Grahovac:
+First implementation.
+
+
+"),
+Icon(graphics={
+ Ellipse(lineColor = {75,138,73},
+ fillColor={255,255,255},
+ fillPattern = FillPattern.Solid,
+ extent = {{-100,-100},{100,100}}),
+ Polygon(lineColor = {0,0,255},
+ fillColor = {75,138,73},
+ pattern = LinePattern.None,
+ fillPattern = FillPattern.Solid,
+ points = {{-36,60},{64,0},{-36,-60},{-36,60}})}),Diagram(
+ coordinateSystem(preserveAspectRatio=false, extent={{-220,-240},{220,240}})));
+end SetpointController_noWSE;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/SetPoints/Validation/package.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/SetPoints/Validation/package.mo
new file mode 100644
index 00000000000..48e9af3a874
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/SetPoints/Validation/package.mo
@@ -0,0 +1,38 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.SetPoints;
+package Validation "Collection of validation models"
+
+
+annotation (preferredView="info", Documentation(info="
+
+This package contains validation models for the classes in
+
+Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging.SetPoints.Subsequences.
+
+
+Note that most validation models contain simple input data
+which may not be realistic, but for which the correct
+output can be obtained through an analytic solution.
+The examples plot various outputs, which have been verified against these
+solutions. These model outputs are stored as reference data and
+used for continuous validation whenever models in the library change.
+
+"),
+ Icon(graphics={
+ Rectangle(
+ lineColor={200,200,200},
+ fillColor={248,248,248},
+ fillPattern=FillPattern.HorizontalCylinder,
+ extent={{-100.0,-100.0},{100.0,100.0}},
+ radius=25.0),
+ Polygon(
+ origin={8.0,14.0},
+ lineColor={78,138,73},
+ fillColor={78,138,73},
+ pattern=LinePattern.None,
+ fillPattern=FillPattern.Solid,
+ points={{-58.0,46.0},{42.0,-14.0},{-58.0,-74.0},{-58.0,46.0}}),
+ Rectangle(
+ lineColor={128,128,128},
+ extent={{-100.0,-100.0},{100.0,100.0}},
+ radius=25.0)}));
+end Validation;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/SetPoints/Validation/package.order b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/SetPoints/Validation/package.order
new file mode 100644
index 00000000000..bcc339f4b82
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/SetPoints/Validation/package.order
@@ -0,0 +1,2 @@
+SetpointController_WSE
+SetpointController_noWSE
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/SetPoints/package.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/SetPoints/package.mo
new file mode 100644
index 00000000000..6556d3efecc
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/SetPoints/package.mo
@@ -0,0 +1,8 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Staging;
+package SetPoints "Package for chiller stage setpoint control sequences"
+ extends Modelica.Icons.Package;
+
+annotation (preferredView="info", Documentation(info="
+This package contains chiller stage setpoint control sequences. The implementation is based on section 5.2.4. in ASHRAE RP-1711, Draft on March 23, 2020.
+"));
+end SetPoints;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/SetPoints/package.order b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/SetPoints/package.order
new file mode 100644
index 00000000000..45752c2fcd2
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/SetPoints/package.order
@@ -0,0 +1,3 @@
+SetpointController
+Subsequences
+Validation
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/package.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/package.mo
new file mode 100644
index 00000000000..47605f86b47
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/package.mo
@@ -0,0 +1,42 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant;
+package Staging "Chiller staging sequences"
+annotation (preferredView="info", Documentation(info="
+This package contains chiller staging control sequences based on
+ASHRAE RP-1711 Advanced Sequences of Operation for HVAC Systems Phase II –
+Central Plants and Hydronic Systems (draft version on March 23, 2020).
+"),
+ Icon(graphics={
+ Rectangle(
+ lineColor={200,200,200},
+ fillColor={248,248,248},
+ fillPattern=FillPattern.HorizontalCylinder,
+ extent={{-100.0,-100.0},{100.0,100.0}},
+ radius=25.0),
+ Ellipse(
+ origin={10.0,10.0},
+ lineColor={128,128,128},
+ fillColor={255,255,255},
+ fillPattern=FillPattern.Solid,
+ extent={{-80.0,0.0},{-20.0,60.0}}),
+ Ellipse(
+ origin={10.0,10.0},
+ fillColor={128,128,128},
+ pattern=LinePattern.None,
+ fillPattern=FillPattern.Solid,
+ extent={{0.0,0.0},{60.0,60.0}}),
+ Ellipse(
+ origin={10.0,10.0},
+ pattern=LinePattern.None,
+ fillPattern=FillPattern.Solid,
+ extent={{0.0,-80.0},{60.0,-20.0}}),
+ Ellipse(
+ origin={10.0,10.0},
+ fillColor={76,76,76},
+ pattern=LinePattern.None,
+ fillPattern=FillPattern.Solid,
+ extent={{-80.0,-80.0},{-20.0,-20.0}}),
+ Rectangle(
+ lineColor={128,128,128},
+ extent={{-100.0,-100.0},{100.0,100.0}},
+ radius=25.0)}));
+end Staging;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/package.order b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/package.order
new file mode 100644
index 00000000000..0aa2322c4dc
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Staging/package.order
@@ -0,0 +1,2 @@
+Processes
+SetPoints
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Towers/Controller.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Towers/Controller.mo
new file mode 100644
index 00000000000..65ceef20be5
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Towers/Controller.mo
@@ -0,0 +1,597 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Towers;
+block Controller "Cooling tower controller"
+
+ parameter Integer nChi=2 "Total number of chillers";
+ parameter Integer totSta=5
+ "Total number of plant stages, including stage zero and the stages with a WSE, if applicable";
+ parameter Integer nTowCel=2 "Total number of cooling tower cells";
+ parameter Integer nConWatPum=2 "Total number of condenser water pumps";
+ parameter Boolean closeCoupledPlant=false
+ "Flag to indicate if the plant is close coupled";
+ parameter Boolean have_WSE=true
+ "Flag to indicate if the plant has waterside economizer";
+ parameter Real desCap(unit="W")=1e6 "Plant design capacity"
+ annotation (Dialog(group="Nominal"));
+ parameter Real fanSpeMin=0.1 "Minimum tower fan speed"
+ annotation (Dialog(group="Nominal"));
+ parameter Real fanSpeMax=1 "Maximum tower fan speed"
+ annotation (Dialog(group="Nominal"));
+
+ // Fan speed control: when WSE is enabled
+ parameter Real chiMinCap[nChi](unit="W")={1e4,1e4}
+ "Minimum cyclining load below which chiller will begin cycling"
+ annotation (Dialog(tab="Fan speed", group="WSE enabled",
+ enable=have_WSE));
+ parameter Buildings.Controls.OBC.CDL.Types.SimpleController intOpeCon=
+ Buildings.Controls.OBC.CDL.Types.SimpleController.PI
+ "Controller in the mode when WSE and chillers are enabled"
+ annotation (Dialog(tab="Fan speed", group="WSE enabled",
+ enable=have_WSE));
+ parameter Real kIntOpe=1 "Gain of controller"
+ annotation (Dialog(tab="Fan speed", group="WSE enabled",
+ enable=have_WSE));
+ parameter Real TiIntOpe(unit="s")=0.5
+ "Time constant of integrator block"
+ annotation (Dialog(tab="Fan speed", group="WSE enabled",
+ enable=have_WSE and (intOpeCon==Buildings.Controls.OBC.CDL.Types.SimpleController.PI or
+ intOpeCon==Buildings.Controls.OBC.CDL.Types.SimpleController.PID)));
+ parameter Real TdIntOpe(unit="s")=0.1
+ "Time constant of derivative block"
+ annotation (Dialog(tab="Fan speed", group="WSE enabled",
+ enable=have_WSE and (intOpeCon==Buildings.Controls.OBC.CDL.Types.SimpleController.PD or
+ intOpeCon==Buildings.Controls.OBC.CDL.Types.SimpleController.PID)));
+ parameter Buildings.Controls.OBC.CDL.Types.SimpleController chiWatCon=
+ Buildings.Controls.OBC.CDL.Types.SimpleController.PI
+ "Controller in the mode when only WSE is enabled"
+ annotation (Dialog(tab="Fan speed", group="WSE enabled",
+ enable=have_WSE));
+ parameter Real kWSE=1 "Gain of controller"
+ annotation (Dialog(tab="Fan speed", group="WSE enabled",
+ enable=have_WSE));
+ parameter Real TiWSE(unit="s")=0.5
+ "Time constant of integrator block"
+ annotation (Dialog(tab="Fan speed", group="WSE enabled",
+ enable=have_WSE and (chiWatCon==Buildings.Controls.OBC.CDL.Types.SimpleController.PI or
+ chiWatCon==Buildings.Controls.OBC.CDL.Types.SimpleController.PID)));
+ parameter Real TdWSE(unit="s")=0.1
+ "Time constant of derivative block"
+ annotation (Dialog(tab="Fan speed", group="WSE enabled",
+ enable=have_WSE and (chiWatCon==Buildings.Controls.OBC.CDL.Types.SimpleController.PD or
+ chiWatCon==Buildings.Controls.OBC.CDL.Types.SimpleController.PID)));
+
+ // Fan speed control: controlling condenser return water temperature when WSE is not enabled
+ parameter Real LIFT_min[nChi](
+ unit="K",
+ displayUnit="degC")={12,12} "Minimum LIFT of each chiller"
+ annotation (Dialog(tab="Fan speed", group="Return temperature control"));
+ parameter Real TConWatSup_nominal[nChi](
+ unit="K",
+ displayUnit="degC")={293.15,293.15}
+ "Condenser water supply temperature (condenser entering) of each chiller"
+ annotation (Dialog(tab="Fan speed", group="Return temperature control"));
+ parameter Real TConWatRet_nominal[nChi](
+ unit="K",
+ displayUnit="degC")={303.15,303.15}
+ "Condenser water return temperature (condenser leaving) of each chiller"
+ annotation (Dialog(tab="Fan speed", group="Return temperature control"));
+ parameter Real TChiWatSupMin[nChi](
+ unit="K",
+ displayUnit="degC")={278.15,278.15}
+ "Lowest chilled water supply temperature oc each chiller"
+ annotation (Dialog(tab="Fan speed", group="Return temperature control"));
+ parameter Buildings.Controls.OBC.CDL.Types.SimpleController couPlaCon=
+ Buildings.Controls.OBC.CDL.Types.SimpleController.PI
+ "Type of coupled plant controller"
+ annotation (Dialog(tab="Fan speed", group="Return temperature control",
+ enable=closeCoupledPlant));
+ parameter Real kCouPla=1 "Gain of controller"
+ annotation (Dialog(tab="Fan speed", group="Return temperature control",
+ enable=closeCoupledPlant));
+ parameter Real TiCouPla(unit="s")=0.5
+ "Time constant of integrator block"
+ annotation (Dialog(tab="Fan speed", group="Return temperature control",
+ enable=closeCoupledPlant and (couPlaCon==Buildings.Controls.OBC.CDL.Types.SimpleController.PI or
+ couPlaCon==Buildings.Controls.OBC.CDL.Types.SimpleController.PID)));
+ parameter Real TdCouPla(unit="s")=0.1
+ "Time constant of derivative block"
+ annotation (Dialog(tab="Fan speed", group="Return temperature control",
+ enable=closeCoupledPlant and (couPlaCon==Buildings.Controls.OBC.CDL.Types.SimpleController.PD or
+ couPlaCon==Buildings.Controls.OBC.CDL.Types.SimpleController.PID)));
+ parameter Real yCouPlaMax=1 "Upper limit of output"
+ annotation (Dialog(tab="Fan speed", group="Return temperature control",
+ enable=closeCoupledPlant));
+ parameter Real yCouPlaMin=0 "Lower limit of output"
+ annotation (Dialog(tab="Fan speed", group="Return temperature control",
+ enable=closeCoupledPlant));
+
+ parameter Real samplePeriod(unit="s")=30
+ "Period of sampling condenser water supply and return temperature difference"
+ annotation (Dialog(tab="Fan speed", group="Return temperature control",
+ enable=not closeCoupledPlant));
+ parameter Buildings.Controls.OBC.CDL.Types.SimpleController supWatCon=
+ Buildings.Controls.OBC.CDL.Types.SimpleController.PI
+ "Condenser supply water temperature controller for less coupled plant"
+ annotation (Dialog(tab="Fan speed", group="Return temperature control",
+ enable=not closeCoupledPlant));
+ parameter Real kSupCon=1 "Gain of controller"
+ annotation (Dialog(tab="Fan speed", group="Return temperature control",
+ enable=not closeCoupledPlant));
+ parameter Real TiSupCon(unit="s")=0.5
+ "Time constant of integrator block"
+ annotation (Dialog(tab="Fan speed", group="Return temperature control",
+ enable=not closeCoupledPlant and (supWatCon==Buildings.Controls.OBC.CDL.Types.SimpleController.PI or
+ supWatCon==Buildings.Controls.OBC.CDL.Types.SimpleController.PID)));
+ parameter Real TdSupCon(unit="s")=0.1
+ "Time constant of derivative block"
+ annotation (Dialog(tab="Fan speed", group="Return temperature control",
+ enable=not closeCoupledPlant and (supWatCon==Buildings.Controls.OBC.CDL.Types.SimpleController.PD or
+ supWatCon==Buildings.Controls.OBC.CDL.Types.SimpleController.PID)));
+ parameter Real ySupConMax=1 "Upper limit of output"
+ annotation (Dialog(tab="Fan speed", group="Return temperature control",
+ enable=not closeCoupledPlant));
+ parameter Real ySupConMin=0 "Lower limit of output"
+ annotation (Dialog(tab="Fan speed", group="Return temperature control",
+ enable=not closeCoupledPlant));
+ parameter Real speChe=0.005
+ "Lower threshold value to check fan or pump speed"
+ annotation (Dialog(tab="Fan speed", group="Advanced"));
+ parameter Real iniPlaTim(unit="s")=600
+ "Time to hold return temperature at initial setpoint after plant being enabled"
+ annotation (Dialog(tab="Fan speed", group="Advanced"));
+ parameter Real ramTim(unit="s")=180
+ "Time to ramp return water temperature from initial value to setpoint"
+ annotation (Dialog(tab="Fan speed", group="Advanced"));
+ parameter Real cheMinFanSpe(unit="s")=300
+ "Threshold time for checking duration when tower fan equals to the minimum tower fan speed"
+ annotation (Dialog(tab="Fan speed", group="Advanced"));
+ parameter Real cheMaxTowSpe(unit="s")=300
+ "Threshold time for checking duration when any enabled chiller maximum cooling speed equals to the minimum tower fan speed"
+ annotation (Dialog(tab="Fan speed", group="Advanced"));
+ parameter Real cheTowOff(unit="s")=60
+ "Threshold time for checking duration when there is no enabled tower fan"
+ annotation (Dialog(tab="Fan speed", group="Advanced"));
+
+ // Tower staging
+ parameter Real staVec[totSta]={0,0.5,1,1.5,2}
+ "Chiller stage vector, element value like x.5 means chiller stage x plus WSE"
+ annotation (Dialog(tab="Tower staging", group="Nominal"));
+ parameter Real towCelOnSet[totSta]={0,1,1,2,2}
+ "Design number of tower fan cells that should be ON, according to current chiller stage and WSE status"
+ annotation (Dialog(tab="Tower staging"));
+ parameter Real chaTowCelIsoTim(unit="s")=300
+ "Time to slowly change isolation valve"
+ annotation (Dialog(tab="Tower staging", group="Enable isolation valve"));
+
+ // Water level control
+ parameter Real watLevMin(
+ final min=0)=0.7
+ "Minimum cooling tower water level recommended by manufacturer"
+ annotation (Dialog(tab="Makeup water"));
+ parameter Real watLevMax=1
+ "Maximum cooling tower water level recommended by manufacturer"
+ annotation (Dialog(tab="Makeup water"));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput chiLoa[nChi](
+ final unit=fill("W", nChi),
+ final quantity=fill("HeatFlowRate", nChi)) if have_WSE
+ "Current cooling load of each chiller"
+ annotation (Placement(transformation(extent={{-140,220},{-100,260}}),
+ iconTransformation(extent={{-140,170},{-100,210}})));
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uChi[nChi]
+ "Vector of chiller proven on status: true=ON"
+ annotation (Placement(transformation(extent={{-140,190},{-100,230}}),
+ iconTransformation(extent={{-140,150},{-100,190}})));
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uWse if have_WSE
+ "Waterside economizer proven on status: true=ON"
+ annotation (Placement(transformation(extent={{-140,160},{-100,200}}),
+ iconTransformation(extent={{-140,130},{-100,170}})));
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput uFanSpe(
+ final min=0,
+ final max=1,
+ final unit="1") "Measured fan speed of each tower cell"
+ annotation (Placement(transformation(extent={{-140,140},{-100,180}}),
+ iconTransformation(extent={{-140,110},{-100,150}})));
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput TChiWatSup(
+ final unit="K",
+ displayUnit="degC",
+ final quantity="ThermodynamicTemperature") if have_WSE
+ "Chilled water supply temperature"
+ annotation (Placement(transformation(extent={{-140,120},{-100,160}}),
+ iconTransformation(extent={{-140,90},{-100,130}})));
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput TChiWatSupSet(
+ final unit="K",
+ displayUnit="degC",
+ final quantity="ThermodynamicTemperature")
+ "Chilled water supply temperature setpoint"
+ annotation (Placement(transformation(extent={{-140,100},{-100,140}}),
+ iconTransformation(extent={{-140,70},{-100,110}})));
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput reqPlaCap(
+ final unit="W",
+ final quantity="HeatFlowRate") "Current required plant capacity"
+ annotation (Placement(transformation(extent={{-140,80},{-100,120}}),
+ iconTransformation(extent={{-140,50},{-100,90}})));
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput uMaxTowSpeSet[nChi](
+ final min=fill(0, nChi),
+ final max=fill(1, nChi),
+ final unit=fill("1", nChi))
+ "Maximum cooling tower speed setpoint from each chiller head pressure control loop"
+ annotation (Placement(transformation(extent={{-140,50},{-100,90}}),
+ iconTransformation(extent={{-140,30},{-100,70}})));
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uTowSta[nTowCel]
+ "Vector of tower cell proven on status: true=running tower cell"
+ annotation (Placement(transformation(extent={{-140,20},{-100,60}}),
+ iconTransformation(extent={{-140,10},{-100,50}})));
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uPla
+ "Plant enabling status"
+ annotation (Placement(transformation(extent={{-140,0},{-100,40}}),
+ iconTransformation(extent={{-140,-10},{-100,30}})));
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput TConWatRet(
+ final unit="K",
+ displayUnit="degC",
+ final quantity="ThermodynamicTemperature")
+ "Condenser water return temperature (condenser leaving)"
+ annotation (Placement(transformation(extent={{-140,-20},{-100,20}}),
+ iconTransformation(extent={{-140,-30},{-100,10}})));
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput uConWatPumSpe[nConWatPum](
+ final min=fill(0, nConWatPum),
+ final max=fill(1, nConWatPum),
+ final unit=fill("1", nConWatPum)) "Current condenser water pump speed"
+ annotation (Placement(transformation(extent={{-140,-40},{-100,0}}),
+ iconTransformation(extent={{-140,-50},{-100,-10}})));
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput TConWatSup(
+ final unit="K",
+ displayUnit="degC",
+ final quantity="ThermodynamicTemperature") if not closeCoupledPlant
+ "Condenser water supply temperature (condenser entering)"
+ annotation (Placement(transformation(extent={{-140,-60},{-100,-20}}),
+ iconTransformation(extent={{-140,-70},{-100,-30}})));
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uEnaPla
+ "True: plant is just enabled"
+ annotation(Placement(transformation(extent={{-140,-90},{-100,-50}}),
+ iconTransformation(extent={{-140,-90},{-100,-50}})));
+ Buildings.Controls.OBC.CDL.Interfaces.IntegerInput uChiSta
+ "Current chiller stage"
+ annotation (Placement(transformation(extent={{-140,-120},{-100,-80}}),
+ iconTransformation(extent={{-140,-110},{-100,-70}})));
+ Buildings.Controls.OBC.CDL.Interfaces.IntegerInput uChiStaSet
+ "Chiller stage setpoint"
+ annotation (Placement(transformation(extent={{-140,-140},{-100,-100}}),
+ iconTransformation(extent={{-140,-130},{-100,-90}})));
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uTowStaCha
+ "Cooling tower stage change command from plant staging process"
+ annotation (Placement(transformation(extent={{-140,-170},{-100,-130}}),
+ iconTransformation(extent={{-140,-150},{-100,-110}})));
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uLeaConWatPum
+ "Enabling status of lead condenser water pump"
+ annotation (Placement(transformation(extent={{-140,-190},{-100,-150}}),
+ iconTransformation(extent={{-140,-170},{-100,-130}})));
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput uIsoVal[nTowCel](
+ final min=fill(0, nTowCel),
+ final max=fill(1, nTowCel),
+ final unit=fill("1", nTowCel))
+ "Vector of tower cells isolation valve position"
+ annotation (Placement(transformation(extent={{-140,-240},{-100,-200}}),
+ iconTransformation(extent={{-140,-190},{-100,-150}})));
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput watLev
+ "Measured water level"
+ annotation (Placement(transformation(extent={{-140,-260},{-100,-220}}),
+ iconTransformation(extent={{-140,-210},{-100,-170}})));
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanOutput yLeaCel
+ "Lead tower cell status setpoint"
+ annotation (Placement(transformation(extent={{100,-50},{140,-10}}),
+ iconTransformation(extent={{100,90},{140,130}})));
+ Buildings.Controls.OBC.CDL.Interfaces.RealOutput yIsoVal[nTowCel](
+ final min=fill(0, nTowCel),
+ final max=fill(1, nTowCel),
+ final unit=fill("1", nTowCel))
+ "Cooling tower cells isolation valve position"
+ annotation (Placement(transformation(extent={{100,-90},{140,-50}}),
+ iconTransformation(extent={{100,30},{140,70}})));
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanOutput yTowSta[nTowCel]
+ "Vector of tower cells status setpoint"
+ annotation (Placement(transformation(extent={{100,-130},{140,-90}}),
+ iconTransformation(extent={{100,-70},{140,-30}})));
+ Buildings.Controls.OBC.CDL.Interfaces.RealOutput ySpeSet[nTowCel](
+ final min=fill(0, nTowCel),
+ final max=fill(1, nTowCel),
+ final unit=fill("1", nTowCel))
+ "Fan speed setpoint of each cooling tower cell"
+ annotation (Placement(transformation(extent={{100,-170},{140,-130}}),
+ iconTransformation(extent={{100,-130},{140,-90}})));
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanOutput yMakUp
+ "Makeup water valve On-Off status"
+ annotation (Placement(transformation(extent={{100,-260},{140,-220}}),
+ iconTransformation(extent={{100,-190},{140,-150}})));
+
+protected
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Towers.FanSpeed.Controller towFanSpe(
+ final nChi=nChi,
+ final nTowCel=nTowCel,
+ final nConWatPum=nConWatPum,
+ final closeCoupledPlant=closeCoupledPlant,
+ final have_WSE=have_WSE,
+ final desCap=desCap,
+ final fanSpeMin=fanSpeMin,
+ final fanSpeMax=fanSpeMax,
+ final chiMinCap=chiMinCap,
+ final intOpeCon=intOpeCon,
+ final kIntOpe=kIntOpe,
+ final TiIntOpe=TiIntOpe,
+ final TdIntOpe=TdIntOpe,
+ final chiWatCon=chiWatCon,
+ final kWSE=kWSE,
+ final TiWSE=TiWSE,
+ final TdWSE=TdWSE,
+ final LIFT_min=LIFT_min,
+ final TConWatSup_nominal=TConWatSup_nominal,
+ final samplePeriod=samplePeriod,
+ final cheMinFanSpe=cheMinFanSpe,
+ final cheMaxTowSpe=cheMaxTowSpe,
+ final cheTowOff=cheTowOff,
+ final iniPlaTim=iniPlaTim,
+ final ramTim=ramTim,
+ final TConWatRet_nominal=TConWatRet_nominal,
+ final TChiWatSupMin=TChiWatSupMin,
+ final couPlaCon=couPlaCon,
+ final kCouPla=kCouPla,
+ final TiCouPla=TiCouPla,
+ final TdCouPla=TdCouPla,
+ final yCouPlaMax=yCouPlaMax,
+ final yCouPlaMin=yCouPlaMin,
+ final supWatCon=supWatCon,
+ final kSupCon=kSupCon,
+ final TiSupCon=TiSupCon,
+ final TdSupCon=TdSupCon,
+ final ySupConMax=ySupConMax,
+ final ySupConMin=ySupConMin,
+ final speChe=speChe) "Tower fan speed"
+ annotation (Placement(transformation(extent={{-20,20},{0,60}})));
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Towers.Staging.Controller towSta(
+ final have_WSE=have_WSE,
+ final nTowCel=nTowCel,
+ final nConWatPum=nConWatPum,
+ final totSta=totSta,
+ final staVec=staVec,
+ final towCelOnSet=towCelOnSet,
+ final chaTowCelIsoTim=chaTowCelIsoTim,
+ final speChe=speChe) "Cooling tower staging"
+ annotation (Placement(transformation(extent={{-20,-52},{0,-32}})));
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Towers.WaterLevel makUpWat(
+ final watLevMin=watLevMin,
+ final watLevMax=watLevMax)
+ "Make up water control"
+ annotation (Placement(transformation(extent={{-20,-250},{0,-230}})));
+ Buildings.Controls.OBC.CDL.Continuous.Switch swi[nTowCel] "Logical switch"
+ annotation (Placement(transformation(extent={{60,-160},{80,-140}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant zer[nTowCel](
+ final k=fill(0, nTowCel)) "Zero constant"
+ annotation (Placement(transformation(extent={{0,-190},{20,-170}})));
+ Buildings.Controls.OBC.CDL.Routing.RealScalarReplicator reaRep(
+ final nout=nTowCel) "Replicate real input"
+ annotation (Placement(transformation(extent={{20,30},{40,50}})));
+
+equation
+ connect(towSta.yTowSta, yTowSta)
+ annotation (Line(points={{2,-46},{20,-46},{20,-110},{120,-110}}, color={255,0,255}));
+ connect(towSta.yIsoVal, yIsoVal)
+ annotation (Line(points={{2,-42},{40,-42},{40,-70},{120,-70}}, color={0,0,127}));
+ connect(towSta.yTowSta, swi.u2)
+ annotation (Line(points={{2,-46},{20,-46},{20,-150},{58,-150}}, color={255,0,255}));
+ connect(towFanSpe.ySpeSet, reaRep.u)
+ annotation (Line(points={{2,40},{18,40}}, color={0,0,127}));
+ connect(reaRep.y, swi.u1)
+ annotation (Line(points={{42,40},{50,40},{50,-142},{58,-142}}, color={0,0,127}));
+ connect(zer.y, swi.u3)
+ annotation (Line(points={{22,-180},{40,-180},{40,-158},{58,-158}},
+ color={0,0,127}));
+ connect(swi.y,ySpeSet)
+ annotation (Line(points={{82,-150},{120,-150}}, color={0,0,127}));
+ connect(towFanSpe.chiLoa, chiLoa)
+ annotation (Line(points={{-22,59},{-40,59},{-40,240},{-120,240}}, color={0,0,127}));
+ connect(towFanSpe.uChi, uChi)
+ annotation (Line(points={{-22,56},{-44,56},{-44,210},{-120,210}}, color={255,0,255}));
+ connect(towFanSpe.uWse, uWse) annotation (Line(points={{-22,53},{-48,53},{-48,
+ 180},{-120,180}}, color={255,0,255}));
+ connect(towFanSpe.uFanSpe,uFanSpe)
+ annotation (Line(points={{-22,50},{-52,50},{-52,160},{-120,160}}, color={0,0,127}));
+ connect(towFanSpe.TChiWatSup, TChiWatSup)
+ annotation (Line(points={{-22,47},{-56,47},{-56,140},{-120,140}}, color={0,0,127}));
+ connect(towFanSpe.TChiWatSupSet, TChiWatSupSet)
+ annotation (Line(points={{-22,44},{-60,44},{-60,120},{-120,120}}, color={0,0,127}));
+ connect(towFanSpe.reqPlaCap, reqPlaCap)
+ annotation (Line(points={{-22,41},{-64,41},{-64,100},{-120,100}}, color={0,0,127}));
+ connect(towFanSpe.uMaxTowSpeSet, uMaxTowSpeSet)
+ annotation (Line(points={{-22,38},{-68,38},{-68,70},{-120,70}}, color={0,0,127}));
+ connect(towFanSpe.uTow, uTowSta) annotation (Line(points={{-22,35},{-76,35},{-76,
+ 40},{-120,40}}, color={255,0,255}));
+ connect(towFanSpe.uPla, uPla)
+ annotation (Line(points={{-22,29},{-84,29},{-84,20},{-120,20}}, color={255,0,255}));
+ connect(towFanSpe.TConWatRet, TConWatRet)
+ annotation (Line(points={{-22,26},{-80,26},{-80,0},{-120,0}}, color={0,0,127}));
+ connect(towFanSpe.uConWatPumSpe, uConWatPumSpe)
+ annotation (Line(points={{-22,23},{-72,23},{-72,-20},{-120,-20}}, color={0,0,127}));
+ connect(towFanSpe.TConWatSup, TConWatSup)
+ annotation (Line(points={{-22,21},{-68,21},{-68,-40},{-120,-40}}, color={0,0,127}));
+ connect(towSta.uChiSta, uChiSta)
+ annotation (Line(points={{-22,-33},{-64,-33},{-64,-100},{-120,-100}}, color={255,127,0}));
+ connect(towSta.uIsoVal, uIsoVal)
+ annotation (Line(points={{-22,-49},{-40,-49},{-40,-220},{-120,-220}}, color={0,0,127}));
+ connect(makUpWat.watLev, watLev)
+ annotation (Line(points={{-22,-240},{-120,-240}}, color={0,0,127}));
+ connect(makUpWat.yMakUp, yMakUp)
+ annotation (Line(points={{2,-240},{120,-240}}, color={255,0,255}));
+ connect(uTowSta, towSta.uTowSta)
+ annotation (Line(points={{-120,40},{-76,40},{-76,-51},{-22,-51}}, color={255,0,255}));
+ connect(towSta.uChiStaSet, uChiStaSet) annotation (Line(points={{-22,-35},{-60,
+ -35},{-60,-120},{-120,-120}}, color={255,127,0}));
+ connect(towSta.uTowStaCha, uTowStaCha) annotation (Line(points={{-22,-37},{-56,
+ -37},{-56,-150},{-120,-150}}, color={255,0,255}));
+ connect(uWse, towSta.uWse) annotation (Line(points={{-120,180},{-48,180},{-48,
+ -39},{-22,-39}}, color={255,0,255}));
+ connect(towSta.uLeaConWatPum, uLeaConWatPum) annotation (Line(points={{-22,-43},
+ {-52,-43},{-52,-170},{-120,-170}}, color={255,0,255}));
+ connect(uConWatPumSpe, towSta.uConWatPumSpe) annotation (Line(points={{-120,-20},
+ {-72,-20},{-72,-45},{-22,-45}}, color={0,0,127}));
+ connect(towSta.yLeaCel, yLeaCel) annotation (Line(points={{2,-38},{40,-38},{40,
+ -30},{120,-30}}, color={255,0,255}));
+ connect(uEnaPla, towSta.uEnaPla) annotation (Line(points={{-120,-70},{-34,-70},
+ {-34,-41},{-22,-41}}, color={255,0,255}));
+annotation (
+ defaultComponentName="towCon",
+ Icon(coordinateSystem(preserveAspectRatio=false, extent={{-100,-200},{100,200}}), graphics={
+ Rectangle(
+ extent={{-100,-200},{100,200}},
+ lineColor={0,0,127},
+ fillColor={255,255,255},
+ fillPattern=FillPattern.Solid),
+ Text(
+ extent={{-120,248},{100,210}},
+ textColor={0,0,255},
+ textString="%name"),
+ Text(
+ extent={{-98,-120},{-26,-136}},
+ textColor={255,0,255},
+ textString="uTowStaCha"),
+ Text(
+ extent={{-100,196},{-62,184}},
+ textColor={0,0,127},
+ textString="chiLoa",
+ visible=have_WSE),
+ Text(
+ extent={{-98,-82},{-50,-98}},
+ textColor={255,127,0},
+ textString="uChiSta"),
+ Text(
+ extent={{-98,-100},{-32,-118}},
+ textColor={255,127,0},
+ textString="uChiStaSet"),
+ Text(
+ extent={{-96,-140},{-8,-156}},
+ textColor={255,0,255},
+ textString="uLeaConWatPum"),
+ Text(
+ extent={{48,-160},{100,-176}},
+ textColor={255,0,255},
+ textString="yMakUp"),
+ Text(
+ extent={{-98,38},{-54,24}},
+ textColor={255,0,255},
+ textString="uTowSta"),
+ Text(
+ extent={{-98,18},{-68,4}},
+ textColor={255,0,255},
+ textString="uPla"),
+ Text(
+ extent={{-100,178},{-70,164}},
+ textColor={255,0,255},
+ textString="uChi"),
+ Text(
+ extent={{-96,158},{-66,144}},
+ textColor={255,0,255},
+ textString="uWse",
+ visible=have_WSE),
+ Text(
+ extent={{-100,138},{-50,124}},
+ textColor={0,0,127},
+ textString="uFanSpe"),
+ Text(
+ extent={{-98,118},{-34,102}},
+ textColor={0,0,127},
+ textString="TChiWatSup",
+ visible=have_WSE),
+ Text(
+ extent={{-98,80},{-34,64}},
+ textColor={0,0,127},
+ textString="reqPlaCap"),
+ Text(
+ extent={{-96,98},{-16,82}},
+ textColor={0,0,127},
+ textString="TChiWatSupSet"),
+ Text(
+ extent={{-98,60},{-14,42}},
+ textColor={0,0,127},
+ textString="uMaxTowSpeSet"),
+ Text(
+ extent={{-96,-22},{-12,-40}},
+ textColor={0,0,127},
+ textString="uConWatPumSpe"),
+ Text(
+ extent={{-100,-2},{-36,-18}},
+ textColor={0,0,127},
+ textString="TConWatRet"),
+ Text(
+ extent={{-98,-42},{-34,-58}},
+ textColor={0,0,127},
+ textString="TConWatSup",
+ visible=not closeCoupledPlant),
+ Text(
+ extent={{-100,-178},{-56,-192}},
+ textColor={0,0,127},
+ textString="watLev"),
+ Text(
+ extent={{-98,-160},{-54,-176}},
+ textColor={0,0,127},
+ textString="uIsoVal"),
+ Text(
+ extent={{54,-100},{98,-116}},
+ textColor={0,0,127},
+ textString="ySpeSet"),
+ Text(
+ extent={{46,-40},{98,-56}},
+ textColor={255,0,255},
+ textString="yTowSta"),
+ Text(
+ extent={{54,58},{98,42}},
+ textColor={0,0,127},
+ textString="yIsoVal"),
+ Text(
+ extent={{48,120},{100,104}},
+ textColor={255,0,255},
+ textString="yLeaCel"),
+ Text(
+ extent={{-96,-64},{-58,-78}},
+ textColor={255,0,255},
+ textString="uEnaPla")}),
+ Diagram(coordinateSystem(preserveAspectRatio=false, extent={{-100,-260},{100,260}})),
+Documentation(info="
+
+Block that controls cooling tower cells enabling status yTowSta
,
+the supply isolation valve positions yIsoVal
of each cell and the
+cell fan operating speed ySpeSet
.
+This is implemented according to ASHRAE RP-1711 Advanced Sequences of Operation for
+HVAC Systems Phase II –
+Central Plants and Hydronic Systems (Draft on March 23, 2020), section 5.2.12.
+The section specifies sequences to control cooling tower.
+It includes three subsequences:
+
+
+", revisions="
+
+-
+September 14, 2019, by Jianjun Hu:
+First implementation.
+
+
+"));
+end Controller;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Towers/FanSpeed/Controller.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Towers/FanSpeed/Controller.mo
new file mode 100644
index 00000000000..a92d5087b10
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Towers/FanSpeed/Controller.mo
@@ -0,0 +1,442 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Towers.FanSpeed;
+block Controller "Tower fan speed control"
+
+ parameter Integer nChi=2 "Total number of chillers";
+ parameter Integer nTowCel=4 "Total number of cooling tower cells";
+ parameter Integer nConWatPum=2 "Total number of condenser water pumps";
+ parameter Boolean closeCoupledPlant=true
+ "Flag to indicate if the plant is close coupled";
+ parameter Boolean have_WSE=true
+ "Flag to indicate if the plant has waterside economizer";
+ parameter Real desCap(
+ final unit="W",
+ final quantity="HeatFlowRate")=1e6 "Plant design capacity";
+ parameter Real fanSpeMin=0.1 "Minimum tower fan speed";
+ parameter Real fanSpeMax=1 "Maximum tower fan speed"
+ annotation (Dialog(enable=have_WSE));
+ parameter Real chiMinCap[nChi](
+ each final unit="W",
+ final quantity=fill("HeatFlowRate", nChi))={1e4,1e4}
+ "Minimum cyclining load below which chiller will begin cycling"
+ annotation (Dialog(tab="WSE Enabled", group="Integrated", enable=have_WSE));
+ parameter Buildings.Controls.OBC.CDL.Types.SimpleController intOpeCon=
+ Buildings.Controls.OBC.CDL.Types.SimpleController.PI
+ "Type of controller"
+ annotation (Dialog(tab="WSE Enabled", group="Integrated", enable=have_WSE));
+ parameter Real kIntOpe=1 "Gain of controller"
+ annotation (Dialog(tab="WSE Enabled", group="Integrated",enable=have_WSE));
+ parameter Real TiIntOpe(final quantity="Time", final unit="s")=0.5
+ "Time constant of integrator block"
+ annotation (Dialog(tab="WSE Enabled", group="Integrated",
+ enable=have_WSE and (intOpeCon == Buildings.Controls.OBC.CDL.Types.SimpleController.PI or
+ intOpeCon == Buildings.Controls.OBC.CDL.Types.SimpleController.PID)));
+ parameter Real TdIntOpe(final quantity="Time", final unit="s")=0.1
+ "Time constant of derivative block"
+ annotation (Dialog(tab="WSE Enabled", group="Integrated",
+ enable=have_WSE and (intOpeCon == Buildings.Controls.OBC.CDL.Types.SimpleController.PD or
+ intOpeCon == Buildings.Controls.OBC.CDL.Types.SimpleController.PID)));
+ parameter Buildings.Controls.OBC.CDL.Types.SimpleController chiWatCon=
+ Buildings.Controls.OBC.CDL.Types.SimpleController.PI
+ "Type of controller"
+ annotation (Dialog(tab="WSE Enabled", group="WSE-only",enable=have_WSE));
+ parameter Real kWSE=1 "Gain of controller"
+ annotation (Dialog(tab="WSE Enabled", group="WSE-only",enable=have_WSE));
+ parameter Real TiWSE(final quantity="Time", final unit="s")=0.5
+ "Time constant of integrator block"
+ annotation (Dialog(tab="WSE Enabled", group="WSE-only",
+ enable=have_WSE and (chiWatCon == Buildings.Controls.OBC.CDL.Types.SimpleController.PI or
+ chiWatCon == Buildings.Controls.OBC.CDL.Types.SimpleController.PID)));
+ parameter Real TdWSE(final quantity="Time", final unit="s")=0.1
+ "Time constant of derivative block"
+ annotation (Dialog(tab="WSE Enabled", group="WSE-only",
+ enable=have_WSE and (chiWatCon == Buildings.Controls.OBC.CDL.Types.SimpleController.PD or
+ chiWatCon == Buildings.Controls.OBC.CDL.Types.SimpleController.PID)));
+ parameter Real LIFT_min[nChi](
+ final unit=fill("K",nChi),
+ final quantity=fill("TemperatureDifference",nChi),
+ displayUnit=fill("degC",nChi))={12,12} "Minimum LIFT of each chiller"
+ annotation (Dialog(tab="Return temperature control", group="Setpoint"));
+ parameter Real TConWatSup_nominal[nChi](
+ final unit=fill("K",nChi),
+ final quantity=fill("ThermodynamicTemperature",nChi),
+ displayUnit=fill("degC",nChi))={293.15,293.15}
+ "Design condenser water supply temperature (condenser entering) of each chiller"
+ annotation (Dialog(tab="Return temperature control", group="Setpoint"));
+ parameter Real TConWatRet_nominal[nChi](
+ final unit=fill("K",nChi),
+ final quantity=fill("ThermodynamicTemperature",nChi),
+ displayUnit=fill("degC",nChi))={303.15,303.15}
+ "Design condenser water return temperature (condenser leaving) of each chiller"
+ annotation (Dialog(tab="Return temperature control", group="Setpoint"));
+ parameter Real TChiWatSupMin[nChi](
+ final unit=fill("K",nChi),
+ final quantity=fill("ThermodynamicTemperature",nChi),
+ displayUnit=fill("degC",nChi))={278.15,278.15}
+ "Lowest chilled water supply temperature of each chiller"
+ annotation (Dialog(tab="Return temperature control", group="Setpoint"));
+ parameter Buildings.Controls.OBC.CDL.Types.SimpleController couPlaCon=
+ Buildings.Controls.OBC.CDL.Types.SimpleController.PI "Type of controller"
+ annotation (Dialog(tab="Return temperature control", group="Coupled plant",
+ enable=closeCoupledPlant));
+ parameter Real kCouPla=1 "Gain of controller"
+ annotation (Dialog(tab="Return temperature control", group="Coupled plant",
+ enable=closeCoupledPlant));
+ parameter Real TiCouPla(final quantity="Time", final unit="s")=0.5
+ "Time constant of integrator block"
+ annotation (Dialog(tab="Return temperature control", group="Coupled plant",
+ enable=closeCoupledPlant and (couPlaCon == Buildings.Controls.OBC.CDL.Types.SimpleController.PI or
+ couPlaCon == Buildings.Controls.OBC.CDL.Types.SimpleController.PID)));
+ parameter Real TdCouPla(final quantity="Time", final unit="s")=0.1
+ "Time constant of derivative block"
+ annotation (Dialog(tab="Return temperature control", group="Coupled plant",
+ enable=closeCoupledPlant and (couPlaCon == Buildings.Controls.OBC.CDL.Types.SimpleController.PD or
+ couPlaCon == Buildings.Controls.OBC.CDL.Types.SimpleController.PID)));
+ parameter Real yCouPlaMax=1 "Upper limit of output"
+ annotation (Dialog(tab="Return temperature control", group="Coupled plant",
+ enable=closeCoupledPlant));
+ parameter Real yCouPlaMin=0 "Lower limit of output"
+ annotation (Dialog(tab="Return temperature control", group="Coupled plant",
+ enable=closeCoupledPlant));
+ parameter Real samplePeriod=30
+ "Period of sampling condenser water supply and return temperature difference"
+ annotation (Dialog(tab="Return temperature control", group="Less coupled plant",
+ enable=not closeCoupledPlant));
+ parameter Buildings.Controls.OBC.CDL.Types.SimpleController supWatCon=
+ Buildings.Controls.OBC.CDL.Types.SimpleController.PI "Type of controller"
+ annotation (Dialog(tab="Return temperature control", group="Less coupled plant",
+ enable=not closeCoupledPlant));
+ parameter Real kSupCon=1 "Gain of controller"
+ annotation (Dialog(tab="Return temperature control", group="Less coupled plant",
+ enable=not closeCoupledPlant));
+ parameter Real TiSupCon(final quantity="Time", final unit="s")=0.5
+ "Time constant of integrator block"
+ annotation (Dialog(tab="Return temperature control", group="Less coupled plant",
+ enable=not closeCoupledPlant and (supWatCon == Buildings.Controls.OBC.CDL.Types.SimpleController.PI or
+ supWatCon == Buildings.Controls.OBC.CDL.Types.SimpleController.PID)));
+ parameter Real TdSupCon(final quantity="Time", final unit="s")=0.1
+ "Time constant of derivative block"
+ annotation (Dialog(tab="Return temperature control", group="Less coupled plant",
+ enable=not closeCoupledPlant and (supWatCon == Buildings.Controls.OBC.CDL.Types.SimpleController.PD or
+ supWatCon == Buildings.Controls.OBC.CDL.Types.SimpleController.PID)));
+ parameter Real ySupConMax=1 "Upper limit of output"
+ annotation (Dialog(tab="Return temperature control",
+ group="Less coupled plant", enable=not closeCoupledPlant));
+ parameter Real ySupConMin=0 "Lower limit of output"
+ annotation (Dialog(tab="Return temperature control",
+ group="Less coupled plant", enable=not closeCoupledPlant));
+ parameter Real speChe=0.005 "Lower threshold value to check fan or pump speed"
+ annotation (Dialog(tab="Advanced"));
+ parameter Real cheMinFanSpe(final quantity="Time", final unit="s")=300
+ "Threshold time for checking duration when tower fan equals to the minimum tower fan speed"
+ annotation (Dialog(tab="Advanced", group="Return temperature control: Enable tower"));
+ parameter Real cheMaxTowSpe(final quantity="Time", final unit="s")=300
+ "Threshold time for checking duration when any enabled chiller maximum cooling speed equals to the minimum tower fan speed"
+ annotation (Dialog(tab="Advanced", group="Return temperature control: Enable tower"));
+ parameter Real cheTowOff(final quantity="Time", final unit="s")=60
+ "Threshold time for checking duration when there is no enabled tower fan"
+ annotation (Dialog(tab="Advanced", group="Return temperature control: Enable tower"));
+ parameter Real iniPlaTim(final quantity="Time", final unit="s")=600
+ "Time to hold return temperature to initial setpoint after plant being enabled"
+ annotation (Dialog(tab="Advanced", group="Return temperature control: Setpoint"));
+ parameter Real ramTim(final quantity="Time", final unit="s")=180
+ "Time to ramp return water temperature from initial value to setpoint"
+ annotation (Dialog(tab="Advanced", group="Return temperature control: Setpoint"));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput chiLoa[nChi](final unit=fill(
+ "W", nChi), final quantity=fill("HeatFlowRate", nChi))
+ if have_WSE "Current load of each chiller"
+ annotation (Placement(transformation(extent={{-140,120},{-100,160}}),
+ iconTransformation(extent={{-140,170},{-100,210}})));
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uChi[nChi]
+ "Chiller enabling status: true=ON"
+ annotation (Placement(transformation(extent={{-140,100},{-100,140}}),
+ iconTransformation(extent={{-140,140},{-100,180}})));
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uWse if have_WSE
+ "Waterside economizer enabling status: true=ON"
+ annotation (Placement(transformation(extent={{-140,80},{-100,120}}),
+ iconTransformation(extent={{-140,110},{-100,150}})));
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput uFanSpe(
+ final min=0,
+ final max=1,
+ final unit="1") "Measured tower fan speed"
+ annotation (Placement(transformation(extent={{-140,60},{-100,100}}),
+ iconTransformation(extent={{-140,80},{-100,120}})));
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput TChiWatSup(
+ final unit="K",
+ displayUnit="degC",
+ final quantity="ThermodynamicTemperature") if have_WSE
+ "Chilled water supply temperature"
+ annotation (Placement(transformation(extent={{-140,40},{-100,80}}),
+ iconTransformation(extent={{-140,50},{-100,90}})));
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput TChiWatSupSet(
+ final unit="K",
+ displayUnit="degC",
+ final quantity="ThermodynamicTemperature")
+ "Chilled water supply temperature setpoint"
+ annotation (Placement(transformation(extent={{-140,20},{-100,60}}),
+ iconTransformation(extent={{-140,20},{-100,60}})));
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput reqPlaCap(
+ final unit="W",
+ final quantity="HeatFlowRate") "Current required plant capacity"
+ annotation (Placement(transformation(extent={{-140,-20},{-100,20}}),
+ iconTransformation(extent={{-140,-10},{-100,30}})));
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput uMaxTowSpeSet[nChi](
+ final min=fill(0, nChi),
+ final max=fill(1, nChi),
+ final unit=fill("1", nChi))
+ "Maximum cooling tower speed setpoint from each chiller head pressure control loop"
+ annotation (Placement(transformation(extent={{-140,-40},{-100,0}}),
+ iconTransformation(extent={{-140,-40},{-100,0}})));
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uTow[nTowCel]
+ "Cooling tower cell operating status: true=running tower cell"
+ annotation (Placement(transformation(extent={{-140,-80},{-100,-40}}),
+ iconTransformation(extent={{-140,-70},{-100,-30}})));
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uPla
+ "Plant enabling status"
+ annotation (Placement(transformation(extent={{-140,-120},{-100,-80}}),
+ iconTransformation(extent={{-140,-130},{-100,-90}})));
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput TConWatRet(
+ final unit="K",
+ displayUnit="degC",
+ final quantity="ThermodynamicTemperature")
+ "Condenser water return temperature (condenser leaving)"
+ annotation (Placement(transformation(extent={{-140,-140},{-100,-100}}),
+ iconTransformation(extent={{-140,-160},{-100,-120}})));
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput uConWatPumSpe[nConWatPum](
+ final min=fill(0, nConWatPum),
+ final max=fill(1, nConWatPum),
+ final unit=fill("1", nConWatPum)) "Current condenser water pump speed"
+ annotation (Placement(transformation(extent={{-140,-160},{-100,-120}}),
+ iconTransformation(extent={{-140,-190},{-100,-150}})));
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput TConWatSup(
+ final unit="K",
+ displayUnit="degC",
+ final quantity="ThermodynamicTemperature") if not closeCoupledPlant
+ "Condenser water supply temperature (condenser entering)"
+ annotation (Placement(transformation(extent={{-140,-180},{-100,-140}}),
+ iconTransformation(extent={{-140,-210},{-100,-170}})));
+ Buildings.Controls.OBC.CDL.Interfaces.RealOutput ySpeSet(
+ final min=0,
+ final max=1,
+ final unit="1") "Fan speed setpoint of each cooling tower cell"
+ annotation (Placement(transformation(extent={{100,-20},{140,20}}),
+ iconTransformation(extent={{100,-20},{140,20}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Towers.FanSpeed.ReturnWaterTemperature.Controller
+ fanSpeRetTem(
+ final nChi=nChi,
+ final nTowCel=nTowCel,
+ final nConWatPum=nConWatPum,
+ final have_WSE=have_WSE,
+ final closeCoupledPlant=closeCoupledPlant,
+ final desCap=desCap,
+ final fanSpeMin=fanSpeMin,
+ final LIFT_min=LIFT_min,
+ final TConWatRet_nominal=TConWatRet_nominal,
+ final TConWatSup_nominal=TConWatSup_nominal,
+ final TChiWatSupMin=TChiWatSupMin,
+ final cheMinFanSpe=cheMinFanSpe,
+ final cheMaxTowSpe=cheMaxTowSpe,
+ final cheTowOff=cheTowOff,
+ final iniPlaTim=iniPlaTim,
+ final ramTim=ramTim,
+ final couPlaCon=couPlaCon,
+ final kCouPla=kCouPla,
+ final TiCouPla=TiCouPla,
+ final yCouPlaMax=yCouPlaMax,
+ final yCouPlaMin=yCouPlaMin,
+ final TdCouPla=TdCouPla,
+ final supWatCon=supWatCon,
+ final kSupCon=kSupCon,
+ final TiSupCon=TiSupCon,
+ final TdSupCon=TdSupCon,
+ final ySupConMax=ySupConMax,
+ final ySupConMin=ySupConMin,
+ final speChe=speChe)
+ "Fan speed control based on condenser water return temperature control"
+ annotation (Placement(transformation(extent={{20,-60},{60,-20}})));
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Towers.FanSpeed.EnabledWSE.Controller
+ fanSpeWse(
+ final nChi=nChi,
+ final chiMinCap=chiMinCap,
+ final fanSpeMin=fanSpeMin,
+ final intOpeCon=intOpeCon,
+ final kIntOpe=kIntOpe,
+ final TiIntOpe=TiIntOpe,
+ final TdIntOpe=TdIntOpe,
+ final fanSpeMax=fanSpeMax,
+ final fanSpeChe=speChe,
+ final chiWatCon=chiWatCon,
+ final kWSE=kWSE,
+ final TiWSE=TiWSE,
+ final TdWSE=TdWSE) if have_WSE
+ "Tower fan speed when waterside economizer is enabled"
+ annotation (Placement(transformation(extent={{-40,40},{-20,60}})));
+
+equation
+ connect(fanSpeWse.ySpeSet, fanSpeRetTem.uTowSpeWSE)
+ annotation (Line(points={{-18,50},{0,50},{0,-22},{18,-22}}, color={0,0,127}));
+ connect(fanSpeWse.chiLoa, chiLoa)
+ annotation (Line(points={{-42,59},{-60,59},{-60,140},{-120,140}},
+ color={0,0,127}));
+ connect(fanSpeWse.uChi, uChi)
+ annotation (Line(points={{-42,56},{-64,56},{-64,120},{-120,120}},
+ color={255,0,255}));
+ connect(fanSpeWse.uWse, uWse) annotation (Line(points={{-42,52},{-68,52},{-68,
+ 100},{-120,100}}, color={255,0,255}));
+ connect(fanSpeWse.uFanSpe,uFanSpe)
+ annotation (Line(points={{-42,48},{-72,48},{-72,80},{-120,80}},
+ color={0,0,127}));
+ connect(fanSpeWse.TChiWatSup, TChiWatSup)
+ annotation (Line(points={{-42,44},{-76,44},{-76,60},{-120,60}},
+ color={0,0,127}));
+ connect(fanSpeWse.TChiWatSupSet, TChiWatSupSet)
+ annotation (Line(points={{-42,41},{-82,41},{-82,40},{-120,40}},
+ color={0,0,127}));
+ connect(uChi, fanSpeRetTem.uChi)
+ annotation (Line(points={{-120,120},{-64,120},{-64,-25},{18,-25}},
+ color={255,0,255}));
+ connect(uWse, fanSpeRetTem.uWse) annotation (Line(points={{-120,100},{-68,100},
+ {-68,-28},{18,-28}}, color={255,0,255}));
+ connect(fanSpeRetTem.reqPlaCap, reqPlaCap)
+ annotation (Line(points={{18,-31},{-76,-31},{-76,0},{-120,0}},
+ color={0,0,127}));
+ connect(fanSpeRetTem.uMaxTowSpeSet, uMaxTowSpeSet)
+ annotation (Line(points={{18,-34},{-80,-34},{-80,-20},{-120,-20}},
+ color={0,0,127}));
+ connect(uFanSpe,fanSpeRetTem.uFanSpe)
+ annotation (Line(points={{-120,80},{-72,80},{-72,-37},{18,-37}},
+ color={0,0,127}));
+ connect(fanSpeRetTem.uTow, uTow) annotation (Line(points={{18,-40},{-68,-40},{
+ -68,-60},{-120,-60}}, color={255,0,255}));
+ connect(TChiWatSupSet, fanSpeRetTem.TChiWatSupSet)
+ annotation (Line(points={{-120,40},{-60,40},{-60,-46},{18,-46}},
+ color={0,0,127}));
+ connect(fanSpeRetTem.uPla, uPla)
+ annotation (Line(points={{18,-49},{-60,-49},{-60,-100},{-120,-100}},
+ color={255,0,255}));
+ connect(fanSpeRetTem.TConWatRet, TConWatRet)
+ annotation (Line(points={{18,-52},{-56,-52},{-56,-120},{-120,-120}},
+ color={0,0,127}));
+ connect(fanSpeRetTem.uConWatPumSpe, uConWatPumSpe)
+ annotation (Line(points={{18,-55},{-52,-55},{-52,-140},{-120,-140}},
+ color={0,0,127}));
+ connect(fanSpeRetTem.TConWatSup, TConWatSup)
+ annotation (Line(points={{18,-58},{-48,-58},{-48,-160},{-120,-160}},
+ color={0,0,127}));
+ connect(fanSpeRetTem.ySpeSet,ySpeSet)
+ annotation (Line(points={{62,-40},{80,-40},{80,0},{120,0}},
+ color={0,0,127}));
+
+annotation (
+ defaultComponentName="towFanSpe",
+ Icon(coordinateSystem(preserveAspectRatio=false, extent={{-100,-200},{100,200}}),
+ graphics={
+ Rectangle(
+ extent={{-100,-200},{100,200}},
+ lineColor={0,0,127},
+ fillColor={255,255,255},
+ fillPattern=FillPattern.Solid),
+ Text(
+ extent={{-120,248},{100,210}},
+ textColor={0,0,255},
+ textString="%name"),
+ Text(
+ extent={{-100,170},{-64,154}},
+ textColor={255,0,255},
+ textString="uChi"),
+ Text(
+ extent={{-100,200},{-50,182}},
+ textColor={0,0,127},
+ textString="chiLoa",
+ visible=have_WSE),
+ Text(
+ extent={{-98,110},{-48,92}},
+ textColor={0,0,127},
+ textString="uFanSpe"),
+ Text(
+ extent={{-100,80},{-26,64}},
+ textColor={0,0,127},
+ textString="TChiWatSup",
+ visible=have_WSE),
+ Text(
+ extent={{-98,52},{-14,34}},
+ textColor={0,0,127},
+ textString="TChiWatSupSet"),
+ Text(
+ extent={{-96,20},{-40,2}},
+ textColor={0,0,127},
+ textString="reqPlaCap"),
+ Text(
+ extent={{-100,-10},{-8,-24}},
+ textColor={0,0,127},
+ textString="uMaxTowSpeSet"),
+ Text(
+ extent={{-96,-130},{-28,-148}},
+ textColor={0,0,127},
+ textString="TConWatRet"),
+ Text(
+ extent={{-94,-158},{10,-176}},
+ textColor={0,0,127},
+ textString="uConWatPumSpe"),
+ Text(
+ extent={{-98,-180},{-16,-200}},
+ textColor={0,0,127},
+ textString="TConWatSup",
+ visible=not closeCoupledPlant),
+ Text(
+ extent={{48,10},{98,-8}},
+ textColor={0,0,127},
+ textString="ySpeSet"),
+ Text(
+ extent={{-96,140},{-60,124}},
+ textColor={255,0,255},
+ textString="uWse",
+ visible=have_WSE),
+ Text(
+ extent={{-100,-40},{-64,-56}},
+ textColor={255,0,255},
+ textString="uTow"),
+ Text(
+ extent={{-100,-100},{-64,-116}},
+ textColor={255,0,255},
+ textString="uPla")}),
+ Diagram(coordinateSystem(preserveAspectRatio=false, extent={{-100,-180},{100,160}})),
+Documentation(info="
+
+Block that outputs cooling tower fan speed ySpeSet
. This is implemented
+according to ASHRAE RP-1711 Advanced Sequences of Operation for HVAC Systems Phase II –
+Central Plants and Hydronic Systems (Draft on March 23, 2020), section 5.2.12.2, item
+1, 2, and 4.
+These sections specifies sequences to control tower fan speed in the mode
+when waterside economizer (if the plant does have it) is enabled or disabled, for
+maintaining condenser water return temperature at its setpoint. This control is
+used for plants with dynamic load profiles, i.e. those for which PLR may change
+by more than approximately 25% in any hour.
+It includes two subsequences:
+
+
+", revisions="
+
+-
+September 14, 2019, by Jianjun Hu:
+First implementation.
+
+
+"));
+end Controller;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Towers/FanSpeed/EnabledWSE/Controller.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Towers/FanSpeed/EnabledWSE/Controller.mo
new file mode 100644
index 00000000000..190c0d3f3db
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Towers/FanSpeed/EnabledWSE/Controller.mo
@@ -0,0 +1,250 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Towers.FanSpeed.EnabledWSE;
+block Controller "Tower fan speed control when waterside economizer is enabled"
+
+ parameter Integer nChi=2 "Total number of chillers";
+ parameter Real fanSpeMin=0.1 "Minimum tower fan speed";
+ parameter Real fanSpeMax=1 "Maximum tower fan speed";
+ parameter Real chiMinCap[nChi](
+ each final unit="W",
+ final quantity=fill("HeatFlowRate", nChi))={1e4,1e4}
+ "Minimum cyclining load below which chiller will begin cycling"
+ annotation (Dialog(tab="Integrated operation"));
+ parameter Buildings.Controls.OBC.CDL.Types.SimpleController intOpeCon=Buildings.Controls.OBC.CDL.Types.SimpleController.PI
+ "Type of controller"
+ annotation (Dialog(tab="Integrated operation", group="Controller"));
+ parameter Real kIntOpe=1 "Gain of controller"
+ annotation (Dialog(tab="Integrated operation", group="Controller"));
+ parameter Real TiIntOpe(final quantity="Time", final unit="s")=0.5
+ "Time constant of integrator block"
+ annotation (Dialog(tab="Integrated operation", group="Controller",
+ enable=intOpeCon==Buildings.Controls.OBC.CDL.Types.SimpleController.PI or
+ intOpeCon==Buildings.Controls.OBC.CDL.Types.SimpleController.PID));
+ parameter Real TdIntOpe(final quantity="Time", final unit="s")=0.1
+ "Time constant of derivative block"
+ annotation (Dialog(tab="Integrated operation", group="Controller",
+ enable=intOpeCon==Buildings.Controls.OBC.CDL.Types.SimpleController.PD or
+ intOpeCon==Buildings.Controls.OBC.CDL.Types.SimpleController.PID));
+ parameter Real fanSpeChe=0.005 "Lower threshold value to check fan speed"
+ annotation (Dialog(tab="WSE-only"));
+ parameter Buildings.Controls.OBC.CDL.Types.SimpleController chiWatCon=Buildings.Controls.OBC.CDL.Types.SimpleController.PI
+ "Type of controller"
+ annotation (Dialog(tab="WSE-only", group="Controller"));
+ parameter Real kWSE=1 "Gain of controller"
+ annotation (Dialog(tab="WSE-only", group="Controller"));
+ parameter Real TiWSE(final quantity="Time", final unit="s")=0.5
+ "Time constant of integrator block"
+ annotation (Dialog(tab="WSE-only", group="Controller",
+ enable=chiWatCon==Buildings.Controls.OBC.CDL.Types.SimpleController.PI or
+ chiWatCon==Buildings.Controls.OBC.CDL.Types.SimpleController.PID));
+ parameter Real TdWSE(final quantity="Time", final unit="s")=0.1
+ "Time constant of derivative block"
+ annotation (Dialog(tab="WSE-only", group="Controller",
+ enable=chiWatCon==Buildings.Controls.OBC.CDL.Types.SimpleController.PD or
+ chiWatCon==Buildings.Controls.OBC.CDL.Types.SimpleController.PID));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput chiLoa[nChi](final unit=fill(
+ "W", nChi), final quantity=fill("HeatFlowRate", nChi))
+ "Current load of each chiller"
+ annotation (Placement(transformation(extent={{-140,60},{-100,100}}),
+ iconTransformation(extent={{-140,70},{-100,110}})));
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uChi[nChi]
+ "Chiller enabling status: true=ON"
+ annotation (Placement(transformation(extent={{-140,20},{-100,60}}),
+ iconTransformation(extent={{-140,40},{-100,80}})));
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uWse
+ "Waterside economizer enabling status: true=ON"
+ annotation (Placement(transformation(extent={{-140,-20},{-100,20}}),
+ iconTransformation(extent={{-140,0},{-100,40}})));
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput uFanSpe(
+ final min=0,
+ final max=1,
+ final unit="1") "Measured tower fan speed"
+ annotation (Placement(transformation(extent={{-140,-50},{-100,-10}}),
+ iconTransformation(extent={{-140,-40},{-100,0}})));
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput TChiWatSup(
+ final unit="K",
+ displayUnit="degC",
+ final quantity="ThermodynamicTemperature")
+ "Chilled water supply temperature"
+ annotation (Placement(transformation(extent={{-140,-80},{-100,-40}}),
+ iconTransformation(extent={{-140,-80},{-100,-40}})));
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput TChiWatSupSet(
+ final unit="K",
+ displayUnit="degC",
+ final quantity="ThermodynamicTemperature")
+ "Chilled water supply temperature setpoint"
+ annotation (Placement(transformation(extent={{-140,-110},{-100,-70}}),
+ iconTransformation(extent={{-140,-110},{-100,-70}})));
+ Buildings.Controls.OBC.CDL.Interfaces.RealOutput ySpeSet(
+ final min=0,
+ final max=1,
+ final unit="1")
+ "Tower fan speed setpoint when WSE is enabled and there is any chiller running"
+ annotation (Placement(transformation(extent={{100,-20},{140,20}}),
+ iconTransformation(extent={{100,-20},{140,20}})));
+
+protected
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Towers.FanSpeed.EnabledWSE.Subsequences.IntegratedOperation
+ intOpe(
+ final nChi=nChi,
+ final chiMinCap=chiMinCap,
+ final fanSpeMin=fanSpeMin,
+ final fanSpeMax=fanSpeMax,
+ final conTyp=intOpeCon,
+ final k=kIntOpe,
+ final Ti=TiIntOpe,
+ final Td=TdIntOpe)
+ "Tower fan speed when the waterside economizer is enabled and the chillers are running"
+ annotation (Placement(transformation(extent={{-40,70},{-20,90}})));
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Towers.FanSpeed.EnabledWSE.Subsequences.WSEOperation
+ wseOpe(
+ final fanSpeMin=fanSpeMin,
+ final fanSpeMax=fanSpeMax,
+ final fanSpeChe=fanSpeChe,
+ final chiWatCon=chiWatCon,
+ final k=kWSE,
+ final Ti=TiWSE,
+ final Td=TdWSE)
+ "Tower fan speed when the waterside economizer is running alone"
+ annotation (Placement(transformation(extent={{-40,-70},{-20,-50}})));
+ Buildings.Controls.OBC.CDL.Logical.MultiOr mulOr(final nin=nChi) "Logical or"
+ annotation (Placement(transformation(extent={{-40,30},{-20,50}})));
+ Buildings.Controls.OBC.CDL.Continuous.Switch swi "Logical switch"
+ annotation (Placement(transformation(extent={{0,30},{20,50}})));
+ Buildings.Controls.OBC.CDL.Continuous.Switch swi1 "Logical switch"
+ annotation (Placement(transformation(extent={{60,-10},{80,10}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant zer(final k=0) "Zero constant"
+ annotation (Placement(transformation(extent={{0,-40},{20,-20}})));
+
+equation
+ connect(intOpe.uChi, uChi)
+ annotation (Line(points={{-42,88},{-80,88},{-80,40},{-120,40}}, color={255,0,255}));
+ connect(intOpe.chiLoa, chiLoa)
+ annotation (Line(points={{-42,80},{-120,80}}, color={0,0,127}));
+ connect(wseOpe.uFanSpe,uFanSpe)
+ annotation (Line(points={{-42,-52},{-60,-52},{-60,-30},{-120,-30}}, color={0,0,127}));
+ connect(wseOpe.TChiWatSup, TChiWatSup)
+ annotation (Line(points={{-42,-60},{-120,-60}}, color={0,0,127}));
+ connect(wseOpe.TChiWatSupSet, TChiWatSupSet)
+ annotation (Line(points={{-42,-68},{-60,-68},{-60,-90},{-120,-90}}, color={0,0,127}));
+ connect(mulOr.y, swi.u2)
+ annotation (Line(points={{-18,40},{-2,40}}, color={255,0,255}));
+ connect(intOpe.ySpeSet, swi.u1)
+ annotation (Line(points={{-18,80},{-10,80},{-10,48},{-2,48}}, color={0,0,127}));
+ connect(wseOpe.ySpeSet, swi.u3)
+ annotation (Line(points={{-18,-60},{-10,-60},{-10,32},{-2,32}}, color={0,0,127}));
+ connect(uWse, swi1.u2)
+ annotation (Line(points={{-120,0},{58,0}}, color={255,0,255}));
+ connect(swi.y, swi1.u1)
+ annotation (Line(points={{22,40},{40,40},{40,8},{58,8}}, color={0,0,127}));
+ connect(zer.y, swi1.u3)
+ annotation (Line(points={{22,-30},{40,-30},{40,-8},{58,-8}}, color={0,0,127}));
+ connect(swi1.y,ySpeSet)
+ annotation (Line(points={{82,0},{120,0}}, color={0,0,127}));
+ connect(uChi, mulOr.u)
+ annotation (Line(points={{-120,40},{-42,40}}, color={255,0,255}));
+ connect(uWse, intOpe.uWse)
+ annotation (Line(points={{-120,0},{-60,0},{-60,72},{-42,72}}, color={255,0,255}));
+
+annotation (
+ defaultComponentName="towFanSpeWse",
+ Icon(coordinateSystem(preserveAspectRatio=false), graphics={
+ Rectangle(
+ extent={{-100,-100},{100,100}},
+ lineColor={0,0,127},
+ fillColor={255,255,255},
+ fillPattern=FillPattern.Solid),
+ Text(
+ extent={{-120,146},{100,108}},
+ textColor={0,0,255},
+ textString="%name"),
+ Polygon(
+ points={{-20,80},{20,80},{0,10},{-20,80}},
+ lineColor={28,108,200},
+ fillColor={240,240,240},
+ fillPattern=FillPattern.Solid),
+ Rectangle(
+ extent={{-40,10},{40,-10}},
+ lineColor={28,108,200},
+ fillColor={240,240,240},
+ fillPattern=FillPattern.Solid),
+ Polygon(
+ points={{0,-10},{-20,-80},{20,-80},{0,-10}},
+ lineColor={28,108,200},
+ fillColor={240,240,240},
+ fillPattern=FillPattern.Solid),
+ Rectangle(
+ extent={{40,-80},{76,-94}},
+ lineColor={200,200,200},
+ fillColor={240,240,240},
+ fillPattern=FillPattern.Solid),
+ Rectangle(
+ extent={{76,-78},{78,-96}},
+ lineColor={200,200,200},
+ fillColor={240,240,240},
+ fillPattern=FillPattern.Solid),
+ Rectangle(
+ extent={{78,-78},{80,-96}},
+ lineColor={200,200,200},
+ fillColor={240,240,240},
+ fillPattern=FillPattern.Solid),
+ Text(
+ extent={{-100,100},{-50,82}},
+ textColor={0,0,127},
+ textString="chiLoa"),
+ Text(
+ extent={{-100,70},{-64,54}},
+ textColor={255,0,255},
+ textString="uChi"),
+ Text(
+ extent={{-96,30},{-66,12}},
+ textColor={255,0,255},
+ textString="uWse"),
+ Text(
+ extent={{-96,-10},{-52,-26}},
+ textColor={0,0,127},
+ textString="uFanSpe"),
+ Text(
+ extent={{-96,-52},{-40,-66}},
+ textColor={0,0,127},
+ textString="TChiWatSup"),
+ Text(
+ extent={{-96,-82},{-24,-98}},
+ textColor={0,0,127},
+ textString="TChiWatSupSet"),
+ Text(
+ extent={{54,12},{98,-6}},
+ textColor={0,0,127},
+ textString="ySpeSet")}),
+ Diagram(coordinateSystem(preserveAspectRatio=false)),
+ Documentation(info="
+
+Block that outputs cooling tower fan speed ySpeSet
when waterside
+economizer is enabled. This is implemented
+according to ASHRAE RP-1711 Advanced Sequences of Operation for HVAC Systems Phase II –
+Central Plants and Hydronic Systems (Draft on March 23, 2020), section 5.2.12.2,
+item 4. It includes two subsequences:
+
+
+", revisions="
+
+-
+August 9, 2019, by Jianjun Hu:
+First implementation.
+
+
+"));
+end Controller;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Towers/FanSpeed/EnabledWSE/Subsequences/IntegratedOperation.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Towers/FanSpeed/EnabledWSE/Subsequences/IntegratedOperation.mo
new file mode 100644
index 00000000000..f639ff643ec
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Towers/FanSpeed/EnabledWSE/Subsequences/IntegratedOperation.mo
@@ -0,0 +1,313 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Towers.FanSpeed.EnabledWSE.Subsequences;
+block IntegratedOperation
+ "Tower fan speed control when the waterside economizer is enabled and the chillers are running"
+
+ parameter Integer nChi = 2 "Total number of chillers";
+ parameter Real chiMinCap[nChi](
+ each final unit="W",
+ final quantity=fill("HeatFlowRate", nChi))={1e4, 1e4}
+ "Minimum cyclining load below which chiller will begin cycling";
+ parameter Real fanSpeMin = 0.1 "Minimum cooling tower fan speed";
+ parameter Real fanSpeMax = 1 "Maximum cooling tower fan speed";
+ parameter Buildings.Controls.OBC.CDL.Types.SimpleController conTyp=
+ Buildings.Controls.OBC.CDL.Types.SimpleController.PI
+ "Type of controller"
+ annotation (Dialog(group="Load controller"));
+ parameter Real k=1 "Gain of controller"
+ annotation (Dialog(group="Load controller"));
+ parameter Real Ti(final quantity="Time", final unit="s")=0.5
+ "Time constant of integrator block"
+ annotation (Dialog(group="Load controller",
+ enable=conTyp==Buildings.Controls.OBC.CDL.Types.SimpleController.PI or
+ conTyp==Buildings.Controls.OBC.CDL.Types.SimpleController.PID));
+ parameter Real Td(final quantity="Time", final unit="s")=0.1
+ "Time constant of derivative block"
+ annotation (Dialog(group="Load controller",
+ enable=conTyp==Buildings.Controls.OBC.CDL.Types.SimpleController.PD or
+ conTyp==Buildings.Controls.OBC.CDL.Types.SimpleController.PID));
+ parameter Real yMax=1 "Upper limit of load controller output"
+ annotation (Dialog(group="Load controller"));
+ parameter Real yMin=0 "Lower limit of load controller output"
+ annotation (Dialog(group="Load controller"));
+ parameter Real intModTim(final quantity="Time", final unit="s")=600
+ "Threshold time after switching from WSE-only mode to integrated mode"
+ annotation (Dialog(tab="Advanced"));
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uChi[nChi]
+ "Vector of chillers proven on status: true=ON"
+ annotation (Placement(transformation(extent={{-200,80},{-160,120}}),
+ iconTransformation(extent={{-140,60},{-100,100}})));
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput chiLoa[nChi](
+ final unit=fill("W", nChi),
+ final quantity=fill("HeatFlowRate", nChi)) "Current load of each chiller"
+ annotation (Placement(transformation(extent={{-200,40},{-160,80}}),
+ iconTransformation(extent={{-140,-20},{-100,20}})));
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uWse
+ "Waterside economizer enabling status: true=ON"
+ annotation (Placement(transformation(extent={{-200,-20},{-160,20}}),
+ iconTransformation(extent={{-140,-100},{-100,-60}})));
+ Buildings.Controls.OBC.CDL.Interfaces.RealOutput ySpeSet(
+ final min=0,
+ final max=1,
+ final unit="1")
+ "Tower fan speed setpoint when WSE is enabled and there is any chiller running"
+ annotation (Placement(transformation(extent={{160,-100},{200,-60}}),
+ iconTransformation(extent={{100,-20},{140,20}})));
+
+protected
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant chiMinCycLoa[nChi](
+ final k=chiMinCap)
+ "Minimum cycling load of each chiller"
+ annotation (Placement(transformation(extent={{-120,130},{-100,150}})));
+ Buildings.Controls.OBC.CDL.Continuous.Switch swi[nChi] "Logical switch"
+ annotation (Placement(transformation(extent={{-60,90},{-40,110}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant zer[nChi](
+ final k=fill(0, nChi)) "Zero constant"
+ annotation (Placement(transformation(extent={{-120,70},{-100,90}})));
+ Buildings.Controls.OBC.CDL.Continuous.PIDWithReset loaCon(
+ final controllerType=conTyp,
+ final k=k,
+ final Ti=Ti,
+ final Td=Td,
+ final yMax=yMax,
+ final yMin=yMin,
+ final reverseActing=false,
+ final y_reset=yMax)
+ "Controller to maintain chiller load at the sum of minimum cycling load of operating chillers"
+ annotation (Placement(transformation(extent={{80,90},{100,110}})));
+ Buildings.Controls.OBC.CDL.Continuous.MultiSum totMinCycLoa(
+ final k=fill(1.1, nChi),
+ final nin=nChi)
+ "Sum of minimum cycling load for the operating chillers"
+ annotation (Placement(transformation(extent={{-20,90},{0,110}})));
+ Buildings.Controls.OBC.CDL.Continuous.MultiSum totLoa(
+ final nin=nChi) "Total load of operating chillers"
+ annotation (Placement(transformation(extent={{-20,50},{0,70}})));
+ Buildings.Controls.OBC.CDL.Continuous.MultiSum minCycLoa(final nin=nChi)
+ "Sum of minimum cycling load for all chillers"
+ annotation (Placement(transformation(extent={{-20,130},{0,150}})));
+ Buildings.Controls.OBC.CDL.Continuous.Divide div "Output first input divided by second input"
+ annotation (Placement(transformation(extent={{40,90},{60,110}})));
+ Buildings.Controls.OBC.CDL.Continuous.Divide div1 "Output first input divided by second input"
+ annotation (Placement(transformation(extent={{40,50},{60,70}})));
+ Buildings.Controls.OBC.CDL.Logical.MultiOr mulOr(final nin=nChi) "Logical or"
+ annotation (Placement(transformation(extent={{-120,10},{-100,30}})));
+ Buildings.Controls.OBC.CDL.Continuous.Line lin "Linear interpolation"
+ annotation (Placement(transformation(extent={{60,-50},{80,-30}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant zer1(
+ final k=yMin) "Load control minimum limit"
+ annotation (Placement(transformation(extent={{0,-30},{20,-10}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant one(
+ final k=yMax)
+ "Load control maximum limit"
+ annotation (Placement(transformation(extent={{-40,-70},{-20,-50}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant minTowSpe(
+ final k=fanSpeMin)
+ "Minimum speed"
+ annotation (Placement(transformation(extent={{-40,-30},{-20,-10}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant maxTowSpe(
+ final k=fanSpeMax)
+ "Maximum tower fan speed"
+ annotation (Placement(transformation(extent={{0,-70},{20,-50}})));
+ Buildings.Controls.OBC.CDL.Logical.Edge edg "Output true at the moment when input becomes true"
+ annotation (Placement(transformation(extent={{-60,-150},{-40,-130}})));
+ Buildings.Controls.OBC.CDL.Logical.And and1
+ "Check if it switches from WSE only mode to integrated operation mode"
+ annotation (Placement(transformation(extent={{0,-120},{20,-100}})));
+ Buildings.Controls.OBC.CDL.Continuous.Switch fanSpe "Logical switch"
+ annotation (Placement(transformation(extent={{120,-90},{140,-70}})));
+ Buildings.Controls.OBC.CDL.Logical.Latch lat
+ "Logical latch, maintain ON signal until condition changes"
+ annotation (Placement(transformation(extent={{40,-120},{60,-100}})));
+ Buildings.Controls.OBC.CDL.Logical.Timer intOpeTim(
+ final t=intModTim)
+ "Count the time after plant switching from WSE-only mode to integrated operation mode"
+ annotation (Placement(transformation(extent={{80,-120},{100,-100}})));
+ Buildings.Controls.OBC.CDL.Logical.FallingEdge falEdg "Output true when input becomes false"
+ annotation (Placement(transformation(extent={{-120,-70},{-100,-50}})));
+ Buildings.Controls.OBC.CDL.Logical.And3 and3 "Logical and"
+ annotation (Placement(transformation(extent={{-60,10},{-40,30}})));
+ Buildings.Controls.OBC.CDL.Logical.Pre pre
+ "Breaks algebraic loops by an infinitesimal small time delay"
+ annotation (Placement(transformation(extent={{0,-150},{20,-130}})));
+
+equation
+ connect(uChi, swi.u2)
+ annotation (Line(points={{-180,100},{-62,100}}, color={255,0,255}));
+ connect(chiMinCycLoa.y, swi.u1)
+ annotation (Line(points={{-98,140},{-80,140},{-80,108},{-62,108}}, color={0,0,127}));
+ connect(zer.y, swi.u3)
+ annotation (Line(points={{-98,80},{-80,80},{-80,92},{-62,92}}, color={0,0,127}));
+ connect(minCycLoa.y, div.u2)
+ annotation (Line(points={{2,140},{20,140},{20,94},{38,94}}, color={0,0,127}));
+ connect(minCycLoa.y, div1.u2)
+ annotation (Line(points={{2,140},{20,140},{20,54},{38,54}}, color={0,0,127}));
+ connect(totLoa.y, div1.u1)
+ annotation (Line(points={{2,60},{10,60},{10,66},{38,66}}, color={0,0,127}));
+ connect(totMinCycLoa.y, div.u1)
+ annotation (Line(points={{2,100},{10,100},{10,106},{38,106}}, color={0,0,127}));
+ connect(div.y, loaCon.u_s)
+ annotation (Line(points={{62,100},{78,100}}, color={0,0,127}));
+ connect(div1.y, loaCon.u_m)
+ annotation (Line(points={{62,60},{90,60},{90,88}}, color={0,0,127}));
+ connect(loaCon.y, lin.u)
+ annotation (Line(points={{102,100},{120,100},{120,0},{40,0},{40,-40},
+ {58,-40}}, color={0,0,127}));
+ connect(zer1.y, lin.x1)
+ annotation (Line(points={{22,-20},{30,-20},{30,-32},{58,-32}}, color={0,0,127}));
+ connect(minTowSpe.y, lin.f1)
+ annotation (Line(points={{-18,-20},{-10,-20},{-10,-36},{58,-36}}, color={0,0,127}));
+ connect(maxTowSpe.y, lin.f2)
+ annotation (Line(points={{22,-60},{30,-60},{30,-48},{58,-48}}, color={0,0,127}));
+ connect(one.y, lin.x2)
+ annotation (Line(points={{-18,-60},{-10,-60},{-10,-44},{58,-44}}, color={0,0,127}));
+ connect(mulOr.y, edg.u)
+ annotation (Line(points={{-98,20},{-90,20},{-90,-140},{-62,-140}}, color={255,0,255}));
+ connect(uWse, and1.u1)
+ annotation (Line(points={{-180,0},{-70,0},{-70,-110},{-2,-110}}, color={255,0,255}));
+ connect(edg.y, and1.u2)
+ annotation (Line(points={{-38,-140},{-20,-140},{-20,-118},{-2,-118}}, color={255,0,255}));
+ connect(and1.y, lat.u)
+ annotation (Line(points={{22,-110},{38,-110}}, color={255,0,255}));
+ connect(lat.y, intOpeTim.u)
+ annotation (Line(points={{62,-110},{78,-110}}, color={255,0,255}));
+ connect(lat.y, fanSpe.u2)
+ annotation (Line(points={{62,-110},{70,-110},{70,-80},{118,-80}}, color={255,0,255}));
+ connect(lin.y, fanSpe.u3)
+ annotation (Line(points={{82,-40},{100,-40},{100,-88},{118,-88}}, color={0,0,127}));
+ connect(maxTowSpe.y, fanSpe.u1)
+ annotation (Line(points={{22,-60},{30,-60},{30,-72},{118,-72}}, color={0,0,127}));
+ connect(fanSpe.y,ySpeSet)
+ annotation (Line(points={{142,-80},{180,-80}}, color={0,0,127}));
+ connect(chiMinCycLoa.y, minCycLoa.u)
+ annotation (Line(points={{-98,140},{-22,140}}, color={0,0,127}));
+ connect(swi.y, totMinCycLoa.u)
+ annotation (Line(points={{-38,100},{-22,100}}, color={0,0,127}));
+ connect(chiLoa, totLoa.u)
+ annotation (Line(points={{-180,60},{-22,60}}, color={0,0,127}));
+ connect(uChi, mulOr.u)
+ annotation (Line(points={{-180,100},{-140,100},{-140,20},{-122,20}},
+ color={255,0,255}));
+ connect(lat.y, falEdg.u)
+ annotation (Line(points={{62,-110},{70,-110},{70,-80},{-140,-80},{-140,-60},
+ {-122,-60}}, color={255,0,255}));
+ connect(mulOr.y, and3.u1)
+ annotation (Line(points={{-98,20},{-90,20},{-90,28},{-62,28}}, color={255,0,255}));
+ connect(falEdg.y, and3.u2)
+ annotation (Line(points={{-98,-60},{-80,-60},{-80,20},{-62,20}},
+ color={255,0,255}));
+ connect(uWse, and3.u3)
+ annotation (Line(points={{-180,0},{-70,0},{-70,12},{-62,12}}, color={255,0,255}));
+ connect(and3.y, loaCon.trigger)
+ annotation (Line(points={{-38,20},{84,20},{84,88}}, color={255,0,255}));
+ connect(pre.y, lat.clr)
+ annotation (Line(points={{22,-140},{30,-140},{30,-116},{38,-116}},
+ color={255,0,255}));
+ connect(intOpeTim.passed, pre.u)
+ annotation (Line(points={{102,-118},{120,-118},{120,-154},{-10,-154},
+ {-10,-140},{-2,-140}}, color={255,0,255}));
+
+annotation (
+ defaultComponentName="wseTowSpeIntOpe",
+ Icon(coordinateSystem(preserveAspectRatio=false, extent={{-100,-100},
+ {100,100}}), graphics={
+ Rectangle(
+ extent={{-100,-100},{100,100}},
+ lineColor={0,0,127},
+ fillColor={255,255,255},
+ fillPattern=FillPattern.Solid),
+ Text(
+ extent={{-120,146},{100,108}},
+ textColor={0,0,255},
+ textString="%name"),
+ Rectangle(
+ extent={{-40,10},{40,-10}},
+ lineColor={28,108,200},
+ fillColor={240,240,240},
+ fillPattern=FillPattern.Solid),
+ Polygon(
+ points={{-20,80},{20,80},{0,10},{-20,80}},
+ lineColor={28,108,200},
+ fillColor={240,240,240},
+ fillPattern=FillPattern.Solid),
+ Polygon(
+ points={{0,-10},{-20,-80},{20,-80},{0,-10}},
+ lineColor={28,108,200},
+ fillColor={240,240,240},
+ fillPattern=FillPattern.Solid),
+ Rectangle(
+ extent={{40,-40},{80,-46}},
+ lineColor={200,200,200},
+ fillColor={240,240,240},
+ fillPattern=FillPattern.Solid),
+ Rectangle(
+ extent={{40,-56},{80,-68}},
+ lineColor={200,200,200},
+ fillColor={240,240,240},
+ fillPattern=FillPattern.Solid),
+ Rectangle(
+ extent={{44,-46},{48,-56}},
+ lineColor={200,200,200},
+ fillColor={240,240,240},
+ fillPattern=FillPattern.Solid),
+ Rectangle(
+ extent={{72,-46},{76,-56}},
+ lineColor={200,200,200},
+ fillColor={240,240,240},
+ fillPattern=FillPattern.Solid),
+ Rectangle(
+ extent={{40,-80},{76,-94}},
+ lineColor={200,200,200},
+ fillColor={240,240,240},
+ fillPattern=FillPattern.Solid),
+ Rectangle(
+ extent={{76,-78},{78,-96}},
+ lineColor={200,200,200},
+ fillColor={240,240,240},
+ fillPattern=FillPattern.Solid),
+ Rectangle(
+ extent={{78,-78},{80,-96}},
+ lineColor={200,200,200},
+ fillColor={240,240,240},
+ fillPattern=FillPattern.Solid)}),
+ Diagram(coordinateSystem(preserveAspectRatio=false,
+ extent={{-160,-160},{160,160}})),
+Documentation(info="
+
+Block that outputs cooling tower fan speed ySpeSet
when both waterside
+economizer and chillers are enabled, i.e. integrated operation. This is implemented
+according to ASHRAE RP-1711 Advanced Sequences of Operation for HVAC Systems Phase II –
+Central Plants and Hydronic Systems (Draft on March 23, 2020), section 5.2.12.2,
+item 4.a.
+
+
+When the waterside economizer is enabled (uWse=true
) and chillers
+are running (uChi=true
):
+
+
+-
+Fan speed shall be equal to waterside economizer tower maximum speed.
+
+-
+The waterside economizer tower maximum speed shall be reset by a direct acting PID
+loop maintaining the chiller load at 110% of the sum of minimum cycling load for
+the operating chillers. Map the tower maximum speed from minimum speed
+
fanSpeMin
at 0% loop output to 100% speed at 100% loop output.
+Bias the loop to launch from 100% output.
+
+-
+When starting integrated operation after previously operating with only the waterside
+economizer, hold the tower maximum speed at 100% for 10 minutes (
intModTim
)
+to give the chiller time to get up to speed and produce at least minimum cycling
+load, then enable the loop.
+
+
+", revisions="
+
+-
+August 9, 2019, by Jianjun Hu:
+First implementation.
+
+
+"));
+end IntegratedOperation;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Towers/FanSpeed/EnabledWSE/Subsequences/Validation/IntegratedOperation.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Towers/FanSpeed/EnabledWSE/Subsequences/Validation/IntegratedOperation.mo
new file mode 100644
index 00000000000..1708fecf511
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Towers/FanSpeed/EnabledWSE/Subsequences/Validation/IntegratedOperation.mo
@@ -0,0 +1,81 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Towers.FanSpeed.EnabledWSE.Subsequences.Validation;
+model IntegratedOperation
+ "Validates cooling tower fan speed control sequence for integrated operation of chillers and WSE"
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Towers.FanSpeed.EnabledWSE.Subsequences.IntegratedOperation
+ intOpe(final nChi=2, final chiMinCap={1e4,1e4})
+ "Tower fan speed control when chiller and waterside economizer are running"
+ annotation (Placement(transformation(extent={{70,-40},{90,-20}})));
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant wseSta(final k=true) "WSE status"
+ annotation (Placement(transformation(extent={{20,-90},{40,-70}})));
+ Buildings.Controls.OBC.CDL.Logical.Sources.Pulse booPul(
+ final width=0.05,
+ final period=3600) "Boolean pulse"
+ annotation (Placement(transformation(extent={{-80,70},{-60,90}})));
+ Buildings.Controls.OBC.CDL.Logical.Not chiSta "First chiller status"
+ annotation (Placement(transformation(extent={{-40,70},{-20,90}})));
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant chiSta1(final k=false)
+ "Second chiller status"
+ annotation (Placement(transformation(extent={{-40,40},{-20,60}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant con(final k=0)
+ "Zero constant"
+ annotation (Placement(transformation(extent={{-80,-70},{-60,-50}})));
+ Buildings.Controls.OBC.CDL.Continuous.Switch swi "Logical switch"
+ annotation (Placement(transformation(extent={{0,-40},{20,-20}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Sine sin(
+ final amplitude=0.2*1e4,
+ final freqHz=1/1200,
+ final offset=1.1*1e4,
+ final startTime=180) "Chiller load"
+ annotation (Placement(transformation(extent={{-80,-10},{-60,10}})));
+
+equation
+ connect(booPul.y, chiSta.u)
+ annotation (Line(points={{-58,80},{-42,80}}, color={255,0,255}));
+ connect(chiSta.y, intOpe.uChi[1])
+ annotation (Line(points={{-18,80},{60,80},{60,-23},{68,-23}}, color={255,0,255}));
+ connect(chiSta1.y, intOpe.uChi[2])
+ annotation (Line(points={{-18,50},{60,50},{60,-21},{68,-21}}, color={255,0,255}));
+ connect(con.y, intOpe.chiLoa[2])
+ annotation (Line(points={{-58,-60},{40,-60},{40,-29},{68,-29}}, color={0,0,127}));
+ connect(chiSta.y, swi.u2)
+ annotation (Line(points={{-18,80},{60,80},{60,0},{-20,0},{-20,-30},
+ {-2,-30}}, color={255,0,255}));
+ connect(con.y, swi.u3)
+ annotation (Line(points={{-58,-60},{-20,-60},{-20,-38},{-2,-38}}, color={0,0,127}));
+ connect(sin.y, swi.u1)
+ annotation (Line(points={{-58,0},{-40,0},{-40,-22},{-2,-22}}, color={0,0,127}));
+ connect(swi.y, intOpe.chiLoa[1])
+ annotation (Line(points={{22,-30},{46,-30},{46,-31},{68,-31}}, color={0,0,127}));
+ connect(wseSta.y, intOpe.uWse) annotation (Line(points={{42,-80},{60,-80},{60,
+ -38},{68,-38}}, color={255,0,255}));
+
+annotation (experiment(StopTime=3600.0, Tolerance=1e-06),
+ __Dymola_Commands(file="modelica://Buildings/Resources/Scripts/Dymola/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Towers/FanSpeed/EnabledWSE/Subsequences/Validation/IntegratedOperation.mos"
+ "Simulate and plot"),
+ Documentation(info="
+
+This example validates
+
+Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Towers.FanSpeed.EnabledWSE.Subsequences.IntegratedOperation.
+
+", revisions="
+
+-
+August 12, 2019, by Jianjun Hu:
+First implementation.
+
+
+"),
+ Icon(coordinateSystem(preserveAspectRatio=false), graphics={
+ Ellipse(lineColor = {75,138,73},
+ fillColor={255,255,255},
+ fillPattern = FillPattern.Solid,
+ extent = {{-100,-100},{100,100}}),
+ Polygon(lineColor = {0,0,255},
+ fillColor = {75,138,73},
+ pattern = LinePattern.None,
+ fillPattern = FillPattern.Solid,
+ points = {{-36,60},{64,0},{-36,-60},{-36,60}})}), Diagram(
+ coordinateSystem(preserveAspectRatio=false)));
+end IntegratedOperation;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Towers/FanSpeed/EnabledWSE/Subsequences/Validation/WSEOperation.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Towers/FanSpeed/EnabledWSE/Subsequences/Validation/WSEOperation.mo
new file mode 100644
index 00000000000..88eac484b41
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Towers/FanSpeed/EnabledWSE/Subsequences/Validation/WSEOperation.mo
@@ -0,0 +1,94 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Towers.FanSpeed.EnabledWSE.Subsequences.Validation;
+model WSEOperation
+ "Validates cooling tower fan speed control sequence for WSE running only"
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Towers.FanSpeed.EnabledWSE.Subsequences.WSEOperation
+ wseOpe(
+ final fanSpeMin=0.1,
+ final fanSpeMax=1,
+ final chiWatCon=Buildings.Controls.OBC.CDL.Types.SimpleController.PI)
+ "Tower fan speed control when there is only waterside economizer is running"
+ annotation (Placement(transformation(extent={{60,-10},{80,10}})));
+ Buildings.Controls.OBC.CDL.Logical.Sources.Pulse booPul(
+ final width=0.05,
+ final period=3600) "Boolean pulse"
+ annotation (Placement(transformation(extent={{-80,70},{-60,90}})));
+ Buildings.Controls.OBC.CDL.Logical.Not fanSpeSwi "Two fan speed switch"
+ annotation (Placement(transformation(extent={{-40,70},{-20,90}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Sine chiSup(
+ final amplitude=0.5,
+ final freqHz=1/1800,
+ final offset=273.15 + 7.1) "Chilled water supply temperature"
+ annotation (Placement(transformation(extent={{-80,-40},{-60,-20}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant chiSupSet(
+ final k=273.15 + 7)
+ "Chilled water supply water setpoint"
+ annotation (Placement(transformation(extent={{20,-90},{40,-70}})));
+ Buildings.Controls.OBC.CDL.Continuous.Switch swi "Logical switch"
+ annotation (Placement(transformation(extent={{20,10},{40,30}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant con(final k=0.1)
+ "Minimum fan speed"
+ annotation (Placement(transformation(extent={{-80,-10},{-60,10}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Ramp ram(
+ final height=0.2,
+ final duration=3600,
+ final offset=0.1,
+ final startTime=1750) "Tower speed"
+ annotation (Placement(transformation(extent={{-80,30},{-60,50}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Ramp ram1(
+ final height=3,
+ final duration=3600,
+ final startTime=1500) "Ramp"
+ annotation (Placement(transformation(extent={{-80,-80},{-60,-60}})));
+ Buildings.Controls.OBC.CDL.Continuous.Add add2 "Add real inputs"
+ annotation (Placement(transformation(extent={{-20,-60},{0,-40}})));
+
+equation
+ connect(booPul.y, fanSpeSwi.u)
+ annotation (Line(points={{-58,80},{-42,80}}, color={255,0,255}));
+ connect(con.y, swi.u3)
+ annotation (Line(points={{-58,0},{-20,0},{-20,12},{18,12}}, color={0,0,127}));
+ connect(fanSpeSwi.y, swi.u2)
+ annotation (Line(points={{-18,80},{0,80},{0,20},{18,20}}, color={255,0,255}));
+ connect(swi.y,wseOpe.uFanSpe)
+ annotation (Line(points={{42,20},{50,20},{50,8},{58,8}}, color={0,0,127}));
+ connect(chiSupSet.y, wseOpe.TChiWatSupSet)
+ annotation (Line(points={{42,-80},{50,-80},{50,-8},{58,-8}}, color={0,0,127}));
+ connect(ram.y, swi.u1)
+ annotation (Line(points={{-58,40},{-20,40},{-20,28},{18,28}}, color={0,0,127}));
+ connect(chiSup.y, add2.u1)
+ annotation (Line(points={{-58,-30},{-40,-30},{-40,-44},{-22,-44}}, color={0,0,127}));
+ connect(ram1.y, add2.u2)
+ annotation (Line(points={{-58,-70},{-40,-70},{-40,-56},{-22,-56}}, color={0,0,127}));
+ connect(add2.y, wseOpe.TChiWatSup)
+ annotation (Line(points={{2,-50},{20,-50},{20,0},{58,0}}, color={0,0,127}));
+
+annotation (experiment(StopTime=3600.0, Tolerance=1e-06),
+ __Dymola_Commands(file="modelica://Buildings/Resources/Scripts/Dymola/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Towers/FanSpeed/EnabledWSE/Subsequences/Validation/WSEOperation.mos"
+ "Simulate and plot"),
+ Documentation(info="
+
+This example validates
+
+Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Towers.FanSpeed.EnabledWSE.Subsequences.WSEOperation.
+
+", revisions="
+
+-
+August 12, 2019, by Jianjun Hu:
+First implementation.
+
+
+"),
+ Icon(coordinateSystem(preserveAspectRatio=false), graphics={
+ Ellipse(lineColor = {75,138,73},
+ fillColor={255,255,255},
+ fillPattern = FillPattern.Solid,
+ extent = {{-100,-100},{100,100}}),
+ Polygon(lineColor = {0,0,255},
+ fillColor = {75,138,73},
+ pattern = LinePattern.None,
+ fillPattern = FillPattern.Solid,
+ points = {{-36,60},{64,0},{-36,-60},{-36,60}})}), Diagram(
+ coordinateSystem(preserveAspectRatio=false)));
+end WSEOperation;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Towers/FanSpeed/EnabledWSE/Subsequences/Validation/package.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Towers/FanSpeed/EnabledWSE/Subsequences/Validation/package.mo
new file mode 100644
index 00000000000..a9f95982c91
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Towers/FanSpeed/EnabledWSE/Subsequences/Validation/package.mo
@@ -0,0 +1,37 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Towers.FanSpeed.EnabledWSE.Subsequences;
+package Validation "Collection of validation models"
+
+annotation (Icon(graphics={
+ Rectangle(
+ lineColor={200,200,200},
+ fillColor={248,248,248},
+ fillPattern=FillPattern.HorizontalCylinder,
+ extent={{-100.0,-100.0},{100.0,100.0}},
+ radius=25.0),
+ Rectangle(
+ lineColor={128,128,128},
+ extent={{-100.0,-100.0},{100.0,100.0}},
+ radius=25.0),
+ Polygon(
+ origin={8.0,14.0},
+ lineColor={78,138,73},
+ fillColor={78,138,73},
+ pattern=LinePattern.None,
+ fillPattern=FillPattern.Solid,
+ points={{-58.0,46.0},{42.0,-14.0},{-58.0,-74.0},{-58.0,46.0}})}),
+preferredView="info", Documentation(info="
+
+This package contains validation models for the classes in
+
+Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Towers.FanSpeed.EnabledWSE.Subsequences.
+
+
+Note that most validation models contain simple input data
+which may not be realistic, but for which the correct
+output can be obtained through an analytic solution.
+The examples plot various outputs, which have been verified against these
+solutions. These model outputs are stored as reference data and
+used for continuous validation whenever models in the library change.
+
+"));
+end Validation;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Towers/FanSpeed/EnabledWSE/Subsequences/Validation/package.order b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Towers/FanSpeed/EnabledWSE/Subsequences/Validation/package.order
new file mode 100644
index 00000000000..15a6b4c37ee
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Towers/FanSpeed/EnabledWSE/Subsequences/Validation/package.order
@@ -0,0 +1,2 @@
+IntegratedOperation
+WSEOperation
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Towers/FanSpeed/EnabledWSE/Subsequences/WSEOperation.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Towers/FanSpeed/EnabledWSE/Subsequences/WSEOperation.mo
new file mode 100644
index 00000000000..bb1a2676019
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Towers/FanSpeed/EnabledWSE/Subsequences/WSEOperation.mo
@@ -0,0 +1,305 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Towers.FanSpeed.EnabledWSE.Subsequences;
+block WSEOperation
+ "Tower fan speed control when the waterside economizer is running alone"
+
+ parameter Real fanSpeMin=0.1 "Minimum tower fan speed";
+ parameter Real fanSpeMax=1 "Maximum tower fan speed";
+ parameter Real fanSpeChe = 0.05 "Lower threshold value to check fan speed";
+ parameter Buildings.Controls.OBC.CDL.Types.SimpleController chiWatCon=
+ Buildings.Controls.OBC.CDL.Types.SimpleController.PI
+ "Type of controller"
+ annotation (Dialog(group="Chilled water controller"));
+ parameter Real k=1 "Gain of controller"
+ annotation (Dialog(group="Chilled water controller"));
+ parameter Real Ti(final quantity="Time", final unit="s")=0.5
+ "Time constant of integrator block"
+ annotation (Dialog(group="Chilled water controller",
+ enable=chiWatCon==Buildings.Controls.OBC.CDL.Types.SimpleController.PI or
+ chiWatCon==Buildings.Controls.OBC.CDL.Types.SimpleController.PID));
+ parameter Real Td(final quantity="Time", final unit="s")=0.1
+ "Time constant of derivative block"
+ annotation (Dialog(group="Chilled water controller",
+ enable=chiWatCon==Buildings.Controls.OBC.CDL.Types.SimpleController.PD or
+ chiWatCon==Buildings.Controls.OBC.CDL.Types.SimpleController.PID));
+ parameter Real yMax=1
+ "Upper limit of chilled water controller output"
+ annotation (Dialog(group="Chilled water controller"));
+ parameter Real yMin=0
+ "Lower limit of chilled water controller output"
+ annotation (Dialog(group="Chilled water controller"));
+ parameter Real cheCycOffTim(final quantity="Time", final unit="s")=300
+ "Threshold time for checking if fan should cycle off"
+ annotation (Dialog(tab="Advanced"));
+ parameter Real minCycOffTim(final quantity="Time", final unit="s")=180
+ "Minimum time of fan cycling off"
+ annotation (Dialog(tab="Advanced"));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput uFanSpe(
+ final unit="1") "Measured tower fan speed"
+ annotation (Placement(transformation(extent={{-180,80},{-140,120}}),
+ iconTransformation(extent={{-140,60},{-100,100}})));
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput TChiWatSup(
+ final unit="K",
+ displayUnit="degC",
+ final quantity="ThermodynamicTemperature")
+ "Chilled water supply temperature"
+ annotation (Placement(transformation(extent={{-180,-60},{-140,-20}}),
+ iconTransformation(extent={{-140,-20},{-100,20}})));
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput TChiWatSupSet(
+ final unit="K",
+ displayUnit="degC",
+ final quantity="ThermodynamicTemperature")
+ "Chilled water supply temperature setpoint"
+ annotation (Placement(transformation(extent={{-180,-140},{-140,-100}}),
+ iconTransformation(extent={{-140,-100},{-100,-60}})));
+ Buildings.Controls.OBC.CDL.Interfaces.RealOutput ySpeSet(
+ final min=0,
+ final max=1,
+ final unit="1")
+ "Tower fan speed setpoint when WSE is enabled and there is any chiller running"
+ annotation (Placement(transformation(extent={{140,40},{180,80}}),
+ iconTransformation(extent={{100,-20},{140,20}})));
+
+protected
+ Buildings.Controls.OBC.CDL.Logical.And and2 "Logical and"
+ annotation (Placement(transformation(extent={{40,130},{60,150}})));
+ Buildings.Controls.OBC.CDL.Logical.Timer tim(
+ final t=cheCycOffTim)
+ "Count the time when fan is at minimum speed and the chilled water supply temperature drops below setpoint"
+ annotation (Placement(transformation(extent={{80,130},{100,150}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant minTowSpe(
+ final k=fanSpeMin) "Minimum tower speed"
+ annotation (Placement(transformation(extent={{-120,10},{-100,30}})));
+ Buildings.Controls.OBC.CDL.Continuous.Subtract dFanSpe
+ "Different between measured fan speed and the minimum fan speed"
+ annotation (Placement(transformation(extent={{-90,90},{-70,110}})));
+ Buildings.Controls.OBC.CDL.Continuous.Hysteresis hys2(
+ final uLow=fanSpeChe,
+ final uHigh=fanSpeChe + 0.005)
+ "Check if tower fan speed is greater than minimum speed"
+ annotation (Placement(transformation(extent={{-40,90},{-20,110}})));
+ Buildings.Controls.OBC.CDL.Logical.Not not2 "Logical not"
+ annotation (Placement(transformation(extent={{0,90},{20,110}})));
+ Buildings.Controls.OBC.CDL.Continuous.Subtract dTChiSup
+ "Difference between chilled water supply temperature and its setpoint"
+ annotation (Placement(transformation(extent={{-110,-50},{-90,-30}})));
+ Buildings.Controls.OBC.CDL.Continuous.Hysteresis hys1(
+ final uLow=-0.1,
+ final uHigh=0.1)
+ "Check if chilled water supply temperature is greater than setpoint"
+ annotation (Placement(transformation(extent={{-40,130},{-20,150}})));
+ Buildings.Controls.OBC.CDL.Logical.Not not1 "Logical not"
+ annotation (Placement(transformation(extent={{0,130},{20,150}})));
+ Buildings.Controls.OBC.CDL.Logical.Edge edg
+ "Output true at the moment when input becomes true"
+ annotation (Placement(transformation(extent={{-40,50},{-20,70}})));
+ Buildings.Controls.OBC.CDL.Logical.Latch lat
+ "Logical latch, maintain ON signal until condition changes"
+ annotation (Placement(transformation(extent={{40,50},{60,70}})));
+ Buildings.Controls.OBC.CDL.Continuous.Switch swi "Logical switch"
+ annotation (Placement(transformation(extent={{100,50},{120,70}})));
+ Buildings.Controls.OBC.CDL.Continuous.Hysteresis hys3(
+ final uLow=0.5*5/9,
+ final uHigh=1.5*5/9)
+ "Check if chilled water supply temperature is greater than setpoint by a threshold delta"
+ annotation (Placement(transformation(extent={{-40,-50},{-20,-30}})));
+ Buildings.Controls.OBC.CDL.Continuous.PIDWithReset chiWatTemCon(
+ final controllerType=chiWatCon,
+ final k=k,
+ final Ti=Ti,
+ final Td=Td,
+ final yMax=yMax,
+ final yMin=yMin,
+ final reverseActing=false,
+ final y_reset=0)
+ "Controller to maintain chilled water supply temperature at setpoint"
+ annotation (Placement(transformation(extent={{-60,-130},{-40,-110}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant zer(
+ final k=yMin)
+ "Minimum output from chilled water supply temperature control loop, default to be zero"
+ annotation (Placement(transformation(extent={{40,-110},{60,-90}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant one(
+ final k=yMax)
+ "Maximum output from chilled water supply temperature control loop"
+ annotation (Placement(transformation(extent={{-20,-150},{0,-130}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant maxTowSpe(
+ final k=fanSpeMax)
+ "Maximum tower fan speed"
+ annotation (Placement(transformation(extent={{40,-150},{60,-130}})));
+ Buildings.Controls.OBC.CDL.Continuous.Line lin
+ "Output the value of the input x along a line specified by two points"
+ annotation (Placement(transformation(extent={{100,-130},{120,-110}})));
+ Buildings.Controls.OBC.CDL.Logical.Edge edg1
+ "Output true at the moment when input becomes true"
+ annotation (Placement(transformation(extent={{40,-30},{60,-10}})));
+ Buildings.Controls.OBC.CDL.Logical.TrueDelay truDel(
+ final delayTime=minCycOffTim)
+ "Minimum time of fan cycling off"
+ annotation (Placement(transformation(extent={{0,10},{20,30}})));
+ Buildings.Controls.OBC.CDL.Logical.And and1 "Logical and"
+ annotation (Placement(transformation(extent={{0,-30},{20,-10}})));
+ Buildings.Controls.OBC.CDL.Logical.Latch lat1
+ "Logical latch, maintain ON signal until condition changes"
+ annotation (Placement(transformation(extent={{-40,10},{-20,30}})));
+ Buildings.Controls.OBC.CDL.Logical.Pre pre
+ "Breaks algebraic loops by an infinitesimal small time delay"
+ annotation (Placement(transformation(extent={{40,-60},{60,-40}})));
+
+equation
+ connect(uFanSpe, dFanSpe.u1)
+ annotation (Line(points={{-160,100},{-126,100},{-126,106},{-92,106}},
+ color={0,0,127}));
+ connect(dFanSpe.y, hys2.u)
+ annotation (Line(points={{-68,100},{-42,100}}, color={0,0,127}));
+ connect(hys2.y, not2.u)
+ annotation (Line(points={{-18,100},{-2,100}}, color={255,0,255}));
+ connect(TChiWatSup, dTChiSup.u1)
+ annotation (Line(points={{-160,-40},{-136,-40},{-136,-34},{-112,-34}},
+ color={0,0,127}));
+ connect(TChiWatSupSet, dTChiSup.u2)
+ annotation (Line(points={{-160,-120},{-112,-120},{-112,-46}},
+ color={0,0,127}));
+ connect(hys1.y, not1.u)
+ annotation (Line(points={{-18,140},{-2,140}}, color={255,0,255}));
+ connect(dTChiSup.y, hys1.u)
+ annotation (Line(points={{-88,-40},{-60,-40},{-60,140},{-42,140}},
+ color={0,0,127}));
+ connect(not1.y, and2.u1)
+ annotation (Line(points={{22,140},{38,140}}, color={255,0,255}));
+ connect(not2.y, and2.u2)
+ annotation (Line(points={{22,100},{30,100},{30,132},{38,132}}, color={255,0,255}));
+ connect(and2.y, tim.u)
+ annotation (Line(points={{62,140},{78,140}}, color={255,0,255}));
+ connect(edg.y, lat.u)
+ annotation (Line(points={{-18,60},{38,60}}, color={255,0,255}));
+ connect(lat.y, swi.u2)
+ annotation (Line(points={{62,60},{98,60}}, color={255,0,255}));
+ connect(dTChiSup.y, hys3.u)
+ annotation (Line(points={{-88,-40},{-42,-40}}, color={0,0,127}));
+ connect(lat.y, chiWatTemCon.trigger)
+ annotation (Line(points={{62,60},{74,60},{74,-80},{-70,-80},{-70,-140},
+ {-56,-140},{-56,-132}}, color={255,0,255}));
+ connect(zer.y, lin.x1)
+ annotation (Line(points={{62,-100},{80,-100},{80,-112},{98,-112}}, color={0,0,127}));
+ connect(chiWatTemCon.y, lin.u)
+ annotation (Line(points={{-38,-120},{98,-120}}, color={0,0,127}));
+ connect(one.y, lin.x2)
+ annotation (Line(points={{2,-140},{20,-140},{20,-124},{98,-124}}, color={0,0,127}));
+ connect(maxTowSpe.y, lin.f2)
+ annotation (Line(points={{62,-140},{80,-140},{80,-128},{98,-128}}, color={0,0,127}));
+ connect(lin.y, swi.u3)
+ annotation (Line(points={{122,-120},{130,-120},{130,-60},{86,-60},{86,52},
+ {98,52}}, color={0,0,127}));
+ connect(swi.y,ySpeSet)
+ annotation (Line(points={{122,60},{160,60}}, color={0,0,127}));
+ connect(minTowSpe.y, dFanSpe.u2)
+ annotation (Line(points={{-98,20},{-92,20},{-92,94}}, color={0,0,127}));
+ connect(minTowSpe.y, lin.f1)
+ annotation (Line(points={{-98,20},{-80,20},{-80,-100},{20,-100},{20,-116},
+ {98,-116}},color={0,0,127}));
+ connect(hys3.y, and1.u2)
+ annotation (Line(points={{-18,-40},{-10,-40},{-10,-28},{-2,-28}},
+ color={255,0,255}));
+ connect(and1.y, edg1.u)
+ annotation (Line(points={{22,-20},{38,-20}}, color={255,0,255}));
+ connect(edg1.y, lat.clr)
+ annotation (Line(points={{62,-20},{68,-20},{68,40},{30,40},{30,54},{38,54}},
+ color={255,0,255}));
+ connect(zer.y, swi.u1)
+ annotation (Line(points={{62,-100},{80,-100},{80,68},{98,68}}, color={0,0,127}));
+ connect(edg.y, lat1.u)
+ annotation (Line(points={{-18,60},{0,60},{0,40},{-50,40},{-50,20},{-42,20}},
+ color={255,0,255}));
+ connect(lat1.y, truDel.u)
+ annotation (Line(points={{-18,20},{-2,20}}, color={255,0,255}));
+ connect(and1.y, pre.u)
+ annotation (Line(points={{22,-20},{30,-20},{30,-50},{38,-50}}, color={255,0,255}));
+ connect(pre.y, lat1.clr)
+ annotation (Line(points={{62,-50},{68,-50},{68,-70},{-50,-70},{-50,14},
+ {-42,14}}, color={255,0,255}));
+ connect(truDel.y, and1.u1)
+ annotation (Line(points={{22,20},{30,20},{30,0},{-10,0},{-10,-20},{-2,-20}},
+ color={255,0,255}));
+ connect(tim.passed, edg.u)
+ annotation (Line(points={{102,132},{120,132},{120,80},{-50,80},{-50,60},
+ {-42,60}}, color={255,0,255}));
+ connect(TChiWatSupSet, chiWatTemCon.u_s)
+ annotation (Line(points={{-160,-120},{-62,-120}}, color={0,0,127}));
+ connect(TChiWatSup, chiWatTemCon.u_m) annotation (Line(points={{-160,-40},{
+ -110,-40},{-110,-152},{-50,-152},{-50,-132}}, color={0,0,127}));
+annotation (
+ defaultComponentName="wseTowSpeWSEOpe",
+ Icon(coordinateSystem(preserveAspectRatio=false, extent={{-100,-100},{100,100}}),
+ graphics={
+ Rectangle(
+ extent={{-100,-100},{100,100}},
+ lineColor={0,0,127},
+ fillColor={255,255,255},
+ fillPattern=FillPattern.Solid),
+ Text(
+ extent={{-120,146},{100,108}},
+ textColor={0,0,255},
+ textString="%name"),
+ Rectangle(
+ extent={{-40,10},{40,-10}},
+ lineColor={28,108,200},
+ fillColor={240,240,240},
+ fillPattern=FillPattern.Solid),
+ Polygon(
+ points={{-20,80},{20,80},{0,10},{-20,80}},
+ lineColor={28,108,200},
+ fillColor={240,240,240},
+ fillPattern=FillPattern.Solid),
+ Polygon(
+ points={{0,-10},{-20,-80},{20,-80},{0,-10}},
+ lineColor={28,108,200},
+ fillColor={240,240,240},
+ fillPattern=FillPattern.Solid),
+ Rectangle(
+ extent={{40,-80},{76,-94}},
+ lineColor={200,200,200},
+ fillColor={240,240,240},
+ fillPattern=FillPattern.Solid),
+ Rectangle(
+ extent={{76,-78},{78,-96}},
+ lineColor={200,200,200},
+ fillColor={240,240,240},
+ fillPattern=FillPattern.Solid),
+ Rectangle(
+ extent={{78,-78},{80,-96}},
+ lineColor={200,200,200},
+ fillColor={240,240,240},
+ fillPattern=FillPattern.Solid)}),
+ Diagram(coordinateSystem(preserveAspectRatio=false,
+ extent={{-140,-160},{140,160}})),
+Documentation(info="
+
+Block that output cooling tower fan speed yTowSpe
when only waterside
+economizer is running. This is implemented
+according to ASHRAE RP-1711 Advanced Sequences of Operation for HVAC Systems Phase II –
+Central Plants and Hydronic Systems (Draft on March 23, 2020), section 5.2.12.2,
+item 4.b.
+
+
+-
+Fan speed shall be modulated to maintain chilled water supply temperature
+
TChiWatSup
at setpoint TChiWatSupSet
by a direct acting
+PID loop that resets fan speed from minimum fanSpeMin
at 0% loop output to
+maximum fanSpeMax
at 100% loop output.
+
+-
+If chilled water supply temperature
TChiWatSup
drops below setpoint
+and fans have been at minimum speed fanSpeMin
for 5 minutes (cheCycOffTim
),
+fans shall cycle off for at lease 3 minutes (minCycOffTim
) and until
+TChiWatSup
rises above setpoint by 1 °F.
+
+
+", revisions="
+
+-
+August 9, 2019, by Jianjun Hu:
+First implementation.
+
+
+"));
+end WSEOperation;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Towers/FanSpeed/EnabledWSE/Subsequences/package.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Towers/FanSpeed/EnabledWSE/Subsequences/package.mo
new file mode 100644
index 00000000000..15d847bf194
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Towers/FanSpeed/EnabledWSE/Subsequences/package.mo
@@ -0,0 +1,46 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Towers.FanSpeed.EnabledWSE;
+package Subsequences "Package of subsequences for tower fan speed control with waterside economizer being enabled"
+
+annotation (
+preferredView="info", Documentation(info="
+
+This package contains subsequences for cooling tower fan speed control when the waterside
+economizer is enabled.
+The implementation is based on section 5.2.12.2, item 4 in ASHRAE RP-1711, Draft 6 (July 25, 2019).
+
+"),
+Icon(graphics={
+ Rectangle(
+ lineColor={200,200,200},
+ fillColor={248,248,248},
+ fillPattern=FillPattern.HorizontalCylinder,
+ extent={{-100.0,-100.0},{100.0,100.0}},
+ radius=25.0),
+ Rectangle(
+ lineColor={128,128,128},
+ extent={{-100.0,-100.0},{100.0,100.0}},
+ radius=25.0),
+ Ellipse(
+ origin={10.0,10.0},
+ fillColor={76,76,76},
+ pattern=LinePattern.None,
+ fillPattern=FillPattern.Solid,
+ extent={{-80.0,-80.0},{-20.0,-20.0}}),
+ Ellipse(
+ origin={10.0,10.0},
+ pattern=LinePattern.None,
+ fillPattern=FillPattern.Solid,
+ extent={{0.0,-80.0},{60.0,-20.0}}),
+ Ellipse(
+ origin={10.0,10.0},
+ fillColor={128,128,128},
+ pattern=LinePattern.None,
+ fillPattern=FillPattern.Solid,
+ extent={{0.0,0.0},{60.0,60.0}}),
+ Ellipse(
+ origin={10.0,10.0},
+ lineColor={128,128,128},
+ fillColor={255,255,255},
+ fillPattern=FillPattern.Solid,
+ extent={{-80.0,0.0},{-20.0,60.0}})}));
+end Subsequences;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Towers/FanSpeed/EnabledWSE/Subsequences/package.order b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Towers/FanSpeed/EnabledWSE/Subsequences/package.order
new file mode 100644
index 00000000000..70436fa5c3f
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Towers/FanSpeed/EnabledWSE/Subsequences/package.order
@@ -0,0 +1,3 @@
+IntegratedOperation
+WSEOperation
+Validation
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Towers/FanSpeed/EnabledWSE/Validation/Controller.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Towers/FanSpeed/EnabledWSE/Validation/Controller.mo
new file mode 100644
index 00000000000..d4d0897a17c
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Towers/FanSpeed/EnabledWSE/Validation/Controller.mo
@@ -0,0 +1,137 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Towers.FanSpeed.EnabledWSE.Validation;
+model Controller
+ "Validation sequence of controlling tower fan speed when waterside economizer is enabled"
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Towers.FanSpeed.EnabledWSE.Controller
+ wseOpe "Tower fan speed control when waterside economizer is enabled"
+ annotation (Placement(transformation(extent={{100,-10},{120,10}})));
+ Buildings.Controls.OBC.CDL.Logical.Sources.Pulse booPul(
+ final width=0.05,
+ final period=3600) "Boolean pulse"
+ annotation (Placement(transformation(extent={{-100,-10},{-80,10}})));
+ Buildings.Controls.OBC.CDL.Logical.Not fanSpeSwi "Two fan speed switch"
+ annotation (Placement(transformation(extent={{-60,-10},{-40,10}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Sine chiSup(
+ final amplitude=0.5,
+ final freqHz=1/1800,
+ final offset=273.15 + 7.1) "Chilled water supply temperature"
+ annotation (Placement(transformation(extent={{-100,-110},{-80,-90}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant chiSupSet(
+ final k=273.15 + 7)
+ "Chilled water supply water setpoint"
+ annotation (Placement(transformation(extent={{0,-150},{20,-130}})));
+ Buildings.Controls.OBC.CDL.Continuous.Switch swi "Logical switch"
+ annotation (Placement(transformation(extent={{0,-60},{20,-40}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant con(final k=0.1)
+ "Minimum fan speed"
+ annotation (Placement(transformation(extent={{-100,-80},{-80,-60}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Ramp ram(
+ final height=0.2,
+ final duration=3600,
+ final offset=0.1,
+ final startTime=1750) "Tower speed"
+ annotation (Placement(transformation(extent={{-100,-40},{-80,-20}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Ramp ram1(
+ final height=3,
+ final duration=3600,
+ final startTime=1500) "Ramp"
+ annotation (Placement(transformation(extent={{-100,-150},{-80,-130}})));
+ Buildings.Controls.OBC.CDL.Continuous.Add add2 "Add real inputs"
+ annotation (Placement(transformation(extent={{-40,-130},{-20,-110}})));
+ Buildings.Controls.OBC.CDL.Continuous.Switch swi1 "Logical switch"
+ annotation (Placement(transformation(extent={{0,100},{20,120}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant con1(final k=0)
+ "Zero constant"
+ annotation (Placement(transformation(extent={{-100,80},{-80,100}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Sine sin(
+ final amplitude=0.2*1e4,
+ final freqHz=1/1200,
+ final offset=1.1*1e4,
+ final startTime=180) "Chiller load"
+ annotation (Placement(transformation(extent={{-100,120},{-80,140}})));
+ Buildings.Controls.OBC.CDL.Logical.Sources.Pulse booPul1(final width=0.5,
+ final period=3600) "Boolean pulse"
+ annotation (Placement(transformation(extent={{-100,30},{-80,50}})));
+ Buildings.Controls.OBC.CDL.Logical.Not chiSta1 "First chiller status"
+ annotation (Placement(transformation(extent={{-60,30},{-40,50}})));
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant chiSta2(
+ final k=false) "Second chiller status"
+ annotation (Placement(transformation(extent={{0,60},{20,80}})));
+ Buildings.Controls.OBC.CDL.Logical.Sources.Pulse wseSta(
+ final width=0.95,
+ final period=3600)
+ "Waterside economizer enabling status"
+ annotation (Placement(transformation(extent={{0,0},{20,20}})));
+
+equation
+ connect(booPul.y, fanSpeSwi.u)
+ annotation (Line(points={{-78,0},{-62,0}}, color={255,0,255}));
+ connect(con.y, swi.u3)
+ annotation (Line(points={{-78,-70},{-40,-70},{-40,-58},{-2,-58}},
+ color={0,0,127}));
+ connect(fanSpeSwi.y, swi.u2)
+ annotation (Line(points={{-38,0},{-20,0},{-20,-50},{-2,-50}}, color={255,0,255}));
+ connect(ram.y, swi.u1)
+ annotation (Line(points={{-78,-30},{-40,-30},{-40,-42},{-2,-42}},
+ color={0,0,127}));
+ connect(chiSup.y, add2.u1)
+ annotation (Line(points={{-78,-100},{-60,-100},{-60,-114},{-42,-114}},
+ color={0,0,127}));
+ connect(ram1.y, add2.u2)
+ annotation (Line(points={{-78,-140},{-60,-140},{-60,-126},{-42,-126}},
+ color={0,0,127}));
+ connect(booPul1.y, chiSta1.u)
+ annotation (Line(points={{-78,40},{-62,40}}, color={255,0,255}));
+ connect(con1.y, swi1.u3)
+ annotation (Line(points={{-78,90},{-60,90},{-60,102},{-2,102}}, color={0,0,127}));
+ connect(sin.y, swi1.u1)
+ annotation (Line(points={{-78,130},{-60,130},{-60,118},{-2,118}}, color={0,0,127}));
+ connect(chiSta1.y, swi1.u2)
+ annotation (Line(points={{-38,40},{-20,40},{-20,110},{-2,110}}, color={255,0,255}));
+ connect(chiSta2.y, wseOpe.uChi[2])
+ annotation (Line(points={{22,70},{50,70},{50,6},{98,6}}, color={255,0,255}));
+ connect(chiSta1.y, wseOpe.uChi[1])
+ annotation (Line(points={{-38,40},{50,40},{50,6},{98,6}}, color={255,0,255}));
+ connect(swi1.y, wseOpe.chiLoa[1])
+ annotation (Line(points={{22,110},{60,110},{60,9},{98,9}}, color={0,0,127}));
+ connect(con1.y, wseOpe.chiLoa[2])
+ annotation (Line(points={{-78,90},{60,90},{60,9},{98,9}}, color={0,0,127}));
+ connect(wseSta.y, wseOpe.uWse)
+ annotation (Line(points={{22,10},{40,10},{40,2},{98,2}}, color={255,0,255}));
+ connect(swi.y,wseOpe.uFanSpe)
+ annotation (Line(points={{22,-50},{60,-50},{60,-2},{98,-2}}, color={0,0,127}));
+ connect(add2.y, wseOpe.TChiWatSup)
+ annotation (Line(points={{-18,-120},{70,-120},{70,-6},{98,-6}}, color={0,0,127}));
+ connect(chiSupSet.y, wseOpe.TChiWatSupSet)
+ annotation (Line(points={{22,-140},{80,-140},{80,-9},{98,-9}}, color={0,0,127}));
+
+annotation (experiment(StopTime=3600.0, Tolerance=1e-06),
+ __Dymola_Commands(file="modelica://Buildings/Resources/Scripts/Dymola/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Towers/FanSpeed/EnabledWSE/Validation/Controller.mos"
+ "Simulate and plot"),
+ Documentation(info="
+
+This example validates
+
+Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Towers.FanSpeed.EnabledWSE.Controller.
+
+", revisions="
+
+-
+August 12, 2019, by Jianjun Hu:
+First implementation.
+
+
+"),
+ Icon(coordinateSystem(preserveAspectRatio=false, extent={{-100,-100},{100,100}}),
+ graphics={
+ Ellipse(lineColor = {75,138,73},
+ fillColor={255,255,255},
+ fillPattern = FillPattern.Solid,
+ extent = {{-100,-100},{100,100}}),
+ Polygon(lineColor = {0,0,255},
+ fillColor = {75,138,73},
+ pattern = LinePattern.None,
+ fillPattern = FillPattern.Solid,
+ points = {{-36,60},{64,0},{-36,-60},{-36,60}})}), Diagram(
+ coordinateSystem(preserveAspectRatio=false, extent={{-140,-160},{140,160}})));
+end Controller;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Towers/FanSpeed/EnabledWSE/Validation/package.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Towers/FanSpeed/EnabledWSE/Validation/package.mo
new file mode 100644
index 00000000000..cae386b1b2d
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Towers/FanSpeed/EnabledWSE/Validation/package.mo
@@ -0,0 +1,37 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Towers.FanSpeed.EnabledWSE;
+package Validation "Collection of validation models"
+
+annotation (Icon(graphics={
+ Rectangle(
+ lineColor={200,200,200},
+ fillColor={248,248,248},
+ fillPattern=FillPattern.HorizontalCylinder,
+ extent={{-100.0,-100.0},{100.0,100.0}},
+ radius=25.0),
+ Rectangle(
+ lineColor={128,128,128},
+ extent={{-100.0,-100.0},{100.0,100.0}},
+ radius=25.0),
+ Polygon(
+ origin={8.0,14.0},
+ lineColor={78,138,73},
+ fillColor={78,138,73},
+ pattern=LinePattern.None,
+ fillPattern=FillPattern.Solid,
+ points={{-58.0,46.0},{42.0,-14.0},{-58.0,-74.0},{-58.0,46.0}})}),
+preferredView="info", Documentation(info="
+
+This package contains validation models for the classes in
+
+Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Towers.FanSpeed.EnabledWSE.
+
+
+Note that most validation models contain simple input data
+which may not be realistic, but for which the correct
+output can be obtained through an analytic solution.
+The examples plot various outputs, which have been verified against these
+solutions. These model outputs are stored as reference data and
+used for continuous validation whenever models in the library change.
+
+"));
+end Validation;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Towers/FanSpeed/EnabledWSE/Validation/package.order b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Towers/FanSpeed/EnabledWSE/Validation/package.order
new file mode 100644
index 00000000000..8cba75e31a7
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Towers/FanSpeed/EnabledWSE/Validation/package.order
@@ -0,0 +1 @@
+Controller
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Towers/FanSpeed/EnabledWSE/package.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Towers/FanSpeed/EnabledWSE/package.mo
new file mode 100644
index 00000000000..7dbc86674a7
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Towers/FanSpeed/EnabledWSE/package.mo
@@ -0,0 +1,46 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Towers.FanSpeed;
+package EnabledWSE "Package of sequences for control tower fan speed when waterside economizer is enabled"
+
+annotation (
+preferredView="info", Documentation(info="
+
+This package contains sequences for cooling tower fan speed control when the waterside
+economizer is enabled.
+The implementation is based on section 5.2.12.2, item 4 in ASHRAE RP-1711, Draft on March 23, 2020.
+
+"),
+Icon(graphics={
+ Rectangle(
+ lineColor={200,200,200},
+ fillColor={248,248,248},
+ fillPattern=FillPattern.HorizontalCylinder,
+ extent={{-100.0,-100.0},{100.0,100.0}},
+ radius=25.0),
+ Rectangle(
+ lineColor={128,128,128},
+ extent={{-100.0,-100.0},{100.0,100.0}},
+ radius=25.0),
+ Ellipse(
+ origin={10.0,10.0},
+ fillColor={76,76,76},
+ pattern=LinePattern.None,
+ fillPattern=FillPattern.Solid,
+ extent={{-80.0,-80.0},{-20.0,-20.0}}),
+ Ellipse(
+ origin={10.0,10.0},
+ pattern=LinePattern.None,
+ fillPattern=FillPattern.Solid,
+ extent={{0.0,-80.0},{60.0,-20.0}}),
+ Ellipse(
+ origin={10.0,10.0},
+ fillColor={128,128,128},
+ pattern=LinePattern.None,
+ fillPattern=FillPattern.Solid,
+ extent={{0.0,0.0},{60.0,60.0}}),
+ Ellipse(
+ origin={10.0,10.0},
+ lineColor={128,128,128},
+ fillColor={255,255,255},
+ fillPattern=FillPattern.Solid,
+ extent={{-80.0,0.0},{-20.0,60.0}})}));
+end EnabledWSE;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Towers/FanSpeed/EnabledWSE/package.order b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Towers/FanSpeed/EnabledWSE/package.order
new file mode 100644
index 00000000000..9ffbffcb990
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Towers/FanSpeed/EnabledWSE/package.order
@@ -0,0 +1,3 @@
+Controller
+Subsequences
+Validation
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Towers/FanSpeed/ReturnWaterTemperature/Controller.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Towers/FanSpeed/ReturnWaterTemperature/Controller.mo
new file mode 100644
index 00000000000..51dc30d0020
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Towers/FanSpeed/ReturnWaterTemperature/Controller.mo
@@ -0,0 +1,620 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Towers.FanSpeed.ReturnWaterTemperature;
+block Controller
+ "Cooling tower speed control to maintain condenser water return temperature at setpoint"
+
+ parameter Integer nChi=2 "Total number of chillers";
+ parameter Integer nTowCel=4 "Total number of cooling tower cells";
+ parameter Integer nConWatPum=2 "Total number of condenser water pumps";
+ parameter Boolean have_WSE=true "Flag to indicate if the plant has waterside economizer";
+ parameter Boolean closeCoupledPlant=true "Flag to indicate if the plant is close coupled";
+ parameter Real desCap(
+ final unit="W",
+ final quantity="HeatFlowRate")= 1e6 "Plant design capacity";
+ parameter Real fanSpeMin=0.1 "Minimum tower fan speed";
+ parameter Real LIFT_min[nChi](
+ final unit=fill("K",nChi),
+ final quantity=fill("TemperatureDifference",nChi),
+ displayUnit=fill("degC",nChi))={12,12} "Minimum LIFT of each chiller"
+ annotation (Dialog(tab="Setpoint"));
+ parameter Real TConWatSup_nominal[nChi](
+ final unit=fill("K",nChi),
+ final quantity=fill("ThermodynamicTemperature",nChi),
+ displayUnit=fill("degC",nChi))={293.15,293.15}
+ "Design condenser water supply temperature (condenser entering) of each chiller"
+ annotation (Dialog(tab="Setpoint"));
+ parameter Real TConWatRet_nominal[nChi](
+ final unit=fill("K",nChi),
+ final quantity=fill("ThermodynamicTemperature",nChi),
+ displayUnit=fill("degC",nChi))={303.15, 303.15}
+ "Design condenser water return temperature (condenser leaving) of each chiller"
+ annotation (Dialog(tab="Setpoint"));
+ parameter Real TChiWatSupMin[nChi](
+ final unit=fill("K",nChi),
+ final quantity=fill("ThermodynamicTemperature",nChi),
+ displayUnit=fill("degC",nChi)) = {278.15, 278.15}
+ "Lowest chilled water supply temperature of each chiller"
+ annotation (Dialog(tab="Setpoint"));
+ parameter Buildings.Controls.OBC.CDL.Types.SimpleController couPlaCon=
+ Buildings.Controls.OBC.CDL.Types.SimpleController.PI
+ "Type of controller"
+ annotation (Dialog(tab="Coupled plant", group="Controller", enable=closeCoupledPlant));
+ parameter Real kCouPla=1 "Gain of controller"
+ annotation (Dialog(tab="Coupled plant", group="Controller", enable=closeCoupledPlant));
+ parameter Real TiCouPla(final quantity="Time", final unit="s")=0.5
+ "Time constant of integrator block"
+ annotation (Dialog(tab="Coupled plant",
+ group="Controller",
+ enable=closeCoupledPlant and (couPlaCon == Buildings.Controls.OBC.CDL.Types.SimpleController.PI or
+ couPlaCon == Buildings.Controls.OBC.CDL.Types.SimpleController.PID)));
+ parameter Real TdCouPla(final quantity="Time", final unit="s")=0.1
+ "Time constant of derivative block"
+ annotation (Dialog(tab="Coupled plant", group="Controller",
+ enable=closeCoupledPlant and (couPlaCon == Buildings.Controls.OBC.CDL.Types.SimpleController.PD or
+ couPlaCon == Buildings.Controls.OBC.CDL.Types.SimpleController.PID)));
+ parameter Real yCouPlaMax=1 "Upper limit of output"
+ annotation (Dialog(tab="Coupled plant", group="Controller", enable=closeCoupledPlant));
+ parameter Real yCouPlaMin=0 "Lower limit of output"
+ annotation (Dialog(tab="Coupled plant", group="Controller", enable=closeCoupledPlant));
+
+ parameter Real samplePeriod=30
+ "Period of sampling condenser water supply and return temperature difference"
+ annotation (Dialog(tab="Less coupled plant",
+ group="Return water temperature controller",
+ enable=not closeCoupledPlant));
+ parameter Buildings.Controls.OBC.CDL.Types.SimpleController supWatCon=
+ Buildings.Controls.OBC.CDL.Types.SimpleController.PI "Type of controller"
+ annotation (Dialog(tab="Less coupled plant",
+ group="Supply water temperature controller",
+ enable=not closeCoupledPlant));
+ parameter Real kSupCon=1 "Gain of controller"
+ annotation (Dialog(tab="Less coupled plant",
+ group="Supply water temperature controller",
+ enable=not closeCoupledPlant));
+ parameter Real TiSupCon(final quantity="Time", final unit="s")=0.5 "Time constant of integrator block"
+ annotation (Dialog(tab="Less coupled plant",
+ group="Supply water temperature controller",
+ enable=not closeCoupledPlant and (supWatCon == Buildings.Controls.OBC.CDL.Types.SimpleController.PI or
+ supWatCon == Buildings.Controls.OBC.CDL.Types.SimpleController.PID)));
+ parameter Real TdSupCon(final quantity="Time", final unit="s")=0.1 "Time constant of derivative block"
+ annotation (Dialog(tab="Less coupled plant",
+ group="Supply water temperature controller",
+ enable=not closeCoupledPlant and (supWatCon == Buildings.Controls.OBC.CDL.Types.SimpleController.PD or
+ supWatCon == Buildings.Controls.OBC.CDL.Types.SimpleController.PID)));
+ parameter Real ySupConMax=1 "Upper limit of output"
+ annotation (Dialog(tab="Less coupled plant",
+ group="Supply water temperature controller",
+ enable=not closeCoupledPlant));
+ parameter Real ySupConMin=0 "Lower limit of output"
+ annotation (Dialog(tab="Less coupled plant",
+ group="Supply water temperature controller",
+ enable=not closeCoupledPlant));
+
+ parameter Real speChe=0.01 "Lower threshold value to check fan or pump speed"
+ annotation (Dialog(tab="Advanced"));
+ parameter Real cheMinFanSpe(final quantity="Time", final unit="s")=300
+ "Threshold time for checking duration when tower fan equals to the minimum tower fan speed"
+ annotation (Dialog(tab="Advanced", group="Enable tower"));
+ parameter Real cheMaxTowSpe(final quantity="Time", final unit="s")=300
+ "Threshold time for checking duration when any enabled chiller maximum cooling speed equals to the minimum tower fan speed"
+ annotation (Dialog(tab="Advanced", group="Enable tower"));
+ parameter Real cheTowOff(final quantity="Time", final unit="s")=60
+ "Threshold time for checking duration when there is no enabled tower fan"
+ annotation (Dialog(tab="Advanced", group="Enable tower"));
+ parameter Real iniPlaTim(final quantity="Time", final unit="s")=600
+ "Time to hold return temperature to initial setpoint after plant being enabled"
+ annotation (Dialog(tab="Advanced",
+ group="Setpoint: Plant startup"));
+ parameter Real ramTim(final quantity="Time", final unit="s")=180
+ "Time to ramp return water temperature from initial value to setpoint"
+ annotation (Dialog(tab="Advanced",
+ group="Setpoint: Plant startup"));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput uTowSpeWSE(
+ final min=0,
+ final max=1,
+ final unit="1") if have_WSE
+ "Cooling tower speed when the waterside economizer is enabled"
+ annotation (Placement(transformation(extent={{-200,220},{-160,260}}),
+ iconTransformation(extent={{-240,160},{-200,200}})));
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uChi[nChi]
+ "Chiller enabling status: true=ON"
+ annotation (Placement(transformation(extent={{-200,190},{-160,230}}),
+ iconTransformation(extent={{-240,130},{-200,170}})));
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uWse if have_WSE
+ "Waterside economizer status: true=ON"
+ annotation (Placement(transformation(extent={{-200,150},{-160,190}}),
+ iconTransformation(extent={{-240,100},{-200,140}})));
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput reqPlaCap(
+ final unit="W",
+ final quantity="HeatFlowRate") "Current required plant capacity"
+ annotation (Placement(transformation(extent={{-200,90},{-160,130}}),
+ iconTransformation(extent={{-240,70},{-200,110}})));
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput uMaxTowSpeSet[nChi](
+ final min=fill(0, nChi),
+ final max=fill(1, nChi),
+ final unit=fill("1", nChi))
+ "Maximum cooling tower speed setpoint from each chiller head pressure control loop"
+ annotation (Placement(transformation(extent={{-200,20},{-160,60}}),
+ iconTransformation(extent={{-240,40},{-200,80}})));
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput uFanSpe(
+ final min=0,
+ final max=1,
+ final unit="1") "Measured speed of current enabled tower fans"
+ annotation (Placement(transformation(extent={{-200,-10},{-160,30}}),
+ iconTransformation(extent={{-240,10},{-200,50}})));
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uTow[nTowCel]
+ "Cooling tower operating status: true=running tower cell"
+ annotation (Placement(transformation(extent={{-200,-50},{-160,-10}}),
+ iconTransformation(extent={{-240,-20},{-200,20}})));
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput TChiWatSupSet(
+ final quantity="ThermodynamicTemperature",
+ displayUnit="degC",
+ final unit="K") "Chilled water supply setpoint temperature"
+ annotation (Placement(transformation(extent={{-200,-100},{-160,-60}}),
+ iconTransformation(extent={{-240,-80},{-200,-40}})));
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uPla
+ "Plant enabling status"
+ annotation (Placement(transformation(extent={{-200,-140},{-160,-100}}),
+ iconTransformation(extent={{-240,-110},{-200,-70}})));
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput TConWatRet(
+ final quantity="ThermodynamicTemperature",
+ displayUnit="degC",
+ final unit="K") "Condenser water return temperature (condenser leaving)"
+ annotation (Placement(transformation(extent={{-200,-180},{-160,-140}}),
+ iconTransformation(extent={{-240,-140},{-200,-100}})));
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput uConWatPumSpe[nConWatPum](
+ final min=fill(0, nConWatPum),
+ final max=fill(1, nConWatPum),
+ final unit=fill("1", nConWatPum)) "Current condenser water pump speed"
+ annotation (Placement(transformation(extent={{-200,-220},{-160,-180}}),
+ iconTransformation(extent={{-240,-170},{-200,-130}})));
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput TConWatSup(
+ final quantity="ThermodynamicTemperature",
+ displayUnit="degC",
+ final unit="K") if not closeCoupledPlant
+ "Condenser water supply temperature (condenser entering)"
+ annotation (Placement(transformation(extent={{-200,-300},{-160,-260}}),
+ iconTransformation(extent={{-240,-200},{-200,-160}})));
+ Buildings.Controls.OBC.CDL.Interfaces.RealOutput ySpeSet(
+ final min=0,
+ final max=1,
+ final unit="1") "Fan speed setpoint of each cooling tower cell"
+ annotation (Placement(transformation(extent={{160,190},{200,230}}),
+ iconTransformation(extent={{200,-20},{240,20}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Towers.FanSpeed.ReturnWaterTemperature.Subsequences.Setpoint conWatRetSet(
+ final nChi=nChi,
+ final LIFT_min=LIFT_min,
+ final iniPlaTim=iniPlaTim,
+ final ramTim=ramTim,
+ final TConWatRet_nominal=TConWatRet_nominal,
+ final TChiWatSupMin=TChiWatSupMin) "Return temperature setpoint"
+ annotation (Placement(transformation(extent={{40,-80},{60,-60}})));
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Towers.FanSpeed.ReturnWaterTemperature.Subsequences.Enable enaTow(
+ final nChi=nChi,
+ final nTowCel=nTowCel,
+ final fanSpeChe=speChe,
+ final fanSpeMin=fanSpeMin,
+ final cheMinFanSpe=cheMinFanSpe,
+ final cheMaxTowSpe=cheMaxTowSpe,
+ final cheTowOff=cheTowOff) "Enable and disable cooling tower fans"
+ annotation (Placement(transformation(extent={{40,10},{60,30}})));
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Towers.FanSpeed.ReturnWaterTemperature.Subsequences.Coupled
+ couTowSpe(
+ final nChi=nChi,
+ final nConWatPum=nConWatPum,
+ final fanSpeMin=fanSpeMin,
+ final pumSpeChe=speChe,
+ final controllerType=couPlaCon,
+ final k=kCouPla,
+ final Ti=TiCouPla,
+ final Td=TdCouPla,
+ final yMax=yCouPlaMax,
+ final yMin=yCouPlaMin) if closeCoupledPlant
+ "Tower fan speed control when the plant is close coupled"
+ annotation (Placement(transformation(extent={{40,-140},{60,-120}})));
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Towers.FanSpeed.ReturnWaterTemperature.Subsequences.LessCoupled
+ lesCouTowSpe(
+ final nChi=nChi,
+ final nConWatPum=nConWatPum,
+ final pumSpeChe=speChe,
+ final fanSpeMin=fanSpeMin,
+ final samplePeriod=samplePeriod,
+ final iniPlaTim=iniPlaTim,
+ final TConWatSup_nominal=TConWatSup_nominal,
+ final TConWatRet_nominal=TConWatRet_nominal,
+ final supWatCon=supWatCon,
+ final kSupCon=kSupCon,
+ final TiSupCon=TiSupCon,
+ final TdSupCon=TdSupCon,
+ final ySupConMax=ySupConMax,
+ final ySupConMin=ySupConMin) if not closeCoupledPlant
+ "Tower fan speed control when the plant is not close coupled"
+ annotation (Placement(transformation(extent={{40,-220},{60,-200}})));
+
+protected
+ Buildings.Controls.OBC.CDL.Logical.MultiOr mulOr(
+ final nin=nChi) "Check if any chiller is enabled"
+ annotation (Placement(transformation(extent={{-120,200},{-100,220}})));
+ Buildings.Controls.OBC.CDL.Logical.Not not1 if have_WSE
+ "Waterside economizer is not enabled"
+ annotation (Placement(transformation(extent={{-120,160},{-100,180}})));
+ Buildings.Controls.OBC.CDL.Logical.And and2
+ "Any chiller is enabled and waterside economizer is not enabled"
+ annotation (Placement(transformation(extent={{-20,200},{0,220}})));
+ Buildings.Controls.OBC.CDL.Continuous.MultiplyByParameter parLoaRat(
+ final k=1/desCap) "Plant partial load ratio"
+ annotation (Placement(transformation(extent={{-120,100},{-100,120}})));
+ Buildings.Controls.OBC.CDL.Continuous.Line plrTowMaxSpe
+ "Tower maximum speed resetted by partial load ratio"
+ annotation (Placement(transformation(extent={{-20,100},{0,120}})));
+ Buildings.Controls.OBC.CDL.Continuous.Switch swi
+ annotation (Placement(transformation(extent={{120,-10},{140,10}})));
+ Buildings.Controls.OBC.CDL.Continuous.Switch swi1
+ "Switch between when waterside economizer is enabled and disabled"
+ annotation (Placement(transformation(extent={{100,200},{120,220}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant lowPlrTowMaxSpe(
+ final k=0.7)
+ "Lower bound of tower maximum speed"
+ annotation (Placement(transformation(extent={{-120,130},{-100,150}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant zer(
+ final k=0) "Zero constant"
+ annotation (Placement(transformation(extent={{-60,130},{-40,150}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant hal(
+ final k=0.5) "Constant 0.5"
+ annotation (Placement(transformation(extent={{-120,70},{-100,90}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant uppPlrTowMaxSpe(
+ final k=1)
+ "Upper bound of tower maximum speed"
+ annotation (Placement(transformation(extent={{-60,70},{-40,90}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant zer1(final k=0)
+ "Zero constant"
+ annotation (Placement(transformation(extent={{40,-30},{60,-10}})));
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant tru(
+ final k=true) if not have_WSE "True constant"
+ annotation (Placement(transformation(extent={{-80,160},{-60,180}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant zer2(
+ final k=0) if not have_WSE
+ "Zero constant"
+ annotation (Placement(transformation(extent={{40,160},{60,180}})));
+ Buildings.Controls.OBC.CDL.Continuous.Hysteresis proOn[nConWatPum](
+ final uLow=fill(speChe, nConWatPum),
+ final uHigh=fill(2*speChe, nConWatPum))
+ "Check if the condenser water pump is proven on"
+ annotation (Placement(transformation(extent={{-140,-250},{-120,-230}})));
+ Buildings.Controls.OBC.CDL.Conversions.BooleanToInteger booToInt[nConWatPum]
+ "Convert boolean input to integer output"
+ annotation (Placement(transformation(extent={{-100,-250},{-80,-230}})));
+ Buildings.Controls.OBC.CDL.Integers.MultiSum mulSumInt(
+ final nin=nConWatPum) "Sum up integer inputs"
+ annotation (Placement(transformation(extent={{-20,-250},{0,-230}})));
+
+equation
+ connect(uWse, not1.u)
+ annotation (Line(points={{-180,170},{-122,170}}, color={255,0,255}));
+ connect(mulOr.y, and2.u1)
+ annotation (Line(points={{-98,210},{-22,210}}, color={255,0,255}));
+ connect(not1.y, and2.u2)
+ annotation (Line(points={{-98,170},{-90,170},{-90,202},{-22,202}},
+ color={255,0,255}));
+ connect(reqPlaCap, parLoaRat.u)
+ annotation (Line(points={{-180,110},{-122,110}}, color={0,0,127}));
+ connect(zer.y, plrTowMaxSpe.x1)
+ annotation (Line(points={{-38,140},{-30,140},{-30,118},{-22,118}},
+ color={0,0,127}));
+ connect(lowPlrTowMaxSpe.y, plrTowMaxSpe.f1)
+ annotation (Line(points={{-98,140},{-70,140},{-70,114},{-22,114}},
+ color={0,0,127}));
+ connect(parLoaRat.y, plrTowMaxSpe.u)
+ annotation (Line(points={{-98,110},{-22,110}}, color={0,0,127}));
+ connect(hal.y, plrTowMaxSpe.x2)
+ annotation (Line(points={{-98,80},{-70,80},{-70,106},{-22,106}},
+ color={0,0,127}));
+ connect(uppPlrTowMaxSpe.y, plrTowMaxSpe.f2)
+ annotation (Line(points={{-38,80},{-30,80},{-30,102},{-22,102}},
+ color={0,0,127}));
+ connect(uChi, conWatRetSet.uChi)
+ annotation (Line(points={{-180,210},{-140,210},{-140,-62},{38,-62}},
+ color={255,0,255}));
+ connect(parLoaRat.y, conWatRetSet.uOpeParLoaRat) annotation (Line(points={{-98,
+ 110},{-80,110},{-80,-67},{38,-67}}, color={0,0,127}));
+ connect(conWatRetSet.TChiWatSupSet, TChiWatSupSet)
+ annotation (Line(points={{38,-73},{-80,-73},{-80,-80},{-180,-80}},
+ color={0,0,127}));
+ connect(conWatRetSet.uPla, uPla)
+ annotation (Line(points={{38,-78},{-60,-78},{-60,-120},{-180,-120}},
+ color={255,0,255}));
+ connect(enaTow.uMaxTowSpeSet, uMaxTowSpeSet)
+ annotation (Line(points={{38,30},{-120,30},{-120,40},{-180,40}},
+ color={0,0,127}));
+ connect(enaTow.uFanSpe,uFanSpe)
+ annotation (Line(points={{38,26},{-130,26},{-130,10},{-180,10}},
+ color={0,0,127}));
+ connect(enaTow.uTow, uTow)
+ annotation (Line(points={{38,14},{-110,14},{-110,-30},{-180,-30}},
+ color={255,0,255}));
+ connect(conWatRetSet.TConWatRetSet, couTowSpe.TConWatRetSet)
+ annotation (Line(points={{62,-70},{80,-70},{80,-100},{26,-100},{26,-120},
+ {38,-120}}, color={0,0,127}));
+ connect(couTowSpe.TConWatRet, TConWatRet)
+ annotation (Line(points={{38,-124},{-100,-124},{-100,-160},{-180,-160}},
+ color={0,0,127}));
+ connect(couTowSpe.uConWatPumSpe, uConWatPumSpe)
+ annotation (Line(points={{38,-128},{-80,-128},{-80,-200},{-180,-200}},
+ color={0,0,127}));
+ connect(uMaxTowSpeSet, couTowSpe.uMaxTowSpeSet)
+ annotation (Line(points={{-180,40},{-120,40},{-120,-132},{38,-132}},
+ color={0,0,127}));
+ connect(plrTowMaxSpe.y, couTowSpe.plrTowMaxSpe)
+ annotation (Line(points={{2,110},{20,110},{20,-140},{38,-140}},
+ color={0,0,127}));
+ connect(conWatRetSet.TConWatRetSet, lesCouTowSpe.TConWatRetSet)
+ annotation (Line(points={{62,-70},{80,-70},{80,-100},{26,-100},{26,-200},{38,-200}},
+ color={0,0,127}));
+ connect(TConWatRet, lesCouTowSpe.TConWatRet)
+ annotation (Line(points={{-180,-160},{-100,-160},{-100,-202},{38,-202}},
+ color={0,0,127}));
+ connect(uConWatPumSpe, lesCouTowSpe.uConWatPumSpe)
+ annotation (Line(points={{-180,-200},{-80,-200},{-80,-208},{38,-208}},
+ color={0,0,127}));
+ connect(lesCouTowSpe.TConWatSup, TConWatSup)
+ annotation (Line(points={{38,-212},{-40,-212},{-40,-280},{-180,-280}},
+ color={0,0,127}));
+ connect(uMaxTowSpeSet, lesCouTowSpe.uMaxTowSpeSet)
+ annotation (Line(points={{-180,40},{-120,40},{-120,-215},{38,-215}},
+ color={0,0,127}));
+ connect(plrTowMaxSpe.y, lesCouTowSpe.plrTowMaxSpe)
+ annotation (Line(points={{2,110},{20,110},{20,-220},{38,-220}},
+ color={0,0,127}));
+ connect(enaTow.yTow, swi.u2)
+ annotation (Line(points={{62,20},{80,20},{80,0},{118,0}}, color={255,0,255}));
+ connect(couTowSpe.ySpeSet, swi.u1)
+ annotation (Line(points={{62,-130},{100,-130},{100,8},{118,8}},
+ color={0,0,127}));
+ connect(lesCouTowSpe.ySpeSet, swi.u1)
+ annotation (Line(points={{62,-210},{100,-210},{100,8},{118,8}},
+ color={0,0,127}));
+ connect(zer1.y, swi.u3)
+ annotation (Line(points={{62,-20},{80,-20},{80,-8},{118,-8}},
+ color={0,0,127}));
+ connect(tru.y, and2.u2)
+ annotation (Line(points={{-58,170},{-40,170},{-40,202},{-22,202}},
+ color={255,0,255}));
+ connect(and2.y, swi1.u2)
+ annotation (Line(points={{2,210},{98,210}}, color={255,0,255}));
+ connect(swi.y, swi1.u1)
+ annotation (Line(points={{142,0},{150,0},{150,190},{60,190},{60,218},
+ {98,218}}, color={0,0,127}));
+ connect(uTowSpeWSE, swi1.u3)
+ annotation (Line(points={{-180,240},{80,240},{80,202},{98,202}},
+ color={0,0,127}));
+ connect(zer2.y, swi1.u3)
+ annotation (Line(points={{62,170},{80,170},{80,202},{98,202}},
+ color={0,0,127}));
+ connect(swi1.y,ySpeSet)
+ annotation (Line(points={{122,210},{180,210}}, color={0,0,127}));
+ connect(uChi, mulOr.u)
+ annotation (Line(points={{-180,210},{-122,210}}, color={255,0,255}));
+ connect(uConWatPumSpe, proOn.u)
+ annotation (Line(points={{-180,-200},{-150,-200},{-150,-240},{-142,-240}},
+ color={0,0,127}));
+ connect(proOn.y, booToInt.u)
+ annotation (Line(points={{-118,-240},{-102,-240}}, color={255,0,255}));
+ connect(mulSumInt.y, enaTow.uConWatPumNum)
+ annotation (Line(points={{2,-240},{14,-240},{14,10},{38,10}},
+ color={255,127,0}));
+ connect(booToInt.y, mulSumInt.u)
+ annotation (Line(points={{-78,-240},{-50,-240},{-50,-240},{-22,-240}},
+ color={255,127,0}));
+ connect(conWatRetSet.TConWatRetSet, enaTow.TTowSet) annotation (Line(
+ points={{62,-70},{80,-70},{80,-40},{0,-40},{0,22},{38,22}}, color={0,0,127}));
+ connect(TConWatRet, enaTow.TTow) annotation (Line(points={{-180,-160},{-100,
+ -160},{-100,18},{38,18}}, color={0,0,127}));
+ connect(uChi, couTowSpe.uChi)
+ annotation (Line(points={{-180,210},{-140,210},{-140,-136},{38,-136}},
+ color={255,0,255}));
+ connect(uChi, lesCouTowSpe.uChi)
+ annotation (Line(points={{-180,210},{-140,210},{-140,-217},{38,-217}},
+ color={255,0,255}));
+ connect(uPla, lesCouTowSpe.uPla)
+ annotation (Line(points={{-180,-120},{-60,-120},{-60,-205},{38,-205}},
+ color={255,0,255}));
+
+annotation (
+ defaultComponentName="towFanSpe",
+ Icon(coordinateSystem(preserveAspectRatio=false, extent={{-200,-200},
+ {200,200}}), graphics={
+ Rectangle(
+ extent={{-200,-200},{200,200}},
+ lineColor={0,0,127},
+ fillColor={255,255,255},
+ fillPattern=FillPattern.Solid),
+ Text(
+ extent={{-240,270},{200,210}},
+ textColor={0,0,255},
+ textString="%name"),
+ Polygon(
+ points={{-40,160},{40,160},{0,20},{-40,160}},
+ lineColor={28,108,200},
+ fillColor={240,240,240},
+ fillPattern=FillPattern.Solid),
+ Rectangle(
+ extent={{-80,20},{80,-20}},
+ lineColor={28,108,200},
+ fillColor={240,240,240},
+ fillPattern=FillPattern.Solid),
+ Polygon(
+ points={{0,-20},{-40,-160},{60,-160},{0,-20}},
+ lineColor={28,108,200},
+ fillColor={240,240,240},
+ fillPattern=FillPattern.Solid),
+ Polygon(
+ points={{120,-104},{140,-104},{150,-120},{140,-136},{120,-136},{110,-120},
+ {120,-104}},
+ lineColor={200,200,200},
+ fillColor={240,240,240},
+ fillPattern=FillPattern.Solid),
+ Rectangle(
+ extent={{128,-136},{132,-160}},
+ lineColor={200,200,200},
+ fillColor={240,240,240},
+ fillPattern=FillPattern.Solid),
+ Line(points={{100,-160}}, color={28,108,200}),
+ Rectangle(
+ extent={{92,-160},{170,-170}},
+ lineColor={28,108,200},
+ fillColor={240,240,240},
+ fillPattern=FillPattern.Solid,
+ pattern=LinePattern.None),
+ Text(
+ extent={{114,-110},{144,-128}},
+ textColor={28,108,200},
+ textString="CWRT"),
+ Text(
+ extent={{-200,160},{-158,142}},
+ textColor={255,0,255},
+ textString="uChi"),
+ Text(
+ extent={{-196,188},{-118,172}},
+ textColor={0,0,127},
+ textString="uTowSpeWSE",
+ visible=have_WSE),
+ Text(
+ extent={{-200,130},{-154,114}},
+ textColor={255,0,255},
+ textString="uWse",
+ visible=have_WSE),
+ Text(
+ extent={{-198,12},{-160,-6}},
+ textColor={255,0,255},
+ textString="uTow"),
+ Text(
+ extent={{-200,-80},{-160,-98}},
+ textColor={255,0,255},
+ textString="uPla"),
+ Text(
+ extent={{-200,100},{-126,82}},
+ textColor={0,0,127},
+ textString="reqPlaCap"),
+ Text(
+ extent={{-196,72},{-104,54}},
+ textColor={0,0,127},
+ textString="uMaxTowSpeSet"),
+ Text(
+ extent={{-200,40},{-134,22}},
+ textColor={0,0,127},
+ textString="uFanSpe"),
+ Text(
+ extent={{-198,-50},{-118,-68}},
+ textColor={0,0,127},
+ textString="TChiWatSupSet"),
+ Text(
+ extent={{-200,-112},{-114,-128}},
+ textColor={0,0,127},
+ textString="TConWatRet"),
+ Text(
+ extent={{-196,-142},{-94,-158}},
+ textColor={0,0,127},
+ textString="uConWatPumSpe"),
+ Text(
+ extent={{-198,-170},{-118,-188}},
+ textColor={0,0,127},
+ textString="TConWatSup",
+ visible=not closeCoupledPlant),
+ Text(
+ extent={{122,12},{200,-6}},
+ textColor={0,0,127},
+ textString="ySpeSet")}),
+ Diagram(coordinateSystem(preserveAspectRatio=false,
+ extent={{-160,-300},{160,280}}), graphics={
+ Text(
+ extent={{-148,280},{-78,262}},
+ pattern=LinePattern.None,
+ fillColor={210,210,210},
+ fillPattern=FillPattern.Solid,
+ textColor={0,0,127},
+ horizontalAlignment=TextAlignment.Left,
+ textString="When there is no WSE:"),
+ Text(
+ extent={{-148,264},{-24,258}},
+ pattern=LinePattern.None,
+ fillColor={210,210,210},
+ fillPattern=FillPattern.Solid,
+ textColor={0,0,127},
+ horizontalAlignment=TextAlignment.Left,
+ textString="- if no chiller is enabled, then tower fan speed should be zero;"),
+ Text(
+ extent={{-148,258},{-14,248}},
+ pattern=LinePattern.None,
+ fillColor={210,210,210},
+ fillPattern=FillPattern.Solid,
+ textColor={0,0,127},
+ horizontalAlignment=TextAlignment.Left,
+ textString="- if any chiller is enabled, then control fan speed with sequence here;"),
+ Text(
+ extent={{6,278},{70,266}},
+ pattern=LinePattern.None,
+ fillColor={210,210,210},
+ fillPattern=FillPattern.Solid,
+ textColor={0,0,127},
+ horizontalAlignment=TextAlignment.Left,
+ textString="When there is WSE:"),
+ Text(
+ extent={{6,264},{150,256}},
+ pattern=LinePattern.None,
+ fillColor={210,210,210},
+ fillPattern=FillPattern.Solid,
+ textColor={0,0,127},
+ horizontalAlignment=TextAlignment.Left,
+ textString="- if WSE is not enabled, then control fan speed with sequence here;"),
+ Text(
+ extent={{6,256},{150,248}},
+ pattern=LinePattern.None,
+ fillColor={210,210,210},
+ fillPattern=FillPattern.Solid,
+ textColor={0,0,127},
+ horizontalAlignment=TextAlignment.Left,
+ textString="- if WSE is enabled, then fan speed will be controlled by uTowSpeWSE;")}),
+Documentation(info="
+
+Block that outputs cooling tower fan speed ySpeSet
for maintaining
+condenser water return temperature at setpoint. This is implemented
+according to ASHRAE RP-1711 Advanced Sequences of Operation for HVAC Systems Phase II –
+Central Plants and Hydronic Systems (Draft on March 23, 2020), section 5.2.12.2,
+item 2. It includes four subsequences:
+
+
+", revisions="
+
+-
+August 9, 2019, by Jianjun Hu:
+First implementation.
+
+
+"));
+end Controller;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Towers/FanSpeed/ReturnWaterTemperature/Subsequences/Coupled.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Towers/FanSpeed/ReturnWaterTemperature/Subsequences/Coupled.mo
new file mode 100644
index 00000000000..ba4adfbb37e
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Towers/FanSpeed/ReturnWaterTemperature/Subsequences/Coupled.mo
@@ -0,0 +1,232 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Towers.FanSpeed.ReturnWaterTemperature.Subsequences;
+block Coupled
+ "Sequence of defining cooling tower fan speed when the plant is close coupled"
+
+ parameter Integer nChi = 2 "Total number of chillers";
+ parameter Integer nConWatPum = 2 "Total number of condenser water pumps";
+ parameter Real fanSpeMin = 0.1 "Minimum cooling tower fan speed";
+ parameter Real pumSpeChe = 0.01
+ "Lower threshold value to check if condenser water pump is proven on";
+ parameter Buildings.Controls.OBC.CDL.Types.SimpleController controllerType=
+ Buildings.Controls.OBC.CDL.Types.SimpleController.PI "Type of controller"
+ annotation (Dialog(group="Controller"));
+ parameter Real k=1 "Gain of controller"
+ annotation (Dialog(group="Controller"));
+ parameter Real Ti(final quantity="Time", final unit="s")=0.5 "Time constant of integrator block"
+ annotation (Dialog(group="Controller"));
+ parameter Real Td(final quantity="Time", final unit="s")=0.1 "Time constant of derivative block"
+ annotation (Dialog(group="Controller", enable=
+ controllerType == Buildings.Controls.OBC.CDL.Types.SimpleController.PD or
+ controllerType == Buildings.Controls.OBC.CDL.Types.SimpleController.PID));
+ parameter Real yMax=1 "Upper limit of output"
+ annotation (Dialog(group="Controller"));
+ parameter Real yMin=0 "Lower limit of output"
+ annotation (Dialog(group="Controller"));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput TConWatRetSet(
+ final unit="K",
+ displayUnit="degC",
+ final quantity="ThermodynamicTemperature")
+ "Condenser water return temperature setpoint"
+ annotation (Placement(transformation(extent={{-160,60},{-120,100}}),
+ iconTransformation(extent={{-140,80},{-100,120}})));
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput TConWatRet(
+ final unit="K",
+ displayUnit="degC",
+ final quantity="ThermodynamicTemperature")
+ "Condenser water return temperature (condenser leaving)"
+ annotation (Placement(transformation(extent={{-160,30},{-120,70}}),
+ iconTransformation(extent={{-140,40},{-100,80}})));
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput uConWatPumSpe[nConWatPum](
+ final min=fill(0, nConWatPum),
+ final max=fill(1, nConWatPum),
+ final unit=fill("1", nConWatPum)) "Current condenser water pump speed"
+ annotation (Placement(transformation(extent={{-160,0},{-120,40}}),
+ iconTransformation(extent={{-140,0},{-100,40}})));
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput uMaxTowSpeSet[nChi](
+ final min=fill(0, nChi),
+ final max=fill(1, nChi),
+ final unit=fill("1", nChi))
+ "Maximum cooling tower speed setpoint from each chiller head pressure control loop"
+ annotation (Placement(transformation(extent={{-160,-40},{-120,0}}),
+ iconTransformation(extent={{-140,-40},{-100,0}})));
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uChi[nChi]
+ "Chiller enabling status: true=ON"
+ annotation (Placement(transformation(extent={{-160,-80},{-120,-40}}),
+ iconTransformation(extent={{-140,-80},{-100,-40}})));
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput plrTowMaxSpe(
+ final min=0,
+ final max=1,
+ final unit="1")
+ "Tower maximum speed that reset based on plant partial load ratio"
+ annotation (Placement(transformation(extent={{-160,-120},{-120,-80}}),
+ iconTransformation(extent={{-140,-120},{-100,-80}})));
+ Buildings.Controls.OBC.CDL.Interfaces.RealOutput ySpeSet(
+ final min=0,
+ final max=1,
+ final unit="1") "Fan speed setpoint of each cooling tower cell"
+ annotation (Placement(transformation(extent={{120,-60},{160,-20}}),
+ iconTransformation(extent={{100,-20},{140,20}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.PIDWithReset conPID(
+ final controllerType=controllerType,
+ final k=k,
+ final Ti=Ti,
+ final Td=Td,
+ final yMax=yMax,
+ final yMin=yMin,
+ final reverseActing=false,
+ final y_reset=yMin) "Condenser water return temperature controller"
+ annotation (Placement(transformation(extent={{-80,70},{-60,90}})));
+
+protected
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant minTowSpe(
+ final k=fanSpeMin) "Minimum tower speed"
+ annotation (Placement(transformation(extent={{-80,110},{-60,130}})));
+ Buildings.Controls.OBC.CDL.Continuous.Line CWRTSpd
+ "Fan speed calculated based on return water temperature control loop"
+ annotation (Placement(transformation(extent={{80,70},{100,90}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant zer(
+ final k=yMin) "Zero constant"
+ annotation (Placement(transformation(extent={{0,110},{20,130}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant one(
+ final k=yMax) "Constant one"
+ annotation (Placement(transformation(extent={{0,50},{20,70}})));
+ Buildings.Controls.OBC.CDL.Continuous.Hysteresis proOn[nConWatPum](
+ final uLow=fill(pumSpeChe, nConWatPum),
+ final uHigh=fill(2*pumSpeChe, nConWatPum))
+ "Check if the condenser water pump is proven on"
+ annotation (Placement(transformation(extent={{-100,10},{-80,30}})));
+ Buildings.Controls.OBC.CDL.Logical.MultiOr anyProOn(
+ final nin=nConWatPum)
+ "Check if there is any condenser water pump is proven on"
+ annotation (Placement(transformation(extent={{-60,10},{-40,30}})));
+ Buildings.Controls.OBC.CDL.Continuous.MultiMin fanSpe(final nin=3)
+ "Cooling tower fan speed"
+ annotation (Placement(transformation(extent={{20,-70},{40,-50}})));
+ Buildings.Controls.OBC.CDL.Continuous.MultiMin maxSpe(final nin=nChi)
+ "Lowest value of the maximum cooling tower speed from each chiller head pressure control loop"
+ annotation (Placement(transformation(extent={{-20,-70},{0,-50}})));
+ Buildings.Controls.OBC.CDL.Continuous.Switch swi "Logical switch"
+ annotation (Placement(transformation(extent={{80,-50},{100,-30}})));
+ Buildings.Controls.OBC.CDL.Continuous.Switch swi1[nChi] "Logical switch"
+ annotation (Placement(transformation(extent={{-60,-70},{-40,-50}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant one1[nChi](
+ final k=fill(1, nChi)) "Constant one"
+ annotation (Placement(transformation(extent={{-100,-90},{-80,-70}})));
+
+equation
+ connect(TConWatRet, conPID.u_m)
+ annotation (Line(points={{-140,50},{-70,50},{-70,68}}, color={0,0,127}));
+ connect(TConWatRetSet, conPID.u_s)
+ annotation (Line(points={{-140,80},{-82,80}}, color={0,0,127}));
+ connect(conPID.y, CWRTSpd.u)
+ annotation (Line(points={{-58,80},{78,80}}, color={0,0,127}));
+ connect(zer.y, CWRTSpd.x1)
+ annotation (Line(points={{22,120},{60,120},{60,88},{78,88}}, color={0,0,127}));
+ connect(minTowSpe.y, CWRTSpd.f1)
+ annotation (Line(points={{-58,120},{-20,120},{-20,84},{78,84}}, color={0,0,127}));
+ connect(one.y, CWRTSpd.x2)
+ annotation (Line(points={{22,60},{40,60},{40,76},{78,76}},
+ color={0,0,127}));
+ connect(one.y, CWRTSpd.f2)
+ annotation (Line(points={{22,60},{40,60},{40,72},{78,72}},
+ color={0,0,127}));
+ connect(uConWatPumSpe, proOn.u)
+ annotation (Line(points={{-140,20},{-102,20}}, color={0,0,127}));
+ connect(proOn.y, anyProOn.u)
+ annotation (Line(points={{-78,20},{-62,20}}, color={255,0,255}));
+ connect(anyProOn.y, conPID.trigger)
+ annotation (Line(points={{-38,20},{0,20},{0,40},{-76,40},{-76,68}},
+ color={255,0,255}));
+ connect(uChi, swi1.u2)
+ annotation (Line(points={{-140,-60},{-62,-60}}, color={255,0,255}));
+ connect(one1.y, swi1.u3)
+ annotation (Line(points={{-78,-80},{-70,-80},{-70,-68},{-62,-68}},
+ color={0,0,127}));
+ connect(uMaxTowSpeSet, swi1.u1)
+ annotation (Line(points={{-140,-20},{-80,-20},{-80,-52},{-62,-52}},
+ color={0,0,127}));
+ connect(swi1.y, maxSpe.u)
+ annotation (Line(points={{-38,-60},{-30,-60},{-30,-60},{-22,-60}},
+ color={0,0,127}));
+ connect(CWRTSpd.y, fanSpe.u[1])
+ annotation (Line(points={{102,80},{110,80},{110,40},{10,40},{10,-60.6667},{
+ 18,-60.6667}},color={0,0,127}));
+ connect(maxSpe.y, fanSpe.u[2])
+ annotation (Line(points={{2,-60},{18,-60}}, color={0,0,127}));
+ connect(plrTowMaxSpe, fanSpe.u[3])
+ annotation (Line(points={{-140,-100},{10,-100},{10,-59.3333},{18,-59.3333}},
+ color={0,0,127}));
+ connect(anyProOn.y, swi.u2)
+ annotation (Line(points={{-38,20},{0,20},{0,-40},{78,-40}}, color={255,0,255}));
+ connect(zer.y, swi.u3)
+ annotation (Line(points={{22,120},{60,120},{60,-48},{78,-48}},
+ color={0,0,127}));
+ connect(fanSpe.y, swi.u1)
+ annotation (Line(points={{42,-60},{50,-60},{50,-32},{78,-32}}, color={0,0,127}));
+ connect(swi.y,ySpeSet)
+ annotation (Line(points={{102,-40},{140,-40}}, color={0,0,127}));
+
+annotation (
+ defaultComponentName="couTowSpe",
+ Diagram(coordinateSystem(preserveAspectRatio=false, extent={{-120,-140},{120,140}})),
+ Icon(coordinateSystem(extent={{-100,-100},{100,100}}),
+ graphics={
+ Rectangle(
+ extent={{-100,-100},{100,100}},
+ lineColor={0,0,127},
+ fillColor={255,255,255},
+ fillPattern=FillPattern.Solid),
+ Text(
+ extent={{-120,146},{100,108}},
+ textColor={0,0,255},
+ textString="%name"),
+ Polygon(
+ points={{-20,80},{20,80},{0,10},{-20,80}},
+ lineColor={28,108,200},
+ fillColor={240,240,240},
+ fillPattern=FillPattern.Solid),
+ Rectangle(
+ extent={{-40,10},{40,-10}},
+ lineColor={28,108,200},
+ fillColor={240,240,240},
+ fillPattern=FillPattern.Solid),
+ Polygon(
+ points={{0,-10},{-20,-80},{20,-80},{0,-10}},
+ lineColor={28,108,200},
+ fillColor={240,240,240},
+ fillPattern=FillPattern.Solid)}),
+Documentation(info="
+
+Block that outputs cooling tower fan speed ySpeSet
based on the control
+of condenser water return temperature for the plant that is close coupled.
+This is implemented according to ASHRAE RP-1711 Advanced Sequences of Operation for
+HVAC Systems Phase II – Central Plants and Hydronic Systems (Draft on March 23,
+2020), section 5.2.12.2, item 2.e-f.
+
+
+-
+When any condenser water pump is proven on (
uConWatPumSpe
> 0),
+condenser water return temperature TConWatRet
shall be maintained at
+setpoint TConWatRetSet
by a direct acting PID loop. The loop output
+shall be mapped to the variable tower speed. Map the tower speed from minimum tower
+speed fanSpeMin
at 0% loop output to 100% speed at 100% loop output.
+
+-
+The output tower speed
ySpeSet
shall be the lowest value of tower speed
+from loop mapping, maximum cooling tower speed setpoint from each chiller head
+pressure control loop uMaxTowSpeSet
, and tower maximum speed that reset
+based on plant partial load ratio plrTowMaxSpe
. All operating fans shall
+receive the same speed signal.
+
+
+", revisions="
+
+-
+August 9, 2019, by Jianjun Hu:
+First implementation.
+
+
+"));
+end Coupled;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Towers/FanSpeed/ReturnWaterTemperature/Subsequences/Enable.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Towers/FanSpeed/ReturnWaterTemperature/Subsequences/Enable.mo
new file mode 100644
index 00000000000..adc78634710
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Towers/FanSpeed/ReturnWaterTemperature/Subsequences/Enable.mo
@@ -0,0 +1,378 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Towers.FanSpeed.ReturnWaterTemperature.Subsequences;
+block Enable "Sequence for enabling and disabling tower fan"
+
+ parameter Integer nChi=2 "Total number of chillers";
+ parameter Integer nTowCel=4 "Total number of cooling tower cells";
+ parameter Real fanSpeChe = 0.01 "Lower threshold value to check fan speed";
+ parameter Real fanSpeMin = 0.1 "Minimum tower fan speed";
+ parameter Real cheMinFanSpe(final quantity="Time", final unit="s")=300
+ "Threshold time for checking duration when tower fan equals to the minimum tower fan speed"
+ annotation (Dialog(tab="Advanced"));
+ parameter Real cheMaxTowSpe(final quantity="Time", final unit="s")=300
+ "Threshold time for checking duration when any enabled chiller maximum cooling speed equals to the minimum tower fan speed"
+ annotation (Dialog(tab="Advanced"));
+ parameter Real cheTowOff(final quantity="Time", final unit="s")=60
+ "Threshold time for checking duration when there is no enabled tower fan"
+ annotation (Dialog(tab="Advanced"));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput uMaxTowSpeSet[nChi](
+ final min=fill(0, nChi),
+ final max=fill(1, nChi),
+ final unit=fill("1", nChi))
+ "Maximum cooling tower speed setpoint from each chiller head pressure control loop"
+ annotation (Placement(transformation(extent={{-220,160},{-180,200}}),
+ iconTransformation(extent={{-140,80},{-100,120}})));
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput uFanSpe(
+ final min=0,
+ final max=1,
+ final unit="1") "Measured tower fan speed"
+ annotation (Placement(transformation(extent={{-220,100},{-180,140}}),
+ iconTransformation(extent={{-140,40},{-100,80}})));
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput TTowSet(
+ final unit="K",
+ displayUnit="degC",
+ final quantity="ThermodynamicTemperature")
+ "Setpoint of tower temperature, could be condenser water return or supply temperature"
+ annotation (Placement(transformation(extent={{-220,20},{-180,60}}),
+ iconTransformation(extent={{-140,0},{-100,40}})));
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput TTow(
+ final unit="K",
+ displayUnit="degC",
+ final quantity="ThermodynamicTemperature")
+ "Measured tower temperature, could be condenser water return or supply temperature"
+ annotation (Placement(transformation(extent={{-220,-20},{-180,20}}),
+ iconTransformation(extent={{-140,-40},{-100,0}})));
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uTow[nTowCel]
+ "Cooling tower operating status: true=running tower cell"
+ annotation (Placement(transformation(extent={{-220,-140},{-180,-100}}),
+ iconTransformation(extent={{-140,-80},{-100,-40}})));
+ Buildings.Controls.OBC.CDL.Interfaces.IntegerInput uConWatPumNum
+ "Number of enabled condenser water pumps"
+ annotation (Placement(transformation(extent={{-220,-180},{-180,-140}}),
+ iconTransformation(extent={{-140,-120},{-100,-80}})));
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanOutput yTow
+ "Tower fan status: true=enable any number of fans; false=disable all fans"
+ annotation (Placement(transformation(extent={{180,-180},{220,-140}}),
+ iconTransformation(extent={{100,-20},{140,20}})));
+
+protected
+ Buildings.Controls.OBC.CDL.Continuous.Subtract sub0[nChi]
+ "DIfference between enabled chiller head pressure control maximum tower speed and the minimum tower speed"
+ annotation (Placement(transformation(extent={{-70,150},{-50,170}})));
+ Buildings.Controls.OBC.CDL.Continuous.Hysteresis hys[nChi](
+ final uLow=fill(fanSpeChe, nChi),
+ final uHigh=fill(2*fanSpeChe, nChi))
+ "Check if chiller head pressure control maximum tower speed is greater than the minimum tower speed "
+ annotation (Placement(transformation(extent={{-40,150},{-20,170}})));
+ Buildings.Controls.OBC.CDL.Logical.MultiOr mulOr(final nin=nChi)
+ "Check if any enabled chiller head pressure control maximum tower speed equals to the minimum tower speed"
+ annotation (Placement(transformation(extent={{40,150},{60,170}})));
+ Buildings.Controls.OBC.CDL.Logical.Not not1[nChi] "Logical not"
+ annotation (Placement(transformation(extent={{0,150},{20,170}})));
+ Buildings.Controls.OBC.CDL.Logical.Timer tim(
+ final t=cheMaxTowSpe)
+ "Count the time when the chiller head pressure control maximum tower speed equals tower minimum speed"
+ annotation (Placement(transformation(extent={{80,150},{100,170}})));
+ Buildings.Controls.OBC.CDL.Continuous.Hysteresis hys1[nChi](
+ final uLow=fill(fanSpeChe, nChi),
+ final uHigh=fill(2*fanSpeChe, nChi))
+ "Check if chiller has been enabled, an enabled chiller will have the head pressure control maximum cooling tower speed that is greater than zero"
+ annotation (Placement(transformation(extent={{-140,170},{-120,190}})));
+ Buildings.Controls.OBC.CDL.Continuous.Switch swi[nChi] "Logical switch"
+ annotation (Placement(transformation(extent={{-100,150},{-80,170}})));
+ Buildings.Controls.OBC.CDL.Continuous.Subtract sub1
+ "Difference between tower fan speed and the minimum fan speed"
+ annotation (Placement(transformation(extent={{-90,110},{-70,130}})));
+ Buildings.Controls.OBC.CDL.Continuous.Hysteresis hys2(
+ final uLow=fanSpeChe,
+ final uHigh=2*fanSpeChe)
+ "Check if tower fan speed is greater than minimum speed"
+ annotation (Placement(transformation(extent={{-40,110},{-20,130}})));
+ Buildings.Controls.OBC.CDL.Logical.Not not2
+ "Check if tower fan speed equals to the minimum speed"
+ annotation (Placement(transformation(extent={{0,110},{20,130}})));
+ Buildings.Controls.OBC.CDL.Continuous.Subtract sub2
+ "Difference between the return water temperature and the adjusted setpoint"
+ annotation (Placement(transformation(extent={{-90,30},{-70,50}})));
+ Buildings.Controls.OBC.CDL.Continuous.Hysteresis hys3(
+ final uLow=0.1, final uHigh=0.15)
+ "Check if tower temperature is a delta below setpoint"
+ annotation (Placement(transformation(extent={{-40,30},{-20,50}})));
+ Buildings.Controls.OBC.CDL.Logical.And and2
+ "Tower fans have been at minimum speed for a threshold time and tower return water temperature drops below a adjusted setpoint"
+ annotation (Placement(transformation(extent={{80,70},{100,90}})));
+ Buildings.Controls.OBC.CDL.Logical.Or disTow "Disable tower fans"
+ annotation (Placement(transformation(extent={{120,110},{140,130}})));
+ Buildings.Controls.OBC.CDL.Logical.MultiOr mulOr1(final nin=nTowCel)
+ "True when any tower fan is enaled"
+ annotation (Placement(transformation(extent={{-140,-130},{-120,-110}})));
+ Buildings.Controls.OBC.CDL.Logical.Not not3 "No enabled tower fan"
+ annotation (Placement(transformation(extent={{-60,-130},{-40,-110}})));
+ Buildings.Controls.OBC.CDL.Logical.Timer tim1(
+ final t=cheTowOff)
+ "Count the time when all tower cells are off"
+ annotation (Placement(transformation(extent={{-20,-130},{0,-110}})));
+ Buildings.Controls.OBC.CDL.Continuous.Subtract sub3
+ "Difference between the return water temperature and the adjusted setpoint"
+ annotation (Placement(transformation(extent={{-60,-50},{-40,-30}})));
+ Buildings.Controls.OBC.CDL.Continuous.Hysteresis hys4(
+ final uLow=0.1,
+ final uHigh=0.15)
+ "Check if tower temperature is above the adjusted setpoint"
+ annotation (Placement(transformation(extent={{20,-50},{40,-30}})));
+ Buildings.Controls.OBC.CDL.Logical.MultiAnd mulAnd(final nin=nChi)
+ "Check if all enabled chillers head pressure control maximum tower speed are greater than tower minimum speed"
+ annotation (Placement(transformation(extent={{20,-10},{40,10}})));
+ Buildings.Controls.OBC.CDL.Logical.And3 enaTow
+ "Check if tower fans should be enabled"
+ annotation (Placement(transformation(extent={{60,-50},{80,-30}})));
+ Buildings.Controls.OBC.CDL.Integers.Equal intEqu
+ "Check integer number equality"
+ annotation (Placement(transformation(extent={{-80,-170},{-60,-150}})));
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant conInt(
+ final k=0) "Zero constant"
+ annotation (Placement(transformation(extent={{-140,-190},{-120,-170}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant minTowSpe[nChi](
+ final k=fill(fanSpeMin, nChi))
+ "Minimum tower speed"
+ annotation (Placement(transformation(extent={{-140,70},{-120,90}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant one[nChi](
+ final k=fill(1, nChi)) "Constant one"
+ annotation (Placement(transformation(extent={{-140,130},{-120,150}})));
+ Buildings.Controls.OBC.CDL.Continuous.AddParameter addPar(
+ final p=5/9) "Tower temperature setpoint plus 1 degF"
+ annotation (Placement(transformation(extent={{-140,-90},{-120,-70}})));
+ Buildings.Controls.OBC.CDL.Continuous.AddParameter addPar1(
+ final p=-5/9)
+ "Temperature of a delta value below the tower temperature setpoint"
+ annotation (Placement(transformation(extent={{-140,30},{-120,50}})));
+ Buildings.Controls.OBC.CDL.Logical.Timer tim2(
+ final t=cheMinFanSpe)
+ "Count the time when the tower fan is at minimum speed"
+ annotation (Placement(transformation(extent={{40,110},{60,130}})));
+ Buildings.Controls.OBC.CDL.Logical.Switch logSwi2 "Logical switch"
+ annotation (Placement(transformation(extent={{140,-170},{160,-150}})));
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant disFan1(
+ final k=false)
+ "Disable tower fan when no condenser water pump is ON"
+ annotation (Placement(transformation(extent={{80,-190},{100,-170}})));
+ Buildings.Controls.OBC.CDL.Logical.Switch logSwi1 "Logical switch"
+ annotation (Placement(transformation(extent={{140,-100},{160,-80}})));
+ Buildings.Controls.OBC.CDL.Logical.Or chaTow "Change tower status"
+ annotation (Placement(transformation(extent={{120,30},{140,50}})));
+
+equation
+ connect(sub0.y, hys.u)
+ annotation (Line(points={{-48,160},{-42,160}}, color={0,0,127}));
+ connect(hys.y, not1.u)
+ annotation (Line(points={{-18,160},{-2,160}}, color={255,0,255}));
+ connect(mulOr.y, tim.u)
+ annotation (Line(points={{62,160},{78,160}}, color={255,0,255}));
+ connect(uMaxTowSpeSet, hys1.u)
+ annotation (Line(points={{-200,180},{-142,180}}, color={0,0,127}));
+ connect(hys1.y, swi.u2)
+ annotation (Line(points={{-118,180},{-110,180},{-110,160},{-102,160}},
+ color={255,0,255}));
+ connect(uMaxTowSpeSet, swi.u1)
+ annotation (Line(points={{-200,180},{-160,180},{-160,168},{-102,168}},
+ color={0,0,127}));
+ connect(one.y, swi.u3)
+ annotation (Line(points={{-118,140},{-110,140},{-110,152},{-102,152}},
+ color={0,0,127}));
+ connect(swi.y, sub0.u1)
+ annotation (Line(points={{-78,160},{-76,160},{-76,166},{-72,166}},
+ color={0,0,127}));
+ connect(uFanSpe, sub1.u1)
+ annotation (Line(points={{-200,120},{-146,120},{-146,126},{-92,126}},
+ color={0,0,127}));
+ connect(sub1.y, hys2.u)
+ annotation (Line(points={{-68,120},{-42,120}}, color={0,0,127}));
+ connect(hys2.y, not2.u)
+ annotation (Line(points={{-18,120},{-2,120}}, color={255,0,255}));
+ connect(sub2.y, hys3.u)
+ annotation (Line(points={{-68,40},{-42,40}}, color={0,0,127}));
+ connect(hys3.y, and2.u2)
+ annotation (Line(points={{-18,40},{70,40},{70,72},{78,72}}, color={255,0,255}));
+ connect(and2.y, disTow.u2)
+ annotation (Line(points={{102,80},{110,80},{110,112},{118,112}},
+ color={255,0,255}));
+ connect(mulOr1.y, not3.u)
+ annotation (Line(points={{-118,-120},{-62,-120}}, color={255,0,255}));
+ connect(not3.y, tim1.u)
+ annotation (Line(points={{-38,-120},{-22,-120}}, color={255,0,255}));
+ connect(TTow, sub3.u1)
+ annotation (Line(points={{-200,0},{-80,0},{-80,-34},{-62,-34}},
+ color={0,0,127}));
+ connect(sub3.y, hys4.u)
+ annotation (Line(points={{-38,-40},{18,-40}}, color={0,0,127}));
+ connect(mulAnd.y, enaTow.u1)
+ annotation (Line(points={{42,0},{50,0},{50,-32},{58,-32}}, color={255,0,255}));
+ connect(hys4.y, enaTow.u2)
+ annotation (Line(points={{42,-40},{58,-40}}, color={255,0,255}));
+ connect(not1.y, mulOr.u)
+ annotation (Line(points={{22,160},{38,160}}, color={255,0,255}));
+ connect(hys.y, mulAnd.u)
+ annotation (Line(points={{-18,160},{-10,160},{-10,0},{18,0}}, color={255,0,255}));
+ connect(uTow, mulOr1.u)
+ annotation (Line(points={{-200,-120},{-142,-120}}, color={255,0,255}));
+ connect(uConWatPumNum, intEqu.u1)
+ annotation (Line(points={{-200,-160},{-82,-160}}, color={255,127,0}));
+ connect(conInt.y, intEqu.u2)
+ annotation (Line(points={{-118,-180},{-100,-180},{-100,-168},{-82,-168}},
+ color={255,127,0}));
+ connect(TTowSet, addPar1.u)
+ annotation (Line(points={{-200,40},{-172,40},{-172,40},{-142,40}}, color={0,0,127}));
+ connect(addPar1.y, sub2.u1)
+ annotation (Line(points={{-118,40},{-106,40},{-106,46},{-92,46}}, color={0,0,127}));
+ connect(TTowSet, addPar.u)
+ annotation (Line(points={{-200,40},{-160,40},{-160,-80},{-142,-80}}, color={0,0,127}));
+ connect(not2.y, tim2.u)
+ annotation (Line(points={{22,120},{38,120}}, color={255,0,255}));
+ connect(disFan1.y, logSwi2.u1)
+ annotation (Line(points={{102,-180},{120,-180},{120,-152},{138,-152}},
+ color={255,0,255}));
+ connect(intEqu.y, logSwi2.u2)
+ annotation (Line(points={{-58,-160},{138,-160}},
+ color={255,0,255}));
+ connect(logSwi2.y, yTow)
+ annotation (Line(points={{162,-160},{200,-160}}, color={255,0,255}));
+ connect(mulOr1.y, logSwi1.u3)
+ annotation (Line(points={{-118,-120},{-100,-120},{-100,-98},{138,-98}},
+ color={255,0,255}));
+ connect(enaTow.y, chaTow.u2)
+ annotation (Line(points={{82,-40},{100,-40},{100,32},{118,32}}, color={255,0,255}));
+ connect(disTow.y, chaTow.u1)
+ annotation (Line(points={{142,120},{150,120},{150,60},{100,60},{100,40},
+ {118,40}}, color={255,0,255}));
+ connect(chaTow.y, logSwi1.u2)
+ annotation (Line(points={{142,40},{150,40},{150,-60},{120,-60},{120,-90},
+ {138,-90}}, color={255,0,255}));
+ connect(logSwi1.y, logSwi2.u3)
+ annotation (Line(points={{162,-90},{170,-90},{170,-140},{130,-140},{130,-168},
+ {138,-168}}, color={255,0,255}));
+ connect(enaTow.y, logSwi1.u1)
+ annotation (Line(points={{82,-40},{100,-40},{100,-82},{138,-82}},
+ color={255,0,255}));
+ connect(tim2.passed, and2.u1) annotation (Line(points={{62,112},{70,112},{70,80},
+ {78,80}}, color={255,0,255}));
+ connect(tim.passed, disTow.u1) annotation (Line(points={{102,152},{110,152},{110,
+ 120},{118,120}}, color={255,0,255}));
+ connect(tim1.passed, enaTow.u3) annotation (Line(points={{2,-128},{50,-128},{50,
+ -48},{58,-48}}, color={255,0,255}));
+ connect(addPar.y, sub3.u2) annotation (Line(points={{-118,-80},{-80,-80},{-80,
+ -46},{-62,-46}}, color={0,0,127}));
+ connect(TTow, sub2.u2) annotation (Line(points={{-200,0},{-100,0},{-100,34},{-92,
+ 34}}, color={0,0,127}));
+ connect(minTowSpe.y, sub0.u2) annotation (Line(points={{-118,80},{-60,80},{-60,
+ 142},{-76,142},{-76,154},{-72,154}}, color={0,0,127}));
+ connect(minTowSpe[1].y, sub1.u2) annotation (Line(points={{-118,80},{-102,80},
+ {-102,114},{-92,114}}, color={0,0,127}));
+
+annotation (
+ defaultComponentName="enaTow",
+ Diagram(coordinateSystem(preserveAspectRatio=false,
+ extent={{-180,-200},{180,200}}), graphics={
+ Rectangle(
+ extent={{-178,18},{178,-138}},
+ fillColor={210,210,210},
+ fillPattern=FillPattern.Solid,
+ pattern=LinePattern.None),
+ Rectangle(
+ extent={{-178,198},{178,22}},
+ fillColor={210,210,210},
+ fillPattern=FillPattern.Solid,
+ pattern=LinePattern.None),
+ Rectangle(
+ extent={{-178,-142},{178,-198}},
+ fillColor={210,210,210},
+ fillPattern=FillPattern.Solid,
+ pattern=LinePattern.None),
+ Text(
+ extent={{74,194},{152,184}},
+ pattern=LinePattern.None,
+ fillColor={210,210,210},
+ fillPattern=FillPattern.Solid,
+ textColor={0,0,127},
+ horizontalAlignment=TextAlignment.Left,
+ textString="Disable tower fans"),
+ Text(
+ extent={{72,14},{150,4}},
+ pattern=LinePattern.None,
+ fillColor={210,210,210},
+ fillPattern=FillPattern.Solid,
+ textColor={0,0,127},
+ horizontalAlignment=TextAlignment.Left,
+ textString="Enable tower fans"),
+ Text(
+ extent={{-104,-178},{68,-198}},
+ pattern=LinePattern.None,
+ fillColor={210,210,210},
+ fillPattern=FillPattern.Solid,
+ textColor={0,0,127},
+ horizontalAlignment=TextAlignment.Left,
+ textString="Disable tower fans when no running condenser water pump")}),
+ Icon(graphics={
+ Rectangle(
+ extent={{-100,-100},{100,100}},
+ lineColor={0,0,127},
+ fillColor={255,255,255},
+ fillPattern=FillPattern.Solid),
+ Text(
+ extent={{-120,146},{100,108}},
+ textColor={0,0,255},
+ textString="%name")}),
+Documentation(info="
+
+Block that outputs signal yTowSta
for enabling and disabling cooling tower
+fan. This is implemented according to ASHRAE RP-1711 Advanced Sequences of Operation for
+HVAC Systems Phase II – Central Plants and Hydronic Systems (Draft on March 23,
+2020), section 5.2.12.2, item 2.j-l.
+
+
+1. Disable the tower fans if either:
+
+
+-
+Any enabled chiller’s head pressure control maximum tower fan speed
uMaxTowSpeSet
+has equaled tower minimum speed fanSpeMin
for 5 minutes, or
+
+-
+Tower fans
uTowSpe
have been at minimum speed fanSpeMin
for
+5 minutes and tower temperature TTow
drops below setpoint
+TTowSet
minus 1 °F.
+
+
+
+2. Enable the tower fans if:
+
+
+-
+They have been off (
uTowSta=false
) for at least 1 minute, and
+
+-
+The tower temperature
TTow
rises above setpoint TTowSet
+by 1 °F, and
+
+-
+All enabled chillers’ head pressure control maximum tower fan speed
uMaxTowSpeSet
+are greater than tower minimum speed fanSpeMin
.
+
+
+
+3. When all condenser water pumps are commanded OFF, disable the PID loop and
+stop all tower fans.
+
+
+Note that the tower temperature TTow
could be condenser water return
+temperature or condenser water supply temperature, depending on whether the fan
+speed control is to maintain return temperature or supply temperature.
+
+", revisions="
+
+-
+August 9, 2019, by Jianjun Hu:
+First implementation.
+
+
+"));
+end Enable;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Towers/FanSpeed/ReturnWaterTemperature/Subsequences/LessCoupled.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Towers/FanSpeed/ReturnWaterTemperature/Subsequences/LessCoupled.mo
new file mode 100644
index 00000000000..5d159907f56
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Towers/FanSpeed/ReturnWaterTemperature/Subsequences/LessCoupled.mo
@@ -0,0 +1,369 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Towers.FanSpeed.ReturnWaterTemperature.Subsequences;
+block LessCoupled
+ "Sequence of defining cooling tower fan speed when the plant is not close coupled"
+
+ parameter Integer nChi = 2 "Total number of chillers";
+ parameter Integer nConWatPum = 2 "Total number of condenser water pumps";
+ parameter Real pumSpeChe = 0.01
+ "Lower threshold value to check if condenser water pump is proven on";
+ parameter Real fanSpeMin = 0.1
+ "Minimum cooling tower fan speed";
+
+ parameter Real samplePeriod(
+ final quantity="Time",
+ final unit="s",
+ final max=30) = 30
+ "Period of sampling condenser water supply and return temperature difference"
+ annotation (Dialog(group="Return water temperature controller"));
+ parameter Real iniPlaTim(final quantity="Time", final unit="s") = 300
+ "Threshold time to hold the initial temperature difference at the plant initial stage"
+ annotation (Dialog(group="Return water temperature controller"));
+ parameter Real TConWatSup_nominal[nChi](
+ final unit=fill("K",nChi),
+ final quantity=fill("ThermodynamicTemperature",nChi),
+ displayUnit=fill("degC",nChi)) = {293.15, 293.15}
+ "Design condenser water supply temperature (condenser entering) of each chiller"
+ annotation (Dialog(group="Return water temperature controller"));
+ parameter Real TConWatRet_nominal[nChi](
+ final unit=fill("K",nChi),
+ final quantity=fill("ThermodynamicTemperature",nChi),
+ displayUnit=fill("degC",nChi)) = {303.15, 303.15}
+ "Design condenser water return temperature (condenser leaving) of each chiller"
+ annotation (Dialog(group="Return water temperature controller"));
+
+ parameter Buildings.Controls.OBC.CDL.Types.SimpleController supWatCon=
+ Buildings.Controls.OBC.CDL.Types.SimpleController.PI
+ "Supply water temperature controller"
+ annotation (Dialog(group="Supply water temperature controller"));
+ parameter Real kSupCon=1 "Gain of controller"
+ annotation (Dialog(group="Supply water temperature controller"));
+ parameter Real TiSupCon(final quantity="Time", final unit="s")=0.5 "Time constant of integrator block"
+ annotation (Dialog(group="Supply water temperature controller"));
+ parameter Real TdSupCon(final quantity="Time", final unit="s")=0.1 "Time constant of derivative block"
+ annotation (Dialog(group="Supply water temperature controller", enable=
+ supWatCon == Buildings.Controls.OBC.CDL.Types.SimpleController.PD or
+ supWatCon == Buildings.Controls.OBC.CDL.Types.SimpleController.PID));
+ parameter Real ySupConMax=1 "Upper limit of output"
+ annotation (Dialog(group="Supply water temperature controller"));
+ parameter Real ySupConMin=0 "Lower limit of output"
+ annotation (Dialog(group="Supply water temperature controller"));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput TConWatRetSet(
+ final unit="K",
+ displayUnit="degC",
+ final quantity="ThermodynamicTemperature")
+ "Condenser water return temperature setpoint"
+ annotation (Placement(transformation(extent={{-220,160},{-180,200}}),
+ iconTransformation(extent={{-140,80},{-100,120}})));
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput TConWatRet(
+ final unit="K",
+ displayUnit="degC",
+ final quantity="ThermodynamicTemperature")
+ "Condenser water return temperature (condenser leaving)"
+ annotation (Placement(transformation(extent={{-220,130},{-180,170}}),
+ iconTransformation(extent={{-140,60},{-100,100}})));
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uPla
+ "Plant enabling status"
+ annotation (Placement(transformation(extent={{-220,80},{-180,120}}),
+ iconTransformation(extent={{-140,30},{-100,70}})));
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput uConWatPumSpe[nConWatPum](
+ final min=fill(0, nConWatPum),
+ final max=fill(1, nConWatPum),
+ final unit=fill("1", nConWatPum)) "Current condenser water pump speed"
+ annotation (Placement(transformation(extent={{-220,-40},{-180,0}}),
+ iconTransformation(extent={{-140,0},{-100,40}})));
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput TConWatSup(
+ final unit="K",
+ displayUnit="degC",
+ final quantity="ThermodynamicTemperature")
+ "Condenser water supply temperature (condenser entering)"
+ annotation (Placement(transformation(extent={{-220,-80},{-180,-40}}),
+ iconTransformation(extent={{-140,-40},{-100,0}})));
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput uMaxTowSpeSet[nChi](
+ final min=fill(0, nChi),
+ final max=fill(1, nChi),
+ final unit=fill("1", nChi))
+ "Maximum cooling tower speed setpoint from each chiller head pressure control loop"
+ annotation (Placement(transformation(extent={{-220,-110},{-180,-70}}),
+ iconTransformation(extent={{-140,-70},{-100,-30}})));
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uChi[nChi]
+ "Chiller enabling status: true=ON"
+ annotation (Placement(transformation(extent={{-220,-140},{-180,-100}}),
+ iconTransformation(extent={{-140,-90},{-100,-50}})));
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput plrTowMaxSpe(
+ final min=0,
+ final max=1,
+ final unit="1")
+ "Tower maximum speed that reset based on plant partial load ratio"
+ annotation (Placement(transformation(extent={{-220,-200},{-180,-160}}),
+ iconTransformation(extent={{-140,-120},{-100,-80}})));
+ Buildings.Controls.OBC.CDL.Interfaces.RealOutput TConWatSupSet(
+ final unit="K",
+ displayUnit="degC",
+ final quantity="ThermodynamicTemperature")
+ "Condenser water supply temperature setpoint"
+ annotation (Placement(transformation(extent={{160,130},{200,170}}),
+ iconTransformation(extent={{100,60},{140,100}})));
+ Buildings.Controls.OBC.CDL.Interfaces.RealOutput ySpeSet(
+ final min=0,
+ final max=1,
+ final unit="1") "Fan speed setpoint of each cooling tower cell"
+ annotation (Placement(transformation(extent={{160,-160},{200,-120}}),
+ iconTransformation(extent={{100,-20},{140,20}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.PIDWithReset supCon(
+ final controllerType=supWatCon,
+ final k=kSupCon,
+ final Ti=TiSupCon,
+ final Td=TdSupCon,
+ final yMax=ySupConMax,
+ final yMin=ySupConMin,
+ final reverseActing=false,
+ final y_reset=ySupConMin) "Condenser water supply temperature controller"
+ annotation (Placement(transformation(extent={{-20,-40},{0,-20}})));
+
+protected
+ Buildings.Controls.OBC.CDL.Continuous.Hysteresis proOn[nConWatPum](
+ final uLow=fill(pumSpeChe, nConWatPum),
+ final uHigh=fill(2*pumSpeChe, nConWatPum))
+ "Check if the condenser water pump is proven on"
+ annotation (Placement(transformation(extent={{-140,-30},{-120,-10}})));
+ Buildings.Controls.OBC.CDL.Logical.MultiOr anyProOn(
+ final nin=nConWatPum)
+ "Check if any condenser water pump is proven on"
+ annotation (Placement(transformation(extent={{-100,-30},{-80,-10}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant minTowSpe(
+ final k=fanSpeMin) "Minimum tower speed"
+ annotation (Placement(transformation(extent={{-20,-10},{0,10}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant zer1(
+ final k=ySupConMin)
+ "Zero constant"
+ annotation (Placement(transformation(extent={{40,-10},{60,10}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant one1(
+ final k=ySupConMax) "Maximum speed"
+ annotation (Placement(transformation(extent={{-20,-90},{0,-70}})));
+ Buildings.Controls.OBC.CDL.Continuous.Line CWSTSpd
+ "Fan speed calculated based on supply water temperature control"
+ annotation (Placement(transformation(extent={{100,-40},{120,-20}})));
+ Buildings.Controls.OBC.CDL.Continuous.MultiMin maxSpe(final nin=nChi)
+ "Lowest value of the maximum cooling tower speed from each chiller head pressure control loop"
+ annotation (Placement(transformation(extent={{0,-130},{20,-110}})));
+ Buildings.Controls.OBC.CDL.Continuous.MultiMin fanSpe(final nin=3)
+ "Cooling tower fan speed"
+ annotation (Placement(transformation(extent={{60,-130},{80,-110}})));
+ Buildings.Controls.OBC.CDL.Continuous.Switch swi "Logical switch"
+ annotation (Placement(transformation(extent={{120,-150},{140,-130}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant zer2(final k=0)
+ "Zero constant"
+ annotation (Placement(transformation(extent={{60,-180},{80,-160}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant one2[nChi](
+ final k=fill(1,nChi)) "Constant one"
+ annotation (Placement(transformation(extent={{-160,-160},{-140,-140}})));
+ Buildings.Controls.OBC.CDL.Continuous.Switch swi1[nChi] "Logical switch"
+ annotation (Placement(transformation(extent={{-40,-130},{-20,-110}})));
+ Buildings.Controls.OBC.CDL.Conversions.BooleanToReal booToRea[nChi]
+ "Convert chiller status to real number, true becomes 1 and false becomes 0"
+ annotation (Placement(transformation(extent={{-140,40},{-120,60}})));
+ Buildings.Controls.OBC.CDL.Continuous.MultiplyByParameter enaDesConWatRet[nChi](
+ final k=TConWatRet_nominal)
+ "Design condenser water return temperature of the enabled chiller"
+ annotation (Placement(transformation(extent={{-80,60},{-60,80}})));
+ Buildings.Controls.OBC.CDL.Continuous.MultiplyByParameter enaDesConWatSup[nChi](
+ final k=TConWatSup_nominal)
+ "Design condenser water supply temperature of the enabled chiller"
+ annotation (Placement(transformation(extent={{-80,20},{-60,40}})));
+ Buildings.Controls.OBC.CDL.Continuous.Subtract sub2[nChi]
+ "Difference of the design supply and return condenser water temperature"
+ annotation (Placement(transformation(extent={{-40,40},{-20,60}})));
+ Buildings.Controls.OBC.CDL.Continuous.MultiMax multiMax(nin=nChi)
+ "Difference of the design supply and return condenser water temperature of the enabled chiller"
+ annotation (Placement(transformation(extent={{20,40},{40,60}})));
+ Buildings.Controls.OBC.CDL.Logical.Timer tim(final t=iniPlaTim)
+ "Count the time after plant being enabled"
+ annotation (Placement(transformation(extent={{-140,90},{-120,110}})));
+ Buildings.Controls.OBC.CDL.Continuous.Switch delTem "Temperature difference value"
+ annotation (Placement(transformation(extent={{60,90},{80,110}})));
+ Buildings.Controls.OBC.CDL.Continuous.Subtract meaTemDif
+ "Difference of the condenser return and supply water temperature"
+ annotation (Placement(transformation(extent={{-140,130},{-120,150}})));
+ Buildings.Controls.OBC.CDL.Continuous.MovingAverage movMea(
+ final delta=300)
+ "Moving average of the sampled temperature difference"
+ annotation (Placement(transformation(extent={{-60,130},{-40,150}})));
+ Buildings.Controls.OBC.CDL.Discrete.Sampler sam(
+ final samplePeriod=samplePeriod)
+ "Sample the temperature difference"
+ annotation (Placement(transformation(extent={{-100,130},{-80,150}})));
+ Buildings.Controls.OBC.CDL.Continuous.Subtract conWatSupSet
+ "Condenser water supply temperature setpoint"
+ annotation (Placement(transformation(extent={{100,140},{120,160}})));
+ Buildings.Controls.OBC.CDL.Continuous.MultiplyByParameter gai[nChi](
+ final k=fill(0.5, nChi))
+ "Gain factor"
+ annotation (Placement(transformation(extent={{-10,40},{10,60}})));
+
+equation
+ connect(proOn.y,anyProOn. u)
+ annotation (Line(points={{-118,-20},{-102,-20}}, color={255,0,255}));
+ connect(uConWatPumSpe, proOn.u)
+ annotation (Line(points={{-200,-20},{-142,-20}}, color={0,0,127}));
+ connect(zer1.y, CWSTSpd.x1)
+ annotation (Line(points={{62,0},{80,0},{80,-22},{98,-22}}, color={0,0,127}));
+ connect(minTowSpe.y, CWSTSpd.f1)
+ annotation (Line(points={{2,0},{20,0},{20,-26},{98,-26}},
+ color={0,0,127}));
+ connect(supCon.y, CWSTSpd.u)
+ annotation (Line(points={{2,-30},{98,-30}}, color={0,0,127}));
+ connect(TConWatSup, supCon.u_m)
+ annotation (Line(points={{-200,-60},{-10,-60},{-10,-42}}, color={0,0,127}));
+ connect(one1.y, CWSTSpd.x2)
+ annotation (Line(points={{2,-80},{20,-80},{20,-34},{98,-34}}, color={0,0,127}));
+ connect(one1.y, CWSTSpd.f2)
+ annotation (Line(points={{2,-80},{20,-80},{20,-38},{98,-38}}, color={0,0,127}));
+ connect(CWSTSpd.y, fanSpe.u[1])
+ annotation (Line(points={{122,-30},{140,-30},{140,-80},{40,-80},{40,
+ -120.667},{58,-120.667}},
+ color={0,0,127}));
+ connect(maxSpe.y, fanSpe.u[2])
+ annotation (Line(points={{22,-120},{58,-120}},color={0,0,127}));
+ connect(plrTowMaxSpe, fanSpe.u[3])
+ annotation (Line(points={{-200,-180},{40,-180},{40,-119.333},{58,-119.333}},
+ color={0,0,127}));
+ connect(anyProOn.y, supCon.trigger)
+ annotation (Line(points={{-78,-20},{-60,-20},{-60,-50},{-16,-50},{-16,-42}},
+ color={255,0,255}));
+ connect(fanSpe.y, swi.u1)
+ annotation (Line(points={{82,-120},{100,-120},{100,-132},{118,-132}},
+ color={0,0,127}));
+ connect(anyProOn.y, swi.u2)
+ annotation (Line(points={{-78,-20},{-60,-20},{-60,-140},{118,-140}},
+ color={255,0,255}));
+ connect(zer2.y, swi.u3)
+ annotation (Line(points={{82,-170},{100,-170},{100,-148},{118,-148}},
+ color={0,0,127}));
+ connect(swi1.y, maxSpe.u)
+ annotation (Line(points={{-18,-120},{-2,-120}},
+ color={0,0,127}));
+ connect(uChi, swi1.u2)
+ annotation (Line(points={{-200,-120},{-42,-120}}, color={255,0,255}));
+ connect(uMaxTowSpeSet, swi1.u1)
+ annotation (Line(points={{-200,-90},{-120,-90},{-120,-112},{-42,-112}},
+ color={0,0,127}));
+ connect(one2.y, swi1.u3)
+ annotation (Line(points={{-138,-150},{-120,-150},{-120,-128},{-42,-128}},
+ color={0,0,127}));
+ connect(swi.y,ySpeSet)
+ annotation (Line(points={{142,-140},{180,-140}},color={0,0,127}));
+ connect(uChi, booToRea.u) annotation (Line(points={{-200,-120},{-170,-120},{-170,
+ 50},{-142,50}}, color={255,0,255}));
+ connect(booToRea.y, enaDesConWatRet.u) annotation (Line(points={{-118,50},{-100,
+ 50},{-100,70},{-82,70}}, color={0,0,127}));
+ connect(booToRea.y, enaDesConWatSup.u) annotation (Line(points={{-118,50},{-100,
+ 50},{-100,30},{-82,30}}, color={0,0,127}));
+ connect(enaDesConWatRet.y, sub2.u1) annotation (Line(points={{-58,70},{-50,70},
+ {-50,56},{-42,56}}, color={0,0,127}));
+ connect(enaDesConWatSup.y, sub2.u2) annotation (Line(points={{-58,30},{-50,30},
+ {-50,44},{-42,44}}, color={0,0,127}));
+ connect(uPla, tim.u)
+ annotation (Line(points={{-200,100},{-142,100}}, color={255,0,255}));
+ connect(multiMax.y, delTem.u3) annotation (Line(points={{42,50},{50,50},{50,92},
+ {58,92}}, color={0,0,127}));
+ connect(TConWatSup, meaTemDif.u2) annotation (Line(points={{-200,-60},{-160,-60},
+ {-160,134},{-142,134}}, color={0,0,127}));
+ connect(TConWatRet, meaTemDif.u1) annotation (Line(points={{-200,150},{-160,150},
+ {-160,146},{-142,146}}, color={0,0,127}));
+ connect(meaTemDif.y, sam.u)
+ annotation (Line(points={{-118,140},{-102,140}}, color={0,0,127}));
+ connect(sam.y, movMea.u)
+ annotation (Line(points={{-78,140},{-62,140}}, color={0,0,127}));
+ connect(movMea.y, delTem.u1) annotation (Line(points={{-38,140},{50,140},{50,108},
+ {58,108}}, color={0,0,127}));
+ connect(conWatSupSet.y, TConWatSupSet)
+ annotation (Line(points={{122,150},{180,150}}, color={0,0,127}));
+ connect(TConWatRetSet, conWatSupSet.u1) annotation (Line(points={{-200,180},{80,
+ 180},{80,156},{98,156}}, color={0,0,127}));
+ connect(delTem.y, conWatSupSet.u2) annotation (Line(points={{82,100},{90,100},
+ {90,144},{98,144}}, color={0,0,127}));
+ connect(conWatSupSet.y, supCon.u_s) annotation (Line(points={{122,150},{140,150},
+ {140,20},{-40,20},{-40,-30},{-22,-30}}, color={0,0,127}));
+ connect(tim.passed, delTem.u2) annotation (Line(points={{-118,92},{-40,92},{-40,
+ 100},{58,100}}, color={255,0,255}));
+ connect(sub2.y, gai.u)
+ annotation (Line(points={{-18,50},{-12,50}}, color={0,0,127}));
+ connect(gai.y, multiMax.u)
+ annotation (Line(points={{12,50},{18,50}}, color={0,0,127}));
+
+annotation (
+ defaultComponentName="lesCouTowSpe",
+ Diagram(coordinateSystem(preserveAspectRatio=false, extent={{-180,-200},{160,200}})),
+ Icon(coordinateSystem(extent={{-100,-100},{100,100}}),
+ graphics={
+ Rectangle(
+ extent={{-100,-100},{100,100}},
+ lineColor={0,0,127},
+ fillColor={255,255,255},
+ fillPattern=FillPattern.Solid),
+ Text(
+ extent={{-120,146},{100,108}},
+ textColor={0,0,255},
+ textString="%name"),
+ Polygon(
+ points={{-20,80},{20,80},{0,10},{-20,80}},
+ lineColor={28,108,200},
+ fillColor={240,240,240},
+ fillPattern=FillPattern.Solid),
+ Rectangle(
+ extent={{-40,10},{40,-10}},
+ lineColor={28,108,200},
+ fillColor={240,240,240},
+ fillPattern=FillPattern.Solid),
+ Polygon(
+ points={{0,-10},{-20,-80},{20,-80},{0,-10}},
+ lineColor={28,108,200},
+ fillColor={240,240,240},
+ fillPattern=FillPattern.Solid)}),
+Documentation(info="
+
+Block that outputs cooling tower fan speed ySpeSet
based on the control
+of condenser water return temperature for the plant that is not closed coupled.
+This is implemented according to ASHRAE RP-1711 Advanced Sequences of Operation for
+HVAC Systems Phase II – Central Plants and Hydronic Systems (Draft on March 23,
+2020), section 5.2.12.2, item 2.g-i.
+
+
+-
+When any condenser water pump is proven on (
uConWatPumSpe
> 0),
+condenser water supply temperature setpoint TConWatSupSet
shall be
+set equal to the condenser water return temperature setpoint TConWatRetSet
+minus a temperature difference. The temperature difference is the 5 minute rolling
+average of common condenser water return temperature TConWatRet
less
+condenser water supply temperature TConWatSup
, sampled at minimum once
+every 30 seconds. When the plant is first enabled, the temperature difference shall
+be fixed equal to 50% of the difference between design condenser water supply
+(TConWatSup_nominal
) and return (TConWatRet_nominal
) temperature
+of the enabled chiller for 5 minutes (iniPlaTim
).
+
+-
+When any condenser water pump is proven on (
uConWatPumSpe
> 0),
+condenser water supply temperature TConWatSup
shall be maintained at
+setpoint by a direct acting PID loop. The loop output shall be mapped to the
+variable tower speed. Reset the tower speed from minimum tower speed fanSpeMin
+at 0% loop output to 100% speed at 100% loop output.
+
+-
+Tower speed
ySpeSet
shall be the lowest value of tower speed
+from loop mapping, maximum cooling tower speed setpoint from each chiller head
+pressure control loop uMaxTowSpeSet
, and tower maximum speed that reset
+based on plant partial load ratio plrTowMaxSpe
. All operating fans shall
+receive the same speed signal.
+
+
+", revisions="
+
+-
+August 9, 2019, by Jianjun Hu:
+First implementation.
+
+
+"));
+end LessCoupled;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Towers/FanSpeed/ReturnWaterTemperature/Subsequences/Setpoint.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Towers/FanSpeed/ReturnWaterTemperature/Subsequences/Setpoint.mo
new file mode 100644
index 00000000000..c595ada1ca6
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Towers/FanSpeed/ReturnWaterTemperature/Subsequences/Setpoint.mo
@@ -0,0 +1,284 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Towers.FanSpeed.ReturnWaterTemperature.Subsequences;
+block Setpoint "Calculate condener return water temperature setpoint"
+
+ parameter Integer nChi = 2 "Total number of chillers";
+ parameter Real LIFT_min[nChi](
+ final unit=fill("K",nChi),
+ final quantity=fill("TemperatureDifference",nChi),
+ displayUnit=fill("degC",nChi))={12, 12}
+ "Minimum LIFT of each chiller"
+ annotation (Evaluate=true);
+ parameter Real TConWatRet_nominal[nChi](
+ final unit=fill("K",nChi),
+ final quantity=fill("ThermodynamicTemperature",nChi),
+ displayUnit=fill("degC",nChi))= {303.15, 303.15}
+ "Design condenser water return temperature (condenser leaving) of each chiller"
+ annotation (Evaluate=true);
+ parameter Real TChiWatSupMin[nChi](
+ final unit=fill("K",nChi),
+ final quantity=fill("ThermodynamicTemperature",nChi),
+ displayUnit=fill("degC",nChi)) = {278.15, 278.15}
+ "Minimum chilled water supply temperature of each chiller"
+ annotation (Evaluate=true);
+ parameter Real iniPlaTim(final quantity="Time", final unit="s")= 600
+ "Time to hold return temperature to initial setpoint after plant being enabled"
+ annotation (Dialog(tab="Advanced"));
+ parameter Real ramTim(final quantity="Time", final unit="s") = 600
+ "Time to ramp return water temperature setpoint from initial value to calculated one"
+ annotation (Dialog(tab="Advanced"));
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uChi[nChi]
+ "Vector of chillers proven on status: true=ON"
+ annotation (Placement(transformation(extent={{-220,60},{-180,100}}),
+ iconTransformation(extent={{-140,60},{-100,100}})));
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput uOpeParLoaRat(
+ final unit="1",
+ final min=0,
+ final max=1) "Current plant partial load ratio"
+ annotation (Placement(transformation(extent={{-220,0},{-180,40}}),
+ iconTransformation(extent={{-140,10},{-100,50}})));
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput TChiWatSupSet(
+ final unit="K",
+ displayUnit="degC",
+ final quantity="ThermodynamicTemperature")
+ "Chilled water supply setpoint temperature"
+ annotation (Placement(transformation(extent={{-220,-70},{-180,-30}}),
+ iconTransformation(extent={{-140,-50},{-100,-10}})));
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uPla
+ "Plant enabling status"
+ annotation (Placement(transformation(extent={{-220,-130},{-180,-90}}),
+ iconTransformation(extent={{-140,-100},{-100,-60}})));
+ Buildings.Controls.OBC.CDL.Interfaces.RealOutput TConWatRetSet(
+ final unit="K",
+ displayUnit="degC",
+ final quantity="ThermodynamicTemperature")
+ "Condenser water return temperature setpoint"
+ annotation (Placement(transformation(extent={{180,-130},{220,-90}}),
+ iconTransformation(extent={{100,-20},{140,20}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Add conWatRet
+ "Condenser water return temperature"
+ annotation (Placement(transformation(extent={{80,-40},{100,-20}})));
+
+protected
+ Buildings.Controls.OBC.CDL.Continuous.MultiMin lifMax(
+ final nin=nChi) "Maximum chiller LIFT"
+ annotation (Placement(transformation(extent={{-80,130},{-60,150}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant chiLifMin[nChi](
+ final k=LIFT_min)
+ "Minimum LIFT of chillers"
+ annotation (Placement(transformation(extent={{-120,90},{-100,110}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant zeoCon[nChi](
+ final k=fill(0, nChi)) "Zero constant"
+ annotation (Placement(transformation(extent={{-120,50},{-100,70}})));
+ Buildings.Controls.OBC.CDL.Continuous.Switch swi[nChi] "Logical switch"
+ annotation (Placement(transformation(extent={{-80,70},{-60,90}})));
+ Buildings.Controls.OBC.CDL.Continuous.MultiMax lifMin(
+ final nin=nChi) "Minimum enabled chiller LIFT"
+ annotation (Placement(transformation(extent={{-40,70},{-20,90}})));
+ Buildings.Controls.OBC.CDL.Continuous.Subtract coeA
+ "Coefficient A"
+ annotation (Placement(transformation(extent={{0,90},{20,110}})));
+ Buildings.Controls.OBC.CDL.Continuous.Subtract coeB "Coefficient B"
+ annotation (Placement(transformation(extent={{80,130},{100,150}})));
+ Buildings.Controls.OBC.CDL.Continuous.Multiply pro "Product of inputs"
+ annotation (Placement(transformation(extent={{80,40},{100,60}})));
+ Buildings.Controls.OBC.CDL.Continuous.Add add2
+ annotation (Placement(transformation(extent={{120,40},{140,60}})));
+ Buildings.Controls.OBC.CDL.Continuous.Min min "Minimum value of two inputs"
+ annotation (Placement(transformation(extent={{-20,-20},{0,0}})));
+ Buildings.Controls.OBC.CDL.Continuous.Max tarLif "Target chiller LIFT"
+ annotation (Placement(transformation(extent={{20,-20},{40,0}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant zeoTim(
+ final k=0) "Zero constant"
+ annotation (Placement(transformation(extent={{40,-90},{60,-70}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant maxRamTim(
+ final k=ramTim)
+ "Time to change the return water temperature from initial value to setpoint"
+ annotation (Placement(transformation(extent={{-20,-150},{0,-130}})));
+ Buildings.Controls.OBC.CDL.Logical.TrueDelay delPlaEna(
+ final delayTime=iniPlaTim)
+ "Delay plant enabling status"
+ annotation (Placement(transformation(extent={{-140,-120},{-120,-100}})));
+ Buildings.Controls.OBC.CDL.Logical.Timer chaTim
+ "Count the time after starting to ramp condenser water return temperature setpoint"
+ annotation (Placement(transformation(extent={{-80,-120},{-60,-100}})));
+ Buildings.Controls.OBC.CDL.Continuous.Line lin
+ "Condenser water return temperature setpoint"
+ annotation (Placement(transformation(extent={{140,-120},{160,-100}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant desConWatRet[nChi](
+ final k=TConWatRet_nominal)
+ "Design condenser water return (condenser leaving) temperature of each chiller"
+ annotation (Placement(transformation(extent={{-160,130},{-140,150}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant minChiWatSup[nChi](
+ final k=TChiWatSupMin)
+ "Lowest chilled water supply temperature setpoint"
+ annotation (Placement(transformation(extent={{-160,90},{-140,110}})));
+ Buildings.Controls.OBC.CDL.Continuous.Subtract maxLif[nChi]
+ "Maximum LIFT of each chiller"
+ annotation (Placement(transformation(extent={{-120,130},{-100,150}})));
+ Buildings.Controls.OBC.CDL.Continuous.AddParameter addPar(
+ final p=-10*5/9)
+ "Output sum of input and a parameter"
+ annotation (Placement(transformation(extent={{-20,-90},{0,-70}})));
+ Buildings.Controls.OBC.CDL.Continuous.MultiMin lowDesConWatRet(
+ final nin=nChi)
+ "Lowest design condenser water return temperature"
+ annotation (Placement(transformation(extent={{-80,-90},{-60,-70}})));
+ Buildings.Controls.OBC.CDL.Continuous.MultiplyByParameter gai(
+ final k=1.1) "Gain factor"
+ annotation (Placement(transformation(extent={{40,90},{60,110}})));
+
+equation
+ connect(uChi, swi.u2)
+ annotation (Line(points={{-200,80},{-82,80}}, color={255,0,255}));
+ connect(zeoCon.y, swi.u3)
+ annotation (Line(points={{-98,60},{-90,60},{-90,72},{-82,72}},
+ color={0,0,127}));
+ connect(chiLifMin.y, swi.u1)
+ annotation (Line(points={{-98,100},{-90,100},{-90,88},{-82,88}},
+ color={0,0,127}));
+ connect(lifMax.y, coeA.u1)
+ annotation (Line(points={{-58,140},{-10,140},{-10,106},{-2,106}}, color={0,0,127}));
+ connect(lifMin.y, coeA.u2)
+ annotation (Line(points={{-18,80},{-10,80},{-10,94},{-2,94}}, color={0,0,127}));
+ connect(lifMax.y, coeB.u1)
+ annotation (Line(points={{-58,140},{-10,140},{-10,146},{78,146}}, color={0,0,127}));
+ connect(coeB.y, add2.u1)
+ annotation (Line(points={{102,140},{110,140},{110,56},{118,56}}, color={0,0,127}));
+ connect(pro.y, add2.u2)
+ annotation (Line(points={{102,50},{110,50},{110,44},{118,44}}, color={0,0,127}));
+ connect(lifMax.y, min.u2)
+ annotation (Line(points={{-58,140},{-50,140},{-50,-16},{-22,-16}},
+ color={0,0,127}));
+ connect(add2.y, min.u1)
+ annotation (Line(points={{142,50},{160,50},{160,20},{-40,20},{-40,-4},{-22,-4}},
+ color={0,0,127}));
+ connect(min.y, tarLif.u2)
+ annotation (Line(points={{2,-10},{10,-10},{10,-16},{18,-16}},
+ color={0,0,127}));
+ connect(lifMin.y, tarLif.u1)
+ annotation (Line(points={{-18,80},{10,80},{10,-4},{18,-4}}, color={0,0,127}));
+ connect(tarLif.y, conWatRet.u1)
+ annotation (Line(points={{42,-10},{60,-10},{60,-24},{78,-24}},
+ color={0,0,127}));
+ connect(TChiWatSupSet, conWatRet.u2)
+ annotation (Line(points={{-200,-50},{60,-50},{60,-36},{78,-36}},
+ color={0,0,127}));
+ connect(swi.y, lifMin.u)
+ annotation (Line(points={{-58,80},{-42,80}}, color={0,0,127}));
+ connect(uPla, delPlaEna.u)
+ annotation (Line(points={{-200,-110},{-142,-110}},
+ color={255,0,255}));
+ connect(delPlaEna.y, chaTim.u)
+ annotation (Line(points={{-118,-110},{-82,-110}}, color={255,0,255}));
+ connect(zeoTim.y, lin.x1)
+ annotation (Line(points={{62,-80},{80,-80},{80,-102},{138,-102}},
+ color={0,0,127}));
+ connect(chaTim.y, lin.u)
+ annotation (Line(points={{-58,-110},{138,-110}}, color={0,0,127}));
+ connect(maxRamTim.y, lin.x2)
+ annotation (Line(points={{2,-140},{20,-140},{20,-114},{138,-114}},
+ color={0,0,127}));
+ connect(conWatRet.y, lin.f2)
+ annotation (Line(points={{102,-30},{120,-30},{120,-118},{138,-118}},
+ color={0,0,127}));
+ connect(lin.y, TConWatRetSet)
+ annotation (Line(points={{162,-110},{200,-110}}, color={0,0,127}));
+ connect(uOpeParLoaRat, pro.u2)
+ annotation (Line(points={{-200,20},{-60,20},{-60,44},{78,44}}, color={0,0,127}));
+ connect(desConWatRet.y, maxLif.u1)
+ annotation (Line(points={{-138,140},{-130,140},{-130,146},{-122,146}}, color={0,0,127}));
+ connect(maxLif.y,lifMax.u)
+ annotation (Line(points={{-98,140},{-82,140}}, color={0,0,127}));
+ connect(lowDesConWatRet.y, addPar.u)
+ annotation (Line(points={{-58,-80},{-22,-80}}, color={0,0,127}));
+ connect(addPar.y, lin.f1)
+ annotation (Line(points={{2,-80},{20,-80},{20,-106},{138,-106}}, color={0,0,127}));
+ connect(desConWatRet.y, lowDesConWatRet.u)
+ annotation (Line(points={{-138,140},{-130,140},{-130,-80},{-82,-80}},
+ color={0,0,127}));
+ connect(minChiWatSup.y, maxLif.u2) annotation (Line(points={{-138,100},{-134,100},
+ {-134,134},{-122,134}}, color={0,0,127}));
+ connect(coeA.y, gai.u)
+ annotation (Line(points={{22,100},{38,100}}, color={0,0,127}));
+ connect(gai.y, coeB.u2) annotation (Line(points={{62,100},{70,100},{70,134},{78,
+ 134}}, color={0,0,127}));
+ connect(gai.y, pro.u1) annotation (Line(points={{62,100},{70,100},{70,56},{78,
+ 56}}, color={0,0,127}));
+annotation (
+ defaultComponentName="conWatRetSet",
+ Diagram(coordinateSystem(preserveAspectRatio=false,
+ extent={{-180,-160},{180,160}})),
+ Icon(coordinateSystem(extent={{-100,-100},{100,100}}),
+ graphics={
+ Text(
+ extent={{-120,146},{100,108}},
+ textColor={0,0,255},
+ textString="%name"),
+ Rectangle(
+ extent={{-100,-100},{100,100}},
+ lineColor={0,0,127},
+ fillColor={255,255,255},
+ fillPattern=FillPattern.Solid),
+ Text(
+ extent={{-100,100},{100,-100}},
+ textColor={0,0,0},
+ textString="S")}),
+Documentation(info="
+
+Block that ouputs condenser water return temperature setpoint TConWatRetSet
+for the tower fan speed control to maintain the return temperature at setpoint. This
+implementation is for plants with parallel chiller plants only. It is based on
+ASHRAE RP-1711 Advanced Sequences of Operation for HVAC Systems Phase II – Central
+Plants and Hydronic Systems (Draft on March 23, 2020), section 5.2.12.2, item 2.d and m.
+
+
+The return water temperature setpoint TConWatRetSet
shall be the output
+of the following equations.
+
+
+ TConWatRetSet
= TChiWatSupSet
+ LIFT_target
+
+
+ LIFT_target = Max(LIFT_min
, Min(LIFT_max, A*plaParLoaRat
+ B))
+
+
+ LIFT_max = TConWatRet_nominal
- TChiWatSupMin
+
+
+ A = 1.1*(LIFT_max - LIFT_min
)
+
+
+ B = LIFT_max - A
+
+
+
+-
+Where chillers have different
LIFT_min
values, the LIFT_min
+in the above equation shall reset dynamically to equal the highest LIFT_min
+of enabled chillers.
+
+-
+For plants with parallel chillers only, where chillers have different design
+condenser water return temperature
TConWatRet_nominal
and minimum
+chilled water supply temperature TChiWatSupMin
values, the LIFT_max
+shall be calculated for each chiller and the lowest value used in the above logic.
+
+
+
+Upon plant startup (uPla
becomes true), hold TConWatRetSet
+at 10 °F less than the minimum TConWatRet_nominal
for 10 minutes
+(iniPlaTim
) before ramping the setpoint to the calculated value above
+over 10 minutes (ramTim
).
+
+
+", revisions="
+
+-
+August 9, 2019, by Jianjun Hu:
+First implementation.
+
+
+"));
+end Setpoint;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Towers/FanSpeed/ReturnWaterTemperature/Subsequences/Validation/Coupled.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Towers/FanSpeed/ReturnWaterTemperature/Subsequences/Validation/Coupled.mo
new file mode 100644
index 00000000000..0d11cf74cab
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Towers/FanSpeed/ReturnWaterTemperature/Subsequences/Validation/Coupled.mo
@@ -0,0 +1,122 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Towers.FanSpeed.ReturnWaterTemperature.Subsequences.Validation;
+model Coupled
+ "Validation sequence of controlling tower fan speed based on condenser water return temperature control for close coupled plant"
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Towers.FanSpeed.ReturnWaterTemperature.Subsequences.Coupled
+ couTowSpe
+ "Tower fan speed control based on the condenser water return temperature control for close coupled plants"
+ annotation (Placement(transformation(extent={{60,80},{80,100}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Sine conRet(
+ final amplitude=2,
+ final freqHz=1/1800,
+ final offset=273.15 + 32) "Condenser water return temperature"
+ annotation (Placement(transformation(extent={{-80,110},{-60,130}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Ramp ram1(
+ final height=3,
+ final duration=3600,
+ final startTime=1500) "Ramp"
+ annotation (Placement(transformation(extent={{-80,80},{-60,100}})));
+ Buildings.Controls.OBC.CDL.Continuous.Add add2 "Add real inputs"
+ annotation (Placement(transformation(extent={{-20,80},{0,100}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant conRetSet(
+ final k=273.15 + 32)
+ "Condenser water return temperature setpoint"
+ annotation (Placement(transformation(extent={{-20,110},{0,130}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Ramp conWatPumSpe[2](
+ final height=fill(0.5, 2),
+ final duration=fill(3600, 2),
+ final startTime=fill(300, 2)) "Measured condenser water pump speed"
+ annotation (Placement(transformation(extent={{-80,40},{-60,60}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Ramp towMaxSpe(
+ final height=0.25,
+ final duration=3600,
+ final offset=0.5) "Maximum tower speed specified by head pressure control loop"
+ annotation (Placement(transformation(extent={{-80,0},{-60,20}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Ramp towMaxSpe1(
+ final height=-0.25,
+ final duration=3600,
+ final offset=0.8) "Maximum tower speed specified by head pressure control loop"
+ annotation (Placement(transformation(extent={{-80,-40},{-60,-20}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Ramp plrTowMaxSpe(
+ final height=-0.3,
+ final duration=3600,
+ final offset=0.9) "Maximum tower speed reset based on the partial load"
+ annotation (Placement(transformation(extent={{0,-120},{20,-100}})));
+ Buildings.Controls.OBC.CDL.Logical.Sources.Pulse chiSta1(
+ final width=0.2, final period=3600) "Chiller one enabling status"
+ annotation (Placement(transformation(extent={{-80,-80},{-60,-60}})));
+ Buildings.Controls.OBC.CDL.Logical.Not not1[2] "Logical not"
+ annotation (Placement(transformation(extent={{-40,-100},{-20,-80}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant zer[2](
+ final k=fill(0,2)) "Constant zero"
+ annotation (Placement(transformation(extent={{-40,-60},{-20,-40}})));
+ Buildings.Controls.OBC.CDL.Continuous.Switch swi[2] "Logical switch"
+ annotation (Placement(transformation(extent={{0,-20},{20,0}})));
+ Buildings.Controls.OBC.CDL.Logical.Sources.Pulse chiSta2(
+ final width=0.1, final period=3600) "Chiller one enabling status"
+ annotation (Placement(transformation(extent={{-80,-120},{-60,-100}})));
+
+equation
+ connect(conRetSet.y, couTowSpe.TConWatRetSet)
+ annotation (Line(points={{2,120},{20,120},{20,100},{58,100}}, color={0,0,127}));
+ connect(conRet.y, add2.u1)
+ annotation (Line(points={{-58,120},{-40,120},{-40,96},{-22,96}}, color={0,0,127}));
+ connect(ram1.y, add2.u2)
+ annotation (Line(points={{-58,90},{-40,90},{-40,84},{-22,84}}, color={0,0,127}));
+ connect(add2.y, couTowSpe.TConWatRet)
+ annotation (Line(points={{2,90},{20,90},{20,96},{58,96}}, color={0,0,127}));
+ connect(conWatPumSpe.y, couTowSpe.uConWatPumSpe)
+ annotation (Line(points={{-58,50},{26,50},{26,92},{58,92}}, color={0,0,127}));
+ connect(chiSta1.y, not1[1].u)
+ annotation (Line(points={{-58,-70},{-50,-70},{-50,-90},{-42,-90}},
+ color={255,0,255}));
+ connect(chiSta2.y, not1[2].u)
+ annotation (Line(points={{-58,-110},{-50,-110},{-50,-90},{-42,-90}},
+ color={255,0,255}));
+ connect(not1.y, swi.u2)
+ annotation (Line(points={{-18,-90},{-14,-90},{-14,-10},{-2,-10}},
+ color={255,0,255}));
+ connect(towMaxSpe1.y, swi[2].u1)
+ annotation (Line(points={{-58,-30},{-20,-30},{-20,-2},{-2,-2}},
+ color={0,0,127}));
+ connect(towMaxSpe.y, swi[1].u1)
+ annotation (Line(points={{-58,10},{-20,10},{-20,-2},{-2,-2}}, color={0,0,127}));
+ connect(swi.y, couTowSpe.uMaxTowSpeSet)
+ annotation (Line(points={{22,-10},{32,-10},{32,88},{58,88}}, color={0,0,127}));
+ connect(zer.y, swi.u3)
+ annotation (Line(points={{-18,-50},{-8,-50},{-8,-18},{-2,-18}}, color={0,0,127}));
+ connect(not1.y, couTowSpe.uChi)
+ annotation (Line(points={{-18,-90},{38,-90},{38,84},{58,84}}, color={255,0,255}));
+ connect(plrTowMaxSpe.y, couTowSpe.plrTowMaxSpe)
+ annotation (Line(points={{22,-110},{44,-110},{44,80},{58,80}}, color={0,0,127}));
+
+annotation (experiment(StopTime=3600.0, Tolerance=1e-06),
+ __Dymola_Commands(file="modelica://Buildings/Resources/Scripts/Dymola/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Towers/FanSpeed/ReturnWaterTemperature/Subsequences/Validation/Coupled.mos"
+ "Simulate and plot"),
+ Documentation(info="
+
+This example validates
+
+Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Towers.FanSpeed.ReturnWaterTemperature.Subsequences.Coupled.
+
+", revisions="
+
+-
+August 12, 2019, by Jianjun Hu:
+First implementation.
+
+
+"),
+ Icon(coordinateSystem(preserveAspectRatio=false, extent={{-100,-100},{100,100}}),
+ graphics={
+ Ellipse(lineColor = {75,138,73},
+ fillColor={255,255,255},
+ fillPattern = FillPattern.Solid,
+ extent = {{-100,-100},{100,100}}),
+ Polygon(lineColor = {0,0,255},
+ fillColor = {75,138,73},
+ pattern = LinePattern.None,
+ fillPattern = FillPattern.Solid,
+ points = {{-36,60},{64,0},{-36,-60},{-36,60}})}),
+ Diagram(coordinateSystem(preserveAspectRatio=false, extent={{-100,-140},{100,140}})));
+end Coupled;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Towers/FanSpeed/ReturnWaterTemperature/Subsequences/Validation/Enable.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Towers/FanSpeed/ReturnWaterTemperature/Subsequences/Validation/Enable.mo
new file mode 100644
index 00000000000..f0cb16e0b47
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Towers/FanSpeed/ReturnWaterTemperature/Subsequences/Validation/Enable.mo
@@ -0,0 +1,177 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Towers.FanSpeed.ReturnWaterTemperature.Subsequences.Validation;
+model Enable
+ "Validation sequence of enabling and disabling tower fans"
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Towers.FanSpeed.ReturnWaterTemperature.Subsequences.Enable
+ enaTow "Enabling tower fans"
+ annotation (Placement(transformation(extent={{-140,40},{-120,60}})));
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Towers.FanSpeed.ReturnWaterTemperature.Subsequences.Enable
+ disTow "Disable tower fans due to the low head pressure control maximum tower fan speed"
+ annotation (Placement(transformation(extent={{40,40},{60,60}})));
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Towers.FanSpeed.ReturnWaterTemperature.Subsequences.Enable
+ disTow1 "Disable tower fans due to low fan speed and low tower temperature"
+ annotation (Placement(transformation(extent={{220,40},{240,60}})));
+
+protected
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant conRetSet(
+ final k=273.15 + 32) "Condenser water return temperature setpoint"
+ annotation (Placement(transformation(extent={{-220,-10},{-200,10}})));
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant offTowSta[4](
+ final k=fill(false,4)) "Tower is OFF"
+ annotation (Placement(transformation(extent={{-220,-60},{-200,-40}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Ramp conRet1(
+ final height=2,
+ final duration=3600,
+ final offset=273.15 + 32.5) "Condenser return water temperature"
+ annotation (Placement(transformation(extent={{-260,-40},{-240,-20}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant hpTowSpe1(
+ final k=0.2)
+ "Head pressure control maximum tower speed"
+ annotation (Placement(transformation(extent={{-220,80},{-200,100}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant hpTowSpe2(
+ final k=0)
+ "Head pressure control maximum tower speed"
+ annotation (Placement(transformation(extent={{-260,60},{-240,80}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant towFanSpe(
+ final k=0)
+ "Measured tower fan speed"
+ annotation (Placement(transformation(extent={{-220,30},{-200,50}})));
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant opeConPum(
+ final k=1)
+ "Operating condenser water pumps"
+ annotation (Placement(transformation(extent={{-260,-90},{-240,-70}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant hpTowSpe3(
+ final k=0.1)
+ "Head pressure control maximum tower speed"
+ annotation (Placement(transformation(extent={{-40,80},{-20,100}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant hpTowSpe4(
+ final k=0.2)
+ "Head pressure control maximum tower speed"
+ annotation (Placement(transformation(extent={{-80,60},{-60,80}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant towFanSpe1(
+ final k=0.2)
+ "Measured tower fan speed"
+ annotation (Placement(transformation(extent={{-40,30},{-20,50}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant conRetSet1(
+ final k=273.15 + 32)
+ "Condenser water return temperature setpoint"
+ annotation (Placement(transformation(extent={{-40,-10},{-20,10}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Ramp conRet2(
+ final height=2,
+ final duration=3600,
+ final offset=273.15 + 32.5) "Condenser return water temperature"
+ annotation (Placement(transformation(extent={{-80,-40},{-60,-20}})));
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant onTowSta1[4](
+ final k=fill(true,4)) "Tower is ON"
+ annotation (Placement(transformation(extent={{-40,-70},{-20,-50}})));
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant opeConPum1(
+ final k=2) "Operating condenser water pumps"
+ annotation (Placement(transformation(extent={{-80,-90},{-60,-70}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant hpTowSpe5(final k=0.2)
+ "Head pressure control maximum tower speed"
+ annotation (Placement(transformation(extent={{140,80},{160,100}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant hpTowSpe6(final k=0.2)
+ "Head pressure control maximum tower speed"
+ annotation (Placement(transformation(extent={{100,60},{120,80}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant towFanSpe2(final k=0.1)
+ "Measured tower fan speed"
+ annotation (Placement(transformation(extent={{140,30},{160,50}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant conRetSet2(
+ final k=273.15 + 32) "Condenser water return temperature setpoint"
+ annotation (Placement(transformation(extent={{140,-10},{160,10}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Ramp conRet3(
+ final height=-2,
+ final duration=3600,
+ final offset=273.15 + 32.5) "Condenser return water temperature"
+ annotation (Placement(transformation(extent={{100,-40},{120,-20}})));
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant onTowSta2[4](
+ final k=fill(true,4)) "Tower is ON"
+ annotation (Placement(transformation(extent={{140,-70},{160,-50}})));
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant opeConPum2(
+ final k=2)
+ "Operating condenser water pumps"
+ annotation (Placement(transformation(extent={{100,-90},{120,-70}})));
+
+equation
+ connect(hpTowSpe1.y, enaTow.uMaxTowSpeSet[1])
+ annotation (Line(points={{-198,90},{-180,90},{-180,60},{-142,60}},
+ color={0,0,127}));
+ connect(hpTowSpe2.y, enaTow.uMaxTowSpeSet[2])
+ annotation (Line(points={{-238,70},{-180,70},{-180,60},{-142,60}},
+ color={0,0,127}));
+ connect(towFanSpe.y,enaTow.uFanSpe)
+ annotation (Line(points={{-198,40},{-180,40},{-180,56},{-142,56}},
+ color={0,0,127}));
+ connect(conRetSet.y, enaTow.TTowSet) annotation (Line(points={{-198,0},{
+ -174,0},{-174,52},{-142,52}}, color={0,0,127}));
+ connect(conRet1.y, enaTow.TTow) annotation (Line(points={{-238,-30},{-168,
+ -30},{-168,48},{-142,48}}, color={0,0,127}));
+ connect(offTowSta.y, enaTow.uTow) annotation (Line(points={{-198,-50},{-162,-50},
+ {-162,44},{-142,44}}, color={255,0,255}));
+ connect(opeConPum.y, enaTow.uConWatPumNum)
+ annotation (Line(points={{-238,-80},{-156,-80},{-156,40},{-142,40}},
+ color={255,127,0}));
+ connect(hpTowSpe3.y, disTow.uMaxTowSpeSet[1])
+ annotation (Line(points={{-18,90},{0,90},{0,60},{38,60}}, color={0,0,127}));
+ connect(hpTowSpe4.y, disTow.uMaxTowSpeSet[2])
+ annotation (Line(points={{-58,70},{0,70},{0,60},{38,60}}, color={0,0,127}));
+ connect(towFanSpe1.y,disTow.uFanSpe)
+ annotation (Line(points={{-18,40},{0,40},{0,56},{38,56}}, color={0,0,127}));
+ connect(conRetSet1.y, disTow.TTowSet)
+ annotation (Line(points={{-18,0},{6,0},{6,52},{38,52}}, color={0,0,127}));
+ connect(conRet2.y, disTow.TTow) annotation (Line(points={{-58,-30},{12,-30},
+ {12,48},{38,48}}, color={0,0,127}));
+ connect(onTowSta1.y, disTow.uTow) annotation (Line(points={{-18,-60},{18,-60},
+ {18,44},{38,44}}, color={255,0,255}));
+ connect(opeConPum1.y, disTow.uConWatPumNum)
+ annotation (Line(points={{-58,-80},{24,-80},{24,40},{38,40}},
+ color={255,127,0}));
+ connect(hpTowSpe5.y, disTow1.uMaxTowSpeSet[1])
+ annotation (Line(points={{162,90},{180,90},{180,60},{218,60}},
+ color={0,0,127}));
+ connect(hpTowSpe6.y, disTow1.uMaxTowSpeSet[2])
+ annotation (Line(points={{122,70},{180,70},{180,60},{218,60}},
+ color={0,0,127}));
+ connect(towFanSpe2.y,disTow1.uFanSpe)
+ annotation (Line(points={{162,40},{180,40},{180,56},{218,56}},
+ color={0,0,127}));
+ connect(conRetSet2.y, disTow1.TTowSet) annotation (Line(points={{162,0},
+ {186,0},{186,52},{218,52}}, color={0,0,127}));
+ connect(conRet3.y, disTow1.TTow) annotation (Line(points={{122,-30},{192,
+ -30},{192,48},{218,48}}, color={0,0,127}));
+ connect(onTowSta2.y, disTow1.uTow) annotation (Line(points={{162,-60},{198,-60},
+ {198,44},{218,44}}, color={255,0,255}));
+ connect(opeConPum2.y, disTow1.uConWatPumNum)
+ annotation (Line(points={{122,-80},{204,-80},{204,40},{218,40}},
+ color={255,127,0}));
+
+annotation (experiment(StopTime=3600.0, Tolerance=1e-06),
+ __Dymola_Commands(file="modelica://Buildings/Resources/Scripts/Dymola/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Towers/FanSpeed/ReturnWaterTemperature/Subsequences/Validation/Enable.mos"
+ "Simulate and plot"),
+ Documentation(info="
+
+This example validates
+
+Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Towers.FanSpeed.ReturnWaterTemperature.Subsequences.Enable.
+
+", revisions="
+
+-
+August 12, 2019, by Jianjun Hu:
+First implementation.
+
+
+"),
+ Icon(coordinateSystem(preserveAspectRatio=false, extent={{-100,-100},{100,100}}),
+ graphics={
+ Ellipse(lineColor = {75,138,73},
+ fillColor={255,255,255},
+ fillPattern = FillPattern.Solid,
+ extent = {{-100,-100},{100,100}}),
+ Polygon(lineColor = {0,0,255},
+ fillColor = {75,138,73},
+ pattern = LinePattern.None,
+ fillPattern = FillPattern.Solid,
+ points = {{-36,60},{64,0},{-36,-60},{-36,60}})}),
+ Diagram(coordinateSystem(preserveAspectRatio=false, extent={{-280,-120},{280,120}})));
+end Enable;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Towers/FanSpeed/ReturnWaterTemperature/Subsequences/Validation/LessCoupled.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Towers/FanSpeed/ReturnWaterTemperature/Subsequences/Validation/LessCoupled.mo
new file mode 100644
index 00000000000..15badcb3112
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Towers/FanSpeed/ReturnWaterTemperature/Subsequences/Validation/LessCoupled.mo
@@ -0,0 +1,151 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Towers.FanSpeed.ReturnWaterTemperature.Subsequences.Validation;
+model LessCoupled
+ "Validation sequence of controlling tower fan speed based on condenser water return temperature control for less coupled plant"
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Towers.FanSpeed.ReturnWaterTemperature.Subsequences.LessCoupled
+ lesCouTowSpe
+ "Tower fan speed control based on the condenser water return temperature control for close coupled plants"
+ annotation (Placement(transformation(extent={{60,70},{80,90}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Sine conRet(
+ final amplitude=2,
+ final freqHz=1/1800,
+ final offset=273.15 + 32) "Condenser water return temperature"
+ annotation (Placement(transformation(extent={{-80,130},{-60,150}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Ramp ram1(
+ final height=3,
+ final duration=3600,
+ final startTime=1500) "Ramp"
+ annotation (Placement(transformation(extent={{-80,100},{-60,120}})));
+ Buildings.Controls.OBC.CDL.Continuous.Add add2 "Add real inputs"
+ annotation (Placement(transformation(extent={{-20,100},{0,120}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant conRetSet(
+ final k=273.15 + 32) "Condenser water return temperature setpoint"
+ annotation (Placement(transformation(extent={{-20,130},{0,150}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Ramp conWatPumSpe[2](
+ final height=fill(0.5, 2),
+ final duration=fill(3600, 2),
+ final startTime=fill(300, 2)) "Measured condenser water pump speed"
+ annotation (Placement(transformation(extent={{-80,50},{-60,70}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Ramp towMaxSpe(
+ final height=0.25,
+ final duration=3600,
+ final offset=0.5) "Maximum tower speed specified by head pressure control loop"
+ annotation (Placement(transformation(extent={{-80,-50},{-60,-30}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Ramp towMaxSpe1(
+ final height=-0.25,
+ final duration=3600,
+ final offset=0.8) "Maximum tower speed specified by head pressure control loop"
+ annotation (Placement(transformation(extent={{-80,-80},{-60,-60}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Ramp plrTowMaxSpe(
+ final height=-0.3,
+ final duration=3600,
+ final offset=0.9) "Maximum tower speed reset based on the partial load"
+ annotation (Placement(transformation(extent={{50,-140},{70,-120}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Sine conSup(
+ final amplitude=2,
+ final freqHz=1/1800,
+ final offset=273.15 + 29) "Condenser water supply temperature"
+ annotation (Placement(transformation(extent={{-80,20},{-60,40}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Ramp ram2(
+ final height=3,
+ final duration=3600,
+ final startTime=1500) "Ramp"
+ annotation (Placement(transformation(extent={{-80,-10},{-60,10}})));
+ Buildings.Controls.OBC.CDL.Continuous.Add add1 "Add real inputs"
+ annotation (Placement(transformation(extent={{-20,20},{0,40}})));
+ Buildings.Controls.OBC.CDL.Continuous.Switch swi[2] "Logical switch"
+ annotation (Placement(transformation(extent={{0,-60},{20,-40}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant zer[2](
+ final k=fill(0,2)) "Constant zero"
+ annotation (Placement(transformation(extent={{-40,-100},{-20,-80}})));
+ Buildings.Controls.OBC.CDL.Logical.Not not1[2] "Logical not"
+ annotation (Placement(transformation(extent={{-40,-140},{-20,-120}})));
+ Buildings.Controls.OBC.CDL.Logical.Sources.Pulse chiSta1(
+ final width=0.2, final period=3600) "Chiller one enabling status"
+ annotation (Placement(transformation(extent={{-80,-110},{-60,-90}})));
+ Buildings.Controls.OBC.CDL.Logical.Sources.Pulse chiSta2(
+ final width=0.1, final period=3600) "Chiller one enabling status"
+ annotation (Placement(transformation(extent={{-80,-150},{-60,-130}})));
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant plaEna(
+ final k=true) "Plant enable status"
+ annotation (Placement(transformation(extent={{-20,70},{0,90}})));
+
+equation
+ connect(conRetSet.y, lesCouTowSpe.TConWatRetSet)
+ annotation (Line(points={{2,140},{40,140},{40,90},{58,90}}, color={0,0,127}));
+ connect(conRet.y, add2.u1)
+ annotation (Line(points={{-58,140},{-40,140},{-40,116},{-22,116}},
+ color={0,0,127}));
+ connect(ram1.y, add2.u2)
+ annotation (Line(points={{-58,110},{-40,110},{-40,104},{-22,104}},
+ color={0,0,127}));
+ connect(add2.y, lesCouTowSpe.TConWatRet)
+ annotation (Line(points={{2,110},{32,110},{32,88},{58,88}},
+ color={0,0,127}));
+ connect(conWatPumSpe.y, lesCouTowSpe.uConWatPumSpe)
+ annotation (Line(points={{-58,60},{20,60},{20,82},{58,82}}, color={0,0,127}));
+ connect(conSup.y, add1.u1)
+ annotation (Line(points={{-58,30},{-40,30},{-40,36},{-22,36}},
+ color={0,0,127}));
+ connect(ram2.y, add1.u2)
+ annotation (Line(points={{-58,0},{-40,0},{-40,24},{-22,24}}, color={0,0,127}));
+ connect(add1.y, lesCouTowSpe.TConWatSup)
+ annotation (Line(points={{2,30},{26,30},{26,78},{58,78}},
+ color={0,0,127}));
+ connect(chiSta1.y, not1[1].u)
+ annotation (Line(points={{-58,-100},{-50,-100},{-50,-130},{-42,-130}},
+ color={255,0,255}));
+ connect(chiSta2.y, not1[2].u)
+ annotation (Line(points={{-58,-140},{-50,-140},{-50,-130},{-42,-130}},
+ color={255,0,255}));
+ connect(towMaxSpe.y, swi[1].u1)
+ annotation (Line(points={{-58,-40},{-40,-40},{-40,-42},{-2,-42}},
+ color={0,0,127}));
+ connect(towMaxSpe1.y, swi[2].u1)
+ annotation (Line(points={{-58,-70},{-40,-70},{-40,-42},{-2,-42}},
+ color={0,0,127}));
+ connect(zer.y, swi.u3)
+ annotation (Line(points={{-18,-90},{-6,-90},{-6,-58},{-2,-58}}, color={0,0,127}));
+ connect(not1.y, swi.u2)
+ annotation (Line(points={{-18,-130},{-12,-130},{-12,-50},{-2,-50}},
+ color={255,0,255}));
+ connect(swi.y, lesCouTowSpe.uMaxTowSpeSet)
+ annotation (Line(points={{22,-50},{32,-50},{32,75},{58,75}}, color={0,0,127}));
+ connect(not1.y, lesCouTowSpe.uChi)
+ annotation (Line(points={{-18,-130},{38,-130},{38,73},{58,73}}, color={255,0,255}));
+ connect(plrTowMaxSpe.y, lesCouTowSpe.plrTowMaxSpe)
+ annotation (Line(points={{72,-130},{80,-130},{80,60},{44,60},{44,70},
+ {58,70}}, color={0,0,127}));
+ connect(plaEna.y, lesCouTowSpe.uPla) annotation (Line(points={{2,80},{14,80},{
+ 14,85},{58,85}}, color={255,0,255}));
+
+annotation (experiment(StopTime=3600.0, Tolerance=1e-06),
+ __Dymola_Commands(file="modelica://Buildings/Resources/Scripts/Dymola/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Towers/FanSpeed/ReturnWaterTemperature/Subsequences/Validation/LessCoupled.mos"
+ "Simulate and plot"),
+ Documentation(info="
+
+This example validates
+
+Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Towers.FanSpeed.ReturnWaterTemperature.Subsequences.LessCoupled.
+
+", revisions="
+
+-
+August 12, 2019, by Jianjun Hu:
+First implementation.
+
+
+"),
+ Icon(coordinateSystem(preserveAspectRatio=false, extent={{-100,-100},{100,100}}),
+ graphics={
+ Ellipse(lineColor = {75,138,73},
+ fillColor={255,255,255},
+ fillPattern = FillPattern.Solid,
+ extent = {{-100,-100},{100,100}}),
+ Polygon(lineColor = {0,0,255},
+ fillColor = {75,138,73},
+ pattern = LinePattern.None,
+ fillPattern = FillPattern.Solid,
+ points = {{-36,60},{64,0},{-36,-60},{-36,60}})}),
+ Diagram(coordinateSystem(preserveAspectRatio=false, extent={{-100,-160},{100,160}})));
+end LessCoupled;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Towers/FanSpeed/ReturnWaterTemperature/Subsequences/Validation/Setpoint.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Towers/FanSpeed/ReturnWaterTemperature/Subsequences/Validation/Setpoint.mo
new file mode 100644
index 00000000000..f2a3cbf8480
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Towers/FanSpeed/ReturnWaterTemperature/Subsequences/Validation/Setpoint.mo
@@ -0,0 +1,89 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Towers.FanSpeed.ReturnWaterTemperature.Subsequences.Validation;
+model Setpoint
+ "Validation sequence of specifying condener return water temperature setpoint"
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Towers.FanSpeed.ReturnWaterTemperature.Subsequences.Setpoint
+ conWatRetSet(
+ final nChi=2,
+ final LIFT_min={12,14},
+ final TConWatRet_nominal={303.15,305.15})
+ "Specify condenser water return temperature setpoint"
+ annotation (Placement(transformation(extent={{60,10},{80,30}})));
+
+protected
+ Buildings.Controls.OBC.CDL.Logical.Sources.Pulse booPul(
+ final width=0.15, final period=3600)
+ "Generate boolean pulse"
+ annotation (Placement(transformation(extent={{-80,50},{-60,70}})));
+ Buildings.Controls.OBC.CDL.Logical.Not not1 "Logical not"
+ annotation (Placement(transformation(extent={{-40,50},{-20,70}})));
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant con(
+ final k=false) "Constant false"
+ annotation (Placement(transformation(extent={{-40,20},{-20,40}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Ramp parLoaRat(
+ final height=0.6, final duration=3600)
+ "Partial load ratio"
+ annotation (Placement(transformation(extent={{-80,-10},{-60,10}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant zer(final k=0) "Constant zero"
+ annotation (Placement(transformation(extent={{-80,-50},{-60,-30}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant chiWatSupSet(
+ final k=273.15 + 6.5)
+ "Chilled water supply setpoint"
+ annotation (Placement(transformation(extent={{0,-70},{20,-50}})));
+ Buildings.Controls.OBC.CDL.Continuous.Switch swi "Logical switch"
+ annotation (Placement(transformation(extent={{0,-30},{20,-10}})));
+
+equation
+ connect(booPul.y, not1.u)
+ annotation (Line(points={{-58,60},{-42,60}}, color={255,0,255}));
+ connect(not1.y, conWatRetSet.uChi[1])
+ annotation (Line(points={{-18,60},{50,60},{50,27},{58,27}},
+ color={255,0,255}));
+ connect(con.y, conWatRetSet.uChi[2])
+ annotation (Line(points={{-18,30},{40,30},{40,29},{58,29}},
+ color={255,0,255}));
+ connect(not1.y, swi.u2)
+ annotation (Line(points={{-18,60},{-10,60},{-10,-20},{-2,-20}},
+ color={255,0,255}));
+ connect(zer.y, swi.u3)
+ annotation (Line(points={{-58,-40},{-20,-40},{-20,-28},{-2,-28}},
+ color={0,0,127}));
+ connect(parLoaRat.y, swi.u1)
+ annotation (Line(points={{-58,0},{-20,0},{-20,-12},{-2,-12}}, color={0,0,127}));
+ connect(swi.y, conWatRetSet.uOpeParLoaRat)
+ annotation (Line(points={{22,-20},{30,-20},{30,23},{58,23}}, color={0,0,127}));
+ connect(chiWatSupSet.y, conWatRetSet.TChiWatSupSet)
+ annotation (Line(points={{22,-60},{40,-60},{40,17},{58,17}}, color={0,0,127}));
+ connect(not1.y, conWatRetSet.uPla)
+ annotation (Line(points={{-18,60},{50,60},{50,12},{58,12}}, color={255,0,255}));
+
+annotation (experiment(StopTime=3600.0, Tolerance=1e-06),
+ __Dymola_Commands(file="modelica://Buildings/Resources/Scripts/Dymola/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Towers/FanSpeed/ReturnWaterTemperature/Subsequences/Validation/Setpoint.mos"
+ "Simulate and plot"),
+ Documentation(info="
+
+This example validates
+
+Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Towers.FanSpeed.ReturnWaterTemperature.Subsequences.Setpoint.
+
+", revisions="
+
+-
+August 12, 2019, by Jianjun Hu:
+First implementation.
+
+
+"),
+ Icon(coordinateSystem(preserveAspectRatio=false, extent={{-100,-100},{100,100}}),
+ graphics={
+ Ellipse(lineColor = {75,138,73},
+ fillColor={255,255,255},
+ fillPattern = FillPattern.Solid,
+ extent = {{-100,-100},{100,100}}),
+ Polygon(lineColor = {0,0,255},
+ fillColor = {75,138,73},
+ pattern = LinePattern.None,
+ fillPattern = FillPattern.Solid,
+ points = {{-36,60},{64,0},{-36,-60},{-36,60}})}),
+ Diagram(coordinateSystem(preserveAspectRatio=false, extent={{-100,-80},{100,80}})));
+end Setpoint;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Towers/FanSpeed/ReturnWaterTemperature/Subsequences/Validation/package.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Towers/FanSpeed/ReturnWaterTemperature/Subsequences/Validation/package.mo
new file mode 100644
index 00000000000..dfced9fabbd
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Towers/FanSpeed/ReturnWaterTemperature/Subsequences/Validation/package.mo
@@ -0,0 +1,37 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Towers.FanSpeed.ReturnWaterTemperature.Subsequences;
+package Validation "Collection of validation models"
+
+annotation (Icon(graphics={
+ Rectangle(
+ lineColor={200,200,200},
+ fillColor={248,248,248},
+ fillPattern=FillPattern.HorizontalCylinder,
+ extent={{-100.0,-100.0},{100.0,100.0}},
+ radius=25.0),
+ Rectangle(
+ lineColor={128,128,128},
+ extent={{-100.0,-100.0},{100.0,100.0}},
+ radius=25.0),
+ Polygon(
+ origin={8.0,14.0},
+ lineColor={78,138,73},
+ fillColor={78,138,73},
+ pattern=LinePattern.None,
+ fillPattern=FillPattern.Solid,
+ points={{-58.0,46.0},{42.0,-14.0},{-58.0,-74.0},{-58.0,46.0}})}),
+preferredView="info", Documentation(info="
+
+This package contains validation models for the classes in
+
+Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Towers.FanSpeed.ReturnWaterTemperature.Subsequences.
+
+
+Note that most validation models contain simple input data
+which may not be realistic, but for which the correct
+output can be obtained through an analytic solution.
+The examples plot various outputs, which have been verified against these
+solutions. These model outputs are stored as reference data and
+used for continuous validation whenever models in the library change.
+
+"));
+end Validation;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Towers/FanSpeed/ReturnWaterTemperature/Subsequences/Validation/package.order b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Towers/FanSpeed/ReturnWaterTemperature/Subsequences/Validation/package.order
new file mode 100644
index 00000000000..5efb88623d5
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Towers/FanSpeed/ReturnWaterTemperature/Subsequences/Validation/package.order
@@ -0,0 +1,4 @@
+Coupled
+Enable
+LessCoupled
+Setpoint
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Towers/FanSpeed/ReturnWaterTemperature/Subsequences/package.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Towers/FanSpeed/ReturnWaterTemperature/Subsequences/package.mo
new file mode 100644
index 00000000000..de53048af05
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Towers/FanSpeed/ReturnWaterTemperature/Subsequences/package.mo
@@ -0,0 +1,46 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Towers.FanSpeed.ReturnWaterTemperature;
+package Subsequences "Control subsequences of tower fan for controlling condenser water return temperature"
+
+annotation (
+preferredView="info", Documentation(info="
+
+This package contains subsequences for cooling tower fan speed control, for controlling
+condenser water return temperature.
+The implementation is based on section 5.2.12.2, item 2 in ASHRAE RP-1711, Draft 6 (July 25, 2019).
+
+"),
+Icon(graphics={
+ Rectangle(
+ lineColor={200,200,200},
+ fillColor={248,248,248},
+ fillPattern=FillPattern.HorizontalCylinder,
+ extent={{-100.0,-100.0},{100.0,100.0}},
+ radius=25.0),
+ Rectangle(
+ lineColor={128,128,128},
+ extent={{-100.0,-100.0},{100.0,100.0}},
+ radius=25.0),
+ Ellipse(
+ origin={10.0,10.0},
+ fillColor={76,76,76},
+ pattern=LinePattern.None,
+ fillPattern=FillPattern.Solid,
+ extent={{-80.0,-80.0},{-20.0,-20.0}}),
+ Ellipse(
+ origin={10.0,10.0},
+ pattern=LinePattern.None,
+ fillPattern=FillPattern.Solid,
+ extent={{0.0,-80.0},{60.0,-20.0}}),
+ Ellipse(
+ origin={10.0,10.0},
+ fillColor={128,128,128},
+ pattern=LinePattern.None,
+ fillPattern=FillPattern.Solid,
+ extent={{0.0,0.0},{60.0,60.0}}),
+ Ellipse(
+ origin={10.0,10.0},
+ lineColor={128,128,128},
+ fillColor={255,255,255},
+ fillPattern=FillPattern.Solid,
+ extent={{-80.0,0.0},{-20.0,60.0}})}));
+end Subsequences;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Towers/FanSpeed/ReturnWaterTemperature/Subsequences/package.order b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Towers/FanSpeed/ReturnWaterTemperature/Subsequences/package.order
new file mode 100644
index 00000000000..8e76a4ce365
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Towers/FanSpeed/ReturnWaterTemperature/Subsequences/package.order
@@ -0,0 +1,5 @@
+Coupled
+Enable
+LessCoupled
+Setpoint
+Validation
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Towers/FanSpeed/ReturnWaterTemperature/Validation/Controller.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Towers/FanSpeed/ReturnWaterTemperature/Validation/Controller.mo
new file mode 100644
index 00000000000..6b39864722b
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Towers/FanSpeed/ReturnWaterTemperature/Validation/Controller.mo
@@ -0,0 +1,266 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Towers.FanSpeed.ReturnWaterTemperature.Validation;
+model Controller
+ "Validation sequence of controlling tower fan speed based on condenser water return temperature control"
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Towers.FanSpeed.ReturnWaterTemperature.Controller
+ towFanSpe
+ "Tow fan speed for close coupled plants that have waterside economizer"
+ annotation (Placement(transformation(extent={{-120,180},{-80,220}})));
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Towers.FanSpeed.ReturnWaterTemperature.Controller
+ towFanSpe1(final closeCoupledPlant=false)
+ "Tow fan speed for less coupled plants that have waterside economizer"
+ annotation (Placement(transformation(extent={{100,180},{140,220}})));
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Towers.FanSpeed.ReturnWaterTemperature.Controller
+ towFanSpe2(final have_WSE=false)
+ "Tow fan speed for close coupled plants that have no waterside economizer"
+ annotation (Placement(transformation(extent={{320,180},{360,220}})));
+
+protected
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Ramp speWSE(
+ final height=0.9, final duration=3600)
+ "Tower fan speed when waterside economizer is enabled"
+ annotation (Placement(transformation(extent={{-360,150},{-340,170}})));
+ Buildings.Controls.OBC.CDL.Logical.Sources.Pulse wseSta(
+ final width=0.2, final period=3600,
+ shift=-3000)
+ "Waterside economizer enabling status"
+ annotation (Placement(transformation(extent={{-360,50},{-340,70}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Ramp plaCap(
+ final height=8e5,
+ final duration=3600,
+ final offset=1e5) "Real operating chiller plant capacity"
+ annotation (Placement(transformation(extent={{-360,20},{-340,40}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Sine conSup(
+ final amplitude=2,
+ final freqHz=1/1800,
+ final offset=273.15 + 29) "Condenser water supply temperature"
+ annotation (Placement(transformation(extent={{-360,-250},{-340,-230}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Ramp ram2(
+ final height=3,
+ final duration=3600,
+ final startTime=1500) "Ramp"
+ annotation (Placement(transformation(extent={{-360,-290},{-340,-270}})));
+ Buildings.Controls.OBC.CDL.Continuous.Add add1 "Add real inputs"
+ annotation (Placement(transformation(extent={{-300,-270},{-280,-250}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Ramp ram3(
+ final height=3,
+ final duration=3600,
+ final startTime=1500) "Ramp"
+ annotation (Placement(transformation(extent={{-360,-200},{-340,-180}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Sine conRet2(
+ final amplitude=2,
+ final freqHz=1/1800,
+ final offset=273.15 + 28) "Condenser water return temperature"
+ annotation (Placement(transformation(extent={{-360,-170},{-340,-150}})));
+ Buildings.Controls.OBC.CDL.Continuous.Add add3 "Add real inputs"
+ annotation (Placement(transformation(extent={{-300,-190},{-280,-170}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Ramp conWatPumSpe1[2](
+ final height=fill(0.5, 2),
+ final duration=fill(3600, 2),
+ final startTime=fill(300, 2)) "Measured condenser water pump speed"
+ annotation (Placement(transformation(extent={{-300,-230},{-280,-210}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant hpTowSpe1(final k=0.5)
+ "Head pressure control maximum tower speed"
+ annotation (Placement(transformation(extent={{-320,0},{-300,20}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant hpTowSpe2(final k=0)
+ "Head pressure control maximum tower speed"
+ annotation (Placement(transformation(extent={{-360,-40},{-340,-20}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant towFanSpe3(final k=0.2)
+ "Measured tower fan speed"
+ annotation (Placement(transformation(extent={{-320,-60},{-300,-40}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant chiWatSupSet(
+ final k=273.15 + 6.5)
+ "Chilled water supply setpoint"
+ annotation (Placement(transformation(extent={{-360,-120},{-340,-100}})));
+ Buildings.Controls.OBC.CDL.Logical.Sources.Pulse chiSta1(
+ final width=0.2, final period=3600) "Chiller one enabling status"
+ annotation (Placement(transformation(extent={{-360,110},{-340,130}})));
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant chiSta2(final k=false)
+ "Chiller two enabling status"
+ annotation (Placement(transformation(extent={{-360,80},{-340,100}})));
+ Buildings.Controls.OBC.CDL.Logical.Or3 or3 "Logical or"
+ annotation (Placement(transformation(extent={{-260,-150},{-240,-130}})));
+ Buildings.Controls.OBC.CDL.Routing.BooleanScalarReplicator booRep(
+ final nout=4) "Replicate boolean input"
+ annotation (Placement(transformation(extent={{-200,-90},{-180,-70}})));
+ Buildings.Controls.OBC.CDL.Logical.Not not1 "Logical not"
+ annotation (Placement(transformation(extent={{-320,110},{-300,130}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant zer(
+ final k=0) "Constant zero"
+ annotation (Placement(transformation(extent={{-320,180},{-300,200}})));
+ Buildings.Controls.OBC.CDL.Continuous.Switch swi "Logical switch"
+ annotation (Placement(transformation(extent={{-240,150},{-220,170}})));
+ Buildings.Controls.OBC.CDL.Continuous.Switch swi1 "Logical switch"
+ annotation (Placement(transformation(extent={{-240,-20},{-220,0}})));
+
+equation
+ connect(ram2.y,add1. u2)
+ annotation (Line(points={{-338,-280},{-320,-280},{-320,-266},{-302,-266}},
+ color={0,0,127}));
+ connect(conSup.y,add1. u1)
+ annotation (Line(points={{-338,-240},{-320,-240},{-320,-254},{-302,-254}},
+ color={0,0,127}));
+ connect(wseSta.y, towFanSpe.uWse) annotation (Line(points={{-338,60},{-188,60},
+ {-188,212},{-122,212}}, color={255,0,255}));
+ connect(plaCap.y, towFanSpe.reqPlaCap)
+ annotation (Line(points={{-338,30},{-182,30},{-182,209},{-122,209}},
+ color={0,0,127}));
+ connect(towFanSpe3.y,towFanSpe.uFanSpe)
+ annotation (Line(points={{-298,-50},{-170,-50},{-170,203},{-122,203}},
+ color={0,0,127}));
+ connect(chiWatSupSet.y, towFanSpe.TChiWatSupSet)
+ annotation (Line(points={{-338,-110},{-158,-110},{-158,194},{-122,194}},
+ color={0,0,127}));
+ connect(conRet2.y, add3.u1)
+ annotation (Line(points={{-338,-160},{-320,-160},{-320,-174},{-302,-174}},
+ color={0,0,127}));
+ connect(ram3.y, add3.u2)
+ annotation (Line(points={{-338,-190},{-320,-190},{-320,-186},{-302,-186}},
+ color={0,0,127}));
+ connect(add3.y, towFanSpe.TConWatRet)
+ annotation (Line(points={{-278,-180},{-146,-180},{-146,188},{-122,188}},
+ color={0,0,127}));
+ connect(conWatPumSpe1.y, towFanSpe.uConWatPumSpe)
+ annotation (Line(points={{-278,-220},{-140,-220},{-140,185},{-122,185}},
+ color={0,0,127}));
+ connect(wseSta.y, towFanSpe1.uWse) annotation (Line(points={{-338,60},{32,60},
+ {32,212},{98,212}}, color={255,0,255}));
+ connect(plaCap.y, towFanSpe1.reqPlaCap)
+ annotation (Line(points={{-338,30},{38,30},{38,209},{98,209}}, color={0,0,127}));
+ connect(towFanSpe3.y,towFanSpe1.uFanSpe)
+ annotation (Line(points={{-298,-50},{50,-50},{50,203},{98,203}}, color={0,0,127}));
+ connect(chiWatSupSet.y, towFanSpe1.TChiWatSupSet)
+ annotation (Line(points={{-338,-110},{62,-110},{62,194},{98,194}}, color={0,0,127}));
+ connect(add3.y, towFanSpe1.TConWatRet)
+ annotation (Line(points={{-278,-180},{74,-180},{74,188},{98,188}}, color={0,0,127}));
+ connect(conWatPumSpe1.y, towFanSpe1.uConWatPumSpe)
+ annotation (Line(points={{-278,-220},{80,-220},{80,185},{98,185}}, color={0,0,127}));
+ connect(add1.y, towFanSpe1.TConWatSup)
+ annotation (Line(points={{-278,-260},{86,-260},{86,182},{98,182}}, color={0,0,127}));
+ connect(plaCap.y, towFanSpe2.reqPlaCap)
+ annotation (Line(points={{-338,30},{246,30},{246,209},{318,209}}, color={0,0,127}));
+ connect(towFanSpe3.y,towFanSpe2.uFanSpe)
+ annotation (Line(points={{-298,-50},{258,-50},{258,203},{318,203}}, color={0,0,127}));
+ connect(chiWatSupSet.y, towFanSpe2.TChiWatSupSet)
+ annotation (Line(points={{-338,-110},{270,-110},{270,194},{318,194}}, color={0,0,127}));
+ connect(add3.y, towFanSpe2.TConWatRet)
+ annotation (Line(points={{-278,-180},{282,-180},{282,188},{318,188}}, color={0,0,127}));
+ connect(conWatPumSpe1.y, towFanSpe2.uConWatPumSpe)
+ annotation (Line(points={{-278,-220},{288,-220},{288,185},{318,185}}, color={0,0,127}));
+ connect(chiSta2.y, towFanSpe.uChi[2])
+ annotation (Line(points={{-338,90},{-194,90},{-194,215},{-122,215}}, color={255,0,255}));
+ connect(chiSta2.y, towFanSpe1.uChi[2])
+ annotation (Line(points={{-338,90},{26,90},{26,215},{98,215}}, color={255,0,255}));
+ connect(chiSta2.y, towFanSpe2.uChi[2])
+ annotation (Line(points={{-338,90},{240,90},{240,215},{318,215}},
+ color={255,0,255}));
+ connect(chiSta2.y, or3.u2)
+ annotation (Line(points={{-338,90},{-286,90},{-286,-140},{-262,-140}},
+ color={255,0,255}));
+ connect(wseSta.y, or3.u3)
+ annotation (Line(points={{-338,60},{-292,60},{-292,-148},{-262,-148}},
+ color={255,0,255}));
+ connect(or3.y, towFanSpe.uPla)
+ annotation (Line(points={{-238,-140},{-152,-140},{-152,191},{-122,191}},
+ color={255,0,255}));
+ connect(or3.y, towFanSpe1.uPla)
+ annotation (Line(points={{-238,-140},{68,-140},{68,191},{98,191}},
+ color={255,0,255}));
+ connect(or3.y, towFanSpe2.uPla)
+ annotation (Line(points={{-238,-140},{276,-140},{276,191},{318,191}},
+ color={255,0,255}));
+ connect(or3.y, booRep.u)
+ annotation (Line(points={{-238,-140},{-220,-140},{-220,-80},{-202,-80}},
+ color={255,0,255}));
+ connect(booRep.y, towFanSpe.uTow) annotation (Line(points={{-178,-80},{-164,-80},
+ {-164,200},{-122,200}}, color={255,0,255}));
+ connect(booRep.y, towFanSpe1.uTow) annotation (Line(points={{-178,-80},{56,-80},
+ {56,200},{98,200}}, color={255,0,255}));
+ connect(booRep.y, towFanSpe2.uTow) annotation (Line(points={{-178,-80},{264,-80},
+ {264,200},{318,200}}, color={255,0,255}));
+ connect(chiSta1.y, not1.u)
+ annotation (Line(points={{-338,120},{-322,120}}, color={255,0,255}));
+ connect(not1.y, or3.u1)
+ annotation (Line(points={{-298,120},{-280,120},{-280,-132},{-262,-132}},
+ color={255,0,255}));
+ connect(not1.y, towFanSpe.uChi[1])
+ annotation (Line(points={{-298,120},{-194,120},{-194,215},{-122,215}},
+ color={255,0,255}));
+ connect(not1.y, towFanSpe1.uChi[1])
+ annotation (Line(points={{-298,120},{26,120},{26,215},{98,215}},
+ color={255,0,255}));
+ connect(not1.y, towFanSpe2.uChi[1])
+ annotation (Line(points={{-298,120},{240,120},{240,215},{318,215}},
+ color={255,0,255}));
+ connect(wseSta.y, swi.u2)
+ annotation (Line(points={{-338,60},{-292,60},{-292,160},{-242,160}},
+ color={255,0,255}));
+ connect(speWSE.y, swi.u1)
+ annotation (Line(points={{-338,160},{-300,160},{-300,168},{-242,168}},
+ color={0,0,127}));
+ connect(zer.y, swi.u3)
+ annotation (Line(points={{-298,190},{-260,190},{-260,152},{-242,152}},
+ color={0,0,127}));
+ connect(swi.y, towFanSpe.uTowSpeWSE)
+ annotation (Line(points={{-218,160},{-200,160},{-200,218},{-122,218}},
+ color={0,0,127}));
+ connect(swi.y, towFanSpe1.uTowSpeWSE)
+ annotation (Line(points={{-218,160},{20,160},{20,218},{98,218}}, color={0,0,127}));
+ connect(not1.y, swi1.u2)
+ annotation (Line(points={{-298,120},{-280,120},{-280,-10},{-242,-10}},
+ color={255,0,255}));
+ connect(hpTowSpe1.y, swi1.u1)
+ annotation (Line(points={{-298,10},{-276,10},{-276,-2},{-242,-2}},
+ color={0,0,127}));
+ connect(zer.y, swi1.u3)
+ annotation (Line(points={{-298,190},{-260,190},{-260,-18},{-242,-18}},
+ color={0,0,127}));
+ connect(swi1.y, towFanSpe.uMaxTowSpeSet[1])
+ annotation (Line(points={{-218,-10},{-176,-10},{-176,206},{-122,206}},
+ color={0,0,127}));
+ connect(hpTowSpe2.y, towFanSpe.uMaxTowSpeSet[2])
+ annotation (Line(points={{-338,-30},{-176,-30},{-176,206},{-122,206}},
+ color={0,0,127}));
+ connect(swi1.y, towFanSpe1.uMaxTowSpeSet[1])
+ annotation (Line(points={{-218,-10},{44,-10},{44,206},{98,206}},
+ color={0,0,127}));
+ connect(hpTowSpe2.y, towFanSpe1.uMaxTowSpeSet[2])
+ annotation (Line(points={{-338,-30},{44,-30},{44,206},{98,206}},
+ color={0,0,127}));
+ connect(swi1.y, towFanSpe2.uMaxTowSpeSet[1])
+ annotation (Line(points={{-218,-10},{252,-10},{252,206},{318,206}},
+ color={0,0,127}));
+ connect(hpTowSpe2.y, towFanSpe2.uMaxTowSpeSet[2])
+ annotation (Line(points={{-338,-30},{252,-30},{252,206},{318,206}},
+ color={0,0,127}));
+
+annotation (experiment(StopTime=3600.0, Tolerance=1e-06),
+ __Dymola_Commands(file="modelica://Buildings/Resources/Scripts/Dymola/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Towers/FanSpeed/ReturnWaterTemperature/Validation/Controller.mos"
+ "Simulate and plot"),
+ Documentation(info="
+
+This example validates
+
+Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Towers.FanSpeed.ReturnWaterTemperature.Controller.
+
+", revisions="
+
+-
+August 12, 2019, by Jianjun Hu:
+First implementation.
+
+
+"),
+ Icon(coordinateSystem(preserveAspectRatio=false, extent={{-100,-100},{100,100}}),
+ graphics={
+ Ellipse(lineColor = {75,138,73},
+ fillColor={255,255,255},
+ fillPattern = FillPattern.Solid,
+ extent = {{-100,-100},{100,100}}),
+ Polygon(lineColor = {0,0,255},
+ fillColor = {75,138,73},
+ pattern = LinePattern.None,
+ fillPattern = FillPattern.Solid,
+ points = {{-36,60},{64,0},{-36,-60},{-36,60}})}),
+ Diagram(coordinateSystem(preserveAspectRatio=false, extent={{-400,-300},{400,300}})));
+end Controller;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Towers/FanSpeed/ReturnWaterTemperature/Validation/package.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Towers/FanSpeed/ReturnWaterTemperature/Validation/package.mo
new file mode 100644
index 00000000000..e288478dfc3
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Towers/FanSpeed/ReturnWaterTemperature/Validation/package.mo
@@ -0,0 +1,37 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Towers.FanSpeed.ReturnWaterTemperature;
+package Validation "Collection of validation models"
+
+annotation (Icon(graphics={
+ Rectangle(
+ lineColor={200,200,200},
+ fillColor={248,248,248},
+ fillPattern=FillPattern.HorizontalCylinder,
+ extent={{-100.0,-100.0},{100.0,100.0}},
+ radius=25.0),
+ Rectangle(
+ lineColor={128,128,128},
+ extent={{-100.0,-100.0},{100.0,100.0}},
+ radius=25.0),
+ Polygon(
+ origin={8.0,14.0},
+ lineColor={78,138,73},
+ fillColor={78,138,73},
+ pattern=LinePattern.None,
+ fillPattern=FillPattern.Solid,
+ points={{-58.0,46.0},{42.0,-14.0},{-58.0,-74.0},{-58.0,46.0}})}),
+preferredView="info", Documentation(info="
+
+This package contains validation models for the classes in
+
+Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Towers.FanSpeed.ReturnWaterTemperature.
+
+
+Note that most validation models contain simple input data
+which may not be realistic, but for which the correct
+output can be obtained through an analytic solution.
+The examples plot various outputs, which have been verified against these
+solutions. These model outputs are stored as reference data and
+used for continuous validation whenever models in the library change.
+
+"));
+end Validation;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Towers/FanSpeed/ReturnWaterTemperature/Validation/package.order b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Towers/FanSpeed/ReturnWaterTemperature/Validation/package.order
new file mode 100644
index 00000000000..8cba75e31a7
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Towers/FanSpeed/ReturnWaterTemperature/Validation/package.order
@@ -0,0 +1 @@
+Controller
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Towers/FanSpeed/ReturnWaterTemperature/package.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Towers/FanSpeed/ReturnWaterTemperature/package.mo
new file mode 100644
index 00000000000..17c70604e23
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Towers/FanSpeed/ReturnWaterTemperature/package.mo
@@ -0,0 +1,46 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Towers.FanSpeed;
+package ReturnWaterTemperature "Sequences of control tower fan speed for controlling condenser water return temperature"
+
+annotation (
+preferredView="info", Documentation(info="
+
+This package contains sequences of cooling tower fan speed control, for control condenser
+water return temperature.
+The implementation is based on section 5.2.12.2, item 2 in ASHRAE RP-1711, Draft on March 23, 2020.
+
+"),
+Icon(graphics={
+ Rectangle(
+ lineColor={200,200,200},
+ fillColor={248,248,248},
+ fillPattern=FillPattern.HorizontalCylinder,
+ extent={{-100.0,-100.0},{100.0,100.0}},
+ radius=25.0),
+ Rectangle(
+ lineColor={128,128,128},
+ extent={{-100.0,-100.0},{100.0,100.0}},
+ radius=25.0),
+ Ellipse(
+ origin={10.0,10.0},
+ fillColor={76,76,76},
+ pattern=LinePattern.None,
+ fillPattern=FillPattern.Solid,
+ extent={{-80.0,-80.0},{-20.0,-20.0}}),
+ Ellipse(
+ origin={10.0,10.0},
+ pattern=LinePattern.None,
+ fillPattern=FillPattern.Solid,
+ extent={{0.0,-80.0},{60.0,-20.0}}),
+ Ellipse(
+ origin={10.0,10.0},
+ fillColor={128,128,128},
+ pattern=LinePattern.None,
+ fillPattern=FillPattern.Solid,
+ extent={{0.0,0.0},{60.0,60.0}}),
+ Ellipse(
+ origin={10.0,10.0},
+ lineColor={128,128,128},
+ fillColor={255,255,255},
+ fillPattern=FillPattern.Solid,
+ extent={{-80.0,0.0},{-20.0,60.0}})}));
+end ReturnWaterTemperature;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Towers/FanSpeed/ReturnWaterTemperature/package.order b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Towers/FanSpeed/ReturnWaterTemperature/package.order
new file mode 100644
index 00000000000..9ffbffcb990
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Towers/FanSpeed/ReturnWaterTemperature/package.order
@@ -0,0 +1,3 @@
+Controller
+Subsequences
+Validation
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Towers/FanSpeed/Validation/Controller.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Towers/FanSpeed/Validation/Controller.mo
new file mode 100644
index 00000000000..b2346eb2c0c
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Towers/FanSpeed/Validation/Controller.mo
@@ -0,0 +1,319 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Towers.FanSpeed.Validation;
+model Controller "Validation sequence of controlling tower fan speed"
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Towers.FanSpeed.Controller
+ cloCouWitWse
+ "Tower fan speed controller of plant that is close coupled plant and has waterside economizer"
+ annotation (Placement(transformation(extent={{-80,280},{-60,320}})));
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Towers.FanSpeed.Controller
+ lesCouWitWse(final closeCoupledPlant=false)
+ "Tower fan speed controller of plant that is less coupled plant and has waterside economizer"
+ annotation (Placement(transformation(extent={{100,280},{120,320}})));
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Towers.FanSpeed.Controller
+ cloCouNoWse(final have_WSE=false)
+ "Tower fan speed controller of plant that is close coupled plant and has no waterside economizer"
+ annotation (Placement(transformation(extent={{280,280},{300,320}})));
+
+protected
+ Buildings.Controls.OBC.CDL.Logical.Sources.Pulse wseSta(
+ final width=0.2, final period=3600,
+ shift=-3000)
+ "Waterside economizer enabling status"
+ annotation (Placement(transformation(extent={{-360,140},{-340,160}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Ramp plaCap(
+ final height=8e5,
+ final duration=3600,
+ final offset=1e5) "Real operating chiller plant capacity"
+ annotation (Placement(transformation(extent={{-360,10},{-340,30}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Sine conSup(
+ final amplitude=2,
+ final freqHz=1/1800,
+ final offset=273.15 + 29) "Condenser water supply temperature"
+ annotation (Placement(transformation(extent={{-360,-250},{-340,-230}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Ramp ram2(
+ final height=3,
+ final duration=3600,
+ final startTime=1500) "Ramp"
+ annotation (Placement(transformation(extent={{-360,-290},{-340,-270}})));
+ Buildings.Controls.OBC.CDL.Continuous.Add add1 "Add real inputs"
+ annotation (Placement(transformation(extent={{-300,-270},{-280,-250}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Ramp ram3(
+ final height=3,
+ final duration=3600,
+ final startTime=1500) "Ramp"
+ annotation (Placement(transformation(extent={{-360,-200},{-340,-180}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Sine conRet2(
+ final amplitude=2,
+ final freqHz=1/1800,
+ final offset=273.15 + 28) "Condenser water return temperature"
+ annotation (Placement(transformation(extent={{-360,-170},{-340,-150}})));
+ Buildings.Controls.OBC.CDL.Continuous.Add add3 "Add real inputs"
+ annotation (Placement(transformation(extent={{-300,-190},{-280,-170}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Ramp conWatPumSpe1[2](
+ final height=fill(0.5, 2),
+ final duration=fill(3600, 2),
+ final startTime=fill(300, 2)) "Measured condenser water pump speed"
+ annotation (Placement(transformation(extent={{-300,-230},{-280,-210}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant hpTowSpe1(final k=0.5)
+ "Head pressure control maximum tower speed"
+ annotation (Placement(transformation(extent={{-320,-10},{-300,10}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant hpTowSpe2(final k=0)
+ "Head pressure control maximum tower speed"
+ annotation (Placement(transformation(extent={{-360,-70},{-340,-50}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant towFanSpe3(final k=0.2)
+ "Measured tower fan speed"
+ annotation (Placement(transformation(extent={{-320,110},{-300,130}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant chiWatSupSet(
+ final k=273.15 + 6.5)
+ "Chilled water supply setpoint"
+ annotation (Placement(transformation(extent={{-360,-120},{-340,-100}})));
+ Buildings.Controls.OBC.CDL.Logical.Sources.Pulse chiSta1(
+ final width=0.2, final period=3600) "Chiller one enabling status"
+ annotation (Placement(transformation(extent={{-360,200},{-340,220}})));
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant chiSta2(final k=false)
+ "Chiller two enabling status"
+ annotation (Placement(transformation(extent={{-360,170},{-340,190}})));
+ Buildings.Controls.OBC.CDL.Logical.Or3 or3 "Logical or"
+ annotation (Placement(transformation(extent={{-260,-150},{-240,-130}})));
+ Buildings.Controls.OBC.CDL.Routing.BooleanScalarReplicator booRep(
+ final nout=4) "Replicate boolean input"
+ annotation (Placement(transformation(extent={{-200,-90},{-180,-70}})));
+ Buildings.Controls.OBC.CDL.Logical.Not not1 "Logical not"
+ annotation (Placement(transformation(extent={{-320,200},{-300,220}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant zer(
+ final k=0) "Constant zero"
+ annotation (Placement(transformation(extent={{-320,-50},{-300,-30}})));
+ Buildings.Controls.OBC.CDL.Continuous.Switch swi1 "Logical switch"
+ annotation (Placement(transformation(extent={{-240,-30},{-220,-10}})));
+ Buildings.Controls.OBC.CDL.Continuous.Switch swi2 "Logical switch"
+ annotation (Placement(transformation(extent={{-260,260},{-240,280}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant con1(final k=0)
+ "Zero constant"
+ annotation (Placement(transformation(extent={{-360,240},{-340,260}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Sine sin(
+ final amplitude=0.2*1e4,
+ final freqHz=1/1200,
+ final offset=1.1*1e4,
+ final startTime=180) "Chiller load"
+ annotation (Placement(transformation(extent={{-360,280},{-340,300}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Sine chiSup(
+ final amplitude=0.5,
+ final freqHz=1/1800,
+ final offset=273.15 + 7.1) "Chilled water supply temperature"
+ annotation (Placement(transformation(extent={{-360,80},{-340,100}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Ramp ram1(
+ final height=3,
+ final duration=3600,
+ final startTime=1500) "Ramp"
+ annotation (Placement(transformation(extent={{-360,40},{-340,60}})));
+ Buildings.Controls.OBC.CDL.Continuous.Add add2 "Add real inputs"
+ annotation (Placement(transformation(extent={{-260,60},{-240,80}})));
+
+equation
+ connect(ram2.y,add1. u2)
+ annotation (Line(points={{-338,-280},{-320,-280},{-320,-266},{-302,-266}},
+ color={0,0,127}));
+ connect(conSup.y,add1. u1)
+ annotation (Line(points={{-338,-240},{-320,-240},{-320,-254},{-302,-254}},
+ color={0,0,127}));
+ connect(conRet2.y, add3.u1)
+ annotation (Line(points={{-338,-160},{-320,-160},{-320,-174},{-302,-174}},
+ color={0,0,127}));
+ connect(ram3.y, add3.u2)
+ annotation (Line(points={{-338,-190},{-320,-190},{-320,-186},{-302,-186}},
+ color={0,0,127}));
+ connect(chiSta2.y, or3.u2)
+ annotation (Line(points={{-338,180},{-286,180},{-286,-140},{-262,-140}},
+ color={255,0,255}));
+ connect(wseSta.y, or3.u3)
+ annotation (Line(points={{-338,150},{-292,150},{-292,-148},{-262,-148}},
+ color={255,0,255}));
+ connect(or3.y, booRep.u)
+ annotation (Line(points={{-238,-140},{-220,-140},{-220,-80},{-202,-80}},
+ color={255,0,255}));
+ connect(chiSta1.y, not1.u)
+ annotation (Line(points={{-338,210},{-322,210}}, color={255,0,255}));
+ connect(not1.y, or3.u1)
+ annotation (Line(points={{-298,210},{-280,210},{-280,-132},{-262,-132}},
+ color={255,0,255}));
+ connect(not1.y, swi1.u2)
+ annotation (Line(points={{-298,210},{-280,210},{-280,-20},{-242,-20}},
+ color={255,0,255}));
+ connect(hpTowSpe1.y, swi1.u1)
+ annotation (Line(points={{-298,0},{-260,0},{-260,-12},{-242,-12}},
+ color={0,0,127}));
+ connect(zer.y, swi1.u3)
+ annotation (Line(points={{-298,-40},{-260,-40},{-260,-28},{-242,-28}},
+ color={0,0,127}));
+ connect(con1.y,swi2. u3)
+ annotation (Line(points={{-338,250},{-320,250},{-320,262},{-262,262}},
+ color={0,0,127}));
+ connect(sin.y,swi2. u1)
+ annotation (Line(points={{-338,290},{-320,290},{-320,278},{-262,278}},
+ color={0,0,127}));
+ connect(not1.y, swi2.u2)
+ annotation (Line(points={{-298,210},{-280,210},{-280,270},{-262,270}},
+ color={255,0,255}));
+ connect(con1.y, cloCouWitWse.chiLoa[2])
+ annotation (Line(points={{-338,250},{-210,250},{-210,319},{-82,319}},
+ color={0,0,127}));
+ connect(not1.y, cloCouWitWse.uChi[1])
+ annotation (Line(points={{-298,210},{-200,210},{-200,316},{-82,316}},
+ color={255,0,255}));
+ connect(chiSta2.y, cloCouWitWse.uChi[2])
+ annotation (Line(points={{-338,180},{-200,180},{-200,316},{-82,316}},
+ color={255,0,255}));
+ connect(wseSta.y, cloCouWitWse.uWse)
+ annotation (Line(points={{-338,150},{-190,150},{-190,313},{-82,313}},
+ color={255,0,255}));
+ connect(towFanSpe3.y, cloCouWitWse.uFanSpe)
+ annotation (Line(points={{-298,120},{-180,120},{-180,310},{-82,310}},
+ color={0,0,127}));
+ connect(chiSup.y,add2. u1)
+ annotation (Line(points={{-338,90},{-320,90},{-320,76},{-262,76}},
+ color={0,0,127}));
+ connect(ram1.y,add2. u2)
+ annotation (Line(points={{-338,50},{-320,50},{-320,64},{-262,64}},
+ color={0,0,127}));
+ connect(add2.y, cloCouWitWse.TChiWatSup)
+ annotation (Line(points={{-238,70},{-170,70},{-170,307},{-82,307}},
+ color={0,0,127}));
+ connect(chiWatSupSet.y, cloCouWitWse.TChiWatSupSet)
+ annotation (Line(points={{-338,-110},{-160,-110},{-160,304},{-82,304}},
+ color={0,0,127}));
+ connect(plaCap.y, cloCouWitWse.reqPlaCap)
+ annotation (Line(points={{-338,20},{-150,20},{-150,301},{-82,301}},
+ color={0,0,127}));
+ connect(swi1.y, cloCouWitWse.uMaxTowSpeSet[1])
+ annotation (Line(points={{-218,-20},{-140,-20},{-140,298},{-82,298}},
+ color={0,0,127}));
+ connect(hpTowSpe2.y, cloCouWitWse.uMaxTowSpeSet[2])
+ annotation (Line(points={{-338,-60},{-140,-60},{-140,298},{-82,298}},
+ color={0,0,127}));
+ connect(booRep.y, cloCouWitWse.uTow)
+ annotation (Line(points={{-178,-80},{-130,-80},{-130,295},{-82,295}},
+ color={255,0,255}));
+ connect(or3.y, cloCouWitWse.uPla)
+ annotation (Line(points={{-238,-140},{-120,-140},{-120,289},{-82,289}},
+ color={255,0,255}));
+ connect(add3.y, cloCouWitWse.TConWatRet)
+ annotation (Line(points={{-278,-180},{-110,-180},{-110,286},{-82,286}},
+ color={0,0,127}));
+ connect(conWatPumSpe1.y, cloCouWitWse.uConWatPumSpe)
+ annotation (Line(points={{-278,-220},{-100,-220},{-100,283},{-82,283}},
+ color={0,0,127}));
+ connect(swi2.y, cloCouWitWse.chiLoa[1])
+ annotation (Line(points={{-238,270},{-210,270},{-210,319},{-82,319}},
+ color={0,0,127}));
+ connect(swi2.y, lesCouWitWse.chiLoa[1])
+ annotation (Line(points={{-238,270},{-40,270},{-40,319},{98,319}},
+ color={0,0,127}));
+ connect(con1.y, lesCouWitWse.chiLoa[2])
+ annotation (Line(points={{-338,250},{-40,250},{-40,319},{98,319}},
+ color={0,0,127}));
+ connect(not1.y, lesCouWitWse.uChi[1])
+ annotation (Line(points={{-298,210},{-30,210},{-30,316},{98,316}},
+ color={255,0,255}));
+ connect(chiSta2.y, lesCouWitWse.uChi[2])
+ annotation (Line(points={{-338,180},{-20,180},{-20,316},{98,316}},
+ color={255,0,255}));
+ connect(wseSta.y, lesCouWitWse.uWse)
+ annotation (Line(points={{-338,150},{-10,150},{-10,313},{98,313}},
+ color={255,0,255}));
+ connect(towFanSpe3.y, lesCouWitWse.uFanSpe)
+ annotation (Line(points={{-298,120},{0,120},{0,310},{98,310}},
+ color={0,0,127}));
+ connect(add2.y, lesCouWitWse.TChiWatSup)
+ annotation (Line(points={{-238,70},{10,70},{10,307},{98,307}},
+ color={0,0,127}));
+ connect(chiWatSupSet.y, lesCouWitWse.TChiWatSupSet)
+ annotation (Line(points={{-338,-110},{20,-110},{20,304},{98,304}},
+ color={0,0,127}));
+ connect(plaCap.y, lesCouWitWse.reqPlaCap)
+ annotation (Line(points={{-338,20},{30,20},{30,301},{98,301}},
+ color={0,0,127}));
+ connect(swi1.y, lesCouWitWse.uMaxTowSpeSet[1])
+ annotation (Line(points={{-218,-20},{40,-20},{40,298},{98,298}},
+ color={0,0,127}));
+ connect(hpTowSpe2.y, lesCouWitWse.uMaxTowSpeSet[2])
+ annotation (Line(points={{-338,-60},{40,-60},{40,298},{98,298}},
+ color={0,0,127}));
+ connect(booRep.y, lesCouWitWse.uTow)
+ annotation (Line(points={{-178,-80},{50,-80},{50,295},{98,295}},
+ color={255,0,255}));
+ connect(or3.y, lesCouWitWse.uPla)
+ annotation (Line(points={{-238,-140},{60,-140},{60,289},{98,289}},
+ color={255,0,255}));
+ connect(add3.y, lesCouWitWse.TConWatRet)
+ annotation (Line(points={{-278,-180},{70,-180},{70,286},{98,286}},
+ color={0,0,127}));
+ connect(conWatPumSpe1.y, lesCouWitWse.uConWatPumSpe)
+ annotation (Line(points={{-278,-220},{80,-220},{80,283},{98,283}},
+ color={0,0,127}));
+ connect(add1.y, lesCouWitWse.TConWatSup)
+ annotation (Line(points={{-278,-260},{90,-260},{90,281},{98,281}},
+ color={0,0,127}));
+ connect(not1.y, cloCouNoWse.uChi[1])
+ annotation (Line(points={{-298,210},{140,210},{140,316},{278,316}},
+ color={255,0,255}));
+ connect(chiSta2.y, cloCouNoWse.uChi[2])
+ annotation (Line(points={{-338,180},{140,180},{140,316},{278,316}},
+ color={255,0,255}));
+ connect(towFanSpe3.y, cloCouNoWse.uFanSpe)
+ annotation (Line(points={{-298,120},{150,120},{150,310},{278,310}},
+ color={0,0,127}));
+ connect(chiWatSupSet.y, cloCouNoWse.TChiWatSupSet)
+ annotation (Line(points={{-338,-110},{160,-110},{160,304},{278,304}},
+ color={0,0,127}));
+ connect(plaCap.y, cloCouNoWse.reqPlaCap)
+ annotation (Line(points={{-338,20},{170,20},{170,301},{278,301}},
+ color={0,0,127}));
+ connect(swi1.y, cloCouNoWse.uMaxTowSpeSet[1])
+ annotation (Line(points={{-218,-20},{180,-20},{180,298},{278,298}},
+ color={0,0,127}));
+ connect(hpTowSpe2.y, cloCouNoWse.uMaxTowSpeSet[2])
+ annotation (Line(points={{-338,-60},{180,-60},{180,298},{278,298}},
+ color={0,0,127}));
+ connect(booRep.y, cloCouNoWse.uTow)
+ annotation (Line(points={{-178,-80},{190,-80},{190,295},{278,295}},
+ color={255,0,255}));
+ connect(or3.y, cloCouNoWse.uPla)
+ annotation (Line(points={{-238,-140},{200,-140},{200,289},{278,289}},
+ color={255,0,255}));
+ connect(add3.y, cloCouNoWse.TConWatRet)
+ annotation (Line(points={{-278,-180},{210,-180},{210,286},{278,286}},
+ color={0,0,127}));
+ connect(conWatPumSpe1.y, cloCouNoWse.uConWatPumSpe)
+ annotation (Line(points={{-278,-220},{220,-220},{220,283},{278,283}},
+ color={0,0,127}));
+
+annotation (experiment(StopTime=3600.0, Tolerance=1e-06),
+ __Dymola_Commands(file="modelica://Buildings/Resources/Scripts/Dymola/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Towers/FanSpeed/Validation/Controller.mos"
+ "Simulate and plot"),
+ Documentation(info="
+
+This example validates
+
+Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Towers.FanSpeed.Controller.
+
+", revisions="
+
+-
+September 15, 2019, by Jianjun Hu:
+First implementation.
+
+
+"),
+ Icon(coordinateSystem(preserveAspectRatio=false, extent={{-100,-100},{100,100}}),
+ graphics={
+ Ellipse(lineColor = {75,138,73},
+ fillColor={255,255,255},
+ fillPattern = FillPattern.Solid,
+ extent = {{-100,-100},{100,100}}),
+ Polygon(lineColor = {0,0,255},
+ fillColor = {75,138,73},
+ pattern = LinePattern.None,
+ fillPattern = FillPattern.Solid,
+ points = {{-36,60},{64,0},{-36,-60},{-36,60}})}),
+ Diagram(coordinateSystem(preserveAspectRatio=false, extent={{-400,-340},{400,340}})));
+end Controller;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Towers/FanSpeed/Validation/package.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Towers/FanSpeed/Validation/package.mo
new file mode 100644
index 00000000000..4305240aa80
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Towers/FanSpeed/Validation/package.mo
@@ -0,0 +1,37 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Towers.FanSpeed;
+package Validation "Collection of validation models"
+
+annotation (Icon(graphics={
+ Rectangle(
+ lineColor={200,200,200},
+ fillColor={248,248,248},
+ fillPattern=FillPattern.HorizontalCylinder,
+ extent={{-100.0,-100.0},{100.0,100.0}},
+ radius=25.0),
+ Rectangle(
+ lineColor={128,128,128},
+ extent={{-100.0,-100.0},{100.0,100.0}},
+ radius=25.0),
+ Polygon(
+ origin={8.0,14.0},
+ lineColor={78,138,73},
+ fillColor={78,138,73},
+ pattern=LinePattern.None,
+ fillPattern=FillPattern.Solid,
+ points={{-58.0,46.0},{42.0,-14.0},{-58.0,-74.0},{-58.0,46.0}})}),
+preferredView="info", Documentation(info="
+
+This package contains validation models for the classes in
+
+Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Towers.FanSpeed.
+
+
+Note that most validation models contain simple input data
+which may not be realistic, but for which the correct
+output can be obtained through an analytic solution.
+The examples plot various outputs, which have been verified against these
+solutions. These model outputs are stored as reference data and
+used for continuous validation whenever models in the library change.
+
+"));
+end Validation;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Towers/FanSpeed/Validation/package.order b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Towers/FanSpeed/Validation/package.order
new file mode 100644
index 00000000000..8cba75e31a7
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Towers/FanSpeed/Validation/package.order
@@ -0,0 +1 @@
+Controller
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Towers/FanSpeed/package.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Towers/FanSpeed/package.mo
new file mode 100644
index 00000000000..522b177dd44
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Towers/FanSpeed/package.mo
@@ -0,0 +1,47 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Towers;
+package FanSpeed "Package of sequences for cooling tower fan speed control"
+
+annotation (
+preferredView="info", Documentation(info="
+
+This package contains sequences for cooling tower fan speed control.
+The implementation is based on section 5.2.12.2 in
+ASHRAE RP-1711 Advanced Sequences of Operation for HVAC Systems Phase II –
+Central Plants and Hydronic Systems (draft version on March 23, 2020).
+
+"),
+Icon(graphics={
+ Rectangle(
+ lineColor={200,200,200},
+ fillColor={248,248,248},
+ fillPattern=FillPattern.HorizontalCylinder,
+ extent={{-100.0,-100.0},{100.0,100.0}},
+ radius=25.0),
+ Rectangle(
+ lineColor={128,128,128},
+ extent={{-100.0,-100.0},{100.0,100.0}},
+ radius=25.0),
+ Ellipse(
+ origin={10.0,10.0},
+ fillColor={76,76,76},
+ pattern=LinePattern.None,
+ fillPattern=FillPattern.Solid,
+ extent={{-80.0,-80.0},{-20.0,-20.0}}),
+ Ellipse(
+ origin={10.0,10.0},
+ pattern=LinePattern.None,
+ fillPattern=FillPattern.Solid,
+ extent={{0.0,-80.0},{60.0,-20.0}}),
+ Ellipse(
+ origin={10.0,10.0},
+ fillColor={128,128,128},
+ pattern=LinePattern.None,
+ fillPattern=FillPattern.Solid,
+ extent={{0.0,0.0},{60.0,60.0}}),
+ Ellipse(
+ origin={10.0,10.0},
+ lineColor={128,128,128},
+ fillColor={255,255,255},
+ fillPattern=FillPattern.Solid,
+ extent={{-80.0,0.0},{-20.0,60.0}})}));
+end FanSpeed;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Towers/FanSpeed/package.order b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Towers/FanSpeed/package.order
new file mode 100644
index 00000000000..62759a805aa
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Towers/FanSpeed/package.order
@@ -0,0 +1,4 @@
+Controller
+EnabledWSE
+ReturnWaterTemperature
+Validation
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Towers/Staging/Controller.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Towers/Staging/Controller.mo
new file mode 100644
index 00000000000..c74d5308c4a
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Towers/Staging/Controller.mo
@@ -0,0 +1,243 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Towers.Staging;
+block Controller "Sequence of staging cooling tower cells"
+
+ parameter Boolean have_WSE=true
+ "Flag to indicate if the plant has waterside economizer";
+ parameter Integer nTowCel=4 "Total number of cooling tower cells";
+ parameter Integer nConWatPum=2 "Total number of condenser water pumps";
+ parameter Integer totSta=6
+ "Total number of plant stages, including stage zero and the stages with a WSE, if applicable";
+ parameter Real staVec[totSta]={0,0.5,1,1.5,2,2.5}
+ "Plant stage vector with size of total number of stages, element value like x.5 means chiller stage x plus WSE";
+ parameter Real towCelOnSet[totSta]={0,2,2,4,4,4}
+ "Design number of tower fan cells that should be ON, according to current chiller stage and WSE status";
+ parameter Real chaTowCelIsoTim=90
+ "Nominal time needed for open isolation valve of the tower cells";
+ parameter Real speChe=0.01
+ "Lower threshold value to check if condenser water pump is proven on"
+ annotation (Dialog(tab="Advanced"));
+
+ Buildings.Controls.OBC.CDL.Interfaces.IntegerInput uChiSta
+ "Current chiller stage"
+ annotation (Placement(transformation(extent={{-140,110},{-100,150}}),
+ iconTransformation(extent={{-140,70},{-100,110}})));
+ Buildings.Controls.OBC.CDL.Interfaces.IntegerInput uChiStaSet
+ "Current chiller stage setpoint"
+ annotation (Placement(transformation(extent={{-140,80},{-100,120}}),
+ iconTransformation(extent={{-140,50},{-100,90}})));
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uTowStaCha
+ "Cooling tower stage change command from plant staging process"
+ annotation (Placement(transformation(extent={{-140,50},{-100,90}}),
+ iconTransformation(extent={{-140,30},{-100,70}})));
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uWse if have_WSE
+ "Water side economizer status: true = ON, false = OFF"
+ annotation (Placement(transformation(extent={{-140,20},{-100,60}}),
+ iconTransformation(extent={{-140,10},{-100,50}})));
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uEnaPla
+ "True: plant is just enabled"
+ annotation(Placement(transformation(extent={{-140,-10},{-100,30}}),
+ iconTransformation(extent={{-140,-10},{-100,30}})));
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uLeaConWatPum
+ "Enabling status of lead condenser water pump"
+ annotation (Placement(transformation(extent={{-140,-40},{-100,0}}),
+ iconTransformation(extent={{-140,-30},{-100,10}})));
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput uConWatPumSpe[nConWatPum](
+ final unit=fill("1", nConWatPum)) "Current condenser water pump speed"
+ annotation (Placement(transformation(extent={{-140,-70},{-100,-30}}),
+ iconTransformation(extent={{-140,-50},{-100,-10}})));
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput uIsoVal[nTowCel](
+ final max=fill(1, nTowCel))
+ "Vector of tower cells isolation valve position"
+ annotation (Placement(transformation(extent={{-140,-120},{-100,-80}}),
+ iconTransformation(extent={{-140,-90},{-100,-50}})));
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uTowSta[nTowCel]
+ "Vector of tower cells proven on status: true=proven on"
+ annotation (Placement(transformation(extent={{-140,-150},{-100,-110}}),
+ iconTransformation(extent={{-140,-110},{-100,-70}})));
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanOutput yLeaCel
+ "Lead tower cell status"
+ annotation (Placement(transformation(extent={{100,64},{140,104}}),
+ iconTransformation(extent={{100,20},{140,60}})));
+ Buildings.Controls.OBC.CDL.Interfaces.RealOutput yIsoVal[nTowCel](
+ final unit=fill("1", nTowCel),
+ final min=fill(0, nTowCel),
+ final max=fill(1, nTowCel))
+ "Vector of tower cells isolation valve position"
+ annotation (Placement(transformation(extent={{100,-14},{140,26}}),
+ iconTransformation(extent={{100,-20},{140,20}})));
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanOutput yTowSta[nTowCel]
+ "Vector of tower cells status setpoint"
+ annotation (Placement(transformation(extent={{100,-80},{140,-40}}),
+ iconTransformation(extent={{100,-60},{140,-20}})));
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanOutput yEndSta
+ "Rising edge to indicate the staging process is done"
+ annotation (Placement(transformation(extent={{100,-120},{140,-80}}),
+ iconTransformation(extent={{100,-110},{140,-70}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Towers.Staging.Subsequences.CellsNumber
+ enaCel(
+ final have_WSE=have_WSE,
+ final nConWatPum=nConWatPum,
+ final nTowCel=nTowCel,
+ final totSta=totSta,
+ final staVec=staVec,
+ final towCelOnSet=towCelOnSet,
+ final speChe=speChe) "Total number of enabled cells"
+ annotation (Placement(transformation(extent={{-40,80},{-20,100}})));
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Towers.Staging.Subsequences.StageProcesses
+ staPro(
+ final nTowCel=nTowCel,
+ final chaTowCelIsoTim=chaTowCelIsoTim)
+ "Tower staging process"
+ annotation (Placement(transformation(extent={{0,-10},{20,10}})));
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Towers.Staging.Subsequences.ChangeCells ideChaCel(
+ final nTowCel=nTowCel)
+ "Identify which cell should change status"
+ annotation (Placement(transformation(extent={{20,50},{40,70}})));
+
+equation
+ connect(uChiSta, enaCel.uChiSta) annotation (Line(points={{-120,130},{-74,130},
+ {-74,99},{-42,99}}, color={255,127,0}));
+ connect(uChiStaSet, enaCel.uChiStaSet) annotation (Line(points={{-120,100},{-80,
+ 100},{-80,96},{-42,96}}, color={255,127,0}));
+ connect(enaCel.uTowStaCha, uTowStaCha) annotation (Line(points={{-42,92},{-80,
+ 92},{-80,70},{-120,70}}, color={255,0,255}));
+ connect(uWse, enaCel.uWse) annotation (Line(points={{-120,40},{-74,40},{-74,89},
+ {-42,89}}, color={255,0,255}));
+ connect(enaCel.uLeaConWatPum, uLeaConWatPum) annotation (Line(points={{-42,84},
+ {-62,84},{-62,-20},{-120,-20}}, color={255,0,255}));
+ connect(enaCel.uConWatPumSpe, uConWatPumSpe) annotation (Line(points={{-42,81},
+ {-56,81},{-56,-50},{-120,-50}}, color={0,0,127}));
+ connect(enaCel.yLeaCel, yLeaCel) annotation (Line(points={{-18,84},{120,84}},
+ color={255,0,255}));
+ connect(staPro.yIsoVal, yIsoVal)
+ annotation (Line(points={{22,6},{120,6}}, color={0,0,127}));
+ connect(staPro.yTowSta, yTowSta) annotation (Line(points={{22,0},{60,0},{60,-60},
+ {120,-60}}, color={255,0,255}));
+ connect(uTowSta, staPro.uTowSta) annotation (Line(points={{-120,-130},{-20,-130},
+ {-20,-8},{-2,-8}}, color={255,0,255}));
+ connect(uIsoVal, staPro.uIsoVal) annotation (Line(points={{-120,-100},{-26,-100},
+ {-26,0},{-2,0}}, color={0,0,127}));
+ connect(staPro.yEndSta, yEndSta) annotation (Line(points={{22,-6},{50,-6},{50,
+ -100},{120,-100}}, color={255,0,255}));
+ connect(uEnaPla, enaCel.uEnaPla) annotation (Line(points={{-120,10},{-68,10},
+ {-68,87},{-42,87}},color={255,0,255}));
+ connect(enaCel.yNumCel, ideChaCel.uCelNum) annotation (Line(points={{-18,90},{
+ 0,90},{0,64},{18,64}}, color={255,127,0}));
+ connect(uTowSta, ideChaCel.uTowSta) annotation (Line(points={{-120,-130},{-50,
+ -130},{-50,56},{18,56}}, color={255,0,255}));
+ connect(ideChaCel.yChaCel, staPro.uChaCel) annotation (Line(points={{42,56},{
+ 60,56},{60,20},{-20,20},{-20,8},{-2,8}}, color={255,0,255}));
+annotation (
+ defaultComponentName="towSta",
+ Diagram(coordinateSystem(preserveAspectRatio=false,
+ extent={{-100,-140},{100,140}})),
+ Icon(graphics={
+ Rectangle(
+ extent={{-100,-100},{100,100}},
+ lineColor={0,0,127},
+ fillColor={255,255,255},
+ fillPattern=FillPattern.Solid),
+ Text(
+ extent={{-100,150},{100,110}},
+ textColor={0,0,255},
+ textString="%name"),
+ Text(
+ extent={{-98,-64},{-62,-76}},
+ textColor={0,0,127},
+ textString="uIsoVal"),
+ Text(
+ extent={{-98,76},{-44,64}},
+ textColor={255,127,0},
+ textString="uChiStaSet"),
+ Text(
+ extent={{-98,96},{-60,84}},
+ textColor={255,127,0},
+ textString="uChiSta"),
+ Text(
+ extent={{-98,56},{-38,44}},
+ textColor={255,0,255},
+ textString="uTowStaCha"),
+ Text(
+ extent={{-100,36},{-70,24}},
+ textColor={255,0,255},
+ textString="uWse",
+ visible=have_WSE),
+ Text(
+ extent={{-98,-4},{-20,-16}},
+ textColor={255,0,255},
+ textString="uLeaConWatPum"),
+ Text(
+ extent={{-98,-24},{-20,-36}},
+ textColor={0,0,127},
+ textString="uConWatPumSpe"),
+ Text(
+ extent={{-98,-82},{-58,-96}},
+ textColor={255,0,255},
+ textString="uTowSta"),
+ Text(
+ extent={{56,-32},{98,-44}},
+ textColor={255,0,255},
+ textString="yTowSta"),
+ Text(
+ extent={{62,6},{100,-6}},
+ textColor={0,0,127},
+ textString="yIsoVal"),
+ Text(
+ extent={{60,48},{98,36}},
+ textColor={255,0,255},
+ textString="yLeaCel"),
+ Text(
+ extent={{58,-82},{100,-94}},
+ textColor={255,0,255},
+ textString="yEndSta"),
+ Text(
+ extent={{-96,16},{-58,2}},
+ textColor={255,0,255},
+ textString="uEnaPla")}),
+Documentation(info="
+
+Block controls cooling tower fan staging. This is implemented accoding to
+ASHRAE RP-1711 Advanced Sequences of Operation for HVAC Systems Phase II –
+Central Plants and Hydronic Systems (Draft on March 23, 2020), section 5.2.12.1,
+which specifies tower fan staging process. It includes two subsequences:
+
+
+
+Note that in this implementation, input uTowStaCha
+is from chiller staging process sequence. The input is also used for the
+condenser water pump staging. Thus, the tower stage changes are initiated concurrentlyl
+with condenser water pump stage.
+
+
+The sequence also assumes the cells are enabled in order as it is labelled, meaning
+that it enabled the cells as cell 1, 2, 3, etc.
+
+", revisions="
+
+-
+September 14, 2019, by Jianjun Hu:
+First implementation.
+
+
+"));
+end Controller;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Towers/Staging/Subsequences/CellsNumber.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Towers/Staging/Subsequences/CellsNumber.mo
new file mode 100644
index 00000000000..e9486538600
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Towers/Staging/Subsequences/CellsNumber.mo
@@ -0,0 +1,343 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Towers.Staging.Subsequences;
+block CellsNumber
+ "Sequence for identifying total number of enabling cells"
+
+ parameter Boolean have_WSE = true
+ "Flag to indicate if the plant has waterside economizer";
+ parameter Integer nConWatPum = 2 "Total number of condenser water pumps";
+ parameter Integer nTowCel = 4
+ "Total number of cooling tower cells";
+ parameter Integer totSta = 6
+ "Total number of plant stages, including stage zero and the stages with a WSE, if applicable";
+ parameter Real staVec[totSta]={0,0.5,1,1.5,2,2.5}
+ "Plant stage vector with size of total number of stages, element value like x.5 means chiller stage x plus WSE";
+ parameter Real towCelOnSet[totSta] = {0,2,2,4,4,4}
+ "Design number of tower fan cells that should be ON, according to current chiller stage and WSE status";
+ parameter Real speChe = 0.01
+ "Lower threshold value to check if condenser water pump is proven on"
+ annotation (Dialog(tab="Advanced"));
+
+ Buildings.Controls.OBC.CDL.Interfaces.IntegerInput uChiSta
+ "Current chiller stage"
+ annotation (Placement(transformation(extent={{-300,80},{-260,120}}),
+ iconTransformation(extent={{-140,70},{-100,110}})));
+ Buildings.Controls.OBC.CDL.Interfaces.IntegerInput uChiStaSet
+ "Current chiller stage setpoint integer"
+ annotation (Placement(transformation(extent={{-300,40},{-260,80}}),
+ iconTransformation(extent={{-140,40},{-100,80}})));
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uTowStaCha
+ "Cooling tower stage change command from plant staging process"
+ annotation (Placement(transformation(extent={{-300,0},{-260,40}}),
+ iconTransformation(extent={{-140,0},{-100,40}})));
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uWse if have_WSE
+ "Water side economizer status: true = ON, false = OFF"
+ annotation (Placement(transformation(extent={{-300,-60},{-260,-20}}),
+ iconTransformation(extent={{-140,-30},{-100,10}})));
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uEnaPla
+ "True: plant is just enabled"
+ annotation(Placement(transformation(extent={{-300,-110},{-260,-70}}),
+ iconTransformation(extent={{-140,-50},{-100,-10}})));
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uLeaConWatPum
+ "Enabling status of lead condenser water pump"
+ annotation (Placement(transformation(extent={{-300,-140},{-260,-100}}),
+ iconTransformation(extent={{-140,-80},{-100,-40}})));
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput uConWatPumSpe[nConWatPum](
+ final unit=fill("1", nConWatPum)) "Current condenser water pump speed"
+ annotation (Placement(transformation(extent={{-300,-180},{-260,-140}}),
+ iconTransformation(extent={{-140,-110},{-100,-70}})));
+ Buildings.Controls.OBC.CDL.Interfaces.IntegerOutput yNumCel
+ "Total number of enabled cells"
+ annotation (Placement(transformation(extent={{260,-20},{300,20}}),
+ iconTransformation(extent={{100,-20},{140,20}})));
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanOutput yLeaCel
+ "Lead tower cell status"
+ annotation (Placement(transformation(extent={{260,-110},{300,-70}}),
+ iconTransformation(extent={{100,-80},{140,-40}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Switch swi
+ "Chiller stage index to identify total number of enabling cells"
+ annotation (Placement(transformation(extent={{-120,90},{-100,110}})));
+
+protected
+ Buildings.Controls.OBC.CDL.Conversions.RealToInteger reaToInt
+ "Convert real input to integer output"
+ annotation (Placement(transformation(extent={{220,-10},{240,10}})));
+ Buildings.Controls.OBC.CDL.Conversions.BooleanToReal booToRea1
+ "Convert boolean input to real output"
+ annotation (Placement(transformation(extent={{-160,-50},{-140,-30}})));
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant con2(
+ final k=false) if not have_WSE
+ "Constant false"
+ annotation (Placement(transformation(extent={{-220,-80},{-200,-60}})));
+ Buildings.Controls.OBC.CDL.Continuous.Add add3 "Add real inputs"
+ annotation (Placement(transformation(extent={{-80,-30},{-60,-10}})));
+ Buildings.Controls.OBC.CDL.Routing.RealScalarReplicator reaRep(
+ final nout=totSta) "Replicate real input"
+ annotation (Placement(transformation(extent={{-40,-30},{-20,-10}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant con4[totSta](
+ final k=staVec) "Stage indicator array"
+ annotation (Placement(transformation(extent={{-40,-80},{-20,-60}})));
+ Buildings.Controls.OBC.CDL.Continuous.Subtract sub4[totSta] "Sum of real inputs"
+ annotation (Placement(transformation(extent={{20,-50},{40,-30}})));
+ Buildings.Controls.OBC.CDL.Continuous.GreaterThreshold greEquThr[totSta](
+ final t=fill(-0.1,totSta)) "Check stage indicator"
+ annotation (Placement(transformation(extent={{60,-50},{80,-30}})));
+ Buildings.Controls.OBC.CDL.Conversions.BooleanToInteger booToInt[totSta]
+ "Convert boolean input to integer"
+ annotation (Placement(transformation(extent={{100,-50},{120,-30}})));
+ Buildings.Controls.OBC.CDL.Integers.MultiSum mulSumInt(
+ final nin=totSta) "Sun of input vector "
+ annotation (Placement(transformation(extent={{140,-50},{160,-30}})));
+ Buildings.Controls.OBC.CDL.Routing.RealExtractor celOnNum(
+ final nin=totSta)
+ "Number of cells should be enabled at current plant stage"
+ annotation (Placement(transformation(extent={{180,-10},{200,10}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant con5[totSta](
+ final k=towCelOnSet)
+ "Number of enabling cells at each stage"
+ annotation (Placement(transformation(extent={{140,-10},{160,10}})));
+ Buildings.Controls.OBC.CDL.Continuous.Hysteresis proOn[nConWatPum](
+ final uLow=fill(speChe, nConWatPum),
+ final uHigh=fill(2*speChe, nConWatPum))
+ "Check if the condenser water pump is proven on"
+ annotation (Placement(transformation(extent={{-220,-170},{-200,-150}})));
+ Buildings.Controls.OBC.CDL.Conversions.IntegerToReal intToRea1
+ "Convert integer input to real"
+ annotation (Placement(transformation(extent={{-220,130},{-200,150}})));
+ Buildings.Controls.OBC.CDL.Conversions.IntegerToReal intToRea2
+ "Convert integer input to real"
+ annotation (Placement(transformation(extent={{-220,50},{-200,70}})));
+ Buildings.Controls.OBC.CDL.Logical.Latch leaCel
+ "Lead cell status"
+ annotation (Placement(transformation(extent={{140,-130},{160,-110}})));
+ Buildings.Controls.OBC.CDL.Logical.Not conPumOff
+ "All condenser water pumps are off"
+ annotation (Placement(transformation(extent={{80,-170},{100,-150}})));
+ Buildings.Controls.OBC.CDL.Integers.Equal norOpe
+ "Normal operation, not in the chiller stage changeprocess"
+ annotation (Placement(transformation(extent={{-220,90},{-200,110}})));
+ Buildings.Controls.OBC.CDL.Continuous.Switch swi1
+ "Chiller stage index in the staging process"
+ annotation (Placement(transformation(extent={{-160,10},{-140,30}})));
+ Buildings.Controls.OBC.CDL.Logical.MultiOr mulOr(
+ final nin=nConWatPum)
+ "Check if any condenser water pump is running"
+ annotation (Placement(transformation(extent={{-140,-170},{-120,-150}})));
+ Buildings.Controls.OBC.CDL.Logical.Or or2 "Logical or"
+ annotation (Placement(transformation(extent={{200,-100},{220,-80}})));
+
+equation
+ connect(uWse, booToRea1.u)
+ annotation (Line(points={{-280,-40},{-162,-40}}, color={255,0,255}));
+ connect(con2.y, booToRea1.u)
+ annotation (Line(points={{-198,-70},{-180,-70},{-180,-40},{-162,-40}},
+ color={255,0,255}));
+ connect(booToRea1.y, add3.u2)
+ annotation (Line(points={{-138,-40},{-120,-40},{-120,-26},{-82,-26}},
+ color={0,0,127}));
+ connect(add3.y, reaRep.u)
+ annotation (Line(points={{-58,-20},{-42,-20}}, color={0,0,127}));
+ connect(reaRep.y, sub4.u1)
+ annotation (Line(points={{-18,-20},{0,-20},{0,-34},{18,-34}},
+ color={0,0,127}));
+ connect(con4.y, sub4.u2)
+ annotation (Line(points={{-18,-70},{0,-70},{0,-46},{18,-46}},
+ color={0,0,127}));
+ connect(greEquThr.y, booToInt.u)
+ annotation (Line(points={{82,-40},{98,-40}}, color={255,0,255}));
+ connect(sub4.y, greEquThr.u)
+ annotation (Line(points={{42,-40},{58,-40}}, color={0,0,127}));
+ connect(con5.y, celOnNum.u)
+ annotation (Line(points={{162,0},{178,0}}, color={0,0,127}));
+ connect(mulSumInt.y, celOnNum.index)
+ annotation (Line(points={{162,-40},{190,-40},{190,-12}}, color={255,127,0}));
+ connect(celOnNum.y, reaToInt.u)
+ annotation (Line(points={{202,0},{218,0}}, color={0,0,127}));
+ connect(booToInt.y, mulSumInt.u)
+ annotation (Line(points={{122,-40},{138,-40}}, color={255,127,0}));
+ connect(uConWatPumSpe, proOn.u)
+ annotation (Line(points={{-280,-160},{-222,-160}}, color={0,0,127}));
+ connect(uLeaConWatPum, leaCel.u)
+ annotation (Line(points={{-280,-120},{138,-120}}, color={255,0,255}));
+ connect(conPumOff.y, leaCel.clr)
+ annotation (Line(points={{102,-160},{120,-160},{120,-126},{138,-126}},
+ color={255,0,255}));
+ connect(uChiSta, norOpe.u1)
+ annotation (Line(points={{-280,100},{-222,100}}, color={255,127,0}));
+ connect(norOpe.y, swi.u2)
+ annotation (Line(points={{-198,100},{-122,100}}, color={255,0,255}));
+ connect(intToRea1.y, swi.u1)
+ annotation (Line(points={{-198,140},{-170,140},{-170,108},{-122,108}},
+ color={0,0,127}));
+ connect(uTowStaCha, swi1.u2)
+ annotation (Line(points={{-280,20},{-162,20}}, color={255,0,255}));
+ connect(uChiSta, intToRea1.u) annotation (Line(points={{-280,100},{-240,100},
+ {-240,140},{-222,140}}, color={255,127,0}));
+ connect(uChiStaSet, norOpe.u2) annotation (Line(points={{-280,60},{-240,60},{
+ -240,92},{-222,92}}, color={255,127,0}));
+ connect(uChiStaSet, intToRea2.u)
+ annotation (Line(points={{-280,60},{-222,60}}, color={255,127,0}));
+ connect(intToRea2.y, swi1.u1) annotation (Line(points={{-198,60},{-180,60},{
+ -180,28},{-162,28}}, color={0,0,127}));
+ connect(intToRea1.y, swi1.u3) annotation (Line(points={{-198,140},{-170,140},
+ {-170,12},{-162,12}}, color={0,0,127}));
+ connect(swi1.y, swi.u3) annotation (Line(points={{-138,20},{-130,20},{-130,92},
+ {-122,92}}, color={0,0,127}));
+ connect(swi.y, add3.u1) annotation (Line(points={{-98,100},{-90,100},{-90,-14},
+ {-82,-14}}, color={0,0,127}));
+ connect(reaToInt.y, yNumCel)
+ annotation (Line(points={{242,0},{280,0}}, color={255,127,0}));
+ connect(proOn.y, mulOr.u) annotation (Line(points={{-198,-160},{-170,-160},{-170,
+ -160},{-142,-160}}, color={255,0,255}));
+ connect(mulOr.y, conPumOff.u)
+ annotation (Line(points={{-118,-160},{78,-160}}, color={255,0,255}));
+ connect(uEnaPla, or2.u1)
+ annotation (Line(points={{-280,-90},{198,-90}}, color={255,0,255}));
+ connect(leaCel.y, or2.u2) annotation (Line(points={{162,-120},{180,-120},{180,
+ -98},{198,-98}}, color={255,0,255}));
+ connect(or2.y, yLeaCel)
+ annotation (Line(points={{222,-90},{280,-90}}, color={255,0,255}));
+annotation (
+ defaultComponentName="enaCelNum",
+ Icon(coordinateSystem(extent={{-100,-100},{100,100}}),
+ graphics={
+ Text(
+ extent={{-100,150},{100,110}},
+ textColor={0,0,255},
+ textString="%name"),
+ Rectangle(
+ extent={{-100,-100},{100,100}},
+ lineColor={0,0,127},
+ fillColor={255,255,255},
+ fillPattern=FillPattern.Solid),
+ Text(
+ extent={{-96,-84},{-18,-96}},
+ textColor={0,0,127},
+ textString="uConWatPumSpe"),
+ Text(
+ extent={{-96,-54},{-18,-66}},
+ textColor={255,0,255},
+ textString="uLeaConWatPum"),
+ Text(
+ extent={{-98,-2},{-72,-16}},
+ textColor={255,0,255},
+ textString="uWse",
+ visible=have_WSE),
+ Text(
+ extent={{-98,26},{-40,14}},
+ textColor={255,0,255},
+ textString="uTowStaCha"),
+ Text(
+ extent={{-98,66},{-44,54}},
+ textColor={255,127,0},
+ textString="uChiStaSet"),
+ Text(
+ extent={{-100,96},{-56,84}},
+ textColor={255,127,0},
+ textString="uChiSta"),
+ Text(
+ extent={{54,6},{98,-6}},
+ textColor={255,127,0},
+ textString="yNumCel"),
+ Text(
+ extent={{56,-52},{98,-64}},
+ textColor={255,0,255},
+ textString="yLeaCel"),
+ Text(
+ extent={{-98,-22},{-60,-36}},
+ textColor={255,0,255},
+ textString="uEnaPla")}),
+ Diagram(coordinateSystem(preserveAspectRatio=false, extent={{-260,-180},{260,180}}),
+ graphics={
+ Text(
+ extent={{-228,178},{-106,158}},
+ pattern=LinePattern.None,
+ fillColor={210,210,210},
+ fillPattern=FillPattern.Solid,
+ textColor={0,0,127},
+ horizontalAlignment=TextAlignment.Right,
+ textString="Identify total number of operation cells")}),
+ Documentation(info="
+
+This block outputs total number of enabling tower cells according to current plant
+stage and generates boolean output to enable or disable lead tower cell(s).
+It is implemented according to
+ASHRAE RP-1711 Advanced Sequences of Operation for HVAC Systems Phase II –
+Central Plants and Hydronic Systems (Draft on March 23, 2020),
+section 5.2.12.1,
+
+
+- item 2 which specifies number of enabled cooling tower cells according to
+plant stage.
+
+- item 3 and 4, which specifies when the cooling tower cells should be enabled
+and disabled.
+
+
+
+The number of enabled tower cells shall be set by chiller stage per the table below.
+Note that the table would need to be edited by the system design team for each plant
+based on the condenser water flow per stage, number of towers in the plant, and
+tower minimum flow requirements.
+
+
+
+
+Chiller stage |
+Number of enabled cells |
+
+
+0 |
+0 |
+
+
+0+WSE |
+2 |
+
+
+1 |
+2 |
+
+
+1+WSE |
+4 |
+
+
+2 |
+4 |
+
+
+2+WSE |
+4 |
+
+
+
+
+
+If there is change of plant stage uChiSta
or waterside economizer
+status uWseSta
, the cells should be enabled or disabled as below:
+
+
+-
+Lead cell(s) shall be enabled when the lead condenser water pump is enabled. Lead
+cell(s) shall be disabled when all condenser water pumps are proven off.
+
+-
+Tower stage changes shall be initiated concurrently with condenser water pump stage
+and/or condenser water pump speed changes.
+
+
+
+The input uTowStaCha
is the output from the chiller staging process.
+They indicate in the chiller staging process (uChiSta
≠ uChiStaSet
)
+when to change the condenser water pump status so also stage the tower cells.
+
+", revisions="
+
+-
+September 12, 2019, by Jianjun Hu:
+First implementation.
+
+
+"));
+end CellsNumber;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Towers/Staging/Subsequences/ChangeCells.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Towers/Staging/Subsequences/ChangeCells.mo
new file mode 100644
index 00000000000..27e9e933662
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Towers/Staging/Subsequences/ChangeCells.mo
@@ -0,0 +1,99 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Towers.Staging.Subsequences;
+block ChangeCells "Identify changing cells"
+
+ parameter Integer nTowCel = 4
+ "Total number of cooling tower cells";
+ Buildings.Controls.OBC.CDL.Interfaces.IntegerInput uCelNum
+ "Total number of cells that should be enabled"
+ annotation (Placement(transformation(extent={{-180,-40},{-140,0}}),
+ iconTransformation(extent={{-140,20},{-100,60}})));
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uTowSta[nTowCel]
+ "Vector of tower cells proven on status: true=enabled tower cell"
+ annotation (Placement(transformation(extent={{-180,-80},{-140,-40}}),
+ iconTransformation(extent={{-140,-60},{-100,-20}})));
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanOutput yTowSta[nTowCel]
+ "True: tower cell should be enabled"
+ annotation (Placement(transformation(extent={{120,40},{160,80}}),
+ iconTransformation(extent={{100,20},{140,60}})));
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanOutput yChaCel[nTowCel]
+ "True: the cell should change status, either become enabled or disabled"
+ annotation (Placement(transformation(extent={{120,0},{160,40}}),
+ iconTransformation(extent={{100,-60},{140,-20}})));
+
+protected
+ final parameter Integer celInd[nTowCel]={i for i in 1:nTowCel}
+ "Tower cell index, {1,2,...,n}";
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant conInt[nTowCel](
+ final k=celInd)
+ "Tower cell index array"
+ annotation (Placement(transformation(extent={{-120,10},{-100,30}})));
+ Buildings.Controls.OBC.CDL.Routing.IntegerScalarReplicator intRep(
+ final nout=nTowCel)
+ "Replicate integer input"
+ annotation (Placement(transformation(extent={{-120,-30},{-100,-10}})));
+ Buildings.Controls.OBC.CDL.Logical.Not chaCel[nTowCel] "True: the cell should change the status"
+ annotation (Placement(transformation(extent={{80,10},{100,30}})));
+ Buildings.Controls.OBC.CDL.Integers.LessEqual intLesEqu[nTowCel]
+ "True: the cell should be enabled"
+ annotation (Placement(transformation(extent={{-60,10},{-40,30}})));
+ Buildings.Controls.OBC.CDL.Conversions.BooleanToInteger booToInt[nTowCel]
+ "Convert boolean to equal"
+ annotation (Placement(transformation(extent={{-20,10},{0,30}})));
+ Buildings.Controls.OBC.CDL.Integers.Equal intEqu[nTowCel]
+ "True: cooling tower cell status is the same as commanded on"
+ annotation (Placement(transformation(extent={{40,10},{60,30}})));
+ Buildings.Controls.OBC.CDL.Conversions.BooleanToInteger booToInt1[nTowCel]
+ "Convert boolean to equal"
+ annotation (Placement(transformation(extent={{-20,-70},{0,-50}})));
+
+equation
+ connect(uCelNum, intRep.u)
+ annotation (Line(points={{-160,-20},{-122,-20}}, color={255,127,0}));
+ connect(conInt.y, intLesEqu.u1)
+ annotation (Line(points={{-98,20},{-62,20}}, color={255,127,0}));
+ connect(intRep.y, intLesEqu.u2) annotation (Line(points={{-98,-20},{-80,-20},{
+ -80,12},{-62,12}}, color={255,127,0}));
+ connect(uTowSta, booToInt1.u)
+ annotation (Line(points={{-160,-60},{-22,-60}}, color={255,0,255}));
+ connect(intLesEqu.y, booToInt.u)
+ annotation (Line(points={{-38,20},{-22,20}}, color={255,0,255}));
+ connect(booToInt.y, intEqu.u1)
+ annotation (Line(points={{2,20},{38,20}}, color={255,127,0}));
+ connect(booToInt1.y, intEqu.u2) annotation (Line(points={{2,-60},{20,-60},{20,
+ 12},{38,12}}, color={255,127,0}));
+ connect(intEqu.y, chaCel.u)
+ annotation (Line(points={{62,20},{78,20}}, color={255,0,255}));
+ connect(chaCel.y, yChaCel)
+ annotation (Line(points={{102,20},{140,20}}, color={255,0,255}));
+ connect(intLesEqu.y, yTowSta) annotation (Line(points={{-38,20},{-30,20},{-30,
+ 60},{140,60}}, color={255,0,255}));
+annotation (defaultComponentName="ideChaCel",
+ Icon(coordinateSystem(preserveAspectRatio=false, extent={{-100,-100},{100,100}}),
+ graphics={
+ Rectangle(
+ extent={{-100,-100},{100,100}},
+ lineColor={0,0,127},
+ fillColor={255,255,255},
+ fillPattern=FillPattern.Solid),
+ Text(
+ extent={{-100,140},{100,100}},
+ textColor={0,0,255},
+ textString="%name")}),
+ Diagram(coordinateSystem(preserveAspectRatio=false,extent={{-140,-80},{120,80}})),
+ Documentation(info="
+
+This block identifies the cooling tower cells that should change the enabling
+status, either should be enabled or disabled.
+
+
+It assumes that the cells are enabled in order as cell 1, 2, 3, etc.
+
+", revisions="
+
+-
+July 26, 2022, by Jianjun Hu:
+First implementation.
+
+
+"));
+end ChangeCells;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Towers/Staging/Subsequences/StageProcesses.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Towers/Staging/Subsequences/StageProcesses.mo
new file mode 100644
index 00000000000..72add109040
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Towers/Staging/Subsequences/StageProcesses.mo
@@ -0,0 +1,414 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Towers.Staging.Subsequences;
+block StageProcesses "Sequence for process of staging cells"
+
+ parameter Integer nTowCel = 4
+ "Total number of cooling tower cells";
+ parameter Real chaTowCelIsoTim(
+ final quantity="Time",
+ final unit="s") = 90
+ "Nominal time needed for open isolation valve";
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uChaCel[nTowCel]
+ "Vector of boolean flags to show if a cell should change its status: true = the cell should change status (be enabled or disabled)"
+ annotation (Placement(transformation(extent={{-240,270},{-200,310}}),
+ iconTransformation(extent={{-140,60},{-100,100}})));
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput uIsoVal[nTowCel](
+ final unit=fill("1", nTowCel),
+ final min=fill(0, nTowCel),
+ final max=fill(1, nTowCel)) "Cooling tower cells isolation valve position"
+ annotation (Placement(transformation(extent={{-240,30},{-200,70}}),
+ iconTransformation(extent={{-140,-20},{-100,20}})));
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uTowSta[nTowCel]
+ "Vector of tower cells proven on status: true=enabled tower cell"
+ annotation (Placement(transformation(extent={{-240,-200},{-200,-160}}),
+ iconTransformation(extent={{-140,-100},{-100,-60}})));
+ Buildings.Controls.OBC.CDL.Interfaces.RealOutput yIsoVal[nTowCel](
+ final unit=fill("1", nTowCel),
+ final min=fill(0, nTowCel),
+ final max=fill(1, nTowCel)) "Cooling tower cells isolation valve setpoint"
+ annotation (Placement(transformation(extent={{200,70},{240,110}}),
+ iconTransformation(extent={{100,40},{140,80}})));
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanOutput yTowSta[nTowCel]
+ "Vector of tower cells status setpoint"
+ annotation (Placement(transformation(extent={{200,-220},{240,-180}}),
+ iconTransformation(extent={{100,-20},{140,20}})));
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanOutput yEndSta
+ "Rising edge to indicate the staging process is done"
+ annotation (Placement(transformation(extent={{200,-320},{240,-280}}),
+ iconTransformation(extent={{100,-80},{140,-40}})));
+
+protected
+ Buildings.Controls.OBC.CDL.Continuous.Switch swi2[nTowCel] "Logical switch"
+ annotation (Placement(transformation(extent={{100,100},{120,120}})));
+ Buildings.Controls.OBC.CDL.Logical.Timer tim
+ "Count the time after changing up-stream device status"
+ annotation (Placement(transformation(extent={{-120,210},{-100,230}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant con9(final k=0)
+ "Constant zero"
+ annotation (Placement(transformation(extent={{-40,230},{-20,250}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant con7(
+ final k=chaTowCelIsoTim) "Time to change cooling tower isolation valve"
+ annotation (Placement(transformation(extent={{-120,180},{-100,200}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant con8(final k=1)
+ "Fully open valve"
+ annotation (Placement(transformation(extent={{-40,180},{-20,200}})));
+ Buildings.Controls.OBC.CDL.Continuous.Line lin1
+ "Chilled water isolation valve setpoint"
+ annotation (Placement(transformation(extent={{20,210},{40,230}})));
+ Buildings.Controls.OBC.CDL.Routing.RealScalarReplicator reaRep(
+ final nout=nTowCel)
+ "Replicate real input"
+ annotation (Placement(transformation(extent={{100,140},{120,160}})));
+ Buildings.Controls.OBC.CDL.Continuous.Switch swi[nTowCel] "Logical switch"
+ annotation (Placement(transformation(extent={{160,80},{180,100}})));
+ Buildings.Controls.OBC.CDL.Routing.BooleanScalarReplicator booRep(
+ final nout=nTowCel)
+ "Replicate boolean input"
+ annotation (Placement(transformation(extent={{60,20},{80,40}})));
+ Buildings.Controls.OBC.CDL.Continuous.Hysteresis hys3[nTowCel](
+ final uLow=fill(0.025, nTowCel),
+ final uHigh=fill(0.05, nTowCel)) "Check if isolation valve is enabled"
+ annotation (Placement(transformation(extent={{-140,-60},{-120,-40}})));
+ Buildings.Controls.OBC.CDL.Continuous.Hysteresis hys4[nTowCel](
+ final uLow=fill(0.925, nTowCel),
+ final uHigh=fill(0.975, nTowCel)) "Check if isolation valve is open more than 95%"
+ annotation (Placement(transformation(extent={{-140,-90},{-120,-70}})));
+ Buildings.Controls.OBC.CDL.Logical.MultiAnd mulAnd1(final nin=nTowCel)
+ "Logical and"
+ annotation (Placement(transformation(extent={{80,-60},{100,-40}})));
+ Buildings.Controls.OBC.CDL.Logical.And and5
+ "Check if the isolation valve has been fully open"
+ annotation (Placement(transformation(extent={{100,-100},{120,-80}})));
+ Buildings.Controls.OBC.CDL.Continuous.GreaterThreshold greEquThr(
+ final t=chaTowCelIsoTim)
+ "Check if it has past the target time of open isolation valve "
+ annotation (Placement(transformation(extent={{0,-120},{20,-100}})));
+ Buildings.Controls.OBC.CDL.Logical.And and1[nTowCel]
+ "True: cells should be enabled"
+ annotation (Placement(transformation(extent={{20,-170},{40,-150}})));
+ Buildings.Controls.OBC.CDL.Routing.BooleanScalarReplicator booRep1(
+ final nout=nTowCel)
+ "Replicate boolean input"
+ annotation (Placement(transformation(extent={{140,-100},{160,-80}})));
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant con1[nTowCel](
+ final k=fill(true, nTowCel)) "Enable cells"
+ annotation (Placement(transformation(extent={{-60,-150},{-40,-130}})));
+ Buildings.Controls.OBC.CDL.Logical.Switch enaNexCel[nTowCel]
+ "Enable next cells"
+ annotation (Placement(transformation(extent={{80,-170},{100,-150}})));
+ Buildings.Controls.OBC.CDL.Logical.And and2[nTowCel] "Logical and"
+ annotation (Placement(transformation(extent={{-120,140},{-100,160}})));
+ Buildings.Controls.OBC.CDL.Logical.Not not1[nTowCel] "Logical and"
+ annotation (Placement(transformation(extent={{-60,140},{-40,160}})));
+ Buildings.Controls.OBC.CDL.Logical.MultiAnd enaCel(
+ final nin=nTowCel) "New cells should be enabled"
+ annotation (Placement(transformation(extent={{-20,140},{0,160}})));
+ Buildings.Controls.OBC.CDL.Continuous.Switch celPosSet
+ "Slowly change the opening setpoint to 1 of the enabling cells isolation valve, or change the setpoint to 0 of the disabling cells"
+ annotation (Placement(transformation(extent={{60,140},{80,160}})));
+ Buildings.Controls.OBC.CDL.Logical.And enaPro "Enabling cells process"
+ annotation (Placement(transformation(extent={{-60,-10},{-40,10}})));
+ Buildings.Controls.OBC.CDL.Logical.Not not2 "Logical and"
+ annotation (Placement(transformation(extent={{-100,80},{-80,100}})));
+ Buildings.Controls.OBC.CDL.Logical.And disPro "Disabling cells process"
+ annotation (Placement(transformation(extent={{-20,80},{0,100}})));
+ Buildings.Controls.OBC.CDL.Logical.Switch newTowCell[nTowCel]
+ "New tower cell status"
+ annotation (Placement(transformation(extent={{160,-210},{180,-190}})));
+ Buildings.Controls.OBC.CDL.Routing.BooleanScalarReplicator booRep2(
+ final nout=nTowCel) "In the enabling process"
+ annotation (Placement(transformation(extent={{80,-210},{100,-190}})));
+ Buildings.Controls.OBC.CDL.Logical.Switch disExiCel[nTowCel]
+ "Disable existing cells"
+ annotation (Placement(transformation(extent={{80,-250},{100,-230}})));
+ Buildings.Controls.OBC.CDL.Routing.BooleanScalarReplicator booRep3(
+ final nout=nTowCel) "In the disabling process"
+ annotation (Placement(transformation(extent={{0,-250},{20,-230}})));
+ Buildings.Controls.OBC.CDL.Logical.MultiOr staPro(nin=nTowCel)
+ "In tower staging process"
+ annotation (Placement(transformation(extent={{60,280},{80,300}})));
+ Buildings.Controls.OBC.CDL.Logical.MultiOr opeVal(
+ final nin=nTowCel) "Check if there is any opened valve"
+ annotation (Placement(transformation(extent={{0,-30},{20,-10}})));
+ Buildings.Controls.OBC.CDL.Logical.And and3
+ "Check if the opened valves are fully open"
+ annotation (Placement(transformation(extent={{140,-30},{160,-10}})));
+ Buildings.Controls.OBC.CDL.Conversions.BooleanToInteger booToInt[nTowCel]
+ "Convert boolean input to integer"
+ annotation (Placement(transformation(extent={{0,-60},{20,-40}})));
+ Buildings.Controls.OBC.CDL.Conversions.BooleanToInteger booToInt1[nTowCel]
+ "Convert boolean input to integer"
+ annotation (Placement(transformation(extent={{0,-90},{20,-70}})));
+ Buildings.Controls.OBC.CDL.Integers.Equal intEqu[nTowCel]
+ "Check if the opened valves are fully open"
+ annotation (Placement(transformation(extent={{40,-60},{60,-40}})));
+ Buildings.Controls.OBC.CDL.Routing.BooleanScalarReplicator booRep4(
+ final nout=nTowCel) "In the disabling process"
+ annotation (Placement(transformation(extent={{60,-290},{80,-270}})));
+ Buildings.Controls.OBC.CDL.Logical.Or celChaSta[nTowCel]
+ "True: there are cells changed status"
+ annotation (Placement(transformation(extent={{-60,-310},{-40,-290}})));
+ Buildings.Controls.OBC.CDL.Logical.FallingEdge falEdg[nTowCel]
+ "Check if there is any cell being disabled"
+ annotation (Placement(transformation(extent={{-120,-290},{-100,-270}})));
+ Buildings.Controls.OBC.CDL.Logical.Edge edg[nTowCel]
+ "Check if there is any cell being enabled"
+ annotation (Placement(transformation(extent={{-120,-330},{-100,-310}})));
+ Buildings.Controls.OBC.CDL.Logical.MultiOr endStaPro(
+ final nin=nTowCel)
+ "Check if there is any cell changed status so it means that the staging process is done"
+ annotation (Placement(transformation(extent={{-20,-310},{0,-290}})));
+ Buildings.Controls.OBC.CDL.Logical.Latch lat[nTowCel] "Change cells status"
+ annotation (Placement(transformation(extent={{-100,280},{-80,300}})));
+ Buildings.Controls.OBC.CDL.Logical.Edge havCha[nTowCel] "Edge"
+ annotation (Placement(transformation(extent={{-180,280},{-160,300}})));
+ Buildings.Controls.OBC.CDL.Logical.And and4[nTowCel]
+ "True: cells should be disabled"
+ annotation (Placement(transformation(extent={{-140,-210},{-120,-190}})));
+ Buildings.Controls.OBC.CDL.Logical.Switch disExiCel1[nTowCel]
+ "Disable existing cells"
+ annotation (Placement(transformation(extent={{-60,-230},{-40,-210}})));
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant con2[nTowCel](
+ final k=fill(false, nTowCel)) "Disable cells"
+ annotation (Placement(transformation(extent={{-140,-160},{-120,-140}})));
+equation
+ connect(con9.y, lin1.x1)
+ annotation (Line(points={{-18,240},{10,240},{10,228},{18,228}},
+ color={0,0,127}));
+ connect(con7.y, lin1.x2)
+ annotation (Line(points={{-98,190},{-60,190},{-60,216},{18,216}},
+ color={0,0,127}));
+ connect(con8.y, lin1.f2)
+ annotation (Line(points={{-18,190},{-10,190},{-10,212},{18,212}},
+ color={0,0,127}));
+ connect(tim.y, lin1.u)
+ annotation (Line(points={{-98,220},{18,220}}, color={0,0,127}));
+ connect(reaRep.y, swi2.u1)
+ annotation (Line(points={{122,150},{140,150},{140,130},{80,130},{80,118},{98,
+ 118}},color={0,0,127}));
+ connect(swi2.y, swi.u1)
+ annotation (Line(points={{122,110},{140,110},{140,98},{158,98}},
+ color={0,0,127}));
+ connect(uIsoVal, swi2.u3)
+ annotation (Line(points={{-220,50},{30,50},{30,102},{98,102}},
+ color={0,0,127}));
+ connect(booRep.y, swi.u2)
+ annotation (Line(points={{82,30},{140,30},{140,90},{158,90}},
+ color={255,0,255}));
+ connect(uIsoVal, swi.u3)
+ annotation (Line(points={{-220,50},{30,50},{30,82},{158,82}},
+ color={0,0,127}));
+ connect(swi.y, yIsoVal)
+ annotation (Line(points={{182,90},{220,90}}, color={0,0,127}));
+ connect(greEquThr.y, and5.u2)
+ annotation (Line(points={{22,-110},{70,-110},{70,-98},{98,-98}},
+ color={255,0,255}));
+ connect(uIsoVal, hys4.u)
+ annotation (Line(points={{-220,50},{-160,50},{-160,-80},{-142,-80}},
+ color={0,0,127}));
+ connect(uIsoVal, hys3.u)
+ annotation (Line(points={{-220,50},{-160,50},{-160,-50},{-142,-50}},
+ color={0,0,127}));
+ connect(tim.y, greEquThr.u)
+ annotation (Line(points={{-98,220},{-70,220},{-70,-110},{-2,-110}},
+ color={0,0,127}));
+ connect(and5.y, booRep1.u)
+ annotation (Line(points={{122,-90},{138,-90}}, color={255,0,255}));
+ connect(booRep1.y, and1.u1)
+ annotation (Line(points={{162,-90},{180,-90},{180,-132},{0,-132},{0,-160},{18,
+ -160}}, color={255,0,255}));
+ connect(and1.y, enaNexCel.u2)
+ annotation (Line(points={{42,-160},{78,-160}}, color={255,0,255}));
+ connect(con1.y, enaNexCel.u1) annotation (Line(points={{-38,-140},{60,-140},{60,
+ -152},{78,-152}}, color={255,0,255}));
+ connect(uTowSta, enaNexCel.u3) annotation (Line(points={{-220,-180},{60,-180},
+ {60,-168},{78,-168}}, color={255,0,255}));
+ connect(celPosSet.y, reaRep.u)
+ annotation (Line(points={{82,150},{98,150}}, color={0,0,127}));
+ connect(uTowSta, and2.u2) annotation (Line(points={{-220,-180},{-180,-180},{-180,
+ 142},{-122,142}}, color={255,0,255}));
+ connect(and2.y, not1.u)
+ annotation (Line(points={{-98,150},{-62,150}}, color={255,0,255}));
+ connect(not1.y, enaCel.u) annotation (Line(points={{-38,150},{-22,150}},
+ color={255,0,255}));
+ connect(enaCel.y, celPosSet.u2)
+ annotation (Line(points={{2,150},{58,150}}, color={255,0,255}));
+ connect(lin1.y, celPosSet.u1) annotation (Line(points={{42,220},{50,220},{50,158},
+ {58,158}}, color={0,0,127}));
+ connect(con9.y, celPosSet.u3) annotation (Line(points={{-18,240},{10,240},{10,
+ 142},{58,142}}, color={0,0,127}));
+ connect(enaCel.y, enaPro.u1) annotation (Line(points={{2,150},{20,150},{20,120},
+ {-120,120},{-120,0},{-62,0}}, color={255,0,255}));
+ connect(enaCel.y, not2.u) annotation (Line(points={{2,150},{20,150},{20,120},{
+ -120,120},{-120,90},{-102,90}}, color={255,0,255}));
+ connect(not2.y, disPro.u1)
+ annotation (Line(points={{-78,90},{-22,90}}, color={255,0,255}));
+ connect(booRep2.y, newTowCell.u2)
+ annotation (Line(points={{102,-200},{158,-200}}, color={255,0,255}));
+ connect(enaNexCel.y, newTowCell.u1) annotation (Line(points={{102,-160},{120,-160},
+ {120,-192},{158,-192}}, color={255,0,255}));
+ connect(booRep3.y, disExiCel.u2)
+ annotation (Line(points={{22,-240},{78,-240}}, color={255,0,255}));
+ connect(uTowSta, disExiCel.u3) annotation (Line(points={{-220,-180},{60,-180},
+ {60,-248},{78,-248}}, color={255,0,255}));
+ connect(disPro.y, booRep3.u) annotation (Line(points={{2,90},{20,90},{20,60},{
+ -100,60},{-100,-240},{-2,-240}}, color={255,0,255}));
+ connect(enaPro.y, booRep2.u) annotation (Line(points={{-38,0},{-30,0},{-30,-200},
+ {78,-200}}, color={255,0,255}));
+ connect(disExiCel.y, newTowCell.u3) annotation (Line(points={{102,-240},{140,-240},
+ {140,-208},{158,-208}}, color={255,0,255}));
+ connect(newTowCell.y, yTowSta)
+ annotation (Line(points={{182,-200},{220,-200}}, color={255,0,255}));
+ connect(con9.y, lin1.f1) annotation (Line(points={{-18,240},{10,240},{10,224},
+ {18,224}}, color={0,0,127}));
+ connect(staPro.y, tim.u) annotation (Line(points={{82,290},{100,290},{100,260},
+ {-140,260},{-140,220},{-122,220}}, color={255,0,255}));
+ connect(staPro.y, disPro.u2) annotation (Line(points={{82,290},{100,290},{100,
+ 260},{-140,260},{-140,70},{-40,70},{-40,82},{-22,82}}, color={255,0,255}));
+ connect(staPro.y, enaPro.u2) annotation (Line(points={{82,290},{100,290},{100,
+ 260},{-140,260},{-140,-8},{-62,-8}}, color={255,0,255}));
+ connect(hys3.y, booToInt.u)
+ annotation (Line(points={{-118,-50},{-2,-50}},color={255,0,255}));
+ connect(hys4.y, booToInt1.u)
+ annotation (Line(points={{-118,-80},{-2,-80}}, color={255,0,255}));
+ connect(booToInt.y, intEqu.u1)
+ annotation (Line(points={{22,-50},{38,-50}}, color={255,127,0}));
+ connect(booToInt1.y, intEqu.u2) annotation (Line(points={{22,-80},{30,-80},{30,
+ -58},{38,-58}}, color={255,127,0}));
+ connect(intEqu.y, mulAnd1.u) annotation (Line(points={{62,-50},{78,-50}},
+ color={255,0,255}));
+ connect(hys3.y, opeVal.u) annotation (Line(points={{-118,-50},{-20,-50},{-20,-20},
+ {-2,-20}}, color={255,0,255}));
+ connect(opeVal.y, and3.u1)
+ annotation (Line(points={{22,-20},{138,-20}}, color={255,0,255}));
+ connect(mulAnd1.y, and3.u2) annotation (Line(points={{102,-50},{120,-50},{120,
+ -28},{138,-28}}, color={255,0,255}));
+ connect(and3.y, and5.u1) annotation (Line(points={{162,-20},{180,-20},{180,-70},
+ {70,-70},{70,-90},{98,-90}}, color={255,0,255}));
+ connect(staPro.y, booRep.u) annotation (Line(points={{82,290},{100,290},{100,260},
+ {-140,260},{-140,30},{58,30}}, color={255,0,255}));
+ connect(uTowSta, falEdg.u) annotation (Line(points={{-220,-180},{-180,-180},{-180,
+ -280},{-122,-280}}, color={255,0,255}));
+ connect(uTowSta, edg.u) annotation (Line(points={{-220,-180},{-180,-180},{-180,
+ -320},{-122,-320}}, color={255,0,255}));
+ connect(booRep4.y, lat.clr) annotation (Line(points={{82,-280},{100,-280},{100,
+ -260},{-150,-260},{-150,284},{-102,284}}, color={255,0,255}));
+ connect(falEdg.y, celChaSta.u1) annotation (Line(points={{-98,-280},{-80,-280},
+ {-80,-300},{-62,-300}}, color={255,0,255}));
+ connect(edg.y, celChaSta.u2) annotation (Line(points={{-98,-320},{-80,-320},{-80,
+ -308},{-62,-308}}, color={255,0,255}));
+ connect(celChaSta.y, endStaPro.u) annotation (Line(points={{-38,-300},{-22,-300}},
+ color={255,0,255}));
+ connect(uChaCel, havCha.u) annotation (Line(points={{-220,290},{-182,290}},
+ color={255,0,255}));
+ connect(havCha.y, lat.u) annotation (Line(points={{-158,290},{-102,290}},
+ color={255,0,255}));
+ connect(lat.y, staPro.u)
+ annotation (Line(points={{-78,290},{58,290}}, color={255,0,255}));
+ connect(lat.y, and2.u1) annotation (Line(points={{-78,290},{-60,290},{-60,266},
+ {-168,266},{-168,150},{-122,150}}, color={255,0,255}));
+ connect(lat.y, swi2.u2) annotation (Line(points={{-78,290},{-60,290},{-60,266},
+ {-168,266},{-168,110},{98,110}}, color={255,0,255}));
+ connect(lat.y, and1.u2) annotation (Line(points={{-78,290},{-60,290},{-60,266},
+ {-168,266},{-168,-168},{18,-168}}, color={255,0,255}));
+ connect(endStaPro.y, yEndSta)
+ annotation (Line(points={{2,-300},{220,-300}}, color={255,0,255}));
+ connect(endStaPro.y, booRep4.u) annotation (Line(points={{2,-300},{20,-300},{20,
+ -280},{58,-280}}, color={255,0,255}));
+ connect(uTowSta, and4.u2) annotation (Line(points={{-220,-180},{-180,-180},{-180,
+ -208},{-142,-208}}, color={255,0,255}));
+ connect(uChaCel, and4.u1) annotation (Line(points={{-220,290},{-190,290},{-190,
+ -200},{-142,-200}}, color={255,0,255}));
+ connect(and4.y, disExiCel1.u2) annotation (Line(points={{-118,-200},{-80,-200},
+ {-80,-220},{-62,-220}}, color={255,0,255}));
+ connect(uTowSta, disExiCel1.u3) annotation (Line(points={{-220,-180},{-180,-180},
+ {-180,-228},{-62,-228}}, color={255,0,255}));
+ connect(con2.y, disExiCel1.u1) annotation (Line(points={{-118,-150},{-70,-150},
+ {-70,-212},{-62,-212}}, color={255,0,255}));
+ connect(disExiCel1.y, disExiCel.u1) annotation (Line(points={{-38,-220},{50,-220},
+ {50,-232},{78,-232}}, color={255,0,255}));
+annotation (
+ defaultComponentName="towCelStaPro",
+ Diagram(coordinateSystem(preserveAspectRatio=false,
+ extent={{-200,-340},{200,340}}), graphics={
+ Rectangle(
+ extent={{-138,-2},{178,-138}},
+ fillColor={210,210,210},
+ fillPattern=FillPattern.Solid,
+ pattern=LinePattern.None),
+ Text(
+ extent={{12,-120},{144,-144}},
+ pattern=LinePattern.None,
+ fillColor={210,210,210},
+ fillPattern=FillPattern.Solid,
+ textColor={0,0,127},
+ horizontalAlignment=TextAlignment.Right,
+ textString="Check if all enabled isolation valves
+ have been fully open")}),
+ Icon(coordinateSystem(extent={{-100,-100},{100,100}}),
+ graphics={
+ Rectangle(
+ extent={{-100,-100},{100,100}},
+ lineColor={0,0,127},
+ fillColor={255,255,255},
+ fillPattern=FillPattern.Solid),
+ Text(extent={{-120,146},{100,108}},
+ textColor={0,0,255},
+ textString="%name"),
+ Text(
+ extent={{-98,88},{-54,76}},
+ textColor={255,0,255},
+ textString="uChaCel"),
+ Text(
+ extent={{-100,6},{-62,-6}},
+ textColor={0,0,127},
+ textString="uIsoVal"),
+ Text(
+ extent={{-100,-74},{-56,-86}},
+ textColor={255,0,255},
+ textString="uTowSta"),
+ Text(
+ extent={{62,66},{100,54}},
+ textColor={0,0,127},
+ textString="yIsoVal"),
+ Text(
+ extent={{56,8},{100,-4}},
+ textColor={255,0,255},
+ textString="yTowSta"),
+ Text(
+ extent={{56,-52},{100,-64}},
+ textColor={255,0,255},
+ textString="yEndSta")}),
+Documentation(info="
+
+This block outputs new status vector of cells. When staging up cells, the cells
+should be enabled only when their supply isolation valves have been proven fully
+open. It is implemented according to ASHRAE RP-1711 Advanced Sequences of Operation
+for HVAC Systems Phase II – Central Plants and Hydronic Systems (Draft on March 23, 2020),
+section 5.2.12.1, item 5 and 6 which specifies the process of enabling and disabling
+tower fan cells.
+
+
+-
+When tower fan cells need to be enabled, which means that it is in the staging process
+(not all
uChaCel
are false) and the cells that should change status (uChaCel=true
)
+are not enabled (uTowSta=true
), the supply isolation valves position
+(uIsoVal
) of the enabling cells should change to
+fully open with moving time (nominal valve timing) chaTowCelIsoTim
.
+Once the enabling supply isolation valves have been fully open, then enable
+the additional fans.
+
+-
+When disabling tower cells, command the fan off and shut its supply isolation
+valve, and outlet isolation valves if provided.
+
+
+", revisions="
+
+-
+September 12, 2019, by Jianjun Hu:
+First implementation.
+
+
+"));
+end StageProcesses;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Towers/Staging/Subsequences/Validation/CellsNumber.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Towers/Staging/Subsequences/Validation/CellsNumber.mo
new file mode 100644
index 00000000000..7c0784bc24c
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Towers/Staging/Subsequences/Validation/CellsNumber.mo
@@ -0,0 +1,94 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Towers.Staging.Subsequences.Validation;
+model CellsNumber
+ "Validation sequence of identifying total number of enabling cells"
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Towers.Staging.Subsequences.CellsNumber
+ enaTowCel(
+ nConWatPum=2,
+ nTowCel=4) "Find number of enabling cells"
+ annotation (Placement(transformation(extent={{60,-10},{80,10}})));
+ Buildings.Controls.OBC.CDL.Logical.Sources.Pulse wseSta(
+ final width=0.15,
+ final period=3600,
+ final shift=300) "Water side economizer status"
+ annotation (Placement(transformation(extent={{-60,-40},{-40,-20}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Ramp chiStaGen(
+ final height=1.2,
+ final duration=3600,
+ final offset=1) "Generate chiller stage"
+ annotation (Placement(transformation(extent={{-100,40},{-80,60}})));
+ Buildings.Controls.OBC.CDL.Conversions.RealToInteger chiStaSet "Chiller stage setpoint"
+ annotation (Placement(transformation(extent={{-60,40},{-40,60}})));
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant curChiSta(
+ final k=1) "Current chiller stage"
+ annotation (Placement(transformation(extent={{-60,80},{-40,100}})));
+ Buildings.Controls.OBC.CDL.Logical.Sources.Pulse booPul2(
+ final width=0.75,
+ final period=3600) "Boolean pulse"
+ annotation (Placement(transformation(extent={{-100,0},{-80,20}})));
+ Buildings.Controls.OBC.CDL.Logical.Not StaTow "Stage tower cells"
+ annotation (Placement(transformation(extent={{-60,0},{-40,20}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant conWatPumSpe[2](
+ final k=fill(0.5, 2)) "Condenser water pump speed"
+ annotation (Placement(transformation(extent={{-60,-110},{-40,-90}})));
+ Buildings.Controls.OBC.CDL.Logical.Sources.Pulse pul(
+ final width=0.05, final period=3600)
+ "Boolean pulse"
+ annotation (Placement(transformation(extent={{-100,-70},{-80,-50}})));
+ Buildings.Controls.OBC.CDL.Logical.Not leaConPum "Lead condenser water pump status"
+ annotation (Placement(transformation(extent={{-60,-70},{-40,-50}})));
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant con(
+ final k=false)
+ "Constant false"
+ annotation (Placement(transformation(extent={{20,-110},{40,-90}})));
+equation
+ connect(chiStaGen.y, chiStaSet.u)
+ annotation (Line(points={{-78,50},{-62,50}}, color={0,0,127}));
+ connect(curChiSta.y, enaTowCel.uChiSta)
+ annotation (Line(points={{-38,90},{40,90},{40,9},{58,9}}, color={255,127,0}));
+ connect(chiStaSet.y, enaTowCel.uChiStaSet)
+ annotation (Line(points={{-38,50},{34,50},{34,6},{58,6}}, color={255,127,0}));
+ connect(booPul2.y, StaTow.u)
+ annotation (Line(points={{-78,10},{-62,10}}, color={255,0,255}));
+ connect(StaTow.y, enaTowCel.uTowStaCha)
+ annotation (Line(points={{-38,10},{28,10},{28,2},{58,2}}, color={255,0,255}));
+ connect(wseSta.y, enaTowCel.uWse)
+ annotation (Line(points={{-38,-30},{-8,-30},{-8,-1},{58,-1}}, color={255,0,255}));
+ connect(conWatPumSpe.y, enaTowCel.uConWatPumSpe)
+ annotation (Line(points={{-38,-100},{8,-100},{8,-9},{58,-9}}, color={0,0,127}));
+ connect(pul.y, leaConPum.u)
+ annotation (Line(points={{-78,-60},{-62,-60}}, color={255,0,255}));
+ connect(leaConPum.y, enaTowCel.uLeaConWatPum)
+ annotation (Line(points={{-38,-60},{0,-60},{0,-6},{58,-6}}, color={255,0,255}));
+ connect(con.y, enaTowCel.uEnaPla) annotation (Line(points={{42,-100},{50,-100},
+ {50,-3},{58,-3}}, color={255,0,255}));
+annotation (experiment(StopTime=3600.0, Tolerance=1e-06),
+ __Dymola_Commands(file="modelica://Buildings/Resources/Scripts/Dymola/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Towers/Staging/Subsequences/Validation/CellsNumber.mos"
+ "Simulate and plot"),
+ Documentation(info="
+
+This example validates
+
+Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Towers.Staging.Subsequences.CellsNumber.
+
+", revisions="
+
+-
+September 12, 2019, by Jianjun Hu:
+First implementation.
+
+
+"),
+ Icon(coordinateSystem(preserveAspectRatio=false, extent={{-100,-100},{100,100}}),
+ graphics={
+ Ellipse(lineColor = {75,138,73},
+ fillColor={255,255,255},
+ fillPattern = FillPattern.Solid,
+ extent = {{-100,-100},{100,100}}),
+ Polygon(lineColor = {0,0,255},
+ fillColor = {75,138,73},
+ pattern = LinePattern.None,
+ fillPattern = FillPattern.Solid,
+ points = {{-36,60},{64,0},{-36,-60},{-36,60}})}),
+ Diagram(coordinateSystem(preserveAspectRatio=false, extent={{-120,-120},{120,120}})));
+end CellsNumber;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Towers/Staging/Subsequences/Validation/ChangeCells.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Towers/Staging/Subsequences/Validation/ChangeCells.mo
new file mode 100644
index 00000000000..50fb06376da
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Towers/Staging/Subsequences/Validation/ChangeCells.mo
@@ -0,0 +1,56 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Towers.Staging.Subsequences.Validation;
+model ChangeCells
+ "Validation sequence of identifying cells that should change status"
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Towers.Staging.Subsequences.ChangeCells
+ enaTowCel(
+ nTowCel=4) "Find enabling cells"
+ annotation (Placement(transformation(extent={{20,-10},{40,10}})));
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant con2[4](
+ final k={true,true,false,false})
+ "Enabling cells index"
+ annotation (Placement(transformation(extent={{-60,-50},{-40,-30}})));
+ Buildings.Controls.OBC.CDL.Integers.Sources.TimeTable celNum(
+ table=[0, 2;
+ 1200,2;
+ 2000,3;
+ 2800,2;
+ 3200,1],
+ period=3600) "Number of cell that should be enabled"
+ annotation (Placement(transformation(extent={{-60,30},{-40,50}})));
+
+equation
+ connect(celNum.y[1], enaTowCel.uCelNum) annotation (Line(points={{-38,40},{0,40},
+ {0,4},{18,4}}, color={255,127,0}));
+ connect(con2.y, enaTowCel.uTowSta) annotation (Line(points={{-38,-40},{0,-40},
+ {0,-4},{18,-4}}, color={255,0,255}));
+annotation (experiment(StopTime=3600.0, Tolerance=1e-06),
+ __Dymola_Commands(file="modelica://Buildings/Resources/Scripts/Dymola/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Towers/Staging/Subsequences/Validation/ChangeCells.mos"
+ "Simulate and plot"),
+ Documentation(info="
+
+This example validates
+
+Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Towers.Staging.Subsequences.ChangeCells.
+
+", revisions="
+
+-
+July 26, 2022, by Jianjun Hu:
+First implementation.
+
+
+"),
+ Icon(coordinateSystem(preserveAspectRatio=false, extent={{-100,-100},{100,100}}),
+ graphics={
+ Ellipse(lineColor = {75,138,73},
+ fillColor={255,255,255},
+ fillPattern = FillPattern.Solid,
+ extent = {{-100,-100},{100,100}}),
+ Polygon(lineColor = {0,0,255},
+ fillColor = {75,138,73},
+ pattern = LinePattern.None,
+ fillPattern = FillPattern.Solid,
+ points = {{-36,60},{64,0},{-36,-60},{-36,60}})}),
+ Diagram(coordinateSystem(preserveAspectRatio=false, extent={{-120,-120},{120,120}})));
+end ChangeCells;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Towers/Staging/Subsequences/Validation/StageProcesses.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Towers/Staging/Subsequences/Validation/StageProcesses.mo
new file mode 100644
index 00000000000..0caec195cba
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Towers/Staging/Subsequences/Validation/StageProcesses.mo
@@ -0,0 +1,115 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Towers.Staging.Subsequences.Validation;
+model StageProcesses
+ "Validation sequence of tower cells staging process"
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Towers.Staging.Subsequences.StageProcesses
+ enaPro(nTowCel=4) "Enable tower cells process"
+ annotation (Placement(transformation(extent={{60,30},{80,50}})));
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Towers.Staging.Subsequences.StageProcesses
+ disPro(nTowCel=4) "Disable tower cells process"
+ annotation (Placement(transformation(extent={{60,-50},{80,-30}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant con[4](
+ final k=fill(false,4)) "Constant zero"
+ annotation (Placement(transformation(extent={{-100,10},{-80,30}})));
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant con2[4](
+ final k={false,true,true,false})
+ "Enabling cells index"
+ annotation (Placement(transformation(extent={{-60,90},{-40,110}})));
+ Buildings.Controls.OBC.CDL.Logical.Not staUp1 "Chiller stage up status"
+ annotation (Placement(transformation(extent={{-100,50},{-80,70}})));
+ Buildings.Controls.OBC.CDL.Logical.Sources.Pulse booPul2(
+ final width=0.1,
+ final period=3800) "Boolean pulse"
+ annotation (Placement(transformation(extent={{-140,50},{-120,70}})));
+ Buildings.Controls.OBC.CDL.Logical.Switch logSwi[4] "Logical switch"
+ annotation (Placement(transformation(extent={{0,50},{20,70}})));
+ Buildings.Controls.OBC.CDL.Routing.BooleanScalarReplicator booRep(
+ final nout=4) "Replicate boolean input"
+ annotation (Placement(transformation(extent={{-60,50},{-40,70}})));
+ Buildings.Controls.OBC.CDL.Discrete.ZeroOrderHold zerOrdHol[4](
+ final samplePeriod=fill(10, 4)) "Isolation valve actual position"
+ annotation (Placement(transformation(extent={{100,30},{120,50}})));
+ Buildings.Controls.OBC.CDL.Logical.Pre pre[4] "Tower cell actual status"
+ annotation (Placement(transformation(extent={{100,-10},{120,10}})));
+ Buildings.Controls.OBC.CDL.Discrete.ZeroOrderHold zerOrdHol1[4](
+ final samplePeriod=fill(10, 4)) "Isolation valve actual position"
+ annotation (Placement(transformation(extent={{100,-50},{120,-30}})));
+ Buildings.Controls.OBC.CDL.Logical.Pre pre1[4](
+ pre_u_start={false,true,true,false}) "Tower cell actual status"
+ annotation (Placement(transformation(extent={{100,-90},{120,-70}})));
+ Buildings.Controls.OBC.CDL.Continuous.Switch swi[4] "Logical switch"
+ annotation (Placement(transformation(extent={{0,-50},{20,-30}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant con1[4](
+ final k={0,1,1,0})
+ "Initial isolation valve positions"
+ annotation (Placement(transformation(extent={{-100,-80},{-80,-60}})));
+
+equation
+ connect(booPul2.y, staUp1.u)
+ annotation (Line(points={{-118,60},{-102,60}}, color={255,0,255}));
+ connect(enaPro.yIsoVal, zerOrdHol.u) annotation (Line(points={{82,46},{92,46},
+ {92,40},{98,40}}, color={0,0,127}));
+ connect(zerOrdHol.y, enaPro.uIsoVal) annotation (Line(points={{122,40},{140,40},
+ {140,20},{50,20},{50,40},{58,40}}, color={0,0,127}));
+ connect(con2.y, logSwi.u1)
+ annotation (Line(points={{-38,100},{-20,100},{-20,68},{-2,68}}, color={255,0,255}));
+ connect(con.y, logSwi.u3)
+ annotation (Line(points={{-78,20},{-20,20},{-20,52},{-2,52}}, color={255,0,255}));
+ connect(logSwi.y, enaPro.uChaCel) annotation (Line(points={{22,60},{30,60},{30,
+ 48},{58,48}}, color={255,0,255}));
+ connect(booRep.y, logSwi.u2)
+ annotation (Line(points={{-38,60},{-2,60}},color={255,0,255}));
+ connect(staUp1.y, booRep.u)
+ annotation (Line(points={{-78,60},{-62,60}}, color={255,0,255}));
+ connect(enaPro.yTowSta, pre.u) annotation (Line(points={{82,40},{88,40},{88,0},
+ {98,0}}, color={255,0,255}));
+ connect(pre.y, enaPro.uTowSta) annotation (Line(points={{122,0},{140,0},{140,-20},
+ {40,-20},{40,32},{58,32}}, color={255,0,255}));
+ connect(disPro.yIsoVal, zerOrdHol1.u) annotation (Line(points={{82,-34},{92,-34},
+ {92,-40},{98,-40}}, color={0,0,127}));
+ connect(disPro.yTowSta, pre1.u) annotation (Line(points={{82,-40},{88,-40},{88,
+ -80},{98,-80}}, color={255,0,255}));
+ connect(pre1.y, disPro.uTowSta) annotation (Line(points={{122,-80},{140,-80},{
+ 140,-100},{40,-100},{40,-48},{58,-48}}, color={255,0,255}));
+ connect(logSwi.y, disPro.uChaCel) annotation (Line(points={{22,60},{30,60},{30,
+ -32},{58,-32}}, color={255,0,255}));
+ connect(swi.y, disPro.uIsoVal)
+ annotation (Line(points={{22,-40},{58,-40}}, color={0,0,127}));
+ connect(booRep.y, swi.u2) annotation (Line(points={{-38,60},{-30,60},{-30,-40},
+ {-2,-40}}, color={255,0,255}));
+ connect(con1.y, swi.u3) annotation (Line(points={{-78,-70},{-40,-70},{-40,-48},
+ {-2,-48}}, color={0,0,127}));
+ connect(zerOrdHol1.y, swi.u1) annotation (Line(points={{122,-40},{140,-40},{140,
+ -60},{-20,-60},{-20,-32},{-2,-32}}, color={0,0,127}));
+
+annotation (experiment(StopTime=3600.0, Tolerance=1e-06),
+ __Dymola_Commands(file="modelica://Buildings/Resources/Scripts/Dymola/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Towers/Staging/Subsequences/Validation/StageProcesses.mos"
+ "Simulate and plot"),
+ Documentation(info="
+
+This example validates
+
+Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Towers.Staging.Subsequences.StageProcesses.
+
+", revisions="
+
+-
+September 12, 2019, by Jianjun Hu:
+First implementation.
+
+
+"),
+ Icon(coordinateSystem(preserveAspectRatio=false, extent={{-100,-100},{100,100}}),
+ graphics={
+ Ellipse(lineColor = {75,138,73},
+ fillColor={255,255,255},
+ fillPattern = FillPattern.Solid,
+ extent = {{-100,-100},{100,100}}),
+ Polygon(lineColor = {0,0,255},
+ fillColor = {75,138,73},
+ pattern = LinePattern.None,
+ fillPattern = FillPattern.Solid,
+ points = {{-36,60},{64,0},{-36,-60},{-36,60}})}), Diagram(
+ coordinateSystem(preserveAspectRatio=false, extent={{-160,-120},{160,120}})));
+end StageProcesses;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Towers/Staging/Subsequences/Validation/package.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Towers/Staging/Subsequences/Validation/package.mo
new file mode 100644
index 00000000000..2d2ed7afcdd
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Towers/Staging/Subsequences/Validation/package.mo
@@ -0,0 +1,37 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Towers.Staging.Subsequences;
+package Validation "Collection of validation models"
+
+annotation (Icon(graphics={
+ Rectangle(
+ lineColor={200,200,200},
+ fillColor={248,248,248},
+ fillPattern=FillPattern.HorizontalCylinder,
+ extent={{-100.0,-100.0},{100.0,100.0}},
+ radius=25.0),
+ Rectangle(
+ lineColor={128,128,128},
+ extent={{-100.0,-100.0},{100.0,100.0}},
+ radius=25.0),
+ Polygon(
+ origin={8.0,14.0},
+ lineColor={78,138,73},
+ fillColor={78,138,73},
+ pattern=LinePattern.None,
+ fillPattern=FillPattern.Solid,
+ points={{-58.0,46.0},{42.0,-14.0},{-58.0,-74.0},{-58.0,46.0}})}),
+preferredView="info", Documentation(info="
+
+This package contains validation models for the classes in
+
+Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Towers.Staging.Subsequences.
+
+
+Note that most validation models contain simple input data
+which may not be realistic, but for which the correct
+output can be obtained through an analytic solution.
+The examples plot various outputs, which have been verified against these
+solutions. These model outputs are stored as reference data and
+used for continuous validation whenever models in the library change.
+
+"));
+end Validation;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Towers/Staging/Subsequences/Validation/package.order b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Towers/Staging/Subsequences/Validation/package.order
new file mode 100644
index 00000000000..94c95466a73
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Towers/Staging/Subsequences/Validation/package.order
@@ -0,0 +1,3 @@
+CellsNumber
+ChangeCells
+StageProcesses
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Towers/Staging/Subsequences/package.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Towers/Staging/Subsequences/package.mo
new file mode 100644
index 00000000000..aa71b1df72e
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Towers/Staging/Subsequences/package.mo
@@ -0,0 +1,45 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Towers.Staging;
+package Subsequences "Control subsequences of cooling tower staging"
+
+annotation (
+preferredView="info", Documentation(info="
+
+This package contains subsequences for cooling tower staging.
+The implementation is based on section 5.2.12.1 in ASHRAE RP-1711, Draft 6 (July 25, 2019).
+
+"),
+Icon(graphics={
+ Rectangle(
+ lineColor={200,200,200},
+ fillColor={248,248,248},
+ fillPattern=FillPattern.HorizontalCylinder,
+ extent={{-100.0,-100.0},{100.0,100.0}},
+ radius=25.0),
+ Rectangle(
+ lineColor={128,128,128},
+ extent={{-100.0,-100.0},{100.0,100.0}},
+ radius=25.0),
+ Ellipse(
+ origin={10.0,10.0},
+ fillColor={76,76,76},
+ pattern=LinePattern.None,
+ fillPattern=FillPattern.Solid,
+ extent={{-80.0,-80.0},{-20.0,-20.0}}),
+ Ellipse(
+ origin={10.0,10.0},
+ pattern=LinePattern.None,
+ fillPattern=FillPattern.Solid,
+ extent={{0.0,-80.0},{60.0,-20.0}}),
+ Ellipse(
+ origin={10.0,10.0},
+ fillColor={128,128,128},
+ pattern=LinePattern.None,
+ fillPattern=FillPattern.Solid,
+ extent={{0.0,0.0},{60.0,60.0}}),
+ Ellipse(
+ origin={10.0,10.0},
+ lineColor={128,128,128},
+ fillColor={255,255,255},
+ fillPattern=FillPattern.Solid,
+ extent={{-80.0,0.0},{-20.0,60.0}})}));
+end Subsequences;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Towers/Staging/Subsequences/package.order b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Towers/Staging/Subsequences/package.order
new file mode 100644
index 00000000000..94d113f9fd8
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Towers/Staging/Subsequences/package.order
@@ -0,0 +1,4 @@
+CellsNumber
+ChangeCells
+StageProcesses
+Validation
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Towers/Staging/Validation/Controller.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Towers/Staging/Validation/Controller.mo
new file mode 100644
index 00000000000..be3d67fc60c
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Towers/Staging/Validation/Controller.mo
@@ -0,0 +1,129 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Towers.Staging.Validation;
+model Controller "Validation sequence of tower cell controller"
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Towers.Staging.Controller
+ towSta(
+ final nTowCel=2,
+ final nConWatPum=2,
+ final totSta=5,
+ final staVec={0,0.5,1,1.5,2},
+ final towCelOnSet={0,1,1,2,2})
+ "Cooling tower staging control, specifies total number of cells and the staging process"
+ annotation (Placement(transformation(extent={{40,-40},{60,-20}})));
+ Buildings.Controls.OBC.CDL.Logical.Pre pre1[2] "Actual cells status"
+ annotation (Placement(transformation(extent={{80,-60},{100,-40}})));
+ Buildings.Controls.OBC.CDL.Discrete.ZeroOrderHold zerOrdHol[2](
+ final samplePeriod=fill(2, 2)) "Actual isolation valve positions"
+ annotation (Placement(transformation(extent={{80,-100},{100,-80}})));
+ Buildings.Controls.OBC.CDL.Logical.Sources.Pulse wseSta(
+ final width=0.15,
+ final period=3600,
+ final shift=300) "Water side economizer status"
+ annotation (Placement(transformation(extent={{-80,-70},{-60,-50}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Ramp chiStaGen(
+ final height=1.2,
+ final duration=3600,
+ final offset=1) "Generate chiller stage"
+ annotation (Placement(transformation(extent={{-120,10},{-100,30}})));
+ Buildings.Controls.OBC.CDL.Conversions.RealToInteger chiStaSet
+ "Chiller stage setpoint"
+ annotation (Placement(transformation(extent={{-80,10},{-60,30}})));
+ Buildings.Controls.OBC.CDL.Logical.Sources.Pulse booPul2(
+ final width=0.75,
+ final period=3600) "Boolean pulse"
+ annotation (Placement(transformation(extent={{-120,-30},{-100,-10}})));
+ Buildings.Controls.OBC.CDL.Logical.Not StaTow "Stage tower cells"
+ annotation (Placement(transformation(extent={{-80,-30},{-60,-10}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant conWatPumSpe[2](
+ final k=fill(0.5, 2)) "Condenser water pump speed"
+ annotation (Placement(transformation(extent={{-80,-130},{-60,-110}})));
+ Buildings.Controls.OBC.CDL.Logical.Sources.Pulse pul(
+ final width=0.05,
+ final period=3600)
+ "Boolean pulse"
+ annotation (Placement(transformation(extent={{-120,-100},{-100,-80}})));
+ Buildings.Controls.OBC.CDL.Logical.Not leaConPum "Lead condenser water pump status"
+ annotation (Placement(transformation(extent={{-80,-100},{-60,-80}})));
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant con1(
+ final k=false)
+ "Constant false"
+ annotation (Placement(transformation(extent={{-120,120},{-100,140}})));
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant chiStaSet2(
+ final k=1)
+ "Chiller stage setpoint"
+ annotation (Placement(transformation(extent={{-80,90},{-60,110}})));
+ Buildings.Controls.OBC.CDL.Integers.Sources.Pulse pul1(
+ final width=0.001,
+ final period=3600)
+ "Block that generates pulse signal of type Integer at simulation start time and has infinite number of periods"
+ annotation (Placement(transformation(extent={{-120,50},{-100,70}})));
+ Buildings.Controls.OBC.CDL.Integers.Subtract intSub
+ "Chiller stage setpoint"
+ annotation (Placement(transformation(extent={{-40,70},{-20,90}})));
+equation
+ connect(pre1.y, towSta.uTowSta)
+ annotation (Line(points={{102,-50},{120,-50},{120,-10},{-14,-10},{-14,-39},{
+ 38,-39}}, color={255,0,255}));
+ connect(towSta.yIsoVal, zerOrdHol.u)
+ annotation (Line(points={{62,-30},{72,-30},{72,-90},{78,-90}}, color={0,0,127}));
+ connect(zerOrdHol.y, towSta.uIsoVal)
+ annotation (Line(points={{102,-90},{120,-90},{120,-110},{-20,-110},{-20,-37},
+ {38,-37}}, color={0,0,127}));
+ connect(chiStaGen.y,chiStaSet. u)
+ annotation (Line(points={{-98,20},{-82,20}}, color={0,0,127}));
+ connect(booPul2.y,StaTow. u)
+ annotation (Line(points={{-98,-20},{-82,-20}}, color={255,0,255}));
+ connect(pul.y,leaConPum. u)
+ annotation (Line(points={{-98,-90},{-82,-90}}, color={255,0,255}));
+ connect(chiStaSet.y, towSta.uChiStaSet) annotation (Line(points={{-58,20},{24,
+ 20},{24,-23},{38,-23}}, color={255,127,0}));
+ connect(StaTow.y, towSta.uTowStaCha) annotation (Line(points={{-58,-20},{-40,-20},
+ {-40,-25},{38,-25}}, color={255,0,255}));
+ connect(wseSta.y, towSta.uWse) annotation (Line(points={{-58,-60},{-34,-60},{-34,
+ -27},{38,-27}}, color={255,0,255}));
+ connect(leaConPum.y, towSta.uLeaConWatPum) annotation (Line(points={{-58,-90},
+ {-30,-90},{-30,-31},{38,-31}}, color={255,0,255}));
+ connect(conWatPumSpe.y, towSta.uConWatPumSpe) annotation (Line(points={{-58,-120},
+ {-26,-120},{-26,-33},{38,-33}}, color={0,0,127}));
+ connect(towSta.yTowSta, pre1.u) annotation (Line(points={{62,-34},{68,-34},{68,
+ -50},{78,-50}}, color={255,0,255}));
+ connect(con1.y, towSta.uEnaPla) annotation (Line(points={{-98,130},{0,130},{0,
+ -29},{38,-29}}, color={255,0,255}));
+ connect(pul1.y, intSub.u2) annotation (Line(points={{-98,60},{-48,60},{-48,74},
+ {-42,74}}, color={255,127,0}));
+ connect(chiStaSet2.y, intSub.u1) annotation (Line(points={{-58,100},{-52,100},
+ {-52,86},{-42,86}}, color={255,127,0}));
+ connect(intSub.y, towSta.uChiSta) annotation (Line(points={{-18,80},{20,80},{20,
+ -21},{38,-21}}, color={255,127,0}));
+annotation (experiment(
+ StopTime=3600,
+ Tolerance=1e-06),
+ __Dymola_Commands(file="modelica://Buildings/Resources/Scripts/Dymola/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Towers/Staging/Validation/Controller.mos"
+ "Simulate and plot"),
+ Documentation(info="
+
+This example validates
+
+Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Towers.Staging.Controller.
+
+", revisions="
+
+-
+September 12, 2019, by Jianjun Hu:
+First implementation.
+
+
+"),
+ Icon(coordinateSystem(preserveAspectRatio=false, extent={{-100,-100},{100,100}}),
+ graphics={
+ Ellipse(lineColor = {75,138,73},
+ fillColor={255,255,255},
+ fillPattern = FillPattern.Solid,
+ extent = {{-100,-100},{100,100}}),
+ Polygon(lineColor = {0,0,255},
+ fillColor = {75,138,73},
+ pattern = LinePattern.None,
+ fillPattern = FillPattern.Solid,
+ points = {{-36,60},{64,0},{-36,-60},{-36,60}})}),
+ Diagram(coordinateSystem(preserveAspectRatio=false, extent={{-140,-160},{140,160}})));
+end Controller;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Towers/Staging/Validation/package.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Towers/Staging/Validation/package.mo
new file mode 100644
index 00000000000..bf670594143
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Towers/Staging/Validation/package.mo
@@ -0,0 +1,37 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Towers.Staging;
+package Validation "Collection of validation models"
+
+annotation (Icon(graphics={
+ Rectangle(
+ lineColor={200,200,200},
+ fillColor={248,248,248},
+ fillPattern=FillPattern.HorizontalCylinder,
+ extent={{-100.0,-100.0},{100.0,100.0}},
+ radius=25.0),
+ Rectangle(
+ lineColor={128,128,128},
+ extent={{-100.0,-100.0},{100.0,100.0}},
+ radius=25.0),
+ Polygon(
+ origin={8.0,14.0},
+ lineColor={78,138,73},
+ fillColor={78,138,73},
+ pattern=LinePattern.None,
+ fillPattern=FillPattern.Solid,
+ points={{-58.0,46.0},{42.0,-14.0},{-58.0,-74.0},{-58.0,46.0}})}),
+preferredView="info", Documentation(info="
+
+This package contains validation models for the classes in
+
+Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Towers.Staging.
+
+
+Note that most validation models contain simple input data
+which may not be realistic, but for which the correct
+output can be obtained through an analytic solution.
+The examples plot various outputs, which have been verified against these
+solutions. These model outputs are stored as reference data and
+used for continuous validation whenever models in the library change.
+
+"));
+end Validation;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Towers/Staging/Validation/package.order b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Towers/Staging/Validation/package.order
new file mode 100644
index 00000000000..8cba75e31a7
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Towers/Staging/Validation/package.order
@@ -0,0 +1 @@
+Controller
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Towers/Staging/package.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Towers/Staging/package.mo
new file mode 100644
index 00000000000..a18ce6a6b97
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Towers/Staging/package.mo
@@ -0,0 +1,47 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Towers;
+package Staging "Package of sequences for cooling tower staging"
+
+annotation (
+preferredView="info", Documentation(info="
+
+This package contains sequences for cooling tower staging.
+The implementation is based on section 5.2.12.1 in
+ASHRAE RP-1711 Advanced Sequences of Operation for HVAC Systems Phase II –
+Central Plants and Hydronic Systems (draft version on March 23, 2020).
+
+"),
+Icon(graphics={
+ Rectangle(
+ lineColor={200,200,200},
+ fillColor={248,248,248},
+ fillPattern=FillPattern.HorizontalCylinder,
+ extent={{-100.0,-100.0},{100.0,100.0}},
+ radius=25.0),
+ Rectangle(
+ lineColor={128,128,128},
+ extent={{-100.0,-100.0},{100.0,100.0}},
+ radius=25.0),
+ Ellipse(
+ origin={10.0,10.0},
+ fillColor={76,76,76},
+ pattern=LinePattern.None,
+ fillPattern=FillPattern.Solid,
+ extent={{-80.0,-80.0},{-20.0,-20.0}}),
+ Ellipse(
+ origin={10.0,10.0},
+ pattern=LinePattern.None,
+ fillPattern=FillPattern.Solid,
+ extent={{0.0,-80.0},{60.0,-20.0}}),
+ Ellipse(
+ origin={10.0,10.0},
+ fillColor={128,128,128},
+ pattern=LinePattern.None,
+ fillPattern=FillPattern.Solid,
+ extent={{0.0,0.0},{60.0,60.0}}),
+ Ellipse(
+ origin={10.0,10.0},
+ lineColor={128,128,128},
+ fillColor={255,255,255},
+ fillPattern=FillPattern.Solid,
+ extent={{-80.0,0.0},{-20.0,60.0}})}));
+end Staging;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Towers/Staging/package.order b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Towers/Staging/package.order
new file mode 100644
index 00000000000..9ffbffcb990
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Towers/Staging/package.order
@@ -0,0 +1,3 @@
+Controller
+Subsequences
+Validation
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Towers/Validation/Controller.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Towers/Validation/Controller.mo
new file mode 100644
index 00000000000..90809ef9c9b
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Towers/Validation/Controller.mo
@@ -0,0 +1,270 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Towers.Validation;
+model Controller "Validation sequence of controlling tower"
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Towers.Controller
+ towCon(
+ nChi=2,
+ nTowCel=2,
+ nConWatPum=2,
+ have_WSE=true)
+ "Cooling tower controller"
+ annotation (Placement(transformation(extent={{200,340},{220,380}})));
+
+protected
+ Buildings.Controls.OBC.CDL.Logical.Sources.Pulse wseSta(
+ final width=0.15,
+ final period=3600)
+ "Waterside economizer enabling status"
+ annotation (Placement(transformation(extent={{-360,200},{-340,220}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Ramp plaCap(
+ final height=8e5,
+ final duration=3600,
+ final offset=1e5) "Real operating chiller plant capacity"
+ annotation (Placement(transformation(extent={{-360,70},{-340,90}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Sine conSup(
+ final amplitude=2,
+ final freqHz=1/1800,
+ final offset=273.15 + 29) "Condenser water supply temperature"
+ annotation (Placement(transformation(extent={{-360,-190},{-340,-170}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Ramp ram2(
+ final height=3,
+ final duration=3600,
+ final startTime=1500) "Ramp"
+ annotation (Placement(transformation(extent={{-360,-230},{-340,-210}})));
+ Buildings.Controls.OBC.CDL.Continuous.Add conWatSupTem
+ "Condenser water supply temperature"
+ annotation (Placement(transformation(extent={{-300,-210},{-280,-190}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Ramp ram3(
+ final height=3,
+ final duration=3600,
+ final startTime=1500) "Ramp"
+ annotation (Placement(transformation(extent={{-360,-150},{-340,-130}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Sine conRet2(
+ final amplitude=2,
+ final freqHz=1/1800,
+ final offset=273.15 + 28) "Condenser water return temperature"
+ annotation (Placement(transformation(extent={{-360,-110},{-340,-90}})));
+ Buildings.Controls.OBC.CDL.Continuous.Add conWatRetTem
+ "Condenser water return temperature"
+ annotation (Placement(transformation(extent={{-300,-130},{-280,-110}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Ramp conWatPumSpe1[2](
+ final height=fill(0.5, 2),
+ final duration=fill(3600, 2),
+ final startTime=fill(300, 2)) "Measured condenser water pump speed"
+ annotation (Placement(transformation(extent={{-300,-170},{-280,-150}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant hpTowSpe1(final k=0.5)
+ "Head pressure control maximum tower speed"
+ annotation (Placement(transformation(extent={{-320,50},{-300,70}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant hpTowSpe2(final k=0)
+ "Head pressure control maximum tower speed"
+ annotation (Placement(transformation(extent={{-360,-10},{-340,10}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant towFanSpe3(final k=0.2)
+ "Measured tower fan speed"
+ annotation (Placement(transformation(extent={{-320,170},{-300,190}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant chiWatSupSet(
+ final k=273.15 + 6.5)
+ "Chilled water supply setpoint"
+ annotation (Placement(transformation(extent={{-360,-50},{-340,-30}})));
+ Buildings.Controls.OBC.CDL.Logical.Sources.Pulse chiSta1(
+ final width=0.4,
+ final period=3600) "Chiller one enabling status"
+ annotation (Placement(transformation(extent={{-360,260},{-340,280}})));
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant chiTwoSta(final k=false)
+ "Chiller two enabling status"
+ annotation (Placement(transformation(extent={{-360,230},{-340,250}})));
+ Buildings.Controls.OBC.CDL.Logical.Or3 or3 "Logical or"
+ annotation (Placement(transformation(extent={{-140,-80},{-120,-60}})));
+ Buildings.Controls.OBC.CDL.Logical.Not chiOneSta "Chiller one status"
+ annotation (Placement(transformation(extent={{-320,260},{-300,280}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant zer(
+ final k=0) "Constant zero"
+ annotation (Placement(transformation(extent={{-320,10},{-300,30}})));
+ Buildings.Controls.OBC.CDL.Continuous.Switch swi1 "Logical switch"
+ annotation (Placement(transformation(extent={{-240,30},{-220,50}})));
+ Buildings.Controls.OBC.CDL.Continuous.Switch chiOneLoa "Chiller one load"
+ annotation (Placement(transformation(extent={{-260,320},{-240,340}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant chiTwoLoa(final k=0)
+ "Chiller two load"
+ annotation (Placement(transformation(extent={{-360,300},{-340,320}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Sine sin(
+ final amplitude=0.2*1e4,
+ final freqHz=1/1200,
+ final offset=1.1*1e4,
+ final startTime=180) "Chiller load"
+ annotation (Placement(transformation(extent={{-360,340},{-340,360}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Sine chiSup(
+ final amplitude=0.5,
+ final freqHz=1/1800,
+ final offset=273.15 + 7.1) "Chilled water supply temperature"
+ annotation (Placement(transformation(extent={{-360,140},{-340,160}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Ramp ram1(
+ final height=3,
+ final duration=3600,
+ final startTime=1500) "Ramp"
+ annotation (Placement(transformation(extent={{-360,100},{-340,120}})));
+ Buildings.Controls.OBC.CDL.Continuous.Add chiWatSupTem
+ "Chilled water supply temperature"
+ annotation (Placement(transformation(extent={{-260,120},{-240,140}})));
+ Buildings.Controls.OBC.CDL.Conversions.BooleanToInteger chiSta "Chiller stage "
+ annotation (Placement(transformation(extent={{-140,-240},{-120,-220}})));
+ Buildings.Controls.OBC.CDL.Logical.TrueDelay towStaUp(
+ final delayTime=30) "Cooling tower stage up"
+ annotation (Placement(transformation(extent={{-140,-330},{-120,-310}})));
+ Buildings.Controls.OBC.CDL.Discrete.ZeroOrderHold zerOrdHol[2](final
+ samplePeriod=fill(5, 2))
+ "Output the input signal with a zero order hold"
+ annotation (Placement(transformation(extent={{280,320},{300,340}})));
+ Buildings.Controls.OBC.CDL.Logical.Pre pre1[2] "Break algebraic"
+ annotation (Placement(transformation(extent={{280,370},{300,390}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Ramp watLev(
+ final height=1.2,
+ final duration=3600,
+ final offset=0.5) "Water level in cooling tower"
+ annotation (Placement(transformation(extent={{140,50},{160,70}})));
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant chiStaSet(
+ final k=1) "Chiller stage setpoint"
+ annotation (Placement(transformation(extent={{-140,-270},{-120,-250}})));
+ Buildings.Controls.OBC.CDL.Continuous.Hysteresis leaConPum(
+ final uLow=0.005, final uHigh=0.01)
+ "Lead condenser water pump status"
+ annotation (Placement(transformation(extent={{-240,-190},{-220,-170}})));
+ Buildings.Controls.OBC.CDL.Logical.Not wseSta1 "Water side economizer status"
+ annotation (Placement(transformation(extent={{-320,200},{-300,220}})));
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant con3(final k=false)
+ "Constant false"
+ annotation (Placement(transformation(extent={{-80,-150},{-60,-130}})));
+equation
+ connect(ram2.y, conWatSupTem.u2) annotation (Line(points={{-338,-220},{-320,-220},
+ {-320,-206},{-302,-206}}, color={0,0,127}));
+ connect(conSup.y, conWatSupTem.u1) annotation (Line(points={{-338,-180},{-320,
+ -180},{-320,-194},{-302,-194}}, color={0,0,127}));
+ connect(conRet2.y, conWatRetTem.u1) annotation (Line(points={{-338,-100},{-320,
+ -100},{-320,-114},{-302,-114}}, color={0,0,127}));
+ connect(ram3.y, conWatRetTem.u2) annotation (Line(points={{-338,-140},{-320,-140},
+ {-320,-126},{-302,-126}}, color={0,0,127}));
+ connect(chiTwoSta.y, or3.u2) annotation (Line(points={{-338,240},{-194,240},{-194,
+ -70},{-142,-70}}, color={255,0,255}));
+ connect(chiSta1.y, chiOneSta.u)
+ annotation (Line(points={{-338,270},{-322,270}}, color={255,0,255}));
+ connect(chiOneSta.y, or3.u1) annotation (Line(points={{-298,270},{-188,270},{-188,
+ -62},{-142,-62}}, color={255,0,255}));
+ connect(chiOneSta.y, swi1.u2) annotation (Line(points={{-298,270},{-280,270},{
+ -280,40},{-242,40}}, color={255,0,255}));
+ connect(hpTowSpe1.y, swi1.u1)
+ annotation (Line(points={{-298,60},{-260,60},{-260,48},{-242,48}},
+ color={0,0,127}));
+ connect(zer.y, swi1.u3)
+ annotation (Line(points={{-298,20},{-260,20},{-260,32},{-242,32}},
+ color={0,0,127}));
+ connect(chiTwoLoa.y, chiOneLoa.u3) annotation (Line(points={{-338,310},{-320,310},
+ {-320,322},{-262,322}}, color={0,0,127}));
+ connect(sin.y, chiOneLoa.u1) annotation (Line(points={{-338,350},{-320,350},{-320,
+ 338},{-262,338}}, color={0,0,127}));
+ connect(chiOneSta.y, chiOneLoa.u2) annotation (Line(points={{-298,270},{-280,270},
+ {-280,330},{-262,330}}, color={255,0,255}));
+ connect(chiSup.y, chiWatSupTem.u1) annotation (Line(points={{-338,150},{-320,150},
+ {-320,136},{-262,136}}, color={0,0,127}));
+ connect(ram1.y, chiWatSupTem.u2) annotation (Line(points={{-338,110},{-320,110},
+ {-320,124},{-262,124}}, color={0,0,127}));
+ connect(chiOneLoa.y, towCon.chiLoa[1]) annotation (Line(points={{-238,330},{
+ -40,330},{-40,378.5},{198,378.5}},
+ color={0,0,127}));
+ connect(chiTwoLoa.y, towCon.chiLoa[2]) annotation (Line(points={{-338,310},{
+ -40,310},{-40,379.5},{198,379.5}},
+ color={0,0,127}));
+ connect(chiOneSta.y, towCon.uChi[1]) annotation (Line(points={{-298,270},{-30,
+ 270},{-30,376.5},{198,376.5}}, color={255,0,255}));
+ connect(chiTwoSta.y, towCon.uChi[2]) annotation (Line(points={{-338,240},{-30,
+ 240},{-30,377.5},{198,377.5}}, color={255,0,255}));
+ connect(towFanSpe3.y,towCon.uFanSpe) annotation (Line(points={{-298,180},{
+ -10,180},{-10,373},{198,373}},
+ color={0,0,127}));
+ connect(chiWatSupTem.y, towCon.TChiWatSup) annotation (Line(points={{-238,130},
+ {0,130},{0,371},{198,371}}, color={0,0,127}));
+ connect(chiWatSupSet.y, towCon.TChiWatSupSet) annotation (Line(points={{-338,
+ -40},{10,-40},{10,369},{198,369}},
+ color={0,0,127}));
+ connect(plaCap.y, towCon.reqPlaCap) annotation (Line(points={{-338,80},{20,80},
+ {20,367},{198,367}}, color={0,0,127}));
+ connect(swi1.y, towCon.uMaxTowSpeSet[1]) annotation (Line(points={{-218,40},{
+ 30,40},{30,364.5},{198,364.5}},
+ color={0,0,127}));
+ connect(hpTowSpe2.y, towCon.uMaxTowSpeSet[2]) annotation (Line(points={{-338,0},
+ {40,0},{40,365.5},{198,365.5}}, color={0,0,127}));
+ connect(or3.y, towCon.uPla) annotation (Line(points={{-118,-70},{60,-70},{60,
+ 361},{198,361}}, color={255,0,255}));
+ connect(conWatRetTem.y, towCon.TConWatRet) annotation (Line(points={{-278,
+ -120},{70,-120},{70,359},{198,359}},
+ color={0,0,127}));
+ connect(conWatPumSpe1.y, towCon.uConWatPumSpe) annotation (Line(points={{-278,
+ -160},{80,-160},{80,357},{198,357}}, color={0,0,127}));
+ connect(conWatSupTem.y, towCon.TConWatSup) annotation (Line(points={{-278,
+ -200},{90,-200},{90,355},{198,355}},
+ color={0,0,127}));
+ connect(chiOneSta.y, chiSta.u) annotation (Line(points={{-298,270},{-188,270},
+ {-188,-230},{-142,-230}}, color={255,0,255}));
+ connect(chiSta.y, towCon.uChiSta) annotation (Line(points={{-118,-230},{100,
+ -230},{100,351},{198,351}},
+ color={255,127,0}));
+ connect(chiOneSta.y, towStaUp.u) annotation (Line(points={{-298,270},{-188,270},
+ {-188,-320},{-142,-320}}, color={255,0,255}));
+ connect(towCon.yIsoVal, zerOrdHol.u) annotation (Line(points={{222,365},{260,365},
+ {260,330},{278,330}}, color={0,0,127}));
+ connect(zerOrdHol.y, towCon.uIsoVal) annotation (Line(points={{302,330},{320,
+ 330},{320,300},{150,300},{150,343},{198,343}},
+ color={0,0,127}));
+ connect(watLev.y, towCon.watLev) annotation (Line(points={{162,60},{170,60},{
+ 170,341},{198,341}},
+ color={0,0,127}));
+ connect(towCon.yTowSta, pre1.u) annotation (Line(points={{222,355},{250,355},{
+ 250,380},{278,380}}, color={255,0,255}));
+ connect(pre1.y, towCon.uTowSta) annotation (Line(points={{302,380},{340,380},
+ {340,280},{50,280},{50,363},{198,363}},color={255,0,255}));
+ connect(towStaUp.y, towCon.uTowStaCha) annotation (Line(points={{-118,-320},{
+ 120,-320},{120,347},{198,347}},
+ color={255,0,255}));
+ connect(chiStaSet.y, towCon.uChiStaSet) annotation (Line(points={{-118,-260},
+ {108,-260},{108,349},{198,349}},color={255,127,0}));
+ connect(conWatPumSpe1[1].y, leaConPum.u) annotation (Line(points={{-278,-160},
+ {-260,-160},{-260,-180},{-242,-180}}, color={0,0,127}));
+ connect(leaConPum.y, towCon.uLeaConWatPum) annotation (Line(points={{-218,
+ -180},{114,-180},{114,345},{198,345}},
+ color={255,0,255}));
+ connect(wseSta.y, wseSta1.u)
+ annotation (Line(points={{-338,210},{-322,210}}, color={255,0,255}));
+ connect(wseSta1.y, or3.u3) annotation (Line(points={{-298,210},{-200,210},{-200,
+ -78},{-142,-78}}, color={255,0,255}));
+ connect(wseSta1.y, towCon.uWse) annotation (Line(points={{-298,210},{-200,210},
+ {-200,375},{198,375}}, color={255,0,255}));
+ connect(con3.y, towCon.uEnaPla) annotation (Line(points={{-58,-140},{94,-140},
+ {94,353},{198,353}}, color={255,0,255}));
+annotation (experiment(StopTime=3600.0, Tolerance=1e-06),
+ __Dymola_Commands(file="modelica://Buildings/Resources/Scripts/Dymola/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Towers/Validation/Controller.mos"
+ "Simulate and plot"),
+ Documentation(info="
+
+This example validates
+
+Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Towers.Controller.
+
+", revisions="
+
+-
+September 16, 2019, by Jianjun Hu:
+First implementation.
+
+
+"),
+ Icon(coordinateSystem(preserveAspectRatio=false, extent={{-100,-100},{100,100}}),
+ graphics={
+ Ellipse(lineColor = {75,138,73},
+ fillColor={255,255,255},
+ fillPattern = FillPattern.Solid,
+ extent = {{-100,-100},{100,100}}),
+ Polygon(lineColor = {0,0,255},
+ fillColor = {75,138,73},
+ pattern = LinePattern.None,
+ fillPattern = FillPattern.Solid,
+ points = {{-36,60},{64,0},{-36,-60},{-36,60}})}),
+ Diagram(coordinateSystem(preserveAspectRatio=false, extent={{-400,-420},{400,420}})));
+end Controller;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Towers/Validation/WaterLevel.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Towers/Validation/WaterLevel.mo
new file mode 100644
index 00000000000..29db13d38e2
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Towers/Validation/WaterLevel.mo
@@ -0,0 +1,51 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Towers.Validation;
+model WaterLevel
+ "Validation sequence of cooling tower make-up water control"
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Towers.WaterLevel
+ makUpWat(
+ final watLevMin=0.7,
+ final watLevMax=1.2) "Makeup water level control"
+ annotation (Placement(transformation(extent={{20,-10},{40,10}})));
+
+protected
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Sine watLev(
+ final amplitude=1,
+ final freqHz=1/7200,
+ final offset=0.3) "Measured water level"
+ annotation (Placement(transformation(extent={{-40,-10},{-20,10}})));
+
+equation
+ connect(watLev.y, makUpWat.watLev)
+ annotation (Line(points={{-18,0},{18,0}}, color={0,0,127}));
+
+annotation (experiment(StopTime=3600.0, Tolerance=1e-06),
+ __Dymola_Commands(file="modelica://Buildings/Resources/Scripts/Dymola/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Towers/Validation/WaterLevel.mos"
+ "Simulate and plot"),
+ Documentation(info="
+
+This example validates
+
+Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Towers.WaterLevel.
+
+", revisions="
+
+-
+September 16, 2019, by Jianjun Hu:
+First implementation.
+
+
+"),
+ Icon(coordinateSystem(preserveAspectRatio=false, extent={{-100,-100},{100,100}}),
+ graphics={
+ Ellipse(lineColor = {75,138,73},
+ fillColor={255,255,255},
+ fillPattern = FillPattern.Solid,
+ extent = {{-100,-100},{100,100}}),
+ Polygon(lineColor = {0,0,255},
+ fillColor = {75,138,73},
+ pattern = LinePattern.None,
+ fillPattern = FillPattern.Solid,
+ points = {{-36,60},{64,0},{-36,-60},{-36,60}})}),
+ Diagram(coordinateSystem(preserveAspectRatio=false, extent={{-100,-100},{100,100}})));
+end WaterLevel;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Towers/Validation/package.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Towers/Validation/package.mo
new file mode 100644
index 00000000000..79f10a8d6e2
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Towers/Validation/package.mo
@@ -0,0 +1,37 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Towers;
+package Validation "Collection of validation models"
+
+annotation (Icon(graphics={
+ Rectangle(
+ lineColor={200,200,200},
+ fillColor={248,248,248},
+ fillPattern=FillPattern.HorizontalCylinder,
+ extent={{-100.0,-100.0},{100.0,100.0}},
+ radius=25.0),
+ Rectangle(
+ lineColor={128,128,128},
+ extent={{-100.0,-100.0},{100.0,100.0}},
+ radius=25.0),
+ Polygon(
+ origin={8.0,14.0},
+ lineColor={78,138,73},
+ fillColor={78,138,73},
+ pattern=LinePattern.None,
+ fillPattern=FillPattern.Solid,
+ points={{-58.0,46.0},{42.0,-14.0},{-58.0,-74.0},{-58.0,46.0}})}),
+preferredView="info", Documentation(info="
+
+This package contains validation models for the classes in
+
+Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Towers.
+
+
+Note that most validation models contain simple input data
+which may not be realistic, but for which the correct
+output can be obtained through an analytic solution.
+The examples plot various outputs, which have been verified against these
+solutions. These model outputs are stored as reference data and
+used for continuous validation whenever models in the library change.
+
+"));
+end Validation;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Towers/Validation/package.order b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Towers/Validation/package.order
new file mode 100644
index 00000000000..6c1e6b00faa
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Towers/Validation/package.order
@@ -0,0 +1,2 @@
+Controller
+WaterLevel
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Towers/WaterLevel.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Towers/WaterLevel.mo
new file mode 100644
index 00000000000..52605573b67
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Towers/WaterLevel.mo
@@ -0,0 +1,103 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Towers;
+block WaterLevel
+ "Sequences to control water level in cooling tower"
+
+ parameter Real watLevMin(
+ final min=0)
+ "Minimum cooling tower water level recommended by manufacturer";
+ parameter Real watLevMax(
+ final min=0)
+ "Maximum cooling tower water level recommended by manufacturer";
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput watLev
+ "Measured water level"
+ annotation (Placement(transformation(extent={{-140,-20},{-100,20}}),
+ iconTransformation(extent={{-140,-20},{-100,20}})));
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanOutput yMakUp
+ "Makeup water valve On-Off status"
+ annotation (Placement(transformation(extent={{100,-20},{140,20}}),
+ iconTransformation(extent={{100,-20},{140,20}})));
+
+protected
+ Buildings.Controls.OBC.CDL.Continuous.Hysteresis hys(
+ final uLow=watLevMin,
+ final uHigh=watLevMax)
+ "Check if water level is lower than minimum level"
+ annotation (Placement(transformation(extent={{-10,-10},{10,10}})));
+ Buildings.Controls.OBC.CDL.Logical.Not not1
+ annotation (Placement(transformation(extent={{40,-10},{60,10}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant minWatLev(
+ final k=watLevMin) "Minimum water level"
+ annotation (Placement(transformation(extent={{-40,-90},{-20,-70}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant maxWatLev(
+ final k=watLevMax) "Maximum water level"
+ annotation (Placement(transformation(extent={{-40,-50},{-20,-30}})));
+ Buildings.Controls.OBC.CDL.Utilities.Assert assMes(
+ final message="The maximum level has to be greater than the minimum level.")
+ "Print warning when the maximum level is not set to be greater than the minimum level"
+ annotation (Placement(transformation(extent={{60,-50},{80,-30}})));
+ Buildings.Controls.OBC.CDL.Continuous.Greater greEqu
+ "Check if maximum level is set to be greater than minimum level"
+ annotation (Placement(transformation(extent={{20,-50},{40,-30}})));
+
+equation
+ connect(watLev, hys.u)
+ annotation (Line(points={{-120,0},{-12,0}}, color={0,0,127}));
+ connect(hys.y, not1.u)
+ annotation (Line(points={{12,0},{38,0}}, color={255,0,255}));
+ connect(not1.y, yMakUp)
+ annotation (Line(points={{62,0},{120,0}}, color={255,0,255}));
+ connect(maxWatLev.y, greEqu.u1)
+ annotation (Line(points={{-18,-40},{18,-40}}, color={0,0,127}));
+ connect(minWatLev.y, greEqu.u2)
+ annotation (Line(points={{-18,-80},{0,-80},{0,-48},{18,-48}}, color={0,0,127}));
+ connect(greEqu.y, assMes.u)
+ annotation (Line(points={{42,-40},{58,-40}}, color={255,0,255}));
+
+annotation (
+ defaultComponentName = "makUpWat",
+ Diagram(
+ coordinateSystem(preserveAspectRatio=false)), Icon(graphics={
+ Rectangle(
+ extent={{-100,-100},{100,100}},
+ lineColor={0,0,127},
+ fillColor={255,255,255},
+ fillPattern=FillPattern.Solid),
+ Text(
+ extent={{-96,6},{-56,-6}},
+ textColor={0,0,127},
+ pattern=LinePattern.Dash,
+ textString="watLev"),
+ Text(
+ extent={{58,8},{98,-4}},
+ textColor={0,0,127},
+ pattern=LinePattern.Dash,
+ textString="yMakUp"),
+ Text(
+ extent={{-120,146},{100,108}},
+ textColor={0,0,255},
+ textString="%name")}),
+Documentation(info="
+
+Block that outputs yMakUp
to control cooling tower make-up water
+valve. It is implemented according to
+ASHRAE RP-1711 Advanced Sequences of Operation for HVAC Systems Phase II –
+Central Plants and Hydronic Systems (Draft on March 23, 2020),
+section 5.2.13, tower make-up water.
+
+
+Make-up water valve shall cycle based on tower water fill level sensor. The
+valve shall open when water level watLev
falls below the minimum
+fill level watLevMin
recommended by the tower manufacturer. It
+shall close when the water level goes above the maximum level watLevMax
.
+
+",
+revisions="
+
+-
+March 07, 2018, by Jianjun Hu:
+First implementation.
+
+
+"));
+end WaterLevel;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Towers/package.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Towers/package.mo
new file mode 100644
index 00000000000..017e653e6c6
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Towers/package.mo
@@ -0,0 +1,47 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant;
+package Towers "Package of sequences for cooling tower control"
+
+annotation (
+preferredView="info", Documentation(info="
+
+This package contains sequences for cooling tower control.
+The implementation is based on section 5.2.12 in
+ASHRAE RP-1711 Advanced Sequences of Operation for HVAC Systems Phase II –
+Central Plants and Hydronic Systems (draft version on March 23, 2020).
+
+"),
+Icon(graphics={
+ Rectangle(
+ lineColor={200,200,200},
+ fillColor={248,248,248},
+ fillPattern=FillPattern.HorizontalCylinder,
+ extent={{-100.0,-100.0},{100.0,100.0}},
+ radius=25.0),
+ Rectangle(
+ lineColor={128,128,128},
+ extent={{-100.0,-100.0},{100.0,100.0}},
+ radius=25.0),
+ Ellipse(
+ origin={10.0,10.0},
+ fillColor={76,76,76},
+ pattern=LinePattern.None,
+ fillPattern=FillPattern.Solid,
+ extent={{-80.0,-80.0},{-20.0,-20.0}}),
+ Ellipse(
+ origin={10.0,10.0},
+ pattern=LinePattern.None,
+ fillPattern=FillPattern.Solid,
+ extent={{0.0,-80.0},{60.0,-20.0}}),
+ Ellipse(
+ origin={10.0,10.0},
+ fillColor={128,128,128},
+ pattern=LinePattern.None,
+ fillPattern=FillPattern.Solid,
+ extent={{0.0,0.0},{60.0,60.0}}),
+ Ellipse(
+ origin={10.0,10.0},
+ lineColor={128,128,128},
+ fillColor={255,255,255},
+ fillPattern=FillPattern.Solid,
+ extent={{-80.0,0.0},{-20.0,60.0}})}));
+end Towers;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Towers/package.order b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Towers/package.order
new file mode 100644
index 00000000000..94909647c67
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Towers/package.order
@@ -0,0 +1,5 @@
+Controller
+WaterLevel
+FanSpeed
+Staging
+Validation
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Types/ChillerAndStageTypes.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Types/ChillerAndStageTypes.mo
new file mode 100644
index 00000000000..ce55ea5c5fa
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Types/ChillerAndStageTypes.mo
@@ -0,0 +1,34 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Types;
+package ChillerAndStageTypes "Chiller and stage type enumeration"
+
+ constant Integer positiveDisplacement = 1 "Positive displacement chiller or a stage with all positive displacement chillers";
+ constant Integer variableSpeedCentrifugal = 2 "Variable speed centrifugal chiller or a stage with any variable speed and no constant speed centrifugal chillers";
+ constant Integer constantSpeedCentrifugal = 3 "Constant speed centrifugal chiller or a stage with any constant speed centrifugal chiller";
+
+annotation (
+Documentation(info="
+
+This package provides constants that indicate the chiller type based on the compressor type
+and a chiller stage type based on the type of chillers being staged.
+The chiller types are enumerated in the order of the recommended staging hierarchy, per
+section 5.2.4.13., July Draft.
+
+", revisions="
+
+-
+June 7, 2019, by Milica Grahovac:
+First implementation.
+
+
+"), Icon(graphics={
+ Rectangle(
+ lineColor={200,200,200},
+ fillColor={248,248,248},
+ fillPattern=FillPattern.HorizontalCylinder,
+ extent={{-100.0,-100.0},{100.0,100.0}},
+ radius=25.0),
+ Rectangle(
+ lineColor={128,128,128},
+ extent={{-100.0,-100.0},{100.0,100.0}},
+ radius=25.0)}));
+end ChillerAndStageTypes;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Types/ChillerTypes/package.order b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Types/ChillerTypes/package.order
new file mode 100644
index 00000000000..303feed67da
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Types/ChillerTypes/package.order
@@ -0,0 +1,3 @@
+positiveDisplacement
+variableSpeedCentrifugal
+constantSpeedCentrifugal
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Types/package.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Types/package.mo
new file mode 100644
index 00000000000..7f7a66c18c8
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Types/package.mo
@@ -0,0 +1,43 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant;
+package Types "Package with type definitions for control sequences"
+
+ annotation (Documentation(info="
+
+This package provides type definitions used in chiller plant control sequences.
+
+", revisions="
+
+-
+June 10, 2017, by Milica Grahovac:
+First implementation.
+
+
+"), Icon(graphics={
+ Rectangle(
+ lineColor={200,200,200},
+ fillColor={248,248,248},
+ fillPattern=FillPattern.HorizontalCylinder,
+ extent={{-100.0,-100.0},{100.0,100.0}},
+ radius=25.0),
+ Rectangle(
+ lineColor={128,128,128},
+ extent={{-100.0,-100.0},{100.0,100.0}},
+ radius=25.0), Polygon(
+ origin={-12.167,-23},
+ fillColor={128,128,128},
+ pattern=LinePattern.None,
+ fillPattern=FillPattern.Solid,
+ points={{12.167,65},{14.167,93},{36.167,89},{24.167,20},{4.167,-30},
+ {14.167,-30},{24.167,-30},{24.167,-40},{-5.833,-50},{-15.833,
+ -30},{4.167,20},{12.167,65}},
+ smooth=Smooth.Bezier,
+ lineColor={0,0,0}), Polygon(
+ origin={2.7403,1.6673},
+ fillColor={128,128,128},
+ pattern=LinePattern.None,
+ fillPattern=FillPattern.Solid,
+ points={{49.2597,22.3327},{31.2597,24.3327},{7.2597,18.3327},{-26.7403,
+ 10.3327},{-46.7403,14.3327},{-48.7403,6.3327},{-32.7403,0.3327},{-6.7403,
+ 4.3327},{33.2597,14.3327},{49.2597,14.3327},{49.2597,22.3327}},
+ smooth=Smooth.Bezier)}));
+end Types;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Types/package.order b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Types/package.order
new file mode 100644
index 00000000000..bd092360edf
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Types/package.order
@@ -0,0 +1 @@
+ChillerAndStageTypes
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Validation/Controller.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Validation/Controller.mo
new file mode 100644
index 00000000000..f7c31985d12
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Validation/Controller.mo
@@ -0,0 +1,335 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Validation;
+model Controller "Validation head pressure controller"
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Controller chiPlaCon(
+ final closeCoupledPlant=false,
+ final nChi=2,
+ final have_parChi=true,
+ final have_ponyChiller=false,
+ final desCap=400,
+ final TChiWatSupMin={278.15,278.15},
+ final minChiLif=10,
+ final have_heaPreConSig=false,
+ final anyVsdCen=false,
+ final heaExcAppDes=2,
+ final nChiWatPum=2,
+ final have_heaChiWatPum=true,
+ final have_locSenChiWatPum=false,
+ final nSenChiWatPum=1,
+ final nConWatPum=2,
+ final have_heaConWatPum=true,
+ final nSta=2,
+ final totSta=6,
+ final staMat=[1,0; 1,1],
+ final staVec={0,0.5,1,1.5,2,2.5},
+ final desConWatPumSpe={0,0.5,0.75,0.6,0.75,0.9},
+ final desConWatPumNum={0,1,1,2,2,2},
+ final towCelOnSet={0,1,1,2,2,2},
+ final nTowCel=2,
+ final cooTowAppDes=2,
+ final dpChiWatPumMax={10*6894.76},
+ final TChiWatSupMax=291.15,
+ final have_WSE=true,
+ final chiDesCap={200,200},
+ final chiMinCap={20,20},
+ final chiTyp={Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Types.ChillerAndStageTypes.positiveDisplacement,
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Types.ChillerAndStageTypes.positiveDisplacement})
+ "Chiller plant controller"
+ annotation (Placement(transformation(extent={{-20,-180},{80,220}})));
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant uChiWatPum[2](
+ final k={true,false}) "Chilled water pump status"
+ annotation (Placement(transformation(extent={{-260,122},{-240,142}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.TimeTable timTabLin1(
+ final smoothness=Buildings.Controls.OBC.CDL.Types.Smoothness.ConstantSegments,
+ final table=[0,2; 600,4; 1200,6; 1800,6; 2400,8; 3000,8; 3600,8; 4200,6; 4800,6;
+ 5400,6; 6000,7; 6600,7; 7200,7])
+ "Time table with smoothness method of constant segments"
+ annotation (Placement(transformation(extent={{-320,-80},{-300,-60}})));
+ Buildings.Controls.OBC.CDL.Conversions.RealToInteger reaToInt1
+ "Convert real to integer"
+ annotation (Placement(transformation(extent={{-280,-80},{-260,-60}})));
+ Buildings.Controls.OBC.CDL.Logical.TrueDelay truDel(
+ final delayTime=120,
+ final delayOnInit=true)
+ annotation (Placement(transformation(extent={{240,50},{260,70}})));
+ Buildings.Controls.OBC.CDL.Logical.TrueDelay truDel1(
+ final delayTime=120,
+ final delayOnInit=true)
+ annotation (Placement(transformation(extent={{240,10},{260,30}})));
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant uChiAva[2](
+ final k={true,true})
+ "Chilled availability"
+ annotation (Placement(transformation(extent={{-240,-60},{-220,-40}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Ramp TChiWatSup(
+ final height=4,
+ final duration=7200,
+ final offset=273.15 + 7) "Chilled water supply"
+ annotation (Placement(transformation(extent={{-280,-10},{-260,10}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant TOutWet(
+ final k=283.15)
+ "Outdoor wet bulb temperatur"
+ annotation (Placement(transformation(extent={{-280,30},{-260,50}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant TOut1(
+ final k=313.15)
+ "Outdoor dry bulb temperature"
+ annotation (Placement(transformation(extent={{-260,-190},{-240,-170}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Ramp TChiWatRet(
+ final height=5,
+ final duration=3600,
+ final offset=273.15 + 15) "Chilled water return temperature"
+ annotation (Placement(transformation(extent={{-240,10},{-220,30}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Ramp TChiWatRetDow(
+ final height=3,
+ final duration=3600,
+ final offset=273.15 + 10) "Chilled water return downstream of WSE"
+ annotation (Placement(transformation(extent={{-300,-170},{-280,-150}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant TConWatRet(
+ final k=307.15)
+ "Condenser water return temperature"
+ annotation (Placement(transformation(extent={{-220,-250},{-200,-230}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant TConWatSup(
+ final k=305.15)
+ "Condenser water supply temperature"
+ annotation (Placement(transformation(extent={{-260,-230},{-240,-210}})));
+ Buildings.Controls.OBC.CDL.Continuous.Max max1
+ annotation (Placement(transformation(extent={{120,-150},{140,-130}})));
+ Buildings.Controls.OBC.CDL.Conversions.BooleanToReal booToRea[2]
+ annotation (Placement(transformation(extent={{220,-50},{240,-30}})));
+ Buildings.Controls.OBC.CDL.Continuous.Multiply pro[2]
+ annotation (Placement(transformation(extent={{260,-30},{280,-10}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Ramp dpChiWat(
+ final height=2*6895,
+ final duration=3600,
+ final offset=3*6895,
+ final startTime=0) "Chilled water differential pressure"
+ annotation (Placement(transformation(extent={{-260,60},{-240,80}})));
+ Buildings.Controls.OBC.CDL.Conversions.BooleanToReal booToRea1[2]
+ annotation (Placement(transformation(extent={{-240,160},{-220,180}})));
+ Buildings.Controls.OBC.CDL.Continuous.Multiply pro1[2]
+ annotation (Placement(transformation(extent={{-200,-138},{-180,-118}})));
+ Buildings.Controls.OBC.CDL.Logical.Pre chiOneSta
+ "Chiller one status"
+ annotation (Placement(transformation(extent={{160,50},{180,70}})));
+ Buildings.Controls.OBC.CDL.Logical.Pre chiTwoSta
+ "Chiller two status"
+ annotation (Placement(transformation(extent={{160,10},{180,30}})));
+ Buildings.Controls.OBC.CDL.Logical.Pre towSta1[2](
+ final pre_u_start=fill(false, 2))
+ "Tower cell status"
+ annotation (Placement(transformation(extent={{120,-180},{140,-160}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Ramp watLev(
+ final height=1.2,
+ final duration=3600,
+ final offset=0.5)
+ "Water level in cooling tower"
+ annotation (Placement(transformation(extent={{-260,-270},{-240,-250}})));
+ Buildings.Controls.OBC.CDL.Discrete.ZeroOrderHold zerOrdHol[2](
+ final samplePeriod=fill(5, 2))
+ "Output the input signal with a zero order hold"
+ annotation (Placement(transformation(extent={{120,-120},{140,-100}})));
+ Buildings.Controls.OBC.CDL.Discrete.ZeroOrderHold zerOrdHol1[2](
+ final samplePeriod=fill(5, 2))
+ "Output the input signal with a zero order hold"
+ annotation (Placement(transformation(extent={{220,-20},{240,0}})));
+ Buildings.Controls.OBC.CDL.Logical.Pre conWatPum[2](
+ final pre_u_start=fill(false, 2))
+ "Condenser water pump status setpoint"
+ annotation (Placement(transformation(extent={{120,-50},{140,-30}})));
+ Buildings.Controls.OBC.CDL.Discrete.ZeroOrderHold zerOrdHol2[2](
+ final samplePeriod=fill(5, 2))
+ "Output the input signal with a zero order hold"
+ annotation (Placement(transformation(extent={{120,-80},{140,-60}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Ramp chiCooLoa[2](
+ final height={80,70},
+ final duration=fill(3600, 2),
+ final offset={20,25})
+ "Current chiller cooling load"
+ annotation (Placement(transformation(extent={{-300,-130},{-280,-110}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Ramp chiWatFlo(
+ final height=0.002,
+ final duration=10800,
+ final offset=0.0075) "Chilled water flow"
+ annotation (Placement(transformation(extent={{-300,-210},{-280,-190}})));
+ Buildings.Controls.OBC.CDL.Integers.GreaterThreshold intGreThr
+ "Check if the WSE pump should be enabled"
+ annotation (Placement(transformation(extent={{-200,-100},{-180,-80}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Ramp TEntHex(
+ final height=3,
+ final duration=3600,
+ final offset=273.15 + 14)
+ "Chilled water temperature entering heat exchanger"
+ annotation (Placement(transformation(extent={{-280,-40},{-260,-20}})));
+equation
+ connect(chiPlaCon.uChiWatPum, uChiWatPum.y) annotation (Line(points={{-30,180},
+ {-190,180},{-190,132},{-238,132}}, color={255,0,255}));
+ connect(timTabLin1.y[1], reaToInt1.u)
+ annotation (Line(points={{-298,-70},{-282,-70}}, color={0,0,127}));
+ connect(reaToInt1.y, chiPlaCon.TChiWatSupResReq) annotation (Line(points={{-258,
+ -70},{-100,-70},{-100,-50},{-30,-50}}, color={255,127,0}));
+ connect(chiPlaCon.yChi[1], chiOneSta.u) annotation (Line(points={{90,97.5},{120,
+ 97.5},{120,60},{158,60}}, color={255,0,255}));
+ connect(chiPlaCon.yChi[2], chiTwoSta.u) annotation (Line(points={{90,102.5},{114,
+ 102.5},{114,20},{158,20}}, color={255,0,255}));
+ connect(chiOneSta.y, truDel.u)
+ annotation (Line(points={{182,60},{238,60}}, color={255,0,255}));
+ connect(chiTwoSta.y, truDel1.u)
+ annotation (Line(points={{182,20},{238,20}}, color={255,0,255}));
+ connect(uChiAva.y, chiPlaCon.uChiAva) annotation (Line(points={{-218,-50},{-124,
+ -50},{-124,5},{-30,5}},
+ color={255,0,255}));
+ connect(TOutWet.y, chiPlaCon.TOutWet)
+ annotation (Line(points={{-258,40},{-150,40},{-150,100},{-30,100}},
+ color={0,0,127}));
+ connect(TOut1.y, chiPlaCon.TOut) annotation (Line(points={{-238,-180},{-150,-180},
+ {-150,-100},{-30,-100}}, color={0,0,127}));
+ connect(TChiWatRet.y, chiPlaCon.TChiWatRet)
+ annotation (Line(points={{-218,20},{-128,20},{-128,80},{-30,80}},
+ color={0,0,127}));
+ connect(TChiWatSup.y, chiPlaCon.TChiWatSup)
+ annotation (Line(points={{-258,0},{-144,0},{-144,60},{-30,60}},
+ color={0,0,127}));
+ connect(TChiWatRetDow.y, chiPlaCon.TChiWatRetDow) annotation (Line(points={{-278,
+ -160},{-170,-160},{-170,90},{-30,90}}, color={0,0,127}));
+ connect(TConWatRet.y, chiPlaCon.TConWatRet) annotation (Line(points={{-198,-240},
+ {-134,-240},{-134,70},{-30,70}}, color={0,0,127}));
+ connect(TConWatSup.y, chiPlaCon.TConWatSup) annotation (Line(points={{-238,-220},
+ {-120,-220},{-120,-140},{-30,-140}}, color={0,0,127}));
+ connect(max1.y, chiPlaCon.uFanSpe) annotation (Line(points={{142,-140},{170,-140},
+ {170,-200},{-60,-200},{-60,-130},{-30,-130}}, color={0,0,127}));
+ connect(watLev.y, chiPlaCon.watLev) annotation (Line(points={{-238,-260},{-90,
+ -260},{-90,-160},{-30,-160}}, color={0,0,127}));
+ connect(chiOneSta.y, chiPlaCon.uChiIsoVal[1]) annotation (Line(points={{182,60},
+ {200,60},{200,250},{-120,250},{-120,167.5},{-30,167.5}}, color={255,
+ 0,255}));
+ connect(chiTwoSta.y, chiPlaCon.uChiIsoVal[2]) annotation (Line(points={{182,20},
+ {190,20},{190,240},{-110,240},{-110,172.5},{-30,172.5}}, color={255,0,
+ 255}));
+ connect(chiOneSta.y, chiPlaCon.uChiConIsoVal[1]) annotation (Line(points={{182,60},
+ {200,60},{200,250},{-120,250},{-120,207.5},{-30,207.5}}, color=
+ {255,0,255}));
+ connect(chiTwoSta.y, chiPlaCon.uChiConIsoVal[2]) annotation (Line(points={{182,20},
+ {190,20},{190,240},{-110,240},{-110,212.5},{-30,212.5}}, color={
+ 255,0,255}));
+ connect(chiPlaCon.yTowFanSpe[2], max1.u2) annotation (Line(points={{90,-97.5},
+ {106,-97.5},{106,-146},{118,-146}},color={0,0,127}));
+ connect(chiPlaCon.yTowFanSpe[1], max1.u1) annotation (Line(points={{90,-102.5},
+ {112,-102.5},{112,-134},{118,-134}},
+ color={0,0,127}));
+ connect(chiPlaCon.yTowCel, towSta1.u) annotation (Line(points={{90,-85},{96,-85},
+ {96,-170},{118,-170}}, color={255,0,255}));
+ connect(towSta1.y, chiPlaCon.uTowSta) annotation (Line(points={{142,-170},{160,
+ -170},{160,-190},{-40,-190},{-40,-170},{-30,-170}}, color={255,0,
+ 255}));
+ connect(chiPlaCon.yTowCelIsoVal, zerOrdHol.u) annotation (Line(points={{90,-70},
+ {100,-70},{100,-110},{118,-110}}, color={0,0,127}));
+ connect(zerOrdHol.y, chiPlaCon.uIsoVal) annotation (Line(points={{142,-110},{180,
+ -110},{180,-210},{-70,-210},{-70,-150},{-30,-150}}, color={0,0,127}));
+ connect(chiPlaCon.yConWatPum, conWatPum.u) annotation (Line(points={{90,20},{108,
+ 20},{108,-40},{118,-40}}, color={255,0,255}));
+ connect(conWatPum.y, chiPlaCon.uConWatPum) annotation (Line(points={{142,-40},
+ {210,-40},{210,-230},{-100,-230},{-100,-90},{-30,-90}},
+ color={255,0,255}));
+ connect(conWatPum.y, booToRea.u)
+ annotation (Line(points={{142,-40},{218,-40}},
+ color={255,0,255}));
+ connect(zerOrdHol1.y, pro.u1) annotation (Line(points={{242,-10},{250,-10},{
+ 250,-14},{258,-14}},
+ color={0,0,127}));
+ connect(booToRea.y, pro.u2) annotation (Line(points={{242,-40},{250,-40},{250,
+ -26},{258,-26}},
+ color={0,0,127}));
+ connect(pro.y, chiPlaCon.uConWatPumSpe) annotation (Line(points={{282,-20},{300,
+ -20},{300,-250},{-110,-250},{-110,-80},{-30,-80}}, color={0,0,127}));
+ connect(chiPlaCon.yChiWatIsoVal, zerOrdHol2.u) annotation (Line(points={{90,-15},
+ {100,-15},{100,-70},{118,-70}}, color={0,0,127}));
+ connect(zerOrdHol2.y, chiPlaCon.uChiWatIsoVal) annotation (Line(points={{142,-70},
+ {190,-70},{190,-220},{-80,-220},{-80,-40},{-30,-40}}, color={0,0,
+ 127}));
+ connect(dpChiWat.y, chiPlaCon.dpChiWat_remote[1]) annotation (Line(points={{-238,70},
+ {-180,70},{-180,140},{-30,140}}, color={0,0,127}));
+ connect(booToRea1.y, pro1.u1) annotation (Line(points={{-218,170},{-210,170},
+ {-210,-122},{-202,-122}},
+ color={0,0,127}));
+ connect(chiCooLoa.y, pro1.u2) annotation (Line(points={{-278,-120},{-220,-120},
+ {-220,-134},{-202,-134}},
+ color={0,0,127}));
+ connect(pro1.y, chiPlaCon.uChiCooLoa) annotation (Line(points={{-178,-128},{-70,
+ -128},{-70,-110},{-30,-110}}, color={0,0,127}));
+ connect(chiWatFlo.y, chiPlaCon.VChiWat_flow) annotation (Line(points={{-278,-200},
+ {-160,-200},{-160,130},{-30,130}}, color={0,0,127}));
+ connect(chiOneSta.y, booToRea1[1].u) annotation (Line(points={{182,60},{200,
+ 60},{200,250},{-260,250},{-260,170},{-242,170}}, color={255,0,255}));
+ connect(chiTwoSta.y, booToRea1[2].u) annotation (Line(points={{182,20},{190,
+ 20},{190,240},{-254,240},{-254,170},{-242,170}}, color={255,0,255}));
+ connect(chiOneSta.y, chiPlaCon.uChi[1]) annotation (Line(points={{182,60},{200,
+ 60},{200,250},{-120,250},{-120,117.5},{-30,117.5}},color={255,0,255}));
+ connect(chiTwoSta.y, chiPlaCon.uChi[2]) annotation (Line(points={{182,20},{190,
+ 20},{190,240},{-110,240},{-110,122.5},{-30,122.5}},
+ color={255,0,255}));
+ connect(chiOneSta.y, chiPlaCon.uChiWatReq[1]) annotation (Line(points={{182,60},
+ {200,60},{200,250},{-120,250},{-120,197.5},{-30,197.5}}, color={255,
+ 0,255}));
+ connect(chiTwoSta.y, chiPlaCon.uChiWatReq[2]) annotation (Line(points={{182,20},
+ {190,20},{190,240},{-110,240},{-110,202.5},{-30,202.5}}, color={255,0,
+ 255}));
+ connect(chiOneSta.y, chiPlaCon.uConWatReq[1]) annotation (Line(points={{182,60},
+ {200,60},{200,250},{-120,250},{-120,187.5},{-30,187.5}}, color={255,
+ 0,255}));
+ connect(chiTwoSta.y, chiPlaCon.uConWatReq[2]) annotation (Line(points={{182,20},
+ {190,20},{190,240},{-110,240},{-110,192.5},{-30,192.5}}, color={255,0,
+ 255}));
+ connect(chiPlaCon.yConWatPumSpe, zerOrdHol1.u) annotation (Line(points={{90,50},
+ {140,50},{140,-10},{218,-10}},
+ color={0,0,127}));
+ connect(chiOneSta.y, chiPlaCon.uChiHeaCon[1]) annotation (Line(points={{182,60},
+ {200,60},{200,250},{-120,250},{-120,-32.5},{-30,-32.5}},
+ color={255,0,255}));
+ connect(chiTwoSta.y, chiPlaCon.uChiHeaCon[2]) annotation (Line(points={{182,20},
+ {190,20},{190,240},{-110,240},{-110,-27.5},{-30,-27.5}},
+ color={255,0,255}));
+
+ connect(reaToInt1.y, chiPlaCon.chiPlaReq) annotation (Line(points={{-258,-70},
+ {-100,-70},{-100,-60},{-30,-60}}, color={255,127,0}));
+ connect(reaToInt1.y, intGreThr.u) annotation (Line(points={{-258,-70},{-220,-70},
+ {-220,-90},{-202,-90}}, color={255,127,0}));
+ connect(intGreThr.y, chiPlaCon.uEcoPum) annotation (Line(points={{-178,-90},{-140,
+ -90},{-140,-5},{-30,-5}}, color={255,0,255}));
+ connect(TEntHex.y, chiPlaCon.TEntHex) annotation (Line(points={{-258,-30},{-148,
+ -30},{-148,-15},{-30,-15}}, color={0,0,127}));
+annotation (
+ experiment(StopTime=10800.0, Tolerance=1e-06),
+ __Dymola_Commands(file="modelica://Buildings/Resources/Scripts/Dymola/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Validation/Controller.mos"
+ "Simulate and plot"),
+ Documentation(info="
+
+This example validates composed chiller plant controller
+
+Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Controller. It shows the
+process of enabling plant, enabling waterside economizer and staging up one chiller.
+
+", revisions="
+
+-
+September, 2021, by Jianjun Hu:
+Refactored the implementations.
+
+-
+August 30, 2020, by Milica Grahovac:
+First implementation.
+
+
+"),
+ Icon(coordinateSystem(extent={{-100,-100},{100,100}}),
+ graphics={
+ Ellipse(lineColor = {75,138,73},
+ fillColor={255,255,255},
+ fillPattern = FillPattern.Solid,
+ extent = {{-100,-100},{100,100}}),
+ Polygon(lineColor = {0,0,255},
+ fillColor = {75,138,73},
+ pattern = LinePattern.None,
+ fillPattern = FillPattern.Solid,
+ points = {{-36,60},{64,0},{-36,-60},{-36,60}})}), Diagram(
+ coordinateSystem(preserveAspectRatio=false, extent={{-340,-300},{340,
+ 300}})));
+end Controller;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Validation/package.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Validation/package.mo
new file mode 100644
index 00000000000..537c92018e6
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Validation/package.mo
@@ -0,0 +1,37 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant;
+package Validation "Collection of validation models"
+
+annotation (Icon(graphics={
+ Rectangle(
+ lineColor={200,200,200},
+ fillColor={248,248,248},
+ fillPattern=FillPattern.HorizontalCylinder,
+ extent={{-100.0,-100.0},{100.0,100.0}},
+ radius=25.0),
+ Rectangle(
+ lineColor={128,128,128},
+ extent={{-100.0,-100.0},{100.0,100.0}},
+ radius=25.0),
+ Polygon(
+ origin={8.0,14.0},
+ lineColor={78,138,73},
+ fillColor={78,138,73},
+ pattern=LinePattern.None,
+ fillPattern=FillPattern.Solid,
+ points={{-58.0,46.0},{42.0,-14.0},{-58.0,-74.0},{-58.0,46.0}})}),
+preferredView="info", Documentation(info="
+
+This package contains validation models for the classes in
+
+Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.HeadPressure.
+
+
+Note that most validation models contain simple input data
+which may not be realistic, but for which the correct
+output can be obtained through an analytic solution.
+The examples plot various outputs, which have been verified against these
+solutions. These model outputs are stored as reference data and
+used for continuous validation whenever models in the library change.
+
+"));
+end Validation;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Validation/package.order b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Validation/package.order
new file mode 100644
index 00000000000..8cba75e31a7
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Validation/package.order
@@ -0,0 +1 @@
+Controller
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/package.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/package.mo
new file mode 100644
index 00000000000..583f9442b6e
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/package.mo
@@ -0,0 +1,26 @@
+within Buildings.Controls.OBC.ASHRAE.PrimarySystem;
+package ChillerPlant "Chiller plant control sequences"
+
+annotation (preferredView="info", Documentation(info="
+
+This package contains control sequences for a chiller plant comprising a single chiller or multiple chillers,
+chilled and condenser water pumps, cooling towers and an optional water side economizer.
+
+
+The control sequences are implemented based on ASHRAE RP-1711 Advanced Sequences of
+Operation for HVAC Systems Phase II –
+Central Plants and Hydronic Systems (draft version on March 23, 2020).
+
+"),
+ Icon(graphics={
+ Rectangle(
+ lineColor={200,200,200},
+ fillColor={248,248,248},
+ fillPattern=FillPattern.HorizontalCylinder,
+ extent={{-100.0,-100.0},{100.0,100.0}},
+ radius=25.0),
+ Rectangle(
+ lineColor={128,128,128},
+ extent={{-100.0,-100.0},{100.0,100.0}},
+ radius=25.0)}));
+end ChillerPlant;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/package.order b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/package.order
new file mode 100644
index 00000000000..849ffc10154
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/package.order
@@ -0,0 +1,11 @@
+Controller
+Economizers
+Generic
+HeadPressure
+MinimumFlowBypass
+Pumps
+SetPoints
+Staging
+Towers
+Types
+Validation
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/package.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/package.mo
new file mode 100644
index 00000000000..b403f5b6301
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/package.mo
@@ -0,0 +1,48 @@
+within Buildings.Controls.OBC.ASHRAE;
+package PrimarySystem "Package with primary system control sequences"
+
+annotation (
+preferredView="info", Documentation(info="
+
+This package contains control sequences for primary HVAC systems.
+
+
+The sequences are developed according to ASHRAE RP-1711 Advanced Sequences of Operation for HVAC Systems Phase II –
+Central Plants and Hydronic Systems (draft version on March 23, 2020).
+
+"),
+Icon(graphics={
+ Rectangle(
+ lineColor={200,200,200},
+ fillColor={248,248,248},
+ fillPattern=FillPattern.HorizontalCylinder,
+ extent={{-100.0,-100.0},{100.0,100.0}},
+ radius=25.0),
+ Rectangle(
+ lineColor={128,128,128},
+ extent={{-100.0,-100.0},{100.0,100.0}},
+ radius=25.0),
+ Ellipse(
+ origin={10.0,10.0},
+ fillColor={76,76,76},
+ pattern=LinePattern.None,
+ fillPattern=FillPattern.Solid,
+ extent={{-80.0,-80.0},{-20.0,-20.0}}),
+ Ellipse(
+ origin={10.0,10.0},
+ pattern=LinePattern.None,
+ fillPattern=FillPattern.Solid,
+ extent={{0.0,-80.0},{60.0,-20.0}}),
+ Ellipse(
+ origin={10.0,10.0},
+ fillColor={128,128,128},
+ pattern=LinePattern.None,
+ fillPattern=FillPattern.Solid,
+ extent={{0.0,0.0},{60.0,60.0}}),
+ Ellipse(
+ origin={10.0,10.0},
+ lineColor={128,128,128},
+ fillColor={255,255,255},
+ fillPattern=FillPattern.Solid,
+ extent={{-80.0,0.0},{-20.0,60.0}})}));
+end PrimarySystem;
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/package.order b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/package.order
new file mode 100644
index 00000000000..d4fd55856a2
--- /dev/null
+++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/package.order
@@ -0,0 +1,2 @@
+BoilerPlant
+ChillerPlant
diff --git a/Buildings/Controls/OBC/ASHRAE/package.order b/Buildings/Controls/OBC/ASHRAE/package.order
index f718b0a1739..a20c96ab04e 100644
--- a/Buildings/Controls/OBC/ASHRAE/package.order
+++ b/Buildings/Controls/OBC/ASHRAE/package.order
@@ -1 +1,2 @@
G36
+PrimarySystem
\ No newline at end of file
diff --git a/Buildings/Examples/BoilerPlant/Baseclasses/BoilerPlant.mo b/Buildings/Examples/BoilerPlant/Baseclasses/BoilerPlant.mo
new file mode 100644
index 00000000000..936ed42d343
--- /dev/null
+++ b/Buildings/Examples/BoilerPlant/Baseclasses/BoilerPlant.mo
@@ -0,0 +1,914 @@
+within Buildings.Examples.BoilerPlant.Baseclasses;
+model BoilerPlant "Boiler plant model for closed loop testing"
+ replaceable package MediumA =
+ Buildings.Media.Air;
+
+ replaceable package MediumW =
+ Buildings.Media.Water
+ "Medium model";
+
+ parameter Modelica.Units.SI.HeatFlowRate Q_flow_nominal = boiEff1[1]*boiCap1 + boiEff2[1]*boiCap2
+ "Nominal heat flow rate of radiator"
+ annotation(dialog(group="Plant parameters"));
+
+ parameter Real TPlaHotWatSetMax(
+ final unit="K",
+ displayUnit="K",
+ final quantity="ThermodynamicTemperature") = 353.15
+ "The maximum allowed hot-water setpoint temperature for the plant"
+ annotation(Dialog(group="Boiler parameters"));
+
+ parameter Real THotWatSetMinConBoi(
+ final unit="K",
+ displayUnit="K",
+ final quantity="ThermodynamicTemperature") = 305.37
+ "The minimum allowed hot-water setpoint temperature for condensing boilers"
+ annotation(Dialog(group="Boiler parameters"));
+
+ parameter Modelica.Units.SI.HeatFlowRate boiCap1= 2200000
+ "Boiler capacity for boiler-1"
+ annotation(dialog(group="Boiler parameters"));
+
+ parameter Modelica.Units.SI.HeatFlowRate boiCap2= 2200000
+ "Boiler capacity for boiler-2"
+ annotation(dialog(group="Boiler parameters"));
+
+ parameter Real boiEff1[6](
+ final unit="1",
+ displayUnit="1") = {0.6246, 0.7711, -1.2077*10e-15, 0.008576, -0.005933, 0.003156}
+ "Efficiency for boiler-1"
+ annotation(dialog(group="Boiler parameters"));
+
+ parameter Real boiEff2[6](
+ final unit="1",
+ displayUnit="1") = {0.6246, 0.7711, -1.2077*10e-15, 0.008576, -0.005933, 0.003156}
+ "Efficiency for boiler-2"
+ annotation(dialog(group="Boiler parameters"));
+
+ parameter Modelica.Units.SI.MassFlowRate mSec_flow_nominal=0.113*1000
+ "Secondary load nominal mass flow rate"
+ annotation(dialog(group="Plant parameters"));
+
+ parameter Modelica.Units.SI.Temperature TBoiSup_nominal = 273.15+70
+ "Boiler nominal supply water temperature"
+ annotation(dialog(group="Boiler parameters"));
+
+ parameter Modelica.Units.SI.Temperature TBoiRet_min = 273.15+60
+ "Boiler minimum return water temperature"
+ annotation(dialog(group="Boiler parameters"));
+
+ parameter Modelica.Units.SI.MassFlowRate mBoi_flow_nominal1=mSec_flow_nominal
+ "Boiler-1 nominal mass flow rate"
+ annotation(dialog(group="Boiler parameters"));
+
+ parameter Modelica.Units.SI.MassFlowRate mBoi_flow_nominal2=mSec_flow_nominal
+ "Boiler-2 nominal mass flow rate"
+ annotation(dialog(group="Boiler parameters"));
+
+ constant Buildings.Fluid.Boilers.Data.Lochinvar.Crest.FBdash2501 perBoiOri
+ "Original record for boiler performance data is scaled below";
+
+ parameter Buildings.Fluid.Boilers.Data.Lochinvar.Crest.FBdash2501 perBoi1(
+ final Q_flow_nominal = boiCap1,
+ final VWat = boiCap1/perBoiOri.Q_flow_nominal*perBoiOri.VWat,
+ final mDry = boiCap1/perBoiOri.Q_flow_nominal*perBoiOri.mDry,
+ final m_flow_nominal = boiCap1/perBoiOri.Q_flow_nominal*perBoiOri.m_flow_nominal)
+ "Boiler performance data, scaled to while keeping dp_nominal constant"
+ annotation (Placement(transformation(extent={{260,162},{280,182}})));
+
+ parameter Buildings.Fluid.Boilers.Data.Lochinvar.Crest.FBdash2501 perBoi2(
+ final Q_flow_nominal = boiCap2,
+ final VWat = boiCap2/perBoiOri.Q_flow_nominal*perBoiOri.VWat,
+ final mDry = boiCap2/perBoiOri.Q_flow_nominal*perBoiOri.mDry,
+ final m_flow_nominal = boiCap2/perBoiOri.Q_flow_nominal*perBoiOri.m_flow_nominal)
+ "Boiler performance data, scaled to while keeping dp_nominal constant"
+ annotation (Placement(transformation(extent={{260,192},{280,212}})));
+
+ parameter Modelica.Units.SI.PressureDifference dpValve_nominal_value=6000
+ "Nominal pressure drop of fully open valve, used if CvData=Buildings.Fluid.Types.CvTypes.OpPoint";
+
+ parameter Modelica.Units.SI.PressureDifference dpFixed_nominal_value=1000
+ "Pressure drop of pipe and other resistances that are in series";
+
+ parameter Buildings.Controls.OBC.CDL.Types.SimpleController controllerTypePla=
+ Buildings.Controls.OBC.CDL.Types.SimpleController.PI
+ "Type of controller"
+ annotation(Dialog(tab="PI parameters", group="Plant supply water temperature controller"));
+
+ parameter Real kPla(
+ final unit="1",
+ displayUnit="1",
+ final min=0)=10e-3
+ "Gain of controller"
+ annotation(Dialog(tab="PI parameters", group="Plant supply water temperature controller"));
+
+ parameter Real TiPla(
+ final unit="s",
+ displayUnit="s",
+ final quantity="time",
+ final min=0)=90
+ "Time constant of integrator block"
+ annotation(Dialog(tab="PI parameters", group="Plant supply water temperature controller",
+ enable = (controllerTypePla == Buildings.Controls.OBC.CDL.Types.SimpleController.PI
+ or controllerTypePla == Buildings.Controls.OBC.CDL.Types.SimpleController.PID)));
+
+ parameter Real TdPla(
+ final unit="s",
+ displayUnit="s",
+ final quantity="time",
+ final min=0)=0.1
+ "Time constant of derivative block"
+ annotation(Dialog(tab="PI parameters", group="Plant supply water temperature controller",
+ enable = (controllerTypePla == Buildings.Controls.OBC.CDL.Types.SimpleController.PD
+ or controllerTypePla == Buildings.Controls.OBC.CDL.Types.SimpleController.PID)));
+
+ parameter Buildings.Controls.OBC.CDL.Types.SimpleController controllerTypeBoi1=
+ Buildings.Controls.OBC.CDL.Types.SimpleController.PI
+ "Type of controller"
+ annotation(Dialog(tab="PI parameters", group="Boiler-1 supply water temperature controller"));
+
+ parameter Real kBoi1(
+ final unit="1",
+ displayUnit="1",
+ final min=0)=10e-3
+ "Gain of controller"
+ annotation(Dialog(tab="PI parameters", group="Boiler-1 supply water temperature controller"));
+
+ parameter Real TiBoi1(
+ final unit="s",
+ displayUnit="s",
+ final quantity="time",
+ final min=0)=90
+ "Time constant of integrator block"
+ annotation(Dialog(tab="PI parameters", group="Boiler-1 supply water temperature controller",
+ enable = (controllerTypeBoi1 == Buildings.Controls.OBC.CDL.Types.SimpleController.PI
+ or controllerTypeBoi1 == Buildings.Controls.OBC.CDL.Types.SimpleController.PID)));
+
+ parameter Real TdBoi1(
+ final unit="s",
+ displayUnit="s",
+ final quantity="time",
+ final min=0)=0.1
+ "Time constant of derivative block"
+ annotation(Dialog(tab="PI parameters", group="Boiler-1 supply water temperature controller",
+ enable = (controllerTypeBoi1 == Buildings.Controls.OBC.CDL.Types.SimpleController.PD
+ or controllerTypeBoi1 == Buildings.Controls.OBC.CDL.Types.SimpleController.PID)));
+
+ parameter Buildings.Controls.OBC.CDL.Types.SimpleController controllerTypeBoi2=
+ Buildings.Controls.OBC.CDL.Types.SimpleController.PI
+ "Type of controller"
+ annotation(Dialog(tab="PI parameters", group="Boiler-2 supply water temperature controller"));
+
+ parameter Real kBoi2(
+ final unit="1",
+ displayUnit="1",
+ final min=0)=10e-3
+ "Gain of controller"
+ annotation(Dialog(tab="PI parameters", group="Boiler-2 supply water temperature controller"));
+
+ parameter Real TiBoi2(
+ final unit="s",
+ displayUnit="s",
+ final quantity="time",
+ final min=0)=90
+ "Time constant of integrator block"
+ annotation(Dialog(tab="PI parameters", group="Boiler-2 supply water temperature controller",
+ enable = (controllerTypeBoi2 == Buildings.Controls.OBC.CDL.Types.SimpleController.PI
+ or controllerTypeBoi2 == Buildings.Controls.OBC.CDL.Types.SimpleController.PID)));
+
+ parameter Real TdBoi2(
+ final unit="s",
+ displayUnit="s",
+ final quantity="time",
+ final min=0)=0.1
+ "Time constant of derivative block"
+ annotation(Dialog(tab="PI parameters", group="Boiler-2 supply water temperature controller",
+ enable = (controllerTypeBoi2 == Buildings.Controls.OBC.CDL.Types.SimpleController.PD
+ or controllerTypeBoi2 == Buildings.Controls.OBC.CDL.Types.SimpleController.PID)));
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uBoiSta[2]
+ "Boiler status signal"
+ annotation (Placement(transformation(extent={{-360,140},{-320,180}}),
+ iconTransformation(extent={{-140,70},{-100,110}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uPumSta[1]
+ "Pump status signal"
+ annotation (Placement(transformation(extent={{-360,20},{-320,60}}),
+ iconTransformation(extent={{-140,10},{-100,50}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uPla
+ "Plant enable signal"
+ annotation (Placement(transformation(extent={{-360,180},{-320,220}}),
+ iconTransformation(extent={{-140,100},{-100,140}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput uHotIsoVal[2](
+ final unit="1",
+ displayUnit="1")
+ "Hot water isolation valve signal"
+ annotation (Placement(transformation(extent={{-360,60},{-320,100}}),
+ iconTransformation(extent={{-140,40},{-100,80}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput uPumSpe(
+ final unit="1",
+ displayUnit="1")
+ "Pump speed signal"
+ annotation (Placement(transformation(extent={{-360,-20},{-320,20}}),
+ iconTransformation(extent={{-140,-20},{-100,20}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput uBypValSig(
+ final unit="1",
+ displayUnit="1")
+ "Bypass valve signal"
+ annotation (Placement(transformation(extent={{-360,-60},{-320,-20}}),
+ iconTransformation(extent={{-140,-50},{-100,-10}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput TBoiHotWatSupSet[2](
+ final unit=fill("K", 2),
+ displayUnit=fill("degC", 2),
+ final quantity=fill("ThermodynamicTemperature", 2))
+ "Boiler hot water supply temperature setpoint vector"
+ annotation (Placement(transformation(extent={{-360,-130},{-320,-90}}),
+ iconTransformation(extent={{-140,-110},{-100,-70}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput TZon(
+ final unit="K",
+ displayUnit="degC",
+ final quantity="ThermodynamicTemperature")
+ "Measured zone air temperature"
+ annotation (Placement(transformation(extent={{-360,-90},{-320,-50}}),
+ iconTransformation(extent={{-140,-80},{-100,-40}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput TPlaHotWatSupSet(
+ final unit=fill("K", 2),
+ displayUnit=fill("degC", 2),
+ final quantity=fill("ThermodynamicTemperature", 2))
+ "Plant hot water supply temperature setpoint"
+ annotation (Placement(transformation(extent={{-360,-180},{-320,-140}}),
+ iconTransformation(extent={{-140,-140},{-100,-100}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanOutput yBoiSta[2]
+ "Boiler status signal"
+ annotation (Placement(transformation(extent={{320,-90},{360,-50}}),
+ iconTransformation(extent={{100,-70},{140,-30}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.BooleanOutput yPumSta[1]
+ "Pump status signal"
+ annotation (Placement(transformation(extent={{320,-130},{360,-90}}),
+ iconTransformation(extent={{100,-100},{140,-60}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealOutput ySupTem(
+ final unit="K",
+ displayUnit="degC",
+ final quantity="ThermodynamicTemperature")
+ "Measured supply temperature"
+ annotation (Placement(transformation(extent={{320,80},{360,120}}),
+ iconTransformation(extent={{100,60},{140,100}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealOutput yRetTem(
+ final unit="K",
+ displayUnit="degC",
+ final quantity="ThermodynamicTemperature")
+ "Measured return temperature"
+ annotation (Placement(transformation(extent={{320,40},{360,80}}),
+ iconTransformation(extent={{100,30},{140,70}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealOutput yHotWatDp[1](
+ final unit="Pa",
+ displayUnit="Pa")
+ "Hot water differential pressure between supply and return"
+ annotation (Placement(transformation(extent={{320,-10},{360,30}}),
+ iconTransformation(extent={{100,0},{140,40}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealOutput VHotWat_flow(
+ final unit="m3/s",
+ displayUnit="m3/s",
+ final quantity="VolumeFlowRate")
+ "Measured flowrate in primary circuit"
+ annotation (Placement(transformation(extent={{320,-50},{360,-10}}),
+ iconTransformation(extent={{100,-40},{140,0}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealOutput yHotWatIsoVal[2](
+ final unit="1",
+ displayUnit="1")
+ "Measured boiler hot water isolation valve position"
+ annotation (Placement(transformation(extent={{320,-170},{360,-130}}),
+ iconTransformation(extent={{100,-130},{140,-90}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealOutput yBypValPos(
+ final unit="1",
+ displayUnit="1")
+ "Measured bypass valve position"
+ annotation (Placement(transformation(extent={{320,130},{360,170}}),
+ iconTransformation(extent={{100,90},{140,130}})));
+
+ Modelica.Fluid.Interfaces.FluidPort_a port_a(
+ redeclare package Medium = MediumW)
+ "HW inlet port"
+ annotation (Placement(transformation(extent={{30,230},{50,250}}),
+ iconTransformation(extent={{60,130},{80,150}})));
+
+ Modelica.Fluid.Interfaces.FluidPort_b port_b(
+ redeclare package Medium = MediumW)
+ "HW outlet port"
+ annotation (Placement(transformation(extent={{-50,230},{-30,250}}),
+ iconTransformation(extent={{-80,130},{-60,150}})));
+
+ Buildings.Fluid.Sources.Boundary_pT preSou(
+ redeclare package Medium = MediumW,
+ p=100000,
+ nPorts=1)
+ "Source for pressure and to account for thermal expansion of water"
+ annotation (Placement(transformation(extent={{18,-78},{-2,-58}})));
+
+ Buildings.Fluid.Boilers.BoilerTable boi2(
+ redeclare package Medium = MediumW,
+ allowFlowReversal=false,
+ final energyDynamics=Modelica.Fluid.Types.Dynamics.FixedInitial,
+ per=perBoi2) "Boiler-2"
+ annotation (Placement(transformation(extent={{110,-220},{90,-200}})));
+
+ Buildings.Fluid.Boilers.BoilerTable boi1(
+ redeclare package Medium = MediumW,
+ allowFlowReversal=false,
+ final energyDynamics=Modelica.Fluid.Types.Dynamics.FixedInitial,
+ final per=perBoi1) "Boiler-1"
+ annotation (Placement(transformation(extent={{110,-160},{90,-140}})));
+
+ Buildings.Fluid.Movers.SpeedControlled_y pum(
+ redeclare package Medium = MediumW,
+ final energyDynamics=Modelica.Fluid.Types.Dynamics.FixedInitial,
+ final allowFlowReversal=false,
+ redeclare Buildings.Fluid.Movers.Data.Generic per(
+ final pressure(V_flow={0,2*mSec_flow_nominal/1000},
+ final dp={2*75000,0})),
+ final inputType=Buildings.Fluid.Types.InputType.Continuous,
+ final addPowerToMedium=false,
+ final riseTime=60)
+ "Hot water primary pump-1"
+ annotation (Placement(transformation(extent={{-10,-10},{10,10}},
+ rotation=90,
+ origin={-30,-50})));
+
+ Buildings.Fluid.FixedResistances.Junction spl1(
+ redeclare package Medium = MediumW,
+ final energyDynamics=Modelica.Fluid.Types.Dynamics.FixedInitial,
+ final m_flow_nominal={mBoi_flow_nominal2,-mSec_flow_nominal,mBoi_flow_nominal1},
+ final dp_nominal={0,0,0})
+ "Splitter"
+ annotation (Placement(transformation(extent={{-10,-10},{10,10}},
+ rotation=90,
+ origin={-30,-150})));
+
+ Buildings.Fluid.FixedResistances.Junction spl4(
+ redeclare package Medium = MediumW,
+ final energyDynamics=Modelica.Fluid.Types.Dynamics.FixedInitial,
+ final m_flow_nominal={mSec_flow_nominal,-mSec_flow_nominal,-mSec_flow_nominal},
+ final dp_nominal={0,0,0})
+ "Splitter"
+ annotation (Placement(transformation(extent={{-10,-10},{10,10}},
+ rotation=90,
+ origin={-30,40})));
+
+ Buildings.Fluid.Actuators.Valves.TwoWayLinear val(
+ redeclare package Medium = MediumW,
+ final m_flow_nominal=mSec_flow_nominal,
+ final dpValve_nominal=dpValve_nominal_value,
+ final dpFixed_nominal=dpFixed_nominal_value)
+ "Minimum flow bypass valve"
+ annotation (Placement(transformation(extent={{80,30},{100,50}})));
+
+ Buildings.Fluid.FixedResistances.Junction spl5(
+ redeclare package Medium = MediumW,
+ final energyDynamics=Modelica.Fluid.Types.Dynamics.FixedInitial,
+ final m_flow_nominal={mSec_flow_nominal,mSec_flow_nominal,-mSec_flow_nominal},
+ final dp_nominal={0,0,0})
+ "Splitter"
+ annotation (Placement(transformation(extent={{-10,-10},{10,10}},
+ rotation=270,
+ origin={210,40})));
+
+ Buildings.Fluid.Actuators.Valves.TwoWayLinear val2(
+ redeclare package Medium = MediumW,
+ final m_flow_nominal=mBoi_flow_nominal2,
+ final dpValve_nominal=dpValve_nominal_value,
+ final use_inputFilter=true,
+ final init=Modelica.Blocks.Types.Init.InitialState,
+ final y_start=0,
+ final dpFixed_nominal=dpFixed_nominal_value)
+ "Isolation valve for boiler-2"
+ annotation (Placement(transformation(extent={{0,-220},{20,-200}})));
+
+ Buildings.Fluid.Actuators.Valves.TwoWayLinear val1(
+ redeclare package Medium = MediumW,
+ final m_flow_nominal=mBoi_flow_nominal1,
+ final dpValve_nominal=dpValve_nominal_value,
+ final init=Modelica.Blocks.Types.Init.InitialState,
+ final y_start=0,
+ final dpFixed_nominal=dpFixed_nominal_value)
+ "Isolation valve for boiler-1"
+ annotation (Placement(transformation(extent={{0,-160},{20,-140}})));
+
+ Buildings.Controls.OBC.CDL.Conversions.BooleanToReal booToRea1[2]
+ "Boolean to Real conversion"
+ annotation (Placement(transformation(extent={{-160,150},{-140,170}})));
+
+ Buildings.Fluid.Sensors.RelativePressure senRelPre(
+ redeclare package Medium = MediumW)
+ "Differential pressure sensor between hot water supply and return"
+ annotation (Placement(transformation(extent={{80,70},{100,90}})));
+
+ Buildings.Fluid.Sensors.VolumeFlowRate senVolFlo(
+ redeclare package Medium = MediumW,
+ final m_flow_nominal=mSec_flow_nominal/1000)
+ "Volume flow-rate through primary circuit"
+ annotation (Placement(transformation(extent={{-10,-10},{10,10}},
+ rotation=90,
+ origin={-30,-10})));
+
+ Buildings.Fluid.Sensors.TemperatureTwoPort senTem(
+ redeclare package Medium = MediumW,
+ final m_flow_nominal=mSec_flow_nominal)
+ "HW supply temperature sensor"
+ annotation (Placement(transformation(extent={{-20,110},{0,130}})));
+
+ Buildings.Fluid.Sensors.TemperatureTwoPort senTem1(
+ redeclare package Medium = MediumW,
+ final m_flow_nominal=mSec_flow_nominal)
+ "HW return temperature sensor before water enters return plumbing"
+ annotation (Placement(transformation(extent={{60,110},{80,130}})));
+
+ Buildings.Controls.OBC.CDL.Routing.RealScalarReplicator reaRep(
+ final nout=1)
+ "Real replicator"
+ annotation (Placement(transformation(extent={{280,0},{300,20}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Hysteresis hys2(
+ final uLow=0.05,
+ final uHigh=0.09)
+ "Check if pumps are on"
+ annotation (Placement(transformation(extent={{100,-40},{120,-20}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Timer timPumSta(final t=120)
+ "Output pump proven on signal when pump status is enabled for two minutes"
+ annotation (Placement(transformation(extent={{140,-40},{160,-20}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Latch lat
+ "Hold pump enable status until change process is completed"
+ annotation (Placement(transformation(extent={{-300,30},{-280,50}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Switch logSwi
+ "Switch to signal from controller once enabling process has been completed"
+ annotation (Placement(transformation(extent={{-260,30},{-240,50}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Switch logSwi1[2]
+ "Switch to signal from controller once enabling process has been completed"
+ annotation (Placement(transformation(extent={{-210,150},{-190,170}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Latch lat1[2]
+ "Hold boiler enable status until boiler is proven on"
+ annotation (Placement(transformation(extent={{-260,150},{-240,170}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.PIDWithReset conPIDBoi[2](
+ final controllerType={controllerTypeBoi1,controllerTypeBoi2},
+ final k={kBoi1,kBoi2},
+ final Ti={TiBoi1,TiBoi2},
+ final Td={TdBoi1,TdBoi2},
+ final yMax=fill(1, 2),
+ final yMin=fill(0, 2),
+ final xi_start=fill(0.2, 2))
+ "PI controller for operating boilers to regulating hot water supply temperature"
+ annotation (Placement(transformation(extent={{40,-130},{60,-110}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Multiply pro1[2]
+ "Product of boiler power and current status"
+ annotation (Placement(transformation(extent={{-120,-130},{-100,-110}})));
+
+ Buildings.Fluid.FixedResistances.Junction spl6(
+ redeclare package Medium = MediumW,
+ final energyDynamics=Modelica.Fluid.Types.Dynamics.FixedInitial,
+ final m_flow_nominal={-mBoi_flow_nominal1,mSec_flow_nominal,-mBoi_flow_nominal2},
+ final dp_nominal={0,0,0})
+ "Splitter"
+ annotation (Placement(transformation(extent={{-10,-10},{10,10}},
+ rotation=0,
+ origin={150,-150})));
+
+ Buildings.Fluid.Sensors.RelativePressure senRelPre1(
+ redeclare package Medium = MediumW)
+ "Differential pressure sensor between hot water supply and return"
+ annotation (Placement(transformation(extent={{-10,-10},{10,10}},
+ rotation=90,
+ origin={-70,-10})));
+
+ Buildings.Controls.OBC.CDL.Continuous.LessThreshold lesThr[2](
+ final t=fill(0.02, 2),
+ final h=fill(0.02/10, 2))
+ "Determine if boilers are disabled"
+ annotation (Placement(transformation(extent={{180,-130},{200,-110}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Pre pre2[2]
+ "Logical pre block"
+ annotation (Placement(transformation(extent={{240,-86},{260,-66}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Latch lat2[2]
+ "Determine boiler enable status based on PLR and hold it till the boiler disable limit is passed"
+ annotation (Placement(transformation(extent={{280,-80},{300,-60}})));
+
+ Buildings.Fluid.FixedResistances.PlugFlowPipe pipe(
+ redeclare package Medium = MediumW,
+ final allowFlowReversal=false,
+ final m_flow_nominal=mSec_flow_nominal,
+ final have_pipCap=false,
+ final length=2000,
+ final dIns=0.0508,
+ final kIns=0.0389)
+ "Dynamic pipe element to represent duct loss"
+ annotation (Placement(transformation(extent={{130,110},{150,130}})));
+
+ Modelica.Thermal.HeatTransfer.Sources.PrescribedTemperature TRoo
+ "Room temperature of boiler room"
+ annotation (Placement(transformation(extent={{-280,-80},{-260,-60}})));
+
+ Buildings.Controls.OBC.CDL.Routing.BooleanScalarReplicator booRep1(
+ final nout=1)
+ "Boolean replicator"
+ annotation (Placement(transformation(extent={{280,-120},{300,-100}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.GreaterThreshold greThr3[2](
+ final t=fill(0.02,2),
+ final h=fill(0.02/10, 2))
+ "Check if boiler is enabled"
+ annotation (Placement(transformation(extent={{180,-210},{200,-190}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Pre pre3[2]
+ "Logical pre block"
+ annotation (Placement(transformation(extent={{240,-210},{260,-190}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Switch swiPum
+ "Switch for pump"
+ annotation (Placement(transformation(extent={{-220,-20},{-200,0}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant zer(
+ final k=0)
+ "Zero output signal"
+ annotation (Placement(transformation(extent={{-300,-30},{-280,-10}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.PIDWithReset conPIDPla(
+ final controllerType=controllerTypePla,
+ final k=kPla,
+ final Ti=TiPla,
+ final Td=TdPla,
+ final yMax=1,
+ final yMin=0)
+ "PI controller for setting boiler supply temperature setpoint"
+ annotation (Placement(transformation(extent={{-10,170},{10,190}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Edge edg[2]
+ "Detect changes to boiler status setpoints"
+ annotation (Placement(transformation(extent={{-170,110},{-150,130}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Line lin[2]
+ "Intrapolate plant supply temperature PI signal to boiler supply temperature setpoint"
+ annotation (Placement(transformation(extent={{-180,-190},{-160,-170}})));
+
+ Buildings.Controls.OBC.CDL.Routing.RealScalarReplicator reaScaRep(
+ final nout=2)
+ "Replicate plant PI signal to each boiler PI controller"
+ annotation (Placement(transformation(extent={{140,170},{160,190}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant con[2](
+ final k=fill(0, 2))
+ "Support point for boiler setpoint"
+ annotation (Placement(transformation(extent={{-240,-150},{-220,-130}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant con1[2](
+ final k=fill(1, 2))
+ "Support point for boiler setpoint"
+ annotation (Placement(transformation(extent={{-240,-210},{-220,-190}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant con2[2](
+ final k=fill(TPlaHotWatSetMax, 2))
+ "Max boiler plant supply temperature"
+ annotation (Placement(transformation(extent={{-280,-190},{-260,-170}})));
+
+ Buildings.Controls.OBC.CDL.Logical.Edge edg1
+ "Detect plant enable signal becoming true"
+ annotation (Placement(transformation(extent={{-130,170},{-110,190}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Multiply mul
+ "Send zero signal when the plant is disabled"
+ annotation (Placement(transformation(extent={{100,170},{120,190}})));
+
+ Buildings.Controls.OBC.CDL.Conversions.BooleanToReal booToRea
+ "Convert plant enable Boolean signal to Real signal"
+ annotation (Placement(transformation(extent={{60,190},{80,210}})));
+
+ Buildings.Fluid.Sensors.TemperatureTwoPort senTem2(
+ redeclare package Medium = MediumW,
+ final m_flow_nominal=mSec_flow_nominal)
+ "HW return temperature sensor in primary circuit"
+ annotation (Placement(transformation(extent={{-10,-10},{10,10}},
+ rotation=-90,
+ origin={210,-10})));
+
+ Buildings.Fluid.Sensors.VolumeFlowRate senVolFlo1(
+ redeclare package Medium = MediumW,
+ final m_flow_nominal=mSec_flow_nominal)
+ "Volume flow-rate through minimum flow bypass branch"
+ annotation (Placement(transformation(extent={{20,30},{40,50}})));
+
+ Buildings.Fluid.Sensors.TemperatureTwoPort senTem3(
+ redeclare package Medium = MediumW,
+ final m_flow_nominal=mSec_flow_nominal)
+ "HW return temperature sensor"
+ annotation (Placement(transformation(extent={{120,30},{140,50}})));
+
+ Buildings.Fluid.Sensors.VolumeFlowRate senVolFlo2(
+ redeclare package Medium = MediumW,
+ final m_flow_nominal=mSec_flow_nominal)
+ "Volume flow-rate through secondary circuit"
+ annotation (Placement(transformation(extent={{-10,-10},{10,10}},
+ rotation=90,
+ origin={-30,104})));
+
+ Buildings.Fluid.Sensors.TemperatureTwoPort senTem4(
+ redeclare package Medium = MediumW,
+ final m_flow_nominal=mSec_flow_nominal)
+ "HW return temperature sensor after water exits return plumbing"
+ annotation (Placement(transformation(extent={{180,110},{200,130}})));
+
+equation
+ connect(val1.port_a, spl1.port_3)
+ annotation (Line(points={{0,-150},{-20,-150}}, color={0,127,255}));
+ connect(val2.port_a, spl1.port_1) annotation (Line(points={{0,-210},{-30,-210},
+ {-30,-160}}, color={0,127,255}));
+
+ connect(spl4.port_2, senRelPre.port_a) annotation (Line(points={{-30,50},{-30,
+ 80},{80,80}}, color={0,127,255}));
+
+ connect(senRelPre.port_b, spl5.port_1) annotation (Line(points={{100,80},{210,
+ 80},{210,50}}, color={0,127,255}));
+
+ connect(senVolFlo.port_b, spl4.port_1) annotation (Line(points={{-30,0},{-30,30}},
+ color={0,127,255}));
+
+ connect(senVolFlo.V_flow, VHotWat_flow) annotation (Line(points={{-41,-10},{
+ -41,16},{180,16},{180,-30},{340,-30}}, color={0,0,127}));
+
+ connect(senTem.T, ySupTem) annotation (Line(points={{-10,131},{-10,140},{270,
+ 140},{270,100},{340,100}}, color={0,0,127}));
+
+ connect(reaRep.y, yHotWatDp)
+ annotation (Line(points={{302,10},{340,10}}, color={0,0,127}));
+
+ connect(senRelPre.p_rel, reaRep.u) annotation (Line(points={{90,71},{90,66},{240,
+ 66},{240,10},{278,10}}, color={0,0,127}));
+
+ connect(hys2.y, timPumSta.u)
+ annotation (Line(points={{122,-30},{138,-30}}, color={255,0,255}));
+ connect(lat.y, logSwi.u2)
+ annotation (Line(points={{-278,40},{-262,40}}, color={255,0,255}));
+ connect(lat.y, logSwi.u1) annotation (Line(points={{-278,40},{-270,40},{-270,
+ 48},{-262,48}}, color={255,0,255}));
+ connect(uBoiSta, lat1.u)
+ annotation (Line(points={{-340,160},{-262,160}}, color={255,0,255}));
+ connect(lat1.y, logSwi1.u2)
+ annotation (Line(points={{-238,160},{-212,160}}, color={255,0,255}));
+ connect(logSwi1.y, booToRea1.u)
+ annotation (Line(points={{-188,160},{-162,160}}, color={255,0,255}));
+ connect(uBoiSta, logSwi1.u3) annotation (Line(points={{-340,160},{-310,160},{
+ -310,140},{-220,140},{-220,152},{-212,152}}, color={255,0,255}));
+ connect(lat1.y, logSwi1.u1) annotation (Line(points={{-238,160},{-220,160},{
+ -220,168},{-212,168}}, color={255,0,255}));
+ connect(booToRea1.y, pro1.u1) annotation (Line(points={{-138,160},{-130,160},{
+ -130,-114},{-122,-114}}, color={0,0,127}));
+ connect(boi1.port_a, spl6.port_1)
+ annotation (Line(points={{110,-150},{140,-150}}, color={0,127,255}));
+ connect(boi2.port_a, spl6.port_3) annotation (Line(points={{110,-210},{150,-210},
+ {150,-160}}, color={0,127,255}));
+ connect(senTem1.port_a, port_a)
+ annotation (Line(points={{60,120},{40,120},{40,240}}, color={0,127,255}));
+ connect(val.y_actual, yBypValPos) annotation (Line(points={{95,47},{120,47},{120,
+ 150},{340,150}}, color={0,0,127}));
+ connect(pre2.y, lat2.clr) annotation (Line(points={{262,-76},{278,-76}},
+ color={255,0,255}));
+ connect(lat2.y, yBoiSta)
+ annotation (Line(points={{302,-70},{340,-70}}, color={255,0,255}));
+ connect(lesThr.y, pre2.u) annotation (Line(points={{202,-120},{220,-120},{220,
+ -76},{238,-76}}, color={255,0,255}));
+ connect(TZon, TRoo.T)
+ annotation (Line(points={{-340,-70},{-282,-70}}, color={0,0,127}));
+ connect(pum.port_b, senVolFlo.port_a)
+ annotation (Line(points={{-30,-40},{-30,-20}}, color={0,127,255}));
+ connect(senRelPre1.port_a, spl1.port_2) annotation (Line(points={{-70,-20},{-70,
+ -140},{-30,-140}}, color={0,127,255}));
+ connect(senRelPre1.port_b, spl4.port_1)
+ annotation (Line(points={{-70,0},{-70,30},{-30,30}}, color={0,127,255}));
+ connect(booRep1.y, yPumSta)
+ annotation (Line(points={{302,-110},{340,-110}}, color={255,0,255}));
+ connect(timPumSta.passed, booRep1.u) annotation (Line(points={{162,-38},{230,-38},
+ {230,-110},{278,-110}}, color={255,0,255}));
+ connect(uPumSta[1], logSwi.u3) annotation (Line(points={{-340,40},{-308,40},{-308,
+ 20},{-270,20},{-270,32},{-262,32}}, color={255,0,255}));
+ connect(uPumSta[1], lat.u)
+ annotation (Line(points={{-340,40},{-302,40}}, color={255,0,255}));
+ connect(uBypValSig, val.y) annotation (Line(points={{-340,-40},{-120,-40},{-120,
+ 60},{90,60},{90,52}}, color={0,0,127}));
+ connect(spl1.port_2, pum.port_a)
+ annotation (Line(points={{-30,-140},{-30,-60}}, color={0,127,255}));
+ connect(senTem.port_b, port_b) annotation (Line(points={{0,120},{10,120},{10,
+ 160},{-40,160},{-40,240}}, color={0,127,255}));
+ connect(preSou.ports[1], pum.port_a) annotation (Line(points={{-2,-68},{-30,-68},
+ {-30,-60}}, color={0,127,255}));
+ connect(greThr3.y, pre3.u)
+ annotation (Line(points={{202,-200},{238,-200}}, color={255,0,255}));
+ connect(pre3.y, lat2.u) annotation (Line(points={{262,-200},{266,-200},{266,-70},
+ {278,-70}}, color={255,0,255}));
+ connect(TRoo.port, pipe.heatPort) annotation (Line(points={{-260,-70},{-140,
+ -70},{-140,100},{100,100},{100,130},{140,130}},
+ color={191,0,0}));
+ connect(boi1.heatPort, TRoo.port) annotation (Line(points={{100,-142.8},{100,
+ -86},{-120,-86},{-120,-70},{-260,-70}}, color={191,0,0}));
+ connect(boi2.heatPort, TRoo.port) annotation (Line(points={{100,-202.8},{100,-180},
+ {84,-180},{84,-86},{-120,-86},{-120,-70},{-260,-70}}, color={191,0,0}));
+ connect(timPumSta.passed, lat.clr) annotation (Line(points={{162,-38},{230,-38},
+ {230,-232},{-314,-232},{-314,34},{-302,34}}, color={255,0,255}));
+ connect(lat2.y, lat1.clr) annotation (Line(points={{302,-70},{306,-70},{306,
+ 220},{-300,220},{-300,154},{-262,154}}, color={255,0,255}));
+ connect(val1.port_b,boi1. port_b)
+ annotation (Line(points={{20,-150},{90,-150}}, color={0,127,255}));
+ connect(val2.port_b, boi2.port_b)
+ annotation (Line(points={{20,-210},{90,-210}}, color={0,127,255}));
+ connect(boi1.T, conPIDBoi[1].u_m)
+ annotation (Line(points={{89,-142},{50,-142},{50,-132}}, color={0,0,127}));
+ connect(boi2.T, conPIDBoi[2].u_m)
+ annotation (Line(points={{89,-202},{50,-202},{50,-132}}, color={0,0,127}));
+ connect(hys2.u, pum.y_actual)
+ annotation (Line(points={{98,-30},{-37,-30},{-37,-39}}, color={0,0,127}));
+ connect(uPumSpe, swiPum.u1) annotation (Line(points={{-340,0},{-300,0},{-300,-2},
+ {-222,-2}}, color={0,0,127}));
+ connect(zer.y, swiPum.u3) annotation (Line(points={{-278,-20},{-270,-20},{-270,
+ -18},{-222,-18}}, color={0,0,127}));
+ connect(logSwi.y, swiPum.u2) annotation (Line(points={{-238,40},{-228,40},{-228,
+ -10},{-222,-10}}, color={255,0,255}));
+ connect(swiPum.y, pum.y) annotation (Line(points={{-198,-10},{-100,-10},{-100,
+ -50},{-42,-50}}, color={0,0,127}));
+ connect(senTem.T, conPIDPla.u_m) annotation (Line(points={{-10,131},{-10,140},
+ {0,140},{0,168}}, color={0,0,127}));
+ connect(TPlaHotWatSupSet, conPIDPla.u_s) annotation (Line(points={{-340,-160},
+ {-90,-160},{-90,180},{-12,180}}, color={0,0,127}));
+ connect(uBoiSta, edg.u) annotation (Line(points={{-340,160},{-310,160},{-310,120},
+ {-172,120}}, color={255,0,255}));
+ connect(reaScaRep.y, lin.u) annotation (Line(points={{162,180},{172,180},{172,
+ 20},{-190,20},{-190,-180},{-182,-180}}, color={0,0,127}));
+ connect(con.y, lin.x1) annotation (Line(points={{-218,-140},{-186,-140},{-186,
+ -172},{-182,-172}}, color={0,0,127}));
+ connect(con1.y, lin.x2) annotation (Line(points={{-218,-200},{-186,-200},{-186,
+ -184},{-182,-184}}, color={0,0,127}));
+ connect(con2.y, lin.f2) annotation (Line(points={{-258,-180},{-200,-180},{-200,
+ -188},{-182,-188}}, color={0,0,127}));
+ connect(pro1.y, conPIDBoi.u_s)
+ annotation (Line(points={{-98,-120},{38,-120}}, color={0,0,127}));
+ connect(TBoiHotWatSupSet, lin.f1) annotation (Line(points={{-340,-110},{-200,-110},
+ {-200,-176},{-182,-176}}, color={0,0,127}));
+ connect(lin.y, pro1.u2) annotation (Line(points={{-158,-180},{-130,-180},{-130,
+ -126},{-122,-126}}, color={0,0,127}));
+ connect(conPIDBoi[1].y, boi1.y) annotation (Line(points={{62,-120},{128,-120},
+ {128,-142},{112,-142}}, color={0,0,127}));
+ connect(conPIDBoi[2].y, boi2.y) annotation (Line(points={{62,-120},{128,-120},
+ {128,-202},{112,-202}}, color={0,0,127}));
+ connect(conPIDBoi.y, lesThr.u)
+ annotation (Line(points={{62,-120},{178,-120}}, color={0,0,127}));
+ connect(conPIDBoi.y, greThr3.u) annotation (Line(points={{62,-120},{128,-120},
+ {128,-200},{178,-200}}, color={0,0,127}));
+ connect(edg.y, conPIDBoi.trigger) annotation (Line(points={{-148,120},{-80,120},
+ {-80,-190},{44,-190},{44,-132}}, color={255,0,255}));
+ connect(uPla, edg1.u) annotation (Line(points={{-340,200},{-140,200},{-140,180},
+ {-132,180}}, color={255,0,255}));
+ connect(edg1.y, conPIDPla.trigger) annotation (Line(points={{-108,180},{-100,
+ 180},{-100,150},{-6,150},{-6,168}}, color={255,0,255}));
+ connect(mul.y, reaScaRep.u)
+ annotation (Line(points={{122,180},{138,180}}, color={0,0,127}));
+ connect(conPIDPla.y, mul.u2) annotation (Line(points={{12,180},{20,180},{20,
+ 174},{98,174}}, color={0,0,127}));
+ connect(booToRea.y, mul.u1) annotation (Line(points={{82,200},{90,200},{90,186},
+ {98,186}}, color={0,0,127}));
+ connect(uPla, booToRea.u)
+ annotation (Line(points={{-340,200},{58,200}}, color={255,0,255}));
+ connect(uHotIsoVal[1], val1.y) annotation (Line(points={{-340,70},{-50,70},{-50,
+ -100},{10,-100},{10,-138}}, color={0,0,127}));
+ connect(uHotIsoVal[2], val2.y) annotation (Line(points={{-340,90},{-50,90},{-50,
+ -180},{10,-180},{10,-198}}, color={0,0,127}));
+ connect(val1.y_actual, yHotWatIsoVal[1]) annotation (Line(points={{15,-143},{32,
+ -143},{32,-170},{290,-170},{290,-160},{340,-160}}, color={0,0,127}));
+ connect(val2.y_actual, yHotWatIsoVal[2]) annotation (Line(points={{15,-203},{32,
+ -203},{32,-170},{290,-170},{290,-140},{340,-140}}, color={0,0,127}));
+ connect(senTem2.port_b, spl6.port_2) annotation (Line(points={{210,-20},{210,
+ -150},{160,-150}},
+ color={0,127,255}));
+ connect(spl4.port_3, senVolFlo1.port_a)
+ annotation (Line(points={{-20,40},{20,40}}, color={0,127,255}));
+ connect(senVolFlo1.port_b, val.port_a)
+ annotation (Line(points={{40,40},{80,40}}, color={0,127,255}));
+ connect(val.port_b, senTem3.port_a)
+ annotation (Line(points={{100,40},{120,40}}, color={0,127,255}));
+ connect(senTem3.port_b, spl5.port_3)
+ annotation (Line(points={{140,40},{200,40}}, color={0,127,255}));
+ connect(spl4.port_2, senVolFlo2.port_a)
+ annotation (Line(points={{-30,50},{-30,94}}, color={0,127,255}));
+ connect(senVolFlo2.port_b, senTem.port_a) annotation (Line(points={{-30,114},
+ {-30,120},{-20,120}}, color={0,127,255}));
+ connect(senTem1.port_b, pipe.port_a)
+ annotation (Line(points={{80,120},{130,120}}, color={0,127,255}));
+ connect(spl5.port_2, senTem2.port_a)
+ annotation (Line(points={{210,30},{210,0}}, color={0,127,255}));
+ connect(pipe.port_b, senTem4.port_a)
+ annotation (Line(points={{150,120},{180,120}}, color={0,127,255}));
+ connect(senTem4.port_b, spl5.port_1) annotation (Line(points={{200,120},{210,
+ 120},{210,50}}, color={0,127,255}));
+ connect(senTem2.T, yRetTem) annotation (Line(points={{221,-10},{250,-10},{250,
+ 60},{340,60}}, color={0,0,127}));
+ annotation (defaultComponentName="boiPla",
+ Documentation(info="
+
+ This model implements a primary-only, condensing boiler plant with a headered,
+ variable-speed primary pump, as defined in ASHRAE RP-1711, March 2020 draft.
+
+ ", revisions="
+
+ -
+ October 28, 2020, by Karthik Devaprasad:
+ First implementation.
+
+
+ "),
+ Diagram(coordinateSystem(preserveAspectRatio=false,
+ extent={{-320,-240},{320,240}})),
+ Icon(coordinateSystem(extent={{-100,-140},{100,140}}),
+ graphics={
+ Rectangle(
+ extent={{-100,140},{100,-140}},
+ lineColor={28,108,200},
+ fillColor={255,255,255},
+ fillPattern=FillPattern.Solid),
+ Text(
+ extent={{-100,-140},{100,-180}},
+ textColor={0,0,255},
+ textString="%name"),
+ Rectangle(
+ extent={{-40,-18},{40,-98}},
+ lineColor={0,0,255},
+ pattern=LinePattern.None,
+ fillColor={95,95,95},
+ fillPattern=FillPattern.Solid),
+ Rectangle(
+ extent={{-60,-54},{60,-60}},
+ lineColor={0,0,255},
+ pattern=LinePattern.None,
+ fillColor={0,0,255},
+ fillPattern=FillPattern.Solid),
+ Rectangle(
+ extent={{0,-60},{60,-54}},
+ lineColor={0,0,255},
+ pattern=LinePattern.None,
+ fillColor={255,0,0},
+ fillPattern=FillPattern.Solid),
+ Polygon(
+ points={{0,-80},{-12,-98},{14,-98},{0,-80}},
+ pattern=LinePattern.None,
+ smooth=Smooth.None,
+ fillColor={255,255,0},
+ fillPattern=FillPattern.Solid,
+ lineColor={0,0,0}),
+ Ellipse(extent={{-80,58},{-50,26}}, lineColor={28,108,200}),
+ Polygon(
+ points={{-80,40},{-50,40},{-66,58},{-80,40}},
+ lineColor={28,108,200},
+ fillColor={28,108,200},
+ fillPattern=FillPattern.Solid),
+ Line(points={{-66,-40},{-66,-12}}, color={28,108,200}),
+ Line(points={{-66,58},{-66,134}},color={28,108,200}),
+ Line(points={{70,132},{70,-44},{70,-50}},color={28,108,200}),
+ Polygon(points={{-80,26},{-80,26}}, lineColor={28,108,200}),
+ Polygon(
+ points={{-76,-12},{-54,-12},{-66,0},{-76,-12}},
+ lineColor={28,108,200},
+ fillColor={28,108,200},
+ fillPattern=FillPattern.Solid),
+ Polygon(
+ points={{-76,12},{-54,12},{-66,0},{-76,12}},
+ lineColor={28,108,200},
+ fillColor={28,108,200},
+ fillPattern=FillPattern.Solid),
+ Line(points={{-66,12},{-66,26}}, color={28,108,200}),
+ Ellipse(
+ extent={{-82,-40},{-52,-72}},
+ lineColor={28,108,200},
+ lineThickness=0.5),
+ Ellipse(
+ extent={{56,-38},{86,-70}},
+ lineColor={28,108,200},
+ lineThickness=0.5,
+ fillColor={28,108,200},
+ fillPattern=FillPattern.Solid)}));
+end BoilerPlant;
diff --git a/Buildings/Examples/BoilerPlant/Baseclasses/SimplifiedZoneWithRadiator.mo b/Buildings/Examples/BoilerPlant/Baseclasses/SimplifiedZoneWithRadiator.mo
new file mode 100644
index 00000000000..0d311f75a47
--- /dev/null
+++ b/Buildings/Examples/BoilerPlant/Baseclasses/SimplifiedZoneWithRadiator.mo
@@ -0,0 +1,147 @@
+within Buildings.Examples.BoilerPlant.Baseclasses;
+model SimplifiedZoneWithRadiator "Zone model"
+
+ replaceable package MediumW =Buildings.Media.Water
+ "Water medium model";
+
+ parameter Modelica.Units.SI.HeatFlowRate Q_flow_nominal = 4359751.36
+ "Nominal heat flow rate of radiator"
+ annotation(Dialog(group="Radiator"));
+
+ parameter Modelica.Units.SI.Temperature TRadSup_nominal = 273.15+70
+ "Radiator nominal supply water temperature"
+ annotation(Dialog(group="Radiator"));
+
+ parameter Modelica.Units.SI.Temperature TRadRet_nominal = 273.15+50
+ "Radiator nominal return water temperature"
+ annotation(Dialog(group="Radiator"));
+
+ parameter Modelica.Units.SI.MassFlowRate mRad_flow_nominal=0.000604*1000
+ "Radiator nominal mass flow rate"
+ annotation(Dialog(group="Radiator"));
+
+ parameter Modelica.Units.SI.PressureDifference dpRad_nominal = 0
+ "Nominal pressure drop across radiator"
+ annotation(Dialog(group="Radiator"));
+
+ parameter Modelica.Units.SI.Volume V=1200
+ "Room volume"
+ annotation(Dialog(group="Zone"));
+
+ parameter Real zonTheCap(
+ final unit="J/K",
+ displayUnit="J/K",
+ final quantity="HeatCapacity") = 2*V*1.2*1500+V*1.2*1006
+ "Zone thermal capacitance"
+ annotation(Dialog(group="Zone"));
+
+ parameter Modelica.Units.SI.Temperature TAir_nominal=273.15 + 23.9
+ "Air temperature at nominal condition"
+ annotation(Dialog(group="Zone"));
+
+ parameter Modelica.Units.SI.MassFlowRate mA_flow_nominal = V*1.2*6/3600
+ "Nominal mass flow rate"
+ annotation(Dialog(group="Zone"));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealInput QFlo
+ "Power added to zone"
+ annotation (Placement(transformation(extent={{-138,-20},{-98,20}}),
+ iconTransformation(extent={{-140,-20},{-100,20}})));
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealOutput TZon(
+ final unit="K",
+ displayUnit="degC",
+ final quantity="ThermodynamicTemperature")
+ "Measured zone temperature"
+ annotation (Placement(transformation(extent={{100,-20},{140,20}}),
+ iconTransformation(extent={{100,-20},{140,20}})));
+
+ Modelica.Fluid.Interfaces.FluidPort_a port_a(
+ redeclare package Medium = MediumW)
+ "HHW inlet port"
+ annotation (Placement(transformation(extent={{-50,-110},{-30,-90}}),
+ iconTransformation(extent={{-50,-110},{-30,-90}})));
+
+ Modelica.Fluid.Interfaces.FluidPort_b port_b(
+ redeclare package Medium = MediumW)
+ "HHW outlet port"
+ annotation (Placement(transformation(extent={{30,-110},{50,-90}}),
+ iconTransformation(extent={{30,-110},{50,-90}})));
+
+ Buildings.Fluid.HeatExchangers.Radiators.RadiatorEN442_2 rad(
+ redeclare package Medium = MediumW,
+ final m_flow_nominal=mRad_flow_nominal,
+ final energyDynamics=Modelica.Fluid.Types.Dynamics.FixedInitial,
+ final Q_flow_nominal=Q_flow_nominal,
+ final T_a_nominal=TRadSup_nominal,
+ final T_b_nominal=TRadRet_nominal,
+ final TAir_nominal=TAir_nominal,
+ final dp_nominal=dpRad_nominal)
+ "Radiator for zone heating loads"
+ annotation (Placement(transformation(extent={{-10,-60},{10,-40}})));
+
+ Modelica.Thermal.HeatTransfer.Sensors.TemperatureSensor zonTem
+ "Zone temperature sensor"
+ annotation (Placement(transformation(extent={{60,-10},{80,10}})));
+
+ Modelica.Thermal.HeatTransfer.Components.HeatCapacitor heaCap(
+ final C=zonTheCap,
+ final T(fixed=true))
+ "Heat capacity for furniture and walls"
+ annotation (Placement(transformation(extent={{-10,0},{10,20}})));
+
+ Modelica.Thermal.HeatTransfer.Sources.PrescribedHeatFlow preHea
+ "Apply heating load on the zone"
+ annotation (Placement(transformation(extent={{-58,-10},{-38,10}})));
+
+equation
+ connect(zonTem.T, TZon)
+ annotation (Line(points={{81,0},{120,0}}, color={0,0,127}));
+ connect(QFlo, preHea.Q_flow)
+ annotation (Line(points={{-118,0},{-58,0}}, color={0,0,127}));
+ connect(port_a, rad.port_a) annotation (Line(points={{-40,-100},{-40,-50},{-10,
+ -50}}, color={0,127,255}));
+ connect(port_b, rad.port_b) annotation (Line(points={{40,-100},{40,-50},{10,-50}},
+ color={0,127,255}));
+ connect(zonTem.port, heaCap.port) annotation (Line(points={{60,0},{0,0}},
+ color={191,0,0}));
+ connect(preHea.port, heaCap.port)
+ annotation (Line(points={{-38,0},{0,0}}, color={191,0,0}));
+ connect(rad.heatPortCon, heaCap.port)
+ annotation (Line(points={{-2,-42.8},{-2,0},{0,0}}, color={191,0,0}));
+ connect(rad.heatPortRad, heaCap.port)
+ annotation (Line(points={{2,-42.8},{2,0},{0,0}}, color={191,0,0}));
+ annotation (defaultComponentName="zon",
+ Icon(
+ coordinateSystem(
+ preserveAspectRatio=false,
+ extent={{-100,-100},{100,100}}),
+ graphics={Rectangle(
+ extent={{-100,100},{100,-100}},
+ lineColor={0,0,0},
+ fillColor={255,255,255},
+ fillPattern=FillPattern.Solid),
+ Text(
+ extent={{-100,140},{100,100}},
+ textColor={0,0,255},
+ textString="%name")}),
+ Diagram(
+ coordinateSystem(
+ preserveAspectRatio=false,
+ extent={{-100,-100},{100,100}})),
+ Documentation(info="
+
+ This is a simplified zone model consisting of a thermal capacitor zonTheCap
+ to represent the termal capacity of the zone. The heating load on the zone is
+ applied by the ideal source QFlo
and is met by the radiator
+ rad
.
+
+ ", revisions="
+
+ -
+ November 25, 2022, by Karthik Devaprasad:
+ First implementation.
+
+
+ "));
+end SimplifiedZoneWithRadiator;
diff --git a/Buildings/Examples/BoilerPlant/Baseclasses/package.mo b/Buildings/Examples/BoilerPlant/Baseclasses/package.mo
new file mode 100644
index 00000000000..4c31fd83920
--- /dev/null
+++ b/Buildings/Examples/BoilerPlant/Baseclasses/package.mo
@@ -0,0 +1,18 @@
+within Buildings.Examples.BoilerPlant;
+package Baseclasses "Package containing baseclasses for example model"
+ extends Modelica.Icons.BasesPackage;
+
+ annotation(Documentation(info="
+
+ This package contains the baseclasses for the boiler plant model
+
+ Buildings.Examples.BoilerPlant.Baseclasses.BoilerPlant and the simplified
+ thermal zone model
+
+ Buildings.Examples.BoilerPlant.Baseclasses.SimplifiedZoneWithRadiator
+ used to demonstrate the use of the implemented boiler plant controller
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Controller.
+
+ "));
+end Baseclasses;
diff --git a/Buildings/Examples/BoilerPlant/Baseclasses/package.order b/Buildings/Examples/BoilerPlant/Baseclasses/package.order
new file mode 100644
index 00000000000..33c8ea16744
--- /dev/null
+++ b/Buildings/Examples/BoilerPlant/Baseclasses/package.order
@@ -0,0 +1,2 @@
+BoilerPlant
+SimplifiedZoneWithRadiator
diff --git a/Buildings/Examples/BoilerPlant/ClosedLoopTest.mo b/Buildings/Examples/BoilerPlant/ClosedLoopTest.mo
new file mode 100644
index 00000000000..047c1d69c28
--- /dev/null
+++ b/Buildings/Examples/BoilerPlant/ClosedLoopTest.mo
@@ -0,0 +1,307 @@
+within Buildings.Examples.BoilerPlant;
+model ClosedLoopTest "Closed loop testing model"
+ extends Modelica.Icons.Example;
+
+ replaceable package MediumA = Buildings.Media.Air
+ "Medium model";
+
+ replaceable package MediumW = Buildings.Media.Water
+ "Medium model";
+
+ parameter Modelica.Units.SI.MassFlowRate mRad_flow_nominal=113.45
+ "Radiator nominal mass flow rate";
+
+ parameter Real boiDesCap(
+ final unit="W",
+ displayUnit="W",
+ final quantity="Power")= 5134933.83
+ "Total boiler plant design capacity";
+
+ parameter Real boiCapRat(
+ final unit="1",
+ displayUnit="1") = 0.4
+ "Ratio of boiler-1 capacity to total capacity";
+
+ Buildings.Examples.BoilerPlant.Baseclasses.BoilerPlant boiPla(
+ final Q_flow_nominal=boiDesCap,
+ final boiCap1=(1 - boiCapRat)*boiDesCap,
+ final boiCap2=boiCapRat*boiDesCap,
+ final mSec_flow_nominal=mRad_flow_nominal,
+ final TBoiSup_nominal=333.15,
+ final TBoiRet_min=323.15,
+ final dpValve_nominal_value=20000,
+ final dpFixed_nominal_value=1000,
+ final controllerTypeBoi1=Buildings.Controls.OBC.CDL.Types.SimpleController.PI,
+ final controllerTypeBoi2=Buildings.Controls.OBC.CDL.Types.SimpleController.PI)
+ "Boiler plant model"
+ annotation (Placement(transformation(extent={{40,-14},{60,14}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Controller boiPlaCon(
+ final controllerType_priPum=Buildings.Controls.OBC.CDL.Types.SimpleController.PI,
+ final controllerType_bypVal=Buildings.Controls.OBC.CDL.Types.SimpleController.PI,
+ final have_priOnl=true,
+ final have_heaPriPum=true,
+ final have_varPriPum=true,
+ final have_varSecPum=false,
+ final nSenPri=1,
+ final nPumPri_nominal=1,
+ final nPumSec=0,
+ final nSenSec=0,
+ final nPumSec_nominal=0,
+ final TPlaHotWatSetMax=273.15 + 50,
+ final triAmoVal=-1.111,
+ final resAmoVal=1.667,
+ final maxResVal=3.889,
+ final VHotWatPri_flow_nominal=0.02,
+ final maxLocDpPri=50000,
+ final minLocDpPri=50000,
+ final VHotWatSec_flow_nominal=1e-6,
+ final nBoi=2,
+ final boiTyp={Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Types.BoilerTypes.condensingBoiler,
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Types.BoilerTypes.condensingBoiler},
+ final nSta=3,
+ final staMat=[1,0; 0,1; 1,1],
+ final boiDesCap={boiCapRat*boiDesCap*0.8,(1 - boiCapRat)*boiDesCap*0.8},
+ final boiFirMin={0.2,0.3},
+ final minFloSet={0.2*boiCapRat*mRad_flow_nominal/2000,0.3*(1 - boiCapRat)*mRad_flow_nominal/2000},
+ final maxFloSet={boiCapRat*mRad_flow_nominal/2000,(1 - boiCapRat)*mRad_flow_nominal/2000},
+ final bypSetRat=0.000005,
+ final nPumPri=1,
+ final TMinSupNonConBoi=333.2,
+ final k_bypVal=1,
+ final Ti_bypVal=90,
+ final Td_bypVal=10e-9,
+ final boiDesFlo=boiPlaCon.maxFloSet,
+ final k_priPum=0.1,
+ final Ti_priPum=75,
+ final Td_priPum=10e-9,
+ final minPriPumSpeSta={0,0,0},
+ final speConTypPri=Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Types.PrimaryPumpSpeedControlTypes.remoteDP)
+ "Boiler plant controller"
+ annotation (Placement(transformation(extent={{-40,-34},{-20,34}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.PID conPID(
+ final controllerType=Buildings.Controls.OBC.CDL.Types.SimpleController.PI,
+ final k=10e-2,
+ final Ti=300)
+ "Radiator valve controller"
+ annotation (Placement(transformation(extent={{50,100},{70,120}})));
+
+ Buildings.Examples.BoilerPlant.Baseclasses.SimplifiedZoneWithRadiator zon(
+ final Q_flow_nominal=4359751.36,
+ final TRadSup_nominal=333.15,
+ final TRadRet_nominal=323.15,
+ final mRad_flow_nominal=96.323,
+ dpRad_nominal(displayUnit="Pa") = 40000,
+ final V=126016.35,
+ final zonTheCap=6987976290)
+ "Zone thermal model with radiator"
+ annotation (Placement(transformation(extent={{40,60},{60,80}})));
+
+ Buildings.Fluid.Actuators.Valves.TwoWayLinear val(
+ redeclare package Medium = Media.Water,
+ final m_flow_nominal=mRad_flow_nominal,
+ final dpValve_nominal(displayUnit="bar") = 20000,
+ final dpFixed_nominal(displayUnit="bar") = 1000)
+ "Minimum flow bypass valve"
+ annotation (Placement(transformation(extent={{-10,-10},{10,10}},
+ rotation=90,
+ origin={44,38})));
+
+protected
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant con3[2](
+ final k=fill(true,2))
+ "Constant boiler availability status"
+ annotation (Placement(transformation(extent={{-110,-10},{-90,10}})));
+
+ Buildings.BoundaryConditions.WeatherData.ReaderTMY3 weaDat(
+ final filNam=Modelica.Utilities.Files.loadResource("modelica://Buildings/Resources/weatherdata/USA_IL_Chicago-OHare.Intl.AP.725300_TMY3.mos"))
+ "Weather data reader"
+ annotation (Placement(transformation(extent={{-120,50},{-100,70}})));
+
+ Buildings.BoundaryConditions.WeatherData.Bus weaBus
+ "Weather bus"
+ annotation (Placement(transformation(extent={{-90,50},{-70,70}}),
+ iconTransformation(extent={{-60,50},{-40,70}})));
+
+ Modelica.Blocks.Sources.CombiTimeTable timTab(
+ final tableOnFile=true,
+ final tableName="tab1",
+ final fileName=ModelicaServices.ExternalReferences.loadResource(
+ "modelica://Buildings/Resources/Data/Examples/BoilerPlant/ClosedLoopTest.txt"),
+ final columns={2,5},
+ final extrapolation=Modelica.Blocks.Types.Extrapolation.Periodic,
+ final smoothness=Modelica.Blocks.Types.Smoothness.LinearSegments,
+ final table=[-6,0;8,10000;18,0],
+ final timeScale=60)
+ "Time table for internal heat gain"
+ annotation (Placement(transformation(extent={{-100,90},{-80,110}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Hysteresis hys(
+ final uLow=0.05,
+ final uHigh=0.1)
+ "Check if radiator control valve opening is above threshold for enabling boiler plant"
+ annotation (Placement(transformation(extent={{80,100},{100,120}})));
+
+ Buildings.Controls.OBC.CDL.Conversions.BooleanToInteger booToInt
+ "Boolean to Integer conversion"
+ annotation (Placement(transformation(extent={{160,100},{180,120}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.Hysteresis hys1(
+ final uLow=0.85,
+ final uHigh=0.9)
+ "Check if radiator control valve opening is above threshold for rasing HHW supply temperature"
+ annotation (Placement(transformation(extent={{90,20},{110,40}})));
+
+ Buildings.Controls.OBC.CDL.Conversions.BooleanToInteger booToInt1(
+ final integerTrue=3)
+ "Boolean to Integer conversion"
+ annotation (Placement(transformation(extent={{150,20},{170,40}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.MultiplyByParameter gai(
+ final k=-1)
+ "Convert to heating load"
+ annotation (Placement(transformation(extent={{-60,90},{-40,110}})));
+
+ Buildings.Controls.OBC.CDL.Continuous.AddParameter addPar(
+ final p=273.15)
+ "Convert temperature to Kelvin"
+ annotation (Placement(transformation(extent={{-40,110},{-20,130}})));
+
+equation
+
+ connect(con3.y, boiPlaCon.uBoiAva) annotation (Line(points={{-88,0},{-60,0},{-60,
+ 8},{-42,8}}, color={255,0,255}));
+
+ connect(weaDat.weaBus,weaBus) annotation (Line(
+ points={{-100,60},{-80,60}},
+ color={255,204,51},
+ thickness=0.5,
+ smooth=Smooth.None), Text(
+ textString="%second",
+ index=1,
+ extent={{6,3},{6,3}}));
+
+ connect(weaBus.TDryBul, boiPlaCon.TOut) annotation (Line(
+ points={{-80,60},{-72,60},{-72,26},{-42,26}},
+ color={255,204,51},
+ thickness=0.5), Text(
+ string="%first",
+ index=-1,
+ extent={{-6,3},{-6,3}},
+ horizontalAlignment=TextAlignment.Right));
+
+ connect(boiPla.ySupTem, boiPlaCon.TSupPri) annotation (Line(points={{62,8},{100,
+ 8},{100,-68},{-68,-68},{-68,23},{-42,23}}, color={0,0,127}));
+
+ connect(boiPla.yRetTem, boiPlaCon.TRetPri) annotation (Line(points={{62,5},{104,
+ 5},{104,-72},{-72,-72},{-72,20},{-42,20}}, color={0,0,127}));
+
+ connect(boiPla.yHotWatDp, boiPlaCon.dpHotWatPri_rem) annotation (Line(points={
+ {62,2},{108,2},{108,-76},{-76,-76},{-76,11},{-42,11}}, color={0,0,127}));
+
+ connect(boiPla.VHotWat_flow, boiPlaCon.VHotWatPri_flow) annotation (Line(
+ points={{62,-2},{112,-2},{112,-80},{-80,-80},{-80,17},{-42,17}}, color={
+ 0,0,127}));
+
+
+ connect(boiPla.yBoiSta, boiPlaCon.uBoi) annotation (Line(points={{62,-5},{120,
+ -5},{120,-88},{-88,-88},{-88,-17},{-42,-17}}, color={255,0,255}));
+
+ connect(boiPla.yPumSta, boiPlaCon.uPriPum) annotation (Line(points={{62,-8},{124,
+ -8},{124,-92},{-92,-92},{-92,-20},{-42,-20}}, color={255,0,255}));
+
+ connect(boiPla.yHotWatIsoVal, boiPlaCon.uHotWatIsoVal) annotation (Line(
+ points={{62,-11},{128,-11},{128,-96},{-96,-96},{-96,-26},{-42,-26}},
+ color={0,0,127}));
+
+ connect(conPID.y, hys.u) annotation (Line(points={{72,110},{78,110}},
+ color={0,0,127}));
+
+ connect(conPID.y, hys1.u) annotation (Line(points={{72,110},{76,110},{76,30},{
+ 88,30}},
+ color={0,0,127}));
+
+ connect(booToInt1.y, boiPlaCon.TSupResReq) annotation (Line(points={{172,30},{
+ 184,30},{184,-104},{-54,-104},{-54,32},{-42,32}}, color={255,127,0}));
+
+ connect(hys.y, booToInt.u)
+ annotation (Line(points={{102,110},{158,110}}, color={255,0,255}));
+
+ connect(hys1.y, booToInt1.u)
+ annotation (Line(points={{112,30},{148,30}}, color={255,0,255}));
+
+ connect(timTab.y[1], gai.u)
+ annotation (Line(points={{-79,100},{-62,100}}, color={0,0,127}));
+
+ connect(timTab.y[2], addPar.u) annotation (Line(points={{-79,100},{-70,100},{
+ -70,120},{-42,120}}, color={0,0,127}));
+
+ connect(addPar.y, conPID.u_s) annotation (Line(points={{-18,120},{40,120},{40,
+ 110},{48,110}},
+ color={0,0,127}));
+
+ connect(booToInt.y, boiPlaCon.plaReq) annotation (Line(points={{182,110},{190,
+ 110},{190,-100},{-48,-100},{-48,29},{-42,29}}, color={255,127,0}));
+ connect(boiPla.port_a, zon.port_b) annotation (Line(points={{57,14},{56,14},{56,
+ 60},{54,60}}, color={0,127,255}));
+ connect(zon.TZon, conPID.u_m) annotation (Line(points={{62,70},{68,70},{68,90},
+ {60,90},{60,98}}, color={0,0,127}));
+ connect(gai.y, zon.QFlo) annotation (Line(points={{-38,100},{30,100},{30,70},{
+ 38,70}}, color={0,0,127}));
+ connect(boiPla.yBypValPos, boiPlaCon.uBypValPos) annotation (Line(points={{62,
+ 11},{116,11},{116,-84},{-84,-84},{-84,-29},{-42,-29}}, color={0,0,127}));
+ connect(boiPlaCon.yPla, boiPla.uPla) annotation (Line(points={{-18,18},{20,18},
+ {20,12},{38,12}}, color={255,0,255}));
+ connect(boiPlaCon.yPriPum, boiPla.uPumSta) annotation (Line(points={{-18,-6},{
+ 20,-6},{20,3},{38,3}}, color={255,0,255}));
+ connect(boiPlaCon.yBoi, boiPla.uBoiSta)
+ annotation (Line(points={{-18,10},{38,10},{38,9}}, color={255,0,255}));
+ connect(boiPlaCon.TPlaHotWatSupSet, boiPla.TPlaHotWatSupSet) annotation (Line(
+ points={{-18,14},{18,14},{18,-12},{38,-12}}, color={0,0,127}));
+ connect(boiPlaCon.TBoiHotWatSupSet, boiPla.TBoiHotWatSupSet) annotation (Line(
+ points={{-18,6},{10,6},{10,-9},{38,-9}}, color={0,0,127}));
+ connect(boiPlaCon.yHotWatIsoVal, boiPla.uHotIsoVal)
+ annotation (Line(points={{-18,2},{16,2},{16,6},{38,6}}, color={0,0,127}));
+ connect(boiPlaCon.yPriPumSpe, boiPla.uPumSpe) annotation (Line(points={{-18,-10},
+ {14,-10},{14,0},{38,0}}, color={0,0,127}));
+ connect(boiPlaCon.yBypValPos, boiPla.uBypValSig) annotation (Line(points={{-18,
+ -2},{6,-2},{6,-3},{38,-3}}, color={0,0,127}));
+ connect(zon.TZon, boiPla.TZon) annotation (Line(points={{62,70},{68,70},{68,20},
+ {30,20},{30,-6},{38,-6}}, color={0,0,127}));
+ connect(boiPla.port_b, val.port_a)
+ annotation (Line(points={{43,14},{44,14},{44,28}}, color={0,127,255}));
+ connect(val.port_b, zon.port_a)
+ annotation (Line(points={{44,48},{44,60},{46,60}}, color={0,127,255}));
+ connect(conPID.y, val.y) annotation (Line(points={{72,110},{76,110},{76,86},{20,
+ 86},{20,38},{32,38}}, color={0,0,127}));
+ annotation (Documentation(info="
+
+This model couples the boiler plant model for a primary-only, condensing boiler
+plant with a headered variable pump
+
+Buildings.Examples.BoilerPlant.PlantModel.BoilerPlant with the boiler plant
+controller
+Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Controller developed
+as per ASHRAE RP-1711, March 2020 draft.
+
+", revisions="
+
+-
+November 6, 2020, by Karthik Devaprasad:
+First implementation.
+
+
+"),
+ Diagram(coordinateSystem(preserveAspectRatio=false,extent={{-140,-140},{200,
+ 140}})),
+ __Dymola_Commands(file=
+ "modelica://Buildings/Resources/Scripts/Dymola/Examples/BoilerPlant/ClosedLoopTest.mos"
+ "Simulate and plot"),
+ experiment(
+ StartTime=518400,
+ StopTime=691200,
+ Interval=60,
+ Tolerance=1e-06),
+ Icon(coordinateSystem(extent={{-100,-100},{100,100}})));
+end ClosedLoopTest;
diff --git a/Buildings/Examples/BoilerPlant/package.mo b/Buildings/Examples/BoilerPlant/package.mo
new file mode 100644
index 00000000000..15350a6a88e
--- /dev/null
+++ b/Buildings/Examples/BoilerPlant/package.mo
@@ -0,0 +1,19 @@
+within Buildings.Examples;
+package BoilerPlant "Closed-loop validation model for boiler plant sequences implemented as per ASHRAE G36"
+
+
+extends Modelica.Icons.ExamplesPackage;
+
+
+annotation (Documentation(info="
+System Configuration
+This example demonstrates the implementation of a primary-only boiler plant
+with condensing boilers and headered primary variable pump couped with a controller
+implemented as per the sequence of operations defined in ASHRAE RP-1711.
+The boiler plant schematic is as shown below.
+
+
+
+
+"));
+end BoilerPlant;
diff --git a/Buildings/Examples/BoilerPlant/package.order b/Buildings/Examples/BoilerPlant/package.order
new file mode 100644
index 00000000000..185c7a86ca8
--- /dev/null
+++ b/Buildings/Examples/BoilerPlant/package.order
@@ -0,0 +1,2 @@
+ClosedLoopTest
+Baseclasses
diff --git a/Buildings/Examples/ChillerPlant/package.order b/Buildings/Examples/ChillerPlant/package.order
deleted file mode 100644
index 8b8f6051ce5..00000000000
--- a/Buildings/Examples/ChillerPlant/package.order
+++ /dev/null
@@ -1,4 +0,0 @@
-DataCenterContinuousTimeControl
-DataCenterDiscreteTimeControl
-DataCenterRenewables
-BaseClasses
diff --git a/Buildings/Examples/ChillerPlant/BaseClasses/Controls/BatteryControl.mo b/Buildings/Examples/ChillerPlants/DataCenter/BaseClasses/Controls/BatteryControl.mo
similarity index 99%
rename from Buildings/Examples/ChillerPlant/BaseClasses/Controls/BatteryControl.mo
rename to Buildings/Examples/ChillerPlants/DataCenter/BaseClasses/Controls/BatteryControl.mo
index 6a575fbd540..1cc727b92c0 100644
--- a/Buildings/Examples/ChillerPlant/BaseClasses/Controls/BatteryControl.mo
+++ b/Buildings/Examples/ChillerPlants/DataCenter/BaseClasses/Controls/BatteryControl.mo
@@ -1,4 +1,4 @@
-within Buildings.Examples.ChillerPlant.BaseClasses.Controls;
+within Buildings.Examples.ChillerPlants.DataCenter.BaseClasses.Controls;
model BatteryControl "Controller for battery"
Modelica.Blocks.Interfaces.RealInput SOC "State of charge" annotation (
diff --git a/Buildings/Examples/ChillerPlant/BaseClasses/Controls/ChillerSwitch.mo b/Buildings/Examples/ChillerPlants/DataCenter/BaseClasses/Controls/ChillerSwitch.mo
similarity index 98%
rename from Buildings/Examples/ChillerPlant/BaseClasses/Controls/ChillerSwitch.mo
rename to Buildings/Examples/ChillerPlants/DataCenter/BaseClasses/Controls/ChillerSwitch.mo
index a96c0141dbe..8947bc19f1c 100644
--- a/Buildings/Examples/ChillerPlant/BaseClasses/Controls/ChillerSwitch.mo
+++ b/Buildings/Examples/ChillerPlants/DataCenter/BaseClasses/Controls/ChillerSwitch.mo
@@ -1,4 +1,4 @@
-within Buildings.Examples.ChillerPlant.BaseClasses.Controls;
+within Buildings.Examples.ChillerPlants.DataCenter.BaseClasses.Controls;
block ChillerSwitch "Control unit for enabling/disabling chiller"
extends Modelica.Blocks.Icons.Block;
Modelica.Blocks.Interfaces.RealInput chiCHWST(
diff --git a/Buildings/Examples/ChillerPlant/BaseClasses/Controls/Examples/BatteryControl.mo b/Buildings/Examples/ChillerPlants/DataCenter/BaseClasses/Controls/Examples/BatteryControl.mo
similarity index 79%
rename from Buildings/Examples/ChillerPlant/BaseClasses/Controls/Examples/BatteryControl.mo
rename to Buildings/Examples/ChillerPlants/DataCenter/BaseClasses/Controls/Examples/BatteryControl.mo
index 359be944fc2..b24b35d5957 100644
--- a/Buildings/Examples/ChillerPlant/BaseClasses/Controls/Examples/BatteryControl.mo
+++ b/Buildings/Examples/ChillerPlants/DataCenter/BaseClasses/Controls/Examples/BatteryControl.mo
@@ -1,7 +1,7 @@
-within Buildings.Examples.ChillerPlant.BaseClasses.Controls.Examples;
+within Buildings.Examples.ChillerPlants.DataCenter.BaseClasses.Controls.Examples;
model BatteryControl "Test model for battery control"
extends Modelica.Icons.Example;
- Buildings.Examples.ChillerPlant.BaseClasses.Controls.BatteryControl
+ Buildings.Examples.ChillerPlants.DataCenter.BaseClasses.Controls.BatteryControl
con "Battery control"
annotation (Placement(transformation(extent={{0,0},{20,20}})));
Modelica.Blocks.Sources.Sine SOC(
@@ -19,7 +19,7 @@ equation
StopTime=604800,
Tolerance=1e-6),
__Dymola_Commands(file=
- "modelica://Buildings/Resources/Scripts/Dymola/Examples/ChillerPlant/BaseClasses/Controls/Examples/BatteryControl.mos"
+ "modelica://Buildings/Resources/Scripts/Dymola/Examples/ChillerPlants/DataCenter/BaseClasses/Controls/Examples/BatteryControl.mos"
"Simulate and plot"),
Documentation(revisions="
diff --git a/Buildings/Examples/ChillerPlant/BaseClasses/Controls/Examples/ChillerSetPointControl.mo b/Buildings/Examples/ChillerPlants/DataCenter/BaseClasses/Controls/Examples/ChillerSetPointControl.mo
similarity index 96%
rename from Buildings/Examples/ChillerPlant/BaseClasses/Controls/Examples/ChillerSetPointControl.mo
rename to Buildings/Examples/ChillerPlants/DataCenter/BaseClasses/Controls/Examples/ChillerSetPointControl.mo
index bb0e7566329..c8d8ce17016 100644
--- a/Buildings/Examples/ChillerPlant/BaseClasses/Controls/Examples/ChillerSetPointControl.mo
+++ b/Buildings/Examples/ChillerPlants/DataCenter/BaseClasses/Controls/Examples/ChillerSetPointControl.mo
@@ -1,4 +1,4 @@
-within Buildings.Examples.ChillerPlant.BaseClasses.Controls.Examples;
+within Buildings.Examples.ChillerPlants.DataCenter.BaseClasses.Controls.Examples;
model ChillerSetPointControl
"Test model for chiller setpoint control using TrimAndResponse and LinearPieceWiseTwo"
extends Modelica.Icons.Example;
@@ -14,14 +14,15 @@ model ChillerSetPointControl
COPc_nominal*(COPc_nominal + 1)
"Nominal mass flow rate at condenser water";
parameter Real QRoo=100;
- Buildings.Examples.ChillerPlant.BaseClasses.Controls.TrimAndRespond triAndRes(
+ Buildings.Examples.ChillerPlants.DataCenter.BaseClasses.Controls.TrimAndRespond
+ triAndRes(
yEqu0=0.1,
uTri=0.8,
yDec=-0.03,
yInc=0.03,
samplePeriod=120)
annotation (Placement(transformation(extent={{-100,20},{-80,40}})));
- Buildings.Examples.ChillerPlant.BaseClasses.Controls.LinearPiecewiseTwo
+ Buildings.Examples.ChillerPlants.DataCenter.BaseClasses.Controls.LinearPiecewiseTwo
linPieTwo(
x0=0,
x2=1,
@@ -206,7 +207,7 @@ equation
Diagram(coordinateSystem(preserveAspectRatio=false,extent={{-200,-200},{200,
200}}), graphics),
__Dymola_Commands(file=
- "modelica://Buildings/Resources/Scripts/Dymola/Examples/ChillerPlant/BaseClasses/Controls/Examples/ChillerSetPointControl.mos"
+ "modelica://Buildings/Resources/Scripts/Dymola/Examples/ChillerPlants/DataCenter/BaseClasses/Controls/Examples/ChillerSetPointControl.mos"
"Simulate and plot"),
experiment(
StopTime=86400,
diff --git a/Buildings/Examples/ChillerPlant/BaseClasses/Controls/Examples/ChillerSwitch.mo b/Buildings/Examples/ChillerPlants/DataCenter/BaseClasses/Controls/Examples/ChillerSwitch.mo
similarity index 81%
rename from Buildings/Examples/ChillerPlant/BaseClasses/Controls/Examples/ChillerSwitch.mo
rename to Buildings/Examples/ChillerPlants/DataCenter/BaseClasses/Controls/Examples/ChillerSwitch.mo
index d8999164ef7..c6464aed5ac 100644
--- a/Buildings/Examples/ChillerPlant/BaseClasses/Controls/Examples/ChillerSwitch.mo
+++ b/Buildings/Examples/ChillerPlants/DataCenter/BaseClasses/Controls/Examples/ChillerSwitch.mo
@@ -1,4 +1,4 @@
-within Buildings.Examples.ChillerPlant.BaseClasses.Controls.Examples;
+within Buildings.Examples.ChillerPlants.DataCenter.BaseClasses.Controls.Examples;
model ChillerSwitch "Test model for ChillerSwitch"
extends Modelica.Icons.Example;
Modelica.Blocks.Sources.Sine TSet(
@@ -11,8 +11,8 @@ model ChillerSwitch "Test model for ChillerSwitch"
amplitude=5,
offset=15)
annotation (Placement(transformation(extent={{-60,20},{-40,40}})));
- Buildings.Examples.ChillerPlant.BaseClasses.Controls.ChillerSwitch chiSwi(
- deaBan(displayUnit="K") = 3)
+ Buildings.Examples.ChillerPlants.DataCenter.BaseClasses.Controls.ChillerSwitch
+ chiSwi(deaBan(displayUnit="K") = 3)
annotation (Placement(transformation(extent={{0,0},{20,20}})));
equation
connect(TSet.y, chiSwi.TSet) annotation (Line(
@@ -25,7 +25,7 @@ equation
smooth=Smooth.None));
annotation (
__Dymola_Commands(file=
- "modelica://Buildings/Resources/Scripts/Dymola/Examples/ChillerPlant/BaseClasses/Controls/Examples/ChillerSwitch.mos"
+ "modelica://Buildings/Resources/Scripts/Dymola/Examples/ChillerPlants/DataCenter/BaseClasses/Controls/Examples/ChillerSwitch.mos"
"Simulate and plot"),
experiment(
StopTime=86400,
diff --git a/Buildings/Examples/ChillerPlant/BaseClasses/Controls/Examples/KMinusU.mo b/Buildings/Examples/ChillerPlants/DataCenter/BaseClasses/Controls/Examples/KMinusU.mo
similarity index 79%
rename from Buildings/Examples/ChillerPlant/BaseClasses/Controls/Examples/KMinusU.mo
rename to Buildings/Examples/ChillerPlants/DataCenter/BaseClasses/Controls/Examples/KMinusU.mo
index f99f411709b..386c3eb629d 100644
--- a/Buildings/Examples/ChillerPlant/BaseClasses/Controls/Examples/KMinusU.mo
+++ b/Buildings/Examples/ChillerPlants/DataCenter/BaseClasses/Controls/Examples/KMinusU.mo
@@ -1,4 +1,4 @@
-within Buildings.Examples.ChillerPlant.BaseClasses.Controls.Examples;
+within Buildings.Examples.ChillerPlants.DataCenter.BaseClasses.Controls.Examples;
model KMinusU "Test model for KMinusU"
extends Modelica.Icons.Example;
Modelica.Blocks.Sources.Sine pulse(
@@ -7,7 +7,7 @@ model KMinusU "Test model for KMinusU"
offset=0.5,
phase=-1.5707963267949)
annotation (Placement(transformation(extent={{-80,0},{-60,20}})));
- Buildings.Examples.ChillerPlant.BaseClasses.Controls.KMinusU kMinU(k=1)
+ Buildings.Examples.ChillerPlants.DataCenter.BaseClasses.Controls.KMinusU kMinU(k=1)
annotation (Placement(transformation(extent={{-20,0},{0,20}})));
equation
connect(pulse.y, kMinU.u) annotation (Line(
@@ -16,7 +16,7 @@ equation
smooth=Smooth.None));
annotation (
__Dymola_Commands(file=
- "modelica://Buildings/Resources/Scripts/Dymola/Examples/ChillerPlant/BaseClasses/Controls/Examples/KMinusU.mos"
+ "modelica://Buildings/Resources/Scripts/Dymola/Examples/ChillerPlants/DataCenter/BaseClasses/Controls/Examples/KMinusU.mos"
"Simulate and plot"),
experiment(
StopTime=3600,
diff --git a/Buildings/Examples/ChillerPlant/BaseClasses/Controls/Examples/LinearPiecewiseTwo.mo b/Buildings/Examples/ChillerPlants/DataCenter/BaseClasses/Controls/Examples/LinearPiecewiseTwo.mo
similarity index 80%
rename from Buildings/Examples/ChillerPlant/BaseClasses/Controls/Examples/LinearPiecewiseTwo.mo
rename to Buildings/Examples/ChillerPlants/DataCenter/BaseClasses/Controls/Examples/LinearPiecewiseTwo.mo
index 936dca29321..0a2508e56e6 100644
--- a/Buildings/Examples/ChillerPlant/BaseClasses/Controls/Examples/LinearPiecewiseTwo.mo
+++ b/Buildings/Examples/ChillerPlants/DataCenter/BaseClasses/Controls/Examples/LinearPiecewiseTwo.mo
@@ -1,4 +1,4 @@
-within Buildings.Examples.ChillerPlant.BaseClasses.Controls.Examples;
+within Buildings.Examples.ChillerPlants.DataCenter.BaseClasses.Controls.Examples;
model LinearPiecewiseTwo "Test model for LinearPiecewiseTwo"
extends Modelica.Icons.Example;
Modelica.Blocks.Sources.Sine pulse(
@@ -7,7 +7,7 @@ model LinearPiecewiseTwo "Test model for LinearPiecewiseTwo"
offset=0.5,
phase=-1.5707963267949)
annotation (Placement(transformation(extent={{-80,0},{-60,20}})));
- Buildings.Examples.ChillerPlant.BaseClasses.Controls.LinearPiecewiseTwo
+ Buildings.Examples.ChillerPlants.DataCenter.BaseClasses.Controls.LinearPiecewiseTwo
linPieTwo(
x0=0,
x1=0.5,
@@ -23,7 +23,7 @@ equation
smooth=Smooth.None));
annotation (
__Dymola_Commands(file=
- "modelica://Buildings/Resources/Scripts/Dymola/Examples/ChillerPlant/BaseClasses/Controls/Examples/LinearPiecewiseTwo.mos"
+ "modelica://Buildings/Resources/Scripts/Dymola/Examples/ChillerPlants/DataCenter/BaseClasses/Controls/Examples/LinearPiecewiseTwo.mos"
"Simulate and plot"),
experiment(
StopTime=86400,
diff --git a/Buildings/Examples/ChillerPlant/BaseClasses/Controls/Examples/RequestCounter.mo b/Buildings/Examples/ChillerPlants/DataCenter/BaseClasses/Controls/Examples/RequestCounter.mo
similarity index 83%
rename from Buildings/Examples/ChillerPlant/BaseClasses/Controls/Examples/RequestCounter.mo
rename to Buildings/Examples/ChillerPlants/DataCenter/BaseClasses/Controls/Examples/RequestCounter.mo
index e6d6ab52eb1..1d3528f548c 100644
--- a/Buildings/Examples/ChillerPlant/BaseClasses/Controls/Examples/RequestCounter.mo
+++ b/Buildings/Examples/ChillerPlants/DataCenter/BaseClasses/Controls/Examples/RequestCounter.mo
@@ -1,8 +1,8 @@
-within Buildings.Examples.ChillerPlant.BaseClasses.Controls.Examples;
+within Buildings.Examples.ChillerPlants.DataCenter.BaseClasses.Controls.Examples;
model RequestCounter "Test model for RequestCounter"
extends Modelica.Icons.Example;
- Buildings.Examples.ChillerPlant.BaseClasses.Controls.RequestCounter reqCou(
- nAct=3, uTri=0.8)
+ Buildings.Examples.ChillerPlants.DataCenter.BaseClasses.Controls.RequestCounter
+ reqCou(nAct=3, uTri=0.8)
annotation (Placement(transformation(extent={{-20,0},{0,20}})));
Modelica.Blocks.Sources.Constant act3(k=0.95)
annotation (Placement(transformation(extent={{-80,-40},{-60,-20}})));
@@ -25,7 +25,7 @@ equation
smooth=Smooth.None));
annotation (
__Dymola_Commands(file=
- "modelica://Buildings/Resources/Scripts/Dymola/Examples/ChillerPlant/BaseClasses/Controls/Examples/RequestCounter.mos"
+ "modelica://Buildings/Resources/Scripts/Dymola/Examples/ChillerPlants/DataCenter/BaseClasses/Controls/Examples/RequestCounter.mos"
"Simulate and plot"),
experiment(
StopTime=600,
diff --git a/Buildings/Examples/ChillerPlant/BaseClasses/Controls/Examples/TrimAndRespond.mo b/Buildings/Examples/ChillerPlants/DataCenter/BaseClasses/Controls/Examples/TrimAndRespond.mo
similarity index 81%
rename from Buildings/Examples/ChillerPlant/BaseClasses/Controls/Examples/TrimAndRespond.mo
rename to Buildings/Examples/ChillerPlants/DataCenter/BaseClasses/Controls/Examples/TrimAndRespond.mo
index 1f87f29a054..171786150b7 100644
--- a/Buildings/Examples/ChillerPlant/BaseClasses/Controls/Examples/TrimAndRespond.mo
+++ b/Buildings/Examples/ChillerPlants/DataCenter/BaseClasses/Controls/Examples/TrimAndRespond.mo
@@ -1,4 +1,4 @@
-within Buildings.Examples.ChillerPlant.BaseClasses.Controls.Examples;
+within Buildings.Examples.ChillerPlants.DataCenter.BaseClasses.Controls.Examples;
model TrimAndRespond "Test model for TrimAndRespond"
extends Modelica.Icons.Example;
@@ -8,12 +8,14 @@ model TrimAndRespond "Test model for TrimAndRespond"
annotation (Placement(transformation(extent={{-80,60},{-60,80}})));
Modelica.Blocks.Sources.Sine act2(f=0.001, offset=0.3)
annotation (Placement(transformation(extent={{-80,20},{-60,40}})));
- Buildings.Examples.ChillerPlant.BaseClasses.Controls.TrimAndRespond triAndRes[3](
+ Buildings.Examples.ChillerPlants.DataCenter.BaseClasses.Controls.TrimAndRespond
+ triAndRes[3](
each uTri=0.9,
each yEqu0=0.1,
each yDec=-0.01,
each yInc=0.02,
- each samplePeriod=20) annotation (Placement(transformation(extent={{0,20},{20,40}})));
+ each samplePeriod=20)
+ annotation (Placement(transformation(extent={{0,20},{20,40}})));
equation
connect(act1.y, triAndRes[1].u) annotation (Line(
points={{-59,70},{-30,70},{-30,30},{-2,30}},
@@ -29,7 +31,7 @@ equation
smooth=Smooth.None));
annotation (
__Dymola_Commands(file=
- "modelica://Buildings/Resources/Scripts/Dymola/Examples/ChillerPlant/BaseClasses/Controls/Examples/TrimAndRespond.mos"
+ "modelica://Buildings/Resources/Scripts/Dymola/Examples/ChillerPlants/DataCenter/BaseClasses/Controls/Examples/TrimAndRespond.mos"
"Simulate and plot"),
experiment(
StopTime=3600,
diff --git a/Buildings/Examples/ChillerPlant/BaseClasses/Controls/Examples/WSEControl.mo b/Buildings/Examples/ChillerPlants/DataCenter/BaseClasses/Controls/Examples/WSEControl.mo
similarity index 89%
rename from Buildings/Examples/ChillerPlant/BaseClasses/Controls/Examples/WSEControl.mo
rename to Buildings/Examples/ChillerPlants/DataCenter/BaseClasses/Controls/Examples/WSEControl.mo
index edb1179be0f..f80ea4eb9c5 100644
--- a/Buildings/Examples/ChillerPlant/BaseClasses/Controls/Examples/WSEControl.mo
+++ b/Buildings/Examples/ChillerPlants/DataCenter/BaseClasses/Controls/Examples/WSEControl.mo
@@ -1,4 +1,4 @@
-within Buildings.Examples.ChillerPlant.BaseClasses.Controls.Examples;
+within Buildings.Examples.ChillerPlants.DataCenter.BaseClasses.Controls.Examples;
model WSEControl "Test model for WSEControl"
extends Modelica.Icons.Example;
Modelica.Blocks.Sources.Pulse wseCHWST(
@@ -9,7 +9,7 @@ model WSEControl "Test model for WSEControl"
Modelica.Blocks.Sources.Constant wseCWST(k=273.15 + 10)
"WSE condenser water supply temperature"
annotation (Placement(transformation(extent={{-60,-60},{-40,-40}})));
- Buildings.Examples.ChillerPlant.BaseClasses.Controls.WSEControl wseCon
+ Buildings.Examples.ChillerPlants.DataCenter.BaseClasses.Controls.WSEControl wseCon
"Controller for the water-side economizer"
annotation (Placement(transformation(extent={{0,0},{20,20}})));
Modelica.Blocks.Sources.Constant TWetBub(k=273.15 + 5) "Wet bulb temperature"
@@ -35,7 +35,7 @@ equation
smooth=Smooth.None));
annotation (
__Dymola_Commands(file=
- "modelica://Buildings/Resources/Scripts/Dymola/Examples/ChillerPlant/BaseClasses/Controls/Examples/WSEControl.mos"
+ "modelica://Buildings/Resources/Scripts/Dymola/Examples/ChillerPlants/DataCenter/BaseClasses/Controls/Examples/WSEControl.mos"
"Simulate and plot"),
experiment(
StopTime=3600,
diff --git a/Buildings/Examples/ChillerPlant/BaseClasses/Controls/Examples/package.mo b/Buildings/Examples/ChillerPlants/DataCenter/BaseClasses/Controls/Examples/package.mo
similarity index 84%
rename from Buildings/Examples/ChillerPlant/BaseClasses/Controls/Examples/package.mo
rename to Buildings/Examples/ChillerPlants/DataCenter/BaseClasses/Controls/Examples/package.mo
index df949c9a6fb..50b0014b7b1 100644
--- a/Buildings/Examples/ChillerPlant/BaseClasses/Controls/Examples/package.mo
+++ b/Buildings/Examples/ChillerPlants/DataCenter/BaseClasses/Controls/Examples/package.mo
@@ -1,4 +1,4 @@
-within Buildings.Examples.ChillerPlant.BaseClasses.Controls;
+within Buildings.Examples.ChillerPlants.DataCenter.BaseClasses.Controls;
package Examples "Test of components"
extends Modelica.Icons.ExamplesPackage;
diff --git a/Buildings/Examples/ChillerPlant/BaseClasses/Controls/Examples/package.order b/Buildings/Examples/ChillerPlants/DataCenter/BaseClasses/Controls/Examples/package.order
similarity index 100%
rename from Buildings/Examples/ChillerPlant/BaseClasses/Controls/Examples/package.order
rename to Buildings/Examples/ChillerPlants/DataCenter/BaseClasses/Controls/Examples/package.order
diff --git a/Buildings/Examples/ChillerPlant/BaseClasses/Controls/KMinusU.mo b/Buildings/Examples/ChillerPlants/DataCenter/BaseClasses/Controls/KMinusU.mo
similarity index 94%
rename from Buildings/Examples/ChillerPlant/BaseClasses/Controls/KMinusU.mo
rename to Buildings/Examples/ChillerPlants/DataCenter/BaseClasses/Controls/KMinusU.mo
index f70eda0c7a9..3fb04e70039 100644
--- a/Buildings/Examples/ChillerPlant/BaseClasses/Controls/KMinusU.mo
+++ b/Buildings/Examples/ChillerPlants/DataCenter/BaseClasses/Controls/KMinusU.mo
@@ -1,4 +1,4 @@
-within Buildings.Examples.ChillerPlant.BaseClasses.Controls;
+within Buildings.Examples.ChillerPlants.DataCenter.BaseClasses.Controls;
block KMinusU "Output y=k-u"
extends Modelica.Blocks.Icons.Block;
public
diff --git a/Buildings/Examples/ChillerPlant/BaseClasses/Controls/LinearPiecewiseTwo.mo b/Buildings/Examples/ChillerPlants/DataCenter/BaseClasses/Controls/LinearPiecewiseTwo.mo
similarity index 98%
rename from Buildings/Examples/ChillerPlant/BaseClasses/Controls/LinearPiecewiseTwo.mo
rename to Buildings/Examples/ChillerPlants/DataCenter/BaseClasses/Controls/LinearPiecewiseTwo.mo
index 5c9996ccb9c..b77302024c4 100644
--- a/Buildings/Examples/ChillerPlant/BaseClasses/Controls/LinearPiecewiseTwo.mo
+++ b/Buildings/Examples/ChillerPlants/DataCenter/BaseClasses/Controls/LinearPiecewiseTwo.mo
@@ -1,4 +1,4 @@
-within Buildings.Examples.ChillerPlant.BaseClasses.Controls;
+within Buildings.Examples.ChillerPlants.DataCenter.BaseClasses.Controls;
block LinearPiecewiseTwo "A two-pieces linear piecewise function"
extends Modelica.Blocks.Icons.Block;
parameter Real x0 "First interval [x0, x1]";
diff --git a/Buildings/Examples/ChillerPlant/BaseClasses/Controls/RequestCounter.mo b/Buildings/Examples/ChillerPlants/DataCenter/BaseClasses/Controls/RequestCounter.mo
similarity index 97%
rename from Buildings/Examples/ChillerPlant/BaseClasses/Controls/RequestCounter.mo
rename to Buildings/Examples/ChillerPlants/DataCenter/BaseClasses/Controls/RequestCounter.mo
index 198cb247c84..809cb8a3669 100644
--- a/Buildings/Examples/ChillerPlant/BaseClasses/Controls/RequestCounter.mo
+++ b/Buildings/Examples/ChillerPlants/DataCenter/BaseClasses/Controls/RequestCounter.mo
@@ -1,4 +1,4 @@
-within Buildings.Examples.ChillerPlant.BaseClasses.Controls;
+within Buildings.Examples.ChillerPlants.DataCenter.BaseClasses.Controls;
block RequestCounter "Count the number of actuators that have request"
extends Modelica.Blocks.Icons.Block annotation (Icon(Text(
extent={{-48,48},{54,-32}},
diff --git a/Buildings/Examples/ChillerPlant/BaseClasses/Controls/TrimAndRespond.mo b/Buildings/Examples/ChillerPlants/DataCenter/BaseClasses/Controls/TrimAndRespond.mo
similarity index 98%
rename from Buildings/Examples/ChillerPlant/BaseClasses/Controls/TrimAndRespond.mo
rename to Buildings/Examples/ChillerPlants/DataCenter/BaseClasses/Controls/TrimAndRespond.mo
index 0c91558f11f..e4de5b0073b 100644
--- a/Buildings/Examples/ChillerPlant/BaseClasses/Controls/TrimAndRespond.mo
+++ b/Buildings/Examples/ChillerPlants/DataCenter/BaseClasses/Controls/TrimAndRespond.mo
@@ -1,4 +1,4 @@
-within Buildings.Examples.ChillerPlant.BaseClasses.Controls;
+within Buildings.Examples.ChillerPlants.DataCenter.BaseClasses.Controls;
block TrimAndRespond "Trim and respond logic"
extends Modelica.Blocks.Interfaces.DiscreteSISO(firstTrigger(start=false, fixed=true));
parameter Real uTri "Value to triggering the request for actuator";
diff --git a/Buildings/Examples/ChillerPlant/BaseClasses/Controls/TrimAndRespondContinuousTimeApproximation.mo b/Buildings/Examples/ChillerPlants/DataCenter/BaseClasses/Controls/TrimAndRespondContinuousTimeApproximation.mo
similarity index 94%
rename from Buildings/Examples/ChillerPlant/BaseClasses/Controls/TrimAndRespondContinuousTimeApproximation.mo
rename to Buildings/Examples/ChillerPlants/DataCenter/BaseClasses/Controls/TrimAndRespondContinuousTimeApproximation.mo
index ddc900145f4..548338d0bd3 100644
--- a/Buildings/Examples/ChillerPlant/BaseClasses/Controls/TrimAndRespondContinuousTimeApproximation.mo
+++ b/Buildings/Examples/ChillerPlants/DataCenter/BaseClasses/Controls/TrimAndRespondContinuousTimeApproximation.mo
@@ -1,4 +1,4 @@
-within Buildings.Examples.ChillerPlant.BaseClasses.Controls;
+within Buildings.Examples.ChillerPlants.DataCenter.BaseClasses.Controls;
block TrimAndRespondContinuousTimeApproximation "Trim and respond logic"
extends Modelica.Blocks.Interfaces.SISO;
diff --git a/Buildings/Examples/ChillerPlant/BaseClasses/Controls/WSEControl.mo b/Buildings/Examples/ChillerPlants/DataCenter/BaseClasses/Controls/WSEControl.mo
similarity index 98%
rename from Buildings/Examples/ChillerPlant/BaseClasses/Controls/WSEControl.mo
rename to Buildings/Examples/ChillerPlants/DataCenter/BaseClasses/Controls/WSEControl.mo
index 8f214d9864d..24f0ddf496e 100644
--- a/Buildings/Examples/ChillerPlant/BaseClasses/Controls/WSEControl.mo
+++ b/Buildings/Examples/ChillerPlants/DataCenter/BaseClasses/Controls/WSEControl.mo
@@ -1,4 +1,4 @@
-within Buildings.Examples.ChillerPlant.BaseClasses.Controls;
+within Buildings.Examples.ChillerPlants.DataCenter.BaseClasses.Controls;
model WSEControl "Control unit for WSE"
parameter Modelica.Units.SI.TemperatureDifference dTOff=1
"Temperature difference to switch WSE off";
diff --git a/Buildings/Examples/ChillerPlant/BaseClasses/Controls/package.mo b/Buildings/Examples/ChillerPlants/DataCenter/BaseClasses/Controls/package.mo
similarity index 86%
rename from Buildings/Examples/ChillerPlant/BaseClasses/Controls/package.mo
rename to Buildings/Examples/ChillerPlants/DataCenter/BaseClasses/Controls/package.mo
index 09532c3583f..3ddbc56196d 100644
--- a/Buildings/Examples/ChillerPlant/BaseClasses/Controls/package.mo
+++ b/Buildings/Examples/ChillerPlants/DataCenter/BaseClasses/Controls/package.mo
@@ -1,4 +1,4 @@
-within Buildings.Examples.ChillerPlant.BaseClasses;
+within Buildings.Examples.ChillerPlants.DataCenter.BaseClasses;
package Controls "Package with control components for Buildings.Examples.ChillerPlant"
extends Modelica.Icons.VariantsPackage;
diff --git a/Buildings/Examples/ChillerPlant/BaseClasses/Controls/package.order b/Buildings/Examples/ChillerPlants/DataCenter/BaseClasses/Controls/package.order
similarity index 100%
rename from Buildings/Examples/ChillerPlant/BaseClasses/Controls/package.order
rename to Buildings/Examples/ChillerPlants/DataCenter/BaseClasses/Controls/package.order
diff --git a/Buildings/Examples/ChillerPlant/BaseClasses/DataCenter.mo b/Buildings/Examples/ChillerPlants/DataCenter/BaseClasses/DataCenter.mo
similarity index 97%
rename from Buildings/Examples/ChillerPlant/BaseClasses/DataCenter.mo
rename to Buildings/Examples/ChillerPlants/DataCenter/BaseClasses/DataCenter.mo
index a27547b0f48..f475710b83a 100644
--- a/Buildings/Examples/ChillerPlant/BaseClasses/DataCenter.mo
+++ b/Buildings/Examples/ChillerPlants/DataCenter/BaseClasses/DataCenter.mo
@@ -1,4 +1,4 @@
-within Buildings.Examples.ChillerPlant.BaseClasses;
+within Buildings.Examples.ChillerPlants.DataCenter.BaseClasses;
partial model DataCenter
"Primary only chiller plant system with water-side economizer"
replaceable package MediumA = Buildings.Media.Air "Medium model";
@@ -130,10 +130,9 @@ partial model DataCenter
Buildings.Fluid.Storage.ExpansionVessel expVesChi(redeclare package Medium =
MediumW, V_start=1)
annotation (Placement(transformation(extent={{236,143},{256,163}})));
- Buildings.Examples.ChillerPlant.BaseClasses.Controls.WSEControl wseCon
- annotation (Placement(transformation(
- extent={{-10,-10},{10,10}},
- origin={-150,-29})));
+ Buildings.Examples.ChillerPlants.DataCenter.BaseClasses.Controls.WSEControl wseCon
+ annotation (Placement(transformation(extent={{-10,-10},{10,10}}, origin={-150,
+ -29})));
Modelica.Blocks.Sources.RealExpression expTowTApp(y=cooTow.TApp_nominal)
"Cooling tower approach" annotation (Placement(transformation(
extent={{-10,-10},{10,10}},
@@ -161,11 +160,11 @@ partial model DataCenter
extent={{-10,10},{10,-10}},
rotation=270,
origin={358,40})));
- Buildings.Examples.ChillerPlant.BaseClasses.Controls.ChillerSwitch chiSwi(
- deaBan(displayUnit="K") = 2.2)
+ Buildings.Examples.ChillerPlants.DataCenter.BaseClasses.Controls.ChillerSwitch
+ chiSwi(deaBan(displayUnit="K") = 2.2)
"Control unit switching chiller on or off "
annotation (Placement(transformation(extent={{-226,83},{-206,103}})));
- Buildings.Examples.ChillerPlant.BaseClasses.Controls.LinearPiecewiseTwo
+ Buildings.Examples.ChillerPlants.DataCenter.BaseClasses.Controls.LinearPiecewiseTwo
linPieTwo(
x0=0,
x2=1,
@@ -225,7 +224,7 @@ partial model DataCenter
use_inputFilter=false,
from_dp=true) "Bypass valve for chiller." annotation (Placement(
transformation(extent={{-10,-10},{10,10}}, origin={288,20})));
- Buildings.Examples.ChillerPlant.BaseClasses.Controls.KMinusU KMinusU(k=1)
+ Buildings.Examples.ChillerPlants.DataCenter.BaseClasses.Controls.KMinusU KMinusU(k=1)
annotation (Placement(transformation(extent={{-60,28},{-40,48}})));
Buildings.Fluid.Actuators.Valves.TwoWayLinear val3(
redeclare package Medium = MediumW,
diff --git a/Buildings/Examples/ChillerPlant/BaseClasses/DataCenterContinuousTimeControl.mo b/Buildings/Examples/ChillerPlants/DataCenter/BaseClasses/DataCenterContinuousTimeControl.mo
similarity index 91%
rename from Buildings/Examples/ChillerPlant/BaseClasses/DataCenterContinuousTimeControl.mo
rename to Buildings/Examples/ChillerPlants/DataCenter/BaseClasses/DataCenterContinuousTimeControl.mo
index c3bd50221fe..57e8b6f4430 100644
--- a/Buildings/Examples/ChillerPlant/BaseClasses/DataCenterContinuousTimeControl.mo
+++ b/Buildings/Examples/ChillerPlants/DataCenter/BaseClasses/DataCenterContinuousTimeControl.mo
@@ -1,6 +1,7 @@
-within Buildings.Examples.ChillerPlant.BaseClasses;
+within Buildings.Examples.ChillerPlants.DataCenter.BaseClasses;
model DataCenterContinuousTimeControl
- extends Buildings.Examples.ChillerPlant.DataCenterContinuousTimeControl;
+ extends
+ Buildings.Examples.ChillerPlants.DataCenter.ContinuousTimeControl;
Modelica.Blocks.Interfaces.RealOutput PAC
"Alternate current power required for IT" annotation (Placement(
transformation(extent={{-140,-230},{-120,-210}}),
diff --git a/Buildings/Examples/ChillerPlant/BaseClasses/SimplifiedRoom.mo b/Buildings/Examples/ChillerPlants/DataCenter/BaseClasses/SimplifiedRoom.mo
similarity index 98%
rename from Buildings/Examples/ChillerPlant/BaseClasses/SimplifiedRoom.mo
rename to Buildings/Examples/ChillerPlants/DataCenter/BaseClasses/SimplifiedRoom.mo
index 8c2d2c63d69..efb372eb2e3 100644
--- a/Buildings/Examples/ChillerPlant/BaseClasses/SimplifiedRoom.mo
+++ b/Buildings/Examples/ChillerPlants/DataCenter/BaseClasses/SimplifiedRoom.mo
@@ -1,4 +1,4 @@
-within Buildings.Examples.ChillerPlant.BaseClasses;
+within Buildings.Examples.ChillerPlants.DataCenter.BaseClasses;
model SimplifiedRoom "Simplified data center room"
extends Buildings.BaseClasses.BaseIcon;
replaceable package Medium = Modelica.Media.Interfaces.PartialMedium
diff --git a/Buildings/Examples/ChillerPlant/BaseClasses/package.mo b/Buildings/Examples/ChillerPlants/DataCenter/BaseClasses/package.mo
similarity index 88%
rename from Buildings/Examples/ChillerPlant/BaseClasses/package.mo
rename to Buildings/Examples/ChillerPlants/DataCenter/BaseClasses/package.mo
index 93e94e1b160..91f17ba164d 100644
--- a/Buildings/Examples/ChillerPlant/BaseClasses/package.mo
+++ b/Buildings/Examples/ChillerPlants/DataCenter/BaseClasses/package.mo
@@ -1,4 +1,4 @@
-within Buildings.Examples.ChillerPlant;
+within Buildings.Examples.ChillerPlants.DataCenter;
package BaseClasses "Package with base classes for Buildings.Examples.ChillerPlant"
extends Modelica.Icons.BasesPackage;
diff --git a/Buildings/Examples/ChillerPlant/BaseClasses/package.order b/Buildings/Examples/ChillerPlants/DataCenter/BaseClasses/package.order
similarity index 100%
rename from Buildings/Examples/ChillerPlant/BaseClasses/package.order
rename to Buildings/Examples/ChillerPlants/DataCenter/BaseClasses/package.order
diff --git a/Buildings/Examples/ChillerPlant/DataCenterContinuousTimeControl.mo b/Buildings/Examples/ChillerPlants/DataCenter/ContinuousTimeControl.mo
similarity index 88%
rename from Buildings/Examples/ChillerPlant/DataCenterContinuousTimeControl.mo
rename to Buildings/Examples/ChillerPlants/DataCenter/ContinuousTimeControl.mo
index f4dc5b597f7..b5d59395326 100644
--- a/Buildings/Examples/ChillerPlant/DataCenterContinuousTimeControl.mo
+++ b/Buildings/Examples/ChillerPlants/DataCenter/ContinuousTimeControl.mo
@@ -1,7 +1,7 @@
-within Buildings.Examples.ChillerPlant;
-model DataCenterContinuousTimeControl
+within Buildings.Examples.ChillerPlants.DataCenter;
+model ContinuousTimeControl
"Model of data center that approximates the trim and respond logic"
- extends Buildings.Examples.ChillerPlant.BaseClasses.DataCenter;
+ extends Buildings.Examples.ChillerPlants.DataCenter.BaseClasses.DataCenter;
extends Modelica.Icons.Example;
BaseClasses.Controls.TrimAndRespondContinuousTimeApproximation triAndRes
@@ -21,7 +21,7 @@ equation
annotation (
__Dymola_Commands(file=
- "modelica://Buildings/Resources/Scripts/Dymola/Examples/ChillerPlant/DataCenterContinuousTimeControl.mos"
+ "modelica://Buildings/Resources/Scripts/Dymola/Examples/ChillerPlants/DataCenter/ContinuousTimeControl.mos"
"Simulate and plot"), Documentation(info="
This model is the chilled water plant with continuous time control.
@@ -53,4 +53,4 @@ First implementation.
Diagram(coordinateSystem(preserveAspectRatio=false, extent={{-400,-300},{400,
300}}), graphics),
experiment(StartTime=13046400, Tolerance=1e-6, StopTime=13651200));
-end DataCenterContinuousTimeControl;
+end ContinuousTimeControl;
diff --git a/Buildings/Examples/ChillerPlant/DataCenterDiscreteTimeControl.mo b/Buildings/Examples/ChillerPlants/DataCenter/DiscreteTimeControl.mo
similarity index 89%
rename from Buildings/Examples/ChillerPlant/DataCenterDiscreteTimeControl.mo
rename to Buildings/Examples/ChillerPlants/DataCenter/DiscreteTimeControl.mo
index 201d5edc239..1451fb319d8 100644
--- a/Buildings/Examples/ChillerPlant/DataCenterDiscreteTimeControl.mo
+++ b/Buildings/Examples/ChillerPlants/DataCenter/DiscreteTimeControl.mo
@@ -1,7 +1,7 @@
-within Buildings.Examples.ChillerPlant;
-model DataCenterDiscreteTimeControl
+within Buildings.Examples.ChillerPlants.DataCenter;
+model DiscreteTimeControl
"Model of data center with trim and respond control"
- extends Buildings.Examples.ChillerPlant.BaseClasses.DataCenter;
+ extends Buildings.Examples.ChillerPlants.DataCenter.BaseClasses.DataCenter;
extends Modelica.Icons.Example;
BaseClasses.Controls.TrimAndRespond triAndRes(
@@ -24,7 +24,7 @@ equation
pattern=LinePattern.Dash));
annotation (
__Dymola_Commands(file=
- "modelica://Buildings/Resources/Scripts/Dymola/Examples/ChillerPlant/DataCenterDiscreteTimeControl.mos"
+ "modelica://Buildings/Resources/Scripts/Dymola/Examples/ChillerPlant/DataCenter/DiscreteTimeControl.mos"
"Simulate and plot"), Documentation(info="
This model is the chilled water plant with trim and respond control,
@@ -61,4 +61,4 @@ First implementation.
400,300}}),
graphics),
experiment(StartTime=13046400, Tolerance=1e-6, StopTime=13651200));
-end DataCenterDiscreteTimeControl;
+end DiscreteTimeControl;
diff --git a/Buildings/Examples/ChillerPlant/DataCenterRenewables.mo b/Buildings/Examples/ChillerPlants/DataCenter/Renewables.mo
similarity index 97%
rename from Buildings/Examples/ChillerPlant/DataCenterRenewables.mo
rename to Buildings/Examples/ChillerPlants/DataCenter/Renewables.mo
index 67a59300afc..9448705afea 100644
--- a/Buildings/Examples/ChillerPlant/DataCenterRenewables.mo
+++ b/Buildings/Examples/ChillerPlants/DataCenter/Renewables.mo
@@ -1,5 +1,5 @@
-within Buildings.Examples.ChillerPlant;
-model DataCenterRenewables
+within Buildings.Examples.ChillerPlants.DataCenter;
+model Renewables
"Model of a data center connected to renewable energy generation"
extends Modelica.Icons.Example;
BaseClasses.DataCenterContinuousTimeControl dataCenterContinuousTimeControl
@@ -107,7 +107,7 @@ equation
StopTime=604800,
Tolerance=1e-6),
__Dymola_Commands(file=
- "modelica://Buildings/Resources/Scripts/Dymola/Examples/ChillerPlant/DataCenterRenewables.mos"
+ "modelica://Buildings/Resources/Scripts/Dymola/Examples/ChillerPlants/DataCenter/Renewables.mos"
"Simulate and plot"),
Documentation(revisions="
@@ -136,4 +136,4 @@ This control logic is implemented using a finite state machine
inside the model con
.
"));
-end DataCenterRenewables;
+end Renewables;
diff --git a/Buildings/Examples/ChillerPlant/package.mo b/Buildings/Examples/ChillerPlants/DataCenter/package.mo
similarity index 97%
rename from Buildings/Examples/ChillerPlant/package.mo
rename to Buildings/Examples/ChillerPlants/DataCenter/package.mo
index 0d234d26457..eef9dd681d6 100644
--- a/Buildings/Examples/ChillerPlant/package.mo
+++ b/Buildings/Examples/ChillerPlants/DataCenter/package.mo
@@ -1,5 +1,5 @@
-within Buildings.Examples;
-package ChillerPlant "Chiller plant with water side economizer for data center"
+within Buildings.Examples.ChillerPlants;
+package DataCenter "Chiller plant with water side economizer for data center"
extends Modelica.Icons.ExamplesPackage;
@@ -122,4 +122,4 @@ Stein, J. (2009). Waterside Economizing in Data Centers: Design and Control Cons
Taylor, S.T. (2007). Increasing Efficiency with VAV System Static Pressure Setpoint Reset. ASHRAE Journal, June, 24-32.
"));
-end ChillerPlant;
+end DataCenter;
diff --git a/Buildings/Examples/ChillerPlants/DataCenter/package.order b/Buildings/Examples/ChillerPlants/DataCenter/package.order
new file mode 100644
index 00000000000..80a9b527379
--- /dev/null
+++ b/Buildings/Examples/ChillerPlants/DataCenter/package.order
@@ -0,0 +1,4 @@
+ContinuousTimeControl
+DiscreteTimeControl
+Renewables
+BaseClasses
diff --git a/Buildings/Examples/ChillerPlants/RP1711/BaseClasses/PartialChillerPlant.mo b/Buildings/Examples/ChillerPlants/RP1711/BaseClasses/PartialChillerPlant.mo
new file mode 100644
index 00000000000..36b27724f08
--- /dev/null
+++ b/Buildings/Examples/ChillerPlants/RP1711/BaseClasses/PartialChillerPlant.mo
@@ -0,0 +1,417 @@
+within Buildings.Examples.ChillerPlants.RP1711.BaseClasses;
+partial model PartialChillerPlant "Chiller plant model for closed-loop test"
+
+ package MediumW = Buildings.Media.Water;
+ parameter Modelica.Units.SI.MassFlowRate mChi_flow_nominal
+ "Nominal mass flow rate in chilled water loop";
+ final parameter Modelica.Units.SI.PressureDifference dpChi_nominal=80000+80000
+ "Nominal pressure difference in chilled water loop";
+ parameter Modelica.Units.SI.MassFlowRate mCon_flow_nominal
+ "Nominal mass flow rate in condenser water loop";
+ final parameter Modelica.Units.SI.PressureDifference dpCon_nominal=50000+15000+75000
+ "Nominal pressure difference in condenser water loop";
+
+ Buildings.Examples.ChillerPlants.RP1711.BaseClasses.YorkCalc cooTow1(
+ redeclare package Medium = MediumW,
+ final m_flow_nominal=mCon_flow_nominal,
+ final show_T=true,
+ final dp_nominal=15000 + 75000,
+ final energyDynamics=Modelica.Fluid.Types.Dynamics.FixedInitial)
+ "Cooling tower"
+ annotation (Placement(transformation(extent={{340,370},{320,390}})));
+ Buildings.Examples.ChillerPlants.RP1711.BaseClasses.YorkCalc cooTow2(
+ redeclare package Medium = MediumW,
+ final m_flow_nominal=mCon_flow_nominal,
+ final show_T=true,
+ final dp_nominal=15000 + 75000,
+ final energyDynamics=Modelica.Fluid.Types.Dynamics.FixedInitial)
+ "Cooling tower"
+ annotation (Placement(transformation(extent={{340,300},{320,320}})));
+ Buildings.Fluid.Movers.SpeedControlled_y conWatPum1(
+ redeclare package Medium = MediumW,
+ final energyDynamics=Modelica.Fluid.Types.Dynamics.FixedInitial,
+ per(pressure(V_flow={0,mCon_flow_nominal,2*mCon_flow_nominal}/1.2,
+ dp={2*dpCon_nominal,dpCon_nominal,0})),
+ final use_inputFilter=false)
+ "Condenser water pump"
+ annotation (Placement(transformation(extent={{-10,-10},{10,10}},
+ rotation=-90,origin={200,200})));
+ Buildings.Fluid.Movers.SpeedControlled_y conWatPum2(
+ redeclare package Medium = MediumW,
+ final energyDynamics=Modelica.Fluid.Types.Dynamics.FixedInitial,
+ per(pressure(V_flow={0,mCon_flow_nominal,2*mCon_flow_nominal}/1.2,
+ dp={2*dpCon_nominal,dpCon_nominal,0})),
+ final use_inputFilter=false)
+ "Condenser water pump"
+ annotation (Placement(transformation(extent={{-10,-10},{10,10}},
+ rotation=-90,origin={260,200})));
+ Buildings.Fluid.Actuators.Valves.TwoWayLinear cwIsoVal1(
+ redeclare package Medium = MediumW,
+ final m_flow_nominal=mCon_flow_nominal,
+ final show_T=true,
+ final dpValve_nominal=15000,
+ final use_inputFilter=false,
+ final dpFixed_nominal=0)
+ "Condenser water isolation valve"
+ annotation (Placement(transformation(extent={{370,90},{390,110}})));
+ Buildings.Fluid.Actuators.Valves.TwoWayLinear cwIsoVal2(
+ redeclare package Medium = MediumW,
+ final m_flow_nominal=mCon_flow_nominal,
+ final show_T=true,
+ final dpValve_nominal=15000,
+ final use_inputFilter=false,
+ final dpFixed_nominal=0)
+ "Condenser water isolation valve"
+ annotation (Placement(transformation(extent={{370,0},{390,20}})));
+ Buildings.Fluid.Actuators.Valves.TwoWayLinear chwIsoVal1(
+ redeclare package Medium = MediumW,
+ final m_flow_nominal=mChi_flow_nominal,
+ final show_T=true,
+ final dpValve_nominal=15000,
+ final use_inputFilter=false,
+ final dpFixed_nominal=80000)
+ "Chilled water isolation valve"
+ annotation (Placement(transformation(extent={{250,60},{230,80}})));
+ Buildings.Fluid.Actuators.Valves.TwoWayLinear chwIsoVal2(
+ redeclare package Medium = MediumW,
+ final m_flow_nominal=mChi_flow_nominal,
+ final show_T=true,
+ final dpValve_nominal=15000,
+ final use_inputFilter=false,
+ final dpFixed_nominal=80000)
+ "Chilled water isolation valve"
+ annotation (Placement(transformation(extent={{250,-30},{230,-10}})));
+ Buildings.Fluid.FixedResistances.Junction jun(
+ redeclare package Medium = MediumW,
+ final energyDynamics=Modelica.Fluid.Types.Dynamics.FixedInitial,
+ final m_flow_nominal={mCon_flow_nominal,mCon_flow_nominal,mCon_flow_nominal},
+ final dp_nominal={0,0,0}) "Flow junction"
+ annotation (Placement(transformation(extent={{-10,10},{10,-10}},
+ rotation=-90,origin={260,100})));
+ Buildings.Fluid.FixedResistances.Junction jun1(
+ redeclare package Medium = MediumW,
+ final energyDynamics=Modelica.Fluid.Types.Dynamics.FixedInitial,
+ final m_flow_nominal={mCon_flow_nominal,mCon_flow_nominal,mCon_flow_nominal},
+ final dp_nominal={0,0,0}) "Flow junction"
+ annotation (Placement(transformation(extent={{-10,-10},{10,10}},
+ rotation=-90,origin={260,240})));
+ Buildings.Fluid.FixedResistances.Junction jun2(
+ redeclare package Medium = MediumW,
+ final energyDynamics=Modelica.Fluid.Types.Dynamics.FixedInitial,
+ final m_flow_nominal={mCon_flow_nominal,mCon_flow_nominal,mCon_flow_nominal},
+ final dp_nominal={0,0,0}) "Flow junction"
+ annotation (Placement(transformation(extent={{-10,-10},{10,10}},
+ rotation=-90,origin={260,160})));
+ Buildings.Fluid.FixedResistances.Junction jun3(
+ redeclare package Medium = MediumW,
+ final energyDynamics=Modelica.Fluid.Types.Dynamics.FixedInitial,
+ final m_flow_nominal={mCon_flow_nominal,mCon_flow_nominal,mCon_flow_nominal},
+ final dp_nominal={0,0,0}) "Flow junction"
+ annotation (Placement(transformation(extent={{10,-10},{-10,10}},
+ rotation=90,origin={260,310})));
+ Buildings.Fluid.FixedResistances.Junction jun4(
+ redeclare package Medium = MediumW,
+ final energyDynamics=Modelica.Fluid.Types.Dynamics.FixedInitial,
+ final m_flow_nominal={mCon_flow_nominal,mCon_flow_nominal,mCon_flow_nominal},
+ final dp_nominal={0,0,0}) "Flow junction"
+ annotation (Placement(transformation(extent={{10,-10},{-10,10}},
+ rotation=-90,origin={420,100})));
+ Buildings.Fluid.Actuators.Valves.TwoWayLinear towIsoVal2(
+ redeclare package Medium = MediumW,
+ final m_flow_nominal=mCon_flow_nominal,
+ final show_T=true,
+ final dpValve_nominal=15000,
+ final use_inputFilter=false,
+ final dpFixed_nominal=50000)
+ "Cooling tower isolation valve"
+ annotation (Placement(transformation(extent={{390,300},{370,320}})));
+ Buildings.Fluid.Actuators.Valves.TwoWayLinear towIsoVal1(
+ redeclare package Medium = MediumW,
+ final m_flow_nominal=mCon_flow_nominal,
+ final show_T=true,
+ final dpValve_nominal=15000,
+ final use_inputFilter=false,
+ final dpFixed_nominal=50000)
+ "Cooling tower isolation valve"
+ annotation (Placement(transformation(extent={{390,370},{370,390}})));
+ Buildings.Fluid.FixedResistances.Junction jun5(
+ redeclare package Medium = MediumW,
+ final energyDynamics=Modelica.Fluid.Types.Dynamics.FixedInitial,
+ final m_flow_nominal={mCon_flow_nominal,mCon_flow_nominal,mCon_flow_nominal},
+ final dp_nominal={0,0,0}) "Flow junction"
+ annotation (Placement(transformation(extent={{10,-10},{-10,10}},
+ rotation=-90,origin={420,310})));
+ Buildings.Fluid.FixedResistances.Junction jun6(
+ redeclare package Medium = MediumW,
+ final energyDynamics=Modelica.Fluid.Types.Dynamics.FixedInitial,
+ final m_flow_nominal={mChi_flow_nominal,mChi_flow_nominal,mChi_flow_nominal},
+ final dp_nominal={0,0,0}) "Flow junction"
+ annotation (Placement(transformation(extent={{10,-10},{-10,10}},
+ rotation=-90,origin={440,-20})));
+ Buildings.Fluid.FixedResistances.Junction jun7(
+ redeclare package Medium = MediumW,
+ final energyDynamics=Modelica.Fluid.Types.Dynamics.FixedInitial,
+ final m_flow_nominal={mChi_flow_nominal,mChi_flow_nominal,mChi_flow_nominal},
+ final dp_nominal={0,0,0}) "Flow junction"
+ annotation (Placement(transformation(extent={{-10,10},{10,-10}},
+ rotation=-90,origin={200,-20})));
+ Buildings.Fluid.Movers.SpeedControlled_y chiWatPum1(
+ redeclare package Medium = MediumW,
+ final energyDynamics=Modelica.Fluid.Types.Dynamics.FixedInitial,
+ per(pressure(V_flow={0,mChi_flow_nominal,2*mChi_flow_nominal}/1.2,
+ dp={2*dpChi_nominal,dpChi_nominal,0})),
+ final use_inputFilter=false)
+ "Chilled water pump"
+ annotation (Placement(transformation(extent={{-10,-10},{10,10}},
+ rotation=-90,origin={200,-112})));
+ Buildings.Fluid.Movers.SpeedControlled_y chiWatPum2(
+ redeclare package Medium = MediumW,
+ final energyDynamics=Modelica.Fluid.Types.Dynamics.FixedInitial,
+ per(pressure(V_flow={0,mChi_flow_nominal,2*mChi_flow_nominal}/1.2,
+ dp={2*dpChi_nominal,dpChi_nominal,0})),
+ final use_inputFilter=false)
+ "Chilled water pump"
+ annotation (Placement(transformation(extent={{-10,-10},{10,10}},
+ rotation=-90,origin={260,-112})));
+ Buildings.Fluid.FixedResistances.Junction jun8(
+ redeclare package Medium = MediumW,
+ final energyDynamics=Modelica.Fluid.Types.Dynamics.FixedInitial,
+ final m_flow_nominal={mChi_flow_nominal,mChi_flow_nominal,mChi_flow_nominal},
+ final dp_nominal={0,0,0}) "Flow junction"
+ annotation (Placement(transformation(extent={{-10,10},{10,-10}},
+ rotation=-90,origin={200,-80})));
+ Buildings.Fluid.FixedResistances.Junction jun9(
+ redeclare package Medium = MediumW,
+ final energyDynamics=Modelica.Fluid.Types.Dynamics.FixedInitial,
+ final m_flow_nominal={mChi_flow_nominal,mChi_flow_nominal,mChi_flow_nominal},
+ final dp_nominal={0,0,0}) "Flow junction"
+ annotation (Placement(transformation(extent={{-10,10},{10,-10}},
+ rotation=-90,origin={200,-150})));
+ Buildings.Fluid.FixedResistances.Junction jun10(
+ redeclare package Medium = MediumW,
+ final energyDynamics=Modelica.Fluid.Types.Dynamics.FixedInitial,
+ final m_flow_nominal={mChi_flow_nominal,mChi_flow_nominal,mChi_flow_nominal},
+ final dp_nominal={0,0,0}) "Flow junction"
+ annotation (Placement(transformation(extent={{-10,10},{10,-10}},
+ rotation=-90,origin={200,-220})));
+ Buildings.Fluid.Actuators.Valves.TwoWayEqualPercentage valByp(
+ redeclare package Medium = MediumW,
+ final m_flow_nominal=mChi_flow_nominal,
+ final show_T=true,
+ final dpValve_nominal=15000,
+ final use_inputFilter=false,
+ final dpFixed_nominal=8000)
+ "Bypass valve for chiller"
+ annotation (Placement(transformation(extent={{-10,-10},{10,10}}, origin={330,-220})));
+ Buildings.Fluid.FixedResistances.Junction jun11(
+ redeclare package Medium = MediumW,
+ final energyDynamics=Modelica.Fluid.Types.Dynamics.FixedInitial,
+ final m_flow_nominal={mChi_flow_nominal,mChi_flow_nominal,mChi_flow_nominal},
+ final dp_nominal={0,0,0}) "Flow junction"
+ annotation (Placement(transformation(extent={{10,-10},{-10,10}},
+ rotation=-90, origin={440,-220})));
+ Buildings.Fluid.Sensors.TemperatureTwoPort chiWatSupTem(redeclare package
+ Medium = MediumW, final m_flow_nominal=mChi_flow_nominal)
+ "Chilled water supply temperature" annotation (Placement(transformation(
+ extent={{-10,-10},{10,10}},
+ rotation=-90,
+ origin={200,-180})));
+ Buildings.Fluid.Sensors.TemperatureTwoPort chiWatRet(
+ redeclare package Medium = MediumW,
+ final m_flow_nominal=mChi_flow_nominal)
+ "Chilled water return temperature, after bypass"
+ annotation (Placement(transformation(extent={{-10,-10},{10,10}},
+ rotation=90,origin={440,-180})));
+ Buildings.Fluid.Sensors.TemperatureTwoPort chiWatRet1(
+ redeclare package Medium = MediumW,
+ final m_flow_nominal=mChi_flow_nominal)
+ "Chilled water return temperature, before bypass"
+ annotation (Placement(transformation(extent={{-10,-10},{10,10}},
+ rotation=90,origin={440,-260})));
+ Buildings.Fluid.Sensors.VolumeFlowRate senVolFlo(
+ redeclare package Medium = MediumW,
+ final m_flow_nominal=mChi_flow_nominal) "Chilled water mass flow sensor"
+ annotation (Placement(transformation(extent={{-10,-10},{10,10}},
+ rotation=90,origin={440,-60})));
+ Buildings.Fluid.Sensors.TemperatureTwoPort conWatSupTem(
+ redeclare package Medium = MediumW,
+ final m_flow_nominal=mCon_flow_nominal)
+ "Condenser water supply temperature, to the chiller condenser"
+ annotation (Placement(transformation(extent={{-10,-10},{10,10}},
+ rotation=-90,origin={260,280})));
+ Buildings.Fluid.Sensors.TemperatureTwoPort conWatRetTem(
+ redeclare package Medium = MediumW,
+ final m_flow_nominal=mCon_flow_nominal)
+ "Condenser water supply temperature, from the chiller condenser"
+ annotation (Placement(transformation(extent={{-10,-10},{10,10}},
+ rotation=90,origin={420,280})));
+ Buildings.Fluid.Sensors.RelativePressure senRelPre(
+ redeclare package Medium = MediumW)
+ annotation (Placement(transformation(extent={{320,-330},{340,-310}})));
+ Buildings.Fluid.FixedResistances.PressureDrop res(
+ redeclare package Medium = MediumW,
+ final m_flow_nominal=mChi_flow_nominal,
+ final dp_nominal=80000)
+ annotation (Placement(transformation(extent={{-10,-10},{10,10}},
+ rotation=90, origin={440,-300})));
+ Buildings.Fluid.Chillers.ElectricEIR chi1(
+ redeclare package Medium1 = MediumW,
+ redeclare package Medium2 = MediumW,
+ final m1_flow_nominal=mCon_flow_nominal,
+ final m2_flow_nominal=mChi_flow_nominal,
+ final dp1_nominal=0,
+ final dp2_nominal=0,
+ per=Buildings.Fluid.Chillers.Data.ElectricEIR.ElectricEIRChiller_Carrier_19XR_742kW_5_42COP_VSD())
+ "Chiller one"
+ annotation (Placement(transformation(extent={{320,84},{340,104}})));
+ Buildings.Fluid.Chillers.ElectricEIR chi2(
+ redeclare package Medium1 = MediumW,
+ redeclare package Medium2 = MediumW,
+ final m1_flow_nominal=mCon_flow_nominal,
+ final m2_flow_nominal=mChi_flow_nominal,
+ final dp1_nominal=0,
+ final dp2_nominal=0,
+ per=Buildings.Fluid.Chillers.Data.ElectricEIR.ElectricEIRChiller_Carrier_19XR_742kW_5_42COP_VSD())
+ "Chiller two"
+ annotation (Placement(transformation(extent={{320,-6},{340,14}})));
+ Buildings.Fluid.Sources.Boundary_pT bou(
+ redeclare package Medium = MediumW,
+ nPorts=1)
+ "Reference pressure"
+ annotation (Placement(transformation(extent={{-10,-10},{10,10}},
+ rotation=180,origin={470,110})));
+
+equation
+ connect(jun3.port_1, cooTow1.port_b)
+ annotation (Line(points={{260,320},{260,380},{320,380}}, color={238,46,47},
+ thickness=1));
+ connect(jun3.port_3, cooTow2.port_b)
+ annotation (Line(points={{270,310},{320,310}}, color={238,46,47},
+ thickness=1));
+ connect(cooTow1.port_a, towIsoVal1.port_b)
+ annotation (Line(points={{340,380},{370,380}}, color={238,46,47},
+ thickness=1));
+ connect(cooTow2.port_a, towIsoVal2.port_b)
+ annotation (Line(points={{340,310},{370,310}}, color={238,46,47},
+ thickness=1));
+ connect(cwIsoVal2.port_b, jun4.port_1)
+ annotation (Line(points={{390,10},{420,10},{420,90}}, color={238,46,47},
+ thickness=1));
+ connect(cwIsoVal1.port_b, jun4.port_3)
+ annotation (Line(points={{390,100},{410,100}}, color={238,46,47},
+ thickness=1));
+ connect(jun5.port_2, towIsoVal1.port_a)
+ annotation (Line(points={{420,320},{420,380},{390,380}}, color={238,46,47},
+ thickness=1));
+ connect(jun5.port_3, towIsoVal2.port_a)
+ annotation (Line(points={{410,310},{390,310}}, color={238,46,47},
+ thickness=1));
+ connect(chwIsoVal1.port_b, jun7.port_1)
+ annotation (Line(points={{230,70},{200,70},{200,-10}}, color={0,127,255},
+ thickness=1));
+ connect(jun7.port_3, chwIsoVal2.port_b)
+ annotation (Line(points={{210,-20},{230,-20}}, color={0,127,255},
+ thickness=1));
+ connect(jun7.port_2, jun8.port_1)
+ annotation (Line(points={{200,-30},{200,-70}}, color={0,127,255},
+ thickness=1));
+ connect(jun8.port_3,chiWatPum2. port_a)
+ annotation (Line(points={{210,-80},{260,-80},{260,-102}}, color={0,127,255},
+ thickness=1));
+ connect(jun8.port_2,chiWatPum1. port_a)
+ annotation (Line(points={{200,-90},{200,-102}}, color={0,127,255},
+ thickness=1));
+ connect(chiWatPum1.port_b, jun9.port_1)
+ annotation (Line(points={{200,-122},{200,-140}}, color={0,127,255},
+ thickness=1));
+ connect(chiWatPum2.port_b, jun9.port_3)
+ annotation (Line(points={{260,-122},{260,-150},{210,-150}}, color={0,127,255},
+ thickness=1));
+ connect(jun10.port_3, valByp.port_a)
+ annotation (Line(points={{210,-220},{320,-220}}, color={0,127,255},
+ thickness=1));
+ connect(valByp.port_b, jun11.port_3)
+ annotation (Line(points={{340,-220},{430,-220}}, color={0,127,255},
+ thickness=1));
+ connect(jun.port_1, jun2.port_2)
+ annotation (Line(points={{260,110},{260,150}}, color={238,46,47},
+ thickness=1));
+ connect(jun2.port_1, conWatPum2.port_b)
+ annotation (Line(points={{260,170},{260,190}}, color={238,46,47},
+ thickness=1));
+ connect(conWatPum2.port_a, jun1.port_2)
+ annotation (Line(points={{260,210},{260,230}}, color={238,46,47},
+ thickness=1));
+ connect(conWatPum1.port_b, jun2.port_3)
+ annotation (Line(points={{200,190},{200,160},{250,160}}, color={238,46,47},
+ thickness=1));
+ connect(conWatPum1.port_a, jun1.port_3)
+ annotation (Line(points={{200,210},{200,240},{250,240}}, color={238,46,47},
+ thickness=1));
+ connect(jun9.port_2, chiWatSupTem.port_a) annotation (Line(
+ points={{200,-160},{200,-170}},
+ color={0,127,255},
+ thickness=1));
+ connect(chiWatSupTem.port_b, jun10.port_1) annotation (Line(
+ points={{200,-190},{200,-210}},
+ color={0,127,255},
+ thickness=1));
+ connect(jun11.port_2, chiWatRet.port_a)
+ annotation (Line(points={{440,-210},{440,-190}}, color={0,127,255},
+ thickness=1));
+ connect(chiWatRet1.port_b, jun11.port_1)
+ annotation (Line(points={{440,-250},{440,-230}}, color={0,127,255},
+ thickness=1));
+ connect(senVolFlo.port_b, jun6.port_1)
+ annotation (Line(points={{440,-50},{440,-30}}, color={0,127,255},
+ thickness=1));
+ connect(jun1.port_1, conWatSupTem.port_b)
+ annotation (Line(points={{260,250},{260,270}}, color={238,46,47},
+ thickness=1));
+ connect(conWatSupTem.port_a, jun3.port_2)
+ annotation (Line(points={{260,290},{260,300}}, color={238,46,47},
+ thickness=1));
+ connect(jun4.port_2, conWatRetTem.port_a)
+ annotation (Line(points={{420,110},{420,270}}, color={238,46,47},
+ thickness=1));
+ connect(conWatRetTem.port_b, jun5.port_1)
+ annotation (Line(points={{420,290},{420,300}}, color={238,46,47},
+ thickness=1));
+ connect(chiWatRet1.port_a, res.port_b)
+ annotation (Line(points={{440,-270},{440,-290}}, color={0,127,255},
+ thickness=1));
+ connect(jun.port_3, chi1.port_a1)
+ annotation (Line(points={{270,100},{320,100}}, color={238,46,47},
+ thickness=1));
+ connect(chi1.port_b1, cwIsoVal1.port_a)
+ annotation (Line(points={{340,100},{370,100}}, color={238,46,47},
+ thickness=1));
+ connect(jun.port_2, chi2.port_a1)
+ annotation (Line(points={{260,90},{260,10},{320,10}}, color={238,46,47},
+ thickness=1));
+ connect(chi2.port_b1, cwIsoVal2.port_a)
+ annotation (Line(points={{340,10},{370,10}}, color={238,46,47},
+ thickness=1));
+ connect(chwIsoVal1.port_a, chi1.port_b2)
+ annotation (Line(points={{250,70},{300,70},{300,88},{320,88}}, color={0,127,255},
+ thickness=1));
+ connect(chi1.port_a2, jun6.port_2)
+ annotation (Line(points={{340,88},{360,88},{360,70},{440,70},{440,-10}}, color={0,127,255},
+ thickness=1));
+ connect(chwIsoVal2.port_a, chi2.port_b2)
+ annotation (Line(points={{250,-20},{300,-20},{300,-2},{320,-2}}, color={0,127,255},
+ thickness=1));
+ connect(chi2.port_a2, jun6.port_3)
+ annotation (Line(points={{340,-2},{360,-2},{360,-20},{430,-20}}, color={0,127,255},
+ thickness=1));
+ connect(chiWatRet.port_b, senVolFlo.port_a)
+ annotation (Line(points={{440,-170},{440,-70}},color={0,127,255},
+ thickness=1));
+ connect(jun4.port_2, bou.ports[1])
+ annotation (Line(points={{420,110},{460,110}}, color={238,46,47},
+ thickness=1));
+ annotation (
+ Icon(coordinateSystem(preserveAspectRatio=false, extent={{-580,-440},{580,440}})),
+ Diagram(coordinateSystem(preserveAspectRatio=false,extent={{-580,-440},{580,440}}),
+ graphics={Line(points={{290,46}},color={28,108,200})}));
+end PartialChillerPlant;
diff --git a/Buildings/Examples/ChillerPlants/RP1711/BaseClasses/RP1711.mo b/Buildings/Examples/ChillerPlants/RP1711/BaseClasses/RP1711.mo
new file mode 100644
index 00000000000..49e0d76a795
--- /dev/null
+++ b/Buildings/Examples/ChillerPlants/RP1711/BaseClasses/RP1711.mo
@@ -0,0 +1,637 @@
+within Buildings.Examples.ChillerPlants.RP1711.BaseClasses;
+model RP1711 "Chiller plant model with RP1711 controller"
+
+ extends
+ Buildings.Examples.ChillerPlants.RP1711.BaseClasses.PartialChillerPlant(
+ mChi_flow_nominal=10,
+ mCon_flow_nominal=10,
+ senVolFlo(tau=10));
+// parameter Modelica.Units.SI.MassFlowRate mChi_flow_nominal = 10
+// "Nominal mass flow rate in chilled water loop";
+// parameter Modelica.Units.SI.MassFlowRate mCon_flow_nominal = 10
+// "Nominal mass flow rate in condenser water loop";
+ parameter Modelica.Units.SI.TemperatureDifference dTChi = 7
+ "Nominal chilled water supply and return temperature difference";
+
+ Buildings.Controls.OBC.CDL.Interfaces.IntegerInput chiPlaReq
+ "Number of chiller plant cooling requests"
+ annotation (Placement(transformation(extent={{-600,-210},{-560,-170}}),
+ iconTransformation(extent={{-200,-190},{-160,-150}})));
+ Buildings.Controls.OBC.CDL.Interfaces.IntegerInput TChiWatSupResReq
+ "Chilled water supply temperature setpoint reset request"
+ annotation (Placement(transformation(extent={{-600,-180},{-560,-140}}),
+ iconTransformation(extent={{-200,-150},{-160,-110}})));
+
+ Buildings.Controls.OBC.ASHRAE.PrimarySystem.ChillerPlant.Controller chiPlaCon(
+ final desCap=2*chiDesCap,
+ final chiDesCap={chiDesCap,chiDesCap},
+ final chiMinCap={chiDesCap*0.1,chiDesCap*0.1},
+ final have_WSE=false,
+ final nSenChiWatPum=1,
+ final have_fixSpeConWatPum=true,
+ final totSta=3,
+ final staVec={0,1,2},
+ final desConWatPumSpe={0,0.5,0.75},
+ final desConWatPumNum={0,2,2},
+ final towCelOnSet={0,2,2},
+ final nTowCel=2,
+ final dpChiWatPumMax={160000}) "Chiller plant controller"
+ annotation (Placement(transformation(extent={{-260,0},{-220,160}})));
+ Buildings.Controls.OBC.CDL.Continuous.GreaterThreshold chiWatIso[2](
+ final t=fill(0.025, 2),
+ final h=fill(0.005, 2))
+ "Chilled water isolation valve status"
+ annotation (Placement(transformation(extent={{-400,320},{-380,340}})));
+ Buildings.Controls.OBC.CDL.Continuous.GreaterThreshold conWatIso[2](
+ final t=fill(0.025, 2),
+ final h=fill(0.005, 2))
+ "Condenser water isolation valve status"
+ annotation (Placement(transformation(extent={{-400,280},{-380,300}})));
+ Buildings.Controls.OBC.CDL.Continuous.GreaterThreshold chiSta[2](
+ final t=fill(1, 2),
+ final h=fill(0.5, 2))
+ "Chiller status"
+ annotation (Placement(transformation(extent={{-400,230},{-380,250}})));
+ Buildings.Controls.OBC.CDL.Logical.Sources.Constant chiAva[2](final k=fill(
+ true, 2)) "Chiller availability"
+ annotation (Placement(transformation(extent={{-400,40},{-380,60}})));
+ Buildings.Controls.OBC.CDL.Continuous.GreaterThreshold conWatPumSta[2](
+ final t=fill(0.01, 2),
+ final h=fill(0.005, 2))
+ "Condenser water pump status"
+ annotation (Placement(transformation(extent={{-400,150},{-380,170}})));
+ Buildings.BoundaryConditions.WeatherData.Bus weaBus "Weather data bus"
+ annotation (Placement(transformation(extent={{-570,30},{-550,50}}),
+ iconTransformation(extent={{-120,160},{-100,180}})));
+ Modelica.Blocks.Routing.RealPassThrough TOut(y(
+ final quantity="ThermodynamicTemperature",
+ final unit="K",
+ displayUnit="degC",
+ min=0))
+ annotation (Placement(transformation(extent={{-520,30},{-500,50}})));
+ Buildings.Controls.OBC.CDL.Conversions.BooleanToReal booToRea2[2]
+ "Boolean to real"
+ annotation (Placement(transformation(extent={{-40,190},{-20,210}})));
+ Buildings.Controls.OBC.CDL.Continuous.Multiply pro2[2]
+ "Tower cells isolation valve position setpoint"
+ annotation (Placement(transformation(extent={{20,210},{40,230}})));
+ Buildings.Controls.OBC.CDL.Continuous.Multiply pro3[2]
+ "Tower fan speed setpoint"
+ annotation (Placement(transformation(extent={{20,280},{40,300}})));
+ Modelica.Blocks.Routing.RealPassThrough TWetBul(y(
+ final quantity="ThermodynamicTemperature",
+ final unit="K",
+ displayUnit="degC",
+ min=0)) "Outdoor wet bulb temperature"
+ annotation (Placement(transformation(extent={{-520,70},{-500,90}})));
+ Buildings.Controls.OBC.CDL.Continuous.GreaterThreshold chiWatPumSta[2](
+ final t=fill(0.01, 2),
+ final h=fill(0.005, 2))
+ "Chilled water pump status"
+ annotation (Placement(transformation(extent={{-400,-110},{-380,-90}})));
+ Buildings.Controls.OBC.CDL.Continuous.GreaterThreshold towSta[2](
+ final t=fill(1, 2),
+ final h=fill(0.5, 2)) "Cooling tower status"
+ annotation (Placement(transformation(extent={{-400,-30},{-380,-10}})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant conWatLev(
+ final k=0.9) "Constant cooling tower water level"
+ annotation (Placement(transformation(extent={{-520,-10},{-500,10}})));
+ Buildings.Controls.OBC.CDL.Continuous.MultiMax cooTowFan(final nin=2)
+ "Cooling tower fan speed"
+ annotation (Placement(transformation(extent={{-400,190},{-380,210}})));
+ Modelica.Fluid.Interfaces.FluidPort_b portCooCoiSup(
+ redeclare package Medium =MediumW) "Cooling coil loop supply"
+ annotation (Placement(transformation(extent={{190,-370},{210,-350}}),
+ iconTransformation(extent={{-130,-210},{-110,-190}})));
+ Modelica.Fluid.Interfaces.FluidPort_a portCooCoiRet(
+ redeclare package Medium =MediumW)
+ "Coolin coil loop return"
+ annotation (Placement(transformation(extent={{430,-370},{450,-350}}),
+ iconTransformation(extent={{110,-210},{130,-190}})));
+ Buildings.Controls.OBC.CDL.Logical.Pre pre2[2] "Break algebraic loop"
+ annotation (Placement(transformation(extent={{-340,320},{-320,340}})));
+ Buildings.Controls.OBC.CDL.Logical.Pre pre3[2] "Break algebraic loop"
+ annotation (Placement(transformation(extent={{-340,280},{-320,300}})));
+ Buildings.Controls.OBC.CDL.Logical.Pre pre4[2] "Break algebraic loop"
+ annotation (Placement(transformation(extent={{-354,230},{-334,250}})));
+ Buildings.Controls.OBC.CDL.Logical.Pre pre5[2] "Break algebraic loop"
+ annotation (Placement(transformation(extent={{-360,-30},{-340,-10}})));
+ Buildings.Controls.OBC.CDL.Logical.Pre pre6[2] "Break algebraic loop"
+ annotation (Placement(transformation(extent={{-360,-110},{-340,-90}})));
+ Buildings.Controls.OBC.CDL.Discrete.ZeroOrderHold zerOrdHol(
+ final samplePeriod=120)
+ "Sample value and break algebric loop"
+ annotation (Placement(transformation(extent={{360,-360},{380,-340}})));
+ Buildings.Controls.OBC.CDL.Discrete.ZeroOrderHold zerOrdHol1[2](
+ final samplePeriod=fill(120, 2))
+ "Sample value and break algebric loop"
+ annotation (Placement(transformation(extent={{-460,300},{-440,320}})));
+ Buildings.Controls.OBC.CDL.Discrete.ZeroOrderHold zerOrdHol2(
+ final samplePeriod=120)
+ "Sample value and break algebric loop"
+ annotation (Placement(transformation(extent={{340,-110},{360,-90}})));
+protected
+ final parameter Modelica.Units.SI.SpecificHeatCapacity Cp = 4198
+ "Water specific heat capacity";
+ final parameter Modelica.Units.SI.HeatFlowRate chiDesCap = mChi_flow_nominal*dTChi*Cp
+ "Chiller design capacity";
+
+equation
+ connect(chwIsoVal1.y_actual, chiWatIso[1].u) annotation (Line(points={{235,77},
+ {100,77},{100,360},{-480,360},{-480,330},{-402,330}}, color={0,
+ 0,127}));
+ connect(chwIsoVal2.y_actual, chiWatIso[2].u) annotation (Line(points={{235,-13},
+ {220,-13},{220,-4},{100,-4},{100,360},{-480,360},{-480,330},{-402,330}},
+ color={0,0,127}));
+ connect(cwIsoVal1.y_actual, conWatIso[1].u) annotation (Line(points={{385,107},
+ {400,107},{400,130},{110,130},{110,370},{-500,370},{-500,290},{-402,290}},
+ color={0,0,127}));
+ connect(cwIsoVal2.y_actual, conWatIso[2].u) annotation (Line(points={{385,17},
+ {400,17},{400,40},{110,40},{110,370},{-500,370},{-500,290},{-402,290}},
+ color={0,0,127}));
+ connect(chi2.P, chiSta[2].u) annotation (Line(points={{341,13},{352,13},{352,30},
+ {90,30},{90,268},{-480,268},{-480,240},{-402,240}}, color={0,0,127}));
+ connect(chiWatSupTem.T, chiPlaCon.TChiWatSup) annotation (Line(points={{211,
+ -180},{300,-180},{300,-44},{-450,-44},{-450,96},{-264,96}},
+ color={0,0,127}));
+ connect(chiAva.y, chiPlaCon.uChiAva) annotation (Line(points={{-378,50},{-320,
+ 50},{-320,74},{-264,74}}, color={255,0,255}));
+ connect(conWatPum1.y_actual, conWatPumSta[1].u) annotation (Line(points={{207,189},
+ {207,180},{-410,180},{-410,160},{-402,160}}, color={0,0,127}));
+ connect(conWatPum2.y_actual, conWatPumSta[2].u) annotation (Line(points={{267,189},
+ {267,180},{-410,180},{-410,160},{-402,160}}, color={0,0,127}));
+ connect(weaBus.TDryBul, TOut.u)
+ annotation (Line(points={{-560,40},{-522,40}},
+ color={255,204,51},
+ thickness=0.5));
+ connect(TOut.y, chiPlaCon.TOut) annotation (Line(points={{-499,40},{-440,40},
+ {-440,32},{-264,32}}, color={0,0,127}));
+ connect(chiPlaCon.yChiWatIsoVal[1], chwIsoVal1.y) annotation (Line(points={{-216,66},
+ {-140,66},{-140,100},{240,100},{240,82}}, color={0,0,127}));
+ connect(chiPlaCon.yChiWatIsoVal[2], chwIsoVal2.y) annotation (Line(points={{-216,66},
+ {-140,66},{-140,100},{130,100},{130,10},{240,10},{240,-8}}, color={0,0,127}));
+ connect(booToRea2.y, pro2.u2) annotation (Line(points={{-18,200},{0,200},{0,214},
+ {18,214}}, color={0,0,127}));
+ connect(booToRea2.y, pro3.u2) annotation (Line(points={{-18,200},{0,200},{0,284},
+ {18,284}}, color={0,0,127}));
+ connect(pro3[1].y, cooTow1.y) annotation (Line(points={{42,290},{70,290},{70,410},
+ {350,410},{350,388},{342,388}}, color={0,0,127}));
+ connect(pro3[2].y, cooTow2.y) annotation (Line(points={{42,290},{70,290},{70,340},
+ {350,340},{350,318},{342,318}}, color={0,0,127}));
+ connect(weaBus.TWetBul, TWetBul.u) annotation (Line(points={{-560,40},{-540,40},
+ {-540,80},{-522,80}}, color={255,204,51},thickness=0.5));
+ connect(TWetBul.y, cooTow2.TAir) annotation (Line(points={{-499,80},{-490,80},
+ {-490,350},{360,350},{360,314},{342,314}}, color={0,0,127}));
+ connect(chiWatPum1.y_actual, chiWatPumSta[1].u) annotation (Line(points={{207,
+ -123},{207,-130},{-410,-130},{-410,-100},{-402,-100}}, color={0,0,127}));
+ connect(chiWatPum2.y_actual, chiWatPumSta[2].u) annotation (Line(points={{267,
+ -123},{267,-130},{-410,-130},{-410,-100},{-402,-100}}, color={0,0,127}));
+ connect(cooTow1.PFan, towSta[1].u) annotation (Line(points={{319,388},{-430,388},
+ {-430,-20},{-402,-20}}, color={0,0,127}));
+ connect(cooTow2.PFan, towSta[2].u) annotation (Line(points={{319,318},{300,318},
+ {300,388},{-430,388},{-430,-20},{-402,-20}}, color={0,0,127}));
+ connect(conWatLev.y, chiPlaCon.watLev) annotation (Line(points={{-498,0},{
+ -380,0},{-380,8},{-264,8}}, color={0,0,127}));
+ connect(chiPlaCon.yChiPumSpe[1], chiWatPum1.y) annotation (Line(points={{-216,
+ 124},{80,124},{80,-94},{220,-94},{220,-112},{212,-112}}, color={0,0,127}));
+ connect(chiPlaCon.yChiPumSpe[2], chiWatPum2.y) annotation (Line(points={{-216,
+ 124},{80,124},{80,-94},{280,-94},{280,-112},{272,-112}}, color={0,0,127}));
+ connect(chiPlaCon.yConWatPumSpe[1], conWatPum1.y) annotation (Line(points={{-216,92},
+ {120,92},{120,220},{220,220},{220,200},{212,200}}, color={0,0,127}));
+ connect(chiPlaCon.yConWatPumSpe[2], conWatPum2.y) annotation (Line(points={{-216,92},
+ {120,92},{120,220},{280,220},{280,200},{272,200}}, color={0,0,127}));
+ connect(chiPlaCon.yHeaPreConVal[1], cwIsoVal1.y) annotation (Line(points={{-216,98},
+ {70,98},{70,140},{380,140},{380,112}}, color={0,0,127}));
+ connect(chiPlaCon.yHeaPreConVal[2], cwIsoVal2.y) annotation (Line(points={{-216,98},
+ {70,98},{70,50},{380,50},{380,22}}, color={0,0,127}));
+ connect(chi1.P, chiSta[1].u) annotation (Line(points={{341,103},{350,103},{350,
+ 120},{90,120},{90,268},{-480,268},{-480,240},{-402,240}}, color={
+ 0,0,127}));
+ connect(cooTow1.yFanSpe, cooTowFan.u[1]) annotation (Line(points={{318,384},{
+ -420,384},{-420,199.5},{-402,199.5}}, color={0,0,127}));
+ connect(pro2[1].y, towIsoVal1.y) annotation (Line(points={{42,220},{80,220},{80,
+ 400},{380,400},{380,392}}, color={0,0,127}));
+ connect(pro2[2].y, towIsoVal2.y) annotation (Line(points={{42,220},{80,220},{80,
+ 332},{380,332},{380,322}}, color={0,0,127}));
+ connect(conWatSupTem.T, chiPlaCon.TConWatSup) annotation (Line(points={{271,280},
+ {280,280},{280,260},{-330,260},{-330,16},{-264,16}}, color={0,0,127}));
+ connect(TWetBul.y, cooTow1.TAir) annotation (Line(points={{-499,80},{-490,80},
+ {-490,350},{360,350},{360,384},{342,384}}, color={0,0,127}));
+ connect(cooTow2.yFanSpe, cooTowFan.u[2]) annotation (Line(points={{318,314},{
+ 290,314},{290,384},{-420,384},{-420,200.5},{-402,200.5}}, color={0,0,
+ 127}));
+ connect(chiPlaCon.TChiWatSupSet, chi2.TSet) annotation (Line(points={{-216,
+ 136},{60,136},{60,1},{318,1}},
+ color={0,0,127}));
+ connect(chiPlaCon.TChiWatSupSet, chi1.TSet) annotation (Line(points={{-216,
+ 136},{300,136},{300,91},{318,91}},
+ color={0,0,127}));
+ connect(chiPlaCon.yMinValPosSet, valByp.y) annotation (Line(points={{-216,60},
+ {-140,60},{-140,-200},{330,-200},{330,-208}}, color={0,0,127}));
+ connect(jun10.port_2, portCooCoiSup) annotation (Line(
+ points={{200,-230},{200,-360}},
+ color={0,127,255},
+ thickness=1));
+ connect(res.port_a, portCooCoiRet) annotation (Line(
+ points={{440,-310},{440,-360}},
+ color={0,127,255},
+ thickness=1));
+ connect(jun10.port_2, senRelPre.port_a) annotation (Line(
+ points={{200,-230},{200,-320},{320,-320}},
+ color={0,127,255},
+ thickness=1));
+ connect(senRelPre.port_b, res.port_a) annotation (Line(
+ points={{340,-320},{440,-320},{440,-310}},
+ color={0,127,255},
+ thickness=1));
+ connect(TChiWatSupResReq, chiPlaCon.TChiWatSupResReq) annotation (Line(points={{-580,
+ -160},{-320,-160},{-320,52},{-264,52}}, color={255,127,0}));
+ connect(chiPlaReq, chiPlaCon.chiPlaReq) annotation (Line(points={{-580,-190},
+ {-300,-190},{-300,48},{-264,48}},color={255,127,0}));
+ connect(chiWatIso.y, pre2.u)
+ annotation (Line(points={{-378,330},{-342,330}}, color={255,0,255}));
+ connect(conWatIso.y, pre3.u)
+ annotation (Line(points={{-378,290},{-342,290}}, color={255,0,255}));
+ connect(chiSta.y, pre4.u)
+ annotation (Line(points={{-378,240},{-356,240}}, color={255,0,255}));
+ connect(towSta.y, pre5.u)
+ annotation (Line(points={{-378,-20},{-362,-20}}, color={255,0,255}));
+ connect(chiPlaCon.yTowCelIsoVal, pro2.u1) annotation (Line(points={{-216,44},
+ {-160,44},{-160,226},{18,226}},color={0,0,127}));
+ connect(chiPlaCon.yTowFanSpe, pro3.u1) annotation (Line(points={{-216,32},{
+ -170,32},{-170,296},{18,296}},
+ color={0,0,127}));
+ connect(chiWatRet.T, chiPlaCon.TChiWatRet) annotation (Line(points={{429,-180},
+ {400,-180},{400,-50},{-470,-50},{-470,104},{-264,104}},
+ color={0,0,127}));
+ connect(conWatRetTem.T, chiPlaCon.TConWatRet) annotation (Line(points={{409,280},
+ {400,280},{400,254},{-320,254},{-320,100},{-264,100}},
+ color={0,0,127}));
+ connect(towIsoVal1.y_actual, chiPlaCon.uIsoVal[1]) annotation (Line(points={{375,387},
+ {366,387},{366,420},{-310,420},{-310,11},{-264,11}}, color={0,0,127}));
+ connect(towIsoVal2.y_actual, chiPlaCon.uIsoVal[2]) annotation (Line(points={{375,317},
+ {366,317},{366,420},{-310,420},{-310,13},{-264,13}}, color={0,0,127}));
+ connect(cooTowFan.y, chiPlaCon.uFanSpe) annotation (Line(points={{-378,200},{
+ -270,200},{-270,20},{-264,20}},
+ color={0,0,127}));
+ connect(conWatPum1.y_actual, chiPlaCon.uConWatPumSpe[1]) annotation (Line(
+ points={{207,189},{207,180},{-350,180},{-350,40},{-264,40}}, color={0,0,
+ 127}));
+ connect(conWatPum2.y_actual, chiPlaCon.uConWatPumSpe[2]) annotation (Line(
+ points={{267,189},{267,180},{-350,180},{-350,40},{-264,40}}, color={0,0,
+ 127}));
+ connect(pre5.y, chiPlaCon.uTowSta) annotation (Line(points={{-338,-20},{-330,
+ -20},{-330,4},{-264,4}},
+ color={255,0,255}));
+ connect(conWatPumSta.y, chiPlaCon.uConWatPum) annotation (Line(points={{-378,
+ 160},{-340,160},{-340,36},{-264,36}},
+ color={255,0,255}));
+ connect(pre3.y, chiPlaCon.uChiHeaCon) annotation (Line(points={{-318,290},{
+ -292,290},{-292,60},{-264,60}},
+ color={255,0,255}));
+ connect(pre3.y, chiPlaCon.uChiConIsoVal) annotation (Line(points={{-318,290},
+ {-292,290},{-292,156},{-264,156}},color={255,0,255}));
+ connect(pre2.y, chiPlaCon.uChiWatReq) annotation (Line(points={{-318,330},{
+ -280,330},{-280,152},{-264,152}},
+ color={255,0,255}));
+ connect(pre2.y, chiPlaCon.uConWatReq) annotation (Line(points={{-318,330},{
+ -280,330},{-280,148},{-264,148}},
+ color={255,0,255}));
+ connect(pre2.y, chiPlaCon.uChiIsoVal) annotation (Line(points={{-318,330},{
+ -280,330},{-280,140},{-264,140}},
+ color={255,0,255}));
+ connect(pre4.y, chiPlaCon.uChi) annotation (Line(points={{-332,240},{-300,240},
+ {-300,120},{-264,120}},
+ color={255,0,255}));
+ connect(chiWatPumSta.y, pre6.u)
+ annotation (Line(points={{-378,-100},{-362,-100}}, color={255,0,255}));
+ connect(pre6.y, chiPlaCon.uChiWatPum) annotation (Line(points={{-338,-100},{
+ -286,-100},{-286,144},{-264,144}},
+ color={255,0,255}));
+ connect(chiPlaCon.yTowCel, booToRea2.u) annotation (Line(points={{-216,38},{
+ -150,38},{-150,200},{-42,200}},
+ color={255,0,255}));
+ connect(chiPlaCon.yChi[1], chi1.on) annotation (Line(points={{-216,112},{-130,
+ 112},{-130,20},{280,20},{280,97},{318,97}},
+ color={255,0,255}));
+ connect(chiPlaCon.yChi[2], chi2.on) annotation (Line(points={{-216,112},{-130,
+ 112},{-130,20},{280,20},{280,7},{318,7}},
+ color={255,0,255}));
+ connect(senRelPre.p_rel, zerOrdHol.u) annotation (Line(points={{330,-329},{330,
+ -350},{358,-350}}, color={0,0,127}));
+ connect(zerOrdHol.y, chiPlaCon.dpChiWat_remote[1]) annotation (Line(points={{382,
+ -350},{400,-350},{400,-380},{-480,-380},{-480,128},{-264,128}},
+ color={0,
+ 0,127}));
+ connect(chwIsoVal1.y_actual, zerOrdHol1[1].u) annotation (Line(points={{235,77},
+ {100,77},{100,360},{-480,360},{-480,310},{-462,310}}, color={0,0,127}));
+ connect(chwIsoVal2.y_actual, zerOrdHol1[2].u) annotation (Line(points={{235,-13},
+ {220,-13},{220,-4},{100,-4},{100,360},{-480,360},{-480,310},{-462,310}},
+ color={0,0,127}));
+ connect(zerOrdHol1.y, chiPlaCon.uChiWatIsoVal) annotation (Line(points={{-438,
+ 310},{-360,310},{-360,56},{-264,56}}, color={0,0,127}));
+ connect(senVolFlo.V_flow, zerOrdHol2.u) annotation (Line(points={{429,-60},{320,
+ -60},{320,-100},{338,-100}}, color={0,0,127}));
+ connect(zerOrdHol2.y, chiPlaCon.VChiWat_flow) annotation (Line(points={{362,
+ -100},{380,-100},{380,-260},{-460,-260},{-460,124},{-264,124}},
+ color={0,0,127}));
+ annotation (Icon(coordinateSystem(preserveAspectRatio=false, extent={{-160,200},
+ {160,-200}}), graphics={
+ Rectangle(
+ extent={{-160,200},{160,-200}},
+ lineColor={0,0,0},
+ fillColor={255,255,255},
+ fillPattern=FillPattern.Solid),
+ Line(
+ points={{-110,52},{-110,64},{-110,86},{-90,86},{-90,76}},
+ color={238,46,47},
+ thickness=0.5),
+ Rectangle(extent={{-60,40},{60,0}}, lineColor={28,108,200},
+ fillColor={175,175,175},
+ fillPattern=FillPattern.Solid),
+ Line(points={{100,34},{60,34}}, color={238,46,47},
+ thickness=0.5),
+ Polygon(
+ points={{-4,7},{-4,1},{4,4},{-4,7}},
+ lineColor={0,0,0},
+ fillColor={255,255,255},
+ fillPattern=FillPattern.Solid,
+ origin={75,30}),
+ Polygon(
+ points={{4,7},{4,1},{-4,4},{4,7}},
+ lineColor={0,0,0},
+ fillColor={255,255,255},
+ fillPattern=FillPattern.Solid,
+ origin={83,30}),
+ Line(points={{-60,6},{-120,6}}, color={28,108,200},
+ thickness=0.5),
+ Polygon(
+ points={{-4,7},{-4,1},{4,4},{-4,7}},
+ lineColor={0,0,0},
+ fillColor={255,255,255},
+ fillPattern=FillPattern.Solid,
+ origin={-83,2}),
+ Polygon(
+ points={{4,7},{4,1},{-4,4},{4,7}},
+ lineColor={0,0,0},
+ fillColor={255,255,255},
+ fillPattern=FillPattern.Solid,
+ origin={-75,2}),
+ Rectangle(extent={{-60,-20},{60,-60}},
+ lineColor={28,108,200},
+ fillColor={175,175,175},
+ fillPattern=FillPattern.Solid),
+ Line(points={{100,-26},{60,-26}},color={238,46,47},
+ thickness=0.5),
+ Polygon(
+ points={{-4,7},{-4,1},{4,4},{-4,7}},
+ lineColor={0,0,0},
+ fillColor={255,255,255},
+ fillPattern=FillPattern.Solid,
+ origin={75,-30}),
+ Polygon(
+ points={{4,7},{4,1},{-4,4},{4,7}},
+ lineColor={0,0,0},
+ fillColor={255,255,255},
+ fillPattern=FillPattern.Solid,
+ origin={83,-30}),
+ Line(points={{-60,-54},{-120,-54}},
+ color={28,108,200},
+ thickness=0.5),
+ Polygon(
+ points={{-4,7},{-4,1},{4,4},{-4,7}},
+ lineColor={0,0,0},
+ fillColor={255,255,255},
+ fillPattern=FillPattern.Solid,
+ origin={-83,-58}),
+ Polygon(
+ points={{4,7},{4,1},{-4,4},{4,7}},
+ lineColor={0,0,0},
+ fillColor={255,255,255},
+ fillPattern=FillPattern.Solid,
+ origin={-75,-58}),
+ Rectangle(
+ extent={{-48,178},{-16,120}},
+ lineColor={0,0,0},
+ lineThickness=0.5,
+ fillColor={255,255,255},
+ fillPattern=FillPattern.Solid),
+ Rectangle(
+ extent={{-35,178},{-30,171}},
+ lineColor={175,175,175},
+ fillColor={175,175,175},
+ fillPattern=FillPattern.Solid),
+ Ellipse(
+ extent={{-32,172},{-48,168}},
+ lineColor={175,175,175},
+ fillColor={175,175,175},
+ fillPattern=FillPattern.Solid),
+ Ellipse(
+ extent={{-16,172},{-32,168}},
+ lineColor={175,175,175},
+ fillColor={175,175,175},
+ fillPattern=FillPattern.Solid),
+ Line(
+ points={{-48,130},{-16,130}},
+ color={28,108,200},
+ smooth=Smooth.Bezier,
+ pattern=LinePattern.DashDot),
+ Rectangle(
+ extent={{16,178},{48,120}},
+ lineColor={0,0,0},
+ lineThickness=0.5,
+ fillColor={255,255,255},
+ fillPattern=FillPattern.Solid),
+ Rectangle(
+ extent={{29,178},{34,171}},
+ lineColor={175,175,175},
+ fillColor={175,175,175},
+ fillPattern=FillPattern.Solid),
+ Ellipse(
+ extent={{32,172},{16,168}},
+ lineColor={175,175,175},
+ fillColor={175,175,175},
+ fillPattern=FillPattern.Solid),
+ Ellipse(
+ extent={{48,172},{32,168}},
+ lineColor={175,175,175},
+ fillColor={175,175,175},
+ fillPattern=FillPattern.Solid),
+ Line(
+ points={{16,130},{48,130}},
+ color={28,108,200},
+ smooth=Smooth.Bezier,
+ pattern=LinePattern.DashDot),
+ Line(
+ points={{-48,164},{-58,164}},
+ color={238,46,47},
+ thickness=0.5),
+ Line(
+ points={{-58,164},{-58,112}},
+ color={238,46,47},
+ thickness=0.5),
+ Line(
+ points={{-60,34},{-100,34}},
+ color={238,46,47},
+ thickness=0.5),
+ Ellipse(
+ extent={{-116,76},{-104,64}},
+ lineColor={0,0,0},
+ fillColor={255,255,255},
+ fillPattern=FillPattern.Solid),
+ Line(
+ points={{-60,-28},{-100,-28}},
+ color={238,46,47},
+ thickness=0.5),
+ Polygon(
+ points={{-116,70},{-104,70},{-110,64},{-116,70}},
+ lineColor={0,0,0},
+ fillColor={0,0,0},
+ fillPattern=FillPattern.Solid),
+ Ellipse(
+ extent={{-96,76},{-84,64}},
+ lineColor={0,0,0},
+ fillColor={255,255,255},
+ fillPattern=FillPattern.Solid),
+ Polygon(
+ points={{-96,70},{-84,70},{-90,64},{-96,70}},
+ lineColor={0,0,0},
+ fillColor={0,0,0},
+ fillPattern=FillPattern.Solid),
+ Line(
+ points={{-100,102},{32,102}},
+ color={238,46,47},
+ thickness=0.5),
+ Line(points={{32,120},{32,102}}, color={238,46,47},
+ thickness=0.5),
+ Line(
+ points={{-32,120},{-32,102}},
+ color={238,46,47},
+ thickness=0.5),
+ Line(
+ points={{-90,64},{-90,52},{-110,52}},
+ color={238,46,47},
+ thickness=0.5),
+ Line(
+ points={{-100,86},{-100,102}},
+ color={238,46,47},
+ thickness=0.5),
+ Line(
+ points={{-100,52},{-100,10}},
+ color={238,46,47},
+ thickness=0.5),
+ Line(points={{-58,130}}, color={0,0,0}),
+ Line(
+ points={{100,-26},{100,2}},
+ color={238,46,47},
+ thickness=0.5),
+ Line(
+ points={{120,6},{60,6}},
+ color={28,108,200},
+ thickness=0.5),
+ Line(
+ points={{120,-54},{60,-54}},
+ color={28,108,200},
+ thickness=0.5),
+ Line(
+ points={{-130,-104},{-130,-92},{-130,-70},{-110,-70},{-110,-80}},
+ color={28,108,200},
+ thickness=0.5),
+ Ellipse(
+ extent={{-136,-80},{-124,-92}},
+ lineColor={0,0,0},
+ fillColor={255,255,255},
+ fillPattern=FillPattern.Solid),
+ Polygon(
+ points={{-136,-86},{-124,-86},{-130,-92},{-136,-86}},
+ lineColor={0,0,0},
+ fillColor={0,0,0},
+ fillPattern=FillPattern.Solid),
+ Ellipse(
+ extent={{-116,-80},{-104,-92}},
+ lineColor={0,0,0},
+ fillColor={255,255,255},
+ fillPattern=FillPattern.Solid),
+ Polygon(
+ points={{-116,-86},{-104,-86},{-110,-92},{-116,-86}},
+ lineColor={0,0,0},
+ fillColor={0,0,0},
+ fillPattern=FillPattern.Solid),
+ Line(
+ points={{-110,-92},{-110,-104},{-130,-104}},
+ color={28,108,200},
+ thickness=0.5),
+ Line(
+ points={{-120,-70},{-120,-54}},
+ color={28,108,200},
+ thickness=0.5),
+ Line(
+ points={{-120,-104},{-120,-200}},
+ color={28,108,200},
+ thickness=0.5),
+ Line(
+ points={{-120,6},{-120,-54}},
+ color={28,108,200},
+ thickness=0.5),
+ Line(
+ points={{120,6},{120,-200}},
+ color={28,108,200},
+ thickness=0.5),
+ Line(points={{120,-120},{-120,-120}},
+ color={28,108,200},
+ thickness=0.5),
+ Polygon(
+ points={{-4,7},{-4,1},{4,4},{-4,7}},
+ lineColor={0,0,0},
+ fillColor={255,255,255},
+ fillPattern=FillPattern.Solid,
+ origin={-3,-124}),
+ Polygon(
+ points={{4,7},{4,1},{-4,4},{4,7}},
+ lineColor={0,0,0},
+ fillColor={255,255,255},
+ fillPattern=FillPattern.Solid,
+ origin={5,-124}),
+ Text(
+ extent={{-22,30},{24,12}},
+ textColor={0,0,0},
+ textString="CH1"),
+ Text(
+ extent={{-22,-28},{24,-46}},
+ textColor={0,0,0},
+ textString="CH2"),
+ Line(
+ points={{-100,-28},{-100,2}},
+ color={238,46,47},
+ thickness=0.5),
+ Line(
+ points={{100,34},{100,10}},
+ color={238,46,47},
+ thickness=0.5),
+ Text(
+ extent={{-60,200},{52,264}},
+ textString="%name",
+ textColor={0,0,255}),
+ Line(
+ points={{-58,112},{-34,112}},
+ color={238,46,47},
+ thickness=0.5),
+ Line(
+ points={{6,112},{-30,112}},
+ color={238,46,47},
+ thickness=0.5),
+ Line(
+ points={{6,112},{6,164},{16,164}},
+ color={238,46,47},
+ thickness=0.5),
+ Line(
+ points={{6,112},{28,112}},
+ color={238,46,47},
+ thickness=0.5),
+ Line(
+ points={{100,34},{100,112},{34,112}},
+ color={238,46,47},
+ thickness=0.5)}),
+ Diagram(coordinateSystem(preserveAspectRatio=false,
+ extent={{-560,-440},{560,440}})));
+end RP1711;
diff --git a/Buildings/Examples/ChillerPlants/RP1711/BaseClasses/YorkCalc.mo b/Buildings/Examples/ChillerPlants/RP1711/BaseClasses/YorkCalc.mo
new file mode 100644
index 00000000000..3faf89c3c3d
--- /dev/null
+++ b/Buildings/Examples/ChillerPlants/RP1711/BaseClasses/YorkCalc.mo
@@ -0,0 +1,22 @@
+within Buildings.Examples.ChillerPlants.RP1711.BaseClasses;
+model YorkCalc
+ extends Buildings.Fluid.HeatExchangers.CoolingTowers.YorkCalc;
+
+ Buildings.Controls.OBC.CDL.Interfaces.RealOutput yFanSpe annotation (Placement(
+ transformation(extent={{100,30},{120,50}}), iconTransformation(extent={{100,20},
+ {140,60}})));
+ Buildings.Controls.OBC.CDL.Discrete.UnitDelay uniDel(final samplePeriod=1) "Break loop"
+ annotation (Placement(transformation(extent={{60,30},{80,50}})));
+
+equation
+ connect(y, uniDel.u) annotation (Line(points={{-120,80},{40,80},{40,40},{58,40}},
+ color={0,0,127}));
+ connect(uniDel.y, yFanSpe)
+ annotation (Line(points={{82,40},{110,40}}, color={0,0,127}));
+ annotation (Icon(coordinateSystem(preserveAspectRatio=false), graphics={
+ Text(
+ extent={{72,34},{106,16}},
+ textColor={0,0,127},
+ textString="yFanSpe")}), Diagram(
+ coordinateSystem(preserveAspectRatio=false)));
+end YorkCalc;
diff --git a/Buildings/Examples/ChillerPlants/RP1711/BaseClasses/package.mo b/Buildings/Examples/ChillerPlants/RP1711/BaseClasses/package.mo
new file mode 100644
index 00000000000..ad0f300868f
--- /dev/null
+++ b/Buildings/Examples/ChillerPlants/RP1711/BaseClasses/package.mo
@@ -0,0 +1,5 @@
+within Buildings.Examples.ChillerPlants.RP1711;
+package BaseClasses
+ extends Modelica.Icons.BasesPackage;
+
+end BaseClasses;
diff --git a/Buildings/Examples/ChillerPlants/RP1711/BaseClasses/package.order b/Buildings/Examples/ChillerPlants/RP1711/BaseClasses/package.order
new file mode 100644
index 00000000000..36f7979e96f
--- /dev/null
+++ b/Buildings/Examples/ChillerPlants/RP1711/BaseClasses/package.order
@@ -0,0 +1,3 @@
+PartialChillerPlant
+RP1711
+YorkCalc
diff --git a/Buildings/Examples/ChillerPlants/RP1711/ClosedLoop.mo b/Buildings/Examples/ChillerPlants/RP1711/ClosedLoop.mo
new file mode 100644
index 00000000000..88ae101baeb
--- /dev/null
+++ b/Buildings/Examples/ChillerPlants/RP1711/ClosedLoop.mo
@@ -0,0 +1,242 @@
+within Buildings.Examples.ChillerPlants.RP1711;
+model ClosedLoop
+ extends Modelica.Icons.Example;
+
+ package MediumW = Buildings.Media.Water;
+ package MediumA = Buildings.Media.Air;
+
+ parameter Modelica.Media.Interfaces.Types.Temperature TRet=301.15
+ "Room return air temperature";
+ parameter Modelica.Units.SI.MassFlowRate mAir_flow_nominal=10
+ "Nominal mass flow rate of air";
+ parameter Modelica.Units.SI.MassFlowRate mWater_flow_nominal=6
+ "Nominal mass flow rate of water";
+
+ parameter Modelica.Units.SI.ThermalConductance UA_nominal=4748
+ "Total thermal conductance at nominal flow, from textbook";
+
+ Buildings.Examples.ChillerPlants.RP1711.BaseClasses.RP1711 chiPla(
+ final mChi_flow_nominal=mWater_flow_nominal,
+ final mCon_flow_nominal=mWater_flow_nominal,
+ final dTChi=7) "Chiller plant with controller"
+ annotation (Placement(transformation(extent={{104,40},{136,80}})));
+ Buildings.Fluid.HeatExchangers.WetCoilEffectivenessNTU cooCoi(
+ redeclare package Medium1 = MediumW,
+ redeclare package Medium2 = MediumA,
+ final m1_flow_nominal=mWater_flow_nominal,
+ final m2_flow_nominal=mAir_flow_nominal,
+ final show_T=true,
+ final dp1_nominal=3000,
+ final dp2_nominal=600,
+ final UA_nominal=UA_nominal) "Air handler unit cooling coil"
+ annotation (Placement(transformation(extent={{110,-20},{130,0}})));
+ Buildings.Fluid.Sources.Boundary_pT sinAir(
+ redeclare package Medium = MediumA,
+ nPorts=1) "Air sink"
+ annotation (Placement(transformation(extent={{0,-130},{20,-110}})));
+
+ Buildings.BoundaryConditions.WeatherData.ReaderTMY3 weaDat(
+ filNam=Modelica.Utilities.Files.loadResource("modelica://Buildings/Resources/weatherdata/USA_IL_Chicago-OHare.Intl.AP.725300_TMY3.mos"),
+ computeWetBulbTemperature=false) "Weather data reader"
+ annotation (Placement(transformation(extent={{40,60},{60,80}})));
+ Buildings.BoundaryConditions.WeatherData.Bus weaBus "Weather data bus"
+ annotation (Placement(transformation(extent={{70,80},{90,100}}),
+ iconTransformation(extent={{-70,30},{-50,50}})));
+ Buildings.Fluid.Actuators.Valves.TwoWayLinear cooCoiVal(
+ redeclare package Medium = MediumW,
+ final m_flow_nominal=mWater_flow_nominal,
+ final show_T=true,
+ final dpValve_nominal=20000,
+ final dpFixed_nominal=60000) "Cooling coil valve"
+ annotation (Placement(transformation(
+ extent={{10,-10},{-10,10}},rotation=90,origin={80,20})));
+ Buildings.Fluid.FixedResistances.Junction mixAir(
+ redeclare package Medium = MediumA,
+ final m_flow_nominal={0.7*mAir_flow_nominal,mAir_flow_nominal,0.3*mAir_flow_nominal},
+ final dp_nominal=fill(0, 3))
+ "Mix return air and outdoor air"
+ annotation (Placement(transformation(extent={{10,10},{-10,-10}},
+ rotation=-90,origin={160,-80})));
+ Buildings.Fluid.Sources.MassFlowSource_T outAir(
+ redeclare package Medium = MediumA,
+ final m_flow=0.3*mAir_flow_nominal,
+ final use_T_in=true,
+ nPorts=1) "Outdoor air"
+ annotation (Placement(transformation(extent={{240,-90},{220,-70}})));
+ Buildings.Fluid.Sources.MassFlowSource_T retAir(
+ redeclare package Medium = MediumA,
+ final m_flow=0.7*mAir_flow_nominal,
+ final T=TRet,
+ nPorts=1) "Return air"
+ annotation (Placement(transformation(extent={{240,-130},{220,-110}})));
+ Buildings.Fluid.Sensors.TemperatureTwoPort supAirTem(
+ redeclare package Medium = MediumA,
+ final m_flow_nominal=mAir_flow_nominal)
+ "Supply air temperature"
+ annotation (Placement(transformation(extent={{10,-10},{-10,10}},
+ rotation=90,origin={80,-100})));
+ Buildings.Controls.OBC.CDL.Continuous.Sources.Constant airSupTemSet(
+ final k=273.15 + 18)
+ "Supply air temperature setpoint"
+ annotation (Placement(transformation(extent={{-240,-50},{-220,-30}})));
+ Buildings.Controls.OBC.CDL.Continuous.Subtract temDif
+ "Difference between supply air temperature and its setpoint"
+ annotation (Placement(transformation(extent={{-220,110},{-200,130}})));
+ Buildings.Controls.OBC.CDL.Continuous.Hysteresis hys(uLow=2.9, uHigh=3.1)
+ "Higher than setpoint by 3 degC"
+ annotation (Placement(transformation(extent={{-180,110},{-160,130}})));
+ Buildings.Controls.OBC.CDL.Continuous.Hysteresis hys1(uLow=1.9, uHigh=2.1)
+ "Higher than setpoint by 2 degC"
+ annotation (Placement(transformation(extent={{-180,40},{-160,60}})));
+ Buildings.Controls.OBC.CDL.Logical.TrueDelay truDel(delayTime=120)
+ "Check if the temperature has been higher than setpoint by sufficient time"
+ annotation (Placement(transformation(extent={{-140,110},{-120,130}})));
+ Buildings.Controls.OBC.CDL.Logical.TrueDelay truDel1(delayTime=120)
+ "Check if the temperature has been higher than setpoint by sufficient time"
+ annotation (Placement(transformation(extent={{-140,40},{-120,60}})));
+ Buildings.Controls.OBC.CDL.Integers.Switch chiWatResReq
+ "Chilled water reset request"
+ annotation (Placement(transformation(extent={{-20,110},{0,130}})));
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant conInt(final k=3) "Constant three"
+ annotation (Placement(transformation(extent={{-140,150},{-120,170}})));
+ Buildings.Controls.OBC.CDL.Integers.Switch intSwi1
+ "Chilled water reset request"
+ annotation (Placement(transformation(extent={{-60,40},{-40,60}})));
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant conInt1(final k=2) "Constant two"
+ annotation (Placement(transformation(extent={{-140,70},{-120,90}})));
+ Buildings.Controls.OBC.CDL.Continuous.PID conPID(final reverseActing=false)
+ "Chilled water valve control"
+ annotation (Placement(transformation(extent={{-200,-50},{-180,-30}})));
+ Buildings.Controls.OBC.CDL.Continuous.GreaterThreshold greThr(t=0.95, h=0.1)
+ "Send one request when the input is greater than threshold unit it is less than threshold minus hysteresis"
+ annotation (Placement(transformation(extent={{-140,-50},{-120,-30}})));
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant conInt2(final k=1) "Constant one"
+ annotation (Placement(transformation(extent={{-140,-10},{-120,10}})));
+ Buildings.Controls.OBC.CDL.Integers.Sources.Constant conInt3(final k=0) "Constant zero"
+ annotation (Placement(transformation(extent={{-140,-90},{-120,-70}})));
+ Buildings.Controls.OBC.CDL.Integers.Switch intSwi2
+ "Chilled water reset request"
+ annotation (Placement(transformation(extent={{-100,-50},{-80,-30}})));
+ Buildings.Fluid.Sources.Boundary_pT bou(
+ redeclare package Medium = MediumW, nPorts=1)
+ "Reference pressure"
+ annotation (Placement(transformation(extent={{200,-14},{180,6}})));
+ Controls.OBC.CDL.Integers.Switch chiPlaReq "Chiller plant request"
+ annotation (Placement(transformation(extent={{-20,-30},{0,-10}})));
+ Controls.OBC.CDL.Continuous.GreaterThreshold greThr1(t=0.95, h=0.85)
+ "Send one request when the input is greater than threshold unit it is less than threshold minus hysteresis"
+ annotation (Placement(transformation(extent={{-60,-30},{-40,-10}})));
+equation
+ connect(weaDat.weaBus, weaBus) annotation (Line(
+ points={{60,70},{80,70},{80,90}},
+ color={255,204,51},
+ thickness=0.5), Text(
+ string="%second",
+ index=1,
+ extent={{6,3},{6,3}},
+ horizontalAlignment=TextAlignment.Left));
+ connect(chiPla.portCooCoiSup, cooCoiVal.port_a) annotation (Line(
+ points={{108,40},{108,34},{80,34},{80,30}},
+ color={0,127,255},
+ thickness=0.5));
+ connect(cooCoiVal.port_b, cooCoi.port_a1) annotation (Line(
+ points={{80,10},{80,-4},{110,-4}},
+ color={0,127,255},
+ thickness=0.5));
+ connect(chiPla.portCooCoiRet, cooCoi.port_b1) annotation (Line(
+ points={{132,40},{132,-4},{130,-4}},
+ color={0,127,255},
+ thickness=0.5));
+ connect(retAir.ports[1], mixAir.port_1) annotation (Line(points={{220,-120},{160,
+ -120},{160,-90}}, color={0,127,255},
+ thickness=0.5));
+ connect(outAir.ports[1], mixAir.port_3)
+ annotation (Line(points={{220,-80},{170,-80}}, color={0,127,255},
+ thickness=0.5));
+ connect(mixAir.port_2, cooCoi.port_a2) annotation (Line(
+ points={{160,-70},{160,-16},{130,-16}},
+ color={0,127,255},
+ thickness=0.5));
+ connect(weaBus.TDryBul, outAir.T_in) annotation (Line(
+ points={{80,90},{250,90},{250,-76},{242,-76}},
+ color={255,204,51},
+ thickness=0.5), Text(
+ string="%first",
+ index=-1,
+ extent={{6,3},{6,3}},
+ horizontalAlignment=TextAlignment.Left));
+ connect(cooCoi.port_b2, supAirTem.port_a) annotation (Line(
+ points={{110,-16},{80,-16},{80,-90}},
+ color={0,127,255},
+ thickness=0.5));
+ connect(supAirTem.port_b, sinAir.ports[1]) annotation (Line(points={{80,-110},
+ {80,-120},{20,-120}}, color={0,127,255},
+ thickness=0.5));
+ connect(conInt.y, chiWatResReq.u1) annotation (Line(points={{-118,160},{-30,160},
+ {-30,128},{-22,128}}, color={255,127,0}));
+ connect(truDel.y, chiWatResReq.u2)
+ annotation (Line(points={{-118,120},{-22,120}}, color={255,0,255}));
+ connect(temDif.y, hys.u)
+ annotation (Line(points={{-198,120},{-182,120}}, color={0,0,127}));
+ connect(temDif.y, hys1.u) annotation (Line(points={{-198,120},{-190,120},{-190,
+ 50},{-182,50}}, color={0,0,127}));
+ connect(hys1.y, truDel1.u)
+ annotation (Line(points={{-158,50},{-142,50}}, color={255,0,255}));
+ connect(hys.y, truDel.u)
+ annotation (Line(points={{-158,120},{-142,120}}, color={255,0,255}));
+ connect(conInt1.y, intSwi1.u1) annotation (Line(points={{-118,80},{-70,80},{
+ -70,58},{-62,58}},
+ color={255,127,0}));
+ connect(truDel1.y, intSwi1.u2) annotation (Line(points={{-118,50},{-62,50}},
+ color={255,0,255}));
+ connect(intSwi1.y, chiWatResReq.u3) annotation (Line(points={{-38,50},{-30,50},
+ {-30,112},{-22,112}}, color={255,127,0}));
+ connect(airSupTemSet.y, conPID.u_s)
+ annotation (Line(points={{-218,-40},{-202,-40}}, color={0,0,127}));
+ connect(conPID.y, greThr.u)
+ annotation (Line(points={{-178,-40},{-142,-40}}, color={0,0,127}));
+ connect(greThr.y, intSwi2.u2)
+ annotation (Line(points={{-118,-40},{-102,-40}}, color={255,0,255}));
+ connect(conInt2.y, intSwi2.u1) annotation (Line(points={{-118,0},{-110,0},{-110,
+ -32},{-102,-32}}, color={255,127,0}));
+ connect(conInt3.y, intSwi2.u3) annotation (Line(points={{-118,-80},{-110,-80},
+ {-110,-48},{-102,-48}}, color={255,127,0}));
+ connect(intSwi2.y, intSwi1.u3) annotation (Line(points={{-78,-40},{-70,-40},{
+ -70,42},{-62,42}},
+ color={255,127,0}));
+ connect(weaDat.weaBus, chiPla.weaBus) annotation (Line(
+ points={{60,70},{80,70},{80,77},{109,77}},
+ color={255,204,51},
+ thickness=0.5));
+ connect(cooCoi.port_b1, bou.ports[1])
+ annotation (Line(points={{130,-4},{180,-4}}, color={0,127,255}));
+ connect(airSupTemSet.y, temDif.u2) annotation (Line(points={{-218,-40},{-210,
+ -40},{-210,40},{-240,40},{-240,114},{-222,114}}, color={0,0,127}));
+ connect(supAirTem.T, conPID.u_m) annotation (Line(points={{69,-100},{-190,
+ -100},{-190,-52}}, color={0,0,127}));
+ connect(supAirTem.T, temDif.u1) annotation (Line(points={{69,-100},{-250,-100},
+ {-250,126},{-222,126}}, color={0,0,127}));
+ connect(conPID.y, cooCoiVal.y) annotation (Line(points={{-178,-40},{-160,-40},
+ {-160,20},{68,20}}, color={0,0,127}));
+ connect(conPID.y, greThr1.u) annotation (Line(points={{-178,-40},{-160,-40},{
+ -160,-20},{-62,-20}}, color={0,0,127}));
+ connect(greThr1.y, chiPlaReq.u2)
+ annotation (Line(points={{-38,-20},{-22,-20}}, color={255,0,255}));
+ connect(conInt2.y, chiPlaReq.u1) annotation (Line(points={{-118,0},{-30,0},{
+ -30,-12},{-22,-12}}, color={255,127,0}));
+ connect(conInt3.y, chiPlaReq.u3) annotation (Line(points={{-118,-80},{-30,-80},
+ {-30,-28},{-22,-28}}, color={255,127,0}));
+
+ connect(chiWatResReq.y, chiPla.TChiWatSupResReq) annotation (Line(points={{2,
+ 120},{20,120},{20,47},{102,47}}, color={255,127,0}));
+ connect(chiPlaReq.y, chiPla.chiPlaReq) annotation (Line(points={{2,-20},{20,
+ -20},{20,43},{102,43}}, color={255,127,0}));
+annotation (experiment(
+ StartTime=15638400,
+ StopTime=15897600,
+ Tolerance=1e-06),
+ __Dymola_Commands(file="modelica://Buildings/Resources/Scripts/Dymola/Examples/ChillerPlant/RP1711/ClosedLoop.mos"
+ "Simulate and plot"),
+ Diagram(coordinateSystem(extent={{-280,-220},{280,220}})), Icon(
+ coordinateSystem(extent={{-100,-100},{100,100}})));
+end ClosedLoop;
diff --git a/Buildings/Examples/ChillerPlants/RP1711/package.mo b/Buildings/Examples/ChillerPlants/RP1711/package.mo
new file mode 100644
index 00000000000..d3da9f6aa99
--- /dev/null
+++ b/Buildings/Examples/ChillerPlants/RP1711/package.mo
@@ -0,0 +1,5 @@
+within Buildings.Examples.ChillerPlants;
+package RP1711 "Closed loop test of chiller plant sequences from ASHRAE RP1711"
+ extends Modelica.Icons.ExamplesPackage;
+
+end RP1711;
diff --git a/Buildings/Examples/ChillerPlants/RP1711/package.order b/Buildings/Examples/ChillerPlants/RP1711/package.order
new file mode 100644
index 00000000000..d3bce28311c
--- /dev/null
+++ b/Buildings/Examples/ChillerPlants/RP1711/package.order
@@ -0,0 +1,2 @@
+ClosedLoop
+BaseClasses
diff --git a/Buildings/Examples/ChillerPlants/package.mo b/Buildings/Examples/ChillerPlants/package.mo
new file mode 100644
index 00000000000..750e1ec35bb
--- /dev/null
+++ b/Buildings/Examples/ChillerPlants/package.mo
@@ -0,0 +1,11 @@
+within Buildings.Examples;
+package ChillerPlants
+
+ extends Modelica.Icons.ExamplesPackage;
+
+annotation (Documentation(info="
+
+This package includes chiller plant examples.
+
+"));
+end ChillerPlants;
diff --git a/Buildings/Examples/ChillerPlants/package.order b/Buildings/Examples/ChillerPlants/package.order
new file mode 100644
index 00000000000..fef2505575d
--- /dev/null
+++ b/Buildings/Examples/ChillerPlants/package.order
@@ -0,0 +1,2 @@
+DataCenter
+RP1711
diff --git a/Buildings/Examples/package.order b/Buildings/Examples/package.order
index 9a791ee5b35..c7134d238b7 100644
--- a/Buildings/Examples/package.order
+++ b/Buildings/Examples/package.order
@@ -1,5 +1,6 @@
Tutorial
-ChillerPlant
+BoilerPlant
+ChillerPlants
DualFanDualDuct
HydronicHeating
ScalableBenchmarks
diff --git a/Buildings/Fluid/Movers/Data/Pumps/BoilerPlant.mo b/Buildings/Fluid/Movers/Data/Pumps/BoilerPlant.mo
new file mode 100644
index 00000000000..e76d3e0a6f9
--- /dev/null
+++ b/Buildings/Fluid/Movers/Data/Pumps/BoilerPlant.mo
@@ -0,0 +1,23 @@
+within Buildings.Fluid.Movers.Data.Pumps;
+record BoilerPlant "Pump curves for BoilerPlant model in Examples package"
+ extends Generic(
+ use_powerCharacteristic=true,
+ speed_rpm_nominal=1450,
+ power(V_flow={0, 0.11345, 0.2269}, P={0, 7.5*28985.04, 7.5*57970.08}),
+ pressure(V_flow={0, 0.11345, 0.2269}, dp={70000,35000,0}));
+ annotation (
+defaultComponentPrefixes="parameter",
+defaultComponentName="per",
+Documentation(info="
+Pump curves generated using sizing parameters derived from EnergyPlus prototype
+model for large office building.
+", revisions="
+
+-
+October 12, 2021, by Karthik Devaprasad:
+
+First added to Buildings library.
+
+
+"));
+end BoilerPlant;
diff --git a/Buildings/Fluid/Movers/Data/Pumps/package.order b/Buildings/Fluid/Movers/Data/Pumps/package.order
index 08113d759f9..ba97d0885c1 100644
--- a/Buildings/Fluid/Movers/Data/Pumps/package.order
+++ b/Buildings/Fluid/Movers/Data/Pumps/package.order
@@ -1 +1,2 @@
+BoilerPlant
Wilo
diff --git a/Buildings/Resources/Data/Examples/BoilerPlant/ClosedLoopTest.txt b/Buildings/Resources/Data/Examples/BoilerPlant/ClosedLoopTest.txt
new file mode 100644
index 00000000000..11898306d03
--- /dev/null
+++ b/Buildings/Resources/Data/Examples/BoilerPlant/ClosedLoopTest.txt
@@ -0,0 +1,525602 @@
+#1
+double tab1(525600,5)
+1,105821.812,0,0,15.6
+2,807845.6676,0,0,15.6
+3,299668.1534,1221872.114,525196.0924,15.6
+4,97202.98432,235605.5535,0,15.6
+5,373366.7733,619516.3195,191891.136,15.6
+6,332196.5566,500644.3728,584924.4931,15.6
+7,318846.4853,511132.6945,36969.46025,15.6
+8,315850.6809,523538.2815,107195.5139,15.6
+9,319669.5251,509580.3421,1281098.159,15.6
+10,320086.1931,513290.6953,46353.1303,15.6
+11,317512.5481,508909.3715,101289.5841,15.6
+12,318357.407,509050.1609,629101.6991,15.6
+13,317328.3442,507822.1851,50541.9415,15.6
+14,316390.6501,506954.3933,100867.6409,15.6
+15,316657.4699,504349.4121,650562.3809,15.6
+16,315342.7456,505035.2356,45602.99673,15.6
+17,654184.0774,502401.1233,238438.2902,15.6
+18,314683.0114,501683.8267,43574.07448,15.6
+19,312987.5695,500648.078,45028.08439,15.6
+20,313722.6465,500021.7279,41990.73053,15.6
+21,312258.3557,496969.2568,181451.582,15.6
+22,311479.0741,497165.2272,179110.9189,15.6
+23,311328.2787,495763.7218,39023.95727,15.6
+24,310144.2367,495345.1498,40107.53748,15.6
+25,311020.138,491899.1729,54678.04578,15.6
+26,308973.5716,492989.1094,189317.7439,15.6
+27,308161.5826,491182.6565,35645.06383,15.6
+28,309351.2184,490292.9493,35581.4658,15.6
+29,306779.9105,487582.2744,34239.04947,15.6
+30,307076.135,488000.048,176044.959,15.6
+31,264836.3753,486281.6287,128066.5003,15.6
+32,0,484792.4747,133701.14,15.6
+33,103077.3202,15350.89346,128327.242,15.6
+34,27033.82144,15260.05806,123838.8455,15.6
+35,774023.4439,1150999.265,0,15.6
+36,245586.9049,223588.638,0,15.6
+37,104534.2587,448495.7194,0,15.6
+38,349390.6732,503857.3506,0,15.6
+39,312850.4776,521092.0482,0,15.6
+40,297733.4859,461845.3675,0,15.6
+41,297262.1843,463528.3884,199443.3926,15.6
+42,300079.3741,482356.9996,98199.37019,15.6
+43,299853.5023,471553.6536,95599.14488,15.6
+44,298699.2693,471478.7681,20486.42883,15.6
+45,298791.2496,470591.6335,22522.62291,15.6
+46,297354.0027,469151.4567,15775.78036,15.6
+47,297923.2939,468875.1455,657303.7576,15.6
+48,295987.3452,467579.1437,17264.50143,15.6
+49,296606.2326,467518.2393,19879.02829,15.6
+50,295086.2358,465292.283,16756.03108,15.6
+51,294597.2648,464697.7645,16742.58135,15.6
+52,294674.2695,463314.5427,16043.41024,15.6
+53,293569.9781,462705.196,15458.46897,15.6
+54,292395.8687,460278.1707,14740.5572,15.6
+55,293247.2944,460626.8889,14711.09312,15.6
+56,291508.7316,458605.817,14571.04114,15.6
+57,290842.9384,458040.7333,14277.04738,15.6
+58,291291.6868,455727.4943,14257.19526,15.6
+59,289961.6241,456150.254,14086.11825,15.6
+60,289676.235,453203.5342,13938.06122,15.6
+61,291752.9148,454333.3835,13782.81274,15.6
+62,290482.3201,455266.3947,13993.81639,15.6
+63,590351.6755,454948.8361,13722.74104,15.6
+64,252075.1812,455127.2448,13839.39222,15.6
+65,100392.7856,14304.4465,13806.58845,15.6
+66,22629.87238,14338.85907,13650.44277,15.6
+67,36552.88746,1101045.395,13787.29364,15.6
+68,757871.5446,212176.1479,13617.59611,15.6
+69,200085.329,422918.3521,13689.29795,15.6
+70,124314.5991,490887.4275,13668.08762,15.6
+71,331060.6248,437639.5782,0,15.6
+72,305806.4635,444745.7646,0,15.6
+73,293154.1704,502486.5538,0,15.6
+74,291208.928,446183.6156,0,15.6
+75,297621.783,450285.5348,0,15.6
+76,296252.2539,467979.4627,0,15.6
+77,296318.1328,460321.335,0,15.6
+78,298644.0102,461708.2469,0,15.6
+79,296949.8746,460879.9191,0,15.6
+80,297854.2404,463142.297,0,15.6
+81,299061.1175,462437.4646,0,15.6
+82,298034.6925,462195.6279,0,15.6
+83,298615.9651,463217.1765,80733.61483,15.6
+84,299916.8913,464363.1075,17.79448211,15.6
+85,299449.8618,463797.574,668634.7394,15.6
+86,299306.2818,464065.7506,3652.807193,15.6
+87,301063.4588,464287.8613,18000.51965,15.6
+88,300375.6246,465456.5808,7882.25376,15.6
+89,300328.8223,464730.172,9999.805616,15.6
+90,302129.1457,466467.8235,10076.20965,15.6
+91,301123.8493,465131.1253,10062.38253,15.6
+92,302373.0329,467530.9959,10014.13316,15.6
+93,302328.8009,466482.1124,11290.15544,15.6
+94,301891.5561,467695.8729,14399.35096,15.6
+95,262125.6524,467037.7517,12021.7223,15.6
+96,261640.2679,468023.5153,12778.92423,15.6
+97,364496.9649,14761.28358,12720.16206,15.6
+98,26542.61152,14783.50595,12783.67793,15.6
+99,35679.62054,1132159.037,12683.91832,15.6
+100,46502.6661,235250.7151,12670.85281,15.6
+101,777589.8968,440136.5175,12635.54231,15.6
+102,243365.6175,519029.023,12633.57819,15.6
+103,109162.3779,451889.6199,12575.70822,15.6
+104,352665.2389,456735.564,12596.96872,15.6
+105,318665.9015,457173.2356,12520.72354,15.6
+106,302343.5121,457868.9726,12530.72741,15.6
+107,305036.0787,519022.6252,12464.80897,15.6
+108,307531.8725,458350.518,12451.86224,15.6
+109,648749.7168,463744.0932,12463.99351,15.6
+110,308229.8059,481567.9793,12329.71021,15.6
+111,308952.5212,473508.4367,12414.43362,15.6
+112,308934.5606,475079.9879,12388.43969,15.6
+113,310181.7932,476481.5033,0,15.6
+114,309776.1844,474129.8232,0,15.6
+115,310602.9387,477464.2588,0,15.6
+116,310283.2523,476667.3772,0,15.6
+117,311647.8811,476670.4098,0,15.6
+118,310659.9185,477681.2464,0,15.6
+119,312522.8362,478484.1149,0,15.6
+120,311372.421,477123.5511,0,15.6
+121,311307.252,477830.3407,0,15.6
+122,309917.2564,475031.3441,0,15.6
+123,310268.5644,473842.3201,685916.7362,15.6
+124,309388.0885,471811.835,0,15.6
+125,308558.9508,471406.953,0,15.6
+126,308975.1909,467905.6867,0,15.6
+127,265585.6694,880152.737,0,15.6
+128,265859.7955,465652.5313,0,15.6
+129,369066.9275,14550.65342,0,15.6
+130,292214.8824,14474.38565,0,15.6
+131,35174.76874,1117557.693,78528.01696,15.6
+132,46893.09879,224102.4773,1235.983902,15.6
+133,41731.68248,426769.3106,1795.487655,15.6
+134,781044.6287,506595.4459,2698.460042,15.6
+135,243866.8422,449951.018,15901.00714,15.6
+136,105721.2479,453830.0132,8151.785695,15.6
+137,351525.0729,438801.1033,9169.213557,15.6
+138,318675.0338,436642.0365,9479.636162,15.6
+139,297505.6065,436485.402,9470.156346,15.6
+140,301445.3368,433263.4787,9484.94403,15.6
+141,302834.1972,486296.7981,9493.059331,15.6
+142,303173.9668,433252.7154,9496.46679,15.6
+143,302936.724,843527.7022,9474.522118,15.6
+144,301481.0023,449748.2392,9514.001998,15.6
+145,301548.9254,438393.9135,13709.89696,15.6
+146,301534.35,439336.9652,11280.19,15.6
+147,300056.4192,435413.4398,11840.37119,15.6
+148,300454.2092,436737.2691,12039.04478,15.6
+149,299810.3082,433454.0944,11952.14607,15.6
+150,298866.1751,432228.2513,11937.85082,15.6
+151,299226.6554,430130.5082,12046.04473,15.6
+152,298343.3481,429707.1764,11981.40963,15.6
+153,297546.3174,426966.5713,11950.98941,15.6
+154,298112.4358,425866.1013,12069.92464,15.6
+155,635831.7509,423961.0501,12000.74744,15.6
+156,297175.0683,422832.3983,12048.16262,15.6
+157,296285.3142,420990.5817,12008.97939,15.6
+158,295696.1282,419832.5111,12104.29752,15.6
+159,254479.4597,829228.8872,11969.35234,15.6
+160,254350.5065,417187.1493,12124.87946,15.6
+161,354943.549,12561.37436,697680.1698,15.6
+162,276453.2732,12535.42196,0,15.6
+163,289233.7426,987773.7909,0,15.6
+164,44701.53537,141109.982,0,15.6
+165,40124.18276,413311.5907,0,15.6
+166,40401.95123,443193.325,0,15.6
+167,754283.8318,401180.2357,0,15.6
+168,194593.0562,405010.2889,0,15.6
+169,121315.456,403908.1983,0,15.6
+170,327068.2368,402505.6108,0,15.6
+171,305139.5764,387544.1317,0,15.6
+172,283916.1564,387477.805,0,15.6
+173,287226.753,385056.8196,0,15.6
+174,288738.9815,383601.1602,0,15.6
+175,288970.9642,793054.5008,0,15.6
+176,287202.8363,426243.6747,0,15.6
+177,288138.2334,378096.3961,80805.20057,15.6
+178,287340.9991,377988.5018,1048.51189,15.6
+179,286157.2688,392092.9125,1930.55028,15.6
+180,286407.3009,382324.8536,2850.834617,15.6
+181,285808.1268,382077.7538,16701.45195,15.6
+182,283690.8073,382860.5262,8200.795064,15.6
+183,283873.8244,381715.7668,9464.82098,15.6
+184,282868.289,382351.7255,9763.323228,15.6
+185,281292.6216,382805.0897,9760.585036,15.6
+186,281306.3385,381138.1699,9746.39606,15.6
+187,279108.7391,382048.8065,9736.131028,15.6
+188,279486.0062,381231.8611,9727.92394,15.6
+189,277573.205,381310.3193,9723.799425,15.6
+190,277281.2463,381489.1734,9727.264178,15.6
+191,237637.6455,792875.2966,11608.62557,15.6
+192,237371.7474,380886.2241,12788.14455,15.6
+193,235040.9315,11091.27884,11595.87995,15.6
+194,348196.7295,11158.54754,11995.63311,15.6
+195,260043.156,150768.4087,12157.47076,15.6
+196,256340.0782,945378.2833,12033.96459,15.6
+197,47500.74819,190202.6643,12025.5898,15.6
+198,37070.08555,212626.9805,12140.3401,15.6
+199,38023.47354,513887.0498,721365.7479,15.6
+200,706922.4526,353186.1208,12054.31502,15.6
+201,452979.4037,378950.1783,12101.24877,15.6
+202,147160.5614,380738.3968,11965.99745,15.6
+203,284251.5553,380301.3027,12243.61433,15.6
+204,281154.2053,380515.9834,11931.37989,15.6
+205,257953.5773,380192.9499,12112.06065,15.6
+206,261415.1755,368414.5526,12074.9029,15.6
+207,261500.0459,781152.0638,0,15.6
+208,261220.1003,367210.3383,0,15.6
+209,260415.9157,369426.7029,0,15.6
+210,259582.3959,367990.3074,0,15.6
+211,258730.6714,368813.8362,0,15.6
+212,258586.0653,413128.342,0,15.6
+213,255786.9159,368365.3293,0,15.6
+214,256326.4682,368465.682,0,15.6
+215,254849.2951,384338.5025,0,15.6
+216,254321.7865,378939.0745,0,15.6
+217,252290.183,376756.4808,0,15.6
+218,252487.2637,379413.959,0,15.6
+219,251148.5507,377776.2566,0,15.6
+220,249403.7097,378136.7488,0,15.6
+221,249318.98,377494.4133,0,15.6
+222,248020.1071,379146.4782,0,15.6
+223,247438.3783,788303.6307,0,15.6
+224,209768.0521,378345.5115,83000.48709,15.6
+225,210508.3423,326937.9862,1214.760218,15.6
+226,208568.2733,10953.75119,1835.115758,15.6
+227,315225.49,148767.3472,2548.745573,15.6
+228,219526.7238,25765.98781,15964.90595,15.6
+229,233706.4536,974212.9093,8493.117458,15.6
+230,41965.10598,189489.9548,9232.084558,15.6
+231,33687.89459,204481.0163,9644.906741,15.6
+232,34425.48361,512844.1764,9628.825793,15.6
+233,34345.3029,349382.976,9626.607898,15.6
+234,691685.861,377754.1389,9616.857803,15.6
+235,69122.92826,378817.6954,9613.139789,15.6
+236,107987.0133,378409.6422,9598.508744,15.6
+237,259207.9922,378093.0437,728496.9514,15.6
+238,188774.3875,378274.7167,9693.123915,15.6
+239,260887.5889,790137.4069,13869.95036,15.6
+240,215545.68,377077.0072,11130.72101,17.8
+241,230093.9794,380230.9101,12045.13581,17.8
+242,230542.1768,369068.8331,11933.47264,17.8
+243,232803.8267,371976.7471,12047.54917,17.8
+244,232891.1624,370823.2731,12046.12848,17.8
+245,233285.0174,374573.8108,12050.13166,17.8
+246,235236.3368,372749.8864,12078.27454,17.8
+247,574261.5967,375636.6038,12045.56918,17.8
+248,235683.1185,423169.3798,12097.94171,17.8
+249,237310.3674,377277.6938,12066.00866,17.8
+250,237321.8797,379609.1656,12211.44456,17.8
+251,237777.9215,396086.7915,12084.89163,17.8
+252,239741.9784,391641.8483,12102.94119,17.8
+253,239333.6266,391215.9127,12210.21054,17.8
+254,240562.997,393988.6594,0,17.8
+255,241868.4199,805236.7695,0,17.8
+256,241775.3807,395395.2362,0,17.8
+257,207578.527,344121.4129,0,17.8
+258,209348.1266,344205.3625,0,17.8
+259,209005.6207,154543.4512,0,17.8
+260,315837.267,30013.43251,0,17.8
+261,224623.8679,858635.8086,0,17.8
+262,239434.1634,163372.2111,0,17.8
+263,254163.4766,418808.6683,0,17.8
+264,34824.39312,429612.1684,0,17.8
+265,35800.5407,399449.3615,0,17.8
+266,35745.32941,405868.2626,0,17.8
+267,35931.17253,407089.1998,0,17.8
+268,721056.7412,407550.5867,0,17.8
+269,124491.9009,408182.3401,0,17.8
+270,94999.44694,411052.6203,83398.66962,17.8
+271,293484.8302,821723.0051,1222.4834,17.8
+272,209593.2466,411783.9568,1884.330467,17.8
+273,286732.4517,412820.701,2772.214497,17.8
+274,244165.6088,413989.4729,16844.06556,17.8
+275,256452.213,414568.1539,737305.6356,17.8
+276,258821.243,414680.001,9514.410742,17.8
+277,258538.9563,417602.4709,9855.177994,17.8
+278,259666.6958,404510.86,9869.527665,17.8
+279,259995.6954,405960.8702,9830.875721,17.8
+280,262105.1095,406927.1268,9874.8756,17.8
+281,261455.3581,407691.5674,9860.337292,17.8
+282,262553.8353,409231.6038,9880.231122,17.8
+283,263485.8865,460678.4522,9841.479634,17.8
+284,263519.3214,412953.2005,12902.82963,17.8
+285,266110.9241,413072.092,12596.64101,17.8
+286,604486.4402,431666.2838,12023.13142,17.8
+287,266224.6662,838267.4726,12492.56497,17.8
+288,267710.9264,427308.8773,12485.81147,17.8
+289,267625.8265,372178.2051,12384.10546,17.8
+290,230781.0458,372636.8089,12604.34762,17.8
+291,231864.5687,164718.7376,12404.9082,17.8
+292,232057.5844,37281.64269,12619.07529,17.8
+293,345695.0385,937983.0391,12413.17866,17.8
+294,257534.9345,214436.0642,12632.95749,17.8
+295,259551.6605,425619.5269,12527.594,17.8
+296,283689.4137,472546.584,12653.95799,17.8
+297,273756.0351,430624.9436,12565.08162,17.8
+298,38579.01242,437249.9517,12656.88291,17.8
+299,38844.83377,439215.5673,12549.93836,17.8
+300,38860.70606,440122.2668,0,20
+301,719937.1446,439749.1346,0,20
+302,141949.4009,440149.2131,0,20
+303,141010.266,852415.9474,0,20
+304,298472.7445,440701.4917,0,20
+305,288067.4068,439163.8716,0,20
+306,269012.6905,441822.5843,0,20
+307,268451.2702,441322.5613,0,20
+308,271785.6955,439658.3997,0,20
+309,270094.1719,442311.3756,0,20
+310,269760.1515,440852.1632,740204.1186,20
+311,268278.0741,442071.0775,0,20
+312,268594.171,441094.1872,0,20
+313,266791.2753,429416.1593,0,20
+314,266692.4784,427315.5327,84472.0441,20
+315,265024.8449,429900.7023,970.6702978,20
+316,265085.0629,427665.2295,1989.447867,20
+317,263475.9038,480916.832,3125.461247,20
+318,263628.5718,430757.3538,17907.55818,20
+319,261384.6749,433298.925,8084.85198,20
+320,261946.4356,449652.4586,9980.882313,20
+321,260535.9103,386007.9073,10126.4987,20
+322,259631.1612,384538.4352,10130.85136,20
+323,562395.9547,167920.6568,10174.21131,20
+324,220707.3007,40873.95224,10118.38348,20
+325,221080.398,970189.3974,10155.53607,20
+326,329531.3542,233479.1264,10165.36433,20
+327,237745.5514,423987.7457,14280.26929,20
+328,243988.2172,489242.9449,12431.20439,20
+329,263277.6377,438688.3568,12660.95092,20
+330,251450.9731,447036.2734,12998.80497,20
+331,36259.85225,446120.2564,12825.45961,20
+332,36134.75557,447623.5726,12909.02552,20
+333,36131.94744,447434.0255,12988.52853,20
+334,36035.55869,446978.6735,12899.73849,20
+335,721833.3111,447472.7267,13051.5023,20
+336,122205.0513,447707.9582,12884.95773,20
+337,87655.48578,447560.6769,13060.36375,20
+338,284130.2603,447880.3772,12992.49335,20
+339,205078.1781,448048.9756,13051.16804,20
+340,274303.2024,448203.5283,13055.60585,20
+341,232038.6009,447926.778,13036.43799,20
+342,243659.4501,448894.3884,13064.467,20
+343,243556.4326,448367.7356,13075.21498,20
+344,241414.6655,448651.2646,0,20
+345,241090.3582,450467.7985,753686.4731,20
+346,240792.8567,447770.0018,0,20
+347,239130.9673,436101.088,0,20
+348,239191.9234,434755.14,0,20
+349,237241.5863,436084.7478,0,20
+350,237728.9812,435096.4443,0,20
+351,235467.3302,491010.3372,0,20
+352,235169.9936,437898.1076,0,20
+353,234464.6146,380502.457,0,20
+354,233133.3978,400578.0008,0,20
+355,233107.4003,168284.2448,0,20
+356,197381.2723,41686.40203,0,20
+357,197654.7925,989647.0946,88091.6815,20
+358,195582.3832,243121.9487,1155.172366,20
+359,299725.5628,425885.8238,2622.239082,20
+360,539830.6626,498510.9714,3916.107789,21
+361,216963.9682,438731.2834,18627.54594,21
+362,225863.6297,858583.1376,8282.134427,21
+363,220433.9134,446234.4434,10320.38268,21
+364,221194.1874,449402.5358,10483.4223,21
+365,33022.7778,447691.8208,10464.25635,21
+366,33179.26712,452143.6147,10429.90185,21
+367,33174.22596,450245.6922,10452.87119,21
+368,33214.28621,454091.1699,10430.70724,21
+369,670958.8003,452984.0592,10458.832,21
+370,52621.84403,456204.7303,10981.55086,21
+371,114518.9926,455074.8872,14110.80388,21
+372,257597.5158,457798.5338,11883.85055,21
+373,183481.6074,458670.6559,12759.01776,21
+374,199307.1258,459583.1901,12655.03576,21
+375,251660.5069,461555.3565,12628.39488,21
+376,218128.1097,461867.1317,12770.1122,21
+377,229150.4773,463146.0967,12664.63903,21
+378,228751.7644,877525.8077,12777.83359,21
+379,230535.7622,465831.1921,12781.07789,21
+380,229580.9266,465783.4065,12695.0878,21
+381,231744.1849,453828.8062,12920.44432,21
+382,231577.5666,453934.9192,12690.8042,21
+383,231316.5009,455839.9108,775868.7681,21
+384,232892.299,455777.7063,12716.21898,21
+385,233055.955,458483.0581,12875.12896,21
+386,233026.2125,399324.2808,12798.99995,21
+387,234208.5476,159971.9874,0,21
+388,235005.0434,59052.38726,0,21
+389,199809.3187,1071238.164,0,21
+390,201415.8956,268497.121,0,21
+391,201842.187,427991.8953,0,21
+392,303826.1952,543766.6626,0,21
+393,216352.7426,472752.3054,0,21
+394,230177.3689,484775.4811,0,21
+395,243964.7041,898148.3684,0,21
+396,238234.5887,486924.1411,0,21
+397,239211.0499,488706.0903,0,21
+398,238432.0215,489042.8957,0,21
+399,35101.49263,490633.3296,0,21
+400,35037.11954,491454.2054,0,21
+401,35171.102,493712.5262,93484.87821,21
+402,35276.71269,493420.6846,1220.834006,21
+403,715104.2112,495904.7019,2790.596071,21
+404,113308.1695,496248.5815,3643.693167,21
+405,436970.609,498215.2276,18862.60351,21
+406,287477.8347,498836.9767,9041.831102,21
+407,201485.8658,501120.2636,10644.95744,21
+408,215225.5065,500522.8639,10927.39147,21
+409,271240.4585,503622.6252,10900.34329,21
+410,236124.7225,503126.3328,10864.90795,21
+411,246349.1848,918249.5225,10875.20332,21
+412,248507.6734,506655.2359,10888.90008,21
+413,247565.7856,507541.4632,10886.01737,21
+414,249080.649,508937.449,10861.23237,21
+415,248361.5218,493018.085,11953.32198,21
+416,250176.5571,495763.743,14441.74631,21
+417,249274.272,428701.2676,12725.08703,21
+418,251218.439,432595.9294,13165.33043,21
+419,250717.7277,229117.8171,13373.74437,21
+420,251445.2307,48599.95924,13191.7435,21
+421,251990.8631,1133938.082,782891.5716,21
+422,215291.7608,281255.8698,13253.89736,21
+423,217222.2399,540984.1933,13402.41075,21
+424,215150.1476,535233.8794,13336.98927,21
+425,324957.5881,520519.3939,13423.44633,21
+426,235882.8434,518532.5214,13446.11721,21
+427,242612.4938,518680.3794,13474.53454,21
+428,260918.9059,517677.3511,13341.38555,21
+429,254067.0169,519266.0209,13602.92561,21
+430,253339.0377,517318.4192,13499.55187,21
+431,254046.8956,517699.6992,0,21
+432,254543.6531,517708.4385,0,21
+433,36685.451,517380.4378,0,21
+434,36570.44998,517572.8316,0,21
+435,36650.87513,516900.6652,0,21
+436,691443.5629,516422.1422,0,21
+437,87022.74124,517577.3545,0,21
+438,164066.8132,515923.2552,0,21
+439,273088.3525,516189.1376,0,21
+440,217389.0387,516842.8269,0,21
+441,285653.9422,515560.6603,0,21
+442,245711.9101,516017.7816,0,21
+443,256670.6483,514756.4281,93555.29667,21
+444,258207.3153,516997.5344,925.1176763,21
+445,257798.3188,514340.0037,2995.38919,21
+446,258081.9538,927599.9911,4497.87968,21
+447,258354.3929,515380.6006,19998.9198,21
+448,258083.8559,514338.8547,8886.44615,21
+449,259015.3436,432489.5438,11261.53286,21
+450,598122.1397,431771.6062,11308.80154,21
+451,259131.2982,161535.5022,11264.00248,21
+452,259020.8712,47285.20814,11356.69135,21
+453,259662.9445,1195676.041,11246.72774,21
+454,259992.6172,255687.97,11304.1118,21
+455,222646.4864,521726.4182,11318.16647,21
+456,223067.6571,544644.8605,15241.82461,21
+457,222920.114,513423.0099,789413.3097,21
+458,332300.417,515256.1705,13634.11003,21
+459,246961.3113,514341.9918,13856.72524,21
+460,247565.5556,513482.6654,13940.29998,21
+461,270140.9724,514344.6132,13782.97051,21
+462,260523.9904,925868.3403,14066.55802,21
+463,262190.0883,513504.7636,13807.6061,21
+464,261712.3779,513260.6018,14006.13149,21
+465,262130.0527,512917.7535,13953.70186,21
+466,37438.6241,513142.0994,13981.29521,21
+467,37570.11309,512200.8107,13821.5998,21
+468,37441.14175,512952.2359,13725.35122,21
+469,705097.2996,511581.992,13668.4238,21
+470,111109.4373,512384.2557,13803.834,21
+471,155257.5581,512169.7585,13751.45571,21
+472,283018.8695,511176.894,13776.25072,21
+473,221105.5443,511674.2964,0,21
+474,289135.4707,511423.0733,0,21
+475,248060.2507,510917.7962,0,21
+476,260897.0937,510958.0172,0,21
+477,260416.6327,510843.7787,0,21
+478,260751.3245,510309.2118,0,21
+479,260085.4803,510415.019,0,21
+480,260660.8348,510364.9141,0,21
+481,260790.2015,443427.6619,0,21
+482,259945.4168,445019.3312,0,21
+483,259719.7179,162147.7728,0,21
+484,260170.5316,45987.61227,0,21
+485,259254.5406,1122487.825,0,21
+486,260082.5592,254547.8326,96227.96352,21
+487,259262.1802,565529.3078,520.140426,21
+488,222153.6336,523125.8033,2686.919382,21
+489,221673.5749,496640.9184,3517.805122,21
+490,561547.1625,518503.3689,18241.21978,21
+491,331342.7882,508044.8035,8714.835252,21
+492,243942.5613,508968.2079,10217.87827,21
+493,245803.0329,509386.3141,792030.9047,21
+494,267638.2634,508995.9498,10403.36183,21
+495,257132.9331,507760.6779,10380.70516,21
+496,258474.9171,509608.6971,10378.51089,21
+497,257854.4426,920227.9449,10325.52594,21
+498,258141.2768,508809.2051,10303.50693,21
+499,37106.51351,507377.2377,14833.45537,21
+500,37012.19052,508216.7049,12341.27846,21
+501,37086.45864,507234.0606,12771.3921,21
+502,695322.0303,507785.3935,12985.06022,21
+503,97367.7912,507071.6488,12832.14022,21
+504,156959.0045,507059.9718,12949.42861,21
+505,276992.6828,506939.1373,12790.58848,21
+506,218115.1701,506969.9062,12877.93722,21
+507,284600.9097,506293.7137,12824.07228,21
+508,246336.0875,506623.0349,12811.26026,21
+509,256547.808,506540.3874,12732.64483,21
+510,256964.258,505858.5356,12907.30373,21
+511,257016.6045,506114.0733,12629.10631,21
+512,256355.3116,506072.9352,12721.44049,21
+513,256456.6443,852220.6734,12638.47215,21
+514,256164.0462,441086.8798,12585.68314,21
+515,256001.9879,178096.3084,12577.28433,21
+516,255779.631,60694.79338,0,21
+517,255311.0729,1118854.175,0,21
+518,255857.8766,254121.1345,0,21
+519,254691.3592,480216.4473,0,21
+520,255435.0169,526617.3713,0,21
+521,217966.4133,553700.8106,0,21
+522,218154.5253,491839.544,0,21
+523,217837.8205,493346.5452,0,21
+524,324943.499,515779.0339,0,21
+525,239147.718,504015.557,0,21
+526,241149.9428,506068.1912,0,21
+527,262407.2813,505174.5651,0,21
+528,252757.1307,505314.1577,0,21
+529,253079.934,917365.7959,786541.9145,21
+530,592845.4647,505140.4968,0,21
+531,252874.1625,504403.8787,0,21
+532,36450.28248,506274.9551,0,21
+533,36270.44212,505493.382,0,21
+534,36334.9915,505675.7,0,21
+535,685472.4244,505458.01,0,21
+536,80641.19708,505058.1272,0,21
+537,161437.8973,505117.1344,0,21
+538,267807.382,504946.617,0,21
+539,212021.912,504370.7317,0,21
+540,278955.7238,505255.8074,0,21
+541,239359.0085,504233.6008,0,21
+542,250707.4929,505228.4321,0,21
+543,249733.7461,505681.7641,0,21
+544,249696.9741,505264.3455,0,21
+545,247967.4754,854284.3747,0,21
+546,250039.8829,440892.5936,0,21
+547,247611.3338,177982.5999,0,21
+548,248868.838,60955.7271,0,21
+549,246343.1379,1136110.162,0,21
+550,247263.8177,270941.3434,0,21
+551,246203.1554,485137.1299,0,21
+552,246191.5539,526436.0765,0,21
+553,243759.7043,489451.6772,0,21
+554,210028.1744,491471.6484,0,21
+555,208915.092,562306.1147,0,21
+556,208099.1401,492801.5751,0,21
+557,309866.5179,498827.6493,0,21
+558,223836.1272,519075.1976,0,21
+559,230828.7062,509161.3456,0,21
+560,247312.6949,510024.4122,0,21
+561,239101.9594,924802.731,0,21
+562,239230.6532,511113.3947,0,21
+563,237516.1167,510706.6649,0,21
+564,238290.5516,513442.558,0,21
+565,34252.19597,511862.5387,777108.8353,21
+566,34143.65604,513278.419,0,21
+567,34145.67774,512472.469,0,21
+568,33934.33661,513427.2808,0,21
+569,706618.5291,514195.647,0,21
+570,436100.8787,513313.4407,0,21
+571,94713.73577,514766.2377,0,21
+572,272253.5436,514648.4597,0,21
+573,190683.8666,514718.9073,0,21
+574,200119.9253,515514.4011,0,21
+575,257747.8196,515875.0266,0,21
+576,220714.5131,515851.5208,0,21
+577,230116.5535,450063.2643,0,21
+578,229734.2832,450297.4924,0,21
+579,229812.9465,179345.8291,0,21
+580,229017.7128,65063.67141,0,21
+581,227780.2372,1145990.296,0,21
+582,228621.6064,272705.9396,0,21
+583,226732.6136,549248.6422,0,21
+584,226568.3048,533819.871,0,21
+585,227263.3766,506194.1972,0,21
+586,224804.8611,503345.0561,0,21
+587,192700.3827,503559.187,0,21
+588,193042.1551,566567.2448,0,21
+589,191381.954,505831.9173,0,21
+590,286728.9627,512394.1389,0,21
+591,202447.5481,530757.4993,0,21
+592,216242.945,520467.9493,0,21
+593,229182.0706,523391.0791,0,21
+594,220080.1044,522313.1103,0,21
+595,222658.0513,523741.1089,0,21
+596,220705.2875,937333.45,0,21
+597,220428.029,522718.4565,0,21
+598,219998.948,525743.187,0,21
+599,31712.02052,524020.1067,0,21
+600,31701.6449,526356.4357,0,21
+601,31556.7445,524713.7173,768502.4684,21
+602,31774.46198,524343.8268,0,21
+603,672458.6318,522024.6615,0,21
+604,53623.07111,523675.4917,0,21
+605,93843.58318,521894.4018,0,21
+606,260045.4539,520960.6429,0,21
+607,175930.3832,520627.1326,0,21
+608,186778.431,520823.8695,0,21
+609,243187.5975,451398.958,0,21
+610,550495.1298,452988.6535,0,21
+611,219569.9889,180058.7963,0,21
+612,220031.2641,478163.6744,0,21
+613,220619.4294,1145942.961,0,21
+614,220633.6444,271886.9742,0,21
+615,219549.1012,544666.0363,0,21
+616,220948.6169,531271.1454,0,21
+617,220650.0071,519682.8702,0,21
+618,220467.889,498785.9691,0,21
+619,219726.7277,498431.9347,0,21
+620,190830.1194,497737.8612,0,21
+621,188157.5037,557471.1768,0,21
+622,189775.9288,498747.8381,0,21
+623,281257.1742,503370.7441,0,21
+624,200468.5045,519330.0203,0,21
+625,214909.3235,509059.0388,0,21
+626,227497.7817,511263.6837,0,21
+627,220300.8509,508472.5752,0,21
+628,221205.112,922082.476,0,21
+629,220979.5334,508132.3794,0,21
+630,221752.4334,507196.6446,0,21
+631,220489.5024,507605.5542,0,21
+632,222995.5295,504846.3215,0,21
+633,31235.23766,506257.8858,0,21
+634,31155.37652,504660.0975,0,21
+635,31189.28461,503740.1207,0,21
+636,31171.57701,503043.711,0,21
+637,684629.711,503743.5932,760645.7521,21
+638,60987.47572,500406.6606,0,21
+639,91649.00422,502474.3117,0,21
+640,264174.4149,499859.1859,0,21
+641,178492.6189,435891.295,0,21
+642,189845.8232,433505.1721,0,21
+643,238560.0768,179143.7135,0,21
+644,218121.5534,57721.5782,0,21
+645,219722,1123010.902,0,21
+646,222755.172,269999.5072,0,21
+647,222379.8064,468563.4791,0,21
+648,221944.8157,544103.689,0,21
+649,223085.1626,488765.8211,0,21
+650,561399.149,493955.2379,0,21
+651,223287.3831,479030.5331,0,21
+652,221826.4994,476735.3237,0,21
+653,192063.755,476729.8776,0,21
+654,191190.6159,475694.3583,0,21
+655,192282.4419,541542.0717,0,21
+656,279550.286,475851.0934,0,21
+657,204272.8414,476189.6305,0,21
+658,216351.5803,500448.2973,0,21
+659,227919.6816,485312.9905,0,21
+660,222504.2037,488552.187,0,21
+661,222398.5512,487316.7687,0,21
+662,222192.4852,488570.82,0,21
+663,222892.6426,899816.3687,0,21
+664,222343.5887,490104.1682,0,21
+665,222342.6886,488342.4388,0,21
+666,223467.707,489639.0608,0,21
+667,30785.05054,490393.4662,0,21
+668,30651.40238,489009.0097,0,21
+669,30736.42967,490781.0449,0,21
+670,30655.07234,491215.1991,0,21
+671,696364.8688,491382.3031,0,21
+672,67490.28979,490726.1441,0,21
+673,90745.45424,428140.3679,0,21
+674,265091.459,428144.0627,753473.4894,21
+675,181506.2474,178890.4827,0,21
+676,190978.4165,53941.70003,0,21
+677,232538.496,1088914.56,0,21
+678,223410.2619,267921.3097,0,21
+679,219496.5308,848635.4396,0,21
+680,223597.9068,537453.8649,0,21
+681,223496.359,472251.5791,0,21
+682,223926.0223,480078.7329,0,21
+683,223090.3758,480807.7748,0,21
+684,223724.575,478611.931,0,21
+685,223697.3937,465194.8231,0,21
+686,193616.7703,463319.8312,0,21
+687,193479.3357,464517.7501,0,21
+688,193103.4484,463559.3208,0,21
+689,279870.2362,521710.5636,0,21
+690,207151.6654,463982.492,0,21
+691,217278.8808,467942.7736,0,21
+692,230291.6902,486325.1525,0,21
+693,223463.9148,476878.4537,0,21
+694,563677.9442,478768.9368,0,21
+695,224779.7347,890890.8522,0,21
+696,224616.1151,479556.1231,0,21
+697,224301.3148,478071.169,0,21
+698,224531.604,480522.6295,0,21
+699,225152.0943,479368.0598,0,21
+700,224766.1038,480491.096,0,21
+701,30363.38117,480051.0141,0,21
+702,30258.07259,480630.3526,0,21
+703,30471.98214,481612.493,0,21
+704,30181.09674,481049.6404,0,21
+705,711331.4458,418783.132,0,21
+706,77294.78254,419068.7644,0,21
+707,87400.03404,177105.5483,0,21
+708,267992.0963,50686.30265,0,21
+709,185408.8582,1079067.461,0,21
+710,194107.0274,267139.2057,0,21
+711,229412.3723,455605.1055,746619.1838,21
+712,229476.6411,532375.0904,0,21
+713,221563.3029,479784.9519,0,21
+714,225879.1192,487638.9032,0,21
+715,226336.8684,486599.252,0,21
+716,225624.2309,488384.1282,0,21
+717,226567.8881,488684.1293,0,21
+718,226413.504,487835.7351,0,21
+719,196106.319,474551.1554,0,21
+720,196150.8184,473955.3329,0,21
+721,196304.2992,472952.903,0,21
+722,278351.556,473882.0629,0,21
+723,210372.6369,534538.5227,0,21
+724,215232.0058,472933.1911,0,21
+725,230674.0882,477415.8137,0,21
+726,221619.1624,495575.3718,0,21
+727,222669.9657,485694.5762,0,21
+728,222043.0684,487320.2879,0,21
+729,220454.3883,485756.4362,0,21
+730,221404.9332,898727.798,0,21
+731,220075.3278,485543.1467,0,21
+732,219171.2647,485823.4106,0,21
+733,219261.634,484647.2466,0,21
+734,218277.6102,485013.3819,0,21
+735,28949.17904,484338.0502,0,21
+736,28889.55918,485003.8438,0,21
+737,28895.02746,419756.9062,0,21
+738,368330.3165,421599.3819,0,21
+739,699518.3198,176584.4227,0,21
+740,63136.34258,51443.53078,0,21
+741,67373.36582,1082342.405,0,21
+742,263033.954,267249.3667,0,21
+743,171490.2115,445469.9266,0,21
+744,180964.3743,536580.362,0,21
+745,211102.588,474686.8904,0,21
+746,218036.3581,896340.5538,0,21
+747,205814.0893,484073.7591,0,21
+748,210072.2114,482783.0245,740264.0808,21
+749,209754.5136,482128.2704,0,21
+750,208853.0682,483403.2674,0,21
+751,208326.1221,481279.2444,0,21
+752,179658.1655,483286.9257,0,21
+753,179285.3775,465171.9841,0,21
+754,179265.6762,466780.7543,0,21
+755,254843.3916,465225.1997,0,21
+756,190411.1057,465939.0414,0,21
+757,195206.7564,525951.8252,0,21
+758,212979.9666,466866.0927,0,21
+759,202971.4945,467292.9255,0,21
+760,203753.9475,488829.1251,0,21
+761,203060.2294,475781.2838,0,21
+762,203288.7684,477471.9873,0,21
+763,202559.5865,478064.4842,0,21
+764,202041.5367,476640.7875,0,21
+765,201943.6339,477647.2016,0,21
+766,201214.8581,475730.9976,0,21
+767,201094.0443,476974.7874,0,21
+768,200635.3897,474998.4449,0,21
+769,26461.44631,413335.1601,0,21
+770,26294.15673,413164.4324,0,21
+771,26360.45539,175851.4046,0,21
+772,26249.68065,49185.87396,0,21
+773,654116.4156,1061184.836,0,21
+774,32054.41524,267014.7886,0,21
+775,69469.0035,423637.7756,0,21
+776,225882.7471,532589.0507,0,21
+777,165431.9283,464701.4692,0,21
+778,162822.9235,471462.4778,0,21
+779,188732.7379,473887.6057,0,21
+780,206040.9626,472775.1631,0,21
+781,528861.1358,471815.5021,0,21
+782,195206.9618,471852.7581,0,21
+783,194630.9071,472267.0687,0,21
+784,195169.9954,884055.1626,0,21
+785,169184.5525,471427.7651,734494.4166,21
+786,168726.6384,471693.3967,0,21
+787,169637.7604,456648.5995,0,21
+788,237320.4187,456272.6366,0,21
+789,179637.7678,456406.936,0,21
+790,185764.0913,456345.5153,0,21
+791,202400.5659,516625.6745,0,21
+792,191735.5126,457397.7773,0,21
+793,194940.0539,459568.5743,0,21
+794,194014.9538,479699.8184,0,21
+795,193637.9552,469652.8966,0,21
+796,193731.9379,470861.2154,0,21
+797,194076.1483,471097.7644,0,21
+798,193618.5403,470333.4623,0,21
+799,193938.6979,471224.2025,0,21
+800,193418.5743,882961.56,0,21
+801,193347.3235,409659.6787,0,21
+802,193376.7614,408548.1007,0,21
+803,25249.97612,175152.2033,0,21
+804,25167.9776,48359.7016,0,21
+805,25206.1202,1053762.798,0,21
+806,25112.26362,267274.3554,0,21
+807,632740.1098,413803.7508,0,21
+808,25201.95771,534612.4447,0,21
+809,71921.28171,461562.0374,0,21
+810,222399.6341,470840.2787,0,21
+811,160666.0875,473794.0857,0,21
+812,160500.7984,470835.942,0,21
+813,175484.8693,472649.7475,0,21
+814,208158.4334,472433.7318,0,21
+815,185385.9592,471582.4197,0,21
+816,192596.377,472271.6793,0,21
+817,192857.5487,472076.5667,0,21
+818,166594.9991,471692.1306,0,21
+819,167614.5052,471079.6506,0,21
+820,167990.741,472426.1261,0,21
+821,167311.0417,456216.1315,0,21
+822,241940.4026,456895.866,729417.6773,21
+823,176926.1391,456330.4132,0,21
+824,182097.3445,455894.166,0,21
+825,540058.891,517734.2576,0,21
+826,189896.5606,457437.887,0,21
+827,192290.7109,459740.3276,0,21
+828,192360.0737,480021.5381,0,21
+829,192306.4846,470577.3806,0,21
+830,190830.2518,469947.6901,0,21
+831,193058.8196,472776.1512,0,21
+832,191363.0016,470714.3774,0,21
+833,192266.3897,409567.6987,0,21
+834,190683.8349,410365.8904,0,21
+835,193122.4915,174970.3933,0,21
+836,190952.808,48724.77531,0,21
+837,24738.9063,1056973.758,0,21
+838,24831.80972,267551.4793,0,21
+839,24771.52305,412013.4567,0,21
+840,24864.86208,537382.4056,0,21
+841,627768.1885,459607.7915,0,21
+842,24838.43551,881480.915,0,21
+843,68940.89626,468264.9494,0,21
+844,221994.6889,466995.5044,0,21
+845,158965.5946,464696.2815,0,21
+846,158810.4488,462551.7861,0,21
+847,172668.2415,462524.057,0,21
+848,208169.1022,459614.5935,0,21
+849,183290.5403,459490.1658,0,21
+850,191098.9147,456367.7103,0,21
+851,189746.7671,455880.831,0,21
+852,167168.0284,453220.1415,0,21
+853,165577.3962,451873.1513,0,21
+854,166081.5704,451687.3816,0,21
+855,165945.8704,433995.1744,0,21
+856,239977.0373,434219.6198,0,21
+857,173673.2111,431028.5147,0,21
+858,180566.4504,430046.4027,0,21
+859,197743.4325,484032.1411,724834.7501,21
+860,188513.7469,428484.2841,0,21
+861,190029.4446,429454.127,0,21
+862,189785.9236,444662.4038,0,21
+863,189163.7793,435083.0158,0,21
+864,189686.0449,435684.7149,0,21
+865,189282.739,374898.787,0,21
+866,189696.8127,374994.7212,0,21
+867,189115.1817,169541.2911,0,21
+868,188220.3073,40295.20507,0,21
+869,529836.426,941119.055,0,21
+870,187814.1718,223491.0661,0,21
+871,24450.91585,365002.9489,0,21
+872,24296.91992,487633.3067,0,21
+873,24481.88794,409235.0119,0,21
+874,24331.22335,418115.5756,0,21
+875,24385.13192,418187.418,0,21
+876,662560.9042,416702.8819,0,21
+877,39914.06867,414300.7454,0,21
+878,52109.26429,412572.054,0,21
+879,215904.5436,823027.4751,0,21
+880,161431.8486,410295.3943,0,21
+881,154454.0711,407482.5681,0,21
+882,159041.3192,405892.2312,0,21
+883,173420.87,405468.6601,0,21
+884,202257.69,402040.5431,0,21
+885,180334.3265,401450.9005,0,21
+886,163249.5446,398522.1936,0,21
+887,163345.2294,398583.0775,0,21
+888,162743.9145,396641.5973,0,21
+889,163455.5259,382168.8047,0,21
+890,236652.8465,380532.9069,0,21
+891,169649.7327,380480.974,0,21
+892,178203.7708,376174.419,0,21
+893,194614.4661,376958.5846,0,21
+894,186303.4252,421027.1785,0,21
+895,187580.253,784877.4017,0,21
+896,186335.9108,372783.6906,0,21
+897,187621.0694,334921.6258,720599.0385,21
+898,187027.6359,325291.607,0,21
+899,187121.1347,151687.197,0,21
+900,186184.3131,27964.16797,0,21
+901,187913.2247,60995.98249,0,21
+902,187949.2771,991475.3735,0,21
+903,188563.8294,200062.9173,0,21
+904,189125.5276,161632.0564,0,21
+905,188930.2612,537355.3718,0,21
+906,24700.13242,352358.2024,0,21
+907,24571.83989,382791.6245,0,21
+908,24679.60148,385762.6306,0,21
+909,24830.71323,386055.9271,0,21
+910,616501.571,388902.0241,0,21
+911,24897.01536,388769.7325,0,21
+912,73317.69092,389501.0541,0,21
+913,563503.5848,390857.5375,0,21
+914,159386.0451,392697.2527,0,21
+915,161985.7654,391596.1898,0,21
+916,176028.5999,394726.3038,0,21
+917,211508.7161,394115.8533,0,21
+918,187461.1887,395290.2325,0,21
+919,194115.7578,397886.9906,0,21
+920,171120.1557,396271.2303,0,21
+921,171284.0548,399307.6734,0,21
+922,170863.5035,399575.6936,0,21
+923,241210.6596,400698.9594,0,21
+924,180020.3372,389369.3155,0,21
+925,192186.8049,391184.6408,0,21
+926,204932.6477,390209.0995,0,21
+927,197384.5074,393285.9051,0,21
+928,199664.4645,393352.7454,0,21
+929,199982.7859,390070.6964,0,21
+930,199798.5217,341794.0114,0,21
+931,201281.5614,492879.7878,0,21
+932,201139.3648,41196.34456,0,21
+933,201820.2688,63881.01706,717520.4112,21
+934,202561.5708,909840.5845,0,21
+935,201993.5033,188381.1438,0,21
+936,203441.0379,375229.2432,0,21
+937,203651.4903,474055.7299,0,21
+938,204439.4441,403469.1205,0,21
+939,204798.2549,831323.8261,0,21
+940,26402.2861,419045.4893,0,21
+941,26501.79667,419790.5119,0,21
+942,26616.81387,421247.2671,0,21
+943,26529.50319,421967.9561,0,21
+944,664334.2878,423619.3576,586022.0977,21
+945,50248.76891,423713.4823,0,21
+946,72883.22122,425463.9905,0,21
+947,259864.9757,426548.379,0,21
+948,166687.1118,426921.0408,0,21
+949,180407.1873,429175.712,0,21
+950,192029.7654,428172.8087,0,21
+951,228688.2914,431021.4202,0,21
+952,202605.6692,431119.3241,0,21
+953,184685.5582,432302.6475,0,21
+954,185742.0165,433993.8039,0,21
+955,185524.2688,845448.2523,0,21
+956,258717.0675,436544.0653,0,21
+957,540412.6079,436247.5168,0,21
+958,206150.4641,437314.0115,0,21
+959,221705.8126,425206.6246,0,21
+960,215186.2298,426053.7586,0,21
+961,216709.5712,368464.9225,0,21
+962,217059.1761,369234.7208,0,21
+963,216794.4534,578939.8377,0,21
+964,217618.2393,30133.52198,0,21
+965,217238.9054,60117.86422,0,21
+966,217620.753,1002421.317,0,21
+967,217909.3584,241330.5381,0,21
+968,217888.8336,382497.5082,0,21
+969,218271.6787,518104.5931,849855.4898,21
+970,218527.803,437306.0032,0,21
+971,218254.2715,452086.794,0,21
+972,219560.8037,451663.2191,0,21
+973,218869.2084,454201.1322,0,21
+974,28414.77984,454866.368,0,21
+975,28364.60336,456315.2655,0,21
+976,28364.6056,456350.2984,0,21
+977,28529.16283,457682.4813,0,21
+978,691994.1691,458133.3897,0,21
+979,82682.89708,460718.9221,0,21
+980,87475.13772,459870.2937,0,21
+981,263899.8246,462795.0017,0,21
+982,183409.119,462088.1516,0,21
+983,192459.1113,463659.9593,0,21
+984,206477.5534,465174.8085,0,21
+985,238517.0285,465676.5848,0,21
+986,186036.9756,465706.7043,0,21
+987,194638.152,468791.7736,0,21
+988,194801.1761,467806.4241,0,21
+989,271720.3653,470385.7317,0,21
+990,212468.3532,470377.2508,0,21
+991,216174.7103,471331.4764,0,21
+992,231117.2818,472741.8887,0,21
+993,224146.3078,397305.7002,0,21
+994,225321.7489,810448.6795,0,21
+995,224790.7449,556082.2329,0,21
+996,225292.6126,35647.1666,0,21
+997,566006.1066,124144.0241,0,21
+998,224866.4355,1062279.889,0,21
+999,226192.0005,255843.1045,0,21
+1000,225440.8129,437966.2258,0,21
+1001,225570.4106,540721.6515,0,21
+1002,224954.7085,474629.1557,0,21
+1003,225203.8772,483395.9709,0,21
+1004,225509.9521,487380.9976,0,21
+1005,230315.8485,485147.0351,829671.2974,21
+1006,229960.7083,489376.9015,0,21
+1007,230775.7303,487270.4748,190502.2467,21
+1008,29916.04611,490963.3477,119687.7346,21
+1009,30180.28174,489314.8437,117063.6916,21
+1010,30100.89944,491956.3208,121394.1127,21
+1011,30219.37897,905213.6917,126751.6421,21
+1012,718111.4934,492713.2637,117363.2922,21
+1013,115473.1239,494379.1131,117032.3433,21
+1014,82825.46635,495985.2751,115062.3976,21
+1015,279398.7977,495667.005,113059.8254,21
+1016,195800.2266,497161.2291,111131.9508,21
+1017,203632.7406,498327.6164,109342.977,21
+1018,222232.4567,499439.5899,107492.1422,21
+1019,216524.2027,499428.8188,105852.0523,21
+1020,196925.3911,501170.3868,104128.2782,21
+1021,204934.515,501090.7587,102464.2429,21
+1022,285404.7953,501399.1242,100819.59,21
+1023,225809.68,500113.4856,99215.05894,21
+1024,224844.0118,501131.4353,97718.3992,21
+1025,242560.0267,437003.0892,96178.15405,21
+1026,235761.1178,436880.4904,94768.05612,21
+1027,236350.0411,579599.2579,93388.11761,21
+1028,237140.0805,43417.63866,92003.24078,21
+1029,236749.9289,66811.20198,90722.45514,21
+1030,237814.4055,1111571.305,89433.00459,21
+1031,236805.6639,321794.1521,88232.41214,21
+1032,238529.1815,465547.415,87060.63174,21
+1033,237439.4313,531866.9219,85881.6501,21
+1034,238878.4443,507224.4264,84802.04481,21
+1035,238240.3377,500600.4839,83695.86739,21
+1036,239252.4686,501601.465,82694.69128,21
+1037,578170.4113,501619.6119,0,21
+1038,239748.4223,503142.8084,0,21
+1039,239268.8096,501185.9974,0,21
+1040,241330.0342,502230.1982,0,21
+1041,239999.7721,502287.3843,597845.0096,21
+1042,31721.40301,501495.5693,0,21
+1043,31840.54726,502169.396,0,21
+1044,31838.08989,501751.1082,0,21
+1045,677651.0819,503106.3164,143432.0498,21
+1046,72537.56264,500420.5865,74368.20138,21
+1047,154457.5857,502788.7016,73841.01674,21
+1048,263975.2078,500529.4852,81352.98043,21
+1049,206202.9551,503158.4226,85110.01325,21
+1050,236603.9524,913244.3796,78731.61178,21
+1051,254255.4618,502035.4543,79302.99162,21
+1052,205380.2581,501578.0512,78433.5001,21
+1053,212074.8418,501678.0223,77638.88755,21
+1054,212692.7714,501355.4016,76827.51305,21
+1055,298938.5228,501669.5167,76058.64766,21
+1056,236728.7756,501327.2383,75492.41495,21
+1057,232555.4064,437010.9957,74820.40639,21
+1058,253943.3581,436643.8891,74106.12483,21
+1059,243729.1231,597611.5771,73497.63059,21
+1060,246527.3666,59677.28708,72806.99199,21
+1061,246579.4992,66958.90259,72240.6635,21
+1062,245264.1151,1111630.634,71644.2574,21
+1063,247818.4496,256268.9895,71059.10906,21
+1064,245756.9205,465588.113,70517.82127,21
+1065,247081.2279,594713.4662,69994.29019,21
+1066,247196.4062,482540.8664,69482.60573,21
+1067,247482.5337,489078.1709,68977.02405,21
+1068,247492.4956,513498.5078,68542.58363,21
+1069,248021.0011,500195.8325,68034.73586,21
+1070,247754.4525,502448.6567,67631.97224,21
+1071,248651.8367,502246.402,67185.13563,21
+1072,247825.906,502355.2056,66792.4551,21
+1073,248816.481,502216.1491,66403.01967,21
+1074,248800.6173,503218.8525,66056.95441,21
+1075,33123.83754,501381.6353,0,21
+1076,33343.56473,502827.5345,0,21
+1077,372904.1924,502149.2089,517576.2322,21
+1078,690766.4077,502032.5531,0,21
+1079,92124.05272,501809.0376,0,21
+1080,153593.4977,504381.5199,0,21
+1081,276055.5906,510554.1097,132721.9721,21
+1082,217360.9835,514710.835,58353.54784,21
+1083,273236.3318,515345.4857,59897.85129,21
+1084,259134.6182,517445.9812,72971.25704,21
+1085,223840.8481,517413.3209,71383.77109,21
+1086,227593.6526,519293.0049,67929.23454,21
+1087,227778.6212,521637.6465,68484.07091,21
+1088,325347.2804,521864.2432,68022.03923,21
+1089,257025.6202,456766.5214,67696.26149,21
+1090,249001.0642,458471.2722,67243.51443,21
+1091,275203.9643,621127.264,66890.6865,21
+1092,265996.224,66861.79578,66505.58836,21
+1093,266955.5881,86834.38614,66159.44166,21
+1094,268299.6824,1152837.17,65824.57423,21
+1095,268867.9759,266987.5452,65474.23632,21
+1096,269125.1802,586341.1161,65191.59431,21
+1097,270368.8313,508384.9716,64804.07011,21
+1098,270924.154,593382.1555,64626.10839,21
+1099,271530.9311,523554.8913,64239.74391,21
+1100,272492.486,532033.1446,64002.10697,21
+1101,272948.4789,549993.4634,63749.03031,21
+1102,273600.6292,541954.9588,63462.8642,21
+1103,274626.148,545383.8324,63219.40025,21
+1104,274886.2967,545533.6216,62982.19537,21
+1105,275783.23,548502.2955,62756.80646,21
+1106,276545.119,549029.957,62504.57156,21
+1107,277225.8763,550595.9865,62319.78323,21
+1108,36733.343,552007.4537,62083.24322,21
+1109,36914.89954,965628.8552,61893.37951,21
+1110,37017.33425,554465.3089,61710.51008,21
+1111,737831.61,557163.9106,0,21
+1112,175110.2994,557507.579,0,21
+1113,129029.4177,559180.1798,491527.6511,21
+1114,317479.5609,560642.939,0,21
+1115,264464.2295,561562.4472,0,21
+1116,298963.6995,564365.8604,129634.9086,21
+1117,617495.7625,563906.8263,53750.30341,21
+1118,247634.4213,566867.1953,55142.66038,21
+1119,249071.9688,567846.2398,71463.73714,21
+1120,339949.1858,569595.2135,67020.82281,21
+1121,272918.351,498844.9429,64908.89233,21
+1122,285365.614,500307.3033,65398.72828,21
+1123,293134.7765,664707.3992,65122.9261,21
+1124,289194.8343,84458.02063,64782.32193,21
+1125,291246.3526,88271.45833,64626.72514,21
+1126,290949.9717,1180959.442,64262.85357,21
+1127,292886.0477,382667.8973,64090.50709,21
+1128,292475.6982,667140.2587,63845.19019,21
+1129,293571.7882,937760.4173,63611.21387,21
+1130,294138.4873,586228.8875,63377.86149,21
+1131,295268.9266,639282.6609,63162.5384,21
+1132,295509.3219,569223.6723,62987.09888,21
+1133,296798.7126,584781.2714,62783.84462,21
+1134,296283.3647,597018.2354,62580.70243,21
+1135,298634.5467,591635.28,62367.93822,21
+1136,297844.2874,594789.8845,62244.51798,21
+1137,299532.205,595089.5696,62036.77318,21
+1138,300732.7618,597214.4552,61878.546,21
+1139,299843.4938,598066.5316,61742.28497,21
+1140,301728.9072,599049.2061,61541.33028,21
+1141,39668.8166,600143.4037,61423.06515,21
+1142,39859.70307,599768.6129,61213.44928,21
+1143,39581.48555,597795.7612,61133.14087,21
+1144,781304.9519,598582.1503,60932.76197,21
+1145,249500.4217,597800.282,60810.35302,21
+1146,99852.76633,597239.0027,0,21
+1147,352682.0364,596841.5018,0,21
+1148,285854.3364,597302.9709,0,21
+1149,313027.4222,596472.8193,488329.698,21
+1150,253812.8036,595225.2826,0,21
+1151,261814.9503,595844.3594,131558.1947,21
+1152,356006.65,595610.9192,52716.48818,21
+1153,288397.7762,519180.5655,55089.09836,21
+1154,294775.7026,520309.8599,71098.91091,21
+1155,304740.3404,684348.88,66477.04476,21
+1156,300827.1928,92504.30421,64615.51094,21
+1157,639891.7306,86858.52627,65039.61968,21
+1158,300935.6589,1186981.781,64763.02189,21
+1159,300125.9742,425110.5877,64531.2981,21
+1160,300055.3216,677648.1793,64261.12246,21
+1161,300279.5871,555332.9054,64083.36432,21
+1162,299946.4904,581754.6132,63783.10344,21
+1163,300002.5318,577993.7241,63645.35496,21
+1164,300179.2716,645279.4279,63389.66971,21
+1165,299605.246,572144.2254,63184.30278,21
+1166,300003.9708,587539.43,63009.51437,21
+1167,299452.2512,596894.7026,62813.78411,21
+1168,300047.2512,1001875.528,62633.16251,21
+1169,299189.4838,590214.2132,62405.03949,21
+1170,299324.517,590741.2826,62308.55105,21
+1171,299013.0323,589151.2806,62081.61531,21
+1172,299222.7537,589427.8851,61948.94909,21
+1173,299772.2439,588769.321,61771.46319,21
+1174,39880.9232,588712.8626,61637.2622,21
+1175,39806.97644,587019.4033,61482.25217,21
+1176,39706.16849,588127.2344,61338.34009,21
+1177,774657.3302,586515.2252,61192.7669,21
+1178,236908.6655,586517.1585,61059.97489,21
+1179,105355.6052,586605.4769,60919.84906,21
+1180,346815.7884,585552.9261,60812.31311,21
+1181,287985.5908,586346.9143,0,21
+1182,269043.5447,583661.9245,0,21
+1183,252275.221,584597.751,0,21
+1184,355183.3712,584996.4791,0,21
+1185,285582.3947,509311.2811,486942.1695,21
+1186,292314.2887,510856.0056,132614.9849,21
+1187,304369.8713,673326.0233,52631.83036,21
+1188,296796.4247,87710.62067,55168.36636,21
+1189,299280.9849,87564.57359,71564.50297,21
+1190,297910.9783,1183362.431,66365.50825,21
+1191,298311.6072,391592.3203,64815.51737,21
+1192,298311.9433,688126.2093,65140.91801,21
+1193,298260.6545,542232.8181,64912.1513,21
+1194,296945.4128,581016.4413,64656.73753,21
+1195,298942.1169,566177.4055,64449.75544,21
+1196,296945.096,562148.4477,64183.65657,21
+1197,636566.0333,630814.1798,63999.90853,21
+1198,298067.1475,561720.7107,63773.04123,21
+1199,296812.5171,574171.0519,63575.94522,21
+1200,296463.2338,585864.1734,63372.6116,21
+1201,296555.2158,576965.5933,63239.12047,21
+1202,295206.7287,577820.3599,63129.98257,21
+1203,296123.1016,578551.4036,62984.26941,21
+1204,294411.9179,576651.9133,62904.48704,21
+1205,294519.1979,575761.4198,62787.91711,21
+1206,295502.006,575682.4787,62708.36091,21
+1207,39607.50153,575664.1557,62573.76662,21
+1208,39474.5165,573867.741,62535.54449,21
+1209,39525.85304,574054.1141,62443.44916,21
+1210,766027.3805,572886.7135,62362.84156,21
+1211,214682.9835,573357.565,62295.89104,21
+1212,111857.3795,570921.3501,62246.29471,21
+1213,337409.0129,571929.9986,62144.81141,21
+1214,247108.773,571096.5071,62158.51137,21
+1215,260724.3678,569397.5765,62077.16233,21
+1216,343700.4161,570489.7962,0,21
+1217,277041.4213,496454.5445,0,21
+1218,288013.3291,909158.8176,0,21
+1219,296410.6568,661020.5661,0,21
+1220,292194.1652,81955.62377,0,21
+1221,291437.7846,88336.84485,590274.7813,21
+1222,292135.1583,1178004.451,54709.01032,21
+1223,290914.8191,354741.5001,58580.84283,21
+1224,291878.6036,667675.4657,75455.84643,21
+1225,290184.9425,527466.3607,68640.19287,21
+1226,291299.6056,585479.7347,68025.15502,21
+1227,290802.5003,547592.161,68273.46332,21
+1228,290379.0139,546368.9009,68041.55667,21
+1229,289843.5472,544676.6837,67908.32486,21
+1230,290193.4728,611797.161,67721.58168,21
+1231,289082.0437,544827.8444,67561.04781,21
+1232,290006.0186,554517.2967,67442.8513,21
+1233,289384.8196,567370.3478,67284.25523,21
+1234,288594.1192,559953.4107,67160.34434,21
+1235,289064.5266,559269.6803,67039.88236,21
+1236,289260.9841,558845.9195,66941.54494,21
+1237,626702.5671,559184.8258,66811.73431,21
+1238,288842.1701,557708.8441,66707.68706,21
+1239,288275.373,557259.7821,66629.81751,21
+1240,38869.82252,556071.7501,66543.84385,21
+1241,38949.91699,557136.0967,66458.74051,21
+1242,38937.46564,554580.6696,66370.23495,21
+1243,750999.8841,554723.5861,66342.69083,21
+1244,189056.1383,555186.9366,66211.30275,21
+1245,121795.8215,552145.1704,66225.74073,21
+1246,285542.0579,554022.7206,66074.79387,21
+1247,242659.6699,551567.2017,66143.41559,21
+1248,349953.4306,551959.7638,66007.58324,21
+1249,263798.9316,481733.6629,66015.50323,21
+1250,281904.7349,480430.5671,65946.80418,21
+1251,290783.472,644526.6114,0,21
+1252,285922.4054,75450.48073,0,21
+1253,285078.5779,89468.45785,0,21
+1254,285741.0806,1167455.916,0,21
+1255,285624.8966,317728.5328,131334.4614,21
+1256,284732.3211,633053.6266,51633.80941,21
+1257,284192.9894,523000.608,520282.7816,21
+1258,284802.9743,562434.8539,81155.0941,21
+1259,284592.523,547619.6993,71697.90201,21
+1260,282751.2248,528307.7713,72262.34495,21
+1261,284765.9357,528086.8506,72237.33143,21
+1262,284336.7001,528311.3133,72114.19168,21
+1263,283701.4019,592361.8596,71946.43804,21
+1264,284142.984,527615.2572,71711.51904,21
+1265,285186.201,538740.5007,71638.55492,21
+1266,283902.3733,551959.0688,71390.11422,21
+1267,284671.8305,543761.4336,71305.5383,21
+1268,285824.8092,544944.7112,71175.31749,21
+1269,284907.0855,545482.4795,71042.55258,21
+1270,285890.7446,544140.6036,70898.90221,21
+1271,285404.2301,544559.7359,70810.54414,21
+1272,285940.4349,545395.9605,70687.79345,21
+1273,38967.72239,544890.4496,70597.03236,21
+1274,38821.51299,545164.3724,70489.48681,21
+1275,38960.71062,543283.7779,70401.89507,21
+1276,749301.8702,545330.4344,70342.40788,21
+1277,187229.1348,544225.0733,70245.92946,21
+1278,86069.04862,545079.6079,70144.5222,21
+1279,285762.5515,543500.0341,70127.62805,21
+1280,338311.2959,544046.1341,70024.93143,21
+1281,278497.4057,475757.2148,69984.20489,21
+1282,618067.046,474901.2723,69922.7972,21
+1283,292502.2978,638841.2112,69872.55275,21
+1284,288978.3746,73041.93654,69843.35489,21
+1285,288826.636,89414.0688,0,21
+1286,289598.445,1163745.289,0,21
+1287,289463.8997,309038.3044,0,21
+1288,289737.4277,627779.1325,0,21
+1289,289680.3629,523448.4976,137890.312,21
+1290,290634.0049,559227.8312,55204.09794,21
+1291,290265.8691,546378.4862,60997.0353,21
+1292,290549.0568,545513.1677,78181.9234,21
+1293,291083.0116,528073.4153,69794.19492,21
+1294,291134.9619,527122.1543,70456.90423,21
+1295,290894.7519,526829.6507,539721.2288,21
+1296,292074.5527,592858.1229,76369.59241,21
+1297,290904.9812,527206.6566,76176.13673,21
+1298,292419.6167,536876.1154,75996.99424,21
+1299,291741.4838,552307.0071,75773.57065,21
+1300,292901.9034,543259.4165,75709.83952,21
+1301,291741.2939,544607.989,75448.20211,21
+1302,293173.4308,544056.5411,75354.37927,21
+1303,292735.857,545299.4497,75152.54222,21
+1304,293462.4239,543811.9483,75070.86815,21
+1305,292807.9855,543725.5868,74923.71703,21
+1306,39798.60792,545227.9546,74837.99748,21
+1307,39936.62138,543844.5097,74653.9752,21
+1308,39880.25122,544266.3586,74591.85916,21
+1309,764502.2985,543295.3049,74481.77014,21
+1310,171638.1096,544872.7019,74393.97423,21
+1311,76373.34755,543283.1592,74250.23112,21
+1312,396672.1776,543702.3533,74256.27606,21
+1313,274559.4299,475364.8671,74106.20522,21
+1314,297258.157,473933.8317,74047.41026,21
+1315,294988.5628,638575.8946,73975.62288,21
+1316,296981.6773,72707.18675,73935.19171,21
+1317,296602.5788,89566.70021,73856.70609,21
+1318,297507.114,1163575.672,73784.79896,21
+1319,297954.6127,308361.1873,0,21
+1320,297580.9725,626883.8034,0,15.6
+1321,299153.3421,521469.6325,0,15.6
+1322,298628.6773,559376.789,0,15.6
+1323,299753.0905,543507.7201,144770.241,15.6
+1324,300603.8593,541685.0661,60019.18969,15.6
+1325,300364.8329,542659.0402,65150.3493,15.6
+1326,302540.9393,522744.7324,81558.79256,15.6
+1327,640513.57,522590.1541,74329.79916,15.6
+1328,303486.464,522172.2646,74323.70937,15.6
+1329,303072.2246,585037.5405,81135.89459,15.6
+1330,303642.9266,521686.4021,40650.30677,15.6
+1331,304091.6715,528697.3469,41214.56752,15.6
+1332,305375.3017,543300.6503,522431.0448,15.6
+1333,305138.4652,534749.3874,87850.40312,15.6
+1334,306131.1263,534900.5836,85819.70819,15.6
+1335,307290.3189,533561.9531,81994.88292,15.6
+1336,306483.3975,534527.1696,50363.07194,15.6
+1337,308831.6212,532282.7068,103434.8665,15.6
+1338,307800.7585,532497.2768,97689.32043,15.6
+1339,41631.3021,531462.1278,94567.05693,15.6
+1340,41791.93424,529974.7232,41728.58845,15.6
+1341,41729.27979,530387.7702,42496.73711,15.6
+1342,752816.0776,529094.6873,80071.39946,15.6
+1343,225692.0574,527729.3506,47375.16595,15.6
+1344,161764.2302,528952.1086,42158.53137,15.6
+1345,352742.8124,458524.7143,101765.1439,15.6
+1346,307506.3791,458871.7683,88326.50522,15.6
+1347,320704.1454,622335.5528,83389.96186,15.6
+1348,310313.6513,65743.62556,42301.68825,15.6
+1349,315276.421,86457.22017,42937.39992,15.6
+1350,316158.541,1147703.127,100815.6054,15.6
+1351,316371.126,275822.911,92236.33285,15.6
+1352,317947.0789,579571.4426,93568.62259,15.6
+1353,317794.6802,518900.2673,0,15.6
+1354,317770.9058,528422.6121,0,15.6
+1355,319548.708,520863.1993,0,15.6
+1356,319502.1072,521108.9866,0,15.6
+1357,320361.7828,519142.8371,118396.1112,15.6
+1358,320528.4497,518958.6433,87341.66581,15.6
+1359,321846.9058,501574.5049,81308.31172,15.6
+1360,321425.085,500722.2981,88630.79514,15.6
+1361,323101.5771,499171.9715,84174.23927,15.6
+1362,322518.7885,499063.6525,83042.77731,15.6
+1363,324256.3849,567993.304,82720.54563,15.6
+1364,323718.0897,497732.8768,82549.73483,15.6
+1365,325127.7656,501494.5538,82283.33217,15.6
+1366,324967.593,523134.7324,520992.2393,15.6
+1367,666341.1385,508729.3867,44549.54172,15.6
+1368,326504.0129,512322.6867,601623.1713,15.6
+1369,327319.3401,510244.2931,558412.4771,15.6
+1370,327500.9232,509472.4031,46386.59547,15.6
+1371,328710.883,509574.7279,83277.14898,15.6
+1372,44072.40536,508296.508,577137.9079,15.6
+1373,44007.46588,507444.1006,47703.5181,15.6
+1374,0,506667.3193,89414.42971,15.6
+1375,781660.6235,505636.3315,593130.8787,15.6
+1376,399455.2787,506769.3404,52019.73144,15.6
+1377,92754.86235,437751.2937,192361.9084,15.6
+1378,369900.4943,440508.905,51568.24165,15.6
+1379,351255.4282,601572.3813,51475.32854,15.6
+1380,333439.7149,56972.29376,49897.0266,15.6
+1381,330385.1519,82982.72804,164965.151,15.6
+1382,335185.9025,1116450.311,115240.2256,15.6
+1383,334695.2553,272093.7541,133410.8901,15.6
+1384,334936.3719,509111.9378,126417.6553,15.6
+1385,333420.7112,530488.3443,124358.0969,15.6
+1386,334566.4443,503427.7767,122899.6267,15.6
+1387,334087.6875,504447.5943,0,15.6
+1388,333782.8241,505508.5846,0,15.6
+1389,333046.4414,505663.2908,0,15.6
+1390,333322.2776,505106.2778,0,15.6
+1391,333393.2465,505980.1809,211124.8022,15.6
+1392,332895.931,506034.8164,105412.2546,15.6
+1393,332970.0836,489719.5459,107765.427,15.6
+1394,331859.3248,490276.7835,125663.3697,15.6
+1395,333240.0441,491308.3051,116144.5192,15.6
+1396,331386.9003,489900.9038,115175.3456,15.6
+1397,331980.645,559532.1625,114258.962,15.6
+1398,331952.6725,490790.8064,113159.9187,15.6
+1399,331776.258,496927.1481,112174.4039,15.6
+1400,331123.6029,517914.2099,111170.9585,15.6
+1401,331626.8455,506883.5099,110215.4228,15.6
+1402,330864.2364,508295.1136,109315.2484,15.6
+1403,330858.4597,509278.3594,110222.2343,15.6
+1404,330788.1701,509784.7244,670626.2737,15.6
+1405,44350.93492,509338.1021,111266.7418,15.6
+1406,0,510175.6608,109773.7134,15.6
+1407,339569.6827,510213.7192,110754.1844,15.6
+1408,887368.2989,510907.1995,108802.3329,15.6
+1409,327119.3427,445703.8414,108363.9245,15.6
+1410,87360.33082,445265.9182,556589.5504,15.6
+1411,381653.1315,608978.9145,51021.41362,15.6
+1412,344221.5985,60103.06174,93265.58989,15.6
+1413,325913.0778,84902.50062,586945.7327,15.6
+1414,326236.2156,1134987.678,52530.12958,15.6
+1415,329173.8914,273896.0432,97423.28147,15.6
+1416,329233.717,541816.7788,604671.6025,15.6
+1417,328949.4363,527740.3032,53936.48136,15.6
+1418,328614.4163,518211.7464,103100.7721,15.6
+1419,328384.1089,515908.8559,619685.4882,15.6
+1420,328343.8521,514753.6377,57645.54945,15.6
+1421,328103.4419,517093.656,0,15.6
+1422,328801.624,515787.4793,0,15.6
+1423,326366.081,516708.7905,0,15.6
+1424,328696.3307,516743.3961,0,15.6
+1425,327003.3506,517176.3089,288698.2843,15.6
+1426,327268.8253,516595.4801,174184.8503,15.6
+1427,326714.4677,502471.548,42007.32824,15.6
+1428,326475.1559,499766.6947,64368.09879,15.6
+1429,327704.6674,502729.4061,53347.84967,15.6
+1430,325030.96,501373.4193,185136.2075,15.6
+1431,327121.4654,571247.15,187589.1372,15.6
+1432,325635.3163,503068.4189,54207.73585,15.6
+1433,325454.6766,507948.6242,55232.23987,15.6
+1434,326421.3988,530306.8408,79962.76104,15.6
+1435,324780.9447,516970.0951,124666.0575,15.6
+1436,325387.1811,521284.0551,184638.5699,15.6
+1437,325837.0281,520941.2919,162663.4678,15.6
+1438,0,520674.3512,55194.91855,15.6
+1439,0,521380.2468,56755.08687,15.6
+1440,105851.7199,521325.7285,175232.1093,15.6
+1441,806762.1023,440827.0624,684850.2423,15.6
+1442,294185.7233,437497.5892,53798.19862,15.6
+1443,91388.30453,598504.7737,53975.19938,15.6
+1444,368992.6685,62965.48921,172522.4457,15.6
+1445,272122.4112,83546.21886,132915.8959,15.6
+1446,654545.4967,1136481.104,135835.23,15.6
+1447,305028.8844,273185.5137,133038.6053,15.6
+1448,301785.4671,476167.404,130183.5805,15.6
+1449,305908.5005,551530.7343,128406.2553,15.6
+1450,303573.2112,498558.7975,583423.4411,15.6
+1451,303524.6531,504498.8768,54359.23847,15.6
+1452,303954.9035,504408.976,106334.9,15.6
+1453,302008.4828,503470.0292,612804.9571,15.6
+1454,302479.7137,504969.4343,55639.34183,15.6
+1455,302454.1577,503632.4185,0,15.6
+1456,300028.2044,503554.0498,573181.6776,15.6
+1457,301740.4831,504152.5917,0,15.6
+1458,300333.9142,503404.0353,0,15.6
+1459,299762.9737,504440.1637,746138.7368,15.6
+1460,299058.5842,502732.1154,41558.01659,15.6
+1461,298758.1208,487251.2748,109020.4349,15.6
+1462,298351.7988,486374.9042,688471.3022,15.6
+1463,298038.1207,486438.7258,71124.55005,15.6
+1464,297194.7202,487852.7707,129405.9889,15.6
+1465,296965.0807,552866.7861,682066.3125,15.6
+1466,296698.2,488552.2698,73425.94178,15.6
+1467,296128.068,489380.246,138897.0912,15.6
+1468,295225.3031,513370.8721,692146.7052,15.6
+1469,295709.2725,500253.3548,78264.06941,15.6
+1470,253399.356,502850.2987,138829.9923,15.6
+1471,0,502329.649,718414.2708,15.6
+1472,97924.73751,502152.4224,77782.67452,15.6
+1473,28303.52219,438039.8974,144851.4962,15.6
+1474,775512.7548,436967.5879,718126.9876,15.6
+1475,249203.5917,597032.5287,79763.31082,15.6
+1476,102868.6595,62517.94124,979312.9947,15.6
+1477,351544.7945,83309.38166,719689.4064,15.6
+1478,254448.9925,1135187.089,84040.18091,15.6
+1479,262472.5365,272890.0694,149334.9513,15.6
+1480,312249.3635,467660.2691,743022.6065,15.6
+1481,281402.4992,555069.3159,81822.07498,15.6
+1482,289420.501,495329.4696,154335.9516,15.6
+1483,628715.8217,503874.7676,741293.304,15.6
+1484,288071.6697,502373.7657,83257.43643,15.6
+1485,288700.9903,503315.7766,163362.1515,15.6
+1486,287050.5508,502937.7198,747870.3083,15.6
+1487,287512.4386,502719.9936,88486.97508,15.6
+1488,286168.0922,502665.087,159867.591,15.6
+1489,287038.3594,503259.6053,702884.5078,15.6
+1490,284767.3764,501384.1465,0,15.6
+1491,285977.4206,503207.3419,0,15.6
+1492,284281.2307,502404.6005,679515.8604,15.6
+1493,284894.6212,501704.1845,197954.8645,15.6
+1494,283256.4537,502602.8934,139191.7103,15.6
+1495,284019.4556,485331.4169,733383.8624,15.6
+1496,282705.1139,485928.4658,82184.94242,15.6
+1497,282829.3139,485287.056,152473.2953,15.6
+1498,281881.7622,485468.4015,766184.4931,15.6
+1499,281975.972,552670.8551,67054.81925,15.6
+1500,280465.3823,486798.7074,156564.7838,15.6
+1501,281945.0934,489224.8974,759139.6775,15.6
+1502,244461.6374,511289.9916,69778.36948,15.6
+1503,243853.5176,499515.8794,166890.8445,15.6
+1504,96320.98766,501823.5895,763571.3424,15.6
+1505,25455.73747,436549.2014,74999.37449,15.6
+1506,34873.6266,437416.3861,160628.1186,15.6
+1507,775477.8475,593128.466,783714.8187,15.6
+1508,226703.3843,62239.2633,71079.79338,15.6
+1509,117593.7296,83291.82106,164095.4352,15.6
+1510,347736.2496,1134877.364,775669.4801,15.6
+1511,258260.4126,272981.9178,1032901.636,15.6
+1512,267932.7641,465285.5449,167398.9215,15.6
+1513,312140.6734,553848.2336,765248.556,15.6
+1514,293151.4549,496063.5839,76065.49765,15.6
+1515,297403.6668,501253.3545,161489.7888,15.6
+1516,299824.5879,502283.1451,785197.3704,15.6
+1517,300768.0839,502384.7852,71940.41521,15.6
+1518,302819.5179,500677.2479,165189.7087,15.6
+1519,302915.3451,503585.9451,776981.5168,15.6
+1520,644010.3143,500477.8299,72714.54358,15.6
+1521,304998.8297,502188.418,173762.1479,15.6
+1522,306716.6238,501686.2226,778715.6026,15.6
+1523,307963.6136,500898.1556,0,15.6
+1524,308343.5174,501616.8778,0,15.6
+1525,309697.422,501283.2797,726911.9826,15.6
+1526,310902.3293,502164.8182,0,15.6
+1527,312312.5649,499907.4483,313736.2009,15.6
+1528,313256.8593,502113.2152,768628.8359,15.6
+1529,313853.5771,484671.4348,55619.46894,15.6
+1530,315235.8428,483522.4826,190298.6324,15.6
+1531,317095.0177,485736.1879,786098.3729,15.6
+1532,317283.6984,484566.2346,77532.42536,15.6
+1533,318591.757,551066.2748,170407.9213,15.6
+1534,276004.3217,485720.6494,806369.8903,15.6
+1535,277960.4242,488282.6801,77903.55849,15.6
+1536,379005.1789,510152.1503,174684.9362,15.6
+1537,38283.16012,434956.0074,798585.6236,15.6
+1538,33613.95329,435294.0334,76589.86312,15.6
+1539,50087.03715,593868.1739,183740.7285,15.6
+1540,833495.8439,62502.08733,798990.9823,15.6
+1541,360991.6422,83050.20084,82202.98244,15.6
+1542,107873.2694,1134637.591,176376.3215,15.6
+1543,388672.711,272718.4916,817749.7553,15.6
+1544,302090.0499,459356.7621,77633.06919,15.6
+1545,305148.888,556316.8316,179232.3594,15.6
+1546,348905.6588,493001.3825,1807656.319,15.6
+1547,330762.0755,501715.6475,76772.71051,15.6
+1548,333822.18,500880.9569,181798.4421,15.6
+1549,338360.8362,500698.7217,793444.3455,15.6
+1550,338474.6986,501906.1669,82429.29481,15.6
+1551,339483.3223,500501.9185,174715.6352,15.6
+1552,340439.6376,501841.6329,812493.9252,15.6
+1553,341608.2996,500081.4897,78062.43176,15.6
+1554,343231.0393,501898.2616,177830.5075,15.6
+1555,344115.8501,500203.2961,802563.3211,15.6
+1556,344770.2313,500200.0979,78690.49531,15.6
+1557,687119.5982,501639.8471,0,15.6
+1558,345984.1368,499813.6199,727481.3085,15.6
+1559,349435.4743,501288.4318,0,15.6
+1560,349188.3496,499806.011,318181.6376,15.6
+1561,349795.6418,500030.4894,796221.7738,15.6
+1562,347746.5445,500523.7552,65180.86731,15.6
+1563,349106.5361,481888.4086,191235.0262,15.6
+1564,346685.8877,482594.7179,806600.9532,15.6
+1565,347625.4601,482941.1389,78567.06881,15.6
+1566,299745.823,481134.627,191847.1738,15.6
+1567,298232.1956,548392.851,809866.1526,15.6
+1568,404615.5335,482506.4688,85533.31575,15.6
+1569,345414.4268,419230.1717,182186.1268,15.6
+1570,33737.49338,442830.1483,828782.6843,15.6
+1571,52395.10701,587403.9071,80569.32398,15.6
+1572,772378.0813,60824.21336,184454.2257,15.6
+1573,273142.3955,82106.40476,817435.9675,15.6
+1574,222386.1781,1129167.317,80639.28954,15.6
+1575,365069.351,271590.1383,192659.4391,15.6
+1576,319096.7591,438868.9589,816429.065,15.6
+1577,361700.2126,559448.3509,86207.26895,15.6
+1578,333563.1358,483820.8537,427596.3107,15.6
+1579,340630.1769,493555.1937,84603.81902,15.6
+1580,340470.4318,495097.3985,83552.09958,15.6
+1581,341069.9473,493198.9651,1084709.365,15.6
+1582,339184.7213,493566.0343,336618.741,15.6
+1583,338288.9262,492198.4963,224977.8679,15.6
+1584,339402.7768,493262.8225,262228.329,15.6
+1585,337395.8335,491043.2096,245489.8464,15.6
+1586,336981.9988,902569.8884,239406.7863,15.6
+1587,337292.4326,491059.6459,234458.2504,15.6
+1588,335755.4505,490696.9053,230130.4269,15.6
+1589,335512.3733,489972.8748,226066.3809,15.6
+1590,335456.5676,489899.244,0,15.6
+1591,334090.4131,490176.3085,0,15.6
+1592,333689.5605,488271.2144,0,15.6
+1593,333817.5158,489132.5201,339850.079,15.6
+1594,672147.1835,488377.5796,194427.6605,15.6
+1595,331785.9303,487761.678,201809.8752,15.6
+1596,331837.5197,487271.4252,216848.7606,15.6
+1597,331149.5362,471033.1196,203148.7158,15.6
+1598,285244.6091,470706.5874,205995.3768,15.6
+1599,284590.0405,470498.1015,198998.1148,15.6
+1600,388616.5981,470044.2204,196835.5485,15.6
+1601,325318.1122,471830.4852,193723.3216,15.6
+1602,33404.64536,817892.471,190784.0714,15.6
+1603,50872.48979,565725.5149,187544.2611,15.6
+1604,44862.88451,66385.31845,185348.7497,15.6
+1605,834492.7826,78550.38168,182395.271,15.6
+1606,368868.2995,1105630.027,179985.2586,15.6
+1607,98851.88746,269560.2501,653140.7223,15.6
+1608,377969.2638,406688.2432,68206.70148,15.6
+1609,297570.3817,559868.693,142222.226,15.6
+1610,294112.9216,467837.746,681106.5307,15.6
+1611,339217.2321,483795.8195,69179.66417,15.6
+1612,316089.2605,481502.5896,142246.9437,15.6
+1613,321290.7299,481954.0895,694055.4276,15.6
+1614,320269.8092,481713.6174,70138.26359,15.6
+1615,321023.0112,480854.1785,145405.722,15.6
+1616,318893.2348,480756.5135,1511451.203,15.6
+1617,319992.9458,479243.3039,70356.42337,15.6
+1618,318465.3132,891550.9729,146867.6304,15.6
+1619,317246.9814,478476.1752,707474.5934,15.6
+1620,317804.7928,479160.7646,71285.27681,15.6
+1621,316979.5343,478887.0333,150587.0227,15.6
+1622,317080.1026,477901.5627,716190.3427,15.6
+1623,316792.3235,477244.7423,0,15.6
+1624,317248.8672,478254.0054,0,15.6
+1625,316328.674,476463.8248,652877.7334,15.6
+1626,317363.3565,476620.8619,190914.7531,15.6
+1627,315485.1211,476430.2623,133032.1172,15.6
+1628,317387.0729,474881.2997,718301.0399,15.6
+1629,316027.2373,475720.7263,79272.29353,15.6
+1630,271617.4977,474748.3727,160569.4049,15.6
+1631,611845.4656,459057.7106,738718.1422,15.6
+1632,376251.0167,458923.4312,74219.29153,15.6
+1633,308131.3516,397239.6337,163552.3148,15.6
+1634,304572.8537,805872.2488,745129.0206,15.6
+1635,49619.21243,615903.178,75410.29958,15.6
+1636,43422.79588,38848.36231,166306.9054,15.6
+1637,43772.54584,65420.07017,751411.7758,15.6
+1638,823151.6105,1087339.075,76089.96227,15.6
+1639,324304.1307,266267.0485,168821.1589,15.6
+1640,92715.6137,378792.9075,757257.5117,15.6
+1641,380454.5291,555745.1965,76805.51983,15.6
+1642,282183.6779,454240.5925,171201.6552,15.6
+1643,287396.7939,471409.3598,762887.2278,15.6
+1644,329372.4704,470237.9148,77219.17477,15.6
+1645,311262.8275,470347.2962,173582.5202,15.6
+1646,313312.4482,469574.7383,767879.7122,15.6
+1647,314640.2644,469416.1605,78004.82194,15.6
+1648,314999.9593,468747.9937,175615.0217,15.6
+1649,314538.5549,468598.2835,772800.4982,15.6
+1650,314307.6197,878719.1955,78481.72547,15.6
+1651,314406.0578,468492.4977,1121231.492,15.6
+1652,314572.2846,466429.4554,765633.8474,15.6
+1653,314071.0231,467243.3481,77882.88586,15.6
+1654,313818.7924,466325.4125,174661.7881,15.6
+1655,313375.1498,465839.2988,770717.4614,15.6
+1656,313611.3811,465537.7143,0,15.6
+1657,314099.1003,465475.5043,0,15.6
+1658,313126.3904,465263.9279,698661.2503,15.6
+1659,313090.0274,464173.6737,204935.1542,15.6
+1660,313035.1839,463579.2673,152391.7357,15.6
+1661,312846.0045,464413.86,765349.4831,15.6
+1662,269549.4628,462574.2641,86172.24015,15.6
+1663,269871.2485,463206.5266,183680.8292,15.6
+1664,371547.7044,462612.4662,781889.9884,15.6
+1665,304518.4935,386580.7894,80138.60588,15.6
+1666,302434.0303,797271.6296,182733.0643,15.6
+1667,318059.1531,542202.0283,787313.5001,15.6
+1668,382726.2827,34489.73941,80532.48983,15.6
+1669,43361.95314,119685.5073,184200.2821,15.6
+1670,43535.1057,1037677.775,790826.9635,15.6
+1671,819243.8698,253187.4397,80959.10118,15.6
+1672,312022.3866,361894.771,185568.027,15.6
+1673,90642.71893,550297.3942,794143.9985,15.6
+1674,380261.9391,441483.0718,81391.9186,15.6
+1675,276771.2252,459299.6122,186906.194,15.6
+1676,284580.552,458646.4713,797084.0193,15.6
+1677,324935.3443,458847.7064,81817.04653,15.6
+1678,308200.5058,457866.335,188197.0174,15.6
+1679,309467.1067,458474.7139,800153.4564,15.6
+1680,312156.474,456308.662,81963.31285,17.8
+1681,2265230.165,2607381.012,2418713.344,17.8
+1682,2263162.054,2616699.381,1881399.91,17.8
+1683,1933549.748,1804210.619,779061.892,17.8
+1684,1323944.707,1773721.691,787454.1343,17.8
+1685,804195.1923,1228428.345,1448538.672,17.8
+1686,1262193.503,1441092.782,1765044.814,17.8
+1687,1028162.508,1232581.68,713160.7412,17.8
+1688,1033901.009,1218759.584,1449480.149,17.8
+1689,993561.0409,1210502.062,518113.7547,17.8
+1690,1002338.965,1204579.56,522720.6818,17.8
+1691,990640.4513,1198465.738,1821841.496,17.8
+1692,982628.1231,1192794.839,720499.2761,17.8
+1693,977344.3055,1177976.836,744135.3181,17.8
+1694,862309.3114,1165530.581,1496921.601,17.8
+1695,856185.7616,1165870.534,756184.5367,17.8
+1696,1062032.319,1156787.834,750810.7042,17.8
+1697,979632.2483,1022334.618,1535665.53,17.8
+1698,932902.3564,1253365.431,759725.8129,17.8
+1699,966788.0409,1069846.048,763210.4845,17.8
+1700,942100.9314,129744.7136,1561690.738,17.8
+1701,112801.7677,222427.7186,771045.4223,17.8
+1702,112977.102,2234402.969,774385.8943,17.8
+1703,1787003.482,920968.3355,1584254.096,17.8
+1704,754278.1372,1451201.602,781253.9006,17.8
+1705,1363984.962,1201631.845,783687.4795,17.8
+1706,980322.9625,1133100.813,1604026.577,17.8
+1707,893884.6847,1126621.305,790132.3868,17.8
+1708,933779.5582,1112658.125,809503.2417,17.8
+1709,917613.4079,1092800.069,1645118.859,17.8
+1710,912473.3364,1100809.456,822624.0928,17.8
+1711,902207.247,1090755.424,355203.6795,17.8
+1712,899944.7808,1090907.473,1054437.071,17.8
+1713,895212.2461,1085884.477,228658.4863,17.8
+1714,894790.1483,1083280.955,350874.5335,17.8
+1715,890109.3792,1078844.21,1047232.104,17.8
+1716,887913.0411,1076802.795,226361.8818,17.8
+1717,885719.5036,1071972.639,2229341.699,17.8
+1718,882964.5784,1069897.321,1354046.016,17.8
+1719,900258.9947,1066292.611,698627.81,17.8
+1720,878447.5288,1064227.893,922345.2822,17.8
+1721,878538.4699,1059788.673,2584379.114,17.8
+1722,881176.4088,1057515.047,599523.4914,17.8
+1723,877033.4562,1466383.872,1105781.678,17.8
+1724,872875.3256,1050865.669,1593513.723,17.8
+1725,874441.2498,1050243.984,789991.033,17.8
+1726,771200.6464,1047128.539,807126.3111,17.8
+1727,771406.5404,1042470.51,1627204.242,17.8
+1728,980431.897,928887.3328,813093.3052,17.8
+1729,852785.5117,923838.4385,816445.4909,17.8
+1730,867999.7045,1158444.429,1642010.052,17.8
+1731,867581.7697,1016126.824,823793.9096,17.8
+1732,855772.1965,85098.12262,827145.1723,17.8
+1733,104858.3322,220031.6252,1660615.727,17.8
+1734,102230.9259,2049495.986,833118.2811,17.8
+1735,1637514.686,790928.0492,835778.8188,17.8
+1736,717350.5384,1011207.037,1676965.936,17.8
+1737,979258.5006,1108884.221,813829.6756,17.8
+1738,823502.6353,1035121.925,816545.7919,17.8
+1739,858874.5239,1005257.068,1662376.736,17.8
+1740,862175.1707,1024701.241,821575.0396,20
+1741,2306976.896,2641086.954,3182006.699,20
+1742,2622820.302,2648174.842,3650634.368,20
+1743,2259506.812,2592076.116,2467514.771,20
+1744,2146650.707,2512118.995,1830260.886,20
+1745,2063829.342,2362220.631,2461770.199,20
+1746,2146776.106,2292455.019,1450204.073,20
+1747,1438838.897,2020179.057,485267.7728,20
+1748,1743488.514,1797753.764,1198105.997,20
+1749,1613670.855,1905675.483,2486203.799,20
+1750,1597085.536,1856436.355,1737996.895,20
+1751,1648784.615,1835249.521,1899460.2,20
+1752,1602464.411,1823561.36,1392616.575,20
+1753,1596163.527,1810944.933,1068502.502,20
+1754,1591885.729,1801032.211,2288690.077,20
+1755,1584545.606,1789632.338,1456274.557,20
+1756,1577893.297,1782759.121,2331912.856,20
+1757,1572839.873,1773061.428,2093102.752,20
+1758,1404593.107,1762030.953,1346674.67,20
+1759,1612008.382,1755340.485,1338048.171,20
+1760,1606758.386,1571394.531,2089590.094,20
+1761,1530823.138,1798606.101,1345285.411,20
+1762,1544172.832,1794099.998,1337662.165,20
+1763,1541676.41,2030197.793,2095611.911,20
+1764,1534176.08,297936.0082,1341330.62,20
+1765,181890.4536,2502716.166,1338920.743,20
+1766,2191919.213,1984037.696,2101202.965,20
+1767,1616981.036,1418467.246,1339540.789,20
+1768,1360560.973,1794027.553,1336605.933,20
+1769,1572617.92,1691577.194,2104278.499,20
+1770,1511668.166,1684581.368,1335722.774,20
+1771,1505146.671,1678177.802,1284655.454,20
+1772,1500832.724,1672584.45,2057462.02,20
+1773,1499512.107,1668649.964,1282753.038,20
+1774,1491909.609,1661746.594,1279251.781,20
+1775,1491843.561,1657407.114,2052746.243,20
+1776,1486006.02,1651221.812,1276009.955,20
+1777,1484562.145,1646802.205,1353717.203,20
+1778,1480243.409,1640713.48,2085725.021,20
+1779,1815652.939,1636577.29,365352.8637,20
+1780,1474595.753,1631478.885,472474.1025,20
+1781,1446732.747,1626742.116,1138116.738,20
+1782,1440200.762,1621646.88,2530296.777,20
+1783,1441194.616,1618353.539,1745275.501,20
+1784,1500119.972,1613133.807,1418753.369,20
+1785,1456396.371,1607728.6,1022639.214,20
+1786,1449970.321,1604099.042,1534833.058,20
+1787,1459094.121,1598884.78,2209020.31,20
+1788,1449359.665,1597176.924,1173871.806,20
+1789,1303711.36,1589170.474,1305960.233,20
+1790,1510408.931,1589205.151,2036950.267,20
+1791,1466264.041,1427214.948,2345854.565,20
+1792,1416691.26,1658957.089,1230660.344,20
+1793,1446321.47,1605639.87,1992457.262,20
+1794,1437218.175,1455894.131,1237377.318,20
+1795,1432399.134,163013.3912,1237577.248,20
+1796,168137.88,2530219.789,2010567.374,20
+1797,2178730.38,1467120.778,1241982.431,20
+1798,1272547.847,1461691.344,1244124.419,20
+1799,1396475.4,1598528.293,2021587.737,20
+1800,1449135.354,1550134.429,1248422.742,21
+1801,2317558.294,3005447.682,4266677.515,21
+1802,2299292.327,2544731.033,4046722.012,21
+1803,2010478.571,2039149.084,1645630.903,21
+1804,2123641.969,2338763.163,1435410.67,21
+1805,1569353.206,2247109.132,1676779.863,21
+1806,1735900.384,1780288.76,2088358.098,21
+1807,1708374.201,1964994.757,1883633.852,21
+1808,1681158.105,1906728.961,1694470.403,21
+1809,1673330.608,1891689.635,1702283.978,21
+1810,1667980.543,1883806.61,1738972.671,21
+1811,1662137.118,1879708.386,1692856.631,21
+1812,1656364.269,1868166.931,1768026.081,21
+1813,1650994.297,1865744.525,1936772.006,21
+1814,1646173.327,1857442.569,1667294.867,21
+1815,1639390.926,1852951.54,1671523.621,21
+1816,1637470.012,1847083.55,1698308.66,21
+1817,1631235.351,1842070.581,1735709.54,21
+1818,1626799.031,1836530.764,1664316.56,21
+1819,1622484.253,1832586.434,1774338.533,21
+1820,1618947.527,1826347.777,1655700.719,21
+1821,1613491.93,1823286.179,1777531.467,21
+1822,1610970.896,1817094.133,1647387.874,21
+1823,1607348.02,1816086.799,1754564.943,21
+1824,1604777.998,1808666.541,1727321.141,21
+1825,1599815.293,1806409.319,1918034.393,21
+1826,1598101.155,1800368.929,1613685.696,21
+1827,1592003.628,1799371.196,1624697.724,21
+1828,1590925.967,1793247.141,1624253.281,21
+1829,1586784.406,1792363.645,1691827.242,21
+1830,1586023.986,1788328.614,1894604.347,21
+1831,1578079.479,1782845.134,1603997.306,21
+1832,1578654.554,1781375.098,1610950.55,21
+1833,1574667.021,1778212.501,1645229.555,21
+1834,1570249.266,1774032.903,1919990.881,21
+1835,1570478.299,1770211.31,1590675.379,21
+1836,1565306.867,1769864.374,1593157.97,21
+1837,1563833.796,1764841.322,1599190.551,21
+1838,1558755.665,1763169.905,1696317.521,21
+1839,1558015.956,1758514.027,1597269.186,21
+1840,1555090.222,1757938.671,1605269.653,21
+1841,1551599.288,1752626.454,1603096.424,21
+1842,1550554.279,1750363.287,1608696.314,21
+1843,1546994.788,1750591.111,1610728.82,21
+1844,1542285.009,1743880.764,1610054.411,21
+1845,1543810.516,1743009.734,2377626.642,21
+1846,1537762.279,1739421.602,1617941.659,21
+1847,1537292.116,1739219.112,1621532.642,21
+1848,1536140.028,1734836.053,2414116.496,21
+1849,1529526.584,1732102.281,1626256.372,21
+1850,1531410.462,1730821.193,1625057.22,21
+1851,1528046.635,1727720.173,2428756.782,21
+1852,1523376.526,1726152.743,1627727.986,21
+1853,1523317.7,1721688.001,1630389.602,21
+1854,1522334.479,1721900.529,2435229.616,21
+1855,1516397.237,1717617.06,1629896.972,21
+1856,1517717.164,1716428.556,1628869.386,21
+1857,1513633.02,1714414.911,2440365.342,21
+1858,1507092.781,1710729.378,1630642.824,21
+1859,1508009.465,1709100.676,1630639.03,21
+1860,1503783.35,1707056.039,2441765.222,21
+1861,1876612.552,2623552.559,1559569.372,21
+1862,1865925.62,2614972.997,1549664.005,21
+1863,1865419.755,2610271.267,2364868.198,21
+1864,1861067.743,2608991.239,1545537.434,21
+1865,1856009.653,2618227.574,1542618.852,21
+1866,1854085.6,2651754.438,2365049.003,21
+1867,1850354.511,2624592.006,1540586.329,21
+1868,1847998.809,2627795.028,1538936.658,21
+1869,1844637.169,2625222.173,2361923.323,21
+1870,1838611.592,2622820.241,1538267.373,21
+1871,1841949.86,2621071.683,1534602.603,21
+1872,1833561.906,2616761.917,2360542.2,21
+1873,1831758.924,2980309.326,1533183.682,21
+1874,1832104.393,2613375.499,1530236.614,21
+1875,1825543.396,2608614.927,2360408.874,21
+1876,1824596.722,2605848.357,1527195.3,21
+1877,1822240.517,2604653.864,1527560.627,21
+1878,1817493.332,2600032.783,2356428.005,21
+1879,1817232.623,2596143.673,1525332.47,21
+1880,1813696.746,2595760.082,1523013.844,21
+1881,1811419.637,2592579.972,2353977.784,21
+1882,1807964.101,2588566.39,1521804.406,21
+1883,1807610.82,2588792.268,1518502.352,21
+1884,1801796.934,2583159.051,2351926.93,21
+1885,1802612.116,2582124.574,1517625.282,21
+1886,1797798.601,2581468.231,1515229.442,21
+1887,1797922.866,2577574.056,2349223.005,21
+1888,1793083.148,2573625.171,1513878.038,21
+1889,1792429.717,2575125.635,1510165.976,21
+1890,1788493.211,2569218.46,2348854.727,21
+1891,1788959.96,2568393.017,1508566.418,21
+1892,1782800.875,2567168.11,1508703.742,21
+1893,1783155.576,2562703.673,2344564.881,21
+1894,1781324.094,2561833.224,1506627.611,21
+1895,1777063.831,2927255.447,1502324.395,21
+1896,1776174.222,2556729.674,2345274.931,21
+1897,1774688.539,2556004.944,1500393.796,21
+1898,1770519.055,2552420.565,1502680.705,21
+1899,1769681.887,2550245.388,2338842.1,21
+1900,1768341.228,2547659.37,1500295.887,21
+1901,1763601.797,2548067.514,1497279.064,21
+1902,1762998.007,2543069.02,2336546.54,21
+1903,1762488.91,2542600.238,1497517.409,21
+1904,1758598.514,2539699.966,1493541.918,21
+1905,1755682.21,2539441.103,2336653.518,21
+1906,1753312.733,2534322.557,1492334.561,21
+1907,1750563.077,2534870.249,1490702.649,21
+1908,1747128.483,2531730.293,2315417.452,21
+1909,1746380.939,2530405.739,1467165.286,21
+1910,1745102.715,2527258.641,1468282.715,21
+1911,1739922.654,2526699.671,2310835.234,21
+1912,1737335.056,2524219.51,1463544.279,21
+1913,1730505.124,2521684.175,1462929.567,21
+1914,1729229.791,2520508.035,2306300.826,21
+1915,1728781.101,2518965.156,1460862.833,21
+1916,1724649.235,2515597.59,1459581.254,21
+1917,1720982.914,2881796.946,2304510.782,21
+1918,1722337.877,2514192.44,1457221.234,21
+1919,1714594.395,2508021.816,1452367.26,21
+1920,1717063.529,2511520.662,2306316.822,21
+1921,1464725.382,2271333.754,1003876.19,21
+1922,1442811.813,2253799.341,987819.272,21
+1923,1434308.698,2247398.423,1842160.566,21
+1924,1430433.944,2242477.833,978896.1732,21
+1925,1421098.304,2239441.027,973320.4211,21
+1926,1418340.39,2233377.253,1835328.297,21
+1927,1411674.351,2232145.877,965444.315,21
+1928,1405411.208,2226853.904,962371.6181,21
+1929,1404134.723,2220580.79,1827529.407,21
+1930,1395860.366,2211847.398,954549.1277,21
+1931,1393748.541,2216389.734,951540.4006,21
+1932,1387846.052,2208878.337,1820370.839,21
+1933,1384129.763,2207345.132,943161.8927,21
+1934,1380496.427,2202471.341,940905.479,21
+1935,1375925.154,2202451.78,1812636.166,21
+1936,1370848.174,2195814.003,933938.4556,21
+1937,1369009.861,2200933.5,930928.9478,21
+1938,1365079.664,2553284.938,1806752.107,21
+1939,1359044.323,2189025.395,923929.963,21
+1940,1358091.197,2182834.387,1409776.563,21
+1941,1353002.54,2179869.35,898935.7316,21
+1942,1348769.811,2177868.682,903816.0259,21
+1943,1346040.488,2173718.489,896734.569,21
+1944,1343053.133,2171739.894,1051339.299,21
+1945,1338645.29,2169277,1240938.194,21
+1946,1337677.21,2166430.323,871941.9408,21
+1947,1332269.044,2165749.041,874039.9744,21
+1948,1328051.977,2163668.894,910495.7327,21
+1949,1327773.86,2159665.384,1224881.155,21
+1950,1323896.302,2160372.368,850996.777,21
+1951,1319524.26,2158141.819,853387.4132,21
+1952,1317081.67,2154327.968,848964.4282,21
+1953,1314545.706,2153656.328,1040828.857,21
+1954,1310072.496,2150743.906,903589.2388,21
+1955,1308011.118,2151353.425,930482.0889,21
+1956,1304993.812,2147030.471,918539.2495,21
+1957,1302033.206,2146605.935,910856.5232,21
+1958,1298445.707,2144145.138,905551.1554,21
+1959,1295144.24,2144038.415,902859.6281,21
+1960,1293182.075,2141617.769,898314.7456,21
+1961,1291033.724,2140772.21,895568.0509,21
+1962,1286130.673,2137487.673,892337.2829,21
+1963,1284610.773,2138414.298,888760.9296,21
+1964,1280897.786,2133703.465,881416.5697,21
+1965,1280093.601,2134656.313,886994.9411,21
+1966,1275613.779,2134019.448,878256.4629,21
+1967,1272808.861,2130135.055,1604709.2,21
+1968,1270790.476,2131153.683,790584.8783,21
+1969,1267926.176,2128411.143,790536.8308,21
+1970,1263080.372,2127272.648,1639565.201,21
+1971,1264045.977,2126865.941,788328.6201,21
+1972,1258777.51,2124250.057,787303.8091,21
+1973,1257253.921,2123979.377,1648912.579,21
+1974,1253981.551,2122397.013,784586.8719,21
+1975,1252191.873,2121908.503,783520.66,21
+1976,1249049.744,2119269.988,1652383.197,21
+1977,1245871.449,2119720.35,780648.3499,21
+1978,1243564.254,2118172.986,778844.2335,21
+1979,1242622.615,2116239.28,1654476.997,21
+1980,1236867.568,2117740.832,775696.1695,21
+1981,1237662.386,2114779.804,771578.8263,21
+1982,1232523.98,2113232.02,1650990.138,21
+1983,1229744.073,2114069.665,764414.4019,21
+1984,1228136.574,2112541.451,760325.5926,21
+1985,1224613.737,2112074.763,1644999.37,21
+1986,1221387.808,2111412.641,752490.8103,21
+1987,1219142.231,2110637.789,748371.5622,21
+1988,1217592.128,2110084.868,1638262.867,21
+1989,1212260.734,2109238.198,740753.3261,21
+1990,1211997.584,2109828.852,736336.1724,21
+1991,1208441.962,2108641.869,1630949.571,21
+1992,1206686.96,2108250.259,727515.2082,21
+1993,1202830.481,2106285.511,724740.9424,21
+1994,1200251.001,2108315.317,1621611.06,21
+1995,1198575.154,2105793.287,717852.7387,21
+1996,1194869.329,2107363.677,718027.3222,21
+1997,1193628.368,2102877.264,1614001.108,21
+1998,1189359.035,2107655.553,705372.9758,21
+1999,1189224.078,2104662.727,709527.8308,21
+2000,1183967.989,2103618.274,1604176.152,21
+2001,1182856.339,2104787.403,692402.2457,21
+2002,1179797.913,2102431.487,700480.9384,21
+2003,1178785.511,2104244.545,1595644.673,21
+2004,1173449.268,2102170.672,678529.2586,21
+2005,1173145.26,2103200.619,1195434.963,21
+2006,1170240.557,2101358.328,658341.2407,21
+2007,1166908.998,2102548.108,659984.0058,21
+2008,1166158.274,2102209.025,650983.8545,21
+2009,1161409.781,2101542.77,880448.2896,21
+2010,1161175.589,2100538.517,1012833.192,21
+2011,1156856.854,2101410.765,625769.933,21
+2012,1155138.392,2099888.879,628017.6768,21
+2013,1152664.787,2099634.637,654018.4399,21
+2014,1150620.967,2102066.634,769170.0861,21
+2015,1147558.708,2098811.843,822700.8845,21
+2016,1145538.056,2100175.296,920642.5925,21
+2017,1143304.26,2099414.807,592069.2264,21
+2018,1141207.217,2098147.348,592137.0974,21
+2019,1137240.036,2100704.782,587527.948,21
+2020,1136804.92,2097587.645,810028.0243,21
+2021,1133064.182,2100184.819,916392.9314,21
+2022,1131953.612,2096968.549,565062.7397,21
+2023,1127626.573,2099725.347,567316.9497,21
+2024,1127521.449,2098828.835,560068.5588,21
+2025,1123710.296,2097838.352,797905.1814,21
+2026,1121017.698,2098199.496,888510.4265,21
+2027,1119323.192,2098108.924,538557.7456,21
+2028,1118294.334,2098006.69,539643.1065,21
+2029,1113185.093,2098315.861,534355.2375,21
+2030,1112920.664,2096777.853,772555.1077,21
+2031,1110387.98,2098831.879,857248.1814,21
+2032,1107620.979,2097634.913,514377.2171,21
+2033,1106139.88,2096986.2,516369.2053,21
+2034,1102426.083,2098690.972,509655.2799,21
+2035,1102073.422,2097485.824,749464.2813,21
+2036,1096978.783,2097870.21,827211.8079,21
+2037,1098151.89,2096088.604,491887.6878,21
+2038,1093088.955,2099583.852,492396.5032,21
+2039,1092670.28,2096875.325,497198.5779,21
+2040,1089011.67,2098421.261,702591.9601,21
+2041,1088925.608,2096658.985,655727.417,21
+2042,1087167.419,2096130.458,654794.0932,21
+2043,1084276.328,2094652.924,648201.8498,21
+2044,1083223.764,2093442.752,640580.9063,21
+2045,1080947.327,2094000.327,636407.0911,21
+2046,1079004.134,2091951.49,630913.9786,21
+2047,1078326.608,2091377.655,1259011.639,21
+2048,1074537.862,2091641.411,465465.1232,21
+2049,1074550.163,2089003.261,534572.4683,21
+2050,1071989.787,2088167.484,1293328.643,21
+2051,1069656.382,2089577.656,462107.3031,21
+2052,1068273.197,2086331.642,904825.5564,21
+2053,1066799.086,2085985.602,452262.1044,21
+2054,1063859.724,2086143.803,457339.8283,21
+2055,1063223.408,2084139.724,450964.6797,21
+2056,1060588.926,2084144.716,695974.2509,21
+2057,1059899.496,2082572.819,766766.8047,21
+2058,1057620.007,2082778.654,439217.7638,21
+2059,1055127.337,2081275.288,441812.2727,21
+2060,1053833.54,2079286.155,460505.9539,21
+2061,1052585.772,2080866.683,626379.4124,21
+2062,1049088.75,2078902.929,643526.5601,21
+2063,1050195.921,2079906.289,700415.5031,21
+2064,1044767.853,2074999.609,422350.4643,21
+2065,1047343.899,2078076.246,424789.3219,21
+2066,1041363.272,2075463.593,678498.6045,21
+2067,1043552.806,2075786.389,648780.9157,21
+2068,1038525.603,2073352.881,705150.3504,21
+2069,1038600.42,2074941.212,406764.6348,21
+2070,1035175.785,2071823.802,407711.6255,21
+2071,1036094.612,2072378.919,404620.1508,21
+2072,1031666.666,2071556.435,646846.1182,21
+2073,1032459.304,2070141.96,694400.8719,21
+2074,1028849.13,2070717.095,393289.2956,21
+2075,1027819.03,2069276.98,396161.4495,21
+2076,1027129.107,2068299.297,392425.5541,21
+2077,1023598.189,2067815.936,635198.993,21
+2078,1023491.845,2068466.25,678940.5698,21
+2079,1021532.488,2065383.077,381042.4057,21
+2080,1019590.196,2065891.1,384190.4222,21
+2081,1016723.247,2065126.675,379701.6283,21
+2082,1017607.111,2064767.412,622590.6807,21
+2083,1015163.564,2063649.232,663453.7345,21
+2084,1011681.679,2062206.181,369063.9852,21
+2085,1012044.352,2063952.507,372198.3795,21
+2086,1009808.288,2061364.45,367215.8289,21
+2087,1008679.44,2059808.991,609861.1152,21
+2088,1005473.022,2061991.558,648238.2593,21
+2089,1006006.535,2058251.311,357207.9942,21
+2090,1003130.326,2060251.68,359722.9771,21
+2091,1002916.977,2058264.499,355302.7417,21
+2092,999002.8875,2057698.082,597883.5301,21
+2093,999135.0863,2058032.683,633238.8913,21
+2094,997538.2963,2055226.935,345124.5271,21
+2095,994992.5271,2057862.496,348125.624,21
+2096,993964.2814,2054728.635,343514.1364,21
+2097,993566.5751,2054617.401,586451.9532,21
+2098,989279.6636,2053820.439,619132.3776,21
+2099,990287.7505,2053211.581,333343.5075,21
+2100,987747.5299,2052928.848,338599.9403,21
+2101,985044.7759,2052147.3,326399.2372,21
+2102,981483.4078,2050323.163,568883.8157,21
+2103,978920.6591,2049187.344,598999.721,21
+2104,977804.9754,2048219.308,317346.298,21
+2105,974634.3207,2047204.569,318545.8645,21
+2106,974220.6578,2047291.892,315217.4493,21
+2107,970549.6038,2046111.794,556808.3619,21
+2108,969063.7217,2044225.392,585832.9499,21
+2109,967672.4082,2045686.729,305697.7342,21
+2110,963935.7315,2042975.454,308269.5498,21
+2111,963100.6896,2041869.086,304051.7681,21
+2112,960671.702,2043536.048,545290.8945,21
+2113,958792.3474,2040147.974,572465.2514,21
+2114,956471.489,2037018.375,295309.2125,21
+2115,954549.8273,2033947.341,297380.1022,21
+2116,952021.1981,2035531.106,293718.3261,21
+2117,950299.1166,2031422.83,533229.3156,21
+2118,949730.7946,2032143.352,559298.4819,21
+2119,944307.4722,2031256.778,284630.2743,21
+2120,945072.5756,2027971.011,287087.6558,21
+2121,941929.6298,2029794.537,282578.844,21
+2122,940642.6071,2027027.087,522395.0977,21
+2123,938256.663,2025587.008,545404.3389,21
+2124,935921.4447,2025410.086,274840.419,21
+2125,933933.6965,2024828.558,276312.3255,21
+2126,931968.4934,2023048.848,531005.5168,21
+2127,930740.8411,2021957.538,500584.0931,21
+2128,926485.4907,2020476.574,522054.8411,21
+2129,927462.3798,2020899.262,261581.4286,21
+2130,923430.0726,2018130.671,263477.4675,21
+2131,922595.2654,2018406.305,509603.4414,21
+2132,920178.1998,2017212.162,478824.4217,21
+2133,917801.8993,2017557.764,498706.3624,21
+2134,918024.1886,2014043.281,244298.4294,21
+2135,913440.5837,2016040.862,245144.9164,21
+2136,914146.4731,2014154.435,483604.1305,21
+2137,910547.0788,2013861.505,453516.6091,21
+2138,909983.4863,2013027.511,471294.3786,21
+2139,908281.0641,2011234.221,228732.2621,21
+2140,905455.3769,2012653.558,230306.7952,21
+2141,904510.198,2009564.545,460305.9702,21
+2142,902333.5581,2011752.938,432207.1585,21
+2143,900836.4501,2008550.054,447763.8358,21
+2144,898509.8337,2009161.717,212017.7507,21
+2145,899007.5698,2007393.57,212574.0326,21
+2146,894331.7678,2007983.876,437352.2629,21
+2147,894600.2464,2007784.561,409916.7158,21
+2148,891807.425,2004269.462,422102.8252,21
+2149,890452.2271,2007852.065,197530.4414,21
+2150,889134.8575,2004315.8,198245.29,21
+2151,886611.6807,2003626.167,417410.4324,21
+2152,886032.3573,2004599.373,391202.6857,21
+2153,883922.3565,2002907.762,402523.2116,21
+2154,881775.0799,2002687.594,187709.4557,21
+2155,880129.0433,2001222.891,188731.9458,21
+2156,879571.2745,2002776.473,401635.1507,21
+2157,877516.0034,2000825.004,376916.15,21
+2158,874001.7019,1999692.272,385950.1046,21
+2159,875406.1988,1999788.87,178540.728,21
+2160,871583.5827,2001071.827,179908.8436,21
+2161,947657.7786,2084245.474,419662.7861,21
+2162,946753.264,2085741.863,396246.5329,21
+2163,944769.6036,2085637.296,406793.332,21
+2164,946298.4558,2083925.957,205675.9509,21
+2165,943767.8796,2085732.99,207707.7846,21
+2166,944017.151,2082812.174,409907.738,21
+2167,943496.9657,2084615.509,386224.0661,21
+2168,941479.761,2083215.574,396413.8181,21
+2169,942870.7842,2082634.832,199709.1006,21
+2170,939803.0194,2081833.417,202022.6886,21
+2171,940293.5926,2081807.507,400064.2754,21
+2172,939087.0054,2081791.799,377612.2428,21
+2173,938183.8394,2081690.976,385715.8604,21
+2174,938269.1316,2080629.53,194144.0494,21
+2175,936247.4048,2078750.681,196069.604,21
+2176,935762.4603,2080555.915,390706.5108,21
+2177,936055.5569,2078654.875,367997.7497,21
+2178,933188.3427,2077583.237,375265.4103,21
+2179,935255.6484,2079253.091,187087.4613,21
+2180,931222.9295,2077232.632,189165.6291,21
+2181,933041.0677,2076770.288,381172.5057,21
+2182,929677.0412,2076942.789,358525.1613,21
+2183,930523.8058,2075674.921,365417.8986,21
+2184,930127.558,2075729.04,181727.5241,21
+2185,928115.3008,2075099.582,183985.3662,21
+2186,927677.2406,2073624.097,372278.7449,21
+2187,926344.6493,2075063.754,350593.2823,21
+2188,926949.3003,2071681.985,355741.3389,21
+2189,924145.0275,2074427.723,176682.4466,21
+2190,931556.5325,2071865.218,178494.7437,21
+2191,923069.6493,2071930.482,363635.2791,21
+2192,922480.7551,2071258.396,342466.4633,21
+2193,922221.55,2070367.174,346944.3058,21
+2194,921356.1009,2070231.042,171138.5009,21
+2195,919791.133,2068752.593,173218.607,21
+2196,919628.0601,2070219.989,355619.5718,21
+2197,918292.3413,2067033.655,334311.3151,21
+2198,916870.7435,2068880.952,337890.5849,21
+2199,917968.3182,2066769.347,166205.6784,21
+2200,915116.4203,2067769.938,168245.5536,21
+2201,916732.9088,2066272.422,347509.3709,21
+2202,914195.9816,2064840.31,326465.4569,21
+2203,912594.2013,2066185.926,329847.1266,21
+2204,913832.9747,2063457.712,161084.9209,21
+2205,910747.2505,2064530.396,162662.9079,21
+2206,919398.3098,2063496.046,339794.9265,21
+2207,908801.9859,2062971.281,318707.7605,21
+2208,911167.3398,2062525.923,320898.7153,21
+2209,907550.4265,2061006.09,155982.6578,21
+2210,908510.7278,2062349.086,157642.7255,21
+2211,906950.899,2060940.798,331737.7059,21
+2212,906557.6775,2058858.469,310693.8395,21
+2213,906012.9711,2060830.711,312836.0846,21
+2214,904541.4448,2057805.831,150839.6085,21
+2215,903693.3242,2059101.194,152673.7682,21
+2216,903607.6503,2058283.777,324249.6497,21
+2217,903131.0334,2057521.755,303539.9401,21
+2218,901023.0567,2056398.043,257918.4402,21
+2219,900775.2801,2058330.895,270378.3403,21
+2220,900702.2343,2053700.476,264270.488,21
+2221,822933.3704,1968601.363,231416.1728,21
+2222,822545.9794,1965163.196,228198.6266,21
+2223,820194.2344,1962438.164,224971.5366,21
+2224,820544.1455,1962951.674,289254.8425,21
+2225,818251.8249,1958103.351,106322.0918,21
+2226,817847.4111,1960872.081,105955.5188,21
+2227,816426.3236,1954372.189,265861.3716,21
+2228,816045.2699,1957240.026,237085.354,21
+2229,814489.5038,1951755.126,205088.253,21
+2230,813920.1028,1951585.286,212105.0707,21
+2231,812990.1857,1951776.248,206051.8219,21
+2232,813009.8277,1947766.03,202270.0377,21
+2233,810831.1113,1947558.013,200143.7203,21
+2234,810396.1528,1946286.565,198089.895,21
+2235,810008.6697,1943560.584,254090.3953,21
+2236,808377.7692,1942881.765,91973.76754,21
+2237,808609.3943,1942551.2,92423.90908,21
+2238,807163.3008,1939636.276,236664.92,21
+2239,805634.1692,1938844.649,211905.9004,21
+2240,806721.0674,1936283.368,183342.5574,21
+2241,804841.5874,1935254.564,191360.4675,21
+2242,802825.8805,1934768.269,185429.6008,21
+2243,803987.2594,1933514.85,183441.8717,21
+2244,802170.8296,1930613.151,181292.3239,21
+2245,801992.5983,1930213.043,179295.4904,21
+2246,801090.6072,1927731.445,229772.3408,21
+2247,799706.9921,1928798.426,83559.16048,21
+2248,799876.4407,1923310.382,84134.33698,21
+2249,799396.739,1925362.859,214489.9611,21
+2250,796150.3642,1922086.281,191404.3091,21
+2251,798636.5638,1922577.9,166664.5952,21
+2252,796131.3033,1919758.577,173072.1853,21
+2253,795340.0429,1919449.665,168379.3352,21
+2254,794634.9948,1916650.595,166182.6997,21
+2255,796241.0055,1916240.378,164015.0919,21
+2256,792503.1355,1914573.719,162849.0315,21
+2257,794314.7653,1912968.343,208020.9958,21
+2258,791589.3305,1911676.807,75112.45824,21
+2259,792543.0037,1910598.168,76154.60118,21
+2260,797445.6392,1909279.699,194222.914,21
+2261,791474.5428,1907464.504,173464.7763,21
+2262,789636.588,1906267.109,151257.897,21
+2263,789696.9541,1905227.652,156900.2811,21
+2264,789869.8492,1903332.699,153023.3965,21
+2265,787183.793,1902442.973,151074.4741,21
+2266,788751.604,1900653.709,149521.9461,21
+2267,786567.0344,1899732.032,148217.901,21
+2268,786857.0395,1897891.25,189506.9502,21
+2269,785910.4043,1897201.904,69264.61254,21
+2270,792674.3796,1896314.523,69527.66943,21
+2271,784530.8724,2266724.648,177926.2304,21
+2272,784930.9613,1892794.19,158881.7629,21
+2273,782948.2147,1891784.242,139325.6749,21
+2274,784321.4604,1889875.045,145047.5649,21
+2275,781901.9296,1889957.181,141362.975,21
+2276,782570.0593,1886896.11,139495.9362,21
+2277,781783.8616,1886663.182,138704.1904,21
+2278,781320.9101,1885368.784,137226.4744,21
+2279,780590.0584,1883379.399,601551.2421,21
+2280,780298.1669,1881840.407,66437.84858,21
+2281,777893.6313,1882395.734,119900.8159,21
+2282,781216.2909,1883033.954,642304.8441,21
+2283,778884.2615,1881819.425,73478.33747,21
+2284,780350.1297,1883058.498,233454.923,21
+2285,777295.7396,1882424.391,72811.05917,21
+2286,778720.1953,1880255.505,74371.30409,21
+2287,776180.064,1880593.009,78854.48159,21
+2288,776742.6749,1879064.512,172571.2191,21
+2289,776119.8414,1878931.264,170953.5732,21
+2290,774372.6063,1876556.465,162066.795,21
+2291,773522.4975,1876042.193,96740.13422,21
+2292,775033.8833,1875407.375,206129.8723,21
+2293,771090.8792,1873781.894,182957.5955,21
+2294,772638.8676,2245413.788,146893.7892,21
+2295,772572.8949,1871629.26,157505.857,21
+2296,769438.5868,1870934.546,153682.3847,21
+2297,771054.7285,1868779.609,151704.7873,21
+2298,769914.0731,1869679.819,150422.1184,21
+2299,767763.8553,1866948.038,148988.879,21
+2300,768621.5382,1867013.134,147883.7428,21
+2301,767317.209,1866380.132,146847.0296,21
+2302,766830.0498,1864013.694,145534.9342,21
+2303,766079.0072,1864825.449,144621.2832,21
+2304,765454.2825,1863447.759,143585.2332,21
+2305,765107.1513,1861863.353,140849.3091,21
+2306,763825.9171,1860909.185,144011.4231,21
+2307,763927.661,1861187.693,141109.1379,21
+2308,763379.537,1859003.137,140865.1353,21
+2309,761802.3389,1858142.811,140061.3305,21
+2310,761126.0182,1859330.066,604978.2958,21
+2311,761636.6178,1855757.46,69553.18764,21
+2312,760165.4741,1856603.54,117169.9342,21
+2313,759882.2542,1854438.571,639745.058,21
+2314,759066.4909,1854485.58,70927.77342,21
+2315,759892.448,1852837.238,231479.8973,21
+2316,757307.7857,1853277.51,70618.0816,21
+2317,757703.3859,1850415.157,72778.91199,21
+2318,757285.3848,1851724.357,77686.70038,21
+2319,756141.9538,2222404.186,171752.732,21
+2320,755950.2267,1851613.644,170166.6682,21
+2321,754834.9095,1849025.434,161698.0455,21
+2322,755909.9491,1849236.805,161325.7719,21
+2323,753521.3276,1847819.373,157683.0271,21
+2324,753455.3968,1846660.307,156076.1288,21
+2325,753666.8112,1845944.691,154751.9955,21
+2326,751862.7396,1845438.716,153682.6564,21
+2327,752318.8226,1844964.537,152585.9639,21
+2328,751600.8619,1843182.507,151635.7724,21
+2329,751163.106,1841154.605,150466.7094,21
+2330,749517.4882,1839708.71,149614.1972,21
+2331,750805.478,1839634.017,148916.6087,21
+2332,749465.2193,1838656.192,147803.1108,21
+2333,748253.0585,1837331.322,146965.652,21
+2334,749166.5429,1836500.91,146502.7381,21
+2335,747523.7187,1835788.456,145314.7592,21
+2336,748026.6893,1835607.084,144775.8808,21
+2337,745900.0601,1832983.954,144511.0897,21
+2338,746810.8839,1834072.265,143272.2748,21
+2339,745838.2435,1832044.025,143071.4928,21
+2340,745584.5645,1831119.385,142479.9136,21
+2341,743970.2442,1831145.182,601420.9614,21
+2342,744804.6793,1828809.045,65711.98677,21
+2343,742515.8683,1830332.341,113566.3304,21
+2344,743408.6203,2201814.458,636238.1021,21
+2345,743369.4314,1828410.689,67515.31169,21
+2346,742207.3895,1825670.863,228258.7377,21
+2347,741746.5728,1826554.276,67787.03567,21
+2348,742027.2937,1825853.16,69825.9789,21
+2349,741889.9236,1824132.856,68340.38382,21
+2350,741084.1129,1824828.508,184565.0831,21
+2351,741009.6824,1822065.456,152875.5436,21
+2352,740073.84,1824119.838,163327.796,21
+2353,740282.0589,1821294.763,158616.8478,21
+2354,740176.1732,1822499.516,156410.8922,21
+2355,739336.102,1822666.094,155217.0401,21
+2356,738893.6628,1820600.423,154236.6608,21
+2357,739779.1849,1820819.888,153273.6691,21
+2358,738340.2962,1820422.76,152437.223,21
+2359,738578.4708,1819607.104,151652.6161,21
+2360,738274.6137,1818090.643,152155.1342,21
+2361,737738.0211,1818497.5,151929.9084,21
+2362,737737.1859,1817385.223,150885.4952,21
+2363,736537.265,2190642.402,150765.0824,21
+2364,737731.1968,1814188.758,149622.8558,21
+2365,736046.0419,1813749.867,149519.9838,21
+2366,736749.3934,1812288.392,148764.1017,21
+2367,735979.9112,1812725.023,146779.2451,21
+2368,736012.9773,1812015.501,150345.3006,21
+2369,736017.5736,1809928.512,147521.5487,21
+2370,735362.7654,1811083.537,147746.6974,21
+2371,734214.3386,1808879.077,147388.1099,21
+2372,736187.9212,1808740.786,614205.2779,21
+2373,733229.3222,1808641.146,76599.28086,21
+2374,734357.5512,1807414.056,124658.0723,21
+2375,734283.4493,1806696.956,649864.2403,21
+2376,733487.3478,1806094.342,78780.88185,21
+2377,733546.1678,1805040.157,242054.6513,21
+2378,733105.3526,1805097.582,78445.42407,21
+2379,732456.3207,1804190.793,80547.14267,21
+2380,732726.074,1803157.25,79272.79081,21
+2381,732396.4169,1802773.305,196735.7807,21
+2382,731567.0765,1802142.673,164902.2361,21
+2383,731680.2082,1801735.808,175683.9134,21
+2384,731275.5338,2175081.56,170043.08,21
+2385,730829.5952,1799817.911,168500.0336,21
+2386,731676.4882,1799909.137,166983.9228,21
+2387,729702.1891,1798623.04,165540.0641,21
+2388,730742.5063,1798186.708,164834.7688,21
+2389,730519.5083,1797234.153,163508.9858,21
+2390,729130.5706,1797571.022,162625.8533,21
+2391,730377.3126,1795398.254,161787.9927,21
+2392,727988.2501,1795622.417,160540.9264,21
+2393,729951.1515,1795004.285,160126.8338,21
+2394,728784.9007,1794692.525,158883.944,21
+2395,727891.2188,1792846.203,158386.7613,21
+2396,728977.428,1795061.493,157208.8161,21
+2397,727621.3494,1792873.529,156658.3735,21
+2398,728119.6138,1792804.752,155148.9352,21
+2399,727873.9591,1792182.052,172739.4863,21
+2400,727000.9645,1790882.122,78651.87437,21
+2401,727053.7772,1791738.29,78957.64064,21
+2402,726244.247,1789494.015,78965.7007,21
+2403,724935.801,1790413.914,181528.0995,21
+2404,725233.3438,1788629.149,151633.0846,21
+2405,725568.4976,2163957.42,160264.0424,21
+2406,725244.4513,1789962.813,156657.8353,21
+2407,724580.0029,1787376.979,155154.3005,21
+2408,724526.2344,1789820.859,154372.2888,21
+2409,723670.1452,1787694.527,153553.2294,21
+2410,724729.9383,1788845.309,622410.3848,21
+2411,723860.7758,1788631.328,79571.11377,21
+2412,723675.1704,1787778.103,128746.0284,21
+2413,724424.2451,1788265.159,658296.899,21
+2414,722812.6073,1787466.839,80759.39578,21
+2415,723174.4898,1787446.768,249885.1106,21
+2416,723566.1132,1786698.167,80386.16418,21
+2417,722349.4833,1786145.722,82314.66272,21
+2418,722889.571,1785411.923,87968.74161,21
+2419,722250.2564,1787143.484,185038.2512,21
+2420,723425.2372,1784967.983,185011.6281,21
+2421,721882.591,1785889.933,175043.2023,21
+2422,722040.6061,1785165.431,175092.6469,21
+2423,722592.2998,1785230.245,171983.4186,21
+2424,721309.0772,1785663.905,170247.2975,21
+2425,722403.5997,1784594.587,168797.4682,21
+2426,721437.2683,1785346.217,167695.9803,21
+2427,721139.2177,1785043.519,166391.1806,21
+2428,721501.9412,1784322.91,165192.3361,21
+2429,721035.5898,1785918.476,163992.0988,21
+2430,721363.27,2157357.648,162716.0642,21
+2431,720740.4785,1785740.383,161895.639,21
+2432,720162.8721,1783573.443,160598.6419,21
+2433,720570.0918,1784348.667,160261.3171,21
+2434,720743.3565,1784342.838,158904.2016,21
+2435,718278.4543,1783311.334,158440.7695,21
+2436,720618.8795,1784571.964,157152.4557,21
+2437,718639.5121,1782650.626,156728.5574,21
+2438,719429.9786,1785056.649,156054.3759,21
+2439,718549.1001,1782628.925,155317.0114,21
+2440,717356.4534,1783192.427,154783.9949,21
+2441,718742.6133,1783640.567,154015.9164,21
+2442,717401.8539,1783603.729,153513.084,21
+2443,717337.2939,1782189.141,152927.285,21
+2444,716517.7319,1784454.913,152794.5656,21
+2445,717319.0481,1782056.847,151712.0358,21
+2446,719984.2672,1783196.229,151526.8768,21
+2447,720167.1252,1782505.172,151032.6521,21
+2448,721994.4817,1783379.625,150498.9323,21
+2449,721346.2017,1782690.758,149158.856,21
+2450,720309.1965,1783329.857,148752.3502,21
+2451,721737.6952,1781699.727,148131.0743,21
+2452,721645.9071,1783259.858,147925.3722,21
+2453,719733.1406,1782121.663,147549.8688,21
+2454,721111.4242,1782507.581,146809.3862,21
+2455,720951.3916,2156912.211,147026.505,21
+2456,719172.8885,1783129.088,146173.6242,21
+2457,720648.9709,1781757.712,146057.1252,21
+2458,720132.3304,1782487.371,145987.1769,21
+2459,719372.88,1781852.373,145024.0548,21
+2460,720094.9144,1782360.028,145593.6248,21
+2461,902765.519,1984393.444,191138.5736,21
+2462,914896.1185,1996896.439,194495.0467,21
+2463,917836.1304,2000557.041,196103.6788,21
+2464,919374.5559,1999763.754,197331.979,21
+2465,921258.159,2004639.306,198752.8621,21
+2466,923422.5295,2004855.931,198226.6403,21
+2467,925297.4604,2004966.201,202937.9443,21
+2468,927325.621,2006521.547,223057.5564,21
+2469,928477.6841,2007510.681,683563.4982,21
+2470,929340.0148,2008704.726,151288.0261,21
+2471,931846.6087,2008759.423,201249.0792,21
+2472,932195.0881,2009231.791,733789.6101,21
+2473,933889.7708,2011856.707,160472.1072,21
+2474,935669.8478,2009978.849,335843.1388,21
+2475,935963.6127,2012615.441,163905.7903,21
+2476,937002.1358,2012485.502,167464.1979,21
+2477,939906.2415,2013993.488,175922.8707,21
+2478,938776.8428,2012354.11,277157.3219,21
+2479,941513.8559,2014143.694,283591.2693,21
+2480,942616.3332,2014787.406,276378.3586,21
+2481,942769.4691,2013985.8,175010.4082,21
+2482,944471.256,2014849.312,179655.8141,21
+2483,945967.6012,2015674.085,325443.2506,21
+2484,946224.488,2016041.773,302829.9433,21
+2485,946227.621,2016240.142,315024.6241,21
+2486,948975.1776,2015852.088,187322.6691,21
+2487,949761.0207,2015759.734,191278.0009,21
+2488,948990.6096,2017133.76,337529.2805,21
+2489,952774.5539,2016869.146,328308.1641,21
+2490,950629.1851,2015847.978,336392.1569,21
+2491,953638.4272,2017741.886,197758.5938,21
+2492,953801.1554,2016590.059,201907.8246,21
+2493,954227.4934,2017900.652,203245.4576,21
+2494,956470.2837,2018131.966,348040.1359,21
+2495,956306.5322,2016303.513,307450.1339,21
+2496,956367.8022,2018322.814,326669.2259,21
+2497,958883.9904,2017963.779,324275.8491,21
+2498,958498.4607,2017608.347,325093.3,21
+2499,959046.4591,2017797.031,826023.1975,21
+2500,961311.3513,2017272.236,224240.3855,21
+2501,960225.2889,2018078.097,292619.935,21
+2502,962560.5808,2017522.858,877443.7242,21
+2503,961732.0726,2018475.949,234684.894,21
+2504,963408.8126,2016819.126,303338.761,21
+2505,965260,2018076.912,910011.7451,21
+2506,964583.1252,2018180.935,244200.368,21
+2507,964619.4615,2017023.211,515861.8497,21
+2508,966749.7856,2017961.017,246929.3702,21
+2509,966923.7203,2017427.902,252215.0278,21
+2510,968356.7807,2017029.465,268396.1016,21
+2511,966986.0442,2017952.175,399992.6686,21
+2512,970662.4925,2017112.926,422218.5349,21
+2513,968659.7689,2016470.626,433797.0009,21
+2514,970623.8893,2018845.973,258705.5771,21
+2515,970970.9106,2016139.856,263788.2159,21
+2516,972161.5193,2017061.857,458076.2042,21
+2517,972308.008,2015849.033,440617.3193,21
+2518,973725.0005,2018270.932,461549.5797,21
+2519,973178.4868,2015731.473,266895.3171,21
+2520,973907.3286,2016681.921,271966.3381,21
+2521,1032704.678,2082221.511,304831.2246,21
+2522,1035750.521,2084524.27,494216.8694,21
+2523,1038778.56,2085778.511,436870.6979,21
+2524,1038243.016,2083962.696,456703.6569,21
+2525,1040024.334,2085804.171,450781.6005,21
+2526,1041134.963,2083964.978,449045.1198,21
+2527,1041027.787,2083463.463,449171.8172,21
+2528,1041885.499,2084892.106,448892.0765,21
+2529,1042636.425,2082005.301,446643.0265,21
+2530,1042905.644,2081512.634,453118.0335,21
+2531,1044736.264,2082172.495,449166.9328,21
+2532,1043614.407,2080734.583,981923.5721,21
+2533,1044577.745,2079639.958,321290.7101,21
+2534,1045823.149,2079810.172,400632.4876,21
+2535,1044849.384,2079533.074,1032393.466,21
+2536,1046430.379,2077127.581,329784.7856,21
+2537,1047060.111,2077761.639,407943.3459,21
+2538,1046189.516,2075001.604,1061470.663,21
+2539,1047638.232,2076951.737,338851.2451,21
+2540,1048324.185,2073159.937,418931.0441,21
+2541,1047928.384,2074289.957,1086306.659,21
+2542,1048060.472,2072403.462,346303.2594,21
+2543,1049173.249,2071673.949,429900.4677,21
+2544,1049466.161,2070426.039,1109228.576,21
+2545,1049038.029,2072612.994,353259.6709,21
+2546,1050630.78,2069525.68,717876.6261,21
+2547,1048915.425,2068999.847,352834.7033,21
+2548,1050579.767,2069474.078,358964.2557,21
+2549,1050882.792,2066935.605,356862.8642,21
+2550,1050939.947,2066614.499,594956.3968,21
+2551,1049796.068,2065633.99,518843.5353,21
+2552,1052764.28,2062529.413,544805.6803,21
+2553,1050930.308,2061589.532,533426.4616,21
+2554,1051836.644,2059345.51,528691.08,21
+2555,1051361.216,2060785.465,526566.9102,21
+2556,1052704.596,2056945.075,524602.8692,21
+2557,1052320.855,2058822.356,522028.1317,21
+2558,1052759.792,2055272.588,520849.8509,21
+2559,1052407.733,2054583.773,518615.0342,21
+2560,1052770.177,2053650.393,518189.7849,21
+2561,1052509.748,2052966.021,515404.9455,21
+2562,1053585.072,2051384.187,514342.9399,21
+2563,1053637.176,2050122.635,513309.9485,21
+2564,1054212.007,2047921.01,511248.7817,21
+2565,1052136.952,2048597.673,511463.4188,21
+2566,1053967.376,2045141.542,508501.6312,21
+2567,1054011.488,2045930.689,509127.6935,21
+2568,1053840.492,2043378.285,507122.2887,21
+2569,1054496.804,2043050.228,505928.971,21
+2570,1053836.982,2039631.493,506373.3372,21
+2571,1054282.808,2041217.119,504611.4795,21
+2572,1055986.868,2037992.929,504586.4025,21
+2573,1052867.484,2037453.468,503320.2832,21
+2574,1055594.634,2035782.226,503072.1355,21
+2575,1054576.998,2033496.041,502456.8389,21
+2576,1054358.897,2033028.143,502621.756,21
+2577,1054422.606,2031847.608,501002.2652,21
+2578,1056146.233,2029280.882,501529.2582,21
+2579,1054405.944,2028679.741,500771.2705,21
+2580,1054578.224,2023139.697,501778.0895,21
+2581,1057060.856,2029127.873,501599.1051,21
+2582,1055626.437,2031380.369,502130.6255,21
+2583,1059438.426,2032681.59,503072.2489,21
+2584,1057207.972,2033030.61,503079.5574,21
+2585,1059009.572,2036950.843,503358.1966,21
+2586,1060139.828,2036434.192,504105.3958,21
+2587,1060431.788,2037906.149,504412.4803,21
+2588,1061114.632,2040041.676,504899.9323,21
+2589,1061629.787,2042070.663,506096.306,21
+2590,1062333.475,2042575.681,506196.7329,21
+2591,1063111.881,2043541.38,507129.4662,21
+2592,1063586.483,2045120.281,507308.217,21
+2593,1064623.802,2048015.345,508527.0564,21
+2594,1064428.138,2048593.121,508747.2638,21
+2595,1065984.285,2050119.238,510019.179,21
+2596,1065984.088,2424317.429,510850.9422,21
+2597,1067009.416,2053664.669,515580.1425,21
+2598,1066923.895,2054295.509,518278.9175,21
+2599,1068494.449,2055765.765,518952.8167,21
+2600,1068083.486,2056485.514,521128.5224,21
+2601,1069780.951,2058000.52,521472.142,21
+2602,1069810.911,2060667.965,525346.8571,21
+2603,1070517.886,2061329.551,525290.8348,21
+2604,1071171.995,2061717.141,528000.5364,21
+2605,1071626.763,2063929.396,529991.9759,21
+2606,1072534.349,2066023.307,531425.9818,21
+2607,1073050.365,2065271.155,533043.1134,21
+2608,1073570.504,2068476.639,534856.1285,21
+2609,1074188.659,2069592.23,537060.2678,21
+2610,1074899.523,2070156.948,538192.4473,21
+2611,1075245.099,2072326.277,540902.1024,21
+2612,1076519.195,2074014.192,542741.9675,21
+2613,1076446.313,2077214.372,543433.6036,21
+2614,1077148.697,2077198.764,546940.2848,21
+2615,1078414.665,2079485.358,546949.2362,21
+2616,1078015.397,2454529.911,551038.7222,21
+2617,1078084.387,2081967.292,552010.1047,21
+2618,1080994.808,2083191.967,553543.5854,21
+2619,1079155.305,2083694.55,556617.576,21
+2620,1081087.809,2086900.421,556730.2996,21
+2621,1081404.686,2084764.924,560486.8238,21
+2622,1081991.524,2087320.504,560761.9676,21
+2623,1081814.036,2086414.736,565209.5512,21
+2624,1084189.103,2089926.314,564837.8785,21
+2625,1083157.334,2091793.382,568081.6017,21
+2626,1084593.171,2090314.109,568903.025,21
+2627,1084962.499,2094240.998,572563.9526,21
+2628,1084656.6,2092550.762,573113.3719,21
+2629,1086254.878,2097402.694,575815.8685,21
+2630,1087371.061,2096659.079,578108.7514,21
+2631,1085781.559,2098775.566,579237.2247,21
+2632,1089825.615,2098798.174,582349.3259,21
+2633,1087510.553,2101687.305,582669.2311,21
+2634,1088255.508,2102277.293,586361.5312,21
+2635,1089855.525,2103634.743,587824.8139,21
+2636,1090614.812,2478757.428,589855.8072,21
+2637,1089876.343,2107115.836,591513.7597,21
+2638,1091539.172,2106681.766,593358.2797,21
+2639,1091285.151,2108394.175,596627.5385,21
+2640,1093292.55,2111164.246,596761.2694,21
+2641,1097419.086,2118099.983,610646.3389,21
+2642,1101607.119,2119359.271,613665.3378,21
+2643,1100656.309,2120587.438,616606.863,21
+2644,1102503.621,2118796.269,620160.7074,21
+2645,1102937.329,2121221.758,622027.7325,21
+2646,1102060.199,2118642.27,625491.1399,21
+2647,1105123.272,2121302.959,627655.7134,21
+2648,1103532.646,2119153.908,631047.1433,21
+2649,1105396.176,2120018.323,633019.4408,21
+2650,1104128.986,2120485.295,637016.8282,21
+2651,1107184.334,2119602.741,638180.6036,21
+2652,1106230.604,2119184.033,641667.5101,21
+2653,1107465.3,2119437.712,644165.183,21
+2654,1105995.093,2119851.239,645906.4231,21
+2655,1108708.878,2119956.852,650047.7592,21
+2656,1108894.399,2119034.467,651877.9688,21
+2657,1107995.727,2118813.004,654599.8631,21
+2658,1109186.352,2118303.327,656886.558,21
+2659,1109728.403,2119407.16,659974.9819,21
+2660,1111027.229,2118088.716,662227.8711,21
+2661,1109946.81,2117851.095,665188.6154,21
+2662,1111426.717,2118422.434,667214.8236,21
+2663,1110632.683,2117909.658,669810.6794,21
+2664,1112237.418,2116912.942,672136.4861,21
+2665,1112976.602,2117621.285,675009.251,21
+2666,1111608.274,2117149.506,677661.4484,21
+2667,1113453.48,2116850.52,679884.4372,21
+2668,1114083.063,2117135.785,681916.9476,21
+2669,1113332.781,2115342.304,684973.0002,21
+2670,1114065.282,2118350.229,686996.1672,21
+2671,1115062.345,2116988.737,690689.5384,21
+2672,1115946.261,2117388.279,691837.0276,21
+2673,1114288.196,2116656.472,694745.4694,21
+2674,1117409.698,2116706.356,697178.7149,21
+2675,1115621.161,2116125.789,699629.4457,21
+2676,1116270.318,2114874.064,702756.3903,21
+2677,1117717.375,2117411.968,703786.285,21
+2678,1116462.277,2114271.809,707249.8795,21
+2679,1117849.085,2114931.746,709020.4339,21
+2680,1118447.595,2115323.389,711728.629,21
+2681,1118759.872,2114215.417,714890.7293,21
+2682,1118092.834,2115558.8,715242.5536,21
+2683,1119175.451,2113685.838,718677.2499,21
+2684,1119992.275,2113499.783,721985.7473,21
+2685,1120421.976,2113884.645,722352.3431,21
+2686,1120684.008,2113108.456,726285.2397,21
+2687,1119134.459,2112571.907,728059.7778,21
+2688,1121963.615,2113475.187,729921.1608,21
+2689,1120949.072,2112482.012,732731.8705,21
+2690,1122652.371,2110924.003,735590.2488,21
+2691,1122093.925,2111948.145,736690.3651,21
+2692,1121658.389,2112182.429,740691.7888,21
+2693,1123117.216,2110599.862,740920.3293,21
+2694,1123213.882,2110763.838,743956.3368,21
+2695,1123942.487,2110602.262,747594.8311,21
+2696,1122812.728,2109442.328,748499.1487,21
+2697,1124645.748,2110008.49,1377945.926,21
+2698,1124327.553,2110387.188,631142.6672,21
+2699,1124333.515,2108126.842,679933.8799,21
+2700,1125433.092,2110011.462,1440483.87,21
+2701,1125832.47,2108514.504,646827.6736,21
+2702,1126197.868,2109690.411,690361.0694,21
+2703,1127442.662,2111510.893,1473910.488,21
+2704,1126695.068,2109486.628,660847.4368,21
+2705,1126233.844,2111947.096,701916.9069,21
+2706,1128785.957,2109678.354,1500807.569,21
+2707,1127054.329,2110380.457,673401.6486,21
+2708,1128452.352,2111565.837,712682.6901,21
+2709,1128095.121,2109140.729,1524021.353,21
+2710,1127730.559,2112995.233,683296.4856,21
+2711,1129544.927,2109696.199,723695.1372,21
+2712,1128146.907,2110820.887,1544697.769,21
+2713,1128678.799,2112227.492,691238.4705,21
+2714,1130313.867,2111256.957,734031.9044,21
+2715,1128910.36,2110189.486,1562524.579,21
+2716,1129371.178,2112022.418,700823.8447,21
+2717,1129642.187,2112397.051,740299.3549,21
+2718,1130900.455,2110296.509,1582404.042,21
+2719,1130090.52,2111698.852,704839.1931,21
+2720,1130145.427,2111755.128,750911.6518,21
+2721,1130270.948,2111682.705,1592897.889,21
+2722,1131304.14,2112429.155,714743.4032,21
+2723,1131608.042,2112047.081,755711.8295,21
+2724,1129902.599,2110863.8,1608551.906,21
+2725,1132637.061,2113290.145,718322.1606,21
+2726,1131665.141,2111982.455,763137.7867,21
+2727,1131830.539,2112136.1,1618528.438,21
+2728,1132165.272,2113171.303,725925.8186,21
+2729,1131521.575,2112434.749,766885.11,21
+2730,1133879.969,2112197.486,1631156.52,21
+2731,1133850.501,2112369.768,728719.8009,21
+2732,1133868.557,2112262.854,773240.0069,21
+2733,1133879.598,2112774.094,1638914.96,21
+2734,1134590.832,2113208.053,732675.1859,21
+2735,1133201.919,2112705.929,779664.2616,21
+2736,1136290.715,2112432.371,1648341.993,21
+2737,1133474.184,2114131.693,736369.5518,21
+2738,1135544.019,2111950.693,782392.164,21
+2739,1135394.203,2114529.867,1655229.951,21
+2740,1135687.25,2112452.534,740969.931,21
+2741,1134806.005,2114134.066,783985.686,21
+2742,1136165.638,2112148.445,1659443.047,21
+2743,1136532.206,2113808.719,741009.1905,21
+2744,1135184.895,2113616.639,788911.6009,21
+2745,1136523.596,2114569.37,1666945.045,21
+2746,1137522.346,2112326.78,743997.1863,21
+2747,1136094.707,2114115.581,791959.0034,21
+2748,1137179.941,2114758.57,1671115.049,21
+2749,1136806.423,2113081.837,747612.3755,21
+2750,1137573.051,2114498.467,795245.4282,21
+2751,1138306.223,2113426.325,1674848.334,21
+2752,1137199.18,2114645.137,752793.1065,21
+2753,1136609.41,2113916.936,794426.7858,21
+2754,1139588.86,2114353.386,1681735.895,21
+2755,1137244.086,2114345.388,753310.3737,21
+2756,1139351.526,2114006.578,799314.4206,21
+2757,1138075.498,2115003,1685132.376,21
+2758,1138529.007,2114508.728,755889.2522,21
+2759,1139664.663,2113936.574,801413.0718,21
+2760,1138979.429,2116163.347,1688513.975,15.6
+2761,0,0,134.0307482,15.6
+2762,0,0,0,15.6
+2763,0,81.37129648,928946.4408,15.6
+2764,0,0,86.60126003,15.6
+2765,0,0,0,15.6
+2766,0,0,1398242.345,15.6
+2767,0,0,0,15.6
+2768,0,422761.9291,0,15.6
+2769,0,0,0,15.6
+2770,0,0,0,15.6
+2771,0,0,0,15.6
+2772,0,0,0,15.6
+2773,0,0,0,15.6
+2774,0,0,0,15.6
+2775,0,0,0,15.6
+2776,0,0,0,15.6
+2777,339548.7267,0,0,15.6
+2778,0,0,0,15.6
+2779,0,0,0,15.6
+2780,0,0,0,15.6
+2781,427931.487,0,0,15.6
+2782,0,0,0,15.6
+2783,0,0,0,15.6
+2784,0,0,0,15.6
+2785,0,422605.1896,0,15.6
+2786,0,0,0,15.6
+2787,0,0,0,15.6
+2788,0,0,0,15.6
+2789,0,0,0,15.6
+2790,0,0,0,15.6
+2791,0,0,0,15.6
+2792,0,0,0,15.6
+2793,0,0,0,15.6
+2794,0,0,0,15.6
+2795,0,0,0,15.6
+2796,0,0,0,15.6
+2797,0,0,0,15.6
+2798,0,0,0,15.6
+2799,0,0,0,15.6
+2800,0,0,858032.7276,15.6
+2801,0,0,1332116.087,15.6
+2802,0,0,0,15.6
+2803,0,0,859789.0254,15.6
+2804,0,0,0,15.6
+2805,0,0,0,15.6
+2806,0,0,863302.7435,15.6
+2807,0,422598.7811,0,15.6
+2808,0,0,0,15.6
+2809,0,0,863206.7022,15.6
+2810,0,0,0,15.6
+2811,0,0,0,15.6
+2812,0,0,862506.0487,15.6
+2813,0,0,0,15.6
+2814,0,0,475765.5473,15.6
+2815,0,0,9239.009359,15.6
+2816,339526.0862,0,14359.03059,15.6
+2817,0,0,53983.0604,15.6
+2818,0,0,268620.3721,15.6
+2819,0,0,47512.92157,15.6
+2820,0,0,9751.272671,15.6
+2821,0,0,356534.4208,15.6
+2822,0,0,311050.1993,15.6
+2823,0,0,296993.8776,15.6
+2824,0,0,10074.32162,15.6
+2825,0,0,13741.31513,15.6
+2826,0,0,33054.09566,15.6
+2827,0,0,258184.0147,15.6
+2828,0,0,272594.2877,15.6
+2829,0,0,250596.2602,15.6
+2830,0,0,10617.88909,15.6
+2831,0,0,13655.89729,15.6
+2832,0,0,13544.69286,15.6
+2833,0,0,272985.9336,15.6
+2834,0,0,208991.1917,15.6
+2835,0,0,218392.7926,15.6
+2836,0,0,1187469.711,15.6
+2837,0,0,192379.9261,15.6
+2838,0,0,187245.4066,15.6
+2839,0,0,182529.6969,15.6
+2840,0,0,674387.9009,15.6
+2841,0,0,10990.37452,15.6
+2842,0,0,119711.471,15.6
+2843,0,0,687216.3164,15.6
+2844,0,0,0,15.6
+2845,0,0,0,15.6
+2846,0,0,696555.0227,15.6
+2847,0,3.413214608,0,15.6
+2848,0,0,0,15.6
+2849,0,7.303242924,702986.5563,15.6
+2850,0,0,0,15.6
+2851,0,41563.66406,0,15.6
+2852,0,2207.276453,708692.8499,15.6
+2853,0,2425.889057,0,15.6
+2854,0,15481.4176,0,15.6
+2855,339515.5319,11169.05126,0,15.6
+2856,0,10773.21013,0,15.6
+2857,0,11261.6561,0,15.6
+2858,0,11309.06705,0,15.6
+2859,0,11447.13335,0,15.6
+2860,0,11454.91681,0,15.6
+2861,0,11563.07959,0,15.6
+2862,0,11586.49194,0,15.6
+2863,0,11711.71088,0,15.6
+2864,0,11958.20427,0,15.6
+2865,0,11809.16067,0,15.6
+2866,0,11861.75664,0,15.6
+2867,0,11985.01804,0,15.6
+2868,0,11958.82681,0,15.6
+2869,0,12102.02331,0,15.6
+2870,0,12115.48764,0,15.6
+2871,0,12212.04701,0,15.6
+2872,0,12192.43925,1134706.324,15.6
+2873,0,12392.60589,0,15.6
+2874,0,12359.86672,0,15.6
+2875,0,12425.0057,0,15.6
+2876,0,12520.35044,0,15.6
+2877,0,12542.77323,175262.2535,15.6
+2878,0,12642.46847,0,15.6
+2879,0,12674.84956,0,15.6
+2880,0,12750.5687,0,15.6
+2881,0,65.69205406,0,15.6
+2882,0,0,0,15.6
+2883,0,0,0,15.6
+2884,0,0,0,15.6
+2885,0,0,0,15.6
+2886,37091.19581,0,0,15.6
+2887,1911.092783,55315.01859,170383.401,15.6
+2888,2248.552428,0,0,15.6
+2889,12810.99562,3815.141461,0,15.6
+2890,10492.36373,20178.02866,165981.1786,15.6
+2891,9551.313828,13131.74005,0,15.6
+2892,10176.82022,13434.34066,0,15.6
+2893,10340.36025,13863.90638,0,15.6
+2894,10472.57215,13875.4539,0,15.6
+2895,350143.5841,13980.67082,648933.1595,15.6
+2896,10790.09453,13980.47753,0,15.6
+2897,10879.62842,14053.32431,0,15.6
+2898,11082.45729,14103.02484,676421.1788,15.6
+2899,11208.31436,14159.39204,0,15.6
+2900,11365.92222,14199.57933,0,15.6
+2901,11500.31721,14268.58848,686100.8706,15.6
+2902,11613.58743,14297.97487,0,15.6
+2903,11786.3106,14347.07111,0,15.6
+2904,11921.36113,14408.3532,692863.2712,15.6
+2905,12050.45979,14444.34097,0,15.6
+2906,12246.12107,14479.37645,0,15.6
+2907,12322.93732,14530.27364,698982.802,15.6
+2908,12490.20784,14600.18664,941691.1415,15.6
+2909,12635.2557,14650.99457,0,15.6
+2910,12870.92432,14661.17513,0,15.6
+2911,12965.81143,14709.57523,0,15.6
+2912,13155.40189,14782.32973,0,15.6
+2913,13259.44367,14848.465,0,15.6
+2914,13436.89223,14823.3349,0,15.6
+2915,13580.36813,14925.79412,0,15.6
+2916,0,14944.44089,0,15.6
+2917,0,0,0,15.6
+2918,0,0,0,15.6
+2919,0,0,0,15.6
+2920,0,0,6112.677669,15.6
+2921,64628.47303,0,251888.7373,15.6
+2922,0,65835.1268,192915.035,15.6
+2923,2406.174954,0,170656.5558,15.6
+2924,23485.2577,2703.76291,173744.0071,15.6
+2925,13845.58138,23295.48209,165402.1064,15.6
+2926,14869.18011,14840.10997,160211.2993,15.6
+2927,15301.16352,15068.81289,155857.8887,15.6
+2928,15375.77014,15529.06046,151925.4075,15.6
+2929,15551.36303,15584.88501,148220.2791,15.6
+2930,15688.52409,15553.76136,144654.2817,15.6
+2931,15788.79152,15694.26796,141195.8496,15.6
+2932,15968.24845,15666.58252,137832.6842,15.6
+2933,16065.07229,15748.01754,134561.7347,15.6
+2934,16247.74654,15718.82958,131489.647,15.6
+2935,355801.1786,384521.1178,128207.0965,15.6
+2936,16492.51462,36664.43284,125284.4246,15.6
+2937,16636.32018,38144.1028,122329.3766,15.6
+2938,372334.0018,142154.0707,119479.5231,15.6
+2939,38784.59426,119068.3351,116700.844,15.6
+2940,33314.59517,107688.1599,113996.6067,15.6
+2941,133066.4229,113032.9819,111364.0632,15.6
+2942,113467.5479,536187.9712,572364.5817,15.6
+2943,99598.919,113843.7919,11495.1176,15.6
+2944,104532.6032,114434.4634,775367.0137,15.6
+2945,104369.9203,114642.4583,597125.226,15.6
+2946,103587.7,115057.3642,11705.5654,15.6
+2947,103257.3534,115556.2815,77815.79839,15.6
+2948,102897.4962,116062.0209,608129.9352,15.6
+2949,102212.4786,116126.0391,0,15.6
+2950,102265.9504,116482.4666,0,15.6
+2951,84865.02941,117337.9842,606860.9197,15.6
+2952,85039.35001,100845.312,0,15.6
+2953,84328.99293,101753.76,0,15.6
+2954,83982.51694,101655.2955,616463.7691,15.6
+2955,153933.8689,102628.2531,4.207818547,15.6
+2956,83384.53813,170881.4254,0,15.6
+2957,87558.03816,103225.0475,625631.8599,15.6
+2958,106820.5243,107650.3123,5.101432245,15.6
+2959,96993.65973,129406.447,0,15.6
+2960,97603.52311,119603.0454,634400.6645,15.6
+2961,97255.81053,543371.2755,5.679706815,15.6
+2962,96760.58544,121998.8724,0,15.6
+2963,96647.58348,122344.2454,642827.3262,15.6
+2964,95826.95165,122436.5634,5.426827197,15.6
+2965,95360.60422,17001.05161,0,15.6
+2966,95095.0616,16934.72761,650890.546,15.6
+2967,94831.30185,17066.11591,5.784668123,15.6
+2968,15416.92099,17055.41573,0,15.6
+2969,15300.26213,17047.54884,658637.7132,15.6
+2970,15235.28182,17174.56902,5.587962573,15.6
+2971,15200.24672,17102.8095,0,15.6
+2972,15118.83791,17224.94186,666049.8521,15.6
+2973,15039.0204,17221.86359,5.922714393,15.6
+2974,14977.26975,17240.70627,0,15.6
+2975,354371.5488,507804.0307,673177.1844,15.6
+2976,14875.1018,20977.0913,5.642572291,15.6
+2977,14744.41014,42047.8392,0,15.6
+2978,14712.707,162561.0331,679995.0646,15.6
+2979,14626.92221,140917.1669,5.963642772,15.6
+2980,14601.75672,544707.8721,1000360.378,15.6
+2981,14469.10791,129684.0729,673400.3388,15.6
+2982,14449.96269,130947.2824,5.942748982,15.6
+2983,14329.51737,130804.9406,0,15.6
+2984,14310.32044,130780.2843,680217.0192,15.6
+2985,0,131478.6996,5.794122676,15.6
+2986,0,114081.1359,0,15.6
+2987,0,114235.8633,686775.146,15.6
+2988,0,114907.5997,5.517003726,15.6
+2989,0,114765.1218,0,15.6
+2990,66028.80406,190857.8557,693043.3597,15.6
+2991,0,115855.2917,5.900899035,15.6
+2992,1424.069227,119417.308,0,15.6
+2993,20041.16457,145419.1206,699072.2624,15.6
+2994,13985.8345,132368.0764,5.639246138,15.6
+2995,12976.78693,134993.6924,0,15.6
+2996,13498.40599,135064.878,704834.9506,15.6
+2997,13458.9479,135690.7863,5.969706171,15.6
+2998,13385.37565,135969.7002,0,15.6
+2999,13302.03981,135942.9111,710385.3653,15.6
+3000,13222.5737,137071.991,5.67835795,15.6
+3001,13247.93697,136868.1235,0,15.6
+3002,13237.07939,136931.5757,715650.5131,15.6
+3003,13304.94109,137754.66,0,15.6
+3004,13266.91661,137740.3369,0,15.6
+3005,13364.55945,18364.95078,0,15.6
+3006,13304.93538,18385.10443,0,15.6
+3007,13368.06057,18418.12759,0,15.6
+3008,13390.72015,18458.73549,0,15.6
+3009,13368.90776,18474.66622,0,15.6
+3010,13419.52133,18545.16505,0,15.6
+3011,13431.25262,18488.45474,0,15.6
+3012,13454.4826,562286.0547,0,15.6
+3013,13384.34724,18623.23848,0,15.6
+3014,13426.00434,42070.54257,0,15.6
+3015,352894.5992,188343.2885,0,15.6
+3016,13432.7526,148015.456,1159230.942,15.6
+3017,13497.86395,135620.9855,0,15.6
+3018,13484.15314,142717.3171,0,15.6
+3019,13485.00022,142129.1576,0,15.6
+3020,0,124061.8335,0,15.6
+3021,0,124610.1328,0,15.6
+3022,0,124071.4711,0,15.6
+3023,0,125020.1546,0,15.6
+3024,0,204980.8021,0,15.6
+3025,63827.07762,125072.236,0,15.6
+3026,0,131332.9337,0,15.6
+3027,1789.167854,155110.2986,0,15.6
+3028,19723.8139,143090.346,674506.9255,15.6
+3029,14165.01802,144985.9596,0,15.6
+3030,13143.72482,145372.1889,0,15.6
+3031,13813.89263,145139.6498,701969.7724,15.6
+3032,13854.24631,146452.8774,0,15.6
+3033,13818.46462,146012.7032,0,15.6
+3034,13884.08082,146023.111,710579.3158,15.6
+3035,13884.07882,146875.2923,0,15.6
+3036,13868.29762,146766.784,0,15.6
+3037,13933.25225,147104.1616,716309.7698,15.6
+3038,13897.25834,147161.4004,0,15.6
+3039,13920.57761,147804.6733,0,15.6
+3040,13931.61624,147598.4756,721333.4812,15.6
+3041,13982.96605,148335.4363,6.216405124,15.6
+3042,13948.66183,19609.53333,0,15.6
+3043,14002.36634,19525.7133,726096.5604,15.6
+3044,13963.50352,19604.24076,10.28546329,15.6
+3045,14051.90875,19630.68193,0,15.6
+3046,13982.95705,19680.40929,730625.3014,15.6
+3047,348628.6005,19691.87544,0,15.6
+3048,21052.74954,606664.5196,347512.6018,15.6
+3049,33513.42592,19784.90293,14607.96101,15.6
+3050,86749.63501,39353.05439,18440.275,15.6
+3051,111264.4204,203078.1548,54132.53287,15.6
+3052,79839.68069,156969.4509,1149073.237,15.6
+3053,88596.54545,144405.9738,261740.3153,15.6
+3054,88608.75688,131481.2086,220772.639,15.6
+3055,413953.545,131426.8433,14806.11798,15.6
+3056,74845.30327,131964.3687,17536.13637,15.6
+3057,74466.96565,205501.1967,33327.30519,15.6
+3058,74666.66416,132312.357,185705.3863,15.6
+3059,74708.53127,143493.2014,207459.5776,15.6
+3060,142333.1405,160822.8555,190542.8066,15.6
+3061,75735.38203,150841.9509,15367.92988,15.6
+3062,79005.99448,153235.4314,17784.26458,15.6
+3063,99902.05939,152508.1608,114726.0624,15.6
+3064,93939.28229,153926.8516,69934.61538,15.6
+3065,94755.8284,152798.033,15940.07356,15.6
+3066,96374.79089,153870.8888,237190.5551,15.6
+3067,97951.21364,153700.2805,139427.3167,15.6
+3068,98573.9927,153315.7088,162500.2988,15.6
+3069,100656.7299,154678.9694,152632.755,15.6
+3070,101214.1283,154065.5394,147757.3021,15.6
+3071,103007.6294,154198.3923,620460.7358,15.6
+3072,103876.8608,154927.2557,16510.00995,15.6
+3073,105478.7344,154076.3112,102470.9634,15.6
+3074,106398.9607,155367.826,645412.346,15.6
+3075,108060.0969,154942.2787,17027.32479,15.6
+3076,108860.2444,155164.4,100583.5197,15.6
+3077,16571.64656,155518.2828,637001.1035,15.6
+3078,16695.64098,20566.09278,0,15.6
+3079,16863.53358,20603.16506,0,15.6
+3080,16967.63087,20637.53601,645491.0179,15.6
+3081,17118.74035,20615.60983,0,15.6
+3082,17242.24467,20669.36752,0,15.6
+3083,17369.82384,606958.5188,653252.0527,15.6
+3084,17559.67741,20696.7987,3.766476804,15.6
+3085,508820.7376,46215.00004,0,15.6
+3086,20088.02881,220414.2572,660605.6741,15.6
+3087,42642.86179,134801.6318,5.362377334,15.6
+3088,142595.5788,131761.4862,963268.9701,15.6
+3089,145828.5916,136436.2356,656091.4162,15.6
+3090,100376.6582,213630.5836,5.319747767,15.6
+3091,110436.9778,136980.2332,0,15.6
+3092,111598.5794,149786.4372,663296.8962,15.6
+3093,183807.0851,165565.6633,5.631881172,15.6
+3094,114041.1697,156463.1131,0,15.6
+3095,466455.2881,158414.7695,670212.967,15.6
+3096,141642.6669,158276.3455,5.297258613,15.6
+3097,134844.9459,158325.7847,0,15.6
+3098,137293.7061,158709.2313,676816.4594,15.6
+3099,138537.0998,158523.1623,5.41809696,15.6
+3100,139844.4258,159044.9879,0,15.6
+3101,140842.8914,159074.7706,683167.6412,15.6
+3102,142495.6537,158784.007,5.537768516,15.6
+3103,143207.5315,159497.4286,0,15.6
+3104,144420.2314,159269.3539,689227.026,15.6
+3105,146153.9762,159657.2903,5.871070026,15.6
+3106,146753.9563,159612.3759,0,15.6
+3107,148358.4073,159753.842,695052.8534,15.6
+3108,149620.1693,160066.4228,5.362346096,15.6
+3109,150611.6767,159895.6223,0,15.6
+3110,152173.4976,160337.3877,700617.4175,15.6
+3111,152726.2033,160142.8666,110826.0341,15.6
+3112,154586.5635,160543.4105,141989.5436,15.6
+3113,155536.2366,21359.55497,750662.0518,15.6
+3114,156856.7081,21489.82363,53490.85259,15.6
+3115,21702.93254,21449.46307,155261.9257,15.6
+3116,21797.79101,21448.17151,758263.1703,15.6
+3117,21941.4486,21547.5381,54210.75166,15.6
+3118,22073.8793,644353.5132,154121.4254,15.6
+3119,606317.7819,21537.77259,762555.847,15.6
+3120,22345.55727,17047.69159,54975.02686,17.8
+3121,987483.2338,1417307.022,1747134.361,17.8
+3122,916473.6422,1182827.894,1245606.706,17.8
+3123,375623.2946,216154.0511,524218.4335,17.8
+3124,496752.5655,425805.3935,644883.1023,17.8
+3125,394701.4907,520834.111,2309837.385,17.8
+3126,408847.1749,451759.6851,577175.3028,17.8
+3127,391693.5156,442223.8348,577512.4249,17.8
+3128,395850.2224,441404.8917,1318855.087,17.8
+3129,392220.1759,441050.0617,586998.0391,17.8
+3130,390422.9179,438439.1766,590182.4278,17.8
+3131,389788.5625,437185.2125,1351473.438,17.8
+3132,389843.3123,435662.4045,599005.7884,17.8
+3133,388284.7612,434953.1008,603047.8708,17.8
+3134,388650.3864,432834.1899,1379768.896,17.8
+3135,727182.8659,432322.9532,610658.9369,17.8
+3136,387156.1256,431203.0669,614040.5322,17.8
+3137,387536.8332,430127.9445,1405661.609,17.8
+3138,386436.214,429380.6111,621087.2892,17.8
+3139,386751.4722,427932.864,623332.8246,17.8
+3140,386446.2421,428209.0172,1428456.028,17.8
+3141,385686.0393,426312.8847,531348.518,17.8
+3142,386221.6615,426525.6801,533941.3177,17.8
+3143,385411.3564,424785.3939,1348511.548,17.8
+3144,386099.6186,425103.9815,808290.5539,17.8
+3145,385684.1317,423887.101,655047.9169,17.8
+3146,384960.5264,423652.3539,1429876.816,17.8
+3147,386022.9378,422688.5703,661245.2054,17.8
+3148,385095.8314,83009.4514,643653.5556,17.8
+3149,51234.64575,82953.32874,1474140.251,17.8
+3150,51125.83332,974533.3084,648207.6848,17.8
+3151,841429.1966,148388.9164,241477.3711,17.8
+3152,419306.4914,343551.1041,926293.1002,17.8
+3153,309586.1085,485859.3407,98867.92784,17.8
+3154,360963.9357,388246.5495,238652.1738,17.8
+3155,341277.5827,464696.4003,920450.5829,17.8
+3156,425889.5472,405029.0115,97877.34669,17.8
+3157,394020.6107,412446.3971,236044.3734,17.8
+3158,381659.3716,426257.9961,915096.3602,17.8
+3159,389118.391,417681.032,1688896.288,17.8
+3160,388892.128,418252.9105,1607251.548,17.8
+3161,387441.7595,417952.5808,1288849.115,17.8
+3162,388261.945,418196.8205,723692.9284,17.8
+3163,387999.297,417659.0967,603872.9358,17.8
+3164,387787.3242,417224.8879,1419659.041,17.8
+3165,388437.5563,416842.5739,623299.3447,17.8
+3166,388506.8687,417109.5923,624713.2851,17.8
+3167,388776.9064,416334.893,1442244.564,17.8
+3168,388398.6125,416823.7067,630153.4645,17.8
+3169,389039.9788,416199.1165,631934.7855,17.8
+3170,389267.9138,415960.0302,1459314.789,17.8
+3171,728841.5804,415728.5127,636491.825,17.8
+3172,389623.7987,416134.237,638633.1693,17.8
+3173,389615.6203,415446.5572,1473630.178,17.8
+3174,390252.4881,415702.2977,545273.1771,17.8
+3175,390327.6121,414732.2774,547359.0492,17.8
+3176,390375.6773,415677.2654,1388538.322,17.8
+3177,391134.4445,415435.0332,823624.4492,17.8
+3178,390921.0394,414471.0816,644610.8791,17.8
+3179,391703.6605,414994.8142,1472800.652,17.8
+3180,391151.4397,81436.69578,663768.2859,20
+3181,286370.0044,2618594.608,2993937.212,20
+3182,2283890.509,2663429.007,3608506.482,20
+3183,2277986.571,1915735.066,1885921.999,20
+3184,1381868.962,804905.5571,1472001.672,20
+3185,644818.5661,937342.4253,1799368.477,20
+3186,1054933.104,1304344.027,1301180.005,20
+3187,1135604.072,1092111.217,1130503.817,20
+3188,999283.9484,1104541.602,1889305.441,20
+3189,1018076.645,1077278.698,200701.8344,20
+3190,1014218.576,1089247.338,313591.9403,20
+3191,1012842.594,1091313.387,963703.1117,20
+3192,1009778.159,1051966.454,2333530.625,20
+3193,998533.5328,1064601.76,1594607.969,20
+3194,984004.593,1055746.004,2542260.619,20
+3195,990627.425,1051941.554,1169414.987,20
+3196,982380.0326,1047030.047,1127100.05,20
+3197,982289.655,1040045.824,1834057.781,20
+3198,976518.7751,1039108.198,1109410.703,20
+3199,976089.834,1033686.442,1118195.87,20
+3200,972964.8488,1030200.29,1881967.743,20
+3201,970790.6058,1027885.888,1131847.724,20
+3202,967143.3682,1023398.341,1131158.86,20
+3203,966911.1138,1020699.966,1913000.663,20
+3204,963833.7046,1018576.538,1142408.871,20
+3205,960234.6188,1013666.852,1145377.984,20
+3206,960259.5134,1012337.311,1935496.721,20
+3207,1295270.183,1008984.659,961208.4353,20
+3208,955492.069,1006620.137,964401.2338,20
+3209,953386.7963,1004455.969,2063094.417,20
+3210,951337.8712,1001790.238,1225093.408,20
+3211,925178.4071,167173.8176,1168060.84,20
+3212,108992.4658,166632.1064,1957073,20
+3213,108731.9018,1520229.977,1172413.514,20
+3214,1131183.864,950877.5025,1172712.655,20
+3215,1164766.763,781465.7895,1977610.695,20
+3216,851474.7662,1192632.119,1174859.291,20
+3217,896693.3362,974546.4467,1177396.935,20
+3218,1016334.422,897140.884,1988192.516,20
+3219,932343.1535,1054579.307,1181782.22,20
+3220,933354.0695,977337.3633,1183630.913,20
+3221,946426.289,967351.773,1996401.735,20
+3222,936796.1752,976825.2456,241082.4877,20
+3223,934664.7746,984946.2223,356329.524,20
+3224,932512.4866,974364.2023,1048000.981,20
+3225,931612.0976,975534.2228,2537645.862,20
+3226,921019.8906,973473.6756,1590516.383,20
+3227,921264.5674,970439.3866,1535039.525,20
+3228,920062.7629,972148.3039,1269386.469,20
+3229,918596.5998,967628.1023,2221563.063,20
+3230,915042.4346,967592.3199,1846818.932,20
+3231,914998.2421,966693.0806,1083395.911,20
+3232,912396.1761,963754.8008,1086980.463,20
+3233,911590.0613,962510.8488,1872462.684,20
+3234,909904.5883,962904.6738,1097990.156,20
+3235,909013.1711,958598.3194,1100636.718,20
+3236,904861.8765,960363.0502,1894198.311,20
+3237,906673.8947,957278.0371,1109959.543,20
+3238,903054.8852,956440.997,1112476.246,20
+3239,903480.1359,955866.0211,1726515.957,20
+3240,901181.8629,954293.225,932548.2778,21
+3241,2632825.677,2985118.083,4261249.294,21
+3242,2178891.653,2258793.014,3847047.502,21
+3243,730739.7543,1141901.958,1097096.675,21
+3244,1185685.07,1245857.279,1267072.392,21
+3245,1216271.617,1429482.857,2618295.137,21
+3246,1106867.864,1321405.916,1454669.619,21
+3247,1104724.338,1315347.332,1490471.21,21
+3248,1105157.282,1311715.574,2283904.778,21
+3249,1101469.003,1308934.966,1507991.505,21
+3250,1094788.879,1305668.165,1501097.208,21
+3251,1092392.557,1301403.338,2320633.446,21
+3252,1089379.306,1297701.998,1506087.767,21
+3253,1082189.821,1295206.852,1507507.552,21
+3254,1074170.551,1292651.793,2316052.925,21
+3255,1074347.943,1289469.864,1513121.608,21
+3256,1070568.427,1288117.105,1506373.909,21
+3257,1066822.205,1283656.372,2327508.752,21
+3258,1063268.315,1280907.673,1512164.595,21
+3259,1060934.541,1279467.011,1510085.633,21
+3260,1057129.563,1277600.598,2331676.138,21
+3261,1055472.315,1275338.648,1513246.451,21
+3262,1051469.593,1693555.506,1509023.643,21
+3263,1049518.151,1272702.902,2337533.047,21
+3264,1045888.249,1267781.137,1511310.253,21
+3265,1046148.546,1266399.505,1508371.367,21
+3266,1040633.57,1266873.203,2340029.089,21
+3267,1039264.388,1255166.033,1510017.888,21
+3268,1037382.606,1244680.749,1507904.346,21
+3269,1035724.786,1247833.449,2341538.971,21
+3270,1033072.494,1240196.747,1508482.046,21
+3271,1030795.627,1240228.337,1507262.469,21
+3272,1028861.35,1238356.521,2343495.834,21
+3273,1026512.596,1236070.303,1504816.243,21
+3274,1025633.483,1232803.562,1504905.569,21
+3275,1022853.014,1232426.899,2344193.841,21
+3276,1021407.278,1230187.635,1503851.768,21
+3277,1019294.15,1227193.014,1504496.339,21
+3278,1017411.246,1647627.913,2341564.664,21
+3279,1016722.569,1224741.406,1504133.596,21
+3280,1013792.94,1222871.308,1500331.923,21
+3281,1013830.18,1220232.73,2346941.452,21
+3282,1011076.638,1220200.749,1498041.426,21
+3283,1007647.69,1215966.884,1502027.525,21
+3284,1009537.233,1216268.239,2342940.193,21
+3285,1006246.233,1214455.188,1499134.641,21
+3286,1004675.293,1211836.292,1499787.549,21
+3287,1004070.151,1213361.558,2343645.42,21
+3288,1001858.026,1208097.75,1497878.767,21
+3289,1001128.64,1209079.475,1497942.413,21
+3290,998868.7741,1206583.696,2342220.706,21
+3291,998682.954,1206470.732,1497540.173,21
+3292,996651.1777,1203784.114,1495963.568,21
+3293,995287.6372,1203178.74,2343560.014,21
+3294,994862.4179,1622605.777,1495409.812,21
+3295,991545.7328,1200956.745,1495341.846,21
+3296,993112.1596,1199933.178,2344188.891,21
+3297,989520.637,1197262.753,1492980.102,21
+3298,989626.2383,1196855.929,1495123.931,21
+3299,987372.7367,1195330.931,2342399.675,21
+3300,988768.473,1195304.776,1493570.236,21
+3301,1479879.638,2451799.012,1428971.423,21
+3302,1474461.283,2448080.874,2267843.32,21
+3303,1472188.557,2444113.121,1417379.231,21
+3304,1470663.08,2443636.486,1413153.548,21
+3305,1468423.843,2443920.968,2264232,21
+3306,1466819.009,2440519.226,1411273.67,21
+3307,1464395.903,2439686.13,1408751.443,21
+3308,1463612.023,2478028.703,2261736.997,21
+3309,1460627.029,2467128.403,1406900.755,21
+3310,1461281.135,2467434.926,1403336.932,21
+3311,1457026.596,2467164.538,2262162.283,21
+3312,1457285.13,2467320.876,1399284.124,21
+3313,1455061.861,2466093.045,1402482.979,21
+3314,1454178.985,2467589.02,2257200.665,21
+3315,1452786.749,2463705.09,1398491.47,21
+3316,1449308.215,2466027.934,1397380.946,21
+3317,1450487.965,2464499.065,2257234.339,21
+3318,1448240.908,2464774.494,1393644.155,21
+3319,1447084.97,2462517.101,1396658.636,21
+3320,1445443.3,2464200.88,2252819.332,21
+3321,1444465.354,2462961.331,1390821.983,21
+3322,1442776.674,2461894.08,1394174.47,21
+3323,1441695.74,2462471.427,2249904.815,21
+3324,1439753.987,2461762.147,1390105.671,21
+3325,1439866.566,2461705.933,1389448.977,21
+3326,1438612.108,2460514.44,2249466.413,21
+3327,1435623.566,2460563.449,1388128.443,21
+3328,1437057.416,2461047.86,1385707.276,21
+3329,1433357.627,2460261.081,2249713.883,21
+3330,1434067.377,2459385.267,1383234.215,21
+3331,1431169.507,2460333.196,1386035.25,21
+3332,1432197.467,2459637.519,2245461.366,21
+3333,1429986.958,2457660.992,1382228.586,21
+3334,1429190.056,2461431.492,1383243.468,21
+3335,1427179.065,2456283.835,2243543.843,21
+3336,1426811.797,2460604.011,1380863.382,21
+3337,1425497.358,2457583.95,1381267.923,21
+3338,1425546.783,2459268.961,2242557.815,21
+3339,1423270.26,2457997.532,1378294.271,21
+3340,1422481.31,2458714.556,1378782.521,21
+3341,1422102.049,2457098.743,2241406.876,21
+3342,1420069.388,2459152.122,1376882.922,21
+3343,1419526.712,2456658.532,1377416.243,21
+3344,1418467.054,2457251.656,2240676.162,21
+3345,1418232.294,2458592.375,1374524.624,21
+3346,1416322.693,2456984.38,1375091.958,21
+3347,1416993.44,2458494.279,2239869.422,21
+3348,1413605.192,2456437.648,1367761.508,21
+3349,1414413.873,2458703.499,1369396.422,21
+3350,1412427.12,2456788.464,2233849.382,21
+3351,1412354.8,2456797.3,1365421.985,21
+3352,1407745.099,2457893.234,1367341.431,21
+3353,1406089.773,2457821.039,2231631.53,21
+3354,1404702.212,2455808.498,1365953.747,21
+3355,1403187.933,2459273.072,1363606.802,21
+3356,1402873.986,2456313.642,2231318.314,21
+3357,1401162.441,2457101.09,1361511.478,21
+3358,1400182.972,2458040.686,1362321.359,21
+3359,1398523.005,2457678.601,2231206.314,21
+3360,1397829.95,2457487.51,1364376.079,21
+3361,1164576.213,2197225.099,971538.6255,21
+3362,1147753.352,2548617.606,1836874.681,21
+3363,1144679.707,2175919.237,959016.9713,21
+3364,1139256.432,2171860.08,959730.157,21
+3365,1135913.299,2168154.22,1836997.299,21
+3366,1133403.283,2166941.986,958368.1516,21
+3367,1129767.525,2162390.204,958917.1541,21
+3368,1127257.959,2161957.077,1839464.805,21
+3369,1124151.903,2158447.933,958004.8625,21
+3370,1122300.546,2157870.527,1446397.048,21
+3371,1118567.373,2154129.95,939417.5162,21
+3372,1118509.507,2154225.238,946520.7545,21
+3373,1112857.09,2152279.354,992196.977,21
+3374,1114076.527,2149732.012,1276909.7,21
+3375,1109361.813,2149060.441,930239.8403,21
+3376,1108780.148,2147377.451,932686.1421,21
+3377,1106083.436,2145619.589,934104.182,21
+3378,1103882.954,2146224.469,1082976.867,21
+3379,1102765.175,2142360.173,1308726.613,21
+3380,1100276.999,2143083.612,919383.6408,21
+3381,1097798.909,2142017.869,927427.3287,21
+3382,1097232.768,2140123.146,972244.858,21
+3383,1095085.845,2139932.773,1226667.821,21
+3384,1092174.511,2139188.163,916566.3492,21
+3385,1091257.229,2138095.865,920564.4499,21
+3386,1090572.42,2136898.494,1187177.36,21
+3387,1086727.696,2137159.829,915695.3894,21
+3388,1086728.11,2135083.084,918728.1594,21
+3389,1085066.435,2136978.265,929677.1631,21
+3390,1083248.054,2132980.223,989888.1004,21
+3391,1082145.637,2136174.035,940292.2586,21
+3392,1079573.722,2132163.751,946131.9684,21
+3393,1078592.5,2132729.206,945112.3583,21
+3394,1076303.85,2133569.761,942856.4328,21
+3395,1075932.917,2130376.552,944701.142,21
+3396,1073606.509,2133362.052,946514.1604,21
+3397,1071607.617,2129597.065,1760149.206,21
+3398,1071464.466,2131618.88,943493.4626,21
+3399,1068510.636,2130230.868,947737.8155,21
+3400,1068725.804,2130002.352,1801450.863,21
+3401,1065072.506,2129171.599,951516.4777,21
+3402,1066118.936,2129258.233,954003.2758,21
+3403,1062606.47,2129013.993,1817741.322,21
+3404,1062710.125,2128202.784,958150.7486,21
+3405,1060682.919,2127541.251,960518.8258,21
+3406,1059195.295,2129283.687,1828524.532,21
+3407,1057662.262,2126365.249,965122.7507,21
+3408,1057532.884,2127417.101,965983.3434,21
+3409,1054011.744,2127616.793,1838533.94,21
+3410,1054620.171,2126151.605,969632.1939,21
+3411,1052594.045,2126223.888,1450321.222,21
+3412,1051651.126,2125454.826,953761.9249,21
+3413,1049093.188,2127134.618,963781.9084,21
+3414,1050377.905,2124921.074,1009627.639,21
+3415,1046053.309,2126064.187,960831.8554,21
+3416,1045456.33,2124375.197,1106929.965,21
+3417,1044452.647,2125733.91,959542.7956,21
+3418,1044089.007,2124846.991,974290.7378,21
+3419,1041202.092,2124453.068,965955.5438,21
+3420,1040844.371,2124252.656,969253.228,21
+3421,1039681.528,2124118.765,970679.7854,21
+3422,1038619.951,2122209.13,970708.3943,21
+3423,1039415.473,2120468.414,971970.721,21
+3424,1037045.293,2119721.728,973113.1508,21
+3425,1037733.333,2118591.007,973245.1616,21
+3426,1036648.641,2117374.38,975253.2921,21
+3427,1036604.182,2116366.603,974771.5518,21
+3428,1035041.589,2115350.243,975989.1775,21
+3429,1035546.143,2113039.583,979180.752,21
+3430,1034709.973,2114532.703,976699.5327,21
+3431,1035422.434,2112102.991,978302.7448,21
+3432,1032986.812,2109889.002,977184.146,21
+3433,1033052.246,2110384.163,1818718.398,21
+3434,1033662.9,2108869.753,977417.7764,21
+3435,1032050.896,2108876.178,978023.4915,21
+3436,1031249.108,2105193.582,1848949.401,21
+3437,1032632.152,2107531,978198.305,21
+3438,1030069.064,2104335.298,977104.7238,21
+3439,1031745.384,2103808.655,1854520.72,21
+3440,1029525.695,2104043.027,977237.7617,21
+3441,1030426.83,2101527.771,977059.1359,21
+3442,1029022.231,2101035.793,1855707.939,21
+3443,1028199.889,2099670.244,976469.8511,21
+3444,1029231.515,2099815.468,976727.9764,21
+3445,1027494.261,2097860.901,1855970.157,21
+3446,1027895.244,2096981.352,976356.4025,21
+3447,1028247.135,2097581.992,975522.0885,21
+3448,1026005.97,2094460.898,1856237.913,21
+3449,1027279.245,2095645.975,974747.7549,21
+3450,1025218.569,2093557.804,1462841.963,21
+3451,1026498.172,2093592.416,954768.9959,21
+3452,1025467.488,2091066.513,962161.6426,21
+3453,1025283.809,2091280.191,957016.8428,21
+3454,1025292.281,2090879.155,1029045.032,21
+3455,1023987.77,2089770.316,1311577.722,21
+3456,1024507.57,2088096.289,942625.5455,21
+3457,1023802.37,2087732.569,948294.9181,21
+3458,1023876.284,2086760.835,986384.9262,21
+3459,1023315.183,2085823.508,1277731.186,21
+3460,1023171.659,2085412.543,933310.0731,21
+3461,1022686.988,2084300.806,936445.4485,21
+3462,1023220.532,2082888.146,937731.2186,21
+3463,1022366.225,2082515.891,1050796.08,21
+3464,1021668.464,2081486.295,935946.02,21
+3465,1022435.081,2080747.782,947261.4194,21
+3466,1020970.977,2079203.997,940239.388,21
+3467,1021630.354,2079772.827,941796.9228,21
+3468,1021466.883,2076890.806,943544.6365,21
+3469,1020397,2078079.687,945756.5266,21
+3470,1020471.081,2076020.988,946497.0465,21
+3471,1020510.951,2075515.279,949121.0386,21
+3472,1020513.464,2074336.573,949359.8584,21
+3473,1020155.656,2073362.416,951642.9046,21
+3474,1020137.126,2073642.574,952104.1181,21
+3475,1018653.088,2071282.45,953982.8015,21
+3476,1019842.078,2071136.548,1788635.516,21
+3477,1018982.926,2070444.194,954855.0601,21
+3478,1019347.26,2069175.779,957345.7568,21
+3479,1019237.247,2068732.462,1822440.546,21
+3480,1019075.589,2068259.328,957033.7278,21
+3481,1020571.394,2067844.802,968150.5941,21
+3482,1018185.225,2069488.056,1839432.774,21
+3483,1016254.904,2067733.238,966483.7025,21
+3484,1015234.994,2068586.058,965175.2293,21
+3485,1012450.397,2069120.476,1839869.482,21
+3486,1012577.188,2069061.983,963354.4387,21
+3487,1009741.551,2068649.208,963172.697,21
+3488,1009046.423,2069069.765,1837813.537,21
+3489,1007226.458,2439529.812,961294.7266,21
+3490,1004439.415,2068042.376,959499.4247,21
+3491,1005216.659,2069720.843,1836866.629,21
+3492,1001182.897,2069890.369,957405.0589,21
+3493,1001384.706,2069888.548,1441903.327,21
+3494,999079.5042,2069690.835,935963.0506,21
+3495,998240.1501,2069603.701,941592.5082,21
+3496,995316.3738,2071451.408,978049.1558,21
+3497,994732.5514,2068229.684,934906.3899,21
+3498,993429.5626,2071948.642,1014767.544,21
+3499,990976.8607,2069893.908,1243634.712,21
+3500,990154.0161,2070327.093,919109.2657,21
+3501,988500.8202,2071267.638,924128.116,21
+3502,986719.2741,2071623.6,940085.7146,21
+3503,984650.6566,2070681.384,938137.9134,21
+3504,984254.7025,2071194.841,942222.7518,21
+3505,982178.4763,2071828.703,919348.3253,21
+3506,980947.5366,2071326.585,919290.7349,21
+3507,978131.2438,2071969.281,919436.1437,21
+3508,978766.1436,2072448.604,920349.8982,21
+3509,974947.0971,2072337.157,920165.6565,21
+3510,975170.2277,2072361.369,919878.8203,21
+3511,972916.8308,2072505.517,920269.7313,21
+3512,971137.388,2072311.972,920740.9247,21
+3513,970474.4021,2073635.946,919938.937,21
+3514,967708.5507,2071682.342,919794.9085,21
+3515,967786.0562,2444070.646,922235.7512,21
+3516,964615.7822,2072997.565,919637.3528,21
+3517,964923.3771,2073547.357,918969.0104,21
+3518,961370.2076,2074429.959,918857.092,21
+3519,961707.4069,2073794.766,1760362.124,21
+3520,958607.3783,2073518.965,916877.1813,21
+3521,958381.3471,2074749.267,916833.2808,21
+3522,956523.925,2075238.648,1788800.931,21
+3523,954742.643,2074619.711,914547.2848,21
+3524,953719.7326,2075059.022,913943.3821,21
+3525,951688.9832,2075537.101,1791921.619,21
+3526,950056.0904,2074880.862,911359.2157,21
+3527,949356.7509,2076668.476,910937.0518,21
+3528,947712.1171,2074808.648,1791332.179,21
+3529,945317.5352,2077554.687,908071.7609,21
+3530,944762.1791,2075706.148,907998.3155,21
+3531,943118.9762,2075932.499,1789514.382,21
+3532,941089.8229,2077969.002,904596.1799,21
+3533,940166.5502,2076609.565,904915.9884,21
+3534,938661.9919,2077341.013,1786898.894,21
+3535,936270.649,2077912.355,901627.7133,21
+3536,936075.7925,2077746.231,1392753.692,21
+3537,934127.6115,2078288.652,880988.0864,21
+3538,931501.342,2077948.068,887407.179,21
+3539,932599.2956,2078990.56,921685.1057,21
+3540,929014.8131,2078748.306,879974.0727,21
+3541,927246.6182,2444958.945,952739.7905,21
+3542,925336.3902,2074054.753,864291.7478,21
+3543,924891.1174,2069705.124,875159.4582,21
+3544,922884.1034,2070652.216,867113.0643,21
+3545,922281.0187,2065284.988,864973.7525,21
+3546,920669.81,2065691.667,864115.7193,21
+3547,920692.6645,2062469.124,863308.8204,21
+3548,918227.0417,2061519.256,862367.2479,21
+3549,918149.8074,2058859.558,862095.5531,21
+3550,916279.5771,2057153.138,861541.6679,21
+3551,915876.2704,2054428.305,860858.6889,21
+3552,914991.981,2036059.049,859968.5914,21
+3553,913233.7818,2030790.652,859387.6778,21
+3554,913332.8578,2027632.438,858435.3587,21
+3555,910583.1123,2024096.471,856989.8029,21
+3556,911399.8451,2021932.117,856640.602,21
+3557,908787.0274,2017951.007,855617.8856,21
+3558,908550.4405,2015213.882,854902.4933,21
+3559,906782.0847,2013546.165,854247.987,21
+3560,906812.0481,2009632.054,853578.2366,21
+3561,904806.7129,2005947.437,1696792.291,21
+3562,904411.8312,2005149.737,841457.1384,21
+3563,902898.2204,2002252.046,841713.0871,21
+3564,902523.7269,1998589.945,1723053.861,21
+3565,900219.7851,1996673.674,836816.1515,21
+3566,900124.0467,1993858.971,836336.3829,21
+3567,899196.3718,1991641.319,1723492.288,21
+3568,897746.0248,1988876.689,832637.9466,21
+3569,897314.4906,1984988.773,830154.0375,21
+3570,895395.2372,1984805.319,1721358.744,21
+3571,895186.1362,2351460.214,826213.0173,21
+3572,894176.0297,1978881.012,825853.7387,21
+3573,892380.3814,1976435.981,1717385.042,21
+3574,893186.5491,1974856.25,821453.5383,21
+3575,891228.8171,1972780.157,820864.6655,21
+3576,890011.881,1969359.694,1713322.994,21
+3577,890232.8241,1967949.159,816452.2153,21
+3578,888526.0175,1965586.018,815995.932,21
+3579,887876.1015,1963227.189,1709463.571,21
+3580,887721.7514,1961234.799,811331.6971,21
+3581,885629.8453,1960417.618,810847.6467,21
+3582,885384.3364,1955344.167,1704896.03,21
+3583,884643.0626,1956102.408,806664.3236,21
+3584,884128.462,1952050.365,1309450.379,21
+3585,882605.4367,1951337.596,787317.2119,21
+3586,881685.5368,1949115.046,792865.456,21
+3587,881555.9101,1946741.691,786183.4035,21
+3588,880335.995,1944767.314,892205.843,21
+3589,879316.2124,1943137.8,1145157.86,21
+3590,878642.587,1940805.548,768404.3501,21
+3591,878430.6856,1939300.332,773841.6861,21
+3592,876345.1801,1937376.396,802036.4777,21
+3593,877932.3729,1934497.82,794983.6772,21
+3594,874382.7702,1933868.232,856363.1131,21
+3595,875257.1705,1931905.751,1077808.291,21
+3596,873375.2068,1932348.403,752242.6994,21
+3597,873306.1869,1928332.333,756388.2878,21
+3598,871704.0921,1928084.016,755570.5505,21
+3599,872792.4498,1926058.196,848446.3858,21
+3600,869709.1702,1923646.378,768318.9516,21
+3601,945624.0903,2374376.573,840672.4946,21
+3602,943925.2442,2000385.691,833301.1111,21
+3603,943560.5763,1999123.569,831685.1755,21
+3604,944377.4214,1998436.658,831099.8028,21
+3605,943414.3909,1996496.849,837434.1349,21
+3606,942034.0031,1995817.242,835001.8301,21
+3607,943882.249,1992699.732,835615.3364,21
+3608,941954.1817,1992859.175,1647970.655,21
+3609,942509.1592,1989635.874,813329.452,21
+3610,941597.5682,1989461.156,815242.5163,21
+3611,941176.5497,1988614.947,1685979.459,21
+3612,940871.5157,1985585.75,817241.397,21
+3613,941180.4805,1985136.785,819736.3164,21
+3614,939794.8084,1984103.965,1698619.09,21
+3615,940301.516,1980704.16,821467.7867,21
+3616,939552.1968,1981084.577,822568.7511,21
+3617,939372.2218,1978111.55,1706744.525,21
+3618,937580.3916,1977912.749,824753.4167,21
+3619,938928.2779,1975685.472,825999.0723,21
+3620,937708.6117,1974250.9,1712380.245,21
+3621,937274.3497,1974533.057,827416.088,21
+3622,937059.6025,1971538.578,1320943.474,21
+3623,937077.1976,1971852.59,813305.1768,21
+3624,936753.7545,1969898.812,819512.3168,21
+3625,935515.2307,1968271.154,816921.7883,21
+3626,935622.4553,1967095.861,923740.5897,21
+3627,934991.3154,1966071.465,823214.613,21
+3628,933770.6666,1963952.359,862295.0362,21
+3629,934711.0726,1963690.87,850596.9987,21
+3630,933448.1174,1961447.496,850897.8778,21
+3631,932924.356,1959933.719,851380.6376,21
+3632,933398.5962,1958194.428,851008.6092,21
+3633,933061.1944,1955856.774,851465.5142,21
+3634,931681.0795,2327229.071,851774.6982,21
+3635,933013.1375,1952104.988,853054.4061,21
+3636,930282.9973,1948983.316,853295.7275,21
+3637,931518.2271,1948159.481,853380.0832,21
+3638,931239.8206,1945263.917,854773.9571,21
+3639,930392.0467,1944169.945,854738.8435,21
+3640,929921.0027,1941767.731,854797.8977,21
+3641,931331.5811,1940449.239,856166.8738,21
+3642,928624.911,1937297.067,856239.8238,21
+3643,929828.9207,1936286.828,856259.2953,21
+3644,928875.3421,1931406.498,856962.5631,21
+3645,928478.3549,1930992.795,857178.7418,21
+3646,928434.9403,1927628.686,858892.0941,21
+3647,928348.3839,1926558.208,858631.9595,21
+3648,927583.5188,1923858.241,859236.4953,21
+3649,927881.831,1922834.612,859763.4164,21
+3650,927220.2413,1919110.284,860440.8609,21
+3651,925947.5214,1918734.213,1686797.513,21
+3652,926781.8263,1914738.183,836237.3294,21
+3653,926813.934,1914396.63,838514.0198,21
+3654,925233.7087,1910448.062,1721606.494,21
+3655,925879.3038,1909399.073,839664.079,21
+3656,926364.5086,1908350.969,840532.7809,21
+3657,924382.5126,1903358.943,1731069.972,21
+3658,924456.6554,1902566.545,841191.5717,21
+3659,925273.2333,1899404.511,843876.1617,21
+3660,923391.4416,2272363.417,1734694.116,21
+3661,848159.2977,1818251.8,788251.0243,21
+3662,847835.6523,1816624.219,1283093.707,21
+3663,847266.8033,1817890.167,769341.7503,21
+3664,847194.7375,1814934.821,772677.9771,21
+3665,846180.2048,1815937.066,768225.9378,21
+3666,846765.7094,1814217.929,878201.1257,21
+3667,846162.2869,1814281.225,1121875.981,21
+3668,846676.2409,1812605.473,750647.3246,21
+3669,846449.067,1812286.56,754242.7064,21
+3670,845876.8456,1811925.454,779033.1358,21
+3671,846176.1328,1809821.394,792933.9563,21
+3672,846646.3018,1811108.916,833782.9284,21
+3673,845347.3561,1807847.218,1052860.621,21
+3674,846296.9036,1809277.26,733099.0972,21
+3675,845565.2716,1808315.073,737557.3538,21
+3676,846173.0405,1805486.723,864794.9598,21
+3677,846384.9723,1806850.892,839108.7976,21
+3678,846669.7451,1806011.649,747308.3152,21
+3679,846994.3712,1802989.045,778190.6289,21
+3680,847571.4284,1804050.366,767243.2752,21
+3681,847377.748,1803614.834,762953.6784,21
+3682,848082.7178,1801197.135,762351.0031,21
+3683,847858.2979,1801914.979,760651.9303,21
+3684,848693.4703,1800158.361,753539.872,21
+3685,848549.2657,1799633.17,766036.522,21
+3686,849140.404,1799104.489,756611.3443,21
+3687,849405.3307,1796692.593,1543398.705,21
+3688,849725.5213,1797871.547,713679.5965,21
+3689,849850.2968,1796427.725,714013.9173,21
+3690,850706.4156,1795054.165,1577766.45,21
+3691,850288.3026,1793852.452,712368.6764,21
+3692,851111.2442,1794234.826,712522.5503,21
+3693,851027.3223,1793063.51,1587012.698,21
+3694,851262.1765,1792664.836,710425.1277,21
+3695,851627.9213,1791880.579,1192970.125,21
+3696,851726.2896,1792887.605,695897.725,21
+3697,852207.5375,1791411.245,700521.1573,21
+3698,852145.1702,1791414.877,696002.5823,21
+3699,852588.0037,1791248.303,824701.4891,21
+3700,852764.2402,1791351.06,1040654.539,21
+3701,853717.6522,1791386.005,681493.4209,21
+3702,852962.3471,1789584.392,685788.5548,21
+3703,853728.0732,1790824.587,707274.3964,21
+3704,853954.8556,1789900.931,750262.5387,21
+3705,853877.4327,1789450.97,777896.2881,21
+3706,854497.802,1790253.762,975191.3755,21
+3707,854454.081,1789444.168,667777.7945,21
+3708,855114.186,1789695.526,672006.2989,21
+3709,855191.0973,1789375.368,817308.6601,21
+3710,853259.6541,1789663.095,790042.7729,21
+3711,853744.889,1788387.196,986235.6997,21
+3712,853655.5824,1789398.971,652223.0605,21
+3713,853674.0728,1789142.079,656595.73,21
+3714,853965.7465,1788138.418,653288.0367,21
+3715,854183.8821,1789337.2,788629.3734,21
+3716,854248.6452,1788714.38,974773.2033,21
+3717,854754.7107,1788816.08,641612.5125,21
+3718,854620.3974,1788910.761,645889.6244,21
+3719,854757.8919,1788862.634,642870.8795,21
+3720,856653.9297,1787826.7,778067.8839,21
+3721,859595.2928,1790506.574,971213.5608,21
+3722,859647.6377,1791313.904,643425.8674,21
+3723,859757.4536,1794563.011,650039.7362,21
+3724,860183.7934,1793111.87,647214.0397,21
+3725,859913.9089,1794068.986,781982.6972,21
+3726,859987.9132,1794683.352,687858.9833,21
+3727,860440.0129,1795330.395,719316.2245,21
+3728,859688.3498,1794128.155,710350.0292,21
+3729,860756.4402,1796543.1,708704.5081,21
+3730,860024.2535,2170924.298,709067.3613,21
+3731,860271.6988,1797256.249,708711.758,21
+3732,860636.976,1797531.506,1459774.972,21
+3733,860156.1166,1796777.43,651209.0768,21
+3734,860701.2278,1798695.618,653158.2889,21
+3735,860723.3329,1798145.816,1502397.109,21
+3736,860222.6633,1799339.499,656428.4768,21
+3737,861082.6044,1799489.849,658065.2213,21
+3738,860330.8013,1800751.617,1519311.582,21
+3739,861050.7183,1799792.76,660598.6753,21
+3740,860304.9359,1801688.202,1129093.773,21
+3741,861226.0747,1801774.874,650351.7514,21
+3742,860545.3383,1801789.556,657390.9125,21
+3743,861162.2942,1803348.403,683331.5905,21
+3744,860778.7967,1802498.613,718633.037,21
+3745,861450.6262,1804078.786,774758.0872,21
+3746,860707.3405,1803742.124,712962.0435,21
+3747,861125.604,1804834.718,725283.5786,21
+3748,861400.295,1805554.462,719702.8393,21
+3749,860835.5736,1805997.871,717841.7358,21
+3750,859366.632,1807783.974,716648.9402,21
+3751,859218.6476,1806500.374,716246.454,21
+3752,861461.8566,1808424.919,716105.2735,21
+3753,862326.4239,1807621.951,715038.9988,21
+3754,862965.0617,1809314.661,715322.4126,21
+3755,862950.034,1808109.33,713549.8894,21
+3756,864501.0513,1809001.258,714018.8804,21
+3757,863899.7641,1809226.442,713654.4598,21
+3758,865348.0862,1809407.927,712202.3513,21
+3759,865128.3708,1809771.57,712808.7746,21
+3760,866343.3894,1809272.927,711575.5427,21
+3761,866696.2987,1810005.38,711755.0416,21
+3762,867401.2371,1809746.747,710153.0724,21
+3763,867662.51,1810435.846,711330.6742,21
+3764,868765.9358,1810018.453,708527.0807,21
+3765,868915.7141,2185638.597,709706.4434,21
+3766,870147.973,1811110.664,709564.7017,21
+3767,870649.1881,1811969.719,703840.2064,21
+3768,871084.823,1811051.213,713981.0538,21
+3769,872002.34,1811977.984,706857.2393,21
+3770,872271.6934,1811963.371,1467175.185,21
+3771,873385.4741,1812403.739,645938.06,21
+3772,873769.5453,1812442.276,648240.1447,21
+3773,874968.3952,1812536.979,1507089.852,21
+3774,875110.4177,1813414.942,649461.747,21
+3775,876191.4378,1812660.065,651221.6019,21
+3776,876918.6832,1812950.464,1521024.337,21
+3777,877689.3551,1812980.445,652453.6498,21
+3778,878363.8304,1813233.871,653188.6906,21
+3779,879089.7912,1812275.559,1530419.465,21
+3780,880248.6548,1811159.388,654597.5099,21
+3781,875132.7185,1809522.763,645069.6818,21
+3782,875924.6974,1810159.991,1526281.584,21
+3783,875775.4277,1813126.827,645529.4354,21
+3784,876124.6116,1813399.579,645332.882,21
+3785,876868.1906,1816118.847,1531361.828,21
+3786,876730.5802,1817133.76,645819.1806,21
+3787,876932.2015,1819186.1,645667.3277,21
+3788,877861.3595,1820863.045,1535252.184,21
+3789,877659.665,1822328.117,645238.4448,21
+3790,878191.4689,1824850.921,645804.2275,21
+3791,878542.5648,1825109.982,1538468.137,21
+3792,879217.6588,1828347.403,644638.3566,21
+3793,878985.3154,1828871.861,644887.7871,21
+3794,879634.9147,1831305.231,1541334.336,21
+3795,880313.0988,1832933.213,644157.8097,21
+3796,880295.4555,1834294.954,643498.963,21
+3797,880721.2444,1836184.561,1543432.711,21
+3798,881352.6973,1838552.859,642725.0706,21
+3799,881538.514,1838877.965,643324.5389,21
+3800,881690.5417,1841918.551,1543730.314,21
+3801,882608.4254,1842878.793,641937.1456,21
+3802,882651.8075,1844749.647,641430.0886,21
+3803,883106.5443,1846627.342,1544768.81,21
+3804,883889.8623,1848448.734,640145.2409,21
+3805,883709.9803,1850146.277,640543.5466,21
+3806,884432.6886,1851320.843,1544522.171,21
+3807,885804.5445,1854037.233,638875.2295,21
+3808,886093.787,1854802.261,637905.4278,21
+3809,886493.1235,1856871.608,1545431.571,21
+3810,887359.3884,1858791.441,636099.5597,21
+3811,886708.3589,1860598.015,637068.3733,21
+3812,887953.2342,1861700.064,1545644.364,21
+3813,887353.7095,1864029.386,636405.5169,21
+3814,887873.1488,1865856.995,637229.6367,21
+3815,887564.0489,1867304.701,1546757.967,21
+3816,887919.6943,1868911.583,636855.5157,21
+3817,888347.5217,1871126.191,637123.1414,21
+3818,888270.1203,1871652.328,1548523.019,21
+3819,887904.9087,1874817.313,636625.7381,21
+3820,888578.8061,1875777.833,637600.7935,21
+3821,888241.8022,1878042.641,1549621.28,21
+3822,888626.3312,1878846.541,636962.6424,21
+3823,888550.0902,1881470.66,637934.5677,21
+3824,888325.0396,1882792.895,1550851.328,21
+3825,889173.9988,1884905.067,637469.8918,21
+3826,888592.3985,1885684.156,637774.4927,21
+3827,888672.3832,1888547.235,1552545.185,21
+3828,888820.1656,1889428.748,637531.4498,21
+3829,888845.6056,1891723.429,638435.6219,21
+3830,889033.6337,1893280.141,1553313.643,21
+3831,889080.984,1894831.443,638149.2343,21
+3832,888883.2317,1896437.717,638817.4518,21
+3833,888664.9981,1899304.802,1554169.45,21
+3834,889737.8532,1899481.806,638572.3373,21
+3835,888380.6099,1902441.875,639526.1892,21
+3836,889398.7885,1903489.33,1555228.955,21
+3837,889071.6575,1905261.732,639113.1717,21
+3838,889212.6806,1906812.572,639517.3183,21
+3839,888623.5889,1909071.217,1556524.416,21
+3840,890907.3043,1910548.303,639615.6878,21
+3841,889296.6003,1910431.66,637916.913,21
+3842,890593.0588,1910201.881,1555786.427,21
+3843,890952.1588,1910390.826,637522.3718,21
+3844,891240.4487,1909992.653,639425.0076,21
+3845,892271.9176,1910061.277,1556574.733,21
+3846,892711.1318,1909849.514,639491.8355,21
+3847,893489.1363,1910088.257,639676.7571,21
+3848,893864.3306,1909843.185,1557848.165,21
+3849,894557.766,1909460.283,640403.7261,21
+3850,895173.8709,1909779.858,640984.3964,21
+3851,895440.495,1909327.592,1560006.697,21
+3852,895966.9244,1909748.107,640800.3075,21
+3853,897037.3328,1909143.591,642627.7712,21
+3854,897009.8254,1908924.095,1561122.812,21
+3855,897875.0847,1909947.158,642453.3685,21
+3856,898753.8521,1908754.184,642971.1507,21
+3857,898896.3079,1908925.439,1563105.229,21
+3858,899087.9954,1908795.077,643478.708,21
+3859,900798.3553,1909165.574,644995.7273,21
+3860,900349.5555,1908024.21,1564036.274,21
+3861,901534.658,1909072.558,644826.0949,21
+3862,901945.083,1908474.39,646032.6956,21
+3863,902223.3808,1908417.441,1565977.567,21
+3864,903062.249,1908149.378,646198.6133,21
+3865,903765.8291,1908532.333,647162.8485,21
+3866,903795.5564,1908178.186,1567599.832,21
+3867,904603.3389,1907423.934,647307.4416,21
+3868,905563.4604,1908550.991,649107.4506,21
+3869,905611.9532,1907448.286,1569204.863,21
+3870,906361.4786,1908013.064,649049.0404,21
+3871,906660.5781,1907132.054,649727.7812,21
+3872,907285.2848,1908071.243,1570351.624,21
+3873,907989.1801,1907452.878,649017.4598,21
+3874,908622.9173,1906699.936,650331.874,21
+3875,908616.186,1907505.647,1570746.104,21
+3876,909677.9416,1907203.901,649152.5936,21
+3877,909791.2695,1907171.066,650844.3471,21
+3878,910735.0088,1906686.642,1571012.591,21
+3879,910831.3567,1906709.28,649345.5958,21
+3880,911496.6851,1906997.019,650993.3747,21
+3881,912102.5773,1906089.523,1571327.788,21
+3882,912532.8564,1906989.823,649735.7493,21
+3883,912766.1858,1905978.935,650886.0357,21
+3884,913740.6385,1906702.772,1571646.726,21
+3885,913824.481,1905890.798,650170.4616,21
+3886,914629.8867,1906167.57,650572.2811,21
+3887,919113.4302,1906110.801,1572489.427,21
+3888,921012.9869,1905643.97,650061.9476,21
+3889,921346.6875,1906114.944,650351.6045,21
+3890,922165.2069,1905297.661,1573327.836,21
+3891,922647.4728,1905604.83,649738.8376,21
+3892,923723.468,1905797.357,650974.4583,21
+3893,924058.8935,1905362.901,1572739.957,21
+3894,925093.7453,1905212.558,650573.148,21
+3895,925283.297,1905169.986,650593.7364,21
+3896,926415.993,1904545.985,1573126.93,21
+3897,926812.2614,1905303.289,650508.4212,21
+3898,927478.4788,1904579.66,650671.5376,21
+3899,928044.4168,1904967.102,1573245.955,21
+3900,928688.3755,1904242.328,650249.6895,21
+3901,986941.8876,1984285.804,762630.1463,21
+3902,1001711.072,1989866.042,1686230.674,21
+3903,1006071.397,2134394.159,779105.3894,21
+3904,1003804.764,2095289.86,1294038.431,21
+3905,1006460.193,2090388.659,761192.2111,21
+3906,1140284.045,2100651.816,768416.9754,21
+3907,1056987.7,2104004.674,835232.8503,21
+3908,1085032.423,2105964.815,778210.1098,21
+3909,1087207.784,2108801.499,986423.1594,21
+3910,1088379.734,2111228.722,1128956.036,21
+3911,1092596.599,2112941.128,759612.9351,21
+3912,1092303.528,2115194.996,766999.8871,21
+3913,1096112.863,2117757.273,766406.4999,21
+3914,1096835.378,2119012.493,912235.2818,21
+3915,1098648.318,2120871.17,815005.311,21
+3916,1100525.292,2123238.852,851496.4659,21
+3917,1102363.141,2125206.456,839120.6574,21
+3918,1103568.629,2125623.963,838586.214,21
+3919,1105268.369,2129208.293,838108.6456,21
+3920,1107617.384,2131341.92,838847.2823,21
+3921,1108381.891,2131055.309,839971.6318,21
+3922,1109959.072,2133598.89,842608.2093,21
+3923,1111745.031,2135900.521,843549.3654,21
+3924,1112499.607,2136820.228,844526.6202,21
+3925,1114581.584,2138383.989,845746.0245,21
+3926,1115282.298,2140401.645,846714.7626,21
+3927,1117271.222,2141992.288,842298.5466,21
+3928,1117898.109,2143228.417,855626.6355,21
+3929,1120177.6,2145732.775,848846.8227,21
+3930,1122243.213,2145403.111,1634156.078,21
+3931,1122804.039,2150797.157,798652.1536,21
+3932,1125464.129,2149438.898,800658.9967,21
+3933,1126182.953,2151809.109,1678615.828,21
+3934,1126221.059,2153647.115,806364.0448,21
+3935,1129135.846,2155348.129,809241.8466,21
+3936,1129420.042,2156124.503,1696108.792,21
+3937,1130408.555,2157457.349,817692.3117,21
+3938,1131928.677,2159174.378,1312293.756,21
+3939,1133118.115,2161164.697,807079.8036,21
+3940,1133506.947,2162587.341,816245.7584,21
+3941,1135735.121,2163208.723,814371.3875,21
+3942,1135488.176,2165329.981,951327.7032,21
+3943,1137519.906,2166241.565,852932.9366,21
+3944,1138209.354,2168328.498,891938.0494,21
+3945,1140127.25,2168766.7,879649.6156,21
+3946,1139364.674,2170727.411,879354.453,21
+3947,1142322.429,2171084.958,877733.5185,21
+3948,1141214.561,2174080.361,879380.4501,21
+3949,1143783.603,2173831.765,880076.0066,21
+3950,1144547.759,2176563.34,880625.0027,21
+3951,1145243.609,2176087.525,881854.1593,21
+3952,1145855.801,2179543.896,882306.1293,21
+3953,1147612.167,2179370.202,884140.9054,21
+3954,1147968.687,2180578.114,884516.4457,21
+3955,1149625.447,2182427.166,885482.7322,21
+3956,1149973.259,2183847.337,886407.3504,21
+3957,1150817.672,2184754.779,887757.0443,21
+3958,1151816.755,2186278.728,888208.8161,21
+3959,1153016.964,2186442.993,889628.3957,21
+3960,1153126.15,2189248.079,893854.9069,21
+3961,1214142.679,2254658.648,936447.2253,21
+3962,1218645.716,2258471.14,940078.5494,21
+3963,1220929.177,2260652.475,939358.1955,21
+3964,1221234.205,2259870.388,942617.0568,21
+3965,1223368.718,2260599.649,942512.7126,21
+3966,1224471.04,2259318.557,937889.4349,21
+3967,1224807.618,2261735.301,949658.4443,21
+3968,1225595.569,2260815.282,943449.2738,21
+3969,1228064.246,2260006.517,1732310.134,21
+3970,1227897.586,2261283.44,899121.9515,21
+3971,1228714.19,2260902.324,903365.7454,21
+3972,1230851.198,2259922.216,1772734.785,21
+3973,1229838.665,2262147.712,906648.823,21
+3974,1232240.851,2259203.341,909045.8425,21
+3975,1232555.182,2260284.986,1787351.537,21
+3976,1233334.953,2260233.043,912581.5744,21
+3977,1234503.654,2259954.896,913311.5355,21
+3978,1234194.109,2258875.406,1797727.092,21
+3979,1236853.706,2260303.842,915746.8603,21
+3980,1235719.453,2259084.82,919803.6503,21
+3981,1237798.253,2259349.222,1803742.102,21
+3982,1237758.3,2257801.517,921344.3327,21
+3983,1238325.495,2259516.651,1413034.498,21
+3984,1239442.777,2256977.741,905232.688,21
+3985,1240892.907,2257947.258,913560.8868,21
+3986,1239711.227,2257608.391,909663.6899,21
+3987,1241889.776,2257951.322,1038076.723,21
+3988,1241245.94,2255472.482,1264593.864,21
+3989,1242545.87,2257219.579,897370.6482,21
+3990,1243580.606,2255551.629,905046.3348,21
+3991,1243987.64,2255609.349,933478.3386,21
+3992,1243967.545,2254885.266,955634.6143,21
+3993,1245570.036,2255110.554,1005827.098,21
+3994,1244789.819,2254038.986,1209904.346,21
+3995,1245924.497,2254102.209,893987.7818,21
+3996,1248145.951,2253697.238,900124.6061,21
+3997,1246079.824,2253545.791,901473.364,21
+3998,1247116.922,2251846.723,1015655.414,21
+3999,1249950.812,2252337.236,931897.453,21
+4000,1247154.47,2252233.549,958958.836,21
+4001,1249993.816,2250941.662,951644.4433,21
+4002,1249630.891,2250957.08,948806.1815,21
+4003,1250182.642,2250016.636,948575.9618,21
+4004,1250771.788,2250000.738,948480.0996,21
+4005,1251035.803,2249821.244,948961.0515,21
+4006,1252694.659,2248714.884,951011.4,21
+4007,1250505.027,2247278.421,948487.1173,21
+4008,1254871.087,2248095.656,951972.886,21
+4009,1251045.438,2248135.827,951357.2438,21
+4010,1254833.112,2246073.575,947591.3532,21
+4011,1253888.873,2246748.363,959031.1238,21
+4012,1254435.854,2244540.027,952178.0778,21
+4013,1254609.933,2245394.53,1739970.868,21
+4014,1255141.78,2245362.728,912492.1225,21
+4015,1255964.509,2243289.756,915056.1249,21
+4016,1256230.379,2243562.9,1780347.064,21
+4017,1255716.691,2241839.976,918269.612,21
+4018,1257755.032,2243629.943,920798.5049,21
+4019,1257025.387,2239954.595,1794105.951,21
+4020,1257782.409,2242358.413,923232.2218,21
+4021,1258697.8,2242517.781,922725.9166,21
+4022,1259788.159,2245197.397,1801573.377,21
+4023,1259936.643,2246251.409,925396.0273,21
+4024,1260656.217,2249315.469,928501.972,21
+4025,1262844.21,2250192.908,1810266.592,21
+4026,1261213.306,2251963.04,931393.1156,21
+4027,1262762.299,2252720.207,932685.24,21
+4028,1264440.966,2256558.847,1817998.053,21
+4029,1262545.674,2255694.206,935434.1249,21
+4030,1265650.908,2259860.72,937234.2577,21
+4031,1264177.788,2258194.941,1825031.511,21
+4032,1265898.296,2263366.954,939128.2711,21
+4033,1265840.107,2262856.456,941964.0084,21
+4034,1267228.952,2265635.249,1829367.49,21
+4035,1266783.354,2266665.378,943760.7424,21
+4036,1268204.581,2268880.017,945559.243,21
+4037,1268173.368,2270714.428,1834784.023,21
+4038,1268988.797,2270141.131,947844.4847,21
+4039,1270049.308,2275292.136,947292.8331,21
+4040,1268501.769,2274174.449,1840152.841,21
+4041,1272057.274,2277048.11,949868.4483,21
+4042,1270866.13,2277574.881,951985.5873,21
+4043,1270506.006,2280482.858,1843945.027,21
+4044,1273173.68,2281253.564,951818.9754,21
+4045,1272241.423,2282542.982,959463.2392,21
+4046,1272196.308,2285609.061,1856572.103,21
+4047,1275207.499,2286250.06,962598.3515,21
+4048,1273056.969,2288216.697,965698.4091,21
+4049,1275570.074,2289775.599,1861315.834,21
+4050,1274198.318,2291125.337,971251.9242,21
+4051,1276405.882,2292773.362,972926.3217,21
+4052,1275321.502,2294633.636,1868172.78,21
+4053,1276893.631,2296059.41,976899.1508,21
+4054,1277647.48,2297528.985,976921.7662,21
+4055,1276282.536,2299846.222,1875554.32,21
+4056,1278414.354,2300735.669,980593.1683,21
+4057,1278611.185,2302327.305,983400.9523,21
+4058,1279244.188,2305709.254,1880261.818,21
+4059,1278791.044,2305037.261,982914.0067,21
+4060,1280713.234,2306720.12,985255.3026,21
+4061,1280291.565,2309199.733,1884741.489,21
+4062,1279551.238,2310598.552,987350.4778,21
+4063,1282410.269,2311868.167,990166.4251,21
+4064,1282121.425,2314533.337,1888708.576,21
+4065,1281287.035,2314146.804,992468.4617,21
+4066,1283054.202,2317797.122,994075.143,21
+4067,1283247.772,2318647.162,1894130.188,21
+4068,1283747.522,2318860.165,996719.1628,21
+4069,1283420.414,2322836.26,997286.0382,21
+4070,1285234.22,2323392.437,1899581.128,21
+4071,1284773.88,2324305.489,999264.9089,21
+4072,1284995.11,2326426.931,1004632.157,21
+4073,1285431.998,2328288.845,1902303.066,21
+4074,1287202.292,2328805.712,1004641.525,21
+4075,1285660.789,2332855.299,1006290.835,21
+4076,1287649.731,2332063.218,1908157.323,21
+4077,1286565.315,2334412.777,1007725.487,21
+4078,1288799.046,2335732.186,1010197.361,21
+4079,1287190.256,2337898.282,1912498.668,21
+4080,1289358.797,2337884.723,1011013.96,21
+4081,1295180.83,2347978.282,1028283.851,21
+4082,1296569.879,2346705.502,1930929.39,21
+4083,1298385.966,2346325.834,1031100.611,21
+4084,1297575.539,2345520.616,1032268.998,21
+4085,1298881.473,2343980.718,1934878.559,21
+4086,1298576.983,2344047.704,1032566.328,21
+4087,1299651.437,2343012.721,1540971.632,21
+4088,1299315.638,2340780.254,1015655.532,21
+4089,1300538.299,2341205.862,1021528.505,21
+4090,1301777.958,2339880.111,1019926.225,21
+4091,1300406.202,2338654.693,1134506.511,21
+4092,1301888.324,2337620.842,1384885.795,21
+4093,1302330.979,2336333.822,1004593.757,21
+4094,1301227.128,2335430.537,1011275.03,21
+4095,1303572.622,2334035.452,1046079.829,21
+4096,1303884.055,2333966.077,1073248.605,21
+4097,1302379.068,2331128.45,1009729.585,21
+4098,1304159.258,2331506.997,1175620.318,21
+4099,1304170.926,2330689.391,1346312.991,21
+4100,1305149.813,2328518.413,996639.4657,21
+4101,1304550.358,2328038.201,1002907.582,21
+4102,1305950.961,2326154.155,1003033.914,21
+4103,1305788.439,2326002.754,1113289.232,21
+4104,1305097.657,2323669.758,1346909.859,21
+4105,1307569.269,2324635.398,990804.829,21
+4106,1307024.755,2320837.013,1000714.852,21
+4107,1306253.967,2321956.291,996247.2531,21
+4108,1307808.654,2320193.597,1116511.522,21
+4109,1307928.056,2317467.086,1341622.687,21
+4110,1308519.436,2318602.005,987392.2081,21
+4111,1307602,2315408.372,994005.8304,21
+4112,1309896.441,2315604.85,995831.5664,21
+4113,1308641.253,2313968.413,1110242.502,21
+4114,1309552.117,2312078.498,1336570.632,21
+4115,1309751.34,2312501.078,981928.8266,21
+4116,1310355.35,2309999.873,993468.097,21
+4117,1309872.99,2308698.66,1012396.442,21
+4118,1310617.63,2308203.867,1053122.175,21
+4119,1311291.132,2307552.912,1057222.413,21
+4120,1311200.16,2305003.55,1245569.005,21
+4121,1311649.319,2304367.181,986821.1254,21
+4122,1312674.578,2303551.386,993890.0166,21
+4123,1311142.14,2301671.915,1140335.812,21
+4124,1313830.997,2300785.737,1062097.455,21
+4125,1311704.387,2299347.805,1308657.194,21
+4126,1314275.533,2298715.271,980905.5676,21
+4127,1312029.562,2296137.401,989035.3492,21
+4128,1314520.94,2297018.816,989005.4066,21
+4129,1314196.952,2294004.437,1103088.055,21
+4130,1314979.498,2292805.816,1321858.798,21
+4131,1312648.118,2292875.623,981321.6432,21
+4132,1316811.557,2290090.861,987125.9893,21
+4133,1313360.645,2290255.086,989203.7038,21
+4134,1316867.977,2287723.59,1105017.585,21
+4135,1314788.398,2287503.866,1322897.967,21
+4136,1315943.792,2285724.187,978780.8368,21
+4137,1315874.569,2284433.193,987555.53,21
+4138,1317741.073,2283824.776,986134.6967,21
+4139,1316128.969,2281465.268,1105244.702,21
+4140,1316759.082,2281312.88,1323501.658,21
+4141,1318362.926,2280118.657,981630.5351,21
+4142,1319995.747,2281313.111,987585.2437,21
+4143,1322079.199,2280263.512,990016.2165,21
+4144,1321619.53,2277915.102,1107722.363,21
+4145,1324673.732,2277320.565,1323426.274,21
+4146,1323006.649,2275818.159,979363.4643,21
+4147,1326419.577,2273396.803,987293.014,21
+4148,1325720.489,2273110.889,987919.2644,21
+4149,1327834.458,2270803.373,1108659.489,21
+4150,1328883.232,2267736.662,1321690.612,21
+4151,1329699.116,2268973.048,977610.7731,21
+4152,1330192.001,2264992.081,985761.4586,21
+4153,1331553.777,2265443.892,1006139.191,21
+4154,1333032.822,2261753.961,1058687.31,21
+4155,1333403.357,2261490.886,1056435.689,21
+4156,1335374.121,2259472.251,1157918.021,21
+4157,1335363.928,2257937.342,985561.2154,21
+4158,1336641.917,2255265.684,989050.8283,21
+4159,1338693.55,2255932.44,1171813.672,21
+4160,1338524.637,2252432.212,1340365.288,21
+4161,1339253.652,2250704.573,976078.4286,21
+4162,1341558.552,2249909.308,983429.4287,21
+4163,1341160.05,2247885.349,982236.2786,21
+4164,1343676.645,2245942.869,1112693.085,21
+4165,1342992.662,2245894.909,1317831.891,21
+4166,1345577.743,2241247.142,972762.3737,21
+4167,1346262.189,2242337.241,980923.7977,21
+4168,1346182.855,2238947.244,1000432.916,21
+4169,1348744.546,2237886.974,1062236.978,21
+4170,1349074.314,2235854.836,1057570.503,21
+4171,1348911.085,2234523.55,1152095.236,21
+4172,1352213.012,2232546.853,978764.9313,21
+4173,1351585.168,2231146.987,984243.2279,21
+4174,1352806.02,2228454.252,1174486.845,21
+4175,1353968.753,2227407.28,1336355.577,21
+4176,1355386.662,2226000.124,971899.2227,21
+4177,1356125.435,2223688.656,975932.8357,21
+4178,1356342.129,2221276.562,979678.8899,21
+4179,1359509.78,2221380.323,1111676.021,21
+4180,1358302.459,2218415.679,1312235.936,21
+4181,1359701.119,2215176.579,968650.1008,21
+4182,1361746.492,2216642.472,974877.3476,21
+4183,1361195.749,2212065.264,995141.3956,21
+4184,1364210.247,2212538.434,1062406.584,21
+4185,1363012.482,2207772.066,1058014.39,21
+4186,1365677.926,2209291.021,1162297.678,21
+4187,1367120.856,2205335.535,972302.6329,21
+4188,1365461.391,2204144.107,976981.5341,21
+4189,1368537.746,2202176.138,1168985.215,21
+4190,1369821.666,2201069.294,1308727.846,21
+4191,1369137.828,2198284.43,963570.7918,21
+4192,1371345.966,2196169.137,972530.6312,21
+4193,1372233.6,2196258.62,988974.2289,21
+4194,1373219.989,2192116.289,1067130.221,21
+4195,1373687.282,2191502.782,1053452.146,21
+4196,1375474.981,2190404.254,1102532.818,21
+4197,1375630.24,2186595.023,973049.4853,21
+4198,1376845.867,2186280.989,1178659.242,21
+4199,1378219.671,2183018.094,1089324.999,21
+4200,1379572.475,2184204.012,1288803.073,15.6
+4201,0,0,0,15.6
+4202,0,0,0,15.6
+4203,0,56.07800609,0,15.6
+4204,0,0,0,15.6
+4205,0,0,0,15.6
+4206,0,0,1498288.174,15.6
+4207,0,0,0,15.6
+4208,0,0,0,15.6
+4209,0,0,0,15.6
+4210,0,0,0,15.6
+4211,0,0,775921.7985,15.6
+4212,0,0,0,15.6
+4213,0,0,0,15.6
+4214,0,0,803554.9762,15.6
+4215,0,0,0,15.6
+4216,0,233.0461957,0,15.6
+4217,0,0,808879.9652,15.6
+4218,0,0,0,15.6
+4219,0,0,0,15.6
+4220,0,0,810819.3578,15.6
+4221,0,0,0,15.6
+4222,0,0,0,15.6
+4223,0,0,812170.0338,15.6
+4224,0,0,4.712471636,15.6
+4225,339249.744,0,0,15.6
+4226,0,45220.33565,813360.4911,15.6
+4227,0,1907.042177,5.17854166,15.6
+4228,0,6716.564755,0,15.6
+4229,0,19321.81124,814501.6575,15.6
+4230,0,12982.3483,5.380418252,15.6
+4231,0,14106.06267,0,15.6
+4232,0,14396.1816,815569.8543,15.6
+4233,0,14540.60701,5.772732522,15.6
+4234,0,14969.44198,0,15.6
+4235,0,14980.08466,816612.4532,15.6
+4236,0,15054.24421,5.496456023,15.6
+4237,0,15287.10723,0,15.6
+4238,0,15409.42037,817589.8449,15.6
+4239,0,15604.83481,5.824430969,15.6
+4240,0,15761.13537,0,15.6
+4241,0,15902.24727,1996874.68,15.6
+4242,0,16078.5666,5.322318542,15.6
+4243,0,16231.34635,0,15.6
+4244,0,16359.84843,799153.17,15.6
+4245,0,16546.36016,5.549790747,15.6
+4246,0,16654.80288,0,15.6
+4247,0,16770.30026,800871.2556,15.6
+4248,0,17013.91304,5.214506515,15.6
+4249,0,17027.67688,0,15.6
+4250,0,17219.15603,802502.2942,15.6
+4251,0,17346.44621,0,15.6
+4252,0,17480.62983,0,15.6
+4253,0,17858.76752,0,15.6
+4254,0,17725.30226,0,15.6
+4255,0,17863.26923,0,15.6
+4256,0,0,0,15.6
+4257,0,0,366774.5065,15.6
+4258,0,0,19636.35779,15.6
+4259,0,0,23669.00436,15.6
+4260,0,74235.1457,63207.80172,15.6
+4261,0,0,223757.3353,15.6
+4262,0,7893.305271,337361.2258,15.6
+4263,0,28511.19736,283669.129,15.6
+4264,0,17298.03944,19418.45554,15.6
+4265,0,19484.45224,22707.96044,15.6
+4266,0,19433.9846,19655.93744,15.6
+4267,374205.5225,19470.74921,292101.9006,15.6
+4268,1923.036325,19706.60087,277401.6405,15.6
+4269,3248.97857,19720.5714,19477.15466,15.6
+4270,12360.73035,19921.44664,22678.12274,15.6
+4271,10369.65,353177.7579,19656.51727,15.6
+4272,9476.672629,44742.32614,279754.3601,15.6
+4273,10090.89165,71510.73068,262027.7218,15.6
+4274,10196.04809,154220.0537,19396.29795,15.6
+4275,10339.38453,124629.3444,22351.29694,15.6
+4276,10429.0842,122727.9327,1011960.846,15.6
+4277,10567.38201,126446.2178,194090.9537,15.6
+4278,10697.40933,127598.951,96745.63786,15.6
+4279,10746.07373,127880.5045,272677.4662,15.6
+4280,10940.70468,129821.9268,229254.2696,15.6
+4281,11000.80726,130023.515,213448.3293,15.6
+4282,11115.78578,131570.6622,18574.60242,15.6
+4283,11231.29217,131758.5864,20853.61613,15.6
+4284,11355.49965,133364.9828,18636.7078,15.6
+4285,11426.53354,133863.7167,216138.5307,15.6
+4286,11524.04408,135101.5169,0,15.6
+4287,11673.93823,136244.2566,0,15.6
+4288,11765.69833,136581.3239,0,15.6
+4289,11829.04462,138111.3254,0,15.6
+4290,11968.55468,116503.6095,0,15.6
+4291,12041.42918,117918.3235,0,15.6
+4292,12142.26252,118248.7179,0,15.6
+4293,12262.2334,199274.5634,0,15.6
+4294,12348.83171,121175.0872,0,15.6
+4295,12418.76048,136256.6263,0,15.6
+4296,12572.17879,151234.6597,0,15.6
+4297,0,143499.3154,0,15.6
+4298,0,145717.3401,0,15.6
+4299,0,146579.3532,0,15.6
+4300,0,147354.2918,0,15.6
+4301,0,22760.69232,0,15.6
+4302,57891.00429,22802.84087,0,15.6
+4303,0,22886.83129,0,15.6
+4304,2592.185116,22962.76609,0,15.6
+4305,19852.89214,23046.29499,0,15.6
+4306,13173.8279,23048.01714,0,15.6
+4307,13169.61444,548013.9243,0,15.6
+4308,13627.53883,23206.81113,635590.9332,15.6
+4309,352995.3355,74159.58028,0,15.6
+4310,13859.88857,209744.107,0,15.6
+4311,13863.79786,153322.2022,1531619.902,15.6
+4312,14058.74424,153436.5681,0,15.6
+4313,14038.43437,157186.9426,0,15.6
+4314,14159.69022,158539.4424,665076.5551,15.6
+4315,14253.77067,158462.7803,0,15.6
+4316,14271.31527,159237.449,0,15.6
+4317,14422.99002,159933.4775,672632.5806,15.6
+4318,14455.35704,160807.6068,0,15.6
+4319,14541.48886,161120.4736,0,15.6
+4320,14623.41919,161838.5781,0,15.6
+4321,14971.04603,165685.8186,0,15.6
+4322,15142.44153,166391.0374,0,15.6
+4323,15314.29745,143748.0422,0,15.6
+4324,15443.46934,144736.7315,0,15.6
+4325,15637.62147,145719.6177,0,15.6
+4326,15774.11315,238556.8165,0,15.6
+4327,15946.07181,154822.9005,0,15.6
+4328,16078.20503,162308.2725,0,15.6
+4329,16244.32957,185756.1284,0,15.6
+4330,16441.9346,175625.8443,0,15.6
+4331,16515.96107,178255.8657,0,15.6
+4332,0,179924.2353,0,15.6
+4333,0,181199.125,0,15.6
+4334,0,182272.6717,0,15.6
+4335,0,183354.3915,0,15.6
+4336,72593.78983,185049.4594,0,15.6
+4337,1094.607434,26418.85525,0,15.6
+4338,7068.408294,26780.02957,0,15.6
+4339,26575.25828,26648.61228,0,15.6
+4340,16463.72421,26818.5546,0,15.6
+4341,18159.46077,656660.1027,0,15.6
+4342,18308.93482,27065.83325,0,15.6
+4343,18471.4514,109749.802,0,15.6
+4344,18602.41529,270635.9572,0,15.6
+4345,18785.31673,181046.5373,0,15.6
+4346,18914.70998,197130.3449,0,15.6
+4347,19038.0551,198045.205,1050084.092,15.6
+4348,19223.28312,199437.6526,0,15.6
+4349,19345.2463,200522.0134,0,15.6
+4350,19528.28911,201868.6614,0,15.6
+4351,19643.87267,202351.0183,640317.7729,15.6
+4352,674866.2209,203445.3756,0,15.6
+4353,32552.76577,205110.6807,0,15.6
+4354,56197.81177,205422.7758,667572.0496,15.6
+4355,125694.4746,207025.8824,0,15.6
+4356,116456.7745,179481.4834,0,15.6
+4357,105756.7832,180016.1026,677434.9461,15.6
+4358,111731.0485,268319.2909,0,15.6
+4359,113324.2216,189114.4279,0,15.6
+4360,114457.961,210159.2862,684451.0855,15.6
+4361,115949.7409,217089.6461,0,15.6
+4362,117545.4806,213430.6768,0,15.6
+4363,118856.2607,215408.4358,11450.3112,15.6
+4364,120326.5108,216222.3004,20380.4539,15.6
+4365,121663.21,217379.7415,17063.04316,15.6
+4366,101227.0869,217934.5195,260780.0572,15.6
+4367,102628.86,219669.1814,156676.4453,15.6
+4368,104138.3477,219847.337,192557.5015,15.6
+4369,183292.086,221445.6817,176598.5086,15.6
+4370,115184.1654,222390.1358,170934.0246,15.6
+4371,121580.2967,30148.26313,166447.0942,15.6
+4372,138335.3972,30324.6926,162360.901,15.6
+4373,132240.5218,30392.17913,158465.8118,15.6
+4374,134587.1848,714992.5672,154701.9498,15.6
+4375,136259.593,41350.84397,151051.6853,15.6
+4376,137285.1485,179699.3062,147507.7546,15.6
+4377,138863.994,284053.1168,144065.705,15.6
+4378,140274.6852,221172.8995,140722.0753,15.6
+4379,141640.461,230477.8207,137473.8288,15.6
+4380,143191.8045,232585.4298,134318.0662,15.6
+4381,142516.529,230327.1763,131252.7295,15.6
+4382,23688.46376,228723.8102,128274.6239,15.6
+4383,23642.44214,227167.8009,836273.255,15.6
+4384,23573.8118,225261.1839,121668.8263,15.6
+4385,23516.61998,224075.491,118962.698,15.6
+4386,23452.81867,221354.4921,116333.5174,15.6
+4387,536620.54,221125.6314,113779.0399,15.6
+4388,23329.13781,189077.7035,111296.9376,15.6
+4389,46316.70208,187639.2505,108877.8168,15.6
+4390,196013.0257,274983.7245,106503.9248,15.6
+4391,137013.3576,193200.8949,103095.6501,15.6
+4392,134815.9357,208289.3607,0,15.6
+4393,138769.6171,214830.6272,0,15.6
+4394,137887.0193,207638.6211,543571.7874,15.6
+4395,476876.244,206997.0563,0,15.6
+4396,137029.8378,205057.1989,0,15.6
+4397,136535.4911,203677.2543,570668.8214,15.6
+4398,135878.4247,201748.432,0,15.6
+4399,113027.8542,199939.9407,0,15.6
+4400,112366.8877,198546.0036,583817.2528,15.6
+4401,111805.4491,196399.444,0,15.6
+4402,191270.0491,194941.4329,0,15.6
+4403,120984.2024,193455.9096,594513.0483,15.6
+4404,122457.4711,26508.70941,0,15.6
+4405,139726.9176,26313.71914,0,15.6
+4406,130619.6468,26106.31141,0,15.6
+4407,131508.3656,25990.96419,0,15.6
+4408,130483.9345,664790.1576,0,15.6
+4409,130456.9871,25582.06914,0,15.6
+4410,129419.5172,77416.26689,0,15.6
+4411,129004.1746,267521.3673,0,15.6
+4412,128820.5572,162057.6957,0,15.6
+4413,127807.6391,176813.1715,0,15.6
+4414,127488.1789,175134.5239,0,15.6
+4415,126851.6889,174024.8177,0,15.6
+4416,126157.3419,171663.4077,0,15.6
+4417,21280.21537,169935.4169,0,15.6
+4418,21229.21521,168364.9561,0,15.6
+4419,21171.04878,166533.292,744028.1841,15.6
+4420,21053.82673,141094.7145,0,15.6
+4421,21001.8822,139751.2889,0,15.6
+4422,20899.13393,137918.5327,0,15.6
+4423,20847.35754,223244.3884,0,15.6
+4424,503739.5888,138443.0446,0,15.6
+4425,20650.87323,144191.7055,0,15.6
+4426,43041.97749,162969.406,0,15.6
+4427,136936.0176,150541.4489,0,15.6
+4428,140223.8146,150057.2375,0,15.6
+4429,110424.9419,148575.1889,0,15.6
+4430,118801.9316,145986.3441,0,15.6
+4431,118503.038,144985.2224,0,15.6
+4432,97505.48383,142353.913,0,15.6
+4433,96992.41932,140663.318,0,15.6
+4434,96163.52021,139024.1903,0,15.6
+4435,170603.8293,136744.2022,0,15.6
+4436,98345.07043,134801.2687,0,15.6
+4437,106439.0819,132827.5671,0,15.6
+4438,459835.3354,20036.31482,0,15.6
+4439,111898.995,19571.23338,0,15.6
+4440,112467.639,19140.96824,115607.1741,15.6
+4441,112941.87,19632.64651,0,15.6
+4442,113854.3708,19912.80184,0,15.6
+4443,114403.7268,20113.96546,0,15.6
+4444,114946.1205,20442.30314,0,15.6
+4445,115780.7198,20653.82413,0,15.6
+4446,116535.9663,516310.9929,0,15.6
+4447,116993.2643,21237.22093,0,15.6
+4448,117759.5858,67360.45448,0,15.6
+4449,118501.8429,199683.5293,0,15.6
+4450,118888.4425,149487.4374,112343.542,15.6
+4451,120009.6162,150329.7242,0,15.6
+4452,120310.1567,155346.9673,109238.5454,15.6
+4453,121063.3794,135711.5448,0,15.6
+4454,20365.35689,137513.7784,0,15.6
+4455,20408.82066,139195.5279,798358.1648,15.6
+4456,20502.73451,227390.6376,0,15.6
+4457,20509.29371,147029.8059,0,15.6
+4458,20602.66588,159736.3434,0,15.6
+4459,20680.05673,179887.7075,0,15.6
+4460,20661.73083,172340.278,562656.5114,15.6
+4461,523368.7592,176506.7588,0,15.6
+4462,20835.85302,177835.1891,0,15.6
+4463,44156.49202,180795.0577,589547.5032,15.6
+4464,154148.6943,182672.5666,0,15.6
+4465,125184.4857,185057.9607,0,15.6
+4466,100918.255,187236.4229,601944.5391,15.6
+4467,110319.094,189437.5431,0,15.6
+4468,187853.9907,191898.9561,0,15.6
+4469,118126.4563,193536.6837,611926.4102,15.6
+4470,124776.425,196455.9301,0,15.6
+4471,140161.3974,197108.2264,0,15.6
+4472,133603.6005,199988.3663,0,15.6
+4473,134710.1338,202068.9156,0,15.6
+4474,135950.0262,203711.1786,0,15.6
+4475,136023.5583,206789.3369,0,15.6
+4476,136697.1502,28367.88459,0,15.6
+4477,137582.291,28588.82462,0,15.6
+4478,138084.6754,28852.33481,0,15.6
+4479,138901.064,29185.85772,0,15.6
+4480,139047.9919,778257.436,0,15.6
+4481,479515.6785,59308.02918,0,15.6
+4482,140482.6771,101037.2534,0,15.6
+4483,141410.3181,319069.9015,0,15.6
+4484,141895.5119,209755.2975,0,15.6
+4485,142395.5599,228340.513,0,15.6
+4486,143534.3287,200133.5181,0,15.6
+4487,143574.7026,201665.9038,0,15.6
+4488,144483.2984,296506.9831,0,15.6
+4489,145247.4227,216624.8987,0,15.6
+4490,145710.0756,235723.786,0,15.6
+4491,22531.20792,245776.5568,892734.4623,15.6
+4492,22629.94599,243667.2712,0,15.6
+4493,22639.82334,245564.9211,0,15.6
+4494,22704.50703,248035.0785,0,15.6
+4495,22799.32053,249861.7973,0,15.6
+4496,593583.4756,252268.4957,0,15.6
+4497,22884.16741,254381.0622,0,15.6
+4498,24837.59215,256881.3093,0,15.6
+4499,197444.9598,258391.48,0,15.6
+4500,123620.8453,260974.3219,0,15.6
+4501,209340.8893,261529.3931,0,15.6
+4502,146470.4289,262534.9786,0,15.6
+4503,140980.6611,262916.1252,0,15.6
+4504,164191.1474,264217.5005,0,15.6
+4505,155281.5914,264901.2492,0,15.6
+4506,157034.1715,265308.4585,0,15.6
+4507,157646.724,266848.1324,123154.2807,15.6
+4508,158553.9046,267125.3908,0,15.6
+4509,158691.5407,268420.0002,0,15.6
+4510,159633.0387,35127.15605,128487.9688,15.6
+4511,160581.4932,35313.40423,128575.2916,15.6
+4512,160769.2118,35309.99012,126005.34,15.6
+4513,161560.8053,891762.1708,123074.0597,15.6
+4514,162561.7608,129056.1906,120435.7838,15.6
+4515,162989.0581,129015.7873,582224.4741,15.6
+4516,163411.9929,375372.2644,16062.51025,15.6
+4517,164416.2246,258820.7971,86201.42017,15.6
+4518,164949.7012,239509.3728,607705.4236,15.6
+4519,165773.9246,240811.1339,16549.25765,15.6
+4520,166227.1366,348036.8202,86164.26769,15.6
+4521,166947.9123,261099.291,618678.3489,15.6
+4522,167626.2393,270935.2783,17000.89896,15.6
+4523,168496.4559,286264.9952,88753.13278,15.6
+4524,508016.6813,279997.4822,627108.9455,15.6
+4525,169691.012,281126.2018,20301.30555,15.6
+4526,25057.40742,282631.2996,86481.82573,15.6
+4527,25029.69877,282149.2388,1416241.606,15.6
+4528,25168.09249,284011.333,17666.54375,15.6
+4529,25252.9349,284486.7577,88798.52512,15.6
+4530,650416.4831,284437.8675,640404.3054,15.6
+4531,675.2806876,285664.8422,17983.37888,15.6
+4532,61679.12665,286942.3544,95789.4179,15.6
+4533,216141.504,286639.8384,645490.1205,15.6
+4534,227205.8786,288572.8851,21236.53846,15.6
+4535,173909.0603,287884.0088,247609.6424,15.6
+4536,160750.6292,289679.235,18101.94927,15.6
+4537,186587.9017,290055.1198,20697.89955,15.6
+4538,178072.0271,291268.6618,18172.17287,15.6
+4539,179289.8865,291057.5493,0,15.6
+4540,181351.9473,292789.5613,0,15.6
+4541,181990.9493,292378.9715,0,15.6
+4542,182986.602,294203.3724,0,15.6
+4543,182957.6242,38403.40502,0,15.6
+4544,184161.905,38292.97236,0,15.6
+4545,184606.0732,38478.81066,0,15.6
+4546,185176.4435,986510.4456,0,15.6
+4547,185999.0742,180019.5371,0,15.6
+4548,186337.827,108360.2636,0,15.6
+4549,187689.9182,421954.0311,0,15.6
+4550,187598.2733,241650.7102,0,15.6
+4551,188633.3701,261493.1516,0,15.6
+4552,189220.09,373409.5085,0,15.6
+4553,189793.7468,287348.4504,0,15.6
+4554,190528.5841,295032.7399,0,15.6
+4555,191207.4073,308628.9251,0,15.6
+4556,191804.2271,303969.6139,0,15.6
+4557,192537.7092,305170.6423,0,15.6
+4558,193197.5709,305075.0454,0,15.6
+4559,193515.4062,306265.2016,0,15.6
+4560,27734.49713,306832.1707,0,17.8
+4561,1053228.135,1433197.022,1325692.364,17.8
+4562,920791.0851,1370791.965,472093.9884,17.8
+4563,484858.8563,256873.2672,1240557.012,17.8
+4564,541057.0021,698806.9153,553835.1702,17.8
+4565,504969.3073,704650.7869,516302.8794,17.8
+4566,419205.8268,610893.381,511093.2118,17.8
+4567,816341.0545,591678.1344,517425.2151,17.8
+4568,438638.0952,609856.5422,521879.7558,17.8
+4569,437095.3185,596906.5765,527959.0699,17.8
+4570,436331.4121,595133.5543,531575.8032,17.8
+4571,433441.5146,593882.5842,537083.4833,17.8
+4572,432435.9415,590186.9854,541606.4371,17.8
+4573,431558.7126,589663.8819,546409.8827,17.8
+4574,431422.18,587069.9886,550842.9954,17.8
+4575,430177.3525,585579.855,555812.8195,17.8
+4576,429575.6539,111499.7459,559846.0769,17.8
+4577,429338.6499,111030.4851,564477.8777,17.8
+4578,429253.2801,1195031.346,568960.0214,17.8
+4579,428200.2313,520255.4232,572647.9965,17.8
+4580,428018.3963,599433.3754,577286.787,17.8
+4581,427681.397,585977.3582,581010.6177,17.8
+4582,427329.8768,491011.8353,584782.6811,17.8
+4583,427168.9612,498846.3331,589283.6344,17.8
+4584,426716.8513,627717.9858,592643.787,17.8
+4585,426823.8516,601307.6633,596363.6774,17.8
+4586,426667.3137,550917.38,600115.4669,17.8
+4587,425687.354,582481.524,603783.0479,17.8
+4588,426476.7918,573629.7307,607435.3849,17.8
+4589,426132.5565,567766.0116,610725.1996,17.8
+4590,426075.8056,567260.8959,613987.0134,17.8
+4591,63534.72857,542199.714,0,17.8
+4592,63380.35639,540335.0884,0,17.8
+4593,872008.5988,540272.2026,0,17.8
+4594,476363.5324,614143.2209,411746.5413,17.8
+4595,286347.2975,543297.4022,277173.1307,17.8
+4596,363648.1906,558525.4589,239709.5382,17.8
+4597,452537.2627,565568.9977,1232160.741,17.8
+4598,469354.2258,559319.1384,244112.0933,17.8
+4599,420742.0857,559642.4359,1512846.497,17.8
+4600,423166.2594,557830.3632,401023.3927,17.8
+4601,429139.7133,557590.5727,459144.4299,17.8
+4602,427462.47,556289.7582,721425.3261,17.8
+4603,427053.1293,555125.5275,569158.4535,17.8
+4604,765718.3734,555043.3888,596816.936,17.8
+4605,427224.7917,553679.1321,601990.2073,17.8
+4606,426567.3647,552535.5894,606399.5659,17.8
+4607,427179.1046,552364.7152,610661.0882,17.8
+4608,427463.7267,104732.7132,614740.8774,17.8
+4609,426880.3397,104716.3134,619161.2941,17.8
+4610,427063.6051,1188848.644,622921.3295,17.8
+4611,427878.4054,436166.4172,627094.7279,17.8
+4612,427387.4933,608886.4617,631110.1722,17.8
+4613,427514.5865,516307.3783,634779.5483,17.8
+4614,428187.2169,492034.1059,638404.1757,17.8
+4615,427789.6434,467726.4016,642442.8907,17.8
+4616,428378.8807,599701.6832,645583.7087,17.8
+4617,428158.7353,567535.2352,649535.4313,17.8
+4618,428471.5479,528443.4209,652532.691,17.8
+4619,429107.849,555847.1832,656321.8108,17.8
+4620,428548.1672,542412.2803,659236.9929,20
+4621,2316387.708,2613802.951,2646323.296,20
+4622,2326557.782,2628026.597,2509554.94,20
+4623,275779.5926,1412146.146,1789895.383,20
+4624,1051347.672,805426.7413,1202082.701,20
+4625,864184.6866,1319728.768,1203140.549,20
+4626,869512.157,1179504.331,1167710.411,20
+4627,1011728.821,1137755.752,1202938.683,20
+4628,963706.353,1126648.894,1164757.788,20
+4629,939886.2378,1127300.822,387609.3708,20
+4630,1022069.796,1122958.299,381688.2736,20
+4631,982975.3261,1118310.401,3018151.138,20
+4632,968970.2715,1114722.081,1394210.394,20
+4633,977738.0543,1112153.814,823933.1937,20
+4634,972224.0788,1107094.414,1206307.176,20
+4635,971565.0605,1105950.631,1101543.894,20
+4636,965770.1075,1102434.452,1097579.958,20
+4637,950314.9202,1100153.369,1104271.218,20
+4638,956747.5591,1097704.484,1106292.929,20
+4639,950862.2741,1093707.69,1116688.4,20
+4640,949587.1285,184489.2245,1117118.325,20
+4641,1284863.069,1420894.927,1784674.227,20
+4642,944169.6787,1106562.245,1095080.327,20
+4643,942333.4997,1019347.024,1100904.63,20
+4644,938008.0041,1108946.291,1845682.615,20
+4645,938923.9946,1082300.111,1114939.012,20
+4646,934803.6583,942160.0575,1118929.129,20
+4647,934100.9312,1144694.578,1879652.337,20
+4648,932028.2148,1085261.308,1130581.024,20
+4649,930678.5035,1061611.723,1131627.346,20
+4650,927149.4202,1076195.089,1904363.466,20
+4651,925924.3199,1071433.751,1099397.571,20
+4652,924568.6744,1068368.45,1099497.291,20
+4653,923824.5635,1067264.055,1878130.423,20
+4654,148783.0864,1063637.812,1105606.801,20
+4655,148615.5594,1021019.247,918420.949,20
+4656,960703.0634,1019020.285,1702335.487,20
+4657,1145864.824,1110762.292,1201839.972,20
+4658,731963.8738,1060392.019,1181073.672,20
+4659,1004318.235,1050450.112,1900335.399,20
+4660,908140.3163,1058540.145,1118976.601,20
+4661,904544.7508,1053489.145,305585.7386,20
+4662,871696.7585,1052465.912,976070.2147,20
+4663,958050.1994,1050983.67,187417.7561,20
+4664,922891.535,1049204.465,2423272.089,20
+4665,898119.522,1048358.184,3461936.735,20
+4666,910863.8214,1046437.809,845106.2935,20
+4667,906945.823,1045015.291,1115599.31,20
+4668,900587.5922,1045268.431,1915108.769,20
+4669,896158.8152,1042584.8,1105306.676,20
+4670,896008.1012,1041642.594,1109789.809,20
+4671,894389.111,170751.7003,1881580.358,20
+4672,891558.3525,1381102.883,1118383.257,20
+4673,889789.7215,993999.1885,1122150.056,20
+4674,889412.1556,1009742.663,1903898.404,20
+4675,886662.6031,1052030.64,1129381.234,20
+4676,884162.647,1036357.058,1133044.292,20
+4677,883811.5642,907246.3782,1919579.522,20
+4678,1221978.992,1097700.639,1140229.486,20
+4679,879528.7097,1036996.824,1139932.892,20
+4680,880128.5724,1021113.69,1935082.405,21
+4681,2312058.134,2999426.764,4264786.366,21
+4682,2261061.453,2239364.78,2863209.135,21
+4683,731413.7589,839794.7366,1765929.113,21
+4684,935936.5682,1299688.92,1172357.984,21
+4685,1315400.121,1325030.422,1756777.874,21
+4686,1075476.928,1248676.892,2125691.924,21
+4687,1103554.089,1239298.891,1406731.248,21
+4688,1101452.179,1240669.6,1404930.226,21
+4689,1101992.139,1234040.653,2192122.891,21
+4690,1096727.046,1231128.199,1417284.276,21
+4691,1080468.948,1212498.905,1805983.742,21
+4692,1088056.697,1204429.164,1383772.655,21
+4693,1080743.129,1203217.659,1387934.662,21
+4694,1081124.124,1200250.422,1385762.531,21
+4695,1077740.79,1196215.602,1518890.696,21
+4696,1074686.401,1193134.837,1378848.106,21
+4697,1073865.607,1192984.214,1432575.407,21
+4698,1071026.143,1187855.723,1414406.524,21
+4699,1069256.512,1187012.927,1410366.076,21
+4700,1068922.4,1182627.815,1411301.485,21
+4701,1064763.599,1182025.219,1408285.25,21
+4702,1066188.332,1180047.485,1409216.363,21
+4703,1062066.153,1176675.621,1405953.561,21
+4704,1062110.319,1173453.749,1404990.127,21
+4705,1057922.801,1174049.412,1406460.581,21
+4706,1060930.221,1170331.88,1402198.644,21
+4707,1055569.307,1168253.663,1403204.489,21
+4708,1056509.849,1166980.808,1401921.669,21
+4709,1053804.616,1157966.834,1400393.485,21
+4710,1054256.886,1161121.588,1399413.844,21
+4711,1051455.225,1154458.601,1399409.717,21
+4712,1050453.877,1154282.415,1396924.324,21
+4713,1050487.287,1151589.666,1398392.671,21
+4714,1047816.95,1148171.438,1395564.028,21
+4715,1047375.145,1147641.065,1394956.474,21
+4716,1047891.653,1144765.816,1392994.2,21
+4717,1044231.547,1141622.825,1391009.375,21
+4718,1044746.745,1139763.561,1391712.499,21
+4719,1043052.811,1139596.229,1393118.821,21
+4720,1043122.155,1134173.78,1389151.923,21
+4721,1042029.215,1134843.567,1389659.601,21
+4722,1039755.193,1133605.345,1388722.486,21
+4723,1040447.076,1128091.274,1385207.794,21
+4724,1039148.778,1129819.937,1388119.431,21
+4725,1037518.498,1126239.909,1383760.292,21
+4726,1038560.272,1124811.679,1385722.043,21
+4727,1035574.027,1121837.829,1383379.23,21
+4728,1036727.811,1121365.498,1382367.427,21
+4729,1034622.633,1120585.108,1381518.74,21
+4730,1034900.324,1115889.844,1381143.022,21
+4731,1033126.317,1116212.792,1379062.295,21
+4732,1034170.804,1115138.812,1378722.295,21
+4733,1031533.579,1110739.89,1379045.412,21
+4734,1031953.09,1113238.079,1376902.042,21
+4735,1030767.381,1107387.282,1377039.51,21
+4736,1031412.52,1109091.326,1376469.702,21
+4737,1029085.069,1106184.724,1375442.813,21
+4738,1029727.562,1103583.082,1373889.198,21
+4739,1028928.511,1104632.083,1374083.188,21
+4740,1028177.77,1099680.042,1372488.982,21
+4741,1852707.898,1995423.142,1314170.854,21
+4742,1846368.557,1985412.86,1302832.634,21
+4743,1844796.169,1982525.219,1300090.64,21
+4744,1844600.821,1982556.539,1299793.78,21
+4745,1842023.14,1976874.953,1298920.37,21
+4746,1841092.722,1975420.104,1297569.904,21
+4747,1842069.906,1973116.716,1293005.032,21
+4748,1838615.104,1970004.071,1296434.656,21
+4749,1837897.3,1968862.563,1291798.267,21
+4750,1837999.798,1966316.812,1292053.015,21
+4751,1836826.454,1962870.702,1288949.267,21
+4752,1836263.906,1961498.509,1291999.698,21
+4753,1834159.146,1959386.297,1289580.984,21
+4754,1835680.92,1956873.627,1286715.992,21
+4755,1831918.04,1955522.374,1288352.523,21
+4756,1833781.925,1960802.127,1287245.361,21
+4757,1833117.625,1959142.417,1285032.256,21
+4758,1829997.961,1956236.51,1285987.959,21
+4759,1832292.492,1955319.207,1282792.203,21
+4760,1830176.913,1952193.677,1283822.187,21
+4761,1828693.264,1952454.375,1283052.06,21
+4762,1830207.359,1947857.046,1281681.626,21
+4763,1827419.253,1948805.439,1281273.276,21
+4764,1828412.844,1945501.908,1279858.566,21
+4765,1826732.255,1943794.595,1280137.046,21
+4766,1828087.831,1941458.041,1279218.142,21
+4767,1824688.148,1941831.174,1277951.145,21
+4768,1827730.661,1937607.422,1278436.975,21
+4769,1824131.266,1936966.523,1276230.619,21
+4770,1824680.173,1935494.425,1277395.031,21
+4771,1826040.965,1933109.694,1273702.532,21
+4772,1822669.446,1931147.341,1278186.084,21
+4773,1824790.415,1930522.21,1274960.802,21
+4774,1822853.574,1927006.359,1274129.637,21
+4775,1822148.041,1928021.12,1272989.966,21
+4776,1822894.365,1923199.604,1273888.973,21
+4777,1822437.183,1923778.252,1272402.316,21
+4778,1820185.97,1921752.575,1271366.761,21
+4779,1823526.827,1918712.984,1273032.502,21
+4780,1819553.131,1919389.647,1270122.253,21
+4781,1821083.028,1914098.348,1271800.685,21
+4782,1820230.482,1916802.307,1269749.958,21
+4783,1821058.423,1912256.061,1271044.334,21
+4784,1817918.554,1910820.514,1268887.523,21
+4785,1821213.382,1909825.723,1270740.132,21
+4786,1818161.94,1908101.877,1266501.623,21
+4787,1818414.705,1907490.351,1269721.533,21
+4788,1819507.583,1902315.184,1250633.409,21
+4789,1818616.935,1904714.416,1250386.825,21
+4790,1817263.362,1900643.741,1247380.737,21
+4791,1818981.811,1901014.428,1246688.988,21
+4792,1805181.822,1897963.493,1246990.648,21
+4793,1805276.862,1896625.15,1244458.172,21
+4794,1803360.639,1895042.321,1243545.273,21
+4795,1801057.267,1894610.43,1245153.091,21
+4796,1799529.216,1890603.392,1241338.261,21
+4797,1798765.436,1890615.594,1241478.006,21
+4798,1797022.621,1886221.308,1240865.997,21
+4799,1796292.488,1886970.326,1240739.009,21
+4800,1793751.022,1882182.92,1239237.962,21
+4801,1566265.813,1626786.921,910887.0064,21
+4802,1549644.538,1612987.447,896805.3187,21
+4803,1539788.777,1605811.512,892458.4624,21
+4804,1535153.562,1601281.338,888490.6834,21
+4805,1530627.403,1596009.923,885035.2471,21
+4806,1524106.734,1592241.263,881673.4877,21
+4807,1520693.084,1588588.131,878707.749,21
+4808,1515309.056,1584284.999,875698.8513,21
+4809,1510717.653,1579727.865,874098.0907,21
+4810,1506123.306,1578420.304,870899.7191,21
+4811,1502304.472,1572205.322,868435.3193,21
+4812,1496460.191,1571447.497,866766.754,21
+4813,1493613.882,1566569.18,864166.7819,21
+4814,1488646.217,1564368.5,862736.0517,21
+4815,1485023.115,1560524.123,859982.341,21
+4816,1479714.69,1558206.262,858952.6089,21
+4817,1477610.716,1554828.57,856588.601,21
+4818,1471691.163,1553018.239,855863.9667,21
+4819,1469695.445,1548544.721,854088.2921,21
+4820,1463497.953,1546717.251,853411.1101,21
+4821,1460889.856,1543943.67,851753.521,21
+4822,1456254.67,1541805.247,844421.9848,21
+4823,1452716.867,1537990.877,855849.8505,21
+4824,1448345.795,1536406.679,846348.5287,21
+4825,1445264.977,1533429.624,1581776.486,21
+4826,1439506.943,1530597.002,767257.2783,21
+4827,1433675.848,1528642.394,769945.4748,21
+4828,1432384.338,1525512.892,1625010.192,21
+4829,1426897.457,1522863.871,773163.8902,21
+4830,1424588.34,1520774.895,775582.5331,21
+4831,1420047.376,1518775.003,1640380.697,21
+4832,1416828.089,1515151.398,775698.1176,21
+4833,1412178.657,1513228.067,774636.3587,21
+4834,1409638.525,1510483.716,1645321.166,21
+4835,1405158.486,1508838.278,773574.3662,21
+4836,1401459.354,1506043.571,774327.3605,21
+4837,1398712.421,1502702.591,1651049.277,21
+4838,1394193.567,1501788.129,770458.7565,21
+4839,1390254.379,1498610.841,769460.6625,21
+4840,1387702.738,1496198.894,1651889.117,21
+4841,1382309.094,1494212.64,768790.8459,21
+4842,1381361.253,1491942.764,768227.2973,21
+4843,1375615.71,1489027.27,1655028.492,21
+4844,1372680.138,1486797.811,765995.5162,21
+4845,1368920.9,1485653.292,767405.5925,21
+4846,1366177.582,1480956.03,1656181.118,21
+4847,1360602.649,1482036.525,764579.8919,21
+4848,1358819.797,1478020.414,764094.9868,21
+4849,1353970.318,1474707.472,1653997.542,21
+4850,1350837.849,1474278.367,757676.5517,21
+4851,1346642.75,1471720.341,758070.2799,21
+4852,1342786.83,1469227.842,1652865.609,21
+4853,1340740.045,1467102.824,755723.3736,21
+4854,1725333.389,1465247.923,754008.0874,21
+4855,1332137.592,1462811.868,1653590.545,21
+4856,1328890.094,1460151.937,752312.359,21
+4857,1324846.749,1460072.932,751555.4688,21
+4858,1320009.783,1455424.75,1651755.689,21
+4859,1318958.196,1453986.493,749495.988,21
+4860,1311745.094,1452540.778,748066.3824,21
+4861,1310396.992,1450261.152,1648193.07,21
+4862,1301897.479,1450065.133,739876.1242,21
+4863,1297710.108,1445208.006,735569.3295,21
+4864,1291589.486,1446289.282,1637763.711,21
+4865,1284407.252,1442801.669,727898.3873,21
+4866,1281272.238,1443150.421,723006.7639,21
+4867,1273959.62,1439000.071,1628074.764,21
+4868,1269871.555,1438616.315,710115.8983,21
+4869,1264964.492,1437957.64,706931.897,21
+4870,1258310.555,1433619.187,1611597.061,21
+4871,1254784.007,1435614.217,697826.6625,21
+4872,1247742.777,1430687.738,694151.696,21
+4873,1244627.013,1431411.291,1600310.632,21
+4874,1236749.196,1428119.258,684707.7981,21
+4875,1233521.701,1427440.334,1200613.994,21
+4876,1228611.625,1426055.334,663714.1,21
+4877,1221508.014,1423512.001,665512.4339,21
+4878,1218801.235,1422838.99,657248.6087,21
+4879,1211504.98,1420785.04,833090.5896,21
+4880,1208233.769,1420019.5,1017756.716,21
+4881,1201486.496,1416839.117,632741.9737,21
+4882,1197465.402,1417238.35,633794.3279,21
+4883,1584739.193,1414405.211,658922.8518,21
+4884,1186104.024,1412561.076,725687.6424,21
+4885,1182728.533,1412138.885,770959.9535,21
+4886,1577510.773,1409979.701,927255.1952,21
+4887,1171121.194,1408442.894,599548.6572,21
+4888,1167073.244,1408601.496,600354.9823,21
+4889,1562377.66,1403562.287,788052.4657,21
+4890,1156694.441,1405414.753,756300.0492,21
+4891,1150789.895,1402223.171,658682.6471,21
+4892,1548464.741,1401268.814,686490.5525,21
+4893,1140679.261,1399566.21,671645.3929,21
+4894,1136657.568,1398639.893,663879.6765,21
+4895,1532835.443,1395982.75,660273.2556,21
+4896,1126381.285,1396010.53,655302.5406,21
+4897,1120634.889,1393896.816,651510.1214,21
+4898,1518760.373,1391533.389,647692.5172,21
+4899,1111195.968,1391717.272,644475.6785,21
+4900,1106087.252,1389116.624,640168.9773,21
+4901,1504677.824,1387964.512,636996.0438,21
+4902,1096760.354,1386251.559,633925.1259,21
+4903,1091439.351,1386193.406,630106.4598,21
+4904,1490433.425,1383222.018,626687.7014,21
+4905,1082450.314,1381661.979,623329.1335,21
+4906,1077332.612,1381417.006,619701.8524,21
+4907,1475535.475,1379055.46,616100.3669,21
+4908,1067555.484,1378295.196,613195.8143,21
+4909,1062467.206,1376315.398,609114.7162,21
+4910,1462809.73,1375478.14,607076.4226,21
+4911,1052723.749,1374038.477,603622.6182,21
+4912,1049000.615,1372471.838,601289.2679,21
+4913,1446900.815,1371505.819,598376.5806,21
+4914,1039739.708,1369332.837,595997.728,21
+4915,1033679.075,1368531.626,593536.769,21
+4916,1433762.012,1366270.038,590714.7006,21
+4917,1025240.348,1366804.807,588318.4643,21
+4918,1020098.601,1363447.835,585269.3583,21
+4919,1420246.103,1362706.327,583372.8465,21
+4920,1010584.535,1362725.971,580901.9028,21
+4921,1009249.826,1362412.011,585968.9739,21
+4922,1409375.175,1363372.871,584428.1961,21
+4923,1001040.791,1362128.399,582268.2788,21
+4924,997403.3978,1363073.129,1261232.886,21
+4925,1399038.794,1362211.269,475739.3523,21
+4926,990041.0404,1361804.643,489351.6987,21
+4927,988025.8589,1361393.352,1298870.086,21
+4928,1388033.995,1360876.281,476301.8756,21
+4929,979709.9763,1361055.134,482268.0914,21
+4930,976521.5958,1360124.352,1312760.212,21
+4931,1378310.246,1360233.102,476490.0982,21
+4932,969929.0423,1359303.358,482364.2142,21
+4933,967758.9143,1360016.856,1321965.026,21
+4934,1370562.336,1358485.142,475086.6524,21
+4935,964015.4558,1358952.099,481390.8753,21
+4936,961821.061,1358573.612,1328404.627,21
+4937,1365034.311,1356979.538,473935.6218,21
+4938,958154.9327,1358406.928,482275.1477,21
+4939,956022.2592,1356106.352,1334161.707,21
+4940,1359689.66,1357462.286,473341.4215,21
+4941,952282.0664,1356246.761,482243.4947,21
+4942,950481.5062,1356421.713,1339278.596,21
+4943,1353947.136,1356494.068,471778.5069,21
+4944,946777.7153,1354506.472,482700.4442,21
+4945,944831.0442,1355510.969,1342562.833,21
+4946,1348511.489,1354008.891,471142.4165,21
+4947,941427.5016,1355087.171,482123.7339,21
+4948,938750.9897,1353628.286,1345982.376,21
+4949,1343988.362,1353695.139,469492.8565,21
+4950,935221.4562,1353619.61,481643.2745,21
+4951,931396.3941,1352730.577,1348405.457,21
+4952,1336259.839,1353172.02,467657.794,21
+4953,927794.2025,1351416.449,481534.9311,21
+4954,926010.7601,1352726.243,1350923.838,21
+4955,1330737.928,1352341.572,465576.1218,21
+4956,922659.5763,1352253.954,481099.8407,21
+4957,920716.4271,1352412.025,1353016.284,21
+4958,1325388.286,1351387.081,463253.2049,21
+4959,917608.6125,1351277.504,480770.5264,21
+4960,915308.2115,1351673.656,1353994.897,21
+4961,1320633.638,1350428.885,461663.2166,21
+4962,912078.8359,1350038.698,480264.2553,21
+4963,910005.4564,1349875.592,1354779.553,21
+4964,1315592.161,1347967.042,459402.8399,21
+4965,906460.6557,1349612.19,479766.4994,21
+4966,905592.7371,1346995.841,1355251.969,21
+4967,903543.7749,1348358.149,457676.1049,21
+4968,901791.5999,1347366.29,478607.0085,21
+4969,900114.9678,1346199.952,1355734.158,21
+4970,898454.7806,1346917.77,455532.3531,21
+4971,896292.0169,1346778.514,477737.5567,21
+4972,894713.3732,1346001.51,1355643.219,21
+4973,892960.5998,1346318.854,453114.9742,21
+4974,891027.1851,1345440.535,477458.8389,21
+4975,888807.539,1345276.697,1355060.92,21
+4976,887644.0851,1345321.071,451217.5479,21
+4977,885106.4375,1344074.397,476467.9409,21
+4978,883824.8049,1344143.304,1354889.058,21
+4979,881517.7041,1344001.895,448972.5007,21
+4980,879731.1739,1343729.037,475658.2353,21
+4981,874121.7642,1341857.351,1344627.407,21
+4982,872528.5644,1338905.435,437477.6178,21
+4983,872036.1566,1337480.49,465018.2766,21
+4984,870409.6722,1336384.964,1342639.254,21
+4985,870111.1458,1334835.532,433896.5467,21
+4986,868662.8574,1332658.419,463688.1321,21
+4987,867820.4647,1332768.052,1340681.072,21
+4988,866936.2836,1330386.919,430638.3015,21
+4989,865669.7376,1328985.751,462285.2598,21
+4990,864775.3242,1328389.652,1338450.475,21
+4991,863436.7982,1321377.922,427405.3787,21
+4992,862898.2777,1320841.811,460519.6008,21
+4993,861402.96,1317844.825,1336404.738,21
+4994,860448.3881,1315435.225,424420.7094,21
+4995,859475.1052,1315309.814,458791.321,21
+4996,858329.3479,1313982.167,1334145.449,21
+4997,857186.3797,1310063.764,421226.4228,21
+4998,855894.2899,1311412.098,457428.0337,21
+4999,855056.8388,1309566.37,891163.684,21
+5000,854015.3634,1306791.332,410447.8301,21
+5001,852712.3885,1306256.372,413391.5916,21
+5002,851584.2987,1304028.998,675340.6039,21
+5003,850154.7543,1302173.987,620124.179,21
+5004,849550.5533,1302205.068,552384.7847,21
+5005,848135.9626,1298348.786,573172.284,21
+5006,846929.1364,1297404.222,559494.4737,21
+5007,845782.5731,1294631.236,553016.6496,21
+5008,844306.6001,1293441.754,548079.8365,21
+5009,843304.0232,1291180.828,543545.2328,21
+5010,842316.302,1290519.648,539774.2824,21
+5011,840536.6126,1288776.067,535869.6138,21
+5012,839857.0787,1286838.695,532243.0846,21
+5013,838559.9396,1285320.551,528334.1427,21
+5014,837230.2031,1284520.151,525051.7522,21
+5015,836254.5234,1283122.583,521253.5132,21
+5016,834823.0665,1279444.141,517767.4967,21
+5017,834087.9208,1280114.68,514704.9902,21
+5018,832648.5133,1277912.008,511837.5877,21
+5019,831539.1488,1276544.14,508438.4954,21
+5020,830409.1844,1275325.782,505877.2314,21
+5021,829252.4147,1273000.568,503126.1029,21
+5022,827809.0443,1273133.105,500353.075,21
+5023,827183.803,1269360.344,497325.5656,21
+5024,825701.0791,1269092.474,494844.5024,21
+5025,824898.3426,1268150.603,492062.3536,21
+5026,823418.1328,1265436.086,489440.0506,21
+5027,822365.2387,1265133.852,487135.5014,21
+5028,821495.7786,1263284.824,484642.3994,21
+5029,820088.6136,1260771.548,481860.7415,21
+5030,819247.5682,1260257.719,479593.9648,21
+5031,817984.5161,1258755.94,477491.931,21
+5032,816982.1684,1255775.527,474822.8147,21
+5033,815706.5277,1256957.989,472802.0144,21
+5034,815009.0648,1252786.928,470584.014,21
+5035,813479.4371,1252648.664,467807.3776,21
+5036,812820.1558,1251461.86,466000.227,21
+5037,811436.7563,1248800.428,458063.2529,21
+5038,810841.3513,1247595.057,457165.7056,21
+5039,809208.1817,1245842.545,453922.5879,21
+5040,808685.3996,1242292.324,451156.0415,21
+5041,832351.0178,1321086.754,481578.2146,21
+5042,832974.3999,1319010.205,479879.3661,21
+5043,832748.7925,1320193.721,476406.3954,21
+5044,832489.1586,1319402.548,476840.3611,21
+5045,833427.8156,1320042.024,472586.6727,21
+5046,832580.4277,1317486.228,470858.8915,21
+5047,833439.1406,1318643.606,468478.1423,21
+5048,833032.3431,1317546.925,465076.6317,21
+5049,833240.2493,1318389.402,465433.6195,21
+5050,833710.905,1315786.767,460973.4643,21
+5051,833246.8378,1317913.721,459635.4194,21
+5052,833482.3539,1315801.715,456854.1053,21
+5053,833951.1666,1316021.51,454004.7946,21
+5054,833568.7836,1315694.575,453417.9901,21
+5055,833946.1974,1314028.997,449887.7157,21
+5056,834373.3112,1315279.199,447880.637,21
+5057,833905.1217,1312886.239,445692.2187,21
+5058,834243.2699,1314242.891,441951.1681,21
+5059,834348.0123,1312104.922,442095.1228,21
+5060,836681.222,1313154.448,438066.7403,21
+5061,836791.7297,1311792.402,436600.8754,21
+5062,836660.2631,1312033.537,433983.1088,21
+5063,836934.5131,1310140.855,430348.2226,21
+5064,836743.8752,1311095.427,430743.2814,21
+5065,836639.5976,1309576.061,426297.6036,21
+5066,836786.4554,1309194.648,424639.6563,21
+5067,836704.2861,1308867.12,422414.2774,21
+5068,836271.0509,1307714.232,418746.4946,21
+5069,836609.6681,1308035.298,418674.0071,21
+5070,836089.1486,1307881.512,414676.5831,21
+5071,836468.1487,1305607.001,413657.6471,21
+5072,835946.8513,1307593.934,411537.6947,21
+5073,836449.8545,1304731.981,408470.2897,21
+5074,836743.9916,1306235.055,409455.2908,21
+5075,837000.2497,1304239.367,406034.7565,21
+5076,836752.1308,1305130.748,404904.9617,21
+5077,837270.5222,1303977.178,403294.9486,21
+5078,836702.8532,1304322.038,400547.0787,21
+5079,837235.7278,1303398.936,401436.7408,21
+5080,836794.4035,1304123.378,398070.2152,21
+5081,836840.4356,1303591.091,397362.4567,21
+5082,836592.4183,1303408.244,395551.9215,21
+5083,836580.8884,1303072.632,393173.2986,21
+5084,837133.8728,1301942.7,393966.6297,21
+5085,836287.1146,1303097.513,391054.9231,21
+5086,836940.9715,1301361.38,390182.7695,21
+5087,836811.3674,1301073.379,388355.4592,21
+5088,836793.9235,1301628.181,386660.7622,21
+5089,836925.8362,1299812.161,386656.6365,21
+5090,836733.2162,1300933.43,384556.6429,21
+5091,837194.0166,1298410.476,383338.8521,21
+5092,836579.4322,1297810.253,382500.5558,21
+5093,837417.9339,1297997.462,379957.1731,21
+5094,836881.5148,1296935.184,380839.6751,21
+5095,837698.6736,1297142.889,378339.9189,21
+5096,837106.263,1296344.867,377353.5975,21
+5097,837350.4847,1296202.533,376636.9971,21
+5098,837678.8664,1295513.049,374604.5202,21
+5099,837473.1098,1295497.816,375236.2958,21
+5100,837947.3918,1294004.305,372753.5653,21
+5101,812828.6237,1225105.572,340684.7173,21
+5102,806374.7736,1224629.393,337669.4024,21
+5103,807885.3554,1224231.841,334536.4465,21
+5104,806842.2171,1223970.408,334365.476,21
+5105,805786.4439,1224296.83,330796.6197,21
+5106,805118.7459,1223484.288,329040.4975,21
+5107,804411.5434,1223476.628,328282.8761,21
+5108,803707.2023,1223770.322,325141.6919,21
+5109,802638.9988,1223307.943,325089.8098,21
+5110,801997.8726,1223639.32,321869.8752,21
+5111,801226.0133,1222717.092,319953.8901,21
+5112,801174.4371,1223468.752,317920.1064,21
+5113,799467.7091,1222701.942,315271.111,21
+5114,799437.3252,1223182.255,314759.0231,21
+5115,798460.1351,1222526.248,311464.4409,21
+5116,797861.7181,1223214.883,309855.7776,21
+5117,797407.2772,1222293.83,307853.7614,21
+5118,796629.4378,1222667.758,305047.5753,21
+5119,795434.2701,1222456.706,304696.3632,21
+5120,795666.1001,1222758.781,301590.7754,21
+5121,794315.6713,1222300.08,299746.3482,21
+5122,794059.3417,1222059.841,297981.2734,21
+5123,793015.8232,1222848.01,295200.7119,21
+5124,792512.5392,1221570.369,294771.8627,21
+5125,792316.0075,1223027.648,291600.6116,21
+5126,790534.5897,1221767.688,290375.0087,21
+5127,790704.3431,1222217.839,287652.4802,21
+5128,789294.2775,1221961.191,285853.3579,21
+5129,788655.9649,1222177.477,284885.285,21
+5130,787472.7537,1221776.488,282178.5465,21
+5131,787064.7758,1222396.173,280060.3533,21
+5132,786307.7288,1221431.983,277774.7586,21
+5133,785097.6301,1221991.683,274684.7158,21
+5134,784521.1745,1221916.666,273872.5286,21
+5135,783774.6546,1221723.981,270682.1645,21
+5136,782735.628,1221618.285,268073.5785,21
+5137,781974.6171,1221579.886,265863.2124,21
+5138,781177.6191,1221516.839,262867.0497,21
+5139,780412.3627,1221518.655,261633.0582,21
+5140,779410.5705,1221395.837,258461.824,21
+5141,778423.4728,1221754.277,256264.0441,21
+5142,777846.4318,1220645.274,253909.7865,21
+5143,777041.4139,1222460.043,250784.8209,21
+5144,775651.3239,1222299.787,249778.3058,21
+5145,775286.4054,1221893.785,246253.4942,21
+5146,774054.5564,1222224.614,244019.6981,21
+5147,773330.3348,1221466.877,241849.498,21
+5148,772263.6969,1222378.114,238186.6747,21
+5149,771729.7756,1221777.766,237413.1851,21
+5150,770295.3133,1222220.193,234150.8686,21
+5151,769510.3664,1221491.584,231446.778,21
+5152,768874.1628,1222114.979,229283.0489,21
+5153,767578.1292,1221614.986,226059.2654,21
+5154,766631.7786,1221630.616,224551.694,21
+5155,765794.9033,1221826.271,221425.1323,21
+5156,764810.2286,1221660.494,218971.3334,21
+5157,763720.5667,1221484.008,216478.6806,21
+5158,762936.4681,1221692.377,213073.4102,21
+5159,761598.926,1221467.398,212201.8955,21
+5160,760940.1605,1221632.944,208372.2242,21
+5161,765883.027,1225364.22,213739.5226,21
+5162,766580.7129,1226736.125,212017.6192,21
+5163,766551.0535,1226453.668,209866.3269,21
+5164,766476.0809,1226531.884,209555.8172,21
+5165,766848.2514,1226478.914,207256.5323,21
+5166,767085.5529,1226605.999,205630.9503,21
+5167,767071.9745,1226817.081,204494.4272,21
+5168,766820.901,1226517.194,201937.161,21
+5169,767671.5343,1227090.346,201849.9306,21
+5170,767284.9222,1226494.128,199503.1356,21
+5171,767736.2268,1227079.019,198300.212,21
+5172,767673.433,1227105.002,196574.9807,21
+5173,767831.2931,1226676.081,194784.1875,21
+5174,768122.3885,1227191.763,194196.7681,21
+5175,767839.7655,1227157.225,192081.2518,21
+5176,768177.2705,1227234.89,190771.6075,21
+5177,768448.0354,1227290.807,189099.4429,21
+5178,768454.3192,1227310.617,187686.0188,21
+5179,768422.264,1227231.112,186838.2938,21
+5180,768903.8731,1227984.82,184901.8846,21
+5181,768484.211,1226746.633,183577.0006,21
+5182,769101.1752,1228093.369,182086.5859,21
+5183,768942.6273,1227400.565,180222.9645,21
+5184,769286.0348,1227963.742,180113.0622,21
+5185,769205.0295,1227266.43,177660.273,21
+5186,769560.6851,1228057.856,176511.1745,21
+5187,769412.1788,1227986.105,175098.07,21
+5188,769749.7295,1227434.365,173444.114,21
+5189,769911.1899,1228326.756,172775.3047,21
+5190,769916.6752,1228181.23,171057.7335,21
+5191,769944.322,1228034.2,170040.328,21
+5192,770651.4239,1228145.677,169582.9773,21
+5193,770808.3633,1228467.865,168272.9001,21
+5194,770944.8136,1227831.088,169047.0828,21
+5195,771093.3534,1229003.462,167212.5938,21
+5196,771484.118,1227475.174,167338.1723,21
+5197,771974.9692,1229217.389,166353.3061,21
+5198,771828.8788,1227897.598,165680.6313,21
+5199,772510.0144,1228643.207,166242.4461,21
+5200,772937.1153,1228962.134,165055.9808,21
+5201,772621.1422,1227026.111,164717.2791,21
+5202,773650.1262,1227766.739,164491.4084,21
+5203,773630.6253,1227544.463,163564.4717,21
+5204,774029.9251,1227567.999,164331.8862,21
+5205,775230.108,1227890.324,163370.6545,21
+5206,775934.6275,1227281.915,163248.7422,21
+5207,776293.3017,1227789.947,162951.5919,21
+5208,776543.6333,1227910.385,162324.0185,21
+5209,777314.8842,1227931.979,163215.1878,21
+5210,777338.3513,1227399.074,162143.3362,21
+5211,778364.9178,1228189.943,162416.2978,21
+5212,778444.9886,1227811.8,162050.8765,21
+5213,779209.024,1227953.119,161855.9441,21
+5214,779479.6625,1227978.173,162499.0199,21
+5215,780211.5427,1228272.991,161706.4623,21
+5216,780568.1779,1227448.412,162115.4358,21
+5217,781599.0395,1228333.582,168321.1065,21
+5218,781542.9406,1228114.514,157855.203,21
+5219,782344.0318,1228375.66,164695.6401,21
+5220,783220.6338,1227858.734,161690.235,21
+5221,777667.4459,1223683.765,156851.7261,21
+5222,778532.2336,1222804.873,157034.1115,21
+5223,778641.8803,1223200.848,157194.0619,21
+5224,779038.8484,1222475.732,158882.2782,21
+5225,779443.0684,1221659.376,158323.4348,21
+5226,779856.9889,1221693.089,165910.5073,21
+5227,779952.1874,1221597.668,155628.1796,21
+5228,780811.7043,1220890.618,163114.0435,21
+5229,781227.0729,1221232.708,160934.3702,21
+5230,781349.5617,1219721.955,162090.078,21
+5231,781980.8568,1220127.491,162731.048,21
+5232,782213.4583,1219360.386,163321.2723,21
+5233,782969.2779,1219853.464,164979.4009,21
+5234,782967.9347,1218038.898,165241.4575,21
+5235,783832.6105,1219259.161,166107.4801,21
+5236,784157.0536,1217503.181,166853.9238,21
+5237,784628.4376,1218447.274,168545.9699,21
+5238,784961.659,1216987.37,169291.9193,21
+5239,785688.0746,1217365.344,172013.6518,21
+5240,785994.4403,1216721.29,173196.5212,21
+5241,786430.7617,1215809.552,175599.5655,21
+5242,787071.6386,1215959.958,176209.4639,21
+5243,788913.8702,1217353.198,177598.9834,21
+5244,789708.4709,1215792.464,178449.4473,21
+5245,790528.0641,1216488.059,181087.1249,21
+5246,790730.1874,1215727.147,181523.4568,21
+5247,791707.0554,1215244.608,183277.4542,21
+5248,792605.4388,1214662.804,184298.2108,21
+5249,792740.8195,1214937.741,186595.4787,21
+5250,793636.966,1213783.039,187428.7689,21
+5251,794536.4031,1212781.963,189105.0478,21
+5252,794670.4366,1211541.219,189799.2498,21
+5253,795264.6698,1211642.24,192021.5522,21
+5254,796008.5393,1211520.654,192392.067,21
+5255,796251.2701,1210142.6,248432.1918,21
+5256,796931.8536,1210532.884,126457.9897,21
+5257,797830.5018,1209941.501,128776.9866,21
+5258,797869.6187,1209200.023,233188.0513,21
+5259,798722.6808,1208614.884,213448.5334,21
+5260,799240.0568,1208791.842,196262.2898,21
+5261,799706.5536,1208137.394,204282.9468,21
+5262,800140.844,1207677.226,202607.5714,21
+5263,801249.111,1206999.303,203428.6701,21
+5264,801073.5122,1206783.589,204099.3604,21
+5265,801739.5027,1205981.384,205389.1653,21
+5266,803040.9354,1205614.723,693552.7834,21
+5267,802865.8311,1205308.949,139076.8229,21
+5268,803349.701,1204617.374,181022.4671,21
+5269,804202.73,1204159.491,738064.7264,21
+5270,804874.6106,1203706.148,144851.3688,21
+5271,805091.1372,1202789.939,336118.3272,21
+5272,805816.4172,1202968.264,146235.609,21
+5273,806420.651,1201797.745,150010.4548,21
+5274,806701.1574,1201179.102,153802.4886,21
+5275,807375.3234,1200797.949,260775.5901,21
+5276,808452.3642,1200257.209,277356.3096,21
+5277,808000.1951,1199550.528,152138.6833,21
+5278,809373.8901,1199082.513,154662.4967,21
+5279,809765.7749,1197290.496,290008.3765,21
+5280,809882.4181,1195979.69,276066.6764,21
+5281,813510.4995,1196566.967,296308.2352,21
+5282,814029.4213,1196852.946,156359.0645,21
+5283,814804.1415,1195905.348,159268.4603,21
+5284,817035.306,1196138.658,295818.7448,21
+5285,818106.9102,1196043.685,281239.0451,21
+5286,819777.2529,1195111.196,245107.7097,21
+5287,821285.7705,1196214.728,258013.467,21
+5288,822521.0801,1194948.72,254969.9266,21
+5289,824430.1676,1194924.493,254585.369,21
+5290,825113.7529,1194696.688,765432.8847,21
+5291,827240.8551,1194525.406,167696.0212,21
+5292,828037.084,1194378.423,217232.1318,21
+5293,829869.3447,1194022.813,810295.394,21
+5294,831189.9761,1194128.356,173712.792,21
+5295,833993.1379,1193355.469,411182.7555,21
+5296,835747.3502,1193252.26,174671.6697,21
+5297,837541.3675,1193430.007,178996.4744,21
+5298,838702.1358,1192584.169,221279.5335,21
+5299,840745.5934,1192495.721,244601.5618,21
+5300,841713.7638,1192403.363,363143.9603,21
+5301,843338.1055,1191963.193,282063.4616,21
+5302,844898.429,1192195.994,291183.9167,21
+5303,846474.1769,1191116.074,280021.5847,21
+5304,848046.6132,1191407.301,299898.16,21
+5305,849424.8711,1191012.514,285215.9546,21
+5306,851005.1097,1190747.099,194854.9969,21
+5307,851962.5527,1191431.06,364779.7197,21
+5308,854110.924,1191264.022,322160.6053,21
+5309,855515.1743,1190961.885,276782.5691,21
+5310,856466.5828,1190651.106,293968.3135,21
+5311,858296.3399,1190147.938,290435.5462,21
+5312,858909.3005,1190261.714,289858.5821,21
+5313,860570.4234,1190167.159,289966.6457,21
+5314,861363.1431,1188133.398,817561.03,21
+5315,862631.8876,1188608.022,193833.7961,21
+5316,863859.6598,1188072.864,245352.4338,21
+5317,865289.5118,1187738.838,863251.6865,21
+5318,866060.604,1187727.572,199729.748,21
+5319,867165.1037,1186932.842,464848.8785,21
+5320,868764.7942,1187294.721,200655.1365,21
+5321,869051.0763,1186479.355,204584.6592,21
+5322,870960.5074,1186359.815,251146.3468,21
+5323,871281.3334,1186160.649,276291.7204,21
+5324,872708.2805,1185703.423,405980.4972,21
+5325,873401.6417,1185571.119,388249.2462,21
+5326,874935.0794,1185343.124,205434.1667,21
+5327,875687.1604,1184432.754,208829.7126,21
+5328,881488.7533,1185526.34,378640.2626,21
+5329,883527.5051,1183379.621,358822.1477,21
+5330,884422.1834,1184888.871,312819.0326,21
+5331,886174.8462,1183475.481,328903.0524,21
+5332,887230.6198,1183369.418,323053.9772,21
+5333,887997.8183,1183509.726,322526.8482,21
+5334,889599.1381,1182879.392,322069.099,21
+5335,890250.8418,1182323.729,322148.643,21
+5336,892065.1908,1182620.69,322539.4225,21
+5337,892136.736,1182922.044,322079.9707,21
+5338,894085.6229,1182321.604,322799.7931,21
+5339,894612.1935,1182893.203,322867.339,21
+5340,896216.8357,1181582.764,323442.9862,21
+5341,953640.342,1252028.24,376396.9103,21
+5342,957946.6559,1255575.521,369531.5766,21
+5343,962818.2552,1257438.983,395562.9995,21
+5344,976179.1199,1258354.462,381252.782,21
+5345,969394.6213,1259484.476,280446.0855,21
+5346,972599.5493,1259805.883,470804.508,21
+5347,974339.5539,1321153.42,442136.8951,21
+5348,975898.957,1331298.419,373625.0041,21
+5349,976693.4217,1315875.983,399426.0332,21
+5350,978254.3781,1324676.792,397146.8301,21
+5351,979225.4356,1328160.949,397581.378,21
+5352,980599.768,1328941.061,399538.8309,21
+5353,981808.7943,1332060.865,401721.4567,21
+5354,982828.094,1331292.939,953618.1592,21
+5355,983716.095,1334599.556,304318.1002,21
+5356,985248.5803,1333941.546,355665.1075,21
+5357,985947.7576,1337651.325,1008046.118,21
+5358,987038.3608,1336675.525,316148.3456,21
+5359,988464.2768,1340225.261,620297.7247,21
+5360,1007698.899,1338528.146,318553.898,21
+5361,1009515.932,1342791.722,325229.2789,21
+5362,1007436.769,1340989.867,338787.3355,21
+5363,1011241.652,1344451.924,464764.0915,21
+5364,1013994.177,1344155.116,470692.8109,21
+5365,1013912.418,1345010.034,453675.7663,21
+5366,1017324.507,1346779.879,332261.299,21
+5367,1018734.54,1347148.731,336957.6673,21
+5368,1018974.131,1348288.778,548795.6437,21
+5369,1023004.925,1348988.482,435420.8767,21
+5370,1022065.736,1350589.752,471077.4963,21
+5371,1024638.862,1350029.525,465437.9109,21
+5372,1025989.982,1352186.047,463746.0807,21
+5373,1027856.045,1352494.858,463948.8601,21
+5374,1028863.489,1352325.542,464539.8261,21
+5375,1030372.812,1354037.185,464229.5005,21
+5376,1031751.951,1354951.152,466327.0332,21
+5377,1031620.598,1354993.027,466645.4941,21
+5378,1035028.773,1356759.843,472423.2366,21
+5379,1035529.191,1355895.002,406047.8096,21
+5380,1036041.134,1358100.062,583749.9281,21
+5381,1038258.021,1358674.479,585022.9395,21
+5382,1038008.051,1358524.231,364206.8671,21
+5383,1041811.828,1360217.814,369841.2943,21
+5384,1039843.094,1360550.075,558888.6164,21
+5385,1042772.558,1360934.801,524787.316,21
+5386,1044245.093,1361968.087,590514.0413,21
+5387,1043774.339,1361213.103,371749.9173,21
+5388,1046273.469,1363368.141,378167.2088,21
+5389,1045594.735,1363313.005,565402.7972,21
+5390,1047941.203,1363919.349,537510.0984,21
+5391,1048860.854,1364542.622,480230.9813,21
+5392,1050083.819,1365887.707,501636.6216,21
+5393,1049693.155,1365088.119,497192.6288,21
+5394,1052313.711,1366573.128,497385.1166,21
+5395,1052069.37,1367293.867,498019.4213,21
+5396,1054260.025,1366409.032,499570.0722,21
+5397,1054075.493,1368219.059,1091718.239,21
+5398,1055226.597,1369139.44,394710.465,21
+5399,1056284.397,1367609.305,439411.0948,21
+5400,1057119.762,1370773.222,1145374.197,21
+5401,1118363.507,1431507.763,429554.6715,21
+5402,1124406.483,1438148.938,467805.9007,21
+5403,1125345.761,1439550.947,1201708.066,21
+5404,1129143.346,1440818.496,443106.5541,21
+5405,1129153.571,1444197.508,481048.1749,21
+5406,1131279.005,1442905.029,1230142.681,21
+5407,1133795.158,1446742.348,456163.1113,21
+5408,1134440.134,1446657.346,843059.7379,21
+5409,1136738.45,1447937.126,459673.6404,21
+5410,1136748.951,1449883.532,471309.9349,21
+5411,1139217.032,1451433.457,691083.7969,21
+5412,1140145.412,1452120.767,470060.722,21
+5413,1142861.082,1453354.714,474363.4786,21
+5414,1142537.197,1453380.929,684615.2969,21
+5415,1144066.66,1456467.141,654973.9725,21
+5416,1146426.262,1456504.088,593887.2707,21
+5417,1146673.326,1459237.016,615840.7507,21
+5418,1148068.645,1459362.535,608210.3777,21
+5419,1150362.367,1461667.627,607759.6137,21
+5420,1150062.119,1461411.547,608369.4045,21
+5421,1152548.702,1463119.903,608846.4397,21
+5422,1152226.68,1464887.258,606753.0166,21
+5423,1154757.641,1464495.967,614864.3775,21
+5424,1154822.591,1466695.767,611550.8028,21
+5425,1156698.145,1467515.019,614156.8428,21
+5426,1156507.613,1468138.407,615977.5747,21
+5427,1159474.104,1469334.77,1250254.705,21
+5428,1159743.014,1470408.361,507646.3024,21
+5429,1160329.225,1472184.116,544068.487,21
+5430,1160872.989,1471735.803,1305972.048,21
+5431,1163526.715,1472616.94,522024.7255,21
+5432,1163519.288,1475037.215,548637.1181,21
+5433,1164036.968,1474587.669,1338344.536,21
+5434,1166728.885,1476007.913,537158.456,21
+5435,1165708.933,1477185.426,561562.3382,21
+5436,1167893.953,1476960.445,1366945.324,21
+5437,1168653.525,1478566.931,549962.3565,21
+5438,1169158.987,1480627.753,573936.1771,21
+5439,1169649.295,1479994.481,1390736.099,21
+5440,1172019.572,1481510.912,563565.3148,21
+5441,1171677.753,1481340.53,584662.5267,21
+5442,1173290.494,1483270.141,1414097.807,21
+5443,1172854.858,1483132.46,575525.3193,21
+5444,1175490.066,1485303.218,595910.7214,21
+5445,1175399.085,1484942.448,1434937.908,21
+5446,1175655.716,1485632.605,587593.6542,21
+5447,1177498.259,1488025.953,605938.8049,21
+5448,1178377.488,1486818.479,1455255.334,21
+5449,1178607.372,1489171.121,597686.2935,21
+5450,1178863.057,1489318.533,616618.5132,21
+5451,1181202.592,1489347.595,1473284.42,21
+5452,1181549.658,1491588.274,608707.49,21
+5453,1181183.68,1491489.879,625612.3757,21
+5454,1182076.746,1490902.486,1490121.662,21
+5455,1184228.335,1495192.959,619491.9459,21
+5456,1184255.662,1492819.565,634035.5882,21
+5457,1184664.593,1494480.033,1506264.729,21
+5458,1186128.458,1495244.379,629577.1382,21
+5459,1187012.673,1496284.173,642214.878,21
+5460,1186570.755,1496280.846,1521486.732,21
+5461,1187591.605,1497098.077,640197.9977,21
+5462,1189817.644,1495821.26,651375.3028,21
+5463,1190472.646,1496783.321,1539516.069,21
+5464,1190571.347,1494835.339,652391.2444,21
+5465,1192015.242,1495435.115,660683.1705,21
+5466,1192352.915,1494498.522,1556182.194,21
+5467,1192026.957,1493940.615,664068.2845,21
+5468,1194508.487,1492942.948,670591.6918,21
+5469,1194439.868,1493685.54,1571621.548,21
+5470,1195577.023,1491841.62,676501.1693,21
+5471,1194910.384,1492190.119,680389.9024,21
+5472,1196390.454,1490823.598,1587024.921,21
+5473,1198120.247,1491110.532,687937.6543,21
+5474,1196946.944,1491019.851,692514.126,21
+5475,1198917.718,1488423.569,1600420.828,21
+5476,1199597.59,1489879.818,700064.1193,21
+5477,1199273.037,1488303.45,703549.2227,21
+5478,1200822.983,1488041.639,1614713.967,21
+5479,1201385.42,1486884.185,710931.7237,21
+5480,1201473.219,1487759.124,714229.9174,21
+5481,1202583.838,1486011.911,1628251.793,21
+5482,1203381.735,1485020.219,721258.2416,21
+5483,1203817.818,1485876.162,725652.5223,21
+5484,1205232.529,1486074.801,1640505.512,21
+5485,1204380.489,1484089.052,732150.9648,21
+5486,1206077.657,1484829.423,736106.4628,21
+5487,1206052.497,1483153.187,1652159.607,21
+5488,1207653.002,1482750.671,743333.492,21
+5489,1206602.547,1482025.328,746620.215,21
+5490,1212016.227,1481101.659,1663637.075,21
+5491,1210361.25,1481093.04,752797.8478,21
+5492,1211935.628,1478576.214,756845.7055,21
+5493,1213009.771,1479415.542,1674957.7,21
+5494,1212639.781,1476918.921,763278.3704,21
+5495,1213673.373,1478194.675,766918.6047,21
+5496,1215146.079,1476439.331,1685150.74,21
+5497,1214142.769,1475475.1,773386.4857,21
+5498,1216027.361,1475638.032,776614.1981,21
+5499,1216537.337,1474421.733,1695568.997,21
+5500,1216369.285,1473884.844,783424.1655,21
+5501,1217489.867,1473815.119,785970.6105,21
+5502,1218107.1,1471343.093,1706332.378,21
+5503,1218750.478,1472618.128,791203.6372,21
+5504,1218872.606,1470304.699,797571.9626,21
+5505,1219959.683,1471117.521,1714173.317,21
+5506,1220701.089,1468867.953,802755.9095,21
+5507,1220336.382,1468480.022,805215.4838,21
+5508,1222085.039,1469552.429,1725421.272,21
+5509,1222527.102,1465653.116,810744.0825,21
+5510,1222108.756,1467530.805,815093.5733,21
+5511,1223333.308,1465987.798,1734256.13,21
+5512,1224337.296,1464873.884,820424.317,21
+5513,1224528.579,1463923.755,824797.2488,21
+5514,1223980.07,1463030.992,1742384.243,21
+5515,1226234.737,1462986.553,830201.4871,21
+5516,1225976.851,1461118.887,833102.9302,21
+5517,1226477.96,1461808.028,1752090.573,21
+5518,1227720.201,1459229.16,838241.8272,21
+5519,1227367.427,1458872.246,843239.8753,21
+5520,1228633.025,1457553.665,1759991.592,21
+5521,1236555.492,1464634.116,852647.5028,21
+5522,1238705.757,1468988.017,855459.8298,21
+5523,1239344.712,1467578.26,1770578.781,21
+5524,1240067.185,1469243.028,858614.4256,21
+5525,1241049.604,1468141.182,1378519.754,21
+5526,1242178.988,1469488.079,844403.3057,21
+5527,1241435.176,1470777.221,854021.241,21
+5528,1243425.334,1469713.97,895543.8423,21
+5529,1243542.012,1470225.865,1259174.676,21
+5530,1244587.823,1471729.512,871068.02,21
+5531,1244687.904,1470531.497,844377.9629,21
+5532,1246003.114,1471535.55,846404.28,21
+5533,1246740.499,1472138.092,1049188.268,21
+5534,1245550.877,1471565.054,1215113.574,21
+5535,1248245.04,1473468.242,846802.1424,21
+5536,1248215.001,1471733.59,854117.8087,21
+5537,1248551.174,1472610.125,1130052.022,21
+5538,1249368.107,1473537.139,849601.4965,21
+5539,1249242.4,1474363.623,857037.7604,21
+5540,1250800.244,1473175.515,1023181.387,21
+5541,1250877.921,1473913.121,978983.6313,21
+5542,1252092.602,1474286.561,1180799.996,21
+5543,1250376.859,1475470.484,853189.8667,21
+5544,1254261.864,1474501.629,860803.7627,21
+5545,1253331.392,1474523.377,899712.3426,21
+5546,1252784.863,1476480.277,1115031.423,21
+5547,1255208.974,1473698.4,863049.2055,21
+5548,1253656.465,1476908.285,866518.9328,21
+5549,1256327.511,1476612.201,1037584.031,21
+5550,1255772.278,1475760.169,960568.0895,21
+5551,1256218.21,1477111.436,908498.4267,21
+5552,1257075.102,1476213.493,932250.8563,21
+5553,1256441.736,1476524.516,928352.84,21
+5554,1258231.25,1477073.234,929598.3607,21
+5555,1258536.891,1478159.94,932471.8953,21
+5556,1258644.322,1477108.819,933732.3741,21
+5557,1260087.915,1478255.181,1715423.998,21
+5558,1258768.309,1477277.144,896181.9324,21
+5559,1261425.47,1478601.479,902624.9453,21
+5560,1260852.29,1478845.302,1764202.076,21
+5561,1260760.779,1478833.855,910884.423,21
+5562,1261876.043,1478957.184,914887.6081,21
+5563,1261938.922,1478926.666,1788730.295,21
+5564,1263423.182,1479052.885,922648.0201,21
+5565,1262543.354,1479181.627,925840.6625,21
+5566,1265042.994,1480576.481,1808092.736,21
+5567,1263073.611,1479149.373,933844.7335,21
+5568,1265424.443,1479520.392,937777.0664,21
+5569,1264607.39,1480583.627,1822484.053,21
+5570,1265947.886,1480180.194,945222.3161,21
+5571,1266209.184,1481514.081,949740.9582,21
+5572,1266298.752,1479332.687,1835785.605,21
+5573,1266725.275,1481935,955077.2686,21
+5574,1266686.5,1481172.159,959061.8578,21
+5575,1269069.075,1480611.796,1850782.854,21
+5576,1267701.471,1481943.876,963289.3989,21
+5577,1268944.578,1482040.999,969372.4546,21
+5578,1268905.711,1480972.236,1861718.13,21
+5579,1270028.159,1483276.93,972696.2384,21
+5580,1269970.183,1481632.871,978185.0644,21
+5581,1267385.405,1481434.948,1870914.399,21
+5582,1268688.174,1484876.354,985883.7225,21
+5583,1269461.135,1483615.949,986324.8218,21
+5584,1268609.191,1483412.57,1886092.197,21
+5585,1269601.977,1484716.57,990913.3227,21
+5586,1269407.611,1483937.415,996435.3008,21
+5587,1268830.332,1484386.211,1895597.258,21
+5588,1269396.115,1485047.624,998965.8374,21
+5589,1270966.824,1484196.917,1003910.202,21
+5590,1267894.651,1484991.021,1904607.548,21
+5591,1270972.139,1485327.942,1006481.117,21
+5592,1268614.614,1485569.514,1011789.002,21
+5593,1270527.175,1484839.067,1912592.03,21
+5594,1269333.207,1485079.978,1014085.051,21
+5595,1270318.896,1487024.766,1019282.993,21
+5596,1270326.962,1485299.091,1920191.871,21
+5597,1269079.992,1485500.857,1023412.507,21
+5598,1270246.709,1485843.429,1023588.173,21
+5599,1270646.491,1487320.555,1930322.82,21
+5600,1269687.95,1485882.657,1028510.617,21
+5601,1269926.542,1485969.652,1032167.484,21
+5602,1271226.784,1486946.484,1935465.484,21
+5603,1269702.581,1487552.04,1034808.094,21
+5604,1270468.291,1486140.006,1040227.195,21
+5605,1271092.01,1487638.356,1941548.428,21
+5606,1268912.765,1486544.159,1043846.422,21
+5607,1271453.76,1488269.914,1043755.36,21
+5608,1270726.042,1486722.526,1949517.552,21
+5609,1270705.246,1488222.061,1049116.231,21
+5610,1271117.394,1487726.23,1050657.962,21
+5611,1270098.427,1487667.724,1957655.547,21
+5612,1270509.209,1488064.078,1054068.817,21
+5613,1270236.798,1488172.206,1056324.751,21
+5614,1272321.674,1488291.54,1964321.286,21
+5615,1269250.049,1488410.524,1059651.677,21
+5616,1271792.255,1488925.731,1064111.147,21
+5617,1270236.359,1488012.933,1968494.663,21
+5618,1270979.015,1489415.182,1066376.447,21
+5619,1271107.279,1488353.301,1068931.241,21
+5620,1270618.406,1489492.105,1975243.241,21
+5621,1270971.384,1488634.241,1071066.072,21
+5622,1271504.875,1489710.448,1076861.543,21
+5623,1270104.026,1488927.846,1979937.434,21
+5624,1271154.88,1490035.617,1075963.681,21
+5625,1270460.24,1489588.103,1083501.411,21
+5626,1271964.916,1489701.804,1985052.4,21
+5627,1270697.655,1490082.641,1082976.609,21
+5628,1270487.531,1490037.815,1088865.913,21
+5629,1272148.508,1489978.824,1988199.902,21
+5630,1270553.653,1490861.362,1091450.197,21
+5631,1270786.076,1489562.011,1092112.931,21
+5632,1271482.392,1490614.689,1997196.069,21
+5633,1271211.195,1490853.491,1094468.201,21
+5634,1270015.047,1490504.794,1098050.907,21
+5635,1271902.989,1490931.324,2000457.589,21
+5636,1271263.112,1490383.58,1101621.926,21
+5637,1271080.644,1492409.535,1103467.17,21
+5638,1270566.745,1489842.858,2006565.469,21
+5639,1271365.496,1491592.087,1105380.225,21
+5640,1271380.308,1491896.131,1110263.453,15.6
+5641,0,0,900044.8687,15.6
+5642,0,0,89.23009907,15.6
+5643,0,255.7976656,0,15.6
+5644,0,0,897412.741,15.6
+5645,0,0,154.8436877,15.6
+5646,0,0,1527033.212,15.6
+5647,0,0,860351.9459,15.6
+5648,0,0,140.5415313,15.6
+5649,0,0,0,15.6
+5650,0,0,0,15.6
+5651,0,0,0,15.6
+5652,0,0,0,15.6
+5653,0,58.8270021,0,15.6
+5654,0,0,0,15.6
+5655,0,0,0,15.6
+5656,0,0,0,15.6
+5657,0,0,0,15.6
+5658,0,0,0,15.6
+5659,0,0,0,15.6
+5660,0,0,0,15.6
+5661,0,0,0,15.6
+5662,0,0,0,15.6
+5663,0,0,0,15.6
+5664,36580.94439,0,0,15.6
+5665,2007.355828,60.17915852,286983.7674,15.6
+5666,4288.26476,0,0,15.6
+5667,16103.86859,0,0,15.6
+5668,11292.86617,0,0,15.6
+5669,351010.053,0,0,15.6
+5670,12291.97292,0,0,15.6
+5671,12540.69828,0,0,15.6
+5672,12765.7952,0,0,15.6
+5673,12979.63345,0,0,15.6
+5674,13178.8845,0,0,15.6
+5675,13412.96946,0,814023.3687,15.6
+5676,13633.45527,71.70219116,0,15.6
+5677,13816.15201,0,0,15.6
+5678,14034.25435,0,841327.1951,15.6
+5679,14194.04132,0,0,15.6
+5680,14435.83297,3.33795665,0,15.6
+5681,14547.64511,0,2085717.878,15.6
+5682,14826.25116,0,0,15.6
+5683,14935.21064,227.7275233,0,15.6
+5684,15116.60693,0,822761.332,15.6
+5685,15341.16333,0,27275.47622,15.6
+5686,15473.9966,0,179468.4634,15.6
+5687,15625.49396,0,852427.5423,15.6
+5688,15812.49123,0,34714.67613,15.6
+5689,15982.1089,0,466890.7081,15.6
+5690,16112.13403,0,34394.41944,15.6
+5691,16314.05274,0,39353.04555,15.6
+5692,16422.53334,0,82655.86418,15.6
+5693,16589.78556,0,232278.3103,15.6
+5694,0,0,391904.1554,15.6
+5695,0,0,220222.1001,15.6
+5696,0,0,264567.2498,15.6
+5697,59786.03121,0,245369.8781,15.6
+5698,530.2443364,0,238647.147,15.6
+5699,14384.97947,0,232756.8723,15.6
+5700,21906.14817,4.129273321,227211.5444,15.6
+5701,17093.22473,0,221881.5195,15.6
+5702,17970.50738,58.39469846,216718.8554,15.6
+5703,18058.32785,0,211629.5598,15.6
+5704,18120.51732,0,206550.033,15.6
+5705,18257.86319,0,202985.816,15.6
+5706,18312.15569,0,197974.3207,15.6
+5707,18396.29765,0,190847.7639,15.6
+5708,18511.79446,0,119206.9927,15.6
+5709,18564.89094,0,278579.158,15.6
+5710,18644.56656,0,213375.1209,15.6
+5711,18712.04469,0,31356.20384,15.6
+5712,18813.00954,0,33427.73538,15.6
+5713,358109.4491,0,233006.114,15.6
+5714,18958.82571,0,0,15.6
+5715,18999.59092,0,0,15.6
+5716,19103.82246,4.021855092,987894.5472,15.6
+5717,19111.92582,0,0,15.6
+5718,19237.39785,97.02858525,0,15.6
+5719,19274.80877,0,0,15.6
+5720,19336.21146,0,0,15.6
+5721,19422.02455,0,0,15.6
+5722,305484.8603,3.919900484,617945.0678,15.6
+5723,36782.74437,0,0,15.6
+5724,34941.9033,86.3803163,0,15.6
+5725,89447.32478,0,644756.4768,15.6
+5726,103735.7836,0,0,15.6
+5727,60180.01418,0,0,15.6
+5728,67369.81198,7.937000273,655244.4904,15.6
+5729,67967.7668,0,0,15.6
+5730,139730.4301,104.8595077,0,15.6
+5731,73886.71701,0,662984.4233,15.6
+5732,79192.48071,0,0,15.6
+5733,96523.46504,0,0,15.6
+5734,92031.0931,3.820053427,669987.6443,15.6
+5735,92572.94981,0,0,15.6
+5736,93083.59395,85.76225297,0,15.6
+5737,94449.28934,0,0,15.6
+5738,94620.92211,0,0,15.6
+5739,95382.24314,0,0,15.6
+5740,95940.89201,0,0,15.6
+5741,96713.02356,229.3199671,0,15.6
+5742,97063.31356,0,0,15.6
+5743,97702.00688,0,0,15.6
+5744,98472.68012,0,0,15.6
+5745,98913.6734,0,0,15.6
+5746,99355.98855,0,0,15.6
+5747,100115.5123,0,0,15.6
+5748,100477.1434,0,0,15.6
+5749,101258.5895,0,0,15.6
+5750,101335.7186,0,0,15.6
+5751,102293.0962,0,0,15.6
+5752,20845.23111,0,1071542.752,15.6
+5753,20798.74808,0,0,15.6
+5754,20891.59549,0,0,15.6
+5755,20903.28998,0,0,15.6
+5756,20910.0179,59.88624674,0,15.6
+5757,360205.3789,0,0,15.6
+5758,20989.27567,0,0,15.6
+5759,21018.05997,0,0,15.6
+5760,340361.4181,0,0,15.6
+5761,4773.588213,0,0,15.6
+5762,39553.32702,0,0,15.6
+5763,191672.9071,0,0,15.6
+5764,103851.0524,0,0,15.6
+5765,97098.48109,0,0,15.6
+5766,122962.7098,0,0,15.6
+5767,113202.185,0,0,15.6
+5768,115783.6249,0,216866.3858,15.6
+5769,116246.2847,0,32610.28013,15.6
+5770,117411.2668,7.078327388,34844.99752,15.6
+5771,117741.4408,0,45650.5424,15.6
+5772,118830.3234,102.8657442,186340.6225,15.6
+5773,119283.1886,0,188134.3372,15.6
+5774,120465.7358,0,181815.2767,15.6
+5775,120749.1533,0,32672.74934,15.6
+5776,121864.8909,4.135045339,34795.22919,15.6
+5777,122258.2256,0,67650.91719,15.6
+5778,123433.1459,99.7872301,136595.8058,15.6
+5779,123830.5479,0,223704.73,15.6
+5780,124662.5799,0,190016.6415,15.6
+5781,125369.8082,0,32749.5517,15.6
+5782,126127.4875,4.244022102,34745.25355,15.6
+5783,126530.4942,0,42525.3527,15.6
+5784,127764.9132,101.4349069,166169.2611,15.6
+5785,128204.9489,0,161632.1896,15.6
+5786,128864.0455,0,145865.8824,15.6
+5787,129785.6462,0,145791.877,15.6
+5788,130285.8631,4.253956874,869452.2226,15.6
+5789,130729.6972,0,137391.7334,15.6
+5790,23337.48468,101.6703998,134897.6864,15.6
+5791,23380.69165,0,600548.6286,15.6
+5792,23523.06636,0,32921.886,15.6
+5793,0,0,100492.1775,15.6
+5794,0,4.241873363,626637.0547,15.6
+5795,433534.5125,0,33640.96496,15.6
+5796,82545.20232,101.56895,100329.5232,15.6
+5797,68782.17133,0,604123.0835,15.6
+5798,178615.2182,0,0,15.6
+5799,135514.3421,0,0,15.6
+5800,137520.2339,4.260976195,613706.2471,15.6
+5801,139623.5712,0,0,15.6
+5802,478478.6297,101.7639451,0,15.6
+5803,140758.6193,0,622556.9884,15.6
+5804,140911.8531,0,5.178110533,15.6
+5805,141358.3758,0,0,15.6
+5806,142258.6668,4.235216423,630973.5413,15.6
+5807,142724.311,0,9.843634247,15.6
+5808,143302.6015,101.4340764,0,15.6
+5809,143789.9234,0,639049.1783,15.6
+5810,144316.0202,0,9.682994561,15.6
+5811,145148.3727,0,0,15.6
+5812,145419.3132,4.245455239,646780.6705,15.6
+5813,146334.4876,0,9.787118682,15.6
+5814,146577.6779,101.4375558,0,15.6
+5815,147458.7568,0,654206.6906,15.6
+5816,147433.7409,0,9.315667896,15.6
+5817,148710.494,0,0,15.6
+5818,148895.6966,4.225737288,661310.4286,15.6
+5819,149323.8507,0,131422.429,15.6
+5820,150320.0155,101.0752035,142535.3282,15.6
+5821,150006.4658,0,729928.9876,15.6
+5822,151060.6348,0,73371.38163,15.6
+5823,151246.4608,0,153572.953,15.6
+5824,151514.0564,4.16966595,742833.8224,15.6
+5825,25309.68425,0,976826.819,15.6
+5826,0,99.62023294,150056.6436,15.6
+5827,0,0,740482.9928,15.6
+5828,76274.07408,0,74233.98835,15.6
+5829,8311.689097,0,153175.6359,15.6
+5830,550534.131,4.129754919,747197.5779,15.6
+5831,38249.9209,0,75849.73166,15.6
+5832,80396.65826,99.03592717,156167.3686,15.6
+5833,215925.3479,0,753651.6793,15.6
+5834,146557.9713,38846.9137,77425.38781,15.6
+5835,155505.8393,2117.506786,159228.8321,15.6
+5836,156189.6531,3689.870369,759785.9402,15.6
+5837,156730.143,15751.88716,79016.51371,15.6
+5838,156927.1369,11335.73043,162175.0562,15.6
+5839,156938.0682,11230.29365,765666.3453,15.6
+5840,157785.5368,11784.60765,80645.43015,15.6
+5841,157450.3706,11857.62784,165010.5893,15.6
+5842,158098.215,12016.69662,771198.2244,15.6
+5843,158106.3839,12181.67062,82267.63468,15.6
+5844,158427.2874,12382.44069,167794.6626,15.6
+5845,158598.9791,12459.13004,776487.3712,15.6
+5846,159134.317,12611.18765,83832.97228,15.6
+5847,498501.7423,12732.91711,170505.4455,15.6
+5848,159516.8433,12825.5728,781478.8296,15.6
+5849,159776.7425,13043.31474,3.402562324,15.6
+5850,160035.1528,13229.07923,0,15.6
+5851,160318.3177,13288.24864,702359.3368,15.6
+5852,160544.9275,13387.23954,0,15.6
+5853,160857.0485,13600.09669,0,15.6
+5854,160763.2743,13664.91828,889770.1179,15.6
+5855,161546.0156,13840.62985,71844.73737,15.6
+5856,161554.5698,14042.60901,172544.6519,15.6
+5857,161719.7146,14148.08758,809072.791,15.6
+5858,135993.0035,14232.03667,89835.06671,15.6
+5859,135974.518,14347.2564,182688.8597,15.6
+5860,77852.38949,14515.81553,803243.5896,15.6
+5861,10007.42715,14655.61406,92319.99966,15.6
+5862,23498.0315,14881.54375,1170481.444,15.6
+5863,29692.34368,14932.06048,792743.4113,15.6
+5864,560900.9905,0,92077.10365,15.6
+5865,30732.05574,0,181081.3693,15.6
+5866,101445.2675,4.132832445,797145.0447,15.6
+5867,222566.7804,0,93609.94887,15.6
+5868,154953.6438,98.99731036,183381.567,15.6
+5869,165146.9356,66849.29829,801433.4432,15.6
+5870,165768.9356,0,95116.75888,15.6
+5871,165804.8785,3717.30209,185672.5232,15.6
+5872,165974.6109,24491.25115,805421.9366,15.6
+5873,166232.115,15517.52423,96674.84078,15.6
+5874,166264.1765,16249.29931,187934.2738,15.6
+5875,166507.9824,16595.7578,809307.4402,15.6
+5876,166630.7094,16850.3625,98153.82596,15.6
+5877,166840.5131,16873.77507,190170.8684,15.6
+5878,166995.7996,17076.95903,812923.7382,15.6
+5879,166964.384,17180.28796,99661.07558,15.6
+5880,167451.3552,17350.24843,192344.9319,15.6
+5881,168147.6416,17474.16377,816211.795,15.6
+5882,168928.7683,17542.16522,100769.7289,15.6
+5883,169631.637,17762.16414,193787.6995,15.6
+5884,170926.5224,17854.45781,717766.976,15.6
+5885,171509.6029,17970.13609,0,15.6
+5886,172045.2434,18352.15974,0,15.6
+5887,173397.7446,18360.55192,722168.9068,15.6
+5888,173717.4297,18473.53458,234600.1241,15.6
+5889,174966.7957,18699.53377,180990.2407,15.6
+5890,147944.3111,18765.97573,850224.1785,15.6
+5891,149115.5794,18907.02154,168461.95,15.6
+5892,568956.2326,19228.83566,226125.7997,15.6
+5893,165447.0408,19145.91238,878675.0435,15.6
+5894,22573.10984,19386.07684,154774.9784,15.6
+5895,31997.28827,19462.99085,229637.7977,15.6
+5896,27741.70075,19665.94207,883196.8704,15.6
+5897,28084.37559,19733.69669,156385.0168,15.6
+5898,640919.3421,19993.11115,231398.2734,15.6
+5899,64515.44592,0,887551.5516,15.6
+5900,80013.19523,0,1191955.851,15.6
+5901,264213.0612,0,226545.8286,15.6
+5902,172374.4121,74360.58696,874568.8733,15.6
+5903,186770.464,0,156367.9877,15.6
+5904,187657.9968,12831.37608,228837.8233,15.6
+5905,188589.5209,28500.50022,879550.0076,15.6
+5906,189224.9249,19426.10653,158039.8781,15.6
+5907,190418.3469,21032.38477,231048.1857,15.6
+5908,190662.0957,21252.63392,884100.7431,15.6
+5909,191944.3649,21291.39259,159687.4286,15.6
+5910,192386.2941,21636.65094,233009.9809,15.6
+5911,193318.9068,21569.93086,888523.8348,15.6
+5912,193930.4714,21789.16239,161115.5708,15.6
+5913,195122.4485,21835.43719,234934.4085,15.6
+5914,195411.3766,22018.92359,892446.6156,15.6
+5915,196691.3748,22181.32839,162542.8747,15.6
+5916,197204.1147,22343.22778,236746.944,15.6
+5917,197939.2678,22431.81094,896230.8322,15.6
+5918,199019.7433,22533.91017,54585.3582,15.6
+5919,199668.3529,22680.38719,0,15.6
+5920,200308.9063,22788.88129,737399.6265,15.6
+5921,201394.2887,22977.84033,237681.9385,15.6
+5922,171831.7802,23131.45938,188637.8162,15.6
+5923,172724.3584,23247.22092,835865.1107,15.6
+5924,257344.1514,23302.63784,122481.5795,15.6
+5925,198165.5737,23484.63112,209403.1482,15.6
+5926,196095.0454,23596.75051,847007.0223,15.6
+5927,211232.0868,23735.76708,111286.2992,15.6
+5928,30407.66098,23952.87589,211135.9784,15.6
+5929,30765.71966,430120.9879,847641.4094,15.6
+5930,30795.46909,41184.58593,111675.8574,15.6
+5931,671495.3915,57293.74336,211407.6194,15.6
+5932,79919.12321,162575.9435,848327.6109,15.6
+5933,126799.1969,108192.7854,112063.0318,15.6
+5934,279569.544,112124.4044,211965.8977,15.6
+5935,201231.6914,207824.0174,848987.012,15.6
+5936,213735.5959,122760.4295,112498.2221,15.6
+5937,553652.8616,130218.5941,212489.0762,15.6
+5938,215549.2632,154885.296,1888547.492,15.6
+5939,215466.1049,144375.0283,110535.734,15.6
+5940,217034.9962,148458.2447,206114.2949,15.6
+5941,217172.7626,148406.4379,834129.208,15.6
+5942,217718.4661,149333.9085,111288.7375,15.6
+5943,217901.0115,150040.1231,207279.0189,15.6
+5944,218769.712,151606.3893,836049.2859,15.6
+5945,218698.2525,151858.6579,111977.3166,15.6
+5946,219398.8789,152910.2841,208420.6048,15.6
+5947,219939.6085,154312.3716,837804.4451,15.6
+5948,220183.8,154717.7291,112800.9258,15.6
+5949,220842.3553,156072.8623,209433.0665,15.6
+5950,221023.8842,156624.4536,839538.1566,15.6
+5951,221578.4009,157904.0251,0,15.6
+5952,222161.2536,158726.9404,0,15.6
+5953,222607.0476,159428.5521,730663.8307,15.6
+5954,190577.2135,161199.9859,251294.2728,15.6
+5955,191302.8235,160924.7831,192247.1772,15.6
+5956,277791.7959,162653.7091,830471.3178,15.6
+5957,223571.5739,163474.7037,129471.6067,15.6
+5958,213015.4096,164512.6812,212287.2435,15.6
+5959,230488.083,26907.49339,845451.2345,15.6
+5960,226132.904,26998.62368,116252.9904,15.6
+5961,32586.39301,27049.31166,214466.8951,15.6
+5962,32543.08627,27169.22915,846618.9942,15.6
+5963,32675.15745,27205.52281,116691.4505,15.6
+5964,728040.454,598488.3457,215066.8443,15.6
+5965,111226.6949,0,847782.6476,15.6
+5966,127474.0442,51923.48554,117207.1534,15.6
+5967,302217.7443,215490.1579,215860.8058,15.6
+5968,218698.7657,240625.3735,848695.578,15.6
+5969,229990.4161,156952.8837,117981.0071,15.6
+5970,230560.9978,156679.3204,216506.1878,15.6
+5971,231020.277,189947.2167,849796.8875,15.6
+5972,231421.4974,175105.239,118611.9153,15.6
+5973,232089.4831,178822.9638,217229.2928,15.6
+5974,232174.9615,179114.3352,850842.3501,15.6
+5975,232779.481,180259.0553,119191.2687,15.6
+5976,232894.4774,181026.2072,218018.714,15.6
+5977,233753.1449,182455.355,1883509.126,15.6
+5978,234065.6316,182416.8766,117289.9978,15.6
+5979,234060.8588,183800.1926,211838.6854,15.6
+5980,235034.2982,184326.6944,836590.0049,15.6
+5981,235046.5147,186040.1182,118105.3798,15.6
+5982,575044.6235,185885.2313,213038.8149,15.6
+5983,235900.5543,187341.5952,838642.7629,15.6
+5984,236364.3112,188505.8279,0,15.6
+5985,236940.5933,188415.5649,0,15.6
+5986,204036.6498,189657.1037,724685.5902,15.6
+5987,203698.5139,190810.5875,267070.7257,15.6
+5988,292007.3983,191747.5829,197393.698,15.6
+5989,241360.6905,192240.5687,825836.6186,15.6
+5990,225996.8514,193134.6462,137879.4488,15.6
+5991,245217.3436,194452.8567,215736.2976,15.6
+5992,239772.0631,194929.9051,845185.2108,15.6
+5993,240245.9172,195552.1359,121522.6032,15.6
+5994,34001.34201,29736.31225,218409.5545,15.6
+5995,33965.81577,29663.55721,846394.3531,15.6
+5996,34106.72461,29697.67062,122210.5966,15.6
+5997,758487.3504,29836.44664,218884.537,15.6
+5998,142662.5373,672149.6329,847851.1645,15.6
+5999,140663.3344,0,122715.4759,15.6
+6000,314591.9252,163103.4259,219765.2844,17.8
+6001,1079497.399,1344798.786,3348375.652,17.8
+6002,918403.1801,1097421.941,2519866.23,17.8
+6003,511420.2839,231514.065,1441342.497,17.8
+6004,644060.2343,508205.507,1945568.026,17.8
+6005,567947.8345,523309.4776,1327316.2,17.8
+6006,511758.4748,448336.5405,1340891.401,17.8
+6007,487025.6395,461126.1252,2016124.146,17.8
+6008,508837.7309,453879.8425,1303545.143,17.8
+6009,493932.2983,452627.171,1310586.076,17.8
+6010,489058.882,450683.605,2057812.075,17.8
+6011,488775.4686,449020.9091,1332414.191,17.8
+6012,487113.7688,447627.5483,1339833.987,17.8
+6013,485186.0855,446415.1523,2094098.98,17.8
+6014,483396.3524,444465.2811,2421379.44,17.8
+6015,482751.4265,443598.0958,1333906.596,17.8
+6016,480366.4437,441929.915,2085696.239,17.8
+6017,479134.069,441127.8304,1173673.049,17.8
+6018,408157.1633,438775.1428,1180000.274,17.8
+6019,407126.3959,438642.3949,2235957.321,17.8
+6020,495603.58,437004.0467,1441640.082,17.8
+6021,500343.5689,435747.5996,1372420.994,17.8
+6022,471239.031,434592.7652,2140123.519,17.8
+6023,819245.1412,433737.3677,1409954.848,17.8
+6024,471079.1848,432097.0476,1408016.211,17.8
+6025,473947.0661,431509.166,2171521.628,17.8
+6026,467609.2412,430191.3034,1420717.187,17.8
+6027,81366.94486,429373.0232,1423996.563,17.8
+6028,80502.48018,75771.5104,2192984.256,17.8
+6029,892798.9522,75683.28771,1437502.715,17.8
+6030,565295.7948,967445.4285,1439838.073,17.8
+6031,468334.4798,165199.8202,957912.5812,17.8
+6032,411873.487,457685.5539,195172.8317,17.8
+6033,481119.1761,423733.102,299533.5914,17.8
+6034,451965.0417,404137.6009,3471472.846,17.8
+6035,449555.9035,407614.2986,1733726.205,17.8
+6036,448731.341,453905.7321,1137437.737,17.8
+6037,447755.1339,403621.3283,2279244.282,17.8
+6038,446928.9055,416189.6284,1449726.655,17.8
+6039,446599.4637,423480.5772,1432606.619,17.8
+6040,444462.0503,415306.0766,2191262.233,17.8
+6041,444714.6181,417436.3753,1450915.833,17.8
+6042,482082.0684,415502.0921,1455862.122,17.8
+6043,442588.6671,414346.4995,2214399.554,17.8
+6044,446819.7337,414393.9329,1471241.689,17.8
+6045,457004.7679,412828.7649,1474613.448,17.8
+6046,450707.253,411983.9609,2236066.654,17.8
+6047,450614.8808,411676.5293,1487785.011,17.8
+6048,449964.2085,410660.1027,1491613.426,17.8
+6049,449193.7116,409180.0688,2054460.256,17.8
+6050,381777.1076,409080.3351,2391533.215,17.8
+6051,381232.8951,408232.479,1576416.385,17.8
+6052,470707.1401,407139.7289,2292248.705,17.8
+6053,471539.0469,406212.7491,1480964.727,17.8
+6054,445987.4051,406071.3659,1491642.148,17.8
+6055,448603.0809,404603.7401,2249544.369,17.8
+6056,445890.7014,404236.6625,1510564.659,17.8
+6057,442883.2944,403046.2423,1510486.42,17.8
+6058,444143.0632,402919.3398,2268292.936,17.8
+6059,77363.34136,401558.7733,1524474.865,17.8
+6060,416458.2129,72768.95853,1527310.976,20
+6061,2297603.16,2584771.177,3436975.463,20
+6062,1986846.478,1217365.852,3060494.956,20
+6063,1102167.699,863437.9775,2909761.9,20
+6064,974898.5386,902698.2295,478696.8914,20
+6065,1034457.023,1111719.587,2611383.593,20
+6066,1016778.756,805691.0039,2421588.099,20
+6067,984931.1469,899741.561,2090470.103,20
+6068,980536.7726,963769.6375,2276163.931,20
+6069,978834.9187,892580.9968,2220224.804,20
+6070,974175.8026,859812.128,2125429.978,20
+6071,973966.2884,886493.1939,2126573.685,20
+6072,938694.4542,873101.8301,2099502.984,20
+6073,935255.514,869042.3329,2069719.954,20
+6074,913109.3613,866710.6642,2316280.435,20
+6075,997076.6871,864461.6907,2041397.53,20
+6076,965149.9953,860744.0577,2045981.581,20
+6077,929561.4409,859124.9054,2045531.885,20
+6078,948621.4358,856038.58,2045523.385,20
+6079,940446.6002,854078.2767,2046712.995,20
+6080,937332.3222,852753.7897,2044996.517,20
+6081,935156.8917,849504.3308,1768629.188,20
+6082,813025.682,848661.4293,2087823.272,20
+6083,976668.6347,845272.1812,2062475.612,20
+6084,924852.6972,845990.3743,2038682.979,20
+6085,928714.7725,841662.7453,2038430.371,20
+6086,924226.9441,840565.9749,2963816.178,20
+6087,925227.126,838999.4408,2230383.903,20
+6088,922694.8119,837305.254,1976258.775,20
+6089,920350.2458,836771.1145,1982362.277,20
+6090,918186.3357,833332.7297,1986885.581,20
+6091,149537.5678,150261.4838,1898149.065,20
+6092,989260.3197,149954.7151,1896521.447,20
+6093,1009061.269,1122312.972,1899680.798,20
+6094,891919.7878,667787.8914,1898636.401,20
+6095,952588.3994,851242.4347,575436.2723,20
+6096,895264.4543,956259.7161,465094.9996,20
+6097,1251844.049,793024.7726,2548847.921,20
+6098,909793.0657,790936.5229,2487355.969,20
+6099,906374.7508,799128.13,1881177.317,20
+6100,905017.3888,877056.1639,2098754.188,20
+6101,903988.2071,803333.1429,1919011.192,20
+6102,901687.4517,824941.8052,2183109.35,20
+6103,901819.6755,823098.1639,1939236.255,20
+6104,899572.6555,820264.4465,1936911.937,20
+6105,869273.7325,816884.1449,1937853.774,20
+6106,867930.5475,818547.0189,1946411.032,20
+6107,866984.8725,816340.9983,1951546.088,20
+6108,937161.3034,815732.0634,1953518.829,20
+6109,905231.7187,815233.5686,1958973.159,20
+6110,879930.2825,812790.7313,1959269.962,20
+6111,896643.6028,813380.0723,1965742.095,20
+6112,893074.9994,812636.5577,1695767.705,20
+6113,774446.7059,810880.1206,2013987.154,20
+6114,930658.8265,811225.9848,1986199.475,20
+6115,884425.907,810294.0784,2199182.302,20
+6116,885047.0827,807770.7723,1936585.833,20
+6117,887032.392,809126.8129,1943523.641,20
+6118,886679.0809,808643.1302,1946726.575,20
+6119,884859.5687,806293.0234,1939631.82,20
+6120,883719.277,806886.9378,1946479.696,21
+6121,2312186.446,2994460.139,4815023.261,21
+6122,2217690.112,2080352.392,3475667.785,21
+6123,704125.8989,726005.6085,1878331.34,21
+6124,843776.3273,886076.1926,2003295.868,21
+6125,1318156.363,1319142.99,2296202.811,21
+6126,978965.7843,989320.5696,2435108.111,21
+6127,1052167.573,1032660.913,2118751.467,21
+6128,1037983.543,1035256.047,2139959.631,21
+6129,1033859.695,1027370.873,2236034.723,21
+6130,1032486.865,1023369.858,2138501.586,21
+6131,1030112.305,1020408.487,2145928.744,21
+6132,1025385.573,1017455.323,2151577.432,21
+6133,1023806.306,1013715.273,2153206.146,21
+6134,1020997.752,1011881.596,2157328.987,21
+6135,1019472.466,1007775.105,2158235.205,21
+6136,1015827.406,1007471.294,2162536.662,21
+6137,1013268.375,1002977.375,2159798.463,21
+6138,1011440.441,1001475.971,2165774.823,21
+6139,1007991.052,999454.0781,2162103.093,21
+6140,1008342.479,996569.0725,2166802.131,21
+6141,1003821.269,994667.6744,2163910.132,21
+6142,999559.1798,993331.2418,2163716.022,21
+6143,995321.6736,989409.0616,2167196.91,21
+6144,995284.5788,990542.7927,2162927.591,21
+6145,991388.1156,985783.0789,2163340.678,21
+6146,987851.9894,984883.6477,2163811.548,21
+6147,987136.4909,983823.5796,2161621.286,21
+6148,984308.9578,981230.7111,2162988.355,21
+6149,983129.38,979686.402,2160907.544,21
+6150,978857.3734,978640.932,2163394.346,21
+6151,978441.7879,975787.2517,2159114.849,21
+6152,974814.5474,974454.8206,2161163.911,21
+6153,974737.7671,970562.2161,2159677.497,21
+6154,970966.3258,972163.3075,2160496.82,21
+6155,970084.8046,969770.5703,2158550.657,21
+6156,968727.5308,968043.1058,2158330.404,21
+6157,965213.5965,965335.8747,2158088.796,21
+6158,964464.1929,966507.7444,2158308.381,21
+6159,962604.5818,963398.0863,2157375.19,21
+6160,959582.1066,964053.8205,2157899.053,21
+6161,959451.4617,960281.2912,2158052.676,21
+6162,958072.4757,961243.9994,2155475.499,21
+6163,954990.4019,957825.7274,2157259.563,21
+6164,953991.7163,959027.974,2156066.724,21
+6165,953325.0541,956776.3961,2156557.952,21
+6166,949004.5312,954982.7037,2156624.439,21
+6167,951144.2175,954155.1752,2154628.532,21
+6168,946158.6543,952730.4791,2156646.5,21
+6169,947003.8888,953922.6796,2156059.394,21
+6170,944898.4203,948366.6497,2156758.291,21
+6171,943609.7916,952170.245,2154915.595,21
+6172,941116.035,947380.8886,2156536.329,21
+6173,941172.3219,948327.9981,2155691.283,21
+6174,939258.6352,947783.4741,2155428.247,21
+6175,937761.753,945294.0896,2155133.715,21
+6176,936088.9472,943769.4559,2156778.576,21
+6177,935312.9547,946041.8254,2155734.928,21
+6178,934233.9531,941264.7304,2157199.18,21
+6179,932623.9857,943068.6752,2155855.305,21
+6180,930320.5594,939865.0775,2155562.847,21
+6181,1530855.625,1762708.108,2096729.548,21
+6182,1523898.58,1757102.206,2085654.732,21
+6183,1522965.665,1756384.241,2084580.836,21
+6184,1518629.28,1754539.466,2080439.315,21
+6185,1518933.692,1755898.26,2079204.136,21
+6186,1515486.084,1754628.618,2077246.46,21
+6187,1514995.851,1752922.561,2075616.056,21
+6188,1511949.093,1755468.355,2075649.041,21
+6189,1511791.337,1753241.848,2070880.945,21
+6190,1508797.08,1753493.554,2073365.586,21
+6191,1507549.359,1752366.813,2070073.935,21
+6192,1506269.955,1754320.147,2071051.304,21
+6193,1504222.758,1752851.889,2068146.532,21
+6194,1503130.949,1751477.815,2067693.867,21
+6195,1502762.511,1753465.571,2067225.696,21
+6196,1497010.313,1753404.688,2064727.39,21
+6197,1500409.847,1751100.315,2784649.303,21
+6198,1496510.413,1754381.595,2073855.629,21
+6199,1495179.137,1750901.564,2070603.157,21
+6200,1493920.015,1753996.644,2814634.353,21
+6201,1493007.309,1752160.267,2077702.646,21
+6202,1490286.285,1752589.138,2073106.757,21
+6203,1489171.776,1752515.389,2823126.253,21
+6204,1488801.623,1753892.677,2077525.659,21
+6205,1487756.402,1751363.779,2078308.779,21
+6206,1484030.681,1754787.877,2822535.547,21
+6207,1485354.205,1751410.409,2080043.265,21
+6208,1482517.306,1754741.934,2078132.669,21
+6209,1481988.005,1752362.928,2825561.523,21
+6210,1480890.922,1756717.452,2077795.626,21
+6211,1479437.012,1756883.858,2079841.879,21
+6212,1477072.76,1757127.335,2823903.567,21
+6213,1477550.94,1758165.624,2079614.449,21
+6214,1474687.161,1756445.813,2075786.48,21
+6215,1475666.251,1758868.698,2826665.254,21
+6216,1471999.313,1758629.062,2078486.699,21
+6217,1472739.235,1758149.748,2076583.611,21
+6218,1470717.707,1760257.971,2823631.229,21
+6219,1469161.375,1759885.506,2078931.098,21
+6220,1468647.575,1759205.67,2074912.844,21
+6221,1467731.153,1761926.401,2824110.324,21
+6222,1466569.852,1759646.957,2078450.762,21
+6223,1464244.179,1761797.256,2073016.893,21
+6224,1464823.523,1761901.657,2825398.137,21
+6225,1462374.114,1763235.39,2078518.89,21
+6226,1461580.006,1760986.816,2070574.045,21
+6227,1461902.717,1765083.805,2825054.922,21
+6228,1458888.717,1762080.696,2037848.529,21
+6229,1458604.439,1764656.275,2033035.213,21
+6230,1457864.868,1765586.608,2781684.219,21
+6231,1455906.106,1764220.194,2030990.231,21
+6232,1448043.836,1765659.31,2029551.443,21
+6233,1444890.88,1766852.157,2777971.399,21
+6234,1443134.702,1765588.905,2027652.246,21
+6235,1442897.894,1767877.841,2024596.011,21
+6236,1438897.64,1767118.035,2774882.589,21
+6237,1439071.241,1767914.301,2025802.372,21
+6238,1436996.192,1768637.098,2017737.454,21
+6239,1435370.955,1769551.253,2773966.423,21
+6240,1435269.393,1769440.825,2019351.037,21
+6241,1205604.968,1528857.686,1628650.975,21
+6242,1189945.763,1514321.982,2377415.359,21
+6243,1186061.813,1511200.341,1612427.509,21
+6244,1181025.647,1509538.805,1607007.248,21
+6245,1179683.873,1507586.065,2367560.585,21
+6246,1175133.5,1506631.294,1600686.706,21
+6247,1172689.976,1505513.049,1594998.501,21
+6248,1169341.645,1503435.451,2360476.176,21
+6249,1167675.343,1504090.734,1588914.826,21
+6250,1166791.951,1501028.317,1585357.086,21
+6251,1162603.808,1501933.93,2351432.261,21
+6252,1160238.711,1499865.366,1578525.35,21
+6253,1157796.811,1500034.683,1574100.096,21
+6254,1156668.272,1499139.636,2342743.361,21
+6255,1151977.347,1497946.372,1569034.311,21
+6256,1151412.141,1498123.572,1564206.23,21
+6257,1149354.128,1497581.081,2335600.466,21
+6258,1146010.491,1496880.448,1560399.579,21
+6259,1144149.216,1496072.204,1556288.501,21
+6260,1141784.074,1496680.782,2328381.23,21
+6261,1140658.472,1494584.701,1552635.778,21
+6262,1136965.722,1496461.403,1547526.637,21
+6263,1136308.138,1494197.704,2321581.444,21
+6264,1133454.786,1495115.373,1545219.238,21
+6265,1131924.304,1494314.805,1537950.614,21
+6266,1128963.783,1495356.359,2316087.508,21
+6267,1128888.221,1493893.727,1535817.084,21
+6268,1125563.746,1494614.457,1531962.881,21
+6269,1124091.586,1494152.752,2308132.596,21
+6270,1122436.617,1494714.852,1528365.893,21
+6271,1120532.592,1494223.314,1523694.79,21
+6272,1117521.89,1494122.762,2301027.406,21
+6273,1113411.922,1494380.175,1519266.29,21
+6274,1112466.594,1493982.742,1514293.299,21
+6275,1109195.202,1494815.318,2293069.851,21
+6276,1108475.463,1494419.317,1509659.26,21
+6277,1105403.709,1494448.847,1506296.384,21
+6278,1103007.965,1494208.847,2284121.583,21
+6279,1101404.129,1495568.69,1500822.098,21
+6280,1099534.844,1494681.992,1497129.804,21
+6281,1096357.4,1494378.008,2275822.039,21
+6282,1095233.226,1496856.969,1491239.67,21
+6283,1092565.26,1494518.312,1487927.928,21
+6284,1090271.142,1496570.486,2267400.475,21
+6285,1089601.293,1495732.781,1481518.669,21
+6286,1084760.838,1496588.231,1475378.363,21
+6287,1085123.987,1496560.267,2253263.334,21
+6288,1081480.427,1497599.545,1468517.904,21
+6289,1080270.634,1496187.592,1464467.462,21
+6290,1077796.083,1498274.851,2245601.782,21
+6291,1075767.714,1497133.132,1458957.742,21
+6292,1073821.321,1499004.951,1455486.037,21
+6293,1069754.407,1498349.44,2236402.218,21
+6294,1067681.526,1497992.561,1450423.18,21
+6295,1064485.94,1500898.324,1445415.128,21
+6296,1063365.495,1498558.602,2228167.331,21
+6297,1060000.596,1501092.891,1440602.729,21
+6298,1059058.63,1499705.156,1436981.545,21
+6299,1056510.797,1501576.196,2219288.523,21
+6300,1054358.357,1501103.364,1431817.073,21
+6301,1051158.19,1500633.495,1425705.465,21
+6302,1048377.436,1500394.062,2207788.568,21
+6303,1044102.397,1499937.839,1417121.112,21
+6304,1041687.442,1499632.82,1411766.51,21
+6305,1038412.954,1499316.951,2194459.399,21
+6306,1035659.059,1498475.397,1403915.335,21
+6307,1032151.123,1498628.925,1397925.489,21
+6308,1029726.76,1497542.131,2180347.43,21
+6309,1026433.518,1498396.057,1390432.672,21
+6310,1023665.634,1497024.46,1383654.563,21
+6311,1019766.277,1497541.13,2167146.774,21
+6312,1018259.279,1497417.417,1376384.598,21
+6313,1013842.688,1495660.008,1369774.697,21
+6314,1011468.877,1497267.798,2154481.927,21
+6315,1008599.402,1495282.073,1362255.726,21
+6316,1004966.527,1496796.594,1356634.941,21
+6317,1002944.026,1495282.748,2142003.667,21
+6318,999466.877,1494819.551,1348892.565,21
+6319,996406.1163,1495862.889,1343762.482,21
+6320,993950.5849,1494916.683,2129010.45,21
+6321,990003.6161,1494284.958,1335054.44,21
+6322,987708.3734,1495061.945,1330872.848,21
+6323,984194.3536,1493406.764,2115925.943,21
+6324,982623.8724,1494697.652,1323239.908,21
+6325,977688.6782,1493326.826,1316232.646,21
+6326,975981.8625,1494404.72,2102713.844,21
+6327,973456.3456,1494086.939,1306138.813,21
+6328,969735.1134,1494783.531,1301299.982,21
+6329,966898.9639,1494635.392,2089156.462,21
+6330,963229.4986,1495092.938,1293893.916,21
+6331,961822.1187,1495599.096,1287539.309,21
+6332,957436.1089,1495139.873,2077665.712,21
+6333,955954.4886,1495836.937,1281012.05,21
+6334,952216.1853,1496641.779,1276246.752,21
+6335,949671.5726,1496034.152,2065104.531,21
+6336,944106.642,1496393.037,1268657.456,21
+6337,941241.3854,1497435.501,1264334.08,21
+6338,938649.0986,1496997.381,2052676.067,21
+6339,934775.2599,1497304.158,1256263.484,21
+6340,932757.8631,1498097.343,1251846.84,21
+6341,928538.3273,1497889.367,2040794.084,21
+6342,926913.6828,1498288.908,1243606.577,21
+6343,923624.0794,1498816.088,1239290.517,21
+6344,920239.1005,1498729.489,2028991.671,21
+6345,917898.019,1498944.333,1230898.844,21
+6346,914821.3974,1499756.496,1625089.093,21
+6347,911893.122,1499957.236,1195359.31,21
+6348,908440.5673,1499369.061,1196795.385,21
+6349,905848.4033,1501074.023,1188721.845,21
+6350,903353.5259,1500371.129,1184959.106,21
+6351,899688.5076,1501109.486,1475662.365,21
+6352,897424.3306,1500962.873,1159569.939,21
+6353,894775.2465,1501936.655,1162929.739,21
+6354,890524.612,1501308.229,1200493.3,21
+6355,888644.8272,1503235.076,1153520.702,21
+6356,885164.4073,1501468.237,1152709.414,21
+6357,882415.7262,1503620.477,1151549.13,21
+6358,879667.603,1502898.286,1150320.724,21
+6359,874550.0757,1503355.928,1148879.371,21
+6360,870508.5324,1503821.117,1148736.696,21
+6361,871356.9197,1508525.405,1152776.577,21
+6362,867860.9095,1508010.449,1905147.068,21
+6363,865539.0439,1509650.387,1154181.334,21
+6364,862414.4575,1508513.9,1150797.575,21
+6365,859681.6692,1509289.877,1928871.299,21
+6366,857079.7861,1509649.237,1150234.983,21
+6367,854188.8974,1510092.284,1147865.22,21
+6368,851250.4866,1509126.763,1932735.475,21
+6369,848704.7346,1510296.186,1146005.888,21
+6370,845618.4477,1510200.045,1143405.239,21
+6371,843238.6551,1510149.812,1932341.995,21
+6372,840218.4668,1510836.063,1141078.526,21
+6373,837707.8694,1511046.985,1138977.225,21
+6374,834581.6931,1510220.646,1930035.974,21
+6375,832277.2389,1511587.444,1135969.487,21
+6376,829512.9024,1511399.117,1133517.623,21
+6377,826555.4692,1511463.819,1927067.109,21
+6378,824200.8459,1511450.196,1129965.429,21
+6379,821150.7637,1511988.925,1128136.669,21
+6380,818884.8222,1512631.193,1923055.176,21
+6381,816152.3621,1511528.043,1124802.24,21
+6382,813044.8327,1513018.77,1121326.368,21
+6383,810956.1067,1512830.647,1919398.111,21
+6384,807800.6837,1512847.672,1118239.252,21
+6385,805171.9489,1513261.937,1115343.76,21
+6386,802786.9608,1512910.118,1914961.233,21
+6387,799414.7203,1514009.536,1111630.979,21
+6388,797495.5084,1513392.896,1108462.778,21
+6389,794147.3109,1513846.601,1909755.11,21
+6390,791470.605,1514272.449,1104765.491,21
+6391,788848.9574,1514769.269,1102160.246,21
+6392,786447.273,1514201.826,1905106.47,21
+6393,783472.1562,1514757.215,1099284.05,21
+6394,781858.1614,1514759.524,1096666.192,21
+6395,779809.0158,1515516.32,1900832.48,21
+6396,778610.9017,1515560.617,1093976.95,21
+6397,775470.3899,1515458.567,1090380.538,21
+6398,774417.6298,1515676.259,1897788.337,21
+6399,772573.7409,1516421.864,1087804.413,21
+6400,770837.516,1515981.466,1085134.312,21
+6401,769251.6159,1516934.533,1894589.414,21
+6402,767367.8736,1516341.955,1081394.497,21
+6403,766287.7723,1517261.069,1080752.203,21
+6404,763918.5582,1516503.029,1889907.983,21
+6405,762642.6172,1518306.171,1076858.33,21
+6406,761135.6537,1517014.247,1075367.359,21
+6407,758982.0628,1518198.127,1886001.688,21
+6408,758126.3834,1517396.151,1072353.638,21
+6409,755668.6916,1519148.153,1069931.847,21
+6410,755024.2497,1518023.878,1882423.086,21
+6411,752538.526,1518993.404,1067003.129,21
+6412,751141.7585,1519066.066,1064701.458,21
+6413,749304.9528,1519168.838,1878910.025,21
+6414,747876.3464,1519347.524,1061940.46,21
+6415,746176.3267,1520125.694,1480536.194,21
+6416,744339.4563,1519246.984,1035307.734,21
+6417,742661.6576,1520515.031,1039498.889,21
+6418,741252.5234,1519922.643,1033467.256,21
+6419,739346.2421,1521242.186,1033042.506,21
+6420,737840.3172,1520485.252,1339986.25,21
+6421,732546.4636,1516648.22,1005455.225,21
+6422,731048.115,1516115.716,1006521.321,21
+6423,730262.2754,1516803.454,1038233.718,21
+6424,729004.0722,1516445.509,1330202.757,21
+6425,728517.1934,1515822.036,977463.5323,21
+6426,727071.9553,1516545.241,977555.8667,21
+6427,726909.195,1516471.228,974891.0778,21
+6428,725399.682,1516525.825,973478.372,21
+6429,724424.1616,1510564.188,971634.2778,21
+6430,723596.1019,1509469.035,969173.3683,21
+6431,723146.1984,1509215.908,968167.3843,21
+6432,721329.9226,1508553.871,965783.2352,21
+6433,721158.1179,1508796.881,964491.5221,21
+6434,719409.6878,1507697.388,962033.5853,21
+6435,719305.1939,1508724.597,959924.3819,21
+6436,717361.7255,1507142.637,1308497.224,21
+6437,717179.0853,1507543.19,939115.8054,21
+6438,715806.3386,1506830.057,941005.3174,21
+6439,714872.356,1507193.088,936374.3905,21
+6440,713892.1991,1506439.845,935357.8491,21
+6441,712823.0562,1506204.275,933736.6566,21
+6442,711669.2811,1506606.935,931589.0272,21
+6443,710837.6041,1505296.292,930935.7866,21
+6444,709589.3319,1505835.573,927904.6527,21
+6445,708606.586,1505538.928,927121.0262,21
+6446,707690.7664,1505150.385,924860.6446,21
+6447,706564.7924,1505102.15,1278895.891,21
+6448,705147.3795,1505166.126,905510.4405,21
+6449,704701.1129,1504206.213,905734.314,21
+6450,703126.0224,1505031.716,902448.1387,21
+6451,702335.4544,1502611.739,900320.9946,21
+6452,701401.8006,1503400.674,900170.0972,21
+6453,699700.6578,1503065.917,897110.9675,21
+6454,699338.4003,1502706.428,896070.1339,21
+6455,698316.3724,1502910.559,895151.7285,21
+6456,695985.36,1502890.012,892042.9841,21
+6457,695970.9314,1502632.127,891121.855,21
+6458,694360.3967,1502827.041,1252323.758,21
+6459,693037.4485,1502731.791,871378.2132,21
+6460,692493.3619,1502767.745,873655.0718,21
+6461,691113.1211,1502487.585,887075.7259,21
+6462,689883.5941,1503050.86,866881.0099,21
+6463,689107.5406,1502446.551,865233.5693,21
+6464,687958.6458,1502711.374,864289.5316,21
+6465,686731.0939,1502965.331,862235.7673,21
+6466,686031.1854,1502179.245,860631.9197,21
+6467,684274.5099,1503056.945,859379.2926,21
+6468,683901.185,1502688.755,857033.9793,21
+6469,682718.2452,1502561.472,843787.115,21
+6470,681279.2153,1502406.023,840244.4807,21
+6471,680412.3444,1503130.712,839826.279,21
+6472,679760.5791,1502679.351,834201.1146,21
+6473,678273.1682,1502673.244,831275.5364,21
+6474,677533.272,1502399.718,827345.455,21
+6475,676224.7734,1503214.629,823643.4037,21
+6476,675742.0339,1502873.784,820248.2916,21
+6477,674271.1457,1502344.284,816653.9265,21
+6478,673730.5168,1503112.156,812564.2953,21
+6479,672082.1742,1502955.961,809551.2471,21
+6480,671957.5413,1502702.301,804857.4641,21
+6481,694610.2181,1532834.143,853953.2194,21
+6482,694059.9188,1537985.994,852847.8287,21
+6483,694011.9885,1535083.918,851709.3337,21
+6484,692744.559,1535232.646,849733.5175,21
+6485,692192.9698,1534304.022,848511.9347,21
+6486,691527.1667,1533440.644,846928.4893,21
+6487,691110.374,1534040.932,845072.2442,21
+6488,690348.8503,1532029.097,843283.4334,21
+6489,689726.8908,1532454.271,842191.8901,21
+6490,689144.3146,1531379.288,839278.2753,21
+6491,688547.6291,1530951.976,838955.4456,21
+6492,687824.3596,1530306.6,836471.2776,21
+6493,687644.9476,1529646.527,835129.0888,21
+6494,686501.7145,1529125.895,831741.8709,21
+6495,686031.2602,1528518.018,832186.9245,21
+6496,685813.2504,1527487.525,828177.813,21
+6497,684652.1008,1527082.216,827645.8918,21
+6498,684385.9523,1526666.258,825500.8997,21
+6499,683639.3695,1525841.175,823148.4567,21
+6500,682665.6449,1524788.16,820884.8396,21
+6501,682787.8326,1525003.354,819513.4855,21
+6502,681540.7247,1523590.042,816588.3122,21
+6503,681148.1095,1524382.798,815669.2897,21
+6504,680184.5773,1523720.48,814346.654,21
+6505,674405.1402,1523389.941,814734.1291,21
+6506,675332.2396,1522370.046,812506.0463,21
+6507,673544.5369,1521078.679,813625.2985,21
+6508,671858.6122,1521761.922,811035.5686,21
+6509,670577.7254,1519676.033,811353.9441,21
+6510,669536.9028,1519901.208,810461.5462,21
+6511,667839.0097,1516952.539,809412.8631,21
+6512,666453.9151,1517125.607,808421.8422,21
+6513,665785.0607,1516341.951,807319.1443,21
+6514,663703.5534,1515120.969,805895.0535,21
+6515,662941.3059,1515494.282,805238.6327,21
+6516,661515.1416,1513963.932,803366.8006,21
+6517,660225.4108,1513967.506,803291.5362,21
+6518,658848.9728,1513217.965,800680.128,21
+6519,658216.4049,1512723.084,799981.4004,21
+6520,656216.8201,1511421.658,798448.5463,21
+6521,655468.5854,1512058.853,797540.3696,21
+6522,654036.7584,1510072.98,795351.6764,21
+6523,653072.6076,1510505.937,794649.2268,21
+6524,651722.0374,1509033.865,792593.9018,21
+6525,650635.4397,1508784.675,792446.4298,21
+6526,649439.0447,1508047.787,789182.4567,21
+6527,648116.0634,1507418.557,788186.9675,21
+6528,647478.8145,1506611.119,787249.8401,21
+6529,646215.9272,1506158.666,784821.404,21
+6530,644438.9727,1505740.932,783578.9347,21
+6531,644758.0879,1503898.641,782236.9322,21
+6532,642390.1446,1504700.754,780347.4919,21
+6533,641930.9609,1502479.728,779014.6222,21
+6534,640918.1046,1502632.411,777453.6263,21
+6535,639717.509,1501314.81,775536.131,21
+6536,638923.022,1501056.054,774221.4503,21
+6537,637814.5722,1500404.005,772471.8679,21
+6538,636761.2013,1498566.96,770595.3468,21
+6539,636259.8892,1498283.098,769249.0299,21
+6540,634712.9327,1495807.74,767191.7176,21
+6541,607228.1109,1460436.406,723800.1142,21
+6542,606497.5256,1459714.564,719379.3956,21
+6543,606292.1886,1459190.755,717637.981,21
+6544,606257.9967,1457982.327,714545.8257,21
+6545,605806.3963,1458035.812,713193.2028,21
+6546,605811.4814,1456885.909,710107.5618,21
+6547,605943.0787,1456257.681,708217.5358,21
+6548,605412.7551,1455501.227,705327.129,21
+6549,605674.1355,1454881.645,703678.7195,21
+6550,604916.9291,1454614.485,700998.6684,21
+6551,605211.9777,1453144.139,698486.8634,21
+6552,605221.6943,1453223.149,696046.0915,21
+6553,605080.5059,1452000.454,693742.188,21
+6554,605179.1261,1452222.321,691754.3859,21
+6555,604768.8181,1450413.943,688914.421,21
+6556,605081.4147,1450752.725,686477.3537,21
+6557,604970.1165,1449382.284,684500.5468,21
+6558,604851.4913,1449093.586,681818.9751,21
+6559,605109.2768,1449140.464,679371.8684,21
+6560,605134.3681,1447466.046,676961.1207,21
+6561,604769.6463,1447742.791,674829.6896,21
+6562,605288.3643,1446862.681,671903.2031,21
+6563,604894.9267,1445830.315,669991.2017,21
+6564,605221.2252,1445953.634,667130.9224,21
+6565,605070.0697,1444674.972,665035.9893,21
+6566,604937.5061,1445179.612,661896.7562,21
+6567,605243.8928,1443516.524,660251.2234,21
+6568,604975.8306,1443517.034,657244.4069,21
+6569,605376.7243,1442550.422,655024.1129,21
+6570,604960.4913,1442779.702,652348.1219,21
+6571,605954.0446,1441332.29,649692.5854,21
+6572,605701.1924,1441374.499,647527.6238,21
+6573,606824.2137,1440711.005,645121.3132,21
+6574,607486.9352,1439798.875,642436.3936,21
+6575,607779.1118,1439517.162,640398.0359,21
+6576,608370.808,1438763.039,637758.0519,21
+6577,609007.1789,1438271.604,635720.1445,21
+6578,609606.7117,1437951.687,632887.1489,21
+6579,610372.8819,1436994.796,630573.8462,21
+6580,610680.7268,1436748.418,628088.2505,21
+6581,611248.6974,1435711.248,626073.5188,21
+6582,612424.9836,1435598.042,623051.5795,21
+6583,612063.9967,1434970.607,620984.1401,21
+6584,613242.5967,1434514.375,618698.1943,21
+6585,613773.9264,1433598.195,615910.2219,21
+6586,614168.2855,1433334.431,613492.3189,21
+6587,614997.8638,1432973.337,611419.8475,21
+6588,615538.2917,1431311.846,608307.2182,21
+6589,616469.5025,1432674.452,606685.8011,21
+6590,616818.3351,1430235.275,603593.4065,21
+6591,617535.4526,1430903.065,601311.2545,21
+6592,618205.8168,1429855.015,598638.4624,21
+6593,619257.2102,1429364.353,596825.9884,21
+6594,619449.5359,1428979.27,593732.9099,21
+6595,620352.2155,1427730.965,591184.7412,21
+6596,622029.3499,1427948.083,589068.0435,21
+6597,623219.1417,1427496.993,586433.521,21
+6598,623889.7531,1426276.5,584004.1232,21
+6599,624632.9796,1426162.157,581856.6116,21
+6600,625415.0412,1425386.472,578759.7618,21
+6601,630198.9743,1431359.478,586326.9069,21
+6602,630826.7898,1431563.953,583698.6532,21
+6603,630862.6003,1432126.459,582771.5901,21
+6604,630927.1055,1431565.349,580711.7751,21
+6605,631306.0995,1431858.56,578408.7402,21
+6606,631427.0625,1431807.542,576618.2987,21
+6607,631881.4043,1431303.308,575366.8667,21
+6608,631753.0425,1431887.994,572309.3984,21
+6609,632398.1408,1431607.464,571821.8784,21
+6610,632430.7111,1431562.338,568723.6241,21
+6611,632486.31,1431212.378,567596.424,21
+6612,632884.5481,1431261.677,565674.7517,21
+6613,633321.6088,1432066.035,563383.2414,21
+6614,633558.0544,1430453.13,562192.2103,21
+6615,633271.2797,1431389.333,559989.3735,21
+6616,634370.5671,1431140.419,558343.1999,21
+6617,634099.1643,1430880.315,556299.4806,21
+6618,634714.5432,1430775.343,554475.1783,21
+6619,635023.3825,1430665.829,552632.7827,21
+6620,635044.5398,1430714.763,550875.4982,21
+6621,634753.8253,1430185.016,549217.36,21
+6622,635442.2912,1430701.597,547757.5581,21
+6623,634986.9074,1430143.703,545000.074,21
+6624,634764.6597,1429844.671,543989.9951,21
+6625,634336.5191,1430432.833,542058.7642,21
+6626,634008.9,1429471.951,539915.2898,21
+6627,633489.0883,1429607.482,538702.7004,21
+6628,633325.099,1429957.215,536470.7275,21
+6629,632481.37,1430540.464,534984.6006,21
+6630,632538.5198,1430445.4,533136.9695,21
+6631,632181.2762,1430435.197,531715.4081,21
+6632,631327.2466,1429941.273,531358.5078,21
+6633,631416.8729,1430149.889,529936.1029,21
+6634,631084.5199,1429644.427,529063.0925,21
+6635,630488.2276,1429871.544,528396.9984,21
+6636,630273.0077,1428392.976,527236.1258,21
+6637,629644.8897,1428490.126,526550.2228,21
+6638,629703.6812,1427537.495,525449.3446,21
+6639,629238.8234,1427895.344,524735.1877,21
+6640,628658.9831,1427674.999,524328.028,21
+6641,628717.8504,1427683.704,522964.1847,21
+6642,628156.911,1427118.687,523041.9365,21
+6643,627732.2386,1426971.406,521947.7291,21
+6644,627776.2526,1427167.851,521917.843,21
+6645,627157.6649,1426598.284,521131.0533,21
+6646,626954.348,1427017.835,520630.899,21
+6647,626752.537,1425760.516,520389.9112,21
+6648,626038.3575,1426508.541,519852.5348,21
+6649,626194.0079,1425796.21,519666.7109,21
+6650,625662.8889,1425499.839,519610.3588,21
+6651,625469.5849,1426037.389,519008.1083,21
+6652,625248.9301,1425298.423,518601.3379,21
+6653,624982.6728,1425009.605,518764.0908,21
+6654,624931.3009,1425076.283,518141.4694,21
+6655,624471.6737,1424719.5,518078.2994,21
+6656,624409.5451,1424939.666,517862.5651,21
+6657,624213.4434,1424131.551,517966.7956,21
+6658,623711.1484,1424452.259,517614.7964,21
+6659,624007.4116,1423692.648,517752.1973,21
+6660,623141.5335,1425001.096,517418.884,21
+6661,619047.0535,1419152.177,510163.2455,21
+6662,619632.235,1419058.6,510873.1153,21
+6663,620206.9264,1419195.895,510993.1285,21
+6664,620517.1986,1418367.265,512966.6362,21
+6665,621850.7083,1419314.125,513028.7071,21
+6666,622068.7113,1417771.891,514840.2448,21
+6667,622804.9157,1418889.821,517097.2349,21
+6668,623685.0383,1417953.302,518584.0205,21
+6669,624307.395,1418462.655,519921.527,21
+6670,624674.8721,1418222.049,520865.2788,21
+6671,625841.3557,1417947.73,522593.4807,21
+6672,626526.6411,1417763.174,523697.423,21
+6673,626834.6755,1417618.455,524918.0251,21
+6674,627795.3537,1417189.176,526732.5893,21
+6675,629437.8965,1418337.899,528317.1476,21
+6676,630300.1772,1416620.518,529454.1123,21
+6677,631059.5236,1417369.375,531139.826,21
+6678,632078.4448,1417119.359,532982.3179,21
+6679,632267.5702,1416556.454,534449.1441,21
+6680,633496.4148,1417473.778,536273.1666,21
+6681,634241.4595,1416170.204,537975.2827,21
+6682,634959.6567,1416612.044,539481.5075,21
+6683,635609.8614,1416309.502,543832.1668,21
+6684,636586.8885,1416522.766,546401.9644,21
+6685,637234.7199,1415996.689,547704.6804,21
+6686,638155.5397,1415797.251,550481.6745,21
+6687,638642.3381,1416240.536,551846.2544,21
+6688,639950.6123,1415839.214,553939.6503,21
+6689,640220.7253,1415485.273,556268.7665,21
+6690,641229.322,1415823.286,558018.8495,21
+6691,641992.9396,1415021.018,559992.1275,21
+6692,642999.2479,1415340.884,561302.5613,21
+6693,643579.9993,1415305.258,563616.3049,21
+6694,644634.1326,1414692.233,564823.5436,21
+6695,645340.7247,1415275.326,566503.6439,21
+6696,646193.2974,1414533.261,568257.6185,21
+6697,646892.6998,1414454.196,570036.8453,21
+6698,648265.3363,1414756.886,571643.8771,21
+6699,648493.88,1413923.517,572962.4934,21
+6700,649651.2895,1414654.251,575195.2954,21
+6701,650491.3749,1413849.167,576278.9919,21
+6702,651346.7664,1414009.014,578621.4771,21
+6703,652282.8999,1413940.26,579866.1733,21
+6704,653013.273,1413491.556,581931.2304,21
+6705,653750.289,1413227.98,583655.5171,21
+6706,654751.0712,1414065.374,584838.02,21
+6707,656007.2362,1412829.142,586691.7719,21
+6708,656469.7154,1413308.594,587778.9386,21
+6709,657207.4765,1413094.399,588967.242,21
+6710,658728.2875,1412940.48,590523.6154,21
+6711,659065.2706,1412749.746,591904.6594,21
+6712,660118.1071,1412736.754,592948.5775,21
+6713,660909.2668,1412267.014,594475.6349,21
+6714,661815.4067,1412760.797,595770.0221,21
+6715,663174.2446,1412171.125,596815.076,21
+6716,663337.5655,1412003.804,598273.8518,21
+6717,663919.3528,1412484.317,599639.952,21
+6718,664989.9516,1411338.291,600822.2706,21
+6719,665044.3616,1411947.42,601639.2073,21
+6720,666472.7164,1411708.918,603510.1522,21
+6721,667201.1814,1411007.425,604992.4948,21
+6722,668026.0567,1409163.255,606983.2684,21
+6723,669223.3393,1409543.082,608509.0045,21
+6724,669796.1047,1407530.498,610712.6778,21
+6725,670795.1832,1406931.953,612237.264,21
+6726,671552.6685,1405816.612,614415.6533,21
+6727,672784.6357,1405541.054,615616.4723,21
+6728,673280.5022,1403863.301,617672.6179,21
+6729,674280.6998,1403395.622,619683.6797,21
+6730,675371.5644,1402700.023,621616.4149,21
+6731,676231.4238,1400545.35,623443.2676,21
+6732,676970.8238,1401267.51,625351.2559,21
+6733,678162.7903,1399225.529,627173.1633,21
+6734,678803.1313,1398358.29,629087.1592,21
+6735,679773.6626,1398029.339,631045.1412,21
+6736,680865.0672,1396237.071,632730.703,21
+6737,681784.1782,1396407.78,634969.7005,21
+6738,683133.1182,1394286.298,636615.0658,21
+6739,684371.0584,1394224.361,638805.3219,21
+6740,685598.1557,1393015.011,640848.2738,21
+6741,686810.8851,1391611.417,642171.9223,21
+6742,687554.9026,1391507.903,644925.7003,21
+6743,689110.3577,1390797.712,646072.4599,21
+6744,690440.9612,1390786.364,648772.7062,21
+6745,691102.9223,1389203.342,650375.205,21
+6746,692522.5974,1388550.387,652703.7013,21
+6747,693750.1654,1387524.481,654247.4816,21
+6748,694994.2819,1386415.095,656928.1702,21
+6749,695916.3922,1385672.3,657987.2964,21
+6750,696892.8556,1384389.089,660734.4454,21
+6751,697781.6618,1382190.605,662646.3195,21
+6752,698477.3836,1382121.227,664878.1114,21
+6753,700357.7089,1379846.55,666280.6799,21
+6754,701061.7732,1379981.413,668649.1944,21
+6755,702081.6501,1378686.856,670953.8427,21
+6756,703655.1193,1377304.979,672883.9996,21
+6757,704155.1516,1376378.084,674602.5828,21
+6758,706262.7369,1376078.098,677328.0322,21
+6759,706700.4169,1374305.09,678955.366,21
+6760,708349.9509,1373845.286,681020.5783,21
+6761,709431.4568,1372468.16,683272.7424,21
+6762,710403.8391,1371675.61,684825.5719,21
+6763,711583.8872,1370650.89,687450.9414,21
+6764,712969.2223,1369595.632,689491.5632,21
+6765,713669.0289,1368547.242,691652.4165,21
+6766,714932.803,1367523.508,693859.1962,21
+6767,716274.9789,1366393.289,695423.2719,21
+6768,717184.8466,1365842.432,698059.6807,21
+6769,725079.3054,1364108.68,699575.6112,21
+6770,727674.1509,1363669.357,702852.8103,21
+6771,728717.491,1362542.583,706170.1488,21
+6772,730599.1474,1361046.301,708672.4795,21
+6773,730966.7827,1360301.249,712599.1752,21
+6774,732937.3562,1358884.928,715534.5229,21
+6775,734203.1058,1357857.41,718613.8188,21
+6776,742473.8375,1357011.287,721581.6342,21
+6777,740379.1099,1355613.945,724866.4827,21
+6778,743617.7618,1354630.544,727981.6261,21
+6779,744582.7752,1353272.501,731037.1288,21
+6780,746625.5979,1350344.045,733827.4957,21
+6781,804352.3539,1422426.454,821378.7147,21
+6782,808777.3051,1427029.629,817423.8091,21
+6783,811273.4937,1427832.694,826477.1176,21
+6784,813483.5995,1431269.839,971192.3077,21
+6785,816373.683,1437808.824,822068.2706,21
+6786,824965.6506,1435364.21,949581.144,21
+6787,831077.4562,1436831.176,895120.5454,21
+6788,828765.3712,1438567.965,1169609.206,21
+6789,833299.7561,1439260.144,817374.9635,21
+6790,835403.3976,1440328.722,824671.1914,21
+6791,837303.3305,1441411.632,901447.8042,21
+6792,839988.1921,1442082.661,866702.2502,21
+6793,842024.9065,1443342.277,830488.6182,21
+6794,844043.1748,1444287.764,834277.2031,21
+6795,846100.8809,1444188.968,839447.826,21
+6796,848109.7402,1445317.819,843421.1647,21
+6797,850711.3018,1446840.728,848027.8825,21
+6798,851948.5173,1446682.863,851754.0948,21
+6799,854489.2,1447354.525,1681666.534,21
+6800,855825.4904,1448940.972,859679.8845,21
+6801,858167.2967,1468133.552,864195.6683,21
+6802,860001.1472,1464314.71,1722160.17,21
+6803,861386.833,1466300.428,871259.1163,21
+6804,863736.3958,1467755.814,875871.305,21
+6805,865542.8348,1469517.866,1738237.824,21
+6806,867114.1905,1470953.876,882567.4195,21
+6807,868665.0667,1472785.421,886214.4234,21
+6808,870909.8003,1473254.674,1750930.544,21
+6809,872226.2665,1474878.937,892926.0535,21
+6810,873965.6546,1476187.257,1360658.384,21
+6811,876084.6248,1476645.942,880970.051,21
+6812,876799.0256,1479656.416,890059.5381,21
+6813,879068.7086,1481368.442,927862.6153,21
+6814,880917.8473,1481050.452,1217802.366,21
+6815,882049.3714,1483192.242,883250.1186,21
+6816,883806.2237,1484008.806,889138.0988,21
+6817,890311.6446,1484366.4,892119.913,21
+6818,897125.8894,1485807.767,956258.3701,21
+6819,895532.2857,1486731.13,1261512.798,21
+6820,899186.3872,1487806.315,906449.1229,21
+6821,902090.7341,1487305.019,915259.6823,21
+6822,903546.6898,1487943.662,1187361.755,21
+6823,905631.0789,1489226.402,908636.0139,21
+6824,908780.6895,1489570.145,915626.7256,21
+6825,910046.1656,1490174.026,1263349.458,21
+6826,912020.6367,1491435.48,910005.1453,21
+6827,914412.7787,1492048.099,915361.0065,21
+6828,915575.5254,1492765.991,920616.3848,21
+6829,919278.8883,1493628.818,963544.5326,21
+6830,919158.9995,1493615.038,929460.2302,21
+6831,922812.7447,1495825.741,934462.5282,21
+6832,923681.1266,1495680.73,939726.7827,21
+6833,926384.5445,1496277.752,944053.093,21
+6834,927985.033,1496353.779,949191.7172,21
+6835,929845.1598,1498205.647,953641.9586,21
+6836,932038.8205,1498131.243,957638.218,21
+6837,932860.1388,1498406.363,1760872.417,21
+6838,935497.5886,1499632.531,967213.8839,21
+6839,936956.9914,1500562.801,971669.5523,21
+6840,938658.7159,1500475.025,1803197.247,21
+6841,1001592.658,1565155.298,1007048.185,21
+6842,1007504.04,1571343.504,1012820.975,21
+6843,1010265.988,1571923.451,1848691.826,21
+6844,1013521.649,1575512.236,1019002.426,21
+6845,1015480.991,1575781.741,1023348.624,21
+6846,1018298.931,1577023.889,1863631.436,21
+6847,1021340.418,1579536.685,1047768.186,21
+6848,1021796.425,1579954.16,1043864.251,21
+6849,1025943.262,1581718.317,1888612.619,21
+6850,1027743.989,1581826.758,1054172.104,21
+6851,1028466.694,1584425.411,1059323.352,21
+6852,1032776.654,1584949.655,1902645.745,21
+6853,1033134.268,1587070.39,1066832.714,21
+6854,1036329.087,1586886.634,1070476.894,21
+6855,1037422.316,1589126.121,1916972.303,21
+6856,1040607.006,1588650.246,1077002.903,21
+6857,1042117.744,1591192.855,1083022.859,21
+6858,1042662.018,1591441.879,1927532.455,21
+6859,1046405.88,1593166.669,1088895.119,21
+6860,1048404.961,1593199.729,1092286.964,21
+6861,1049727.6,1594444.196,1938829.693,21
+6862,1051609.147,1595643.522,1099271.778,21
+6863,1053662.483,1596606.22,1101889.332,21
+6864,1055102.414,1597474.071,1949352.495,21
+6865,1057538.941,1598846.011,1108716.649,21
+6866,1058165.298,1597724.187,1111184.124,21
+6867,1061295.191,1601553.945,1958479.338,21
+6868,1062780.147,1599907.589,1117305.309,21
+6869,1064621.797,1602194.068,1120400.994,21
+6870,1065199.877,1602542.009,1968508.818,21
+6871,1068350.049,1602849.236,1125508.65,21
+6872,1069853.677,1604338.354,1129210.586,21
+6873,1071441.692,1605284.368,1976892.271,21
+6874,1072325.195,1605608.04,1133789.061,21
+6875,1074786.102,1605602.664,1137290.454,21
+6876,1076706.135,1608253.396,1984994.494,21
+6877,1078177.813,1608331.354,1142019.646,21
+6878,1078977.881,1608378.765,1144696.636,21
+6879,1081719.608,1609449.929,1992939.303,21
+6880,1082141.587,1611358.613,1149768.478,21
+6881,1084427.179,1609138.953,1151734.155,21
+6882,1086355.229,1613035.914,2000060.101,21
+6883,1087131.183,1611703.474,1157374.821,21
+6884,1089734.481,1613073.87,1158778.904,21
+6885,1089545.669,1614725.719,2006626.574,21
+6886,1093821.252,1613768.953,1164692.923,21
+6887,1092642.224,1615023.207,1166583.911,21
+6888,1095598.555,1616494.439,2012356.967,21
+6889,1097124.413,1615734.39,1171945.677,21
+6890,1098013.595,1617450.433,1173365.229,21
+6891,1100887.968,1618393.882,2017934.802,21
+6892,1100541.029,1617607.673,1179289.467,21
+6893,1103104.189,1619189.538,1179782.677,21
+6894,1104547.559,1619133.42,2024748.51,21
+6895,1105409.894,1621162.24,1185242.909,21
+6896,1106968.415,1619501.735,1186018.873,21
+6897,1109311.351,1622515.767,2031492.183,21
+6898,1109746.952,1622057.776,1190718.723,21
+6899,1110965.26,1621957.833,1193516.124,21
+6900,1114066.898,1623143.042,2036278.304,21
+6901,1113625.109,1624854.124,1197924.524,21
+6902,1116700.212,1621868.291,1200014.587,21
+6903,1116415.588,1625292.799,2043180.295,21
+6904,1119302.041,1622979.308,1205366.276,21
+6905,1119168.711,1624439.283,1207248.37,21
+6906,1120454.164,1622343.701,2049891.219,21
+6907,1122213.006,1623529.086,1211824.804,21
+6908,1123375.671,1623627.079,1214624.475,21
+6909,1123040.619,1623237.969,2056984.319,21
+6910,1125719.666,1623173.371,1218644.922,21
+6911,1126749.456,1622181.309,1221638.942,21
+6912,1126944.981,1623514.715,2062487.008,21
+6913,1129017.971,1621993.626,1226448.311,21
+6914,1128941.836,1621856.357,1227230.293,21
+6915,1131688.227,1623736.688,2069907.8,21
+6916,1131100.855,1620232.394,1232323.582,21
+6917,1133641.134,1624024.022,1235365.706,21
+6918,1133755.229,1621095.564,2075267.683,21
+6919,1135310.741,1622831.19,1239049.393,21
+6920,1135837.463,1622228.39,1242118.97,21
+6921,1137823.856,1623160.019,2080965.021,21
+6922,1137944.861,1622767.317,1247080.786,21
+6923,1139298.429,1622117.804,1246900.289,21
+6924,1141097.071,1623323.313,2088053.973,21
+6925,1140595.885,1621511.466,1252443.52,21
+6926,1143237.742,1622399.126,1254986.397,21
+6927,1142997.711,1621818.913,2092689.839,21
+6928,1144658.96,1622149.478,1259823.571,21
+6929,1145389.755,1621116.209,1261086.504,21
+6930,1147110.823,1620973.56,2098117.185,21
+6931,1147258.606,1622020.088,1266157.674,21
+6932,1148586.059,1620484.58,1267094.44,21
+6933,1149799.423,1621522.274,2105064.484,21
+6934,1149768.563,1619740.91,1270999.42,21
+6935,1152526.435,1621305.542,1274074.755,21
+6936,1151787.484,1619904.603,2110303.842,21
+6937,1154253.554,1619457.926,1278396.538,21
+6938,1154532.374,1620703.331,1280503.507,21
+6939,1155535.028,1619437.717,2115313.944,21
+6940,1156359.37,1619070.968,1284154.256,21
+6941,1157404.304,1619368.066,1286729.037,21
+6942,1157836.583,1619687.957,2121758.649,21
+6943,1160181.427,1616786.084,1289918.555,21
+6944,1160002.047,1620898.19,1292679.576,21
+6945,1161700.868,1616418.236,2126575.073,21
+6946,1161573.331,1618691.892,1296986.666,21
+6947,1163645.847,1617893.584,1297950.59,21
+6948,1164546.135,1617646.341,2132528.99,21
+6949,1164091.921,1616848,1302977.762,21
+6950,1166372.136,1617823.021,1304284.426,21
+6951,1166985.686,1616240.813,2137687.803,21
+6952,1167383.872,1616973.825,1308566.205,21
+6953,1168809.689,1615465.904,1310761.951,21
+6954,1169872.894,1616829.219,2141766.512,21
+6955,1170646.446,1615347.543,1315486.658,21
+6956,1170503.689,1615909.005,1316182.228,21
+6957,1173577.433,1615027.009,2147869.965,21
+6958,1172453.555,1614942.202,1321032.587,21
+6959,1174645.047,1614789.563,1322808.142,21
+6960,1175474.196,1614582.78,2151552.9,21
+6961,1185071.132,1623040.7,1334089.718,21
+6962,1184821.746,1626648.673,1336565.266,21
+6963,1184074.396,1625328.756,2164831.289,21
+6964,1184867.055,1628202.042,1340372.46,21
+6965,1580023.319,1626854.004,1343560.256,21
+6966,1184608,1628488.656,2170233.347,21
+6967,1183772.556,1629530.305,1347779.243,21
+6968,1588145.032,1629323.314,1349788.917,21
+6969,1183641.131,1629113.732,2176262.161,21
+6970,1182868.977,1630241.131,1354106.318,21
+6971,1588799.068,1631626.185,1783537.921,21
+6972,1182328.084,1631029.7,1331282.025,21
+6973,1182812.874,1631329.706,1352795.899,21
+6974,1587255.275,1632723.442,1394436.456,21
+6975,1182266.445,1631441.686,1349317.413,21
+6976,1180655.102,1632987.942,1351227.995,21
+6977,1587779.187,1633192.53,1649745.106,21
+6978,1180319.022,1634841.157,1342407.923,21
+6979,1179888.05,1633534.103,1350674.115,21
+6980,1586308.464,1634475.076,1375727.148,21
+6981,1179276.306,1635346.422,1356552.03,21
+6982,1179001.377,1635803.193,1362738.624,21
+6983,1585128.778,1635761.686,1629829.718,21
+6984,1178441.319,1635960.799,1353965.549,21
+6985,1178459.067,1634879.751,1363516.332,21
+6986,1582709.046,1636816.882,1388249.13,21
+6987,1177599.667,1635360.305,1369674.215,21
+6988,1176306.906,1636955.912,1376357.403,21
+6989,1582935.11,1637200.312,1610622.366,21
+6990,1175032.172,1636912.608,1372136.01,21
+6991,1175496.175,1637946.45,1377544.861,21
+6992,1578495.208,1637139.39,1382343.906,21
+6993,1174163.268,1638204.218,1387967.982,21
+6994,1172736.29,1638746.467,1677021.207,21
+6995,1579215.822,1638567.675,1377796.695,21
+6996,1171570.83,1639020.492,1388823.247,21
+6997,1171127.688,1640729.683,1512634.446,21
+6998,1578093.52,1638479.245,1389556.569,21
+6999,1170409.138,1640602.473,1395053.606,21
+7000,1168722.109,1640359.154,1401200.34,21
+7001,1577180.479,1640996.31,1406200.236,21
+7002,1169464.352,1640929.293,1413853.272,21
+7003,1167267.778,1641316.247,1416621.771,21
+7004,1169175.26,1643928.286,1424393.904,21
+7005,1167306.443,1640636.44,1427693.239,21
+7006,1166989.367,1642392.526,1434611.941,21
+7007,1166613.91,1642749.854,1437167.838,21
+7008,1165904.041,1642856.804,1443973.714,21
+7009,1165757.191,1643082.748,1446101.108,21
+7010,1164362.352,1643566.696,1452261.707,21
+7011,1164934.734,1642989.494,1456345.615,21
+7012,1163740.21,1645180.142,1459395.958,21
+7013,1162788.056,1643299.082,1463916.662,21
+7014,1163377.017,1645201.291,1469053.44,21
+7015,1161979.141,1644515.458,1469460.529,21
+7016,1162322.257,1645252.686,1476970.167,21
+7017,1160522.499,1645086.732,1477655.161,21
+7018,1161784.908,1645771.338,1482639.88,21
+7019,1159574.944,1646446.95,1486199.203,21
+7020,1159617.589,1645354.155,1488140.688,21
+7021,1161072.218,1647794.485,1493068.672,21
+7022,1164303.453,1649012.955,1497312.965,21
+7023,1162959.914,1651543.821,1498800.672,21
+7024,1166395.195,1650280.405,1503432.822,21
+7025,1166580.354,1653944.531,1507117.236,21
+7026,1168034.43,1652679.555,1507282.708,21
+7027,1169591.004,1655299.642,1511347.839,21
+7028,1170190.447,1655406.932,1515864.307,21
+7029,1171250.733,1657018.624,1515484.561,21
+7030,1172632.623,1657729.685,1520234.297,21
+7031,1174293.656,1659035.276,1523228.566,21
+7032,1174983.038,1659304.173,1523814.943,21
+7033,1175498.71,1660698.679,1527417.309,21
+7034,1178392.433,1661755.599,1532060.55,21
+7035,1177932.64,1663008.725,1530792.647,21
+7036,1180187.983,1664016.52,1536304.743,21
+7037,1179927.362,1664207.353,1538286.446,21
+7038,1182336.116,1666827.799,1538414.209,21
+7039,1182793.118,1666852.966,1543791.27,21
+7040,1184447.088,1667336.985,1544658.594,21
+7041,1185484.604,1669640.838,1547680.854,21
+7042,1186283.025,1669288.427,1548502.436,21
+7043,1187700.436,1670809.494,1554049.453,21
+7044,1187791.435,1671585.828,1553954.521,21
+7045,1190856.728,1674685.603,1556825.587,21
+7046,1190221.511,1672518.116,1558828.959,21
+7047,1191703.251,1674797.242,1560948.743,21
+7048,1194214.545,1676626.141,1564434.596,21
+7049,1193186.058,1676745.546,1565936.573,21
+7050,1195570.892,1678064.63,1567783.198,21
+7051,1196090.97,1678293.587,1570047.935,21
+7052,1197997.021,1680139.159,1573329.41,21
+7053,1197557.719,1681652.918,1575868.806,21
+7054,1200133.697,1681224.575,1576642.814,21
+7055,1200491.856,1682940.606,1578181.311,21
+7056,1201697.389,1683817.147,1583759.202,21
+7057,1202391.159,1684735.404,1581750.165,21
+7058,1204771.865,1685357.304,1587598.893,21
+7059,1203616.287,1688226.636,1587468.34,21
+7060,1207832.007,1686354.465,1590109.905,21
+7061,1205907.367,1690016.884,1592387.36,21
+7062,1210031.729,1689285.771,1594843.6,21
+7063,1208590.649,1690510.549,1595969.198,21
+7064,1211382.067,1691975.516,1600999.749,21
+7065,1210716.318,1693471.739,1598930.271,21
+7066,1213747.793,1695000.265,1604336.277,21
+7067,1213214.183,1695459.176,1605451.218,21
+7068,1214052.145,1696519.356,1607089.271,21
+7069,1216275.952,1698881.01,1609251.44,21
+7070,1215888.715,1697237.486,1611989.076,21
+7071,1217147.826,1700757.73,1613712.856,21
+7072,1218435.198,1699440.06,1615189.958,21
+7073,1219570.756,1703093.666,1618237.266,21
+7074,1218397.628,1701075.361,1620661.505,21
+7075,1222409.369,1703930.671,1621758.6,21
+7076,1220449.624,1704764.148,1623861.996,21
+7077,1222257.943,1705292.126,1626975.876,21
+7078,1223247.012,1706896.07,1628355.486,21
+7079,1222805.202,1706687.6,1628514.881,21
+7080,1222242.649,1708515.967,1634312.523,15.6
+7081,0,0,0,15.6
+7082,0,0,255367.6452,15.6
+7083,0,259.2955724,0,15.6
+7084,0,0,0,15.6
+7085,0,0,0,15.6
+7086,0,0,0,15.6
+7087,0,0,0,15.6
+7088,0,0,1380454.311,15.6
+7089,0,0,0,15.6
+7090,0,0,733578.9782,15.6
+7091,0,0,0,15.6
+7092,0,0,0,15.6
+7093,0,0,757937.9612,15.6
+7094,0,59.98914864,0,15.6
+7095,0,0,0,15.6
+7096,0,0,763945.8349,15.6
+7097,0,0,0,15.6
+7098,0,0,0,15.6
+7099,0,0,767006.8339,15.6
+7100,0,0,0,15.6
+7101,0,66.01670665,0,15.6
+7102,0,0,769469.0403,15.6
+7103,0,0,0,15.6
+7104,339241.9286,0,0,15.6
+7105,0,0,771764.5366,15.6
+7106,0,0,0,15.6
+7107,0,0,0,15.6
+7108,0,0,773937.4369,15.6
+7109,0,0,0,15.6
+7110,0,0,0,15.6
+7111,0,0,776038.46,15.6
+7112,0,0,0,15.6
+7113,0,0,0,15.6
+7114,0,0,778040.8513,15.6
+7115,0,0,0,15.6
+7116,0,0,0,15.6
+7117,0,0,779972.8741,15.6
+7118,0,0,0,15.6
+7119,0,0,0,15.6
+7120,0,0,781803.5164,15.6
+7121,0,0,0,15.6
+7122,0,0,0,15.6
+7123,0,0,783571.2244,15.6
+7124,0,0,0,15.6
+7125,0,0,0,15.6
+7126,0,0,1927259.74,15.6
+7127,0,0,0,15.6
+7128,0,0,0,15.6
+7129,0,0,768483.6347,15.6
+7130,0,3.695818798,0,15.6
+7131,0,0,0,15.6
+7132,0,80.17704314,831099.6382,15.6
+7133,0,0,69665.43176,15.6
+7134,0,0,187041.9536,15.6
+7135,0,0,838035.0429,15.6
+7136,0,7.315270632,69970.94858,15.6
+7137,0,0,186411.3939,15.6
+7138,0,97.46903943,836332.2714,15.6
+7139,0,0,70572.86393,15.6
+7140,0,0,185879.4362,15.6
+7141,0,0,834396.4888,15.6
+7142,0,38763.25733,71109.41103,15.6
+7143,0,2463.528966,185616.7932,15.6
+7144,30058.86588,3644.566311,832725.1549,15.6
+7145,340317.9217,17531.91916,71569.22897,15.6
+7146,2536.698099,10568.2037,185160.5564,15.6
+7147,9924.332575,11741.70952,831212.6497,15.6
+7148,8886.669476,11959.21863,71962.24275,15.6
+7149,9810.426425,441546.4058,184682.2772,15.6
+7150,9232.148023,12160.83234,829748.222,15.6
+7151,9793.354327,12329.00052,72295.99381,15.6
+7152,9961.72191,12391.97326,184230.1407,15.6
+7153,10204.23155,12522.65516,828357.8067,15.6
+7154,10316.9034,12637.1108,72582.27612,15.6
+7155,10533.92396,12751.40816,183786.8834,15.6
+7156,10675.27159,12834.98768,827016.8608,15.6
+7157,10828.05606,12967.49129,72833.03662,15.6
+7158,11054.66817,13044.97113,183377.1741,15.6
+7159,11174.87381,441119.8368,825752.6895,15.6
+7160,11333.36807,13239.51099,73057.97252,15.6
+7161,11513.48426,13371.43787,0,15.6
+7162,11670.07718,13470.15671,755857.4001,15.6
+7163,11817.77797,13546.70752,184212.5014,15.6
+7164,11955.26213,13639.30138,1296262.549,15.6
+7165,12161.01469,13763.55185,845690.4465,15.6
+7166,12255.87776,13781.59331,116883.4207,15.6
+7167,12445.67855,14010.3371,210573.179,15.6
+7168,12550.77718,13979.81576,850247.3102,15.6
+7169,12758.83689,441987.2532,115735.8457,15.6
+7170,12844.84483,14169.35902,205924.3617,15.6
+7171,13002.69949,14346.99348,850473.3483,15.6
+7172,13186.4299,0,115791.3918,15.6
+7173,13291.7889,0,205413.1656,15.6
+7174,0,0,849978.4315,15.6
+7175,0,0,116085.0227,15.6
+7176,0,0,205352.7281,15.6
+7177,0,60038.52553,849730.1155,15.6
+7178,54288.53936,0,116452.1441,15.6
+7179,0,432321.0839,205492.1414,15.6
+7180,7231.868884,22965.12377,849478.0507,15.6
+7181,20908.02185,14069.83338,116930.7986,15.6
+7182,13317.7954,15144.22834,205731.0685,15.6
+7183,14751.40584,15394.52966,849351.7117,15.6
+7184,14828.64945,15561.617,117394.3733,15.6
+7185,15000.08359,15547.49534,205993.6247,15.6
+7186,354385.298,15682.76495,849392.5258,15.6
+7187,15240.27921,15724.60629,118247.9239,15.6
+7188,15347.36949,15824.6238,206616.6949,15.6
+7189,15491.20026,443537.0159,849547.3751,15.6
+7190,15609.36917,15953.58484,118799.9686,15.6
+7191,15681.89906,16049.66148,207018.5934,15.6
+7192,15886.1353,16091.03267,849676.3353,15.6
+7193,15907.74236,16148.84012,0,15.6
+7194,16103.31699,16223.40058,0,15.6
+7195,16159.3153,16305.54464,734463.8058,15.6
+7196,16318.80178,16366.48668,0,15.6
+7197,16418.32615,16437.13647,0,15.6
+7198,16511.17762,16488.47979,737992.9279,15.6
+7199,16622.80028,444188.8053,0,15.6
+7200,16738.49382,16619.32663,292824.2802,15.6
+7201,16978.65246,16948.10139,847607.3922,15.6
+7202,17021.22891,17095.48495,114075.9499,15.6
+7203,17047.93364,17151.61065,1267844.296,15.6
+7204,17052.88356,17336.15746,841918.018,15.6
+7205,17122.62652,17432.06952,119861.3408,15.6
+7206,17122.0071,17541.10324,206919.2554,15.6
+7207,17154.16424,0,841437.5971,15.6
+7208,0,0,120637.9384,15.6
+7209,0,427556.4593,206844.7209,15.6
+7210,0,0,842008.6579,15.6
+7211,62906.73538,74382.85801,120764.641,15.6
+7212,0,0,207185.1476,15.6
+7213,12647.34346,5020.102139,842593.0783,15.6
+7214,22653.8891,29185.12053,121034.5533,15.6
+7215,16431.22433,16512.53242,207676.3093,15.6
+7216,17357.34269,18621.89023,843268.1546,15.6
+7217,17460.38848,18885.21844,121257.0971,15.6
+7218,17427.92194,18859.07937,208231.946,15.6
+7219,17474.85242,446576.6068,843922.7408,15.6
+7220,17467.01936,19149.75575,121637.3049,15.6
+7221,17520.93504,19234.94283,208712.6035,15.6
+7222,17483.72518,19370.23597,844612.1479,15.6
+7223,17557.47613,19496.7083,121861.722,15.6
+7224,17532.1186,19551.90843,209312.8116,15.6
+7225,17585.91537,19735.60676,845264.5246,15.6
+7226,17574.22131,19761.66437,122154.355,15.6
+7227,17580.35103,19923.4636,209844.9191,15.6
+7228,356861.4223,19984.52366,845920.3503,15.6
+7229,17622.12642,447492.6341,122371.9598,15.6
+7230,17768.14046,20229.61972,0,15.6
+7231,17799.09031,20299.35467,727902.158,15.6
+7232,17787.64578,20417.62341,0,15.6
+7233,17813.30325,20542.2724,0,15.6
+7234,17854.44887,20562.68163,731839.7348,15.6
+7235,17816.10044,20760.00539,222967.9243,15.6
+7236,17832.80681,20825.64192,200852.8436,15.6
+7237,17882.79405,20917.4568,848290.4184,15.6
+7238,17844.44558,21027.90279,132758.3109,15.6
+7239,17888.08997,448407.3806,216044.8493,15.6
+7240,17858.57646,21246.74251,854786.7096,15.6
+7241,0,0,124969.2018,15.6
+7242,0,0,1249782.635,15.6
+7243,0,0,837843.5607,15.6
+7244,65388.46505,79493.06042,122143.32,15.6
+7245,1697.630477,0,209060.5222,15.6
+7246,11598.41112,14549.02734,839061.7172,15.6
+7247,24013.24344,29468.2815,122344.107,15.6
+7248,16967.74015,20648.06249,209688.3605,15.6
+7249,17960.71333,449409.3806,840250.5559,15.6
+7250,18025.41522,22286.59956,122620.6133,15.6
+7251,17999.58266,344284.5657,210309.0038,15.6
+7252,18041.58009,47327.15585,841441.151,15.6
+7253,18006.043,63031.36526,122871.9726,15.6
+7254,18010.89495,168924.2327,211018.6381,15.6
+7255,18006.039,116516.4875,842563.7398,15.6
+7256,18003.30232,124385.9252,180507.5414,15.6
+7257,18039.37417,126504.6276,247614.6886,15.6
+7258,17945.4978,127166.8606,911489.1517,15.6
+7259,18060.93203,555245.2398,189822.7133,15.6
+7260,17957.13754,129219.558,249161.5742,15.6
+7261,18074.87513,129876.7204,915207.3239,15.6
+7262,18130.39645,131190.1495,191636.8818,15.6
+7263,18190.47127,131302.3381,251153.3525,15.6
+7264,18232.09582,133101.9421,919347.9735,15.6
+7265,18340.83529,133430.0524,67876.90173,15.6
+7266,18390.31099,134895.9525,171689.7085,15.6
+7267,18436.28053,134794.0682,795106.3509,15.6
+7268,18506.47243,136876.9838,68579.70325,15.6
+7269,18609.76953,564290.4772,374025.7301,15.6
+7270,357816.3763,138089.0324,905886.797,15.6
+7271,18776.69659,139074.6307,183864.59,15.6
+7272,18717.38204,139897.7703,269811.9633,15.6
+7273,18842.30772,141300.231,925392.4713,15.6
+7274,0,117405.6675,198903.9161,15.6
+7275,0,118432.2189,258115.7214,15.6
+7276,0,119118.197,930075.3276,15.6
+7277,70182.36563,211535.088,200318.5921,15.6
+7278,3613.134027,125499.5242,259195.5333,15.6
+7279,10700.86223,561476.4359,932954.5094,15.6
+7280,26462.1434,157069.3828,201732.0132,15.6
+7281,18092.93356,23250.62536,260501.0836,15.6
+7282,19429.78916,24938.3293,1971668.15,15.6
+7283,274749.0684,25097.86393,198736.2747,15.6
+7284,19536.726,25144.61833,254639.6685,15.6
+7285,34206.69629,25225.35993,849979.3748,15.6
+7286,81878.52169,25276.43134,129599.0011,15.6
+7287,94188.44321,532186.4249,218565.4985,15.6
+7288,72460.5004,25425.8184,851152.8523,15.6
+7289,79769.27829,500615.1505,130374.9063,15.6
+7290,80009.80184,221630.2761,219404.5544,15.6
+7291,80489.34246,149230.7509,852304.8975,15.6
+7292,80823.26391,157960.8909,131128.2571,15.6
+7293,81152.98465,160393.6849,220236.8487,15.6
+7294,81527.19424,161359.7907,853422.6849,15.6
+7295,81959.40725,162054.0507,131909.913,15.6
+7296,83598.61777,162334.332,221014.7674,15.6
+7297,87440.48936,164113.3115,854533.9958,15.6
+7298,85875.11662,163943.4708,132606.9642,15.6
+7299,87359.29907,592069.3709,0,15.6
+7300,87946.88655,166193.6513,726442.9199,15.6
+7301,88840.36421,166457.5151,0,15.6
+7302,89495.50489,167723.5937,347789.683,15.6
+7303,90437.26716,168320.9941,838121.5714,15.6
+7304,90887.9269,168778.789,124219.4732,15.6
+7305,91768.19924,170205.9609,237101.3121,15.6
+7306,92449.3581,170671.9006,858399.6526,15.6
+7307,72331.52114,144301.703,135691.964,15.6
+7308,73275.88031,145580.1291,225838.7238,15.6
+7309,73628.60651,572701.5391,860612.2419,15.6
+7310,151942.4161,249415.451,136058.9542,15.6
+7311,82387.0031,157545.9887,226182.1185,15.6
+7312,424040.3134,157301.0066,861062.4758,15.6
+7313,29765.60569,189169.4888,136676.616,15.6
+7314,19876.3865,174814.1253,226594.4824,15.6
+7315,21251.19664,177931.3886,861647.1749,15.6
+7316,21310.40861,178616.3386,137324.2684,15.6
+7317,21461.61671,27679.99389,227131.488,15.6
+7318,21404.25924,27737.70574,862243.1242,15.6
+7319,21499.56405,454527.4579,137971.3073,15.6
+7320,21521.12484,27920.99908,227737.1952,15.6
+7321,334115.7246,617598.3183,862825.6791,15.6
+7322,30510.08945,27902.64953,1170940.576,15.6
+7323,55225.65265,95064.07945,220929.9048,15.6
+7324,107895.2185,260224.5695,846550.6092,15.6
+7325,112810.8801,170294.3998,135916.8543,15.6
+7326,92578.89726,184961.0305,221887.8285,15.6
+7327,96568.26974,185885.0401,848379.8749,15.6
+7328,96011.26386,186710.9367,136426.9624,15.6
+7329,95168.40375,613521.2563,222970.0183,15.6
+7330,94587.42439,187382.4376,849976.5507,15.6
+7331,93545.82798,187849.2927,137083.2519,15.6
+7332,93159.2825,188309.6963,0,15.6
+7333,92011.04739,188578.1826,717819.6321,15.6
+7334,91352.70631,189268.9258,0,15.6
+7335,90691.64899,189578.1839,366917.7679,15.6
+7336,89936.89963,190011.6968,836336.417,15.6
+7337,89245.41567,190190.6638,122041.2082,15.6
+7338,88394.33821,191157.6966,243468.8066,15.6
+7339,87480.10277,617842.0535,854239.6114,15.6
+7340,67402.04076,163025.3167,139665.5008,15.6
+7341,66974.49582,163732.8167,228260.1265,15.6
+7342,65918.32979,251910.4679,857263.7012,15.6
+7343,138512.8524,170627.905,140055.663,15.6
+7344,69016.78478,191552.1489,228555.9984,15.6
+7345,72366.90454,197994.3696,858248.3658,15.6
+7346,90508.54263,193957.4602,140394.9088,15.6
+7347,80136.54144,194517.3315,229150.5223,15.6
+7348,80907.06958,195688.9762,859116.4898,15.6
+7349,79723.14912,622164.2423,141008.1134,15.6
+7350,79297.68492,196252.2477,229717.0503,15.6
+7351,18391.91137,29111.00424,860159.072,15.6
+7352,18330.82579,29132.06512,141348.0817,15.6
+7353,18217.95994,29138.89991,230525.3652,15.6
+7354,357319.6617,29212.48158,860975.5069,15.6
+7355,18027.73734,708970.318,141890.0035,15.6
+7356,17892.69142,29258.33908,231137.9047,15.6
+7357,17778.61124,85899.36961,861915.2718,15.6
+7358,17697.83134,294761.5844,142394.3485,15.6
+7359,17602.00428,607809.0772,231783.1648,15.6
+7360,17447.43682,200197.8692,862710.3692,15.6
+7361,17391.18112,201408.6777,142928.6743,15.6
+7362,17245.56545,201109.5008,232423.6721,15.6
+7363,17137.88478,202124.1892,1877180.458,15.6
+7364,17066.98473,202038.2314,140238.3462,15.6
+7365,16901.90271,202499.1881,0,15.6
+7366,16865.76761,203615.0128,711694.5509,15.6
+7367,16673.38425,202810.3374,0,15.6
+7368,16607.58485,204118.9934,378489.9548,15.6
+7369,16481.12877,630625.1336,838501.4959,15.6
+7370,16366.35342,204463.5191,124898.0786,15.6
+7371,16269.78542,205129.7508,245398.7263,15.6
+7372,16131.4088,175531.1179,852448.2475,15.6
+7373,0,176012.0179,143002.4075,15.6
+7374,0,267777.1915,230932.7916,15.6
+7375,0,184320.8148,855478.5247,15.6
+7376,0,204290.7765,143368.9849,15.6
+7377,68333.1794,211908.6587,231476.1028,15.6
+7378,542.274349,207086.9751,856723.618,15.6
+7379,4906.60627,634691.3439,143974.8099,15.6
+7380,22026.8243,208641.5659,232095.5315,15.6
+7381,14831.59248,208997.9775,858142.6924,15.6
+7382,15281.52614,208883.0454,144489.2765,15.6
+7383,15626.0489,209181.5067,232870.8095,15.6
+7384,15884.17997,209529.8559,859469.591,15.6
+7385,15945.62595,30285.90297,144926.225,15.6
+7386,16117.88297,30339.58908,233737.0703,15.6
+7387,16202.99394,30236.22975,860641.8318,15.6
+7388,16389.46078,30337.7482,145472.5019,15.6
+7389,16524.01556,1190229.84,234528.8573,15.6
+7390,16648.36956,30353.71351,861727.8398,15.6
+7391,16791.58438,101375.1029,146075.7825,15.6
+7392,16924.18381,304405.5375,235236.2543,15.6
+7393,17072.47922,193793.3937,862958.579,15.6
+7394,17170.33243,211450.5914,146518.321,15.6
+7395,17346.14315,212060.8117,236025.6594,15.6
+7396,356686.0933,211905.0421,863961.1008,15.6
+7397,17571.0531,212084.144,147054.3076,15.6
+7398,17774.30571,212276.3158,0,15.6
+7399,17811.17878,638616.9631,721631.397,15.6
+7400,18054.21361,212144.1567,0,15.6
+7401,18107.69742,213047.741,395067.8333,15.6
+7402,18273.11348,212286.0469,863814.1495,15.6
+7403,18374.54883,212852.5466,131326.9945,15.6
+7404,18552.09998,182328.4579,1270623.168,15.6
+7405,18645.97616,181883.6088,851462.8201,15.6
+7406,18800.55631,273966.0683,1680396.984,15.6
+7407,0,190596.8808,960716.3913,15.6
+7408,0,208703.8106,1697399.508,15.6
+7409,258387.8155,643743.1506,1058396.076,15.6
+7410,82687.70173,211541.2059,1094385.793,15.6
+7411,24299.55426,213325.8149,1775368.138,15.6
+7412,70865.52609,212735.771,1076407.107,15.6
+7413,108932.6255,212825.7986,1078886.053,15.6
+7414,82490.80742,213365.8161,1809108.835,15.6
+7415,95725.08229,213295.3428,1091908.26,15.6
+7416,93196.25152,213170.1588,1093577.562,15.6
+7417,96811.06635,213570.3807,1827999.98,15.6
+7418,98610.68366,213774.7567,1104762.351,15.6
+7419,99524.65758,456655.5681,1106805.785,15.6
+7420,100991.6142,30632.3233,1843703.045,15.6
+7421,102087.2282,30672.77896,1116219.7,15.6
+7422,103816.4057,30604.16417,1117335.837,15.6
+7423,104927.6027,783719.7792,1856401.956,15.6
+7424,106230.4138,34460.50073,1125965.612,15.6
+7425,107567.5863,102242.5604,1126072.98,15.6
+7426,108840.4787,309382.818,1867212.452,15.6
+7427,109346.5138,198094.8608,1133677.941,15.6
+7428,110510.2675,215435.5569,1133888.46,15.6
+7429,111766.0788,641964.267,1876284.921,15.6
+7430,113277.1529,215641.0712,1143971.888,15.6
+7431,114414.0744,216262.108,987176.7449,15.6
+7432,115662.8879,216055.2502,1731486.898,15.6
+7433,117308.4932,215976.2679,994415.0921,15.6
+7434,118433.3115,216467.4802,1310970.922,15.6
+7435,119821.1277,215794.0985,1901531.828,15.6
+7436,121268.7206,185774.4162,131519.6947,15.6
+7437,122354.6827,185252.68,273089.8487,15.6
+7438,463087.955,278774.1554,895429.0242,15.6
+7439,23266.81928,620238.4106,157920.0284,15.6
+7440,0,213383.434,255249.3425,17.8
+7441,1021418.537,1423320.79,3589299.319,17.8
+7442,918292.9362,1080315.824,2723092.761,17.8
+7443,443346.5179,229479.1084,2261396.995,17.8
+7444,407317.69,573457.3012,2270869.324,17.8
+7445,377583.564,504229.0735,2611523.979,17.8
+7446,378112.9259,477802.6218,1549213.157,17.8
+7447,370008.6874,471635.6707,2273578.692,17.8
+7448,364115.4866,465146.0863,1546895.904,17.8
+7449,363425.1896,887885.6958,1545737.595,17.8
+7450,362909.0643,459164.1402,2264514.424,17.8
+7451,363271.1348,456336.3676,1558269.976,17.8
+7452,363362.5232,452661.3017,1559091.154,17.8
+7453,363826.1173,86448.32934,2283215.607,17.8
+7454,364001.3037,85883.02923,1567323.858,17.8
+7455,364244.3302,1062529.264,1568031.095,17.8
+7456,364654.2042,259743.5493,2294906.75,17.8
+7457,365477.9617,428636.2435,1575757.247,17.8
+7458,365313.6688,464756.2415,1570727.8,17.8
+7459,366392.3334,861293.7514,2304586.868,17.8
+7460,367238.1651,433463.9321,1578061.392,17.8
+7461,366952.2782,430585.4027,1574375.893,17.8
+7462,368013.1075,428716.1392,2307918.428,17.8
+7463,368659.044,425334.1837,1579523.449,17.8
+7464,369178.0075,423379.2904,1368033.4,17.8
+7465,370317.8996,421328.4408,2106981.537,17.8
+7466,370394.9904,417288.2926,1687422.927,17.8
+7467,371719.6229,414303.2981,1636277.787,17.8
+7468,371698.5907,349670.8501,2297188.695,17.8
+7469,373580.7535,773077.5607,1577420.07,17.8
+7470,373568.012,460424.3666,1577609.051,17.8
+7471,0,391577.9623,946397.4469,17.8
+7472,0,383017.9271,208168.7984,17.8
+7473,870383.8765,384389.4592,299820.8772,17.8
+7474,727147.3913,384181.6182,3504997.521,17.8
+7475,306528.1319,380870.5568,1747998.84,17.8
+7476,410468.3412,428979.4453,1271065.821,17.8
+7477,382294.0408,375761.0603,2363489.557,17.8
+7478,382516.6823,386104.0164,1541833.951,17.8
+7479,382145.7402,819633.6454,1530121.488,17.8
+7480,383068.8624,384435.0878,2260381.772,17.8
+7481,383444.8432,383537.9188,1538169.617,17.8
+7482,384577.5923,381696.6219,2562998.635,17.8
+7483,386013.8983,379745.5011,2226254.704,17.8
+7484,386219.7574,376993.4743,1517533.121,17.8
+7485,387431.9491,74629.16121,1518608.365,17.8
+7486,388616.4612,74338.45296,2246908.177,17.8
+7487,419373.5322,74099.18485,1529208.024,17.8
+7488,392666.0334,1035821.232,1527780.708,17.8
+7489,395702.6578,632449.9327,2261704.587,17.8
+7490,404067.2081,258999.2392,1536146.018,17.8
+7491,402201.1382,443124.7368,1535011.452,17.8
+7492,403463.5572,349821.0745,2270958.737,17.8
+7493,406349.6104,358254.5653,1540673.54,17.8
+7494,406412.5366,356045.6893,1539779.953,17.8
+7495,407590.1806,354323.7093,2275883.061,17.8
+7496,408906.5652,351790.7849,1339255.825,17.8
+7497,410111.7784,350345.4075,1339303.341,17.8
+7498,411317.4052,347381.1876,2395457.288,17.8
+7499,411851.8715,770164.7447,1590569.29,17.8
+7500,414876.9506,286570.8379,1514304.542,20
+7501,2316043.563,2596476.618,3949445.501,20
+7502,1118343.804,1858580.67,3228511.327,20
+7503,61511.32345,575854.9304,3052133.324,20
+7504,1055713.371,848009.2195,1157280.603,20
+7505,964748.9562,1017151.585,2772792.729,20
+7506,714117.171,865831.9758,2336512.094,20
+7507,954001.078,804143.6528,3094660.118,20
+7508,895791.1889,906469.6032,2286929.177,20
+7509,873738.4027,1266074.246,2251028.157,20
+7510,1222362.276,846827.7309,2902722.41,20
+7511,834738.1881,846481.3628,2224793.016,20
+7512,853689.8221,843627.5662,2221809.314,20
+7513,846583.6744,837055.7433,2910904.312,20
+7514,840789.8154,837943.8989,2223799.142,20
+7515,838948.0598,834916.413,2218730.518,20
+7516,835886.4873,834260.1578,2913734.272,20
+7517,802018.0464,832030.4945,2227426.46,20
+7518,801081.5156,155692.0638,2220550.654,20
+7519,796332.26,580242.3496,3856501.972,20
+7520,868041.5446,1239916.751,2190255.322,20
+7521,835346.8159,703714.8767,2191272.64,20
+7522,806457.2963,911506.3089,2887473.016,20
+7523,818193.4526,867947.2217,2212094.464,20
+7524,808672.2694,792602.2099,2207629.144,20
+7525,804479.6081,841920.1702,2906970.933,20
+7526,803662.4705,826219.8381,2222937.967,20
+7527,799758.3791,823253.2856,2221093.495,20
+7528,795404.772,824851.6767,2613342.61,20
+7529,794144.7788,1247922.171,2304263.516,20
+7530,790344.1049,822021.0729,2239962.251,20
+7531,787220.0932,706715.6258,2812477.62,20
+7532,785394.3879,705475.819,2124471.73,20
+7533,781117.8157,929833.4642,2127345.86,20
+7534,29075.32575,824837.4614,2814905.46,20
+7535,193939.1768,806120.9973,510772.9393,20
+7536,951260.5353,831514.9958,446200.1215,20
+7537,875072.9718,822297.1062,3528993.762,20
+7538,629808.512,786246.7631,2762300.562,20
+7539,933292.6327,1211838.562,2138236.547,20
+7540,734597.8006,872251.5857,3017341.074,20
+7541,798384.495,802668.704,2272460.792,20
+7542,771939.8702,822035.9266,2211045.67,20
+7543,752319.5916,821546.2834,2944698.697,20
+7544,762378.4614,820829.2702,2250629.381,20
+7545,754647.7856,820158.3009,2249429.28,20
+7546,1091960.555,821702.4585,2941809.099,20
+7547,750213.7765,821168.8768,2268226.484,20
+7548,746998.6256,820458.7968,2261283.426,20
+7549,744688.5277,1248163.408,2956773.478,20
+7550,714856.5843,149338.4523,2277890.038,20
+7551,711422.693,148977.4559,2274362.508,20
+7552,711298.8281,1234496.568,2965044.513,20
+7553,775611.1748,716526.8645,2288894.058,20
+7554,735773.6653,862796.3908,2282007.178,20
+7555,720650.5338,894349.2502,2977697.752,20
+7556,733058.4595,788738.3637,2296219.428,20
+7557,726843.3727,837225.0592,3220431.205,20
+7558,724427.4228,829329.4787,2939713.787,20
+7559,722313.5403,1251258.888,1974967.96,20
+7560,719581.8032,828144.2149,2327013.996,21
+7561,2311796.162,2979046.233,5004488.458,21
+7562,2208602.327,2141117.966,4298424.845,21
+7563,710089.8399,750469.19,2240981.262,21
+7564,793537.0051,974163.1898,3126957.876,21
+7565,1027847.4,1295444.191,2452945.35,21
+7566,1072683.499,1063812.886,2742453.089,21
+7567,957622.6785,1093818.945,3190792.25,21
+7568,982840.9834,1088602.201,2551700.618,21
+7569,982191.254,1490954.165,2544197.148,21
+7570,977364.2373,1074610.873,3239230.577,21
+7571,977203.7917,1069928.632,2546354.176,21
+7572,969779.8068,1065395.64,2532792.856,21
+7573,959637.3251,1062363.903,3238086.557,21
+7574,961744.9675,1061719.549,2533594.745,21
+7575,957325.1422,1057915.908,2523764.35,21
+7576,953802.7419,1055437.667,3231802.855,21
+7577,949377.9557,1054167.819,2520923.456,21
+7578,949586.4846,1051583.146,2511513.558,21
+7579,943456.105,1473675.124,3222181.078,21
+7580,941681.3325,1047513.998,2513483.991,21
+7581,940853.4707,1044688.5,2499059.761,21
+7582,935634.8078,1043899.311,3212729.388,21
+7583,934853.7095,1041101.537,2501964.105,21
+7584,932088.2317,1040803.615,2490535.806,21
+7585,930884.3438,1037435.202,3202779.429,21
+7586,929940.3023,1036146.208,2492905.436,21
+7587,925682.4368,1036051.664,2481197.836,21
+7588,924837.1661,1033390.817,3196185.616,21
+7589,922853.8294,1457184.716,2481245.252,21
+7590,920882.881,1029598.216,2472002.093,21
+7591,916942.9181,1030041.457,3190738.025,21
+7592,914867.195,1027108.163,2473116.063,21
+7593,910530.1388,1026028.401,2464541.783,21
+7594,912103.7564,1024783.438,3179578.865,21
+7595,907688.8535,1023427.359,2468361.603,21
+7596,906066.8783,1024290.054,2457162.015,21
+7597,904993.3853,1019845.791,3173113.633,21
+7598,901396.0458,1019474.078,2458668.847,21
+7599,901601.0271,1444555.534,2449174.974,21
+7600,898827.8849,1017539.487,3166391.127,21
+7601,897106.4816,1016549.469,2449814.135,21
+7602,895517.3036,1014578.219,2444634.123,21
+7603,893420.6365,1016304.258,3158322.418,21
+7604,891152.6372,1012033.821,2444500.713,21
+7605,891214.716,1012278.849,2436973.726,21
+7606,888476.4021,1012422.874,3152267.874,21
+7607,886004.2625,1010135.538,2440275.163,21
+7608,885395.7425,1010476.288,2425908.308,21
+7609,883702.3481,1432997.358,3151422.808,21
+7610,882038.8414,1007847.782,2428920.004,21
+7611,879570.7026,1007843.038,2424027.827,21
+7612,879456.3874,1004773.575,3144305.201,21
+7613,875848.6262,1006683.187,2424422.494,21
+7614,875648.4551,1003659.008,2420218.267,21
+7615,872825.7593,1004607.152,3135256.71,21
+7616,872482.0598,1003427.643,2421595.11,21
+7617,870628.3845,1001897.212,2411088.333,21
+7618,867437.3595,1000786.044,3135155.088,21
+7619,867763.6305,1427215.543,2414884.564,21
+7620,862358.8576,998340.4734,2407115.448,21
+7621,1679572.734,1934630.556,3072431.238,21
+7622,1673917.282,1928526.52,2341719.968,21
+7623,1674989.665,1929315.932,2335242.512,21
+7624,1676779.305,1928828.007,3055491.238,21
+7625,1674254.031,1928183.204,2333582.586,21
+7626,1677003.661,1928196.435,2328098.125,21
+7627,1674391.995,1927325.708,3048372.691,21
+7628,1677360.44,1928347.515,2327573.892,21
+7629,1677657.855,1928523.208,2320226.933,21
+7630,1677133.092,1927990.648,3046357.662,21
+7631,1677958.227,1927251.831,2320554.073,21
+7632,1679314.06,1929215.343,2315556.073,21
+7633,1678350.951,1928708.718,3040491.675,21
+7634,1681190.595,1926362.516,2315691.238,21
+7635,1678691.684,1930038.313,2310084.711,21
+7636,1681911.228,1929098.925,3033893.635,21
+7637,1681982.371,1929402.921,2313443.194,21
+7638,1681065.254,1928536.853,2302842.871,21
+7639,1683478.85,1929000.864,3032009.917,21
+7640,1683065.746,1930647.116,2306344.324,21
+7641,1684621.756,1935963.242,2302529.055,21
+7642,1685184.536,1935462.057,3025427.619,21
+7643,1684685.501,1933617.752,2301136.591,21
+7644,1687529.368,1936682.909,2298628.063,21
+7645,1685348.303,1935934.698,3022010.517,21
+7646,1689957.641,1937081.166,2297649.382,21
+7647,1686831.674,1936577.319,2293493.878,21
+7648,1689628.172,1938748.028,3018147.465,21
+7649,1690434.77,1938365.591,2295833.14,21
+7650,1690758.803,1940249.969,2288453.439,21
+7651,1691275.469,1941374.665,3016776.394,21
+7652,1694718.203,1941078.939,2290426.419,21
+7653,1695126.797,1942412.071,2284704.78,21
+7654,1695222.073,1942589.137,3013442.089,21
+7655,1697214.609,1943874.849,2286032.228,21
+7656,1697662.407,1943460.174,2283339.143,21
+7657,1697546.382,1945645.092,3009319.134,21
+7658,1700088.253,1944952.033,2283841.373,21
+7659,1701188.627,1945796.592,2280716.961,21
+7660,1700515.574,1946819.848,3005077.673,21
+7661,1700101.949,1947605.944,2281541.13,21
+7662,1701481.026,1947073.523,2276640.996,21
+7663,1702055.62,1949572.851,3004150.008,21
+7664,1703501.496,1948968.393,2277693.442,21
+7665,1702481.603,1949686.064,2274140.309,21
+7666,1705470.116,1950889.214,3001090.882,21
+7667,1706448.961,1952108.347,2275258.689,21
+7668,1705700.635,1952267.272,2253666.816,21
+7669,1709430.451,1952655.002,2979801.327,21
+7670,1706760.891,1954258.03,2252292.387,21
+7671,1711461.316,1953745.778,2246311.908,21
+7672,1697475.457,1955251.367,2974508.226,21
+7673,1698901.329,1955784.054,2245988.914,21
+7674,1696481.224,1957370.066,2242213.583,21
+7675,1698113.17,1956192.659,2970434.061,21
+7676,1697134.972,1958913.744,2240985.501,21
+7677,1695886.996,1959255.023,2234720.87,21
+7678,1697431.119,1958745.842,2967962.549,21
+7679,1696121.238,1961079.257,2235064.51,21
+7680,1696672.711,1961739.928,2230314.645,21
+7681,1461052.559,1715543.035,2560252.622,21
+7682,1440247.604,1699091.067,1810636.934,21
+7683,1431705.907,1694369.503,1802571.836,21
+7684,1816657.582,1690370.443,2537591.831,21
+7685,1418754.173,1686986.754,1798430.897,21
+7686,1412315.334,1683248.008,1791314.033,21
+7687,1406198.565,1680643.052,2527802.31,21
+7688,1400933.002,2058332.657,1787268.792,21
+7689,1393808.824,1675336.963,1780595.329,21
+7690,1388164.239,1670469.615,2518811.1,21
+7691,1383419.556,1668894.526,1776982.863,21
+7692,1376812.258,1665352.205,1769885.373,21
+7693,1370657.018,1662333.172,2509821.506,21
+7694,1365726.781,1660620.899,1767383.236,21
+7695,1360763.842,1657868.839,1759488.894,21
+7696,1353706.569,1654127.194,2501595.485,21
+7697,1349982.526,1653193.674,1758806.446,21
+7698,1343185.678,1650788.925,1750802.505,21
+7699,1338417.839,1646570.144,2495204.573,21
+7700,1332953.36,1645934.097,1749602.035,21
+7701,1327853.006,1642820.294,1744033.125,21
+7702,1322340.691,1640785.312,2487401.028,21
+7703,1317690.958,1639221.455,1741617.497,21
+7704,1311521.018,1636395.406,1736932.919,21
+7705,1307042.195,1632975.292,2480051.335,21
+7706,1302813.19,1633116.43,1733808.762,21
+7707,1296345.688,1629134.217,1729349.74,21
+7708,1292846.256,1629244.519,2473831.526,21
+7709,1286608.608,1625292.641,1726273.75,21
+7710,1283203.909,1624252.222,1721710.667,21
+7711,1277094.734,1621551.694,2465701.776,21
+7712,1272725.534,1620373.836,1719916.5,21
+7713,1656886.669,1618388.154,1712748.734,21
+7714,1260896.773,1615216.536,2459030.879,21
+7715,1254069.174,1614564.093,1711167.894,21
+7716,1250305.011,1994903.736,1703707.036,21
+7717,1243823.51,1610251.294,2452398.174,21
+7718,1240277.14,1609843.281,1702611.847,21
+7719,1233694.677,1605992.018,1696621.075,21
+7720,1228517.803,1605065.685,2444807.932,21
+7721,1224347.544,1604048.418,1693829.878,21
+7722,1219690.252,1600637.21,1689224.711,21
+7723,1214919.831,1601435.27,2437866.197,21
+7724,1210900.688,1596666.227,1685702.519,21
+7725,1205879.029,1597046.141,1681508.398,21
+7726,1202105.244,1595178.619,2430369.429,21
+7727,1196714.131,1592247.29,1678113.664,21
+7728,1192485.476,1592131.544,1673332.43,21
+7729,1187806.408,1589609.617,2424074.578,21
+7730,1183359,1588529.918,1670158.862,21
+7731,1571620.785,1586275.184,1666854.734,21
+7732,1173774.099,1584787.275,2415375.783,21
+7733,1169673.572,1583321.318,1663847.459,21
+7734,1565613.302,1582489.777,1658864.57,21
+7735,1159031.251,1580046.36,2408045.587,21
+7736,1154938.139,1578180.126,1657309.24,21
+7737,1551321.512,1577801.469,1650470.763,21
+7738,1145340.85,1575916.193,2402117.832,21
+7739,1140222.236,1572981.944,1649065.706,21
+7740,1539316.412,1574062.447,1643266.66,21
+7741,1132402.649,1567780.898,2395182.373,21
+7742,1126580.974,1565767.023,1639159.538,21
+7743,1525418.092,1562458.202,1634246.428,21
+7744,1116706.438,1560690.417,2386215.206,21
+7745,1112437.577,1556687.776,1630243.602,21
+7746,1509964.953,1555135.27,1625129.758,21
+7747,1102715.759,1552221.013,2377763.16,21
+7748,1097002.874,1549287.622,1621492.91,21
+7749,1496164.301,1546615.405,1617103.863,21
+7750,1087503.375,1544744.072,2368731.315,21
+7751,1083327.596,1541109.712,1613798.704,21
+7752,1480917.877,1538987.89,1607556.675,21
+7753,1073548.441,1536578.14,2361500.787,21
+7754,1067858.164,1533533.522,1605265.265,21
+7755,1467134.367,1530756.695,1598558.867,21
+7756,1058111.082,1528646.151,2354177.731,21
+7757,1053822.755,1526318.713,1596177.968,21
+7758,1451975.911,1522876.568,1591388.688,21
+7759,1043456.558,1521099.888,2345744.153,21
+7760,1038326.612,1517724.792,1587744.967,21
+7761,1437906.474,1516635.048,1583165.436,21
+7762,1028484.156,1511785.228,2338254.511,21
+7763,1023693.113,1511368.343,1580218.886,21
+7764,1423012.568,1507059.178,1574559.484,21
+7765,1014083.234,1505817.013,2326948.59,21
+7766,1008682.59,1502564.791,1566758.815,21
+7767,1408664.296,1501208.759,1562278.335,21
+7768,998661.8901,1497279.439,2319110.62,21
+7769,994215.53,1495289.738,1558596.729,21
+7770,1393368.705,1492637.491,1552949.055,21
+7771,984775.4622,1490059.147,2312269.806,21
+7772,979803.7633,1487946.447,1555303.175,21
+7773,1381038.484,1484763.298,1551432.924,21
+7774,970523.0044,1483481.491,2310423.934,21
+7775,966937.3198,1479492.382,1549964.373,21
+7776,1367732.198,1478197.023,1544510.036,21
+7777,958222.8048,1475368.881,2305466.549,21
+7778,953487.8153,1474283.47,1543134.428,21
+7779,1355114.832,1471088.318,1538738.825,21
+7780,945103.7778,1469636.083,2300748.254,21
+7781,941034.8984,1467544.119,1536494.828,21
+7782,1342836.129,1465274.991,1533481.104,21
+7783,932586.0412,1463324.096,2294917.191,21
+7784,928109.3784,1461460.103,1531285.974,21
+7785,1330650.454,1458426.664,1528158.185,21
+7786,919963.2648,1458130.474,2288937.288,21
+7787,915838.6436,1454625.544,1525980.424,21
+7788,1318255.107,1452870.979,1521929.592,21
+7789,907207.3237,1450929.402,2284516.089,21
+7790,903157.0386,1448508.268,1519944.213,21
+7791,1305874.758,1447478.255,1516459.004,21
+7792,895865.8704,1444748.504,2279809.257,21
+7793,892375.9678,1442006.005,1513991.58,21
+7794,1296082.354,1441138.387,1511251.47,21
+7795,886646.8897,1438178.52,2273974.315,21
+7796,882905.9979,1436962.539,1509485.556,21
+7797,1287003.293,1433835.918,1504903.119,21
+7798,877015.9924,1432706.633,2270485.446,21
+7799,874040.3941,1430449.612,1503018.605,21
+7800,871106.6687,1427824.009,1500466.13,21
+7801,872684.0383,1431982.786,2272806.532,21
+7802,870113.2626,1430086.634,1504969.682,21
+7803,868656.7368,1429020.133,1500980.671,21
+7804,866103.5595,1428001.043,2266899.419,21
+7805,864085.1613,1427461.354,1496767.45,21
+7806,862259.8682,1424801.717,1493424.671,21
+7807,859550.7659,1424495.503,2263126.291,21
+7808,858177.5628,1423050.482,1493779.301,21
+7809,855649.0195,1421949.437,1489767.722,21
+7810,853802.6586,1420963.242,2257959.403,21
+7811,851517.0592,1419367.29,1486541.778,21
+7812,849810.9403,1418065.409,1482276.328,21
+7813,847587.224,1417502.457,2251684.607,21
+7814,845708.6905,1415841.634,1478956.499,21
+7815,843544.6738,1414150.141,1475274.255,21
+7816,841695.1566,1414291.77,2245015.624,21
+7817,839613.858,1411820.226,1471865.875,21
+7818,838088.6931,1411483.948,1467864.205,21
+7819,836090.1972,1409369.128,2238743.456,21
+7820,833997.3826,1409499.171,1464850.832,21
+7821,832302.8368,1406756.454,1460700.977,21
+7822,830540.3775,1407134.956,2232071.303,21
+7823,828735.2218,1404529.843,1457618.244,21
+7824,826671.2384,1404334.207,1454142.511,21
+7825,826571.4873,1402498.465,2225126.067,21
+7826,824862.9745,1401924.435,1450730.084,21
+7827,823125.1397,1400308.109,1446656.979,21
+7828,821387.7896,1398739.382,2219320.928,21
+7829,819152.3753,1399113.752,1443279.547,21
+7830,817690.4182,1395981.693,1439914.614,21
+7831,815724.2922,1396332.738,2212701.72,21
+7832,813912.0083,1394557.856,1436400.336,21
+7833,812229.802,1393263.966,1432758,21
+7834,810233.0036,1391721.974,2206354.207,21
+7835,808294.9782,1391737.237,1429435.395,21
+7836,806578.463,1389517.082,1425149.869,21
+7837,804387.9909,1389289.755,2200621.618,21
+7838,803109.0158,1386913.968,1422192.786,21
+7839,800776.0626,1387031.5,1418214.729,21
+7840,799377.6201,1384679.546,2194916.678,21
+7841,797369.8801,1384442.057,1414898.881,21
+7842,795539.2306,1382217.2,1411655.282,21
+7843,793896.3763,1382668.359,2187697.104,21
+7844,791516.4524,1380024.577,1408752.198,21
+7845,790004.9973,1379344.321,1403880.796,21
+7846,787551.138,1378579.178,2182586.128,21
+7847,785909.7578,1377017.545,1401052.856,21
+7848,784189.997,1375806.086,1397335.135,21
+7849,781531.4965,1374810.537,2176431.342,21
+7850,779259.5289,1373887.204,1394387.749,21
+7851,777512.2557,1372666.814,1389900.295,21
+7852,775056.9996,1370910.669,2170627.272,21
+7853,773128.6772,1370985.254,1387208.483,21
+7854,770788.443,1368607.379,1383617.786,21
+7855,768358.8437,1367828.258,2164381.703,21
+7856,766528.1494,1367528.49,1380187.592,21
+7857,764601.605,1365187.148,1376947.662,21
+7858,761972.1256,1364787.188,2157525.454,21
+7859,759384.4891,1363404.047,1374115.175,21
+7860,756007.7324,1362034.503,1370283.172,21
+7861,750742.5584,1356645.82,2142017.898,21
+7862,749818.2304,1353829.641,1356426.635,21
+7863,748517.1488,1353024.314,1352294.172,21
+7864,747255.7818,1350623.664,2134315.527,21
+7865,745559.2053,1349461.622,1346767.987,21
+7866,744515.6616,1347518.801,1344207.008,21
+7867,742999.8847,1341970.732,2130806.033,21
+7868,742211.1342,1339665.961,1342736.491,21
+7869,740611.9652,1337599.094,1339664.551,21
+7870,738555.5998,1335141.375,2124600.7,21
+7871,738076.5557,1333801.577,1334897.993,21
+7872,736186.5096,1331655.843,1331760.869,21
+7873,734954.234,1329432.743,2117478.875,21
+7874,733453.2125,1328169.415,1327940.969,21
+7875,732063.7214,1327073.925,1323164.157,21
+7876,730484.7625,1325184.071,2111155.631,21
+7877,729235.5481,1323907.013,1319195.737,21
+7878,727520.6751,1321319.17,1316659.947,21
+7879,726340.5511,1320068.879,2103484.869,21
+7880,724479.7857,1317172.482,1312707.356,21
+7881,723541.3309,1316244.794,1307395.046,21
+7882,721536.6524,1313861.05,2097794.626,21
+7883,720444.2939,1312166.843,1304015.952,21
+7884,717917.2883,1310958.939,1300392.138,21
+7885,715393.4037,1308082.811,2091391.054,21
+7886,715168.513,1307260.768,1295816.146,21
+7887,713253.6037,1304354.606,1292801.046,21
+7888,711309.0834,1302893.622,2084748.263,21
+7889,709874.8397,1301388.566,1288112.508,21
+7890,709257.2491,1299407.143,1285392.404,21
+7891,707284.7061,1296900.935,2078069.363,21
+7892,705697.965,1296929.065,1281827.494,21
+7893,703834.2864,1293512.794,1278915.277,21
+7894,701991.5959,1292464.23,2073668.335,21
+7895,700432.0538,1291018.551,1276141.072,21
+7896,698150.9132,1289114.628,1273094.137,21
+7897,696494.2408,1287025.545,2069190.75,21
+7898,693421.0563,1285715.731,1270679.831,21
+7899,691242.5705,1284163.399,1266992.846,21
+7900,689411.4527,1282049.203,2065006.541,21
+7901,688043.4343,1280772.016,1265033.083,21
+7902,685720.1884,1279154.952,1261590.389,21
+7903,683756.7319,1277182.646,2061431.828,21
+7904,682390.407,1275660.746,1258534.9,21
+7905,679993.8425,1274264.602,1256738.462,21
+7906,678570.2868,1270813.624,2056672.597,21
+7907,676343.9421,1269984.252,1253466.558,21
+7908,674632.4656,1267330.938,1251199.05,21
+7909,671796.593,1266637.699,2052851.111,21
+7910,669254.5897,1264090.98,1247878.63,21
+7911,667760.9326,1263031.507,1651550.754,21
+7912,665541.1186,1261064.553,1217000.71,21
+7913,663872.5585,1259914.782,1220639.812,21
+7914,661956.3132,1257597.864,1216045.53,21
+7915,659832.2236,1256505.642,1214663.302,21
+7916,658202.019,1254230.523,1510999.739,21
+7917,656368.9918,1253375.077,1194369.497,21
+7918,654455.0088,1250755.857,1197475.149,21
+7919,652684.4582,1250069.163,1230680.774,21
+7920,651043.7718,1248059.692,1507333.379,21
+7921,677333.4617,1278605.568,1229626.198,21
+7922,677374.6255,1280800.678,1234231.047,21
+7923,675734.2022,1280199.215,1234768.451,21
+7924,674943.8763,1281989.846,1237927.815,21
+7925,673981.8438,1282391.152,1518961.556,21
+7926,672956.6419,1282725.895,1223348.33,21
+7927,671981.6165,1283750.781,1229609.287,21
+7928,670801.1376,1284371.004,1253310.759,21
+7929,669864.2965,1285608.43,1229762.008,21
+7930,668919.9482,1285833.74,1233136.535,21
+7931,667995.3913,1286639.738,1482359.834,21
+7932,666837.5946,1287237.876,1221351.467,21
+7933,665756.4671,1288713.425,1226557.737,21
+7934,665172.4188,1288002.624,1226158.876,21
+7935,663784.0523,1290189.896,1228928.802,21
+7936,663316.1033,1290365.736,1508190.628,21
+7937,661602.785,1290758.41,1214994.294,21
+7938,661087.4665,1291807.844,1221741.796,21
+7939,659843.9271,1292939.216,1235011.693,21
+7940,659819.0749,1293071.92,1222324.153,21
+7941,659449.2286,1293797.425,1225099.445,21
+7942,657468.3438,1294835.081,1348422.73,21
+7943,657184.7718,1295108.76,1221329.754,21
+7944,655852.8266,1296314.75,1223108.491,21
+7945,654464.5891,1296444.072,1225741.362,21
+7946,653770.3092,1297628.114,1515222.079,21
+7947,652046.5253,1297799.356,1210954.87,21
+7948,651352.5914,1298988.987,1216375.104,21
+7949,650033.6105,1299716.095,1215739.422,21
+7950,649020.8783,1299803.344,1218041.698,21
+7951,647314.7236,1301103.745,1501403.453,21
+7952,646871.6436,1302084.168,1203168.265,21
+7953,645347.2741,1301807.09,1209199.282,21
+7954,644395.8555,1303754.572,1207376.955,21
+7955,643028.7188,1303688.563,1209547.681,21
+7956,642014.4848,1304529.497,1493798.334,21
+7957,640316.1507,1305243.877,1194447.975,21
+7958,639634.0046,1306611.815,1201615.46,21
+7959,638484.1766,1307047.003,1198787.724,21
+7960,637111.5826,1307336.044,1201815.708,21
+7961,635897.3563,1308646.769,1485229.504,21
+7962,635163.8753,1309238.491,1187328.124,21
+7963,633792.2176,1310027.426,1192188.109,21
+7964,632755.9808,1310311.114,1191967.447,21
+7965,631553.6921,1311944.286,1193609.135,21
+7966,630662.2231,1311830.758,1477175.657,21
+7967,629634.0849,1313142.531,1179964.373,21
+7968,628275.3445,1313837.409,1184593.102,21
+7969,627343.3987,1314265.324,1184016.91,21
+7970,626656.7753,1315324.455,1185387.208,21
+7971,625192.7033,1316449.197,1470650.995,21
+7972,624287.685,1316346.468,1170730.912,21
+7973,623501.4582,1317683.544,1177970.604,21
+7974,622383.8351,1318197.263,1175688.821,21
+7975,621690.8981,1318958.415,1178310.981,21
+7976,620375.4317,1319700.051,1462662.956,21
+7977,619789.764,1320409.505,1163955.448,21
+7978,618787.6415,1321126.959,1169542.478,21
+7979,617616.7919,1321958.766,1168612.318,21
+7980,617117.09,1322823.68,1170559.696,21
+7981,586552.2966,1291432.943,1400703.836,21
+7982,585226.3636,1291483.769,1101663.484,21
+7983,584296.8052,1290660.221,1106118.875,21
+7984,583479.2496,1290282.175,1104665.659,21
+7985,582182.4858,1289455.561,1106348.493,21
+7986,581417.5571,1290062.028,1390701.111,21
+7987,580425.3181,1288449.23,1091922.198,21
+7988,579696.3149,1289064.884,1097092.142,21
+7989,578583.7713,1287806.886,1095747.26,21
+7990,577435.6074,1288597.748,1097052.148,21
+7991,577105.1138,1286787.242,1381323.242,21
+7992,575577.5675,1287299.75,1083420.894,21
+7993,575039.5648,1286615.551,1087949.397,21
+7994,573833.3793,1286453.622,1087102.707,21
+7995,573253.4788,1285920.856,1087891.52,21
+7996,572141.8015,1285648.031,1373147.496,21
+7997,571766.5896,1285058.686,1074547.459,21
+7998,570297.0149,1284412.424,1080413.9,21
+7999,569739.1238,1284779.767,1078006.048,21
+8000,568718.7066,1283742.476,1079775.396,21
+8001,568092.2643,1284302.145,1365113.381,21
+8002,567159.5115,1282896.594,1067009.976,21
+8003,566305.4831,1283357.67,1071775.774,21
+8004,565338.3847,1282781.515,1072187.038,21
+8005,564426.3805,1282729.334,1074385.154,21
+8006,564009.1516,1281591.545,1358963.194,21
+8007,562589.3763,1282049.307,1061618.442,21
+8008,562108.07,1281520.459,1066014.555,21
+8009,561027.9263,1281159.248,1064329.064,21
+8010,560343.1045,1280696.966,1066862.307,21
+8011,559711.3811,1280982.07,1352180.516,21
+8012,558899.1311,1280365.822,1052351.285,21
+8013,558674.9582,1279528.756,1057201.715,21
+8014,557937.9807,1280108.756,1052653.388,21
+8015,557769.9371,1279132.537,1054029.581,21
+8016,556771.9198,1278750.303,1339380.823,21
+8017,556430.394,1279104.229,1039616.984,21
+8018,555818.9523,1277837.274,1044211.843,21
+8019,555339.8158,1278508.297,1041276.1,21
+8020,554933.9376,1277738.847,1042613.259,21
+8021,554275.4099,1277130.776,1329331.658,21
+8022,553605.4424,1277479.564,1028290.225,21
+8023,553119.3866,1276929.885,1032846.692,21
+8024,552816.0149,1276349.811,1030057.061,21
+8025,552108.8529,1276620.764,1032041.822,21
+8026,551106.7191,1275748.926,1317814.097,21
+8027,551187.2802,1275813.425,1017436.647,21
+8028,550431.4757,1275448.008,1021765.491,21
+8029,549502.1453,1275176.008,1017197.121,21
+8030,549497.1698,1274483.245,1018291.187,21
+8031,548423.7015,1275001.511,1304521.741,21
+8032,548127.8855,1273703.204,1004429.148,21
+8033,547020.0601,1274401.75,1007897.853,21
+8034,547184.2468,1273345.594,1006208.333,21
+8035,545949.4016,1273414.687,1005717.017,21
+8036,545375.2013,1273154.247,1293686.372,21
+8037,545328.5198,1272733.983,989251.5907,21
+8038,544256.7949,1272659.574,993016.985,21
+8039,543701.0184,1271956.559,989901.629,21
+8040,543221.1553,1272287.036,990567.5548,21
+8041,547220.9132,1273697.336,1289070.599,21
+8042,546789.7756,1271927.641,987105.2058,21
+8043,545466.7202,1269623.635,994067.3374,21
+8044,545358.0095,1266761.949,991747.2522,21
+8045,544281.0962,1265320.267,993143.9317,21
+8046,543393.3989,1262220.575,994768.6452,21
+8047,543178.2688,1260411.214,996384.7372,21
+8048,541706.1423,1257396.351,996444.3271,21
+8049,541564.0607,1255460.084,998944.4172,21
+8050,540501.0507,1252686.854,998183.1258,21
+8051,539936.2291,1250842.438,1000197.058,21
+8052,539055.1597,1248040.932,1776886.471,21
+8053,538205.2968,1245693.279,1004616.448,21
+8054,537381.5198,1243507.719,1004637.437,21
+8055,536880.015,1241354.267,1809981.305,21
+8056,535612.0267,1238187.929,1006089.302,21
+8057,535605.3879,1236282.887,1006724.739,21
+8058,534164.7256,1234159.105,1818511.016,21
+8059,534006.4172,1231389.705,1007338.088,21
+8060,532488.0219,1229056.199,1006611.442,21
+8061,532552.0168,1226687.179,1822779.81,21
+8062,531095.5746,1224384.92,1006494.087,21
+8063,530788.5405,1221959.363,1006734.316,21
+8064,529717.0231,1219752.561,1824109.36,21
+8065,529402.36,1216727.099,1005594.119,21
+8066,528185.4659,1215386.664,1428106.07,21
+8067,527887.0054,1211746.174,982555.605,21
+8068,526806.0861,1210190.614,986944.6366,21
+8069,526256.7158,1207960.065,1021649.84,21
+8070,525690.0223,1204774.638,979894.7044,21
+8071,524565.9577,1202828.207,981563.9422,21
+8072,524578.4593,1200769.101,1268200.171,21
+8073,523311.9076,1197413.919,969468.0094,21
+8074,523192.015,1196031.389,975667.3878,21
+8075,522135.2068,1192754.484,993190.5824,21
+8076,521566.6449,1190878.093,974813.8209,21
+8077,521002.0245,1188557.443,974536.7248,21
+8078,520375.2216,1185653.607,976100.4854,21
+8079,519837.726,1183433.147,978055.2295,21
+8080,519036.2281,1181202.825,1756010.853,21
+8081,518543.843,1178633.656,983400.1846,21
+8082,517894.1084,1176244.023,984592.5577,21
+8083,517487.5987,1174162.217,1792982.611,21
+8084,516607.6949,1171020.774,989226.7365,21
+8085,516160.2223,1169249.027,990939.3476,21
+8086,515762.2416,1166622.167,1806228.524,21
+8087,514826.7514,1163543.674,994770.0526,21
+8088,514620.1759,1162166.872,995980.8857,21
+8089,513804.2893,1159132.607,1815241.814,21
+8090,513471.3871,1157156.426,999615.4528,21
+8091,512852.1502,1154234.951,1001309.524,21
+8092,512271.7072,1152189.539,1822021.798,21
+8093,512459.0954,1149545.014,1004640.085,21
+8094,511474.894,1146961.932,1429939.387,21
+8095,511305.7945,1144934.241,985563.8475,21
+8096,510879.7727,1142154.552,992567.3334,21
+8097,510292.4977,1140517.506,1027929.786,21
+8098,510168.5039,1136427.445,989874.5425,21
+8099,509680.6178,1136157.279,992341.0138,21
+8100,510397.507,1131781.596,1279852.965,21
+8101,505186.7542,1127865.58,971644.7679,21
+8102,505216.6752,1125412.209,976594.6092,21
+8103,505863.0736,1126074.694,974932.0854,21
+8104,505552.4661,1123190.83,975395.9907,21
+8105,505561.8312,1123656.13,1276022.889,21
+8106,506015.8493,1121783.93,967820.1368,21
+8107,506072.2711,1121529.484,972958.5033,21
+8108,505958.0491,1119578.591,971652.3717,21
+8109,506453.7049,1119295.774,974060.1963,21
+8110,506654.4487,1118143.997,1272158.907,21
+8111,506398.9175,1116924.385,963148.9407,21
+8112,507148.6848,1115954.243,968983.7238,21
+8113,506916.9477,1115521.969,983699.3209,21
+8114,506160.2452,1113903.857,969309.9753,21
+8115,506165.6152,1113031.533,971878.5406,21
+8116,506523.4644,1111988.682,1083408.327,21
+8117,506575.0425,1111138.931,970641.3231,21
+8118,507048.5954,1109806.074,973177.9465,21
+8119,506941.8705,1109530.195,975045.5222,21
+8120,507091.6609,1107549.584,977567.2504,21
+8121,507779.8698,1107092.936,978983.1264,21
+8122,507340.8754,1106367.202,981725.9647,21
+8123,508047.466,1104862.372,982774.0929,21
+8124,507807.7325,1104473.308,985383.4888,21
+8125,508438.9037,1102667.407,986617.0778,21
+8126,508510.6765,1102173.103,1773111.265,21
+8127,508615.4046,1101174.689,991258.8552,21
+8128,509009.0654,1100373.008,995590.6505,21
+8129,509297.7806,1098617.447,1812218.052,21
+8130,509379.2596,1098471.025,999619.7205,21
+8131,510309.9171,1097225.263,1000381.696,21
+8132,511199.1235,1095953.836,1823946.709,21
+8133,511901.2065,1094921.019,1001654.002,21
+8134,513353.4814,1094513.012,1002540.894,21
+8135,514058.9637,1092961.266,1829664.578,21
+8136,515171.8343,1092178.446,1003130.893,21
+8137,516301.3759,1091542.951,1003744.834,21
+8138,517227.4471,1089653.999,1833719.79,21
+8139,518431.4146,1089314.204,1004009.69,21
+8140,519884.0603,1088356.74,1439220.448,21
+8141,520458.6158,1087069.178,982626.1768,21
+8142,521922.3133,1086667.488,988574.6649,21
+8143,522886.0128,1085004.796,984147.5942,21
+8144,524144.4358,1084083.107,985300.2286,21
+8145,524919.2916,1083204.499,1304932.25,21
+8146,525541.1604,1082652.468,970935.3841,21
+8147,525657.263,1081209.926,976130.2077,21
+8148,526316.7568,1080237.812,1006482.554,21
+8149,526086.9539,1079229.699,1092775.557,21
+8150,527025.6986,1078497.503,968716.8391,21
+8151,527156.7924,1077401.439,969177.9274,21
+8152,527539.1068,1076267.152,971130.8255,21
+8153,528203.4999,1075589.277,1267132.241,21
+8154,528336.7853,1074173.817,958579.931,21
+8155,529075.4649,1073621.953,964113.2666,21
+8156,529262.2155,1072017.904,961485.5208,21
+8157,529720.0488,1072246.48,963337.1101,21
+8158,530374.7828,1069751.794,1265566.388,21
+8159,530723.8178,1069966.843,951099.9776,21
+8160,533146.5313,1068151.776,956610.0129,21
+8161,534765.6202,1068289.851,956127.4129,21
+8162,536238.8551,1066259.84,958199.0213,21
+8163,537666.271,1066431.531,1261938.476,21
+8164,539558.5123,1064915.987,949177.4923,21
+8165,540624.9548,1064244.967,956347.8273,21
+8166,542306.9718,1064077.148,968067.0113,21
+8167,544085.7331,1062352.367,957557.6572,21
+8168,545600.5956,1062077.105,1028026.855,21
+8169,546966.4691,1061567.676,959361.4209,21
+8170,548863.6122,1060316.551,978696.629,21
+8171,550098.3081,1059804.556,1233043.386,21
+8172,551927.2332,1058815.522,954218.7396,21
+8173,553397.2859,1058069.981,959908.2232,21
+8174,555381.7984,1057555.428,960072.4106,21
+8175,556825.9985,1056257.159,962407.5706,21
+8176,558630.7015,1056071.553,1260405.064,21
+8177,560086.8033,1054693.592,954306.965,21
+8178,562399.6233,1054422.044,960174.68,21
+8179,563705.4505,1053203.094,959471.8419,21
+8180,566010.7883,1052852.07,962569.6959,21
+8181,567238.1452,1051748.062,1264496.34,21
+8182,569327.7141,1050991.221,953410.4306,21
+8183,571861.2036,1050579.13,960489.5973,21
+8184,574061.8188,1049479.862,972683.3125,21
+8185,576654.4514,1048648.04,961843.3369,21
+8186,577830.7405,1047787.751,1007234.951,21
+8187,580426.4351,1047497.478,965216.899,21
+8188,582158.4597,1046277.35,988145.017,21
+8189,585053.2707,1045435.913,968962.6316,21
+8190,586534.5084,1045314.656,972483.4607,21
+8191,588569.384,1044405.744,974325.0408,21
+8192,589506.6048,1042811.742,1764246.332,21
+8193,591040.133,1042808.948,980113.7039,21
+8194,592629.4807,1041388.997,983223.3,21
+8195,594011.3589,1041493.852,1803690.383,21
+8196,595206.5352,1040041.9,987385.8902,21
+8197,596699.7703,1039681.265,989908.8193,21
+8198,597951.1461,1038228.183,1818821.532,21
+8199,599333.1662,1038966.48,993818.2366,21
+8200,600607.366,1036145.711,995712.754,21
+8201,602093.0936,1037162.654,1829134.562,21
+8202,603134.708,1035515.522,998965.4679,21
+8203,604635.9707,1034744.248,1001106.298,21
+8204,605622.9849,1034368.157,1837204.514,21
+8205,607123.5775,1032972.558,1003926.027,21
+8206,608005.3505,1033033.038,1005475.353,21
+8207,610008.7842,1031759.592,1844443.264,21
+8208,610283.0251,1030817.558,1008070.639,21
+8209,612025.3791,1030611.919,1009428.623,21
+8210,613590.1492,1029332.858,1850585.614,21
+8211,614860.1829,1028720.139,1011544.277,21
+8212,616549.6737,1028182.225,1013452.657,21
+8213,616884.8235,1027419.898,1855817.05,21
+8214,618500.4234,1026168.987,1014999.467,21
+8215,619746.0986,1026177.38,1015928.602,21
+8216,620985.0238,1024826.195,1860822.002,21
+8217,621697.4351,1024349.346,1018303.823,21
+8218,623176.3661,1023353.628,1019247.812,21
+8219,624526.6447,1022519.567,1864043.714,21
+8220,625385.3182,1022244.328,1023907.108,21
+8221,668048.2183,1089676.947,1133005.688,21
+8222,670539.7981,1091618.07,1981957.552,21
+8223,672573.1443,1091578.823,1142179.598,21
+8224,673401.9072,1091169.155,1143834.442,21
+8225,674896.0716,1090198.078,1988519.562,21
+8226,676354.6037,1089358.263,1147118.49,21
+8227,677487.5276,1088611.089,1150535.818,21
+8228,679434.3842,1087983.295,1993951.769,21
+8229,684584.007,1087289.717,1154379.05,21
+8230,688869.5755,1086654.509,1167920.627,21
+8231,687531.3912,1084975.359,2006336.255,21
+8232,690179.854,1085279.829,1166700.907,21
+8233,691566.7023,1084047.969,1618457.318,21
+8234,692778.703,1082790.085,1146657.216,21
+8235,694384.9818,1081948.228,1154559.567,21
+8236,703040.3942,1081616.807,1152806.176,21
+8237,702313.0798,1080259.345,1156235.02,21
+8238,704616.513,1079389.655,1488252.242,21
+8239,706436.9973,1077742.244,1143757.034,21
+8240,709109.9037,1077566.687,1152212.439,21
+8241,710572.4097,1083557.531,1191909.875,21
+8242,712223.9909,1096370.531,1514268.294,21
+8243,714221.2833,1085727.926,1135458.141,21
+8244,716055.7856,1089608.69,1142777.846,21
+8245,718588.9149,1088565.306,1144322.433,21
+8246,719623.6582,1088979.769,1149144.047,21
+8247,721745.6999,1087577.072,1152619.834,21
+8248,723291.4527,1087948.185,1156940.77,21
+8249,725560.9008,1088268.942,1161050.545,21
+8250,726371.2375,1086077.377,1162749.366,21
+8251,728774.4451,1086686.102,1167385.573,21
+8252,729929.041,1085778.967,1169657.253,21
+8253,732024.9982,1085670.539,1965934.088,21
+8254,733491.8746,1084365.807,1175720.197,21
+8255,734571.6436,1083979.675,1178016.32,21
+8256,737125.1679,1082571.127,2004385.963,21
+8257,737853.5871,1082753.796,1182640.875,21
+8258,739597.2426,1082186.16,1185543.415,21
+8259,741351.453,1080857.429,2016853.571,21
+8260,742472.1835,1080706.421,1194333.144,21
+8261,744218.8718,1079096.462,1196729.481,21
+8262,745547.1973,1079073.439,2031713.962,21
+8263,747258.5901,1077974.066,1199042.371,21
+8264,748289.4545,1077042.321,1202902.827,21
+8265,750002.3943,1076347.827,2038152.825,21
+8266,751327.6053,1075598.193,1204876.871,21
+8267,752775.5611,1073286.134,1206299.087,21
+8268,754256.7063,1074424.726,2043989.683,21
+8269,755388.0682,1072083.921,1209317.566,21
+8270,756646.6278,1072318.73,1653144.138,21
+8271,758843.5914,1070047.957,1185348.688,21
+8272,758828.9124,1070313.078,1194647.497,21
+8273,761058.7779,1067652,1190381.415,21
+8274,762214.2219,1069117.064,1193664.571,21
+8275,763664.746,1065674.811,1521016.384,21
+8276,764504.2953,1066181.55,1178929.491,21
+8277,766313.7637,1064339.286,1185530.616,21
+8278,766946.0679,1063899.86,1227277.534,21
+8279,768662.0703,1062576.859,1415147.553,21
+8280,769939.9655,1060376.762,1174958.485,21
+8281,792572.8767,1121175.651,1224783.226,21
+8282,795136.7386,1121654.515,1232714.151,21
+8283,796075.9397,1120187.368,1237697.522,21
+8284,797348.4615,1119298.847,1242980.314,21
+8285,798468.961,1118477.591,1246984.809,21
+8286,799363.9167,1115930.995,1253746.937,21
+8287,800459.4855,1113399.893,1255638.515,21
+8288,801792.918,1112941.97,1261268.831,21
+8289,801997.8228,1111183.18,1265552.029,21
+8290,837920.5466,1108621.597,2057964.338,21
+8291,819984.0217,1106755.097,1275076.456,21
+8292,826498.8387,1104834.033,1277836.639,21
+8293,829017.6668,1103338.71,2099494.285,21
+8294,831898.1629,1100921.69,1286227.486,21
+8295,832752.9029,1100396.319,1289697.223,21
+8296,834509.2051,1097284.307,2116239.295,21
+8297,837258.5213,1096319.69,1296155.38,21
+8298,838355.7198,1092655.904,1298983.672,21
+8299,840164.8788,1091878.796,2128944.231,21
+8300,841882.9219,1089523.902,1305729.281,21
+8301,843453.2031,1087055.077,1307856.464,21
+8302,845730.8834,1084608.489,2137912.773,21
+8303,845769.1692,1083195.395,1314624.758,21
+8304,848701.9354,1081260.06,1315623.771,21
+8305,849366.3071,1077843.576,2146868.264,21
+8306,850872.2319,1076413.201,1322128.439,21
+8307,853408.4293,1074742.895,1323946.483,21
+8308,852991.4707,1070529.829,2153462.205,21
+8309,856229.9349,1070002.874,1329945.936,21
+8310,856471.2544,1066659.912,1330736.246,21
+8311,858493.307,1065576.997,2161265.848,21
+8312,859218.5093,1062810.583,1335713.055,21
+8313,862116.2993,1059709.796,1338167.638,21
+8314,861387.4896,1057415.353,2167474.391,21
+8315,864214.1255,1055947.82,1341805.403,21
+8316,864488.6152,1052875.356,1344182.288,21
+8317,866081.4566,1050868.452,2173524.2,21
+8318,867611.9142,1048601.628,1348688.771,21
+8319,867712.4327,1046547.363,1349984.121,21
+8320,870618.9845,1043170.966,2178492.247,21
+8321,869975.4021,1041714.245,1354217.973,21
+8322,873091.5375,1038549.169,1355854.947,21
+8323,872010.355,1036022.261,2183602.031,21
+8324,875412.0024,1034087.649,1360828.638,21
+8325,875646.752,1031932.234,1360036.037,21
+8326,876405.4012,1028005.932,2189474.85,21
+8327,877748.0164,1025835.383,1365457.812,21
+8328,879322.2082,1023698.842,1366747.069,21
+8329,879264.9744,1020393.287,2193483.87,21
+8330,881561.9355,1018809.686,1370225.578,21
+8331,882061.71,1015613.076,1372193.156,21
+8332,882644.4697,1013708.307,2198582.903,21
+8333,884124.7407,1010561.163,1375636.162,21
+8334,886061.1575,1008848.295,1376533.14,21
+8335,885178.7616,1005334.092,2203005.352,21
+8336,887809.6034,1003976.834,1380824.581,21
+8337,887456.1765,1001069.04,1381744.63,21
+8338,889899.6337,997700.4822,2207098.955,21
+8339,889371.6615,996945.513,1385912.294,21
+8340,892044.9401,992458.9666,1386903.219,21
+8341,889201.1873,992641.738,2210379.007,21
+8342,891357.2111,990690.3987,1387529.283,21
+8343,891463.9837,990011.9604,1388592.142,21
+8344,893000.7538,987641.1385,2210671.361,21
+8345,891191.9725,987654.9855,1389623.378,21
+8346,893774.6067,984343.3337,1388992.48,21
+8347,893678.6446,985252.2181,2211861.761,21
+8348,893862.1785,983051.7179,1390375.338,21
+8349,894823.1102,981087.9186,1390668.309,21
+8350,894789.6681,980457.0461,2212426.136,21
+8351,894875.4267,977898.8507,1392799.792,21
+8352,896004.8174,977302.6684,1401712.333,21
+8353,895756.3777,975545.2303,2221670.452,21
+8354,897431.1476,974109.3961,1402082.858,21
+8355,896751.4139,971751.9897,1405073.97,21
+8356,896999.4798,971309.3864,2226595.389,21
+8357,898297.5311,968744.756,1406228.348,21
+8358,897816.971,967012.6562,1409830.833,21
+8359,899347.9159,965989.8187,2230686.496,21
+8360,899121.5591,964234.8482,1412415.49,21
+8361,898956.2031,961557.578,1412673.764,21
+8362,900321.7026,961797.9891,2235820.235,21
+8363,900124.0556,959434.7346,1416370.92,21
+8364,900109.5666,957556.1122,1418615.653,21
+8365,900991.5015,955811.149,2238689.966,21
+8366,901133.2029,956021.7951,1421197.316,21
+8367,901792.0094,952276.2777,1421136.374,21
+8368,901249.4429,952291.5657,2245203.185,21
+8369,903002.2501,949685.3136,1424983.839,21
+8370,901820.1583,948363.5632,1428057.473,21
+8371,903090.6971,947187.4267,2250163.042,21
+8372,902988.9137,946016.8662,1432165.024,21
+8373,902466.3615,943199.9295,1431781.205,21
+8374,904113.4998,943079.9726,2255447.518,21
+8375,903646.4703,940372.9174,1434538.852,21
+8376,904784.2034,938641.0751,1436767.69,21
+8377,903519.4909,938104.5788,2258970.565,21
+8378,905751.7766,936445.8206,1439287.159,21
+8379,904610.8292,934654.8011,1439863.681,21
+8380,905760.1404,932321.4736,2264389.079,21
+8381,905153.4622,930868.6147,1442149.668,21
+8382,905287.7409,930110.201,1443844.745,21
+8383,906501.2342,927329.6423,2267881.311,21
+8384,906159.2965,927390.1594,1446581.077,21
+8385,906305.0324,924262.6613,1448208.893,21
+8386,907021.5383,923285.1102,2271094.322,21
+8387,906802.6744,921366.1962,1450333.294,21
+8388,907266.9322,920651.5679,1451533.935,21
+8389,906620.8136,917600.6377,2275324.313,21
+8390,907837.0985,917050.0031,1453630.996,21
+8391,907584.6727,915389.0665,1456541.788,21
+8392,908543.5407,913827.9305,2277281.875,21
+8393,907740.9586,910962.1743,1457689.951,21
+8394,908396.4182,911642.3755,1459669.578,21
+8395,908335.5648,909818.4202,2281072.286,21
+8396,908983.0925,907261.1893,1461692.033,21
+8397,908155.0815,907062.1909,1461446.541,21
+8398,910141.164,905289.5051,2285761.397,21
+8399,907883.8744,902938.5794,1465192.885,21
+8400,910495.3628,901337.127,1464677.38,21
+8401,915339.6251,913650.4247,2304181.525,21
+8402,917490.7739,918633.4651,1484046.24,21
+8403,915990.1985,922674.4326,1485398.686,21
+8404,915898.3395,926999.1258,2307680.9,21
+8405,914820.8153,930567.1735,1489024.403,21
+8406,913748.3321,935454.8855,1486209.779,21
+8407,912897.5299,938648.419,2312588.91,21
+8408,912108.3846,941509.6696,1491242.834,21
+8409,911492.9351,946778.7604,1487780.211,21
+8410,910398.7784,949204.7846,2317329.945,21
+8411,908906.9334,955647.966,1491206.985,21
+8412,909294.167,959226.7659,1492530.885,21
+8413,906876.2854,962868.0173,2318370.509,21
+8414,907485.5485,966691.1371,1495005.025,21
+8415,904603.7966,970268.3607,1494061.394,21
+8416,905666.5694,976326.0153,2321072.982,21
+8417,904381.6901,977515.1895,1496016.213,21
+8418,901766.7924,983942.2891,1497774.734,21
+8419,902318.6332,986255.8604,2322028.003,21
+8420,900542.4795,991610.7457,1498516.425,21
+8421,900847.094,994203.0461,1498968.596,21
+8422,897766.6116,1000270.902,2326300.704,21
+8423,899074.8554,1002199.051,1498164.358,21
+8424,895779.3252,1008129.731,1501198.757,21
+8425,896368.7596,1010163.3,2328853.38,21
+8426,894502.5483,1016762.593,1500738.833,21
+8427,894490.4518,1017966.492,1502070.421,21
+8428,891586.986,1024132.326,2329985.995,21
+8429,892228.8109,1026491.311,1503036.886,21
+8430,890618.6397,1032305.461,1503901.27,21
+8431,889403.8586,1033982.405,2330078.928,21
+8432,888106.8463,1040776.186,1502671.528,21
+8433,887258.835,1041893.924,1503721.845,21
+8434,886673.1275,1048049.262,2331695.921,21
+8435,884579.9995,1051966.363,1504319.266,21
+8436,884947.7937,1055236.057,1504254.387,21
+8437,883006.3593,1059126.085,2334612.963,21
+8438,881356.9812,1063563.772,1504243.008,21
+8439,880944.3365,1067800.789,1507227.987,21
+8440,879487.3977,1071493.199,2334087.376,21
+8441,879040.6528,1075499.216,1506639.945,21
+8442,876924.6792,1080439.326,1507998.403,21
+8443,876955.1487,1082309.8,2335831.358,21
+8444,875317.4187,1088162.895,1508340.805,21
+8445,874067.0065,1092899.725,1508192.426,21
+8446,872994.3134,1094468.793,2338377.844,21
+8447,871896.9188,1100325.113,1509399.094,21
+8448,870372.3452,1102848.166,1509037.125,21
+8449,870187.549,1108754.015,2340211.395,21
+8450,867764.4392,1111030.334,1510030.064,21
+8451,868118.253,1116418.6,1509932.629,21
+8452,864999.2777,1119176.105,2341560.502,21
+8453,865978.8542,1124581.501,1510987.949,21
+8454,863428.5569,1129115.83,1511075.924,21
+8455,861986.7609,1131936.497,2343069.415,21
+8456,862613.1615,1137374.644,1511012.965,21
+8457,859469.8473,1140937.271,1512620.25,21
+8458,859737.118,1144973.796,2344821.99,21
+8459,857410.4429,1148400.835,1511486.119,21
+8460,857133.7288,1153828.61,1513965.66,21
+8461,857380.7472,1150759.307,2345152.804,21
+8462,858928.7329,1152089.674,1517523.401,21
+8463,858855.1732,1149535.276,1517517.317,21
+8464,859575.535,1148863.214,2350978.743,21
+8465,860622.3189,1145746.348,1518457.014,21
+8466,860425.6403,1146009.755,1522481.331,21
+8467,859932.0175,1143865.859,2352322.586,21
+8468,862176.845,1142685.015,1522754.875,21
+8469,860854.2201,1140733.082,1523900.752,21
+8470,862692.5182,1139422.751,2356807.656,21
+8471,862047.9894,1137313.739,1523734.009,21
+8472,862767.3699,1137530.538,1526649.048,21
+8473,863749.0115,1134143.454,2359562.753,21
+8474,863046.1142,1132031.403,1527859.422,21
+8475,864465.2764,1132793.87,1528467.265,21
+8476,864295.3713,1130417.104,2361331.567,21
+8477,864356.7327,1127215.171,1529335.263,21
+8478,865771.6875,1128145.285,1532823.632,21
+8479,864860.4503,1124931.911,2362875.87,21
+8480,867354.7581,1123477.862,1532364.306,21
+8481,864915.1924,1122848.965,1533116.297,21
+8482,867444.9706,1120643.78,2367270.01,21
+8483,866627.1413,1118730.461,1533763.551,21
+8484,868599.7089,1117961.293,1534988.869,21
+8485,867460.9207,1115869.573,2369433.335,21
+8486,868721.0114,1114198.149,1537080.277,21
+8487,867829.27,1113245.408,1536859.8,21
+8488,869586.1233,1110638.641,2370990.358,21
+8489,869357.4716,1110273.008,1538871.45,21
+8490,870333.6651,1107141.976,1539688.311,21
+8491,869182.1157,1107130.674,2372319.113,21
+8492,871210.8551,1104268.267,1541430.679,21
+8493,871327.6292,1103009.877,1542281.841,21
+8494,871247.3615,1102265.742,2374406.398,21
+8495,871121.1103,1099357.797,1543376.804,21
+8496,872150.5865,1098743.912,1542519.512,21
+8497,872705.4543,1095720.847,2378252.137,21
+8498,872843.2953,1095847.143,1544282.152,21
+8499,873784.1261,1092794.215,1546008.831,21
+8500,872958.1383,1092304.004,2378426.998,21
+8501,874087.0203,1090124.809,1548336.133,21
+8502,874262.5963,1088425.587,1543837.435,21
+8503,874801.7269,1086897.774,2383034.043,21
+8504,874735.3263,1085062.922,1548963.09,21
+8505,875590.0973,1083830.644,1548375.631,21
+8506,875266.5524,1081378.91,2382981.979,21
+8507,876973.0077,1081184.693,1551076.75,21
+8508,875491.9568,1077637.859,1550023.672,21
+8509,877176.1624,1077860.56,2385627.375,21
+8510,876723.4638,1074088.908,1551609.289,21
+8511,877745.7792,1074932.741,1552625.082,21
+8512,878050.4858,1070759.68,2386569.018,21
+8513,878333.8451,1071049.162,1554202.744,21
+8514,877789.7059,1069264.088,1553829.014,21
+8515,878653.2298,1065791.204,2388835.498,21
+8516,879408.4217,1066191.787,1555825.785,21
+8517,880041.1237,1063921.605,1556101.16,21
+8518,879105.4792,1060957.485,2388900.689,21
+8519,880808.771,1060586.484,1558452.934,21
+8520,880382.7237,1058776.598,1556810.661,15.6
+8521,0,0,832891.6109,15.6
+8522,0,0,97.6602976,15.6
+8523,0,253.5889792,0,15.6
+8524,0,0,832625.0576,15.6
+8525,429410.8498,0,4.330531288,15.6
+8526,0,0,0,15.6
+8527,0,0,832538.0139,15.6
+8528,0,0,1243007.963,15.6
+8529,0,0,0,15.6
+8530,0,119.0066004,809900.2053,15.6
+8531,0,0,0,15.6
+8532,0,0,0,15.6
+8533,0,0,810775.7105,15.6
+8534,0,3.507928583,0,15.6
+8535,0,0,0,15.6
+8536,0,76.89222975,811602.6539,15.6
+8537,339296.8127,0,0,15.6
+8538,0,0,0,15.6
+8539,0,0,812417.8839,15.6
+8540,0,3.435555271,0,15.6
+8541,0,0,0,15.6
+8542,0,66.45941774,813183.2152,15.6
+8543,0,0,0,15.6
+8544,0,0,0,15.6
+8545,0,0,813933.6186,15.6
+8546,0,2.793215875,0,15.6
+8547,0,0,0,15.6
+8548,0,0,814628.6154,15.6
+8549,0,59.14811576,0,15.6
+8550,0,0,0,15.6
+8551,0,0,815312.7576,15.6
+8552,0,0,0,15.6
+8553,0,0,0,15.6
+8554,0,0,815950.3901,15.6
+8555,0,0,0,15.6
+8556,0,73.23851096,0,15.6
+8557,0,0,816581.0749,15.6
+8558,0,0,0,15.6
+8559,0,0,0,15.6
+8560,0,0,817172.3564,15.6
+8561,0,0,0,15.6
+8562,0,0,0,15.6
+8563,0,0,817763.193,15.6
+8564,0,0,0,15.6
+8565,0,0,0,15.6
+8566,0,0,2021063.295,15.6
+8567,0,0,0,15.6
+8568,0,56.19365739,0,15.6
+8569,0,0,797916.0045,15.6
+8570,0,0,0,15.6
+8571,0,0,0,15.6
+8572,0,0,799256.9136,15.6
+8573,0,0,0,15.6
+8574,0,0,0,15.6
+8575,0,68.52695066,800563.4009,15.6
+8576,339285.1332,0,0,15.6
+8577,0,0,0,15.6
+8578,0,0,801795.4942,15.6
+8579,0,0,0,15.6
+8580,0,0,0,15.6
+8581,0,0,802654.5337,15.6
+8582,0,0,5.833496167,15.6
+8583,29211.59225,0,0,15.6
+8584,2276.620783,0,803755.522,15.6
+8585,1862.398189,0,0,15.6
+8586,11076.50111,0,0,15.6
+8587,8347.132649,0,804934.7049,15.6
+8588,7967.694862,0,0,15.6
+8589,8374.024579,0,0,15.6
+8590,9401.917055,0,806059.2957,15.6
+8591,9383.187729,0,0,15.6
+8592,9475.865117,0,0,15.6
+8593,9739.477142,0,807161.7438,15.6
+8594,9851.840928,0,0,15.6
+8595,10017.74394,0,0,15.6
+8596,10175.62931,0,808204.5874,15.6
+8597,10323.28438,0,0,15.6
+8598,10459.23123,0,0,15.6
+8599,10644.81475,0,809227.7741,15.6
+8600,10719.14364,55.57306195,0,15.6
+8601,10926.67998,0,0,15.6
+8602,11024.43127,0,810199.0129,15.6
+8603,11168.75928,0,0,15.6
+8604,11315.78432,0,1349507.841,15.6
+8605,11419.62512,0,784316.8628,15.6
+8606,11592.08556,0,0,15.6
+8607,11687.31062,65.3539221,0,15.6
+8608,11815.21557,0,786292.153,15.6
+8609,11942.9947,0,0,15.6
+8610,12100.43276,0,0,15.6
+8611,12190.54785,0,788208.2258,15.6
+8612,12333.18386,0,0,15.6
+8613,0,0,0,15.6
+8614,0,0,790030.1777,15.6
+8615,339297.7701,0,0,15.6
+8616,0,0,0,15.6
+8617,47591.42051,3.859444518,791797.4433,15.6
+8618,208.023955,0,0,15.6
+8619,7020.207433,78.74305146,0,15.6
+8620,18975.58831,0,793475.6756,15.6
+8621,12335.55691,0,0,15.6
+8622,13474.34722,0,0,15.6
+8623,13677.6913,4.021357721,795111.4061,15.6
+8624,13765.18507,0,0,15.6
+8625,13860.92341,80.29955176,0,15.6
+8626,13958.29791,0,796668.6885,15.6
+8627,14065.31474,0,0,15.6
+8628,14178.00176,0,0,15.6
+8629,14217.81479,4.076741575,798184.1129,15.6
+8630,14358.42384,0,0,15.6
+8631,14444.94525,81.55912027,0,15.6
+8632,14516.21588,0,799616.546,15.6
+8633,14649.0435,0,0,15.6
+8634,14690.82108,0,304040.3038,15.6
+8635,14813.2509,4.166376001,880865.6293,15.6
+8636,14901.68331,0,85956.66772,15.6
+8637,14969.0939,82.78731876,218461.26,15.6
+8638,15064.2628,0,889501.0097,15.6
+8639,15161.13612,0,94423.5102,15.6
+8640,15206.50478,0,212077.9134,15.6
+8641,15897.74174,0,884739.3427,15.6
+8642,15830.66187,429886.0995,96393.1782,15.6
+8643,15823.33803,0,1352141.461,15.6
+8644,15770.74304,0,861113.9204,15.6
+8645,15778.38116,0,94211.28958,15.6
+8646,15696.04041,0,202906.9573,15.6
+8647,0,0,860160.073,15.6
+8648,0,0,94581.60995,15.6
+8649,0,0,202862.6723,15.6
+8650,0,0,859337.0005,15.6
+8651,61282.84553,0,95010.96563,15.6
+8652,397.0553079,428269.9425,477007.1743,15.6
+8653,8178.52432,0,93408.2578,15.6
+8654,22092.41304,0,98014.92405,15.6
+8655,353526.7127,0,138634.8945,15.6
+8656,15353.16829,0,293017.4121,15.6
+8657,15323.04077,0,102890.5552,15.6
+8658,15298.78745,0,93153.89213,15.6
+8659,15219.92963,0,353771.2816,15.6
+8660,15177.66243,0,302978.737,15.6
+8661,15140.84532,0,257293.39,15.6
+8662,15098.43907,428159.9711,266815.5328,15.6
+8663,15040.99432,0,256095.4208,15.6
+8664,14996.84758,0,0,15.6
+8665,14936.56267,0,0,15.6
+8666,14921.29493,0,680792.9749,15.6
+8667,14856.62003,0,0,15.6
+8668,14798.32193,0,0,15.6
+8669,14737.71437,41318.12582,921666.1394,15.6
+8670,14715.17679,2385.17642,71941.67966,15.6
+8671,14639.05405,3963.558794,173016.7075,15.6
+8672,14609.27964,444407.1662,815499.3665,15.6
+8673,14558.26438,11734.5283,92384.87537,15.6
+8674,14472.67671,11762.01927,186111.8438,15.6
+8675,14472.67561,12178.95675,807538.879,15.6
+8676,14360.24084,12328.43386,93577.88743,15.6
+8677,14361.86494,12489.62827,187546.2241,15.6
+8678,14278.59562,12668.45459,810538.811,15.6
+8679,14211.24438,12776.52254,94261.03584,15.6
+8680,14191.80459,12878.63083,188889.0913,15.6
+8681,0,13117.52505,813440.3775,15.6
+8682,0,441260.3746,1100079.932,15.6
+8683,0,13367.97736,184197.7642,15.6
+8684,0,13518.75802,801645.9197,15.6
+8685,55378.80427,13616.69399,94081.58935,15.6
+8686,0,13864.67708,186069.979,15.6
+8687,5272.878881,13907.45327,805268.8883,15.6
+8688,21104.70611,14109.02402,94988.87965,15.6
+8689,12281.54254,14256.79533,187784.6899,15.6
+8690,13647.7211,14383.92798,808681.8543,15.6
+8691,13611.84348,14521.43541,95876.31964,15.6
+8692,13562.19238,442620.102,189481.2943,15.6
+8693,13514.60894,14841.45994,811991.7066,15.6
+8694,13416.9874,14943.47309,96687.30383,15.6
+8695,352658.3603,15102.72156,191084.051,15.6
+8696,13332.4914,15300.02686,815070.1797,15.6
+8697,13250.15713,15346.6872,97446.24887,15.6
+8698,13195.36475,15605.19768,192712.3571,15.6
+8699,13134.19486,0,719930.0809,15.6
+8700,13040.94983,0,0,15.6
+8701,13170.61004,0,0,15.6
+8702,13215.12928,427900.4538,724383.053,15.6
+8703,13334.36879,0,244380.4063,15.6
+8704,13369.28303,68481.09252,176750.3834,15.6
+8705,13485.43804,0,806944.5951,15.6
+8706,13571.92008,3398.290095,114583.4475,15.6
+8707,13638.10644,24347.85884,195840.9521,15.6
+8708,13721.75115,15370.79424,824968.3183,15.6
+8709,13804.32162,15667.49621,99892.85578,15.6
+8710,13899.54363,16170.42329,197793.8489,15.6
+8711,13942.00967,16165.58036,826769.5968,15.6
+8712,14051.12447,443976.7452,100105.2661,15.6
+8713,14150.14566,16191.97514,198307.7024,15.6
+8714,14166.68174,16201.014,828438.9809,15.6
+8715,0,16243.75348,100335.3744,15.6
+8716,0,16188.43042,198956.1139,15.6
+8717,0,16303.61866,830022.9838,15.6
+8718,0,16220.95262,100604.646,15.6
+8719,58149.17202,16292.2252,199630.7477,15.6
+8720,0,16349.01742,831599.4244,15.6
+8721,6373.922055,16387.83535,1131221.626,15.6
+8722,22195.79598,444149.7046,193838.0035,15.6
+8723,13553.0063,16387.83184,817122.1805,15.6
+8724,15048.68867,16393.58682,99122.33407,15.6
+8725,15167.87208,16431.32106,194884.9148,15.6
+8726,15221.23006,16428.36451,819496.4556,15.6
+8727,15288.87164,16441.0957,99557.25197,15.6
+8728,15395.0262,16412.1847,195858.7412,15.6
+8729,15449.87502,16463.70098,821790.9723,15.6
+8730,15520.5402,16487.99324,99854.83545,15.6
+8731,15510.94954,16428.35564,196805.7503,15.6
+8732,15595.90337,444242.013,823925.1433,15.6
+8733,15660.13832,16452.64613,0,15.6
+8734,15728.37905,0,0,15.6
+8735,355132.3731,0,728625.4957,15.6
+8736,15866.63941,0,234037.2882,15.6
+8737,15939.14355,0,175866.6193,15.6
+8738,16013.21619,65782.04346,817603.0146,15.6
+8739,16079.37441,0,114294.5415,15.6
+8740,16150.09403,5836.43741,198764.9048,15.6
+8741,16212.85461,24780.27683,830370.0162,15.6
+8742,16271.78752,442924.8502,101360.163,15.6
+8743,16363.04108,16347.90478,200905.5881,15.6
+8744,16439.12096,16620.98354,831720.805,15.6
+8745,16483.65132,16553.71931,101448.8164,15.6
+8746,16562.07516,16601.83589,201393.239,15.6
+8747,16612.44899,16529.35402,832965.3067,15.6
+8748,16710.36081,16667.75588,101759.6623,15.6
+8749,0,16503.67099,201770.1434,15.6
+8750,0,16627.41897,834298.8157,15.6
+8751,0,16563.27442,101818.4061,15.6
+8752,61756.11536,444197.0537,202425.2163,15.6
+8753,0,16547.23164,835465.2703,15.6
+8754,11967.25035,16608.30226,101993.2043,15.6
+8755,22762.68324,16547.22832,202989.3736,15.6
+8756,16190.50702,16608.29892,836498.284,15.6
+8757,17305.5075,16563.26441,102239.6388,15.6
+8758,17387.5533,16553.69707,203418.7015,15.6
+8759,17458.19529,16601.81369,837648.0888,15.6
+8760,17522.89726,16569.76718,102358.4353,15.6
+8761,17672.22501,16642.07728,1238371.342,15.6
+8762,17855.81717,444384.6249,822644.0306,15.6
+8763,17931.26046,16869.12809,100967.3618,15.6
+8764,18146.61839,17139.76993,198608.8033,15.6
+8765,18275.20432,17117.00405,825092.4094,15.6
+8766,18417.51028,17329.67968,0,15.6
+8767,18588.17438,17440.74426,0,15.6
+8768,18718.2479,0,728442.2642,15.6
+8769,18867.66996,0,242157.7307,15.6
+8770,19020.58393,0,178966.0402,15.6
+8771,19165.71601,0,819457.1477,15.6
+8772,19319.32925,500878.5439,116360.8735,15.6
+8773,19429.22196,0,202192.6352,15.6
+8774,19611.68219,6155.384451,832834.4657,15.6
+8775,359113.6651,28526.7904,104402.8767,15.6
+8776,19868.57406,16526.30628,204562.3427,15.6
+8777,20075.01835,18619.73098,834739.552,15.6
+8778,20109.06297,18754.41498,104976.6783,15.6
+8779,20390.15247,18912.32673,205472.483,15.6
+8780,20462.10878,19019.03821,836496.9961,15.6
+8781,20697.15248,19081.27293,105668.3314,15.6
+8782,0,446628.2379,206484.8709,15.6
+8783,0,19351.61947,838316.9766,15.6
+8784,0,19450.06115,106266.3494,15.6
+8785,77775.27059,19547.88595,207577.8599,15.6
+8786,6278.246921,19709.23763,839967.2676,15.6
+8787,10655.94027,19785.45937,106945.6829,15.6
+8788,30078.11133,19868.58391,208641.7545,15.6
+8789,20487.76016,20021.26851,841631.4631,15.6
+8790,21948.51842,20124.67649,107608.1567,15.6
+8791,22188.76988,20246.29557,209658.4484,15.6
+8792,22313.19328,447601.9995,843171.7566,15.6
+8793,22407.8826,20492.62064,108370.4266,15.6
+8794,281995.2167,20535.33827,210548.8771,15.6
+8795,45282.03227,20664.40228,844751.2077,15.6
+8796,36936.92135,20765.93857,108907.4194,15.6
+8797,110374.1082,20846.66689,211703.7343,15.6
+8798,98680.10546,21010.33099,846033.0621,15.6
+8799,89409.46689,21179.52864,0,15.6
+8800,93390.52771,21285.45654,0,15.6
+8801,95369.00909,21416.41517,1782186.019,15.6
+8802,99436.08148,427272.6921,255992.9805,15.6
+8803,103603.3136,0,192858.5215,15.6
+8804,102461.4705,0,819572.941,15.6
+8805,105008.7847,79788.21289,121359.6024,15.6
+8806,106168.4312,218.6971368,208785.2997,15.6
+8807,107773.4887,15369.78706,836128.3945,15.6
+8808,108986.9194,29032.6019,110066.8014,15.6
+8809,110582.3052,20953.88723,210342.3035,15.6
+8810,111766.4518,22193.70911,838178.8541,15.6
+8811,113478.0839,22408.1926,110685.3653,15.6
+8812,114525.6806,449677.8028,211357.2564,15.6
+8813,116029.1488,22560.31996,840139.2665,15.6
+8814,117271.2304,22698.82477,111390.1045,15.6
+8815,433107.0351,22752.63304,212452.2473,15.6
+8816,94666.25054,22859.00687,842074.3676,15.6
+8817,172545.1854,23005.29842,112108.7379,15.6
+8818,104624.0048,23044.46426,213541.7652,15.6
+8819,122268.6706,23144.63632,843948.238,15.6
+8820,128754.8287,23284.60464,113043.7228,15.6
+8821,126041.8067,23337.66492,214747.9985,15.6
+8822,127410.2833,450613.5493,845645.825,15.6
+8823,128226.5418,23535.74946,113525.1924,15.6
+8824,26125.85516,23620.6354,215532.2665,15.6
+8825,26182.7229,23757.26174,846940.8376,15.6
+8826,26339.19892,23807.11674,113987.2245,15.6
+8827,26335.11822,23913.57905,216225.9708,15.6
+8828,26465.62181,24035.49223,848246.9143,15.6
+8829,437031.3593,413937.2304,114350.4109,15.6
+8830,30462.89146,40100.15874,216916.3611,15.6
+8831,79626.85126,61082.82764,849426.0316,15.6
+8832,180140.1779,604189.2235,0,15.6
+8833,133784.9414,130033.5869,0,15.6
+8834,137232.2766,131183.5697,738993.1923,15.6
+8835,140129.8928,110436.9629,269551.6071,15.6
+8836,141045.2151,111131.0236,216364.8468,15.6
+8837,141586.1585,111651.4775,833300.9345,15.6
+8838,142973.8018,205995.5949,130023.9156,15.6
+8839,143178.7686,119318.0684,219950.7923,15.6
+8840,144553.0545,127616.1394,853230.8602,15.6
+8841,145249.0924,150851.0147,1162423.351,15.6
+8842,146093.7426,567262.9734,212953.7099,15.6
+8843,146941.4193,143077.0591,1697152.241,15.6
+8844,147850.7861,144233.101,685856.5238,15.6
+8845,149009.0333,144990.404,703518.0309,15.6
+8846,149206.481,146648.6623,780187.0624,15.6
+8847,122947.6173,147293.6243,812277.6128,15.6
+8848,123327.2959,148469.4665,777497.6049,15.6
+8849,205141.5525,149717.5924,793922.2789,15.6
+8850,139176.2551,150637.1085,800380.9821,15.6
+8851,149288.2463,151690.9425,805365.8881,15.6
+8852,159022.884,580105.7774,810997.2654,15.6
+8853,155263.7003,153686.2412,816426.4853,15.6
+8854,156697.9825,155152.0201,821666.4361,15.6
+8855,497183.1999,156265.5433,826462.5568,15.6
+8856,158274.2141,157194.4555,831667.6505,15.6
+8857,159291.1047,158415.1539,836377.4593,15.6
+8858,160017.6238,159511.7404,840641.3242,15.6
+8859,28774.52206,27021.70401,845390.085,15.6
+8860,28827.95743,27144.34376,849006.5629,15.6
+8861,28970.79103,27229.60112,853937.5096,15.6
+8862,28980.749,454268.238,857454.5944,15.6
+8863,545060.1684,27398.80442,861139.6906,15.6
+8864,29184.95134,27565.43847,865139.1926,15.6
+8865,109224.8787,614263.0929,744981.6215,15.6
+8866,223572.8248,27731.23867,748124.6397,15.6
+8867,157670.464,67743.41277,750868.8562,15.6
+8868,169732.7474,214334.5391,1041465.025,15.6
+8869,170287.41,137429.2166,872629.5585,15.6
+8870,171662.6814,227368.2625,862333.0708,15.6
+8871,171966.7693,152044.0273,899257.643,15.6
+8872,172758.2884,601501.4608,886903.6695,15.6
+8873,174008.4314,180795.0008,332943.7553,15.6
+8874,174125.3182,177025.2606,326440.2329,15.6
+8875,175578.787,179327.1177,320357.8884,15.6
+8876,175660.3381,179790.5855,314189.2093,15.6
+8877,176843.1757,181026.954,308600.3575,15.6
+8878,177953.3402,181918.6842,302915.6918,15.6
+8879,147809.0377,183287.1689,297670.3801,15.6
+8880,149253.7436,184155.1833,292372.522,17.8
+8881,915448.9501,1336922.778,2541434.596,17.8
+8882,919688.7807,1443196.143,3357953.767,17.8
+8883,488725.1397,218938.5641,1823523.715,17.8
+8884,581051.6604,517620.883,1514459.943,17.8
+8885,473397.5636,453174.7147,1098768.145,17.8
+8886,427116.5153,460670.768,1404001.607,17.8
+8887,462566.4031,439001.2604,1263007.814,17.8
+8888,439068.0874,441371.5524,1261798.575,17.8
+8889,435277.7075,438371.4512,1273821.298,17.8
+8890,436949.1443,438763.868,1284289.953,17.8
+8891,434259.9246,437869.2488,1297132.431,17.8
+8892,435845.7045,863509.3964,1305397.34,17.8
+8893,59925.23559,435441.2939,1316113.436,17.8
+8894,59982.2577,435824.9364,1325387.949,17.8
+8895,1213706.674,72429.99185,1334931.805,17.8
+8896,532621.8066,72487.47192,1342687.09,17.8
+8897,415039.9436,1054906.768,1353208.318,17.8
+8898,411327.8726,258540.0572,1171382.258,17.8
+8899,457855.2228,418096.6885,1178781.214,17.8
+8900,433191.4704,398681.8524,1472055.863,17.8
+8901,432471.7052,372220.4813,1443211.114,17.8
+8902,432107.6899,912008.1733,1387056.762,17.8
+8903,431926.4591,426038.7686,1383473.712,17.8
+8904,432052.0732,422397.0007,1396154.862,17.8
+8905,431322.0436,433486.7832,1413712.239,17.8
+8906,431786.9555,429949.3865,1409823.198,17.8
+8907,431031.3852,428267.6896,1417941.478,17.8
+8908,431280.0206,428357.183,1423164.4,17.8
+8909,431699.4085,427651.4491,1429063.57,17.8
+8910,430618.5168,427081.8429,1434738.474,17.8
+8911,371994.0745,414062.8483,386807.7827,17.8
+8912,371258.9521,840107.9686,379965.2949,17.8
+8913,461112.6175,413360.1349,2541909.189,17.8
+8914,449684.4877,412688.9385,1711904.814,17.8
+8915,424872.8653,412587.4632,1078677.871,17.8
+8916,431952.1043,411998.7467,1554473.768,17.8
+8917,436344.2722,412028.8223,1410437.907,17.8
+8918,428828.5225,411743.9778,2426047.233,17.8
+8919,432016.2009,444165.7592,1392755.8,17.8
+8920,431372.7354,413144.5712,1403927.186,17.8
+8921,430972.1513,420001.8222,1415325.947,17.8
+8922,431373.429,851542.0903,1424837.329,17.8
+8923,431603.6179,423618.4246,1432814.924,17.8
+8924,430746.9676,422143.3079,1443654.12,17.8
+8925,60169.89784,422975.7705,1450530.179,17.8
+8926,60147.43473,422278.0728,1458674.562,17.8
+8927,874333.6925,71786.20035,1467875.024,17.8
+8928,529357.2637,71942.49151,1474940.743,17.8
+8929,411282.4758,1019065.247,1480152.203,17.8
+8930,412319.4787,239154.0297,1287081.467,17.8
+8931,796125.4484,415856.9985,1290701.02,17.8
+8932,432751.0929,811925.5368,1582207.829,17.8
+8933,432085.7417,363162.8676,1568763.585,17.8
+8934,432727.4504,476803.0442,1505358.278,17.8
+8935,432186.8771,412310.5507,1529172.509,17.8
+8936,432220.6487,418551.1041,1527091.225,17.8
+8937,433069.0048,422769.2741,1524264.873,17.8
+8938,432459.6685,421329.0432,1536181.234,17.8
+8939,432400.7313,420473.3263,1537353.79,17.8
+8940,433448.3414,421009.5772,1544407.028,20
+8941,2319535.561,2614752.323,3172981.988,20
+8942,1108999.133,1459855.468,2964764.94,20
+8943,846011.8682,723341.7088,805592.0323,20
+8944,777704.8843,811725.3572,2748512.947,20
+8945,915345.9689,985033.1887,2454246.841,20
+8946,928833.934,918268.2168,2508366.312,20
+8947,889535.7686,884503.463,2140763.161,20
+8948,884247.2198,891581.1597,2246674.209,20
+8949,890004.4358,842585.94,2248039.722,20
+8950,886558.538,813050.1809,2213949.748,20
+8951,872131.5398,1339054.947,2208333.615,20
+8952,867382.5683,829944.4995,2246900.329,20
+8953,870716.1078,849502.1943,2220363.308,20
+8954,866029.1921,841429.4083,3110517.046,20
+8955,864728.9363,838451.9283,2188895.836,20
+8956,863821.9096,833574.9008,2191076.587,20
+8957,146908.3607,829846.9498,2197723.693,20
+8958,960876.3791,826491.8027,2197081.219,20
+8959,825443.3159,151256.4486,2199897.419,20
+8960,880728.5954,150848.0247,2203785.227,20
+8961,890184.6383,1663404.303,2203892.041,20
+8962,872712.1922,783830.1562,1917798.625,20
+8963,844099.3084,663495.2135,2266324.881,20
+8964,860392.7187,857373.581,2187167.867,20
+8965,855912.1132,650861.1013,2193762.513,20
+8966,853781.123,886867.0815,2185277.843,20
+8967,1192979.874,815097.5084,2189619.902,20
+8968,852197.1393,780050.1084,2187087.523,20
+8969,851260.4406,797922.9809,2182464.25,20
+8970,850842.8313,789270.1049,2184887.588,20
+8971,821547.3011,1212790.084,2089928.106,20
+8972,822071.0362,782683.7185,2087236.993,20
+8973,821114.1605,779896.721,2082235.882,20
+8974,774587.7524,774483.6098,582856.6674,20
+8975,882001.7694,772427.576,496885.9346,20
+8976,839577.6135,770101.3483,2449766.549,20
+8977,850552.923,765798.2182,2414175.676,20
+8978,844078.9347,765413.0487,2219818.159,20
+8979,846398.5219,759432.7183,1946644.527,20
+8980,844918.5013,759721.6609,2213278.542,20
+8981,844883.7578,1149607.082,2134399.579,20
+8982,842817.8972,723004.8795,2135287.512,20
+8983,845023.971,719687.4014,2190787.17,20
+8984,841737.8485,802797.9064,2174628.799,20
+8985,843148.6305,723777.8722,2111283.974,20
+8986,842616.7832,743900.2917,2160210.014,20
+8987,841887.813,741480.4336,2151969.094,20
+8988,140481.7492,737106.784,2152465.849,20
+8989,954359.2455,734582.2939,2157360.436,20
+8990,780574.4387,731899.3157,2157743.78,20
+8991,898095.4546,558965.0449,3069346.423,20
+8992,866154.5582,132510.4994,2126570.298,20
+8993,824880.2645,1219407.133,1855620.528,20
+8994,843878.0117,537016.5413,2200738.813,20
+8995,842605.5574,719390.0897,2144906.691,20
+8996,839325.6152,657556.548,2147644.501,20
+8997,840019.6107,612393.6937,2151128.883,20
+8998,839637.3133,803949.527,2147314.159,20
+8999,838828.8683,711159.8046,2153762.496,20
+9000,839201.3726,700623.8157,2159460.883,21
+9001,2646058.672,2986900.885,4473538.139,21
+9002,2065850.992,1972151.553,4434245.909,21
+9003,640229.1355,688736.5932,1917633.61,21
+9004,690004.7483,758934.6408,2187994.168,21
+9005,910797.0492,1066564.167,2228542.113,21
+9006,1036277.885,957677.3713,2472917.692,21
+9007,845268.6743,918462.2982,2262724.749,21
+9008,879529.481,929457.5296,2308939.444,21
+9009,882683.152,925102.6524,2314591.425,21
+9010,877276.3274,923221.695,2321118.714,21
+9011,872477.1177,1345200.478,2323959.001,21
+9012,868511.6628,916992.3688,2325767.563,21
+9013,865738.2785,913615.1873,2325464.326,21
+9014,861621.5389,912205.3281,2329695.869,21
+9015,860437.3375,908878.6495,2326601.257,21
+9016,855872.5906,906385.7649,2330014.385,21
+9017,854295.7612,905441.6089,2327719.538,21
+9018,850418.9825,901740.2664,2329478.922,21
+9019,848666.5854,900202.6182,2326812.539,21
+9020,844771.2624,898532.2136,2325857.873,21
+9021,844242.8058,1321514.35,2322950.648,21
+9022,840703.0081,893822.4667,2323886.15,21
+9023,839059.5473,893046.6192,2324111.035,21
+9024,835986.705,891568.6786,2322212.763,21
+9025,834054.6736,888237.0908,2318763.385,21
+9026,832594.543,887687.8446,2321981.528,21
+9027,829220.44,885496.628,2317755.537,21
+9028,827944.1594,885409.1691,2316489.7,21
+9029,823966.9246,882300.7319,2316091.432,21
+9030,824237.3267,881280.3288,2315947.854,21
+9031,820972.9846,1306350.331,2314537.016,21
+9032,818932.0564,877346.2008,2313661.073,21
+9033,818304.1671,879137.9318,2313307.268,21
+9034,815078.5042,874905.0585,2312762.807,21
+9035,813977.9876,874772.4884,2309774.22,21
+9036,812427.1386,873307.9299,2312940.689,21
+9037,809924.4442,872830.3789,2309450.588,21
+9038,807725.6518,871648.5863,2310270.58,21
+9039,806976.7595,870041.0337,2308017.86,21
+9040,805434.0179,868442.0103,2309032.897,21
+9041,804055.1274,1293943.579,2308121.648,21
+9042,801354.4593,867327.3978,2306786.289,21
+9043,800409.9499,865038.6941,2308999.228,21
+9044,799833.115,865736.3525,2305905.468,21
+9045,796673.5338,863026.0218,2308393.288,21
+9046,796790.135,863369.5584,2306725.178,21
+9047,794613.5521,862155.524,2306165.903,21
+9048,793212.439,861127.9716,2307399.468,21
+9049,792126.2391,859616.4612,2305979.8,21
+9050,790167.9039,860177.1941,2305521.179,21
+9051,790255.686,1284409.628,2306126.863,21
+9052,786547.8843,856537.3706,2305646.925,21
+9053,787277.1521,858628.2369,2306035.914,21
+9054,786686.9742,855165.5375,2304836.21,21
+9055,782551.0436,856286.8549,2307832.365,21
+9056,783296.0393,853665.1043,2303321.595,21
+9057,782233.313,854396.0897,2305383.682,21
+9058,779923.5838,853035.8495,2305970.424,21
+9059,780369.4754,854096.6765,2306149.896,21
+9060,778004.6362,850653.3562,2305064.033,21
+9061,1040576.903,1442231.832,2306232.016,21
+9062,1039462.898,1439991.795,2308113.858,21
+9063,1035956.243,1440286.344,2305371.571,21
+9064,1036327.554,1440180.581,2308422.024,21
+9065,1033581.219,1439542.019,2309920.742,21
+9066,1032725.989,1439197.059,2308449.642,21
+9067,1031238.901,1438634.279,2312187.49,21
+9068,1029740.803,1438637.038,2310776.034,21
+9069,1029048.307,1437850.385,2312230.082,21
+9070,1027520.294,1438914.161,2312878.663,21
+9071,1024840.949,1436083.205,2315361.683,21
+9072,1025609.081,1438560.302,2313231.679,21
+9073,1023592.582,1437381.457,2317171.716,21
+9074,1021683.247,1436703.591,2313923.962,21
+9075,1020278.849,1435538.666,2320702.229,21
+9076,1018904.966,1436014.681,2318003.067,21
+9077,1019857.881,1435287.178,2319083.355,21
+9078,1015258.756,1434443.438,2323682.342,21
+9079,1015546.269,1435648.113,2319517.752,21
+9080,1015172.591,1433503.583,2324699.99,21
+9081,1013278.864,1434473.407,2323358.841,21
+9082,1010988.367,1434029.425,2325906.519,21
+9083,1011604.788,1434753.782,2324665.783,21
+9084,1008629.988,1432935.563,2328509.848,21
+9085,1009304.364,1433680.703,2326679.911,21
+9086,1006116.694,1433721.082,2332848.535,21
+9087,1006246.388,1433716.84,2329362.525,21
+9088,1004654.966,1431992.929,2333132.951,21
+9089,1003780.544,1434050.695,2330671.401,21
+9090,1002654.392,1432358.225,2336122.092,21
+9091,1001334,1433859.271,2335501.478,21
+9092,998982.5235,1431973.507,2335779.579,21
+9093,999652.3686,1432269.909,2338061.859,21
+9094,998447.7329,1433692.855,2339331.484,21
+9095,995065.9799,1432851.848,2339288.197,21
+9096,996831.4999,1431875.043,2341444.189,21
+9097,993759.6681,1432323.906,2344228.9,21
+9098,993799.3189,1432721.6,2343797.177,21
+9099,991887.312,1430871.458,2345492.981,21
+9100,990810.7055,1433466.403,2346020.166,21
+9101,991095.639,1431783.818,2349886.088,21
+9102,987464.3007,1432015.908,2349627.479,21
+9103,989002.6149,1431868.352,2350039.535,21
+9104,987135.4414,1432003.114,2353922.1,21
+9105,984565.1531,1432242.533,2351846.63,21
+9106,985230.0899,1432255.184,2357199.78,21
+9107,983893.9524,1431682.874,2354847.926,21
+9108,982688.185,1431737.231,2351381.606,21
+9109,980204.5456,1432648.914,2349568.411,21
+9110,981447.1597,1430636.385,2353178.923,21
+9111,979615.2758,1432888.984,2351864.573,21
+9112,976250.4057,1432394.272,2354656.533,21
+9113,975977.4883,1431848.923,2356653.81,21
+9114,973392.0285,1430124.214,2356409.462,21
+9115,973443.8797,1434356.534,2359671.219,21
+9116,971430.6566,1430485.293,2359769.646,21
+9117,970107.132,1432553.778,2360059.575,21
+9118,969450.559,1432533.391,2365065.427,21
+9119,968083.4481,1431476.418,2362708.202,21
+9120,966673.8612,1432782.388,2368929.426,21
+9121,909169.9996,1369627.81,2252782.373,21
+9122,903370.7828,1363596.376,2237280.502,21
+9123,903940.6881,1362606.764,2237750.889,21
+9124,902565.2127,1359777.799,2235930.311,21
+9125,901227.9085,1358768.178,2232772.716,21
+9126,901491.3452,1358589.674,2941495.948,21
+9127,899993.4215,1355101.404,2276183.439,21
+9128,899884.7625,1354926.458,2235954.047,21
+9129,900648.8384,1353230.317,2233338.076,21
+9130,898301.1822,1352937.52,2233939.808,21
+9131,898526.3266,1350054.666,2230337.355,21
+9132,898681.9272,1349408.62,2228961.054,21
+9133,898492.6829,1348943.068,2228394.97,21
+9134,896851.6281,1346401.552,2225960.573,21
+9135,897578.331,1346721.749,2225532.435,21
+9136,896665.5362,1344366.053,2226998.272,21
+9137,897234.1187,1342604.795,2226350.194,21
+9138,896678.866,1344306.924,2285199.905,21
+9139,895856.9397,1339829.87,2215366.127,21
+9140,896307.7843,1340223.3,2213221.298,21
+9141,895184.1809,1339326.708,2215649.162,21
+9142,896426.7679,1336672.196,2214286.013,21
+9143,895051.0797,1338658.255,2215632.565,21
+9144,895516.6676,1333357.402,2216213.439,21
+9145,893987.1124,1337240.543,2215113.786,21
+9146,895664.4712,1331825.726,2216081.549,21
+9147,894625.8821,1332877.235,2921784.584,21
+9148,894811.6762,1331315.518,2260740.012,21
+9149,894495.178,1329874.192,2223392.823,21
+9150,894465.9564,1330953.473,2223234.434,21
+9151,894450.5313,1326654.917,2216047.345,21
+9152,892937.5371,1327490.957,2223357.175,21
+9153,894863.6101,1326857.247,2214413.386,21
+9154,892460.0643,1324688.167,2217523.049,21
+9155,893245.177,1325003.136,2213568.158,21
+9156,892177.8983,1322759.909,2213935.973,21
+9157,893150.0881,1322728.529,2211984.66,21
+9158,892051.0906,1320810.893,2213542.216,21
+9159,891981.0991,1321273.085,2207963.131,21
+9160,890987.3693,1319542.348,2208640.281,21
+9161,891212.6772,1317743.664,2210465.819,21
+9162,889684.2357,1317854.575,2205017.566,21
+9163,889810.69,1317380.437,2207521.72,21
+9164,888625.2987,1315317.085,2911303.102,21
+9165,890086.0878,1313969.452,2251347.409,21
+9166,887769.9592,1315311.323,2209761.039,21
+9167,888239.8752,1312878.602,2210496.399,21
+9168,888759.6586,1311013.118,2207061.581,21
+9169,887391.7567,1312217.202,2206231.647,21
+9170,887645.9219,1309134.584,2206052.231,21
+9171,886663.2145,1310921.027,2202519.911,21
+9172,886933.4165,1307444.701,2204213.812,21
+9173,886530.3248,1308242.975,2199105.27,21
+9174,885090.702,1306874.861,2204990.802,21
+9175,887228.8945,1305583.219,2198392.208,21
+9176,884272.0109,1304735.347,2198963.988,21
+9177,886027.7413,1304568.477,2198209.735,21
+9178,884467.179,1303358.109,2198133.992,21
+9179,884298.6824,1302539.083,2199244.775,21
+9180,884528.3718,1301205.388,2255696.128,21
+9181,884817.611,1302184.39,2187416.617,21
+9182,883913.2708,1299651.387,2184932.668,21
+9183,883848.2428,1300875.655,2186266.126,21
+9184,884678.8519,1298940.229,2186590.038,21
+9185,884754.6166,1300592.343,2184689.72,21
+9186,884640.4399,1300392.556,2187374.284,21
+9187,885123.7118,1299621.215,2183227.268,21
+9188,885783.1713,1298587.341,2184326.929,21
+9189,885374.8145,1300486.579,2891489.309,21
+9190,886048.8356,1298771.143,2229315.096,21
+9191,886691.0785,1298615.562,2188584.987,21
+9192,885961.1249,1299774.003,2189185.818,21
+9193,886900.3938,1298649.888,2185531.702,21
+9194,886924.9222,1297911.308,2185943.723,21
+9195,887208.0132,1298648.432,2183616.272,21
+9196,887616.2419,1299911.739,2183202.389,21
+9197,887788.1116,1296959.011,2183197.056,21
+9198,887401.8286,1300159.898,2181000.784,21
+9199,889140.3342,1297182.475,2178855.194,21
+9200,887753.9127,1298348.243,2179741.525,21
+9201,888925.4619,1298183.881,2178583.748,21
+9202,889437.9145,1298073.739,2175959.434,21
+9203,889160.4473,1297791.883,2178518.412,21
+9204,889224.8704,1298405.117,2175428.249,21
+9205,889958.9046,1296916.076,2235643.834,21
+9206,889993.9911,1298531.067,2164807.542,21
+9207,890111.2465,1296601.921,2166098.265,21
+9208,890463.4392,1298903.681,2376065.77,21
+9209,890869.072,1296492.528,2140065.25,21
+9210,891412.9589,1298122.656,2144534.615,21
+9211,890144.9806,1297314.738,2165474.948,21
+9212,890962.3661,1296400.442,2146461.046,21
+9213,886861.7448,1298793.602,2147867.256,21
+9214,886909.5433,1295918.374,2361268.937,21
+9215,885439.4601,1297482.426,2125161.251,21
+9216,885422.9019,1297808.932,2134847.409,21
+9217,884039.9837,1296742.755,2134727.856,21
+9218,883534.2526,1296251.242,2136310.77,21
+9219,882832.5826,1298230.555,2143123.968,21
+9220,881646.0541,1296477.697,2144568.15,21
+9221,880382.7884,1297031.753,2146129.13,21
+9222,876794.0295,1295991.313,2149754.588,21
+9223,877702.9465,1298096.053,2151693.186,21
+9224,876533.5779,1296043.959,2150724.73,21
+9225,875175.8513,1297637.317,2861068.637,21
+9226,874023.7695,1296234.966,2198420.574,21
+9227,875310.6435,1296991.101,2161807.689,21
+9228,871227.9976,1297607.614,2160905.285,21
+9229,872500.7972,1296790.222,2161075.521,21
+9230,870394.791,1296836.116,2160878.078,21
+9231,870471.5162,1296781.502,2160774.042,21
+9232,869485.815,1296535.798,2161092.272,21
+9233,865478.0564,1297304.781,2158462.012,21
+9234,863948.4766,1296021.392,2160423.277,21
+9235,863401.2539,1296851.562,2159469.656,21
+9236,862698.5627,1296765.81,2161234.362,21
+9237,859913.5059,1296808.236,2158789.436,21
+9238,860032.7066,1296386.205,2158504.787,21
+9239,858074.6203,1297070.812,2158975.426,21
+9240,856526.4848,1296566.623,2157282.229,21
+9241,857122.3696,1296850.558,2159266.111,21
+9242,854120.6303,1296101.806,2863307.652,21
+9243,854455.6712,1295206.648,2196639.223,21
+9244,851225.0881,1296020.275,2154633.459,21
+9245,850374.0818,1294788.978,2151029.207,21
+9246,848807.3821,1293884.712,2148144.372,21
+9247,847499.1375,1293572.314,2142655.348,21
+9248,846499.7882,1294267.266,2142714.765,21
+9249,844300.0687,1292477.566,2137165.665,21
+9250,843465.2153,1292244.456,2135891.334,21
+9251,840588.4842,1292959.252,2130709.005,21
+9252,840393.6319,1289808.658,2130328.277,21
+9253,837038.257,1292657.561,2126727.855,21
+9254,835558.8056,1290671.286,2124051.334,21
+9255,834463.1365,1289749.862,2122924.645,21
+9256,831545.6449,1289528.645,2119410.987,21
+9257,832151.2476,1289413.57,2115212.723,21
+9258,830006.8529,1288675.966,2828105.942,21
+9259,828549.7246,1288564.429,2154564.167,21
+9260,826773.3324,1288651.031,2115055.627,21
+9261,826218.4525,1287416.354,2112441.825,21
+9262,824109.5747,1288344.369,2107329.149,21
+9263,822340.6151,1287713.211,2105240.025,21
+9264,821444.6735,1285575.494,2104310.438,21
+9265,820499.2736,1287739.521,2100339.32,21
+9266,816700.9767,1285561.106,2096989.115,21
+9267,817934.005,1285947.825,2095583.828,21
+9268,814541.8265,1283886.481,2092100.082,21
+9269,813955.6587,1286861.68,2090520.515,21
+9270,812046.5954,1282670.022,2096838.391,21
+9271,812473.3407,1284225.621,2093541.847,21
+9272,810361.7948,1283549.568,2090968.826,21
+9273,813115.4608,1283276.82,2088738.434,21
+9274,811388.0463,1281838.238,2801138.053,21
+9275,812264.176,1281806.077,2130294.869,21
+9276,811557.1483,1282294.331,2084985.198,21
+9277,812474.3222,1281574.682,2084981.127,21
+9278,812388.4673,1278816.751,2079548.5,21
+9279,813239.697,1281035.27,2077740.062,21
+9280,812583.6425,1280624.195,2076158.639,21
+9281,813542.1125,1278272.99,2073510.246,21
+9282,815837.0952,1279643.655,2069951.036,21
+9283,815762.4722,1278679.201,2069941.017,21
+9284,814939.9516,1277559.479,2063728.552,21
+9285,816811.5909,1278002.112,2066132.073,21
+9286,816616.0887,1277280.16,2062022.525,21
+9287,817271.3097,1276077.678,2058353.438,21
+9288,817822.506,1277110.344,2058040.01,21
+9289,817951.9953,1274996.56,2055713.96,21
+9290,818998.452,1276358.991,2772262.846,21
+9291,818713.7739,1274711.393,2094155.221,21
+9292,820602.6638,1274190.897,2052242.038,21
+9293,819779.3241,1274854.45,2051068.685,21
+9294,822403.956,1273486.363,2048175.661,21
+9295,821380.1111,1273564.397,2044102.386,21
+9296,822322.9913,1273266.725,2042526.197,21
+9297,823150.8225,1271962.281,2040470.225,21
+9298,823636.8201,1272235.999,2038163.516,21
+9299,826890.0178,1272048.599,2036298.578,21
+9300,827502.8994,1270053.426,2031752.68,21
+9301,828387.697,1271099.343,2034156.778,21
+9302,828499.7978,1268644.233,2030803.683,21
+9303,828708.4057,1269067.681,2029332.006,21
+9304,829805.0065,1268770.451,2034133.753,21
+9305,830961.5184,1262806.79,2028655.562,21
+9306,830320.3656,1262562.647,2033422.445,21
+9307,832284.5318,1261917.192,2753427.697,21
+9308,832264.1379,1261108.855,2076693.617,21
+9309,833988.5029,1259769.758,2034647.389,21
+9310,832919.6489,1259901.688,2034290.868,21
+9311,835335.6812,1260081.401,2034909.755,21
+9312,835770.9946,1257673.35,2033479.279,21
+9313,835360.0512,1259032.622,2032716.926,21
+9314,838264.7318,1256775.572,2034672.697,21
+9315,838999.7644,1258336.434,2030493.554,21
+9316,840942.7341,1255789.856,2034500.637,21
+9317,843086.9721,1257553.305,2030719.739,21
+9318,841894.7468,1255117.792,2032303.616,21
+9319,844267.3392,1254960.564,2033341.959,21
+9320,844683.8092,1255839.507,2030896.301,21
+9321,845617.1899,1253830.444,2030938.234,21
+9322,847635.4096,1253709.474,2031508.936,21
+9323,847839.7604,1254340.679,2754177.819,21
+9324,848748.0227,1251982.44,2075726.849,21
+9325,849715.2536,1253090.15,2032020.425,21
+9326,850098.0434,1251916.146,2033523.654,21
+9327,852293.2128,1252180.844,2031591.156,21
+9328,854874.3787,1251045.277,2033409.726,21
+9329,855961.3135,1251352.28,2029980.424,21
+9330,857008.3498,1249246.655,2031654.95,21
+9331,859100.3806,1251084.259,2030229.512,21
+9332,859548.0596,1249129.562,2031094.87,21
+9333,860605.3476,1249883.272,2028999.144,21
+9334,861048.4092,1249739.996,2031642.475,21
+9335,861836.4096,1247592.923,2032209.768,21
+9336,863304.8798,1249615.748,2028121.299,21
+9337,862583.0757,1247774.855,2031103.132,21
+9338,864636.3772,1249036.7,2028260.851,21
+9339,865797.0619,1247628.754,2755732.191,21
+9340,866382.183,1247329.676,2073564.994,21
+9341,865817.6239,1247309.738,2032520.893,21
+9342,868611.9385,1248540.584,2033078.875,21
+9343,867501.4221,1245935.042,2033433.276,21
+9344,870201.1669,1247119.268,2030061.851,21
+9345,870176.8579,1245888.338,2033131.652,21
+9346,871430.0836,1246330.24,2030727.57,21
+9347,871175.5047,1245908.501,2033104.419,21
+9348,873109.6109,1245852.663,2029721.329,21
+9349,873682.697,1245729.653,2031877.551,21
+9350,873283.544,1245021.942,2031178.276,21
+9351,876229.7029,1246259.844,2033938.597,21
+9352,875345.0228,1244724.32,2030182.668,21
+9353,877076.7531,1244965.557,2029530.177,21
+9354,877547.1542,1243541.453,2032890.913,21
+9355,879202.35,1245864.337,2753325.608,21
+9356,879181.1745,1242376.532,2077336.912,21
+9357,879153.8869,1244701.133,2032391.01,21
+9358,882509.5922,1244013.328,2033935.116,21
+9359,881329.2246,1242914.561,2034530.772,21
+9360,882313.5991,1243840.687,2032128.613,21
+9361,947410.999,1311217.734,2159154.46,21
+9362,949980.7537,1314545.619,2165770.865,21
+9363,952093.0647,1315608.295,2160404.491,21
+9364,952065.6206,1316393.783,2161726.793,21
+9365,953736.6458,1316426.132,2158368.059,21
+9366,954414.7576,1317215.9,2157149.036,21
+9367,955316.2194,1315911.007,2157962.015,21
+9368,955535.8428,1318977.539,2216129.244,21
+9369,957599.3065,1317065.148,2146130.528,21
+9370,956262.2735,1317244.628,2142281.906,21
+9371,958796.7388,1319326.495,2142965.291,21
+9372,958415.2156,1317108.138,2141379.06,21
+9373,959587.0297,1318790.72,2140008.726,21
+9374,960033.8676,1319018.071,2140207.401,21
+9375,959909.1828,1318720.261,2136527.381,21
+9376,962254.4822,1318914.262,2138322.712,21
+9377,961537.1656,1318522.27,2135385.501,21
+9378,963020.9613,1320488.558,2134589.795,21
+9379,961990.8116,1318090.111,2133171.819,21
+9380,963894.9918,1318812.583,2132140.556,21
+9381,964471.2643,1319635.335,2130313.118,21
+9382,964710.6312,1319021.755,2130072.162,21
+9383,967095.2268,1319386.156,2126718.394,21
+9384,967976.8526,1319730.44,2125843.81,21
+9385,969177.5671,1319725.964,2125234.767,21
+9386,968662.1406,1318957.464,2121753.117,21
+9387,968824.0197,1320140.64,2123511.635,21
+9388,970923.3231,1319364.886,2117761.736,21
+9389,971193.6999,1318907.772,2118763.984,21
+9390,970448.4496,1319369.698,2116238.373,21
+9391,971909.6713,1320250.936,2117093.909,21
+9392,971946.3803,1319119.8,2110169.916,21
+9393,973082.4649,1319412.889,2845738.854,21
+9394,973005.5666,1320589.023,2151845.39,21
+9395,972963.2796,1319005.461,2110943.659,21
+9396,973755.8519,1320531.921,2109718.02,21
+9397,973886.9672,1319536.685,2105280.322,21
+9398,975458.1129,1320747.052,2103844.004,21
+9399,974930.995,1319207.179,2103698.952,21
+9400,975107.402,1322216.511,2099313.733,21
+9401,975894.9088,1318495.307,2098938.169,21
+9402,976908.4218,1320675.321,2095989.624,21
+9403,975771.3884,1320669.108,2092893.997,21
+9404,977212.3991,1320254.317,2093514.218,21
+9405,977615.8793,1320618.963,2092391.754,21
+9406,978139.2776,1320182.529,2152495.786,21
+9407,976749.965,1320813.553,2080525.006,21
+9408,979692.3991,1321734.993,2075740.186,21
+9409,977531.539,1318687.662,2076019.762,21
+9410,980404.1623,1322441.647,2301144.584,21
+9411,978343.7356,1320160.733,2044529.794,21
+9412,980503.3142,1321488.179,2055957.184,21
+9413,979759.8791,1320491.561,2048252.264,21
+9414,980416.9699,1321918.154,2051181.81,21
+9415,980722.1262,1320083.496,2321407.729,21
+9416,981935.3186,1321662.9,2020470.922,21
+9417,980305.8882,1320456.588,2029718.418,21
+9418,982873.2873,1321271.07,2025752.696,21
+9419,981170.2258,1320384.675,2028959.318,21
+9420,983154.0967,1321403.643,2029998.903,21
+9421,981964.4841,1321393.65,2028312.948,21
+9422,980984.2534,1320971.511,2031540.177,21
+9423,981546.4008,1321314.954,2038880.187,21
+9424,979418.4297,1322903.34,2042106.859,21
+9425,980108.5185,1319914.153,2046360.86,21
+9426,979599.0637,1322760.553,2048775.564,21
+9427,978469.7381,1321946.193,2051716.349,21
+9428,978693.6358,1322065.914,2058084.419,21
+9429,977249.7462,1322366.612,2795937.002,21
+9430,978033.6689,1320692.937,2106106.998,21
+9431,976117.6473,1323813.878,2066329.89,21
+9432,976844.3755,1321381.909,2066775.646,21
+9433,974634.0791,1321970.02,2071504.217,21
+9434,975721.9445,1323316.068,2071014.582,21
+9435,974157.8608,1323253.91,2071818.08,21
+9436,974732.1238,1321673.54,2077387.375,21
+9437,972012.9545,1323511.313,2075913.87,21
+9438,973113.5875,1321958.077,2076381.769,21
+9439,972495.7977,1323732.303,2080894.204,21
+9440,970811.3131,1323403.37,2080150.458,21
+9441,971635.9602,1322058.573,2084267.897,21
+9442,970083.7986,1323840.052,2082558.053,21
+9443,969504.7983,1323485.698,2084931.989,21
+9444,969351.1095,1323912.442,2083729.005,21
+9445,968529.0991,1322319.549,2826962.626,21
+9446,968405.8138,1324203.887,2132065.473,21
+9447,967346.0532,1323719.454,2087703.437,21
+9448,966904.9348,1323775.553,2094982.846,21
+9449,966896.336,1324291.227,2089937.223,21
+9450,965499.489,1323733.086,2093284.34,21
+9451,964988.1598,1323824.215,2093727.275,21
+9452,965656.4274,1324704.771,2096332.046,21
+9453,963142.307,1323630.731,2096669.286,21
+9454,962943.4728,1324144.19,2097995.229,21
+9455,962492.0262,1324365.017,2100718.566,21
+9456,963140.2505,1323988.987,2100066.185,21
+9457,960452.4058,1324193.021,2106097.316,21
+9458,960077.4168,1324492.793,2102048.193,21
+9459,960883.7287,1324861.361,2104065.995,21
+9460,958374.2493,1324134.246,2108148.23,21
+9461,959760.7969,1324679.366,2844911.217,21
+9462,956978.9501,1325282.802,2153375.192,21
+9463,958275.1309,1323212.932,2111790.452,21
+9464,955659.335,1325983.2,2114582.457,21
+9465,956625.9001,1323840.714,2114230.203,21
+9466,954711.5977,1325973.469,2115681.878,21
+9467,955497.238,1324641.238,2117485.797,21
+9468,952510.7625,1323955.772,2120630.02,21
+9469,954137.5437,1325835.264,2116114.907,21
+9470,952898.4565,1324875.654,2125337.905,21
+9471,950582.0691,1324213.412,2120968.94,21
+9472,951552.9595,1325780.875,2123934.596,21
+9473,950996.9687,1324536.752,2127392.57,21
+9474,949902.154,1325879.039,2125760.676,21
+9475,947812.6393,1324691.717,2129049.19,21
+9476,950413.9858,1325903.779,2129134.742,21
+9477,945836.0408,1324368.636,2864233.689,21
+9478,948085.3627,1326254.047,2175956.165,21
+9479,945560.541,1324718.909,2135792.612,21
+9480,946417.5566,1325350.159,2136555.849,21
+9481,947330.8894,1325567.402,2136052.092,21
+9482,949009.6344,1325354.255,2133127.936,21
+9483,950839.4915,1324711.783,2134738.073,21
+9484,951826.1714,1325589.212,2129133.504,21
+9485,953373.1758,1325102.529,2131384.449,21
+9486,954360.725,1323659.425,2127501.779,21
+9487,957005.4052,1325933.256,2124758.46,21
+9488,957794.1897,1322574.06,2127154.935,21
+9489,958432.9014,1324716.709,2123245.639,21
+9490,960756.2016,1323626.27,2125260.484,21
+9491,963312.4535,1324225.61,2118981.942,21
+9492,962214.174,1322253.792,2122301.126,21
+9493,966588.529,1323526.262,2850854.143,21
+9494,965624.1839,1323716.707,2163427.426,21
+9495,969496.4669,1323308.104,2118813.53,21
+9496,968479.6964,1323403.096,2117995.318,21
+9497,970962.0616,1322662.632,2118814.762,21
+9498,973121.359,1322868.783,2114992.037,21
+9499,973915.7002,1322372.436,2116131.265,21
+9500,975067.8741,1322500.177,2112926.096,21
+9501,976620.3953,1322122.675,2112773.877,21
+9502,979762.5477,1319611.969,2112969.139,21
+9503,978944.5382,1323378.55,2109719.349,21
+9504,982204.8035,1318619.173,2110442.276,21
+9505,982321.4244,1321336.048,2111219.69,21
+9506,985462.824,1318171.481,2107671.499,21
+9507,985380.0934,1321144.824,2106644.33,21
+9508,988132.7799,1316958.883,2106876.611,21
+9509,988051.9394,1321250.828,2839494.059,21
+9510,991087.7959,1317690.371,2148032.558,21
+9511,992371.0875,1318754.139,2105220.552,21
+9512,992779.4398,1317128.301,2107688.8,21
+9513,995756.0879,1318354.606,2103689.476,21
+9514,996192.5249,1316885.866,2102779.877,21
+9515,999319.8123,1316494.538,2103968.492,21
+9516,998482.769,1318726.316,2100630.512,21
+9517,1002655.252,1314208.076,2102830.672,21
+9518,1003385.71,1317311.949,2098139.304,21
+9519,1005126.57,1315827.172,2101849.189,21
+9520,1005109.607,1314992.481,2098794.707,21
+9521,1009407.474,1315190.671,2098063.848,21
+9522,1008723.341,1314128.435,2098961.381,21
+9523,1011669.82,1315719.167,2095352.809,21
+9524,1012836.513,1312318.406,2098097.894,21
+9525,1014752.967,1315276.871,2829735.868,21
+9526,1015386.825,1312466.527,2138612.478,21
+9527,1017813.387,1313728.888,2095288.356,21
+9528,1019505.802,1313061.794,2096751.492,21
+9529,1021127.684,1311422.312,2092850.392,21
+9530,1022250.051,1313253.868,2095002.855,21
+9531,1024772.272,1310594.679,2092699.79,21
+9532,1025760.709,1311538.648,2092984.012,21
+9533,1026940.475,1311003.651,2088949.492,21
+9534,1029313.003,1309819.428,2092635.139,21
+9535,1030588.501,1310955.957,2089746.019,21
+9536,1032697.887,1308348.623,2088012.085,21
+9537,1034474.409,1310251.485,2090984.168,21
+9538,1035226.456,1308510.041,2087967.481,21
+9539,1037767.11,1307016.611,2087771.512,21
+9540,1041101.922,1307588.072,2090267.944,21
+9541,1039969.033,1307495.384,2826623.79,21
+9542,1039543.641,1309567.126,2133102.221,21
+9543,1040683.462,1309721.776,2092243.662,21
+9544,1040943.434,1309334.935,2097010.839,21
+9545,1039788.951,1312082.199,2095611.642,21
+9546,1041684.109,1309861.79,2097504.138,21
+9547,1042196.211,1311887.742,2100030.739,21
+9548,1040883.021,1312298.767,2101581.674,21
+9549,1042852.042,1312633.639,2102118.138,21
+9550,1042672.561,1311709.29,2104040.623,21
+9551,1041707.593,1315296.026,2105324.87,21
+9552,1044024.385,1312157.945,2108254.298,21
+9553,1042728.637,1315039.351,2108359.602,21
+9554,1043300.65,1314959.117,2110969.505,21
+9555,1043935.544,1315540.089,2110638.788,21
+9556,1044172.948,1315193.201,2113290.711,21
+9557,1044806.549,1315452.384,2847754.877,21
+9558,1044795.909,1318119.721,2160998.161,21
+9559,1043865.92,1315047.916,2119382.152,21
+9560,1045513.066,1318284.37,2119685.206,21
+9561,1045460.702,1317493.227,2119864.959,21
+9562,1045711.014,1318601.425,2124147.474,21
+9563,1046229.35,1319088.059,2122868.839,21
+9564,1046080.559,1318994.734,2125447.938,21
+9565,1046871.522,1319833.057,2127089.242,21
+9566,1047411.772,1320157.09,2127460.915,21
+9567,1047212.649,1318940.498,2128239.734,21
+9568,1047067.494,1322029.492,2130267.839,21
+9569,1047603.345,1321280.687,2134426.149,21
+9570,1048926.085,1322266.349,2131907.9,21
+9571,1047957.564,1323133.438,2134364.872,21
+9572,1048757.609,1323854.117,2134710.137,21
+9573,1049742.801,1323456.248,2872933.744,21
+9574,1049146.576,1324338.44,2182524.358,21
+9575,1050449.117,1325114.194,2142056.068,21
+9576,1050467.39,1325126.532,2143553.665,21
+9577,1050182.946,1325321.963,2147805.235,21
+9578,1051848.055,1325155.276,2145603.244,21
+9579,1051197.685,1325500.579,2147705.391,21
+9580,1051204.296,1325530.759,2149639.647,21
+9581,1053117.568,1326527.776,2150396.811,21
+9582,1052556.721,1327110.388,2153783.86,21
+9583,1052124.016,1326342.941,2153555.015,21
+9584,1054598.934,1327959.54,2155441.289,21
+9585,1052791.563,1327581.576,2157592.258,21
+9586,1055449.681,1328673.746,2158887.926,21
+9587,1054134.573,1328337.642,2159183.818,21
+9588,1054776.654,1330568.408,2161782.199,21
+9589,1056492.674,1327651.456,2894881.795,21
+9590,1055373.028,1331620.27,2205733.847,21
+9591,1056619.686,1330216.006,2170839.07,21
+9592,1056332.968,1330349.965,2169511.353,21
+9593,1057646.849,1331269.608,2171027.344,21
+9594,1056672.26,1331294.038,2172167.389,21
+9595,1059028.942,1331853.065,2175102.914,21
+9596,1059113.531,1333475.363,2175187.674,21
+9597,1057551.83,1331128.259,2176688.385,21
+9598,1060643.843,1334411.754,2179431.63,21
+9599,1059871.157,1333163.834,2177758.391,21
+9600,1059654.76,1333605.8,2182464.353,21
+9601,1061494.799,1335249.731,2185852.997,21
+9602,1062843.314,1335654.519,2187682.802,21
+9603,1063055.596,1337061.383,2189697.356,21
+9604,1065361.381,1338550.1,2193862.026,21
+9605,1066204.965,1338594.855,2924268.418,21
+9606,1066552.737,1340441.698,2244114.716,21
+9607,1068734.01,1340864.035,2205835.768,21
+9608,1069509.431,1342124.614,2208384.721,21
+9609,1069707.583,1344414.636,2212737.79,21
+9610,1072251.07,1343392.635,2212562.372,21
+9611,1073038.097,1346307.157,2217960.188,21
+9612,1073145.539,1346747.606,2219621.599,21
+9613,1075782.768,1347024.065,2221562.364,21
+9614,1076374.717,1348743.57,2225334.55,21
+9615,1077221.573,1350418.401,2228679.693,21
+9616,1078679.109,1349494.212,2229036.035,21
+9617,1079767.155,1353370.175,2235224.083,21
+9618,1081352.522,1352299.346,2236182.523,21
+9619,1082366.573,1354506.2,2237691.129,21
+9620,1083150.808,1356482.439,2244784.825,21
+9621,1085234.356,1355142.935,2305412.758,21
+9622,1085592.019,1358052.268,2240149.249,21
+9623,1087193.971,1359186.872,2242699.287,21
+9624,1088204.491,1359756.515,2471514.745,21
+9625,1090221.891,1360782.045,2219407.728,21
+9626,1090846.996,1362633.746,2233902.968,21
+9627,1091884.44,1362284.256,2518247.114,21
+9628,1094019.234,1366021.019,2233636.838,21
+9629,1094696.111,1365222.009,2211256.394,21
+9630,1095396.296,1366328.213,2221058.796,21
+9631,1098146.529,1367446.483,2232175.004,21
+9632,1097479.526,1369999.688,2453016.126,21
+9633,1098725.199,1370138.293,2219250.887,21
+9634,1100934.392,1370536.82,2229322.992,21
+9635,1100379.916,1373465.911,2239086.657,21
+9636,1102047.202,1372509.842,2247017.044,21
+9637,1103609.163,1374557.163,2250134.857,21
+9638,1103215.358,1376486.507,2264925.399,21
+9639,1104728.756,1376800.703,2266084.652,21
+9640,1106434.996,1377108.3,2275509.378,21
+9641,1106376.507,1380430.654,2280100.533,21
+9642,1108562.704,1379223.157,2284476.876,21
+9643,1108073.078,1381209.098,2998393.453,21
+9644,1110357.837,1382976.878,2337853.851,21
+9645,1109771.733,1383753.279,2306837.06,21
+9646,1112248.759,1383592.09,2307736.397,21
+9647,1111339.326,1387226.505,2314530.974,21
+9648,1114711.435,1385771.118,2314223.787,21
+9649,1113417.983,1388432.193,2320442.583,21
+9650,1115965.723,1389390.864,2321520.335,21
+9651,1117301.299,1390344.892,2327653.519,21
+9652,1120375.192,1390690.874,2326705.022,21
+9653,1120679.894,1394186.91,2332556.277,21
+9654,1120392.053,1392146.74,2333800.163,21
+9655,1123159.626,1395852.849,2337358.586,21
+9656,1123912.674,1395733.276,2341388.769,21
+9657,1124889.305,1397022.646,2341769.996,21
+9658,1123988.648,1398269.599,2349125.665,21
+9659,1128681.415,1399686.626,2401463.595,21
+9660,1128328.446,1400268.867,2353409.968,21
+9661,460880.8427,665471.357,1222942.239,21
+9662,460463.3272,662268.9609,1438503.843,21
+9663,460157.9304,662853.9811,1189693.135,21
+9664,460187.0426,663873.3661,1188366.992,21
+9665,460337.5513,665386.0541,1181645.522,21
+9666,460816.0955,667314.8276,1179161.908,21
+9667,461459.9279,669543.2191,1407169.708,21
+9668,462192.1541,671940.7684,1156944.361,21
+9669,462954.0057,674402.2834,1160668.635,21
+9670,463705.4539,676853.4202,1157722.851,21
+9671,464494.8997,679245.0814,1158345.083,21
+9672,465086.9179,681546.9677,1158953.685,21
+9673,465693.5035,683741.4861,1159522.893,21
+9674,466236.9182,685819.143,1160037.64,21
+9675,466715.6535,687775.2668,1160529.5,21
+9676,467131.5114,689609.6164,1160895.103,21
+9677,467486.0278,691325.9691,1161210.395,21
+9678,467782.9247,692930.9039,1161476.055,21
+9679,468026.1791,694432.4729,1161692.305,21
+9680,468219.9634,695839.2194,1816938.21,21
+9681,468368.4926,697159.7334,1201093.43,21
+9682,468475.836,698402.2727,1170604.654,21
+9683,468615.0001,699574.5991,1169970.045,21
+9684,468582.0911,700683.917,1169373.164,21
+9685,468590.3744,701736.8571,1168814.458,21
+9686,468566.3481,702739.4479,1168294.095,21
+9687,468520.1616,703697.1583,1167812.011,21
+9688,468451.8485,704614.8697,1167367.846,21
+9689,468363.6272,705496.8992,1166960.958,21
+9690,468334.2546,706347.0571,1167731.464,21
+9691,468135.1538,707168.7242,1166156.645,21
+9692,467998.257,707964.9081,1165864.048,21
+9693,467991.9765,708738.284,1165603.508,21
+9694,468134.6851,710179.4373,1816295.186,21
+9695,467913.1333,711136.0114,1204264.263,21
+9696,467748.4235,711780.3055,1174551.162,21
+9697,467633.07,712664.4637,1173467.001,21
+9698,467463.0803,713486.6428,1172763.804,21
+9699,467315.0792,714263.3933,1172118.376,21
+9700,467144.6799,715044.9147,1171597.157,21
+9701,466967.5107,715784.3247,1171066.239,21
+9702,467266.8508,716556.4355,1170634.017,21
+9703,467375.0822,717258.7456,1170237.235,21
+9704,467254.4688,718028.7152,1171256.573,21
+9705,467130.1243,718714.311,1169541.945,21
+9706,467082.7616,719425.9858,1169327.284,21
+9707,466986.0131,720114.0504,1169801.742,21
+9708,466862.461,720952.5467,1818612.57,21
+9709,466771.3292,721820.969,1208773.185,21
+9710,466646.4421,722401.5948,1178975.716,21
+9711,466590.7699,723179.6349,1178232.849,21
+9712,466391.8177,723868.2318,1177632.6,21
+9713,466256.1892,724540.3846,1177063.945,21
+9714,466118.5592,725249.4842,1176628.639,21
+9715,466043.1744,725947.1538,1176208.809,21
+9716,465805.278,726581.9088,1176740.44,21
+9717,465679.8244,727318.3269,1176162.144,21
+9718,465494.6797,727921.8858,1177627.836,21
+9719,466060.9345,728776.4612,1175960.785,21
+9720,465517.4672,729783.6895,1175924.233,21
+9721,0,0,0,21
+9722,0,0,641371.6222,21
+9723,84710.37011,0,0,21
+9724,24838.0412,0,304973.946,21
+9725,23196.26863,0,374655.3115,21
+9726,525857.1361,0,238011.0437,21
+9727,55266.42206,55877.23726,286155.3849,21
+9728,152431.6734,0,269730.365,21
+9729,226897.8884,3902.330418,1780692.767,21
+9730,180634.7108,21248.45871,1138147.21,21
+9731,188064.911,12906.75424,1203217.76,21
+9732,188287.733,13763.41207,1333297.731,21
+9733,188779.2328,14033.95215,1276676.491,21
+9734,188630.6162,14090.02625,1297362.337,21
+9735,188635.2678,14003.55507,1309727.358,21
+9736,188919.5921,14126.46419,1965481.74,21
+9737,188973.946,14071.6217,1370475.065,21
+9738,188541.7534,14252.67535,1348822.767,21
+9739,188904.6398,14497.49486,1357554.449,21
+9740,188428.4602,14252.67418,1364610.841,21
+9741,188921.6908,14259.47428,1371757.676,21
+9742,188014.8526,14289.2126,1378268.488,21
+9743,188210.8054,14301.2786,1385048.112,21
+9744,188080.391,14272.06466,1390563.848,21
+9745,187795.5212,14307.31734,1397015.982,21
+9746,187168.0969,14203.69494,1403466.763,21
+9747,187389.3085,14203.69457,1447398.37,21
+9748,187163.6931,14227.67604,1408747.587,21
+9749,186314.0367,14396.26067,1414350.592,21
+9750,186482.7846,14227.67536,1419188.179,21
+9751,185859.3006,14234.23716,1424218.48,21
+9752,185530.7901,14203.69288,1429104.98,21
+9753,154767.8407,14166.734,1433678.114,21
+9754,154721.4195,14221.47488,1266771.438,21
+9755,237095.9347,14216.45328,1929384.365,21
+9756,21128.89916,14166.73309,1604491.405,21
+9757,22185.03185,0,1453023.575,21
+9758,34669.96143,0,1447936.746,21
+9759,29536.93251,0,295102.7279,21
+9760,628675.0292,0,309674.7601,21
+9761,45758.92311,33.64669787,302058.317,21
+9762,98058.2441,0,297293.8447,21
+9763,251405.8413,61728.02348,2414457.689,21
+9764,167796.4518,0,1199891.952,21
+9765,179554.8593,2510.447254,1297781.591,21
+9766,179121.0722,21163.12491,1597315.603,21
+9767,178441.18,13872.02834,1408436.736,21
+9768,177741.4639,13698.18176,1438559.319,21
+9769,177086.5009,14142.67901,1447191.261,21
+9770,176463.1999,14142.6788,1455360.847,21
+9771,175808.3317,14160.46124,1461743.477,21
+9772,174870.402,14044.34626,1468981.29,21
+9773,174121.9641,14081.49176,1475511.332,21
+9774,173841.7166,14056.6345,1481109.312,21
+9775,172779.372,14027.2311,1486611.287,21
+9776,171891.833,14048.81764,1492449.246,21
+9777,171683.771,14019.97268,1496686.359,21
+9778,170448.745,14024.48274,1502323.375,21
+9779,170131.4002,13958.50245,1506325.829,21
+9780,168774.0405,13908.38515,1510969.919,21
+9781,172623.5478,14240.12613,1511660.261,21
+9782,173368.9988,14226.23398,1512400.518,21
+9783,174380.7403,14463.33411,1511964.472,21
+9784,175353.3229,14360.69439,1512483.069,21
+9785,148026.2035,14379.58125,1511898.432,21
+9786,148672.7031,14463.61205,1331163.862,21
+9787,229955.1897,14452.11269,1331008.727,21
+9788,168146.0451,14572.71423,1627742.423,21
+9789,174270.5853,14561.2458,1514828.276,21
+9790,33281.43185,14613.9219,1488496.425,21
+9791,28957.41588,14681.8697,1519830.775,21
+9792,29316.18563,14680.30222,1507402.115,21
+9793,29380.86369,0,309704.6598,21
+9794,642697.4641,0,305541.2936,21
+9795,48834.30779,0,300504.6852,21
+9796,101044.0755,0,296219.2223,21
+9797,261005.5753,0,2483052.609,21
+9798,177021.9457,62898.88846,1227387.339,21
+9799,190079.624,0,1311835.315,21
+9800,191744.5181,3690.922969,1550133.898,21
+9801,192162.6646,22899.04627,1427199.846,21
+9802,193207.3206,14310.9893,1445691.615,21
+9803,193852.4788,14880.36696,1450738.945,21
+9804,194481.3917,15244.90293,1454147.854,21
+9805,195747.4057,15336.35134,1456982.695,21
+9806,195981.8561,15353.65022,1460082.82,21
+9807,197354.8573,15388.95072,1461974.294,21
+9808,197606.4975,15394.7229,1463773.379,21
+9809,198637.0988,15454.38363,1465019.754,21
+9810,199651.5167,15474.62319,1466793.974,21
+9811,199887.5087,15524.1518,1466833.589,21
+9812,201274.6496,15596.0423,1467942.802,21
+9813,201636.6865,15584.78332,1468442.808,21
+9814,202800.831,15645.47682,1468060.68,21
+9815,203224.0672,15613.47886,1468831.814,21
+9816,204020.5035,15696.29654,1468055.823,21
+9817,173691.2976,15729.08483,1467779.597,21
+9818,174247.3896,15784.95799,1291393.081,21
+9819,260092.5274,15822.85139,1291599.408,21
+9820,201993.5744,15798.28479,1584221.047,21
+9821,197808.1894,15816.43443,1455470.824,21
+9822,214199.4545,15907.01039,1451582.331,21
+9823,208972.5429,15891.80615,1471635.89,21
+9824,31767.19845,16025.81122,1460743.443,21
+9825,31859.90637,15972.36943,1461236.78,21
+9826,31928.31186,15955.84337,1458777.476,21
+9827,31954.92516,16048.9157,304106.1076,21
+9828,731627.689,3.479818985,299301.8722,21
+9829,102940.9808,0,294766.1244,21
+9830,104990.8902,70.76589526,290425.1358,21
+9831,294861.4749,0,2320972.056,21
+9832,205430.6582,63806.79032,1200038.185,21
+9833,216802.6647,0,1238820.712,21
+9834,218431.826,5800.4136,1519366.919,21
+9835,218616.2182,24489.12611,1372238.586,21
+9836,219575.9052,15043.63632,1395931.914,21
+9837,219849.584,16176.85115,1401127.013,21
+9838,220686.3296,16398.48992,1403666.636,21
+9839,221452.7464,16386.87122,1406182.527,21
+9840,221831.8735,16461.55124,1408462.12,21
+9841,223223.9035,16420.68307,1413409.673,21
+9842,224207.6875,16571.56606,1419289.161,21
+9843,226122.7898,16619.68131,1424100.685,21
+9844,226797.4321,16724.27724,1428204.258,21
+9845,228388.4943,16764.20602,1433445.876,21
+9846,229468.3415,16876.27482,1436999.785,21
+9847,231083.0154,16912.42372,1441716.572,21
+9848,232229.3499,17033.41659,1445862.84,21
+9849,199273.3172,17103.21367,1448561.305,21
+9850,200655.8849,17176.10725,1279004.251,21
+9851,288989.5255,17234.97813,1281736.209,21
+9852,239741.6328,17327.46158,1576881.117,21
+9853,225324.4794,17431.03243,1446855.59,21
+9854,245660.712,17470.11465,1457995.19,21
+9855,241449.638,17565.80059,1475135.682,21
+9856,242411.5157,17653.20516,1471859.749,21
+9857,243803.336,17692.03407,1474161.79,21
+9858,35391.4135,17817.77122,1477999.091,21
+9859,35349.57117,17874.01636,1479763.95,21
+9860,35595.46404,17951.08228,1483642.869,21
+9861,750716.3716,18014.27179,304903.6206,21
+9862,156170.8259,0,300749.8643,21
+9863,154687.7117,0,296581.4963,21
+9864,318409.931,0,292596.098,21
+9865,247052.9334,0,2416550.215,21
+9866,255964.5134,75681.86558,1223695.416,21
+9867,257143.0994,0,1299556.817,21
+9868,258356.3589,5919.724379,1575469.842,21
+9869,259434.4236,29111.76577,1428726.89,21
+9870,261138.7564,16762.7671,1459461.341,21
+9871,261805.372,18866.79037,1468048.233,21
+9872,263096.5167,18980.51754,1474870.36,21
+9873,264753.6699,18991.53808,1482256.859,21
+9874,265565.5465,19138.68363,1487532.366,21
+9875,266876.7411,19130.51277,1494094.024,21
+9876,268597.5344,19266.14535,1499339.916,21
+9877,269078.2286,19369.58571,1504106.983,21
+9878,270606.3069,19389.952,1509416.125,21
+9879,272390.5276,19433.35051,1513921.671,21
+9880,272728.9462,19549.38535,1517707.737,21
+9881,236178.9439,19564.41369,1522239.993,21
+9882,237317.4569,19682.51003,1342274.608,21
+9883,328401.692,19764.21888,1347438.068,21
+9884,287777.0661,19827.74159,1648628.856,21
+9885,268047.5832,19868.74791,1537560.953,21
+9886,283842.7539,19924.68396,1520022.616,21
+9887,283057.6085,20030.76128,1553872.316,21
+9888,283242.4469,20077.30938,1544610.299,21
+9889,284681.0663,20182.28173,1547755.394,21
+9890,285755.458,20234.91972,1550740.59,21
+9891,39734.92756,20289.01804,1553592.445,21
+9892,39914.24522,20358.61804,1556087.3,21
+9893,40045.62259,20417.07311,1559106.012,21
+9894,827460.6666,20488.52455,1561504.152,21
+9895,304052.1257,20617.96094,310580.0283,21
+9896,122303.7289,0,306059.5657,21
+9897,380129.7586,0,302098.8079,21
+9898,290901.5422,0,2498222.582,21
+9899,297099.6418,76608.43402,1279553.272,21
+9900,298706.5114,0,1446275.468,21
+9901,299200.9352,13611.00483,1610985.126,21
+9902,297794.4507,28319.1096,1517025.577,21
+9903,298185.3458,19533.47674,1535939.366,21
+9904,296743.1191,20877.71461,1540690.934,21
+9905,297103.0902,20879.62725,1545625.381,21
+9906,295964.4884,20876.67065,1549307.101,21
+9907,296213.3664,20880.66289,1552657.729,21
+9908,295021.0295,20842.57186,1556365.209,21
+9909,294816.1964,20856.04374,1558422.241,21
+9910,294375.2816,20834.19601,1561955.336,21
+9911,294026.0085,20810.64689,1563940.912,21
+9912,293252.8802,20867.20438,1565932.021,21
+9913,252912.4464,20768.25726,1567727.967,21
+9914,251911.2825,390285.8973,1381849.751,21
+9915,342260.8546,37827.70521,1383158.064,21
+9916,302728.9376,49196.50249,1689392.863,21
+9917,283524.2545,146290.894,1584274.541,21
+9918,290438.6666,121424.4195,1550833.475,21
+9919,292327.9129,111467.7434,1588427.356,21
+9920,289240.8775,115666.451,1575807.422,21
+9921,289433.7632,116415.0379,1576699.329,21
+9922,288403.0222,115265.5419,1577468.52,21
+9923,287991.684,115778.5937,1578376.279,21
+9924,39592.11557,115531.3773,1579613.123,21
+9925,39547.66142,115564.7943,1579399.22,21
+9926,39473.02468,115308.052,1580831.475,21
+9927,825481.5886,115580.0053,1580770.681,21
+9928,299323.1294,115105.7058,311871.6753,21
+9929,109968.7942,95139.62641,307347.5418,21
+9930,370584.9122,94202.48491,302959.5138,21
+9931,279707.2709,95092.14692,2532384.939,21
+9932,283292.6752,171527.2799,1293947.484,21
+9933,283310.6543,94429.87022,1453436.747,21
+9934,283012.4802,107521.4388,2476876.991,21
+9935,282503.9708,122825.4758,1505430.326,21
+9936,281895.9048,113851.5821,1525234.402,21
+9937,280958.7497,115364.1517,1532720.655,21
+9938,280641.437,115299.713,1539269.281,21
+9939,280217.4159,115239.0871,1545200.37,21
+9940,279181.7671,114983.4791,1550582.577,21
+9941,279149.2078,115412.1884,1554500.983,21
+9942,278173.4923,115582.4716,1559262.947,21
+9943,277600.0158,114807.2051,1562340.95,21
+9944,276922.3078,20495.93866,1566146.551,21
+9945,238418.3923,20426.0211,1568341.491,21
+9946,237911.0422,20436.43951,1383603.826,21
+9947,327233.608,20404.19731,1385311.608,21
+9948,284977.6009,20383.25793,1692856.461,21
+9949,262350.6962,20408.99343,1591027.761,21
+9950,276723.7329,20350.93286,1552684.217,21
+9951,274178.2275,20333.93689,1594126.519,21
+9952,272287.0432,20355.81041,1580765.795,21
+9953,272279.0937,20333.93389,1582363.174,21
+9954,270775.7105,20274.94648,1582621.861,21
+9955,270874.8865,20301.60886,1584325.064,21
+9956,270172.4376,20274.06011,1585484.757,21
+9957,37386.90267,20285.38905,1585510.542,21
+9958,37404.98312,20198.73218,1586637.501,21
+9959,37223.22836,20253.06405,1588038.708,21
+9960,796245.8272,20171.07558,1587859.314,15.6
+9961,241513.6573,20253.06136,312802.5661,15.6
+9962,114445.7895,0,308227.2669,15.6
+9963,358034.2752,0,303841.2704,15.6
+9964,263744.1463,0,2553734.203,15.6
+9965,273904.7551,75997.5879,1304937.161,15.6
+9966,275223.4587,0,1456685.993,15.6
+9967,276773.2923,12356.45148,1619431.299,15.6
+9968,277224.898,433858.7303,1532360.313,15.6
+9969,279035.9046,30831.94048,1549713.848,15.6
+9970,279753.6609,46799.24607,1554021.397,15.6
+9971,280589.4012,149327.3345,1559511.274,15.6
+9972,282435.1598,127668.0626,1563102.864,15.6
+9973,283051.1236,114618.4302,1566739.045,15.6
+9974,284483.6322,120156.2493,1570257.847,15.6
+9975,285266.7869,119721.9933,1572781.808,15.6
+9976,286689.9292,120800.0746,1575995.668,15.6
+9977,248597.6795,120472.9676,1577780.398,15.6
+9978,249255.3741,120629.3028,1390832.046,15.6
+9979,340755.8455,120817.4788,1393749.302,15.6
+9980,302156.7277,121386.5434,1700823.69,15.6
+9981,285045.8937,121347.4433,1600143.622,15.6
+9982,293344.4956,121324.8645,1559498.714,15.6
+9983,296972.7144,121474.1674,1601672.381,15.6
+9984,295616.0022,122375.9064,1586785.692,15.6
+9985,296937.7326,121940.9959,1588579.32,15.6
+9986,298113.1467,122571.234,1588785.077,15.6
+9987,299236.2879,122283.0087,1590529.248,15.6
+9988,300353.454,122999.475,1590698.857,15.6
+9989,301642.4249,123247.9849,1591365.006,15.6
+9990,40958.00051,123336.2258,1592313.365,15.6
+9991,41022.89724,123274.6171,1592524.802,15.6
+9992,41097.70265,124190.3365,1593265.784,15.6
+9993,845789.5394,123885.3458,1593904.894,15.6
+9994,354040.1291,124344.4702,313872.3899,15.6
+9995,137321.216,103648.801,309300.3961,15.6
+9996,389921.4026,103648.7932,304848.9992,15.6
+9997,308336.0501,104505.6387,2570231.345,15.6
+9998,312066.9586,78905.56012,1316160.663,15.6
+9999,314014.7929,0,1451725.201,15.6
+10000,314427.3034,13768.03751,1628316.335,15.6
+10001,316361.7202,28549.65004,1536807.039,15.6
+10002,316722.7813,19795.17989,1553918.558,15.6
+10003,317693.9632,21230.41253,1559827.71,15.6
+10004,319620.657,21213.27177,1564317.749,15.6
+10005,320089.3995,21302.91336,1568078.021,15.6
+10006,321282.2103,21239.78497,1572103.098,15.6
+10007,322607.1782,21350.77462,1574467.245,15.6
+10008,323400.1631,21323.32113,1578145.65,15.6
+10009,281408.4579,21319.24701,1580329.102,15.6
+10010,282475.2106,493471.1254,1392898.364,15.6
+10011,373697.7617,23020.61946,1395866.913,15.6
+10012,342962.5542,50091.03181,1704563.883,15.6
+10013,331007.4197,163990.6829,1601424.933,15.6
+10014,323979.4186,139399.6878,1563464.604,15.6
+10015,335871.2778,124319.8645,1603794.917,15.6
+10016,332431.7384,130653.8204,1590084.441,15.6
+10017,333704.8207,130895.3641,1591627.994,15.6
+10018,334736.3661,130826.987,1592200.296,15.6
+10019,336106.7234,131208.4339,1592828.673,15.6
+10020,336845.9787,131627.9171,1597017.982,15.6
+10021,337149.4204,131657.061,1594456.864,15.6
+10022,335647.0545,133143.1754,1594881.414,15.6
+10023,44505.99104,133456.3299,1595338.369,15.6
+10024,44459.96819,134402.9816,1596004.705,15.6
+10025,810455.8589,135105.1034,1596435.888,15.6
+10026,329744.9776,135958.6833,1596061.597,15.6
+10027,216371.9396,136787.2846,314680.6274,15.6
+10028,391513.4122,115253.3022,309706.0124,15.6
+10029,330945.8097,115669.1997,305403.9272,15.6
+10030,333422.9172,117217.8151,2574951.259,15.6
+10031,333176.4358,200838.2183,1322389.254,15.6
+10032,332735.501,120538.7078,1447965.926,15.6
+10033,332254.2351,133331.436,1631432.293,15.6
+10034,331871.7209,151898.0683,1537546.207,15.6
+10035,331438.9979,142315.6756,1554472.994,15.6
+10036,330992.8401,145240.7742,1559316.499,15.6
+10037,330544.4581,146006.2727,1564114.037,15.6
+10038,330305.2422,146374.9447,1568268.72,15.6
+10039,329813.816,148084.2832,1571207.198,15.6
+10040,329297.4658,23439.35478,1574908.538,15.6
+10041,285635.9828,23480.12754,1576448.652,15.6
+10042,284931.403,23492.60481,1390664.465,15.6
+10043,374950.0007,23551.57578,1393564.315,15.6
+10044,342920.1783,23679.79206,1700939.439,15.6
+10045,329894.4866,23708.83255,1598475.51,15.6
+10046,320397.328,23881.45677,1560295.823,15.6
+10047,330976.8188,600679.113,1601588.23,15.6
+10048,326231.9646,24035.79067,1587492.465,15.6
+10049,326116.852,46420.30905,1588875.283,15.6
+10050,325031.3004,218045.8665,1589415.211,15.6
+10051,325462.545,158001.9561,1590696.984,15.6
+10052,324284.8141,152805.5392,1591148.072,15.6
+10053,324419.4067,159039.7994,1592044.81,15.6
+10054,323888.8593,159895.3318,1592327.435,15.6
+10055,43063.29051,160711.4019,1592510.768,15.6
+10056,42971.39587,161057.3669,1592954.508,15.6
+10057,791298.9955,162649.3497,1593881.082,15.6
+10058,295430.0581,162928.9396,1593553.029,15.6
+10059,218762.0969,163623.4469,1594415.372,15.6
+10060,374489.1603,164902.3029,314389.0001,15.6
+10061,319208.113,140396.8251,309802.2755,15.6
+10062,320837.1334,141121.2315,305260.4896,15.6
+10063,321140.0424,141505.4671,2568592.28,15.6
+10064,321018.879,238199.1735,1316511.863,15.6
+10065,319886.8296,150772.6735,1449293.431,15.6
+10066,319798.819,154784.0989,1627648.05,15.6
+10067,319157.3833,181628.4467,1535054.193,15.6
+10068,318826.0084,169472.0462,1552978.545,15.6
+10069,318246.7696,172339.5867,1556976.286,15.6
+10070,318025.0137,173142.4407,1562726.54,15.6
+10071,317216.4851,174007.0742,1565477.175,15.6
+10072,317032.2234,175735.2335,1569404.924,15.6
+10073,274454.149,176329.7422,1572811.431,15.6
+10074,273737.8524,177508.8648,1386025.786,15.6
+10075,363878.437,177775.6571,1389364.631,15.6
+10076,328957.5537,179489.1187,1697265.495,15.6
+10077,314398.7848,26787.0389,1591687.421,15.6
+10078,309429.7764,26843.16968,1558032.303,15.6
+10079,317994.6674,26954.76265,1596874.204,15.6
+10080,313160.7448,27051.08258,1584144.854,15.6
+10081,313647.3125,638877.5995,1586724.571,15.6
+10082,313163.3029,26786.14199,1589034.547,15.6
+10083,313413.8797,78445.35752,1591004.378,15.6
+10084,313223.8026,252818.8127,1593399.621,15.6
+10085,313146.0865,165955.6326,1596006.932,15.6
+10086,312556.3263,174391.6002,1597306.726,15.6
+10087,41867.28204,174571.8239,1599910.821,15.6
+10088,41827.83926,173856.3593,1601451.986,15.6
+10089,776120.733,172799.3249,1603794.307,15.6
+10090,267586.7782,171380.6653,1605068.736,15.6
+10091,221636.1924,170720.1916,1607551.376,15.6
+10092,361887.5286,169211.6737,1608688.429,15.6
+10093,309283.1885,168121.606,316881.4562,15.6
+10094,312495.7846,141476.9845,312260.7091,15.6
+10095,312024.8802,140902.8268,308416.9263,15.6
+10096,312472.4413,139651.7926,2608138.676,15.6
+10097,312012.932,232536.7972,1369168.796,15.6
+10098,311686.4971,144348.4133,1439882.137,15.6
+10099,311981.6108,146718.493,1667904.585,15.6
+10100,311702.4233,171390.6702,1560969.328,15.6
+10101,311495.9777,157390.4286,1580890.571,15.6
+10102,311074.1524,157754.0671,1586424.521,15.6
+10103,311795.7818,156749.2071,1593871.994,15.6
+10104,310987.9076,156277.5106,2475742.472,15.6
+10105,269464.8865,155025.3084,1579941.822,15.6
+10106,269199.2042,154601.2617,1396937.047,15.6
+10107,359631.1164,153400.7993,1403650.514,15.6
+10108,324165.771,151769.0208,1715738.466,15.6
+10109,308685.3947,151093.968,1627178.681,15.6
+10110,306484.7263,150003.1236,1579676.979,15.6
+10111,314220.1979,23313.09084,1632381.835,15.6
+10112,310230.6206,23241.61125,1618972.466,15.6
+10113,310248.7069,23030.08897,1623318.617,15.6
+10114,310164.7948,22889.34996,1627543.297,15.6
+10115,310206.7202,22793.8123,1630183.928,15.6
+10116,309588.414,22625.73698,1634721.024,15.6
+10117,310223.6812,22537.58603,1637098.897,15.6
+10118,309456.4606,550197.2097,1640064.223,15.6
+10119,41499.19335,22348.30454,1642292.989,15.6
+10120,41424.24732,42487.69629,1645258.992,15.6
+10121,771078.1518,178163.3859,1647880.1,15.6
+10122,260731.1093,144207.0999,1650417.823,15.6
+10123,220790.0805,127444.8703,1651833.417,15.6
+10124,357313.7703,133606.2602,1655052.975,15.6
+10125,305930.4244,131634.516,1655778.835,15.6
+10126,309236.4279,130612.6061,324010.23,15.6
+10127,308818.2747,108243.7538,319538.781,15.6
+10128,308735.0325,106764.3328,315155.5683,15.6
+10129,308177.7067,106109.0217,2664607.557,15.6
+10130,308666.5506,182258.3794,1514096.732,15.6
+10131,308391.8432,103587.6375,1445325.489,15.6
+10132,307851.6453,115099.8282,1724651.263,15.6
+10133,307993.9207,129659.8747,1613274.118,15.6
+10134,307986.0465,118720.8993,1628849.742,15.6
+10135,307562.5406,119657.4103,1636602.768,15.6
+10136,307223.6893,117474.8724,1642733.869,15.6
+10137,266561.2371,116938.6255,1648576.394,15.6
+10138,265816.9507,115029.0395,1453504.365,15.6
+10139,355981.7426,113952.032,1459221.24,15.6
+10140,319535.1431,111264.2385,1778597.653,15.6
+10141,304150.666,115089.8069,1698165.579,15.6
+10142,305027.9813,118565.3452,1639173.027,15.6
+10143,311575.3651,120529.5606,1682385.274,15.6
+10144,309274.0564,123613.756,1673564.582,15.6
+10145,308699.3643,125658.9517,1671706.314,15.6
+10146,310208.9293,128251.0621,1672074.507,15.6
+10147,310140.6633,130655.3111,1674032.41,15.6
+10148,310528.9212,21791.46574,1673131.087,15.6
+10149,311205.5593,22161.93434,1674149.185,15.6
+10150,311580.7628,22357.00482,1674400.037,15.6
+10151,41780.71756,22636.31124,1673608.273,15.6
+10152,41874.81175,22893.21443,1675409.314,15.6
+10153,776625.1148,23201.48279,1673271.95,15.6
+10154,272907.9927,23469.42041,2319116.849,15.6
+10155,220597.7474,23715.314,1715878.941,15.6
+10156,364095.5787,602456.3668,1687304.06,15.6
+10157,312881.375,24254.00018,1684441.653,15.6
+10158,315696.088,52297.19459,1683479.857,15.6
+10159,316389.7859,218214.9648,338290.4233,15.6
+10160,316784.1757,141011.6994,329296.5823,15.6
+10161,317429.8028,135230.2168,323480.5963,15.6
+10162,317599.2208,142584.2646,2696937.218,15.6
+10163,317879.0799,239213.8637,1611943.473,15.6
+10164,318722.423,155008.2099,1424981.365,15.6
+10165,318614.5007,162658.6582,1789358.686,15.6
+10166,319431.2556,188032.7504,1606435.204,15.6
+10167,319678.7372,179308.233,1618717.699,15.6
+10168,320155.6867,182819.6855,1625063.989,15.6
+10169,277644.0081,185426.5923,1629851.297,15.6
+10170,278235.9164,187719.3954,1434913.825,15.6
+10171,368894.0838,190391.22,1439654.041,15.6
+10172,335148.02,193749.5163,1753196.78,15.6
+10173,322713.5092,196297.313,1676328.541,15.6
+10174,317325.7088,198673.8979,2259101.403,15.6
+10175,327130.285,201041.8395,1701277.894,15.6
+10176,323950.1305,204095.0853,1665189.845,15.6
+10177,323881.5516,205934.8276,1662391.981,15.6
+10178,324962.6203,208263.2364,1663063.307,15.6
+10179,324496.5777,211407.0042,1661702.946,15.6
+10180,325653.783,213337.1531,1662342.242,15.6
+10181,325776.7861,214716.4638,1662103.175,15.6
+10182,326244.9857,217060.6739,1662039.84,15.6
+10183,43602.69041,219934.1234,1661055.762,15.6
+10184,43642.07414,222017.9835,1663386.112,15.6
+10185,800963.4904,224303.677,1719157.069,15.6
+10186,319348.9822,32287.19813,1653759.447,15.6
+10187,211640.9433,32479.43587,1654061.074,15.6
+10188,386039.9244,32915.72219,1654188.104,15.6
+10189,326152.7071,751921.5094,1654970.696,15.6
+10190,329923.8912,45189.47188,1654692.765,15.6
+10191,330419.608,179907.7424,1654761.801,15.6
+10192,330715.3289,304606.1805,334115.0887,15.6
+10193,330942.9641,199331.756,328801.502,15.6
+10194,331939.4296,212565.4691,323732.2665,15.6
+10195,331859.5207,317771.5322,2685757.918,15.6
+10196,332464.5494,231990.8572,1608180.797,15.6
+10197,332597.0196,248836.1836,2022580.433,15.6
+10198,333226.375,263020.3654,1758370.373,15.6
+10199,333755.0391,258555.2531,1604320.363,15.6
+10200,333829.7106,262247.0656,1614808.507,15.6
+10201,290182.7665,261225.6983,1617306.468,15.6
+10202,290039.8582,260417.2343,1422081.349,15.6
+10203,380726.1848,260103.3858,1427313.882,15.6
+10204,350530.0474,258992.2585,1743170.717,15.6
+10205,338315.922,258630.9141,1665344.335,15.6
+10206,330168.4192,257794.9086,1604142.539,15.6
+10207,340886.1114,257164.8815,1649207.838,15.6
+10208,337227.4319,256298.0107,1692932.293,15.6
+10209,337709.5425,256010.7549,1634087.175,15.6
+10210,338246.4848,254861.1669,1636483.958,15.6
+10211,337674.1203,254360.0003,1638006.584,15.6
+10212,339100.7457,253747.4651,1639984.49,15.6
+10213,338827.7492,252861.0567,1642434.193,15.6
+10214,339652.853,252130.5516,1642281.725,15.6
+10215,45252.95778,251881.6787,1645259.304,15.6
+10216,45249.72229,250786.0457,1644369.475,15.6
+10217,822453.3954,249970.0734,1647176.934,15.6
+10218,358549.5199,250811.2703,2296920.815,15.6
+10219,209728.3662,34994.50505,1690270.076,15.6
+10220,402509.7598,34950.08012,1659047.798,15.6
+10221,339773.5041,34880.41541,1659704.571,15.6
+10222,342445.4313,821040.0062,1657016.896,15.6
+10223,342678.9824,73552.63652,1658250.019,15.6
+10224,343711.5845,141764.8429,1656550.231,15.6
+10225,343857.3235,295607.4536,339608.994,15.6
+10226,343721.2529,195768.2516,333716.5204,15.6
+10227,344825.8934,312410.1597,328222.8875,15.6
+10228,344327.2324,223905.1252,2704580.236,15.6
+10229,345586.4723,236097.7937,1628385.14,15.6
+10230,345385.6241,248206.5166,1395762.541,15.6
+10231,345864.3311,240548.0767,1705894.468,15.6
+10232,346346.1436,240676.6758,1620119.663,15.6
+10233,300242.006,239910.5148,1594651.366,15.6
+10234,301314.491,239068.3596,1405001.167,15.6
+10235,391101.9465,237599.1531,1409214.268,15.6
+10236,363721.0946,236754.8632,1725590.505,15.6
+10237,351326.0849,236229.9213,1648302.367,15.6
+10238,344168.6754,235062.0941,1588546.171,15.6
+10239,351148.3583,234673.0595,1635104.492,15.6
+10240,350370.0326,233884.9761,1627818.733,15.6
+10241,349376.8051,233365.3445,2275040.609,15.6
+10242,350535.0708,232095.3478,1672940.703,15.6
+10243,350343.6918,231688.5031,1644604.925,15.6
+10244,350520.3859,230646.1064,1645283.109,15.6
+10245,351188.2246,230481.0152,1645837.335,15.6
+10246,351573.7536,228716.7787,1646010.754,15.6
+10247,46872.93046,229272.489,1646521.411,15.6
+10248,46926.64498,227088.5523,1646117.066,15.6
+10249,839028.0873,227755.6825,1646958.184,15.6
+10250,380767.9827,226132.7847,1646680.187,15.6
+10251,232899.4183,225658.6461,1647971.9,15.6
+10252,405496.0091,32501.39425,1822638.513,15.6
+10253,355370.2165,32389.46883,2570137.243,15.6
+10254,354826.2886,32345.2354,1624243.312,15.6
+10255,355899.9336,735339.6354,1627154.301,15.6
+10256,355702.2797,32152.47352,1837830.912,15.6
+10257,356767.6997,121976.2218,1606957.503,15.6
+10258,355831.56,255100.2664,200955.3962,15.6
+10259,357615.349,271424.1255,197443.456,15.6
+10260,357226.5157,197793.1608,387089.5537,15.6
+10261,356848.1837,215979.7287,2858488.365,15.6
+10262,357006.3653,225481.8688,1521933.709,15.6
+10263,356499.8098,221209.4858,1369587.514,15.6
+10264,356153.4519,222123.0393,1673693.377,15.6
+10265,309154.1452,223189.5901,1555684.633,15.6
+10266,308362.2679,223411.1493,1377788.595,15.6
+10267,399345.7728,224777.2356,1383419.015,15.6
+10268,371818.4682,224767.1495,1695600.539,15.6
+10269,359473.8075,226076.2381,1614408.217,15.6
+10270,351241.9516,226610.9769,1560618.249,15.6
+10271,356519.2497,227236.7369,1604977.711,15.6
+10272,356117.8339,228934.3277,2238894.107,15.6
+10273,354206.3457,229405.6771,1638582.34,15.6
+10274,354863.0202,230931.8776,1611789.074,15.6
+10275,353850.484,230685.0666,1611188.031,15.6
+10276,353803.9071,232076.8969,1611072.153,15.6
+10277,353758.5049,232586.645,1610571.623,15.6
+10278,353338.2595,233058.0137,1609942.479,15.6
+10279,47183.28931,234173.0576,1609536.208,15.6
+10280,47250.35983,235224.7033,1608435.968,15.6
+10281,840463.9835,234198.5258,1608123.773,15.6
+10282,383676.7777,236094.3703,1608021.571,15.6
+10283,230946.7526,235906.9117,1662845.086,15.6
+10284,403140.7925,237297.2849,1597441.478,15.6
+10285,352793.8783,34100.80641,1597538.954,15.6
+10286,351651.4237,34161.06465,1596780.985,15.6
+10287,351643.5192,34280.30115,1596188.879,15.6
+10288,351622.8703,792113.5177,1595661.183,15.6
+10289,350888.7911,27594.48421,1594185.843,15.6
+10290,350968.2149,116889.2699,1593862.441,15.6
+10291,350317.9557,387617.7444,328571.114,15.6
+10292,350264.7763,209401.1644,829001.9488,15.6
+10293,350416.2159,238007.1114,220811.1498,15.6
+10294,349706.1467,250120.1002,2704322.878,15.6
+10295,349633.3848,245186.8926,1399166.171,15.6
+10296,349222.4531,246199.6618,1402027.6,15.6
+10297,302385.7667,247062.5394,1672207.963,15.6
+10298,302015.5276,247580.3569,1351420.695,15.6
+10299,393354.404,248563.0575,1366021.294,15.6
+10300,364376.1371,249133.1458,1678298.762,15.6
+10301,351794.4199,250037.1919,1576605.561,15.6
+10302,343299.9771,250313.1075,1532077.664,15.6
+10303,350089.4985,251703.5263,1631182.7,15.6
+10304,348480.0771,252007.6205,1552708.172,15.6
+10305,347028.6399,252456.0393,1553794.747,15.6
+10306,347530.7566,253873.2161,1553730.081,15.6
+10307,346661.3301,254133.3707,1554944.616,15.6
+10308,346631.1411,256665.8454,1553738.53,15.6
+10309,345913.9811,256533.6005,1554743.762,15.6
+10310,346528.6923,258150.3887,1554251.852,15.6
+10311,46518.39456,258559.0307,1553400.813,15.6
+10312,46477.21619,259542.4267,2200558.932,15.6
+10313,834879.2577,259431.8938,1592271.47,15.6
+10314,373949.654,261403.4929,1563958.73,15.6
+10315,211212.4639,261127.787,1560171.559,15.6
+10316,404035.8137,262581.0356,1558259.27,15.6
+10317,342637.3522,261335.2488,1556637.849,15.6
+10318,344228.08,37144.95744,1553961.989,15.6
+10319,344163.486,37190.40135,1552227.277,15.6
+10320,343345.7608,37221.53245,1550583.72,17.8
+10321,344651.4283,838389.4804,1549411.367,17.8
+10322,343981.5193,76465.34008,1550762.344,17.8
+10323,345044.2739,188227.4568,1605094.791,17.8
+10324,345294.3179,340903.1456,230379.0286,17.8
+10325,345692.8517,229893.5519,405582.6524,17.8
+10326,346019.9216,260520.5193,1206888.274,17.8
+10327,345974.1974,251488.5932,2476018.659,17.8
+10328,347275.3719,250780.7522,1231544.186,17.8
+10329,299892.1909,247998.5607,1389648.898,17.8
+10330,300829.1627,247414.0398,1370939.734,17.8
+10331,392928.0295,244769.3844,1285372.098,17.8
+10332,364167.9638,243218.8957,2233214.512,17.8
+10333,352250.5733,241517.3958,1536862.924,17.8
+10334,344125.3578,239603.3262,1486967.285,17.8
+10335,352646.7225,237497.9512,1524124.388,17.8
+10336,350446.9495,236066.9536,1514686.442,17.8
+10337,350305.6789,233829.1629,1517894.877,17.8
+10338,350858.2472,232346.8468,1519940.936,17.8
+10339,351292.5862,230506.6652,1522788.219,17.8
+10340,351294.0623,228355.7893,1524768.765,17.8
+10341,351886.9467,227018.7488,1525776.79,17.8
+10342,352656.795,224801.0146,1529735.078,17.8
+10343,47532.4116,223386.1708,1578822.588,17.8
+10344,47587.43069,220969.1905,1524333.774,17.8
+10345,842331.8812,219692.8901,1526367.193,17.8
+10346,728712.317,217535.3681,1527834.69,17.8
+10347,234451.3415,215591.9225,1528941.728,17.8
+10348,403732.6313,214240.0207,1529952.024,17.8
+10349,357023.8757,211664.5413,1531014.398,17.8
+10350,355794.4796,210830.2265,1531653.023,17.8
+10351,355876.9717,31218.78439,1532172.895,17.8
+10352,356905.8856,31038.6063,1533466.636,17.8
+10353,356998.1403,0,1533132.849,17.8
+10354,357606.9138,0,1533549.642,17.8
+10355,357035.8076,816967.0283,1534839.011,17.8
+10356,358536.6221,17731.16936,1534010.549,17.8
+10357,358073.2482,69408.09967,320341.4319,17.8
+10358,359346.0439,293278.9823,315188.1492,17.8
+10359,358463.8045,178401.9051,310483.739,17.8
+10360,359812.2324,190416.8545,305582.4342,17.8
+10361,311511.4021,189827.1477,2573558.062,17.8
+10362,311324.5464,188123.9899,1131318.637,17.8
+10363,405096.1004,185931.2338,1129471.207,17.8
+10364,377603.3049,184090.9201,1689172.785,17.8
+10365,366085.9895,182328.7613,1469395.755,17.8
+10366,358888.0213,179837.0827,1458909.052,17.8
+10367,363299.773,178353.0668,1496378.289,17.8
+10368,364185.9129,176557.14,1490136.014,17.8
+10369,362934.2483,174194.2476,1495789.096,17.8
+10370,363870.7877,172366.9712,1498602.718,17.8
+10371,363730.9739,170481.6716,1503378.171,17.8
+10372,364381.1532,168860.0634,1505998.465,17.8
+10373,364477.625,166943.5022,1509174.483,17.8
+10374,365122.1803,164748.5918,2405915.066,17.8
+10375,49279.79597,162305.2173,1490194.661,17.8
+10376,49358.71194,161050.2154,1494504.09,17.8
+10377,853683.9409,158071.5761,1498979.703,17.8
+10378,414346.2891,156280.0252,1501855.185,17.8
+10379,265690.1546,154745.424,1505921.934,17.8
+10380,401812.8095,150810.1324,1508176.052,20
+10381,372034.5614,151353.5904,1509308.762,20
+10382,366041.8522,151492.9473,1511095.57,20
+10383,364495.5708,151794.3221,1511593.374,20
+10384,363796.6837,151518.2378,1512016,20
+10385,702079.0886,0,1513100.154,20
+10386,361983.6964,0,1513476.764,20
+10387,361204.6736,0,1513139.252,20
+10388,360629.7743,91255.58515,1514458.228,20
+10389,360030.5924,5919.965133,1513361.687,20
+10390,358282.523,13274.82842,1514270.826,20
+10391,358231.9876,618252.3632,318705.9327,20
+10392,356568.8274,23583.04228,313612.5028,20
+10393,307196.6363,41620.50739,308816.6322,20
+10394,306502.3237,199189.4383,0,20
+10395,398032.8616,162038.9175,2396909.627,20
+10396,369428.2687,145240.3143,1401061.918,20
+10397,355423.5084,152509.2866,1304951.681,20
+10398,346858.86,153359.8188,1528396.456,20
+10399,351579.2954,154972.4926,1464528.521,20
+10400,349901.9976,153911.3005,1458523.163,20
+10401,347669.1255,154400.8286,1466249.469,20
+10402,346951.2937,154854.3614,1470249.774,20
+10403,347729.241,154376.2705,1474494.464,20
+10404,346383.8294,155150.8757,1477348.968,20
+10405,345272.5753,154729.3295,1479964.042,20
+10406,344439.192,155388.7174,1482460.735,20
+10407,48336.04011,155232.696,1484629.055,20
+10408,48142.23063,155516.1209,1486237.03,20
+10409,833719.0721,155598.5613,1487754.727,20
+10410,374310.1612,155590.7448,1489088.328,20
+10411,198645.4411,156351.7446,1490222.187,20
+10412,402596.0885,155635.4057,1490762.62,20
+10413,335262.6525,156424.465,1491896.581,20
+10414,337831.7582,156407.001,1491997.513,20
+10415,336242.3207,156367.6586,1492633.286,20
+10416,335756.993,156811.0266,1492832.608,20
+10417,334511.2395,156502.8943,1492681.604,20
+10418,333876.9626,129666.1153,1493128.616,20
+10419,332736.2339,129171.9518,1492877.044,20
+10420,331879.538,129864.7874,2145835.145,20
+10421,330752.8889,93233.31524,1533640.479,20
+10422,329799.7725,6884.801147,2431408.173,20
+10423,329342.0438,12901.89011,1475466.106,20
+10424,667259.9388,35749.55526,1478028.222,20
+10425,280261.3985,24055.95899,326076.0804,20
+10426,279260.3495,25716.1761,0,20
+10427,370773.0435,641453.5337,0,20
+10428,335604.8509,29088.83243,442346.8989,20
+10429,324030.5818,41300.17678,2579270.698,20
+10430,312920.9255,206735.768,1245093.626,20
+10431,325108.5601,170605.6183,1285410.725,20
+10432,321918.9135,150915.6773,1525287.807,20
+10433,319227.7409,159940.6487,1427454.235,20
+10434,318776.9124,159723.4173,2075244.784,20
+10435,317823.5911,159951.3845,1481194.242,20
+10436,316711.1167,159884.5516,1456379.66,20
+10437,316009.9619,160404.0535,1461768.294,20
+10438,315072.2755,160071.0974,1462180.317,20
+10439,46194.53896,160566.1456,1464851.824,20
+10440,46034.56882,160384.092,1466268.721,21
+10441,784746.88,160283.194,1465442.698,21
+10442,289044.5524,161023.7065,1467620.23,21
+10443,204186.3497,162759.3705,1470698.914,21
+10444,371543.8461,163317.9623,1474906.569,21
+10445,313900.53,165341.8857,1474648.956,21
+10446,318433.5133,166020.2285,1477290.22,21
+10447,320213.7908,167690.7072,1479103.977,21
+10448,321090.7544,168546.0193,2137305.006,21
+10449,323178.6269,169801.8455,1522231.985,21
+10450,323914.1939,171192.4286,1494423.184,21
+10451,325418.1794,141558.1092,1494176.254,21
+10452,326523.9557,143817.7249,1495400.007,21
+10453,328557.3684,143795.6231,1495326.418,21
+10454,329040.1376,245563.3605,1496228.708,21
+10455,330729.0159,156587.5451,1496743.872,21
+10456,332215.913,159290.8594,1497459.15,21
+10457,285182.4464,39535.30919,1498315.063,21
+10458,286072.3265,26811.04523,1313034.015,21
+10459,380080.5668,31052.22979,0,21
+10460,349274.6615,32277.03061,467561.7264,21
+10461,339023.5558,31127.81737,332833.7564,21
+10462,331724.3762,716537.4702,800643.8604,21
+10463,348248.4415,31959.17735,2698205.445,21
+10464,342766.1557,57788.80807,1309517.718,21
+10465,344227.0625,282247.4947,1284637.716,21
+10466,345937.7753,174904.7845,1577426.694,21
+10467,347716.4692,189180.5178,1452567.061,21
+10468,348420.7152,191893.2019,1465483.457,21
+10469,349945.8637,192808.138,1471747.498,21
+10470,351707.6398,193825.2456,1475490.259,21
+10471,51180.68815,195314.1342,1480267.696,21
+10472,51491.57398,195647.78,1484179.77,21
+10473,845672.3345,197522.0046,1487000.39,21
+10474,396589.2613,197804.2725,1488410.055,21
+10475,232278.1306,199355.0322,1492961.46,21
+10476,411528.7037,200507.2619,2148953.523,21
+10477,361734.7691,201090.7919,1537576.243,21
+10478,362363.1868,202369.0137,1509073.169,21
+10479,364049.2047,203723.0133,1510194.121,21
+10480,365215.0852,204297.553,1511121.893,21
+10481,366817.8592,205989.9945,1511681.034,21
+10482,367732.2715,206547.3843,1513666.296,21
+10483,368978.4969,207735.0749,1513598.8,21
+10484,370811.2093,173630.8674,1515047.789,21
+10485,371983.7816,174313.3001,1515483.651,21
+10486,373402.5099,268703.5432,1518558.962,21
+10487,374474.1682,186542.7686,1516904.788,21
+10488,375985.6512,206235.0585,1518182.471,21
+10489,322970.5132,219255.3224,1518801.098,21
+10490,323874.9521,215724.003,1987675.561,21
+10491,418135.3023,215371.5862,1368337.282,21
+10492,396707.1738,36532.42098,1655286.63,21
+10493,382396.8022,36577.1748,459109.8735,21
+10494,390044.6616,36763.96077,280679.863,21
+10495,382398.5996,36919.71951,343509.4076,21
+10496,389132.5353,811043.8505,2560393.846,21
+10497,388705.4431,70693.44029,1245470.869,21
+10498,389898.9559,77885.01602,1360824.559,21
+10499,391380.0396,332015.0993,1555696.773,21
+10500,392305.3736,207516.8707,1461213.288,21
+10501,392474.4659,225766.272,1474876.655,21
+10502,391263.6753,227667.0441,1479965.335,21
+10503,56869.13926,229102.0992,1483568.43,21
+10504,56824.61955,229079.0931,2135968.035,21
+10505,869567.8723,231121.6747,1529813.441,21
+10506,450719.3012,231440.1229,1501971.202,21
+10507,332003.3882,232628.9707,1504133.69,21
+10508,391483.6261,233811.2243,1503751.792,21
+10509,404571.7199,234945.5379,1505284.607,21
+10510,387897.1682,235747.7665,1505857.679,21
+10511,388092.3915,236732.8889,1505822.208,21
+10512,387246.3798,238116.2488,1506087.12,21
+10513,386330.562,238574.3966,1506972.6,21
+10514,386322.4985,240175.3295,1507666.975,21
+10515,385664.6001,240452.8834,1506789.614,21
+10516,385472.4662,202626.8506,1506343.22,21
+10517,384479.4658,202930.6561,1506164.834,21
+10518,384557.378,307239.9247,2166006.681,21
+10519,383154.7574,220910.0887,1546194.758,21
+10520,383322.8853,238794.2325,1514398.348,21
+10521,326715.4051,255910.7454,1513724.64,21
+10522,325537.3165,246750.4099,1320220.11,21
+10523,419577.0741,249557.7784,1320055.63,21
+10524,395251.8944,251673.9432,1634019.168,21
+10525,386581.5342,253287.3213,1518855.772,21
+10526,382547.7897,41541.72521,313150.7695,21
+10527,377234.146,41674.49648,353049.3081,21
+10528,381759.8932,41841.06441,330553.423,21
+10529,379084.5437,834613.5526,2562951.006,21
+10530,378462.5326,96934.54184,1226164.847,21
+10531,377689.9255,145316.5795,1332199.212,21
+10532,377926.6314,346346.4059,3084173.544,21
+10533,376615.1813,246220.459,1448964.379,21
+10534,376374.7598,261539.9843,1439021.455,21
+10535,56163.64791,262714.3617,1444503.035,21
+10536,56053.06005,264577.6082,1449676.532,21
+10537,864642.6435,264553.6567,1453305.818,21
+10538,430961.2556,266631.5132,1457083.916,21
+10539,270265.1833,266881.6475,1460826.771,21
+10540,407319.5733,268003.2786,1463357.192,21
+10541,380072.1593,270434.6454,1465619.022,21
+10542,372769.8394,270010.6759,1469664.297,21
+10543,372450.163,271714.9856,1469415.983,21
+10544,371622.8783,273131.3806,1471516.454,21
+10545,371747.9333,273724.9177,1472689.943,21
+10546,370768.942,274902.7561,2136036.962,21
+10547,369995.5624,276309.9057,1514356.269,21
+10548,369456.3881,232423.7827,1466614.906,21
+10549,369644.5552,233293.0572,1463819.019,21
+10550,367969.6165,345758.4761,1462886.927,21
+10551,368318.4239,258118.7714,1461265.476,21
+10552,364453.9372,279598.7866,1460199.75,21
+10553,307716.2107,286992.1591,1458312.941,21
+10554,307494.5675,284718.7055,1271673.041,21
+10555,400568.1937,286383.0586,1270559.561,21
+10556,375334.1276,287153.1406,1583268.389,21
+10557,366759.4756,288460.9845,1450994.86,21
+10558,355948.1837,289740.4743,1427464.666,21
+10559,359850.3473,46515.0563,354905.8392,21
+10560,359084.5674,46719.68846,838115.251,21
+10561,697525.1849,46742.59312,213363.6412,21
+10562,357286.8439,969891.9416,234327.6187,21
+10563,357211.2251,157685.0176,2631510.407,21
+10564,356795.8846,117827.1448,1255448.053,21
+10565,356864.1121,412489.6172,1250817.504,21
+10566,355797.0374,276682.196,1503259.679,21
+10567,54516.25169,295118.5373,1404671.253,21
+10568,54463.76569,297108.6746,1406366.069,21
+10569,848724.2607,297141.697,1411870.34,21
+10570,392104.3551,298503.2705,1415041.768,21
+10571,222609.2194,298966.1264,1415183.763,21
+10572,410515.1654,299143.6255,1416710.943,21
+10573,353717.2595,299815.3312,1418146.589,21
+10574,354337.5172,300861.9139,1418992.995,21
+10575,353755.9362,301506.3217,1419377.981,21
+10576,353164.3665,301520.1174,2085455.521,21
+10577,353115.5364,303114.5496,1460987.215,21
+10578,353147.2433,302757.526,1429715.263,21
+10579,352355.8,303976.7834,1429877.849,21
+10580,351635.3225,255859.3248,1428465.355,21
+10581,352534.31,256891.9657,1429129.915,21
+10582,351115.8881,371197.6019,1427516.683,21
+10583,351377.9722,290833.9913,1428115.602,21
+10584,350743.0122,305142.7987,1426595.346,21
+10585,296857.6873,310451.4269,1426189.453,21
+10586,296588.511,309134.1852,1245209.18,21
+10587,389038.6919,309170.9006,1243418.012,21
+10588,366948.4201,309914.3446,1550621.24,21
+10589,353424.4397,310674.2074,1408512.674,21
+10590,345218.1734,311604.2047,1405923.667,21
+10591,349617.2234,311867.1114,3057054.336,21
+10592,347415.8029,49952.81273,1429331.039,21
+10593,345486.5616,50172.70722,227195.0463,21
+10594,343071.0355,50051.54469,430992.7979,21
+10595,341720.0593,1045040.432,295192.0143,21
+10596,340216.3736,200708.7206,318482.4664,21
+10597,339234.4728,111875.5378,2411599.634,21
+10598,337334.1256,442660.5328,1140322.28,21
+10599,52555.72318,300318.4409,1188075.308,21
+10600,52073.03945,316866.7048,1432726.743,21
+10601,809333.3125,318957.9638,1328664.989,21
+10602,339167.2378,319285.2246,1338089.727,21
+10603,205845.6115,320473.6576,1349430.385,21
+10604,384384.306,339112.9344,1350711.492,21
+10605,323633.5494,321337.7605,1354335.794,21
+10606,324413.0128,322212.5858,1357397.366,21
+10607,321220.7439,328772.6794,2015886.671,21
+10608,318928.9612,329446.427,1401627.396,21
+10609,317598.3258,327658.3827,1373292.559,21
+10610,654414.6404,330036.2333,1373587.071,21
+10611,313880.8163,329780.3205,1374626.249,21
+10612,311854.5471,279371.4381,1374267.85,21
+10613,309356.3613,279268.0063,1375510.768,21
+10614,307890.3925,396358.7566,1374195.45,21
+10615,305799.9871,325460.1268,1374617.811,21
+10616,303553.52,330952.6516,1374192.997,21
+10617,253161.7845,335872.2933,1373677.387,21
+10618,250795.8008,336114.9857,1200633.801,21
+10619,341769.5916,336391.7664,1200127.097,21
+10620,307084.8885,336956.7914,1199783.21,21
+10621,290461.8647,335859.132,1506815.113,21
+10622,293536.6125,334747.9296,1364686.682,21
+10623,292822.9149,333499.6028,1331127.633,21
+10624,290846.2251,332788.3876,2044960.039,21
+10625,288975.9334,57547.01238,1392337.482,21
+10626,288440.015,57304.31808,1361058.461,21
+10627,286597.2737,873230.2756,433018.3753,21
+10628,286091.8051,144417.3653,292497.4681,21
+10629,284706.3952,290715.0131,316813.1276,21
+10630,283260.1442,369065.6849,307438.7514,21
+10631,47473.08899,320483.3486,301630.3024,21
+10632,47253.34664,325361.9546,2231868.581,21
+10633,688898.2119,323469.4328,1092997.886,21
+10634,224243.4073,318224.4954,1124774.983,21
+10635,212842.4503,317033.6982,1331234.802,21
+10636,313186.155,316194.4139,1265525.458,21
+10637,272871.1891,314451.2779,1257954.242,21
+10638,273461.0315,314435.8919,1267415.717,21
+10639,271639.8655,312602.7404,1271926.865,21
+10640,271103.7913,312390.5201,1320448.88,21
+10641,268612.0712,311768.8,1270146.829,21
+10642,267631.013,310660.0173,1271439.271,21
+10643,265865.0923,309328.3198,1272917.427,21
+10644,264593.2311,257598.1539,1274416.734,21
+10645,262950.1414,256860.3836,1274408.217,21
+10646,260992.4159,373610.1272,1275079.615,21
+10647,260259.7216,295099.135,1275583.595,21
+10648,257705.5027,299028.0083,1274593.051,21
+10649,211699.0518,306123.208,1940450.883,21
+10650,209590.7767,302925.2113,1314076.342,21
+10651,299145.2503,301432.8554,1122019.581,21
+10652,250738.7374,299724.2659,2086664.921,21
+10653,255141.4582,299564.1934,1098863.543,21
+10654,256843.4852,297711.8058,1393001.357,21
+10655,250532.7646,296969.2648,1243282.796,21
+10656,254314.0207,296189.9418,1226111.784,21
+10657,252267.1494,49725.80474,1274025.296,21
+10658,252477.0907,49845.83701,1251298.06,21
+10659,591310.9176,49526.74922,1253067.753,21
+10660,251752.8233,958998.9503,1253422.372,21
+10661,252172.7273,150974.5029,1252324.538,21
+10662,251452.7215,117146.8385,312860.6772,21
+10663,45001.26587,405044.4429,307375.4379,21
+10664,44895.45406,268422.7143,301549.6103,21
+10665,544779.398,286276.9263,293666.9921,21
+10666,234512.9269,285211.269,223756.6326,21
+10667,237861.9292,284440.0311,380807.534,21
+10668,252084.1414,283418.049,2192555.842,21
+10669,259379.4124,282293.2717,1000836.494,21
+10670,252128.3185,280662.279,1009089.907,21
+10671,252610.2878,280178.6664,1236049.183,21
+10672,252273.0924,278635.9891,1144241.203,21
+10673,252822.7562,277652.1143,1361972.3,21
+10674,252687.6373,277018.2875,1144419.734,21
+10675,253060.9948,275098.1673,1153783.063,21
+10676,253325.0654,226716.9756,1154618.363,21
+10677,253531.8508,225693.5988,1159524.655,21
+10678,253750.65,342210.555,1163692.025,21
+10679,254586.2408,254454.4256,1166339.901,21
+10680,254546.2114,263078.3421,1169988.967,21
+10681,208654.1382,276807.5628,1173176.39,21
+10682,207968.5553,271195.6689,1177185.746,21
+10683,296611.019,272714.3168,1179262.509,21
+10684,238229.71,273746.3758,1703126.877,21
+10685,254499.1404,274627.7808,1075011.951,21
+10686,254146.1479,275313.6885,1045093.068,21
+10687,242137.0368,276608.1582,1330946.391,21
+10688,247604.0019,276837.0552,1170614.901,21
+10689,244444.8936,278708.4693,1172101.767,21
+10690,243389.0193,48467.25176,1203619.27,21
+10691,242589.311,48749.02119,1196855.847,21
+10692,241095.3849,48734.67084,1193100.627,21
+10693,240496.0875,909044.094,1195253.278,21
+10694,239971.6416,127116.5043,1195613.912,21
+10695,42855.79949,143297.3832,1195948.514,21
+10696,42783.18358,386526.7649,1195954.379,21
+10697,538070.7611,268147.0364,1195779.37,21
+10698,221075.4447,287090.7195,311928.1867,21
+10699,226579.8406,287850.3495,305716.6681,21
+10700,238339.7272,288584.6418,296977.6843,21
+10701,246558.7351,289783.2541,216035.6878,21
+10702,238761.6798,290519.9902,389614.7717,21
+10703,238521.0681,291162.8589,338232.8533,21
+10704,238574.3946,292077.863,135432.7162,21
+10705,237603.5216,293266.6991,1828923.376,21
+10706,238521.823,293601.3398,1016822.708,21
+10707,576617.9258,294873.706,989013.3458,21
+10708,237544.4742,245401.8116,1174085.563,21
+10709,237743.3919,245736.5441,1321977.266,21
+10710,236936.7031,368572.4511,1097796.379,21
+10711,236921.3721,284123.9374,1111487.721,21
+10712,236828.5244,293567.3461,1113845.542,21
+10713,196341.7451,304354.3436,2055113.599,21
+10714,196424.9048,319364.2235,1320012.629,21
+10715,275241.5093,301932.8917,1092646.906,21
+10716,226127.8365,303652.9816,1100893.788,21
+10717,242773.8818,310165.2134,968423.4026,21
+10718,236739.0149,309614.7677,971947.4013,21
+10719,233971.1867,310562.5009,975500.8452,21
+10720,236541.4756,310725.5542,1243891.32,21
+10721,235476.3056,311778.9887,1093438.554,21
+10722,235100.5128,311847.0163,1098693.413,21
+10723,235176.7357,56907.82486,1134295.725,21
+10724,234674.1778,57089.03865,1120018.346,21
+10725,234899.6873,57242.76046,1800579.369,21
+10726,234289.0077,1017602.934,1166780.672,21
+10727,38149.72017,189007.0971,1137584.298,21
+10728,38128.51419,126177.0299,1138931.245,21
+10729,548241.939,443342.3274,1139898.479,21
+10730,214797.0918,299932.8197,1140940.042,21
+10731,191564.414,319985.5123,1141124.508,21
+10732,252110.4207,321670.9817,1141541.242,21
+10733,235855.7247,322069.382,1142148.329,21
+10734,233240.6187,323191.0426,1142044.744,21
+10735,233224.1441,324088.5574,304517.3603,21
+10736,232570.3059,325226.9904,298845.9375,21
+10737,232475.1332,325845.6079,293216.9456,21
+10738,232475.3144,326636.8565,287566.8116,21
+10739,231808.9026,327958.3204,283555.4028,21
+10740,231883.5896,274133.3631,278156.4358,21
+10741,231125.9372,275743.0619,273822.9716,21
+10742,231469.1097,401676.7541,768175.0605,21
+10743,231315.418,309233.1759,155225.9981,21
+10744,230606.9581,736198.2233,1688239.384,21
+10745,195806.7044,316324.6521,947669.8956,21
+10746,195253.3218,315963.8159,983257.59,21
+10747,264293.3425,315572.1954,1075727.697,21
+10748,224678.7028,315621.674,1091740.33,21
+10749,232982.079,315976.4985,1060943.118,21
+10750,228673.7471,316069.7418,944772.873,21
+10751,230877.9454,316303.8905,947635.1077,21
+10752,229669.5675,317029.8227,950319.5904,21
+10753,229449.672,317207.2428,1206760.367,21
+10754,229127.299,740533.0775,1059692.86,21
+10755,228291.289,318051.8671,1068098.928,21
+10756,228748.5718,53503.30933,1098993.443,21
+10757,227786.0293,53580.33169,1086539.722,21
+10758,228024.1306,53660.46934,1139334.183,21
+10759,33825.75354,1029953.822,1091373.224,21
+10760,33885.69523,234480.137,1091354.245,21
+10761,551739.0821,114296.6927,1093117.099,21
+10762,210655.3429,435013.86,1142116.908,21
+10763,159994.0994,310821.21,1092170.165,21
+10764,259958.2328,743292.4942,1093529.648,21
+10765,224800.8944,322565.5203,1321778.176,21
+10766,225750.2339,322981.4666,1079846.568,21
+10767,225574.8276,323426.3813,1084294.867,21
+10768,225148.1437,323941.7061,1082618.995,21
+10769,224758.9642,324488.2052,1084160.111,21
+10770,224299.2587,324354.0154,1327278.276,21
+10771,224234.3671,325254.2719,1069851.836,21
+10772,223019.0532,272355.8679,1075412.264,21
+10773,222923.4371,272869.4097,1073840.439,21
+10774,222694.3435,823591.4987,378862.3245,21
+10775,221944.4155,315068.0973,253952.6058,21
+10776,221810.4169,331711.784,292086.3862,21
+10777,188544.2878,330083.2009,276072.4347,21
+10778,188387.0599,334187.943,270424.2304,21
+10779,255885.7256,332886.1752,265855.7439,21
+10780,213298.7942,333318.8125,261592.6447,21
+10781,220244.4132,335328.7699,753818.7074,21
+10782,215361.5049,335800.6001,145680.5021,21
+10783,220981.8228,337018.9139,0,21
+10784,216751.8592,760997.7292,0,21
+10785,217234.4738,339376.9112,1458448.959,21
+10786,216498.4342,339654.5978,1017554.895,21
+10787,216033.1325,341188.0246,902561.1552,21
+10788,215392.9263,342023.5067,983442.1142,21
+10789,215068.0806,56344.14846,1047818.807,21
+10790,214664.0307,56534.62208,995198.3473,21
+10791,370526.8657,895058.1884,1013273.65,21
+10792,31136.14669,197808.6568,1017904.609,21
+10793,520595.9084,288940.9766,1023973.641,21
+10794,192042.2276,820347.5576,1030610.989,21
+10795,148121.5548,345148.7348,1030989.36,21
+10796,247019.7568,350352.1265,1035720.968,21
+10797,210416.5696,352720.0466,1715616.419,21
+10798,211966.5479,353656.4918,1079552.794,21
+10799,212131.9483,355086.4599,1049334.048,21
+10800,211229.1402,355777.5293,1051336.146,21
+10801,211906.2844,356288.2891,1051956.77,21
+10802,212091.9216,356347.9788,1052520.251,21
+10803,212300.9054,357042.0596,1051971.664,21
+10804,212942.6119,722054.0298,1052975.571,21
+10805,212874.575,299770.433,1051871.325,21
+10806,213272.9749,427626.7105,1052136.73,21
+10807,214000.3799,352095.5152,1051609.862,21
+10808,213979.0558,359297.9061,1051087.04,21
+10809,183876.6152,356285.7879,1051725.876,21
+10810,184128.8753,361674.8608,1050062.28,21
+10811,252931.3468,359006.8338,1048572.463,21
+10812,209390.6112,359783.7139,1048253.131,21
+10813,216795.4314,359556.2785,1744225.731,21
+10814,210687.3214,783756.8149,1083351.759,21
+10815,221094.37,361136.9076,181809.764,21
+10816,216877.1316,361730.0662,0,21
+10817,217578.6383,362208.9918,0,21
+10818,218316.7519,362058.9181,0,21
+10819,219253.7258,363159.8084,0,21
+10820,219940.6465,362640.7386,449447.7657,21
+10821,220262.5404,59151.30326,277610.7655,21
+10822,220740.5469,58892.92912,1263634.028,21
+10823,32451.20962,956188.5551,284218.863,21
+10824,32719.70171,640621.6663,267968.7944,21
+10825,540647.8153,293156.7644,261891.3824,21
+10826,200215.7438,421500.7864,254485.4394,21
+10827,156425.4524,360037.3604,177357.6737,21
+10828,259665.9485,366184.2775,341089.5907,21
+10829,222156.5879,367083.7415,235772.7761,21
+10830,225218.1452,367076.0184,239954.425,21
+10831,225357.6014,367288.8276,1425049.897,21
+10832,225817.1334,368132.1781,794614.0105,21
+10833,226317.3878,367672.3385,818960.8042,21
+10834,226458.4244,791637.732,861673.0038,21
+10835,227015.1089,391298.2912,933420.4385,21
+10836,227160.0045,309211.2749,890598.7401,21
+10837,227410.1592,312040.9108,902876.9465,21
+10838,228170.6385,447537.4353,910111.7395,21
+10839,227681.5329,372303.2452,914195.0221,21
+10840,228212.6993,375135.2353,918579.4896,21
+10841,193995.5364,374712.5124,921670.7765,21
+10842,194856.1557,378735.6671,925303.3241,21
+10843,267731.4808,377375.2551,928768.2585,21
+10844,223771.6302,799744.6731,930615.1317,21
+10845,231069.1423,378155.4323,933462.1707,21
+10846,223633.3327,376411.7432,935460.5592,21
+10847,234342.6963,377357.0054,937626.782,21
+10848,230604.771,377184.1914,938708.7787,21
+10849,231074.5191,377704.3757,940457.8683,21
+10850,231402.3027,377991.2656,830063.8047,21
+10851,571167.6347,378561.7858,830438.2733,21
+10852,232290.2718,378345.705,830784.0904,21
+10853,232596.4126,66753.93697,831330.5966,21
+10854,232982.1617,489883.9909,1080319.784,21
+10855,34346.98552,989504.8949,920728.6424,21
+10856,34565.29978,229952.349,922877.7675,21
+10857,567109.3692,302768.279,951845.8914,21
+10858,211630.1508,439344.7567,940361.9274,21
+10859,172131.7123,374290.4731,939958.0956,21
+10860,267436.1325,381102.1557,940117.5308,21
+10861,234337.8429,378723.8642,294023.0075,21
+10862,234999.5728,377023.4486,288588.2447,21
+10863,234837.9822,373152.9107,283299.213,21
+10864,234964.9133,795466.8074,278322.165,21
+10865,234397.8223,361925.7415,273323.8433,21
+10866,233933.7282,360372.7683,268625.1409,21
+10867,233898.9108,357934.549,263951.5992,21
+10868,233259.6422,296621.0591,259700.117,21
+10869,233728.2194,294889.5178,256439.4215,21
+10870,232802.7153,424459.4059,251586.5721,21
+10871,233254.2742,340355.5455,247700.7809,21
+10872,232970.218,344316.07,243786.8602,21
+10873,199290.0252,342642.3874,239952.7155,21
+10874,199912.8277,343091.8909,236245.0782,21
+10875,267361.6283,361124.3648,232668.4976,21
+10876,229223.9032,335911.8451,229053.9147,21
+10877,233470.6311,335505.7446,225865.168,21
+10878,225253.9289,337477.3554,222422.4243,21
+10879,236731.2887,334691.0084,219355.1796,21
+10880,231360.0639,331037.4776,216162.7755,21
+10881,231563.8743,328738.8048,1307927.395,21
+10882,231802.7976,326432.2398,706914.9529,21
+10883,231713.6714,325113.6164,732534.6038,21
+10884,231177.7913,322796.8181,675235.6862,21
+10885,231433.4485,59381.6275,753567.4488,21
+10886,231330.3419,59003.46797,713047.4312,21
+10887,32326.43978,58723.72426,725672.3962,21
+10888,32304.18993,1007836.114,963468.2675,21
+10889,565727.928,200864.4979,823672.562,21
+10890,209351.159,106907.9584,827263.5007,21
+10891,163380.8923,426369.1992,867064.6051,21
+10892,265724.2761,284484.3903,860961.3364,21
+10893,228945.9201,296850.8127,867429.4426,21
+10894,230279.4305,296471.1532,873601.4376,21
+10895,230337.7455,293643.5963,880131.7177,21
+10896,230211.0797,290624.495,885289.3583,21
+10897,229308.0622,288498.901,1572204.492,21
+10898,229933.4412,285641.183,933936.5251,21
+10899,229257.3603,282553.4439,904719.4624,21
+10900,228983.7771,230888.0819,908922.6753,21
+10901,229053.1858,228286.7944,913207.9945,21
+10902,228879.8326,351997.4007,916716.6039,21
+10903,228740.0794,252231.5263,920848.6868,21
+10904,229039.8887,262784.6974,923987.169,21
+10905,195908.4708,269471.9942,927833.4817,21
+10906,195796.1343,259872.1361,930491.6618,21
+10907,263754.8009,258023.675,934529.2144,21
+10908,223555.6706,255222.7039,937082.8101,21
+10909,229867.956,252630.4291,940171.3967,21
+10910,220953.7563,250592.8231,942170.6885,21
+10911,231224.4741,246983.5315,300630.909,21
+10912,567119.6301,245026.9959,294608.8468,21
+10913,227959.9385,241550.4633,290415.6823,21
+10914,228679.0503,239926.3863,284507.3745,21
+10915,228184.2008,236332.3183,276501.8789,21
+10916,228646.1546,233834.1389,198612.11,21
+10917,228073.0893,231258.0556,377189.7498,21
+10918,228468.1614,44732.38446,0,21
+10919,34054.51702,44366.93865,0,21
+10920,34195.62443,44000.2394,1447492.298,21
+10921,550133.4617,44247.98261,904120.4097,21
+10922,211422.1108,786897.9569,777156.3966,21
+10923,157547.5351,69490.41703,1549609.833,21
+10924,262270.3149,101337.5682,957453.2256,21
+10925,224940.1366,330960.0733,878142.9843,21
+10926,225820.6121,216111.1638,893108.1426,21
+10927,225879.4369,235733.9475,897130.2086,21
+10928,225486.7392,238157.5721,900771.8192,21
+10929,225292.6068,239026.5731,903804.4707,21
+10930,224562.9636,241702.2987,906051.6245,21
+10931,224885.9339,243336.978,909788.333,21
+10932,225155.3106,198305.4069,910994.7592,21
+10933,224334.0212,199909.4379,914190.2911,21
+10934,224163.489,319584.0958,916152.2194,21
+10935,224189.5144,227063.287,917619.6527,21
+10936,223679.8595,247792.3173,919402.3182,21
+10937,188025.7384,258991.5204,921132.2527,21
+10938,187644.5249,255081.7689,922780.9224,21
+10939,269946.0926,257600.4945,924264.2245,21
+10940,212362.4328,259050.5157,925701.3158,21
+10941,222297.9534,261365.1122,926274.7322,21
+10942,218912.647,262623.632,927514.603,21
+10943,227777.541,264410.8623,928294.8236,21
+10944,221779.1598,266271.6506,928534.7473,21
+10945,223213.1744,268180.9893,929837.4431,21
+10946,222565.0415,269822.2049,929587.4888,21
+10947,222923.0461,272837.55,930239.6206,21
+10948,223016.4143,274764.1028,930860.3976,21
+10949,223353.8786,275700.5768,930418.1961,21
+10950,223351.4936,278349.5427,311939.407,21
+10951,37406.81824,280032.877,0,21
+10952,37392.54376,50815.49052,0,21
+10953,540898.4471,50877.03062,0,21
+10954,191388.256,51031.28396,437873.1186,21
+10955,161963.0676,904304.1663,276777.8235,21
+10956,271406.233,140641.1293,279037.606,21
+10957,226656.1643,148302.3192,300228.3412,21
+10958,231711.2649,391051.2874,279830.226,21
+10959,232437.3679,276963.7987,276721.1819,21
+10960,232277.5081,294250.585,2192907.046,21
+10961,233078.3976,296156.1815,798770.7301,21
+10962,233005.6326,298435.6872,778125.1877,21
+10963,233032.0546,300074.7782,837921.0399,21
+10964,233850.7342,267222.7971,890980.0671,21
+10965,233572.5664,251397.0593,842717.0557,21
+10966,234026.0117,386277.8187,858350.6134,21
+10967,233823.9072,292902.5415,861177.4566,21
+10968,234383.9101,311619.0478,864007.1016,21
+10969,535834.6356,319444.8323,866147.2262,21
+10970,196983.3382,317760.202,868416.2971,21
+10971,286229.7847,319528.3103,871556.4916,21
+10972,222066.4451,321388.8561,873470.7235,21
+10973,229719.5071,322886.4295,874962.3211,21
+10974,238498.4296,325347.491,877047.6776,21
+10975,234512.1498,326377.735,878406.1283,21
+10976,235017.608,328636.2216,879438.9331,21
+10977,234750.9356,331214.9473,1963374.246,21
+10978,234942.4997,332885.0094,942906.5652,21
+10979,234814.385,335553.2449,860776.9032,21
+10980,234640.8314,336611.0092,862625.4115,21
+10981,236937.3791,334836.9037,866083.8907,21
+10982,238722.4476,334344.0634,869759.8836,21
+10983,38573.91628,332195.6598,873727.1681,21
+10984,38727.75466,329357.7654,772055.3277,21
+10985,591109.2184,61564.84145,774719.9744,21
+10986,183166.3451,61080.09974,777496.6943,21
+10987,199468.7019,852218.677,1738812.845,21
+10988,282001.9266,137989.675,902286.2546,21
+10989,250233.2094,291870.6155,877921.8934,21
+10990,254224.7918,361423.6189,451068.025,21
+10991,255805.7064,314114.785,271759.9106,21
+10992,257843.6629,318666.0325,297718.6531,21
+10993,260213.2371,317063.6315,289814.7659,21
+10994,261258.9208,310623.4351,283545.8928,21
+10995,263486.3163,308096.7128,278096.1275,21
+10996,265199.8201,253016.7215,272823.7392,21
+10997,267075.8105,252273.8707,267877.723,21
+10998,268645.6745,385518.0549,263026.7494,21
+10999,270614.7915,282299.056,1449262.875,21
+11000,272904.6677,297876.7393,731474.1126,21
+11001,231008.1423,303065.4237,745624.7331,21
+11002,233851.8442,298813.5593,825959.5635,21
+11003,324537.1363,296224.0194,859570.1865,21
+11004,274204.482,295386.7709,825065.2129,21
+11005,281424.1632,293607.8214,842391.5818,21
+11006,279630.4215,292228.4049,848134.3187,21
+11007,284845.3461,291758.1307,1549055.567,21
+11008,285201.7847,309702.0122,898614.6626,21
+11009,286134.9923,289733.6331,867448.8877,21
+11010,288525.5866,289166.5911,872436.8321,21
+11011,289958.8397,290641.5481,877403.4651,21
+11012,291745.5207,290099.3233,881971.4012,21
+11013,293212.9996,286803.7634,886435.9332,21
+11014,295104.8175,284320.5201,891119.077,21
+11015,45387.21447,283120.6623,894793.5583,21
+11016,45710.69698,281630.6277,899655.2827,21
+11017,761373.9883,55514.59334,795075.8606,21
+11018,223241.2584,55412.78463,798404.7162,21
+11019,244928.2587,55082.82138,801467.3693,21
+11020,343652.3382,866539.1108,1055422.545,21
+11021,305634.3687,122386.9684,894860.9142,21
+11022,309494.1113,140991.6167,899340.4992,21
+11023,311065.5699,365878.5738,936237.0937,21
+11024,313121.9243,252663.7796,920931.0955,21
+11025,653558.2824,267138.2603,926840.0428,21
+11026,316038.6745,265764.1832,930009.6868,21
+11027,318042.9732,263759.4548,1668618.495,21
+11028,319417.1621,213046.7831,977347.8871,21
+11029,320925.5607,212055.4746,179132.4292,21
+11030,322589.6691,337359.7453,1545683.114,21
+11031,324533.1546,232486.9934,271663.3018,21
+11032,325966.9246,250365.9465,295299.7796,21
+11033,278274.1327,260067.1868,288631.0414,21
+11034,280103.6156,251275.3214,282641.7881,21
+11035,370917.1594,250898.172,1635469.716,21
+11036,346198.4077,248496.1978,733639.4444,21
+11037,328587.2384,247371.6059,780697.3326,21
+11038,338216.4293,241366.7819,942279.1155,21
+11039,337494.2792,238841.4866,881930.3702,21
+11040,339795.1173,236722.2931,885605.7595,21
+11041,339804.9652,236472.8139,897827.9558,21
+11042,339530.6855,236523.9999,900338.7386,21
+11043,340537.7577,236341.8144,905699.1279,21
+11044,340289.6271,236671.1828,910504.9348,21
+11045,340932.3915,236449.797,914811.2666,21
+11046,341373.9943,236501.6499,919641.3515,21
+11047,51293.59355,236782.2778,1641710.596,21
+11048,51299.60776,236471.663,968147.6521,21
+11049,851104.4992,236874.7322,934057.6072,21
+11050,247728.0882,46833.09075,846442.4658,21
+11051,337068.2357,46803.20012,826991.8185,21
+11052,347131.2513,46871.94127,829982.5571,21
+11053,352170.7516,733294.6378,1099432.13,21
+11054,343831.8901,49552.70363,926160.1381,21
+11055,344021.6664,179583.8995,928646.05,21
+11056,344953.8576,297373.0494,968204.7315,21
+11057,344194.5441,227028.8094,951357.2669,21
+11058,345894.0404,237302.1581,956811.377,21
+11059,344977.2983,237434.5964,959635.7026,21
+11060,345724.9114,191105.3576,961589.9028,21
+11061,346180.5017,190845.3551,966314.6289,21
+11062,346316.9905,312766.5349,1020789.745,21
+11063,346526.7353,209950.7747,966391.9712,21
+11064,347384.363,235563.497,971527.164,21
+11065,294881.9732,242874.204,296262.8208,21
+11066,295634.0957,237382.7649,325376.4937,21
+11067,386055.9337,237770.8554,315744.3963,21
+11068,707184.6254,238394.3387,309293.1906,21
+11069,342006.6078,237671.6358,303489.9779,21
+11070,353447.7816,238395.7072,2530841.822,21
+11071,347690.4831,237872.0859,797857.697,21
+11072,351376.3486,238555.3946,816979.3247,21
+11073,349803.6747,237498.944,1016564.403,21
+11074,350345.8181,238837.8621,919719.7011,21
+11075,350299.2465,237934.7373,933879.4668,21
+11076,350477.7388,238188.228,939407.6177,21
+11077,350672.1317,238641.0997,944606.8697,21
+11078,351004.4044,238120.0272,948341.0652,21
+11079,52990.26123,238689.3109,952162.692,21
+11080,53129.42592,238383.2867,956617.7568,21
+11081,855942.0538,238529.5989,959364.224,21
+11082,284737.6447,238456.2895,963598.8551,21
+11083,332600.1364,47208.62207,1948761.345,21
+11084,358353.2647,47093.33853,834792.8375,21
+11085,362924.6513,47222.41624,837033.439,21
+11086,354151.3653,740451.6176,1106222.317,21
+11087,354525.7741,52818.4083,939553.2215,21
+11088,354020.2026,177390.2121,942090.4903,21
+11089,354833.4975,301266.797,1703212.695,21
+11090,354297.6508,228098.5935,1005875.365,21
+11091,355050.9155,238844.7386,969779.1328,21
+11092,358300.8187,191924.2075,973366.3644,21
+11093,358973.3056,192136.6227,976661.9293,21
+11094,359442.495,314597.7484,980958.3371,21
+11095,359654.2411,211783.1816,984753.7886,21
+11096,359354.6039,237012.2175,987008.47,21
+11097,306052.7582,244169.3572,989497.5932,21
+11098,306086.7453,239200.1414,992165.8595,21
+11099,398689.9347,239594.4773,994209.9784,21
+11100,380875.2757,239698.253,333758.7043,21
+11101,355965.1573,242050.007,327197.0105,21
+11102,365934.5081,243484.5327,320876.7717,21
+11103,361143.3047,245425.4757,314890.9651,21
+11104,364493.6193,246341.3281,308604.0176,21
+11105,363871.547,247296.8715,1981183.144,21
+11106,364015.6565,249270.7931,771633.6777,21
+11107,364839.0551,250527.3398,850801.2916,21
+11108,365240.8974,251461.4355,1726584.502,21
+11109,365872.9129,253142.0377,1000250.23,21
+11110,366280.672,254305.2462,962122.9696,21
+11111,394844.3757,255970.4265,972386.3363,21
+11112,55624.56267,256551.0263,977894.0662,21
+11113,868914.9056,258340.1739,983308.0158,21
+11114,331990.0963,259525.5437,989408.0028,21
+11115,344662.2104,261046.6852,993892.1076,21
+11116,371371.6886,49858.41001,878100.5808,21
+11117,382755.9649,49979.55911,882356.6418,21
+11118,371544.0492,50259.74519,886200.0755,21
+11119,370874.8086,828022.2184,1167953.637,21
+11120,372314.3094,102943.9428,1006409.707,21
+11121,372346.5498,165250.6038,1001499.565,21
+11122,372958.4241,351866.7929,1035035.293,21
+11123,373345.0213,257657.8054,1026906.228,21
+11124,373581.3135,221493.6001,1030561.387,21
+11125,374511.266,223132.6402,1041781.838,21
+11126,374620.3228,359027.1375,1042536.282,21
+11127,375155.9353,250802.5068,1789075.18,21
+11128,375686.3238,272899.4092,1093810.08,21
+11129,319179.1053,286375.2682,1057066.135,21
+11130,319673.2155,280687.2914,1060907.903,21
+11131,417025.8117,283022.2014,1063980.167,21
+11132,397693.1199,283546.2393,1066758.372,21
+11133,373795.8176,285494.2732,1069812.623,21
+11134,383947.7787,304397.6196,1072353.31,21
+11135,376591.6593,287784.6959,348119.8371,21
+11136,381296.9453,289250.7626,1452342.825,21
+11137,380270.8031,295059.9171,321308.4216,21
+11138,380433.7797,295773.4156,315236.6532,21
+11139,380991.1871,296156.2051,2086798.351,21
+11140,381191.1382,297477.7312,813956.1441,21
+11141,381368.5171,298872.2656,897485.2951,21
+11142,383063.0063,300523.3756,1136032.419,21
+11143,58219.26924,300907.5857,1019004.122,21
+11144,58172.66347,303137.6701,1039389.711,21
+11145,871650.9594,303301.1722,1047074.112,21
+11146,378343.7341,305200.4953,1768476.051,21
+11147,366920.7937,306713.7601,1100755.498,21
+11148,376691.7045,307189.0946,1069103.037,21
+11149,402639.3794,60069.42461,942552.0565,21
+11150,385879.9413,60035.07718,947150.8705,21
+11151,386561.6569,60476.05182,950878.9014,21
+11152,386687.5827,987800.1159,1247754.215,21
+11153,387587.7012,179519.6085,1097669.073,21
+11154,726565.3665,139347.7201,1063389.96,21
+11155,388255.3877,434174.0808,1114184.923,21
+11156,388550.6311,242658.7305,1105149.888,21
+11157,388658.4565,262632.7108,1109427.942,21
+11158,389647.5655,407789.5642,1112013.848,21
+11159,389619.7296,298432.6704,1118039.218,21
+11160,389983.9337,321327.6539,1122751.491,21
+11161,331871.0163,327850.6394,1128677.281,21
+11162,330879.1424,324383.9615,1130919.556,21
+11163,433815.7025,322616.3638,1133166.393,21
+11164,407598.9978,316071.6003,1875230.593,21
+11165,385033.1634,314607.5595,1179503.845,21
+11166,390959.4221,313937.2185,1140515.663,21
+11167,384220.7808,312756.6123,1141963.188,21
+11168,385196.8193,311616.0289,1143950.05,21
+11169,383706.0887,310625.1591,361800.1269,21
+11170,381612.3682,309633.1746,351994.7123,21
+11171,381005.2097,308162.9656,344546.9301,21
+11172,379647.0706,307625.5796,337832.7355,21
+11173,378499.6942,306466.9385,2452924.695,21
+11174,377144.0338,326151.025,894134.6297,21
+11175,58610.23269,305760.4511,917517.1143,21
+11176,58363.3192,304508.1484,1201872.124,21
+11177,871714.6298,308597.681,1079482.959,21
+11178,362980.454,306720.4716,1090103.53,21
+11179,327463.5883,304653.5353,1098238.164,21
+11180,378370.3543,304511.4476,1103014.009,21
+11181,380901.1356,302886.6051,1107576.74,21
+11182,368085.1939,60080.98209,971244.5593,21
+11183,367085.7663,59809.30918,1698290.984,21
+11184,365580.1682,59876.61174,1302106.594,21
+11185,364408.1913,948022.2567,1096534.411,21
+11186,363457.7653,158320.4803,1118446.017,21
+11187,361465.8373,134517.0044,1137884.999,21
+11188,360859.9801,353809.2284,1130081.063,21
+11189,359938.0586,223869.6348,1134802.831,21
+11190,357755.5798,384225.9453,1137151.094,21
+11191,357184.1944,267496.1547,2243158.049,21
+11192,355581.8155,286020.5056,1116294.021,21
+11193,298165.0834,297246.4688,1120881.792,21
+11194,296602.8554,288855.6927,1124291.312,21
+11195,403577.1683,288252.969,1127456.194,21
+11196,364120.9896,287076.0303,1131415.82,21
+11197,346148.6087,286373.8242,1134204.398,21
+11198,688683.1126,284165.7352,1137426.906,21
+11199,346915.164,284198.4571,1140443.986,21
+11200,346885.5888,282218.5082,1142511.205,21
+11201,344569.1446,281227.8682,1145670.09,21
+11202,343125.4067,280426.8447,1148138.462,21
+11203,341507.5402,278682.753,355445.0866,21
+11204,340795.1464,272821.3346,349826.6437,21
+11205,338956.261,271770.3497,342971.549,21
+11206,337930.6859,270870.6464,337120.5914,21
+11207,54678.49774,268884.7045,2483709.596,21
+11208,54497.53464,268646.5108,906888.7577,21
+11209,829115.2506,267042.9423,934151.4009,21
+11210,300819.7687,265797.6841,1193922.904,21
+11211,232077.4053,264175.0359,1091309.186,21
+11212,380433.8558,263677.775,1095679.982,21
+11213,326940.4637,262313.2163,1105707.418,21
+11214,327714.6546,260565.0523,967172.4931,21
+11215,326078.95,50980.04473,971003.0965,21
+11216,325035.9386,50531.45267,1257844.461,21
+11217,323955.3783,50620.36113,1104045.898,21
+11218,322015.3372,804240.0977,1116931.17,21
+11219,320341.2098,85049.57923,1137273.337,21
+11220,319552.131,104473.6048,1131837.926,21
+11221,319984.9881,282064.9812,1136355.479,21
+11222,319835.5576,321276.7649,1138448.486,21
+11223,320694.738,222385.1831,1141649.444,21
+11224,320405.3472,249629.792,1144579.434,21
+11225,268128.9614,257678.4074,1147281.655,21
+11226,268471.7753,251896.2175,1149221.661,21
+11227,378133.299,252543.5542,1151514.303,21
+11228,331251.4186,252221.3862,1153830.324,21
+11229,318591.0614,252411.2894,1155766.524,21
+11230,321833.0796,252836.3852,1157364.809,21
+11231,326181.7331,252216.511,1159352.526,21
+11232,324279.4886,252388.9189,1161143.993,21
+11233,324417.4386,252746.4912,1161853.799,21
+11234,324673.7879,252457.8652,1164470.84,21
+11235,325211.7793,252708.663,1165096.261,21
+11236,325536.9417,252165.7231,1166450.481,21
+11237,325941.1144,252892.5931,365486.7834,21
+11238,325883.3269,252354.7083,359639.5931,21
+11239,54119.20751,252611.7012,352355.2715,21
+11240,54095.39942,253143.3708,346169.1961,21
+11241,811461.1172,252137.445,2522512.153,21
+11242,294906.2293,252910.5715,922495.9859,21
+11243,562091.5245,252902.0793,942028.8948,21
+11244,383532.0522,252219.4768,1203871.618,21
+11245,324958.6706,252886.0262,1102045.211,21
+11246,329525.0892,252929.5331,959897.1802,21
+11247,329831.5964,252629.6587,2023249.871,21
+11248,329634.3286,50422.75227,1226844.205,21
+11249,330417.7737,50009.57326,1086946.884,21
+11250,330927.566,50151.1874,1090421.526,21
+11251,330978.6423,787893.5623,1115429.328,21
+11252,331191.7657,26528.73162,1111538.527,21
+11253,332052.7177,118604.756,1115688.956,21
+11254,331893.6817,411058.5142,1119848.844,21
+11255,332493.6079,209884.7185,1124249.825,21
+11256,332839.887,251044.4915,1127252.169,21
+11257,278029.9062,259698.6986,1131648.408,21
+11258,278402.1988,253134.9725,1133626.151,21
+11259,390679.8177,254432.0271,1137586.106,21
+11260,343656.7778,254043.2107,1140219.875,21
+11261,332165.6898,253785.0543,1143012.994,21
+11262,333494.7065,254473.3764,1145523.22,21
+11263,337740.2083,254137.8644,1147797.023,21
+11264,336380.235,253914.5131,1149586.818,21
+11265,336032.3938,254084.4605,1152102.98,21
+11266,336758.2533,254217.3534,1153474.396,21
+11267,336873.1104,254128.263,1155647.269,21
+11268,336979.5672,253873.565,1157212.596,21
+11269,337872.7476,254679.2153,1158570.29,21
+11270,337781.8075,254127.8604,1160420.077,21
+11271,55992.50902,254270.1909,365765.3902,21
+11272,55931.42467,254049.1767,359092.1602,21
+11273,827023.7233,254666.9307,352430.8925,21
+11274,318031.1619,253682.9616,345387.1849,21
+11275,236499.2503,254741.3118,2503156.216,21
+11276,390776.364,254174.9417,909126.4377,21
+11277,339140.449,254679.0817,944410.8505,21
+11278,340508.3688,254033.0119,1052424.378,21
+11279,341378.2155,254528.0788,951551.46,21
+11280,341621.4189,254534.8228,1237148.398,21
+11281,341605.3369,50725.34844,1095154.093,21
+11282,340873.1115,50836.43606,1097426.471,21
+11283,341138.6265,51157.58124,1123656.513,21
+11284,340868.7427,762130.7283,1118471.961,21
+11285,340368.6764,41493.06015,1121694.706,21
+11286,340864.4403,260531.6361,1125601.495,21
+11287,339749.9379,314974.0086,1129164.859,21
+11288,679646.3248,254218.6724,1131637.207,21
+11289,283048.7726,277326.0081,1135633.33,21
+11290,283946.978,272932.332,1138027.009,21
+11291,397466.1041,275832.7724,1140141.109,21
+11292,347897.4544,294971.96,1142846.434,21
+11293,337818.15,278919.4268,1145001.851,21
+11294,337074.8353,281769.4882,1882362.504,21
+11295,341016.0702,288020.1693,1190667.428,21
+11296,339005.8735,289368.7034,1152024.993,21
+11297,338497.654,289699.7439,1154237.278,21
+11298,338158.187,291981.2666,1155796.822,21
+11299,338177.6128,293742.3892,1156362.731,21
+11300,337613.2368,295183.3397,1158298.24,21
+11301,337692.2265,296906.2301,1159860.557,21
+11302,337348.2748,298571.3309,1159993.153,21
+11303,56353.77222,300057.6808,2284959.999,21
+11304,56296.10805,301931.6059,1134786.369,21
+11305,823136.7911,303641.6003,357122.2059,21
+11306,319507.1448,304839.6618,350040.624,21
+11307,225748.1926,307148.225,343401.1199,21
+11308,390812.9719,308021.6974,336700.0812,21
+11309,333987.869,309972.1052,2439078.205,21
+11310,335714.1139,313233.0257,743453.8844,21
+11311,336109.101,314263.6201,792307.6705,21
+11312,335980.4275,316190.5357,1351065.153,21
+11313,335521.7759,317780.1931,1060621.5,21
+11314,334986.8885,62636.34231,1068273.15,21
+11315,335616.2734,62981.37259,1096901.499,21
+11316,334378.0296,5902.057673,1093382.206,21
+11317,334761.2036,960691.5341,1098391.313,21
+11318,334003.3952,295975.2601,1102720.035,21
+11319,334481.8834,112293.0432,1107497.932,21
+11320,333323.7171,450464.3354,1829235.62,21
+11321,278208.77,314749.2918,1155650.184,21
+11322,276754.6916,326864.5914,1122245.323,21
+11323,394132.7256,328390.63,1124673.46,21
+11324,339854.9513,330409.607,1127772.789,21
+11325,331845.7628,331343.3978,1130936.087,21
+11326,329840.9485,333378.7842,1133384.795,21
+11327,335053.7367,334353.4876,1136171.612,21
+11328,332615.6102,336222.1397,1137946.378,21
+11329,331739.8638,337823.1977,1140621.127,21
+11330,331869.1459,362764.4656,1142699.878,21
+11331,331436.4615,341513.433,1143798.076,21
+11332,331385.783,344382.3266,1146269.315,21
+11333,670376.2139,351491.5547,1148165.415,21
+11334,330757.6462,351658.2188,1148817,21
+11335,56081.54499,353953.5707,1150725.352,21
+11336,55936.0053,354689.0532,1152803.7,21
+11337,810674.1632,356534.7378,1154206.333,21
+11338,308219.8608,358860.3111,1202171.234,21
+11339,217677.412,358957.9127,285036.1885,21
+11340,385929.0305,362210.4864,490444.8176,21
+11341,324650.0017,359133.6188,313453.7212,21
+11342,328481.7149,358612.1924,0,21
+11343,329201.4554,356560.9577,2348029.837,21
+11344,329404.7609,354865.2526,1033024.006,21
+11345,329431.9588,353347.4759,931835.7505,21
+11346,330144.3,351543.1021,1893661.178,21
+11347,330321.5686,67384.44231,1139184.927,21
+11348,330470.4944,6872.923425,1099597.815,21
+11349,331514.3812,842099.2157,1107186.171,21
+11350,330799.0824,258929.439,1110509.041,21
+11351,331838.1279,277439.0032,1114477.685,21
+11352,332068.5553,387255.4932,1118111.755,21
+11353,276117.8933,337141.9395,1121018.718,21
+11354,276081.8781,340479.4107,1123855.513,21
+11355,394932.6576,337282.7047,1126767.152,21
+11356,340295.6405,336312.2283,1128806.344,21
+11357,332169.3616,334564.45,1132275.788,21
+11358,332024.4961,332997.7102,1133902.686,21
+11359,337068.8565,331448.4082,1135866.747,21
+11360,335329.9453,323239.4581,1138016.22,21
+11361,335124.2759,321743.6942,1140590.37,21
+11362,335767.8663,320268.019,1140974.496,21
+11363,335977.9192,320277.546,1145048.156,21
+11364,336275.5611,317951.7984,1192395.972,21
+11365,336874.9551,316901.4322,1143147.673,21
+11366,336714.569,315118.7828,1144699.8,21
+11367,57155.73366,313502.4171,1145796.179,21
+11368,57125.14145,311830.127,1147289.699,21
+11369,824094.3305,332957.2743,1148794.787,21
+11370,322330.6202,309662.9713,1148935.874,21
+11371,228412.2701,307558.4652,1150982.816,21
+11372,393237.5437,311523.7536,1895126.789,21
+11373,337220.4557,308677.7989,193017.9449,21
+11374,339484.467,306470.5995,0,21
+11375,340488.2961,305236.0388,0,21
+11376,340767.7845,303804.4721,0,21
+11377,340896.6569,301995.8887,2753627.628,21
+11378,341207.5415,300459.2611,936565.2934,21
+11379,341635.9368,60630.28006,942006.6917,21
+11380,342229.735,5278.820564,1251079.901,21
+11381,342019.5657,5241.893433,1112831.918,21
+11382,342933.8342,1018109.531,1121205.783,21
+11383,342850.9395,121959.3022,1126612.743,21
+11384,343554.2001,131484.1128,1128407.02,21
+11385,285361.5399,402387.6101,1131247.251,21
+11386,286211.0477,268876.2792,1132828.856,21
+11387,406449.0468,285732.1039,1134745.112,21
+11388,351576.9523,283963.6914,1136705.358,21
+11389,345274.3206,283362.0056,1139372.755,21
+11390,343124.8986,280278.9606,1187643.054,21
+11391,348292.6913,279319.3669,1137783.869,21
+11392,346708.0484,277308.8239,1139915.36,21
+11393,347100.9835,275717.8777,1141193.361,21
+11394,346653.7608,273648.9011,1141985.118,21
+11395,347583.7551,272032.3563,1143395.467,21
+11396,347899.8509,270430.186,1145121.003,21
+11397,348021.9864,268868.0566,1145913.684,21
+11398,348865.8055,266355.4378,1889500.331,21
+11399,58766.83448,260297.2066,1189842.455,21
+11400,59029.32581,257460.9427,1149170.602,15.6
+11401,840820.3796,257143.6316,1150629.885,15.6
+11402,342410.0033,257407.6392,1150662.641,15.6
+11403,245476.379,257493.0693,1152542.969,15.6
+11404,399757.1792,257224.7262,1152929.573,15.6
+11405,351691.5138,257168.2178,1154007.869,15.6
+11406,352707.2369,257399.7794,2287516.596,15.6
+11407,353070.6227,257306.2427,0,15.6
+11408,353848.0227,257066.5199,0,15.6
+11409,353670.2565,257414.3982,0,15.6
+11410,355028.8226,257010.4348,524042.2951,15.6
+11411,354878.52,257253.3569,2494657.096,15.6
+11412,355502.7899,3.912685495,849108.8608,15.6
+11413,355871.8348,0,971073.5001,15.6
+11414,356012.5503,138233.5011,1203659.102,15.6
+11415,357123.1917,767068.8435,1086707.347,15.6
+11416,357194.6407,81235.49248,1097676.169,15.6
+11417,297852.0863,174714.4533,1105447.676,15.6
+11418,298029.1221,332045.0057,1108388.853,15.6
+11419,421168.7505,244789.6547,1112529.538,15.6
+11420,366309.9188,257350.2963,1115790.36,15.6
+11421,360945.5504,257813.9427,1119209.983,15.6
+11422,359597.6327,257360.5289,1122352.118,15.6
+11423,700835.2363,257783.4162,1124887.533,15.6
+11424,362730.6642,257611.8524,1128702.952,15.6
+11425,361563.7637,257449.3682,1130025.857,15.6
+11426,362307.6102,257889.2322,1133253.441,15.6
+11427,363060.0931,257180.4269,1135169.552,15.6
+11428,362732.1057,257834.1305,1137100.562,15.6
+11429,364064.3104,257253.3887,1140101.711,15.6
+11430,364207.7059,257759.4816,1141120.301,15.6
+11431,61245.98235,257386.526,1143245.233,15.6
+11432,61187.56869,257905.8948,1144702.145,15.6
+11433,858030.3017,257062.1736,1147141.935,15.6
+11434,368213.2489,258092.7686,1148018.467,15.6
+11435,278523.93,257244.4525,1149530.192,15.6
+11436,401667.4304,257595.1823,1150769.12,15.6
+11437,371492.0816,257638.2696,1152410.942,15.6
+11438,368398.999,257489.5643,1153252.379,15.6
+11439,368912.0829,257578.6706,1154625.982,15.6
+11440,368844.322,257481.2135,1001518.606,15.6
+11441,369655.0225,258008.0124,0,15.6
+11442,369897.4248,257165.9398,0,15.6
+11443,370512.8854,257827.4602,544029.7899,15.6
+11444,371213.2583,206511.5711,387247.6997,15.6
+11445,371446.056,0,2485418.227,15.6
+11446,371803.3687,137845.8741,914366.3881,15.6
+11447,372471.702,18615.32843,965158.6663,15.6
+11448,372829.3185,799984.0295,1212592.969,15.6
+11449,311023.6714,89042.5615,1100360.952,15.6
+11450,311620.5157,167875.1547,1109533.776,15.6
+11451,437080.1243,334311.8477,1116587.837,15.6
+11452,383439.9917,244584.9656,1119668.58,15.6
+11453,377478.9403,258369.4787,1123122.362,15.6
+11454,377735.1705,257836.5127,1126461.62,15.6
+11455,376403.2739,258613.4665,1128730.161,15.6
+11456,378813.3839,257898.5062,1132271.131,15.6
+11457,377679.6421,258442.5785,1134865.966,15.6
+11458,378038.1983,257978.7499,1137173.024,15.6
+11459,378223.8164,258744.5284,1139330.394,15.6
+11460,380690.3492,258097.2626,1141629.668,15.6
+11461,380879.277,262029.1213,2251227.935,15.6
+11462,380384.5522,265108.3231,1120334.794,15.6
+11463,63415.53223,267492.3011,1123820.16,15.6
+11464,63434.91852,270063.9076,1127668.03,15.6
+11465,871251.2992,271742.8774,1130963.291,15.6
+11466,405493.1756,275304.5073,1134425.266,15.6
+11467,305480.404,277032.192,1136632.508,15.6
+11468,404524.6781,279626.8809,1140564.6,15.6
+11469,731189.206,281870.287,1142647.866,15.6
+11470,382933.256,302960.6825,1145602.345,15.6
+11471,383531.4328,286820.0416,1148350.891,15.6
+11472,383368.847,291909.5734,1149982.275,15.6
+11473,384228.0083,296921.126,998445.4999,15.6
+11474,383873.3181,299942.3909,1000221.979,15.6
+11475,384840.4223,300695.7155,521301.111,15.6
+11476,383776.5765,248575.9482,343460.9039,15.6
+11477,385112.3141,250150.2031,342927.1552,15.6
+11478,384874.0957,155264.6775,356220.3061,15.6
+11479,385428.5986,31987.29582,2469706.085,15.6
+11480,385258.3467,58485.00372,886563.0315,15.6
+11481,321765.9765,985788.5021,956074.9068,15.6
+11482,321765.8222,186207.4047,1192048.391,15.6
+11483,449543.2444,153102.278,1092975.671,15.6
+11484,394911.3502,435950.1731,1100838.071,15.6
+11485,391492.2093,308441.7895,1109545.78,15.6
+11486,388888.1995,328132.0042,1114327.052,15.6
+11487,387456.8377,331632.6207,1120105.334,15.6
+11488,389781.5695,333336.4781,1123305.022,15.6
+11489,388202.0379,337486.9917,1128557.498,15.6
+11490,388200.0185,339627.0819,1132909.927,15.6
+11491,388873.031,341815.0752,1135928.521,15.6
+11492,388534.449,344860.9918,1141052.059,15.6
+11493,389185.097,346515.0427,1143345.756,15.6
+11494,388674.8272,349362.8889,1147435.471,15.6
+11495,64839.05195,351826.5108,1149885.871,15.6
+11496,64993.91227,352707.0941,1153927.77,15.6
+11497,877433.138,354820.1499,1155608.743,15.6
+11498,426639.3326,358072.2047,1159457.771,15.6
+11499,314420.0561,359447.2322,1161599.227,15.6
+11500,409855.3644,355033.9859,1163720.195,15.6
+11501,401993.911,357303.5327,1166415.994,15.6
+11502,391764.3954,359866.1499,1168284.432,15.6
+11503,391990.0957,361554.1154,1171154.92,15.6
+11504,391943.1055,364546.1897,1171813.804,15.6
+11505,392258.3439,366783.5645,1018030.296,15.6
+11506,393086.98,394728.8203,1018848.87,15.6
+11507,392728.0966,371405.1583,1336031.407,15.6
+11508,392443.9129,313952.8509,1162345.271,15.6
+11509,393798.2847,322166.1772,361645.3605,15.6
+11510,392822.4249,477150.0029,376160.7773,15.6
+11511,393962.975,55911.55425,358975.6966,15.6
+11512,393592.4347,73895.27591,352633.0614,15.6
+11513,328591.7078,1012699.864,2541170.637,15.6
+11514,328851.2013,237743.7801,943727.4456,15.6
+11515,797502.0445,329357.8465,942825.8946,15.6
+11516,403535.7538,456706.0411,1222967.748,15.6
+11517,400954.1335,396746.2256,1115602.71,15.6
+11518,397858.8884,406130.3562,2164840.721,15.6
+11519,395565.9409,407254.3698,1105636.706,15.6
+11520,398261.8344,412189.2733,1113204.744,15.6
+11521,389199.266,404779.6912,1107460.648,15.6
+11522,388467.9521,404300.0411,1114337.58,15.6
+11523,388485.2632,404157.1047,1119731.002,15.6
+11524,388442.0486,404121.1726,1124641.954,15.6
+11525,388490.0633,403383.3964,1130426.134,15.6
+11526,388270.3366,403800.472,1134610.128,15.6
+11527,64338.77324,402752.9434,1139391.111,15.6
+11528,64490.42577,402748.2145,1143353.068,15.6
+11529,876904.2562,403272.613,1147702.295,15.6
+11530,419175.3133,401621.1397,1151633.787,15.6
+11531,313126.7892,402627.3884,1155520.236,15.6
+11532,407570.6739,401688.8178,1158737.549,15.6
+11533,398338.9122,402262.5724,1161703.943,15.6
+11534,387753.3246,400901.3863,1166035.666,15.6
+11535,388263.0629,401223.4139,1167634.442,15.6
+11536,387818.4174,392552.1081,1172027.833,15.6
+11537,388394.2073,391802.2288,1017927.216,15.6
+11538,387838.0306,391998.4775,1021079.265,15.6
+11539,387950.7752,391595.9998,1330629.014,15.6
+11540,387536.9172,325568.7088,1172128.397,15.6
+11541,388214.0474,355790.7711,1165384.276,15.6
+11542,387263.8801,480635.7211,1195198.176,15.6
+11543,388260.5555,58180.36176,370915.7735,15.6
+11544,387288.0652,77328.18657,364777.6323,15.6
+11545,323955.8461,1034535.212,357361.4328,15.6
+11546,323058.7427,246057.8536,350844.5033,15.6
+11547,449868.9627,318147.8092,2566699.39,15.6
+11548,397739.4549,460672.4682,985078.4524,15.6
+11549,392564.2767,391397.0982,927142.4602,15.6
+11550,389957.5093,398673.7175,1244232.339,15.6
+11551,387860.9546,398839.282,1126747.752,15.6
+11552,390003.7443,398483.2831,1130687.754,15.6
+11553,388778.6337,397867.9146,1141160.368,15.6
+11554,727613.8798,398044.7356,1145992.421,15.6
+11555,387845.1675,397658.4313,1151791.237,15.6
+11556,388464.6223,396942.7319,1157334.214,15.6
+11557,388237.0852,396858.7633,1160387.238,15.6
+11558,387455.3679,397188.9816,1166914.445,15.6
+11559,64574.87951,395928.393,1169636.365,15.6
+11560,64698.79055,396374.0563,1174563.63,15.6
+11561,876759.9501,395235.4962,1178260.776,15.6
+11562,418761.3689,396002.5234,1181912.526,15.6
+11563,311969.4829,394864.7271,1916410.451,15.6
+11564,407929.4183,395084.6774,2328855.844,15.6
+11565,398324.6055,394934.8352,1167033.347,15.6
+11566,387996.624,394160.6631,1171220.656,15.6
+11567,387878.5339,394183.4146,1175932.839,15.6
+11568,388254.9907,393711.4041,1179533.358,15.6
+11569,387653.4668,393920.6207,1027245.917,15.6
+11570,388075.4733,393144.3762,1029001.136,15.6
+11571,388059.6948,384325.2959,1341766.567,15.6
+11572,387684.8118,319194.0715,1194243.43,15.6
+11573,387988.1986,319389.47,1174035.718,15.6
+11574,387919.3744,473222.9695,1211061.788,15.6
+11575,387932.772,51404.9661,1201152.401,15.6
+11576,387458.1924,93726.77206,1203066.057,15.6
+11577,323239.003,1006651.283,371664.4116,15.6
+11578,323283.0638,228517.2005,364525.8171,15.6
+11579,450777.5711,322757.8637,357634.1082,15.6
+11580,397430.4492,447734.3137,2509984.595,15.6
+11581,393737.4099,382259.2878,939364.0339,15.6
+11582,394144.6588,387304.1804,1025851.85,15.6
+11583,393461.9132,385562.3233,1264871.197,15.6
+11584,397309.5995,382763.616,1145643.169,15.6
+11585,397342.6512,380752.2873,1164111.819,15.6
+11586,398802.0355,379191.5662,1169183.289,15.6
+11587,400520.5314,376795.4311,1173896.394,15.6
+11588,402785.5681,375024.7816,1178427.574,15.6
+11589,403982.303,373435.1205,1182386.355,15.6
+11590,405987.9462,371548.8605,1185827.355,15.6
+11591,67457.66017,369349.3308,1189395.419,15.6
+11592,67568.68886,367664.9773,1193441.366,15.6
+11593,1219582.782,365998.827,1195602.854,15.6
+11594,473859.6229,363811.8314,1198577.773,15.6
+11595,369571.449,362065.2865,1201754.436,15.6
+11596,412811.532,360533.6209,1204047.459,15.6
+11597,437557.2645,357945.7048,1937846.1,15.6
+11598,421743.8288,356238.0962,1250214.428,15.6
+11599,422542.6183,354938.0495,1212025.961,15.6
+11600,424700.5981,352355.8237,1213484.773,15.6
+11601,426350.2907,350715.5957,1055427.092,15.6
+11602,427915.2792,348521.4238,1055233.1,15.6
+11603,430494.7765,347059.5467,1372948.136,15.6
+11604,431300.8067,285634.1677,1214774.862,15.6
+11605,433699.8017,283327.122,1199502.561,15.6
+11606,435406.2131,429033.4938,1231695.455,15.6
+11607,437130.7457,35040.31597,1219615.776,15.6
+11608,438835.4583,56832.5187,1221238.079,15.6
+11609,369897.912,865127.7948,1222387.551,15.6
+11610,370866.7009,145720.5533,1486094.275,15.6
+11611,502411.5294,292760.1977,353433.0275,15.6
+11612,460822.1585,365714.2574,346330.4749,15.6
+11613,448053.6001,317792.7019,341135.9219,15.6
+11614,459140.6004,344252.8332,2540708.456,15.6
+11615,455342.1442,317918.8785,1048401.344,15.6
+11616,455393.9396,319212.7992,934966.6471,15.6
+11617,456842.7976,321808.1521,1243859.693,15.6
+11618,459721.8459,319146.1096,1376074.845,15.6
+11619,459613.6397,316108.1847,1122014.721,15.6
+11620,462562.3682,314796.0878,1137082.914,15.6
+11621,464083.3312,312674.4857,1177121.199,15.6
+11622,465686.2625,310841.7028,1144196.357,15.6
+11623,75475.23385,308476.4855,1149646.269,15.6
+11624,75695.73833,306859.6636,1156055.579,15.6
+11625,888500.4903,304399.8888,1160562.96,15.6
+11626,583270.0449,302918.1447,1165417.75,15.6
+11627,494125.0359,300668.4218,1170343.196,15.6
+11628,462759.5544,298708.9383,1174303.514,15.6
+11629,484554.8022,296758.9377,1892714.482,15.6
+11630,510138.4479,293780.5234,1223172.762,15.6
+11631,483434.7948,292976.7733,1187827.506,15.6
+11632,826565.0243,290556.3027,1191640.997,15.6
+11633,488614.5436,288357.9466,1036953.526,15.6
+11634,494915.4059,285980.7611,1039472.062,15.6
+11635,494413.3764,283938.3646,1348508.326,15.6
+11636,497239.5712,229458.6113,1185437.768,15.6
+11637,499673.4071,227687.6493,1187675.541,15.6
+11638,500552.4824,367099.7438,1212735.643,15.6
+11639,503319.7087,26030.51829,1204344.794,15.6
+11640,505265.785,52650.41677,1206024.747,15.6
+11641,424445.6708,62454.02107,1211384.707,15.6
+11642,423591.1609,837994.4726,1210724.319,15.6
+11643,555330.3272,103615.1371,1213985.729,15.6
+11644,515804.0298,164054.812,364846.2656,15.6
+11645,496917.2066,349958.6552,877753.341,15.6
+11646,509099.5291,253661.348,195603.7084,15.6
+11647,500031.2122,266895.3756,230276.0219,15.6
+11648,497888.1858,267339.4503,2636608.801,15.6
+11649,497956.1448,267391.2382,1009636.973,15.6
+11650,495878.3056,267327.4084,1013722.329,15.6
+11651,491932.539,267046.8185,1299138.5,15.6
+11652,491829.6783,267148.1345,1182477.383,15.6
+11653,490400.3122,267310.7037,1189277.851,15.6
+11654,489456.767,266691.5625,1197089.306,15.6
+11655,83132.69924,266954.7648,1201575.64,15.6
+11656,83176.71897,267176.7805,2272437.876,15.6
+11657,895226.602,266611.9704,1185846.601,15.6
+11658,605437.6228,267115.4718,1188782.833,15.6
+11659,506981.4949,266400.7596,1194611.129,15.6
+11660,467313.7731,266972.4972,1199908.666,15.6
+11661,476720.6437,266470.7569,1918395.751,15.6
+11662,486352.3201,266822.967,1249874.058,15.6
+11663,473958.7289,266857.9718,1216159.006,15.6
+11664,472106.0673,266448.8032,1220187.767,15.6
+11665,470789.7655,266341.8675,1063664.709,15.6
+11666,469876.7885,266796.3564,1065841.077,15.6
+11667,468141.1738,266708.2716,1381678.187,15.6
+11668,467239.6986,215028.2097,1227883.38,15.6
+11669,465969.2226,215334.7424,1217286.847,15.6
+11670,463865.9005,353519.3935,1249442.286,15.6
+11671,802966.6806,234878.4213,1240404.303,15.6
+11672,461265.0761,49082.42067,1243669.892,15.6
+11673,385719.1753,56748.77616,1248754.184,15.6
+11674,403653.4102,50801.23611,1248868.012,15.6
+11675,518800.4043,830202.3692,1251465.298,15.6
+11676,472535.9478,97332.88733,1255034.678,15.6
+11677,456807.2073,184379.1466,1986694.39,15.6
+11678,472703.7191,349719.5862,203779.2122,15.6
+11679,457656.7362,254143.1136,239436.8773,15.6
+11680,459494.3959,271439.3883,504186.061,15.6
+11681,455012.7711,272496.5978,2580987.564,15.6
+11682,454458.5355,270789.6158,997665.5666,15.6
+11683,453267.1068,271544.9405,1093469.403,15.6
+11684,451070.8672,270804.6261,1327692.428,15.6
+11685,450045.5143,271389.2111,1209243.782,15.6
+11686,448385.1685,271274.2726,1228603.953,15.6
+11687,78085.14191,271095.7227,1232800.773,15.6
+11688,77659.96638,271166.6144,1237754.002,15.6
+11689,890116.0749,271290.1462,1245509.567,15.6
+11690,529318.6933,271053.1644,1246227.636,15.6
+11691,452396.5166,271081.7847,1251648.274,15.6
+11692,396911.2709,270932.7337,1254871.11,15.6
+11693,471230.3005,271215.2199,1981103.401,15.6
+11694,439236.6424,271167.9979,1303275.953,15.6
+11695,437162.9367,270978.1327,1268727.319,15.6
+11696,436086.5662,270988.8528,1271650.755,15.6
+11697,434162.2387,270915.2242,1106451.566,15.6
+11698,432934.8528,271401.84,1110028.272,15.6
+11699,431307.8501,270804.244,1433269.04,15.6
+11700,430112.9276,219631.4137,1292447.315,15.6
+11701,428283.9331,222123.827,1257435.722,15.6
+11702,427425.9633,362559.6882,2392663.295,15.6
+11703,425157.3945,244272.563,1259363.814,15.6
+11704,420196.386,276195.4524,1266314.367,15.6
+11705,348470.7962,62085.57973,1272589.176,15.6
+11706,347352.1924,57048.84647,1275205.292,15.6
+11707,480893.8366,52535.63578,1280653.411,15.6
+11708,424393.555,862495.1321,1284011.509,15.6
+11709,419343.7854,118977.9512,2011588.874,15.6
+11710,755194.8186,167819.8308,1333747.234,15.6
+11711,411801.9806,369859.8431,242718.5497,15.6
+11712,411499.2699,269679.4724,501404.486,15.6
+11713,408577.0477,285334.1864,336080.5332,15.6
+11714,408133.9961,286168.9304,2637323.563,15.6
+11715,405331.0519,288457.9825,1103259.788,15.6
+11716,404612.4126,288913.3375,1059570.567,15.6
+11717,402779.2879,289911.9439,1394281.592,15.6
+11718,401213.6387,292151.8646,1242289.518,15.6
+11719,68474.57453,292358.9105,1265337.147,15.6
+11720,68298.25037,293576.39,1272418.436,15.6
+11721,880546.6203,315352.9519,1280380.911,15.6
+11722,441247.9677,297752.422,1285544.457,15.6
+11723,317278.908,298884.4034,1289904.731,15.6
+11724,411132.7754,305359.0437,1297734.566,15.6
+11725,402770.2308,305320.7816,2014057,15.6
+11726,391006.8421,306675.3841,1348041.551,15.6
+11727,388764.7719,307263.079,1315243.499,15.6
+11728,387971.5622,310159.2866,1319426.674,15.6
+11729,386090.1799,310896.5603,1150618.353,15.6
+11730,386386.1064,313099.2138,1153941.615,15.6
+11731,385213.9153,314017.3172,1483850.193,15.6
+11732,383770.8653,259590.1498,1355304.391,15.6
+11733,382165.3408,260683.5198,1304007.046,15.6
+11734,380669.2564,411617.3739,1358274.881,15.6
+11735,379626.5631,290685.395,1342786.48,15.6
+11736,378239.1677,316066.5753,1345878.141,15.6
+11737,311024.2113,325560.8529,1351610.827,15.6
+11738,310649.9578,62930.29183,1352319.055,15.6
+11739,443810.0388,63417.06538,1356323.514,15.6
+11740,377165.6464,63437.07478,1358320.917,15.6
+11741,377802.9443,1020260.129,2085649.431,15.6
+11742,368338.8632,197126.2569,1405533.12,15.6
+11743,370566.1472,146431.66,1368839.74,15.6
+11744,369234.6721,449942.2898,513682.0511,15.6
+11745,366081.1699,311768.04,345836.8233,15.6
+11746,364602.5919,331739.5742,371589.5582,15.6
+11747,363489.1106,332968.7195,2711553.124,15.6
+11748,361827.2712,334930.4963,1248045.687,15.6
+11749,699466.5477,335174.8972,2080073.044,15.6
+11750,359191.132,336836.0193,1437015.043,15.6
+11751,63045.603,331317.51,1277706.983,15.6
+11752,62888.76877,332397.3978,1302222.939,15.6
+11753,838248.0756,333132.4513,1311862.262,15.6
+11754,363943.5212,335038.8402,1318389.855,15.6
+11755,223969.066,335481.9119,1326316.308,15.6
+11756,409621.1912,337054.6463,1333379.602,15.6
+11757,346731.6036,338059.3961,2039389.941,15.6
+11758,347596.1137,364170.0772,1388554.83,15.6
+11759,346292.9011,340794.2845,1356756.525,15.6
+11760,344933.3821,346886.786,1364171.66,17.8
+11761,2317253.837,2613762.702,4339241.139,17.8
+11762,2308490.866,2520173.465,4080460.512,17.8
+11763,842202.0272,462538.7623,3040642.376,17.8
+11764,756087.1897,710031.2543,2334534.784,17.8
+11765,799401.2853,874869.3778,2717073.786,17.8
+11766,1128047.52,981038.5651,2380840.411,17.8
+11767,842034.0318,892971.1587,2267687.652,17.8
+11768,885443.877,841623.5165,2327137.369,17.8
+11769,761314.6496,871585.4607,2288542.357,17.8
+11770,962550.0499,861432.1292,2295384.247,17.8
+11771,874050.7262,162399.6859,2280113.602,17.8
+11772,871965.9692,161904.5424,2288912.968,17.8
+11773,876892.0458,1298185.997,2972006.427,17.8
+11774,861229.6766,959625.9001,2327806.51,17.8
+11775,865516.1274,748621.5711,2295434.533,17.8
+11776,861087.3938,930656.0494,2290836.824,17.8
+11777,856594.2933,838857.4451,505676.9847,17.8
+11778,856664.0321,831890.2435,531006.1881,17.8
+11779,853345.4436,841655.891,2861702.451,17.8
+11780,851882.4417,832525.0848,2763225.015,17.8
+11781,847793.317,829464.6958,2243794.61,17.8
+11782,850080.1876,826302.0464,2193383.515,17.8
+11783,148123.9465,824357.9812,2216352.734,17.8
+11784,147131.9325,822100.3018,2253175.759,17.8
+11785,1062896.271,818923.953,2231363.252,17.8
+11786,1050014.238,816318.0675,2285537.177,17.8
+11787,773821.751,815874.2364,2232277.235,17.8
+11788,938222.3705,784980.3068,2237329.316,17.8
+11789,1172551.54,782631.9659,2241581.697,17.8
+11790,859190.7512,854695.4842,2242442.845,17.8
+11791,835939.3186,783357.5965,2169553.609,17.8
+11792,829699.6779,810161.3118,1868314.595,17.8
+11793,805855.7877,801610.1208,1871691.102,17.8
+11794,879753.5109,801902.3627,2436388.314,17.8
+11795,825964.4182,679387.6076,2171490.587,17.8
+11796,829170.019,677228.7036,3829282.833,17.8
+11797,835366.3061,910884.4262,2292483.05,17.8
+11798,830534.0542,830811.5753,2225627.28,17.8
+11799,829431.239,755964.7069,2218013.36,17.8
+11800,709098.1807,812071.6191,2233784.23,17.8
+11801,900897.2709,794984.4392,2227969.592,17.8
+11802,809514.0751,794094.8344,2234061.231,17.8
+11803,826990.8998,143858.5311,2237441.53,17.8
+11804,828322.3771,146505.5399,2240146.002,17.8
+11805,826755.1598,1237981.236,2244485.291,17.8
+11806,825353.6372,838755.6929,2244151.996,17.8
+11807,824422.1996,748996.3252,2247745.042,17.8
+11808,822016.7609,838544.6993,2249183.116,17.8
+11809,823172.6378,758028.3063,510789.077,17.8
+11810,821120.4968,793726.2822,504644.5524,17.8
+11811,821192.3846,780390.8657,2868609.108,17.8
+11812,821573.9236,777490.8193,2640110.645,17.8
+11813,818656.8819,777879.0169,2275080.675,17.8
+11814,820918.1183,773967.0042,2038402.707,17.8
+11815,139574.9326,774255.2476,2253495.276,17.8
+11816,139376.0296,772918.5833,2216820.706,17.8
+11817,1013455.529,772134.1725,2214426.098,17.8
+11818,1041429.51,770924.5427,2217908.337,17.8
+11819,752857.3869,769016.6666,2225960.905,17.8
+11820,920801.3862,742021.534,2230971.172,20
+11821,2313093.318,2639941.27,4621895.522,20
+11822,2322194.628,2614048.405,4575830.109,20
+11823,2323808.792,2425496.293,4546475.95,20
+11824,2249155.288,2038021.198,4264278.901,20
+11825,1427058.276,1487661.399,4166828.038,20
+11826,1522707.532,1574509.331,3572598.78,20
+11827,1626830.714,1385213.072,3978084.033,20
+11828,1866435.251,1552571.954,3868308.884,20
+11829,1498732.166,1551406.715,3678311.441,20
+11830,1478469.527,1515047.41,3544048.254,20
+11831,1292277.217,1496380.297,3553779.828,20
+11832,1494622.093,1459681.663,3511865.62,20
+11833,1496438.371,1472543.444,3497374.343,20
+11834,1489329.057,1454338.403,3474433.944,20
+11835,1434786.722,236234.7343,3461055.279,20
+11836,1447091.223,2152179.437,3447579.905,20
+11837,1442286.802,1347644.843,3434408.11,20
+11838,1431148.998,1365355.141,3419853.048,20
+11839,1426905.096,1458976.049,4078962.652,20
+11840,1421941.472,1418977.583,3454579.756,20
+11841,1418144.955,1408475.363,552960.7558,20
+11842,1411673.038,1405632.862,4216887.009,20
+11843,1407652.316,1397509.323,4111607.047,20
+11844,1403936.016,1394939.691,3430275.384,20
+11845,1397425.871,1387535.92,3198103.559,20
+11846,1394825.596,1382923.336,3368495.253,20
+11847,210268.2235,1377715.406,3320767.977,20
+11848,1854483.254,1374148.062,3320028.186,20
+11849,1341440.772,1367324.985,3315886.647,20
+11850,1379242.558,1365529.134,3316339.342,20
+11851,1367012.326,1306919.743,3311183.312,20
+11852,1386577.443,1305824.81,3309547.304,20
+11853,1367858.659,1397871.287,3303482.948,20
+11854,1366623.084,1344968.161,3301900.754,20
+11855,1323811.272,1329089.147,3571009.771,20
+11856,1320475.954,1334763.572,3475134.169,20
+11857,1390036.547,1329553.658,3386084.311,20
+11858,1369949.498,1163642.383,3238141.037,20
+11859,1349946.512,1398736.505,3191177.031,20
+11860,1344340.518,1382064.654,3168790.364,20
+11861,1347384.207,1276516.805,3149821.127,20
+11862,1179853.769,1326188.817,3359507.829,20
+11863,1387792.169,1310820.966,3266789.529,20
+11864,1389892.437,1306830.784,3241430.505,20
+11865,1313192.972,1302353.754,3248139.341,20
+11866,1336059.895,206871.39,3251536.104,20
+11867,1330501.46,1987342.167,3242539.173,20
+11868,1666827.854,1065059.335,3241342.63,20
+11869,1324156.753,1304990.725,3234708.19,20
+11870,1321691.31,1301813.283,3234956.678,20
+11871,1321186.922,1283251.632,3229404.192,20
+11872,1315818.56,1279526.138,1158311.845,20
+11873,1315235.605,1276950.722,4052352.805,20
+11874,1313630.469,1272169.003,3238839.966,20
+11875,1309577.371,1270915.142,3104183.301,20
+11876,1309539.334,1265104.587,3214025.625,20
+11877,1305484.446,1264599.814,3226601.423,20
+11878,193395.268,1259262.093,3206947.165,20
+11879,1734990.088,1257015.074,3202133.353,20
+11880,1284085.562,1252056.225,3200686.626,21
+11881,2348657.356,2994802.39,4894405.707,21
+11882,2327336.322,2405841.375,4510894.92,21
+11883,2087845.104,2020803.135,4462726.785,21
+11884,1258187.851,1369771.437,3484524.487,21
+11885,1724054.064,1795650.247,4006840.257,21
+11886,1596532.134,1621959.339,3892216.985,21
+11887,1547009.667,1611358.061,3782434.524,21
+11888,1555251.949,1614633.671,3728280.021,21
+11889,1546237.864,1602386.191,3704161.612,21
+11890,1541707.971,1597524.143,3678601.191,21
+11891,1533599.156,1592696.552,3655823.265,21
+11892,1532599.578,1585795.238,3645756.686,21
+11893,1525670.612,1584149.172,3617316.345,21
+11894,1519563.298,1576563.039,3615539.347,21
+11895,1517373.201,1573264.204,3604975.243,21
+11896,1515208.624,1559482.356,3585546.031,21
+11897,1506407.25,1545623.23,3580625.192,21
+11898,1507248.437,1546939.797,3575071.48,21
+11899,1500121.798,1543395.786,3560324.747,21
+11900,1500219.019,1536544.313,3561729.653,21
+11901,1492898.653,1536447.133,3549514.781,21
+11902,1492101.858,1530809.567,3547832.205,21
+11903,1487747,1528523.154,3544954.633,21
+11904,1485295.844,1525651.938,3537768.396,21
+11905,1481401.401,1520579.348,3531888.929,21
+11906,1480590.592,1519782.466,3528033.099,21
+11907,1474512.524,1513734.01,3525329.228,21
+11908,1474389.902,1515080.314,3520701.982,21
+11909,1468424.154,1509901.284,3516544.086,21
+11910,1468929.034,1506680.368,3514362.419,21
+11911,1464574.986,1506273.027,3506622.461,21
+11912,1463034.878,1505835.141,3512119.95,21
+11913,1458543.786,1497717.566,3500001.441,21
+11914,1457827.256,1498707.315,3501868.772,21
+11915,1454350.826,1495303.95,3496878.126,21
+11916,1452925.514,1494621.537,3497107.905,21
+11917,1448853.831,1489790.113,3492909.87,21
+11918,1448463.273,1488058.069,3489657.923,21
+11919,1445667.199,1486861.958,3488819.936,21
+11920,1441541.355,1483750.54,3483103.552,21
+11921,1441600.498,1482482.276,3488924.124,21
+11922,1439337.539,1478543.753,3477177.71,21
+11923,1436244.13,1478861.251,3484226.37,21
+11924,1434492.098,1473211.578,3474658.918,21
+11925,1433855.394,1474303.101,3476269.346,21
+11926,1430776.302,1472064.831,3475303.279,21
+11927,1428040.675,1468473.107,3473422.73,21
+11928,1427809.975,1467006.524,3466736.556,21
+11929,1424579.254,1465404.159,3469362.224,21
+11930,1423013.688,1463000.905,3466444.202,21
+11931,1423277.502,1462072.968,3466442.711,21
+11932,1418806.102,1459879.187,3462079.505,21
+11933,1419301.199,1456527.535,3462062.356,21
+11934,1414626.132,1456279.5,3461582.498,21
+11935,1415968.746,1455316.724,3456264.972,21
+11936,1412624.617,1452128.155,3460035.795,21
+11937,1411099.62,1449110.529,3452192.671,21
+11938,1409142.164,1450908.936,3457668.477,21
+11939,1408750.39,1445496.531,3452453.458,21
+11940,1405986.614,1446920.978,3450308.676,21
+11941,2109656.798,2495206.138,3387828.998,21
+11942,2099741.36,2487285.126,3373202.644,21
+11943,2098525.002,2486558.494,3352855.964,21
+11944,2096531.13,2483733.909,3571464.168,21
+11945,2093006.163,2480645.593,3301834.679,21
+11946,2091230.107,2480385.01,3299619.098,21
+11947,2087503.664,2476520.315,3305933.998,21
+11948,2088458.332,2475844.481,3304231.824,21
+11949,2082292.016,2474427.61,3308050.951,21
+11950,2082712.653,2471675.179,3306947.325,21
+11951,2079552.467,2469967.068,3304329.734,21
+11952,2078211.744,2469058.843,3302617.741,21
+11953,2462798.384,2467645.817,3302729.835,21
+11954,2073286.926,2465403.522,3298804.923,21
+11955,2072267.977,2462625.279,3524531.364,21
+11956,2069558.1,2837244.675,3249014.949,21
+11957,2067880.961,2459852.732,3250190.148,21
+11958,2066027.871,2460296.114,3256045.661,21
+11959,2063663.866,2457208.414,3254420.894,21
+11960,2063485.04,2456993.727,3257448.908,21
+11961,2059291.327,2457055.868,3259531.236,21
+11962,2058596.573,2459042.187,3253626.831,21
+11963,2056755.913,2455178.898,3260582.359,21
+11964,2054114.158,2455630.1,3252479.041,21
+11965,2053605.01,2453842.501,3250767.183,21
+11966,2051544.131,2452173.02,3485699.226,21
+11967,2048908.379,2452610.188,3198263.038,21
+11968,2048600.821,2450487.624,3205246.84,21
+11969,2045284.73,2449336.629,3212399.191,21
+11970,2044105.111,2449387.208,3211230.765,21
+11971,2043319.566,2447454.644,3215057.808,21
+11972,2041768.685,2446318.967,3214299.941,21
+11973,2426370.935,2819045.164,3215435.907,21
+11974,2036732.951,2444398.236,3213907.889,21
+11975,2036863.641,2444474.734,3211822.372,21
+11976,2034296.662,2441169.454,3211899.199,21
+11977,2033610.114,2443560.474,3447615.575,21
+11978,2031593.619,2438986.793,3159759.543,21
+11979,2029259.72,2441875.016,3167210.541,21
+11980,2028945.093,2437394.914,3174580.404,21
+11981,2026446.771,2438848,3172198.577,21
+11982,2026117.38,2436407.893,3179742.655,21
+11983,2023711.336,2436926.873,3177302.363,21
+11984,2021530.102,2434636.891,3176665.847,21
+11985,2018545.412,2435197.594,3177802.278,21
+11986,2017150.524,2434155.55,3177137.239,21
+11987,2015650.899,2431272.598,3172225.2,21
+11988,2014123.241,2434267.855,3399609.487,21
+11989,2397691.969,2430187.546,3112078.55,21
+11990,2012185.713,2430333.17,3121910.778,21
+11991,2007981.071,2429805.253,3118885.935,21
+11992,2000125.698,2428347.175,3127069.049,21
+11993,1997550.106,2429496.763,3125639.448,21
+11994,1995350.575,2425858.497,3128370.859,21
+11995,1994021.452,2427822.926,3130357.196,21
+11996,1989976.289,2425639.698,3128142.468,21
+11997,1988049.251,2424479.109,3127862.314,21
+11998,1987823.004,2798362.338,3125685.074,21
+11999,1985200.646,2423893.022,3370255.044,21
+12000,1981624.97,2423368.316,3073583.919,21
+12001,1759078.925,2180224.21,2565623.792,21
+12002,2126020.956,2132218.455,2529837.096,21
+12003,1729789.665,2130938.542,2524309.73,21
+12004,1723254.852,2128350.402,2526402.357,21
+12005,1719480.644,2119009.026,2526490.214,21
+12006,1713295.207,2116420.705,2517109.349,21
+12007,1700896.874,2109029.952,2517849.173,21
+12008,1692713.217,2105247.82,2510592.816,21
+12009,1690575.68,2101428.904,2509186.624,21
+12010,1683775.227,2095530.769,2767271.636,21
+12011,1677784.712,2092660.896,2460844.434,21
+12012,1675831.985,2087515.242,2461607.512,21
+12013,1667710.393,2083633.176,2459304.987,21
+12014,1664736.954,2079367.968,2457500.157,21
+12015,1658675.097,2076628.372,2455799.202,21
+12016,1656700.084,2071909.714,2453515.755,21
+12017,1650411.055,2067724.356,2448839.298,21
+12018,1644906.434,2065107.807,2444525.734,21
+12019,1642741.49,2061091.904,2443197.718,21
+12020,1637180.531,2057343.446,2437865.005,21
+12021,1633331.262,2054334.618,2700884.124,21
+12022,1629294.659,2050352.888,2391759.447,21
+12023,1624450.706,2047735.616,2392953.294,21
+12024,1621130.596,2043693.645,2393014.936,21
+12025,1618012.889,2042586.302,2386341.717,21
+12026,1613144.887,2038941.991,2389955.702,21
+12027,1610565.006,2036537.246,2382753.545,21
+12028,1605542.234,2031691.905,2384112.177,21
+12029,1602399.778,2029921.079,2376402.006,21
+12030,1600045.468,2027038.405,2374238.827,21
+12031,1595349.132,2023091.065,2370475.78,21
+12032,1592436.203,2019338.438,3068716.961,21
+12033,1588310.025,2016876.67,2405417.741,21
+12034,1585136.635,2013220.578,2359172.07,21
+12035,1583302.296,2009607.15,2356791.246,21
+12036,1578481.81,2007818.096,2348211.015,21
+12037,1575592.668,2003777.112,2341853.741,21
+12038,1571893.773,2002980.846,2339640.461,21
+12039,1569675.07,1997187.181,2330110.439,21
+12040,1565025.878,1997403.952,2328593.146,21
+12041,1563281.055,1992525.03,2319167.225,21
+12042,1559394.73,1990679.704,2317953.189,21
+12043,1556670.279,1988390.645,2307532.203,21
+12044,1552871.933,1984499.469,2309703.542,21
+12045,1551146.924,1981779.803,2298465.058,21
+12046,1546106.768,1979946.9,2292627.257,21
+12047,1545482.699,1977187.69,2292462.812,21
+12048,1540350.582,1973526.827,2998759.688,21
+12049,1537614.968,1971124.464,2324571.172,21
+12050,1535386.689,1969205.036,2279568.263,21
+12051,1533333.12,1965943.412,2275404.668,21
+12052,1527496.538,1963035.773,2266404.206,21
+12053,1528076.873,1961175.855,2263807.172,21
+12054,1521768.994,1958427.771,2258719.306,21
+12055,1522075.397,1954750.315,2251793.568,21
+12056,1516236.532,1953285.029,2249533.022,21
+12057,1516296.195,1950866.351,2240680.364,21
+12058,1511745.822,1946297.332,2239067.05,21
+12059,1509454.053,1945186.766,2232785.785,21
+12060,1506055.388,1939021.206,2230155.962,21
+12061,1505156.106,1941502.527,2222249.499,21
+12062,1500141.97,1939642.668,2214928.017,21
+12063,1498548.411,1938897.579,2212525.548,21
+12064,1495139.351,1938920.034,2924787.599,21
+12065,1493425.677,1936360.437,2244944.245,21
+12066,1490133.301,1936014.288,2198118.906,21
+12067,1487714.416,1935710.889,2193106.721,21
+12068,1485783.73,1933060.889,2185727.194,21
+12069,1482350.956,1934399.281,2180503.932,21
+12070,1481411.866,1931709.47,2177425.245,21
+12071,1476308.239,1930545.28,2167748.936,21
+12072,1475679.923,1931767.423,2166311.905,21
+12073,1473621.375,1929897.601,2157640.446,21
+12074,1469138.4,1927712.154,2155442.492,21
+12075,1468266.553,1928129.723,2147988.407,21
+12076,1464985.065,1926816.557,2145098.808,21
+12077,1462477.687,1926446.268,2137814.231,21
+12078,1462290.059,1924767.006,2132406.811,21
+12079,1456956.72,1924974.272,2127915.078,21
+12080,1456347.243,1923384.683,2851994.151,21
+12081,1452548.715,1923201.603,2163112.007,21
+12082,1451450.358,1921577.194,2113776.702,21
+12083,1447915.573,1920406.979,2111829.826,21
+12084,1446527.042,1921530.48,2105410.386,21
+12085,1443397.478,1918690.079,2101045.134,21
+12086,1441731.991,1918798.357,2093725.91,21
+12087,1439011.431,1919714.346,2091495.922,21
+12088,1436232.792,1918290.331,2084394.952,21
+12089,1434347.369,1918496.575,2080237.594,21
+12090,1432783.049,1915815.785,2074265.993,21
+12091,1429217.76,1917274.173,2069732.111,21
+12092,1427751.327,1914897.619,2062858.225,21
+12093,1424478.584,1915786.864,2055565.995,21
+12094,1423782.8,1911863.657,2048182.259,21
+12095,1420389.801,1912448.221,2036121.084,21
+12096,1419294.369,1910979.691,2767462.436,21
+12097,1415690.304,1910112.106,2065284.137,21
+12098,1414178.959,1909828.174,2018709.337,21
+12099,1411658.613,1909409.148,2010424.598,21
+12100,1409900.191,1908064.605,2006109.121,21
+12101,1406844.107,1907420.055,1998967.218,21
+12102,1405368.941,1907926.033,1990902.852,21
+12103,1404012.751,1906138.344,1984991.56,21
+12104,1401022.344,1905767.931,1981792.43,21
+12105,1397748.407,1904778.304,1970383.033,21
+12106,1397342.151,1904113.835,1966131.88,21
+12107,1394180.075,1904344.248,1959432.478,21
+12108,1391752.201,1902946.146,1954430.098,21
+12109,1391010.554,1902043.513,1945871.36,21
+12110,1387217.924,1901754.153,1940516.286,21
+12111,1387055.274,1901517.179,1935439.772,21
+12112,1382646.002,1901493.462,2671865.834,21
+12113,1382931.503,1898534.808,1966561.228,21
+12114,1378967.192,1899748.795,1915300.049,21
+12115,1377433.703,1899228.358,1910703.243,21
+12116,1376099.774,1897955.825,1902487.882,21
+12117,1373285.593,1898208.71,1898284.595,21
+12118,1371222.315,1898780.971,1890953.156,21
+12119,1369197.19,1898099.55,1884267.872,21
+12120,1367190.449,1896525.192,1878614.682,21
+12121,1366497.702,1899043.871,1878516.095,21
+12122,1362275.521,1896209.564,1873273.679,21
+12123,1359435.353,1898505.468,1865026.307,21
+12124,1358210.188,1896413.807,1863382.381,21
+12125,1353611.145,1897593.153,1856611.14,21
+12126,1745467.761,1895597.062,1849520.805,21
+12127,1349119.971,1898025.553,1844471.82,21
+12128,1347856.139,1895470.681,2590726.098,21
+12129,1343656.168,1897153.764,1872109.142,21
+12130,1342124.809,1895508.805,1823732.425,21
+12131,1339081.284,1895172.515,1817555.719,21
+12132,1336394.467,1896724.579,1815057.016,21
+12133,1334273.323,1894957.019,1806010.069,21
+12134,1330854.649,1895117.14,1803694.093,21
+12135,1329469.131,1895842.621,1796023.363,21
+12136,1325780.363,1894669.666,1791996.966,21
+12137,1324453.982,1895382.832,1788097.149,21
+12138,1320460.321,1894066.501,1780973.566,21
+12139,1318948.389,1894370.108,1775092.637,21
+12140,1315238.46,1894832.836,1774469.022,21
+12141,1705658.19,1893626.472,1837519.68,21
+12142,1311570.606,1894882.33,1754663.992,21
+12143,1306648.302,1893114.131,1748605.923,21
+12144,1306546.559,1894464.609,1745135.292,21
+12145,1303617.999,1893451.829,1987102.824,21
+12146,1300416.065,1894416.202,1714310.921,21
+12147,1298368.704,1892803.753,1712952.153,21
+12148,1294995.337,1893516.407,1733172.46,21
+12149,1293232.598,1893175.916,1703527.654,21
+12150,1290345.413,1893775.287,1699614.031,21
+12151,1288537.775,1893118.112,1956042.544,21
+12152,1283948.084,1893189.696,1675279.948,21
+12153,1283566.804,1892455.054,1675494.41,21
+12154,1280479.134,1893163.483,1704076.188,21
+12155,1277281.537,1892804.278,1782931.227,21
+12156,1666923.61,1892417.148,1659752.468,21
+12157,1273090.899,1893953.207,1660318.19,21
+12158,1269343.648,1890942.924,1660184.571,21
+12159,1267652.502,1893919.917,1942166.528,21
+12160,1263532.418,1892203.594,1634711.715,21
+12161,1263332.682,1892789.795,1640114.064,21
+12162,1259497.592,1891258.692,1635244.756,21
+12163,1255868.587,1894084.645,1639227.895,21
+12164,1255648.226,1891446.961,1927514.909,21
+12165,1250907.101,1892826.939,1611101.063,21
+12166,1249622.822,1892411.474,1621050.048,21
+12167,1245952.696,1891891.335,1666916.105,21
+12168,1245454.645,1893090.346,1613713.8,21
+12169,1240400.141,1892294.646,1613590.334,21
+12170,1240148.755,1892019.242,1891908.569,21
+12171,1235756.713,1892190.215,1591507.077,21
+12172,1234326.045,1892841.668,1598988.581,21
+12173,1232049.592,1892368.934,1594418.196,21
+12174,1621698.269,1891873.978,1598023.746,21
+12175,1226518.603,1894229.858,1886567.478,21
+12176,1223957.656,1890855.813,1573813.093,21
+12177,1219260.45,1893686.974,1580494.89,21
+12178,1215600.947,1892440.352,1630501.574,21
+12179,1213966.495,1892161.397,1577725.672,21
+12180,1209816.511,1879123.593,1583214.659,21
+12181,1209080.338,1872292.85,1852640.145,21
+12182,1203870.264,1870860.584,1556787.086,21
+12183,1201800.009,1868332.201,1559957.246,21
+12184,1201382.659,1865972.538,1558150.716,21
+12185,1197772.487,1864650.096,1559683.638,21
+12186,1196491.135,1862953.897,1850302.926,21
+12187,1194235.577,1860748.632,1537703.541,21
+12188,1192121.591,1861220.094,1543570.248,21
+12189,1190113.761,1857184.407,1593353.903,21
+12190,1186471.34,1857354.529,1539572.786,21
+12191,1187657.621,1855328.182,1541026.885,21
+12192,1182237.184,1853975.164,1819424.137,21
+12193,1182994.283,1851939.826,1521075.864,21
+12194,1179666.853,1851201.35,1526635.924,21
+12195,1177521.074,1849285.482,1521823.187,21
+12196,1175630.283,1849069.165,1528121.837,21
+12197,1172903.135,1845649.079,1816560.758,21
+12198,1172426.853,1846900.505,1503387.994,21
+12199,1168001.046,1842503.821,1512336.386,21
+12200,1168675.846,1843476.719,1557656.323,21
+12201,1164642.663,1841239.987,1506489.119,21
+12202,1163497.269,1840045.963,1507429.595,21
+12203,1160688.855,1839107.546,1787182.161,21
+12204,1160049.029,1837369.69,1487094.839,21
+12205,1156295.645,1835802.547,1493247.763,21
+12206,1155030.796,1835993.555,1491718.254,21
+12207,1153231.062,1834066.445,1492612.677,21
+12208,1150805.612,1832118.994,1785560.412,21
+12209,1149135.885,1831033.638,1471344.129,21
+12210,1146898.273,1830816.973,1479887.181,21
+12211,1144728.895,1828528.502,1525960.204,21
+12212,1143425.942,1827848.52,1471385.645,21
+12213,1141690.772,1827553.309,1472862.349,21
+12214,1139956.244,1826889.965,1754222.549,21
+12215,1138930.41,1824172.012,1451044.681,21
+12216,1137750.192,1824033.298,1460143.271,21
+12217,1134539.672,1823118.5,1452239.176,21
+12218,1134766.048,1822604.6,1456321.082,21
+12219,1132249.098,1821829.257,1748604.522,21
+12220,1130111.278,1820669.358,1433198.515,21
+12221,1130142.074,1820690.296,1440394.216,21
+12222,1126921.226,1818694.981,1485525.167,21
+12223,1126576.424,1818545.666,1434825.523,21
+12224,1125540.246,1816777.604,1432302.471,21
+12225,1122600.219,1817532.266,1715207.883,21
+12226,1122938.142,1814932.917,1411889.718,21
+12227,1119924.457,1814662.755,1415583.7,21
+12228,1119067.805,1814305.663,1413052.566,21
+12229,1117521.219,1812977.538,1412272.603,21
+12230,1116704.453,1812677.76,1706738.412,21
+12231,1114588.486,1811595.571,1393069.114,21
+12232,1113341.704,1810869.798,1397356.249,21
+12233,1112505.06,1809158.121,1445036.182,21
+12234,1109830.583,1810297.127,1390419.98,21
+12235,1110188.018,1807940.432,1392488.962,21
+12236,1107268.072,1807701.665,1671092.98,21
+12237,1107444.747,1807003.614,1372414.981,21
+12238,1104418.273,1806411.345,1376917.337,21
+12239,1104602.607,1805272.854,1373454.404,21
+12240,1105020.48,1804866.585,1375987.133,21
+12241,1177404.727,1883156.612,1798094.875,21
+12242,1176279.503,1881962.481,1485448.693,21
+12243,1174760.563,1882486.258,1489257.552,21
+12244,1174970.244,1881704.231,1541387.901,21
+12245,1175107.072,1880053.529,1484868.547,21
+12246,1171896.108,1880559.024,1488623.795,21
+12247,1172601.894,1877862.691,1773766.999,21
+12248,1171802.491,1878229.023,1468000.55,21
+12249,1169771.985,1877216.121,1475342.31,21
+12250,1171819.477,1876323.59,1472266.968,21
+12251,1170877.312,1875319.669,1472520.159,21
+12252,1169507.035,1875218.259,1772882.213,21
+12253,1168299.505,1873071.676,1452719.092,21
+12254,1168845.651,1873252.753,1458940.18,21
+12255,1166575.881,1872768.903,1504289.757,21
+12256,1167544.126,1871105.966,1454139.906,21
+12257,1164835.643,1869911.566,1452790.455,21
+12258,1164526.686,1868691.188,1740002.409,21
+12259,1164580.613,1870121.635,1433614.862,21
+12260,1162199.585,1866837.38,1439619.144,21
+12261,1162404.676,1866300.128,1436390.914,21
+12262,1161092.306,1867395.173,1437005.89,21
+12263,1160395.448,1865260.212,1738961.35,21
+12264,1159867.833,1864035.996,1416721.386,21
+12265,1158498.612,1862866.097,1420842.148,21
+12266,1156808.36,1862638.078,1467692.952,21
+12267,1157632.643,1861704.773,1414522.425,21
+12268,1155386.984,1860073.511,1415488.485,21
+12269,1154689.726,1860325.951,1703427.298,21
+12270,1154908.011,1859064.185,1395514.116,21
+12271,1151848.065,1858142.749,1402357.249,21
+12272,1152473.111,1857213.266,1399751.066,21
+12273,1149973.938,1857538.437,1399696.704,21
+12274,1149295.474,1854449.591,1707604.299,21
+12275,1146194.937,1855810.403,1381070.337,21
+12276,1147253.109,1852944.546,1387866.061,21
+12277,1144380.753,1854388.841,1435076.974,21
+12278,1143482.607,1851829.32,1384323.125,21
+12279,1142335.52,1852200.429,1385608.286,21
+12280,1141432.805,1850303.355,1677768.896,21
+12281,1138451.563,1851680.705,1367606.762,21
+12282,1139211.47,1848544.003,1374299.973,21
+12283,1135587.932,1848360.327,1372786.566,21
+12284,1135244.751,1847668.342,1374847.272,21
+12285,1134048.209,1846609.571,1681205.692,21
+12286,1132144.942,1845859.831,1357914.712,21
+12287,1131001.663,1846873.375,1362752.253,21
+12288,1127688.104,1842556.646,1406944.2,21
+12289,1125479.036,1845334.924,1359955.151,21
+12290,1124719.402,1842742.874,1357998.177,21
+12291,1123405.462,1842251.813,1362566.275,21
+12292,1120930.883,1841531.775,1362404.719,21
+12293,1118935.118,1841018.569,1364156.533,21
+12294,1119821.803,1839911.653,1364890.739,21
+12295,1116015.957,1839377.349,1365658.235,21
+12296,1115676.351,1838276.125,1363836.849,21
+12297,1112515.149,1837771.634,2154740.132,21
+12298,1113352.608,1837470.739,1364646.842,21
+12299,1109874.39,1836120.736,1367970.67,21
+12300,1109079.134,1835344.692,2183781.686,21
+12301,1031836.135,1755094.293,1233695.319,21
+12302,1031258.923,1753392.876,1228985.446,21
+12303,1029913.152,1750483.971,2049843.046,21
+12304,1026919.929,1751517.278,1223651.617,21
+12305,1027484.425,1749301.36,1219884.201,21
+12306,1025054.431,1747656.212,2044658.647,21
+12307,1025052.05,1747439.3,1214709.016,21
+12308,1023175.632,1745341.871,1213330.447,21
+12309,1022512.336,1745155.697,2037989.826,21
+12310,1020236.038,1743692.959,1206377.864,21
+12311,1021529.419,1742157.709,1204371.253,21
+12312,1017949.569,1740972.039,2031598.391,21
+12313,1018552.852,1740237.697,1198044.88,21
+12314,1016648.802,1738415.415,1195185.358,21
+12315,1015674.299,1739886.561,2025735.319,21
+12316,1014985.42,1734334.53,1189397.881,21
+12317,1013485.899,1737416.944,1187694.075,21
+12318,1013319.888,1733554.988,2019785.358,21
+12319,1011309.014,1734124.677,1183495.052,21
+12320,1010798.27,1731467.253,1181572.778,21
+12321,1008934.455,1731796.371,2014359.698,21
+12322,1009339.473,1729824.84,1177255.115,21
+12323,1006657.664,1729191.152,1173301.169,21
+12324,1006746.978,1728138.122,2011274.613,21
+12325,1006225.155,1726177.809,1166811.31,21
+12326,1003524.93,1724747.338,1167145.295,21
+12327,1004394.881,1722251.393,2003934.503,21
+12328,1002345.46,2101982.349,1159570.723,21
+12329,1000774.716,1722184.871,1160187.295,21
+12330,1000731.764,1719043.783,1995470.912,21
+12331,998397.6877,1718990.876,1151652.878,21
+12332,999204.3078,1718218.242,1145075.545,21
+12333,996359.5253,1716503.083,1986385.412,21
+12334,996401.3713,1715448.684,1136010.624,21
+12335,995038.5102,1715158.693,1134677.923,21
+12336,994345.171,1713106.387,1974155.18,21
+12337,992116.1508,1712020.661,1122591.85,21
+12338,992181.0133,1711798.207,1117378.564,21
+12339,988919.7895,1710192.342,1960057.43,21
+12340,986918.7116,1709630.163,1109255.836,21
+12341,987084.3937,1709341.027,1104447.261,21
+12342,984471.4336,1706656.634,1947962.895,21
+12343,984388.7355,1705777.956,1096516.081,21
+12344,982835.8698,1705653.716,1089319.192,21
+12345,980910.7378,1704453.432,1937571.273,21
+12346,981265.2715,1703493.124,1081086.357,21
+12347,978468.8742,1701687.286,1078004.146,21
+12348,978834.6306,1701251.926,1923304.543,21
+12349,977551.5916,1700453.212,1068141.68,21
+12350,975061.9384,1698824.028,1065967.771,21
+12351,975415.0281,1699356.128,1909030.761,21
+12352,973257.4822,1696539.016,1055821.424,21
+12353,972955.1554,1696048.182,1051372.984,21
+12354,970856.164,1695973.239,1900918.016,21
+12355,971160.7301,1693571.788,1044374.825,21
+12356,968555.4217,1693378.533,1040391.691,21
+12357,968159.8702,1693077.789,1890984.164,21
+12358,967061.6411,1690396.384,1032610.559,21
+12359,965100.6739,1691482.951,1028452.375,21
+12360,965811.2113,1688173.009,1879761.144,21
+12361,963687.2634,1691238.566,1028504.698,21
+12362,964493.3891,1691428.352,1028626.538,21
+12363,963824.7333,1693480.356,1881245.244,21
+12364,962638.1272,1691843.852,1025150.805,21
+12365,960496.4744,1693385.92,1023833.059,21
+12366,959720.8659,1691343.062,1875119.055,21
+12367,957036.3107,1693044.698,1017044.728,21
+12368,957447.2022,1691012.623,1016755.107,21
+12369,954092.0389,1693332.366,1869592.331,21
+12370,953529.2357,1690170.047,1011653.059,21
+12371,952593.6207,1692693.753,1008151.512,21
+12372,950032.0699,1691654.152,1863753.548,21
+12373,948911.5666,1691249.579,1004392.32,21
+12374,947633.1684,1692235.108,1001416.934,21
+12375,946499.6645,1690169.873,1858152.699,21
+12376,943818.1881,1692034.364,996277.614,21
+12377,944251.8879,1691081.474,994105.2222,21
+12378,940904.2632,1691642.588,1851481.226,21
+12379,941175.3139,1690024.678,989003.3919,21
+12380,938332.2199,1691461.84,988645.456,21
+12381,937267.0618,1690844.344,1842730.695,21
+12382,935946.4946,1690464.307,983288.4666,21
+12383,934323.8179,1691824.992,980884.4749,21
+12384,931410.4723,1690301.667,1836410.221,21
+12385,928295.5009,1690339.923,975976.4477,21
+12386,927664.7799,1690704.552,972709.0042,21
+12387,924802.2637,1690267.644,1829606.755,21
+12388,923757.6196,1691362.602,968427.4014,21
+12389,922264.8029,1690013.406,965455.3092,21
+12390,920362.2278,1690651.425,1822180.668,21
+12391,919589.6546,1688923.472,961387.0174,21
+12392,918085.7137,1689105.502,958182.4833,21
+12393,918786.7611,1688891.731,1816336.771,21
+12394,916982.065,1687962.861,954680.8773,21
+12395,916698.6221,1688495.407,951762.3439,21
+12396,916093.4796,1689530.61,1809949.462,21
+12397,915352.7701,1686666.286,948213.147,21
+12398,914379.8207,1688753.835,945189.4257,21
+12399,914293.2911,1687805.386,1803760.758,21
+12400,916457.2153,1687255.039,940178.5929,21
+12401,915667.4359,1687842.522,940287.645,21
+12402,914945.4666,1687113.845,1797989.265,21
+12403,916676.865,1686899.287,933671.2448,21
+12404,913881.9805,1687159.838,933797.8134,21
+12405,914528.9107,1686240.562,1790645.448,21
+12406,914164.7198,1687298.06,928810.2123,21
+12407,913534.7169,1685543.478,926135.7758,21
+12408,914409.7867,1686696.219,1786458.231,21
+12409,912563.3435,1685395.374,921937.4073,21
+12410,913751.1453,1687031.119,920965.498,21
+12411,912837.7146,1685272.779,1779341.665,21
+12412,912825.8309,1684772.711,915405.1171,21
+12413,912638.142,1686031.634,915180.6508,21
+12414,912397.4009,1684294.18,1773985.876,21
+12415,912926.636,1685180.098,909138.0387,21
+12416,912105.2366,1684407.071,908669.7936,21
+12417,911793.5109,1684877.604,1766415.409,21
+12418,912461.6977,1684724.806,904645.6936,21
+12419,912968.5165,1683336.333,901814.4961,21
+12420,912346.5945,1684440.23,1762179.152,21
+12421,909200.3294,1683048.84,891355.3648,21
+12422,909581.394,1682080.416,890346.0563,21
+12423,912452.4291,1682437.426,1749230.351,21
+12424,911908.7354,1682005.629,884357.4441,21
+12425,914250.9592,1681214.394,882867.9606,21
+12426,912146.3173,1682704.938,1743567.502,21
+12427,914453.1317,1680085.432,877737.1212,21
+12428,913470.1233,1681484.325,875093.021,21
+12429,915824.1057,1680157.686,1736836.652,21
+12430,914080.9933,1680360.867,870866.3602,21
+12431,916055.9041,1679933.108,868756.6631,21
+12432,915099.9489,1680855.038,1731453.706,21
+12433,916571.7566,1678427.611,863803.894,21
+12434,917146.8886,1679258.418,861620.538,21
+12435,916998.6908,1679330.534,1725237.834,21
+12436,917697.8175,1677757.721,855535.1259,21
+12437,918590.9343,1678007.515,857110.7539,21
+12438,919305.7208,1678117.627,1716637.121,21
+12439,921039.1171,1678385.819,851843.7277,21
+12440,921826.6534,1676908.717,847833.2116,21
+12441,923163.1686,1677288.353,1712295.114,21
+12442,922766.1274,1676946.331,843916.0894,21
+12443,924046.0855,1676439.625,842231.6791,21
+12444,925357.5529,1676099.981,1705310.657,21
+12445,924808.4214,1676801.714,837761.287,21
+12446,926152.5361,1674643.251,1313194.268,21
+12447,926422.9143,1675873.929,815209.0348,21
+12448,926686.8518,1675152.718,819791.1002,21
+12449,930217.6259,1675523.695,813059.133,21
+12450,929644.5516,1673626.366,848560.7233,21
+12451,931898.6728,1675040.08,1156234.683,21
+12452,930158.9088,1674450.117,796446.8482,21
+12453,933332.5854,1672708.623,800240.0518,21
+12454,931147.6007,1674328.022,839774.2004,21
+12455,932015.9379,1673176.206,1063656.175,21
+12456,934050.0077,1672443.358,782492.737,21
+12457,932603.1914,1673510.353,781319.6275,21
+12458,934074.1978,1672562.969,836589.0591,21
+12459,933596.1069,1671643.773,810305.1655,21
+12460,935067.9274,1672355.332,1095124.946,21
+12461,933509.7224,1671736.474,767652.9616,21
+12462,935781.5803,1670970.297,770946.4079,21
+12463,934818.8721,1670992.092,767336.6151,21
+12464,936112.6479,1670869.907,810761.5018,21
+12465,936006.1816,1670592.526,1086057.916,21
+12466,936476.9322,1670060.757,754192.1166,21
+12467,937248.6236,1670488.454,759219.6076,21
+12468,936421.1825,1669257.455,777343.7453,21
+12469,937981.0366,1669956.136,755882.6123,21
+12470,936643.1073,1668538.261,759392.3006,21
+12471,939429.7547,1669148.843,1035675.345,21
+12472,937619.7197,1669103.917,744685.1393,21
+12473,939405.9924,1668099.534,750166.037,21
+12474,938901.3456,1668346.067,744764.1164,21
+12475,939604.7476,1667729.608,787402.6154,21
+12476,939798.8523,1667096.179,1057066.483,21
+12477,939511.5746,1667951.778,734549.6147,21
+12478,941088.6326,1665546.486,739200.8796,21
+12479,940639.1822,1667421.111,736470.6482,21
+12480,941242.6482,1666509.77,787738.8486,21
+12481,942101.4053,1667083.194,1051068.818,21
+12482,941225.2852,1668125.238,723831.7369,21
+12483,942610.0832,2048622.568,732464.3119,21
+12484,942084.8914,1670061.814,757542.5234,21
+12485,944729.84,1670350.673,729475.1569,21
+12486,944151.088,1671691.906,758601.9551,21
+12487,944932.4774,1672467.39,733187.0965,21
+12488,947014.2321,1674580.301,733643.218,21
+12489,946094.1872,1674113.37,737514.1938,21
+12490,949190.9415,1676949.429,736894.2787,21
+12491,947753.9837,1676859.983,739484.3949,21
+12492,950029.1995,1678737.889,742131.1993,21
+12493,949937.6379,1679337.63,1542452.624,21
+12494,951259.02,1681313.699,743856.2622,21
+12495,951880.5931,1680880.651,745885.1664,21
+12496,951885.0034,1683317.12,1580515.682,21
+12497,954394.1339,1683574.478,747037.1731,21
+12498,953992.074,2066564.367,751521.1631,21
+12499,957077.313,1686561.288,1591957.871,21
+12500,954437.2783,1687674.812,752269.9694,21
+12501,957720.8789,1688175.649,753812.1203,21
+12502,958339.3152,1689575.288,1601508.075,21
+12503,958684.2951,1690887.88,756379.109,21
+12504,959073.4098,1692748.417,758447.9187,21
+12505,961005.9962,1692515.103,1609058.974,21
+12506,961582.5137,1694719.815,760942.8224,21
+12507,961950.7996,1695234.743,1221605.231,21
+12508,963338.4495,1697089.325,747868.7856,21
+12509,963709.4518,1697486.885,755123.8344,21
+12510,964613.6719,1698737.599,794191.4573,21
+12511,965778.9972,1699647.101,752422.0571,21
+12512,964501.8993,1701966.482,826697.0372,21
+12513,967602.6389,2082939.238,1062498.296,21
+12514,966398.2669,1704013.572,744184.6912,21
+12515,968334.9135,1703944.723,749400.9606,21
+12516,967735.9863,1706349.204,775161.3184,21
+12517,968041.9569,1706153.247,748932.1616,21
+12518,969711.1932,1708743.491,775664.93,21
+12519,968928.8359,1709381.222,751945.2685,21
+12520,970529.2715,1710393.083,754266.7201,21
+12521,970436.5358,1711341.675,755438.9725,21
+12522,971972.6924,1712716.774,758162.4803,21
+12523,971055.7943,1714858.786,759676.6308,21
+12524,972233.4942,1714541.504,761736.4642,21
+12525,972627.3712,1715851.243,1573610.278,21
+12526,972644.2383,1718392.38,765467.714,21
+12527,973807.8522,1717746.827,767740.6189,21
+12528,972945.9192,2100411.92,1610060.856,21
+12529,975405.9695,1721199.317,770529.4465,21
+12530,973986.7131,1722008.005,772369.8254,21
+12531,975627.7999,1722849.804,1622723.27,21
+12532,975767.821,1725372.24,775210.2353,21
+12533,977814.0056,1724782.181,775995.6129,21
+12534,977604.9303,1727762.334,1631536.187,21
+12535,979244.3217,1727828.128,778804.994,21
+12536,978857.6799,1728629.754,780882.2998,21
+12537,980033.8946,1730992.315,1643076.523,21
+12538,980088.1871,1731438.755,791729.1726,21
+12539,980627.161,1732699.861,1257328.554,21
+12540,983792.8946,1733843.215,779529.1651,21
+12541,1169347.893,1928271.83,891741.1692,21
+12542,1180993.758,1937757.123,1226980.738,21
+12543,1184238.804,1939927.339,1067324.18,21
+12544,1187385.246,1939946.908,1134563.49,21
+12545,1190819.289,1942025.321,1445725.231,21
+12546,1192793.53,1941050.01,1105262.4,21
+12547,1195675.461,1942624.147,1123601.11,21
+12548,1198012.663,1942341.118,1156932.734,21
+12549,1200525.687,1942963.334,1136253.787,21
+12550,1203350.196,1943741.35,1144302.041,21
+12551,1204282.436,1942047.724,1457966.177,21
+12552,1207608.941,1945308.817,1147537.345,21
+12553,1209082.766,1942634.24,1157498.021,21
+12554,1211553.114,1944206.477,1294617.65,21
+12555,1213833.091,1944143.566,1165514.191,21
+12556,1215502.464,1943508.188,1225641.737,21
+12557,1217560.824,1945137.732,1178348.363,21
+12558,1219495.417,1942732.389,1186297.909,21
+12559,1222048.353,1944269.477,1198177.116,21
+12560,1223223.564,1943446.965,1203258.785,21
+12561,1225245.921,1943217.791,1214611.99,21
+12562,1228120.002,1942699.015,1221034.77,21
+12563,1227732.084,1944180.082,1232570.699,21
+12564,1231608.192,1941566.662,2069989.288,21
+12565,1231757.217,1943559.083,1244348.617,21
+12566,1234291.408,1942833.906,1249121.821,21
+12567,1236386.855,1941369.196,2125487.721,21
+12568,1237429.762,1941323.84,1260284.694,21
+12569,1239225.65,1942039.917,1270308.509,21
+12570,1241264.806,1941315.753,2150688.648,21
+12571,1243022.065,1942609.462,1280651.645,21
+12572,1244665.912,1941951.341,1285580.949,21
+12573,1244626.005,1940877.551,2167927.697,21
+12574,1248848.599,1941068.666,1291920.675,21
+12575,1248128.319,1939862.255,1298999.193,21
+12576,1251570.102,1940935.966,2182099.425,21
+12577,1251510.095,1938808.482,1305856.428,21
+12578,1254786.911,1939374.271,1306826.199,21
+12579,1254664.762,1938468.473,2196995.985,21
+12580,1257086.261,1937338.865,1314672.63,21
+12581,1258380.086,1938235.293,1812701.012,21
+12582,1260444.667,1937612.818,1310008.575,21
+12583,1261039.305,1935574.323,1321618.301,21
+12584,1263184.986,1937193.558,1387087.885,21
+12585,1263696.789,1934852.287,1325714.189,21
+12586,1266318.699,1935253.5,1353252.545,21
+12587,1266849.237,1934511.642,1679667.564,21
+12588,1269109.397,1933452.478,1319837.44,21
+12589,1269832.341,1932452.35,1331187.654,21
+12590,1271262.086,1934121.146,1366785.399,21
+12591,1273389.858,1930440.921,1496823.456,21
+12592,1274361.47,1932683.148,1329919.699,21
+12593,1275780.56,1929653.338,1340703.512,21
+12594,1276854.31,1931299.329,1342536.812,21
+12595,1279466.922,1928661.524,1349071.998,21
+12596,1279317.621,1929930.129,1352529.861,21
+12597,1281233.619,1926714.591,1357643.759,21
+12598,1282971.814,1928305.358,1365501.547,21
+12599,1284781.379,1927595.147,1366506.362,21
+12600,1284114.848,1924903.034,1372848.849,21
+12601,1346141.63,1988987.29,1495213.712,21
+12602,1349963.761,1992158.272,1508398.671,21
+12603,1352104.514,1993550.01,1512613.702,21
+12604,1355063.408,1991826.672,1520742.262,21
+12605,1354321.524,1992949.182,1525480.776,21
+12606,1356506.768,1993055.686,1604303.776,21
+12607,1358704.545,1993183.869,1531161.922,21
+12608,1358212.547,1997444.017,1568474.648,21
+12609,1360676.386,1993592.508,1537758.625,21
+12610,1361943.841,1995570.152,1541497.646,21
+12611,1361888.121,1996717.19,1548218.304,21
+12612,1365383.616,1995445.527,1551187.075,21
+12613,1363426.672,1995604.57,1556122.967,21
+12614,1366820.881,1996812.826,2400397.327,21
+12615,1367129.591,1995469.758,1563655.553,21
+12616,1367487.255,1995088.624,1566012.42,21
+12617,1370072.567,1997084.85,2437921.418,21
+12618,1369296.657,1994449.362,1571324.884,21
+12619,1371770.241,1997220.982,1574195.01,21
+12620,1371911.456,1994096.877,2453148.885,21
+12621,1373115.685,1996431.399,1578319.375,21
+12622,1373740.417,1994898.441,1584618.27,21
+12623,1374303.465,1994169.975,2458947.417,21
+12624,1376098.179,1995614.322,1587738.896,21
+12625,1376001.417,1995034.078,1590669.106,21
+12626,1377573.435,1994645.854,2466318.989,21
+12627,1378790.699,1993911.804,1596452.729,21
+12628,1378341.214,1993887.852,1597094.936,21
+12629,1379645.833,1997122.676,2473561.36,21
+12630,1381967.376,1994935.494,1603049.793,21
+12631,1380120.724,1996328.342,1606232.534,21
+12632,1383553.466,1994298.66,2478621.6,21
+12633,1382346.394,1994859.065,1610207.369,21
+12634,1384004.071,1994804.49,1614192.672,21
+12635,1385215.13,1994731.138,2483935.978,21
+12636,1384182.093,1991492.306,1617141.368,21
+12637,1387782.566,1992352.977,1619874.844,21
+12638,1385027.324,1991660.316,2491506.115,21
+12639,1389247.934,1989857.48,1623508.954,21
+12640,1386508.295,1991724.676,1626584.367,21
+12641,1390350.522,1990433.002,2496362.6,21
+12642,1389050.452,1989157.4,1629732.929,21
+12643,1391214.781,1990166.436,1631629.489,21
+12644,1390813.174,1988851.224,2502792.228,21
+12645,1391890.086,1988880.724,1636220.084,21
+12646,1393450.566,1988441.607,1636368.248,21
+12647,1391930.888,1987824.844,2510468.311,21
+12648,1395398.854,1988968.296,1639420.855,21
+12649,1393611.583,1986293.148,1644825.363,21
+12650,1396148.626,1986623.583,2514950.536,21
+12651,1395066.115,1987157.319,1646059.874,21
+12652,1397185.669,1985380.179,1650288.294,21
+12653,1396388.45,1985694.34,2518375.515,21
+12654,1399129.025,1985777.518,1652368.189,21
+12655,1397803.601,1983589.579,1657165.07,21
+12656,1398927.72,1986028.881,2521774.165,21
+12657,1400178.51,1982472.855,1660425.11,21
+12658,1400117.966,1983109.157,1659741.052,21
+12659,1401674.051,1982739.049,2528060.953,21
+12660,1402052.991,1983989.827,1662550.855,21
+12661,1401474.781,1984247.333,1671017.745,21
+12662,1406854.443,1982770.884,2533254.15,21
+12663,1405577.31,1983722.565,1673879.617,21
+12664,1407459.158,1982303.746,1677806.706,21
+12665,1409815.887,1983091.436,2542237.255,21
+12666,1410159.547,1980811.859,1681525.058,21
+12667,1412162.322,1981387.7,1685982.796,21
+12668,1413008.623,1980228.598,2549682.376,21
+12669,1414550.038,1980412.823,1688729.407,21
+12670,1415679.617,1978626.194,1694327.371,21
+12671,1417715.209,1978480.126,2554591.576,21
+12672,1417826.271,1979682.39,1697259.604,21
+12673,1420466.759,1976962.396,1702553.067,21
+12674,1422272.506,1977035.35,2560094.567,21
+12675,1420390.446,1976855.024,1705427.37,21
+12676,1425942.104,1975436.602,1709098.481,21
+12677,1423901.885,1974690.18,2566622.161,21
+12678,1427704.865,1975095.678,1711214.194,21
+12679,1426743.234,1973742.947,1717351.806,21
+12680,1430680.615,1974215.446,2573210.326,21
+12681,1429939.92,1972657.848,1720599.352,21
+12682,1431857.686,1971819.86,1721209.948,21
+12683,1432814.32,2351010.183,2581332.961,21
+12684,1435273.478,1971679.338,1725488.915,21
+12685,1435981.01,1968688.794,1730309.028,21
+12686,1436597.926,1971647.727,2585074.012,21
+12687,1438441.046,1967880.498,1734448.377,21
+12688,1439950.948,1967835.019,1736915.774,21
+12689,1440766.95,1968664.674,2591237.601,21
+12690,1443510.383,1966307.401,1741651.455,21
+12691,1442329.994,1965641.391,1743039.11,21
+12692,1445714.501,1965928.449,2599489.913,21
+12693,1446590.167,1964566.319,1745144.492,21
+12694,1446388.432,1964867.422,1753251.883,21
+12695,1450009.807,1961822.709,2601321.563,21
+12696,1449046.587,1964181.846,1754820.278,21
+12697,1452060.012,2341242.308,1759199.354,21
+12698,1453030.725,1961022.004,2607252.429,21
+12699,1453184.653,1960209.594,1761812.583,21
+12700,1456168.649,1959484.645,1763875.132,21
+12701,1456769.469,1959474.8,2615571.083,21
+12702,1457768.025,1958353.259,1767739.465,21
+12703,1458350.568,1957359.521,1771048.917,21
+12704,1461881.409,1956817.293,2620224.886,21
+12705,1460820.862,1954714.076,1775669.68,21
+12706,1463080.151,1956807.666,1776579.193,21
+12707,1465105.694,1953274.808,2626651.878,21
+12708,1465159.046,1953359.963,1781357.963,21
+12709,1466949.789,1951276.523,1784374.803,21
+12710,1468415.575,1953346.358,2630441.432,21
+12711,1468801.34,2329404.472,1788888.917,21
+12712,1470257.056,1949293.212,1791533.083,21
+12713,1472344.131,1949825.679,2635533.221,21
+12714,1473518.845,1947469.105,1794891.351,21
+12715,1474277.827,1948035.715,1798614.304,21
+12716,1475735.527,1945155.154,2640441.521,21
+12717,1476960.236,1944199.025,1802867.852,21
+12718,1478808.235,1944281.568,1803086.254,21
+12719,1479606.731,1941517.72,2646625.861,21
+12720,1480462.322,1940432.86,1809381.31,21
+12721,1490432.167,1948225.31,1823107.762,21
+12722,1489766.662,1948898.551,2668117.209,21
+12723,1493143.522,1951313.536,1828781.108,21
+12724,1491464.083,1950087.395,1829099.731,21
+12725,1495553.989,2329135.435,2668342.724,21
+12726,1494314.087,1951454.187,1829764.927,21
+12727,1495426.513,1950272.568,1835905.919,21
+12728,1496662.033,1951819.493,2665991.344,21
+12729,1497716.583,1951661.828,1835473.803,21
+12730,1496909.673,1952542.548,1836210.406,21
+12731,1499963.238,1950866.424,2670009.938,21
+12732,1498650.841,1953439.517,1836393.939,21
+12733,1501310.016,1950941.408,1837556.996,21
+12734,1499395.442,1952954.199,2672756.15,21
+12735,1502878.039,1953009.475,1839128.017,21
+12736,1502425.825,1952372.767,1839395.09,21
+12737,1502516.76,1953468.913,2675991.953,21
+12738,1504458.893,1952697.66,1839887.958,21
+12739,1504165.062,2332281.461,1841347.044,21
+12740,1505823.854,1952851.6,2679690.411,21
+12741,1505353.124,1953547.625,1842949.451,21
+12742,1507358.979,1953099.956,1842276.051,21
+12743,1507087.056,1954662.492,2681506.605,21
+12744,1507107.54,1953302.361,1843596.874,21
+12745,1510297.067,1953212.004,1847722.378,21
+12746,1508521.316,1955199.999,2683270.517,21
+12747,1509561.093,1953064.692,1845396.556,21
+12748,1511180.419,1954937.371,1852703.983,21
+12749,1510498.085,1953715.014,2681013.655,21
+12750,1511907.471,1954949.986,1850131.021,21
+12751,1512946.894,1954789.82,1852822.981,21
+12752,1512233.503,1953637.949,2686187.249,21
+12753,1514415.997,2334375.894,1850935.249,21
+12754,1514062.11,1954971.825,1856064.277,21
+12755,1514749.753,1954998.338,2686187.782,21
+12756,1516470.087,1954372.783,1855578.819,21
+12757,1515295.443,1955813.372,1855583.856,21
+12758,1516420.063,1954202.824,2688380.236,21
+12759,1518281.958,1956596.094,1860380.698,21
+12760,1517230.551,1954324.915,1856679.283,21
+12761,1519229.617,1956345.329,2690676.368,21
+12762,1518060.675,1954263.69,1861915.999,21
+12763,1520672.841,1956533.308,1857313.904,21
+12764,1519477.544,1955509.771,2695883.926,21
+12765,1521242.377,1955796.999,1859188.384,21
+12766,1521625.198,1954854.253,1862586.463,21
+12767,1521924.649,2336294.394,2696932.603,21
+12768,1521988.758,1955427.6,1863582.628,21
+12769,1523371.106,1955728.987,1862786.847,21
+12770,1524062.353,1956995.774,2699647.455,21
+12771,1522906.373,1955163.44,1864289.505,21
+12772,1525125.23,1956230.029,1868502.549,21
+12773,1525665.276,1956673.349,2696717.039,21
+12774,1525990.383,1956242.693,1869386.589,21
+12775,1526482.35,1956514.162,1868878.656,21
+12776,1525756.121,1956170.503,2699902.868,21
+12777,1529225.094,1955635.539,1869987.547,21
+12778,1526219.318,1957784.574,1872281.818,21
+12779,1530542.086,1956485.459,2700363.987,21
+12780,1527059.89,1956124.831,1872768.155,21
+12781,1528435.238,2336137.136,1873490.149,21
+12782,1527074.705,1956826.209,2705611.339,21
+12783,1528937.101,1957180.375,1878035.437,21
+12784,1529020.753,1956229.032,1880304.919,21
+12785,1529320.757,1956254.376,2705324.651,21
+12786,1527660.759,1955303.196,1883835.817,21
+12787,1531912.784,1956265.791,1879308.908,21
+12788,1528057.365,1954057.084,2711910.394,21
+12789,1530629.785,1955546.759,1884801.86,21
+12790,1530431.791,1953370.528,1883710.909,21
+12791,1530362.438,1954701.932,2713412.132,21
+12792,1531864.953,1952736.463,1887263.757,21
+12793,1530333.068,1953320.16,1887062.464,21
+12794,1532553.437,1953852.29,2717599.282,21
+12795,1530951.168,1951491.764,1887838.303,21
+12796,1532749.441,1952464.734,1890874.123,21
+12797,1531880.721,1952271.993,2718541.126,21
+12798,1532691.404,1950675.172,1892400.806,21
+12799,1532839.686,1951087.88,1892031.599,21
+12800,1532696.306,1951308.628,2720735.688,21
+12801,1533950.856,1949271.77,1896208.163,21
+12802,1533482.46,1949894.262,1894311.581,21
+12803,1534574.474,1950200.492,2723456.978,21
+12804,1533070.424,1949341.821,1898632.454,21
+12805,1535593.7,1947681.025,1896976.468,21
+12806,1534548.224,1949670.821,2725106.803,21
+12807,1534982.055,1947666.874,1901807.509,21
+12808,1534693.266,1947218.02,1900131.367,21
+12809,1535853.387,1947636.337,2726627.232,21
+12810,1536521.742,1947352.012,1905851.719,21
+12811,1535468.852,1944844.397,1900683.705,21
+12812,1536759.573,1947927.151,2731121.187,21
+12813,1535768.898,1944574.419,1904773.77,21
+12814,1537928.679,1945551.595,1906078.949,21
+12815,1537129.595,1944794.301,2733256.37,21
+12816,1536634.052,1945125.534,1907405.143,21
+12817,1537298.366,1944001.362,1908190.486,21
+12818,1538502.18,1944058.457,2735850.207,21
+12819,1537748.984,1943476.643,1909269.874,21
+12820,1538039.847,1941759.955,1910641.671,21
+12821,1539453.568,1944217.1,2736823.941,21
+12822,1538470.98,1940603.465,1913991.63,21
+12823,1538633.076,1943493.728,1911600.829,21
+12824,1540312.939,1940191.169,2739367.065,21
+12825,1538726.384,1942018.49,1915352.464,21
+12826,1539675.947,1939810.788,1916116.784,21
+12827,1540350.055,1941444.356,2740964.614,21
+12828,1539941.026,1938524.666,1916123.936,21
+12829,1541576.619,1940883.098,1921464.015,21
+12830,1540194.809,1937444.488,2740024.843,21
+12831,1540327.779,1940701.39,1921809.335,21
+12832,1541859.395,1936419.598,1920816.432,21
+12833,1540990.715,1939576.299,2743220.989,21
+12834,1542289.65,1935975.079,1926389.179,21
+12835,1541505.784,1938338.648,1921358.338,21
+12836,1542953.374,1935458.982,2746494.105,21
+12837,1541216.209,1937531.658,1924347.955,21
+12838,1542605.671,1935852.569,1927741.835,21
+12839,1543553.58,1933868.729,2747275.502,21
+12840,1541803.164,1936964.269,1926984.721,15.6
+12841,0,0,0,15.6
+12842,0,0,820714.9207,15.6
+12843,0,0,6.906148159,15.6
+12844,0,0,0,15.6
+12845,0,427262.0688,820658.4573,15.6
+12846,0,0,0,15.6
+12847,0,0,0,15.6
+12848,0,0,820731.4661,15.6
+12849,0,0,0,15.6
+12850,0,0,0,15.6
+12851,0,0,820845.0736,15.6
+12852,0,0,0,15.6
+12853,0,0,0,15.6
+12854,0,0,820944.6414,15.6
+12855,0,425667.8743,0,15.6
+12856,63506.89655,0,1401410.199,15.6
+12857,0,0,792527.9167,15.6
+12858,9829.055488,0,0,15.6
+12859,24842.1509,0,0,15.6
+12860,16397.21145,0,793743.8475,15.6
+12861,18075.35704,0,0,15.6
+12862,18271.72415,0,0,15.6
+12863,18563.89639,0,794927.3631,15.6
+12864,18711.46455,0,0,15.6
+12865,18901.24722,425613.6207,0,15.6
+12866,19125.55677,0,796043.7893,15.6
+12867,19251.26786,0,0,15.6
+12868,19420.40443,0,0,15.6
+12869,19633.50175,0,797127.9234,15.6
+12870,19930.89177,0,0,15.6
+12871,20135.00659,0,0,15.6
+12872,20248.14256,0,798150.1003,15.6
+12873,20404.43023,0,0,15.6
+12874,20531.16679,0,0,15.6
+12875,20675.42851,425571.4456,799147.608,15.6
+12876,510769.424,0,0,15.6
+12877,21664.09262,0,0,15.6
+12878,48243.40351,0,800083.3091,15.6
+12879,170098.9877,0,0,15.6
+12880,138387.348,0,0,15.6
+12881,128056.7753,0,800990.3494,15.6
+12882,134626.3579,55001.76649,0,15.6
+12883,136056.3112,1010.695738,0,15.6
+12884,136621.2858,6797.614835,801839.08,15.6
+12885,138203.6831,447928.2571,0,15.6
+12886,117062.6617,15273.52993,0,15.6
+12887,117891.3941,16249.39991,802667.6663,15.6
+12888,119103.3566,16928.07804,0,15.6
+12889,197180.6625,17297.66941,0,15.6
+12890,129213.536,17766.23357,803442.579,15.6
+12891,135741.7507,18122.06514,0,15.6
+12892,151163.7643,18550.08261,0,15.6
+12893,145012.1791,18950.71278,804205.4246,15.6
+12894,146640.8524,19338.35661,0,15.6
+12895,147596.5616,445232.3251,0,15.6
+12896,148231.7498,20110.48877,804923.2685,15.6
+12897,149116.3871,20564.44734,0,15.6
+12898,149931.2071,20869.55352,0,15.6
+12899,150627.5584,21312.7992,805629.8534,15.6
+12900,151542.772,21655.69926,0,15.6
+12901,153382.9981,21953.71515,0,15.6
+12902,154707.307,22153.39516,2004009.53,15.6
+12903,155693.382,22357.02035,0,15.6
+12904,156673.3801,491749.3533,0,15.6
+12905,157322.4883,457221.7877,786153.528,15.6
+12906,23768.94448,70987.32491,0,15.6
+12907,23781.64861,209491.5403,0,15.6
+12908,23868.74699,144768.5356,787633.5127,15.6
+12909,23957.77344,153265.5652,0,15.6
+12910,24001.97305,155843.7037,0,15.6
+12911,628410.46,158264.8867,789084.1153,15.6
+12912,24157.80436,136131.9621,0,15.6
+12913,77612.97511,137087.6204,0,15.6
+12914,227768.0953,138955.1077,790463.9611,15.6
+12915,159806.6961,654669.0716,0,15.6
+12916,163882.2406,145668.2934,0,15.6
+12917,167183.4579,158517.0497,791807.2789,15.6
+12918,167337.004,178099.4881,0,15.6
+12919,143734.1492,169998.9288,0,15.6
+12920,144078.3405,173042.3434,793077.6208,15.6
+12921,144443.9037,174597.64,0,15.6
+12922,228854.9427,176042.826,0,15.6
+12923,164078.4389,177990.2495,794308.0618,15.6
+12924,155794.6905,178976.2101,0,15.6
+12925,180514.5173,606258.252,0,15.6
+12926,171007.1411,182105.8172,795469.9317,15.6
+12927,172682.8233,184188.6246,0,15.6
+12928,172859.1817,185079.5849,0,15.6
+12929,173573.0723,187025.9803,796601.3837,15.6
+12930,174044.9025,188263.0084,0,15.6
+12931,172520.0028,189718.838,0,15.6
+12932,172900.9952,191212.2156,797670.0896,15.6
+12933,173684.5902,192647.9765,0,15.6
+12934,173853.4214,27321.8387,0,15.6
+12935,174134.4511,452690.5397,798716.6159,15.6
+12936,174558.2575,27574.84218,0,15.6
+12937,175379.5563,27760.51331,0,15.6
+12938,175210.2297,693632.5691,799708.3578,15.6
+12939,175828.8768,28008.52035,0,15.6
+12940,176064.1457,111673.3154,0,15.6
+12941,25439.99426,286437.6853,800679.4861,15.6
+12942,25487.7024,189722.3771,0,15.6
+12943,25505.42016,207044.1543,0,15.6
+12944,25535.22877,208687.1781,801593.3157,15.6
+12945,653294.4628,605776.7695,0,15.6
+12946,26787.56103,182411.0539,0,15.6
+12947,96708.07169,269997.3063,802490.1958,15.6
+12948,251655.4842,190177.4603,0,15.6
+12949,166599.5154,214011.5795,1362410.608,15.6
+12950,179599.9187,219422.5994,776434.0686,15.6
+12951,180600.8525,216481.7183,0,15.6
+12952,154480.6705,218334.6251,0,15.6
+12953,155103.8542,219727.8544,778322.2443,15.6
+12954,155009.4263,220422.2746,0,15.6
+12955,240178.3747,646775.3309,0,15.6
+12956,177766.2827,223033.4641,780125.0075,15.6
+12957,165562.1697,223881.3449,0,15.6
+12958,190500.2502,225601.6631,0,15.6
+12959,181212.8586,226271.8616,781876.2663,15.6
+12960,182037.3135,227462.7171,0,15.6
+12961,184883.3685,231163.3551,0,15.6
+12962,185328.2439,231710.5073,783492.9373,15.6
+12963,186193.8783,233442.7561,0,15.6
+12964,186432.701,234062.7722,0,15.6
+12965,186861.356,660431.7894,785025.8213,15.6
+12966,187606.1807,236736.5387,0,15.6
+12967,188196.4866,237417.2058,0,15.6
+12968,188368.5286,31753.9855,786469.2405,15.6
+12969,188701.1347,31923.03297,0,15.6
+12970,190000.8275,31947.0852,0,15.6
+12971,189609.2796,772475.9441,787866.6406,15.6
+12972,190434.9104,53952.02514,0,15.6
+12973,190999.7963,180310.9472,0,15.6
+12974,191334.829,309463.5673,789187.0849,15.6
+12975,27018.84146,660499.0617,0,15.6
+12976,27051.36531,247222.1824,0,15.6
+12977,27064.76428,215418.7554,790471.9663,15.6
+12978,27169.89384,216228.2663,0,15.6
+12979,693014.1765,316233.5983,0,15.6
+12980,57784.86474,230485.5106,791689.0175,15.6
+12981,115065.6901,247304.5824,0,15.6
+12982,261602.1739,258286.4125,0,15.6
+12983,186805.2244,253461.2475,792871.6908,15.6
+12984,196846.6747,255718.3599,0,15.6
+12985,170027.5214,680544.1051,0,15.6
+12986,170471.6009,257574.9094,793983.5371,15.6
+12987,249763.5456,257789.9238,0,15.6
+12988,185984.7429,259324.9963,0,15.6
+12989,194034.2977,260026.7083,795066.976,15.6
+12990,202922.5915,260630.2815,0,15.6
+12991,199250.901,262303.4637,0,15.6
+12992,200078.1181,262550.9704,796090.4436,15.6
+12993,200111.9748,263761.5219,0,15.6
+12994,200897.9607,264778.8393,0,15.6
+12995,200668.4844,690053.0627,992847.2463,15.6
+12996,201152.5131,266633.3122,110216.0815,15.6
+12997,201924.6278,267347.7401,234494.3734,15.6
+12998,201507.4223,268543.1504,2072169.844,15.6
+12999,202346.5279,268910.5231,119078.989,15.6
+13000,202659.8095,270087.2716,224722.4407,15.6
+13001,202570.0311,35208.51687,880589.3097,15.6
+13002,203484.1784,35133.56617,113945.8866,15.6
+13003,203406.5205,35322.9989,223978.7535,15.6
+13004,203708.8262,889421.8984,877570.2827,15.6
+13005,204215.9451,536480.1028,113874.5508,15.6
+13006,204547.7086,153857.5625,222812.08,15.6
+13007,204729.4671,369944.2789,874934.7093,15.6
+13008,205034.0831,262554.8961,114125.7844,15.6
+13009,28271.78975,242834.1133,221959.4711,15.6
+13010,28269.68398,243768.7562,872639.789,15.6
+13011,28328.00012,352609.7701,114444.7668,15.6
+13012,28331.41979,263478.9304,221444.4922,15.6
+13013,728463.3628,273384.3708,870585.3981,15.6
+13014,110055.1706,290217.2426,114824.2653,15.6
+13015,90625.26367,707129.9403,221049.5316,15.6
+13016,286778.1682,284826.7975,868741.874,15.6
+13017,169683.3082,285466.7244,115233.1594,15.6
+13018,179358.1317,286164.1855,220773.5337,15.6
+13019,261396.5536,286903.1049,867120.3183,15.6
+13020,200973.4294,287372.3812,115657.8696,15.6
+13021,201972.909,287816.9902,220331.4426,15.6
+13022,214601.8615,285650.8405,865172.9751,15.6
+13023,210255.7881,286537.5482,115388.6456,15.6
+13024,211167.3502,284712.2771,219652.6112,15.6
+13025,211407.6773,709066.314,748334.8869,15.6
+13026,211971.5552,283905.5608,0,15.6
+13027,212880.9703,283102.0731,0,15.6
+13028,212866.685,282375.3706,751230.1447,15.6
+13029,213676.223,281820.9247,0,15.6
+13030,213983.345,280821.4486,0,15.6
+13031,214730.9365,280611.5912,754026.3733,15.6
+13032,214942.2459,279684.3409,218105.5989,15.6
+13033,215700.7978,278819.5602,211046.9128,15.6
+13034,216217.6178,35521.50832,855458.0168,15.6
+13035,216427.2053,460134.2038,123100.4818,15.6
+13036,217302.9382,35436.67036,223672.2943,15.6
+13037,217670.6519,912507.0347,863723.2363,15.6
+13038,218009.676,120635.6833,115859.6969,15.6
+13039,218792.6941,135781.2153,220553.2506,15.6
+13040,219092.3718,375547.7089,862210.1824,15.6
+13041,219657.8998,222253.6378,115393.8959,15.6
+13042,220210.0796,237706.6743,219236.2296,15.6
+13043,29740.45474,343595.4687,860253.3885,15.6
+13044,29802.81226,253259.3265,114953.6735,15.6
+13045,29820.904,686483.0808,218327.3981,15.6
+13046,707706.7708,277170.5257,858402.4582,15.6
+13047,98868.39921,268284.9961,1194696.969,15.6
+13048,150804.0282,268727.4562,209741.2441,15.6
+13049,250473.7917,267414.0128,838629.0494,15.6
+13050,187651.0531,267303.8497,111750.5939,15.6
+13051,278902.3406,266240.7903,209556.7366,15.6
+13052,220342.7562,265623.9498,838485.4973,15.6
+13053,215776.8876,264714.8186,111582.0804,15.6
+13054,232110.0217,263811.6509,209504.598,15.6
+13055,226851.5051,687998.0608,838247.2903,15.6
+13056,227443.1482,262170.2515,111519.6629,15.6
+13057,227917.4172,262463.9813,209417.1933,15.6
+13058,228575.3607,260469.126,837953.1878,15.6
+13059,228751.8395,260307.1263,111457.6026,15.6
+13060,229373.4594,259802.6516,209369.5479,15.6
+13061,229423.1174,258391.848,837740.4776,15.6
+13062,230274.4815,258116.059,0,15.6
+13063,230549.5144,257219.1767,0,15.6
+13064,230955.1023,256263.0804,730395.9425,15.6
+13065,231505.4474,679946.0852,0,15.6
+13066,231838.7634,255040.2232,0,15.6
+13067,232273.1019,32650.67276,734012.5382,15.6
+13068,232743.8943,32726.74385,0,15.6
+13069,233282.6851,32570.5461,311117.104,15.6
+13070,233712.283,831501.7773,831620.8581,15.6
+13071,233797.2964,79899.18527,101889.1235,15.6
+13072,234864.1168,145107.4144,218752.4638,15.6
+13073,234426.5952,302865.8828,846889.9202,15.6
+13074,235646.6484,202622.5696,111693.83,15.6
+13075,235749.5837,738443.9983,213004.836,15.6
+13076,31334.36171,227598.7474,843310.3314,15.6
+13077,31334.89322,241336.7102,112438.1989,15.6
+13078,31383.33574,251352.3305,212124.4853,15.6
+13079,742460.4248,244934.8242,842471.7133,15.6
+13080,156194.3061,244465.302,112141.5189,15.6
+13081,95001.63411,245400.444,211672.5541,15.6
+13082,276001.8034,245604.0753,841866.7028,15.6
+13083,282759.0826,247211.1996,112265.0319,15.6
+13084,233175.343,246950.7446,211576.1887,15.6
+13085,222549.8609,672831.5374,841598.0495,15.6
+13086,240797.9158,248461.3196,112335.3161,15.6
+13087,233036.1465,249849.748,211595.5457,15.6
+13088,233062.8068,249929.1474,841343.6083,15.6
+13089,231738.6187,251285.0166,112478.3916,15.6
+13090,231964.4683,251803.2863,211639.7232,15.6
+13091,230279.0955,252750.854,841132.8441,15.6
+13092,230430.3356,252998.6941,112643.4084,15.6
+13093,229234.042,253949.6222,211638.9033,15.6
+13094,228587.1133,255009.2189,840862.9062,15.6
+13095,228108.1455,679385.7531,112665.566,15.6
+13096,227429.0203,256289.0405,211779.2478,15.6
+13097,226315.6169,256896.058,1876646.705,15.6
+13098,226021.7043,257771.2329,110362.3209,15.6
+13099,225295.5926,258115.5321,0,15.6
+13100,224603.6174,33316.11684,717980.9916,15.6
+13101,223611.5573,33346.03297,0,15.6
+13102,223182.1906,33454.2207,0,15.6
+13103,222444.9053,862117.0213,722085.7694,15.6
+13104,221483.0725,96328.48286,0,15.6
+13105,221252.5675,535605.5277,0,15.6
+13106,220058.8457,320733.4054,948113.6354,15.6
+13107,219847.9735,317827.3631,98602.8617,15.6
+13108,218719.8459,245247.7635,201413.0937,15.6
+13109,29428.67491,259094.9042,845057.8516,15.6
+13110,29317.81699,272521.6258,115528.0442,15.6
+13111,29242.24765,267147.2027,211854.0576,15.6
+13112,702783.3456,267803.3652,837984.3709,15.6
+13113,59329.62542,268931.1455,113891.5204,15.6
+13114,113268.9612,269225.0193,212281.6626,15.6
+13115,324250.5405,694696.2229,837954.0904,15.6
+13116,199166.4779,270521.643,113857.1064,15.6
+13117,203504.9488,271803.5864,212215.9309,15.6
+13118,217716.686,272546.9309,838004.7766,15.6
+13119,211522.29,272825.4241,113997.6262,15.6
+13120,210729.6004,273903.2514,212270.1147,15.6
+13121,210618.6118,274756.8054,838158.865,15.6
+13122,208990.6222,274777.8729,114178.1891,15.6
+13123,209017.4337,276283.6738,212429.1067,15.6
+13124,207792.4163,276513.9645,838303.8071,15.6
+13125,207288.9864,701224.9638,114316.0928,15.6
+13126,206492.2934,278287.9092,212704.415,15.6
+13127,205898.5177,278863.5345,838441.7655,15.6
+13128,204813.8946,279386.0642,114539.4146,15.6
+13129,204511.0211,279975.4895,212913.7172,15.6
+13130,203281.9713,281479.5419,838615.4876,15.6
+13131,203004.3438,281080.7707,114735.9919,15.6
+13132,201738.6777,282989.2091,213122.1845,15.6
+13133,201437.6808,36043.77059,838837.8246,15.6
+13134,200641.6526,36081.6083,114900.7162,15.6
+13135,199702.6449,460260.3871,213396.2023,15.6
+13136,199270.4941,952312.8826,724308.7232,15.6
+13137,198305.6238,104682.4339,0,15.6
+13138,197387.4649,88556.82501,0,15.6
+13139,197233.2534,472249.3166,728145.1327,15.6
+13140,195935.7041,252457.8373,0,15.6
+13141,197412.3478,281482.8521,329422.0732,15.6
+13142,27470.1578,298118.4422,825823.3154,15.6
+13143,27548.82126,292915.1818,101526.8432,15.6
+13144,27646.31428,294853.8554,229335.4535,15.6
+13145,0,720480.374,842537.5431,15.6
+13146,700153.3978,298000.7041,117091.7385,15.6
+13147,163557.9547,299551.2584,1253751.101,15.6
+13148,76154.23379,300823.7511,826870.7893,15.6
+13149,279094.0845,302512.8505,115578.8301,15.6
+13150,204606.6805,304297.2627,210560.8714,15.6
+13151,209839.3612,305498.8024,828353.7576,15.6
+13152,211934.6994,307003.5397,116271.8177,15.6
+13153,213225.3057,308812.2839,211395.4618,15.6
+13154,214554.9353,310070.1785,829776.5952,15.6
+13155,215611.3913,735879.1434,117022.3155,15.6
+13156,217059.7328,313498.1768,212341.8699,15.6
+13157,218207.0463,314366.2521,831226.3923,15.6
+13158,219252.3469,316690.8694,117814.2082,15.6
+13159,220944.5162,317755.257,213284.9712,15.6
+13160,221851.3314,319849.5511,832624.7969,15.6
+13161,223243.6187,320775.057,118651.0581,15.6
+13162,224540.3919,323122.9487,214178.0301,15.6
+13163,225815.1974,323603.9724,833944.7139,15.6
+13164,226808.9739,326073.8911,119483.0559,15.6
+13165,228643.3124,751121.8425,215140.9322,15.6
+13166,229500.2461,41152.83101,835239.938,15.6
+13167,230687.9092,41555.156,120281.5064,15.6
+13168,232452.9301,907955.4392,216050.2027,15.6
+13169,233316.3592,112611.5283,836475.1584,15.6
+13170,234513.3792,245615.1327,121116.2289,15.6
+13171,236506.5371,455843.0083,0,15.6
+13172,236920.917,321559.3991,720135.9486,15.6
+13173,238708.9596,335580.4452,0,15.6
+13174,239761.5763,344017.7619,0,15.6
+13175,241391.7174,768343.5301,972382.9374,15.6
+13176,32462.72839,345065.8771,103081.002,15.6
+13177,0,346326.8253,209343.1797,15.6
+13178,0,348161.0859,860720.879,15.6
+13179,818897.2341,349874.5146,123120.3977,15.6
+13180,195832.5211,351026.659,223241.9535,15.6
+13181,100722.1561,352860.0963,846964.1806,15.6
+13182,337045.0702,354312.6567,125599.9345,15.6
+13183,244034.8571,356061.9201,223425.8351,15.6
+13184,254298.1603,357257.401,847399.9315,15.6
+13185,255725.9049,804373.4036,126176.0181,15.6
+13186,256949.8462,361370.0691,223862.8512,15.6
+13187,258335.9703,364064.57,847916.0061,15.6
+13188,259649.3204,371737.2445,126825.7403,15.6
+13189,261064.3196,371303.633,224418.943,15.6
+13190,261875.9741,372405.8691,848512.4257,15.6
+13191,263854.8157,374387.2837,127509.5741,15.6
+13192,264672.4825,376032.5416,225020.5952,15.6
+13193,265948.9166,377769.334,849106.0613,15.6
+13194,266055.1164,378695.2305,128243.8186,15.6
+13195,267870.3632,805541.5707,225681.1297,15.6
+13196,268831.138,382588.519,849654.0709,15.6
+13197,269804.1602,384797.7294,128983.6856,15.6
+13198,271822.2907,53981.00538,1255742.979,15.6
+13199,272706.78,54186.89715,833722.4452,15.6
+13200,274220.2047,1057748.001,126938.7361,17.8
+13201,1093774.093,1210242.332,2773052.649,17.8
+13202,1075495.704,1126823.835,3349949.359,17.8
+13203,578459.3576,598120.3416,1894587.855,17.8
+13204,631915.0709,831898.2425,1314558.936,17.8
+13205,677788.2853,1120377.614,1964262.716,17.8
+13206,586605.5037,725045.9746,1312609.693,17.8
+13207,538696.6513,741285.364,1516640.621,17.8
+13208,567082.7451,716200.2375,2162276.369,17.8
+13209,17790.25211,670680.8401,1382268.227,17.8
+13210,132471.2475,699158.1783,1439708.928,17.8
+13211,914927.3684,689618.2364,2152438.21,17.8
+13212,680564.8546,686483.5547,1443563.499,17.8
+13213,605331.9666,684718.121,1446810.608,17.8
+13214,537865.6307,683894.5678,2179665.499,17.8
+13215,536800.6717,1076193.252,1461828.589,17.8
+13216,557152.3468,651924.9749,1466538.572,17.8
+13217,538836.1412,728652.8917,2202196.438,17.8
+13218,537689.2417,655982.0055,1479577.107,17.8
+13219,536575.6533,680697.1546,1484320.151,17.8
+13220,534449.2345,676618.2153,2221190.99,17.8
+13221,534750.2762,674123.1555,1495055.205,17.8
+13222,532253.6539,673900.1645,1494941.744,17.8
+13223,532464.8331,672785.4108,2237863.692,17.8
+13224,530378.2873,671634.0388,1504640.469,17.8
+13225,530085.9275,1094088.935,1506257.488,17.8
+13226,528518.3027,669368.6805,2250773.144,17.8
+13227,528061.6886,668493.2884,1513361.584,17.8
+13228,526991.3594,667317.9637,1515358.85,17.8
+13229,526294.2785,666890.7731,2259817.881,17.8
+13230,864700.5252,122758.3455,1522105.713,17.8
+13231,506843.7259,122630.0839,285321.3302,17.8
+13232,506371.1657,1112974.714,924865.0002,17.8
+13233,505270.9658,817325.5805,186784.4705,17.8
+13234,505048.5506,551129.5829,2834702.728,17.8
+13235,558416.6069,1174587.981,1895924.226,17.8
+13236,513959.589,686039.7387,1220599.818,17.8
+13237,513045.1843,644650.2882,1430064.454,17.8
+13238,524787.0396,674112.9289,1384392.336,17.8
+13239,518808.2215,661677.9321,1575099.391,17.8
+13240,439887.2933,661560.7674,2528116.477,17.8
+13241,17683.09125,659640.8272,1646164.515,17.8
+13242,134614.7908,658853.9584,1437407.798,17.8
+13243,925941.6267,658384.0495,1431446.831,17.8
+13244,630356.2301,657760.0109,1437400.304,17.8
+13245,589138.0602,1079571.8,1451180.72,17.8
+13246,473764.0375,657103.7551,1680261.768,17.8
+13247,541075.6609,626555.4553,1444861.9,17.8
+13248,524143.8442,627306.0586,1457761.873,17.8
+13249,518887.9119,625423.0338,1461260.364,17.8
+13250,515839.5914,714640.8861,1469839.849,17.8
+13251,516488.1014,634806.4185,1477003.088,17.8
+13252,515687.9112,649446.4816,1483879.676,17.8
+13253,514656.8344,656284.1409,1488734.871,17.8
+13254,514349.608,651346.6317,1496584.299,17.8
+13255,514195.9591,1073843.296,1500834.795,17.8
+13256,513386.0501,651383.3071,1505518.066,17.8
+13257,512575.3765,649450.7279,2209169.121,17.8
+13258,512823.1264,649702.6702,1557789.284,17.8
+13259,511584.7692,649217.1782,1524480.673,17.8
+13260,511851.2877,648267.5328,1529007.69,20
+13261,2317102.953,2613323.455,4591513.571,20
+13262,2326295.032,344359.0559,3757750.792,20
+13263,2173538.486,2298561.36,3129551.203,20
+13264,902018.1532,2157441.987,610499.423,20
+13265,807830.2076,1700950.838,2811423.072,20
+13266,1233881.58,994528.9367,2590170.82,20
+13267,1173125.425,1496611.598,2667227.643,20
+13268,1115308.683,1224314.938,2615102.33,20
+13269,1100484.056,1247342.505,2269184.826,20
+13270,1440839.342,1240061.211,2567104.002,20
+13271,1102801.674,1233974.29,2450755.312,20
+13272,961074.5228,1228626.597,2482516.484,20
+13273,241669.3664,1224139.145,2699189.115,20
+13274,1212586.05,1220881.651,2430202.691,20
+13275,1217713.296,1638230.069,2434169.924,20
+13276,1020118.702,1212960.967,2435662.102,20
+13277,1106122.634,1207783.714,2432503.839,20
+13278,1091679.43,1204984.856,2436809.312,20
+13279,1085793.361,1201521.542,2438511.67,20
+13280,1083591.695,1147243.238,2437115.217,20
+13281,1081837.903,1145166.934,2440376.564,20
+13282,1082351.753,1244380.691,3391826.83,20
+13283,1079078.08,1199503.845,2398524.348,20
+13284,1078917.507,1179955.379,2640211.036,20
+13285,1078314.981,1606824.225,2374635.047,20
+13286,1075695.322,1183116.916,2386371.729,20
+13287,1075262.719,1177475.852,2391431.631,20
+13288,1075263.424,1174827.392,2401519.759,20
+13289,1073763.24,1173288.766,2404313.308,20
+13290,1072446.473,1171445.551,2412285.669,20
+13291,1073250.002,1166396.191,2304807.221,20
+13292,1069939.53,1168191.118,2304578.399,20
+13293,1071537.356,194097.1134,2306506.465,20
+13294,1070099.728,1320744.47,2305840.934,20
+13295,1069190.581,1817125.685,1164530.724,20
+13296,1068357.266,1033930.671,420820.8361,20
+13297,1031037.991,1211131.73,2910463.841,20
+13298,1027665.869,1150543.141,2722158.376,20
+13299,1104764.846,1158407.963,2417887.193,20
+13300,1082276.937,1152724.666,2238348.552,20
+13301,1062387.833,1150667.683,2013516.066,20
+13302,1065729.342,1149925.381,2572398.735,20
+13303,935796.7491,1146987.637,2414776.446,20
+13304,220211.778,1146983.857,2414568.941,20
+13305,1167335.297,1568304.001,2406947.871,20
+13306,1199771.525,1143595.158,2427469.957,20
+13307,987289.0345,1140743.423,2413566.975,20
+13308,1087770.601,1141450.342,2421829.948,20
+13309,1067596.522,1138796.08,2423519.624,20
+13310,1403112.129,1137174.616,2426268.239,20
+13311,1065280.836,1136603.384,2428602.765,20
+13312,1062579.567,1087931.861,2425572.171,20
+13313,1063838.636,1087791.755,2431739.835,20
+13314,1064016.102,1185722.227,2430102.595,20
+13315,1062902.041,1560144.62,2433543.809,20
+13316,1063029.506,1124418.346,2434447.966,20
+13317,1063984.501,1128881.474,2433733.549,20
+13318,1062044.01,1129844.553,2434162.934,20
+13319,1062990.861,1126382.281,3117249.236,20
+13320,1063942.692,1126152.001,2483568.748,21
+13321,2346654.035,3003079.579,4935662.47,21
+13322,2323186.125,2386195.172,4543759.391,21
+13323,953205.817,988059.3281,2482201.168,21
+13324,1231074.579,1367261.123,3028677.503,21
+13325,1331369.751,1846736.43,3137110.201,21
+13326,1245497.492,1337845.59,2853928.764,21
+13327,1236258.386,1321321.962,2906943.595,21
+13328,1234779.551,1300083.594,2868255.248,21
+13329,1229009.27,1308740.822,2856633.028,21
+13330,1228937.849,1299425.297,2843559.705,21
+13331,1222719.312,1297432.171,2836776.101,21
+13332,1222633.781,1292582.919,2831337.811,21
+13333,1216660.044,1290488.147,2816298.998,21
+13334,1216767.108,1287945.506,2806234.914,21
+13335,1212530.865,1706016.19,2800188.604,21
+13336,1210532.675,1283178.425,2794450.76,21
+13337,1207368.531,1277102.115,2785631.683,21
+13338,1205755.208,1276512.82,2782564.258,21
+13339,1203068.734,1273739.321,3464486.803,21
+13340,1201495.506,1269612.707,2818026.78,21
+13341,1197097.309,1269830.443,2776628.841,21
+13342,1198245.971,1264504.687,2767214.276,21
+13343,1193697.263,1264986.658,2765268.4,21
+13344,1193716.516,1261805.033,2757342.693,21
+13345,1190102.073,1681906.524,2753928.116,21
+13346,1188798.413,1258113.179,2747747.376,21
+13347,1186945.645,1256603.948,2746862.809,21
+13348,1185381.365,1253018.674,2740055.896,21
+13349,1183677.427,1250998.599,2738148.183,21
+13350,1181654.643,1251535.606,2735448.827,21
+13351,1181307.448,1248467.374,2734231.926,21
+13352,1177627.726,1245683.93,2725302.171,21
+13353,1177893.559,1245843.939,2727640.272,21
+13354,1176032.878,1242563.897,2724101.128,21
+13355,1173976.216,1664344.609,2719089.932,21
+13356,1173760.313,1240370.681,3410620.608,21
+13357,1171537.035,1238329.455,2765308.532,21
+13358,1170330.188,1236171.303,2719342.75,21
+13359,1169099.595,1236091.195,2723448.808,21
+13360,1167743.188,1233457.677,2716226.673,21
+13361,1166482.286,1231609.487,2712100.953,21
+13362,1164808.624,1232652.628,2711488.143,21
+13363,1163424.319,1229561.761,2705467.983,21
+13364,1163953.548,1228099.958,2706908.786,21
+13365,1160133.902,1650397.903,2701275.906,21
+13366,1162276.405,1224998.802,2698708.373,21
+13367,1157378.776,1226266.321,2701400.619,21
+13368,1158222.339,1221948.473,2699411.252,21
+13369,1158257.675,1223297.202,2690931.071,21
+13370,1154359.913,1220186.682,2693325.648,21
+13371,1154754.064,1220599.831,2691813.336,21
+13372,1154403.722,1218983.435,3382668.568,21
+13373,1150950.294,1216598.247,2734456.01,21
+13374,1153457.855,1218432.538,2696110.812,21
+13375,1149169.26,1636350.077,2691692.68,21
+13376,1149702.932,1216302.52,2689420.621,21
+13377,1148369.656,1212715.661,2686743.515,21
+13378,1147267.664,1210920.888,2684954.611,21
+13379,1146514.572,1213100.962,2684383.123,21
+13380,1144827.627,1209789.567,2679577.017,21
+13381,1927002.543,2391648.963,2625157.475,21
+13382,1916098.479,2387430.9,2614704.011,21
+13383,1912827.45,2384597.111,2612407.138,21
+13384,1910738.612,2382666.936,2611672.202,21
+13385,1907478.087,2381280.642,2612331.426,21
+13386,1903844.476,2380988.424,2606503.58,21
+13387,1900102.285,2378496.129,2605377.526,21
+13388,1896212.81,2377256.964,3300807.08,21
+13389,1896087.86,2378444.716,2649717.233,21
+13390,1890816.271,2373382.528,2613733.641,21
+13391,1889259.915,2374566.031,2608196.126,21
+13392,1884955.369,2373692.648,2609773.496,21
+13393,1882042.885,2392426.814,2603137.883,21
+13394,1880388.959,2381383.251,2605173.8,21
+13395,1878138.283,2382873.705,2601851.528,21
+13396,1873558.281,2384082.274,2600489.133,21
+13397,1871638.741,2753880.473,2599565.432,21
+13398,1868826.173,2382984.862,2600826.319,21
+13399,2253927.409,2378318.424,2595708.449,21
+13400,1864151.286,2382267.846,2600429.558,21
+13401,1860128.499,2377529.291,2594074.043,21
+13402,1858390.579,2380445.017,2595028.301,21
+13403,1856267.384,2376903.092,2593570.688,21
+13404,1851922.176,2377437.923,3288212.643,21
+13405,1850559.862,2377337.381,2640195.078,21
+13406,1847700.055,2375246.464,2602567.91,21
+13407,1845675.981,2375837.502,2596907.889,21
+13408,1842091.99,2375048.429,2598295.773,21
+13409,1840360.082,2374642.566,2598186.869,21
+13410,1838009.911,2372714.852,2592181.503,21
+13411,1835164.776,2373614.382,2594841.861,21
+13412,1833263.227,2372082.023,2595080.76,21
+13413,1829273.284,2372597.755,2590494.699,21
+13414,1828204.591,2371154.222,2590954.139,21
+13415,1825465.923,2370967.472,2590857.616,21
+13416,1822634.502,2743124.753,2589139.525,21
+13417,1820402.242,2369163.516,2589752.268,21
+13418,1818762.457,2370340.126,2587090.658,21
+13419,1814147.688,2367083.411,2589882.982,21
+13420,1811122.54,2366872.063,2587492.365,21
+13421,1809829.527,2366765.687,2586206.875,21
+13422,1805331.942,2364939.148,2587742.838,21
+13423,1803707.857,2365522.343,2586226.615,21
+13424,2189581.408,2364194.702,2587947.475,21
+13425,1797217.212,2362721.052,2584630.937,21
+13426,1795949.728,2364103.76,2587085.181,21
+13427,1791249.083,2361045.058,2585776.02,21
+13428,1790930.504,2363727.017,2828273.959,21
+13429,1787319.582,2359935.101,2536851.105,21
+13430,1784668.288,2361067.286,2541954.37,21
+13431,1768481.686,2359637.717,2544875.599,21
+13432,1764235.763,2359797.124,2550290.472,21
+13433,1756652.53,2359083.128,2553548.522,21
+13434,1755129.092,2357277.156,2555632.601,21
+13435,1749093.48,2730926.267,2557219.743,21
+13436,1746376.185,2356251.493,2560088.631,21
+13437,1741537.927,2358531.125,2561621.416,21
+13438,1736899.494,2355177.895,2563037.884,21
+13439,1733190.655,2355323.71,3252584.192,21
+13440,1729581.621,2356414.802,2612229.607,21
+13441,1491120.929,2102751.704,2106684.277,21
+13442,1474080.506,2087688.371,2073324.63,21
+13443,1466774.206,2079965.387,2061553.726,21
+13444,1457255.154,2077085.709,2054875.818,21
+13445,1451894.484,2073388.765,2044024.748,21
+13446,1446490.254,2071411.478,2038575.621,21
+13447,1439580.257,2067571.153,2030371.571,21
+13448,1434273.561,2064407.842,2023838.063,21
+13449,1821049.454,2062360.512,2017274.568,21
+13450,1423397.689,2060603.002,2012151.84,21
+13451,1419076.334,2057547.532,2004351.055,21
+13452,1414093.129,2054738.371,1996921.557,21
+13453,1408161.861,2054088.618,1993782.625,21
+13454,1404754.764,2050907.013,1986198.342,21
+13455,1397789.693,2424400.791,2035393.533,21
+13456,1395317.046,2047629.709,1967832.786,21
+13457,1389245.057,2044965.619,1963623.257,21
+13458,1384857.092,2045603.8,1959100.301,21
+13459,1381007.601,2041444.35,1953136.111,21
+13460,1375628.598,2040598.494,1950522.368,21
+13461,1371443.278,2039857.954,1944762.038,21
+13462,1366895.939,2036706.76,1940389.733,21
+13463,1362754.113,2036482.212,1935480.188,21
+13464,1357577.265,2033573.364,2631297.433,21
+13465,1354716.183,2033834.835,1970764.613,21
+13466,1348967.26,2031025.543,1928813.382,21
+13467,1347358.614,2030992.142,1923813.073,21
+13468,1340431.751,2027381.644,1919552.242,21
+13469,1338288.941,2028825.166,1912360.969,21
+13470,1334393.575,2025198.094,1908499.065,21
+13471,1329262.995,2025327.914,1903055.089,21
+13472,1326205.742,2024248.893,1898484.593,21
+13473,1321169.934,2020465.647,1891345.579,21
+13474,1317999.096,2022651.328,1887478.998,21
+13475,1314366.843,2019134.782,1882400.955,21
+13476,1308243.576,2018382.618,1877689.412,21
+13477,1305981.23,2018637.666,1933763.585,21
+13478,1301908.071,2016523.342,1858645.507,21
+13479,1297522.781,2015381.803,1854384.17,21
+13480,1293559.435,2013246.306,1853556.69,21
+13481,1289474.734,2014617.154,1846681.899,21
+13482,1286368.888,2011755.443,1843400.618,21
+13483,1281169.911,2012240.336,1839795.487,21
+13484,1277675.394,2009153.146,1833981.004,21
+13485,1274859.787,2010063.118,1830643.227,21
+13486,1269172.918,2008088.245,2532528.744,21
+13487,1266190.945,2008175.521,1864169.777,21
+13488,1262511.836,2006873.414,1824135.504,21
+13489,1257027.606,2004827.07,1819222.574,21
+13490,1255703.287,2006553.046,1812730.678,21
+13491,1249434.785,2003230.992,1809308.405,21
+13492,1246556.01,2003229.223,1805546.918,21
+13493,1243899.559,2003411.107,1797971.616,21
+13494,1629785.172,2000364.717,1796570.895,21
+13495,1235404.797,2002441.422,1788502.34,21
+13496,1231724.014,1998967.352,1787473.866,21
+13497,1626862.82,1999776.224,1782063.421,21
+13498,1222912.395,1997082.56,1777648.73,21
+13499,1221253.012,1998479.397,1824540.323,21
+13500,1616069.25,1997360.428,1762915.226,21
+13501,1210651.625,1997852.24,1758152.697,21
+13502,1204691.045,1995151.091,1751904.467,21
+13503,1601115.143,1993882.357,1763301.426,21
+13504,1193220.597,1992863.007,2010048.269,21
+13505,1189559.817,1991356.083,1707980.502,21
+13506,1583844.073,1990899.256,1710817.475,21
+13507,1178659.096,1988926.581,1704835.79,21
+13508,1171841.698,1987942.793,1703498.597,21
+13509,1570552.13,1986909.527,1954713.459,21
+13510,1160292.163,1985962.44,1670893.416,21
+13511,1158271.713,1983735.121,1674581.891,21
+13512,1552869.393,1983314.043,1670629.975,21
+13513,1145783.259,1981512.603,1669019.981,21
+13514,1141524.161,1981308.86,1915263.412,21
+13515,1537752.473,1979689.524,1641362.612,21
+13516,1130407.632,1978201.048,1644439.842,21
+13517,1125052.67,1977068.078,1640528.67,21
+13518,1522327.334,1976339.981,1640978.157,21
+13519,1113459.132,1975435.376,1886324.116,21
+13520,1109131.692,1973410.202,1613178.758,21
+13521,1505956.661,1973216.546,1618161.732,21
+13522,1097660.328,1971280.933,1614508.5,21
+13523,1093115.707,1970040.512,1614231.571,21
+13524,1490097.106,1969637.773,1861547.503,21
+13525,1083067.792,1968389.139,1587556.822,21
+13526,1075828.99,1966911.476,1593272.513,21
+13527,1475652.978,1966210.119,1590406.149,21
+13528,1066937.424,1965093.572,1587333.556,21
+13529,1059907.473,1963713.033,1839138.182,21
+13530,1460246.651,1962603.641,1563717.052,21
+13531,1050926.881,1962041.177,1569665.485,21
+13532,1047203.407,1960427.281,1565111.997,21
+13533,1446174.081,1959398.662,1566408.878,21
+13534,1038080.316,1958923.303,1815620.07,21
+13535,1033896.28,1957566.062,1542499.484,21
+13536,1432009.499,1955506.799,1548001.128,21
+13537,1025867.911,1956339.457,1546051.472,21
+13538,1020995.395,1953768.531,1546742.199,21
+13539,1419856.976,1953219.024,1796253.642,21
+13540,1011585.451,1952150.992,1522117.907,21
+13541,1009279.87,1951186.094,1527451.512,21
+13542,1407090.926,1950882.436,1525566.643,21
+13543,1000814.39,1948984.124,1526014.877,21
+13544,995205.9559,1947741.22,1778304.429,21
+13545,1395888.655,1948021.306,1504071.662,21
+13546,987946.5067,1945381.621,1509125.068,21
+13547,983793.4732,1945419.452,1507012.846,21
+13548,1383410.615,1944887.17,1507055.284,21
+13549,976567.9305,1941927.059,1762656.911,21
+13550,971153.7383,1943989.395,1485214.889,21
+13551,1373588.726,1940757.869,1491365.265,21
+13552,963238.6664,1940813.312,1488551.675,21
+13553,961234.7203,1938808.149,1490283.938,21
+13554,1360391.981,1938621.403,1744979.057,21
+13555,953598.3233,1937982.309,1468182.143,21
+13556,949019.6677,1936248.731,1473508.365,21
+13557,944794.2976,1935655.608,1471357.617,21
+13558,942766.3473,1934881.833,1471714.431,21
+13559,937399.6136,1934249.38,1729078.236,21
+13560,935854.2154,1932661.367,1451702.446,21
+13561,930900.7554,1933219.305,1465468.975,21
+13562,929925.6779,1931285.077,1464169.394,21
+13563,924683.248,1931525.087,1465863.416,21
+13564,922675.0688,1931164.388,1723739.523,21
+13565,919763.522,1930260.565,1445451.275,21
+13566,916524.7569,1930042.501,1449923.199,21
+13567,914569.7437,1928598.654,1448970.043,21
+13568,910653.7325,1928845.79,1449313.726,21
+13569,907416.8629,1928292.76,1710384.933,21
+13570,905649.6408,1926836.234,1429324.457,21
+13571,902205.6541,1926445.463,1434511.041,21
+13572,899130.8422,1926141.808,1433488.4,21
+13573,896065.6593,1925577.552,1433652.844,21
+13574,894435.1245,1925716.384,1695994.985,21
+13575,890569.0408,1923322.906,1414393.695,21
+13576,887673.8375,1924116.844,1419098.197,21
+13577,885010.0689,1923277.413,1417839.73,21
+13578,882254.2637,1921692.625,1418497.819,21
+13579,878995.9704,1922771.663,1681730.591,21
+13580,876401.4687,1921552.925,1399290.147,21
+13581,874175.5692,1920219.744,1404624.614,21
+13582,870724.0345,1920887.713,1401674.379,21
+13583,868046.0503,1919664.206,1403801.899,21
+13584,864837.0631,1919245.482,1667992.203,21
+13585,862908.9329,1918826.072,1383402.295,21
+13586,859647.2872,1917698.845,1389361.642,21
+13587,856740.0407,1917446.742,1387051.567,21
+13588,853787.1942,1917283.145,1388578.312,21
+13589,850382.2127,1916310.148,1653792.535,21
+13590,849149.9552,1916117.244,1368856.386,21
+13591,844558.5622,1915685.53,1372719.829,21
+13592,843947.439,1914677.748,1369013.222,21
+13593,840869.2477,1914000.014,1367965.233,21
+13594,838056.0319,1914375.575,1629390.088,21
+13595,834445.0324,1912114.528,1340671.606,21
+13596,833287.285,1914398.825,1344995.89,21
+13597,828883.6429,1911327.546,1340061.693,21
+13598,826269.4416,1912434.567,1339723.501,21
+13599,823996.5848,1911075.469,1606032.483,21
+13600,821031.6684,1910123.673,1317397.213,21
+13601,817384.934,1910642.786,1320772.082,21
+13602,815907.5755,1909061.853,1315871.167,21
+13603,811635.1873,1909217.234,1312209.579,21
+13604,810229.1692,1909416.824,1578765.338,21
+13605,805457.4116,1907535.954,1289083.419,21
+13606,804220.3548,1908309.342,1292607.764,21
+13607,800342.4281,1907633.268,1287792.541,21
+13608,798184.4429,1905906.025,1286587.645,21
+13609,795472.9668,1906764.03,1556153.74,21
+13610,791284.1211,1905151.369,1264803.569,21
+13611,789383.1215,1905772.355,1268021.809,21
+13612,786795.3065,1905100.674,1263525.017,21
+13613,782616.5933,1903529.089,1262593.775,21
+13614,780526.6194,1904543.72,1532811.127,21
+13615,777856.3363,1902588.004,1241006.688,21
+13616,774375.5587,1903268.613,1244331.113,21
+13617,771597.1141,1901745.784,1240093.11,21
+13618,768016.9478,1878506.865,1238987.516,21
+13619,766252.6726,1875319.474,1505638.51,21
+13620,761931.2443,1873589.011,1214372.048,21
+13621,759349.9547,1872215.809,1202909.04,21
+13622,756538.0125,1867677.532,1194018.163,21
+13623,754509.8213,1866973.271,1188251.796,21
+13624,752959.5318,1863951.219,1454982.691,21
+13625,751864.9919,1864862.176,1158300.749,21
+13626,749948.2373,1860235.085,1156969.197,21
+13627,748086.1098,1861267.911,1188770.916,21
+13628,746281.5858,1857863.339,1140375.621,21
+13629,744088.1399,1858628.94,1133463.403,21
+13630,743168.861,1853909.698,1129466.102,21
+13631,740501.3855,1855050.564,1122566.112,21
+13632,739317.3427,1852045.098,1117434.185,21
+13633,736852.1205,1851257.825,1110807.522,21
+13634,735401.1085,1848322.468,1104798.882,21
+13635,733929.2232,1848985.952,1844678.709,21
+13636,730966.2672,1846977.826,1095380.991,21
+13637,729364.1416,1844116.209,1089154.285,21
+13638,728540.7783,1844283.547,1858613.887,21
+13639,725236.4146,1842090.877,1077077.998,21
+13640,724293.0918,1839825.769,1070498.243,21
+13641,721905.8057,1839458.081,1850132.465,21
+13642,721236.7933,1837597.123,1059553.648,21
+13643,717254.4401,1835899.406,1052983.611,21
+13644,717038.3171,1834755.775,1840098.589,21
+13645,714645.2099,1832563.432,1041500.546,21
+13646,712500.5399,1831559.681,1035402.492,21
+13647,710505.7599,1830684.937,1827836.434,21
+13648,709447.6808,1827053.232,1024719.889,21
+13649,706729.3387,1827135.544,1018046.546,21
+13650,704964.0016,1824798.332,1815203.809,21
+13651,703420.1659,1825086.246,1007395.415,21
+13652,701908.5549,1822541.635,1001116.204,21
+13653,699494.7352,1822915.238,1804071.311,21
+13654,698082.1491,1820779.805,990492.5752,21
+13655,696568.1809,1821257.355,985463.6028,21
+13656,695110.3485,1819298.771,1792395.115,21
+13657,692567.05,1819682.002,974093.6268,21
+13658,691494.6045,1817643.264,969535.8886,21
+13659,689664.2465,1818347.771,1779973.49,21
+13660,687211.0154,1817214.24,958910.1431,21
+13661,686198.8659,1817243.345,952088.6183,21
+13662,684737.5586,1815119.43,1768926.599,21
+13663,682296.7665,1815532.758,941870.903,21
+13664,681090.1526,1815003.698,936569.6519,21
+13665,679133.4317,1814534.726,1756119.422,21
+13666,677660.7843,1812156.099,926036.9485,21
+13667,676438.2445,1811231.869,919270.9066,21
+13668,673556.692,1812213.187,1744725.507,21
+13669,672393.1649,1809895.736,908523.513,21
+13670,671255.5565,1811039.954,904447.9727,21
+13671,668511.1065,1809870.923,1731186.511,21
+13672,667552.3342,1809710.454,891651.9067,21
+13673,666425.1976,1809646.428,885324.0528,21
+13674,663576.2037,1808540.068,1717247.59,21
+13675,662473.6325,1810260.25,874848.2689,21
+13676,660594.9074,1807673.257,869157.4826,21
+13677,658950.2622,1808951.053,1704592.161,21
+13678,657868.3768,1808580.585,858248.6323,21
+13679,655830.3408,1808495.503,852766.1715,21
+13680,653838.577,1807351.624,1691768.9,21
+13681,722128.1821,1889225.196,889538.3925,21
+13682,719265.19,1887897.168,888163.921,21
+13683,719044.8036,1887703.53,1733396.24,21
+13684,716844.9138,1889419.935,882254.8568,21
+13685,714912.0272,1888774.053,880633.0497,21
+13686,714340.1083,1889753.361,1728492.54,21
+13687,713300.9491,1887954.313,874584.9026,21
+13688,709676.9659,1889769.409,872932.1799,21
+13689,710354.1422,1888997.65,1723168.035,21
+13690,707409.0512,1890307.787,867114.2325,21
+13691,706603.404,1889702.172,864287.0739,21
+13692,704566.6808,1890317.788,1717905.738,21
+13693,703212.4255,1890992.586,859200.7678,21
+13694,701815.2845,1892955.308,855466.4937,21
+13695,700717.2326,1891549.505,1712682.583,21
+13696,698312.9457,1893572.799,849879.0579,21
+13697,696894.5011,2267220.842,845169.486,21
+13698,695546.4434,1893839.73,1264693.118,21
+13699,694410.3469,1894127.555,823235.6738,21
+13700,692135.567,1893963.791,824600.4538,21
+13701,691430.5528,1893749.742,893657.2462,21
+13702,688534.7776,1895574.905,859299.0026,21
+13703,688582.7126,1894653.935,809068.2269,21
+13704,685920.2702,1896305.117,813834.7558,21
+13705,683856.7096,1895351.783,804285.2112,21
+13706,683860.232,1895755.342,802095.1312,21
+13707,679969.3215,1898130.944,799541.1477,21
+13708,679685.8579,1898870.966,797007.5174,21
+13709,677306.2737,1899135.038,794874.4408,21
+13710,675815.6472,1900285.498,793205.3956,21
+13711,675358.3594,1897536.021,791824.4936,21
+13712,671597.8707,1897854.334,790148.7898,21
+13713,670491.6,1899117.445,788703.1735,21
+13714,669813.6627,1897201.09,787015.0536,21
+13715,666260.2398,1896719.797,785043.2177,21
+13716,665887.4921,1896929.109,784116.1454,21
+13717,663700.5698,1895425.577,781891.7143,21
+13718,662723.4579,1895924.357,781023.9336,21
+13719,659577.7609,1896440.02,778241.9462,21
+13720,661295.6981,1895248.806,776859.7847,21
+13721,658284.1135,1894892.5,774993.9496,21
+13722,656655.0477,1895901.925,772719.6076,21
+13723,655237.0895,1893076.044,770996.452,21
+13724,653896.3068,1895495.476,769075.356,21
+13725,651503.0799,1893706.214,766137.8303,21
+13726,649874.5068,1894166.102,764280.0744,21
+13727,649384.4394,1893307.935,762065.3331,21
+13728,645353.528,1892820.968,760059.7009,21
+13729,644196.5392,1893528.696,750513.051,21
+13730,643951.8581,1890782.569,751906.1065,21
+13731,639746.9832,1889797.938,746923.4243,21
+13732,640084.2006,1890224.297,744680.7359,21
+13733,637300.1562,1888998.94,741134.34,21
+13734,637164.9502,1888817.133,738506.6329,21
+13735,633473.1488,2263904.977,734917.0184,21
+13736,633189.963,1888893.662,731233.7321,21
+13737,631205.3879,1886444.374,728425.0264,21
+13738,629414.8416,1887898.149,724961.2792,21
+13739,627211.8726,1886481.073,721626.8203,21
+13740,626705.3078,1886497.749,715926.4735,21
+13741,568717.7882,1803000.626,676795.0722,21
+13742,568207.1351,1802598.745,674997.6867,21
+13743,568042.2709,1798390.126,672675.3006,21
+13744,568521.901,1798439.735,669501.8181,21
+13745,568595.9342,1794843.463,671306.1778,21
+13746,569193.9039,1794654.471,666717.5573,21
+13747,568839.7585,1791600.795,664973.3958,21
+13748,569593.6075,1790195.15,663139.3878,21
+13749,569996.3438,1786848.307,659326.3235,21
+13750,569682.4412,1785286.576,660975.5214,21
+13751,571061.5127,1782476.757,656331.3108,21
+13752,570220.3819,1782145.098,655011.1591,21
+13753,571083.6091,1779414.346,653067.4795,21
+13754,571420.5625,1777076.911,648770.7548,21
+13755,571477.6475,1776848.832,651145.5262,21
+13756,571967.6331,1773735.099,645594.542,21
+13757,572466.9171,1773311.826,644529.0394,21
+13758,572469.9332,1771334.311,642460.3961,21
+13759,573059.6353,1769364.758,638293.7905,21
+13760,572938.5626,1770455.552,640013.2463,21
+13761,573700.5882,1768677.534,634265.9639,21
+13762,573937.6016,1766870.617,632498.7753,21
+13763,574118.9491,1765219.659,630991.8281,21
+13764,574496.072,1764287.106,626349.2844,21
+13765,570573.3923,1761610.458,627875.419,21
+13766,572380.6,1761068.028,623300.247,21
+13767,572162.1536,1758687.637,621798.1684,21
+13768,571248.3264,1757494.129,618817.1296,21
+13769,571781.7731,1753422.672,615494.401,21
+13770,571243.074,1752464.752,616334.4164,21
+13771,571496.5646,1750879.114,611360.9597,21
+13772,571439.7203,1750487.105,609863.6384,21
+13773,571965.1682,1748655.803,607920.7119,21
+13774,572110.5421,1747697.185,603171.7356,21
+13775,572449.9023,1746679.225,604252.5989,21
+13776,572350.5137,1745822.724,600023.6565,21
+13777,573094.0551,1745083.947,598014.4753,21
+13778,573191.177,1743682.906,595016.3833,21
+13779,573458.5391,1742993.935,592019.9847,21
+13780,573921.0962,1742140.321,591898.5911,21
+13781,574105.385,1741037.817,587366.2746,21
+13782,574771.9852,1740124.941,585988.1473,21
+13783,574168.591,1739587.439,582501.7238,21
+13784,575528.8744,1737759.194,579576.2414,21
+13785,575201.4458,1737921.438,579963.8162,21
+13786,575946.9198,1736816.087,574953.9037,21
+13787,575776.7267,1735631.351,573496.3141,21
+13788,576397.7766,1734925.278,569031.2371,21
+13789,576955.5693,1734088.898,570315.0477,21
+13790,576798.363,1732936.232,564934.9966,21
+13791,577264.3144,1732544.82,563389.0398,21
+13792,577815.0398,1731217.88,560549.9776,21
+13793,577762.8044,1730643.405,556854.7405,21
+13794,578501.2234,1729435.718,557340.9658,21
+13795,578432.0189,1728799.242,552852.8939,21
+13796,579006.691,1727762.043,550904.4405,21
+13797,579331.393,1727586.277,546760.229,21
+13798,579326.2327,1725923.935,547272.5401,21
+13799,580237.4923,1724280.451,542662.5543,21
+13800,580135.5688,1721194.25,541108.7127,21
+13801,584185.8203,1726052.086,545555.6814,21
+13802,582899.4281,1725553.076,546763.4762,21
+13803,581864.6628,1725708.597,541578.6652,21
+13804,580452.9897,1725868.001,546570.8762,21
+13805,579875.1781,1725714.037,524311.3392,21
+13806,577702.0068,1725561.162,542405.9295,21
+13807,577395.9596,1725945.546,530419.2075,21
+13808,575955.1031,2102033.723,530335.186,21
+13809,574656.0113,1725740.441,527177.8357,21
+13810,573501.9339,1725869.214,523785.6364,21
+13811,572819.6036,1725626.663,523712.4437,21
+13812,570654.1474,1726031.77,520495.3627,21
+13813,570507.4776,1725905.504,518985.6231,21
+13814,568740.9347,1726341.109,522237.739,21
+13815,567733.9943,1726141.329,500786.6082,21
+13816,566756.3928,1726039.038,518310.0197,21
+13817,565423.3049,1726326.498,506774.6736,21
+13818,564127.6664,1727016.519,506284.5624,21
+13819,563164.7805,1726340.653,504293.0104,21
+13820,561837.482,1726969.666,499456.1701,21
+13821,560769.438,1727060.607,500459.5483,21
+13822,559544.8948,1726983.588,495618.015,21
+13823,558456.8785,1727497.127,493503.3429,21
+13824,557120.9285,1727824.76,497470.716,21
+13825,556283.0094,1727589.02,475413.5281,21
+13826,554746.7255,1728048.928,492326.8126,21
+13827,553574.6627,1728253.008,480363.4379,21
+13828,552404.6325,1728907.846,481130.6523,21
+13829,550605.3926,1728313.828,477633.8974,21
+13830,549546.3459,1729288.642,474010.6076,21
+13831,548470.6239,1728633.39,474580.2811,21
+13832,546925.3035,1728967.367,470315.5628,21
+13833,545652.2627,1728558.224,468548.3586,21
+13834,544779.6257,1728166.283,472290.7778,21
+13835,543221.093,1728303.833,452563.1345,21
+13836,542138.1469,1727643.105,467967.1927,21
+13837,540716.6128,1727600.55,458112.4992,21
+13838,539859.1978,1727246.431,457630.2928,21
+13839,538617.4518,1727123.354,455104.0857,21
+13840,537358.6072,1726736.883,452117.3541,21
+13841,536146.551,1726393.727,452250.6235,21
+13842,534992.7288,1726089.026,448315.0728,21
+13843,533837.5244,2102803.543,446636.7836,21
+13844,532650.26,1725309.715,451150.5531,21
+13845,531517.0286,1725496.928,431335.3387,21
+13846,530313.8337,1724735.689,447593.3218,21
+13847,529304.5165,1724674.139,436869.3819,21
+13848,528042.0473,1723481.08,437703.0981,21
+13849,527515.8242,1724128.439,435447.3209,21
+13850,527159.4734,1723517.132,431908.0987,21
+13851,525696.333,1722755.665,433025.7083,21
+13852,524996.3324,1722976.037,428873.3445,21
+13853,523859.4748,1722083.03,427739.1395,21
+13854,523081.467,1721906.602,425684.0016,21
+13855,522092.4141,1721845.822,422280.6614,21
+13856,521188.6763,1720712.556,423481.4098,21
+13857,519985.011,1721165.572,419302.1853,21
+13858,519342.0515,1720419.276,418148.0313,21
+13859,518415.7868,1719786.642,415045.2486,21
+13860,517094.0006,1719644.144,416229.7964,21
+13861,512133.757,1718834.167,404502.7036,21
+13862,511888.4686,1720957.662,402981.3536,21
+13863,512082.6826,1722092.703,400708.6239,21
+13864,511588.5306,1724338.185,401265.8486,21
+13865,511925.2685,1725150.417,398212.7928,21
+13866,511563.9702,2104487.815,397134.3661,21
+13867,511849.5049,1727802.572,394453.2227,21
+13868,511487.5313,1728817.974,395408.9291,21
+13869,511875.4521,1731403.606,392112.8242,21
+13870,511816.5092,1731391.67,391610.9675,21
+13871,511298.8176,1733412.844,388724.704,21
+13872,512259.8451,1734873.318,389704.7,21
+13873,511575.9519,1735691.623,386836.0178,21
+13874,511729.1929,1737542.343,385841.251,21
+13875,512071.9883,1738892.36,383182.9594,21
+13876,511902.4253,1739763.452,384539.319,21
+13877,512026.6131,1741680.744,381193.2163,21
+13878,511889.4509,1742040.332,380476.0972,21
+13879,512326.1899,1744674.505,378133.2089,21
+13880,512216.7063,1744594.098,378927.2266,21
+13881,512380.133,1746877.881,376352.1891,21
+13882,513283.5196,1746949.801,375223.7029,21
+13883,513719.9286,1750058.227,372844.8261,21
+13884,513658.9675,1749522.593,374182.3692,21
+13885,513945.6266,1751785.152,371113.27,21
+13886,514166.1537,1753081.885,370288.9053,21
+13887,514286.749,1753598.914,368201.2539,21
+13888,514383.5827,1755740.081,368844.7426,21
+13889,514557.1468,1756032.541,366390.0561,21
+13890,515143.1336,1758107.225,365416.4266,21
+13891,514756.4604,1758971.607,363440.9508,21
+13892,515057.0003,1760359.945,364555.8027,21
+13893,515372.4043,1761674.309,361947.8678,21
+13894,515765.9896,1762359.774,361497.1259,21
+13895,515691.2847,1764149.37,359197.8471,21
+13896,516022.6453,1765079.547,360453.7807,21
+13897,516299.9702,1766312.806,358295.4807,21
+13898,516421.9145,1767524.623,357302.4836,21
+13899,516687.5996,1768626.704,355418.895,21
+13900,516956.1185,1770338.928,356828.3797,21
+13901,517237.6623,1771066.315,354229.3756,21
+13902,517486.6028,1772429.997,353782.0906,21
+13903,517769.1762,1773926.703,352230.8001,21
+13904,517730.226,1774788,353198.9936,21
+13905,518301.2513,1775899.73,350872.981,21
+13906,518408.9545,1777115.225,350801.6763,21
+13907,518856.8846,1778176.152,348655.7066,21
+13908,519070.0978,1780176.368,350135.8735,21
+13909,519101.229,1780293.228,348016.6015,21
+13910,519641.3077,1782521.763,353719.6244,21
+13911,519898.6707,1782589.555,337963.2194,21
+13912,520237.1044,1784899.624,351384.5744,21
+13913,520529.1488,1785258.45,344307.6115,21
+13914,520641.9198,1788908.304,345059.419,21
+13915,521350.3656,1790110.834,344153.7926,21
+13916,521196.8955,1791081.373,342233.7447,21
+13917,521942.2931,1792321.815,343705.1735,21
+13918,521822.8712,1793955.037,341409.3518,21
+13919,522530.4028,1794517.133,340600.3428,21
+13920,522669.3119,1796243.234,345941.0855,21
+13921,523108.6257,1796493.962,332434.1562,21
+13922,523196.5149,1797309.915,347021.5025,21
+13923,523230.497,1796529.545,341751.0747,21
+13924,523791.5512,1798476.74,344217.8461,21
+13925,523629.4972,1798159.235,345235.0543,21
+13926,524402.3584,1798861.259,345025.8394,21
+13927,524054.506,1796416.553,348148.35,21
+13928,524983.8583,1797875.581,347981.8464,21
+13929,524437.7927,1797472.981,355789.47,21
+13930,525377.6111,1798333.971,341593.0084,21
+13931,525240.004,1798435.27,356360.2481,21
+13932,525376.5681,1799323.918,351816.7128,21
+13933,526361.8783,1799264.16,353633.7052,21
+13934,526548.6219,1799601.496,354865.4872,21
+13935,527373.0242,1800511.987,355148.0653,21
+13936,528258.0955,1800616.134,358342.6986,21
+13937,528456.8665,1800667.873,358328.2353,21
+13938,529018.7622,1801761.042,366365.0732,21
+13939,529063.4511,1801443.449,352415.9896,21
+13940,529898.245,1802269.181,367514.9991,21
+13941,530021.1424,1802280.549,362685.759,21
+13942,530295.2517,1803019.999,365401.6706,21
+13943,531597.1356,1803515.459,373352.4451,21
+13944,531267.8642,1803594.765,359429.9969,21
+13945,532005.639,1804047.057,374668.3473,21
+13946,532520.0754,1804528.139,369853.8183,21
+13947,532974.3383,1805088.81,372623.99,21
+13948,533491.3171,1804741.926,380782.7644,21
+13949,533948.1724,1806109.554,366559.6384,21
+13950,534512.1071,1805574.937,382396.1726,21
+13951,534192.6655,1806213.566,377539.8789,21
+13952,535023.5976,1807280.19,380797.0087,21
+13953,534902.5358,1806845.175,389081.3024,21
+13954,534794.0771,1807686.634,375479.1884,21
+13955,535265.195,1807657.156,391316.2972,21
+13956,535265.1321,1808459.324,386961.5924,21
+13957,535307.0382,1808598.933,390352.883,21
+13958,535690.5802,1809067.415,398503.3057,21
+13959,535638.2296,1809356.358,385179.6948,21
+13960,535840.2176,1809652.498,401239.7952,21
+13961,535630.3458,1809842.548,396533.1186,21
+13962,536067.7942,1811093.201,400413.6509,21
+13963,536242.1371,1810444.02,408404.7985,21
+13964,535826.5737,1811431.132,394483.1784,21
+13965,536452.9468,1811490.665,411760.3962,21
+13966,536140.8142,1811592.102,406389.2682,21
+13967,536382.1275,1812658.749,409741.3451,21
+13968,535996.8257,1812731.811,570951.8946,21
+13969,536958.8877,1812630.395,319274.8963,21
+13970,536103.0942,1813721.247,323648.0162,21
+13971,536553.0022,1813780.005,482597.7843,21
+13972,540416.5468,1813957.135,448213.6312,21
+13973,538749.3346,1814987.832,526882.4269,21
+13974,543749.1943,1815851.019,325578.2485,21
+13975,545182.6357,1817363.912,330693.2673,21
+13976,545753.5124,1816987.019,488072.1892,21
+13977,546054.6221,1817577.19,463811.243,21
+13978,546657.7089,1817744.474,540013.3199,21
+13979,547108.5753,1818791.925,331569.8084,21
+13980,547365.114,1818419.405,337161.4281,21
+13981,605088.1453,1897446.786,537503.6089,21
+13982,609575.7045,1902749.897,518988.5599,21
+13983,611974.1304,1904350.506,464352.2136,21
+13984,613932.8267,1905053.494,488186.0138,21
+13985,616623.392,1974987.193,484711.5576,21
+13986,630681.4709,2003456.081,487248.084,21
+13987,627936.5493,1974127.652,489752.6791,21
+13988,631274.3081,1987420.058,493826.2128,21
+13989,658614.1797,1991677.668,1102308.039,21
+13990,704929.842,1993711.179,420936.0932,21
+13991,674984.2666,1992973.287,440872.837,21
+13992,690138.6323,1998213.859,1163843.89,21
+13993,692280.1132,1997512.047,439161.9776,21
+13994,696091.2272,2001266.486,786478.9962,21
+13995,698769.7283,2000239.466,442912.9945,21
+13996,701578.7504,2003198.146,452498.5574,21
+13997,704485.9782,2005751.517,480385.2109,21
+13998,707567.7149,2004263.031,564629.9986,21
+13999,709259.2613,2008894.944,462227.8736,21
+14000,714941.8343,2008006.944,651620.5685,21
+14001,715732.8077,2009870.123,612948.0708,21
+14002,720539.931,2012281.03,719649.8651,21
+14003,720126.7396,2011814.133,471138.1619,21
+14004,725390.6472,2013853.795,479474.2816,21
+14005,726036.451,2015202.972,487488.0722,21
+14006,729278.1562,2016135.684,611795.4677,21
+14007,730911.9231,2016841.666,567620.8425,21
+14008,733982.9731,2018519.206,579106.8106,21
+14009,736209.3982,2019608.233,577883.2624,21
+14010,738351.2368,2020013.364,578190.0471,21
+14011,740407.9573,2022530.616,580303.4529,21
+14012,742225.7487,2021504.721,589797.3231,21
+14013,745559.0847,2024013.772,590083.751,21
+14014,746124.7181,2025246.58,1262149.213,21
+14015,749249.6176,2025265.675,534850.167,21
+14016,751775.5765,2025806.293,541200.6373,21
+14017,753029.5459,2027767.194,1324856.485,21
+14018,754777.2491,2027929.993,556910.372,21
+14019,758412.1224,2029676.321,562995.759,21
+14020,758975.2808,2029913.672,1364969.23,21
+14021,761461.4836,2030896.374,577567.9319,21
+14022,763047.5582,2031546.964,987158.57,21
+14023,765313.2748,2033495.484,593526.8042,21
+14024,766475.429,2033155.236,607525.857,21
+14025,769355.2832,2034179.46,644330.0412,21
+14026,771261.893,2035129.442,941282.598,21
+14027,771813.5323,2036043.658,612962.2887,21
+14028,775849.6468,2036714.218,622078.3476,21
+14029,775627.4167,2037732.238,626448.2805,21
+14030,778397.6698,2039184.021,789642.1079,21
+14031,780389.1948,2037831.239,675162.5033,21
+14032,782040.9548,2040020.776,709385.8846,21
+14033,783128.7703,2041246.344,704186.8468,21
+14034,786050.9363,2040954.192,704146.5001,21
+14035,786488.4951,2042171.18,706776.5092,21
+14036,789445.4941,2043007.65,710320.1438,21
+14037,790607.4571,2042815.647,713746.6651,21
+14038,792175.2382,2044494.927,716775.6523,21
+14039,793431.3679,2044532.264,720519.5068,21
+14040,796496.5664,2046537.361,725113.0548,21
+14041,853563.2534,2108582.272,785833.5065,21
+14042,860281.3969,2115352.964,799157.4921,21
+14043,860881.5258,2116561.665,830304.3111,21
+14044,862821.0383,2117105.133,947533.9391,21
+14045,862630.0915,2119561.522,809614.4828,21
+14046,865480.4788,2119566.265,958032.8278,21
+14047,865712.947,2122698.995,932839.5972,21
+14048,866437.7815,2121817.2,1144994.323,21
+14049,868540.6659,2124342.13,821415.3638,21
+14050,868273.9736,2124588.414,838886.7624,21
+14051,869790.6151,2125708.074,856810.4143,21
+14052,870974.8854,2126235.531,895276.6424,21
+14053,871080.2219,2128849.958,991255.4193,21
+14054,873099.4653,2127720.674,872130.3151,21
+14055,872637.0605,2130365.362,1006374.712,21
+14056,874184.6414,2129760.978,966227.2277,21
+14057,874995.8233,2132071.033,890499.598,21
+14058,875218.4856,2132273.072,903791.6576,21
+14059,876973.9102,2132312.037,910201.4888,21
+14060,876167.8256,2134020.393,918687.8775,21
+14061,878315.7545,2135151.708,929229.5454,21
+14062,878493.0991,2134887.174,935741.869,21
+14063,878300.9335,2137075.991,1761345.947,21
+14064,880123.0809,2136284.902,954568.8812,21
+14065,880616.2907,2138235.697,963069.2915,21
+14066,880973.1881,2137769.954,1823460.441,21
+14067,881079.0282,2140774.578,978439.9629,21
+14068,883080.8204,2138391.921,987758.8675,21
+14069,881274.0584,2141341.569,1858171.983,21
+14070,884938.0753,2141232.56,1001531.306,21
+14071,883157.4566,2142857.373,1011646.594,21
+14072,884200.1708,2142036.571,1886127.774,21
+14073,885704.2668,2145760.232,1024911.915,21
+14074,884014.7496,2142758.073,1031942.353,21
+14075,886521.6044,2147286.272,1912260.426,21
+14076,886188.3686,2145363.798,1044921.439,21
+14077,886524.6667,2147160.528,1053778.416,21
+14078,888481.6241,2146367.108,1937110.367,21
+14079,886918.3792,2149262.13,1064470.346,21
+14080,888568.5745,2147335.815,1073226.026,21
+14081,889008.0961,2150188.375,1958490.201,21
+14082,888757.2445,2149561.878,1085062.895,21
+14083,889684.9904,2150521.494,1089232.487,21
+14084,889608.506,2151573.341,1981894.778,21
+14085,890451.8524,2151050.647,1100259.777,21
+14086,891285.3327,2152865.834,1109871.086,21
+14087,890291.2269,2152907.999,1997516.837,21
+14088,891664.8335,2153460.839,1121192.362,21
+14089,891571.3045,2154049.853,1125115.572,21
+14090,892477.332,2155000.921,2017513.476,21
+14091,891891.9264,2154386.051,1135810.509,21
+14092,893584.0181,2156629.17,1141377.68,21
+14093,892756.1282,2155683.209,2035417.998,21
+14094,893719.056,2157152.538,1151535.832,21
+14095,893922.1734,2157010.295,1157030.802,21
+14096,893731.0159,2157650.793,2051810.295,21
+14097,894040.8726,2158278.846,1167001.294,21
+14098,895984.3623,2158387.632,1170476.878,21
+14099,893766.3805,2159963.515,2067905.93,21
+14100,896120.1096,2158827.663,1181418.069,21
+14101,893921.2451,2161172.791,1187609.244,21
+14102,894514.4952,2160388.624,2082927.531,21
+14103,892828.1948,2160223.349,1201652.851,21
+14104,893521.5637,2162085.797,1206272.787,21
+14105,891420.1202,2160137.385,2100451.921,21
+14106,891384.4612,2160316.067,1216863.743,21
+14107,889253.0076,2161485.994,1222115.503,21
+14108,890336.816,2159880.857,2118424.287,21
+14109,888035.5282,2161981.431,1232232.644,21
+14110,886938.9012,2160032.465,1239625.201,21
+14111,887440.0197,2160495.854,2132543.521,21
+14112,885094.3602,2161229.502,1248234.321,21
+14113,885252.3141,2161142.524,1256192.477,21
+14114,882804.306,2160265.046,2145414.891,21
+14115,884249.3014,2160108.866,1266546.401,21
+14116,881467.9277,2161048.572,1269164.626,21
+14117,880925.0576,2161267.805,2161689.827,21
+14118,880865.6694,2160614.433,1279902.326,21
+14119,878688.8654,2160210.694,1286564.526,21
+14120,878841.2896,2160412.032,2175523.487,21
+14121,877452.3333,2160540.101,1294744.941,21
+14122,876445.8339,2160225.263,1300723.765,21
+14123,874838.6425,2159629.725,2188793.23,21
+14124,875359.6975,2161155.458,1309104.083,21
+14125,872676.0201,2159044.309,1316168.993,21
+14126,872789.8408,2161328.544,2202543.959,21
+14127,871588.1511,2532011.599,1322553.641,21
+14128,870423.403,2160102.493,1332672.851,21
+14129,870122.1146,2160146.239,2213303.568,21
+14130,868122.1582,2159644.89,1339622.316,21
+14131,867989.8952,2159899.716,1343889.567,21
+14132,866547.3932,2158761.47,2227175.94,21
+14133,865485.0862,2159504.726,1354061.062,21
+14134,865212.1444,2159402.215,1357410.856,21
+14135,863247.3044,2158525.343,2240329.421,21
+14136,863237.0043,2160311.287,1367628.729,21
+14137,861367.6246,2157538.018,1372121.917,21
+14138,860681.1704,2160122.423,2251742.305,21
+14139,859590.5648,2158194.114,1381371.322,21
+14140,858132.1144,2158448.29,1387272.966,21
+14141,857831.8315,2158712.421,2263264.883,21
+14142,855707.4539,2157818.764,1393630.955,21
+14143,856792.0556,2158501.073,1401493.881,21
+14144,853047.934,2157920.299,2275066.137,21
+14145,854226.7426,2157798.329,1408991.13,21
+14146,851308.194,2530056.123,1413056.874,21
+14147,850921.3744,2159207.911,2287970.466,21
+14148,851242.7157,2156578.09,1421210.75,21
+14149,848600.9929,2156500.247,1426616.899,21
+14150,847354.0297,2158248.836,2298807.827,21
+14151,847262.5346,2156091.673,1435329.541,21
+14152,845774.6072,2157446.843,1440212.848,21
+14153,844604.2348,2156916.532,2308765.596,21
+14154,843527.4278,2155391.247,1449321.18,21
+14155,843790.1842,2157506.432,1453950.635,21
+14156,840804.2792,2156267.572,2320006.153,21
+14157,840094.7031,2156118.614,1462509.09,21
+14158,839623.1501,2155510.674,1465192.109,21
+14159,838707.6862,2155556.411,2334379.286,21
+14160,836222.7943,2154994.824,1475620.513,21
+14161,845298.8173,2164902.17,1960852.572,21
+14162,845024.6514,2163978.265,1466069.893,21
+14163,845289.4418,2166649.545,1475946.105,21
+14164,845262.2775,2165673.973,1537683.585,21
+14165,843548.1841,2166244.448,1475925.384,21
+14166,845390.4354,2165007.468,1480877.47,21
+14167,844283.0377,2166339.459,1812009.091,21
+14168,843454.7434,2164427.409,1465884.418,21
+14169,844179.9122,2163906.581,1475371.714,21
+14170,843217.0189,2165893.786,1516215.049,21
+14171,842993.7103,2164304.289,1646601.953,21
+14172,843038.7122,2163751.564,1473501.602,21
+14173,842065.9153,2165114.885,1478959.186,21
+14174,842182.9636,2164713.554,1484452.755,21
+14175,841680.4166,2163181.051,1490621.022,21
+14176,841916.7441,2164912.17,1493847.431,21
+14177,840583.9277,2163246.334,1500412.247,21
+14178,841786.2242,2164609.631,1503850.469,21
+14179,839414.8782,2163918.094,1508450.973,21
+14180,840610.293,2163868.022,1513212.838,21
+14181,840479.2125,2162560.344,2322230.346,21
+14182,838455.1099,2164693.084,1521761.665,21
+14183,838931.5802,2163402.528,1524716.834,21
+14184,838677.1185,2163975.275,2363911.634,21
+14185,838482.472,2161676.482,1530416.095,21
+14186,837503.8356,2163994.914,1534588.817,21
+14187,837755.5018,2163078.948,2379541.576,21
+14188,836566.6528,2162622.182,1539946.963,21
+14189,836900.2739,2162581.3,1543765.871,21
+14190,836384.2062,2162632.701,2389802.819,21
+14191,834762.2892,2161885.502,1547769.007,21
+14192,835746.4229,2162452.611,1553051.686,21
+14193,835198.6082,2162275.516,2397477.828,21
+14194,833676.4945,2161965.026,1556436.201,21
+14195,834637.1053,2160579.052,1560283.44,21
+14196,833068.7417,2162836.589,2403465.059,21
+14197,833680.9858,2160169.656,1565663.9,21
+14198,831838.414,2162573.105,1566397.584,21
+14199,833361.3896,2160120.637,2412003.418,21
+14200,830752.9428,2160749.662,1569094.003,21
+14201,831814.062,2161871.918,1575907.478,21
+14202,831424.5337,2159514.233,2415941.997,21
+14203,829096.7446,2160964.626,1578901.47,21
+14204,831092.198,2159510.761,2028593.381,21
+14205,830277.3239,2159949.334,1549858.307,21
+14206,829915.9057,2160677.956,1560524.468,21
+14207,829600.9482,2157632.26,1620050.163,21
+14208,828403.2778,2161292.29,1559412.314,21
+14209,829341.6471,2157426.645,1560397.265,21
+14210,826905.8594,2160428.743,1886542.682,21
+14211,828970.8479,2157392.338,1545562.676,21
+14212,826192.7806,2159146.348,1556671.604,21
+14213,827549.1863,2158299.626,1597007.692,21
+14214,825194.3841,2158519.75,1801078.46,21
+14215,825911.3607,2157338.238,1545190.598,21
+14216,825607.6211,2158081.349,1552223.437,21
+14217,824974.9931,2156878.371,1556008.264,21
+14218,824564.3128,2157423.251,1562467.873,21
+14219,823253.6444,2157744.361,1566190.934,21
+14220,823838.514,2157071.851,1573214.32,21
+14221,822555.2519,2160862.24,1574799.07,21
+14222,825562.3236,2158139.973,1580544.703,21
+14223,824701.6081,2158986.159,1587339.4,21
+14224,825533.3319,2532081.162,1585630.916,21
+14225,825231.4358,2158514.898,2388930.262,21
+14226,825447.7749,2158285.933,1592804.95,21
+14227,825744.5425,2158447.7,1599102.232,21
+14228,826911.0185,2157636.473,2424857.383,21
+14229,826013.1511,2156821.573,1603323.393,21
+14230,825816.0779,2156951.498,1605734.238,21
+14231,827481.0883,2157726.24,2439089.558,21
+14232,825855.102,2156324.742,1609786.658,21
+14233,828152.2497,2153152.203,1613708.903,21
+14234,827051.7714,2154558.401,2445952.798,21
+14235,827716.2577,2153119.956,1618825.599,21
+14236,826564.9621,2154288.515,1617010.231,21
+14237,828927.3636,2152245.591,2455402.976,21
+14238,828191.9043,2153627.681,1621995.532,21
+14239,827430.0296,2150639.973,1624282.929,21
+14240,828352.6661,2153109.401,2461092.998,21
+14241,829486.6268,2151375.056,1627420.595,21
+14242,828558.6317,2150560.883,1628684.089,21
+14243,828488.2861,2524498.783,2466059.146,21
+14244,830130.6611,2150543.146,1632188.329,21
+14245,828690.5699,2149294.726,1634359.059,21
+14246,829599.0197,2150561.5,2469238.876,21
+14247,830045.1661,2149005.504,1637878.636,21
+14248,830085.647,2147820.597,1639077.009,21
+14249,829943.3986,2150109.62,2471739.841,21
+14250,830086.5341,2147395.86,1643217.515,21
+14251,830160.1153,2146971.031,1641397.34,21
+14252,828763.8209,2147987.481,2475973.643,21
+14253,830017.4026,2147246.724,1648326.373,21
+14254,830325.9894,2145854.269,1644244.346,21
+14255,830570.9804,2146941.229,2482701.424,21
+14256,830358.6829,2144396.298,1646768.089,21
+14257,829711.9463,2145627.584,1650866.49,21
+14258,830367.3108,2145375.985,2485652.375,21
+14259,831950.3241,2144778.04,1652769.661,21
+14260,830477.7212,2143080.324,1652832.159,21
+14261,830991.8219,2143455.982,2488563.965,21
+14262,831639.4143,2516111.417,1654826.924,21
+14263,831283.5123,2142293.356,1657852.521,21
+14264,831829.2249,2142865.625,2489467.122,21
+14265,831301.9326,2141442.604,1661138.483,21
+14266,832717.6888,2141258.023,1658510.928,21
+14267,831180.9127,2140026.942,2495822.932,21
+14268,833233.206,2141472.054,1661893.21,21
+14269,831264.375,2139377.853,1662681.35,21
+14270,833498.1941,2138411.766,2498646.265,21
+14271,832903.0441,2139385.183,1665534.27,21
+14272,832154.3801,2137669.613,1666123.213,21
+14273,833097.0686,2137980.629,2500592.591,21
+14274,833509.0216,2136800.535,1668095.455,21
+14275,833405.7476,2137110.774,1670463.91,21
+14276,834372.4432,2134984.179,2503405.578,21
+14277,832041.3533,2135566.474,1671594.152,21
+14278,834121.7108,2135093.303,1671925.689,21
+14279,835080.7644,2131552.744,2507563.809,21
+14280,833349.5967,2132918.939,1675155.661,15.6
+14281,0,0,0,15.6
+14282,0,0,832130.8852,15.6
+14283,428336.935,82.96414711,0,15.6
+14284,0,0,0,15.6
+14285,0,0,0,15.6
+14286,0,0,0,15.6
+14287,0,0,0,15.6
+14288,0,426645.6498,0,15.6
+14289,0,0,0,15.6
+14290,0,0,0,15.6
+14291,0,0,1514189.709,15.6
+14292,0,0,0,15.6
+14293,0,0,0,15.6
+14294,0,0,0,15.6
+14295,0,0,0,15.6
+14296,0,0,0,15.6
+14297,0,0,0,15.6
+14298,0,0,0,15.6
+14299,0,0,0,15.6
+14300,0,0,0,15.6
+14301,0,0,0,15.6
+14302,339431.5782,0,0,15.6
+14303,0,0,0,15.6
+14304,0,0,0,15.6
+14305,0,0,0,15.6
+14306,0,0,0,15.6
+14307,0,0,0,15.6
+14308,0,0,0,15.6
+14309,0,0,0,15.6
+14310,0,0,0,15.6
+14311,0,0,0,15.6
+14312,0,0,0,15.6
+14313,0,426594.3144,257121.3349,15.6
+14314,0,0,0,15.6
+14315,0,0,0,15.6
+14316,0,0,250124.6962,15.6
+14317,0,0,0,15.6
+14318,0,0,0,15.6
+14319,0,0,0,15.6
+14320,0,0,0,15.6
+14321,0,0,0,15.6
+14322,0,0,0,15.6
+14323,0,0,0,15.6
+14324,0,0,0,15.6
+14325,0,0,0,15.6
+14326,0,0,0,15.6
+14327,0,0,0,15.6
+14328,0,0,0,15.6
+14329,0,0,0,15.6
+14330,0,0,0,15.6
+14331,0,0,0,15.6
+14332,0,0,1358275.038,15.6
+14333,0,426539.7902,0,15.6
+14334,0,0,0,15.6
+14335,0,0,0,15.6
+14336,0,0,0,15.6
+14337,0,0,0,15.6
+14338,0,0,0,15.6
+14339,0,0,0,15.6
+14340,0,0,224729.9852,15.6
+14341,0,0,0,15.6
+14342,0,0,218871.3003,15.6
+14343,0,0,0,15.6
+14344,0,0,0,15.6
+14345,339456.9344,0,0,15.6
+14346,0,0,0,15.6
+14347,0,0,212714.7199,15.6
+14348,0,0,0,15.6
+14349,0,0,0,15.6
+14350,0,0,0,15.6
+14351,0,0,206759.728,15.6
+14352,0,0,0,15.6
+14353,0,40848.20953,201125.3607,15.6
+14354,0,1980.469395,0,15.6
+14355,0,4312.173131,0,15.6
+14356,0,15410.56955,0,15.6
+14357,0,11710.33978,195527.2036,15.6
+14358,0,11388.25468,0,15.6
+14359,0,11859.2911,190212.484,15.6
+14360,0,12000.14462,0,15.6
+14361,0,12105.23942,0,15.6
+14362,0,12195.68855,0,15.6
+14363,0,12285.52083,184900.2408,15.6
+14364,0,12472.13704,0,15.6
+14365,0,12465.28786,179874.6628,15.6
+14366,0,12672.71452,0,15.6
+14367,0,12663.79747,0,15.6
+14368,0,12918.84439,0,15.6
+14369,0,12873.54457,174847.2853,15.6
+14370,0,13043.51122,0,15.6
+14371,0,13074.93097,0,15.6
+14372,0,13199.15972,170161.2013,15.6
+14373,0,13288.32315,0,15.6
+14374,0,13466.04249,1038281.594,15.6
+14375,0,13470.28057,0,15.6
+14376,0,13543.61656,0,15.6
+14377,0,13656.35711,0,15.6
+14378,0,13702.43976,155624.9934,15.6
+14379,0,13859.5244,0,15.6
+14380,0,13954.63402,0,15.6
+14381,0,13975.34327,0,15.6
+14382,0,14117.61447,0,15.6
+14383,0,0,0,15.6
+14384,0,4.258787208,0,15.6
+14385,0,0,151189.6141,15.6
+14386,0,86.68779943,0,15.6
+14387,0,0,0,15.6
+14388,339427.7253,58710.09056,0,15.6
+14389,0,0,146949.8674,15.6
+14390,0,5032.509568,0,15.6
+14391,0,21916.52883,142947.1593,15.6
+14392,0,14197.10216,0,15.6
+14393,0,14748.83703,0,15.6
+14394,0,15111.68789,0,15.6
+14395,0,15194.62275,138933.8626,15.6
+14396,0,15267.84597,0,15.6
+14397,0,15318.03651,135159.4983,15.6
+14398,0,15491.42874,0,15.6
+14399,0,15459.31261,0,15.6
+14400,0,15523.89983,0,15.6
+14401,0,15863.21574,131350.3751,15.6
+14402,0,15858.21143,0,15.6
+14403,0,16061.87461,127785.2378,15.6
+14404,0,16048.02315,0,15.6
+14405,0,16095.23091,0,15.6
+14406,0,16152.18659,0,15.6
+14407,0,16270.52626,124183.3158,15.6
+14408,0,442570.8977,0,15.6
+14409,0,16366.1209,120813.049,15.6
+14410,0,16445.22461,0,15.6
+14411,0,16480.70164,0,15.6
+14412,0,16599.65983,0,15.6
+14413,0,16646.28297,117399.2038,15.6
+14414,0,16662.28121,0,15.6
+14415,0,16759.97621,0,15.6
+14416,0,16826.94304,114276.8899,15.6
+14417,29590.35886,16913.00166,815130.4087,15.6
+14418,2253.643327,0,0,15.6
+14419,2478.333338,0,0,15.6
+14420,9805.811575,0,0,15.6
+14421,9831.133945,0,0,15.6
+14422,7983.863085,70347.60127,0,15.6
+14423,8786.89541,0,0,15.6
+14424,8858.327269,4861.937333,0,15.6
+14425,8927.245148,27306.09947,0,15.6
+14426,9063.98407,15895.26761,0,15.6
+14427,9111.181761,17373.57214,0,15.6
+14428,9237.491557,17595.89922,0,15.6
+14429,9331.173608,17632.35024,0,15.6
+14430,9391.319394,17699.95598,0,15.6
+14431,9492.426286,17799.37251,0,15.6
+14432,349024.25,17753.99473,0,15.6
+14433,9699.405931,17894.20841,0,15.6
+14434,9760.589363,17879.42067,0,15.6
+14435,9839.351856,17982.08094,0,15.6
+14436,9928.287866,17974.07194,0,15.6
+14437,10043.67536,18050.68725,0,15.6
+14438,10124.7017,18139.51603,0,15.6
+14439,10167.52867,18129.81823,107453.0364,15.6
+14440,10317.36174,18166.94066,0,15.6
+14441,10346.61258,18294.66097,0,15.6
+14442,10476.50827,18245.92316,0,15.6
+14443,10536.41001,18377.56879,0,15.6
+14444,10638.29434,18395.28441,0,15.6
+14445,10731.26123,18392.48081,0,15.6
+14446,10783.92145,18507.58025,0,15.6
+14447,0,444520.9137,0,15.6
+14448,0,18552.04802,0,15.6
+14449,0,18649.17058,0,15.6
+14450,0,18667.83253,0,15.6
+14451,0,18712.3086,0,15.6
+14452,0,0,0,15.6
+14453,47321.58773,0,0,15.6
+14454,0,0,0,15.6
+14455,4427.304813,0,0,15.6
+14456,16054.28609,80141.36014,0,15.6
+14457,11824.22691,424948.8033,0,15.6
+14458,11484.91497,6174.450881,0,15.6
+14459,11945.4337,29664.39741,104254.6567,15.6
+14460,12022.41439,17306.29462,775584.648,15.6
+14461,12091.97304,19458.30455,0,15.6
+14462,12057.69411,19888.36446,98663.17026,15.6
+14463,12106.40189,20011.85319,0,15.6
+14464,12149.39916,20281.78867,0,15.6
+14465,12163.82229,20442.90843,0,15.6
+14466,12215.48827,358459.7946,0,15.6
+14467,12192.4538,42811.41518,0,15.6
+14468,12269.54885,72864.0093,0,15.6
+14469,12272.60914,163975.2855,95944.6628,15.6
+14470,12304.34275,127067.6101,0,15.6
+14471,12312.40135,130170.5194,0,15.6
+14472,12380.8833,133611.53,0,15.6
+14473,12340.86603,135942.7302,93197.29991,15.6
+14474,12412.47454,138203.9502,200275.5603,15.6
+14475,12423.79145,140049.5425,146851.2749,15.6
+14476,351977.5497,142195.7114,145156.8584,15.6
+14477,12463.17268,569963.5243,145570.7333,15.6
+14478,12502.97254,145651.1424,152736.8597,15.6
+14479,12480.39879,148903.0215,144329.8761,15.6
+14480,12570.6784,149987.5157,144628.561,15.6
+14481,12556.4484,152401.0842,143376.2256,15.6
+14482,12565.73419,154371.8123,142254.018,15.6
+14483,0,156490.4084,141161.6889,15.6
+14484,0,158544.9165,140125.9646,15.6
+14485,0,160637.2686,139216.2903,15.6
+14486,0,137856.0977,138260.786,15.6
+14487,0,564381.373,137393.492,15.6
+14488,54064.62461,141571.7864,136549.9537,15.6
+14489,0,239610.2635,135786.4741,15.6
+14490,3090.468577,155147.2719,134991.1655,15.6
+14491,19397.2791,159164.1004,134319.2726,15.6
+14492,12158.73708,187610.1326,133537.7841,15.6
+14493,12587.60491,176388.0708,132861.0538,15.6
+14494,12851.62386,180584.0367,132192.0027,15.6
+14495,12918.07006,182754.2029,131595.8701,15.6
+14496,12913.39841,26989.7928,130942.9772,15.6
+14497,12904.02611,27312.01453,130468.5803,15.6
+14498,12952.00546,27489.22195,129891.4462,15.6
+14499,12940.34704,27682.05319,129533.9729,15.6
+14500,13018.60621,667862.0936,128927.3285,15.6
+14501,12915.79791,28133.84199,128487.6856,15.6
+14502,13031.73992,97160.95925,128018.9157,15.6
+14503,12999.11905,283326.6319,127662.8354,15.6
+14504,13024.06516,182846.9518,631277.5581,15.6
+14505,13032.14524,201853.4064,0,15.6
+14506,13040.40543,204131.8987,0,15.6
+14507,13037.88901,206178.8682,67349.20228,15.6
+14508,13093.13706,207923.2293,0,15.6
+14509,13073.68748,210297.117,0,15.6
+14510,13059.66474,212030.6612,65728.7165,15.6
+14511,13126.27449,639461.6518,0,15.6
+14512,13087.71463,216224.1143,0,15.6
+14513,13147.98293,218157.5364,167626.9958,15.6
+14514,13126.30002,219771.4523,121339.6944,15.6
+14515,13128.54205,222040.0221,119977.1187,15.6
+14516,13156.82168,223804.9542,124281.6018,15.6
+14517,13164.51974,226168.3474,127710.2835,15.6
+14518,0,227612.7793,124026.3539,15.6
+14519,0,198559.1409,124388.4045,15.6
+14520,339589.5963,200181.6412,123753.2445,15.6
+14521,0,296318.7939,123655.7505,15.6
+14522,0,209704.501,123240.7146,15.6
+14523,57361.38456,224543.2841,123030.04,15.6
+14524,0,233962.9324,122754.4954,15.6
+14525,2138.166793,227299.9282,122537.7345,15.6
+14526,21156.66885,227540.2103,122302.7631,15.6
+14527,12082.3573,226240.6781,122128.3523,15.6
+14528,13054.90962,226704.5355,122041.6272,15.6
+14529,13261.27657,224903.2047,121751.3637,15.6
+14530,13216.07797,31319.90481,121623.5136,15.6
+14531,13241.88821,31253.59534,121474.488,15.6
+14532,13237.88144,31071.62064,121336.562,15.6
+14533,13208.47243,722666.2797,121201.5891,15.6
+14534,13213.93632,30947.25999,121163.8786,15.6
+14535,13202.08664,159672.934,120973.939,15.6
+14536,13210.85382,282869.8118,120844.8354,15.6
+14537,13199.92822,207028.4348,120769.4541,15.6
+14538,13146.90446,217457.3536,120766.7357,15.6
+14539,13232.5099,216777.7982,120666.2142,15.6
+14540,13144.73998,216648.8624,120676.9076,15.6
+14541,13168.56019,214793.9346,120486.6781,15.6
+14542,13161.11569,214223.9882,120441.7267,15.6
+14543,13154.48526,213489.27,0,15.6
+14544,13125.25841,212341.4648,56420.54968,15.6
+14545,13154.62071,212465.8428,0,15.6
+14546,13113.30937,211879.7523,0,15.6
+14547,13097.07114,210391.8086,54881.52797,15.6
+14548,13149.25103,209894.8411,578520.5896,15.6
+14549,13063.37095,208298.9777,170478.7133,15.6
+14550,13118.7859,208160.4101,111445.2217,15.6
+14551,13063.38593,177302.4823,115050.1603,15.6
+14552,13093.9033,175487.8254,126084.1285,15.6
+14553,0,262022.8945,121337.4292,15.6
+14554,0,180970.4287,120750.5387,15.6
+14555,0,198810.1902,120885.3683,15.6
+14556,0,205346.1281,120839.923,15.6
+14557,0,198415.1344,120638.4782,15.6
+14558,57388.88262,198561.3439,120616.3233,15.6
+14559,0,197888.49,120553.2277,15.6
+14560,1947.139471,195912.3456,120515.6795,15.6
+14561,20262.78303,196063.8752,120482.9126,15.6
+14562,12360.01289,193771.9745,120513.5176,15.6
+14563,12731.45282,27874.64648,120450.3048,15.6
+14564,352659.586,27800.94055,120512.8912,15.6
+14565,13081.98385,27588.87275,120477.151,15.6
+14566,12959.81071,27551.92251,120483.8036,15.6
+14567,13037.22624,687536.1328,120501.5565,15.6
+14568,12981.57773,27320.88659,120565.5888,15.6
+14569,12945.56447,75194.03688,120505.7571,15.6
+14570,12995.87603,277029.2721,120616.1525,15.6
+14571,12936.63619,166529.8221,120577.8713,15.6
+14572,12900.65958,182979.3376,120625.9536,15.6
+14573,12931.29466,181803.8751,120677.2958,15.6
+14574,12900.57668,180968.3894,120678.996,15.6
+14575,12897.25058,179717.4268,120754.596,15.6
+14576,12844.69007,177918.3127,120774.2419,15.6
+14577,12880.86831,177238.9017,120820.2988,15.6
+14578,12810.53018,175547.607,120855.8658,15.6
+14579,12828.27909,173948.0588,0,15.6
+14580,12796.12411,171440.0204,0,15.6
+14581,12800.91529,171579.2923,0,15.6
+14582,12797.53101,172474.3649,54585.93016,15.6
+14583,12817.31927,146348.3034,175883.1633,15.6
+14584,12855.61745,147134.3346,106913.2426,15.6
+14585,12882.10566,147039.8619,112565.8035,15.6
+14586,12871.95073,242744.2255,127449.8188,15.6
+14587,12934.67124,155859.3647,119085.3224,15.6
+14588,0,158706.7906,120032.857,15.6
+14589,0,185238.2948,119971.7303,15.6
+14590,0,172504.1768,119876.7509,15.6
+14591,0,174886.1271,119900.7062,15.6
+14592,0,174528.9688,119725.6362,15.6
+14593,57790.7196,175881.8718,647397.8261,15.6
+14594,0,175044.9596,124108.252,15.6
+14595,2078.252867,176023.6953,123979.7045,15.6
+14596,20130.65526,176089.4691,123793.2988,15.6
+14597,12706.97512,26263.96593,123627.6693,15.6
+14598,12860.04508,26303.01905,123541.598,15.6
+14599,13327.21566,26351.50554,123270.3821,15.6
+14600,13287.62056,26369.9541,123274.1348,15.6
+14601,13346.73622,26408.24796,123028.6364,15.6
+14602,13374.89303,695366.2547,122962.462,15.6
+14603,13357.26919,26521.95894,122772.915,15.6
+14604,13410.30747,46362.99598,122683.7979,15.6
+14605,13390.85074,275394.279,122517.811,15.6
+14606,13458.31622,164025.9051,122420.8974,15.6
+14607,13447.8647,177692.0299,122302.3582,15.6
+14608,353120.9138,180321.9208,122154.1006,15.6
+14609,13507.63659,179947.3424,122076.077,15.6
+14610,13491.79127,180236.5242,121921.4887,15.6
+14611,13564.43837,180640.5393,121841.8259,15.6
+14612,13539.54945,181288.3534,121705.6892,15.6
+14613,13578.00464,180644.0033,0,15.6
+14614,13594.47681,181352.4888,0,15.6
+14615,13609.95471,181666.9401,0,15.6
+14616,13637.82077,155095.6607,0,15.6
+14617,13631.47578,155044.4617,181967.592,15.6
+14618,13708.30079,579840.1161,108565.8716,15.6
+14619,13690.74425,255637.9622,113775.776,15.6
+14620,13694.4166,165809.6764,129747.9299,15.6
+14621,13761.10079,166756.5547,120843.4809,15.6
+14622,13739.64492,195048.9129,121689.7198,15.6
+14623,0,181807.4773,121630.7912,15.6
+14624,0,183935.2451,121340.7491,15.6
+14625,0,184263.6921,121174.8478,15.6
+14626,0,184500.8449,121042.7875,15.6
+14627,0,184646.5925,120886.6437,15.6
+14628,62733.19521,608754.9099,120775.3117,15.6
+14629,0,185358.6157,120696.5338,15.6
+14630,1923.05037,185150.8138,120487.1998,15.6
+14631,22086.1454,185923.8726,120401.8009,15.6
+14632,13052.05615,27653.59645,120287.3047,15.6
+14633,13751.85482,27653.55974,120173.8323,15.6
+14634,14020.08879,27744.75746,120033.7275,15.6
+14635,14087.9833,27744.80225,120069.1195,15.6
+14636,14082.09541,681603.5445,119834.3553,15.6
+14637,14108.83676,27798.87249,119782.639,15.6
+14638,14103.38442,71587.14021,650716.7746,15.6
+14639,14182.61104,280805.8606,123938.4628,15.6
+14640,14137.89698,170592.3194,123703.1931,17.8
+14641,906724.1993,1426410.488,1672210.303,17.8
+14642,718161.033,1199661.067,1381280.595,17.8
+14643,245174.4242,220757.1633,976453.8247,17.8
+14644,194849.6346,513578.9162,855414.7796,17.8
+14645,333565.1414,490853.4991,980775.7839,17.8
+14646,273534.8192,502148.8592,1029672.991,17.8
+14647,269985.9885,463529.1533,864040.6977,17.8
+14648,270664.8921,467995.3171,888655.4329,17.8
+14649,270229.0762,390702.6266,1146713.204,17.8
+14650,270546.8771,388956.798,1074903.022,17.8
+14651,609813.3976,531441.1209,1060311.71,17.8
+14652,270468.8625,464471.475,1102836.671,17.8
+14653,270409.2703,457289.4107,1114224.077,17.8
+14654,270613.2563,460679.7893,1127240.928,17.8
+14655,270641.0216,459887.026,1141267.297,17.8
+14656,270937.3943,457585.7771,1154418.379,17.8
+14657,271058.3716,456288.8896,1168550.426,17.8
+14658,235562.8074,455726.509,1179036.642,17.8
+14659,235164.0372,454197.401,1190906.91,17.8
+14660,323039.7667,453644.8835,1201287.086,17.8
+14661,273086.2686,452264.5756,1211874.611,17.8
+14662,262358.1019,452432.6946,1220628.269,17.8
+14663,277070.3158,450855.6866,1229715.188,17.8
+14664,273469.685,450623.0049,1238277.482,17.8
+14665,273569.0281,449732.9047,1245712.933,17.8
+14666,273618.8905,94474.51159,1253685.958,17.8
+14667,274221.5857,94481.94719,1260044.192,17.8
+14668,274588.605,1036364.724,1267463.088,17.8
+14669,274675.0936,266220.7347,1273157.981,17.8
+14670,275455.2067,443967.0784,1279546.425,17.8
+14671,36233.40872,447092.8669,339161.877,17.8
+14672,36292.19652,424648.1035,333375.3479,17.8
+14673,36338.8605,424461.4198,328081.1488,17.8
+14674,787609.9536,488106.8194,2418488.806,17.8
+14675,199626.0362,425318.2544,1037752.207,17.8
+14676,185630.7357,442671.8292,1143808.285,17.8
+14677,336252.345,447499.7636,2330999.159,17.8
+14678,273273.3629,442195.7302,1220396.017,17.8
+14679,279598.4644,443468.5576,1082962.345,17.8
+14680,279375.1115,442343.6313,1091007.565,17.8
+14681,280401.9266,370617.1714,1387713.651,17.8
+14682,280484.2177,371221.5122,1279944.796,17.8
+14683,280696.3053,509920.2199,1250619.057,17.8
+14684,281737.01,437336.4233,1291738.893,17.8
+14685,281899.4144,440852.6879,1288908.103,17.8
+14686,282360.3128,439396.4487,1293852.929,17.8
+14687,282404.2709,443019.8852,1300680.405,17.8
+14688,623762.3403,440056.4256,1307097.642,17.8
+14689,282814.1131,440269.3111,1312109.434,17.8
+14690,247545.9988,439309.4749,1317935.118,17.8
+14691,247763.569,439305.3535,1322678.007,17.8
+14692,335896.4699,439335.6305,1328735.026,17.8
+14693,288793.4141,438904.5936,1332158.176,17.8
+14694,275783.2854,438531.2645,1338267.277,17.8
+14695,290932.2325,438255.7233,1340825.523,17.8
+14696,286848.9662,438343.8187,1345276.633,17.8
+14697,288358.4456,438196.626,1349754.443,17.8
+14698,287675.3889,91996.4875,1353161.973,17.8
+14699,288778.8924,91981.13026,1356700.681,17.8
+14700,289414.316,1007608.02,1359642.348,20
+14701,2303426.179,2614874.641,3609691.058,20
+14702,1087475.658,2501413.894,3170815.871,20
+14703,799153.9303,608913.6307,2928030.658,20
+14704,125248.3866,951098.4927,505586.3029,20
+14705,877985.4983,1170504.249,2490001.632,20
+14706,670191.6068,1015112.272,2209787.43,20
+14707,726565.8392,1003480.776,2117840.816,20
+14708,690984.8937,1006743.533,1980170.058,20
+14709,771667.6352,1002404.877,1907977.359,20
+14710,692698.1114,1000372.755,1996242.568,20
+14711,683816.5984,995603.6507,1714112.836,20
+14712,698882.2853,989401.2098,2097758.567,20
+14713,687842.2623,832465.9317,1998100.436,20
+14714,686867.9221,1061260.887,2006321.933,20
+14715,684229.653,961598.0107,2004725.008,20
+14716,680806.0187,958079.7338,2961612.124,20
+14717,679351.3038,966966.3624,1971436.219,20
+14718,677250.2734,959757.5466,1974116.683,20
+14719,673223.0157,957214.5634,1981283.049,20
+14720,672490.1566,952555.0981,1981134.927,20
+14721,669991.2877,952140.7808,1989124.043,20
+14722,571718.1165,946440.5869,1988176.056,20
+14723,570763.7703,946669.7916,1992658.531,20
+14724,1058100.742,943997.9413,1995210.671,20
+14725,667580.8457,940564.7053,1992835.404,20
+14726,662637.6892,938741.6707,1998689.69,20
+14727,666256.5444,936587.3042,1997361.771,20
+14728,659948.9201,934720.448,1996769.151,20
+14729,658096.4169,932594.1626,2001536.301,20
+14730,657206.6346,171095.8732,1998437.621,20
+14731,635909.932,595043.5662,1904093.565,20
+14732,632472.5535,1254479.314,1900592.255,20
+14733,632284.2709,1046223.604,1901551.816,20
+14734,630269.5044,838550.682,1899469.032,20
+14735,92621.93122,949593.3935,423547.7892,20
+14736,145924.2225,910818.5826,574106.2294,20
+14737,913146.3593,979664.0167,2714157.208,20
+14738,676430.2213,911675.2105,2286096.261,20
+14739,561771.3583,916746.3944,1757704.503,20
+14740,697429.0791,920783.648,1822711.169,20
+14741,634888.5846,915640.4184,1934590.683,20
+14742,644379.3691,913968.518,1628635.305,20
+14743,641478.3223,912305.9461,1671937.439,20
+14744,639056.8292,786332.8145,2083047.602,20
+14745,637962.6998,784280.4911,1975842.61,20
+14746,638780.8017,1019231.913,1973186.487,20
+14747,634523.0991,922148.1701,1972682.59,20
+14748,636142.1841,887097.7411,1968854.705,20
+14749,633250.8642,910812.4992,1980807.993,20
+14750,632604.3174,905770.3988,1979464.565,20
+14751,632287.4045,903093.2441,1978884.302,20
+14752,630457.8031,902000.1265,1982382.243,20
+14753,629641.9634,898784.446,1985094.297,20
+14754,541449.1432,900208.3537,1986565.061,20
+14755,540389.0823,898156.0353,2978980.639,20
+14756,678193.8571,897657.4009,1951234.023,20
+14757,637007.1437,896489.4982,1959596.312,20
+14758,626099.0127,895184.3941,1964339.067,20
+14759,631131.9971,893210.0454,1967109.424,20
+14760,964837.502,892939.531,1974045.113,21
+14761,2317222.08,2991370.69,4535414.959,21
+14762,2033929.469,2317071.309,4466134.286,21
+14763,546015.7533,1241235.434,2075041.307,21
+14764,547328.0063,1223419.614,2184993.434,21
+14765,800910.4776,1343076.184,2499760.699,21
+14766,906208.5297,1208509.874,2564238.775,21
+14767,746106.4401,1193641.089,2401651.675,21
+14768,782784.69,1203148.885,2443345.662,21
+14769,779558.5973,1197685.969,3143103.297,21
+14770,776850.2107,1194940.959,2490439.046,21
+14771,773874.7819,1193728.526,2457798.257,21
+14772,771996.7951,1189915.993,2449553.476,21
+14773,768488.4106,1612678.227,2451827.874,21
+14774,765093.0413,1186510.052,2448079.715,21
+14775,763781.6379,1185002.079,2442346.078,21
+14776,760247.8907,1183138.642,2444539.892,21
+14777,758572.1443,1182441.991,2440635.796,21
+14778,756345.4683,1180298.994,2438261.943,21
+14779,753487.509,1178698.767,2440850.023,21
+14780,751935.4013,1178067.208,2436083.391,21
+14781,750203.3737,1176401.722,2434594.708,21
+14782,746470.1463,1175275.768,2434681.06,21
+14783,747271.8888,1173056.84,2435793.004,21
+14784,742827.6393,1173451.017,2431588.598,21
+14785,741786.7745,1170543.105,3144546.916,21
+14786,739667.2793,1169738.582,2480504.645,21
+14787,739313.0449,1169647.644,2437544.47,21
+14788,735414.9575,1168879.452,2440424.731,21
+14789,735211.7718,1166421.156,2436432.338,21
+14790,732398.034,1166351.015,2436254.226,21
+14791,733314.7302,1165187.638,2433856.965,21
+14792,728091.1431,1164537.687,2436049.205,21
+14793,728856.7514,1163376.281,2433603.23,21
+14794,728122.5998,1163156.937,2433812.263,21
+14795,725190.5909,1161295.421,2435847.121,21
+14796,724081.4947,1160892.836,2431381.469,21
+14797,723259.1564,1584696.704,2435971.894,21
+14798,721789.6597,1159199.925,2433572.31,21
+14799,720907.8673,1159470.186,2432851.589,21
+14800,718913.7202,1156248.938,2434117.245,21
+14801,718569.0487,1157993.106,3142579.255,21
+14802,716639.9527,1157214.653,2481286.262,21
+14803,715301.8255,1155579.531,2438549.747,21
+14804,714765.0705,1156587.882,2444196.642,21
+14805,712385.0119,1158051.136,2438796.23,21
+14806,713310.1605,1156440.603,2444669.003,21
+14807,710310.872,1156373.652,2438044.236,21
+14808,710862.0553,1155265.947,2443501.943,21
+14809,707056.4438,1154886.583,2438347.702,21
+14810,708889.7425,1155181.889,2438845.77,21
+14811,706923.7155,1153245.442,2437883.031,21
+14812,704323.2956,1154277.543,2440451.195,21
+14813,706560.1461,1153316.991,2442166.007,21
+14814,702376.075,1152009.099,2440042.774,21
+14815,702226.1417,1153277.343,2444098.809,21
+14816,701979.0463,1151864.667,2443919.702,21
+14817,700750.6014,1149243.416,2502392.536,21
+14818,699318.4049,1152558.113,2438404.945,21
+14819,698654.9935,1150171.501,2436688.933,21
+14820,697789.0681,1575176.633,2645649.523,21
+14821,756262.127,2512450.761,2349937.213,21
+14822,751439.6463,2508405.406,2343060.244,21
+14823,749601.7662,2507079.816,2363937.523,21
+14824,749438.222,2509612.582,2367844.371,21
+14825,748180.9681,2509984.338,2330020.16,21
+14826,746634.5389,2510588.2,2332215.52,21
+14827,746640.5815,2873641.066,2548677.3,21
+14828,745924.3241,2511496.01,2298204.712,21
+14829,744960.2777,2513447.142,2306082.791,21
+14830,744517.9243,2520422.707,2308193.172,21
+14831,744664.5485,2547354.463,2307474.919,21
+14832,742276.0942,2530882.144,2548445.477,21
+14833,742926.408,2538423.626,2276315.833,21
+14834,743355.2409,2538106.778,2286050.359,21
+14835,741106.7859,2540682.898,2285168.267,21
+14836,741052.6536,2541948.61,2287484.685,21
+14837,740807.1108,2538942.96,2290454.69,21
+14838,740814.9191,2542148.718,2291169.179,21
+14839,740713.0022,2542797.573,2290741.587,21
+14840,738894.9789,2545752.919,2293824.32,21
+14841,738316.634,2543544.294,2290144.712,21
+14842,740502.1465,2547798.169,2293077.653,21
+14843,736897.1991,2547360.161,2998583.942,21
+14844,738308.9727,2549930.843,2333613.695,21
+14845,738309.6131,2549599.726,2298209.534,21
+14846,736376.6181,2549609.167,2292148.055,21
+14847,738271.5616,2917631.502,2292500.998,21
+14848,736047.8617,2551541.475,2288332.166,21
+14849,736154.2258,2552812.629,2286577.338,21
+14850,737100.8417,2553274.862,2286289.797,21
+14851,735309.7701,2555469.7,2278230.746,21
+14852,734991.0569,2555641.136,2278490.115,21
+14853,736296.7532,2556745.252,2274750.967,21
+14854,734563.0041,2556758.479,2273399.641,21
+14855,735818.0564,2559493.774,2271332.442,21
+14856,734609.2945,2558822.809,2270355.178,21
+14857,734319.3115,2561202.413,2265588.454,21
+14858,734815.7023,2560920.515,2265097.424,21
+14859,733645.4307,2562999.716,2260569.353,21
+14860,734305.5445,2563596.091,2973423.151,21
+14861,732949.3007,2564122.009,2303177.349,21
+14862,734510.4153,2566493.217,2259134.07,21
+14863,732962.5029,2566181.695,2258445.593,21
+14864,734678.1577,2567350.47,2253223.399,21
+14865,731427.1554,2568863.387,2251449.222,21
+14866,734258.8009,2569321.027,2246433.245,21
+14867,732961.3647,2936734.717,2248681.284,21
+14868,732819.2521,2569733.788,2177968.845,21
+14869,733277.8371,2574875.897,2170441.323,21
+14870,731341.5456,2572161.661,2163830.432,21
+14871,732783.7824,2574781.421,2158698.457,21
+14872,730868.2886,2576264.8,2155805.811,21
+14873,730341.1176,2575726.348,2147509.021,21
+14874,731788.2327,2577184.288,2143944.612,21
+14875,730311.0114,2579405.856,2140243.483,21
+14876,730349.2343,2578140.814,2856074.95,21
+14877,730195.5891,2581641.086,2173605.359,21
+14878,729778.3206,2579566.218,2129441.913,21
+14879,730605.9376,2581345.014,2119619.01,21
+14880,728870.5746,2579071.185,2119056.005,21
+14881,500170.1808,2338530.046,1661511.092,21
+14882,481915.2846,2319270.561,1628997.642,21
+14883,477044.9975,2317200.64,1616774.751,21
+14884,473767.4073,2315925.696,1605868.117,21
+14885,468812.442,2314449.109,1597101.178,21
+14886,466478.9171,2312718.094,1588648.307,21
+14887,461169.5057,2677268.143,1580772.342,21
+14888,459251.3958,2310885.943,1575275.427,21
+14889,455907.1868,2310238.115,1565439.899,21
+14890,451199.2704,2310283.913,1558784.636,21
+14891,450235.7063,2308523.435,1551665.26,21
+14892,445591.3461,2309648.863,2276707.912,21
+14893,443462.1818,2307284.775,1543682.03,21
+14894,439883.7683,2308806.82,1537396.154,21
+14895,437700.6051,2307193.208,2287554.657,21
+14896,435235.994,2307307.982,1527795.409,21
+14897,431311.4064,2308100.023,1521524.883,21
+14898,429355.6009,2305988.305,2278146.217,21
+14899,426452.4689,2308408.771,1511656.757,21
+14900,423955.1996,2305835.858,1505950.83,21
+14901,421687.8174,2307805.911,2264481.752,21
+14902,418801.861,2306383.272,1496192.478,21
+14903,416255.185,2306839.543,1489239.736,21
+14904,412974.2801,2307682.127,2249149.129,21
+14905,412377.0748,2305790.464,1480592.455,21
+14906,408315.4369,2308941.964,1471773.921,21
+14907,407070.3894,2305681.986,2235589.413,21
+14908,403409.9819,2308415.46,1462951.66,21
+14909,402356.2009,2308459.301,1455980.431,21
+14910,399281.9275,2307265.134,2222064.543,21
+14911,396634.0172,2308594.51,1449738.453,21
+14912,395311.9489,2309308.343,1443532.667,21
+14913,392578.6068,2307929.583,2208535.011,21
+14914,389708.3571,2309609.862,1436100.517,21
+14915,388418.7695,2309715.751,1429218.638,21
+14916,385548.5511,2309891.814,2196164.549,21
+14917,383582.6988,2310168.392,1422233.747,21
+14918,381292.3402,2310936.98,1416005.57,21
+14919,379545.7272,2311836.752,2182789.166,21
+14920,376176.7213,2311111.533,1409309.07,21
+14921,375878.7363,2312464.768,1402754.859,21
+14922,371659.5624,2313301.884,2170225.858,21
+14923,371573.0419,2312412.284,1396913.148,21
+14924,368266.4031,2313853.781,1389763.562,21
+14925,365996.5514,2314135.4,2159232.401,21
+14926,365032.1174,2314834.515,1383539.851,21
+14927,361413.7833,2316143.031,1377438.307,21
+14928,360719.3433,2315793.29,2147668.365,21
+14929,357334.1914,2316242.364,1370630.358,21
+14930,356428.946,2318290.614,1365918.219,21
+14931,354711.5724,2316677.334,2133519.012,21
+14932,352860.8192,2319038.332,1356914.094,21
+14933,351629.7094,2319807.524,1350995.156,21
+14934,350062.0808,2318856.446,2121335.888,21
+14935,348743.9794,2321610.701,1343764.111,21
+14936,346814.6175,2321615.874,1337966.034,21
+14937,345876.367,2320630.863,2109985.855,21
+14938,344407.9975,2325066.031,1330028.863,21
+14939,342797.5273,2321581.224,1325944.101,21
+14940,341656.6143,2325486.005,2097192.613,21
+14941,339422.5247,2323367.039,1312822.753,21
+14942,338873.6095,2325187.87,1303268.643,21
+14943,336560.7496,2324399.024,2071463.615,21
+14944,335418.5483,2324663.476,1287677.211,21
+14945,333780.3341,2325244.148,1277245.593,21
+14946,332071.228,2324230.178,2047308.106,21
+14947,330765.1703,2326432.717,1264543.868,21
+14948,329491.1459,2325822.962,1253962.885,21
+14949,327385.5317,2326369.817,2027381.778,21
+14950,326467.0591,2325440.948,1239524.72,21
+14951,324598.0164,2327939.768,1231353.861,21
+14952,322988.3886,2326019.855,2004245.752,21
+14953,321893.5388,2328692.177,1216470.553,21
+14954,320159.6996,2325672.207,1207239.881,21
+14955,318742.4988,2329241.022,1983810.567,21
+14956,316828.6929,2327988.035,1192476.799,21
+14957,316088.4224,2328202.152,1184887.967,21
+14958,314029.684,2330053.181,1962390.971,21
+14959,312763.5003,2328475.632,1170459.926,21
+14960,311081.7777,2330166.907,1160843.105,21
+14961,309711.2668,2330165.238,1941688.851,21
+14962,308659.3345,2330615.216,1147297.498,21
+14963,306432.3109,2330997.864,1140381.943,21
+14964,305820.8897,2330608.104,1923608.844,21
+14965,303862.4319,2332373.692,1128358.212,21
+14966,302499.7016,2332818.804,1120217.111,21
+14967,301521.6882,2331965.756,1907386.18,21
+14968,299805.7995,2333255.3,1108776.927,21
+14969,298443.3912,2333729.125,1100812.258,21
+14970,296902.7132,2333748.136,1891459.246,21
+14971,295564.8984,2334969.963,1088882.333,21
+14972,294567.8677,2334574.797,1082902.814,21
+14973,292610.123,2335799.051,1875562.163,21
+14974,291778.9887,2335236.407,1070318.041,21
+14975,289873.1092,2336427.59,1064943.969,21
+14976,288756.9556,2338195.616,1859774.122,21
+14977,287400.221,2335362.83,1052655.616,21
+14978,286011.6951,2338887.68,1046864.995,21
+14979,284647.2526,2337810.175,1843982.484,21
+14980,283009.0252,2339300.134,1035059.421,21
+14981,282049.1436,2339203.049,1028759.445,21
+14982,280364.4512,2339561.332,1829552.302,21
+14983,279210.3001,2341255.041,1017147.112,21
+14984,277466.8103,2340409.238,1010721.937,21
+14985,276420.8181,2341739.589,1815197.64,21
+14986,275453.0976,2341833.983,998921.5982,21
+14987,272963.2783,2342150.381,993871.2167,21
+14988,272530.565,2343713.958,1799932.163,21
+14989,270949.7507,2342987.586,982127.0448,21
+14990,269386.9669,2345092.605,976646.9307,21
+14991,268117.5408,2344054.365,1785398.722,21
+14992,266829.7224,2346560.901,966257.8791,21
+14993,265355.4203,2345703.685,959647.3262,21
+14994,264458.1096,2346252.239,1772018.06,21
+14995,262256.9489,2346967.314,949443.5451,21
+14996,261648.5378,2347926.003,943039.1339,21
+14997,259905.3619,2348608.77,1759319.178,21
+14998,258826.9573,2349310.118,933204.2465,21
+14999,257427.5254,2349376.312,927463.3968,21
+15000,255913.1483,2350094.648,1745962.271,21
+15001,258965.5969,2351260.512,921671.107,21
+15002,257201.8658,2351191.611,919299.2036,21
+15003,256203.6814,2350901.892,1739077.388,21
+15004,254348.6816,2351367.492,907622.1789,21
+15005,252867.7679,2352536.329,902038.1199,21
+15006,251441.9238,2351731.627,1726858.979,21
+15007,249959.4128,2352225.446,891326.6489,21
+15008,248014.6896,2353009.731,885765.9855,21
+15009,246923.2121,2351934.309,1714650.517,21
+15010,245395.775,2353168.402,874999.8043,21
+15011,243794.7284,2353786.532,870070.4258,21
+15012,242990.2793,2352631.158,1701235.437,21
+15013,242478.0749,2354371.834,859098.7257,21
+15014,241093.4462,2353948.064,854384.0142,21
+15015,240316.449,2354385.785,1688070.696,21
+15016,240051.8604,2355038.373,843660.3691,21
+15017,238610.9263,2353622.091,837868.9504,21
+15018,238059.7084,2355436.413,1675588.881,21
+15019,237029.5518,2355454.568,827360.4559,21
+15020,236666.4705,2355990.638,822820.8124,21
+15021,235196.6634,2355731.888,1662599.665,21
+15022,234691.2389,2355781.775,811819.6939,21
+15023,234058.2823,2357351.899,806189.2689,21
+15024,233198.2227,2355261.147,1650516.371,21
+15025,232116.9289,2358159.262,795745.0336,21
+15026,231427.7734,2356877.708,791279.8686,21
+15027,230516.5886,2357951.611,1637204.547,21
+15028,229899.8925,2357730.311,780454.7468,21
+15029,228985.8218,2358311.057,775106.1138,21
+15030,227719.476,2358974.256,1625316.432,21
+15031,227664.8951,2358566.743,764013.4014,21
+15032,226656.864,2359453.823,1222928.942,21
+15033,225667.8798,2358870.151,738779.3191,21
+15034,224691.4549,2360125.261,740386.2002,21
+15035,225026.0643,2360156.576,729604.0093,21
+15036,222777.1866,2359958.06,802092.2747,21
+15037,223210.9058,2361209.776,718671.2197,21
+15038,221934.4539,2360797.899,734947.5613,21
+15039,221170.2204,2361955.091,721925.7293,21
+15040,220690.5094,2361208.602,716574.2575,21
+15041,219481.0687,2362136.529,713124.9858,21
+15042,219472.228,2362783,711135.8954,21
+15043,217900.9415,2362262.346,708149.791,21
+15044,217671.9404,2363560.988,706285.7159,21
+15045,216913.2181,2363622.95,703129.5507,21
+15046,216263.6609,2364608.065,700552.5392,21
+15047,214862.3251,2364774.326,698333.2678,21
+15048,214990.6462,2366444.76,695770.6403,21
+15049,213776.3478,2365887.084,693817.3181,21
+15050,213425.3306,2367032.916,690642.2107,21
+15051,212180.5649,2368030.845,688648.43,21
+15052,212185.2609,2368193.942,685474.458,21
+15053,210951.896,2369356.094,683011.5566,21
+15054,623109.3218,2369274.723,680641.0978,21
+15055,210117.2166,2348318.077,677688.1589,21
+15056,209124.992,2344162.873,674947.0853,21
+15057,208796.508,2342895.302,672398.4996,21
+15058,208085.9054,2342295.406,668479.4273,21
+15059,207599.8318,2341526.524,666189.7269,21
+15060,206410.7439,2340591.9,663096.4841,21
+15061,202268.1068,2339362.173,653704.9854,21
+15062,202058.9512,2339940.275,650615.2938,21
+15063,201001.4596,2341154.53,647300.0848,21
+15064,201420.9963,2341054.771,644426.3618,21
+15065,200642.9367,2341808.514,641059.2887,21
+15066,200579.844,2342728.705,638351.5609,21
+15067,200142.1018,2342365.553,629721.6063,21
+15068,200036.8264,2343698.766,626231.5922,21
+15069,199615.8887,2343823.722,623252.4858,21
+15070,199602.4291,2344174.959,618639.1012,21
+15071,198992.4761,2344475.88,615191.2934,21
+15072,198951.8483,2345751.835,611050.3538,21
+15073,198298.6479,2344938.876,607359.3459,21
+15074,198571.6113,2346236.776,603433.735,21
+15075,198010.3615,2346884.668,599363.8074,21
+15076,197802.9133,2346947.65,595446.7812,21
+15077,197617.4685,2347467.442,591484.1195,21
+15078,197266.2414,2347488.832,587058.4486,21
+15079,196885.0443,2348297.581,583948.7062,21
+15080,196856.65,2349221.051,579006.2021,21
+15081,196593.8596,2349023.619,575126.1825,21
+15082,196199.0233,2349505.594,571350.1707,21
+15083,195827.6816,2350436.365,566846.6319,21
+15084,196055.7763,2350906.658,562735.8613,21
+15085,195274.7599,2350779.701,558702.8942,21
+15086,195290.2291,2351385.112,554324.4841,21
+15087,194895.9531,2351965.272,550280.6468,21
+15088,195088.8007,2352537.014,545651.3807,21
+15089,194271.6755,2352679.063,541868.3295,21
+15090,194346.8689,2353401.235,537307.1534,21
+15091,193996.6903,2351740.855,533230.8799,21
+15092,193951.5582,2353579.22,528790.6068,21
+15093,193661.8427,2353266.462,524596.1509,21
+15094,193206.9374,2354426.304,520240.3083,21
+15095,193306.2615,2354369.548,516013.3487,21
+15096,193147.3419,2356006.518,511389.2513,21
+15097,192589.3738,2355570.465,507580.3892,21
+15098,192337.0275,2356522.111,501789.6194,21
+15099,192508.6246,2357593.463,498314.6695,21
+15100,192248.4844,2357946.875,493219.0104,21
+15101,191572.3775,2358635.733,489091.69,21
+15102,191860.3528,2359280.663,484436.44,21
+15103,191437.1408,2360181.049,479744.1004,21
+15104,191324.7452,2360815.543,475456.6164,21
+15105,191121.9595,2361445.995,470488.9464,21
+15106,191039.3719,2362019.307,466380.9971,21
+15107,190398.6257,2362970.709,461381.1323,21
+15108,190781.7907,2363715.755,456929.2054,21
+15109,190309.1671,2364021.229,451906.3787,21
+15110,189684.3295,2365705.278,448205.1574,21
+15111,190123.2331,2364946.189,443234.4699,21
+15112,189633.9597,2367211.252,438224.1906,21
+15113,189774.0623,2367217.748,433678.7117,21
+15114,189004.0507,2368398.683,429134.5548,21
+15115,189424.0952,2368992.033,423604.5588,21
+15116,188818.3836,2369754.814,419062.5476,21
+15117,188890.7472,2370301.508,413835.6293,21
+15118,188539.6442,2371644.857,408899.3709,21
+15119,188329.7711,2371812.368,403744.4776,21
+15120,188396.6386,2372929.87,397437.4796,21
+15121,217449.8663,2404872.483,430781.8516,21
+15122,217015.648,2402902.577,429994.257,21
+15123,217407.3427,2399876.685,427570.4632,21
+15124,217270.2543,2398241.224,429478.33,21
+15125,216390.7893,2394667.705,425391.2714,21
+15126,216503.6946,2392178.378,425501.7547,21
+15127,215878.2809,2390553.918,423534.7199,21
+15128,215561.1876,2405867.47,421753.5189,21
+15129,215187.2772,2402139.569,423003.0774,21
+15130,214545.4456,2394130.966,419843.6037,21
+15131,214505.8341,2396338.071,419453.0159,21
+15132,214265.6494,2392117.929,418276.8099,21
+15133,213275.624,2390182.136,415868.3915,21
+15134,213388.2807,2386332.837,417529.4606,21
+15135,212713.3086,2383649.984,414255.1777,21
+15136,212615.4189,2381615.32,414450.8997,21
+15137,211986.5602,2378370.59,412450.2384,21
+15138,211828.4098,2374787.951,410942.8519,21
+15139,211206.682,2373866.957,411875.6455,21
+15140,210785.3296,2369088.71,409541.0326,21
+15141,210580.9209,2368051.792,407967.423,21
+15142,210168.7401,2363548.407,407194.2643,21
+15143,209556.6705,2361175.455,404578.3367,21
+15144,209453.836,2358519.37,406760.7487,21
+15145,209065.403,2356173.213,403371.4336,21
+15146,208289.0992,2352125.702,403202.2085,21
+15147,208397.0032,2350362.856,402006.6813,21
+15148,207647.8826,2345917.056,399710.5659,21
+15149,207574.3882,2345565.737,401647.5557,21
+15150,206787.9166,2342005.659,398770.9853,21
+15151,206764.1449,2340248.779,398214.3159,21
+15152,206362.8696,2337458.774,397170.2963,21
+15153,205973.4178,2334743.152,395603.213,21
+15154,205532.0392,2331369.313,396843.0563,21
+15155,204663.4625,2330429.029,394485.0865,21
+15156,205072.97,2325560.926,393987.4459,21
+15157,204137.7827,2324360.106,393264.8464,21
+15158,204309.9975,2322227.225,391048.262,21
+15159,203418.478,2317578.128,392982.4048,21
+15160,203095.5673,2317094.608,390806.8885,21
+15161,202780.0723,2313472.839,390331.6686,21
+15162,202583.6886,2310825.377,389504.8416,21
+15163,201978.861,2308427.049,387559.2439,21
+15164,201827.8555,2305429.227,389479.6884,21
+15165,201101.5379,2302957.617,387268.1078,21
+15166,201002.7914,2301004.832,387129.5534,21
+15167,200889.6766,2297312.943,386303.7488,21
+15168,199719.3369,2295553.218,384729.3595,21
+15169,200406.2092,2292605.874,386674.262,21
+15170,199058.6035,2290151.729,384298.891,21
+15171,199109.8425,2287378.555,384094.4427,21
+15172,198855.424,2284231.041,384121.0897,21
+15173,198076.012,2282318.498,382201.7086,21
+15174,197939.5125,2278731.539,384135.2685,21
+15175,197734.7003,2276419.11,382148.6508,21
+15176,197340.183,2274458.435,382494.0836,21
+15177,196674.4736,2270353.758,381528.9357,21
+15178,196518.5631,2267777.343,380590.9378,21
+15179,196081.1179,2628817.388,381991.946,21
+15180,195589.6515,2259466.571,380357.0318,21
+15181,167917.2713,2218437.831,346162.3614,21
+15182,166463.6879,2216959.7,342002.5941,21
+15183,166576.1634,2217520.305,338282.9631,21
+15184,166287.1966,2216448.815,337375.3956,21
+15185,165999.4435,2216509.434,332918.7099,21
+15186,165771.056,2216540.821,329936.0833,21
+15187,165033.3416,2216332.943,327046.4448,21
+15188,165420.0919,2215756.608,322296.8255,21
+15189,164597.2954,2215939.247,322077.9854,21
+15190,164796.2932,2216104.54,316800.5139,21
+15191,164326.937,2214690.008,313762.2099,21
+15192,577315.6203,2216045.688,311405.0142,21
+15193,163531.047,2215171.577,306061.6827,21
+15194,163963.9232,2215437.587,305774.907,21
+15195,587606.5162,2215682.973,300901.4893,21
+15196,163318.7353,2214988.669,298385.3466,21
+15197,162592.6999,2214665.118,294552.1874,21
+15198,162595.4085,2215695.109,290972.7706,21
+15199,162105.5518,2214911.845,289280.3113,21
+15200,162301.7228,2215073.126,284959.7351,21
+15201,161250.8357,2215650.949,281880.1567,21
+15202,161888.2469,2214913.893,278558.4887,21
+15203,161041.179,2215396.106,274592.8011,21
+15204,160886.9678,2215261.783,272858.3489,21
+15205,160732.1915,2215841.455,268336.2093,21
+15206,160694.991,2215252.692,265434.6088,21
+15207,159655.3527,2215756.888,261913.4684,21
+15208,160199.381,2215911.459,257904.0522,21
+15209,159865.895,2215457.855,256326.4844,21
+15210,159221.7705,2216078.953,251262.1061,21
+15211,159266.0823,2216366.529,248594.9129,21
+15212,158975.5119,2216437.176,245334.9452,21
+15213,158734.1235,2216210.535,240708.1092,21
+15214,158660.1901,2216815.941,239467.8419,21
+15215,157946.0887,2216697.967,234908.0309,21
+15216,158438.242,2217486.85,231167.7558,21
+15217,157488.7081,2217387.976,228881.7554,21
+15218,157623.5804,2217582.214,223596.2312,21
+15219,157410.2518,2218082.754,222482.966,21
+15220,157244.6118,2217810.476,217632.0118,21
+15221,156888.066,2218762.321,214417.5846,21
+15222,156541.0526,2218799.856,211300.7815,21
+15223,156521.7786,2218886.904,206645.4999,21
+15224,156367.1375,2219584.398,206485.0894,21
+15225,155957.8883,2219269.185,202732.8985,21
+15226,155771.547,2220067.209,201138.8232,21
+15227,155483.6862,2220029.234,198710.7588,21
+15228,155490.2133,2221154.514,195951.602,21
+15229,154889.131,2220497.047,195512.2597,21
+15230,155152.4094,2221506.812,192182.2353,21
+15231,154593.4835,2221579.285,190545.3441,21
+15232,154281.6895,2221903.494,188375.1559,21
+15233,154269.555,2221706.194,185991.051,21
+15234,154119.888,2223492.703,185439.9478,21
+15235,153549.351,2222711.061,182696.7005,21
+15236,153909.7425,2223635.897,180956.5303,21
+15237,152984.1991,2223541.277,179308.1252,21
+15238,153309.8119,2224302.155,176383.686,21
+15239,152928.6055,2224700.34,176347.7491,21
+15240,152622.8044,2224400.486,173337.9519,21
+15241,157171.4929,2234226.158,179176.8196,21
+15242,157144.1123,2237053.294,177095.7694,21
+15243,156963.6275,2239827.683,175771.9113,21
+15244,157279.2782,2242676.629,175128.0194,21
+15245,156286.2798,2245240.961,172955.2099,21
+15246,156946.5236,2247888.407,171796.5057,21
+15247,156506.4723,2250742.501,170517.2047,21
+15248,156019.189,2252934.851,168358.3451,21
+15249,156475.4024,2255482.356,168314.9078,21
+15250,156070.8409,2257804.099,166094.837,21
+15251,155688.8588,2260922.739,165092.1857,21
+15252,155747.5094,2262414.51,163577.8083,21
+15253,155676.4569,2266107.646,161486.7988,21
+15254,155454.7925,2267527.908,161890.9793,21
+15255,155209.548,2270418.893,159305.0672,21
+15256,155185.433,2271737.673,158400.6086,21
+15257,155146.875,2274469.291,156959.417,21
+15258,154647.5037,2276161.77,155207.7403,21
+15259,155222.6507,2279234.659,154850.6341,21
+15260,153980.5657,2281319.676,153223.4355,21
+15261,154926.4617,2283689.519,151726.7629,21
+15262,154015.1879,2286317.788,150621.9112,21
+15263,154282.6647,2289214.963,148753.2607,21
+15264,154229.8129,2290132.474,148824.1636,21
+15265,153588.8512,2294236.425,146546.7308,21
+15266,153948.7305,2295434.779,145596.4862,21
+15267,153280.2885,2298592.204,144493.6534,21
+15268,153502.1618,2300976.334,142615.2751,21
+15269,153349.6215,2303788.36,142675.5938,21
+15270,153088.2028,2305987.864,140760.5333,21
+15271,152936.2744,2307493.244,139596.6056,21
+15272,152785.9789,2310628.892,138940.6755,21
+15273,152457.4513,2311839.161,136788.3551,21
+15274,152259.5082,2314335.555,137140.5983,21
+15275,152268.1222,2316301.102,135002.2711,21
+15276,151934.2223,2318797.667,134384.1357,21
+15277,151877.6111,2320360.051,133083.934,21
+15278,151446.7868,2322543.586,131538.245,21
+15279,151838.546,2324493.917,131430.0665,21
+15280,150741.9425,2326777.696,129666.9884,21
+15281,151136.8774,2328757.836,128701.1962,21
+15282,150934.5966,2330438.738,127852.8151,21
+15283,150442.0053,2332885.351,126474.2853,21
+15284,150532.5152,2334418.571,127049.0491,21
+15285,150193.305,2337204.643,125599.0835,21
+15286,149854.8131,2337893.465,125334.1742,21
+15287,149737.2778,2340880.157,124652.4515,21
+15288,149547.167,2342514.025,123546.3426,21
+15289,149423.528,2344845.939,124139.0346,21
+15290,149189.5708,2346131.865,122889.0046,21
+15291,148890.1994,2348565.23,122709.1761,21
+15292,148743.3231,2350382.875,122003.1617,21
+15293,148146.0764,2352103.005,121196.0046,21
+15294,148573.0335,2354580.954,121643.2587,21
+15295,147814.0364,2356135.649,120774.7279,21
+15296,147956.1556,2358304.437,120205.4568,21
+15297,147278.2052,2360021.378,119917.1026,21
+15298,147633.9313,2362082.58,119077.6483,21
+15299,146929.799,2363955.543,119633.0663,21
+15300,146942.3416,2365969.496,118394.6866,21
+15301,141772.3208,2360739.023,111912.3142,21
+15302,140960.8677,2361463.431,110868.7457,21
+15303,140834.5166,2359114.243,110073.8782,21
+15304,140146.6116,2360145.793,110508.7238,21
+15305,139855.9954,2358926.865,108956.016,21
+15306,139352.7629,2357982.822,109024.6409,21
+15307,138646.8169,2357827.663,108226.3566,21
+15308,138749.4782,2356886.599,107501.8255,21
+15309,137671.0769,2355871.283,107568.3234,21
+15310,137711.3612,2356044.887,106895.313,21
+15311,137023.6613,2354110.198,106217.5292,21
+15312,136325.6797,2353740.218,105996.6842,21
+15313,136282.7291,2353636.019,105053.8233,21
+15314,135515.6294,2351987.787,105585.8974,21
+15315,135233.7267,2351128.153,104352.0082,21
+15316,134543.0084,2351255.716,104298.4493,21
+15317,134280.2218,2349317.746,103714.1217,21
+15318,133639.6449,2349460.954,103075.5798,21
+15319,133339.7166,2348459.66,103232.7818,21
+15320,132393.9084,2346833.418,102572.7975,21
+15321,132246.1969,2346873.098,102168.6075,21
+15322,131718.9536,2345766.886,101791.5648,21
+15323,131137.4262,2344440.246,101164.9627,21
+15324,130809.4625,2344258.215,101471.3153,21
+15325,129715.5848,2342594.246,100725.571,21
+15326,129849.5562,2342438.283,100395.3652,21
+15327,129023.2509,2341686.514,100031.4702,21
+15328,128438.8237,2340122.871,99358.67089,21
+15329,128070.5058,2340083.259,99717.19586,21
+15330,127426.2827,2337707.866,99200.25818,21
+15331,127006.5162,2338305.667,98572.77664,21
+15332,126627.6931,2336338.368,98570.20065,21
+15333,126465.4051,2336263.463,97864.91501,21
+15334,126032.3103,2334775.596,98413.20029,21
+15335,125802.4502,2334044.947,97366.95557,21
+15336,125389.8523,2332707.906,97439.83475,21
+15337,125326.9597,2332348.262,96972.55229,21
+15338,124721.4574,2330786.142,96654.95301,21
+15339,124818.743,2330248.217,96780.86972,21
+15340,124259.3208,2329065.271,96250.5084,21
+15341,124183.5233,2328265.484,96157.61992,21
+15342,123753.2757,2326791.616,95696.92691,21
+15343,123532.9002,2326250.306,95162.50055,21
+15344,123131.4944,2324884.913,95733.30962,21
+15345,123190.2557,2324844.193,95037.78489,21
+15346,122770.7812,2324227.105,94859.30207,21
+15347,122577.5642,2322900.847,94689.15009,21
+15348,122274.3302,2321163.636,93930.40356,21
+15349,122083.8249,2321176.723,94728.63402,21
+15350,121764.8164,2319118.677,93694.31012,21
+15351,121769.2044,2318259.681,94073.49523,21
+15352,121285.872,2317337.782,93343.96643,21
+15353,121132.8309,2315442.306,93120.46405,21
+15354,120924.103,2314945.861,93486.13141,21
+15355,120754.3612,2312340.391,93046.21513,21
+15356,120474.7751,2312619.345,92663.5282,21
+15357,120272.9701,2309972.065,92653.49704,21
+15358,119980.8251,2308304.686,92171.68293,21
+15359,120112.6043,2306989.595,92368.68311,21
+15360,119462.0877,2302919.04,92145.07962,21
+15361,119624.5858,2302713.766,91982.54724,21
+15362,119934.2137,2667938.852,91966.80554,21
+15363,119779.873,2302176.879,91814.03399,21
+15364,119773.9287,2302668.233,92273.88251,21
+15365,119941.2878,2302389.836,92032.68243,21
+15366,119954.4065,2302315.741,91849.40388,21
+15367,119787.0385,2301580.415,92147.66196,21
+15368,120233.4901,2302510.103,91750.10908,21
+15369,120130.4053,2301445.475,92642.45655,21
+15370,120376.6598,2302281.983,91839.51544,21
+15371,119968.7998,2301231.021,92528.43614,21
+15372,120565.9774,2301689.164,92169.53849,21
+15373,120371.8894,2301497.427,92486.03967,21
+15374,120456.912,2301818.255,93114.65934,21
+15375,120713.8777,2300268.449,92916.74733,21
+15376,120567.4233,2301258.836,93226.69737,21
+15377,120602.9309,2301699.176,93528.18508,21
+15378,121170.9394,2300187.935,93283.12643,21
+15379,120748.7875,2301419.756,94469.68815,21
+15380,121194.7486,2300491.472,95515.96839,21
+15381,121076.471,2300351.338,96101.60129,21
+15382,121074.5086,2300918.062,97832.69046,21
+15383,121645.7059,2300202.898,98756.89037,21
+15384,121572.5761,2300691.632,101029.3729,21
+15385,121555.8565,2300017.437,102130.5797,21
+15386,122335.6593,2300301.2,103587.3438,21
+15387,121909.5777,2299857.669,105379.7085,21
+15388,122643.9302,2300013.265,106377.7978,21
+15389,122561.4845,2300067.455,108985.396,21
+15390,122844.5049,2299229.918,110142.7771,21
+15391,123166.4986,2300294.988,112074.7485,21
+15392,122718.3006,2299476.55,113816.0254,21
+15393,123351.0862,2299171.623,115702.5815,21
+15394,122984.6902,2299731.319,118310.2067,21
+15395,123348.4686,2299362.335,119644.1996,21
+15396,123162.4827,2299475.556,121888.1389,21
+15397,123491.4301,2298663.261,123925.7713,21
+15398,123164.5634,2299896.39,125529.9867,21
+15399,123502.6362,2298938.851,128618.2927,21
+15400,123469.9554,2298714.39,130196.9128,21
+15401,123446.472,2299102.574,132390.0829,21
+15402,123360.6503,2298685.429,134800.1513,21
+15403,123605.513,2298503.991,136643.4529,21
+15404,123493.1393,2298627.76,139845.5317,21
+15405,123454.4517,2298800.45,141523.1245,21
+15406,123499.6295,2298312.303,144108.0372,21
+15407,123869.6499,2298689.406,146833.1474,21
+15408,123202.8429,2298260.056,148610.0528,21
+15409,123877.0271,2297881.41,152318.0157,21
+15410,123320.8866,2298552.47,154421.4315,21
+15411,123902.9672,2297767.022,156833.3389,21
+15412,123290.6091,2297840.598,159893.352,21
+15413,123902.9701,2297625.979,161824.3568,21
+15414,123277.477,2298181.287,165506.2475,21
+15415,128481.836,2297803.087,167826.6364,21
+15416,128144.5596,2297578.725,170619.1875,21
+15417,129457.9706,2297704.619,173329.4023,21
+15418,129071.276,2297083.482,175813.747,21
+15419,129833.7427,2297634.44,179448.2159,21
+15420,129325.5554,2297252.909,181591.6161,21
+15421,183148.1173,2376845.679,229819.1811,21
+15422,184407.0977,2382160.947,234192.4167,21
+15423,185783.7716,2383909.204,236865.4861,21
+15424,187740.256,2385515.574,240280.0963,21
+15425,187077.5977,2386631.61,243483.3901,21
+15426,187978.8569,2389126.342,247150.3598,21
+15427,188270.1378,2389448.627,249694.8798,21
+15428,188559.3082,2391778.751,252537.8706,21
+15429,188802.2244,2392909.363,255843.6155,21
+15430,189204.4978,2394119.015,258069.6789,21
+15431,189324.9372,2436868.194,261323.2933,21
+15432,189885.6184,2441979.549,263851.6976,21
+15433,190174.0975,2433354.587,266685.0007,21
+15434,190670.5594,2441147.527,269019.9089,21
+15435,190505.4927,2443166.048,272057.2756,21
+15436,191230.0352,2445441.572,274160.0656,21
+15437,191094.0097,2446319.083,277256.2382,21
+15438,191672.9816,2450082.107,279189.9118,21
+15439,192458.0406,2451416.647,281688.1984,21
+15440,194629.7888,2453028.405,284739.476,21
+15441,193407.1938,2454661.679,286317.4126,21
+15442,194428.1064,2456670.239,289200.3092,21
+15443,194571.49,2459226.894,291068.2198,21
+15444,195035.1039,2459309.011,293732.3821,21
+15445,194955.5684,2462041.544,295720.8141,21
+15446,195708.6691,2463750.438,298222.0456,21
+15447,195667.5064,2464630.09,299929.0298,21
+15448,195818.2215,2466253.833,302491.0045,21
+15449,196141.0858,2467279.154,304228.363,21
+15450,196686.9126,2470625.059,306281.7148,21
+15451,196385.2669,2469283.306,308688.9093,21
+15452,197063.0397,2473414.981,310242.4023,21
+15453,196821.3032,2473055.259,312568.7785,21
+15454,197290.4243,2474836.09,314537.6871,21
+15455,197427.9923,2476912.919,316456.5995,21
+15456,197938.9829,2476432.097,317941.7596,21
+15457,197464.9249,2479763.122,320203.7633,21
+15458,198319.7398,2479312.859,322183.9025,21
+15459,197914.9968,2482033.939,323734.6852,21
+15460,198269.6618,2482960.769,325519.291,21
+15461,198915.9653,2483145.482,327482.6526,21
+15462,198144.6412,2486438.392,329036.2674,21
+15463,198792.7552,2485184.105,330664.6551,21
+15464,199100.0628,2487806.809,333995.3166,21
+15465,198849.5178,2488888.888,335600.6956,21
+15466,199262.788,2488754.681,337071.5108,21
+15467,199173.0796,2491600.085,339507.76,21
+15468,199430.9782,2492656.246,342585.9057,21
+15469,199791.8514,2492084.145,342924.0184,21
+15470,199281.6902,2494948.157,345574.1856,21
+15471,199983.8123,2495301.624,354010.4662,21
+15472,199539.8897,2496789.831,356681.7207,21
+15473,200274.7256,2497555.683,355693.2966,21
+15474,199906.5548,2498962.458,364211.1316,21
+15475,199978.0605,2499148.535,363217.516,21
+15476,208061.6334,2500598.53,902893.0225,21
+15477,204359.4478,2501897.279,280784.1443,21
+15478,205446.9159,2501945.289,326809.7607,21
+15479,207942.5238,2505233.137,957677.0589,21
+15480,206302.8574,2504323.653,293306.173,21
+15481,269669.4715,2569043.949,587364.2913,21
+15482,274540.4046,2575740.839,317935.2152,21
+15483,277668.4815,2577714.791,325785.2963,21
+15484,280119.6646,2580352.468,338554.0858,21
+15485,283021.2331,2580774.473,457758.1175,21
+15486,283578.4496,2583967.304,460457.537,21
+15487,287662.7488,2585149.854,449077.5797,21
+15488,288717.02,2586489.75,454302.6695,21
+15489,290897.688,2587731.543,453651.9465,21
+15490,293772.5465,2590406.636,455922.2211,21
+15491,294518.3466,2591617.669,458147.9734,21
+15492,298274.6731,2592501.745,461042.6936,21
+15493,299535.0907,2594618.564,463688.706,21
+15494,300542.4057,2595673.199,466429.6133,21
+15495,304413.74,2597549.292,465540.0703,21
+15496,305364.8289,2599041.149,396534.5386,21
+15497,306771.6818,2598948.213,575983.8427,21
+15498,310291.6006,2602965.622,461758.5913,21
+15499,310294.8837,2601392.353,480391.3725,21
+15500,313922.0778,2604304.769,436142.9529,21
+15501,315333.1394,2605716.045,549483.4453,21
+15502,316212.1028,2606725.766,582294.2,21
+15503,320077.5934,2607269.212,385802.2713,21
+15504,320264.0585,2610017.504,392938.4276,21
+15505,323280.306,2609376.613,570518.7408,21
+15506,324077.408,2612713.096,537709.3549,21
+15507,327295.9151,2612754.78,609478.7171,21
+15508,328589.4342,2613469.431,401594.2136,21
+15509,330106.6772,2615863.188,409217.952,21
+15510,332471.5692,2616622.385,585651.5779,21
+15511,334425.1425,2617029.652,559396.974,21
+15512,335825.229,2618942.704,505423.5264,21
+15513,339375.6278,2619831.659,528656.4417,21
+15514,340536.5776,2621764.764,525437.7972,21
+15515,342803.1779,2622116.696,527787.4257,21
+15516,345075.6317,2622930.95,529542.8139,21
+15517,346809.9614,2624614.154,533542.9805,21
+15518,349954.4738,2626177.264,1135554.877,21
+15519,351641.1257,2626414.087,443924.8918,21
+15520,357260.3402,2627156.117,478483.1112,21
+15521,361738.1611,2628735.874,1199952.388,21
+15522,368132.2631,2631149.509,462263.5454,21
+15523,371202.262,2628979.875,490048.8138,21
+15524,378129.9213,2633386.877,1238960.742,21
+15525,382979.7147,2633165.737,481662.0758,21
+15526,387728.2482,2633230.517,854222.1642,21
+15527,393050.385,2636195.444,484312.6089,21
+15528,398412.2193,2634301.703,493893.3796,21
+15529,403289.7256,2638801.175,516175.6871,21
+15530,408805.3579,2638360.1,617802.1981,21
+15531,414326.8519,2639506.577,647969.4798,21
+15532,420379.4417,2640170.485,743732.7976,21
+15533,425113.7588,2642195.781,504973.8325,21
+15534,430897.9228,2642263.572,515098.189,21
+15535,436114.3375,2644103.993,708729.7226,21
+15536,441826.1405,2644467.292,680363.648,21
+15537,447817.3474,2646384.662,793421.6453,21
+15538,452245.9594,2646334.268,528609.2702,21
+15539,458393.8689,2648189.929,540189.6066,21
+15540,463816.1429,2648913.283,720943.3623,21
+15541,465158.6092,2648451.268,699539.787,21
+15542,471484.4529,2649272.152,814589.1929,21
+15543,471890.3072,2651170.135,550073.4851,21
+15544,476626.9433,2648493.265,561018.1023,21
+15545,477904.0883,2650083.629,739123.2561,21
+15546,481011.6406,2649080.387,713006.62,21
+15547,484355.5418,2649522.886,833727.0772,21
+15548,486614.7277,2649436.576,573020.0728,21
+15549,490164.2144,2649407.744,580951.2762,21
+15550,491970.0821,2649197.909,755098.1529,21
+15551,495884.9995,2649911.835,729031.0049,21
+15552,497628.6523,2648091.332,663061.3336,21
+15553,500816.3078,2649760.41,691704.0181,21
+15554,503214.8751,2648814.304,688947.7881,21
+15555,505573.9059,2649377.53,692086.8123,21
+15556,509142.8145,2649469.157,698683.9953,21
+15557,511537.3237,2648007.065,700910.9402,21
+15558,514031.2133,2649951.651,1392718.827,21
+15559,517037.5342,2647986.531,642360.6729,21
+15560,519758.7631,2648736.468,649481.5625,21
+15561,521684.0813,2648402.047,1460447.251,21
+15562,524890.256,2649054.229,666234.8041,21
+15563,527680.5869,2647653.492,1087827.864,21
+15564,529991.6335,2647433.35,671007.7106,21
+15565,532711.7019,2648718.745,681527.4082,21
+15566,535620.0973,2647372.435,716202.8009,21
+15567,538603.4932,2648046.968,760414.624,21
+15568,540143.626,2647156.227,790724.5951,21
+15569,543141.4809,2648316.744,797061.3609,21
+15570,546042.1984,2646557.976,836871.3363,21
+15571,548742.5262,2647723.81,712376.6766,21
+15572,550818.7805,2646520.881,912591.9629,21
+15573,554431.0188,2646491.796,866061.2595,21
+15574,556431.433,2647276.674,1030203.072,21
+15575,557865.1204,2646543.303,724740.2938,21
+15576,562268.768,2646585.75,735274.4752,21
+15577,563749.5753,2645575.576,740083.8407,21
+15578,567813.6108,2646588.781,867438.238,21
+15579,568220.4959,2645991.112,787572.8745,21
+15580,572390.7689,2645772.725,819545.0747,21
+15581,573952.0108,2644808.955,817455.0002,21
+15582,577421.399,2646224.637,818985.5718,21
+15583,579019.078,2644174.785,824733.5383,21
+15584,581574.5701,2646000.926,828994.1664,21
+15585,585552.6871,2644011.276,1592047.175,21
+15586,586011.5331,2644602.864,797310.6217,21
+15587,590875.0113,2644836.798,805958.5519,21
+15588,590945.4429,2643751.369,1654406.836,21
+15589,594981.9953,2643765.602,820993.7869,21
+15590,598027.8084,2643912.893,827513.7472,21
+15591,599439.9936,2643940.292,1690106.975,21
+15592,602192.1112,2642622.073,843946.2621,21
+15593,604427.6037,2643763.65,1311575.167,21
+15594,607881.0296,2643233.327,839385.7072,21
+15595,609565.8892,2642730.904,854072.4165,21
+15596,612691.2363,2641769.042,891297.1278,21
+15597,614293.032,2642859.404,1134958.314,21
+15598,617898.9338,2641807.545,857843.0574,21
+15599,619168.1028,2642314.58,866010.4507,21
+15600,621950.8861,2641376.092,991821.7711,21
+15601,632133.2918,2650535.335,971188.0577,21
+15602,633865.2848,2654919.205,1215835.803,21
+15603,637179.7422,2655549.299,890301.5814,21
+15604,636526.9185,2655434.258,900496.9374,21
+15605,639947.2173,2658278.67,920300.8857,21
+15606,640642.7754,2657144.999,965606.6126,21
+15607,642668.647,2660751.382,958529.0693,21
+15608,644510.3042,2660714.868,1351213.409,21
+15609,645316.9507,2660908.866,910192.5046,21
+15610,647289.3579,2663760.231,921360.2646,21
+15611,648939.7152,2662503.136,926863.8763,21
+15612,650099.867,2665046.699,1058539.242,21
+15613,652210.573,2665561.006,933998.69,21
+15614,654462.6575,2665922.897,955789.6964,21
+15615,654127.5023,2668124.58,951340.4883,21
+15616,656622.5969,2667248.653,954115.1927,21
+15617,657972.6468,2670590.604,958808.0071,21
+15618,660162.1357,2668376.492,968144.9144,21
+15619,661253.9279,2671990.717,972724.7807,21
+15620,662634.2433,2672997.575,979014.964,21
+15621,663364.9001,2671719.079,1821586.986,21
+15622,665860.3095,2673824.974,990088.867,21
+15623,667364.8215,2674636.146,997664.0121,21
+15624,668414.4739,2676332.843,1870691.395,21
+15625,670238.8766,2675860.491,1007799.93,21
+15626,671063.7472,2677938.303,1013061.906,21
+15627,673150.3905,2677827.778,1896998.357,21
+15628,673927.9491,2679553.294,1020816.601,21
+15629,676982.2057,2679674.172,1028777.501,21
+15630,676104.2812,2681065.347,1915862.098,21
+15631,678854.2186,2681230.849,1034881.965,21
+15632,680963.0217,2682155.639,1042600.377,21
+15633,681097.3559,2684254.683,1933374.844,21
+15634,683076.0468,2683288.07,1049032.379,21
+15635,684628.9539,2684980.543,1054785.619,21
+15636,686252.7113,2686869.957,1949335.142,21
+15637,686919.6979,2686438.013,1061030.051,21
+15638,688824.1596,2687662.811,1067649.042,21
+15639,690260.0946,2688531.243,1963003.096,21
+15640,691412.3178,2689084.058,1074421.062,21
+15641,693492.3973,2689805.996,1079897.495,21
+15642,694610.8125,2691622.595,1975760.276,21
+15643,695033.52,2690272.328,1085787.762,21
+15644,697662.8847,2693244.202,1092123.654,21
+15645,698586.8535,2693696.975,1988074.807,21
+15646,700169.1803,2694496.147,1098086.283,21
+15647,701586.2862,2694127.989,1101824.552,21
+15648,702601.5312,2696426.952,1999533.164,21
+15649,704105.1945,2695785.412,1109942.146,21
+15650,705924.0562,2697540.906,1110968.833,21
+15651,706168.8127,2697494.496,2013204.925,21
+15652,709617.9605,2699554.959,1118804.057,21
+15653,708369.8143,2699720.103,1121377.794,21
+15654,711895.7506,2700400.587,2025701.737,21
+15655,712769.5215,2700596.872,1126258.009,21
+15656,713071.337,2703888.437,1134385.779,21
+15657,716322.4754,2700900.478,2032178.838,21
+15658,716167.2023,2704926.866,1138007.463,21
+15659,717839.8762,2704133.716,1143957.398,21
+15660,721006.1549,2705111.001,2041492.993,21
+15661,723160.6129,2704837.338,1149888.205,21
+15662,725117.3386,2704322.618,1155976.752,21
+15663,726643.4438,2704354.69,2059262.35,21
+15664,729177.1124,2704455.884,1164656.992,21
+15665,730775.6926,2702361.236,1171072.74,21
+15666,732407.7562,2702482.211,2070720.327,21
+15667,733347.2092,3062339.411,1179981.33,21
+15668,736299.8072,2699596.456,1183915.707,21
+15669,736876.1761,2700383.043,2082789.626,21
+15670,738388.9648,2700181.372,1193375.706,21
+15671,741344.9834,2698337.195,1196719.902,21
+15672,742015.9222,2697952.826,2098197.128,21
+15673,743385.5875,2697494.816,1203797.49,21
+15674,746169.0117,2696634.31,1211240.334,21
+15675,747462.7247,2696127.756,2108104.695,21
+15676,748538.2858,2695538.693,1218594.152,21
+15677,750877.8573,2693788.573,1222993.056,21
+15678,752319.2882,2694628.142,2121082.4,21
+15679,754303.2008,2692027.951,1230851.094,21
+15680,756052.0757,2692178.181,1236873.821,21
+15681,756897.7142,2692603.181,2130245.295,21
+15682,759304.8321,3050927.416,1245110.608,21
+15683,760242.2375,2689346.822,1248175.494,21
+15684,763226.0901,2689765.257,2143211.42,21
+15685,763354.3686,2688730.377,1256290.571,21
+15686,765945.2343,2687573.508,1261692.541,21
+15687,767430.4896,2687227.235,2154092.666,21
+15688,769450.2118,2686958.731,1269231.194,21
+15689,770701.3826,2684434.732,1273647.9,21
+15690,772348.2309,2686461.525,2168076.067,21
+15691,774740.4721,2682737.932,1284366.711,21
+15692,775857.5184,2684183.971,1289844.656,21
+15693,776653.215,2682364.351,2177956.074,21
+15694,779755.6722,2681475.364,1296257.472,21
+15695,780295.6069,2682119.437,1301796.914,21
+15696,782933.3245,2678874.779,2189301.555,21
+15697,783408.379,3042038.327,1307497.284,21
+15698,787048.8442,2677257.851,1315482.989,21
+15699,786086.0859,2678769.138,2197878.236,21
+15700,789978.5485,2677472.575,1322129.042,21
+15701,790338.4547,2676496.781,1324793.156,21
+15702,793396.4093,2674581.707,2208900.778,21
+15703,793620.2845,2676460.419,1334481.955,21
+15704,795623.5526,2673295.937,1337069.561,21
+15705,797275.6877,2673647.826,2219685.815,21
+15706,799805.7907,2673392.615,1345557.069,21
+15707,800336.2046,2670786.766,1348927.966,21
+15708,801965.0891,2672564.215,2230959.485,21
+15709,805324.4492,2669266.106,1354971.944,21
+15710,804890.486,2669543.05,1362611.545,21
+15711,807407.0684,2669171.034,2240409.041,21
+15712,809654.8185,2668521.477,1368751.376,21
+15713,809781.902,2666707.052,1373178.58,21
+15714,813602.9664,2666599.733,2250307.183,21
+15715,813451.4293,2665813.733,1379705.364,21
+15716,815834.6222,2665048.4,1387206.544,21
+15717,817361.2132,2663878.794,2257566.853,21
+15718,818792.401,2663972.308,1393902.239,21
+15719,820405.641,2661068.304,1397385.856,21
+15720,822613.8759,2662691.088,2268917.565,15.6
+15721,0,0,107.2977162,15.6
+15722,0,0,0,15.6
+15723,0,0,866618.0258,15.6
+15724,0,0,30.4889287,15.6
+15725,0,0,0,15.6
+15726,0,0,865062.3279,15.6
+15727,0,0,1302331.355,15.6
+15728,0,0,0,15.6
+15729,0,0,838632.3728,15.6
+15730,339487.3363,0,0,15.6
+15731,0,0,0,15.6
+15732,0,0,0,15.6
+15733,0,0,0,15.6
+15734,0,0,0,15.6
+15735,0,0,0,15.6
+15736,0,7.89632154,0,15.6
+15737,0,0,0,15.6
+15738,0,69.72419667,0,15.6
+15739,0,0,0,15.6
+15740,0,0,0,15.6
+15741,0,0,0,15.6
+15742,0,53716.06825,0,15.6
+15743,0,1407.962709,0,15.6
+15744,0,12453.57986,0,15.6
+15745,0,23181.74779,0,15.6
+15746,0,17263.40292,0,15.6
+15747,0,18809.9204,0,15.6
+15748,0,19294.79064,0,15.6
+15749,0,19828.22004,0,15.6
+15750,0,20330.49826,0,15.6
+15751,53372.65326,20762.98118,0,15.6
+15752,354.3910165,21220.92546,0,15.6
+15753,4130.349557,21697.21897,805158.9816,15.6
+15754,22144.75071,22100.80341,0,15.6
+15755,12892.28088,22759.87655,0,15.6
+15756,14744.60333,23303.78801,831621.4573,15.6
+15757,15171.79694,23636.29029,0,15.6
+15758,15502.55158,24059.72459,0,15.6
+15759,15733.98311,441602.2795,835601.083,15.6
+15760,16058.20388,42659.35362,0,15.6
+15761,16401.92608,108283.3275,0,15.6
+15762,16641.55692,210256.5969,836111.2966,15.6
+15763,16932.78723,156342.555,0,15.6
+15764,17232.37862,168569.708,1407598.068,15.6
+15765,17497.98597,173095.7646,806828.7191,15.6
+15766,17771.58661,177381.3347,5.698797523,15.6
+15767,357602.3445,180447.8,0,15.6
+15768,18348.90417,185150.5269,807832.166,15.6
+15769,18593.06775,188410.6648,10.36911966,15.6
+15770,18861.52759,192372.5297,0,15.6
+15771,19135.81549,196079.7672,808794.3636,15.6
+15772,19361.39742,170150.3691,10.42573615,15.6
+15773,19686.14957,173298.7643,0,15.6
+15774,19882.17696,266671.9308,809692.0342,15.6
+15775,20172.19135,188436.6028,10.71309114,15.6
+15776,20421.25303,213252.7387,0,15.6
+15777,20659.09159,221687.1496,810564.986,15.6
+15778,20905.72065,221051.4978,10.24898028,15.6
+15779,21181.93374,225507.2165,0,15.6
+15780,21389.22857,228934.3146,811381.9821,15.6
+15781,0,231521.3587,6.661309329,15.6
+15782,0,233890.5653,186877.3138,15.6
+15783,0,234316.1504,858677.2798,15.6
+15784,75988.17956,236896.9184,52568.35747,15.6
+15785,4845.352004,237843.1293,479265.553,15.6
+15786,17943.4201,239549.8645,51782.05073,15.6
+15787,27704.42746,241281.0836,56897.52996,15.6
+15788,22199.39831,242347.5249,111121.6591,15.6
+15789,23019.53677,34089.55283,232273.5437,15.6
+15790,23131.07842,34135.57981,383564.6223,15.6
+15791,23247.12937,34430.92714,331157.1832,15.6
+15792,23428.04739,789725.4756,50877.19483,15.6
+15793,23547.18595,66693.02501,54587.59525,15.6
+15794,23686.72748,176559.8845,83864.07551,15.6
+15795,23806.66695,321819.8503,338775.0402,15.6
+15796,23943.70514,241944.1683,71214.84742,15.6
+15797,24096.61446,254463.9053,52816.82144,15.6
+15798,486268.4273,256279.2204,51188.35651,15.6
+15799,24768.28126,257467.5115,336664.8633,15.6
+15800,51836.70956,258750.9051,299847.2811,15.6
+15801,176776.8376,259790.9722,50189.67592,15.6
+15802,134981.0807,260963.7998,1056755.475,15.6
+15803,130004.075,262117.6721,319454.3204,15.6
+15804,474837.1242,229269.52,48933.11643,15.6
+15805,136788.7943,230550.3499,49086.85257,15.6
+15806,137535.6052,338820.1035,49236.57686,15.6
+15807,138925.8852,252241.373,294358.6976,15.6
+15808,139922.5788,261702.9497,205878.6912,15.6
+15809,141066.16,277233.2246,209668.0013,15.6
+15810,142217.306,271530.7021,204841.9617,15.6
+15811,143162.1195,272915.8433,0,15.6
+15812,144349.9375,274157.1116,0,15.6
+15813,145392.6143,275429.708,0,15.6
+15814,120719.953,276167.0796,0,15.6
+15815,121323.4195,277204.7437,648515.0349,15.6
+15816,122593.1539,277962.7933,0,15.6
+15817,207467.6565,277099.742,0,15.6
+15818,144795.5507,278535.4451,674476.3903,15.6
+15819,138377.735,278723.9536,0,15.6
+15820,161092.33,279974.5378,0,15.6
+15821,153163.6216,280922.7455,683598.5801,15.6
+15822,155377.1231,37540.57321,0,15.6
+15823,156224.7887,37697.9424,0,15.6
+15824,157341.1195,37651.90807,689906.4792,15.6
+15825,158232.8999,917121.0335,0,15.6
+15826,159141.23,148466.7254,0,15.6
+15827,160310.1414,138068.1678,695550.1702,15.6
+15828,27502.62833,390536.0156,0,15.6
+15829,27623.10651,272434.213,0,15.6
+15830,27675.16298,288923.8273,700882.9488,15.6
+15831,27767.89489,289796.5469,0,15.6
+15832,27808.59317,291760.0966,0,15.6
+15833,626810.3156,291335.0068,706000.2714,15.6
+15834,27997.18831,292458.3077,0,15.6
+15835,57689.64418,293525.7265,0,15.6
+15836,253962.8781,286517.2303,710894.9122,15.6
+15837,155236.8079,257551.8511,0,15.6
+15838,169428.6166,370615.7894,0,15.6
+15839,171676.9607,292744.3776,715600.3473,15.6
+15840,173664.0791,299005.5705,1001818.139,15.6
+15841,515565.3803,313402.6829,0,15.6
+15842,176871.6458,310748.329,707179.6617,15.6
+15843,178549.9741,312043.3731,0,15.6
+15844,179768.8855,313986.1263,0,15.6
+15845,181260.23,315070.8669,712011.0338,15.6
+15846,182456.2778,316681.7675,0,15.6
+15847,154379.2859,318058.3617,0,15.6
+15848,155127.1035,319775.9093,716635.3601,15.6
+15849,238026.4176,321561.2488,0,15.6
+15850,177941.4274,322193.7745,0,15.6
+15851,182156.3193,323811.0083,721083.2107,15.6
+15852,194546.9189,326205.2707,0,15.6
+15853,191360.2785,326233.4185,0,15.6
+15854,193061.7244,328826.1793,725335.721,15.6
+15855,193643.2715,50824.70567,0,15.6
+15856,195675.6788,51172.82735,0,15.6
+15857,196169.3464,871906.0346,729421.743,15.6
+15858,198187.6826,160508.5844,0,15.6
+15859,198834.355,299658.1239,0,15.6
+15860,200315.734,378569.3692,733325.4894,15.6
+15861,201577.175,333821.3104,0,15.6
+15862,202690.9982,340927.0146,0,15.6
+15863,31514.06418,342090.7814,737078.1469,15.6
+15864,31699.95943,342895.149,0,15.6
+15865,31751.21598,344800.0309,0,15.6
+15866,31915.86943,336174.2658,740662.0189,15.6
+15867,706311.1429,336584.5638,0,15.6
+15868,67742.44986,295043.4255,0,15.6
+15869,143574.6348,295714.7382,744112.8718,15.6
+15870,273958.1237,413450.0008,0,15.6
+15871,206024.0312,333615.6671,0,15.6
+15872,215812.3317,386405.5941,747408.1694,15.6
+15873,216801.3551,344811.3133,0,15.6
+15874,218189.9754,348818.3966,0,15.6
+15875,218757.9663,365687.2727,750586.4411,15.6
+15876,220251.5165,357967.8989,0,15.6
+15877,221029.7617,361674.2951,0,15.6
+15878,222345.7774,362200.1204,753625.5257,15.6
+15879,529218.6823,364830.5541,1084670.439,15.6
+15880,190973.4071,365070.7888,0,15.6
+15881,277891.5511,366872.1403,740398.8277,15.6
+15882,226257.1176,367916.9129,0,15.6
+15883,215698.7322,369676.1606,0,15.6
+15884,234303.2321,370201.982,743836.054,15.6
+15885,229415.9959,372157.9424,0,15.6
+15886,230951.6689,373404.6413,0,15.6
+15887,232201.519,58678.38913,747147.3714,15.6
+15888,232579.9315,58821.26741,0,15.6
+15889,234350.8166,992894.9086,0,15.6
+15890,235036.2075,235575.1879,750307.4539,15.6
+15891,236036.1735,301639.7245,0,15.6
+15892,237186.6584,440471.5943,0,15.6
+15893,238181.5053,376343.9536,753348.9938,15.6
+15894,239536.6881,384465.5475,0,15.6
+15895,240323.0671,385502.3892,0,15.6
+15896,241227.3686,387273.8331,756253.9853,15.6
+15897,35339.6141,388111.436,0,15.6
+15898,35359.68471,389521.1079,0,15.6
+15899,35560.51476,390708.8975,759056.2132,15.6
+15900,735660.8255,343489.8445,0,15.6
+15901,140056.2169,341309.5443,0,15.6
+15902,168521.6791,444280.3437,761775.8378,15.6
+15903,311286.1964,374788.6756,0,15.6
+15904,248331.4418,368158.8397,0,15.6
+15905,256716.3027,365974.0177,764428.8827,15.6
+15906,259441.8383,368497.4382,0,15.6
+15907,261385.7321,415002.9408,0,15.6
+15908,263507.0935,361154.9216,766965.1205,15.6
+15909,265883.0785,359394.716,0,15.6
+15910,267653.7355,376743.526,0,15.6
+15911,231928.9072,365509.4028,769415.1116,15.6
+15912,234026.3569,363614.4221,0,15.6
+15913,325391.4014,361822.9424,0,15.6
+15914,286682.6303,359692.9449,822616.1374,15.6
+15915,265562.0686,356845.809,59458.94897,15.6
+15916,284766.707,354669.6908,183570.6879,15.6
+15917,623530.0455,352250.5499,828768.1976,15.6
+15918,285061.5574,350140.6715,59607.1287,15.6
+15919,287328.119,55874.08437,1293848.959,15.6
+15920,289470.5573,55625.34084,808397.0022,15.6
+15921,291875.9267,916920.3963,58687.5395,15.6
+15922,293581.0179,183053.8873,174974.1667,15.6
+15923,296299.2716,271925.9579,807865.5129,15.6
+15924,297807.5333,389954.2321,59179.29525,15.6
+15925,300525.5421,326852.9832,174775.2453,15.6
+15926,302520.987,330392.1563,807330.5544,15.6
+15927,304650.698,328757.2486,59606.70986,15.6
+15928,306731.9079,325652.0077,174584.4778,15.6
+15929,309244.4151,324080.0255,806794.0796,15.6
+15930,42613.87107,320859.6664,59956.94328,15.6
+15931,42872.41489,318595.9802,174376.0668,15.6
+15932,769480.4003,275156.5193,806223.5864,15.6
+15933,247108.3315,273052.3785,60236.271,15.6
+15934,251522.0079,388672.9295,174174.4395,15.6
+15935,363767.183,294666.8824,805655.6435,15.6
+15936,322844.5927,301786.4154,60457.75228,15.6
+15937,327334.8896,296958.8772,173961.9658,15.6
+15938,329379.0193,291882.7742,805076.5962,15.6
+15939,331692.3841,288632.3275,60634.07238,15.6
+15940,333688.5455,286285.8071,173759.9213,15.6
+15941,335712.6327,284323.7616,804523.1062,15.6
+15942,338075.802,281471.0749,60776.49604,15.6
+15943,294586.3581,278985.4589,0,15.6
+15944,296022.5411,318620.0572,747543.864,15.6
+15945,388790.5925,274125.3025,0,15.6
+15946,362505.7693,271765.4557,0,15.6
+15947,352493.2055,283467.7046,750751.1407,15.6
+15948,343931.0255,275402.4059,0,15.6
+15949,357572.8248,272694.6391,0,15.6
+15950,356010.9805,271039.5995,753825.6317,15.6
+15951,357316.5266,45114.47081,0,15.6
+15952,360119.0128,45077.94719,0,15.6
+15953,362410.9565,44649.38498,756778.3861,15.6
+15954,364121.2775,860861.7062,0,15.6
+15955,705899.822,110964.0572,0,15.6
+15956,368981.0313,113870.5057,759596.134,15.6
+15957,370667.2713,352582.5684,0,15.6
+15958,373261.7897,232225.6529,0,15.6
+15959,375318.5034,245274.2274,1856479.786,15.6
+15960,379665.9954,240958.5681,0,15.6
+15961,379571.3515,241362.2748,0,15.6
+15962,50392.97575,241978.2112,748366.8067,15.6
+15963,50354.90605,242141.0015,0,15.6
+15964,853407.1516,209117.1089,0,15.6
+15965,422901.4435,208870.6215,751391.4988,15.6
+15966,279047.6478,313185.0353,0,15.6
+15967,421342.9926,223944.1665,283786.671,15.6
+15968,387691.0772,238114.9297,846573.1146,15.6
+15969,384506.3063,250115.3532,97591.33194,15.6
+15970,383730.3775,243688.5164,206695.8424,15.6
+15971,384627.0516,245617.875,855935.4543,15.6
+15972,385134.2662,245443.4318,104476.9142,15.6
+15973,384600.0198,245772.5466,205998.2495,15.6
+15974,386084.0862,237550.7726,851011.6018,15.6
+15975,334663.4308,238797.1738,105763.7682,15.6
+15976,335638.8735,237845.7562,205267.3085,15.6
+15977,425131.0213,239070.2174,850237.7663,15.6
+15978,407696.7622,239417.6394,106294.8384,15.6
+15979,389203.6097,239128.7972,205026.9539,15.6
+15980,389730.2535,239971.2022,849627.4434,15.6
+15981,385839.1898,240475.5752,106951.1948,15.6
+15982,390271.7327,240288.7411,205102.9565,15.6
+15983,388801.4183,241148.6142,849204.7101,15.6
+15984,388829.3309,72581.19214,107635.3637,15.6
+15985,388930.217,34750.61145,205327.326,15.6
+15986,390009.8673,36019.77831,848815.9767,15.6
+15987,389455.7556,818151.7638,108395.4467,15.6
+15988,390064.3077,86115.09615,205623.456,15.6
+15989,390388.7922,143672.9424,848596.4793,15.6
+15990,390947.1989,336998.7663,109467.2761,15.6
+15991,390425.5713,238423.5711,206349.9169,15.6
+15992,391437.3378,252925.9849,848860.4634,15.6
+15993,730619.1652,253568.6042,110465.4983,15.6
+15994,51669.97862,254539.1314,206825.4309,15.6
+15995,51504.33473,254486.4449,848968.0798,15.6
+15996,864224.1636,219413.5038,111507.9422,15.6
+15997,444682.2694,219835.5184,0,15.6
+15998,303104.0983,329248.4615,741309.6913,15.6
+15999,420974.1743,237251.5348,0,15.6
+16000,402090.2888,249351.6855,1197873.301,15.6
+16001,395148.3186,263348.7482,723973.9641,15.6
+16002,394334.1875,256173.2844,0,15.6
+16003,395384.8429,257834.2721,278652.4285,15.6
+16004,395199.5224,258090.432,825241.1826,15.6
+16005,395630.337,258401.9939,103169.3019,15.6
+16006,395573.5059,259155.0236,213040.483,15.6
+16007,343865.027,258663.5645,836334.1699,15.6
+16008,344342.5545,259864.9335,113602.4049,15.6
+16009,434242.4196,260004.6637,205743.8542,15.6
+16010,417484.2114,260651.1817,837474.0099,15.6
+16011,397349.6361,260782.6152,114880.5761,15.6
+16012,402417.1296,261083.3129,206189.257,15.6
+16013,393335.6467,261517.3038,838563.5202,15.6
+16014,399730.1584,252265.1582,115828.6551,15.6
+16015,397597.3225,252891.2225,206950.3424,15.6
+16016,397603.382,252921.2239,839653.2518,15.6
+16017,397653.4584,36474.87917,116929.2556,15.6
+16018,397969.6702,36567.75688,207797.3762,15.6
+16019,398044.8491,36579.33497,840819.7037,15.6
+16020,398503.6066,848129.4363,117975.2886,15.6
+16021,398271.4186,145050.3612,208624.6138,15.6
+16022,398468.6628,140261.0886,841473.58,15.6
+16023,398893.0793,360294.842,118419.0363,15.6
+16024,399089.2051,271292.5484,209011.2959,15.6
+16025,399076.4267,284246.2213,841984.4134,15.6
+16026,52363.80758,288823.158,118764.6395,15.6
+16027,52345.9974,291897.5553,209429.7476,15.6
+16028,865655.822,255292.8371,842419.5216,15.6
+16029,452005.1288,259234.1036,119135.3822,15.6
+16030,338277.6864,380191.5216,209774.158,15.6
+16031,748665.2237,289782.4108,842828.7003,15.6
+16032,415528.9412,305261.2334,119510.5919,15.6
+16033,402143.1146,316380.4405,0,15.6
+16034,401704.7979,315523.1165,727570.7166,15.6
+16035,402118.2663,318888.9048,0,15.6
+16036,401624.3051,321592.2614,0,15.6
+16037,402603.2412,323443.53,731336.8013,15.6
+16038,401903.2434,327846.7158,205660.6177,15.6
+16039,350216.5294,330444.8365,203817.1837,15.6
+16040,350183.4645,334000.5093,844176.6958,15.6
+16041,440385.1713,336847.0498,1172949.581,15.6
+16042,424563.0221,340441.2442,208210.6177,15.6
+16043,402860.1443,343624.7162,834176.6088,15.6
+16044,410421.1333,346300.4295,119715.9653,15.6
+16045,399676.7728,349636.8955,208293.6783,15.6
+16046,405210.9853,353032.7264,835095.2237,15.6
+16047,404278.9578,356143.9589,120009.0261,15.6
+16048,403453.2023,359655.8673,208341.8345,15.6
+16049,404209.3287,362255.3798,835971.3441,15.6
+16050,403667.2802,62502.01698,120326.0996,15.6
+16051,404233.6707,48358.96094,208655.2593,15.6
+16052,404234.1678,959610.1786,836812.5496,15.6
+16053,404491.3003,213213.8431,120623.021,15.6
+16054,404204.1168,290796.8008,209116.8796,15.6
+16055,405066.9861,480967.6502,837526.319,15.6
+16056,404425.099,366119.8278,121050.8463,15.6
+16057,404746.6581,376367.9307,209506.2,15.6
+16058,52727.87226,401567.7058,838301.566,15.6
+16059,52771.58311,392451.7431,121350.0473,15.6
+16060,865395.8088,345908.0269,209939.8332,15.6
+16061,457846.4068,349164.0315,838956.9856,15.6
+16062,364615.3146,473968.5584,121710.3999,15.6
+16063,400559.2978,416378.9079,210360.2146,15.6
+16064,424199.6321,407283.076,839576.8144,15.6
+16065,407117.7164,417955.165,122049.1199,15.6
+16066,406074.3913,418830.1001,210752.044,15.6
+16067,406749.1124,422078.647,840133.6304,15.6
+16068,406301.9551,424494.1839,0,15.6
+16069,746324.5115,426705.5658,0,15.6
+16070,406463.0177,430588.4694,722242.7617,15.6
+16071,353829.1238,433677.709,0,15.6
+16072,354287.3497,436198.2127,0,15.6
+16073,444490.7869,439836.7868,933207.3215,15.6
+16074,429282.9661,442426.9723,111237.2335,15.6
+16075,406846.6469,445106.5042,210443.6456,15.6
+16076,415563.7485,449494.6658,855780.0447,15.6
+16077,403342.844,451436.0569,125604.8436,15.6
+16078,409334.0659,455302.8096,215975.2477,15.6
+16079,407919.0735,457620.3624,849014.1507,15.6
+16080,407707.8374,461525.1559,125275.6116,17.8
+16081,1027373.311,1450069.653,2455463.611,17.8
+16082,952910.0206,345084.6029,2377422.347,17.8
+16083,794241.025,1326082.728,2074243.85,17.8
+16084,615802.6406,1013809.63,1192402.031,17.8
+16085,767885.4608,510185.5299,1949985.624,17.8
+16086,722208.9499,855516.1694,1202253.974,17.8
+16087,717575.5732,839899.9819,1202164.112,17.8
+16088,718438.6848,776677.1055,1931289.911,17.8
+16089,718324.5919,764849.6693,1218279.157,17.8
+16090,102189.804,775148.7174,1222361.936,17.8
+16091,915098.1496,768526.5775,1959017.375,17.8
+16092,722346.4378,650887.5278,1235241.159,17.8
+16093,679391.5352,815806.3112,1238458.907,17.8
+16094,732839.2996,764674.4217,1980639.109,17.8
+16095,719302.2554,713455.6571,1250386.862,17.8
+16096,711346.8393,741273.6644,1251190.111,17.8
+16097,691258.1137,729320.6305,1998742.883,17.8
+16098,705992.8281,722616.9654,1261007.654,17.8
+16099,701847.4146,719234.524,1262491.511,17.8
+16100,701547.1244,714036.8879,2012020.598,17.8
+16101,701124.661,710703.4954,1270199.128,17.8
+16102,702806.2416,705737.476,1270935.177,17.8
+16103,619312.8141,702016.4799,1856488.2,17.8
+16104,710188.8963,698768.3898,1111740.321,17.8
+16105,709906.2522,692860.7263,1414161.585,17.8
+16106,702104.7463,690533.3807,2022421.328,17.8
+16107,702838.2129,685822.6632,1269425.142,17.8
+16108,1044332.879,682251.2767,1291582.449,17.8
+16109,704483.9232,677406.2254,2035292.731,17.8
+16110,704603.7486,675044.0316,1286952.219,17.8
+16111,684561.5476,669635.3176,263698.278,17.8
+16112,685150.2872,667277.0261,916337.8382,17.8
+16113,685486.0048,138737.8873,167018.1275,17.8
+16114,745379.5533,138463.4353,261943.8862,17.8
+16115,697685.2057,1221813.096,2468086.656,17.8
+16116,702613.6352,702030.3692,1046591.676,17.8
+16117,711674.8549,546082.8382,1193660.732,17.8
+16118,708288.3591,704864.3069,1295695.53,17.8
+16119,708668.4689,680189.5236,1231114.674,17.8
+16120,709873.1202,625578.047,2506400.673,17.8
+16121,105141.3197,638356.0827,1201564.569,17.8
+16122,917929.5414,634015.2602,1211043.534,17.8
+16123,743098.4546,527343.1792,1212904.057,17.8
+16124,679326.8287,680421.8522,1217906.514,17.8
+16125,742927.2754,610938.1505,1223534.199,17.8
+16126,726829.6847,613200.8015,1228026.229,17.8
+16127,727272.2861,616339.0994,1231914.047,17.8
+16128,723158.7821,610488.145,1940149.479,17.8
+16129,707100.7227,606392.9837,1281928.027,17.8
+16130,719856.1773,600421.8698,1247524.855,17.8
+16131,715112.7224,596944.9014,1250746.574,17.8
+16132,717166.8926,592870.3725,1253999.321,17.8
+16133,717184.596,588336.9146,1256072.645,17.8
+16134,632719.0197,585552.1434,1258643.242,17.8
+16135,722896.5144,580672.6515,1099466.671,17.8
+16136,730129.462,576458.2664,1101142.29,17.8
+16137,718080.6263,572837.6182,1398014.89,17.8
+16138,718632.2671,568231.8388,1256736.656,17.8
+16139,721426.3012,563681.7075,1257091.473,17.8
+16140,721673.7119,557166.6077,1277243.961,20
+16141,2319996.854,2611757.91,3204711.421,20
+16142,2042443.768,2626989.823,3042773.321,20
+16143,1455701.74,1311852.238,2641149.723,20
+16144,1026358.323,881924.4173,1991222.194,20
+16145,984073.9707,282533.5063,359731.7574,20
+16146,1355975.618,1619547.467,612934.0858,20
+16147,1078871.962,1290171.23,2656481.367,20
+16148,1120619.71,1000286.326,2033994.162,20
+16149,1118864.702,1133781.869,1642989.497,20
+16150,1117999.011,1077356.796,1765225.812,20
+16151,1113426.045,1173868.471,1820373.573,20
+16152,179850.2141,1151027.444,1786314.967,20
+16153,1018227.838,1107641.912,1793861.358,20
+16154,1235355.519,970557.6896,1797550.051,20
+16155,1161534.923,1188137.869,1802638.531,20
+16156,1133469.978,1134490.201,1804699.543,20
+16157,1082627.803,1095413.651,2780668.267,20
+16158,1113171.945,1107161.187,1776586.351,20
+16159,1105803.237,1104450.356,1786300.32,20
+16160,1101362.144,1100462.565,1790907.846,20
+16161,1099332.693,1098962.857,1796408.38,20
+16162,1099063.346,1093774.381,1799954.56,20
+16163,1097934.37,1093370.554,1803511.269,20
+16164,1097098.712,1090905.784,1807247.882,20
+16165,962098.4681,1088480.808,1811071.765,20
+16166,1121713.481,1085830.418,1812990.663,20
+16167,1080770.202,1083889.247,1557700.157,20
+16168,1097193.723,1083262.647,1561358.872,20
+16169,1093697.145,1080658.647,1925556.701,20
+16170,1093514.82,1077530.125,1858533.83,20
+16171,1091058.518,1077212.362,1733878.335,20
+16172,1089147.97,1074513.139,1718980.104,20
+16173,1091110.647,1073562.374,1735749.144,20
+16174,1087722.313,1071530.285,1724864.374,20
+16175,1045047.287,1070027.609,1722729.457,20
+16176,1044707.523,198926.9918,1726025.396,20
+16177,1119181.987,1378049.02,410061.0817,20
+16178,1447257.543,1064711.099,560347.3566,20
+16179,1088973.073,1015374.409,2726002.381,20
+16180,1081425.889,1082963.871,1931399.223,20
+16181,1086950.556,1011292.604,1589970.119,20
+16182,1086118.661,1009457.46,1810572.382,20
+16183,173112.5046,1107340.189,1804107.577,20
+16184,992255.1112,1074725.895,1779550.295,20
+16185,1228190.618,905548.3274,1786376.983,20
+16186,1148228.948,1145584.496,1789072.96,20
+16187,1080951.645,1057185.473,1795836.739,20
+16188,1063111.551,1043212.657,1797985.422,20
+16189,1096579.158,1058700.059,1805339.953,20
+16190,1082942.246,1051084.107,1803950.667,20
+16191,1081503.701,1051649.608,1810803.104,20
+16192,1081613.537,1047836.865,1811019.245,20
+16193,1081337.933,1048855.143,1817029.831,20
+16194,1080473.017,1046800.226,2813675.773,20
+16195,1080558.208,1045081.086,1784237.099,20
+16196,950816.9773,1045694.04,1790161.195,20
+16197,1103142.354,1043687.695,1791905.093,20
+16198,1068507.661,1042604.07,1801531.545,20
+16199,1084782.284,1041687.713,1553731.1,20
+16200,1079807.695,1041682.473,1558698.991,21
+16201,2320676.9,2997592.774,4530690.953,21
+16202,2296462.848,2553392.935,4184180.004,21
+16203,737870.1712,897949.5237,1959959.995,21
+16204,859754.88,1452625.037,1995139.811,21
+16205,1361528.407,1415413.116,2195883.033,21
+16206,1057707.806,1354540.386,2439153.564,21
+16207,1101813.497,1342328.699,2171641.744,21
+16208,1100401.755,1339095.144,2236711.349,21
+16209,1094989.021,1334110.393,2245308.594,21
+16210,1095002.282,1332197.653,2244123.132,21
+16211,1091019.682,1313187.915,2245484.379,21
+16212,1090267.972,1301522.594,2248174.507,21
+16213,1085670.273,1303422.591,2245072.81,21
+16214,1086635.823,1298223.481,2246611.393,21
+16215,1081444.009,1295196.348,2247623.94,21
+16216,1081332.611,1294736.25,2243090.431,21
+16217,1079298.956,1288037.269,2247141.195,21
+16218,1077030.63,1288285.326,2242353.147,21
+16219,1074649.397,1285947.57,2243719.457,21
+16220,1073731.855,1282426.101,2243013.842,21
+16221,1072615.068,1281495.612,2239853.272,21
+16222,1069530.8,1278552.49,2241709.187,21
+16223,1067834.41,1276192.968,2238530.808,21
+16224,1067924.584,1273784.167,2238541.597,21
+16225,1064652.951,1273569.167,2237141.779,21
+16226,1063259.429,1269341.643,2235026.598,21
+16227,1063664.416,1268035.172,2237897.373,21
+16228,1060267.928,1267427.896,2230672.339,21
+16229,1058683.772,1264337.411,2237037.277,21
+16230,1059139.639,1264662.426,2230670.145,21
+16231,1057447.893,1260596.485,2226484.07,21
+16232,1054292.911,1260218.012,2229012.947,21
+16233,1054950.717,1258146.136,2226195.339,21
+16234,1053039.957,1256732.045,2224456.605,21
+16235,1052056.18,1255791.064,2226006.548,21
+16236,1051210.777,1253238.454,2222628.263,21
+16237,1048411.938,1252087.138,2222861.268,21
+16238,1040340.43,1251111.935,2224061.548,21
+16239,1044739.069,1250189.964,2219184.534,21
+16240,1041400.84,1246895.288,2223380.946,21
+16241,1036774.152,1247172.916,2220901.101,21
+16242,1038132.586,1245821.376,2220030.833,21
+16243,1034294.915,1243356.115,2220968.64,21
+16244,1034382.704,1241474.131,2218399.386,21
+16245,1031980.88,1243811.904,2219187.172,21
+16246,1029116.453,1239461.3,2218013.46,21
+16247,1030800.398,1238000.574,2217169.249,21
+16248,1025219.758,1238532.674,2218895.759,21
+16249,1027271.877,1236810.437,2214654.502,21
+16250,1022930.529,1235564.502,2219351.435,21
+16251,1023526.068,1234401.243,2215905.116,21
+16252,1020720.333,1233586.372,2215328.13,21
+16253,1021193.276,1231239.667,2218406.499,21
+16254,1016642.998,1232324.621,2215519.892,21
+16255,1018076.28,1229708.051,2213956.252,21
+16256,1016065.355,1227783.386,2218853.635,21
+16257,1012907.563,1229835.821,2213507.929,21
+16258,1014848.015,1225519.561,2215782.753,21
+16259,1010815.991,1226872.584,2216405.682,21
+16260,1010555.056,1225450.235,2214993.087,21
+16261,1645250.013,3102501.822,2146283.4,21
+16262,1640847.719,3096943.426,2136583.998,21
+16263,1641866.216,3095481.537,2128607.496,21
+16264,1639399.753,3093223.035,2124402.938,21
+16265,1640091.461,3091107.583,2119034.206,21
+16266,1640290.691,3090626.894,2115619.406,21
+16267,1639518.391,3122415.356,2110266.606,21
+16268,1640927.103,3139990.718,2107154.896,21
+16269,1638902.664,3121130.775,2101937.183,21
+16270,1641059.295,3128087.314,2099284.173,21
+16271,1639682.007,3126513.392,2095268.921,21
+16272,1640113.705,3124235.684,2091499.032,21
+16273,1640781.533,3125266.838,2086986.498,21
+16274,1640381.158,3122928.888,2084835.982,21
+16275,1640436.364,3121581.003,2079472.478,21
+16276,1642927.927,3122809.79,2076688.709,21
+16277,1639863.618,3118418.939,2074534.268,21
+16278,1642929.938,3119949.948,2068387.188,21
+16279,1640886.786,3118237.35,2067101.603,21
+16280,1643080.002,3116818.777,2063487.267,21
+16281,1642406.169,3117698.575,2059861.52,21
+16282,1644178.166,3115152.389,2057780.836,21
+16283,1642371.372,3114327.89,2052556.544,21
+16284,1645264.439,3114180.425,2050704.95,21
+16285,1643908.188,3112117.864,2046851.049,21
+16286,1645421.397,3112979.33,2044320.34,21
+16287,1645263.935,3109980.097,2040001.78,21
+16288,1646907.122,3110983.8,2037748.467,21
+16289,1645483.378,3109900.773,2035221.051,21
+16290,1650632.682,3107595.469,2030309.261,21
+16291,1649602.324,3109174.404,2029242.675,21
+16292,1651295.249,3106646.204,2024311.467,21
+16293,1651397.959,3106374.466,2022986.591,21
+16294,1650690.714,3105775.595,2019272.778,21
+16295,1653423.419,3104457.075,2015027.461,21
+16296,1654105.245,3103512.001,2015157.132,21
+16297,1653450.837,3103511.839,2008943.23,21
+16298,1654259.892,3102397.473,2008925.253,21
+16299,1655433.592,3101714.118,2003865.38,21
+16300,1655559.656,3101237.708,2001789.944,21
+16301,1656175.181,3100628.373,1998517.498,21
+16302,1657143.583,3099421.545,1996072.928,21
+16303,1658959.819,3098154.04,1992244.417,21
+16304,1657193.593,3098726.642,1991979.603,21
+16305,1659847.248,3097859.734,1986694.334,21
+16306,1659819.585,3096376.287,1986011.84,21
+16307,1661020.965,3096355.116,1979903.898,21
+16308,1661561.498,3096052.583,1960549.423,21
+16309,1661079.606,3093900.43,1951540.699,21
+16310,1663658.29,3094536.535,1949986.238,21
+16311,1652960.699,3094610.149,1945316.077,21
+16312,1653120.819,3091180.789,1941653.7,21
+16313,1649287.957,3093164.126,1937266.489,21
+16314,1652885.82,3091955.071,1935869.793,21
+16315,1651312.948,3091601.989,1930209.732,21
+16316,1649307.249,3088524.687,1927460.34,21
+16317,1651304.46,3091156.608,1923194.51,21
+16318,1651314.505,3088383.426,1920064.577,21
+16319,1648852.944,3090217.678,1915465.343,21
+16320,1650121.1,3086241.455,1919605.157,21
+16321,1449567.453,2856807.237,1506484.358,21
+16322,1400592.974,2842107.451,1491652.919,21
+16323,1410738.656,2837996.487,1486096.106,21
+16324,1405858.265,3189162.908,1481203.795,21
+16325,1403871.1,2831770.257,1475839.834,21
+16326,1399591.42,2818308.173,1471861.815,21
+16327,1398839.101,2815185.634,1466588.266,21
+16328,1396403.17,2814159.202,1463279.523,21
+16329,1394308.509,2809709.441,1458631.784,21
+16330,1392940.517,2806877.97,1454228.716,21
+16331,1391082.273,2803080.744,1450618.239,21
+16332,1387752.031,2800950.582,1446717.905,21
+16333,1387335.478,2797139.346,1441490.422,21
+16334,1385453.48,2795697.562,1439125.719,21
+16335,1384059.845,2791952.193,1434333.206,21
+16336,1382476.53,2790916.759,1431527.209,21
+16337,1380965.536,2785461.839,1427529.519,21
+16338,1377432.856,2786021.067,1423727.852,21
+16339,1375207.31,2781831.181,1421282.777,21
+16340,1373977.142,2779913.621,1417542.772,21
+16341,1372229.645,2777621.211,1410336.033,21
+16342,1371833.633,2774319.914,1405460.244,21
+16343,1368604.5,2773829.708,1403919.545,21
+16344,1368241.487,2769157.863,1399407.661,21
+16345,1367078.659,2770021.246,1396843.464,21
+16346,1366851.855,2764309.655,1392285.789,21
+16347,1363776.715,2765820.037,1390693.637,21
+16348,1364287.565,2759789.091,1386501.336,21
+16349,1362580.07,2760714.574,1384143.953,21
+16350,1361455.705,2756733.828,1379786.189,21
+16351,1360840.222,2755724.109,1377029.054,21
+16352,1358630.822,2752464.634,1372664.289,21
+16353,1357307.731,2751856.814,1368254.967,21
+16354,1356979.209,2747989.403,1363959.603,21
+16355,1354939.622,2748013.867,1361322.533,21
+16356,1353502.825,2743805.776,1355577.554,21
+16357,1353413.816,2743392.029,1352876.122,21
+16358,1350517.64,2741324.296,1348192.206,21
+16359,1350349.672,2738785.525,1344015.436,21
+16360,1348190.106,2736593.29,1340033.179,21
+16361,1348380.349,2735101.785,1336361.596,21
+16362,1345738.127,2733359.873,1331707.519,21
+16363,1344805.689,2730806.863,1328379.954,21
+16364,1343733.386,2729353.049,1323722.084,21
+16365,1342309.839,2728268.498,1319583.615,21
+16366,1340686.483,2724321.035,1316085.375,21
+16367,1338836.125,2724665.847,1310906.578,21
+16368,1338886.117,2722201.999,1308607.542,21
+16369,1335788.917,2719779.926,1303215.567,21
+16370,1335090.235,2717955.82,1299517.868,21
+16371,1334968.944,2716248.064,1295180.826,21
+16372,1330783.524,2715058.468,1291692.277,21
+16373,1332077.715,2712755.828,1287288.667,21
+16374,1329772.317,2710765.036,1284400.105,21
+16375,1326696.683,2708667.65,1278364.107,21
+16376,1325587.618,2707812.045,1275948.683,21
+16377,1324016.438,2705375.849,1271061.579,21
+16378,1321991.392,2704704.584,1267875.335,21
+16379,1321357.93,2700205.814,1262752.577,21
+16380,1320117.474,2701723.354,1260172.45,21
+16381,1314354.316,2699677.338,1246355.44,21
+16382,1312317.683,2697865.629,1238664.225,21
+16383,1307245.619,2697375.773,1230654.378,21
+16384,1302550.201,2697176.153,2002157.191,21
+16385,1298999.593,2695789.949,1217401.13,21
+16386,1295787.447,2694806.114,1207445.101,21
+16387,1291526.672,2693906.909,2009801.991,21
+16388,1287032.099,2693672.582,1193662.61,21
+16389,1283330.523,2692556.167,1186746.642,21
+16390,1279600.141,2691133.04,1992996.217,21
+16391,1275930.933,2691695.341,1172390.079,21
+16392,1271251.021,2690644.783,1163441.035,21
+16393,1268500.886,2688452.346,1976091.845,21
+16394,1263232.264,2690143.06,1149546.635,21
+16395,1261138.996,2687214.09,1142768.265,21
+16396,1255479.655,2688084.52,1955981.603,21
+16397,1252903.811,2685810.826,1128286.921,21
+16398,1247880.412,2687071.251,1120166.872,21
+16399,1244656.695,2684427.449,1937461.165,21
+16400,1240114.604,2685706.147,1106096.79,21
+16401,1236527.717,2683033.46,1098067.537,21
+16402,1231826.975,2683992.409,1918446.139,21
+16403,1228497.724,2682172.949,1083919.777,21
+16404,1224347.205,2682106.237,1076417.277,21
+16405,1221091.944,2681382.201,1898825.36,21
+16406,1215941.283,2680375.693,1062501.275,21
+16407,1212527.154,2679856.31,1054800.487,21
+16408,1208867.248,2680367.755,1880140.523,21
+16409,1204215.812,2678436.899,1040355.667,21
+16410,1200033.615,2678544.957,1033381.405,21
+16411,1196827.877,2677643.4,1862039.339,21
+16412,1193319.148,2676319.08,1020199.429,21
+16413,1189204.468,2677983.721,1013314.094,21
+16414,1186381.341,2675374.73,1844825.543,21
+16415,1182228.804,2674814.772,1000390.338,21
+16416,1179138.115,2675675.11,993446.7275,21
+16417,1176582.951,2673579.247,1827374.714,21
+16418,1173655.454,2674739.218,980615.4906,21
+16419,1170482.091,2672197.786,973944.2907,21
+16420,1168038.431,2672689.671,1810210.077,21
+16421,1165499.937,2672068.4,960644.0635,21
+16422,1162320.491,2672660.59,953791.8346,21
+16423,1159868.358,2670055.739,1794105.097,21
+16424,1156880.951,2670788.061,939935.2212,21
+16425,1154412.211,2670374.444,934732.7836,21
+16426,1151701.342,2669422.458,1776069.412,21
+16427,1149142.765,2669331.147,921309.3203,21
+16428,1146321.017,2669096.256,1369242.481,21
+16429,1143392.573,2667559.566,888885.4912,21
+16430,1141375.935,2667906.433,889103.863,21
+16431,1138349.257,2667374.602,878106.5185,21
+16432,1135776.328,2666880.568,891892.2631,21
+16433,1133185.612,2666136.739,1198531.081,21
+16434,1130489.177,2665474.391,847849.93,21
+16435,1128862.526,2666110.996,847595.4715,21
+16436,1125097.048,2664822.998,870152.6433,21
+16437,1123019.687,2664658.277,899264.0808,21
+16438,1120989.778,2664651.454,824102.0254,21
+16439,1118046.356,2663667.195,926912.6643,21
+16440,1115547.67,2662493.411,811902.1379,21
+16441,1117817.087,2663258.029,817387.7085,21
+16442,1114624.359,2660174.263,815649.4235,21
+16443,1113069.949,2657472.085,812386.2187,21
+16444,1109334.988,2658422.017,810034.403,21
+16445,1107404.932,2654281.31,1615324.84,21
+16446,1104693.519,2653696.96,804555.8068,21
+16447,1101992.253,2651658.78,801927.8857,21
+16448,1099744.661,2650271.391,1640443.881,21
+16449,1096767.241,2648359.165,796158.5502,21
+16450,1094715.541,2646774.045,792683.7619,21
+16451,1091116.208,2643804.076,1640233.553,21
+16452,1089677.131,2644742.642,786855.7077,21
+16453,1086264.178,2641047.589,783596.331,21
+16454,1084246.414,2640047.187,1635626.022,21
+16455,1081234.544,2638426.967,777084.1406,21
+16456,1079272.711,2636177.584,773758.7613,21
+16457,1076472.072,2635530.367,1630180.794,21
+16458,1073939.971,2632767.715,765243.6751,21
+16459,1071855.31,2630584.621,762155.0879,21
+16460,1069175.178,2631039.23,1622227.829,21
+16461,1067834.044,2627248.414,754566.4143,21
+16462,1065665.155,2627580.144,1220837.498,21
+16463,1065291.539,2624177.57,732828.079,21
+16464,1063765.166,2622905.27,735022.9086,21
+16465,1062718.295,2621675.065,727296.076,21
+16466,1061465.186,2619756.768,812462.5379,21
+16467,1060541.951,2618198.208,1059140.928,21
+16468,1059013.3,2616381.595,704654.2368,21
+16469,1058508.361,2614720.595,706951.5896,21
+16470,1057366.697,2613828.1,727534.0394,21
+16471,1056077.785,2611607.587,728507.5907,21
+16472,1054799.565,2609303.88,760031.4878,21
+16473,1054490.792,2609061.649,980453.0888,21
+16474,1052831.017,2605417.733,678042.0188,21
+16475,1052358.899,2606850.785,678840.2147,21
+16476,1051038.308,2601717.507,795997.3842,21
+16477,1049893.767,2602660.308,763266.328,21
+16478,1049609.596,2600631.684,675000.9095,21
+16479,1047748.396,2598013.407,704000.4789,21
+16480,1047371.747,2597066.781,692967.5562,21
+16481,1045976.149,2595993.27,689673.7646,21
+16482,1045195.952,2592514.582,687937.7293,21
+16483,1044023.106,2593327.64,686135.4504,21
+16484,1042785.215,2590108.302,1457738.25,21
+16485,1042475.18,2588625.721,644996.9438,21
+16486,1040477.816,2588561.08,642885.3867,21
+16487,1040271.076,2584994.159,1487009.642,21
+16488,1038590.751,2584015.093,638585.9559,21
+16489,1038066.264,2582674.719,635930.3434,21
+16490,1036642.195,2582034.216,1490657.427,21
+16491,1035697.127,2577673.807,631542.4479,21
+16492,1034766.657,2578725.936,628828.418,21
+16493,1033922.237,2551126.898,1489720.105,21
+16494,1032887.524,2545021.096,624281.5379,21
+16495,1031571.18,2540843.606,621027.0369,21
+16496,1031041.084,2538137.744,1487535.127,21
+16497,1029667.569,2534798.999,615875.9034,21
+16498,1028594.21,2531637.854,613669.7204,21
+16499,1027910.409,2529367.456,1484172.972,21
+16500,1026371.35,2525797.844,608237.5995,21
+16501,1020835.277,2524162.639,595232.9648,21
+16502,1019999.552,2520156.231,1469358.166,21
+16503,1018458.852,2519505.857,588072.2868,21
+16504,1413229.007,2517229.301,584085.2989,21
+16505,1016784.121,2514783.927,1462748.654,21
+16506,1016130.957,2512897.972,576805.1164,21
+16507,1418396.807,2512634.998,572816.6759,21
+16508,1014223.936,2509004.359,1455407.607,21
+16509,1012827.064,2508096.072,565821.1227,21
+16510,1417097.959,2506915.232,561900.8016,21
+16511,1011239.442,2504100.571,1447988.343,21
+16512,1009046.956,2503264.124,553973.6156,21
+16513,1008698.656,2500981.252,551018.4437,21
+16514,1007591.322,2499872.36,1439660.568,21
+16515,1005992.176,2497603.984,543199.1827,21
+16516,1005125.266,2496208.407,539538.4468,21
+16517,1004195.39,2494657.569,1431588.675,21
+16518,1002418.046,2492417.977,531758.7379,21
+16519,1001811.22,2491723.299,528231.8741,21
+16520,1000598.815,2489074.787,1423437.151,21
+16521,999091.4766,2487954.858,520358.2605,21
+16522,997945.5221,2485736.516,516943.5678,21
+16523,996979.6861,2485326.438,1414734.436,21
+16524,995552.1896,2483166.065,508839.6481,21
+16525,994074.8156,2480962.999,505921.1705,21
+16526,993242.2086,2480556.827,1406185.701,21
+16527,991690.0173,2478860.304,497617.3934,21
+16528,990392.8484,2476987.568,1001711.094,21
+16529,989501.3751,2477079.56,481127.5338,21
+16530,987876.9413,2474609.966,482602.2124,21
+16531,986424.7611,2474181.627,474397.7677,21
+16532,985413.2323,2473273.878,682945.9573,21
+16533,984321.5787,2472027.172,824074.1383,21
+16534,982035.1289,2470407.096,453950.3053,21
+16535,981822.7347,2470388.658,455372.969,21
+16536,979804.4492,2468689.67,461349.3576,21
+16537,978333.8131,2467282.82,628219.5431,21
+16538,977534.9593,2467959.015,600154.9306,21
+16539,975244.3292,2465379.681,433260.6684,21
+16540,975005.0159,2464558.758,708329.49,21
+16541,972751.8816,2464209.686,684652.8062,21
+16542,971850.5328,2462496.836,761771.8846,21
+16543,970936.5752,2462046.33,406857.3912,21
+16544,968665.4493,2461204.287,408110.3257,21
+16545,967642.0115,2460017.843,638382.0649,21
+16546,966408.0197,2458539.522,599224.1555,21
+16547,965136.8874,2458860.24,696733.7713,21
+16548,963765.614,2457217.305,381503.9837,21
+16549,962126.7031,2455826.568,382865.4382,21
+16550,961241.5735,2456111.918,612513.9656,21
+16551,959543.5296,2453959.384,570315.2425,21
+16552,958360.2246,2453920.138,486543.1091,21
+16553,957533.8768,2452751.756,509450.2667,21
+16554,955869.1474,2451538.397,497184.2058,21
+16555,954090.2027,2451291.749,491381.3545,21
+16556,953890.2508,2449751.221,487287.2221,21
+16557,951712.684,2449306.821,483211.7749,21
+16558,951083.8463,2448668.796,685594.6731,21
+16559,949754.4543,2446799.853,331289.89,21
+16560,948361.5634,2447082.564,331085.4748,21
+16561,971345.1307,2479898.951,590141.6013,21
+16562,971814.4496,2478176.817,537511.5596,21
+16563,970325.9919,2478445.345,478304.8621,21
+16564,969983.8393,2532384.499,496098.4676,21
+16565,969029.4302,2492884.98,486853.7605,21
+16566,969101.1902,2502889.72,482347.8082,21
+16567,967684.7102,2499831.865,480004.3967,21
+16568,967639.1837,2498326.494,477529.891,21
+16569,966918.9692,2497378.48,660168.3403,21
+16570,965863.7207,2495013.672,333031.7978,21
+16571,962999.568,2492882.258,335311.4693,21
+16572,961804.7788,2492740.806,554999.1789,21
+16573,961246.8691,2490270.408,505924.5523,21
+16574,959989.3477,2487995.665,449881.3726,21
+16575,958676.956,2486118.444,467174.1135,21
+16576,958160.6706,2485402.342,457999.8126,21
+16577,956064.8654,2482136.744,454520.6259,21
+16578,956028.2374,2482032.139,451771.5476,21
+16579,954165.3218,2479344.063,449089.7259,21
+16580,953279.0132,2477192.942,615379.9145,21
+16581,952606.8718,2476736.674,308115.3299,21
+16582,951140.3634,2474126.095,310340.0132,21
+16583,949881.696,2472869.011,523067.6484,21
+16584,949024.8481,2469974.067,475783.5604,21
+16585,947889.7012,2469731.411,424301.4132,21
+16586,946314.246,2466681.555,439752.2864,21
+16587,945485.903,2465625.081,431481.1731,21
+16588,943848.9434,2463335.373,427613.2168,21
+16589,942725.9696,2462997.757,424885.4997,21
+16590,942067.3467,2460415.173,422915.4943,21
+16591,939939.667,2458595.318,574044.1739,21
+16592,939102.5448,2458131.908,284436.8082,21
+16593,937940.1995,2455048.538,286210.6709,21
+16594,936518.5601,2454746.317,493145.3947,21
+16595,934923.3775,2453031.643,448147.5281,21
+16596,934053.0264,2452142.434,399657.2398,21
+16597,932913.6483,2449552.447,414529.5727,21
+16598,931096.1973,2450359.821,406584.0819,21
+16599,930346.546,2448241.776,402883.5091,21
+16600,929031.0657,2446016.293,400975.4171,21
+16601,927608.3557,2445140.894,398430.7391,21
+16602,926765.9127,2444164.093,536924.4579,21
+16603,924908.4503,2442790.752,262906.3308,21
+16604,924307.057,2440929.023,264522.0836,21
+16605,922840.3252,2439991.974,465606.2661,21
+16606,921660.1241,2439131.556,422981.7474,21
+16607,920557.2934,2438515.664,377174.6605,21
+16608,919376.3964,2436252.177,390989.2702,21
+16609,918252.3575,2435870.507,383160.2425,21
+16610,917109.4789,2434125.135,380181.9876,21
+16611,915821.5425,2433285.795,377767.5011,21
+16612,915068.3823,2432647.882,375349.2273,21
+16613,913563.6448,2429515.217,502708.3372,21
+16614,912796.2081,2429971.516,241839.9879,21
+16615,911731.2839,2428992.996,242957.3689,21
+16616,910395.89,2427300.643,440035.6287,21
+16617,909840.4642,2427162.655,398182.0545,21
+16618,909088.9399,2424478.27,355207.2158,21
+16619,906789.8407,2424429.07,368057.1452,21
+16620,907152.0599,2423595.665,360760.8168,21
+16621,873056.8853,2372124.639,324311.4942,21
+16622,870744.2184,2370790.881,321581.049,21
+16623,868756.8594,2370272.937,318850.7942,21
+16624,866720.0808,2371222.96,315472.8044,21
+16625,865020.3141,2370595.105,311158.5587,21
+16626,862748.2445,2370269.909,311198.826,21
+16627,860246.5616,2370512.359,306211.8402,21
+16628,859294.6909,2370466.737,303851.1945,21
+16629,856301.4117,2369421.632,300635.0448,21
+16630,855478.2987,2369956.119,296847.9136,21
+16631,853449.5044,2369779.222,296256.1419,21
+16632,850859.2664,2369468.727,291506.3789,21
+16633,850001.4547,2369234.421,289316.106,21
+16634,847725.5633,2369200.473,286239.0353,21
+16635,846213.333,2369430.309,282174.9298,21
+16636,844065.4459,2368841.721,281487.7931,21
+16637,842842.7266,2369059.461,277465.1405,21
+16638,840535.4217,2368954.035,274530.4812,21
+16639,839473.6217,2368941.538,271959.9733,21
+16640,836571.0742,2368782.463,267825.3828,21
+16641,835882.4931,2368881.145,267508.685,21
+16642,833899.0432,2369044.748,262819.5695,21
+16643,831969.6327,2368336.002,260926.3322,21
+16644,829849.0396,2369396.804,257995.049,21
+16645,828729.8975,2368527.659,253920.0417,21
+16646,826628.8147,2368877.946,253779.4776,21
+16647,825076.1695,2368482.639,249194.7905,21
+16648,823054.5372,2369249.794,246974.0459,21
+16649,821436.8647,2368663.907,244296.5019,21
+16650,819619.6585,2369240.232,240489.6897,21
+16651,818206.6438,2369165.667,239953.8356,21
+16652,816372.9607,2369487.527,236422.7645,21
+16653,815364.5607,2369367.763,233907.1744,21
+16654,813398.3299,2369853.473,231815.8798,21
+16655,812668.511,2370715.183,228456.7373,21
+16656,810824.2566,2370008.876,227930.3028,21
+16657,809461.3489,2371058.224,224269.6395,21
+16658,807867.3579,2370586.759,222271.3075,21
+16659,806710.0375,2371610.682,220097.8195,21
+16660,804968.266,2371877.121,216607.5653,21
+16661,803992.0382,2371950.884,216242.1205,21
+16662,802075.8159,2372380.324,212863.8599,21
+16663,800536.1917,2373196.266,210781.3352,21
+16664,799495.9148,2372418.203,208432.527,21
+16665,797496.4732,2373945.199,205593.1862,21
+16666,796632.6157,2373980.533,205026.0791,21
+16667,794644.8249,2373858.594,201314.5312,21
+16668,793368.8472,2375435.296,199819.0725,21
+16669,791624.1455,2374275.603,197644.6351,21
+16670,790356.4813,2376312.635,194146.7509,21
+16671,788962.5338,2375748.475,194191.4737,21
+16672,787155.3109,2376744.228,190534.1093,21
+16673,785581.9159,2376226.558,189114.5173,21
+16674,784446.3385,2377636.749,186407.6954,21
+16675,782444.9792,2378146.502,183941.7913,21
+16676,781243.1524,2377440.362,183445.747,21
+16677,779667.7676,2379612.138,180074.9489,21
+16678,777890.763,2378721.19,178379.7421,21
+16679,776503.4925,2379977.406,176170.0966,21
+16680,774844.3898,2380388.987,173654.8124,21
+16681,779076.2669,2384372.627,179187.0982,21
+16682,778068.0057,2385722.33,176277.6213,21
+16683,777612.0284,2386316.338,176311.1806,21
+16684,776660.9493,2386319.969,174565.4958,21
+16685,775605.716,2388021.73,171964.0774,21
+16686,775144.1212,2387277.223,171781.4628,21
+16687,773879.3812,2388347.318,168397.888,21
+16688,773441.7413,2389087.137,167038.5942,21
+16689,772622.059,2389973.339,165154.4342,21
+16690,771465.2461,2389342.05,162634.5274,21
+16691,770748.5559,2390919.35,161882.968,21
+16692,770221.3679,2391119.14,159332.4073,21
+16693,768619.3135,2392389.482,157697.2042,21
+16694,767699.517,2391514.453,155679.0746,21
+16695,767115.6798,2393804.533,153158.7268,21
+16696,766030.0946,2393055.963,152769.4818,21
+16697,765089.1974,2394416.538,149985.0258,21
+16698,764447.0135,2394855.143,148136.1243,21
+16699,763627.9942,2395185.807,146673.1214,21
+16700,762834.8888,2395808.937,144085.1379,21
+16701,762049.0072,2397330.62,143203.9953,21
+16702,761084.3216,2396441.316,141021.7273,21
+16703,760580.3061,2398370.907,138985.3991,21
+16704,759392.7337,2398404.694,137459.8239,21
+16705,758847.302,2398537.719,134886.8509,21
+16706,758358.5886,2400314.624,134364.655,21
+16707,756755.3879,2400488.673,131628.8558,21
+16708,756577.2903,2400917.013,130240.5865,21
+16709,755598.7708,2402682.52,128293.4449,21
+16710,755034.1291,2402204.202,126463.049,21
+16711,753372.9215,2404324.321,126117.3652,21
+16712,753627.43,2402505.44,124220.992,21
+16713,751961.1636,2404038.671,123511.6409,21
+16714,751404.3803,2404466.05,121865.6795,21
+16715,750482.6171,2404300.212,120615.5135,21
+16716,749236.044,2404545.686,120234.1649,21
+16717,749059.8241,2404898.228,118942.6982,21
+16718,747420.5147,2405593.1,117538.6532,21
+16719,746880.1697,2405512.601,116746.74,21
+16720,746238.3052,2405654.529,115222.9107,21
+16721,744917.1786,2405845.273,115148.1279,21
+16722,744196.0013,2405865.354,113470.2464,21
+16723,743387.1421,2406892.792,112694.367,21
+16724,742569.737,2405807.987,111642.5709,21
+16725,742115.9511,2407374.518,110220.9518,21
+16726,740653.6603,2406381.032,110537.2356,21
+16727,740299.3715,2407704.583,108555.8371,21
+16728,739554.6589,2406784.385,108142.4084,21
+16729,738665.0789,2407884.192,107175.9777,21
+16730,737890.5527,2407470.306,105732.7244,21
+16731,737223.8425,2407918.357,106664.1454,21
+16732,736554.7622,2407897.887,105288.0081,21
+16733,736025.9803,2408300.384,104880.0357,21
+16734,735600.0367,2407877.673,135036.1872,21
+16735,734691.4151,2408664.67,48464.44663,21
+16736,734533.3815,2408407.641,48792.10043,21
+16737,733727.9572,2409007.213,127744.1915,21
+16738,733028.4619,2408597.3,111434.9742,21
+16739,732905.3302,2408966.752,99429.1048,21
+16740,735220.4365,2409158.377,103331.5112,21
+16741,731357.1639,2404893.958,94570.12744,21
+16742,731430.7864,2404337.551,93101.06794,21
+16743,731464.4903,2404123.459,92428.12358,21
+16744,732375.9982,2403947.866,91686.00372,21
+16745,732033.0121,2402814.997,548066.157,21
+16746,732475.9877,2403510.577,40767.57385,21
+16747,732957.1469,2403598.874,75748.99764,21
+16748,733147.651,2403831.469,581123.6969,21
+16749,733839.8349,2403619.185,40745.0567,21
+16750,734333.1847,2403109.79,165720.5611,21
+16751,734452.6822,2402702.676,40723.948,21
+16752,734895.7736,2402887.667,41878.20219,21
+16753,735486.6986,2402082.455,40633.6577,21
+16754,735514.7397,2401785.339,129196.0392,21
+16755,735837.839,2401747.645,128090.3009,21
+16756,736595.7084,2400922.862,40429.27423,21
+16757,736412.53,2401256.234,41134.01283,21
+16758,737106.2331,2400304.63,134370.0835,21
+16759,737522.2723,2400450.47,124275.5255,21
+16760,737733.9534,2399699.304,121981.6409,21
+16761,738202.6121,2399134.536,40847.52387,21
+16762,738609.1059,2399452.315,41538.20486,21
+16763,738838.7398,2398360.721,132534.2621,21
+16764,739464.5901,2398805.25,120159.8582,21
+16765,740035.2336,2397692.873,100014.6541,21
+16766,739882.6959,2397979.178,105461.2318,21
+16767,740729.0028,2396675.158,102637.6063,21
+16768,741206.968,2397187.91,100821.1664,21
+16769,741359.9387,2396400.65,100047.6825,21
+16770,741973.4562,2395722.106,99960.30324,21
+16771,742852.5059,2395907.062,561403.8515,21
+16772,743998.0837,2395113.459,41396.87975,21
+16773,744799.0572,2395047.981,80125.94415,21
+16774,745990.1495,2394492.725,594053.0432,21
+16775,747166.7579,2393851.811,41528.39776,21
+16776,748385.4507,2393415.598,177498.2708,21
+16777,749416.2673,2393294.347,41138.07993,21
+16778,750826.6404,2392904.201,42031.19386,21
+16779,751804.1518,2392281.425,141319.3503,21
+16780,752954.9315,2392428.481,132683.11,21
+16781,754524.2152,2391233.441,132022.8582,21
+16782,755625.8574,2391138.301,39697.72786,21
+16783,756965.4485,2390839.793,40194.34387,21
+16784,757896.8962,2390000.407,138005.2295,21
+16785,758492.9458,2390121.899,126525.798,21
+16786,758731.9476,2389166.635,124105.6266,21
+16787,759491.8217,2388732.618,38195.792,21
+16788,759924.2445,2389110.109,39036.09378,21
+16789,760766.1679,2387727.026,133464.6303,21
+16790,760995.7518,2387778.599,119852.0629,21
+16791,761454.8161,2386810.59,98190.49446,21
+16792,762045.8084,2387258.07,103420.4987,21
+16793,762189.0389,2386250.583,99788.00314,21
+16794,763177.9886,2386119.188,97584.69484,21
+16795,763168.1536,2384698.632,96740.37682,21
+16796,764018.6673,2385538.847,94983.15369,21
+16797,764305.3702,2384239.901,558094.0575,21
+16798,765283.4813,2384129.221,34438.34157,21
+16799,765385.6741,2383813.227,155347.635,21
+16800,766403.9597,2383075.152,34087.45967,21
+16801,766399.5286,2383022.673,34928.95173,21
+16802,767542.978,2383101.462,124993.0306,21
+16803,767847.1474,2383025.622,115678.7322,21
+16804,767963.2936,2382582.577,115060.867,21
+16805,769284.5033,2382701.983,33584.60223,21
+16806,769437.3648,2382421.845,34249.00247,21
+16807,770004.8149,2383159.983,122295.2819,21
+16808,770668.0144,2382450.867,111487.9307,21
+16809,771124.7921,2382232.211,92225.40799,21
+16810,772047.7885,2382857.154,97597.20324,21
+16811,772461.1511,2382203.277,94026.26978,21
+16812,773020.3931,2382238.25,92460.72413,21
+16813,773985.4743,2382789.923,91242.76443,21
+16814,774340.5984,2381376.114,90225.43448,21
+16815,775491.1018,2382842.297,89343.38463,21
+16816,775471.5048,2381899.998,88383.74141,21
+16817,776874.4549,2382120.545,547971.7711,21
+16818,777157.3694,2381993.228,33331.15153,21
+16819,778037.866,2381673.974,145181.15,21
+16820,779057.9142,2381743.105,33009.31758,21
+16821,779359.2108,2381486.612,34263.96248,21
+16822,780231.7424,2382269.89,117403.6236,21
+16823,781391.848,2381377.451,109363.8187,21
+16824,781904.0656,2381059.927,108639.6678,21
+16825,782690.1455,2382214.553,32856.79845,21
+16826,783824.5302,2380970.097,33780.34219,21
+16827,784756.0986,2381369.5,115875.1199,21
+16828,785767.4131,2381202.248,106179.2975,21
+16829,786469.6279,2381095.343,87821.7827,21
+16830,787515.6294,2381318.361,92895.86633,21
+16831,788553.1585,2381046.074,90012.5464,21
+16832,789395.0185,2380459.495,88775.78154,21
+16833,790669.2866,2381128.471,87593.92975,21
+16834,791124.9781,2381229.138,86922.46516,21
+16835,792707.3631,2379929.095,86577.2615,21
+16836,793228.916,2381015.857,85550.68918,21
+16837,794270.7777,2380255.167,543140.745,21
+16838,795592.0871,2381087.795,34885.91158,21
+16839,796519.2258,2379765.758,69938.93916,21
+16840,797320.326,2380821.97,576500.0854,21
+16841,798747.5828,2380202.841,35738.49713,21
+16842,799402.6733,2380456.912,159597.2681,21
+16843,800928.2217,2379587.158,36199.52713,21
+16844,801798.208,2380068.947,38516.58713,21
+16845,802960.479,2380314.182,129033.5293,21
+16846,803840.4187,2379273.942,121630.6626,21
+16847,805141.5715,2379964.136,121446.7597,21
+16848,806366.5554,2380114.525,38073.60473,21
+16849,807016.6332,2379592.724,39328.02483,21
+16850,808189.8902,2378742.258,128738.6808,21
+16851,809210.7156,2380401.206,119314.4992,21
+16852,810324.2793,2378602.882,117636.7838,21
+16853,811786.5168,2379895.811,39565.99433,21
+16854,813583.1577,2378266.401,41076.17689,21
+16855,814686.9126,2379625.648,128160.2442,21
+16856,826753.2533,2378953.022,116223.9665,21
+16857,830555.3553,2379044.932,97870.00408,21
+16858,833923.8734,2378892.032,103204.8423,21
+16859,833903.7752,2378381.664,100929.8157,21
+16860,836469.8731,2378924.953,560763.8558,21
+16861,879079.7651,2458943.918,85859.52009,21
+16862,883921.5663,2464101.323,128028.7884,21
+16863,885741.2095,2466566.756,645618.8133,21
+16864,888695.7297,2468697.075,93646.31252,21
+16865,890585.4062,2470748.397,237130.8332,21
+16866,893180.2635,2472936.882,95886.97948,21
+16867,898306.2849,2474165.296,98266.03929,21
+16868,919262.4083,2476075.39,100658.2195,21
+16869,919151.4869,2513542.752,197426.7854,21
+16870,921075.221,2544374.338,182239.4604,21
+16871,926415.1529,2521249.74,185905.9028,21
+16872,928927.6573,2534222.268,184532.021,21
+16873,933116.0109,2535670.291,183484.7336,21
+16874,935939.1466,2539364.511,184127.1444,21
+16875,939453.9501,2540912.148,183755.336,21
+16876,942226.321,2544119.195,184615.9575,21
+16877,945485.0228,2545567.289,184942.6749,21
+16878,949242.0394,2549352.708,185214.9436,21
+16879,951954.9225,2549615.98,185885.4683,21
+16880,954710.3714,2553726.002,186730.2539,21
+16881,957874.4598,2554544.352,187294.225,21
+16882,960435.2926,2557019.002,187627.5369,21
+16883,963727.6488,2559682.652,189149.6234,21
+16884,966040.003,2561201.952,190311.8355,21
+16885,968848.2134,2562727.071,191338.4893,21
+16886,971760.1424,2565692.694,192301.314,21
+16887,974065.9014,2566981.973,666462.6091,21
+16888,977104.1866,2568732.607,119926.8375,21
+16889,979293.326,2570377.135,278518.1315,21
+16890,981757.4036,2573384.544,121864.7852,21
+16891,984542.3945,2574048.319,125091.8232,21
+16892,986564.232,2576350.435,244043.7687,21
+16893,989814.5239,2577796.732,236383.4205,21
+16894,991222.4576,2580064.933,238934.4892,21
+16895,994404.1049,2581036.855,125567.8643,21
+16896,996012.5257,2582951.057,127978.9475,21
+16897,998863.5857,2584470.265,251738.8256,21
+16898,1000979.058,2587173.853,241176.37,21
+16899,1002971.84,2586688.734,241769.6647,21
+16900,1005529.564,2590677.095,128977.4953,21
+16901,1007811.815,2591248.847,130690.8669,21
+16902,1009794.201,2592456.558,259184.4707,21
+16903,1011956.261,2594930.845,244348.7661,21
+16904,1014240.05,2595433.108,215653.6776,21
+16905,1016525.654,2597497.815,227028.9888,21
+16906,1017977.042,2599618.037,224616.5228,21
+16907,1021327.322,2600120.129,223673.5304,21
+16908,1021967.981,2601372.261,224657.6506,21
+16909,1025038.764,2603918.7,224370.5918,21
+16910,1026586.613,2605428.391,705463.8116,21
+16911,1028797.375,2606487.783,140285.7663,21
+16912,1030940.997,2607587.306,197691.3506,21
+16913,1032277.161,2609820.547,748488.4554,21
+16914,1035583.784,2610388.454,145062.9883,21
+16915,1036033.379,2613174.831,344536.052,21
+16916,1038731.725,2612619.119,146280.7059,21
+16917,1040729.134,2615838.636,148997.4867,21
+16918,1042592.778,2615164.482,152723.2292,21
+16919,1044151.199,2618903.899,281257.1182,21
+16920,1046648.592,2619465.948,279912.4549,21
+16921,1087748.631,2682276.577,167628.9269,21
+16922,1133204.621,2688498.657,172346.882,21
+16923,1115517.853,2689018.311,328306.6333,21
+16924,1121992.006,2689726.073,314294.3509,21
+16925,1125193.39,2691819.791,316642.0388,21
+16926,1126356.263,2690950.593,173142.2783,21
+16927,1128079.878,2692490.691,176792.8043,21
+16928,1130911.519,2693004.026,335129.6544,21
+16929,1132489.233,2693955.306,319916.2998,21
+16930,1133838.336,2693713.978,323728.4038,21
+16931,1135803.266,2694302.343,182647.015,21
+16932,1137412.771,2695324.875,187431.9416,21
+16933,1138796.795,2696329.253,348701.7518,21
+16934,1141783.683,2695538.252,331385.4054,21
+16935,1141668.267,2696912.852,343506.506,21
+16936,1144376.492,2695987.671,199109.6877,21
+16937,1144432.069,2697778.353,205691.294,21
+16938,1147573.559,2699234.971,367602.6194,21
+16939,1148070.411,2698187.709,347689.5698,21
+16940,1148772.189,2699989.109,314338.1244,21
+16941,1151836.981,2698282.481,330721.7803,21
+16942,1151874.252,2700965.948,329198.1555,21
+16943,1153787.722,2700188.331,331053.7343,21
+16944,1154815.644,2700545.814,334420.129,21
+16945,1156286.671,2701570.418,337053.6292,21
+16946,1157439.298,2700369.598,844846.809,21
+16947,1158560.441,2702103.498,242056.5543,21
+16948,1159659.955,2702011.682,307887.4466,21
+16949,1161531.514,2701311.531,902484.7022,21
+16950,1161047.513,2702072.842,258091.5545,21
+16951,1164313.797,2702443.437,514337.7434,21
+16952,1163281.281,2702405.167,264626.0101,21
+16953,1165480.97,2702611.994,271947.7353,21
+16954,1166938.84,2703596.734,285912.4036,21
+16955,1166620.452,2702515.376,417532.7848,21
+16956,1169053.157,2702706.224,425977.5947,21
+16957,1168567.971,2703870.265,410264.2966,21
+16958,1170721.677,2703911.279,289038.5709,21
+16959,1171749.431,2702819.183,293520.0605,21
+16960,1171924.978,2704180.351,502072.162,21
+16961,1174233.244,2703309.728,410450.887,21
+16962,1174096.67,2703746.806,434713.2525,21
+16963,1175057.963,2703719.857,434222.3232,21
+16964,1175753.321,2703730.119,434267.6907,21
+16965,1178101.26,2704390.305,436358.2516,21
+16966,1176328.966,2703826.164,439095.9919,21
+16967,1179828.63,2704610.979,441867.4362,21
+16968,1179456.601,2704392.409,444481.4675,21
+16969,1179707.382,2703575.801,990727.8876,21
+16970,1181636.596,2704421.776,336816.1478,21
+16971,1181600.755,2703678.391,402369.0757,21
+16972,1183845.168,2704465.062,1051315.705,21
+16973,1182949.932,2704431.371,354790.9559,21
+16974,1184505.317,2703424.074,415644.421,21
+16975,1185097.775,2704681.453,1091805.264,21
+16976,1185727.599,2703872,373163.2206,21
+16977,1187310.759,2703611.301,707437.2696,21
+16978,1187362.733,2705516.666,378461.194,21
+16979,1187727.944,2702411.032,387510.5781,21
+16980,1189263.535,2705065.888,409265.1817,21
+16981,1189114.874,2703621.108,537109.8117,21
+16982,1189582.406,2703846.761,564425.5553,21
+16983,1192214.746,2706150.434,605465.7786,21
+16984,1190379.299,2704086.828,388568.0145,21
+16985,1191932.996,2704883.627,392266.5191,21
+16986,1192315.539,2704715.877,603477.2933,21
+16987,1191554.652,2705799.812,578751.9719,21
+16988,1193962.5,2704568.208,517365.1731,21
+16989,1192335.639,2704139.651,537181.1662,21
+16990,1193598.952,2705548.269,529078.9955,21
+16991,1194860.806,2704329.146,526532.7051,21
+16992,1193126.991,2704345.618,525640.6066,21
+16993,1194714.499,2705768.104,523938.9732,21
+16994,1195436.994,2704298.953,524345.2817,21
+16995,1194341.893,2704406.835,523334.4538,21
+16996,1196514.465,2705743.24,1096017.351,21
+16997,1195694.116,2702970.618,390173.3159,21
+16998,1194851.491,2706079.22,457985.0472,21
+16999,1197347.925,2703998.407,1144396.557,21
+17000,1196209.191,2704425.452,395761.6297,21
+17001,1197083.245,2704257.265,460404.5252,21
+17002,1197038.544,2704714.953,1169787.599,21
+17003,1197030.528,2703880.908,400825.74,21
+17004,1197941.759,2704920.891,777232.2792,21
+17005,1196582.148,2703129.48,397769.2189,21
+17006,1198944.203,2704976.027,403670.1442,21
+17007,1198226.275,2702883.968,401510.4597,21
+17008,1197578.91,2704409.586,625384.9228,21
+17009,1199443.414,2704019.225,674661.6508,21
+17010,1198434.072,2702909.767,397058.8539,21
+17011,1196614.731,2704321.49,402112.5819,21
+17012,1197184,2702944.692,407801.3266,21
+17013,1196046.291,2703862.667,608254.0697,21
+17014,1197908.338,2702464.939,564594.5389,21
+17015,1196972.548,2703774.731,566285.9017,21
+17016,1197437.866,2703382.631,561172.5322,21
+17017,1197564.856,2702532.958,555765.9845,21
+17018,1197543.204,2702131.248,552091.1778,21
+17019,1197929.54,2703367.228,547311.2214,21
+17020,1198420.369,2702914.633,551640.8789,21
+17021,1197982.099,2701643.235,545260.7731,21
+17022,1197460.31,2702440.19,1124838.323,21
+17023,1199261.418,2702511.557,392914.9551,21
+17024,1197373.046,2701914.257,471827.4511,21
+17025,1199586.197,2702509.279,1168988.685,21
+17026,1197109.576,2700327.733,397591.8942,21
+17027,1199800.309,2702871.631,470916.4163,21
+17028,1198643.467,2701472.185,1190623.991,21
+17029,1198430.244,2701688.563,407845.8326,21
+17030,1199332.115,2700450.058,801650.5347,21
+17031,1198679.8,2700927.194,403919.478,21
+17032,1199049.163,2701695.383,409791.9055,21
+17033,1200108.078,2700684.128,407452.2049,21
+17034,1198392.996,2700001.355,647279.9022,21
+17035,1199044.641,2701077.874,694349.1174,21
+17036,1200341.604,2699272.708,404266.9273,21
+17037,1199368.918,2701499.294,410169.4848,21
+17038,1198816.982,2699180.226,416838.9579,21
+17039,1200197.891,2699978.135,628730.7686,21
+17040,1199599.619,2699133.452,583074.7398,21
+17041,1207081.233,2711138.61,597897.2321,21
+17042,1211042.275,2713818.018,593602.4375,21
+17043,1210837.417,2714837.479,592180.889,21
+17044,1211093.52,2717186.976,589917.7639,21
+17045,1213277.14,2719713.209,587323.1799,21
+17046,1212094.889,2721479.858,593105.3395,21
+17047,1215005.776,2722380.823,588990.3027,21
+17048,1213011.129,2725278.985,1183506.238,21
+17049,1216098.986,2726371.001,440379.8163,21
+17050,1215704.636,2729267.605,518924.8354,21
+17051,1217259.537,2729256.291,1237615.174,21
+17052,1216101.436,2732890.365,453546.8936,21
+17053,1218572.896,2733158.86,524336.332,21
+17054,1218805.331,2735242.227,1268830.473,21
+17055,1218705.013,2737101.609,466692.6308,21
+17056,1219950.516,2739853.233,881584.8705,21
+17057,1220333.453,2739182.098,468106.6216,21
+17058,1220556.803,2743604.227,476914.1174,21
+17059,1221868.824,2742186.034,503755.1147,21
+17060,1222216.276,2747529.036,651789.7635,21
+17061,1222249.772,2746654.145,695206.9223,21
+17062,1223894.086,2748818.402,745793.4946,21
+17063,1222848.099,2750885.694,481239.9254,21
+17064,1225154.578,2753335.54,488208.6249,21
+17065,1224550.151,2753476.405,737216.6618,21
+17066,1226198.162,2755861.225,709787.0706,21
+17067,1225684.766,2758482.234,633522.5111,21
+17068,1226480.938,2757650.098,659769.5396,21
+17069,1226301.594,2762958.569,651278.3844,21
+17070,1231209.681,2760859.258,647535.6129,21
+17071,1229231.697,2764094.095,647590.0892,21
+17072,1231651.932,2766086.334,648317.9515,21
+17073,1231978.416,2767520.36,648629.1161,21
+17074,1231068.918,2768606.958,648544.8424,21
+17075,1233505.472,2771136.687,650125.6145,21
+17076,1232356.039,2772495.173,649308.6349,21
+17077,1233974.407,2773908.437,651700.994,21
+17078,1234043.372,2775123.721,651057.1332,21
+17079,1234632.528,2777707.447,653971.648,21
+17080,1235390.078,2778461.237,652653.9397,21
+17081,1234747.253,2781335.144,654877.163,21
+17082,1236120.414,2781132.404,655905.7861,21
+17083,1236464.216,2785245.09,657572.946,21
+17084,1236999.577,2784483.221,658147.8042,21
+17085,1237093.574,2787647.196,659309.6369,21
+17086,1238143.755,2787577.481,659783.9156,21
+17087,1238508.384,2790506.149,662496.6164,21
+17088,1237544.107,2792091.057,662472.5194,21
+17089,1240694.477,2793194.224,665747.2658,21
+17090,1238799.465,2794990.492,665317.7506,21
+17091,1239977.651,2796374.154,666791.3889,21
+17092,1240991.072,2799075.851,669179.4111,21
+17093,1240869.146,2798624.691,670408.9242,21
+17094,1242301.214,2803127.521,671561.925,21
+17095,1240924.738,2801517.674,673452.993,21
+17096,1242870.833,2805658.835,674632.6726,21
+17097,1242246.278,2806530.652,676719.078,21
+17098,1243426.695,2806854.061,677896.4277,21
+17099,1243908.438,2810461.895,680587.1003,21
+17100,1243789.974,2810232.402,680725.3672,21
+17101,1244899.06,2811332.617,682834.2501,21
+17102,1247795.052,2811758.099,683898.079,21
+17103,1248332.961,2812301.503,685716.838,21
+17104,1249976.06,2811373.827,685868.2914,21
+17105,1251611.549,2811028.747,687607.6966,21
+17106,1251593.689,2812318.243,688273.4034,21
+17107,1253715.035,2810458.955,688317.4212,21
+17108,1255477.993,2811583.701,690349.6995,21
+17109,1255028.937,2811124.26,689707.1154,21
+17110,1257150.163,2810120.288,692464.8698,21
+17111,1258470.023,2811192.707,692028.0596,21
+17112,1259624.016,2811210.33,693379.4126,21
+17113,1260545.169,2809374.483,693323.0746,21
+17114,1261366.118,2811172.171,696023.5978,21
+17115,1263375.287,2809950.867,695320.3569,21
+17116,1263571.198,2810000.592,697341.9572,21
+17117,1266176.92,2809482.221,697906.3436,21
+17118,1265815.915,2809480.663,698404.1684,21
+17119,1267887.986,2809708.319,698844.0438,21
+17120,1268378.306,2808525.298,700287.4369,21
+17121,1270949.915,2810113.694,700955.8347,21
+17122,1270691.974,2808348.54,701975.4876,21
+17123,1272414.701,2808429.746,702428.3533,21
+17124,1273522.244,2808539.978,704044.2664,21
+17125,1275060.367,2807949.513,704729.7569,21
+17126,1275663.458,2809391.232,704835.0986,21
+17127,1277926.918,2807737.245,705689.5295,21
+17128,1277571.164,2807904.537,707604.6176,21
+17129,1279921.505,2808185.585,707255.4645,21
+17130,1280579.322,2807089.208,709230.6073,21
+17131,1282051.867,2806780.708,708698.7352,21
+17132,1283522.804,2807230.528,710277.0071,21
+17133,1284044.477,2806753.266,710797.8431,21
+17134,1285256.092,2807535.327,712161.6092,21
+17135,1286326.297,2805572.873,713578.5884,21
+17136,1288707.845,2807476.126,711199.8706,21
+17137,1288871.994,2804817.642,715737.7934,21
+17138,1289336.486,2806620.356,716203.5596,21
+17139,1291938.483,2806192.379,714203.6947,21
+17140,1292370.349,2804486.961,718283.6337,21
+17141,1293803.972,2806363.735,717555.4935,21
+17142,1295084.903,2804838.942,718825.3658,21
+17143,1296055.276,2804386.564,720054.6995,21
+17144,1296883.596,2805262.707,719941.8168,21
+17145,1298530.901,2804195.919,721455.2049,21
+17146,1299251.771,2805028.055,722470.6323,21
+17147,1301487.141,2803573.341,722479.0374,21
+17148,1301158.479,2804354.635,723099.9218,21
+17149,1303537.892,2803446.973,725218.7309,21
+17150,1303895.054,2803683.219,725107.2025,21
+17151,1305960.811,2802926.582,725706.1279,21
+17152,1306215.385,2802996.952,727106.3632,21
+17153,1307820.247,2802568.112,727020.0114,21
+17154,1309090.438,2803697.59,730164.6575,21
+17155,1309982.289,2801250.798,727452.5817,21
+17156,1310924.756,2802290.518,732182.621,21
+17157,1312596.974,2802625.177,729704.5486,21
+17158,1313368.188,2800991.402,731798.1135,21
+17159,1314262.887,2801745.853,732283.2688,21
+17160,1316814.625,2801090.881,734971.1899,15.6
+17161,0,0,0,15.6
+17162,0,0,237746.1356,15.6
+17163,0,220.8415531,0,15.6
+17164,0,0,0,15.6
+17165,0,0,0,15.6
+17166,0,0,1313492.529,15.6
+17167,0,0,0,15.6
+17168,429278.5647,0,0,15.6
+17169,0,0,0,15.6
+17170,0,0,0,15.6
+17171,0,0,0,15.6
+17172,0,0,0,15.6
+17173,0,3.132365041,0,15.6
+17174,0,0,0,15.6
+17175,38836.78712,107.314059,0,15.6
+17176,2087.31911,0,0,15.6
+17177,12097.67164,0,0,15.6
+17178,17696.20208,0,0,15.6
+17179,13956.44329,0,0,15.6
+17180,14857.72022,257.1575779,0,15.6
+17181,15050.12922,0,0,15.6
+17182,15145.43481,0,0,15.6
+17183,354553.6135,0,0,15.6
+17184,15410.63017,0,0,15.6
+17185,15541.85867,50588.84402,731617.7417,15.6
+17186,15677.06711,720.9543329,0,15.6
+17187,15710.54243,7649.561568,0,15.6
+17188,15821.50767,20750.46469,760298.7627,15.6
+17189,15915.30515,14142.23014,0,15.6
+17190,15969.2272,15230.48188,0,15.6
+17191,16063.65665,15663.06324,0,15.6
+17192,16092.49565,15968.39576,0,15.6
+17193,16192.51539,16090.05353,0,15.6
+17194,16181.51165,16335.14199,0,15.6
+17195,16280.78466,16502.78282,0,15.6
+17196,16309.59933,16813.65179,0,15.6
+17197,16352.18729,17160.75911,0,15.6
+17198,16379.98227,17165.97343,0,15.6
+17199,16438.33509,17384.21377,0,15.6
+17200,16413.84522,17496.41363,0,15.6
+17201,16471.29292,17745.98207,1266732.541,15.6
+17202,16503.54846,17894.35638,0,15.6
+17203,16486.21047,18105.13195,0,15.6
+17204,16538.73929,18263.37863,0,15.6
+17205,0,18426.57367,0,15.6
+17206,0,18632.25719,0,15.6
+17207,0,18754.23925,0,15.6
+17208,56489.59265,18999.76138,714977.3894,15.6
+17209,1765.333144,19109.98455,309.9804408,15.6
+17210,13176.88126,19217.30742,132990.4821,15.6
+17211,20619.07234,19411.83198,744191.0996,15.6
+17212,15923.10549,19567.96419,5560.411872,15.6
+17213,16525.55585,19726.07256,348177.0028,15.6
+17214,16534.73895,19817.61901,5658.015348,15.6
+17215,16541.73471,0,9319.810771,15.6
+17216,16476.00395,72.87145769,5860.269252,15.6
+17217,16461.6198,0,255182.1692,15.6
+17218,16492.11403,73220.77609,181901.2505,15.6
+17219,16383.44051,0,200689.1713,15.6
+17220,16397.25066,14549.11654,187907.0885,15.6
+17221,16598.97589,27665.1155,180922.5827,15.6
+17222,16726.7728,19787.94999,175552.8065,15.6
+17223,16778.14046,21235.91643,170647.0885,15.6
+17224,356114.4076,21358.33818,165973.3337,15.6
+17225,17010.05652,21511.22858,161461.5575,15.6
+17226,17064.02375,388962.5598,157082.7083,15.6
+17227,17004.10213,34300.19109,152746.3886,15.6
+17228,17088.84956,82171.62113,146282.4845,15.6
+17229,17179.98287,154229.3981,147361.2916,15.6
+17230,17228.09667,133353.8893,140303.3001,15.6
+17231,17322.23122,127796.0907,619692.7656,15.6
+17232,17419.49172,131943.2226,5770.107268,15.6
+17233,17461.93004,133612.2215,91773.18324,15.6
+17234,17558.61043,134550.0148,645055.7472,15.6
+17235,17598.89653,135471.7322,5753.641601,15.6
+17236,17698.7709,136684.9293,1045318.529,15.6
+17237,17772.90866,138304.0754,5611.56415,15.6
+17238,0,138434.4714,0,15.6
+17239,0,140361.2163,0,15.6
+17240,0,140693.6952,0,15.6
+17241,63548.32719,142559.5284,0,15.6
+17242,3105.463838,142728.813,0,15.6
+17243,12131.23323,144837.7909,0,15.6
+17244,23885.60114,144940.8625,0,15.6
+17245,17376.05153,146638.403,0,15.6
+17246,18348.06487,147338.8293,0,15.6
+17247,18436.47929,148440.0229,0,15.6
+17248,18517.17205,125195.149,0,15.6
+17249,18500.62736,127109.9317,0,15.6
+17250,18633.56284,126952.5949,0,15.6
+17251,18620.0107,218202.9077,0,15.6
+17252,18698.63172,134945.1205,0,15.6
+17253,18766.60757,141898.6562,0,15.6
+17254,18780.76909,165198.316,0,15.6
+17255,18837.19763,154286.7121,0,15.6
+17256,18892.19909,24505.72903,0,15.6
+17257,18934.39881,24686.95028,0,15.6
+17258,18975.13047,24686.95234,0,15.6
+17259,19019.36952,24914.08029,0,15.6
+17260,19056.88312,24886.92321,0,15.6
+17261,19114.52334,24937.31953,0,15.6
+17262,19103.24934,620858.5716,0,15.6
+17263,19225.8124,25221.48189,132559.446,15.6
+17264,19177.48738,57925.13152,0,15.6
+17265,358483.9128,231862.5875,0,15.6
+17266,19269.68741,162729.7172,0,15.6
+17267,19333.04683,162970.9607,0,15.6
+17268,19453.82468,167768.9074,0,15.6
+17269,19507.28242,168747.7135,128859.6219,15.6
+17270,19514.45627,168736.4937,0,15.6
+17271,0,170590.6499,879735.4091,15.6
+17272,0,170688.7553,119871.988,15.6
+17273,0,171248.936,0,15.6
+17274,71128.88561,172117.9667,0,15.6
+17275,310421.6489,173312.6327,0,15.6
+17276,27493.10521,173444.523,0,15.6
+17277,42044.31686,174240.5166,0,15.6
+17278,90848.78196,174962.5449,0,15.6
+17279,103191.1134,175685.4546,0,15.6
+17280,80557.40753,176561.8132,0,15.6
+17281,88890.62201,152299.196,0,15.6
+17282,89197.75123,153513.7783,0,15.6
+17283,89372.07736,153322.1578,0,15.6
+17284,89774.03449,254357.4664,0,15.6
+17285,89906.68431,166064.9478,0,15.6
+17286,89982.99992,164005.7166,0,15.6
+17287,90574.91923,194964.0772,0,15.6
+17288,90341.7701,181643.0786,0,15.6
+17289,90865.00403,183063.7471,0,15.6
+17290,91153.85698,184520.1255,116556.1119,15.6
+17291,91300.89511,184905.171,0,15.6
+17292,91413.84033,27371.13758,113429.7011,15.6
+17293,92107.36533,27379.49204,0,15.6
+17294,91848.36049,27474.23511,0,15.6
+17295,92304.50021,27611.00861,0,15.6
+17296,92717.31139,656782.9246,112466.9916,15.6
+17297,92700.09788,27612.68076,109520.2224,15.6
+17298,93228.50459,90498.04649,106710.8734,15.6
+17299,93729.06232,272440.1242,103993.1828,15.6
+17300,96317.26641,173271.4086,101375.3791,15.6
+17301,95938.19401,189104.8772,98969.91119,15.6
+17302,96387.62721,190346.2779,96239.56337,15.6
+17303,96993.13192,191126.9308,94048.09953,15.6
+17304,76685.48284,190976.2512,91619.87828,15.6
+17305,0,191223.4158,89382.35139,15.6
+17306,339215.7494,192015.6129,87182.43123,15.6
+17307,77721.0555,192335.1448,702787.1511,15.6
+17308,7984.837225,192724.3679,84569.24549,15.6
+17309,8745.977213,192742.2256,82504.63334,15.6
+17310,30417.18803,193749.253,80494.50906,15.6
+17311,19948.29153,193682.1576,78614.15439,15.6
+17312,21435.96251,194211.5499,76546.91957,15.6
+17313,21468.53574,194417.2525,74876.14366,15.6
+17314,372641.4394,167003.3345,72976.64553,15.6
+17315,22270.91809,166279.5932,71255.39385,15.6
+17316,46035.47468,252917.6123,69555.87622,15.6
+17317,118927.3229,173611.4261,67903.2037,15.6
+17318,110168.3588,195220.2218,66296.29262,15.6
+17319,103024.1173,200663.7969,64734.83255,15.6
+17320,104083.1785,196345.9475,63215.81202,15.6
+17321,105456.5371,197582.5105,61740.19147,15.6
+17322,106353.4883,197512.2286,60304.79142,15.6
+17323,106145.8678,198509.832,58910.66142,15.6
+17324,106949.2411,198439.4135,0,15.6
+17325,107035.2204,198858.8129,0,15.6
+17326,107228.1696,29064.5224,0,15.6
+17327,107979.3484,29218.54441,0,15.6
+17328,108110.6507,29178.54806,0,15.6
+17329,108246.2539,29136.08908,0,15.6
+17330,109198.0887,720972.591,0,15.6
+17331,108704.5371,29375.36903,0,15.6
+17332,109935.3792,103409.47,0,15.6
+17333,109553.5365,285430.5083,0,15.6
+17334,110148.7033,187276.0478,0,15.6
+17335,110465.8988,201949.6598,0,15.6
+17336,110998.366,203316.3668,0,15.6
+17337,88754.82958,202939.1045,0,15.6
+17338,89379.37809,203054.397,0,15.6
+17339,89526.63229,203966.628,0,15.6
+17340,170923.9994,203540.5884,0,15.6
+17341,99698.54046,204291.994,0,15.6
+17342,100781.0776,204317.3853,53243.1972,15.6
+17343,122664.2201,205276.5679,574476.9564,15.6
+17344,21126.05357,205068.1145,0,15.6
+17345,22461.58303,205335.8372,0,15.6
+17346,22595.08162,175882.9895,54404.42019,15.6
+17347,22645.82003,176750.7677,0,15.6
+17348,361875.9788,267307.5035,0,15.6
+17349,22738.33036,185923.16,52940.9674,15.6
+17350,22797.38021,204143.9221,0,15.6
+17351,406121.8999,212046.4894,0,15.6
+17352,37712.28455,207726.3169,0,15.6
+17353,55702.38897,208230.914,0,15.6
+17354,162210.5923,208858.2938,51515.09597,15.6
+17355,118761.1045,209403.2818,0,15.6
+17356,119191.1338,209179.4809,0,15.6
+17357,122180.3356,209833.0307,0,15.6
+17358,122655.6084,210178.5827,0,15.6
+17359,122825.4034,210748.5888,0,15.6
+17360,123329.7689,30737.47179,0,15.6
+17361,124233.3831,30762.76704,0,15.6
+17362,124130.7378,30796.24935,0,15.6
+17363,125192.4543,30961.20827,0,15.6
+17364,125173.6961,778732.0107,0,15.6
+17365,125851.1358,52627.51413,0,15.6
+17366,126205.342,83590.64237,0,15.6
+17367,127088.7432,311519.5184,0,15.6
+17368,127116.6828,197114.6936,0,15.6
+17369,127689.404,213113.018,0,15.6
+17370,104385.8732,214304.4766,50219.92405,15.6
+17371,104372.121,214928.4205,0,15.6
+17372,104154.3798,214851.5585,0,15.6
+17373,188150.183,215339.9738,0,15.6
+17374,118326.0876,215307.3218,0,15.6
+17375,118153.0022,215937.783,48658.56615,15.6
+17376,137426.3942,215970.7613,0,15.6
+17377,129810.4835,216247.0831,0,15.6
+17378,130915.7431,185133.4441,0,15.6
+17379,131238.5754,185539.313,556031.2139,15.6
+17380,132324.7622,281761.1073,0,15.6
+17381,24064.72426,196772.6909,0,15.6
+17382,24125.77826,214077.3874,50441.75472,15.6
+17383,24139.76488,222770.1341,0,15.6
+17384,24183.824,217702.3897,0,15.6
+17385,24232.35082,219075.8436,49288.08316,15.6
+17386,462929.5123,218961.6084,0,15.6
+17387,24306.3346,219142.1825,0,15.6
+17388,71341.68965,219732.7606,0,15.6
+17389,193175.6299,219845.7305,0,15.6
+17390,465036.6452,220281.0841,47745.57045,15.6
+17391,137053.0835,247614.3513,0,15.6
+17392,137800.293,221046.9989,46533.9801,15.6
+17393,137736.2174,221048.1517,48838.10729,15.6
+17394,138552.4434,40512.98637,47660.46071,15.6
+17395,138764.9021,39257.4968,46565.14124,15.6
+17396,139309.216,38863.20386,45526.15615,15.6
+17397,139507.5204,732435.452,44531.05309,15.6
+17398,139989.1312,44649.87547,43559.90323,15.6
+17399,140331.3095,165200.3362,42625.23661,15.6
+17400,140874.4371,293432.1362,41782.04375,15.6
+17401,141110.916,218603.854,40743.40722,15.6
+17402,141361.6588,229994.3772,39963.66388,15.6
+17403,117148.0954,230685.0332,39024.80746,15.6
+17404,117322.3157,231262.9041,38194.19431,15.6
+17405,117890.3753,230762.4772,37366.46719,15.6
+17406,202538.8596,231440.7773,36558.57377,15.6
+17407,137481.7443,231837.5908,35769.95014,15.6
+17408,130536.8722,231792.9597,35000.45175,15.6
+17409,151747.8435,232257.0557,34354.64123,15.6
+17410,144094.0819,199386.1101,33498.49506,15.6
+17411,145249.7767,199795.5776,32803.14979,15.6
+17412,145300.0213,300763.3973,32097.98801,15.6
+17413,145796.3743,213642.8177,31415.62872,15.6
+17414,146177.5939,228129.7681,30747.21901,15.6
+17415,147580.1058,239306.6675,471495.5812,15.6
+17416,25473.19466,233303.7615,35836.66785,15.6
+17417,25481.0324,234354.3676,35043.07983,15.6
+17418,25524.52964,234768.254,34410.45305,15.6
+17419,25543.48378,234763.8207,33474.37373,15.6
+17420,25602.91809,235201.6036,32800.77175,15.6
+17421,545910.2671,228528.7452,0,15.6
+17422,25670.89829,228470.3063,0,15.6
+17423,79661.7339,228950.1537,0,15.6
+17424,210649.6762,228690.1254,0,15.6
+17425,143016.6579,229708.5348,0,15.6
+17426,151795.9781,229416.9188,0,15.6
+17427,152506.9276,33876.39708,0,15.6
+17428,153248.9579,33857.0149,0,15.6
+17429,153114.5203,33818.884,0,15.6
+17430,153826.3368,758917.0289,0,15.6
+17431,153837.254,54107.07143,0,15.6
+17432,493337.0503,148580.0591,0,15.6
+17433,154725.8586,333494.6273,0,15.6
+17434,154894.0903,219765.1663,0,15.6
+17435,155021.3211,233488.4744,0,15.6
+17436,129508.0326,242552.03,0,15.6
+17437,129919.9878,239819.2703,0,15.6
+17438,208254.8847,239848.2678,27948.18752,15.6
+17439,140496.6085,240659.1898,0,15.6
+17440,153457.8849,239946.441,0,15.6
+17441,160906.1812,241173.5358,0,15.6
+17442,157270.7173,206263.8388,0,15.6
+17443,157494.0994,207059.2237,0,15.6
+17444,158451.435,312883.778,0,15.6
+17445,158320.1454,222498.2616,0,15.6
+17446,157843.9077,235664.4499,0,15.6
+17447,157933.3908,247757.6988,0,15.6
+17448,158367.3766,242297.4135,0,15.6
+17449,158577.5389,242270.4252,0,15.6
+17450,159241.274,243091.7602,0,15.6
+17451,26376.16887,243431.4808,472014.3909,15.6
+17452,26482.43758,243364.8802,0,15.6
+17453,26435.75911,243802.0293,0,15.6
+17454,26482.43979,244114.1291,0,15.6
+17455,26549.14902,244045.4206,0,15.6
+17456,604841.1972,244474.4641,0,15.6
+17457,44842.27525,244970.3111,0,15.6
+17458,63579.4586,244435.5616,32635.38641,15.6
+17459,231977.0982,245526.9651,0,15.6
+17460,154290.1559,42984.24975,0,15.6
+17461,161347.9665,43033.34353,0,15.6
+17462,163061.9965,43055.15105,0,15.6
+17463,162854.3944,787598.1658,0,15.6
+17464,162660.1037,69748.42231,0,15.6
+17465,162613.614,140410.8913,0,15.6
+17466,162647.7044,318848.8201,0,15.6
+17467,162266.9797,225079.2654,0,15.6
+17468,135880.2596,239025.62,0,15.6
+17469,135612.416,239451.4985,0,15.6
+17470,214441.3639,239556.1482,0,15.6
+17471,147634.6454,240010.9915,0,15.6
+17472,157620.793,274056.1448,0,15.6
+17473,165592.9842,240120.244,0,15.6
+17474,500880.2026,206823.7135,0,15.6
+17475,161669.7845,217082.4661,0,15.6
+17476,161633.5971,322851.8291,0,15.6
+17477,161613.9118,230083.1133,0,15.6
+17478,161612.2887,243075.3026,0,15.6
+17479,161281.6808,255069.4753,0,15.6
+17480,162303.2156,249203.4899,0,15.6
+17481,162498.4591,249613.8554,0,15.6
+17482,161880.506,250005.6379,0,15.6
+17483,162448.1772,250583.7085,0,15.6
+17484,161740.8952,250472.0993,0,15.6
+17485,162086.2461,250282.625,0,15.6
+17486,26498.29319,251337.7901,0,15.6
+17487,26448.6039,250935.6439,490991.2876,15.6
+17488,26464.70409,251172.1269,0,15.6
+17489,26389.23662,251829.6265,0,15.6
+17490,572703.6065,251548.0303,0,15.6
+17491,26337.08602,252302.6106,0,15.6
+17492,84818.91409,251860.5751,0,15.6
+17493,228254.7892,44673.36009,0,15.6
+17494,148806.5948,44713.84643,0,15.6
+17495,161618.3401,44841.69925,0,15.6
+17496,161277.166,815408.6056,0,15.6
+17497,161161.441,89930.22272,0,15.6
+17498,161419.5705,145555.1367,0,15.6
+17499,160955.8229,338564.4979,0,15.6
+17500,134591.2175,239020.0267,0,15.6
+17501,134682.12,254055.7675,0,15.6
+17502,213051.5748,245737.4043,0,15.6
+17503,145339.1212,245966.1606,0,15.6
+17504,156731.8628,246449.223,0,15.6
+17505,163937.2332,246198.4056,40080.41887,15.6
+17506,160226.3514,209588.6944,39162.65509,15.6
+17507,160176.5214,210255.8292,38325.54531,15.6
+17508,160231.1964,323819.0249,37540.04493,15.6
+17509,160057.429,229236.2727,36788.76979,15.6
+17510,159781.0091,278107.4234,36065.00009,15.6
+17511,159960.6234,254256.6448,35365.66735,15.6
+17512,159675.3719,248677.3193,34697.20445,15.6
+17513,159735.2674,260539.4926,34034.04882,15.6
+17514,159139.1352,256320.7297,33470.82106,15.6
+17515,159684.3023,256442.5274,32780.86759,15.6
+17516,498339.3384,257288.0824,32197.91981,15.6
+17517,159164.6975,256715.7308,31618.53838,15.6
+17518,159386.0356,257461.8353,31062.25546,15.6
+17519,158651.4593,257534.8852,30514.34518,15.6
+17520,25989.63073,258048.284,29987.06173,17.8
+17521,1025885.75,1446379.785,137398.6354,17.8
+17522,918272.5699,1376104.075,116133.0248,17.8
+17523,450515.5486,363961.6187,513170.982,17.8
+17524,524458.9596,622343.4943,64968.01348,17.8
+17525,395784.406,657497.0099,92134.94047,17.8
+17526,396511.6212,158008.2244,78424.83142,17.8
+17527,407582.077,126127.9613,79987.58777,17.8
+17528,392849.8181,1212851.095,80330.32648,17.8
+17529,391038.604,427062.4455,80510.74487,17.8
+17530,391136.7041,619209.0359,80822.57811,17.8
+17531,389741.9393,538498.4908,81059.72528,17.8
+17532,326549.7303,580245.0478,81332.79207,17.8
+17533,325856.0225,559040.048,74827.52855,17.8
+17534,416976.6415,556703.2029,74855.45525,17.8
+17535,413895.7056,554925.2614,74765.15419,17.8
+17536,387254.2849,553276.6482,74833.42277,17.8
+17537,391202.4353,551671.9263,74728.05166,17.8
+17538,386678.5307,456689.5638,74782.04572,17.8
+17539,390118.5498,455305.7775,74741.42104,17.8
+17540,388193.5397,605499.6462,75023.06373,17.8
+17541,387686.3762,523378.0926,74638.35411,17.8
+17542,388476.0464,501602.946,74814.27321,17.8
+17543,387653.8996,616494.5306,74750.79676,17.8
+17544,388071.947,530924.8515,74760.53039,17.8
+17545,387784.2883,537020.6626,74764.37431,17.8
+17546,388335.3782,545553.5143,74812.49631,17.8
+17547,387827.3447,541384.8406,74775.63727,17.8
+17548,388615.5332,539224.5665,74822.62246,17.8
+17549,388312.4952,538129.2983,74855.48346,17.8
+17550,388225.3319,538223.3933,74899.9381,17.8
+17551,62373.47322,536958.3014,0,17.8
+17552,62380.60012,535799.1333,0,17.8
+17553,856408.5363,535459.8541,0,17.8
+17554,397389.3219,534383.7922,136935.9347,17.8
+17555,663978.8094,533876.7541,58625.0213,17.8
+17556,412338.2906,533133.3331,70389.45786,17.8
+17557,395373.5663,532247.9597,552884.8208,17.8
+17558,391282.0748,118555.0132,80751.35247,17.8
+17559,390054.589,118452.7046,81455.3432,17.8
+17560,391198.5644,1194659.292,81328.90273,17.8
+17561,390938.8939,353551.0397,81140.6859,17.8
+17562,391360.38,571365.3422,81062.41004,17.8
+17563,391816.1339,518721.8615,80838.51328,17.8
+17564,329209.938,542299.4723,80811.70313,17.8
+17565,330113.6626,528205.4138,80594.82035,17.8
+17566,419954.5836,528127.0415,80558.20224,17.8
+17567,417655.2706,527077.4291,80673.8557,17.8
+17568,393764.9154,526779.8482,80240.11767,17.8
+17569,394581.3617,525674.4559,80257.76863,17.8
+17570,393916.4363,438146.1595,80146.91053,17.8
+17571,395655.9927,436867.7838,80049.79486,17.8
+17572,395086.2808,607359.8629,79968.92083,17.8
+17573,394905.3808,499730.9344,79903.59367,17.8
+17574,395855.7712,484106.9715,79784.19231,17.8
+17575,395875.7531,507715.2439,79767.07438,17.8
+17576,396768.1792,580314.6284,79662.33708,17.8
+17577,396259.7465,505593.4272,79615.98661,17.8
+17578,397306.1261,520378.5645,79543.22894,17.8
+17579,397856.3982,525792.5165,79505.05097,17.8
+17580,397763.153,521126.3824,79425.98183,20
+17581,2315030.559,2611767.792,1346371.583,20
+17582,1657548.307,2627093.427,1343300.513,20
+17583,269793.9776,1039273.822,927089.6498,20
+17584,1050121.962,919907.2969,530228.5933,20
+17585,833284.1456,1376089.864,651284.1226,20
+17586,800549.6887,1077860.152,738104.3989,20
+17587,1083247.516,1120488.352,678587.5507,20
+17588,888598.2451,1104121.224,676798.1938,20
+17589,930698.4243,1098808.857,697800.2566,20
+17590,930347.5882,210713.8559,706950.7939,20
+17591,1247730.99,1400749.1,1476389.914,20
+17592,893125.865,1106592.931,722708.3286,20
+17593,901169.3876,1023553.081,731532.9595,20
+17594,895531.5365,1103325.262,741101.5745,20
+17595,892275.9968,1078794.585,750221.3685,20
+17596,766834.864,1075100.905,757389.7811,20
+17597,936269.1197,1072397.16,765971.4775,20
+17598,879670.4806,1069254.765,773271.8682,20
+17599,883472.154,1067660.945,780518.6422,20
+17600,882233.1222,1063236.171,786835.9075,20
+17601,880791.1856,1062900.734,793367.7301,20
+17602,878297.0226,910740.3645,800446.6042,20
+17603,877671.5536,1141286.771,804227.9863,20
+17604,874007.6347,1069060.493,811240.2837,20
+17605,873390.2451,1036950.325,815848.7141,20
+17606,871829.7468,1007559.812,821662.2702,20
+17607,870492.908,999530.4858,825831.3642,20
+17608,870224.9086,1099135.176,830645.0592,20
+17609,866571.4002,1056934.26,834834.5769,20
+17610,866496.084,1039022.24,839039.8267,20
+17611,836596.7779,1041857.159,308021.9797,20
+17612,835697.6213,1042922.588,302373.6693,20
+17613,833712.6713,1039876.492,297817.0294,20
+17614,186880.9033,1035880.045,1948006.718,20
+17615,153401.3117,1035908.95,618578.6499,20
+17616,946334.4782,1033409.917,613482.8722,20
+17617,933098.0257,1033964.853,968231.0901,20
+17618,893817.1661,1029759.752,845049.2605,20
+17619,895928.9209,1029188.163,799386.6888,20
+17620,876021.1013,1029740.964,828244.3933,20
+17621,839120.1305,190254.2781,842258.5056,20
+17622,866661.5263,189943.9315,855446.6919,20
+17623,855872.6895,1273729.366,857552.803,20
+17624,853098.9568,1354169.272,864662.868,20
+17625,853991.6946,796668.3542,1873513.408,20
+17626,853049.7584,1091525.58,859612.8858,20
+17627,1074499.732,1024080.572,863681.0207,20
+17628,891481.2632,1019926.526,869437.1005,20
+17629,836125.0429,1020010.127,873339.0179,20
+17630,841250.512,1019809.046,878913.9152,20
+17631,842552.0023,1016164.703,883428.8298,20
+17632,840378.9673,1017649.57,887193.5848,20
+17633,839011.1598,876304.0431,891799.2692,20
+17634,838570.0412,1099898.57,895397.4728,20
+17635,836200.0907,1005051.803,899318.1374,20
+17636,836749.5098,994478.4884,903155.502,20
+17637,835269.4639,1010826.63,905444.2063,20
+17638,832921.2893,955489.3053,910660.6928,20
+17639,833362.5223,953474.0947,911974.6463,20
+17640,832795.5957,1053012.611,916422.0781,21
+17641,2312501.837,2997949.372,4259886.878,21
+17642,2213645.877,2464178.554,2094205.45,21
+17643,701657.017,871557.8299,691962.6688,21
+17644,794147.7389,1377850.462,1048193.166,21
+17645,1228965.178,1395888.975,1149992.987,21
+17646,987656.2845,1311282.598,1145461.776,21
+17647,1008163.503,1302776.316,1148381.726,21
+17648,1008836.342,1284526.664,1120168.264,21
+17649,1003903.161,1273650.841,1144393.311,21
+17650,1002441.995,1276911.826,1148053.845,21
+17651,1000508.511,1269649.779,1153656.275,21
+17652,997288.5619,1268105.939,1156596.668,21
+17653,995891.2087,1264110.962,1160931.464,21
+17654,992587.2946,1261881.096,1163659.932,21
+17655,989571.2134,1259838.373,1166034.516,21
+17656,981561.8879,1255417.026,1170152.38,21
+17657,982638.6982,1256177.016,1172485.82,21
+17658,978453.9481,1250429.991,1173458.324,21
+17659,977160.6723,1249375.402,1178334.672,21
+17660,973897.777,1246747.277,1178197.241,21
+17661,972681.6192,1244163.894,1181518.02,21
+17662,970727.69,1243590.379,1182283.563,21
+17663,967274.8319,1240892.809,1185146.689,21
+17664,966915.5475,1238375.526,1185258.437,21
+17665,963912.9889,1236521.188,1188012.558,21
+17666,962950.0492,1234387.703,1188046.5,21
+17667,960010.0243,1232970.222,1190382.039,21
+17668,960419.2936,1230365.165,1191743.721,21
+17669,957828.4943,1229746.665,1191276.776,21
+17670,955234.2853,1227740.389,1195231.59,21
+17671,956021.3188,1226837.017,1192319.243,21
+17672,952301.7556,1222431.595,1197767.947,21
+17673,951407.1071,1224333.007,1194271.704,21
+17674,950332.8104,1221329.039,1197123.014,21
+17675,948871.7977,1218105.96,1198004.018,21
+17676,947917.0097,1219584.078,1198100.556,21
+17677,946473.4331,1216613.437,1198253.751,21
+17678,944799.2522,1214735.512,1200779.984,21
+17679,944849.0789,1214290.281,1198489.026,21
+17680,941991.9056,1213233.77,1202689.55,21
+17681,942522.8316,1210212.235,1200057.606,21
+17682,939626.9539,1211300.764,1203387.715,21
+17683,939197.6102,1208837.585,1201172.308,21
+17684,939293.7721,1206761.183,1203222.653,21
+17685,936925.5137,1206818.219,1201496.931,21
+17686,936575.5567,1205083.907,1204687.231,21
+17687,935961.5054,1203799.831,1202268.805,21
+17688,933475.9773,1202390.064,1204965.83,21
+17689,933423.4834,1202026.104,1204747.251,21
+17690,934334.4823,1200320.58,1204984.49,21
+17691,929662.9754,1199183.619,1203583.591,21
+17692,932633.9231,1198898.174,1207076.702,21
+17693,929134.4271,1196345.905,1202524.769,21
+17694,929059.306,1196565.212,1207576.297,21
+17695,929107.7902,1193929.527,1205154.658,21
+17696,926704.1345,1195836.361,1205555.865,21
+17697,928625.5276,1191657.425,1206975.046,21
+17698,923997.1202,1192333.046,1206307.307,21
+17699,927539.2416,1191769.435,1206631.655,21
+17700,923231.4512,1189647.862,1206296.583,21
+17701,1546832.607,2854618.235,1921323.244,21
+17702,1539566.645,2847527.169,1086634.664,21
+17703,1538446.985,3206417.307,1087579.913,21
+17704,1537850.118,2844112.579,1946431.02,21
+17705,1535198.984,2841004.392,1085614.822,21
+17706,1535049.825,2839587.999,1086881.239,21
+17707,1533314.073,2839362.291,1955774.57,21
+17708,1530531.854,2867228.003,1086403.035,21
+17709,1531153.97,2874425.87,1083509.326,21
+17710,1530381.99,2862203.379,1963515.324,21
+17711,1526489.119,2865141.81,1082664.735,21
+17712,1528801.084,2864854.152,1083560.21,21
+17713,1524231.071,2862443.722,1966062.304,21
+17714,1525969.586,2860516.6,1082657.72,21
+17715,1522462.73,2860047.309,1080850.739,21
+17716,1522414.522,2858564.853,1967892.951,21
+17717,1521443.357,2857305.878,1080868.974,21
+17718,1520387.303,2855790.79,1572900.849,21
+17719,1518950.092,2853030.994,1058752.419,21
+17720,1518455.426,2854544.125,1065623.289,21
+17721,1516551.553,2850929.067,1111474.8,21
+17722,1515513.036,2850748.742,1087861.868,21
+17723,1516053.041,2849903.147,1284634.276,21
+17724,1513068.755,2846300.904,1070558.056,21
+17725,1512430.301,2847197.783,1140192.03,21
+17726,1512934.438,2846043.073,1119065.321,21
+17727,1510985.813,2843514.747,1115353.897,21
+17728,1507772.617,2843515.909,1114042.755,21
+17729,1511260.482,2841307.045,1113098.367,21
+17730,1506999.749,2840275.48,1111228.402,21
+17731,1506225.792,2838587.459,1108420.712,21
+17732,1506713.966,2838533.021,1108988.129,21
+17733,1504032.201,2837378.21,1106291.588,21
+17734,1505167.405,2834669.646,1105051.832,21
+17735,1501791.848,2835980.757,1103125.411,21
+17736,1503690.295,2831733.819,1101516.959,21
+17737,1501257.852,2832555.22,1101325.054,21
+17738,1500804.575,2831741.31,1098865.132,21
+17739,1499138.334,2829358.301,1098275.451,21
+17740,1498145.104,2828567.936,1095663.974,21
+17741,1498349.501,2827948.644,1095934.79,21
+17742,1497566.369,2826532.811,1092794.82,21
+17743,1495328.953,2825160.498,1094216.396,21
+17744,1496344.363,2824526.315,1091405.138,21
+17745,1494036.768,2823325.967,1090952.108,21
+17746,1493446.303,2822834.638,1090101.6,21
+17747,1493365.588,2820356.933,1089609.249,21
+17748,1491796.416,2819950.966,1078072.104,21
+17749,1491205.015,2819339.229,1078729.714,21
+17750,1485878.061,2817954.069,1074544.063,21
+17751,1482465.796,2816941.388,1074261.919,21
+17752,1481346.482,2815624.776,1074148.285,21
+17753,1481854.269,2815328.76,1069541.386,21
+17754,1478313.095,2812910.086,1070653.164,21
+17755,1480042.022,2813720.825,1069363.432,21
+17756,1476196.588,2811527.052,1066024.171,21
+17757,1477273.024,2810227.593,1066357.724,21
+17758,1474292.616,2810381.668,1064089.684,21
+17759,1475051.384,2809000.836,1064590.411,21
+17760,1473182.777,2806957.445,1060714.732,21
+17761,1242286.123,2571656.637,797744.2662,21
+17762,1226002.004,2535910.64,783120.814,21
+17763,1219138.913,2539167.608,778576.5774,21
+17764,1217139.842,2533510.536,773880.035,21
+17765,1210578.885,2892203.412,769735.6098,21
+17766,1208177.518,2524981.348,766147.0048,21
+17767,1204038.354,2520349.774,762624.8989,21
+17768,1595279.752,2517660.008,758886.1379,21
+17769,1196966.818,2513127.396,755064.3019,21
+17770,1193767.684,2510175.045,752159.8127,21
+17771,1593566.642,2507996.506,749588.462,21
+17772,1185809.245,2503136.158,745412.0555,21
+17773,1183995.638,2500347.529,743366.0945,21
+17774,1585285.427,2496753.958,740052.3566,21
+17775,1175911.065,2494621.7,737148.1402,21
+17776,1174758.071,2491360.415,734668.4222,21
+17777,1575868.204,2487466.662,731738.0407,21
+17778,1167634.431,2484378.16,730180.2612,21
+17779,1163906.952,2482810.289,726559.9589,21
+17780,1567988.406,2477841.956,725266.6273,21
+17781,1158799.196,2476235.466,722481.1696,21
+17782,1155193.22,2473980.212,720525.1411,21
+17783,1559362.355,2469425.714,718341.7172,21
+17784,1150629.723,2467179.699,716347.111,21
+17785,1147367.239,2464497.105,713280.0513,21
+17786,1551312.587,2461470.615,712441.6557,21
+17787,1142190.113,2459750.067,709749.1476,21
+17788,1139332.719,2455753.428,708022.0125,21
+17789,1543528.841,2453672.995,706300.147,21
+17790,1135304.642,2451611.941,704773.349,21
+17791,1131134.683,2448292.743,701989.9764,21
+17792,1534790.623,2444740.625,701329.4739,21
+17793,1126282.961,2443741.28,698444.8235,21
+17794,1121847,2440266.811,696535.3046,21
+17795,1523526.76,2437289.537,694973.5698,21
+17796,1115239.149,2436197.483,692906.1668,21
+17797,1110067.017,2431790.366,691932.1519,21
+17798,1515065.423,2430658.333,689711.4969,21
+17799,1104489.738,2427792.75,687477.6628,21
+17800,1101962.396,2425269.401,686180.2912,21
+17801,1097345.057,2422616.638,684889.3528,21
+17802,1096289.665,2421192.561,682563.212,21
+17803,1091974.581,2416571.105,681533.9903,21
+17804,1088580.476,2416544.454,679911.7564,21
+17805,1085959.195,2412687.033,678203.5035,21
+17806,1082816.23,2410950.995,676696.0222,21
+17807,1079751.715,2408113.426,674683.6192,21
+17808,1075864.567,2407019.447,673905.1973,21
+17809,1073896.279,2402915.486,671902.6927,21
+17810,1069802.779,2401630.451,670285.0401,21
+17811,1065020.769,2399450.89,669703.2931,21
+17812,1061835.39,2396157.293,667567.6984,21
+17813,1057787.737,2395067.146,666162.5065,21
+17814,1055245.011,2391760.237,664589.868,21
+17815,1052136.635,2390612.96,663908.5723,21
+17816,1048741.087,2387920.811,662031.6476,21
+17817,1045343.66,2384911.881,660753.9659,21
+17818,1042479.246,2383712.615,659614.5407,21
+17819,1038956.476,2380561.904,658338.5137,21
+17820,1036290.945,2379443.909,656714.0704,21
+17821,1032199.887,2377174.781,652463.5891,21
+17822,1029716.264,2374654.822,649435.4422,21
+17823,1025679.003,2373120.403,1312436.796,21
+17824,1021423.255,2371921.54,531794.8749,21
+17825,1019534.862,2369645.6,557431.4346,21
+17826,1015072.798,2368078.835,1349810.727,21
+17827,1012413.06,2365899.596,530026.8777,21
+17828,1008948.835,2364874.337,959766.9991,21
+17829,1005490.661,2362366.553,518336.4199,21
+17830,1002509.314,2361724.657,521318.3937,21
+17831,998319.5872,2359677.978,516221.2262,21
+17832,995957.3055,2357967.997,713270.7936,21
+17833,991651.0162,2356103.111,825089.5184,21
+17834,988597.2393,2355022.214,502233.8645,21
+17835,984884.6497,2352818.023,504553.1516,21
+17836,982673.5264,2350815.039,520917.3737,21
+17837,978575.2464,2350600.149,651584.6929,21
+17838,975064.7428,2347500.441,659087.2745,21
+17839,972256.8204,2347046.305,717762.4907,21
+17840,968014.1048,2344766.631,484467.5872,21
+17841,965515.4747,2342802.148,485288.2053,21
+17842,962913.4424,2342198.436,712582.141,21
+17843,959501.0329,2340063.144,646567.3925,21
+17844,957196.5691,2338352.661,601257.327,21
+17845,954363.2622,2338025.803,615154.9739,21
+17846,952023.7122,2334705.71,604426.5214,21
+17847,948746.0858,2334434.007,598566.9067,21
+17848,946253.8715,2332612.638,594767.2599,21
+17849,943642.3589,2331155.514,591143.9545,21
+17850,941102.7027,2328768.79,587571.6807,21
+17851,938590.0221,2328216.501,584065.222,21
+17852,936758.8872,2326375.884,580501.8624,21
+17853,934912.3009,2324172.024,577232.4707,21
+17854,932687.926,2324703.432,573741.2439,21
+17855,930673.6232,2320896.09,570288.9508,21
+17856,929117.5892,2321406.6,566713.5739,21
+17857,926753.8639,2318010.054,563431.7757,21
+17858,924865.0803,2318102.978,560020.9223,21
+17859,923282.6608,2314921.301,557159.9221,21
+17860,921141.3608,2315038.895,553041.7784,21
+17861,919544.3541,2313225.987,550401.7559,21
+17862,917156.7477,2311900.389,547235.3781,21
+17863,916118.9323,2310261.597,542606.4031,21
+17864,914020.962,2308956.733,542321.0361,21
+17865,911861.1246,2307621.73,537015.441,21
+17866,910718.6893,2305189.786,646480.852,21
+17867,908168.2709,2304974.86,391812.0038,21
+17868,907552.8544,2302800.829,393026.6443,21
+17869,904851.0571,2302023.744,612174.8794,21
+17870,903642.2177,2300654.148,579599.2302,21
+17871,901573.0726,2298065.607,506692.8358,21
+17872,900163.5286,2298911.427,527165.2802,21
+17873,898825.4775,2294670.876,516054.0568,21
+17874,896525.0316,2296484.79,511059.8443,21
+17875,895326.2299,2292046.684,507763.1214,21
+17876,893884.7925,2292482.537,504276.1623,21
+17877,891523.6259,2291043.383,1102949.635,21
+17878,890521.3632,2289286.835,363036.9884,21
+17879,888999.591,2287389.62,421651.5337,21
+17880,889031.3293,2287811.419,1139992.353,21
+17881,890525.9537,2284615.829,369660.6968,21
+17882,887524.2325,2285140.169,425869.188,21
+17883,883801.9483,2282508.602,1166395.116,21
+17884,880573.6287,2282912.614,372378.7582,21
+17885,877472.5901,2279828.569,427639.9077,21
+17886,873867.507,2279720.726,1180300.427,21
+17887,870622.4778,2278523.613,375649.2917,21
+17888,867660.0476,2276860.063,418001.6597,21
+17889,863929.2143,2275775.751,1203438.844,21
+17890,860480.482,2275015.256,371204.3835,21
+17891,857549.4615,2272991.114,792947.3325,21
+17892,853807.9182,2272393.375,365686.5728,21
+17893,850645.5713,2270189.654,369292.1316,21
+17894,847261.8089,2270283.201,365642.5112,21
+17895,844294.0321,2268257.521,595622.3523,21
+17896,840573.4865,2267196.657,668411.7601,21
+17897,837294.7616,2266197.928,358578.2752,21
+17898,834178.5778,2264394.139,362172.3073,21
+17899,830819.7271,2263784.248,374596.3391,21
+17900,827420.825,2262129.02,547758.4871,21
+17901,824109.3725,2261280.705,538291.6587,21
+17902,821075.4131,2259716.292,519020.0388,21
+17903,817470.6178,2258424.8,352170.3263,21
+17904,814142.4871,2258945.005,628256.4157,21
+17905,811402.9017,2254733.97,586828.4451,21
+17906,807624.7096,2256695.79,636288.6028,21
+17907,804445.446,2252136.234,342051.5727,21
+17908,801382.741,2254223.1,345797.7736,21
+17909,797692.3047,2250975.739,343126.6314,21
+17910,794709.2813,2251067.476,557802.3556,21
+17911,791564.1043,2249635.757,618867.8231,21
+17912,788051.923,2247880.473,335970.9858,21
+17913,784683.681,2246469.514,338243.6003,21
+17914,781700.1705,2245418.02,335565.6385,21
+17915,778445.2462,2245928.65,551322.3599,21
+17916,774777.6534,2242745.778,608137.6177,21
+17917,771650.7666,2242606.277,324532.9679,21
+17918,768329.6856,2241797.939,326226.1023,21
+17919,765382.0029,2239556.12,323084.8867,21
+17920,761673.1183,2238863.36,539938.7499,21
+17921,758730.3666,2238610.78,593357.8848,21
+17922,755247.4487,2235440.973,314386.4618,21
+17923,752271.3897,2236396.257,316883.0638,21
+17924,748808.6706,2234209.02,313562.7615,21
+17925,745312.1123,2233092.933,529043.1002,21
+17926,742672.8464,2232308.147,582448.8296,21
+17927,738916.4021,2231218.96,306316.7687,21
+17928,735946.6234,2229775.859,309944.5192,21
+17929,732582.811,2229233.566,307553.8812,21
+17930,729145.8354,2203632.66,521566.7517,21
+17931,726167.2785,2199463.599,573581.6209,21
+17932,723074.3069,2196690.856,302797.6127,21
+17933,719335.8225,2195374.409,306129.4485,21
+17934,716806.1659,2191533.886,535788.6656,21
+17935,713173.4631,2190790.771,506252.3986,21
+17936,709668.5778,2188990.825,557375.1385,21
+17937,706949.016,2186074.701,296728.5033,21
+17938,703687.3967,2184778.847,299410.5451,21
+17939,700251.3858,2183162.922,522934.8747,21
+17940,698244.1036,2180821.135,492145.28,21
+17941,692199.1674,2178922.171,532490.5418,21
+17942,690731.3629,2176737.721,277852.1763,21
+17943,688577.6021,2175027.165,280790.7676,21
+17944,687176.0736,2173779.232,498167.3904,21
+17945,685887.2012,2172145.709,468327.3398,21
+17946,683659.4053,2171529.164,513437.3785,21
+17947,682384.8688,2168965.18,266604.371,21
+17948,680633.055,2169526.21,269503.215,21
+17949,679335.9151,2166942.777,483118.2585,21
+17950,677121.7287,2166626.095,455022.5036,21
+17951,675783.4773,2164597.045,495145.7076,21
+17952,674169.9574,2163904.342,257097.6077,21
+17953,672376.0637,2162165.186,258840.9908,21
+17954,670847.758,2161690.865,470405.07,21
+17955,668994.6356,2159829.198,441852.9825,21
+17956,667845.5227,2158596.898,479665.7085,21
+17957,665491.0884,2156351.302,247754.9076,21
+17958,664496.3025,2157240.211,248620.5607,21
+17959,662537.7338,2155067.6,457177.5931,21
+17960,660786.3082,2154906.192,429283.1456,21
+17961,659308.5424,2154096.664,463242.2418,21
+17962,657476.7498,2153720.672,238199.7529,21
+17963,655985.596,2152342.032,239911.732,21
+17964,654128.9959,2152680.632,445091.7375,21
+17965,652640.9972,2151329.898,418208.368,21
+17966,650523.4945,2150495.777,449631.9781,21
+17967,649423.2795,2150685.121,229271.2051,21
+17968,647698.2398,2148858.237,232092.5836,21
+17969,645496.4566,2149535.621,433935.5732,21
+17970,644451.1244,2148144.517,408059.0123,21
+17971,642146.3535,2147220.678,436020.9307,21
+17972,640227.8857,2147914.599,222013.0787,21
+17973,638660.9709,2146390.882,223755.6742,21
+17974,636662.5479,2146500.824,424073.9547,21
+17975,634595.8303,2145359.169,397934.5554,21
+17976,632904.2274,2145177.964,423260.5103,21
+17977,630656.5197,2144670.242,214794.3738,21
+17978,629119.9435,2144534.413,216599.0783,21
+17979,626808.3731,2143333.609,414090.7211,21
+17980,624996.7362,2143723.205,387807.1348,21
+17981,622804.6233,2142449.149,330193.951,21
+17982,621169.2567,2142623.55,346735.7558,21
+17983,618919.8645,2509813.15,338797.3519,21
+17984,617031.6426,2141373.738,334959.9656,21
+17985,615002.0035,2140887.058,332769.1778,21
+17986,613064.9539,2140707.962,330786.9868,21
+17987,611516.1676,2140399.809,436172.1508,21
+17988,609016.3189,2139816.696,196220.7529,21
+17989,606968.4582,2139445.453,197944.3531,21
+17990,604933.953,2138940.06,388387.1155,21
+17991,603320.9594,2138847.546,353177.5038,21
+17992,600844.4995,2138191.007,311610.8294,21
+17993,598942.2431,2137826.588,323901.3588,21
+17994,596898.6184,2137507.746,316637.8037,21
+17995,595109.4931,2137008.891,313556.2151,21
+17996,592822.4573,2136562.828,310854.9787,21
+17997,590875.6844,2136729.049,309045.3016,21
+17998,588978.649,2135991.807,404113.0967,21
+17999,586965.2052,2134723.755,180465.3207,21
+18000,584746.782,2136154.323,181715.9987,21
+18001,613288.6549,2167762.337,389378.5946,21
+18002,612851.8812,2167501.734,356275.8805,21
+18003,611818.437,2165423.824,319234.9323,21
+18004,610563.9699,2197453.243,329868.4353,21
+18005,609913.3168,2194748.314,324641.0722,21
+18006,609044.3023,2186613.108,321557.0509,21
+18007,607739.9256,2189488.134,320366.1035,21
+18008,606839.5527,2187473.548,318776.6874,21
+18009,605840.539,2185985.734,409345.0201,21
+18010,604950.9444,2184879.949,196294.1155,21
+18011,603672.9012,2182914.406,198061.939,21
+18012,602967.187,2182028.499,374010.2186,21
+18013,602323.4356,2179394.599,342114.3684,21
+18014,600756.5903,2178052.636,306258.5284,21
+18015,599762.6786,2176668.766,317434.6415,21
+18016,597602.232,2174555.835,311458.3905,21
+18017,596433.9987,2173350.258,309303.6242,21
+18018,595562.7645,2171381.053,307710.4411,21
+18019,594268.1526,2538451.127,305890.1155,21
+18020,593413.6611,2168317.466,391743.1402,21
+18021,592254.539,2165781.846,185179.6325,21
+18022,591238.935,2165581.148,177487.035,21
+18023,590031.2618,2163221.06,353636.3305,21
+18024,589138.2495,2160637.852,320564.6438,21
+18025,587979.1566,2159475.904,285045.7223,21
+18026,586535.6294,2158270.091,294810.2447,21
+18027,585785.3844,2156023.161,287727.8383,21
+18028,584203.0709,2153807.881,284335.9321,21
+18029,583360.8778,2153729.122,281895.2168,21
+18030,581786.5692,2151313.782,278831.5784,21
+18031,581393.8248,2149253.099,276868.4941,21
+18032,580832.034,2148648.329,273976.0743,21
+18033,579738.1759,2145853.733,273001.3079,21
+18034,579564.35,2144332.223,269865.4665,21
+18035,578375.4189,2143910.276,267932.1312,21
+18036,578656.6712,2141432.843,265850.8713,21
+18037,577297.4146,2139481.2,262814.412,21
+18038,577230.7593,2139284.202,261848.8595,21
+18039,576781.8107,2137623.769,258988.746,21
+18040,575884.7462,2134584.771,256803.0437,21
+18041,575467.871,2134237.316,255056.9187,21
+18042,574736.571,2132945.044,251817.7138,21
+18043,574609.1177,2130976.998,251116.7017,21
+18044,573711.8763,2128440.301,248258.0123,21
+18045,573699.1112,2127805.371,246175.6254,21
+18046,572622.4229,2126548.557,244260.5933,21
+18047,572943.9638,2124734.046,241613.8315,21
+18048,571680.6412,2123737.932,240535.8183,21
+18049,572333.4632,2491347.339,237791.9158,21
+18050,571133.0902,2120467.018,235793.2588,21
+18051,570896.9041,2118865.029,233897.0597,21
+18052,570240.0807,2116777.875,231299.4405,21
+18053,570368.716,2115946.292,230374.2805,21
+18054,569390.196,2114053.131,227760.2993,21
+18055,569470.8659,2112797.052,225509.5956,21
+18056,568989.5123,2110646.351,223929.9116,21
+18057,568481.6405,2110418.375,221292.5242,21
+18058,567962.1489,2108007.525,221211.9086,21
+18059,568375.6959,2105995.438,219365.1487,21
+18060,567521.6979,2105420.524,218548.225,21
+18061,535073.0153,2048217.165,193344.8161,21
+18062,532710.2019,2045773.508,191625.8631,21
+18063,529427.7586,2043953.353,191153.1438,21
+18064,527460.2549,2041491.149,188907.1706,21
+18065,524435.3464,2040149.689,188058.3024,21
+18066,522141.496,2038001.713,186696.0623,21
+18067,519355.6096,2035811.704,185250.6305,21
+18068,516893.1417,2034582.66,184648.2708,21
+18069,514240.5422,2402172.673,183014.4041,21
+18070,511933.9551,2030200.396,181901.41,21
+18071,509271.8721,2028373.624,181160.3335,21
+18072,506973.1106,2026583.79,179302.0723,21
+18073,503818.8586,2024042.677,179364.094,21
+18074,501940.8299,2023018.796,177703.6157,21
+18075,498714.8307,2020326.021,176610.0244,21
+18076,497040.7181,2018376.696,175780.6628,21
+18077,493953.3286,2017131.313,174379.0363,21
+18078,491630.9873,2014868.067,174454.4985,21
+18079,488982.7951,2012521.156,172515.3107,21
+18080,486844.3669,2011665.009,172079.0234,21
+18081,484063.2099,2008628.025,171163.1422,21
+18082,481994.2552,2007710.613,169631.2224,21
+18083,482067.4209,2005625.663,169962.4565,21
+18084,479998.5734,2003747.412,167981.7033,21
+18085,477791.3906,2001379.259,167666.4066,21
+18086,475505.8318,2000126.197,166873.3479,21
+18087,472884.1308,1998010.698,165227.3025,21
+18088,470689.8886,1996521.705,165576.765,21
+18089,468626.8939,2365582.275,163967.3761,21
+18090,465786.9751,1993214.767,163480.3185,21
+18091,462986.8271,1990371.998,162542.9019,21
+18092,460181.6852,1988826.555,161336.6045,21
+18093,455488.3977,1986779.383,161138.0869,21
+18094,451570.1374,1985400.952,159775.4736,21
+18095,448747.2164,1983093.013,159155.4039,21
+18096,445184.18,1981344.21,157926.0479,21
+18097,442313.7949,1979252.291,157097.0756,21
+18098,437891.0809,1978036.678,156801.291,21
+18099,435230.5656,1975869.023,155545.7479,21
+18100,431339.6441,1973786.489,154746.9499,21
+18101,428703.5658,1971860.559,153773.7851,21
+18102,425031.1705,1970537.635,152736.032,21
+18103,423222.5656,1968200.629,152651.7498,21
+18104,419962.7671,1966300.395,150952.3201,21
+18105,417560.7965,1964779.18,150682.5267,21
+18106,414871.1936,1963023.544,149502.7404,21
+18107,412059.7725,1960700.649,148251.8853,21
+18108,409578.547,1959553.883,148221.2179,21
+18109,406872.1846,1957250.543,147054.8943,21
+18110,404219.758,1955657.858,145838.2405,21
+18111,401512.2465,1953259.317,145388.8088,21
+18112,398462.6761,2324292.035,143892.2179,21
+18113,396193.3939,1950536.596,143925.9602,21
+18114,393276.2131,1947837.309,142420.5833,21
+18115,391354.7161,1946371.254,141594.0954,21
+18116,387617.2157,1944428.56,140571.7345,21
+18117,384699.9,1942834.535,140319.474,21
+18118,381587.3431,1940598.261,138950.5957,21
+18119,378856.9527,1939091.81,137906.1814,21
+18120,376029.1818,1936960.001,137174.9408,21
+18121,380616.0432,1940253.385,142856.2067,21
+18122,380020.6654,1939877.487,142437.1141,21
+18123,379159.7838,1938248.917,141393.2682,21
+18124,378455.0033,1938071.794,140485.5075,21
+18125,377875.146,1936786.127,140426.8558,21
+18126,377518.6923,1935617.461,139537.5153,21
+18127,376145.3537,1935463.292,138678.8299,21
+18128,375427.8662,1933856.779,138153.0968,21
+18129,374940.7342,1933596.954,136969.5303,21
+18130,373606.0677,1932132.604,136887.7583,21
+18131,373342.4514,1931162.497,136022.8531,21
+18132,372410.7639,1930139.109,135084.3546,21
+18133,371593.8088,1929950.693,134571.9994,21
+18134,371015.3311,1928514.478,133272.1365,21
+18135,370057.3392,1927457.981,133468.365,21
+18136,369401.5464,1926806.135,132126.9285,21
+18137,368756.1804,1925746.393,131772.232,21
+18138,367609.3592,1924610.239,130533.1764,21
+18139,366872.6516,1924329.925,129797.0432,21
+18140,366289.0916,1922659.516,129685.0547,21
+18141,365414.917,1922165.666,128426.8321,21
+18142,364112.8277,1921241.357,127823.7822,21
+18143,363629.6499,1920332.808,133620.4419,21
+18144,362646.7933,1919189.265,123075.7143,21
+18145,361661.888,1918600.584,127982.7911,21
+18146,361142.4387,1917657.415,124354.773,21
+18147,359689.7393,1916672.101,124576.1897,21
+18148,359472.2561,1915466.371,123775.7038,21
+18149,358025.4946,1915064.472,122477.5254,21
+18150,357202.5827,1914341.667,122726.4873,21
+18151,356484.1895,1912061.968,121188.2747,21
+18152,355528.5981,1912291.041,120948.5022,21
+18153,355227.8883,1910951.238,119930.6233,21
+18154,353728.2845,1909672.653,119379.0035,21
+18155,353582.2665,1908944.855,118716.8,21
+18156,352690.746,1907787.236,118221.521,21
+18157,352219.3993,1907112.474,117172.5692,21
+18158,350820.8458,1905262.906,116859.9622,21
+18159,351161.2503,1905163.625,115877.0187,21
+18160,349645.6705,1903321.309,116501.7306,21
+18161,349293.6477,1902862.631,115861.1987,21
+18162,348355.409,1901601.532,115479.2624,21
+18163,347804.8002,1900457.915,115406.4565,21
+18164,347534.1924,1899579.094,114621.5873,21
+18165,347145.8101,1898138.011,115407.3621,21
+18166,347005.1953,1897781.232,114452.3536,21
+18167,346060.3189,1896397.497,114491.1596,21
+18168,345827.4125,1895488.018,114327.3216,21
+18169,344843.9977,1893775.798,113584.837,21
+18170,344799.6708,1893427.751,114291.4989,21
+18171,343876.2114,1891957.304,113776.1601,21
+18172,343314.9575,1891354.404,113333.9737,21
+18173,342877.9209,1889832.581,113477.5139,21
+18174,342264.3814,1889236.303,112952.5715,21
+18175,341992.2643,1887857.789,113443.4592,21
+18176,341332.6115,1886567.223,113128.1802,21
+18177,340857.8081,1886046.956,113002.4029,21
+18178,340247.342,1884504.869,112852.9869,21
+18179,340016.4736,1883815.369,112393.8134,21
+18180,339532.6878,1882674.263,113341.5443,21
+18181,333911.3272,1876960.391,106124.6938,21
+18182,333710.287,1875125.123,105630.0432,21
+18183,333780.4324,1873933.687,105631.2941,21
+18184,333377.5737,2247574.158,104780.0107,21
+18185,334001.1994,1870556.565,105340.7294,21
+18186,334039.0855,1868845.789,104629.4986,21
+18187,334357.6516,1867893.827,104528.839,21
+18188,333749.3437,1865412.962,104047.6889,21
+18189,334516.5865,1864867.174,103669.6762,21
+18190,333967.2373,1862623.561,104242.0181,21
+18191,334294.814,1861142.884,103289.8635,21
+18192,333967.1105,1859946.398,103532.7375,21
+18193,334354.604,1858234.782,102963.457,21
+18194,333714.4962,1856442.635,102716.8221,21
+18195,334233.4989,1855330.536,103232.4979,21
+18196,334007.4036,1853213.035,102444.0004,21
+18197,334017.2354,1852106.806,102542.5658,21
+18198,334096.402,1850580.993,102298.6968,21
+18199,334049.7016,1848627.479,101791.8577,21
+18200,334035.6718,1847634.28,102443.378,21
+18201,334086.6042,1844926.55,101557.802,21
+18202,334180.7879,1845103.159,101870.2406,21
+18203,333965.3291,1842135.939,101787.3839,21
+18204,334231.9073,1840445.727,101929.0179,21
+18205,334074.8302,1840515.859,103045.0302,21
+18206,334045.9157,1837111.998,103045.7986,21
+18207,334276.9783,1836576.051,103436.9111,21
+18208,334324.5948,1834691.419,103944.727,21
+18209,334086.44,1833209.701,104204.7376,21
+18210,335250.6142,1831673.153,105372.646,21
+18211,335046.1168,1829705.327,105516.579,21
+18212,335622.0895,1828522.547,106265.2772,21
+18213,335708.3249,1826811.2,106926.5775,21
+18214,335638.9308,2201577.895,107349.6017,21
+18215,336205.326,1823455.457,108792.8635,21
+18216,335887.3164,1821990.062,109104.4229,21
+18217,336775.5178,1820766.943,109943.3027,21
+18218,335986.9695,1819285.762,110597.6727,21
+18219,336919.4798,1817123.291,111295.2455,21
+18220,336716.9765,1815758.534,112694.3142,21
+18221,337370.3574,1814076.021,113259.8332,21
+18222,337005.3084,1813116.492,114285.8243,21
+18223,337682.2308,1810206.552,115344.2353,21
+18224,337413.5629,1810083.262,115638.066,21
+18225,338212.5871,1807219.871,117788.9095,21
+18226,337954.4404,1807078.968,118100.7935,21
+18227,338499.2578,1804247.727,119434.5474,21
+18228,338377.5897,1803227.065,120230.1935,21
+18229,339079.0654,1801903.372,121164.6185,21
+18230,339012.049,1799702.45,122855.6541,21
+18231,339330.0333,1798341.436,123512.1624,21
+18232,339485.5103,1797055.3,124813.0423,21
+18233,339734.1374,1794872.591,125819.1278,21
+18234,340324.5377,1793903.289,126793.2697,21
+18235,340303.3928,1791836.34,128443.1277,21
+18236,340615.9799,1790779.12,129399.1301,21
+18237,340849.834,1788716.833,130475.2259,21
+18238,341298.3082,1787664.197,131571.39,21
+18239,341361.5459,1785444.463,132724.4511,21
+18240,343237.7651,1784256.569,134609.322,21
+18241,346069.3677,1782487.075,136881.5148,21
+18242,345147.2507,1781387.638,140118.8937,21
+18243,346413.8114,1779024.737,143012.2524,21
+18244,347127.2546,2154631.494,146088.57,21
+18245,347881.5759,1776298.9,150239.5228,21
+18246,348527.5835,1774166.704,152876.8493,21
+18247,348836.8311,1772887.772,156888.239,21
+18248,350182.6533,1771202.293,159958.1429,21
+18249,350593.1987,1769641.035,163455.7972,21
+18250,351030.9081,1768168.357,167919.2276,21
+18251,352335.1896,1766493.714,170901.3744,21
+18252,352442.3757,1764267.422,174746.1199,21
+18253,353678.8824,1763550.463,178631.4002,21
+18254,354061.5753,1761641.939,181786.8465,21
+18255,354881.2659,1759935.211,186952.7274,21
+18256,355661.7379,1758289.497,190057.5324,21
+18257,356245.7179,1756759.761,193919.7414,21
+18258,357078.0377,1755363.627,198134.03,21
+18259,357934.7621,1753697.961,201767.2585,21
+18260,358605.9628,1751690.881,206484.3773,21
+18261,359317.4704,1750487.525,210185.9008,21
+18262,360136.5279,1748818.784,214346.7837,21
+18263,360622.1276,1746971.506,218403.0391,21
+18264,362197.3108,2123889.886,222047.6875,21
+18265,361903.3369,1743798.66,227495.6144,21
+18266,363771.0913,1742187.363,230839.8111,21
+18267,364212.7819,1740722.095,235321.9362,21
+18268,365136.7006,1739067.427,239851.0319,21
+18269,365958.2773,1737576.973,243322.7017,21
+18270,366858.1165,1735638.653,249257.9058,21
+18271,367295.1449,1734681.556,252811.329,21
+18272,367976.0343,1732257.622,257757.8826,21
+18273,368061.5492,1731100.265,262657.512,21
+18274,368584.4336,1729786.591,266470.7225,21
+18275,368986.9779,1727320.116,273138.2553,21
+18276,369437.615,1726671.014,276685.0597,21
+18277,369822.0508,1724080.552,281929.4992,21
+18278,369712.8971,1723639.537,287010.8764,21
+18279,370742.7462,1721158.344,290907.58,21
+18280,370611.4686,1719839.876,297661.9396,21
+18281,371208.0605,1718239.921,301513.6179,21
+18282,371291.2745,1716677.278,306721.2506,21
+18283,371532.5195,2093954.355,311840.6303,21
+18284,372216.5772,1712528.89,315984.105,21
+18285,371858.3616,1712264.178,322992.3766,21
+18286,372831.795,1710391.748,326483.6558,21
+18287,372260.5163,1707883.201,332382.8812,21
+18288,373419.531,1707472.855,337272.7004,21
+18289,373238.1885,1705276.501,341368.691,21
+18290,373518.6695,1703422.055,348958.5885,21
+18291,373870.731,1702267.74,352377.5162,21
+18292,373717.9375,1700400.011,358213.2443,21
+18293,374443.51,1699148.324,363447.3037,21
+18294,374316.0753,1696695.711,367569.1391,21
+18295,374839.4706,1696374.602,375170.4547,21
+18296,374899.7263,1693316.395,378986.3326,21
+18297,379067.3186,1693084.702,384608.6675,21
+18298,380160.4831,1690331.149,390007.7897,21
+18299,380102.4418,1689575.148,394058.2505,21
+18300,380978.2569,1687378.145,401203.9614,21
+18301,436701.2592,1764762.923,441176.2836,21
+18302,443073.4832,1767599.973,447021.3386,21
+18303,444444.9721,1768058.533,450753.0276,21
+18304,445688.8081,1767990.736,453856.8714,21
+18305,447910.0303,1766557.5,457623.3845,21
+18306,454973.302,1767364.604,461125.089,21
+18307,460781.0489,1765163.045,465222.1692,21
+18308,458779.2046,1766582.8,468118.3581,21
+18309,462219.778,1765022.362,471084.1795,21
+18310,463471.2879,1841846.783,474722.4286,21
+18311,466081.6661,1797446.606,477271.9636,21
+18312,466858.4919,1810187.959,480814.8741,21
+18313,468818.1898,1810309.63,483070.8273,21
+18314,470786.2491,1811403.549,486377.9262,21
+18315,472099.6023,1811713.058,489185.2463,21
+18316,474288.2056,1810135.044,491948.6267,21
+18317,475133.2733,1811611.431,494476.0203,21
+18318,477525.0452,1811424.256,497127.4466,21
+18319,478587.391,1810577.717,499629.0485,21
+18320,480306.7805,1811317.501,502333.516,21
+18321,481441.7288,1810921.014,504893.0426,21
+18322,483440.1879,1810907.385,507224.4873,21
+18323,484795.2788,1809809.237,509629.967,21
+18324,486122.034,1810566.262,511566.2392,21
+18325,487567.8289,1808984.593,514292.2891,21
+18326,489174.6087,1809066.477,516024.214,21
+18327,490405.0564,1809241.916,518445.6611,21
+18328,491651.4244,1807277.766,520332.4873,21
+18329,493595.1415,1808930.505,522115.9982,21
+18330,493982.6933,1806832.091,524799.4537,21
+18331,496354.1427,1806785.512,526279.8761,21
+18332,497211.8963,1805544.167,528630.9402,21
+18333,498700.9367,1806539.977,530323.5787,21
+18334,499977.9287,1804523.566,532316.5625,21
+18335,501179.9688,1804244.423,534178.665,21
+18336,502761.6789,1803823.194,536029.7943,21
+18337,503891.4708,1803244.524,537919.4495,21
+18338,504986.0685,1801663.285,539344.5116,21
+18339,506438.7689,1801851.965,541434.2244,21
+18340,508110.5852,1800543.544,543021.7391,21
+18341,508512.4641,1800567.443,544926.6095,21
+18342,510441.0926,1799035.307,545848.4412,21
+18343,511482.5273,1799058.192,548091.1433,21
+18344,512320.22,1797337.306,549366.2993,21
+18345,514383.7277,1796547.788,551071.9423,21
+18346,515140.437,1796526.257,555369.8523,21
+18347,516077.2595,1794734.327,576557.5774,21
+18348,517681.4035,1795267.41,571942.4245,21
+18349,518581.8306,1792517.731,575872.077,21
+18350,520400.2466,1793567.564,578184.0154,21
+18351,520772.2287,1790995.731,581553.197,21
+18352,522250.445,1792155.502,583767.2569,21
+18353,523679.0256,1789163.835,586273.7242,21
+18354,531971.8218,1789694.346,588865.6823,21
+18355,530686.23,1788301.101,591020.6786,21
+18356,532838.5316,1786788.44,593568.8456,21
+18357,535048.1931,1786650.016,596048.4934,21
+18358,536061.0135,1785625.628,597542.6579,21
+18359,538822.9424,1784300.675,600393.2046,21
+18360,539889.5079,1783571.326,601764.5074,21
+18361,600998.8497,1846645.996,627692.6409,21
+18362,606617.8401,1852106.616,632957.7664,21
+18363,608130.4564,1853250.878,561953.2519,21
+18364,610089.4588,1853059.496,767381.21,21
+18365,612427.6684,1855331.954,703602.542,21
+18366,612937.644,1854360.885,572069.5237,21
+18367,614975.3616,1855446.82,586160.9059,21
+18368,616209.7562,1856173.616,747192.8828,21
+18369,618431.1731,1856463.371,635335.223,21
+18370,618363.0837,1856754.488,665655.3046,21
+18371,620556.7261,1857722.282,666608.836,21
+18372,621467.6296,1856619.67,668644.4148,21
+18373,623507.3397,1859622.734,672108.5761,21
+18374,623730.1962,1856509,676325.3673,21
+18375,625342.3529,1860323.842,679532.5019,21
+18376,626830.8203,1857524.054,1389082.1,21
+18377,627727.9736,1859276.659,631823.3669,21
+18378,628642.7723,1860117.475,637702.1711,21
+18379,629482.7882,1858015.601,1449598.713,21
+18380,631515.7255,1860620.314,652316.7446,21
+18381,631583.1261,1859732.363,658368.8191,21
+18382,633463.7101,1861089.784,1485012.188,21
+18383,633395.3605,1860488.385,671835.4439,21
+18384,635402.5161,1862675.982,677738.174,21
+18385,636149.5693,1860239.421,1515029.117,21
+18386,637593.6807,1862150.039,690430.3797,21
+18387,637533.9477,1861250.261,696774.4756,21
+18388,638538.7011,1862097.419,1541385.456,21
+18389,640737.8795,1861282.832,708605.1161,21
+18390,640797.8494,1862649.87,713531.2417,21
+18391,640892.8025,1860934.416,1567035.417,21
+18392,643745.6822,1863420.397,725562.97,21
+18393,642140.1596,1860620.301,730750.9661,21
+18394,645817.0438,1863652.732,1589802.26,21
+18395,643809.8756,1860540.89,741766.8539,21
+18396,646424.0771,1863639.431,746587.9794,21
+18397,646754.0862,1861329.844,1611964.544,21
+18398,647888.7839,1863454.505,756881.3624,21
+18399,648670.2431,1861131.016,762267.4453,21
+18400,648411.1806,1863031,1631429.676,21
+18401,651484.7201,1861374.245,771766.3079,21
+18402,650024.7154,1863117.773,781471.3304,21
+18403,652003.8055,1861714.264,1656031.48,21
+18404,651990.6241,1861695.347,792026.247,21
+18405,653466.3704,1862634.468,798900.8398,21
+18406,652677.5686,1861445.218,1674542.185,21
+18407,655063.2203,1862236.572,808859.5611,21
+18408,655307.4347,1861897.809,1290082.548,21
+18409,655508.6735,1861046.902,803702.2616,21
+18410,657160.8162,1862623.24,814297.0475,21
+18411,657161.3213,1861085.643,854208.0995,21
+18412,658684.9905,1861879.189,1097733.16,21
+18413,657955.3032,1860110.238,816217.1432,21
+18414,660067.8954,1861932.996,821945.2603,21
+18415,659325.6923,1861253.313,929906.8071,21
+18416,661847.9202,1860152.983,907390.4287,21
+18417,660855.0297,1862157.362,834318.6148,21
+18418,661170.4274,1859841.949,857148.2494,21
+18419,663647.3101,1860880.096,851932.5416,21
+18420,662728.7712,1860496.071,852942.3992,21
+18421,664586.8299,1862667.185,855691.4556,21
+18422,666211.789,1863151.216,863584.7703,21
+18423,666573.8922,1865157.084,868006.4596,21
+18424,667398.0106,1864707.333,873329.9861,21
+18425,670351.757,1865285.318,1704228.931,21
+18426,668703.0965,1864814.424,883760.8215,21
+18427,672112.7178,1865032.137,887422.428,21
+18428,671409.4144,1866221.417,1751101.019,21
+18429,672225.1075,1864649.527,897425.0597,21
+18430,674635.4839,1866628.873,901340.1841,21
+18431,674787.3944,1865004.289,1771920.241,21
+18432,675596.8628,1866169.23,910275.4536,21
+18433,677240.7409,1866956.021,914766.1181,21
+18434,676806.0799,1866229.975,1787698.209,21
+18435,679409.2157,1866105.686,922915.5096,21
+18436,679504.4475,1866120.053,1401521.076,21
+18437,680420.6655,1867483.526,912468.2802,21
+18438,681430.6975,1865879.504,922367.34,21
+18439,681599.9479,1867369.786,965379.9792,21
+18440,683627.3377,1867026.8,1307816.699,21
+18441,684184.6721,1865646.299,943276.5454,21
+18442,684798.1444,1869086.133,920926.328,21
+18443,686171.3132,1864550.809,925045.7891,21
+18444,685995.7277,1868923.877,1015731.051,21
+18445,688593.4164,1865754.706,1261213.803,21
+18446,688134.281,1868259.917,923514.8324,21
+18447,689549.5853,1866351.766,933347.6673,21
+18448,689530.3536,1867673.127,1206854.678,21
+18449,692216.9224,1865803.785,928802.0794,21
+18450,691266.8078,1867747.378,934780.0333,21
+18451,693289.4204,1867117.327,954350.5599,21
+18452,693546.6506,1866850.734,946950.2616,21
+18453,695619.2836,1867047.978,969670.2253,21
+18454,694750.5301,1867288.123,1311674.258,21
+18455,696192.528,1866700.901,945676.4256,21
+18456,697539.3031,1867734.846,955862.7403,21
+18457,697255.4949,1865620.569,957449.167,21
+18458,700638.4535,1868168.986,1044218.693,21
+18459,698380.1393,1866814.536,966154.2532,21
+18460,700949.1573,1865783.65,971969.9847,21
+18461,701580.2195,1867765.862,977315.3131,21
+18462,701550.777,1865468.433,982658.8203,21
+18463,703342.786,1867368.844,988883.3246,21
+18464,703805.6083,1865334.414,993877.0108,21
+18465,704012.4464,1867389.898,998353.8678,21
+18466,706453.1683,1866013.475,1815524.214,21
+18467,705570.8044,1865582.183,1009383.241,21
+18468,706915.8817,1867327.152,1014124.204,21
+18469,708272.7649,1864487.295,1861556.027,21
+18470,708924.4544,1866090.193,1024183.853,21
+18471,708897.851,1865782.113,1028236.485,21
+18472,710468.2284,1865959.106,1882516.588,21
+18473,711581.0435,1865590.548,1036824.941,21
+18474,711656.0083,1864927.559,1042801.285,21
+18475,712942.6569,1866529.307,1897885.512,21
+18476,712747.0709,1864742.545,1050454.684,21
+18477,715024.2683,1864611.904,1053672.123,21
+18478,714575.0547,1865118.605,1913538.376,21
+18479,716487.5073,1864815.669,1061849.467,21
+18480,716683.219,1867231.064,1065498.921,21
+18481,723675.8377,1872427.518,1932552.205,21
+18482,726025.7049,1875064.871,1079892.422,21
+18483,724459.9096,1874756.571,1085909.875,21
+18484,725241.5167,1874798.07,1944864.136,21
+18485,724841.4485,1874730.905,1092847.946,21
+18486,725647.5517,1874637.45,1096898.322,21
+18487,723677.4658,1874426.57,1957296.127,21
+18488,725059.8249,1875673.558,1105242.685,21
+18489,724096.1408,1873579.883,1107665.618,21
+18490,724206.2435,1873935.776,1968396.423,21
+18491,723628.8809,1874357.221,1115870.364,21
+18492,723905.5731,1874080.399,1119061.402,21
+18493,723346.8441,1873381.968,1979562.034,21
+18494,723529.3631,1873569.753,1125831.124,21
+18495,722856.3044,1872876.65,1130049.785,21
+18496,722932.9678,1873162.54,1988769.793,21
+18497,722047.8927,1871833.04,1137627.741,21
+18498,721803.7294,1872527.799,1138971.272,21
+18499,722525.0882,1872443.482,1999742.03,21
+18500,720377.1322,1871550.818,1145978.53,21
+18501,721687.1381,1872068.898,1150075.012,21
+18502,720425.9206,1869864.509,2009322.035,21
+18503,720356.9678,1871663.487,1154821.527,21
+18504,719492.6376,1870879.915,1160360.87,21
+18505,720851.102,1870082.592,2016677.646,21
+18506,718422.4818,1869549.957,1166868.472,21
+18507,719001.6585,1870555.706,1168619.092,21
+18508,719427.4571,1868508.848,2025978.667,21
+18509,717862.7114,1869667.379,1175822.887,21
+18510,717838.5197,1867740.448,1178084.183,21
+18511,717282.2931,1868111.32,2034110.022,21
+18512,717292.2225,1867451.449,1184822.22,21
+18513,715809.1236,1868268.41,1187000.073,21
+18514,717666.9592,1866068.458,2042915.593,21
+18515,714801.9156,1866667.321,1193587.944,21
+18516,716702.8197,1866240.801,1196418.992,21
+18517,714426.0324,1866432.538,2050666.946,21
+18518,714701.2143,1864748.705,1201508.654,21
+18519,714905.4885,1863878.535,1206681.018,21
+18520,712894.3888,1865179.141,2057197.766,21
+18521,713647.8599,1864493.265,1211246.561,21
+18522,713132.2235,1862741.076,1215257.151,21
+18523,712209.7482,1863174.893,2064715.308,21
+18524,711555.5328,1863126.628,1220447.28,21
+18525,711933.6476,1861307.769,1223706.682,21
+18526,711608.2273,1861047.227,2071867.203,21
+18527,710071.0792,1862012.993,1229701.709,21
+18528,710286.4443,1859391.81,1231449.972,21
+18529,709816.5239,1860937.855,2079803.437,21
+18530,709847.2149,1858592.059,1237993.497,21
+18531,708172.1005,1859050.351,1240194.173,21
+18532,708722.794,1857483.232,2097969.184,21
+18533,707474.5913,1859229.499,1251738.349,21
+18534,708415.9808,1857440.92,1256770.762,21
+18535,705646.6245,1856345.076,2104443.433,21
+18536,707479.2476,1855812.91,1262918.116,21
+18537,705431.6424,1856134.257,1269169.175,21
+18538,705469.5735,1853391.783,2113103.547,21
+18539,706057.5928,1853490.702,1275528.773,21
+18540,703657.4452,1850586.6,1279446.831,21
+18541,704227.8154,1851234.553,2123244.775,21
+18542,706528.3952,1850968.578,1289015.272,21
+18543,705924.17,1850437.424,1293839.884,21
+18544,705741.4816,1852540.736,2135493.488,21
+18545,706831.8583,1848596.146,1301568.615,21
+18546,705763.5365,1850890.081,1750275.177,21
+18547,706646.4316,1848745.729,1280346.234,21
+18548,706519.5506,1849059.279,1294134.717,21
+18549,707175.8552,1849189.322,1345382.314,21
+18550,707368.6559,1847494.34,1294907.247,21
+18551,706249.9043,1848125.383,1299782.345,21
+18552,707567.4538,1847368.626,1611171.034,21
+18553,707014.3057,1847129.83,1290853.397,21
+18554,707330.2199,1846414.982,1301881.236,21
+18555,707885.4115,1847633.755,1329278.037,21
+18556,707404.3673,1844883.837,1309690.802,21
+18557,707773.5848,1846280.955,1312971.191,21
+18558,707864.5024,1845121.403,1596640.285,21
+18559,707994.9433,1844822.367,1309762.75,21
+18560,709012.3196,1843824.285,1316928.589,21
+18561,707638.4498,1844372.676,1390644.703,21
+18562,709075.3072,1844501.356,1323127.986,21
+18563,708507.9453,1841597.252,1330262.288,21
+18564,708508.0272,1844119.208,1634983.537,21
+18565,708712.6146,1842494.702,1323441.235,21
+18566,708509.4437,1842122.679,1333954.157,21
+18567,709189.3557,1841917.799,1462790.584,21
+18568,708759.4232,1841002.023,1335226.116,21
+18569,710089.3986,1840709.838,1344373.769,21
+18570,707917.5165,1841667.474,1348820.973,21
+18571,710837.299,1839770.872,1356590.81,21
+18572,708916.5108,1838947.721,1364608.579,21
+18573,709901.7476,1840691.877,1368423.64,21
+18574,709222.5182,1838361.18,1375581.758,21
+18575,709699.3276,1838744.325,1383055.553,21
+18576,710297.6647,1838353.522,1387621.059,21
+18577,710245.6702,1838073.366,2174638.81,21
+18578,710024.1157,1837233.622,1400214.068,21
+18579,709639.6979,1836950.532,1407394.449,21
+18580,711364.775,1837291.114,2220290.272,21
+18581,709618.7418,1836159.21,1418428.208,21
+18582,710602.9033,1835570.772,1423224.277,21
+18583,711128.4321,1835301.897,2242332.585,21
+18584,709426.8004,1835471.902,1435691.094,21
+18585,710780.2203,1835540.737,1437478.675,21
+18586,711504.921,1832803.75,2260632.085,21
+18587,710659.7183,1835801.026,1448803.547,21
+18588,710897.0975,1832536.87,1454036.363,21
+18589,711229.6652,1833800.654,2273595.086,21
+18590,710357.7967,1831832.153,1462724.095,21
+18591,711482.1408,1832992.859,1467660.646,21
+18592,710764.8861,1831453.395,2286900.434,21
+18593,711770.0954,1831723.553,1477251.343,21
+18594,711352.0332,1831038.535,1479576.631,21
+18595,711270.8556,1831522.142,2300476.715,21
+18596,711256.4597,1829494.355,1489243.278,21
+18597,711904.6613,1829821.834,1493272.362,21
+18598,711335.8183,1830185.768,2311828.198,21
+18599,711710.7771,1827897.39,1500185.242,21
+18600,711689.7431,1829320.504,1505064.828,15.6
+18601,0,0,814368.5688,15.6
+18602,0,35.56981356,118.6582231,15.6
+18603,0,0,0,15.6
+18604,0,0,814725.6178,15.6
+18605,0,0,0,15.6
+18606,0,0,0,15.6
+18607,0,0,1209179.667,15.6
+18608,0,3.552119441,0,15.6
+18609,0,0,0,15.6
+18610,0,132.1227612,0,15.6
+18611,339282.6506,0,0,15.6
+18612,0,0,0,15.6
+18613,0,0,0,15.6
+18614,0,0,0,15.6
+18615,428746.5425,236.6495911,0,15.6
+18616,0,0,0,15.6
+18617,0,0,0,15.6
+18618,0,0,0,15.6
+18619,0,0,0,15.6
+18620,0,0,0,15.6
+18621,0,0,0,15.6
+18622,0,0,0,15.6
+18623,0,0,0,15.6
+18624,0,0,0,15.6
+18625,0,0,0,15.6
+18626,0,0,0,15.6
+18627,0,33.79196293,0,15.6
+18628,0,0,0,15.6
+18629,0,0,0,15.6
+18630,0,0,0,15.6
+18631,0,0,0,15.6
+18632,0,0,0,15.6
+18633,0,0,0,15.6
+18634,0,0,0,15.6
+18635,0,0,0,15.6
+18636,0,0,0,15.6
+18637,0,3.075866545,763383.2178,15.6
+18638,0,0,0,15.6
+18639,0,81.3862262,0,15.6
+18640,0,0,789102.31,15.6
+18641,0,0,0,15.6
+18642,0,0,191722.9189,15.6
+18643,0,0,853907.3984,15.6
+18644,0,35.65828031,1225733.714,15.6
+18645,0,0,183919.3008,15.6
+18646,0,0,830757.3714,15.6
+18647,0,0,63848.5012,15.6
+18648,339304.2014,0,183140.9174,15.6
+18649,0,0,829290.2893,15.6
+18650,0,0,64394.57182,15.6
+18651,0,0,182557.791,15.6
+18652,0,0,827814.0469,15.6
+18653,0,0,64892.53592,15.6
+18654,0,0,182055.1959,15.6
+18655,0,0,826394.9679,15.6
+18656,0,0,65326.00443,15.6
+18657,0,0,181568.4717,15.6
+18658,0,0,824999.3805,15.6
+18659,0,0,65695.55368,15.6
+18660,0,0,181116.7296,15.6
+18661,0,0,823379.3965,15.6
+18662,0,235.2728647,66183.92547,15.6
+18663,0,0,181052.3889,15.6
+18664,0,0,822143.3128,15.6
+18665,0,0,66716.77444,15.6
+18666,0,0,180829.5878,15.6
+18667,0,0,821046.701,15.6
+18668,0,0,67221.67661,15.6
+18669,0,0,180604.1347,15.6
+18670,0,0,820009.7229,15.6
+18671,0,0,0,15.6
+18672,0,0,0,15.6
+18673,0,0,755497.5438,15.6
+18674,0,0,0,15.6
+18675,0,0,0,15.6
+18676,0,3.373704633,758163.3297,15.6
+18677,0,0,0,15.6
+18678,0,122.035822,0,15.6
+18679,0,0,760728.2974,15.6
+18680,0,0,0,15.6
+18681,0,0,1243302.06,15.6
+18682,0,43914.87927,740803.7245,15.6
+18683,0,2177.633723,0,15.6
+18684,0,4961.662719,0,15.6
+18685,0,17440.63735,744059.3455,15.6
+18686,339352.1779,12799.90826,0,15.6
+18687,0,12930.99658,0,15.6
+18688,0,13497.44395,747169.0749,15.6
+18689,0,13732.19386,0,15.6
+18690,0,13948.13669,0,15.6
+18691,0,14221.13684,938571.4724,15.6
+18692,0,14515.16067,107202.5383,15.6
+18693,0,14618.70914,206519.9144,15.6
+18694,0,14922.37907,863675.4036,15.6
+18695,0,15073.73116,119099.4637,15.6
+18696,0,15442.77493,209866.6863,15.6
+18697,0,15554.32608,860836.5354,15.6
+18698,0,15754.8978,115966.6318,15.6
+18699,0,16034.70862,209842.0288,15.6
+18700,0,16292.5918,859681.8819,15.6
+18701,0,16396.2031,116392.2986,15.6
+18702,0,16691.6356,209502.9185,15.6
+18703,0,16867.21285,858873.5456,15.6
+18704,0,17143.3917,117020.2306,15.6
+18705,0,17332.00199,209533.4591,15.6
+18706,0,17458.7294,858186.3346,15.6
+18707,0,17768.96103,117804.1029,15.6
+18708,0,17995.72333,209679.2027,15.6
+18709,0,18162.10816,857734.0437,15.6
+18710,0,18354.21864,118528.329,15.6
+18711,0,18523.74164,210009.7246,15.6
+18712,0,73.87811936,857603.792,15.6
+18713,0,0,119835.2851,15.6
+18714,0,0,210637.8535,15.6
+18715,0,0,857522.3536,15.6
+18716,0,78654.90731,120732.1935,15.6
+18717,0,0,211220.9127,15.6
+18718,0,9988.099828,857440.5777,15.6
+18719,0,29273.35004,1177791.349,15.6
+18720,0,18954.10524,204479.3594,15.6
+18721,0,21233.83752,720914.3995,15.6
+18722,0,21337.29605,61227.79034,15.6
+18723,0,21428.91961,172089.6894,15.6
+18724,339415.3573,21589.17131,791410.2481,15.6
+18725,0,21555.80996,70529.1264,15.6
+18726,31579.42658,21632.99157,326100.0813,15.6
+18727,2346.987256,21674.45722,903987.3968,15.6
+18728,4134.207766,21833.99729,188058.731,15.6
+18729,11233.64434,21829.94753,258866.9495,15.6
+18730,9815.219156,21882.86017,919916.8299,15.6
+18731,8906.604052,21922.00111,198220.1586,15.6
+18732,9379.71247,22103.4615,251291.9446,15.6
+18733,9468.760878,22051.06602,924978.647,15.6
+18734,9520.483659,22150.27366,200345.0472,15.6
+18735,9590.797856,22169.8896,252936.0146,15.6
+18736,9638.132675,22302.5288,928637.5281,15.6
+18737,9745.842176,22307.80853,202524.0334,15.6
+18738,9789.481729,22328.35634,254755.4667,15.6
+18739,9844.241531,359169.7726,932151.5632,15.6
+18740,9916.532149,45054.72284,204649.7285,15.6
+18741,9994.745611,72901.24403,256619.0943,15.6
+18742,10057.61104,149407.6586,935486.6679,15.6
+18743,10093.72479,127267.4171,206681.9616,15.6
+18744,10189.21972,122513.5896,258516.3643,15.6
+18745,10223.41633,126747.3594,938607.9605,15.6
+18746,10314.16956,104296.0135,208737.1226,15.6
+18747,10364.59576,105369.7265,260288.8072,15.6
+18748,10456.34899,105622.441,941561.1186,15.6
+18749,10464.84122,190649.0057,210670.9554,15.6
+18750,10569.94864,110549.9061,262018.9156,15.6
+18751,10594.42569,121104.9304,867259.7946,15.6
+18752,10679.91329,139920.4769,135038.4442,15.6
+18753,10746.87889,130573.2205,223758.9172,15.6
+18754,10796.80422,132778.174,867362.6949,15.6
+18755,10878.32766,133695.8306,136009.7826,15.6
+18756,0,134077.3953,0,15.6
+18757,0,135194.973,735233.8745,15.6
+18758,0,135114.907,1058738.914,15.6
+18759,0,136521.9927,0,15.6
+18760,0,136712.6379,969803.4365,15.6
+18761,0,137556.2652,119485.2482,15.6
+18762,339416.5789,138138.9631,212904.5238,15.6
+18763,50152.44092,138779.2219,871122.0896,15.6
+18764,0,139620.6464,136484.4222,15.6
+18765,2614.368524,139915.4369,224339.4786,15.6
+18766,16559.5495,140740.1576,860017.1474,15.6
+18767,11821.00889,141204.8268,138749.8108,15.6
+18768,11282.77366,142124.0647,224666.4098,15.6
+18769,11765.7042,23897.27633,860769.8764,15.6
+18770,11942.34875,23865.41654,139728.9066,15.6
+18771,11879.21403,23939.57885,225333.452,15.6
+18772,11974.11176,24079.67255,861719.1599,15.6
+18773,12018.35716,23990.78526,140641.7334,15.6
+18774,12080.17534,24003.19728,226299.0681,15.6
+18775,12101.6668,24103.01027,862581.7427,15.6
+18776,12178.60734,24181.71696,141712.4319,15.6
+18777,12205.78874,555491.0761,227237.3875,15.6
+18778,12303.84149,24193.73566,863530.3761,15.6
+18779,12292.58741,35598.41609,142760.4941,15.6
+18780,12346.35938,170973.4615,228188.221,15.6
+18781,12394.91263,128459.7267,864513.6282,15.6
+18782,12343.89731,208731.378,143736.1939,15.6
+18783,12426.03466,129387.2982,229138.6398,15.6
+18784,12466.05613,133970.3134,865297.6206,15.6
+18785,12457.09005,156598.1545,144856.3983,15.6
+18786,12523.02333,144299.1488,229988.1813,15.6
+18787,12562.72379,145154.2499,866074.724,15.6
+18788,12565.08706,145457.6333,145979.6033,15.6
+18789,12650.46673,144228.5257,230696.3911,15.6
+18790,12654.20805,143805.6365,720794.5077,15.6
+18791,12681.2243,143558.1628,0,15.6
+18792,12723.15226,142873.6101,0,15.6
+18793,0,142573.3875,998459.8358,15.6
+18794,0,141652.6466,129689.5856,15.6
+18795,0,141132.6847,222895.3872,15.6
+18796,0,141051.6601,884627.2821,15.6
+18797,0,140228.7507,1181030.656,15.6
+18798,55716.21202,139887.3715,228099.7808,15.6
+18799,0,138798.114,855065.5953,15.6
+18800,342005.8185,138856.8704,147756.5215,15.6
+18801,19962.94667,138242.1594,228727.4077,15.6
+18802,12380.90104,137405.6992,856633.5884,15.6
+18803,12814.77469,136884.909,148785.9864,15.6
+18804,13146.04549,136617.9082,229582.5342,15.6
+18805,13164.02654,135565.3116,858170.0983,15.6
+18806,13229.42017,135668.2243,149883.4202,15.6
+18807,13212.45659,22134.70185,230569.6731,15.6
+18808,13281.27866,22204.57314,859665.2899,15.6
+18809,13299.61447,22043.05882,151015.3757,15.6
+18810,13311.20525,21942.63816,231535.7929,15.6
+18811,13330.83144,21922.83252,861138.4566,15.6
+18812,13381.21043,79.35700309,152116.809,15.6
+18813,13417.58788,0,232569.1992,15.6
+18814,13407.6626,0,862446.638,15.6
+18815,13486.68252,81378.78591,153262.9285,15.6
+18816,13469.11855,469452.5703,233523.8491,15.6
+18817,13497.56927,12217.55381,863719.622,15.6
+18818,13528.45861,64147.85799,154412.7782,15.6
+18819,13568.41995,158209.7506,234450.9435,15.6
+18820,13565.56094,137270.8463,864920.6462,15.6
+18821,13632.8591,120805.6914,155527.3911,15.6
+18822,13615.53446,126489.5875,235333.1288,15.6
+18823,13677.68767,125629.7475,710445.1199,15.6
+18824,13661.21906,125265.8722,0,15.6
+18825,13713.42713,124253.8356,0,15.6
+18826,13765.57607,123245.3888,1006628.015,15.6
+18827,13713.44832,122602.2314,141185.7565,15.6
+18828,0,122091.1797,224356.6282,15.6
+18829,0,121394.2095,886702.3813,15.6
+18830,0,119987.3075,158235.8526,15.6
+18831,0,119365.2879,240325.2929,15.6
+18832,0,119204.7316,872083.2157,15.6
+18833,62664.24194,117674.8107,160892.22,15.6
+18834,0,117171.174,240297.6555,15.6
+18835,1935.052706,116030.1485,872571.9517,15.6
+18836,21815.04968,115645.9682,161711.3115,15.6
+18837,13287.34703,114136.9034,1248493.857,15.6
+18838,353232.2672,113416.8698,856644.556,15.6
+18839,14086.49812,112321.0996,159024.6916,15.6
+18840,14063.01242,110369.0385,234462.2245,15.6
+18841,14143.31804,114417.5909,858507.9459,15.6
+18842,14175.26489,117464.4587,160269.9868,15.6
+18843,14191.40303,119767.7497,235657.3135,15.6
+18844,14254.09599,122825.1648,860407.2674,15.6
+18845,14274.46079,104172.5634,161371.5691,15.6
+18846,14318.92266,0,237035.6381,15.6
+18847,14372.14185,0,862101.4725,15.6
+18848,14386.99626,78441.37897,162692.2715,15.6
+18849,14416.43724,320.3681217,238123.9473,15.6
+18850,14497.94057,15721.66385,863870.534,15.6
+18851,14497.95012,29122.25724,163814.5881,15.6
+18852,14513.61521,21422.96731,239396.161,15.6
+18853,14581.2392,22841.29343,865421.7372,15.6
+18854,14644.18716,543350.2948,165042.406,15.6
+18855,14604.10002,23390.29198,240504.0233,15.6
+18856,14712.41648,68195.50834,701887.9515,15.6
+18857,14719.58741,209524.3793,0,15.6
+18858,14736.22415,156840.5824,0,15.6
+18859,14795.10634,156914.3174,1013370.062,15.6
+18860,14824.77438,162956.574,156581.0785,15.6
+18861,14836.67266,165218.7853,231082.579,15.6
+18862,14898.09259,166880.9964,887530.7419,15.6
+18863,0,169803.3735,168782.6092,15.6
+18864,0,171661.3362,246624.7903,15.6
+18865,0,174329.6615,874303.5018,15.6
+18866,0,176545.7214,170849.1647,15.6
+18867,63354.06978,179002.2603,246864.4235,15.6
+18868,0,181176.5659,875069.8167,15.6
+18869,3108.210794,183714.4033,171697.2778,15.6
+18870,24795.66361,186116.1214,247539.5581,15.6
+18871,13259.21074,188106.6583,875862.9196,15.6
+18872,15245.24032,191014.2156,172772.5777,15.6
+18873,15307.70708,192897.323,248222.7188,15.6
+18874,15287.04261,195517.616,876803.1829,15.6
+18875,15381.20802,197534.7979,173696.8144,15.6
+18876,354952.2446,200258.0985,249137.3965,15.6
+18877,15401.85193,202475.3172,877713.4584,15.6
+18878,15461.98278,175592.8349,1175181.243,15.6
+18879,15442.28497,177718.8668,1895704.446,15.6
+18880,15507.82838,268568.9651,1872768.52,15.6
+18881,15509.81929,190305.7777,1204167.58,15.6
+18882,15550.05677,211946.1054,1257342.625,15.6
+18883,15568.65631,220840.6589,2004171.96,15.6
+18884,15617.32748,30486.99109,1270737.947,15.6
+18885,15587.2176,31172.7132,1284616.382,15.6
+18886,15704.82871,31436.86842,1982015.315,15.6
+18887,15648.91819,711201.5213,1298486.227,15.6
+18888,15702.92655,39347.56356,1299175.476,15.6
+18889,15736.34305,187145.8138,1823473.523,15.6
+18890,15749.34751,286854.8026,1138689.236,15.6
+18891,15769.6394,226262.3469,1139075.35,15.6
+18892,15842.01228,238159.9024,2150465.617,15.6
+18893,15790.12495,240342.2607,1326907.328,15.6
+18894,15862.41647,242913.3389,1300775.598,15.6
+18895,15894.64466,245026.3309,2036262.858,15.6
+18896,15875.32957,247573.2402,1333566.377,15.6
+18897,0,249882.7937,1333727.03,15.6
+18898,0,251992.5481,2029557.372,15.6
+18899,0,254547.4696,1343729.919,15.6
+18900,0,256802.0647,1342544.226,15.6
+18901,68284.08052,256968.6006,2043632.114,15.6
+18902,0,257092.4407,1355428.643,15.6
+18903,4734.712664,257729.1748,1355429.758,15.6
+18904,24841.31974,257777.1837,2051032.6,15.6
+18905,14705.75878,258197.1457,1365897.051,15.6
+18906,15946.39372,257926.9607,1364919.214,15.6
+18907,16162.03783,258444.6122,2060048.432,15.6
+18908,16141.8418,258659.1264,1375537.952,15.6
+18909,16128.06668,259081.6294,250435.5141,15.6
+18910,16108.87256,223794.8377,868940.8777,15.6
+18911,16162.09512,224124.6583,181758.0694,15.6
+18912,16064.08669,329623.4863,251760.9865,15.6
+18913,16128.12284,241785.0745,870986.1255,15.6
+18914,355720.7786,252207.1041,182972.9044,15.6
+18915,16057.61535,266926.6027,253091.7843,15.6
+18916,16109.04419,259833.426,2320894.679,15.6
+18917,16077.95121,35571.81805,1210875.774,15.6
+18918,16070.60993,35616.39141,1261875.779,15.6
+18919,16077.97891,35674.67811,2414017.832,15.6
+18920,16057.79612,850063.0672,1313113.587,15.6
+18921,16065.21535,109288.8201,1321783.087,15.6
+18922,16056.86974,139974.054,1156486.616,15.6
+18923,16032.11833,353580.9107,1374399.946,15.6
+18924,16072.69764,248187.07,1438393.771,15.6
+18925,15978.82014,262318.5593,1320528.176,15.6
+18926,16052.46873,264073.1235,1326967.098,15.6
+18927,16032.17427,263090.8586,1351053.284,15.6
+18928,15999.17044,264118.3182,1349381.964,15.6
+18929,16034.21066,263914.6429,1355348.091,15.6
+18930,15978.88989,263630.9178,1361463.206,15.6
+18931,0,264124.6326,1366473.915,15.6
+18932,0,264907.7562,1372409.88,15.6
+18933,0,264121.6648,1376063.66,15.6
+18934,0,264695.2509,2034558.74,15.6
+18935,68841.17685,264868.4654,1427108.516,15.6
+18936,0,265198.4887,1401015.475,15.6
+18937,4201.861798,264941.596,1403503.919,15.6
+18938,24763.07283,265472.1062,1406637.816,15.6
+18939,14640.25093,265236.9287,1410053.045,15.6
+18940,15763.93432,265748.9423,1412244.72,15.6
+18941,15973.52529,265778.0227,1415475.17,15.6
+18942,15970.01151,229907.0151,1418420.344,15.6
+18943,15907.22283,229498.1635,1420577.955,15.6
+18944,15970.04132,337451.8992,1425808.805,15.6
+18945,15908.18313,248894.6468,1495645.373,15.6
+18946,15929.55913,258843.5751,203062.2451,15.6
+18947,15916.65543,272876.8135,391363.8766,15.6
+18948,15896.309,266131.6778,327755.7264,15.6
+18949,15897.23186,267838.7351,282302.0507,15.6
+18950,15909.25592,36464.4833,294745.8353,15.6
+18951,15876.95133,36447.84349,2149693.172,15.6
+18952,15877.96958,36573.97403,1201508.401,15.6
+18953,355543.8717,878421.224,1290010.411,15.6
+18954,15870.48194,123214.6646,1271908.745,15.6
+18955,15839.26106,128311.0169,1203305.761,15.6
+18956,15870.51063,367853.8556,1511483.493,15.6
+18957,15824.4043,252204.3597,1405851.367,15.6
+18958,15845.65963,268214.8788,1395116.048,15.6
+18959,15804.01979,268694.8048,1432651.45,15.6
+18960,15832.66757,268924.3967,1427803.478,17.8
+18961,906712.1497,1430837.146,3575784.273,17.8
+18962,730243.0654,1372862.378,2637776.19,17.8
+18963,314536.3231,245648.878,2309700.861,17.8
+18964,151343.1042,604885.8471,1970418.348,17.8
+18965,322081.6685,673281.3379,1845398.195,17.8
+18966,236896.2529,527347.2002,1896378.666,17.8
+18967,328607.2451,568193.6716,1902061.719,17.8
+18968,285425.4551,548010.8824,1858981.209,17.8
+18969,261036.3478,548015.9582,1862301.437,17.8
+18970,280859.4243,545709.6096,1863026.374,17.8
+18971,275325.6246,543004.2882,1862890.806,17.8
+18972,274532.3558,540957.598,1864090.027,17.8
+18973,273879.9849,539541.7038,1863491.67,17.8
+18974,274631.0768,453491.9119,1864447.696,17.8
+18975,273522.0743,452360.9131,1862670.355,17.8
+18976,273817.8522,594857.2652,1863617.662,17.8
+18977,273434.3997,552858.7913,1862082.295,17.8
+18978,273206.2647,514582.0746,1861958.676,17.8
+18979,273350.8808,541789.8165,1862014.874,17.8
+18980,273094.798,530917.2618,1861399.686,17.8
+18981,273011.6523,525054.4262,357349.4737,17.8
+18982,273257.1235,527917.5962,351534.4048,17.8
+18983,272536.0578,105754.7775,2687310.876,17.8
+18984,273220.9047,106030.3461,1980437.355,17.8
+18985,272972.1012,1182929.419,1565365.246,17.8
+18986,272768.5593,361456.5704,1665801.78,17.8
+18987,273985.9937,571930.5643,1598392.962,17.8
+18988,273970.8131,503796.1325,1887542.649,17.8
+18989,273501.4755,538184.8121,1868179.571,17.8
+18990,274218.5003,520669.4771,1814028.406,17.8
+18991,37939.14231,495291.3779,1817212.871,17.8
+18992,377712.4251,494461.1361,1822914.028,17.8
+18993,37977.67324,493574.2354,1822264.608,17.8
+18994,777420.2562,565593.066,1821296.255,17.8
+18995,193528.0632,494782.2389,1821887.493,17.8
+18996,187908.779,511847.5365,1826155.774,17.8
+18997,292353.5443,515437.186,1822757.446,17.8
+18998,232242.0902,509424.3405,1825027.815,17.8
+18999,325116.0378,509054.8599,2728898.685,17.8
+19000,278375.0312,508449.8401,1793782.045,17.8
+19001,262860.5095,507414.0168,1796958.474,17.8
+19002,279535.27,506140.0607,1798936.456,17.8
+19003,274979.3016,505732.6916,1800745.642,17.8
+19004,274765.266,503860.7405,1802993.937,17.8
+19005,274966.5318,504190.4342,1804038.19,17.8
+19006,275638.2112,424609.2753,1804190.053,17.8
+19007,274789.6505,423636.7458,1804754.147,17.8
+19008,276757.4108,564031.0635,1805183.667,17.8
+19009,277955.6952,511624.6275,1804339.862,17.8
+19010,277249.4411,489890.2145,1805110.573,17.8
+19011,277645.5348,506620.0648,1803649.131,17.8
+19012,278463.8212,496195.4487,1803639.009,17.8
+19013,277826.1786,498324.8748,353809.2743,17.8
+19014,278797.2671,496426.6287,348752.7862,17.8
+19015,278586.399,100426.9403,2709390.075,17.8
+19016,279391.4534,100224.8642,1776652.836,17.8
+19017,278810.7823,1158366.829,1575156.508,17.8
+19018,279652.2479,301028.4652,1623247.64,17.8
+19019,279914.1341,523871.4753,1528736.018,17.8
+19020,279818.2134,492579.3232,1835234.524,20
+19021,1778243.529,2613723.376,3116470.989,20
+19022,1075676.813,2627673.548,3113651.3,20
+19023,781260.1045,965251.0191,3067654.421,20
+19024,154623.5258,789057.6357,2578862.398,20
+19025,847372.2021,1022691.25,2438311.829,20
+19026,669383.0892,1256021.058,2663872.725,20
+19027,1060540.88,1016660.143,2563689.452,20
+19028,593179.1067,1063273.739,2455529.065,20
+19029,603513.6557,1062979.7,2518679.514,20
+19030,677291.5632,1058659.362,2474877.036,20
+19031,645297.2228,1054600.582,2453635.016,20
+19032,646101.1726,1052464.801,2466780.443,20
+19033,649614.2423,1048329.292,2459622.504,20
+19034,637380.9463,1046202.823,2460454.412,20
+19035,641870.4841,1043939.442,2455030.502,20
+19036,636481.0603,1040447.026,2460027.057,20
+19037,635458.7673,1040431.011,3321991.97,20
+19038,634851.9265,896382.112,2419572.633,20
+19039,630128.3226,1112708.25,2425593.892,20
+19040,629500.1533,1035613.321,2428526.67,20
+19041,627550.5384,1018792.298,2429143.032,20
+19042,626551.8009,1034251.257,2435378.595,20
+19043,624716.5188,1026644.227,2435395.927,20
+19044,622352.1433,1024897.751,2438589.579,20
+19045,622121.1732,1022644.625,523419.1911,20
+19046,620583.1591,1018675.112,520787.442,20
+19047,618989.6235,179210.6609,2889537.534,20
+19048,618310.6573,178839.4871,2802265.106,20
+19049,616833.4591,1262653.875,2377843.485,20
+19050,615513.6664,1367783.919,2187820.177,20
+19051,595921.1436,778271.1213,2367186.046,20
+19052,594426.8371,1084055.381,2327060.357,20
+19053,593234.1004,1012501.917,2280004.194,20
+19054,594280.0855,1012564.424,2513599.042,20
+19055,94077.09681,964434.2957,2418017.938,20
+19056,142175.9586,965745.5981,2416845.153,20
+19057,917347.9468,1057430.845,2437030.749,20
+19058,648179.413,1005529.674,2429360.203,20
+19059,565735.4235,996959.996,2433306.345,20
+19060,404028.1469,1005244.474,2434879.023,20
+19061,588136.2937,995149.6365,2436651.813,20
+19062,655386.5065,993065.9055,2465652.418,20
+19063,944152.3618,992089.5269,2454772.988,20
+19064,607333.7169,991201.5474,2458540.203,20
+19065,613713.0517,987905.8865,2464448.027,20
+19066,602342.761,985030.3681,2464516.214,20
+19067,603604.9009,984617.3616,2466483.795,20
+19068,601816.4177,983033.5785,2470088.864,20
+19069,601143.3202,851252.1202,2467796.197,20
+19070,598785.1738,1053548.773,2472987.621,20
+19071,600035.962,973983.0497,2475068.263,20
+19072,597653.7846,970321.7085,2474034.228,20
+19073,598449.1919,980195.2988,2478037.972,20
+19074,595953.2221,975162.7409,2477339.851,20
+19075,596961.2746,975142.796,2478588.868,20
+19076,594418.3221,971030.8309,3357579.192,20
+19077,595352.2701,973453.5458,509908.9537,20
+19078,594237.7461,969321.8302,507924.4459,20
+19079,593131.274,169088.1956,2894624.697,20
+19080,592790.9176,169263.6509,2809392.224,21
+19081,2316808.846,2969589.714,4692495.498,21
+19082,1949037.431,2594435.781,4018281.075,21
+19083,565820.5392,1032047.161,2405592.153,21
+19084,524900.7751,796482.3601,2695939.723,21
+19085,718847.4833,1538759.278,2956063.349,21
+19086,917733.9992,1164969.114,2816909.153,21
+19087,711289.5548,1207120.55,2762377.278,21
+19088,757485.8125,1182372.735,2765078.287,21
+19089,755759.6819,1176102.396,2781211.724,21
+19090,751880.3758,1175556.468,2775142.906,21
+19091,748477.6415,1172420.649,2770880.571,21
+19092,748260.4453,1165790.377,2770229.312,21
+19093,742838.1194,1165252.559,2768163.136,21
+19094,742989.0332,1162811.826,2767783.332,21
+19095,739366.9624,1158130.096,2761899.713,21
+19096,737901.9558,1156925.188,2760198.592,21
+19097,734645.5124,1155233.944,2758644.002,21
+19098,734932.9481,1150255.104,2755676.323,21
+19099,730108.2581,1150157.018,2751893.021,21
+19100,729604.682,1145625.079,2752965.415,21
+19101,728233.9379,1145272.298,2747089.181,21
+19102,726268.7051,1142269.629,2748055.68,21
+19103,724011.6396,1141333.222,2739951.449,21
+19104,722409.3377,1137374.686,2744584.26,21
+19105,721631.9792,1136404.282,2736801.067,21
+19106,718958.7152,1135069.86,2738823.576,21
+19107,718273.4638,1131147.522,2734539.91,21
+19108,717107.4437,1131321.162,2732075.859,21
+19109,715146.0371,1129014.158,2732172.046,21
+19110,713213.573,1126928.596,2727540.997,21
+19111,712797.1377,1124771.351,2728524.856,21
+19112,711802.8558,1122110.749,2726485.654,21
+19113,710367.1273,1117571.678,2722034.245,21
+19114,708666.2963,1116314.699,2725177.045,21
+19115,706901.011,1115787.684,2719160.442,21
+19116,706487.699,1110134.633,2718542.481,21
+19117,705614.246,1112126.422,2718421.755,21
+19118,704794.2256,1107941.064,2716895.417,21
+19119,701694.3687,1105772.49,2715458.248,21
+19120,703070.5001,1104774.646,2712885.407,21
+19121,700754.7748,1102240.639,2712887.373,21
+19122,699559.2295,1101627.332,2711892.963,21
+19123,698903.1649,1098583.547,2711302.014,21
+19124,698182.648,1096625.891,2708095.221,21
+19125,697003.8348,1096306.483,2708510.952,21
+19126,695730.2861,1093766.483,2707946.079,21
+19127,695449.5668,1091664.689,2706653.664,21
+19128,693556.4465,1090885.425,2706383.146,21
+19129,693025.9007,1088503.358,2705098.165,21
+19130,692483.167,1087877.002,2705280.021,21
+19131,691289.0683,1086092.365,2701592.12,21
+19132,690580.2825,1083896.235,2701866.396,21
+19133,690375.8348,1083142.957,2701268.89,21
+19134,687836.6828,1081243.509,2703335.975,21
+19135,689006.8808,1080800.349,2698876.699,21
+19136,686417.5181,1077198.805,2699682.605,21
+19137,687871.504,1078192.681,2700063.786,21
+19138,685192.2703,1075035.427,2699080.574,21
+19139,684701.9906,1075669.926,2698313.516,21
+19140,684644.9776,1071973.81,2696556.991,21
+19141,882248.5053,2174214.122,2696637.204,21
+19142,881162.8911,2173722.25,2694483.386,21
+19143,880532.1397,2171385.38,2690453.269,21
+19144,879163.6544,2170063.139,2692167.071,21
+19145,879957.6924,2169467.649,2686707.319,21
+19146,877957.0412,2169604.549,2688874.314,21
+19147,876944.7977,2165801.937,2683858.763,21
+19148,877191.4425,2169317.168,2683030.59,21
+19149,875730.5775,2166392.538,2683328.74,21
+19150,875529.9885,2165845.274,2679544.504,21
+19151,874774.206,2165015.879,2678187.782,21
+19152,873482.8562,2164571.768,2679624.262,21
+19153,873492.3054,2169953.761,2674948.705,21
+19154,872601.2508,2180459.667,2675452.692,21
+19155,872244.5781,2170577.351,2672668.102,21
+19156,870576.6712,2172995.969,2672418.199,21
+19157,871945.7095,2169817.714,2671377.359,21
+19158,869281.8926,2171931.872,2669165.829,21
+19159,870649.675,2169047.029,2669679.556,21
+19160,867453.9151,2168138.375,2664403.803,21
+19161,868977.6846,2168698.16,2666704.176,21
+19162,867219.2932,2167769.297,2665289.305,21
+19163,866981.1041,2166556.95,2662646.564,21
+19164,866615.6563,2165375.156,2661374.05,21
+19165,865699.3543,2166032.752,2660851.083,21
+19166,865794.7711,2164788.848,2660339.514,21
+19167,864603.3853,2163334.926,2656814.888,21
+19168,864492.6965,2163487.109,2657842.512,21
+19169,863224.7993,2161999.066,2654524.565,21
+19170,864051.4751,2161328.091,2656751.205,21
+19171,861572.6795,2160027.657,2653056.718,21
+19172,862749.8112,2161281.014,2651636.516,21
+19173,862137.3645,2159141.35,2652014.111,21
+19174,860282.3558,2158109.722,2649145.715,21
+19175,860810.013,2158247.86,2650111.657,21
+19176,859948.2848,2157574.307,2647689.609,21
+19177,859985.4417,2155685.571,2646201.087,21
+19178,858688.0185,2157536.351,2644983.363,21
+19179,857820.5086,2153408.265,2644170.931,21
+19180,859500.8442,2155197.565,2642788.493,21
+19181,856742.5272,2153814.986,2641595.681,21
+19182,856945.7254,2155104.447,2641610.652,21
+19183,856551.8821,2153418.441,2640624.728,21
+19184,857230.9509,2153238.159,2639905.957,21
+19185,854146.0672,2151739.127,2636960.014,21
+19186,856423.9396,2152269.861,2637425.286,21
+19187,854199.0809,2151311.104,2635552.097,21
+19188,854098.61,2149783.325,2597440.896,21
+19189,854450.4505,2150040.698,2590835.003,21
+19190,850851.303,2148138.808,2586205.167,21
+19191,850660.6255,2146916.291,2583754.783,21
+19192,849855.0618,2147439.261,2578123.863,21
+19193,848890.4951,2146289.293,2574871.308,21
+19194,847128.2433,2145975.318,2570705.461,21
+19195,849645.1239,2145176.134,2568309.283,21
+19196,845478.2378,2144893.538,2563945.16,21
+19197,847036.7485,2143274.67,2561176.739,21
+19198,845232.7825,2144273.074,2554824.005,21
+19199,845826.0968,2142720.141,2553509.545,21
+19200,843421.261,2143359.495,2549811.956,21
+19201,784920.8769,2076477.286,2430663.174,21
+19202,778351.1714,2074762.663,2417052.734,21
+19203,776604.2335,2071430.726,2401219.655,21
+19204,775198.7053,2073051.571,2392800.803,21
+19205,771292.5453,2071410.563,2381679.945,21
+19206,770691.9758,2069892.347,2375279.119,21
+19207,768625.2717,2072047.686,2364014.827,21
+19208,766236.2373,2068531.764,2354313.888,21
+19209,765279.3913,2070961.698,2347979.011,21
+19210,762778.6269,2069036.555,2338808.515,21
+19211,761992.5541,2072197.653,2329545.02,21
+19212,758874.6128,2069756.602,2321620.88,21
+19213,758765.6571,2070963.295,2316186.75,21
+19214,755329.3663,2068969.716,2304374.412,21
+19215,755431.0491,2069696.81,2299991.838,21
+19216,752340.2089,2071767.379,2290277.522,21
+19217,751483.6704,2066700.795,2285901.026,21
+19218,749125.8311,2069761.898,2275836.44,21
+19219,748662.548,2066911.768,2268980.232,21
+19220,745346.8211,2070018.023,2261490.193,21
+19221,745692.6843,2068896.733,2254032.281,21
+19222,742830.7293,2066616.276,2244878.563,21
+19223,741401.0536,2070436.533,2238173.614,21
+19224,739674.9466,2066608.464,2227584.835,21
+19225,739311.1198,2069047.611,2224348.841,21
+19226,736337.5289,2068369.601,2212948.529,21
+19227,735079.7525,2069001.355,2209331.399,21
+19228,734147.391,2068516.791,2200023.809,21
+19229,732791.713,2069323.948,2192511.55,21
+19230,730731.031,2068453.851,2187070.261,21
+19231,729132.9982,2069481.255,2178048.734,21
+19232,727497.321,2067700.999,2172513.606,21
+19233,726821.2209,2070704.657,2167782.568,21
+19234,723438.2545,2069899.063,2156257.088,21
+19235,723769.6309,2067738.255,2153424.08,21
+19236,720422.6288,2071424.974,2145475.685,21
+19237,720450.378,2068641.784,2139578.958,21
+19238,718282.4066,2071345.754,2134347.518,21
+19239,717047.0402,2069618.899,2123774.055,21
+19240,715750.2787,2072594.73,2122898.968,21
+19241,714158.141,2072475.59,2115168.36,21
+19242,713223.7928,2073602.013,2108472.406,21
+19243,711271.2658,2072062.791,2103119.643,21
+19244,708383.0154,2073362.934,2095103.374,21
+19245,709313.4783,2073664.938,2090634.793,21
+19246,706123.2245,2075257.778,2080824.668,21
+19247,704758.4702,2069349.613,2077029.282,21
+19248,704558.3154,2074103.414,2071145.94,21
+19249,700556.2141,2073559.418,2063286.477,21
+19250,701309.4891,2070532.467,2057570.883,21
+19251,698798.1429,2074127.562,2050419.308,21
+19252,697616.6881,2074091.46,2044992.624,21
+19253,695369.157,2072929.501,2038198.673,21
+19254,694867.0538,2074746.861,2032199.247,21
+19255,692647.9992,2074462.336,2025604.524,21
+19256,691091.5567,2073896.191,2019403.125,21
+19257,689986.5063,2074918.791,2012186.475,21
+19258,688288.7724,2075139.697,2007385.586,21
+19259,686677.3921,2076148.599,1999721.787,21
+19260,686376.8235,2075821.293,1993997.371,21
+19261,683470.4687,2074858.813,1987143.658,21
+19262,683873.9426,2074871.687,1973625.97,21
+19263,681073.6688,2071542.937,1968703.962,21
+19264,682775.9651,2073442.284,1958451.927,21
+19265,680050.5359,2071088.871,1950696.176,21
+19266,681179.9133,2071710.987,1940390.994,21
+19267,679199.1929,2069543.298,1935381.17,21
+19268,678577.8847,2070055.018,1925893.838,21
+19269,677920.1213,2068286.398,1917456.973,21
+19270,677994.5209,2068385.286,1910984.678,21
+19271,676089.4825,2067432.209,1900940.999,21
+19272,675970.3433,2068256.064,1896288.109,21
+19273,675656.6559,2064645.942,1886750.957,21
+19274,675185.5386,2065696.579,1877924.026,21
+19275,672477.3503,2064836.618,1870715.486,21
+19276,674147.506,2063841.489,1866098.94,21
+19277,672164.8748,2063689.706,1854123.201,21
+19278,672064.1714,2062223.522,1849922.481,21
+19279,671813.4371,2060812.393,1840119.496,21
+19280,669290.5334,2063411.337,1833542.66,21
+19281,671390.5403,2057768.132,1825684.975,21
+19282,667745.8399,2062096.256,1818386.561,21
+19283,669455.1502,2057145.698,1810194.785,21
+19284,667779.9122,2058528.715,1802746.278,21
+19285,667029.7436,2058443.365,1794496.174,21
+19286,666657.2938,2056122.273,1791732.452,21
+19287,666416.0201,2056649.852,1781365.903,21
+19288,665171.8986,2054577.857,1775526.703,21
+19289,664293.8658,2054688.145,1767441.46,21
+19290,664541.4479,2053670.584,1759961.437,21
+19291,663071.4233,2053677.414,1752171.281,21
+19292,662772.1509,2052735.224,1744803.018,21
+19293,662560.8939,2050715.232,1738242.987,21
+19294,662816.4625,2051077.564,1729431.781,21
+19295,660851.8145,2051221.211,1723928.954,21
+19296,660608.9706,2048043.324,1716282.843,21
+19297,661756.2481,2050258.292,1708060.228,21
+19298,660171.658,2047246.186,1701183.185,21
+19299,659026.7853,2047314.042,1694825.948,21
+19300,659401.3447,2045868.685,1685614.971,21
+19301,659754.4993,2045884.559,1680398.133,21
+19302,658325.6848,2045117.151,1671842.913,21
+19303,657503.633,2044535.115,1663748.393,21
+19304,657361.5721,2043679.513,1654230.035,21
+19305,658294.9068,2042747.797,1648597.974,21
+19306,657052.4208,2043113.721,1640557.754,21
+19307,655164.4,2041542.658,1634061.105,21
+19308,657618.8406,2041439.326,1626231.474,21
+19309,654562.0984,2040590.05,1620717.381,21
+19310,656326.0028,2038602.95,1611990.083,21
+19311,653838.2389,2038707.067,1604707.013,21
+19312,655361.6594,2037602.725,1598597.624,21
+19313,653581.3758,2036728.999,1592148.999,21
+19314,655418.3845,2035678.637,1583679.282,21
+19315,652390.9016,2034547.561,1576839.264,21
+19316,653086.8184,2033834.994,1571662.663,21
+19317,652807.2446,2031955.443,1562897.097,21
+19318,652598.7577,2032074.707,1557595.727,21
+19319,651403.1638,2029537.401,1549573.163,21
+19320,652770.6104,2026475.786,1542765.489,21
+19321,651340.447,2030013.846,1543146.208,21
+19322,650433.5112,2029232.033,1542601.456,21
+19323,649282.5438,2028700.182,1539525.542,21
+19324,649641.2832,2031239.79,1539754.191,21
+19325,647705.8693,2028106.934,1535926.37,21
+19326,646408.7717,2030482.95,1532442.338,21
+19327,646983.2789,2028748.048,1532044.229,21
+19328,645043.241,2029938.725,1528520.479,21
+19329,643947.8828,2029792.119,1528568.369,21
+19330,643816.386,2028237.366,1525117.295,21
+19331,642380.6562,2030191.684,1524680.662,21
+19332,642391.0483,2028814.019,1522249.332,21
+19333,641042.6901,2029994.778,1518111.72,21
+19334,640495.0482,2028642.65,1518823.277,21
+19335,638596.9251,2028679.087,1516496.491,21
+19336,638933.5738,2028907.136,1512434.044,21
+19337,637204.0386,2028820.797,1512415.533,21
+19338,637336.9677,2028861.555,1507753.01,21
+19339,635780.0018,2028399.538,1507321.145,21
+19340,635115.8968,2027410.351,1504760.313,21
+19341,635002.4263,2028949.501,1500801.281,21
+19342,632528.1449,2028814.982,1501669.44,21
+19343,633122.3986,2027398.578,1496750.184,21
+19344,631566.1441,2027149.983,1494424.229,21
+19345,630788.2865,2029419.217,1494571.7,21
+19346,629704.698,2026907.567,1488851.46,21
+19347,629508.2689,2027720.198,1488713.998,21
+19348,627602.5388,2027120.156,1486119.937,21
+19349,628533.7697,2028069.505,1482396.639,21
+19350,626203.839,2026944.811,1481277.414,21
+19351,625572.4262,2026581.772,1478065.042,21
+19352,624743.698,2024393.576,1477455.963,21
+19353,624585.7122,2026939.184,1474312.841,21
+19354,622095.1807,2025687.784,1472763.873,21
+19355,621912.5191,2025346.478,1471973.299,21
+19356,621191.563,2024850.64,1466782.775,21
+19357,620123.0342,2025763.446,1468455.817,21
+19358,619618.1334,2024730.404,1464823.533,21
+19359,616301.719,2024839.952,1462137.85,21
+19360,618009.4531,2024421.032,1461101.773,21
+19361,615259.0991,2025149.038,1459179.202,21
+19362,615580.1811,2023893.868,1457973.525,21
+19363,613318.4126,2025199.039,1455836.858,21
+19364,613391.2206,2023617.915,1455081.087,21
+19365,611627.1809,2023444.521,1453647.794,21
+19366,611196.2589,2024534.693,1452340.249,21
+19367,609729.7025,2013904.148,1451516.769,21
+19368,609484.2678,2009917.726,1451496.661,21
+19369,607217.4508,2009490.387,1452147.121,21
+19370,608149.3235,2010504.68,1447687.811,21
+19371,604462.063,2008138.481,1450707.115,21
+19372,606122.1993,2007143.485,1447177.148,21
+19373,603576.3815,2007370.177,1446937.962,21
+19374,602935.5983,2005974.145,1444142.668,21
+19375,601243.3107,2006144.722,1445943.49,21
+19376,601049.1253,2004825.738,1442975.409,21
+19377,599853.8519,2005248.454,1441700.089,21
+19378,598314.5353,2003461.482,1442183.694,21
+19379,598045.5537,2002828.714,1438301.534,21
+19380,596852.5922,2003726.215,1440921.602,21
+19381,595341.8067,1998261.787,1433143.561,21
+19382,595077.793,1996608.629,1425729.664,21
+19383,593286.9485,1993651.211,1423298.172,21
+19384,593224.6423,1988693.746,1415521.113,21
+19385,592488.5215,1987786.006,1413035.501,21
+19386,591595.5397,1983350.581,1406671.022,21
+19387,590929.0575,1980107.206,1403427.69,21
+19388,589880.066,1979240.075,1396430.598,21
+19389,589981.3568,1973393.868,1393785.927,21
+19390,588785.9556,1972127.78,1389112.099,21
+19391,587139.3618,1968222.867,1382503.214,21
+19392,587813.6794,1965938.983,1380432.329,21
+19393,586958.0789,1962733.149,1376496.639,21
+19394,584328.7479,1958542.58,1369817.69,21
+19395,585603.7432,1957126.361,1366365.188,21
+19396,585339.1378,1952459.277,1362770.849,21
+19397,582176.0772,1951044.417,1358146.545,21
+19398,584103.9648,1947118.265,1352844.034,21
+19399,581774.5444,1945667.108,1349390.057,21
+19400,581554.4014,1939300.982,1346283.132,21
+19401,581029.6875,1939730.047,1338704.031,21
+19402,579795.3657,1935162.867,1338387.882,21
+19403,579139.6394,1931182.914,1332786.455,21
+19404,578245.4968,1930570.54,1326550.681,21
+19405,577708.4707,1925040.381,1326128.54,21
+19406,578477.6827,1923655.714,1319065.853,21
+19407,574785.5819,1919117.539,1317009.678,21
+19408,576438.8927,1917663.584,1312102.822,21
+19409,574519.4377,1913495.186,1308687.717,21
+19410,574160.7312,1913637.215,1302910.496,21
+19411,574347.9143,1907477.511,1300392.399,21
+19412,573371.8195,1905943.859,1295220.064,21
+19413,571791.5901,1902434.941,1292343.998,21
+19414,573409.3495,1899200.638,1287494.173,21
+19415,570733.5704,1896411.211,1283721.8,21
+19416,571829.2637,1893440.43,1277876.351,21
+19417,571159.5382,1888797.339,1276514.57,21
+19418,569351.7661,1887030.423,1271490.002,21
+19419,571176.8053,1884381.287,1266116.754,21
+19420,569518.1406,1879745.281,1263752.365,21
+19421,568954.407,1877185.602,1258142.171,21
+19422,569734.5817,1874071.662,1256018.981,21
+19423,567205.6048,1868889.076,1250849.623,21
+19424,569249.7921,1867598.056,1246753.421,21
+19425,567224.2826,1861715.566,1241973.863,21
+19426,567708.735,1860800.283,1240318.707,21
+19427,566282.6919,1855547.338,1233859.256,21
+19428,567400.7009,1853734.57,1231049.325,21
+19429,565741.0654,1849731.815,1221992.15,21
+19430,565239.0032,1845574.845,1219193.889,21
+19431,566955.7548,1843887.356,1213913.686,21
+19432,563913.408,1839255.522,1211278.262,21
+19433,565313.8049,1835583.66,1205848.681,21
+19434,564187.5817,1833954.216,1202360.281,21
+19435,564732.4875,1828501.999,1197413.618,21
+19436,563751.384,1825765.442,1195553.861,21
+19437,563427.4288,1821748.145,1189615.381,21
+19438,562934.1875,1818826.643,1186363.23,21
+19439,563110.2557,1814680.386,1181581.229,21
+19440,562510.8947,1809656.883,1178041.662,21
+19441,625490.8826,1880026.378,1288326.708,21
+19442,630743.8494,1883603.261,1292471.733,21
+19443,629330.3229,1882876.977,1291243.182,21
+19444,631424.6934,1885554.962,1290806.396,21
+19445,632376.5733,1882954.064,1290397.876,21
+19446,631416.5656,1886265.885,1286486.395,21
+19447,633268.5746,1883351.629,1287026.455,21
+19448,632315.1607,1886971.513,1285217.998,21
+19449,633886.4344,1883878.313,1282594.129,21
+19450,634264.7134,1885609.417,2124248.326,21
+19451,633942.8393,1885863.185,1281428.524,21
+19452,635076.7058,1886157.675,1280685.084,21
+19453,635229.1147,1885259.101,2146285.311,21
+19454,635082.6588,1885991.856,1274577.883,21
+19455,636472.7555,1885667.582,1273438.843,21
+19456,634598.6217,1885290.254,2143321.321,21
+19457,637779.4094,1885927.321,1267064.836,21
+19458,636405.2263,1886856.955,1264875.069,21
+19459,637285.7142,1884405.109,2140776.796,21
+19460,637120.6112,1886442.78,1258822.026,21
+19461,637810.1383,1885940.753,1260784.178,21
+19462,637975.6526,1886240.924,2131551.449,21
+19463,638750.1823,1885428.846,1252273.671,21
+19464,638200.3183,1885021.41,1251229.146,21
+19465,639779.0271,1887405.129,2126147.906,21
+19466,638612.4807,1884137.143,1244347.505,21
+19467,639950.0847,1886609.723,1242843.625,21
+19468,638933.8491,1885501.469,2120345.263,21
+19469,640501.1763,1885664.927,1235832.502,21
+19470,640254.2011,1884779.737,1234788.977,21
+19471,640371.4786,2265642.586,2112748.109,21
+19472,640623.1979,1884967.073,1229758.419,21
+19473,640318.437,1887681.85,1225321.25,21
+19474,641703.0031,1886757.028,2109403.939,21
+19475,640613.5301,1887772.931,1219937.886,21
+19476,641281.7907,1887337.31,1219972.132,21
+19477,641008.1636,1889013.623,2101681.034,21
+19478,642662.7849,1887762.314,1213447.059,21
+19479,640741.8702,1888197.767,1211575.534,21
+19480,642760.0051,1888253.791,2096426.693,21
+19481,641455.7382,1889611.223,1205416.505,21
+19482,642931.8736,1888553.918,1202674.684,21
+19483,641537.1167,1891104.603,2089495.69,21
+19484,642552.713,1889584.825,1199707.917,21
+19485,643047.9291,1891817.762,1193865.843,21
+19486,642746.9694,1890809.966,2085625.445,21
+19487,641996.088,1892905.879,1189386.59,21
+19488,643329.9165,1891891.396,1189581.945,21
+19489,642889.308,1893647.449,2076619.279,21
+19490,643191.5802,1893454.595,1183849.908,21
+19491,642916.34,1893506.252,1179858.411,21
+19492,644160.1,1895846.596,2073025.75,21
+19493,643165.4864,1894507.581,1173829.138,21
+19494,643248.2128,1896906.119,1173707.178,21
+19495,644635.0638,1896503.392,2066543.246,21
+19496,644019.1574,2274671.021,1167046.36,21
+19497,642870.345,1898830.205,1164197.707,21
+19498,645122.1515,1897746.424,2059757.318,21
+19499,643581.2027,1898721.779,1160568.088,21
+19500,644132.1713,1900552.291,1157866.848,21
+19501,644998.5082,1899549.129,2054886.052,21
+19502,644419.4249,1902914.781,1158515.178,21
+19503,645658.175,1902976.752,1157605.674,21
+19504,645510.116,1902950.752,2059102.017,21
+19505,646271.9921,1905573.404,1157676.203,21
+19506,646408.2832,1906713.763,1160574.265,21
+19507,646305.9395,1906173.679,2061569.88,21
+19508,647279.4654,1908834.791,1157150.603,21
+19509,647127.7147,1909694.447,1162684.397,21
+19510,648011.8864,1909859.19,2061604.275,21
+19511,647876.2133,1911765.642,1160613.637,21
+19512,648471.981,1913666.801,1161477.104,21
+19513,649685.3634,1912418.827,2063882.72,21
+19514,647806.6502,1915807.14,1159585.652,21
+19515,649590.28,1915288.461,1161909.359,21
+19516,649480.7999,1917305.073,2064334.119,21
+19517,651011.0156,1919324.98,1161187.968,21
+19518,649985.1211,1918719.008,1161889.64,21
+19519,650390.1994,1920850.853,2065135.993,21
+19520,651990.1497,1922253.536,1160867.967,21
+19521,653280.4912,1922168.526,1163197.113,21
+19522,653204.8039,1924578.993,2064991.454,21
+19523,652727.8087,1924856.088,1161203.372,21
+19524,654057.4417,1926626.734,1162521.562,21
+19525,654943.6125,1928312.707,2065766.714,21
+19526,653460.6858,1927492.289,1161335.778,21
+19527,655088.7639,1931312.879,1161784.259,21
+19528,655822.3801,1929999.837,2067839.781,21
+19529,654095.5324,1932314.699,1159871.498,21
+19530,656249.8907,1934876.028,1160983.721,21
+19531,656605.5378,1933645.837,2067396.535,21
+19532,654948.4176,1936741.702,1159389.368,21
+19533,657879.7589,1935743.584,1163333.607,21
+19534,656253.8581,1939082.357,2063775.392,21
+19535,657765.0733,1939255.229,1160869.136,21
+19536,657893.0907,1939914.342,1160608.51,21
+19537,657106.0364,1942217.886,2065576.091,21
+19538,658352.0809,1941445.876,1159680.362,21
+19539,658743.4819,1944210.436,1160300.256,21
+19540,658612.5728,1945811.287,2065163.88,21
+19541,659252.5491,1945075.995,1159890.982,21
+19542,659255.132,1947645.341,1158076.301,21
+19543,659755.0871,1947734.56,2065775.68,21
+19544,659814.8216,1950374.293,1159917.758,21
+19545,660299.852,1950600.983,1157112.833,21
+19546,660264.2464,1951677.412,2065914.982,21
+19547,661501.4959,1953265.655,1158542.402,21
+19548,660702.3241,1954173.499,1158003.02,21
+19549,661577.5468,1954968.81,2065212.392,21
+19550,661090.8887,1957126.363,1157236.976,21
+19551,663555.5423,1956099.679,1157079.275,21
+19552,660001.0119,1959671.627,2065449.108,21
+19553,664145.3255,1960108.516,1156296.02,21
+19554,662090.1215,1960706.809,1157013.167,21
+19555,663733.2166,1962143.317,2063653.78,21
+19556,662767.6013,1962668.395,1156517.442,21
+19557,664808.0816,1965909.453,1157351.548,21
+19558,663217.5239,1965796.675,2063033.648,21
+19559,663919.6159,1966152.991,1156010.52,21
+19560,665251.7888,1969068.333,1156285.485,21
+19561,664237.3646,1965983.545,2061870.929,21
+19562,663490.6515,1967382.318,1150485.74,21
+19563,665313.5295,1966072.405,1148645.442,21
+19564,662844.6794,1963641.841,2054648.129,21
+19565,664290.6632,1964093.75,1141341.618,21
+19566,662648.2263,1962365.566,1141410.878,21
+19567,663312.5254,1961178.619,2044208.652,21
+19568,661999.4006,2338438.925,1136263.654,21
+19569,662860.905,1959891.616,1130808.43,21
+19570,660848.8005,1957510.759,2037220.371,21
+19571,662245.6776,1958043.832,1127004.808,21
+19572,661895.199,1956596.001,1122353.308,21
+19573,660215.1742,1956260.338,2031831.912,21
+19574,660822.1608,1953585.773,1116264.547,21
+19575,660302.3128,1953794.23,1117122.102,21
+19576,660232.5419,1953439.196,2021383.036,21
+19577,658740.1391,1951039.076,1111105.393,21
+19578,659362.0096,1950163.438,1106894.861,21
+19579,659668.5126,1949624.011,2016661.528,21
+19580,657973.378,1948632.093,1102123.669,21
+19581,658821.422,1946503.425,1099443.603,21
+19582,656562.9086,1946740.119,2010330.291,21
+19583,658657.2213,1946169.002,1093602.164,21
+19584,655771.9937,1944569.047,1092323.914,21
+19585,657899.7346,1942260.339,2004364.108,21
+19586,655291.228,1943063.085,1085459.088,21
+19587,657061.8607,1941621.287,1084597.548,21
+19588,654982.6826,2318650.797,1996634.29,21
+19589,655688.4301,1938306.526,1078838.845,21
+19590,655296.3408,1939961.786,1079067.277,21
+19591,652833.3889,1936556.738,1990266.31,21
+19592,656902.5937,1936481.15,1070504.614,21
+19593,652757.1201,1935610.567,1068295.57,21
+19594,654636.1661,1932244.259,1984392.278,21
+19595,654027.8086,1935397.632,1061438.859,21
+19596,654486.9127,1930312.716,1061016.423,21
+19597,653852.6293,1930437.374,1975244.942,21
+19598,653856.5529,1930124.938,1056030.16,21
+19599,653218.5619,1928472.23,1050155.999,21
+19600,653318.289,1926344.146,1969248.037,21
+19601,653817.4616,1926657.989,1044942.87,21
+19602,653420.2939,1924695.943,1043663.738,21
+19603,653298.1298,1923077.727,1960806.418,21
+19604,653206.2508,1923244.368,1037562.319,21
+19605,653237.1931,1921286.589,1033164.107,21
+19606,652929.6991,1919157.309,1954379.241,21
+19607,653231.3117,1920551.82,1027994.975,21
+19608,652732.2253,2294975.821,1026054.539,21
+19609,653280.6562,1917193.433,1946360.501,21
+19610,652581.0474,1915800.419,1019180.642,21
+19611,652874.6114,1913774.34,1016485.632,21
+19612,652547.792,1913978.656,1939354.298,21
+19613,652700.1134,1911489.596,1010959.319,21
+19614,652603.8845,1911281.661,1007698.675,21
+19615,652441.1673,1908798.745,1932353.878,21
+19616,652588.1075,1909437.879,1001068.668,21
+19617,652458.7153,1905691.676,999378.68,21
+19618,653163.11,1906684.133,1924392.447,21
+19619,652554.1637,1904543.443,991692.4123,21
+19620,652019.4205,1903749.191,992531.2231,21
+19621,653731.2442,1904198.943,1916284.862,21
+19622,653426.9844,1905643.265,989938.0451,21
+19623,654847.1038,1904186.006,1532353.133,21
+19624,655747.4611,1905963.603,970768.1501,21
+19625,654851.1965,1907168.667,976525.6648,21
+19626,657304.6216,1905954.686,973912.01,21
+19627,655899.8434,1908377.247,1149963.459,21
+19628,658260.7274,1907696.582,1364214.588,21
+19629,657895.13,1907399.63,954796.1153,21
+19630,658506.511,1909817.099,961382.5455,21
+19631,660753.6526,1909023.427,1009815.807,21
+19632,658727.9284,1910684.401,1258804.69,21
+19633,661510.2695,1909726.421,948382.8379,21
+19634,661909.9994,1911221.34,950581.6082,21
+19635,661372.5295,1912364.367,1143264.326,21
+19636,663124.8304,1911850.715,1090146.17,21
+19637,663938.1351,1912974.485,1000908.716,21
+19638,663524.7932,1913728.714,1029180.382,21
+19639,664519.6478,1913725.726,1019134.646,21
+19640,666490.2412,1915246.318,1016495.951,21
+19641,664436.4287,1913454.026,1016901.676,21
+19642,666315.7676,1915762.219,1013328.92,21
+19643,666758.3067,1915590.869,1793043.663,21
+19644,666159.6324,1916590.535,940483.1164,21
+19645,668990.3329,1915725.838,941062.5362,21
+19646,668737.5849,1918013.28,1834865.104,21
+19647,667854.5127,1917173.621,942065.4906,21
+19648,671210.1004,1917972.38,946229.6991,21
+19649,670762.6921,1918742.948,1845803.935,21
+19650,670675.8701,1918960.881,947978.5376,21
+19651,672339.4995,1919629.444,947147.8927,21
+19652,672927.3861,1919799.181,1854100.504,21
+19653,673706.3271,1919670.067,951125.9655,21
+19654,673948.2331,1921381.32,949093.2162,21
+19655,674052.5667,1920859.499,1863840.538,21
+19656,675550.0348,1921078.617,950036.246,21
+19657,675985.3892,1922694.823,1480900.843,21
+19658,676865.5388,1922225.739,933491.6254,21
+19659,677626.4088,1921560.063,944670.023,21
+19660,678144.5173,1924944.072,938044.6914,21
+19661,678563.7306,1922958.965,1115622.873,21
+19662,679609.0923,1923667.541,1321586.662,21
+19663,680166.4922,1925426.584,923899.7326,21
+19664,680886.294,1924788.017,933348.8952,21
+19665,681300.4228,1925029.477,979593.3795,21
+19666,682069.0877,1926712.659,1253719.752,21
+19667,683955.5415,1925451.411,919563.4257,21
+19668,683172.6364,1927065.104,919235.0225,21
+19669,684266.4616,1926166.299,924728.0601,21
+19670,684668.3202,1928458.712,1098560.459,21
+19671,686455.5946,1927251.745,1287110.72,21
+19672,686124.947,1928392.71,911978.9381,21
+19673,686868.5834,1929355.267,915986.7607,21
+19674,688451.0389,1928835.86,951468.354,21
+19675,688096.8405,1929183.941,1001920.956,21
+19676,690015.3498,1929820.571,1046993.82,21
+19677,689219.411,1931181.032,1235661.222,21
+19678,691559.9196,1930437.994,906381.5323,21
+19679,690514.8852,1931233.096,913916.8901,21
+19680,693531.2072,1930717.618,917723.2894,21
+19681,690993.3554,1935715.822,1051467.369,21
+19682,694107.6293,1934224.311,980569.4642,21
+19683,691625.2552,1939501.099,996601.6386,21
+19684,694295.2201,1938451.952,991318.0734,21
+19685,692167.6494,1941806.278,990269.0999,21
+19686,694779.9769,1941531.065,991219.0517,21
+19687,693662.0866,2322106.484,991024.1398,21
+19688,693911.5331,1945325.435,1772064.503,21
+19689,695688.9175,1947490.616,928986.1579,21
+19690,694087.3602,1947618.155,933422.3872,21
+19691,695005.5579,1950774.567,1817914.054,21
+19692,696439.8052,1951013.737,938223.4027,21
+19693,695197.1939,1954358.305,943242.4821,21
+19694,696151.5548,1953133.587,1838671.917,21
+19695,696092.2831,1957190.551,948751.4273,21
+19696,697614.4909,1956507.308,953862.7977,21
+19697,696340.8537,1959866.907,1852716.48,21
+19698,698389.6808,1959008.99,958245.0468,21
+19699,696681.4418,1962881.821,961345.3564,21
+19700,699044.3493,1962192.29,1866693.138,21
+19701,697540.2555,1965824.364,966657.589,21
+19702,699377.1235,1964908.388,969512.6112,21
+19703,697929.4369,1968823.932,1876697.945,21
+19704,699966.613,1967935.635,973514.8747,21
+19705,699254.6075,1970311.638,978066.439,21
+19706,700523.5453,1972215.162,1887979.05,21
+19707,699111.9448,1973225.609,980538.4044,21
+19708,701079.2591,1974492.263,984745.6221,21
+19709,699418.5491,1976828.594,1896248.009,21
+19710,701529.1701,1977254.419,988478.989,21
+19711,701463.4632,1979541.102,991089.2862,21
+19712,700922.3787,1979935.705,1905628.328,21
+19713,701366.4097,1981540.991,995845.6083,21
+19714,702271.1137,1984203.843,999425.1073,21
+19715,700887.183,1983778.331,1914964.451,21
+19716,702262.2592,1987272.05,1003201.822,21
+19717,702628.1447,1987019.779,1006854.986,21
+19718,701864.35,1988433.918,1923364.922,21
+19719,702746.4695,1990899.329,1012060.33,21
+19720,703155.8462,1991765.942,1014459.129,21
+19721,701321.1576,1993117.352,1932443.988,21
+19722,704234.4336,1994476.678,1019307.758,21
+19723,703145.9416,1996525.422,1021611.276,21
+19724,701797.8116,1996797.478,1940079.192,21
+19725,705588.39,1999061.287,1026766.928,21
+19726,701901.8376,2000145.103,1028813.912,21
+19727,703802.7075,2002426.865,1948295.237,21
+19728,703876.1763,2001769.726,1033765.684,21
+19729,704038.8159,2006093.911,1036845.044,21
+19730,704155.93,2004954.334,1955136.837,21
+19731,704306.7033,2007157.99,1042455.198,21
+19732,704197.7206,2009301.705,1044173.64,21
+19733,704361.7651,2008883.119,1963239.17,21
+19734,704616.5179,2013607.432,1047501.609,21
+19735,704616.2461,2011489.652,1051725.468,21
+19736,704696.096,2014856.359,1970027.618,21
+19737,704572.3913,2016262.492,1056180.139,21
+19738,704987.6588,2015990.529,1058865.008,21
+19739,705811.2023,2018718.325,1976527.653,21
+19740,706129.4564,2020368.373,1062618.928,21
+19741,195120.4783,1147474.503,469163.3268,21
+19742,195476.6467,1122765.635,1381642.197,21
+19743,195925.9908,1125456.763,469437.1132,21
+19744,196629.927,1128635.463,470347.4071,21
+19745,197420.9424,1132360.366,1378484.271,21
+19746,198468.7177,1136531.617,471888.4819,21
+19747,199655.0853,1140995.227,999687.2999,21
+19748,200934.889,1145616.235,464802.0581,21
+19749,202264.7331,1150305.931,472905.9635,21
+19750,203610.6736,1155018.184,538065.407,21
+19751,204989.1902,1159696.747,497669.9721,21
+19752,206262.2109,1164296.35,682059.1472,21
+19753,207540.4265,1168787.375,821456.2859,21
+19754,208775.4998,1173921.452,463357.6803,21
+19755,209963.0022,1179085.44,470027.0812,21
+19756,211101.0215,1183429.897,509542.9739,21
+19757,212196.4585,1189897.275,841946.3283,21
+19758,213227.6359,1192757.071,462720.4795,21
+19759,214323.8149,1197012.149,467230.311,21
+19760,215165.4372,1200884.16,466849.2663,21
+19761,216070.0423,1206133.857,648019.7105,21
+19762,216935.7994,1209184.362,509437.5776,21
+19763,217769.576,1212902.34,531899.8057,21
+19764,218562.8703,1216456.145,526553.9078,21
+19765,219427.6156,1224456.115,522822.711,21
+19766,220069.9282,1227147.811,521964.8317,21
+19767,220785.111,1230877.102,521686.119,21
+19768,221477.9138,1234857.335,521535.6195,21
+19769,222154.702,1238358.314,1268114.569,21
+19770,222804.6884,1242102.403,474709.3734,21
+19771,223546.6626,1245641.777,476598.1979,21
+19772,224065.0117,1249134.69,1301662.482,21
+19773,224674.1409,1252438.112,480485.9521,21
+19774,225271.0185,1256046.682,482303.0472,21
+19775,225861.0643,1259269.509,1313533.842,21
+19776,226432.4835,1265740.394,485979.9114,21
+19777,227105.3286,1270819.324,487735.6796,21
+19778,227557.2168,1273345.73,1321698.296,21
+19779,228107.841,1277612.048,491242.4743,21
+19780,228651.5571,1281431.873,492944.4003,21
+19781,229196.2158,1287111.261,1328850.977,21
+19782,229720.5603,1291210.238,496304.6931,21
+19783,230356.4178,1294541.147,497959.8089,21
+19784,230768.2119,1299179.338,1335440.277,21
+19785,231285.0801,1302343.882,501197.7411,21
+19786,231797.7961,1306915.802,502806.6762,21
+19787,232314.2321,1310286.562,1341629.465,21
+19788,232812.5817,1313995.624,505937.8515,21
+19789,233427.104,1317985.388,507526.5293,21
+19790,233815.2618,1321388.999,1347473.223,21
+19791,234312.4441,1325311.503,510621.8369,21
+19792,234806.9918,1328640.219,512210.1197,21
+19793,235306.5694,1332375.199,1353097.924,21
+19794,235788.6404,1335747.425,515252.9312,21
+19795,236389.734,1339346.561,516814.9463,21
+19796,236761.1498,1344034.166,1358417.551,21
+19797,237244.2783,1350035.574,519772.2889,21
+19798,237725.4706,1351507.135,521301.0798,21
+19799,238212.5059,1355641.853,1363471.82,21
+19800,238682.4302,1358395.84,524170.853,21
+19801,0,0,0,21
+19802,0,0,840832.9302,21
+19803,0,0,5.838868897,21
+19804,0,0,0,21
+19805,0,0,840551.427,21
+19806,0,0,5.106040059,21
+19807,0,58557.65104,0,21
+19808,0,0,840262.5982,21
+19809,0,6145.026942,5.281827511,21
+19810,0,22700.50439,0,21
+19811,0,15223.02298,840003.9898,21
+19812,0,16164.44741,4.91841774,21
+19813,0,16774.29248,0,21
+19814,0,17101.01657,839734.1124,21
+19815,0,17451.40419,5.187376403,21
+19816,0,17710.3832,0,21
+19817,0,18044.65154,839498.8059,21
+19818,0,18410.90895,4.737976746,21
+19819,0,18637.9196,1414752.871,21
+19820,0,19054.42739,809695.2521,21
+19821,0,19160.40885,4.856279523,21
+19822,0,19563.68432,0,21
+19823,0,19817.92131,810668.5576,21
+19824,0,20111.08129,4.379669952,21
+19825,0,20483.62992,0,21
+19826,0,393669.2955,811586.3706,21
+19827,339783.0551,38735.39728,4.590283213,21
+19828,0,83532.51796,0,21
+19829,0,179336.1931,812486.9517,21
+19830,0,136554.7167,4.23716588,21
+19831,0,142419.7815,0,21
+19832,0,146954.3663,813323.0502,21
+19833,0,148999.6461,4.656413339,21
+19834,0,152225.9113,0,21
+19835,0,154052.2402,814143.9783,21
+19836,0,156715.3114,4.327887609,21
+19837,0,135983.3427,0,21
+19838,0,137734.1422,814908.301,21
+19839,0,140174.7827,4.652781188,21
+19840,0,230956.3253,0,21
+19841,0,151579.5515,815662.2998,21
+19842,0,160266.4764,4.274441248,21
+19843,0,183895.0957,0,21
+19844,0,175663.8368,816367.0478,21
+19845,0,179487.836,4.517293038,21
+19846,0,182057.2736,0,21
+19847,0,184496.9036,817067.6599,21
+19848,0,186917.7568,4.074135031,21
+19849,0,189469.0058,0,21
+19850,0,191782.6026,817717.2632,21
+19851,0,194191.7566,4.376022955,21
+19852,0,196704.3102,0,21
+19853,0,199170.8834,818358.5989,21
+19854,0,201345.0017,4.026634893,21
+19855,0,203869.7979,0,21
+19856,0,28963.38016,818952.4964,21
+19857,0,29257.81052,4.301819389,21
+19858,0,29485.60757,0,21
+19859,0,29658.6458,819546.146,21
+19860,0,747602.5631,5.208979597,21
+19861,0,51561.95648,0,21
+19862,0,121653.5925,819995.7344,21
+19863,0,301282.638,0,21
+19864,0,204742.9226,0,21
+19865,0,219186.339,820391.3179,21
+19866,0,219625.2404,0,21
+19867,0,219891.2537,0,21
+19868,0,220271.9029,2024457.424,21
+19869,0,220338.6224,4.393805411,21
+19870,0,189682.0116,0,21
+19871,0,190718.1047,800037.5063,21
+19872,0,281608.3323,0,21
+19873,0,200804.3898,0,21
+19874,0,216810.6499,801186.1788,21
+19875,0,226354.4504,0,21
+19876,339775.2095,220573.1253,0,21
+19877,0,221272.3995,802303.2374,21
+19878,0,221761.3364,0,21
+19879,0,221599.0817,0,21
+19880,0,221975.7741,803345.4702,21
+19881,0,221954.5679,0,21
+19882,0,221886.6309,0,21
+19883,0,222321.3879,804357.9319,21
+19884,0,221997.4198,0,21
+19885,0,222938.3017,0,21
+19886,0,222334.8927,805303.5102,21
+19887,0,222518.7274,0,21
+19888,0,222542.6927,0,21
+19889,0,222948.2987,806227.4366,21
+19890,0,30442.21259,0,21
+19891,0,30392.91145,0,21
+19892,0,30450.07744,807085.0087,21
+19893,0,709607.3353,0,21
+19894,0,40072.53832,0,21
+19895,0,171337.6042,807918.7035,21
+19896,0,280514.4995,0,21
+19897,0,213544.0606,0,21
+19898,0,223560.5306,808690.7281,21
+19899,0,223582.4192,0,21
+19900,0,223674.6531,0,21
+19901,0,223739.7612,809446.6836,21
+19902,0,193561.3258,0,21
+19903,0,192748.6257,0,21
+19904,0,285389.6892,810145.1727,21
+19905,0,203970.683,0,21
+19906,0,219269.953,0,21
+19907,0,228560.4173,810836.0194,21
+19908,0,223036.3406,0,21
+19909,0,223762.6298,0,21
+19910,0,223495.9655,811477.1654,21
+19911,0,223762.1858,0,21
+19912,0,223971.3683,0,21
+19913,0,223372.0641,812109.9259,21
+19914,0,223810.6336,0,21
+19915,0,223464.4758,0,21
+19916,0,223785.5118,812688.3643,21
+19917,0,223446.9956,0,21
+19918,0,223448.2904,1359264.642,21
+19919,0,223662.929,786072.432,21
+19920,0,224188.2719,0,21
+19921,0,223891.2011,0,21
+19922,0,222793.7522,787736.2888,21
+19923,0,30207.97022,0,21
+19924,0,30286.33249,0,21
+19925,339768.3742,30052.82393,789388.2993,21
+19926,0,708077.8194,0,21
+19927,0,35118.38077,0,21
+19928,0,164374.4271,790957.7082,21
+19929,0,275393.4608,0,21
+19930,0,206974.2326,0,21
+19931,0,215404.1579,792482.1715,21
+19932,0,215262.4777,148537.47,21
+19933,0,214082.5137,198193.6344,21
+19934,0,184668.7698,859179.4215,21
+19935,0,182797.0034,79442.46062,21
+19936,0,270831.5934,205181.9916,21
+19937,0,190050.3276,861909.2013,21
+19938,0,206692.0557,78532.99883,21
+19939,0,213449.4908,199871.7081,21
+19940,0,207807.2301,860045.3027,21
+19941,0,207440.264,78560.72704,21
+19942,0,206666.8371,198813.9708,21
+19943,0,205326.0294,857501.3013,21
+19944,0,205497.7471,79614.5347,21
+19945,0,203628.5358,198421.2643,21
+19946,0,202616.9065,855787.0494,21
+19947,0,202533.8819,79810.98222,21
+19948,0,200977.929,198186.3138,21
+19949,0,200504.5338,853901.9794,21
+19950,0,198725.6951,80354.09019,21
+19951,0,198763.9591,197936.3217,21
+19952,0,197587.3617,852222.3632,21
+19953,0,196324.6591,80909.57739,21
+19954,0,195625.1958,197837.1577,21
+19955,0,194669.9644,850706.4873,21
+19956,0,27167.54633,81493.26812,21
+19957,0,27103.62898,197807.1175,21
+19958,0,26996.01412,849278.6034,21
+19959,0,26877.15304,82083.82075,21
+19960,0,687376.5702,197850.4022,21
+19961,0,26697.43643,848061.5753,21
+19962,0,84782.12774,0,21
+19963,0,273282.9114,0,21
+19964,0,169618.7675,768342.9524,21
+19965,0,184612.6105,0,21
+19966,0,158443.8204,0,21
+19967,0,156666.9984,931395.9551,21
+19968,0,155967.1246,75152.89779,21
+19969,0,251642.472,1302768.062,21
+19970,0,163030.5469,843017.5031,21
+19971,0,162385.0776,84039.00952,21
+19972,0,188916.4276,195514.7723,21
+19973,339763.7008,174852.5277,834872.2675,21
+19974,0,175308.5896,85589.20524,21
+19975,0,173882.9945,195993.1979,21
+19976,0,172793.2774,835046.9636,21
+19977,0,171514.8727,86440.56046,21
+19978,0,170380.7418,196556.6766,21
+19979,0,168650.0801,835382.2968,21
+19980,0,166276.4281,87312.181,21
+19981,0,166999.4883,197077.349,21
+19982,0,167147.3102,835309.7087,21
+19983,0,167281.0876,87513.94944,21
+19984,0,168032.9732,197207.5044,21
+19985,0,168056.8694,835175.7575,21
+19986,0,168350.4492,87649.17447,21
+19987,0,168544.9824,197325.0078,21
+19988,0,169187.0161,834930.0377,21
+19989,0,169360.3438,87843.79719,21
+19990,0,24922.22279,197485.1816,21
+19991,0,24870.34485,834723.8976,21
+19992,0,24948.19754,88039.77087,21
+19993,0,24902.02428,197601.9368,21
+19994,0,25052.23868,834570.8877,21
+19995,0,659061.9284,88160.3201,21
+19996,0,25218.33961,197743.9797,21
+19997,0,48053.04928,746238.1405,21
+19998,0,262397.119,0,21
+19999,0,133324.9335,0,21
+20000,0,146733.6775,749525.6922,21
+20001,0,148093.7322,174859.1384,21
+20002,0,242050.598,185342.1341,21
+20003,0,156607.6864,831430.2495,21
+20004,0,160310.4574,96609.54951,21
+20005,0,185039.3294,199308.5064,21
+20006,0,173511.0048,836428.6098,21
+20007,0,175435.812,89302.49927,21
+20008,0,175566.1159,199645.176,21
+20009,0,176063.6061,836014.0173,21
+20010,0,176485.9277,89441.58495,21
+20011,0,176386.7453,199562.4356,21
+20012,0,176655.8282,835825.6045,21
+20013,0,177413.0563,89512.58047,21
+20014,0,177268.524,199476.6318,21
+20015,0,177775.6804,835610.0851,21
+20016,0,178274.4345,89587.70036,21
+20017,0,177799.1271,199453.0881,21
+20018,0,179253.312,835440.8255,21
+20019,0,178389.4378,89613.43792,21
+20020,0,179700.8948,199515.8661,21
+20021,339762.6824,179271.5541,1890725.029,21
+20022,0,179977.1988,87835.75479,21
+20023,0,180246.2175,192583.7168,21
+20024,0,180201.5652,818664.6745,21
+20025,0,26395.01144,87998.35721,21
+20026,0,26493.24573,193122.1747,21
+20027,0,26491.53404,819581.127,21
+20028,0,26484.02809,88247.66733,21
+20029,0,657171.3726,193579.8483,21
+20030,0,26577.18637,820427.3935,21
+20031,0,70359.7583,0,21
+20032,0,247418.5076,0,21
+20033,0,138482.6827,736381.3099,21
+20034,0,157100.4787,0,21
+20035,0,255713.8265,287562.2863,21
+20036,0,167791.5048,806440.0913,21
+20037,0,168794.5007,83980.32601,21
+20038,0,196548.7654,204069.0645,21
+20039,0,183542.8284,824158.9125,21
+20040,0,185573.8835,89500.9865,15.6
+20041,0,185984.8126,196880.7701,15.6
+20042,0,185531.5244,825645.2261,15.6
+20043,0,186431.1766,90042.48054,15.6
+20044,0,185550.3049,197244.5909,15.6
+20045,0,186508.4844,826451.9599,15.6
+20046,0,185793.8327,90554.83011,15.6
+20047,0,186691.9861,197823.4004,15.6
+20048,0,610263.154,827240.1156,15.6
+20049,0,186187.2325,91204.37414,15.6
+20050,0,187199.8496,198437.7439,15.6
+20051,0,186242.0353,828122.7339,15.6
+20052,0,186943.2643,91772.13733,15.6
+20053,0,186811.6276,199117.1934,15.6
+20054,0,187205.6171,828941.5813,15.6
+20055,0,186768.7299,92395.22467,15.6
+20056,0,187346.7837,199786.2039,15.6
+20057,0,187224.6157,829820.2942,15.6
+20058,0,187356.7616,92940.97366,15.6
+20059,0,27638.36833,200518.8308,15.6
+20060,0,27550.62906,830597.5054,15.6
+20061,0,27692.78848,93400.81118,15.6
+20062,0,27659.33697,201024.6797,15.6
+20063,0,687543.8036,831189.6665,15.6
+20064,0,451582.8866,94036.63642,15.6
+20065,0,45956.8284,0,15.6
+20066,0,252650.9411,741644.4437,15.6
+20067,34021.3281,142265.4326,0,15.6
+20068,0,262793.4604,0,15.6
+20069,341660.0607,172274.5708,954209.7528,15.6
+20070,9224.510374,171052.5385,78385.35058,15.6
+20071,9687.574912,200624.5296,196387.832,15.6
+20072,7460.006123,187164.1042,850508.3395,15.6
+20073,8185.18862,188001.5262,1160206.106,15.6
+20074,8279.435578,189500.9499,199671.6359,15.6
+20075,8330.346608,188261.7987,822881.7262,15.6
+20076,8360.118482,189219.5313,95363.72096,15.6
+20077,8403.461944,188910.7181,200207.1396,15.6
+20078,8439.641082,189112.9625,824271.9547,15.6
+20079,8474.767561,188812.35,95839.42911,15.6
+20080,8533.264986,613350.6048,200896.6228,15.6
+20081,8596.227448,188852.7868,825593.01,15.6
+20082,8572.365318,189439.7357,96504.3006,15.6
+20083,8676.661114,189218.425,201665.7653,15.6
+20084,8704.454237,189489.9646,826843.5466,15.6
+20085,8733.863939,189662.2712,97144.64281,15.6
+20086,8770.237301,189427.5802,202510.6474,15.6
+20087,8841.522351,189532.5709,828062.0456,15.6
+20088,8866.717833,189842.9873,97801.28596,15.6
+20089,8893.598209,189327.3895,203318.4896,15.6
+20090,8976.243454,190038.6171,829291.0089,15.6
+20091,8994.400907,190256.9444,98406.05095,15.6
+20092,9020.224834,189607.3986,204165.8257,15.6
+20093,9102.554959,28368.46752,830449.3587,15.6
+20094,9124.542883,28352.47544,99012.29388,15.6
+20095,9180.609268,28407.93748,205019.3046,15.6
+20096,9200.284559,452124.2554,831486.2291,15.6
+20097,0,700954.5828,99672.30013,15.6
+20098,0,0,205793.279,15.6
+20099,0,47442.16719,732614.9838,15.6
+20100,0,339144.8631,0,15.6
+20101,0,150564.097,0,15.6
+20102,0,190226.4771,949859.0677,15.6
+20103,0,194877.7747,78926.69267,15.6
+20104,0,191357.6306,201433.1163,15.6
+20105,0,192364.3275,845768.4764,15.6
+20106,44303.84298,192172.5136,99906.67363,15.6
+20107,1174.271142,192675.4067,208888.4861,15.6
+20108,1983.210188,192714.2188,836589.87,15.6
+20109,10868.79393,192963.4208,101356.0272,15.6
+20110,12092.59476,193414.8776,208749.0474,15.6
+20111,8968.522922,193401.266,836845.5703,15.6
+20112,9932.800111,617655.5899,101341.8307,15.6
+20113,10026.44514,194064.2714,208862.8377,15.6
+20114,10034.16308,194070.9332,837126.4398,15.6
+20115,10084.58156,194947.1972,101403.6525,15.6
+20116,10112.61353,194804.8203,209061.576,15.6
+20117,349924.6937,195043.0627,837461.3727,15.6
+20118,10197.71827,195100.8811,101546.0866,15.6
+20119,10239.05853,196172.1699,209217.6099,15.6
+20120,10264.80421,195597.3156,837730.5297,15.6
+20121,10351.5872,196322.3903,101709.5512,15.6
+20122,10365.19788,196486.9558,209413.1915,15.6
+20123,10380.68194,196366.4029,838114.7797,15.6
+20124,10461.52305,197229.5207,101743.9789,15.6
+20125,10463.66734,197381.682,209684.1999,15.6
+20126,10535.19458,197472.5446,1879309.534,15.6
+20127,10574.49568,29529.41371,99794.88225,15.6
+20128,10585.91181,453231.7792,202831.4908,15.6
+20129,10646.54043,29597.93304,822748.0051,15.6
+20130,10675.10003,0,99966.33628,15.6
+20131,10736.39149,708993.6134,203541.8837,15.6
+20132,10735.54133,89737.49458,723983.5443,15.6
+20133,10830.17864,65596.80574,0,15.6
+20134,10813.2878,288845.4591,0,15.6
+20135,10897.05545,187425.8882,945581.3812,15.6
+20136,0,200465.0973,78860.44758,15.6
+20137,0,200437.5249,197635.3115,15.6
+20138,0,201758.2232,839164.8442,15.6
+20139,0,201245.7151,99660.079,15.6
+20140,0,201981.7415,207090.8395,15.6
+20141,0,202087.5198,829547.0716,15.6
+20142,0,202420.3429,101493.7957,15.6
+20143,54889.59348,202322.3424,207117.3034,15.6
+20144,0,626427.4043,830349.2554,15.6
+20145,2581.542094,203244.0359,101564.2538,15.6
+20146,12299.33048,203112.0837,207394.1489,15.6
+20147,14196.72679,203655.6041,831132.0596,15.6
+20148,10338.10639,203992.0734,101710.779,15.6
+20149,11517.1503,204351.0619,207750.6084,15.6
+20150,11575.3477,203898.3488,831889.6726,15.6
+20151,11592.47551,205005.9683,101877.084,15.6
+20152,11651.78777,204754.9781,208081.0791,15.6
+20153,11683.5058,205459.5602,832672.4071,15.6
+20154,11698.9308,205127.4797,101981.3775,15.6
+20155,11758.84412,205974.9777,208488.3501,15.6
+20156,11769.83599,206015.0348,833325.6784,15.6
+20157,11826.30995,206522.4488,102173.9754,15.6
+20158,11844.96829,206305.3787,208830.0524,15.6
+20159,11896.94056,206804.6505,833992.3163,15.6
+20160,11935.19394,631199.6134,102288.16,15.6
+20161,11907.18118,30913.2591,209312.5448,15.6
+20162,11951.27717,0,834908.7637,15.6
+20163,11912.2251,0,102930.2984,15.6
+20164,351743.3992,93240.78539,210105.3641,15.6
+20165,11923.71298,759112.7458,732556.9897,15.6
+20166,11935.18525,48970.2093,0,15.6
+20167,11987.79228,75877.10605,0,15.6
+20168,11924.92527,311744.7623,964085.3486,15.6
+20169,12003.04466,190843.8936,83366.26028,15.6
+20170,11974.1623,209175.7184,202491.1167,15.6
+20171,11939.79045,209597.4072,851909.9572,15.6
+20172,12005.46678,210159.6385,103819.3406,15.6
+20173,0,209817.7239,214129.8221,15.6
+20174,0,210530.2103,840364.7785,15.6
+20175,0,210702.7023,106219.1284,15.6
+20176,0,633950.5075,214215.5629,15.6
+20177,0,210853.4652,840942.4266,15.6
+20178,0,211222.4963,106757.3607,15.6
+20179,59165.34864,211432.8195,214628.887,15.6
+20180,0,211563.0288,1880410.462,15.6
+20181,2148.910035,211654.8204,105064.1285,15.6
+20182,13767.75988,212036.3609,208086.4943,15.6
+20183,14719.70481,212103.6364,826132.0332,15.6
+20184,10973.18246,212616.7312,105832.1635,15.6
+20185,12111.16225,212068.4406,209134.2218,15.6
+20186,12103.48593,213105.5458,827844.0191,15.6
+20187,12154.33245,212838.2291,106524.3726,15.6
+20188,12119.43303,213308.4054,210223.9256,15.6
+20189,12154.3288,213567.6921,829400.2994,15.6
+20190,12119.42941,213335.7392,107362.7223,15.6
+20191,12154.32519,214051.7998,211176.0324,15.6
+20192,12142.25519,213859.3202,830864.8399,15.6
+20193,12111.1477,638058.3804,108151.3655,15.6
+20194,12178.58007,182442.2322,212127.3272,15.6
+20195,12133.90675,0,832334.9609,15.6
+20196,12142.24797,96984.86515,108887.4665,15.6
+20197,12131.55174,11197.1196,213069.4928,15.6
+20198,12170.69657,28286.02353,724429.1529,15.6
+20199,12146.70298,814050.2602,0,15.6
+20200,12155.53798,66116.92253,0,15.6
+20201,12136.50098,86548.75254,966470.297,15.6
+20202,12165.76181,326130.5836,89805.0868,15.6
+20203,12137.67395,200424.5424,204102.6982,15.6
+20204,12201.3241,222022.3292,851551.3226,15.6
+20205,12106.60662,223846.6754,109771.001,15.6
+20206,12185.40311,222178.7479,217449.3539,15.6
+20207,12180.90718,223494.4792,839012.6735,15.6
+20208,12149.83326,222831.7326,112332.0135,15.6
+20209,0,223664.4364,217765.0498,15.6
+20210,0,646799.153,839864.421,15.6
+20211,339738.0021,223877.7087,112887.837,15.6
+20212,0,224205.8636,218282.4374,15.6
+20213,0,224024.643,840695.3337,15.6
+20214,0,224377.6991,113582.7565,15.6
+20215,60945.35974,224902.2072,218876.0211,15.6
+20216,0,225065.8684,841515.6177,15.6
+20217,1911.063423,225199.8041,114186.0096,15.6
+20218,13834.25529,225470.5663,219613.2241,15.6
+20219,15046.92872,225844.4965,842252.7699,15.6
+20220,11073.65594,226829.5494,114876.7194,15.6
+20221,12265.52697,226710.5119,220336.5501,15.6
+20222,12352.9461,227287.8129,843081.5285,15.6
+20223,12358.99566,227415.432,115678.3238,15.6
+20224,12422.06552,228190.2851,221136.9355,15.6
+20225,12431.83182,227916.1205,844074.3787,15.6
+20226,12464.1929,194559.5215,116444.5775,15.6
+20227,12472.30213,617784.8704,222004.6746,15.6
+20228,12547.97689,295375.5484,844920.7051,15.6
+20229,12551.62576,18606.24166,117231.3337,15.6
+20230,12583.86369,34366.42758,222895.9973,15.6
+20231,12628.4441,38278.84909,728282.1001,15.6
+20232,12662.49578,723943.7031,0,15.6
+20233,12644.06126,38785.46513,0,15.6
+20234,12739.43255,159112.2598,992366.3754,15.6
+20235,12743.41223,288906.258,1146393.433,15.6
+20236,12784.48356,214574.1555,202906.799,15.6
+20237,12805.39594,225773.8264,848815.0304,15.6
+20238,12820.88685,225999.0171,115691.2865,15.6
+20239,12872.62797,226876.023,220154.5378,15.6
+20240,12888.08709,226624.2856,834739.166,15.6
+20241,12958.26087,227235.9234,118775.2952,15.6
+20242,12940.42774,227361.5368,220929.7386,15.6
+20243,13010.53861,650731.2748,836509.0093,15.6
+20244,13020.501,228148.4873,119523.6984,15.6
+20245,0,253118.479,221983.6935,15.6
+20246,0,228635.6505,838084.4355,15.6
+20247,0,230287.6271,120499.3124,15.6
+20248,0,236045.0538,223073.1456,15.6
+20249,0,235758.7188,839762.767,15.6
+20250,62592.41521,236144.4829,121352.7167,15.6
+20251,0,235520.5061,224258.0213,15.6
+20252,1959.22739,236611.9074,841264.395,15.6
+20253,17771.70437,236852.028,122352.105,15.6
+20254,14597.84113,236912.8468,225296.5905,15.6
+20255,12575.26995,236934.9287,842796.2897,15.6
+20256,13432.92627,237892.1952,123288.0723,15.6
+20257,13475.31619,237935.171,226414.9282,15.6
+20258,353219.7497,200651.3369,844225.2369,15.6
+20259,13548.48186,624376.4474,124132.8086,15.6
+20260,13575.63755,305644.1936,227621.5345,15.6
+20261,13597.50969,215577.0008,845533.6059,15.6
+20262,13611.74893,35174.24908,125091.0701,15.6
+20263,13663.52843,46722.90674,228690.1073,15.6
+20264,13675.60138,46566.49577,721510.8106,15.6
+20265,13747.50283,757177.2503,0,15.6
+20266,13727.25889,60399.51192,0,15.6
+20267,13796.96949,165092.8395,1000499.422,15.6
+20268,13825.1842,310718.4505,114493.4103,15.6
+20269,13826.694,229072.2959,220558.1358,15.6
+20270,13861.75334,241655.8589,2310974.629,15.6
+20271,13896.17038,242191.724,813894.0174,15.6
+20272,13953.88005,242592.3781,819954.6626,15.6
+20273,13946.68596,242588.2839,1600098.125,15.6
+20274,13987.39697,242878.7661,954422.5,15.6
+20275,14026.57933,659243.0305,894554.292,15.6
+20276,14071.17784,236905.951,1663257.95,15.6
+20277,14074.07367,236809.0612,930857.2147,15.6
+20278,14088.77491,236876.4594,937001.725,15.6
+20279,14191.70558,237949.101,1686320.017,15.6
+20280,0,237087.7517,951435.8328,15.6
+20281,0,238276.7523,954966.233,15.6
+20282,0,237294.5591,1707569.312,15.6
+20283,0,238584.6915,966511.3771,15.6
+20284,62486.20701,238090.6577,968394.9604,15.6
+20285,0,265461.7551,1725819.05,15.6
+20286,2437.303956,238135.7465,978221.3708,15.6
+20287,21552.17618,241671.2253,981172.8115,15.6
+20288,13828.76247,248022.0752,1739948.523,15.6
+20289,13891.65075,246352.0928,989333.0041,15.6
+20290,14387.00784,206183.7594,991017.1372,15.6
+20291,14348.34437,206897.8833,2841014.058,15.6
+20292,14424.25982,313177.9624,978983.4276,15.6
+20293,14367.69375,222705.8562,980887.7836,15.6
+20294,14409.74934,239395.9623,1732205.318,15.6
+20295,14464.89779,54764.02538,991553.6188,15.6
+20296,14395.99326,45610.36744,994343.614,15.6
+20297,14469.95967,47168.83835,1610717.701,15.6
+20298,14464.88779,779570.2055,864778.9188,15.6
+20299,14507.52841,71214.38689,866854.4785,15.6
+20300,14478.60247,162818.1082,1052400.185,15.6
+20301,14528.05522,322850.3795,137656.0264,15.6
+20302,14507.51842,235421.4061,237170.7768,15.6
+20303,14528.04855,248260.4532,902414.532,15.6
+20304,14561.7436,249342.1956,139518.1951,15.6
+20305,354260.4705,248669.7964,253597.9746,15.6
+20306,14576.15603,249121.8593,886216.9035,15.6
+20307,14594.82686,249472.4096,139908.155,15.6
+20308,14594.59459,249232.6407,252338.8181,15.6
+20309,14619.81943,249840.8773,884340.1884,15.6
+20310,14658.26621,249713.1363,1715896.679,15.6
+20311,14639.06372,249962.6964,890547.2582,15.6
+20312,14639.06029,249666.0782,1656348.151,15.6
+20313,14685.44805,251183.0272,996121.1888,15.6
+20314,0,249561.6699,1029405.274,15.6
+20315,0,243525.7044,1746669.497,15.6
+20316,0,243557.7406,1012290.117,15.6
+20317,0,243614.3205,1016991.805,15.6
+20318,65339.54586,243597.6348,1770803.076,15.6
+20319,0,243949.3938,1026904.68,15.6
+20320,2096.636619,244219.8338,1029080.801,15.6
+20321,23291.68029,243922.4791,1785468.548,15.6
+20322,13761.66407,203027.1622,1037905.568,15.6
+20323,14569.89012,202526.5593,1039489.598,15.6
+20324,14893.51302,338460.9926,1797956.576,15.6
+20325,14850.31712,223118.944,1047070.358,15.6
+20326,14911.79342,244442.1828,1048799.67,15.6
+20327,14926.82208,259162.7419,1808410.311,15.6
+20328,14877.27825,49029.41543,1055621.836,15.6
+20329,14947.8208,49239.50136,1056791.384,15.6
+20330,14972.71899,49486.59587,1672678.22,15.6
+20331,14912.58163,792788.8406,918539.4585,15.6
+20332,14980.2993,79003.661,919580.9558,15.6
+20333,14972.70775,163828.6679,1987750.605,15.6
+20334,15009.81526,329820.759,1068091.887,15.6
+20335,14978.27493,240531.8799,1047360.356,15.6
+20336,15007.90087,253490.7632,1843430.14,15.6
+20337,15055.60432,254206.5702,1073715.686,15.6
+20338,15013.46802,254123.8947,1074290.58,15.6
+20339,15048.8165,254408.8365,1834847.241,15.6
+20340,15047.82999,254234.8723,146876.5173,15.6
+20341,15069.76031,255039.3015,263196.7006,15.6
+20342,14978.24944,254415.6668,901037.8611,15.6
+20343,15014.6286,254717.3102,146633.6943,15.6
+20344,14961.21165,254999.3846,261757.0604,15.6
+20345,14964.79363,254778.4959,897995.4938,15.6
+20346,14913.63158,255563.8391,146567.8464,15.6
+20347,14939.10219,254914.8603,260597.3782,15.6
+20348,0,255664.9929,3576266.71,15.6
+20349,0,255247.3013,946503.062,15.6
+20350,0,255645.9916,959420.0668,15.6
+20351,0,255643.3133,1785439.692,15.6
+20352,405985.01,256087.5033,1074979.735,15.6
+20353,0,255592.4981,1043076.862,15.6
+20354,2307.958342,205637.3714,1795669.413,15.6
+20355,22906.67407,205139.8906,1065624.352,15.6
+20356,13843.74099,315647.4741,1068098.744,15.6
+20357,14464.21552,231858.5221,1814232.536,15.6
+20358,14714.01833,243102.3121,1078918.006,15.6
+20359,14679.28758,255365.7275,1080830.482,15.6
+20360,14727.59297,248685.3525,1829936.734,15.6
+20361,14623.16883,43801.51865,1090341.071,15.6
+20362,14679.27713,43978.57588,1091546.115,15.6
+20363,14603.9635,73856.64072,1695536.122,15.6
+20364,14617.62517,798663.5677,952341.1055,15.6
+20365,14568.33657,80361.86109,953669.3301,15.6
+20366,14576.54021,165297.5151,2014626.763,15.6
+20367,14534.60464,337209.1838,1110313.945,15.6
+20368,14507.18796,243977.5725,1084675.501,15.6
+20369,14526.43551,258192.587,1875907.642,15.6
+20370,14438.39674,258434.9086,1113807.143,15.6
+20371,14478.92678,258268.6607,1115138.869,15.6
+20372,14410.0823,258990.3516,1868100.201,15.6
+20373,14443.9136,258589.0947,1121477.812,15.6
+20374,14376.16085,258819.891,1122044.124,15.6
+20375,14367.87472,258979.6571,1875390.044,15.6
+20376,14374.22349,259177.4018,1128015.835,15.6
+20377,14306.17242,258833.8431,1128250.639,15.6
+20378,14326.46851,259466.4527,902345.4248,15.6
+20379,14284.87961,259308.0669,152210.6667,15.6
+20380,14283.36665,259382.0892,265537.5307,15.6
+20381,14230.20214,259518.6707,899440.3723,15.6
+20382,0,259700.125,152044.8074,15.6
+20383,0,259687.6216,264420.9887,15.6
+20384,0,259658.6348,896852.1583,15.6
+20385,0,260235.4756,1886268.752,15.6
+20386,63273.23981,215142.6739,1001216.368,15.6
+20387,0,215342.9639,1770639.835,15.6
+20388,2206.873938,329392.5867,1144877.043,15.6
+20389,21076.77707,244064.6837,1139915.166,15.6
+20390,13779.75012,253285.504,1857641.359,15.6
+20391,13630.79124,267037.8103,1129699,15.6
+20392,14059.25202,259902.8716,1131882.079,15.6
+20393,14054.49522,253199.4769,1878309.175,15.6
+20394,14009.68806,45343.97103,1139914.375,15.6
+20395,14020.15918,45496.3091,1141493.732,15.6
+20396,13959.28118,45405.69112,1735437.381,15.6
+20397,13962.44467,808358.4741,995706.1891,15.6
+20398,353615.7399,84161.7153,996746.5285,15.6
+20399,13917.48386,154614.8066,2058605.067,15.6
+20400,13871.62172,335459.2113,1159891.647,17.8
+20401,13960.54357,270351.54,1130123.5,17.8
+20402,13990.15168,255453.8361,1919302.238,17.8
+20403,14039.70702,258126.2279,1159660.439,17.8
+20404,14088.71311,265889.3948,1161863.656,17.8
+20405,14172.25893,263757.1192,1908941.711,17.8
+20406,14200.87865,263320.1911,2241030.066,17.8
+20407,14214.79539,264454.1328,1140987.944,17.8
+20408,14325.44948,264463.4643,1876770.645,17.8
+20409,14355.5381,264929.864,1151144.743,17.8
+20410,14381.61835,264897.8816,1152508.563,17.8
+20411,14465.0443,265462.5178,1891149.25,17.8
+20412,14485.84007,265498.346,1161946.913,17.8
+20413,14576.41242,266360.2231,1162428.305,17.8
+20414,14623.02124,266155.0595,1903613.835,17.8
+20415,14631.90361,266730.2213,155486.5204,17.8
+20416,0,266840.7173,264047.6635,17.8
+20417,0,267365.9866,889601.6616,17.8
+20418,0,220939.3699,155606.4873,17.8
+20419,0,221429.7112,263436.7413,17.8
+20420,66333.08164,341743.1523,887969.3376,17.8
+20421,0,250794.4372,1978215.622,17.8
+20422,2627.148811,261890.5627,1012555.189,17.8
+20423,23604.20676,275676.255,1792010.411,17.8
+20424,14054.23465,268956.6159,1214367.082,17.8
+20425,15002.03301,269787.5581,1169639.574,17.8
+20426,15304.0511,270410.2018,1893201.135,17.8
+20427,15337.79403,55354.37405,1174073.448,17.8
+20428,15390.57316,55515.70264,1176450.101,17.8
+20429,15471.91101,55728.24407,1757554.193,17.8
+20430,15511.36477,847331.741,1028675.835,17.8
+20431,15564.63516,100788.1186,1030217.742,17.8
+20432,15618.53369,150589.0591,2086808.403,17.8
+20433,15631.57925,352099.6216,1207046.517,17.8
+20434,15737.63187,250123.9809,1166784.29,17.8
+20435,15783.56641,265008.9913,1951659.181,17.8
+20436,15803.33515,265436.7528,1202465.831,17.8
+20437,355561.02,266027.2945,1202874.968,17.8
+20438,15909.37081,300541.637,1943387.715,17.8
+20439,15980.89099,266425.7511,1209791.759,17.8
+20440,16051.81923,269528.5111,1210733.298,17.8
+20441,16074.59217,278838.1252,1951296.073,17.8
+20442,16143.35363,275807.0089,1217064.404,17.8
+20443,16189.47113,275685.5613,1217195.436,17.8
+20444,16268.39066,276657.281,1958405.166,17.8
+20445,16307.41483,276815.8816,1223317.838,17.8
+20446,16337.37102,276677.9279,1223557.516,17.8
+20447,16417.07867,277861.5857,1964594.574,17.8
+20448,16500.10004,277267.9066,1229380.516,17.8
+20449,16481.4808,278793.9904,2288587.169,17.8
+20450,0,229764.8099,1928478.628,17.8
+20451,0,230697.9021,159695.2698,17.8
+20452,0,356875.102,263971.3635,17.8
+20453,0,260907.8069,882119.2748,17.8
+20454,72928.08142,273770.4646,159859.7239,17.8
+20455,898.1761119,286723.0679,263814.5497,17.8
+20456,6323.577802,279987.5309,2784593.312,17.8
+20457,25254.88345,281168.6036,1037483.918,17.8
+20458,15807.13229,281075.9448,1079197.591,17.8
+20459,17048.27181,281943.9211,2012718.365,17.8
+20460,17167.90676,58336.62066,1195412.304,20
+20461,17203.06576,58220.38672,1205377.177,20
+20462,17284.79554,58254.92475,1774486.178,20
+20463,17266.60765,883747.5859,1056904.565,20
+20464,17334.72733,128065.5932,1358223.914,20
+20465,17354.14088,151929.3165,1925613.668,20
+20466,17422.02971,379725.6634,1215117.019,20
+20467,17415.7318,267151.6533,1231668.723,20
+20468,17490.96351,274683.3883,1953551.931,20
+20469,17476.47416,274651.4891,1229909.907,20
+20470,17571.98942,274950.5515,1229084.807,20
+20471,17550.13184,275224.2185,1961711.891,20
+20472,17621.28288,275087.5164,1234717.156,20
+20473,17680.18906,275546.8,1233495.063,20
+20474,357318.0144,312472.1507,1967628.932,20
+20475,17736.19104,275689.8045,1238442.105,20
+20476,17791.69636,278019.3212,1237320.438,20
+20477,17748.86973,288900.2677,1972060.898,20
+20478,17877.54567,285108.1754,1241251.715,20
+20479,17877.54304,284439.7375,1239999.31,20
+20480,17901.0049,285324.4713,1975675.051,20
+20481,17963.12372,286172.6877,1243324.196,20
+20482,17986.49862,235823.6149,1242156.692,20
+20483,18018.5398,235829.8601,1977876.586,20
+20484,0,367866.4006,1245511.154,20
+20485,0,266721.4317,1243380.836,20
+20486,0,281041.3581,899149.4886,20
+20487,70567.25834,293432.3895,164571.8902,20
+20488,0,286494.1887,272731.9725,20
+20489,10455.31597,287374.4098,896359.1264,20
+20490,25565.76601,287322.9386,164034.5757,20
+20491,17003.40282,287342.1445,2157998.646,20
+20492,18373.45484,287534.9595,1785525.613,20
+20493,18497.42008,59878.31384,2128984.46,20
+20494,18432.44099,60023.76786,1135202.658,20
+20495,18563.90442,60046.80527,1744729.504,20
+20496,18539.05576,901232.0367,1340769.936,20
+20497,18622.54978,136732.3835,1185881.175,20
+20498,18624.68941,150375.9516,1920428.774,20
+20499,18662.21115,388444.0057,1223178.442,20
+20500,18735.5226,272412.1776,1215055.791,20
+20501,18741.97563,289182.4912,1942925.97,20
+20502,18794.2082,289013.7104,1223180.122,20
+20503,18835.38471,289953.3444,1223904.759,20
+20504,18847.31877,279927.2917,1953241.815,20
+20505,18917.94697,280479.0649,1230689.275,20
+20506,18940.23544,280408.7888,1229921.147,20
+20507,18953.96231,280142.7069,1961043.987,20
+20508,19039.34882,281296.3098,1235874.431,20
+20509,19065.43591,279977.0194,1234677.569,20
+20510,19061.47461,320583.7671,1967791.634,20
+20511,358811.4113,280953.1474,1239351.043,20
+20512,19191.31015,282933.6861,1238310.891,20
+20513,19161.92141,294753.3091,1972252.795,20
+20514,19267.66489,239435.9287,1242704.907,20
+20515,19284.42188,239086.7501,1240786.59,20
+20516,19329.98988,375812.4492,1975882.672,20
+20517,0,271498.4878,1244784.966,20
+20518,0,286610.8512,1243177.68,20
+20519,0,298609.2305,1978274.395,20
+20520,73387.61965,292113.3367,1246625.796,21
+20521,2059.647272,289735.018,272133.3326,21
+20522,12070.26687,289077.4378,893828.6229,21
+20523,25907.96627,289247.2251,164185.8152,21
+20524,18320.5087,289652.8398,271535.3949,21
+20525,19329.97388,289265.2818,892117.381,21
+20526,19451.62264,60359.77866,0,21
+20527,19392.09834,60586.23471,2075171.804,21
+20528,19429.88013,60456.57154,1923763.666,21
+20529,19454.02481,906024.7279,1081745.402,21
+20530,19429.87587,138855.87,1303287.678,21
+20531,19491.80494,149291.8801,1963932.67,21
+20532,19449.41793,390874.6698,1234299.488,21
+20533,19536.89711,273810.4522,1242614.695,21
+20534,19470.06219,289787.4244,1973025.602,21
+20535,19551.67906,290966.3316,1253543.665,21
+20536,19515.23214,290081.2152,1255673.288,21
+20537,19530.09279,290806.1519,1986651.233,21
+20538,19572.35189,290594.2137,1265310.16,21
+20539,19553.52554,290824.2471,1266214.876,21
+20540,19572.34921,281108.965,1998932.059,21
+20541,19575.10621,281515.3666,1275227.794,21
+20542,19614.48317,281052.8465,1276190.888,21
+20543,19591.7009,281481.1174,2009046.22,21
+20544,19652.66117,281666.9737,1284444.176,21
+20545,19617.28235,280985.2895,1284651.767,21
+20546,19671.94213,269414.8126,2017701.469,21
+20547,19636.06064,230362.3505,1292360.983,21
+20548,19695.21674,367712.8701,1292986.857,21
+20549,19669.21265,276086.9102,2025234.675,21
+20550,0,285861.0225,1300204.255,21
+20551,0,297791.2075,2342042.77,21
+20552,0,292505.0926,1990822.756,21
+20553,73975.16339,292229.2545,1281750.242,21
+20554,2542.784375,291967.3229,1283138.511,21
+20555,12850.95509,292216.9735,2007743.722,21
+20556,365798.233,292156.0284,1294375.344,21
+20557,18857.3104,292263.6458,272623.3977,21
+20558,19824.3736,292239.3595,717245.5669,21
+20559,19873.51543,61255.45984,0,21
+20560,19894.79411,61521.89112,416177.0206,21
+20561,19859.62376,61469.15832,876003.243,21
+20562,19896.55447,913479.8721,2354726.432,21
+20563,19932.43386,142996.9407,1098303.97,21
+20564,19917.83255,149013.6921,1865006.977,21
+20565,19917.83179,394504.6721,1363091.299,21
+20566,19934.26862,276277.7385,1289342.018,21
+20567,19957.68346,292476.6898,2000989.329,21
+20568,19971.87007,293654.7412,1301719.156,21
+20569,19980.64642,292621.2882,1304115.658,21
+20570,19974.11891,293468.0851,2026197.771,21
+20571,19994.83234,293142.8726,1316723.117,21
+20572,19999.24897,293578.6516,1318398.914,21
+20573,20015.96128,293210.7488,2041659.089,21
+20574,20053.21354,293682.8918,1329582.996,21
+20575,20036.36517,293017.1398,1330449.19,21
+20576,20036.81409,284156.684,2054993.113,21
+20577,20057.49411,283737.3262,1340053.903,21
+20578,20090.62575,231522.7163,1341388.047,21
+20579,20098.90794,231990.3879,2065349.612,21
+20580,20053.2094,370722.0816,1350121.245,21
+20581,20136.32263,263849.6646,1349436.878,21
+20582,20097.15363,319653.2792,2072666.849,21
+20583,0,291303.3483,1356221.315,21
+20584,0,286486.9843,1354109.694,21
+20585,0,299247.1963,2078474.808,21
+20586,74747.19275,294161.4568,1361087.497,21
+20587,3186.479828,294981.5258,1358771.806,21
+20588,13414.41231,295167.3478,2082925.442,21
+20589,26273.53367,294738.7313,1364550.965,21
+20590,19289.12881,295364.1429,1185173.137,21
+20591,20161.86095,294962.6569,1909881.478,21
+20592,20210.70912,62626.98053,320710.0921,21
+20593,20180.04515,62411.09531,281433.4624,21
+20594,20192.19189,62624.62645,879236.0008,21
+20595,20198.60705,921076.9724,191359.503,21
+20596,20194.54087,147854.6951,2429064.102,21
+20597,20217.12584,149016.138,1851692.53,21
+20598,20173.63262,399348.2421,1212876.849,21
+20599,20217.12692,278730.7795,1455716.931,21
+20600,20217.27735,295686.2523,2041254.885,21
+20601,359853.9422,296664.787,1350675.041,21
+20602,20196.36928,296145.7602,1352827.886,21
+20603,20254.3582,296076.4629,2068985.476,21
+20604,20157.31664,297019.4307,1362355.142,21
+20605,20256.10868,296144.5493,1361483.986,21
+20606,20213.108,296944.1409,2079543.493,21
+20607,20198.61418,296397.8728,1369335.145,21
+20608,20214.93447,296805.5402,1369973.725,21
+20609,20254.36235,296922.8078,2086159.76,21
+20610,20196.37479,244082.8279,2392609.207,21
+20611,20215.30994,243821.8631,1345626.897,21
+20612,20237.59598,375528.2673,2056219.5,21
+20613,20254.36548,266272.6582,1357705.918,21
+20614,20173.64362,284019.5716,1359086.042,21
+20615,20277.02564,294390.0088,2070280.636,21
+20616,0,288062.3302,1369189.38,21
+20617,0,288488.8865,1369182.98,21
+20618,0,329273.1474,2081478.319,21
+20619,74919.82257,288333.1917,1377843.68,21
+20620,3434.283002,289812.6311,1376981.539,21
+20621,13660.77304,302457.074,2091040.004,21
+20622,26273.99423,297811.9854,1203959.056,21
+20623,19497.78183,298235.8043,1204738.546,21
+20624,20244.4725,298776.8854,2236338.748,21
+20625,20348.86925,63471.02383,1387566.29,21
+20626,20297.87331,63606.98203,264284.4379,21
+20627,20336.73811,63642.27716,896468.1903,21
+20628,20277.03931,931256.2194,177784.1996,21
+20629,20351.16327,152577.3852,275692.1343,21
+20630,19937.59864,147825.3134,882560.166,21
+20631,19883.50163,404702.2697,2255457.143,21
+20632,19817.96323,281620.522,1181475.513,21
+20633,19826.74276,299107.7375,1911811.195,21
+20634,19761.50695,299037.3706,1378545.567,21
+20635,19769.74045,299826.4922,1325356.645,21
+20636,19681.06995,299460.6347,2016763.341,21
+20637,19725.4837,299697.4994,1322941.092,21
+20638,19611.4449,299745.7911,1320253.935,21
+20639,19623.66511,299832.6028,2024588.948,21
+20640,19570.92036,299404.4299,1323556.589,21
+20641,19566.00873,304632.4226,1316792.156,21
+20642,19547.40347,251922.4556,2019129.345,21
+20643,19531.69669,254922.1483,1314021.421,21
+20644,359180.3306,401471.7574,1307287.604,21
+20645,19508.09958,292912.289,2009757.795,21
+20646,19490.87955,316461.3422,1304328.97,21
+20647,19488.25853,324632.6723,1297208.734,21
+20648,19470.99558,312207.5805,2000365.732,21
+20649,0,314344.1959,1293610.229,21
+20650,0,316256.1234,1287574.459,21
+20651,0,318983.2462,1989926.539,21
+20652,72407.43134,320483.9372,1283612.87,21
+20653,3217.664268,368440.9735,1276573.953,21
+20654,11302.28526,324953.6127,1811655.573,21
+20655,26241.85068,329074.5516,1105749.136,21
+20656,18301.1511,348690.9997,1387647.094,21
+20657,19330.39545,341413.066,1961607.804,21
+20658,19370.56874,71112.68291,1248375.028,21
+20659,19328.18025,71602.12015,1265609.834,21
+20660,19329.03898,889636.1814,1959135.185,21
+20661,19286.43973,171673.5877,1178087.964,21
+20662,19308.29129,321386.6923,257709.9857,21
+20663,19247.98933,397578.5833,853398.5461,21
+20664,19259.86348,354632.2457,161689.2122,21
+20665,19269.68498,362326.3366,256612.2029,21
+20666,19217.91,364031.9515,2441692.746,21
+20667,19209.2086,366899.6786,1110577.586,21
+20668,19236.38272,368391.3943,1128668.848,21
+20669,19185.63844,371431.1082,1924382.732,21
+20670,19175.82479,373462.6028,1184908.104,21
+20671,19118.9106,375994.5735,1188405.358,21
+20672,19118.90945,377882.1517,1887901.34,21
+20673,18884.58288,380357.4698,1193678.702,21
+20674,18844.20512,318963.9713,1190886.771,21
+20675,18754.8762,320980.7211,1894394.428,21
+20676,18713.94875,472218.9175,1194907.367,21
+20677,18623.93762,382640.4366,1192225.636,21
+20678,18595.24946,394733.4359,1897980.647,21
+20679,18491.74714,393426.0867,1194937.735,21
+20680,18494.01856,401259.0075,1191597.398,21
+20681,18339.76638,399356.9351,1899673.648,21
+20682,0,402388.7787,1193845.458,21
+20683,0,389697.0572,1190001.459,21
+20684,339661.4771,392172.9029,1899996.3,21
+20685,67334.46613,394292.9168,1191582.155,21
+20686,3568.933123,396495.0913,1030847.517,21
+20687,8777.425037,454811.0478,1743211.634,21
+20688,25243.27765,403425.6629,1291445.49,21
+20689,16582.11389,404759.5118,1182070.235,21
+20690,17699.47868,93088.49263,1883551.376,21
+20691,17731.19683,82319.45161,1193720.256,21
+20692,17576.904,1082313.583,1180027.383,21
+20693,17571.1571,274158.955,1894007.284,21
+20694,17420.32364,357070.281,1180662.848,21
+20695,17393.27803,486121.0697,1176472.553,21
+20696,17276.19035,429027.0768,870313.589,21
+20697,17234.34699,435565.632,154910.3061,21
+20698,17136.10878,438596.3667,259338.1305,21
+20699,16890.04713,439939.1249,867675.1887,21
+20700,16736.14031,443019.3083,1720120.764,21
+20701,16710.49291,440465.6545,1042074.064,21
+20702,16500.84543,437668.0464,1825273.855,21
+20703,16437.64544,436222.012,1176769.964,21
+20704,16300.86286,433721.9932,1133379.221,21
+20705,16192.27502,430951.4654,1851767.334,21
+20706,16109.33072,358742.7416,1134666.735,21
+20707,15964.78684,356505.8081,1130367.853,21
+20708,15880.50329,508213.7575,1846629.429,21
+20709,15731.97011,424349.7078,1127435.858,21
+20710,15648.85797,417522.5032,1121760.427,21
+20711,15460.91831,422719.9544,1841550.162,21
+20712,15416.53708,416507.5494,2148447.21,21
+20713,15239.76096,415329.0251,1088684.155,21
+20714,15135.68793,411859.6858,1801470.983,21
+20715,0,409761.2934,1088967.119,21
+20716,0,406599.6686,1085280.789,21
+20717,0,390693.7109,1802412.44,21
+20718,49263.55715,387926.6256,943399.6269,21
+20719,2472.156156,386091.9032,939923.1369,21
+20720,10982.27426,383901.9683,1883654.434,21
+20721,17811.97926,435328.2521,1078223.207,21
+20722,13590.25984,68469.14853,1061906.285,21
+20723,14000.82814,68599.14159,1804190.591,21
+20724,353515.4779,1006259.777,1068875.783,21
+20725,13702.43181,233707.0887,1064548.197,21
+20726,13625.45259,303468.4658,1792635.68,21
+20727,13407.41731,442498.1492,1060791.341,21
+20728,13342.07311,372007.0203,1055527.587,21
+20729,13144.50537,376746.6508,1787886.984,21
+20730,13050.68862,374329.7231,135419.8235,21
+20731,12905.39285,373428.3317,247344.3251,21
+20732,12792.1829,369414.3134,865551.4877,21
+20733,12695.22277,367998.1317,132947.708,21
+20734,12580.05116,365427.6058,244339.4529,21
+20735,12502.11888,363544.0314,2311305.736,21
+20736,12356.31885,360071.3836,909377.1139,21
+20737,12266.62086,359237.6812,961317.1352,21
+20738,12182.21418,293861.0099,1771456.144,21
+20739,12056.1251,291929.9666,994475.7771,21
+20740,11941.8462,444610.4168,996211.1559,21
+20741,11889.09815,332238.4212,1731371.671,21
+20742,11729.37661,349761.6256,994257.607,21
+20743,11668.45591,346008.3313,990586.5466,21
+20744,11551.84341,345984.5632,1730400.103,21
+20745,11463.35205,341812.2859,987574.7275,21
+20746,11336.78673,339102.1451,984320.7949,21
+20747,11273.40899,337159.2059,1727574.88,21
+20748,0,334504.4848,980382.6103,21
+20749,0,332142.9651,976749.4995,21
+20750,0,329362.6002,1600000.404,21
+20751,0,316584.3086,849470.3274,21
+20752,37924.70895,313316.6987,1040794.619,21
+20753,5495.893833,311888.7543,1715016.456,21
+20754,4720.707533,57907.93245,955278.0346,21
+20755,14488.28763,57815.33248,964850.9225,21
+20756,10043.53268,98499.07425,1711814.344,21
+20757,10545.08253,972216.6149,954128.9046,21
+20758,10479.63037,170405.2018,949422.0154,21
+20759,10491.15849,131729.3044,1706128.026,21
+20760,10449.39904,422636.2625,944388.3629,21
+20761,10492.03465,287183.7938,941038.7008,21
+20762,10454.57261,309249.016,2795180.899,21
+20763,10493.65331,312160.9479,915402.1989,21
+20764,350157.2212,314778.9674,911853.3301,21
+20765,10498.78354,316829.1172,863992.0139,21
+20766,10500.13504,318992.8936,114137.5558,21
+20767,10491.5089,321010.5287,231030.7589,21
+20768,10547.80657,324178.1862,860357.5766,21
+20769,10524.60213,325849.2574,112306.9367,21
+20770,10529.41622,269959.5967,228371.6535,21
+20771,10564.77715,271848.4402,2165833.382,21
+20772,10549.98069,427815.9497,787784.4056,21
+20773,10601.11562,312589.6684,803487.428,21
+20774,10554.62061,338164.2075,1675334.658,21
+20775,10602.0292,343324.7871,857997.6619,21
+20776,10626.06214,343388.0347,865016.5105,21
+20777,10626.72022,345375.7508,1619069.088,21
+20778,10607.10813,347161.2299,864044.309,21
+20779,10673.87606,349072.3692,862233.0529,21
+20780,10674.36784,350984.1108,1620688.58,21
+20781,10678.45592,353940.8509,860527.6052,21
+20782,0,355616.9328,749908.1376,21
+20783,0,357995.5706,1513943.824,21
+20784,0,359773.4541,748245.0944,21
+20785,0,362642.4169,935682.1588,21
+20786,39379.98703,351736.4687,1626984.577,21
+20787,4060.565956,62875.96994,831372.1214,21
+20788,5934.673383,63024.52843,857099.9084,21
+20789,14451.48772,930048.9079,1614376.25,21
+20790,10423.57275,236006.2018,841880.4924,21
+20791,10919.2623,312680.3018,838680.8942,21
+20792,10891.43898,416658.1528,1612355.93,21
+20793,10933.94219,380542.347,834595.6178,21
+20794,10933.33358,380197.9965,831725.6769,21
+20795,10968.06724,383969.2338,1608411.454,21
+20796,10978.64986,386068.3326,827243.4421,21
+20797,10981.5383,388433.0582,824029.3989,21
+20798,11012.44637,390506.7713,1603705.905,21
+20799,11046.08114,392917.866,819289.4017,21
+20800,11037.59672,394680.6936,816335.9739,21
+20801,11067.2154,397574.8964,886169.156,21
+20802,11082.12458,333128.1722,101382.9288,21
+20803,11091.87308,334678.3008,227711.0804,21
+20804,350765.4623,493471.3221,880917.8728,21
+20805,11155.57576,380972.9482,99434.86828,21
+20806,11138.12487,389805.1575,224586.8145,21
+20807,11157.8341,388621.5012,876037.8133,21
+20808,11177.91755,393963.141,97620.27553,21
+20809,11223.18623,393587.6364,221537.9327,21
+20810,11179.92589,394300.929,871482.1457,21
+20811,11242.87091,396430.4084,1232004.662,21
+20812,11223.162,397728.3964,1227217.726,21
+20813,11266.13636,399134.3016,1429854.193,21
+20814,11285.84557,400813.5716,695904.1657,21
+20815,11267.76889,402568.187,615069.3329,21
+20816,0,404438.7665,1435478.694,21
+20817,0,405770.7145,626038.9085,21
+20818,0,407901.8272,800469.6845,21
+20819,0,81744.83811,1488668.066,21
+20820,43512.51269,68748.92479,715319.6735,21
+20821,3657.054325,1013407.03,731351.7329,21
+20822,5263.040205,257276.1626,1499672.534,21
+20823,15815.47632,336186.0968,724421.3563,21
+20824,10753.14817,440502.3478,723662.9772,21
+20825,11348.55572,392248.3132,1505119.113,21
+20826,11315.33532,449183.8862,723385.4191,21
+20827,11345.62862,395527.8033,722065.2906,21
+20828,11313.83156,392992.4473,1508440.991,21
+20829,11322.69496,409365.4757,721008.9693,21
+20830,11281.96358,402377.2278,719946.8446,21
+20831,11319.46667,400632.0221,1509939.927,21
+20832,11173.03371,399819.9778,718656.2161,21
+20833,11210.57659,397017.1706,716802.1005,21
+20834,11160.95813,329854.0927,1510443.191,21
+20835,11146.24818,328753.9348,715239.6801,21
+20836,11145.47784,484519.0109,713415.6687,21
+20837,11105.31752,380093.558,1510026.181,21
+20838,11101.06251,397899.9794,711205.1051,21
+20839,11048.58522,392368.2218,709556.1432,21
+20840,11068.74423,392359.7698,1508655.554,21
+20841,11015.46293,389976.3149,707083.1369,21
+20842,10991.59743,389263.0097,217850.3881,21
+20843,10990.91949,386840.5002,885064.9588,21
+20844,10950.45523,386600.3281,87125.53331,21
+20845,10925.80833,384304.6337,215082.5574,21
+20846,10904.85395,384717.4404,880133.7857,21
+20847,350555.1866,382280.3481,85843.29879,21
+20848,10859.81171,381762.7698,0,21
+20849,10818.44063,380411.0037,795734.729,21
+20850,0,379718.9394,0,21
+20851,0,76282.22369,0,21
+20852,0,76008.73586,961699.0964,21
+20853,0,935001.8998,78073.83285,21
+20854,41618.10825,259058.3287,202056.2328,21
+20855,1242.545455,292770.527,883326.6927,21
+20856,6597.316043,419439.3627,82548.51681,21
+20857,14340.24225,356022.346,208878.2395,21
+20858,10160.32623,360304.2502,871629.2892,21
+20859,10623.32425,360848.9011,81977.22049,21
+20860,10618.87527,360755.4773,206835.3321,21
+20861,10577.04317,359943.2156,867608.3898,21
+20862,10610.83151,359179.0577,80745.11455,21
+20863,10530.60149,404125.6766,1349588.447,21
+20864,10556.42472,358489.9387,843295.2735,21
+20865,10509.98072,359404.4825,77864.41093,21
+20866,10489.28921,306887.8779,195331.6567,21
+20867,10475.98253,304180.532,841054.4181,21
+20868,10455.96297,457758.6527,76932.86384,21
+20869,10421.23085,342109.833,194177.0606,21
+20870,10432.6577,370418.5774,838946.9903,21
+20871,10400.50118,359113.7617,75990.80214,21
+20872,10354.40051,364055.1308,193092.948,21
+20873,10385.92386,359740.052,836900.5407,21
+20874,10333.56249,358940.8916,100056.6934,21
+20875,10332.88493,358136.008,212749.3507,21
+20876,10308.15107,356811.0255,872008.9905,21
+20877,10322.81496,356090.7149,110024.9729,21
+20878,10240.22522,355012.8414,212062.0804,21
+20879,10308.15528,354116.9075,870816.5997,21
+20880,10244.79111,352967.108,108849.1405,21
+20881,10250.99393,351825.4633,211325.9121,21
+20882,10230.0419,349302.2569,796869.7701,21
+20883,10261.75161,70726.0164,34906.97751,21
+20884,0,70449.81154,166868.4543,21
+20885,0,860973.17,794818.0218,21
+20886,0,200597.7873,174848.6668,21
+20887,0,285088.2468,196264.5227,21
+20888,39254.55604,386085.6238,860058.9758,21
+20889,339685.8063,332420.2029,109937.9221,21
+20890,7517.779442,336696.9126,207285.0329,21
+20891,13324.5559,333933.5631,863767.5046,21
+20892,9799.355339,332937.1702,103694.3579,21
+20893,10262.87557,322090.9135,207292.8104,21
+20894,10279.58375,321127.487,862970.6296,21
+20895,10284.13361,320241.0128,102493.9557,21
+20896,10266.87315,318160.7955,206564.5335,21
+20897,10279.71504,316711.958,862180.0518,21
+20898,10271.41487,256906.6952,101164.6427,21
+20899,10288.00219,255844.5367,205898.4233,21
+20900,10279.72701,405324.5394,861142.0718,21
+20901,10287.95379,284434.6714,99961.04003,21
+20902,10279.722,311239.2438,205108.3912,21
+20903,10285.59274,343659.9382,860197.3698,21
+20904,10279.6171,304892.1434,66193.94726,21
+20905,10285.58742,304788.0741,185300.5379,21
+20906,10243.18219,310599.2406,826031.0607,21
+20907,10290.12216,309178.3929,65234.75688,21
+20908,10249.08954,305419.0826,184234.9697,21
+20909,10237.08733,304528.3974,824284.7212,21
+20910,10232.38229,302716.3237,64285.35863,21
+20911,10219.48486,301183.4206,183215.148,21
+20912,10211.03286,300063.0763,822574.4724,21
+20913,10211.02979,298119.7583,82821.92342,21
+20914,10189.62578,296421.0046,1281275.473,21
+20915,10142.34976,62456.2774,833561.1618,21
+20916,10212.97087,62416.78463,28828.9117,21
+20917,10120.8265,61967.72753,153852.9689,21
+20918,0,867656.3966,771344.121,21
+20919,0,193656.7584,28338.89004,21
+20920,0,129187.9871,153178.1392,21
+20921,0,388820.723,894254.498,21
+20922,38894.39029,269561.8336,75186.72636,21
+20923,0,284198.8847,183455.5438,21
+20924,6748.685695,282516.086,836105.3933,21
+20925,13484.1664,281898.1567,85128.8736,21
+20926,9484.162017,279163.5362,189715.2462,21
+20927,10034.13734,278658.3885,830152.415,21
+20928,10012.32081,276952.2276,85069.4882,21
+20929,10008.21474,275121.0049,189461.8675,21
+20930,10033.26275,221597.9769,830399.0962,21
+20931,349646.6649,220607.9043,84083.06476,21
+20932,9986.390956,357456.4434,189079.6658,21
+20933,12422.24215,238187.8376,830631.9518,21
+20934,13939.34375,255363.2693,82994.89059,21
+20935,12483.86336,266561.3167,188744.8349,21
+20936,13291.07517,257640.8963,830644.3947,21
+20937,13278.10104,257367.1978,81888.76006,21
+20938,13351.42642,255823.1817,188372.5265,21
+20939,13468.22164,253814.8554,830584.3535,21
+20940,13573.33964,251119.6197,80806.14942,21
+20941,13646.77946,254364.3573,187863.8965,21
+20942,13641.70927,255706.8717,830423.2662,21
+20943,13740.90586,257334.9029,54149.99959,21
+20944,13714.88668,258908.0333,171903.3126,21
+20945,13851.52111,260287.3587,804152.1142,21
+20946,13881.37052,262292.9179,53283.41905,21
+20947,13932.09397,262911.5542,171159.12,21
+20948,13985.25753,51900.6936,803200.8817,21
+20949,14095.46491,51761.5209,66289.64382,21
+20950,14084.57928,52143.53507,183900.7128,21
+20951,14177.47471,804334.652,774337.4861,21
+20952,4221.457869,143909.3913,23033.16445,21
+20953,4406.553135,157159.8239,150925.9518,21
+20954,4314.120647,357530.4944,772809.0745,21
+20955,0,263658.6206,269606.2591,21
+20956,38363.47926,277694.6043,326766.1422,21
+20957,0,279758.308,1209850.057,21
+20958,5958.699245,280914.3727,372829.7952,21
+20959,13834.15173,311086.8119,374878.2669,21
+20960,9257.176194,283779.9412,1156460.69,21
+20961,9952.214114,287535.6386,382137.7212,21
+20962,9949.574606,242317.3695,381137.0001,21
+20963,9952.211194,240940.9361,1160933.394,21
+20964,9925.881388,383906.1026,380956.2235,21
+20965,9925.879979,273203.1978,379978.0712,21
+20966,14067.61511,295492.3385,1168869.289,21
+20967,16137.24936,306351.2587,1520699.231,21
+20968,13632.91856,302427.3948,370056.529,21
+20969,14539.17471,304380.2587,1149030.751,21
+20970,14547.61009,305668.4231,369338.1709,21
+20971,14606.59065,307363.4539,368405.4986,21
+20972,14491.49582,308741.1107,1156282.866,21
+20973,354217.8995,310110.5018,366985.6585,21
+20974,14561.28421,311753.0591,365922.9335,21
+20975,14490.95146,313378.6874,1162058.568,21
+20976,14630.79841,314665.9101,363980.9944,21
+20977,14663.93917,315975.019,364254.5691,21
+20978,14950.22183,317798.884,1165981.449,21
+20979,14810.15792,319006.7344,340138.0706,21
+20980,14793.54821,320680.7532,759814.5592,21
+20981,14835.22163,66092.20129,330553.9635,21
+20982,14824.10635,66393.5306,333981.0897,21
+20983,14790.66883,66330.58613,336750.3272,21
+20984,14822.80062,995149.964,527394.9084,21
+20985,14822.79919,235742.4409,369396.472,21
+20986,5318.903389,140559.1458,60558.86299,21
+20987,5318.903113,443236.8519,21465.07226,21
+20988,5318.902835,319798.9192,62240.89429,21
+20989,5498.910435,322957.3235,221459.9311,21
+20990,5318.902276,326743.1076,362151.6737,21
+20991,42677.54825,327080.6784,198301.9126,21
+20992,0,329146.263,240402.5881,21
+20993,5711.834111,330487.0231,339426.4026,21
+20994,12519.9635,272563.7364,954801.1304,21
+20995,8569.05651,273981.7701,327897.5581,21
+20996,8995.581294,425543.8982,311163.8148,21
+20997,8979.581125,355251.3322,1023536.785,21
+20998,8894.204748,340800.0624,284958.4903,21
+20999,8870.082382,338242.7047,317379.2056,21
+21000,8775.985847,354969.7458,1042251.409,21
+21001,11740.97558,352993.8958,285007.1997,21
+21002,16947.73978,352594.342,313077.6164,21
+21003,12529.58793,354492.8518,1053624.685,21
+21004,13961.12344,356047.9464,284314.9039,21
+21005,13806.18067,358108.7005,314323.86,21
+21006,13786.06741,358669.2433,1060975.599,21
+21007,13678.10436,361068.9372,283219.5298,21
+21008,13683.08538,362313.4984,315152.385,21
+21009,13521.97392,363531.9702,1067154.063,21
+21010,13450.57154,364554.4016,281584.2447,21
+21011,13485.19582,367166.6207,315544.6247,21
+21012,13301.18119,367744.4602,1071952.923,21
+21013,13260.6651,369325.9089,264913.5808,21
+21014,13157.51183,73580.14494,306729.3052,21
+21015,352610.2615,73953.86094,1060658.698,21
+21016,13057.6719,942780.6948,266957.0473,21
+21017,12948.54075,228608.8521,313081.952,21
+21018,12798.82501,316513.1194,2225267.231,21
+21019,12792.00113,430698.5676,267633.9675,21
+21020,12671.67319,376385.7466,663799.0412,21
+21021,5318.885124,382810.6943,260935.2831,21
+21022,5138.084623,385087.9409,264832.3852,21
+21023,5318.883638,385650.6886,45994.95748,21
+21024,5138.083234,386704.2388,334862.3611,21
+21025,5318.882135,387029.9307,295648.6305,21
+21026,35466.49596,324411.9294,12242.7207,21
+21027,5228.581226,314518.7645,15677.32168,21
+21028,1884.417831,468699.0163,49910.62473,21
+21029,10633.67257,367031.0037,393036.4085,21
+21030,6018.614297,385098.5308,195805.7417,21
+21031,6720.448616,381991.1212,199226.8719,21
+21032,6709.708928,437894.9373,198459.1709,21
+21033,6717.32617,387060.4401,414185.3127,21
+21034,6685.11684,390489.6961,455141.2098,21
+21035,6706.597662,408589.8524,192659.9169,21
+21036,6695.857881,402581.7927,195391.6652,21
+21037,6668.105111,404345.0935,216517.4298,21
+21038,6695.847704,405847.5739,334825.526,21
+21039,14085.36374,407247.0571,429334.6461,21
+21040,11088.50475,408887.2882,433663.8302,21
+21041,11248.04483,409983.0118,211884.2541,21
+21042,11610.62243,410962.8074,213008.3613,21
+21043,11715.44188,413389.4599,218492.4015,21
+21044,11575.14706,414057.9217,386036.4119,21
+21045,11610.60446,415107.983,331550.6402,21
+21046,11596.65311,80857.32327,334157.1258,21
+21047,11690.75004,81156.11905,327820.5672,21
+21048,11596.64084,1073412.619,323463.811,21
+21049,11652.05124,270789.891,321254.2403,21
+21050,11596.62838,351986.7709,323309.8774,21
+21051,11673.55668,479202.1758,886739.7771,21
+21052,11561.1239,421280.3374,199388.6029,21
+21053,11659.54111,428121.843,257596.4593,21
+21054,12268.86843,427875.1167,917369.4326,21
+21055,12252.22123,428911.1904,197805.0049,21
+21056,5579.62597,430775.7872,252218.4009,21
+21057,345337.9742,432150.4212,928642.486,21
+21058,5857.21041,363306.1495,195941.0483,21
+21059,5902.642052,365346.2101,148975.2765,21
+21060,5902.641268,521980.5555,771000.6457,21
+21061,36272.1746,430591.5781,34252.05186,21
+21062,6128.051836,413529.336,148544.6019,21
+21063,6938.394687,417194.4681,771355.6224,21
+21064,17034.33751,411596.177,33632.18805,21
+21065,5765.340629,409277.2106,482332.5501,21
+21066,6562.522699,455476.23,159017.2136,21
+21067,6569.948118,404568.8228,179818.562,21
+21068,6584.036006,402629.8906,1182271.956,21
+21069,6545.073818,417956.2832,353198.3599,21
+21070,6545.071731,405779.0813,384000.3419,21
+21071,6545.069656,404392.9649,143605.1447,21
+21072,6534.300647,401819.4415,146093.4372,21
+21073,6527.489012,398404.5201,173075.6439,21
+21074,6520.147773,395905.0806,294817.2086,21
+21075,6505.96741,393102.2861,140306.3703,21
+21076,6491.757403,390537.9929,139763.6332,21
+21077,6505.963428,387107.5126,361329.6508,21
+21078,6477.515696,76514.82104,291197.3505,21
+21079,6477.513756,76014.4801,265564.081,21
+21080,6466.728569,977271.479,270048.5348,21
+21081,6477.509915,227581.7203,262972.471,21
+21082,6438.159543,298653.0666,259105.7996,21
+21083,6463.238527,431653.5555,255952.1279,21
+21084,6427.356192,362649.6719,255947.842,21
+21085,6448.937249,367045.1697,781636.1585,21
+21086,6427.352562,364059.0529,126230.1787,21
+21087,6420.248106,362037.6099,198241.6448,21
+21088,6413.021351,358187.3662,810232.4354,21
+21089,6420.244601,354826.0799,124537.3901,21
+21090,6398.660039,290801.7105,193762.0919,21
+21091,0,287808.3881,820640.2392,21
+21092,0,443586.5509,122666.5876,21
+21093,0,317510.9297,193839.1529,21
+21094,0,343725.693,827450.1623,21
+21095,0,338112.0307,4662.455806,21
+21096,30093.4921,327084.0573,116103.9817,21
+21097,0,323135.8373,713177.7606,21
+21098,858.5012999,320724.8742,4537.304828,21
+21099,348690.174,317597.9364,116170.1623,21
+21100,6507.381537,315600.3816,714216.0727,21
+21101,6085.702995,312469.0748,66323.39009,21
+21102,6340.910147,309981.8115,178429.5311,21
+21103,6351.708282,345106.0634,821422.0366,21
+21104,6326.396845,304411.0091,105817.2285,21
+21105,6340.905917,302502.6217,187053.5852,21
+21106,6333.435554,312059.7089,825711.8266,21
+21107,6301.035482,305141.6669,103886.5213,21
+21108,6326.391512,302308.9754,187663.8897,21
+21109,6318.859373,300127.1649,1815053.285,21
+21110,6311.847683,63654.38136,100604.5548,21
+21111,6322.645991,63089.60281,420065.4309,21
+21112,6322.644758,62882.00017,97670.72471,21
+21113,6304.251068,896322.0841,97375.73818,21
+21114,6311.842784,149593.3976,93195.66487,21
+21115,6304.248685,135138.7508,308140.4192,21
+21116,6282.664845,384623.1125,318988.5624,21
+21117,6304.246349,261012.1038,89355.74338,21
+21118,6304.245197,275789.2048,91475.60604,21
+21119,6268.026872,271975.8504,114219.5217,21
+21120,6289.608397,267944.6368,302008.3358,21
+21121,6304.241969,271173.7522,91907.66921,21
+21122,6315.007754,219506.8902,90336.3536,21
+21123,6325.757242,221062.1369,90369.64606,21
+21124,6325.756282,366899.3675,322585.7305,21
+21125,6354.930781,245788.0823,316701.4076,21
+21126,0,275534.2864,90646.75592,21
+21127,0,285477.0179,93981.98209,21
+21128,0,280631.2317,114697.916,21
+21129,0,282694.2345,232766.258,21
+21130,0,283933.1964,130355.4168,21
+21131,30820.21223,285771.1449,243034.7575,21
+21132,0,286604.4845,224680.7335,21
+21133,657.8338809,280904.9207,135267.6068,21
+21134,9367.581423,282049.0227,156577.1751,21
+21135,6699.924871,283252.316,148251.0645,21
+21136,6203.394148,285022.853,143578.3946,21
+21137,6519.522297,285834.0202,139675.1148,21
+21138,346076.2397,288178.4357,135991.9081,21
+21139,6519.520602,288803.8503,608275.7458,21
+21140,6604.887488,290718.6896,2964.742584,21
+21141,6569.458419,291437.4446,89802.89143,21
+21142,6590.528357,293595.612,632524.5909,21
+21143,6619.212369,90211.91927,3152.72568,21
+21144,6625.892823,55671.96107,121635.5654,21
+21145,6640.21933,58258.24853,725496.1394,21
+21146,6654.51573,942584.626,90090.04687,21
+21147,6689.728829,176100.4858,154649.9145,21
+21148,6696.346134,154015.9569,742544.9341,21
+21149,6703.964563,418982.4708,89523.33848,21
+21150,6745.673197,297336.8831,1001397.006,21
+21151,6739.055755,315538.1891,745055.6586,21
+21152,6759.879147,317752.2907,92583.93889,21
+21153,6780.641822,318974.5704,350917.5362,21
+21154,6788.203645,263681.9089,93449.28209,21
+21155,6829.669388,264547.6782,97418.71994,21
+21156,6808.965562,419311.306,123046.4642,21
+21157,6843.786617,296219.9388,203965.2703,21
+21158,6878.518296,325097.815,301737.1949,21
+21159,6868.203495,332439.6511,193250.1845,21
+21160,6878.516799,329782.0834,226816.7253,21
+21161,0,331587.9679,215577.8875,21
+21162,0,333062.564,215864.9767,21
+21163,0,334585.3255,214396.326,21
+21164,0,335967.4521,210142.7708,21
+21165,0,337653.3735,214318.5743,21
+21166,33263.65054,339256.2543,209411.2705,21
+21167,0,341091.2588,710802.0989,21
+21168,1478.613827,342607.1026,105899.7745,21
+21169,11156.48777,343793.8202,168875.182,21
+21170,6512.723784,345791.096,745645.6893,21
+21171,7058.920168,347505.5217,109675.6701,21
+21172,7140.429377,348279.6969,170196.1738,21
+21173,7147.65624,340558.3396,764029.3225,21
+21174,7188.178313,340602.824,4161.781776,21
+21175,7167.945063,343447.9426,95375.75456,21
+21176,7215.582446,60871.76626,662120.7233,21
+21177,346732.2505,61156.0926,4451.052284,21
+21178,7235.756367,893812.6229,97049.74664,21
+21179,7256.479805,224156.381,666406.7102,21
+21180,7343.962197,309809.9059,4844.260875,21
+21181,7384.450636,392975.9879,98680.22797,21
+21182,7478.009019,362140.5211,670476.0785,21
+21183,7478.010472,356672.7756,5253.069567,21
+21184,7570.917226,357249.1269,100395.6525,21
+21185,7617.12946,355491.3401,674343.1056,21
+21186,7689.400373,293206.8456,5638.35672,21
+21187,7709.075087,292950.3094,151010.5618,21
+21188,7806.731719,446749.8013,695728.865,21
+21189,8399.058452,324931.6562,25328.07185,21
+21190,8422.752527,350904.5313,117308.9467,21
+21191,8529.977229,349022.8975,1585709.332,21
+21192,8688.884632,347575.3571,22652.82475,21
+21193,8780.885435,345046.5676,114146.7667,21
+21194,8933.221102,344205.0973,695224.6451,21
+21195,9042.554328,342232.6964,23198.0936,21
+21196,0,341490.3467,116695.0849,21
+21197,0,339596.238,699995.2877,21
+21198,0,338772.0897,23974.51095,21
+21199,0,337081.0198,118779.4818,21
+21200,35881.7237,336097.7106,704566.4044,21
+21201,1794.433744,334289.6214,24739.75162,21
+21202,5482.765996,333435.4747,120832.0765,21
+21203,13647.3077,331766.4088,708914.4957,21
+21204,9451.325095,330483.5114,25542.90645,21
+21205,10203.10061,329398.1478,122761.2648,21
+21206,10301.87392,327712.322,713051.1102,21
+21207,10413.47277,326873.9254,26319.26238,21
+21208,10498.959,67759.07501,124627.6675,21
+21209,10662.66585,57932.08604,717051.1506,21
+21210,10718.62901,57753.16622,27062.5586,21
+21211,10820.15039,990254.4978,126422.8651,21
+21212,10976.33871,194961.9537,720845.1907,21
+21213,11051.84575,119879.5462,27782.07929,21
+21214,11149.18907,431235.5676,128190.8772,21
+21215,11265.07664,288455.9862,724457.369,21
+21216,350896.4178,343706.3282,28554.78387,21
+21217,11481.59143,305499.4717,0,21
+21218,11562.96672,248061.2149,702645.2112,21
+21219,11693.75417,259210.7218,151.2131109,21
+21220,11764.51408,407387.9911,0,21
+21221,11923.18251,279929.3349,708132.1553,21
+21222,11968.05807,302615.2203,147.193096,21
+21223,12092.19085,312722.4418,0,21
+21224,12215.55525,304084.3625,713366.6982,21
+21225,12282.737,303274.9449,149.2440897,21
+21226,12420.05858,302167.4126,183063.4154,21
+21227,12482.91393,300945.4293,739299.8323,21
+21228,12628.05564,299203.3267,27174.17158,21
+21229,12707.30042,297696.8643,137444.1045,21
+21230,0,296385.301,751468.2192,21
+21231,0,294934.3445,31406.67918,21
+21232,0,293688.5001,1114150.455,21
+21233,43761.64907,292294.8609,737828.4302,21
+21234,5926.264974,291215.3286,32710.74227,21
+21235,8326.284,289276.8574,136735.3451,21
+21236,17119.97411,288124.3502,740839.0972,21
+21237,13095.62823,286537.0224,33510.76748,21
+21238,13632.70086,284436.0716,138145.0079,21
+21239,13744.16353,283531.0777,743791.0514,21
+21240,13860.51673,280456.2287,34251.80369,21
+21241,14029.69524,61774.76044,139767.3678,21
+21242,14083.28543,61950.63538,746790.7562,21
+21243,14141.69493,61962.87096,35467.33848,21
+21244,14181.37633,862184.7699,141237.36,21
+21245,243614.0157,129098.7952,749682.7138,21
+21246,14308.52749,157738.7611,36410.34484,21
+21247,33484.32826,365156.7409,142737.8038,21
+21248,58903.85539,261618.5611,752363.6094,21
+21249,74436.81868,275949.6598,37427.55713,21
+21250,56369.45603,222191.6494,144194.6749,21
+21251,61309.27678,222382.1031,755017.6284,21
+21252,61604.57086,371281.4449,38385.71022,21
+21253,61645.13371,243563.616,145620.0347,21
+21254,62328.4163,273222.0329,757562.2924,21
+21255,401703.3561,282319.4405,39375.56281,21
+21256,62418.73765,307406.1635,0,21
+21257,62981.30088,276615.0582,724029.4702,21
+21258,62968.85104,279233.0761,153.402459,21
+21259,63209.28239,285899.35,0,21
+21260,63853.68191,284882.7664,728440.3463,21
+21261,63512.5892,283651.0198,153.9903064,21
+21262,64924.14539,284083.1197,209097.8682,21
+21263,49212.29038,284097.432,762035.2794,21
+21264,49624.74991,284751.9025,34903.11005,21
+21265,49743.38711,284641.0311,159406.3958,21
+21266,101368.9889,284118.185,771470.4043,21
+21267,60574.90069,285112.3126,43559.52055,21
+21268,56677.63225,284603.1906,154238.9212,21
+21269,72753.66086,284692.2427,774062.7329,21
+21270,66540.94324,284781.2069,44531.17728,21
+21271,67537.37465,284997.5857,155276.4725,21
+21272,67833.91378,284396.0408,775742.6502,21
+21273,68422.08108,285061.915,45443.42954,21
+21274,68530.33419,62110.63054,156381.6362,21
+21275,16775.03003,62109.76705,1783884.305,21
+21276,16903.79139,62140.37079,45608.58766,21
+21277,16995.99085,867248.4048,151874.1382,21
+21278,17018.91445,130548.7196,765384.8598,21
+21279,17174.10536,165326.6744,46637.57649,21
+21280,17289.27966,376318.9954,153255.2207,21
+21281,17276.66959,270832.9419,767905.7987,21
+21282,17477.50079,232247.3838,47618.22062,21
+21283,284102.5135,232298.3353,154588.6636,21
+21284,17592.99616,382040.6102,770309.6112,21
+21285,23571.99614,253514.0585,48604.79985,21
+21286,103236.1267,275339.8556,155915.6902,21
+21287,71631.17895,285207.3184,772613.6684,21
+21288,72067.81601,278014.421,49625.61834,21
+21289,74048.80268,278730.2978,157195.9794,21
+21290,74181.47756,278966.023,774856.203,21
+21291,74514.61985,278557.5423,50604.9417,21
+21292,74807.95393,279167.6463,0,21
+21293,74858.88539,279067.9893,729721.6452,21
+21294,415045.1002,278625.1338,104.3291018,21
+21295,75369.05545,310826.1615,0,21
+21296,57258.59985,278612.0908,852461.3694,21
+21297,57478.59384,282000.5758,42702.59858,21
+21298,57424.05536,289155.773,156243.5826,21
+21299,118990.6781,286765.8219,794532.2232,21
+21300,71778.3196,287011.1021,53018.10666,21
+21301,65757.82799,286032.243,164306.5398,21
+21302,83962.44372,287122.5326,788560.0001,21
+21303,76706.12581,286774.32,54272.3677,21
+21304,77525.7222,286731.2599,401218.3721,21
+21305,77655.63696,286774.1202,53471.82563,21
+21306,77944.37162,286444.1212,57446.36095,21
+21307,78095.16929,62417.28637,53614.30559,21
+21308,78083.49563,62240.46754,300903.6358,21
+21309,78359.39889,62208.36784,297953.4019,21
+21310,78676.39933,871277.1491,52453.57232,21
+21311,79837.23661,131915.31,55687.94719,21
+21312,80284.10958,164289.8494,93248.45111,21
+21313,19705.43976,377146.9422,204505.7943,21
+21314,19712.20861,217013.0789,296325.0749,21
+21315,19790.2093,231534.2611,261567.3077,21
+21316,19812.13747,381500.6165,51454.79226,21
+21317,19892.51029,252723.69,54231.27701,21
+21318,19926.91416,283035.3853,51711.31294,21
+21319,19960.99277,290957.6726,1162239.769,21
+21320,308264.6318,285494.0741,248599.6052,21
+21321,20062.95681,285562.7966,50246.76161,21
+21322,34777.34769,284961.9134,52822.76347,21
+21323,116749.0998,285758.7926,72403.92125,21
+21324,75634.0749,284901.2233,190635.9083,21
+21325,80857.64934,277614.0982,63496.2122,21
+21326,81465.15021,277247.2202,0,21
+21327,85251.55501,276572.8386,0,21
+21328,85792.0828,277821.3724,0,21
+21329,64665.89459,276320.1537,0,21
+21330,65523.97572,277032.0917,109784.6863,21
+21331,65596.77885,276796.0567,42351.97829,21
+21332,134197.8615,276341.9227,244055.7772,21
+21333,420481.6201,276789.9739,229224.2943,21
+21334,74384.08244,276162.1329,172725.2037,21
+21335,94975.11637,308004.0256,185443.8766,21
+21336,86575.6715,276195.5727,177890.1416,21
+21337,88030.76751,278492.9706,174020.6195,21
+21338,87966.74201,285518.1941,170911.8023,21
+21339,88405.94978,284016.1289,167992.4049,21
+21340,88716.13311,60930.19683,645349.8587,21
+21341,88954.45831,61679.90211,49304.51539,21
+21342,89061.03824,61393.1271,126328.3571,21
+21343,89708.19492,861306.8046,671711.2459,21
+21344,89587.06915,126449.1183,50027.92653,21
+21345,89992.51498,166275.2507,125243.4417,21
+21346,90057.49056,318305.6771,682786.7812,21
+21347,90683.6101,214849.1557,50747.45453,21
+21348,90616.07176,378952.2925,127788.9615,21
+21349,90918.55994,250017.0507,691129.2478,21
+21350,21337.72035,280691.5094,51469.53628,21
+21351,21349.42399,289634.1905,130819.5188,21
+21352,21444.65328,282858.949,698672.2662,21
+21353,21457.42932,283272.828,52107.56782,21
+21354,21459.87591,283268.7143,133820.3522,21
+21355,21577.67645,282862.8752,705656.7829,21
+21356,315611.9122,282967.7433,52785.31605,21
+21357,21624.46685,282692.9516,136619.8604,21
+21358,40009.98807,282532.7847,712185.1379,21
+21359,131856.2699,282675.6822,53406.30759,21
+21360,88691.08959,282578.3615,0,21
+21361,93273.61762,283923.3016,667182.1169,21
+21362,73714.19306,285936.8425,5.377237976,21
+21363,74343.36398,286804.0922,985850.7008,21
+21364,75071.3514,287978.3378,778323.3368,21
+21365,150645.2306,281417.5886,48098.61719,21
+21366,93705.60308,282206.4746,318112.1074,21
+21367,86114.89298,283287.1088,60333.0475,21
+21368,109229.2413,284382.7227,58189.22654,21
+21369,100679.7056,285339.6356,92083.69896,21
+21370,102912.0391,286091.5541,174754.355,21
+21371,103476.1757,287516.6446,267649.9618,21
+21372,104431.5621,287501.9569,233514.8833,21
+21373,445352.1863,55565.26555,55067.48484,21
+21374,105963.3139,86987.32827,57629.42404,21
+21375,107226.8439,55755.09169,78593.49187,21
+21376,107953.2711,908384.9122,259580.8887,21
+21377,109192.3795,157912.7628,71790.61707,21
+21378,109751.7356,105260.4532,57093.29673,21
+21379,110565.485,344929.5322,56075.4203,21
+21380,111851.6273,385774.0487,244774.1609,21
+21381,112487.1795,271369.1415,212849.0224,21
+21382,113427.9732,301368.7476,55834.72082,21
+21383,114364.6863,312850.1001,58227.99305,21
+21384,115148.3881,306244.2096,79968.47445,21
+21385,116073.0517,308151.6722,210711.9406,21
+21386,25385.6838,308542.8602,56512.58838,21
+21387,25546.26653,309724.8322,56907.28954,21
+21388,25667.82976,310192.5869,57190.46623,21
+21389,25746.94771,311988.1501,234813.7957,21
+21390,352621.7667,311890.3062,224292.7377,21
+21391,55768.49718,313055.6882,56921.74865,21
+21392,87761.42788,313746.6836,59258.36369,21
+21393,152361.0753,314350.1434,81141.35281,21
+21394,120618.3597,315521.7026,0,21
+21395,98329.8513,316560.7842,0,21
+21396,99428.87016,316716.5249,0,21
+21397,177316.4323,317631.6744,234391.8498,21
+21398,116514.7484,318938.4201,160233.2896,21
+21399,122255.3541,319470.0888,163348.2742,21
+21400,134323.0572,319996.6568,169603.7515,21
+21401,130219.2783,321433.2603,633005.0845,21
+21402,131548.9437,321351.365,59700.12941,21
+21403,132289.5041,322761.0748,130680.1813,21
+21404,133416.0105,314714.9394,660920.0123,21
+21405,134021.0268,315206.3412,61297.68339,21
+21406,135144.936,58583.51979,763507.5491,21
+21407,135852.573,58564.7267,1823102.844,21
+21408,136832.4737,58792.68413,412551.102,21
+21409,137571.7506,1000338.619,418731.3174,21
+21410,138645.3405,141301.3688,1144421.213,21
+21411,139577.645,76044.155,459397.9411,21
+21412,140331.334,578848.8022,476856.8549,21
+21413,480638.2729,271700.1854,1155723.889,21
+21414,142271.2292,323808.5904,495873.3862,21
+21415,142865.5604,340169.8618,502993.0402,21
+21416,144183.6507,333351.3462,1201977.532,21
+21417,145733.7671,334253.5947,521115.0193,21
+21418,146060.5656,335302.3576,527297.5211,21
+21419,147335.4594,336242.4107,1245384.273,21
+21420,30800.72512,335878.7313,544517.616,21
+21421,31008.56106,337326.8732,548678.0826,21
+21422,30914.3894,336631.7317,1279709.135,21
+21423,415595.7053,337139.8382,559708.6882,21
+21424,78042.13435,337611.3736,563075.3205,21
+21425,114068.1548,337323.7806,1308699.594,21
+21426,179619.3666,338141.5293,572895.0308,21
+21427,116216.8575,338049.7104,493509.1153,21
+21428,119277.9977,338471.4093,1250635.741,21
+21429,204662.3239,338351.2829,500824.0782,21
+21430,142438.4901,339171.6445,674519.1681,21
+21431,144029.4889,338759.1677,1342903.763,21
+21432,155657.9584,339544.3372,585058.3927,21
+21433,151520.2743,339283.9628,604916.6107,21
+21434,151849.2125,339832.1171,1372865.067,21
+21435,152156.7397,339861.5945,603376.3958,21
+21436,152799.0773,340258.1668,216930.688,21
+21437,155011.4508,339818.9918,860689.6855,21
+21438,153968.5736,340991.3435,86585.1271,21
+21439,154853.3911,68913.90731,216019.47,21
+21440,155248.24,69248.51555,858417.1221,21
+21441,155227.5863,68978.98169,86657.20264,21
+21442,155747.2253,992892.1514,215250.6718,21
+21443,156166.236,169028.1843,856503.6388,21
+21444,156261.2322,229669.3776,86754.82097,21
+21445,156804.8107,424571.1502,214616.1633,21
+21446,156893.3525,318683.2253,854692.3994,21
+21447,157308.2496,334718.5238,1139571.777,21
+21448,157598.9336,334515.6351,526261.5079,21
+21449,157816.0338,369421.5207,1313702.386,21
+21450,158226.4221,334724.6399,600639.7475,21
+21451,158468.4355,337175.2861,629344.4097,21
+21452,158851.4103,347180.9651,1378290.292,21
+21453,33724.43385,343941.7062,609946.3274,21
+21454,33789.4684,344370.2403,612974.6026,21
+21455,33853.6442,344128.2629,1404490.608,21
+21456,786759.087,344986.2634,619053.6875,21
+21457,94854.68438,344283.4767,621385.4639,21
+21458,111127.584,344910.4602,1420213.964,21
+21459,162598.946,344909.2362,1793139.585,21
+21460,122638.698,345117.0848,524677.3795,21
+21461,212727.9346,345284.3861,1310674.806,21
+21462,154336.8219,344861.7755,530103.438,21
+21463,152336.0755,345270.0716,729083.5626,21
+21464,163777.3972,345406.6697,1404606.395,21
+21465,162933.2356,345552.1342,615267.0712,21
+21466,168755.7401,345186.6539,640944.6844,21
+21467,165133.4476,345716.6374,1428348.357,21
+21468,167416.8355,345335.1794,635046.2827,21
+21469,167731.2885,345869.4895,636887.896,21
+21470,168419.7788,345478.3668,1442349.319,21
+21471,169064.7077,345628.2122,641551.3416,21
+21472,169491.8011,68969.43501,643242.9063,21
+21473,170203.2547,69409.34413,1453803.802,21
+21474,170968.5946,813653.5355,647255.2437,21
+21475,171179.7835,106537.5783,648665.7334,21
+21476,172322.043,410728.5788,1464383.156,21
+21477,171934.0808,356458.7032,95453.44619,21
+21478,173394.6383,340940.4748,239403.5881,21
+21479,173608.3935,339587.182,904183.0562,21
+21480,174205.2361,337973.4427,95158.79453,15.6
+21481,174239.0678,336523.7249,237633.2227,15.6
+21482,173877.5885,336349.5285,899790.9646,15.6
+21483,174237.6168,336325.8781,95690.4384,15.6
+21484,173633.3845,335383.4079,236669.1659,15.6
+21485,174346.0388,335555.7456,2066828.137,15.6
+21486,35487.19354,334638.6875,569976.6713,15.6
+21487,35703.41508,369232.6673,579168.9885,15.6
+21488,35530.75129,334592.2322,1483887.72,15.6
+21489,464221.9598,335153.2216,676024.8456,15.6
+21490,106767.1756,344725.8185,660857.7289,15.6
+21491,84325.52363,340829.0462,1475972.211,15.6
+21492,176079.1387,340744.2772,677511.268,15.6
+21493,218233.8739,340379.0375,581969.8714,15.6
+21494,165685.6389,340015.5226,1394372.859,15.6
+21495,161748.7907,340101.3122,590614.9681,15.6
+21496,176862.0089,339402.7863,822210.514,15.6
+21497,173838.5189,339416.0353,1502794.965,15.6
+21498,172176.6112,338224.8414,687670.8576,15.6
+21499,512272.9702,338830.6352,721327.4444,15.6
+21500,172473.424,337806.8967,1524501.73,15.6
+21501,172189.5446,337293.5768,716836.7312,15.6
+21502,172296.5475,337452.3199,721014.6965,15.6
+21503,172201.2613,336779.0998,1540950.467,15.6
+21504,171678.4787,67449.84196,728960.6419,15.6
+21505,172067.8777,67558.25473,1942556.366,15.6
+21506,171427.912,8221.717465,1515453.488,15.6
+21507,171581.4985,989311.4777,723640.1677,15.6
+21508,171315.3664,327116.3158,727532.3675,15.6
+21509,171009.5873,104173.2021,1534326.718,15.6
+21510,171237.5968,455743.5826,737421.354,15.6
+21511,170752.3876,321917.794,740922.8276,15.6
+21512,171032.4484,333804.6871,1551344.329,15.6
+21513,170201.1881,333283.6672,750026.7901,15.6
+21514,170459.4234,333658.0391,754216.3926,15.6
+21515,170565.823,332995.3488,916861.2704,15.6
+21516,169727.2892,333926.1839,109305.5268,15.6
+21517,170144.3391,325184.362,252083.6628,15.6
+21518,169951.399,324737.4864,912135.143,15.6
+21519,35113.44173,324228.3516,109827.7413,15.6
+21520,35220.79672,324362.693,250787.0236,15.6
+21521,35097.70638,323845.4822,907897.985,15.6
+21522,452632.1527,322765.46,1470683.605,15.6
+21523,60133.36133,323139.3745,668973.2828,15.6
+21524,88982.78523,322950.348,1471884.293,15.6
+21525,252773.6059,321732.3554,836622.4589,15.6
+21526,154435.3878,354780.4776,654939.9773,15.6
+21527,156413.7631,321502.5395,1459737.991,15.6
+21528,176686.8841,323562.8563,671030.9735,15.6
+21529,166549.0815,329925.9087,933309.837,15.6
+21530,168320.3332,326982.9708,1586246.797,15.6
+21531,167580.5349,326690.8162,780469.4189,15.6
+21532,167611.0868,325913.3082,819598.7008,15.6
+21533,167434.8416,326097.0277,1605864.361,15.6
+21534,167032.2867,325426.3821,814272.8177,15.6
+21535,167143.167,325482.1552,818073.1104,15.6
+21536,166854.1637,325074.2596,1624613.723,15.6
+21537,166556.5124,65418.69813,827820.8558,15.6
+21538,166684.3064,7676.333697,831822.4803,15.6
+21539,505629.5095,7738.452035,1639752.083,15.6
+21540,166048.7997,1110533.431,841040.115,15.6
+21541,164307.7339,170342.6635,841654.4034,15.6
+21542,163420.6476,132979.2928,1647829.105,15.6
+21543,162573.7157,451552.7567,844665.1977,15.6
+21544,162276.3739,305005.0286,845172.1611,15.6
+21545,161272.0386,323374.1905,1652601.853,15.6
+21546,160622.1002,323708.6309,847446.0678,15.6
+21547,159714.8413,324655.6463,848006.5173,15.6
+21548,159080.1298,323727.077,1656648.476,15.6
+21549,158471.3835,324447.2864,850174.2998,15.6
+21550,157576.4568,324254.1782,850904.0179,15.6
+21551,156765.1556,324056.6305,2843996.373,15.6
+21552,33877.57342,324263.2241,117222.9311,15.6
+21553,33588.15655,323558.8754,253115.743,15.6
+21554,33609.48063,324482.8746,900171.9722,15.6
+21555,0,323443.441,116790.6714,15.6
+21556,419774.0196,316697.0155,251425.7828,15.6
+21557,137536.565,316134.4239,896270.7596,15.6
+21558,68824.17855,316284.5618,1540494.309,15.6
+21559,191178.8488,316542.8169,589999.3309,15.6
+21560,150124.275,315944.3662,1389656.215,15.6
+21561,148423.303,316129.7217,749702.7597,15.6
+21562,149016.6214,316487.7632,972585.7914,15.6
+21563,147909.1554,316162.2255,1593098.141,15.6
+21564,147534.7634,316068.0804,800314.7551,15.6
+21565,146392.0291,345944.1802,840730.3738,15.6
+21566,145931.9546,316647.5907,1608401.631,15.6
+21567,144817.6668,318695.4744,829572.594,15.6
+21568,144277.7965,326079.3276,831034.0955,15.6
+21569,143233.3341,323833.3753,1622135.073,15.6
+21570,142809.5483,7080.677913,836128.1482,15.6
+21571,141594.7004,7416.709873,838209.1225,15.6
+21572,141016.6342,159873.766,1631815.25,15.6
+21573,140203.3372,985460.5125,842165.787,15.6
+21574,139267.717,196838.192,843730.1704,15.6
+21575,138677.3028,142330.138,1641213.399,15.6
+21576,137665.357,447191.5268,847108.9114,15.6
+21577,137183.6198,304595.8753,850041.9628,15.6
+21578,135845.2894,324559.7611,1649910.862,15.6
+21579,474949.0027,324484.2019,853456.3604,15.6
+21580,134626.9358,326005.6803,853887.8879,15.6
+21581,133551.972,326142.377,1656783.946,15.6
+21582,132931.6248,325416.5357,857434.5189,15.6
+21583,132092.3033,326059.5687,858326.7875,15.6
+21584,131455.689,325348.3609,1662620.179,15.6
+21585,130160.1337,325771.8516,861150.2803,15.6
+21586,30930.4934,325959.2612,861628.6447,15.6
+21587,0,325595.2334,1667773.37,15.6
+21588,0,325767.1755,124118.7211,15.6
+21589,75542.75229,325909.9522,266505.0599,15.6
+21590,10782.27394,325247.0662,923439.5122,15.6
+21591,403362.3982,326101.5651,123545.2198,15.6
+21592,41074.95206,325663.1238,0,15.6
+21593,80781.28894,326105.108,2261700.504,15.6
+21594,147058.4889,325361.5868,608594.2617,15.6
+21595,121049.9518,318460.34,928301.9554,15.6
+21596,121565.8754,317580.2883,1712637.394,15.6
+21597,119879.5284,318209.3505,1967254.426,15.6
+21598,119693.8293,318074.4882,843837.832,15.6
+21599,118751.2114,318086.3933,1603250.033,15.6
+21600,118225.2599,317971.7511,833693.8404,15.6
+21601,118093.3323,316758.8514,839863.9292,15.6
+21602,118780,259204.458,1629611.024,15.6
+21603,118738.658,0,857371.1384,15.6
+21604,119250.0674,180918.7583,861210.9219,15.6
+21605,119449.0372,27174.50102,1654813.009,15.6
+21606,119694.3001,988361.9298,874722.9026,15.6
+21607,120334.1984,202793.4768,880566.0017,15.6
+21608,120101.9425,127348.8975,1676276.219,15.6
+21609,120639.7035,434644.5538,892301.8575,15.6
+21610,120878.4473,292427.2819,898298.8649,15.6
+21611,121436.2622,310297.4523,1695570.747,15.6
+21612,121435.8773,309286.5317,909719.8429,15.6
+21613,121757.8872,308091.0019,914169.8657,15.6
+21614,122135.7954,306663.6247,1713788.05,15.6
+21615,122490.3177,305324.4112,925039.7378,15.6
+21616,462111.1526,304342.2736,930239.9262,15.6
+21617,123211.3332,302972.1379,1729993.478,15.6
+21618,123239.8501,301221.7158,940408.3084,15.6
+21619,93104.97372,300153.1781,944905.6274,15.6
+21620,93577.94397,298757.8435,1745038.851,15.6
+21621,0,297017.3974,955207.2857,15.6
+21622,83553.24031,296147.0333,958912.7811,15.6
+21623,17514.98871,294813.6759,931905.0626,15.6
+21624,23029.6512,292912.5639,137410.8465,15.6
+21625,36769.48106,292426.134,0,15.6
+21626,391547.3326,290301.4831,795696.7489,15.6
+21627,32067.90672,289428.0878,0,15.6
+21628,80538.04061,287604.3691,1898550.907,15.6
+21629,164777.6605,286657.3773,1653940.505,15.6
+21630,122064.4609,285113.9333,875133.1808,15.6
+21631,126594.1281,283897.8348,1047143.371,15.6
+21632,127746.8248,282458.6667,1757188.951,15.6
+21633,127927.181,281440.0426,990975.3188,15.6
+21634,128686.0406,221845.9386,992866.0583,15.6
+21635,128484.6882,220717.2003,1781560.262,15.6
+21636,128998.8922,139068.5248,1005037.627,15.6
+21637,128883.0751,18773.91286,1009723.939,15.6
+21638,129792.4745,48679.05915,1796848.411,15.6
+21639,129342.9018,842771.8408,2166493.588,15.6
+21640,130157.048,108098.1351,998354.8019,15.6
+21641,130299.0323,151129.9964,1770566.986,15.6
+21642,130445.9552,351363.6561,1011803.052,15.6
+21643,130970.0104,248227.0372,1017502.376,15.6
+21644,130981.1678,260687.4767,1790378.818,15.6
+21645,131454.0283,260788.295,1029973.562,15.6
+21646,131612.1637,258535.6348,1034027.755,15.6
+21647,132008.7704,257554.9478,1808941.54,15.6
+21648,132030.2161,256349.0939,1046331.688,15.6
+21649,132642.2397,254572.4249,1050074.231,15.6
+21650,132766.4927,253864.1089,1825141.892,15.6
+21651,133092.0778,251898.0796,1061303.25,15.6
+21652,101405.4877,250953.8927,1065591.397,15.6
+21653,441307.5448,249057.4889,1839505.961,15.6
+21654,177135.6753,248478.3091,1076126.438,15.6
+21655,119577.0993,246968.4724,1079677.858,15.6
+21656,28361.33393,245016.0324,1852876.989,15.6
+21657,36092.12704,244112.6118,1090097.313,15.6
+21658,31761.87954,242544.3398,0,15.6
+21659,32183.05263,240681.5409,768466.1499,15.6
+21660,32417.53672,238348.12,0,15.6
+21661,416250.997,238497.0834,441594.7468,15.6
+21662,55502.65452,238959.6782,916249.8473,15.6
+21663,96723.86605,238379.8093,1811103.117,15.6
+21664,169083.6865,238530.3928,972758.9903,15.6
+21665,137810.2407,238533.2815,1771267.431,15.6
+21666,138875.5012,191517.1332,1109134.987,15.6
+21667,140624.4955,190575.1168,1072784.684,15.6
+21668,141101.9349,318744.4264,1824309.046,15.6
+21669,142086.0533,12825.74201,1073429.493,15.6
+21670,142500.6629,48716.47076,1071911.116,15.6
+21671,143215.5441,51446.06126,1830993.611,15.6
+21672,143656.3212,728493.3317,1073841.736,15.6
+21673,144290.1372,51831.14418,1073728.318,15.6
+21674,144981.4918,184987.9601,1833054.131,15.6
+21675,145798.8951,297406.3626,1075003.129,15.6
+21676,146208.6085,228661.7843,1074039.829,15.6
+21677,147058.7809,238950.2438,1834757.645,15.6
+21678,147083.3042,239072.9231,1075271.788,15.6
+21679,148796.543,239170.7996,1074021.994,15.6
+21680,148310.7847,239119.8033,1835884.659,15.6
+21681,149720.4832,239364.6885,1073473.03,15.6
+21682,150145.7028,238785.0245,2178655.715,15.6
+21683,150785.8775,239508.316,1794277.903,15.6
+21684,116881.4817,239298.5188,1049245.21,15.6
+21685,117990.5904,239297.6145,1049352.021,15.6
+21686,197959.8687,239225.6088,1802609.444,15.6
+21687,141828.1923,239402.3566,1053260.7,15.6
+21688,148935.4103,239121.363,1052325.382,15.6
+21689,158647.7673,239280.5441,1809240.66,15.6
+21690,494694.3894,239501.2442,1055474.727,15.6
+21691,34895.62176,239208.7658,906330.0782,15.6
+21692,35042.93531,239458.3515,1665612.677,15.6
+21693,35144.03104,239549.0096,0,15.6
+21694,35144.02434,239394.9713,431225.688,15.6
+21695,489997.8541,239537.9562,901993.1302,15.6
+21696,54922.69833,239522.4494,122876.5399,15.6
+21697,114344.6057,239400.4255,289662.7052,15.6
+21698,202523.8631,192976.0495,2538229.444,15.6
+21699,155163.65,192035.1073,903411.1008,15.6
+21700,162010.2763,318674.1517,964160.7227,15.6
+21701,162744.5149,205924.7944,1811648.955,15.6
+21702,163515.7397,48428.22479,1029071.575,15.6
+21703,164010.5179,51100.97795,1025221.778,15.6
+21704,164701.8782,46850.16965,1781663.444,15.6
+21705,165309.2923,735131.5175,1032944.644,15.6
+21706,166032.1111,54352.5618,1033172.808,15.6
+21707,166608.9212,183050.9513,1790695.901,15.6
+21708,167197.9799,300871.9007,1037366.848,15.6
+21709,167944.1651,229618.8841,1036726.585,15.6
+21710,168625.6381,240866.587,1797908.216,15.6
+21711,169097.6557,240704.1907,1040021.268,15.6
+21712,169938.6184,240626.8164,1039038.78,15.6
+21713,170617.9459,240968.2837,1803636.434,15.6
+21714,170804.0727,240934.0166,1043017.328,15.6
+21715,172102.932,240680.4679,1043222.38,15.6
+21716,135419.5454,241190.6402,1809293.069,15.6
+21717,136131.2653,240798.185,1045148.148,15.6
+21718,221818.1968,241077.5305,1044259.382,15.6
+21719,166125.5123,240997.6034,1813476.831,15.6
+21720,167935.9255,241367.2063,1046233.988,15.6
+21721,179355.4484,240734.806,1048751.547,15.6
+21722,173429.1908,240845.3677,1822763.96,15.6
+21723,174238.1391,240800.6372,1056819.342,15.6
+21724,172601.4462,240093.58,2032405.6,15.6
+21725,37098.90698,240604.8201,1644610.596,15.6
+21726,37157.05046,239898.6249,1182121.45,15.6
+21727,376615.525,239805.2712,1022408.824,15.6
+21728,37065.51741,240192.519,900146.4897,15.6
+21729,555085.7894,239134.3053,159124.3963,15.6
+21730,76898.33995,192789.2477,274197.2964,15.6
+21731,86800.66703,192294.4203,903679.1771,15.6
+21732,226215.4079,317638.7,150706.6197,15.6
+21733,161564.5265,204743.9191,1865100.99,15.6
+21734,166968.3506,239804.5447,1664119.776,15.6
+21735,167707.7769,50719.91888,979705.8988,15.6
+21736,166643.7441,46511.63842,1101364.707,15.6
+21737,166455.8115,46788.31408,1819326.831,15.6
+21738,165529.7438,730644.6628,1064336.503,15.6
+21739,165183.4096,51091.036,1073497.424,15.6
+21740,164580.6092,182571.1802,1836096.632,15.6
+21741,163764.1968,297096.8988,1085022.552,15.6
+21742,163096.0576,227821.7104,1089158.942,15.6
+21743,162972.7698,236613.6446,1855102.286,15.6
+21744,161875.0918,238026.8636,1099448.865,15.6
+21745,161741.9135,237145.6697,1103536.889,15.6
+21746,160823.9585,237260.8479,1871137.949,15.6
+21747,160309.3149,236860.8876,1113122.326,15.6
+21748,123571.3063,236727.0433,1116798.059,15.6
+21749,123361.2803,236704.494,1885625.464,15.6
+21750,207435.8646,236457.3106,1125881.451,15.6
+21751,144844.0878,235953.9642,1128004.512,15.6
+21752,152316.1009,235873.9113,1899593.421,15.6
+21753,161082.3052,236177.8864,1136860.788,15.6
+21754,155578.0403,235482.217,1139474.543,15.6
+21755,155187.1856,235336.7523,1911567.1,15.6
+21756,155347.139,235258.419,985963.3771,15.6
+21757,153973.9659,235071.3508,987799.6842,15.6
+21758,153722.813,234668.2016,2066752.306,15.6
+21759,35327.91389,235151.1311,1147068.145,15.6
+21760,35264.31022,234290.1205,1148658.671,15.6
+21761,35269.53583,234241.8924,1939941.468,15.6
+21762,35193.99509,188062.4895,1167434.889,15.6
+21763,35040.62802,187539.6114,293226.7727,15.6
+21764,852921.6321,311128.9912,928157.857,15.6
+21765,54973.99364,198789.875,165387.8408,15.6
+21766,83924.96485,235760.3288,291668.6874,15.6
+21767,186791.4892,236269.5346,3827609.658,15.6
+21768,148264.0342,45873.52571,1004860.927,15.6
+21769,144615.6095,46269.36995,1033150.875,15.6
+21770,146203.4185,46214.76731,1954481.6,15.6
+21771,145796.4923,46137.30085,1145475.67,15.6
+21772,144947.5618,812308.7815,1150884.082,15.6
+21773,144184.8236,77955.00857,1907400.556,15.6
+21774,143326.856,92095.33728,1167332.297,15.6
+21775,142976.167,337053.0454,1172032.635,15.6
+21776,141950.89,214195.0394,1930306.572,15.6
+21777,141536.796,231446.6298,1184127.926,15.6
+21778,140654.7773,231875.6583,1188444.388,15.6
+21779,140149.1447,231756.0624,1949470.485,15.6
+21780,105663.4171,231804.9673,1199945.31,15.6
+21781,106109.7388,232360.054,1199029.197,15.6
+21782,188580.6325,234071.1151,1959411.075,15.6
+21783,125732.3855,234589.4804,1202140.031,15.6
+21784,138382.7257,235401.4212,1201595,15.6
+21785,146922.3745,235587.8065,1962614.742,15.6
+21786,143526.2166,237250.3026,1203577.353,15.6
+21787,144185.7713,236741.2669,1202180.365,15.6
+21788,145619.9913,238010.9728,1795396.444,15.6
+21789,145672.1631,238678.2133,1034752.474,15.6
+21790,146639.4765,239533.5906,1344951.66,15.6
+21791,147619.3655,239670.6647,1965502.99,15.6
+21792,147909.356,240578.5803,1181313.841,15.6
+21793,149073.7976,241530.7872,1211465.773,15.6
+21794,35329.58317,194435.6959,1961096.463,15.6
+21795,35272.97072,196002.3474,1199749.713,15.6
+21796,35436.48285,321048.7339,1197057.746,15.6
+21797,35446.81765,210129.4092,932831.4619,15.6
+21798,35712.30519,245716.0801,168967.5586,15.6
+21799,521102.4181,248947.5218,295298.4618,15.6
+21800,52824.09778,245203.309,927977.265,15.6
+21801,431371.9321,246745.7662,2173809.032,15.6
+21802,197390.5355,47588.86724,1029012.141,15.6
+21803,155119.0127,47720.04378,1801615.459,15.6
+21804,155465.271,47729.42621,1241653.526,15.6
+21805,158186.7884,764119.0953,1162697.513,15.6
+21806,158544.0586,70906.27739,1917707.892,15.6
+21807,159916.0449,179264.18,1168559.447,15.6
+21808,159869.3617,317805.0909,1168420.984,15.6
+21809,161125.6913,240784.7908,1926039.247,15.6
+21810,161362.501,252516.9756,2269319.771,15.6
+21811,162350.9809,253326.2357,1142874.265,15.6
+21812,126446.8417,254251.792,1890388.365,15.6
+21813,126616.4171,254765.0603,1148531.542,15.6
+21814,215530.9844,255225.8391,1149248.712,15.6
+21815,151443.5935,255821.0375,1901503.746,15.6
+21816,161130.7834,256081.3728,1153682.175,15.6
+21817,170929.5975,256903.4787,1154079.173,15.6
+21818,166769.9447,257267.2781,1908472.45,15.6
+21819,168040.8949,257835.1583,1157217.605,15.6
+21820,168878.9649,258284.6822,993555.3934,15.6
+21821,169497.7756,259025.7888,1751209.843,15.6
+21822,170353.9825,259686.401,1302615.477,15.6
+21823,170619.8225,259610.2848,1145105.9,15.6
+21824,171973.0123,261511.796,1903072.501,15.6
+21825,172456.4824,261693.9271,1166631.083,15.6
+21826,172783.7316,213190.6943,1155200.689,15.6
+21827,174062.2811,213869.5954,1915689.459,15.6
+21828,174400.0885,344960.2319,1157316.264,15.6
+21829,38464.07756,231729.9823,1155893.557,15.6
+21830,38433.49569,263486.052,1917041.978,15.6
+21831,38734.89871,269679.2668,163453.6805,15.6
+21832,38619.64927,265010.5473,288550.1512,15.6
+21833,594546.1244,266473.2846,919210.4223,15.6
+21834,76651.965,266559.3909,162313.6585,15.6
+21835,85807.36867,49732.3589,286215.9288,15.6
+21836,246682.6256,49493.84536,2803438.06,15.6
+21837,171478.168,49824.91709,978839.3172,15.6
+21838,520697.0125,836789.0445,1042115.163,15.6
+21839,182787.3125,103147.7603,1906252.425,15.6
+21840,183100.2815,163935.0846,1134073.668,17.8
+21841,183233.6533,352414.5696,1120828.591,17.8
+21842,183253.9381,254654.8326,1883612.236,17.8
+21843,183328.5651,267952.8543,1137730.124,17.8
+21844,144017.7695,267941.3031,1140688.923,17.8
+21845,143725.2573,267499.9678,1900303.988,17.8
+21846,236908.8521,267864.7293,1151154.107,17.8
+21847,173613.9259,267545.1439,1153656.79,17.8
+21848,175961.667,266540.2252,1914687.78,17.8
+21849,188283.8312,266862.8233,1162943.811,17.8
+21850,183049.6798,266222.9487,1165215.631,17.8
+21851,183553.3433,265685.1105,1927580.192,17.8
+21852,183613.0183,265184.29,1008909.346,17.8
+21853,183432.6785,265094.24,2112152.528,17.8
+21854,183648.3782,264365.0855,2035423.038,17.8
+21855,183666.8215,264316.2369,1139759.26,17.8
+21856,183509.7071,263507.9234,1153542.444,17.8
+21857,183695.573,262674.7917,1917928.927,17.8
+21858,183820.8249,213218.2353,1171403.637,17.8
+21859,183539.5426,213114.8532,1174287.012,17.8
+21860,183708.1654,341960.0585,1927330.14,17.8
+21861,183844.1569,229048.8104,1184137.854,17.8
+21862,183542.2117,259303.9974,1188177.87,17.8
+21863,39762.61972,265022.5843,1940662.999,17.8
+21864,39846.95811,258774.0133,1197188.835,17.8
+21865,39710.6355,258934.5744,1199099.228,17.8
+21866,39874.18184,259461.3587,918850.5002,17.8
+21867,629975.6222,257950.2239,168816.2262,17.8
+21868,87262.26843,48277.88546,289332.7197,17.8
+21869,71931.19057,48323.71335,916597.902,17.8
+21870,257498.699,48165.07077,169128.0755,17.8
+21871,174683.5523,797753.8339,2183928.912,17.8
+21872,183172.6788,87218.80371,1790851.406,17.8
+21873,184252.4998,164286.7447,1100007.579,17.8
+21874,184074.708,332340.4758,1255151.382,17.8
+21875,523709.4589,242508.288,1956968.993,17.8
+21876,144346.0994,254681.4803,1207511.839,17.8
+21877,144564.3137,254812.5209,1216067.234,17.8
+21878,239065.2187,253731.1858,1964903.931,17.8
+21879,173643.6945,253853.726,1226909.377,17.8
+21880,177216.9242,252875.4701,1228908.894,17.8
+21881,188779.8709,252738.5515,1978882.264,17.8
+21882,184097.9128,252096.4673,1238964.858,17.8
+21883,184363.4513,250969.0879,1239993.627,17.8
+21884,184324.6694,251258.4214,1818707.947,17.8
+21885,184315.9611,249970.714,1076321.995,17.8
+21886,184199.9606,249549.111,1395747.451,17.8
+21887,184571.7371,249572.828,1984240.717,17.8
+21888,184211.3705,247981.5745,1248574.036,17.8
+21889,184247.4723,248105.6113,1266773.65,17.8
+21890,184529.2358,200796.9398,2006663.43,17.8
+21891,184256.6343,200036.164,1266767.055,17.8
+21892,184361.6532,323296.5169,1267539.361,17.8
+21893,184262.8184,212478.1621,2015900.402,17.8
+21894,184619.5186,245830.9853,1275741.739,17.8
+21895,184297.9621,248535.7394,1276037.168,17.8
+21896,184351.9883,243176.8956,2024546.599,17.8
+21897,40127.14245,243612.4059,2357839.631,17.8
+21898,40124.73474,242034.7179,1255030.901,17.8
+21899,40296.42575,241758.4679,1991300.165,17.8
+21900,40098.26461,240404.8181,1267679.58,20
+21901,636536.156,46224.08614,286431.6393,20
+21902,85826.69383,46451.6734,902586.4692,20
+21903,74492.50888,46540.94276,175245.7344,20
+21904,264092.7795,753147.5708,286280.3663,20
+21905,178328.4787,65656.07694,2968516.713,20
+21906,189468.7539,186930.0549,1075805.75,20
+21907,191254.7446,314045.1046,1153626.068,20
+21908,150803.3583,241028.9928,2057845.279,20
+21909,151905.959,254109.1885,1257251.879,20
+21910,249963.3941,254873.3126,1263739.402,20
+21911,184887.9977,256764.941,2000500.815,20
+21912,527716.4292,257457.455,1278891.328,20
+21913,200737.3223,259292.9946,1281689.504,20
+21914,197192.4458,260409.1443,2017756.193,20
+21915,198316.6081,261644.9774,1292720.143,20
+21916,198880.3463,263009.994,1115334.119,20
+21917,199934.1931,264282.7057,1853745.09,20
+21918,200607.9526,265421.1945,1448399.32,20
+21919,201552.6945,267222.4302,1299547.104,20
+21920,202584.53,268086.1775,2025052.05,20
+21921,203044.2483,269529.2602,1324681.146,20
+21922,204016.7643,221689.3821,1313164.747,20
+21923,205391.9727,222462.7641,2053806.11,20
+21924,205474.2307,355096.2461,1322646.77,20
+21925,206961.3159,243387.6455,1322361.703,20
+21926,207441.9148,274558.5959,2065144.444,20
+21927,208436.7623,300462.3965,1330804.098,20
+21928,209346.2071,280359.6367,1331513.735,20
+21929,209939.4291,281543.3458,2074485.433,20
+21930,211047.2359,287137.2352,1340527.807,20
+21931,43393.99369,288348.2547,1341815.88,20
+21932,43661.36224,288573.1627,2084843.209,20
+21933,43652.4707,290665.9859,1348605.164,20
+21934,669640.7028,56158.28494,1348831.809,20
+21935,98933.99063,56540.31225,928011.4937,20
+21936,122561.4199,56717.94415,187877.4814,20
+21937,286348.03,913791.9316,304047.486,20
+21938,206815.2564,151878.189,925611.1477,20
+21939,218439.698,158816.3302,2658287.258,20
+21940,175539.6327,400752.8637,1217359.734,20
+21941,175689.9983,286195.0873,2861375.447,20
+21942,278544.8413,303465.4549,1465846.808,20
+21943,219555.6552,305436.4484,1288164.107,20
+21944,212391.3654,308073.502,2033011.408,20
+21945,229181.3149,308644.6086,1325946.772,20
+21946,224683.73,310722.0953,1329461.726,20
+21947,225501.2026,311660.0332,2061156.382,20
+21948,226608.8714,312464.9064,1157851.477,20
+21949,566575.7034,315100.8362,1161180.474,20
+21950,228163.3384,315373.9709,2226125.16,20
+21951,228925.2524,317083.9254,1373793.963,20
+21952,229903.2003,318299.7411,1332790.444,20
+21953,230447.1624,319959.8749,2112018.226,20
+21954,231555.3487,266352.4074,1372303.666,20
+21955,232146.7666,267453.346,1373543.692,20
+21956,233123.7744,412806.4476,2112134.698,20
+21957,233931.5054,288468.7041,1384335.819,20
+21958,234437.407,314454.0264,1384885.862,20
+21959,235890.4741,325995.2303,2125634.988,20
+21960,235979.7173,320956.8089,1395185.476,21
+21961,234222.4281,318469.6232,1387284.413,21
+21962,234261.0034,316877.2121,2127896.679,21
+21963,234687.8507,316204.6533,1391693.759,21
+21964,45889.31459,315576.5936,1389964.417,21
+21965,46042.37216,314655.3547,2130101.106,21
+21966,45971.70393,339136.6368,1392956.833,21
+21967,743522.0864,53971.32425,1391459.437,21
+21968,138290.212,56176.84526,2131732.971,21
+21969,114108.1366,62260.7925,193174.8061,21
+21970,319365.4149,1004034.804,308853.4929,21
+21971,225786.2784,195615.0117,928687.4425,21
+21972,191686.4672,128523.8297,2651698.016,21
+21973,192873.4986,439467.6502,1178842.474,21
+21974,295835.2629,294904.5826,1903349.756,21
+21975,240727.2449,314651.3608,1503588.749,21
+21976,229597.0485,313080.2348,1334589.09,21
+21977,244335.5219,311786.6693,2086504.799,21
+21978,241411.2099,310834.4244,1363941.104,21
+21979,240988.6433,309859.7248,1363740.551,21
+21980,241366.8207,308984.4213,1909310.602,21
+21981,241974.4819,307554.2209,1180106.636,21
+21982,242088.1999,307408.3286,1515399.704,21
+21983,242625.4899,305998.9874,2121316.584,21
+21984,242599.3559,305275.6699,1343469.295,21
+21985,243240.0909,304086.1266,1386423.979,21
+21986,243327.3998,251489.4846,2109053.586,21
+21987,244018.0342,249968.1946,1375584.419,21
+21988,244158.0355,388391.4563,1373988.239,21
+21989,244502.7338,270520.2582,2112888.016,21
+21990,244917.2983,295521.4401,1377463.302,21
+21991,245089.8965,304487.1346,1376186.555,21
+21992,245490.3353,296889.9843,2115977.639,21
+21993,585723.7988,296921.5353,1379133.835,21
+21994,245946.7007,295794.7432,1376750.497,21
+21995,246833.3918,294324.9339,2117973.519,21
+21996,246615.9014,287511.1582,1379791.52,21
+21997,47604.91364,286779.6448,1377474.622,21
+21998,47504.41668,285232.379,3175662.996,21
+21999,47756.61728,285009.2692,1349455.606,21
+22000,768533.195,50846.93274,1349720.85,21
+22001,158514.299,50691.63087,2082101.664,21
+22002,133882.5391,50504.37877,188282.5435,21
+22003,323796.7222,882101.0415,300417.5094,21
+22004,192372.1616,131065.7946,914096.4446,21
+22005,202480.0676,144317.8017,2531489.046,21
+22006,308478.1128,375194.9865,1131491.373,21
+22007,253098.2878,261124.2172,1899950.091,21
+22008,241667.7556,275940.0616,1457451.046,21
+22009,254664.5659,275214.2606,1311162.083,21
+22010,253273.5373,274152.5206,2058386.326,21
+22011,252110.4746,295433.9596,1340359.199,21
+22012,252556.1507,271760.7701,1154420.687,21
+22013,253270.6551,272738.3012,1886797.739,21
+22014,252742.8166,274624.5022,1494890.665,21
+22015,254187.6863,274492.0298,1358550.854,21
+22016,253735.0836,272487.7213,2051218.112,21
+22017,254075.0333,271252.0505,1368873.745,21
+22018,254908.4365,220969.6614,1350469.208,21
+22019,254803.0062,219925.0444,2086118.205,21
+22020,256217.16,346114.8117,1356227.805,21
+22021,256335.6337,235151.1223,1357297.569,21
+22022,255877.0225,268863.3844,2095263.297,21
+22023,255585.7401,274915.6399,1365302.38,21
+22024,255621.69,271439.7471,1365133.136,21
+22025,255121.1279,273127.7977,2106022.484,21
+22026,254993.7834,274188.9424,1372799.056,21
+22027,254895.7674,274900.5116,1373046.078,21
+22028,254416.1106,276185.5939,2114194.471,21
+22029,254142.9927,277663.2669,1380531.427,21
+22030,48616.05821,277937.7681,1379526.767,21
+22031,48462.54978,280041.2915,2122596.913,21
+22032,48525.3329,280519.9277,1386518.771,21
+22033,777587.5073,56024.12619,1385922.753,21
+22034,179202.9255,56086.73619,2130084.819,21
+22035,127613.6327,56420.17014,193455.6399,21
+22036,281719.4758,870996.4916,310192.7054,21
+22037,535007.2486,130254.4912,929836.5036,21
+22038,311338.042,168167.3846,2664127.227,21
+22039,255657.0248,378355.2198,1167421.823,21
+22040,241492.5809,275199.6147,1921209.208,21
+22041,256375.5701,284030.1672,1511863.162,21
+22042,252683.8828,285859.5032,1347158.634,21
+22043,251827.2696,286699.6158,2101602.225,21
+22044,251363.8965,287428.6887,1188401.267,21
+22045,251681.8243,288521.4387,1191058.415,21
+22046,250656.9467,290235.4494,2267995.618,21
+22047,251180.1728,290313.1735,1412327.439,21
+22048,250358.1222,291650.3657,1362492.381,21
+22049,250029.7383,293169.4526,2144413.774,21
+22050,250249.8696,241638.5499,1402682.055,21
+22051,249443.1495,242482.4627,1402279.282,21
+22052,249785.1624,407313.673,2141721.797,21
+22053,249134.2729,265973.0654,1411976.278,21
+22054,249088.1256,298111.7468,1410965.412,21
+22055,248485.2019,313159.0736,3202955.426,21
+22056,248336.1081,306305.9312,1388929.796,21
+22057,248718.858,307928.8761,1391523.368,21
+22058,247559.2523,309128.4933,2125080.861,21
+22059,247923.7269,309635.4458,1404284.157,21
+22060,247256.7684,311258.685,1406382.261,21
+22061,247199.4192,312246.658,2142481.75,21
+22062,247183.363,313307.8709,1416659.186,21
+22063,47828.98009,313961.9321,1419732.708,21
+22064,47860.29775,314996.7917,2155435.728,21
+22065,47806.89329,316975.7522,1428853.83,21
+22066,760184.9698,61295.4168,1428191.811,21
+22067,153154.0948,61393.41064,2138801.228,21
+22068,88477.70284,61726.329,195762.766,21
+22069,262867.2068,994352.0862,310827.2419,21
+22070,287330.7122,196622.1997,927038.2003,21
+22071,233937.7769,149344.8526,2634228.329,21
+22072,224476.5833,441408.1355,1251909.067,21
+22073,237421.5169,309352.6082,1883195.995,21
+22074,233105.8622,327178.3159,1521843.479,21
+22075,231530.0643,330029.1996,1342010.185,21
+22076,230689.823,330214.9914,1901655.466,21
+22077,229441.2235,331785.5357,1180654.047,21
+22078,229256.0178,332413.9263,1523477.218,21
+22079,567134.8272,333201.7573,2105893.909,21
+22080,227199.8069,335106.2275,1361770.722,21
+22081,224498.3717,333163.7673,1373396.224,21
+22082,223538.8207,268060.3841,2100179.843,21
+22083,222507.0879,687959.6638,1364298.936,21
+22084,220983.0528,415524.1252,1357408.096,21
+22085,220232.4663,290334.6238,2086849.517,21
+22086,219113.1395,314176.1215,1351637.583,21
+22087,217251.2925,323831.303,1344464.356,21
+22088,216803.5944,315784.3509,2075638.118,21
+22089,215398.0863,315481.1337,1337555.683,21
+22090,213964.379,341283.1374,1330385.78,21
+22091,212945.9618,313902.6463,2062977.223,21
+22092,211951.4242,313738.7798,1323153.052,21
+22093,210351.1518,318043.8837,1314940.51,21
+22094,209278.2996,735146.4547,2049972.728,21
+22095,207994.2507,312969.3704,1307318.88,21
+22096,43360.30993,312287.9791,1299882.793,21
+22097,43162.4769,310361.8226,2036214.441,21
+22098,42996.29419,309957.7845,1292061.804,21
+22099,609230.9134,60128.38099,1284238.75,21
+22100,65186.68451,59989.10466,2021622.959,21
+22101,68259.67204,59705.3685,180197.8737,21
+22102,322511.7117,946240.0352,298717.8605,21
+22103,180784.6962,167797.7298,915944.314,21
+22104,187629.5986,140341.9714,1971165.19,21
+22105,202381.8005,410631.0312,2199200.443,21
+22106,195195.4089,281550.8805,1836066.618,21
+22107,194628.0895,297957.7571,1256837.841,21
+22108,193110.8851,296829.6821,1017410.19,21
+22109,192118.379,295123.5965,1747036.277,21
+22110,191045.5866,294609.7282,1328366.809,21
+22111,189824.1136,292547.9656,1180428.647,21
+22112,188671.5849,291798.9544,1894826.123,21
+22113,187722.0246,289759.0867,1192456.786,21
+22114,186533.6907,237623.7255,1175243.98,21
+22115,184982.1167,236429.75,1905803.845,21
+22116,184476.8322,373136.3968,1171430.104,21
+22117,182793.6977,252507.1439,1166146.341,21
+22118,181835.7841,281323.3053,1898681.501,21
+22119,520326.1475,288077.1791,1161018.631,21
+22120,179239.7356,274843.6609,1155821.442,21
+22121,178275.7048,694769.6541,1890952.318,21
+22122,177300.3229,272489.4679,1151299.743,21
+22123,175640.1687,272607.4956,1146181.291,21
+22124,175087.0582,270022.8223,1883083.479,21
+22125,173159.6117,269259.4397,1141190.39,21
+22126,172644.939,268521.2934,1135634.01,21
+22127,171095.9999,266420.9948,1875187.003,21
+22128,170026.7205,266176.9563,1131901.485,21
+22129,38777.98708,263964.5794,1127180.642,21
+22130,38695.79228,263338.2628,1869187.443,21
+22131,38549.5557,681694.5011,1123999.432,21
+22132,0,48954.05592,1119089.468,21
+22133,452959.9937,49001.26652,1862492.421,21
+22134,158461.8697,48701.41508,157622.5829,21
+22135,67722.8397,797334.6082,277567.3146,21
+22136,207520.7498,86136.15045,898210.4346,21
+22137,156788.8456,163282.157,154999.437,21
+22138,157221.515,330743.9536,1719629.966,21
+22139,156775.4157,239210.8956,1761416.514,21
+22140,155530.828,250276.082,856745.2661,21
+22141,154643.682,250716.9685,974433.6259,21
+22142,154500.2157,250957.1737,1902091.613,21
+22143,153536.7449,250395.8589,1062202.527,21
+22144,153474.5391,250438.1738,1046665.537,21
+22145,152513.5012,250490.0088,1806310.93,21
+22146,151898.1101,202370.5961,1050198.731,21
+22147,151355.596,202450.6972,1043570.249,21
+22148,150998.6095,329823.382,1788051.917,21
+22149,150109.3364,215184.9386,1036072.794,21
+22150,150036.8588,251202.1756,1029982.648,21
+22151,148788.4422,253396.5922,1778573.035,21
+22152,148685.5163,249507.7551,1021648.809,21
+22153,148069.8161,249414.2978,1014211.975,21
+22154,147062.9793,249556.2787,1766403.837,21
+22155,147056.9262,249668.4304,1005871.416,21
+22156,145876.3342,669570.7256,2097635.5,21
+22157,145661.5591,249353.5722,1716875.54,21
+22158,145424.967,249357.0947,970926.3972,21
+22159,483281.8882,249122.346,965856.4415,21
+22160,144252.0122,249146.0795,1713982.48,21
+22161,143111.1814,248695.7299,960452.9911,21
+22162,142637.9422,249471.3634,955011.033,21
+22163,35437.81805,248973.3098,1709424.315,21
+22164,0,248800.6701,948444.9384,21
+22165,0,47489.20302,944006.4972,21
+22166,83673.9227,47535.57784,1702463.217,21
+22167,358585.4691,467795.8251,936565.1533,21
+22168,82781.85276,763771.2634,258195.6399,21
+22169,98054.2405,68557.48619,890997.5293,21
+22170,169627.9844,177533.6005,128417.9163,21
+22171,133627.7796,316361.9068,254229.0214,21
+22172,136891.7952,237048.9063,2138218.946,21
+22173,136891.8408,248320.5793,673764.9385,21
+22174,136033.5739,249256.3903,906265.4987,21
+22175,136017.82,248293.0002,1679961.314,21
+22176,135208.7706,248946.0054,858434.4119,21
+22177,134929.5658,248449.2356,875502.8207,21
+22178,134678.9144,201545.1248,1632639.307,21
+22179,134062.7613,200901.1343,862894.8914,21
+22180,133700.4351,327598.5859,858898.5685,21
+22181,133503.7412,214204.0309,1629633.562,21
+22182,132584.1976,249469.3309,852746.1,21
+22183,132684.5946,252424.6261,847665.9279,21
+22184,131928.235,247515.9232,1625010.15,21
+22185,132033.8833,248547.8581,840730.1448,21
+22186,131294.1665,248327.3344,836481.8899,21
+22187,131067.9966,248100.6471,1618395.352,21
+22188,130782.5312,248403.158,828127.2245,21
+22189,131880.0286,247985.3128,824600.5177,21
+22190,132791.5586,248362.1191,1610467.463,21
+22191,131937.9164,248279.0564,815998.8491,21
+22192,132183.0974,667603.9976,810768.843,21
+22193,131613.0098,248784.6365,1602839.504,21
+22194,131548.3656,247604.7526,802427.8382,21
+22195,131287.1602,248106.2616,797782.7524,21
+22196,97551.96794,247789.0087,1593640.389,21
+22197,0,248194.8429,788772.3763,21
+22198,76741.23045,47166.85463,783996.6906,21
+22199,360874.2721,47203.88953,1584340.319,21
+22200,28129.49916,47188.66177,774936.3363,21
+22201,369445.503,763037.3682,771877.7141,21
+22202,71122.02141,69323.87721,916851.1461,21
+22203,95873.96003,605078.4468,107659.2186,21
+22204,154208.1846,319655.7533,0,21
+22205,126016.5875,244334.1112,2002548.044,21
+22206,127896.3385,256199.5539,1231868.75,21
+22207,127801.8679,258091.3187,704038.8154,21
+22208,127444.8392,258724.1651,1492901.154,21
+22209,126736.4945,259985.101,740527.283,21
+22210,126959.9794,212749.9038,727515.1645,21
+22211,126181.8141,213531.0312,1510147.116,21
+22212,125818.4687,344544.9821,717760.9034,21
+22213,125777.2436,230827.4983,715554.8886,21
+22214,125079.4166,265485.5617,1512889.88,21
+22215,124882.0764,270760.6771,712766.4285,21
+22216,124191.213,267497.599,710728.2223,21
+22217,124131.4656,268923.3026,1513854.449,21
+22218,123858.9812,269962.1464,707288.5796,21
+22219,123075.1864,270733.7118,705131.2354,21
+22220,124030.4868,272611.5578,1513261.371,21
+22221,123021.8322,273499.0635,701079.0425,21
+22222,123205.8025,274441.1508,699239.5474,21
+22223,122554.1232,275550.63,1511250.571,21
+22224,122398.2198,295460.6628,695224.8996,21
+22225,121968.2034,280702.1451,691954.3088,21
+22226,121330.8095,279820.5937,1509177.149,21
+22227,121216.9362,285696.0049,687748.9924,21
+22228,90289.93028,707490.896,685233.7979,21
+22229,89579.48547,287676.015,1505425.359,21
+22230,89590.9761,288309.5546,680491.0292,21
+22231,81004.75486,56254.19903,677995.4485,21
+22232,26878.445,56380.80866,1501063.388,21
+22233,12227.48876,56348.53568,673032.2717,21
+22234,40394.16176,902036.636,670294.5146,21
+22235,28857.98628,146967.5063,1496589.543,21
+22236,361732.5738,162770.1995,91952.63007,21
+22237,53830.26352,394397.815,0,21
+22238,85682.9016,284110.076,830294.6851,21
+22239,485826.7397,720074.5973,0,21
+22240,115314.3183,302449.3787,314646.5541,21
+22241,117993.1017,302312.6307,906284.383,21
+22242,118077.6182,231928.8564,1203127.891,21
+22243,117609.7581,229249.4266,556558.5815,21
+22244,117545.4837,361512.466,1381321.982,21
+22245,116624.646,250440.302,681450.8724,21
+22246,116642.7913,276256.4808,611591.0727,21
+22247,115795.2261,285520.3353,1441714.303,21
+22248,116042.5323,281267.6696,615892.2316,21
+22249,115652.0164,282241.7256,614049.6111,21
+22250,115381.1335,282444.3259,1439814.686,21
+22251,115372.534,283428.1539,609236.4223,21
+22252,114949.9258,284008.201,1838221.174,21
+22253,114955.4428,284859.765,1400067.448,21
+22254,114493.6387,281433.317,588482.5279,21
+22255,114550.5362,282241.6844,586717.6695,21
+22256,114072.6263,283327.8608,1401600.706,21
+22257,114260.7058,283733.8913,583416.8829,21
+22258,113662.5353,284773.6036,580952.1969,21
+22259,113664.6783,285671.2963,1402203.634,21
+22260,113541.1848,286318.6034,578452.4335,21
+22261,85555.11507,287151.702,574824.006,21
+22262,85555.12037,286048.7283,1399373.828,21
+22263,85525.6739,286554.447,568827.8657,21
+22264,155361.1907,51176.43361,566306.5464,21
+22265,106881.866,51264.95582,1395346.907,21
+22266,13847.79372,50970.49043,560529.43,21
+22267,35601.75284,859115.5431,557307.0738,21
+22268,25951.14955,190434.2376,1390605.253,21
+22269,27129.89961,126591.7424,551534.5645,21
+22270,26900.52878,386906.8586,472365.8065,21
+22271,354483.6957,270624.8519,1309456.501,21
+22272,26786.02329,285500.8663,0,21
+22273,91666.48657,286194.5335,294239.3909,21
+22274,136907.159,235661.4264,892036.0104,21
+22275,108501.1572,234823.3133,61185.77111,21
+22276,112010.3287,368607.0354,219987.8997,21
+22277,111632.2852,260280.6847,904946.8503,21
+22278,111601.7572,281407.8851,69817.29216,21
+22279,111344.8659,292860.5589,214074.537,21
+22280,111241.2094,285770.8604,895174.2338,21
+22281,111235.5849,286717.408,1020335.941,21
+22282,450377.9149,287453.0587,428781.5611,21
+22283,110834.482,286485.9351,1264917.084,21
+22284,110713.724,287330.8795,468648.8396,21
+22285,110837.7783,287385.3104,506723.8523,21
+22286,110031.0033,287809.8362,1295427.481,21
+22287,110471.8596,287410.371,472668.0047,21
+22288,110262.8402,287809.7848,470299.1101,21
+22289,109906.47,288231.7911,1302589.8,21
+22290,109896.0556,288276.6897,464911.3294,21
+22291,109731.4618,287932.3716,462607.5701,21
+22292,109450.5292,288351.0533,1300081.959,21
+22293,109145.975,287851.0583,457519.7182,21
+22294,83901.84451,287705.94,454277.2756,21
+22295,83734.75351,287215.1458,1297363.214,21
+22296,83564.52271,287313.4901,448950.3454,21
+22297,146341.7826,51040.82882,446590.2008,21
+22298,95917.85355,51011.99726,1293315.309,21
+22299,100910.6893,50985.4016,440646.4872,21
+22300,113360.3024,859246.3978,437693.0082,21
+22301,23502.94329,202293.7747,1289089.541,21
+22302,24646.28578,124897.4563,1703516.935,21
+22303,24405.35493,384428.3611,381324.711,21
+22304,24299.08814,272244.2064,1188813.537,21
+22305,24336.64043,284839.3131,352625.7527,21
+22306,24224.67949,234220.9727,378357.3986,21
+22307,357679.5935,233825.6428,1327792.673,21
+22308,24095.6135,364486.5403,388040.1092,21
+22309,75962.56898,258791.3835,400104.6854,21
+22310,135886.6704,277876.2094,1241902.208,21
+22311,100852.8965,288993.7613,52734.15157,21
+22312,105067.6452,281279.4531,204660.4464,21
+22313,104779.7955,282241.3937,889533.3667,21
+22314,104211.0142,281029.7074,57277.92254,21
+22315,103811.9359,281087.3525,203314.8645,21
+22316,103351.2165,280538.4295,886181.8092,21
+22317,103318.9164,279994.5268,53679.68577,21
+22318,102654.8629,279455.9808,200611.3002,21
+22319,102804.3687,278932.1361,880435.908,21
+22320,102283.2178,278895.074,52053.23111,21
+22321,101968.5573,276079.5544,197669.9092,21
+22322,101220.7056,695349.2076,874350.4436,21
+22323,100703.0074,272306.2821,50618.76177,21
+22324,100483.6884,270356.8118,194812.8494,21
+22325,438961.7349,269041.5117,868846.2493,21
+22326,99311.91103,266448.7657,49045.85261,21
+22327,76964.46988,263262.9753,192066.098,21
+22328,76394.57237,261605.4748,863565.5228,21
+22329,75999.1732,258911.5093,47500.34527,21
+22330,130085.5876,47625.94569,189489.3472,21
+22331,83463.17804,47517.5343,858499.9446,21
+22332,87755.54731,47191.57919,46014.68032,21
+22333,102211.7487,715923.9552,186888.8952,21
+22334,93257.95451,177720.4332,853765.4736,21
+22335,95012.84567,128343.4076,44562.57601,21
+22336,93904.86531,320575.4465,184384.5514,21
+22337,20458.9266,234090.1788,805580.9936,21
+22338,20473.42475,195848.7494,6.576564945,21
+22339,20341.29599,194559.8807,0,21
+22340,20266.89005,305801.9356,807345.7138,21
+22341,20232.92442,212809.6089,121771.9658,21
+22342,20080.6446,230698.5142,171335.7057,21
+22343,20120.56836,235385.2247,842306.9405,21
+22344,19876.62812,228566.8248,51769.48436,21
+22345,321975.2915,227371.524,180541.3339,21
+22346,19781.35692,224142.3024,844415.449,21
+22347,49394.59805,222668.0019,43301.61774,21
+22348,117616.2574,640275.5079,454533.1975,21
+22349,86561.84351,217924.6483,1158410.231,21
+22350,86575.22382,215771.287,44651.16685,21
+22351,87430.33165,213479.7783,39839.51452,21
+22352,86732.58217,212026.3555,322685.2576,21
+22353,86376.28641,210260.1853,311587.0103,21
+22354,85652.65464,208135.8084,37500.26259,21
+22355,85446.80761,206635.1391,40520.09917,21
+22356,84559.09019,204960.4643,69091.38639,21
+22357,84431.65071,203076.8268,326177.6911,21
+22358,83510.18864,621086.7979,35326.05661,21
+22359,83075.23646,199477.1989,36521.38133,21
+22360,64168.97872,198116.9759,34482.15772,21
+22361,63386.25995,196825.3077,318184.5016,21
+22362,63170.86833,194628.3182,268777.4309,21
+22363,111794.1437,40136.18957,32372.10802,21
+22364,65641.16979,40005.66418,34644.09177,21
+22365,70873.69141,39709.04213,31467.42058,21
+22366,88562.31451,536207.8931,272111.3599,21
+22367,77349.76704,95963.32559,255671.6428,21
+22368,419003.6577,112623.6765,29491.52032,21
+22369,78639.31317,229514.9274,31502.42375,21
+22370,78667.95382,133838.451,27031.88194,21
+22371,77797.78053,139159.3318,0,21
+22372,77626.39346,230155.6574,0,21
+22373,77209.58558,157039.0231,0,21
+22374,76606.87583,176250.652,0,21
+22375,17880.93543,176941.1074,0,21
+22376,17723.83154,173353.1211,273319.2931,21
+22377,17714.05756,172215.3756,195614.0186,21
+22378,17621.85608,171037.9252,182603.5563,21
+22379,17538.35507,169881.827,80821.88241,21
+22380,17539.85816,168112.0357,266146.2708,21
+22381,17408.04127,168442.2071,213161.9986,21
+22382,443459.498,168081.0889,157334.9344,21
+22383,17385.84276,588295.7061,171640.1329,21
+22384,17346.38646,168454.9616,164370.4317,21
+22385,17385.84759,168258.8469,159924.5192,21
+22386,17326.78188,168258.3491,156130.7178,21
+22387,17286.34333,168543.9414,152541.3726,21
+22388,17308.63353,168234.8517,630173.0384,21
+22389,17284.85617,168626.4491,20910.45293,21
+22390,17189.1679,168334.9895,105290.8075,21
+22391,17266.6902,168624.3932,655464.81,21
+22392,259102.3054,168436.1217,20608.37539,21
+22393,10834.96086,588382.5651,102577.6129,21
+22394,25737.71174,168397.6376,664397.797,21
+22395,52010.34127,168871.7034,20337.05059,21
+22396,120336.4131,36548.70735,924752.808,21
+22397,51955.60826,36447.13534,664623.1512,21
+22398,65767.88059,36632.67291,19815.69606,21
+22399,77508.98705,494878.5734,103058.0831,21
+22400,74568.25969,58898.91094,670392.7339,21
+22401,72811.04833,132735.0444,19560.01887,21
+22402,73694.3971,169167.53,104794.5979,21
+22403,73499.3479,127518.0197,675723.0759,21
+22404,73440.88988,217397.1388,19261.34555,21
+22405,73381.89947,149537.6355,106375.4506,21
+22406,73300.44285,170679.763,661718.8911,21
+22407,73201.77594,172370.1081,130.0677792,21
+22408,73154.24453,170220.3208,0,21
+22409,73056.48991,170009.9803,669416.7061,21
+22410,73158.89595,170431.3389,130.860726,21
+22411,412281.3452,170817.7528,0,21
+22412,73012.47451,170192.5744,676770.0518,21
+22413,72616.31754,171000.1013,63113.32128,21
+22414,72834.6462,170801.93,285227.7621,21
+22415,72659.55746,171007.0643,14112.67358,21
+22416,72586.23897,171101.1323,19014.33071,21
+22417,72478.40572,171443.6163,19409.76086,21
+22418,72365.38234,591169.1929,218662.59,21
+22419,72629.37481,172052.673,207715.1147,21
+22420,72144.65738,171347.3457,16160.2238,21
+22421,72130.91912,172204.3566,18338.08853,21
+22422,16684.5635,171803.6689,34583.31798,21
+22423,16728.12542,172540.3315,163428.7288,21
+22424,16570.77456,175131.7512,146904.5843,21
+22425,16644.72052,175675.9178,197179.7241,21
+22426,0,175702.8733,167091.9475,21
+22427,0,177223.7481,14666.61476,21
+22428,0,596938.4779,16325.44573,21
+22429,45722.80683,37392.78238,193768.5491,21
+22430,612.9563603,37455.39711,171852.4935,21
+22431,9347.208579,37478.85375,126970.9691,21
+22432,16771.73302,508721.3565,137271.0275,21
+22433,19081.27658,70853.96819,130060.1433,21
+22434,15178.57244,91199.09423,126132.6647,21
+22435,16486.22052,176713.2197,122937.6985,21
+22436,16367.76215,223496.3714,119986.072,21
+22437,16488.76922,167941.6297,586699.4326,21
+22438,16306.61291,183226.5563,12596.65701,21
+22439,16448.31727,188311.7419,82545.37061,21
+22440,16324.78094,186377.4217,612358.925,21
+22441,265163.3594,190312.9047,12278.90347,21
+22442,16303.11049,192408.0745,815558.0041,21
+22443,21163.70962,194803.0911,608350.7871,21
+22444,69076.88366,197278.6624,0,21
+22445,84065.18367,199331.0241,0,21
+22446,59712.71922,201777.2753,0,21
+22447,65972.55687,204243.8964,0,21
+22448,65382.20324,205908.7636,0,21
+22449,64865.47811,208709.7945,0,21
+22450,64318.60995,210748.3034,0,21
+22451,63265.72144,213047.4361,0,21
+22452,63015.4433,215039.4226,0,21
+22453,62139.45624,217759.8797,58040.55581,21
+22454,401028.5579,219634.846,129448.6915,21
+22455,60996.04449,221982.5206,148730.6258,21
+22456,60221.3467,224033.7714,131796.6052,21
+22457,59498.43612,226730.4215,11942.07512,21
+22458,58723.24347,228640.9543,9728.623896,21
+22459,43478.29116,230743.3778,159704.4395,21
+22460,42484.62633,233496.5637,142511.5855,21
+22461,42046.59281,235147.075,103897.975,21
+22462,41242.62301,43803.87521,112720.8663,21
+22463,84922.35736,43955.76144,106575.0129,21
+22464,42154.51365,44193.29312,103260.2451,21
+22465,45110.5426,671995.6324,100552.1917,21
+22466,53828.50795,116909.2928,98026.68198,21
+22467,48172.72743,110347.2919,557236.2645,21
+22468,54110.69411,381100.2852,7773.479283,21
+22469,49604.80224,222721.6854,67692.48912,21
+22470,50457.99434,254248.2068,583257.9738,21
+22471,14043.82764,262534.7569,7537.541308,21
+22472,14014.66456,259830.2463,67635.35855,21
+22473,13930.77904,262166.7148,594858.4294,21
+22474,13957.76566,264172.1162,7345.07702,21
+22475,13839.73535,265654.0442,187814.6437,21
+22476,13894.9068,268193.0741,7086.058348,21
+22477,13742.24548,269483.623,8927.154827,21
+22478,13703.59549,271491.6472,6900.264244,21
+22479,13673.94681,273716.5377,140026.5296,21
+22480,13630.92866,275147.9492,131289.9583,21
+22481,13586.0174,277463.5055,6537.864118,21
+22482,13562.27797,279107.309,7893.670778,21
+22483,13436.65031,280964.8237,0,21
+22484,13493.39968,282678.1262,0,21
+22485,13443.802,285001.651,0,21
+22486,13336.22536,286746.7636,769235.5829,21
+22487,13286.4887,288712.3738,0,21
+22488,13374.52,290126.9859,0,21
+22489,13178.88171,292395.5788,0,21
+22490,13279.07923,294511.5731,0,21
+22491,13159.34985,295901.4423,0,21
+22492,13172.37201,298081.1827,0,21
+22493,0,300058.051,0,21
+22494,0,301656.4916,0,21
+22495,0,51620.04537,0,21
+22496,339595.4734,51651.92837,0,21
+22497,37286.34843,753829.3476,558252.4666,21
+22498,956.1619007,116252.5433,0,21
+22499,4137.151378,233760.5821,0,21
+22500,13988.20671,421667.2517,0,21
+22501,8778.916153,288337.416,0,21
+22502,13303.36987,310167.354,0,21
+22503,13579.33742,317300.549,0,21
+22504,12679.99365,313009.5067,0,21
+22505,13163.55008,312926.6732,0,21
+22506,13278.84099,312954.5926,0,21
+22507,13269.58522,312987.4004,0,21
+22508,13379.52062,312480.3576,0,21
+22509,13329.77059,312784.7499,0,21
+22510,13486.07024,312584.2543,0,21
+22511,13451.99041,312196.4427,0,21
+22512,13517.36876,312539.2019,0,21
+22513,13619.49325,312322.5229,0,21
+22514,13619.4955,311838.3416,31073.17347,21
+22515,13648.85624,312091.7535,0,21
+22516,13817.00295,312103.0454,1011.784775,21
+22517,13801.33217,311313.7605,1388.427028,21
+22518,14692.47322,311950.6596,4337.354543,21
+22519,14674.14627,311503.3107,4175.177811,21
+22520,14764.56686,311118.2148,3284.671176,21
+22521,15001.09024,312593.4288,3671.783451,21
+22522,15160.42193,312198.3167,3685.403017,21
+22523,15233.61319,312699.8938,3672.578218,21
+22524,15538.19537,311673.0864,3681.554562,21
+22525,15516.73607,312187.2969,3673.372343,21
+22526,15756.99567,311491.3941,689058.6892,21
+22527,0,52955.39316,3668.065186,21
+22528,0,53067.70985,3681.662525,21
+22529,0,782625.669,3682.061974,21
+22530,0,104035.4805,3651.371088,21
+22531,46583.17133,227874.5244,3713.892603,21
+22532,2542.324202,428892.4447,3665.367358,21
+22533,8437.371712,282307.7486,3678.946476,21
+22534,17491.137,305117.8774,3684.049757,21
+22535,12709.3472,315092.0484,3679.740062,21
+22536,18180.94034,309447.2914,3680.136598,21
+22537,16991.40076,309246.0567,3680.533078,21
+22538,356383.694,308659.4981,3694.098361,21
+22539,17281.04347,308875.2707,3681.327239,21
+22540,17306.62081,308543.7099,3694.896252,21
+22541,272543.3148,307618.2333,3677.354314,21
+22542,17563.75377,307889.9192,3695.692746,21
+22543,20789.48624,307308.9529,3709.244396,21
+22544,60030.20381,307054.2852,0,21
+22545,81120.38239,306629.6744,0,21
+22546,56589.81288,306587.947,0,21
+22547,67479.21657,306211.8021,0,21
+22548,71871.27991,305403.2136,0,21
+22549,68758.13307,305950.9025,0,21
+22550,70752.17406,304242.1727,0,21
+22551,70625.11292,305411.8207,0,21
+22552,71778.96523,304270.5375,0,21
+22553,71416.43665,303834.7551,0,21
+22554,72258.12091,303877.4931,0,21
+22555,72655.9614,303298.3608,0,21
+22556,72912.33448,303102.0932,0,21
+22557,73295.23096,302415.2717,0,21
+22558,73688.48458,302617.4875,0,21
+22559,74151.55167,52487.01511,0,21
+22560,74413.96341,52450.09374,0,21
+22561,55324.86467,52589.89351,0,21
+22562,55408.33674,1297360.729,0,21
+22563,55200.21119,155542.8078,0,21
+22564,55200.21367,215617.0574,0,21
+22565,114077.114,388272.6999,688280.7528,21
+22566,59000.39244,286730.0056,0,21
+22567,60895.63011,312911.7804,0,21
+22568,76019.29406,307447.5235,0,21
+22569,73419.06777,309834.5058,0,21
+22570,74257.66206,309200.7815,0,21
+22571,18506.27564,310382.3506,0,21
+22572,19102.39769,311337.3411,0,21
+22573,19095.54506,311460.3987,0,21
+22574,19138.56769,312691.6136,0,21
+22575,19172.72657,312790.6255,0,21
+22576,19149.69695,314434.2638,0,21
+22577,19075.41808,313898.9169,0,21
+22578,358842.9642,315552.8744,0,21
+22579,19069.36389,315935.4723,0,21
+22580,19164.28834,316862.4319,0,21
+22581,19143.93314,317211.4646,0,21
+22582,19125.07106,317774.4829,0,21
+22583,19127.35536,739592.2372,0,21
+22584,19101.87129,319417.5589,0,21
+22585,19157.848,320371.9213,0,21
+22586,19115.56121,320549.1785,0,21
+22587,287958.3164,322186.6021,0,21
+22588,19073.93528,321896.5951,0,21
+22589,19140.81305,323492.736,0,21
+22590,58076.23446,323355.5818,0,21
+22591,92068.70048,324888.2819,0,21
+22592,64802.09819,55171.33832,0,21
+22593,69440.96586,55217.9259,0,21
+22594,70619.26165,770005.1803,0,21
+22595,51361.33733,112845.1478,0,21
+22596,51298.79896,382638.5069,0,21
+22597,51165.71549,340547.1489,0,21
+22598,50864.65489,322521.2105,0,21
+22599,108090.7338,335695.0711,0,21
+22600,52751.95909,331831.0717,0,21
+22601,57324.09848,752236.2741,0,21
+22602,73653.83823,333428.0775,0,21
+22603,71167.80591,333718.6233,0,21
+22604,68005.58724,334474.4036,687246.8219,21
+22605,69268.9331,334933.7224,0,21
+22606,68785.2866,336069.661,0,21
+22607,69205.92935,336716.2936,0,21
+22608,68732.14844,337087.6711,0,21
+22609,68590.40889,338194.5431,0,21
+22610,68546.46469,338880.4938,0,21
+22611,68555.42443,339263.0582,0,21
+22612,68160.99038,340553.7052,0,21
+22613,68227.60574,341034.2076,0,21
+22614,68097.99769,341355.8168,0,21
+22615,67770.98564,342658.8921,0,21
+22616,68080.94742,343410.8977,0,21
+22617,358718.6659,343719.72,0,21
+22618,19017.79575,344977.3192,0,21
+22619,19077.67186,765928.8977,0,21
+22620,19016.17255,346268.8403,0,21
+22621,19444.62366,376360.9957,0,21
+22622,19476.64914,343648.5043,0,21
+22623,19561.27994,343581.5991,0,21
+22624,19648.03763,66547.31886,0,21
+22625,19693.21862,64538.93167,0,21
+22626,19688.54657,812943.9514,0,21
+22627,19901.57554,135122.6473,0,21
+22628,19782.16809,384626.1893,0,21
+22629,0,359497.9656,0,21
+22630,0,331266.1052,0,21
+22631,0,343820.119,32857.2367,21
+22632,0,337084.1111,2149.608426,21
+22633,60038.33663,335988.4757,2286.63409,21
+22634,1832.90942,334260.6387,2286.080527,21
+22635,6207.986919,333399.6545,6583.759953,21
+22636,30263.93361,331368.7877,108121.7172,21
+22637,18650.20851,330004.9442,104977.1221,21
+22638,20007.67675,329141.857,102866.4955,21
+22639,294521.9692,326941.2176,100498.0692,21
+22640,20558.98208,746708.5091,98185.86761,21
+22641,20524.19304,323957.6782,95998.21015,21
+22642,68608.2869,323087.1268,93814.9767,21
+22643,100679.3138,321715.0629,720231.7663,21
+22644,66892.87405,320299.1306,91068.1083,21
+22645,76234.01395,318234.1836,89049.62047,21
+22646,76812.88137,317440.5261,87130.51723,21
+22647,76914.39261,315979.9255,85270.43916,21
+22648,76917.00838,314205.9632,83487.31828,21
+22649,77148.11272,312901.4189,81758.24439,21
+22650,77272.86865,312041.4685,80056.71952,21
+22651,77483.31315,304774.6817,78442.94535,21
+22652,77848.60597,303012.2161,76861.62813,21
+22653,77733.97863,302135.8387,75340.64776,21
+22654,77878.18539,300366.8525,73856.16186,21
+22655,78139.7361,298927.6615,72455.26476,21
+22656,418006.46,52456.14894,71079.15811,21
+22657,78378.05735,52134.55761,69738.94706,21
+22658,78443.57178,0,68469.86815,21
+22659,78962.95133,857610.4553,67207.3296,21
+22660,78832.57895,264605.4043,66048.84729,21
+22661,79083.12871,96704.95538,0,21
+22662,79357.64587,393625.6843,0,21
+22663,57965.90825,277852.6449,0,21
+22664,57637.66062,285705.588,0,21
+22665,58511.92184,285344.5077,0,21
+22666,58092.96407,284264.5469,0,21
+22667,124075.8759,282400.6922,0,21
+22668,62102.60917,280951.261,0,21
+22669,7821.406477,279710.0321,0,21
+22670,33219.43557,277590.0456,0,21
+22671,19315.19883,276874.9447,96679.10225,21
+22672,21872.60255,274797.9499,61253.08102,21
+22673,21962.21191,273598.544,61039.49963,21
+22674,22040.43498,271571.0886,62440.61019,21
+22675,22113.85468,270465.7261,65620.75473,21
+22676,22088.66958,268519.2636,61180.99305,21
+22677,22136.38192,267163.9821,61092.13188,21
+22678,22177.40576,265253.0403,60281.47073,21
+22679,22224.41903,263284.2263,59429.47969,21
+22680,22329.47222,261533.8004,58639.21497,21
+22681,22989.24615,265462.7,557908.5004,21
+22682,307617.6281,267573.1617,61898.44179,21
+22683,31681.24898,268331.5097,60962.40321,21
+22684,42605.35855,270001.2526,60057.84014,21
+22685,86760.25078,270781.8406,59191.70128,21
+22686,104852.0208,272219.0847,58332.59536,21
+22687,81132.75731,273814.0465,57551.29287,21
+22688,88558.82959,274432.9783,56734.5436,21
+22689,88578.92667,50365.20299,55984.49278,21
+22690,89450.41692,0,55244.06627,21
+22691,89512.49219,0,54564.81684,21
+22692,90156.51387,930167.2864,53824.93016,21
+22693,90627.69295,110801.7669,53194.4232,21
+22694,90715.31183,157371.8124,52545.82934,21
+22695,431330.0866,376611.7696,51915.64179,21
+22696,91656.45439,269908.7198,51342.80496,21
+22697,68033.77581,285041.9699,50746.28984,21
+22698,68415.30709,286590.2468,50205.23475,21
+22699,68462.3018,287530.5552,49643.30466,21
+22700,134759.7833,289253.3783,49143.39163,21
+22701,75974.30313,289634.6188,0,21
+22702,90093.38708,291082.1398,0,21
+22703,100500.1576,292306.9516,0,21
+22704,97669.54378,293133.3204,0,21
+22705,98222.69091,294480.6927,0,21
+22706,99138.43371,295447.767,0,21
+22707,100457.3901,296850.803,79853.56418,21
+22708,100640.3816,297776.8556,43282.44758,21
+22709,101550.658,299138.0863,42683.38435,21
+22710,102939.2544,299757.8726,50941.98675,21
+22711,102928.2229,301333.4002,48074.44945,21
+22712,25693.27597,302031.0393,46929.53044,21
+22713,25764.48728,303749.4409,46878.23574,21
+22714,25821.5829,304549.7939,46467.5024,21
+22715,25913.62586,305717.869,46123.36493,21
+22716,26014.47875,306687.9423,45727.06841,21
+22717,26057.75333,308333.3163,45414.24044,21
+22718,26165.58056,308775.7706,45079.06823,21
+22719,361115.1822,310167.4045,44762.43065,21
+22720,32230.1246,311458.117,492036.47,21
+22721,48303.97557,312477.1327,50462.15268,21
+22722,143764.8867,0,50012.26987,21
+22723,114358.2895,0,49569.71604,21
+22724,109527.2286,147058.5752,49169.7708,21
+22725,113731.2234,948675.4566,48776.05361,21
+22726,114673.9771,212683.2009,48366.10239,21
+22727,115289.6045,143139.0245,48246.97109,21
+22728,116113.4909,435019.099,47910.30782,21
+22729,116511.0028,306521.4178,47547.08801,21
+22730,90562.72389,323090.8979,47322.04476,21
+22731,90715.75217,324780.9753,47001.60858,21
+22732,91832.80125,326025.9705,46767.53775,21
+22733,167009.5725,327090.713,46485.25523,21
+22734,446619.8588,328181.4373,46282.60584,21
+22735,110137.8476,329548.9667,46018.99774,21
+22736,130025.2155,330080.2261,45818.85939,21
+22737,121189.7866,360940.6159,0,21
+22738,123099.3474,334098.1617,0,21
+22739,124280.488,335105.77,0,21
+22740,124570.5592,344577.2326,0,21
+22741,124374.982,341718.784,0,21
+22742,124690.9677,340190.2365,77636.42386,21
+22743,123926.6823,339357.6503,38925.10175,21
+22744,123850.9962,338996.6005,40592.17922,21
+22745,123819.8228,337635.3011,48450.55136,21
+22746,123343.2294,337423.8034,45979.53496,21
+22747,123496.0174,335719.8596,44975.17679,21
+22748,122852.5477,335549.4658,45141.93423,21
+22749,27919.69745,334241.145,44912.53985,21
+22750,27804.66157,333330.1452,44739.01977,21
+22751,27866.96574,333130.7528,44541.06844,21
+22752,27739.43125,331014.21,44385.62394,21
+22753,27894.33231,331750.3271,44215.34314,21
+22754,27674.03787,274099.9499,44035.54268,21
+22755,399516.6013,6800.726125,43878.71855,21
+22756,39025.36437,156856.423,43756.43488,21
+22757,70653.92068,32296.6989,43593.5184,21
+22758,155860.5505,1001407.963,43479.98685,21
+22759,119045.7068,235103.9355,477421.9501,21
+22760,118961.0976,132628.7573,49898.06483,21
+22761,120424.7151,439782.6503,49559.44457,21
+22762,120257.003,309372.5829,49305.37129,21
+22763,92132.42689,321770.8771,49015.0569,21
+22764,91875.06351,321502.3975,48730.54177,21
+22765,92033.57625,321784.7178,48500.26893,21
+22766,165855.8223,320013.9008,48210.06501,21
+22767,107996.5867,312820.7252,47981.55761,21
+22768,106211.7259,312035.3504,47745.50041,21
+22769,126848.0166,310748.5974,47528.96896,21
+22770,116732.5166,310101.4204,47296.54504,21
+22771,117734.5251,308270.9774,47106.92164,21
+22772,117608.0704,308862.6427,0,21
+22773,456688.8882,306869.9739,0,21
+22774,117050.5935,306468.7501,0,21
+22775,116719.9151,304882.7176,0,21
+22776,116439.3057,304964.9308,0,21
+22777,116250.4182,302877.8316,78022.9941,21
+22778,115834.502,302656.4499,40057.585,21
+22779,115689.1392,301652.2782,40813.69965,21
+22780,115256.8822,300342.5343,51551.4689,21
+22781,115183.6463,299745.2735,46170.71508,21
+22782,114690.5537,299043.6261,46509.20982,21
+22783,114600.812,297742.5478,46384.99205,21
+22784,114185.6334,296735.6007,46238.69517,21
+22785,27254.6222,296089.7265,477901.692,21
+22786,26978.65693,242555.9659,22665.50496,21
+22787,27172.57919,242103.2984,44199.90923,21
+22788,26987.03959,142462.727,507306.4763,21
+22789,27116.4501,19806.20774,23340.49981,21
+22790,26905.37651,49482.36135,49549.73529,21
+22791,27034.87674,903311.0295,525562.4251,21
+22792,370450.433,161234.477,24025.37212,21
+22793,43409.76629,137781.8285,55430.24735,21
+22794,59998.46437,390491.2479,541288.3727,21
+22795,129777.9677,270375.6602,24684.40258,21
+22796,92017.93365,285454.5441,61196.80636,21
+22797,79967.09902,284860.572,555884.2839,21
+22798,83581.18712,283220.7646,620539.6127,21
+22799,154517.9194,281658.5174,67961.37865,21
+22800,97735.53934,280183.978,572965.0325,21
+22801,99631.7903,279867.2541,26167.34945,21
+22802,116892.6893,700615.0381,73194.68242,21
+22803,108089.1369,279741.7218,585787.9926,21
+22804,109318.6775,280099.5842,26995.83214,21
+22805,109093.0311,280427.8505,78159.53817,21
+22806,109222.8735,279943.7337,597985.63,21
+22807,108518.0309,279978.7994,138.6979864,21
+22808,108978.0116,280230.9763,0,21
+22809,108393.1555,280165.6697,582201.2642,21
+22810,108515.5229,280095.4079,137.5457253,21
+22811,108370.0533,280219.8976,0,21
+22812,447696.2406,280476.4682,669804.9363,21
+22813,107660.8591,280268.8392,21196.13677,21
+22814,108262.6366,280314.729,85494.00379,21
+22815,107604.2855,280219.8258,637838.0848,21
+22816,107946.4225,280768.7729,29517.94772,21
+22817,107119.6376,280388.3457,96214.35237,21
+22818,107527.0666,229599.7527,641752.2441,21
+22819,107311.211,229275.7219,30824.57529,21
+22820,106996.2513,368406.7842,100132.8923,21
+22821,106923.222,16903.39563,650746.3483,21
+22822,26495.01944,470605.576,31493.84491,21
+22823,26336.22608,56022.50411,103688.8536,21
+22824,26403.6153,860666.6633,659291.732,21
+22825,26370.74801,140905.0399,32200.14581,21
+22826,26332.8884,153240.5787,107107.6285,21
+22827,26336.20173,373684.2845,667373.25,21
+22828,26315.96364,266984.7293,32839.05456,21
+22829,0,281829.1532,110366.456,21
+22830,0,281667.3825,675004.908,21
+22831,329057.1749,282305.6628,33533.44643,21
+22832,92676.61129,281757.6843,113439.8126,21
+22833,42159.0097,282705.2294,682259.8477,21
+22834,99257.85584,281530.7849,34204.51391,21
+22835,129637.9203,282512.1899,116351.201,21
+22836,97748.08808,282308.9871,689120.9498,21
+22837,104731.1772,281691.63,884087.5317,21
+22838,105051.9452,282422.7414,116236.4254,21
+22839,104814.1754,282664.7313,688392.4555,21
+22840,104615.07,702490.2126,35166.75226,21
+22841,104438.9889,282179.444,119083.1155,21
+22842,104290.8723,282771.4451,659292.8689,21
+22843,104039.2663,282336.087,144.0462187,21
+22844,103921.0762,282573.0498,0,21
+22845,103707.2106,282404.0987,666736.4611,21
+22846,103698.7215,282827.3384,100522.8773,21
+22847,103488.8827,282537.4119,113296.9269,21
+22848,103068.717,282424.4707,703137.0083,21
+22849,103180.0938,282981.4912,42667.44247,21
+22850,102967.4606,231501.5842,126497.552,21
+22851,442188.7479,231519.5535,713470.1495,21
+22852,102746.6351,371343.1317,37940.04625,21
+22853,102236.576,248692.5014,129596.5813,21
+22854,102479.3858,50283.58323,719534.9544,21
+22855,102216.9085,56402.60863,38998.0598,21
+22856,101826.1325,50850.52958,132115.2806,21
+22857,101841.6669,870379.5429,724397.7588,21
+22858,101729.5306,564536.3695,39861.45188,21
+22859,101496.1379,152399.9452,134354.7277,21
+22860,101351.338,377965.767,729263.5296,21
+22861,25849.37711,269234.8423,40482.43014,21
+22862,0,283734.6264,136318.5474,21
+22863,0,283956.9061,733589.8563,21
+22864,0,284169.1826,40895.06973,21
+22865,67977.01955,283731.7356,138033.6138,21
+22866,11534.69547,283835.4084,737710.4622,21
+22867,18771.48715,283620.63,41211.57257,21
+22868,32095.08247,283868.0885,139713.6518,21
+22869,24789.7238,283386.1417,741596.6579,21
+22870,25982.81086,283493.6824,41560.57228,21
+22871,345707.2826,283511.037,141255.4717,21
+22872,52568.35579,283347.4651,745215.6778,21
+22873,54575.13468,283053.4586,41959.10209,21
+22874,95022.59931,283603.0623,142692.3319,21
+22875,127961.6065,282686.0203,748747.8751,21
+22876,95566.78864,703987.8935,135.2422707,21
+22877,104104.9797,282760.97,0,21
+22878,104070.8559,282946.6499,712596.8141,21
+22879,104453.911,283099.0239,138.5873684,21
+22880,104391.1158,282462.3127,220616.0615,21
+22881,104732.938,283081.065,1704233.889,21
+22882,104654.6964,230871.57,35445.73585,21
+22883,104939.7545,231519.1605,148180.2843,21
+22884,105017.279,371025.292,747416.6498,21
+22885,105110.202,248187.224,42785.49365,21
+22886,105513.684,281266.8449,144042.3178,21
+22887,105108.1926,56515.45474,750983.9018,21
+22888,105731.4978,50710.46006,43200.58099,21
+22889,105620.8693,51476.04522,145351.4831,21
+22890,106012.1204,867365.4445,754127.0451,21
+22891,105863.8318,140671.571,43455.0179,21
+22892,106332.0458,153518.4928,146626.1985,21
+22893,106182.0659,375502.1535,757148.585,21
+22894,446128.441,688195.2414,43693.75808,21
+22895,80143.19451,282247.1036,147826.8992,21
+22896,80696.72252,282389.007,761497.2989,21
+22897,80518.18278,282536.3747,44913.0873,21
+22898,150999.8912,282336.2149,149868.3179,21
+22899,92970.97851,282423.1444,763868.0815,21
+22900,99438.79565,282083.8455,45488.87709,21
+22901,32976.9144,282034.8224,151044.9486,21
+22902,25231.79149,282123.5436,766621.3618,21
+22903,26511.0004,281665.6158,45868.04365,21
+22904,26548.57055,281906.2798,152182.1689,21
+22905,26415.42161,281405.0361,769239.6335,21
+22906,26676.82734,282000.8196,46115.71291,21
+22907,26465.23894,281389.9513,153359.9699,21
+22908,26670.82286,281407.332,771548.9005,21
+22909,26478.60689,281181.7805,46634.94742,21
+22910,390023.0915,281468.1948,0,21
+22911,34980.35982,280888.9698,731121.7609,21
+22912,64959.16151,702090.9748,140.2742277,21
+22913,106871.8555,281132.0407,0,21
+22914,130758.7957,229527.3059,871335.8714,21
+22915,102347.7235,229916.1806,33006.35085,21
+22916,110105.4777,368494.3962,148756.341,21
+22917,110171.2392,246471.5096,789154.7525,21
+22918,110481.3737,279649.7997,46063.37039,21
+22919,110396.9406,285676.9798,157756.7183,21
+22920,110741.0116,50808.27151,783612.4019,15.6
+22921,110611.5576,51339.66856,46537.13634,15.6
+22922,110745.7091,51845.7653,158702.6803,15.6
+22923,111110.1027,870793.2588,785173.4382,15.6
+22924,110901.5189,143518.5661,47650.24931,15.6
+22925,110951.2619,162034.3966,1177015.352,15.6
+22926,111265.6039,381119.4121,773640.2721,15.6
+22927,111476.2075,275908.56,48935.35943,15.6
+22928,84062.49204,291809.0752,156507.5649,15.6
+22929,84789.93702,292683.7324,776789.2772,15.6
+22930,84364.91474,715064.9013,49666.43003,15.6
+22931,158505.0723,295047.108,157690.1726,15.6
+22932,96395.98154,296425.4558,779329.3766,15.6
+22933,104022.1192,296714.5586,50215.53615,15.6
+22934,118517.4371,322569.6662,159078.2,15.6
+22935,111185.104,299338.2328,781633.1398,15.6
+22936,111940.6905,301991.6723,50953.83678,15.6
+22937,451808.0576,307518.6548,160247.3984,15.6
+22938,112808.3481,308484.5345,783931.8086,15.6
+22939,112201.8462,309526.6004,51580.72018,15.6
+22940,27184.03663,730650.4763,161430.5985,15.6
+22941,27307.04205,311346.6684,786113.1704,15.6
+22942,27199.506,312863.262,52292.70197,15.6
+22943,27307.04255,313537.2903,162582.4345,15.6
+22944,27229.39751,314655.0351,1418557.341,15.6
+22945,27440.94028,315858.9021,176931.7579,15.6
+22946,27216.34602,262416.7189,256447.1947,15.6
+22947,27439.14885,263299.8768,937507.8335,15.6
+22948,27380.18216,413404.8382,423403.7242,15.6
+22949,428073.208,287001.6963,308894.2019,15.6
+22950,28554.42155,317948.3779,1026218.073,15.6
+22951,62885.68189,327898.1464,301972.4367,15.6
+22952,122624.6408,322580.6646,335554.3816,15.6
+22953,130084.685,61920.93926,1060429.519,15.6
+22954,107726.4629,61890.05404,301259.9641,15.6
+22955,114116.6369,62150.12671,344280.4246,15.6
+22956,114426.4772,1001795.133,1084012.08,15.6
+22957,114313.7846,217957.2382,312980.6354,15.6
+22958,114461.7479,145417.3984,354271.9535,15.6
+22959,114456.6837,449037.1096,1101932.771,15.6
+22960,114544.2532,314428.5996,322810.3181,15.6
+22961,87075.13177,332034.8052,362021.8016,15.6
+22962,87058.30677,334476.3675,1120208.433,15.6
+22963,87301.07728,334745.9602,331823.7542,15.6
+22964,163646.9237,329346.1728,369852.057,15.6
+22965,99463.19902,750246.0457,2273641.887,15.6
+22966,106291.5134,331029.6775,333736.5652,15.6
+22967,122633.5139,331598.2629,369056.8655,15.6
+22968,113830.7523,332746.4435,1128985.267,15.6
+22969,115420.0294,333554.4798,343287.7339,15.6
+22970,115338.3018,334886.4334,376537.5216,15.6
+22971,115359.1946,335366.5977,1147072.304,15.6
+22972,115857.3442,336402.0953,351862.624,15.6
+22973,115488.0318,337109.9139,384017.9651,15.6
+22974,115921.1081,338478.1279,868631.7932,15.6
+22975,115839.437,368259.506,63869.80845,15.6
+22976,455267.3564,341448.7743,198022.3014,15.6
+22977,116461.2132,342603.7565,866216.3572,15.6
+22978,115920.6263,294255.1961,122.1860788,15.6
+22979,27928.44661,292709.0719,0,15.6
+22980,28148.48959,449412.8932,803880.6421,15.6
+22981,27993.53301,321156.43,170952.09,15.6
+22982,28041.30914,348900.931,177291.8737,15.6
+22983,28291.16859,358718.4811,852753.138,15.6
+22984,28116.40852,352969.1009,70183.44813,15.6
+22985,28368.57998,354289.4476,194112.8581,15.6
+22986,28306.88205,66019.41622,860180.294,15.6
+22987,451459.8775,66133.93378,66671.63812,15.6
+22988,28387.87763,898915.1793,930865.371,15.6
+22989,59445.10283,190528.4987,1094098.153,15.6
+22990,140752.9025,734005.7155,308497.4153,15.6
+22991,132954.001,400623.0177,375508.4729,15.6
+22992,116437.7988,353541.1976,1210386.439,15.6
+22993,122245.9638,359053.7769,355277.4905,15.6
+22994,94184.87227,359096.9679,396111.9861,15.6
+22995,94525.66791,359644.4931,1181989.568,15.6
+22996,94807.74512,360272.9925,371992.6788,15.6
+22997,176986.373,360564.5454,400672.6524,15.6
+22998,108679.3431,361494.9862,1193952.801,15.6
+22999,115221.9256,361314.0553,376549.422,15.6
+23000,133295.5145,782107.2195,404865.3132,15.6
+23001,124469.5725,362400.8579,1204932.29,15.6
+23002,126425.9459,362946.8668,381008.9474,15.6
+23003,126709.0715,363417.2569,408800.4454,15.6
+23004,127080.2398,364158.4485,1215255.273,15.6
+23005,127590.2979,356275.1677,1603945.879,15.6
+23006,128325.8045,356981.6235,402553.3757,15.6
+23007,128292.2558,357182.6214,1194625.63,15.6
+23008,128952.6534,358238.4976,380254.3581,15.6
+23009,129561.9637,357948.8298,406558.9664,15.6
+23010,129803.664,299087.4558,1206315.072,15.6
+23011,130163.0409,299835.1559,315160.6666,15.6
+23012,131093.637,457770.5647,361102.3038,15.6
+23013,130869.4074,329339.1033,1144758.758,15.6
+23014,131974.3114,394863.706,508689.7931,15.6
+23015,471573.342,363904.7638,391355.629,15.6
+23016,132303.8668,784716.98,1204939.393,15.6
+23017,30165.8065,372215.9092,396694.6173,15.6
+23018,30129.37877,68496.0432,212990.2945,15.6
+23019,30258.77729,67750.95365,901478.4814,15.6
+23020,30202.59847,941283.6841,69186.78664,15.6
+23021,30309.59728,214657.8789,213080.6743,15.6
+23022,30472.94937,314922.21,895119.4129,15.6
+23023,512427.4814,422246.7465,70167.1598,15.6
+23024,30523.29635,367608.8681,211296.4755,15.6
+23025,51706.3525,373805.0896,891052.048,15.6
+23026,191241.1297,374119.3769,69900.42525,15.6
+23027,103590.4628,374488.5885,209798.2021,15.6
+23028,105357.5165,374478.3428,887164.3273,15.6
+23029,108195.8295,375293.4362,1010759.871,15.6
+23030,195651.6256,375539.0467,343972.4732,15.6
+23031,124356.772,375811.7357,1126464.197,15.6
+23032,131343.8998,376424.342,383256.2533,15.6
+23033,148192.4767,376803.6854,441663.7755,15.6
+23034,140257.789,377090.387,1195692.743,15.6
+23035,141586.8393,377520.467,386709.0369,15.6
+23036,142261.6175,377531.2346,413818.0262,15.6
+23037,142862.7701,378319.9025,1217593.364,15.6
+23038,142959.2228,378942.6798,390566.0154,15.6
+23039,143492.5677,378563.7747,417891.8426,15.6
+23040,144257.8209,379153.8738,1227481.223,15.6
+23041,137224.127,792059.0867,387255.2729,15.6
+23042,136966.0994,309918.0019,414467.9655,15.6
+23043,135876.2952,309359.5931,1227283.756,15.6
+23044,135500.5523,454875.6594,317790.8728,15.6
+23045,134539.8107,331404.5317,1980557.553,15.6
+23046,134217.0627,357602.6392,304885.8898,15.6
+23047,134357.2222,359736.0153,498603.049,15.6
+23048,132971.0853,356064.9241,346734.7031,15.6
+23049,133072.9474,354914.6866,565772.4302,15.6
+23050,132097.2152,58237.05174,687862.4789,15.6
+23051,471172.0208,477853.5778,359538.8073,15.6
+23052,130656.311,907885.371,367962.0923,15.6
+23053,29205.26731,190478.0439,409963.3968,15.6
+23054,29139.23402,296604.8696,637794.277,15.6
+23055,29114.91233,427738.9204,361313.7912,15.6
+23056,28938.30865,342784.6811,361760.3194,15.6
+23057,28983.51431,349168.9583,362449.1534,15.6
+23058,28886.53878,355237.3262,578000.0424,15.6
+23059,28826.62522,352767.1894,365948.3291,15.6
+23060,479215.8772,351022.64,63934.7847,15.6
+23061,0,349557.0755,67469.47656,15.6
+23062,16687.95885,349503.9478,63798.40656,15.6
+23063,200355.326,347557.8139,355195.9801,15.6
+23064,122020.7641,347187.3864,341476.6417,15.6
+23065,106546.3757,346163.2693,62060.3775,15.6
+23066,129723.4467,344154.342,65233.97149,15.6
+23067,120297.3285,343883.7945,83444.29977,15.6
+23068,120992.8828,343143.009,280843.8197,15.6
+23069,120463.115,341547.3817,294041.728,15.6
+23070,119471.2292,340555.3202,284657.1182,15.6
+23071,119254.7258,339743.8284,59764.10926,15.6
+23072,118495.4911,338471.2804,62482.3748,15.6
+23073,117803.3457,337480.4264,62714.01827,15.6
+23074,117144.1407,281633.1372,296228.0661,15.6
+23075,116643.374,280263.1341,913063.2721,15.6
+23076,116137.2453,846662.7668,376872.3082,15.6
+23077,115231.1295,305262.4725,326343.17,15.6
+23078,114811.6928,327462.2138,358501.3897,15.6
+23079,114060.3621,338146.2294,408744.8235,15.6
+23080,113774.3247,329976.2159,503943.6737,15.6
+23081,112870.8647,329297.6477,1948126.162,15.6
+23082,112239.8154,60471.65138,295555.9311,15.6
+23083,111976.3408,60427.43473,352745.3622,15.6
+23084,110988.9347,60111.08374,1021511.182,15.6
+23085,110673.053,1007652.245,314893.9875,15.6
+23086,109956.4357,213630.0962,344890.8688,15.6
+23087,449080.1273,124820.6367,1048664.215,15.6
+23088,108836.0225,436725.553,316052.0862,15.6
+23089,108165.9575,300525.4412,349290.3303,15.6
+23090,26862.72484,314254.5163,1066218.164,15.6
+23091,26768.17779,314417.8624,319520.5162,15.6
+23092,26816.87358,314236.3851,353879.1637,15.6
+23093,0,312189.5366,1081548.527,15.6
+23094,0,312024.3042,322006.505,15.6
+23095,0,310508.823,358164.5784,15.6
+23096,72890.10963,309664.4276,1095178.984,15.6
+23097,9470.627659,308877.6461,324103.7766,15.6
+23098,19676.57706,307888.6024,710258.4323,15.6
+23099,32819.09272,306481.9755,319674.3844,15.6
+23100,25052.98428,306148.2788,325435.5265,15.6
+23101,26414.9456,724886.7611,366851.5062,15.6
+23102,412104.9781,304064.4478,419578.2646,15.6
+23103,35227.02589,302285.2374,574560.5477,15.6
+23104,49187.97449,302000.6908,414632.5262,15.6
+23105,90010.19898,301084.3118,283802.0951,15.6
+23106,131092.6085,248232.9588,265204.9636,15.6
+23107,99590.3166,247333.732,258757.5291,15.6
+23108,105465.4598,383099.2518,252939.7634,15.6
+23109,107311.6313,266905.5273,247702.3981,15.6
+23110,107597.0207,292068.7022,0,15.6
+23111,108586.2106,300562.9863,0,15.6
+23112,108336.5312,293362.5171,0,15.6
+23113,109646.921,293267.3252,340911.8434,15.6
+23114,109322.8496,291162.5363,725649.9672,15.6
+23115,110316.2462,50375.87693,46127.02128,15.6
+23116,110808.7999,50346.8335,178795.0687,15.6
+23117,110933.1226,50108.91288,1749057.996,15.6
+23118,111754.2445,1321024.981,60407.83913,15.6
+23119,112096.5605,152121.6659,160901.6389,15.6
+23120,112620.1164,138040.024,768603.7804,15.6
+23121,112845.5419,388124.0017,58694.5486,15.6
+23122,113608.5585,268185.453,161983.8612,15.6
+23123,453515.3587,283119.4986,1556660.761,15.6
+23124,114501.8054,282761.0258,256191.2655,15.6
+23125,114844.0763,281986.5944,292540.4969,15.6
+23126,87432.722,280421.6927,1026712.545,15.6
+23127,88338.41051,279916.1012,361726.2214,15.6
+23128,88130.39736,278300.8117,651989.9122,15.6
+23129,166651.7514,278087.2514,320983.0119,15.6
+23130,100648.1914,276412.6344,327792.7781,15.6
+23131,108981.0101,275524.1873,365867.17,15.6
+23132,35412.50575,274563.7419,414812.1357,15.6
+23133,26704.12548,273521.4696,514779.1618,15.6
+23134,28167.89304,272706.4207,563578.42,15.6
+23135,28088.6467,271708.3927,328697.1679,15.6
+23136,28266.96397,270167.8103,335911.8668,15.6
+23137,28185.36945,269704.6516,354994.3502,15.6
+23138,28332.41672,221284.8926,453701.6371,15.6
+23139,28289.33688,219936.2822,478847.3625,15.6
+23140,484415.8663,344835.7818,557335.0927,15.6
+23141,28330.47874,234694.6807,336999.6424,15.6
+23142,51367.77707,263807.6221,342570.0301,15.6
+23143,132169.9391,268735.9736,357576.3406,15.6
+23144,144828.1758,262365.36,321510.9497,15.6
+23145,114985.8231,261774.8193,500108.2746,15.6
+23146,123653.4515,261300.7664,568054.3737,15.6
+23147,124696.3096,259926.6957,533857.8481,15.6
+23148,124548.3266,46245.56475,328100.747,15.6
+23149,125151.6319,46293.28939,354204.0534,15.6
+23150,125335.6815,46026.18556,351057.5139,15.6
+23151,125911.463,791132.609,494507.6508,15.6
+23152,125718.6891,93202.16463,445352.3823,15.6
+23153,126793.2682,160247.4587,1250150.987,15.6
+23154,126550.0673,750029.4607,239040.9347,15.6
+23155,127109.8006,239189.3434,233039.9176,15.6
+23156,127271.1251,250564.9329,228390.8726,15.6
+23157,128019.8969,250213.4114,224005.0277,15.6
+23158,127835.6752,248860.1555,722890.123,15.6
+23159,439071.2339,246642.95,60210.0463,15.6
+23160,99471.62723,246384.9928,163572.2096,15.6
+23161,99530.53379,246568.1994,748226.508,15.6
+23162,178834.9578,248007.0085,60929.95069,15.6
+23163,112942.4174,249040.0435,159277.6401,15.6
+23164,119252.097,249324.6751,756335.3905,15.6
+23165,134232.8987,250656.3768,61169.62201,15.6
+23166,125867.9774,250581.2993,160053.0696,15.6
+23167,126814.7825,252118.4636,1582515.373,15.6
+23168,126662.358,252459.6149,275628.4282,15.6
+23169,126054.9724,253426.6476,302900.1172,15.6
+23170,28612.43901,208082.5944,1041503.409,15.6
+23171,28769.10298,209869.53,384641.9041,15.6
+23172,28660.99356,328733.4092,354978.3954,15.6
+23173,28585.59083,223766.9345,1080105.466,15.6
+23174,28558.95059,258054.5122,361025.8456,15.6
+23175,28459.41373,260781.9491,703541.6166,15.6
+23176,28569.58898,257939.3767,292024.8346,15.6
+23177,497203.1623,258826.3247,297736.8572,15.6
+23178,28421.95845,679517.7727,295565.3154,15.6
+23179,48669.82239,260218.4916,641922.0577,15.6
+23180,132779.5059,260930.808,592409.2677,15.6
+23181,145960.5094,46139.10793,341704.9812,15.6
+23182,113174.5019,46221.94033,371429.6565,15.6
+23183,122649.2409,46272.82558,402840.6601,15.6
+23184,122076.7122,810774.6829,440236.4256,15.6
+23185,122179.2906,104176.7068,575826.388,15.6
+23186,121524.6141,166758.9012,430367.3623,15.6
+23187,121429.6402,344350.6001,476976.1041,15.6
+23188,121050.5114,253411.8342,464226.8018,15.6
+23189,120845.2328,267086.2625,1472029.899,15.6
+23190,120445.8187,267209.4227,453560.8513,15.6
+23191,120177.6156,269281.8732,453848.6317,15.6
+23192,92211.36183,268451.9045,454217.0263,15.6
+23193,91895.48416,269635.7523,1061236.661,15.6
+23194,91786.8821,270265.3804,365619.343,15.6
+23195,507449.658,270829.4157,392691.6499,15.6
+23196,103494.4508,271035.8025,1106915.4,15.6
+23197,109734.8383,272186.8903,65930.15134,15.6
+23198,125886.3587,692506.7174,182301.6381,15.6
+23199,116579.0254,273165.1939,808654.5525,15.6
+23200,117799.0131,273863.8779,66222.24798,15.6
+23201,117560.3604,274336.1144,181331.9585,15.6
+23202,117227.6354,227568.7135,810635.3089,15.6
+23203,117070.5705,227826.7444,66348.89134,15.6
+23204,116883.3021,353363.8395,181822.6908,15.6
+23205,116236.0985,245989.1557,811735.2868,15.6
+23206,116231.4477,276293.9345,66759.21978,15.6
+23207,27180.86941,282270.6328,182124.0403,15.6
+23208,27270.14221,277983.7836,1730811.394,15.6
+23209,27107.81738,278942.4181,227333.8988,15.6
+23210,27114.74315,279951.2515,584803.1193,15.6
+23211,27133.15929,280016.5091,286903.5032,15.6
+23212,26970.71798,280579.3291,535160.1509,15.6
+23213,27011.7751,281906.3447,334233.9179,15.6
+23214,27041.46775,48092.02454,523157.2101,15.6
+23215,26857.99079,48312.64321,645875.0697,15.6
+23216,471748.278,48151.60527,371837.067,15.6
+23217,27602.47917,882193.8142,374053.0674,15.6
+23218,49203.42154,561035.2617,414246.714,15.6
+23219,98119.67759,151650.6017,452585.8505,15.6
+23220,148202.2092,381660.8155,591531.6892,15.6
+23221,100907.3526,269445.3707,443469.8615,15.6
+23222,112799.5716,283590.4453,491675.8394,15.6
+23223,113255.9828,283241.0997,479941.5626,15.6
+23224,113424.5511,282074.5285,480220.2895,15.6
+23225,86537.32623,281089.463,1505157.044,15.6
+23226,86676.95954,280406.4556,471852.3491,15.6
+23227,86929.70729,279034.4359,473277.9823,15.6
+23228,159705.879,278303.8118,474825.1063,15.6
+23229,97849.05151,277409.991,476790.8542,15.6
+23230,106239.023,276067.8852,478338.1264,15.6
+23231,459893.9391,275600.5522,1098397.39,15.6
+23232,112913.9258,274062.1591,397807.7203,15.6
+23233,113995.3287,273680.4885,417782.1186,15.6
+23234,114279.0126,225706.0804,1150160.43,15.6
+23235,113971.07,644848.2838,410351.3994,15.6
+23236,114113.4666,347189.7454,421873.8041,15.6
+23237,114507.4887,239040.4642,1180689.628,15.6
+23238,114415.8917,267594.5993,72562.11904,15.6
+23239,114496.8986,272879.758,195369.5082,15.6
+23240,114318.0235,265972.5384,836630.2882,15.6
+23241,114808.6517,266305.8139,73222.39345,15.6
+23242,114503.6358,264740.3532,0,15.6
+23243,114796.2088,264593.6537,767725.9723,15.6
+23244,114888.2429,262882.0969,0,15.6
+23245,114783.6893,262490.0791,593768.1668,15.6
+23246,26995.28624,261244.1997,47867.93123,15.6
+23247,26926.82132,45521.90877,1075881.941,15.6
+23248,26868.5903,45395.97665,401108.849,15.6
+23249,26980.26934,45251.6083,419841.82,15.6
+23250,26885.53696,801508.7374,626112.5201,15.6
+23251,26944.10598,95890.93899,708745.7009,15.6
+23252,26885.52089,577570.9893,424778.1688,15.6
+23253,26992.60736,334721.6561,440169.2097,15.6
+23254,26868.54214,240887.1275,470218.3977,15.6
+23255,477824.0249,252854.072,556047.7558,15.6
+23256,27818.34469,252743.1637,447396.7522,15.6
+23257,49660.8667,251337.8682,637582.4828,15.6
+23258,76412.61805,250418.5661,596827.886,15.6
+23259,123163.319,249561.5376,712475.9429,15.6
+23260,76794.15729,248815.0824,450897.7279,15.6
+23261,162393.1353,247690.2595,1504602.212,15.6
+23262,100456.1985,246261.76,474915.5277,15.6
+23263,107466.0772,666101.492,533113.0927,15.6
+23264,122823.4942,244490.166,570254.6986,15.6
+23265,114738.5117,243811.8381,688141.2087,15.6
+23266,115515.0644,199456.3956,459693.1897,15.6
+23267,455496.2862,198742.9925,466396.2702,15.6
+23268,115723.5321,197635.6051,550390.123,15.6
+23269,115902.205,335139.1679,470710.0178,15.6
+23270,115742.2611,208758.9595,648657.1272,15.6
+23271,115998.6675,224541.3364,563287.9966,15.6
+23272,115682.9255,249367.4516,710070.16,15.6
+23273,115819.1469,233945.9035,479953.1597,15.6
+23274,115813.934,235186.3193,486217.2556,15.6
+23275,115995.479,234374.144,500372.8267,15.6
+23276,115619.7889,233130.4597,410807.822,15.6
+23277,116123.3492,232052.0881,0,15.6
+23278,115710.4946,231141.8027,458097.914,15.6
+23279,115816.6241,229930.9639,244039.8253,15.6
+23280,116020.1529,462036.3123,252084.2181,17.8
+23281,2245112.447,2560545.408,2549448.232,17.8
+23282,1130867.186,2540534.194,2472693.675,17.8
+23283,547368.4192,1523212.514,1755740.426,17.8
+23284,469380.9873,761698.7707,1076382.926,17.8
+23285,47347.49006,1005304.657,1581646.656,17.8
+23286,116781.2544,944760.0414,1043810.579,17.8
+23287,922432.7165,918635.3484,966747.9469,17.8
+23288,458743.0427,886417.5307,1674953.708,17.8
+23289,410634.3023,879682.4301,959281.8394,17.8
+23290,543237.9109,873334.3694,962423.5607,17.8
+23291,398840.3545,1287743.275,1710609.38,17.8
+23292,399302.2395,861739.1061,971999.9493,17.8
+23293,608483.053,856742.5161,974566.463,17.8
+23294,481393.2325,851544.364,1739547.056,17.8
+23295,474994.9081,846955.8097,981579.4422,17.8
+23296,484942.6791,843735.4377,984197.5205,17.8
+23297,481880.0997,837292.3707,1763483.95,17.8
+23298,479459.2199,835166.5634,2101056.389,17.8
+23299,475904.4059,724025.0048,969541.8108,17.8
+23300,474692.6558,722567.7069,1745735.39,17.8
+23301,472757.9817,952995.0854,978079.9425,17.8
+23302,470702.7436,824899.2344,979407.8082,17.8
+23303,809362.0704,798953.8123,1768276.662,17.8
+23304,467654.391,819341.9999,999984.8752,17.8
+23305,466289.8986,814155.7409,994980.1991,17.8
+23306,464114.1051,806653.5445,1794308.469,17.8
+23307,464342.4249,805527.2481,1003659.904,17.8
+23308,461011.55,802227.0549,805131.8796,17.8
+23309,460519.2513,798966.6985,1614718.601,17.8
+23310,460138.8901,797421.4526,1335858.624,17.8
+23311,456300.3669,100375.3576,331621.2601,17.8
+23312,457250.4092,99758.70238,997889.3404,17.8
+23313,454749.5771,1696708.789,193036.1265,17.8
+23314,454682.2344,406102.5668,2465971.887,17.8
+23315,452159.6174,910374.1586,1937502.08,17.8
+23316,452467.651,760425.6965,705033.9795,17.8
+23317,79831.12914,786075.4698,1078905.418,17.8
+23318,79687.69344,786539.6716,1756285.915,17.8
+23319,79399.50714,774665.6471,962661.8533,17.8
+23320,845467.1983,775768.714,964246.2599,17.8
+23321,308807.8295,773670.3098,1764489.861,17.8
+23322,370944.9874,770424.4855,968495.2078,17.8
+23323,433930.5678,768747.1229,971269.7005,17.8
+23324,351612.3005,768401.0986,1780441.159,17.8
+23325,566125.1186,765053.764,974384.6697,17.8
+23326,409859.4223,763420.782,977204.0291,17.8
+23327,439178.728,762078.8632,1792324.986,17.8
+23328,442970.7919,759509.4194,979895.4519,17.8
+23329,440105.0097,759300.0421,989605.2917,17.8
+23330,436956.3578,755986.6214,1823405.955,17.8
+23331,437516.0203,661689.2834,998005.2104,17.8
+23332,436203.281,1079857.063,1000116.217,17.8
+23333,434139.763,892791.9467,1828050.154,17.8
+23334,434943.1478,717725.9066,2211984.295,17.8
+23335,433248.802,745805.9252,979779.7051,17.8
+23336,431245.6139,752666.4517,1794931.499,17.8
+23337,433466.1425,745846.1801,983927.3549,17.8
+23338,429638.0801,745314.696,989043.6427,17.8
+23339,769468.5407,742524.4363,1807380.75,17.8
+23340,429332.7291,742082.4365,805945.724,20
+23341,2262757.913,2629621.024,4262095.551,20
+23342,2259089.398,2609994.547,4570768.54,20
+23343,2045393.993,287200.2324,4109675.888,20
+23344,1911501.757,2474052.435,738958.8652,20
+23345,854353.5825,1994771.076,4568586.195,20
+23346,1342407.33,2027293.412,2810398.58,20
+23347,1217068.528,2148986.515,2777694.045,20
+23348,1158484.804,1305139.891,3424193.329,20
+23349,1160649.037,2111241.363,2543427.705,20
+23350,164462.0541,1598913.101,2812233.637,20
+23351,164260.6761,1568935.964,2410218.799,20
+23352,2006061.127,1563255.207,2381202.594,20
+23353,931908.3082,1556198.055,2381887.803,20
+23354,1175160.787,1548175.557,2321507.816,20
+23355,1004472.133,1542105.839,2327978.758,20
+23356,1166315.106,1535614.597,2483370.582,20
+23357,1141858.451,1528545.414,2212652.642,20
+23358,1047458.086,1521940.757,2208783.762,20
+23359,1088867.098,1520123.107,2212283.163,20
+23360,1066550.951,1509330.004,2200203.747,20
+23361,1063327.663,1506374.438,2204209.564,20
+23362,1057936.026,1502668.87,2371235.241,20
+23363,1051741.426,1336213.943,2133397.778,20
+23364,1048241.889,1567104.61,2135226.73,20
+23365,1040091.035,1531293.984,2129681.397,20
+23366,1038174.708,1874495.101,2175998.822,20
+23367,1032248.451,1486821.141,2115153.709,20
+23368,1030701.126,1477893.936,2123467.839,20
+23369,1023586.163,1469979.202,2111311.319,20
+23370,1020115.508,1469824.453,3104398.655,20
+23371,1004259.733,1462688.841,1749322.182,20
+23372,996486.5914,1461848.297,2209639.709,20
+23373,996485.5299,1456828.357,2743053.529,20
+23374,991404.2787,204219.5542,1999235.089,20
+23375,1327150.733,204210.8523,433112.1826,20
+23376,983842.6474,2446517.017,1029825.134,20
+23377,982073.5243,1881377.367,3030540.459,20
+23378,1002480.317,914145.3217,2487627.981,20
+23379,983150.3277,1645926.686,2761494.454,20
+23380,983487.7663,1424565.335,2012371.58,20
+23381,985073.5799,1423245.421,2132263.148,20
+23382,140634.2216,1442670.463,2706959.536,20
+23383,141052.357,1852286.827,2054801.287,20
+23384,1744215.06,1427756.782,2025993.457,20
+23385,848889.6429,1426171.603,2777847.425,20
+23386,939964.3803,1425137.159,2034318.434,20
+23387,846915.7377,1420173.332,2034363.883,20
+23388,1046219.811,1420469.692,2333724.308,20
+23389,1056199.329,1413606.971,1989592.52,20
+23390,929220.5647,1416351.485,1995576.081,20
+23391,972620.2672,1410801.56,2068160.497,20
+23392,959076.5488,1407388.473,2036744.529,20
+23393,953237.5636,1403144.453,1980694.507,20
+23394,951487.4769,1255679.716,2000043.768,20
+23395,950675.0802,1252702.853,1989736.853,20
+23396,945119.5451,1485761.734,1989475.425,20
+23397,945477.479,1483025.336,1986061.539,20
+23398,941271.5099,1360795.035,1985913.539,20
+23399,940444.9799,1392678.807,1979755.846,20
+23400,937912.7429,1394744.701,1983607.432,21
+23401,2302193.954,2994649.928,4576639.219,21
+23402,2109146.347,2352053.47,4190942.484,21
+23403,1491818.006,1991721.125,3323962.198,21
+23404,1115819.351,2230098.385,2156823.544,21
+23405,1377907.88,1562540.679,2839054.716,21
+23406,1298280.972,1804208.07,2527052.248,21
+23407,1241292.093,1740948.903,2449920.829,21
+23408,1250690.528,1722236.409,2474135.557,21
+23409,1238237.086,1709293.412,2446514.657,21
+23410,1231523.716,2128710.292,2449775.116,21
+23411,1226504.474,1700224.949,2435456.515,21
+23412,1219356.561,1692252.023,2434669.567,21
+23413,1214899.34,1689360.679,2424421.428,21
+23414,1209401.095,1679822.247,2422624.201,21
+23415,1204060.94,1679791.88,2691499.612,21
+23416,1201009.85,1670343.623,2372010.219,21
+23417,1196393.463,1667303.847,2376917.002,21
+23418,1189229.135,1661150.875,2428277.259,21
+23419,1186817.961,1658487.805,2399806.879,21
+23420,1183872.921,1652965.288,2360717.49,21
+23421,1176788.019,2066652.855,2361157.665,21
+23422,1175697.032,1645756.543,2361839.491,21
+23423,1170382.899,1638146.683,2359886.109,21
+23424,1167308.989,1636717.902,2363499.331,21
+23425,1163059.08,1630308.365,2358863.551,21
+23426,1160927.905,1627397.577,2644335.812,21
+23427,1155905.034,1625181.843,2319648.663,21
+23428,1153597.374,1617434.877,2330598.541,21
+23429,1150812.338,1618004.82,2375471.064,21
+23430,1145602.616,1612001.965,2353397.296,21
+23431,1143665.796,1607773.752,2325033.728,21
+23432,1141414.795,1606391.702,2325771.149,21
+23433,1136610.209,1601208.691,2329854.733,21
+23434,1136526.718,1598819.439,2331633.384,21
+23435,1130538.562,1593611.4,2333649.946,21
+23436,1128912.983,1591939.452,2337645.646,21
+23437,1125675.458,1586268.552,2625204.875,21
+23438,1124767.299,1584776.143,2299835.66,21
+23439,1120401.389,1580074.165,2307763.159,21
+23440,1118932.946,1579663.77,2354159.316,21
+23441,1114454.811,1575103.92,2331007.962,21
+23442,1114581.397,1570977.063,2309379.615,21
+23443,1108823.959,1570140.632,2311223.869,21
+23444,1110545.149,1558914.296,2320689.228,21
+23445,1102901.436,1545280.667,2317903.972,21
+23446,1105311.594,1548674.56,2323055.738,21
+23447,1100355.363,1543989.774,2323718.058,21
+23448,1099875.118,1961688.851,2328743.308,21
+23449,1095116.55,1537469.401,2621728.533,21
+23450,1094926.41,1535160.48,2291694.785,21
+23451,1091824.718,1531790.561,2301452.297,21
+23452,1089805.563,1529013.758,2336247.027,21
+23453,1087649.031,1526217.435,2315114.209,21
+23454,1086754.868,1523715.82,2304988.753,21
+23455,1083404.938,1520958.295,2312306.787,21
+23456,1081425.387,1516214.51,2311901.6,21
+23457,1079386.43,1509403.64,2317951.73,21
+23458,1077989.034,1509601.542,2320867.87,21
+23459,1074997.174,1502302.801,2322296.609,21
+23460,1073529.403,1922512.15,2624002.09,21
+23461,1091314.609,2093031.067,2209530.42,21
+23462,1081123.312,2084650.907,2210402.375,21
+23463,1081155.488,2083958.631,2236509.439,21
+23464,1077017.967,2078166.33,2214888.907,21
+23465,1074143.937,2077153.179,2213541.924,21
+23466,1073093.887,2073793.495,2215299.382,21
+23467,1070460.673,2071356.017,2218672.221,21
+23468,1067582.841,2069492.961,2220214.362,21
+23469,1067490.52,2065557.554,2220494.643,21
+23470,1062185.469,2064325.291,2222776.559,21
+23471,1064128.712,2063749.836,2534574.623,21
+23472,1058396.054,2058336.318,2189711.619,21
+23473,1058973.529,2058117.973,2195259.265,21
+23474,1055350.539,2054178.408,2224950.835,21
+23475,1055058.602,2055276.162,2197044.776,21
+23476,1052806.665,2050762.052,2207021.759,21
+23477,1049344.901,2050422.674,2204013.445,21
+23478,1049278.001,2046349.148,2211174.681,21
+23479,1047114.839,2047536.237,2211238.287,21
+23480,1045137.354,2042913.66,2211373.321,21
+23481,1043857.064,2043099.615,2217987.421,21
+23482,1042721.244,2040082.48,2527761.401,21
+23483,1039898.989,2038607.358,2182910.687,21
+23484,1037779.096,2037004.051,2188625.416,21
+23485,1038975.182,2034961.275,2207798.052,21
+23486,1034242.222,2033690.232,2194353.965,21
+23487,1033960.811,2032326.65,2195997.933,21
+23488,1033556.208,2030213.923,2201341.935,21
+23489,1030207.105,2029606.923,2201900.763,21
+23490,1029172.257,2026104.816,2204789.458,21
+23491,1028996.159,2027168.051,2205469.058,21
+23492,1025387.342,2022721.856,2212415.068,21
+23493,1026583.7,2024360.005,2523104.838,21
+23494,1022246.645,2020815.686,2179042.099,21
+23495,1023848.668,2020610.412,2181919.224,21
+23496,1018978.278,2017216.602,2184212.523,21
+23497,1020585.956,2017673.844,2192207.578,21
+23498,1018473.593,2017807.436,2191283.3,21
+23499,1015669.382,2012728.264,2196532.348,21
+23500,1016930.826,2013172.37,2200106.432,21
+23501,1012889.237,2012140.504,2201020.397,21
+23502,1012493.04,2010860.88,2204172.468,21
+23503,1013288.935,2010188.921,2205793.018,21
+23504,1007737.823,2007865.131,2210434.149,21
+23505,1010733.2,2005615.009,2527269.493,21
+23506,1006214.691,2008689.355,2171615.924,21
+23507,1008095.931,2002473.567,2176608.357,21
+23508,1003481.416,2003178.155,2171345.051,21
+23509,1002034.709,2003373.363,2178649.642,21
+23510,998823.5634,2001253.619,2182825.054,21
+23511,997490.4696,1998259.542,2184491.102,21
+23512,995780.2785,2001143.602,2185945.314,21
+23513,994334.5709,1995657.501,2194443.093,21
+23514,992920.3722,1999129.978,2189997.782,21
+23515,991247.7809,1993320.656,2197585.168,21
+23516,990642.1972,1996876.959,2516647.119,21
+23517,989065.6936,1991452.882,2161591.614,21
+23518,987259.8159,1993666.615,2170704.96,21
+23519,986664.8953,1991664.049,2174258.934,21
+23520,984251.6617,1989200.141,2174548.09,21
+23521,745842.8648,1730762.722,1630947.151,21
+23522,724534.7209,1710310.225,1604389.535,21
+23523,720624.1786,1701337.211,1597322.367,21
+23524,711944.9255,1699109.966,1596696.129,21
+23525,709114.407,1692248.303,1596134.054,21
+23526,702743.5525,1688830.811,1594021.452,21
+23527,698675.75,1684158.311,2369377.175,21
+23528,693551.3356,1680127.759,1595356.512,21
+23529,689739.3866,1677661.957,1592029.154,21
+23530,684840.046,1672825.139,2401796.976,21
+23531,682569.8779,1671879.725,1589719.842,21
+23532,675939.4644,1665496.289,1586059.375,21
+23533,673970.508,1665784.306,2410432.58,21
+23534,670409.4847,1659819.008,1580715.063,21
+23535,665038.3362,1658278.308,1581730.5,21
+23536,663553.1701,1656192.087,2408997.282,21
+23537,658373.9391,1653063.705,1575217.15,21
+23538,655678.8702,1650262.34,1572806.336,21
+23539,651522.0082,1647772.619,2406661.771,21
+23540,649544.5727,1645464.082,1567072.693,21
+23541,644446.8012,1642699.767,1565750.629,21
+23542,642812.5125,1640417.418,2402598.48,21
+23543,639652.4097,1638397.082,1558621.36,21
+23544,634602.6327,1636756.332,1557358.848,21
+23545,634175.2788,1634402.269,2395346.934,21
+23546,629734.582,1630492.849,1551553.405,21
+23547,626248.0243,1631627.158,1547509.635,21
+23548,624129.2152,1626749.421,2390681.385,21
+23549,621629.0879,1625991.666,1541915.527,21
+23550,617619.052,1625422.236,1539985.449,21
+23551,614960.7819,1620737.954,2384705.333,21
+23552,612813.2316,1621525.293,1531613.587,21
+23553,608182.326,1618544.715,1529357.367,21
+23554,606050.2271,1617657.508,2377332.608,21
+23555,604016.9416,1615190.263,1522799.601,21
+23556,598591.0208,1613233.901,1519417.887,21
+23557,598900.0647,1612700.866,2370267.979,21
+23558,593440.0694,1610220.011,1512385.122,21
+23559,592123.3795,1608725.298,1511366.04,21
+23560,588023.5929,1608646.901,2361422.06,21
+23561,587162.2402,1604738.111,1504475.404,21
+23562,581880.6525,1605106.045,1500109.12,21
+23563,580921.7849,1603261.084,2354204.632,21
+23564,578195.9606,1599820.442,1493651.878,21
+23565,574196.674,1602072.923,1491784.623,21
+23566,571643.4689,1597416.361,2345722.936,21
+23567,570326.878,1597707.653,1485752.049,21
+23568,565945.3876,1595507.41,1480614.447,21
+23569,564460.4054,1595433.711,2337927.994,21
+23570,560931.693,1593007.729,1477418.152,21
+23571,559472.9871,1592338.541,1470920.806,21
+23572,555140.7089,1590459.855,2331493.083,21
+23573,553248.4326,1589513.831,1466090.719,21
+23574,550876.2845,1587945.654,1463189.566,21
+23575,547996.3079,1588301.581,2323470.533,21
+23576,545159.5105,1584124.317,1457933.366,21
+23577,543231.0625,1586139.814,1455520.185,21
+23578,540411.0749,1582572.312,2314830.425,21
+23579,536929.3695,1582537.423,1449680,21
+23580,535778.4573,1580847.457,1447668.548,21
+23581,532300.4102,1583479.483,2304849.133,21
+23582,529462.0291,1581464.237,1440124.015,21
+23583,526655.2485,1584564.302,1434731.496,21
+23584,524579.5868,1583981.073,2298407.611,21
+23585,521225.769,1582920.023,1427058.152,21
+23586,517942.3167,1587027.019,1426770.957,21
+23587,517675.9135,1583716.114,2287373.417,21
+23588,512360.2133,1586984.571,1417520.892,21
+23589,512357.0028,1585688.916,1416950.005,21
+23590,508006.8813,1587535.817,2277898.884,21
+23591,505763.6245,1587780.724,1408213.892,21
+23592,504219.5889,1587909.986,1405953.983,21
+23593,499975.6314,1588884.95,2270818.491,21
+23594,498472.4787,1588729.884,1398738.424,21
+23595,496561.2615,1589284.557,1396208.37,21
+23596,492335.5038,1590991.946,2263141.144,21
+23597,491070.5226,1590203.492,1387946.953,21
+23598,487755.7623,1592710.447,1387113.612,21
+23599,486419.5152,1590952.571,2255076.521,21
+23600,483022.8049,1593796.295,1379464.798,21
+23601,480974.129,1592548.743,1376141.701,21
+23602,477457.1129,1594209.244,2247041.711,21
+23603,477019.9727,1595233.829,1369078.545,21
+23604,471918.8927,1593591.484,1367564.989,21
+23605,472122.2383,1596816.081,2240365.466,21
+23606,467822.1956,1597518.618,1358295.647,21
+23607,466894.4723,1595929.295,1359253.44,21
+23608,463168.7513,1597931.03,2230802.839,21
+23609,460669.4786,1599794.238,1349538.527,21
+23610,458931.9723,1598917.584,1351740.984,21
+23611,456548.7339,1599382.773,2220213.762,21
+23612,454028.8206,1599916.882,1345253.843,21
+23613,452020.7,1600615.357,1339175.298,21
+23614,450616.9466,1602020.357,2218242.416,21
+23615,447043.6298,1600932.177,1334407.524,21
+23616,445377.2521,1604848.367,1333618.657,21
+23617,443877.6955,1602187.97,2208930.285,21
+23618,440601.9798,1605621.953,1328121.523,21
+23619,440253.3923,1604856.851,1325348.425,21
+23620,436768.5807,1605952.625,2201382.667,21
+23621,434631.2744,1607211.807,1322106.31,21
+23622,434102.9937,1607779.551,1317996.563,21
+23623,430614.3801,1608071.878,2196415.366,21
+23624,428376.8467,1610136.222,1312675.883,21
+23625,427203.3486,1609828.591,1310405.896,21
+23626,425382.6958,1610805.275,2190833.748,21
+23627,422559.8975,1611898.193,1304195.485,21
+23628,420715.3,1612005.728,1303403.197,21
+23629,418912.8037,1614342.944,2183143.906,21
+23630,417423.464,1613059.405,1300344.436,21
+23631,414840.5801,1616743.391,1294754.054,21
+23632,412413.0767,1615986.389,2177120.79,21
+23633,411657.5195,1616993.394,1292308.435,21
+23634,408816.3471,1618203.411,1287669.168,21
+23635,406802.4998,1617665.735,2172540.965,21
+23636,405416.8668,1620471.239,1283036.025,21
+23637,403107.938,1620773.851,1281945.246,21
+23638,401519.361,1621658.722,2165634.708,21
+23639,398872.6277,1622544.094,1276639.159,21
+23640,398829.1623,1624487.428,1274777.042,21
+23641,396889.8413,1619683.153,2165618.33,21
+23642,398989.5494,1618431.187,1277078.114,21
+23643,397528.1184,1614275.459,1272480.627,21
+23644,397854.663,1608792.663,2156726.969,21
+23645,397585.414,1609416.347,1265479.148,21
+23646,398033.8059,1601863.493,1759267.493,21
+23647,396801.0149,1601172.669,1235347.092,21
+23648,397842.648,1595761.344,1241497.837,21
+23649,397353.5659,1593880.151,1235792.113,21
+23650,396138.1546,1589742.48,1269551.507,21
+23651,397554.257,1586973.504,1593879.074,21
+23652,396981.0048,1582540.436,1210127.987,21
+23653,396490.768,1579069.726,1215051.809,21
+23654,397865.1219,1575809.31,1258620.929,21
+23655,395871.2847,1573971.99,1462383.595,21
+23656,397449.3214,1567417.172,1194488.751,21
+23657,396363.9249,1566935.63,1197085.528,21
+23658,396251.2588,1560702.294,1258548.421,21
+23659,396608.6462,1560569.342,1195293.775,21
+23660,396024.6039,1553461.253,1485764.426,21
+23661,396396.6585,1552567.635,1177308.152,21
+23662,396155.3287,1548396.396,1183031.021,21
+23663,396275.249,1545736.225,1179542.409,21
+23664,395905.1751,1541286.988,1223705.151,21
+23665,395504.3467,1537661.388,1520301.095,21
+23666,396750.9085,1536042.796,1158792.292,21
+23667,395192.1612,1530284.161,1167584.781,21
+23668,395930.0389,1528353.624,1160892.815,21
+23669,395325.3719,1523327.167,1214805.951,21
+23670,395613.6684,1523450.461,1502005.258,21
+23671,396244.0606,1518164.204,1143835.066,21
+23672,395576.6398,1515287.608,1147657.935,21
+23673,395228.6637,1512224.657,1176285.837,21
+23674,395830.7184,1507258.211,1144028.906,21
+23675,394764.0331,1505424.842,1167518.744,21
+23676,395455.7791,1501552.719,1447776.151,21
+23677,395055.4947,1497468.194,1129096.243,21
+23678,395327.2821,1496043.459,1135129.21,21
+23679,395082.7442,1476477.123,1131980.146,21
+23680,395026.2385,1469898.909,1177260.372,21
+23681,395176.1856,1466229.342,1131315.513,21
+23682,805322.9715,1460914.38,1128870.399,21
+23683,394998.7388,1456515.31,1133251.692,21
+23684,395021.6367,1453693.171,1130570.298,21
+23685,394570.616,1447770.588,1132023.355,21
+23686,395062.1343,1445066.489,1128962.812,21
+23687,394454.3667,1438835.384,1970247.961,21
+23688,395437.0249,1436607.253,1128501.555,21
+23689,394135.3682,1431182.168,1127055.786,21
+23690,394879.5265,1426594.782,2000199.635,21
+23691,394953.895,1424059.881,1125491.169,21
+23692,394423.4186,1418194.116,1125185.063,21
+23693,394340.6804,1415027.466,2001686.223,21
+23694,394984.9641,1410659.524,1123241.159,21
+23695,394279.2504,1406641.949,1119917.763,21
+23696,396175.0035,1401885.767,2002307.04,21
+23697,394230.1388,1398515.077,1115857.243,21
+23698,395214.46,1394217.107,1115713.152,21
+23699,394792.454,1389875.758,2000610.291,21
+23700,395181.912,1387260.931,1110642.913,21
+23701,394366.0286,1382537.266,1102291.363,21
+23702,391214.1901,1380222.257,1990225.483,21
+23703,392176.4256,1376641.865,1094495.19,21
+23704,390633.5181,1375782.557,1093411.703,21
+23705,391076.7635,1372493.149,1984498.108,21
+23706,389539.3765,1370380.437,1086715.683,21
+23707,388140.6521,1369570.896,1086676.79,21
+23708,389896.6879,1365235.489,1978960.394,21
+23709,386927.6973,1363049.324,1080257.197,21
+23710,388505.704,1362892.605,1078352.781,21
+23711,386841.1751,1359806.612,1972142.314,21
+23712,385870.446,1356229.276,1073453.634,21
+23713,387034.1652,1356180.072,1069411.423,21
+23714,384615.0068,1351555.432,1967095.839,21
+23715,384880.2349,1351504.249,1063515.035,21
+23716,384247.687,1348161.749,1063045.139,21
+23717,383630.1505,1346237.067,1960480.218,21
+23718,383219.7893,1344713.691,1055416.852,21
+23719,383084.8629,1341667.44,1053476.786,21
+23720,382246.7,1339578.979,1953569.223,21
+23721,382041.61,1337389.886,1048663.707,21
+23722,380956.8799,1336306.483,1044792.183,21
+23723,380945.6072,1331644.031,1946477.817,21
+23724,379596.4601,1332281.486,1040538.631,21
+23725,379395.2447,1329122.611,1035497.915,21
+23726,379972.74,1327213.447,1941071.717,21
+23727,378214.4866,1323442.079,1028960.047,21
+23728,378606.252,1324061.149,1030638.951,21
+23729,378170.2103,1319713.774,1931148.349,21
+23730,376106.116,1317986.965,1022840.402,21
+23731,377303.0767,1316743.282,1020221.44,21
+23732,376451.0023,1315647.151,1924406.168,21
+23733,376814.0532,1314095.047,1013851.216,21
+23734,376250.1955,1311551.657,1012963.088,21
+23735,376339.8024,1310739.871,1918900.941,21
+23736,375892.0149,1309553.474,1004475.648,21
+23737,375295.5946,1306450.248,1003581.541,21
+23738,375536.3998,1307028.893,1910579.464,21
+23739,375407.6312,1304826.075,996889.8163,21
+23740,375102.8735,1302619.464,994784.7099,21
+23741,374218.5276,1301769.698,1905012.92,21
+23742,373455.1894,1301225.909,986995.6943,21
+23743,375037.4541,1298507.774,988447.8316,21
+23744,373640.6076,1297993.826,1896314.344,21
+23745,373521.7909,1296099.086,980147.7092,21
+23746,374145.6968,1294409.027,1497876.888,21
+23747,373016.7745,1294055.268,957948.5681,21
+23748,373751.7212,1291419.353,958931.4134,21
+23749,373187.308,1292142.967,953803.3799,21
+23750,373443.0582,1288243.507,1060409.358,21
+23751,373665.5966,1288640.325,1325455.764,21
+23752,373863.8432,1286065.834,932087.1035,21
+23753,373328.0384,1285133.047,933277.7021,21
+23754,372547.0991,1283188.661,971886.2387,21
+23755,373555.3365,1282934.73,1093426.751,21
+23756,373152.1772,1280730.035,921102.5254,21
+23757,373415.7004,1278759.06,1080801.339,21
+23758,373442.8773,1279278.113,1041240.866,21
+23759,373282.327,1275033.651,1263680.485,21
+23760,372611.6594,1273366.169,895499.5214,21
+23761,448153.8025,1350164.568,1032520.259,21
+23762,446179.2863,1349515.818,1055006.77,21
+23763,447782.268,1351012.404,1081501.915,21
+23764,446831.8877,1351019.57,1081261.497,21
+23765,447035.5571,1351166.53,1051853.182,21
+23766,447970.1063,1352842.497,1062138.537,21
+23767,446858.2211,1352308.671,1053223.478,21
+23768,447457.8292,1350903.196,1055738.043,21
+23769,446735.0954,1354355.215,1056250.799,21
+23770,447170.2101,1352975.588,1056075.935,21
+23771,445718.5614,1354382.563,1052009.309,21
+23772,447620.6507,1354599.395,1064577.274,21
+23773,446829.9212,1353929.839,1056152.286,21
+23774,446230.1226,1355526.768,1895094.806,21
+23775,447170.1723,1355727.493,1034826.089,21
+23776,447017.8769,1354388.032,1036767.371,21
+23777,445617.7001,1357061.378,1930303.499,21
+23778,446293.6019,1356058.965,1034429.439,21
+23779,446788.0644,1357088.694,1034428.05,21
+23780,445900.9559,1357558.57,1940055.142,21
+23781,445970.5632,1357226.802,1032641.488,21
+23782,446341.6697,1357480.185,1033501.261,21
+23783,445788.5259,1358649.71,1942440.617,21
+23784,445465.6545,1359151.795,1031066.542,21
+23785,445795.3979,1358966.056,1031729.097,21
+23786,445168.037,1358980.844,1941709.018,21
+23787,445414.5235,1359879.889,1029575.141,21
+23788,445661.5494,1359743.103,1031972.777,21
+23789,445154.6272,1361393.814,1945545.51,21
+23790,445359.5348,1359401.862,1027955.968,21
+23791,445051.227,1363139.158,1029643.811,21
+23792,443955.6469,1361101.703,1943684.589,21
+23793,445124.2923,1361101.846,1024077.94,21
+23794,444231.3398,1362642.073,1026995.334,21
+23795,443108.4358,1362612.446,1943259.985,21
+23796,444542.4212,1362109.718,1022095.993,21
+23797,443316.634,1362692.925,1019614.817,21
+23798,442553.7806,1363158.423,1938337.492,21
+23799,444261.8059,1364087.725,1016861.606,21
+23800,441909.2626,1363670.913,1014990.255,21
+23801,442416.9699,1364441.672,1937988.439,21
+23802,442591.8293,1365965.376,1010959.983,21
+23803,440826.4285,1365469.968,1012486.134,21
+23804,442865.6053,1368000.656,1933022.341,21
+23805,440543.0269,1366941.261,1009929.898,21
+23806,441051.4528,1367578.909,1006928.237,21
+23807,441744.205,1368134.249,1931846.734,21
+23808,439824.5526,1368107.181,1003531.225,21
+23809,439937.953,1370182.19,1005220.388,21
+23810,439889.0257,1367374.853,1925800.42,21
+23811,439860.8899,1370456.673,1001843.017,21
+23812,439203.4024,1369655.735,998610.4433,21
+23813,439103.0347,1370133.232,1925782.247,21
+23814,438901.2188,1370944.636,996093.2921,21
+23815,439300.6113,1369562.404,995043.9418,21
+23816,436829.7829,1371385.011,1921739.084,21
+23817,439167.13,1371615.951,989737.0342,21
+23818,436356.5369,1371902.791,1525835.781,21
+23819,438076.6065,1372103.194,968852.1907,21
+23820,436994.4332,1371831.342,976656.674,21
+23821,363814.0829,1296837.861,825802.1512,21
+23822,360176.6856,1295324.678,982725.0154,21
+23823,362470.9529,1293885.294,1200194.871,21
+23824,359925.2342,1295236.934,798917.6688,21
+23825,360212.5594,1292151.173,803327.3623,21
+23826,358781.1484,1293937.457,831313.3585,21
+23827,359223.9343,1293057.685,874232.7985,21
+23828,359093.5991,1292588.195,930864.931,21
+23829,358071.4634,1291963.286,1116613.884,21
+23830,357962.0069,1291089.724,771536.063,21
+23831,358086.3617,1292525.647,773374.166,21
+23832,356901.1967,1289845.915,771426.6776,21
+23833,357152.3061,1291063.293,921621.2251,21
+23834,355707.0196,1291836.927,1114868.405,21
+23835,356290.1482,1289221.103,748606.2465,21
+23836,355498.9344,1289942.186,754644.0009,21
+23837,356346.9145,1289645.362,748011.5422,21
+23838,353725.4498,1289974.43,914190.1549,21
+23839,356315.6517,1289646.089,1094068.097,21
+23840,352786.1526,1290787.98,728727.8794,21
+23841,355045.09,1288843.143,732702.7096,21
+23842,352906.5476,1289286.853,727138.6323,21
+23843,353703.2491,1289250.613,895694.2329,21
+23844,352835.5397,1289762.968,1069804.684,21
+23845,352960.7955,1288105.883,712109.9051,21
+23846,352321.7525,1288732.654,714510.8641,21
+23847,351763.9739,1288459.667,709797.2751,21
+23848,352324.5364,1288563.61,878357.2282,21
+23849,351083.7777,1287007.836,1044055.706,21
+23850,350894.7953,1288980.97,694537.378,21
+23851,351139.1471,1287078.618,696400.3985,21
+23852,350205.3559,1287971.126,708702.8594,21
+23853,351314.5363,1287881.301,817599.4893,21
+23854,349314.9466,1286533.259,790153.3628,21
+23855,350359.0956,1287830.052,1122325.328,21
+23856,349531.2475,1287607.361,670060.6893,21
+23857,349481.0635,1286697.217,671202.0266,21
+23858,349209.1716,1287360.844,668288.5443,21
+23859,348978.0766,1286790.665,878721.2784,21
+23860,348507.4653,1286318.197,1010818.098,21
+23861,348900.3685,1287755.169,651620.0893,21
+23862,347659.2254,1286439.965,656598.6106,21
+23863,347759.8812,1286696.602,650644.0223,21
+23864,348105.9915,1286437.806,823689.1449,21
+23865,347516.8297,1286579.792,971999.7034,21
+23866,347183.7352,1286262.523,640253.2594,21
+23867,347145.5527,1286270.6,639630.2074,21
+23868,346439.3365,1286735.787,648285.6054,21
+23869,346442.4414,1286541.595,779968.5698,21
+23870,347558.986,1285469.568,731953.7929,21
+23871,345464.4138,1286931.211,731074.9251,21
+23872,345269.7894,1285397.029,980152.5991,21
+23873,345723.4658,1286358.35,618037.0019,21
+23874,345856.4579,1285525.598,619853.155,21
+23875,344576.1697,1284974.05,618155.5073,21
+23876,346013.5836,1286128.747,807109.8609,21
+23877,343774.3639,1285690.165,941863.4426,21
+23878,345127.9661,1285807.931,603065.3259,21
+23879,344823.9044,1284937.043,606378.2359,21
+23880,343959.4248,1285777.707,605276.6148,21
+23881,343188.2727,1285688.321,788288.6296,21
+23882,344653.5146,1287797.872,930349.1614,21
+23883,343764.9986,1287254.628,606041.4358,21
+23884,342454.5877,1286965.231,610101.717,21
+23885,340714.3897,1286712.38,607881.0544,21
+23886,339112.6346,1285888.205,782417.2754,21
+23887,338518.2278,1285971.56,689201.9049,21
+23888,336368.0563,1284627.123,717723.2568,21
+23889,336066.5428,1283749.246,707374.0099,21
+23890,333281.8021,1285373.842,704746.5499,21
+23891,333105.2606,1282123.441,704276.19,21
+23892,330744.284,1284183.963,701271.8748,21
+23893,330376.0891,1281663.004,1403814.907,21
+23894,328608.4838,1282579.107,603540.9562,21
+23895,327030.9215,1281823.086,608450.2762,21
+23896,325592.1274,1280814.19,1447112.423,21
+23897,324925.3046,1280450.543,608960.59,21
+23898,323021.9641,1280491.346,609697.5149,21
+23899,321583.097,1279447.15,1467380.468,21
+23900,320754.8737,1278871.494,613119.5296,21
+23901,319333.0072,1278807.577,1079132.294,21
+23902,317328.912,1278388.804,604192.5545,21
+23903,316302.3026,1277928.286,612387.0865,21
+23904,315479.2952,1276688.771,608120.4522,21
+23905,313936.4592,1278287.146,791662.1329,21
+23906,311684.3934,1274439.379,696666.4757,21
+23907,311071.2695,1277251.133,730231.0608,21
+23908,310004.9905,1274571.792,717645.2054,21
+23909,307817.5069,1275963.146,713059.1323,21
+23910,307048.7716,1273711.73,711691.6165,21
+23911,305507.7293,1274442.064,709258.8512,21
+23912,304875.9598,1273725.525,708574.1557,21
+23913,302648.6682,1272870.779,706776.576,21
+23914,301598.5222,1272693.94,706502.3435,21
+23915,300825.5637,1272287.994,704041.9221,21
+23916,297872.0152,1271372.723,703611.9734,21
+23917,297972.9833,1271405.366,702692.7651,21
+23918,295942.3083,1270173.243,700707.5776,21
+23919,295618.409,1270521.532,700931.3972,21
+23920,293070.8015,1269257.003,699538.6597,21
+23921,292026.1996,1269158.606,698212.7098,21
+23922,291614.6646,1268787.625,697612.3137,21
+23923,289746.0814,1267426.747,696515.2257,21
+23924,288181.1633,1268059.787,695840.0085,21
+23925,286811.5251,1266956.036,694614.5289,21
+23926,285118.2247,1266191.278,693410.7031,21
+23927,284595.142,1266473.704,693617.9935,21
+23928,283021.4931,1265957.704,691823.1069,21
+23929,281518.2277,1265345.226,692076.3471,21
+23930,280837.7928,1263803.579,690605.9835,21
+23931,278629.3669,1264718.207,690122.3266,21
+23932,278234.3202,1263771.282,686182.6811,21
+23933,276274.5301,1262970.258,692533.2228,21
+23934,274564.6201,1262653.989,687049.1281,21
+23935,274614.5024,1262615.53,1384651.536,21
+23936,271417.7511,1262258.724,589331.4557,21
+23937,271450.6202,1260140.885,596908.5905,21
+23938,270376.8067,1262298.223,1430555.359,21
+23939,268132.832,1259473.124,595280.4402,21
+23940,266980.6587,1260008.56,598300.0609,21
+23941,265243.6307,1259948.784,1439878.866,21
+23942,263869.072,1260984.41,591659.2855,21
+23943,262618.6422,1261017.211,592517.5357,21
+23944,261486.2082,1263249.201,1455843.005,21
+23945,260701.0003,1262389.241,601376.2788,21
+23946,259825.2296,1264972.682,1062977.143,21
+23947,257956.6166,1263991.207,586743.6337,21
+23948,257326.2567,1266376.129,593817.9083,21
+23949,256184.7578,1266870.134,658330.0028,21
+23950,255086.4638,1266639.493,645656.2869,21
+23951,253228.1622,1269302.206,834630.7282,21
+23952,253299.6576,1268868.624,914582.5306,21
+23953,251497.8357,1270511.711,580798.3427,21
+23954,250454.5707,1270356.309,584399.0614,21
+23955,250144.1122,1272567.377,583835.3075,21
+23956,247928.8919,1271491.226,764578.4652,21
+23957,247532.1344,1274121.01,908871.2206,21
+23958,246269.0383,1273743.16,576350.4773,21
+23959,244674.7933,1275444.144,582505.4966,21
+23960,244145.6969,1275757.864,579632.6347,21
+23961,242688.52,1276870.723,762337.2993,21
+23962,241620.2544,1277681.08,900882.8996,21
+23963,241277.7531,1278304.239,570862.0625,21
+23964,239100.0278,1279131.737,577129.5639,21
+23965,238617.1558,1280817.132,573779.038,21
+23966,237769.6178,1280652.602,760056.1201,21
+23967,235852.9945,1281129.055,893932.3426,21
+23968,234988.0243,1283463.397,567783.0359,21
+23969,234609.3828,1283238.268,573950.5811,21
+23970,232951.0517,1284368.638,571291.7396,21
+23971,231327.3589,1285540.661,755402.5626,21
+23972,231474.8555,1285361.788,888648.1013,21
+23973,229432.767,1287161.991,564586.0106,21
+23974,228884.4695,1287247.955,571116.1775,21
+23975,226899.5992,1288612.671,569131.432,21
+23976,226417.2181,1288530.619,750197.9203,21
+23977,224826.1747,1290782.25,882320.0689,21
+23978,224395.5769,1290978.417,562957.8238,21
+23979,223137.401,1290910.7,568305.4935,21
+23980,221159.0596,1293452.125,567665.1345,21
+23981,221564.5491,1293260.945,744870.0133,21
+23982,218655.3013,1293428.895,878835.5533,21
+23983,218967.389,1295567.756,560676.5331,21
+23984,217406.1714,1294804.285,566227.8848,21
+23985,215874.4124,1298266.487,564975.1237,21
+23986,214932.4519,1296715.776,742132.2503,21
+23987,213794.2711,1298470.73,873955.5367,21
+23988,213212.7186,1298187.108,559366.3045,21
+23989,210936.4099,1300794.94,564215.0735,21
+23990,210903.8094,1300428.023,561867.8899,21
+23991,209579.3007,1300979.341,736801.1767,21
+23992,208222.0724,1302937.228,869386.207,21
+23993,207051.277,1303251.633,554979.0208,21
+23994,206400.4794,1304437.713,560918.9526,21
+23995,204599.0058,1303907.398,559647.1866,21
+23996,203716.4419,1306981.604,734360.669,21
+23997,202286.7917,1305675.009,866366.4902,21
+23998,201747.6385,1307994.34,554185.6746,21
+23999,199835.7894,1308016.855,558768.9196,21
+24000,199675.9059,1308689.004,558045.4652,21
+24001,199279.9357,1309572.229,733763.799,21
+24002,196004.8162,1308682.178,866427.3785,21
+24003,197898.29,1307473.626,554674.727,21
+24004,196205.5242,1307847.616,561962.0245,21
+24005,196447.0356,1306254.847,604671.9851,21
+24006,195236.5683,1306304.45,858818.5571,21
+24007,196378.4148,1306318.545,559239.8193,21
+24008,194563.9416,1304639.302,562821.6261,21
+24009,195559.7242,1304191.982,565499.9195,21
+24010,194592.0126,1305121.434,792146.7404,21
+24011,194145.443,1302381.609,621299.941,21
+24012,194457.3041,1303010.986,686016.1989,21
+24013,193338.0439,1301548.549,668774.3843,21
+24014,193276.5697,1300786.859,667290.0762,21
+24015,192167.8319,1300833.75,667798.0759,21
+24016,192434.8612,1299177.105,667821.8023,21
+24017,191443.9212,1298880.026,1363461.752,21
+24018,190611.2411,1298832.999,574714.388,21
+24019,191947.7024,1297044.067,580735.2321,21
+24020,189168.9335,1297631.277,1412256.555,21
+24021,190774.2024,1295749.915,585130.6082,21
+24022,189450.8793,1295856.554,587675.6246,21
+24023,189576.1952,1293733.187,1436754.769,21
+24024,189041.3415,1295123.99,594240.6503,21
+24025,188431.6391,1293338.719,1050621.675,21
+24026,188492.4411,1291961.27,588190.4275,21
+24027,187679.2335,1292206.498,596392.4772,21
+24028,187277.7116,1291680.39,628965.9838,21
+24029,186964.5333,1290489.94,721897.2815,21
+24030,187028.1046,1289333.903,596201.6676,21
+24031,186401.4211,1288476.849,828595.2931,21
+24032,186525.7431,1289276.272,747382.6848,21
+24033,186376.006,1287376.366,680499.3112,21
+24034,186793.0304,1287305.386,704104.3651,21
+24035,186218.5736,1285632.308,698095.9795,21
+24036,186628.5451,1286098.245,696730.621,21
+24037,186440.7537,1283958.009,696501.1199,21
+24038,186568.023,1284323.08,696865.0813,21
+24039,186539.4137,1283144.773,696748.5915,21
+24040,186740.5014,1282368.5,697427.9967,21
+24041,186459.7615,1281739.554,697638.3103,21
+24042,186653.0737,1281131.967,698774.3479,21
+24043,186638.4994,1279551.165,699102.9111,21
+24044,186810.1679,1280229.33,699356.189,21
+24045,186789.0153,1277976.499,700771.1945,21
+24046,186418.4807,1277670.057,700388.0283,21
+24047,187195.0343,1277301.771,701947.0237,21
+24048,186489.7331,1276907.228,702219.1093,21
+24049,187019.0447,1274764.805,703794.8657,21
+24050,186809.8869,1275458.942,703383.3988,21
+24051,186980.682,1274180.991,705022.0859,21
+24052,186770.1545,1272655.302,704971.994,21
+24053,187062.5496,1273168.171,706992.39,21
+24054,187019.4072,1271286.749,702503.0303,21
+24055,186903.4795,1270461.863,712364.5364,21
+24056,187142.6828,1270264.398,708424.0689,21
+24057,186993.4155,1270065.248,709968.387,21
+24058,187369.9656,1267937.067,711515.7929,21
+24059,186921.8967,1267773.506,1429696.563,21
+24060,187492.7983,1267079.985,632536.5491,21
+24061,284525.9613,1454747.471,747813.3997,21
+24062,429839.0114,1467904.272,1614435.404,21
+24063,367180.985,1472497.544,777405.1925,21
+24064,383411.998,1476809.737,789850.8491,21
+24065,385089.6056,1481199.294,1871991.873,21
+24066,386821.3588,1484386.519,873387.2783,21
+24067,387660.4559,1489357.358,923812.9925,21
+24068,390291.488,1491908.995,1790809.856,21
+24069,391136.7123,1495528.542,942819.513,21
+24070,392291.5037,1499552.829,1410251.664,21
+24071,393471.7693,1502486.499,924944.6088,21
+24072,394208.5256,1505149.868,936834.4528,21
+24073,396896.4392,1510166.757,935782.4272,21
+24074,395391.8867,1510927.378,1120813.377,21
+24075,398735.2678,1516554.953,949345.4367,21
+24076,398429.6931,1518744.698,1027972.781,21
+24077,399758.8831,1520945.499,1008092.338,21
+24078,399381.5823,1526074.097,1009927.158,21
+24079,401562.5422,1527412.499,1012719.146,21
+24080,402384.6336,1531101.026,1013935.856,21
+24081,402662.8339,1533155.685,1015238.444,21
+24082,402976.9871,1538024.805,1021127.231,21
+24083,405423.1359,1539611.131,1018129.4,21
+24084,404106.5343,1542929.683,1023448.594,21
+24085,405997.8324,1545091.542,1023958.418,21
+24086,406573.6381,1549333.025,1026429.661,21
+24087,407358.2087,1551817.833,1025989.346,21
+24088,407370.4194,1553978.236,1029439.185,21
+24089,407749.604,1556812.188,1030759.865,21
+24090,410084.1879,1560069.338,1034450.465,21
+24091,408791.0918,1562783.553,1034002.899,21
+24092,410542.6237,1565160.375,1039273.67,21
+24093,409379.5036,1569209.045,1035274.192,21
+24094,412290.1561,1570321.947,1039106.247,21
+24095,410980.948,1573610.368,1039862.391,21
+24096,412238.8601,1577677.957,1039726.176,21
+24097,413177.7919,1578733.167,1041941.049,21
+24098,413021.7681,1582126.291,1041510.323,21
+24099,414151.4208,1585049.846,1041710.688,21
+24100,414424.9801,1588000.022,1038717.764,21
+24101,413786.6248,1588864.358,1047741.172,21
+24102,415937.4118,1592494.659,1042180.999,21
+24103,415589.8316,1597426.819,1831060.259,21
+24104,416449.8172,1595909.504,978323.8172,21
+24105,415763.6688,1602443.546,978497.1423,21
+24106,417444.0968,1602929.259,1876821.156,21
+24107,417316.6968,1605702.155,981516.6285,21
+24108,417903.9525,1609975.841,993799.2922,21
+24109,417850.7177,1610103.543,1903533.625,21
+24110,418487.3594,1615785.454,1002329.471,21
+24111,419367.6797,1618151.486,1005844.325,21
+24112,419156.7234,1619605.535,1915067.336,21
+24113,419818.6837,1624267.423,1005823.408,21
+24114,419463.2766,1626057.07,1008381.723,21
+24115,421383.9538,1629879.842,1925045.898,21
+24116,420134.4212,1630949.397,1016671.661,21
+24117,421881.9358,1635213.433,1531966.282,21
+24118,420685.483,1636314.656,991531.4287,21
+24119,422479.6036,1640916.943,1000583.788,21
+24120,422809.3139,1641681.236,997276.4409,21
+24121,480365.143,1707084.881,1323333.257,21
+24122,484951.5519,1708875.266,1141805.559,21
+24123,486703.86,1710197.2,1226606.063,21
+24124,486614.6142,1707955.559,1204213.018,21
+24125,488014.2692,1708895.582,1203425.818,21
+24126,488207.9345,1707924.841,1204091.792,21
+24127,489457.3172,1706333.726,1205282.686,21
+24128,490134.4832,1707034.686,1206342.766,21
+24129,490457.511,1704080.135,1207405.682,21
+24130,491025.3408,1703827.241,1209800.467,21
+24131,491502.9323,1703286.224,1209247.763,21
+24132,493058.7133,1701148.702,1210490.281,21
+24133,491969.7753,1700911.695,1212650.851,21
+24134,493251.6992,1700569.484,1213850.239,21
+24135,494082.5645,1699012.895,1213657.73,21
+24136,493755.8228,1696441.761,1216401.26,21
+24137,494792.9175,1697918.724,1217060,21
+24138,495517.719,1693139.719,1216372.392,21
+24139,494679.622,1695556.948,1219098.46,21
+24140,496514.8786,1693097.453,1218726.615,21
+24141,496039.4641,1689747.171,1220336.07,21
+24142,496009.3619,1691806.464,1222527.379,21
+24143,496083.7276,1687607.927,1220756.972,21
+24144,496648.9496,1688126.536,1223168.686,21
+24145,497772.858,1686310.049,1225559.326,21
+24146,496816.9571,1685810.872,1222817.413,21
+24147,498436.4644,1682881.243,1225899.026,21
+24148,498574.752,1683040.21,1223783.134,21
+24149,498486.0972,1680074.085,1231101.706,21
+24150,498450.9321,1680998.086,1225206.843,21
+24151,499412.7026,1677873.839,1231763.263,21
+24152,498247.5127,1676215.106,2023367.027,21
+24153,501018.5395,1675729.63,1165464.591,21
+24154,498808.2823,1673817.433,1170209.801,21
+24155,500663.4587,1672927.185,2068763.857,21
+24156,499200.9404,1671945.234,1174824.445,21
+24157,501734.1711,1668129.533,1178971.616,21
+24158,501151.997,1669701.709,2086049.654,21
+24159,499842.976,1666298.667,1182013.241,21
+24160,501929.3218,1666095.779,1185651.591,21
+24161,501567.9586,1662930.962,2097399.12,21
+24162,501581.0031,1663589.716,1196750.401,21
+24163,501407.5486,1660481.68,1707575.496,21
+24164,502647.2865,1659089.783,1167740.286,21
+24165,501492.2221,1657348.125,1183124.12,21
+24166,502841.6117,1657587.987,1175305.633,21
+24167,502252.0579,1653655.327,1347039.477,21
+24168,502988.0873,1653042.428,1223786.995,21
+24169,503097.1921,1652359.712,1265842.644,21
+24170,502279.577,1649792.715,1253764.488,21
+24171,503062.2148,1649871.389,1248712.736,21
+24172,503895.6765,1646936.917,1249040.638,21
+24173,503034.1393,1645251.244,1247226.99,21
+24174,503388.1607,1644269.036,1249060.809,21
+24175,504409.997,1642358.604,1248369.386,21
+24176,503570.697,1639475.754,1251324.746,21
+24177,502647.783,1638993.964,1246479.447,21
+24178,505053.7385,1637158.399,1250454.196,21
+24179,503192.7715,1634747.366,1248549.691,21
+24180,504551.3074,1632658.941,1250619.079,21
+24181,506351.9135,1633008.336,1250167.234,21
+24182,507965.086,1636482.035,1251656.949,21
+24183,509739.4675,1637883.19,1253893.821,21
+24184,511831.4106,1636358.38,1251701.412,21
+24185,512965.12,1639100.115,1254083.206,21
+24186,515890.1311,1638665.6,1252574.544,21
+24187,515969.2029,1640008.458,1255811.835,21
+24188,519359.171,1640996.236,1254202.283,21
+24189,519292.5771,1640603.816,1255044.811,21
+24190,522129.5319,1641865.98,1255298.868,21
+24191,524342.3337,1643213.478,1255674.995,21
+24192,524013.4146,1642562.849,1256651.456,21
+24193,527224.4775,1644417.58,1257776.372,21
+24194,528545.5664,1644854.348,1255124.085,21
+24195,530943.6875,1644305.041,1258168.206,21
+24196,531891.6449,1645170.125,1257075.528,21
+24197,532334.1975,1646874.944,1259131.976,21
+24198,535746.7608,1646176.662,1258051.959,21
+24199,536455.6735,1646560.296,1260303.114,21
+24200,538544.535,1648412.92,1260857.468,21
+24201,540085.8749,1648466.163,1260560.474,21
+24202,542275.0581,1648372.207,1260593.837,21
+24203,543136.8978,1649942.294,1261480.167,21
+24204,545178.1298,1650152.532,1262476.687,21
+24205,547691.451,1651049.203,1261744.827,21
+24206,548023.1017,1650057.455,1264538.592,21
+24207,552262.233,1653415.323,1261944.88,21
+24208,551606.0572,1651170.484,1266030.807,21
+24209,553593.3831,1652651.808,1263642.856,21
+24210,556908.1409,1653793.969,1265698.126,21
+24211,557055.4918,1654391.286,1263323.045,21
+24212,560524.3642,1654733.095,1267532.957,21
+24213,560090.7537,1655275.928,1265614.101,21
+24214,563576.8553,1654491.961,1267302.698,21
+24215,564368.6496,1657958.395,1266622.143,21
+24216,566756.2629,1654959.881,1267506.493,21
+24217,568917.4696,1659135.456,1267870.37,21
+24218,568794.4311,1656873.582,1267367.716,21
+24219,572367.9149,1659633.192,1268993.266,21
+24220,573652.5619,1657949.916,1268035.066,21
+24221,574454.3519,1659427.132,1268891.842,21
+24222,577177.9809,1659847.646,1269136.231,21
+24223,578823.971,1660993.15,1269443.718,21
+24224,579962.3916,1661012.242,1271346.048,21
+24225,582465.7511,1662014.36,1269194.627,21
+24226,583968.6889,1661469.235,1271793.3,21
+24227,585000.3713,1662887.138,1271499.126,21
+24228,587519.8454,1662406.697,1271049.698,21
+24229,589171.9355,1664647.228,1273378.803,21
+24230,590590.14,1663140.654,1271413.175,21
+24231,592821.1791,1666005.048,1273781.075,21
+24232,593867.044,1663590.51,1271571.459,21
+24233,596104.8965,1665919.247,1272599.857,21
+24234,597488.8297,1666643.449,1274451.274,21
+24235,599357.6592,1666102.828,1272960.788,21
+24236,600707.1215,1668283.548,1274178.828,21
+24237,602845.8987,1666973.761,1274595.452,21
+24238,603981.0914,1667831.484,1274750.292,21
+24239,606871.9237,1669322.12,1274441.917,21
+24240,607797.8971,1668303.851,1275724.603,21
+24241,615927.1212,1678383.593,1290356.132,21
+24242,620169.0192,1678002.835,1295448.946,21
+24243,620546.5297,1679579.45,1293912.262,21
+24244,622907.7665,1678780.147,1295857.135,21
+24245,624538.9858,1680248.987,1299195.105,21
+24246,626334.4504,1680650.607,1296708.902,21
+24247,628452.5978,1678321.29,1300548.275,21
+24248,628898.7458,1681228.259,1297868.181,21
+24249,632389.5714,1681132.008,1301978.42,21
+24250,632157.8523,1680147.397,1299340.191,21
+24251,635599.41,1680824.144,1301786.723,21
+24252,635138.5449,1680021.756,1301646.755,21
+24253,638395.5716,1681737.868,1303627.624,21
+24254,639848.9681,1681097.543,1303336.272,21
+24255,641298.2523,1681191.942,1306744.769,21
+24256,643301.0881,1681558.495,1303969.475,21
+24257,644118.3808,1680546.396,1306671.713,21
+24258,646068.0588,1681967.593,1306940.874,21
+24259,647693.2966,1680813.344,1306448.35,21
+24260,648827.2256,1681456.144,1306139.831,21
+24261,651932.5664,1681423.531,1308351.113,21
+24262,651543.6286,1681405.684,1310277.83,21
+24263,655133.1212,1681171.366,1306585.148,21
+24264,655133.5678,1682070.82,1311957.363,21
+24265,657474.9785,1681817.33,1310753.03,21
+24266,658727.4536,1680816.23,1312654.733,21
+24267,661355.7427,1681103.84,1310285.344,21
+24268,661091.078,1682638.4,1314113.283,21
+24269,664311.8958,1680936.215,1312605.315,21
+24270,665707.7296,1681095.788,1311505.433,21
+24271,665898.23,1682374.288,1314859.044,21
+24272,669235.8495,1680705.043,1314659.341,21
+24273,670853.4293,1682053.283,1315534.625,21
+24274,670122.1418,1681399.77,1315728.862,21
+24275,674685.4055,1681912.255,1315467.046,21
+24276,673476.9509,1680542.957,1317182.807,21
+24277,678104.4993,1682025.629,1317107.098,21
+24278,676309.6854,1680642.869,1316695.786,21
+24279,680579.2465,1681871.266,1319506.313,21
+24280,681541.7421,1680825.449,1315980.961,21
+24281,682123.4587,1681553.311,1318871.485,21
+24282,684092.5718,1680520.858,1319970.589,21
+24283,686423.4424,1681844.209,1320350.857,21
+24284,686912.99,1681273.482,1317995.994,21
+24285,690123.0247,1680714.795,1321478.394,21
+24286,690299.4401,1681433.952,1320900.352,21
+24287,691149.8183,1680863.255,1322065.051,21
+24288,694736.5576,1681006.503,1320266.298,21
+24289,694732.4255,1680850.456,1323575.113,21
+24290,698102.1995,1680213.683,1322968.581,21
+24291,697356.2907,1682167.178,1322920.221,21
+24292,700840.7468,1680068.971,1324733.48,21
+24293,702088.2444,1679648.584,1323075.47,21
+24294,702491.7572,1681706.042,1324682.494,21
+24295,705012.5269,1680819.66,1325302.368,21
+24296,707131.71,1678928.151,1324664.931,21
+24297,706895.4649,1681969.852,1326013.274,21
+24298,709658.2389,1679405.613,1324832.749,21
+24299,711687.0722,1680375.509,1325481.099,21
+24300,711718.3684,1680504.461,1328889.144,21
+24301,713052.1261,1682353.142,1326836.737,21
+24302,713511.8478,1686664.506,1326157.699,21
+24303,714286.9363,1685688.736,1327875.429,21
+24304,711974.8658,1690807.767,1328877.268,21
+24305,714338.3797,1690550.16,1327417.971,21
+24306,713257.4959,1693771.75,1326465.345,21
+24307,711916.2556,1695299.233,1326725.211,21
+24308,713362.347,1697757.85,1325370.992,21
+24309,712949.3105,1699311.745,1326590.777,21
+24310,712885.3847,1701595.797,1324465.362,21
+24311,711324.0449,1703799.177,1325216.201,21
+24312,713733.4635,1705570.783,1323177.262,21
+24313,711246.4444,1707203.312,1326290.213,21
+24314,711681.9268,1710249.675,1322809.634,21
+24315,711819.3639,1711498.447,1324162.122,21
+24316,711865.6429,1713931.537,1323149.182,21
+24317,711709.7902,1715402.062,1321761.828,21
+24318,710736.1411,1718874.189,1321756.93,21
+24319,711612.9519,1718893.554,1322367.106,21
+24320,710474.8382,1722826.692,1322964.472,21
+24321,710966.1894,1723181.129,1320716.717,21
+24322,709961.5446,1727008.513,1320994.174,21
+24323,710435.8209,1727172.968,1322626.155,21
+24324,710634.416,1731206.779,1318675.873,21
+24325,710018.2152,1731636.578,1318577.613,21
+24326,709176.2848,1733775.395,1321840.323,21
+24327,709774.4069,1736583.067,1317666.657,21
+24328,710389.6397,1738194.665,1319656.815,21
+24329,708129.5066,1740708.604,1317309.417,21
+24330,708994.4915,1742148.269,1318762.637,21
+24331,708878.8865,1744301.944,1317570.537,21
+24332,708735.7579,1747104.531,1318412.183,21
+24333,707877.9606,1747883.148,1317564.426,21
+24334,709494.5847,1751844.539,1314426.807,21
+24335,706491.1835,1751178.805,1317668.769,21
+24336,708986.3564,1755688.163,1316074.09,21
+24337,706593.2695,1757184.36,1315678.059,21
+24338,707176.9949,1757837.325,1313973.955,21
+24339,707724.5022,1761107.549,1317511.56,21
+24340,706594.7984,1764504.718,1311335.313,21
+24341,706844.2889,1763041.262,1311762.488,21
+24342,705514.9151,1768385.762,1312047.105,21
+24343,707549.407,1768348.472,1310374.38,21
+24344,704934.5596,1772074.347,1310148.304,21
+24345,706623.6851,1772426.6,1309925.822,21
+24346,705099.8551,1775777.938,1310064.129,21
+24347,705736.8402,1777689.003,1310696.64,21
+24348,704984.4693,1778327.151,1307365.177,21
+24349,705227.8468,1783340.36,1307554.199,21
+24350,703813.9578,1781595.148,1307780.929,21
+24351,705330.5876,1787444.436,1309888.354,21
+24352,703367.268,1787009.913,1306024.855,21
+24353,704494.6998,1789985.682,1305539.288,21
+24354,703063.4975,1791893.695,1306936.485,21
+24355,704035.3442,1794795.528,1306624.604,21
+24356,703213.4949,1794915.251,1304074.012,21
+24357,702718.4497,1799133.136,1306217.006,21
+24358,703476.475,1800046.091,1303611.923,21
+24359,701456.483,1802137.745,1306631.409,21
+24360,703242.3086,1804056.229,1303932.413,15.6
+24361,0,0,0,15.6
+24362,0,0,0,15.6
+24363,0,231.8606845,0,15.6
+24364,0,0,0,15.6
+24365,0,0,0,15.6
+24366,0,0,856683.1036,15.6
+24367,339855.5132,0,1340589.419,15.6
+24368,0,0,0,15.6
+24369,0,0,857627.6583,15.6
+24370,0,0,0,15.6
+24371,0,0,0,15.6
+24372,0,0,860984.4074,15.6
+24373,0,0,0,15.6
+24374,0,0,0,15.6
+24375,0,426117.6826,860827.8268,15.6
+24376,0,0,0,15.6
+24377,0,0,0,15.6
+24378,0,0,0,15.6
+24379,0,0,0,15.6
+24380,0,0,0,15.6
+24381,0,0,0,15.6
+24382,0,0,0,15.6
+24383,0,0,0,15.6
+24384,0,0,0,15.6
+24385,0,0,0,15.6
+24386,0,0,0,15.6
+24387,0,0,0,15.6
+24388,0,0,0,15.6
+24389,0,0,0,15.6
+24390,0,0,0,15.6
+24391,0,0,0,15.6
+24392,0,0,0,15.6
+24393,0,0,0,15.6
+24394,0,0,0,15.6
+24395,0,0,0,15.6
+24396,0,0,0,15.6
+24397,0,0,0,15.6
+24398,0,0,0,15.6
+24399,0,426055.683,0,15.6
+24400,0,0,0,15.6
+24401,0,0,0,15.6
+24402,0,0,0,15.6
+24403,339847.1216,0,1544572.631,15.6
+24404,0,0,0,15.6
+24405,0,0,0,15.6
+24406,0,0,0,15.6
+24407,0,0,0,15.6
+24408,0,0,0,15.6
+24409,0,0,0,15.6
+24410,0,0,0,15.6
+24411,0,0,0,15.6
+24412,0,0,0,15.6
+24413,0,0,0,15.6
+24414,0,0,0,15.6
+24415,0,0,0,15.6
+24416,0,0,0,15.6
+24417,0,0,0,15.6
+24418,0,0,0,15.6
+24419,0,0,0,15.6
+24420,0,0,0,15.6
+24421,0,0,0,15.6
+24422,0,0,0,15.6
+24423,0,0,0,15.6
+24424,0,0,0,15.6
+24425,0,0,792363.618,15.6
+24426,0,0,0,15.6
+24427,0,0,0,15.6
+24428,0,0,819857.7329,15.6
+24429,0,0,0,15.6
+24430,0,0,0,15.6
+24431,0,0,824547.6207,15.6
+24432,0,0,0,15.6
+24433,0,0,0,15.6
+24434,0,0,825860.452,15.6
+24435,0,0,0,15.6
+24436,0,0,0,15.6
+24437,0,0,842372.8765,15.6
+24438,0,0,0,15.6
+24439,0,236.034709,1351282.946,15.6
+24440,339825.7304,0,802439.9024,15.6
+24441,0,0,0,15.6
+24442,0,0,0,15.6
+24443,0,0,801856.2315,15.6
+24444,0,0,0,15.6
+24445,0,0,0,15.6
+24446,0,0,0,15.6
+24447,0,0,0,15.6
+24448,0,40306.65185,0,15.6
+24449,0,2871.25566,0,15.6
+24450,0,5188.33922,0,15.6
+24451,0,16897.89105,0,15.6
+24452,0,12477.05174,0,15.6
+24453,0,12735.52544,0,15.6
+24454,0,13223.27817,0,15.6
+24455,0,13569.571,0,15.6
+24456,0,13745.39111,0,15.6
+24457,0,13972.36966,0,15.6
+24458,0,14239.71802,0,15.6
+24459,0,14472.14883,0,15.6
+24460,0,14722.97018,0,15.6
+24461,0,14938.10126,0,15.6
+24462,0,15216.53835,0,15.6
+24463,0,15412.10566,0,15.6
+24464,0,15760.77647,0,15.6
+24465,0,15867.50433,0,15.6
+24466,0,16172.33755,0,15.6
+24467,0,16372.42226,0,15.6
+24468,0,16614.53833,0,15.6
+24469,0,16870.57758,0,15.6
+24470,0,17108.93607,0,15.6
+24471,0,17297.92028,0,15.6
+24472,0,17557.56087,0,15.6
+24473,0,17853.21828,0,15.6
+24474,0,18032.60459,0,15.6
+24475,0,18239.62694,1389070.794,15.6
+24476,0,18484.36149,0,15.6
+24477,339790.4149,18705.69915,0,15.6
+24478,0,0,0,15.6
+24479,0,354126.47,0,15.6
+24480,0,18404.95963,0,15.6
+24481,0,129177.2919,0,15.6
+24482,0,143266.0291,0,15.6
+24483,0,120486.0184,0,15.6
+24484,0,132705.5944,0,15.6
+24485,0,126693.8905,0,15.6
+24486,0,127339.2466,0,15.6
+24487,0,126757.4185,0,15.6
+24488,0,126867.4844,0,15.6
+24489,0,551542.458,0,15.6
+24490,0,125695.4317,0,15.6
+24491,0,125086.3332,0,15.6
+24492,0,124711.2163,0,15.6
+24493,0,124421.0613,0,15.6
+24494,0,123548.4306,745376.2881,15.6
+24495,0,123142.6028,0,15.6
+24496,0,123054.5365,0,15.6
+24497,0,121987.949,772826.0933,15.6
+24498,0,121993.3304,0,15.6
+24499,0,120822.0514,0,15.6
+24500,0,121384.1479,779055.491,15.6
+24501,0,119590.347,0,15.6
+24502,0,120086.2453,0,15.6
+24503,0,118823.6846,782159.455,15.6
+24504,0,119012.6594,0,15.6
+24505,0,117890.5661,0,15.6
+24506,0,117468.9981,0,15.6
+24507,0,117296.8908,0,15.6
+24508,0,116310.2769,0,15.6
+24509,0,17730.79113,0,15.6
+24510,0,17693.80287,0,15.6
+24511,0,0,0,15.6
+24512,0,0,1116720.692,15.6
+24513,0,0,0,15.6
+24514,339792.6007,425684.2676,0,15.6
+24515,0,70804.68567,0,15.6
+24516,0,0,0,15.6
+24517,0,4415.164687,0,15.6
+24518,0,27387.8306,0,15.6
+24519,0,14918.39382,0,15.6
+24520,0,16851.80808,0,15.6
+24521,0,16844.64528,0,15.6
+24522,0,16769.46219,0,15.6
+24523,0,16593.31072,0,15.6
+24524,0,16624.21432,0,15.6
+24525,0,16424.70455,0,15.6
+24526,0,16431.30659,0,15.6
+24527,0,16274.41722,0,15.6
+24528,0,16201.61281,0,15.6
+24529,0,16100.24448,0,15.6
+24530,0,16084.00282,0,15.6
+24531,0,15921.6385,0,15.6
+24532,0,15980.12943,0,15.6
+24533,0,15783.90582,0,15.6
+24534,0,15614.39963,0,15.6
+24535,0,441181.8958,0,15.6
+24536,0,15422.36894,0,15.6
+24537,0,15316.06443,0,15.6
+24538,0,15221.12812,0,15.6
+24539,0,15085.57561,0,15.6
+24540,0,14872.74228,0,15.6
+24541,0,14962.58076,0,15.6
+24542,0,15020.117,0,15.6
+24543,0,15070.16098,0,15.6
+24544,0,15116.89929,0,15.6
+24545,0,0,738208.4884,15.6
+24546,0,0,0,15.6
+24547,0,0,0,15.6
+24548,0,0,765152.6494,15.6
+24549,0,0,1091460.042,15.6
+24550,0,67747.27115,0,15.6
+24551,339789.8092,0,754853.3523,15.6
+24552,0,2890.27871,0,15.6
+24553,0,23344.23648,0,15.6
+24554,0,440974.2677,0,15.6
+24555,0,15364.18914,0,15.6
+24556,0,15906.24736,0,15.6
+24557,0,15978.53777,0,15.6
+24558,0,16010.10369,0,15.6
+24559,0,16078.01325,0,15.6
+24560,0,16154.30767,0,15.6
+24561,0,16154.30643,0,15.6
+24562,0,16256.88237,0,15.6
+24563,0,16298.27756,0,15.6
+24564,0,16344.24169,0,15.6
+24565,0,16400.57763,0,15.6
+24566,0,366138.4139,0,15.6
+24567,0,36247.72274,0,15.6
+24568,0,53041.97831,0,15.6
+24569,0,129975.1999,0,15.6
+24570,0,122600.1714,0,15.6
+24571,0,106979.4662,0,15.6
+24572,0,113213.5728,0,15.6
+24573,0,539192.376,0,15.6
+24574,0,114194.5638,0,15.6
+24575,0,114632.3529,0,15.6
+24576,0,115075.9455,0,15.6
+24577,0,115608.2008,0,15.6
+24578,0,116510.0987,0,15.6
+24579,0,116526.1843,0,15.6
+24580,0,99964.89998,0,15.6
+24581,0,100619.0408,0,15.6
+24582,0,101103.6918,0,15.6
+24583,0,101252.3852,0,15.6
+24584,0,174774.0729,0,15.6
+24585,0,102626.4404,0,15.6
+24586,0,107088.5158,1268611.509,15.6
+24587,0,131748.5282,0,15.6
+24588,339758.8929,119928.8914,0,15.6
+24589,0,547410.3806,0,15.6
+24590,0,122971.4217,0,15.6
+24591,0,123467.5935,0,15.6
+24592,0,124237.6571,0,15.6
+24593,0,124324.1086,708025.3826,15.6
+24594,0,125458.4119,0,15.6
+24595,0,125720.5838,0,15.6
+24596,0,18136.6983,734830.2563,15.6
+24597,0,18116.00729,0,15.6
+24598,0,18223.90629,0,15.6
+24599,0,18246.98198,742350.6143,15.6
+24600,0,18302.74739,0,15.6
+24601,0,18298.72755,0,15.6
+24602,0,18367.70838,0,15.6
+24603,0,18305.54846,0,15.6
+24604,0,18344.68935,0,15.6
+24605,0,505061.2096,0,15.6
+24606,0,20288.9581,0,15.6
+24607,0,50262.00603,0,15.6
+24608,0,586147.4084,0,15.6
+24609,0,141639.8945,0,15.6
+24610,0,123660.0502,0,15.6
+24611,0,130285.4166,0,15.6
+24612,0,130721.2071,0,15.6
+24613,43119.11705,130484.8622,0,15.6
+24614,1665.605446,112070.8444,0,15.6
+24615,1813.79609,112288.18,0,15.6
+24616,10189.58441,112238.1331,0,15.6
+24617,12101.94136,112225.5489,0,15.6
+24618,8687.573251,191430.7934,0,15.6
+24619,9739.605332,111907.33,0,15.6
+24620,9836.742319,118086.1655,0,15.6
+24621,9849.344184,141476.7823,0,15.6
+24622,9934.251084,129416.6683,0,15.6
+24623,9998.267316,131057.6695,1238510.33,15.6
+24624,10031.18277,556699.4335,0,15.6
+24625,349855.3487,131283.5479,0,15.6
+24626,10128.81649,131666.1794,0,15.6
+24627,10202.29671,131252.6788,0,15.6
+24628,10281.2679,131615.7558,0,15.6
+24629,10305.3572,131711.8874,0,15.6
+24630,10365.05879,131417.7543,0,15.6
+24631,10417.49524,131960.21,0,15.6
+24632,10506.97304,131847.3822,0,15.6
+24633,10534.2368,131686.8453,0,15.6
+24634,10612.39829,131894.3616,0,15.6
+24635,10657.46241,18756.53848,0,15.6
+24636,10714.09675,18775.10151,0,15.6
+24637,10773.1193,18785.98,0,15.6
+24638,10851.76814,18819.4779,0,15.6
+24639,10895.32109,18796.63939,0,15.6
+24640,10967.73374,18785.97737,0,15.6
+24641,10988.93511,18819.47529,0,15.6
+24642,11093.71977,18840.95863,0,15.6
+24643,0,943910.3523,0,15.6
+24644,0,18842.2513,0,15.6
+24645,0,48972.79337,0,15.6
+24646,0,167566.3783,0,15.6
+24647,0,142497.4864,0,15.6
+24648,0,107885.9355,0,15.6
+24649,0,114133.4645,0,15.6
+24650,53834.077,114544.5292,0,15.6
+24651,0,113817.8057,0,15.6
+24652,2525.984973,194806.7583,0,15.6
+24653,15366.79741,114129.893,0,15.6
+24654,13094.7439,119790.4044,0,15.6
+24655,11192.81097,143588.3563,0,15.6
+24656,12020.77416,131181.9396,0,15.6
+24657,12092.71377,132717.259,0,15.6
+24658,12145.26134,133160.9307,0,15.6
+24659,12193.97904,132736.8087,0,15.6
+24660,12256.80674,133035.5148,1173310.802,15.6
+24661,12241.27616,133092.7216,0,15.6
+24662,351984.0555,558415.6877,0,15.6
+24663,12232.03525,133834.3671,0,15.6
+24664,12187.68536,133692.3622,0,15.6
+24665,12205.27958,134275.3285,0,15.6
+24666,12178.47711,134083.178,0,15.6
+24667,12151.48315,135016.944,0,15.6
+24668,12163.9692,134404.0096,0,15.6
+24669,12151.58549,135723.0359,0,15.6
+24670,12126.72036,134556.6596,0,15.6
+24671,12099.91078,136194.5724,0,15.6
+24672,12135.98253,135489.4773,0,15.6
+24673,12074.98464,19422.39506,0,15.6
+24674,12068.67388,19441.65465,0,15.6
+24675,12099.86401,19455.37602,0,15.6
+24676,12021.09294,19567.91957,0,15.6
+24677,12068.66962,19506.49707,0,15.6
+24678,12032.35086,19516.90696,0,15.6
+24679,11994.11007,19672.66933,0,15.6
+24680,0,534634.6384,0,15.6
+24681,0,19650.23704,0,15.6
+24682,0,30404.66291,0,15.6
+24683,0,160479.6634,0,15.6
+24684,0,126518.3317,0,15.6
+24685,0,611383.1045,0,15.6
+24686,0,120394.3826,0,15.6
+24687,59687.6837,131402.0775,0,15.6
+24688,0,148413.6731,0,15.6
+24689,1862.596418,138723.0399,0,15.6
+24690,13957.56478,140874.6944,0,15.6
+24691,14516.75847,141120.4914,0,15.6
+24692,10806.0042,140759.4565,0,15.6
+24693,11937.71594,141863.2688,0,15.6
+24694,11915.98113,141231.9876,0,15.6
+24695,11910.6164,142049.0339,0,15.6
+24696,11889.84654,141905.6536,0,15.6
+24697,11894.9269,142160.4326,1117717.745,15.6
+24698,11814.78945,142727.7933,0,15.6
+24699,11863.42933,142528.4017,0,15.6
+24700,351602.4407,142913.5771,0,15.6
+24701,11788.33194,567949.1324,0,15.6
+24702,11783.2536,143494.1833,0,15.6
+24703,11778.89009,143136.596,0,15.6
+24704,11751.6517,143972.1718,0,15.6
+24705,11725.42816,144167.4275,0,15.6
+24706,11724.45788,143913.7,0,15.6
+24707,11699.0895,144726.8088,0,15.6
+24708,11660.44078,144470.1623,0,15.6
+24709,11683.2692,145186.075,0,15.6
+24710,11644.51861,20568.39484,0,15.6
+24711,11607.71492,20579.9032,0,15.6
+24712,11640.08842,20597.08475,0,15.6
+24713,11591.75637,20680.30406,0,15.6
+24714,11564.431,20664.65555,0,15.6
+24715,11554.8565,0,0,15.6
+24716,11536.97907,551773.866,0,15.6
+24717,0,0,0,15.6
+24718,0,103887.8955,0,15.6
+24719,0,175254.9553,0,15.6
+24720,0,145248.5297,0,17.8
+24721,905729.8797,1422346.312,1524721.498,17.8
+24722,601798.7497,996768.6249,486115.9543,17.8
+24723,253658.5363,216055.1335,377167.9824,17.8
+24724,150550.3672,389733.4567,539512.5535,17.8
+24725,316650.4303,496481.3359,536329.4332,17.8
+24726,251407.7251,415264.8045,495048.9232,17.8
+24727,249474.7883,414309.6054,506926.922,17.8
+24728,250551.2327,413965.4941,509856.3035,17.8
+24729,250841.0501,411337.6092,511167.7923,17.8
+24730,251270.3229,410622.1806,513727.2991,17.8
+24731,251125.1396,409465.0424,515041.4793,17.8
+24732,252524.7129,408425.1038,517478.059,17.8
+24733,252426.6816,406442.9823,519170.9106,17.8
+24734,252810.0839,406059.607,1469478.959,17.8
+24735,253531.1293,405164.3618,514111.1672,17.8
+24736,254259.4812,403540.1467,516172.1114,17.8
+24737,254589.0957,403967.7564,518191.4084,17.8
+24738,595270.7769,402256.644,520748.7331,17.8
+24739,255912.5836,401663.4274,522081.2908,17.8
+24740,256446.8197,401272.5237,524841.436,17.8
+24741,257569.8334,400262.9238,526571.0327,17.8
+24742,257835.9221,400005.8176,528013.5696,17.8
+24743,258498.6291,399043.2399,530195.4149,17.8
+24744,259483.1793,398406.1564,531800.6914,17.8
+24745,259974.0654,398577.2869,533938.7264,17.8
+24746,260966.4073,77975.22179,535611.3115,17.8
+24747,261560.0742,77598.89439,536699.5624,17.8
+24748,262168.7194,16232.08902,538863.3205,17.8
+24749,263426.7321,1046786.409,540354.9968,17.8
+24750,263574.7409,324686.7226,542277.5712,17.8
+24751,0,239057.5878,0,17.8
+24752,0,468292.8507,0,17.8
+24753,85402.2048,369552.9095,0,17.8
+24754,747789.9008,379551.9832,0,17.8
+24755,180466.8851,378390.5284,379436.462,17.8
+24756,191987.7718,426802.9183,223749.0022,17.8
+24757,321193.4939,377689.7537,229048.75,17.8
+24758,265818.7532,391317.7679,242644.09,17.8
+24759,271608.3575,398314.7679,228485.6711,17.8
+24760,271953.0324,392641.945,224944.4407,17.8
+24761,273219.7251,393503.0127,1270379.593,17.8
+24762,273752.5047,392792.3766,386820.6056,17.8
+24763,274800.8411,393404.9434,388418.7039,17.8
+24764,275180.8176,392165.3904,609131.8948,17.8
+24765,276574.6952,392826.7888,503000.5274,17.8
+24766,277093.037,392323.9927,512838.1,17.8
+24767,277880.5936,392694.6498,518253.3527,17.8
+24768,279059.8897,391449.0105,520483.8014,17.8
+24769,279216.1763,392292.1102,1460540.602,17.8
+24770,281089.1167,391825.9558,516016.2918,17.8
+24771,281186.9859,391452.0184,518771.6319,17.8
+24772,282137.7446,392021.751,520717.5148,17.8
+24773,622877.852,391459.6866,523432.8355,17.8
+24774,284328.3155,391587.6887,525960.1907,17.8
+24775,284445.8731,390730.745,527621.8217,17.8
+24776,286287.009,392237.2807,530128.8288,17.8
+24777,286385.7059,390890.4625,532284.7724,17.8
+24778,287757.0356,390999.3776,533999.5068,17.8
+24779,288528.3917,76916.05436,536248.9168,17.8
+24780,288897.6538,16783.64035,537888.0202,20
+24781,2293180.894,2578724.241,3961993.178,20
+24782,1098589.732,2628299.203,2322585.737,20
+24783,596657.0954,1713696.835,1532262.287,20
+24784,224856.385,695335.6007,1193938.435,20
+24785,852375.3735,1250186.821,669956.8836,20
+24786,826132.6578,1013856.617,1126550.569,20
+24787,834595.4944,998399.4656,1146911.246,20
+24788,794225.1963,1083302.345,1060145.001,20
+24789,737573.2791,1021897.63,1044652.973,20
+24790,713224.3467,1002688.166,1030493.455,20
+24791,734622.4581,988233.7495,331302.2861,20
+24792,721216.3516,993679.6908,318226.9583,20
+24793,717358.7337,986619.2371,311671.8475,20
+24794,715248.4555,978041.9927,1979462.1,20
+24795,711103.6163,977288.9715,1288413.286,20
+24796,709774.813,971318.0253,631384.6135,20
+24797,707042.3032,968088.3137,1028810.162,20
+24798,704289.4817,964204.5095,938360.1516,20
+24799,704251.6884,961115.1478,1061779.798,20
+24800,700419.9136,957606.3632,969276.8479,20
+24801,698897.5514,954898.5953,1004703.624,20
+24802,698506.2579,1376854.075,1010806.996,20
+24803,695910.5206,948909.6657,1017857.448,20
+24804,693278.3657,945690.9021,2007310.604,20
+24805,693373.8042,943648.3281,1007422.788,20
+24806,690664.6656,941228.2687,1011091.764,20
+24807,689443.7408,938050.2924,1016841.71,20
+24808,1028071.594,936322.6331,1019881.019,20
+24809,686758.3477,932867.9201,1024496.492,20
+24810,685140.9045,932295.1531,1029009.151,20
+24811,667211.1323,36703.5449,1032397.198,20
+24812,665161.8618,36696.84895,1033042.804,20
+24813,664023.9777,1493926.237,1037806.148,20
+24814,573601.117,1005459.274,1041418.835,20
+24815,0,844719.7676,1039650.224,20
+24816,171445.2394,1017182.015,1046299.471,20
+24817,925584.9037,906438.2378,918761.076,20
+24818,669846.8726,887886.5598,923169.2057,20
+24819,773492.0593,883742.6094,1167326.673,20
+24820,672717.5158,967809.9096,1087955.352,20
+24821,672230.2568,895794.2768,1018513.979,20
+24822,684173.1863,912293.1837,1056504.165,20
+24823,675850.8115,910769.3126,1049240.158,20
+24824,672331.9779,908336.3065,355564.7484,20
+24825,672130.1961,905388.7439,348589.2852,20
+24826,670540.9663,906194.4398,341659.857,20
+24827,670027.2135,903323.9523,2127919.941,20
+24828,668840.2148,902464.7819,1065003.525,20
+24829,667398.4945,900006.1256,672945.0367,20
+24830,667980.1475,1324209.942,1004886.046,20
+24831,665844.6347,897983.6802,998623.4976,20
+24832,665125.2385,897074.3252,995523.3991,20
+24833,664186.7796,895096.2555,967300.7675,20
+24834,663937.8858,895006.439,988506.951,20
+24835,662426.9148,892201.4717,993312.2068,20
+24836,662841.152,892588.7638,1000851.56,20
+24837,659834.1809,890208.7838,1005719.917,20
+24838,661064.0181,889482.2336,1017428.939,20
+24839,660140.3613,888047.3413,2084405.902,20
+24840,657549.0225,887061.2678,1000998.737,21
+24841,2635343.609,2982908.125,4260815.555,21
+24842,2025763.754,2208692.695,4068281.754,21
+24843,590767.141,989825.8893,978840.9079,21
+24844,543262.4695,1227015.941,1044239.226,21
+24845,1001362.391,1359133.903,1928599.147,21
+24846,830185.9445,1258081.019,1385731.943,21
+24847,799744.7043,1255515.282,1445938.727,21
+24848,807835.3492,1245001.728,1454500.07,21
+24849,805307.5049,1219684.919,1459182.174,21
+24850,802163.3198,1229568.964,1463082.492,21
+24851,799899.1375,1223530.881,1469376.177,21
+24852,796954.4424,1221922.741,1467338.737,21
+24853,793150.7533,1641325.264,1474011.364,21
+24854,792303.5621,1216887.443,1474999.112,21
+24855,788287.6139,1214332.796,1475661.329,21
+24856,787677.8168,1211610.569,1478775.226,21
+24857,783941.219,1211982.716,1477150.15,21
+24858,782979.1983,1207952.604,1479572.7,21
+24859,779155.8618,1205447.072,1480670.553,21
+24860,779416.4024,1205597.271,1477722.128,21
+24861,774951.3742,1204614.755,1481618.126,21
+24862,775732.3482,1198869.052,1480573.774,21
+24863,771410.5115,1199373.276,1481318.847,21
+24864,771654.3796,1197020.83,1478002.89,21
+24865,769067.379,1193492.173,1480455.726,21
+24866,767641.6845,1194393.411,1479142.421,21
+24867,764754.9452,1192104.69,1476725.626,21
+24868,765083.8374,1190714.051,1478822.359,21
+24869,763110.8983,1188989.692,1477091.975,21
+24870,761033.0452,1612681.793,1474724.633,21
+24871,759198.6743,1186104.73,1475876.979,21
+24872,759228.5436,1185974.017,1473929.696,21
+24873,755360.7696,1183817.581,1473075.374,21
+24874,757592.6145,1184766.689,1473144.384,21
+24875,753121.8733,1180114.065,1469007.717,21
+24876,754056.3814,1182123.538,1472084.503,21
+24877,752071.7295,1179360.078,1467713.637,21
+24878,750389.9066,1179370.032,1468076.823,21
+24879,749627.5415,1178584.181,1466410.41,21
+24880,749227.1856,1176609.071,1466909.483,21
+24881,747957.7441,1176772.475,1464854.445,21
+24882,745876.5995,1175991.113,1462343.225,21
+24883,744620.8158,1173394.052,1464980.881,21
+24884,745961.6884,1175126.981,1461095.198,21
+24885,741485.6728,1173115.152,1459981.297,21
+24886,744080.9907,1172803.672,1459427.628,21
+24887,740211.6809,1595817.14,1457023.59,21
+24888,740859.5001,1171308.009,1459806.545,21
+24889,738759.5191,1169899.817,1453216.476,21
+24890,739544.6876,1170315.319,1456490.358,21
+24891,736851.6843,1169355.508,1454184.159,21
+24892,736706.232,1168726.578,1453815.846,21
+24893,735699.1533,1167884.937,1452599.703,21
+24894,734928.7424,1166880.361,1452882.493,21
+24895,732720.2027,1167350.673,1450866.352,21
+24896,733864.2434,1166879.494,1449307.342,21
+24897,733085.3446,1165486.053,1449482.036,21
+24898,730357.5335,1165951.122,1447655.898,21
+24899,731662.0819,1164669.769,1448885.693,21
+24900,727829.498,1163946.208,1444939.783,21
+24901,933137.9117,2273714.703,1387934.172,21
+24902,923173.1197,2264622.391,1373540.891,21
+24903,925766.4873,2262320.064,1371422.44,21
+24904,921963.3838,2259393.993,1369988.213,21
+24905,922016.9162,2255642.774,1367771.84,21
+24906,921316.2914,2254033.421,1363881.52,21
+24907,917504.6235,2251033.966,1366094.551,21
+24908,920120.9994,2248348.363,1357957.562,21
+24909,917887.7059,2246687.083,1361132.782,21
+24910,915550.8768,2244599.715,1357905.693,21
+24911,915769.18,2239385.993,1355477.897,21
+24912,915231.9122,2242104.937,1355327.842,21
+24913,913853.9719,2235051.196,1352271.329,21
+24914,912526.9091,2235977.365,1353342.46,21
+24915,913748.4256,2247640.521,1346513.574,21
+24916,910680.8038,2238921.043,1349908.982,21
+24917,911171.2174,2237369.154,1345356.484,21
+24918,909147.2161,2236298.817,1343977.437,21
+24919,909298.0561,2234806.245,1345953.911,21
+24920,908181.8147,2232090.687,1338906.591,21
+24921,908091.3295,2229594.948,1342111.13,21
+24922,906631.4994,2228994.344,1340377.378,21
+24923,906590.5352,2226254.164,1335868.263,21
+24924,905170.0689,2224066.247,1338418.469,21
+24925,904867.6367,2222683.14,1333992.199,21
+24926,904276.9977,2220560.687,1333565.871,21
+24927,903770.116,2218741.172,1332472.386,21
+24928,903401.747,2216585.505,1331401.934,21
+24929,902203.4053,2216218.302,1326326.171,21
+24930,900796.9606,2212321.811,1330773.765,21
+24931,902600.4755,2211614.539,1326021.063,21
+24932,899210.1553,2209196.599,1324284.957,21
+24933,899772.8325,2207472.667,1325849.855,21
+24934,900107.4143,2206404.359,1322602.374,21
+24935,898029.4021,2202177.807,1320930.115,21
+24936,899000.0303,2204074.93,1322793.876,21
+24937,897367.4486,2199298.911,1317577.317,21
+24938,896864.7348,2198367.383,1318956.509,21
+24939,896681.8287,2198155.627,1316554.445,21
+24940,896270.1603,2194068.588,1316760.634,21
+24941,896337.9235,2193076.653,1314432.988,21
+24942,893835.6354,2188427.922,1313867.727,21
+24943,895435.6723,2190152.972,1309792.913,21
+24944,893532.1073,2185962.005,1312788.995,21
+24945,893488.4051,2185151.32,1308695.485,21
+24946,892525.071,2183602.111,1309949.428,21
+24947,893177.0162,2181222.431,1296544.028,21
+24948,889785.983,2180345.841,1294670.277,21
+24949,889222.4166,2177987.896,1293696.96,21
+24950,888361.797,2177345.938,1292568.953,21
+24951,886790.8576,2174440.637,1291476.049,21
+24952,886185.5905,2172575.721,1289212.728,21
+24953,887545.5669,2172609.868,1287066.881,21
+24954,883323.5931,2168943.173,1287712.197,21
+24955,886465.281,2168896.054,1286575.07,21
+24956,882870.7044,2165719.704,1283743.492,21
+24957,883776.4565,2164616.967,1282057.644,21
+24958,883211.3302,2163257.589,1283245.095,21
+24959,881775.2156,2162297.216,1278787.605,21
+24960,881961.1737,2159243.048,1279508.826,21
+24961,651997.6558,2279089.983,858012.2329,21
+24962,637190.1986,1881891.085,832800.2111,21
+24963,635274.8422,1871394.792,823808.1191,21
+24964,630688.2183,1864060.969,816153.864,21
+24965,628317.9719,1854976.582,810936.215,21
+24966,627375.3012,1849288.804,802717.4561,21
+24967,623376.0226,1840424.935,797305.8304,21
+24968,622319.4641,1834316.254,790521.1388,21
+24969,620403.9391,1826431.493,786418.5742,21
+24970,618002.2095,1820384.924,778952.336,21
+24971,616852.2097,1814372.725,773436.1008,21
+24972,615081.7362,1805882.907,769053.0782,21
+24973,612399.2588,1800449.579,762648.7964,21
+24974,611423.4274,1794002.364,758666.2017,21
+24975,610262.1428,1787695.134,752350.2011,21
+24976,607168.6211,1779941.825,748386.5014,21
+24977,607386.2836,1775894.425,743035.2467,21
+24978,605174.0782,1767435.923,738446.9722,21
+24979,603258.6697,1762677.053,732375.541,21
+24980,603007.4938,1756114.963,729282.8379,21
+24981,599945.6526,1750225.177,724215.9018,21
+24982,600602.2926,1744388.918,719593.7171,21
+24983,598437.7829,1738673.037,715031.3736,21
+24984,596778.9484,1731283.325,711154.0153,21
+24985,595959.3355,1727663.07,705233.1037,21
+24986,595143.5753,1720509.832,701860.9719,21
+24987,594156.4653,1714292.337,697330.5938,21
+24988,591817.7839,1710109.512,693807.5991,21
+24989,592164.3291,2083799.102,688652.9989,21
+24990,589739.0229,1699499.223,685088.4365,21
+24991,589671.9007,1692165.686,680021.8845,21
+24992,587925.6642,1687667.858,676095.5301,21
+24993,587225.2288,1681968.02,670841.1493,21
+24994,585082.13,1676355.13,667758.7393,21
+24995,584387.3154,1669779.348,663340.4863,21
+24996,583510.9102,1665518.524,658191.8877,21
+24997,580539.6809,1658573.537,655272.6732,21
+24998,581428.3799,1654855.397,651114.4372,21
+24999,579396.2949,1647647.622,648170.5978,21
+25000,577974.3603,1644018.326,643866.6323,21
+25001,576917.842,1636262.241,641327.0782,21
+25002,577640.3108,1633613.954,637926.6568,21
+25003,575175.267,1625376.71,634343.1316,21
+25004,575692.0006,1622661.705,631876.8711,21
+25005,572863.7261,1614876.669,627193.2168,21
+25006,573210.4044,1611314.39,625275.5814,21
+25007,571715.1021,1604512.13,621405.1624,21
+25008,570594.32,1600557.539,618284.9044,21
+25009,570280.5364,1594395.771,615285.0642,21
+25010,568328.2523,1588679.912,612243.5569,21
+25011,567605.528,1583806.337,609137.9533,21
+25012,566637.8035,1577588.575,606267.981,21
+25013,565925.5025,1573534.248,603092.3261,21
+25014,564475.0406,1566574.626,600641.3384,21
+25015,564059.6596,1562362.424,597196.2533,21
+25016,561851.6553,1556324.708,594571.693,21
+25017,562539.6113,1550304.945,591994.5851,21
+25018,560344.3453,1545793.389,588860.1095,21
+25019,559981.1513,1539051.938,585574.3647,21
+25020,559309.9852,1533269.98,585392.9448,21
+25021,557249.5943,1529474.559,580428.5432,21
+25022,555019.4937,1527659.071,577691.2689,21
+25023,553485.3934,1522362.413,575580.8702,21
+25024,551188.0608,1521182.22,572253.6754,21
+25025,550398.3907,1517555.472,569896.9313,21
+25026,547384.7665,1513924.13,567373.4047,21
+25027,547258.5491,1511791.72,564397.5224,21
+25028,544660.4349,1507620.388,562004.1352,21
+25029,543460.0103,1505718.491,559852.9732,21
+25030,540952.622,1501888.838,556099.692,21
+25031,539873.8349,1499651.251,554878.0161,21
+25032,537898.156,1497223.753,551526.3172,21
+25033,536092.2514,1492617.454,549402.8995,21
+25034,535372.6918,1490888.778,546950.3385,21
+25035,532459.7009,1487316.14,543983.8587,21
+25036,532109.7435,1485193.373,542244.4416,21
+25037,529673.1938,1480969.366,538917.0843,21
+25038,527764.5624,1478940.779,537491.6194,21
+25039,527355.7471,1476409.589,533992.0006,21
+25040,524177.2746,1473356.902,532027.9783,21
+25041,523474.362,1469578.974,529984.5319,21
+25042,521233.5529,1467159.233,526988.7835,21
+25043,519887.3852,1465486.131,524702.2153,21
+25044,519015.4639,1460409.76,522605.4835,21
+25045,516464.8447,1458843.879,519698.7977,21
+25046,515696.4093,1456660.188,517925.5473,21
+25047,513709.0339,1452369.013,514757.9042,21
+25048,513325.8601,1449867.112,513325.4466,21
+25049,511547.5772,1447774.083,510288.7195,21
+25050,510738.7476,1443888.818,507897.9753,21
+25051,509511.9072,1442814.455,506671.8113,21
+25052,509102.2118,1437653.068,503754.85,21
+25053,507984.0494,1436724.725,501622.8372,21
+25054,507348.9282,1433447.627,500078.5796,21
+25055,506324.1532,1430385.669,497652.176,21
+25056,505477.2539,1427443.001,495412.6102,21
+25057,504857.8537,1425421.328,493885.2317,21
+25058,503992.1525,1420611.108,490845.8235,21
+25059,503097.9203,1420617.487,489773.5593,21
+25060,502783.0857,1415635.086,487431.4584,21
+25061,501385.1343,1414786.8,485090.8118,21
+25062,501088.4341,1411119.05,483164.4941,21
+25063,500140.1566,1408030.641,481125.2439,21
+25064,499544.7679,1406066.171,479452.2693,21
+25065,498688.3012,1402675.293,476909.0594,21
+25066,497874.1584,1400060.59,475347.7362,21
+25067,497601.7913,1397444.901,473017.1017,21
+25068,496160.2106,1394134.343,471490.2108,21
+25069,496077.5211,1393009.301,468776.0748,21
+25070,495129.4459,1388977.868,467662.7563,21
+25071,494095.3976,1385631.055,465077.4082,21
+25072,493855.1794,1384839.908,463397.3137,21
+25073,493120.1697,1380725.045,461485.3815,21
+25074,492185.1136,1378744.478,459338.7062,21
+25075,491497.718,1375139.149,457659.3273,21
+25076,490878.0385,1373149.217,455419.6225,21
+25077,489974.3119,1371220.082,453743.5694,21
+25078,489631.4292,1367564.741,451860.1607,21
+25079,489049.9833,1365252.669,449628.1817,21
+25080,487837.8055,1363048.161,448223.9823,21
+25081,491853.847,1363439.566,453332.828,21
+25082,490016.4002,1360258.809,451605.3602,21
+25083,490144.6283,1361595.958,449920.7792,21
+25084,488266.266,1358844.798,447734.3385,21
+25085,487448.5234,1357835.385,446187.8896,21
+25086,486832.6301,1355292.312,444006.3742,21
+25087,485491.8554,1354012.958,442450.3269,21
+25088,484429.9278,1353529.662,440116.987,21
+25089,484181.0511,1349753.758,439160.8674,21
+25090,482435.7798,1350219.388,436545.1152,21
+25091,481559.2892,1346669.305,434884.272,21
+25092,480835.7615,1347097.726,433159.9577,21
+25093,479806.2268,1344111.995,430956.1899,21
+25094,478622.7483,1343510.224,429588.0734,21
+25095,478087.4589,1340536.063,427335.4825,21
+25096,476567.4543,1340090.16,425940.8164,21
+25097,475949.6602,1337880.256,423863.2993,21
+25098,474798.3902,1336026.121,422384.7367,21
+25099,473848.0954,1335024.192,419775.0263,21
+25100,473028.1924,1333732.552,420299.9249,21
+25101,472284.0384,1330928.997,418051.9702,21
+25102,470692.8545,1330405.33,416196.8522,21
+25103,470204.8604,1327587.659,414615.5399,21
+25104,469321.5891,1327421.157,413163.1775,21
+25105,467803.5684,1324443.918,410686.4559,21
+25106,467517.0953,1323799.112,409211.9002,21
+25107,466174.3037,1321500.153,407799.3538,21
+25108,465226.5422,1319334.613,405444.4525,21
+25109,464639.4068,1319246.702,404168.4496,21
+25110,463375.9009,1316286.305,402178.4742,21
+25111,462683.5496,1316577.049,400588.8988,21
+25112,461248.3703,1312580.42,398664.4458,21
+25113,460892.8014,1311688.903,397510.8268,21
+25114,459350.1305,1310604.083,395546.6052,21
+25115,458996.4599,1308709.39,393798.6816,21
+25116,457414.8796,1304860.327,392840.9275,21
+25117,457130.7093,1301671.937,390269.9954,21
+25118,455708.4683,1296111.96,389600.2753,21
+25119,454779.2823,1293426.945,387585.5933,21
+25120,454141.7767,1290548.328,385755.1995,21
+25121,452640.9554,1289580.412,384839.9322,21
+25122,452518.056,1287046.249,382668.7835,21
+25123,451118.8883,1284842.113,381344.8156,21
+25124,450194.1908,1284308.993,379879.0642,21
+25125,449263.8511,1282003.391,378509.8681,21
+25126,448209.5429,1281228.706,376286.9096,21
+25127,447690.9492,1278330.983,375757.2318,21
+25128,446268.2543,1276926.185,373172.3368,21
+25129,445721.547,1273700.707,372326.4528,21
+25130,444763.1738,1272912.788,370891.5125,21
+25131,443584.0025,1270760.392,368742.667,21
+25132,442936.3797,1269056.205,367594.2693,21
+25133,442082.3642,1266333.96,366242.5052,21
+25134,441204.083,1265687.728,364455.0609,21
+25135,440103.0283,1260916.545,362876.2175,21
+25136,438831.7505,1260487.778,361641.7817,21
+25137,438743.9908,1257549.89,359831.892,21
+25138,437083.2057,1255758.717,358609.4585,21
+25139,436507.8758,1253469.069,356979.4756,21
+25140,436950.0283,1253148.184,355315.8976,21
+25141,431365.9969,1249396.544,346591.1931,21
+25142,430896.7194,1245865.34,343928.8718,21
+25143,431564.0573,1245539.975,866565.0621,21
+25144,430805.7331,1242505.141,218849.1342,21
+25145,431992.1215,1240662.348,288737.385,21
+25146,431137.4828,1240839.959,903986.332,21
+25147,431718.9718,1238559.792,217383.0881,21
+25148,431321.6927,1237007.076,504419.9529,21
+25149,432016.3802,1235469.309,212957.9309,21
+25150,431997.0907,1233789.307,214919.3575,21
+25151,431761.4825,1231848.398,210990.2439,21
+25152,431980.1099,1228493.884,398890.5056,21
+25153,432553.8243,1228908.074,419039.3879,21
+25154,431838.8732,1226076.221,204282.8611,21
+25155,432667.7457,1224086.557,206500.6143,21
+25156,432696.7627,1223000.501,202375.0131,21
+25157,432485.6034,1219472.419,393684.4601,21
+25158,432679.722,1217117.983,409581.5292,21
+25159,433037.6247,1216560.435,196543.9689,21
+25160,432813.353,1214013.333,197959.1642,21
+25161,433228.7959,1211668.253,194321.1651,21
+25162,433106.4215,1209865.56,387469.5454,21
+25163,433410.0196,1209415.685,401280.9496,21
+25164,433678.3009,1206494.695,188273.0431,21
+25165,433292.0812,1205024.002,187929.9376,21
+25166,434141.4088,1202863.494,184722.1078,21
+25167,433550.3442,1202021.738,379327.5976,21
+25168,434039.8657,1198858.052,391658.6954,21
+25169,434028.6163,1197860.091,178152.5788,21
+25170,434250.7028,1195755.657,179597.0606,21
+25171,434528.9879,1194180.512,175972.0119,21
+25172,434122.4538,1193027.976,372494.0128,21
+25173,434476.1613,1190028.497,381990.3887,21
+25174,434730.1803,1189387.466,170604.7942,21
+25175,434479.9655,1188319.386,171132.6428,21
+25176,434844.3229,1184436.029,168519.2628,21
+25177,434787.4018,1184960.124,365056.2089,21
+25178,434734.7131,1182702.812,372728.7306,21
+25179,434848.2433,1180327.41,162513.927,21
+25180,435181.116,1180045.937,163451.414,21
+25181,434868.2595,1177441.392,161008.0743,21
+25182,434995.188,1175189.085,357088.5043,21
+25183,435242.3838,1174869.61,363071.9898,21
+25184,435395.1318,1172765.436,154707.0707,21
+25185,435361.8852,1170542.115,156101.4763,21
+25186,435211.1044,1169698.582,360116.0572,21
+25187,435777.8478,1167101.013,341841.229,21
+25188,435038.9794,1166641.843,345090.8227,21
+25189,436059.3438,1164440.08,145732.4477,21
+25190,435459.3886,1162005.152,147023.2787,21
+25191,436018.754,1160874.496,344520.3986,21
+25192,435406.3216,1159639.488,326488.2196,21
+25193,436403.5725,1156304.958,328379.0123,21
+25194,435549.0524,1157356.187,136986.0113,21
+25195,436113.2302,1152914.655,138584.9268,21
+25196,436377.5915,1153578.597,329238.1753,21
+25197,436157.4842,1150098.195,311927.1341,21
+25198,436555.1173,1148391.205,312245.1706,21
+25199,436386.7658,1147046.717,129085.8316,21
+25200,436861.9617,1144147.487,129845.8287,21
+25201,464601.533,1218432.114,348776.2987,21
+25202,466061.9713,1220908.73,332305.2915,21
+25203,465654.6304,1219433.189,334667.8221,21
+25204,464753.2018,1219143.525,157665.3717,21
+25205,464958.8103,1220817.014,160583.0872,21
+25206,464574.0789,1217063.197,341105.5708,21
+25207,464262.4099,1218806.684,325578.0253,21
+25208,464071.1836,1217585.196,327393.9515,21
+25209,463411.1862,1216988.467,155838.2768,21
+25210,463762.6253,1218396.872,158477.2867,21
+25211,463130.5787,1217369.404,334852.4451,21
+25212,462972.1815,1217211.674,319782.3048,21
+25213,462363.9936,1216726.42,321244.43,21
+25214,462758.3424,1217561.962,154098.5004,21
+25215,461638.3608,1216362.026,156428.0187,21
+25216,462035.3702,1217060.107,329201.5345,21
+25217,461556.0275,1216816.527,314424.4755,21
+25218,460918.1742,1215917.476,316085.9695,21
+25219,460780.2776,1217150.898,151857.5237,21
+25220,460609.0163,1215742.8,154853.9618,21
+25221,460448.646,1216276.041,324321.8908,21
+25222,459800.9642,1215267.965,309177.5998,21
+25223,459787.034,1216869.897,310797.1113,21
+25224,458969.4091,1214915.708,151007.8237,21
+25225,459193.7824,1215918.071,152692.3079,21
+25226,458571.9107,1215662.883,319558.3046,21
+25227,458261.0985,1214896.851,304873.4903,21
+25228,457802.517,1214834.172,306601.6858,21
+25229,457630.3557,1216341.693,148979.1633,21
+25230,457175.0026,1213612.787,152288.4818,21
+25231,457028.1684,1215553.115,316623.9459,21
+25232,456738.5261,1215696.302,302029.9036,21
+25233,457124.7756,1213656.669,303285.8748,21
+25234,456546.6023,1216100.497,149391.9594,21
+25235,457040.6338,1214719.426,151141.6526,21
+25236,456359.7844,1214388.914,312486.061,21
+25237,456840.0567,1216012.412,298874.5508,21
+25238,456710.3897,1214868.713,300295.4988,21
+25239,456370.9215,1214927.245,147864.6685,21
+25240,456764.2453,1215547.168,150059.7718,21
+25241,456548.8838,1215780.852,309408.7791,21
+25242,456224.2565,1214839.174,295705.2334,21
+25243,456641.7843,1215077.667,297405.8305,21
+25244,456349.0352,1216415.155,146736.6851,21
+25245,456853.2582,1214779.789,149286.803,21
+25246,456004.6395,1215742.481,306212.6656,21
+25247,456703.6497,1215969.802,293276.7896,21
+25248,456608.1152,1215766.391,293923.0802,21
+25249,456219.7987,1215334.958,146482.2719,21
+25250,457119.6929,1216815.11,148041.4737,21
+25251,455658.0446,1215368.665,302381.8721,21
+25252,457377.8932,1216099.861,289487.2042,21
+25253,456239.4754,1216799.03,290876.416,21
+25254,457071.3677,1215842.395,144099.8589,21
+25255,456302.7083,1216431.391,145979.6514,21
+25256,457235.3785,1216120.486,300052.4291,21
+25257,456538.8952,1216032.156,286979.6826,21
+25258,457073.9598,1217436.531,288347.8784,21
+25259,456754.0736,1216562.592,143181.1546,21
+25260,457067.9013,1216691.841,145405.3132,21
+25261,429883.5162,1141702.038,266180.3184,21
+25262,429381.8464,1141270.394,251953.6759,21
+25263,429576.104,1141905.639,252667.7195,21
+25264,429485.2575,1142122.51,109403.8851,21
+25265,429746.2097,1144451.906,111520.5398,21
+25266,429689.8284,1144128.429,259703.3643,21
+25267,429560.4617,1144404.656,247022.4474,21
+25268,429507.1004,1146548.648,247223.7951,21
+25269,430001.3266,1145798.888,108094.6812,21
+25270,429547.6213,1147242.208,109887.9054,21
+25271,429921.8335,1148392.02,254824.0591,21
+25272,430120.7871,1147980.798,241783.8884,21
+25273,429563.4047,1151476.135,242863.9987,21
+25274,430318.4309,1149143.36,106881.7703,21
+25275,429911.8274,1152447.447,109402.2522,21
+25276,430240.7198,1151845.162,251312.2539,21
+25277,430250.2344,1153188.576,238460.9982,21
+25278,430474.2491,1154570.68,239645.7757,21
+25279,430029.1653,1154255.588,106780.1784,21
+25280,430813.9115,1156091.043,107670.1919,21
+25281,430613.9921,1156588.096,247429.5546,21
+25282,430912.9519,1157846.069,234688.3271,21
+25283,430643.297,1159158.521,236017.43,21
+25284,431082.2387,1159606.803,105442.9291,21
+25285,431154.3189,1161575.262,107250.7178,21
+25286,431352.4529,1161716.645,242924.0502,21
+25287,431298.6451,1164052.79,231645.0947,21
+25288,431665.3378,1164385.6,232435.5406,21
+25289,431665.6418,1164914.24,104389.7455,21
+25290,432163.8367,1165347.023,106168.9027,21
+25291,431633.3548,1166741.912,239574.394,21
+25292,432182.0833,1167752.677,228152.8212,21
+25293,432225.6727,1169151.572,228969.2464,21
+25294,431900.1958,1170654.844,103346.9849,21
+25295,432400.342,1171496.435,104797.1535,21
+25296,432198.4974,1172787.547,235965.0145,21
+25297,432115.2021,1174139.006,224474.7911,21
+25298,432572.0318,1175218.414,225998.5221,21
+25299,432155.4701,1176967.987,101712.4862,21
+25300,432515.1176,1177720.826,103426.7997,21
+25301,432411.4755,1179159.681,232373.9748,21
+25302,432340.9372,1180386.805,221468.2868,21
+25303,432810.7689,1181708.328,222714.7837,21
+25304,432396.4427,1183661.51,100266.9235,21
+25305,432518.2032,1183919.709,102275.2123,21
+25306,432571.2498,1185559.629,228002.6057,21
+25307,433200.5853,1187142.914,217354.7178,21
+25308,432647.9773,1188063.038,218381.7835,21
+25309,432388.95,1189822.516,98494.3648,21
+25310,433328.8533,1191192.946,99503.92691,21
+25311,432748.1945,1192126.085,224835.3066,21
+25312,432868.6861,1193532.763,213880.8082,21
+25313,433011.7699,1195175.934,215924.7711,21
+25314,433084.2692,1195967.69,96535.60097,21
+25315,433421.014,1198088.533,98380.01577,21
+25316,432771.4187,1198561.145,221343.8499,21
+25317,433395.2509,1200149.392,211147.9562,21
+25318,433266.813,1202293.809,212828.0625,21
+25319,433391.5009,1202336.267,95248.15683,21
+25320,433219.0626,1204982.503,96638.97858,21
+25321,438098.3163,1209590.806,224760.1002,21
+25322,437690.0692,1211688.689,214590.7614,21
+25323,437709.8875,1212842.823,216280.6524,21
+25324,437144.4937,1214377.671,100610.9304,21
+25325,437416.0063,1214972.458,101721.1081,21
+25326,437014.7103,1217151.857,222560.7409,21
+25327,436431.5151,1217644.041,211933.5914,21
+25328,436929.8465,1219213.56,214202.4956,21
+25329,436097.5367,1220409.932,99371.66315,21
+25330,436422.1553,1222043.386,100392.6012,21
+25331,435940.5935,1223298.816,220110.2869,21
+25332,435549.7447,1223863.534,209651.8687,21
+25333,435715.6852,1226040.08,212105.4138,21
+25334,435355.5292,1226602.572,97755.3102,21
+25335,434849.2112,1228637.158,99357.10232,21
+25336,435411.7282,1228982.627,217654.8648,21
+25337,434375.1737,1231128.725,207384.796,21
+25338,434740.6482,1231934.075,209701.9109,21
+25339,433901.2088,1233255.069,96611.4674,21
+25340,434400.6371,1234718.431,98299.97289,21
+25341,433743.398,1235828.077,214922.2003,21
+25342,433577.8562,1237483.931,205265.6123,21
+25343,433519.9084,1238417.572,207478.8594,21
+25344,433033.0782,1239611.504,95382.06033,21
+25345,433223.6009,1241287.824,96408.59213,21
+25346,432692.3947,1242155.247,212947.5544,21
+25347,432398.9102,1243821.67,202905.2709,21
+25348,432410.5308,1245153.683,205355.5687,21
+25349,432408.2738,1246183.554,94081.95239,21
+25350,431869.6705,1247673.605,95062.6377,21
+25351,431595.2449,1248950.59,210478.1741,21
+25352,431637.5037,1250064.278,200367.7113,21
+25353,431336.9829,1251072.982,202653.098,21
+25354,430930.7283,1252947.28,92435.34752,21
+25355,430884.5435,1253406.496,93312.50402,21
+25356,430839.6883,1255097.847,207332.2043,21
+25357,430508.0749,1256182.366,197283.3329,21
+25358,429867.593,1257473.169,199965.6308,21
+25359,430214.8578,1258382.975,90008.1697,21
+25360,429703.2778,1260448.69,91576.48145,21
+25361,429658.8851,1260511.279,203815.0306,21
+25362,428940.7321,1262540.454,194183.0336,21
+25363,429563.7594,1263521.604,197065.8808,21
+25364,428809.37,1264851.497,87952.82092,21
+25365,428785.2318,1265568.42,89353.79791,21
+25366,428315.499,1267232.394,200606.7975,21
+25367,428383.7875,1268506.341,190870.4975,21
+25368,427909.8036,1269671.519,193469.3188,21
+25369,427962.5957,1270614.398,86262.95326,21
+25370,427434.4793,1272232.232,86830.74999,21
+25371,427696.0891,1272831.721,197130.7122,21
+25372,427006.3179,1274683.838,187612.6708,21
+25373,426792.7311,1275525.987,190179.7529,21
+25374,427023.5626,1276858.02,83809.32364,21
+25375,426361.0238,1277991.936,84860.30623,21
+25376,426459.1914,1279385.089,193259.6402,21
+25377,425849.9792,1280624.577,184177.1944,21
+25378,425955.9212,1281320.783,186373.568,21
+25379,425745.9149,1283101.798,81903.19683,21
+25380,426697.8734,1284029.381,81192.64575,21
+25381,422054.2528,1280646.422,75309.02135,21
+25382,422097.4865,1281483.498,74802.65571,21
+25383,422037.201,1282030.363,74654.93247,21
+25384,421976.0138,1283607.189,74420.11313,21
+25385,421748.483,1283630.027,74295.00155,21
+25386,422406.4898,1285221.902,73970.89285,21
+25387,421819.5545,1285534.651,73855.38041,21
+25388,421939.6336,1287216.807,73688.80061,21
+25389,421985.0557,1287704.198,73268.0315,21
+25390,422390.2828,1288092.758,73107.55798,21
+25391,421699.6448,1289648.345,72856.76672,21
+25392,422286.934,1290159.449,72487.34663,21
+25393,422127.9312,1291540.4,72554.98279,21
+25394,421883.7304,1292129.465,72059.43589,21
+25395,422397.5275,1292919.605,71590.46117,21
+25396,421999.9858,1293980.475,71758.52705,21
+25397,422168.5832,1295255.602,71458.4754,21
+25398,422138.0643,1295323.762,70570.74641,21
+25399,422174.8191,1296997.927,70905.16255,21
+25400,422482.0104,1297536.629,70384.14939,21
+25401,422019.1118,1298512.241,70153.39729,21
+25402,422538.3099,1299187.142,69717.33544,21
+25403,422063.5265,1300242.746,69402.79585,21
+25404,422502.981,1301336.784,69088.77091,21
+25405,422144.3713,1302057.354,68912.12293,21
+25406,422493.9325,1303545.567,68586.02509,21
+25407,422555.2865,1303727.035,67750.20632,21
+25408,422039.4437,1304945.948,68039.88987,21
+25409,422939.2441,1305786.517,67283.60544,21
+25410,422063.8089,1306261.657,67146.32302,21
+25411,422578.5162,1307777.905,66924.8008,21
+25412,422441.3267,1308682.225,67004.59654,21
+25413,422771.7557,1308816.712,66706.13625,21
+25414,422128.6108,1310483.831,67017.32754,21
+25415,422860.8368,1310913.217,67072.74397,21
+25416,422415.6589,1311856.795,67150.25297,21
+25417,422336.2134,1313078.791,66862.42015,21
+25418,422696.1288,1313430.995,67085.16104,21
+25419,422789.8972,1314604.097,67095.98253,21
+25420,422151.1532,1315286.593,67423.26532,21
+25421,422953.8429,1316600.572,66926.78167,21
+25422,422337.8204,1316984.973,67563.22999,21
+25423,422778.1793,1317960.254,66980.90802,21
+25424,422616.7087,1319314.169,67971.05107,21
+25425,422448.3594,1319248.781,67012.37959,21
+25426,422789.5015,1321017.693,68034.13968,21
+25427,422694.0128,1321630.556,67319.63756,21
+25428,422812.7541,1322380.596,67769.6616,21
+25429,422212.5902,1323262.999,68091.34736,21
+25430,422907.5177,1323934.528,67852.92224,21
+25431,422645.0356,1325097.914,68280.28184,21
+25432,423002.5274,1326001.274,67974.22781,21
+25433,422179.2395,1326461.289,68465.56988,21
+25434,423067.1801,1328021.94,68372.35722,21
+25435,422593.1276,1328299.573,68477.6986,21
+25436,422990.9118,1329335.087,68555.90072,21
+25437,422297.6448,1330263.423,68865.55049,21
+25438,422805.6785,1331170.065,69116.71019,21
+25439,422778.9337,1332222.732,68770.52964,21
+25440,422666.9521,1332150.354,69460.19196,21
+25441,423344.5451,1334966.79,68859.37129,21
+25442,423684.9312,1334952.312,69438.30875,21
+25443,424344.551,1335960.567,68993.93033,21
+25444,424727.5326,1336352.273,69494.8169,21
+25445,425175.5691,1336267.574,69024.51228,21
+25446,426213.0983,1337779.384,69016.56104,21
+25447,426166.5698,1337802.289,69301.23152,21
+25448,426710.2304,1338187.754,69349.31798,21
+25449,427391.8584,1339215.224,69170.64861,21
+25450,428072.0583,1338792.905,69253.4382,21
+25451,428354.8559,1340206.725,69221.41705,21
+25452,428676.585,1339947.361,69313.31083,21
+25453,429775.9024,1340823.262,69463.99626,21
+25454,429641.5868,1340868.874,69265.06223,21
+25455,430564.4996,1341232.968,69273.49653,21
+25456,430958.6979,1342212.044,69529.44494,21
+25457,431263.6242,1342072.523,69651.81706,21
+25458,432275.035,1342870.58,69348.56992,21
+25459,431965.2402,1342965.017,69332.03682,21
+25460,433069.364,1344017.684,69776.9648,21
+25461,433516.7443,1343436.548,69731.99463,21
+25462,433767.4897,1344668.098,69547.87764,21
+25463,434347.9436,1344459.478,69941.09089,21
+25464,434803.7902,1345363.532,69586.01412,21
+25465,435636.0375,1345315.16,69798.45428,21
+25466,435358.4891,1345891.653,70181.48822,21
+25467,436332.0667,1346414.204,69656.05844,21
+25468,436432.9291,1346754.794,70566.76374,21
+25469,437256.1113,1346943.87,69734.64504,21
+25470,437447.5427,1347526.164,70496.08658,21
+25471,437883.7296,1347350.203,70205.96533,21
+25472,438680.1834,1348225.537,70310.95124,21
+25473,438970.1417,1348877.113,70607.66176,21
+25474,439483.9666,1348710.301,70056.17073,21
+25475,440295.0665,1348917.246,70854.07502,21
+25476,440714.8664,1350008.494,70551.81529,21
+25477,441137.1237,1349871.671,70729.92215,21
+25478,441961.6555,1350134.435,70611.67121,21
+25479,442514.3765,1350744.093,70785.88531,21
+25480,442746.169,1350816.106,70941.40396,21
+25481,443505.2013,1351845.87,70987.31078,21
+25482,444470.8042,1351301.929,70665.75405,21
+25483,444600.7028,1352619.461,71416.62702,21
+25484,445091.517,1352016.803,71017.06102,21
+25485,446070.8451,1352733.173,71128.01642,21
+25486,446522.363,1353157.958,71442.09481,21
+25487,447080.0073,1353507.938,71183.27261,21
+25488,447433.747,1353682.295,71452.33649,21
+25489,448323.7516,1354402.694,71649.39901,21
+25490,448802.9399,1354797.169,71551.07286,21
+25491,449395.6559,1354263.627,71694.06787,21
+25492,449848.2647,1355553.969,71693.18744,21
+25493,450782.6227,1355504.824,72089.98979,21
+25494,450809.4599,1355491.037,71637.40762,21
+25495,451730.2656,1356529.528,72149.76925,21
+25496,452538.6998,1356375.572,72211.82177,21
+25497,452421.5417,1356835.161,72115.54007,21
+25498,453764.1752,1357095.941,72141.71452,21
+25499,453780.2126,1357702.501,72456.54944,21
+25500,454927.1652,1357647.816,72673.05359,21
+25501,512603.4042,1426371.452,151715.7943,21
+25502,515774.9723,1430677.309,156499.0444,21
+25503,517682.1785,1431523.954,157936.5998,21
+25504,518692.4725,1431344.399,160570.331,21
+25505,519718.5157,1490133.743,161684.8452,21
+25506,519989.9325,1535928.356,162991.3599,21
+25507,520553.2495,1494515.308,164617.8368,21
+25508,521463.514,1512250.605,165023.4381,21
+25509,521820.7092,1513964.33,167337.1167,21
+25510,523686.6015,1514954.466,168079.1997,21
+25511,529912.7954,1515533.232,168940.9546,21
+25512,527026.6211,1517742.594,170963.6647,21
+25513,528601.7201,1518029.604,171637.8015,21
+25514,529222.1483,1519353.247,172601.9357,21
+25515,529699.9291,1519848.735,174511.4036,21
+25516,530057.4867,1520658.779,174975.8872,21
+25517,531076.3228,1522337.892,176627.1321,21
+25518,530846.9844,1521839.384,177111.4263,21
+25519,531771.4948,1523470.049,179263.8623,21
+25520,531742.1158,1525342.547,179755.5411,21
+25521,532483.8787,1524734.594,181105.4348,21
+25522,532811.2531,1525598.212,182143.4232,21
+25523,533157.6927,1526418.792,183166.3055,21
+25524,533536.2972,1526776.342,184808.8628,21
+25525,533905.5093,1528054.245,185959.6879,21
+25526,533812.2864,1527149.055,187130.7315,21
+25527,534795.3778,1528773.335,188528.0687,21
+25528,534546.2461,1529078.879,189802.9482,21
+25529,534961.2039,1529023.642,191312.2033,21
+25530,539077.8873,1528589.718,192966.5106,21
+25531,548775.7747,1531330.589,194702.8502,21
+25532,543534.3912,1529696.526,195184.4924,21
+25533,546377.4655,1530890.289,196639.4481,21
+25534,548107.5118,1531954.916,196480.957,21
+25535,548487.8776,1530155.265,198213.8796,21
+25536,549609.2884,1532105.228,199019.9099,21
+25537,550105.8394,1531762.594,199410.2535,21
+25538,550922.4108,1531416.268,200832.8557,21
+25539,552516.3754,1532934.09,201161.1363,21
+25540,552186.9694,1532598.149,201911.9461,21
+25541,553253.0368,1532315.994,203215.5833,21
+25542,553411.6877,1532893.415,203480.2921,21
+25543,555546.4416,1533495.904,203927.8902,21
+25544,555134.0821,1533426.11,205587.235,21
+25545,556569.4984,1532639.642,205336.5179,21
+25546,556325.4708,1533373.438,206327.8837,21
+25547,558042.3151,1534967.498,207037.2029,21
+25548,557039.6637,1533513.078,213688.3432,21
+25549,559066.624,1533806.084,214893.5053,21
+25550,558813.7331,1533736.006,220432.9092,21
+25551,559624.3895,1535043.316,220650.0419,21
+25552,560260.8284,1533015.702,222311.3761,21
+25553,560758.8321,1534521.199,222691.0674,21
+25554,560062.0441,1535714.532,224452.8939,21
+25555,562904.973,1532693.326,224716.0028,21
+25556,561812.3392,1534874.24,225605.5543,21
+25557,562919.8619,1534992.781,227333.0591,21
+25558,562432.6841,1534149.383,227288.0893,21
+25559,563903.8496,1534314.93,228886.6983,21
+25560,563547.3252,1536411.196,229181.5017,21
+25561,624455.2195,1597718.111,262584.0675,21
+25562,629958.4007,1606182.077,264959.4287,21
+25563,631700.293,1606050.346,267667.7707,21
+25564,633226.6013,1610147.319,303916.1227,21
+25565,635442.0467,1610933.613,339641.5335,21
+25566,636383.2782,1613606.24,313440.8546,21
+25567,637213.7904,1615143.886,324831.9834,21
+25568,639969.5781,1617351.261,331134.2545,21
+25569,638991.5017,1618283.229,330307.3388,21
+25570,642969.4373,1621633.626,339959.994,21
+25571,642078.4306,1621864.735,341025.6504,21
+25572,643771.1082,1624661.431,345807.2935,21
+25573,645128.1291,1626673.46,344852.9823,21
+25574,645735.381,1626139.275,351988.2643,21
+25575,647988.6862,1629687.124,353275.1114,21
+25576,647540.2478,1631648.398,355604.1675,21
+25577,649327.6842,1630985.764,359245.2175,21
+25578,650162.4258,1634508.635,360603.3743,21
+25579,651891.061,1635953.53,364948.5815,21
+25580,651332.8779,1636303.83,365645.4282,21
+25581,653860.4207,1638856.698,369823.8645,21
+25582,653977.2258,1640479.161,371050.8363,21
+25583,655248.1677,1641517.43,374344.1194,21
+25584,656357.8728,1642412.386,376993.8229,21
+25585,656712.9726,1645242.44,379491.0352,21
+25586,658131.3046,1646340.644,381233.7212,21
+25587,658859.8015,1647556.209,384950.4497,21
+25588,659198.311,1648010.897,386062.4399,21
+25589,659949.1304,1650587.562,388406.6936,21
+25590,661893.552,1651764.045,392824.1053,21
+25591,661774.9036,1653067.515,392651.6104,21
+25592,662614.2821,1653035.572,394892.3,21
+25593,664172.225,1656220.999,399154.7856,21
+25594,663278.5132,1657259.483,400045.8289,21
+25595,666274.8785,1657579.803,401657.9446,21
+25596,665928.7433,1660340.158,404779.6592,21
+25597,666535.9969,1660665.715,407157.1996,21
+25598,667784.7415,1662315.651,407160.1247,21
+25599,668191.0506,1663093.425,411135.3719,21
+25600,669349.0019,1664678.36,412856.4986,21
+25601,669013.6731,1666192.755,414552.0216,21
+25602,670883.0364,1666419.32,417423.7979,21
+25603,670536.8855,1668871.683,417492.4859,21
+25604,672608.4763,1670863.284,421899.0035,21
+25605,671913.07,1669744.273,421722.785,21
+25606,673567.0832,1674112.867,426185.7949,21
+25607,673624.4793,1672978.896,425668.0823,21
+25608,674824.9611,1674734.346,428211.0547,21
+25609,674949.3377,1676378.409,430488.6428,21
+25610,676793.2692,1677561.503,432424.3118,21
+25611,675788.1401,1678373.365,432944.2432,21
+25612,676999.9684,1678618.257,436075.5961,21
+25613,678078.8454,1682651.048,438168.5093,21
+25614,678745.3238,1680169.403,438280.9082,21
+25615,678873.2951,1684682.265,440481.5776,21
+25616,680199.7166,1683471.477,442734.1695,21
+25617,679449.9855,1684064.348,444606.9081,21
+25618,681685.0293,1686672.593,446605.5941,21
+25619,681114.0902,1686483.258,446478.3951,21
+25620,682005.0258,1685747.268,450434.2522,21
+25621,682761.3415,1690064.983,448496.532,21
+25622,684862.1362,1692213.516,454873.4489,21
+25623,686303.5071,1696182.739,454568.0931,21
+25624,686792.6714,1696028.072,455738.1725,21
+25625,687751.3622,1700454.921,459564.4656,21
+25626,689098.7345,1701236.217,459979.2045,21
+25627,690670.2649,1703636.551,461595.336,21
+25628,689896.0051,1705436.152,463398.4585,21
+25629,691889.5759,1707546.745,466342.2122,21
+25630,693007.9669,1711184.568,466791.7109,21
+25631,693613.1644,1711596.669,469537.6475,21
+25632,695550.5109,1712975.438,469544.6216,21
+25633,694940.4545,1716832.254,471244.3023,21
+25634,696464.5021,1719094.977,474736.5834,21
+25635,697794.0087,1719509.591,474181.7145,21
+25636,698821.822,1723927.142,477841.9289,21
+25637,698956.5702,1723092.536,477688.9203,21
+25638,700984.0834,1728505.169,480475.285,21
+25639,700567.8686,1727493.262,481176.3554,21
+25640,702352.3278,1731199.862,484074.3213,21
+25641,703272.9694,1732998.927,483330.0832,21
+25642,704189.1075,1735397.576,487183.089,21
+25643,704495.3634,1736628.126,489090.5527,21
+25644,706549.3315,1739689.611,487137.5838,21
+25645,706754.7266,1740786.967,492563.2397,21
+25646,707526.5298,1743734,491107.8467,21
+25647,709773.17,1745386.596,494246.6386,21
+25648,708486.265,1746209.95,495268.2869,21
+25649,710915.4519,1749681.27,496577.9774,21
+25650,711727.4356,1752028.385,498896.1338,21
+25651,712096.1881,1753236.827,499280.4467,21
+25652,712758.8789,1754745.715,500543.0579,21
+25653,714660.9507,1758252.47,502418.2054,21
+25654,713788.62,1759448.285,504089.1518,21
+25655,716597.1809,1762259.139,505431.8774,21
+25656,716894.8866,1762464.894,506081.8875,21
+25657,716951.1709,1765770.274,507647.3418,21
+25658,718186.8706,1768582.672,510871.2375,21
+25659,720137.3161,1769286.183,509281.6093,21
+25660,719344.0599,1771677.967,512556.9021,21
+25661,721522.2633,1773349.723,512630.8939,21
+25662,721910.0201,1775392.617,513748.9257,21
+25663,722373.7354,1778748.312,516812.3541,21
+25664,724180.8897,1779306.811,516821.807,21
+25665,723851.9305,1781568.447,517918.245,21
+25666,725129.0847,1782912.659,519325.7923,21
+25667,726392.5489,1786637.464,522431.8628,21
+25668,727404.2951,1787033.741,520533.3953,21
+25669,727711.5945,1790188.513,524522.3757,21
+25670,728259.9839,1792595.19,523607.3614,21
+25671,729995.7528,1791901.13,526684.6415,21
+25672,730211.4275,1796640.254,526505.1139,21
+25673,731588.64,1797310.137,529362.1484,21
+25674,731427.511,1801640.064,528109.4727,21
+25675,733407.9425,1802711.14,531742.5109,21
+25676,733319.1645,1805278.78,532502.8677,21
+25677,734577.559,1807736.158,530801.4763,21
+25678,734752.9387,1808932.037,536515.4648,21
+25679,736477.8332,1810470.829,533954.1455,21
+25680,736103.2709,1814089.203,538448.001,21
+25681,746978.0205,1818486.234,551462.3668,21
+25682,745820.3455,1820437.037,557347.9782,21
+25683,747714.1498,1815607.782,557293.1136,21
+25684,749384.0513,1813999.906,561656.6632,21
+25685,748071.8294,1812654.281,557977.6525,21
+25686,750710.256,1810157.353,561830.0567,21
+25687,749473.7073,1807402.265,562391.2319,21
+25688,751440.5345,1805489.074,564372.39,21
+25689,751534.6725,1804008.59,562921.7794,21
+25690,752176.2306,1800529.774,566753.8464,21
+25691,752432.5961,1798857.368,566992.6326,21
+25692,753408.6387,1795064.998,566368.3773,21
+25693,753666.2337,1794943.017,568339.7593,21
+25694,753864.5628,1791454.632,570212.4547,21
+25695,755545.9954,1788060.172,569920.7602,21
+25696,754738.3232,1787156.905,569950.7882,21
+25697,755861.3856,1783741.461,572935.7624,21
+25698,756812.119,1782570.372,571243.468,21
+25699,755889.9487,1778355.203,575044.834,21
+25700,758176.8476,1777732.855,574589.4292,21
+25701,756955.0959,1773185.878,574104.5959,21
+25702,758670.1855,1773943.622,577211.7338,21
+25703,758545.2374,1767803.334,575007.8705,21
+25704,759433.0842,1767807.319,579124.7888,21
+25705,759456.566,1764548.982,576823.2059,21
+25706,760707.7479,1761160.205,579513.5898,21
+25707,759154.6124,1760928.942,579158.3187,21
+25708,762113.009,1756123.536,579683.0639,21
+25709,761230.9549,1755921.451,581328.9674,21
+25710,761997.9488,1750640.806,583257.9565,21
+25711,762252.1442,1748355.989,583403.1348,21
+25712,762408.1116,1746099.837,583172.6973,21
+25713,763988.6319,1741862.689,587117.3657,21
+25714,762532.7661,1740747.57,584191.8432,21
+25715,764537.7257,1737750.989,586657.9595,21
+25716,764595.0718,1735304.004,586322.3301,21
+25717,764852.5727,1732779.456,586800.0408,21
+25718,765495.6395,1730038.694,588427.1008,21
+25719,764731.3318,1727151.881,588799.6103,21
+25720,766772.035,1725400.158,588311.7154,21
+25721,765952.1309,1722226.617,591626.0427,21
+25722,767646.2749,1720500.906,587661.0941,21
+25723,766244.3103,1716078.567,592239.8708,21
+25724,768129.8404,1715470.979,591711.6579,21
+25725,768168.7888,1712190.912,591837.6398,21
+25726,768794.6216,1708770.403,592331.9772,21
+25727,768415.8289,1706372.785,593479.8485,21
+25728,769421.9515,1704791.722,593804.039,21
+25729,769815.1446,1701296.428,594182.2137,21
+25730,769458.517,1698790.047,593803.1858,21
+25731,771086.1781,1697044.295,595932.8587,21
+25732,770077.0012,1693202.634,594352.1811,21
+25733,771407.4789,1691741.468,595663.8361,21
+25734,771245.0865,1687850.121,598002.7974,21
+25735,772103.3631,1686042.707,595264.7739,21
+25736,771949.5573,1682836.972,596587.4094,21
+25737,772534.3155,1680885.06,599689.1601,21
+25738,772939.2197,1678227.654,595451.3234,21
+25739,772533.7791,1674997.312,600340.962,21
+25740,774002.0235,1672205.979,599540.6981,21
+25741,774342.0034,1671683.688,600144.3004,21
+25742,774839.6907,1673062.105,599425.547,21
+25743,775724.8509,1672738.967,604624.8829,21
+25744,776320.539,1670945.099,603123.0961,21
+25745,776673.6379,1671557.855,602874.2219,21
+25746,776204.8499,1670676.546,603912.813,21
+25747,777735.4003,1669788.501,606007.006,21
+25748,777232.9179,1669570.18,603293.4436,21
+25749,778470.0914,1669075.179,607796.8804,21
+25750,777330.6737,1669475.844,603840.0778,21
+25751,778755.8455,1667243.429,607918.0646,21
+25752,778689.8678,1666717.628,606325.9987,21
+25753,778966.4152,1667576.332,607302.2874,21
+25754,780345.3923,1666552,608374.1958,21
+25755,779292.7536,1666195.973,607523.7985,21
+25756,780095.7751,1664156.682,608136.1542,21
+25757,780959.8999,1665128.552,609715.9985,21
+25758,780678.564,1665087.665,608689.2173,21
+25759,780803.0313,1663533.938,610852.0856,21
+25760,781816.1232,1662759.041,609223.071,21
+25761,781553.1369,1662431.103,611536.7118,21
+25762,782336.5859,1662779.722,611787.126,21
+25763,782217.5912,1660937.629,610087.7152,21
+25764,783122.7341,1662436.39,612494.7409,21
+25765,782692.833,1658491.414,613330.0615,21
+25766,782991.5673,1661216.483,612386.5313,21
+25767,784842.8137,1658958.451,612058.8425,21
+25768,782541.582,1659931.009,616129.7301,21
+25769,785347.3706,1657355.771,611944.0862,21
+25770,783720.5047,1657394.633,614458.4426,21
+25771,785502.235,1658090.621,613868.2237,21
+25772,785117.8305,1656919.163,613511.9383,21
+25773,785775.5395,1655798.081,614317.8201,21
+25774,785360.5062,1655769.88,614223.7574,21
+25775,786179.8299,1654629.171,614859.3275,21
+25776,786474.2624,1654564.137,614454.0082,21
+25777,786704.347,1654960.549,616676.3215,21
+25778,786806.0462,1651336.275,614994.2804,21
+25779,787810.0816,1654686.149,617669.4765,21
+25780,786889.9369,1650797.769,614846.4302,21
+25781,788249.0141,1652844.917,618147.2165,21
+25782,788255.2617,1650145.225,616502.8387,21
+25783,787563.3149,1651406.519,618132.1736,21
+25784,789535.319,1649944.165,617264.5369,21
+25785,788947.8606,1648566.222,617489.8573,21
+25786,789639.055,1649778.596,618978.5973,21
+25787,789190.2064,1647335.872,619719.0205,21
+25788,790044.739,1649251.556,618662.679,21
+25789,790439.8632,1646514.847,619460.7444,21
+25790,790461.9851,1646448.282,619336.9727,21
+25791,790447.1377,1646449.338,621277.6271,21
+25792,790854.1439,1645779.958,618882.2207,21
+25793,790719.9918,1644321.722,621479.2742,21
+25794,792182.0438,1644883.588,622418.8722,21
+25795,791145.0348,1643157.525,619685.3388,21
+25796,792831.4706,1644063.705,622266.2881,21
+25797,791736.0817,1640784.048,621931.1802,21
+25798,792661.8003,1644526.127,621468.4667,21
+25799,793390.2302,1639543.678,622336.7816,21
+25800,792074.3132,1640961.029,623831.7491,15.6
+25801,0,0,0,15.6
+25802,0,0,0,15.6
+25803,0,250.8880554,0,15.6
+25804,0,0,0,15.6
+25805,0,0,0,15.6
+25806,0,0,1683079.501,15.6
+25807,0,0,0,15.6
+25808,339631.7787,0,0,15.6
+25809,0,0,0,15.6
+25810,0,0,0,15.6
+25811,0,0,0,15.6
+25812,0,0,0,15.6
+25813,0,0,0,15.6
+25814,0,65.02724426,0,15.6
+25815,0,0,0,15.6
+25816,0,0,0,15.6
+25817,0,0,0,15.6
+25818,0,0,0,15.6
+25819,0,84.31474472,0,15.6
+25820,0,0,0,15.6
+25821,0,0,0,15.6
+25822,0,0,0,15.6
+25823,0,0,0,15.6
+25824,0,0,0,15.6
+25825,0,0,0,15.6
+25826,0,0,0,15.6
+25827,0,0,0,15.6
+25828,0,0,0,15.6
+25829,0,0,0,15.6
+25830,0,0,0,15.6
+25831,0,0,0,15.6
+25832,0,0,0,15.6
+25833,0,0,0,15.6
+25834,0,0,0,15.6
+25835,0,0,0,15.6
+25836,0,0,0,15.6
+25837,0,0,0,15.6
+25838,0,0,0,15.6
+25839,0,0,0,15.6
+25840,0,0,0,15.6
+25841,0,0,1595574.606,15.6
+25842,0,0,0,15.6
+25843,0,0,0,15.6
+25844,339633.137,0,0,15.6
+25845,0,0,0,15.6
+25846,0,0,0,15.6
+25847,0,0,0,15.6
+25848,0,0,0,15.6
+25849,0,0,0,15.6
+25850,0,0,0,15.6
+25851,0,0,0,15.6
+25852,0,0,0,15.6
+25853,0,0,0,15.6
+25854,0,0,0,15.6
+25855,0,0,0,15.6
+25856,0,0,0,15.6
+25857,0,0,0,15.6
+25858,0,0,0,15.6
+25859,0,0,0,15.6
+25860,0,0,0,15.6
+25861,0,0,0,15.6
+25862,0,257.0436602,0,15.6
+25863,0,0,0,15.6
+25864,0,0,0,15.6
+25865,0,0,0,15.6
+25866,0,0,0,15.6
+25867,0,0,0,15.6
+25868,0,0,0,15.6
+25869,0,0,0,15.6
+25870,0,65.58893229,0,15.6
+25871,0,0,0,15.6
+25872,0,0,0,15.6
+25873,0,0,0,15.6
+25874,0,0,0,15.6
+25875,0,0,0,15.6
+25876,0,0,1515755.047,15.6
+25877,0,0,0,15.6
+25878,0,0,0,15.6
+25879,0,0,0,15.6
+25880,339633.9045,0,0,15.6
+25881,0,0,0,15.6
+25882,0,0,0,15.6
+25883,0,0,0,15.6
+25884,0,71.25728931,0,15.6
+25885,0,0,0,15.6
+25886,0,0,0,15.6
+25887,0,0,0,15.6
+25888,0,0,0,15.6
+25889,0,62.08423898,0,15.6
+25890,0,36395.46384,0,15.6
+25891,0,2515.556563,0,15.6
+25892,0,4185.191356,0,15.6
+25893,0,13016.03624,0,15.6
+25894,0,11055.33362,0,15.6
+25895,0,10030.42243,0,15.6
+25896,0,10563.15147,0,15.6
+25897,0,10575.52899,0,15.6
+25898,0,10678.98981,0,15.6
+25899,0,10700.22309,0,15.6
+25900,0,10766.31517,0,15.6
+25901,0,10817.58863,0,15.6
+25902,0,10844.48352,0,15.6
+25903,0,11051.75126,0,15.6
+25904,0,10902.49451,0,15.6
+25905,0,11027.83505,0,15.6
+25906,0,11035.98929,0,15.6
+25907,0,11081.68927,0,15.6
+25908,0,11359.21299,0,15.6
+25909,0,11201.81499,0,15.6
+25910,0,11215.57589,0,15.6
+25911,0,11261.74662,1442917.825,15.6
+25912,0,11301.83992,0,15.6
+25913,0,11334.80179,0,15.6
+25914,0,11374.29162,0,15.6
+25915,0,11430.97852,0,15.6
+25916,339632.2701,11447.13909,0,15.6
+25917,0,11508.49462,0,15.6
+25918,0,11540.10747,0,15.6
+25919,0,11674.11482,0,15.6
+25920,0,0,0,15.6
+25921,0,0,0,15.6
+25922,429174.4224,0,0,15.6
+25923,0,0,0,15.6
+25924,0,240.9263905,0,15.6
+25925,0,0,0,15.6
+25926,0,0,0,15.6
+25927,0,50484.92904,0,15.6
+25928,0,235.5867753,0,15.6
+25929,0,4761.689218,0,15.6
+25930,0,18444.82883,0,15.6
+25931,0,12829.20605,0,15.6
+25932,0,12962.60071,0,15.6
+25933,0,13437.6968,0,15.6
+25934,0,13508.34714,0,15.6
+25935,0,13752.91426,0,15.6
+25936,0,13800.84538,0,15.6
+25937,0,13829.32815,0,15.6
+25938,0,13990.18173,0,15.6
+25939,0,14074.75235,0,15.6
+25940,0,14467.70643,0,15.6
+25941,0,14295.04857,0,15.6
+25942,0,14385.23014,0,15.6
+25943,0,14536.33912,0,15.6
+25944,0,14626.91377,0,15.6
+25945,0,14759.83652,0,15.6
+25946,0,14806.76819,1376455.044,15.6
+25947,0,14986.4301,0,15.6
+25948,0,15020.39275,0,15.6
+25949,0,15186.64369,0,15.6
+25950,0,15305.96753,0,15.6
+25951,0,15438.15794,0,15.6
+25952,0,15505.15323,0,15.6
+25953,339629.3548,15541.55343,0,15.6
+25954,0,15705.06269,0,15.6
+25955,0,15828.12436,0,15.6
+25956,0,16111.34046,0,15.6
+25957,0,0,0,15.6
+25958,0,0,0,15.6
+25959,0,0,0,15.6
+25960,49554.41157,0,0,15.6
+25961,729.7016285,64363.42871,0,15.6
+25962,2299.546179,0,0,15.6
+25963,10191.40113,6394.191503,0,15.6
+25964,13362.38844,25044.98187,0,15.6
+25965,9128.369773,15346.14732,0,15.6
+25966,10308.74244,16853.82514,0,15.6
+25967,10418.67995,17146.31307,0,15.6
+25968,10437.43019,17200.22387,0,15.6
+25969,10504.15823,17233.50796,0,15.6
+25970,10532.42728,17351.48911,0,15.6
+25971,10587.33991,17491.44296,0,15.6
+25972,10643.70558,17772.79975,0,15.6
+25973,10672.05342,17669.43382,0,15.6
+25974,10738.25818,17758.91155,0,15.6
+25975,10781.81948,17853.90648,0,15.6
+25976,10794.50391,17942.07563,0,15.6
+25977,10902.8422,18066.71788,0,15.6
+25978,10920.9441,18148.42853,0,15.6
+25979,10958.79573,18224.90977,0,15.6
+25980,11030.9311,18366.04841,0,15.6
+25981,10954.9285,18410.95355,0,15.6
+25982,11043.33009,18463.53581,1315714.767,15.6
+25983,11120.2969,18619.65916,0,15.6
+25984,11173.95885,18611.81881,0,15.6
+25985,11217.83103,18643.18183,0,15.6
+25986,11311.3646,18698.0596,0,15.6
+25987,11347.13978,18753.05836,0,15.6
+25988,11425.72413,19071.56995,0,15.6
+25989,11499.35617,18889.30414,0,15.6
+25990,339627.1789,18931.29452,0,15.6
+25991,0,0,0,15.6
+25992,0,0,0,15.6
+25993,0,0,0,15.6
+25994,0,0,0,15.6
+25995,0,79220.96093,0,15.6
+25996,0,0,0,15.6
+25997,57130.15478,7615.949628,0,15.6
+25998,0,29332.35341,0,15.6
+25999,2125.384229,17752.2342,0,15.6
+26000,16211.75484,19523.63749,0,15.6
+26001,13579.32302,19598.45853,0,15.6
+26002,11577.58733,19647.27732,0,15.6
+26003,12469.05023,19723.90939,0,15.6
+26004,12491.3563,19983.25162,0,15.6
+26005,12605.36538,19784.90706,0,15.6
+26006,12615.71706,19845.70478,0,15.6
+26007,12686.68628,19888.97738,0,15.6
+26008,12751.39345,19949.58327,0,15.6
+26009,12821.29039,20002.96403,0,15.6
+26010,12843.37719,19992.75328,0,15.6
+26011,12950.05436,20080.81969,0,15.6
+26012,13007.34674,20128.78884,0,15.6
+26013,13032.07493,20126.63897,0,15.6
+26014,13098.45788,20237.1036,0,15.6
+26015,13176.11613,20302.95477,0,15.6
+26016,13219.01916,20317.52776,0,15.6
+26017,13292.40812,20331.35148,0,15.6
+26018,13327.31932,20360.37729,1260230.815,15.6
+26019,13422.96724,20377.45036,0,15.6
+26020,13442.97397,20712.26804,0,15.6
+26021,13508.00032,20491.7538,0,15.6
+26022,13594.44768,20513.91206,0,15.6
+26023,13621.98712,20566.62371,0,15.6
+26024,13689.13346,20593.7585,0,15.6
+26025,13748.65351,0,0,15.6
+26026,13803.22646,0,0,15.6
+26027,339625.6283,0,0,15.6
+26028,0,75957.57446,0,15.6
+26029,0,2.952528548,0,15.6
+26030,0,327268.8357,0,15.6
+26031,0,41748.80748,0,15.6
+26032,65316.12398,71139.75748,0,15.6
+26033,0,136719.3547,0,15.6
+26034,1955.457725,118364.333,0,15.6
+26035,21052.81949,112468.1814,0,15.6
+26036,14576.03397,115720.9093,0,15.6
+26037,13904.91625,116146.5765,0,15.6
+26038,14516.925,116271.0219,0,15.6
+26039,14626.06435,116785.7116,0,15.6
+26040,14648.74978,117300.5497,0,15.6
+26041,14701.34971,116740.7921,0,15.6
+26042,14669.75084,116172.5611,0,15.6
+26043,14764.31042,115969.4599,0,15.6
+26044,14731.08954,115567.2888,0,15.6
+26045,14750.29914,115072.7061,0,15.6
+26046,14778.2859,115147.6494,0,15.6
+26047,14813.00197,114090.3304,0,15.6
+26048,14813.1862,114161.3897,0,15.6
+26049,14860.1827,113989.3971,0,15.6
+26050,14861.82637,113141.0097,0,15.6
+26051,14874.01079,113510.2832,0,15.6
+26052,14908.90124,112500.9631,0,15.6
+26053,14908.70505,112511.611,0,15.6
+26054,14969.60511,111868.0832,1209552.109,15.6
+26055,14957.37073,111551.7973,0,15.6
+26056,14955.72563,112153.0447,0,15.6
+26057,15031.81061,110565.2388,0,15.6
+26058,15004.28611,90344.64329,0,15.6
+26059,15038.74284,90451.10672,0,15.6
+26060,15159.92379,7.460003614,0,15.6
+26061,15189.18241,74206.70352,0,15.6
+26062,0,109.4580583,0,15.6
+26063,0,11907.74372,0,15.6
+26064,339618.5623,27756.39182,0,15.6
+26065,0,18379.11179,0,15.6
+26066,0,19910.3189,0,15.6
+26067,70199.55552,19807.35611,0,15.6
+26068,0,19906.75883,0,15.6
+26069,2865.723918,19688.93133,0,15.6
+26070,24525.10534,19727.46156,0,15.6
+26071,14157.81424,19584.25617,0,15.6
+26072,15304.80219,19584.72916,0,15.6
+26073,15503.62099,19500.31844,0,15.6
+26074,15516.92746,19575.95029,0,15.6
+26075,15564.03451,19396.5857,0,15.6
+26076,15516.92233,19330.16892,0,15.6
+26077,15557.41137,19324.19736,0,15.6
+26078,15584.54517,19238.51974,0,15.6
+26079,15576.34651,19163.91862,0,15.6
+26080,15591.23087,19272.54516,0,15.6
+26081,15657.11944,19034.91099,0,15.6
+26082,15596.91006,19039.26279,0,15.6
+26083,15684.22218,18972.52381,0,15.6
+26084,15623.3903,18939.7473,0,15.6
+26085,15704.68266,18870.0075,0,15.6
+26086,15669.04437,18889.90122,0,15.6
+26087,15704.67741,18762.85441,0,15.6
+26088,15716.27553,18684.82379,0,15.6
+26089,15731.36511,18711.9292,0,15.6
+26090,15716.2702,18562.57518,1163198.492,15.6
+26091,15776.89108,0,0,15.6
+26092,15763.39726,103.546225,0,15.6
+26093,15816.13822,0,0,15.6
+26094,15756.41727,0,0,15.6
+26095,15823.51648,77145.55481,0,15.6
+26096,15816.12996,4.223162644,0,15.6
+26097,0,4772.574737,0,15.6
+26098,0,29047.37224,0,15.6
+26099,0,16216.80123,0,15.6
+26100,0,18069.40356,0,15.6
+26101,408416.6646,18208.66254,0,15.6
+26102,0,18106.34153,0,15.6
+26103,3947.808595,18325.37529,0,15.6
+26104,25141.21268,18129.61431,0,15.6
+26105,14744.72265,18170.4429,0,15.6
+26106,16056.54801,18201.86839,0,15.6
+26107,16319.28047,18147.19026,0,15.6
+26108,16339.435,18137.79544,0,15.6
+26109,16365.39888,18178.6818,0,15.6
+26110,16442.70409,18173.95183,0,15.6
+26111,16468.9278,18149.95638,0,15.6
+26112,16494.37472,18222.75937,0,15.6
+26113,16571.68388,18163.69162,0,15.6
+26114,16532.88488,18171.85786,0,15.6
+26115,16661.43046,18114.62729,0,15.6
+26116,16687.16149,18148.66607,0,15.6
+26117,16674.0242,18212.43125,0,15.6
+26118,16801.68689,18174.71168,0,15.6
+26119,16750.8859,18111.72245,0,15.6
+26120,16859.91032,18114.65069,0,15.6
+26121,16883.74308,18171.89082,0,15.6
+26122,16916.07182,18092.77261,0,15.6
+26123,16961.19293,18148.69895,0,15.6
+26124,17005.10817,18115.98324,0,15.6
+26125,17029.93658,0,0,15.6
+26126,17118.2034,58.01005616,1120861.458,15.6
+26127,17105.8479,0,0,15.6
+26128,17193.88027,0,0,15.6
+26129,17206.18786,76086.85218,0,15.6
+26130,17263.5193,0,0,15.6
+26131,0,4663.571912,0,15.6
+26132,0,28989.81104,0,15.6
+26133,0,16082.16411,0,15.6
+26134,0,18196.27071,0,15.6
+26135,72931.50241,18199.16944,0,15.6
+26136,470.3907906,18196.28168,0,15.6
+26137,8915.605539,18199.17993,0,15.6
+26138,364788.1488,18218.17944,0,15.6
+26139,16407.83593,18196.29675,0,15.6
+26140,17666.88692,18199.19472,0,15.6
+26141,17759.23912,18162.2719,0,15.6
+26142,17794.95657,18282.61607,0,15.6
+26143,17802.51629,18185.30079,0,15.6
+26144,17905.46999,18173.24071,0,15.6
+26145,17863.00026,18207.19782,0,15.6
+26146,17954.54594,18162.2953,0,15.6
+26147,17985.63627,18265.90231,0,15.6
+26148,18021.43739,18150.06763,0,15.6
+26149,18076.8254,18196.34381,0,15.6
+26150,18119.03338,18147.24318,0,15.6
+26151,18124.88246,18128.19375,0,15.6
+26152,18184.66068,18204.30662,0,15.6
+26153,18253.13163,18105.12306,0,15.6
+26154,18244.92098,18214.38366,0,15.6
+26155,18306.73899,18106.26609,0,15.6
+26156,18311.77445,18249.4305,0,15.6
+26157,18420.14573,18125.32935,0,15.6
+26158,18420.14644,18135.04307,0,15.6
+26159,18462.39852,0,0,15.6
+26160,18515.5757,7.707644855,0,17.8
+26161,906753.6119,1270703.693,0,17.8
+26162,829442.5578,936788.2643,1082265.254,17.8
+26163,420282.0779,211745.6477,0,17.8
+26164,256149.4566,217883.3937,0,17.8
+26165,289385.2922,447737.1977,0,17.8
+26166,287147.1588,331452.0553,0,17.8
+26167,356939.9653,332203.313,0,17.8
+26168,317439.5934,333442.8309,0,17.8
+26169,293345.9213,331400.8843,0,17.8
+26170,307992.8588,330136.2983,0,17.8
+26171,305174.3685,328919.0456,0,17.8
+26172,303427.8203,327905.7965,0,17.8
+26173,303129.8707,326249.5969,0,17.8
+26174,302607.853,325568.6122,0,17.8
+26175,642212.119,324365.3178,0,17.8
+26176,302040.1691,323176.9033,0,17.8
+26177,301472.1905,322700.8784,0,17.8
+26178,301503.2206,321478.528,0,17.8
+26179,301277.6526,321197.6632,0,17.8
+26180,300821.622,319200.9066,0,17.8
+26181,300798.4348,319433.8077,0,17.8
+26182,300279.2917,318149.6422,0,17.8
+26183,300695.7116,317699.9611,0,17.8
+26184,299818.361,316777.5393,0,17.8
+26185,300164.9629,316602.6368,0,17.8
+26186,299994.9841,315319.4629,0,17.8
+26187,299509.6196,314886.7019,0,17.8
+26188,300056.8589,314183.9071,0,17.8
+26189,299723.8137,313714.0211,0,17.8
+26190,299372.5003,313132.8769,0,17.8
+26191,39472.70157,0,0,17.8
+26192,39406.77962,0,0,17.8
+26193,39414.66826,104156.2498,0,17.8
+26194,823901.23,831938.1022,0,17.8
+26195,314384.5261,122701.2229,0,17.8
+26196,148967.4652,271009.699,1046928.509,17.8
+26197,334896.5327,358304.1137,0,17.8
+26198,255030.079,302436.5458,0,17.8
+26199,350380.1061,308414.1966,0,17.8
+26200,308502.4589,308288.8283,0,17.8
+26201,288976.7225,307891.8488,0,17.8
+26202,303247.1085,307252.3741,0,17.8
+26203,300471.0158,307081.239,0,17.8
+26204,300144.9425,305770.1754,0,17.8
+26205,299763.5004,306839.7652,0,17.8
+26206,299918.0697,304975.3678,0,17.8
+26207,300140.5381,305027.3403,0,17.8
+26208,299940.268,304880.2518,0,17.8
+26209,300281.8056,304020.6768,0,17.8
+26210,639621.0448,304233.6365,0,17.8
+26211,300243.5987,303217.2271,0,17.8
+26212,300353.9948,302941.6397,0,17.8
+26213,300272.4888,303054.6639,0,17.8
+26214,300180.7731,302419.0297,0,17.8
+26215,300927.2491,301988.8231,0,17.8
+26216,300295.749,301775.0931,0,17.8
+26217,300745.0995,301460.7951,0,17.8
+26218,300776.4158,300518.9877,0,17.8
+26219,301143.5754,300632.4779,0,17.8
+26220,300918.7838,300499.9632,0,20
+26221,1628981.322,2599445.059,1853555.771,20
+26222,1074131.572,1571090.943,750812.4122,20
+26223,818555.1606,263892.4461,122575.3789,20
+26224,110792.0708,243982.7756,296137.6354,20
+26225,874042.4826,1275711.198,387789.0154,20
+26226,669487.5366,624407.2649,290107.107,20
+26227,724748.045,898447.2663,302614.0212,20
+26228,707831.3736,788271.5047,303403.9899,20
+26229,514644.3837,750893.5557,302717.1204,20
+26230,771458.0379,777973.9973,1327516.834,20
+26231,637678.1205,764865.1088,298332.2455,20
+26232,670583.2706,760716.3467,299303.9666,20
+26233,667319.6256,757466.1976,298648.948,20
+26234,662233.9546,754688.1329,300060.3762,20
+26235,662179.0144,752291.7131,299234.3981,20
+26236,657878.949,750664.3102,300609.0307,20
+26237,656120.9428,747657.4367,302907.4468,20
+26238,654643.0302,744744.554,310002.855,20
+26239,653990.6176,744308.9463,305178.6787,20
+26240,652709.9766,740694.0922,307694.1183,20
+26241,650797.9907,740948.2928,307529.6755,20
+26242,649812.7852,736783.4512,308650.9573,20
+26243,648600.8857,736559.8593,308503.5793,20
+26244,647745.3808,733723.0454,308944.2607,20
+26245,986391.5628,733473.4942,309623.1024,20
+26246,644866.7203,730392.0907,310226.9696,20
+26247,644070.1998,730984.1649,310518.9178,20
+26248,643668.0939,727417.2663,310404.6981,20
+26249,641512.8852,727270.3832,311546.9377,20
+26250,641869.1249,727207.1759,311599.3739,20
+26251,618226.1038,695831.1753,1524.483986,20
+26252,618315.589,696508.2212,792.9751403,20
+26253,616796.3227,694530.5827,1084.042699,20
+26254,616863.8501,665237.6143,1104.499256,20
+26255,141406.8575,4490.397837,192609.5356,20
+26256,103648.392,227526.6348,13841.72495,20
+26257,928520.766,1205896.284,36911.31094,20
+26258,704029.2594,468387.5637,47024.80204,20
+26259,629529.8774,808426.8186,1572604.079,20
+26260,499199.0156,712833.8728,56603.43133,20
+26261,462912.8504,724316.1425,227810.6568,20
+26262,746018.1484,715874.1928,406118.9384,20
+26263,623023.9674,715264.7026,286639.2762,20
+26264,629262.4433,714184.0148,1421098.322,20
+26265,637978.8084,714401.9105,300110.3448,20
+26266,637200.2101,711883.7911,299932.2225,20
+26267,628365.3693,712423.3635,300450.4794,20
+26268,632899.0551,711406.7106,301017.7334,20
+26269,631297.0055,709496.6479,301590.5153,20
+26270,627241.2361,710449.2264,301644.3521,20
+26271,629338.7708,707928.3166,302599.7376,20
+26272,627786.9321,709688.3683,300337.8986,20
+26273,627535.8677,707016.3535,301434.6029,20
+26274,626357.0812,706687.0904,301506.2801,20
+26275,627600.8469,706733.4411,301544.5331,20
+26276,625619.6531,705275.5208,301860.1425,20
+26277,625132.7615,706053.2447,302901.699,20
+26278,626446.2051,704407.2074,302484.8633,20
+26279,624950.6834,703426.1398,303088.2058,20
+26280,964313.0628,704415.7302,303333.9361,21
+26281,2317663.911,2990314.821,4204345.12,21
+26282,1974797.682,1939199.222,1901178.275,21
+26283,603602.3004,689682.6917,81780.49427,21
+26284,604421.717,788916.9002,530497.376,21
+26285,722760.6062,1133089.626,917781.8972,21
+26286,963028.0868,922731.782,617796.9328,21
+26287,744230.3242,941882.5813,645436.4223,21
+26288,790661.8528,936658.5337,654825.2888,21
+26289,788017.4695,933619.6002,657245.9229,21
+26290,785524.4396,929582.8382,661208.6899,21
+26291,782039.5972,926923.0789,662091.7276,21
+26292,781407.6254,923561.1326,663750.6032,21
+26293,776418.4001,919607.0118,668288.4092,21
+26294,774040.2999,915971.7011,668582.1742,21
+26295,773578.6691,915387.6911,670554.4024,21
+26296,770501.3175,910715.9384,672757.691,21
+26297,767608.9505,908919.4009,674856.716,21
+26298,766021.0762,904805.9965,677446.5412,21
+26299,764760.8444,905092.3343,678806.1897,21
+26300,761042.48,898888.4482,681094.993,21
+26301,762154.8338,898823.7371,682861.8676,21
+26302,757714.3944,895985.8594,681328.2036,21
+26303,758824.1764,893200.5659,688406.7643,21
+26304,755396.5981,891448.3815,686293.3163,21
+26305,754990.0538,889498.3933,689722.26,21
+26306,752626.2164,886282.3575,689352.4027,21
+26307,751230.8785,886253.813,692851.7724,21
+26308,750322.1032,881515.6666,692712.0532,21
+26309,747902.044,880213.8152,695449.1103,21
+26310,747861.9836,879806.5537,695198.4944,21
+26311,745560.4322,876302.2516,698261.9779,21
+26312,744667.652,874111.0707,698076.453,21
+26313,744856.0638,874027.4938,700968.7436,21
+26314,741454.5007,869803.7883,699549.3687,21
+26315,741950.7084,869860.734,703499.654,21
+26316,738802.7524,866232.3363,703401.282,21
+26317,740340.2693,865902.8116,704296.8852,21
+26318,737489.1643,863596.5069,705042.4703,21
+26319,736247.8461,862750.3728,707413.2509,21
+26320,735885.0626,860110.0472,707952.918,21
+26321,735322.4214,858834.1903,709247.2788,21
+26322,732358.8366,857921.5123,709375.7059,21
+26323,733134.9462,855644.8277,710397.8294,21
+26324,733178.4184,853701.6936,711396.5654,21
+26325,729935.1254,853479.3155,712687.6313,21
+26326,730083.6068,850279.2713,712766.9401,21
+26327,728705.1109,849342.6339,716666.7641,21
+26328,727868.5873,848784.0675,712949.2757,21
+26329,727652.6611,846359.7655,716317.1228,21
+26330,726845.2015,844273.9817,717173.6206,21
+26331,726031.73,845087.0889,716598.783,21
+26332,723665.6247,841896.87,720168.7796,21
+26333,725035.3567,840442.8812,717003.4133,21
+26334,722881.2694,840152.3825,721133.3523,21
+26335,722994.6438,837062.0578,719346.6856,21
+26336,721062.7263,837596.092,722023.3204,21
+26337,721532.4854,834160.9241,722225.3466,21
+26338,718782.4606,834109.8558,720879.177,21
+26339,721674.0342,832074.2525,723251.1441,21
+26340,717088.4107,828988.6479,724125.8923,21
+26341,983847.171,1257321.056,665141.2451,21
+26342,976880.4697,1251597.52,656412.3627,21
+26343,974633.1764,1249777.749,653340.1851,21
+26344,974957.4475,1251392.453,655673.1981,21
+26345,971821.0631,1247765.533,652591.274,21
+26346,971227.0153,1249035.466,653264.7269,21
+26347,969324.6927,1249489.984,652386.977,21
+26348,969062.3621,1245384.813,651556.8302,21
+26349,966925.6802,1248501.903,652730.0726,21
+26350,965741.584,1247368.354,650176.4098,21
+26351,964829.8018,1244150.569,652595.7512,21
+26352,964182.7778,1247977.686,649736.3183,21
+26353,961660.286,1244824.025,651149.355,21
+26354,961377.0994,1245811.102,650831.2137,21
+26355,960214.0514,1245038.344,650385.9015,21
+26356,958926.8486,1244694.75,650472.1896,21
+26357,958358.8223,1245113.385,649691.9222,21
+26358,957590.8456,1243054.614,650598.864,21
+26359,954755.5467,1245983.78,649553.2267,21
+26360,956091.3196,1242039.881,648774.9877,21
+26361,952668.6625,1244895.678,650294.0883,21
+26362,953131.4472,1242950.003,649325.1491,21
+26363,952583.7807,1244338.598,648473.4499,21
+26364,950767.126,1242729.375,649855.2959,21
+26365,950274.3512,1244277.979,650070.4895,21
+26366,948750.518,1242568.887,648102.5566,21
+26367,947617.5896,1243819.493,649214.3061,21
+26368,948959.9598,1244230.241,648084.0719,21
+26369,944970.779,1242360.94,650426.1552,21
+26370,945355.5996,1242862.008,647352.4775,21
+26371,945366.95,1244193.655,650478.6283,21
+26372,943500.6001,1242008.838,647647.9622,21
+26373,942348.3083,1243613.688,647183.3602,21
+26374,942532.4055,1243292.562,651072.9783,21
+26375,940677.4001,1243152.429,647491.9047,21
+26376,941404.6959,1243086.555,647719.8292,21
+26377,938855.2705,1244123.33,651062.7246,21
+26378,937878.7519,1242384.928,647518.7572,21
+26379,938383.2545,1243765.173,647121.47,21
+26380,937455.1626,1244204.591,649850.8446,21
+26381,936329.4411,1243316.22,647526.5622,21
+26382,934936.7359,1244472.832,647779.0145,21
+26383,935403.494,1243865.911,649241.7239,21
+26384,933877.6609,1243767.442,648041.5661,21
+26385,932637.1509,1244327.666,647396.2532,21
+26386,933710.0387,1243940.453,637932.9781,21
+26387,929113.957,1245604.527,633777.6924,21
+26388,926585.0714,1242928.065,632547.389,21
+26389,926139.0244,1245731.305,634320.3674,21
+26390,924683.2597,1244936.635,631868.4164,21
+26391,921861.2345,1245785.661,630605.0473,21
+26392,923378.2533,1244456.209,630310.5491,21
+26393,920534.2615,1245936.375,629069.8349,21
+26394,920573.5097,1246147.392,631243.7472,21
+26395,919747.5606,1245575.914,627270.2265,21
+26396,917146.5658,1246447.93,628414.3657,21
+26397,918783.1943,1246054.058,627052.414,21
+26398,915933.7987,1247110.522,626268.1322,21
+26399,915262.8881,1247323.776,626049.5785,21
+26400,916233.861,1246700.225,626782.8368,21
+26401,683363.0688,1013577.487,242071.8989,21
+26402,666049.4496,997104.5834,233173.3778,21
+26403,662317.2945,994623.8771,230091.0915,21
+26404,658322.4672,992439.6824,227573.6071,21
+26405,654790.5262,988232.9398,225641.6238,21
+26406,652057.4706,986488.1461,223029.5862,21
+26407,648617.9948,982801.0694,220742.1159,21
+26408,646281.2747,981917.7137,219089.7411,21
+26409,643077.719,978590.4378,216885.1001,21
+26410,640890.2342,977647.2428,215824.2918,21
+26411,638316.7831,974458.0432,212940.871,21
+26412,636954.2976,973567.3409,212538.2159,21
+26413,632267.8938,971299.7682,210420.8987,21
+26414,631894.9491,969481.6623,209291.5409,21
+26415,629783.0854,967219.0151,207488.1471,21
+26416,629402.0398,965856.6946,206984.6789,21
+26417,627419.4287,964161.7873,205180.3725,21
+26418,626768.3744,962622.0602,204347.0325,21
+26419,625379.6225,961023.9917,202438.9946,21
+26420,624347.6373,958663.1386,201617.1346,21
+26421,623608.895,957978.1908,200404.3814,21
+26422,622262.4824,956236.2296,199369.5506,21
+26423,621314.7421,954177.4754,198107.6868,21
+26424,620526.5267,953311.9497,196897.4563,21
+26425,619246.6435,951669.1798,195822.6575,21
+26426,618737.1073,951368.9055,194509.8202,21
+26427,617317.5868,948672.1574,193452.8099,21
+26428,616673.0927,947320.2415,192001.4719,21
+26429,615795.6175,946766.2837,191535.0738,21
+26430,614754.7518,945734.2988,190213.9486,21
+26431,613783.0046,943064.8858,188330.4324,21
+26432,613284.9735,944016.7963,187898.9392,21
+26433,612249.2307,941270.6569,185936.9493,21
+26434,611801.1711,940396.8793,185088.787,21
+26435,610516.9668,939443.4602,183899.5578,21
+26436,610193.3435,937413.2917,182469.044,21
+26437,609569.0133,937522.9259,181520.5662,21
+26438,608327.8597,936625.085,179944.5502,21
+26439,608403.6386,934215.5295,178698.8216,21
+26440,606771.5101,933376.2997,177841.1708,21
+26441,606585.6323,933896.0479,176288.6963,21
+26442,605892.6833,930653.7512,175232.9231,21
+26443,605103.8207,931493.9538,173703.0587,21
+26444,604587.6121,929763.5624,172654.8171,21
+26445,603561.7763,927884.0489,172014.0897,21
+26446,603004.0029,929085.7258,169624.1245,21
+26447,602775.4983,926077.8052,169476.2844,21
+26448,601728.1965,927055.252,167634.6228,21
+26449,600726.904,924791.412,166944.9768,21
+26450,600861.0818,923247.1144,165656.3007,21
+26451,599654.2433,924582.0999,164705.8661,21
+26452,599169.004,921283.7384,162747.6893,21
+26453,598725.0284,922131.6151,162488.1669,21
+26454,598094.0576,921595.3121,160624.4855,21
+26455,597052.686,920430.1842,159763.418,21
+26456,597202.175,919910.7391,159094.0258,21
+26457,595909.7382,919418.2372,157150.7116,21
+26458,595825.6185,917583.137,156919.5951,21
+26459,594637.2863,917285.8773,154523.1857,21
+26460,594576.5927,917294.7803,154813.9348,21
+26461,593845.5002,917394.652,153083.2864,21
+26462,592581.5378,918512.8184,151709.282,21
+26463,591670.704,920589.8718,150985.4923,21
+26464,591760.2541,921562.7451,149748.3867,21
+26465,589876.9508,922853.7021,148340.6685,21
+26466,589708.6103,923065.0293,147090.983,21
+26467,588616.6997,925466.3268,146728.0571,21
+26468,588307.4962,926879.4632,144399.6202,21
+26469,587187.7891,928254.5803,144054.9761,21
+26470,586062.246,928514.4419,142571.6276,21
+26471,585851.234,931529.3912,141313.3597,21
+26472,584699.86,931958.4197,140087.2243,21
+26473,584177.6923,933630.7882,138791.3537,21
+26474,583359.3856,934833.767,137599.2175,21
+26475,582417.6092,935185.3477,136322.4953,21
+26476,581629.8299,938671.4224,135525.3036,21
+26477,581484.0416,939035.4504,133865.0538,21
+26478,579859.817,940213.5652,133119.4052,21
+26479,579360.0651,942404.3843,131164.0464,21
+26480,578849.0174,942922.4025,130929.1998,21
+26481,578090.4162,945089.1045,128704.2196,21
+26482,576938.1676,946407.7479,127964.3794,21
+26483,576743.8018,947318.1076,127210.2655,21
+26484,575440.5787,949669.4014,124914.6634,21
+26485,575045.392,950274.4196,124516.7168,21
+26486,574283.6445,952441.0405,123257.9963,21
+26487,573390.9154,953884.0349,121314.9585,21
+26488,572769.3556,955319.1448,120775.4007,21
+26489,572184.6586,956779.3916,119397.7458,21
+26490,571046.7932,957884.7713,117776.231,21
+26491,570510.0458,960481.6943,117638.8606,21
+26492,569524.6947,960710.0306,115864.0185,21
+26493,568081.1266,963117.8658,116347.9901,21
+26494,567487.1095,964380.3804,114367.1841,21
+26495,566246.4017,965937.2167,114193.6526,21
+26496,565236.4295,968060.4118,113558.1827,21
+26497,564388.5159,969407.0361,112421.1858,21
+26498,563108.8917,971518.6095,111992.3384,21
+26499,562178.2949,974134.6757,111011.6297,21
+26500,561327.3514,975640.0001,110782.1278,21
+26501,559596.9792,977892.0238,109407.4675,21
+26502,559124.063,979377.169,108543.7327,21
+26503,557998.8411,981978.5343,108797.5079,21
+26504,556731.2495,983818.8908,107453.173,21
+26505,555762.9778,985362.6594,106782.0082,21
+26506,554665.1863,987695.4098,106059.6863,21
+26507,553814.9441,989787.0626,105541.7491,21
+26508,552320.6348,991799.5704,104562.2608,21
+26509,551600.7561,993549.8229,104030.9913,21
+26510,550678.1393,995968.7991,103648.3247,21
+26511,548887.0747,997690.2104,102598.1617,21
+26512,548199.8078,999898.0059,101896.0987,21
+26513,547194.1978,1001674.117,101372.2484,21
+26514,546056.0345,1003757.487,100881.6863,21
+26515,544668.4746,1006051.933,99977.71043,21
+26516,544039.1347,1008000.834,99391.67236,21
+26517,542552.5537,1009920.204,98554.91284,21
+26518,541884.003,1011903.003,98266.01285,21
+26519,540408.7808,1014401.237,97643.36349,21
+26520,539383.911,1015715.786,96242.38194,21
+26521,543032.646,1020330.537,107180.342,21
+26522,542722.3065,1018018.449,106427.7507,21
+26523,541564.8129,1018406.455,106036.9927,21
+26524,541539.6324,1016964.788,105640.5381,21
+26525,540338.2027,1015912.017,104930.5408,21
+26526,539963.6058,1015218.416,104626.107,21
+26527,538891.9404,1014546.822,103920.7315,21
+26528,538465.1962,1013178.67,104026.539,21
+26529,538095.8204,1012376.089,102479.9835,21
+26530,536766.5658,1011458.748,102939.6149,21
+26531,536434.1971,1010650.968,102088.8898,21
+26532,535559.6658,1009873.645,101595.061,21
+26533,534978.0904,1008513.586,101229.5614,21
+26534,534464.0526,1008008.652,100563.6707,21
+26535,533117.9711,1006665.354,100271.2512,21
+26536,533435.7514,1006222.974,99197.95395,21
+26537,531702.8668,1004936.682,99839.59874,21
+26538,531763.8172,1003678.613,98196.54456,21
+26539,530706.5687,1003587.405,98445.39858,21
+26540,530378.9945,1002068.038,97755.22615,21
+26541,529375.7522,1001169.692,97301.79121,21
+26542,528709.3618,1000592.125,96640.70318,21
+26543,528088.6634,999395.0668,96282.63154,21
+26544,527415.4897,998571.5435,95896.5353,21
+26545,526650.8969,997556.0392,95156.539,21
+26546,525547.6108,996985.3223,94782.5043,21
+26547,525575.5421,995487.2232,94420.45109,21
+26548,524683.8179,994701.6363,93713.2482,21
+26549,523669.2782,994051.2239,93648.90414,21
+26550,523033.8178,992887.385,92802.5507,21
+26551,522907.4455,992209.6823,91806.48817,21
+26552,522442.1767,990828.0965,90711.90899,21
+26553,521288.9506,987774.3873,89666.94573,21
+26554,521653.4798,985891.1389,88384.03575,21
+26555,520870.6847,984687.111,87258.50308,21
+26556,520423.6891,983900.1109,86408.3019,21
+26557,519639.7369,982262.6721,84899.79257,21
+26558,520137.0728,972603.0427,83613.23331,21
+26559,518828.2148,968717.873,82760.81793,21
+26560,519196.1799,967764.6045,81146.25791,21
+26561,518102.3423,966028.7018,80182.25699,21
+26562,518307.1274,964904.4855,78687.57653,21
+26563,517599.6717,963938.7208,77632.19046,21
+26564,517173.3389,962032.9438,76426.82198,21
+26565,516774.3338,960628.432,75099.96592,21
+26566,517087.804,959669.4598,74266.43265,21
+26567,515818.4261,958273.0638,73164.10985,21
+26568,515566.7476,956706.1596,72575.42611,21
+26569,516049.12,955389.0907,71446.25854,21
+26570,515049.0652,954268.4115,70474.81521,21
+26571,514491.1192,954351.864,69398.08162,21
+26572,514539.1019,953785.3097,68893.09289,21
+26573,514071.3276,952167.5139,67750.34557,21
+26574,513884.1375,951393.1376,66738.41947,21
+26575,513501.9872,950009.7017,65955.27618,21
+26576,513085.9184,948817.2702,64880.05216,21
+26577,512814.1145,947661.8184,63785.92805,21
+26578,512519.9442,946924.3381,63546.70066,21
+26579,512155.7913,945318.1814,61885.42895,21
+26580,512051.7422,944426.455,61049.81987,21
+26581,506673.8497,939005.9442,49328.07562,21
+26582,506713.2817,937097.2152,47495.57509,21
+26583,505902.2631,936488.5591,47049.70208,21
+26584,505372.0434,934842.2749,45813.80344,21
+26585,505166.6872,933956.6914,45167.17795,21
+26586,504368.3576,932990.3268,44392.16134,21
+26587,504298.7825,929792.9537,43820.87493,21
+26588,503022.2543,929778.038,42965.48816,21
+26589,503490.8654,928122.5598,42691.62986,21
+26590,502408.9374,926401.3803,41449.07348,21
+26591,502388.2467,926047.9286,41064.26103,21
+26592,501515.3269,924486.6575,40488.18323,21
+26593,501406.4026,923335.7971,39558.86149,21
+26594,500628.2331,921816.0376,39170.8327,21
+26595,500509.7277,921435.0624,38113.28875,21
+26596,499572.83,919753.8147,37458.88649,21
+26597,499838.8651,918961.9653,36978.74959,21
+26598,498673.1147,917131.4606,36184.27667,21
+26599,498555.8186,916597.0657,35377.33068,21
+26600,498079.7393,915156.7318,34722.4418,21
+26601,497851.0254,914129.9475,34093.68105,21
+26602,496774.2423,912599.0098,33069.38553,21
+26603,497193.7077,912073.9104,32638.54971,21
+26604,495867.8768,910295.1034,31793.86503,21
+26605,496035.1008,909488.185,30993.21314,21
+26606,495391.3103,908275.9878,30502.74429,21
+26607,494842.8643,907055.7733,29558.09355,21
+26608,494671.198,906038.304,29121.5922,21
+26609,493987.0241,904238.3752,28066.84854,21
+26610,493609.5381,903919.1522,27915.98614,21
+26611,493233.8036,902631.9858,27042.57151,21
+26612,493101.2665,901121.1754,26764.29284,21
+26613,492041.0886,900696.3372,26195.44785,21
+26614,492610.0921,899426.6839,25975.11166,21
+26615,491447.6161,897999.8641,25201.53419,21
+26616,491443.3681,897012.9739,24957.21187,21
+26617,490987.369,896666.6393,24406.07125,21
+26618,490980.3877,894964.122,24160.08626,21
+26619,489950.8912,894481.8255,23584.86986,21
+26620,490395.6572,892721.009,23419.95767,21
+26621,489434.1943,892204.5913,22842.82931,21
+26622,489061.9876,890891.6518,22471.34089,21
+26623,489365.8526,889967.342,22263.7611,21
+26624,488364.6449,888963.0493,21557.67141,21
+26625,488349.405,888137.476,21645.17931,21
+26626,487812.2774,886337.3131,20974.90696,21
+26627,487702.9734,886192.8285,20731.28348,21
+26628,487113.4001,884556.7169,20183.83071,21
+26629,486930.166,883446.3337,20147.04227,21
+26630,486680.0892,882755.7295,19621.81775,21
+26631,485949.0782,881470.8315,19203.78645,21
+26632,486236.2228,880254.4892,18846.83611,21
+26633,485513.3988,879808.2308,18764.80922,21
+26634,485246.421,878262.3522,18089.89107,21
+26635,485015.3284,877182.3154,18007.928,21
+26636,484561.9075,876617.8379,17477.00134,21
+26637,484471.7696,874510.4969,17268.86434,21
+26638,483845.8063,874024.2547,16887.98585,21
+26639,483968.9985,872368.4698,16653.81814,21
+26640,483194.9145,870023.3714,16102.97106,21
+26641,512390.9098,902976.8546,37882.5658,21
+26642,512429.5893,903261.9016,38155.64866,21
+26643,511229.5447,904622.5127,37387.31842,21
+26644,510711.0188,904820.4779,37946.68632,21
+26645,509299.8662,905503.5202,37284.50441,21
+26646,509682.907,906074.6789,37120.05386,21
+26647,508063.1856,907307.324,37066.53178,21
+26648,507509.023,907276.1371,36677.43418,21
+26649,506806.0091,908081.4898,36401.58465,21
+26650,505775.6353,909115.297,36458.79759,21
+26651,505349.5324,909237.9774,35821.75676,21
+26652,504057.918,910156.4736,35948.6154,21
+26653,503987.7729,910872.314,35561.19098,21
+26654,502713.3208,911485.1532,35408.30917,21
+26655,502150.019,912033.2769,34884.41739,21
+26656,501076.7211,912508.7309,35332.54471,21
+26657,501355.5052,913078.5033,34321.2377,21
+26658,499255.9428,914069.4427,34790.68006,21
+26659,499064.0695,914341.8276,34109.02649,21
+26660,498327.2365,915204.4103,34070.64981,21
+26661,497477.9258,915373.9617,33721.30952,21
+26662,496344.4493,916305.7014,34014.50705,21
+26663,496105.9386,916453.3231,33018.93939,21
+26664,494972.6406,917674.3616,33292.32208,21
+26665,494017.8304,917919.4054,32962.39169,21
+26666,493661.4667,918368.6595,32902.99823,21
+26667,492428.1915,918899.4333,32424.85845,21
+26668,492057.9906,919182.4612,32198.60003,21
+26669,490670.5273,920556.1124,32200.93732,21
+26670,490154.4862,920529.1493,32141.20847,21
+26671,489168.8402,921012.1817,31473.93769,21
+26672,488730.4534,923156.8534,31769.94733,21
+26673,487728.6517,923349.6274,30933.45063,21
+26674,486549.5271,924401.8185,31219.52956,21
+26675,486312.1456,924404.4337,30854.62673,21
+26676,485516.2355,925675.226,30667.65929,21
+26677,484625.0098,926171.8115,30333.83404,21
+26678,483774.8147,926665.158,30262.23392,21
+26679,483406.7914,927529.1143,29938.83747,21
+26680,482172.4189,928195.8583,29898.09891,21
+26681,481845.2515,928388.8073,29363.28201,21
+26682,480434.2807,928094.5764,29502.61203,21
+26683,480366.659,929647.1785,29007.74007,21
+26684,479283.9256,930000.7906,29116.32675,21
+26685,478294.4228,930648.1788,28599.42576,21
+26686,477801.6692,931374.8244,28559.21924,21
+26687,477200.2479,931940.2264,28232.84889,21
+26688,476136.0287,932460.0935,28171.02786,21
+26689,475277.2342,933565.2968,27823.04442,21
+26690,474902.8257,933909.777,27632.86797,21
+26691,474319.236,934760.2443,27433.59764,21
+26692,472890.1481,935560.7326,26912.83129,21
+26693,472332.2025,936074.8122,27181.07541,21
+26694,471869.515,936255.0989,26341.31948,21
+26695,470928.6035,937766.5481,26467.92707,21
+26696,470419.6624,937783.9273,26108.56836,21
+26697,469006.1404,938779.7378,25908.36347,21
+26698,468779.038,939497.0573,25702.58679,21
+26699,468165.0548,939901.1276,25009.67877,21
+26700,466687.1154,940458.9175,25301.37048,21
+26701,440364.1166,910536.7348,5769.864593,21
+26702,439064.9414,908636.4346,5148.837828,21
+26703,439940.3186,909056.664,5148.941017,21
+26704,440306.9358,908295.2952,5080.009535,21
+26705,440168.1882,907987.5293,4702.014486,21
+26706,440731.3956,907685.3971,4678.961715,21
+26707,440966.0675,907017.1527,4454.527859,21
+26708,441004.7988,906945.555,4408.023816,21
+26709,441639.4454,906254.9929,4050.553153,21
+26710,441469.3373,906070.4679,4182.835857,21
+26711,442031.1498,905541.128,3777.313263,21
+26712,442284.8511,905497.802,3945.119411,21
+26713,442656.2766,904199.9888,3550.377434,21
+26714,442680.1928,905149.838,3490.624201,21
+26715,443070.5292,903398.802,3322.516374,21
+26716,443710.3534,903894.6983,3262.23742,21
+26717,443489.0122,903071.8288,3045.212127,21
+26718,443908.2206,903089.9059,3020.890992,21
+26719,444443.9147,902139.832,2813.897946,21
+26720,444692.3553,902167.5429,2595.797395,21
+26721,445035.7492,902065.1788,2595.826202,21
+26722,445148.9358,901655.4567,2388.902136,21
+26723,445736.9926,900884.4852,2376.755974,21
+26724,445758.3756,900676.5127,2193.367313,21
+26725,446597.0821,900433.5029,2156.53622,21
+26726,446602.3201,900404.3754,1972.433062,21
+26727,446836.163,899647.9452,1775.137856,21
+26728,447304.9063,899581.6481,1934.892725,21
+26729,447960.7476,898517.2731,1471.097701,21
+26730,447774.2892,899793.188,1538.393163,21
+26731,448738.2773,897701.013,1538.403854,21
+26732,448523.5,898658.9554,1164.113813,21
+26733,449328.4216,897711.8114,1351.781415,21
+26734,449835.8317,897698.1252,1164.127306,21
+26735,449636.7029,896855.7935,1164.133617,21
+26736,450914.2069,897521.2319,975.317865,21
+26737,450478.5974,896363.296,975.3223718,21
+26738,451407.9131,896436.9308,975.3268818,21
+26739,451576.7218,895799.6115,785.1608425,21
+26740,452284.5346,895897.8677,593.3720069,21
+26741,452495.0105,894987.3558,785.16614,21
+26742,452724.1667,895335.007,593.3759796,21
+26743,453846.1736,894774.4122,399.5199512,21
+26744,453563.776,894153.7211,593.378937,21
+26745,454477.3088,894399.123,301.5823308,21
+26746,454523.7312,893479.8393,399.5225489,21
+26747,455400.7678,893480.1166,202.7380099,21
+26748,455517.3961,893427.4781,202.7382267,21
+26749,456245.416,892677.0953,0,21
+26750,456266.0614,892618.7678,202.7384443,21
+26751,457184.2962,892281.3171,0,21
+26752,457504.3795,891950.9088,0,21
+26753,457788.6087,891736.3563,0,21
+26754,458422.5538,890903.5342,0,21
+26755,458556.7051,891298.9266,0,21
+26756,459438.3211,890529.7275,0,21
+26757,459701.4026,890868.2934,0,21
+26758,460381.291,889418.0339,0,21
+26759,460226.4046,890228.9066,0,21
+26760,461728.342,889455.967,0,21
+26761,465401.0799,892695.5067,6882.542081,21
+26762,466211.0845,892528.5502,12949.14606,21
+26763,465308.3274,891313.5248,9950.749717,21
+26764,465948.7071,890024.7676,10622.92732,21
+26765,465351.8014,889214.2833,10623.26371,21
+26766,465877.5647,888139.1633,10455.92744,21
+26767,465262.2612,887858.9957,10623.93334,21
+26768,465381.6663,885635.9454,10456.58574,21
+26769,465498.2272,885467.5213,10456.91331,21
+26770,464992.7649,884138.8111,10457.2408,21
+26771,465362.4201,883371.1352,10289.66451,21
+26772,465080.2382,881951.0449,10457.89259,21
+26773,465180.1774,881590.5109,10290.30509,21
+26774,464491.1974,880596.7437,10290.6238,21
+26775,465448.3183,880635.4549,10290.94243,21
+26776,464420.7686,878973.5634,10291.26099,21
+26777,464960.097,878648.011,9955.0868,21
+26778,464647.551,876400.6581,10291.89195,21
+26779,464543.5637,876564.6467,10124.05707,21
+26780,464719.1002,874959.8646,9956.000286,21
+26781,464395.3247,873991.8447,10124.6738,21
+26782,464648.9721,872966.6011,9956.606031,21
+26783,464105.5282,871443.2557,9956.907365,21
+26784,464584.2552,870389.2826,9957.208607,21
+26785,464136.6813,868300.7485,9788.905673,21
+26786,464326.0596,867814.0637,9957.807976,21
+26787,464064.0669,866988.0946,9789.494161,21
+26788,464256.0257,865277.7111,9620.953632,21
+26789,464136.564,865150.851,9958.702022,21
+26790,463508.9283,863099.7679,9621.528109,21
+26791,464403.3403,862937.9112,9621.812432,21
+26792,463776.6835,861111.4497,9622.096672,21
+26793,464338.3601,860587.0046,9622.380856,21
+26794,463686.8903,859213.377,9622.664961,21
+26795,464375.8861,858307.9946,9622.948949,21
+26796,464038.4716,856880.6386,9454.141694,21
+26797,463947.0979,855685.5426,9623.513887,21
+26798,464442.4794,855253.6193,9285.375832,21
+26799,463981.8787,853644.5283,9624.075581,21
+26800,464435.1816,853257.4984,9455.247168,21
+26801,464256.8242,851153.6365,9286.186873,21
+26802,464328.8917,850870.105,9624.917563,21
+26803,464367.5612,849120.4442,9286.727225,21
+26804,464551.3666,848225.2834,9286.994485,21
+26805,464332.1625,847026.4105,9456.618096,21
+26806,464752.5138,846612.6615,9287.531643,21
+26807,464578.0861,844363.1931,9287.798694,21
+26808,464713.0183,843992.1798,9288.065683,21
+26809,464803.2686,842635.6999,9288.332606,21
+26810,464932.2272,841601.869,9288.599474,21
+26811,464721.0388,839923.366,9119.25761,21
+26812,465025.7617,839052.6655,9289.130102,21
+26813,465132.5705,838193.5092,9289.396761,21
+26814,465143.5887,836661.902,8950.191114,21
+26815,465181.8913,835530.7095,9289.924091,21
+26816,465198.6318,835023.6015,9120.556433,21
+26817,465494.583,832858.5094,9120.814885,21
+26818,465502.3176,831647.5948,9121.073277,21
+26819,465367.4473,830563.3019,9121.331602,21
+26820,465922.5902,828548.8043,9121.589882,21
+26821,460644.3645,822278.7545,0,21
+26822,461073.3605,822026.9916,0,21
+26823,461243.5692,820221.7334,0,21
+26824,460845.7263,819387.7264,0,21
+26825,461483.1499,819036.2534,0,21
+26826,461379.3698,817224.1993,0,21
+26827,461316.1306,816329.0038,0,21
+26828,461403.375,815433.6245,0,21
+26829,462093.1311,814317.1248,0,21
+26830,461374.3452,813181.3137,0,21
+26831,461884.8763,812754.2573,0,21
+26832,462090.9561,810539.2205,0,21
+26833,461920.6797,810501.5518,0,21
+26834,462352.7106,809466.8546,0,21
+26835,462068.7425,808082.4615,0,21
+26836,462355.4972,807474.0462,0,21
+26837,462772.549,806106.5047,0,21
+26838,462422.7908,805092.9177,0,21
+26839,462647.6608,804060.24,0,21
+26840,463158.3757,803379.7175,0,21
+26841,462808.3089,802112.2184,0,21
+26842,463456.8508,801385.4933,0,21
+26843,462908.0707,799510.5773,0,21
+26844,463810.5586,799783.6528,0,21
+26845,463220.6912,797714.1596,0,21
+26846,463825.3062,797652.3122,0,21
+26847,464049.7821,795798.3943,0,21
+26848,463615.5444,795460.9431,0,21
+26849,464094.102,794105.7247,0,21
+26850,464565.8168,793084.2322,0,21
+26851,464120.5289,791837.0399,0,21
+26852,464478.4591,791243.9898,0,21
+26853,464728.7039,789921.7107,0,21
+26854,464927.6999,789260.5706,0,21
+26855,464951.7686,787990.2876,0,21
+26856,465427.0759,786933.3122,0,21
+26857,465249.7289,786380.9162,0,21
+26858,465804.3788,784690.4685,0,21
+26859,465651.7385,783745.9333,0,21
+26860,465943.4389,783266.0549,0,21
+26861,466051.844,781775.6699,0,21
+26862,466600.0081,780896.4342,0,21
+26863,466345.8454,779986.8909,0,21
+26864,466684.3373,778626.3648,0,21
+26865,467134.7604,778013.277,0,21
+26866,467068.333,776798.413,0,21
+26867,467605.627,775459.1385,0,21
+26868,467518.3682,775024.5868,0,21
+26869,467690.9254,773719.6669,0,21
+26870,468098.6197,772412.5976,0,21
+26871,468286.7255,772390.2937,0,21
+26872,468511.7484,769746.4978,0,21
+26873,468539.1899,770431.9366,0,21
+26874,468804.1248,768007.4387,0,21
+26875,469414.0875,767612.0375,0,21
+26876,469385.0245,766926.3966,0,21
+26877,469399.2365,764913.8414,0,21
+26878,469964.7223,765169.8152,0,21
+26879,469949.6723,763187.1948,0,21
+26880,470509.965,762329.874,0,21
+26881,470762.3329,765314.0186,0,21
+26882,471313.58,766952.5075,0,21
+26883,472410.6766,768226.7939,0,21
+26884,472514.6408,770825.4145,0,21
+26885,473538.6535,771919.5605,0,21
+26886,473795.1703,773786.1374,0,21
+26887,474799.0227,775586.3709,0,21
+26888,474874.0054,777129.6423,0,21
+26889,476001.3636,779011.9246,0,21
+26890,476304.736,780792.2699,0,21
+26891,477118.7865,781939.2226,0,21
+26892,477736.6672,784367.355,0,21
+26893,478104.9725,785413.2563,0,21
+26894,479187.6375,787536.8122,0,21
+26895,479306.7539,788683.3875,0,21
+26896,480442.0066,791270.4759,0,21
+26897,481048.7463,791823.6313,0,21
+26898,480894.8998,794332.7959,0,21
+26899,482640.1968,795834.4118,0,21
+26900,482370.4891,797262.4313,0,21
+26901,483799.8088,798942.4536,0,21
+26902,483801.5466,801046.2495,0,21
+26903,484636.5585,802365.3667,0,21
+26904,485670.3462,803964.701,0,21
+26905,485998.16,805431.4777,0,21
+26906,486497.0394,808142.565,0,21
+26907,487762.4599,808584.9108,0,21
+26908,487796.0184,810931.4842,0,21
+26909,489091.0511,812409.8274,0,21
+26910,489133.0287,813914.2791,0,21
+26911,489949.4761,815290.1704,0,21
+26912,490862.9017,816915.0136,0,21
+26913,490636.4837,818495.5038,0,21
+26914,491676.7741,820284.142,0,21
+26915,492254.4048,821881.1444,0,21
+26916,492538.5936,823452.9308,0,21
+26917,493006.5892,825268.6022,0,21
+26918,493882.952,826493.1211,0,21
+26919,493748.3675,829000.9721,0,21
+26920,494963.9809,829679.1122,0,21
+26921,494933.6673,832525.41,0,21
+26922,495876.8524,832995.0253,0,21
+26923,495973.1951,835459.9086,0,21
+26924,496875.2715,836536.2655,0,21
+26925,496996.6723,839027.605,0,21
+26926,497667.2562,839570.1764,0,21
+26927,497776.1461,842414.4725,0,21
+26928,499131.6265,843605.5622,0,21
+26929,498748.2887,845187.3479,0,21
+26930,499739.9222,846552.392,0,21
+26931,499949.215,848775.1027,0,21
+26932,500739.8369,850432.6011,0,21
+26933,500983.2454,851942.0005,0,21
+26934,501315.8377,853041.9835,0,21
+26935,502485.2631,855938.3079,0,21
+26936,502012.8165,856723.9947,0,21
+26937,503323.0553,858528.3985,0,21
+26938,502936.9552,860833.2428,0,21
+26939,504333.7999,861345.4666,0,21
+26940,504360.0505,864322.1404,0,21
+26941,561257.5925,933059.8121,13467.28562,21
+26942,563492.3896,939616.2132,21041.4143,21
+26943,565184.5723,940620.5861,17858.06283,21
+26944,565207.4742,943704.8728,19728.78638,21
+26945,567908,944768.3403,22118.82972,21
+26946,568303.3766,947335.6431,34009.92718,21
+26947,569465.4806,949634.1151,28340.40634,21
+26948,570487.741,950804.9649,30301.7555,21
+26949,570971.8784,953157.0995,31365.27592,21
+26950,572019.8989,955515.0479,31945.76972,21
+26951,579473.0009,956693.7378,32307.73555,21
+26952,577524.5911,959002.2945,33010.08128,21
+26953,578541.327,961356.5388,33580.08835,21
+26954,579804.6225,962287.4662,33948.88955,21
+26955,580417.9269,964724.0691,34461.36101,21
+26956,581794.658,966557.4737,34885.53727,21
+26957,581792.3801,967929.9399,35718.96478,21
+26958,583343.8289,970152.262,35578.19162,21
+26959,583426.075,971264.7497,36495.06361,21
+26960,584909.118,973942.8266,36654.77042,21
+26961,585003.9147,990735.8489,37227.49692,21
+26962,585858.1133,993339.3853,37535.79676,21
+26963,587234.0504,993477.8355,37958.7781,21
+26964,586931.6695,996982.3472,38422.90708,21
+26965,588407.3087,999688.3725,38688.94499,21
+26966,588106.8424,1002503.083,39194.72153,21
+26967,589479.9062,1003576.724,39545.66694,21
+26968,589518.9608,1008313.265,40107.3747,21
+26969,590362.4086,1010066.225,40110.58991,21
+26970,591304.3012,1013099.203,40968.84061,21
+26971,591347.3331,1014671.9,41034.9206,21
+26972,592115.0716,1016868.42,41518.64806,21
+26973,592502.0586,1018803.739,41753.15051,21
+26974,593628.1282,1021875.162,42228.82746,21
+26975,593802.4424,1023163.758,42619.37789,21
+26976,594052.9361,1026082.676,42664.4435,21
+26977,594781.2327,1025515.09,43327.8381,21
+26978,595017.6087,1029263.374,43493.3046,21
+26979,595914.4843,1030892.84,43762.65887,21
+26980,596016.2861,1032544.641,44033.12826,21
+26981,596819.5129,1034536.134,44427.80918,21
+26982,597173.5402,1037361.005,44451.96264,21
+26983,597454.5318,1038119.178,45128.33358,21
+26984,598107.6306,1040109.702,44990.76143,21
+26985,598852.9491,1043367.627,45525.42688,21
+26986,598518.0323,1043551.339,45653.54675,21
+26987,599652.8919,1046418.457,45901.47594,21
+26988,599530.3053,1047920.561,48874.10298,21
+26989,600270.6228,1050702.279,50107.88446,21
+26990,600516.6364,1050979.048,50459.14196,21
+26991,600723.0511,1053999.116,52380.10142,21
+26992,601627.3516,1055986.182,52872.51481,21
+26993,601605.1731,1057660.962,53597.833,21
+26994,602256.721,1057951.636,53759.32786,21
+26995,602217.1927,1061543.662,54326.4035,21
+26996,603558.1665,1062719.629,54664.87036,21
+26997,602904.3803,1064135.508,55327.15886,21
+26998,603860.732,1066896.238,55371.7929,21
+26999,603978.2452,1066517.903,56053.4754,21
+27000,604182.6647,1070345.079,56138.41644,21
+27001,626798.2658,1133216.155,70992.31859,21
+27002,628529.5007,1137682.368,86696.26859,21
+27003,630025.5745,1143453.099,81912.74671,21
+27004,630360.2396,1145756.523,83632.37176,21
+27005,632044.3565,1148466.438,85051.1511,21
+27006,642066.3178,1150613.343,86722.14109,21
+27007,675440.3283,1154107.06,86817.89091,21
+27008,655100.9424,1156944.541,88382.446,21
+27009,664595.164,1159024.186,89165.15949,21
+27010,665838.1511,1162268.633,90530.87917,21
+27011,668330.4655,1163475.055,90251.22106,21
+27012,669777.4235,1168679.27,92201.94347,21
+27013,672477.4852,1169066.31,92209.61245,21
+27014,673660.387,1172578.401,93169.69241,21
+27015,675066.5663,1174431.389,94289.4894,21
+27016,676792.3042,1177269.858,94252.27499,21
+27017,678617.5266,1180066.318,99804.02007,21
+27018,680955.954,1181048.718,99151.79698,21
+27019,681295.9628,1184769.541,99911.52555,21
+27020,683591.8305,1188194.651,101684.604,21
+27021,685339.8328,1189379.725,102574.3283,21
+27022,686995.8056,1192933.138,103229.8095,21
+27023,688007.5839,1193985.452,104640.331,21
+27024,689286.6161,1197860.975,105179.267,21
+27025,690706.7258,1199078.745,106582.3378,21
+27026,693443.3507,1201399.386,107354.1209,21
+27027,692507.9436,1204337.607,108251.2993,21
+27028,696372.4154,1205756.087,108693.5656,21
+27029,696405.1137,1207214.38,110641.6456,21
+27030,697496.909,1209971.793,110447.4948,21
+27031,700553.2738,1212072.154,112334.5675,21
+27032,699038.1753,1213696.867,112365.0054,21
+27033,703052.1647,1216899.856,113444.4103,21
+27034,703556.8522,1217201.69,114903.4777,21
+27035,703383.5694,1221628.388,114780.7769,21
+27036,705701.5867,1222509.835,115855.3453,21
+27037,707736.3872,1224488.594,117207.8613,21
+27038,707887.7966,1227084.601,117325.9028,21
+27039,709786.6324,1229138.108,118650.9613,21
+27040,710618.7238,1231250.433,118934.9309,21
+27041,712207.8684,1232081.284,120011.7347,21
+27042,712750.3052,1236071.85,120487.4076,21
+27043,714905.149,1237422.711,121671.0261,21
+27044,714635.6215,1239000.488,122643.5619,21
+27045,717078.4348,1240733.065,122337.8037,21
+27046,717219.6635,1244457.433,124247.1426,21
+27047,719420.1046,1244820.998,124175.2091,21
+27048,719506.4973,1247262.727,125253.2898,21
+27049,721423.1966,1249368.688,125724.6215,21
+27050,721795.1425,1250920.407,126231.4857,21
+27051,723189.0823,1253620.066,127897.1736,21
+27052,725065.7229,1254253.85,127201.2027,21
+27053,725233.1226,1258219.575,128873.1843,21
+27054,726034.7096,1258202.444,129319.2501,21
+27055,728543.5431,1260218.072,129870.3265,21
+27056,727473.8495,1264125.043,130274.7641,21
+27057,730239.9883,1263659.287,131148.9155,21
+27058,729991.5524,1266388.187,131778.3792,21
+27059,731315.6745,1267551.59,132611.5307,21
+27060,733506.9743,1268652.186,132769.4277,21
+27061,732822.6321,1271633.803,133092.0761,21
+27062,733967.39,1274163.457,134580.7473,21
+27063,734193.5312,1273774.441,134335.2332,21
+27064,735321.7242,1275106.953,134682.5731,21
+27065,733700.3413,1276526.095,135045.0365,21
+27066,735768.9262,1276479.618,135843.7203,21
+27067,734454.3926,1279287.313,135984.6224,21
+27068,735665.9535,1278902.111,136604.5008,21
+27069,735864.4487,1279935.897,136569.7987,21
+27070,735417.2536,1281485.203,137786.3199,21
+27071,736325.1343,1281109.556,137610.0536,21
+27072,736037.1926,1282653.827,138153.0868,21
+27073,735903.1854,1284631.146,138461.1271,21
+27074,736475.8699,1282962.005,138584.3149,21
+27075,736692.69,1286306.193,139429.5556,21
+27076,735871.599,1286173.235,139463.0134,21
+27077,737274.7361,1286871.477,140085.0543,21
+27078,736339.7218,1287618.992,140138.7303,21
+27079,737713.211,1289038.212,141006.0656,21
+27080,736471.9382,1289779.222,140787.2263,21
+27081,737801.3668,1289526.999,141242.2761,21
+27082,736843.3747,1291843.198,142004.2573,21
+27083,737333.6812,1291371.99,141707.5911,21
+27084,737362.7333,1292319.7,142623.5668,21
+27085,738079.1804,1294222.595,142705.5053,21
+27086,737867.272,1293894.882,142676.2857,21
+27087,737375.722,1294457.474,143499.905,21
+27088,736941.0184,1296137.574,143430.2639,21
+27089,739287.9113,1296016.288,143992.8512,21
+27090,736855.1912,1298675.293,144276.627,21
+27091,738256.4848,1299461.669,144068.1463,21
+27092,738289.4877,1299610.185,145123.1608,21
+27093,737779.0554,1300300.578,145011.8477,21
+27094,737546.5869,1302157.308,144949.4872,21
+27095,738372.8349,1301693.683,145802.0441,21
+27096,738029.9324,1303376.542,145446.9192,21
+27097,737482.2995,1303826.196,146457.8809,21
+27098,739145.9164,1302597.273,146204.5142,21
+27099,737422.2066,1303694.204,146874.1485,21
+27100,738619.0156,1304325.203,146556.6385,21
+27101,737421.7083,1304683.483,146938.0454,21
+27102,738093.3427,1306780.85,148045.6665,21
+27103,738273.3744,1305825.05,146969.2883,21
+27104,738528.9233,1306982.78,147904.3412,21
+27105,737634.5514,1307404.177,148126.0991,21
+27106,737701.1166,1308552.971,148464.6975,21
+27107,738526.3777,1309598.553,148545.6145,21
+27108,738102.7014,1308151.071,148479.1908,21
+27109,737471.7874,1311288.856,148884.6648,21
+27110,738656.9387,1310266.818,149653.7954,21
+27111,736907.0637,1312406.51,148961.9887,21
+27112,738845.249,1312032.159,149773.0348,21
+27113,737159.5359,1312061.414,149835.7106,21
+27114,737602.0262,1314381.839,150021.031,21
+27115,738480.5256,1313549.539,155727.8381,21
+27116,737281.4142,1315155.248,158234.1411,21
+27117,737413.639,1314956.261,157118.2687,21
+27118,737295.7284,1315950.847,159098.8296,21
+27119,737216.0113,1316741.626,159804.4334,21
+27120,737880.4635,1316596.392,161584.7116,21
+27121,745286.1422,1326311.257,176948.084,21
+27122,747955.4497,1325939.9,179842.3229,21
+27123,747415.8795,1328051.206,183241.4275,21
+27124,749281.4551,1327936.32,183626.444,21
+27125,750061.017,1328024.249,185451.8692,21
+27126,749477.1092,1329230.356,187284.7731,21
+27127,751048.5156,1329751.974,189165.2241,21
+27128,751743.2283,1329698.848,189536.7192,21
+27129,750879.3551,1330978.617,192344.3482,21
+27130,753103.1328,1329918.783,191865.7291,21
+27131,753309.9885,1331223.115,195307.3297,21
+27132,753233.6182,1331834.166,195097.9751,21
+27133,754171.8399,1331844.261,197936.2234,21
+27134,755355.5354,1331490.75,198037.8861,21
+27135,754534.5844,1332861.126,200549.1266,21
+27136,755274.5325,1332731.947,201254.9868,21
+27137,756070.3401,1333178.923,202946.9867,21
+27138,757137.8984,1332548.897,204105.7996,21
+27139,756737.1128,1334046.987,203936.2463,21
+27140,757781.4498,1333132.431,207711.961,21
+27141,758309.2268,1334407.95,206851.5058,21
+27142,757498.0452,1333992.287,209341.7309,21
+27143,759821.1322,1334577.671,209686.3689,21
+27144,758801.7257,1335231.678,212053.3183,21
+27145,760338.8384,1334708.17,212342.9051,21
+27146,759910.8035,1335887.323,214856.5662,21
+27147,761650.7844,1335149.77,213066.3176,21
+27148,760121.6507,1335702.567,217740.8932,21
+27149,762074.1062,1336432.392,215637.8701,21
+27150,762666.1993,1336049.904,219156.5517,21
+27151,762042.2793,1336630.672,219083.2504,21
+27152,762844.6735,1335811.878,220506.1418,21
+27153,763310.222,1337200.712,221102.5984,21
+27154,764340.2865,1337168.139,223716.6294,21
+27155,763559.6839,1337347.659,223687.9188,21
+27156,771098.5596,1336949.661,224393.7922,21
+27157,765107.9936,1337923.076,226595.9285,21
+27158,765467.712,1337504.859,226944.6775,21
+27159,765362.9389,1338603.262,229472.1158,21
+27160,766936.6224,1337775.903,227319.7711,21
+27161,766433.5428,1337614.442,231818.9068,21
+27162,766118.6603,1339616.441,230189.1856,21
+27163,768005.5637,1338137.911,232483.6764,21
+27164,767095.0408,1338855.06,234972.726,21
+27165,768937.7519,1338327.345,232545.2467,21
+27166,768191.3485,1339670.473,235761.3019,21
+27167,768812.4678,1339008.464,237838.761,21
+27168,769466.1291,1339894.613,235746.8157,21
+27169,769671.4954,1339056.116,240556.5232,21
+27170,770044.3617,1339723.572,235857.4264,21
+27171,769989.9223,1339626.439,243624.4088,21
+27172,770632.9373,1339849.586,238750.9752,21
+27173,771126.768,1340997.099,243761.4002,21
+27174,771370.3355,1339325.072,241557.4792,21
+27175,772081.1506,1339903.447,246057.0432,21
+27176,771436.985,1341091.476,244133.0197,21
+27177,773144.7447,1340727.24,244831.3286,21
+27178,772047.0209,1340954.489,248369.0714,21
+27179,773792.5575,1340649.957,247618.7331,21
+27180,773252.0716,1340874.895,247401.0147,21
+27181,773994.2456,1340792.323,251235.131,21
+27182,775437.8105,1342531.301,251889.8683,21
+27183,775435.4381,1342344.425,252841.4729,21
+27184,777056.3548,1341837.785,253904.7223,21
+27185,776371.1941,1342239.293,256351.8861,21
+27186,776906.4038,1342325.319,253894.121,21
+27187,777391.9462,1342027.851,257077.4164,21
+27188,778233.3104,1343060.154,256187.8273,21
+27189,777388.3385,1341212.582,259310.5645,21
+27190,779263.5533,1343445.355,258509.7551,21
+27191,778961.7455,1342361.929,259283.3583,21
+27192,779501.8469,1342041.79,259757.3012,21
+27193,780047.7406,1342918.85,261031.5675,21
+27194,780119.0642,1342652.608,261722.9975,21
+27195,779608.0735,1342616.25,261705.2154,21
+27196,781447.3378,1342723.881,263643.8348,21
+27197,781752.5744,1342322.792,264549.6093,21
+27198,781602.6339,1344293.387,263713.9886,21
+27199,781646.6618,1341808.224,266260.268,21
+27200,783025.0844,1342996.736,264690.2149,21
+27201,782178.0884,1342530.642,268448.7807,21
+27202,783074.9837,1344296.128,266387.1469,21
+27203,784602.0391,1341953.519,267218.1176,21
+27204,783540.1437,1343006.644,270811.1717,21
+27205,783698.1502,1343717.306,266771.8019,21
+27206,785025.0916,1342818.331,271354.7281,21
+27207,785068.9725,1342999.702,271254.0847,21
+27208,785439.1894,1343165.3,271445.7782,21
+27209,785229.2286,1343877.9,271631.4087,21
+27210,786717.8594,1343418.221,273077.9536,21
+27211,786677.4964,1345099.229,272492.1685,21
+27212,785918.347,1343395.538,275404.4256,21
+27213,788133.714,1344379.943,274190.664,21
+27214,787083.2267,1344119.59,275490.5436,21
+27215,787283.4744,1344366.171,274746.5221,21
+27216,788871.5017,1344908.301,278021.9342,21
+27217,788666.4073,1344107.773,276432.2856,21
+27218,788702.6825,1343618.294,278389.2269,21
+27219,789130.0748,1344847.569,278392.9926,21
+27220,790050.0152,1344192.808,278701.4786,21
+27221,789403.1322,1344932.029,280678.5821,21
+27222,790586.1614,1342871.58,279001.2649,21
+27223,790602.0393,1346313.327,280723.9726,21
+27224,790742.3344,1343424.713,282409.0207,21
+27225,790820.7626,1343289.858,281811.1753,21
+27226,792511.2693,1345132.065,282476.2792,21
+27227,791612.4004,1345246.316,283513.0662,21
+27228,791768.8725,1342726.548,283348.011,21
+27229,793368.7632,1345109.478,286496.5855,21
+27230,792283.658,1344297.255,283882.6682,21
+27231,793451.8608,1344876.409,286736.1387,21
+27232,793920.2979,1343909.163,288112.9967,21
+27233,793274.6288,1344147.736,287157.4585,21
+27234,794439.1982,1344334.029,288454.9741,21
+27235,794286.5113,1343496.258,288978.8806,21
+27236,795967.1058,1345770.22,289173.5353,21
+27237,794449.0811,1343349.25,289390.2279,21
+27238,795973.3439,1343698.213,290856.5807,21
+27239,795213.2008,1344950.92,292029.3432,21
+27240,797009.3159,1343233.041,291365.1395,15.6
+27241,0,0,0,15.6
+27242,0,429392.7644,0,15.6
+27243,0,0,0,15.6
+27244,0,0,0,15.6
+27245,0,0,0,15.6
+27246,0,0,1867714.151,15.6
+27247,0,0,0,15.6
+27248,0,0,0,15.6
+27249,339519.9246,0,0,15.6
+27250,0,0,0,15.6
+27251,0,0,0,15.6
+27252,0,0,0,15.6
+27253,0,0,0,15.6
+27254,0,0,0,15.6
+27255,0,0,0,15.6
+27256,0,0,0,15.6
+27257,0,0,0,15.6
+27258,0,0,0,15.6
+27259,0,0,0,15.6
+27260,0,429418.0309,0,15.6
+27261,0,0,0,15.6
+27262,0,0,0,15.6
+27263,0,0,0,15.6
+27264,0,0,0,15.6
+27265,0,0,0,15.6
+27266,0,0,0,15.6
+27267,0,0,0,15.6
+27268,0,0,0,15.6
+27269,0,0,0,15.6
+27270,0,0,0,15.6
+27271,0,0,0,15.6
+27272,0,0,0,15.6
+27273,0,0,0,15.6
+27274,0,0,0,15.6
+27275,0,0,0,15.6
+27276,0,0,0,15.6
+27277,0,0,0,15.6
+27278,0,0,0,15.6
+27279,0,0,0,15.6
+27280,0,429166.8004,0,15.6
+27281,0,0,1764097.592,15.6
+27282,0,0,0,15.6
+27283,0,0,0,15.6
+27284,0,0,0,15.6
+27285,339530.1995,0,0,15.6
+27286,0,0,0,15.6
+27287,0,0,0,15.6
+27288,0,0,0,15.6
+27289,0,0,0,15.6
+27290,0,0,0,15.6
+27291,0,0,0,15.6
+27292,0,0,0,15.6
+27293,0,0,0,15.6
+27294,0,0,0,15.6
+27295,0,0,0,15.6
+27296,0,0,0,15.6
+27297,0,0,0,15.6
+27298,0,429107.5149,0,15.6
+27299,0,0,0,15.6
+27300,0,0,0,15.6
+27301,0,0,0,15.6
+27302,0,0,0,15.6
+27303,0,0,0,15.6
+27304,0,0,0,15.6
+27305,0,0,0,15.6
+27306,0,0,0,15.6
+27307,0,0,0,15.6
+27308,0,0,0,15.6
+27309,0,0,0,15.6
+27310,0,0,0,15.6
+27311,0,0,0,15.6
+27312,0,0,0,15.6
+27313,0,0,0,15.6
+27314,0,0,0,15.6
+27315,0,0,0,15.6
+27316,0,0,1669480.897,15.6
+27317,0,0,0,15.6
+27318,0,0,0,15.6
+27319,0,0,0,15.6
+27320,0,0,0,15.6
+27321,339535.9865,0,0,15.6
+27322,0,0,0,15.6
+27323,0,428878.8021,0,15.6
+27324,0,0,0,15.6
+27325,0,0,0,15.6
+27326,0,0,0,15.6
+27327,0,0,0,15.6
+27328,0,0,0,15.6
+27329,0,0,0,15.6
+27330,0,0,0,15.6
+27331,0,0,0,15.6
+27332,0,0,0,15.6
+27333,0,0,0,15.6
+27334,0,0,0,15.6
+27335,0,0,0,15.6
+27336,0,0,0,15.6
+27337,0,0,0,15.6
+27338,0,0,0,15.6
+27339,0,0,0,15.6
+27340,0,0,0,15.6
+27341,0,0,0,15.6
+27342,0,0,0,15.6
+27343,0,0,0,15.6
+27344,0,0,0,15.6
+27345,0,0,0,15.6
+27346,0,0,0,15.6
+27347,0,0,0,15.6
+27348,0,428783.984,0,15.6
+27349,0,0,0,15.6
+27350,0,0,0,15.6
+27351,0,0,1582984.635,15.6
+27352,0,0,0,15.6
+27353,0,0,0,15.6
+27354,0,0,0,15.6
+27355,0,0,0,15.6
+27356,0,0,0,15.6
+27357,339534.6572,0,0,15.6
+27358,0,0,0,15.6
+27359,0,0,0,15.6
+27360,0,0,0,15.6
+27361,0,0,0,15.6
+27362,0,0,0,15.6
+27363,0,0,0,15.6
+27364,0,0,0,15.6
+27365,0,0,0,15.6
+27366,50905.2821,0,0,15.6
+27367,686.2029831,0,0,15.6
+27368,2469.818055,0,0,15.6
+27369,12155.8485,0,0,15.6
+27370,13417.02133,0,0,15.6
+27371,10069.82694,0,0,15.6
+27372,11200.97062,0,0,15.6
+27373,11266.66652,0,0,15.6
+27374,11438.93293,0,0,15.6
+27375,11477.69761,428704.1754,0,15.6
+27376,11622.83603,0,0,15.6
+27377,11707.96657,0,0,15.6
+27378,11768.31375,0,0,15.6
+27379,11905.63974,0,0,15.6
+27380,11996.30424,0,0,15.6
+27381,12079.26662,0,0,15.6
+27382,12197.80858,0,0,15.6
+27383,12273.88425,0,0,15.6
+27384,12391.2138,0,0,15.6
+27385,12462.20682,0,0,15.6
+27386,12593.99539,0,1503851.251,15.6
+27387,12664.57156,0,0,15.6
+27388,12748.0982,0,0,15.6
+27389,12875.57035,0,0,15.6
+27390,12942.98698,0,0,15.6
+27391,13050.19913,0,0,15.6
+27392,13182.19297,0,0,15.6
+27393,13203.67344,0,0,15.6
+27394,352893.576,0,0,15.6
+27395,13420.76477,0,0,15.6
+27396,0,0,0,15.6
+27397,0,0,0,15.6
+27398,0,0,0,15.6
+27399,0,0,0,15.6
+27400,0,428618.3216,0,15.6
+27401,62575.89756,0,0,15.6
+27402,0,0,0,15.6
+27403,2624.438558,0,0,15.6
+27404,21499.93495,0,0,15.6
+27405,13972.01057,0,0,15.6
+27406,14082.10639,0,0,15.6
+27407,14595.8975,0,0,15.6
+27408,14692.24132,0,0,15.6
+27409,14747.84172,0,0,15.6
+27410,14883.94337,0,0,15.6
+27411,14925.61132,0,0,15.6
+27412,15068.61615,0,0,15.6
+27413,15134.78201,0,0,15.6
+27414,15204.49103,0,0,15.6
+27415,15322.91128,0,0,15.6
+27416,15379.42344,0,0,15.6
+27417,15518.34604,0,0,15.6
+27418,15537.2329,0,0,15.6
+27419,15659.46785,0,0,15.6
+27420,15776.42589,0,0,15.6
+27421,15752.19435,0,1431897.869,15.6
+27422,444946.4725,0,0,15.6
+27423,15844.61354,0,0,15.6
+27424,15902.77478,36989.88307,0,15.6
+27425,15902.17609,430609.3049,0,15.6
+27426,15963.62999,3600.031877,0,15.6
+27427,15972.97518,13159.4534,0,15.6
+27428,16015.64438,10570.36065,0,15.6
+27429,16072.8808,9634.784441,0,15.6
+27430,16081.0455,10032.22208,0,15.6
+27431,339529.3011,9972.635141,0,15.6
+27432,0,10002.36414,0,15.6
+27433,0,9906.788797,0,15.6
+27434,0,9911.238746,0,15.6
+27435,68936.11252,9834.8891,0,15.6
+27436,0,9834.890282,0,15.6
+27437,5176.655805,9746.301417,0,15.6
+27438,25018.55251,9773.240445,0,15.6
+27439,15039.39841,9666.532145,0,15.6
+27440,16331.60555,9673.990427,0,15.6
+27441,16481.11174,9593.258664,0,15.6
+27442,16585.08245,9574.385209,0,15.6
+27443,16514.4606,9537.723987,0,15.6
+27444,16598.22613,9477.051744,0,15.6
+27445,16604.34248,9457.847037,0,15.6
+27446,16623.24044,9372.598657,0,15.6
+27447,16688.96967,9374.675868,0,15.6
+27448,16674.37979,9295.095785,0,15.6
+27449,16719.7872,9281.705,0,15.6
+27450,16738.90349,9231.311349,0,15.6
+27451,16633.82476,9169.094752,0,15.6
+27452,16672.12584,9127.692352,0,15.6
+27453,16723.36299,9188.436222,0,15.6
+27454,16690.37532,0,0,15.6
+27455,16794.3602,0,0,15.6
+27456,16728.41658,0,1366354.326,15.6
+27457,16807.78256,0,0,15.6
+27458,16824.09752,428418.8931,0,15.6
+27459,16825.9847,0,0,15.6
+27460,16855.44609,0,0,15.6
+27461,16903.21771,0,0,15.6
+27462,16906.62666,0,0,15.6
+27463,16921.41983,0,0,15.6
+27464,16964.11792,0,0,15.6
+27465,0,0,0,15.6
+27466,0,0,0,15.6
+27467,0,0,0,15.6
+27468,339527.9507,0,0,15.6
+27469,71641.38976,0,0,15.6
+27470,0,0,0,15.6
+27471,7414.134286,0,0,15.6
+27472,25596.72793,0,0,15.6
+27473,15708.23337,0,0,15.6
+27474,17278.74303,0,0,15.6
+27475,17299.21198,0,0,15.6
+27476,17366.20077,0,0,15.6
+27477,17335.97786,0,0,15.6
+27478,17391.85624,0,0,15.6
+27479,17390.86813,0,0,15.6
+27480,17411.46332,0,0,15.6
+27481,17427.71699,0,0,15.6
+27482,17498.49966,428325.1548,0,15.6
+27483,17577.6235,0,0,15.6
+27484,17559.78613,0,0,15.6
+27485,17652.28582,0,0,15.6
+27486,17707.29309,0,0,15.6
+27487,17720.75987,0,0,15.6
+27488,17791.74438,0,0,15.6
+27489,17826.16806,0,0,15.6
+27490,17896.89038,0,0,15.6
+27491,17916.2112,0,1306790.516,15.6
+27492,17995.71875,0,0,15.6
+27493,18013.33741,0,0,15.6
+27494,18110.96286,38822.88693,0,15.6
+27495,18092.554,2871.159834,0,15.6
+27496,18183.35976,3665.264092,0,15.6
+27497,18208.20511,15817.39952,0,15.6
+27498,18291.07184,11597.64778,0,15.6
+27499,0,11569.78262,0,15.6
+27500,0,12074.28758,0,15.6
+27501,0,12286.37231,0,15.6
+27502,0,12499.19402,0,15.6
+27503,75537.07256,12631.66562,0,15.6
+27504,3026.846692,12906.39041,0,15.6
+27505,348456.5788,13063.32428,0,15.6
+27506,26520.16152,441454.0369,0,15.6
+27507,17563.86087,13470.26067,0,15.6
+27508,18768.79899,13594.50991,0,15.6
+27509,18816.96815,13841.72679,0,15.6
+27510,18915.20373,14032.127,0,15.6
+27511,18923.68609,14197.48201,0,15.6
+27512,18964.82261,14389.87019,0,15.6
+27513,19026.62463,14598.70065,0,15.6
+27514,19033.29617,14831.18433,0,15.6
+27515,19123.81709,14914.17031,0,15.6
+27516,19159.50375,15218.3525,0,15.6
+27517,19205.53336,15355.42925,0,15.6
+27518,19259.71896,15576.5241,0,15.6
+27519,19273.44002,15741.36178,0,15.6
+27520,19354.67426,15974.26284,0,15.6
+27521,19376.55445,16142.16562,0,15.6
+27522,19440.60813,16353.27261,0,15.6
+27523,19475.97432,17240.99413,0,15.6
+27524,19497.88255,0,0,15.6
+27525,19583.20222,0,0,15.6
+27526,19596.89411,0,1252253.319,15.6
+27527,19641.88935,0,0,15.6
+27528,19743.49382,70697.57054,0,15.6
+27529,19738.7849,0,0,15.6
+27530,19761.86702,434001.7076,0,15.6
+27531,19863.13898,27822.10352,0,15.6
+27532,19841.60772,16512.30442,0,15.6
+27533,0,18422.82639,0,15.6
+27534,0,18731.86148,0,15.6
+27535,0,18927.31741,0,15.6
+27536,73914.22854,19150.81386,0,15.6
+27537,2577.077369,19281.9153,0,15.6
+27538,14033.96022,19533.369,0,15.6
+27539,26195.08509,19749.52347,0,15.6
+27540,19371.52447,19904.2874,0,15.6
+27541,20367.44305,19824.59192,0,15.6
+27542,359909.1996,19857.49634,0,15.6
+27543,20523.00542,19742.77761,0,15.6
+27544,20533.48148,19749.52275,0,15.6
+27545,20610.91679,19627.81324,0,15.6
+27546,20695.58139,19638.22577,0,15.6
+27547,20706.93803,19548.37776,0,15.6
+27548,20792.92343,19533.36744,0,15.6
+27549,20863.99556,19450.80628,0,15.6
+27550,20922.42317,19443.21066,0,15.6
+27551,20960.71327,19359.72283,0,15.6
+27552,21062.71989,19316.63383,0,15.6
+27553,21074.76624,19293.97034,0,15.6
+27554,21154.72609,19177.5478,0,15.6
+27555,21246.14967,19189.58158,0,15.6
+27556,21252.01352,19119.13974,0,15.6
+27557,21341.26322,19090.09935,0,15.6
+27558,21402.40898,0,0,15.6
+27559,21453.95012,0,0,15.6
+27560,21534.20131,0,0,15.6
+27561,21569.74411,0,1202432.645,15.6
+27562,21645.96484,79154.48673,0,15.6
+27563,21696.95229,0,0,15.6
+27564,21797.6161,5541.564494,0,15.6
+27565,21792.25734,29167.60668,0,15.6
+27566,0,16693.10059,0,15.6
+27567,0,18502.58177,0,15.6
+27568,0,18508.27986,0,15.6
+27569,78361.59211,18505.59338,0,15.6
+27570,8972.003169,18367.54502,0,15.6
+27571,12935.34016,18374.27194,0,15.6
+27572,29091.01478,18337.6186,0,15.6
+27573,21494.41589,18216.75028,0,15.6
+27574,22369.21321,446034.0867,0,15.6
+27575,22492.90977,18141.67536,0,15.6
+27576,22507.65358,18097.72137,0,15.6
+27577,22585.04284,18006.3634,0,15.6
+27578,22671.32106,18037.38763,0,15.6
+27579,362177.9786,17881.40069,0,15.6
+27580,22784.50163,17855.00612,0,15.6
+27581,22847.64212,17878.33223,0,15.6
+27582,22816.90475,17733.8269,0,15.6
+27583,23011.87912,17657.57062,0,15.6
+27584,22973.64448,17729.409,0,15.6
+27585,23083.27299,17535.65435,0,15.6
+27586,23098.9791,17581.09346,0,15.6
+27587,482184.1758,17474.46436,0,15.6
+27588,23274.59987,17442.27124,0,15.6
+27589,47719.67642,17340.60725,0,15.6
+27590,121040.2561,17365.28611,0,15.6
+27591,144060.7888,17235.64382,0,15.6
+27592,107729.8876,0,0,15.6
+27593,119131.4801,0,0,15.6
+27594,119237.5638,0,0,15.6
+27595,119777.0718,0,0,15.6
+27596,120419.5268,70968.62653,1156937.08,15.6
+27597,121160.0774,427785.961,0,15.6
+27598,121214.8257,3595.345562,0,15.6
+27599,98531.51699,26672.78354,0,15.6
+27600,98599.64237,15215.19453,0,17.8
+27601,915397.6035,1203746.793,0,17.8
+27602,919072.0231,526571.421,0,17.8
+27603,436377.8782,187702.6654,0,17.8
+27604,445100.6632,260553.2677,0,17.8
+27605,339152.8559,323617.1586,0,17.8
+27606,389117.7217,291879.2376,0,17.8
+27607,363158.2627,282080.4854,0,17.8
+27608,360175.8052,286282.2231,0,17.8
+27609,357794.0073,284334.8964,0,17.8
+27610,357020.6771,284637.3849,0,17.8
+27611,356047.3332,284048.1573,0,17.8
+27612,354918.908,284359.4453,0,17.8
+27613,354972.078,283683.8357,0,17.8
+27614,353849.1143,284182.0782,0,17.8
+27615,353102.7703,283618.5925,0,17.8
+27616,692510.1714,711324.5798,0,17.8
+27617,45986.98547,283389.9059,0,17.8
+27618,45855.94728,283100.8653,0,17.8
+27619,815184.1721,283621.1697,0,17.8
+27620,334019.34,282867.8806,0,17.8
+27621,268871.5488,283208.3568,0,17.8
+27622,388419.6501,283546.0185,0,17.8
+27623,350475.1324,283260.3624,0,17.8
+27624,349180.7132,282769.0978,0,17.8
+27625,349788.2932,283568.7038,0,17.8
+27626,348122.7458,241540.6505,0,17.8
+27627,348825.5767,241585.7146,0,17.8
+27628,347868.9583,345492.4111,0,17.8
+27629,347774.6995,258878.9439,0,17.8
+27630,347603.8174,280591.676,1115234.029,17.8
+27631,301563.8,40836.94156,0,17.8
+27632,302003.5712,38552.13836,0,17.8
+27633,391441.3112,468383.9115,0,17.8
+27634,360786.8091,774766.6952,0,17.8
+27635,346681.8825,76998.71048,0,17.8
+27636,340873.8831,280245.344,0,17.8
+27637,349386.7031,316711.2161,0,17.8
+27638,345743.3899,280614.9099,0,17.8
+27639,344800.9392,286232.3036,0,17.8
+27640,345553.9986,285013.7011,0,17.8
+27641,344007.4044,286683.3732,0,17.8
+27642,344915.0623,285567.3691,0,17.8
+27643,344401.9512,286696.2741,0,17.8
+27644,344218.5651,286239.7533,0,17.8
+27645,343669.8523,286789.3596,0,17.8
+27646,343790.0909,287234.5148,0,17.8
+27647,343965.6478,286674.1052,0,17.8
+27648,343163.8637,287615.2091,0,17.8
+27649,44605.26542,287733.2923,0,17.8
+27650,44740.63529,715327.9926,0,17.8
+27651,384008.5817,288179.288,0,17.8
+27652,858437.4693,288034.9944,0,17.8
+27653,449362.6152,288784.1486,0,17.8
+27654,237785.4679,288610.1115,0,17.8
+27655,370687.6139,289139.2585,0,17.8
+27656,355772.0099,289608.9042,0,17.8
+27657,343619.4389,289179.0681,0,17.8
+27658,343601.6785,246935.5554,0,17.8
+27659,343490.8656,246810.3577,0,17.8
+27660,343466.319,350716.4213,0,20
+27661,1104004.129,1948862.427,0,20
+27662,1115759.608,1422630.147,0,20
+27663,725450.6226,398398.9211,0,20
+27664,771256.5597,156719.6587,1077087.697,20
+27665,861681.3,1174353.162,0,20
+27666,731835.797,512457.681,0,20
+27667,765598.1982,721945.0414,0,20
+27668,708973.2098,600848.9536,0,20
+27669,735411.2277,619904.4016,0,20
+27670,725229.9438,708962.3747,0,20
+27671,710603.7212,643250.6067,0,20
+27672,700076.1976,658168.4226,0,20
+27673,705989.844,655418.5155,0,20
+27674,701088.6333,656390.6062,0,20
+27675,699441.8073,653023.2716,0,20
+27676,698389.0632,651655.2002,0,20
+27677,696060.6732,651780.7709,0,20
+27678,695385.6267,650287.624,0,20
+27679,692687.9593,647813.4199,0,20
+27680,692988.2592,648985.4589,0,20
+27681,691418.2943,645948.1348,0,20
+27682,129052.6665,647801.289,0,20
+27683,128998.6343,644153.225,0,20
+27684,942061.5275,644496.362,0,20
+27685,828331.5662,644412.4879,0,20
+27686,956995.1252,642187.4718,0,20
+27687,755898.4685,643016.352,0,20
+27688,634472.6472,642508.0371,0,20
+27689,689081.835,641018.6988,0,20
+27690,631709.7676,540728.3289,0,20
+27691,683707.4556,513351.8915,0,20
+27692,656679.0012,695650.1526,0,20
+27693,656422.2365,616435.0165,0,20
+27694,554362.7017,675051.7309,0,20
+27695,752293.0296,114821.009,0,20
+27696,669988.1465,131703.3248,0,20
+27697,672839.0859,1212459.855,0,20
+27698,683575.8633,450033.374,1042250.055,20
+27699,677947.8301,637302.9236,0,20
+27700,678503.1693,559166.0186,0,20
+27701,676333.9113,599289.3761,0,20
+27702,674532.4673,679492.2403,0,20
+27703,675067.4152,623626.043,0,20
+27704,675039.1486,635629.5432,0,20
+27705,672166.8014,639103.4247,0,20
+27706,675134.3025,636099.3006,0,20
+27707,670545.9386,639347.5394,0,20
+27708,674372.3718,636431.9815,0,20
+27709,670349.4071,638682.8463,0,20
+27710,671980.5575,636265.9314,0,20
+27711,671062.0191,637663.1869,0,20
+27712,670384.995,637945.202,0,20
+27713,670826.1548,636491.2946,0,20
+27714,122051.0251,636412.6847,0,20
+27715,122143.956,637850.0703,0,20
+27716,935161.2197,637656.6301,0,20
+27717,780281.1588,635927.321,0,20
+27718,620372.8515,637337.9283,0,20
+27719,697929.7428,637808.7821,0,20
+27720,628043.9687,636800.3598,0,21
+27721,2649205.315,2978648.826,1293370.537,21
+27722,1926752.188,2330300.025,70077.16744,21
+27723,616347.8298,638269.6002,76965.99915,21
+27724,687852.093,717779.3855,356371.5454,21
+27725,711628.697,894918.7681,205507.8654,21
+27726,993196.1666,978981.2646,225969.7929,21
+27727,772319.0462,849886.7504,227163.4866,21
+27728,818294.1409,878967.505,228570.6676,21
+27729,815084.1649,873884.2068,228615.2697,21
+27730,811634.135,873786.4942,229942.8607,21
+27731,809354.8291,869979.6859,230394.0892,21
+27732,805269.9195,867101.7414,231324.5817,21
+27733,801350.2133,864790.3952,234626.8323,21
+27734,801096.7794,861569.791,233489.5745,21
+27735,797272.0993,861111.277,234772.2253,21
+27736,795390.621,857113.244,236117.2084,21
+27737,792827.6658,855959.9502,236059.0692,21
+27738,790649.648,852417.455,237709.3289,21
+27739,788451.1898,852965.0788,237864.6236,21
+27740,786052.1208,847043.9381,238959.9616,21
+27741,783621.2249,849511.4016,240064.3191,21
+27742,783104.7246,845506.5193,240284.6372,21
+27743,779020.6324,842665.2148,241513.5386,21
+27744,779950.0343,842107.1516,243066.3955,21
+27745,776028.0863,841877.3766,248358.5956,21
+27746,774643.5636,837275.3287,246610.197,21
+27747,773713.6512,836272.0261,248109.8017,21
+27748,771388.3394,1263540.155,249495.2697,21
+27749,770066.2319,833465.5038,250440.237,21
+27750,768329.8682,831869.1641,251878.3694,21
+27751,766787.6606,830228.5156,252532.5522,21
+27752,765780.326,830349.4625,253333.476,21
+27753,762579.0839,826306.9516,254940.6067,21
+27754,764276.7134,827299.6399,255524.9642,21
+27755,760693.9354,823897.1215,256424.3291,21
+27756,759058.4,824231.8835,257470.4208,21
+27757,758642.0919,823167.0519,258877.9675,21
+27758,756821.088,820018.4608,259511.6173,21
+27759,756648.2553,820175.7811,260452.3683,21
+27760,753848.7144,817776.3896,261774.6773,21
+27761,754653.0194,817496.6903,262390.8157,21
+27762,750407.0632,814967.8967,263220.4497,21
+27763,752445.1097,815370.1152,264213.7469,21
+27764,749705.5826,814906.2038,265431.4962,21
+27765,749224.948,1237130.676,266536.1625,21
+27766,747320.6956,813163.5806,280836.5214,21
+27767,747101.5433,810067.1084,282989.8527,21
+27768,747047.8023,809010.3518,283510.3775,21
+27769,744891.0457,807658.8744,287247.1757,21
+27770,742592.7317,807641.4131,288499.7646,21
+27771,745259.597,804746.9653,292561.8743,21
+27772,741235.1719,806245.8873,292653.0796,21
+27773,741248.9851,803254.5826,297489.9882,21
+27774,741541.1308,804002.4719,298590.3342,21
+27775,738937.8274,800790.91,301343.8925,21
+27776,739580.28,802480.7128,303182.3418,21
+27777,737395.6297,800469.7609,305869.4263,21
+27778,737490.4958,798068.7788,307507.4521,21
+27779,737370.6124,800777.6379,311170.9198,21
+27780,735312.674,797764.3033,311382.8272,21
+27781,1088016.883,1334447.082,266507.5191,21
+27782,1083045.147,1330071.151,261172.3405,21
+27783,1081881.324,1327694.972,261590.232,21
+27784,1080132.292,1325404.885,261507.1852,21
+27785,1080417.133,1325560.469,262048.0576,21
+27786,1080292.275,1323207.39,262166.7625,21
+27787,1078286.41,1321416.626,265108.4584,21
+27788,1077746.235,1320796.036,264625.2891,21
+27789,1077964.769,1319124.322,265906.991,21
+27790,1077412.189,1319122.371,267030.4484,21
+27791,1075978.894,1315683.017,267501.8028,21
+27792,1077180.899,1315788.932,268881.1695,21
+27793,1075536.55,1315474.264,269149.0189,21
+27794,1074880.186,1312747.821,271382.9373,21
+27795,1074992.687,1313231.021,271405.6048,21
+27796,1074774.349,1310243.591,272195.4418,21
+27797,1073519.811,1311736.235,273862.4693,21
+27798,1074656.436,1307546.976,274264.6243,21
+27799,1072432.158,1309830.968,276122.0071,21
+27800,1073615.289,1306241.971,276110.2184,21
+27801,1072667.112,1307138.44,278149.1254,21
+27802,1072822.308,1304525.329,277844.703,21
+27803,1071564.32,1305225.906,280177.2275,21
+27804,1073218.826,1303766.146,280281.2617,21
+27805,1071193.681,1302319.987,281476.149,21
+27806,1072222.612,1300987.468,282734.658,21
+27807,1071372.549,1301397.435,283838.1465,21
+27808,1071557.375,1299693.619,283470.3522,21
+27809,1071026.614,1298722.09,286615.9927,21
+27810,1070039.002,1298947.891,284849.2885,21
+27811,1071605.468,1297475.164,288705.9221,21
+27812,1070560.165,1296379.453,287370.899,21
+27813,1069911.551,1295356.519,289651.171,21
+27814,1071892.791,1295987.471,290305.7452,21
+27815,1069120.572,1292781.377,291733.1082,21
+27816,1070852.832,1293616.357,290921.7339,21
+27817,1070233.197,1292872.101,293975.3182,21
+27818,1069574.136,1291493.399,293602.1115,21
+27819,1070570.719,1292017.855,295427.4812,21
+27820,1069479.898,1288357.827,296017.6416,21
+27821,1071065.985,1291249.692,296843.2514,21
+27822,1068672.238,1287609.978,298004.8067,21
+27823,1070232.293,1289556.777,297687.971,21
+27824,1070166.572,1287111.917,301131.6823,21
+27825,1069192.662,1286709.932,299723.1658,21
+27826,1069975.379,1285485.889,292092.7677,21
+27827,1068354.143,1286065.086,291394.7641,21
+27828,1061012.007,1284410.853,291072.9612,21
+27829,1058301.313,1283354.346,292772.4113,21
+27830,1058545.633,1283353.099,292222.9677,21
+27831,1057699.164,1283590.185,292905.4671,21
+27832,1055489.44,1281826.239,292319.7673,21
+27833,1056596.64,1280937.101,294690.6242,21
+27834,1055555.821,1280722.498,293705.3804,21
+27835,1053463.451,1280263.568,294166.0017,21
+27836,1055261.614,1279786.39,296026.4326,21
+27837,1052587.989,1278378.128,293737.3336,21
+27838,1052358.109,1278833.983,297428.7799,21
+27839,1052215.185,1276954.601,295075.7564,21
+27840,1053093.794,1276910.108,297383.6697,21
+27841,817787.1479,1043412.037,127130.5659,21
+27842,799897.8004,1024982.2,120684.0921,21
+27843,793284.97,1019447.146,118412.2766,21
+27844,790289.4314,1016265.397,116941.2052,21
+27845,787363.7788,1011665.543,115666.3379,21
+27846,784258.9807,1008947.883,113164.6468,21
+27847,781343.7738,1004956.098,113454.5326,21
+27848,778674.6908,1001539.557,110856.7291,21
+27849,776077.7821,999081.0944,110276.8336,21
+27850,773158.3385,995517.782,108983.8268,21
+27851,770360.4604,993172.0491,108039.98,21
+27852,768238.9878,989431.8045,106161.8412,21
+27853,765038.1053,987151.1468,105562.0957,21
+27854,762805.6677,984170.0286,104899.4124,21
+27855,760022.1252,982110.2614,103353.8763,21
+27856,757929.7992,979056.3452,102770.3872,21
+27857,754928.9174,977177.5484,101573.7291,21
+27858,752980.0757,975958.4945,101096.1069,21
+27859,750280.2953,974270.1758,99463.0961,21
+27860,748024.9793,972483.613,99064.63906,21
+27861,745696.3567,971320.0911,98170.06675,21
+27862,743559.2596,969236.2989,97395.87959,21
+27863,741364.006,968634.6309,95615.16265,21
+27864,738895.6021,966517.9072,95671.05543,21
+27865,737291.1793,965085.5444,94457.95185,21
+27866,734607.8781,963388.3295,93543.67337,21
+27867,732745.7869,962800.9291,92785.88862,21
+27868,730333.1445,960605.8431,91847.78639,21
+27869,728389.743,959530.0047,90908.91951,21
+27870,726555.7773,958298.9126,90091.0981,21
+27871,723932.1679,956305.6874,89109.28794,21
+27872,722116.3559,955874.1285,88053.20789,21
+27873,719753.5254,953402.3093,86861.33943,21
+27874,718176.8504,952988.3386,86114.75805,21
+27875,715635.7998,951364.1939,84831.75812,21
+27876,713590.378,949704.8389,83828.5198,21
+27877,711915.8524,948656.5016,83209.60951,21
+27878,709044.5515,947383.6941,81397.1287,21
+27879,708237.7352,945869.5578,81217.45102,21
+27880,705216.4675,944982.9332,79327.88823,21
+27881,703410.5787,943620.6022,79248.49533,21
+27882,701953.0474,942109.7152,77629.97742,21
+27883,699080.0151,940916.5849,76643.85014,21
+27884,697932.5664,939706.56,76020.70909,21
+27885,695111.9893,938295.0272,74654.93765,21
+27886,693894.5739,937384.3292,73774.92298,21
+27887,691652.872,936026.4144,72810.60416,21
+27888,689221.875,935032.5486,72680.92873,21
+27889,687888.4194,933242.2092,71912.60112,21
+27890,685648.9246,932196.6781,70539.38044,21
+27891,683872.8598,931430.1311,70279.13204,21
+27892,681910.2602,929830.3403,68678.89171,21
+27893,679631.8657,929047.3882,68058.26187,21
+27894,677891.8077,927389.5197,66935.11477,21
+27895,676031.4432,926398.3424,66030.50788,21
+27896,674218.0046,925033.4469,64849.63617,21
+27897,671874.5953,924331.0521,64245.86892,21
+27898,670247.6945,922830.3366,63293.55426,21
+27899,668416.1325,921730.1321,62180.19385,21
+27900,666369.4539,920200.5316,61062.00511,21
+27901,663933.376,921262.4227,61026.23827,21
+27902,663247.7909,919121.1609,59188.86015,21
+27903,662909.9399,919691.8537,59041.74212,21
+27904,661673.7735,918990.2816,57900.80128,21
+27905,661467.6302,918967.9848,57439.59571,21
+27906,661003.4316,918027.4649,56303.4076,21
+27907,659850.1464,918249.2869,55690.0886,21
+27908,661798.789,917759.429,54821.55091,21
+27909,661239.5921,917155.1485,53963.20379,21
+27910,660916.5521,916702.0716,53488.73696,21
+27911,660115.2911,917248.7787,51896.42497,21
+27912,660115.0862,915830.0605,52030.68845,21
+27913,659645.7221,916252.3138,49334.23795,21
+27914,658771.8539,915123.5547,48964.0676,21
+27915,658390.1553,915873.7927,48381.39832,21
+27916,658184.217,914554.4588,47007.04059,21
+27917,657615.5031,914421.8474,46716.80017,21
+27918,657193.2325,914605.0366,45915.84616,21
+27919,656831.1603,914127.7782,44775.65516,21
+27920,656204.9715,913645.9387,44178.03603,21
+27921,655904.0581,913308.6175,43811.32914,21
+27922,655269.6306,913065.5024,43344.57029,21
+27923,655190.7544,913084.2596,42677.62951,21
+27924,654508.2492,913090.0409,41978.5436,21
+27925,654457.0265,913689.774,41820.86947,21
+27926,653699.251,912089.4184,41285.82063,21
+27927,653281.6382,913384.1219,40416.73178,21
+27928,653159.982,911873.7114,40174.49743,21
+27929,652472.1982,911729.7883,39849.23933,21
+27930,652286.5412,912177.6105,38880.25422,21
+27931,651667.6983,911251.4198,38433.9959,21
+27932,651396.2758,911853.1207,38360.675,21
+27933,651086.2065,910247.6226,37142.60998,21
+27934,650783.2216,911065.8976,37372.57875,21
+27935,650593.1444,910525.2483,36306.09773,21
+27936,649942.9035,909893.392,36226.35101,21
+27937,650040.5716,909893.2403,35344.96293,21
+27938,649558.1051,909944.5649,34871.72151,21
+27939,649369.9992,909356.8479,34652.35589,21
+27940,649045.5959,909411.6564,33936.58552,21
+27941,648651.2933,908750.5015,33631.73926,21
+27942,648853.8763,908643.0459,32645.06171,21
+27943,647935.4632,908777.6893,32793.83882,21
+27944,648020.8139,908053.8114,31757.72492,21
+27945,647966.047,908040.2114,31501.0913,21
+27946,647581.9231,907800.5293,31072.98644,21
+27947,646908.4979,907698.1537,30200.22884,21
+27948,647113.461,907231.8041,30184.99445,21
+27949,647001.9711,906246.5953,29371.06029,21
+27950,646326.2249,906070.648,29184.19554,21
+27951,646418.1578,905755.1319,28203.59784,21
+27952,646427.6504,905784.4149,28179.05146,21
+27953,645795.8169,905197.1655,27294.75617,21
+27954,645720.9191,905232.2267,26924.36424,21
+27955,645316.9155,904833.0525,26729.16925,21
+27956,645526.9301,904654.7055,25851.91169,21
+27957,644961.5647,904519.8913,25453.89622,21
+27958,645174.2704,904406.8916,25002.41336,21
+27959,644759.3908,904297.1523,24724.18937,21
+27960,644402.938,903416.9037,23991.7498,21
+27961,649084.084,909679.9434,34089.81469,21
+27962,648489.4962,908947.9299,33800.4854,21
+27963,648486.0725,910514.9196,33615.32522,21
+27964,648283.7017,911106.5171,32861.49606,21
+27965,648065.6388,911014.2975,32684.72217,21
+27966,647709.5834,912626.1956,32299.50791,21
+27967,647905.6807,913025.048,31590.20205,21
+27968,647598.5121,913360.0336,31559.00856,21
+27969,646973.1735,914168.2425,30986.39063,21
+27970,647267.5959,914459.7336,30478.46988,21
+27971,646935.2122,915380.4391,30388.21605,21
+27972,646616.5152,916301.3041,29738.32526,21
+27973,646606.9928,916766.4358,29487.8056,21
+27974,646294.3075,917070.8342,28845.32403,21
+27975,646082.7886,918597.672,28939.97099,21
+27976,645954.274,918245.6409,27996.14805,21
+27977,645741.1907,919623.3771,28080.90185,21
+27978,645462.4255,920185.6431,27595.95788,21
+27979,645434.2685,920647.8943,27059.13346,21
+27980,644828.4173,921264.4156,26731.95947,21
+27981,645134.8878,922115.5491,26364.08967,21
+27982,644733.3893,922930.0527,26166.53026,21
+27983,644449.1501,923653.787,25506.95104,21
+27984,644208.9,924080.9725,25305.8572,21
+27985,644407.191,924471.8198,24958.69066,21
+27986,643931.5854,925871.2891,24405.79354,21
+27987,643651.3016,926268.1447,24245.42217,21
+27988,643846.2295,926970.7745,23721.04076,21
+27989,643110.7866,927519.3735,23531.87592,21
+27990,643485.7451,925713.3595,22975.91862,21
+27991,643002.4228,925562.5551,22660.27755,21
+27992,642852.9882,926336.839,22450.89501,21
+27993,642792.3606,926564.6196,21890.48992,21
+27994,642977.7966,927096.166,21779.67464,21
+27995,642277.8822,927781.3351,21496.2389,21
+27996,642662.0862,927521.4655,20872.41016,21
+27997,642331.6624,929259.4525,20801.79273,21
+27998,642063.4236,917367.4795,20288.33009,21
+27999,642432.2533,915111.9416,20083.78715,21
+28000,641837.625,915501.5839,19737.56484,21
+28001,641847.8523,915660.4116,19362.68516,21
+28002,641819.9131,916790.4427,19014.24358,21
+28003,641984.8448,915527.7976,18788.12109,21
+28004,640965.0725,916859.7199,18464.49583,21
+28005,641863.8354,916776.6444,18231.43213,21
+28006,641413.8254,916740.2654,17561.30641,21
+28007,641285.4003,917157.5266,17831.93851,21
+28008,641088.6862,917011.3202,16808.82553,21
+28009,641064.2781,917755.7233,17116.51268,21
+28010,641064.275,917187.8292,16227.56494,21
+28011,640850.5052,918616.3569,16381.2333,21
+28012,640787.4917,917885.8876,16013.32869,21
+28013,640725.8514,919052.0646,15299.07581,21
+28014,640749.2894,918576.4386,15602.73902,21
+28015,640233.4658,919243.5998,14876.37308,21
+28016,640653.1777,919920.8029,14679.40729,21
+28017,640394.3701,920135.0911,14324.17634,21
+28018,639910.3302,919476.8882,14242.12981,21
+28019,640453.8301,921657.583,13589.13611,21
+28020,640135.2277,920590.0045,13685.33682,21
+28021,633890.101,916672.6399,2812.2621,21
+28022,632608.2859,914678.3851,2968.842582,21
+28023,630349.3806,914911.1539,2215.502713,21
+28024,629004.4299,913616.9476,2246.659552,21
+28025,627149.3022,913879.0745,1957.947761,21
+28026,625490.6218,911975.1952,1731.527371,21
+28027,624285.9532,912102.7957,1520.981634,21
+28028,621706.367,911606.3582,1647.48942,21
+28029,620719.3688,910686.1606,1478.990722,21
+28030,619273.3484,910185.6344,1414.959106,21
+28031,616874.288,909226.2174,1394.696516,21
+28032,615734.1565,909234.1627,1352.400355,21
+28033,614370.8955,907818.5548,1352.409868,21
+28034,613654.1929,907889.7168,1287.854914,21
+28035,612749.037,907142.5262,1269.256986,21
+28036,611202.9246,905863.7585,1245.271321,21
+28037,609392.9841,905901.6837,1224.883149,21
+28038,607998.0409,904936.2274,1172.851914,21
+28039,606209.4365,904270.3222,1170.950736,21
+28040,604684.3934,903840.8927,1118.783237,21
+28041,603254.7498,903069.2503,1087.017316,21
+28042,601414.5827,902488.3778,1096.279241,21
+28043,599857.5245,902180.2644,1011.974838,21
+28044,599007.4056,900819.3091,1041.780464,21
+28045,596700.1651,900607.4343,968.6084589,21
+28046,595031.4262,900366.3813,957.1914112,21
+28047,593787.4411,898643.836,925.0715232,21
+28048,591909.5218,899032.5474,902.0456286,21
+28049,590212.7365,897994.157,869.7667823,21
+28050,589405.2381,897132.25,837.4027293,21
+28051,586459.1841,897390.1996,837.4065218,21
+28052,585932.0485,896636.3122,793.2145004,21
+28053,583422.5182,896311.2872,748.7161554,21
+28054,582104.4814,896155.3894,793.2211169,21
+28055,580530.618,895711.0399,703.8034378,21
+28056,578950.0065,895331.349,727.8663694,21
+28057,576676.7648,895440.6701,670.6573786,21
+28058,574838.2073,894908.2561,670.6598032,21
+28059,573539.7587,893974.0008,637.1482315,21
+28060,571450.3924,895049.0498,637.1504185,21
+28061,568386.1207,893566.1885,616.1683093,21
+28062,566250.0197,893681.0241,616.170364,21
+28063,564367.5278,893902.9016,616.1724186,21
+28064,562694.5773,892696.1033,616.1744717,21
+28065,561157.8163,893341.8468,595.1481396,21
+28066,559184.8029,893366.5304,595.1500656,21
+28067,557494.875,892585.7416,574.0784822,21
+28068,555208.8766,892716.2259,574.0802836,21
+28069,553955.6437,891876.7015,574.0820854,21
+28070,551612.9479,891897.2911,552.9639225,21
+28071,550327.07,891368.6161,531.7979659,21
+28072,548156.2827,891492.2539,552.9672284,21
+28073,546411.8912,890372.7841,510.5843086,21
+28074,544957.5968,890734.079,510.5857576,21
+28075,542448.6623,889733.0154,510.5872033,21
+28076,541330.8633,889829.3637,510.5886505,21
+28077,539404.4899,888843.3019,468.0022733,21
+28078,537529.7198,888714.4083,489.3236531,21
+28079,535634.6732,887640.4287,468.0047781,21
+28080,533879.101,886383.4567,468.0060086,21
+28081,563015.5545,918649.105,1069.280507,21
+28082,563761.4589,919840.0655,1109.695604,21
+28083,562835.3255,922759.0774,3458.689162,21
+28084,562970.2441,923661.7176,14931.35777,21
+28085,562724.3261,925771.6613,7852.955874,21
+28086,561984.1473,927164.4399,11900.09665,21
+28087,562051.9439,929643.1419,10335.11602,21
+28088,561740.2569,930668.8599,10843.82507,21
+28089,561040.1856,932951.0246,10640.73363,21
+28090,561035.6036,934516.1008,10630.50488,21
+28091,560585.876,936718.1473,10578.96263,21
+28092,560591.1998,938099.8016,10221.43965,21
+28093,560036.6615,939988.5656,10038.50211,21
+28094,559602.7441,941778.9196,9973.779082,21
+28095,559540.1116,943891.91,9834.006698,21
+28096,559084.8147,945107.3917,9585.023658,21
+28097,558719.2489,947548.6552,9585.737533,21
+28098,558354.5682,948706.3833,9398.910766,21
+28099,558153.4638,951164.0541,9522.720125,21
+28100,557638.9082,952350.053,9009.065708,21
+28101,557763.0939,954502.6081,9127.516501,21
+28102,556820.2214,955819.4118,8943.883815,21
+28103,557150.0644,958044.8324,8921.530036,21
+28104,556190.2716,959955.433,8570.651614,21
+28105,556394.0312,961010.7699,8663.110396,21
+28106,555555.9779,963732.6619,8375.312605,21
+28107,555653.0499,964636.6117,8435.750274,21
+28108,554608.4877,967085.2722,8134.402563,21
+28109,554765.2292,968394.5801,8069.943934,21
+28110,554395.6952,970327.1735,7873.863756,21
+28111,553898.2489,972155.5525,7874.111145,21
+28112,553773.3576,973905.5046,7630.288058,21
+28113,553726.0647,975476.4428,7633.825297,21
+28114,553424.5986,977398.2611,7609.869245,21
+28115,553535.8706,978929.2805,7246.625441,21
+28116,553013.0995,981049.4064,7544.821621,21
+28117,553312.1503,982096.4636,7214.209879,21
+28118,552954.0246,984643.8956,7357.653674,21
+28119,552763.378,985685.0122,7291.466506,21
+28120,552515.1175,987538.7112,7172.746311,21
+28121,552864.3724,989036.7425,7102.835301,21
+28122,552107.6359,991540.3914,7271.016568,21
+28123,552356.046,992747.9768,7094.694204,21
+28124,552278.9895,994440.8762,7061.048425,21
+28125,552008.7481,996170.9307,7039.94143,21
+28126,552246.4638,997878.2947,6875.582036,21
+28127,551448.487,1000121.328,7183.37083,21
+28128,551939.2942,1001401.653,6854.657706,21
+28129,551788.7993,1002945.74,6998.0554,21
+28130,551240.8736,1004774.81,6833.667995,21
+28131,551677.229,1007041.436,6790.774599,21
+28132,551432.5111,1007404.165,6812.609919,21
+28133,551186.6544,1010712.145,6604.649958,21
+28134,551107.5106,1011321.912,6769.818508,21
+28135,551342.0598,1013681.458,6583.374067,21
+28136,550873.8276,1014521.878,6583.597837,21
+28137,551279.2635,1017173.798,6396.771743,21
+28138,550697.0735,1018846.569,6540.359712,21
+28139,550938.3343,1019800.658,6209.770276,21
+28140,550930.9633,1022328.282,6518.835162,21
+28141,521412.5466,990334.8449,0,21
+28142,522272.4319,989395.8984,0,21
+28143,521609.4723,987915.4661,0,21
+28144,522024.9153,987362.6143,0,21
+28145,522491.1481,985821.2027,0,21
+28146,522754.9155,985088.039,0,21
+28147,522972.0602,984108.1148,0,21
+28148,523018.0123,982318.7061,0,21
+28149,523391.3818,982565.2842,0,21
+28150,523837.1714,980344.6726,0,21
+28151,523810.7066,979196.4224,0,21
+28152,524058.9067,979517.4266,0,21
+28153,524495.6739,976920.2737,0,21
+28154,524994.5806,976615.7846,0,21
+28155,524649.0103,975508.5326,0,21
+28156,525244.6783,974294.242,0,21
+28157,525675.9275,973483.1254,0,21
+28158,525406.1913,972003.708,0,21
+28159,526463.5098,971543.6456,0,21
+28160,525983.1259,969798.6125,0,21
+28161,526938.7582,969867.7845,0,21
+28162,527089.9267,967411.9492,0,21
+28163,527238.3933,967766.6268,0,21
+28164,527569.6707,966074.8028,0,21
+28165,527716.1218,964900.1105,0,21
+28166,528661.6954,964663.5182,0,21
+28167,528234.4376,962706.858,0,21
+28168,528956.295,962135.8309,0,21
+28169,529337.2145,961165.0447,0,21
+28170,529514.7403,960109.3577,0,21
+28171,529629.986,958880.7443,0,21
+28172,530070.8643,958551.9244,0,21
+28173,530232.8975,957277.7741,0,21
+28174,530210.4246,956651.0319,0,21
+28175,530397.3139,955514.1815,0,21
+28176,530998.3505,955158.3657,0,21
+28177,530571.5458,953694.5239,0,21
+28178,531067.3002,952777.5853,0,21
+28179,531212.6057,952156.5256,0,21
+28180,531121.0715,951202.8959,0,21
+28181,531774.851,950622.1246,0,21
+28182,531496.3474,949491.9369,0,21
+28183,531781.3152,948567.2063,0,21
+28184,532224.867,947966.9201,0,21
+28185,531897.2522,946969.2004,0,21
+28186,532735.2274,946364.8604,0,21
+28187,532214.0655,944791.3954,0,21
+28188,532680.1079,945202.7168,0,21
+28189,532930.9177,942809.7221,0,21
+28190,532637.111,942837.2523,0,21
+28191,533175.1146,942331.1976,0,21
+28192,533515.0038,940671.571,0,21
+28193,533015.7453,940430.4172,0,21
+28194,533769.7858,938900.2459,0,21
+28195,533548.6372,938644.1639,0,21
+28196,531748.7164,937280.1585,0,21
+28197,532105.3386,936527.9414,0,21
+28198,531487.0924,935949.7438,0,21
+28199,531647.416,935178.5411,0,21
+28200,531896.8661,933373.1405,0,21
+28201,535166.9978,940380.4396,0,21
+28202,534029.3242,942219.4094,0,21
+28203,532197.4298,943868.9535,0,21
+28204,530787.0085,945232.3842,0,21
+28205,529666.5739,947350.2068,0,21
+28206,528172.0825,948574.8729,0,21
+28207,526227.8498,950411.9791,0,21
+28208,525331.8562,951247.5602,0,21
+28209,523777.6506,953379.7938,0,21
+28210,522222.2426,955162.4992,0,21
+28211,520990.6885,956486.5374,0,21
+28212,519301.6595,958267.9925,0,21
+28213,518035.4908,960904.8518,0,21
+28214,516266.0587,961040.6728,0,21
+28215,515176.131,963938.42,0,21
+28216,513440.6483,965120.3576,0,21
+28217,512051.3051,966819.7159,0,21
+28218,510591.7589,968733.3042,0,21
+28219,508810.8086,970645.0035,0,21
+28220,507905.5,972127.4092,0,21
+28221,506241.8193,973755.7882,0,21
+28222,504136.0167,975562.7904,0,21
+28223,503709.4385,977129.3715,0,21
+28224,501744.5897,978472.2872,0,21
+28225,500028.0589,980554.9849,0,21
+28226,498458.7737,982037.2449,0,21
+28227,497363.3321,984056.6369,0,21
+28228,495796.2993,985415.2296,0,21
+28229,494217.0805,987329.2167,0,21
+28230,492532.1279,988625.2643,0,21
+28231,491551.3049,991025.0446,0,21
+28232,490663.4969,992153.5641,0,21
+28233,489655.3087,994291.6198,0,21
+28234,488801.8003,995499.7966,0,21
+28235,487892.2603,997536.6038,0,21
+28236,486608.8545,998650.148,0,21
+28237,485818.4954,1001107.329,0,21
+28238,485162.9903,1002450.989,0,21
+28239,483941.257,1003469.492,0,21
+28240,483345.6553,1006163.583,0,21
+28241,482104.8961,1007234.86,0,21
+28242,481922.8145,1008876.743,0,21
+28243,480394.6466,1010819.39,0,21
+28244,480024.6457,1011987.092,0,21
+28245,479195.1377,1014601.458,0,21
+28246,478471.9312,1014902.973,0,21
+28247,477102.9178,1017739.335,0,21
+28248,476841.3526,1018635.954,0,21
+28249,476252.5723,1021268.837,0,21
+28250,474794.849,1021796.92,0,21
+28251,474766.0155,1023815.792,0,21
+28252,473605.0592,1025890.747,0,21
+28253,473038.348,1027412.784,0,21
+28254,472347.2842,1028659.506,0,21
+28255,471757.9995,1030658.305,0,21
+28256,471201.3464,1032354.59,0,21
+28257,470070.7066,1034051.3,0,21
+28258,469719.6923,1035232.172,0,21
+28259,469138.1291,1037475.924,0,21
+28260,468234.1771,1039179.655,0,21
+28261,465906.3002,1034944.772,0,21
+28262,468169.6098,1035867.47,0,21
+28263,470821.0386,1035084.239,0,21
+28264,472986.9054,1035147.685,0,21
+28265,477221.9096,1035374.543,0,21
+28266,480050.0648,1034619.855,0,21
+28267,482805.078,1034539.815,0,21
+28268,485243.4139,1034734.251,0,21
+28269,487701.044,1033704.91,0,21
+28270,489863.2156,1034394.396,0,21
+28271,492741.5138,1033242.828,0,21
+28272,495353.7866,1033254.794,0,21
+28273,497503.4021,1033506.624,0,21
+28274,500457.73,1032672.529,0,21
+28275,502809.8646,1032722.37,0,21
+28276,505390.8213,1031414.659,0,21
+28277,507863.3734,1031783.683,0,21
+28278,510711.3762,1031263.914,0,21
+28279,513247.0205,1030559.426,0,21
+28280,515753.9393,1030311.945,0,21
+28281,518168.7481,1030386.127,0,21
+28282,520616.6269,1029486.95,0,21
+28283,523727.1122,1029926.128,0,21
+28284,526074.3121,1028519.186,0,21
+28285,528620.9213,1029407.658,0,21
+28286,531231.8696,1028686.037,0,21
+28287,534091.0664,1027532.168,0,21
+28288,536334.2416,1028094.34,0,21
+28289,539186.6613,1027305.099,0,21
+28290,541949.4147,1026637.252,0,21
+28291,543942.8025,1027042.868,0,21
+28292,545994.3419,1026002.986,0,21
+28293,548542.8272,1025847.513,0,21
+28294,549960.745,1025283.537,0,21
+28295,552788.0346,1025005.794,0,21
+28296,554266.3805,1024798.581,0,21
+28297,556754.44,1023982.706,0,21
+28298,558713.5563,1023508.186,0,21
+28299,560539.9594,1023747.624,0,21
+28300,563330.0071,1022450.677,0,21
+28301,564650.1687,1022745.971,0,21
+28302,566984.0736,1021932.922,0,21
+28303,567407.4547,1021891.421,0,21
+28304,569022.2567,1021078.218,0,21
+28305,570998.2288,1020496.871,0,21
+28306,572815.2473,1020690.632,0,21
+28307,574944.3272,1020079.345,0,21
+28308,576864.6637,1019227.328,0,21
+28309,578951.1795,1018710.009,0,21
+28310,580527.7037,1018962.591,0,21
+28311,583060.0678,1018174.007,0,21
+28312,584824.4771,1017608.57,0,21
+28313,587114.1839,1017187.81,0,21
+28314,588404.0642,1017152.928,0,21
+28315,590940.1376,1015663.995,0,21
+28316,592580.0145,1016261.561,0,21
+28317,594737.4494,1015530.564,0,21
+28318,597002.0018,1014801.631,0,21
+28319,598560.6566,1014546.395,0,21
+28320,600609.543,1014205.612,0,21
+28321,599649.2373,1014351.461,0,21
+28322,599005.9589,1015408.488,0,21
+28323,597715.2992,1016215.525,0,21
+28324,596909.85,1016973.289,0,21
+28325,596219.3618,1017247.567,0,21
+28326,594469.0813,1018529.343,0,21
+28327,592529.9216,1018667.538,0,21
+28328,590597.1195,1019664.534,0,21
+28329,589545.124,1020144.93,0,21
+28330,588823.5568,1021485.012,0,21
+28331,587408.9886,1021122.203,0,21
+28332,586582.3077,1022953.86,0,21
+28333,585357.5135,1022660.874,0,21
+28334,584287.4586,1023952.887,0,21
+28335,583657.7285,1024275.879,0,21
+28336,581943.4475,1025361.415,0,21
+28337,581247.8953,1025454.598,0,21
+28338,580154.3753,1027327.033,0,21
+28339,579106.6378,1026744.839,0,21
+28340,577753.7273,1027856.991,0,21
+28341,576985.4871,1028711.34,0,21
+28342,575591.7046,1029013.2,0,21
+28343,575072.7187,1030562.995,0,21
+28344,573202.4252,1030074.069,0,21
+28345,572854.7156,1031693.149,0,21
+28346,571838.9434,1031956.173,0,21
+28347,570027.8395,1032638.958,0,21
+28348,569784.5138,1033243.45,0,21
+28349,566200.2322,1034682.781,0,21
+28350,564899.0659,1033852.544,0,21
+28351,563976.6162,1036460.967,0,21
+28352,562987.796,1035516.256,0,21
+28353,562577.5511,1037202.846,0,21
+28354,561292.1099,1037258.964,0,21
+28355,561172.6525,1038553.86,0,21
+28356,560628.1741,1038375.931,0,21
+28357,559811.4698,1039776.027,0,21
+28358,559805.8484,1039960.893,0,21
+28359,559264.3738,1041440.267,0,21
+28360,558430.795,1041321.485,0,21
+28361,559861.1558,1042219.149,0,21
+28362,559264.3232,1043100.356,0,21
+28363,559168.2102,1043552.746,0,21
+28364,558732.8407,1044366.058,0,21
+28365,558363.8333,1045238.012,0,21
+28366,557906.739,1045266.325,0,21
+28367,557497.9729,1046652.425,0,21
+28368,557548.5781,1046756.864,0,21
+28369,557163.9407,1047849.907,0,21
+28370,556542.4209,1048509.024,0,21
+28371,556231.8491,1048961.127,0,21
+28372,556187.149,1049314.885,0,21
+28373,555688.588,1050903.26,0,21
+28374,555310.6149,1051242.271,0,21
+28375,555189.6775,1051478.77,0,21
+28376,554717.4276,1052826.457,0,21
+28377,554396.6312,1052820.463,0,21
+28378,554114.8554,1053539.28,0,21
+28379,554077.4517,1055088.846,0,21
+28380,553716.1049,1054897.003,0,21
+28381,618799.0343,1124489.181,0,21
+28382,624191.2849,1129415.483,0,21
+28383,626003.5472,1130511.383,0,21
+28384,628083.0075,1132294.815,0,21
+28385,630254.4484,1133500.906,0,21
+28386,633332.763,1134994.345,0,21
+28387,635878.0046,1136580.696,7557.199094,21
+28388,648229.3235,1137303.78,7067.349872,21
+28389,643066.7918,1139595.157,6245.393673,21
+28390,646687.1301,1140408.348,7557.992942,21
+28391,648915.646,1141053.828,7721.167323,21
+28392,650239.648,1143739.381,8046.527546,21
+28393,652033.9339,1144453.545,8532.690864,21
+28394,653557.2125,1145173.862,8694.537788,21
+28395,654826.3954,1147115.991,9178.075634,21
+28396,656642.3658,1147446.135,9339.104247,21
+28397,658218.6367,1149325.908,9660.152867,21
+28398,658979.201,1150326.541,9980.408654,21
+28399,661249.7881,1151617.623,10299.89148,21
+28400,661842.0685,1152016.156,10618.62004,21
+28401,663706.5032,1153812.888,10777.96932,21
+28402,664608.4284,1154476.326,11253.87857,21
+28403,666427.7603,1155932.802,11412.53903,21
+28404,667143.5509,1155958.755,11765.79215,21
+28405,668650.7071,1158282.918,12389.65109,21
+28406,669666.205,1158471.979,12570.38596,21
+28407,671423.6591,1159524.632,12974.44808,21
+28408,672053.3566,1160288.294,12997.41682,21
+28409,673365.6076,1162041.963,13667.53908,21
+28410,674660.2863,1162416.812,13712.30858,21
+28411,675539.1359,1164532.286,14202.16447,21
+28412,677069.955,1164136.464,14402.02024,21
+28413,677852.1557,1165888.111,14424.61101,21
+28414,678633.9405,1166436.071,15088.8459,21
+28415,680677.7347,1167390.694,15111.3506,21
+28416,680917.9332,1167781.95,15464.40777,21
+28417,682658.9472,1169175.464,15486.8086,21
+28418,682939.2677,1170061.474,16125.68835,21
+28419,684553.7839,1170257.889,16036.67159,21
+28420,685471.3478,1171392.083,16499.04464,21
+28421,686211.3135,1172367.904,16542.49591,21
+28422,687598.6302,1172653.108,16871.56574,21
+28423,688514.8218,1173824.426,17221.10843,21
+28424,689265.2938,1174448.594,17396.22677,21
+28425,690480.0539,1175043.595,17592.12525,21
+28426,691147.8733,1175883.386,17898.54965,21
+28427,692962.4017,1176698.887,17962.38591,21
+28428,692812.9935,1177189.945,18289.12596,21
+28429,694345.5653,1177855.786,18615.33558,21
+28430,695238.0586,1178727.929,18789.27863,21
+28431,695931.6469,1179396.457,18983.7487,21
+28432,697061.9339,1179602.97,19824.28022,21
+28433,698268.7067,1180662.962,20168.56118,21
+28434,698198.4104,1181215.726,20341.24983,21
+28435,700382.538,1181772.657,20664.28721,21
+28436,700218.9981,1182017.612,20706.62305,21
+28437,701576.138,1182910.87,21029.15262,21
+28438,702432.5376,1183180.935,21201.20603,21
+28439,702962.1659,1183046.764,21393.40091,21
+28440,704197.5267,1183634.003,21714.96158,21
+28441,726230.0798,1207297.539,28187.55507,21
+28442,728211.8194,1211662.934,28867.2287,21
+28443,728474.8213,1232811.376,29322.9723,21
+28444,729642.1088,1271405.195,29533.2978,21
+28445,730702.3825,1246477.384,30812.17629,21
+28446,730515.6809,1258934.16,30617.4458,21
+28447,732399.6149,1260451.376,31140.13263,21
+28448,731876.3162,1264790.314,31552.83739,21
+28449,733455.7799,1265769.699,34783.91437,21
+28450,733362.8669,1270005.861,36516.38082,21
+28451,734641.8778,1270498.443,36339.4225,21
+28452,735028.7158,1275092.752,37136.59,21
+28453,735787.2478,1277564.058,38289.40691,21
+28454,736396.252,1278295.517,38886.05348,21
+28455,757200.8297,1282582.841,39379.59715,21
+28456,749079.1119,1284111.6,40440.81303,21
+28457,753300.0089,1287243.199,40808.177,21
+28458,755313.0685,1289112.193,41968.67543,21
+28459,756165.0284,1291319.202,41926.2847,21
+28460,759041.2338,1295005.858,43204.19071,21
+28461,758849.3906,1295428.455,43748.41743,21
+28462,761180.7352,1298896.776,44293.9222,21
+28463,761972.0577,1301034.839,44695.47929,21
+28464,763674.3934,1303098.889,49235.04804,21
+28465,765917.6738,1305583.502,49050.69356,21
+28466,765320.9652,1308069.146,49766.49104,21
+28467,767604.6988,1309564.724,51074.20602,21
+28468,768939.4817,1312059.079,51766.02274,21
+28469,769947.2291,1313920.94,53196.4001,21
+28470,771114.3312,1316879.142,53669.2989,21
+28471,771764.7301,1318383.807,55109.04206,21
+28472,773944.7863,1320946.101,55798.43194,21
+28473,774411.347,1322487.531,57169.54346,21
+28474,775494.2987,1324914.684,57690.86523,21
+28475,777251.4349,1327571.491,59130.88853,21
+28476,777919.8764,1328832.803,59339.74031,21
+28477,778265.247,1331742.464,60934.1722,21
+28478,780244.0972,1332856.647,61347.62561,21
+28479,780863.6004,1335789.69,62465.23969,21
+28480,782027.14,1336645.394,63259.64374,21
+28481,783049.9006,1339928.286,64082.83247,21
+28482,783765.2041,1341195.073,65007.33987,21
+28483,784647.8309,1343610.136,65989.31388,21
+28484,785728.0708,1344783.822,66729.14333,21
+28485,787027.4304,1347630.986,67324.0128,21
+28486,787745.0029,1349107.568,68682.32618,21
+28487,788024.2986,1351582.058,68871.43009,21
+28488,789849.2941,1352933.439,70125.44285,21
+28489,789858.9493,1356040.419,70818.41095,21
+28490,791552.8554,1356321.937,71416.40037,21
+28491,791508.4859,1359783.72,72633.92008,21
+28492,793185.3064,1361059.184,72762.61693,21
+28493,794687.8622,1363136.281,73972.34595,21
+28494,793556.4973,1364029.414,74741.06371,21
+28495,795470.2906,1367569.969,75760.94971,21
+28496,796836.7907,1368451.885,76048.6336,21
+28497,796532.7797,1370361,76979.81347,21
+28498,797306.873,1373519.786,78113.14085,21
+28499,799346.7735,1373785.621,78455.46296,21
+28500,799011.1935,1375940.993,79242.32662,21
+28501,800387.6799,1376938.29,80416.77204,21
+28502,802330.6747,1374587.986,80431.63654,21
+28503,804126.4742,1376297.543,81765.90409,21
+28504,805330.6919,1374278.295,82953.92401,21
+28505,805000.6651,1373903.885,82604.92206,21
+28506,808061.9509,1374428.121,84250.2882,21
+28507,808651.4021,1371907.06,84825.40827,21
+28508,809886.9386,1372827.445,85081.7338,21
+28509,810881.0506,1371205.511,86542.26457,21
+28510,811435.9758,1370573.408,86768.10554,21
+28511,813499.5822,1370885.929,87580.71992,21
+28512,813837.5444,1368674.15,88410.30017,21
+28513,815670.7481,1368820.871,89113.29749,21
+28514,816263.2003,1368149.717,90081.79427,21
+28515,816991.2884,1368215.917,90473.33772,21
+28516,819931.1949,1365275.684,91098.76627,21
+28517,818198.3163,1367054.744,92457.64893,21
+28518,822581.7632,1364695.744,92402.06917,21
+28519,821110.7171,1364259.902,93628.45357,21
+28520,823328.9195,1363210.033,93951.67919,21
+28521,824927.8252,1363605.628,94897.75122,21
+28522,824605.1671,1361466.754,95547.67352,21
+28523,826819.8806,1361403.532,96134.16342,21
+28524,827704.6421,1360011.7,96888.75276,21
+28525,827935.0893,1359592.818,97713.62311,21
+28526,830053.1279,1359420.953,97826.74782,21
+28527,830227.8758,1357402.588,99596.3406,21
+28528,831659.6056,1357703.07,99099.723,21
+28529,833800.1217,1356030.055,100840.6662,21
+28530,832888.0007,1356249.031,100674.8572,21
+28531,835339.5551,1353600.319,101334.0775,21
+28532,835872.4222,1354373.315,102706.0686,21
+28533,836942.748,1353218.713,102874.5677,21
+28534,838151.5762,1351631.37,103522.6089,21
+28535,838074.7849,1351798.783,104376.6155,21
+28536,840691.7605,1350269.152,104770.3348,21
+28537,840382.5438,1349135.652,105650.4697,21
+28538,842223.0386,1348682.422,106300.4352,21
+28539,842653.4152,1347965.692,106438.8279,21
+28540,844208.5854,1346661.396,107799.8293,21
+28541,845505.1352,1346232.553,108219.9422,21
+28542,845605.6399,1344270.359,108578.9985,21
+28543,846336.3008,1344251.942,109685.0275,21
+28544,849011.7489,1343462.893,110451.453,21
+28545,847900.101,1342287.135,110795.0508,21
+28546,850173.2287,1340665.862,111992.6689,21
+28547,851308.1393,1340798.3,111986.6918,21
+28548,851172.983,1339185.876,113589.7158,21
+28549,852839.6872,1338195.606,113306.5082,21
+28550,854788.9828,1337882.299,114153.1187,21
+28551,853676.9404,1335436.978,115372.6308,21
+28552,856303.4951,1335987.778,115608.0528,21
+28553,855925.2115,1335292.204,116438.0803,21
+28554,858567.6087,1332440.049,116907.1821,21
+28555,858031.8762,1333307.254,117554.366,21
+28556,859033.6313,1330762.745,118514.6253,21
+28557,860295.1981,1330850.203,118581.1045,21
+28558,860807.1363,1328758.741,119808.5376,21
+28559,863214.42,1326638.597,119982.7873,21
+28560,862226.6779,1326471.626,121128.9258,21
+28561,872643.4172,1336675.619,124873.5616,21
+28562,875018.1187,1340098.696,126142.7014,21
+28563,877707.577,1341962.045,127335.0384,21
+28564,877835.1706,1345473.599,127453.8424,21
+28565,879785.4558,1345491.38,128719.76,21
+28566,882209.0677,1349812.198,129253.6813,21
+28567,883193.7523,1351415.521,129791.5691,21
+28568,884077.9082,1352015.373,130664.5657,21
+28569,886621.9964,1356209.753,131075.2327,21
+28570,887009.3393,1356429.554,132250.232,21
+28571,889689.8826,1359816.781,132618.0625,21
+28572,890207.657,1359780.234,133081.6982,21
+28573,892221.832,1364153.565,133969.8638,21
+28574,892763.3675,1364044.114,134572.615,21
+28575,895691.8658,1366848.059,135301.071,21
+28576,895247.7002,1369225.882,135906.5681,21
+28577,898091.0125,1369156.201,136353.5271,21
+28578,899329.2195,1373471.974,137210.359,21
+28579,900214.6475,1373954.857,137867.3475,21
+28580,901394.241,1376818.701,138507.3929,21
+28581,903531.5841,1376205.581,138968.3692,21
+28582,904245.6962,1380339.484,139546.0028,21
+28583,905254.3892,1381062.455,140770.8834,21
+28584,908494.9308,1383592.932,143410.2639,21
+28585,908159.9126,1384503.414,143918.7768,21
+28586,910277.8525,1386042.624,145254.0361,21
+28587,910670.1586,1389369.72,145230.4567,21
+28588,912996.877,1390294.356,147144.0224,21
+28589,913699.4439,1391590.889,147958.2295,21
+28590,916434.9015,1394267.921,148614.1685,21
+28591,915440.0423,1395911.97,149578.5051,21
+28592,918753.5183,1397687.566,150884.1877,21
+28593,919195.2564,1398741.369,151265.0195,21
+28594,919708.7821,1402250.321,152723.8169,21
+28595,923023.4046,1401828.813,152966.8143,21
+28596,922712.1098,1405129.631,154656.4855,21
+28597,924163.965,1407034.012,154849.5214,21
+28598,926715.9837,1407380.507,156120.3443,21
+28599,925761.1031,1411284.067,156974.2904,21
+28600,929208.1787,1411168.571,157771.0655,21
+28601,929779.3455,1414530.86,158909.8041,21
+28602,930739.762,1414496.553,159522.2278,21
+28603,932666.4972,1418335.02,160291.2158,21
+28604,933000.9938,1418678.828,161353.5503,21
+28605,934785.0795,1420505.682,162223.615,21
+28606,936866.0869,1422510.667,163140.2199,21
+28607,936630.8902,1424450.305,163462.7895,21
+28608,938767.267,1425741.713,165145.0375,21
+28609,940250.7912,1428081.108,165635.7215,21
+28610,941528.2218,1429366.86,166285.4708,21
+28611,941361.5022,1430828.792,167353.9664,21
+28612,944239.3123,1432981.661,167871.8872,21
+28613,945328.4565,1435408.562,169302.6346,21
+28614,945925.9872,1436061.058,169593.3265,21
+28615,947517.9283,1438269.615,170649.5424,21
+28616,948810.4489,1440908.538,171663.1182,21
+28617,949750.0788,1440541.175,171611.71,21
+28618,951587.212,1443971.205,173451.0034,21
+28619,952129.4803,1445174.186,174001.4025,21
+28620,956024.8327,1447280.391,174741.4629,21
+28621,955133.4264,1445403.962,176447.6319,21
+28622,958367.5596,1445546.365,176634.889,21
+28623,957596.7261,1443490.209,177900.9986,21
+28624,958538.0665,1443444.149,178126.5815,21
+28625,958463.0838,1440701.191,179960.6347,21
+28626,959108.7653,1439548.009,179890.7607,21
+28627,959362.4742,1440071.816,181072.7912,21
+28628,960240.2905,1435389.619,181996.8895,21
+28629,959225.5845,1435901.2,182784.2571,21
+28630,960952.8531,1434798.218,183743.3436,21
+28631,960674.1413,1432656.753,184033.3408,21
+28632,961136.7322,1430950.995,185232.6775,21
+28633,961357.5539,1430412.583,186252.8408,21
+28634,961519.9282,1427534.212,186928.1063,21
+28635,962400.7737,1427611.853,187575.2888,21
+28636,962332.6104,1424774.922,188334.1041,21
+28637,962622.5296,1424241.317,189553.8253,21
+28638,962956.4967,1423032.938,189833.9741,21
+28639,963468.0631,1420845.516,191242.3939,21
+28640,962896.5253,1419670.155,191624.0277,21
+28641,964611.8064,1417658.596,192388.5026,21
+28642,964064.6743,1416252.614,193308.0691,21
+28643,964592.4163,1415849.915,194459.3973,21
+28644,964925.5987,1412569.239,194599.6136,21
+28645,964920.7732,1412327.901,195629.7924,21
+28646,965211.1187,1409875.422,196738.1972,21
+28647,965286.2042,1409825.66,196795.9917,21
+28648,966843.6186,1406675.576,198195.954,21
+28649,965553.1081,1405722.213,199044.5567,21
+28650,966219.1252,1405127.264,199297.9433,21
+28651,967918.6345,1402481.144,200756.6585,21
+28652,965924.8092,1401190.034,200865.8372,21
+28653,967777.7843,1399537.135,201878.5062,21
+28654,967092.1644,1397965.011,203011.8193,21
+28655,968072.6814,1397446.069,203118.7648,21
+28656,968092.3794,1393947.078,204822.7282,21
+28657,968364.2022,1394562.134,204900.8241,21
+28658,968711.615,1391310.54,205703.7415,21
+28659,968611.9141,1390762.36,206636.6356,21
+28660,969110.3888,1389056.623,207627.7662,21
+28661,969523.425,1387418.055,208313.4589,21
+28662,968972.6474,1387568.047,208392.0341,21
+28663,970756.1341,1383483.435,210208.2638,21
+28664,968993.0592,1382940.781,210131.8218,21
+28665,970645.2507,1380687.886,211385.9271,21
+28666,970664.0323,1380871.647,212116.3229,21
+28667,970190.5726,1377227.807,212271.9452,21
+28668,971720.0092,1376770.027,213960.2395,21
+28669,970595.3176,1374503.186,214146.7976,21
+28670,971708.4563,1372963.095,215302.7747,21
+28671,971310.2232,1371253.493,215086.6309,21
+28672,972715.249,1369485.924,217014.699,21
+28673,970897.8409,1367752.38,216726.5894,21
+28674,973473.2215,1367218.947,218429.1516,21
+28675,971866.4343,1363320.447,218860.3075,21
+28676,972619.3818,1363580.829,219232.8248,21
+28677,973583.9242,1360030.75,220184.652,21
+28678,973128.9189,1359405.449,220931.3625,21
+28679,973567.5914,1355977.853,221694.4122,21
+28680,972595.5324,1353820.186,222521.146,15.6
+28681,0,0,0,15.6
+28682,0,0,0,15.6
+28683,0,246.8137792,0,15.6
+28684,0,0,0,15.6
+28685,0,0,1746498.833,15.6
+28686,0,0,0,15.6
+28687,0,0,0,15.6
+28688,0,0,0,15.6
+28689,0,0,0,15.6
+28690,0,0,0,15.6
+28691,339437.3885,0,0,15.6
+28692,0,0,0,15.6
+28693,0,0,0,15.6
+28694,0,0,0,15.6
+28695,0,0,0,15.6
+28696,0,70.93231539,0,15.6
+28697,0,0,0,15.6
+28698,0,0,0,15.6
+28699,0,0,0,15.6
+28700,0,7.033112972,0,15.6
+28701,0,0,0,15.6
+28702,0,82.30003114,0,15.6
+28703,0,0,0,15.6
+28704,0,0,0,15.6
+28705,0,0,0,15.6
+28706,0,3.308723067,0,15.6
+28707,0,0,0,15.6
+28708,0,68.25415173,0,15.6
+28709,0,0,0,15.6
+28710,0,0,0,15.6
+28711,0,0,0,15.6
+28712,0,3.302440396,0,15.6
+28713,0,0,0,15.6
+28714,0,67.98093587,0,15.6
+28715,0,0,0,15.6
+28716,0,0,0,15.6
+28717,0,0,0,15.6
+28718,0,3.44355793,0,15.6
+28719,0,0,1653283.539,15.6
+28720,0,71.07980148,0,15.6
+28721,0,0,0,15.6
+28722,0,0,0,15.6
+28723,0,0,0,15.6
+28724,0,3.705395984,0,15.6
+28725,0,0,0,15.6
+28726,0,75.98401274,0,15.6
+28727,388447.9007,0,0,15.6
+28728,758.4902994,0,0,15.6
+28729,3107.229767,0,0,15.6
+28730,16098.97063,4.000988641,0,15.6
+28731,12513.57784,0,0,15.6
+28732,11636.94973,81.76240295,0,15.6
+28733,12368.2357,0,0,15.6
+28734,12562.02616,0,0,15.6
+28735,12691.2392,0,0,15.6
+28736,12913.04279,7.042845649,0,15.6
+28737,13029.58331,0,0,15.6
+28738,13204.82677,95.93674469,0,15.6
+28739,13419.47009,0,0,15.6
+28740,13466.02508,0,0,15.6
+28741,13617.73068,0,0,15.6
+28742,13626.66787,244.6946848,0,15.6
+28743,13696.00597,0,0,15.6
+28744,13782.85298,0,0,15.6
+28745,13791.31318,0,0,15.6
+28746,13882.16659,0,0,15.6
+28747,13898.16442,0,0,15.6
+28748,13959.61772,0,0,15.6
+28749,14013.25691,0,0,15.6
+28750,14045.37526,0,0,15.6
+28751,14094.7383,0,0,15.6
+28752,14139.37293,0,0,15.6
+28753,14174.75744,0,0,15.6
+28754,14199.35489,0,1568257.894,15.6
+28755,14267.12248,336.2886406,0,15.6
+28756,14305.66175,0,0,15.6
+28757,0,0,0,15.6
+28758,0,0,0,15.6
+28759,0,0,0,15.6
+28760,0,0,0,15.6
+28761,0,0,0,15.6
+28762,64679.84216,0,0,15.6
+28763,0,0,0,15.6
+28764,341770.7372,0,0,15.6
+28765,23526.36413,0,0,15.6
+28766,13348.68957,0,0,15.6
+28767,14480.91557,0,0,15.6
+28768,14737.08505,0,0,15.6
+28769,14703.62118,0,0,15.6
+28770,14773.69533,62.04025225,0,15.6
+28771,14770.66993,0,0,15.6
+28772,14753.69422,0,0,15.6
+28773,14806.19235,0,0,15.6
+28774,14799.68652,0,0,15.6
+28775,14801.64807,0,0,15.6
+28776,14820.68344,0,0,15.6
+28777,14835.15039,0,0,15.6
+28778,14834.11807,0,0,15.6
+28779,14849.58713,131.1890622,0,15.6
+28780,14855.05971,0,0,15.6
+28781,14849.58303,0,0,15.6
+28782,14883.96537,0,0,15.6
+28783,14835.13811,0,0,15.6
+28784,14897.37283,84.04234726,0,15.6
+28785,14868.56108,0,0,15.6
+28786,14851.48106,0,0,15.6
+28787,14916.35287,0,0,15.6
+28788,14838.01114,0,0,15.6
+28789,14896.40415,0,1490649.112,15.6
+28790,14872.36353,0,0,15.6
+28791,14849.56238,252.9928178,0,15.6
+28792,0,0,0,15.6
+28793,0,0,0,15.6
+28794,0,0,0,15.6
+28795,0,0,0,15.6
+28796,0,0,0,15.6
+28797,68204.40253,0,0,15.6
+28798,0,0,0,15.6
+28799,2895.894503,0,0,15.6
+28800,22594.44659,67.33074373,0,15.6
+28801,354474.8137,0,0,15.6
+28802,15385.80852,0,326123.7958,15.6
+28803,15779.65613,0,0,15.6
+28804,15846.32654,0,0,15.6
+28805,15936.66198,66.19318916,0,15.6
+28806,15957.01636,0,317402.6057,15.6
+28807,16076.27092,0,0,15.6
+28808,16074.36467,0,0,15.6
+28809,16129.06702,0,0,15.6
+28810,16218.97006,0,308918.025,15.6
+28811,16253.17431,0,0,15.6
+28812,16302.45083,0,0,15.6
+28813,16363.20904,0,0,15.6
+28814,16421.07708,54.69450544,300655.2592,15.6
+28815,16452.8089,0,0,15.6
+28816,16523.85798,0,0,15.6
+28817,16557.30215,0,0,15.6
+28818,16613.81508,0,0,15.6
+28819,16692.01341,230.2737782,292700.0891,15.6
+28820,16672.05944,0,0,15.6
+28821,16793.80743,0,0,15.6
+28822,16799.49077,0,0,15.6
+28823,16859.06053,0,0,15.6
+28824,16913.20449,0,1548844.403,15.6
+28825,16947.94745,0,0,15.6
+28826,16990.44899,0,261517.123,15.6
+28827,0,0,0,15.6
+28828,0,0,0,15.6
+28829,0,0,0,15.6
+28830,0,37678.66826,254426.1142,15.6
+28831,72509.90366,1832.941904,0,15.6
+28832,297.3391792,5410.356799,247675.5266,15.6
+28833,7302.49857,15054.62201,0,15.6
+28834,25944.96117,11672.35016,0,15.6
+28835,15979.60834,11530.13253,0,15.6
+28836,17536.26549,12105.37821,0,15.6
+28837,17585.80469,12233.28586,241006.1771,15.6
+28838,357033.2079,12430.56602,0,15.6
+28839,17689.96569,12579.43228,0,15.6
+28840,17758.55918,12768.9312,0,15.6
+28841,17734.83963,12946.59198,0,15.6
+28842,17825.15768,13123.29399,0,15.6
+28843,17831.84384,13290.88321,0,15.6
+28844,17869.80322,13486.03829,0,15.6
+28845,17904.93155,13651.93839,0,15.6
+28846,17955.41069,13825.07988,234699.7576,15.6
+28847,17960.33484,13971.74518,0,15.6
+28848,18021.48882,14207.23982,0,15.6
+28849,18034.76732,14307.41963,0,15.6
+28850,18106.60804,14662.41356,0,15.6
+28851,18081.57018,14696.4052,767560.7771,15.6
+28852,18162.42316,14811.45998,0,15.6
+28853,18185.62029,15060.0523,0,15.6
+28854,18204.82498,15199.87918,798130.1482,15.6
+28855,18232.00789,15596.58454,0,15.6
+28856,18296.86814,15535.47239,0,15.6
+28857,18299.12679,15701.27778,0,15.6
+28858,18354.68884,15873.48316,0,15.6
+28859,18362.09694,16030.63223,1115117.987,15.6
+28860,18556.1136,0,0,15.6
+28861,0,0,0,15.6
+28862,0,0,0,15.6
+28863,0,0,0,15.6
+28864,71185.5346,65829.6628,0,15.6
+28865,797.2727884,0,0,15.6
+28866,12599.01846,6517.019955,0,15.6
+28867,25929.65658,25557.15916,0,15.6
+28868,18330.49948,15735.12104,0,15.6
+28869,19573.31029,17238.92762,0,15.6
+28870,19730.0867,17431.46736,0,15.6
+28871,19874.55944,17673.54245,0,15.6
+28872,19956.49962,17733.45926,0,15.6
+28873,20068.7283,17837.1054,0,15.6
+28874,20196.97612,17914.78012,0,15.6
+28875,359644.2298,18070.70563,0,15.6
+28876,20427.55078,18199.80159,0,15.6
+28877,20530.15857,18260.03373,0,15.6
+28878,20641.9291,18421.40607,0,15.6
+28879,20740.90768,18504.18659,0,15.6
+28880,20896.79954,18635.36873,0,15.6
+28881,20968.81924,18757.43498,0,15.6
+28882,21052.88494,18864.53093,0,15.6
+28883,21222.11665,18953.82302,0,15.6
+28884,21295.70573,19098.81388,0,15.6
+28885,21429.82945,19283.35252,219999.2819,15.6
+28886,21523.94462,19333.58284,0,15.6
+28887,21635.81216,19379.84795,214190.2208,15.6
+28888,21713.3186,19528.78326,0,15.6
+28889,21876.66393,19633.57548,0,15.6
+28890,21955.61384,19991.61055,0,15.6
+28891,22061.01909,19870.11028,0,15.6
+28892,22195.56563,19946.12281,208374.3981,15.6
+28893,22261.81185,20054.80588,0,15.6
+28894,0,0,1205721.238,15.6
+28895,0,0,0,15.6
+28896,0,0,0,15.6
+28897,79263.84587,74215.33658,0,15.6
+28898,11035.10486,0,188567.1312,15.6
+28899,12689.05889,14010.46136,0,15.6
+28900,30227.67154,27876.25144,183589.7728,15.6
+28901,22389.47668,19850.38167,0,15.6
+28902,23322.3308,21128.68576,0,15.6
+28903,23459.03163,21168.85701,0,15.6
+28904,23596.20493,21326.77224,0,15.6
+28905,23655.51876,21396.59053,178603.754,15.6
+28906,23799.11087,21545.47337,0,15.6
+28907,23841.16523,21573.30766,0,15.6
+28908,23990.73066,21723.34086,0,15.6
+28909,24077.63952,21817.98153,0,15.6
+28910,24145.41998,21867.15066,0,15.6
+28911,463975.2013,22014.02005,0,15.6
+28912,366402.2792,22094.01046,0,15.6
+28913,48706.61647,22160.37007,0,15.6
+28914,138385.7547,22335.1421,0,15.6
+28915,138446.872,22448.4338,0,15.6
+28916,114897.1289,22501.19663,173918.9512,15.6
+28917,123627.8432,22549.5954,0,15.6
+28918,124411.9877,22668.02568,0,15.6
+28919,125760.7473,22766.36183,0,15.6
+28920,126305.3247,23107.31147,0,15.6
+28921,126259.4945,22834.8203,0,15.6
+28922,126934.5684,22701.18219,169118.1278,15.6
+28923,126324.1954,22664.60272,164607.7239,15.6
+28924,126818.8901,22574.51301,0,15.6
+28925,126604.5834,22503.08591,0,15.6
+28926,127076.9568,22458.71486,0,15.6
+28927,101575.6675,0,160177.0574,15.6
+28928,102085.7552,0,0,15.6
+28929,102147.8283,0,1009480.993,15.6
+28930,186478.5669,82268.53612,0,15.6
+28931,123051.3034,1711.945986,0,15.6
+28932,111547.8467,13409.06549,147014.774,15.6
+28933,136686.0186,29976.72581,0,15.6
+28934,127184.8229,20540.01491,0,15.6
+28935,127883.2941,21839.59909,0,15.6
+28936,128479.1935,21823.70037,0,15.6
+28937,128085.58,21731.13104,0,15.6
+28938,128422.8286,21669.80573,0,15.6
+28939,128763.3985,21595.09715,0,15.6
+28940,128709.2149,21529.3015,0,15.6
+28941,25202.72192,21403.91382,0,15.6
+28942,25158.27029,21428.27864,142988.3637,15.6
+28943,25174.31022,21252.48159,0,15.6
+28944,25172.58391,21374.76246,0,15.6
+28945,25158.27875,21098.71547,0,15.6
+28946,25158.28159,21109.38121,0,15.6
+28947,25156.16642,20971.72874,139194.7451,15.6
+28948,25158.2873,20924.8534,0,15.6
+28949,364509.5355,20888.45635,0,15.6
+28950,546273.0343,20781.44506,0,15.6
+28951,25140.14079,20695.62836,0,15.6
+28952,40968.90849,20593.93994,0,15.6
+28953,161943.5874,20524.19984,0,15.6
+28954,146205.3582,20471.44482,0,15.6
+28955,123295.2536,20341.78523,135315.6167,15.6
+28956,131337.0612,20287.12071,0,15.6
+28957,131719.7995,20239.06116,131731.6401,15.6
+28958,131536.2807,20101.50264,0,15.6
+28959,131541.6486,20053.44518,0,15.6
+28960,106547.4388,0,0,15.6
+28961,106547.4431,0,0,15.6
+28962,106447.7241,248.7401622,128350.6782,15.6
+28963,191120.4595,72948.18282,0,15.6
+28964,127491.853,0,879514.6593,15.6
+28965,115289.3649,11233.89926,0,15.6
+28966,141386.8048,27369.44438,0,15.6
+28967,130983.1366,17923.74512,0,15.6
+28968,131789.6575,19337.2944,119165.4853,15.6
+28969,132190.0577,19299.76769,0,15.6
+28970,132321.5239,19240.85547,115991.1528,15.6
+28971,131997.3347,19099.74533,0,15.6
+28972,132334.9428,19084.88139,0,15.6
+28973,132212.6708,18945.44129,0,15.6
+28974,132438.3275,18955.97471,112784.1556,15.6
+28975,132424.8283,18779.46833,0,15.6
+28976,132549.6184,18699.25895,109815.6061,15.6
+28977,132281.652,18590.09562,0,15.6
+28978,132684.7242,18502.64895,0,15.6
+28979,132601.8656,18502.96259,0,15.6
+28980,25081.76823,18300.74704,106735.5632,15.6
+28981,25128.19987,18430.91639,0,15.6
+28982,25208.53713,18468.88377,103902.519,15.6
+28983,25292.70139,18640.01811,0,15.6
+28984,25336.77164,18661.56104,0,15.6
+28985,25436.18045,18791.94381,0,15.6
+28986,364891.1027,18854.65906,0,15.6
+28987,25548.99404,18905.18665,101053.3479,15.6
+28988,578181.6974,19112.12345,0,15.6
+28989,25675.39615,19085.6909,0,15.6
+28990,40818.54944,19224.25001,0,15.6
+28991,193130.2413,19367.31206,0,15.6
+28992,148440.8037,19403.77249,0,15.6
+28993,112642.6714,0,0,15.6
+28994,119218.8963,0,0,15.6
+28995,119620.4091,0,0,15.6
+28996,206089.3747,72622.14233,0,15.6
+28997,146552.9288,0,0,15.6
+28998,130549.303,12114.53684,0,15.6
+28999,157958.6915,27569.2464,769510.5143,15.6
+29000,148971.7484,18652.38645,0,15.6
+29001,150089.1232,20193.81157,95836.81145,15.6
+29002,151310.5311,20322.70288,0,15.6
+29003,151726.4954,20399.26847,0,15.6
+29004,152538.9032,20518.52908,0,15.6
+29005,153385.8642,20667.91853,93154.95376,15.6
+29006,153981.2037,20691.16269,0,15.6
+29007,154987.6833,20828.48072,90690.9966,15.6
+29008,155566.6559,20895.57465,0,15.6
+29009,156390.9716,20946.16317,0,15.6
+29010,157185.7858,21211.08754,0,15.6
+29011,158007.8811,21135.76403,88140.77449,15.6
+29012,158671.516,21279.11019,0,15.6
+29013,159451.151,21268.40483,85828.37426,15.6
+29014,160421.7361,21446.86186,0,15.6
+29015,161207.3727,21758.93931,0,15.6
+29016,161713.6398,21572.27907,0,15.6
+29017,162529.8539,21665.68069,83383.5371,15.6
+29018,27903.29158,21789.85418,0,15.6
+29019,27977.41874,21862.65824,81179.92065,15.6
+29020,28019.04486,21862.65859,0,15.6
+29021,28162.70293,22032.99876,0,15.6
+29022,28162.24721,22134.99317,0,15.6
+29023,644552.5474,22175.89238,78883.18211,15.6
+29024,367795.1742,22299.59463,0,15.6
+29025,74123.54549,22329.36019,76809.85591,15.6
+29026,208692.5087,0,0,15.6
+29027,136827.0315,2.611152285,0,15.6
+29028,221708.3994,0,0,15.6
+29029,164165.169,84855.81902,74612.38225,15.6
+29030,166104.1415,3074.90164,0,15.6
+29031,179727.6198,12547.98621,72632.77132,15.6
+29032,175159.5114,31719.95742,0,15.6
+29033,176054.2528,21554.50224,0,15.6
+29034,176972.2089,23349.28451,654132.3509,15.6
+29035,177587.7267,23319.30902,71155.36176,15.6
+29036,178330.5872,23310.61808,0,15.6
+29037,178801.6439,345164.9654,0,15.6
+29038,180049.1716,46943.06772,69331.81651,15.6
+29039,180268.9694,73915.98611,0,15.6
+29040,181190.5186,147486.8722,0,17.8
+29041,1004419.571,1328360.677,0,17.8
+29042,918872.6878,916545.7675,0,17.8
+29043,445727.8919,211677.2879,67432.41843,17.8
+29044,599651.9543,294523.6692,65709.90467,17.8
+29045,407572.9392,429010.2908,64036.72435,17.8
+29046,433082.4363,364377.1208,62411.30608,17.8
+29047,439441.2052,352324.078,60830.80106,17.8
+29048,423951.5344,351030.0016,59295.49619,17.8
+29049,423097.5087,349889.0752,57802.76142,17.8
+29050,422025.166,347566.5275,56352.83669,17.8
+29051,422187.0193,344611.5844,54943.46976,17.8
+29052,421066.0564,342955.3649,53574.72167,17.8
+29053,62136.75356,340354.854,52391.79285,17.8
+29054,61962.63562,338389.283,50886.34012,17.8
+29055,875406.8641,335543.6573,49746.64464,17.8
+29056,487905.0447,334744.8924,48473.98456,17.8
+29057,386259.5026,331562.0457,47305.6386,17.8
+29058,349444.8002,330156.7526,46157.49367,17.8
+29059,377152.7266,275066.04,45043.38139,17.8
+29060,448961.9099,273456.3436,43962.04054,17.8
+29061,433402.2627,383940.8611,42913.40881,17.8
+29062,761242.1997,297877.2542,0,17.8
+29063,428455.7501,322582.8848,39844.58635,17.8
+29064,417721.1499,320866.2498,0,17.8
+29065,421918.3176,316271.4403,38820.9534,17.8
+29066,421284.6123,314901.2778,0,17.8
+29067,421029.8255,51055.93858,0,17.8
+29068,421254.2335,50966.22944,517155.4927,17.8
+29069,420455.0154,50689.05593,41912.55828,17.8
+29070,422006.3822,849795.7009,0,17.8
+29071,420911.3055,115779.0502,40831.71231,17.8
+29072,421850.7348,262687.3694,0,17.8
+29073,421178.0067,352043.357,0,17.8
+29074,421921.1167,293793.1714,0,17.8
+29075,421956.698,298665.8943,39596.47191,17.8
+29076,422382.7326,297580.9747,0,17.8
+29077,422414.202,295582.2369,38553.2241,17.8
+29078,422429.0581,293590.5871,0,17.8
+29079,422901.9181,291592.7873,0,17.8
+29080,423090.0459,290419.4883,0,17.8
+29081,422999.824,288082.7902,0,17.8
+29082,424067.8722,286926.9967,0,17.8
+29083,423200.687,284570.4456,0,17.8
+29084,424015.7081,282811.8885,0,17.8
+29085,62469.54276,281310.9322,95279.85415,17.8
+29086,62594.21062,279275.6248,54520.28187,17.8
+29087,875998.9295,277959.3135,56273.96294,17.8
+29088,495727.3679,275366.0657,66504.04215,17.8
+29089,401540.6778,274397.5821,60788.50727,17.8
+29090,347979.7405,272368.1733,60912.03181,17.8
+29091,384096.5704,224350.937,60639.87073,17.8
+29092,454957.9344,222464.1564,60365.67058,17.8
+29093,439059.9434,316875.8572,60028.72209,17.8
+29094,432509.3816,232508.188,59762.27023,17.8
+29095,433943.7751,273133.3047,59462.16118,17.8
+29096,425762.7078,261202.6838,59238.33916,17.8
+29097,768949.4721,259639.3052,58973.40057,17.8
+29098,429874.4887,257602.2097,58776.84897,17.8
+29099,429048.719,255517.0755,58515.93494,17.8
+29100,430015.439,44478.24496,58380.74191,20
+29101,2318654.064,1557556.28,1059713.15,20
+29102,1109168.531,1418584.926,1260776.953,20
+29103,1056630.546,388955.3659,247321.093,20
+29104,754131.9131,853242.7796,448416.5636,20
+29105,880885.3468,681882.4663,460866.8858,20
+29106,972772.4821,621708.8437,438056.2182,20
+29107,872115.4457,649840.0428,445754.7783,20
+29108,891593.257,630371.5035,455489.5699,20
+29109,890116.8231,627020.9264,463544.7364,20
+29110,888939.484,623676.5749,472246.975,20
+29111,886966.5344,622137.9367,481044.3496,20
+29112,885847.1365,620874.0279,488811.4373,20
+29113,883266.853,617233.0611,497224.2462,20
+29114,866206.3367,616055.2998,504743.1396,20
+29115,872904.8637,615247.2983,453454.5934,20
+29116,867116.1768,613712.4443,462560.3461,20
+29117,148357.5678,610575.9403,471536.8282,20
+29118,961257.9098,611537.5829,632148.2376,20
+29119,787719.0822,608584.7517,574876.778,20
+29120,917315.7748,607484.8397,528198.2346,20
+29121,865947.1026,606463.5846,570589.3016,20
+29122,754482.9349,605241.8665,568697.2695,20
+29123,907264.1992,502560.1965,574510.7805,20
+29124,843006.8682,501826.2397,580602.2412,20
+29125,857890.4902,713687.5272,588506.1283,20
+29126,848904.456,581556.9624,596583.9755,20
+29127,850915.4018,602056.091,601493.1786,20
+29128,848886.152,605691.1919,608765.2259,20
+29129,845804.1399,598426.6675,614948.6119,20
+29130,845396.4158,600127.1538,621659.9162,20
+29131,815609.3764,99962.5905,233262.121,20
+29132,1154398.361,99798.18933,229966.8194,20
+29133,813843.536,1115688.335,227013.8498,20
+29134,880352.5466,411299.4331,223847.2727,20
+29135,839025.926,526045.0596,1618437.106,20
+29136,829813.4265,546646.4826,1320814.551,20
+29137,839271.4299,563924.1449,533887.2836,20
+29138,834995.1054,631398.1041,684754.6863,20
+29139,833731.2766,574875.4154,625286.4642,20
+29140,831630.9638,592468.6631,633761.31,20
+29141,831819.713,594209.865,641629.5072,20
+29142,829826.8594,590816.3249,648140.0896,20
+29143,825941.2314,591598.7875,654966.3292,20
+29144,824363.9352,591310.4132,648072.5734,20
+29145,823663.3305,591819.0877,654291.0175,20
+29146,820343.9888,589172.7511,659522.3879,20
+29147,820401.546,591216.3663,666413.9219,20
+29148,139449.3361,588949.7118,596636.2497,20
+29149,139273.6785,590002.2612,601077.8248,20
+29150,952585.1965,589411.6472,784128.4687,20
+29151,925057.7012,587967.7671,699333.1766,20
+29152,639357.814,590110.0332,663808.9901,20
+29153,868173.4845,587629.5797,702465.825,20
+29154,860463.1688,588201.0573,695228.344,20
+29155,804914.8953,494404.3383,699744.5339,20
+29156,817466.4614,493156.8164,705149.3311,20
+29157,823275.2607,690751.3983,712534.3112,20
+29158,815962.5806,565370.649,718709.5365,20
+29159,815662.182,593711.201,722966.5884,20
+29160,802424.319,585297.0531,727140.1075,21
+29161,2319676.869,2967912.143,2491783.118,21
+29162,2138336.57,1907164.554,1487525.722,21
+29163,660058.99,655107.2992,391343.2859,21
+29164,772506.1449,715930.787,770881.2697,21
+29165,882989.7661,864606.5145,766998.0167,21
+29166,1083701.316,998624.0312,738359.4013,21
+29167,871839.182,842804.3912,721866.0761,21
+29168,914060.0783,876088.8625,730908.7118,21
+29169,913312.7346,872962.6563,733395.9616,21
+29170,909344.4783,869727.6913,735849.0951,21
+29171,904360.0718,868435.142,1328026.561,21
+29172,901576.1414,863322.0986,641994.2019,21
+29173,897086.2487,861646.3043,685433.1228,21
+29174,895867.2241,857325.694,1390545.435,21
+29175,892905.2417,856719.8118,669608.154,21
+29176,889479.3577,851749.7798,1017113.932,21
+29177,887689.837,852412.8097,662631.3686,21
+29178,884288.4927,847396.2179,673310.7095,21
+29179,883442.081,845618.3724,697804.5616,21
+29180,880527.493,844450.2593,798854.3305,21
+29181,875930.9,840333.6359,817348.5116,21
+29182,877782.3426,840939.7644,824526.6877,21
+29183,873275.1799,835864.6156,800791.2228,21
+29184,872806.6693,836517.4367,682239.8517,21
+29185,869380.3673,832356.3181,915100.0301,21
+29186,868897.9522,830547.1453,891739.4845,21
+29187,864959.7999,829927.3999,956985.4669,21
+29188,866776.6497,828780.0883,682393.6858,21
+29189,861466.8217,824018.7549,690093.4325,21
+29190,861689.5987,824970.8011,699973.204,21
+29191,860574.5535,822263.4176,860077.9576,21
+29192,857296.6798,819951.4826,819016.907,21
+29193,856335.5107,819402.1435,823741.4354,21
+29194,856560.2516,817039.7377,821919.768,21
+29195,853245.7619,815473.2565,820261.3116,21
+29196,852304.6373,815089.1821,821496.4559,21
+29197,851184.3418,812644.0721,820959.5961,21
+29198,848568.2653,811174.7319,823859.0644,21
+29199,849357.8161,810090.3491,824515.736,21
+29200,846168.0602,807761.1272,823032.3803,21
+29201,844945.0336,807447.8715,831404.3433,21
+29202,844131.066,805316.6946,828757.585,21
+29203,843243.6602,805891.6683,1470716.073,21
+29204,841453.6586,800952.5164,724327.0381,21
+29205,839994.6353,802975.1461,760953.2757,21
+29206,839053.3475,800423.2081,1531383.433,21
+29207,837937.8861,800472.3504,741183.8785,21
+29208,837106.5459,797585.3223,767924.9626,21
+29209,834303.7113,797160.0468,1565940.522,21
+29210,835751.9909,796554.2336,758016.8963,21
+29211,833017.2486,794657.023,1183014.101,21
+29212,833397.3014,794210.3367,753042.2964,21
+29213,829564.3473,792394.0977,761118.8802,21
+29214,832884.9017,792382.4652,796202.201,21
+29215,827563.8977,789950.6577,992869.9948,21
+29216,828965.8251,790313.7722,763805.3782,21
+29217,827696.2388,788767.9988,766910.1633,21
+29218,827261.2785,786885.2741,985705.3608,21
+29219,824769.4578,787863.1124,930915.9027,21
+29220,825195.1437,784729.1104,881442.2598,21
+29221,1289194.132,1466065.878,897148.7381,21
+29222,1286478.417,1461611.008,890583.7582,21
+29223,1287208.181,1460565.223,885834.7058,21
+29224,1285401.636,1460200.614,884501.4396,21
+29225,1284872.876,1457450.999,884697.5636,21
+29226,1284020.866,1455348.524,884207.7331,21
+29227,1282712.21,1454172.271,881990.8961,21
+29228,1281463.994,1451558.559,882985.1376,21
+29229,1281556.685,1451083.068,882492.5325,21
+29230,1281077.509,1448867.687,882071.9819,21
+29231,1279168.455,1445907.001,882088.64,21
+29232,1278251.053,1445369.616,880924.6364,21
+29233,1279184.273,1443677.215,881079.2544,21
+29234,1275578.657,1440847.636,881524.3442,21
+29235,1277680.746,1440885.03,880280.4477,21
+29236,1275237.753,1436392.147,876572.0182,21
+29237,1274340.695,1435088.708,885362.3644,21
+29238,1274974.458,1434859.919,880498.228,21
+29239,1272220.153,1432521.231,1553460.158,21
+29240,1274276.667,1429569.139,772356.8971,21
+29241,1270854.592,1428293.673,799476.2994,21
+29242,1272431.384,1427094.994,1606757.467,21
+29243,1269832.896,1425077.946,785186.4714,21
+29244,1270280.138,1423190.721,799352.5297,21
+29245,1268377.571,1421401.708,1634831.06,21
+29246,1269457.711,1420037.529,794213.6631,21
+29247,1267636.775,1417749.088,1249503.906,21
+29248,1266239.567,1416640.248,787110.9733,21
+29249,1267389.587,1414114.611,792628.047,21
+29250,1265233.337,1412905.023,793114.1699,21
+29251,1265353.283,1410570.483,992245.4819,21
+29252,1264240.551,1409547.609,1122502.237,21
+29253,1264657.037,1407872.664,784618.8863,21
+29254,1262541.092,1405466.044,792679.9762,21
+29255,1262645.328,1403551.308,816660.8914,21
+29256,1262333.723,1403231.911,929005.3609,21
+29257,1261460.337,1400105.064,954582.9877,21
+29258,1260900.925,1400180.228,1078375.49,21
+29259,1260414.43,1396639.312,784227.6132,21
+29260,1259985.59,1394953.883,790983.2149,21
+29261,1257757.107,1394834.686,1001075.632,21
+29262,1259410.735,1391589.487,971871.1419,21
+29263,1257476.373,1390293.979,1098408.432,21
+29264,1257565.555,1388708.561,777594.8383,21
+29265,1256934.175,1386738.116,788046.1407,21
+29266,1253130.041,1386471.498,775510.5906,21
+29267,1254530.213,1382559.772,969163.3828,21
+29268,1245924.152,1382814.993,1091563.348,21
+29269,1244572.595,1379238.323,768076.4834,21
+29270,1244720.416,1379645.435,774813.4923,21
+29271,1240120.206,1376069.095,774804.2778,21
+29272,1241956.076,1375366.625,966706.3235,21
+29273,1239246.416,1374025.064,1090378.328,21
+29274,1236384.875,1371327.176,767515.1037,21
+29275,1238109.071,1370725.523,773710.329,21
+29276,1233699.085,1367048.264,774798.683,21
+29277,1235210.391,1368899.624,963577.0589,21
+29278,1231764.868,1363676.261,1089942.861,21
+29279,1231117.224,1364103.475,766272.8349,21
+29280,1230236.148,1361869.564,773622.0498,21
+29281,1168436.978,1299437.713,669843.9273,21
+29282,1162935.335,1295135.872,873878.2946,21
+29283,1158872.765,1291111.937,973235.9124,21
+29284,1157963.869,1290428.046,652770.2404,21
+29285,1153498.249,1288524.958,655848.1388,21
+29286,1151107.887,1286417.064,653935.1878,21
+29287,1148878.765,1285576.516,863124.2001,21
+29288,1145739.547,1283501.072,964575.4105,21
+29289,1144392.738,1281397.329,644330.4661,21
+29290,1140092.117,1280598.39,647811.085,21
+29291,1138277.053,1278286.749,648617.2357,21
+29292,1135798.545,1277564.809,854238.5842,21
+29293,1133813.889,1275799.092,958605.5402,21
+29294,1129874.25,1274496.625,637898.5936,21
+29295,1129088.571,1272363.822,642234.2606,21
+29296,1125000.53,1271630.38,644044.6863,21
+29297,1123373.422,1270142.534,850039.766,21
+29298,1121408.02,1268113.409,950187.568,21
+29299,1118158.639,1267444.521,635339.5318,21
+29300,1116820.843,1265794.736,638607.3357,21
+29301,1114445.735,1264784.899,638303.5297,21
+29302,1111911.028,1263166.638,845535.3475,21
+29303,1110166.224,1261567.718,945623.0514,21
+29304,1106791.813,1259778.759,631124.6773,21
+29305,1106637.776,1260570.365,634966.3739,21
+29306,1103248.657,1257066.779,633897.5029,21
+29307,1100685.517,1256266.282,842819.2864,21
+29308,1099968.753,1255873.011,940797.891,21
+29309,1095962,1254189.196,627766.6205,21
+29310,1095387.525,1251529.457,631161.0145,21
+29311,1092253.577,1252754.19,631342.7077,21
+29312,1089674.725,1249314.136,837231.3018,21
+29313,1087120.765,1249516.745,935949.3588,21
+29314,1085497.056,1247724.762,621043.6803,21
+29315,1081992.576,1245830.689,625208.7121,21
+29316,1079004.805,1245695.061,623814.6259,21
+29317,1076297.405,1244561.786,831300.787,21
+29318,1071323.262,1242453.565,927371.1214,21
+29319,1069337.931,1242386.189,614484.7472,21
+29320,1066621.621,1239877.69,619060.353,21
+29321,1064479.791,1239798.361,616949.3083,21
+29322,1061499.453,1238257.737,824055.766,21
+29323,1057611.153,1236325.644,922010.8958,21
+29324,1056814.863,1236265.177,607223.271,21
+29325,1052312.292,1235588.276,613168.5866,21
+29326,1050243.049,1234482.773,610288.3609,21
+29327,1047355.44,1232969.957,816494.866,21
+29328,1044667.102,1231648.408,915844.4009,21
+29329,1041675.523,1231560.931,600387.2428,21
+29330,1039773.196,1228516.052,606060.5051,21
+29331,1035356.348,1229187.204,603783.5717,21
+29332,1032983.897,1227245.664,811380.9313,21
+29333,1031101.124,1226676.755,907925.0888,21
+29334,1027876.433,1225370.025,594449.1304,21
+29335,1023912.1,1223957.401,600039.3171,21
+29336,1022894.897,1223609.197,596862.5189,21
+29337,1017853.853,1221652.171,805031.7009,21
+29338,1017085.807,1221227.781,900922.6481,21
+29339,1012809.077,1219780.886,588691.268,21
+29340,1009759.13,1218292.356,589462.011,21
+29341,1007466.211,1219277.223,587155.0407,21
+29342,1000501.586,1218825.574,793930.7801,21
+29343,997209.5881,1218825.753,888680.3682,21
+29344,995322.001,1220303.458,575461.6304,21
+29345,990579.8496,1219940.528,579456.9921,21
+29346,988850.2181,1220659.434,576636.0619,21
+29347,984044.0982,1220040.6,786358.8196,21
+29348,983080.7846,1222128.94,879683.041,21
+29349,977955.4103,1221881.231,565290.02,21
+29350,975928.2042,1221415.114,570310.8238,21
+29351,972054.7658,1223290.282,568307.5086,21
+29352,969497.2232,1222947.824,778688.1797,21
+29353,965389.8621,1223574.239,869718.2026,21
+29354,963490.8993,1224719.02,558090.8698,21
+29355,959363.5721,1223594.587,559925.6917,21
+29356,957360.3316,1226430.072,559334.4241,21
+29357,953125.2027,1224019.714,770577.9365,21
+29358,950870.2889,1227133.866,861546.3406,21
+29359,947144.5644,1226456.03,547915.7318,21
+29360,945054.3402,1226304.387,551826.5303,21
+29361,940268.8776,1227984.688,548759.3273,21
+29362,939351.0188,1228176.408,764163.0345,21
+29363,935022.6276,1228333.342,850818.7302,21
+29364,931931.0343,1229882.431,538608.8504,21
+29365,928955.5397,1229324.738,542420.6089,21
+29366,925112.3607,1230001.43,539217.3028,21
+29367,923601.3679,1230951.149,756453.7772,21
+29368,918477.4932,1230371.865,840521.6742,21
+29369,915964.4122,1232913.77,528987.5603,21
+29370,913419.4386,1231496.929,532590.4382,21
+29371,910589.8304,1233052.258,531693.7359,21
+29372,906755.2176,1233250.406,748431.9402,21
+29373,905752.5872,1234057.234,833121.8052,21
+29374,901968.1155,1234010.22,522163.0655,21
+29375,899101.6274,1236042.103,527132.1907,21
+29376,897133.0709,1234328.117,523021.2415,21
+29377,894440.9329,1236738.222,745283.3023,21
+29378,891246.8224,1236405.475,826045.1584,21
+29379,888615.0697,1237394.829,515308.4748,21
+29380,886190.9541,1237568.167,521072.5953,21
+29381,884532.3767,1238803.664,518117.2812,21
+29382,880056.3187,1238604.002,740123.573,21
+29383,878360.845,1240178.337,819656.2989,21
+29384,876375.2988,1239840.036,510079.1696,21
+29385,873128.9857,1240551.367,518531.3504,21
+29386,870853.8292,1241300.966,516186.9864,21
+29387,868122.0282,1242675.083,738949.2647,21
+29388,865370.9158,1241985.015,817802.5189,21
+29389,864575.58,1244113.114,508046.4041,21
+29390,860433.7095,1242411.821,513902.1906,21
+29391,859117.2712,1244903.136,512142.6328,21
+29392,855780.6878,1245154.336,734612.6228,21
+29393,854304.0087,1245251.492,812196.4045,21
+29394,850875.7307,1246043.584,504129.7994,21
+29395,850121.4269,1246749.955,509222.8286,21
+29396,846432.2964,1247673.756,506200.8009,21
+29397,844229.7032,1247502.481,732669.8817,21
+29398,843261.4619,1248284.305,806354.9565,21
+29399,839844.1139,1250272.476,500760.5278,21
+29400,838137.2576,1249353.834,503464.9392,21
+29401,836898.7798,1252165.143,502222.9559,21
+29402,836124.0574,1250571.579,728412.5768,21
+29403,833500.0997,1250780.271,798944.1836,21
+29404,831540.1506,1248765.857,490819.0824,21
+29405,830582.9382,1249593.757,494268.1526,21
+29406,828842.5774,1249847.936,490539.0388,21
+29407,826141.5584,1248334.73,718407.9616,21
+29408,825739.5578,1250225.428,787619.02,21
+29409,822558.2647,1248649.113,478968.2299,21
+29410,822743.8847,1248024.321,481348.378,21
+29411,819350.2607,1250416.426,480523.7971,21
+29412,818701.09,1247605.539,708875.0387,21
+29413,816453.9846,1248851.165,773778.4827,21
+29414,815266.8172,1248351.779,467997.2191,21
+29415,813534.7649,1247715.309,470249.1207,21
+29416,810824.2086,1249109.427,467922.7995,21
+29417,809456.328,1247965.293,700186.8021,21
+29418,805585.5339,1247915.023,760815.0693,21
+29419,805973.4572,1247402.412,456078.7887,21
+29420,802547.0922,1248231.119,459007.9733,21
+29421,801663.2868,1246335.8,457238.8858,21
+29422,799575.9398,1247657.252,689756.0451,21
+29423,797865.3226,1247683.728,747608.5428,21
+29424,796469.4068,1247514.908,445850.7981,21
+29425,794442.2895,1245384.08,446947.7274,21
+29426,793461.878,1248888.158,445033.3917,21
+29427,790792.0826,1242607.877,680874.1074,21
+29428,790459.0344,1244016.34,738633.1668,21
+29429,787141.1895,1241233.761,438986.7953,21
+29430,787543.9381,1242917.9,440544.127,21
+29431,785578.0195,1242945.296,436903.6782,21
+29432,785853.8432,1240499.78,676999.8143,21
+29433,784745.4031,1242470.41,728089.9906,21
+29434,784780.1378,1240255.808,427593.2351,21
+29435,783763.5332,1241493.679,432698.9976,21
+29436,782639.443,1239674.194,427296.1224,21
+29437,782441.4106,1240696.787,668101.2846,21
+29438,782632.1075,1225554.828,718570.9272,21
+29439,780684.4945,1221755.821,418904.0486,21
+29440,780733.2535,1222551.157,422363.2435,21
+29441,780303.9855,1219859.596,416955.9125,21
+29442,779134.0473,1218558.754,662117.9188,21
+29443,778715.7229,1219154.494,706641.3746,21
+29444,779357.4505,1217630.173,408937.1436,21
+29445,776489.1004,1216724.09,413073.0397,21
+29446,777586.6651,1215148.449,408955.6006,21
+29447,776702.4436,1214629.745,653932.3201,21
+29448,775891.3954,1214369.807,695539.3165,21
+29449,775560.5307,1213164.509,401345.3295,21
+29450,773818.9366,1212162.811,402525.2574,21
+29451,774404.0303,1210809.683,401390.1822,21
+29452,773341.6213,1211261.615,644308.0807,21
+29453,772486.3694,1210435.416,687069.2186,21
+29454,772054.0399,1207578.581,391246.0751,21
+29455,771704.4278,1209099.243,394790.6507,21
+29456,769956.5671,1208079.159,391119.1112,21
+29457,771274.1118,1206100.933,637662.9406,21
+29458,768412.6251,1206381.759,675154.0326,21
+29459,769253.4971,1205355.253,382653.8329,21
+29460,768248.7434,1204652.562,386453.0496,21
+29461,766790.3925,1201788.157,382140.4961,21
+29462,766965.0212,1199542.297,630478.4659,21
+29463,765601.2669,1196034.335,668993.7629,21
+29464,766836.5306,1194449.34,379757.1637,21
+29465,764926.6453,1191255.335,383540.0024,21
+29466,764962.9009,1190301.551,383146.1115,21
+29467,765157.1489,1186431.042,628895.0333,21
+29468,764609.374,1184652.28,669478.9514,21
+29469,763405.8258,1181321.505,379230.9778,21
+29470,764157.8363,1180293.442,386030.8241,21
+29471,763026.2453,1176938.106,381676.163,21
+29472,763380.7401,1174704.595,630238.3371,21
+29473,761892.1224,1171898.08,668214.9527,21
+29474,763181.7647,1170135.562,381196.0988,21
+29475,760783.0889,1167707.92,384697.4351,21
+29476,762386.3182,1164514.522,384502.5708,21
+29477,760710.682,1162509.888,630174.6304,21
+29478,759991.2504,1160545.595,667664.8587,21
+29479,761439.1966,1158305.994,381256.6893,21
+29480,758832.0092,1154104.343,387312.8692,21
+29481,760239.9311,1153711.678,384365.1669,21
+29482,759884.9732,1149367.932,630534.7902,21
+29483,759628.5191,1149384.277,668612.8961,21
+29484,759819.4266,1144974.056,382728.9327,21
+29485,758671.649,1142636.254,387672.0012,21
+29486,758352.7488,1141409.642,386516.1317,21
+29487,758578.4623,1138043.644,630669.0607,21
+29488,756394.2475,1135426.539,669913.4747,21
+29489,758152.743,1134839.248,383503.9374,21
+29490,757832.0493,1131331.003,390498.7618,21
+29491,755674.1583,1128035.854,387095.283,21
+29492,756287.108,1126887.186,631093.5631,21
+29493,755783.004,1124287.563,669932.8048,21
+29494,754618.4757,1121936.635,384415.5176,21
+29495,755482.7152,1119897.761,389315.0086,21
+29496,753827.6439,1116843.429,387958.6902,21
+29497,753496.0767,1115552.625,630719.0729,21
+29498,753315.2647,1112654.497,669987.6128,21
+29499,753905.8296,1111445.546,384526.4826,21
+29500,751435.3388,1107000.908,388808.3583,21
+29501,752338.0278,1108115.461,388851.6827,21
+29502,751746.2878,1102753.391,629921.4228,21
+29503,751481.9054,1101656.777,670629.9886,21
+29504,750245.9973,1100111.822,383871.2326,21
+29505,750987.6441,1096939.719,390601.4372,21
+29506,748195.3944,1094750.801,388416.8849,21
+29507,750234.7034,1093350.572,629419.316,21
+29508,748756.0078,1090237.347,670384.9922,21
+29509,748635.8523,1089133.854,384566.5842,21
+29510,747133.6111,1086417.319,389948.0054,21
+29511,748553.7652,1084263.866,387702.897,21
+29512,747016.9585,1081869.884,630221.0347,21
+29513,746154.194,1079521.601,670307.8562,21
+29514,746901.5749,1078109.524,384198.0924,21
+29515,745640.4753,1074348.636,390944.8424,21
+29516,746291.523,1074826.236,387380.4274,21
+29517,745242.4611,1071480.153,630487.865,21
+29518,743725.6875,1069649.407,668794.6631,21
+29519,744815.3164,1067792.95,385913.3324,21
+29520,743894.3118,1065465.592,389662.4838,21
+29521,802068.9052,1129018.666,490315.4523,21
+29522,804681.1676,1131376.868,720181.4089,21
+29523,804096.0802,1131925.382,781276.8223,21
+29524,805960.3282,1132664.141,494490.5704,21
+29525,805728.991,1131268.126,497976.8082,21
+29526,804837.0851,1130882.113,499921.8473,21
+29527,806705.5732,1132595.389,730090.6538,21
+29528,805687.7115,1134454.974,788264.9868,21
+29529,806036.877,1131142.647,495738.0271,21
+29530,806007.1477,1132677.257,502112.4703,21
+29531,806362.1381,1131337.611,499618.5102,21
+29532,806635.1076,1132272.569,736555.3744,21
+29533,805098.9827,1131508.881,793210.5955,21
+29534,807151.135,1130455.044,497034.4414,21
+29535,806648.8818,1130349.259,501129.2788,21
+29536,805469.6784,1130053.209,501764.6384,21
+29537,806203.4624,1130100.72,740024.1839,21
+29538,807703.8055,1128766.425,796014.1834,21
+29539,805165.6641,1128359.859,496679.0007,21
+29540,806415.8829,1128076.182,501255.4041,21
+29541,807024.7438,1127766.608,501834.5252,21
+29542,804796.5849,1127923.413,740999.0263,21
+29543,807442.5012,1125821.44,798866.103,21
+29544,805738.3743,1125623.148,496194.8288,21
+29545,805765.9065,1126167.398,499865.7636,21
+29546,806432.3,1125235.007,500528.0042,21
+29547,804428.3827,1125269.019,743310.8547,21
+29548,805736.6434,1123486.216,799984.8912,21
+29549,805534.0829,1123197.929,494487.9454,21
+29550,804122.1992,1123750.402,498869.7848,21
+29551,805141.5276,1122589.37,498094.2068,21
+29552,804465.3518,1122083.449,743207.7787,21
+29553,804521.8789,1122917.695,799583.5913,21
+29554,803914.2695,1123429.538,488382.0508,21
+29555,803625.9451,1121266.665,495285.9184,21
+29556,803720.0829,1123025.171,492329.1134,21
+29557,803219.2029,1122498.268,742599.7058,21
+29558,803000.4419,1122693.689,793495.9957,21
+29559,802467.0948,1122324.727,484255.7327,21
+29560,804324.2455,1124277.684,489811.7702,21
+29561,800429.3214,1125541.886,486466.9628,21
+29562,803776.4939,1123852.999,736374.4739,21
+29563,801778.3499,1125336.063,787489.2629,21
+29564,802435.7849,1126090.508,475749.227,21
+29565,803021.8998,1124347.044,480162.3544,21
+29566,802004.6058,1124467.938,478416.9651,21
+29567,801425.0437,1126216.434,731286.4803,21
+29568,802671.406,1123962.387,781710.3035,21
+29569,801259.1559,1126046.687,470520.7708,21
+29570,802332.4685,1123976.346,472004.5834,21
+29571,801038.7361,1125304.952,472499.7762,21
+29572,802140.1024,1125444.827,726504.6943,21
+29573,800540.1906,1125597.914,774684.7162,21
+29574,802057.6024,1123733.134,463230.0899,21
+29575,801532.889,1125135.512,464968.6631,21
+29576,800460.9508,1124140.581,465530.1233,21
+29577,801323.743,1124578.014,719556.2928,21
+29578,801610.8559,1124091.202,766856.401,21
+29579,800159.7118,1123468.374,455677.1648,21
+29580,801602.2029,1123725.143,458926.0312,21
+29581,800608.9256,1122188.409,456606.8354,21
+29582,801996.639,1124438.044,711998.9797,21
+29583,801994.2287,1122847.029,758172.5531,21
+29584,804243.1085,1126562.218,446163.4259,21
+29585,802462.0485,1123210.211,448167.612,21
+29586,803783.8857,1125537.465,444029.5284,21
+29587,803466.8357,1125905.753,707048.9562,21
+29588,805195.2125,1126095.33,745496.2669,21
+29589,803541.8165,1126205.027,434580.933,21
+29590,805092.1912,1126702.2,438787.7212,21
+29591,805055.1109,1128736.646,433858.7619,21
+29592,805589.6096,1126438.041,696145.5102,21
+29593,805385.4813,1128705.487,735142.669,21
+29594,806222.5973,1128242.413,423651.5075,21
+29595,806323.3341,1130045.258,427339.5129,21
+29596,806898.5192,1128331.112,422988.1197,21
+29597,807281.8704,1131364.508,687055.5189,21
+29598,807869.3457,1128835.47,724258.0398,21
+29599,807890.3006,1131249.413,412465.1386,21
+29600,810156.7413,1132050.043,418475.0185,21
+29601,808596.1883,1130042.601,411027.1891,21
+29602,808367.4188,1131938.11,677472.8009,21
+29603,820202.824,1133139.583,713507.6761,21
+29604,820421.6534,1133001.901,401239.912,21
+29605,821904.7073,1133182.687,406056.7292,21
+29606,824003.6358,1133740.035,398966.4462,21
+29607,828049.4388,1134026.923,665349.4361,21
+29608,829431.7812,1134345.195,696362.4384,21
+29609,832842.3463,1135112.013,389001.261,21
+29610,834075.5374,1134996.001,392382.4095,21
+29611,832078.9435,1135855.522,387193.374,21
+29612,834192.7692,1136696.712,654633.3719,21
+29613,836180.3144,1135713.51,684967.9862,21
+29614,835484.1941,1135999.545,377558.7124,21
+29615,838601.6098,1138037.911,384752.1491,21
+29616,838979.1986,1136047.31,377334.3616,21
+29617,838997.6479,1138161.012,647421.9768,21
+29618,841203.8441,1136543.294,672457.9755,21
+29619,841628.7279,1138479.239,371378.8722,21
+29620,842565.9644,1138265.276,374495.7442,21
+29621,842536.7856,1137435.451,369769.1132,21
+29622,844304.51,1139512.786,638607.8615,21
+29623,845213.6217,1139209.664,663397.8084,21
+29624,845526.1524,1137768.87,362511.1008,21
+29625,846921.122,1140342.879,366103.0194,21
+29626,847305.4908,1139168.614,361844.005,21
+29627,847420.3783,1139963.499,632301.6436,21
+29628,849659.2902,1139718.873,654776.9807,21
+29629,848984.3581,1139903.684,358125.7893,21
+29630,850589.4795,1141329.844,361268.5327,21
+29631,851493.6023,1138806.303,360780.8576,21
+29632,850673.62,1141741.261,625135.7005,21
+29633,853294.6145,1140752.751,650231.6006,21
+29634,853135.8651,1141126.742,355758.1136,21
+29635,854286.318,1140553.68,356703.2318,21
+29636,853258.4267,1142534.321,357563.5681,21
+29637,855407.3223,1141187.755,622671.1881,21
+29638,856134.4678,1142482.186,644361.8378,21
+29639,856386.9792,1141022.695,351970.3901,21
+29640,855782.589,1142867.308,356194.6764,21
+29641,859249.5776,1143021.925,354325.5708,21
+29642,859947.3791,1144940.798,618265.5133,21
+29643,859043.9358,1146079.673,640704.1233,21
+29644,860146.4246,1144499.674,349483.4932,21
+29645,860525.2849,1147917.552,352716.6411,21
+29646,863359.706,1147461.016,350817.948,21
+29647,863425.61,1148550.16,614139.9976,21
+29648,863683.7451,1149192.716,635088.3136,21
+29649,866917.3671,1149511.237,345751.0721,21
+29650,865673.209,1151037.908,348642.4548,21
+29651,868476.3898,1150401.758,348018.541,21
+29652,869518.0255,1151848.942,607235.3161,21
+29653,869274.8358,1151880.428,631055.4393,21
+29654,871903.1148,1152496.523,340205.1172,21
+29655,871186.9271,1154850.582,344320.2134,21
+29656,873825.4901,1152151.774,341814.5311,21
+29657,875148.8103,1156052.263,604324.4764,21
+29658,874111.8158,1154738.009,623704.7653,21
+29659,877189.5345,1156065.525,337779.8339,21
+29660,877907.3291,1155950.177,342937.891,21
+29661,879053.464,1157853.922,339783.7204,21
+29662,878219.5456,1156916.235,599160.649,21
+29663,883020.329,1157667.137,622902.8484,21
+29664,880077.8766,1159134.898,334685.7778,21
+29665,883868.9194,1158834.195,340757.7617,21
+29666,884478.4053,1160007.602,338330.0834,21
+29667,884294.9106,1159840.281,596680.3983,21
+29668,886293.0319,1161394.135,617544.0355,21
+29669,886821.4872,1161139.792,335188.551,21
+29670,888453.5132,1162369.575,338165.0634,21
+29671,889539.3997,1161663.09,337032.1529,21
+29672,889435.6734,1163342.163,593428.4097,21
+29673,890311.8936,1164496.01,615328.9907,21
+29674,892551.7849,1164000.752,333125.6423,21
+29675,891270.4415,1163815.92,337989.4711,21
+29676,893691.5025,1166403.576,335018.7354,21
+29677,893581.0485,1165635.68,592244.2388,21
+29678,893463.7654,1165301.642,612478.2545,21
+29679,896402.9967,1168645.565,332923.0905,21
+29680,895235.6875,1166136.135,335979.4724,21
+29681,895808.3855,1168086.404,333617.6541,21
+29682,898443.914,1168449.93,591800.7716,21
+29683,894730.1478,1169692.225,610115.6234,21
+29684,897513.2705,1168930.054,331546.9938,21
+29685,895731.0591,1171344.598,335956.2934,21
+29686,898347.2934,1170792.629,333592.6593,21
+29687,897024.7595,1171184.193,588809.1657,21
+29688,898906.9233,1171568.201,610525.049,21
+29689,899214.7442,1173217.184,330415.6878,21
+29690,899297.775,1171764.456,335591.3084,21
+29691,901117.1841,1174490.741,333368.0782,21
+29692,899676.2189,1173713.329,587545.0378,21
+29693,901989.8509,1175765.759,610194.6507,21
+29694,902270.3605,1174553.082,331655.5396,21
+29695,901802.4963,1175129.296,336844.0759,21
+29696,903635.8421,1177182.328,334260.6002,21
+29697,903701.2685,1176376.216,589322.919,21
+29698,904282.6624,1177436.747,609928.3904,21
+29699,905400.0747,1177814.792,335462.4538,21
+29700,905994.1599,1177950.027,338124.0635,21
+29701,908609.6496,1178825.371,340457.8202,21
+29702,904942.3102,1178913.94,583844.6574,21
+29703,907945.1174,1177169.771,518596.9457,21
+29704,905486.6345,1178253.695,531892.0846,21
+29705,905317.5253,1178001.455,524800.1092,21
+29706,905096.3226,1178208.101,520757.0654,21
+29707,902985.0141,1177154.647,518474.1889,21
+29708,901633.7321,1176933.852,517589.2693,21
+29709,900830.8431,1178585.786,1082876.017,21
+29710,901131.6722,1175247.16,343882.9165,21
+29711,899700.3375,1177830.735,444076.1282,21
+29712,899479.67,1175883.817,1128580.724,21
+29713,899196.6825,1176876.802,350992.4342,21
+29714,898361.1398,1175888.743,746356.2859,21
+29715,897789.0841,1176505.677,351467.7267,21
+29716,898468.8657,1175318.336,357953.1489,21
+29717,895925.6721,1175289.056,383653.9919,21
+29718,896239.6273,1175544.471,549198.7674,21
+29719,896861.3547,1175099.38,576378.6557,21
+29720,894388.8685,1174194.491,559993.5465,21
+29721,895441.2661,1174856.816,544195.4508,21
+29722,894014.2157,1174557.112,446643.5483,21
+29723,893324.1043,1173852.629,671042.5352,21
+29724,894199.152,1174091.62,514615.8525,21
+29725,892236.3315,1174250.384,540665.5295,21
+29726,892218.9571,1172717.164,533056.8791,21
+29727,891204.0734,1174127.597,538654.6722,21
+29728,891169.3594,1171547.367,532926.2218,21
+29729,891201.5951,1173815.796,530932.7601,21
+29730,890029.6984,1172630.301,535832.0923,21
+29731,889901.0763,1171776.625,529981.0814,21
+29732,890804.045,1172282.586,525351.6034,21
+29733,890707.5845,1170640.212,530302.8424,21
+29734,891424.9743,1172886.618,523879.4857,21
+29735,891484.9738,1169591.501,1084212.348,21
+29736,891982.2798,1171220.081,362952.8103,21
+29737,892705.4388,1170456.74,456187.4817,21
+29738,893129.1998,1169826.41,1129725.57,21
+29739,893615.516,1168452.098,367715.7398,21
+29740,893069.9837,1171046.765,746550.2359,21
+29741,894668.8831,1167352.534,365623.5278,21
+29742,895403.5883,1168943.966,372039.2087,21
+29743,895552.1785,1168888.571,395088.0938,21
+29744,896433.0654,1167623.76,553963.6552,21
+29745,896076.9861,1166945.34,546199.4921,21
+29746,897863.038,1167613.859,603291.3222,21
+29747,897696.371,1166121.203,537031.9127,21
+29748,899541.1518,1166169.037,548525.2411,21
+29749,898382.6793,1165691.184,541635.4972,21
+29750,900028.8966,1165258.264,538733.091,21
+29751,901383.5581,1165342.865,537947.0646,21
+29752,900034.8752,1164608.074,532534.0781,21
+29753,903030.4629,1163491.63,530157.076,21
+29754,902753.6193,1164334.33,527764.9892,21
+29755,902455.602,1162970.803,525065.4424,21
+29756,904922.9829,1161793.379,524355.5552,21
+29757,904992.6599,1163686.611,521978.024,21
+29758,904238.6562,1161047.337,520609.9578,21
+29759,908110.5281,1160190.718,518244.645,21
+29760,906241.0533,1160388.74,518634.0002,21
+29761,908349.3721,1158047.759,514702.1934,21
+29762,909624.391,1160278.675,513234.3275,21
+29763,910186.447,1158699.585,1069435.58,21
+29764,911816.7209,1159001.339,353574.6507,21
+29765,913593.1311,1158515.257,447268.7743,21
+29766,913385.0385,1159900.303,1112435.799,21
+29767,917356.0054,1159031.786,359130.2902,21
+29768,918795.2941,1158304.525,448108.8998,21
+29769,920179.0631,1159633.872,1134656.972,21
+29770,921058.7324,1158487.596,364190.6456,21
+29771,922503.1574,1159441.127,452547.5289,21
+29772,923840.2207,1158121.824,1153752.341,21
+29773,925623.9424,1159592.077,367216.2174,21
+29774,926565.0481,1158442.681,765187.4187,21
+29775,927709.6211,1159786.429,363537.9659,21
+29776,929162.336,1158492.292,369588.1841,21
+29777,930466.7184,1159101.662,395593.5765,21
+29778,931490.389,1158225.093,555063.9203,21
+29779,934185.6325,1159584.646,419011.4943,21
+29780,933708.423,1158176.418,662963.6738,21
+29781,935988.2637,1159279.986,626974.0497,21
+29782,936599.4935,1158483.709,519316.4509,21
+29783,941196.4284,1159104.258,550049.3248,21
+29784,940273.8216,1158686.938,537640.0649,21
+29785,943968.7257,1159204.203,533329.5352,21
+29786,944039.7849,1158329.48,529826.4767,21
+29787,944997.1189,1159038.019,527027.644,21
+29788,948090.5884,1157693.421,525098.5467,21
+29789,948487.9383,1159782.579,520183.6647,21
+29790,951594.5407,1158663.915,519363.8642,21
+29791,950719.1222,1157913.396,516375.9341,21
+29792,953605.4093,1158674.995,510599.1211,21
+29793,952526.1128,1159613.496,516435.2008,21
+29794,955307.6908,1158353.958,509989.493,21
+29795,955753.4041,1158043.645,1067329.952,21
+29796,955414.6128,1158603.09,345867.7992,21
+29797,957456.1976,1159427.353,442353.7786,21
+29798,958397.2586,1158416.664,1111733.444,21
+29799,959327.0861,1158076.566,352084.7727,21
+29800,959782.261,1158945.198,442822.8345,21
+29801,961062.4671,1158834.101,1134210.038,21
+29802,961230.3261,1157400.067,356740.5116,21
+29803,962382.489,1159896.496,749101.2309,21
+29804,962780.8013,1157455.303,354742.5581,21
+29805,963570.2437,1158579.608,360257.8579,21
+29806,964317.2025,1158524.445,389790.3586,21
+29807,966012.085,1158297.106,542101.6716,21
+29808,965509.6203,1158516.684,419958.241,21
+29809,966557.9626,1158758.082,656000.1298,21
+29810,968863.9396,1158297.584,612279.7698,21
+29811,968164.2297,1158169.245,627178.9667,21
+29812,967780.4763,1158479.73,353370.9273,21
+29813,970642.5889,1158376.749,360152.3756,21
+29814,969896.3194,1158040.505,367566.7622,21
+29815,971317.5877,1158001.214,581397.8872,21
+29816,971415.1867,1158678.902,548963.1795,21
+29817,972525.058,1157747.075,365855.9705,21
+29818,972534.0998,1158333.153,357717.7171,21
+29819,974369.6771,1158046.382,660043.0836,21
+29820,974759.9881,1158219.686,507606.129,21
+29821,409047.2108,513928.4327,234217.0377,21
+29822,408367.1396,513504.1746,219317.0165,21
+29823,408046.6855,513274.8919,211315.2748,21
+29824,407936.4664,513436.6836,717024.0224,21
+29825,408070.9927,514043.7906,851.6869857,21
+29826,408415.5508,515096.8473,132338.7551,21
+29827,408905.3325,516302.4461,740512.531,21
+29828,409475.6169,517716.5149,1290.641316,21
+29829,410077.3044,519186.9402,125043.7259,21
+29830,410677.3653,520649.4488,743687.9971,21
+29831,411254.6209,522062.9236,1757.633419,21
+29832,411794.7318,523399.6775,123752.1123,21
+29833,412290.3268,524762.1081,743954.3277,21
+29834,412734.9726,525784.3453,2231.8004,21
+29835,413126.5088,526818.3507,123675.087,21
+29836,413464.3597,527745.1766,743741.5887,21
+29837,413749.5672,528567.5055,2841.30243,21
+29838,413984.3383,529290.415,345784.0703,21
+29839,414171.5751,529920.5388,2931.999535,21
+29840,414314.5019,530500.6472,6720.400021,21
+29841,414416.5002,530931.8161,31901.51037,21
+29842,414480.9192,531327.7496,270687.4592,21
+29843,415000.0824,531659.3024,3460.302344,21
+29844,414515.1218,531935.0305,5078.589359,21
+29845,414480.1929,532157.9826,3737.235736,21
+29846,414424.8901,532335.3519,268538.6929,21
+29847,414346.3506,532471.6702,175745.5038,21
+29848,414246.8129,532571.3327,189614.8349,21
+29849,414128.2849,532724.0973,179315.707,21
+29850,413992.5694,532673.7221,171870.6745,21
+29851,413841.3085,532690.421,166565.7051,21
+29852,413675.9981,532675.004,161915.1417,21
+29853,413497.7985,532723.8507,157539.9345,21
+29854,413792.9009,532590.0736,153332.5963,21
+29855,413106.7521,532521.8642,149248.0333,21
+29856,412895.8947,532438.8814,145247.9097,21
+29857,412676.0912,532426.921,140975.746,21
+29858,412448.2058,532233.6799,139182.3976,21
+29859,412213.0071,532113.6085,135736.0262,21
+29860,411971.1643,531983.171,130698.8134,21
+29861,411723.2534,531928.8733,69175.69234,21
+29862,411469.7788,531694.5134,195931.5915,21
+29863,411211.1846,531537.5958,126902.8236,21
+29864,410947.8815,531372.964,121231.3407,21
+29865,411161.3913,531288.2012,123359.6648,21
+29866,410408.5768,531022.7447,120185.5444,21
+29867,410133.1676,530838.2664,118076.4277,21
+29868,409854.2426,530648.192,116263.3193,21
+29869,409571.5555,530549.3773,581801.0036,21
+29870,409286.2218,530252.8729,17683.61737,21
+29871,408998.1483,530048.3407,84512.11755,21
+29872,408707.199,529839.6349,611310.1165,21
+29873,408414.0825,529708.3679,20984.20373,21
+29874,408118.3882,529410.6959,86973.79929,21
+29875,407819.8348,529190.8786,626340.4056,21
+29876,407519.4025,528967.7611,24408.28881,21
+29877,407216.8991,528840.768,92297.02389,21
+29878,406912.4357,528512.3364,639006.8065,21
+29879,406606.107,528280.3401,27917.65471,21
+29880,406297.9952,528045.655,98179.58405,21
+29881,0,0,620539.656,21
+29882,0,0,144.1039976,21
+29883,0,0,0,21
+29884,0,70.93447007,629558.6846,21
+29885,0,0,165.9821011,21
+29886,0,0,0,21
+29887,0,0,638175.2181,21
+29888,0,75.70806795,812943.0276,21
+29889,0,0,0,21
+29890,0,0,640847.0137,21
+29891,0,0,23.54746321,21
+29892,0,0,0,21
+29893,0,363.2556663,648940.0848,21
+29894,0,0,23.51933758,21
+29895,0,0,0,21
+29896,0,0,656678.5461,21
+29897,426181.2429,0,23.69951446,21
+29898,0,0,0,21
+29899,0,0,664109.4503,21
+29900,0,0,171.7356984,21
+29901,0,0,0,21
+29902,0,0,671217.2659,21
+29903,0,0,172.7232004,21
+29904,0,0,0,21
+29905,0,0,678028.185,21
+29906,0,0,171.0787027,21
+29907,0,3.519775753,0,21
+29908,0,0,684520.8443,21
+29909,0,0,174.2441737,21
+29910,0,64.39312565,0,21
+29911,0,0,690758.8067,21
+29912,0,0,170.2821205,21
+29913,0,0,0,21
+29914,30895.85507,0,696704.0822,21
+29915,2172.51935,0,172.7869573,21
+29916,1690.256368,0,0,21
+29917,8520.67528,34.59467555,702421.3468,21
+29918,9038.54138,0,168.2777459,21
+29919,7025.449713,0,0,21
+29920,8630.478901,0,707871.0489,21
+29921,8689.880579,0,170.4051934,21
+29922,8673.447121,0,0,21
+29923,8888.02874,0,713115.0217,21
+29924,9019.153785,0,166.0968396,21
+29925,9133.64624,0,1079185.404,21
+29926,9258.675918,0,701736.2098,21
+29927,9367.977018,0,55.15721954,21
+29928,9477.965424,0,0,21
+29929,9603.758497,0,707283.8768,21
+29930,9735.722437,0,152.2566038,21
+29931,9819.638784,2.55388544,0,21
+29932,9931.970896,0,712436.8049,21
+29933,10050.85679,0,171.857654,21
+29934,10167.97445,60.86665947,0,21
+29935,10259.2804,0,717449.5597,21
+29936,10358.20902,0,161.4959416,21
+29937,10471.94091,0,0,21
+29938,10584.29516,0,722225.8668,21
+29939,10662.30326,0,162.2217823,21
+29940,10886.69765,0,0,21
+29941,11245.76675,0,726869.6815,21
+29942,11385.46309,0,154.1225335,21
+29943,11472.27313,41174.07109,0,21
+29944,0,1883.344652,731387.2348,21
+29945,0,4191.083715,143.9520045,21
+29946,0,14421.73868,0,21
+29947,0,11548.04061,735753.6439,21
+29948,0,10681.40339,137.7774266,21
+29949,47636.59137,11120.73337,0,21
+29950,0,11147.43945,739917.662,21
+29951,6533.052429,11215.63899,139.9630636,21
+29952,18384.29663,11161.24889,0,21
+29953,11770.49487,11175.03337,743937.1046,21
+29954,12999.99704,11147.44552,135.8611359,21
+29955,13083.38232,11232.15454,0,21
+29956,13270.41227,11119.76554,747764.144,21
+29957,13337.91182,11220.48713,138.6011243,21
+29958,13491.15969,11153.33684,0,21
+29959,13572.92405,11173.84624,751462.3408,21
+29960,13707.97549,11163.17832,134.3110199,21
+29961,13856.77163,11197.12483,0,21
+29962,13906.03516,11144.59641,1804556.437,21
+29963,14072.75265,11265.38355,135.2262415,21
+29964,14150.6956,11206.96692,0,21
+29965,14301.71994,11187.6814,743321.2004,21
+29966,14409.9013,11174.1181,131.2216996,21
+29967,14478.67259,11231.05274,0,21
+29968,354060.2684,11206.97021,747169.8865,21
+29969,14730.49061,11268.24703,133.96952,21
+29970,14833.55036,11239.77038,0,21
+29971,14959.90816,11175.64806,750886.4832,21
+29972,15082.15582,11240.87554,118.6608879,21
+29973,15132.90927,3.618670458,0,21
+29974,15330.21089,0,754407.5638,21
+29975,15359.09562,72.98180375,134.8203311,21
+29976,15516.79609,0,0,21
+29977,15586.93823,0,757831.8181,21
+29978,15735.34491,0,117.1512928,21
+29979,0,3.63657681,0,21
+29980,0,0,761066.5639,21
+29981,0,73.33372015,133.5528391,21
+29982,0,45311.63054,0,21
+29983,63816.36332,687.8447516,764218.7404,21
+29984,2524.466334,3988.480801,115.7508928,21
+29985,7348.514519,15033.311,0,21
+29986,24051.53736,11745.72622,767190.1765,21
+29987,15453.28243,10909.82937,120.6751395,21
+29988,16838.64619,11294.34666,0,21
+29989,17014.2684,11315.4173,770072.0962,21
+29990,17046.43931,11354.34934,116.4225749,21
+29991,17172.06951,11380.22275,0,21
+29992,17274.87837,11354.35071,772808.8524,21
+29993,17403.96616,11382.22094,118.6148544,21
+29994,17449.85629,11395.23255,0,21
+29995,17537.68535,11309.27126,775458.6415,21
+29996,17682.27445,11336.76884,114.9309663,21
+29997,17730.03553,11299.05712,0,21
+29998,17883.46546,11336.77,777971.8532,21
+29999,17919.77199,11367.87721,1109738.828,21
+30000,18037.81801,11297.49053,0,21
+30001,17916.67039,11249.63906,762878.9286,21
+30002,17868.31129,11131.40092,101.6020731,21
+30003,17863.72966,11101.51103,0,21
+30004,17796.15143,10991.99284,765813.5858,21
+30005,17842.00878,11041.22163,103.2060988,21
+30006,17745.67879,10864.56459,0,21
+30007,17744.72825,10758.25344,768643.3715,21
+30008,17742.93886,10750.45326,100.1309117,21
+30009,17670.43776,10640.0693,0,21
+30010,17686.34803,10562.44958,771320.248,21
+30011,17637.12797,10578.23389,103.2166577,21
+30012,17596.54552,0,0,21
+30013,0,0,773905.8272,21
+30014,0,0,99.85714505,21
+30015,0,3.453970952,0,21
+30016,64060.29349,0,776351.6807,21
+30017,751.6831184,69.2398532,102.4087616,21
+30018,11834.99799,0,0,21
+30019,23168.69912,0,778717.5395,21
+30020,16358.18253,0,98.65792506,21
+30021,17382.00669,3.381615385,0,21
+30022,17347.91295,0,780956.6127,21
+30023,17303.67028,67.95025887,100.612986,21
+30024,17279.38998,0,0,21
+30025,17266.74661,0,783127.0235,21
+30026,17197.17202,0,96.5388484,21
+30027,17215.65322,3.343726567,0,21
+30028,17160.15418,0,785175.8812,21
+30029,17086.9633,67.25942048,98.77510858,21
+30030,17123.11477,0,0,21
+30031,17025.31744,0,787161.3565,21
+30032,17050.61729,0,95.16291101,21
+30033,16932.99147,3.276034383,0,21
+30034,16979.57624,0,789033.1652,21
+30035,356351.3482,66.00849833,97.3595099,21
+30036,16867.53267,0,0,21
+30037,16831.7426,0,1920144.597,21
+30038,16815.57591,0,92.05984493,21
+30039,16745.79275,3.209406753,0,21
+30040,16765.71891,0,774351.1383,21
+30041,16632.72329,64.52637898,94.00601045,21
+30042,16699.32862,0,0,21
+30043,16591.39401,0,776756.8157,21
+30044,16585.9132,0,89.45892559,21
+30045,16545.42495,3.150012228,0,21
+30046,0,0,779035.0252,21
+30047,0,0,91.25934673,21
+30048,0,65.0859386,0,21
+30049,0,0,781238.1523,21
+30050,68337.98585,0,0,21
+30051,1756.148238,0,0,21
+30052,5300.627794,0,0,21
+30053,24630.68358,0,0,21
+30054,14952.36521,0,0,21
+30055,16118.04348,229.062851,0,21
+30056,16234.07206,0,0,21
+30057,16133.36399,0,0,21
+30058,16118.61062,0,0,21
+30059,16088.33719,0,0,21
+30060,16014.66746,0,0,21
+30061,16056.34158,0,0,21
+30062,16091.05056,0,0,21
+30063,16153.27913,0,0,21
+30064,16186.7904,0,0,21
+30065,16200.91053,0,0,21
+30066,16274.05895,0,0,21
+30067,16297.95599,0,0,21
+30068,16321.41275,0,0,21
+30069,16388.91796,0,0,21
+30070,16397.77715,254.0840584,0,21
+30071,16464.12299,0,0,21
+30072,16488.42578,0,0,21
+30073,16522.99349,0,0,21
+30074,16602.40554,0,0,21
+30075,16571.50065,0,0,21
+30076,16668.8334,0,1125229.103,21
+30077,16688.76394,0,0,21
+30078,16703.09562,0,0,21
+30079,16769.25122,0,0,21
+30080,0,0,0,21
+30081,0,0,0,21
+30082,0,61.69593831,0,21
+30083,0,0,0,21
+30084,71141.30882,0,0,21
+30085,2507.660154,0,0,21
+30086,5061.291276,0,0,21
+30087,25825.14145,0,0,21
+30088,15835.9254,0,0,21
+30089,17077.67951,0,0,21
+30090,17213.39731,0,0,21
+30091,17269.54761,0,0,21
+30092,17304.98708,0,0,21
+30093,17352.13396,71.78992753,0,21
+30094,17362.1568,0,0,21
+30095,17392.64397,0,0,21
+30096,17486.48101,0,0,21
+30097,356907.8547,2.412362814,0,21
+30098,17509.256,0,0,21
+30099,17554.37347,0,0,21
+30100,17554.37544,251.1039758,0,21
+30101,17663.82181,0,0,21
+30102,17623.65616,0,0,21
+30103,17705.17894,0,0,21
+30104,17713.65398,0,0,21
+30105,17741.40147,0,0,21
+30106,17796.60584,0,0,21
+30107,17841.18212,0,0,21
+30108,17796.60961,0,0,21
+30109,17927.10296,0,0,21
+30110,17890.62894,0,0,21
+30111,17968.46708,0,0,21
+30112,17976.3686,0,0,21
+30113,18045.12479,0,735540.8304,21
+30114,0,0,0,21
+30115,0,0,1230104.521,21
+30116,0,0,740049.1093,21
+30117,67730.75115,0,0,21
+30118,1029.650881,0,0,21
+30119,11391.10519,0,747286.6834,21
+30120,24766.68391,0,0,15.6
+30121,17169.96024,0,0,15.6
+30122,18397.00807,0,751400.7441,15.6
+30123,18446.14471,0,0,15.6
+30124,18533.2213,0,0,15.6
+30125,18595.20576,0,754874.3917,15.6
+30126,18596.76688,3.333999795,5.774594602,15.6
+30127,18700.38619,0,0,15.6
+30128,18721.7168,0,758091.1532,15.6
+30129,18810.97878,60.17997471,0,15.6
+30130,18845.02701,0,0,15.6
+30131,18892.2711,37594.35731,0,15.6
+30132,18993.37652,1939.034251,0,15.6
+30133,18974.86531,3824.268568,0,15.6
+30134,19062.88371,12423.66841,0,15.6
+30135,19095.35236,11531.40405,0,15.6
+30136,19183.10243,9922.716378,0,15.6
+30137,19229.58755,10623.34355,0,15.6
+30138,19256.31448,10744.53622,0,15.6
+30139,19353.0357,10803.99939,0,15.6
+30140,19367.31355,11023.06527,0,15.6
+30141,19413.39724,10962.02601,0,15.6
+30142,19469.21569,11083.40897,0,15.6
+30143,19554.27732,11205.31962,0,15.6
+30144,19591.7764,11287.35738,0,15.6
+30145,19595.79896,11349.98907,0,15.6
+30146,19715.15678,11481.27231,0,15.6
+30147,0,11818.10981,0,15.6
+30148,0,11632.84281,0,15.6
+30149,0,11810.03917,0,15.6
+30150,74746.09439,11831.20314,0,15.6
+30151,4141.222698,11985.41916,732436.6699,15.6
+30152,9701.379105,12043.18193,0,15.6
+30153,28276.67356,12152.84288,0,15.6
+30154,18694.27018,12257.30399,1838862.554,15.6
+30155,20160.01648,12396.63986,0,15.6
+30156,20218.5382,12404.61662,0,15.6
+30157,359735.1942,12621.06061,749200.042,15.6
+30158,20341.19412,12608.02687,0,15.6
+30159,20359.08102,12812.36914,0,15.6
+30160,20399.30839,12837.26921,753162.386,15.6
+30161,20497.28533,0,0,15.6
+30162,20498.81641,0,0,15.6
+30163,20537.27276,0,756512.9617,15.6
+30164,20636.26259,253.9713239,4.273473345,15.6
+30165,20636.26446,0,0,15.6
+30166,20733.43678,0,759618.5851,15.6
+30167,20679.62905,58369.82218,6.332440685,15.6
+30168,20830.15359,0,0,15.6
+30169,20814.03509,3602.54887,762605.157,15.6
+30170,20883.52511,19564.09687,6.424077673,15.6
+30171,20917.51138,14227.12628,0,15.6
+30172,20983.36434,13660.58349,765438.1676,15.6
+30173,20990.50981,14271.07674,9.823622275,15.6
+30174,21061.51355,14349.04674,0,15.6
+30175,21110.69758,14518.19007,768174.8902,15.6
+30176,347407.9866,14602.64012,6.66131821,15.6
+30177,27675.48673,14662.7954,0,15.6
+30178,41889.52653,14907.13581,770768.3736,15.6
+30179,101557.801,14878.78279,10.06940018,15.6
+30180,96661.04539,15021.69311,0,15.6
+30181,69710.71169,15063.72087,773273.3525,15.6
+30182,77946.96778,15100.26306,6.725661711,15.6
+30183,157214.2123,15120.98119,0,15.6
+30184,85774.63915,15202.06206,775639.736,15.6
+30185,91529.30502,15234.92778,10.24773575,15.6
+30186,108833.5963,15235.8065,0,15.6
+30187,100712.9731,15337.25492,777930.7043,15.6
+30188,102351.1407,15330.13039,9.706552291,15.6
+30189,102887.6426,15394.08797,0,15.6
+30190,103271.4215,15395.62496,780103.2537,15.6
+30191,103754.6176,15504.65266,10.18522156,15.6
+30192,104233.4133,15579.30372,0,15.6
+30193,104960.5602,15561.27421,782215.8085,15.6
+30194,105110.0739,15638.67937,1132077.588,15.6
+30195,105891.0646,15643.7114,0,15.6
+30196,106326.7597,15744.03818,765998.2453,15.6
+30197,106712.1406,0,9.874963845,15.6
+30198,107291.3202,0,0,15.6
+30199,108038.2086,0,768671.2643,15.6
+30200,108438.6038,0,6.557003492,15.6
+30201,108886.3796,63924.65765,0,15.6
+30202,109372.5638,0,771210.0827,15.6
+30203,109882.3765,5208.079938,9.728377801,15.6
+30204,110657.8517,23770.04143,0,15.6
+30205,110871.6903,15059.26367,773666.9623,15.6
+30206,22458.61428,15900.62974,6.516609814,15.6
+30207,22510.97396,16178.56029,0,15.6
+30208,22495.55883,16206.17801,775994.0827,15.6
+30209,22589.94911,16270.74139,9.77004271,15.6
+30210,22566.12526,16293.12319,0,15.6
+30211,22694.81662,16345.40413,778250.2262,15.6
+30212,22644.96225,16385.60498,6.515157131,15.6
+30213,0,16418.23794,0,15.6
+30214,0,16484.06627,780389.6931,15.6
+30215,411211.5157,16463.49609,6.860580299,15.6
+30216,421148.9166,16567.42467,0,15.6
+30217,49458.74745,16621.06842,782465.493,15.6
+30218,132371.5559,16554.93741,6.440754674,15.6
+30219,134008.7599,16716.08474,0,15.6
+30220,114041.439,16668.87963,784427.6186,15.6
+30221,119717.0225,16762.67935,6.828709683,15.6
+30222,120092.6603,16782.46379,0,15.6
+30223,120903.1553,16806.29417,786332.4269,15.6
+30224,121297.5872,16873.0206,6.387342031,15.6
+30225,121518.905,16902.52694,0,15.6
+30226,122016.688,16970.25035,788132.7924,15.6
+30227,122633.9452,16950.89987,6.734085883,15.6
+30228,122693.7068,17054.81388,0,15.6
+30229,123787.9338,17043.52013,789883.009,15.6
+30230,123750.1221,17125.37382,6.276668922,15.6
+30231,124493.8436,0,0,15.6
+30232,124779.8848,0,791538.5584,15.6
+30233,125277.3026,0,6.560494166,15.6
+30234,125856.617,0,1298229.573,15.6
+30235,126259.7797,72360.08961,768290.226,15.6
+30236,126951.5493,0,5.890485294,15.6
+30237,127062.5645,4064.285214,0,15.6
+30238,127801.904,28112.88457,770811.179,15.6
+30239,128150.8272,15454.7609,6.197204112,15.6
+30240,128847.8833,17595.24457,0,15.6
+30241,129315.2563,17556.50448,773257.0316,15.6
+30242,129943.9689,17456.55812,5.694908183,15.6
+30243,130561.5667,17445.32927,0,15.6
+30244,131240.5012,17329.55833,775585.9822,15.6
+30245,24157.13549,17318.29887,5.928324278,15.6
+30246,0,17210.7512,0,15.6
+30247,0,17175.12068,777841.9245,15.6
+30248,0,17086.09768,5.527883496,15.6
+30249,84751.5722,17051.48683,254424.5596,15.6
+30250,18577.27114,16965.73124,827167.4789,15.6
+30251,492927.7211,16919.41693,53262.33236,15.6
+30252,33742.00212,16864.07009,181807.7863,15.6
+30253,44607.46431,16739.29069,839250.9105,15.6
+30254,208641.4017,16774.53569,58876.75571,15.6
+30255,126799.1896,16636.98124,184909.5705,15.6
+30256,138569.1239,16586.76611,831386.2168,15.6
+30257,139781.3447,16546.86165,61024.93985,15.6
+30258,140788.1648,16455.34455,184621.353,15.6
+30259,141111.2559,16409.56194,830056.1681,15.6
+30260,141678.8564,16340.66771,61346.27681,15.6
+30261,142444.9354,16289.52876,184345.6539,15.6
+30262,142751.0896,16202.6402,828917.7857,15.6
+30263,143663.1543,16170.11268,61740.24624,15.6
+30264,143809.6996,16087.16777,184236.9042,15.6
+30265,144792.7705,0,827875.9679,15.6
+30266,145448.1723,0,62223.64148,15.6
+30267,145602.9779,0,184130.5578,15.6
+30268,146743.709,0,826990.2084,15.6
+30269,146970.2087,65271.16433,62713.56755,15.6
+30270,147612.7424,0,184091.7528,15.6
+30271,148289.1475,4149.207304,826265.4359,15.6
+30272,488541.822,23292.09266,63143.04457,15.6
+30273,149316.1299,14788.16275,184127.1358,15.6
+30274,150283.539,15140.28607,825569.4855,15.6
+30275,150605.7273,15452.68321,1157857.99,15.6
+30276,151332.6414,15347.84999,176852.22,15.6
+30277,151966.3021,15299.70968,807400.7806,15.6
+30278,152522.6215,15246.44285,62965.08767,15.6
+30279,126930.0293,15164.97017,0,15.6
+30280,127347.5453,15110.29385,748842.4536,15.6
+30281,0,15033.67626,5.054376183,15.6
+30282,86969.49021,14967.57333,0,15.6
+30283,26876.15766,14926.21516,752147.426,15.6
+30284,8925.322694,14836.79913,4.644868398,15.6
+30285,35104.52302,14794.63253,0,15.6
+30286,590545.8778,14698.36171,912470.7933,15.6
+30287,26697.08231,14651.86875,53139.23994,15.6
+30288,71046.14852,14595.221,173017.3038,15.6
+30289,229360.3768,14506.70572,823476.0833,15.6
+30290,149506.4123,14427.65203,69393.89434,15.6
+30291,160008.3965,14372.9783,182271.9739,15.6
+30292,161636.3005,14335.80279,819985.5165,15.6
+30293,162235.1689,14257.88975,67028.1009,15.6
+30294,162495.8379,14178.92961,183676.767,15.6
+30295,163474.7647,14116.18239,820023.6588,15.6
+30296,163571.8738,14038.81951,67416.29366,15.6
+30297,164498.9976,13976.01618,184023.315,15.6
+30298,164752.4693,13866.44066,820040.1049,15.6
+30299,165425.0703,0,67993.73696,15.6
+30300,166143.9913,0,184318.8059,15.6
+30301,165950.3726,7.983183257,820178.0773,15.6
+30302,166361.7002,0,68479.47252,15.6
+30303,166012.637,79.19042236,184533.1872,15.6
+30304,166642.2505,0,820260.1645,15.6
+30305,166533.9176,63847.89258,68814.59236,15.6
+30306,166621.983,0,184849.5733,15.6
+30307,166932.5667,1528.267775,820424.4678,15.6
+30308,166655.1942,19196.5164,69173.82393,15.6
+30309,166945.6515,14683.02059,185136.5682,15.6
+30310,166947.288,13287.22721,820546.2862,15.6
+30311,167285.6914,13822.99353,69646.20582,15.6
+30312,139670.7032,13786.29439,185378.1222,15.6
+30313,139480.7894,13835.13431,820816.2481,15.6
+30314,220141.7909,13822.99253,69996.25357,15.6
+30315,155560.0991,13835.13375,185680.6153,15.6
+30316,21421.37386,13822.99201,1810419.045,15.6
+30317,32012.19309,13866.02071,3.677971893,15.6
+30318,27308.04352,13835.79165,0,15.6
+30319,27675.04313,13822.99137,738732.9921,15.6
+30320,600324.6379,13902.62294,4.519631902,15.6
+30321,27645.35078,13822.991,291922.0494,15.6
+30322,85898.50627,13872.83716,789483.7843,15.6
+30323,239970.5116,13865.53811,56314.96625,15.6
+30324,155318.8221,13860.05575,192743.191,15.6
+30325,169243.3504,13859.62053,807786.2857,15.6
+30326,169022.1752,13915.42202,70625.63527,15.6
+30327,169272.864,13847.25523,181920.039,15.6
+30328,508683.6402,13903.93764,809891.4301,15.6
+30329,169226.7203,13865.12141,71319.34632,15.6
+30330,169403.9013,13902.6214,182505.1577,15.6
+30331,169113.5579,13928.20243,810942.1973,15.6
+30332,169651.2015,13859.6196,71750.48104,15.6
+30333,169113.4087,13926.81529,183082.3423,15.6
+30334,169608.2197,13903.93692,811982.3523,15.6
+30335,169419.1292,0,72190.30149,15.6
+30336,169486.2507,0,183729.4985,15.6
+30337,169527.8258,0,813041.5372,15.6
+30338,169338.4186,0,72578.27732,15.6
+30339,169897.3667,0,184400.9391,15.6
+30340,169482.4844,0,813980.8928,15.6
+30341,169929.3191,65273.61359,73082.73498,15.6
+30342,169338.8605,0,184997.0427,15.6
+30343,170180.0893,1437.432115,815035.475,15.6
+30344,141728.0474,19481.39971,73516.00963,15.6
+30345,142349.2567,15043.40822,185609.5593,15.6
+30346,222124.0636,13136.96514,815945.6523,15.6
+30347,158702.5278,14088.18751,74049.38182,15.6
+30348,163360.5347,14036.532,186149.7307,15.6
+30349,174827.5901,14025.39909,817039.4448,15.6
+30350,27517.33231,14087.30346,74379.34557,15.6
+30351,27849.57156,14025.39896,0,15.6
+30352,27879.08337,14055.21368,747151.871,15.6
+30353,27852.21748,14069.55923,4.035854705,15.6
+30354,613337.9127,14043.143,0,15.6
+30355,27879.02384,14067.26672,960769.0064,15.6
+30356,86837.98128,14093.84291,53741.85786,15.6
+30357,240617.2298,14037.46956,1238682.585,15.6
+30358,158039.7602,14068.64851,821437.3612,15.6
+30359,170396.3779,14104.54951,73767.13144,15.6
+30360,170795.0136,14043.81699,184576.5707,15.6
+30361,170033.9635,14269.70404,810144.4577,15.6
+30362,170584.7178,14383.64038,75782.7507,15.6
+30363,170027.5574,14512.36462,185387.0345,15.6
+30364,169734.1721,14649.3262,811609.6371,15.6
+30365,169688.2599,14794.38301,76366.63779,15.6
+30366,169549.5758,14866.37315,428715.2977,15.6
+30367,169028.6014,15027.03954,75375.58901,15.6
+30368,169094.9271,15133.0842,79697.01137,15.6
+30369,169088.3775,15247.67332,124548.2805,15.6
+30370,168374.1932,15386.75759,223009.0407,15.6
+30371,168690.9982,0,349570.4505,15.6
+30372,168302.9,0,307843.9297,15.6
+30373,167888.2706,0,73854.28552,15.6
+30374,168132.2709,0,77099.86542,15.6
+30375,167615.3572,0,107289.8029,15.6
+30376,140186.2415,71417.41112,306911.8498,15.6
+30377,139961.6068,0,73691.61596,15.6
+30378,218874.9724,1757.563475,74602.16996,15.6
+30379,155145.8581,26649.35045,74162.69555,15.6
+30380,160865.1897,15170.91244,316354.7993,15.6
+30381,171069.4429,16509.70048,291937.1541,15.6
+30382,166063.3321,16895.49784,74173.11899,15.6
+30383,505815.8746,16990.48657,75934.08051,15.6
+30384,27354.86239,17121.99481,111775.5685,15.6
+30385,27302.82491,17236.90042,0,15.6
+30386,27255.45539,17333.65021,0,15.6
+30387,27256.72751,17521.57483,0,15.6
+30388,27213.74719,17576.01489,0,15.6
+30389,651606.6173,17693.53581,204283.498,15.6
+30390,34389.1243,17868.68163,75309.17197,15.6
+30391,66532.07342,17929.27686,214552.3623,15.6
+30392,225443.6982,18069.16017,254773.1947,15.6
+30393,163934.8807,18182.305,227196.0836,15.6
+30394,160912.1403,18287.33178,213835.2836,15.6
+30395,164507.2226,18395.92383,151581.7026,15.6
+30396,164555.8618,18574.27625,294266.096,15.6
+30397,163599.0488,18626.87201,186133.9216,15.6
+30398,164234.8072,18789.42778,204487.0115,15.6
+30399,163349.5848,18856.26398,1009868.069,15.6
+30400,163592.3194,19039.15904,192167.7266,15.6
+30401,163119.256,19131.79034,189319.6131,15.6
+30402,163060.0898,19251.53759,668404.9691,15.6
+30403,162755.0099,19324.74,70997.67315,15.6
+30404,162531.7346,19567.76485,148483.7724,15.6
+30405,162524.2597,19512.69089,695110.7815,15.6
+30406,162031.2037,0,72450.5489,15.6
+30407,161940.8742,0,147958.9299,15.6
+30408,135293.1501,0,706957.007,15.6
+30409,134679.3498,73242.95879,73781.8583,15.6
+30410,212977.7141,0,150940.4907,15.6
+30411,147077.0527,12666.43757,716044.9881,15.6
+30412,156959.5741,28030.21622,74974.55595,15.6
+30413,164411.5628,19208.51673,154648.7137,15.6
+30414,160407.7712,20678.76007,724119.2611,15.6
+30415,160677.5771,20965.53942,76234.81272,15.6
+30416,160140.3317,20992.26397,158125.5722,15.6
+30417,160276.8168,21134.93223,731657.7005,15.6
+30418,159897.331,21252.95459,77483.42324,15.6
+30419,26493.06083,21394.38836,0,15.6
+30420,26431.00423,21503.81959,662905.0821,15.6
+30421,26570.24253,21409.24758,0,15.6
+30422,26493.0534,21344.84585,0,15.6
+30423,26660.99831,21408.83572,880507.6797,15.6
+30424,631771.2097,21134.92725,62165.92277,15.6
+30425,26764.69456,21092.83923,153910.4764,15.6
+30426,68858.29661,20947.06299,767932.5092,15.6
+30427,227166.5961,20945.16551,80206.68688,15.6
+30428,159423.0752,20731.30223,172027.6086,15.6
+30429,162152.8111,20763.30504,760056.2439,15.6
+30430,165010.8409,20582.02117,82512.94751,15.6
+30431,165675.826,20559.92303,174431.3135,15.6
+30432,166191.7144,20459.32436,765371.667,15.6
+30433,166520.2441,20348.54859,83453.25791,15.6
+30434,167147.5138,20254.19325,176752.3127,15.6
+30435,167222.1157,20192.69356,770450.2033,15.6
+30436,507746.2041,20101.20131,84370.2904,15.6
+30437,168196.5686,19992.23334,179118.3762,15.6
+30438,168961.0749,19942.72117,775180.9574,15.6
+30439,169328.3539,0,85363.95339,15.6
+30440,142329.7345,0,181306.2731,15.6
+30441,142922.8442,3.893814658,1727978.134,15.6
+30442,222245.711,72328.14425,84922.12132,15.6
+30443,159068.1744,64.48086957,178405.7552,15.6
+30444,166261.6049,10677.41028,772239.7818,15.6
+30445,176455.7338,27377.86989,86010.74238,15.6
+30446,172358.2695,17713.34487,180728.0078,15.6
+30447,173264.5269,19100.71068,777070.1681,15.6
+30448,173665.1787,19102.89394,87010.76278,15.6
+30449,174348.1,18961.57865,182990.9671,15.6
+30450,174370.0222,19186.24028,781613.9652,15.6
+30451,175358.7445,18770.55128,87941.41657,15.6
+30452,175413.2179,18730.2088,185205.7387,15.6
+30453,176258.1521,18641.56043,697195.964,15.6
+30454,28271.65639,18521.47568,0,15.6
+30455,28286.30034,18459.36155,0,15.6
+30456,28367.51854,18342.88211,927081.678,15.6
+30457,28389.57674,18250.57966,67371.57112,15.6
+30458,655045.801,18210.78085,178191.6711,15.6
+30459,34547.60239,18017.06609,807175.7512,15.6
+30460,88285.57044,18015.56747,89283.61392,15.6
+30461,251139.3336,17902.78171,192120.1926,15.6
+30462,170817.6111,17739.37747,797735.5557,15.6
+30463,180277.3294,17743.13822,91892.80809,15.6
+30464,181805.7355,17617.12774,193566.2672,15.6
+30465,182320.5191,17523.00101,800887.0349,15.6
+30466,183019.4822,17479.76454,92725.00388,15.6
+30467,183360.2381,17323.23928,195062.5496,15.6
+30468,183293.3632,17291.16599,804097.8571,15.6
+30469,184367.3297,17191.99248,93438.16813,15.6
+30470,184271.8097,17094.77219,196646.8987,15.6
+30471,184978.997,16942.85873,807013.4875,15.6
+30472,156312.2548,0,94259.1558,15.6
+30473,156469.5812,3.485516207,198186.5944,15.6
+30474,238872.1887,0,809743.2645,15.6
+30475,177693.7343,0,95151.77264,15.6
+30476,179228.3233,68490.87038,199630.5486,15.6
+30477,192263.944,0,812373.682,15.6
+30478,187909.5485,3959.563933,95942.20911,15.6
+30479,188564.0002,24580.88913,201119.9694,15.6
+30480,189705.8197,15058.92031,814821.3336,17.8
+30481,188335.8919,15909.31895,96731.33958,17.8
+30482,187658.4052,16313.32369,202401.4814,17.8
+30483,187388.4149,16397.29902,817051.4648,17.8
+30484,186680.3713,16523.46567,1115074.638,17.8
+30485,185963.3152,16613.90308,196964.398,17.8
+30486,185321.2068,16672.7396,708050.3733,17.8
+30487,185087.4301,16818.25274,0,17.8
+30488,29114.3868,16856.67167,0,17.8
+30489,368418.594,16990.19406,953646.4527,17.8
+30490,28926.29063,17032.31701,76939.83011,17.8
+30491,28870.79294,17194.76986,189058.3064,17.8
+30492,675684.8727,17196.17266,823082.2738,17.8
+30493,43380.25053,17356.93049,96886.14245,17.8
+30494,76491.9947,17433.93374,202621.4471,17.8
+30495,260140.8043,17492.0661,813122.7373,17.8
+30496,167213.4919,17633.95565,98854.11416,17.8
+30497,178630.4996,17656.08029,203483.9443,17.8
+30498,179103.288,17824.31188,815356.1065,17.8
+30499,178011.4292,17846.15824,99468.83384,17.8
+30500,178073.0573,17998.84467,204511.7627,17.8
+30501,176829.2474,18015.55624,817506.4008,17.8
+30502,176503.2172,18089.52228,100147.8072,17.8
+30503,175900.7317,18244.62721,205566.428,17.8
+30504,147318.2777,18250.56606,819581.7134,17.8
+30505,146552.6402,18418.05991,100762.1065,17.8
+30506,225836.0795,0,206711.2778,17.8
+30507,161823.6775,0,821473.4981,17.8
+30508,166524.9944,0,101445.9101,17.8
+30509,176840.5174,0,207654.0068,17.8
+30510,171149.172,77470.63086,823354.6811,17.8
+30511,170961.7725,0,102006.7171,17.8
+30512,170515.9059,6892.224147,208741.3241,17.8
+30513,169645.7975,29298.13423,824956.7233,17.8
+30514,169202.8185,17341.98474,102665.0498,17.8
+30515,168313.8393,19308.90298,209775.5722,17.8
+30516,168311.0077,19481.80334,826533.5397,17.8
+30517,167115.6981,19552.48687,103223.5081,17.8
+30518,166852.1045,19624.45552,210703.9382,17.8
+30519,165976.2453,19773.42534,724471.8907,17.8
+30520,165619.1672,19789.85599,0,17.8
+30521,164664.639,19902.38549,1157091.137,17.8
+30522,26788.54666,20051.02336,954522.6899,17.8
+30523,26703.40942,20047.8436,80881.93213,17.8
+30524,26652.50461,20222.84907,193161.3806,17.8
+30525,26551.56605,20252.62092,824451.2538,17.8
+30526,26532.38292,20375.40355,101711.8109,17.8
+30527,993002.2868,20457.75619,206160.9147,17.8
+30528,26382.83947,20539.31139,814618.6165,17.8
+30529,62865.16029,20646.06666,103619.498,17.8
+30530,212908.6937,20702.22535,207102.1776,17.8
+30531,162098.9192,20830.64866,816781.3806,17.8
+30532,153529.3468,20923.18661,104275.1963,17.8
+30533,157731.0557,20992.20885,208107.3678,17.8
+30534,156769.7267,21104.16067,818934.6515,17.8
+30535,156630.9757,21193.08572,104905.8218,17.8
+30536,129640.3599,21271.32996,209199.3645,17.8
+30537,129253.8526,21372.66876,821046.2432,17.8
+30538,129112.5746,21450.50909,105479.0321,17.8
+30539,213273.2179,21538.4752,210300.436,17.8
+30540,150233.4146,0,822907.6448,20
+30541,136702.5702,0,106164.8104,20
+30542,163982.9109,0,211285.1366,20
+30543,154523.8032,78993.70753,824766.1264,20
+30544,156488.6484,277.1853695,106718.672,20
+30545,156858.008,14188.56736,212268.9463,20
+30546,157964.141,28552.28193,826454.5737,20
+30547,158615.3944,19934.78183,107245.6853,20
+30548,159521.0232,21150.99396,213273.7782,20
+30549,160294.3139,21119.30765,827982.0851,20
+30550,161047.4863,21055.6525,107872.3272,20
+30551,161854.7579,20995.88414,214164.6168,20
+30552,162647.3584,20891.33469,721412.7203,20
+30553,163588.8196,20833.47996,0,20
+30554,164358.2551,20845.15671,0,20
+30555,165104.9479,20695.23262,983008.6003,20
+30556,165731.5913,20619.08941,87884.57066,20
+30557,27062.6865,20591.95456,205578.1968,20
+30558,27109.37752,20517.14618,1867294.895,20
+30559,27226.23367,20389.10108,106517.2037,20
+30560,27287.24828,20408.19116,211289.9396,20
+30561,27372.15832,20286.46993,819569.1648,20
+30562,674985.7955,20236.6508,108367.4032,20
+30563,39030.14513,20149.59405,212045.9573,20
+30564,65934.94322,20133.85229,821660.0128,20
+30565,585862.7181,20018.51627,108921.7396,20
+30566,167569.9128,19972.92567,212941.8521,20
+30567,173340.8113,19888.36292,823609.5888,20
+30568,176187.6144,19778.94919,109504.3842,20
+30569,148656.8077,19805.17901,213942.894,20
+30570,149768.133,19606.61442,825484.6306,20
+30571,230131.5743,19661.68596,110074.2052,20
+30572,167918.0678,19531.36398,214954.6091,20
+30573,174135.1569,0,827220.0313,20
+30574,185093.7726,35.53719129,110658.7922,20
+30575,181509.8405,0,215887.2627,20
+30576,182583.7499,70662.62207,828837.1926,20
+30577,183056.6202,0,111273.4069,20
+30578,184192.5472,10573.44491,216838.5699,20
+30579,184746.9312,27107.71557,830466.7375,20
+30580,185824.5982,17412.32317,111772.8302,20
+30581,186474.8642,18960.42302,217733.0548,20
+30582,186959.1201,18967.28989,831899.9636,20
+30583,188314.4624,18815.94858,112366.5974,20
+30584,188847.0886,18871.79882,218585.5625,20
+30585,189424.1128,18708.62302,720762.7477,20
+30586,190550.7109,18664.39604,0,20
+30587,190911.6461,18554.03192,0,20
+30588,192327.0176,18484.97342,988626.0785,20
+30589,192562.0931,18464.73905,94581.66816,20
+30590,193812.3849,18299.35386,208345.7229,20
+30591,194175.84,18291.19512,850695.1899,20
+30592,30227.28385,18209.31197,113165.6936,20
+30593,30305.87558,18115.19391,222697.3153,20
+30594,30377.36648,18057.82448,838302.6413,20
+30595,30435.74237,17976.81388,115064.5876,20
+30596,709683.1085,17902.7475,1250308.639,20
+30597,71468.83531,17770.54768,823133.6256,20
+30598,104477.3702,17763.44993,113168.4436,20
+30599,274803.6337,17629.27983,216345.7554,20
+30600,191372.098,17518.28243,825245.6886,21
+30601,168959.6916,17279.64915,113221.4772,21
+30602,168725.1967,17372.03469,217060.8292,21
+30603,591594.4936,17279.64887,826692.225,21
+30604,192347.346,17369.09387,113697.402,21
+30605,187999.3746,17517.60691,217952.4555,21
+30606,203035.1877,0,828447.0264,21
+30607,196686.0245,0,114095.4462,21
+30608,197034.7213,0,219008.5125,21
+30609,196009.4618,0,829942.7281,21
+30610,196019.4337,71161.42887,114632.6122,21
+30611,195494.7292,0,219826.4904,21
+30612,194871.005,4622.137911,831516.1975,21
+30613,194598.7776,27497.66704,115058.8377,21
+30614,194383.0978,15618.0601,220695.1077,21
+30615,193442.7305,17418.9892,833015.4941,21
+30616,193669.4891,17472.33796,115524.4718,21
+30617,192533.6787,17537.11582,221403.9605,21
+30618,192575.8368,17468.40616,718865.7677,21
+30619,192279.1822,17530.35274,0,21
+30620,191579.2983,17502.80832,0,21
+30621,191126.1413,17518.28875,990809.8304,21
+30622,191023.4915,17514.87501,101013.1117,21
+30623,190411.2533,17555.92232,209679.7682,21
+30624,189888.5596,17514.87641,852028.5646,21
+30625,189729.8306,17557.37916,116181.3747,21
+30626,29583.47408,17537.12196,225511.0621,21
+30627,29575.66236,17571.17032,839567.7157,21
+30628,29448.40488,17557.38136,117569.1923,21
+30629,29501.47687,17571.34265,225579.7998,21
+30630,688686.4718,17851.4756,840373.3436,21
+30631,52100.51242,17530.36132,117817.3019,21
+30632,88505.66729,17613.8782,225993.7163,21
+30633,234191.9866,17602.2733,841253.6463,21
+30634,144786.4421,17579.57026,118063.1354,21
+30635,237639.8307,17641.33065,226494.7372,21
+30636,176848.0876,17613.88126,842012.4396,21
+30637,176954.1714,17568.05787,118507.9432,21
+30638,189408.3745,17702.4781,226988.9536,21
+30639,183964.6841,17568.05941,842870.9769,21
+30640,183798.1555,0,1154603.841,21
+30641,183443.306,64.96151174,220021.9808,21
+30642,182352.7231,0,827452.7217,21
+30643,183112.3331,0,116736.5042,21
+30644,181552.1739,72461.0634,221111.0078,21
+30645,181838.7067,0,829439.0717,21
+30646,181163.08,4690.594271,117122.9888,21
+30647,180309.1881,28382.17572,222173.1973,21
+30648,180711.0995,15676.77228,831156.3373,21
+30649,179803.7558,17782.57753,117693.011,21
+30650,179277.882,17811.47937,223114.856,21
+30651,179133.4879,17877.51436,715081.717,21
+30652,178653.5991,17823.24583,0,21
+30653,517521.2877,17899.58208,0,21
+30654,177599.8415,17789.41734,990526.2179,21
+30655,177550.0932,17907.35528,111234.6482,21
+30656,176842.9478,17899.58489,209190.6289,21
+30657,176713.539,17890.78226,851488.6147,21
+30658,175970.2385,17892.74832,118828.3546,21
+30659,175444.5883,17906.33598,227556.1053,21
+30660,28179.49,17877.5227,838623.881,21
+30661,28132.75608,18054.47376,119977.0912,21
+30662,28215.14139,18123.487,227610.9925,21
+30663,28385.06373,18288.33801,839600.9345,21
+30664,661561.2297,18381.89353,120116.7719,21
+30665,1714.802666,18362.97973,227969.0131,21
+30666,57869.88513,18553.60194,840613.2199,21
+30667,310176.4936,18586.24968,120307.1874,21
+30668,156803.9773,18712.63452,228423.3215,21
+30669,175319.3359,18779.79551,841460.9477,21
+30670,187627.0464,18872.29197,120623.7418,21
+30671,183386.5175,18979.15296,228820.0514,21
+30672,184643.8001,19084.23247,842428.8995,21
+30673,185215.7781,19114.68692,120765.2398,21
+30674,185824.3538,0,229406.8414,21
+30675,186551.4926,0,843228.9137,21
+30676,187611.772,0,120925.5105,21
+30677,187881.1251,0,229935.9887,21
+30678,188734.3025,80270.50823,843873.6342,21
+30679,189580.6795,0,121267.2805,21
+30680,190251.0871,8311.446361,230299.6288,21
+30681,190967.2763,29682.44864,844645.8506,21
+30682,191417.9476,18227.0487,121546.1161,21
+30683,192587.5822,20069.52202,230683.3875,21
+30684,193067.6905,20147.46656,1748139.189,21
+30685,193910.1857,20328.67768,0,21
+30686,194645.8539,20334.71062,0,21
+30687,195193.1665,20463.20837,986574.7,21
+30688,195976.1944,20539.36553,117513.2869,21
+30689,197100.2511,20608.4351,207671.0097,21
+30690,197253.5512,20779.58764,848198.7569,21
+30691,198106.8929,20747.73897,119875.8217,21
+30692,199288.3677,20923.82708,227473.6254,21
+30693,199410.0115,20965.54688,834940.624,21
+30694,30939.11445,21071.65784,120843.7576,21
+30695,30984.35655,21124.54138,227498.3819,21
+30696,31109.07486,21262.45128,836291.7319,21
+30697,0,21334.38068,120990.9825,21
+30698,691114.8201,21408.70335,227998.3188,21
+30699,143622.6466,21508.0859,837558.9322,21
+30700,96586.56369,21612.37885,121203.6452,21
+30701,269265.0347,21653.18889,228587.8936,21
+30702,542712.4354,21757.17583,838823.2147,21
+30703,207083.4532,21895.72003,121360.1039,21
+30704,208771.9672,21901.26076,229192.9345,21
+30705,207804.7281,22082.78246,839611.1806,21
+30706,208460.3942,22087.48927,119332.1041,21
+30707,208970.539,22230.83754,227225.2563,21
+30708,207466.3699,0,838118.1016,21
+30709,207824.9587,0,118936.9504,21
+30710,208177.0924,0,227030.5304,21
+30711,208599.9736,81724.06111,838446.9523,21
+30712,208954.1728,1813.023222,118558.7197,21
+30713,209568.9134,15135.42415,226910.8585,21
+30714,209817.0436,30409.98346,838703.8399,21
+30715,210527.094,21652.3275,118133.501,21
+30716,211074.3692,23092.82659,226801.1248,21
+30717,211231.5088,23176.68053,721313.451,21
+30718,211783.8815,23306.01369,0,21
+30719,212713.1569,23321.99192,0,21
+30720,212666.1199,23483.16604,989863.3964,21
+30721,212354.6785,23400.0853,111458.7738,21
+30722,211283.6146,23321.9918,210105.0996,21
+30723,210601.2294,23275.97872,856011.7979,21
+30724,209712.8503,23206.78781,115387.8354,21
+30725,209001.8879,23133.10548,1254459.311,21
+30726,208202.9574,23092.82679,824003.2404,21
+30727,207364.3273,23008.02695,113297.3545,21
+30728,31674.07296,22976.88953,219321.058,21
+30729,0,22923.75957,824676.1484,21
+30730,0,22802.12604,112387.3708,21
+30731,84790.55623,23023.01711,218923.5055,21
+30732,718641.2897,22752.24706,825255.3746,21
+30733,89388.65102,22642.4627,111529.7653,21
+30734,95013.48819,22554.92787,218587.9462,21
+30735,278647.4818,22561.82384,825891.4309,21
+30736,190464.4782,22444.40043,110624.8496,21
+30737,200126.0755,22419.19786,218277.4981,21
+30738,199044.5618,22316.94396,826368.273,21
+30739,198642.0064,22277.45483,109798.7121,21
+30740,197746.6126,22219.83797,217868.5482,21
+30741,197184.5869,0,826840.558,21
+30742,196183.4708,0,108828.2036,21
+30743,195239.6863,0,217477.4364,21
+30744,534349.579,80233.37734,827096.3637,21
+30745,193732.5092,935.978839,107931.3661,21
+30746,193173.9474,14431.92956,216953.1759,21
+30747,192244.2248,29200.78747,827374.0783,21
+30748,191456.8436,20462.88994,106891.8612,21
+30749,190986.0348,21658.96266,216503.001,21
+30750,189836.5786,21616.74643,721297.1881,21
+30751,190140.3032,21585.52552,0,21
+30752,188235.6122,21590.8393,0,21
+30753,188362.9752,21418.30518,959005.0217,21
+30754,187110.3074,21408.69996,106183.2038,21
+30755,186401.0023,21292.34039,196616.6785,21
+30756,185696.4153,21209.09505,847333.2625,21
+30757,184735.1047,21214.19908,103002.1569,21
+30758,184315.516,21060.4126,216709.073,21
+30759,182872.0885,21080.28651,829383.903,21
+30760,182400.6738,20914.63323,103941.9806,21
+30761,152100.251,20923.82316,215489.1518,21
+30762,0,20831.97076,829290.7636,21
+30763,80393.04492,20732.20942,102798.225,21
+30764,18942.83882,20685.588,214653.3746,21
+30765,21208.58158,20652.68138,829066.1681,21
+30766,660036.9274,20569.21841,1136017.773,21
+30767,40844.22915,20551.89879,206551.1254,21
+30768,77555.33306,20453.40892,813153.9932,21
+30769,245007.0094,20364.67597,98986.13929,21
+30770,165105.7667,20215.92771,206365.5083,21
+30771,171396.7294,20248.17235,814122.4053,21
+30772,172495.5995,20145.10991,98247.88156,21
+30773,171705.1419,20009.34055,205979.3848,21
+30774,171675.0234,0,815046.6155,21
+30775,170402.9082,0,97358.03447,21
+30776,170641.2856,0,205743.6936,21
+30777,169861.1797,72051.02565,815788.7178,21
+30778,169558.0668,0,96632.27353,21
+30779,168219.763,11441.14131,205254.4705,21
+30780,168723.7117,27293.0114,816522.3071,21
+30781,168412.3873,18007.5554,95768.13863,21
+30782,168625.5669,19442.24437,204970.8478,21
+30783,169128.8471,19574.31201,721981.9024,21
+30784,168926.1358,19497.64856,0,21
+30785,169139.131,19574.31081,0,21
+30786,508702.1696,19526.18286,934053.1182,21
+30787,169372.2913,19578.54222,99224.53851,21
+30788,169693.3337,19575.81786,186875.6427,21
+30789,169618.2739,19568.55136,835552.1489,21
+30790,169891.5109,19608.47297,92456.84388,21
+30791,169969.152,19629.6301,205418.4908,21
+30792,170261.2908,19561.61808,820090.4101,21
+30793,141193.2041,19662.2023,93176.50379,21
+30794,141904.842,19596.9726,204274.7792,21
+30795,220474.7319,19698.97943,820404.0761,21
+30796,14871.46327,19629.62766,92236.73586,21
+30797,22522.32,19680.5477,203462.0641,21
+30798,31548.17349,19662.19978,820579.8194,21
+30799,27357.80262,19701.64973,91372.64443,21
+30800,27577.95736,20547.18268,202746.0628,21
+30801,671293.9887,20107.38945,820732.9967,21
+30802,45208.0676,20279.87892,90488.04759,21
+30803,61283.43396,20362.61199,202051.6668,21
+30804,243821.7763,20300.98084,820890.047,21
+30805,166822.8858,20571.10089,89556.3664,21
+30806,169877.5769,20395.18334,1230927.45,21
+30807,172577.8838,0,805329.0635,21
+30808,172868.5427,0,87024.37347,21
+30809,172916.5256,0,194242.9432,21
+30810,172838.74,71811.60824,806431.5375,21
+30811,172762.7064,0,86356.50295,21
+30812,173412.4298,12103.47161,194113.855,21
+30813,172961.9099,27544.53734,807692.7353,21
+30814,173590.7317,18385.36242,85875.72606,21
+30815,173571.4873,19899.01145,193936.0504,21
+30816,173616.9696,19992.91649,723366.6719,21
+30817,173841.1388,19920.00433,0,21
+30818,174180.2652,20025.24146,0,21
+30819,174193.5451,19970.47871,914261.0105,21
+30820,174268.1698,20002.80467,91715.89495,21
+30821,174783.1897,20288.73785,177201.6883,21
+30822,174390.4379,21891.48502,825938.6463,21
+30823,175259.2616,20961.59246,83203.64572,21
+30824,174804.8634,21200.4592,194245.9287,21
+30825,146032.1893,21328.06586,812611.2375,21
+30826,146107.7512,21424.51732,83421.30963,21
+30827,565260.2953,21411.4986,193526.9568,21
+30828,162454.7371,21424.51589,813068.8422,21
+30829,168866.1577,21601.67097,82665.25864,21
+30830,178969.9557,21516.68122,192840.7427,21
+30831,27732.64373,21615.53974,813646.9828,21
+30832,27980.26992,21603.89316,81875.3441,21
+30833,28094.24717,21723.21359,192304.2735,21
+30834,29734.96929,21788.37359,814155.6284,21
+30835,647913.0717,21711.88203,81143.08533,21
+30836,32641.11183,21841.42383,191840.3342,21
+30837,89636.62034,21891.40484,814637.4616,21
+30838,245871.0711,21888.92656,80414.11052,21
+30839,169213.4268,22040.98112,191360.1367,21
+30840,177435.1293,0,814998.3751,21
+30841,178557.5746,0,79805.665,21
+30842,178818.4329,0,190903.4916,21
+30843,178961.9289,73475.02541,815342.1869,21
+30844,179996.3711,0,79229.54367,21
+30845,179756.5337,12952.32354,190418.5365,21
+30846,180644.9846,27768.50213,1845323.164,21
+30847,180470.39,18911.53302,77010.72704,21
+30848,181587.1813,20334.65705,183637.099,21
+30849,181211.7865,20388.17487,724121.885,21
+30850,182246.4901,21141.56707,4.350471041,21
+30851,182268.9268,23513.50436,0,21
+30852,182868.4632,21871.59718,901248.0927,21
+30853,183005.7044,22492.18954,81414.57984,21
+30854,183834.7658,22507.9973,169090.0591,21
+30855,183476.966,22563.85536,817684.6196,21
+30856,184630.5592,22520.56916,75220.39898,21
+30857,154442.5803,22756.08925,184928.143,21
+30858,154621.1969,22573.67462,806009.2921,21
+30859,235983.8139,22759.39753,75621.63727,21
+30860,174917.9133,22710.34951,184557.4614,21
+30861,177087.689,22756.09043,806797.6747,21
+30862,189951.2316,22767.35095,75035.1525,21
+30863,185280.9596,22883.67116,184243.6932,21
+30864,185768.6701,22454.54092,807514.0424,21
+30865,29406.75341,22711.0177,74552.87033,21
+30866,31907.26727,22555.28589,183869.7458,21
+30867,30273.53247,22628.62752,808366.2354,21
+30868,370465.0627,22583.3214,73863.28427,21
+30869,679659.8913,22578.31798,183719.6683,21
+30870,56197.76166,22692.65998,808956.1877,21
+30871,89392.12314,22579.81301,73300.00219,21
+30872,269269.8852,22670.22553,183326.9723,21
+30873,177144.9974,0,809319.2874,21
+30874,190660.4229,0,72507.16381,21
+30875,190832.0084,0,182854.7366,21
+30876,190999.1167,72361.15356,809653.4067,21
+30877,191096.3612,0,71763.28023,21
+30878,190912.1585,11016.71365,182416.1167,21
+30879,191591.7469,26171.45866,809888.2721,21
+30880,191063.3955,16985.1067,70626.44962,21
+30881,191728.2492,19997.34063,181811.6755,21
+30882,191204.9502,22517.9607,739494.8464,21
+30883,191727.5185,20622.87117,5.651092504,21
+30884,191657.7618,21186.49301,0,21
+30885,191785.7898,21164.43758,1937665.058,21
+30886,191675.6142,21226.21478,72179.67695,21
+30887,191736.9597,21132.73953,160513.785,21
+30888,191956.8386,21132.74003,807008.5944,21
+30889,160800.0356,21038.15742,66255.45826,21
+30890,160773.5212,21158.10978,175264.913,21
+30891,243068.7049,21054.83813,796768.0829,21
+30892,182683.1997,20966.39445,66414.30511,21
+30893,181334.6918,21101.16871,175090.1959,21
+30894,195653.3716,21023.30359,797379.1305,21
+30895,190245.6542,20931.98628,65491.61817,21
+30896,190469.6833,21002.27558,175003.4726,21
+30897,191625.8791,20895.75281,797818.7458,21
+30898,193014.257,20951.77403,64751.47011,21
+30899,31008.29796,20878.30645,174862.071,21
+30900,31376.12381,20910.99518,798508.7769,21
+30901,31338.5677,20970.39418,64269.095,21
+30902,31211.27026,20712.96564,174962.0482,21
+30903,686349.0836,20936.62325,799165.4748,21
+30904,62218.03248,20786.88365,63974.32953,21
+30905,73883.59963,20860.27633,174955.596,21
+30906,273731.4982,0,799799.7581,21
+30907,172795.8252,0,63630.18379,21
+30908,185447.6755,0,175013.3742,21
+30909,186019.09,0,800326.5283,21
+30910,184577.0191,67569.21129,63343.78971,21
+30911,183764.0725,0,174963.4708,21
+30912,183157.5604,9791.951102,800853.7927,21
+30913,521705.0362,24624.26236,62936.09403,21
+30914,181100.2244,16177.35021,175050.3954,21
+30915,180411.1742,20050.525,738474.1166,21
+30916,179795.0254,21880.76241,6.545964879,21
+30917,178462.7558,20130.05912,0,21
+30918,178119.8971,20763.13608,887040.2235,21
+30919,176859.554,20762.05998,57255.08986,21
+30920,176313.9764,20780.15701,165103.666,21
+30921,145496.5137,20875.32477,812101.6645,21
+30922,145360.2726,20665.85291,61405.3662,21
+30923,224173.0046,20837.43858,175625.4235,21
+30924,159804.7061,20760.69681,804169.777,21
+30925,163868.1652,20745.41514,1107741.367,21
+30926,173880.119,20814.4927,169041.4252,21
+30927,168409.6698,20744.63948,788550.8724,21
+30928,167595.6473,20704.27399,60234.6948,21
+30929,167185.9463,20692.69269,169248.298,21
+30930,168726.8119,20845.17598,789633.9093,21
+30931,166513.1519,20677.52657,59868.72674,21
+30932,166276.0782,20698.50573,169597.3534,21
+30933,28635.13732,20749.55492,790556.7519,21
+30934,28490.70852,20721.11394,59704.0128,21
+30935,28398.83569,20730.59633,169739.1593,21
+30936,28389.62745,20709.38059,791547.1073,21
+30937,28370.83893,20778.03225,59377.3272,21
+30938,621930.1487,20690.42192,169976.5147,21
+30939,37511.93067,20753.14175,792372.1651,21
+30940,66121.01896,0,59139.6651,21
+30941,230807.1144,0,170143.9803,21
+30942,155887.1934,0,793088.1699,21
+30943,160106.5269,0,58889.36331,21
+30944,162171.794,65159.18107,170247.9768,21
+30945,161303.0596,0,793806.9238,21
+30946,161418.3258,10185.40959,58581.3513,21
+30947,160537.7781,23931.23833,170371.0488,21
+30948,159994.2687,15913.08702,735937.0036,21
+30949,160234.7192,23430.0654,10.08631864,21
+30950,159217.2643,19867.1753,0,21
+30951,158794.8783,20712.7935,871674.6613,21
+30952,158873.4404,20883.99952,44459.73738,21
+30953,130831.0469,20923.08683,167311.68,21
+30954,130158.4383,20847.10335,802526.2155,21
+30955,130732.3751,20937.28321,57354.63494,21
+30956,216903.2307,20863.82823,171447.5078,21
+30957,155392.3035,21000.44768,798085.3358,21
+30958,137050.8634,20862.2478,57627.08667,21
+30959,163746.2922,20878.05175,171349.2579,21
+30960,493634.2204,20956.21728,798316.7065,21
+30961,154698.3654,21003.73952,57283.98551,21
+30962,155458.6487,20825.2957,171471.8873,21
+30963,155560.0765,21041.68445,798781.9884,21
+30964,156218.9218,20870.324,57144.81581,21
+30965,156457.3627,20933.49157,1208595.852,21
+30966,158661.8991,21025.76483,783839.5901,21
+30967,158311.6208,20870.32317,56107.61159,21
+30968,27245.2568,21003.03967,165809.5848,21
+30969,27277.04108,20978.51921,785194.1969,21
+30970,27264.26821,20847.48673,56061.3931,21
+30971,27419.1042,21039.56864,166324.2702,21
+30972,27381.45127,20911.69963,786432.9171,21
+30973,604344.2514,21025.34232,56040.36346,21
+30974,27439.469,0,166773.2379,21
+30975,75085.22302,0,787638.2083,21
+30976,231559.4816,0,56020.77384,21
+30977,153584.8713,0,167105.2373,21
+30978,163065.8413,64850.60449,788797.8106,21
+30979,164605.3109,0,55952.42691,21
+30980,165290.4542,10191.91897,167507.4371,21
+30981,165466.6073,23672.79966,733906.1092,21
+30982,165965.7142,18100.68601,4.045373888,21
+30983,166273.3794,23033.7447,0,21
+30984,166749.6418,19916.37083,738112.2161,21
+30985,167392.9078,21167.27378,143633.3619,21
+30986,139452.1519,21015.58497,160093.7306,21
+30987,140236.5589,21053.49891,781736.008,21
+30988,219789.4137,21151.4831,64900.07318,21
+30989,153885.6835,21078.74478,167982.0049,21
+30990,163849.6618,21128.75781,794071.3638,21
+30991,172262.1949,21167.24928,55744.06933,21
+30992,169046.0261,21146.71897,169321.1438,21
+30993,169469.4586,21160.97227,794799.628,21
+30994,169851.5273,21219.98799,55696.712,21
+30995,170593.8848,21290.16294,169444.579,21
+30996,170786.0949,21221.4354,795471.4012,21
+30997,171988.6251,21266.16658,55529.19712,21
+30998,173178.5778,21328.56028,169701.9977,21
+30999,172748.6745,21372.51523,796082.5923,21
+31000,173784.5106,21282.44208,55439.5846,21
+31001,173676.9194,21386.74025,169865.8451,21
+31002,174611.9402,21471.69143,796640.9854,21
+31003,28592.78316,21410.7973,55350.61309,21
+31004,28718.52976,21447.7472,170040.5425,21
+31005,28563.81908,21468.00791,1826791.605,21
+31006,368368.1579,21507.80582,54346.71857,21
+31007,627929.9394,21470.85525,164073.3585,21
+31008,35404.26909,0,782945.0857,21
+31009,92777.42373,0,54266.71217,21
+31010,250181.8221,0,164610.2442,21
+31011,165697.2918,0,784313.9712,21
+31012,179178.9563,66863.6048,54293.53362,21
+31013,179182.551,0,165055.8355,21
+31014,180410.3863,10320.27472,785655.3774,21
+31015,180146.5365,24411.61654,5.960481669,21
+31016,180921.8972,21436.23952,0,21
+31017,181473.4167,22224.3462,736139.5259,21
+31018,152472.0266,21321.50856,133302.3819,21
+31019,152708.1365,21842.28541,152129.6333,21
+31020,235150.5197,21947.44991,785361.3871,21
+31021,170953.4117,22023.68198,59549.69566,21
+31022,174796.5435,21896.64021,166301.9111,21
+31023,186966.7611,21939.90307,790954.8928,21
+31024,182068.1056,21925.69893,54248.14548,21
+31025,182884.8847,22046.3488,402306.1518,21
+31026,182628.2816,21995.03258,53322.0987,21
+31027,183225.3783,22039.69006,57115.10383,21
+31028,183359.8215,21933.24508,95026.42113,21
+31029,184288.6799,22153.26569,214803.6723,21
+31030,185268.4536,21955.91196,313828.5215,21
+31031,184744.2501,22094.76893,275831.6865,21
+31032,185449.8545,22098.7949,51300.5036,21
+31033,185627.4459,22011.38002,54218.5987,21
+31034,185525.0371,22183.3073,72513.62482,21
+31035,186537.0427,22010.25931,227571.9983,21
+31036,185767.4733,22154.99585,254779.2146,21
+31037,29700.89912,22076.07278,242617.0667,21
+31038,29713.09625,22154.99692,49755.90221,21
+31039,29757.98984,21996.65964,52155.52738,21
+31040,29729.16774,22044.86936,158638.3821,21
+31041,676382.4703,21944.63161,99820.36693,21
+31042,56906.0357,0,49379.21622,21
+31043,81164.49961,0,283778.6411,21
+31044,267937.5894,0,176851.2236,21
+31045,177257.2045,0,201801.387,21
+31046,188161.6228,67327.93514,1037626.183,21
+31047,189727.7865,0,182859.152,21
+31048,189746.2922,10078.43718,0,21
+31049,190237.8692,24531.40359,0,21
+31050,160140.1968,24568.96768,619252.4803,21
+31051,160434.8335,20727.34141,0,21
+31052,242879.8959,22030.30306,191892.2221,21
+31053,520677.4822,22158.87638,677455.2861,21
+31054,181293.1855,22150.2086,42226.44627,21
+31055,195682.6475,22223.84349,135810.7842,21
+31056,189704.7138,22144.73637,699101.5508,21
+31057,190970.0185,22203.62251,47662.68005,21
+31058,190765.1814,22241.5667,132140.4917,21
+31059,191200.8622,22190.71891,706544.4445,21
+31060,192282.0289,22203.62527,47962.3863,21
+31061,193390.0088,22303.25208,134268.4492,21
+31062,192523.115,22203.62718,712383.9718,21
+31063,193891.9152,22234.69828,48225.64342,21
+31064,193256.4385,22284.24116,136374.4157,21
+31065,193847.8184,22184.6163,717774.5061,21
+31066,194537.0629,22209.56959,48522.64032,21
+31067,194153.9642,22029.17866,138278.7003,21
+31068,194651.6815,22171.05752,722897.8837,21
+31069,194819.4255,22089.05545,48667.07499,21
+31070,195291.8403,22075.22593,140135.9051,21
+31071,30717.77587,22130.21351,727601.8853,21
+31072,30577.43988,22027.58548,48898.18916,21
+31073,30736.55516,22169.44476,141780.9353,21
+31074,30746.26941,22027.5876,732015.7759,21
+31075,702127.0349,22226.53989,49036.84762,21
+31076,74556.94034,0,143384.9075,21
+31077,80911.60612,0,736124.8977,21
+31078,284395.6006,0,49148.04236,21
+31079,183840.0603,0,144859.3991,21
+31080,198625.8824,65266.69479,739893.3656,21
+31081,198931.52,3.47857903,49234.67497,21
+31082,167061.7158,11239.33769,0,21
+31083,167029.7036,27278.82921,697603.0076,21
+31084,249804.8461,23870.67235,6.068382976,21
+31085,187741.0038,21455.56475,0,21
+31086,185553.1545,22763.60358,703329.6611,21
+31087,200239.4056,22979.03893,1071434.977,21
+31088,193500.1747,23051.68525,134616.83,21
+31089,193976.1616,23136.21972,737166.0689,21
+31090,193320.936,23274.84109,54130.7968,21
+31091,195347.1269,23362.40523,145890.8573,21
+31092,193929.8522,23533.0001,745925.3542,21
+31093,193347.4403,23519.19411,48289.35187,21
+31094,193326.7406,23653.12095,147886.9686,21
+31095,193132.969,23817.44842,749078.274,21
+31096,192345.0231,23917.87979,48173.08298,21
+31097,192325.308,23974.02673,148940.55,21
+31098,191623.9205,24089.94572,751962.8302,21
+31099,191335.4652,24075.13587,48091.79999,21
+31100,530601.723,24264.41494,149829.7779,21
+31101,190615.1452,24232.54574,754779.2647,21
+31102,190026.2124,24422.60374,47915.98301,21
+31103,189986.9172,24444.95137,150682.5549,21
+31104,189428.8896,24594.09195,757309.505,21
+31105,30092.75694,24745.78906,47784.55697,21
+31106,30024.11583,24763.1428,366831.9923,21
+31107,29963.98707,24895.25378,46817.61767,21
+31108,30019.81273,25121.46185,50322.37431,21
+31109,681618.9845,25088.54406,46648.57007,21
+31110,59429.61459,0,275303.7495,21
+31111,76019.64058,0,270815.5949,21
+31112,265855.183,0,45287.2272,21
+31113,175297.1131,67763.98711,48083.10306,21
+31114,154865.2181,2755.55168,77284.92758,21
+31115,155768.0079,17837.0499,187667.8742,21
+31116,236267.1455,34796.77311,292383.7453,21
+31117,172162.8634,23934.90984,0,21
+31118,175436.2398,26030.89989,0,21
+31119,187202.0354,26473.99752,0,21
+31120,181357.6283,26354.72802,0,21
+31121,181625.0746,26675.21443,244648.1253,21
+31122,184819.6357,26708.10535,182090.3658,21
+31123,182111.5559,26857.36184,184000.393,21
+31124,182170.468,26908.75901,680025.0856,21
+31125,182475.3516,27066.3999,41944.49953,21
+31126,181904.529,27225.16964,134857.5536,21
+31127,181395.43,27403.27905,700963.5934,21
+31128,181373.8439,27423.21239,916910.1862,21
+31129,180581.5602,27489.77891,127995.4065,21
+31130,180643.6644,27753.92184,701024.3003,21
+31131,180328.422,27827.05686,42042.26237,21
+31132,179760.6113,27959.94927,129008.6076,21
+31133,179924.6382,28020.35858,707191.2646,21
+31134,179207.521,28285.77635,41981.15424,21
+31135,178803.6569,28265.71091,130758.3322,21
+31136,178899.6343,28458.39936,712500.5815,21
+31137,178216.3265,28614.87501,41923.47248,21
+31138,178065.9197,28695.96,132485.3475,21
+31139,29040.9503,28817.82519,717419.5211,21
+31140,29038.33576,29008.80059,41783.17557,21
+31141,28710.1299,28905.50349,323295.6155,21
+31142,28509.71272,29014.9523,41074.1356,21
+31143,629300.7462,427437.8549,44176.36499,21
+31144,31865.65745,0,73011.5738,21
+31145,80886.5958,0,176127.5063,21
+31146,200376.8472,79944.24991,249527.4528,21
+31147,468231.3462,7060.256262,219736.1541,21
+31148,131693.215,19120.30276,39351.55413,21
+31149,216717.2574,38693.47251,41538.36376,21
+31150,151557.6022,26915.13527,53921.83677,21
+31151,134341.3072,29235.7421,0,21
+31152,159213.6541,29085.2906,0,21
+31153,146743.8514,455197.4654,0,21
+31154,145103.9818,29245.31544,0,21
+31155,145991.6567,29129.63174,92695.53091,21
+31156,143385.4605,29197.92128,28624.223,21
+31157,140576.5825,29342.35556,216208.7363,21
+31158,138902.6829,29064.43621,218355.4929,21
+31159,136845.0122,29282.2298,37171.3823,21
+31160,134159.7239,29290.86309,39836.49662,21
+31161,132614.3745,29216.72646,37740.52885,21
+31162,129950.3502,29242.45807,213170.587,21
+31163,127801.3635,455281.2909,205596.1915,21
+31164,125770.4667,29397.11783,36976.43307,21
+31165,123393.4244,29317.07,38988.85325,21
+31166,121505.6926,29472.70722,50344.72255,21
+31167,118838.3362,29214.85915,953176.6982,21
+31168,117199.6437,29391.02799,177295.2093,21
+31169,114771.1319,29267.64705,170719.5128,21
+31170,112375.8291,29349.59465,35913.80943,21
+31171,110555.7399,29230.49951,37564.54247,21
+31172,108338.2244,29297.59752,37568.90518,21
+31173,21249.02162,455121.427,178877.3686,21
+31174,21052.34178,29204.16258,143633.5443,21
+31175,20840.93775,29178.94086,149018.4211,21
+31176,20479.41835,0,143730.8472,21
+31177,20489.80354,0,140226.5251,21
+31178,20000.38588,0,137594.6616,21
+31179,0,79217.88569,135089.8006,21
+31180,0,4151.658242,601204.4066,21
+31181,0,25265.27416,34829.26493,21
+31182,0,35310.21087,101171.4503,21
+31183,72964.97129,453491.1276,627905.9906,21
+31184,1579.877826,28916.86734,35257.06919,21
+31185,3936.539109,29010.68552,0,21
+31186,23026.42846,28926.64798,606428.4468,21
+31187,15016.67201,28946.17459,0,21
+31188,14825.82074,28837.79767,0,21
+31189,16779.4282,28828.04141,616331.5281,21
+31190,18269.28677,28794.06284,85541.5276,21
+31191,16517.86055,28762.89258,99558.53523,21
+31192,16803.70482,28671.52666,654683.5351,21
+31193,356283.3205,454539.7577,41258.85288,21
+31194,16281.96163,28500.59477,110186.7969,21
+31195,16148.77024,28556.967,667803.0067,21
+31196,15849.93263,28489.27468,36735.73088,21
+31197,15609.13704,28396.59962,113715.2133,21
+31198,15359.8984,28260.48189,675180.0664,21
+31199,15215.82187,28370.98713,36989.46629,21
+31200,14771.13218,28138.46771,116384.0218,21
+31201,15219.99846,28238.92137,682192.3872,21
+31202,15387.67154,28578.69364,43627.21381,21
+31203,15780.71523,454271.8309,127467.114,21
+31204,15947.10937,28805.38608,1539522.988,21
+31205,16326.18402,28964.96137,49306.54064,21
+31206,16521.06336,28924.9413,128040.6217,21
+31207,16882.84193,29164.34683,701826.3234,21
+31208,17140.62026,29295.88438,50720.73769,21
+31209,17272.05067,0,131546.0209,21
+31210,17821.09751,0,709795.6345,21
+31211,17888.74341,0,52166.99888,21
+31212,18195.62329,79029.95894,134917.4775,21
+31213,0,432938.0232,717367.074,21
+31214,0,26091.19529,53657.28997,21
+31215,0,36268.33842,138135.0997,21
+31216,0,29160.57813,724572.0054,21
+31217,71027.288,30568.55052,55095.98996,21
+31218,842.3516523,30731.4696,141190.3599,21
+31219,6943.797901,30733.89651,731468.2021,21
+31220,25426.70133,31093.82946,14412.67876,21
+31221,16882.28018,31093.82675,113642.2758,21
+31222,18056.4594,31113.00137,693669.0562,21
+31223,23100.30827,457161.5318,14924.14995,21
+31224,20977.93303,31449.68157,199088.7059,21
+31225,21783.8914,31658.48676,730897.5721,21
+31226,393582.713,31772.53092,53365.73429,21
+31227,45432.07805,31746.09305,153635.4098,21
+31228,53909.56888,32122.19736,746236.6424,21
+31229,130111.8546,32080.14865,60169.96914,21
+31230,140364.8278,32327.32175,151032.6664,21
+31231,117619.2242,32415.96468,736624.4993,21
+31232,127743.2291,32529.27021,45094.37874,21
+31233,130132.9569,458371.5445,142271.3839,21
+31234,472177.7321,32776.72013,740692.191,21
+31235,134689.1299,32966.22938,45887.03753,21
+31236,137307.1203,33105.96233,144062.5333,21
+31237,139276.33,33162.03307,744567.0805,21
+31238,142247.8786,33362.18374,46670.54574,21
+31239,144340.4244,33389.04414,145800.5353,21
+31240,146676.7662,33634.8875,748286.431,21
+31241,149539.1347,33674.97406,1003149.545,21
+31242,151658.0634,269182.3431,142742.195,21
+31243,153954.4187,435786.2556,740132.3759,21
+31244,156788.3092,22971.25868,47481.11068,21
+31245,159087.9546,178106.0775,144652.2101,21
+31246,161533.6929,125301.4541,744178.1448,21
+31247,135881.4295,98746.10705,48319.17155,21
+31248,138310.8205,133105.7356,146466.5233,21
+31249,139753.6751,122177.2954,748115.9402,21
+31250,226874.7297,125673.5596,49103.95266,21
+31251,167528.3578,126743.257,148179.4126,21
+31252,156797.8858,128129.8947,751855.3351,21
+31253,184159.3346,554793.6256,49881.71791,21
+31254,181129.4154,130587.8071,0,21
+31255,184241.2614,131963.656,708499.0127,21
+31256,30405.53514,132972.6571,92.48436385,21
+31257,31170.14306,134510.9083,0,21
+31258,31501.56062,135553.647,833034.2911,21
+31259,31755.0594,137082.0187,44199.37801,21
+31260,680600.5973,137851.09,147368.3669,21
+31261,74615.44771,137746.7285,773845.7752,21
+31262,106663.27,136732.5027,51750.56753,21
+31263,272850.8423,561081.1532,156333.2411,21
+31264,190462.1442,135579.63,769640.3742,21
+31265,201406.9673,134374.5878,53029.35753,21
+31266,202238.8081,133467.9735,157456.5274,21
+31267,203012.9993,132880.2934,772035.9316,21
+31268,204310.1729,132181.2431,53584.30491,21
+31269,205716.2343,131508.6428,158529.442,21
+31270,205455.371,130311.9465,774308.7316,21
+31271,205997.4217,129935.0527,54151.0947,21
+31272,206312.7701,35469.49656,159512.3927,21
+31273,206796.0335,35147.07293,776492.3246,21
+31274,207045.2468,35146.94647,54690.6345,21
+31275,547089.2456,0,160470.0107,21
+31276,207366.1764,0,778521.5953,21
+31277,208196.5923,0,55254.60943,21
+31278,208262.129,94618.8224,161392.213,21
+31279,208399.4235,22577.69471,1776414.909,21
+31280,174935.929,18372.43516,54746.56033,21
+31281,175541.2798,45578.73457,377017.2156,21
+31282,257227.4899,32851.80589,54118.57578,21
+31283,197611.1181,34371.9494,57946.72906,21
+31284,199025.3512,461349.7225,94820.94011,21
+31285,218050.2326,328964.9364,198734.0258,21
+31286,209315.7582,77474.96264,297476.188,21
+31287,210747.7534,71081.16339,262561.5667,21
+31288,211207.2462,103006.305,0,21
+31289,211100.0604,141410.863,0,21
+31290,34553.84323,107314.3103,0,21
+31291,34462.12914,113857.2063,0,21
+31292,34616.59295,113907.02,175514.6613,21
+31293,681388.9248,112648.335,280225.0559,21
+31294,66554.40955,111758.6466,246098.892,21
+31295,154317.4105,111274.9102,249842.182,21
+31296,266534.7007,109903.2884,51959.62442,21
+31297,205804.1664,109442.9427,54710.24326,21
+31298,213692.963,108390.0323,231070.3033,21
+31299,213995.9471,107849.1703,53489.93288,21
+31300,214156.2809,533948.4718,52419.37674,21
+31301,214306.8366,106053.8829,52621.32444,21
+31302,214745.2128,105546.1128,256387.7579,21
+31303,214678.2822,104713.3527,240789.4332,21
+31304,215078.9644,103704.3372,51859.7042,21
+31305,215173.6951,102683.8492,54272.53769,21
+31306,215282.6227,102525.4012,248286.5293,21
+31307,215884.3333,101002.1588,51816.39098,21
+31308,215328.1636,68670.87938,52001.82206,21
+31309,216262.0526,67224.89502,52172.68511,21
+31310,215891.1675,66940.77836,235531.7464,21
+31311,216384.3556,150552.7119,169380.304,21
+31312,181104.9095,80803.56968,172720.4277,21
+31313,180737.7785,86620.79753,169087.296,21
+31314,265021.3894,103397.4669,164810.2211,21
+31315,205267.1544,30189.3066,161998.4615,21
+31316,550433.7275,31377.26668,159495.6777,21
+31317,222362.7909,458164.5964,888496.0192,21
+31318,217082.3595,31361.03581,153273.7306,21
+31319,218176.1242,31048.32545,151716.4944,21
+31320,217756.8848,31095.87157,621616.9878,21
+31321,221340.5373,31635.91623,52297.47947,21
+31322,221374.709,31764.54743,0,21
+31323,36966.72607,31688.63603,597992.2569,21
+31324,37158.64063,31764.54665,0,21
+31325,37091.61637,31761.15444,0,21
+31326,702319.6904,31761.15398,721530.3437,21
+31327,89170.50384,31702.28591,48335.21546,21
+31328,160423.698,31736.42882,115991.71,21
+31329,277087.4153,31879.30673,681099.9295,21
+31330,217354.5235,31667.44105,57372.69326,21
+31331,224623.2508,31771.3596,127511.3483,21
+31332,225253.6593,31761.15036,685520.9817,21
+31333,225273.6261,458550.0464,59348.61454,21
+31334,225431.1769,31667.43821,294390.6674,21
+31335,226080.9979,31864.87644,59203.43974,21
+31336,226453.5248,31813.79001,63260.72719,21
+31337,226196.4363,31739.90362,92923.22386,21
+31338,227165.1733,31823.97068,159691.9813,21
+31339,226727.9782,31761.1446,244605.4002,21
+31340,227559.2899,31864.872,217924.3333,21
+31341,227499.2873,0,60504.18178,21
+31342,228207.9952,0,62937.02413,21
+31343,228210.4467,425327.2796,82977.90811,21
+31344,190395.9408,85412.14238,197450.3272,21
+31345,190521.3692,12466.37967,61556.16686,21
+31346,275820.6447,24551.5665,62082.98829,21
+31347,225765.358,39082.5181,175153.0229,21
+31348,219868.1071,30665.80641,71664.94564,21
+31349,235032.4581,31961.8408,62863.77466,21
+31350,230426.5989,31987.85605,222121.131,21
+31351,230608.3518,31981.50918,191790.2106,21
+31352,231084.0517,31945.34976,197875.0639,21
+31353,231345.0396,457388.0515,62810.1084,21
+31354,231520.3438,32017.67527,64979.80079,21
+31355,231813.5643,31983.02315,77671.60382,21
+31356,39095.468,32132.19416,841618.795,21
+31357,378697.4748,32033.98881,0,21
+31358,39028.35788,32014.31575,0,21
+31359,723140.2463,32079.70197,211306.0429,21
+31360,124822.1998,32066.67318,153339.1828,21
+31361,147499.3728,32130.66756,156572.4648,21
+31362,295318.6725,32014.31022,163121.4029,21
+31363,226937.9025,457380.759,156557.7633,21
+31364,234302.7695,32183.07456,622373.143,21
+31365,235059.4881,31983.00926,66021.22378,21
+31366,235446.1923,32163.39993,127901.849,21
+31367,235385.1401,32158.52471,651068.6932,21
+31368,235949.3352,32014.30145,68110.79545,21
+31369,235907.7381,32204.20731,130017.8704,21
+31370,236238.7477,32086.4372,665927.9568,21
+31371,236636.8033,32204.20417,70253.8221,21
+31372,236513.933,32045.51509,134872.039,21
+31373,237277.168,457546.3859,678015.449,21
+31374,237302.7763,0,72396.20833,21
+31375,237570.4946,0,140120.3422,21
+31376,197909.1551,0,689126.3661,21
+31377,198064.4318,87099.66383,74446.00418,21
+31378,284211.4961,12608.93805,145226.0482,21
+31379,239786.3434,24459.5194,699533.4167,21
+31380,226690.0208,39668.60178,76455.38223,21
+31381,244720.4069,31062.3946,149939.9983,21
+31382,238965.8296,32228.65543,708981.7597,21
+31383,239458.092,457663.2034,77845.38526,21
+31384,239183.9544,32235.33844,154054.9497,21
+31385,239635.6552,32424.71586,717691.0233,21
+31386,239725.6744,32351.41761,79209.55494,21
+31387,239317.1257,32331.57124,157926.5973,21
+31388,240195.6676,32445.88642,725797.3536,21
+31389,40582.26556,32286.02263,0,21
+31390,40373.26042,32465.50766,0,21
+31391,40623.5527,32331.5664,653743.5768,21
+31392,740076.4019,32400.28471,162671.6449,21
+31393,151078.4848,457544.8034,152548.3942,21
+31394,135464.2806,32496.57031,733793.9351,21
+31395,308556.272,32328.46677,90323.31607,21
+31396,233104.8141,32403.61326,1049611.302,21
+31397,241042.2706,32493.19952,738583.5745,21
+31398,580356.2312,32269.70531,83071.16303,21
+31399,241598.3187,32462.13006,168102.8983,21
+31400,241263.8727,32503.09822,745214.479,21
+31401,241489.1638,32259.77495,84152.83228,21
+31402,241466.129,32472.10455,171022.6659,21
+31403,241412.7965,457637.7321,751581.4479,21
+31404,241789.5965,32403.60421,85177.28964,21
+31405,241797.5821,32400.23568,173838.9495,21
+31406,241542.701,32431.33616,757540.5304,21
+31407,242161.8435,0,86153.54244,21
+31408,201013.4046,0,176596.1486,21
+31409,201244.812,0,763040.1109,21
+31410,288768.2437,88618.4263,87156.59264,21
+31411,245011.1216,12322.46236,179143.1713,21
+31412,229191.4742,24719.13724,768295.8031,21
+31413,248193.2501,465054.0477,87996.2822,21
+31414,242653.5363,31341.23434,181644.8297,21
+31415,242876.2694,32480.05261,773135.3839,21
+31416,242512.2946,32620.31633,88900.65766,21
+31417,243161.5065,32573.00358,183938.5251,21
+31418,243005.3403,32573.00197,777629.4791,21
+31419,242503.5497,32639.88729,89810.87504,21
+31420,243722.4219,32548.63047,186055.1644,21
+31421,243010.6986,32603.91366,781927.8836,21
+31422,41384.51251,32701.47619,0,21
+31423,41341.19247,457629.8259,0,21
+31424,41429.98796,32758.34722,697554.3865,21
+31425,747554.4585,32558.45087,188620.9126,21
+31426,164563.367,32629.97647,176823.534,21
+31427,130576.3002,32672.30677,781671.2809,21
+31428,314843.9965,32558.44743,101714.3802,21
+31429,235935.4115,32733.97287,192274.8099,21
+31430,244100.8536,32568.19439,794511.7372,21
+31431,244253.9903,32743.79719,93203.21279,21
+31432,244752.8765,32548.61635,194660.8159,21
+31433,244192.549,457902.1612,797431.944,21
+31434,244840.3787,32527.52482,93875.60723,21
+31435,244255.3005,32784.45776,195936.183,21
+31436,244923.8188,32579.52773,1774872.132,21
+31437,244757.1778,32688.41795,92806.2339,21
+31438,244403.8918,32696.66291,191452.8072,21
+31439,584762.6439,32626.74734,790040.1946,21
+31440,203583.5458,0,93480.77213,21
+31441,202560.4115,0,193301.5052,21
+31442,292806.7451,0,793762.8634,21
+31443,247444.2037,515546.0175,94552.92806,21
+31444,230678.4751,12697.06693,195379.3427,21
+31445,249877.0123,25429.05844,797373.1944,21
+31446,243517.1565,40950.60734,95646.16669,21
+31447,243979.0461,32153.09526,197348.2104,21
+31448,243200.5674,33563.22685,800677.3049,21
+31449,243330.3726,33677.46529,96731.37417,21
+31450,243239.6259,33843.27109,199296.5683,21
+31451,242689.0398,33794.02897,803802.6912,21
+31452,242574.5471,33975.58896,97885.77641,21
+31453,242728.3712,459136.2781,201056.77,21
+31454,242158.9327,34070.67392,806807.9213,21
+31455,41500.71843,34256.82601,0,21
+31456,41570.90028,34238.44222,0,21
+31457,41508.36851,34296.47105,713396.6028,21
+31458,744760.6057,34493.76945,211110.9609,21
+31459,159629.7579,34534.42551,191102.5174,21
+31460,129514.3769,34511.3974,802301.1441,21
+31461,311729.0354,34718.82685,112448.494,21
+31462,232154.5272,34683.9113,206597.7125,21
+31463,240653.5204,460006.4431,816489.0123,21
+31464,240696.6887,34798.27919,102496.0302,21
+31465,240134.3099,35038.43415,208888.5801,21
+31466,239838.6981,278725.4549,818573.8924,21
+31467,240108.1912,78163.13557,103384.2473,21
+31468,239602.3242,80901.0086,210033.8732,21
+31469,239314.0395,117421.3849,820665.1412,21
+31470,239143.5402,139831.4546,104356.8082,21
+31471,239190.6292,117250.3036,211396.0061,21
+31472,197423.6972,123991.5338,822729.8254,21
+31473,197299.8548,514193.4255,105244.4498,21
+31474,287337.9334,90216.45099,212676.2262,21
+31475,238017.6958,90755.85247,824601.7799,21
+31476,226009.1869,192716.9941,106228.8594,21
+31477,243634.6161,109525.1226,1224346.52,21
+31478,236969.1978,116257.9908,811182.4216,21
+31479,237852.7412,139546.5408,105099.1713,21
+31480,576749.6351,128849.1044,208587.1572,21
+31481,236719.0306,131126.6869,813995.5531,21
+31482,236849.0451,132017.5675,106140.0902,21
+31483,236577.6268,557792.5454,210226.9462,21
+31484,236344.7835,133848.1154,816543.7434,21
+31485,236139.2069,134328.7652,107223.1767,21
+31486,235863.875,135209.9214,211735.3732,21
+31487,235560.8794,136248.5598,818996.1707,21
+31488,41115.52822,136645.2714,0,21
+31489,40966.81737,137329.8744,0,21
+31490,41027.82085,138758.4141,716066.0855,21
+31491,731605.5105,139141.114,233588.7175,21
+31492,137954.672,139802.5999,201719.4512,21
+31493,136602.2839,565832.684,810081.7756,21
+31494,299799.2267,141818.7767,124215.933,21
+31495,226350.2416,141940.1904,216277.7286,21
+31496,233939.8129,37589.49354,827184.8569,21
+31497,233517.0857,37554.71409,111582.388,21
+31498,233997.3419,37684.91284,218638.5856,21
+31499,233188.1735,37749.35709,828855.4198,21
+31500,233224.6347,37813.84554,112425.9666,21
+31501,233619.5028,37805.15233,219392.7501,21
+31502,234268.5178,37582.59295,830066.8449,21
+31503,234293.9982,462686.0775,112398.1778,21
+31504,194048.8531,481142.0741,219874.0516,21
+31505,194769.2177,39694.91746,831049.5671,21
+31506,285210.3639,55176.92528,112471.3667,21
+31507,236499.6527,110455.3865,220316.2007,21
+31508,224764.0104,126743.0236,832150.8587,21
+31509,243839.0829,205631.0363,112737.5801,21
+31510,237809.8406,124916.9951,220850.243,21
+31511,238801.0127,127216.8624,833127.1415,21
+31512,239576.6351,153079.1402,112718.689,21
+31513,239687.7267,564504.1275,221354.7685,21
+31514,240359.4227,141374.246,833932.171,21
+31515,240891.0559,140469.3009,112889.6762,21
+31516,241371.7747,140437.1522,221694.6995,21
+31517,242187.1851,139541.1807,834802.2228,21
+31518,242081.8494,139809.0952,112859.011,21
+31519,243147.0548,138517.3701,222180.9653,21
+31520,243435.5503,138848.5566,835571.0215,21
+31521,42161.79329,137960.6265,1027614.709,21
+31522,42280.6401,137644.7115,0,21
+31523,42183.38264,562457.9186,713478.2319,21
+31524,752225.3538,136634.9294,247483.3968,21
+31525,174761.2193,136385.4536,204696.5449,21
+31526,127861.2474,136046.2377,804832.3081,21
+31527,319590.5244,135606.4327,127879.8418,21
+31528,579260.8187,135083.873,216667.6533,21
+31529,248215.9869,134556.0291,825411.0277,21
+31530,248751.6415,134334.948,111600.667,21
+31531,249889.6087,134040.8307,218838.519,21
+31532,249386.6193,133067.4714,826744.3591,21
+31533,250902.9874,558019.8258,111541.1413,21
+31534,250700.6263,36031.90703,219247.6471,21
+31535,251523.8155,35966.76929,827997.7304,21
+31536,208608.4233,35933.04277,111661.0557,21
+31537,209771.7949,35845.5647,219650.2535,21
+31538,302389.5125,35774.11702,829296.1158,21
+31539,257862.2396,0,111573.4105,21
+31540,239849.248,0,220286.5223,21
+31541,260759.711,0,830365.6047,21
+31542,255145.0401,101848.4813,111778.7715,21
+31543,255714.3774,440646.019,220689.834,21
+31544,256147.9707,23553.1858,831466.0192,21
+31545,256503.4648,45164.17728,111800.7671,21
+31546,257304.2059,399282.3438,221215.0131,21
+31547,257759.5859,47197.55043,832518.443,21
+31548,258222.9793,87281.66672,111817.3668,21
+31549,258973.4794,114504.1395,221669.1647,21
+31550,259204.6387,151277.4743,833525.3888,21
+31551,259606.083,116068.0761,111837.5363,21
+31552,260666.0528,124518.7421,222088.685,21
+31553,260809.0572,548812.6476,834396.8811,21
+31554,44217.17221,122813.3833,0,21
+31555,44396.9227,122959.6158,0,21
+31556,44407.29099,121891.0198,727233.3631,21
+31557,789315.4289,121264.1116,262071.1795,21
+31558,237570.111,120603.1033,214031.123,21
+31559,106107.4283,120526.0779,816283.9211,21
+31560,351164.6684,118007.8109,130805.9565,15.6
+31561,255397.9201,121292.3347,223303.4167,15.6
+31562,264582.9507,121908.2904,838664.8524,15.6
+31563,265287.9263,548450.083,113467.7439,15.6
+31564,264638.5881,124668.9671,225836.8567,15.6
+31565,265135.5681,126178.0962,1859592.018,15.6
+31566,265073.2071,127490.3816,112030.8284,15.6
+31567,264932.6516,128391.7897,219269.9741,15.6
+31568,220596.2124,129965.1033,825564.0034,15.6
+31569,220055.1567,131131.5591,113007.9873,15.6
+31570,315554.0258,132199.5001,220662.1224,15.6
+31571,271831.3545,133511.148,827714.8477,15.6
+31572,250544.6912,98597.11355,114065.2411,15.6
+31573,271164.5612,99676.45162,221992.1387,15.6
+31574,265361.1016,100824.8674,829736.1124,15.6
+31575,265838.5799,207080.1108,115160.4587,15.6
+31576,604858.3727,16314.29407,223304.0797,15.6
+31577,265553.9187,24994.34103,831691.1191,15.6
+31578,265405.557,46938.75121,116222.6766,15.6
+31579,265736.8536,461901.5925,224520.6984,15.6
+31580,265384.6667,37341.21419,833543.5678,15.6
+31581,265986.8237,37658.05755,117246.8781,15.6
+31582,265600.2436,37693.31546,225803.7444,15.6
+31583,265568.8948,37895.5295,835167.8396,15.6
+31584,266050.5616,494958.8821,118364.7081,15.6
+31585,265633.7538,40364.51707,227006.2076,15.6
+31586,266158.5366,93060.49028,836803.8402,15.6
+31587,45086.28587,170679.2712,0,15.6
+31588,44976.1646,168315.7176,0,15.6
+31589,45106.14401,148494.3311,722341.1965,15.6
+31590,798424.0222,157086.248,271449.0064,15.6
+31591,251835.3395,157712.1257,221041.7587,15.6
+31592,97790.34183,158835.6521,820796.137,15.6
+31593,357014.2872,160552.4207,139672.4069,15.6
+31594,256271.3232,161524.8827,230570.8266,15.6
+31595,266462.4545,588518.0878,842846.9191,15.6
+31596,266713.0247,164001.9549,123006.7776,15.6
+31597,266359.7187,164820.8051,232920.5666,15.6
+31598,266862.1227,165969.9169,843756.0682,15.6
+31599,267005.2216,167857.2257,123981.7605,15.6
+31600,221072.567,168214.9522,233436.8834,15.6
+31601,221837.231,169858.6849,844870.6091,15.6
+31602,318139.3301,170984.0075,124867.3449,15.6
+31603,272589.3989,172062.2658,234158.8971,15.6
+31604,252478.6252,173832.2183,845879.755,15.6
+31605,272777.066,133220.8989,125819.5465,15.6
+31606,267400.2072,134892.2155,235003.7521,15.6
+31607,266806.0849,236635.1739,1862317.098,15.6
+31608,267113.5937,154369.5168,124153.4001,15.6
+31609,267289.2218,178575.0964,229293.0226,15.6
+31610,266977.266,184331.9132,833332.7023,15.6
+31611,267140.351,607598.0608,126255.5929,15.6
+31612,267337.6367,183068.2234,230634.3646,15.6
+31613,267139.2012,184491.0968,835661.4224,15.6
+31614,267212.9302,42178.29141,127687.8688,15.6
+31615,267466.0237,42450.73487,232013.9627,15.6
+31616,267194.2345,42572.98254,837976.1721,15.6
+31617,607129.4927,42710.30044,128821.359,15.6
+31618,267226.177,42794.43112,233658.5994,15.6
+31619,267930.2928,667606.163,839783.9007,15.6
+31620,45498.75556,43221.82808,0,15.6
+31621,45591.90732,94015.32224,0,15.6
+31622,45553.11325,272559.9186,715113.3093,15.6
+31623,802856.5316,181613.8469,277875.3752,15.6
+31624,268135.9275,193417.417,225769.0615,15.6
+31625,93088.72636,195574.6823,823574.2369,15.6
+31626,362636.2046,195145.4292,145385.6737,15.6
+31627,260949.8756,622165.989,234992.2563,15.6
+31628,270035.0232,195646.8355,842983.9376,15.6
+31629,271252.044,197060.3594,129104.3706,15.6
+31630,270721.6805,196692.908,236157.6184,15.6
+31631,271498.942,197244.4462,844246.8722,15.6
+31632,225736.7732,197521.5886,132050.633,15.6
+31633,225263.1953,197996.4459,237243.0299,15.6
+31634,323768.8701,198304.0994,846267.1974,15.6
+31635,278171.0502,198810.9934,130754.5176,15.6
+31636,258847.1221,198887.3217,237848.4751,15.6
+31637,277738.7926,580365.7258,847119.259,15.6
+31638,272937.0753,155658.7308,130674.253,15.6
+31639,273131.0628,265899.6822,238156.6912,15.6
+31640,273116.9104,177306.918,847698.3616,15.6
+31641,273235.5888,197871.4559,130678.9791,15.6
+31642,273851.7679,206196.1428,238498.7096,15.6
+31643,273628.9343,200979.6594,848434.4072,15.6
+31644,273957.1007,202451.911,130593.8591,15.6
+31645,274452.0015,202533.4729,238812.8688,15.6
+31646,273960.5665,202813.2887,849122.7114,15.6
+31647,275090.8686,628269.6383,130605.6685,15.6
+31648,274387.9397,203493.1177,239058.6237,15.6
+31649,275296.0791,44866.01819,1862216.93,15.6
+31650,275131.525,44786.81848,127889.1503,15.6
+31651,275616.3504,44942.53109,231942.9458,15.6
+31652,275465.8142,44840.50579,835330.5151,15.6
+31653,46582.33689,683111.5272,0,15.6
+31654,46535.49282,44923.69165,0,15.6
+31655,46517.64102,120323.0551,712746.0741,15.6
+31656,818082.2056,282105.0443,274468.9564,15.6
+31657,295630.7705,618249.9414,228053.9927,15.6
+31658,88547.02266,207484.7041,821193.7023,15.6
+31659,708549.9834,208118.2831,138194.2319,15.6
+31660,271080.4768,208267.4502,233143.1857,15.6
+31661,276516.0792,209072.0249,841268.5206,15.6
+31662,278336.2966,209083.1713,129231.4642,15.6
+31663,278513.0646,209299.0814,235688.6052,15.6
+31664,231282.4005,209959.6331,842262.3574,15.6
+31665,232191.3477,210294.4468,128759.4523,15.6
+31666,330998.7541,210451.358,236299.1551,15.6
+31667,285877.3504,635411.1031,843593.8011,15.6
+31668,266336.3183,211370.6926,128625.6686,15.6
+31669,284207.047,165797.2297,236705.576,15.6
+31670,280532.9991,166032.4033,844875.9295,15.6
+31671,279823.5113,281929.7928,128521.1876,15.6
+31672,280188.0738,189289.2923,237154.6577,15.6
+31673,280353.815,208662.4465,845986.9654,15.6
+31674,280590.4292,218620.6025,128678.7073,15.6
+31675,281059.11,213174.6539,237364.4812,15.6
+31676,280502.0163,214345.2275,847299.9384,15.6
+31677,281651.0093,639374.9914,128415.3722,15.6
+31678,281169.8046,214460.7922,237963.6146,15.6
+31679,281316.5644,215401.1525,848128.6323,15.6
+31680,282107.1537,216261.0412,128531.0394,15.6
+31681,274595.0141,208989.1537,236588.4854,15.6
+31682,274424.7257,207347.7588,847406.2026,15.6
+31683,273746.8386,44319.96877,127280.6542,15.6
+31684,274360.3321,44273.38354,237943.2195,15.6
+31685,273804.7307,43872.95619,849220.534,15.6
+31686,45534.50546,43928.71282,0,15.6
+31687,45516.65648,1474591.023,0,15.6
+31688,45662.58229,43467.20162,725457.7466,15.6
+31689,815583.8749,97801.82406,1310852.276,15.6
+31690,284378.5894,279835.1694,230369.2077,15.6
+31691,85785.97979,179905.4041,817654.6155,15.6
+31692,367104.0354,193721.2764,139162.6652,15.6
+31693,264014.3825,192902.5006,233807.9266,15.6
+31694,272676.5069,191296.1714,838976.1092,15.6
+31695,272326.875,190314.1586,132053.3512,15.6
+31696,566850.9917,188357.8477,237030.9649,15.6
+31697,227001.6722,612119.3426,842408.8705,15.6
+31698,321309.6387,185757.7066,131972.3121,15.6
+31699,280759.5685,184726.22,238933.4072,15.6
+31700,256649.1739,183115.4235,845027.7275,15.6
+31701,277695.5028,140150.5272,133329.1141,15.6
+31702,271472.7505,138829.314,240551.202,15.6
+31703,271419.5655,239918.7113,847275.1879,15.6
+31704,271313.8536,153875.5028,134754.0563,15.6
+31705,271089.1669,174714.5547,1313832.913,15.6
+31706,271507.5238,178385.1274,1501055.735,15.6
+31707,270298.3246,598258.1239,810656.0739,15.6
+31708,270874.7576,171872.1866,826554.4631,15.6
+31709,270436.7456,171281.4509,1635026.655,15.6
+31710,270234.1387,169015.452,860540.1445,15.6
+31711,270379.1496,168251.5351,878889.3565,15.6
+31712,269809.9045,167000.864,1623603.88,15.6
+31713,270111.8459,165364.7121,895778.8416,15.6
+31714,269719.9488,163914.9026,901927.8862,15.6
+31715,269537.1697,162714.2598,1652277.626,15.6
+31716,269644.0919,161646.8136,917209.0215,15.6
+31717,268787.2916,463744.0963,922658.2465,15.6
+31718,269434.8441,39001.00087,1677915.577,15.6
+31719,45178.00732,38724.97382,788280.8749,15.6
+31720,45023.66108,38732.73242,792632.7528,15.6
+31721,45066.12829,38463.53631,1550758.491,15.6
+31722,806763.0793,38333.77416,1116569.007,15.6
+31723,266664.8591,38214.64483,962034.084,15.6
+31724,87440.74192,560670.8405,1688233.247,15.6
+31725,362953.4797,37875.96871,984009.2681,15.6
+31726,258215.2577,62474.30326,976534.6527,15.6
+31727,267411.6409,586422.7289,1735981.317,15.6
+31728,223070.0081,167710.6433,2077963.518,15.6
+31729,222841.6202,502837.5603,967769.0414,15.6
+31730,317627.2408,142104.6886,1716440.865,15.6
+31731,274659.2718,141048.5729,982293.2412,15.6
+31732,252452.2658,139861.4043,986290.2252,15.6
+31733,612596.9174,101429.7555,1738800.679,15.6
+31734,267211.6906,100389.7952,999466.7422,15.6
+31735,266810.7405,99300.29967,271572.2741,15.6
+31736,266850.882,203039.6214,898397.531,15.6
+31737,266524.9164,535340.2613,156000.1214,15.6
+31738,266194.6267,119469.9664,271381.0313,15.6
+31739,266309.9119,138772.3985,897268.4187,15.6
+31740,266174.7851,125795.157,156923.8404,15.6
+31741,265773.4701,127196.4006,271041.3846,15.6
+31742,266271.1199,127042.4199,895811.7072,15.6
+31743,265791.3573,126989.1536,156876.9544,15.6
+31744,266497.4555,127530.1604,270272.5426,15.6
+31745,265783.0737,126788.442,894248.5774,15.6
+31746,266250.4004,127071.9885,1558188.423,15.6
+31747,266283.9178,551520.0407,919106.9954,15.6
+31748,266231.6193,126915.3747,1662314.262,15.6
+31749,266294.9287,127065.7552,1007440.578,15.6
+31750,265995.4134,126797.3732,1019984.367,15.6
+31751,266500.2024,127234.4974,1745836.443,15.6
+31752,44904.91399,126523.0386,854561.2757,15.6
+31753,44905.69906,127079.4425,857033.8094,15.6
+31754,44892.81103,35302.3136,1905600.538,15.6
+31755,802070.259,35280.77956,996611.2955,15.6
+31756,258332.9281,35280.77768,1010612.457,15.6
+31757,90442.00509,35260.28085,1785206.048,15.6
+31758,360094.8952,35241.30778,1027924.136,15.6
+31759,256348.4925,35257.58968,1031078.221,15.6
+31760,221888.8149,35230.66616,1782625.831,15.6
+31761,222082.5058,35218.11978,1037121.658,15.6
+31762,317270.1835,35211.6912,1038805.489,15.6
+31763,273663.147,460861.7846,1790751.311,15.6
+31764,252079.6477,35172.12765,1044419.109,15.6
+31765,273183.2488,35204.70522,1044317.07,15.6
+31766,266983.6308,0,1798599.927,15.6
+31767,267458.1369,0,2135609.638,15.6
+31768,266887.508,0,1025016.775,15.6
+31769,267067.6251,489954.9432,1767937.418,15.6
+31770,606819.7748,23363.60899,1033741.186,15.6
+31771,267239.1717,431745.918,1034500.836,15.6
+31772,267210.1714,133070.3205,1780720.552,15.6
+31773,267239.9925,146035.4621,1042269.268,15.6
+31774,267382.5435,120010.2754,1042183.708,15.6
+31775,266820.2536,125800.0558,1791957.658,15.6
+31776,267733.146,126300.2111,162421.9191,15.6
+31777,267401.2818,126761.6771,277958.2395,15.6
+31778,267239.7011,126150.0989,905228.9255,15.6
+31779,266943.1543,126692.4951,162036.9249,15.6
+31780,268170.7574,551771.0376,277261.7579,15.6
+31781,266783.4021,126822.4866,903222.6767,15.6
+31782,267870.7256,125742.6064,161997.9078,15.6
+31783,267260.2053,126226.4157,276451.543,15.6
+31784,267466.0754,126424.1695,2209109.992,15.6
+31785,45158.90055,126013.2831,772728.7379,15.6
+31786,45052.95483,126207.0108,1096423.562,15.6
+31787,45139.01847,125815.6658,1781255.233,15.6
+31788,804995.2336,126574.2181,1032644.55,15.6
+31789,263010.4955,125513.8001,1039625.432,15.6
+31790,89368.15398,126446.1303,1779870.453,15.6
+31791,361801.7714,125879.2861,1044108.936,15.6
+31792,212613.9743,126056.267,1045618.655,15.6
+31793,222839.0535,126090.9902,1794474.231,15.6
+31794,319332.8386,125984.4792,1053016.629,15.6
+31795,274691.0194,125907.5806,1054748.659,15.6
+31796,253548.3029,126285.2969,1805459.498,15.6
+31797,274136.643,551630.0376,1061420.535,15.6
+31798,268468.2039,125875.405,1061976.522,15.6
+31799,268614.566,0,1815001.378,15.6
+31800,268200.0269,0,1068146.148,15.6
+31801,268668.4457,0,1066879.332,15.6
+31802,267723.3936,100884.9482,1820497.504,15.6
+31803,268385.2269,11678.52362,1069795.707,15.6
+31804,268010.3959,26452.76703,1068834.084,15.6
+31805,267665.7893,43615.50445,1823557.117,15.6
+31806,267690.5216,33749.08063,1070817.223,15.6
+31807,607286.6904,35125.62066,2158198.652,15.6
+31808,267712.7433,35220.68851,1785691.513,15.6
+31809,267124.291,35285.06524,1048989.179,15.6
+31810,267338.6893,35220.68252,1048654.782,15.6
+31811,267305.0666,35285.05962,1795549.422,15.6
+31812,266891.4865,35241.22032,1053633.552,15.6
+31813,267011.3366,403515.8611,1053127.977,15.6
+31814,267041.6754,435776.2853,911663.9509,15.6
+31815,266565.3107,45945.86901,164641.3476,15.6
+31816,266519.0312,70311.34659,0,15.6
+31817,266529.0069,128432.9939,750080.3029,15.6
+31818,45189.1288,150518.3571,308642.344,15.6
+31819,45092.38278,121755.0006,269658.0447,15.6
+31820,45128.82422,128661.4959,903215.8333,15.6
+31821,801713.0018,129182.342,1693862.115,15.6
+31822,258156.802,129550.1287,946078.5034,15.6
+31823,90379.81506,129716.3244,1687888.998,15.6
+31824,313507.4587,129351.8421,1083444.747,15.6
+31825,211078.0348,129918.9512,1035180.994,15.6
+31826,316925.3229,129636.0845,1778251.4,15.6
+31827,271731.2195,130132.2231,1039295.913,15.6
+31828,251011.5472,130094.5548,1039464.197,15.6
+31829,271462.7679,130299.976,1791434.995,15.6
+31830,265898.1121,555986.1633,1044259.902,15.6
+31831,265014.3719,130363.3045,1047058.62,15.6
+31832,265385.9813,95412.05819,1802554.579,15.6
+31833,265226.667,95203.77219,1051031.061,15.6
+31834,264894.0147,95578.69162,1051180.141,15.6
+31835,264904.9162,198553.0223,1808738.928,15.6
+31836,264505.0842,107732.6745,1054942.712,15.6
+31837,264684.4593,122333.4284,1054446.506,15.6
+31838,264779.8582,140488.3842,1813731.363,15.6
+31839,264248.5544,130124.5212,1057655.02,15.6
+31840,264176.1345,556691.7664,1056470.913,15.6
+31841,264421.0809,131805.6563,1818184.378,15.6
+31842,263412.7662,132471.8918,1059155.14,15.6
+31843,264271.3293,132553.5825,1058190.31,15.6
+31844,603309.3471,35707.31742,1821400.202,15.6
+31845,263622.519,35698.40289,1059845.721,15.6
+31846,263711.8478,35749.3257,1059711.792,15.6
+31847,263269.8684,35807.30161,2922070.791,15.6
+31848,263546.0935,35707.30667,874280.2343,15.6
+31849,263058.0749,35831.58826,874494.2334,15.6
+31850,262962.989,460195.851,1930626.627,15.6
+31851,44854.95344,35741.47066,151795.4756,15.6
+31852,44962.67607,35868.17475,274263.8805,15.6
+31853,44817.4369,35827.59017,917685.2143,15.6
+31854,794949.2127,35931.52483,162341.0501,15.6
+31855,245880.5954,837153.1669,281061.2489,15.6
+31856,47640.20223,40516.0601,906135.4938,15.6
+31857,308819.3779,69876.2819,161666.3469,15.6
+31858,304648.3324,143943.2667,1691613.098,15.6
+31859,267316.9873,155697.4816,1651688.413,15.6
+31860,247105.4736,551274.118,922929.101,15.6
+31861,269628.3801,137613.0257,1058381.046,15.6
+31862,263698.277,138677.6992,1771404.044,15.6
+31863,264117.8288,140078.4554,1013542.32,15.6
+31864,265416.5677,141025.5742,1021279.847,15.6
+31865,264718.0156,105959.7033,1776320.605,15.6
+31866,266688.6962,106651.4744,1026715.403,15.6
+31867,266487.7522,107409.6776,1027739.258,15.6
+31868,267488.998,217192.807,1786336.988,15.6
+31869,267896.4443,124041.9262,1032061.452,15.6
+31870,268882.179,561529.6339,1032447.535,15.6
+31871,268940.157,158595.211,1794168.29,15.6
+31872,270156.2926,148973.3696,1035875.229,15.6
+31873,270057.0783,151372.4404,1035701.837,15.6
+31874,271546.4807,152555.024,1800535.523,15.6
+31875,271439.2908,153960.8299,1038406.637,15.6
+31876,272659.128,154550.0124,1037920.302,15.6
+31877,273025.2649,156177.0557,1805382.109,15.6
+31878,273622.4644,157035.1139,1040256.541,15.6
+31879,274456.5477,158296.3841,1039467.89,15.6
+31880,274736.8458,583471.6746,1644667.751,15.6
+31881,615356.1107,160829.7373,877242.3928,15.6
+31882,276442.6078,161039.116,1187078.057,15.6
+31883,276562.0205,162739.4883,1798576.51,15.6
+31884,46709.60221,164040.8796,1028188.503,15.6
+31885,46702.75216,39454.91026,1047881.085,15.6
+31886,46688.3662,39490.73082,2920255.097,15.6
+31887,826504.235,39655.1049,1015351.408,15.6
+31888,259327.7793,39719.24835,282334.1244,15.6
+31889,38492.15219,39908.45475,910975.7955,15.6
+31890,428874.2236,464287.6438,159943.7079,15.6
+31891,282280.6525,626233.0972,280507.402,15.6
+31892,269082.9938,40215.71289,908204.6921,15.6
+31893,288808.5511,65706.78071,159054.3427,15.6
+31894,285359.0714,236306.9528,279043.8247,15.6
+31895,285217.5455,175720.6267,1983144.325,15.6
+31896,286530.6041,540374.1128,850857.6609,15.6
+31897,286500.7428,178426.9563,895446.9188,15.6
+31898,287334.542,138233.853,1016942.601,15.6
+31899,288248.6374,139305.6025,970160.8739,15.6
+31900,288803.4454,666201.478,965648.3121,15.6
+31901,289154.2383,157430.6839,970731.8476,15.6
+31902,290090.7782,182945.2423,973327.9389,15.6
+31903,290822.8007,187974.5743,976181.5163,15.6
+31904,291365.0554,185422.5091,977867.6677,15.6
+31905,292037.2245,186388.3216,979877.2393,15.6
+31906,292437.4041,187992.3491,981777.6886,15.6
+31907,294043.2691,188521.6645,983333.0415,15.6
+31908,293637.7771,190614.9791,985399.4971,15.6
+31909,295064.6837,191727.111,986208.3531,15.6
+31910,295315.4982,616622.4454,987965.9025,15.6
+31911,296338.9995,194235.0298,989174.6331,15.6
+31912,296771.6208,194298.8687,832101.5252,15.6
+31913,297382.2126,195989.7881,833326.2144,15.6
+31914,298192.1781,197014.4352,1135094.219,15.6
+31915,299015.6608,197480.4206,983979.2052,15.6
+31916,299698.0316,199221.2447,977945.3214,15.6
+31917,49382.53774,199941.9663,1001724.595,15.6
+31918,388908.3374,200913.7902,992624.0372,15.6
+31919,49441.05458,202580.7358,992812.557,15.6
+31920,802918.125,626897.6318,993311.0039,17.8
+31921,2270290.277,275895.2825,3085942.91,17.8
+31922,1003363.245,1329912.642,2967464.839,17.8
+31923,630815.5486,1126807.569,2139887.144,17.8
+31924,831047.7938,378938.3107,1579629.388,17.8
+31925,918702.5629,509099.8078,1420904.464,17.8
+31926,805947.0111,571577.8177,485182.6714,17.8
+31927,768789.6951,506309.6495,2507592.605,17.8
+31928,775425.1029,504786.5668,1287721.121,17.8
+31929,746667.782,500811.4708,1243095.841,17.8
+31930,756771.7055,808174.4782,1455217.582,17.8
+31931,748847.6553,383178.1182,1384522.739,17.8
+31932,744530.4903,616994.0058,1394205.058,17.8
+31933,741173.4178,510297.0651,1402644.277,17.8
+31934,738996.3434,464006.3765,1410772.831,17.8
+31935,735909.4839,508679.4197,1416600.928,17.8
+31936,734788.7011,485419.9112,1423934.446,17.8
+31937,731152.0152,858192.2839,1430755.952,17.8
+31938,729217.9852,487556.9306,1435580.755,17.8
+31939,727267.7224,485522.6236,1440079.828,17.8
+31940,724564.0594,909557.7539,1446442.416,17.8
+31941,723520.0843,484185.5881,1449861.519,17.8
+31942,720372.812,483072.6459,1454998.815,17.8
+31943,719244.0946,482525.1154,1458925.835,17.8
+31944,717154.6778,480922.3554,1183626.877,17.8
+31945,715781.7785,481065.0934,1186636.909,17.8
+31946,712844.1483,479214.8646,1787379.551,17.8
+31947,713496.9374,479691.0726,1465170.745,17.8
+31948,708669.4641,477739.7512,1483987.775,17.8
+31949,708900.6553,478303.416,1483814.7,17.8
+31950,122269.0074,901151.4778,1476995.6,17.8
+31951,0,465162.9714,1475502.417,17.8
+31952,813823.421,103966.2563,1481939.77,17.8
+31953,888893.3197,103720.3125,1481397.691,17.8
+31954,761031.2716,1053049.427,1484293.057,17.8
+31955,1078875.147,296153.4827,1486024.07,17.8
+31956,672377.3265,453492.3704,1488591.719,17.8
+31957,721728.5782,510932.8975,468214.9113,17.8
+31958,703145.7987,465233.09,460214.2056,17.8
+31959,696283.9198,468770.1318,451562.4207,17.8
+31960,696907.4411,898713.4177,2684037.082,17.8
+31961,691251.1648,469975.3179,1663563.984,17.8
+31962,691659.7289,371871.6631,1174332.251,17.8
+31963,688241.8914,370590.5494,1528742.972,17.8
+31964,687471.8373,605480.7427,1440121.621,17.8
+31965,686632.5615,448932.5902,2453040.946,17.8
+31966,683917.0696,469218.4583,1410603.008,17.8
+31967,684571.9228,476455.5466,1421921.363,17.8
+31968,682018.0529,469813.5916,1428875.868,17.8
+31969,680893.9067,472055.407,1435996.387,17.8
+31970,679644.4206,893814.952,1444667.554,17.8
+31971,678181.7796,469628.7019,1450252.454,17.8
+31972,677964.923,468429.4297,1456777.111,17.8
+31973,676292.4591,469101.0428,1463038.333,17.8
+31974,675259.6978,468207.6174,1468439.223,17.8
+31975,673743.0712,468457.0415,1473470.857,17.8
+31976,673173.7188,467954.936,1211897.718,17.8
+31977,671388.3492,467632.3947,1217354.416,17.8
+31978,671099.0584,836233.6151,1762753.924,17.8
+31979,670250.3997,467485.5446,1493369.538,17.8
+31980,667703.6392,891135.2418,1509639.815,20
+31981,2312539.4,2612593.161,4467928.232,20
+31982,291077.5652,2622614.453,3108643.193,20
+31983,2058975.969,1972952.182,2969107.191,20
+31984,2275248.916,223388.4423,3559789.199,20
+31985,2140076.387,1345411.943,2687289.169,20
+31986,865327.865,809503.8475,2786123.867,20
+31987,1577062.262,1317386.776,2494154.619,20
+31988,1451242.839,1014184.744,2483087.831,20
+31989,1332637.418,1150546.854,2506469.464,20
+31990,1338146.412,1075928.762,634484.1765,20
+31991,1341991.034,1093657.336,625717.8457,20
+31992,1669429.411,1087451.477,2719526.816,20
+31993,1323175.255,1079334.818,2633351.321,20
+31994,1319016.678,909061.5428,2230005.031,20
+31995,1316660.712,1132335.224,2514959.959,20
+31996,1310800.232,1105340.473,2281874.669,20
+31997,1306549.398,1022265.003,2386540.267,20
+31998,1303012.264,1045955.929,2328449.204,20
+31999,1300101.985,1037979.402,2306723.175,20
+32000,1295809.933,1031591.953,2326635.01,20
+32001,1293689.164,1024547.793,2319898.666,20
+32002,1290088.025,1020325.424,2317269.628,20
+32003,1286471.097,1015554.896,2998048.258,20
+32004,1283932.894,1012047.528,2362062.497,20
+32005,1280783.866,1005555.197,3275633.098,20
+32006,1278866.536,1001143.854,2280891.099,20
+32007,1276652.9,996930.5692,2285962.902,20
+32008,1273345.53,994626.2112,1906035.286,20
+32009,1270421.883,987500.1095,2437666.176,20
+32010,1268447.798,984963.3981,2355676.159,20
+32011,1267829.346,980882.6857,2144347.279,20
+32012,1263441.441,975289.2695,2213825.474,20
+32013,188777.8156,973797.2272,2188117.394,20
+32014,1474415.013,968548.9557,2192650.091,20
+32015,1318969.856,182721.1633,2365173.853,20
+32016,1243183.691,182272.1856,2273624.383,20
+32017,1228465.895,1429957.6,2275840.917,20
+32018,1229748.82,1375876.897,2529572.614,20
+32019,1288493.216,871365.1889,2235026.175,20
+32020,1252738.291,1001720.32,2242269.324,20
+32021,1244022.337,896690.142,2246611.321,20
+32022,1247367.116,1001933.038,665268.6374,20
+32023,1246160.943,919696.0558,690736.1742,20
+32024,1244024.357,940481.0566,2651909.238,20
+32025,1242207.099,787462.3576,2536630.197,20
+32026,1239067.198,783653.4758,1984856.725,20
+32027,1241145.725,1014872.302,2394933.435,20
+32028,1236069.644,1010006.77,2145427.327,20
+32029,1576584.912,883308.8732,2167938.502,20
+32030,1235829.633,919292.0345,2209402.534,20
+32031,1233057.833,919796.9076,2200115.554,20
+32032,1231906.511,908456.173,2206449.23,20
+32033,1231778.608,908004.2568,2214825.897,20
+32034,1230281.394,899615.1263,2901969.237,20
+32035,1227790.79,898335.6933,2269601.593,20
+32036,1227538.178,893848.9903,2237048.433,20
+32037,1227020.232,891366.7346,2238374.905,20
+32038,1225264.936,886522.1469,2237910.595,20
+32039,1224487.895,883716.7494,1879558.47,20
+32040,1222102.567,878942.7135,2422083.063,21
+32041,2312708.221,2633422.186,4806087.989,21
+32042,2288692.677,2087971.883,4416306.08,21
+32043,1556505.499,900845.7211,2446049.683,21
+32044,1245553.257,1307032.801,2637926.493,21
+32045,1578016.813,1296869.24,2916823.581,21
+32046,1417833.853,1222240.717,2710397.173,21
+32047,1430041.348,1225639.323,2616020.308,21
+32048,1419094.666,1211399.693,2653779.052,21
+32049,1413078.805,1193125.371,2629536.562,21
+32050,1411337.667,1198370.297,2622293.605,21
+32051,1402717.104,1190205.79,2610848.821,21
+32052,1402309.158,1185437.101,2605427.709,21
+32053,1396049.549,1181510.138,2594417.187,21
+32054,1393148.881,1177989.849,2585891.5,21
+32055,1389661.861,1173695.326,2583622.421,21
+32056,1384498.463,1170424.196,2570289.906,21
+32057,1382989.078,1166166.393,2564349.876,21
+32058,1378270.68,1162351.209,2560635.913,21
+32059,1377105.767,1161605.334,2552122.351,21
+32060,1370594.589,1155576.295,2546547.255,21
+32061,1371935.396,1153451.914,2543760.474,21
+32062,1365617.42,1150491.814,2536561.626,21
+32063,1366089.34,1148667.193,2531182.728,21
+32064,1360490.453,1143641.014,2525619.079,21
+32065,1359892.503,1142619.635,2519441.765,21
+32066,1357525.596,1139667.352,2517648.895,21
+32067,1353673.5,1135480.449,2513803.083,21
+32068,1351228.109,1135499.471,2506078.469,21
+32069,1350795.628,1130070.686,2503545.381,21
+32070,1346181.62,1131121.465,2500165.949,21
+32071,1345368.393,1124561.9,2497150.468,21
+32072,1343764.252,1125809.103,2489651.368,21
+32073,1340902.361,1122061.77,2487115.72,21
+32074,1338187.719,1117983.462,2486149.828,21
+32075,1336705.962,1119600.403,2480892.632,21
+32076,1334796.035,1113298.166,2477880.734,21
+32077,1333362.678,1114347.599,2472940.576,21
+32078,1328847.716,1109520.001,2468431.302,21
+32079,1325168.855,1109388.482,2469841.308,21
+32080,1324511.368,1105486.477,2464057.217,21
+32081,1320468.069,1105461.303,2459313.009,21
+32082,1319626.516,1101583.952,2455235.195,21
+32083,1315960.662,1100965.053,2456976.25,21
+32084,1314093.374,1098223.59,2451563.017,21
+32085,1313369.411,1096985.027,2444737.683,21
+32086,1309447.486,1094959.473,2446673.15,21
+32087,1307191.368,1092527.408,2441761.802,21
+32088,1306094.347,1092372.187,2438137.078,21
+32089,1302995.043,1087466.597,2435560.516,21
+32090,1302803.976,1088121.867,2433457.786,21
+32091,1298374.513,1086660.922,2428556.573,21
+32092,1297539.223,1083562.35,2428805.45,21
+32093,1295805.084,1083244.238,2420141.81,21
+32094,1294118.006,1080363.458,2424127.578,21
+32095,1290812.972,1079821.909,2416088.095,21
+32096,1291117.245,1077244.872,2417775.253,21
+32097,1286996.781,1076452.19,2410887.435,21
+32098,1287295.699,1075203.044,2411539.187,21
+32099,1283405.511,1072986.806,2406605.04,21
+32100,1283582.378,1070062.041,2407493.096,21
+32101,1790961.047,1824963.144,2340257.63,21
+32102,1785721.805,1816031.273,2334408.76,21
+32103,1783964.937,1815845.008,3047336.648,21
+32104,1781804.314,1815729.301,2377072.606,21
+32105,1779268.483,1814869.53,2332161.024,21
+32106,1779287.61,1812466.043,2332819.783,21
+32107,1777876.04,1814401.647,2328601.713,21
+32108,1774232.936,1810937.597,2327857.132,21
+32109,1776350.303,1811678.983,2324779.452,21
+32110,1771919.978,1811632.941,2324332.756,21
+32111,1772898.017,1809761.001,2321213.816,21
+32112,1770885.304,1810044.29,2319722.037,21
+32113,1771359.978,1809730.676,2317140.32,21
+32114,1768940.889,1808561.055,2320407.643,21
+32115,1767940.364,1808431.117,2313029.796,21
+32116,1765496.784,1809368.149,2313395.266,21
+32117,1767937.166,1806898.642,2313011.432,21
+32118,1763816.657,1809338.475,3029453.73,21
+32119,1763123.201,1805764.547,2354417.891,21
+32120,1763860.034,1808323.312,2313176.408,21
+32121,1761396.167,1807085.72,2310568.721,21
+32122,1762695.67,1806686.53,2310267.418,21
+32123,1759719.837,1806369.616,2305228.775,21
+32124,1760055.116,1806945.657,2305481.638,21
+32125,1757766.943,1806834.746,2301548.841,21
+32126,1758346.816,1805865.921,2303384.807,21
+32127,1758508.932,1805500.735,2300530.232,21
+32128,1755277.957,1806326.975,2297298.478,21
+32129,1756385.126,1806955.649,2301522.882,21
+32130,1754248.023,1804447.977,2292639.853,21
+32131,1754984.149,1806795.665,2296615.134,21
+32132,1752707.129,1805087.454,2293545.257,21
+32133,1753876.553,1806832.521,3011528.144,21
+32134,1753139.906,1805177.222,2335510.722,21
+32135,1750554.793,1805579.21,2293633.016,21
+32136,1752381.318,1805290.672,2291664.33,21
+32137,1750887.157,1806783.19,2290118.18,21
+32138,1748631.443,1805558.888,2287672.035,21
+32139,1750278.01,1806182.042,2286235.661,21
+32140,1749058.225,1805881.812,2285066.889,21
+32141,1748785.082,1806000.709,2284012.671,21
+32142,1747904.677,1805937.519,2281680.538,21
+32143,1747537.906,1807023.198,2280795.053,21
+32144,1746378.969,1806342.944,2282780.033,21
+32145,1745465.842,1805425.816,2271996.181,21
+32146,1744707.964,1807514.445,2219795.219,21
+32147,1743566.318,1806428.099,2214910.057,21
+32148,1735930.286,1807784.026,2935435,21
+32149,1736605.091,1807112.027,2252989.814,21
+32150,1733505.053,1806685.516,2205672.98,21
+32151,1732281.467,1808377.219,2204208.231,21
+32152,1729690.904,1807972.877,2199040.811,21
+32153,1729255.754,1806891.485,2193534.372,21
+32154,1726498.338,1808983.359,2190451.217,21
+32155,1726595.794,1808367.904,2187822.69,21
+32156,1722926.114,1808834.881,2182726.912,21
+32157,1725364.199,1808507.882,2177714.242,21
+32158,1719526.85,1809988.621,2174455.192,21
+32159,1722017.445,1808835.361,2174773.032,21
+32160,1719769.472,1809816.96,2165229.581,21
+32161,1482574.959,1574515.824,1675822.025,21
+32162,1460484.464,1558134.982,1633753.521,21
+32163,1454809.513,1551261.166,2363299.256,21
+32164,1447616.847,1547418.393,1611051.335,21
+32165,1444047.055,1542401.525,1600387.534,21
+32166,1436833.725,1537958.954,2356816.431,21
+32167,1434354.845,1534376.071,1577738.274,21
+32168,1428289.32,1530291.257,1565649.916,21
+32169,1426604.078,1525736.263,2335550.007,21
+32170,1419815.261,1523326.398,1544344.036,21
+32171,1418500.001,1518380.257,1535532.728,21
+32172,1412967.145,1516587.123,2306369.779,21
+32173,1409570.634,1512424.369,1515555.394,21
+32174,1405620.141,1508353.283,1499169.134,21
+32175,1401285.475,1506259,2282081.654,21
+32176,1396297.08,1502102.27,1482125.616,21
+32177,1394732.243,1500938.429,1468572.194,21
+32178,1389013.644,1495151.889,2253306.118,21
+32179,1387125.87,1495094.848,1449390.595,21
+32180,1385595.028,1490154.168,1438390.539,21
+32181,1379991.002,1488445.349,2224354.101,21
+32182,1377550.355,1485108.674,1418344.154,21
+32183,1376950.079,1482002.415,1406102.679,21
+32184,1371335.392,1479243.361,2196037.405,21
+32185,1368997.256,1476956.279,1385840.269,21
+32186,1367338.828,1474627.848,1374601.335,21
+32187,1364114.962,1471129.36,2167594.862,21
+32188,1360136.043,1468564.098,1352995.609,21
+32189,1359901.733,1466553.674,1344430.243,21
+32190,1355007.737,1464053.114,2139486.527,21
+32191,1351043.952,1460982.856,1322539.937,21
+32192,1346696.847,1457585.858,1315268.507,21
+32193,1345745.869,1456483.517,2114563.223,21
+32194,1341465.705,1454831.079,1299303.43,21
+32195,1339731.809,1449436.217,1288699.378,21
+32196,1335597.229,1449184.687,2094419.876,21
+32197,1335159.25,1446572.31,1273825.758,21
+32198,1330186.664,1443442.173,1265858.033,21
+32199,1328430.464,1441517.482,2073102.985,21
+32200,1325728.123,1439530.58,1250209.167,21
+32201,1323446.807,1436009.765,1241773.21,21
+32202,1320859.2,1434628.325,2052910.762,21
+32203,1316881.604,1432135.397,1225824.057,21
+32204,1315368.21,1429799.032,1219928.508,21
+32205,1312979.014,1427868.745,2030603.018,21
+32206,1309070.819,1425542.465,1204035.181,21
+32207,1306828.514,1423133.971,1195609.977,21
+32208,1305663.398,1420940.541,2012042.776,21
+32209,1300988.377,1419535.488,1179723.71,21
+32210,1300611.636,1415523.35,1172991.67,21
+32211,1296141.025,1416009.056,1991447.822,21
+32212,1294316.203,1411633.511,1157531.491,21
+32213,1289502.42,1411494.821,1151211.21,21
+32214,1286484.654,1407845.425,1972010.009,21
+32215,1282512.449,1407039.04,1136089.565,21
+32216,1281229.278,1403607.265,1128352.305,21
+32217,1277042.152,1403083.848,1953430.774,21
+32218,1275775.185,1399490.355,1113574.388,21
+32219,1273239.62,1398423.843,1106056.664,21
+32220,1269576.765,1395399.884,1934806.705,21
+32221,1267798.406,1394867.907,1090313.217,21
+32222,1264578.373,1392679.401,1083405.217,21
+32223,1262369.418,1391898.494,1911946.459,21
+32224,1260149.527,1389122.016,1067482.624,21
+32225,1257266.862,1388421.385,1058481.992,21
+32226,1254507.224,1387062.889,1891282.687,21
+32227,1252891.108,1384046.429,1042980.281,21
+32228,1249943.456,1384046.009,1035511.481,21
+32229,1247817.969,1382658.69,1870014.314,21
+32230,1245879.627,1380008.806,1018338.026,21
+32231,1242653.351,1380596.176,1012964.606,21
+32232,1240617.928,1376700.401,1847645.743,21
+32233,1237973.472,1376823.503,996005.2119,21
+32234,1236626.896,1375038.604,987839.9888,21
+32235,1233706.635,1372262.058,1826999.18,21
+32236,1231438.63,1372335.672,973743.8508,21
+32237,1228754.109,1370422.251,963099.1605,21
+32238,1227362.664,1368783.231,1807405.75,21
+32239,1224072.453,1367561.678,948296.7266,21
+32240,1221406.599,1366374.318,1400045.229,21
+32241,1220271.638,1363367.178,913812.7095,21
+32242,1218156.011,1363814.062,912481.6627,21
+32243,1214637.844,1361840.561,900078.5106,21
+32244,1214246.722,1359381.142,955651.0816,21
+32245,1209907.415,1359131.11,1219144.01,21
+32246,1209818.182,1356975.679,864683.4109,21
+32247,1206867.557,1356002.275,863061.3373,21
+32248,1203886.729,1354574.27,890671.1978,21
+32249,1203264.757,1352278.435,1159104.533,21
+32250,1202119.999,1352717.552,827081.6409,21
+32251,1201664.183,1350886.227,822579.1764,21
+32252,1201504.729,1348613.353,816781.8775,21
+32253,1197408.415,1348354.266,939234.5216,21
+32254,1198413.363,1345343.677,801258.8871,21
+32255,1196387.972,1345979.448,822498.7279,21
+32256,1195526.688,1343512.131,806726.1302,21
+32257,1193575.722,1342380.647,800615.1702,21
+32258,1193140.116,1340360.935,798916.2815,21
+32259,1192768.993,1339194.27,795621.1717,21
+32260,1190530.474,1338025.393,1573829.828,21
+32261,1190305.582,1335909.698,764462.4329,21
+32262,1188022.094,1335460.509,760945.5066,21
+32263,1188756.835,1333786.67,1594102.635,21
+32264,1186367.365,1331961.825,750719.7706,21
+32265,1186066.579,1331716.492,746343.9501,21
+32266,1184671.221,1328564.986,1589497.97,21
+32267,1185038.033,1327900.381,736234.5109,21
+32268,1182134.794,1326613.145,731925.6577,21
+32269,1182769.401,1325577.289,1579911.508,21
+32270,1182450.197,1322367.627,722245.5448,21
+32271,1180440.196,1323403.09,715897.3145,21
+32272,1179325.003,1320750.992,1571618.181,21
+32273,1179999.839,1319409.73,706077.4444,21
+32274,1177977.283,1317702.217,702035.512,21
+32275,1178070.176,1316243.661,1560480.82,21
+32276,1176665.15,1314585.128,691205.9441,21
+32277,1176895.384,1313250.724,686905.4019,21
+32278,1176046.884,1312510.776,1549227.473,21
+32279,1174767.765,1309775.938,676491.8989,21
+32280,1178480.626,1307226.388,670690.8707,21
+32281,1172000.081,1309480.597,1547884.569,21
+32282,1172599.844,1310690.252,671663.9504,21
+32283,1563374.072,1310026.26,668302.8143,21
+32284,1168107.895,1311745.12,1542635.108,21
+32285,1165533.92,1312552.504,662203.4147,21
+32286,1565437.29,1313347.798,1143236.871,21
+32287,1163142.924,1313733.163,643672.7121,21
+32288,1159113.047,1313916.16,644739.6683,21
+32289,1562398.728,1316204.642,638424.0012,21
+32290,1155843.957,1316503.187,806227.5034,21
+32291,1153964.962,1315691.539,976066.8227,21
+32292,1153022.09,1318417.796,616033.4395,21
+32293,1149939.166,1317854.973,618299.8179,21
+32294,1147785.747,1320374.576,639222.0377,21
+32295,1148818.138,1319218.978,720323.0255,21
+32296,1142948.065,1321775.827,745888.3161,21
+32297,1144495.827,1320653.272,892631.5509,21
+32298,1140178.729,1323775.464,587980.6189,21
+32299,1139414.26,1323313.18,590675.362,21
+32300,1138349.787,1323689.255,782078.7256,21
+32301,1135073.77,1322556.471,742483.0918,21
+32302,1133597.307,1321629.016,885981.1582,21
+32303,1132255.033,1322960.828,561720.9024,21
+32304,1131258.642,1323316.496,564660.0209,21
+32305,1127587.577,1323429.312,558842.9359,21
+32306,1126610.158,1324291.433,731695.6032,21
+32307,1125073.993,1325178.512,863537.8533,21
+32308,1121736.583,1325658.619,543050.2961,21
+32309,1121513.184,1326421.303,544481.793,21
+32310,1119224.611,1327193.179,540688.3119,21
+32311,1117787.021,1326637.308,714873.2386,21
+32312,1114827.691,1329791.576,840989.2979,21
+32313,1114212.315,1327275.043,523812.2952,21
+32314,1112005.439,1331027.188,527398.4001,21
+32315,1109299.351,1329523.993,521712.6661,21
+32316,1108857.716,1330850.523,701460.732,21
+32317,1106018.138,1331615.294,819586.0803,21
+32318,1105999.46,1304617.361,507101.9056,21
+32319,1102433.218,1301272.757,508902.4855,21
+32320,1101457.075,1300136.199,505136.534,21
+32321,1099027.072,1299080.211,687865.2705,21
+32322,1097554.412,1297988.567,799772.3214,21
+32323,1096382.496,1298413.162,490245.8854,21
+32324,1093443.83,1297204.458,492553.4292,21
+32325,1092988.268,1296501.725,488266.8733,21
+32326,1090231.695,1295806.172,675318.0297,21
+32327,1090786.618,1296021.059,779676.379,21
+32328,1090579.91,1293387.385,474804.8518,21
+32329,1087649.196,1295163.809,475411.6596,21
+32330,1086990.203,1293541.215,691994.2971,21
+32331,1084128.045,1292611.607,654099.4245,21
+32332,1083521.608,1293197.519,750938.9176,21
+32333,1081652.685,1291579.644,454728.0108,21
+32334,1079666.707,1292428.485,456631.3189,21
+32335,1078578.34,1290616.139,671350.2088,21
+32336,1076809.04,1291391.577,635045.4624,21
+32337,1074963.736,1288738.927,552998.5228,21
+32338,1073036.106,1290402.67,576445.6748,21
+32339,1071980.376,1289393.383,564911.7143,21
+32340,1069728.304,1288441.334,561171.6665,21
+32341,1069044.813,1283659.564,549913.9579,21
+32342,1067549.598,1279932.578,546195.4035,21
+32343,1067376.11,1275059.518,744620.6672,21
+32344,1067445.206,1270986.82,403536.294,21
+32345,1067333.38,1268933.392,403719.9692,21
+32346,1065690.486,1262336.23,621554.6298,21
+32347,1067565.538,1261987.445,571808.9435,21
+32348,1065650.103,1256544.233,509484.0459,21
+32349,1065629.482,1252834.684,525561.0883,21
+32350,1066119.818,1249510.748,516866.7546,21
+32351,1066252.876,1245973.983,510170.4105,21
+32352,1065205.267,1241951.742,507196.4875,21
+32353,1064844.171,1238736.887,502976.4644,21
+32354,1065819.225,1234334.266,677910.4985,21
+32355,1064190.541,1232101.394,356653.0031,21
+32356,1065064.485,1227666.785,356526.1945,21
+32357,1064106.749,1224853.907,575853.637,21
+32358,1065239.704,1221277.508,527238.5508,21
+32359,1063810.422,1216134.975,469428.4948,21
+32360,1064653.823,1215144.723,484787.2938,21
+32361,1062994.782,1210091.001,475153.4082,21
+32362,1064246.156,1206991.217,469813.272,21
+32363,1063378.711,1203612.362,466161.418,21
+32364,1063246.908,1200189.49,462747.9049,21
+32365,1063156.365,1197130.613,615148.5742,21
+32366,1064105.809,1193781.398,313339.187,21
+32367,1061976.956,1190159.748,313574.1426,21
+32368,1064088.257,1186735.195,531571.8145,21
+32369,1061852.638,1183428.077,484226.153,21
+32370,1066458.896,1180159.302,431194.0557,21
+32371,1065113.517,1176855.271,444824.6487,21
+32372,1065968.379,1173946.725,435238.4497,21
+32373,1065133.055,1170029.954,430917.1107,21
+32374,1065445.124,1166816.625,426833.2971,21
+32375,1066478.131,1164214.654,423027.4097,21
+32376,1065159.578,1159914.574,419068.8857,21
+32377,1065983.598,1156667.211,407464.7583,21
+32378,1064410.031,1153614.422,410379.771,21
+32379,1066082.747,1150445.228,402436.686,21
+32380,1065498.186,1147100.296,398841.0253,21
+32381,1065917.595,1143362.475,395002.6112,21
+32382,1065662.837,1140311.193,388860.5948,21
+32383,1065842.049,1137730.373,388202.0577,21
+32384,1065637.907,1133940.219,381676.7627,21
+32385,1068521.376,1129985.232,378110.7801,21
+32386,1067777.103,1127951.369,374010.7757,21
+32387,1068789.595,1124343.1,368125.8124,21
+32388,1068925.676,1120723.61,366656.541,21
+32389,1068636.39,1118327.869,361269.126,21
+32390,1068830.489,1114148.019,356822.5788,21
+32391,1069440.71,1111972.384,352831.3022,21
+32392,1069039.622,1107352.882,347459.6308,21
+32393,1069612.559,1104981.004,345364.1684,21
+32394,1069724.142,1102086.893,339817.3066,21
+32395,1070747.947,1099311.157,335576.9753,21
+32396,1069817.075,1095488.815,331428.4454,21
+32397,1070495.903,1092549.666,325695.5523,21
+32398,1070717.908,1089219.095,324363.3414,21
+32399,1071915.29,1086587.75,317511.5732,21
+32400,1070669.627,1083430.352,314293.8941,21
+32401,1145494.787,1157668.387,347249.7134,21
+32402,1143590.939,1154357.331,344228.2641,21
+32403,1143812.057,1153979.711,344559.3831,21
+32404,1142017.705,1152738.969,341377.7681,21
+32405,1142291.681,1149322.294,338978.6002,21
+32406,1139438.421,1147671.415,336874.9945,21
+32407,1140324.072,1147124.902,333671.0939,21
+32408,1138711.85,1143421.952,333681.6764,21
+32409,1137295.74,1141697.11,329703.5119,21
+32410,1136547.923,1141314.412,327765.6173,21
+32411,1135136.092,1137571.453,325697.5693,21
+32412,1135332.082,1136798.566,322708.1602,21
+32413,1133159.797,1134282.255,322387.885,21
+32414,1132687.944,1132847.081,318784.8699,21
+32415,1131393.769,1129444.424,317085.0236,21
+32416,1130853.195,1129875.529,314520.2521,21
+32417,1129896.474,1125589.124,311541.689,21
+32418,1130184.605,1125128.832,311713.8034,21
+32419,1128685.55,1121561.57,307284.0671,21
+32420,1127820.547,1121856.51,306199.5489,21
+32421,1126900.706,1118263.558,303493.4031,21
+32422,1125649.594,1117184.322,300695.2285,21
+32423,1124879.388,1114975.209,300193.0282,21
+32424,1124479.713,1113731.968,296656.5188,21
+32425,1121122.743,1111130.952,295182.804,21
+32426,1123035.952,1109462.259,292339.5374,21
+32427,1119043.652,1106821.021,289451.4398,21
+32428,1119408.813,1105156.131,289744.2819,21
+32429,1118805.985,1104310.485,286655.4254,21
+32430,1116694.64,1101763.286,285354.2437,21
+32431,1116332.909,1099842.096,284328.3637,21
+32432,1114296.699,1098271.181,281931.9196,21
+32433,1112992.444,1096781.597,282329.5024,21
+32434,1112357.853,1094430.185,280185.5794,21
+32435,1110394.501,1092767.426,278839.213,21
+32436,1109105.661,1090089.101,277677.3413,21
+32437,1108237.471,1090029.184,275441.0917,21
+32438,1106986.119,1086463.771,276430.3662,21
+32439,1104947.556,1085862.511,273494.3742,21
+32440,1104174.41,1084485.789,273657.5169,21
+32441,1102994.454,1081081.009,272707.8541,21
+32442,1101145.392,1081823.534,270776.9854,21
+32443,1099514.35,1077362.693,271534.2681,21
+32444,1099336.877,1077919.068,268952.8706,21
+32445,1097208.812,1074051.109,268179.7618,21
+32446,1095124.818,1074295.011,267421.2329,21
+32447,1095240.278,1071213.857,265398.0795,21
+32448,1092660.53,1069931.527,266211.0022,21
+32449,1092719.242,1069095.557,263965.4908,21
+32450,1089112.712,1066623.087,263696.5775,21
+32451,1089525.593,1064769.987,262255.9061,21
+32452,1088422.127,1062789.999,261090.6588,21
+32453,1085883.638,1062237.493,261230.612,21
+32454,1084278.128,1058938.67,259759.0885,21
+32455,1084829.718,1058424.732,259121.0614,21
+32456,1081120.203,1056077.526,258075.6979,21
+32457,1081049.805,1056134.33,256666.6135,21
+32458,1079318.793,1052024.431,256998.6371,21
+32459,1077993.953,1052674.31,255778.3744,21
+32460,1076674.33,1049313.007,254814.1417,21
+32461,1001976.643,992562.5243,224605.2367,21
+32462,1002547.521,990211.087,221778.1507,21
+32463,1003680.721,989379.0337,222456.022,21
+32464,1003887.409,987324.5564,219393.6208,21
+32465,1005491.26,986169.2821,218207.2389,21
+32466,1005941.184,984365.9204,217052.7656,21
+32467,1007352.852,983194.6177,214734.0501,21
+32468,1009007.191,981232.243,214915.8076,21
+32469,1009264.219,980002.8422,212971.1248,21
+32470,1011014.429,977728.2313,211397.0906,21
+32471,1012396.38,977154.1845,210715.5584,21
+32472,1012945.976,975623.3786,208327.7628,21
+32473,1013300.265,973699.356,209242.5425,21
+32474,1016068.584,972282.218,206641.9834,21
+32475,1016702.289,970862.7066,205986.8618,21
+32476,1017989.208,968880.8339,204710.4214,21
+32477,1018646.536,967253.5151,202918.9331,21
+32478,1021158.325,965184.6615,203341.4214,21
+32479,1019571.104,964207.8244,201603.6434,21
+32480,1020276.494,962238.115,200507.5196,21
+32481,1023483.311,960718.3952,199568.4925,21
+32482,1022151.672,959256.3556,197969.0186,21
+32483,1024459.899,957515.7597,198445.4236,21
+32484,1026305.816,956159.2303,196561.0259,21
+32485,1026380.322,954259.9904,195634.1988,21
+32486,1028424.85,953165.4032,194540.772,21
+32487,1028391.062,951052.8322,193142.7477,21
+32488,1031797.761,949788.1426,193545.4059,21
+32489,1030480.954,948138.5136,191700.5757,21
+32490,1033491.879,946616.2147,190896.7871,21
+32491,1033749.184,945302.348,189793.3931,21
+32492,1035830.193,944244.8928,188410.7323,21
+32493,1037309.101,943202.5215,188617.6008,21
+32494,1038264.724,942116.5812,187138.4974,21
+32495,1039148.355,941377.1857,186112.356,21
+32496,1040802.707,940366.2389,185171.4166,21
+32497,1042737.998,938827.4592,183683.0336,21
+32498,1044123.393,938783.0764,184225.6649,21
+32499,1043628.964,937493.1324,182253.4303,21
+32500,1047815.293,936823.089,181370.0413,21
+32501,1047272.993,935980.1822,180777.4136,21
+32502,1050008.79,935027.9825,178794.5086,21
+32503,1050676.879,934318.5219,179564.1612,21
+32504,1051530.374,933504.1521,177508.921,21
+32505,1053962.969,932903.3701,176989.9115,21
+32506,1054789.613,931825.4278,175489.1416,21
+32507,1057372.092,931402.0731,174546.4892,21
+32508,1060603.529,930325.9088,174524.0012,21
+32509,1059844.927,929908.141,172659.0857,21
+32510,1063822.159,929500.7324,172062.1623,21
+32511,1062829.905,928112.017,170893.8584,21
+32512,1065792.571,928088.5256,169449.1123,21
+32513,1067770.048,926387.5829,169626.0063,21
+32514,1067558.48,926144.7033,167892.158,21
+32515,1071033.809,925751.199,166915.7511,21
+32516,1071017.752,924455.278,166028.3178,21
+32517,1073416.336,924426.5521,164227.7145,21
+32518,1075186.807,923413.9859,164811.9516,21
+32519,1075506.566,923195.7232,162545.4487,21
+32520,1077620.21,922607.4556,161751.696,21
+32521,1079039.573,929014.8416,167693.4264,21
+32522,1081031.819,930855.5146,165639.9744,21
+32523,1082509.772,934326.9284,166626.7553,21
+32524,1079897.944,935010.7856,164591.1509,21
+32525,1083150.838,937757.4629,163925.0345,21
+32526,1080791.574,939885.0889,163120.1676,21
+32527,1082256.66,941707.3375,161574.7262,21
+32528,1081864.997,943959.0522,161970.5084,21
+32529,1081095.625,946320.6969,159955.9139,21
+32530,1082296.017,948078.2768,159618.1589,21
+32531,1082367.952,950457.3702,158338.4688,21
+32532,1081704.769,952644.0154,157043.1218,21
+32533,1081342.104,955031.1598,157192.6303,21
+32534,1082905.169,956761.2202,155399.0719,21
+32535,1081846.797,958874.426,154727.7395,21
+32536,1081971.808,961583.0319,153670.6296,21
+32537,1082006.167,964209.7597,152140.1429,21
+32538,1081910.1,966075.5654,152357.6258,21
+32539,1082409.294,968797.3028,150640.7534,21
+32540,1082023.504,970511.6623,149621.1293,21
+32541,1082036.949,973827.515,148959.837,21
+32542,1083146.249,975125.2262,147116.7254,21
+32543,1082193.659,978423.7796,147348.0424,21
+32544,1081464.467,980362.3586,145737.2204,21
+32545,1082855.107,982519.7801,144748.8404,21
+32546,1082212.698,985570.7682,143830.907,21
+32547,1082785.1,987135.8479,142164.4952,21
+32548,1082502.023,990241.0514,142495.0179,21
+32549,1081876.065,992232.6667,140458.1222,21
+32550,1083879.272,995098.6015,139856.7175,21
+32551,1081319.159,996978.1179,138897.0355,21
+32552,1083478.45,999160.9701,137331.0722,21
+32553,1080987.012,1001304.065,137601.0925,21
+32554,1082753.495,1003897.721,135638.1111,21
+32555,1081352.189,1005881.582,134997.1967,21
+32556,1081303.625,1007994.757,133988.4022,21
+32557,1081761.818,1010226.738,132564.3508,21
+32558,1081147.263,1012265.533,132556.578,21
+32559,1081083.09,1014949.256,130720.8809,21
+32560,1081295.947,1016550.221,130055.8617,21
+32561,1079838.943,1019003.04,128857.8734,21
+32562,1081299.87,1021005.457,127495.092,21
+32563,1077731.966,1023877.185,127504.5284,21
+32564,1078659.981,1025316.866,125682.9355,21
+32565,1077989.138,1027714.392,124840.5514,21
+32566,1077440.921,1029825.254,123624.3041,21
+32567,1077267.459,1032402.367,122361.9472,21
+32568,1076962.77,1033622.041,122805.1519,21
+32569,1076317.109,1036898.857,121316.4212,21
+32570,1077066.112,1038801.03,120980.7917,21
+32571,1075305.742,1040787.459,120513.0218,21
+32572,1075742.541,1042757.687,119319.2206,21
+32573,1075860.324,1045527.883,119990.5311,21
+32574,1074269.857,1047060.146,118505.7429,21
+32575,1074669.08,1049994.272,118348.3573,21
+32576,1074861.898,1051859.674,117907.3038,21
+32577,1073940.352,1053770.573,116669.6085,21
+32578,1073573.33,1056281.717,117335.8585,21
+32579,1073067.994,1058813.327,116153.5808,21
+32580,1073674.031,1060123.563,60083.08439,21
+32581,1067775.907,1056295.908,110632.19,21
+32582,1068484.775,1055212.061,53107.72636,21
+32583,1067218.599,1055305.33,53477.79623,21
+32584,1067293.972,1054593.078,53316.56228,21
+32585,1066580.3,1054157.199,53422.03272,21
+32586,1064920.408,1054426.462,53523.40668,21
+32587,1066300.367,1053490.438,115137.3947,21
+32588,1063227.252,1053380.611,53429.93066,21
+32589,1064388.236,1052851.773,53242.28894,21
+32590,1063996.146,1052676.975,53633.26121,21
+32591,1062040.664,1051794.592,53433.22889,21
+32592,1062552.859,1052105.372,53592.86051,21
+32593,1061458.653,1051416.708,53622.17132,21
+32594,1060883.631,1050976.965,53520.78836,21
+32595,1060903.277,1050733.16,53983.89755,21
+32596,1059039.323,1050112.883,53428.8894,21
+32597,1059889.677,1049995.703,53934.82046,21
+32598,1057654.074,1049325.01,53889.55788,21
+32599,1058325.934,1049218.243,53811.97628,21
+32600,1057043.445,1048807.718,54000.02482,21
+32601,1056552.099,1048073.907,53986.99552,21
+32602,1056690.513,1048383.907,54038.70281,21
+32603,1054986.352,1048970.926,54109.48539,21
+32604,1052623.555,1049233.924,54189.74201,21
+32605,1052867.268,1048314.592,54143.64793,21
+32606,1049845.079,1047876.726,54286.85196,21
+32607,1051629.45,1046799.54,54164.97779,21
+32608,1049169.014,1046825.668,54470.77522,21
+32609,1049017.433,1045823.218,54406.14795,21
+32610,1048055.193,1045147.809,54461.73144,21
+32611,1048510.594,1044023.391,54454.0793,21
+32612,1047346.014,1044037.017,54557.20182,21
+32613,1047708.241,1042740.5,54611.3835,21
+32614,1047943.079,1041779.253,54890.84541,21
+32615,1046955.333,1041464.382,54531.54817,21
+32616,1047298.298,1040686.704,55073.62377,21
+32617,1047343.677,1039230.888,54728.43142,21
+32618,1046309.538,1039066.788,55098.58615,21
+32619,1047855.945,1037644.645,54934.67127,21
+32620,1046020.83,1037282.977,55148.39652,21
+32621,1047250.464,1035967.24,55275.69599,21
+32622,1047301.286,1035586.133,55162.99857,21
+32623,1046748.54,1033993.533,55431.32892,21
+32624,1046663.966,1033722.568,55421.23862,21
+32625,1046794.509,1032863.324,55426.66552,21
+32626,1047580.458,1031385.757,55447.58535,21
+32627,1046360.618,1030765.788,55804.47593,21
+32628,1047224.053,1030297.224,55610.09009,21
+32629,1047086.057,1029111.61,55812.69709,21
+32630,1047273.882,1028468.697,55958.93695,21
+32631,1046810.448,1026694.931,55723.89077,21
+32632,1048608.473,1027036.465,56097.85392,21
+32633,1048593.228,1024986.291,56244.06995,21
+32634,1049833.683,1023884.283,55967.11016,21
+32635,1049657.896,1023078.464,56425.34427,21
+32636,1050663.268,1021855.164,56011.62516,21
+32637,1049899.437,1020763.388,56599.85884,21
+32638,1050651.862,1019052.524,56352.27559,21
+32639,1051360.018,1018402.458,56605.04336,21
+32640,1050484.285,1015352.788,56579.47343,21
+32641,1052954.597,1020758.348,167542.533,21
+32642,1050500.062,1024057.461,56259.29439,21
+32643,1052331.575,1027956.451,56353.06576,21
+32644,1052080.712,1031865.176,56467.6687,21
+32645,1054323.086,1035062.865,56033.90559,21
+32646,1053389.716,1038486.134,56575.15961,21
+32647,1055559.818,1042395.535,169314.6971,21
+32648,1055798.252,1045892.01,56312.98745,21
+32649,1056856.482,1049829.414,55749.68303,21
+32650,1057080.239,1052561.335,56211.01844,21
+32651,1058863.586,1057223.975,55924.99435,21
+32652,1059147.016,1060125.605,56203.02758,21
+32653,1059497.932,1063932.58,55954.96397,21
+32654,1061300.385,1067393.945,56015.19551,21
+32655,1061889.571,1071199.3,56142.18856,21
+32656,1062646.715,1074828.559,55863.70837,21
+32657,1063815.506,1078154.666,56289.99058,21
+32658,1064420.402,1082465.035,55908.04242,21
+32659,1064608.583,1084835.619,56421.64402,21
+32660,1067339.447,1089506.558,56559.6844,21
+32661,1065536.314,1092671.163,56348.10942,21
+32662,1069185.315,1096406.486,56723.04863,21
+32663,1068309.034,1099554.79,56277.18924,21
+32664,1070391.623,1103594.56,56743.7347,21
+32665,1070748.95,1107140.755,56460.65756,21
+32666,1071652.104,1110817.835,56560.62553,21
+32667,1072167.285,1114023.678,56476.80428,21
+32668,1073767.566,1118304.023,56718.86194,21
+32669,1075078.291,1121484.202,56472.8778,21
+32670,1074796.05,1125101.514,56714.60513,21
+32671,1076993.799,1128690.607,56616.61867,21
+32672,1076805.616,1132444.177,56387.45279,21
+32673,1077585.227,1135646.673,56947.45358,21
+32674,1078436.596,1139803.572,56552.45873,21
+32675,1079349.95,1142839.839,56604.47469,21
+32676,1079098.877,1146781.377,57038.89382,21
+32677,1080996.231,1151558.216,56592.24508,21
+32678,1080732.143,1154811.526,56837.08785,21
+32679,1081798.285,1158811.907,56816.5113,21
+32680,1082284.66,1162489.274,56956.67751,21
+32681,1083011.152,1165920.172,56768.63862,21
+32682,1083227.104,1169849.655,57009.44943,21
+32683,1084805.454,1172946.203,56897.83832,21
+32684,1084654.188,1177085.893,56971.25165,21
+32685,1085395.723,1180513.102,57088.75372,21
+32686,1086454.989,1184172.217,57093.19857,21
+32687,1086649.18,1186414.94,57110.76147,21
+32688,1087583.078,1190083.36,57071.50311,21
+32689,1088188.545,1193951.875,57243.21485,21
+32690,1088958.182,1197641.466,57090.91308,21
+32691,1088638.74,1200554.133,57356.00359,21
+32692,1090614.776,1204714.281,57233.62233,21
+32693,1089963.688,1208526.151,57373.58997,21
+32694,1091228.93,1211532.005,57419.96646,21
+32695,1092242.054,1215818.029,57277.00614,21
+32696,1091787.801,1219242.908,57435.00513,21
+32697,1094110.807,1222344.578,57612.40452,21
+32698,1093503.035,1226571.957,57379.41557,21
+32699,1094365.082,1230118.701,57613.29546,21
+32700,1097187.497,1233809.748,57695.18117,21
+32701,1282132.793,1302290.623,247250.5492,21
+32702,1295479.845,1306805.067,245860.0774,21
+32703,1295793.992,1307528.67,243294.5668,21
+32704,1301637.242,1308754.317,241121.828,21
+32705,1300288.81,1309698.326,238957.4755,21
+32706,1305461.384,1310622.131,236143.9251,21
+32707,1304622.341,1312056.926,234098.1474,21
+32708,1308934.548,1312279.428,231526.2938,21
+32709,1309801.22,1399833.334,229264.636,21
+32710,1312389.819,1349718.44,227261.4621,21
+32711,1314522.387,1365973.154,224870.6133,21
+32712,1315540.59,1369199.701,223312.5963,21
+32713,1319047.402,1371542.014,221173.6965,21
+32714,1317669.649,1374061.379,219350.8485,21
+32715,1321934.47,1373530.463,217231.8177,21
+32716,1321728.572,1376634.908,215912.3441,21
+32717,1323256.65,1378529.895,214040.3283,21
+32718,1325709.349,1377605.769,212518.1587,21
+32719,1325499.437,1379742.605,210869.5528,21
+32720,1327995.149,1380454.509,209736.9593,21
+32721,1329293.339,1380649.967,208353.9549,21
+32722,1329737.411,1382897.546,206530.6811,21
+32723,1331725.551,1383948.393,205885.4786,21
+32724,1332878.289,1384253.805,204218.2772,21
+32725,1334496.549,1386053.376,203048.7457,21
+32726,1334438.2,1387531.288,202433.5486,21
+32727,1336421.637,1387022.778,201235.0481,21
+32728,1336895.161,1389244.515,199949.2597,21
+32729,1338049.122,1389895.181,199189.6233,21
+32730,1341239.247,1390721.857,198014.6279,21
+32731,1339385.024,1391541.429,197118.0535,21
+32732,1341706.539,1392695.805,196396.1243,21
+32733,1343212.277,1392940.902,195526.3471,21
+32734,1343071.136,1393627.486,194698.3808,21
+32735,1345037.529,1395677.218,193869.3362,21
+32736,1346225.138,1395366.409,193203.9776,21
+32737,1346103.538,1397532.822,192495.5941,21
+32738,1348375.573,1396229.41,192455.5902,21
+32739,1348439.392,1398181.734,192315.1058,21
+32740,1349711.917,1398181.756,191861.0039,21
+32741,1350535.445,1399538.461,191057.7748,21
+32742,1351705.971,1400032.631,191191.4828,21
+32743,1351599.764,1400079.427,190297.914,21
+32744,1354634.963,1401940.896,190758.4298,21
+32745,1353524.92,1402184.135,189933.2042,21
+32746,1355329.108,1403361.812,190153.9634,21
+32747,1355970.599,1404338.435,190106.9693,21
+32748,1356859.641,1404543.99,189736.5112,21
+32749,1357733.701,1405795.633,191485.9609,21
+32750,1358338.472,1405692.231,191264.2054,21
+32751,1359941.498,1406030.635,191472.7018,21
+32752,1359444.619,1407171.595,191551.853,21
+32753,1361507.846,1407006.996,191680.8841,21
+32754,1361720.305,1406614.407,192761.7501,21
+32755,1362865.648,1408104.972,205671.5884,21
+32756,1362992.571,1407380.602,200030.8307,21
+32757,1365175.126,1409357.909,203064.1352,21
+32758,1364607.312,1408615.802,204885.686,21
+32759,1365591.144,1410142.673,205582.2722,21
+32760,1367133.768,1410058.621,206908.779,21
+32761,1426257.259,1469987.432,227795.3232,21
+32762,1432901.865,1475760.917,229648.5677,21
+32763,1433330.764,1476670.378,190836.3267,21
+32764,1437686.221,1479324.208,285835.7527,21
+32765,1437582.511,1478286.212,247699.437,21
+32766,1439489.449,1480699.074,157814.3713,21
+32767,1441488.205,1481761.081,162700.8161,21
+32768,1444031.496,1481436.307,288118.4884,21
+32769,1445111.087,1484718.465,268055.6566,21
+32770,1446470.364,1483576.615,277827.9803,21
+32771,1448082.378,1483611.309,173845.9444,21
+32772,1449701.981,1487041.086,179096.1141,21
+32773,1451066.646,1486098.643,308277.1576,21
+32774,1452974.096,1486937.55,291977.5473,21
+32775,1453899.024,1489012.83,268196.8478,21
+32776,1455911.126,1487428.933,281582.5557,21
+32777,1456838.569,1489636.65,281113.382,21
+32778,1458679.681,1490081.978,284261.3743,21
+32779,1459340.994,1490349.082,287327.1724,21
+32780,1462001.716,1491579.587,290831.8884,21
+32781,1462767.782,1492075.966,784285.0551,21
+32782,1464192.694,1492560.42,212799.3708,21
+32783,1465599.718,1492404.697,270777.839,21
+32784,1466106.684,1494865.505,839933.1649,21
+32785,1468980.221,1494824.948,227830.0047,21
+32786,1468746.617,1495218.642,448469.7475,21
+32787,1471232.695,1496803.031,233730.2383,21
+32788,1472126.944,1496082.517,240219.713,21
+32789,1473062.943,1497188.36,248101.5625,21
+32790,1474989.15,1497983.067,378878.0544,21
+32791,1475328.821,1498040.425,369045.8569,21
+32792,1478009.638,1498344.513,277411.3743,21
+32793,1477527.883,1499669.971,442615.0318,21
+32794,1480442.344,1498959.575,414777.1671,21
+32795,1480815.787,1499733.719,368942.0341,21
+32796,1481816.552,1500350.621,389777.1635,21
+32797,1483647.22,1500161.284,390402.7941,21
+32798,1484326.981,1501490.361,392575.846,21
+32799,1485533.516,1501348.031,397484.7376,21
+32800,1487780.486,1502705.619,396716.1704,21
+32801,1487948.727,1501622.788,409195.7106,21
+32802,1488376.563,1502162.673,408771.6058,21
+32803,1490764.8,1504097.517,942822.6674,21
+32804,1492556.765,1502203.68,317231.6745,21
+32805,1491296.118,1504698.8,376483.2476,21
+32806,1495454.842,1503104.856,1008521.309,21
+32807,1494113.647,1504610.601,337314.1099,21
+32808,1497119.89,1504547.743,626986.644,21
+32809,1496725.151,1503744.041,344169.4685,21
+32810,1499076.197,1505127.356,355329.38,21
+32811,1498740.546,1504447.719,369254.3087,21
+32812,1501233.745,1505232.144,504441.657,21
+32813,1501570.762,1505545.049,505174.2649,21
+32814,1503424.25,1505280.213,495903.2789,21
+32815,1503939.513,1505402.697,375917.6782,21
+32816,1504818.077,1506088.677,592001.5229,21
+32817,1506460.908,1506914.596,579383.3977,21
+32818,1507034.632,1505724.304,483408.6461,21
+32819,1508725.658,1507857.634,517242.704,21
+32820,1511751.859,1506190.303,516111.6025,21
+32821,1512555.462,1508837.887,515610.1686,21
+32822,1513828.503,1511624.746,518344.1457,21
+32823,1514563.798,1511459.648,521476.1062,21
+32824,1512866.417,1513275.761,523417.5635,21
+32825,1516091.11,1515274.328,526357.2085,21
+32826,1513182.736,1516593.733,529360.9723,21
+32827,1515977.92,1516979.061,531834.2026,21
+32828,1515122.449,1518158.476,533644.6206,21
+32829,1515200.856,1521921.811,537799.2351,21
+32830,1516365.791,1520435.497,539462.106,21
+32831,1515796.717,1523577.453,541980.7574,21
+32832,1516320.944,1523979.223,545302.4947,21
+32833,1515764.323,1525851.622,546309.8627,21
+32834,1517478.117,1526875.223,549002.9241,21
+32835,1516122.403,1528095.158,551517.3661,21
+32836,1517430.396,1530318.49,555901.4319,21
+32837,1516779.757,1530467.648,559842.2676,21
+32838,1517957.366,1531536.831,562035.9106,21
+32839,1518345.507,1534125.794,565198.5112,21
+32840,1517247.882,1534001.872,568890.3593,21
+32841,1518748.119,1536900.009,570690.3771,21
+32842,1518354.124,1536714.686,574511.7164,21
+32843,1518868.104,1539052.425,577207.488,21
+32844,1518382.269,1540440.458,579322.6279,21
+32845,1518912.238,1541117.136,583277.7063,21
+32846,1518804.015,1542138.96,585546.0574,21
+32847,1519060.574,1543631.771,588955.8899,21
+32848,1520708.341,1545197.008,592051.7125,21
+32849,1518670.347,1545923.712,594232.4368,21
+32850,1520857.338,1548887.916,597783.3431,21
+32851,1518795.676,1548604.671,600176.8333,21
+32852,1520163.344,1550997.788,604043.6999,21
+32853,1520491.15,1551336.667,606051.0667,21
+32854,1520079.991,1553945.343,610149.7718,21
+32855,1521202.487,1553875.239,611205.0245,21
+32856,1519835.132,1556153.26,615548.2894,21
+32857,1521132.186,1555841.218,617461.3203,21
+32858,1520587.296,1558127.672,621707.957,21
+32859,1521189.31,1559915.913,622820.624,21
+32860,1521352.046,1559466.978,626764.1722,21
+32861,1520741.647,1562624.356,628791.2396,21
+32862,1521225.353,1561824.863,631721.3802,21
+32863,1522021.608,1564883.547,635417.4737,21
+32864,1521777.614,1563704.951,636313.846,21
+32865,1522251.98,1567472.636,641075.4294,21
+32866,1521173.304,1566370.527,642058.9862,21
+32867,1522151.469,1569368.686,646395.8063,21
+32868,1522084.364,1568517.557,647188.9225,21
+32869,1522162.969,1571334.572,652516.2172,21
+32870,1522447.149,1571549.511,652496.3165,21
+32871,1522034.241,1572866.636,656642.0651,21
+32872,1523260.62,1573963.146,659009.8503,21
+32873,1522608.142,1575457.265,660841.8325,21
+32874,1522134.022,1575214.058,665327.8913,21
+32875,1522579.318,1578702.499,665847.3851,21
+32876,1524733.757,1576749.972,670147.1502,21
+32877,1521238.327,1579328.669,671517.6614,21
+32878,1524082.807,1579945.623,674971.426,21
+32879,1523163.359,1580181.752,676218.6198,21
+32880,1522568.442,1580171.669,680015.3973,21
+32881,1531864.247,1591836.008,692750.5786,21
+32882,1533147.619,1594205.566,697151.873,21
+32883,1533636.511,1595116.8,699555.2775,21
+32884,1535156.769,1598253.083,702896.4585,21
+32885,1535781.677,1599228.382,705008.0089,21
+32886,1536252.166,1600282.856,701890.8545,21
+32887,1537435.083,1603014.883,716284.5391,21
+32888,1537355.602,1603473.164,710023.7675,21
+32889,1538740.091,1605441.899,1364333.724,21
+32890,1539273.492,1606327.959,606422.7939,21
+32891,1540217.308,1607393.051,638179.6403,21
+32892,1539746.829,1609512.782,1425256.513,21
+32893,1541808.058,1611413.399,620681.7417,21
+32894,1540852.096,1611534.185,643617.9219,21
+32895,1543248.894,1613010.602,1460202.103,21
+32896,1542901.013,1614732.725,632681.1598,21
+32897,1543126.322,1617014.413,1075165.011,21
+32898,1544938.429,1616655.841,631859.8673,21
+32899,1543657.912,1619393.849,639973.5271,21
+32900,1546781.167,1619821.039,639414.2424,21
+32901,1545585.769,1621332.663,846976.8822,21
+32902,1547094.057,1623731.145,963458.8168,21
+32903,1546595.324,1623835.825,638582.3317,21
+32904,1547536.852,1624385.042,647325.2222,21
+32905,1548477.076,1627523.718,656998.887,21
+32906,1549865.257,1628915.616,832842.245,21
+32907,1549004.974,1628604.119,785833.8668,21
+32908,1549816.276,1630856.088,788794.8015,21
+32909,1551445.634,1632104.452,756939.7346,21
+32910,1551582.235,1632774.099,818516.5085,21
+32911,1550500.402,1635822.867,773026.2914,21
+32912,1552803.745,1635555.83,784175.2514,21
+32913,1552081.26,1636322.709,781541.6611,21
+32914,1554753.532,1639002.3,784783.1626,21
+32915,1552165.623,1639633.861,1461956.208,21
+32916,1556257.406,1641050.706,661551.7414,21
+32917,1553726.225,1641194.249,696551.3321,21
+32918,1555400.679,1643958.649,1514697.248,21
+32919,1556003.527,1645150.614,674327.2074,21
+32920,1557343.057,1645271.731,697595.9525,21
+32921,1556637.098,1647022.495,1545287.946,21
+32922,1557981.644,1648728.131,682834.1296,21
+32923,1557419.1,1649250.789,708036.1884,21
+32924,1559758.173,1651704.22,1565590.872,21
+32925,1558423.84,1650972.279,695374.0285,21
+32926,1559513.319,1654200.57,1177447.232,21
+32927,1560665.775,1654368.098,690320.683,21
+32928,1560304.14,1655728.898,695445.7344,21
+32929,1562245.259,1657580.826,694825.0782,21
+32930,1560702.212,1657222.47,919762.4517,21
+32931,1562282.331,1659689.479,1044212.51,21
+32932,1561989.042,1660657.794,690136.9282,21
+32933,1563735.067,1662063.934,698543.3736,21
+32934,1564253.151,1662388.632,709713.5869,21
+32935,1562753.631,1665027.055,890211.7662,21
+32936,1565097.017,1665218.132,849045.4405,21
+32937,1565821.188,1665879.584,843942.2872,21
+32938,1565160.183,1669224.699,840648.4041,21
+32939,1566225.538,1667797.133,835087.5063,21
+32940,1566412.419,1670198.351,834781.0495,21
+32941,1567417.668,1670379.588,834395.0922,21
+32942,1568684.045,1670494.264,838733.6923,21
+32943,1570036.042,1668449.645,839892.8842,21
+32944,1569044.277,1669816.338,1538058.513,21
+32945,1572800.87,1667640.563,717378.0663,21
+32946,1569845.34,1668577.455,750400.7215,21
+32947,1571742.464,1666710.035,1597235.778,21
+32948,1572868.756,1666460.907,736897.6527,21
+32949,1572737.79,1665252.265,754229.5048,21
+32950,1574605.434,1665180.841,1632474.472,21
+32951,1573198.834,1664729.569,754477.7686,21
+32952,1575035.866,1663024.273,767774.0525,21
+32953,1576224.485,1663542.316,1659985.385,21
+32954,1575168.264,1662182.343,773216.2909,21
+32955,1577261.52,1661995.411,780434.0096,21
+32956,1576657.52,1660130.511,1685689.952,21
+32957,1577745.911,1660782.214,791898.6493,21
+32958,1578440.449,1659157.965,796062.6615,21
+32959,1578499.741,1658402.143,1709544.28,21
+32960,1580725.607,1658860.466,808637.6471,21
+32961,1579001.081,1656370.98,1326010.594,21
+32962,1580206.909,1657453.011,803524.8387,21
+32963,1581852.9,1655196.023,814523.6048,21
+32964,1581174.03,1655321.165,851330.4404,21
+32965,1583113.532,1654256.636,935703.892,21
+32966,1581669.657,1654705.624,892977.7205,21
+32967,1584482.214,1651246.925,1069050.364,21
+32968,1582661.374,1652904.828,1170718.872,21
+32969,1585669.332,1651248.181,821694.7559,21
+32970,1583538.713,1650567.528,831575.878,21
+32971,1586546.112,1649523.389,1043707.817,21
+32972,1585848.216,1649703.604,1010909.114,21
+32973,1586747.61,1647863.565,1180298.532,21
+32974,1586528.036,1647745.13,829463.9844,21
+32975,1587971.73,1646513.332,841294.4057,21
+32976,1588775.929,1645867.06,853255.428,21
+32977,1587531.226,1645604.4,1002747.517,21
+32978,1589958.716,1643952.726,946278.6623,21
+32979,1590475.579,1643680.656,954078.5105,21
+32980,1590278.327,1641968.249,954723.2425,21
+32981,1589922.388,1642208.833,952902.2627,21
+32982,1593290.03,1640890.646,955766.7873,21
+32983,1590204.933,1640646.488,958240.3161,21
+32984,1593513.887,1639212.632,1717937.574,21
+32985,1592691.206,1638970.563,880181.1229,21
+32986,1594199.643,1636991.542,890842.2953,21
+32987,1594422.425,1636967.106,1775275.786,21
+32988,1594492.495,1636504.391,899992.9516,21
+32989,1595621.595,1634764.655,908379.6803,21
+32990,1595768.977,1634653.882,1806918.144,21
+32991,1596312.246,1633909.471,918940.998,21
+32992,1597050.891,1632888.016,1428635.049,21
+32993,1597090.755,1631827.841,912527.4134,21
+32994,1597702.938,1630611.685,924071.9712,21
+32995,1599379.757,1629959.878,968535.5787,21
+32996,1598627.879,1629151.974,1236389.368,21
+32997,1599596.671,1627656.852,926611.825,21
+32998,1599917.476,1626321.059,934441.4125,21
+32999,1601810.707,1624985.625,943001.6257,21
+33000,1599072.325,1623097.1,1089484.105,15.6
+33001,0,0,0,15.6
+33002,0,0,0,15.6
+33003,0,0,0,15.6
+33004,0,0,0,15.6
+33005,426410.2354,0,0,15.6
+33006,0,0,1601039.244,15.6
+33007,0,0,0,15.6
+33008,0,0,0,15.6
+33009,0,0,0,15.6
+33010,0,0,0,15.6
+33011,0,0,0,15.6
+33012,76869.42237,7.344864109,0,15.6
+33013,10280.40528,0,814241.5542,15.6
+33014,18028.19485,7.480940201,0,15.6
+33015,30470.59454,0,0,15.6
+33016,24738.62966,7.574351221,842914.9961,15.6
+33017,25675.37239,0,0,15.6
+33018,25911.63036,7.714811927,0,15.6
+33019,26300.99173,0,847236.0482,15.6
+33020,582546.0028,7.623421979,0,15.6
+33021,27145.7779,0,0,15.6
+33022,106665.5211,7.40560276,847844.2218,15.6
+33023,234926.6982,0,0,15.6
+33024,165884.7234,7.102057085,0,15.6
+33025,178816.1979,0,847890.509,15.6
+33026,181932.0707,4.249331529,201.9799618,15.6
+33027,184155.5732,0,0,15.6
+33028,186378.1161,4.214116112,0,15.6
+33029,188119.5574,0,0,15.6
+33030,190532.4522,7.020077927,0,15.6
+33031,192771.1259,0,0,15.6
+33032,194618.3189,7.369733719,0,15.6
+33033,196184.2713,0,0,15.6
+33034,198414.7811,0,0,15.6
+33035,200018.0686,65.34684444,0,15.6
+33036,202052.2461,0,0,15.6
+33037,203598.9557,0,0,15.6
+33038,205474.1977,0,0,15.6
+33039,206690.8631,0,0,15.6
+33040,208948.2482,0,0,15.6
+33041,209873.2741,0,1587591.802,15.6
+33042,181026.8712,0,0,15.6
+33043,182495.391,0,0,15.6
+33044,267025.2438,0,0,15.6
+33045,210309.5096,0,0,15.6
+33046,208156.2142,0,0,15.6
+33047,224278.9553,0,0,15.6
+33048,219898.9654,0,0,15.6
+33049,221985.3276,0,0,15.6
+33050,31836.23494,0,13702.87906,15.6
+33051,31884.653,0,16707.41205,15.6
+33052,32092.05582,0,325383.3169,15.6
+33053,695139.408,0,306378.7699,15.6
+33054,94382.19462,0,16276.13546,15.6
+33055,174854.9863,0,19421.27948,15.6
+33056,279005.6801,0,16430.39674,15.6
+33057,225927.9709,0,305615.0369,15.6
+33058,232677.6609,0,287974.3287,15.6
+33059,234033.0887,0,16240.57601,15.6
+33060,235202.7504,0,19188.85019,15.6
+33061,237338.4268,0,22620.1861,15.6
+33062,238521.6956,231.8181945,271702.8477,15.6
+33063,240398.0229,0,221409.7604,15.6
+33064,241062.4718,0,221953.3466,15.6
+33065,242302.0605,0,721119.6052,15.6
+33066,243849.0423,0,16745.34478,15.6
+33067,244374.0417,0,143310.6472,15.6
+33068,246219.3523,0,747939.449,15.6
+33069,246607.6127,0,17087.56709,15.6
+33070,248380.7477,0,134761.4156,15.6
+33071,248885.101,0,752538.4788,15.6
+33072,250148.268,0,17396.4907,15.6
+33073,251599.8814,429247.585,133593.9468,15.6
+33074,217256.2453,0,753614.9432,15.6
+33075,218513.7401,0,17678.82521,15.6
+33076,306872.0971,0,358364.2101,15.6
+33077,259197.1995,0,1004007.379,15.6
+33078,242556.3309,0,20862.18349,15.6
+33079,263110.7568,0,0,15.6
+33080,258113.4429,0,0,15.6
+33081,259583.0992,0,0,15.6
+33082,259601.8666,0,0,15.6
+33083,35598.75154,427834.6243,0,15.6
+33084,35678.8282,0,0,15.6
+33085,35763.68511,0,0,15.6
+33086,771491.0602,0,0,15.6
+33087,225091.29,0,0,15.6
+33088,129514.5948,0,0,15.6
+33089,344720.5582,0,0,15.6
+33090,260907.3624,0,0,15.6
+33091,268405.507,0,0,15.6
+33092,270052.0803,0,0,15.6
+33093,270955.4795,427720.9385,0,15.6
+33094,271271.6241,0,0,15.6
+33095,272194.7089,31602.56329,0,15.6
+33096,272742.1301,5120.446331,0,15.6
+33097,273479.3613,5495.124472,0,15.6
+33098,274273.5631,15562.08828,0,15.6
+33099,274792.1077,11660.89005,0,15.6
+33100,275805.1956,12117.72171,0,15.6
+33101,276021.0873,12504.11562,0,15.6
+33102,277119.2309,12769.7958,0,15.6
+33103,277767.3266,440646.0627,0,15.6
+33104,278084.0307,13234.70418,0,15.6
+33105,278864.8981,13470.40903,0,15.6
+33106,242155.2025,13698.05453,686546.6535,15.6
+33107,243281.1031,13965.23239,0,15.6
+33108,332377.4391,14142.53348,0,15.6
+33109,289724.1392,14419.3808,714191.2503,15.6
+33110,269745.4073,14639.91903,0,15.6
+33111,286620.0534,14842.40539,0,15.6
+33112,284627.2021,15119.53842,722583.2195,15.6
+33113,283867.5256,442910.157,992330.4339,15.6
+33114,284590.9717,15548.91656,0,15.6
+33115,285570.9607,15753.84493,715100.1114,15.6
+33116,38179.63263,16013.9674,0,15.6
+33117,38219.3942,16201.41948,0,15.6
+33118,38313.66582,16473.12044,0,15.6
+33119,821509.2643,16617.91997,0,15.6
+33120,313515.2833,16881.59016,0,15.6
+33121,106839.1811,17254.08509,0,15.6
+33122,386431.3907,17344.79701,0,15.6
+33123,288438.2483,445024.2922,0,15.6
+33124,297094.8951,17711.50671,0,15.6
+33125,298925.1703,0,0,15.6
+33126,300590.8586,0,0,15.6
+33127,302275.5027,0,0,15.6
+33128,303855.1635,0,0,15.6
+33129,305052.9715,72288.21539,0,15.6
+33130,306644.9557,0,0,15.6
+33131,308088.9902,9091.217441,0,15.6
+33132,310087.8886,27252.22574,0,15.6
+33133,311418.0796,444779.9181,692531.1606,15.6
+33134,312960.9169,18996.6251,0,15.6
+33135,314310.203,19160.35776,0,15.6
+33136,316010.8336,19229.47184,719943.247,15.6
+33137,317620.8788,19385.07221,0,15.6
+33138,276887.8393,19523.94802,0,15.6
+33139,279053.6112,19621.96799,727985.8916,15.6
+33140,370178.0643,19732.72607,0,15.6
+33141,335191.8794,19863.78148,0,15.6
+33142,323153.5162,19976.54677,732935.2798,15.6
+33143,323173.4577,447512.1412,3.709887061,15.6
+33144,331466.9614,20209.38327,133620.1956,15.6
+33145,329741.1372,20335.9658,753386.4324,15.6
+33146,331721.7689,20447.36334,21013.27954,15.6
+33147,332051.5211,20528.85122,137434.5419,15.6
+33148,334574.7106,20656.67124,754041.4895,15.6
+33149,43542.38001,20790.78951,1037695.149,15.6
+33150,43822.66147,20866.03543,132428.465,15.6
+33151,806950.3413,21018.02774,741058.4423,15.6
+33152,343348.1485,21101.54731,22074.75931,15.6
+33153,223329.8831,448619.4489,133319.8991,15.6
+33154,400775.9227,21317.74011,742696.6086,15.6
+33155,342909.5969,21426.08747,22786.89235,15.6
+33156,347028.0162,21669.86676,134187.9699,15.6
+33157,348754.4406,21809.44204,744259.2281,15.6
+33158,350123.9801,21862.56235,23443.55546,15.6
+33159,351706.244,0,135001.0612,15.6
+33160,352661.582,0,745703.3657,15.6
+33161,354402.2521,0,24049.93145,15.6
+33162,355207.4843,79600.79204,135783.0453,15.6
+33163,357392.1336,429678.17,747064.7711,15.6
+33164,358421.3137,15080.28789,24604.48708,15.6
+33165,359604.882,29652.37111,136516.2844,15.6
+33166,361651.2119,21423.04243,748327.1674,15.6
+33167,362170.6292,22793.28087,25124.60749,15.6
+33168,363948.9084,22816.60414,137226.177,15.6
+33169,365626.1497,22969.74434,749529.9157,15.6
+33170,319759.1767,23091.51001,25611.4968,15.6
+33171,321026.6737,23119.47444,137896.943,15.6
+33172,412519.9046,23330.08288,750657.4018,15.6
+33173,387907.6784,450625.3965,133.1234158,15.6
+33174,375807.1255,342952.0394,0,15.6
+33175,370625.6964,54527.24842,729518.7568,15.6
+33176,376555.7035,77098.31186,129.8534647,15.6
+33177,377968.7328,144677.6955,0,15.6
+33178,377240.3632,131488.6423,733761.741,15.6
+33179,380047.412,122679.7383,130.9717988,15.6
+33180,380429.1511,127825.2075,0,15.6
+33181,48650.34264,127983.189,737854.7615,15.6
+33182,48612.41268,127967.3968,138.2525235,15.6
+33183,858386.8422,555490.2072,0,15.6
+33184,430344.1556,128480.7677,741802.5586,15.6
+33185,292775.9072,128604.4411,142.3460198,15.6
+33186,411374.278,128434.0386,1158378.87,15.6
+33187,392926.2387,129344.4271,726140.0562,15.6
+33188,384719.2296,129166.8262,136.8805433,15.6
+33189,385103.7435,129182.9405,0,15.6
+33190,385629.1531,129438.7914,730562.8423,15.6
+33191,386031.9967,129890.2593,138.1043104,15.6
+33192,386156.1702,105800.261,0,15.6
+33193,387208.331,533205.1391,734825.4209,15.6
+33194,386444.8529,106350.6892,134.6810926,15.6
+33195,388109.3878,194637.0237,0,15.6
+33196,387531.7521,111852.841,738899.0779,15.6
+33197,388501.6528,119364.8265,135.7127567,15.6
+33198,388620.5353,139927.5773,0,15.6
+33199,389152.93,129809.8806,742815.9013,15.6
+33200,389818.368,132609.2021,133.6082365,15.6
+33201,389516.3462,132938.4602,0,15.6
+33202,341231.0126,132803.0763,746547.0993,15.6
+33203,340976.4947,560158.9493,135.8541293,15.6
+33204,431738.4072,24113.93001,0,15.6
+33205,411632.6416,24046.80785,750137.3182,15.6
+33206,395655.4696,24091.07923,133.5020166,15.6
+33207,393754.0753,24048.04079,0,15.6
+33208,391558.3805,24070.96497,753561.2308,15.6
+33209,394928.8707,23927.50838,134.9204388,15.6
+33210,393878.6836,23885.53507,0,15.6
+33211,394143.593,23858.0701,756859.0619,15.6
+33212,394068.7527,23928.64785,132.2244778,15.6
+33213,50041.89838,893382.2138,0,15.6
+33214,50108.64899,23816.04773,760007.0009,15.6
+33215,862494.9241,78851.7047,133.0607346,15.6
+33216,446995.2601,159661.9056,0,15.6
+33217,345083.6596,142244.4157,763044.6244,15.6
+33218,398256.6583,129138.9274,118.5591817,15.6
+33219,413914.8952,134361.345,0,15.6
+33220,398368.4777,134327.3461,765925.0226,15.6
+33221,398046.2435,134192.563,132.9173654,15.6
+33222,398607.7405,134180.6924,0,15.6
+33223,398828.4653,561420.1889,1853835.084,15.6
+33224,399433.5005,133997.3689,115.1919488,15.6
+33225,399646.8536,110564.8456,0,15.6
+33226,400002.9987,110626.3447,754951.5263,15.6
+33227,400153.4435,110234.0203,118.6793903,15.6
+33228,400589.8624,197988.2071,0,15.6
+33229,401321.3722,116145.9044,758178.7561,15.6
+33230,400974.9002,121828.5599,115.0007442,15.6
+33231,401557.8476,143856.5813,0,15.6
+33232,402091.105,132582.9651,761258.4191,15.6
+33233,402175.907,560912.8356,115.7667247,15.6
+33234,351903.3138,134273.92,0,15.6
+33235,351935.139,134155.2195,764228.1436,15.6
+33236,443414.6598,134674.7277,113.1980993,15.6
+33237,425605.8833,135290.3738,0,15.6
+33238,405659.718,134645.4519,767057.6232,15.6
+33239,410076.6199,134807.6349,114.4390705,15.6
+33240,401644.6183,134864.8439,0,15.6
+33241,406862.7782,134147.4616,769742.5708,15.6
+33242,405447.9755,134098.8922,141.4572472,15.6
+33243,405095.922,450246.6592,0,15.6
+33244,405824.724,23191.79661,772218.0942,15.6
+33245,51260.19778,23196.08539,159.108226,15.6
+33246,51369.70435,23090.3857,0,15.6
+33247,863802.8133,23006.79258,774575.6401,15.6
+33248,463561.1686,22892.38188,158.9851401,15.6
+33249,385822.3612,22882.14026,0,15.6
+33250,387810.4983,22767.02311,776803.3119,15.6
+33251,430588.8208,22686.19498,159.2702252,15.6
+33252,407872.5142,457960.4881,0,15.6
+33253,408534.2492,449375.0014,778947.1154,15.6
+33254,407964.7574,74339.28534,154.6338705,15.6
+33255,408371.616,147131.1116,0,15.6
+33256,408221.1952,138554.5023,780980.6971,15.6
+33257,408633.7394,120408.7643,26235.81513,15.6
+33258,408354.045,103765.0063,166680.7437,15.6
+33259,408647.0841,103292.0893,811382.3344,15.6
+33260,408859.8217,102530.2601,33859.09976,15.6
+33261,408909.3401,183834.7805,1277337.004,15.6
+33262,408364.3073,103994.8481,791398.122,15.6
+33263,409339.6057,539518.3071,34063.99688,15.6
+33264,408993.8013,130512.1935,158899.9237,15.6
+33265,409063.0785,119918.7342,790843.2361,15.6
+33266,357855.0527,120464.4636,34998.01367,15.6
+33267,357476.0837,120414.429,159020.3624,15.6
+33268,449725.0073,119277.2881,790333.3628,15.6
+33269,432568.7311,118888.4478,35889.47368,15.6
+33270,409596.6751,118245.9774,159160.7782,15.6
+33271,416459.4303,117203.818,789862.9258,15.6
+33272,407510.9222,117005.598,36711.69369,15.6
+33273,411341.9397,543006.5128,159288.1641,15.6
+33274,411126.7985,115444.3782,789385.7454,15.6
+33275,410606.9435,114708.594,37477.12928,15.6
+33276,409687.4506,114688.4521,159428.0845,15.6
+33277,51953.96034,112791.352,788943.6128,15.6
+33278,51973.30411,113672.9439,38175.8188,15.6
+33279,864379.548,111815.831,159571.5939,15.6
+33280,475521.2871,111435.8395,788495.9562,15.6
+33281,402953.6474,110704.4403,38852.18768,15.6
+33282,383090.5748,20114.85133,159723.1431,15.6
+33283,437112.4773,446702.7316,788103.5644,15.6
+33284,412121.5722,19941.2114,39492.90083,15.6
+33285,411505.0151,19804.08417,159869.0594,15.6
+33286,412222.3262,19760.91296,747918.5354,15.6
+33287,411741.3199,19635.76615,111.0870633,15.6
+33288,411419.2783,19550.58589,0,15.6
+33289,412366.5487,19441.47297,751113.028,15.6
+33290,411590.0022,19403.45721,106.7603111,15.6
+33291,412583.2391,0,0,15.6
+33292,411429.0007,0,754149.8247,15.6
+33293,412539.9863,426655.3074,106.2111615,15.6
+33294,412253.3602,70691.62542,0,15.6
+33295,411914.849,0,757070.4245,15.6
+33296,412360.7106,10096.34803,101.6208832,15.6
+33297,412693.5281,26610.84252,0,15.6
+33298,359540.2518,17021.47545,759849.9294,15.6
+33299,361149.0323,18433.73717,1088941.291,15.6
+33300,452581.449,18276.19955,0,15.6
+33301,435754.8085,18287.63446,746173.7223,15.6
+33302,413388.5677,18325.38436,0,15.6
+33303,421957.5413,444997.1532,0,15.6
+33304,413285.706,18361.80106,0,15.6
+33305,416504.569,18396.1006,0,15.6
+33306,417683.5034,18527.07981,0,15.6
+33307,416566.4814,18448.43688,0,15.6
+33308,418002.9567,18525.78125,0,15.6
+33309,53173.37367,18541.75437,0,15.6
+33310,53187.28845,18556.40095,0,15.6
+33311,865746.2783,18633.54177,0,15.6
+33312,493619.3262,18590.51832,0,15.6
+33313,434346.9342,445243.9924,0,15.6
+33314,378476.7783,18685.52443,0,15.6
+33315,453034.3794,18698.06912,0,15.6
+33316,423525.6315,18755.53866,0,15.6
+33317,424399.8697,18771.36072,0,15.6
+33318,424360.1782,18848.0974,0,15.6
+33319,424639.973,18805.29832,0,15.6
+33320,425870.1187,18877.07144,0,15.6
+33321,426514.7022,18899.73122,0,15.6
+33322,426032.7202,18926.65361,0,15.6
+33323,427659.9533,445465.1071,0,15.6
+33324,428195.0537,0,0,15.6
+33325,428026.2727,0,0,15.6
+33326,429774.741,0,0,15.6
+33327,429210.6406,69881.50711,0,15.6
+33328,430790.7144,0,0,15.6
+33329,430521.7609,11070.71281,0,15.6
+33330,377020.3866,26895.54799,0,15.6
+33331,377159.9683,17767.0643,0,15.6
+33332,471793.3199,19224.70153,0,15.6
+33333,457334.014,445828.5775,0,15.6
+33334,430272.4618,19330.33093,0,15.6
+33335,445860.4083,19477.29864,722242.2626,15.6
+33336,435326.8637,19351.42529,0,15.6
+33337,434850.018,19524.75599,0,15.6
+33338,437462.1878,19472.12871,1812556.574,15.6
+33339,438072.155,19512.47247,0,15.6
+33340,436657.2201,19573.9832,0,15.6
+33341,55728.44304,19596.29815,740012.0429,15.6
+33342,55799.85117,19645.36314,0,15.6
+33343,868254.4001,446029.8652,0,15.6
+33344,532645.3718,19706.56817,744342.2197,15.6
+33345,486069.8662,19721.79173,0,15.6
+33346,382934.8548,19714.85508,0,15.6
+33347,475879.0904,19803.79142,748069.1579,15.6
+33348,445966.646,19799.82196,0,15.6
+33349,444031.7325,19838.17908,0,15.6
+33350,444665.598,330902.246,751554.9705,15.6
+33351,463412.9734,41566.34053,3.899138051,15.6
+33352,445694.3561,71528.82791,0,15.6
+33353,448277.7916,540219.9468,754902.9075,15.6
+33354,449258.6623,124186.8214,4.234795255,15.6
+33355,792883.4011,104454.1273,0,15.6
+33356,450446.0459,110482.0794,758092.7986,15.6
+33357,452646.2988,90714.73473,5.130974671,15.6
+33358,452934.4595,90601.64774,0,15.6
+33359,453516.2101,90883.52432,761173.0541,15.6
+33360,453959.8766,164932.4847,5.409623089,17.8
+33361,1111973.218,1372220.959,388927.4881,17.8
+33362,900601.9593,837285.2552,992395.0133,17.8
+33363,979143.8412,654703.509,123441.0226,17.8
+33364,651215.1736,308527.0263,224559.9486,17.8
+33365,797658.5275,462580.5985,867491.5866,17.8
+33366,780257.8922,368075.61,117578.6712,17.8
+33367,758650.5022,373437.1771,481938.85,17.8
+33368,759409.3078,375394.209,1299034.251,17.8
+33369,758857.9406,374931.9854,575574.3752,17.8
+33370,758081.2262,375497.8588,684755.8579,17.8
+33371,757371.6793,375627.1214,762545.4352,17.8
+33372,756947.9546,376437.8316,766013.0076,17.8
+33373,127519.8125,802943.2323,965182.5103,17.8
+33374,939779.0506,377034.7428,703410.4009,17.8
+33375,793319.609,377884.6376,734719.9427,17.8
+33376,699003.4297,378644.3151,758381.1802,17.8
+33377,774168.375,378858.0038,2085898.872,17.8
+33378,755110.8982,380413.5758,741034.4953,17.8
+33379,753886.2657,380238.3771,725324.3954,17.8
+33380,753896.3339,76429.02985,731154.5329,17.8
+33381,726871.4007,76562.02774,787509.1737,17.8
+33382,726116.1606,76655.92846,993838.7896,17.8
+33383,786903.8269,1489208.026,742745.8591,17.8
+33384,737768.0281,244258.1698,753548.5232,17.8
+33385,742639.5383,270514.4158,798166.3706,17.8
+33386,748178.9215,470727.5614,763882.5126,17.8
+33387,744449.6514,376728.2033,830206.4039,17.8
+33388,744834.3246,388722.9675,776321.5309,17.8
+33389,744539.151,389423.8136,782978.2754,17.8
+33390,743311.4612,326987.8624,791504.7741,17.8
+33391,744672.0175,313627.6952,682623.0721,17.8
+33392,743178.7216,441729.5887,689002.0715,17.8
+33393,984575.8725,800351.0607,1439531.324,17.8
+33394,760941.8283,380495.375,1012132.72,17.8
+33395,754142.482,382274.0593,868531.4177,17.8
+33396,740836.8566,385364.1867,1632467.914,17.8
+33397,741332.595,384039.2496,895993.409,17.8
+33398,744481.3267,385895.3939,262815.7673,17.8
+33399,742955.1592,422111.8888,945864.9781,17.8
+33400,742347.0632,389501.4728,165187.611,17.8
+33401,743058.2097,398275.6375,261284.8885,17.8
+33402,743009.7652,408445.0837,946590.1406,17.8
+33403,742186.4655,829846.1494,166335.255,17.8
+33404,125093.9539,406113.4293,261367.5102,17.8
+33405,937424.8917,407279.3258,946742.6553,17.8
+33406,781530.2883,408132.4264,1641930.449,17.8
+33407,698769.1621,409784.5918,772705.7606,17.8
+33408,769255.4429,410876.8741,1617353.332,17.8
+33409,752133.6783,412176.7186,987922.8947,17.8
+33410,751231.3503,412652.8232,908612.9443,17.8
+33411,750985.1033,415128.0049,1714280.521,17.8
+33412,751537.7705,415319.1372,2081149.628,17.8
+33413,716500.4086,507859.8714,920285.5405,17.8
+33414,716746.9088,81816.25383,1705171.886,17.8
+33415,718025.8881,969559.6728,936749.1486,17.8
+33416,786561.7164,243118.6347,942859.8935,17.8
+33417,751389.6426,421435.2724,1737416.764,17.8
+33418,731649.7383,444205.3521,958265.7683,17.8
+33419,749030.8586,425199.6982,963957.676,17.8
+33420,744216.2286,427230.2671,1766156.091,20
+33421,2317790.202,2612544.925,3256948.239,20
+33422,2326251.563,1216077.889,3060636.034,20
+33423,2027864.773,1171543.257,2957671.696,20
+33424,884469.6112,1086939.476,1378463.752,20
+33425,1091067.339,1071680.619,1309470.273,20
+33426,1568795.913,886084.7937,2239626.137,20
+33427,1182047.902,942166.9489,1425073.405,20
+33428,1238979.683,927954.4666,1357978.811,20
+33429,1240736.413,884967.4094,2131386.267,20
+33430,1232930.696,1246971.03,1381600.78,20
+33431,1566586.672,934331.2022,1371602.517,20
+33432,1224723.252,876812.822,2137497.896,20
+33433,1220781.275,1311129.649,1382178.083,20
+33434,1221179.744,881229.7838,1381480.801,20
+33435,200055.0243,875289.2071,2148065.426,20
+33436,1244997.74,872375.312,231950.7599,20
+33437,1272957.662,866504.0638,333137.8729,20
+33438,1274933.129,864295.1028,989705.265,20
+33439,1240824.046,859297.6224,2581876.686,20
+33440,1185325.416,856292.8462,1755270.616,20
+33441,1211532.797,852479.3292,1824071.833,20
+33442,1208289.553,848632.8066,1423109.812,20
+33443,1200600.245,1272842.39,1380843.836,20
+33444,1199787.929,840481.3011,2103994.497,20
+33445,1198222.22,159275.1358,1353732.062,20
+33446,1148827.179,158869.4446,1357186.839,20
+33447,1146000.04,1243516.578,3197122.117,20
+33448,1219135.787,745906.0277,1335854.658,20
+33449,1216968.875,800051.6172,1338143.42,20
+33450,1193387.517,925002.8732,2101179.013,20
+33451,1195529.701,805509.0469,1350042.116,20
+33452,1185320.451,813021.0928,1352487.259,20
+33453,1190281.825,1128061.948,2119895.827,20
+33454,1186663.268,692863.5172,1361688.528,20
+33455,1040541.804,924031.3582,1139842.154,20
+33456,1233983.779,812864.5086,1914825.672,20
+33457,1161206.566,787071.4754,1488921.41,20
+33458,1190140.118,810850.0447,1422099.605,20
+33459,1182651.638,801751.158,2139829.097,20
+33460,1182728.858,796382.2348,1380670.47,20
+33461,1178456.206,762452.3183,1370025.523,20
+33462,1179263.798,759116.2642,2157159.709,20
+33463,1178259.41,1178498.439,1379095.5,20
+33464,1177482.918,844027.9497,1375841.477,20
+33465,1175418.586,765779.6475,2163025.985,20
+33466,190565.5757,778572.7796,1379420.032,20
+33467,1199595.797,779252.4963,1381123.655,20
+33468,1262661.15,774485.9319,2166785.551,20
+33469,1589668.841,772005.1442,223579.2778,20
+33470,1166338.256,769590.2932,331944.1517,20
+33471,1156676.442,765543.5958,1002380.076,20
+33472,1185969.438,764753.8417,2650637.402,20
+33473,1172171.703,1187378.273,1712645.448,20
+33474,1172969.043,758188.0325,1815341.147,20
+33475,1170286.289,756553.9607,1442525.03,20
+33476,1170652.666,753418.7294,1361324.418,20
+33477,1170354.039,142242.6547,2107304.33,20
+33478,1121382.951,141573.7504,1345770.897,20
+33479,1121875.397,1226544.838,1347468.844,20
+33480,1194753.625,521823.6953,2124977.427,21
+33481,2319032.545,2967652.885,4663035.285,21
+33482,2326222.531,2508813.303,3397388.704,21
+33483,945398.358,731486.285,2147981.499,21
+33484,1309764.816,909073.769,1602855.765,21
+33485,1354787.445,1272588.049,2165151.167,21
+33486,1270838.074,1046821.318,2532406.303,21
+33487,1269098.912,1071514.024,1832250.839,21
+33488,1262713.675,1067615.505,1831984.517,21
+33489,1259860.252,1045103.852,2600830.087,21
+33490,1254925.052,1056847.866,1839388.67,21
+33491,1251133.72,1049601.325,1834396.599,21
+33492,1248838.24,1470359.858,2617980.4,21
+33493,1243604.959,1046830.524,1840407.561,21
+33494,1241189.602,1042205.463,1834157.483,21
+33495,1239043.104,1041930.394,2624445.053,21
+33496,1237476.319,1038712.024,1836124.804,21
+33497,1232251.745,1037092.704,1831696.616,21
+33498,1230785.853,1036662.268,2625096.638,21
+33499,1229132.429,1034228.425,1832058.216,21
+33500,1224660.986,1032661.287,1830688.46,21
+33501,1223292.778,1032013.518,2624202.436,21
+33502,1220607.397,1455111.758,1829123.563,21
+33503,1218758.31,1029996.887,1826302.005,21
+33504,1216664.901,1027648.186,2625984.719,21
+33505,1213810.144,1025552.513,1823675.441,21
+33506,1212399.573,1025841.242,1823044.774,21
+33507,1209688.785,1023803.592,2623383.881,21
+33508,1207996.755,1023516.638,1820453.689,21
+33509,1205436.295,1022234.237,1820379.582,21
+33510,1204758.713,1020438.341,2621896.829,21
+33511,1201954.363,1019135.507,1816715.827,21
+33512,1199707.466,1445258.929,1817143.945,21
+33513,1198761.02,1016340.886,2619571.46,21
+33514,1197028.525,1016906.562,1812873.739,21
+33515,1194571.726,1016308.062,1814022.972,21
+33516,1193766.231,1014596.294,2617159.718,21
+33517,1192024.107,1013753.924,1809648.489,21
+33518,1189814.17,1014437.209,1812262.581,21
+33519,1189341.582,1011717.539,2613359.294,21
+33520,1185077.562,1013031.776,1809049.89,21
+33521,1187978.729,1009574.137,1805808.786,21
+33522,1181999.819,1437477.18,2613361.394,21
+33523,1183207.986,1010206.818,1806120.071,21
+33524,1180916.509,1009904.155,1802119.059,21
+33525,1180027.998,1007735.059,2613611.163,21
+33526,1178233.535,1008857.447,1801371.006,21
+33527,1175924.81,1007621.34,1801720.304,21
+33528,1177341.831,1007368.275,2609698.449,21
+33529,1172255.928,1007117.068,1800326.506,21
+33530,1174416.534,1005158.119,1798187.645,21
+33531,1171298.515,1006697.672,2608796.391,21
+33532,1172171.906,1430658.706,1799134.089,21
+33533,1167396.097,1005643.353,1795561.015,21
+33534,1169831.664,1003989.736,2608185.479,21
+33535,1166105.94,1003785.067,1794931.153,21
+33536,1167211.573,1003082.633,1793519.974,21
+33537,1163847.916,1002782.146,2605848.952,21
+33538,1163990.758,1004364.011,1795533.542,21
+33539,1163558.45,1000882.097,1790620.445,21
+33540,1160681.49,1003544.341,2605344.318,21
+33541,1948463.411,2070144.027,1726716.495,21
+33542,1945379.985,2066248.779,1712418.042,21
+33543,1940182.418,2063010.355,2525767.615,21
+33544,1942720.957,2061779.463,1704620.983,21
+33545,1939382.04,2436444.832,1701554.151,21
+33546,1938344.295,2057220.595,2515406.114,21
+33547,1937394.519,2054224.783,1696865.927,21
+33548,1936871.14,2054030.412,1689706.685,21
+33549,1935924.409,2051691.256,2507717.361,21
+33550,1933940.054,2050398.328,1685672.905,21
+33551,1933083.141,2046731.382,1679399.32,21
+33552,1933433.858,2046716.567,2502373.675,21
+33553,1932833.551,2045146.709,1673865.481,21
+33554,1930602.915,2042575.266,1671463.163,21
+33555,1929891.133,2041008.886,2493573.868,21
+33556,1930285.828,2039523.389,1667035.001,21
+33557,1927845.186,2038341.638,1663347.779,21
+33558,1929279.605,2035938.943,2484251.682,21
+33559,1926624.249,2034835.429,1658209.144,21
+33560,1926878.289,2032357.252,1656054.404,21
+33561,1925884.562,2031767.342,2475639.316,21
+33562,1925695.79,2030396.464,1651495.703,21
+33563,1924742.608,2027992.532,1644727.235,21
+33564,1924137.479,2026841.24,2473511.461,21
+33565,1924061.001,2024787.927,1639023.7,21
+33566,1921987.124,2024440.023,1639939.808,21
+33567,1922672.938,2021861.776,2463869.427,21
+33568,1921465.732,2020715.14,1632606.721,21
+33569,1921880.5,2019094.577,1630894.495,21
+33570,1920815.271,2018798.466,2457503.378,21
+33571,1919224.212,2016918.373,1626078.448,21
+33572,1919991.345,2016373.561,1622001.484,21
+33573,1919208.984,2013529.517,2451677.279,21
+33574,1918571.579,2013694.748,1617281.714,21
+33575,1919053.42,2010689.739,1615154.07,21
+33576,1917331.456,2009544.755,2444176.656,21
+33577,1916422.671,2008674.177,1611589.803,21
+33578,1918332.356,2006293.206,1606478.348,21
+33579,1915628.562,2006754.699,2439639.126,21
+33580,1916065.836,2002656.405,1600421.434,21
+33581,1916327.512,2003335.086,1601047.171,21
+33582,1913435.858,2001218.43,2432795.414,21
+33583,1916301.436,1999431.291,1593805.287,21
+33584,1912768.532,1998195.97,1587038.951,21
+33585,1911983.731,1997506.671,2418181.281,21
+33586,1912168.504,1995753.651,1556822.338,21
+33587,1911208.696,1993552.037,1548487.051,21
+33588,1904441.343,1992780.461,2386287.582,21
+33589,1898571.379,1991607.564,1538986.733,21
+33590,1893675.237,1988708.48,1538412.356,21
+33591,1894819.471,1988879.078,2372154.665,21
+33592,1892042.966,1987132.675,1526758.847,21
+33593,1891020.816,1984738.934,1523406.419,21
+33594,1888924.736,1985021.249,2363621.735,21
+33595,1887377.836,1981434.408,1511315.376,21
+33596,1886323.588,1980691.058,1511457.598,21
+33597,1884986.716,1979836.16,2349365.686,21
+33598,1882682.994,1977702.21,1498671.334,21
+33599,1882286.198,1975419.322,1494307.28,21
+33600,1881442.917,1971989.415,2337139.264,21
+33601,1666122.113,1745282.458,1090103.154,21
+33602,1651700.517,1730167.187,1072602.539,21
+33603,1646910.96,1727632.019,1920161.551,21
+33604,1640172.425,1725014.508,1055705.999,21
+33605,1636013.108,2104310.463,1048548.989,21
+33606,1629598.499,1722593.453,1900078.189,21
+33607,2015435.652,1720146.37,1031614.924,21
+33608,1612668.823,1719194.061,1025745.566,21
+33609,1610668.52,1718509.042,1880814.14,21
+33610,1606584.331,1717280.024,1009796.959,21
+33611,1600780.805,1716708.162,1473985.696,21
+33612,1597906.4,1714635.641,976032.0464,21
+33613,1592115.992,1714767.685,976908.4583,21
+33614,1587681.707,1713216.111,965280.292,21
+33615,1585946.314,1713424.242,1014388.564,21
+33616,1580515.13,1712148.474,1296120.834,21
+33617,1577092.35,1711100.06,933407.2321,21
+33618,1574127.383,1711707.411,932949.7646,21
+33619,1570899.22,1709050.909,959684.1988,21
+33620,1567441.008,1711042.133,1071806.55,21
+33621,1564316.067,1708207.496,907355.1163,21
+33622,1559999.119,1709071.819,1017775.779,21
+33623,1558169.652,1708385.978,983500.1888,21
+33624,1555242.396,1707641.127,1218374.724,21
+33625,1551211.225,1708440.422,869278.1714,21
+33626,1548072.15,1706841.134,870340.1377,21
+33627,1546473.501,1707623.284,862541.5367,21
+33628,1542211.886,1707165.882,930653.7778,21
+33629,1539155.079,1705949.103,1174310.876,21
+33630,1537184.588,1707611.378,836281.2964,21
+33631,1532519.606,1705349.024,836685.1449,21
+33632,1530609.707,1706248.374,829620.6195,21
+33633,1526082.243,1704556.83,905499.6268,21
+33634,1522576.939,1705571.515,1138324.716,21
+33635,1519991.432,1704560.861,804786.0346,21
+33636,1516192.635,1705873.214,804301.5484,21
+33637,1512139.759,1704381.46,808808.5664,21
+33638,1508342.565,1705074.613,851428.3167,21
+33639,1502035.709,1705438.392,811302.0286,21
+33640,1500558.051,1705445.409,804897.6974,21
+33641,1495777.487,1704375.071,802147.6256,21
+33642,1492807.178,1705897.561,797399.552,21
+33643,1488509.484,1704675.436,793869.6273,21
+33644,1485146.624,1705618.617,791412.0928,21
+33645,1481395.262,1705771.5,1577106.169,21
+33646,1477976.904,1705514.955,759502.7522,21
+33647,1473900.113,1706129.317,755192.4071,21
+33648,1470436.383,1706199.341,1599756.719,21
+33649,1466051.82,1706268.635,744707.4878,21
+33650,1463069.31,1706125.207,740896.7013,21
+33651,1460299.498,1706955.688,1596883.271,21
+33652,1455239.424,1706708.34,731881.1137,21
+33653,1449335.393,1706719.285,726763.2782,21
+33654,1445945.963,1708244.614,1590626.682,21
+33655,1441076.962,1707018.873,717460.3474,21
+33656,1438154.255,1708474.695,713143.331,21
+33657,1434483.291,1707145.872,1581548.788,21
+33658,1430193.221,1709316.114,703516.6836,21
+33659,1426561.117,1708640.477,699065.6404,21
+33660,1423088.269,1708778.806,1570885.93,21
+33661,1417780.512,1707094.597,689111.3997,21
+33662,1413104.507,1704244.04,1167277.134,21
+33663,1407234.019,1701293.426,662993.9539,21
+33664,1404214.001,1699575.614,663599.0514,21
+33665,1398340.32,1696434.698,653599.4624,21
+33666,1394512.95,1694078.962,794693.0625,21
+33667,1389046.204,1692035.374,988425.7482,21
+33668,1384514.783,1690092.679,624531.8128,21
+33669,1380181.818,1686229.973,623988.5402,21
+33670,1374646.244,1685932.562,640669.1534,21
+33671,1370927.946,1681445.232,701832.0799,21
+33672,1364841.298,1680689.803,723588.4997,21
+33673,1361427.412,1677303.823,890590.9714,21
+33674,1355607.436,1675568.686,580709.6517,21
+33675,1351645.445,2053297.16,580277.392,21
+33676,1347237.289,1670771.171,753609.3765,21
+33677,1341643.081,1667826.475,714920.4988,21
+33678,1336949.128,1666287.497,872790.2747,21
+33679,1333302.222,1663761.609,543669.1653,21
+33680,1327272.194,1661214.878,544280.0854,21
+33681,1322099.134,1658449.593,537287.565,21
+33682,1317996.232,1657281.152,698203.6501,21
+33683,1311527.227,1653755.112,840925.9816,21
+33684,1308751.069,1652382.187,516030.4342,21
+33685,1302053.058,1649180.579,515386.9016,21
+33686,1298193.383,1647814.232,509435.3124,21
+33687,1294075.806,1643971.525,674784.9792,21
+33688,1287744.44,1643478.549,807375.4322,21
+33689,1283568.969,1640737.512,487596.6235,21
+33690,1277502.567,1640208.574,487987.2368,21
+33691,1275162.645,1637918.667,481193.2374,21
+33692,1269669.623,1635792.806,654879.9581,21
+33693,1266638.544,1634204.457,777624.4097,21
+33694,1261988.411,1633022.083,463974.0595,21
+33695,1257698.656,1630342.997,465374.9637,21
+33696,1253465.134,1627878.263,665914.1263,21
+33697,1251076.686,1627613.542,629522.8379,21
+33698,1245579.833,1624156.836,740549.0543,21
+33699,1242919.561,1622731.557,437931.4483,21
+33700,1238187.146,2002896.664,438768.6462,21
+33701,1235144.13,1618468.386,641263.4709,21
+33702,1231315.771,1617396.647,605379.9,21
+33703,1227993.802,1615806.252,705717.4329,21
+33704,1223176.232,1612993.403,412972.8229,21
+33705,1220924.59,1611535.678,414179.9651,21
+33706,1217129.667,1609897.821,617550.6828,21
+33707,1213046.098,1607446.689,582266.0659,21
+33708,1210207.436,1605847.451,673086.7898,21
+33709,1207146.803,1603769.579,389426.6028,21
+33710,1202324.031,1601760.548,389923.343,21
+33711,1200258.445,1599863.274,595586.3688,21
+33712,1196408.29,1597855.51,560681.3756,21
+33713,1192663.727,1596359.618,641808.3323,21
+33714,1189678.908,1593785.65,367005.7435,21
+33715,1185900.34,1591993.338,367088.1214,21
+33716,1183006.827,1589793.488,574397.3602,21
+33717,1180228.094,1587542.032,539384.8538,21
+33718,1175509.378,1585940.381,462803.3559,21
+33719,1174021.965,1582813.115,484108.9482,21
+33720,1170218.655,1580208.675,472757.6406,21
+33721,1168135.927,1583894.857,466080.1589,21
+33722,1165595.685,1965491.473,461304.3962,21
+33723,1161679.81,1583344.314,457654.4898,21
+33724,1159610.86,1582882.583,1056928.892,21
+33725,1156212.151,1582328.615,322748.5731,21
+33726,1154143.677,1582055.079,373664.3948,21
+33727,1540991.471,1581673.156,1087397.545,21
+33728,1147993.179,1580925.71,315097.475,21
+33729,1145554.065,1581002.68,364210.3241,21
+33730,1142151.304,1580368.641,1096367.441,21
+33731,1139000.358,1579098.624,307697.4601,21
+33732,1137903.837,1580248.812,360448.1875,21
+33733,1133118.4,1578892.639,1097724.221,21
+33734,1130956.843,1578440.602,299632.8595,21
+33735,1129387.043,1578541.345,356406.7479,21
+33736,1125180.471,1577702.475,1097709.839,21
+33737,1123137.016,1577386.815,290917.312,21
+33738,1119245.056,1573843.887,694112.3425,21
+33739,1118583.79,1573180.797,279864.8333,21
+33740,1113618.045,1571713.073,280919.9137,21
+33741,1111548.988,1571483.362,273253.8873,21
+33742,1110529.116,1570693.701,506086.7606,21
+33743,1105167.183,1570488.64,554664.592,21
+33744,1105000.955,1569174.426,258593.926,21
+33745,1103036.266,1569307.044,259214.9084,21
+33746,1492511.318,1568391.716,262809.1295,21
+33747,1099456.785,1568236.48,461797.9099,21
+33748,1096736.359,1566919.178,424499.816,21
+33749,1095846.332,1566515.521,239797.504,21
+33750,1093919.758,1566811.166,236801.7478,21
+33751,1091788.225,1565383.824,519112.6871,21
+33752,1091047.67,1565022.355,497539.8415,21
+33753,1087956.863,1564599.83,222898.5621,21
+33754,1087406.475,1564227.166,222300.2077,21
+33755,1086187.036,1563538.406,471641.9921,21
+33756,1082913.298,1563235.852,436213.2523,21
+33757,1083324.451,1562653.952,360427.564,21
+33758,1079828.331,1538046.049,378141.7374,21
+33759,1080052.908,1534232.34,365471.7612,21
+33760,1076828.797,1532069.9,357855.1351,21
+33761,1076607.541,1529955.898,352304.4697,21
+33762,1073302.338,1528104.283,347126.1308,21
+33763,1073014.896,1526560.041,470668.2127,21
+33764,1070779.121,1524838.103,177105.851,21
+33765,1069644.695,1523216.199,176639.6491,21
+33766,1068360.778,1521219.416,407651.2222,21
+33767,1066136.458,1518886.765,360311.8447,21
+33768,1064767.142,1518047.755,309587.3364,21
+33769,1062646.002,1515346.956,320788.0746,21
+33770,1453652.888,1896428.946,310262.832,21
+33771,1060003.125,1511886.696,304177.7195,21
+33772,1057477.636,1510690.549,299237.2749,21
+33773,1457677.502,1508613.644,294515.645,21
+33774,1054305.331,1507007.948,394796.9664,21
+33775,1053432.76,1505741.362,138669.6838,21
+33776,1453394.74,1503666.088,138764.9661,21
+33777,1050024.763,1502156.315,347743.1829,21
+33778,1047804.511,1500673.829,305621.8502,21
+33779,1448704.075,1499447.011,262215.0806,21
+33780,1044621.445,1497301.572,271354.0613,21
+33781,1042116.99,1492577.948,259640.8863,21
+33782,1442331.321,1490206.917,252371.8338,21
+33783,1039207.548,1488624.097,246404.7177,21
+33784,1037867.395,1486050.354,239982.7193,21
+33785,1438362.398,1484296.532,316151.1126,21
+33786,1036191.091,1482533.373,93058.99957,21
+33787,1033312.504,1480067.649,89723.46181,21
+33788,1436206.928,1477645.601,278520.3275,21
+33789,1031783.768,1475908.734,238829.7968,21
+33790,1030443.676,1473353.376,200012.4367,21
+33791,1432508.342,1472054.205,206804.0738,21
+33792,1028399.429,1469001.11,199404.3586,21
+33793,1026874.882,1467516.718,194867.4903,21
+33794,1428229.89,1465583.665,191475.499,21
+33795,1024589.019,1463293.174,188064.9868,21
+33796,1023461.206,1461283.505,249875.2615,21
+33797,1424862.606,1459075.642,64903.20438,21
+33798,1021185.239,1457883.783,65431.17137,21
+33799,1019192.969,1455028.734,228659.633,21
+33800,1421796.659,1453678.857,196312.4824,21
+33801,1016768.496,1450974.768,167239.7553,21
+33802,1015934.619,1449838.854,173587.7561,21
+33803,1417734.973,1447597.047,168063.3463,21
+33804,1012965.125,1444928.337,164339.3062,21
+33805,1012571.143,1827657.326,161867.3636,21
+33806,1414122.781,1440970.565,159228.5186,21
+33807,1009032.57,1439671.955,156760.8285,21
+33808,1008819.402,1437836.2,154162.7483,21
+33809,1409763.548,1435504.943,152667.1885,21
+33810,1006105.649,1433840.717,149770.0105,21
+33811,1004506.273,1431859.061,147886.9849,21
+33812,1407137.472,1430284.5,146162.6214,21
+33813,1002145.644,1428146.539,143538.1219,21
+33814,1001284.602,1426489.221,142789.9595,21
+33815,1404166.573,1424984.068,140064.601,21
+33816,998062.7834,1422815.882,138181.5777,21
+33817,996843.7179,1420937.317,136503.4207,21
+33818,1399312.634,1419581.711,51262.42452,21
+33819,994036.7404,1417219.508,50669.47474,21
+33820,992641.1186,1416278.431,50759.6494,21
+33821,1395386.671,1413879.356,50176.01502,21
+33822,990604.2832,1412458.507,49752.14206,21
+33823,988974.2084,1410582.414,50162.88444,21
+33824,1390729.56,1408915.559,50785.48985,21
+33825,986525.7242,1407175.21,49672.38048,21
+33826,984281.8288,1405767.817,50102.04925,21
+33827,1387732.847,1403323.348,49617.34332,21
+33828,981601.0631,1402073.777,49494.95338,21
+33829,980996.3752,1400508.427,49125.30474,21
+33830,1383721.334,1398828.299,49147.35581,21
+33831,977644.0811,1780528.173,48513.61842,21
+33832,977049.9653,1395857.521,48629.24563,21
+33833,1378884.989,1393818.865,48026.21488,21
+33834,974546.9089,1391396.062,47985.03565,21
+33835,972538.4243,1390814.98,47658.49895,21
+33836,1375528.396,1388242.513,47327.33756,21
+33837,970579.3206,1387070.077,47023.99114,21
+33838,968668.5889,1385813.652,46523.21772,21
+33839,1371529.744,1383328.125,46635.45952,21
+33840,966596.3835,1383668.565,46448.17673,21
+33841,1034270.131,1412279.246,68662.00131,21
+33842,1437440.078,1410725.55,69086.0864,21
+33843,1032665.035,1409974.499,69565.24089,21
+33844,1031926.053,1409676.579,69235.61973,21
+33845,1434628.314,1408410.448,69937.01846,21
+33846,1030783.973,1407409.755,69439.9582,21
+33847,1028505.8,1406722.463,70070.17859,21
+33848,1432381.641,1405463.867,69855.26214,21
+33849,1026952.538,1404850.023,70008.88262,21
+33850,1027228.334,1404455.728,70195.51263,21
+33851,1428849.081,1402544.486,70153.09637,21
+33852,1025250.398,1402586.026,70282.29608,21
+33853,1023502.78,1400887.082,70462.59786,21
+33854,1427526.624,1400613.17,70402.8361,21
+33855,1022136.239,1399452.131,70636.93499,21
+33856,1020144.864,1398467.194,70312.65303,21
+33857,1425321.617,1397703.228,70892.55226,21
+33858,1017752.719,1396707.229,70690.54385,21
+33859,1019059.247,1395839.061,70768.86133,21
+33860,1421032.602,1394571.807,71184.76712,21
+33861,1016593.769,1394392.355,70777.90731,21
+33862,1015378.988,1392751.102,71453.75765,21
+33863,1419060.175,1392080.353,70902.04958,21
+33864,1013194.068,1391263.449,71361.8784,21
+33865,1011504.538,1390092.378,71198.80315,21
+33866,1416766.306,1388978.85,71349.4043,21
+33867,1009863.694,1388685.573,71426.87773,21
+33868,1009015.306,1387258.747,71361.83663,21
+33869,1413025.847,1386455.16,71274.01557,21
+33870,1006875.043,1385808.922,71615.72156,21
+33871,1005541.397,1384696.062,71530.89219,21
+33872,1410378.252,1383745.893,71696.72708,21
+33873,1002985.656,1383278.379,71236.21874,21
+33874,1002908.746,1382809.709,71926.74935,21
+33875,1406279.047,1381602.14,71486.13247,21
+33876,1000102.043,1381345.696,71232.53963,21
+33877,1000769.146,1380296.963,71947.31633,21
+33878,1402681.9,1379725.937,71506.69807,21
+33879,997919.4138,1379381.713,71637.48442,21
+33880,996020.0578,1378531.973,71422.06508,21
+33881,1400562.231,1377803.457,71458.39411,21
+33882,994466.907,1376765.748,71674.35171,21
+33883,992568.1027,1377119.678,71707.79505,21
+33884,1398268.059,1375566.413,71384.66907,21
+33885,991133.0025,1375611.229,71619.48631,21
+33886,990227.0551,1374484.52,71420.22139,21
+33887,1393924.636,1374192.179,71640.94292,21
+33888,988940.9826,1373694.641,71657.38458,21
+33889,987395.7529,1372631.343,71478.17184,21
+33890,1392099.903,1372327.544,71532.50748,21
+33891,985427.8373,1371954.834,71464.02626,21
+33892,985690.9128,1370856.876,71119.09746,21
+33893,1388641.245,1370752.504,71274.71908,21
+33894,983476.9817,1370164.788,71356.0438,21
+33895,981974.3447,1369520.917,70936.86513,21
+33896,1387134.664,1368515.299,71029.45079,21
+33897,980165.8385,1367953.659,70890.70816,21
+33898,978881.7832,1367823.795,70816.93297,21
+33899,1384039.785,1365350.267,70940.17462,21
+33900,977925.974,1364728.357,70397.08813,21
+33901,917430.5862,1333673.082,46053.45905,21
+33902,1322262.214,1332408.458,45245.04148,21
+33903,915841.0528,1330900.136,44716.53323,21
+33904,915103.4629,1329595.816,44742.77375,21
+33905,1320118.966,1328603.033,44665.36558,21
+33906,913368.104,1326271.466,43849.07192,21
+33907,913277.5052,1325379.63,43980.71032,21
+33908,1318051.747,1323477.92,43765.95739,21
+33909,911506.7288,1322075.04,43290.68717,21
+33910,910927.4024,1706261.405,43199.24254,21
+33911,1316297.253,1319195.483,42865.05972,21
+33912,909217.1934,1318048.035,42614.81372,21
+33913,908942.8318,1315902.372,42056.73579,21
+33914,1314423.472,1315332.519,41815.66947,21
+33915,907361.4795,1313023.214,41702.34883,21
+33916,906900.0116,1312179.207,41419.51149,21
+33917,1312461.988,1310356.605,40757.6719,21
+33918,905382.8943,1309276.051,40983.16195,21
+33919,904769.2362,1307341.018,40346.96055,21
+33920,1310587.842,1306455.082,40172.2865,21
+33921,903464.9516,1304711.246,39687.65086,21
+33922,902467.7658,1303460.542,39756.36793,21
+33923,1308725.986,1302292.114,39087.12601,21
+33924,901659.1385,1300404.306,38978.36007,21
+33925,900342.8637,1298900.346,38417.14636,21
+33926,1307007.276,1298233.315,38268.23588,21
+33927,899194.8545,1296368.754,37954.11302,21
+33928,898774.3639,1294851.979,37439.63508,21
+33929,1304638.591,1293937.586,37178.83552,21
+33930,897231.2018,1291957.579,36903.1514,21
+33931,896802.472,1291668.158,36709.34158,21
+33932,1302526.152,1289773.052,36364.98643,21
+33933,895273.7194,1288450.284,36386.37792,21
+33934,894475.8859,1288180.194,36070.1435,21
+33935,1299866.926,1286372.238,36229.54532,21
+33936,893655.4077,1672203.505,35639.34896,21
+33937,891732.2731,1284313.952,35808.79972,21
+33938,1298243.417,1283290.65,35518.06347,21
+33939,890722.5804,1281990.5,35605.10282,21
+33940,889903.4249,1281182.763,35279.51425,21
+33941,1295814.914,1280024.302,35191.27228,21
+33942,888231.7316,1279026.23,35029.38992,21
+33943,887684.3398,1277385.14,35471.44244,21
+33944,1293462.254,1278341.703,35416.62399,21
+33945,885696.9124,1277782.212,35259.75329,21
+33946,885435.8302,1275883.69,35219.20375,21
+33947,1291001.37,1275540.494,35110.27664,21
+33948,883438.9923,1274695.618,35047.66977,21
+33949,882519.598,1272933.995,35219.61812,21
+33950,1288967.073,1272404.85,34847.11942,21
+33951,880818.8192,1271494.594,34883.9187,21
+33952,879981.5483,1270724.992,34830.80185,21
+33953,1286362.911,1269068.608,34914.55146,21
+33954,878257.4626,1268783.429,34510.19788,21
+33955,877734.1916,1265882.672,34933.72342,21
+33956,1283453.755,1265606.245,34606.65677,21
+33957,876304.7097,1264304.783,34756.87083,21
+33958,874622.1603,1263263.9,34585.57472,21
+33959,1281562.414,1262486.947,34865.87597,21
+33960,873112.3044,1261172.922,35604.07976,21
+33961,876937.063,1266752.167,42506.86032,21
+33962,1283528.501,1266958.314,42141.32551,21
+33963,874845.8269,1268175.103,42186.92305,21
+33964,874215.2738,1268460.314,41813.78969,21
+33965,1280356.669,1271151.476,41942.31512,21
+33966,872447.3546,1270764.395,41811.60832,21
+33967,871295.0997,1272596.829,41516.95605,21
+33968,870836.269,1272293.459,41497.83758,21
+33969,869456.4945,1273314.742,41380.46841,21
+33970,868545.1967,1274304.2,41088.51254,21
+33971,867005.4642,1274846.356,41489.92364,21
+33972,866631.3527,1275141.087,41089.27485,21
+33973,864954.1823,1274855.943,40846.74788,21
+33974,863939.2974,1275125.583,41102.07933,21
+33975,863485.9498,1276113.436,41162.40021,21
+33976,861429.0627,1276959.803,41664.22861,21
+33977,860916.5885,1277079.066,41430.61664,21
+33978,859818.8079,1278553.009,41465.99534,21
+33979,858755.2501,1279108.895,41371.54857,21
+33980,857511.6268,1279856.239,41372.60433,21
+33981,856464.0934,1280141.626,41270.78843,21
+33982,855634.4504,1281422.046,41659.40682,21
+33983,853953.573,1282126.491,41198.03968,21
+33984,853640.1863,1282506.183,41580.7216,21
+33985,852032.9419,1283946.778,41373.48565,21
+33986,851143.1592,1284009.72,41375.11409,21
+33987,850333.2211,1285219.672,41669.76758,21
+33988,848788.207,1285937.316,41309.73376,21
+33989,847987.1086,1286997.128,41698.19716,21
+33990,847038.3051,1287484.586,41836.88845,21
+33991,845918.3188,1288319.525,41264.86864,21
+33992,845144.7392,1288464.254,41554.5225,21
+33993,844323.211,1289852.225,41385.27266,21
+33994,843110.1483,1289758.001,40962.96233,21
+33995,842986.9622,1291001.54,40979.19297,21
+33996,841993.8041,1290870.86,41083.70374,21
+33997,840762.4034,1291884.122,40297.17212,21
+33998,840580.8226,1292206.001,40863.40954,21
+33999,839686.4135,1293358.19,40220.86773,21
+34000,839017.711,1293018.279,40416.9351,21
+34001,838109.3353,1294248.484,39970.15213,21
+34002,837743.4451,1294514.646,39777.47649,21
+34003,836866.8415,1296275.517,40511.02935,21
+34004,836427.2107,1296589.275,39999.37788,21
+34005,835357.3535,1297515.772,40228.09031,21
+34006,835171.5024,1297641.192,39899.05907,21
+34007,833823.459,1298581.133,40008.27848,21
+34008,833983.9555,1298567.555,39470.10081,21
+34009,832810.011,1299800.286,39660.02362,21
+34010,832223.6947,1300022.271,39515.16413,21
+34011,831988.6393,1300624.048,39321.59309,21
+34012,830924.5015,1300140.617,39167.80414,21
+34013,830879.668,1300396.666,39029.37933,21
+34014,829677.4455,1301250.812,38941.31713,21
+34015,829329.6008,1301683.16,38703.80777,21
+34016,829299.6726,1302384.996,38584.51091,21
+34017,828063.1441,1302830.918,38597.00703,21
+34018,828050.3921,1302913.489,38370.40505,21
+34019,827116.6128,1304466.588,38272.12788,21
+34020,826782.2175,1304095.514,38029.76928,21
+34021,822594.4817,1300242.2,29863.2013,21
+34022,822847.7995,1300511.271,29863.33642,21
+34023,825006.5504,1301034.101,29748.98143,21
+34024,825372.3088,1300764.527,29640.18203,21
+34025,826224.1515,1301659.273,29539.60917,21
+34026,827245.4048,1301816.97,29668.22233,21
+34027,827482.6985,1302419.562,29585.44894,21
+34028,828715.329,1301951.706,29535.85403,21
+34029,829358.5068,1302912.528,29502.19817,21
+34030,830102.3628,1303223.19,29343.93261,21
+34031,831087.788,1303301.88,29637.6558,21
+34032,831447.5345,1303491.328,29264.42602,21
+34033,832437.6229,1304171.597,29396.16612,21
+34034,833690.2683,1303889.46,29429.01982,21
+34035,834076.8375,1304971.044,29424.83574,21
+34036,835034.9743,1304719.027,29214.47534,21
+34037,835845.7615,1305236.663,29330.04272,21
+34038,836620.7249,1305699.741,29212.7815,21
+34039,837767.5038,1305504.853,29397.12805,21
+34040,838319.0224,1306584.258,29225.74951,21
+34041,845094.9193,1306168.116,29325.24981,21
+34042,845538.9758,1306519.354,29249.19432,21
+34043,847007.8036,1308887.263,29057.39737,21
+34044,849087.2982,1308843.348,29335.46873,21
+34045,850360.7541,1309065.177,29080.52032,21
+34046,852692.5766,1308886.015,29092.92583,21
+34047,853483.938,1309557.139,29373.78084,21
+34048,855790.2298,1309563.142,28980.15884,21
+34049,857677.2659,1309593.05,29061.80868,21
+34050,859003.752,1309825.814,29464.95762,21
+34051,860212.4451,1309570.121,28977.67311,21
+34052,861194.4149,1310060.649,29053.961,21
+34053,861970.3917,1309997.328,29419.68339,21
+34054,862612.5058,1309642.933,29270.52199,21
+34055,863933.4166,1309881.759,29199.17745,21
+34056,864390.8321,1310051.31,29410.77586,21
+34057,865648.9504,1309953.632,29251.17185,21
+34058,865836.216,1309934.304,29798.82431,21
+34059,867056.9609,1309972.803,29156.02497,21
+34060,867577.5476,1310115.981,29829.29039,21
+34061,866318.2557,1310890.026,29611.13733,21
+34062,867447.7728,1310274.704,29568.97551,21
+34063,867089.6905,1310241.97,29887.42367,21
+34064,868290.9263,1310300.178,29756.81438,21
+34065,869058.1017,1309938.778,29779.12666,21
+34066,869074.1229,1309958.29,29925.15113,21
+34067,870371.3505,1310193.972,30074.35352,21
+34068,870549.636,1309064.699,30069.63374,21
+34069,871039.1829,1309673.171,30104.1972,21
+34070,872381.358,1309478.561,30238.10451,21
+34071,872250.0573,1309108.438,30394.14453,21
+34072,872989.1363,1308875.598,30120.41156,21
+34073,874058.9443,1308432.904,30717.69571,21
+34074,874068.7365,1308730.873,30287.21594,21
+34075,874911.5555,1308202.182,30684.90899,21
+34076,875694.1063,1307672.728,30659.48357,21
+34077,875879.9269,1307623.837,30829.04709,21
+34078,876684.2269,1306562.703,30769.12187,21
+34079,877514.1929,1306797.182,30885.04844,21
+34080,877439.9023,1304424.389,31062.58909,21
+34081,878394.6251,1305828.555,31068.30045,21
+34082,876418.3694,1306579.613,31071.00698,21
+34083,876252.5572,1307200.701,30954.95016,21
+34084,876779.8416,1307986.531,31095.47786,21
+34085,876420.3939,1309314.037,31107.60574,21
+34086,876963.0872,1309608.948,30877.68721,21
+34087,877263.1048,1310669.996,31261.5399,21
+34088,877014.8751,1311793.01,31019.04633,21
+34089,877447.944,1312075.045,31028.41108,21
+34090,877559.1645,1313331.03,31186.53124,21
+34091,877288.6005,1314343.865,31199.43776,21
+34092,877940.9098,1314793.488,31163.32135,21
+34093,878230.7851,1316069.185,30966.24937,21
+34094,878132.2976,1316517.014,31364.72832,21
+34095,878255.2775,1317813.644,31101.85251,21
+34096,878408.0752,1318262.033,31246.1087,21
+34097,878610.7242,1319215.696,31255.68793,21
+34098,878743.5371,1320287.464,31156.61942,21
+34099,878826.2419,1320942.974,30406.36277,21
+34100,879445.6353,1322152.605,30048.89198,21
+34101,878876.2907,1322124.142,30126.61694,21
+34102,877650.7123,1324278.4,29935.23363,21
+34103,877038.0953,1324140.803,30049.84838,21
+34104,877466.9385,1324871.791,30045.44754,21
+34105,876938.4668,1326703.191,30065.5419,21
+34106,878040.9456,1326719.383,29821.50044,21
+34107,877203.8401,1328125.389,30328.69345,21
+34108,877690.4143,1328229.374,29856.54775,21
+34109,877618.933,1329557.662,30220.20989,21
+34110,877678.0103,1330940.726,29845.61626,21
+34111,878430.6931,1330700.755,30252.87236,21
+34112,878828.7625,1332154.564,30290.37246,21
+34113,878897.657,1333189.413,30407.56792,21
+34114,880487.3715,1333478.621,30453.915,21
+34115,880317.237,1334644.946,30720.75831,21
+34116,880923.114,1335724.541,30865.44938,21
+34117,882159.586,1336251.955,30923.48787,21
+34118,882695.2249,1336897.582,30901.47805,21
+34119,882753.6718,1338303.298,31089.68757,21
+34120,884264.9455,1339071.003,31820.37388,21
+34121,885154.0037,1339311.705,31158.64371,21
+34122,885917.6246,1340947.102,31902.5099,21
+34123,886867.5324,1341279.274,31673.73852,21
+34124,887967.4086,1342314.615,31974.94592,21
+34125,889464.4951,1342833.375,32390.32831,21
+34126,889646.5996,1344488.637,32246.09102,21
+34127,891477.4222,1344406.434,32831.82415,21
+34128,891891.6118,1345857.262,32329.02911,21
+34129,893542.9,1346521.684,33380.29548,21
+34130,894041.8391,1347405.827,33052.73191,21
+34131,895508.7534,1347813.864,33187.34043,21
+34132,896986.136,1349404.93,33711.76215,21
+34133,897935.4017,1349622.605,33650.59304,21
+34134,899216.9734,1350828.564,34042.51159,21
+34135,900115.1426,1351450.62,34227.43053,21
+34136,901484.4754,1352742.18,34323.71033,21
+34137,903222.9229,1352873.247,34838.17982,21
+34138,903498.6806,1354288.413,35739.9311,21
+34139,905113.2541,1354635.372,36015.62412,21
+34140,906757.4609,1355824.688,36363.06134,21
+34141,976602.3159,1426338.893,96140.59718,21
+34142,1001284.983,1431983.891,99852.82383,21
+34143,997892.5909,1434194.345,100926.57,21
+34144,1002235.58,1436479.941,102658.1233,21
+34145,1006358.023,1439017.014,103427.7214,21
+34146,1008409.907,1441164.322,104903.4861,21
+34147,1012196.802,1442923.562,105768.2709,21
+34148,1048731.085,1446239.004,106998.783,21
+34149,1089301.46,1447183.452,108048.6285,21
+34150,1062610.98,1450435.177,108863.3187,21
+34151,1079606.992,1452172.59,110300.6883,21
+34152,1083840.897,1454114.477,110958.3629,21
+34153,1086055.626,1456426.694,112425.7974,21
+34154,1091679.523,1458794.293,112827.0259,21
+34155,1092903.582,1460350.841,114678.8262,21
+34156,1097630.515,1462702.345,114928.4219,21
+34157,1100668.449,1464844.046,116355.0014,21
+34158,1103600.087,1466679.415,116979.5762,21
+34159,1107524.429,1468742.282,118488.5893,21
+34160,1109949.611,1470513.09,119490.7631,21
+34161,1112400.787,1472452.203,120163.4401,21
+34162,1116407.726,1474483.541,121150.391,21
+34163,1119445.112,1476354.88,122706.4152,21
+34164,1122033.612,1478543.116,123059.2016,21
+34165,1124570.058,1480172.957,124567.6466,21
+34166,1127353.949,1481546.223,125578.7205,21
+34167,1130319.327,1484354.038,126052.8271,21
+34168,1132912.304,1485155.777,127926.842,21
+34169,1134921.516,1487871.677,128280.6733,21
+34170,1138622.736,1489299.959,129357.8604,21
+34171,1140442.947,1490947.645,130960.6017,21
+34172,1143831.438,1499261.079,131622.9139,21
+34173,1145433.044,1505821.818,132412.6958,21
+34174,1149156.953,1503920.534,132706.1882,21
+34175,1150410.251,1508068.154,134242.5961,21
+34176,1153924.706,1511075.594,134503.8052,21
+34177,1155695.824,1512813.653,135170.7565,21
+34178,1157513.71,1515586.577,136548.3648,21
+34179,1160116.602,1518603.796,136886.2407,21
+34180,1163955.283,1520261.736,137496.7547,21
+34181,1164397.36,1523006.712,138317.6385,21
+34182,1166953.707,1524770.498,139221.2976,21
+34183,1170163.905,1527258.173,139478.7579,21
+34184,1172098.212,1530288.071,140558.9232,21
+34185,1173503.821,1531083.942,141418.6254,21
+34186,1176944.833,1534305.922,141504.5183,21
+34187,1178157.576,1536711.408,142762.0726,21
+34188,1181270.41,1537658.315,142869.6897,21
+34189,1182266.837,1541613.225,144372.4682,21
+34190,1185710.778,1542117.975,144649.097,21
+34191,1186662.94,1546022.042,145689.9628,21
+34192,1189509.618,1546542.495,146080.7583,21
+34193,1191461.099,1549684.391,146957.6132,21
+34194,1193226.848,1551728.375,147559.0791,21
+34195,1196798.399,1552938.239,148335.5481,21
+34196,1196494.231,1556413.262,150397.3816,21
+34197,1200373.698,1557015.452,151229.9456,21
+34198,1202323.686,1559314.888,151928.7056,21
+34199,1202734.291,1562609.811,152860.7671,21
+34200,1206637.812,1564198.585,152888.3353,21
+34201,1264975.745,1625315.103,177881.0456,21
+34202,1270607.574,1633022,180262.2835,21
+34203,1270114.569,1634532.013,180610.9903,21
+34204,1271695.175,1638452.799,182027.0956,21
+34205,1272115.732,1639202.867,182992.218,21
+34206,1271833.331,1643547.667,183708.452,21
+34207,1273190.78,1643634.476,184274.3917,21
+34208,1272940.291,1646935.528,185371.0378,21
+34209,1272721.98,1649439.671,186433.029,21
+34210,1273914.341,1653000.08,186404.6268,21
+34211,1274252.515,1654755.162,187896.044,21
+34212,1273419.29,1656412.753,188365.6029,21
+34213,1274749.206,1658961.805,188966.4493,21
+34214,1273648.203,1660613.814,189966.0222,21
+34215,1667491.456,1662918.527,190168.6208,21
+34216,1274582.016,1664290.756,191322.3175,21
+34217,1274111.722,1667528.601,196499.8408,21
+34218,1676268.115,1668389.337,195870.8381,21
+34219,1273822.707,1670562.171,197584.8113,21
+34220,1274836.528,1673068.955,197942.9642,21
+34221,1677064.627,1674431.35,200346.6473,21
+34222,1274164.538,1676926.792,200043.6732,21
+34223,1274281.443,1677134.841,202839.3347,21
+34224,1678516.398,1681060.819,202551.1038,21
+34225,1276466.086,1682223.281,204025.0051,21
+34226,1275231.51,1683820.269,205568.9133,21
+34227,1679015.417,1685636.229,205911.065,21
+34228,1274822.2,1687380.098,207544.6248,21
+34229,1274774.271,1689608.442,208480.2625,21
+34230,1679142.052,1690651.776,209007.185,21
+34231,1274292.542,1692580.203,210233.362,21
+34232,1274652.215,1694176.483,211692.7386,21
+34233,1677768.866,1696332.717,211361.2161,21
+34234,1273899.626,1697321.049,214001.5678,21
+34235,1273256.626,1700114.077,213947.5681,21
+34236,1677251.087,1700492.514,215102.3509,21
+34237,1271748.064,1704346.767,216158.0349,21
+34238,1271070.924,1703604.63,216832.4796,21
+34239,1673987.928,1706514.691,218119.6304,21
+34240,1270325.37,1708314.761,218875.4594,21
+34241,1270228.457,1709443.582,221201.0427,21
+34242,1672677.209,1710275.738,221935.8104,21
+34243,1269918.997,1713506.092,223110.6833,21
+34244,1268550.96,1713680.826,223824.8349,21
+34245,1672116.4,1716347.101,225653.2478,21
+34246,1267981.563,1717381.789,226155.0038,21
+34247,1267559.061,1719098.938,226839.9231,21
+34248,1671351.789,1720973.461,229029.7132,21
+34249,1267583.452,1722295.062,228659.5409,21
+34250,1265459.132,1723596.019,230224.6989,21
+34251,1671154.835,1726208.748,231427.9861,21
+34252,1264839.159,1725342.419,231745.417,21
+34253,1264858.724,1729255.003,233072.4522,21
+34254,1669711.429,1729749.665,234463.7339,21
+34255,1262832.44,1731726.965,234570.3565,21
+34256,1264387.368,1732381.587,236299.4629,21
+34257,1667833.347,1735464.682,236275.0815,21
+34258,1262353.474,1735061.261,238209.1012,21
+34259,1262433.196,1737516.642,238460.9334,21
+34260,1665321.825,1739620.154,239746.7999,21
+34261,1264298.254,1739527.426,240334.9801,21
+34262,1264139.337,1741944.599,241527.6687,21
+34263,1266203.274,1742958.13,242084.1232,21
+34264,1267752.208,1744318.395,243851.1645,21
+34265,1268004.59,1744799.888,243772.0699,21
+34266,1270357.417,1746151.195,245809.7141,21
+34267,1269852.973,1747556.426,245573.8635,21
+34268,1272670.645,1748465.961,247318.9884,21
+34269,1273258.957,1749093.49,247344.9096,21
+34270,1273763.944,1749790.593,249132.5505,21
+34271,1275280.723,1751978.986,249285.8761,21
+34272,1275761.649,1751141.114,250254.2697,21
+34273,1278664.386,1754610.952,251635.2528,21
+34274,1277834.355,1753753.651,251872.5399,21
+34275,1280670.95,1755299.596,253344.3757,21
+34276,1280262.883,1756920.076,253158.7684,21
+34277,1282561.96,1756791.431,254910.2012,21
+34278,1282663.005,2140092.788,255457.4976,21
+34279,1284713.091,1759402.688,256382.2317,21
+34280,1285317.394,1760726.497,256855.1919,21
+34281,1286248.376,1760860.174,257948.6432,21
+34282,1287236.307,1762499.448,258732.8153,21
+34283,1290067.992,1763206.065,259295.9397,21
+34284,1289139.744,1764356.88,260684.9245,21
+34285,1290878.444,1764349.768,261212.9477,21
+34286,1291713.869,1767470.563,261423.3439,21
+34287,1293583.2,1766719.99,262293.3874,21
+34288,1293880.095,1767971.813,263950.4466,21
+34289,1295474.933,1768437.926,263639.3692,21
+34290,1296122.923,1770537.737,265426.0101,21
+34291,1297463.291,1770661.645,592162.4991,21
+34292,1297811.532,1772045.536,582669.6791,21
+34293,1299709.061,1772173.058,572921.5197,21
+34294,1301029.049,1774435.981,564115.4886,21
+34295,1301300.266,1774646.382,555398.825,21
+34296,1302336.51,1774929.439,545938.765,21
+34297,1303750.696,1776886.676,538715.0452,21
+34298,1305258.178,2158581.478,530652.556,21
+34299,1305191.014,1778218.67,522540.1708,21
+34300,1307474.914,1778566.878,515430.6744,21
+34301,1307879.987,1780475.301,508120.5831,21
+34302,1308859.246,1781599.461,501489.2603,21
+34303,1309626.076,1780784.602,494026.8335,21
+34304,1311161.402,1783409.539,488612.0588,21
+34305,1312231.211,1783259.902,481311.0918,21
+34306,1313423.7,1784769.332,475993.6823,21
+34307,1313575.229,1785714.925,469748.6935,21
+34308,1315615.698,1786941.95,464463.9478,21
+34309,1316015.672,1786673.638,458988.9348,21
+34310,1316992.999,1788704.009,453983.1253,21
+34311,1318722.483,1787934.777,448554.0582,21
+34312,1319330.721,1791317.512,444147.0858,21
+34313,1319813.875,1790293.427,439481.987,21
+34314,1321332.199,1792242.505,434182.3004,21
+34315,1322389.654,1792006.53,430353.8123,21
+34316,1323002.689,1793257.38,426542.1558,21
+34317,1324572.695,1794655.262,421942.6462,21
+34318,1325046.8,1794818.805,417983.9645,21
+34319,1326516.908,1795932.439,414385.7123,21
+34320,1326662.088,1796610.462,410986.6923,21
+34321,1336223.767,1806351.993,411637.547,21
+34322,1337671.843,1806210.061,408950.9878,21
+34323,1337962.788,1807536.269,405893.5903,21
+34324,1339447.903,1807378.289,404121.7237,21
+34325,1339964.943,1807598.665,411490.6801,21
+34326,1341067.609,1808505.027,405125.3563,21
+34327,1340330.004,1807245.801,406696.6155,21
+34328,1343317.398,1808346.906,402844.3574,21
+34329,1342127.072,1808032.597,403116.125,21
+34330,1343668.611,1808331.066,938072.1472,21
+34331,1343605.961,1808353.499,244814.3676,21
+34332,1345873.378,1807864.498,338687.2984,21
+34333,1344571.911,1808536.38,983791.8461,21
+34334,1345903.884,1808578.081,250991.5734,21
+34335,1347405.394,1807706.496,586657.8931,21
+34336,1347544.393,1809381.932,251857.1169,21
+34337,1347681.547,1808492.651,258459.5496,21
+34338,1348415.69,1807608.443,255824.0075,21
+34339,1350366.856,1809402.429,483432.5039,21
+34340,1348854.455,1807864.398,496992.488,21
+34341,1350691.999,1808627.631,258216.9927,21
+34342,1351935.205,1807818.844,262711.5733,21
+34343,1351040.191,1808937.903,500116.5912,21
+34344,1352411.143,1808802.268,477490.8459,21
+34345,1352936.162,1807711.105,489081.4629,21
+34346,1353666.959,1808549.445,261712.5374,21
+34347,1353648.284,1808469.288,264904.2946,21
+34348,1355833.536,1807988.187,500010.9659,21
+34349,1354110.155,1808851.531,473661.9427,21
+34350,1355435.572,1806986.02,484858.7333,21
+34351,1356768.185,1808405.477,264362.333,21
+34352,1357237.027,1807942.609,269614.5883,21
+34353,1356591.048,1807637.107,499190.7487,21
+34354,1357320.525,1807758.929,470446.573,21
+34355,1359295.329,1807169.242,413717.7385,21
+34356,1358986.692,1807586.437,432564.4963,21
+34357,1358832.115,1807821.424,423488.6676,21
+34358,1361079.156,1807262.452,422110.7299,21
+34359,1359946.169,1806741.591,420244.5243,21
+34360,1361815.53,1807708.363,420461.4156,21
+34361,1361165.193,1807009,955992.6466,21
+34362,1362820.945,1806519.867,274992.4477,21
+34363,1361677.178,1806877.514,362962.5066,21
+34364,1363470.542,1807028.085,1001561.226,21
+34365,1364136.979,1806023.964,283615.4748,21
+34366,1364519.258,1806961.267,608240.2576,21
+34367,1364655.565,1804608.904,283520.6703,21
+34368,1365302.25,1807541.168,287750.0715,21
+34369,1364993.693,1805405.289,288049.9595,21
+34370,1366477.171,1805041.22,505325.7909,21
+34371,1366828.912,1806758.291,523438.9116,21
+34372,1366628.752,1804713.603,289686.6325,21
+34373,1368542.738,1806832.35,292688.5151,21
+34374,1367615.269,1804005.233,523399.5691,21
+34375,1369363.925,1805630.09,502622.2707,21
+34376,1367883.542,1804867.036,518422.0467,21
+34377,1370742.02,1804950.41,291710.8115,21
+34378,1370013.739,1804716.312,295273.7733,21
+34379,1370493.295,1804225.244,525451.0771,21
+34380,1371030.964,1803796.545,500253.5222,21
+34381,1371206.12,1805337.54,515637.7087,21
+34382,1372919.99,1805670.286,295900.4083,21
+34383,1371945.79,1806082.615,300364.0583,21
+34384,1372716.432,1806702.603,527955.1603,21
+34385,1373205.179,1807371.005,499605.2231,21
+34386,1372794.336,1806996.806,516331.3422,21
+34387,1372429.001,2189027.952,300012.868,21
+34388,1373896.847,1806934.914,302261.8182,21
+34389,1372581.546,1808526.827,532687.7377,21
+34390,1374299.847,1808835.699,497192.6059,21
+34391,1372629.627,1808876.174,517140.354,21
+34392,1373120.227,1809430.605,302737.7915,21
+34393,1373645.428,1808911.008,305917.3378,21
+34394,1373849.903,1810074.492,533370.0848,21
+34395,1374282.934,1809648.453,498039.8773,21
+34396,1372550.521,1811021.703,517799.5976,21
+34397,1374263.142,1810377.092,306636.4505,21
+34398,1373840.205,1810921.705,310501.5173,21
+34399,1374217.97,1812194.748,534345.3742,21
+34400,1374079.071,1810538.25,501371.223,21
+34401,1373851.143,1812135.394,520727.6175,21
+34402,1374295.364,1812131.329,310073.3405,21
+34403,1374133.031,1812357.004,313619.4674,21
+34404,1373471.153,1813039.273,538458.0016,21
+34405,1375966.449,1812404.373,502410.8718,21
+34406,1373478.464,1813943.621,525536.0528,21
+34407,1374007.388,1813288.256,314421.1751,21
+34408,1375273.851,1814425.497,316942.5923,21
+34409,1373715.428,1812951.9,540473.1443,21
+34410,1376650.174,1814809.753,507441.2978,21
+34411,1375073.432,1814594.579,527701.8689,21
+34412,1376989.819,2196027.054,318598.351,21
+34413,1376376.238,1814827.51,321529.7292,21
+34414,1375974.858,1816076.234,544057.4171,21
+34415,1376311.896,1815299.138,510045.4531,21
+34416,1376973.956,1815892.952,534447.9797,21
+34417,1375894.584,1816344.886,320172.0113,21
+34418,1376935.115,1816698.239,327124.0757,21
+34419,1375995.979,1816983.733,547293.458,21
+34420,1376638.613,1817519.849,514760.9653,21
+34421,1375983.718,1815883.899,537019.1458,21
+34422,1377242.343,1818691.948,326155.7916,21
+34423,1376223.308,1818386.464,330004.8226,21
+34424,1377509.439,1817256.942,550971.8459,21
+34425,1376369.585,1819013.784,518890.1839,21
+34426,1375960.301,1818251.474,542269.8633,21
+34427,1377357.528,1818633.764,330236.3062,21
+34428,1377097.93,1820466.899,333693.4666,21
+34429,1376585.764,1818956.796,555945.854,21
+34430,1377168.831,1819341.286,522669.7973,21
+34431,1376174.126,1820065.01,546640.8082,21
+34432,1377131.252,1820583.878,335523.35,21
+34433,1377265.899,1820489.515,336900.4606,21
+34434,1377029.693,1820717.973,559915.1247,21
+34435,1376295.93,1821071.75,527455.821,21
+34436,1377180.375,1820601.211,551358.4084,21
+34437,1377214.067,2201810.307,338716.858,21
+34438,1376357.651,1821681.414,342220.095,21
+34439,1377218.583,1822444.982,563708.6475,21
+34440,1377268.222,1821323.392,532119.5082,15.6
+34441,0,0,0,15.6
+34442,0,0,0,15.6
+34443,0,0,0,15.6
+34444,427603.5593,0,0,15.6
+34445,0,0,0,15.6
+34446,0,0,1142364.699,15.6
+34447,0,0,0,15.6
+34448,0,0,0,15.6
+34449,0,0,0,15.6
+34450,0,0,0,15.6
+34451,0,0,0,15.6
+34452,0,0,0,15.6
+34453,0,0,0,15.6
+34454,0,0,0,15.6
+34455,0,0,0,15.6
+34456,0,0,0,15.6
+34457,0,0,0,15.6
+34458,0,0,0,15.6
+34459,0,0,0,15.6
+34460,0,0,0,15.6
+34461,0,0,0,15.6
+34462,0,429128.0796,0,15.6
+34463,0,0,0,15.6
+34464,0,0,0,15.6
+34465,0,0,0,15.6
+34466,0,0,0,15.6
+34467,0,0,0,15.6
+34468,0,0,0,15.6
+34469,0,0,0,15.6
+34470,0,0,0,15.6
+34471,0,0,0,15.6
+34472,0,427863.9858,0,15.6
+34473,0,0,0,15.6
+34474,0,0,0,15.6
+34475,0,0,0,15.6
+34476,0,0,0,15.6
+34477,0,0,0,15.6
+34478,0,0,0,15.6
+34479,0,0,0,15.6
+34480,0,0,0,15.6
+34481,0,0,1088966.733,15.6
+34482,0,0,0,15.6
+34483,0,0,0,15.6
+34484,0,0,0,15.6
+34485,0,0,0,15.6
+34486,0,0,0,15.6
+34487,0,0,0,15.6
+34488,0,0,0,15.6
+34489,0,0,0,15.6
+34490,0,0,0,15.6
+34491,0,184.0452154,0,15.6
+34492,0,0,0,15.6
+34493,0,0,0,15.6
+34494,32176.78379,0,0,15.6
+34495,3394.86864,0,0,15.6
+34496,3637.971324,0,0,15.6
+34497,9949.995008,0,0,15.6
+34498,10695.71255,0,0,15.6
+34499,8673.326325,0,0,15.6
+34500,9413.977785,0,0,15.6
+34501,9644.416933,0,0,15.6
+34502,9801.687681,232.4176927,0,15.6
+34503,9910.096458,0,0,15.6
+34504,10036.30111,0,0,15.6
+34505,10175.37331,0,0,15.6
+34506,10283.56868,0,0,15.6
+34507,10434.19542,0,0,15.6
+34508,10486.821,0,0,15.6
+34509,10667.6603,0,0,15.6
+34510,10733.52758,0,0,15.6
+34511,10857.80979,0,0,15.6
+34512,10975.98343,0,0,15.6
+34513,11042.68339,428914.2349,0,15.6
+34514,11228.94989,0,0,15.6
+34515,11264.61375,0,0,15.6
+34516,11411.30654,0,1041715.73,15.6
+34517,11504.7059,0,0,15.6
+34518,11598.92099,0,0,15.6
+34519,11715.68278,0,0,15.6
+34520,11782.43146,0,0,15.6
+34521,11926.19693,0,0,15.6
+34522,11978.66694,0,0,15.6
+34523,12099.9842,427606.8102,0,15.6
+34524,0,0,0,15.6
+34525,0,0,0,15.6
+34526,0,0,0,15.6
+34527,0,0,637723.3638,15.6
+34528,0,0,0,15.6
+34529,53878.18453,0,0,15.6
+34530,0,0,666537.3569,15.6
+34531,3243.347165,0,0,15.6
+34532,19357.98997,0,0,15.6
+34533,12461.70547,0,677102.2591,15.6
+34534,12821.60541,0,0,15.6
+34535,13208.46686,0,0,15.6
+34536,13307.7101,0,684712.2881,15.6
+34537,13381.27656,0,5.550054813,15.6
+34538,13452.87787,0,0,15.6
+34539,13531.67419,0,691583.113,15.6
+34540,13626.62635,35061.28369,155.7423765,15.6
+34541,13670.09698,2851.340974,0,15.6
+34542,13775.67418,434678.0281,698140.3181,15.6
+34543,13845.74424,12667.97757,162.7006638,15.6
+34544,13920.34296,11622.52155,0,15.6
+34545,14022.98605,10525.01095,704391.3818,15.6
+34546,14040.87509,11023.52203,166.7617601,15.6
+34547,14129.52964,11211.13922,0,15.6
+34548,14222.17853,11212.10758,710355.2106,15.6
+34549,14278.16383,11348.71872,169.7376024,15.6
+34550,14335.82756,11384.06043,0,15.6
+34551,14423.48793,11534.56426,1662737.136,15.6
+34552,14494.37517,439013.1638,55.16261648,15.6
+34553,14530.74665,11665.40681,0,15.6
+34554,14633.17534,11751.87426,710519.5124,15.6
+34555,14688.17786,11822.72552,157.8530595,15.6
+34556,14729.74089,11881.92714,0,15.6
+34557,14820.59611,11952.525,716175.3383,15.6
+34558,14885.91719,12051.59529,173.0255897,15.6
+34559,0,12113.88701,0,15.6
+34560,0,12232.04526,721634.4323,15.6
+34561,0,12429.17045,170.4503143,15.6
+34562,0,12589.788,0,15.6
+34563,63716.54816,12634.11329,726810.1711,15.6
+34564,0,12697.08226,174.1895899,15.6
+34565,6036.488287,12780.70434,0,15.6
+34566,24182.36251,12894.33835,731737.4126,15.6
+34567,14449.83154,12900.58896,176.8660538,15.6
+34568,16111.44031,13020.29951,0,15.6
+34569,16279.96931,13096.77842,736463.0701,15.6
+34570,16344.30053,0,173.9270196,15.6
+34571,16522.1028,402.2270759,0,15.6
+34572,16517.80094,0,740970.1822,15.6
+34573,16702.16982,0,174.1527078,15.6
+34574,16777.71032,0,0,15.6
+34575,16890.86213,0,745301.3222,15.6
+34576,16993.78552,56359.33261,170.2814516,15.6
+34577,17058.80375,0,0,15.6
+34578,17213.72375,4716.136086,749426.7365,15.6
+34579,17284.30104,19617.51785,170.9198852,15.6
+34580,17389.30628,13827.84478,0,15.6
+34581,17478.80342,13669.119,753384.3725,15.6
+34582,17613.97338,14144.16928,167.9532475,15.6
+34583,17664.20065,14158.233,0,15.6
+34584,17804.20763,14300.35636,757151.1443,15.6
+34585,17875.09753,14330.46976,168.6262533,15.6
+34586,17976.01243,14385.4475,1159862.915,15.6
+34587,18069.0168,14468.69625,740835.1576,15.6
+34588,18173.23465,14525.15291,54.08434585,15.6
+34589,18280.44866,14602.68161,0,15.6
+34590,18385.86115,14620.42829,745187.3953,15.6
+34591,18430.31701,14734.54752,153.2778128,15.6
+34592,18598.13477,14765.56347,0,15.6
+34593,0,14838.28681,749237.2878,15.6
+34594,0,14872.68805,165.8613977,15.6
+34595,0,15022.49501,0,15.6
+34596,70492.25038,15004.38524,753159.6834,15.6
+34597,1377.651653,15094.05765,159.6836778,15.6
+34598,12024.5728,15086.04095,0,15.6
+34599,26007.64676,15205.19122,756930.6812,15.6
+34600,18152.4064,15241.63959,154.8053545,15.6
+34601,19426.59696,15340.44522,0,15.6
+34602,19555.36674,15359.68549,760516.9357,15.6
+34603,19650.46227,15419.30949,155.8655503,15.6
+34604,19712.44306,15454.23991,0,15.6
+34605,19853.55771,15508.6727,763963.1901,15.6
+34606,19917.51433,0,152.4357964,15.6
+34607,299316.3038,101.9179527,0,15.6
+34608,33963.10537,0,767242.7981,15.6
+34609,50326.30274,0,152.8566261,15.6
+34610,109006.2366,61237.05513,0,15.6
+34611,110922.425,4.150227793,770396.9997,15.6
+34612,94609.7828,6676.359157,149.2128292,15.6
+34613,101649.5611,23362.88023,0,15.6
+34614,102019.2321,14958.07518,773401.4194,15.6
+34615,103611.0726,15967.31139,149.0822484,15.6
+34616,104092.4878,16212.94513,0,15.6
+34617,105240.0884,16226.94234,776297.0329,15.6
+34618,106055.6613,16289.12203,144.9375577,15.6
+34619,107173.9369,16415.52632,0,15.6
+34620,108175.8432,16418.43114,779049.2712,15.6
+34621,108340.0762,16383.8662,1092212.285,15.6
+34622,109485.0088,16518.16344,129166.0386,15.6
+34623,109411.5257,16481.38368,761498.2712,15.6
+34624,110353.3886,16572.52724,2370.178156,15.6
+34625,110342.4142,445025.9648,363227.0813,15.6
+34626,90034.09595,16670.5131,2592.05821,15.6
+34627,90116.00814,16663.7702,6584.597493,15.6
+34628,90752.53263,16703.36116,31417.09372,15.6
+34629,169479.0649,16772.7735,210886.524,15.6
+34630,97637.58929,16801.01975,23061.84418,15.6
+34631,105079.5714,16828.48354,3588.60018,15.6
+34632,121459.2472,16898.4219,266073.4743,15.6
+34633,113550.403,16929.72176,242501.1432,15.6
+34634,115102.5912,16941.45296,180757.983,15.6
+34635,116013.4289,444143.4081,194647.1252,15.6
+34636,115818.0858,17064.72964,183105.4081,15.6
+34637,21872.99899,17055.28599,176611.6776,15.6
+34638,21818.0515,17139.16833,171495.0729,15.6
+34639,21895.22264,17189.90831,166840.8359,15.6
+34640,21943.29098,0,162406.2052,15.6
+34641,21932.7063,0,158123.8383,15.6
+34642,21982.70192,0,153972.885,15.6
+34643,22024.99516,0,149945.1325,15.6
+34644,444106.2622,71421.16213,146035.7057,15.6
+34645,22060.94594,0,142240.8513,15.6
+34646,55253.48536,5042.558865,138557.194,15.6
+34647,154053.738,27618.48563,134981.5071,15.6
+34648,127208.6074,15611.63227,131510.6358,15.6
+34649,118059.2897,17556.12211,128141.722,15.6
+34650,122522.8899,17710.9973,0,15.6
+34651,123327.2329,17688.93805,0,15.6
+34652,123517.9017,17723.69868,0,15.6
+34653,123928.461,17821.2383,0,15.6
+34654,124468.3663,446067.7,0,15.6
+34655,124473.7487,17816.5831,593320.6471,15.6
+34656,125108.3979,17931.14344,763477.1904,15.6
+34657,125500.3053,17887.20229,0,15.6
+34658,125547.4967,17948.4414,617867.3135,15.6
+34659,103550.6587,18018.83176,0,15.6
+34660,104140.8421,17946.17615,0,15.6
+34661,104088.0462,18113.18524,629749.9511,15.6
+34662,185805.7157,18040.71282,0,15.6
+34663,114349.504,18128.12792,0,15.6
+34664,117665.2992,445149.2424,638890.7682,15.6
+34665,135603.8871,18171.7184,0,15.6
+34666,127656.0287,18215.2692,0,15.6
+34667,128823.281,18224.46967,0,15.6
+34668,129474.6273,18258.85967,0,15.6
+34669,129593.4043,18308.0117,0,15.6
+34670,129914.2422,18311.43126,0,15.6
+34671,130595.2987,18367.43922,0,15.6
+34672,130350.4879,18411.92706,0,15.6
+34673,131069.8162,18396.9961,0,15.6
+34674,22854.5784,0,0,15.6
+34675,22891.86937,0,0,15.6
+34676,22889.42883,0,0,15.6
+34677,22906.88351,0,0,15.6
+34678,22931.36922,78294.26109,0,15.6
+34679,22976.42577,0,0,15.6
+34680,516249.8014,6254.839357,0,15.6
+34681,23029.05423,28907.85465,0,15.6
+34682,41613.36099,16923.80944,0,15.6
+34683,192399.2425,18798.42953,0,15.6
+34684,133111.5889,18904.24613,0,15.6
+34685,132588.1226,18900.60155,0,15.6
+34686,137064.1011,18863.5269,0,15.6
+34687,137401.3872,18989.57903,0,15.6
+34688,138189.4092,18972.14397,0,15.6
+34689,138279.5246,18989.5779,0,15.6
+34690,139062.7112,19018.43633,0,15.6
+34691,139535.2808,19064.18085,946039.447,15.6
+34692,116751.1686,19095.96533,0,15.6
+34693,116690.9903,19091.0384,0,15.6
+34694,117549.8374,19246.12087,0,15.6
+34695,201495.3804,19161.52497,0,15.6
+34696,132772.7831,19181.50255,0,15.6
+34697,129169.766,19274.30224,0,15.6
+34698,151713.1484,19201.34937,0,15.6
+34699,142754.2062,19320.79213,0,15.6
+34700,144127.3678,19356.74976,0,15.6
+34701,144592.9935,19357.46556,135884.6396,15.6
+34702,145604.3292,19357.4651,135871.6065,15.6
+34703,145545.1592,19429.33901,132426.7162,15.6
+34704,146499.3643,19379.43593,129122.6744,15.6
+34705,146723.9824,19462.74723,125936.2305,15.6
+34706,147516.3713,19595.60287,122840.1016,15.6
+34707,147706.1466,19520.26421,119844.7073,15.6
+34708,148512.056,0,116920.4057,15.6
+34709,148874.5724,0,114096.4698,15.6
+34710,24287.16377,4.06470132,111324.3269,15.6
+34711,24336.24302,72356.54781,108649.4175,15.6
+34712,24420.66263,98.92751542,106311.5976,15.6
+34713,24391.82819,11925.99971,103274.6978,15.6
+34714,24492.08891,27278.68847,101166.1247,15.6
+34715,584794.7553,18369.2542,98599.79588,15.6
+34716,24575.76766,19821.73743,96299.53878,15.6
+34717,51351.62409,19886.5205,553372.6269,15.6
+34718,230722.3056,20033.42177,7621.802902,15.6
+34719,141760.0655,19957.24285,67304.69207,15.6
+34720,154001.0911,19951.58211,579445.0106,15.6
+34721,155116.7501,20017.86598,7863.048294,15.6
+34722,155945.5402,20037.34779,67941.6071,15.6
+34723,156067.3143,20033.08512,591219.7015,15.6
+34724,156753.4307,20232.66261,8072.362373,15.6
+34725,132347.9281,20081.44845,70860.97798,15.6
+34726,132361.3147,20148.47054,1308103.92,15.6
+34727,133240.5734,20151.68818,10626.35437,15.6
+34728,219189.1351,20225.74241,69284.79045,15.6
+34729,154473.6827,20196.72704,617920.657,15.6
+34730,144123.7328,20370.03432,0,15.6
+34731,168557.8141,20266.80589,0,15.6
+34732,159786.376,20320.14887,0,15.6
+34733,161014.5702,20288.73054,0,15.6
+34734,161430.1029,20406.29468,0,15.6
+34735,162144.1458,20314.74611,0,15.6
+34736,162377.0105,20526.46333,0,15.6
+34737,162868.5905,20449.82852,0,15.6
+34738,163349.647,20423.91383,0,15.6
+34739,163913.5256,20519.32801,0,15.6
+34740,164323.2052,20508.52687,0,15.6
+34741,164893.8376,0,0,15.6
+34742,165678.1216,109.5248316,0,15.6
+34743,165917.5017,0,0,15.6
+34744,166569.4192,75573.98336,0,15.6
+34745,25805.49433,427993.5363,0,15.6
+34746,25905.08661,13978.47198,0,15.6
+34747,25915.42226,27883.0988,0,15.6
+34748,25971.74565,19629.54173,0,15.6
+34749,620209.193,20905.99791,0,15.6
+34750,26083.74808,21015.98933,0,15.6
+34751,80949.22588,21026.98646,0,15.6
+34752,246903.7751,21104.55681,0,15.6
+34753,157841.7209,21064.09556,0,15.6
+34754,172199.6231,21226.23389,0,15.6
+34755,173532.0423,447910.0772,0,15.6
+34756,173502.2031,21238.06923,0,15.6
+34757,174178.3494,21300.19287,0,15.6
+34758,148357.2032,21336.54664,0,15.6
+34759,148548.2855,21353.57402,0,15.6
+34760,227929.2436,21436.08487,0,15.6
+34761,162049.9871,21431.70026,0,15.6
+34762,172485.4826,21483.58612,845693.071,15.6
+34763,180699.9486,21550.94357,0,15.6
+34764,177830.8844,21562.6906,0,15.6
+34765,178272.8199,21596.81483,0,15.6
+34766,178785.5187,21661.5724,0,15.6
+34767,179223.3733,21681.52709,0,15.6
+34768,179955.0228,21774.21436,0,15.6
+34769,180337.8617,21738.94182,0,15.6
+34770,180932.4251,21846.84949,0,15.6
+34771,181020.0761,21826.99146,580162.6072,15.6
+34772,182346.7711,21949.33861,0,15.6
+34773,182127.4953,21858.50695,0,15.6
+34774,183104.9427,0,607684.9818,15.6
+34775,183225.5931,427812.0076,0,15.6
+34776,183960.2631,0,0,15.6
+34777,184495.6507,80873.68755,619723.9114,15.6
+34778,185171.4071,1551.79305,0,15.6
+34779,27728.43608,14147.45316,0,15.6
+34780,27693.19928,30014.88606,629138.3115,15.6
+34781,27860.21117,21006.31954,0,15.6
+34782,27805.01574,22405.69147,0,15.6
+34783,696448.0111,22516.42824,643900.2198,15.6
+34784,52627.25051,22506.96224,0,15.6
+34785,73329.77765,715252.9241,0,15.6
+34786,278236.9123,59283.96178,647197.0722,15.6
+34787,174339.6802,68665.35138,6131.283069,15.6
+34788,190869.2025,126594.0952,255383.6857,15.6
+34789,191616.3068,118447.4674,9540.091044,15.6
+34790,163762.3193,108759.2158,12320.73013,15.6
+34791,164274.7286,112891.0247,43091.00026,15.6
+34792,246077.8456,112971.9979,124482.2527,15.6
+34793,182539.3011,114054.0878,208519.1379,15.6
+34794,187043.6942,113788.4462,170007.0991,15.6
+34795,198943.4128,114579.7371,10210.58173,15.6
+34796,194178.758,115195.8216,12254.90928,15.6
+34797,195458.4041,115162.6873,22874.31914,15.6
+34798,195344.6872,116098.7131,904982.2121,15.6
+34799,196602.9856,116247.1603,151498.9069,15.6
+34800,196243.9735,116855.7604,140010.0232,17.8
+34801,1070264.984,1401964.276,104101.483,17.8
+34802,920266.4153,948575.8158,41624.20607,17.8
+34803,451898.3951,214937.9569,49745.05883,17.8
+34804,600384.649,290686.2937,184813.8991,17.8
+34805,439888.0402,472397.3759,159706.7586,17.8
+34806,446497.6233,377677.4114,50997.75058,17.8
+34807,452208.6791,307163.514,52092.83558,17.8
+34808,439738.5045,307378.6353,196811.2519,17.8
+34809,435449.8605,434700.7268,173054.938,17.8
+34810,434782.67,369533.2837,145950.0574,17.8
+34811,432880.4659,798261.2137,152964.9074,17.8
+34812,431679.2708,369311.5798,147650.9772,17.8
+34813,76741.56027,371822.8726,144897.1875,17.8
+34814,76555.21265,369070.0648,142888.0249,17.8
+34815,888881.2471,79921.933,141095.9417,17.8
+34816,488316.9242,79574.54345,129918.7511,17.8
+34817,355782.107,79648.05874,128064.0812,17.8
+34818,440053.7936,990884.5213,126140.5689,17.8
+34819,434454.904,198862.7915,124333.4943,17.8
+34820,423841.3417,279476.2146,122572.7167,17.8
+34821,421891.6949,861148.3363,120490.6069,17.8
+34822,357001.4574,354642.4883,119767.9392,17.8
+34823,355660.9476,363387.957,117618.4572,17.8
+34824,447143.685,362943.9275,131081.1031,17.8
+34825,443923.1959,363158.1471,38566.13634,17.8
+34826,419710.8352,362300.4035,39690.21005,17.8
+34827,417504.4774,361640.4488,43592.91758,17.8
+34828,755228.507,361695.0469,127382.789,17.8
+34829,417953.6944,361169.7629,120093.9516,17.8
+34830,415013.2,360424.7132,113861.5642,17.8
+34831,404182.5704,346359.7515,0,17.8
+34832,402427.7397,345298.2052,718473.6008,17.8
+34833,402733.8979,345376.4972,0,17.8
+34834,401122.0364,344876.208,0,17.8
+34835,401386.6437,344737.4407,0,17.8
+34836,400123.1551,344320.4414,0,17.8
+34837,399938.8038,382843.4204,0,17.8
+34838,398765.9324,344541.413,0,17.8
+34839,398757.2834,719265.9598,200244.2127,17.8
+34840,397433.474,299051.3625,115071.9167,17.8
+34841,430626.2323,422370.165,96138.24982,17.8
+34842,398065.7115,346089.187,115668.9957,17.8
+34843,401384.4691,356009.6154,104653.4525,17.8
+34844,410127.4147,358140.6776,104454.7881,17.8
+34845,72857.89556,357713.2515,103290.522,17.8
+34846,72700.54909,357068.4573,102211.6229,17.8
+34847,873523.6067,356029.8799,552151.9488,17.8
+34848,427271.235,77350.74517,40293.20214,17.8
+34849,326922.5339,503462.0424,84635.64253,17.8
+34850,431568.3217,77361.25096,581527.6799,17.8
+34851,408442.6344,955229.7108,41419.95977,17.8
+34852,403285.3415,181638.828,88173.15605,17.8
+34853,401902.618,285545.6111,597931.4415,17.8
+34854,340522.8762,418377.1038,42538.85917,17.8
+34855,339953.9658,347541.267,93203.46501,17.8
+34856,431009.543,356031.954,611729.5336,17.8
+34857,423863.3735,355266.8082,46105.91492,17.8
+34858,401114.1257,356012.4799,210583.0778,17.8
+34859,396683.0408,355542.4055,46491.51573,17.8
+34860,401148.5468,355058.2945,45502.3026,20
+34861,2316818.918,1847279.994,1711489.797,20
+34862,2040207.549,1453247.328,1305330.022,20
+34863,1011914.918,552377.4884,502790.1667,20
+34864,757784.1471,870133.792,489705.4667,20
+34865,813249.7811,837677.943,731549.2289,20
+34866,1510279.323,813917.6781,1358267.041,20
+34867,905437.8333,717527.1306,609557.0786,20
+34868,957843.5732,715470.5321,617629.4106,20
+34869,954733.9534,811513.4043,541848.637,20
+34870,919199.7024,733227.7886,544839.6596,20
+34871,905952.5867,617128.7228,718048.7471,20
+34872,897545.7912,827589.0975,628054.6056,20
+34873,893670.1885,723792.7852,632148.5888,20
+34874,965163.6851,735222.7538,658997.0427,20
+34875,935367.0876,740244.326,651193.4682,20
+34876,905594.5816,734996.0779,658482.873,20
+34877,156825.3124,732305.0973,662431.6898,20
+34878,999471.0767,731730.8648,667534.9634,20
+34879,987574.2309,727611.1253,677582.5976,20
+34880,901060.8034,728102.5285,685387.8347,20
+34881,949675.3158,159762.6098,692532.9521,20
+34882,885361.7169,159011.3716,697028.4166,20
+34883,914906.2637,1241954.953,702671.4997,20
+34884,907236.1769,626721.6535,705712.6401,20
+34885,903984.4078,668581.1483,709484.7098,20
+34886,783220.3434,686070.4559,716140.7262,20
+34887,947568.5833,650988.3936,715987.518,20
+34888,893635.7456,773392.4307,724456.1988,20
+34889,896524.685,693412.6046,724518.8997,20
+34890,894953.3954,713330.273,1353099.436,20
+34891,889910.0641,710591.6368,127116.1536,20
+34892,890794.8563,711100.636,238131.4779,20
+34893,887214.9169,708713.0121,860741.3453,20
+34894,887450.0762,708313.7942,127690.4581,20
+34895,883749.185,707087.919,232472.9228,20
+34896,882976.2449,706284.4216,2256074.624,20
+34897,882282.0287,705248.4204,427497.0125,20
+34898,880493.0188,704293.2138,551487.9371,20
+34899,880305.6111,669087.0079,875135.0803,20
+34900,877870.6324,668969.5434,1743719.956,20
+34901,876672.0808,666822.2529,758951.8703,20
+34902,876386.8006,643210.8951,526622.0959,20
+34903,874122.8337,573425.921,534275.2076,20
+34904,1183269.334,814009.5907,756852.0497,20
+34905,842609.9789,699167.1229,783923.9914,20
+34906,841745.43,685598.096,676883.1259,20
+34907,911015.1681,709658.0842,761153.7672,20
+34908,157104.2045,700943.7892,707177.6381,20
+34909,131182.7187,698061.9919,711220.5331,20
+34910,962456.133,696034.7567,712550.8702,20
+34911,1037974.652,696659.3666,713657.3152,20
+34912,853790.8779,694397.6068,715069.2368,20
+34913,933631.1529,147749.8062,716572.953,20
+34914,896801.1689,147252.9,717716.1986,20
+34915,859643.1659,1231384.534,718419.9907,20
+34916,888497.3963,540112.3749,720092.3382,20
+34917,763489.2047,679273.6052,720863.8859,20
+34918,920711.6565,604020.1029,722080.6743,20
+34919,852265.7713,717131.5446,723212.5053,20
+34920,863875.6743,706948.0708,722819.8251,21
+34921,2315482.239,2999873.658,3845961.125,21
+34922,2228777.125,2100541.569,1765843.227,21
+34923,717442.8085,732036.0066,505983.4238,21
+34924,815762.674,850079.1833,927030.4189,21
+34925,1351682.124,1056099.31,930829.4953,21
+34926,1035713.801,1144595.462,943048.0146,21
+34927,1053656.203,1002273.073,1602516.427,21
+34928,1062276.305,1010981.725,866194.037,21
+34929,1056244.128,1022535.124,890105.4758,21
+34930,1054896.685,1015272.823,1661464.282,21
+34931,1050699.778,1438698.917,900611.0875,21
+34932,1047210.758,1010371.655,909012.1909,21
+34933,1047169.364,1006035.428,1702961.088,21
+34934,1042726.729,1003363.61,920432.785,21
+34935,1041402.564,1002090.814,921712.8826,21
+34936,1038519.038,998979.4455,1738567.687,21
+34937,1037397.179,995585.1125,939604.1959,21
+34938,1035498.213,995512.343,1360824.111,21
+34939,1033084.917,991276.5667,922386.9295,21
+34940,1030567.085,989728.8504,932211.7842,21
+34941,1030617.838,1414955.258,931871.896,21
+34942,1026704.017,984496.8458,1126676.962,21
+34943,1027703.094,985822.6259,969573.0803,21
+34944,1019842.446,981373.3694,1037166.931,21
+34945,1020225.33,979927.9711,1019644.867,21
+34946,1017150.899,979752.2539,1016421.017,21
+34947,1015429.521,975819.3633,1019780.626,21
+34948,1015275.746,974826.2884,1016803.155,21
+34949,1011198.443,973939.5105,1019541.268,21
+34950,1009709.177,972194.3263,1020298.742,21
+34951,1008920.02,969744.1769,1021292.755,21
+34952,1006110.962,968551.9163,1020730.048,21
+34953,1004378.134,968056.0097,1023293.066,21
+34954,1004137.331,965038.513,1022284.427,21
+34955,1001317.831,965700.2156,1023884.678,21
+34956,999302.4945,961537.7144,1024950.835,21
+34957,998609.9983,962687.7053,1023828.641,21
+34958,997292.4854,959801.9489,1027393.889,21
+34959,995444.0745,958567.2106,1025611.63,21
+34960,996120.1565,957588.3324,1027589.133,21
+34961,991284.603,957146.3038,1026603.396,21
+34962,992502.5497,953470.9656,1028608.738,21
+34963,988992.8374,955383.7977,1029094.613,21
+34964,990997.7693,951112.169,1029266.718,21
+34965,986188.5525,952585.8718,1029318.697,21
+34966,987690.3202,1376123.39,1031926.957,21
+34967,984919.5612,948418.9082,1030201.002,21
+34968,984946.1083,948184.0883,1032787.817,21
+34969,983140.3985,946836.0534,1032963.682,21
+34970,981139.0051,944931.2498,1032186.554,21
+34971,982419.6051,943834.8485,1765721.993,21
+34972,978604.8031,943583.4096,955625.9004,21
+34973,979462.9465,942561.3413,957956.9934,21
+34974,978742.8842,939216.9603,1815612.596,21
+34975,976428.959,941789.6539,963070.2722,21
+34976,976037.4847,1364863.479,970424.2977,21
+34977,975304.2127,937685.3712,1836334.622,21
+34978,972440.5003,936926.3863,973502.6433,21
+34979,974421.7845,936430.6876,977119.0276,21
+34980,972857.6021,934106.2665,1852803.619,21
+34981,1683611.491,2101425.226,933934.4333,21
+34982,1679492.505,2094233.402,1404020.626,21
+34983,1677030.806,2093995.003,901282.2338,21
+34984,1675667.971,2091915.493,908836.0133,21
+34985,1673384.191,2090768.799,906930.3568,21
+34986,1673195.841,2090669.575,1123983.087,21
+34987,1671632.705,2089686.586,1306385.352,21
+34988,1670440.083,2087940.249,889286.6202,21
+34989,1667961.358,2086869.308,896023.4688,21
+34990,1668338.091,2087075.526,944527.1959,21
+34991,1666242.63,2086273.765,952768.6427,21
+34992,1666415.784,2084137.969,1099921.37,21
+34993,1664024.719,2085964.727,1218469.863,21
+34994,1663228.183,2083323.055,881022.9386,21
+34995,1662429.601,2082664.656,888564.3651,21
+34996,1660321.374,2082268.662,887585.3341,21
+34997,1661064.863,2081500.938,1060803.824,21
+34998,1659231.85,2082008.414,959972.9095,21
+34999,1658312.038,2079904.951,991573.2959,21
+35000,1656572.528,2084976.85,979784.7265,21
+35001,1656806.674,2084178.916,978294.4815,21
+35002,1655602.166,2081852.838,974768.3833,21
+35003,1655472.619,2083308.214,975964.9271,21
+35004,1652685.824,2082696.241,974288.3133,21
+35005,1652900.455,2083147.448,976353.2309,21
+35006,1652840.809,2080348.842,974093.3986,21
+35007,1650434.916,2083356.143,973925.1538,21
+35008,1650039.665,2080724.856,975038.491,21
+35009,1649617.238,2081211.784,974582.6933,21
+35010,1649263.768,2080642.076,974384.349,21
+35011,1647998.403,2081278.218,974289.1302,21
+35012,1646559.937,2080146.74,975140.4189,21
+35013,1647211.617,2079950.611,974440.9066,21
+35014,1645261.714,2079799.187,1710730.854,21
+35015,1644391.203,2080187.359,889049.7986,21
+35016,1643869.484,2079827.297,893396.2505,21
+35017,1644135.329,2078451.745,1757142.541,21
+35018,1641367.403,2079297.24,898976.3429,21
+35019,1642498.826,2078939.736,900899.8187,21
+35020,1641996.951,2078776.917,1778726.513,21
+35021,1639980.118,2078442.669,904556.4034,21
+35022,1639208.577,2078213.892,911296.8476,21
+35023,1637527.275,2078546.349,1791072.638,21
+35024,1635079.967,2078163.176,911159.7318,21
+35025,1634805.928,2077294.751,912874.9684,21
+35026,1632977.046,2078181.208,1801869.755,21
+35027,1633351.357,2077108.239,921369.1331,21
+35028,1627266.597,2078199.306,1414756.549,21
+35029,1627212.122,2076587.698,899370.2406,21
+35030,1625563.494,2076996.566,907881.5007,21
+35031,1623441.539,2077257.089,904674.5053,21
+35032,1622784.638,2077471.599,1129545.732,21
+35033,1620017.073,2075881.268,1315191.744,21
+35034,1620766.178,2076528.147,887638.0335,21
+35035,1619685.733,2077469.203,896307.8016,21
+35036,1617020.946,2076776.305,947433.7673,21
+35037,1616997.015,2075767.305,953545.457,21
+35038,1614604.796,2077634.851,1104345.799,21
+35039,1615559.874,2074621.662,1225141.951,21
+35040,1612700.02,2077257.768,880787.7028,21
+35041,1383502.366,1832161.162,622600.712,21
+35042,1367318.191,1813372.937,609247.3006,21
+35043,1360252.029,1810812.004,815376.4367,21
+35044,1356731.665,1805133.612,945608.5252,21
+35045,1351847.198,2180598.681,593585.8102,21
+35046,1346950.178,1799546.069,598038.795,21
+35047,1344381.958,1796674.895,592937.8784,21
+35048,1339310.016,1793111.448,800726.5008,21
+35049,1337187.741,1790947.879,924847.2772,21
+35050,1332400.799,1787956.825,580522.561,21
+35051,1329450.606,1786314.787,583777.1809,21
+35052,1325178.859,1782917.164,580483.6896,21
+35053,1322793.038,1781538.851,784467.9907,21
+35054,1318519.432,1778236.393,906825.7922,21
+35055,1315579.302,1776488.996,568821.3164,21
+35056,1313075.745,1773867.052,571776.9765,21
+35057,1309010.607,1772947.499,569562.9768,21
+35058,1306709.336,1769770.801,770500.2653,21
+35059,1303009.736,1768283.995,891349.4957,21
+35060,1300059.456,1766911.788,557595.0026,21
+35061,1297896.703,1765819.943,562555.4172,21
+35062,1293832.423,1764511.467,559612.8364,21
+35063,1291526.785,1764192.118,758932.8631,21
+35064,1288852.447,1762982.694,876352.5158,21
+35065,1286516.903,1761298.73,549761.9259,21
+35066,1282492.086,1761316.281,553883.8145,21
+35067,1279575.359,1759981.048,550883.4822,21
+35068,1278591.661,1759054.183,748120.914,21
+35069,1274659.956,1758543.547,865689.3583,21
+35070,1271389.319,1756839.302,541727.5724,21
+35071,1269861.237,1757000.194,545617.2267,21
+35072,1266822.24,1755437.286,543244.7836,21
+35073,1264206.986,1754995.388,738400.7404,21
+35074,1262623.55,1753924.994,854261.3294,21
+35075,1259646.523,2130850.47,532476.9151,21
+35076,1257113.487,1752681.655,536897.7917,21
+35077,1255419.433,1751144.908,533611.5497,21
+35078,1252408.511,1750977.965,729324.3628,21
+35079,1250095.966,1749899.027,843456.2664,21
+35080,1247915.48,1749303.793,524009.9699,21
+35081,1245905.11,1748622.985,527934.9435,21
+35082,1243870.217,1747776.498,525295.2725,21
+35083,1241101.757,1746781.384,720176.0482,21
+35084,1238741.131,1746172.582,833065.9,21
+35085,1236957.359,1745436.548,515988.1776,21
+35086,1233362.295,1745318.695,519369.3999,21
+35087,1233215.991,1744092.324,517518.3857,21
+35088,1228355.402,1743182.439,711742.033,21
+35089,1229017.49,1743477.98,823138.5931,21
+35090,1225241.463,1741806.688,508324.1949,21
+35091,1223154.531,1741365.796,512046.72,21
+35092,1221697.403,1740708.257,509457.6448,21
+35093,1219046.606,1740547.42,703838.7235,21
+35094,1216035.789,1739157.867,814352.167,21
+35095,1215890.102,1739140.069,500649.6501,21
+35096,1211354.644,1738530.527,504782.3199,21
+35097,1211013.84,1737405.005,502266.5336,21
+35098,1208884.199,1736880.618,696326.7876,21
+35099,1205984.538,1736328.013,805074.8887,21
+35100,1205110.202,1735913.188,493592.1877,21
+35101,1200550.48,1734588.387,495130.2145,21
+35102,1199736.108,1732623.867,490763.5459,21
+35103,1195539.494,1731219.329,685298.2548,21
+35104,1586938.236,1730468.251,791039.8442,21
+35105,1191357.124,2106352.711,480372.053,21
+35106,1188573.05,1727604.764,483696.8846,21
+35107,1587354.25,1724766.077,479692.7896,21
+35108,1183544.554,1724832.824,675634.4565,21
+35109,1180659.215,1722692.147,778250.6186,21
+35110,1581405.807,1721359.56,469713.1564,21
+35111,1176004.169,1720052.524,472648.7868,21
+35112,1172849.736,1718939.546,469571.4073,21
+35113,1574142.086,1716397.808,665608.2075,21
+35114,1169235.37,1716374.312,766295.919,21
+35115,1164974.328,1714338.634,458795.5631,21
+35116,1567397.319,1712723.336,462874.5632,21
+35117,1161031.655,1711784.635,458542.6769,21
+35118,1158601.95,1709920.298,656716.348,21
+35119,1559320.713,1709848.296,754241.1119,21
+35120,1153567.91,1706291.999,448566.2248,21
+35121,1151097.105,1706774.463,452252.5011,21
+35122,1552265.119,1704578.736,448712.8067,21
+35123,1146885.793,1703456.843,647339.5463,21
+35124,1143552.655,2080690.207,742188.296,21
+35125,1545889.572,1700721.058,438911.3458,21
+35126,1138538.814,1699050.339,441687.3589,21
+35127,1136586.181,1698202.526,438201.8288,21
+35128,1538799.291,1696791.469,638300.3652,21
+35129,1131373.919,1695108.458,730155.129,21
+35130,1129415.336,1694102.949,428743.1337,21
+35131,1531318.785,1692799.97,431521.7437,21
+35132,1125081.472,1690686.783,429396.584,21
+35133,1121485.591,1690372.259,630218.7612,21
+35134,1523951.451,1688603.053,721208.6187,21
+35135,1117496.041,1686692.739,420420.356,21
+35136,1114416.743,1686716.524,424698.3487,21
+35137,1516804.308,1684048.687,421404.145,21
+35138,1110232.448,1683687.335,624117.4354,21
+35139,1106768.678,1682121.613,711838.1948,21
+35140,1509468.29,1680519.287,413771.056,21
+35141,1103166.188,1679098.904,416822.9848,21
+35142,1099879.57,1678734.916,414869.8399,21
+35143,1502883.827,1676510.668,617567.6765,21
+35144,1094300.264,2054743.769,703533.1441,21
+35145,1093611.783,1674283.834,406333.6323,21
+35146,1494764.891,1673217.178,410909.8559,21
+35147,1088711.11,1670813.946,406500.1219,21
+35148,1085240.916,1671285.278,612304.8424,21
+35149,1488689.052,1668338.109,694791.8391,21
+35150,1080279.173,1668207.466,399878.4152,21
+35151,1078482.055,1666443.285,402747.0545,21
+35152,1481015.011,1665263.043,401007.4031,21
+35153,1074218.205,1664012.563,605706.5752,21
+35154,1070060.211,1662342.573,686425.3033,21
+35155,1474591.558,1661645.921,393035.6994,21
+35156,1066808.404,1659852.253,396739.1314,21
+35157,1063740.844,1658955.511,393675.0334,21
+35158,1467258.189,1657850.679,599964.9367,21
+35159,1059659.256,1655998.296,678739.8042,21
+35160,1056554.485,1654950.888,386458.9685,21
+35161,1460980.244,1661912.038,399160.8266,21
+35162,1054579.325,1662131.835,398218.001,21
+35163,1052778.328,1663609.467,605331.0506,21
+35164,1455470.031,1663155.842,683409.931,21
+35165,1048865.998,1664281.782,394211.6279,21
+35166,1047386.807,1663879.65,398838.7489,21
+35167,1449659.224,1665317.215,397195.4057,21
+35168,1043678.48,1664777.809,603618.7478,21
+35169,1041012.99,1665610.372,681979.0001,21
+35170,1445873.427,1666292.296,393319.248,21
+35171,1037949.636,1666250.11,397834.6842,21
+35172,1035767.383,1667025.314,396804.4332,21
+35173,1440518.138,1667334.483,601970.598,21
+35174,1033276.529,1664681.541,680560.6739,21
+35175,1031655.469,1664816.139,392656.8414,21
+35176,1436211.552,1664861.513,397132.2565,21
+35177,1028878.472,1664851.316,396377.6708,21
+35178,1027459.024,1665133.353,600792.0581,21
+35179,1432201.368,1665387.497,679312.8472,21
+35180,1024821.72,1665699.443,392232.9078,21
+35181,1023138.854,1665518.386,396697.7889,21
+35182,1428023.516,1665727.285,395388.2041,21
+35183,1020479.343,1665881.772,600271.9096,21
+35184,1019156.239,1666545.404,678256.0252,21
+35185,1423716.126,1665581.099,391719.8558,21
+35186,1016363.128,2046536.223,396741.5275,21
+35187,1014908.46,1667111.952,394793.9953,21
+35188,1419466.061,1666519.23,599689.2112,21
+35189,1012000.886,1666529.726,677048.9153,21
+35190,1011191.566,1667344.859,391677.3517,21
+35191,1415400.899,1666858.627,395115.6297,21
+35192,1007694.168,1667469.199,392436.0262,21
+35193,1006823.968,1667611.896,595605.5953,21
+35194,1411202.657,1667477.143,669120.5203,21
+35195,1003826.043,1669682.624,382657.9132,21
+35196,1002454.442,1669154.74,385804.3789,21
+35197,1407136.935,1670148.719,383299.7481,21
+35198,999784.2401,1625570.401,585754.0195,21
+35199,998338.7473,1619202.104,661079.996,21
+35200,1402959.866,1615668.16,375249.4436,21
+35201,995864.1119,1613060.782,378327.8177,21
+35202,994028.6135,1610303.184,375783.3556,21
+35203,1399356.08,1606961.195,578078.7674,21
+35204,991308.3199,1603564.403,652407.0152,21
+35205,989887.8843,1602429.136,364909.3794,21
+35206,1395459.416,1599178.721,367632.9289,21
+35207,987264.3831,1597301.107,364888.3204,21
+35208,985942.4596,1595526.965,566696.5464,21
+35209,1391057.185,1593348.722,639853.102,21
+35210,983170.9573,1591938.101,356857.6717,21
+35211,982129.7765,1589831.313,359440.7816,21
+35212,1386834.372,1587867.791,356460.8625,21
+35213,979287.1598,1587132.337,559238.235,21
+35214,977988.1554,1584714.918,630043.4648,21
+35215,1382709.312,1583845.242,348814.5101,21
+35216,975389.4214,1582318.873,351580.7092,21
+35217,973619.1962,1580842.042,348522.6449,21
+35218,1378749.32,1579586.306,551935.2639,21
+35219,971293.9638,1578251.232,622754.5361,21
+35220,969509.9158,1576848.361,343532.1377,21
+35221,1370854.369,1569760.907,336473.124,21
+35222,962519.4282,1945469.654,332824.7689,21
+35223,961491.5524,1563159.248,534526.9696,21
+35224,1367332.707,1558943.139,600913.4687,21
+35225,958740.5064,1556599.336,321937.4687,21
+35226,958103.4347,1552856.097,323140.7131,21
+35227,1363563.998,1550159.172,318555.802,21
+35228,955430.7008,1546173.049,522436.3178,21
+35229,954484.6593,1544007.948,584515.4339,21
+35230,1359961.82,1540113.381,308807.8714,21
+35231,952223.5107,1536895.985,309841.5433,21
+35232,950881.0101,1534325.559,306048.2396,21
+35233,1356371.056,1530954.004,511168.5938,21
+35234,948764.2017,1528026.506,569761.8292,21
+35235,947273.9474,1524603.435,295625.8097,21
+35236,1353178.202,1521870.017,297854.2905,21
+35237,945113.4064,1518788.553,293445.2491,21
+35238,943735.106,1517263.264,499595.3368,21
+35239,942671.5864,1514568.534,554539.2204,21
+35240,941510.4055,1510958.856,283879.823,21
+35241,940305.7705,1508662.679,285163.7228,21
+35242,939151.7632,1885536.036,280827.4669,21
+35243,938331.281,1502998.18,488616.703,21
+35244,936592.4794,1499255.94,539568.7266,21
+35245,935888.0728,1496712.462,271502.2517,21
+35246,934507.0276,1491587.724,272851.7033,21
+35247,933546.664,1489358.884,269327.382,21
+35248,932005.6625,1486061.106,477065.6474,21
+35249,931715.1167,1483469.767,525292.5633,21
+35250,929612.5837,1480190.656,259835.7215,21
+35251,928761.9776,1478000.154,262065.4058,21
+35252,928113.9549,1474794.983,258092.7018,21
+35253,926361.4363,1472501.42,467363.5479,21
+35254,925890.8485,1469784.93,512211.6645,21
+35255,924473.8894,1467131.95,250248.733,21
+35256,923648.8347,1464856.939,252386.9817,21
+35257,922342.3505,1461679.416,248640.4637,21
+35258,921148.343,1459859.772,458076.7315,21
+35259,920546.116,1456912.035,500079.4807,21
+35260,919226.4112,1454583.453,241082.0796,21
+35261,917980.8001,1451663.971,242773.2463,21
+35262,916954.0642,1830906.969,239548.0301,21
+35263,916228.7737,1446875.821,449143.2641,21
+35264,914610.0486,1443956.354,487080.8441,21
+35265,914114.8259,1442056.648,231343.5694,21
+35266,912699.3111,1439578.772,233241.8903,21
+35267,911903.2904,1436450.881,229319.7381,21
+35268,910429.9133,1434652.151,439677.8238,21
+35269,909926.1485,1431610.545,474745.9424,21
+35270,908820.0833,1429441.069,222429.9343,21
+35271,907318.3223,1426622.417,224236.5582,21
+35272,906303.752,1424076.973,220693.0995,21
+35273,905842.6966,1421802.166,430512.5312,21
+35274,904424.5121,1419047.719,462615.3065,21
+35275,903291.4928,1416523.566,213928.4776,21
+35276,902180.5255,1414597.994,215264.068,21
+35277,901710.1785,1411456.084,212203.8352,21
+35278,899859.1826,1409022.322,421354.8456,21
+35279,899394.3985,1406013.243,450954.3043,21
+35280,898353.3455,1401456.185,205355.7586,21
+35281,927251.3302,1434825.841,234391.2972,21
+35282,927001.877,1435128.479,461237.4475,21
+35283,925384.3078,1436540.754,432326.8985,21
+35284,924374.8542,1437220.132,459172.6063,21
+35285,923780.5515,1437076.001,223334.846,21
+35286,922089.0294,1438715.782,225473.9848,21
+35287,921350.3223,1438887.5,446151.6606,21
+35288,920383.4468,1439470.887,418089.621,21
+35289,919386.1259,1441154.204,441855.0487,21
+35290,917787.627,1440523.565,214724.655,21
+35291,917183.6137,1442265.96,216716.3966,21
+35292,916488.683,1442685.815,432085.5943,21
+35293,914750.8821,1443251.553,404435.4999,21
+35294,922417.9504,1444396.794,425815.049,21
+35295,919736.5461,1444384.092,206547.979,21
+35296,917316.068,1445926.393,207860.9247,21
+35297,917399.5338,1446289.391,418976.0879,21
+35298,915505.0188,1446849.355,391565.4102,21
+35299,914914.9068,1447637.206,410541.5004,21
+35300,913796.1138,1448739.632,197850.5174,21
+35301,912476.5141,1448728.647,199933.7032,21
+35302,911511.3359,1450425.867,405699.2803,21
+35303,909533.5094,1450387.575,379084.6812,21
+35304,909687.1198,1451157.28,319985.0155,21
+35305,906665.1984,1452292.242,335232.4722,21
+35306,905960.2043,1452777.034,327056.0652,21
+35307,906076.1329,1455505.781,322542.1012,21
+35308,903670.459,1456157.368,320002.3215,21
+35309,902243.8666,1457601.868,317233.4536,21
+35310,901163.9417,1457784.825,416413.6991,21
+35311,900005.2416,1459030.61,178102.8943,21
+35312,899727.9209,1459858.079,178891.54,21
+35313,896847.9459,1460525.094,373792.6439,21
+35314,896203.3976,1459889.788,337403.1849,21
+35315,895799.5201,1461272.541,295077.6211,21
+35316,893782.1608,1461852.159,306260.646,21
+35317,892840.9092,1462595.861,298175.8194,21
+35318,891801.9938,1464178,294824.6502,21
+35319,890938.2217,1464493.898,291987.3551,21
+35320,888782.7499,1465901.503,289591.6414,21
+35321,888221.7219,1466093.137,377247.38,21
+35322,887103.0077,1467985.777,158939.3301,21
+35323,884782.8815,1468025.608,159814.0514,21
+35324,885682.5576,1469820.895,342141.7936,21
+35325,882903.4362,1469970.292,308068.4624,21
+35326,882414.7812,1471709.142,271107.1534,21
+35327,881434.3139,1472483.441,280356.0955,21
+35328,879424.4892,1473149.997,274228.9323,21
+35329,878217.16,1474211.106,270561.3118,21
+35330,878029.7949,1475584.827,268034.9734,21
+35331,875254.5505,1476740.324,265751.5508,21
+35332,875721.5791,1476782.469,343961.358,21
+35333,872913.9754,1479041.83,142941.3323,21
+35334,873832.6424,1479530.314,143609.9177,21
+35335,870809.096,1480330.033,314190.542,21
+35336,870223.7902,1481707.956,282777.1523,21
+35337,869374.7186,1483956.931,248190.7197,21
+35338,867571.3175,1484415.796,257403.6053,21
+35339,866577.3402,1486583.746,251068.0563,21
+35340,865799.4189,1486526.312,247684.5715,21
+35341,833480.2882,1453796.507,222179.8185,21
+35342,832704.064,1451201.359,219438.5737,21
+35343,830888.6064,1448712.798,209151.0235,21
+35344,830546.6102,1445387.716,205363.9007,21
+35345,829268.7313,1443008.901,205135.0532,21
+35346,828411.8178,1440960.698,200115.1884,21
+35347,827319.1159,1438877.403,197440.8042,21
+35348,826424.9344,1436279.695,193427.1323,21
+35349,825239.0018,1433965.072,191912.5074,21
+35350,824630.8508,1432020.008,187504.0456,21
+35351,823454.2118,1429409.304,184665.9961,21
+35352,822458.0728,1427230.596,181281.0297,21
+35353,821437.134,1424783.869,178939.1281,21
+35354,820494.7749,1422652.423,176002.3784,21
+35355,819578.4996,1420520.598,173904.8733,21
+35356,818287.6406,1418595.983,172560.9315,21
+35357,817803.7828,1798555.566,170215.586,21
+35358,818310.2784,1414473.662,169436.5805,21
+35359,817369.1951,1412486.528,167283.1735,21
+35360,816325.7347,1410438.226,165636.462,21
+35361,815359.9263,1407988.297,164141.6493,21
+35362,814554.4391,1406856.298,161931.4904,21
+35363,813545.7293,1404360.757,161656.5927,21
+35364,812638.4519,1402278.58,159212.4955,21
+35365,811361.3785,1400165.288,157789.2804,21
+35366,809282.3901,1398700.794,156591.5738,21
+35367,807802.641,1397757.429,154333.3663,21
+35368,807212.3977,1395886.719,154245.3221,21
+35369,806405.9015,1393808.449,151865.4017,21
+35370,805354.1829,1392290.401,150897.7498,21
+35371,804050.9824,1389325.055,155515.9682,21
+35372,803741.8628,1388499.146,143660.8886,21
+35373,802958.3861,1386304.893,149526.3259,21
+35374,801851.7124,1384004.29,144784.8604,21
+35375,800804.6392,1382114.144,144475.3732,21
+35376,800166.4367,1380263.634,142980.9545,21
+35377,799807.3825,1378119.64,141883.3297,21
+35378,797942.227,1376790.031,139652.8547,21
+35379,798181.037,1756951.7,139608.0817,21
+35380,796572.1135,1372990.878,137410.0383,21
+35381,795921.4998,1370591.054,136340.7761,21
+35382,795146.4364,1369079.522,134913.487,21
+35383,794386.7288,1366732.415,134134.8537,21
+35384,793512.2988,1364799.9,132334.3737,21
+35385,792842.7514,1363295.21,131504.5657,21
+35386,791605.5267,1361234.686,130346.5268,21
+35387,791246.1718,1359054.794,128085.5297,21
+35388,789695.6001,1357255.529,128525.5919,21
+35389,789571.6032,1355614.256,126191.8654,21
+35390,788265.5135,1353247.557,125908.2017,21
+35391,787724.8265,1351810.38,124342.4382,21
+35392,786373.9731,1349132.892,122984.9143,21
+35393,785929.0584,1347681.884,122972.6199,21
+35394,784675.0246,1345892.722,121274.387,21
+35395,783626.9518,1343246.611,120203.3126,21
+35396,783571.9149,1341717.313,119332.8806,21
+35397,781880.7889,1341534.25,117884.1617,21
+35398,780958.1775,1340050.273,117736.3416,21
+35399,779600.6559,1337675.262,116150.4515,21
+35400,776602.615,1334486.549,115054.9068,21
+35401,783379.8555,1723391.13,120834.7035,21
+35402,783463.2675,1340634.743,119167.5615,21
+35403,784329.7884,1341088.747,119659.9753,21
+35404,784430.5772,1342034.05,117883.4201,21
+35405,784580.923,1341745.108,117329.4977,21
+35406,785826.9222,1343195.904,116664.5179,21
+35407,784663.8039,1342978.119,115160.3685,21
+35408,785484.1925,1344122.499,115376.3254,21
+35409,785687.0926,1344368.981,113852.7653,21
+35410,785698.1752,1344642.031,113346.8448,21
+35411,786429.0286,1345552.98,112439.0577,21
+35412,786429.0507,1345537.717,110867.5605,21
+35413,786622.5914,1346430.632,111439.1072,21
+35414,786970.8275,1347444.438,109324.8493,21
+35415,787380.2027,1347614.366,108684.2223,21
+35416,787163.0005,1348809.397,107750.0274,21
+35417,787967.133,1348714.335,106388.2043,21
+35418,787783.8992,1349884.308,106841.8828,21
+35419,788288.23,1350527.834,105049.4023,21
+35420,788441.3713,1351237.82,104809.1852,21
+35421,788702.661,1351798.205,103547.9753,21
+35422,789048.8245,1353244.331,102559.2041,21
+35423,789150.2619,1353793.192,102560.6796,21
+35424,789383.0248,1354912.648,101152.5962,21
+35425,789901.8367,1355402.198,100408.5881,21
+35426,789787.6658,1356761.669,99869.16879,21
+35427,790355.2058,1356615.004,98271.17682,21
+35428,790427.9069,1358698.253,98652.87816,21
+35429,790753.4357,1358814.25,97013.67183,21
+35430,790855.9446,1359998.509,96377.91356,21
+35431,791528.4176,1360517.132,95751.3097,21
+35432,791321.9221,1361527.807,94480.11004,21
+35433,791822.0532,1362207.697,95074.77419,21
+35434,792209.8127,1363009.925,93883.39492,21
+35435,792420.6791,1364229.236,93927.32583,21
+35436,792561.8088,1364567.588,93140.57569,21
+35437,792904.935,1365706.397,92597.69993,21
+35438,793296.0662,1366318.638,92877.97905,21
+35439,793553.5678,1367670.508,92118.56226,21
+35440,793511.1886,1367509.634,91978.38358,21
+35441,794406.0189,1369248.805,91214.82699,21
+35442,794055.9567,1369466.403,90891.64598,21
+35443,794675.6183,1370918.327,91291.02946,21
+35444,795077.7008,1371031.718,90301.23659,21
+35445,795092.0532,1372724.114,90125.39495,21
+35446,795664.773,1372568.078,89989.49998,21
+35447,795977.1946,1374530.498,89070.23572,21
+35448,797192.1957,1374798.809,89783.84846,21
+35449,797842.109,1375552.788,88699.11168,21
+35450,798489.3861,1376838.98,88810.0934,21
+35451,798036.5187,1377368.662,88487.40353,21
+35452,798843.5777,1378889.077,87756.45749,21
+35453,799103.2798,1378810.063,88411.07114,21
+35454,799283.6173,1380262.804,87803.1771,21
+35455,799641.406,1381132.353,87426.96896,21
+35456,800233.2476,1381819.801,87610.13383,21
+35457,800729.6585,1383146.141,86755.47589,21
+35458,800401.8928,1383399.621,87449.29965,21
+35459,801157.3319,1385082.041,86864.46916,21
+35460,801397.2921,1385545.005,86533.72637,21
+35461,796598.7086,1382874.241,80285.84071,21
+35462,795986.8649,1384501.638,79167.42347,21
+35463,795824.2243,1387118.248,79752.1939,21
+35464,794995.3792,1387883.769,78934.19264,21
+35465,795111.502,1390386.224,78720.80607,21
+35466,794195.2216,1391498.212,78178.61902,21
+35467,793715.6072,1393745.828,77672.79368,21
+35468,793747.2422,1395577.265,78137.33577,21
+35469,793097.0683,1397380.97,77354.42457,21
+35470,792371.9238,1399098.51,77077.30453,21
+35471,792486.6755,1400947.034,76981.97326,21
+35472,791905.032,1402928.249,76329.44735,21
+35473,791104.9012,1404533.506,76552.07179,21
+35474,789731.7553,1406794.205,75985.98806,21
+35475,788992.4178,1408178.769,75975.31222,21
+35476,788906.2319,1410166.069,75492.92949,21
+35477,788379.5168,1412505.727,75073.50314,21
+35478,787863.1265,1413410.801,75568.03826,21
+35479,787419.3849,1416337.34,74845.67889,21
+35480,787538.4765,1417038.043,74649.95573,21
+35481,786546.2354,1420156.665,74567.42182,21
+35482,786297.7037,1421305.05,73940.17973,21
+35483,785908.0346,1425763.425,74405.68292,21
+35484,785624.0636,1428463.012,73900.92882,21
+35485,784895.541,1429636.876,73695.49066,21
+35486,784744.5579,1431085.224,73551.31918,21
+35487,784678.6657,1432943.343,73040.69251,21
+35488,783466.6943,1434287.038,73604.43514,21
+35489,783678.8359,1436018.868,72873.29966,21
+35490,783223.082,1436834.238,72862.91315,21
+35491,782560.4068,1438526.663,72772.23998,21
+35492,782687.5152,1440142.816,72272.16152,21
+35493,781917.4799,1440877.113,72764.33691,21
+35494,781601.02,1442369.835,72196.97759,21
+35495,781333.17,1443663.795,72053.42505,21
+35496,780970.1371,1445222.261,72011.93168,21
+35497,780263.5084,1446002.475,71459.65437,21
+35498,780658.3416,1447686.281,72096.30329,21
+35499,779367.0961,1448195.601,71416.05425,21
+35500,779370.9478,1449942.125,71870.98955,21
+35501,779359.3555,1450984.296,71748.79681,21
+35502,778303.0702,1452281.179,71493.2064,21
+35503,778720.2964,1453345.1,71720.53024,21
+35504,777476.5229,1454225.173,71521.26819,21
+35505,777874.5059,1455736.414,71499.47506,21
+35506,777269.9202,1456780.846,71266.92401,21
+35507,776461.8609,1457646.943,70893.44955,21
+35508,776811.0542,1458668.806,71432.69951,21
+35509,775930.6169,1460554.588,71054.32233,21
+35510,775666.3259,1460750.022,70949.5168,21
+35511,775743.3569,1462482.808,70988.49252,21
+35512,774331.0358,1463276.085,70503.2736,21
+35513,774957.8579,1464782.888,71167.93654,21
+35514,774303.2022,1465101.342,70527.29597,21
+35515,773930.0139,1466831.903,70598.44612,21
+35516,773663.3365,1467806.163,70776.75011,21
+35517,773291.0344,1468753.277,70012.58442,21
+35518,772677.6172,1469645.834,70828.61736,21
+35519,772417.3409,1471098.705,70237.22569,21
+35520,772925.8073,1471510.791,70509.61612,21
+35521,774373.7657,1472876.746,70214.85544,21
+35522,775136.8898,1473459.034,70015.88475,21
+35523,776261.5377,1473405.286,70690.50645,21
+35524,777219.5876,1474966.975,70261.73667,21
+35525,778527.2757,1475095.455,70320.83539,21
+35526,779542.6081,1475678.895,70637.10518,21
+35527,780640.476,1476818.335,70163.72572,21
+35528,781552.8395,1476727.506,71105.46265,21
+35529,783072.7769,1477662.072,70805.31487,21
+35530,783366.1264,1478499.966,71437.88453,21
+35531,785284.9116,1479329.579,71695.24985,21
+35532,785802.2312,1479152.385,71381.60994,21
+35533,787246.2075,1480695.914,72476.10913,21
+35534,788069.8256,1480277.57,71961.23182,21
+35535,789358.793,1482260.645,72584.84594,21
+35536,790267.334,1481497.411,72565.47444,21
+35537,791656.8645,1483101.086,72570.24337,21
+35538,792172.3322,1483229.149,73288.56132,21
+35539,794114.2851,1484532.566,73162.08339,21
+35540,794529.9155,1483847.354,73577.81885,21
+35541,796071.8471,1485441.642,73703.35102,21
+35542,796569.0029,1485546.114,73453.1386,21
+35543,798040.1257,1486915.758,74743.07161,21
+35544,799547.1847,1486931.189,74118.59294,21
+35545,799616.4381,1487332.707,74765.60317,21
+35546,801726.2519,1488149.783,76348.01665,21
+35547,802170.2432,1488714.268,78090.51019,21
+35548,803507.6865,1489463.73,79759.2185,21
+35549,804712.8572,1489829.017,80758.34611,21
+35550,805655.4156,1490641.506,82520.27265,21
+35551,805279.4373,1491465.945,102619.8849,21
+35552,806833.8483,1491361.797,52226.91166,21
+35553,807363.2723,1492280.514,53803.93819,21
+35554,808690.6963,1492893.958,104867.9272,21
+35555,809629.6442,1493639.902,96591.37751,21
+35556,810273.2648,1493816.476,90804.84341,21
+35557,811752.8961,1494324.32,94981.62418,21
+35558,812477.5379,1495571.144,95672.54457,21
+35559,813605.1139,1495208.779,96793.10588,21
+35560,814370.8727,1496224.042,98755.56925,21
+35561,815492.3088,1496942.553,100150.6315,21
+35562,816670.9959,1497206.204,101812.8744,21
+35563,817635.2499,1498226.514,103643.2192,21
+35564,818750.784,1498006.369,105223.4238,21
+35565,819846.1783,1499325.341,107098.7939,21
+35566,821000.5021,1499675.428,108858.2196,21
+35567,821902.1402,1499842.505,110733.0735,21
+35568,823093.1084,1500600.698,112128.2123,21
+35569,824067.0271,1501484.005,114466.7238,21
+35570,825088.4207,1501392.281,115885.478,21
+35571,826762.4439,1502736.805,117991.729,21
+35572,827110.4045,1502479.187,119712.5902,21
+35573,829075.0151,1503802.002,121748.6197,21
+35574,829033.9386,1503551.589,123772.135,21
+35575,831010.1302,1504514.232,125737.8555,21
+35576,832012.6199,1505449.97,127893.724,21
+35577,832543.6982,1505158.674,129781.3668,21
+35578,834320.4723,1505913.68,131683.4908,21
+35579,835212.721,1506915.634,134306.4802,21
+35580,836018.2145,1507123.997,135949.0251,21
+35581,896773.6985,1576785.227,168026.1642,21
+35582,904879.6394,1581478.282,168988.7399,21
+35583,918946.2813,1582554.458,179939.5544,21
+35584,912007.2989,1592725.351,177272.8907,21
+35585,915290.5406,1590639.044,141151.7039,21
+35586,916691.0623,1592363.972,215093.0755,21
+35587,917237.4876,1594631.688,202149.3246,21
+35588,919359.9742,1595146.95,208925.5913,21
+35589,919612.8382,1597123.384,137665.9532,21
+35590,920741.6158,1598450.538,140530.3795,21
+35591,922233.9918,1599677.225,224347.327,21
+35592,925134.6221,1601085.248,214075.3303,21
+35593,925640.3143,1602047.747,197645.6777,21
+35594,927573.4181,1603718.555,206794.4175,21
+35595,928160.5674,1604736.398,207257.3723,21
+35596,928927.3542,1605566.68,212692.6752,21
+35597,959520.1978,1607958.277,213332.3386,21
+35598,949518.7875,1607305.82,216606.6208,21
+35599,953541.3684,1610170.619,219294.2647,21
+35600,955974.3218,1610132.446,696662.3325,21
+35601,956335.5456,1611772.16,163986.7278,21
+35602,959514.2012,1612722.166,205214.4786,21
+35603,960983.6664,1613822.961,746553.1905,21
+35604,961888.8568,1614726.97,173456.6589,21
+35605,963565.6672,1615831.393,350607.5016,21
+35606,964636.932,1616853.793,176834.225,21
+35607,966919.4622,1617279.669,180419.7049,21
+35608,966530.8317,1618753.382,188169.0341,21
+35609,969151.1592,1620266.647,285965.0676,21
+35610,969947.1056,1620049.837,283613.6257,21
+35611,970550.6627,1621535.94,278616.3269,21
+35612,971775.4812,1622377.589,210248.883,21
+35613,974013.9987,1623533.029,342285.7468,21
+35614,973725.6953,1623869.963,299503.0509,21
+35615,975195.2012,1625361.448,321505.2644,21
+35616,976786.1574,1625679.609,193736.1511,21
+35617,977373.4894,1626726.851,197599.2752,21
+35618,977793.4136,1627667.784,335226.0727,21
+35619,979562.8387,1628489.889,317772.0342,21
+35620,979323.4979,1629006.885,286225.9074,21
+35621,981664.3506,1630188.535,298987.7913,21
+35622,981080.9225,1630851.22,296656.7629,21
+35623,982879.3241,1631677.325,297628.7905,21
+35624,984065.8224,1632943.321,298634.0503,21
+35625,983170.8692,1632971.532,300457.5216,21
+35626,985886.6909,1633955.512,809882.1776,21
+35627,985235.9407,1634862.015,214508.5547,21
+35628,987265.5166,1635611.132,273494.4466,21
+35629,987225.7963,1636306.796,866584.2451,21
+35630,987668.5105,1636963.497,230441.78,21
+35631,989053.5892,1638214.915,474818.3726,21
+35632,989303.8763,1638270.556,232933.3288,21
+35633,989931.7964,1639513.658,237782.3145,21
+35634,990264.1525,1640199.503,247579.6337,21
+35635,991513.6896,1640646.985,370579.8012,21
+35636,991667.3974,1641649.753,369028.2805,21
+35637,993392.7934,1642249.487,360452.0485,21
+35638,992203.2597,1642563.734,261103.0581,21
+35639,994350.2509,1643969.981,441811.5704,21
+35640,995404.0898,1644712.374,396799.9885,21
+35641,1057930.881,1669785.155,366951.0213,21
+35642,1064732.043,1673351.032,387700.8119,21
+35643,1066866.874,1674330.608,385899.9165,21
+35644,1070056.695,1675530.658,386259.9666,21
+35645,1071925.038,1706586.488,388073.3992,21
+35646,1075381.913,1714367.743,390208.7097,21
+35647,1077464.064,1707319.847,393380.5532,21
+35648,1080364.133,1712933.659,394937.4843,21
+35649,1083039.161,1715159.686,397129.6243,21
+35650,1083977.504,1719009.365,399200.8003,21
+35651,1088091.953,1718696.804,402123.5591,21
+35652,1088341.565,1722361.98,403757.0747,21
+35653,1092683.617,1723930.276,406360.0894,21
+35654,1092942.041,1726498.445,408551.9605,21
+35655,1096385.09,1727374.212,410343.5604,21
+35656,1098281.92,1729882.6,413229.433,21
+35657,1100633.226,1730882.602,415293.407,21
+35658,1102594.175,1733884.603,417517.6042,21
+35659,1105227.189,1734587.366,419546.9277,21
+35660,1106309.988,1736428.822,422479.3982,21
+35661,1109776.641,1739104.153,424078.2102,21
+35662,1111274.753,1740008.101,426817.9958,21
+35663,1113382.096,1742060.888,428591.8508,21
+35664,1115567.712,1743509.012,431169.1622,21
+35665,1117012.3,1744867.631,433291.158,21
+35666,1119699.487,1746546.59,435502.2382,21
+35667,1121614.46,1748958.302,437914.3112,21
+35668,1123124.5,1749358.596,440264.216,21
+35669,1125681.713,1751463.827,442300.549,21
+35670,1127108.118,1753087.942,444912.6732,21
+35671,1129936.757,1754536.161,446695.3211,21
+35672,1131433.282,1755791.926,449424.0532,21
+35673,1133508.499,1756787.899,451424.3483,21
+35674,1135005.946,1759608.391,453469.8128,21
+35675,1137731.958,2139603.341,456013.3307,21
+35676,1139809.778,1761591.226,458239.3531,21
+35677,1140094.018,1764355.21,460443.8841,21
+35678,1143012.724,1763341.114,462243.2988,21
+35679,1145282.197,1767733.454,464862.7872,21
+35680,1147378.919,1766224.664,466971.018,21
+35681,1148220.622,1769318.865,469270.5854,21
+35682,1150256.478,1770691.782,471397.1817,21
+35683,1153069.111,1770739.954,473623.0107,21
+35684,1153774.504,1773978.293,477069.4876,21
+35685,1156089.611,1773351.93,481437.6046,21
+35686,1158419.332,1776410.22,482624.9436,21
+35687,1159825.27,1776702.792,486067.542,21
+35688,1161822.495,1778179.146,488371.2935,21
+35689,1163618.204,1780199.797,491414.2985,21
+35690,1164568.85,1780911.685,493598.7462,21
+35691,1168380.951,1782455.4,496718.9085,21
+35692,1167341.049,1782332.343,498630.1164,21
+35693,1171114.819,1785857.646,501781.2863,21
+35694,1172962.196,1784645.328,504707.2374,21
+35695,1173707.893,1788118.323,506772.1133,21
+35696,1176581.02,1788112.302,509355.6628,21
+35697,1177469.482,1789710.93,512936.0038,21
+35698,1180041.25,1790871.155,514702.4194,21
+35699,1181163.71,1791853.835,517812.3326,21
+35700,1183352.541,1793889.209,520127.2925,21
+35701,1181990.508,1794148.757,523875.877,21
+35702,1184287.365,1796683.511,528250.8861,21
+35703,1186356.686,1797371.351,531232.4823,21
+35704,1185966.069,1798226.192,535324.1007,21
+35705,1188567.84,2178389.16,539272.9223,21
+35706,1188580.247,1800256.123,542646.8801,21
+35707,1190033.265,1802770.156,546915.9281,21
+35708,1192319.549,1802358.421,550609.1886,21
+35709,1191742.199,1802798.245,554465.7592,21
+35710,1193503.564,1805877.121,558193.2581,21
+35711,1195455.682,1806111.203,561844.8199,21
+35712,1195446.647,1807004.778,566255.5748,21
+35713,1197036.939,1807712.905,569392.9594,21
+35714,1197626.533,1809296.219,574169.5312,21
+35715,1200172.328,1810603.278,577110.1438,21
+35716,1199678.245,1810654.615,581678.8439,21
+35717,1201994.691,1812353.949,585172.4169,21
+35718,1202138.947,1813272.795,589270.0822,21
+35719,1204206.459,1814798.926,593254.666,21
+35720,1204625.524,1815049.524,598222.3609,21
+35721,1206129.191,1816482.851,601947.5154,21
+35722,1206793.625,1816523.574,606363.8055,21
+35723,1208407.877,1818723.498,610062.034,21
+35724,1208978.333,1818259.03,614020.0269,21
+35725,1210889.145,1820769.013,618713.154,21
+35726,1210575.738,1821016.486,622364.1932,21
+35727,1213053.385,1822275.649,626243.3844,21
+35728,1212821.937,1822956.252,630411.4541,21
+35729,1215029.737,1823142.776,634502.1005,21
+35730,1215852.131,2203823.027,638578.6505,21
+35731,1215771.161,1826309.875,642337.9918,21
+35732,1218055.369,1826736.223,647142.7759,21
+35733,1219276.725,1827893.626,650053.5419,21
+35734,1219057.868,1828436.429,655014.7888,21
+35735,1221076.668,1829779.385,659128.3672,21
+35736,1222268.646,1830452.148,663392.9345,21
+35737,1222902.309,1831787.677,667027.3714,21
+35738,1223896.915,1833051.821,671117.145,21
+35739,1225714.865,1832827.842,676046.6316,21
+35740,1225146.908,1834839.785,678988.6406,21
+35741,1227825.112,1834717.964,682074.5428,21
+35742,1228833.007,1836173.767,685533.3825,21
+35743,1228269.808,1836701.581,689333.7209,21
+35744,1230658.198,1838569.452,693880.1271,21
+35745,1231470.505,1838881.767,697816.6631,21
+35746,1233008.802,1839651.458,701719.6187,21
+35747,1232645.31,1840604.692,706114.7674,21
+35748,1234077.838,1841011.613,710213.5203,21
+35749,1236322.855,1842991.711,714184.1194,21
+35750,1235539.44,1843237.066,718165.2321,21
+35751,1238550.036,1843878.607,722051.1064,21
+35752,1237489.031,1845448.693,726010.3197,21
+35753,1240089.738,1845009.975,730586.9616,21
+35754,1240148.635,1847717.979,734036.6894,21
+35755,1241799.955,1847373.609,739031.8939,21
+35756,1241732.522,1848902.904,742296.0052,21
+35757,1244161.483,1849224.991,746687.7985,21
+35758,1244319.178,1850212.719,750528.1814,21
+35759,1245351.131,1850712.646,754912.1512,21
+35760,1245575.055,1852580.792,759136.0173,21
+35761,1256105.147,1861492.975,765703.4492,21
+35762,1255072.719,1864148.296,765516.7344,21
+35763,1256009.138,1865548.208,687212.3974,21
+35764,1257005.745,1867222.453,907861.6826,21
+35765,1256545.62,1867181.211,974432.7751,21
+35766,1256593.707,1870262.384,686861.7861,21
+35767,1257802.394,1870105.011,695219.3691,21
+35768,1257012.234,1872248.309,869898.0749,21
+35769,1257376.059,1872399.333,833777.3475,21
+35770,1257046.728,1873648.681,979017.776,21
+35771,1258513.881,1875198.118,695159.6932,21
+35772,1257200.274,1877095.61,703134.5814,21
+35773,1258761.953,2253884.748,710491.2249,21
+35774,1257928.425,1879322.929,842997.1618,21
+35775,1258473.892,1878206.97,781882.965,21
+35776,1257947.439,1881939.565,799723.3354,21
+35777,1257944.961,1881319.956,796775.301,21
+35778,1259541.341,1882124.157,796980.7801,21
+35779,1257448.874,1885022.442,798612.2843,21
+35780,1259659.704,1883399.37,800830.6694,21
+35781,1257900.565,1886270.017,1506004.598,21
+35782,1258895.009,1886878.823,736164.9963,21
+35783,1259016.95,1888683.906,739116.1886,21
+35784,1652515.894,1888109.795,1563096.858,21
+35785,1258903.51,1891021.964,750126.8843,21
+35786,1258959.002,1891053.279,755307.1747,21
+35787,1258840.72,1891400.136,1593074.435,21
+35788,1259699.484,1893542.111,764640.1267,21
+35789,1258443.214,1893829.093,768103.1621,21
+35790,1259287.125,1895154.762,1620331.833,21
+35791,1259088.784,1895589.454,779351.0633,21
+35792,1258868.112,1896801.385,1237009.973,21
+35793,1258759.748,1898623.013,773054.2112,21
+35794,1259366.36,1898469.554,781457.2776,21
+35795,1258163.754,1900396.679,822638.354,21
+35796,1260061.18,1900484.752,1156796.359,21
+35797,1258483.58,1901827.41,808365.4974,21
+35798,1258893.87,1902984.059,780786.8262,21
+35799,1258863.469,1904634.513,783711.7548,21
+35800,1259206.383,1903773.773,963289.465,21
+35801,1258710.118,1905401.038,1109281.538,21
+35802,1258616.673,1907518.675,779519.8339,21
+35803,1259486.473,2283776.796,788266.9812,21
+35804,1257913.66,1909037.214,820301.1942,21
+35805,1259757.67,1908956.943,857181.5255,21
+35806,1257947.863,1910116.75,850253.8707,21
+35807,1652916.232,1911691.058,914225.576,21
+35808,1258819.104,1912111.159,844668.2544,21
+35809,1257502.034,1912640.625,861411.2716,21
+35810,1259937.406,1915467.407,858936.7086,21
+35811,1256981.018,1914180.175,860233.1397,21
+35812,1259601.701,1915959.915,861701.4134,21
+35813,1257251.945,1917131.088,1614475.892,21
+35814,1258303.355,1917892.974,813790.2141,21
+35815,1258465.058,1918134.14,817735.5139,21
+35816,1257876.916,1919950.199,1664356.84,21
+35817,1257803.935,1919885.295,825102.8406,21
+35818,1258822.552,1921895.887,830545.8835,21
+35819,1256211.657,1922365.308,1687242.832,21
+35820,1259227.745,1923283.432,836734.3246,21
+35821,1258314.72,1923275.661,841127.4148,21
+35822,1260200.699,1926364.199,1706677.712,21
+35823,1262634.919,1927097.274,848240.4409,21
+35824,1261852.695,1926500.299,1324566.525,21
+35825,1263276.879,1928539.828,840415.2275,21
+35826,1264680.59,1929575.408,848378.4898,21
+35827,1265295.5,1930217.898,894924.9373,21
+35828,1265440.396,1929503.52,1156682.829,21
+35829,1267409.672,1932745.107,844565.028,21
+35830,1267651.991,1931974.01,848238.7558,21
+35831,1269220.296,1933038.194,915072.2866,21
+35832,1269139.315,1934094.394,862188.9251,21
+35833,1271231.156,1934171.111,1027676.654,21
+35834,1270366.603,1935897.216,1182508.285,21
+35835,1272398.373,1936178.135,849684.3756,21
+35836,1273889.756,1936373.559,867076.9904,21
+35837,1274351.947,1938871.701,881072.1959,21
+35838,1274126.935,1937341.623,945534.1165,21
+35839,1275769.195,1940551.81,930389.2181,21
+35840,1277278.47,1940223.59,998085.9513,21
+35841,1277315.815,1940118.567,878997.599,21
+35842,1277936.471,1941753.215,1056204.975,21
+35843,1280675.599,1943147.745,978864.2757,21
+35844,1279185.695,1942763.504,892329.067,21
+35845,1281339.439,1944110.344,929020.6567,21
+35846,1282325.358,1945049.476,924331.6923,21
+35847,1282065.09,1945233.603,928599.0602,21
+35848,1284451.326,1946522.084,930524.4558,21
+35849,1284957.538,1946945.021,935190.1309,21
+35850,1285486.053,1947981.417,1727354.067,21
+35851,1285494.38,1947812.626,914141.2509,21
+35852,1287646.998,1950295.46,920336.5181,21
+35853,1288499.173,1949456.584,1778826.107,21
+35854,1288923.543,1950968.822,929809.2092,21
+35855,1288948.886,1951726.601,934231.2309,21
+35856,1291418.575,1952197.681,1802126.044,21
+35857,1291713.857,1953553.242,944900.6291,21
+35858,1291584.742,1953323.768,946600.2226,21
+35859,1294507.998,1954470.376,1822231.376,21
+35860,1293584.425,1955220.654,955547.4529,21
+35861,1295024.547,1956269.217,962469.191,21
+35862,1296022.279,1956621.509,1837024.606,21
+35863,1296848.139,1958087.178,968953.9376,21
+35864,1297243.09,1957433.134,973453.512,21
+35865,1299030.262,1959693.515,1852971.614,21
+35866,1299154.62,1959411.226,980898.7516,21
+35867,1300059.622,1960910.565,984694.0027,21
+35868,1300832.753,1961632.109,1866803.031,21
+35869,1302348.545,1961068.522,992560.7712,21
+35870,1302533.983,1962861.852,994392.5578,21
+35871,1304506.726,1963801.492,1879986.559,21
+35872,1303945.828,1964277.947,1003236.065,21
+35873,1305951.63,1964923.473,1005446.152,21
+35874,1305443.366,1966714.786,1891324.776,21
+35875,1308204.368,1965119.548,1013723.792,21
+35876,1306524.231,1968461.753,1014407.585,21
+35877,1309267.083,1967853.699,1904391.755,21
+35878,1309573.356,1968847.025,1021285.33,21
+35879,1311234.36,1969427.933,1025902.956,21
+35880,1312427.841,1970595.954,1914580.485,15.6
+35881,0,0,181.827486,15.6
+35882,0,0,0,15.6
+35883,0,135.3850247,883711.6281,15.6
+35884,0,0,93.77186312,15.6
+35885,0,0,0,15.6
+35886,427513.5356,0,2197806.673,15.6
+35887,0,0,60.15065458,15.6
+35888,0,0,0,15.6
+35889,0,0,854036.5153,15.6
+35890,0,0,144.0348633,15.6
+35891,0,0,0,15.6
+35892,0,0,853193.3751,15.6
+35893,0,0,161.3538173,15.6
+35894,0,0,0,15.6
+35895,0,0,852487.8966,15.6
+35896,0,0,150.2086429,15.6
+35897,0,428367.77,0,15.6
+35898,0,0,851800.2902,15.6
+35899,0,0,149.2863412,15.6
+35900,0,0,0,15.6
+35901,0,0,851157.1121,15.6
+35902,0,0,146.9349969,15.6
+35903,0,0,0,15.6
+35904,0,0,850514.8065,15.6
+35905,0,0,148.9213224,15.6
+35906,0,0,0,15.6
+35907,0,0,849914.6637,15.6
+35908,0,0,146.5830089,15.6
+35909,0,0,0,15.6
+35910,0,0,849319.2337,15.6
+35911,0,0,147.9688803,15.6
+35912,0,0,0,15.6
+35913,52178.43577,0,848764.7058,15.6
+35914,553.3851034,0,145.5622755,15.6
+35915,2927.757467,0,0,15.6
+35916,17623.1228,0,848217.818,15.6
+35917,13041.78509,0,146.4190415,15.6
+35918,12476.46222,0,186677.052,15.6
+35919,13261.73258,0,876224.5776,15.6
+35920,13414.16462,0,35008.3446,15.6
+35921,13672.4871,428268.1884,1423205.228,15.6
+35922,13820.72305,0,846881.1712,15.6
+35923,14011.5411,0,34484.42859,15.6
+35924,14264.61614,0,462412.6178,15.6
+35925,14354.56387,0,34074.77981,15.6
+35926,14610.16761,0,38978.17046,15.6
+35927,14776.52977,0,82146.46836,15.6
+35928,14943.96929,0,231034.227,15.6
+35929,15131.52357,0,388267.5126,15.6
+35930,15324.50014,0,219647.1076,15.6
+35931,15457.25286,0,261809.8623,15.6
+35932,15666.25702,0,243262.1221,15.6
+35933,15810.27206,0,236519.3164,15.6
+35934,15967.25875,0,230643.8263,15.6
+35935,16158.73745,0,225124.432,15.6
+35936,16301.17531,0,219708.1305,15.6
+35937,16454.14191,0,210973.7324,15.6
+35938,16631.04844,0,125626.4964,15.6
+35939,16779.41607,428213.9118,308166.9995,15.6
+35940,16916.41889,0,190314.8838,15.6
+35941,17124.1713,0,195380.5744,15.6
+35942,17260.48558,0,193561.1537,15.6
+35943,0,0,188195.1203,15.6
+35944,0,0,183974.9514,15.6
+35945,0,0,180069.191,15.6
+35946,0,0,667157.4876,15.6
+35947,72250.37202,0,0,15.6
+35948,751.8852738,0,0,15.6
+35949,9367.55774,0,663031.9291,15.6
+35950,25606.46339,0,0,15.6
+35951,16817.01592,0,0,15.6
+35952,18255.05515,0,672815.9868,15.6
+35953,18279.63354,0,0,15.6
+35954,18363.84321,0,0,15.6
+35955,18487.98068,0,679791.8272,15.6
+35956,18470.64056,0,914546.3619,15.6
+35957,18573.0183,427978.8163,0,15.6
+35958,18637.59832,33982.65013,676510.757,15.6
+35959,18680.84096,4180.57679,93.03182749,15.6
+35960,18749.94927,5299.329571,0,15.6
+35961,18815.53758,12901.64119,682883.0017,15.6
+35962,18849.95562,11925.03155,99.22588495,15.6
+35963,18946.10311,10727.35294,0,15.6
+35964,18932.37902,11336.65279,688959.7135,15.6
+35965,19055.37561,11455.6077,104.357218,15.6
+35966,19074.51316,11592.89708,0,15.6
+35967,19137.17509,11685.96703,694788.0148,15.6
+35968,19178.14952,11795.57491,104.5913778,15.6
+35969,19242.57858,11906.74599,0,15.6
+35970,19259.57713,12009.47058,700358.5994,15.6
+35971,19386.0526,12115.77908,106.3945897,15.6
+35972,19340.75894,12228.25115,0,15.6
+35973,19426.57809,12301.34253,705715.3951,15.6
+35974,19483.70559,12473.96936,104.9879246,15.6
+35975,19507.23568,12518.1821,0,15.6
+35976,19547.36883,12634.32722,710837.6862,15.6
+35977,0,12702.06193,106.2094624,15.6
+35978,0,12816.43774,0,15.6
+35979,0,12882.44134,715774.4016,15.6
+35980,72518.40046,13024.42522,107.6697125,15.6
+35981,1717.500543,13069.90459,0,15.6
+35982,14335.85567,440989.4423,720488.1805,15.6
+35983,25600.30598,13326.79927,109.3940223,15.6
+35984,18991.47195,13320.31604,0,15.6
+35985,19976.56282,13462.27207,725017.5302,15.6
+35986,19966.03544,13513.13582,106.2679899,15.6
+35987,20051.04383,13631.31397,0,15.6
+35988,20049.47934,0,729344.2784,15.6
+35989,20129.80909,0,28974.47788,15.6
+35990,20088.9012,0,148784.4639,15.6
+35991,20204.11528,0,1774012.239,15.6
+35992,20155.22365,0,35455.10352,15.6
+35993,20262.47847,55286.55516,143739.9818,15.6
+35994,20247.64561,0,752656.7564,15.6
+35995,20289.35447,6375.70458,36156.72117,15.6
+35996,20325.83147,20228.86511,144655.0226,15.6
+35997,20328.35321,14002.18372,754500.1654,15.6
+35998,20364.90402,14325.60994,36825.90637,15.6
+35999,20406.27903,14678.02939,145507.2889,15.6
+36000,20424.53348,14791.83028,756220.7963,15.6
+36001,20754.18205,15059.26958,37499.64989,15.6
+36002,20838.77051,15143.97476,146373.1887,15.6
+36003,20983.40711,15171.24218,757946.4382,15.6
+36004,21105.19675,15354.54359,38222.3675,15.6
+36005,21196.85346,15330.31842,147228.6854,15.6
+36006,21313.63108,15500.54449,899860.0159,15.6
+36007,21426.06066,15583.81291,105669.0287,15.6
+36008,21534.40573,15563.2833,185637.7403,15.6
+36009,21635.38037,15641.49149,839258.6972,15.6
+36010,456566.0812,15819.45164,116194.1262,15.6
+36011,3000.659594,15807.706,193901.0799,15.6
+36012,23937.95687,15875.83962,842775.6505,15.6
+36013,186470.3021,15988.39549,116487.6928,15.6
+36014,128385.446,16030.33017,197714.1647,15.6
+36015,103865.8546,16081.25346,847017.1683,15.6
+36016,128493.2673,16182.43453,118747.8009,15.6
+36017,122420.6202,16246.95382,200097.6915,15.6
+36018,124379.7486,16274.78699,810363.8805,15.6
+36019,125197.1956,16430.08309,79281.18203,15.6
+36020,125769.9814,16389.37694,177816.4447,15.6
+36021,126904.0377,16780.47537,812724.7166,15.6
+36022,128001.923,16583.69041,80533.70225,15.6
+36023,128802.2206,0,179239.6494,15.6
+36024,129773.4423,0,814995.1741,15.6
+36025,130903.9849,0,81852.06666,15.6
+36026,131603.9593,0,180682.9163,15.6
+36027,132676.3273,67465.71241,1840072.395,15.6
+36028,133595.7218,0,81512.40104,15.6
+36029,134583.6376,5813.119694,176117.3604,15.6
+36030,135507.2599,26511.82298,804322.0925,15.6
+36031,136775.0579,15371.84318,82926.86028,15.6
+36032,137243.1911,17218.55271,177865.4327,15.6
+36033,138814.9139,17377.06623,807432.0032,15.6
+36034,139124.0575,17638.97498,84314.45181,15.6
+36035,140548.0802,17456.67497,179551.1702,15.6
+36036,141318.3343,17529.22834,725313.8447,15.6
+36037,142428.8813,17594.71982,91.36822611,15.6
+36038,143207.8123,17627.78323,0,15.6
+36039,144325.6244,17690.18683,729458.5676,15.6
+36040,24872.90623,17751.52286,88.74756775,15.6
+36041,24988.47497,17780.18517,280173.9654,15.6
+36042,25049.55217,17896.57851,798996.6175,15.6
+36043,0,17853.37215,81378.72622,15.6
+36044,0,17971.21221,195502.9526,15.6
+36045,0,18015.90169,818739.2833,15.6
+36046,665180.6269,18058.79062,90107.17158,15.6
+36047,21277.24498,18210.94743,435416.3995,15.6
+36048,28041.6688,18175.53404,89044.70081,15.6
+36049,234596.4439,18166.67528,93350.66868,15.6
+36050,148679.8503,18288.43555,135071.0058,15.6
+36051,153320.1421,18327.57594,228712.7011,15.6
+36052,157072.2436,18617.66747,342728.1446,15.6
+36053,158402.6242,18435.81691,314909.8126,15.6
+36054,158885.513,18455.80307,87902.05686,15.6
+36055,159867.0748,18512.36446,91131.32839,15.6
+36056,160643.908,18607.82595,115265.2353,15.6
+36057,161596.0912,0,334837.8989,15.6
+36058,162174.1352,0,88150.16382,15.6
+36059,163262.5562,0,89972.37322,15.6
+36060,164082.408,0,88926.77945,15.6
+36061,164503.06,77750.25015,316882.3972,15.6
+36062,165419.8472,120.3259053,226173.4583,15.6
+36063,165676.5208,7831.75521,237299.1902,15.6
+36064,166311.8427,456063.3663,1112494.424,15.6
+36065,167022.1815,17381.63577,219175.2192,15.6
+36066,167500.4064,19140.94773,215892.6475,15.6
+36067,168388.1182,19231.10239,213114.2904,15.6
+36068,168499.1179,19260.85893,708295.5413,15.6
+36069,169389.3548,19324.06325,87654.24059,15.6
+36070,170024.3163,19331.09808,165754.625,15.6
+36071,170415.5442,19371.92684,646657.5471,15.6
+36072,170787.2447,19422.31384,0,15.6
+36073,171929.3353,19478.47181,0,15.6
+36074,172122.1066,19455.98321,846009.2824,15.6
+36075,172899.3396,19548.33946,70749.85639,15.6
+36076,0,19573.6891,162820.7779,15.6
+36077,0,19556.48769,764143.5292,15.6
+36078,78701.28353,19700.37443,93289.61188,15.6
+36079,15985.39748,19644.73275,172339.4625,15.6
+36080,22326.57775,447231.5845,763753.9673,15.6
+36081,674844.3689,19749.05475,134917.777,15.6
+36082,38351.54847,19792.02329,424134.312,15.6
+36083,86017.97707,19804.55204,140817.2937,15.6
+36084,253388.2316,19847.46521,145100.4876,15.6
+36085,167997.547,19901.43392,183446.4154,15.6
+36086,179645.9686,19916.60002,234415.5915,15.6
+36087,180691.9037,19977.56176,344408.0195,15.6
+36088,180729.8914,19956.78863,335460.924,15.6
+36089,181945.615,20048.89547,141935.8984,15.6
+36090,182034.1097,20031.51514,145381.5777,15.6
+36091,182185.601,0,171962.8454,15.6
+36092,183311.1654,0,241644.4166,15.6
+36093,182984.4232,0,335754.7353,15.6
+36094,184214.1341,74689.33803,227272.4634,15.6
+36095,183938.8587,0,260076.6533,15.6
+36096,185153.1969,440784.7827,249415.0786,15.6
+36097,185530.8324,27384.49062,247504.5819,15.6
+36098,185401.7839,19125.74303,245970.8818,15.6
+36099,186655.3124,20450.34318,754892.6067,15.6
+36100,186656.5622,20484.12843,146883.3628,15.6
+36101,187231.2232,20540.0334,1035076.408,15.6
+36102,187925.4758,20587.30018,779226.1269,15.6
+36103,188311.8983,20598.40198,149738.1801,15.6
+36104,188323.1001,20688.87873,128752.7499,15.6
+36105,189667.5872,20688.87803,691167.3966,15.6
+36106,189371.323,20721.60435,50271.02716,15.6
+36107,190436.6406,20735.83927,326363.0413,15.6
+36108,161271.7153,20822.8106,786870.1451,15.6
+36109,161981.5539,20869.62124,142502.9393,15.6
+36110,244006.5596,20836.97696,193179.7009,15.6
+36111,21352.99067,20958.43984,761150.418,15.6
+36112,20913.23842,20948.84085,108395.4804,15.6
+36113,34479.84907,20959.32324,183644.6512,15.6
+36114,29262.20356,21070.87254,771038.3026,15.6
+36115,683904.5484,448366.1128,110613.7167,15.6
+36116,54194.05934,21117.2335,187318.8002,15.6
+36117,119861.067,21118.52184,778652.506,15.6
+36118,260513.5943,21212.56545,112857.8137,15.6
+36119,187679.0382,21177.02679,190995.1863,15.6
+36120,197402.6114,21291.04252,785889.9598,15.6
+36121,198467.4043,21297.00084,114900.7465,15.6
+36122,199629.8514,21318.33872,194408.4349,15.6
+36123,200320.6786,21384.31228,792110.617,15.6
+36124,200924.7029,0,116743.3804,15.6
+36125,202104.7457,0,197348.8013,15.6
+36126,202809.5202,0,798146.7678,15.6
+36127,203662.2184,79386.32256,118343.5539,15.6
+36128,204371.2257,1505.325559,200299.1988,15.6
+36129,205395.2742,13711.06538,803706.9678,15.6
+36130,206140.0988,29202.57411,119980.0637,15.6
+36131,207075.2932,20560.93818,203017.351,15.6
+36132,207822.5007,21785.45818,808927.0642,15.6
+36133,208660.0736,21882.28056,121538.2969,15.6
+36134,549126.191,22014.77576,205592.9196,15.6
+36135,210392.6954,21992.19612,813809.4611,15.6
+36136,211345.0452,22001.18505,123127.7996,15.6
+36137,212349.5693,22079.07685,0,15.6
+36138,213082.4675,22109.4311,697432.3865,15.6
+36139,213801.8404,449332.6607,973859.5343,15.6
+36140,183470.0488,22182.93467,344191.4353,15.6
+36141,184045.4564,22200.06891,798140.3159,15.6
+36142,270160.6,22273.47289,112590.462,15.6
+36143,215566.2649,22303.67492,219185.2534,15.6
+36144,206502.8424,22298.35728,814135.4773,15.6
+36145,37918.17631,22389.7887,125976.6526,15.6
+36146,31912.16312,22425.19117,210514.2578,15.6
+36147,32198.71501,22414.58255,819234.1582,15.6
+36148,695172.6646,22522.86676,127227.1528,15.6
+36149,84234.9186,22486.2719,212436.3038,15.6
+36150,168687.4361,22586.37685,823329.2224,15.6
+36151,274318.0201,449598.2958,128651.2654,15.6
+36152,219668.1215,266497.9798,214493.1537,15.6
+36153,226408.6608,74607.01363,827286.71,15.6
+36154,227980.4582,61613.84383,129987.5694,15.6
+36155,228278.2217,121605.2897,216523.1266,15.6
+36156,229004.1647,119511.6099,831027.922,15.6
+36157,230377.9297,83641.11963,131453.2367,15.6
+36158,230866.9694,88498.87201,218400.9205,15.6
+36159,231771.0312,89066.07308,834608.7623,15.6
+36160,232605.1346,173214.3326,132678.5669,15.6
+36161,233584.1122,93728.58706,220371.866,15.6
+36162,234417.0411,102671.5584,837835.5607,15.6
+36163,235318.6744,122454.4932,134007.3069,15.6
+36164,235939.696,112274.3848,222119.2239,15.6
+36165,236927.1655,114648.3361,840995.2284,15.6
+36166,238068.4257,114569.6037,135219.4563,15.6
+36167,238480.8001,115915.6287,223947.9422,15.6
+36168,239770.8977,115700.5038,843746.216,15.6
+36169,239913.6948,116192.4927,136547.7511,15.6
+36170,241469.55,544218.8088,0,15.6
+36171,242183.0937,117279.6771,712815.0058,15.6
+36172,208602.7738,117761.0871,0,15.6
+36173,209624.219,118425.4085,379047.9574,15.6
+36174,297723.7985,118733.2378,849186.8581,15.6
+36175,252090.187,119099.0992,120206.5196,15.6
+36176,231180.5419,119767.8134,244884.26,15.6
+36177,253965.1828,120283.4883,851979.4469,15.6
+36178,35032.32389,120508.0358,1150128.273,15.6
+36179,35007.85668,121297.4347,224243.2289,15.6
+36180,35172.61089,121674.2781,838788.005,15.6
+36181,755037.7682,122058.3479,1655528.637,15.6
+36182,183962.94,23871.47494,905817.8038,15.6
+36183,131991.0285,23848.39156,1631544.79,15.6
+36184,325305.4591,23956.82039,992805.0392,15.6
+36185,244553.9652,23929.19156,1048497.961,15.6
+36186,253204.6465,24028.92269,1718463.48,15.6
+36187,254029.8123,23995.66296,1023913.99,15.6
+36188,254277.3185,24074.80306,1029530.97,15.6
+36189,254284.3231,24060.48588,1759574.301,15.6
+36190,255135.1915,0,1044573.652,15.6
+36191,255133.5719,0,1053501.869,15.6
+36192,255135.0493,398647.0465,1787491.082,15.6
+36193,255942.5992,88906.68162,1064489.991,15.6
+36194,255860.8927,70447.12486,1068380.22,15.6
+36195,256619.1555,128298.4099,1809747.035,15.6
+36196,256543.6986,149973.0625,1080224.041,15.6
+36197,256767.9773,122242.9834,1082915.164,15.6
+36198,257629.3749,129374.1249,1827608.168,15.6
+36199,257365.242,129719.811,1093657.66,15.6
+36200,258003.8745,130275.722,1095291.414,15.6
+36201,258183.7617,130607.0651,1842898.996,15.6
+36202,258676.04,130406.5804,1104879.065,15.6
+36203,259267.1021,131411.8054,955147.3093,15.6
+36204,223159.1783,131320.8695,1703796.24,15.6
+36205,223925.3039,131921.3766,963289.6971,15.6
+36206,313156.6932,132034.6486,1274515.773,15.6
+36207,269372.3149,132487.6986,1867853.392,15.6
+36208,245673.3038,132809.5057,1096562.486,15.6
+36209,605898.783,133144.1166,1140521.745,15.6
+36210,261739.0058,133131.0153,1870254.421,15.6
+36211,36074.6104,134294.9603,154394.0093,15.6
+36212,36221.79525,133913.153,253946.7561,15.6
+36213,36197.32633,134732.0777,897040.5079,15.6
+36214,783365.9037,134732.4434,154226.8461,15.6
+36215,231324.8237,135385.796,252946.3279,15.6
+36216,113109.0991,135479.1123,895402.1576,15.6
+36217,347911.3395,135912.3682,1227153.246,15.6
+36218,255988.3442,136410.4144,243876.4211,15.6
+36219,264649.786,136818.7879,875177.0599,15.6
+36220,265406.1098,136913.1879,150625.0479,15.6
+36221,265183.0921,137387.3121,1831220.138,15.6
+36222,266180.1303,25248.37159,1702168.388,15.6
+36223,266034.6845,0,1030380.606,15.6
+36224,266456.7798,0,1113426.988,15.6
+36225,266497.2585,0,1866052.666,15.6
+36226,267258.7031,93361.63758,1105624.378,15.6
+36227,267553.4198,8193.858221,1119074.865,15.6
+36228,267058.6786,11158.2128,1919573.802,15.6
+36229,268300.8362,499435.0874,1202246.158,15.6
+36230,268288.9464,23822.87023,1204688.228,15.6
+36231,268522.4936,76097.96162,1946733.606,15.6
+36232,268695.5386,175354.0152,1216210.481,15.6
+36233,269575.8213,147082.7992,1217628.635,15.6
+36234,269175.5839,137255.6676,1961950.099,15.6
+36235,269958.7546,142868.3607,1227789.92,15.6
+36236,233050.8926,142815.304,1073287.042,15.6
+36237,233703.3857,143254.0279,1818783.678,15.6
+36238,323749.0508,143381.8705,1082172.008,15.6
+36239,281423.9467,143813.3832,1397762.231,15.6
+36240,257252.7758,143711.5513,1992329.393,17.8
+36241,1092233.672,1422319.029,2925839.807,17.8
+36242,938618.308,1065615.345,2821524.176,17.8
+36243,556291.8731,220332.5512,2880573.904,17.8
+36244,80308.26393,364290.6226,1885127.872,17.8
+36245,887594.0009,470388.0383,1553640.924,17.8
+36246,573305.8465,426137.778,2101396.531,17.8
+36247,673526.5016,403355.1242,1657780.538,17.8
+36248,534230.7758,407146.2676,1659671.837,17.8
+36249,535756.2791,405717.9281,1715528.905,17.8
+36250,542388.6474,404307.3663,1660906.728,17.8
+36251,538890.5516,403864.7129,496566.1269,17.8
+36252,533789.4424,401564.1052,452218.5563,17.8
+36253,532139.5596,401069.7087,2637528.64,17.8
+36254,531348.2248,400142.634,1783819.543,17.8
+36255,530890.7203,398459.4462,1363618.149,17.8
+36256,530584.6214,327258.1055,1743670.118,17.8
+36257,528963.2682,326441.9517,2691572.102,17.8
+36258,529261.8641,465801.5075,1511105.164,17.8
+36259,528514.127,83061.02034,1525432.664,17.8
+36260,527796.4746,88403.9161,1573674.499,17.8
+36261,527576.8467,86085.3691,1539448.604,17.8
+36262,527229.3672,1084531.466,1550465.539,17.8
+36263,527097.6224,257185.93,1771813.707,17.8
+36264,525815.0032,269426.5166,1544994.451,17.8
+36265,526590.6691,480408.9374,1559327.987,17.8
+36266,526100.7818,379442.6214,1595780.699,17.8
+36267,525742.4673,392019.531,1569465.015,17.8
+36268,788754.3606,390482.6996,1575893.69,17.8
+36269,450070.3453,390255.7279,1381710.04,17.8
+36270,539838.8442,390254.8025,1386368.805,17.8
+36271,537996.205,371725.1961,1691721.933,17.8
+36272,502767.7405,371716.9494,1660040.759,17.8
+36273,516688.3859,371484.706,1599116.762,17.8
+36274,515872.6476,370320.5711,1609055.067,17.8
+36275,116868.1017,370641.5336,2305480.919,17.8
+36276,84470.5847,423627.0621,1631467.377,17.8
+36277,903991.5523,370944.3418,1631572.915,17.8
+36278,656198.1706,381318.0754,2348193.032,17.8
+36279,592095.9976,391899.4567,1646647.895,17.8
+36280,512581.6169,384249.7078,1648125.661,17.8
+36281,525933.1449,385629.2339,2368371.378,17.8
+36282,542496.466,384722.4228,1661045.613,17.8
+36283,526990.7683,384583.7608,299360.8475,17.8
+36284,527305.547,384603.7308,926476.1312,17.8
+36285,527141.0236,383598.5709,2767069.173,17.8
+36286,527299.6575,383862.4852,1700380.808,17.8
+36287,526730.8198,383489.1035,2139605.37,17.8
+36288,526958.7169,315694.8107,1749820.123,17.8
+36289,527678.1738,315422.5725,1636471.033,17.8
+36290,526296.2896,451978.3172,2352883.022,17.8
+36291,527616.5677,374232.465,1651405.838,17.8
+36292,526838.6646,84588.34835,1654602.374,17.8
+36293,527481.331,84198.44978,2372560.469,17.8
+36294,527035.9335,86638.98808,2667683.761,17.8
+36295,527572.3884,1040996.327,1634921.901,17.8
+36296,527695.0872,232756.5774,2347244.851,17.8
+36297,526881.5802,274577.1996,1653496.474,17.8
+36298,528041.005,461923.2273,1655948.885,17.8
+36299,528024.617,371094.3114,2371334.788,17.8
+36300,452160.9282,381833.3401,1671613.411,20
+36301,2313136.552,1879359.774,2665234.704,20
+36302,2040398.214,1453158.629,3879269.62,20
+36303,1108769.643,656985.1976,3084866.369,20
+36304,915410.772,886260.8319,2651231.715,20
+36305,750088.8218,1354345.859,3055791.501,20
+36306,1558850.392,794736.9516,2489443.91,20
+36307,211750.1878,814793.4386,2501032.261,20
+36308,1003744.832,896546.0598,2994116.47,20
+36309,1155314.397,797794.875,2362440.782,20
+36310,963812.1813,819809.7156,2308788.214,20
+36311,1019470.741,819548.1851,2552434.075,20
+36312,1012575.026,814572.9313,2264945.143,20
+36313,1006902.358,814188.8557,2265020.571,20
+36314,1003354.607,812025.4232,2260676.756,20
+36315,1002843.405,811887.5185,554189.2541,20
+36316,1000704.319,810997.8248,612800.6163,20
+36317,1000414.77,811197.9612,2710309.749,20
+36318,997817.6427,809424.3849,2639988.081,20
+36319,996368.6956,809956.6812,2160398.061,20
+36320,996531.9276,676126.1358,2333295.753,20
+36321,994087.8974,889265.5346,2216126.045,20
+36322,993680.2723,800531.5889,2212174.985,20
+36323,992115.1822,802839.9566,2227512.413,20
+36324,991019.458,812967.6006,2223842.114,20
+36325,991277.3822,170582.6464,2223495.572,20
+36326,988786.3751,170071.415,2229399.488,20
+36327,988737.2297,1680876.941,2448792.246,20
+36328,987889.4744,830552.9606,2196478.555,20
+36329,985758.7209,634651.1298,2204779.045,20
+36330,986474.418,820085.7058,2208822.586,20
+36331,859355.2739,871121.6686,2989561.326,20
+36332,1023934.084,811646.6332,1781352.411,20
+36333,979189.1857,802405.5579,2117352.874,20
+36334,987614.2929,819012.6954,2090068.953,20
+36335,982827.0634,815165.5789,2278429.521,20
+36336,981068.9761,815730.8301,2189415.482,20
+36337,946789.0236,815857.3681,2192724.627,20
+36338,124557.7088,778309.7036,2212810.269,20
+36339,1017914.674,777774.7229,2209742.004,20
+36340,1182915.438,871523.8968,2211985.269,20
+36341,872859.6508,811735.9993,2214940.343,20
+36342,1010384.691,814372.8484,2214482.566,20
+36343,982238.6709,824291.1781,2217818.19,20
+36344,1317204.906,822060.5711,2216093.51,20
+36345,978005.5793,821423.229,2217975.682,20
+36346,977125.4977,824362.7055,2220885.889,20
+36347,977602.293,823213.2637,497659.0453,20
+36348,976674.5504,825747.2135,494068.6241,20
+36349,975919.5973,1252304.363,2783094.324,20
+36350,976382.2413,828018.9864,2673786.569,20
+36351,975957.4076,699813.5431,2103906.787,20
+36352,975287.1179,900100.7354,2313109.942,20
+36353,974668.2771,826472.2873,2130551.997,20
+36354,975269.435,822906.1328,2212249.308,20
+36355,974561.7629,837995.7891,2192495.345,20
+36356,974886.359,833225.5419,2192679.809,20
+36357,972722.8335,167131.07,2196021.129,20
+36358,973709.3576,167201.6206,2199420.734,20
+36359,974505.8562,1251176.054,2201632.144,20
+36360,972673.8418,912357.5676,2203859.764,21
+36361,2316717.647,3004882.112,4610296.561,21
+36362,2267286.263,1881224.36,3589928.278,21
+36363,731094.5336,883777.4924,2123289.354,21
+36364,830788.9935,869492.2801,2426373.318,21
+36365,1353822.352,1571735.307,2608058.341,21
+36366,1046093.765,1170988.019,2466750.795,21
+36367,1089067.945,1060419.685,2458149.871,21
+36368,1084993.943,1088524.863,2467066.391,21
+36369,1086082.812,1087128.5,2468576.037,21
+36370,1080357.938,1083679.985,2465481.355,21
+36371,1080459.209,1080447.572,2467043.808,21
+36372,1077834.734,1080367.315,2465932.462,21
+36373,1074750.702,1075010.628,2464631.205,21
+36374,1073917.522,1073764.235,2460741.08,21
+36375,1071339.775,1072497.47,2462093.659,21
+36376,1063070.71,1070246.004,2458268.431,21
+36377,1059462.483,1066999.358,2456738.589,21
+36378,1058152.922,1066348.878,2455583.536,21
+36379,1056202.741,1062539.085,2453055.268,21
+36380,1052170.847,1062775.037,2449186.302,21
+36381,1049306.073,1056584.974,2449583.123,21
+36382,1048553.181,1051695.426,2443507.936,21
+36383,1045422.065,1478619.123,2443829.012,21
+36384,1042545.9,1044994.238,2441186.152,21
+36385,1041552.939,1046314.001,2440297.231,21
+36386,1038542.774,1042237.857,2435279.369,21
+36387,1036772.043,1040204.099,2436000.185,21
+36388,1033749.203,1037545.989,2431583.739,21
+36389,1034613.712,1036251.608,2430614.548,21
+36390,1029848.549,1032125.932,2428555.636,21
+36391,1028468.972,1032444.354,2427394.752,21
+36392,1028598.267,1027630.048,2423785.484,21
+36393,1024404.839,1027704.273,2423939.855,21
+36394,1022765.666,1023830.84,2420722.09,21
+36395,1023754.694,1022425.52,2419901.463,21
+36396,1018689.631,1021395.176,2417427.388,21
+36397,1018153.166,1017085.338,2416492.63,21
+36398,1017948.36,1017968.438,2415644.757,21
+36399,1014200.757,1013620.762,2411254.857,21
+36400,1014611.385,1013639,2412034.345,21
+36401,1011331.801,1436328.38,2410210.602,21
+36402,1010616.368,1009439.362,2406320.165,21
+36403,1009147.138,1006342.172,2408585.866,21
+36404,1007030.332,1005896.448,2402918.824,21
+36405,1006532.706,1002243.029,2404877.622,21
+36406,1004206.423,1002445.845,2401442.54,21
+36407,1003180.157,998896.924,2401182.379,21
+36408,1002169.323,997569.7044,2398001.931,21
+36409,996488.3137,997859.5135,2397580.731,21
+36410,995642.3045,993014.1781,2397481.001,21
+36411,993593.543,992221.4415,2395856.03,21
+36412,992121.3194,992413.3791,2394230.302,21
+36413,988754.4727,987352.6736,2392752.576,21
+36414,989780.3689,987724.6374,2393358.583,21
+36415,984566.5708,985781.9572,2390864.859,21
+36416,985846.989,983675.7226,2389838.424,21
+36417,981733.0999,981996.2332,2389495.79,21
+36418,981711.0595,978887.1457,2387525.808,21
+36419,978860.3323,1406142.677,2387079.437,21
+36420,976955.2742,973080.0113,2385607.938,21
+36421,1593661.124,2251518.8,2330468.502,21
+36422,1584722.133,2244339.844,2317835.328,21
+36423,1582514.288,2242317.762,2317424.153,21
+36424,1580275.359,2241066.716,2315794.293,21
+36425,1577656.133,2240429.966,2313131.473,21
+36426,1575235.37,2236989.21,2311308.561,21
+36427,1573267.873,2236528.319,2312676.306,21
+36428,1570890.609,2235186.782,2307772.433,21
+36429,1568846.787,2233181.99,2308823.999,21
+36430,1565615.885,2233974.581,2305730.61,21
+36431,1566096.683,2229612.244,2308877.838,21
+36432,1561134.108,2230660.618,2303507.787,21
+36433,1560245.459,2236154.854,2303724.634,21
+36434,1559910.717,2243062.221,2302906.373,21
+36435,1554173.13,2236713.163,2303071.605,21
+36436,1555864.744,2237316.97,2300475.866,21
+36437,1551142.049,2236982.113,2300261.723,21
+36438,1551848.79,2235176.481,2300658.865,21
+36439,1547545.553,2234712.677,2299291.019,21
+36440,1546891.027,2233495.161,2298518.074,21
+36441,1544789.668,2233521.192,2297687.841,21
+36442,1543925.835,2232236.605,2298444.574,21
+36443,1541050.4,2230843.117,2295419.222,21
+36444,1539618.938,2230197.68,2297415.379,21
+36445,1536944.124,2229990.717,2296250.878,21
+36446,1535600.477,2228272.659,2294670.382,21
+36447,1535391.769,2227553.881,2293850.696,21
+36448,1532349.115,2228250.277,2293155.859,21
+36449,1529777.737,2225431.74,2295150.412,21
+36450,1530267.039,2226374.352,2291449.257,21
+36451,1526638.508,2224024.783,2292897.32,21
+36452,1526250.364,2223891.013,2290277.409,21
+36453,1523648.111,2223638.008,2292687.363,21
+36454,1522744.895,2222557.979,2287767.983,21
+36455,1521426.439,2221671.821,2290546.759,21
+36456,1517730.381,2221577.17,2289346.734,21
+36457,1518980.617,2220268.541,2289180.251,21
+36458,1515756.182,2219402.249,2290050.989,21
+36459,1513691.659,2218618.635,2285335.652,21
+36460,1513285.472,2219257.825,2290188.161,21
+36461,1510995.33,2217470.371,2287246.277,21
+36462,1506570.719,2216101.364,2286939.284,21
+36463,1506098.849,2217263.353,2280730.918,21
+36464,1503054.312,2214840.55,2279313.909,21
+36465,1502668.828,2216611.557,2280254.022,21
+36466,1498677.608,2213700.098,2224958.944,21
+36467,1499279.755,2214482.691,2225099.875,21
+36468,1492936.429,2212655.312,2218511.358,21
+36469,1491495.691,2212056.532,2215821.2,21
+36470,1490262.711,2213044.195,2215284.583,21
+36471,1486689.754,2209772.225,2211016.061,21
+36472,1486340.627,2212190.653,2207165.964,21
+36473,1481488.515,2209516.198,2206146.52,21
+36474,1483071.259,2210640.972,2200760.196,21
+36475,1479259.448,2207307.113,2200467.286,21
+36476,1477791.364,2210295.251,2196181.996,21
+36477,1476263.531,2207463.04,2192139.998,21
+36478,1472956.956,2206767.492,2191233.145,21
+36479,1473089.186,2207615.246,2184349.516,21
+36480,1470186.18,2206272.837,2189605.8,21
+36481,1243393.08,1958141.778,1828213.265,21
+36482,1223785.291,1939981.707,1809138.066,21
+36483,1219675.605,1934973.725,1795919.308,21
+36484,1214644.664,1930150.506,1786953.447,21
+36485,1210561.404,1926837.008,1777534.36,21
+36486,1207782.466,1922205.625,1768089.571,21
+36487,1202929.876,1920229.883,1758811.146,21
+36488,1200692.187,1914951.293,1751437.922,21
+36489,1196390.012,1913150.286,1741845.436,21
+36490,1192853.006,1909403.952,1734611.957,21
+36491,1190543.092,1906959.907,1726374.311,21
+36492,1186491.341,1903591.278,1720766.111,21
+36493,1183479.928,1900699.813,1711484.165,21
+36494,1179894.406,1897909.085,1705470.408,21
+36495,1177209.318,1895674.22,1698609.2,21
+36496,1175545.075,1892279.932,1691572.442,21
+36497,1170497.194,1890456.452,1685641.946,21
+36498,1168970.893,1886743.827,1678888.84,21
+36499,1165840.697,1885980.272,1671566.401,21
+36500,1163368.499,1882082.428,1665132.82,21
+36501,1159808.083,1880413.104,1658797.757,21
+36502,1158236.106,1878797.428,1651978.307,21
+36503,1155190.826,1877293.384,1646434.06,21
+36504,1151776.648,1875502.447,1638687.937,21
+36505,1150312.046,1874658.864,1634375.915,21
+36506,1146126.671,1872651.722,1626123.335,21
+36507,1145866.946,1871583.645,1620791.145,21
+36508,1141581.232,1870334.719,1615085.247,21
+36509,1139304.801,1869243.785,1609199.001,21
+36510,1137112.579,1866633.902,1602299.75,21
+36511,1134913.561,2241743.631,1598089.27,21
+36512,1132111.839,1864755.821,1592144.027,21
+36513,1129431.882,1863145.341,1586955.492,21
+36514,1127156.817,1863084.971,1582390.303,21
+36515,1124257.745,1859946.219,1577483.742,21
+36516,1123121.862,1860291.178,1571946.485,21
+36517,1119428.591,1858122.686,1567131.073,21
+36518,1117722.44,1857347.955,1562556.489,21
+36519,1115377.066,1855720.721,1557297.807,21
+36520,1112769.689,1854437.93,1552498.744,21
+36521,1110549.862,1853993.057,1547922.124,21
+36522,1108143.94,1851976.503,1542662.872,21
+36523,1106214.408,1851000.071,1539104.017,21
+36524,1103472.507,1850456.129,1533413.495,21
+36525,1101791.997,1848089.075,1529170.332,21
+36526,1098115.221,1848008.341,1524225.625,21
+36527,1097293.199,1846023.487,1520293.216,21
+36528,1093857.764,1845847.025,1514363.174,21
+36529,1093202.391,1843744.902,1511586.437,21
+36530,1089753.852,1842827.048,1505359.667,21
+36531,1088753.835,1842286.126,1501078.001,21
+36532,1085224.922,1840510.027,1497315.173,21
+36533,1083509.724,1839560.438,1491449.137,21
+36534,1081042.384,1838823.847,1488143.148,21
+36535,1080254.309,1837064.102,1482900.72,21
+36536,1075864.668,1836989.131,1478539.953,21
+36537,1075735.929,1834744.113,1474353.109,21
+36538,1073287.479,1834164.421,1468997.052,21
+36539,1070202.405,1833363.857,1465254.52,21
+36540,1068611.845,1831901.113,1460032.996,21
+36541,1067337.362,1830610.711,1456724.464,21
+36542,1062983.644,2204200.367,1450998.544,21
+36543,1063096.982,1828168.163,1447451.58,21
+36544,1059199.705,1826015.953,1442316.641,21
+36545,1057289.811,1824065.814,1438904.589,21
+36546,1056128.158,1823385.671,1434249.439,21
+36547,1053419.052,1821234.301,1429312.683,21
+36548,1051563.244,1820046.31,1425977.554,21
+36549,1048833.944,1818788.343,1420461.24,21
+36550,1047735.39,1816818.918,1416441.95,21
+36551,1044682.394,1816238.388,1412579.171,21
+36552,1043152.756,1813567.807,1406989.188,21
+36553,1040712.404,1813177.955,1404055.544,21
+36554,1040054.851,1811611.164,1398178.179,21
+36555,1036423.833,1809258.182,1395255.222,21
+36556,1034945.675,1808892.404,1389862.86,21
+36557,1033057.312,1806872.356,1385881.965,21
+36558,1030496.969,1805438.491,1381235.045,21
+36559,1029147.268,1804432.628,1378025.591,21
+36560,1027368.93,1802709.786,1372307.666,21
+36561,1024665.499,1801027.45,1368399.873,21
+36562,1022461.464,2176730.197,1364674.491,21
+36563,1021379.744,1797930.068,1358974.307,21
+36564,1018746.442,1797832.923,1356043.412,21
+36565,1016996.446,1795273.182,1350404.803,21
+36566,1015266.71,1794488.493,1346843.617,21
+36567,1012636.571,1793103.955,1341655.522,21
+36568,1010644.401,1791173.083,1337736.375,21
+36569,1009882.111,1790497.444,1332833.004,21
+36570,1006521.809,1788522.034,1329348.091,21
+36571,1002993.893,1787665.826,1320786.949,21
+36572,1000587.745,1785899.417,1316693.771,21
+36573,998109.8416,1784899.377,1313427.181,21
+36574,996449.2118,1782882.767,1310278.017,21
+36575,994956.1589,1782181.457,1306706.642,21
+36576,991260.1483,1780776.621,1304257.056,21
+36577,990764.4996,1779062.609,1300115.952,21
+36578,986986.4804,1777718.026,1298413.133,21
+36579,987254.7155,1777124.064,1293954.796,21
+36580,983041.8184,1774388.102,1292018.075,21
+36581,981491.0006,1774540.269,1288575.555,21
+36582,980797.324,2148489.162,1285350.398,21
+36583,976601.8699,1772047.869,1283720.592,21
+36584,976436.2649,1769512.262,1279355.909,21
+36585,972259.4089,1768336.896,1277653.949,21
+36586,972039.7039,1767542.976,1274129.658,21
+36587,968902.2188,1765643.517,1271351.17,21
+36588,967647.82,1764309.35,1269324.017,21
+36589,965295.6977,1763067.027,1265525.537,21
+36590,963715.9488,1762104.454,1263986.983,21
+36591,960905.6211,1760509.854,1260543.903,21
+36592,959307.4763,1759089.196,1258878.012,21
+36593,956899.7299,1757957.384,1256051.498,21
+36594,954380.9013,1756567.629,1253496.238,21
+36595,953658.2258,1755318.577,1251270.96,21
+36596,950336.0297,1753703.589,1248779.183,21
+36597,946751.9591,1753183.399,1246148.902,21
+36598,945262.5088,1751267.219,1243863.795,21
+36599,941455.8594,1750026.266,1241721.366,21
+36600,940106.2054,1748821.404,1239231.002,21
+36601,941141.277,1752202.73,1244275.805,21
+36602,938744.3491,1752994.791,1243077.153,21
+36603,937047.4339,1750846.394,1242589.357,21
+36604,934879.6725,1751703.635,1241020.278,21
+36605,933256.1321,1751153.389,1239678.625,21
+36606,930362.9716,1750654.199,1238334.932,21
+36607,929346.9339,1749860.808,1237403.261,21
+36608,926588.3685,1750236.65,1236029.228,21
+36609,924913.5875,1749348.18,1234745.882,21
+36610,923000.7815,1748997.421,1233273.785,21
+36611,920645.4871,1744620.762,1232426.311,21
+36612,919272.554,1744141.48,1230160.181,21
+36613,916680.339,1742578.568,1229604.206,21
+36614,915093.4781,1742616.865,1228276.351,21
+36615,912994.5813,1741627.588,1226278.964,21
+36616,910507.9776,1740730.335,1225194.803,21
+36617,909508.165,1740367.78,1224658.257,21
+36618,906701.221,1739587.896,1221918.009,21
+36619,905244.0189,1739181.66,1221588.648,21
+36620,902872.7755,1738026.319,1219752.237,21
+36621,901700.1043,1738626.561,1218480.883,21
+36622,898916.0244,1736559.98,1217561.056,21
+36623,897430.1941,1737170.192,1215980.189,21
+36624,895180.0654,1735586.052,1215333.301,21
+36625,893630.6814,1735499.27,1212635.466,21
+36626,891012.1869,1734745.523,1213523.295,21
+36627,889622.2353,1734070.615,1210804.573,21
+36628,887587.7003,1733932.838,1210083.444,21
+36629,885325.4821,1732863.022,1208963.794,21
+36630,883794.4633,2110360.555,1207418.39,21
+36631,881889.391,1731519.757,1206632.06,21
+36632,879677.6361,1731750.236,1205276.229,21
+36633,878360.5283,1730831.69,1204857.452,21
+36634,876314.72,1730584.833,1202547.043,21
+36635,874193.2166,1729838.348,1203018.92,21
+36636,872832.9632,1729341.374,1200681.115,21
+36637,870550.3286,1729449.222,1200075.403,21
+36638,868882.2819,1704596.27,1199312.658,21
+36639,867211.8307,1700745.553,1197749.15,21
+36640,865183.3192,1698581.57,1197775.854,21
+36641,863690.0809,1696806.502,1195941.048,21
+36642,861273.4273,1695412.458,1195318.14,21
+36643,860269.2926,1693542.022,1194335.725,21
+36644,857799.9743,1692212.664,1192962.657,21
+36645,856196.1484,1690211.39,1192932.65,21
+36646,854764.0008,1688626.371,1191104.026,21
+36647,852616.3648,1687274.947,1190948.624,21
+36648,851077.74,1684504.327,1189808.596,21
+36649,848921.6293,1684245.874,1188809.261,21
+36650,847398.7542,1681736.641,1187802.145,21
+36651,845540.4702,1680578.158,1187353.241,21
+36652,843639.6448,1681301.395,1186108.804,21
+36653,842351.5104,1679660.514,1185524.251,21
+36654,839667.2461,1678284.251,1184154.642,21
+36655,838528.0489,1676871.453,1183676.022,21
+36656,836417.9321,1674805.377,1182945.963,21
+36657,834912.543,1673420.178,1181917.857,21
+36658,832665.2378,1672462.584,1181600.444,21
+36659,831147.963,1669843.807,1180169.865,21
+36660,831921.4911,1668710.203,1179443.344,21
+36661,826673.264,1662779.846,1169273.94,21
+36662,825998.5129,1659628.543,1164958.075,21
+36663,824877.5851,1657321.338,1161376.356,21
+36664,822632.913,1654619.872,1479322.016,21
+36665,821406.7592,1652395.796,1132959.42,21
+36666,820370.1635,1650106.14,1135393.903,21
+36667,819628.6142,1647578.353,1128844.852,21
+36668,819010.3828,1645238.131,1127579.463,21
+36669,817874.6618,1642888.354,1125546.072,21
+36670,817802.7176,1640433.569,1123572.562,21
+36671,816594.435,1638367.335,1121231.106,21
+36672,815637.4408,1635596.521,1119457.682,21
+36673,815235.4238,1633601.349,1117744.268,21
+36674,814315.6182,1630824.758,1114557.372,21
+36675,813441.0365,1628867.623,1433787.286,21
+36676,812909.6324,1626567.108,1091079.194,21
+36677,811821.4385,1624496.519,1093501.593,21
+36678,811254.0569,1621859.298,1088596.283,21
+36679,810453.8314,1997557.729,1088761.862,21
+36680,809859.2134,1617685.985,1086705.44,21
+36681,808637.1473,1615388.696,1085533.321,21
+36682,808314.6808,1612487.387,1084503.046,21
+36683,807379.0018,1610477.236,1082375.397,21
+36684,806316.2019,1608776.249,1081240.564,21
+36685,805978.4589,1605841.14,1079461.933,21
+36686,804921.5008,1603858.952,1401655.722,21
+36687,804451.6941,1601481.096,1058360.651,21
+36688,803440.4931,1599490.247,1058720.986,21
+36689,802579.7327,1596790.796,1056630.252,21
+36690,802184.7764,1595290.676,1054833.184,21
+36691,801399.671,1592338.181,1054449.581,21
+36692,802040.2922,1591426.695,1053412.714,21
+36693,801864.9295,1588890.226,1052180.769,21
+36694,801698.5689,1587186.828,1050795.744,21
+36695,802304.5699,1585194.909,1049571.339,21
+36696,801888.4368,1583562.085,1048745.208,21
+36697,802635.6437,1581386.571,1376337.589,21
+36698,802199.1557,1958336.916,1027180.598,21
+36699,802764.0012,1578180.213,1029871.199,21
+36700,802846.9342,1575926.643,1025764.356,21
+36701,803078.5745,1573939.122,1025479.244,21
+36702,803624.6904,1572608.034,1024523.299,21
+36703,803321.274,1570623.13,1023777.622,21
+36704,804150.8226,1568566.822,1021953.668,21
+36705,804159.5765,1566971.599,1021575.369,21
+36706,804642.4874,1565521.824,1019590.364,21
+36707,804904.0921,1563336.843,1018971.017,21
+36708,805195.0747,1561757.487,1353207.674,21
+36709,805653.1892,1560337.595,981620.7422,21
+36710,806297.4816,1558345.205,990994.6915,21
+36711,806379.3002,1557079.404,984486.4869,21
+36712,806740.8953,1554776.945,981710.9468,21
+36713,807482.8401,1553676.956,980129.6542,21
+36714,807912.3058,1551746.934,977128.9036,21
+36715,810091.0793,1550851.733,975307.0566,21
+36716,811043.3722,1548869.07,972532.0448,21
+36717,811639.2582,1548003.228,970246.1465,21
+36718,812032.8648,1924951.19,967987.8254,21
+36719,813134.0612,1544326.987,964813.7231,21
+36720,813329.1072,1542840.003,962317.1239,21
+36721,843490.9534,1574711.811,1000668.956,21
+36722,844292.3428,1573757.938,999720.8225,21
+36723,844288.3962,1571792.038,997054.5916,21
+36724,844112.7658,1569660.678,994507.3247,21
+36725,844615.7678,1567910.27,993164.8998,21
+36726,844802.8478,1566114.338,989712.0758,21
+36727,844520.5997,1564313.675,987529.0696,21
+36728,845039.2979,1562099.305,985226.2651,21
+36729,844474.512,1561050.801,982624.2528,21
+36730,845177.0356,1558145.433,979860.9117,21
+36731,845257.5554,1557453.974,976966.3071,21
+36732,844863.5334,1554609.368,975127.628,21
+36733,845880.7186,1553349.643,971635.1133,21
+36734,845156.2599,1550826.296,969609.1865,21
+36735,845795.9194,1549752.84,965716.7292,21
+36736,846010.7496,1547454.626,963925.8883,21
+36737,846157.6783,1545666.903,960521.781,21
+36738,845951.9268,1543679.238,957152.5627,21
+36739,846595.5907,1541699.407,955285.1879,21
+36740,846277.622,1539924.601,950883.5749,21
+36741,847074.8418,1538186.155,949232.0648,21
+36742,846510.2766,1536332.241,944651.6382,21
+36743,847187.7298,1534431.954,942972.8562,21
+36744,847729.2188,1532085.121,938841.3862,21
+36745,848915.901,1531043.499,935770.4989,21
+36746,848212.6583,1528204.216,932996.015,21
+36747,848569.7423,1527036.306,929239.1824,21
+36748,849343.8899,1524595.093,926565.0896,21
+36749,849062.798,1523074.163,922752.6232,21
+36750,849457.9428,1520923.203,919409.6791,21
+36751,848608.9564,1519786.576,916731.7263,21
+36752,848888.5406,1517449.232,913070.3682,21
+36753,848029.8592,1515996.868,909804.0269,21
+36754,847189.197,1514248.625,906670.4383,21
+36755,847371.422,1513043.979,903508.7182,21
+36756,846121.8817,1510955.393,899866.9485,21
+36757,845964.602,1509093.075,897312.7891,21
+36758,845125.0847,1507978.33,892836.6555,21
+36759,844817.0113,1506730.802,891001.1315,21
+36760,844157.3434,1504060.927,886776.3658,21
+36761,843191.7174,1503336.817,883810.1719,21
+36762,842794.7438,1501447.963,879328.5051,21
+36763,842036.4185,1500070.985,875722.282,21
+36764,841515.4291,1498113.367,873168.9264,21
+36765,840419.7358,1497188.382,869559.5863,21
+36766,840316.6872,1495255.466,865658.06,21
+36767,839245.5906,1493778.873,863277.0765,21
+36768,838338.9811,1492335.118,858858.9709,21
+36769,838214.3921,1490964.235,856580.6153,21
+36770,837142.1256,1489202.823,852708.5329,21
+36771,836438.9445,1487838.81,849754.4942,21
+36772,835588.2031,1486267.234,846539.4032,21
+36773,835468.5162,1484971.034,843002.3602,21
+36774,833536.084,1483548.074,839555.6156,21
+36775,833623.7857,1481612.478,836913.8455,21
+36776,832892.8558,1480983.672,833203.7808,21
+36777,831408.2746,1478822.817,830456.5194,21
+36778,831352.9778,1477537.084,826935.7928,21
+36779,830375.6122,1476296.747,823443.9315,21
+36780,829391.049,1474520.288,821173.0957,21
+36781,798942.4579,1439105.869,768671.7733,21
+36782,798324.6938,1437021.692,768084.9462,21
+36783,798351.5994,1435305.909,767985.9313,21
+36784,797462.9705,1433475.535,767470.3097,21
+36785,798094.9286,1432124.705,767544.3573,21
+36786,796909.1444,1430450.772,767271.0083,21
+36787,797281.9121,1428896.217,766436.5915,21
+36788,797166.209,1426917.623,767518.308,21
+36789,796248.8427,1425739.808,765755.9194,21
+36790,796584.4273,1423803.692,766778.0393,21
+36791,795923.1287,1422064.146,766856.0677,21
+36792,795884.5424,1420907.025,766931.7378,21
+36793,795734.2365,1418664.851,767066.3759,21
+36794,795168.9054,1417786.003,767460.6692,21
+36795,795289.1683,1416521.53,767394.5104,21
+36796,794784.1783,1415466.444,767617.2601,21
+36797,794483.9779,1414487.715,768076.1477,21
+36798,794251.0047,1412123.963,768140.3715,21
+36799,794428.4886,1411081.679,767832.6645,21
+36800,793543.9543,1409850.862,767397.4875,21
+36801,793545.024,1407774.957,768415.3155,21
+36802,793583.7633,1406575.291,767794.334,21
+36803,792840.769,1405420.668,767921.3147,21
+36804,793031.2079,1403613.473,767534.0793,21
+36805,792439.24,1402283.019,767846.7994,21
+36806,792754.8556,1400988.153,767236.5542,21
+36807,791695.396,1399645.138,767354.1852,21
+36808,792255.6,1397372.377,766290.217,21
+36809,791195.0811,1397080.399,766777.0878,21
+36810,791590.3293,1394979.891,766952.7749,21
+36811,788787.6396,1394179.643,765938.3679,21
+36812,788698.8992,1392763.042,765471.6542,21
+36813,788830.8922,1391682.508,766580.9867,21
+36814,788384.1578,1390372.038,765013.3951,21
+36815,788709.3108,1389423.445,765314.1623,21
+36816,788091.9693,1388010.922,764825.9966,21
+36817,788439.8291,1387323.884,764181.7527,21
+36818,788389.5002,1386057.417,764672.9018,21
+36819,787870.5756,1384943.438,763352.3146,21
+36820,788394.6726,1383828.847,763431.22,21
+36821,787866.1418,1382809.363,763016.2674,21
+36822,787920.8943,1381811.105,763144.6053,21
+36823,788074.3608,1380682.629,761662.1043,21
+36824,787642.0406,1379785.189,761850.9191,21
+36825,787719.7463,1378413.698,761354.3546,21
+36826,788017.8074,1377921.312,761132.7497,21
+36827,787742.5816,1376729.673,760298.6656,21
+36828,787457.1474,1375599.295,759865.2392,21
+36829,787649.2376,1374896.811,759933.5671,21
+36830,787658.6801,1373747.99,758653.1675,21
+36831,787582.541,1372550.288,758440.4654,21
+36832,787490.7262,1372037.435,758429.942,21
+36833,787465.3456,1370666.368,757381.8304,21
+36834,787160.468,1370097.838,757010.7701,21
+36835,787951.7561,1368740.027,756679.1704,21
+36836,787196.8971,1368461.657,755608.2703,21
+36837,787289.9957,1366973.207,755621.225,21
+36838,787535.3719,1749320.047,754700.2887,21
+36839,787364.0175,1365630.712,754324.2606,21
+36840,787402.7133,1363859.016,753424.9434,21
+36841,791145.4584,1369518.557,760560.4765,21
+36842,791427.8027,1369998.563,758380.3322,21
+36843,791379.9672,1370228.254,755695.2438,21
+36844,790346.0222,1371547.327,752566.3193,21
+36845,790997.4564,1370995.51,750066.4968,21
+36846,790062.5606,1371842.694,747196.0125,21
+36847,790181.9952,1372186.89,744308.8199,21
+36848,789635.7601,1373234.004,741544.1549,21
+36849,789055.9087,1373353.599,738419.9835,21
+36850,789176.4451,1373363.279,735359.9505,21
+36851,788701.5692,1374486.66,732327.0068,21
+36852,788515.4526,1374710.771,729445.1467,21
+36853,787883.8354,1375294.275,725883.9646,21
+36854,787730.1678,1376122.777,723032.8322,21
+36855,787805.5826,1375539.749,719374.5609,21
+36856,787088.9546,1377223.299,716600.0693,21
+36857,786815.6423,1377511.839,712660.9045,21
+36858,786940.2786,1377664.337,709929.1164,21
+36859,786132.9312,1378283.373,706278.388,21
+36860,785988.4509,1379354.566,702595.0736,21
+36861,785890.4001,1379329.113,700198.9055,21
+36862,785061.1304,1379944.39,695798.2698,21
+36863,785182.2618,1380655.707,692606.5541,21
+36864,784963.9289,1381396.598,689568.391,21
+36865,784186.5532,1381884.027,685301.3311,21
+36866,784499.2208,1382188.042,682301.2053,21
+36867,783554.0734,1383308.327,678436.0817,21
+36868,783781.2023,1383079.698,674949.7126,21
+36869,783098.5068,1384677.905,671452.0973,21
+36870,785683.1284,1383375.065,667906.8981,21
+36871,784866.7398,1383672.512,664280.2619,21
+36872,785106.5536,1385658.546,660591.2124,21
+36873,784523.1463,1385803.764,657012.6555,21
+36874,784331.0796,1386617.623,653353.207,21
+36875,784797.5642,1386873.05,649697.0604,21
+36876,784226.4652,1386940.193,646485.8495,21
+36877,783626.5954,1388167.321,642569.1576,21
+36878,784538.5766,1387658.504,638846.0205,21
+36879,783244.1911,1388375.868,635379.4594,21
+36880,783915.3647,1389542.264,631965.3591,21
+36881,783445.3606,1388843.244,628307.6306,21
+36882,783288.8252,1389597.249,624154.3649,21
+36883,782892.6937,1390696.882,621196.4201,21
+36884,783240.4411,1389866.628,616917.9864,21
+36885,782625.0175,1391296.145,613720.5933,21
+36886,782823.7158,1391154.43,609642.5544,21
+36887,782233.3236,1391970.239,606606.2139,21
+36888,782610.1355,1391775.216,606132.0114,21
+36889,782269.2967,1392430.585,603182.7627,21
+36890,782011.9756,1392819.103,599268.1977,21
+36891,782091.0484,1393095.701,596181.1457,21
+36892,781763.5474,1393720.272,592656.2927,21
+36893,781429.5783,1393948.267,589368.315,21
+36894,781840.2495,1394763.564,585981.0149,21
+36895,781455.7778,1394627.768,582527.2165,21
+36896,781352.2945,1395294.604,579798.1805,21
+36897,781282.2928,1395626.105,575799.118,21
+36898,780681.6972,1395758.24,572522.7751,21
+36899,781581.5093,1396961.711,569258.2323,21
+36900,780301.0345,1396261.708,566118.2551,21
+36901,775842.0608,1393476.704,554807.2861,21
+36902,774761.6908,1392585.107,553508.4504,21
+36903,774247.464,1394332.624,551881.3056,21
+36904,772925.9389,1393255.67,550672.7917,21
+36905,772937.8856,1395100.213,548866.2321,21
+36906,771546.0767,1394646.882,547711.6211,21
+36907,770689.0137,1395252.575,546689.0759,21
+36908,770466.0948,1395791.029,545125.5861,21
+36909,769308.9566,1396302.816,544737.3118,21
+36910,768505.3988,1396323.291,543694.5103,21
+36911,767979.914,1397444.192,542999.3216,21
+36912,767099.1317,1397417.614,542150.796,21
+36913,766110.8392,1397744.211,541647.5272,21
+36914,765807.1911,1398473.804,541281.1728,21
+36915,764567.5758,1398874.511,540208.7585,21
+36916,764100.6669,1399287.114,539834.6018,21
+36917,763519.3046,1400129.161,539488.5857,21
+36918,762096.1471,1399722.008,538751.2814,21
+36919,761940.6514,1400947.765,538533.2928,21
+36920,760757.0649,1400776.585,538175.7635,21
+36921,760464.6262,1402286.383,537378.1048,21
+36922,759315.801,1401296.347,537564.2986,21
+36923,758766.5333,1404231.789,537106.2552,21
+36924,758064.5786,1404146.153,536679.8654,21
+36925,757036.2688,1404684.168,536549.9022,21
+36926,756470.1727,1404764.843,536397.5196,21
+36927,755557.7699,1405409.337,536101.1432,21
+36928,754815.8385,1405654.072,536084.2719,21
+36929,754290.062,1405596.537,535772.6042,21
+36930,753119.5432,1406474.732,535227.005,21
+36931,750559.005,1406065.975,536173.2628,21
+36932,749834.5739,1406565.401,536062.1411,21
+36933,749267.0856,1406615.717,535618.3021,21
+36934,748532.9824,1407486.638,536162.5793,21
+36935,747725.3664,1406421.191,536273.091,21
+36936,747377.137,1407997.329,536388.7855,21
+36937,746783.9561,1407348.759,536393.1564,21
+36938,745516.7655,1407384.892,536981.8748,21
+36939,745267.994,1408297.955,536862.776,21
+36940,744803.2583,1407705.35,537803.4591,21
+36941,744176.1358,1408119.021,537463.211,21
+36942,743191.8055,1408328.227,538279.2681,21
+36943,742836.4517,1408268.028,538858.0956,21
+36944,742658.8703,1408808.05,538858.9898,21
+36945,741344.7387,1408189.436,539590.976,21
+36946,741023.6593,1409075.827,539823.282,21
+36947,740629.3728,1409082.897,540629.8632,21
+36948,739737.1909,1408617.556,541260.8997,21
+36949,739598.0349,1409333.249,541474.231,21
+36950,738526.3869,1409240.399,542357.8039,21
+36951,738235.4701,1409037.77,542868.9989,21
+36952,737427.5174,1410136.282,543413.6863,21
+36953,737095.3223,1408913.81,543971.4139,21
+36954,736544.1192,1409843.09,544706.2894,21
+36955,735883.3565,1409568.733,545432.1471,21
+36956,735218.5236,1409918.723,545743.5568,21
+36957,734766.6752,1409679.583,546675.4657,21
+36958,734356.0636,1409978.181,547398.3131,21
+36959,733657.0154,1409847.039,548103.509,21
+36960,733137.6874,1410299.893,548619.4549,21
+36961,733631.0764,1411977.966,547123.2625,21
+36962,734519.745,1413310.833,546768.1962,21
+36963,735259.9609,1415868.189,548307.0852,21
+36964,735631.1804,1417149.029,547857.084,21
+36965,736608.3122,1419212.757,548406.8565,21
+36966,737333.2555,1421281.472,549404.1949,21
+36967,737698.6784,1422640.636,549559.9204,21
+36968,739017.2726,1424835.868,550238.5674,21
+36969,738853.9948,1426975.055,550536.9083,21
+36970,740332.7335,1427760.448,551246.5682,21
+36971,740536.6551,1431026.493,551428.1949,21
+36972,741654.3766,1431704.548,552611.3717,21
+36973,741910.6154,1433915.054,552376.6976,21
+36974,743005.7433,1435779.134,553564.3621,21
+36975,743501.4666,1437372.001,553860.7404,21
+36976,744697.9939,1439720.212,554551.0931,21
+36977,744593.9682,1440835.09,555102.922,21
+36978,746309.4502,1443333.001,555578.5317,21
+36979,746209.8512,1444547.759,556588.8367,21
+36980,747645.3115,1446902.609,556559.3344,21
+36981,747901.2134,1448160.618,557879.8766,21
+36982,748804.7263,1450291.588,557717.1607,21
+36983,749422.0172,1452262.638,559170.2775,21
+36984,750828.7779,1453980.742,559474.6429,21
+36985,750639.059,1455921.002,559960.3993,21
+36986,752010.1981,1457370.863,561041.4917,21
+36987,752604.3247,1459698.093,561394.8185,21
+36988,753427.3457,1460524.868,562376.6801,21
+36989,754156.2669,1463901.64,562810.0442,21
+36990,754892.1155,1464544.793,563697.1476,21
+36991,755728.9155,1466434.303,564603.1019,21
+36992,756693.4808,1468791.522,565386.3468,21
+36993,756476.468,1469896.839,566091.1298,21
+36994,757741.8023,1472578.123,567492.2754,21
+36995,758206.3748,1473702.688,567889.1702,21
+36996,758844.1755,1475668.137,569395.8401,21
+36997,759467.0383,1477549.483,570345.5159,21
+36998,759715.284,1479481.832,570908.6953,21
+36999,761190.3734,1480951.905,572119.3178,21
+37000,761010.6394,1483058.023,573093.8634,21
+37001,762055.1996,1484983.93,574086.3524,21
+37002,762137.5285,1485865.379,575073.2179,21
+37003,763423.0463,1489209.553,576257.9649,21
+37004,763865.1365,1489845.153,576959.6284,21
+37005,764117.5727,1492216.51,578779.9624,21
+37006,765106.438,1493480.987,578993.5173,21
+37007,765855.8523,1496192.617,580735.9303,21
+37008,766060.8875,1497302.17,581433.101,21
+37009,766885.4194,1498609.01,582744.5338,21
+37010,767462.3689,1501558.802,583754.9105,21
+37011,768300.0016,1502924.548,584638.3067,21
+37012,768387.1846,1504420.277,586205.4627,21
+37013,769671.1572,1506557.035,586862.7149,21
+37014,769840.8791,1508267.719,588569.2142,21
+37015,770656.1844,1510328.053,589274.1309,21
+37016,771271.5993,1511513.601,590442.7901,21
+37017,771957.8066,1514123.466,591651.3449,21
+37018,772272.0175,1515545.353,592956.7103,21
+37019,773378.4936,1516707.263,593878.1727,21
+37020,775418.6044,1519616.812,595247.213,21
+37021,834038.097,1593191.17,651322.2728,21
+37022,847148.741,1605869.757,656202.7713,21
+37023,853085.0547,1604314.614,658393.8331,21
+37024,849468.4235,1607106.875,663429.3375,21
+37025,852312.5096,1609263.786,664063.2629,21
+37026,852921.8432,1610570.398,734081.8509,21
+37027,854341.2155,1612917.382,628666.5837,21
+37028,855452.3854,1615146.64,804830.4804,21
+37029,855926.1723,1615964.095,709825.3213,21
+37030,857530.9577,1619109.549,655270.2078,21
+37031,857821.8834,1619480.865,681888.6067,21
+37032,859181.9996,1622281.26,680609.1562,21
+37033,859892.2661,1623938.275,682683.597,21
+37034,862314.2011,1625086.044,685338.787,21
+37035,863280.2584,1627147.097,688668.6236,21
+37036,864175.6401,1628378.997,1457952.465,21
+37037,865133.6706,1630579.064,672058.1745,21
+37038,865485.0418,1632309.583,676503.44,21
+37039,866867.7774,1633489.12,1509302.092,21
+37040,866910.0852,1634960.372,687430.8352,21
+37041,894696.8635,1636957.253,1127300.563,21
+37042,880995.3089,1638277.311,684431.0134,21
+37043,886598.9238,1639824.772,693786.2155,21
+37044,887895.2094,1641024.547,724283.4024,21
+37045,890578.4012,1642896.915,715389.8123,21
+37046,890931.3157,1644004.176,769931.4124,21
+37047,892862.6457,1645864.651,988169.9277,21
+37048,893347.1455,1646745.293,703474.2911,21
+37049,895259.1722,1648635.507,712235.4229,21
+37050,897106.5888,1649872.241,809274.5179,21
+37051,897171.0727,1651723.102,782612.3099,21
+37052,898846.5635,1652133.827,719929.1733,21
+37053,900958.9551,1654128.874,735864.4997,21
+37054,900519.7446,1655448.69,730815.3144,21
+37055,901706.2478,1656664.607,735688.0507,21
+37056,903874.8679,1657888.129,740373.8112,21
+37057,904358.7052,1659569.837,746086.0319,21
+37058,904902.5371,1660486.517,1551089.056,21
+37059,906615.6268,1661739.642,756447.2513,21
+37060,907061.0224,1663087.013,762145.5755,21
+37061,908848.902,1664507.64,1598064.75,21
+37062,908722.1748,1665775.875,771781.8202,21
+37063,910033.0344,1667414.988,777566.1488,21
+37064,910561.5719,1667819.55,1620974.215,21
+37065,912389.8191,1670110.189,786767.61,21
+37066,912161.8723,1670436.552,1234767.707,21
+37067,914096.9151,1672406.937,779546.392,21
+37068,914120.7594,1673343.862,791493.2501,21
+37069,914597.2081,1674424.62,847868.0029,21
+37070,915735.1049,1675933.216,970920.4268,21
+37071,917759.8384,1677166.722,820949.9351,21
+37072,916550.5072,1678320.581,916328.9748,21
+37073,917704.979,1679449.09,899504.6306,21
+37074,919686.2393,1680554.087,1157750.189,21
+37075,919744.7465,1682332.541,832957.4358,21
+37076,919680.5744,1683157.119,843683.4146,21
+37077,921644.9774,1684362.185,856793.7223,21
+37078,921768.5802,1685328.203,856935.3759,21
+37079,921972.8045,1686876.757,863215.6778,21
+37080,923346.6019,1688118.279,869166.3455,21
+37081,983387.7817,1710459.886,901593.1304,21
+37082,989685.5431,1709961.831,908732.0905,21
+37083,991852.5389,1708039.807,914343.7703,21
+37084,992055.6399,1744519.076,920775.8316,21
+37085,995662.2844,1742791.521,1727350.537,21
+37086,995074.6351,1733331.802,932772.5191,21
+37087,997651.4486,1737076.868,939874.3349,21
+37088,998157.7458,1733843.916,1774993.963,21
+37089,1001251.839,1735708.647,950238.314,21
+37090,999781.8955,1731888.104,956810.8171,21
+37091,1003436.917,1731423.171,1797589.678,21
+37092,1003175.302,1731254.244,966497.1552,21
+37093,1004307.991,1728657.677,971785.2979,21
+37094,1006125.969,1725839.694,1816155.156,21
+37095,1007141.569,1727371.616,981955.0474,21
+37096,1007064.427,1723537.901,991295.1584,21
+37097,1009146.319,1723022.812,1833961.991,21
+37098,1010122.216,1719251.089,998620.3092,21
+37099,1010691.129,1721083.63,1003264.695,21
+37100,1012160.733,1716387.149,1850915.164,21
+37101,1013952.369,1717398.268,1011996.578,21
+37102,1012877.988,1712813.963,1017255.973,21
+37103,1015249.323,1711972.876,1864708.677,21
+37104,1016462.529,1711255.692,1025356.4,21
+37105,1015662.685,1709021.366,1029439.429,21
+37106,1018015.229,1706900.208,1877872.796,21
+37107,1018428.316,1705535.991,1038211.019,21
+37108,1019057.753,1702889.933,1041487.623,21
+37109,1020843.135,1701713.385,1889454.434,21
+37110,1020511.864,1699586.533,1050271.135,21
+37111,1021316.947,1697252.618,1052927.279,21
+37112,1023304.809,1695467.698,1900798.25,21
+37113,1023137.44,1693954.855,1061210.379,21
+37114,1024684.908,1691220.09,1063540.641,21
+37115,1025033.284,1689961.717,1912078.595,21
+37116,1025254.663,1688296.281,1073822.492,21
+37117,1026879.226,1684714.269,1082348.61,21
+37118,1028122.299,1684332.1,1927363.641,21
+37119,1027357.871,1681250.218,1088684.072,21
+37120,1028633.105,1679257.27,1093137.104,21
+37121,1029590.322,1677782.173,1940625.075,21
+37122,1030161.97,1674895.42,1101936.73,21
+37123,1030855.171,1674275.021,1104678.422,21
+37124,1031497.861,1669867.465,1953514.46,21
+37125,1032684.041,1669804.959,1113697.707,21
+37126,1032521.915,1666496.276,1116705.034,21
+37127,1034143.3,1664909.167,1964858.198,21
+37128,1033064.532,1662290.284,1125137.569,21
+37129,1035705.28,1660543.862,1129661.244,21
+37130,1035405.92,1657940.744,1974397.873,21
+37131,1036738.463,1656289.79,1137454.16,21
+37132,1036425.716,1653331.07,1140638.214,21
+37133,1037593.677,1652108.014,1985364.517,21
+37134,1037995.086,1649145.616,1148236.944,21
+37135,1038991.111,1646489.864,1152285.222,21
+37136,1039096.831,1644436.808,1995189.578,21
+37137,1039337.55,1643205.395,1159292.599,21
+37138,1041403.648,1640519.565,1162095.136,21
+37139,1040195.173,1637988.64,2006010.208,21
+37140,1042508.202,1635698.195,1169728.399,21
+37141,1040984.488,1635504.466,1171169.532,21
+37142,1045286.637,1636329.828,2012954.42,21
+37143,1043072.14,1634657.779,1176580.683,21
+37144,1043967.935,1634894.983,1177354.712,21
+37145,1046185.539,1635136.787,2018521.779,21
+37146,1043983.936,1633851.409,1182904.919,21
+37147,1046410.72,1633867.254,1183784.778,21
+37148,1046121.907,1633344.313,2024930.36,21
+37149,1046781.187,1633332.711,1188467.32,21
+37150,1046853.702,1633136.191,1190735.367,21
+37151,1048074.793,1631789.434,2030291.158,21
+37152,1047280.384,1631868.411,1194500.069,21
+37153,1048405.784,1631389.723,1197714.432,21
+37154,1049230.659,1631444.421,2034708.423,21
+37155,1049236.676,1630628.59,1201383.756,21
+37156,1049107.404,1629759.351,1203147.796,21
+37157,1051819.332,1630182.453,2040928.749,21
+37158,1049320.496,1629051.684,1206626.686,21
+37159,1051103.231,1629513.506,1210014.841,21
+37160,1051099.534,1628240.668,2045128.922,21
+37161,1052819.242,1627348.54,1213570.648,21
+37162,1050841.21,1628340.209,1214571.593,21
+37163,1053422.329,1626219.935,2051135.765,21
+37164,1052172.996,1627283.741,1219583.427,21
+37165,1053792.816,1625581.644,1220191.247,21
+37166,1053713.556,1625300.433,2056444.475,21
+37167,1054345.215,1625554.379,1224382.697,21
+37168,1054245.899,1624049.462,1226138.74,21
+37169,1054643.391,1625187.069,2061295.793,21
+37170,1055305.487,1622369.803,1230647.44,21
+37171,1054943.07,1623516.16,1230831.494,21
+37172,1055813.98,1622710.726,2066892.667,21
+37173,1056597.588,1622666.691,1235079.728,21
+37174,1056567.383,1620594.214,1236658.541,21
+37175,1056430.411,1621412.61,2071734.048,21
+37176,1057284.751,1620833.121,1240407.938,21
+37177,1058772.676,1620718.784,1242325.988,21
+37178,1057110.882,1618440.259,2076007.459,21
+37179,1057995.318,1619975.197,1245538.04,21
+37180,1058787.386,1618132.271,1247524.44,21
+37181,1059426.175,1617770.937,2080863.365,21
+37182,1058750.108,1617843.575,1251067.861,21
+37183,1059983.496,1616751.641,1252070.468,21
+37184,1059511.748,1616477.796,2085345.267,21
+37185,1060374.176,1615124.917,1255592.258,21
+37186,1060863.827,1615838.602,1257225.88,21
+37187,1060255.289,1614207.086,2090115.082,21
+37188,1061477.888,1615324.292,1260354.592,21
+37189,1061414.345,1612531.183,1263096.635,21
+37190,1061410.665,1613278.687,2093427.709,21
+37191,1063000.436,1612386.966,1265851.984,21
+37192,1061857.12,1612774.627,1267134.972,21
+37193,1062712.683,1610795.776,2097514.481,21
+37194,1062641.129,1610956.132,1271617.641,21
+37195,1063449.093,1610067.783,1270765.646,21
+37196,1064132.738,1610171.161,2103057.981,21
+37197,1062824.919,1608649.479,1274453.706,21
+37198,1064696.503,1608438.39,1276792.155,21
+37199,1063996.121,1607812.567,2106644.839,21
+37200,1064914.073,1607729.864,1279327.194,21
+37201,1072501.158,1615556.224,1287524.674,21
+37202,1075108.412,1617597.273,2117855.985,21
+37203,1074379.09,1617700.292,1292814.391,21
+37204,1075849.347,1617816.847,1295218.823,21
+37205,1076245.482,1619082.138,2124117.422,21
+37206,1075974.335,1618230.659,1298840.537,21
+37207,1077922.633,1617760.473,1301469.454,21
+37208,1076456.09,1620102.534,2128969.179,21
+37209,1078215.375,1618218.503,1305607.423,21
+37210,1078440.038,1619419.296,1306869.725,21
+37211,1077826.328,1619378.239,2134824.212,21
+37212,1080046.983,1618693.488,1311775.023,21
+37213,1078404.809,1619179.774,1312819.858,21
+37214,1080144.137,1619798.869,2139875.942,21
+37215,1079892.422,1619275.089,1316789.268,21
+37216,1080252.512,1619627.858,1319361.382,21
+37217,1080302.626,1619286.455,2144575.831,21
+37218,1081443.11,1619549.354,1323157.721,21
+37219,1080909.316,1619776.245,1325115.537,21
+37220,1082413.224,1620206.712,2149390.476,21
+37221,1081269.429,1618601.212,1328407.332,21
+37222,1083420.219,1619962.744,1330300.798,21
+37223,1081499.564,1620373.62,2154736.97,21
+37224,1083284.706,1619501.016,1334279.751,21
+37225,1083163.772,1619778.707,1335666.751,21
+37226,1083578.395,1619173.206,2158740.336,21
+37227,1083281.954,1620067.076,1340223.036,21
+37228,1084547.032,1619889.149,1348487.656,21
+37229,1083705.801,1619602.144,2172227.387,21
+37230,1085060.161,1619220.168,1352884.891,21
+37231,1082718.415,1620620.947,1356199.53,21
+37232,1082567.426,1618604.008,2179180.978,21
+37233,1082856.873,1619742.542,1363270.976,21
+37234,1084283.603,1619707.984,1363601.534,21
+37235,1083153.743,1619502.283,2187572.375,21
+37236,1082969.236,1619381.782,1370764.211,21
+37237,1085446.817,1619022.879,1371188.962,21
+37238,1083017.255,1619947.552,2196227.04,21
+37239,1085196.612,1618980.625,1378574.528,21
+37240,1085110.328,1619359.736,1379826.73,21
+37241,1084368.949,1619814.784,2202996.351,21
+37242,1085086.867,1618453.562,1387904.687,21
+37243,1086074.989,1620074.521,1386742.731,21
+37244,1085178.036,1617838.872,2211262.163,21
+37245,1085623.494,1619735.735,1394253.386,21
+37246,1086856.774,1618538.242,1395508.748,21
+37247,1085604.609,1619029.37,2218128.394,21
+37248,1087001.582,1618080.055,1402114.474,21
+37249,1085235.743,1618806.292,1402001.909,21
+37250,1087396.082,1618603.878,2226802.879,21
+37251,1086917.244,1617236.457,1408235.123,21
+37252,1087431.812,1619498.249,1412637.47,21
+37253,1087356.514,1618002.073,2230077.883,21
+37254,1087320.731,1617579.501,1418312.123,21
+37255,1087998.32,1618458.025,1840699.566,21
+37256,1087353.832,1617827.807,1390422.408,21
+37257,1088350.17,1617727.712,1400132.799,21
+37258,1089129.691,1617357.124,1620064.576,21
+37259,1087554.724,1618584.272,1387613.806,21
+37260,1089331.586,1616262.662,1391067.274,21
+37261,1088872.233,1617638.289,1397686.487,21
+37262,1088723.706,1617420.547,1401835.589,21
+37263,1090856.281,1617703.048,1678493.731,21
+37264,1089680.875,1616125.313,1392999.463,21
+37265,1090029.197,1615843.149,1400143.395,21
+37266,1089109.034,1616160.801,1642257.868,21
+37267,1090365.313,1614785.113,1389546.569,21
+37268,1089421.534,1613906.372,1396570.432,21
+37269,1090250.777,1613339.004,1519041.894,21
+37270,1089218.497,1614342.998,1399190.663,21
+37271,1091036.479,1611573.4,1404800.831,21
+37272,1088533.137,1611378.501,1411486.867,21
+37273,1091002.066,1612315.388,1414572.008,21
+37274,1088533.412,1610195.276,1422740.392,21
+37275,1090418.158,1610086.783,1425147.719,21
+37276,1088805.231,1609480.82,1431215.549,21
+37277,1089970.99,1608594.591,1436222.731,21
+37278,1090179.153,1608224.141,1439403.926,21
+37279,1089301.71,1607567.718,2213329.614,21
+37280,1089067.855,1608006.703,1451598.144,21
+37281,1090329.59,1604586.084,1454521.995,21
+37282,1089519.687,1607072.983,2256391.1,21
+37283,1088798.411,1605609.774,1465089.789,21
+37284,1089971.505,1603887.196,1466778.561,21
+37285,1088487.592,1604589.375,2275161.991,21
+37286,1090528.105,1602881.413,1476120.855,21
+37287,1088518.112,1602135.94,1478297.283,21
+37288,1090008.713,1602776.795,2287885.114,21
+37289,1088208.417,1601367.34,1487314.317,21
+37290,1089460.975,1601094.041,1487522.148,21
+37291,1089234.992,1599158.075,2300201.208,21
+37292,1088668.943,1600139.813,1493952.853,21
+37293,1089440.251,1598560.479,1499372.099,21
+37294,1088712.603,1598483.215,2307799.185,21
+37295,1088861.933,1596847.692,1505314.254,21
+37296,1089613.186,1597887.075,1506323.561,21
+37297,1087854.17,1595162.447,2317212.087,21
+37298,1088729.084,1597136.809,1511245.589,21
+37299,1089647.777,1594051.223,1516270.131,21
+37300,1087672.611,1594806.35,2323576.954,21
+37301,1088983.397,1593644.091,1521003.902,21
+37302,1088318.606,1592553.526,1521568.576,21
+37303,1088653.577,1593335.525,2333257.921,21
+37304,1087638.446,1590892.325,1527660.899,21
+37305,1088186.798,1591313.169,1527069.244,21
+37306,1088827.99,1590212.511,2342438.324,21
+37307,1088169.179,1589699.959,1531965.529,21
+37308,1088053.63,1589934.257,1536558.756,21
+37309,1087863.611,1587509.115,2346694.874,21
+37310,1087765.501,1588316.523,1540299.649,21
+37311,1087855.71,1587105.344,1541925.4,21
+37312,1088184.063,1586194.59,2353450.19,21
+37313,1087188.812,1585566.608,1546254.393,21
+37314,1087936.269,1585371.922,1549373.642,21
+37315,1086999.148,1584359.111,2358952.335,21
+37316,1087864.887,1583143.985,1553551.915,21
+37317,1087121.282,1584274.015,1555116.437,21
+37318,1087322.929,1581123.505,2364181.616,21
+37319,1087538.488,1581851.136,1560087.67,21
+37320,1087115.814,1581012.937,1560686.655,15.6
+37321,0,0,807094.5659,15.6
+37322,0,0,112.2115907,15.6
+37323,0,57.36084308,0,15.6
+37324,0,0,807693.0491,15.6
+37325,0,0,6.105427461,15.6
+37326,0,0,0,15.6
+37327,0,0,808425.266,15.6
+37328,0,0,1197726.255,15.6
+37329,0,0,0,15.6
+37330,0,0,788467.9159,15.6
+37331,0,3.980259309,0,15.6
+37332,0,0,0,15.6
+37333,0,123.3536004,790029.3203,15.6
+37334,0,0,0,15.6
+37335,0,0,0,15.6
+37336,0,0,791513.2294,15.6
+37337,0,7.447340932,0,15.6
+37338,0,0,0,15.6
+37339,0,108.6052409,792943.2987,15.6
+37340,0,0,0,15.6
+37341,0,0,0,15.6
+37342,0,0,794291.8144,15.6
+37343,0,3.569289606,0,15.6
+37344,0,0,0,15.6
+37345,0,81.97588446,795597.683,15.6
+37346,0,0,0,15.6
+37347,0,0,0,15.6
+37348,0,0,796830.8334,15.6
+37349,0,7.098358163,0,15.6
+37350,0,0,0,15.6
+37351,339383.7932,87.37052761,798032.5108,15.6
+37352,0,0,0,15.6
+37353,0,0,0,15.6
+37354,0,0,799171.3737,15.6
+37355,0,4.143339211,0,15.6
+37356,0,0,0,15.6
+37357,0,85.49958604,800276.8027,15.6
+37358,0,0,0,15.6
+37359,0,0,0,15.6
+37360,0,0,801313.0351,15.6
+37361,0,7.130716604,0,15.6
+37362,0,0,0,15.6
+37363,0,97.26839661,802320.1776,15.6
+37364,0,0,0,15.6
+37365,0,0,0,15.6
+37366,0,0,2043092.029,15.6
+37367,0,3.613563793,69214.11924,15.6
+37368,0,0,190742.6677,15.6
+37369,0,83.40455036,848632.8775,15.6
+37370,0,0,69512.08191,15.6
+37371,0,0,189846.9852,15.6
+37372,0,0,846258.7144,15.6
+37373,0,0,70099.06672,15.6
+37374,0,73.00647387,189057.4703,15.6
+37375,0,0,844076.6101,15.6
+37376,0,0,70651.08648,15.6
+37377,0,0,188303.361,15.6
+37378,0,0,841985.3935,15.6
+37379,0,0,71139.32077,15.6
+37380,0,0,187601.597,15.6
+37381,0,0,839680.2857,15.6
+37382,0,183.3783151,71712.36274,15.6
+37383,0,0,187293.4327,15.6
+37384,0,0,837773.4671,15.6
+37385,0,0,72288.78033,15.6
+37386,0,0,186836.6504,15.6
+37387,0,0,836048.107,15.6
+37388,0,0,72822.99224,15.6
+37389,0,0,186369.3645,15.6
+37390,0,0,834407.4914,15.6
+37391,0,0,73322.49319,15.6
+37392,0,0,185943.5021,15.6
+37393,0,0,832879.576,15.6
+37394,0,428134.035,73796.88339,15.6
+37395,0,0,0,15.6
+37396,0,0,761957.4382,15.6
+37397,0,0,0,15.6
+37398,339380.7852,0,0,15.6
+37399,0,0,764368.337,15.6
+37400,0,0,0,15.6
+37401,0,0,0,15.6
+37402,0,0,766655.5281,15.6
+37403,0,0,0,15.6
+37404,0,0,1259258.816,15.6
+37405,0,0,745874.6548,15.6
+37406,0,427936.6923,0,15.6
+37407,0,0,0,15.6
+37408,0,0,748879.4376,15.6
+37409,0,0,0,15.6
+37410,0,38508.55391,0,15.6
+37411,0,3770.10208,751772.8047,15.6
+37412,50294.33365,6671.104971,0,15.6
+37413,700.7290606,16728.38533,0,15.6
+37414,2469.700931,13141.6996,754538.8622,15.6
+37415,11701.61071,13402.09299,0,15.6
+37416,13560.69899,13975.38782,0,15.6
+37417,9939.555143,441812.3452,757202.9105,15.6
+37418,11191.74891,14580.23498,0,15.6
+37419,11228.88384,14891.2372,0,15.6
+37420,11398.10338,15245.1147,759738.3108,15.6
+37421,11500.4296,15443.17174,0,15.6
+37422,11584.98067,15830.86648,0,15.6
+37423,11678.48071,16141.07743,762172.7717,15.6
+37424,11805.79838,16408.72447,0,15.6
+37425,11918.03399,16697.52439,0,15.6
+37426,11974.61968,17073.04319,764488.6583,15.6
+37427,12093.10757,17300.01828,0,15.6
+37428,12223.86445,445084.9135,0,15.6
+37429,12313.03605,17924.85986,766719.2255,15.6
+37430,12380.42449,18217.09454,0,15.6
+37431,12521.58073,18534.97688,0,15.6
+37432,12584.20295,18819.66081,768840.864,15.6
+37433,12728.60035,19118.637,0,15.6
+37434,12759.28946,19412.64148,0,15.6
+37435,12923.06708,19755.71891,770892.5102,15.6
+37436,12984.84454,20004.11343,0,15.6
+37437,13088.14553,20297.37151,0,15.6
+37438,13182.94618,20638.70898,772846.7174,15.6
+37439,13289.80758,448318.0443,0,15.6
+37440,13355.19876,0,300804.1928,15.6
+37441,13651.53486,0,896654.5978,15.6
+37442,0,0,127962.2911,15.6
+37443,0,77237.77669,1349301.812,15.6
+37444,0,986.3206127,881237.4949,15.6
+37445,339373.5484,15466.10221,128947.7431,15.6
+37446,0,28335.75158,221055.7896,15.6
+37447,63771.48044,20586.02857,874454.0546,15.6
+37448,0,21768.6596,129572.2083,15.6
+37449,2081.346157,21877.68752,219259.8235,15.6
+37450,21435.56032,21866.76921,872000.177,15.6
+37451,13931.28462,21898.92222,129274.7373,15.6
+37452,13898.78925,21943.42206,218263.6815,15.6
+37453,14408.374,21996.6793,869968.6377,15.6
+37454,14494.97416,22021.5673,129110.5618,15.6
+37455,14485.90731,22049.80392,217659.8125,15.6
+37456,14582.61587,22041.03827,868204.7855,15.6
+37457,14624.79327,22140.04523,129131.3951,15.6
+37458,14651.08759,22106.6022,252931.477,15.6
+37459,14687.94453,22184.17703,944909.2974,15.6
+37460,14739.81805,22223.21344,206159.6441,15.6
+37461,14804.93561,22140.0398,256977.7161,15.6
+37462,14807.93471,22300.70525,945699.5325,15.6
+37463,14879.59833,22244.13205,207162.9204,15.6
+37464,14933.3859,22265.2215,257713.469,15.6
+37465,14945.2031,22369.2281,946689.4232,15.6
+37466,15009.31801,22525.79871,208259.9541,15.6
+37467,15061.21741,22376.37023,258377.2616,15.6
+37468,15069.94984,22379.38239,947727.2585,15.6
+37469,15136.82501,22397.34863,209178.1811,15.6
+37470,15136.82378,22421.87663,182418.619,15.6
+37471,15259.01854,22366.32095,816315.7564,15.6
+37472,15231.30293,22363.59503,78840.53261,15.6
+37473,15304.73811,0,182320.7489,15.6
+37474,15325.46403,0,816005.0744,15.6
+37475,15387.02311,0,79142.33703,15.6
+37476,15379.59875,80981.00614,340205.3712,15.6
+37477,0,3055.328702,936911.38,15.6
+37478,0,13854.86811,204650.3644,15.6
+37479,0,30315.97809,270298.1734,15.6
+37480,0,21273.09878,948786.441,15.6
+37481,67151.54061,22583.18513,213548.9742,15.6
+37482,0,22541.56903,262612.7003,15.6
+37483,3936.489256,22645.98421,1998340.437,15.6
+37484,24449.23176,22583.17858,208674.1787,15.6
+37485,14425.08304,22691.17226,255769.7909,15.6
+37486,15630.64791,22593.83314,932343.1732,15.6
+37487,15875.81796,22666.70905,131465.4452,15.6
+37488,15904.48845,22638.78964,216056.4349,15.6
+37489,15923.2706,22665.44581,854422.0289,15.6
+37490,15957.11175,22635.34052,131877.9767,15.6
+37491,15988.25436,22670.14719,216421.6533,15.6
+37492,355414.4351,22686.17307,854555.5899,15.6
+37493,16054.23895,22645.96547,132327.4641,15.6
+37494,16126.89149,22711.55801,216904.8323,15.6
+37495,16126.9379,22645.96192,854769.4645,15.6
+37496,16164.25567,22773.15542,132820.1825,15.6
+37497,16186.07483,22690.86916,217340.9488,15.6
+37498,16250.01702,22666.68929,855098.3964,15.6
+37499,16269.61757,22718.65685,133260.1021,15.6
+37500,16302.09002,22670.13121,217880.7612,15.6
+37501,16372.94171,22622.89861,855361.5176,15.6
+37502,16417.98031,22481.65761,134012.9554,15.6
+37503,16541.39428,22430.59981,218491.6679,15.6
+37504,16558.96575,22334.05504,855837.8014,15.6
+37505,16656.81066,22147.04668,134726.4834,15.6
+37506,16730.95016,73.38790582,0,15.6
+37507,16778.57341,0,725288.4462,15.6
+37508,16878.50965,0,0,15.6
+37509,16928.87266,80199.11676,0,15.6
+37510,16987.01714,2391.769203,953979.1876,15.6
+37511,0,12832.81034,121302.2001,15.6
+37512,0,29468.24633,221596.7669,15.6
+37513,0,20142.27964,872771.5379,15.6
+37514,0,21386.90421,138186.1596,15.6
+37515,72491.11793,21342.60097,225598.0288,15.6
+37516,659.8497061,21184.71137,865116.5626,15.6
+37517,8550.330375,21121.56735,139419.1532,15.6
+37518,25344.41142,21089.65921,225259.1401,15.6
+37519,16406.99764,20857.21081,864766.8856,15.6
+37520,17738.87844,20794.68771,139916.8792,15.6
+37521,17837.08582,20725.01956,225346.6592,15.6
+37522,17879.79859,20620.2503,864719.8357,15.6
+37523,17971.6684,20522.96774,1175112.834,15.6
+37524,18032.80786,20355.05985,218389.6453,15.6
+37525,18073.86302,20313.56416,847706.4292,15.6
+37526,18184.88996,20221.58252,137906.1841,15.6
+37527,18183.30958,20058.83459,219242.6202,15.6
+37528,18310.11338,19977.42078,849076.3959,15.6
+37529,18304.56749,19873.78142,138746.9697,15.6
+37530,18423.93607,19855.18494,220201.2729,15.6
+37531,18472.63831,19728.72289,850333.242,15.6
+37532,18549.34833,19608.93387,139610.7999,15.6
+37533,18561.70586,19491.68046,221113.643,15.6
+37534,18709.19836,19469.31239,851553.0365,15.6
+37535,18669.12727,19253.97353,140432.8211,15.6
+37536,18821.16737,19165.59585,222047.8724,15.6
+37537,18828.28589,19097.24586,852754.5841,15.6
+37538,18946.2839,19032.96351,141251.8301,15.6
+37539,358317.1117,0,222947.6068,15.6
+37540,19003.18953,0,712531.1598,15.6
+37541,19127.51263,0,0,15.6
+37542,19144.85433,71.1294159,0,15.6
+37543,19229.61667,77691.61539,716811.4744,15.6
+37544,19273.32509,0,257183.1048,15.6
+37545,0,6072.497407,214325.0863,15.6
+37546,0,27945.88288,846449.154,15.6
+37547,0,16442.55527,157599.6108,15.6
+37548,72474.57754,17855.88905,227473.7062,15.6
+37549,1439.011827,17927.86693,860426.8033,15.6
+37550,14084.33033,17788.06975,145844.7324,15.6
+37551,25513.44048,17707.77266,228503.2174,15.6
+37552,18890.22129,17486.328,860857.1598,15.6
+37553,19859.17963,17455.79308,146321.3457,15.6
+37554,19918.7813,17324.94857,228732.7885,15.6
+37555,20019.2354,17175.03845,861384.1454,15.6
+37556,20079.81809,17043.71013,146925.4881,15.6
+37557,20058.62643,16925.94646,229172.6604,15.6
+37558,20197.80163,16837.23934,861914.6329,15.6
+37559,20238.34049,16637.40598,147629.4437,15.6
+37560,20294.31261,16406.31921,229734.1944,15.6
+37561,20319.31787,16445.07407,862520.6101,15.6
+37562,20354.25024,16496.82925,148354.8156,15.6
+37563,20411.31134,16472.21246,230398.5397,15.6
+37564,20415.44949,16536.5539,1869005.097,15.6
+37565,20475.14616,16635.20425,145774.7403,15.6
+37566,20511.22971,16575.14526,224150.2004,15.6
+37567,20513.8876,16596.03963,848228.6823,15.6
+37568,20569.15906,16581.94427,146801.7322,15.6
+37569,20612.19752,16634.63099,225360.9274,15.6
+37570,20606.22854,16719.85046,850091.3566,15.6
+37571,20708.4301,16623.58021,147801.1686,15.6
+37572,20668.44456,16700.78206,226480.3604,15.6
+37573,20746.92328,0,851836.445,15.6
+37574,20745.38633,0,0,15.6
+37575,20822.10648,0,0,15.6
+37576,20807.20804,0,708243.9759,15.6
+37577,20858.84422,69928.36344,267326.0487,15.6
+37578,0,0,213722.1799,15.6
+37579,0,4039.041777,847446.0326,15.6
+37580,0,26752.14318,163309.6622,15.6
+37581,75753.09115,15215.7521,230995.1472,15.6
+37582,5679.104923,16820.92348,859528.9102,15.6
+37583,13893.67257,17084.06243,152679.722,15.6
+37584,27192.02738,17012.53252,232541.9665,15.6
+37585,20375.64115,17034.95077,860334.7241,15.6
+37586,360547.9809,17102.54407,153434.7928,15.6
+37587,21245.42668,17124.15122,232934.9715,15.6
+37588,21247.6768,17140.49921,861355.2609,15.6
+37589,21336.84065,17147.31961,154216.7835,15.6
+37590,21305.18414,17147.31929,233614.6845,15.6
+37591,21395.72602,17303.48331,862363.0651,15.6
+37592,21360.39946,17162.85585,155018.2079,15.6
+37593,21415.56012,17259.3399,234380.2144,15.6
+37594,21452.94831,17252.51502,863269.1772,15.6
+37595,21472.71711,17347.70832,155877.3889,15.6
+37596,21511.52138,17325.39363,235099.789,15.6
+37597,492819.86,17290.25264,864214.0164,15.6
+37598,21716.7636,17406.05852,156730.29,15.6
+37599,45338.64396,17417.11717,235875.3957,15.6
+37600,100763.4774,17398.08425,865090.2222,15.6
+37601,149324.1353,17447.29744,157553.8998,15.6
+37602,100806.8046,17436.84389,236607.7421,15.6
+37603,113709.9105,17546.82212,866007.9234,15.6
+37604,114124.6393,17490.82423,158325.5316,15.6
+37605,114478.3541,17554.75574,1236368.86,15.6
+37606,114348.5467,17535.11942,850780.1932,15.6
+37607,114951.9774,65.50925919,0,15.6
+37608,114790.0057,0,0,15.6
+37609,115372.1347,0,700589.8178,15.6
+37610,115391.5171,0,287972.9844,15.6
+37611,94108.98841,74286.55763,220182.0844,15.6
+37612,93942.74602,0,841098.3162,15.6
+37613,94533.67416,4768.867335,174710.1688,15.6
+37614,172693.9743,28240.71272,234665.8193,15.6
+37615,104648.7246,15929.78547,859518.9531,15.6
+37616,107342.9582,17844.5698,160015.965,15.6
+37617,124736.308,17908.20528,236805.6918,15.6
+37618,117083.8409,17976.30087,860691.6856,15.6
+37619,118091.9359,18018.02917,160762.5161,15.6
+37620,118715.2124,18019.03289,277291.2179,15.6
+37621,118519.4011,18009.62474,947157.08,15.6
+37622,118406.09,18006.34028,245488.1339,15.6
+37623,118213.5788,18140.029,282679.9295,15.6
+37624,118337.494,18013.1604,951166.7238,15.6
+37625,118029.0193,18075.39904,247605.448,15.6
+37626,118007.2798,18077.71552,284611.1983,15.6
+37627,22033.20554,18150.19816,955354.7483,15.6
+37628,22050.99173,18097.22413,249624.6578,15.6
+37629,21958.60494,18127.14299,286559.5893,15.6
+37630,21979.33532,18085.75661,959074.1445,15.6
+37631,21958.60135,18191.37487,251483.9469,15.6
+37632,21919.91918,18120.23985,288423.5605,15.6
+37633,361257.0862,18186.84027,962339.8327,15.6
+37634,21867.18071,18135.21444,253391.2766,15.6
+37635,21864.32635,18270.56724,290035.9523,15.6
+37636,21792.1406,18150.15878,965591.8391,15.6
+37637,21830.41131,18208.55035,254900.1215,15.6
+37638,21771.20511,18184.55013,291674.6394,15.6
+37639,21719.65422,18244.18743,968365.5764,15.6
+37640,542797.6898,18521.84505,88134.63258,15.6
+37641,21698.6515,0,180487.2958,15.6
+37642,37446.51347,0,801332.2854,15.6
+37643,106885.5638,0,402292.8526,15.6
+37644,135691.8513,0,287704.1474,15.6
+37645,81764.72525,76678.66057,953053.7202,15.6
+37646,95831.0674,0,274100.7205,15.6
+37647,173324.3258,5651.797461,1306063.487,15.6
+37648,104474.0401,28672.75898,953991.9623,15.6
+37649,106944.3632,16549.47329,167302.5745,15.6
+37650,123639.3923,18310.46222,244853.2601,15.6
+37651,115243.1255,18531.62943,868314.4206,15.6
+37652,116521.8469,18455.201,167695.404,15.6
+37653,115662.2702,18490.49343,245506.5437,15.6
+37654,115625.0508,18497.51145,869153.8451,15.6
+37655,115599.9455,18614.80296,168394.589,15.6
+37656,115446.623,18508.7934,246186.6536,15.6
+37657,114950.3988,18526.95264,870303.0342,15.6
+37658,115102.7138,18510.03442,168957.0944,15.6
+37659,114915.718,18525.65571,247051.8084,15.6
+37660,114306.2396,18806.12522,871190.7263,15.6
+37661,114422.5121,18538.23509,169783.1243,15.6
+37662,114566.6778,18569.14376,247822.1536,15.6
+37663,113768.9234,18504.11731,872166.6179,15.6
+37664,114040.5018,18609.97654,170447.7532,15.6
+37665,113948.0024,18541.63338,248629.0411,15.6
+37666,113186.0214,18580.401,873238.6003,15.6
+37667,113590.0229,18582.62083,171035.6359,15.6
+37668,113403.5027,18583.83747,1794159.854,15.6
+37669,112830.6889,18616.6305,1855644.375,15.6
+37670,20973.71241,18671.62611,1176640.695,15.6
+37671,20882.26857,18561.06931,1241668.213,15.6
+37672,20919.23779,18654.09359,1966294.928,15.6
+37673,20859.06841,18616.64302,1065476.257,15.6
+37674,20844.11256,18620.07174,1075510.265,15.6
+37675,20783.9429,0,1783865.793,15.6
+37676,20782.42571,0,1402031.864,15.6
+37677,0,0,1261682.195,15.6
+37678,0,0,1938593.125,15.6
+37679,0,77799.97481,1280099.614,15.6
+37680,415607.1534,0,1264704.682,17.8
+37681,918631.0203,1356781.902,3496597.899,17.8
+37682,904197.9038,676014.8842,2747588.569,17.8
+37683,449013.7149,217075.2867,2107014.457,17.8
+37684,460040.5521,267066.5597,2317019.009,17.8
+37685,296384.722,393874.2413,1677444.555,17.8
+37686,362392.3044,326263.7037,1776910.204,17.8
+37687,343300.6982,319346.1374,2364557.261,17.8
+37688,333188.5308,320932.6896,1688266.329,17.8
+37689,330846.6119,320793.7045,2636653.149,17.8
+37690,330134.6703,319856.6423,2344387.391,17.8
+37691,328719.3164,318402.7329,1668504.412,17.8
+37692,327724.6334,317778.1443,1669305.104,17.8
+37693,326592.1403,317157.3804,2368230.274,17.8
+37694,325427.8479,315719.5161,1683621.816,17.8
+37695,324541.0572,315084.9863,1681137.517,17.8
+37696,323969.3146,315060.1156,2386366.411,17.8
+37697,322854.8886,313301.8495,1691851.097,17.8
+37698,322374.9593,313281.276,299042.2262,17.8
+37699,320979.8898,312478.1002,920403.3541,17.8
+37700,320643.3817,311805.4929,223127.6187,17.8
+37701,320114.9207,311775.8307,2778914.344,17.8
+37702,318999.4651,310123.0996,2505137.516,17.8
+37703,318761.3818,310794.495,1455977.864,17.8
+37704,317740.7689,309409.291,1734824.311,17.8
+37705,317410.6612,309593.7769,2383382.417,17.8
+37706,316754.5423,308842.3555,1454551.425,17.8
+37707,315983.5471,307967.9685,1454385.346,17.8
+37708,315942.5935,308564.034,2476884.404,17.8
+37709,314971.4837,251685.2184,1737019.301,17.8
+37710,266681.4355,251643.9451,1664246.265,17.8
+37711,0,112094.1205,2393243.778,17.8
+37712,90169.37186,42144.09337,1692076.833,17.8
+37713,50740.04005,52700.23513,1687520.012,17.8
+37714,824014.3156,773147.1347,2393449.168,17.8
+37715,338349.9456,85116.92489,1692162.734,17.8
+37716,161611.3354,298584.0307,1689732.351,17.8
+37717,724373.6578,320550.5898,2396081.769,17.8
+37718,306764.0851,290508.5517,1699409.195,17.8
+37719,311178.3842,293350.0511,1692759.449,17.8
+37720,310335.8679,292908.0748,2401089.72,17.8
+37721,310414.419,293045.4487,1698094.081,17.8
+37722,309605.5049,292553.1504,1694776.156,17.8
+37723,309238.9798,291789.9444,2402863.351,17.8
+37724,309220.6728,292258.6935,1698478.948,17.8
+37725,308672.1656,291404.2407,1695225.747,17.8
+37726,308087.7106,291738.4749,2402516.921,17.8
+37727,308006.9187,290597.1177,2684766,17.8
+37728,307624.7915,291215.8914,1661761.543,17.8
+37729,306899.3636,290402.3569,2361399.386,17.8
+37730,307153.6795,290646.7703,1673397.636,17.8
+37731,306293.2151,289698.2561,292434.9997,17.8
+37732,306208.4813,290339.7785,916152.981,17.8
+37733,305731.1274,318320.3301,221552.1418,17.8
+37734,305925.1009,290064.4888,2802654.674,17.8
+37735,304784.2459,297831.5333,2354788.336,17.8
+37736,305331.364,301859.8234,1464922.953,17.8
+37737,304468.7125,298884.1808,1747852.002,17.8
+37738,304412.2511,298829.381,2126487.727,17.8
+37739,304410.8288,298744.2599,1437356.112,17.8
+37740,303104.1342,300164.2604,1757296.627,20
+37741,2318026,1343065.057,3215746.41,20
+37742,885369.9994,1443430.906,3179923.672,20
+37743,849938.4594,478801.1367,3068318.565,20
+37744,241949.7949,243132.7783,2296710.162,20
+37745,966817.7147,1255654.331,2522542.805,20
+37746,633170.4115,466389.2633,2382250.336,20
+37747,809976.1952,756496.7463,2367733.254,20
+37748,894211.9433,608183.3886,2289196.303,20
+37749,716304.3566,631643.0392,2318758.415,20
+37750,792166.3155,630605.2932,2373503.65,20
+37751,739579.3088,617915.0557,2288693.116,20
+37752,745407.498,642091.4814,2290353.672,20
+37753,744143.5252,637243.6835,2290450.321,20
+37754,1076698.423,631157.274,2289418.843,20
+37755,737261.1756,631331.5029,2290923.02,20
+37756,732903.8336,630908.0487,2290572.507,20
+37757,732530.3846,627768.8303,2287690.274,20
+37758,729329.2578,625237.4466,2289353.573,20
+37759,729506.7292,625544.3874,2288023.642,20
+37760,726004.182,621718.3052,2287925.167,20
+37761,725750.0473,621169.0969,2288854.317,20
+37762,723059.0405,619560.473,2287216.412,20
+37763,724011.1148,588461.6069,2288769.807,20
+37764,720605.2898,583865.7953,516284.6996,20
+37765,720653.2996,586519.4935,1414139.78,20
+37766,718380.8235,670623.7865,2813463.772,20
+37767,719136.3079,592457.8516,2679901.713,20
+37768,716473.6041,614234.5338,2109455.974,20
+37769,716947.6118,613496.3898,2295765.54,20
+37770,716644.1092,610257.9237,1928396.331,20
+37771,693151.3688,610336.8685,2207684.237,20
+37772,690708.0446,500239.6152,2138259.65,20
+37773,584023.7133,499786.8436,2129936.304,20
+37774,649482.3913,724270.4566,2134261.042,20
+37775,192656.5998,122246.7059,2348641.418,20
+37776,121220.9205,133276.7948,2256266.164,20
+37777,946290.0796,1216501.962,2253690.073,20
+37778,754053.0989,401301.3029,2276660.694,20
+37779,641217.8245,615233.3028,2273244.743,20
+37780,845912.1093,556143.7127,2273414.318,20
+37781,681161.7831,580079.6834,2278972.076,20
+37782,714377.4845,566098.4092,2278905.925,20
+37783,722266.1683,565458.9944,2280974.465,20
+37784,713446.0913,608630.4224,2284004.636,20
+37785,714706.159,601345.3671,2285273.037,20
+37786,712994.5258,595503.4229,2287157.228,20
+37787,712231.6212,599297.284,2287307.012,20
+37788,713338.8555,598792.6457,2289985.425,20
+37789,711862.7925,598139.9649,2288938.727,20
+37790,711332.753,597043.7474,2291139.451,20
+37791,1050376.799,597032.2033,2291181.937,20
+37792,711246.7667,596054.2883,2292201.237,20
+37793,710732.3149,597137.9574,2293435.942,20
+37794,711797.5034,594369.922,2295176.268,20
+37795,709380.346,594942.4658,2294182.547,20
+37796,710167.2184,565614.6501,505806.9463,20
+37797,710851.9319,565252.2192,502633.9582,20
+37798,710373.2368,562981.1404,2875598.884,20
+37799,709546.9407,646829.7918,2721267.878,20
+37800,709706.4917,570958.7184,2154340.929,21
+37801,2312053.218,2962399.175,4978962.069,21
+37802,2144092.182,1992831.936,3123161.58,21
+37803,663072.2684,689652.1019,2426323.566,21
+37804,774287.2038,803908.0368,2556794.531,21
+37805,957795.9769,873308.6396,2801095.324,21
+37806,1056606.949,1072494.889,2580540.745,21
+37807,886487.1132,895156.4814,2634849.973,21
+37808,927826.5068,930295.0614,2618704.448,21
+37809,925153.7845,930925.1485,2618086.196,21
+37810,918420.9065,926553.2891,2616435.306,21
+37811,916610.9706,923579.6483,2616068.256,21
+37812,913803.0901,922719.0104,2611758.898,21
+37813,910403.0418,919002.7065,2612384.887,21
+37814,907028.3653,917195.2294,2607700.304,21
+37815,906797.2778,915219.5291,2605355.139,21
+37816,902418.7753,913141.8713,2605740.478,21
+37817,900872.3721,912385.2354,2602469.401,21
+37818,896846.2029,909187.166,2601243.603,21
+37819,897531.853,907704.7042,2597002.68,21
+37820,893458.8126,906351.1903,2598164.487,21
+37821,891106.5208,903792.9567,2595200.885,21
+37822,890557.6088,903590.6909,2591610.714,21
+37823,887467.1009,899943.6953,2594560.243,21
+37824,885500.3513,900241.7404,2589092.813,21
+37825,883660.1922,898355.8401,2590247.662,21
+37826,880635.6566,896054.2042,2588147.354,21
+37827,881916.9246,895620.4265,2587336.325,21
+37828,877472.9084,894312.4524,2586451.609,21
+37829,875329.0189,892787.8361,2586917.196,21
+37830,876381.5636,892350.0458,2583037.7,21
+37831,873222.3976,890071.9922,2586206.826,21
+37832,870495.8344,889408.5266,2583647.069,21
+37833,870910.6471,888298.7449,2581887.795,21
+37834,869258.1267,887495.1216,2581444.975,21
+37835,866269.7722,885921.7654,2584016.684,21
+37836,866690.1806,885567.6529,2578992.451,21
+37837,863603.5758,883387.8157,2581704.298,21
+37838,863438.2773,884311.6371,2580408.524,21
+37839,862755.1692,882985.4269,2579565.832,21
+37840,858771.4474,880314.6906,2580781.742,21
+37841,860958.6298,881868.4514,2578360.294,21
+37842,857753.808,879094.7261,2579227.999,21
+37843,855518.0706,878624.3075,2578652.325,21
+37844,856310.9096,877993.7121,2579350.246,21
+37845,855321.2993,877931.2017,2578359.479,21
+37846,853185.8022,875820.0928,2581892.964,21
+37847,851451.4495,877695.5575,2576902.495,21
+37848,851380.6283,873446.9627,2580009.645,21
+37849,850602.5664,875015.4365,2580148.722,21
+37850,848125.564,873233.0835,2578856.045,21
+37851,847904.1111,874452.284,2580207.032,21
+37852,848381.6173,871551.4775,2579519.697,21
+37853,845069.9031,871459.2551,2582353.924,21
+37854,844521.1759,871519.8294,2579526.008,21
+37855,844639.5029,871238.6998,2581185.562,21
+37856,842837.0625,869045.6773,2581091.548,21
+37857,842274.8805,869709.4437,2581169.79,21
+37858,840642.6931,868401.2387,2581174.357,21
+37859,841049.3306,869513.1762,2584101.354,21
+37860,839795.3432,866294.4057,2580130.626,21
+37861,1348510.685,1677829.541,2527248.619,21
+37862,1343017.555,1669525.208,2517185.008,21
+37863,1342471.861,1667977.742,2509397.656,21
+37864,1337757.625,1666228.004,2509567.203,21
+37865,1336555.513,1663228.464,2505045.954,21
+37866,1336098.583,1663592.885,2502406.8,21
+37867,1333312.846,1659429.273,2499322.865,21
+37868,1330647.215,1660402.462,2498908.203,21
+37869,1330721.515,1656979.805,2496466.547,21
+37870,1327582.21,1655314.248,2492083.1,21
+37871,1326100.05,1655118.81,2490485.116,21
+37872,1324912.913,1651746.769,2491102.165,21
+37873,1323619.406,1652401.712,2485931.617,21
+37874,1320786.684,1648488.07,2487064.487,21
+37875,1319338.884,1648927.902,2482913.982,21
+37876,1318592.11,1647211.153,2484445.993,21
+37877,1316721.338,1645019.185,2480085.054,21
+37878,1316147.534,1644716.275,2481201.519,21
+37879,1312368.413,1641421.798,2476440.051,21
+37880,1311900.117,1642929.63,2477608.878,21
+37881,1311829.77,1638615.651,2474193.675,21
+37882,1307912.592,1639574.943,2475814.943,21
+37883,1307340.18,1636890.024,2472291.589,21
+37884,1306728.341,1637001.664,2469857.965,21
+37885,1303746.065,1634046.278,2472244.086,21
+37886,1304146.73,1634055.281,2467230.087,21
+37887,1300892.191,1631366.154,2469703.171,21
+37888,1300060.71,1631843.129,2466447.188,21
+37889,1299358.808,1629971.635,2464428.063,21
+37890,1298432.118,1628620.898,2464707.034,21
+37891,1294702.158,1627412.853,2463345.502,21
+37892,1295619.123,1625536.298,2461983.37,21
+37893,1293344.292,1625715.718,2461566.305,21
+37894,1291463.584,1624211.699,2460281.199,21
+37895,1291007.794,1622278.973,2459060.796,21
+37896,1289208.763,1622119.265,2458038.642,21
+37897,1288646.958,1620607.861,2457969.97,21
+37898,1285651.844,1619049.383,2456061.599,21
+37899,1286506.858,1618489.443,2455022.914,21
+37900,1283324.774,1617738.494,2454982.342,21
+37901,1280540.84,1615797.544,2454120.765,21
+37902,1279066.81,1615068.104,2451020.782,21
+37903,1276554.237,1613548.847,2448071.651,21
+37904,1276698.959,1613191.667,2443447.85,21
+37905,1274559.616,1611832.396,2443994.263,21
+37906,1272048.967,1611944.935,2394773.931,21
+37907,1271854.566,1608282.31,2386390.191,21
+37908,1266296.332,1609206.857,2385436.84,21
+37909,1263918.614,1607898.816,2381214.56,21
+37910,1264342.963,1606146.623,2376526.399,21
+37911,1259716.569,1606357.102,2374851.101,21
+37912,1259393.633,1604915.244,2370937.823,21
+37913,1258954.691,1602790.784,2365163.086,21
+37914,1255999.066,1603326.779,2364878.22,21
+37915,1254557.532,1600758.617,2360226.389,21
+37916,1253560.1,1601910.092,2356902.945,21
+37917,1250846.564,1600250.579,2354055.95,21
+37918,1249982.002,1598200.06,2350225.282,21
+37919,1248204.357,1597312.009,2346129.803,21
+37920,1247943.878,1597826.455,2342070.548,21
+37921,1013943.832,1358249.899,1986872.795,21
+37922,997701.5742,1338626.014,1962788.276,21
+37923,992215.8683,1334616.987,1949549.039,21
+37924,988888.2589,1329332.756,1936105.702,21
+37925,984113.0299,1327165.832,1923448.955,21
+37926,981957.0643,1324301.63,1913414.983,21
+37927,977392.0134,1321873.478,1901258.055,21
+37928,974920.9699,1320243.396,1891360.584,21
+37929,971672.0941,1316985.55,1880800.048,21
+37930,969461.8878,1315359.114,1872134.82,21
+37931,964767.8495,1313006.96,1862052.619,21
+37932,963318.2636,1310842.022,1853347.883,21
+37933,960464.9167,1308464.871,1844852.683,21
+37934,958441.422,1306881.67,1835568.951,21
+37935,955199.5026,1304192.286,1826904.244,21
+37936,952398.5323,1302547.436,1818967.813,21
+37937,950554.4795,1300341.702,1810154.582,21
+37938,948416.1524,1297910.243,1802078.15,21
+37939,945368.3463,1296721.255,1794624.022,21
+37940,944047.2316,1293880.551,1785801.75,21
+37941,941217.4476,1292166.894,1778024.187,21
+37942,939308.4184,1291665.802,1770100.78,21
+37943,937160.5688,1287218.105,1762473.724,21
+37944,934288.3021,1287217.383,1754978.866,21
+37945,933722.0838,1284596.633,1746207.324,21
+37946,929682.1023,1282722.609,1740361.622,21
+37947,929396.7229,1281137.453,1730339.288,21
+37948,925985.9389,1278829.059,1725260.186,21
+37949,925941.6274,1277725.263,1715764.405,21
+37950,922159.0113,1275435.662,1709053.74,21
+37951,920607.0648,1273442.846,1702439.074,21
+37952,918503.9193,1272312.072,1694951.725,21
+37953,916732.1288,1269759.269,1688962.398,21
+37954,913350.0491,1269110.059,1682524.475,21
+37955,911205.6049,1265899.669,1675213.637,21
+37956,907404.6984,1265247.091,1670040.402,21
+37957,905718.5497,1263655.528,1662210.524,21
+37958,903769.5606,1260958.947,1656206.059,21
+37959,901305.2959,1259890.601,1650440.557,21
+37960,898890.1318,1257912.154,1643728.435,21
+37961,897741.3027,1256571.777,1637376.705,21
+37962,893648.8305,1254918.07,1631735.722,21
+37963,892860.4124,1252262.101,1624379.531,21
+37964,890018.317,1252269.832,1619026.037,21
+37965,887858.9759,1249302.947,1613677.155,21
+37966,887162.6645,1249031.43,1606289.905,21
+37967,884946.2716,1246424.585,1601018.741,21
+37968,883426.7436,1245377.307,1594663.146,21
+37969,881942.581,1243545.97,1589573.721,21
+37970,878573.3507,1241556.186,1581869.279,21
+37971,876382.305,1240146.656,1577178.482,21
+37972,874642.8895,1238470.499,1570657.516,21
+37973,873263.3263,1236336.066,1564383.085,21
+37974,871244.701,1235214.606,1558779.865,21
+37975,870201.441,1233220.963,1552419.57,21
+37976,867508.4534,1231678.781,1546168.036,21
+37977,867123.5021,1230207.673,1540685.661,21
+37978,864281.8456,1227321.185,1535056.588,21
+37979,863479.8664,1226179.272,1528178.395,21
+37980,861441.861,1223630.652,1522729.126,21
+37981,859589.3738,1222035.501,1517127.404,21
+37982,857284.7005,1221040.744,1511417.424,21
+37983,855401.9806,1220684.039,1506022.79,21
+37984,853747.0763,1218480.424,2199837.933,21
+37985,851519.3909,1218404.143,1504980.581,21
+37986,849192.1284,1216747.16,1497891.501,21
+37987,847645.313,1216003.229,2217721.972,21
+37988,845777.5912,1214926.874,1494436.273,21
+37989,843623.3095,1213546.43,1487756.365,21
+37990,841556.7538,1213117.574,2212747.433,21
+37991,839485.927,1211251.267,1482969.061,21
+37992,837719.5983,1211528.159,1474987.023,21
+37993,835364.4207,1209197.817,2204125.428,21
+37994,833964.4541,1209083.758,1468791.03,21
+37995,831318.0974,1207762.305,1461593.994,21
+37996,829694.4318,1206733.867,2192631.376,21
+37997,827790.6145,1205862.259,1454823.338,21
+37998,825327.2155,1204974.097,1446470.894,21
+37999,824136.6763,1203503.625,2179525.785,21
+38000,821398.7838,1203475.493,1439999.015,21
+38001,819947.6409,1201431.494,1430944.251,21
+38002,815212.1881,1200943.794,2165852.913,21
+38003,813278.0643,1200353.182,1424074.534,21
+38004,811343.7324,1199014.361,1414640.838,21
+38005,808820.6692,1198262.962,2152255.427,21
+38006,807096.9958,1197097.96,1406589.928,21
+38007,804733.8258,1196846.29,1399237.088,21
+38008,802906.334,1195085.114,2137490.169,21
+38009,800779.9736,1194586.423,1390377.273,21
+38010,799180.5239,1193755.301,1382881.979,21
+38011,796668.4975,1192351.853,2124498.813,21
+38012,795122.0325,1192410.771,1377296.479,21
+38013,793111.8759,1190109.927,1370241.268,21
+38014,791525.2887,1190511.392,2113387.204,21
+38015,789454.3896,1188758.079,1364733.869,21
+38016,787656.3321,1188502.103,1357558.861,21
+38017,785802.8606,1187162.772,2102873.84,21
+38018,784587.318,1186470.199,1352301.277,21
+38019,781742.9046,1185478.952,1345061.374,21
+38020,780849.1741,1184959.147,2092323.124,21
+38021,779128.6673,1183480.291,1339675.248,21
+38022,776954.0936,1183152.384,1333092.226,21
+38023,777393.6361,1182264.3,2082416.989,21
+38024,776471.6216,1180674.178,1326760.072,21
+38025,774194.1289,1181137.9,1322102.6,21
+38026,773282.5234,1178980.78,2071131.6,21
+38027,771125.7221,1178640.243,1315781.441,21
+38028,770171.5211,1177854.224,1308776.176,21
+38029,767742.6851,1177223.701,2062009.879,21
+38030,766774.3802,1175509.96,1303902.908,21
+38031,764687.696,1175933.851,1297309.329,21
+38032,763421.6853,1174239.67,2053164.44,21
+38033,761589.2593,1173742.348,1292017.523,21
+38034,759923.2331,1172658.531,1286701.637,21
+38035,758314.9134,1171765.202,2043385.195,21
+38036,756612.6146,1171421.41,1281487.852,21
+38037,755200.9313,1170422.347,1275538.784,21
+38038,753352.1463,1169075.923,2034238.523,21
+38039,751954.5837,1168929.892,1270354.103,21
+38040,749928.874,1167797.776,1264960.369,21
+38041,753791.984,1173413.044,2032274.275,21
+38042,752010.0872,1173951.827,1266336.698,21
+38043,751099.9847,1173799.647,1261677.902,21
+38044,749821.8044,1173852.819,2024531.279,21
+38045,748623.4623,1174160.899,1256531.118,21
+38046,747071.6552,1174247.824,1251841.288,21
+38047,746464.6758,1174330.326,2016592.054,21
+38048,744894.6417,1172427.17,1246785.552,21
+38049,743655.0484,1172230.79,1242425.27,21
+38050,742397.5991,1172068.472,2008630.013,21
+38051,741543.0855,1172632.674,1236626.704,21
+38052,739894.9865,1171357.708,1231842.467,21
+38053,738948.9472,1172369.633,2000776.826,21
+38054,737802.613,1171752.98,1226845.863,21
+38055,736216.525,1171830.255,1221864.474,21
+38056,735408.2715,1171927.034,1992804.304,21
+38057,734522.6392,1171617.31,1216584.765,21
+38058,732710.3247,1171715.036,1211591.573,21
+38059,731972.0911,1171422.788,1985422.144,21
+38060,730983.0444,1171601.062,1206626.435,21
+38061,729429.6136,1171368.613,1201467.827,21
+38062,728551.1645,1171329.845,1978299.608,21
+38063,727530.1013,1171402.082,1196237.042,21
+38064,725955.72,1170577.715,1192974.46,21
+38065,725489.2798,1172072.055,1970103.878,21
+38066,723941.2229,1170272.335,1187620.056,21
+38067,722783.3802,1171410.878,1182956.148,21
+38068,721994.1357,1170840.31,1962364.913,21
+38069,720654.5858,1170474.93,1178065.34,21
+38070,719904.0249,1172358.351,1173744.659,21
+38071,716431.3462,1171078.433,1955994.672,21
+38072,716286.5239,1172142.462,1168273.223,21
+38073,714627.1622,1170628.933,1164611.453,21
+38074,713919.9164,1171738.156,1948918.601,21
+38075,713073.3454,1171094.765,1159501.507,21
+38076,711881.1313,1171108.286,1155532.328,21
+38077,710537.7193,1171017.595,1941197.637,21
+38078,709713.6402,1166234.938,1151284.13,21
+38079,708730.2998,1166548.91,1146260.347,21
+38080,707720.178,1164793.085,1935132.026,21
+38081,706829.8437,1164705.327,1141746.232,21
+38082,705236.6376,1164887.93,1137757.033,21
+38083,704845.9322,1163624.29,1928278.265,21
+38084,703251.2336,1163489.941,1133296.461,21
+38085,702558.3483,1163027.143,1128913.234,21
+38086,701417.9011,1162805.54,1921583.646,21
+38087,700522.1317,1161544.066,1124361.254,21
+38088,699234.1808,1161473.78,1120638.12,21
+38089,698208.9764,1160961.39,1915388.848,21
+38090,697205.2038,1160198.687,1115925.551,21
+38091,696425.0493,1159938.227,1112075.673,21
+38092,694996.854,1159083.395,1909007.741,21
+38093,693898.1068,1159154.231,1107466.294,21
+38094,693197.073,1157673.52,1103714.372,21
+38095,692087.9578,1158138.197,1462295.527,21
+38096,688870.8837,1156831.085,1075390.212,21
+38097,686968.9309,1156744.479,1076134.452,21
+38098,686536.7283,1155918.139,1071129.811,21
+38099,686060.8383,1155614.887,1069380.352,21
+38100,685509.8002,1155334.36,1066308.079,21
+38101,679251.1039,1149940.075,1057941.254,21
+38102,678713.3677,1149954.317,1056215.208,21
+38103,676873.3147,1148862.425,1054583.635,21
+38104,675987.3761,1149061.798,1052622.381,21
+38105,674724.7687,1149108.811,1052051.413,21
+38106,673484.6211,1148008.169,1049535.101,21
+38107,672734.4847,1147584.522,1048353.626,21
+38108,671378.0043,1147831.454,1046433.997,21
+38109,670255.8797,1146843.612,1045444.498,21
+38110,669091.6394,1147107.513,1042889.04,21
+38111,667660.1705,1146250.266,1042352.487,21
+38112,667018.8272,1145663.406,1040190.007,21
+38113,665236.8604,1145857.106,1037995.069,21
+38114,664543.0922,1145152.855,1037597.738,21
+38115,663137.0611,1145987.679,1034944.551,21
+38116,661797.2956,1144999.918,1033626.723,21
+38117,660732.8713,1144921.487,1031892.515,21
+38118,659943.3854,1144299.803,1030710.884,21
+38119,658307.2915,1144424.555,1028320.404,21
+38120,657073.1722,1143628.786,1027157.63,21
+38121,655968.4821,1143109.386,1025290.423,21
+38122,655042.2066,1143203.493,1023694.438,21
+38123,653364.1473,1142764.519,1021701.64,21
+38124,652485.637,1141800.361,1020704.779,21
+38125,651022.4268,1141882.59,1018102.978,21
+38126,649846.8534,1141566.838,1017461.547,21
+38127,648879.5425,1140835.239,1014930.367,21
+38128,647339.0334,1140331.484,1013543.271,21
+38129,646206.7797,1139817.204,1012187.344,21
+38130,645399.4909,1140013.186,1009698.705,21
+38131,643580.9597,1139747.486,1008808.815,21
+38132,642982.2563,1140244.746,1006705.152,21
+38133,641474.8601,1140170.315,999239.9778,21
+38134,640278.5191,1140344.219,987178.2466,21
+38135,638862.8809,1140947.325,991221.9896,21
+38136,638072.7232,1141465.023,985591.7179,21
+38137,636285.7852,1141282.758,982877.425,21
+38138,635638.6755,1141662.785,979723.5335,21
+38139,634217.4231,1141955.893,977198.683,21
+38140,632751.5211,1142906.836,973685.7722,21
+38141,631979.7178,1143080.606,971467.2239,21
+38142,630744.3629,1142559.101,968536.3766,21
+38143,629384.309,1144478.644,965522.7306,21
+38144,628182.9682,1144076.791,962158.4175,21
+38145,627225.2605,1144962.557,960145.2413,21
+38146,625761.5701,1143998.83,957261.9588,21
+38147,624888.4515,1144649.496,954591.5978,21
+38148,623761.3685,1145388.827,951022.9116,21
+38149,622794.2731,1145411.552,948979.7831,21
+38150,621848.3133,1146383.425,946010.5973,21
+38151,620841.2811,1146526.003,943890.3406,21
+38152,619505.151,1146989.055,940717.6342,21
+38153,618635.7137,1147518.591,937894.0197,21
+38154,617439.0977,1147642.753,935168.1185,21
+38155,616353.7093,1148935.601,932779.8987,21
+38156,615250.6954,1148861.656,930085.4911,21
+38157,613897.5483,1149474.654,926890.6991,21
+38158,613262.648,1149867.616,924260.4918,21
+38159,611782.5972,1150674.54,922133.459,21
+38160,611022.5692,1150689.037,918541.0006,21
+38161,634873.5375,1180963.497,967041.7797,21
+38162,635660.8316,1180045.82,963394.5797,21
+38163,635780.6278,1179424.204,959948.3285,21
+38164,636267.5072,1179103.868,956634.5104,21
+38165,636589.1343,1177359.291,952115.6591,21
+38166,636542.4002,1178011.157,948717.4482,21
+38167,637564.7797,1176229.943,948582.8422,21
+38168,637311.5961,1176255.564,943289.4611,21
+38169,637829.6679,1175343.513,939988.8232,21
+38170,638235.712,1174150.047,935434.9324,21
+38171,638771.2028,1174057.718,932606.8293,21
+38172,638944.0263,1173175.993,928340.9092,21
+38173,639184.3197,1172230.956,924662.8401,21
+38174,639661.7507,1171754.892,921172.3425,21
+38175,640325.7617,1170640.08,916208.8298,21
+38176,640002.5045,1169979.146,913677.5866,21
+38177,641149.9276,1169123.386,909289.2172,21
+38178,640769.0444,1168481.011,905239.1426,21
+38179,641440.8984,1167991.083,902058.4738,21
+38180,641945.2778,1166688.86,896791.5763,21
+38181,642182.1834,1166393.179,894652.6517,21
+38182,642307.4448,1165001.054,889706.0921,21
+38183,642943.5419,1166105.426,885211.387,21
+38184,643304.8494,1164610.999,882844.6509,21
+38185,643441.3256,1164464.891,877269.2857,21
+38186,643585.316,1162719.113,874260.8427,21
+38187,644443.6339,1162328.027,870678.8342,21
+38188,644337.5135,1161589.8,865561.4989,21
+38189,645067.3975,1160422.29,862763.2555,21
+38190,644991.6374,1160120.603,857915.1313,21
+38191,644149.7915,1157730.241,854827.9597,21
+38192,643958.3533,1156493.21,851176.6186,21
+38193,644895.6669,1156264.187,846574.9479,21
+38194,644865.8124,1154991.868,844176.698,21
+38195,645611.4416,1153662.823,838625.5139,21
+38196,646077.7728,1153464.509,836437.63,21
+38197,646477.5581,1152587.421,831990.3856,21
+38198,646925.8633,1151195.493,828587.0272,21
+38199,647206.3177,1150235.242,824423.1701,21
+38200,648174.3911,1150017.654,821375.2844,21
+38201,648249.0514,1148213.784,816152.7868,21
+38202,648753.3416,1147830.317,815149.065,21
+38203,649617.1002,1146364.339,813261.693,21
+38204,649989.3636,1145667.24,812353.1526,21
+38205,650331.4782,1144903.908,809845.8333,21
+38206,650971.5363,1143489.192,808642.2609,21
+38207,651513.6415,1142537.58,807108.9403,21
+38208,651963.1672,1142216.482,805151.2064,21
+38209,652742.9647,1140193.969,802427.4501,21
+38210,653030.3974,1140012.667,801646.8384,21
+38211,653632.5762,1138689.801,798954.3255,21
+38212,654507.9392,1137598.634,797398.7006,21
+38213,654739.9413,1136731.165,795096.9182,21
+38214,655481.8057,1135448.033,792452.9216,21
+38215,659497.0903,1134274.941,791161.2671,21
+38216,661657.8216,1133327.355,788366.6176,21
+38217,662046.5939,1132452.388,786485.0998,21
+38218,663516.499,1131045.337,783974.3123,21
+38219,664718.8534,1129607.698,782359.303,21
+38220,666692.7609,1127493.686,779467.8891,21
+38221,637277.7098,1099259.209,733285.4502,21
+38222,637855.4033,1100401.775,730237.9286,21
+38223,638489.2187,1101051.506,727163.4501,21
+38224,639694.8671,1101923.087,723254.4743,21
+38225,639462.3791,1102491.231,720518.4402,21
+38226,640840.2721,1103720.362,717249.4978,21
+38227,641603.1666,1104519.096,714268.4786,21
+38228,641920.4027,1105281.542,710235.8318,21
+38229,642835.191,1106056.605,707338.4594,21
+38230,643597.1268,1106787.257,703814.7384,21
+38231,644034.6925,1108129.07,699972.3231,21
+38232,645363.4218,1108492.502,697224.4291,21
+38233,645227.2403,1109396.325,693435.9963,21
+38234,646812.5067,1110089.543,689653.6023,21
+38235,646962.0386,1110827.106,685952.6159,21
+38236,647897.6448,1112711.229,683174.0507,21
+38237,648617.3077,1112114.024,678928.478,21
+38238,649421.7761,1113595.179,675475.727,21
+38239,651735.567,1114519.766,671579.4302,21
+38240,652907.7846,1115111.562,668325.0374,21
+38241,653911.7085,1116366.572,664346.6599,21
+38242,654227.5229,1116680.267,660782.3738,21
+38243,655705.3211,1118184.323,656904.4405,21
+38244,656072.6961,1118363.724,653222.6032,21
+38245,657143.5418,1119609.418,649269.0527,21
+38246,658045.0505,1120720.849,645732.5432,21
+38247,658624.0023,1122006.657,641638.9488,21
+38248,659447.0808,1123614.828,638470.5573,21
+38249,660176.516,1124608.4,633683.1252,21
+38250,661666.9625,1124496.844,630650.3972,21
+38251,661204.0674,1126593.484,626273.7222,21
+38252,661835.2843,1126600.729,622356.6472,21
+38253,662034.7161,1128376.679,619097.0344,21
+38254,661891.034,1127388.789,614666.2923,21
+38255,662502.5362,1128688.835,611021.49,21
+38256,662346.5979,1129359.349,606987.0867,21
+38257,663032.3091,1131160.174,602945.9513,21
+38258,662892.3679,1131223.26,599158.2808,21
+38259,663408.6318,1132518.203,595483.7354,21
+38260,662853.0731,1133440.595,591167.1487,21
+38261,663765.0925,1133912.619,587487.0121,21
+38262,663312.4593,1135687.483,583228.5035,21
+38263,663520.0084,1136414.423,579205.172,21
+38264,663718.6392,1137305.311,575615.7828,21
+38265,663750.326,1137697.705,571483.4302,21
+38266,663808.6141,1139474.385,567246.5948,21
+38267,663529.7599,1139967.025,563108.8776,21
+38268,664001.384,1141110.727,559570.6807,21
+38269,664026.6248,1141834.776,555371.1352,21
+38270,663936.1127,1143079.98,551567.0509,21
+38271,663923.7852,1143857.533,547361.7007,21
+38272,663832.1106,1144715.588,542805.9857,21
+38273,663862.907,1145895.368,539579.7576,21
+38274,663968.7283,1146305.932,535015.438,21
+38275,664213.9596,1148394.249,531002.7748,21
+38276,663680.5489,1148110.779,527159.3683,21
+38277,663821.1582,1150927.163,523029.5059,21
+38278,663912.6077,1151654.309,518693.0386,21
+38279,663844.0111,1152149.639,514865.2462,21
+38280,663696.4757,1153765.213,510799.3747,21
+38281,667988.4683,1157301.547,515431.3363,21
+38282,667365.6714,1157341.067,511881.4545,21
+38283,666513.6034,1156413.519,508411.0271,21
+38284,666409.2298,1155031.024,505172.2299,21
+38285,665649.0893,1154919.074,501086.2502,21
+38286,664750.9147,1153629.707,498184.1263,21
+38287,664673.1061,1153645.639,494014.1012,21
+38288,663652.5916,1153125.392,490851.6571,21
+38289,663055.176,1151729.016,487087.7569,21
+38290,662869.9884,1152295.364,483843.8904,21
+38291,661563.0124,1150888.828,480143.2116,21
+38292,661384.9794,1150834.835,476496.8958,21
+38293,660498.628,1150187.84,473327.8539,21
+38294,660214.6958,1149211.198,469676.3348,21
+38295,659102.6968,1149028.465,466446.7521,21
+38296,658536.0224,1148002.995,462684.5194,21
+38297,657938.8553,1147840.563,458910.1786,21
+38298,657298.4721,1146770.742,456130.143,21
+38299,656649.0407,1146593.613,452299.531,21
+38300,655902.058,1145846.893,448739.264,21
+38301,655007.6093,1145442.883,445437.7121,21
+38302,654671.0763,1144343.769,442532.027,21
+38303,653751.6217,1144410.509,438302.8989,21
+38304,653221.7687,1143228.596,435153.8671,21
+38305,652217.3796,1142644.421,431874.9327,21
+38306,651715.9168,1142801.709,428400.0052,21
+38307,650956.4583,1142304.015,425143.1258,21
+38308,650108.0451,1142156.494,421340.3245,21
+38309,649342.959,1142247.242,418187.3221,21
+38310,648819.2956,1140376.451,415186.1414,21
+38311,648088.6516,1140215.925,411414.733,21
+38312,647675.0251,1140435.13,408069.8887,21
+38313,647026.1758,1138311.906,405516.5142,21
+38314,646854.3546,1136916.155,401640.7992,21
+38315,646070.1945,1136728.758,398691.6999,21
+38316,645614.7853,1135654.119,395316.8752,21
+38317,645583.186,1135340.048,392406.9924,21
+38318,644267.1087,1134296.643,389014.8564,21
+38319,644640.6204,1133624.697,386238.7829,21
+38320,643741.7303,1132638.938,382900.5452,21
+38321,643536.947,1132629.63,380521.6199,21
+38322,642827.1099,1131295.062,376727.3863,21
+38323,642538.8989,1131072.987,374467.3795,21
+38324,642098.8189,1129207.863,370975.9141,21
+38325,641550.6363,1129923.968,368062.127,21
+38326,641304.9775,1128320.55,365428.0693,21
+38327,640890.5563,1128065.884,361863.8136,21
+38328,639860.0569,1126621.338,359528.2258,21
+38329,640316.8623,1126293.379,356011.1064,21
+38330,639239.1585,1125799.202,353450.9946,21
+38331,639138.5099,1124343.741,350930.5267,21
+38332,638303.6604,1124092.153,347851.5275,21
+38333,638614.3539,1122859.721,345875.1836,21
+38334,637472.1991,1122191.704,343520.9379,21
+38335,637180.4185,1121449.43,341067.7581,21
+38336,637208.0064,1120078.25,338536.8795,21
+38337,636188.7362,1119931.392,336580.0894,21
+38338,636614.0337,1118458.314,333848.7546,21
+38339,635292.4091,1117656.601,331747.0886,21
+38340,635310.6757,1114853.9,329377.8427,21
+38341,631103.9136,1113413.494,320355.9369,21
+38342,631634.0426,1113920.233,319076.3035,21
+38343,631976.1615,1115071.132,317788.7447,21
+38344,632845.3525,1115717.612,316235.1035,21
+38345,633423.6639,1116272.843,315245.5626,21
+38346,633339.9496,1117275.201,314214.5746,21
+38347,634798.6937,1117518.041,312775.9828,21
+38348,634886.1565,1118888.898,311864.2506,21
+38349,635311.5645,1119149.797,310958.6007,21
+38350,636275.2279,1120278.311,309756.4487,21
+38351,636514.967,1120623.871,308969.5999,21
+38352,637401.6724,1121817.568,307917.1348,21
+38353,637548.8936,1122009.247,307184.535,21
+38354,638821.924,1123090.543,306433.6677,21
+38355,638655.4805,1123885.847,305263.3445,21
+38356,639770.7269,1124024.414,304777.5858,21
+38357,640093.9084,1125519.628,303722.196,21
+38358,640850.6986,1125570.223,303101.3285,21
+38359,641478.4743,1126347.443,302184.0568,21
+38360,641615.6902,1127650.602,301962.266,21
+38361,642917.5959,1127562.554,300793.1184,21
+38362,642963.0974,1128616.86,300367.6446,21
+38363,643967.3568,1129316.636,300004.6348,21
+38364,644405.3801,1130061.073,298958.8356,21
+38365,644749.7102,1130428.666,298812.2992,21
+38366,645621.205,1131602.147,297909.746,21
+38367,646323.689,1131782.732,297265.8673,21
+38368,646658.3308,1132836.148,297125.0843,21
+38369,647542.5979,1134316.114,296386.4221,21
+38370,648093.0669,1135826.13,295937.2383,21
+38371,648452.2973,1135890.672,295581.562,21
+38372,649220.0505,1136369.988,295390.3198,21
+38373,649902.9182,1137467.609,294946.9447,21
+38374,649985.9461,1138566.277,294939.9072,21
+38375,651487.8663,1138017.127,294642.5282,21
+38376,651649.4296,1138405.025,294351.5457,21
+38377,652071.7228,1138399.068,294063.0222,21
+38378,652941.8909,1139786.176,294232.3457,21
+38379,653489.2876,1139723.132,293573.5078,21
+38380,653991.484,1140384.642,294010.8125,21
+38381,654837.1368,1141393.081,293651.2183,21
+38382,655192.5498,1141800.921,293735.3938,21
+38383,655801.9349,1142536.847,293864.3638,21
+38384,656642.7216,1142789.056,293815.0942,21
+38385,656749.4047,1144162.915,293867.6504,21
+38386,658067.5688,1144270.185,293956.7551,21
+38387,658204.8802,1144887.751,294258.0977,21
+38388,658821.6804,1145594.004,294163.0789,21
+38389,659647.3233,1146312.633,294489.6991,21
+38390,660157.7438,1146982.813,294474.9416,21
+38391,659323.5453,1147588.352,294570.2344,21
+38392,659271.5565,1148217.379,295053.8749,21
+38393,659887.756,1148638.356,295029.373,21
+38394,660173.0465,1149255.94,295461.1742,21
+38395,661468.2665,1150359.181,295219.4582,21
+38396,661464.6886,1150263.619,295963.2147,21
+38397,662005.9581,1151325.945,296031.6076,21
+38398,663075.9563,1151714.321,296343.4675,21
+38399,663094.9801,1152463.55,296503.5336,21
+38400,664258.8101,1154573.811,296869.8299,21
+38401,664096.8857,1153398.018,297415.5636,21
+38402,664740.8422,1153709.108,298185.9358,21
+38403,664899.4575,1153170.149,298431.5846,21
+38404,665531.8163,1152083.538,299470.82,21
+38405,665889.7854,1152408.365,299777.0845,21
+38406,666183.8435,1151652.211,300703.3035,21
+38407,666296.4707,1151879.468,301162.4858,21
+38408,667324.0303,1150868.344,301791.8073,21
+38409,667247.7103,1150555.033,302896.5076,21
+38410,667532.4788,1150577.286,303330.177,21
+38411,668458.3362,1149628.5,304156.0852,21
+38412,668076.9164,1149359.018,304895.1408,21
+38413,669304.4413,1149069.247,305519.138,21
+38414,669127.7332,1148452.137,306496.9954,21
+38415,669577.9909,1148711.764,307325.9215,21
+38416,670566.6115,1147057.01,307680.6764,21
+38417,670205.2765,1147609.805,309209.5362,21
+38418,670946.9665,1146647.67,309498.0027,21
+38419,671155.7585,1146603.521,310297.4796,21
+38420,671956.982,1146246.003,311317.9388,21
+38421,671908.6984,1145158.016,312387.1054,21
+38422,672744.0105,1145283.239,313088.9764,21
+38423,672884.321,1144890.718,313865.7136,21
+38424,673353.9943,1144278.199,314777.2269,21
+38425,673948.3042,1143709.055,315873.4932,21
+38426,674075.8412,1143333.928,316620.5311,21
+38427,674477.4349,1142722.645,317518.0194,21
+38428,675231.7515,1142908.878,318545.751,21
+38429,675346.2857,1141894.622,319210.0047,21
+38430,675879.9441,1141117.406,320408.6637,21
+38431,676333.2414,1141493.094,321343.7052,21
+38432,676553.684,1140366.459,322366.7605,21
+38433,677226.7653,1140594.625,323499.1821,21
+38434,677237.8434,1139707.708,324758.6589,21
+38435,678239.3172,1138894.961,325878.3304,21
+38436,678015.2269,1139321.061,326925.2776,21
+38437,678729.6101,1138216.612,328431.8106,21
+38438,679253.9973,1138033.1,329362.9064,21
+38439,678987.2468,1137651.244,330752.0825,21
+38440,680300.1412,1136809.688,332115.9449,21
+38441,679969.3262,1136432.299,333161.6111,21
+38442,680408.7329,1136682.033,334959.6026,21
+38443,680949.8725,1134928.074,335588.7717,21
+38444,681336.2529,1136031.317,337543.0729,21
+38445,681697.9412,1134435.827,338449.8122,21
+38446,682223.1742,1134105.004,339982.2786,21
+38447,683131.2934,1134204.99,341287.9441,21
+38448,683238.8823,1132811.29,342835.5381,21
+38449,683678.8933,1133457.343,343920.5197,21
+38450,684632.4074,1132079.942,345899.7678,21
+38451,685106.4849,1132209.688,346809.2823,21
+38452,685397.4968,1131226.333,348324.7219,21
+38453,686096.0254,1131114.91,350059.1561,21
+38454,686625.1536,1130531.749,351093.8279,21
+38455,687270.8713,1130225.194,352349.9689,21
+38456,687830.781,1129484.704,354084.8073,21
+38457,688228.725,1129155.275,355524.4202,21
+38458,688899.5732,1128372.37,356448.8767,21
+38459,689288.7809,1129052.726,358125.4399,21
+38460,689984.4289,1126915.776,361385.9985,21
+38461,753688.8563,1197997.123,413729.1479,21
+38462,757896.7516,1202556.729,418551.6614,21
+38463,758916.4933,1204605.444,421470.783,21
+38464,760393.382,1206175.081,424572.7014,21
+38465,761904.6425,1207855.747,426285.917,21
+38466,770380.4682,1209889.304,430217.4333,21
+38467,772912.3188,1211181.047,432286.255,21
+38468,771441.7403,1213533.98,435225.6441,21
+38469,774432.5132,1214490.647,438192.2152,21
+38470,775216.639,1216774.878,440634.8185,21
+38471,776696.4039,1218100.651,443394.5342,21
+38472,777991.2096,1219890.033,445921.3739,21
+38473,778801.5942,1221061.929,448870.6145,21
+38474,780447.9476,1223227.618,451278.3072,21
+38475,782966.788,1224484.765,453991.7279,21
+38476,784712.5182,1225245.342,456701.8399,21
+38477,785738.4381,1226554.865,458898.8391,21
+38478,786856.8941,1228592.872,462071.2714,21
+38479,787799.0475,1229765.434,463771.9606,21
+38480,788960.0607,1231123.29,466851.4967,21
+38481,789759.1398,1232738.297,469372.5995,21
+38482,790973.7988,1233852.762,471436.7213,21
+38483,791633.4043,1235799.661,474322.7257,21
+38484,792834.9152,1236267.155,476728.5331,21
+38485,793382.3305,1238255.716,478974.8328,21
+38486,794638.5625,1239690.137,481553.2413,21
+38487,795289.2067,1240914.126,483834.9107,21
+38488,796150.9519,1242590.783,486341.365,21
+38489,796928.8081,1242876.435,488405.3911,21
+38490,797902.7304,1245227.907,491080.0824,21
+38491,798424.1694,1245921.469,493020.3252,21
+38492,799812.2192,1247568.449,495515.2546,21
+38493,799675.4286,1248544.235,497866.1918,21
+38494,800766.5294,1249537.818,500052.6546,21
+38495,801987.4805,1251826.329,502320.1406,21
+38496,802336.6446,1251813.903,504752.4399,21
+38497,803007.1534,1254189.483,506883.4172,21
+38498,803652.7178,1254737.154,509370.5073,21
+38499,804422.5033,1256130.308,511194.4506,21
+38500,805034.3554,1257180.686,513770.2449,21
+38501,805919.0074,1258940.131,515746.8448,21
+38502,806303.1706,1259533.438,517970.0256,21
+38503,806932.5599,1261043.385,520528.8298,21
+38504,807922.2063,1262340.304,522346.0197,21
+38505,808122.6625,1263128.186,525185.0138,21
+38506,808683.9725,1264485.27,527014.6521,21
+38507,809739.1208,1266155.123,529291.8246,21
+38508,810083.738,1266684.711,533381.7065,21
+38509,810499.4513,1268338.895,535632.0553,21
+38510,811418.7256,1269101.359,538002.4884,21
+38511,811787.4954,1271013.974,540600.7148,21
+38512,812113.9225,1271108.132,547455.4727,21
+38513,813218.9564,1273411.213,563300.4367,21
+38514,813138.5676,1273619.95,557041.3332,21
+38515,814291.5685,1275453.157,564267.1813,21
+38516,814468.4337,1276041.881,567202.1117,21
+38517,814710.3463,1277601.158,571099.0187,21
+38518,815741.7791,1278914.369,574085.515,21
+38519,815965.361,1279612.071,579892.9029,21
+38520,816721.373,1281123.046,583177.8288,21
+38521,838669.8746,1303713.637,608440.0939,21
+38522,841137.2024,1307338.575,615124.9201,21
+38523,903236.7983,1307591.692,619010.9313,21
+38524,877699.9092,1309999.831,624412.6211,21
+38525,883637.7554,1310767.099,628927.6676,21
+38526,886733.1164,1350545.953,633263.292,21
+38527,889781.0164,1340514.911,637752.3841,21
+38528,890285.0291,1342286.121,642728.1547,21
+38529,892967.0731,1347338.739,647551.0773,21
+38530,893680.3649,1348225.064,651151.6581,21
+38531,896064.7965,1352367.109,656659.63,21
+38532,897768.6625,1353617.728,660503.7605,21
+38533,898775.497,1356169.345,665620.5282,21
+38534,901282.2414,1358332.979,669958.9142,21
+38535,902063.2709,1359757.986,677667.8728,21
+38536,904302.8794,1362204.002,679797.7664,21
+38537,904211.2219,1364559.718,686561.0867,21
+38538,908453.7423,1366066.254,690128.2811,21
+38539,907110.8488,1367475.386,695628.1452,21
+38540,910198.6585,1370117.712,699321.5293,21
+38541,910695.4555,1371713.574,704166.0725,21
+38542,913185.1624,1373794.406,709497.57,21
+38543,913009.3448,1375355.611,714305.9849,21
+38544,916347.2659,1378609.597,718536.2895,21
+38545,915541.9503,1381242.2,723675.2237,21
+38546,917816.6529,1382276.704,728546.187,21
+38547,919215.4007,1383895.145,732650.7704,21
+38548,920565.4191,1386132.227,737796.0608,21
+38549,920781.0677,1387876.097,742247.3625,21
+38550,923334.6432,1388592.4,746250.451,21
+38551,923608.811,1391738.964,751632.8476,21
+38552,925663.4687,1392329.955,755832.3443,21
+38553,926426.8579,1395212.262,760877.6484,21
+38554,927593.0186,1395718.385,765228.6123,21
+38555,928538.7598,1397931.005,769433.3994,21
+38556,930027.2198,1399084.979,774580.5179,21
+38557,930759.0171,1400207.998,778638.5363,21
+38558,932072.3916,1400798.565,783514.1778,21
+38559,934353.8071,1403093.034,788222.6226,21
+38560,933081.1769,1404069.55,791860.083,21
+38561,935395.4942,1406201.763,796957.4875,21
+38562,936426.5337,1406504.331,801840.4995,21
+38563,938858.2709,1409596.488,805008.7454,21
+38564,937298.6268,1410291.95,810293.2456,21
+38565,939698.7365,1411738.037,814794.7578,21
+38566,940857.6473,1412927.422,817882.8862,21
+38567,941917.4741,1415819.97,823823.2598,21
+38568,942862.0746,1416424.442,827046.9927,21
+38569,942775.6051,1417059.991,832266.6378,21
+38570,945321.5273,1420948.999,836121.8283,21
+38571,946315.9521,1419962.161,839866.3325,21
+38572,946014.2522,1422254.864,844901.458,21
+38573,947901.2842,1424201.9,849341.6789,21
+38574,948620.0411,1424097.356,852407.1772,21
+38575,949273.5655,1427273,857783.8282,21
+38576,951188.7085,1427673.422,861357.3826,21
+38577,950606.2229,1429540.825,866065.4711,21
+38578,953309.2543,1430840.145,869441.7459,21
+38579,953290.6389,1432592.818,878149.4057,21
+38580,953778.3915,1433549.045,887250.6673,21
+38581,955850.2597,1434938.509,889128.3652,21
+38582,955562.7957,1436192.688,892956.0628,21
+38583,957179.9255,1437869.751,897115.831,21
+38584,958425.9049,1438388.473,899751.0227,21
+38585,957459.6255,1439839.403,903810.541,21
+38586,959209.2623,1440136.227,906514.8966,21
+38587,959161.4221,1441696.038,909890.5928,21
+38588,959923.9261,1443586.061,913287.6321,21
+38589,960013.9985,1442415.929,916250.7152,21
+38590,960106.6362,1445581.101,919442.8604,21
+38591,962160.0779,1444919.52,921603.1156,21
+38592,962168.6333,1446644.344,925638.2963,21
+38593,962067.7666,1447590.083,928312.4357,21
+38594,962751.2201,1449596.765,930210.4511,21
+38595,963530.9563,1448260.194,934200.5489,21
+38596,963714.0222,1450974.875,936331.7082,21
+38597,965002.913,1451807.979,938029.7253,21
+38598,963783.3802,1451721.806,942603.6334,21
+38599,966353.1127,1453525.975,944115.815,21
+38600,965143.9644,1455243.922,946139.2857,21
+38601,966424.4084,1454485.845,950129.0478,21
+38602,966543.0558,1455801.151,950844.9708,21
+38603,966499.4105,1457620.371,954280.669,21
+38604,968150.6315,1457694.704,955953.5973,21
+38605,967622.9482,1459523.152,958697.3476,21
+38606,969137.1067,1458819.259,960668.8387,21
+38607,968171.5153,1461243.385,963325.8035,21
+38608,969073.5213,1461710.937,965651.9859,21
+38609,970232.6562,1461724.618,966975.0866,21
+38610,969352.8776,1465029.437,969726.6126,21
+38611,970706.6486,1463995.258,972180.2939,21
+38612,970105.8705,1465450.538,973288.4611,21
+38613,971060.2747,1466266.428,975875.0854,21
+38614,971619.6072,1467510.441,978470.1576,21
+38615,972026.345,1468889.69,978520.3016,21
+38616,971584.7115,1468816.772,982559.6503,21
+38617,973299.328,1470566.342,983979.3543,21
+38618,972647.1299,1471459.415,985200.449,21
+38619,973262.6495,1471994.107,987502.0993,21
+38620,972768.5151,1472230.4,990021.4555,21
+38621,974285.7511,1474893.616,990947.701,21
+38622,974203.4425,1473988.995,993244.083,21
+38623,974302.3005,1476289.176,994538.2332,21
+38624,975403.0028,1475521.867,996826.0986,21
+38625,974308.2082,1478260.55,998528.2341,21
+38626,976636.1284,1477795.779,999529.3289,21
+38627,975145.7643,1479537.218,1002020.238,21
+38628,975622.7526,1479615.593,1003423.904,21
+38629,977047.5296,1480602.671,1005086.528,21
+38630,976047.8294,1481841.483,1006558.715,21
+38631,977180.4604,1483125.241,1008700.803,21
+38632,976399.7283,1482942.575,1009392.671,21
+38633,977952.0303,1484889.94,1011535.551,21
+38634,976967.9802,1485175.422,1012780.101,21
+38635,978437.9249,1486314.053,1014910.593,21
+38636,978182.9613,1486881.548,1015916.568,21
+38637,977568.0181,1487404.266,1017614.862,21
+38638,979452.7444,1489509.57,1018153.953,21
+38639,977726.1039,1489084.221,1021390.453,21
+38640,981224.6371,1490610.461,1021521.933,21
+38641,988248.1864,1499724.733,1032822.971,21
+38642,989531.0351,1498406.789,1035743.124,21
+38643,991319.7321,1499958.795,1038303.111,21
+38644,991466.6772,1498940.643,1040943.887,21
+38645,993081.5181,1499080.55,1895187.474,21
+38646,994176.7409,1497314.737,1045607.531,21
+38647,994652.4772,1498954.145,1049658.805,21
+38648,996332.0969,1497267.574,1928646.892,21
+38649,996173.3349,1497075.759,1053679.544,21
+38650,997702.4493,1497221.521,1057235.492,21
+38651,998995.5624,1496459.681,1939156.631,21
+38652,998166.3938,1496149.796,1060509.805,21
+38653,1001011.972,1496045.268,1065752.238,21
+38654,1001223.235,1494574.992,1944522.941,21
+38655,1001941.407,1495215.664,1069378.559,21
+38656,1002662.243,1493982.117,1072400.55,21
+38657,1003542.851,1493661.563,1951042.161,21
+38658,1005121.071,1494071.475,1077597.701,21
+38659,1004630.747,1491332.355,1079797.051,21
+38660,1007445.171,1492987.011,1957286.491,21
+38661,1005867.356,1492246.59,1084643.727,21
+38662,1007845.935,1490689.256,1088676.055,21
+38663,1009182.866,1491162.578,1962327.218,21
+38664,1010276.262,1490392.421,1092675.179,21
+38665,1009532.949,1489087.366,1096060.878,21
+38666,1011337.963,1490027.621,1968954.632,21
+38667,1012060.864,1488130.524,1100805.001,21
+38668,1013481.817,1487405.887,1111348.313,21
+38669,1012599.432,1488009.857,1983082.643,21
+38670,1014305.901,1486349.635,1118013.112,21
+38671,1015368.321,1486869.327,1118796.335,21
+38672,1015793.115,1483851.477,1994426.726,21
+38673,1016226.872,1486765.693,1126841.392,21
+38674,1018467.352,1483218.729,1132261.341,21
+38675,1016999.584,1484255.232,2002125.549,21
+38676,1020248.602,1482438.933,1138245.521,21
+38677,1019037.887,1483227.424,1142099.613,21
+38678,1020233.429,1481248.876,2011190.601,21
+38679,1022127.025,1481495.51,1149910.167,21
+38680,1021123.678,1480504.455,1151286.358,21
+38681,1023873.61,1479345.185,2021762.249,21
+38682,1022591.905,1480157.437,1159686.86,21
+38683,1024617.978,1477521.976,1162029.952,21
+38684,1025645.474,1478422.845,2030337.234,21
+38685,1025667.918,1477217.727,1169898.471,21
+38686,1026043.335,1475576.309,1172488.717,21
+38687,1027401.966,1476357.699,2039488.793,21
+38688,1027814.871,1474637.414,1179841.268,21
+38689,1029099.45,1474221.365,1183548.509,21
+38690,1028968.406,1473601.66,2048465.786,21
+38691,1030230.366,1473213.971,1188736.422,21
+38692,1030816.336,1471098.047,1193786.285,21
+38693,1031968.952,1472080.507,2058370.706,21
+38694,1031813.711,1470308.735,1198685.724,21
+38695,1032683.748,1470138.31,1203051.366,21
+38696,1034612.611,1468649.615,2068190.506,21
+38697,1033157.399,1468999.647,1208882.002,21
+38698,1036286.416,1467613.115,1212285.957,21
+38699,1035421.471,1466218.663,2077275.801,21
+38700,1036183.071,1466342.837,1220548.573,21
+38701,1036998.969,1466623.428,1224071.754,21
+38702,1038082.691,1468418.652,2088095.313,21
+38703,1036274.604,1470556.421,1231032.116,21
+38704,1038340.079,1469682.306,1233228.269,21
+38705,1037143.634,1470832.686,2095603.507,21
+38706,1037594.975,1473000.482,1238757.594,21
+38707,1037105.442,1471899.261,1242485.834,21
+38708,1037827.885,1474128.8,2103463.495,21
+38709,1036887.336,1473696.608,1246255.884,21
+38710,1037166.406,1475581.459,1250843.64,21
+38711,1037998.554,1475125.253,2110440.135,21
+38712,1035719.942,1477148.096,1254079.33,21
+38713,1037951.274,1476385.182,1258859.698,21
+38714,1036997.242,1478832.686,2118579.057,21
+38715,1036737.507,1477593.008,1262483.94,21
+38716,1036777.737,1480519.061,1265539.186,21
+38717,1036491.646,1479990.455,2125686.955,21
+38718,1036531.002,1480314.355,1271348.572,21
+38719,1036096.817,1482442.554,1273380.753,21
+38720,1037071.755,1481769.186,2132819.823,21
+38721,1035577.554,1483099.212,1279373.802,21
+38722,1036721.386,1484581.742,1281602.867,21
+38723,1036446.386,1484286.595,2140967.712,21
+38724,1035519.777,1485183.339,1285759.795,21
+38725,1035673.764,1485533.454,1290343.232,21
+38726,1035932.919,1487400.235,2147213.564,21
+38727,1036061.038,1486967.872,1294172.341,21
+38728,1035136.51,1488531.036,1298003.656,21
+38729,1035470.702,1489239.078,2154290.818,21
+38730,1035653.987,1490061.25,1301937.469,21
+38731,1034821.757,1490354.152,1306017.212,21
+38732,1035129.432,1491222.84,2161267.665,21
+38733,1035269.283,1492382.179,1310461.82,21
+38734,1035461.916,1492755.848,1313716.473,21
+38735,1033921.334,1493430.289,2167792.858,21
+38736,1034611.373,1493750.05,1318194.635,21
+38737,1034943.866,1495500.653,1319956.15,21
+38738,1034026.911,1496312.391,2176922.486,21
+38739,1034721.126,1495455.608,1324259.854,21
+38740,1033086.07,1497318.12,1328442.574,21
+38741,1035120.102,1498402.54,2182821.238,21
+38742,1032578.778,1498405.279,1333541.3,21
+38743,1034272.59,1499588.607,1335444.035,21
+38744,1034091.643,1499428.526,2188754.587,21
+38745,1032686.661,1501371.795,1343048.805,21
+38746,1033513.883,1500888.601,1340824.711,21
+38747,1032812.563,1502201.758,2197487.293,21
+38748,1033077.589,1503638.309,1347918.139,21
+38749,1033053.491,1502768.29,1350952.583,21
+38750,1032235.359,1505091.997,2202935.431,21
+38751,1032410.544,1504299.816,1354944.185,21
+38752,1032681.601,1506232.164,1358536.573,21
+38753,1031611.404,1505928.879,2209247.811,21
+38754,1032371.467,1507182.566,1363582.223,21
+38755,1031987.482,1508100.308,1365339.77,21
+38756,1031457.582,1508210.113,2216176.677,21
+38757,1031718.046,1509479.047,1371163.248,21
+38758,1031637.547,1509294.233,1372723.867,21
+38759,1030673.763,1511129.552,2222462.139,21
+38760,1031205.029,1511204.748,1377583.24,15.6
+38761,0,0,0,15.6
+38762,428159.9062,0,846799.7946,15.6
+38763,0,256.9298071,189.9948931,15.6
+38764,0,0,0,15.6
+38765,0,0,846138.0941,15.6
+38766,0,0,0,15.6
+38767,0,0,1692237.588,15.6
+38768,0,0,0,15.6
+38769,0,0,0,15.6
+38770,0,0,0,15.6
+38771,0,0,0,15.6
+38772,0,259.5282301,0,15.6
+38773,0,0,0,15.6
+38774,0,0,0,15.6
+38775,0,0,0,15.6
+38776,0,0,0,15.6
+38777,0,0,0,15.6
+38778,0,0,0,15.6
+38779,0,0,0,15.6
+38780,0,55974.30809,0,15.6
+38781,0,285.393279,0,15.6
+38782,339429.6195,7613.555189,0,15.6
+38783,0,21355.40512,0,15.6
+38784,0,14511.28502,0,15.6
+38785,0,15306.83108,0,15.6
+38786,0,15544.82375,0,15.6
+38787,0,15718.13836,0,15.6
+38788,0,15678.455,0,15.6
+38789,0,15795.15135,0,15.6
+38790,0,15795.1506,0,15.6
+38791,0,15866.91329,0,15.6
+38792,0,15947.49592,0,15.6
+38793,0,16021.25804,0,15.6
+38794,0,15971.85215,0,15.6
+38795,0,16027.41715,0,15.6
+38796,0,15952.13549,0,15.6
+38797,0,16091.49271,0,15.6
+38798,0,15988.15896,0,15.6
+38799,0,16165.29283,0,15.6
+38800,0,16035.42797,0,15.6
+38801,0,16040.35633,0,15.6
+38802,0,16035.42622,0,15.6
+38803,0,16036.05023,0,15.6
+38804,0,15988.15376,1408219.187,15.6
+38805,0,16143.14035,0,15.6
+38806,0,15952.93699,0,15.6
+38807,0,15935.81597,0,15.6
+38808,0,15955.49509,259948.7114,15.6
+38809,0,15920.40887,257845.2016,15.6
+38810,0,0,252375.5761,15.6
+38811,0,113.1743004,247106.5723,15.6
+38812,51227.15625,0,242005.0697,15.6
+38813,322.8447964,0,237054.7101,15.6
+38814,3659.260086,0,232243.3441,15.6
+38815,18810.61861,67110.33246,227568.0995,15.6
+38816,12874.15401,82.78231151,223021.8734,15.6
+38817,13314.11241,3399.75711,218603.3146,15.6
+38818,13910.36053,23640.17998,214564.8256,15.6
+38819,14229.25548,14902.02195,209726.3996,15.6
+38820,14559.90128,15198.41806,206307.6905,15.6
+38821,14667.63216,15916.06052,202109.1462,15.6
+38822,14752.96015,16410.41378,198549.1936,15.6
+38823,354131.6664,16413.14858,194628.7078,15.6
+38824,14763.93059,16638.34541,191165.9402,15.6
+38825,14803.63306,16862.17919,187637.7555,15.6
+38826,14777.12905,17122.08617,184246.5062,15.6
+38827,14811.0696,17294.36507,180999.6795,15.6
+38828,14818.65256,17583.78866,177497.3834,15.6
+38829,14840.78612,17731.80543,174819.8121,15.6
+38830,14831.84996,18046.41202,171512.3895,15.6
+38831,14811.06715,18185.60757,168632.9366,15.6
+38832,14861.56579,18439.43283,165764.2343,15.6
+38833,14827.68316,18756.74306,162977.2981,15.6
+38834,14859.76834,18806.30246,160268.1427,15.6
+38835,14812.80746,19138.94093,157638.3864,15.6
+38836,14861.5614,19266.61094,155080.3125,15.6
+38837,14793.69787,19525.6591,0,15.6
+38838,14861.55878,19697.39207,0,15.6
+38839,14786.3787,19954.76127,120982.9726,15.6
+38840,14821.73627,20118.42242,0,15.6
+38841,14765.59378,20334.73066,0,15.6
+38842,0,20637.79808,844043.273,15.6
+38843,0,20749.0568,0,15.6
+38844,0,20939.67021,113134.0694,15.6
+38845,0,0,0,15.6
+38846,0,73.35249015,0,15.6
+38847,65800.69116,0,0,15.6
+38848,0,77804.61718,0,15.6
+38849,3415.59204,306.0245167,0,15.6
+38850,22875.0447,16895.83408,0,15.6
+38851,13916.53142,28636.30721,0,15.6
+38852,14611.70889,21479.06548,0,15.6
+38853,14798.14621,22781.40679,0,15.6
+38854,14814.09124,23033.87127,109976.4734,15.6
+38855,14752.31457,23206.25229,0,15.6
+38856,14703.39507,23310.29151,0,15.6
+38857,14704.67733,23581.79357,0,15.6
+38858,14656.06455,23826.58114,0,15.6
+38859,14608.26628,23914.11562,107047.4223,15.6
+38860,14574.24096,24113.87026,0,15.6
+38861,14532.52408,24328.02216,0,15.6
+38862,14478.65121,24555.65264,0,15.6
+38863,14463.86437,24664.81513,0,15.6
+38864,353783.8343,24874.38076,0,15.6
+38865,14353.01697,25058.21035,0,15.6
+38866,14333.5597,472308.2385,558438.266,15.6
+38867,14255.3796,27025.6909,0,15.6
+38868,14208.46793,83783.78874,0,15.6
+38869,14186.07916,182006.0692,584428.1342,15.6
+38870,14110.3244,147870.6015,0,15.6
+38871,14074.10486,144194.0985,0,15.6
+38872,13996.78468,149723.8057,596527.5064,15.6
+38873,13957.02684,151337.8206,0,15.6
+38874,13913.00491,152585.7353,0,15.6
+38875,13850.30936,154860.3454,606131.9832,15.6
+38876,13792.42768,156213.2334,0,15.6
+38877,0,157710.0459,0,15.6
+38878,0,132383.6402,614983.3364,15.6
+38879,0,133768.9578,0,15.6
+38880,0,135052.2518,871006.2078,15.6
+38881,0,244133.6576,615719.4279,15.6
+38882,62960.48742,155811.5594,0,15.6
+38883,0,155765.6451,0,15.6
+38884,3168.52563,184548.365,624271.144,15.6
+38885,24102.9229,171876.6415,0,15.6
+38886,13582.43823,174310.9453,0,15.6
+38887,15243.22605,175338.9684,632519.6951,15.6
+38888,15500.77879,175125.8814,0,15.6
+38889,15641.47373,176419.1545,0,15.6
+38890,15786.2511,176514.2224,640431.5208,15.6
+38891,15919.17156,177339.4198,0,15.6
+38892,16024.94247,178010.0301,0,15.6
+38893,16178.97903,178189.2194,648036.2544,15.6
+38894,16312.47375,179213.2197,0,15.6
+38895,16471.24775,179548.3801,0,15.6
+38896,16570.01505,29303.56059,655324.7002,15.6
+38897,16696.32937,29364.28569,0,15.6
+38898,16876.40947,29522.82765,0,15.6
+38899,16950.01568,29399.90112,662336.7337,15.6
+38900,17123.91592,29520.52692,0,15.6
+38901,17214.74917,656402.5062,0,15.6
+38902,17385.54175,29628.50881,669057.7929,15.6
+38903,17508.63943,78746.75298,0,15.6
+38904,17633.30665,274188.4993,0,15.6
+38905,17744.59544,167808.7461,675530.8756,15.6
+38906,357294.3003,185841.7789,0,15.6
+38907,18019.34321,186925.3764,0,15.6
+38908,18129.0714,186665.3081,681738.6331,15.6
+38909,18319.57213,187446.3167,0,15.6
+38910,18388.5622,188021.1814,0,15.6
+38911,18546.47638,158395.0696,687705.5906,15.6
+38912,0,158328.9664,0,15.6
+38913,0,248363.8645,0,15.6
+38914,0,168055.8476,693419.5412,15.6
+38915,71326.55745,187168.0629,0,15.6
+38916,886.9762737,194322.561,0,15.6
+38917,12517.78369,189844.3124,698923.8892,15.6
+38918,26119.85732,191001.683,0,15.6
+38919,18358.55944,191401.9656,1078532.241,15.6
+38920,19693.57289,191512.7773,688208.3905,15.6
+38921,19833.62377,192189.7682,0,15.6
+38922,19983.43202,192417.1851,0,15.6
+38923,20074.11065,193091.837,693928.0594,15.6
+38924,20231.41639,192866.6123,0,15.6
+38925,20286.76604,193524.1875,0,15.6
+38926,20506.49241,194082.1493,699422.8132,15.6
+38927,20559.64027,194209.6676,0,15.6
+38928,20721.88545,194847.6389,0,15.6
+38929,20835.84168,194715.2809,704717.1261,15.6
+38930,20967.96262,195614.3728,0,15.6
+38931,21068.3659,30420.28796,0,15.6
+38932,21237.45398,30553.33098,709786.5578,15.6
+38933,21295.14257,30512.83604,152995.6523,15.6
+38934,21464.68551,30602.69876,181565.5609,15.6
+38935,21576.9659,672156.1387,800606.7488,15.6
+38936,21654.65622,30587.8357,95158.17971,15.6
+38937,21854.9285,114269.7149,189192.5778,15.6
+38938,21896.04436,275002.8007,807540.5173,15.6
+38939,22099.22939,184446.5146,96045.91104,15.6
+38940,22186.09992,199370.7739,184783.9051,15.6
+38941,22210.20354,200744.2352,809686.4276,15.6
+38942,22425.73958,202131.5316,96480.11561,15.6
+38943,22407.46702,172410.289,185144.2956,15.6
+38944,22552.29246,173094.7753,811536.2004,15.6
+38945,0,267321.6691,96999.23867,15.6
+38946,0,186214.4382,185893.4915,15.6
+38947,0,203706.0278,813431.7233,15.6
+38948,419222.5235,213507.9136,97647.51937,15.6
+38949,467115.7181,209348.142,186733.9162,15.6
+38950,12350.81641,211165.9784,815276.4499,15.6
+38951,53308.91508,212201.7932,98292.69011,15.6
+38952,140137.9235,213336.4753,187676.9956,15.6
+38953,137734.6629,214721.2259,817032.0764,15.6
+38954,114818.9748,215558.4092,98938.41799,15.6
+38955,123254.8371,216621.5776,188631.5856,15.6
+38956,124128.3059,218041.121,818701.6678,15.6
+38957,124917.2654,218957.4669,99618.89321,15.6
+38958,125860.3209,220144.8692,1193198.398,15.6
+38959,126614.2517,221524.87,805275.7928,15.6
+38960,127640.9322,222159.8172,98266.09701,15.6
+38961,128065.5839,223779.5665,184731.2119,15.6
+38962,129515.4916,224398.7813,807844.2356,15.6
+38963,129778.6044,226192.1071,0,15.6
+38964,131032.3591,226535.6473,0,15.6
+38965,131614.8716,33559.99262,714197.6181,15.6
+38966,132771.5728,33841.08108,0,15.6
+38967,133565.3401,33845.49013,0,15.6
+38968,134437.7643,718626.8093,718730.2757,15.6
+38969,135419.3546,44830.09098,0,15.6
+38970,136193.852,188180.9723,258739.3806,15.6
+38971,137166.5145,288913.0677,813866.5047,15.6
+38972,137983.3299,226793.5318,95322.02741,15.6
+38973,138788.5834,237194.7795,197304.7239,15.6
+38974,139797.5706,238121.6272,824308.6252,15.6
+38975,140680.1918,204460.8442,102661.4737,15.6
+38976,141794.7901,205976.6592,193918.9802,15.6
+38977,142241.8033,310603.0493,823794.6727,15.6
+38978,117976.7205,225436.2787,104360.8218,15.6
+38979,0,235016.274,194761.6803,15.6
+38980,0,251254.2879,825680.4028,15.6
+38981,85185.17146,245157.8355,105040.7912,15.6
+38982,22643.3422,246599.5883,195459.2799,15.6
+38983,9445.656555,248189.84,827257.6533,15.6
+38984,35087.1572,249001.8734,105799.9514,15.6
+38985,586345.8955,249963.4565,196292.029,15.6
+38986,26185.84715,250941.4745,828754.3936,15.6
+38987,47710.34925,252463.2829,106535.312,15.6
+38988,226204.5729,253056.8414,197209.852,15.6
+38989,144896.2663,254175.4559,830246.5992,15.6
+38990,492167.0956,255487.9117,107263.6998,15.6
+38991,155531.56,256408.8362,198181.0817,15.6
+38992,156874.0103,257604.7965,831581.1914,15.6
+38993,157045.6339,258249.6302,108017.7046,15.6
+38994,158223.109,259597.7891,199132.9289,15.6
+38995,158733.7418,260792.5003,832899.7498,15.6
+38996,159868.7885,261536.554,108810.5053,15.6
+38997,160187.8481,262932.0947,199989.2006,15.6
+38998,161535.9719,37317.86352,1846788.021,15.6
+38999,161891.3609,37310.17924,107125.5553,15.6
+39000,162662.5922,37447.36055,0,15.6
+39001,163940.6045,844556.3953,716106.6059,15.6
+39002,164320.0059,108246.4766,0,15.6
+39003,165382.8529,160518.2778,0,15.6
+39004,166162.0433,354012.8312,720501.6523,15.6
+39005,166871.4438,257031.8573,183582.0416,15.6
+39006,168127.7138,271388.2116,191526.9265,15.6
+39007,168488.6874,234600.128,822219.6686,15.6
+39008,169766.7418,235461.8175,119785.2925,15.6
+39009,170112.4818,347683.0423,200958.2107,15.6
+39010,171333.9511,259844.7732,831957.5318,15.6
+39011,143954.8272,267365.8904,111633.6305,15.6
+39012,144346.7929,281867.8915,202066.2222,15.6
+39013,225613.2096,276468.4468,833246.1028,15.6
+39014,163990.3779,277871.8186,112127.7959,15.6
+39015,21977.42059,277901.2897,202566.2978,15.6
+39016,33053.29423,279366.769,834446.0378,15.6
+39017,28456.93039,279743.8089,112738.8778,15.6
+39018,28819.85592,280655.0313,203253.4676,15.6
+39019,643302.9261,281223.2251,835700.6503,15.6
+39020,28988.10302,282097.0524,113402.5435,15.6
+39021,99483.78815,282338.8489,203996.609,15.6
+39022,251295.9019,284093.2531,836911.5458,15.6
+39023,171748.1273,283906.4732,114048.7011,15.6
+39024,182994.4051,285187.402,204785.5019,15.6
+39025,184868.7016,285726.5112,838027.2356,15.6
+39026,185837.9564,286727.8581,114696.2618,15.6
+39027,186285.7668,287071.5614,205590.1642,15.6
+39028,187516.9535,287947.9602,839092.0888,15.6
+39029,187697.1739,288890.7991,115379.0708,15.6
+39030,188647.2678,289423.9469,206334.7883,15.6
+39031,189363.4749,39763.65302,840108.5658,15.6
+39032,529635.8424,39848.68373,116108.4865,15.6
+39033,190896.4459,39902.84471,206991.0916,15.6
+39034,191861.3036,940403.2989,841180.7654,15.6
+39035,192143.2331,157045.9179,0,15.6
+39036,193520.5526,139623.453,0,15.6
+39037,193892.0619,401751.3779,728998.6487,15.6
+39038,194912.4662,278841.7862,1035754.569,15.6
+39039,195296.8367,256170.9669,0,15.6
+39040,196415.4121,258046.8426,921402.2981,15.6
+39041,197141.632,372625.0504,101600.7756,15.6
+39042,197836.9913,286614.5391,201976.3531,15.6
+39043,167893.1109,296383.8458,842582.7843,15.6
+39044,168750.3261,304432.9629,117596.7765,15.6
+39045,253851.7335,302809.6171,207711.6636,15.6
+39046,196451.5574,303152.8909,836953.5895,15.6
+39047,190705.6435,303241.8272,118405.9459,15.6
+39048,208267.1607,304843.0082,208030.8762,15.6
+39049,30811.54494,305119.3303,838113.1683,15.6
+39050,31320.23447,305642.6595,118890.7505,15.6
+39051,31298.77977,306855.5955,208556.5106,15.6
+39052,31440.11902,307368.5624,839223.3965,15.6
+39053,715465.3547,307748.9204,119476.888,15.6
+39054,85242.52212,309130.9961,209261.0545,15.6
+39055,116582.7715,309670.5069,840357.5472,15.6
+39056,278947.509,310138.1681,120108.3684,15.6
+39057,200546.967,311351.0206,209963.2198,15.6
+39058,210356.6349,311487.4464,841437.7116,15.6
+39059,211586.4061,312730.1616,120784.9637,15.6
+39060,211980.3307,313233.5618,210614.532,15.6
+39061,212353.4038,313136.1685,842611.3439,15.6
+39062,212866.2686,314292.3882,121518.204,15.6
+39063,212377.9845,313830.0551,211468.7129,15.6
+39064,213267.8809,42239.97992,843745.4118,15.6
+39065,212968.6806,42350.61554,122305.8819,15.6
+39066,213160.1458,42370.69755,212366.1759,15.6
+39067,213775.0477,1028123.824,844938.228,15.6
+39068,213616.7807,202130.792,122996.4208,15.6
+39069,214116.0167,122590.0685,213325.1958,15.6
+39070,213950.3418,440420.0174,722777.0643,15.6
+39071,214568.9595,255740.3953,0,15.6
+39072,214573.0358,273582.3876,0,15.6
+39073,214670.1919,388380.1822,726825.7728,15.6
+39074,554385.3719,307445.497,223319.8249,15.6
+39075,182681.6836,314750.6695,201239.9365,15.6
+39076,183282.1484,318935.2325,843505.6572,15.6
+39077,269647.1356,319538.9742,136178.5611,15.6
+39078,215415.5889,318221.0519,217365.3484,15.6
+39079,203226.4165,318286.7188,1871265.485,15.6
+39080,222158.7045,318479.0075,124297.7446,15.6
+39081,216364.1665,319308.6727,211815.3842,15.6
+39082,216498.3844,318554.4013,836954.0656,15.6
+39083,32354.49493,319347.1541,125040.4399,15.6
+39084,32445.54435,319049.1532,212650.5905,15.6
+39085,32398.45888,320117.476,838662.0817,15.6
+39086,690363.537,319421.3226,125866.1182,15.6
+39087,71918.1031,320021.5409,213634.8169,15.6
+39088,163407.9424,320606.9253,840430.7488,15.6
+39089,269772.5209,319538.3082,126672.0947,15.6
+39090,211424.9915,321088.9257,214710.098,15.6
+39091,219123.0909,321134.8036,842079.116,15.6
+39092,219062.1763,320383.9735,127601.2622,15.6
+39093,219506.8823,321794.2612,215705.3252,15.6
+39094,219557.7122,320798.2229,843711.6215,15.6
+39095,219566.8003,321882.3216,128376.2574,15.6
+39096,219798.8402,321912.6787,216793.4793,15.6
+39097,219709.6161,43167.32786,845218.0454,15.6
+39098,220329.4915,43270.48024,129228.1196,15.6
+39099,219889.312,859335.7654,217811.7133,15.6
+39100,220572.4678,145661.7013,846657.2822,15.6
+39101,220258.1902,288270.7003,130084.4172,15.6
+39102,220718.8059,363161.8904,218815.8303,15.6
+39103,220558.1626,275587.2149,848011.9031,15.6
+39104,220984.5668,280451.2957,0,15.6
+39105,220761.4142,394266.8656,0,15.6
+39106,221576.2987,314557.9829,721948.8117,15.6
+39107,188517.6794,322487.6809,0,15.6
+39108,188585.8882,324839.9694,350667.8214,15.6
+39109,275947.9417,325767.3228,837816.6088,15.6
+39110,222848.816,325366.2892,116984.4618,15.6
+39111,208604.8447,324791.2542,238475.9685,15.6
+39112,228332.5001,324808.1386,853086.5942,15.6
+39113,222194.2373,325604.3187,134191.1579,15.6
+39114,222185.2038,325539.3816,224684.9892,15.6
+39115,222624.6296,325376.1362,855245.5704,15.6
+39116,32851.00468,325899.2911,134956.1138,15.6
+39117,372150.4228,326049.2396,224869.5355,15.6
+39118,32901.01195,326262.5808,856035.6055,15.6
+39119,702431.3006,326361.0762,135494.0076,15.6
+39120,88935.47497,326583.2065,1241983.034,17.8
+39121,1068363.649,1431796.308,3365835.38,17.8
+39122,925259.1166,1391862.042,1809608.485,17.8
+39123,479275.721,277395.7978,1352461.116,17.8
+39124,644967.1423,725379.8877,1855115.737,17.8
+39125,529603.5792,710502.2312,1319735.307,17.8
+39126,447184.7632,687854.786,1296227.128,17.8
+39127,498833.2732,594338.7249,1977445.285,17.8
+39128,474570.1867,646054.4124,1280076.225,17.8
+39129,469834.0596,120630.1063,1285443.045,17.8
+39130,470461.7318,120559.7776,2018371.576,17.8
+39131,468055.4373,1204908.102,1301705.49,17.8
+39132,468403.1694,686648.4806,1305305.647,17.8
+39133,466457.8694,567825.5153,2045985.849,17.8
+39134,465972.4694,729520.4529,1319108.954,17.8
+39135,465567.8138,538301.9651,1321397.487,17.8
+39136,464622.6537,679577.6259,2067978.538,17.8
+39137,464493.7219,654316.3686,1331834.078,17.8
+39138,463230.5195,634806.652,1149771.989,17.8
+39139,395461.5912,649828.6344,1900430.321,17.8
+39140,394702.7085,647979.3331,1474791.891,17.8
+39141,484975.2085,648166.0818,1370665.356,17.8
+39142,481163.1022,650389.9169,2076036.631,17.8
+39143,462005.3393,651707.0089,1353897.141,17.8
+39144,470741.3356,652487.9568,1354838.193,17.8
+39145,460515.6765,655020.9739,2105376.682,17.8
+39146,460723.4885,655198.2641,1357733.625,17.8
+39147,461278.2572,658126.1317,1356615.396,17.8
+39148,460041.1307,658679.8625,2113595.529,17.8
+39149,79263.18063,660255.5159,1362214.91,17.8
+39150,79329.99581,662212.5535,1361865.031,17.8
+39151,879959.864,636879.8723,942663.4941,17.8
+39152,536759.0698,638848.0833,187655.8982,17.8
+39153,468978.7137,639829.1631,283752.4168,17.8
+39154,741482.7509,727087.9053,3236600.278,17.8
+39155,478530.7473,650647.34,1145087.981,17.8
+39156,448240.0331,668564.3813,1248993.472,17.8
+39157,447025.3627,678096.8267,2157066.488,17.8
+39158,480149.9068,674375.8704,2381899.807,17.8
+39159,447640.7459,677031.6866,1310220.45,17.8
+39160,458440.0252,677721.9916,2051363.203,17.8
+39161,460591.1583,124010.6003,1324601.671,17.8
+39162,457458.4982,124063.555,1328341.09,17.8
+39163,458245.1627,1208723.48,2074259.867,17.8
+39164,457810.0959,845827.1961,1340235.602,17.8
+39165,457582.1801,529307.387,1342507.338,17.8
+39166,457943.1684,685437.8551,2091728.34,17.8
+39167,456919.9967,756769.4057,1351738.784,17.8
+39168,457746.1464,734609.2507,1352824.297,17.8
+39169,457457.5227,671090.2632,2106004.459,17.8
+39170,457344.9325,706217.7352,1174524.597,17.8
+39171,389883.3738,703083.6785,1176120.227,17.8
+39172,390378.8312,701100.2452,2249695.48,17.8
+39173,480509.319,703023.5776,1389059.366,17.8
+39174,478406.3742,704696.1363,1342115.539,17.8
+39175,457198.1876,706400.0785,2126680.71,17.8
+39176,465685.8773,708077.6968,1373112.436,17.8
+39177,456873.5827,708932.052,1368998.336,17.8
+39178,456561.4367,711842.8251,2126476.884,17.8
+39179,458801.5597,713285.461,1374162.935,17.8
+39180,457277.7729,715441.0439,1375295.001,20
+39181,288744.9283,2614058.961,3911187.984,20
+39182,2300042.302,2318962.511,3194030.562,20
+39183,1139095.373,1410741.715,2969569.473,20
+39184,1070627.377,967265.0041,1195585.443,20
+39185,982408.4817,1162804.077,2402579.064,20
+39186,969152.6865,1404635.661,2330866.075,20
+39187,984087.3187,1188116.651,2704325.443,20
+39188,920490.5554,1219395.59,2010814.868,20
+39189,918197.1662,1210006.94,1947583.306,20
+39190,989628.0745,1208043.846,2707323.195,20
+39191,1297105.575,1202036.365,1986374.617,20
+39192,937486.4589,1199225.263,1978839.293,20
+39193,948950.7611,215010.963,2692029.702,20
+39194,945069.2969,1322072.106,1987404.534,20
+39195,943094.4606,1544058.74,2961904.281,20
+39196,942002.3141,1022580.858,2649943.075,20
+39197,941407.8288,1047419.511,1955453.652,20
+39198,939608.3338,1246001.726,1951564.262,20
+39199,938937.6365,1163753.317,2669656.894,20
+39200,938513.489,1187689.504,1964168.603,20
+39201,937067.3214,1171992.212,1963515.994,20
+39202,935979.0422,1161967.375,2386245.478,20
+39203,812964.5922,1164266.391,2064715.44,20
+39204,977508.5462,1158139.864,1978161.119,20
+39205,931416.5418,1158032.089,2683612.346,20
+39206,936366.6666,1152032.046,1977416.16,20
+39207,925792.5825,1151418.009,1968437.466,20
+39208,931262.9377,1148671.429,2693085.768,20
+39209,927975.388,1145122.645,1975766.855,20
+39210,928022.9,1144649.356,1972644.397,20
+39211,925946.7071,1140064.312,2591766.137,20
+39212,154322.8462,1140628.232,1873621.849,20
+39213,966501.9206,1134535.262,1868888.443,20
+39214,984215.0657,1135546.659,2588766.118,20
+39215,892625.4471,1084747.48,291501.9763,20
+39216,939899.0899,1081389.679,537476.5241,20
+39217,927389.0463,1180681.508,3533714.128,20
+39218,927834.4635,1135315.642,2332453.989,20
+39219,926230.6235,1120584.541,1784145.928,20
+39220,895156.8986,1121608.212,2615820.681,20
+39221,893067.8093,1123122.067,1988027.029,20
+39222,963939.1091,1118686.366,1939721.9,20
+39223,924086.4217,1116520.296,2660931.018,20
+39224,910390.116,197785.5446,1952385.185,20
+39225,923890.7907,1287492.001,1953394.422,20
+39226,919464.5577,1404206.324,2670917.6,20
+39227,917781.0594,939900.9037,1962227.099,20
+39228,1258774.755,1020507.15,1958407.877,20
+39229,917118.4933,1160642.833,2680338.513,20
+39230,917766.6892,1105489.618,1966195.343,20
+39231,916361.672,1122044.475,1962617.291,20
+39232,918227.8278,1091101.364,3679260.017,20
+39233,916550.9122,1102481.028,1651555.111,20
+39234,797238.3072,1100330.386,1654129.606,20
+39235,955531.0373,1096918.829,2782309.35,20
+39236,916070.2064,1094635.993,1970624.65,20
+39237,915712.5239,1094409.297,1957624.854,20
+39238,914689.5013,1093008.321,2666952.669,20
+39239,916773.146,1091021.075,1959106.411,20
+39240,915737.9093,1089335.014,1955600.085,21
+39241,2314954.046,3009186.683,4937907.229,21
+39242,2223590.615,2322839.554,4063464.918,21
+39243,705768.4818,815392.0295,2020860.049,21
+39244,799406.7578,1047456.093,2812993.719,21
+39245,1170143.649,1363689.882,2258210.455,21
+39246,1081807.991,1143420.464,2758410.354,21
+39247,999589.9721,1173266.465,2181366.236,21
+39248,1017679.186,1166224.01,2234963.543,21
+39249,1020590.822,1165242.458,2233840.226,21
+39250,1014400.544,1162561.78,2236089.256,21
+39251,1013282.142,1158581.635,2478138.912,21
+39252,1009009.837,1156708.255,2202156.398,21
+39253,1008596.278,1154065.015,2209152.289,21
+39254,1003685.179,1152926.007,2208438.024,21
+39255,1005129.232,1148984.451,2210040.392,21
+39256,1001027.206,1147226.404,2211435.906,21
+39257,999049.9216,1145134.635,2211693.296,21
+39258,997458.9915,1143610.4,2214808.103,21
+39259,996713.9221,1141169.872,2211330.803,21
+39260,993065.0724,1138842.708,2211903.843,21
+39261,993878.5994,1138504.245,2921395.445,21
+39262,989190.6785,1136249.911,2257372.125,21
+39263,991081.5529,1133360.282,2215845.707,21
+39264,987583.1257,1133729.586,2213278.374,21
+39265,986117.113,1130588.06,2212236.557,21
+39266,981302.7992,1130136.667,2208231.891,21
+39267,980329.7401,1129461.071,2207754.027,21
+39268,978669.1091,1125605.289,2205303.916,21
+39269,976663.9984,1127418.635,2204513.756,21
+39270,974191.7061,1123972.614,2200105.831,21
+39271,974954.5933,1123466.994,2200695.094,21
+39272,969716.4201,1122241.301,2199554.424,21
+39273,971785.6644,1120439.656,2194546.751,21
+39274,968938.2129,1118975.893,2194359.937,21
+39275,967557.9716,1119247.953,2190832.78,21
+39276,964961.4475,1117379.084,2909337.79,21
+39277,965635.5889,1115099.453,2232408.166,21
+39278,962964.1841,1116381.547,2194508.727,21
+39279,961268.4953,1114082.796,2190323.476,21
+39280,962504.4354,1113187.266,2187581.121,21
+39281,958267.6859,1113643.897,2186415.746,21
+39282,959117.6604,1110748.132,2185539.923,21
+39283,956394.0251,1112169.6,2182161.721,21
+39284,956118.8004,1108372.46,2181360.043,21
+39285,955575.5798,1111265.355,2179375.541,21
+39286,953097.3743,1107585.317,2178991.482,21
+39287,952700.7143,1107468.859,2177023.215,21
+39288,951620.8009,1106854.078,2176654.5,21
+39289,950279.4904,1105890.495,2171340.916,21
+39290,949661.874,1106011.561,2172801.549,21
+39291,947866.8629,1105149.457,2890424.245,21
+39292,947116.7983,1102647.896,2215136.032,21
+39293,947552.5284,1104370.634,2172247.053,21
+39294,944304.3079,1103288.336,2171803.947,21
+39295,944105.8201,1102471.826,2170691.016,21
+39296,943604.4635,1100197.269,2167681.367,21
+39297,942148.0608,1102192.269,2167928.279,21
+39298,940721.0815,1100173.331,2166070.929,21
+39299,941337.9339,1099673.716,2161691.347,21
+39300,939735.7746,1098908.293,2163646.448,21
+39301,1580154.076,2173961.604,2164832.114,21
+39302,1580495.341,2172848.075,2168679.675,21
+39303,1577730.568,2173686.171,2165222.566,21
+39304,1578704.363,2170762.152,2169149.556,21
+39305,1574922.592,2173657.498,2171660.044,21
+39306,1576712.04,2170496.655,2892042.696,21
+39307,1572390.169,2170426.544,2218313.2,21
+39308,1574215.703,2171941.655,2181992.329,21
+39309,1572654.18,2170502.867,2180556.836,21
+39310,1570138.077,2170657.517,2184216.468,21
+39311,1569040.744,2169145.909,2184169.91,21
+39312,1570299.004,2171631.284,2185146.897,21
+39313,1566230.251,2168345.088,2187659.986,21
+39314,1568342.751,2169356.868,2187819.961,21
+39315,1564415.316,2170389.292,2189363.746,21
+39316,1565488.386,2167531.3,2192048.604,21
+39317,1564431.273,2169809.626,2194326.226,21
+39318,1562002.337,2170939.66,2192399.661,21
+39319,1562356.261,2175849.864,2197029.803,21
+39320,1561368.796,2172945.863,2197042.54,21
+39321,1559243.822,2173423.515,2913657.003,21
+39322,1560487.204,2174971.918,2247427.973,21
+39323,1556662.639,2173599.441,2206205.804,21
+39324,1558594.271,2173797.315,2211060.979,21
+39325,1555257.992,2174349.745,2208979.932,21
+39326,1555905.239,2173733.886,2207929.921,21
+39327,1554934.703,2174616.851,2215430.787,21
+39328,1552644.116,2173777.524,2211799.162,21
+39329,1553996.227,2173591.463,2215479.985,21
+39330,1550758.245,2175485.492,2216136.634,21
+39331,1551449.007,2172165.862,2220213.31,21
+39332,1550713.058,2174262.829,2220105.361,21
+39333,1547833.1,2174252.889,2219074.028,21
+39334,1550174.902,2173184.535,2223085.061,21
+39335,1546242.99,2172244.709,2937969.996,21
+39336,1546987.213,2171905.719,2271816.877,21
+39337,1546302.311,2172138.354,2233225.472,21
+39338,1544186.567,2170088.485,2234765.68,21
+39339,1544874.39,2171871.443,2234324.619,21
+39340,1542101.307,2170885.954,2237714.799,21
+39341,1540056.275,2169836.754,2239935.352,21
+39342,1538172.902,2170671.625,2231453.307,21
+39343,1538086.475,2168693.577,2235436.811,21
+39344,1538275.847,2170861.493,2235046.717,21
+39345,1534341.121,2169263.863,2237901.026,21
+39346,1536259.529,2168406.04,2181288.119,21
+39347,1532788.332,2168689.108,2179613.605,21
+39348,1524553.14,2169450.01,2174859.28,21
+39349,1520796.265,2167759.127,2889183.955,21
+39350,1519229.006,2168875.052,2219715.622,21
+39351,1515774.232,2166833.363,2180552.978,21
+39352,1513880.814,2168226.749,2177196.661,21
+39353,1512134.324,2167010.891,2178078.606,21
+39354,1509600.347,2167073.634,2173605.968,21
+39355,1508196.354,2167451.079,2174934.621,21
+39356,1504410.431,2166576.837,2170888.728,21
+39357,1503901.926,2167343.112,2171924.945,21
+39358,1499583.181,2166639.496,2169698.071,21
+39359,1500979.921,2165607.717,2168653.23,21
+39360,1495049.822,2166246.019,2166668.454,21
+39361,1437517.782,2103828.095,2034494.154,21
+39362,1431437.375,2098356.352,2011005.77,21
+39363,1429705.148,2096648.026,2717731.118,21
+39364,1426124.191,2095377.45,2031360.014,21
+39365,1425998.247,2096983.221,1981721.544,21
+39366,1421644.339,2094975.132,1970891.771,21
+39367,1422361.316,2094499.009,1957412.69,21
+39368,1419563.599,2095849.089,1947728.819,21
+39369,1416685.033,2092552.538,1938414.021,21
+39370,1415855.643,2094058.623,1927395.338,21
+39371,1414310.392,2093442.661,1916964.525,21
+39372,1411269.72,2093173.53,1907112.474,21
+39373,1409487.156,2092018.52,1898693.207,21
+39374,1406686.969,2093765.338,1887901.8,21
+39375,1404689.271,2091169.909,1878346.701,21
+39376,1404181.207,2093893.688,1868342.931,21
+39377,1401929.828,2091295.959,1857889.693,21
+39378,1400167.387,2091733.751,2578430.444,21
+39379,1399200.507,2091194.928,1882937.346,21
+39380,1397517.15,2092637.781,1835043.428,21
+39381,1394495.935,2091859.203,1824711.193,21
+39382,1395212.623,2090826.999,1812936.5,21
+39383,1392516.929,2091673.23,1806999.636,21
+39384,1389997.851,2091373.841,1795534.059,21
+39385,1390293.97,2090796.294,1786189.888,21
+39386,1387864.197,2092324.01,1777908.855,21
+39387,1386884.691,2090968.386,1767892.936,21
+39388,1384493.75,2091155.229,1759383.25,21
+39389,1383685.675,2091854.379,1752391.924,21
+39390,1381488.136,2090761.867,1822821.04,21
+39391,1381675.451,2091910.105,1725063.235,21
+39392,1377431.66,2090965.977,1717466.467,21
+39393,1379666.201,2092417.624,1709501.813,21
+39394,1375195.426,2091281.113,1701910.86,21
+39395,1374263.014,2092242.737,1695163.371,21
+39396,1373774.774,2091502.093,1686620.54,21
+39397,1371686.531,2090860.194,1679152.791,21
+39398,1370130.258,2092632.849,1672612.576,21
+39399,1369353.766,2092716.659,2409283.986,21
+39400,1366345.796,2091997.437,1701697.692,21
+39401,1366585.437,2092471.079,1650611.569,21
+39402,1363782.885,2091208.942,1641463.607,21
+39403,1363042.478,2093377.522,1636265.403,21
+39404,1361453.677,2093034.232,1627107.373,21
+39405,1359616.623,2091788.76,1619855.835,21
+39406,1357805.291,2093598.603,1613166.702,21
+39407,1358222.967,2092930.175,1603886.945,21
+39408,1353790.892,2093837.993,1599709.266,21
+39409,1354084.842,2092145.735,1588552.286,21
+39410,1352051.866,2095104.872,1585079.097,21
+39411,1349846.877,2092636.918,1650676.102,21
+39412,1349999.601,2093862.961,1560307.766,21
+39413,1347558.772,2094897.355,1554547.289,21
+39414,1345748.469,2093943.002,1656691.448,21
+39415,1343987.695,2094532.766,1531546.882,21
+39416,1343601.667,2095002.635,1523086.64,21
+39417,1341171.357,2093690.784,1518657.759,21
+39418,1340014.712,2095767.776,1511808.311,21
+39419,1338804.005,2095145.729,1504239.512,21
+39420,1335748.623,2096699.951,1501597.634,21
+39421,1335178.699,2094275.661,1489746.709,21
+39422,1328865.766,2095755.645,1481184.125,21
+39423,1327872.742,2096954.214,1471548.882,21
+39424,1324003.341,2094300.263,1466177.679,21
+39425,1320343.56,2097664.62,1454632.529,21
+39426,1319428.225,2096627.485,1450784.743,21
+39427,1314822.246,2097688.257,1439277.51,21
+39428,1312499.616,2096136.42,1433566.421,21
+39429,1309264.75,2098813.333,1423689.406,21
+39430,1306345.486,2098255.336,1417118.077,21
+39431,1303375.571,2099357.362,1408986.831,21
+39432,1300957.48,2097912.379,1400555.449,21
+39433,1297930.65,2099899.852,1393031.243,21
+39434,1294632.14,2100746.827,1383624.861,21
+39435,1292964.18,2098542.53,1376409.428,21
+39436,1288294.876,2102340.191,1368373.279,21
+39437,1285943.727,2099850.207,1361767.747,21
+39438,1284286.23,2101817.226,1351338.252,21
+39439,1281447.743,2102416.707,1343559.761,21
+39440,1277045.506,2101825.41,1338183.317,21
+39441,1275243.454,2102695.394,1326338.523,21
+39442,1272456.621,2103684.777,1321345.994,21
+39443,1269095.406,2102248.08,1311091.767,21
+39444,1266722.193,2104639.186,1305936.604,21
+39445,1262540.807,2104631.199,1294269.101,21
+39446,1261358.737,2104839.059,1288896.016,21
+39447,1256606.228,2104504.4,1278567.146,21
+39448,1256065.157,2107279.019,1271977.661,21
+39449,1249648.605,2105412.55,1262135.694,21
+39450,1247186.284,2105740.306,1255860.967,21
+39451,1244620.765,2107694.226,1247018.249,21
+39452,1242238.22,2106910.745,1240152.295,21
+39453,1238536.926,2108758.151,1230205.41,21
+39454,1237980.542,2107433.898,1223922.345,21
+39455,1232945.143,2109779.213,1215186.011,21
+39456,1231491.572,2108056.133,1207376.938,21
+39457,1229235.82,2110757.608,1201471.326,21
+39458,1225693.275,2109718.277,1190093.985,21
+39459,1223913.258,2110280.52,1185556.929,21
+39460,1220502.2,2111425.233,1177031.849,21
+39461,1219894.818,2112387.445,1168238.395,21
+39462,1214836.856,2111738.713,1160823.788,21
+39463,1213919.682,2111823.05,1153535.744,21
+39464,1210905.94,2113458.986,1146007.519,21
+39465,1208447.46,2113844.319,1138211.517,21
+39466,1206044.303,2113628.321,1131799.153,21
+39467,1203480.864,2115194.42,1123807.194,21
+39468,1200673.613,2114297.013,1120557.624,21
+39469,1199162.09,2116023.365,1110647.981,21
+39470,1195851.399,2115953.546,1106029.124,21
+39471,1194241.458,2115474.494,1099872.412,21
+39472,1190791.582,2117595.419,1092830.96,21
+39473,1189626.898,2117297.129,1086942.871,21
+39474,1185565.29,2118299.836,1082454.07,21
+39475,1184906.829,2117319.305,1073690.352,21
+39476,1181624.584,2120315.19,1068007.324,21
+39477,1179344.635,2118634.968,1063938.329,21
+39478,1178302.611,2119000.036,1055655.53,21
+39479,1175637.409,2122478.786,1050888.882,21
+39480,1173424.393,2119556.151,1044495.917,21
+39481,1168556.022,2122483.264,1037645.567,21
+39482,1166917.19,2120624.339,1034922.177,21
+39483,1164726.975,2121155.584,1026491.016,21
+39484,1162777.648,2122506.289,1021018.978,21
+39485,1160624.374,2119208.272,1017674.458,21
+39486,1158028.86,2115674.98,1008056.845,21
+39487,1156390.896,2119193.691,1003708.207,21
+39488,1152640.486,2115847.242,998282.0117,21
+39489,1152483.419,2117005.554,991730.0221,21
+39490,1148826.868,2118016.024,986956.374,21
+39491,1146484.017,2115599.051,979583.0589,21
+39492,1145626.671,2117976.915,975373.2215,21
+39493,1142287.505,2115962.317,967930.5727,21
+39494,1140608.447,2116101.196,965355.1283,21
+39495,1138228.671,2116113.633,964247.8619,21
+39496,1135491.032,2117231.109,958962.8964,21
+39497,1134139.417,2114977.822,958817.2033,21
+39498,1130867.5,2116901.305,952356.8129,21
+39499,1129922.838,2115461.546,950613.0466,21
+39500,1126584.072,2114849.371,947485.411,21
+39501,1125041.12,2115820.713,943323.299,21
+39502,1122527.723,2115857.559,942399.8493,21
+39503,1120346.387,2115689.462,935708.251,21
+39504,1118028.883,2115504.296,933413.1768,21
+39505,1116426.65,2114852.805,930150.7199,21
+39506,1114286.808,2116256.356,926430.5292,21
+39507,1110410.608,2113993.346,922771.8976,21
+39508,1110169.984,2115436.144,917749.5422,21
+39509,1107980.163,2114562.95,914969.8569,21
+39510,1104775.637,2115003.847,910293.8979,21
+39511,1102593.755,2114461.746,907430.433,21
+39512,1102654.085,2115530.403,901974.3715,21
+39513,1099411.939,2115413.84,899999.4951,21
+39514,1098752.677,2113880.954,893071.9284,21
+39515,1096748.255,2114689.767,890300.1884,21
+39516,1094351.76,2116337.33,887652.5568,21
+39517,1093756.065,2114022.286,881688.3251,21
+39518,1091252.172,2087338.635,876607.0401,21
+39519,1090897.957,2082242.204,874015.1074,21
+39520,1087381.095,2079681.147,869535.2283,21
+39521,1087365.452,2079692.047,866264.4357,21
+39522,1086720.833,2077557.78,858967.7315,21
+39523,1084831.819,2076360.1,856676.7646,21
+39524,1085107.126,2075688.201,851694.8857,21
+39525,1082565.785,2073777.818,847365.4654,21
+39526,1082102.725,2073568.149,842974.9097,21
+39527,1080584.635,2070870.793,838044.0296,21
+39528,1080000.755,2072437.187,832655.3141,21
+39529,1078003.974,2069874.499,829851.1828,21
+39530,1077695.529,2068250.021,824551.2377,21
+39531,1075593.848,2068737.679,818951.5176,21
+39532,1075320.48,2067807.069,815956.9652,21
+39533,1073233.652,2066737.882,810017.1985,21
+39534,1071762.914,2064853.118,806463.0382,21
+39535,1072521.913,2066304.675,800867.2551,21
+39536,1069302.446,2063645.055,796766.7589,21
+39537,1068445.613,2063868.305,791762.4794,21
+39538,1067219.019,2062905.133,786568.4206,21
+39539,1067323.606,2063047.338,783428.4233,21
+39540,1064644.695,2060351.756,776569.0143,21
+39541,1062945.619,2061077.832,774918.7458,21
+39542,1064362.385,2057299.534,770140.5823,21
+39543,1061794.423,2056090.937,765755.7052,21
+39544,1061605.043,2053805.027,763696.4998,21
+39545,1061054.199,2052607.339,759803.5731,21
+39546,1060631.754,2050131.862,757278.5773,21
+39547,1059733.868,2048065.17,753548.1874,21
+39548,1059947.447,2047140.113,751036.9872,21
+39549,1057761.32,2045727.894,746922.0568,21
+39550,1058617.052,2041964.543,744630.6555,21
+39551,1056895.487,2043708.089,741746.9052,21
+39552,1057857.808,2037959.629,737299.9958,21
+39553,1054956.764,2039409.231,735990.6237,21
+39554,1056456.17,2037174.339,731862.2055,21
+39555,1054064.672,2034379.642,728372.1807,21
+39556,1055384.135,2034270.689,726109.685,21
+39557,1052944.105,2032184.935,722396.5371,21
+39558,1053790.455,2029950.096,721078.4051,21
+39559,1051629.875,2029838.056,716423.5171,21
+39560,1052503.71,2025918.21,713645.2954,21
+39561,1050351.469,2026984.423,712628.5228,21
+39562,1050744.577,2024548.122,706880.0759,21
+39563,1049395.135,2021148.865,706363.5363,21
+39564,1049212.503,2021956.127,703518.2242,21
+39565,1048221.369,2019488.989,699640.8473,21
+39566,1048194.771,2018479.711,696637.0772,21
+39567,1046057.826,2016577.356,694369.6551,21
+39568,1046969.701,2014784.482,692985.7451,21
+39569,1045323.769,2014888.776,688117.705,21
+39570,1046472.906,2011989.672,686129.3987,21
+39571,1044326.865,2010651.843,682930.915,21
+39572,1045410.275,2009417.02,679996.26,21
+39573,1044437.183,2006767.655,677203.9395,21
+39574,1043251.78,2005867.05,675915.0398,21
+39575,1044385.129,2005459.243,673234.9013,21
+39576,1041755.74,2002709.126,668850.3949,21
+39577,1043081.367,2001942.734,668125.216,21
+39578,1041628.565,2000470.539,663881.7935,21
+39579,1041627.773,1998810.832,663271.587,21
+39580,1040798.641,1997133.76,659121.0504,21
+39581,1041087.385,1995999.782,657899.3391,21
+39582,1039923.72,1994925.123,652776.7031,21
+39583,1039840.232,1993049.46,653105.5535,21
+39584,1038764.617,1991162.764,648963.3894,21
+39585,1039167.439,1990328.675,646287.0043,21
+39586,1038527.48,1988211.231,642457.1137,21
+39587,1038883.335,1987592.891,637129.338,21
+39588,1042177.589,1985199.023,635307.452,21
+39589,1040530.901,1985046.979,630771.8709,21
+39590,1041935.604,1982471.995,628270.9309,21
+39591,1041602.9,1981315.247,625895.5542,21
+39592,1042056.14,1979871.464,620387.5008,21
+39593,1042149.184,1977872.609,619319.439,21
+39594,1043182.524,1976766.133,613977.5929,21
+39595,1042748.038,1976495.81,612149.734,21
+39596,1042782.411,1972406.606,607679.1191,21
+39597,1044742.392,1972697.107,604731.3737,21
+39598,1042910.319,1970720.451,601849.5227,21
+39599,1045277.031,1968517.993,597575.6644,21
+39600,1044019.32,1968925.909,594062.2349,21
+39601,1109895.776,2033217.173,686175.3715,21
+39602,1112592.945,2038843.854,690236.0504,21
+39603,1114637.081,2037398.486,689262.5876,21
+39604,1116833.544,2036346.345,686813.358,21
+39605,1119009.708,2037534.854,686974.7491,21
+39606,1120572.307,2037458.237,683898.2885,21
+39607,1123418.717,2036576.369,683228.248,21
+39608,1125177.528,2034679.967,680413.9711,21
+39609,1125684.629,2037865.885,679492.2506,21
+39610,1127312.387,2033712.038,676827.6885,21
+39611,1128679.096,2035786.697,673746.7319,21
+39612,1131181.714,2034364.658,674172.7029,21
+39613,1130592.756,2033592.562,669961.2849,21
+39614,1133710.294,2034694.879,669004.8437,21
+39615,1134992.028,2032314.587,666320.4634,21
+39616,1134297.21,2032604.488,663605.7263,21
+39617,1138940.511,2031928.886,662229.2003,21
+39618,1138125.15,2031300.162,658256.3299,21
+39619,1141035.403,2030790.938,657275.1794,21
+39620,1141602.811,2031145.406,653686.2041,21
+39621,1143979.427,2028676.117,651568.4705,21
+39622,1143786.692,2029923.936,649533.7936,21
+39623,1147035.599,2028200.02,646092.671,21
+39624,1147355.359,2028325.963,643481.9854,21
+39625,1148912.551,2027123.549,641664.1067,21
+39626,1149956.789,2027732.243,638918.74,21
+39627,1151679.602,2025586.534,633918.6157,21
+39628,1152854.686,2025589.845,633366.3537,21
+39629,1155842.968,2024374.811,629903.5855,21
+39630,1161050.735,2025332.127,627266.1026,21
+39631,1160938.096,2022945.779,621243.9416,21
+39632,1163291.014,2023627.466,619699.4793,21
+39633,1162113.115,2022543.312,618553.4106,21
+39634,1164312.687,2022207.11,616279.2057,21
+39635,1165228.315,2020817.244,617386.8099,21
+39636,1164068.638,2021017.007,612241.0179,21
+39637,1167460.71,2020951.156,613406.2832,21
+39638,1167000.595,2019466.974,609949.498,21
+39639,1168220.824,2019994.907,610236.4764,21
+39640,1167934.739,2018729.841,607757.0915,21
+39641,1169368.256,2016883.403,608190.0058,21
+39642,1170077.647,2018701.454,604320.7959,21
+39643,1171385.835,2015341.195,605329.6931,21
+39644,1171112.11,2015081.593,603295.3919,21
+39645,1172056.024,2013805.316,601927.5378,21
+39646,1173725.751,2013393.858,600945.7437,21
+39647,1173039.405,2013467.901,600109.7241,21
+39648,1175531.239,2011470.492,598271.6184,21
+39649,1173881.805,2012064.529,597102.7617,21
+39650,1176329.857,2009711.895,596574.4362,21
+39651,1175231.932,2011372.049,595338.8768,21
+39652,1177653.624,2007666.49,595604.2549,21
+39653,1177891.77,2009799.853,592550.0294,21
+39654,1177757.034,2007546.968,592038.4664,21
+39655,1178965.025,2006784.372,591928.938,21
+39656,1180130.235,2006839.685,589779.8963,21
+39657,1179567.67,2005600.511,590879.8038,21
+39658,1180488.63,2004367.673,587982.1386,21
+39659,1180920.764,2004553.69,586583.0108,21
+39660,1183822.883,2002839.67,587797.2836,21
+39661,1180384.165,2003960.625,585623.7522,21
+39662,1183403.814,2002770.046,585840.4401,21
+39663,1181532.764,2001151.744,584751.2634,21
+39664,1183128.94,2002322.73,584069.4998,21
+39665,1183393.28,2001154.882,583391.7563,21
+39666,1182116.218,2000129.125,582512.6859,21
+39667,1183406.879,2000838.617,581879.3233,21
+39668,1183379.768,1998330.572,581338.0649,21
+39669,1183031.994,1998625.863,580688.8073,21
+39670,1183829.213,1997151.743,580718.3873,21
+39671,1183649.6,1999064.47,579489.247,21
+39672,1183002.2,1995219.953,578656.3621,21
+39673,1184152.335,1996632.661,578540.082,21
+39674,1183953.148,1994157.856,577841.0309,21
+39675,1183881.478,1995836.379,577110.0698,21
+39676,1184386.92,1992199.494,576442.6991,21
+39677,1184558.849,1993570.317,576329.5084,21
+39678,1184571.378,1991833.524,574506.0846,21
+39679,1184266.946,1991535.597,574485.3017,21
+39680,1185086.759,1990313.32,573995.0116,21
+39681,1181857.473,1990268.911,572497.7796,21
+39682,1182644.066,1989877.952,572505.2186,21
+39683,1181765.885,1986961.151,571927.105,21
+39684,1183673.904,1988645.027,571944.2165,21
+39685,1181622.305,1987480.785,569363.5757,21
+39686,1182470.827,1986372.732,570499.825,21
+39687,1182851.074,1986191.439,569777.6287,21
+39688,1182471.558,1985242.625,566908.1887,21
+39689,1183054.205,1983458.799,568423.9121,21
+39690,1181985.181,1985614.169,567529.8045,21
+39691,1183557.219,1982562.217,565191.7849,21
+39692,1181824.866,1982393.038,565620.1615,21
+39693,1183133.792,1983533.685,564673.8654,21
+39694,1182821.401,1981932.132,564264.1788,21
+39695,1183104.217,1983882.86,563181.7821,21
+39696,1181776.797,1980350.324,562841.1433,21
+39697,1183051.331,1981965.218,560120.1971,21
+39698,1183285.078,1982060.303,562313.8666,21
+39699,1181713.328,1981749.359,560142.0891,21
+39700,1183492.974,1979772.901,558441.8807,21
+39701,1181837.628,1982766.649,559228.6174,21
+39702,1183610.932,1980203.948,556911.4122,21
+39703,1181789.906,1981313.456,556720.0575,21
+39704,1182908.263,1980321.977,555379.3717,21
+39705,1182503.312,1981035.579,405696.9463,21
+39706,1182835.849,1980527.437,404557.7401,21
+39707,1181679.916,1980749.465,406646.5708,21
+39708,1182396.598,1980614.401,409396.9665,21
+39709,1182428.772,1980250.027,409616.4716,21
+39710,1182171.893,1979640.286,412492.1599,21
+39711,1182044.659,1980200.669,412552.4973,21
+39712,1182320.347,1980698.666,415039.2382,21
+39713,1181512.401,1979896.232,415546.2492,21
+39714,1182323.465,1981332.352,417614.453,21
+39715,1181756.258,1980930.113,418776.1759,21
+39716,1182544.131,1980657.467,418704.0028,21
+39717,1181341.935,1980063.131,422164.6515,21
+39718,1181871.6,1982518.435,420846.8988,21
+39719,1181478.744,1980765.569,424072.3013,21
+39720,1182208.547,1979936.013,422806.6017,21
+39721,1182537.252,1981941.989,425190.0127,21
+39722,1183767.776,1982210.522,426335.1968,21
+39723,1184886.709,1984041.02,428893.9888,21
+39724,1185693.03,1981791.502,426095.0401,21
+39725,1187888.089,1985376.312,430090.4165,21
+39726,1186759.27,1983955.406,430494.5914,21
+39727,1187732.404,1985929.714,428067.8566,21
+39728,1191901.274,1984338.898,432100.1532,21
+39729,1191554.105,1986638.507,431586.6086,21
+39730,1193740.295,1987538.313,430182.4248,21
+39731,1193564.708,1986466.22,432659.7876,21
+39732,1194331.241,1987993.393,433504.0018,21
+39733,1196656.511,1987833.597,432355.7908,21
+39734,1195435.33,1989772.276,434086.7174,21
+39735,1198705.44,1988440.32,433986.2223,21
+39736,1197860.029,1990920.494,433881.3503,21
+39737,1199899.96,1990718.271,434322.5964,21
+39738,1199635.64,1991218.692,435152.3729,21
+39739,1201656.27,1992311.178,433985.4174,21
+39740,1201728.264,1993929.168,434948.7579,21
+39741,1203608.756,1993692.197,435250.7447,21
+39742,1204389.781,1994987.889,435796.6212,21
+39743,1204386.043,1995664.56,435452.5718,21
+39744,1206063.425,1996219.623,435507.8658,21
+39745,1206420.261,1996761.246,435968.3283,21
+39746,1208126.423,1997901.732,435609.9912,21
+39747,1207893.567,1996881.616,435422.7095,21
+39748,1209708.012,2000827.974,435635.5955,21
+39749,1210728.957,1998420.958,435769.2633,21
+39750,1211689.199,2001834.956,436268.7377,21
+39751,1210836.779,1999686.78,435269.6412,21
+39752,1214100.426,2003183.994,434887.3501,21
+39753,1213729.635,2003418.796,434568.9185,21
+39754,1215534.662,2004814.901,435443.4391,21
+39755,1214828.361,2006888.973,434350.7276,21
+39756,1218436.682,2005831.023,433688.556,21
+39757,1216458.633,2009904.687,433724.2119,21
+39758,1219280.754,2008609.298,434112.7089,21
+39759,1219614.539,2011178.669,432703.3049,21
+39760,1220971.219,2012165.852,433994.699,21
+39761,1221571.848,2014197.609,431440.2667,21
+39762,1221689.422,2015251.372,431382.1331,21
+39763,1223651.233,2015443.055,434183.6183,21
+39764,1224470.082,2019179.26,429978.3436,21
+39765,1224993.231,2018718.471,430635.025,21
+39766,1226479.157,2021645.623,431303.3574,21
+39767,1227519.328,2021617.269,430742.9603,21
+39768,1227938.815,2025873.062,428910.5587,21
+39769,1228807.615,2023599.969,430763.035,21
+39770,1230480.784,2029031.224,428134.1477,21
+39771,1230423.895,2028932.684,426571.3245,21
+39772,1233051.881,2030642.159,429639.7288,21
+39773,1232517.637,2032217.76,425450.2111,21
+39774,1233840.58,2033829.139,428264.8472,21
+39775,1234368.83,2036579.095,424121.7311,21
+39776,1235751.145,2036310.742,427194.3341,21
+39777,1237236.189,2039505.316,423142.7259,21
+39778,1236851.267,2040984.907,425524.7674,21
+39779,1238846.528,2041967.883,421625.8308,21
+39780,1239858.625,2045580.585,424533.2233,21
+39781,1239190.637,2045879.595,420792.2477,21
+39782,1239957.932,2047345.819,422675.516,21
+39783,1240545.417,2051027.732,421865.1602,21
+39784,1240019.767,2050964.012,422096.2197,21
+39785,1239836.831,2053061.259,421264.5095,21
+39786,1240657.873,2054596.569,421623.98,21
+39787,1240854.134,2057819.025,420725.7539,21
+39788,1239894.971,2057251.827,420610.3947,21
+39789,1240728.822,2059842.616,420150.2148,21
+39790,1241237.887,2062128.901,420583.3653,21
+39791,1241429.489,2064099.788,419614.4135,21
+39792,1239713.115,2064463.883,419437.7002,21
+39793,1242255.361,2067637.693,420356.9155,21
+39794,1240771.114,2068085.475,419172.4793,21
+39795,1240923.007,2072276.928,418253.6865,21
+39796,1242228.123,2071231.654,418577.1766,21
+39797,1240096.851,2074659.93,419098.1248,21
+39798,1243148.156,2075942.854,417311.4797,21
+39799,1240102.954,2078851.8,419614.141,21
+39800,1242136.112,2078689.056,418024.1935,21
+39801,1241674.191,2082244.398,420076.5261,21
+39802,1241851.205,2083810.617,418978.844,21
+39803,1241639.244,2091925.351,420513.8444,21
+39804,1241743.613,2094358.102,420084.6927,21
+39805,1242286.412,2097421.437,423029.2157,21
+39806,1241624.593,2097628.469,420309.8351,21
+39807,1242712.961,2099462.84,420632.7029,21
+39808,1241879.336,2101636.349,424824.1277,21
+39809,1242010.593,2103056.905,420591.9532,21
+39810,1241771.361,2103200.544,424284.6443,21
+39811,1242979.493,2106174.051,423259.735,21
+39812,1242486.801,2107887.824,424336.3161,21
+39813,1242945.985,2107431.469,424791.7564,21
+39814,1243250.368,2110065.389,425378.4399,21
+39815,1243484.541,2110685.184,425199.0942,21
+39816,1243692.187,2112837.952,426246.7371,21
+39817,1244275.702,2112155.688,427990.1618,21
+39818,1243936.826,2115101.609,425310.7114,21
+39819,1244766.773,2115419.839,428788.5282,21
+39820,1245867.959,2116930.482,426534.8145,21
+39821,1244596.93,2117347.856,429378.7678,21
+39822,1245698.849,2119588.839,428905.7057,21
+39823,1245685.26,2118738.785,430329.6501,21
+39824,1246143.005,2121829.451,428096.654,21
+39825,1246930.44,2121389.193,431287.2204,21
+39826,1246923.701,2124466.573,431971.0803,21
+39827,1246328.036,2122363.45,428758.6199,21
+39828,1247583.963,2125826.49,434572.1942,21
+39829,1248070.333,2125803.344,431297.5271,21
+39830,1248252.683,2127203.849,433600.3617,21
+39831,1247811.947,2127812.523,432154.675,21
+39832,1248425.501,2128466.691,434779.4405,21
+39833,1250713.779,2129122.619,434107.7378,21
+39834,1247663.938,2130451.912,433953.6471,21
+39835,1250537.725,2132582.562,435396.6731,21
+39836,1250371.502,2131383.997,436046.9512,21
+39837,1249946.385,2132446.56,436218.126,21
+39838,1252059.681,2135144.637,434963.9146,21
+39839,1250014.544,2134740.512,436982.0173,21
+39840,1252094.041,2135172.408,437319.0714,21
+39841,1252750.135,2136745.807,438210.0416,21
+39842,1254252.585,2139477.239,437937.4585,21
+39843,1254167.833,2138236.74,438259.7244,21
+39844,1256239.635,2142123.098,438581.1385,21
+39845,1256358.276,2143127.718,437342.8677,21
+39846,1259763.557,2144752.636,439478.9404,21
+39847,1257499.866,2145819.857,438967.9668,21
+39848,1261910.334,2147090.172,440457.9284,21
+39849,1260477.972,2149680.668,439963.1621,21
+39850,1262557.789,2149421.91,440134.535,21
+39851,1264434.85,2153315.134,441051.0137,21
+39852,1264596.835,2152246.773,441072.7595,21
+39853,1265524.916,2154975.587,440542.5151,21
+39854,1267851.541,2156538.569,442145.5413,21
+39855,1267780.923,2157230.11,441562.7633,21
+39856,1269090.374,2158898.71,442329.034,21
+39857,1271558.002,2160212.494,441842.0122,21
+39858,1271402.121,2162032.081,443104.4032,21
+39859,1272021.566,2164146.295,442858.917,21
+39860,1275353.799,2163631.674,443565.2621,21
+39861,1274547.283,2166592.301,442832.6473,21
+39862,1277575.77,2166162.452,444509.0003,21
+39863,1277283.219,2170715.464,443692.6893,21
+39864,1279449.881,2168539.182,444548.4415,21
+39865,1279951.514,2171633.258,444351.8889,21
+39866,1282132.918,2173579.115,444807.7965,21
+39867,1281316.573,2172693.487,445359.4772,21
+39868,1285103.504,2176432.694,445209.5384,21
+39869,1284547.416,2176410.787,445927.8148,21
+39870,1289266.776,2179091.917,445829.3558,21
+39871,1289249.33,2178269.256,446649.7464,21
+39872,1291713.726,2181689.816,446368.6447,21
+39873,1292447.914,2181919.88,446969.9029,21
+39874,1292840.863,2182758.254,447033.0462,21
+39875,1294491.47,2186601.752,447472.8101,21
+39876,1294629.482,2184258.359,447779.8008,21
+39877,1296495.815,2188028.939,448222.0591,21
+39878,1296398.018,2188768.228,448516.3653,21
+39879,1297975.723,2189029.23,448115.7357,21
+39880,1299624.209,2192745.083,449307.3155,21
+39881,1299045.807,2191533.184,449469.4938,21
+39882,1301078.205,2194470.751,449063.3502,21
+39883,1302229.195,2194851.524,450208.1399,21
+39884,1302265.585,2195990.999,449886.5013,21
+39885,1304225.352,2197671.856,450621.4034,21
+39886,1304180.609,2198530.283,448954.7951,21
+39887,1305776.578,2200610.555,451374.9522,21
+39888,1306732.094,2202016.909,451077.3315,21
+39889,1305877.906,2201471.077,451842.5027,21
+39890,1310284.524,2204898.293,452267.883,21
+39891,1308105.91,2205529.775,452023.7245,21
+39892,1310354.127,2205918.458,452722.536,21
+39893,1311242.548,2208077.142,451216.329,21
+39894,1312263.768,2209407.774,453162.4324,21
+39895,1313093.231,2209078.669,454184.9644,21
+39896,1314119.537,2212095.551,453624.4553,21
+39897,1314416.515,2212780.775,453762.9038,21
+39898,1316165.74,2214402.384,455125.4411,21
+39899,1316212.21,2214128.19,454974.1082,21
+39900,1317654.475,2218414.331,454362.0621,21
+39901,626041.2955,1247505.5,0,21
+39902,626324.7982,1221267.148,0,21
+39903,626282.0887,1221978.398,0,21
+39904,626669.6013,1223248.546,0,21
+39905,627344.1336,1225141.884,0,21
+39906,628265.4819,1227546.896,0,21
+39907,629357.8067,1230278.763,0,21
+39908,630545.0785,1233209.933,0,21
+39909,631768.3974,1242457.891,0,21
+39910,632987.5296,1251719.564,0,21
+39911,634176.2452,1256489.363,0,21
+39912,635321.9358,1284920.892,0,21
+39913,636401.4088,1274832.372,0,21
+39914,637421.7602,1281828.061,0,21
+39915,638376.0744,1289836.969,0,21
+39916,639264.1831,1300614.025,0,21
+39917,640250.8014,1319970.659,0,21
+39918,640850.4599,1316658.699,0,21
+39919,641556.1874,1321776.718,0,21
+39920,642209.3051,1326624.131,0,21
+39921,642813.9659,1331472.532,0,21
+39922,643374.1313,1343764.392,0,21
+39923,643901.4352,1342832.899,0,21
+39924,644375.9995,1348185.656,0,21
+39925,644922.7954,1352124.717,0,21
+39926,645243.1457,1355682.228,0,21
+39927,645634.0484,1358868.254,0,21
+39928,646000.1713,1362116.962,0,21
+39929,646347.3341,1365625.935,0,21
+39930,646667.4553,1368395.191,0,21
+39931,647055.0463,1371548.837,0,21
+39932,647261.4759,1374270.735,0,21
+39933,647745.9686,1376947.243,0,21
+39934,648182.2324,1380006.797,0,21
+39935,648351.4764,1381990.358,0,21
+39936,648769.23,1385361.281,0,21
+39937,649363.6707,1387151.607,0,21
+39938,650166.0164,1390432.897,0,21
+39939,650167.0571,1391895.325,0,21
+39940,650613.2705,1395078.298,0,21
+39941,650956.6793,1396597.701,0,21
+39942,651274.9511,1399178.869,0,21
+39943,651575.9723,1401382.318,0,21
+39944,651879.7424,1403556.983,0,21
+39945,652178.1829,1405596.227,0,21
+39946,652459.3809,1407856.681,0,21
+39947,652730.9353,1409752.134,0,21
+39948,653001.5765,1412051.076,0,21
+39949,653263.7264,1414005.398,0,21
+39950,653528.0682,1415497.193,0,21
+39951,653777.7587,1417934.243,0,21
+39952,654033.7894,1419514.179,0,21
+39953,654251.3751,1421399.56,0,21
+39954,654514.1824,1423335.344,0,21
+39955,654721.3532,1425081.719,0,21
+39956,654980.463,1426439.095,0,21
+39957,655168.1321,1428844.039,0,21
+39958,655421.1357,1430023.51,0,21
+39959,655630.541,1431925.97,0,21
+39960,655823.92,1435124.651,0,21
+39961,0,0,0,21
+39962,0,0,0,21
+39963,0,1148756.705,0,21
+39964,487307.2788,285014.4367,0,21
+39965,1965.394671,459438.6449,0,21
+39966,13794.07385,451118.4204,0,21
+39967,22846.00086,459100.4785,0,21
+39968,17320.18649,449740.2902,0,21
+39969,18087.1592,451343.0139,1689354.521,21
+39970,18143.25032,476183.3793,0,21
+39971,18111.30048,457401.9149,0,21
+39972,18198.7714,462479.9928,0,21
+39973,18133.69579,469515.7882,0,21
+39974,18156.47581,468862.4462,0,21
+39975,18160.18893,471241.3748,0,21
+39976,18187.79288,472823.7956,0,21
+39977,18139.00317,474773.763,0,21
+39978,18166.60724,477363.2312,0,21
+39979,18149.09272,478819.7297,0,21
+39980,18145.34691,480694.2225,0,21
+39981,18157.82034,483399.9449,0,21
+39982,18124.01143,484701.8054,0,21
+39983,18091.50114,486374.5385,384605.6068,21
+39984,18115.22555,489030.4861,0,21
+39985,18087.72376,489792.4832,0,21
+39986,18058.65429,493102.0696,374302.6947,21
+39987,18047.49633,493283.9653,0,21
+39988,18058.6531,496719.1648,0,21
+39989,18008.45141,497281.3615,0,21
+39990,17950.42498,499607.7674,0,21
+39991,17951.6386,500903.9232,0,21
+39992,17964.18736,503377.8807,0,21
+39993,17879.65581,11180.02401,0,21
+39994,0,125197.6692,0,21
+39995,0,1145172.654,0,21
+39996,0,373800.7935,0,21
+39997,64804.48376,573014.064,0,21
+39998,1356.852975,514857.1505,0,21
+39999,11720.90554,513867.575,0,21
+40000,23659.15383,513089.3161,0,21
+40001,16641.55747,507720.9503,0,21
+40002,17708.07917,508158.1416,0,21
+40003,17668.29994,510089.2608,0,21
+40004,17636.38731,511469.723,0,21
+40005,17595.51218,560506.0418,0,21
+40006,17540.44665,514486.1682,364470.3491,21
+40007,17491.6107,519397.8333,1830827.216,21
+40008,17453.38927,537188.1878,0,21
+40009,17413.15378,529795.336,323799.2672,21
+40010,17343.70268,533331.7971,0,21
+40011,17285.20115,534025.5416,0,21
+40012,17275.23174,536362.0845,0,21
+40013,17192.08373,537027.9012,0,21
+40014,17127.32669,539564.097,0,21
+40015,17141.40658,539899.6297,0,21
+40016,17012.10912,542174.8097,0,21
+40017,17019.56836,542843.9645,0,21
+40018,16914.5871,545388.6029,0,21
+40019,16889.75256,545923.6632,0,21
+40020,16791.8386,547221.009,0,21
+40021,17224.18384,549894.2392,0,21
+40022,17381.41959,548631.2964,0,21
+40023,17541.85357,548578.8693,0,21
+40024,17728.76189,482217.221,0,21
+40025,17857.51978,128237.2324,0,21
+40026,18075.75888,74665.80661,0,21
+40027,0,1162798.661,0,21
+40028,0,495471.6954,0,21
+40029,0,540316.6697,0,21
+40030,68033.00092,618666.7085,0,21
+40031,2454.950018,510412.8862,0,21
+40032,12254.74359,561990.0542,0,21
+40033,25610.9079,545377.6,0,21
+40034,18357.75768,543720.8827,0,21
+40035,19594.60493,529677.2965,0,21
+40036,19770.60222,527388.5,0,21
+40037,19970.65787,528551.5417,0,21
+40038,338473.5504,526017.4552,0,21
+40039,20287.48933,577727.2089,0,21
+40040,69958.48167,526869.2448,0,21
+40041,128424.0131,529475.9262,0,21
+40042,113185.9619,544738.6968,0,21
+40043,107913.7839,535495.404,0,21
+40044,112522.6772,536410.9488,0,21
+40045,114094.0692,534790.2528,1665813.668,21
+40046,115831.8387,535200.9756,0,21
+40047,117193.3041,533615.659,0,21
+40048,118589.4099,532984.3397,0,21
+40049,120426.4727,532746.583,0,21
+40050,121751.6546,530937.2618,0,21
+40051,121918.1166,530606.28,0,21
+40052,123274.7688,529527.6678,0,21
+40053,124860.5088,529178.3323,0,21
+40054,126338.9309,528301.3486,0,21
+40055,128022.126,463378.5416,0,21
+40056,129679.793,579131.4276,0,21
+40057,131033.3091,68740.91456,0,21
+40058,132816.257,78753.54924,0,21
+40059,134042.3672,1166459.998,0,21
+40060,112378.1084,434346.1586,0,21
+40061,113712.4013,545106.6011,0,21
+40062,114950.3265,556521.6622,0,21
+40063,199514.5511,504534.9809,0,21
+40064,132875.2437,532918.1138,0,21
+40065,130882.1647,519700.3113,0,21
+40066,153675.2362,519352.7396,0,21
+40067,145963.6832,517704.7038,0,21
+40068,24984.45218,517700.1794,0,21
+40069,25157.07159,502091.1995,0,21
+40070,25385.47238,501320.0572,0,21
+40071,25496.89454,501294.1154,0,21
+40072,25653.04177,499508.001,0,21
+40073,552697.8653,549202.7955,0,21
+40074,38138.74934,499508.3681,0,21
+40075,85634.75429,502022.6846,0,21
+40076,224954.9748,517116.1171,0,21
+40077,152176.5878,507699.0946,0,21
+40078,164949.6505,507701.038,0,21
+40079,166053.3853,507636.3036,0,21
+40080,167987.3937,506009.9791,0,21
+40081,167972.8988,507964.5748,0,21
+40082,168515.5086,507711.4803,0,21
+40083,168652.0566,509601.8322,288362.9317,21
+40084,168959.137,511023.1737,1522903.188,21
+40085,169474.3793,511010.7188,0,21
+40086,169497.108,450636.8216,0,21
+40087,170159.4398,568435.9443,0,21
+40088,170119.5319,503135.4098,0,21
+40089,170478.7667,80033.3082,0,21
+40090,170817.3867,81457.8637,0,21
+40091,171240.3432,1159198.683,0,21
+40092,171413.0931,420100.1054,0,21
+40093,144424.4862,552582.578,0,21
+40094,144579.5179,543669.3199,0,21
+40095,224199.716,511532.7131,257827.7818,21
+40096,159203.3255,534549.195,0,21
+40097,167974.6745,524888.2442,0,21
+40098,177132.118,526258.5552,0,21
+40099,173152.2553,526472.2748,0,21
+40100,173805.691,528310.4334,0,21
+40101,173618.8821,529127.0973,0,21
+40102,174375.5136,528985.4276,0,21
+40103,27459.71777,517014.8155,250914.7915,21
+40104,27532.35615,516153.3203,0,21
+40105,27515.77386,518037.0678,0,21
+40106,27549.75721,518465.3291,0,21
+40107,612384.0348,577456.035,0,21
+40108,54848.29827,522502.0557,0,21
+40109,83290.50301,525832.1983,0,21
+40110,249899.9175,546457.0371,0,21
+40111,164225.1313,536904.1132,0,21
+40112,176931.0098,539638.2715,0,21
+40113,177313.0926,540926.2276,244203.9919,21
+40114,177886.7814,541541.9491,0,21
+40115,177710.62,542662.5946,237596.6292,21
+40116,177901.3946,544011.6932,0,21
+40117,178197.2973,478761.0655,0,21
+40118,178244.264,598552.0582,231221.8723,21
+40119,178340.3688,540076.8919,0,21
+40120,178839.7576,546419.2205,0,21
+40121,178429.1455,86330.61225,0,21
+40122,179045.4602,84487.80969,1291285.76,21
+40123,179421.3735,1166163.616,0,21
+40124,178840.1454,524553.1773,0,21
+40125,151936.9181,529504.0274,0,21
+40126,151743.1733,643189.0856,208388.6753,21
+40127,231957.59,514207.318,0,21
+40128,168801.0176,575797.5329,0,21
+40129,173634.8644,559061.9576,0,21
+40130,184885.3647,559025.9652,0,21
+40131,180182.7772,560385.3908,0,21
+40132,180540.037,560349.5598,0,21
+40133,180960.7522,562107.8013,0,21
+40134,180817.2335,562908.0579,0,21
+40135,181251.7814,563417.8755,0,21
+40136,181206.4464,564316.9307,0,21
+40137,28032.98393,549334.792,0,21
+40138,27975.42608,548652.3807,202767.7332,21
+40139,28049.78906,551063.0524,0,21
+40140,28192.68964,609571.3504,0,21
+40141,653698.3999,552567.1291,0,21
+40142,66822.31074,562354.2594,0,21
+40143,76501.40887,575008.5852,0,21
+40144,270582.1788,568530.1403,0,21
+40145,174380.3524,569648.7263,0,21
+40146,189969.4659,569840.6576,0,21
+40147,190934.9038,570436.8217,0,21
+40148,191999.5858,502586.5202,197325.0296,21
+40149,192590.6956,621986.7333,0,21
+40150,193452.5862,569222.3943,191967.3728,21
+40151,194358.973,566920.7968,0,21
+40152,195494.9285,577664.1432,0,21
+40153,195655.2686,88178.82939,187077.6791,21
+40154,196967.9412,87962.10668,0,21
+40155,197424.9169,1172153.153,0,21
+40156,198886.8144,600864.7532,0,21
+40157,169380.011,509538.7936,0,21
+40158,170617.5594,668372.9868,0,21
+40159,254522.7355,569241.5439,0,21
+40160,195647.6135,571600.4861,1625441.379,21
+40161,192797.551,582009.5032,0,21
+40162,209379.1446,576866.7233,0,21
+40163,203817.8473,576012.0467,700548.1119,21
+40164,205617.0105,577105.9279,0,21
+40165,206039.5498,576301.1795,0,21
+40166,207043.0623,577881.476,709501.3114,21
+40167,208339.1968,577056.7452,0,21
+40168,208335.7039,577769.0811,0,21
+40169,209698.3639,578031.1534,0,21
+40170,210581.3377,560812.9636,0,21
+40171,30913.55588,561220.9754,0,21
+40172,31010.49797,560981.6093,0,21
+40173,31061.47532,623740.7222,0,21
+40174,690334.4076,562370.9416,0,21
+40175,84720.96251,573979.1342,0,21
+40176,127515.8381,586390.2408,0,21
+40177,286007.2752,579445.9473,0,21
+40178,205981.5223,580340.8495,0,21
+40179,218308.4016,510706.2127,0,21
+40180,219507.2475,631488.3067,0,21
+40181,219967.8638,581891.1919,0,21
+40182,221087.4174,576277.283,0,21
+40183,221856.43,587406.0552,0,21
+40184,222598.2432,584795.8725,0,21
+40185,223482.6493,90657.25885,0,21
+40186,224302.5431,90622.84933,0,21
+40187,224993.2743,1174727.646,0,21
+40188,226284.5399,638256.3275,0,21
+40189,194035.3204,501695.1723,0,21
+40190,195000.3842,680150.9574,0,21
+40191,283144.3486,598870.0376,0,21
+40192,229833.267,570945.7189,0,21
+40193,217229.2673,595276.1952,0,21
+40194,236831.0763,587838.4825,0,21
+40195,232013.1771,586664.0592,0,21
+40196,232410.4774,587455.016,0,21
+40197,233677.3383,586984.6663,0,21
+40198,234385.8925,588137.0305,0,21
+40199,235012.8342,587886.3396,0,21
+40200,236403.125,587541.6018,1128711.591,15.6
+40201,236214.8946,590713.7669,0,15.6
+40202,236199.1371,592233.7012,0,15.6
+40203,236961.4815,575665.3064,0,15.6
+40204,33470.50803,577109.6755,0,15.6
+40205,33492.71695,579968.3729,0,15.6
+40206,33536.78184,648256.7867,0,15.6
+40207,740535.2269,584366.4301,0,15.6
+40208,141357.7334,599507.4403,0,15.6
+40209,139454.1099,612904.8792,173840.8349,15.6
+40210,305126.7539,532851.1654,0,15.6
+40211,231546.6866,657871.6333,169089.6309,15.6
+40212,239432.2787,618675.9867,0,15.6
+40213,240004.0876,604793.3384,0,15.6
+40214,240305.2125,622182.1335,164703.456,15.6
+40215,240028.8994,619917.2872,0,15.6
+40216,240602.6782,621627.3333,0,15.6
+40217,240492.2552,96649.79198,0,15.6
+40218,240545.3762,96916.82359,0,15.6
+40219,241045.9117,1181233.099,0,15.6
+40220,240853.243,774284.3051,0,15.6
+40221,207286.7741,478074.3202,0,15.6
+40222,207571.3199,730836.2238,160113.1849,15.6
+40223,295211.5609,667169.6622,0,15.6
+40224,245278.9118,667033.1302,0,15.6
+40225,228445.4863,625663.1307,0,15.6
+40226,247525.0535,649157.5255,0,15.6
+40227,241885.0966,647458.6643,0,15.6
+40228,242582.595,646691.0177,0,15.6
+40229,242294.2036,649846.7748,0,15.6
+40230,242580.8669,651117.0164,155870.9192,15.6
+40231,242540.4077,653497.0949,0,15.6
+40232,243010.9485,655556.0583,0,15.6
+40233,243185.8436,657853.0899,0,15.6
+40234,243076.8198,658539.9354,0,15.6
+40235,243393.6791,661926.2823,0,15.6
+40236,243513.7764,642190.8405,0,15.6
+40237,34230.66052,642856.7633,0,15.6
+40238,34224.59798,646377.0827,0,15.6
+40239,34270.54925,725704.9647,0,15.6
+40240,755570.0012,655534.4321,985187.8036,15.6
+40241,167435.0239,582993.8134,143242.6103,15.6
+40242,126842.5692,726215.594,0,15.6
+40243,318646.3106,696846.7662,0,15.6
+40244,236403.0707,663693.9726,0,15.6
+40245,245082.5257,688885.677,0,15.6
+40246,245296.0112,685274.8815,0,15.6
+40247,245755.831,687212.7006,0,15.6
+40248,245340.6322,688718.2795,0,15.6
+40249,246183.3887,106777.0027,0,15.6
+40250,245408.5632,107054.1464,139122.4663,15.6
+40251,246467.3798,1191516.054,0,15.6
+40252,245824.3866,999883.0386,0,15.6
+40253,211496.0857,436043.6841,0,15.6
+40254,212222.337,801581.7393,0,15.6
+40255,300026.386,717404.0912,0,15.6
+40256,250870.917,716165.6345,0,15.6
+40257,233640.3138,718012.6913,0,15.6
+40258,252058.7064,719125.5844,0,15.6
+40259,247467.5717,720116.7157,135313.53,15.6
+40260,247060.4844,722400.7632,0,15.6
+40261,248202.1473,722813.6134,0,15.6
+40262,248896.1666,724341.2114,0,15.6
+40263,249797.5216,722379.946,0,15.6
+40264,250965.6302,718077.3206,0,15.6
+40265,251571.2854,722944.1277,0,15.6
+40266,252263.4135,722928.4245,0,15.6
+40267,253565.03,725336.3442,0,15.6
+40268,253981.3209,726353.1052,0,15.6
+40269,255108.4339,702615.1399,0,15.6
+40270,35780.68724,703687.0536,0,15.6
+40271,35821.30766,705376.5314,0,15.6
+40272,35961.61621,707267.7807,0,15.6
+40273,783088.3792,755197.5286,0,15.6
+40274,219428.6833,752278.1363,0,15.6
+40275,114567.5564,726720.9413,131569.9297,15.6
+40276,344957.2022,741993.3233,0,15.6
+40277,253448.7633,739581.661,127961.4788,15.6
+40278,263418.1352,741514.6292,0,15.6
+40279,265086.409,741450.5302,0,15.6
+40280,265265.524,743444.7369,874225.0366,15.6
+40281,266774.3793,115621.6551,0,15.6
+40282,266649.3986,1200100.246,0,15.6
+40283,268101.8244,663132.7497,0,15.6
+40284,268982.8207,711435.7139,0,15.6
+40285,231603.3413,769311.2513,0,15.6
+40286,233172.3189,749817.3822,0,15.6
+40287,323729.9434,750140.8878,0,15.6
+40288,280162.796,751537.3309,0,15.6
+40289,261092.3105,752027.7272,0,15.6
+40290,276405.1707,753211.1332,0,15.6
+40291,273758.4251,754219.671,0,15.6
+40292,272927.9671,755233.744,0,15.6
+40293,274064.6958,756216.1952,0,15.6
+40294,274678.6075,757928.685,0,15.6
+40295,275255.6005,757556.4284,0,15.6
+40296,276478.9092,759731.4183,119096.6493,15.6
+40297,277009.1899,760458.6063,0,15.6
+40298,277818.9691,761481.0635,0,15.6
+40299,278299.0297,762243.3827,116078.4488,15.6
+40300,279567.6193,764375.6705,0,15.6
+40301,279972.033,763510.2072,0,15.6
+40302,280828.2155,739200.0108,0,15.6
+40303,38796.9795,646126.0113,0,15.6
+40304,38842.33593,855004.3362,0,15.6
+40305,38896.33339,782275.8603,0,15.6
+40306,833457.9751,754252.1144,0,15.6
+40307,309583.6217,776255.7775,0,15.6
+40308,105454.2798,775229.2601,0,15.6
+40309,366801.5459,773410.3631,0,15.6
+40310,286368.8282,774707.332,0,15.6
+40311,286548.5111,776139.3947,0,15.6
+40312,288671.9182,125424.9598,0,15.6
+40313,289775.2629,1208799.792,0,15.6
+40314,290325.7449,766365.6716,0,15.6
+40315,290739.1734,707266.1355,0,15.6
+40316,292258.2444,813052.9324,0,15.6
+40317,252174.0535,784580.6628,112673.9169,15.6
+40318,253142.6404,784521.0769,0,15.6
+40319,344202.5423,786670.3396,109576.283,15.6
+40320,305760.9664,786650.4073,0,15.6
+40321,288334.3971,787000.3691,799891.0351,15.6
+40322,292664.1509,786323.4185,103222.1904,15.6
+40323,295631.7607,786206.3219,0,15.6
+40324,292788.3216,785838.4064,0,15.6
+40325,292321.5077,784831.6291,0,15.6
+40326,291829.1483,785407.2651,0,15.6
+40327,290908.569,783915.77,0,15.6
+40328,290903.8068,784377.4123,0,15.6
+40329,289946.7112,783689.9718,0,15.6
+40330,290140.5884,783516.3106,0,15.6
+40331,289064.7315,782418.8522,0,15.6
+40332,288504.0188,782850.0591,0,15.6
+40333,288453.2472,781481.2278,0,15.6
+40334,287608.4738,654611.6193,0,15.6
+40335,287128.6964,783774.6169,0,15.6
+40336,39520.72428,862448.6211,100345.1376,15.6
+40337,39451.19915,751697.4961,0,15.6
+40338,39451.19063,778360.0729,97578.81761,15.6
+40339,837273.053,786280.1051,0,15.6
+40340,316811.983,780362.8377,0,15.6
+40341,101071.2526,778994.4464,94940.76989,15.6
+40342,368025.5721,779152.3799,0,15.6
+40343,281593.3516,128250.6515,0,15.6
+40344,282185.1026,1212541.65,0,15.6
+40345,283494.7065,752167.285,0,15.6
+40346,282655.4957,708974.4891,0,15.6
+40347,282189.0887,806475.6165,0,15.6
+40348,281891.9902,776668.1047,0,15.6
+40349,241647.1785,776368.9448,0,15.6
+40350,243811.0871,775162.8152,0,15.6
+40351,333519.6519,775065.1857,0,15.6
+40352,290679.6258,775278.5034,0,15.6
+40353,272016.4419,774265.3389,0,15.6
+40354,281090.6455,772976.6478,0,15.6
+40355,281653.0109,774405.859,92279.11113,15.6
+40356,279090.4322,772313.1058,0,15.6
+40357,278584.8161,772247.0588,0,15.6
+40358,278032.9743,771944.4896,89963.50216,15.6
+40359,277806.5286,771887.808,0,15.6
+40360,276806.9242,770605.8856,0,15.6
+40361,276276.2834,770586.2089,0,15.6
+40362,276030.0898,769672.9499,720133.2084,15.6
+40363,275248.444,769988.1038,0,15.6
+40364,274959.236,769048.6193,0,15.6
+40365,274258.1689,667800.0392,0,15.6
+40366,273489.6898,770950.4358,0,15.6
+40367,273207.1421,770728.256,0,15.6
+40368,272591.1276,809678.1801,0,15.6
+40369,38042.44458,748961.4171,0,15.6
+40370,37995.33454,766942.9755,0,15.6
+40371,37865.17917,770437.8941,0,15.6
+40372,815889.3837,766385.6046,0,15.6
+40373,278558.6485,765296.1521,0,15.6
+40374,88020.64644,128117.8897,0,15.6
+40375,357114.9801,1212358.233,0,15.6
+40376,263269.0211,697706.419,86050.52943,15.6
+40377,267115.5148,718385.6875,0,15.6
+40378,267398.5618,787503.9604,83666.172,15.6
+40379,266804.2424,763045.3416,0,15.6
+40380,266543.6835,762776.9483,0,15.6
+40381,229694.8321,761901.1215,81482.30032,15.6
+40382,230372.6499,760342.036,0,15.6
+40383,321933.9153,761061.7723,0,15.6
+40384,277916.9923,758649.5564,0,15.6
+40385,258909.0484,758768.6487,0,15.6
+40386,274737.9729,758044.5483,0,15.6
+40387,273618.112,756986.1728,0,15.6
+40388,273360.8169,756134.3974,0,15.6
+40389,273978.1127,755792.6589,0,15.6
+40390,274923.3671,754523.6855,0,15.6
+40391,276189.4775,753521.7089,0,15.6
+40392,276282.2237,752940.574,0,15.6
+40393,277554.0894,752984.7293,0,15.6
+40394,278478.4435,750753.719,0,15.6
+40395,278908.8665,750928.9076,0,15.6
+40396,280507.7415,649523.1358,0,15.6
+40397,280835.592,781414.7922,0,15.6
+40398,281831.8131,755077.7293,0,15.6
+40399,282442.6275,703652.2498,0,15.6
+40400,283551.2024,803141.4322,0,15.6
+40401,284408.7623,729321.8437,0,15.6
+40402,39597.00505,744589.864,0,15.6
+40403,39754.2056,747991.4477,686476.7549,15.6
+40404,39822.68112,739324.3695,0,15.6
+40405,837768.8409,125748.812,0,15.6
+40406,334939.6678,1210073.837,0,15.6
+40407,97245.15391,615582.1444,0,15.6
+40408,377021.5426,729184.7035,0,15.6
+40409,289229.8304,755801.9105,0,15.6
+40410,291438.3742,739291.3772,0,15.6
+40411,293697.2784,738734.5486,0,15.6
+40412,294445.4571,737665.9237,0,15.6
+40413,254673.8696,737219.9312,0,15.6
+40414,255481.5244,735365.6888,0,15.6
+40415,347286.8205,735382.576,78879.7986,15.6
+40416,308414.7452,734833.0447,0,15.6
+40417,294535.6144,724983.9414,76689.72042,15.6
+40418,297498.5139,724559.1458,0,15.6
+40419,302639.7935,724986.7024,0,15.6
+40420,301020.0782,722579.0812,0,15.6
+40421,302066.3829,721689.919,0,15.6
+40422,302466.1149,720480.5476,0,15.6
+40423,303277.6636,719088.0634,0,15.6
+40424,304064.4547,718386.8756,0,15.6
+40425,305086.8395,715897.8928,0,15.6
+40426,305592.3417,716712.1544,0,15.6
+40427,306811.0971,615413.1401,0,15.6
+40428,307325.9745,750159.496,74582.41976,15.6
+40429,307879.3751,740038.7713,0,15.6
+40430,309024.7661,667103.9814,0,15.6
+40431,309697.348,691810.2765,72565.9043,15.6
+40432,310607.2343,684289.9204,0,15.6
+40433,311384.4735,772172.9197,0,15.6
+40434,312085.3161,692096.5989,0,15.6
+40435,42997.72962,693615.5148,0,15.6
+40436,43045.2157,131313.7215,0,15.6
+40437,786152.3326,121492.9069,0,15.6
+40438,286340.438,1206648.01,0,15.6
+40439,211474.6653,987677.1579,0,15.6
+40440,371013.5599,444852.7044,0,15.6
+40441,312844.9388,799953.5479,0,15.6
+40442,315685.6791,713640.2089,0,15.6
+40443,315330.3737,708498.7081,0,15.6
+40444,314217.5695,705296.7071,0,15.6
+40445,270556.7039,703367.9081,650593.7962,15.6
+40446,270190.5612,686351.9247,0,15.6
+40447,361207.8765,668907.7957,71193.0557,15.6
+40448,325164.2943,676352.9956,0,15.6
+40449,310627.8523,670249.4673,0,15.6
+40450,305597.394,664778.8623,0,15.6
+40451,313654.4724,661380.177,0,15.6
+40452,309243.8968,659772.3925,0,15.6
+40453,308399.0735,654220.4757,0,15.6
+40454,307872.7701,650946.3649,0,15.6
+40455,307004.4566,647027.595,0,15.6
+40456,306349.4459,645182.5814,0,15.6
+40457,306095.24,639554.1096,0,15.6
+40458,304569.6147,544726.6439,0,15.6
+40459,304915.6326,677014.6054,0,15.6
+40460,303241.8851,641304.2822,0,15.6
+40461,303001.6182,613860.2169,0,15.6
+40462,302443.0728,627498.0935,0,15.6
+40463,301848.2892,598361.5415,0,15.6
+40464,300714.5682,594064.4979,0,15.6
+40465,300238.0451,590514.0813,0,15.6
+40466,299566.3185,666096.7602,0,15.6
+40467,41636.94767,587613.5383,0,15.6
+40468,41597.21787,101067.349,69243.39508,15.6
+40469,41518.59078,118452.5094,0,15.6
+40470,851929.2024,1192649.558,0,15.6
+40471,363130.595,637691.4103,67365.23842,15.6
+40472,107309.2528,513267.5032,0,15.6
+40473,379846.295,683716.3567,0,15.6
+40474,290911.9367,567641.1844,0,15.6
+40475,294287.8307,575330.4211,0,15.6
+40476,292787.236,578223.2985,0,15.6
+40477,251803.0729,569968.1593,0,15.6
+40478,251159.6221,565138.7909,0,15.6
+40479,342507.6874,561601.3052,0,15.6
+40480,301590.2722,557369.0692,0,15.6
+40481,284319.0133,554292.7381,0,15.6
+40482,288048.7371,550338.1231,0,15.6
+40483,290916.3895,546249.5091,0,15.6
+40484,287881.5104,542052.2793,0,15.6
+40485,286700.9798,538665.8938,0,15.6
+40486,286587.8438,533492.6746,0,15.6
+40487,285164.6338,530567.5112,65454.84658,15.6
+40488,285361.8976,525850.2875,621981.5738,15.6
+40489,283971.0119,441490.4065,137468.0655,15.6
+40490,283206.2471,572856.4682,98316.54419,15.6
+40491,283146.9665,502913.4595,97506.21661,15.6
+40492,281716.9925,512514.9733,99906.24435,15.6
+40493,281655.8151,511316.03,102806.7093,15.6
+40494,280435.5164,504946.8964,98271.78908,15.6
+40495,279700.0198,499589.7416,98340.18467,15.6
+40496,279444.7355,476170.5938,97631.72287,15.6
+40497,278673.6853,474598.6939,97012.33453,15.6
+40498,277629.2052,469563.5611,96717.68136,15.6
+40499,277165.2214,528656.867,96488.3121,15.6
+40500,39322.99162,76835.69395,95781.4686,15.6
+40501,39324.35054,83448.17524,95219.83585,15.6
+40502,39243.26693,1177279.057,94741.10273,15.6
+40503,828790.9421,301604.2071,94176.03859,15.6
+40504,314174.9539,524342.1631,93678.64199,15.6
+40505,78592.87252,465327.3927,93202.33285,15.6
+40506,361518.1148,497888.9737,92722.55403,15.6
+40507,273689.4667,481583.1097,92246.01542,15.6
+40508,273335.353,481741.948,91847.05621,15.6
+40509,235939.3066,481656.1855,91393.25808,15.6
+40510,235713.9215,481792.4096,90999.10972,15.6
+40511,327349.105,482775.38,90607.23813,15.6
+40512,284484.2977,481912.2338,90221.23401,15.6
+40513,264751.7117,483221.9286,89853.4916,15.6
+40514,276090.3619,482771.7793,89483.07821,15.6
+40515,275353.7063,483453.4195,89171.61153,15.6
+40516,273699.9521,483633.9223,88818.66783,15.6
+40517,273180.6946,483491.6788,88510.66263,15.6
+40518,273677.8675,484462.6106,88201.72832,15.6
+40519,272954.6316,484151.1708,0,15.6
+40520,272873.1879,409514.8958,0,15.6
+40521,272661.9644,409940.5154,48007.55588,15.6
+40522,272411.1406,547971.6085,0,15.6
+40523,272384.3529,510390.9229,46649.57647,15.6
+40524,271632.0105,467809.6165,0,15.6
+40525,271910.3631,499819.9812,0,15.6
+40526,271811.9431,491898.5519,0,15.6
+40527,271195.5893,489055.9941,0,15.6
+40528,271505.3239,487354.9462,0,15.6
+40529,270661.0872,472460.8966,0,15.6
+40530,271049.1133,470728.2544,119932.7237,15.6
+40531,270363.4914,471537.4799,585356.9948,15.6
+40532,270299.8972,141127.3405,86317.40944,15.6
+40533,38772.90234,77524.39045,88228.00171,15.6
+40534,38824.67888,1170066.739,93405.22814,15.6
+40535,38745.89699,331905.4773,89433.08938,15.6
+40536,821768.1651,541955.1163,89437.25753,15.6
+40537,296758.4879,469438.2499,89275.45206,15.6
+40538,73862.32411,510639.3528,88930.80127,15.6
+40539,358264.3596,492935.5872,88647.21491,15.6
+40540,265308.9896,492057.3419,88335.78148,15.6
+40541,228737.7244,492713.9854,88089.33683,15.6
+40542,229860.1667,493316.3044,87801.61069,15.6
+40543,321926.4971,492569.8067,87595.88995,15.6
+40544,278058.1336,493894.9147,87348.91511,15.6
+40545,257046.301,493668.4197,87115.20644,15.6
+40546,271031.5583,494187.73,86929.29392,15.6
+40547,268624.3736,494602.8202,86706.08089,15.6
+40548,267629.4665,494272.0661,86531.73794,15.6
+40549,267501.9603,495552.7858,86337.35843,15.6
+40550,266959.6655,495560.1149,86152.37036,15.6
+40551,266904.9113,495249.0781,85976.55201,15.6
+40552,266769.8672,419641.1565,85827.44881,15.6
+40553,266581.8942,419600.4349,85669.23475,15.6
+40554,266022.3099,561382.5312,85508.98848,15.6
+40555,266266.1799,522750.6079,85349.1383,15.6
+40556,265467.188,478190.6367,85249.07782,15.6
+40557,265763.9626,512300.4348,85072.58453,15.6
+40558,265192.9144,502473.7832,84966.75067,15.6
+40559,266613.8766,502493.8536,84810.95057,15.6
+40560,265312.5233,498755.861,0,17.8
+40561,266360.1787,500243.5481,43031.33969,17.8
+40562,267008.843,480436.0786,0,17.8
+40563,267305.1933,478890.1462,0,17.8
+40564,268475.042,78157.52389,0,17.8
+40565,268737.621,144546.2051,0,17.8
+40566,40049.42926,1162821.754,0,17.8
+40567,40123.81436,326919.0084,0,17.8
+40568,40221.45734,554485.2347,471336.6183,17.8
+40569,822372.9332,465748.3846,0,17.8
+40570,299731.4869,511842.5429,0,17.8
+40571,78018.05133,491156.8101,497399.049,17.8
+40572,363206.9903,488706.3078,0,17.8
+40573,228862.0004,489101.7827,0,17.8
+40574,232533.8968,487675.2373,512538.269,17.8
+40575,326433.5171,486699.3282,574657.1467,17.8
+40576,284213.5032,486072.185,0,17.8
+40577,266552.5107,484869.3177,529607.384,17.8
+40578,276146.0516,483992.7031,0,17.8
+40579,277971.2595,482512.5712,0,17.8
+40580,276569.3483,482426.2743,541668.8441,17.8
+40581,280766.4808,480930.8419,0,17.8
+40582,278460.2491,480642.5278,140293.9531,17.8
+40583,280832.8435,478752.9059,605195.0276,17.8
+40584,280471.2171,403004.5151,52465.74996,17.8
+40585,281684.2373,402185.2812,103549.957,17.8
+40586,281906.3251,545776.7186,625309.0545,17.8
+40587,282896.4521,494597.3807,57817.22167,17.8
+40588,283097.1878,460671.1694,111052.4277,17.8
+40589,283889.9003,487345.7542,635579.6995,17.8
+40590,284288.9251,477805.8904,60098.72115,17.8
+40591,285329.0994,471222.5716,115264.185,17.8
+40592,285740.5196,473206.4693,647572.2132,17.8
+40593,285954.6187,471952.9963,61215.62063,17.8
+40594,286994.2701,469962.1135,119756.9031,17.8
+40595,287404.1716,451981.8751,658604.7129,17.8
+40596,287846.9163,75295.22631,62368.14493,17.8
+40597,288915.5956,74971.92796,123999.0173,17.8
+40598,288953.1641,1204396.628,668965.1166,17.8
+40599,43982.86176,273778.6149,63419.69627,17.8
+40600,44084.54349,465034.7415,128084.167,17.8
+40601,44153.46733,477180.9013,678633.7962,17.8
+40602,847106.5659,471254.1173,64473.92187,17.8
+40603,361588.2518,462667.4669,131874.7432,17.8
+40604,90175.95694,460971.963,687705.6283,17.8
+40605,340503.3407,460755.9398,65434.97471,17.8
+40606,244598.2796,459101.8066,135492.1444,17.8
+40607,343377.8661,458666.153,696190.4441,17.8
+40608,303327.8225,457247.5671,66342.94648,17.8
+40609,289899.0439,456570.7041,138877.3716,17.8
+40610,293730.5292,455580.4107,704126.2312,17.8
+40611,301823.9227,454255.5688,67206.64487,17.8
+40612,297441.7836,453324.7969,0,17.8
+40613,298906.1017,452941.3223,1489907.955,17.8
+40614,298892.2334,451726.7998,0,17.8
+40615,300250.6481,450800.0349,0,17.8
+40616,299898.0445,377038.6973,646834.7257,17.8
+40617,301071.9094,376408.478,0,17.8
+40618,301849.9101,522691.8028,0,17.8
+40619,301425.2213,457442.6998,654174.5304,17.8
+40620,303030.6518,437539.9178,0,20
+40621,302252.8697,460284.9464,0,20
+40622,302270.4914,444879.8067,661202.0685,20
+40623,302441.178,450523.8434,0,20
+40624,301677.9496,449235.7239,211874.1958,20
+40625,302159.6635,449243.4584,729533.4838,20
+40626,301633.8842,450073.7206,64703.12983,20
+40627,301611.7285,450413.3236,154959.3872,20
+40628,301074.6747,73413.16017,745464.1304,20
+40629,301747.1988,73239.9647,70867.04801,20
+40630,300997.921,1121261.417,157962.2512,20
+40631,300976.1513,262550.0251,746046.4156,20
+40632,46560.75819,482567.0376,72392.41074,20
+40633,46705.43088,463630.462,159606.3767,20
+40634,46694.2554,444126.5324,751350.4965,20
+40635,859115.426,463544.5606,73255.53294,20
+40636,380538.3969,453461.1072,161731.1626,20
+40637,62963.24044,454722.6928,755579.5069,20
+40638,332307.6339,455668.0344,73881.10921,20
+40639,348065.3918,455904.0537,163516.1984,20
+40640,306022.5206,456275.6118,759790.7929,20
+40641,298197.1166,457080.1543,74413.74051,20
+40642,297994.9962,457076.0418,165235.185,20
+40643,302209.2569,457886.9296,763827.9753,20
+40644,300073.133,458375.8592,74917.98258,20
+40645,299833.9754,458557.5037,166868.2948,20
+40646,299329.8129,458940.4335,767550.3702,20
+40647,299139.4287,459604.7664,75373.8811,20
+40648,299054.674,386030.0491,168487.1386,20
+40649,299059.0759,386174.3474,771037.1344,20
+40650,298403.2604,536644.4915,75896.44854,20
+40651,299104.3329,473257.4682,1124064.126,20
+40652,298141.2264,451631.0037,762012.6653,20
+40653,298452.4263,476435.1839,75122.8517,20
+40654,297876.3358,462849.9768,0,20
+40655,298218.7495,465699.0272,693741.6325,20
+40656,296971.4873,465647.6946,0,20
+40657,297993.6907,465065.4155,0,20
+40658,297282.8897,466325.3222,699197.4601,20
+40659,297093.4043,466381.6342,0,20
+40660,297300.2068,92974.155,0,20
+40661,296491.8087,92943.95055,704452.7106,20
+40662,296899.9852,1142255.383,0,20
+40663,296539.8305,272901.6797,240973.3591,20
+40664,296402.4691,459490.6547,776045.4026,20
+40665,47302.91764,520656.1398,71548.63079,20
+40666,47262.22952,463337.0492,173847.5548,20
+40667,47383.5277,461211.164,792117.0168,20
+40668,851758.3085,478948.4482,76779.98344,20
+40669,321758.2931,468956.6169,177540.1704,20
+40670,45782.2312,471622.6655,787947.7007,20
+40671,429943.8724,471981.5452,78878.05059,20
+40672,300862.9279,472339.5124,178111.5571,20
+40673,293524.3428,472852.7869,790052.3998,20
+40674,292260.826,472812.5131,79159.15623,20
+40675,297995.5093,473878.3249,178820.0485,20
+40676,295048.1123,474060.395,792120.7691,20
+40677,294509.2434,474524.8519,79435.30007,20
+40678,294619.0348,474574.5685,179675.9262,20
+40679,294657.3522,475503.6212,794129.1931,20
+40680,293838.8455,399056.8943,79712.46379,21
+40681,291422.4761,397859.9161,180268.9742,21
+40682,290695.9043,551035.2617,795716.3071,21
+40683,291330.3535,491798.7693,79531.08145,21
+40684,290350.9461,465600.2557,181002.9536,21
+40685,290195.0228,493768.5644,797413.6163,21
+40686,290270.7897,484055.4158,79516.63331,21
+40687,289851.5029,483266.4806,181649.8076,21
+40688,290308.1668,486170.4116,799025.0776,21
+40689,289651.8437,486526.8294,79511.41991,21
+40690,289468.7439,488424.923,182279.2632,21
+40691,289356.4037,489312.5327,800605.9878,21
+40692,289522.7833,96543.74121,1091358.491,21
+40693,288743.2443,96780.40757,0,21
+40694,288814.1777,1179130.895,713135.4067,21
+40695,289085.3596,312370.9343,0,21
+40696,288047.1221,527056.5785,0,21
+40697,288421.7265,459801.8416,718088.8791,21
+40698,47019.42261,567079.2377,0,21
+40699,46858.34438,484236.6086,257142.2622,21
+40700,47018.48983,494818.081,786497.8829,21
+40701,795169.8783,511804.2534,71832.71335,21
+40702,300441.0565,503624.1254,186040.7349,21
+40703,130558.8712,507232.3233,801012.3376,21
+40704,379390.6245,507948.7391,78327.97172,21
+40705,285859.8936,509530.314,183039.2632,21
+40706,282724.4124,511381.0926,800673.7148,21
+40707,289954.1503,512302.2944,78857.28679,21
+40708,287055.8728,514319.6124,183249.5703,21
+40709,286766.2179,514909.1615,802132.6578,21
+40710,286355.9621,516817.6388,78755.19526,21
+40711,286960.8295,518273.3794,183592.48,21
+40712,285955.4325,436882.261,803626.9705,21
+40713,286545.4926,583519.2158,78779.1,21
+40714,285528.4074,507697.7138,184051.6315,21
+40715,285573.2811,528193.7914,805074.4281,21
+40716,285826.023,530367.2816,78651.88352,21
+40717,285146.5366,526421.0774,184526.5506,21
+40718,284857.6619,528835.8998,806428.3233,21
+40719,285438.0761,530561.4886,78555.02373,21
+40720,284175.3437,530878.0163,184978.5946,21
+40721,284707.7085,532647.0341,807657.8444,21
+40722,284226.3332,533899.0658,78380.87497,21
+40723,284198.073,535453.9596,185348.8624,21
+40724,284062.1112,103601.5615,808853.6185,21
+40725,283327.1361,103815.5196,78252.60414,21
+40726,283979.4674,1188215.198,185792.0696,21
+40727,283382.9125,451275.9831,809980.421,21
+40728,282779.8069,553587.2863,78210.40206,21
+40729,283190.4564,532706.5276,0,21
+40730,283085.6542,524053.3143,736975.474,21
+40731,47337.19387,608197.3017,0,21
+40732,47295.44338,529534.4856,0,21
+40733,0,543362.5935,741084.4586,21
+40734,787958.3325,557843.0637,191434.2123,21
+40735,367335.9764,551294.7763,1212373.949,21
+40736,91675.7982,554262.5685,792004.7691,21
+40737,364785.7427,554890.8279,85594.51527,21
+40738,278876.0113,556647.4999,184406.5085,21
+40739,281840.5331,558535.816,804022.2822,21
+40740,281623.5077,560029.8296,77139.6036,21
+40741,281419.544,561268.0192,184243.8007,21
+40742,281729.7578,560103.9288,805832.3077,21
+40743,283238.9617,474736.5432,77192.68791,21
+40744,284366.9768,620554.5519,184558.5917,21
+40745,284777.3386,555129.855,807246.2933,21
+40746,285957.9242,562810.2596,77253.98739,21
+40747,286814.3765,568739.9354,184994.9523,21
+40748,287841.6992,568084.2152,808609.4468,21
+40749,288729.8847,567548.3277,77339.75109,21
+40750,289828.0095,567544.3143,185490.1802,21
+40751,290255.8573,567437.7311,809875.8225,21
+40752,291911.3444,569245.9549,77461.65969,21
+40753,292316.6356,568929.0585,185992.4466,21
+40754,293397.5638,570080.5768,811039.9544,21
+40755,294357.8066,570775.1296,77563.17557,21
+40756,295224.0025,109522.2385,186488.8611,21
+40757,296235.8513,109502.9869,812137.773,21
+40758,297130.8277,1193772.201,77722.26656,21
+40759,298168.4147,552462.2825,186891.8973,21
+40760,298848.1027,551038.8203,813193.4269,21
+40761,299745.4474,625576.602,77813.82705,21
+40762,301226.6701,524082.136,187296.5942,21
+40763,301401.5017,572698.9751,814199.4206,21
+40764,50615.04736,636093.0004,0,21
+40765,0,560579.9368,0,21
+40766,0,571743.7889,740698.0322,21
+40767,908553.1407,588581.6289,0,21
+40768,390343.5072,579533.9553,298750.2362,21
+40769,115684.8428,581996.1181,799033.2868,21
+40770,388599.9209,582920.1572,66186.48841,21
+40771,310583.143,583604.3277,201892.385,21
+40772,310589.4209,583696.9111,816834.7161,21
+40773,311308.9314,585383.4997,78526.28829,21
+40774,312521.3955,494795.3593,190227.9261,21
+40775,312864.8892,643525.5085,818876.4276,21
+40776,314029.6837,582221.5186,1123250.353,21
+40777,314830.3887,583344.3314,183304.1037,21
+40778,315585.2065,594016.9382,803452.0395,21
+40779,315329.3776,589865.1383,77145.04057,21
+40780,315804.2399,592122.6758,183868.9125,21
+40781,316534.1555,591742.6196,805006.2855,21
+40782,317372.1468,592448.6787,77021.10715,21
+40783,317765.7457,593571.4353,184137.7804,21
+40784,318645.5695,593192.3709,806202.9777,21
+40785,319411.7321,593447.766,77100.75221,21
+40786,319878.1494,595595.7733,182320.5561,21
+40787,320557.2772,595170.5064,805003.093,21
+40788,318895.5636,113687.4348,74258.74277,21
+40789,318917.2442,113873.9247,182199.417,21
+40790,319726.7026,1197949.674,805551.1164,21
+40791,319655.2858,624559.3662,73814.08708,21
+40792,320086.1371,537991.3743,182110.6187,21
+40793,320861.9953,695665.0326,806070.8855,21
+40794,320846.6897,557513.9635,73360.01251,21
+40795,321437.9247,585794.3095,181986.1088,21
+40796,321736.7857,585849.1235,806505.5791,21
+40797,0,663650.9191,72901.41892,21
+40798,0,587708.4371,0,21
+40799,837294.6993,595384.9543,738332.5567,21
+40800,313434.3722,613992.9616,0,21
+40801,218510.8208,604655.2493,0,21
+40802,371169.3772,603626.043,742400.0999,21
+40803,321082.1482,603073.4761,135636.4801,21
+40804,320389.4392,602114.2055,175020.6621,21
+40805,318342.8432,508522.536,809308.2325,21
+40806,317808.0518,656755.2052,74665.93472,21
+40807,316339.4266,595772.4355,182583.5815,21
+40808,314887.0774,592569.9036,811638.5953,21
+40809,314266.1943,601769.4723,68549.39557,21
+40810,312352.8283,597459.1089,180841.3959,21
+40811,312182.8811,595791.8513,810503.4121,21
+40812,310481.2937,595141.8559,66728.65637,21
+40813,309948.6237,594318.065,179160.2998,21
+40814,308437.9433,592613.442,809287.6275,21
+40815,307645.4168,591967.7867,65059.96223,21
+40816,306935.073,589617.2712,1218787.952,21
+40817,305474.7986,589806.7523,792367.0329,21
+40818,304363.0067,587318.9815,62303.98064,21
+40819,303579.1518,587540.6505,170162.4528,21
+40820,302336.1209,112888.8044,792510.4691,21
+40821,301769.7985,112549.9507,60952.24831,21
+40822,299754.7276,1196604.918,169298.0319,21
+40823,299581.8421,582330.1786,792581.0691,21
+40824,298193.7521,543670.6197,59606.52481,21
+40825,297445.5731,667833.9517,168415.18,21
+40826,296111.5473,541664.323,792511.2097,21
+40827,294958.6665,576389.6859,58328.83865,21
+40828,294126.5789,558292.641,167411.4936,21
+40829,0,556488.6865,792458.8434,21
+40830,0,633353.4628,56979.66543,21
+40831,101916.637,557359.6128,166413.8706,21
+40832,862031.2207,565756.5564,792329.7322,21
+40833,343839.3432,580280.9759,0,21
+40834,75687.3026,571526.139,0,21
+40835,394447.6059,570349.2391,741107.3512,21
+40836,281023.4281,480850.1543,0,21
+40837,287890.1614,630237.5461,0,21
+40838,288075.6784,558785.2561,858172.7438,21
+40839,286919.7867,565726.5682,45367.52415,21
+40840,286166.6023,571345.3947,163217.0376,21
+40841,284910.8533,567480.1307,804264.1413,21
+40842,284916.9709,565671.2491,52541.66225,21
+40843,282836.1856,562066.4967,166195.856,21
+40844,283001.493,562942.901,798407.6799,21
+40845,282092.1403,561233.6584,51863.93819,21
+40846,280550.1709,559548.222,164597.0082,21
+40847,280469.1506,558536.8103,797767.9643,21
+40848,279250.7819,558073.7588,50589.08017,21
+40849,278240.7137,557101.7841,163300.9001,21
+40850,278237.3936,554719.166,797097.3901,21
+40851,276528.4991,555383.2114,49401.04262,21
+40852,276570.1533,108047.4448,162435.6606,21
+40853,274974.1673,107868.1983,796529.9409,21
+40854,274665.742,1191779.749,48139.09304,21
+40855,273672.1736,482394.9538,1200947.873,21
+40856,272937.5364,564953.7169,780292.595,21
+40857,272140.4512,570304.9634,46182.09877,21
+40858,271545.0212,539664.6306,155045.5146,21
+40859,270278.967,556681.4615,780654.4613,21
+40860,269881.7718,528292.2539,45043.50817,21
+40861,223610.4612,527094.2429,154487.9397,21
+40862,0,527061.2553,780642.4115,21
+40863,99939.92614,602409.0132,43423.59698,21
+40864,55045.5046,529730.0735,153698.8861,21
+40865,804884.8137,542514.7639,780435.1367,21
+40866,295793.1253,556141.698,41842.20614,21
+40867,96926.94891,462425.3704,152776.222,21
+40868,363200.9247,614691.1179,739303.7788,21
+40869,276841.51,539101.5752,0,21
+40870,280653.055,554527.5887,0,21
+40871,283361.7901,557402.0845,744058.9603,21
+40872,284945.2399,557356.0789,0,21
+40873,285534.675,552832.7424,0,21
+40874,287107.4751,556429.3918,840918.4498,21
+40875,288081.4245,555939.2701,30322.13475,21
+40876,289277.8971,556275.172,147149.5667,21
+40877,290363.2603,557425.3719,788194.3065,21
+40878,291266.7507,557405.8653,37027.23784,21
+40879,292802.523,558244.8814,150781.9432,21
+40880,293803.6466,559173.2898,784492.4693,21
+40881,294913.0858,559296.012,34326.36329,21
+40882,296113.6227,560292.6787,149990.5594,21
+40883,297048.4579,560836.9245,783415.866,21
+40884,298496.5717,108869.0928,32646.79984,21
+40885,299549.713,109352.7707,148709.3107,21
+40886,300307.2544,1193514.572,782350.2997,21
+40887,302138.7177,514771.2972,30979.59459,21
+40888,302600.3006,562732.9168,147468.6872,21
+40889,304292.1308,609436.5828,262555.6167,21
+40890,304918.0869,547488.6073,222904.5929,21
+40891,305999.3456,579721.5696,152334.3554,21
+40892,306335.4775,568300.801,1296526.481,21
+40893,255115.5412,548344.1559,167339.8562,21
+40894,255686.6244,547668.0054,204598.2293,21
+40895,98726.81981,549556.9068,191797.1769,21
+40896,62382.41637,626824.4588,186713.3008,21
+40897,48960.37117,552693.0771,181888.8606,21
+40898,860306.9642,474109.5342,177197.9047,21
+40899,377265.5988,642003.8079,172620.9901,21
+40900,139700.6591,561989.7731,168248.1563,21
+40901,380846.7732,573219.2815,163901.8346,21
+40902,310728.6654,579171.0729,159631.0278,21
+40903,309969.9104,577659.4014,157164.562,21
+40904,309252.4542,577756.0434,0,21
+40905,308830.4772,576133.2316,0,21
+40906,309452.1214,577666.9145,0,21
+40907,309329.1328,577926.3754,619375.4006,21
+40908,309391.9814,579130.4119,0,21
+40909,309619.394,579240.0159,0,21
+40910,309787.165,579953.5992,648198.4768,21
+40911,309736.3298,580740.7962,0,21
+40912,309641.9584,580958.9059,0,21
+40913,310018.1319,582197.6141,0,21
+40914,310522.4442,582757.6552,0,21
+40915,309798.7978,583070.67,0,21
+40916,310720.9584,112830.0351,0,21
+40917,310033.7026,112926.7463,234086.535,21
+40918,310790.4678,1197367.261,11816.2398,21
+40919,310299.2694,580571.8571,12705.56788,21
+40920,310577.1943,550274.1093,23641.15548,21
+40921,309472.3538,667957.5328,162984.6967,21
+40922,308301.4365,541997.0588,170195.5347,21
+40923,307018.2934,596870.5285,156081.3956,21
+40924,305000.8811,576664.3664,11315.13646,21
+40925,252313.5954,575348.3864,12649.09845,21
+40926,251804.1901,552476.5836,186332.0839,21
+40927,347683.7548,549882.5538,166122.9684,21
+40928,61589.73307,548977.6434,156127.2126,21
+40929,45544.00499,534617.0037,746473.5382,21
+40930,768623.4507,610887.175,10704.14553,21
+40931,214673.8822,545033.6636,8858.347622,21
+40932,217067.4004,570174.0744,155639.0195,21
+40933,343106.5496,564733.1417,144612.8829,21
+40934,286943.849,561310.372,7846.865663,21
+40935,290650.0234,557063.8772,9000.489518,21
+40936,289426.8418,555900.7172,7485.737992,21
+40937,288172.0542,553745.8541,143815.8851,21
+40938,286328.4129,552316.473,104432.5296,21
+40939,285615.02,550256.3593,112934.4679,21
+40940,283887.7385,548218.8635,106613.7362,21
+40941,282520.2984,546461.4703,103009.3716,21
+40942,281445.3149,544839.221,100041.645,21
+40943,280003.345,542421.1769,97284.77946,21
+40944,277937.1481,541520.7147,4783.165564,21
+40945,277586.8459,538948.1739,4535.906355,21
+40946,275610.0566,537428.6975,4248.961608,21
+40947,274379.2561,535786.8533,0,21
+40948,273194.4599,105121.7649,0,21
+40949,271184.523,104612.3683,0,21
+40950,270368.5985,1188682.898,0,21
+40951,268957.5874,419356.9366,0,21
+40952,268464.0008,576236.799,0,21
+40953,267442.6086,508096.6846,0,21
+40954,266138.8626,537518.055,0,21
+40955,265995.5837,525718.7562,0,21
+40956,264695.5866,521354.0893,0,21
+40957,217692.8932,518219.7209,0,21
+40958,217963.7214,497690.793,0,21
+40959,309470.1756,475731.4509,0,21
+40960,45500.02664,392373.1175,0,21
+40961,46549.26217,390494.4849,0,21
+40962,635883.6766,556249.7055,0,21
+40963,197465.4884,534348.6742,0,21
+40964,198123.0883,454203.454,0,21
+40965,295240.4801,482512.0716,0,21
+40966,253783.175,486238.7707,648437.4569,21
+40967,255810.5928,470030.4302,0,21
+40968,255342.3888,471440.2315,0,21
+40969,254474.6566,468336.2477,0,21
+40970,253463.6025,465267.5804,0,21
+40971,252736.7599,462437.608,0,21
+40972,252274.9049,460348.6909,0,21
+40973,250776.8353,457366.0259,0,21
+40974,250160.9121,454781.516,0,21
+40975,249730.0392,452822.1656,0,21
+40976,248498.254,450136.564,0,21
+40977,247906.5759,447614.1925,0,21
+40978,246990.1103,444688.142,0,21
+40979,246274.1524,443382.2771,0,21
+40980,245413.1755,88845.47227,0,21
+40981,244098.5499,88502.01543,0,21
+40982,242686.3111,1081659.076,0,21
+40983,241253.9794,277790.7401,0,21
+40984,240409.7821,440255.3947,0,21
+40985,238406.6968,454264.8085,0,21
+40986,237429.2593,450836.8611,0,21
+40987,236188.6948,443505.6856,0,21
+40988,234705.8373,442781.3813,0,21
+40989,192159.1035,444040.8567,0,21
+40990,190023.268,444169.8693,0,21
+40991,279070.1463,444270.2984,0,21
+40992,35535.85784,370335.5628,0,21
+40993,41556.14318,356992.4514,0,21
+40994,39944.48834,522227.0338,0,21
+40995,643046.6297,425279.1429,0,21
+40996,217749.4718,430337.9705,0,21
+40997,98867.89739,490542.7327,0,21
+40998,288265.9276,435927.5219,0,21
+40999,214226.5602,444325.6984,0,21
+41000,218836.0618,453306.6605,0,21
+41001,218401.7297,448380.3661,0,21
+41002,216441.5569,449204.4394,0,21
+41003,215177.5316,449218.6113,0,21
+41004,213637.9549,449943.3931,650896.9493,21
+41005,212598.0308,450038.5914,0,21
+41006,211545.167,449814.605,0,21
+41007,211284.5295,451150.3734,0,21
+41008,210349.046,450792.2593,0,21
+41009,209660.5348,451907.0451,0,21
+41010,209134.4854,451635.3541,0,21
+41011,208505.2439,453613.4798,0,21
+41012,207497.9523,88366.75593,0,21
+41013,207551.3558,88437.10233,0,21
+41014,205881.4282,1096823.274,0,21
+41015,206211.7251,277882.3358,0,21
+41016,205070.7568,523211.0992,0,21
+41017,204393.6573,435113.0721,0,21
+41018,204001.5605,478945.0135,0,21
+41019,203422.4553,462300.9673,0,21
+41020,202554.2271,463162.2545,0,21
+41021,165165.4334,463639.032,0,21
+41022,165165.537,465086.3515,0,21
+41023,245549.304,466369.8358,0,21
+41024,189457.5459,390689.3176,0,21
+41025,35705.50895,392402.7506,0,21
+41026,36959.40789,555971.1257,0,21
+41027,36467.27315,455070.965,0,21
+41028,581489.1739,450913.6091,0,21
+41029,196829.4714,470517.8993,0,21
+41030,70480.46558,465038.9436,0,21
+41031,254215.6401,507594.3086,0,21
+41032,194725.4782,464384.7908,0,21
+41033,193562.5512,476245.256,0,21
+41034,194271.417,482187.0126,0,21
+41035,194618.9798,479812.2796,0,21
+41036,193724.4963,480704.0652,0,21
+41037,193690.1947,481836.7234,0,21
+41038,193393.5345,483288.4654,0,21
+41039,192416.9341,483945.9625,0,21
+41040,191795.3913,485049.5543,0,21
+41041,192461.2386,484362.0634,0,21
+41042,191758.1524,483064.01,653142.7873,21
+41043,192518.5522,482762.316,0,21
+41044,192540.4469,91877.4912,0,21
+41045,192120.8274,91531.39681,0,21
+41046,192721.257,1134374.2,0,21
+41047,192615.6218,310506.9516,0,21
+41048,192711.4651,545211.582,0,21
+41049,193076.997,462674.6005,0,21
+41050,193172.6222,486964.6903,0,21
+41051,193040.3636,480631.8691,0,21
+41052,193250.1403,474913.6724,0,21
+41053,159254.9163,475078.58,0,21
+41054,158814.228,473593.6767,0,21
+41055,238948.2308,473454.0398,0,21
+41056,180236.6123,398007.4312,0,21
+41057,192793.7083,398829.3651,0,21
+41058,36640.44021,558683.4608,0,21
+41059,34776.59489,474198.3537,0,21
+41060,34556.49788,464117.3663,0,21
+41061,571700.0525,469422.7302,0,21
+41062,180572.314,459988.679,0,21
+41063,74150.94943,454230.9191,0,21
+41064,259494.732,457395.0645,0,21
+41065,189615.8106,505616.0358,0,21
+41066,195247.9747,455179.3423,0,21
+41067,195593.1116,461213.1745,0,21
+41068,196437.6911,471742.2347,0,21
+41069,196065.8554,464384.534,0,21
+41070,196210.6542,464822.5574,0,21
+41071,196128.9707,463349.2122,0,21
+41072,196973.5116,463310.7252,0,21
+41073,196937.1687,462006.4087,0,21
+41074,197300.97,461530.5973,0,21
+41075,197817.7708,460272.5806,0,21
+41076,200391.9128,88491.68574,0,21
+41077,203090.3881,88228.15992,0,21
+41078,202915.0564,1121176.163,0,21
+41079,204229.319,287220.5426,0,21
+41080,205453.6479,491711.3223,655192.8661,21
+41081,206808.6285,448345.8988,0,21
+41082,209393.9032,470619.3673,0,21
+41083,211130.7682,454964.0306,0,21
+41084,212579.0406,455234.4033,0,21
+41085,177943.4258,453277.6739,0,21
+41086,178773.1514,453121.2378,0,21
+41087,266820.8322,452330.5839,0,21
+41088,203450.5659,378906.124,0,21
+41089,214859.7581,378289.9573,0,21
+41090,224735.5419,537618.7135,0,21
+41091,36256.24043,446339.9956,0,21
+41092,36697.9632,444797.0794,0,21
+41093,36936.92348,460313.4672,0,21
+41094,645231.7079,445396.0376,0,21
+41095,215191.5805,434621.3825,0,21
+41096,100206.5106,433503.8877,0,21
+41097,291757.9926,431170.6024,0,21
+41098,230614.1653,431435.095,0,21
+41099,231184.7687,481751.6225,0,21
+41100,234995.4113,432437.8835,0,21
+41101,236554.2481,435710.0137,0,21
+41102,238827.7949,452494.1209,0,21
+41103,240539.2539,445499.7604,0,21
+41104,242826.2998,447906.0553,0,21
+41105,244427.7454,450186.8884,0,21
+41106,246438.3418,449826.8884,0,21
+41107,248717.8331,451853.0513,0,21
+41108,250571.5774,86855.46133,0,21
+41109,252338.5656,86756.18452,0,21
+41110,254527.8186,1116756.269,0,21
+41111,256329.7134,284957.8022,0,21
+41112,258819.3466,483731.3714,0,21
+41113,260279.4412,456587.0218,0,21
+41114,262843.5302,473726.8037,0,21
+41115,264182.5749,462624.0505,0,21
+41116,266810.181,463643.2841,0,21
+41117,227472.7409,464851.9461,0,21
+41118,229725.4422,465686.7716,657060.6597,21
+41119,321341.2127,466980.9656,0,21
+41120,268687.5301,395189.6674,0,21
+41121,274160.0294,395893.1829,0,21
+41122,279589.4145,555049.6527,0,21
+41123,282239.7844,474736.0059,0,21
+41124,42423.47741,465404.0779,0,21
+41125,42881.48724,487031.9889,0,21
+41126,738943.0734,477645.2178,0,21
+41127,200634.9995,477047.4792,0,21
+41128,229039.726,479981.4772,0,21
+41129,338034.2584,465163.4508,0,21
+41130,292547.8938,466017.611,0,21
+41131,298299.8359,466673.2363,0,21
+41132,299328.8647,468432.1248,0,21
+41133,300826.9788,529715.2993,0,21
+41134,301679.0059,471700.3163,0,21
+41135,303142.5419,479053.0601,0,21
+41136,304336.644,496720.07,0,21
+41137,305437.7729,488390.9915,0,21
+41138,305962.5518,491859.0939,0,21
+41139,307812.5167,493033.5654,0,21
+41140,308159.751,92823.69907,0,21
+41141,307890.8897,92908.68624,0,21
+41142,308813.4716,1177422.166,0,21
+41143,309307.9224,324223.9198,0,21
+41144,310866.0922,567141.7647,0,21
+41145,311596.4635,482226.699,0,21
+41146,312902.6488,515763.6495,0,21
+41147,313285.9167,507423.5995,0,21
+41148,314292.7592,505956.6094,0,21
+41149,269360.4922,506029.6327,0,21
+41150,269559.9255,509079.3095,0,21
+41151,360589.212,509224.0092,0,21
+41152,325078.3843,432278.7491,0,21
+41153,318866.2958,434710.1753,0,21
+41154,316846.7563,593415.2033,0,21
+41155,323674.5172,528066.7402,0,21
+41156,47579.00367,500595.697,658753.4147,21
+41157,47708.76037,530828.214,0,21
+41158,822334.9809,523780.218,0,21
+41159,243896.2263,521068.3929,0,21
+41160,268944.688,522668.0683,0,21
+41161,358900.8191,523649.1473,0,21
+41162,323208.1837,523964.8846,0,21
+41163,322643.521,506997.0884,0,21
+41164,321049.6095,508769.0786,0,21
+41165,320737.2242,508211.6521,0,21
+41166,319130.0864,571541.1415,0,21
+41167,318639.7638,511348.205,0,21
+41168,316958.8551,521668.8648,0,21
+41169,316349.453,536441.0669,0,21
+41170,314886.1002,528510.2322,0,21
+41171,314295.4005,531067.0076,0,21
+41172,313073.5492,99184.26344,0,21
+41173,311351.1496,99106.59967,0,21
+41174,311065.9901,1183631.387,0,21
+41175,309548.6828,420287.5115,0,21
+41176,308342.0057,574402.4083,0,21
+41177,307451.6001,560656.3543,0,21
+41178,306030.1357,523490.0601,0,21
+41179,304876.3174,550243.837,0,21
+41180,303803.2134,539401.2514,0,21
+41181,256775.4792,540680.5652,0,21
+41182,255400.0671,540825.7354,0,21
+41183,344496.7099,542226.4613,0,21
+41184,306357.0504,460408.1666,0,21
+41185,294697.3876,608348.1705,0,21
+41186,295157.7317,528293.5489,0,21
+41187,297834.9606,549356.3953,0,21
+41188,45422.34432,550796.7714,0,21
+41189,45240.73412,548970.4847,0,21
+41190,763869.5415,547034.0507,0,21
+41191,201238.3647,549873.4319,0,21
+41192,213594.3659,550079.7261,0,21
+41193,340408.2871,550634.8531,0,21
+41194,283415.5773,551568.9811,660294.1474,21
+41195,288046.9972,552219.0922,0,21
+41196,287537.2766,534091.6901,0,21
+41197,286708.382,535214.8584,0,21
+41198,286870.0901,535604.8215,0,21
+41199,284999.1895,604529.4461,0,21
+41200,285675.477,538060.2387,0,21
+41201,283755.3226,551040.0221,0,21
+41202,284166.738,564175.4995,0,21
+41203,283156.4603,556900.1241,0,21
+41204,282702.1365,103692.9022,0,21
+41205,282042.6782,103841.2455,0,21
+41206,281531.7154,1188244.767,0,21
+41207,280846.8531,505300.2377,0,21
+41208,280377.8046,558347.0903,0,21
+41209,279886.2389,631882.7694,0,21
+41210,279211.9547,531242.9237,0,21
+41211,279011.3175,582619.4404,0,21
+41212,277784.9118,566227.1312,0,21
+41213,234474.5096,567754.1725,0,21
+41214,234120.7569,567835.4316,0,21
+41215,323463.691,483007.9325,0,21
+41216,279122.0835,633187.3424,0,21
+41217,269423.5789,557173.6033,0,21
+41218,276526.5294,572323.7482,0,21
+41219,275979.0481,576532.143,0,21
+41220,43202.86908,575394.7048,0,21
+41221,43145.85157,572700.0047,0,21
+41222,43201.88131,571534.1222,0,21
+41223,827281.1429,571680.078,0,21
+41224,232039.0331,570883,0,21
+41225,147489.4911,569565.6594,0,21
+41226,345439.3027,569429.5492,0,21
+41227,269332.5229,567839.6964,0,21
+41228,273864.9149,568979.4205,0,21
+41229,274658.1463,547381.1891,0,21
+41230,274240.5063,546856.0473,0,21
+41231,274300.2469,546947.8411,0,21
+41232,274447.576,617049.9789,661698.1233,21
+41233,273843.6897,546371.3547,0,21
+41234,274286.8711,558100.3176,0,21
+41235,273863.9984,570089.9988,0,21
+41236,274077.107,103864.5198,0,21
+41237,274010.2448,105087.8898,0,21
+41238,273849.6022,1189185.531,0,21
+41239,274246.4342,508016.8946,0,21
+41240,273611.9332,555861.858,0,21
+41241,274054.2782,623722.5055,0,21
+41242,273974.6168,530212.3122,0,21
+41243,273867.512,575618.4882,0,21
+41244,273840.126,560352.9833,0,21
+41245,230871.0954,558865.557,0,21
+41246,230871.1108,473788.8771,0,21
+41247,320289.4096,623269.8032,0,21
+41248,277719.9969,542233.701,0,21
+41249,265739.637,559919.9665,0,21
+41250,276141.072,560963.681,0,21
+41251,274891.5616,556444.9609,0,21
+41252,273443.0772,553622.4857,0,21
+41253,42891.07156,554783.2144,0,21
+41254,43045.30695,553216.0374,0,21
+41255,42910.99452,552539.7916,0,21
+41256,826980.2774,551510.0528,0,21
+41257,253167.0552,550812.8968,0,21
+41258,120866.9466,550212.6671,0,21
+41259,352841.7391,549355.7414,0,21
+41260,266426.8546,548557.3682,0,21
+41261,272205.451,547806.9828,0,21
+41262,272599.5477,528154.7519,0,21
+41263,272371.6591,526870.196,0,21
+41264,271874.5466,526899.3116,0,21
+41265,271831.2482,595394.6243,0,21
+41266,271638.9534,525604.2893,0,21
+41267,271472.9707,536900.4262,0,21
+41268,271324.0486,108966.4332,0,21
+41269,270931.603,101333.6782,662975.1104,21
+41270,270668.8745,1186474.878,0,21
+41271,270499.9652,444890.7231,0,21
+41272,270646.2973,570049.0985,0,21
+41273,269680.9666,557226.3171,0,21
+41274,270424.017,531028.0741,0,21
+41275,269426.3165,548677.0935,0,21
+41276,269725.9297,537831.1623,0,21
+41277,226336.9055,454084.6287,0,21
+41278,226695.6193,604367.2589,0,21
+41279,314747.6196,517192.6299,0,21
+41280,273605.7689,540944.2724,0,21
+41281,258358.2344,538918.3099,0,21
+41282,271974.3894,531802.1226,0,21
+41283,269248.123,535423.6359,0,21
+41284,268480.0908,532747.0262,0,21
+41285,268488.1725,533383.2007,0,21
+41286,42885.97309,532899.6434,0,21
+41287,42849.61743,532662.8132,0,21
+41288,42866.06942,531432.8198,0,21
+41289,821788.9278,531214.6917,0,21
+41290,255661.3335,531653.1537,0,21
+41291,107652.1061,530516.1189,0,21
+41292,340332.356,530858.1068,0,21
+41293,268896.8024,529556.4196,0,21
+41294,265188.3945,530343.0452,0,21
+41295,268519.6039,510210.2366,0,21
+41296,267818.8745,510591.6523,0,21
+41297,267872.5843,509841.1312,0,21
+41298,268147.8495,577982.0817,0,21
+41299,267644.7966,509729.776,0,21
+41300,267920.9569,93743.36063,0,21
+41301,267116.0224,107375.8142,0,21
+41302,268009.1494,1183464.098,0,21
+41303,266939.1403,399013.4248,0,21
+41304,267636.8916,582636.9649,0,21
+41305,266997.9308,513950.1352,0,21
+41306,267328.0376,534874.626,664141.443,21
+41307,266981.8902,531220.0225,0,21
+41308,266770.2913,443300.7901,0,21
+41309,224079.3071,443733.736,0,21
+41310,223578.1695,611726.5134,0,21
+41311,314566.0956,536571.3635,0,21
+41312,270401.9558,509718.8183,0,21
+41313,256227.4748,537292.5286,0,21
+41314,269712.4757,529218.7403,0,21
+41315,267216.7268,521520.9933,0,21
+41316,266113.6595,525492.0957,0,21
+41317,266172.3069,522721.6525,0,21
+41318,265947.6009,523039.916,0,21
+41319,43556.53215,522397.5492,0,21
+41320,43292.56838,521683.8979,0,21
+41321,43474.62194,521783.368,0,21
+41322,814324.4314,521218.524,0,21
+41323,248691.2791,520185.353,0,21
+41324,104869.975,520323.4586,0,21
+41325,340210.9003,519571.3883,0,21
+41326,263689.7135,519298.9327,0,21
+41327,262811.8281,518466.5499,0,21
+41328,264939.4724,500868.5602,0,21
+41329,264711.9823,500219.5755,0,21
+41330,264428.9074,499120.9887,0,21
+41331,264948.5186,565490.5935,0,21
+41332,264036.7293,82488.56725,0,21
+41333,264014.6414,91884.95265,0,21
+41334,264310.5986,1191146.843,0,21
+41335,263781.2992,363763.2854,0,21
+41336,263647.6345,591006.0414,0,21
+41337,263477.1589,480728.5947,0,21
+41338,263785.5675,536746.8692,0,21
+41339,262867.3326,517308.9253,0,21
+41340,263303.4882,433843.8501,0,21
+41341,221604.2706,433254.1318,0,21
+41342,223338.6281,603811.1291,0,21
+41343,319211.6765,523281.9367,665211.2873,21
+41344,273289.6742,500316.9979,0,21
+41345,262680.7512,527635.5556,0,21
+41346,278412.6022,515746.9336,0,21
+41347,276685.4662,512188.7455,0,21
+41348,277664.7644,513541.0494,0,21
+41349,279875.0558,513087.3499,0,21
+41350,281242.2911,511390.7832,0,21
+41351,283079.2071,511523.4838,0,21
+41352,46329.15083,510687.5077,0,21
+41353,46576.02991,510544.6572,0,21
+41354,46882.14762,509895.6174,0,21
+41355,845353.7703,509516.7487,0,21
+41356,313895.2297,508663.5235,0,21
+41357,124344.0645,509083.0328,0,21
+41358,378814.7382,507771.2474,0,21
+41359,292714.5623,507571.5632,0,21
+41360,300181.9166,507977.9628,0,21
+41361,301847.0839,488219.1831,0,21
+41362,303519.3104,489326.8486,0,21
+41363,304955.4841,487769.7829,0,21
+41364,307044.0561,145394.8072,0,21
+41365,308291.9081,81350.9982,0,21
+41366,310135.873,1174129.624,0,21
+41367,311799.9612,347620.5042,0,21
+41368,313448.107,569203.0239,0,21
+41369,314776.1077,473235.3758,0,21
+41370,316938.952,526622.5747,0,21
+41371,318321.0962,504530.775,0,21
+41372,319871.5703,422947.1676,0,21
+41373,270533.5618,423274.8155,0,21
+41374,272053.6453,593871.5484,0,21
+41375,372779.1874,508335.9031,0,21
+41376,338274.273,491130.3712,0,21
+41377,324333.2656,515555.6885,0,21
+41378,328024.1309,501096.5494,0,21
+41379,334669.3404,501726.7773,0,21
+41380,333501.3701,502076.5055,666193.6634,21
+41381,334485.7934,500526.0206,0,21
+41382,337110.7528,499835.5964,0,21
+41383,338173.2542,499629.1152,0,21
+41384,339795.0582,499068.0412,0,21
+41385,53889.45606,498170.4771,0,21
+41386,54017.38996,498500.575,0,21
+41387,835600.2164,496956.0643,0,21
+41388,341921.9179,497509.037,0,21
+41389,238956.1819,496254.251,0,21
+41390,400272.0545,496599.937,0,21
+41391,350674.1648,495610.3273,0,21
+41392,353265.6597,495347.3777,0,21
+41393,354544.9084,494761.1424,0,21
+41394,356618.3415,477209.2603,0,21
+41395,357915.0926,476923.7233,0,21
+41396,360175.5748,79110.75517,0,21
+41397,360825.7103,142107.8914,0,21
+41398,363269.7284,1161809.998,0,21
+41399,364289.6255,304558.5433,0,21
+41400,368021.9928,553219.6768,0,21
+41401,367990.2584,474123.6492,0,21
+41402,368811.9659,515486.9707,0,21
+41403,367243.4981,917573.4032,0,21
+41404,367763.5166,419009.5559,0,21
+41405,309349.6267,417374.2127,0,21
+41406,308880.6826,593220.8629,0,21
+41407,415864.6276,502368.2041,0,21
+41408,379780.337,490090.1108,0,21
+41409,365779.9931,514661.7875,0,21
+41410,365026.9803,500355.3346,0,21
+41411,365620.9455,502667.3539,0,21
+41412,366246.527,503786.7284,0,21
+41413,364106.9819,923103.18,0,21
+41414,364413.2803,503602.7783,0,21
+41415,363583.8674,504286.668,0,21
+41416,363068.8145,504260.8897,0,21
+41417,57919.76308,504969.6612,667092.2675,21
+41418,58074.22179,505559.9286,0,21
+41419,857810.6184,505197.71,0,21
+41420,374185.5064,507086.7637,0,21
+41421,265067.0041,505955.6473,0,21
+41422,398981.5953,508119.9853,0,21
+41423,364398.689,506758.2848,0,21
+41424,360752.967,508564.3439,0,21
+41425,360304.0345,508626.7796,0,21
+41426,359966.6703,508975.8114,0,21
+41427,359493.4737,491306.8061,0,21
+41428,359084.9726,81627.16806,0,21
+41429,358208.0492,81626.19136,0,21
+41430,358361.491,1231724.768,0,21
+41431,357871.1708,336425.4149,0,21
+41432,356591.7053,574117.4583,0,21
+41433,357173.208,485712.2201,0,21
+41434,356378.4133,536275.8738,0,21
+41435,355566.4674,515248.7364,0,21
+41436,355506.4725,433604.2394,0,21
+41437,297670.1987,433972.7456,0,21
+41438,297001.5764,1029738.998,0,21
+41439,408768.8232,523604.2945,0,21
+41440,364320.156,505420.2709,0,21
+41441,353443.3501,532383.299,0,21
+41442,351151.5917,521140.4739,0,21
+41443,354000.814,518507.5179,0,21
+41444,353131.4836,522038.6674,0,21
+41445,351689.9931,520693.8841,0,21
+41446,350742.5186,521531.1145,0,21
+41447,351090.2141,521533.7156,0,21
+41448,350253.4481,941933.0465,0,21
+41449,57223.45141,522023.3398,0,21
+41450,57358.79217,523083.0358,0,21
+41451,840961.1678,523443.963,0,21
+41452,352276.3138,523847.6807,0,21
+41453,230462.9971,524054.7897,0,21
+41454,401327.6475,524551.0487,667913.6968,21
+41455,345611.9047,525384.3187,0,21
+41456,347206.1008,526057.6976,0,21
+41457,346320.5298,525883.6295,0,21
+41458,345842.8749,526197.7794,0,21
+41459,345643.3481,527798.2236,0,21
+41460,344622.6077,83939.77204,0,21
+41461,344793.1555,83543.25809,0,21
+41462,344368.172,1167579.015,0,21
+41463,344296.3316,442562.2188,0,21
+41464,343799.4626,566965.5531,0,21
+41465,343771.1572,491729.8523,0,21
+41466,343778.2547,545251.9988,0,21
+41467,343073.6003,522203.1096,0,21
+41468,342928.4371,437337.5198,0,21
+41469,286255.9845,435723.9332,0,21
+41470,285872.3372,611659.3809,0,21
+41471,400249.1928,522160.9382,0,21
+41472,350398.8357,502732.1921,0,21
+41473,342685.6391,527925.349,0,21
+41474,338619.4361,514263.7262,0,21
+41475,343776.5092,511829.6727,0,21
+41476,342282.9659,511388.0082,0,21
+41477,340654.6963,509780.6695,0,21
+41478,341302.4503,508320.4,0,21
+41479,340353.3566,506777.1659,0,21
+41480,340822.5181,505745.1866,0,21
+41481,56816.2681,504264.8813,0,21
+41482,56700.43094,502951.7316,0,21
+41483,824799.5953,502310.0098,0,21
+41484,338503.6193,500129.0475,0,21
+41485,214667.0805,499236.5291,0,21
+41486,398582.9888,498677.0413,0,21
+41487,335658.556,496042.9136,0,21
+41488,338476.7348,495611.9319,0,21
+41489,338429.8474,494480.6822,0,21
+41490,338078.6297,492535.0196,0,21
+41491,337915.4065,492532.1115,668659.9289,21
+41492,337835.1719,97001.72618,0,21
+41493,336913.5183,79222.89263,0,21
+41494,337621.614,1156156.861,0,21
+41495,336388.9254,287347.949,0,21
+41496,336743.1925,576707.3382,0,21
+41497,336079.0207,455397.7046,0,21
+41498,336287.2362,490809.3924,0,21
+41499,335737.0225,491159.0596,0,21
+41500,335628.5696,402132.8766,0,21
+41501,278882.8159,402545.9365,0,21
+41502,278766.3289,577591.006,0,21
+41503,395128.3388,474766.1916,0,21
+41504,340973.7403,472621.7897,0,21
+41505,335785.301,486547.1151,0,21
+41506,329346.8086,472993.1911,0,21
+41507,337875.5602,476693.1692,0,21
+41508,333936.7808,472999.357,0,21
+41509,333391.0445,471597.8655,0,21
+41510,333521.1296,470965.7952,0,21
+41511,333380.5994,469247.9399,0,21
+41512,332198.6295,467991.8403,0,21
+41513,56295.30235,466673.8248,0,21
+41514,56420.85103,465269.6305,0,21
+41515,810698.0024,463847.5157,0,21
+41516,316585.5315,463256.4916,0,21
+41517,214607.817,460827.3815,0,21
+41518,389909.5158,460858.6819,0,21
+41519,327130.5742,459034.9293,0,21
+41520,331712.1039,457513.202,0,21
+41521,331634.6587,456312.2718,0,21
+41522,333563.5082,453857.0877,0,21
+41523,333635.5413,452447.2876,0,21
+41524,335052.3751,90651.77967,0,21
+41525,335420.0441,90288.66933,0,21
+41526,336556.1435,1103351.811,0,21
+41527,337920.0966,263144.288,0,21
+41528,337745.5443,386126.1188,669336.0295,21
+41529,339720.5241,463793.9414,0,21
+41530,340029.8517,490495.9033,0,21
+41531,340770.6421,423736.218,0,21
+41532,342515.8368,351649.3403,0,21
+41533,285230.762,371998.9925,0,21
+41534,285925.8178,535151.0044,0,21
+41535,405278.6658,416841.5435,0,21
+41536,352482.3478,434404.0983,0,21
+41537,347883.8766,428581.912,0,21
+41538,344302.6757,429811.9929,0,21
+41539,351285.0574,425459.519,0,21
+41540,349822.2887,423755.5809,0,21
+41541,350661.2461,420777.2764,0,21
+41542,351234.191,420049.926,0,21
+41543,352617.3421,417174.927,0,21
+41544,353072.0437,415891.8004,0,21
+41545,58985.45378,413403.7517,0,21
+41546,59144.28148,411605.4709,0,21
+41547,847041.3051,409773.7639,0,21
+41548,363536.7186,408228.4554,0,21
+41549,243193.61,406319.1516,0,21
+41550,410340.8775,403724.32,0,21
+41551,359507.4202,402502.4419,0,21
+41552,361209.9339,400070.9494,0,21
+41553,361858.3394,398553.5521,0,21
+41554,362736.3066,396820.2299,0,21
+41555,364331.9432,394956.9721,0,21
+41556,364635.2678,81313.2642,0,21
+41557,365587.6193,81132.29786,0,21
+41558,366935.409,974033.0234,0,21
+41559,367350.162,239008.0969,0,21
+41560,369133.8377,302781.5443,0,21
+41561,368831.7073,425366.796,0,21
+41562,371165.6623,362553.4701,0,21
+41563,371334.6686,366323.9534,0,21
+41564,372385.1885,350294.2443,0,21
+41565,312127.701,299664.5883,669956.8442,21
+41566,312920.2743,474260.6277,0,21
+41567,434591.3485,350132.8551,0,21
+41568,385263.5538,374603.0769,0,21
+41569,380287.77,370280.025,0,21
+41570,378252.1403,369676.548,0,21
+41571,379490.6117,365732.3549,0,21
+41572,382252.572,364201.0134,0,21
+41573,381192.4035,361143.5815,0,21
+41574,382747.3869,359723.4482,0,21
+41575,383689.4903,357284.3703,0,21
+41576,384385.8398,355121.3115,0,21
+41577,63163.12935,353185.2346,0,21
+41578,63351.89852,350270.1891,0,21
+41579,873718.157,348762.3169,0,21
+41580,426437.5039,344305.5648,0,21
+41581,308873.4082,349849.5369,0,21
+41582,411231.0784,353345.4235,0,21
+41583,399090.4803,356511.764,0,21
+41584,390433.3846,359902.4833,0,21
+41585,390680.6535,362911.0246,0,21
+41586,391218.576,366318.6404,0,21
+41587,391358.4352,369144.1547,0,21
+41588,392208.4792,78309.59134,0,21
+41589,391744.5092,78784.5737,0,21
+41590,392646.0396,1356062.312,0,21
+41591,392910.5902,216306.4017,0,21
+41592,393364.1829,338648.5006,0,21
+41593,393894.2697,431811.2613,0,21
+41594,393478.6696,372006.3949,0,21
+41595,394947.3533,379234.5938,0,21
+41596,394507.4117,315273.2557,0,21
+41597,330632.6626,317220.229,0,21
+41598,330824.315,550715.2104,0,21
+41599,455955.5465,367484.7357,0,21
+41600,407348.4471,404201.8749,0,21
+41601,401723.817,420455.4137,0,21
+41602,400145.8678,416226.5914,0,21
+41603,397011.3837,418789.8664,763555.0926,21
+41604,400780.8933,422032.261,0,21
+41605,399229.0536,424524.3435,0,21
+41606,399596.9224,428049.4308,0,21
+41607,399378.5693,430307.4894,0,21
+41608,400108.9952,433330.2526,0,21
+41609,66015.2406,437383.5975,0,21
+41610,65943.1777,439062.8905,0,21
+41611,878657.3765,863092.2998,0,21
+41612,460760.141,445808.1427,0,21
+41613,333833.8756,448314.9069,0,21
+41614,412578.1326,452496.9758,0,21
+41615,417514.2314,454296.4032,0,21
+41616,403947.2041,458355.5321,0,21
+41617,404612.6421,460848.0804,0,21
+41618,404071.649,464647.487,0,21
+41619,405519.4766,466585.3644,0,21
+41620,405480.4845,93564.1005,0,21
+41621,405224.9679,513332.5911,0,21
+41622,406135.0739,1158649.82,0,21
+41623,406039.4809,290845.736,0,21
+41624,406969.0287,502052.5034,0,21
+41625,407570.3605,489268.9934,0,21
+41626,406717.4984,500153.8724,0,21
+41627,408122.8894,492787.3142,0,21
+41628,408357.3141,398665.3566,0,21
+41629,341043.825,401173.8659,0,21
+41630,341862.5196,582574.0472,0,21
+41631,470428.1096,552516.0959,0,21
+41632,421113.8326,484866.1199,0,21
+41633,415218.8811,517492.9315,0,21
+41634,414299.5379,520921.7262,0,21
+41635,411970.8743,519939.2285,0,21
+41636,412898.4844,522692.9156,0,21
+41637,412773.7311,525647.4512,0,21
+41638,413477.2222,528978.1723,0,21
+41639,412704.7065,531904.6963,0,21
+41640,431372.388,535100.0564,0,15.6
+41641,68736.54033,532208.8695,753747.5232,15.6
+41642,69134.92697,529301.8111,0,15.6
+41643,883305.1395,526537.5372,0,15.6
+41644,485151.8901,523989.1028,0,15.6
+41645,386664.0424,521004.3483,0,15.6
+41646,406710.1526,518325.8522,0,15.6
+41647,443072.6039,515380.7855,0,15.6
+41648,421480.2109,512810.2987,0,15.6
+41649,421993.9347,509670.7179,0,15.6
+41650,423229.9435,506898.9639,0,15.6
+41651,422632.9741,504130.3266,0,15.6
+41652,424214.1442,99840.41954,0,15.6
+41653,423509.6865,99570.28795,0,15.6
+41654,425312.6083,1179077.948,0,15.6
+41655,425146.634,321509.1763,0,15.6
+41656,425577.5858,532974.8728,0,15.6
+41657,426855.0889,473580.0796,0,15.6
+41658,426691.2952,502460.2928,0,15.6
+41659,427540.2252,483536.359,0,15.6
+41660,428291.2965,401254.2122,0,15.6
+41661,358524.209,381302.3116,0,15.6
+41662,358827.9382,560374.7833,0,15.6
+41663,491577.6725,446756.6929,0,15.6
+41664,441879.1862,513404.4332,0,15.6
+41665,434224.7027,457523.6043,0,15.6
+41666,438151.16,454141.118,0,15.6
+41667,434687.6678,470370.5673,0,15.6
+41668,433499.6987,457168.5906,0,15.6
+41669,435008.4585,455059.5574,0,15.6
+41670,430542.9166,452625.654,0,15.6
+41671,430554.5793,449493.3528,0,15.6
+41672,431356.5918,446169.4783,0,15.6
+41673,72117.6038,443782.8831,0,15.6
+41674,72040.85705,440339.1033,0,15.6
+41675,884647.5854,437792.7966,0,15.6
+41676,511011.9514,434742.4112,0,15.6
+41677,435852.0951,431354.2002,0,15.6
+41678,397247.4897,428983.0787,745098.4729,15.6
+41679,464344.066,425896.8074,0,15.6
+41680,436214.0272,423037.4962,0,15.6
+41681,436189.515,419430.3711,0,15.6
+41682,456766.4861,417320.2121,0,15.6
+41683,438643.8317,413934.0613,0,15.6
+41684,439188.808,85950.26906,0,15.6
+41685,440888.4922,85542.60708,0,15.6
+41686,445318.4906,1015183.212,0,15.6
+41687,443643.6684,261501.0938,0,15.6
+41688,444589.4091,317558.3272,0,15.6
+41689,444631.1339,456662.735,0,15.6
+41690,446064.0042,387228.0007,0,15.6
+41691,445798.2637,391135.8757,0,15.6
+41692,446923.0606,319549.0579,0,15.6
+41693,373516.9887,317728.0711,0,15.6
+41694,374574.3723,480638.8397,0,15.6
+41695,509688.8674,333859.7193,0,15.6
+41696,460897.3046,367324.3495,0,15.6
+41697,450122.4686,359729.0276,0,15.6
+41698,459498.7347,408878.332,0,15.6
+41699,452891.7799,354093.6706,0,15.6
+41700,452446.5269,349781.7897,0,15.6
+41701,450441.1036,370954.34,0,15.6
+41702,448869.1256,363663.2196,0,15.6
+41703,446418.2806,366742.7728,0,15.6
+41704,444961.7892,368600.2892,0,15.6
+41705,78631.25173,369990.6179,0,15.6
+41706,78235.65352,371746.3707,0,15.6
+41707,890598.8361,373604.3437,0,15.6
+41708,518969.3439,374575.4769,0,15.6
+41709,438382.6514,376936.2985,0,15.6
+41710,396135.5314,378336.3949,0,15.6
+41711,462145.6733,379341.7751,0,15.6
+41712,427201.6008,381914.6698,0,15.6
+41713,425102.6332,382667.3309,0,15.6
+41714,422497.875,384841.0111,0,15.6
+41715,421829.6223,385948.8503,737361.8233,15.6
+41716,418976.3422,81958.79548,0,15.6
+41717,417666.1508,82102.28388,0,15.6
+41718,415956.6534,969868.3033,0,15.6
+41719,413955.3598,233945.603,0,15.6
+41720,412537.4351,339412.9987,0,15.6
+41721,409922.3917,443947.8393,89479.25276,15.6
+41722,409081.0897,393447.2868,0,15.6
+41723,406467.9454,399708.2639,87008.89674,15.6
+41724,405241.8475,332118.3942,0,15.6
+41725,334518.7122,333846.7454,84605.5316,15.6
+41726,332779.2158,515887.5549,0,15.6
+41727,467313.8078,379233.2415,82267.30551,15.6
+41728,406087.4403,399155.013,0,15.6
+41729,402843.1083,394897.9243,79995.51333,15.6
+41730,397939.3165,399604.7082,0,15.6
+41731,392030.5856,397298.0152,0,15.6
+41732,394107.7881,461098.8608,78009.80223,15.6
+41733,389896.3447,401422.7262,0,15.6
+41734,388053.5397,405601.3819,0,15.6
+41735,386014.1747,426921.8182,0,15.6
+41736,384102.5162,419198.406,0,15.6
+41737,66710.98133,421583.6178,0,15.6
+41738,66382.46996,423460.9023,0,15.6
+41739,867844.1571,424757.8298,0,15.6
+41740,404295.6176,427109.1514,0,15.6
+41741,279205.7401,427703.5287,75909.03015,15.6
+41742,407911.9638,429849.8264,0,15.6
+41743,376813.4253,431072.1578,0,15.6
+41744,369972.9636,433233.8844,0,15.6
+41745,368334.6792,434477.5416,0,15.6
+41746,365921.0058,435671.4554,0,15.6
+41747,364531.6342,437906.005,0,15.6
+41748,362491.5265,90166.94173,0,15.6
+41749,361102.663,90403.7122,73600.11075,15.6
+41750,358438.2846,1100366.679,0,15.6
+41751,357014.0453,280056.7435,0,15.6
+41752,355296.4679,398377.4639,656076.8072,15.6
+41753,353848.5366,489952.2477,0,15.6
+41754,350845.5092,448684.9564,0,15.6
+41755,349790.5806,451268.335,0,15.6
+41756,347786.4125,377951.2337,0,15.6
+41757,284394.5043,379071.9308,72082.88421,15.6
+41758,282963.4414,562842.3106,0,15.6
+41759,416545.0474,443448.1932,0,15.6
+41760,342031.5126,462469.2385,0,15.6
+41761,340402.9237,457403.0381,0,15.6
+41762,330826.6392,859457.3736,522517.0863,15.6
+41763,341570.2794,441687.517,0,15.6
+41764,676648.1527,441166.4723,0,15.6
+41765,337925.8225,503018.6065,550352.869,15.6
+41766,338477.4461,443917.8984,0,15.6
+41767,339240.6345,454159.3298,0,15.6
+41768,339532.092,469345.0189,564628.6604,15.6
+41769,60229.7681,462521.9809,0,15.6
+41770,60288.42986,464532.5787,0,15.6
+41771,817799.7662,466197.1627,0,15.6
+41772,332683.2991,467000.2883,0,15.6
+41773,223934.9913,468554.7339,0,15.6
+41774,401676.1762,469029.2855,0,15.6
+41775,340702.9518,471088.0079,0,15.6
+41776,344434.7522,471419.7769,0,15.6
+41777,345305.2213,473370.1533,0,15.6
+41778,346241.1965,473835.3194,0,15.6
+41779,346254.0148,475605.8679,0,15.6
+41780,347439.9275,515080.4851,0,15.6
+41781,347821.0447,95609.93829,0,15.6
+41782,348668.2346,1162315.529,0,15.6
+41783,348857.337,292491.0274,0,15.6
+41784,349835.8559,505113.6873,0,15.6
+41785,350417.4341,483054.4433,0,15.6
+41786,351169.5167,495680.5702,0,15.6
+41787,351814.9807,486583.2821,750299.6565,15.6
+41788,352020.4282,407486.6768,0,15.6
+41789,292089.1868,409691.6855,0,15.6
+41790,292359.141,589454.888,0,15.6
+41791,424001.4051,485924.0873,551836.5128,15.6
+41792,359067.1149,488100.5945,0,15.6
+41793,360927.7383,504169.2079,0,15.6
+41794,353620.9945,492362.1773,579302.757,15.6
+41795,361189.2075,480928.5558,0,15.6
+41796,359239.6815,478425.1297,0,15.6
+41797,359730.9555,481014.0486,592412.3944,15.6
+41798,359527.5553,969005.5491,0,15.6
+41799,360715.5748,483562.3498,0,15.6
+41800,361278.7102,494927.923,661730.6169,15.6
+41801,62810.59334,510327.2533,24189.77293,15.6
+41802,62959.00672,503639.1383,89856.99293,15.6
+41803,851177.1657,506274.4256,635894.2771,15.6
+41804,378629.0624,507358.6513,29880.12922,15.6
+41805,584823.9499,508218.3159,95820.86923,15.6
+41806,418184.8773,509835.8104,647225.0455,15.6
+41807,366325.997,511094.432,28216.86264,15.6
+41808,366898.0113,930891.9427,99601.73985,15.6
+41809,368381.0459,513685.0677,655731.518,15.6
+41810,368418.9548,514538.442,29022.74309,15.6
+41811,369774.3117,515582.451,103017.681,15.6
+41812,369961.4397,102423.7226,663634.5179,15.6
+41813,370825.0778,102436.8266,29872.11827,15.6
+41814,371208.8777,1186891.08,106350.6006,15.6
+41815,371914.8046,371627.2702,671112.5437,15.6
+41816,372431.4201,586291.2585,30829.97587,15.6
+41817,373444.6424,492064.6594,109452.5036,15.6
+41818,373986.854,548311.2686,678287.7071,15.6
+41819,374575.4194,528410.3341,31722.76895,15.6
+41820,375079.2405,445811.5905,112499.5701,15.6
+41821,311427.2146,445145.7997,684907.2014,15.6
+41822,310900.921,628505.3898,879273.4113,15.6
+41823,441976.5754,534836.2456,112129.5838,15.6
+41824,380717.1309,518704.3619,683809.0228,15.6
+41825,380154.5397,545034.2905,32171.79827,15.6
+41826,373084.4294,531368.69,114596.396,15.6
+41827,375681.6713,530254.3488,689922.0782,15.6
+41828,375745.3308,512715.9976,32434.18827,15.6
+41829,373750.1172,510928.4648,116869.7571,15.6
+41830,374038.8935,510648.0275,662938.7818,15.6
+41831,373056.0214,584124.4548,84.2093377,15.6
+41832,373352.437,510428.7191,0,15.6
+41833,63972.84135,524138.1243,670252.5992,15.6
+41834,64025.98695,536606.5331,83.40383112,15.6
+41835,860418.4688,528940.5068,0,15.6
+41836,394165.0697,529814.1915,677251.4196,15.6
+41837,264927.3509,529782.5546,86.11567678,15.6
+41838,414281.1991,529748.8353,0,15.6
+41839,374387.1434,529637.9432,683978.6929,15.6
+41840,371038.7705,529577.0279,85.13621853,15.6
+41841,371177.8487,529347.886,0,15.6
+41842,370868.4947,529713.0832,690415.4255,15.6
+41843,370494.7305,529026.2628,87.51864857,15.6
+41844,370308.5694,104824.3251,0,15.6
+41845,369884.3747,104482.3661,696607.5162,15.6
+41846,369894.9567,1189061.516,85.94161877,15.6
+41847,708506.1094,395160.1151,173380.0078,15.6
+41848,369180.0009,594212.1569,729097.1395,15.6
+41849,369092.9658,497382.2411,32071.14271,15.6
+41850,368532.5485,552731.4239,130656.6421,15.6
+41851,368769.3391,531278.0387,739752.2665,15.6
+41852,367890.9539,445501.9704,34698.5538,15.6
+41853,305340.9512,445477.4096,134231.1467,15.6
+41854,304493.0791,628180.25,739736.8935,15.6
+41855,436977.2336,534605.453,35078.33613,15.6
+41856,371676.9143,518990.3041,135487.56,15.6
+41857,373245.4118,544490.2028,1688968.116,15.6
+41858,364599.7295,530773.6197,34653.11786,15.6
+41859,370085.0626,530701.2785,132084.7394,15.6
+41860,367594.6023,530863.0533,733841.4432,15.6
+41861,367232.7468,511638.6097,34803.41403,15.6
+41862,366425.9113,510346.1328,133489.3215,15.6
+41863,366540.3604,509689.919,737219.4857,15.6
+41864,365706.0285,583195.3868,35140.27338,15.6
+41865,63073.68937,510128.4452,134688.665,15.6
+41866,63095.59085,523228.6995,740226.4101,15.6
+41867,853771.5664,535728.346,35359.50836,15.6
+41868,383804.776,528296.4826,135818.7411,15.6
+41869,245795.7294,529258.0228,743102.9328,15.6
+41870,415922.7126,528584.062,35565.43608,15.6
+41871,364545.766,529282.3508,136864.4113,15.6
+41872,364053.5216,528817.1448,745838.7508,15.6
+41873,364144.4553,528707.316,35701.47669,15.6
+41874,363487.7301,528761.6606,137923.4957,15.6
+41875,363370.9988,528708.2954,748345.9545,15.6
+41876,362943.481,104738.5165,35916.5268,15.6
+41877,363139.2934,104816.3081,0,15.6
+41878,362089.4901,1188898.641,718557.0535,15.6
+41879,362935.3428,392167.9635,90.61929624,15.6
+41880,363519.9378,595185.201,0,15.6
+41881,361405.597,494067.5937,723542.4635,15.6
+41882,361319.5853,555414.9422,96.22913553,15.6
+41883,359996.4808,532810.6118,0,15.6
+41884,360225.3074,448227.8498,728166.4476,15.6
+41885,297349.6992,448093.2389,112.4369222,15.6
+41886,297706.3604,633783.2988,0,15.6
+41887,428166.3332,540846.1992,732589.6859,15.6
+41888,361988.0261,525684.2568,112.0680229,15.6
+41889,701930.9193,552673.125,0,15.6
+41890,354210.066,541539.8908,736801.5658,15.6
+41891,360332.1054,540440.827,93192.91779,15.6
+41892,357136.5076,543330.0156,1157170.348,15.6
+41893,356496.8472,543382.1469,757575.034,15.6
+41894,355430.9796,523474.3857,37517.33229,15.6
+41895,355125.9716,525056.115,148778.9565,15.6
+41896,354330.0162,525500.8929,763668.4544,15.6
+41897,61644.51357,601637.0068,40004.33155,15.6
+41898,61484.25021,528655.7129,147174.854,15.6
+41899,834871.1025,541285.6413,766908.1187,15.6
+41900,363326.3351,556969.0625,41357.43597,15.6
+41901,222620.9798,549528.7741,148239.7266,15.6
+41902,411656.805,551475.6299,768743.7256,15.6
+41903,348623.4168,552566.7007,42201.69016,15.6
+41904,350915.5875,553855.1559,149329.5252,15.6
+41905,350381.6585,554295.0306,770708.6164,15.6
+41906,349871.0878,556305.1877,42939.94133,15.6
+41907,349071.4073,555701.3278,150424.6921,15.6
+41908,349181.6462,109435.9823,772556.5754,15.6
+41909,347829.3818,109391.0912,43749.07386,15.6
+41910,347942.6175,1193910.996,151459.375,15.6
+41911,346812.7391,484584.3127,774430.91,15.6
+41912,346531.21,579554.0624,44482.55745,15.6
+41913,346050.6114,581849.8906,152532.6578,15.6
+41914,345387.6031,558990.842,776164.0045,15.6
+41915,344948.9468,574904.4222,45298.35275,15.6
+41916,344527.6817,478903.576,153552.2132,15.6
+41917,283657.3735,642139.6881,777889.3941,15.6
+41918,283478.2758,550315.2819,46089.84224,15.6
+41919,414811.4974,576896.2161,154537.8133,15.6
+41920,343640.5604,576542.0991,779570.2846,15.6
+41921,346441.3053,570891.8308,88.41711723,15.6
+41922,336444.6804,574801.1576,0,15.6
+41923,345779.2435,575135.6942,737463.9143,15.6
+41924,340353.5328,576190.2477,0,15.6
+41925,339966.7284,576389.0011,0,15.6
+41926,339719.0943,578149.9182,0,15.6
+41927,338578.4304,556833.6182,1029800.193,15.6
+41928,338247.2026,558279.8046,0,15.6
+41929,59225.6904,559313.6329,0,15.6
+41930,59244.02205,639142.9052,369071.9509,15.6
+41931,1148564.145,565364.1781,268122.8566,15.6
+41932,317659.4505,573466.6931,40489.9075,15.6
+41933,222487.1633,592854.3567,50265.77696,15.6
+41934,391661.1628,583660.6434,75991.26187,15.6
+41935,331245.0093,586793.4537,218414.4773,15.6
+41936,334062.8016,587722.2349,187193.6191,15.6
+41937,333519.2515,588200.8047,308563.3737,15.6
+41938,333232.0221,589644.3776,174068.6638,15.6
+41939,332535.7663,590432.8907,210629.0602,15.6
+41940,331980.2892,114446.4399,197441.8764,15.6
+41941,332957.8597,114338.1225,691822.3917,15.6
+41942,333735.6396,1198587.061,47354.94716,15.6
+41943,334618.44,578229.2596,140942.4663,15.6
+41944,335601.8589,556971.0522,716813.2991,15.6
+41945,336058.8836,667337.6947,47336.90626,15.6
+41946,337542.0145,557613.7211,137009.9599,15.6
+41947,337948.3088,513918.5386,724670.2961,15.6
+41948,338684.9856,662899.2517,47341.16024,15.6
+41949,280887.7576,573228.9431,137553.4952,15.6
+41950,281242.1831,591987.2569,729747.4902,15.6
+41951,413846.0755,593476.1736,47332.73423,15.6
+41952,343072.4052,588637.8815,138962.8092,15.6
+41953,347261.7791,586545.9229,734091.522,15.6
+41954,340218.8253,588000.3033,47308.97826,15.6
+41955,349466.918,586258.1853,140327.6739,15.6
+41956,346725.2251,585742.6534,738117.2799,15.6
+41957,347055.6457,585365.9383,47270.56715,15.6
+41958,348226.8509,584404.7571,141639.5082,15.6
+41959,349144.5891,584390.9333,741828.9983,15.6
+41960,349337.1501,562172.8556,4.692602042,15.6
+41961,60661.88275,561029.7618,0,15.6
+41962,60848.57474,561250.4567,1641493.406,15.6
+41963,832153.0436,641051.3787,3.894542376,15.6
+41964,362522.8337,563217.6137,0,15.6
+41965,225337.3618,571374.2206,696072.245,15.6
+41966,416265.0365,589019.1005,3.987809095,15.6
+41967,352874.9207,578111.6877,0,15.6
+41968,357040.302,579992.1694,808415.9554,15.6
+41969,358022.6394,579191.3827,39371.63331,15.6
+41970,359335.2557,577797.8527,139428.6228,15.6
+41971,359414.4544,578795.7604,751423.2359,15.6
+41972,360815.5908,112425.0515,50144.76088,15.6
+41973,700911.068,112132.1538,144892.2455,15.6
+41974,362027.4002,1196423.373,754433.5894,15.6
+41975,363666.6561,536874.0042,46678.98097,15.6
+41976,363899.5346,564693.3766,146790.3966,15.6
+41977,365308.0717,625993.9718,756973.9697,15.6
+41978,365670.4666,464299.9999,46423.50248,15.6
+41979,385686.9667,662807.3343,147593.8706,15.6
+41980,367534.6932,556389.7024,759319.5783,15.6
+41981,305964.5243,580692.8245,46242.71487,15.6
+41982,307163.9554,579336.1097,148311.5873,15.6
+41983,446348.4625,571600.9446,761602.2994,15.6
+41984,377380.6418,574236.7869,46208.80476,15.6
+41985,381932.2628,573530.1512,149254.4067,15.6
+41986,374119.1788,572084.8562,764024.527,15.6
+41987,380658.4445,571859.6719,46145.44359,15.6
+41988,380558.855,570988.2384,149890.8769,15.6
+41989,379576.866,570289.0226,766103.7619,15.6
+41990,381548.0069,570624.7575,46053.75016,15.6
+41991,381545.4837,569470.4157,150491.3907,15.6
+41992,382881.5161,568485.8625,768035.9191,15.6
+41993,68094.76964,548148.5534,45891.85059,15.6
+41994,68208.72249,546133.0229,151071.6778,15.6
+41995,869426.1054,546904.6433,769870.4832,15.6
+41996,414342.2334,623843.6898,45718.4737,15.6
+41997,293190.4158,547857.7791,1142401.143,15.6
+41998,422878.9099,557018.423,713138.2508,15.6
+41999,394869.5811,573458.5603,10.03409131,15.6
+42000,391261.0085,563284.3848,0,17.8
+42001,2317637.493,2617608.922,1213597.969,17.8
+42002,2326557.032,2629453.252,225556.0524,17.8
+42003,926969.5286,1736560.597,439844.2589,17.8
+42004,748625.4297,260373.7368,74442.01942,17.8
+42005,818481.6182,1305775.351,125806.2699,17.8
+42006,1128288.735,1178569.913,142326.6893,17.8
+42007,914554.8172,1199729.78,243309.6533,17.8
+42008,942412.6655,1141078.146,333167.7583,17.8
+42009,906610.6999,989747.4665,301470.3128,17.8
+42010,889782.1725,1228449.709,93890.02448,17.8
+42011,899837.7249,1165226.142,96356.64896,17.8
+42012,957900.6535,1120815.017,111506.0433,17.8
+42013,782816.2921,1131871.499,258518.8206,17.8
+42014,979330.2205,1133155.655,276805.035,17.8
+42015,900629.4095,1125631.39,270087.7337,17.8
+42016,1242621.879,1121851.767,89959.09725,17.8
+42017,906841.4221,1120032.552,92286.51729,17.8
+42018,902960.3463,1117651.972,151500.3859,17.8
+42019,900361.3936,1113234.396,179160.5778,17.8
+42020,898718.5029,1110946.132,312186.537,17.8
+42021,896678.778,1108840.36,237024.8429,17.8
+42022,894507.2405,1105945.09,247869.7477,17.8
+42023,893697.231,1104312.036,86275.01215,17.8
+42024,891698.0151,1101627.687,88226.97009,17.8
+42025,151541.5823,1099992.597,88206.76258,17.8
+42026,151391.3859,1053090.224,256520.1221,17.8
+42027,1064456.144,1054333.096,213107.3418,17.8
+42028,1124494.675,1149563.288,219890.9349,17.8
+42029,771697.6509,1091476.064,213874.7664,17.8
+42030,956571.7063,1083927.805,209514.3877,17.8
+42031,918126.4692,1089276.221,0,17.8
+42032,876587.7952,1087454.237,918384.0943,17.8
+42033,880454.8001,1084363.506,600495.3375,17.8
+42034,885240.5395,1083963.199,177549.4669,17.8
+42035,879685.1384,187267.888,163337.7431,17.8
+42036,877481.5606,1509387.289,694202.3422,17.8
+42037,878436.1655,1067336.101,94619.17384,17.8
+42038,875893.4374,1004637.726,157190.3696,17.8
+42039,874802.8353,1106078.542,722611.1756,17.8
+42040,874631.0412,932002.4507,84395.28919,17.8
+42041,868577.2939,1165387.851,160796.8387,17.8
+42042,843737.0397,1072417.263,732628.9709,17.8
+42043,843870.9283,1061966.507,85053.63022,17.8
+42044,718830.1667,1072554.075,164152.3921,17.8
+42045,976318.5894,1071288.316,741761.9649,17.8
+42046,844494.1292,1066469.01,85574.90437,17.8
+42047,851673.366,1067008.458,167718.9403,17.8
+42048,868275.4926,1064317.161,749850.5325,17.8
+42049,859626.6444,1064697.627,86437.03693,17.8
+42050,859080.071,1061298.74,356673.5242,17.8
+42051,858632.6293,1063923.294,85141.13228,17.8
+42052,856197.5482,1058478.73,88236.13606,17.8
+42053,856754.0191,1061002.527,119134.7043,17.8
+42054,854598.5577,1058294.458,207768.8413,17.8
+42055,854093.0062,1057123.017,290949.4002,17.8
+42056,854565.5071,1057528.562,262421.2952,17.8
+42057,143931.707,1055272.747,82905.44359,17.8
+42058,143915.5681,1012921.171,85506.89094,17.8
+42059,1358179.29,1012335.807,101169.6597,17.8
+42060,1100536.08,1111349.256,220601.7903,20
+42061,2317944.058,2647854.016,2074598.567,20
+42062,2326549.373,2661156.086,1820594.209,20
+42063,2326548.988,2644376.607,1136693.566,20
+42064,2298187.365,2603428.013,670371.9185,20
+42065,1422788.572,2302717.205,1002353.685,20
+42066,1549433.602,347627.1339,903769.9077,20
+42067,1626934.863,2273264.6,1668104.845,20
+42068,1544767.78,2034257.629,840697.417,20
+42069,1523330.469,2080662.985,836436.1573,20
+42070,1495232.72,1826964.957,836367.4092,20
+42071,1501668.735,1645884.234,836706.5601,20
+42072,1489194.916,1893611.847,846929.6316,20
+42073,1482729.432,1875595.444,1459768.182,20
+42074,1475144.453,1868969.194,804687.7426,20
+42075,1242938.492,1849589.299,812517.2856,20
+42076,1445855.114,1795115.627,1535143.513,20
+42077,1523243.096,1817527.294,830935.0284,20
+42078,1504404.791,1799091.648,838472.8482,20
+42079,1428382.219,1793579.286,1585837.379,20
+42080,1454121.022,1787264.124,855971.2312,20
+42081,1437363.518,1780245.705,859668.6439,20
+42082,1436516.74,1775790.294,1628479.93,20
+42083,1426077.618,1769772.046,875658.3324,20
+42084,1424526.214,1764125.017,880227.8002,20
+42085,1418055.346,1759057.253,1663332.332,20
+42086,1415938.056,1751079.626,894438.1032,20
+42087,1410681.078,1750492.462,897867.7107,20
+42088,1407369.09,1743319.934,1694063.828,20
+42089,212956.8563,1740316.781,909246.0028,20
+42090,1850869.901,1648667.303,915196.7524,20
+42091,1343759.447,2069222.235,1019536.936,20
+42092,1429215.002,1740905.23,220495.6378,20
+42093,1357021.491,1763607.578,352458.9193,20
+42094,1405724.434,1708951.815,2986458.634,20
+42095,1385353.043,1716436.67,648027.1395,20
+42096,1380298.107,1716348.092,650780.6545,20
+42097,1379964.473,284343.9244,2099966.252,20
+42098,1374703.653,2316174.316,939651.4652,20
+42099,1371938.536,1717232.4,941707.0205,20
+42100,1369838.05,1820556.247,1760432.061,20
+42101,1705190.773,1586159.184,950297.3441,20
+42102,1363404.42,1964586.762,2111494.01,20
+42103,1360957.918,1733701.618,1730289.137,20
+42104,1358081.581,1735177.274,954393.9241,20
+42105,1356109.381,1695369.683,958668.9627,20
+42106,1189928.076,1682784.34,1764720.568,20
+42107,1356052.098,1683797.119,973043.9951,20
+42108,1361030.744,1682504.283,978721.1651,20
+42109,1355977.755,1674856.45,1792399.829,20
+42110,1367949.639,1675294.301,991732.5862,20
+42111,1341059.635,1671836.615,995004.6928,20
+42112,1336327.583,1667327.565,1818492.499,20
+42113,1337494.45,1667255.131,1005636.423,20
+42114,1334548.13,1662709.326,1011674.884,20
+42115,1331102.72,1661937.414,1839927.613,20
+42116,1328699.632,1660644.254,1020538.452,20
+42117,1327205.547,1654464.481,1024244.266,20
+42118,1325695.896,1656026.783,1860280.807,20
+42119,1320768.67,1652696.603,1032404.115,20
+42120,197681.8598,1649264.722,1040648.136,21
+42121,2325950.54,3427314.084,4664703.039,21
+42122,2353746.828,2634694.241,3860750.756,21
+42123,2322166.741,2320278.451,1123138.588,21
+42124,1408881.994,1927210.426,2028632.639,21
+42125,1602059.095,1863962.735,1517656.285,21
+42126,1668353.299,1979244.699,1761755.975,21
+42127,1570618.113,1903579.096,2224121.639,21
+42128,1568056.916,1894704.003,1514690.6,21
+42129,1563946.419,1871077.501,1507892.099,21
+42130,1555724.762,1873089.635,2319616.69,21
+42131,1549436.764,1863848.492,1505721.972,21
+42132,1544974.725,2274402.655,1508554.374,21
+42133,1538914.342,1850560.175,2319375.66,21
+42134,1534614.918,1842063.326,1506751.51,21
+42135,1528337.264,1839238.423,1496173.792,21
+42136,1526221.729,1829653.043,2326433.349,21
+42137,1518678.342,1824861.449,1498387.082,21
+42138,1517788.721,1820432.72,1492376.275,21
+42139,1510794.902,1814139.134,2324865.036,21
+42140,1508453.679,1809736.166,1490950.885,21
+42141,1502761.187,1802277.461,1485065.745,21
+42142,1501381.79,1799447.173,2325047.206,21
+42143,1496934.177,2214763.879,1482450.889,21
+42144,1491264.906,1787838.032,1479667.207,21
+42145,1491929.602,1784966.111,2321665.46,21
+42146,1484252.184,1780318.854,1475909.465,21
+42147,1484425.24,1775743.698,1473195.882,21
+42148,1479234.889,1771570.036,2319175.344,21
+42149,1474878.947,1765669.168,1466735.673,21
+42150,1473959.388,1763604.957,1467987.558,21
+42151,1470050.847,1758764.161,2315050.93,21
+42152,1466568.932,1755474.614,1462068.701,21
+42153,1465208.805,1748688.973,1459468.299,21
+42154,1461438.582,1748140.609,2313407.013,21
+42155,1458116.701,1743523.656,1454241.378,21
+42156,1454819.158,1739454.531,1455246.049,21
+42157,1453048.216,1735161.057,2306583.824,21
+42158,1451926.377,1733265.959,1450108.601,21
+42159,1445900.973,1728723.327,1448984.47,21
+42160,1447185.984,1725582.548,2302636.154,21
+42161,1443640.634,2142642.296,1444361.668,21
+42162,1441692.978,1717220.974,1443227.18,21
+42163,1439300.889,1718096.543,2299010.632,21
+42164,1437683.405,1711399.311,1439057.468,21
+42165,1434190.172,1709627.78,1437038.569,21
+42166,1431485.257,1706498.662,2295903.518,21
+42167,1430868.28,1703006.459,1433726.821,21
+42168,1427128.861,1701227.043,1431674.919,21
+42169,1425557.012,1696047.635,2292251.108,21
+42170,1424347.092,1694848.857,1428207.806,21
+42171,1419675.074,2110770.31,1425542.06,21
+42172,1419947.062,1689583.483,2289749.332,21
+42173,1417434.804,1683978.384,1423101.483,21
+42174,1413051.871,1684906.287,1419414.601,21
+42175,1413401.437,1679576.722,2288592.098,21
+42176,1411356.985,1676046.162,1415680.412,21
+42177,1406032.193,1676702.126,1417513.791,21
+42178,1407659.376,1671074.306,2283079.538,21
+42179,1404672.733,1668445.35,1411981.656,21
+42180,1403049.097,1668785.826,1413096.548,21
+42181,2152716.293,3024056.517,2214935.664,21
+42182,2147084.289,3017013.595,1334928.632,21
+42183,2144358.409,3013546.642,1331228.933,21
+42184,2140527.214,3014035.203,2199077.319,21
+42185,2139282.771,3006136.428,1325858.843,21
+42186,2135664.414,3008827.178,1322570.324,21
+42187,2135660.577,3002246.993,2194419.611,21
+42188,2131108.922,3027620.157,1318086.634,21
+42189,2129252.257,3037546.912,1317077.227,21
+42190,2127158.513,3021843.207,2188661.495,21
+42191,2126412.418,3025376.484,1309793.442,21
+42192,2122720.482,3023953.861,1310744.953,21
+42193,2122256.074,3021295.76,2184106.681,21
+42194,2118424.019,3020614.134,1303917.828,21
+42195,2117765.739,3016086.553,1305072.493,21
+42196,2115443.514,3016974.43,2178181.283,21
+42197,2113955.045,3013651.962,1298490.171,21
+42198,2112591.12,3013984.293,1298217.589,21
+42199,2108934.384,3009530.711,2174000.557,21
+42200,2107814.388,3008971.69,1295488.026,21
+42201,2107440,3008046.788,1289208.494,21
+42202,2103182.869,3006491.572,2172112.623,21
+42203,2103952.148,3001186.514,1286520.861,21
+42204,2100374.22,3003852.207,1286164.415,21
+42205,2099290.967,3000962.748,2166227.995,21
+42206,2099128.185,2998229.268,1283571.797,21
+42207,2481367.662,2998478.218,1277961.33,21
+42208,2093051.106,2995600.814,2164023.517,21
+42209,2094472.102,2995086.898,1275077.465,21
+42210,2089539.556,2992076.414,1275621.213,21
+42211,2086468.949,2992108.352,2158547.418,21
+42212,2087705.355,2989947.963,1270896.147,21
+42213,2083375.509,2988222.098,1270674.218,21
+42214,2081472.496,2987471.868,2152998.784,21
+42215,2081223.774,2985861.689,1267417.285,21
+42216,2077896.257,2984500.978,1263745.208,21
+42217,2077633.426,2981697.726,2152550.937,21
+42218,2070639.591,2981552.381,1258192.738,21
+42219,2073988.895,2981000.131,1261923.298,21
+42220,2068023.018,2979188.564,2144973.917,21
+42221,2066421.224,2976250.15,1250581.159,21
+42222,2065797.974,2977012.179,1244230.318,21
+42223,2063532.135,2975232.444,2134402.446,21
+42224,2062192.501,2971904.868,1241707.759,21
+42225,2058802.633,2973604.592,1238815.732,21
+42226,2058641.659,2971925.598,2099174.055,21
+42227,2056232.772,2968828.119,1201513.017,21
+42228,2049278.989,3330983.178,1198115.592,21
+42229,2049159.642,2967431.047,2091902.984,21
+42230,2044973.357,2965342.704,1191428.686,21
+42231,2043664.511,2966409.026,1189064.806,21
+42232,2041720.276,2963261.942,2082361.385,21
+42233,2038884.835,2962325.999,1181848.585,21
+42234,2424507.465,2962367.243,1179338.232,21
+42235,2032950.644,2959186.156,2074400.447,21
+42236,2034891.132,2959041.481,1171429.726,21
+42237,2030414.704,2959527.104,1168761.412,21
+42238,2029866.375,2955500.707,2067960.917,21
+42239,2026418.563,2955795.243,1159644.422,21
+42240,2026030.925,2954746.832,1160709.07,21
+42241,1797367.411,2721971.171,1643166.142,21
+42242,1777856.34,2700537.629,717280.3857,21
+42243,1771981.756,2671269.508,715427.7573,21
+42244,1765599.631,2675159.521,1612069.561,21
+42245,1760848.471,2670462.643,691421.8871,21
+42246,1751925.588,2665281.392,1203508.053,21
+42247,1738131.06,2659449.398,662615.6655,21
+42248,1736662.653,2654160.311,662067.1464,21
+42249,1732233.182,2652543.493,649749.8541,21
+42250,1727180.65,2645812.666,876193.8544,21
+42251,1721839.007,2644285.218,1005701.922,21
+42252,1716622.11,2637270.334,616639.9194,21
+42253,1714288.616,2636271.616,616038.8862,21
+42254,1708175.542,2630500.296,638963.4867,21
+42255,1706272.428,2994443.017,755125.1247,21
+42256,1699467.94,2622576.215,804190.7971,21
+42257,1696801.823,2622953.992,897325.8095,21
+42258,1693777.447,2616787.656,566693.3836,21
+42259,1687836.733,2614845.464,565943.0619,21
+42260,1686331.367,2610691.278,809808.4373,21
+42261,1680235.68,2608732.302,775834.3075,21
+42262,1679227.024,2604340.643,673410.1219,21
+42263,1673928.408,2603059.387,697620.8547,21
+42264,1670412.815,2598581.891,680073.4973,21
+42265,1668849.085,2595642.771,668698.8631,21
+42266,1662758.778,2594827.67,660753.4932,21
+42267,1661846.224,2588116.977,653879.3696,21
+42268,1656617.094,2589102.83,1298151.537,21
+42269,1655229.006,2584807.518,484997.2826,21
+42270,1650189.384,2581908.436,544058.7718,21
+42271,1647978.377,2579575.672,1319964.871,21
+42272,1643117.852,2577177.303,471147.7785,21
+42273,1637390.743,2573730.636,923759.5182,21
+42274,1634204.451,2571744.129,454092.3896,21
+42275,1628011.427,2569088.26,454574.8843,21
+42276,1625474.287,2565516.311,446230.9673,21
+42277,1621761.39,2931154.541,689969.1148,21
+42278,1616671.962,2560296.254,763699.7809,21
+42279,1613089.512,2560425.091,422204.2412,21
+42280,1606708.284,2555195.378,423349.4906,21
+42281,1603219.646,2554945.666,438444.5251,21
+42282,1597564.167,2551068.869,604772.9671,21
+42283,1594521.051,2549404.115,620214.4915,21
+42284,1590547.271,2547375.476,673332.5184,21
+42285,1585311.715,2544279.69,386095.9803,21
+42286,1582048.59,2542626.382,385799.3806,21
+42287,1577366.722,2540166.92,646229.1122,21
+42288,1573000.552,2536603.834,612471.5394,21
+42289,1570541.201,2536251.836,660013.3753,21
+42290,1563657.708,2533534.814,354372.6093,21
+42291,1563105.93,2529917.291,353845.461,21
+42292,1552725.541,2530150.545,346250.9733,21
+42293,1551093.419,2525716.862,594530.9918,21
+42294,1545671.553,2524791.563,630142.9996,21
+42295,1540189.623,2522473.564,327445.8234,21
+42296,1538451.129,2519326.448,325953.1493,21
+42297,1532157.172,2518721.282,319749.8037,21
+42298,1528486.45,2516263.235,567110.0861,21
+42299,1524512.43,2512533.12,598013.23,21
+42300,1519723.64,2511843.127,300215.1112,21
+42301,1517651.261,2511885.052,298871.0965,21
+42302,1511560.096,2506703.624,290507.5405,21
+42303,1508957.817,2507591.232,538916.2128,21
+42304,1504965.293,2504149.669,561548.7986,21
+42305,1502768.224,2503136.673,269310.2164,21
+42306,1497096.39,2501680.957,267885.9095,21
+42307,1496285.418,2500218.368,535485.8698,21
+42308,1490263.288,2497385.33,499613.7108,21
+42309,1486617.382,2498060.834,513604.6562,21
+42310,1485892.592,2494727.793,236978.5734,21
+42311,1479282.34,2492497.724,235308.3687,21
+42312,1476621.831,2494503.521,497580.6004,21
+42313,1474625.723,2854705.448,463167.2183,21
+42314,1469853.703,2490722.352,468971.7682,21
+42315,1465952.45,2487565.595,207371.0065,21
+42316,1461473.663,2485814.234,205852.3858,21
+42317,1458461.008,2484921.338,461209.746,21
+42318,1454480.252,2483725.509,426856.1718,21
+42319,1451970.997,2480638.246,427061.6681,21
+42320,1446974.718,2481552.969,179646.9738,21
+42321,1443889.024,2478496.284,177595.966,21
+42322,1442141.198,2844367.773,425719.2815,21
+42323,1436013.876,2477025.426,392923.3543,21
+42324,1435126.477,2473709.419,388488.6161,21
+42325,1428824.628,2475003.298,154868.7808,21
+42326,1427445.559,2471479.726,155293.4658,21
+42327,1422877.372,2471546.509,394733.2727,21
+42328,1419780.031,2470456.927,365187.8239,21
+42329,1415342.707,2467186.637,361457.6161,21
+42330,1414228.709,2467530.27,144015.9444,21
+42331,1409643.669,2465010.14,145083.3961,21
+42332,1407401.228,2464668.744,372962.7472,21
+42333,1404228.004,2462878.763,344345.7276,21
+42334,1401546.213,2461979.382,340632.7814,21
+42335,1399530.057,2459600.814,135030.3626,21
+42336,1397422.66,2460125.487,136049.1046,21
+42337,1392613.708,2456588.352,352538.2861,21
+42338,1392232.435,2456615.311,325308.3158,21
+42339,1389223.895,2455977.487,321190.5566,21
+42340,1385774.464,2452536.506,126679.1753,21
+42341,1384722.601,2453750.759,127646.8558,21
+42342,1380631.357,2450778.639,333527.4134,21
+42343,1379104.327,2449683.291,307749.1694,21
+42344,1376440.973,2450578.22,253126.6082,21
+42345,1373459.503,2446784.054,266488.5401,21
+42346,1369269.641,2446331.299,257360.2693,21
+42347,1365935.625,2445102.895,252705.9394,21
+42348,1364444.557,2444641.892,248976.792,21
+42349,1361132.751,2442773.905,245261.7246,21
+42350,1359375.964,2441367.535,744646.2924,21
+42351,1356424.718,2440256.681,111958.7643,21
+42352,1354232.826,2440797.973,192230.0623,21
+42353,1351410.219,2803947.246,777063.5935,21
+42354,1349689.771,2437561.554,110224.432,21
+42355,1346444.07,2435009.462,371446.3657,21
+42356,1344291.962,2434334.703,107693.2206,21
+42357,1342081.532,2433744.423,110298.6814,21
+42358,1340553.976,2430501.465,106603.3053,21
+42359,1337267.681,2428526.715,289464.6569,21
+42360,1335930.837,2428640.979,104539.9766,21
+42361,1333268.956,2426911.531,110510.2232,21
+42362,1331263.671,2422939.483,109960.3691,21
+42363,1327928.198,2423412.146,109354.4657,21
+42364,1326283.985,2420875.928,108414.9817,21
+42365,1322267.291,2418301.137,107903.7181,21
+42366,1320764.329,2416943.617,106978.4638,21
+42367,1317367.478,2416105.288,106600.5511,21
+42368,1315167.265,2411845.628,105818.7206,21
+42369,1311774.885,2408770.863,104704.0804,21
+42370,1309819.238,2408057.126,104334.5593,21
+42371,1307821.316,2404090.297,103254.1842,21
+42372,1303555.493,2404811.099,102910.1192,21
+42373,1302393.1,2400513.725,101879.6993,21
+42374,1300002.388,2398609.11,101012.5226,21
+42375,1297010.904,2395998.509,100431.4563,21
+42376,1293749.695,2396402.173,99489.30344,21
+42377,1291928.861,2391119.317,98663.06995,21
+42378,1287005.326,2390437.569,98260.00802,21
+42379,1286525.031,2388598.539,96812.71907,21
+42380,1281713.355,2386575.534,96376.29286,21
+42381,1281787.482,2384608.838,95652.44219,21
+42382,1277406.203,2380998.322,94252.22571,21
+42383,1275921.237,2380668.059,94177.2102,21
+42384,1272741.864,2376784.167,92768.81178,21
+42385,1271139.637,2376552.513,92299.59998,21
+42386,1268218.811,2373951.044,91325.83276,21
+42387,1266544.62,2370519.257,90480.28137,21
+42388,1263451.234,2370206.751,89536.54472,21
+42389,1261196.338,2367150.106,89050.89588,21
+42390,1259117.647,2366396.56,87863.05596,21
+42391,1258009.933,2362431.716,87643.74595,21
+42392,1253737.064,2361985.167,86276.30109,21
+42393,1253433.817,2359305.623,85604.00848,21
+42394,1250622.476,2358157.017,83770.24453,21
+42395,1247624.142,2354012.436,82361.52966,21
+42396,1246964.734,2355253.034,81645.19114,21
+42397,1244313.144,2350276.326,80667.25619,21
+42398,1245032.257,2285208.033,79930.70415,21
+42399,1241777.5,2270646.977,78588.528,21
+42400,1241422.881,2266167.525,77906.70795,21
+42401,1240640.941,2259681.829,76942.36422,21
+42402,1238424.769,2253130.407,76119.82615,21
+42403,1238267.951,2251052.96,75033.76797,21
+42404,1236018.611,2242106.181,74207.29722,21
+42405,1235643.574,2238643.214,73196.60846,21
+42406,1234974.122,2231846.798,72289.68469,21
+42407,1232110.089,2227531.395,71466.87305,21
+42408,1232323.447,2222080.927,70330.95111,21
+42409,1231117.405,2215631.246,69500.13391,21
+42410,1228150.843,2211261.393,68905.18039,21
+42411,1230069.795,2206950.082,67316.98009,21
+42412,1225410.198,2201383.77,67002.62309,21
+42413,1226357.242,2197374.768,66017.14349,21
+42414,1225396.662,2192335.108,64819.0525,21
+42415,1223489.318,2188767.818,64318.20133,21
+42416,1222408.777,2183636.049,63091.83568,21
+42417,1220812.206,2178802.118,62214.00107,21
+42418,1220607.581,2175157.891,61534.63704,21
+42419,1218290.01,2170201.518,60483.09956,21
+42420,1218807.753,2167506.11,60368.64539,21
+42421,1214137.682,2159967.229,54649.79096,21
+42422,1211611.79,2156085.619,54130.78016,21
+42423,1210560.532,2150839.443,53579.46694,21
+42424,1208636.167,2146746.849,52650.19295,21
+42425,1205986.712,2141293.507,52561.64942,21
+42426,1594972.006,2136865.101,51568.06468,21
+42427,1203783.606,2133539.675,50992.52867,21
+42428,1200481.456,2127697.182,50405.17109,21
+42429,1198853.492,2124795.399,50009.18115,21
+42430,1197138.709,2120003.507,49055.86313,21
+42431,1195612.725,2116060.421,48857.27252,21
+42432,1194078.453,2110456.404,47562.99376,21
+42433,1191176.378,2107906.484,47491.78176,21
+42434,1188623.841,2102854.182,46736.36909,21
+42435,1188337.005,2099225.42,45813.44447,21
+42436,1185118.445,2093638.092,45530.52438,21
+42437,1184084.316,2092671.489,44580.38365,21
+42438,1181522.923,2086097.279,44011.03071,21
+42439,1179946.672,2083627.903,43367.80719,21
+42440,1177223.759,2078761.572,42832.89839,21
+42441,1176042.88,2075516.037,41875.57552,21
+42442,1173504.921,2071317.679,41410.75606,21
+42443,1171180.774,2067653.494,40597.85111,21
+42444,1561779.7,2064071.644,40004.50134,21
+42445,1167825.366,2061330.06,38867.76107,21
+42446,1165160.94,2055972.638,37913.67297,21
+42447,1563595.444,2054180.38,37440.41406,21
+42448,1160988.041,2048891.729,36335.74757,21
+42449,1159298.669,2046101.778,36140.77111,21
+42450,1557810.002,2042366.229,34974.43548,21
+42451,1154975.005,2039753.229,34690.54124,21
+42452,1153052.872,2035881.188,33995.10266,21
+42453,1551975.791,2032364.681,33102.96965,21
+42454,1149087.283,2029083.608,32781.47876,21
+42455,1144999.632,2026432.061,32065.10831,21
+42456,1143896.844,2022359.883,31275.14524,21
+42457,1141326.941,2020069.45,31465.8131,21
+42458,1139826.146,2016400.309,30670.83913,21
+42459,1136945.754,2012970.6,30324.10446,21
+42460,1134242.549,2010919.61,29838.70124,21
+42461,1132932.731,2006924.689,29257.82841,21
+42462,1130349.936,2003693.623,29093.22185,21
+42463,1127955.314,2001138.055,28361.14316,21
+42464,1126406.656,1998403.606,28173.45903,21
+42465,1123466.813,1995180.517,27687.66537,21
+42466,1121276.701,1991441.93,27040.20499,21
+42467,1120046.594,1989879.897,26853.12047,21
+42468,1116969.649,1985798.993,26238.00105,21
+42469,1114842.897,1984209.335,26021.56781,21
+42470,1112820.5,1979815.706,25307.56651,21
+42471,1110347.558,1977980.128,24997.40709,21
+42472,1109020.757,1974333.316,24665.56247,21
+42473,1105795.387,1971779.503,24214.88875,21
+42474,1104970.84,1970743.19,23629.60946,21
+42475,1102234.719,1965164.544,23303.7985,21
+42476,1099430.853,1964093.945,22862.05797,21
+42477,1099074.74,1961526.842,22468.80251,21
+42478,1095270.157,1957524.348,22078.1319,21
+42479,1094334.432,1955715.689,21527.57499,21
+42480,1092953.221,1951763.836,21299.95797,21
+42481,1159776.857,2030757.705,37323.56668,21
+42482,1159395.187,2027578.956,52512.34428,21
+42483,1157515.8,2027097.335,44981.05209,21
+42484,1158435.269,2025584.631,46618.25826,21
+42485,1156541.643,2022708.987,46318.35166,21
+42486,1155699.369,2021508.038,46269.11279,21
+42487,1154718.666,2019364.489,46643.40777,21
+42488,1154079.669,2019277.022,48182.79036,21
+42489,1153152.897,2015698.559,47011.73286,21
+42490,1152572.911,2014106.85,46594.44192,21
+42491,1149063.471,2013606.976,46574.23194,21
+42492,1147116.602,2011132.761,46118.76139,21
+42493,1145914.556,2008754.538,45944.19007,21
+42494,1144947.957,2007894.48,45669.99393,21
+42495,1143217.721,2006014.293,45258.62799,21
+42496,1140780.074,2004107.853,44797.25994,21
+42497,1140547.09,2002673.187,44735.20206,21
+42498,1139117.194,2000705.558,44198.2936,21
+42499,1137366.172,1999280.174,43961.67345,21
+42500,1136178.396,1997771.817,43863.09213,21
+42501,1134731.609,1996067.212,43061.86789,21
+42502,1133694.399,1993266.201,43513.5178,21
+42503,1131567.796,1993999.473,42311.08073,21
+42504,1130565.072,1989564.656,42985.3693,21
+42505,1127760.865,1989865.547,42306.46613,21
+42506,1128747.764,1986992.52,42328.74435,21
+42507,1125496.328,1985852.167,41780.22063,21
+42508,1124291.803,1983445.706,41785.73383,21
+42509,1123457.016,1982150.928,41446.15786,21
+42510,1120079.436,1981654.988,41384.90022,21
+42511,1121853.156,1979539.949,40971.43876,21
+42512,1118354.492,1978677.468,40893.4562,21
+42513,1118969.303,1976785.578,40332.64176,21
+42514,1117495.83,1975867.542,40908.4562,21
+42515,1116756.719,1975144.841,39786.29418,21
+42516,1118256.608,1973883.213,40332.40658,21
+42517,1114898.104,1972986.271,39796.83633,21
+42518,1115925.698,1970982.956,39690.80258,21
+42519,1113707.321,1971644.721,39557.44109,21
+42520,1115496.663,1969858.406,39201.74713,21
+42521,1112523.115,1969871.945,39066.08449,21
+42522,1113492.801,1967507.365,38895.6647,21
+42523,1113278.081,1968178.795,38565.29343,21
+42524,1111428.784,1966540.639,38444.70014,21
+42525,1112090.366,1964957.247,38297.96864,21
+42526,1111840.874,1966152.347,37933.85606,21
+42527,1110855.775,1964110.026,37893.49287,21
+42528,1111533.574,1963986.7,37829.35129,21
+42529,1109599.9,1962353.81,37435.65232,21
+42530,1110168.04,1963957.09,37277.89589,21
+42531,1110062.486,1961036.399,37035.20453,21
+42532,1110905.865,1961223.076,37012.34259,21
+42533,1111221.958,1960265.855,36495.60058,21
+42534,1111050.295,1959204.805,36387.51127,21
+42535,1111038.457,1959263.886,35994.40827,21
+42536,1110419.818,1959350.084,35954.54051,21
+42537,1110557.45,1958078.363,35430.90767,21
+42538,1111521.02,1956874.386,35484.36484,21
+42539,1111105.355,1958123.602,34779.56373,21
+42540,1110539.05,1955905.115,34904.67164,21
+42541,1040035.504,1877580.601,11226.2223,21
+42542,1037455.216,1875090.239,10706.29164,21
+42543,1038194.221,1875330.691,10539.41267,21
+42544,1036048.38,1873929.757,10462.74655,21
+42545,1037462.867,1874728.271,10002.6821,21
+42546,1036653.102,1873807.729,9959.130342,21
+42547,1036702.32,1874232.186,9636.0979,21
+42548,1035788.537,1874478.407,9556.695173,21
+42549,1036233.05,1872237.464,9142.043768,21
+42550,1036316.817,1873722.237,9172.559198,21
+42551,1035522.474,1873271.869,8752.641656,21
+42552,1034612.49,1872369.377,8835.407368,21
+42553,1035811.369,1871501.204,8329.684024,21
+42554,1033723.818,1870258.236,8209.195767,21
+42555,1032505.007,1871713.85,8242.493125,21
+42556,1033371.166,1870986.646,7498.000025,21
+42557,1030638.495,1872098.39,8057.88293,21
+42558,1031443.303,1870320.175,7407.198827,21
+42559,1029823.296,1871234.068,7376.20339,21
+42560,1029504.359,1871022.8,7190.567395,21
+42561,1027615.624,1871496.623,6917.599825,21
+42562,1027451.807,1870692.684,6789.817606,21
+42563,1420792.511,1871554.878,6636.206304,21
+42564,1025654.916,1872488.908,6422.885728,21
+42565,1027055.575,1870860.248,6102.633044,21
+42566,1425673.81,1873327.63,6024.994821,21
+42567,1024484.276,1870740.275,5864.748712,21
+42568,1022310.835,1872758.295,5465.447768,21
+42569,1425974.4,1871993.196,5602.624871,21
+42570,1020695.166,1873120.298,5260.341237,21
+42571,1021861.145,1872538.742,5182.909397,21
+42572,1423042.148,1873423.526,5018.699782,21
+42573,1018942.658,1873317.615,4843.984733,21
+42574,1018680.059,1873658.957,4760.692716,21
+42575,1420296.006,1873320.587,4435.512024,21
+42576,1016594.462,1874278.379,4567.500797,21
+42577,1016122.79,1874961.844,4023.827097,21
+42578,1418540.799,1874229.625,4160.270355,21
+42579,1014001.873,1875729.925,3810.704129,21
+42580,1013694.287,1875066.774,3797.25496,21
+42581,1416363.6,1876584.853,3617.456387,21
+42582,1011244.66,1875602.689,3414.512435,21
+42583,1010990.731,1876705.865,3215.726272,21
+42584,1412992.759,1876880.121,3163.013466,21
+42585,1008979.579,1877044.922,2825.666471,21
+42586,1008808.079,1877058.106,2764.959454,21
+42587,1409921.371,1879045.112,2551.27129,21
+42588,1007631.891,1877800.855,2392.057682,21
+42589,1004720.601,1879833.55,2149.751443,21
+42590,1408343.468,1878851.648,1945.579759,21
+42591,1004014.356,1879891.522,1898.510292,21
+42592,1001125.621,1879456.79,1838.278938,21
+42593,1407046.725,1880967.917,1812.122266,21
+42594,999350.2049,1880090.657,1763.401673,21
+42595,999651.3546,1882923.094,1730.284915,21
+42596,1402670.257,1883166.215,1643.361719,21
+42597,997887.3182,1883999.509,1628.055133,21
+42598,995319.5391,1883751.241,1576.019715,21
+42599,1400874.706,1885326.326,1541.682493,21
+42600,992596.0862,1884755.351,1470.412869,21
+42601,996282.9307,1884955.875,1399.779259,21
+42602,998085.6407,1888089.193,9539.682757,21
+42603,998408.4046,1888129.751,10204.71658,21
+42604,997770.5068,1888043.876,8107.041781,21
+42605,999189.1299,1886532.961,8645.424446,21
+42606,997420.8985,1888521.891,8886.393325,21
+42607,999047.9549,1886871.881,8557.007248,21
+42608,997800.384,1888327.54,8576.42331,21
+42609,998919.2375,1886350.856,8504.509867,21
+42610,998008.232,1888456.536,8488.232384,21
+42611,998270.8764,1886214.448,8313.225856,21
+42612,998088.8376,1886743.46,8435.373026,21
+42613,998919.8044,1887232.595,8140.133531,21
+42614,997845.4275,1886485.892,8206.836505,21
+42615,998183.3123,1886360.665,8050.643064,21
+42616,997858.0945,1887046.391,8051.397037,21
+42617,997800.8182,1886118.145,7978.660384,21
+42618,997492.2736,1886177.079,7821.429348,21
+42619,998178.1546,1885508.321,7943.421704,21
+42620,997352.9136,1886217.598,7609.422824,21
+42621,997584.1193,1885616.242,7591.998802,21
+42622,997778.6733,1885444.297,7675.562409,21
+42623,996850.8003,1885725.475,7397.505413,21
+42624,997091.2126,1885711.743,7462.259982,21
+42625,995798.1901,1884815.52,7164.582819,21
+42626,995538.6426,1887287.312,7425.755345,21
+42627,995027.7036,1888562.68,6949.319606,21
+42628,996147.4875,1888221.516,7191.649068,21
+42629,994389.9989,1888456.585,6892.693537,21
+42630,994808.3371,1888412.714,6985.181605,21
+42631,995065.6346,1887309.027,6695.054428,21
+42632,994498.0705,1888766.989,6956.649508,21
+42633,994213.8574,1887244.493,6937.916778,21
+42634,996267.73,1887339.192,6807.57584,21
+42635,995137.9633,1887442.132,6919.167919,21
+42636,995908.7852,1886677.142,6899.695473,21
+42637,996253.2891,1888287.219,7050.357743,21
+42638,995743.7802,1885683.274,6890.719189,21
+42639,995867.0951,1887358.001,7021.219945,21
+42640,996773.8814,1887179.009,7031.936331,21
+42641,995635.2911,1884898.124,7001.859649,21
+42642,996825.987,1886547.397,7153.131631,21
+42643,996261.5298,1886300.213,7003.001642,21
+42644,996898.0074,1884826.641,7273.46792,21
+42645,996729.6042,1886208.264,7123.202841,21
+42646,997558.0718,1884742.236,7125.266859,21
+42647,996830.8943,1884828.825,7403.552374,21
+42648,998074.4693,1885006.172,7264.696167,21
+42649,997242.4098,1885217.636,7385.398592,21
+42650,997597.4715,1883194.328,7394.767274,21
+42651,998667.7512,1884762.727,7406.052984,21
+42652,997978.8721,1883392.523,7504.941415,21
+42653,999520.7492,1883929.031,7535.968171,21
+42654,998642.9515,1883298.419,7664.736292,21
+42655,999619.6265,1883505.53,7687.046728,21
+42656,1000045.015,1883277.404,7656.383575,21
+42657,1000802.415,1883037.812,7805.655305,21
+42658,1000573.453,1883041.84,7806.348871,21
+42659,1001167.868,1881802.166,7945.751231,21
+42660,1000987.52,1882732.473,7957.450249,21
+42661,1000127.945,1881205.377,354.0725114,21
+42662,999201.9589,1881478.574,344.471748,21
+42663,998894.3948,1881196.761,334.080794,21
+42664,998968.1528,1880408.597,363.6613429,21
+42665,998720.0472,1880301.957,344.4760156,21
+42666,997578.4664,1879840.573,344.4774293,21
+42667,997959.3438,1880372.69,363.6659097,21
+42668,997464.0492,1878504.118,344.4803282,21
+42669,997584.4166,1879867.548,363.6689795,21
+42670,996442.2553,1878035.89,363.6705523,21
+42671,996633.4954,1879612.087,344.4847122,21
+42672,996473.1073,1877777.247,403.3220862,21
+42673,995443.6778,1877501.181,344.4877559,21
+42674,996485.2955,1878263.383,393.0976254,21
+42675,995697.0668,1877607.03,384.209553,21
+42676,995352.6591,1875873.866,393.1012647,21
+42677,994584.3794,1877234.077,384.2130972,21
+42678,995459.2984,1876614.823,432.5485468,21
+42679,994168.0471,1875912.196,384.2168162,21
+42680,994572.6617,1875747.041,442.6599114,21
+42681,994471.003,1876082.584,433.14443,21
+42682,993935.3019,1875098.381,442.6645175,21
+42683,994475.9154,1879817.348,442.6668431,21
+42684,992866.0671,1880517.14,462.7360197,21
+42685,994334.2702,1880651.074,481.7270408,21
+42686,992735.8816,1879699.359,462.7411973,21
+42687,993525.3194,1880298.133,520.5569372,21
+42688,992715.5188,1879111.058,501.6326602,21
+42689,993413.0645,1879509.406,520.5632478,21
+42690,991914.818,1878708.408,540.3175968,21
+42691,993328.1,1878881.703,520.5697849,21
+42692,992422.5705,1877939.676,540.3243821,21
+42693,992393.0122,1877318.197,510.6469748,21
+42694,992053.6186,1876944.497,520.5794678,21
+42695,992543.2565,1876298.936,500.6845617,21
+42696,992337.8049,1876218.659,520.5857591,21
+42697,992226.4553,1875362.548,461.6936174,21
+42698,992890.0105,1874880.124,510.1354264,21
+42699,991609.9273,1874111.597,461.6989191,21
+42700,993079.4957,1873530.578,480.6303744,21
+42701,992195.1436,1873735.838,461.7040623,21
+42702,992555.7511,1871981.08,460.3621518,21
+42703,991406.9727,1871979.844,441.4353974,21
+42704,993304.7822,1870791.364,420.9034792,21
+42705,992275.185,1871175.942,460.3693615,21
+42706,992356.1827,1870190.981,381.0136766,21
+42707,992934.9368,1868664.576,439.8394175,21
+42708,992482.9544,1869819.807,391.526144,21
+42709,992823.0568,1867179.418,400.010335,21
+42710,992779.8147,1867444.286,378.3590718,21
+42711,992771.0089,1867009.703,390.5261237,21
+42712,993387.8181,1865711.576,368.8745978,21
+42713,993694.0937,1864982.278,368.8762,21
+42714,992596.4579,1865376.965,359.37416,21
+42715,994118.2363,1863546.146,378.3674105,21
+42716,994793.8786,1863355.945,349.8575857,21
+42717,994698.8762,1862379.439,359.3787622,21
+42718,995188.8614,1861921.016,359.380284,21
+42719,995378.539,1860071.547,359.3818059,21
+42720,995883.2741,1861711.872,359.3833277,21
+42721,996703.5813,1858992.592,340.3287426,21
+42722,994643.1825,1860987.51,359.3862971,21
+42723,995279.3434,1859575.778,359.387819,21
+42724,995773.4184,1861612.9,359.3893408,21
+42725,995292.9468,1860522.327,359.3908626,21
+42726,996533.1877,1861640.54,359.3923845,21
+42727,996481.7999,1862588.16,359.3939063,21
+42728,997090.7016,1861440.808,359.3954281,21
+42729,996219.5101,1864135.105,359.3969499,21
+42730,998523.1679,1862372.346,359.3984717,21
+42731,996827.9166,1864052.48,359.3999935,21
+42732,998147.6826,1865106.841,368.9059176,21
+42733,998059.3851,1863666.292,359.4030741,21
+42734,999056.4239,1866599.494,359.4045958,21
+42735,998869.1295,1865855.192,378.3995375,21
+42736,999691.6943,1865373.536,359.407713,21
+42737,999594.894,1867733.566,359.4092347,21
+42738,999824.4936,1866314.32,378.4044342,21
+42739,1000615.219,1868093.151,359.4123519,21
+42740,1001317.847,1867681.498,359.4138735,21
+42741,1003019.266,1869083.961,378.4093307,21
+42742,1009237.263,1868073.049,359.4169905,21
+42743,1009439.451,1869620.706,378.4126209,21
+42744,1010337.99,1868830.65,359.4201075,21
+42745,1011609.7,1869956.316,378.415911,21
+42746,1013386.178,1870449.602,359.4232243,21
+42747,1013953.624,1871063.998,378.419201,21
+42748,1015492.69,1870878.437,368.9314332,21
+42749,1016454.027,1871458.556,378.42253,21
+42750,1017773.332,1871510.092,359.4294948,21
+42751,1019237.763,1871747.957,378.4258199,21
+42752,1018404.528,1873804.944,378.4275037,21
+42753,1020796.243,1871951.453,378.4291875,21
+42754,1020705.355,1873665.776,397.3645926,21
+42755,1021500.838,1873485.361,378.4326321,21
+42756,1022447.995,1874483.328,397.3682186,21
+42757,1022607.985,1873764.026,397.3700721,21
+42758,1024845.297,1874625.364,397.3719256,21
+42759,1023596.619,1875179.203,406.8185867,21
+42760,1025313.952,2250369.387,416.2508866,21
+42761,1025489.651,1876131.079,397.3776068,21
+42762,1025391.726,1875529.656,435.0732888,21
+42763,1027409.121,1878288.587,416.2569776,21
+42764,1026368.135,1878340.771,416.2590081,21
+42765,1028603.08,1877542.841,435.0797583,21
+42766,1028001.405,1880083.366,435.0819732,21
+42767,1028784.874,1877813.358,444.4728845,21
+42768,1029867.936,1880970.62,435.0864465,21
+42769,1030005.264,1879153.397,453.8527162,21
+42770,1030623.714,1881176.67,453.8551226,21
+42771,1031058.652,1879086.354,463.2195638,21
+42772,1033176.349,1882598.07,463.2220686,21
+42773,1032382.49,1880013.424,472.5735944,21
+42774,1033799.788,1882310.102,472.5761994,21
+42775,1034098.361,1881837.061,472.5788043,21
+42776,1035826.21,1882272.412,491.2412011,21
+42777,1035071.881,1882914.732,663.4862608,21
+42778,1037090.963,1882207.128,829.7803675,21
+42779,1036789.07,1884045.302,848.3987129,21
+42780,1037740.175,1883841.001,1011.772091,21
+42781,1234887.236,2078080.656,16900.34948,21
+42782,1246920.681,2092269.092,18159.95803,21
+42783,1253239.821,2093736.742,19325.13384,21
+42784,1255669.092,2096683.491,20088.17956,21
+42785,1258878.444,2098906.886,22225.1878,21
+42786,1262459.735,2101081.969,21542.1777,21
+42787,1266231.132,2103043.809,22011.76143,21
+42788,1268499.9,2103810.134,22352.75416,21
+42789,1272016.171,2104770.91,22703.31671,21
+42790,1274911.274,2108262.831,23020.59941,21
+42791,1277443.58,2111918.799,23128.11219,21
+42792,1279923.541,2115191.949,23673.51215,21
+42793,1283963.824,2115603.124,23779.81586,21
+42794,1285642.577,2115577.152,26088.49957,21
+42795,1288413.776,2119829.122,31164.96778,21
+42796,1291420.116,2118884.16,28720.89514,21
+42797,1293981.123,2120879.07,30420.69581,21
+42798,1295760.342,2121790.515,30905.17476,21
+42799,1301619.673,2123484.243,32456.1887,21
+42800,1303094.65,2124540.556,34436.38846,21
+42801,1307208.502,2124995.132,34200.60617,21
+42802,1307835.276,2126278.39,35753.35783,21
+42803,1311243.03,2127759.743,35906.33257,21
+42804,1313613.154,2128984.408,37239.30609,21
+42805,1315091.271,2128978.512,37814.71343,21
+42806,1318187.455,2131627.551,38726.41465,21
+42807,1319181.79,2130247.033,38602.85721,21
+42808,1322483.513,2133204.408,39043.9476,21
+42809,1323612.76,2133172.273,39643.52973,21
+42810,1325473.074,2133845.231,40755.3568,21
+42811,1327703.097,2134572.746,41025.34859,21
+42812,1330353.235,2135854.573,41821.77421,21
+42813,1331249.516,2137621.292,42447.97675,21
+42814,1333848.478,2136374.471,42761.8542,21
+42815,1335995.587,2139788.697,43619.47696,21
+42816,1337715.313,2137942.951,43949.33308,21
+42817,1338950.884,2140026.742,44877.72782,21
+42818,1340862.154,2141508.363,45428.73831,21
+42819,1343611.424,2139817.209,45982.04537,21
+42820,1344156.564,2142033.825,47053.83451,21
+42821,1346096.159,2142786.215,47491.42979,21
+42822,1348931.847,2143791.084,48176.48162,21
+42823,1350305.117,2143948.825,48861.14283,21
+42824,1351328.922,2145169.861,49668.5257,21
+42825,1352967.255,2144812.207,50683.23983,21
+42826,1355448.15,2146737.02,51458.80782,21
+42827,1356196.448,2146361.269,52034.94742,21
+42828,1358990.798,2147137.909,58867.45186,21
+42829,1359151.409,2147850.419,60740.00937,21
+42830,1361513.154,2148392.153,62277.37961,21
+42831,1363568.562,2149961.103,62782.88608,21
+42832,1364345.691,2149374.564,63826.5467,21
+42833,1366504.552,2149964.117,65081.0318,21
+42834,1366814.406,2151853.217,65659.38686,21
+42835,1369951.755,2151313.281,66597.19044,21
+42836,1370862.791,2152015.858,67676.55532,21
+42837,1372121.261,2152730.644,68245.86854,21
+42838,1374004.71,2152460.65,69143.4744,21
+42839,1374996.865,2155051.928,70085.18706,21
+42840,1376855.749,2153387.069,70961.3391,21
+42841,1437394.592,2221230.827,91482.09438,21
+42842,1444463.838,2226003.864,96246.30358,21
+42843,1446842.868,2228933.934,97930.14108,21
+42844,1449904.591,2229382.975,98827.01194,21
+42845,1453282.592,2231971.669,99688.13979,21
+42846,1455079.401,2233429.659,101327.035,21
+42847,1458074.684,2232442.117,101823.3344,21
+42848,1461259.329,2237003.739,103040.3411,21
+42849,1461862.421,2234957.656,103616.0009,21
+42850,1466938.604,2236579.097,105210.8746,21
+42851,1465620.993,2240758.398,105526.4636,21
+42852,1471331.705,2237529.103,106806.7801,21
+42853,1473276.281,2241189.324,107454.9799,21
+42854,1474021.49,2241276.636,108499.1173,21
+42855,1477224.697,2242423.529,109459.4185,21
+42856,1480464.328,2244548.648,110155.7361,21
+42857,1481407.85,2243475.853,111223.7725,21
+42858,1484351.802,2246557.779,111560.0273,21
+42859,1486097.625,2245638.547,113063.9431,21
+42860,1488403.294,2247633.119,113636.4129,21
+42861,1491806.393,2246672.7,114454.7388,21
+42862,1492661.223,2248742.782,115722.3024,21
+42863,1494441.884,2250990.126,115890.9222,21
+42864,1498083.004,2248709.035,116835.5365,21
+42865,1499430.15,2252134.716,118033.8081,21
+42866,1502089.964,2252351.586,118640.1162,21
+42867,1503447.799,2252280.632,119391.8728,21
+42868,1505873.764,2253654.672,120129.0901,21
+42869,1508935.391,2254933.822,121054.3157,21
+42870,1509478.456,2254028.469,122480.5364,21
+42871,1512795.387,2256323.008,122574.2165,21
+42872,1514768.544,2256347.194,124603.8847,21
+42873,1516032.174,2257120.553,126483.3571,21
+42874,1518397.55,2258302.526,127054.5343,21
+42875,1522040.605,2258107.334,127371.0849,21
+42876,1521522.555,2259198.092,129684.8805,21
+42877,1525809.005,2259272.897,129352.9025,21
+42878,1525944.465,2261478.304,130847.3494,21
+42879,1529818.006,2261367.056,132135.5298,21
+42880,1530029.67,2261886.972,132296.1642,21
+42881,1533124.173,2262133.669,133545.6752,21
+42882,1535516.567,2263949.37,134776.0851,21
+42883,1538239.19,2263478.978,135128.2666,21
+42884,1541146.551,2263749.331,136393.7749,21
+42885,1542389.578,2266252.637,136995.8813,21
+42886,1545587.837,2264557.703,138262.3085,21
+42887,1546123.495,2266661.995,138689.4068,21
+42888,1548119.826,2265748.406,139795.9618,21
+42889,1551291.332,2269575.611,140826.1189,21
+42890,1553413.295,2266289.115,141459.139,21
+42891,1553106.346,2269236.221,142161.2686,21
+42892,1558607.853,2269110.413,143547.6742,21
+42893,1557248.683,2269467.991,143733.0966,21
+42894,1560278.368,2271538.19,144876.3539,21
+42895,1562182.721,2269909.378,146001.2938,21
+42896,1565747.472,2271803.582,146539.9291,21
+42897,1564667.833,2271670.555,147060.0105,21
+42898,1569092.004,2272787.361,148382.4193,21
+42899,1569167.862,2273201.789,149063.6254,21
+42900,1572556.341,2272902.381,149572.5944,21
+42901,1571393.795,2275332.401,150551.2471,21
+42902,1572659.904,2276642.654,151266.0093,21
+42903,1573656.259,2277077.366,151592.7695,21
+42904,1571004.306,2278279.225,152202.2441,21
+42905,1573790.997,2280879.282,152836.0287,21
+42906,1572047.316,2279898.056,153587.2731,21
+42907,1573002.86,2280840.361,153871.3289,21
+42908,1572001.126,2284258.224,154773.5193,21
+42909,1571911.979,2282359.408,155042.43,21
+42910,1572805.344,2285950.776,155592.0995,21
+42911,1572867.921,2284380.842,156256.078,21
+42912,1571199.606,2287477.663,156975.15,21
+42913,1572415.612,2288348.067,157316.5927,21
+42914,1572698.87,2287256.272,157509.4119,21
+42915,1570473.345,2290006.554,158693.7437,21
+42916,1573574.384,2291252.956,158602.028,21
+42917,1570556.505,2289984.899,159861.4878,21
+42918,1572745.307,2294263.275,159730.7899,21
+42919,1571257.293,2292816.443,160282.4949,21
+42920,1571267.692,2294017.96,161096.1265,21
+42921,1571410.068,2295991.483,161094.9156,21
+42922,1571123.86,2296080.676,161987.9392,21
+42923,1571930.804,2297672.588,162274.2017,21
+42924,1571089.67,2298270.64,163202.2731,21
+42925,1570013.323,2298858.639,162835.6252,21
+42926,1571329.967,2300822.211,164221.19,21
+42927,1569847.476,2301746.258,164188.6291,21
+42928,1571451.741,2300789.51,164390.5121,21
+42929,1569029.652,2304411.199,165421.5894,21
+42930,1571980.955,2303386.161,165463.1607,21
+42931,1568297.815,2302647.701,166049.3786,21
+42932,1570770.278,2304564.136,166713.8382,21
+42933,1568829.506,2305540.909,166933.7612,21
+42934,1569761.023,2305558.874,167240.2154,21
+42935,1570362.299,2306979.447,167792.9376,21
+42936,1567384.643,2307884.801,168205.1472,21
+42937,1570201.136,2308515.011,168683.3268,21
+42938,1568713.004,2309356.223,168848.8947,21
+42939,1568866.226,2310979.021,169817.5416,21
+42940,1567314.096,2311300.834,169483.8569,21
+42941,1568061.191,2313070.825,170596.4388,21
+42942,1564315.705,2312370.006,170581.4475,21
+42943,1566528.576,2315143.377,171032.2248,21
+42944,1566249.756,2314525.964,171508.1912,21
+42945,1565612.333,2316309.267,171819.478,21
+42946,1564926.615,2316136.8,172408.8701,21
+42947,1565294.144,2318359.945,172426.2953,21
+42948,1564646.765,2318179.506,173054.5414,21
+42949,1564400.576,2319827.502,173401.5155,21
+42950,1564354.228,2319607.559,173840.3756,21
+42951,1565025.759,2321454.47,174092.2237,21
+42952,1562480.223,2321808.111,174620.1586,21
+42953,1564485.172,2323564.573,174634.937,21
+42954,1563350.224,2323945.347,175272.0839,21
+42955,1562570.278,2324496.93,175508.7106,21
+42956,1564245.047,2326539.888,176158.9999,21
+42957,1561462.588,2326298.199,175908.3177,21
+42958,1563379.732,2327042.397,176692.4639,21
+42959,1561560.943,2329240.477,176995.9128,21
+42960,1561495.157,2328905.696,177343.4174,21
+42961,1570316.882,2338151.433,181774.5824,21
+42962,1570724.022,2339276.435,183065.3849,21
+42963,1571420.108,2338595.856,186952.3748,21
+42964,1961865.123,2338462.544,187766.8505,21
+42965,1571311.446,2340381.067,187732.627,21
+42966,1573600.411,2340353.187,189017.3165,21
+42967,1573773.422,2337988.414,209527.3698,21
+42968,1574195.709,2340336.992,200212.1547,21
+42969,1574046.088,2340600.96,205766.153,21
+42970,1574531.121,2338276.802,206061.3901,21
+42971,1574559.219,2340481.439,210666.6142,21
+42972,1574523.804,2338833.493,209397.0581,21
+42973,1576786.621,2341506.37,215100.1091,21
+42974,1575320.473,2337803.595,213256.3615,21
+42975,1575984.707,2339905.128,216653.4764,21
+42976,1577391.945,2341008.045,218913.7998,21
+42977,1575803.605,2338091.59,219566.9659,21
+42978,1577142.684,2340077.402,222233.5357,21
+42979,1577697.773,2338068.529,223837.0122,21
+42980,1578341.418,2340050.156,224260.7351,21
+42981,1576607.803,2338957.308,227303.1536,21
+42982,1578593.867,2339564.039,228844.053,21
+42983,1578132.184,2338566.558,230188.9123,21
+42984,1579609.89,2338600.828,231975.7422,21
+42985,1577345.537,2338743.619,232150.8499,21
+42986,1580109.084,2338307.339,236690.4845,21
+42987,1579209.502,2339173.523,236200.4018,21
+42988,1580162.431,2338448.576,237946.6471,21
+42989,1967792.656,2337914.033,239149.9533,21
+42990,1579569.988,2339986.499,242422.5716,21
+42991,1580946.163,2339911.166,242389.4676,21
+42992,1579743.131,2339121.606,245654.9097,21
+42993,1581337.246,2338781.143,245866.0046,21
+42994,1581240.454,2340526.136,247135.0581,21
+42995,1580148.828,2337986.067,249666.7837,21
+42996,1581593.15,2338655.986,250353.3017,21
+42997,1581726.39,2339140.016,252832.449,21
+42998,1582063.531,2338315.254,254018.485,21
+42999,1581013.904,2338667.256,254933.9466,21
+43000,1582496.823,2338376.274,256754.0267,21
+43001,1582107.752,2337769.824,258840.1981,21
+43002,1582355.265,2337673.332,258952.2213,21
+43003,1582244.137,2338549.988,262070.8944,21
+43004,1584612.454,2337489.742,262692.5686,21
+43005,1580836.965,2337802.371,264579.7412,21
+43006,1584523.349,2336662.729,265102.4625,21
+43007,1583055.503,2337647.678,266761.3104,21
+43008,1582657.986,2336616.418,268293.6032,21
+43009,1584014.011,2337159.667,270194.005,21
+43010,1583265.246,2335839.746,269903.318,21
+43011,1584597.116,2336268.31,273052.9073,21
+43012,1583570.586,2336857.428,274927.2254,21
+43013,1583360.119,2335360.478,274471.5177,21
+43014,1973783.953,2335177.018,276488.2396,21
+43015,1583727.919,2336117.912,280535.4728,21
+43016,1584985.436,2335261.318,277631.4531,21
+43017,1584721.621,2334975.681,281424.0532,21
+43018,1585845.528,2335484.29,281629.567,21
+43019,1583380.05,2334156.333,284563.1485,21
+43020,1586193.67,2334489.607,284869.5296,21
+43021,1585049.475,2336924.318,286152.3128,21
+43022,1585793.998,2338391.909,289799.7882,21
+43023,1587611.092,2341918.604,291245.7729,21
+43024,1585757.084,2341504.283,291375.3513,21
+43025,1587354,2343635.576,294132.323,21
+43026,1586774.282,2346883.408,294754.667,21
+43027,1586711.742,2346446.476,295687.5277,21
+43028,1587909.797,2349852.242,297788.8536,21
+43029,1586218.417,2349838.215,296851.2913,21
+43030,1587836.141,2352026.848,301029.2384,21
+43031,1587246.17,2354541.686,300236.3754,21
+43032,1586717.457,2355160.794,301748.5312,21
+43033,1587783.082,2356119.027,304331.4338,21
+43034,1587784.841,2357555.006,303880.3463,21
+43035,1588072.661,2359197.424,306044.7773,21
+43036,1586721.333,2360564.168,306657.0693,21
+43037,1588791.253,2362766.174,309045.0277,21
+43038,1587178.866,2364372.466,308673.7424,21
+43039,1587682.049,2365449.435,310429.7405,21
+43040,1588104.725,2368390.182,312703.5172,21
+43041,1588101.071,2368398.171,312115.7558,21
+43042,1588541.95,2371265.222,314399.8758,21
+43043,1587600.844,2372259.893,315345.6175,21
+43044,1588566.411,2374262.365,315662.9887,21
+43045,1588166.38,2376647.301,318124.9657,21
+43046,1588374.938,2376515.222,318436.5263,21
+43047,1588142.593,2379883.208,320988.0262,21
+43048,1588173.485,2380336.065,320119.3477,21
+43049,1588216.036,2382540.459,322230.3717,21
+43050,1589273.906,2385024.618,324725.164,21
+43051,1588597.54,2384834.587,323164.9186,21
+43052,1588036.893,2388294.477,326368.6436,21
+43053,1588567.208,2389624.582,326476.0994,21
+43054,1590027.391,2390229.339,326661.5297,21
+43055,1586781.659,2393454.645,329722.7726,21
+43056,1589899.787,2393943.791,330567.4115,21
+43057,1588443.913,2395193.806,330241.0536,21
+43058,1588311.283,2398914.061,333207.3803,21
+43059,1590490.814,2398602.324,332077.274,21
+43060,1587722.029,2400575.696,335906.9775,21
+43061,1588940.378,2403492.102,333222.3016,21
+43062,1589884.063,2404277.415,338859.8232,21
+43063,1588486.199,2406605.455,336293.3717,21
+43064,1588265.038,2407208.571,338204.0842,21
+43065,1590471.1,2409213.419,340801.7067,21
+43066,1588366.974,2411872.049,339842.2421,21
+43067,1588188.614,2413243.802,341553.526,21
+43068,1590629.318,2413261.684,342811.8523,21
+43069,1588354.919,2416386.646,344946.7336,21
+43070,1589509.229,2418484.095,343244.2315,21
+43071,1589085.852,2419563.238,347912.0347,21
+43072,1588160.323,2421036.505,345278.39,21
+43073,1590286.479,2422634.961,348400.4949,21
+43074,1588358.561,2424630.573,349504.0521,21
+43075,1590063.496,2426745.337,350414.3801,21
+43076,1588407.822,2427233.152,350509.4548,21
+43077,1590345.281,2429559.225,351004.8049,21
+43078,1588427.45,2431924.001,353917.1814,21
+43079,1590207.666,2433352.425,353673.5437,21
+43080,1588231.208,2433896.12,355033.188,15.6
+43081,0,0,0,15.6
+43082,0,0,0,15.6
+43083,0,246.4154814,0,15.6
+43084,0,0,0,15.6
+43085,0,0,0,15.6
+43086,0,0,1713469.24,15.6
+43087,0,0,0,15.6
+43088,0,0,0,15.6
+43089,0,0,0,15.6
+43090,0,0,0,15.6
+43091,0,0,0,15.6
+43092,0,0,0,15.6
+43093,0,67227.47962,0,15.6
+43094,0,4818.653645,0,15.6
+43095,0,21703.95117,0,15.6
+43096,0,26904.26125,0,15.6
+43097,426619.0569,23512.08871,0,15.6
+43098,0,24202.48761,0,15.6
+43099,0,470474.7233,0,15.6
+43100,0,65875.84441,0,15.6
+43101,0,123917.0352,0,15.6
+43102,0,226083.8028,0,15.6
+43103,0,172345.982,0,15.6
+43104,0,183949.195,0,15.6
+43105,0,187049.5301,0,15.6
+43106,0,189264.6343,0,15.6
+43107,0,191573.2468,0,15.6
+43108,0,193502.0446,0,15.6
+43109,33470.2507,195850.9485,0,15.6
+43110,1838.425634,198017.2534,0,15.6
+43111,3112.670032,199899.4759,0,15.6
+43112,11465.81415,202402.3099,0,15.6
+43113,11529.7616,203753.8715,0,15.6
+43114,10125.00448,206008.1904,0,15.6
+43115,10843.95523,207532.028,0,15.6
+43116,11138.66475,635344.1995,0,15.6
+43117,11409.14864,211818.3988,0,15.6
+43118,11585.82654,212171.8962,0,15.6
+43119,11833.99103,215209.4445,0,15.6
+43120,12018.10208,217411.7734,0,15.6
+43121,12244.2481,219500.5216,1623209.356,15.6
+43122,12443.51534,220592.4656,0,15.6
+43123,12660.37622,193120.4797,0,15.6
+43124,12842.87316,194374.9001,0,15.6
+43125,13036.09719,281937.5561,0,15.6
+43126,13237.35905,631378.7563,0,15.6
+43127,13380.07182,226238.8334,0,15.6
+43128,13612.62413,233286.6928,0,15.6
+43129,13786.44718,29927.41817,0,15.6
+43130,13929.83235,30384.79424,0,15.6
+43131,14131.34092,30560.65078,0,15.6
+43132,14287.08567,718057.3478,0,15.6
+43133,14470.17926,75590.58519,0,15.6
+43134,14618.769,178019.8572,0,15.6
+43135,14784.45999,296260.0648,0,15.6
+43136,14951.9105,655953.9432,0,15.6
+43137,15131.96139,241475.6351,0,15.6
+43138,15262.43599,242508.4531,0,15.6
+43139,0,243803.5203,0,15.6
+43140,0,244862.7603,0,15.6
+43141,0,248546.7,0,15.6
+43142,0,251560.7879,0,15.6
+43143,62647.5323,254133.0712,0,15.6
+43144,3153.068045,257154.235,0,15.6
+43145,7898.788778,259349.4993,0,15.6
+43146,23846.37044,686639.187,0,15.6
+43147,15755.20044,264684.6695,0,15.6
+43148,17028.89578,267122.7748,0,15.6
+43149,17239.05708,270214.4408,0,15.6
+43150,17346.56233,271967.0464,0,15.6
+43151,17451.90333,275114.7345,0,15.6
+43152,17628.75298,277339.5683,0,15.6
+43153,17732.7303,279788.4787,0,15.6
+43154,316512.1797,282471.8551,0,15.6
+43155,37100.00863,248547.0654,0,15.6
+43156,34317.18566,251184.1055,1540833.886,15.6
+43157,113915.1391,358014.3577,0,15.6
+43158,97110.97412,275495.1496,0,15.6
+43159,88972.40402,288256.5003,0,15.6
+43160,93580.43274,301624.419,0,15.6
+43161,94177.91315,299755.7999,0,15.6
+43162,95142.82105,37804.40959,0,15.6
+43163,95824.55438,38237.24586,0,15.6
+43164,96513.83548,794301.2166,0,15.6
+43165,103595.9843,134643.8624,0,15.6
+43166,102439.5978,721667.1314,0,15.6
+43167,103819.3382,342453.6798,0,15.6
+43168,105580.5517,312905.3546,0,15.6
+43169,106467.8359,318615.111,0,15.6
+43170,108020.6133,320045.5574,0,15.6
+43171,109084.0545,322914.9741,0,15.6
+43172,110348.0924,324388.6951,0,15.6
+43173,91236.56409,327451.977,0,15.6
+43174,92434.30516,329230.4356,0,15.6
+43175,93811.79195,331212.7516,0,15.6
+43176,167376.8046,333448.5655,0,15.6
+43177,102362.2349,336282.7645,0,15.6
+43178,106930.8725,337764.0135,0,15.6
+43179,126039.302,339818.6572,0,15.6
+43180,118053.8967,342337.9234,0,15.6
+43181,120487.1253,342908.8843,0,15.6
+43182,121682.3623,344635.8446,0,15.6
+43183,122485.4282,772876.605,0,15.6
+43184,21158.70162,349360.4849,0,15.6
+43185,21221.80772,351255.1557,0,15.6
+43186,21295.42407,353249.0515,0,15.6
+43187,21403.70767,311715.4954,0,15.6
+43188,21511.65283,313701.4446,0,15.6
+43189,21579.49513,452877.8256,0,15.6
+43190,439358.0154,352252.0714,0,15.6
+43191,31368.90056,370271.1109,1465699.262,15.6
+43192,90214.15414,374137.2935,0,15.6
+43193,170740.4688,377302.5957,0,15.6
+43194,130339.9022,53104.20263,0,15.6
+43195,134618.198,53636.87253,0,15.6
+43196,136458.3947,990014.2552,0,15.6
+43197,136988.668,243034.3298,0,15.6
+43198,138205.2826,322481.2258,0,15.6
+43199,138914.3273,438256.873,0,15.6
+43200,139800.9604,812114.2049,0,15.6
+43201,141122.5737,392484.9743,0,15.6
+43202,141635.3516,392220.7048,0,15.6
+43203,142137.5099,390976.3084,0,15.6
+43204,142619.4174,390433.1958,0,15.6
+43205,142800.9923,390158.8039,0,15.6
+43206,120508.5743,388925.7456,0,15.6
+43207,120804.8943,388558.5522,0,15.6
+43208,121555.0645,387503.2581,0,15.6
+43209,203001.241,387054.389,0,15.6
+43210,133892.7434,810147.2242,0,15.6
+43211,131773.1086,385727.678,0,15.6
+43212,154610.7927,384673.9834,0,15.6
+43213,144860.9785,383663.7578,0,15.6
+43214,146163.1981,383250.002,0,15.6
+43215,146968.3026,382438.0673,0,15.6
+43216,147202.2887,381672.0399,0,15.6
+43217,147304.4426,380811.3865,0,15.6
+43218,147631.3595,380197.8206,0,15.6
+43219,148110.5998,325341.6689,0,15.6
+43220,23289.51155,748481.5143,0,15.6
+43221,23250.0527,438181.4933,0,15.6
+43222,23283.02554,362416.5841,0,15.6
+43223,23304.13323,367545.7776,0,15.6
+43224,23328.85228,365068.8622,0,15.6
+43225,533054.523,367935.4587,0,15.6
+43226,48294.34016,44661.17052,1397127.836,15.6
+43227,72756.49639,79681.36548,0,15.6
+43228,211332.2376,967239.0346,0,15.6
+43229,143060.898,234110.7618,0,15.6
+43230,151963.638,717489.7167,0,15.6
+43231,152716.5572,427657.1149,0,15.6
+43232,152695.0608,362448.2894,0,15.6
+43233,153185.8138,367843.1487,0,15.6
+43234,153455.6448,367302.9006,0,15.6
+43235,153185.6798,365357.1858,0,15.6
+43236,153798.7292,366513.516,0,15.6
+43237,153737.4747,364158.8864,0,15.6
+43238,153976.9588,363237.3847,0,15.6
+43239,130660.7745,363676.1505,0,15.6
+43240,130397.7729,784862.2879,0,15.6
+43241,131405.2483,361272.0707,0,15.6
+43242,214173.1949,359984.199,0,15.6
+43243,144832.278,359359.9395,0,15.6
+43244,141538.5443,357786.2154,0,15.6
+43245,163908.0067,357451.1512,0,15.6
+43246,154264.2417,356089.5679,0,15.6
+43247,155303.127,355745.0456,0,15.6
+43248,155950.8161,354299.8714,0,15.6
+43249,155445.5495,353634.0747,0,15.6
+43250,156293.3189,776503.7735,0,15.6
+43251,155838.2308,309320.2129,0,15.6
+43252,156451.4588,308751.2281,0,15.6
+43253,156165.3487,421624.3251,0,15.6
+43254,156614.5688,336888.966,0,15.6
+43255,23765.85424,346597.7703,0,15.6
+43256,23679.7556,347888.4805,0,15.6
+43257,23756.34257,338607.4698,0,15.6
+43258,23701.79422,41555.32278,0,15.6
+43259,536389.117,41319.15583,0,15.6
+43260,36105.58783,1320940.31,0,15.6
+43261,94692.40817,186662.4365,1334508.129,15.6
+43262,213070.3325,272805.0213,0,15.6
+43263,148088.3489,385653.06,0,15.6
+43264,158097.3667,329979.3478,0,15.6
+43265,158023.481,334994.6458,0,15.6
+43266,158238.2062,370177.7137,0,15.6
+43267,158152.7268,335526.4823,0,15.6
+43268,158316.1164,337151.0478,0,15.6
+43269,158183.5601,349374.6186,0,15.6
+43270,158701.809,343455.649,0,15.6
+43271,158473.8534,344137.5658,0,15.6
+43272,134836.0939,343991.5718,0,15.6
+43273,134807.2855,344773.5103,0,15.6
+43274,135269.1834,344865.1551,0,15.6
+43275,218918.7267,344477.4798,0,15.6
+43276,149559.6173,345266.0465,0,15.6
+43277,145723.1852,344959.7407,0,15.6
+43278,167390.7678,345205.4256,0,15.6
+43279,158230.2496,344814.0525,0,15.6
+43280,158981.2523,345694.8507,0,15.6
+43281,159247.2859,345324.9179,0,15.6
+43282,159263.5063,344891.008,0,15.6
+43283,159340.7372,304570.9584,0,15.6
+43284,159074.7769,303380.9661,0,15.6
+43285,159458.658,418548.5766,0,15.6
+43286,159293.1149,331629.1163,0,15.6
+43287,159328.9609,344397.9059,0,15.6
+43288,159360.6594,347207.3608,0,15.6
+43289,23726.93767,346756.4032,0,15.6
+43290,23643.51393,51011.45761,0,15.6
+43291,23721.32838,51047.99463,0,15.6
+43292,23643.67352,916573.6636,0,15.6
+43293,555633.7422,200007.798,0,15.6
+43294,37810.40742,280782.1793,0,15.6
+43295,87064.87557,398640.9218,0,15.6
+43296,221151.8724,331044.785,0,15.6
+43297,148845.891,337905.401,1277328.105,15.6
+43298,159641.146,336809.3482,0,15.6
+43299,159782.4794,337656.1603,0,15.6
+43300,159555.4738,336835.3587,0,15.6
+43301,159728.2712,337755.0766,0,15.6
+43302,159199.0538,337001.688,0,15.6
+43303,159573.8723,337228.9653,0,15.6
+43304,159090.8315,376951.5899,0,15.6
+43305,135715.4806,337267.8562,0,15.6
+43306,135827.7672,338157.3434,0,15.6
+43307,135656.3057,351787.5815,0,15.6
+43308,219377.9713,345395.7148,0,15.6
+43309,149912.6189,346847.3949,0,15.6
+43310,144505.9011,347050.4239,0,15.6
+43311,167680.724,346450.3434,0,15.6
+43312,157423.3319,347476.3703,0,15.6
+43313,158634.5846,346517.358,0,15.6
+43314,158240.2346,346856.8644,0,15.6
+43315,158373.5854,305312.588,0,15.6
+43316,158341.8668,304976.3065,0,15.6
+43317,157865.8599,419529.1344,0,15.6
+43318,157932.3219,333842.3907,0,15.6
+43319,158072.3976,344437.5856,0,15.6
+43320,157342.0936,350270.8809,0,15.6
+43321,159473.0254,350278.7612,0,15.6
+43322,160631.2773,52557.35578,0,15.6
+43323,23764.29645,52765.50893,0,15.6
+43324,23902.9496,937753.1382,0,15.6
+43325,24089.4315,208137.0226,0,15.6
+43326,24194.35936,285646.2042,0,15.6
+43327,589606.4182,411217.4523,0,15.6
+43328,49196.11188,351944.13,0,15.6
+43329,85336.37324,359139.6143,0,15.6
+43330,241268.9137,360589.7369,0,15.6
+43331,162578.3213,361586.2379,0,15.6
+43332,175740.3155,362262.7389,0,15.6
+43333,177754.6263,364485.0762,1225117.881,15.6
+43334,178728.5409,354177.3284,0,15.6
+43335,180162.2614,354882.7534,0,15.6
+43336,181747.166,356838.1377,0,15.6
+43337,183002.341,357087.0917,0,15.6
+43338,158230.3222,358914.3158,0,15.6
+43339,159240.5212,359244.6135,0,15.6
+43340,238979.5651,404888.022,0,15.6
+43341,173034.9734,361755.3813,0,15.6
+43342,185999.7072,364206.9095,0,15.6
+43343,194800.4217,382776.2834,0,15.6
+43344,191715.1286,374964.3889,0,15.6
+43345,193698.2119,377652.0699,0,15.6
+43346,195159.8392,378570.6978,0,15.6
+43347,196073.4616,334277.1875,0,15.6
+43348,197731.1967,335274.8183,0,15.6
+43349,198744.2575,452108.6547,0,15.6
+43350,199995.4096,377371.7991,0,15.6
+43351,201763.187,385060.7481,0,15.6
+43352,202431.148,383432.6643,0,15.6
+43353,204165.2549,389519.0858,0,15.6
+43354,205088.7764,58752.79044,0,15.6
+43355,206730.4762,59017.73194,0,15.6
+43356,207556.6749,1040200.505,0,15.6
+43357,28979.07344,248573.9523,0,15.6
+43358,29021.98716,317304.4597,0,15.6
+43359,29224.30684,448524.2352,0,15.6
+43360,692397.514,390266.556,0,15.6
+43361,98212.16057,395805.9357,0,15.6
+43362,110665.4302,396412.8853,0,15.6
+43363,292612.139,398401.7588,0,15.6
+43364,205329.4746,398692.1093,0,15.6
+43365,218962.0823,400941.4485,0,15.6
+43366,220607.0487,400596.7777,0,15.6
+43367,221090.0553,402473.8457,0,15.6
+43368,222935.1093,403761.6326,0,15.6
+43369,223962.8361,404165.9387,1177445.108,15.6
+43370,194202.2533,392498.3264,0,15.6
+43371,195389.786,394309.5647,0,15.6
+43372,281799.7515,394427.1131,0,15.6
+43373,224151.4358,395880.5591,0,15.6
+43374,218638.28,396942.5283,0,15.6
+43375,236606.0074,449595.1141,0,15.6
+43376,232047.373,399723.8263,0,15.6
+43377,232863.41,402411.6427,0,15.6
+43378,234358.2405,421788.604,0,15.6
+43379,235297.3686,364373.1368,0,15.6
+43380,236772.3499,365599.9477,0,15.6
+43381,236160.0056,482542.5005,0,15.6
+43382,236613.4914,418813.8764,0,15.6
+43383,236166.1969,411607.0701,0,15.6
+43384,236490.786,414776.5691,0,15.6
+43385,236426.6288,415513.5551,0,15.6
+43386,236308.8984,64219.20838,0,15.6
+43387,235955.7194,63693.96222,0,15.6
+43388,236724.8193,1102826.695,0,15.6
+43389,236181.576,252888.4706,0,15.6
+43390,31977.26196,372092.4948,0,15.6
+43391,32076.61817,449212.2924,0,15.6
+43392,32021.7408,414929.7071,0,15.6
+43393,757483.8495,413355.4768,0,15.6
+43394,142230.4978,413351.5259,0,15.6
+43395,123144.7716,413368.004,0,15.6
+43396,311116.4371,413271.853,0,15.6
+43397,227122.8802,412796.0909,0,15.6
+43398,236392.5366,412750.1293,0,15.6
+43399,237149.4924,412670.9404,0,15.6
+43400,236723.9109,412239.614,0,15.6
+43401,237032.3996,412496.3138,0,15.6
+43402,204481.7963,411848.0465,0,15.6
+43403,204481.7871,412376.8503,0,15.6
+43404,290977.9119,411337.1503,0,15.6
+43405,234548.9822,398430.7953,1133934.897,15.6
+43406,224593.2907,398158.1411,0,15.6
+43407,242353.6776,397682.4831,0,15.6
+43408,235873.7416,397717.1399,0,15.6
+43409,236307.0055,446671.7278,0,15.6
+43410,236217.4412,398758.5509,0,15.6
+43411,236184.6848,351212.4527,0,15.6
+43412,236189.3873,368597.0751,0,15.6
+43413,235834.4588,477551.4237,0,15.6
+43414,236181.445,413955.3881,0,15.6
+43415,235679.8128,407913.1858,0,15.6
+43416,235909.6996,408925.0199,0,15.6
+43417,235708.5587,412431.4862,0,15.6
+43418,235909.6787,64175.91215,0,15.6
+43419,235541.4775,63714.90533,0,15.6
+43420,235553.5798,1093741.408,0,15.6
+43421,235510.1008,252910.2212,0,15.6
+43422,235578.3025,356342.0322,0,15.6
+43423,31954.63018,451376.2005,0,15.6
+43424,32042.07538,408545.135,0,15.6
+43425,31980.63609,408868.4842,0,15.6
+43426,756722.2848,408937.2663,0,15.6
+43427,140744.712,408705.5086,0,15.6
+43428,124487.3628,408891.4241,0,15.6
+43429,307990.0181,408154.0991,0,15.6
+43430,226146.455,407807.1998,0,15.6
+43431,235325.4241,408689.3833,0,15.6
+43432,234977.8201,408011.1744,0,15.6
+43433,235347.9649,407143.2204,0,15.6
+43434,203092.7868,407994.2589,0,15.6
+43435,203175.1089,407141.409,0,15.6
+43436,288719.8543,407430.6801,0,15.6
+43437,232741.4097,406782.2322,0,15.6
+43438,223245.0212,407418.3007,0,15.6
+43439,240485.0615,392634.7013,0,15.6
+43440,234189.033,393127.6859,0,17.8
+43441,1093062.62,1445447.254,1306699.452,17.8
+43442,1016447.182,1448073.902,0,17.8
+43443,506800.8044,365735.3636,0,17.8
+43444,643022.7656,873872.8596,0,17.8
+43445,531951.8484,781309.3303,0,17.8
+43446,531140.3288,751372.4063,0,17.8
+43447,490372.6357,755062.9816,0,17.8
+43448,507142.4123,748735.4749,0,17.8
+43449,493558.9312,747424.4054,0,17.8
+43450,490975.89,141233.8296,0,17.8
+43451,489820.8764,140820.3202,0,17.8
+43452,487805.4927,1224584.456,0,17.8
+43453,485907.3251,906887.2776,0,17.8
+43454,484333.6561,541273.4198,0,17.8
+43455,482406.6059,810988.5167,0,17.8
+43456,90038.87464,742418.6677,0,17.8
+43457,89716.22566,739911.0446,0,17.8
+43458,902017.6345,738445.6088,0,17.8
+43459,577981.4338,736661.182,0,17.8
+43460,467248.1273,709062.5975,0,17.8
+43461,459414.4093,724978.912,0,17.8
+43462,493401.1562,717715.8266,0,17.8
+43463,477443.9921,718068.7722,0,17.8
+43464,473294.1883,715319.0695,0,17.8
+43465,472106.1672,715724.5155,0,17.8
+43466,398045.1751,712533.0325,0,17.8
+43467,397709.3019,713758.5996,0,17.8
+43468,508063.2497,712322.9067,0,17.8
+43469,487388.8136,710712.5943,0,17.8
+43470,467577.5425,712009.0931,0,17.8
+43471,453744.5646,677104.0323,0,17.8
+43472,455649.9271,676219.8359,0,17.8
+43473,446730.535,766897.3183,0,17.8
+43474,450187.3912,590573.2766,0,17.8
+43475,447771.7316,755695.3409,1033669.893,17.8
+43476,447363.1329,713679.311,0,17.8
+43477,498171.3958,696812.2957,0,17.8
+43478,448881.6763,712124.93,0,17.8
+43479,452348.7115,706043.6743,0,17.8
+43480,465142.0857,706027.5773,0,17.8
+43481,795844.0982,705763.2879,0,17.8
+43482,456773.7627,134686.8344,0,17.8
+43483,457099.0101,134511.1275,0,17.8
+43484,455456.1578,1218622.476,0,17.8
+43485,455247.5559,848367.0543,0,17.8
+43486,454408.7222,548669.7639,0,17.8
+43487,453281.5484,791801.5962,0,17.8
+43488,84875.89205,729010.6464,0,17.8
+43489,84715.87603,727427.0424,0,17.8
+43490,897088.2965,706213.3264,0,17.8
+43491,528505.6335,701225.4323,0,17.8
+43492,415672.1059,707328.9122,0,17.8
+43493,444443.62,704083.4127,0,17.8
+43494,470766.3281,702757.6558,0,17.8
+43495,449839.2221,703518.286,0,17.8
+43496,449238.7714,701655.5587,0,17.8
+43497,448423.3898,702218.8755,0,17.8
+43498,378941.7757,702597.3135,0,17.8
+43499,377748.705,700382.7307,0,17.8
+43500,488021.9837,701926.2251,0,20
+43501,2317907.932,2648000.337,396550.9443,20
+43502,2326376.668,2662514.126,130415.3308,20
+43503,1675699.445,2520166.504,21371.50396,20
+43504,800863.3142,1099292.29,19177.41879,20
+43505,1004484.544,1218236.11,54532.02469,20
+43506,1214842.111,1533046.076,32792.00758,20
+43507,1000962.614,1375518.146,227474.5898,20
+43508,1019917.212,1359793.106,33462.29242,20
+43509,1092394.162,1347060.519,1001124.044,20
+43510,1066899.522,1340691.556,32764.73858,20
+43511,1037603.614,1329514.242,32929.0776,20
+43512,1050184.723,1325762.828,32651.5905,20
+43513,1046243.011,1320937.14,32730.54582,20
+43514,1030399.658,232732.8692,32602.66199,20
+43515,1034279.365,1635002.546,32576.00585,20
+43516,1030735.572,1573849.674,32565.27321,20
+43517,1029542.679,1138612.597,32488.68833,20
+43518,1025367.656,1351412.195,32472.16008,20
+43519,1024500.69,1304227.826,32387.35134,20
+43520,164212.4156,1290855.095,38765.8175,20
+43521,1159379.388,1287779.109,36451.6829,20
+43522,1101597.064,1284146.527,36722.77421,20
+43523,971816.0656,1282369.707,37148.77773,20
+43524,1050966.341,1276384.049,37151.01179,20
+43525,1368766.301,1274655.783,37407.2342,20
+43526,1028397.156,1271225.469,37411.7432,20
+43527,1019594.309,1269572.091,37499.28942,20
+43528,1011632.747,1266073.722,37651.2802,20
+43529,1014849.935,1262282.56,37836.77896,20
+43530,887695.1281,1261953.189,37674.34965,20
+43531,1064315.772,1257988.533,0,20
+43532,1004337.61,1256400.411,0,20
+43533,1012013.139,1254061.861,0,20
+43534,1008755.752,1188414.931,0,20
+43535,1011708.936,1184955.942,0,20
+43536,1008039.503,1131599.626,163905.6946,20
+43537,1008634.52,1329866.867,8528.202149,20
+43538,1007335.65,1219219.528,26855.93768,20
+43539,972125.6436,1258201.456,39924.70687,20
+43540,973266.5064,1234869.806,31411.95674,20
+43541,1044224.692,1238541.083,32082.99996,20
+43542,1021814.153,1237720.673,32234.4059,20
+43543,991107.6687,1234634.765,997670.5067,20
+43544,1009770.829,1231333.133,32875.29558,20
+43545,1006602.138,214404.2018,43066.29348,20
+43546,1005392.316,1558325.173,36224.94731,20
+43547,1002964.632,1437376.766,38538.90172,20
+43548,1006523.002,1074755.864,38575.54618,20
+43549,1003571.154,1286075.605,38650.37068,20
+43550,1004312.138,1225024.981,38812.21881,20
+43551,158209.1523,1224936.472,38842.87197,20
+43552,1125971.176,1218555.545,39007.66276,20
+43553,1093814.921,1219243.278,38976.89737,20
+43554,954813.4865,1219573.837,39210.49917,20
+43555,1036071.368,1213645.113,39210.68949,20
+43556,1017773.997,1216217.364,39344.36783,20
+43557,1016313.037,1214086.352,39477.07997,20
+43558,1011867.942,1212485.456,39486.39153,20
+43559,1000660.189,1210696.382,39600.78917,20
+43560,1008107.898,1210180.498,39648.65678,21
+43561,2670790.52,3005070.73,2346679.268,21
+43562,2303488.502,2514142.552,1118904.455,21
+43563,827334.1239,1197119.968,75504.42437,21
+43564,1219190.643,1424851.952,309601.9452,21
+43565,1283226.532,1539603.02,403133.8921,21
+43566,1196201.209,1436593.293,348821.3315,21
+43567,1192046.384,1429839.493,495781.0538,21
+43568,1189050.005,1424564.873,337068.004,21
+43569,1186480.724,1420843.099,337469.4465,21
+43570,1183343.501,1415130.218,339951.63,21
+43571,1177687.987,1411727.254,340351.257,21
+43572,1166705.986,1406726.438,341006.507,21
+43573,1168156.83,1403519.532,343033.3556,21
+43574,1163081.689,1397609.071,343967.426,21
+43575,1161705.026,1395729.241,344772.6737,21
+43576,1155876.162,1390838.151,346552.0973,21
+43577,1156397.148,1389393.642,347553.8575,21
+43578,1152200.531,1383195.195,348040.7301,21
+43579,1149422.479,1381543.368,349868.7518,21
+43580,1148641.261,1378791.141,351166.3899,21
+43581,1145394.73,1376195.198,351956.4404,21
+43582,1142866.246,1370503.045,353537.3367,21
+43583,1140494.737,1363144.904,354114.9415,21
+43584,1140488.883,1349299.289,355902.3942,21
+43585,1136139.328,1348685.592,356433.0137,21
+43586,1135104.662,1345493.638,358288.1535,21
+43587,1133080.662,1345310.886,358836.1126,21
+43588,1131929.487,1338766.461,360356.1803,21
+43589,1128015.867,1338834.647,361413.5998,21
+43590,1128016.313,1337597.083,362526.0114,21
+43591,1127078.38,1331654.915,363116.5373,21
+43592,1123463.618,1332405.421,365136.7682,21
+43593,1122021.363,1327405.771,365375.7338,21
+43594,1121832.435,1326695.443,367253.4382,21
+43595,1118769.891,1325754.365,367558.658,21
+43596,1118016.956,1322459.896,368648.9272,21
+43597,1116713.808,1318152.187,370643.8445,21
+43598,1114554.254,1319880.825,370505.1197,21
+43599,1113842.21,1314338.932,372518.7956,21
+43600,1112188.219,1315727.47,372751.3966,21
+43601,1110304.969,1311489.829,374532.2078,21
+43602,1109134.551,1309864.032,383648.9586,21
+43603,1107927.484,1307253.101,397084.1455,21
+43604,1107297.712,1306875.764,390841.3288,21
+43605,1104446.189,1305152.671,395764.751,21
+43606,1104784.239,1302208.873,398012.0136,21
+43607,1101977.048,1300867.127,403531.1416,21
+43608,1103415.394,1298629.742,401378.6873,21
+43609,1100060.474,1298204.774,409377.1108,21
+43610,1098917.061,1293998.986,407159.7748,21
+43611,1098684.127,1294566.832,412106.1394,21
+43612,1096802.251,1291362.732,413027.5904,21
+43613,1095657.733,1291445.699,416306.5759,21
+43614,1094810.397,1288977.504,418259.7951,21
+43615,1094096.983,1287228.722,421587.7798,21
+43616,1090315.499,1284864.833,422323.8357,21
+43617,1092489.236,1284881.866,425354.5636,21
+43618,1090061.754,1283142.016,427165.5708,21
+43619,1089254.733,1279811.777,431073.0507,21
+43620,1087862.712,1279849.034,431058.178,21
+43621,1849409.218,2609007.018,384226.3129,21
+43622,1843269.743,2601919.563,377635.4909,21
+43623,1841225.72,2598497.46,377026.7918,21
+43624,1839832.072,2597420.303,377486.8293,21
+43625,1836662.415,2595289.341,378079.0472,21
+43626,1835327.437,2592035.561,377808.5234,21
+43627,1834565.578,2590621.138,378783.3045,21
+43628,1830858.526,2588372.609,378562.1729,21
+43629,1831620.174,2609686.094,380331.9585,21
+43630,1829539.888,2614673.705,379454.6157,21
+43631,1826847.844,2605161.949,380315.546,21
+43632,1826435.875,2606752.328,380590.257,21
+43633,1824746.698,2606092.547,382475.94,21
+43634,1822815.139,2601670.556,381820.0024,21
+43635,1822798.528,2603295.632,382317.142,21
+43636,1818890.297,2600818.403,384209.4093,21
+43637,1819948.211,2598969.718,382470.9295,21
+43638,1817925.652,2596185.105,383938.0129,21
+43639,1816164.929,2596742.134,385616.4154,21
+43640,1815610.712,2595112.563,384600.6447,21
+43641,1814740.661,2591980.804,386250.5065,21
+43642,1812367.419,2592951.846,386530.3825,21
+43643,1811530.184,2588597.447,386040.5748,21
+43644,1810143.234,2588605.086,388425.0909,21
+43645,1808763.419,2588341.073,388168.5335,21
+43646,1809032.661,2584354.23,387591.8522,21
+43647,1806053.509,2585627.309,389204.315,21
+43648,1806217.132,2583460.647,389992.676,21
+43649,1804313.243,2580454.528,389298.9286,21
+43650,1802775.68,2581270.427,391725.1662,21
+43651,1803241.681,2579187.821,389015.9949,21
+43652,1800484.264,2577653.314,391149.2163,21
+43653,1799724.743,2575107.013,389971.896,21
+43654,1799649.318,2576787.599,391430.7733,21
+43655,1798100.474,2572692.272,392704.2873,21
+43656,1796800.665,2573186.075,391049.1784,21
+43657,1789213.6,2571488.091,393465.4429,21
+43658,1786281.404,2569312.425,393231.8813,21
+43659,1786592.808,2570117.046,394092.7672,21
+43660,1782314.622,2566336.767,390913.5701,21
+43661,1783250.906,2566592.954,389219.775,21
+43662,1778538.631,2566119.333,389648.8676,21
+43663,1780605.327,2562721.241,391634.336,21
+43664,1774795.288,2563327.88,390570.6159,21
+43665,1776066.771,2561281.264,390375.3411,21
+43666,1774016.827,2561111.814,392140.6654,21
+43667,1771496.643,2557577.82,389904.0658,21
+43668,1771466.387,2559525.629,391319.4784,21
+43669,1768916.938,2555912.542,392765.3377,21
+43670,1768027.849,2555759.057,390760.6816,21
+43671,1765181.635,2555157.612,393758.6191,21
+43672,1765878.841,2552965.21,390430.1811,21
+43673,1763044.645,2553726.793,393316.4812,21
+43674,1760313.49,2550451.439,392390.5468,21
+43675,1761427.906,2549422.31,392154.4373,21
+43676,1758054.786,2549786.718,393668.039,21
+43677,1757539.137,2548221.991,392301.7689,21
+43678,1756376.395,2546176.483,393437.6016,21
+43679,1754985.072,2546372.524,394095.2842,21
+43680,1752394.932,2544691.535,392262.3575,21
+43681,1521526.82,2303778.094,192962.763,21
+43682,1506492.842,2287014.827,184637.3787,21
+43683,1500632.987,2281781.965,182703.1035,21
+43684,1498759.928,2276796.225,181358.5017,21
+43685,1494885.872,2271688.843,179731.5847,21
+43686,1494061.957,2269933.076,177829.7633,21
+43687,1491354.578,2627552.923,176990.6746,21
+43688,1488886.84,2252885.989,175799.4799,21
+43689,1487584.287,2250661.252,175102.7809,21
+43690,1486410.714,2246580.383,173753.0227,21
+43691,1484887.73,2242846.264,173243.201,21
+43692,1483488.395,2238190.989,171925.6297,21
+43693,1482512.55,2236428.315,171074.2489,21
+43694,1480756.453,2232238.375,170329.5168,21
+43695,1479613.118,2228751.327,169349.9041,21
+43696,1479220.043,2227385.807,168668.5782,21
+43697,1477820.305,2221704.402,167399.8217,21
+43698,1476245.83,2221519.404,167163.6193,21
+43699,1476257.91,2217038.993,165733.2064,21
+43700,1475817.389,2216855.94,165520.7918,21
+43701,1474055.748,2213773.313,164453.5187,21
+43702,1472613.746,2209775.097,163623.1917,21
+43703,1473588.757,2208163.128,162793.6872,21
+43704,1471552.626,2206275.478,162347.8885,21
+43705,1472081.812,2202890.313,161569.446,21
+43706,1470878.889,2199289.493,160382.4661,21
+43707,1469627.614,2199548.541,159895.2091,21
+43708,1471109.89,2194646.178,158949.7617,21
+43709,1467457.568,2194141.504,158200.7405,21
+43710,1470082.221,2190118.361,157686.9109,21
+43711,1467050.848,2189701.46,156505.3231,21
+43712,1467898.275,2185665.262,155975.6601,21
+43713,1463904.595,2184101.368,154503.2076,21
+43714,1464742.147,2182216.782,154174.7115,21
+43715,1461797.358,2179375.497,152505.5749,21
+43716,1461768.839,2176932.783,152040.3477,21
+43717,1460644.24,2176605.844,151126.0083,21
+43718,1460331.917,2172726.832,149815.5142,21
+43719,1458894.507,2171905.165,148880.9638,21
+43720,1459067.116,2169327.669,148282.3434,21
+43721,1456944.656,2167317.694,146874.4027,21
+43722,1457110.456,2164613.54,146434.7852,21
+43723,1454747.86,2163092.42,144898.2516,21
+43724,1453304.647,2162276.133,144462.0197,21
+43725,1450695.298,2159033.13,142995.4677,21
+43726,1450036.859,2157737.393,142220.1076,21
+43727,1449532.347,2155625.587,141483.5624,21
+43728,1447991.502,2154194.547,140326.4289,21
+43729,1446505.916,2151229.09,139290.2919,21
+43730,1445770.35,2149538.181,138176.4164,21
+43731,1445535.77,2148309.577,137642.8705,21
+43732,1443137.339,2146683.613,136626.9531,21
+43733,1442206.615,2144605.636,135175.7255,21
+43734,1442251.127,2141468.344,134820.5588,21
+43735,1440382.989,2141290.155,133573.7101,21
+43736,1438781.189,2139460.196,132524.6501,21
+43737,1438458.206,2136475.774,132056.3213,21
+43738,1437729.804,2135826.21,130355.3769,21
+43739,1435474.364,2132526.846,130096.7331,21
+43740,1435774.19,2132788.79,128552.6846,21
+43741,1431657.393,2129737.321,127675.8096,21
+43742,1429416.017,2131092.225,126963.9496,21
+43743,1426140.301,2128635.283,125545.9773,21
+43744,1423980.683,2128076.232,124641.8054,21
+43745,1420639.503,2128414.82,123250.6235,21
+43746,1416458.832,2126923.705,122520.0257,21
+43747,1412233.754,2125023.524,121662.9384,21
+43748,1409736.331,2127261.086,120435.2467,21
+43749,1407339.881,2124541.768,118960.7093,21
+43750,1403583.018,2123978.203,118795.2913,21
+43751,1400021.305,2124464.442,117097.5847,21
+43752,1399079.238,2123244.864,116406.549,21
+43753,1394896.831,2122521.528,114938.5647,21
+43754,1392818.555,2121781.096,114278.0522,21
+43755,1389141.331,2121252.805,113068.2369,21
+43756,1387562.796,2120287.437,112214.4451,21
+43757,1382802.226,2120442.183,110776.8551,21
+43758,1382036.042,2120950.85,110426.8349,21
+43759,1377401.289,2118006.495,108799.324,21
+43760,1376102.2,2119862.28,108201.0684,21
+43761,1371760.871,2117484.144,107041.1006,21
+43762,1370642.198,2117974.93,106312.6173,21
+43763,1367574.274,2116391.471,104490.3641,21
+43764,1363554.568,2116652.553,104361.2624,21
+43765,1361783.255,2116273.078,102689.4199,21
+43766,1358400.862,2116896.954,102380.4791,21
+43767,1355893.49,2113360.299,100721.3307,21
+43768,1354841.938,2116141.71,100198.3874,21
+43769,1348866.479,2114653.213,99001.60971,21
+43770,1349222.243,2113053.278,97838.21151,21
+43771,1345038.544,2113381.943,96164.9468,21
+43772,1343895.544,2114146.205,93912.03871,21
+43773,1339597.058,2112128.604,90073.08565,21
+43774,1339668.841,2112796.677,87806.95944,21
+43775,1334944.71,2112414.21,85999.11223,21
+43776,1333476.197,2111980.374,85025.18956,21
+43777,1331984.869,2110541.534,83829.88556,21
+43778,1328273.273,2111375.6,82080.0608,21
+43779,1326184.6,2110696.275,80931.64156,21
+43780,1324958.058,2110646.363,79275.49371,21
+43781,1321576.239,2109316.204,78010.25152,21
+43782,1318892.229,2111046.319,75105.28385,21
+43783,1317830.289,2108146.333,73573.80719,21
+43784,1314158.904,2108734.487,72139.89189,21
+43785,1312831.547,2109912.804,70394.5744,21
+43786,1310367.908,2107126.04,69464.77368,21
+43787,1307773.532,2108219.07,67604.93101,21
+43788,1305094.474,2107729.766,66416.6539,21
+43789,1304122.821,2106907.245,64958.95493,21
+43790,1300605.677,2107117.284,63678.76669,21
+43791,1299456.305,2106556.174,62026.8101,21
+43792,1295652.118,2106316.908,61188.47324,21
+43793,1294576.968,2105800.99,59252.48269,21
+43794,1292728.752,2105301.528,58262.21303,21
+43795,1288965.132,2065273.427,56947.89247,21
+43796,1288390.384,2055587.926,55323.14368,21
+43797,1284872.341,2053105.299,52854.25982,21
+43798,1283876.855,2049687.538,50991.57024,21
+43799,1279983.239,2047830.463,49521.65645,21
+43800,1279819.929,2045650.102,48118.06891,21
+43801,1275972.276,2041520.139,56438.44485,21
+43802,1276074.448,2039984.944,54572.38859,21
+43803,1271253.51,2035683.556,52947.0274,21
+43804,1271090.459,2032434.569,51690.18364,21
+43805,1265853.331,2030812.685,49904.47111,21
+43806,1655923.977,2026427.714,48279.25268,21
+43807,1262429.551,2025382.891,46512.61493,21
+43808,1259981.318,2021008.03,45072.36016,21
+43809,1590772.367,2018658.742,43282.73307,21
+43810,1255450.113,2017038.282,41953.65959,21
+43811,1252531.214,2012673.371,40320.81115,21
+43812,1251260.437,2011229.887,38939.88188,21
+43813,1248424.857,2008820.186,37447.4432,21
+43814,1246194.464,2005268.298,35917.58193,21
+43815,1243884.272,2003555.957,34494.25357,21
+43816,1241033.877,2001005.862,33047.31109,21
+43817,1239161.305,1997936.029,31421.60313,21
+43818,1626317.814,1995583.761,30225.3811,21
+43819,1235041.257,1994103.493,28765.98866,21
+43820,1231817.809,1990981.808,27086.07934,21
+43821,1230358.001,1987972.308,26063.30232,21
+43822,1227866.659,1986749.618,24175.52823,21
+43823,1224947.837,1983686.203,23509.34638,21
+43824,1223271.642,1981469.629,22288.49077,21
+43825,1221187.848,1979709.022,21293.61451,21
+43826,1218442.428,1976045.667,20719.40983,21
+43827,1216775.17,1974911.704,20331.23778,21
+43828,1214072.507,1971828.094,20093.13108,21
+43829,1211724.061,1970086.065,19450.73202,21
+43830,1210923.584,1968564.867,19256.91117,21
+43831,1207953.268,1964652.01,18592.66162,21
+43832,1207310.807,1963156.62,18592.49738,21
+43833,1206252.379,1960280.292,18031.78507,21
+43834,1204340.88,1957581.456,17737.90929,21
+43835,1203671.275,1956618.443,17371.87292,21
+43836,1202906.411,1951987.327,17101.07524,21
+43837,1203044.732,1952126.762,16709.86439,21
+43838,1203100.898,1948303.611,16640.68313,21
+43839,1201578.251,1945358.75,15918.68669,21
+43840,1200506.736,1943801.215,16024.79069,21
+43841,1199938.515,1940612.077,15454.9185,21
+43842,1198349.863,1939622.669,15372.54681,21
+43843,1198302.938,1935914.285,14657.52939,21
+43844,1196659.994,1933612.633,14891.35595,21
+43845,1195769.769,1931608.031,14226.93943,21
+43846,1194497.817,1928819.767,13897.79808,21
+43847,1585555.933,1926634.572,13742.21382,21
+43848,1191660.359,1924064.357,13286.58995,21
+43849,1191927.722,1921879.177,13221.35662,21
+43850,1191670.261,1918206.991,12656.95976,21
+43851,1188589.68,1917119.33,12446.67301,21
+43852,1190526.847,1914545.246,12292.91219,21
+43853,1187761.639,1911690.326,11632.9813,21
+43854,1187058.268,1910297.164,11693.54969,21
+43855,1186294.555,1906028.321,11120.37133,21
+43856,1186276.597,1905522.12,11037.67939,21
+43857,1182961.383,1901742.976,10627.24967,21
+43858,1185038.947,1899012.734,10231.75388,21
+43859,1182343.149,1898473.436,10145.6332,21
+43860,1181678.457,1893876.872,9734.997356,21
+43861,1179147.235,1891360.555,10094.99238,21
+43862,1177184.3,1887622.874,9716.886513,21
+43863,1174222.019,1883887.893,9466.307651,21
+43864,1174756.242,1880429.711,9196.127332,21
+43865,1170448.966,1877438.305,8782.180227,21
+43866,1562052.608,1874945.779,8746.881732,21
+43867,1169941.233,1871675.899,8127.256231,21
+43868,1169821.326,1867866.97,8039.139038,21
+43869,1168315.499,1864518.963,7839.891436,21
+43870,1166275.626,1862682.555,7415.860036,21
+43871,1165073.402,1858875.456,7162.264395,21
+43872,1163706.814,1855247.653,6939.574301,21
+43873,1162285.281,1850641.448,6648.164527,21
+43874,1160156.746,1847556.332,6441.481245,21
+43875,1159290.291,1844452.065,5998.680728,21
+43876,1157224.051,1840997.952,5736.51186,21
+43877,1156750.097,1839292.449,5531.962401,21
+43878,1154980.524,1835284.12,5062.332853,21
+43879,1153233.637,1832340.718,5025.286413,21
+43880,1151712.501,1830870.006,4570.177938,21
+43881,1150493.134,1826334.995,4516.387404,21
+43882,1148937.299,1825061.553,3883.732712,21
+43883,1147499.662,1821561.727,4019.437482,21
+43884,1146483.829,1819052.871,3575.658295,21
+43885,1539004.722,1817127.858,3185.374683,21
+43886,1145847.143,1812254.94,3126.146692,21
+43887,1144906.324,1811101.911,2929.531269,21
+43888,1542721.831,1807862.029,2572.730307,21
+43889,1142216.065,1805360.857,2313.030639,21
+43890,1141350.791,1802728.421,2313.055931,21
+43891,1539411.809,1800329.116,1887.478696,21
+43892,1137785.736,1797242.777,1700.725076,21
+43893,1135381.256,1797274.982,1448.117172,21
+43894,1535563.16,1793765.683,1448.125846,21
+43895,1131040.266,1792745.468,1387.901508,21
+43896,1130442.481,1788069.042,1367.783152,21
+43897,1529841.654,1790485.087,1347.639749,21
+43898,1125320.109,1786099.306,1287.042292,21
+43899,1124909.499,1784922.497,1287.049377,21
+43900,1523906.311,1782896.66,1246.52404,21
+43901,1120484.891,1780766.522,1205.892555,21
+43902,1119579.38,1777676.322,1185.539326,21
+43903,1518405.061,1776011.403,1144.743805,21
+43904,1114509.979,1773772.55,1124.306789,21
+43905,1112987.949,1771480.407,1083.34108,21
+43906,1513694.909,1770530.448,1062.81705,21
+43907,1108225.652,1766384.162,1021.674331,21
+43908,1108192.22,1765927.071,1001.059695,21
+43909,1506838.096,1762654.753,959.7323456,21
+43910,1103675.335,1759873.095,918.2772792,21
+43911,1102024.23,1759226.887,918.2811838,21
+43912,1501318.395,1755825.429,855.8479127,21
+43913,1097616.885,1754132.87,834.9705339,21
+43914,1095562.966,1751651.996,814.0577142,21
+43915,1496018.444,1749705.25,751.0942133,21
+43916,1091896.535,1747104.168,751.096929,21
+43917,1089750.701,1745607.563,708.9323667,21
+43918,1490947.713,1741424.619,666.6082445,21
+43919,1085040.752,2118935.24,666.6104286,21
+43920,1084498.517,1737552.31,645.3871736,21
+43921,1160139.743,1815926.691,1307.403525,21
+43922,1161696.381,1814507.625,1266.925958,21
+43923,1163168.309,1814021.996,1266.932752,21
+43924,1163752.724,1812771.898,1226.350005,21
+43925,1163785.148,1810177.778,1206.021663,21
+43926,1167380.258,1810510.233,1165.276819,21
+43927,1164715.549,1807596.351,1144.865708,21
+43928,1168574.888,1807788.647,1124.426293,21
+43929,1168681.099,1806179.4,1103.958219,21
+43930,1169242.112,1803882.3,1042.368426,21
+43931,1170092.55,1803438.471,1062.934456,21
+43932,1171167.602,1801892.472,1001.165198,21
+43933,1172626.408,1800540.66,980.517088,21
+43934,1173224.908,1799099.555,959.8374126,21
+43935,1174008.708,1797723.137,939.1256885,21
+43936,1175020.53,1796452.094,897.6003047,21
+43937,1174856.527,1794233.945,876.7894121,21
+43938,1177555.673,1793807.138,835.061116,21
+43939,1177619.881,1791963.346,835.0643542,21
+43940,1178775.452,1790140.074,793.1945756,21
+43941,1178787.748,1789905.881,751.1780288,21
+43942,1180989.111,1787923.356,751.1807015,21
+43943,1180060.21,1785931.108,709.0111852,21
+43944,1182984.178,1784264.895,687.8681984,21
+43945,1182106.37,1783337.495,666.6843192,21
+43946,1183904.46,1781956.394,624.1879841,21
+43947,1184680.728,1778792.506,602.8754207,21
+43948,1186005.864,1778613.214,581.5176853,21
+43949,1185438.754,1775541.535,560.1135438,21
+43950,1188115.843,1774265.637,517.1575298,21
+43951,1187940.375,1772053.356,517.1538538,21
+43952,1188156.277,1772202.055,474.0063692,21
+43953,1188109.691,1768516.285,452.3425233,21
+43954,1190131.358,1767912.782,452.3446785,21
+43955,1189162.479,1766111.799,408.8544713,21
+43956,1191843.456,1765904.013,408.8553521,21
+43957,1190358.015,1763056.097,387.0217949,21
+43958,1189391.501,1762366.576,365.1216037,21
+43959,1190691.505,1761049.417,343.155612,21
+43960,1189430.641,1759159.871,321.1194752,21
+43961,1190419.368,1757793.222,299.0091532,21
+43962,1190987.709,1756847.557,299.0096367,21
+43963,1191317.629,1753719.324,254.5475845,21
+43964,1191194.102,1754352.083,254.5479522,21
+43965,1192799.981,1754226.307,232.1855587,21
+43966,1192328.011,1752700.845,220.968702,21
+43967,1192759.7,1751737.977,187.1619037,21
+43968,1193531.905,1750024.374,187.1621037,21
+43969,1192790.86,1748724.892,164.481778,21
+43970,1194772.21,1747412.269,141.6723858,21
+43971,1193911.803,1745859.565,130.2141345,21
+43972,1194792.709,1744540.564,118.7166808,21
+43973,1194924.664,1742208.734,72.26017507,21
+43974,1195394.467,1742189.577,95.59081827,21
+43975,1195808.691,1740210.073,36.74632549,21
+43976,1196257.973,1738005.645,48.6692253,21
+43977,1196543.577,1738653.588,0,21
+43978,1196221.13,1735364.993,24.7093633,21
+43979,1197606.354,1735334.393,0,21
+43980,1199610.61,1732781.261,0,21
+43981,1128046.837,1651628.336,0,21
+43982,1126652.485,1647248.959,0,21
+43983,1125484.133,1646065.506,0,21
+43984,1124807.708,1643288.836,0,21
+43985,1123763.508,1640802.666,0,21
+43986,1122682.116,1638795.68,0,21
+43987,1122417.599,2014669.563,0,21
+43988,1120866.111,1634367.264,0,21
+43989,1120015.241,1629711.273,0,21
+43990,1119910.65,1626459.761,0,21
+43991,1117759.086,1625773.366,0,21
+43992,1117198.37,1621684.076,0,21
+43993,1116796.674,1620291.141,0,21
+43994,1115297.17,1618605.823,0,21
+43995,1114335.563,1616172.407,0,21
+43996,1113649.45,1612887.303,0,21
+43997,1112640.884,1612344.087,0,21
+43998,1111545.216,1607598.924,0,21
+43999,1110685.306,1607511.938,0,21
+44000,1109564.359,1604487.019,0,21
+44001,1107115.492,1602373.242,0,21
+44002,1104868.594,1600559.595,0,21
+44003,1104598.358,1597677.591,0,21
+44004,1103523.354,1596370.231,0,21
+44005,1101871.462,1593283.068,0,21
+44006,1101494.17,1590121.311,0,21
+44007,1099798.728,1588071.407,0,21
+44008,1099220.165,1586126.755,0,21
+44009,1097626.792,1583429.571,0,21
+44010,1096896.414,1581791.868,0,21
+44011,1096202.388,1580138.978,0,21
+44012,1095963.57,1577673.294,0,21
+44013,1095460.428,1577239.479,0,21
+44014,1095043.53,1574314.845,0,21
+44015,1094644.431,1574503.64,0,21
+44016,1094278.007,1574297.317,0,21
+44017,1094141.102,1951113.828,0,21
+44018,1093626.584,1571974.038,0,21
+44019,1093486.862,1568053.809,0,21
+44020,1093315.955,1569997.867,0,21
+44021,1092412.76,1567092.332,0,21
+44022,1092607.6,1565214.154,0,21
+44023,1092508.632,1565360.26,0,21
+44024,1091837.071,1563294.818,0,21
+44025,1091773.76,1562667.892,0,21
+44026,1091763.485,1560888.256,0,21
+44027,1091100.438,1561507.719,0,21
+44028,1091308.152,1559719.048,0,21
+44029,1090758.132,1559379.237,0,21
+44030,1090896.909,1558414.841,0,21
+44031,1090335.889,1557955.602,0,21
+44032,1090370.964,1557208.467,0,21
+44033,1089971.515,1556346.462,0,21
+44034,1090264.828,1936564.699,0,21
+44035,1089507.09,1554911.549,0,21
+44036,1089875.052,1554369.826,0,21
+44037,1089553.728,1554249.761,0,21
+44038,1089129.237,1552696.416,0,21
+44039,1089283.369,1552849.788,0,21
+44040,1089140.526,1551692.22,0,21
+44041,1093639.762,1556392.788,0,21
+44042,1094070.726,1558348.38,0,21
+44043,1094145.337,1558949.438,0,21
+44044,1094832.744,1559286.972,0,21
+44045,1094291.255,1561239.052,0,21
+44046,1095190.983,1561406.922,0,21
+44047,1095236.892,1565274.665,0,21
+44048,1095475.1,1566601.111,0,21
+44049,1095364.059,1568098.887,0,21
+44050,1096072.171,1568521.159,0,21
+44051,1096198.287,1570182.873,0,21
+44052,1096566.556,1570545.725,0,21
+44053,1096298.138,1572689.986,0,21
+44054,1097379.654,1572870.112,0,21
+44055,1096860.546,1574168.592,0,21
+44056,1097677.059,1575022.657,0,21
+44057,1489902.036,1576549.2,0,21
+44058,1098190.873,1577006.11,0,21
+44059,1098232.556,1578626.024,0,21
+44060,1498873.181,1579110.269,0,21
+44061,1097352.081,1580087.909,0,21
+44062,1097534.832,1583592.938,0,21
+44063,1499106.651,1584239.608,0,21
+44064,1098007.532,1585871.795,0,21
+44065,1098626.954,1586834.458,0,21
+44066,1098811.552,1588179.206,0,21
+44067,1098882.479,1589109.823,0,21
+44068,1099874.108,1590765.762,0,21
+44069,1099893.46,1591629.527,0,21
+44070,1099871.043,1594671.952,0,21
+44071,1100947.33,1596349.889,0,21
+44072,1100574.565,1596201.768,0,21
+44073,1100708.883,1598214.308,0,21
+44074,1101646.678,1598626.712,0,21
+44075,1101094.772,1599771.914,0,21
+44076,1101919.649,1600452.395,0,21
+44077,1101911.398,1600820.806,0,21
+44078,1102452.979,1602609.241,0,21
+44079,1102077.918,1602490.173,0,21
+44080,1104843.388,1604275.54,0,21
+44081,1105772.625,1604292.089,0,21
+44082,1105652.077,1605095.107,0,21
+44083,1106584.734,1606092.909,0,21
+44084,1106457.755,1606955.487,0,21
+44085,1106692.622,1607078.218,0,21
+44086,1107517.013,1609069.904,0,21
+44087,1500191.809,1608034.12,0,21
+44088,1107746.65,1610319.538,0,21
+44089,1108490.183,1610494.474,0,21
+44090,1108074.169,1610985.405,0,21
+44091,1109425.668,1611796.194,0,21
+44092,1108861.201,1612677.484,0,21
+44093,1110015.397,1613121.561,0,21
+44094,1109536.285,1614155.065,0,21
+44095,1110618.766,1614394.142,0,21
+44096,1110922.875,1615717.282,0,21
+44097,1110248.238,1615649.944,0,21
+44098,1111818.308,1616245.218,0,21
+44099,1111539.401,1617648.287,0,21
+44100,1111560.377,1617742.634,0,21
+44101,1108775.488,1613076.719,0,21
+44102,1109255.267,1612485.808,0,21
+44103,1109519.087,1611483.288,0,21
+44104,1111121.204,1611137.585,0,21
+44105,1111494.853,1610297.521,0,21
+44106,1112522.294,1609099.265,0,21
+44107,1113252.375,1608617.726,0,21
+44108,1114250.692,1608418.663,0,21
+44109,1114582.364,1606555.971,0,21
+44110,1116064.708,1606786.15,0,21
+44111,1116429.427,1605558.637,0,21
+44112,1117356.785,1604829.987,0,21
+44113,1118338.566,1604928.83,0,21
+44114,1118996.248,1602376.427,0,21
+44115,1119778.308,1602441.512,0,21
+44116,1120751.364,1601071.104,0,21
+44117,1121221.855,1600215.155,0,21
+44118,1122759.986,1600017.351,0,21
+44119,1122940.69,1597883.565,0,21
+44120,1124091.391,1598144.531,0,21
+44121,1124868.418,1597594.383,0,21
+44122,1125589.182,1595982.988,0,21
+44123,1126263.792,1595811.82,0,21
+44124,1127334.383,1594421.479,0,21
+44125,1128201.125,1594332.429,0,21
+44126,1128793.452,1594945.041,0,21
+44127,1129636.914,1592986.891,0,21
+44128,1130667.31,1593990.853,0,21
+44129,1131288.294,1591755.562,0,21
+44130,1132328.869,1592151.144,0,21
+44131,1133010.513,1590033.336,0,21
+44132,1134473.927,1589998.819,0,21
+44133,1135167.718,1588425.737,0,21
+44134,1135858.6,1588285.376,0,21
+44135,1137542.972,1587148.595,0,21
+44136,1138104.753,1585920.588,0,21
+44137,1138877.319,1585080.129,0,21
+44138,1141032.209,1583822.765,0,21
+44139,1140957.363,1583405.995,0,21
+44140,1142469.254,1582130.836,0,21
+44141,1143574.12,1580891.378,0,21
+44142,1144507.441,1580384.295,0,21
+44143,1145668.617,1577692.792,0,21
+44144,1147005.973,1577034.248,0,21
+44145,1147540.759,1575350.622,0,21
+44146,1149075.271,1575222.472,0,21
+44147,1149976.683,1573010.802,0,21
+44148,1151082.507,1573083.406,0,21
+44149,1152077.558,1571518.997,0,21
+44150,1153505.819,1570348.609,0,21
+44151,1154273.588,1569641.831,0,21
+44152,1155400.533,1568554.061,0,21
+44153,1156868.378,1567528.385,0,21
+44154,1157591.567,1566400.863,0,21
+44155,1158776.498,1565107.956,0,21
+44156,1159766.667,1564767.113,0,21
+44157,1161131.718,1562928.602,0,21
+44158,1162185.98,1562312.733,0,21
+44159,1163205.051,1561452.662,0,21
+44160,1164464.502,1559848.265,0,21
+44161,1166019.493,1560310.794,0,21
+44162,1167579.47,1559513.287,0,21
+44163,1166961.899,1560798.23,0,21
+44164,1559425.956,1559622.265,0,21
+44165,1167889.605,1560282.691,0,21
+44166,1168469.897,1560006.337,0,21
+44167,1567976.999,1560055.623,0,21
+44168,1168652.244,1560678.063,0,21
+44169,1169063.405,1559913.136,0,21
+44170,1570777.465,1559931.211,0,21
+44171,1169314.001,1560247.499,0,21
+44172,1170166.916,1560673.504,0,21
+44173,1571644.695,1559644.467,0,21
+44174,1170718.094,1560350.875,0,21
+44175,1171023.219,1560336.471,0,21
+44176,1572597.805,1560467.532,0,21
+44177,1171953.827,1560700.811,0,21
+44178,1171520.018,1559989.538,0,21
+44179,1573760.96,1560786.551,0,21
+44180,1172864.639,1560678.432,0,21
+44181,1172597.005,1560249.682,0,21
+44182,1575125.377,1560902.956,0,21
+44183,1173276.19,1560256.99,0,21
+44184,1174037.657,1560177.463,0,21
+44185,1575765.989,1560508.72,0,21
+44186,1174511.278,1560503.503,0,21
+44187,1174984.454,1560175.46,0,21
+44188,1576873.321,1560513.473,0,21
+44189,1175722.257,1560170.511,0,21
+44190,1175953.348,1560289.351,0,21
+44191,1577787.246,1560296.361,0,21
+44192,1176105.594,1560305.898,0,21
+44193,1176810.289,1559980.487,0,21
+44194,1578396.208,1559963.323,0,21
+44195,1176386.433,1559900.744,0,21
+44196,1177229.136,1560249.188,0,21
+44197,1579055.92,1559825.896,0,21
+44198,1177014.535,1559758.397,0,21
+44199,1177036.824,1559810.621,0,21
+44200,1579500.48,1561790.263,0,21
+44201,1177481.564,1560504.73,0,21
+44202,1177359.462,1561892.68,0,21
+44203,1579731.576,1560869.888,0,21
+44204,1177416.005,1561217.435,0,21
+44205,1178189.838,1560838.859,0,21
+44206,1579343.754,1561462.058,0,21
+44207,1178436.365,1560947.858,0,21
+44208,1177753.888,1560785.95,0,21
+44209,1580213.689,1561020.216,0,21
+44210,1178107.901,1560696.693,0,21
+44211,1177917.055,1561270.973,0,21
+44212,1581020.909,1560382,0,21
+44213,1178210.505,1560753.068,0,21
+44214,1179271.779,1560364.632,0,21
+44215,1580668.297,1561283.83,0,21
+44216,1179499.861,1559905.412,0,21
+44217,1179194.196,1560667.831,0,21
+44218,1581704.499,1560244.693,0,21
+44219,1179689.415,1560472.214,0,21
+44220,1180006.917,1559976.617,0,21
+44221,1249884.848,1637793.619,0,21
+44222,1254481.694,1640513.66,0,21
+44223,1256806.022,1656568.001,0,21
+44224,1258057.666,1806894.586,0,21
+44225,1260466.88,1707352.816,0,21
+44226,1261231.996,1735027.489,0,21
+44227,1289118.738,1737823.767,0,21
+44228,1354536.495,1737503.982,0,21
+44229,1311625.452,1737981.67,0,21
+44230,1329098.112,1739588.309,0,21
+44231,1331800.167,1738341.193,0,21
+44232,1334561.121,1739702.66,0,21
+44233,1336029.756,1740193.372,0,21
+44234,1340251.484,1739872.223,0,21
+44235,1340385.119,1740056.936,0,21
+44236,1343600.326,1740058.05,0,21
+44237,1345719.422,1739670.684,0,21
+44238,1347350.383,1741263.065,0,21
+44239,1350892.229,1738678.645,0,21
+44240,1355040.806,1741714.577,0,21
+44241,1359138.774,1739635.7,0,21
+44242,1360633.848,1739636.938,0,21
+44243,1362585.222,1739986.662,0,21
+44244,1364202.393,1739521.438,0,21
+44245,1366685.163,1739377.137,0,21
+44246,1366946.138,1739035.562,0,21
+44247,1369774.15,1737814.634,0,21
+44248,1371829.174,1739069.131,1308.14711,21
+44249,1371627.636,1738346.484,2201.796874,21
+44250,1375971.388,1737476.137,2024.632919,21
+44251,1375257.476,1738510.523,2378.38097,21
+44252,1377884.113,1736129.183,2729.659738,21
+44253,1379561.119,1737711.842,2904.48123,21
+44254,1380271.718,1735511.99,3078.784587,21
+44255,1382629.937,1735841.268,3425.874298,21
+44256,1384020.871,1735515.048,3598.758134,21
+44257,1385072.382,1734597.167,3943.165614,21
+44258,1385560.621,1735307.448,3943.245007,21
+44259,1389202.977,1733055.618,4286.031541,21
+44260,1388226.115,1734105.549,4627.296069,21
+44261,1391639.71,1733112.338,4627.402786,21
+44262,1391345.392,1731877.803,4967.244491,21
+44263,1393553.955,1732390.168,5136.717582,21
+44264,1395028.103,1730116.126,5305.867841,21
+44265,1395483.432,1732468.608,5474.70378,21
+44266,1397846.374,1728884.137,5811.306107,21
+44267,1397701.179,1730031.077,5979.240647,21
+44268,1400438.192,1728270.678,6238.151347,21
+44269,1400334.317,1729164.184,6458.308023,21
+44270,1402688.011,1728081.571,6849.763001,21
+44271,1402617.575,1726199.667,6717.622054,21
+44272,1405486.598,1726782.494,7239.662397,21
+44273,1405175.532,1725837.016,7262.537495,21
+44274,1406470.632,1725653.641,7627.991682,21
+44275,1409210.404,1723549.182,7639.481944,21
+44276,1407970.836,1723839.807,8014.872121,21
+44277,1411925.687,1723665.477,8202.459507,21
+44278,1410164.48,1721429.165,8553.94734,21
+44279,1413258.557,1722318.304,8763.463997,21
+44280,1412697.07,1720429.846,8950.533561,21
+44281,1474309.404,1783717.047,15750.6925,21
+44282,1478610.518,1791567.11,16619.76017,21
+44283,1479563.588,1791285.848,17339.00956,21
+44284,1480161.105,1792302.008,17931.37597,21
+44285,1481968.552,1790159.689,27262.99185,21
+44286,1483356.558,1792387.782,22712.07811,21
+44287,1481942.006,1791757.4,24654.75353,21
+44288,1484319.43,1790592.451,25316.25552,21
+44289,1485673.774,1791815.828,26221.4686,21
+44290,1484086.088,1790689.782,26428.10868,21
+44291,1486605.366,1791249.001,27463.27235,21
+44292,1485895.894,1790987.368,27823.09148,21
+44293,1486870.814,1788967.462,28412.87759,21
+44294,1487665.427,1791490.383,29212.49644,21
+44295,1487750.41,1788423.619,29304.03159,21
+44296,1488198.515,1790253.963,30290.23542,21
+44297,1488590.225,1787774.331,30554.4337,21
+44298,1490000.253,1789831.406,31184.33594,21
+44299,1489450.248,1786745.627,31620.91869,21
+44300,1490308.384,1788272.96,32096.42641,21
+44301,1489889.053,1786804.643,32803.74437,21
+44302,1490270.542,1786449.25,33178.73807,21
+44303,1492206.354,1786709.633,33553.41741,21
+44304,1490245.947,1784831.205,34376.85214,21
+44305,1491430.81,1785438.953,34440.53386,21
+44306,1493125.564,1785057.213,35281.62787,21
+44307,1491364.535,1783185.279,35305.86872,21
+44308,1492121.007,1783925.916,36179.11995,21
+44309,1492841.756,1782423.943,36360.64744,21
+44310,1492767.789,1782340.449,36889.73512,21
+44311,1493324.812,1782144.848,37393.23287,21
+44312,1492701.472,1780424.057,37633.30183,21
+44313,1493766.011,1780176.637,38272.61408,21
+44314,1493996.776,1781038.65,38794.5403,21
+44315,1493420.783,1778053.79,38712.36847,21
+44316,1493966.303,1778814.376,39651.95751,21
+44317,1493784.016,1777706.112,39910.46351,21
+44318,1495202.343,1778121.855,40066.22803,21
+44319,1493598.649,1775891.255,40920.89316,21
+44320,1494244.241,1775900.512,40936.24494,21
+44321,1494668.821,1774615.108,41639.53626,21
+44322,1494305.647,1775252.842,41490.10419,21
+44323,1494551.624,1772846.54,42657.03312,21
+44324,1495803.271,1773426.192,42362.76779,21
+44325,1493715.12,1772791.202,43050.03682,21
+44326,1495821.185,1770876.135,43060.34888,21
+44327,1494881.53,1770461.17,44069.76181,21
+44328,1495143.134,1771762.917,44103.26816,21
+44329,1494899.367,1768546.77,44216.10644,21
+44330,1495253.076,1768246.504,45443.86171,21
+44331,1494546.127,1768417.117,45364.81715,21
+44332,1495989.9,1766641.636,45690.31209,21
+44333,1494382.074,1766795.383,46185.33379,21
+44334,1496073.579,1765364.414,46867.73071,21
+44335,1494182.504,1764317.148,46670.5874,21
+44336,1495867.224,1763826.785,47480.05063,21
+44337,1494751.992,1763460.28,47451.2106,21
+44338,1494730.062,1762454.927,48358.23927,21
+44339,1495565.499,1761603.666,48215.36157,21
+44340,1494649.007,1760802.24,48839.38046,21
+44341,1496200.878,1761435.682,49237.16484,21
+44342,1498518.204,1761198.305,49146.74205,21
+44343,1498315.556,1762167.84,51720.06774,21
+44344,1501251.289,1762295.605,51602.6662,21
+44345,1500305.168,1762118.384,52009.37806,21
+44346,1502923.263,1763298.008,52497.66576,21
+44347,1503543.792,1762866.382,53421.35518,21
+44348,1504636.458,1761715.316,53499.16613,21
+44349,1505306.583,1764618.319,54132.26599,21
+44350,1506635.106,1762081.418,54350.76031,21
+44351,1507104.84,1764531.356,55129.84441,21
+44352,1510164.139,1763050.507,55613.19272,21
+44353,1508668.279,1763656.745,55991.14913,21
+44354,1511799.871,1764537.684,56161.42908,21
+44355,1511019.413,1762997.973,57136.95911,21
+44356,1514089.048,1765472.612,57123.71065,21
+44357,1513802.335,1763035.997,57818.15126,21
+44358,1514707.752,1764863.832,57984.25689,21
+44359,1516339.014,1764943.879,58950.48924,21
+44360,1517772.715,1764994.913,58822.68272,21
+44361,1518003.066,1764663.292,59459.12169,21
+44362,1519914.232,1765688.705,59949.72273,21
+44363,1519510.884,1764259.939,60300.98869,21
+44364,1522368.336,1764856.49,60475.95703,21
+44365,1522194.082,1766892.698,61156.64535,21
+44366,1523755.68,1764623.502,61561.86165,21
+44367,1523673.027,1764846.995,61684.0594,21
+44368,1526058.178,1766643.27,62433.16153,21
+44369,1525605.759,1766147.551,62473.23348,21
+44370,1529008.233,1765758.094,63231.81053,21
+44371,1527653.428,1765328.487,63462.20898,21
+44372,1528697.977,1766998.571,63462.10233,21
+44373,1531855.315,1767151.014,64570.78374,21
+44374,1531120.092,1765371.673,64174.67331,21
+44375,1532950.691,1766354.221,65039.9776,21
+44376,1533265.417,1767516.089,65285.4878,21
+44377,1534896.63,1766348.261,65489.35976,21
+44378,1535150.588,1766301.332,66048.79792,21
+44379,1536755.329,1768132.004,66285.59164,21
+44380,1537471.666,1766105.472,66740.33052,21
+44381,1538195.373,1767419.548,67102.70361,21
+44382,1540272.548,1766990.91,67093.67367,21
+44383,1539786.065,1767503.526,67788.33088,21
+44384,1542231.591,1768150.082,68319.20122,21
+44385,1542126.716,1765985.351,68160.42998,21
+44386,1543767.681,1768789.983,68731.29411,21
+44387,1544007.409,1767203.378,69082.61521,21
+44388,1546515.495,1768286.5,69549.00406,21
+44389,1544938.173,1767500.894,69716.52225,21
+44390,1548351.854,1768492.33,69654.86453,21
+44391,1547801.092,1767369.893,70536.37872,21
+44392,1549450.099,1768340.502,70713.86581,21
+44393,1550084.22,1767553.519,71067.8972,21
+44394,1551092.697,1769685.141,71088.07826,21
+44395,1552667.294,1767492.24,71756.49704,21
+44396,1552560.233,1768082.875,71991.64009,21
+44397,1554364.098,1769234.741,71829.23153,21
+44398,1554665.434,1767329.824,72973.07189,21
+44399,1556353.487,1769631.866,72466.76417,21
+44400,1556669.191,1767235.548,73337.58824,21
+44401,1565265.789,1779374.032,76462.72966,21
+44402,1566603.148,1783193.529,77402.25708,21
+44403,1567150.987,1783086.565,78348.05534,21
+44404,1568367.691,1786652.625,78648.4702,21
+44405,1567339.078,1786328.119,78952.81674,21
+44406,1569312.795,1791688.082,79908.56447,21
+44407,1568811.848,1789929.883,79947.09161,21
+44408,1569579.831,1794282.315,80588.65753,21
+44409,1569770.043,1795264.163,81186.90317,21
+44410,1571222.693,1797985.218,81251.41482,21
+44411,1570064.725,1797552.244,81844.8016,21
+44412,1571401.335,1801883.552,82495.46427,21
+44413,1570422.636,1801063.716,82651.94724,21
+44414,1572560.35,1803294.43,83425.42688,21
+44415,1572327.481,1804984.338,83223.06404,21
+44416,1572437.103,1806387.384,84645.13865,21
+44417,1572124.581,1807980.056,83841.47753,21
+44418,1573655.03,1811470.899,85365.92676,21
+44419,1573199.706,1810624.163,85202.80055,21
+44420,1573823.945,1813752.271,85754.97444,21
+44421,1575102.224,1816101.869,86263.50932,21
+44422,1572276.828,1815533.12,86657.46923,21
+44423,1576213.488,1820156.098,86984.59456,21
+44424,1574926.866,2202440.696,87348.24463,21
+44425,1574672.253,1822699.234,87913.30986,21
+44426,1575705.227,1823286.733,88262.48493,21
+44427,1575745.647,1825914.767,88876.75058,21
+44428,1575507.703,1827648.091,88913.63389,21
+44429,1576951.716,1828617.413,89389.73588,21
+44430,1575804.328,1830748.158,90139.95948,21
+44431,1577404.098,1832669.997,89913.14356,21
+44432,1577186.547,1832852.586,91052.41127,21
+44433,1576436.304,1835767.657,90606.47493,21
+44434,1578555.404,1837980.732,91720.61392,21
+44435,1576843.723,1838243.947,91478.94417,21
+44436,1579059.084,1840593.43,92715.37962,21
+44437,1577810.159,1842154.21,92534.59549,21
+44438,1578273.655,1844237.566,92989.84453,21
+44439,1579706.679,2228291.788,93681.76308,21
+44440,1577821.593,1846934.373,93577.81906,21
+44441,1579949.738,1848448.213,94371.66464,21
+44442,1578232.059,1851452.992,94750.91082,21
+44443,1580388.93,1851005.074,95067.84799,21
+44444,1579572.509,1854709.977,95694.09569,21
+44445,1580366.757,1853559.676,95936.47265,21
+44446,1580221.58,1857882.483,96655.15421,21
+44447,1580456.571,1858428.133,96398.91971,21
+44448,1579890.408,1860718.333,97638.43361,21
+44449,1580869.806,1861231.471,97494.59084,21
+44450,1581571.502,1863170.412,98051.37039,21
+44451,1581141.221,1865234.565,98506.83514,21
+44452,1580198.149,1866013.284,98770.96518,21
+44453,1582616.064,1869253.052,99456.79899,21
+44454,1581248.482,1869054.232,99296.90617,21
+44455,1582688.863,1872373.351,100177.6648,21
+44456,1580763.319,1871992.648,100802.443,21
+44457,1583221.032,1874577.962,100367.5759,21
+44458,1582349.795,1877175.205,101830.8149,21
+44459,1582443.191,2257976.092,101061.2615,21
+44460,1581912.584,1879986.265,102556.1055,21
+44461,1970937.199,1878671.486,102632.7565,21
+44462,1577997.532,1882414.713,103373.88,21
+44463,1577321.218,1882467.123,103969.8307,21
+44464,1574945.532,1883700.363,105314.3791,21
+44465,1572939.129,1882353.675,105283.3193,21
+44466,1570745.635,1884862.841,106384.6094,21
+44467,1568217.139,1885579.651,106885.498,21
+44468,1564419.156,1884849.449,107733.0641,21
+44469,1565849.107,1886282.772,108568.1267,21
+44470,1560144.489,1886988.457,108968.2078,21
+44471,1559317.628,1887747.437,109974.3304,21
+44472,1557397.864,1888024.312,110617.4104,21
+44473,1553453.569,1888834.194,111281.7488,21
+44474,1553006.233,1888579.505,112240.4986,21
+44475,1549461.413,1891852.153,112630.4225,21
+44476,1548280.967,1890022.628,113528.3112,21
+44477,1545650.77,1891312.727,114320.1692,21
+44478,1542155.425,1892359.603,115129.7552,21
+44479,1540821.361,2273299.529,115600.4966,21
+44480,1538867.357,1893904.5,116546.3732,21
+44481,1536257.887,1893214.126,117470.9827,21
+44482,1533724.46,1895053.558,117601.0381,21
+44483,1531335.158,1894451.524,119375.1518,21
+44484,1530319.149,1895841.166,118926.1673,21
+44485,1526709.078,1896975.663,120662.6898,21
+44486,1912753.073,1897163.096,121160.4036,21
+44487,1523734.584,1896649.167,121430.9083,21
+44488,1518833.174,1899955.029,122752.6297,21
+44489,1518261.759,1897238.574,123589.4457,21
+44490,1514986.645,1900765.272,123782.9574,21
+44491,1513564.242,1900013.387,125276.9445,21
+44492,1509267.807,1900777.219,125398.8135,21
+44493,1509518.247,1900959.061,126556.7273,21
+44494,1505708.835,2282966.236,127273.7297,21
+44495,1502357.761,1903335.611,127897.9268,21
+44496,1502948.605,1902839.819,128833.1838,21
+44497,1497880.249,1904007.393,129338.8218,21
+44498,1496552.468,1904954.719,130626.6743,21
+44499,1494570.543,1904592.417,131165.478,21
+44500,1491853.08,1905370.807,131769.1459,21
+44501,1488300.193,1907228.133,132758.9683,21
+44502,1489016.45,1907277.391,133640.9665,21
+44503,1483664.454,1906977.039,133790.2317,21
+44504,1481640.675,1908943.349,135532.1075,21
+44505,1481277.97,1907366.215,135640.2153,21
+44506,1476587.619,1911315.518,136576.6092,21
+44507,1475928.662,1908101.559,137510.8774,21
+44508,1472641.382,1913893.104,138478.9542,21
+44509,1471746.311,2291773.597,138822.0639,21
+44510,1466247.25,1913252.2,139759.4599,21
+44511,1466626.076,1913656.251,140712.5903,21
+44512,1854302.628,1914439.797,141647.8154,21
+44513,1461034.239,1914460.599,141962.7398,21
+44514,1457879.349,1915570.744,143265.4124,21
+44515,1456404.86,1915763.122,146467.9205,21
+44516,1454196.632,1916467.541,147446.0759,21
+44517,1451333.643,1918338.04,148004.7104,21
+44518,1448409.44,1916245.386,150336.0603,21
+44519,1447684.061,1919696.307,150145.4369,21
+44520,1443793.759,1918597.834,152551.0052,15.6
+44521,0,0,0,15.6
+44522,0,0,0,15.6
+44523,0,0,0,15.6
+44524,0,0,0,15.6
+44525,0,247.8738532,0,15.6
+44526,0,0,1762298.394,15.6
+44527,0,0,0,15.6
+44528,0,0,0,15.6
+44529,0,0,0,15.6
+44530,0,0,0,15.6
+44531,0,0,0,15.6
+44532,0,0,0,15.6
+44533,0,0,0,15.6
+44534,0,0,0,15.6
+44535,0,0,0,15.6
+44536,0,0,0,15.6
+44537,0,0,0,15.6
+44538,0,0,0,15.6
+44539,0,0,0,15.6
+44540,0,0,0,15.6
+44541,0,0,0,15.6
+44542,48811.01927,0,0,15.6
+44543,0,0,0,15.6
+44544,6726.269288,0,0,15.6
+44545,19049.6978,0,0,15.6
+44546,12274.09252,0,0,15.6
+44547,13545.05049,0,0,15.6
+44548,13766.50702,0,0,15.6
+44549,13903.26063,0,0,15.6
+44550,14063.95056,0,0,15.6
+44551,14183.39914,0,0,15.6
+44552,14359.7441,0,0,15.6
+44553,14471.23634,0,0,15.6
+44554,14614.56339,0,0,15.6
+44555,14725.20683,0,0,15.6
+44556,14883.95024,0,0,15.6
+44557,14978.4893,0,0,15.6
+44558,15068.32964,0,0,15.6
+44559,15213.55483,0,0,15.6
+44560,15293.31693,44148.42275,0,15.6
+44561,15441.20134,1349.289205,1667530.211,15.6
+44562,15467.17376,7414.206023,0,15.6
+44563,15643.0508,15293.49603,0,15.6
+44564,15676.41936,13552.37362,0,15.6
+44565,15806.27147,12684.1463,0,15.6
+44566,15886.30945,13296.10685,0,15.6
+44567,15984.93242,13497.60996,0,15.6
+44568,16031.86462,13679.97838,0,15.6
+44569,16163.57007,13862.72463,0,15.6
+44570,16201.27119,14021.65523,0,15.6
+44571,16311.51079,14228.73267,0,15.6
+44572,0,14388.42262,0,15.6
+44573,0,14487.47068,0,15.6
+44574,0,14881.8878,0,15.6
+44575,0,15015.2282,0,15.6
+44576,67684.18808,15160.70055,0,15.6
+44577,1029.63488,15345.37735,0,15.6
+44578,7206.463879,15495.43503,0,15.6
+44579,25008.8843,15641.44343,0,15.6
+44580,15514.01421,15814.34799,0,15.6
+44581,17168.16683,16084.77166,0,15.6
+44582,17210.14562,16470.43664,0,15.6
+44583,17311.15996,16406.37184,0,15.6
+44584,17305.89507,16548.45348,0,15.6
+44585,17394.64172,16696.04559,0,15.6
+44586,17439.73029,16852.42956,0,15.6
+44587,17472.73758,16857.05522,0,15.6
+44588,17491.96242,16994.66075,0,15.6
+44589,17546.13108,17171.64647,0,15.6
+44590,17627.13594,0,0,15.6
+44591,17609.49797,0,0,15.6
+44592,17627.1521,0,0,15.6
+44593,17709.47402,0,0,15.6
+44594,17732.85123,69446.84481,0,15.6
+44595,17763.03684,0,0,15.6
+44596,17795.67831,9339.207595,1580890.671,15.6
+44597,17813.24383,26575.14837,0,15.6
+44598,17831.50891,16853.49656,0,15.6
+44599,17881.612,18596.8399,0,15.6
+44600,17912.46746,18670.32807,0,15.6
+44601,17917.31265,18883.22176,0,15.6
+44602,17936.45432,19016.43136,0,15.6
+44603,17978.90655,19061.34596,0,15.6
+44604,17963.0666,19229.27467,0,15.6
+44605,18020.32612,19313.05381,0,15.6
+44606,0,19483.0042,0,15.6
+44607,0,19570.62708,0,15.6
+44608,0,19698.22498,0,15.6
+44609,0,19826.91328,0,15.6
+44610,75192.52024,19905.89943,0,15.6
+44611,4195.302966,20055.76991,0,15.6
+44612,4447.380945,20150.70931,0,15.6
+44613,28240.06113,20249.66838,0,15.6
+44614,16457.57582,20402.80901,0,15.6
+44615,18158.71386,20466.89512,0,15.6
+44616,18265.08534,20632.47303,0,15.6
+44617,18208.36729,417090.5458,0,15.6
+44618,18265.10792,37652.34017,0,15.6
+44619,18240.52529,81515.26073,0,15.6
+44620,18265.12997,138822.9508,0,15.6
+44621,18247.75927,144595.5317,0,15.6
+44622,18238.94366,125228.7371,0,15.6
+44623,18297.22712,131916.4889,0,15.6
+44624,18247.79197,112242.3765,0,15.6
+44625,18252.09243,112723.4106,0,15.6
+44626,18284.1917,113450.5952,0,15.6
+44627,18225.79535,191465.2757,0,15.6
+44628,18265.21776,116900.2829,0,15.6
+44629,18247.84713,132188.6605,0,15.6
+44630,18262.2066,145504.8637,0,15.6
+44631,18247.8696,139001.2092,1501346.81,15.6
+44632,18243.23303,141076.6717,0,15.6
+44633,18225.86254,141804.4144,0,15.6
+44634,18225.87398,143818.0283,0,15.6
+44635,18243.26742,144978.6072,0,15.6
+44636,18186.36206,145829.6793,0,15.6
+44637,18217.08202,146328.0678,0,15.6
+44638,18180.41221,147969.137,0,15.6
+44639,18199.72357,148714.0707,0,15.6
+44640,0,149536.1822,0,15.6
+44641,0,152635.8135,0,15.6
+44642,0,153947.4688,0,15.6
+44643,68355.6614,154801.1164,0,15.6
+44644,909.0752433,155548.252,0,15.6
+44645,11659.38757,156771.4698,0,15.6
+44646,24825.72926,157530.9389,0,15.6
+44647,17139.51444,23899.40584,0,15.6
+44648,18353.92824,24007.70327,998564.2462,15.6
+44649,18293.20567,24103.53888,0,15.6
+44650,18312.93615,463860.1927,0,15.6
+44651,18293.23995,24244.22031,0,15.6
+44652,18247.50172,564890.096,0,15.6
+44653,18252.24655,24357.87999,0,15.6
+44654,18211.11104,89833.72865,0,15.6
+44655,457153.1624,225076.7621,0,15.6
+44656,18148.51673,159753.6626,0,15.6
+44657,18188.97171,140514.8106,0,15.6
+44658,18126.36045,144107.1235,0,15.6
+44659,18126.37776,144295.5634,0,15.6
+44660,18067.52025,235436.9974,0,15.6
+44661,18058.79806,153605.6135,0,15.6
+44662,18027.68934,159262.7699,0,15.6
+44663,18039.65367,182231.7201,0,15.6
+44664,17959.90173,171702.5103,0,15.6
+44665,17963.12693,174305.1675,0,15.6
+44666,17959.93818,174812.001,1621484.447,15.6
+44667,17895.15125,175950.8006,0,15.6
+44668,17855.09585,176376.0412,0,15.6
+44669,17872.6733,177365.1303,0,15.6
+44670,17837.53051,177946.4447,0,15.6
+44671,17786.83254,178782.7593,0,15.6
+44672,17776.28452,179517.215,0,15.6
+44673,0,180418.1879,0,15.6
+44674,0,181127.7786,0,15.6
+44675,0,181774.1591,0,15.6
+44676,0,182490.5123,0,15.6
+44677,74161.11479,183274.9351,0,15.6
+44678,3326.285749,184100.4614,0,15.6
+44679,5129.454288,184635.5523,0,15.6
+44680,27255.73464,185575.4939,0,15.6
+44681,16108.16996,186008.1689,0,15.6
+44682,17689.80154,26486.166,0,15.6
+44683,17735.45181,26525.08786,0,15.6
+44684,17647.44535,26659.25858,0,15.6
+44685,17644.09419,26621.30101,0,15.6
+44686,17629.75454,644582.7089,194757.8242,15.6
+44687,17557.61719,26734.30356,0,15.6
+44688,17546.46308,123096.5799,191372.1613,15.6
+44689,17377.5967,258435.8927,0,15.6
+44690,17360.73857,153610.1306,188046.8612,15.6
+44691,17303.43488,166351.8753,0,15.6
+44692,17273.32247,248270.0553,184779.8526,15.6
+44693,17230.43615,173521.6643,0,15.6
+44694,17223.25302,194748.4028,181569.6099,15.6
+44695,17167.72946,199334.1642,0,15.6
+44696,17115.57103,196651.1264,178415.2764,15.6
+44697,17075.61712,197228.9159,0,15.6
+44698,17053.95729,198705.0486,175316.0094,15.6
+44699,17029.26488,198254.1773,0,15.6
+44700,16965.55893,199768.375,172270.4631,15.6
+44701,16943.39388,199868.6594,1368943.162,15.6
+44702,16908.86472,200855.7105,853721.1983,15.6
+44703,16846.75944,201113.2593,0,15.6
+44704,16852.74724,202108.397,0,15.6
+44705,16789.80527,202304.7201,0,15.6
+44706,16777.08948,203080.5768,0,15.6
+44707,0,203966.2776,0,15.6
+44708,0,203948.2674,0,15.6
+44709,0,205211.7011,0,15.6
+44710,0,205601.087,0,15.6
+44711,71311.90348,206089.9528,0,15.6
+44712,239.848817,206942.2911,0,15.6
+44713,6074.968834,207110.4069,0,15.6
+44714,24335.52981,208256.9135,0,15.6
+44715,15481.87316,208212.6111,0,15.6
+44716,16291.59523,28500.3191,0,15.6
+44717,16404.52429,28517.03422,0,15.6
+44718,16350.13148,28591.35742,0,15.6
+44719,16378.58491,28640.94294,0,15.6
+44720,16277.85629,741875.6162,0,15.6
+44721,16295.70104,60462.58352,0,15.6
+44722,16205.32993,74399.01265,0,15.6
+44723,16179.91352,272121.7421,0,15.6
+44724,16168.54102,257445.956,158046.8651,15.6
+44725,16107.08257,194411.3906,0,15.6
+44726,16070.65402,213337.127,155426.8036,15.6
+44727,16068.27544,220167.1616,152929.1978,15.6
+44728,15960.49731,216308.0277,150501.668,15.6
+44729,15982.54834,217591.8338,828234.3374,15.6
+44730,15920.2895,217877.4755,29586.48435,15.6
+44731,15887.13245,218486.1941,385596.5672,15.6
+44732,15820.28447,218497.1266,2017.627919,15.6
+44733,15834.05755,219794.8334,300604.7082,15.6
+44734,15762.39193,219742.8575,181433.7285,15.6
+44735,15721.00351,220670.926,186913.541,15.6
+44736,15683.70354,220471.6757,1013599.293,15.6
+44737,15648.882,222037.4492,277956.3478,15.6
+44738,15623.52013,221557.9109,141706.2448,15.6
+44739,15535.10162,222734.6129,112293.7664,15.6
+44740,15565.14871,222776.8379,125113.6923,15.6
+44741,0,223864.2899,118901.0988,15.6
+44742,0,223831.1679,115827.2051,15.6
+44743,0,224774.4944,113588.3249,15.6
+44744,0,224632.7903,111603.7721,15.6
+44745,65981.46007,226066.6083,109719.7158,15.6
+44746,0,225921.6072,107894.2282,15.6
+44747,4029.499841,226992.8612,106033.578,15.6
+44748,23522.24444,226481.5256,101715.7962,15.6
+44749,14020.85641,228264.1384,0,15.6
+44750,14984.92873,30335.97536,0,15.6
+44751,15208.98866,30365.47675,0,15.6
+44752,15093.44616,30458.70899,0,15.6
+44753,15074.48173,727304.7372,0,15.6
+44754,15020.71037,30101.98805,0,15.6
+44755,15019.62913,134132.2576,0,15.6
+44756,14932.01694,355224.4997,0,15.6
+44757,14897.93259,201930.3841,0,15.6
+44758,14884.28167,227223.9858,0,15.6
+44759,14831.13415,238274.0762,0,15.6
+44760,14781.18582,232558.4003,701818.6312,15.6
+44761,14747.62295,234023.1752,0,15.6
+44762,14680.47894,234350.539,0,15.6
+44763,14671.80977,234978.3985,0,15.6
+44764,14590.92576,235152.8165,0,15.6
+44765,14617.9341,236190.7822,0,15.6
+44766,14472.94393,235889.0164,0,15.6
+44767,14529.22002,237248.6101,0,15.6
+44768,14409.90259,237168.7151,0,15.6
+44769,14411.9699,237813.7946,0,15.6
+44770,14368.12013,238585.0869,0,15.6
+44771,14307.92961,238258.7907,969569.3407,15.6
+44772,14270.69163,239632.6919,0,15.6
+44773,14231.85062,238747.5682,0,15.6
+44774,14202.40944,238897.5729,0,15.6
+44775,0,239875.6519,0,15.6
+44776,0,240141.6968,0,15.6
+44777,0,240857.1746,0,15.6
+44778,0,240597.4543,0,15.6
+44779,0,242078.6924,0,15.6
+44780,65498.67442,241742.1757,96689.77858,15.6
+44781,0,242955.2139,0,15.6
+44782,1923.117226,242795.5173,0,15.6
+44783,20611.37257,32033.08221,99184.78013,15.6
+44784,13803.79882,32191.00241,101332.6231,15.6
+44785,13323.62063,32190.99944,695448.1551,15.6
+44786,13756.63451,750257.2902,30045.92254,15.6
+44787,13740.08862,59316.58206,252706.8623,15.6
+44788,13687.15962,213214.5486,11902.44636,15.6
+44789,13611.37035,305092.8556,200730.0864,15.6
+44790,13623.36327,228145.1027,126555.1824,15.6
+44791,13561.33199,253683.8918,132236.2198,15.6
+44792,13509.219,247448.3953,12824.57215,15.6
+44793,13460.10602,248445.4846,196089.3216,15.6
+44794,13404.06056,249648.9778,105427.2713,15.6
+44795,13380.35168,249417.0263,84465.0968,15.6
+44796,13324.31926,249911.9093,93594.52841,15.6
+44797,13283.61824,250515.3381,89535.22221,15.6
+44798,13244.23052,250913.6831,87627.85285,15.6
+44799,13202.12712,251060.3107,86291.5902,15.6
+44800,13128.43903,251847.4439,85127.47678,15.6
+44801,13120.66768,252026.8799,84006.34262,15.6
+44802,13056.45355,252772.6451,80754.19003,15.6
+44803,13021.90412,252808.4539,84261.20021,15.6
+44804,12963.3538,253219.1293,80279.19887,15.6
+44805,12938.94067,254274.9025,639446.2694,15.6
+44806,12882.88267,253664.2208,751874.1235,15.6
+44807,12821.85869,255196.8749,196487.2518,15.6
+44808,12794.79674,255049.3573,16040.38601,15.6
+44809,12769.3696,255318.7559,157660.0243,15.6
+44810,0,256244.8617,102221.6324,15.6
+44811,0,256231.3525,107578.663,15.6
+44812,0,256765.2228,0,15.6
+44813,0,257157.185,0,15.6
+44814,0,258026.0011,0,15.6
+44815,0,257827.3248,0,15.6
+44816,61934.71286,34012.53252,0,15.6
+44817,0,33904.23268,0,15.6
+44818,1665.382689,0,0,15.6
+44819,15332.30264,807141.4761,0,15.6
+44820,14427.0309,187154.42,0,15.6
+44821,11256.96093,115534.8732,0,15.6
+44822,12272.44119,345351.7327,0,15.6
+44823,12233.88676,253632.0862,0,15.6
+44824,12161.67379,260982.0602,0,15.6
+44825,12125.1932,262713.7163,0,15.6
+44826,12062.16021,263123.6323,0,15.6
+44827,12071.40249,262977.0513,0,15.6
+44828,11929.81911,264341.1995,0,15.6
+44829,11977.15163,264220.064,0,15.6
+44830,11850.29707,263913.0904,612468.1152,15.6
+44831,11860.45608,265487.9533,0,15.6
+44832,11792.25244,265143.5871,0,15.6
+44833,11732.25987,266126.5515,0,15.6
+44834,11686.31528,265745.3513,0,15.6
+44835,11669.27841,266804.1373,0,15.6
+44836,11571.39531,267076.3494,0,15.6
+44837,11557.37578,266904.4177,0,15.6
+44838,11519.59397,268324.6186,0,15.6
+44839,11426.4911,267800.322,0,15.6
+44840,11455.26683,268794.4935,0,15.6
+44841,11314.46482,269007.8348,700260.2452,15.6
+44842,11347.20189,269297.4854,0,15.6
+44843,11259.12416,269746.5423,0,15.6
+44844,11217.58512,270264.3728,0,15.6
+44845,11199.69086,270676.5073,0,15.6
+44846,0,271051.7799,0,15.6
+44847,0,270954.0149,0,15.6
+44848,0,272055.054,0,15.6
+44849,0,35675.1275,84377.70518,15.6
+44850,0,0,84938.468,15.6
+44851,0,0,83719.54903,15.6
+44852,0,964339.0146,82946.60784,15.6
+44853,54147.49087,131477.8851,82287.22596,15.6
+44854,0,109218.8338,635180.1305,15.6
+44855,2288.117957,387033.7378,37873.05603,15.6
+44856,10502.60801,259503.6393,192474.5312,15.6
+44857,14138.65443,277547.0039,24352.10177,15.6
+44858,9332.652645,277789.1257,156729.154,15.6
+44859,10595.83762,278378.9509,105590.2139,15.6
+44860,10550.51674,278766.4243,112723.734,15.6
+44861,10534.82169,278808.5491,25061.89489,15.6
+44862,10438.97133,279808.6878,155404.0277,15.6
+44863,10429.71899,279751.5611,90731.3798,15.6
+44864,10365.65723,280029.5471,98367.97448,15.6
+44865,10317.65163,280611.9917,25711.32909,15.6
+44866,10282.45633,280741.6629,150050.2859,15.6
+44867,10243.18346,281463.3959,84743.08615,15.6
+44868,10148.03952,281633.0586,93108.16774,15.6
+44869,10131.16937,282009.9887,26299.28682,15.6
+44870,10085.27613,282793.5556,144671.4794,15.6
+44871,10034.37308,282177.3684,80568.67461,15.6
+44872,9996.786508,283396.5474,69233.87748,15.6
+44873,9942.440463,283461.3618,74841.88184,15.6
+44874,9882.245081,284271.6355,72808.36976,15.6
+44875,9841.379678,284149.0765,72083.88284,15.6
+44876,9807.378842,284822.7198,71652.46159,15.6
+44877,9767.989431,285054.6835,673129.6207,15.6
+44878,9675.241861,285690.9444,576429.2605,15.6
+44879,9676.043735,285191.0162,0,15.6
+44880,9628.825964,286895.3794,0,17.8
+44881,993765.115,1434953.118,1068277.8,17.8
+44882,545904.7533,78414.47255,561170.4774,17.8
+44883,86273.2724,1291770.23,489564.4968,17.8
+44884,160284.1777,446846.996,731377.3293,17.8
+44885,299117.2094,653676.4659,572549.2882,17.8
+44886,198921.7475,688346.6725,630423.6346,17.8
+44887,214954.6245,631621.616,593916.2107,17.8
+44888,219510.8854,555556.3753,709067.0955,17.8
+44889,218450.1539,605975.5936,608399.2413,17.8
+44890,215827.5082,587587.4151,670485.1443,17.8
+44891,215711.8338,582212.3818,624374.319,17.8
+44892,214965.0454,583687.1118,750020.2297,17.8
+44893,213985.3022,581871.1219,636613.3389,17.8
+44894,213494.7269,581817.0433,706012.4281,17.8
+44895,212201.9402,580695.8095,649868.7016,17.8
+44896,212051.8141,580282.2109,657491.1489,17.8
+44897,211105.9508,578624.9823,665068.2875,17.8
+44898,210607.8405,580335.3341,672303.9572,17.8
+44899,209606.8478,577743.2637,678778.7371,17.8
+44900,209730.3557,578740.5982,685904.7756,17.8
+44901,208344.661,575721.4302,691867.7076,17.8
+44902,208118.7287,576046.0087,1469017.25,17.8
+44903,207290.6282,575607.5559,734436.9226,17.8
+44904,207253.3204,575692.0712,1027714.317,17.8
+44905,206582.5654,574615.633,706811.495,17.8
+44906,205697.7103,575558.5296,761898.1704,17.8
+44907,205717.1155,574888.9941,715417.0393,17.8
+44908,204965.9407,574812.2491,907819.5605,17.8
+44909,204437.6043,574439.6729,718778.4475,17.8
+44910,203981.9434,575029.5639,791622.2985,17.8
+44911,34399.6532,548642.8876,0,17.8
+44912,34317.42085,548444.213,1198790.355,17.8
+44913,34135.19088,0,0,17.8
+44914,0,82653.03181,488858.2406,17.8
+44915,0,1229515.685,213098.7777,17.8
+44916,637890.7076,513426.716,225850.5911,17.8
+44917,98020.27165,594047.8737,107896.2093,17.8
+44918,118153.131,595290.846,340561.6434,17.8
+44919,248245.6673,576444.3052,200631.2204,17.8
+44920,190242.6454,585669.6876,192544.2068,17.8
+44921,204371.1425,577090.0845,1400037.735,17.8
+44922,197652.5751,578036.2575,543053.2757,17.8
+44923,199175.7792,577171.3122,639319.4107,17.8
+44924,199109.2044,577920.9325,803285.3694,17.8
+44925,198676.3461,577465.6595,706854.9783,17.8
+44926,198242.5489,577811.969,1499211.672,17.8
+44927,198103.3916,577841.1653,766271.2477,17.8
+44928,197295.0643,578218.1082,1059329.248,17.8
+44929,197652.7484,1016952.763,738611.3899,17.8
+44930,196592.8743,578677.8391,781303.383,17.8
+44931,196883.9845,578522.2608,748523.8468,17.8
+44932,196062.8528,579014.5267,942520.4191,17.8
+44933,196108.3653,579028.2272,752585.6426,17.8
+44934,195795.9933,579327.8125,812151.368,17.8
+44935,195123.7745,579551.1169,761322.9096,17.8
+44936,195190.5042,579767.7781,938784.8947,17.8
+44937,194960.8855,580066.948,765548.794,17.8
+44938,534428.8933,580369.1785,830089.088,17.8
+44939,194142.4444,580741.202,772360.389,17.8
+44940,193930.4352,581146.3114,951094.7586,20
+44941,2301467.057,2607795.348,2623434.851,20
+44942,1064348.688,2623883.779,2507831.679,20
+44943,640649.1289,1407579.287,1947004.407,20
+44944,726987.1901,800220.0452,1310833.439,20
+44945,601106.936,88076.84424,1272342.178,20
+44946,132571.5094,1697677.025,2268690.408,20
+44947,16267.38831,1310340.038,1270865.31,20
+44948,832317.3806,986014.0781,1209743.354,20
+44949,669971.0119,1174492.756,1170835.043,20
+44950,478861.3653,1126600.493,1492450.613,20
+44951,677720.8172,1115152.681,150572.1967,20
+44952,586411.2104,1108488.066,409350.669,20
+44953,586864.2721,1102625.41,2159667.929,20
+44954,591732.1073,1098628.561,1387487.552,20
+44955,588288.0176,1094189.039,861593.3746,20
+44956,584912.466,1087558.283,1273102.557,20
+44957,584482.1761,1083497.958,1139451.972,20
+44958,582715.1524,1078224.269,1146989.599,20
+44959,581161.28,1074116.594,1154253.668,20
+44960,579794.7828,1070109.028,1939105.814,20
+44961,578346.5443,1064394.437,1198774.076,20
+44962,578502.1298,1060370.108,1492412.844,20
+44963,576148.3982,1057714.337,1159799.511,20
+44964,574567.9388,1050001.616,1197133.004,20
+44965,575882.5939,1049230.64,1169113.659,20
+44966,572278.2862,1042710.26,1174118.282,20
+44967,572754.488,1041040.413,1181387.073,20
+44968,571815.4496,1034648.823,1182551.978,20
+44969,569963.0263,1032577.41,1190105.327,20
+44970,571373.8409,1027855.786,1192552.47,20
+44971,552284.5877,1024331.336,1197887.271,20
+44972,551673.764,1020595.304,1197917.024,20
+44973,552330.3282,1016358.315,1204038.418,20
+44974,550687.7342,1013185.324,1206495.026,20
+44975,550341.9688,967040.6898,1048026.281,20
+44976,550116.923,0,1051674.06,20
+44977,548433.1088,295095.5809,1400942.365,20
+44978,123235.0337,1278182.592,1263808.962,20
+44979,449.1053917,1246975.831,1280988.988,20
+44980,815692.5548,792584.6498,2263907.199,20
+44981,570174.8634,1057047.288,1188814.964,20
+44982,410908.5413,988667.4764,1181663.959,20
+44983,680397.5534,983779.489,272704.5641,20
+44984,531232.358,980909.9381,265164.9591,20
+44985,565585.8733,978655.1676,958423.5093,20
+44986,563974.3956,960728.8136,2361943.667,20
+44987,901727.3424,947756.967,1984536.645,20
+44988,561971.8312,950500.9914,856298.0421,20
+44989,561117.5864,941976.2026,1215336.37,20
+44990,561333.732,936223.5346,1207004.704,20
+44991,560975.2191,933156.1797,1356012.257,20
+44992,560932.417,927865.0414,1193986.081,20
+44993,559661.3121,921163.2911,1226887.457,20
+44994,560957.262,919124.4421,1202473.392,20
+44995,559694.4942,911479.13,1376913.103,20
+44996,560119.2509,907444.1753,1203862.224,20
+44997,559388.9409,901933.7613,1250885.433,20
+44998,559383.5664,895822.3455,1215955.956,20
+44999,559514.1516,890324.7595,1388517.399,20
+45000,558363.0318,884496.3798,1217508.169,21
+45001,2304454.637,2986672.291,3264971.403,21
+45002,2020028.887,2211834.419,2105315.301,21
+45003,576213.4795,816807.7455,826603.7331,21
+45004,522293.9888,1282251.246,1193530.667,21
+45005,925486.0598,1304053.113,1274909.452,21
+45006,847169.4856,1228006.916,1253422.81,21
+45007,772163.988,1223689.183,1213372.961,21
+45008,790666.6919,1219680.533,1238795.033,21
+45009,787511.7822,1199806.92,2063450.346,21
+45010,786592.4896,1192205.375,1286220.335,21
+45011,782191.1978,1192053.989,1616909.212,21
+45012,779986.1926,1188620.604,1247062.389,21
+45013,778447.8799,1186275.752,1262004.475,21
+45014,773855.6285,1183494.693,1265969.858,21
+45015,775010.2148,1181128.487,1476806.089,21
+45016,769437.3799,1180104.01,1269590.628,21
+45017,770186.3737,1175467.937,1294046.786,21
+45018,766698.3976,1176417.196,1283339.149,21
+45019,765731.7562,1170971.086,1476066.617,21
+45020,762023.3614,1171800.462,1285084.074,21
+45021,762223.0808,1167872.381,1316359.421,21
+45022,759117.0902,1167970.077,1299068.197,21
+45023,758617.0444,1164950.283,1494379.157,21
+45024,756089.4442,1164519.492,1300825.225,21
+45025,754399.0931,1161959.25,1333595.416,21
+45026,752806.8147,1161185.166,1317016.818,21
+45027,752242.1047,1159215.748,1322541.381,21
+45028,750740.9525,1157355.913,1332540.575,21
+45029,748502.0167,1156983.466,1334842.304,21
+45030,747647.2888,1153988.938,1345242.779,21
+45031,746300.9974,1153841.612,1351212.372,21
+45032,745720.8842,1151838.568,1353746.825,21
+45033,744516.2043,1151290.76,1363936.93,21
+45034,742728.2514,1148498.48,2234435.878,21
+45035,741605.2467,1145903.911,1406675.438,21
+45036,740172.2137,1143924.1,1766132.133,21
+45037,739713.2538,1145367.861,1357656.562,21
+45038,737998.4158,1141040.69,1361224.429,21
+45039,737754.9837,1140599.036,1368592.009,21
+45040,736379.1379,1142256.217,1598235.226,21
+45041,734809.5935,1138590.663,1366769.042,21
+45042,734674.7318,1138301.943,1373904.337,21
+45043,733752.2285,1137190.263,1378089.904,21
+45044,731769.2782,1135147.614,1585012.289,21
+45045,731689.9165,1135347.635,1378413.734,21
+45046,730806.5126,1133855.954,1385914.905,21
+45047,729372.0453,1132219.834,1392054.656,21
+45048,730272.2291,1131525.438,1591166.734,21
+45049,726691.1313,1130082.848,1394050.797,21
+45050,727319.9496,1129698.224,1396506.321,21
+45051,726849.3177,1126508.142,1405265.856,21
+45052,724840.0782,1125062.217,1410906.941,21
+45053,726016.241,1124894.292,1416143.164,21
+45054,723387.3392,1123968.571,1425350.204,21
+45055,722756.8048,1121582.101,1425734.769,21
+45056,723136.4689,1121502.466,1437265.401,21
+45057,721239.5139,1121936.262,1437310.176,21
+45058,721444.1584,1118030.554,2318004.498,21
+45059,720688.4291,1120963.755,1482994.662,21
+45060,718884.798,1116586.208,1848419.58,21
+45061,780888.9427,2244481.991,1375326.125,21
+45062,775754.761,2233207.399,1372869.832,21
+45063,774665.1153,2230778.855,1374996.302,21
+45064,774518.3992,2654699.249,1599586.598,21
+45065,772881.9863,2222261.406,1364922.835,21
+45066,772097.2755,2216179.471,1368006.482,21
+45067,773120.1388,2216058.632,1372836.825,21
+45068,770912.0854,2208170.906,1570011.55,21
+45069,771517.8114,2207067.799,1364710.303,21
+45070,770839.7341,2203467.048,1369575.055,21
+45071,770987.0273,2200520.723,1372517.442,21
+45072,769928.231,2197125.872,1567947.298,21
+45073,769371.493,2215009.845,1365867.364,21
+45074,769588.7799,2199624.659,1370645.534,21
+45075,769900.3696,2196134.4,1374417.472,21
+45076,769528.2109,2197424.099,1376907.297,21
+45077,768046.8966,2190666.027,1382977.549,21
+45078,768768.2505,2187839.036,1384253.274,21
+45079,767806.5269,2183417.209,1387073.934,21
+45080,769163.1985,2181228.796,1393077.936,21
+45081,767121.9835,2604990.37,2260481.542,21
+45082,768400.1522,2171664.707,1430789.766,21
+45083,767068.8665,2169121.741,1786760.37,21
+45084,768774.5964,2165819.883,1373918.159,21
+45085,766049.2398,2162095.838,1378107.072,21
+45086,767499.4279,2158356.739,1384229.579,21
+45087,767985.5463,2154608.105,1604643.988,21
+45088,766361.6482,2153268.985,1377800.098,21
+45089,768259.6799,2146161.883,1378839.66,21
+45090,766864.1888,2147571.108,1384294.652,21
+45091,766823.7748,2139737.981,1584174.265,21
+45092,767038.3695,2138212.297,1378271.125,21
+45093,766018.4344,2135728.306,1384082.575,21
+45094,767482.929,2129475.382,1388114.742,21
+45095,767393.5607,2129452.795,1583747.556,21
+45096,766616.4205,2124191.828,1383362.82,21
+45097,765391.2927,2121329.747,1387395.898,21
+45098,766340.8688,2118212.849,1392799.081,21
+45099,766240.7079,2114946.128,1396890.385,21
+45100,766080.4697,2110821.284,1400298.374,21
+45101,766846.4561,2107736.047,1404682.103,21
+45102,764954.4781,2106084.387,1406172.779,21
+45103,766541.7284,2099470.722,1413628.196,21
+45104,765582.5078,2100017.051,2278670.359,21
+45105,765601.2436,2094101.534,1451893.137,21
+45106,765591.8175,2090788.195,1805257.787,21
+45107,765961.4456,2089588.324,1395704.895,21
+45108,765921.8716,2085307.726,1399503.291,21
+45109,765967.4182,2079889.769,1403366.553,21
+45110,765207.8527,2079680.506,1629897.427,21
+45111,766525.4732,2074429.648,1395858.969,21
+45112,765127.1896,2071979.752,1402995.41,21
+45113,766792.0307,2068049.185,1406995.305,21
+45114,765387.9225,2494847.141,1605814.843,21
+45115,765385.7139,2061688.191,1402012.764,21
+45116,766150.2771,2059362.707,1407421.395,21
+45117,766108.9611,2055853.725,1410111.95,21
+45118,766640.994,2050994.633,1608202.111,21
+45119,764820.0956,2049235.769,1405157.835,21
+45120,766920.6738,2041809.811,1412852.197,21
+45121,534879.2498,1794184.896,1179592.801,21
+45122,518155.879,1776584.706,1172480.612,21
+45123,513572.2678,1772801.743,1172742.669,21
+45124,510060.3876,1767511.765,1173616.584,21
+45125,506165.9986,1765242.52,1174606.391,21
+45126,502072.4784,1762122.012,1175988.899,21
+45127,498731.998,1757712.982,2042620.55,21
+45128,495640.6609,1754520.231,1208987.943,21
+45129,491068.3578,1754128.876,1576578.234,21
+45130,489465.6659,1749602.244,1154095.928,21
+45131,486506.1106,1747742.131,1154707.553,21
+45132,482436.7749,1745479.954,1157101.279,21
+45133,480553.6409,1743489.187,1157616.219,21
+45134,476455.0226,1741311.911,1160484.247,21
+45135,475078.5889,1737502.645,1161421.927,21
+45136,472509.0153,1738126.057,1162351.943,21
+45137,469706.3536,1733722.798,1164360.471,21
+45138,466800.3714,1732679.621,1165288.505,21
+45139,464372.5591,1729947.14,1165645.679,21
+45140,462067.2873,1728364.154,1167796.176,21
+45141,458276.4061,1727472.538,1168596.501,21
+45142,457424.6429,1723307.82,1168676.425,21
+45143,453346.9566,1722729.381,1170884.383,21
+45144,451692.3871,1720365.431,1170532.562,21
+45145,449230.914,1719100.019,1171806.422,21
+45146,446535.2847,1716907.823,1172664.96,21
+45147,444115.3805,1714885.313,1172939.312,21
+45148,443024.8922,1713688.553,1173727.079,21
+45149,439093.9184,1712220.175,1174515.062,21
+45150,437492.149,1709867.008,1174334.707,21
+45151,433965.6296,1707919.838,1175195.806,21
+45152,432600.5149,1706935.638,1176087.089,21
+45153,429116.6697,1705008.408,1175780.095,21
+45154,426672.8096,1703097.472,1176906.41,21
+45155,426688.733,1702380.337,1176532.019,21
+45156,422165.2776,1699736.198,1176741.242,21
+45157,420943.0805,1698629.54,1178010.471,21
+45158,418084.5813,1697737.581,1177274.643,21
+45159,416631.7224,1694721.811,1178787.243,21
+45160,414857.5042,1695389.747,1177379.964,21
+45161,411596.7721,1691456.126,1178978.718,21
+45162,410555.6204,1692056.236,1178241.539,21
+45163,407790.8824,1688928.806,2070738.999,21
+45164,405305.6809,1688537.121,1211373.996,21
+45165,404471.9895,1686369.366,1602457.401,21
+45166,400981.4982,1685733.309,1152337.243,21
+45167,399823.8051,2112810.358,1154152.951,21
+45168,397537.4716,1683437.938,1156803.022,21
+45169,396331.0467,1679947.106,1156931.242,21
+45170,392822.6559,1680140.723,1159127.487,21
+45171,392057.1003,1678204.128,1160171.229,21
+45172,389674.9475,1676595.851,1161145.64,21
+45173,387649.5128,1676200.784,1162535.135,21
+45174,385673.7676,1673587.814,1163328.883,21
+45175,383529.2759,1673629.953,1164706.879,21
+45176,381232.1384,1672050.871,1164967.146,21
+45177,380067.2153,1669174.816,1166483.904,21
+45178,378244.2334,1670725.523,1166816.836,21
+45179,375679.3893,1668495.028,1168313.052,21
+45180,373900.8536,1665077.856,1168630.618,21
+45181,373753.3719,1666893.934,1161541.918,21
+45182,371384.5094,1663291.407,1160473.716,21
+45183,371990.323,1662951.946,1161010.854,21
+45184,369992.1954,1659206.332,1156794.856,21
+45185,370318.5439,1659374.082,1152182.243,21
+45186,369634.7698,1655927.385,1151106.916,21
+45187,368505.5689,1655665.777,1149226.762,21
+45188,368134.833,1651975.776,1146634.513,21
+45189,367662.2374,1651132.199,2036870.676,21
+45190,367884.6607,1649411.2,1175446.673,21
+45191,367613.3846,1646742.217,1565477.012,21
+45192,367469.2595,1645149.477,1112595.473,21
+45193,367010.1943,1642815.22,1110654.319,21
+45194,367497.8377,1640844.263,1109293.616,21
+45195,366735.9079,1638772.353,1109097.607,21
+45196,367075.087,1638140.398,1107486.246,21
+45197,366550.914,1634520.465,1106262.321,21
+45198,366484.6063,1633420.806,1105375.624,21
+45199,366577.9746,1631915.189,1103522.628,21
+45200,366202.6268,1630073.681,1102456.258,21
+45201,366337.1012,1627688.842,1100282.611,21
+45202,366235.0047,1625252.522,1099653.297,21
+45203,365946.1292,1624235.29,1097733.742,21
+45204,365874.1131,1622342.294,1096250.661,21
+45205,365838.1392,1620133.755,1093714.564,21
+45206,365565.2107,1617721.82,1093231.046,21
+45207,365790.9803,1616950.806,1090056.729,21
+45208,365266.862,1614360.761,1089432.387,21
+45209,365889.7698,1613339.916,1087158.064,21
+45210,364757.3641,1610375.42,1085278.977,21
+45211,365653.0785,1609429.42,1086418.314,21
+45212,364852.8651,1606089.587,1080590.59,21
+45213,364985.3382,1606423.546,1078742.181,21
+45214,364707.2216,1602820.871,1075857.001,21
+45215,364602.6138,1601767.656,1973614.42,21
+45216,364498.2223,1599074.946,1103629.671,21
+45217,364460.2385,1598474.907,1505371.642,21
+45218,364106.398,1595951.924,1041823.059,21
+45219,364096.2339,1593334.379,1041234.355,21
+45220,363733.8365,1592533.591,1039222.253,21
+45221,364076.5557,1591160.556,1038443.031,21
+45222,363441.5374,1588321.57,1036597.6,21
+45223,363426.4835,1586244.968,1035231.56,21
+45224,363490.479,1586166.507,1033540.76,21
+45225,363207.7076,1582559.229,1032419.821,21
+45226,362921.7208,1580684.54,1029899.664,21
+45227,362830.359,1580381.324,1028479.784,21
+45228,363045.4059,1575999.644,1026161.267,21
+45229,362506.73,1577388.19,1025489.421,21
+45230,362632.1128,1573667.583,1022277.097,21
+45231,362246.9771,1559487.47,1020976.317,21
+45232,362444.1635,1553987.712,1018243.373,21
+45233,361918.0485,1552201.439,1016269.728,21
+45234,361949.7769,1549575.472,1014580.916,21
+45235,361933.926,1547387.34,1012324.253,21
+45236,361833.6389,1546431.513,1010098.242,21
+45237,361802.9651,1542992.51,1010361.06,21
+45238,361073.1343,1540940.195,1005545.401,21
+45239,361377.5141,1540098.206,1002534.365,21
+45240,361433.6069,1535556.789,1000809.712,21
+45241,365465.7717,1536664.262,1918528.183,21
+45242,365396.807,1531503.8,1043355.264,21
+45243,365611.393,1530770.917,1457152.631,21
+45244,365223.669,1528136.36,986896.3465,21
+45245,365272.673,1525300.925,989593.3159,21
+45246,364911.4812,1523449.5,988326.1323,21
+45247,365289.7777,1522083.444,989152.6058,21
+45248,364495.7165,1518607.837,989277.6935,21
+45249,365435.5632,1517125.048,990494.1116,21
+45250,364246.3292,1514323.83,989960.5086,21
+45251,364920.9902,1513454.092,991263.2691,21
+45252,364376.7524,1509987.147,990969.1309,21
+45253,364436.17,1937875.648,991536.1779,21
+45254,364236.413,1505755.247,991828.7856,21
+45255,364361.0591,1504741.245,991898.2975,21
+45256,364032.4717,1500889.921,992046.6315,21
+45257,364141.7164,1500334.171,991685.9443,21
+45258,363605.373,1496543.517,992451.6985,21
+45259,364256.5203,1495128.718,991716.8144,21
+45260,363703.6526,1494047.166,992310.3526,21
+45261,363808.4161,1490468.563,991509.9501,21
+45262,363438.7256,1489535.643,992084.5295,21
+45263,363510.071,1486648.988,991473.098,21
+45264,363508.8882,1484770.324,990993.957,21
+45265,363442.3592,1482498.769,991683.0334,21
+45266,363134.1167,1480837.226,990455.4739,21
+45267,363429.8498,1477794.251,990366.8515,21
+45268,362820.7187,1476631.495,990146.4302,21
+45269,363321.3731,1474314.244,990410.8681,21
+45270,362653.1,1472697.861,989064.0068,21
+45271,363147.1104,1469741.121,989931.1488,21
+45272,363189.2766,1467351.319,1903051.631,21
+45273,363063.9661,1465362.05,1023138.383,21
+45274,363427.2513,1463148.892,1443455.813,21
+45275,363288.0304,1460044.2,966772.8473,21
+45276,363302.3136,1459192.682,972507.4008,21
+45277,363827.1505,1455489.564,968863.5398,21
+45278,363446.3189,1454173.048,969838.2742,21
+45279,364066.8472,1451661.92,971676.2998,21
+45280,363706.1421,1449173.451,971460.8352,21
+45281,364107.0409,1447598.767,973596.1515,21
+45282,363948.4046,1443861.075,974100.52,21
+45283,364715.0938,1441805.511,974633.024,21
+45284,364290.3092,1440924.38,976533.8668,21
+45285,364643.9178,1437096.144,975915.4324,21
+45286,364796.9204,1435763.414,978356.8847,21
+45287,365077.4058,1433042.258,977558.8407,21
+45288,364996.5102,1430772.009,979110.6057,21
+45289,365480.4329,1428057.343,979234.6778,21
+45290,365116.0808,1426328.635,980875.8647,21
+45291,365727.189,1423889.642,980200.3787,21
+45292,365688.6873,1425326.756,982172.8499,21
+45293,366085.8534,1419996.648,981423.8788,21
+45294,365995.8084,1419510.877,983372.4575,21
+45295,366467.0497,1416527.052,982389.0472,21
+45296,366251.3678,1415140.872,987105.4328,21
+45297,366743.9156,1411632.664,983457.5591,21
+45298,366953.6303,1410420.783,984534.8581,21
+45299,366654.1852,1407352.119,984678.673,21
+45300,367289.7402,1406972.649,1902799.829,21
+45301,363275.7841,1402710.93,1006507.37,21
+45302,363575.6353,1399037.681,1429169.73,21
+45303,363599.5295,1396260.001,949007.1256,21
+45304,364302.3776,1393538.269,958442.2701,21
+45305,364539.4611,1389239.08,948878.7286,21
+45306,365245.7698,1387524.983,950128.7034,21
+45307,365252.7366,1385210.66,949254.0396,21
+45308,366642.1183,1381496.757,949955.1089,21
+45309,366954.042,1378321.524,949639.798,21
+45310,367481.0048,1375870.599,949704.3208,21
+45311,367934.7592,1370958.285,949331.1502,21
+45312,368087.6088,1369270.527,949550.6073,21
+45313,368790.3178,1366289.637,949437.5731,21
+45314,369080.7305,1363013.497,949108.86,21
+45315,369461.0364,1360817.914,948743.2495,21
+45316,370120.7389,1357506.281,948933.0049,21
+45317,370250.3176,1355079.669,948039.7627,21
+45318,371072.2556,1352125.519,948050.5798,21
+45319,371111.3665,1349079.331,947726.9317,21
+45320,371568.0129,1345739.117,947463.597,21
+45321,372239.2998,1343981.086,946839.3096,21
+45322,372479.5402,1340387.643,946576.2736,21
+45323,372161.4522,1338616.142,946053.4893,21
+45324,372518.0554,1334461.462,945838.6529,21
+45325,373161.9507,1332112.894,945276.7918,21
+45326,373435.1856,1329666.195,944322.5234,21
+45327,373862.4652,1326461.675,944510.0875,21
+45328,374495.5342,1323324.141,943617.0043,21
+45329,374551.7157,1321113.859,1861355.78,21
+45330,375356.4884,1318075.401,975489.1335,21
+45331,375562.1662,1315652.787,1405202.754,21
+45332,376102.7275,1311941.093,918339.2843,21
+45333,376771.6674,1310630.982,945848.7323,21
+45334,376785.4322,1306432.351,916351.7366,21
+45335,377942.3872,1304591.154,916183.1991,21
+45336,377579.1581,1301076.32,915805.0063,21
+45337,378723.3841,1299098.15,915726.6111,21
+45338,378853.8902,1295984.274,915188.5386,21
+45339,379393.8691,1293321.964,914547.0471,21
+45340,379800.0755,1290333.639,914128.9945,21
+45341,380220.0098,1288348.903,913989.9701,21
+45342,381019.5203,1285973.4,912844.2375,21
+45343,381117.009,1284494.769,912308.6723,21
+45344,381700.9518,1280843.879,911957.896,21
+45345,382344.4698,1278368.049,911165.0471,21
+45346,382623.8026,1275517.009,909623.3092,21
+45347,382912.4775,1273686.057,910130.5837,21
+45348,384301.8033,1269196.935,907842.5013,21
+45349,383523.7592,1268764.874,908419.9779,21
+45350,385272.284,1264574.195,906428.6189,21
+45351,384584.5273,1260996.816,905451.8478,21
+45352,386105.3194,1258111.798,904922.9537,21
+45353,385666.1148,1256577.621,907241.5228,21
+45354,386904.1202,1253398.911,902410.2152,21
+45355,387091.4997,1250948.198,901356.5865,21
+45356,387580.7338,1248804.13,900585.791,21
+45357,388344.2308,1246488.786,899103.88,21
+45358,387880.8731,1243394.5,898551.8592,21
+45359,389633.9461,1242158.381,1821562.903,21
+45360,389478.7007,1238383.454,928889.5351,21
+45361,419520.6919,1293665.162,1417327.453,21
+45362,419600.0481,1322213.277,920135.6869,21
+45363,419845.2917,1307289.94,967576.3376,21
+45364,419321.4167,1311281.796,917700.0668,21
+45365,419568.0391,1309432.83,916303.7994,21
+45366,418848.1477,1309133.119,915915.3557,21
+45367,419772.5102,1309180.559,915067.5194,21
+45368,418485.9639,1309442.939,914400.0973,21
+45369,419253.8883,1308307.936,913515.0356,21
+45370,418691.1569,1308968.249,912159.9615,21
+45371,418693.4838,1307550.226,912086.5814,21
+45372,418685.7272,1308137.729,910666.861,21
+45373,418449.4079,1306018.978,909252.3688,21
+45374,418150.6211,1307178.136,909292.8829,21
+45375,418497.8235,1304754.514,907176.9376,21
+45376,417513.8663,1306099.026,906181.3598,21
+45377,418584.998,1302215.575,905136.6176,21
+45378,417497.4035,1302351.73,903851.6932,21
+45379,417727.7859,1301909.764,902188.716,21
+45380,417478.7246,1301628.478,901347.4755,21
+45381,417373.6865,1299756.443,899525.2307,21
+45382,417211.9744,1300430.31,898894.142,21
+45383,417197.3663,1299266.598,896028.4351,21
+45384,416773.4036,1298471.022,895788.9054,21
+45385,416694.5318,1298743.219,894154.0049,21
+45386,416490.0878,1295971.887,891644.3079,21
+45387,416664.3031,1297716.037,894083.6642,21
+45388,416210.6723,1295639.575,888087.6424,21
+45389,415809.0015,1295663.503,888301.4485,21
+45390,416407.9326,1294958.339,884987.617,21
+45391,414990.977,1294547.008,1819793.463,21
+45392,415859.2186,1293676.946,914958.7589,21
+45393,414400.1349,1294192.669,1365738.234,21
+45394,414317.6972,1293311.32,857853.8773,21
+45395,414492.3877,1291768.026,941459.6773,21
+45396,413341.1206,1292842.146,853388.1496,21
+45397,413173.1123,1292408.546,851822.6629,21
+45398,412809.0641,1291399.566,851195.8575,21
+45399,412656.0155,1291490.601,850885.1272,21
+45400,411290.8479,1291265.091,849998.2905,21
+45401,412001.154,1291249.08,848510.8724,21
+45402,410636.2047,1289294.715,848036.3574,21
+45403,410222.2775,1290424.866,847081.3541,21
+45404,410382.7056,1290599.982,845641.1171,21
+45405,409594.8836,1289783.359,845263.7973,21
+45406,408955.3893,1290737.863,843320.6572,21
+45407,408450.866,1288619.461,842639.4694,21
+45408,408390.0385,1289817.445,841514.9217,21
+45409,407284.7441,1288686.726,840235.3403,21
+45410,406893.1466,1288744.11,838749.9348,21
+45411,406941.8121,1288473.719,837828.4128,21
+45412,405929.5115,1288012.905,836173.0374,21
+45413,405307.9204,1285847.149,835867.9805,21
+45414,405362.5356,1287430.596,832927.7449,21
+45415,404173.1227,1284860.98,832476.5406,21
+45416,404273.4242,1287019.395,831173.2055,21
+45417,403031.2179,1285062.702,829025.5273,21
+45418,403250.9184,1285618.771,828263.5905,21
+45419,402255.2576,1284737.972,829694.8388,21
+45420,401850.6353,1284180.661,824372.3278,21
+45421,370728.7594,1221193.305,770500.6194,21
+45422,370754.2038,1217990.316,765783.4135,21
+45423,369279.1509,1217167.177,1708115.878,21
+45424,369101.2255,1214246.308,790095.7124,21
+45425,368257.1345,1212778.088,1251157.502,21
+45426,368016.8646,1210291.183,729294.3886,21
+45427,367128.9343,1208967.216,857921.2623,21
+45428,366714.97,1206668.487,718066.5097,21
+45429,366091.9324,1204442.053,713933.1928,21
+45430,365497.4991,1202947.821,710570.3385,21
+45431,364675.747,1200817.606,707504.8455,21
+45432,364475.0802,1198559.578,702797.7785,21
+45433,363648.0984,1197004.5,699841.4471,21
+45434,363108.8568,1194966.715,695562.496,21
+45435,362332.0468,1192988.75,691756.5551,21
+45436,362041.121,1190569.23,688265.5094,21
+45437,361385.1653,1189858.465,684435.4202,21
+45438,360582.9724,1186519.189,679946.6666,21
+45439,360821.7576,1185244.268,676980.2667,21
+45440,359274.3152,1183471.843,672540.6873,21
+45441,359286.4978,1180705.292,668950.7192,21
+45442,358748.5987,1179924.409,664500.1244,21
+45443,358046.8278,1177040.125,660937.1223,21
+45444,357538.7619,1175846.244,657039.8176,21
+45445,357151.5244,1173781.313,652851.4216,21
+45446,356480.8971,1171005.512,648911.0129,21
+45447,355952.51,1170286.938,645140.1956,21
+45448,355767.9538,1167540.042,640597.4941,21
+45449,354763.8308,1166138.581,636982.8678,21
+45450,354508.8424,1163809.329,632828.2469,21
+45451,354145.8889,1162053.666,631263.537,21
+45452,353911.1985,1160772.632,623772.6724,21
+45453,353339.9235,1157659.861,619420.408,21
+45454,353494.4186,1156749.505,614063.5433,21
+45455,352971.284,1154489.627,1574120.586,21
+45456,352632.782,1153007.902,639262.242,21
+45457,352790.3289,1150762.255,1118454.544,21
+45458,352193.4936,1149092.692,580696.9066,21
+45459,352183.3969,1147101.416,782214.5064,21
+45460,351815.1759,1146026.77,605272.2771,21
+45461,351618.872,1144074.566,562105.6723,21
+45462,351284.3976,1141673.615,566161.933,21
+45463,351214.7071,1140128.24,553722.4969,21
+45464,351005.6581,1138522.867,549957.4947,21
+45465,350813.2488,1136623.977,545734.2788,21
+45466,350324.4994,1134286.043,543418.9025,21
+45467,350253.0493,1132772.689,540025.2353,21
+45468,350391.8766,1130631.009,537795.5496,21
+45469,349888.238,1129062.521,534692.7707,21
+45470,349630.9395,1126946.231,531831.4489,21
+45471,349386.4433,1124919.939,528883.8302,21
+45472,349613.0622,1123223.767,525827.5056,21
+45473,348962.7988,1121242.845,523047.4173,21
+45474,349004.3266,1118954.963,519725.3183,21
+45475,348672.0908,1117897.976,516263.1194,21
+45476,348610.7994,1114573.485,513399.311,21
+45477,348204.6019,1113643.261,510237.3652,21
+45478,348447.9847,1111225.03,506726.7193,21
+45479,347776.2194,1108641.41,503311.8169,21
+45480,347740.7754,1106182.357,500247.3552,21
+45481,352913.4632,1112391.345,505467.38,21
+45482,352187.9454,1113921.163,502497.738,21
+45483,352816.162,1114426.54,498518.3758,21
+45484,352861.1552,1116559.902,495291.714,21
+45485,352483.8078,1117295.457,491528.1425,21
+45486,352931.0722,1118738.602,487722.5923,21
+45487,353020.5204,1119471.746,483812.3548,21
+45488,352408.4419,1121074.964,480217.2217,21
+45489,353242.3475,1121747.465,476018.1411,21
+45490,352949.2884,1123199.704,472430.7232,21
+45491,352516.3417,1124640.721,467801.0291,21
+45492,353198.1559,1125122.303,464533.2222,21
+45493,352997.5038,1127114.967,459922.4119,21
+45494,352663.2164,1128109.809,456175.0488,21
+45495,353271.0639,1128964.018,451888.2431,21
+45496,353338.9128,1130576.38,1345640.229,21
+45497,352732.5079,1131839.552,414568.0425,21
+45498,353606.4808,1132524.904,893459.531,21
+45499,352906.3847,1134242.763,361114.2373,21
+45500,353567.8864,1135272.728,643769.3119,21
+45501,353136.1718,1136562.861,461719.6293,21
+45502,353376.172,1137590.865,391144.8344,21
+45503,353506.2383,1138952.43,422621.4173,21
+45504,353391.722,1140303.49,409607.4307,21
+45505,353573.0995,1141247.948,402639.9369,21
+45506,353669.1679,1142902.593,397515.9655,21
+45507,353457.09,1143460.71,392877.304,21
+45508,353587.9396,1145164.522,388326.6018,21
+45509,353797.0382,1146501.975,383664.575,21
+45510,353775.7332,1147247.564,379113.0317,21
+45511,353960.2091,1148398.049,375362.6994,21
+45512,354381.1659,1150726.219,371522.0005,21
+45513,354603.6763,1150119.422,367449.1961,21
+45514,354882.9554,1153024.955,364452.0022,21
+45515,355492.5268,1153310.012,360373.9531,21
+45516,355746.2202,1154834.793,356680.1607,21
+45517,355843.6415,1156022.937,353013.6791,21
+45518,356489.7241,1157361.889,348999.0257,21
+45519,356854.324,1157879.793,345566.9054,21
+45520,356883.4484,1160126.864,342011.3264,21
+45521,357876.592,1160363.744,337926.1491,21
+45522,357665.975,1161892.856,334815.5681,21
+45523,358602.6326,1163332.393,330685.0813,21
+45524,358667.7521,1164726.205,327141.8478,21
+45525,359254.7778,1165811.73,323673.7827,21
+45526,359839.8338,1166122.258,319442.7668,21
+45527,359926.8799,1168866.879,316293.4777,21
+45528,360806.2676,1169807.319,312206.8546,21
+45529,361008.8219,1172298.22,308630.1808,21
+45530,361329.419,1172462.712,305332.7624,21
+45531,362278.0768,1174499.545,301613.6123,21
+45532,362260.523,1174977.548,297966.1077,21
+45533,363383.4308,1177130.325,1047096.971,21
+45534,363393.6427,1177672.552,208827.0017,21
+45535,364068.7538,1179328.455,604474.4444,21
+45536,364410.0867,1180588.616,171063.533,21
+45537,365269.7598,1181417.623,461366.2924,21
+45538,365546.8143,1183020.971,308525.8546,21
+45539,366050.7823,1184224.212,254742.3253,21
+45540,366823.2345,1185258.256,279024.887,21
+45541,362463.5357,1179818.846,261381.6393,21
+45542,363350.1673,1180374.732,257389.4098,21
+45543,364003.922,1179530.788,255475.1934,21
+45544,364978.0991,1180174.374,252973.3329,21
+45545,365273.2785,1180150.483,251227.0215,21
+45546,366331.48,1180704.78,249603.5041,21
+45547,367125.3722,1180296.595,248009.5987,21
+45548,367562.5651,1180543.98,246574.4401,21
+45549,368572.0102,1180494.48,244470.1329,21
+45550,369420.1698,1180987.346,243190.0656,21
+45551,370002.799,1180908.946,241639.593,21
+45552,370890.0491,1181383.499,239761.9353,21
+45553,371812.939,1181007.908,238388.4381,21
+45554,372305.4536,1181173.618,236971.1728,21
+45555,373358.6745,1182029.338,235333.0569,21
+45556,373996.2152,1181075.248,233927.9363,21
+45557,374942.3805,1181700.094,232739.4789,21
+45558,375604.0343,1182207.986,231225.7791,21
+45559,376490.5359,1181677.126,229736.2902,21
+45560,377103.2279,1182204.973,228246.1552,21
+45561,378576.4298,1182297.66,227420.5471,21
+45562,378612.4255,1182242.883,225641.5957,21
+45563,380055.06,1182450.05,224614.4532,21
+45564,380569.0957,1182847.922,223457.7305,21
+45565,381880.963,1182724.731,222039.9099,21
+45566,382032.2586,1182960.933,220699.7506,21
+45567,383343.9311,1183046.139,219852.0401,21
+45568,384149.9638,1183222.318,218560.0408,21
+45569,384723.6196,1183381.958,217204.4311,21
+45570,385915.1438,1183420.655,216645.0732,21
+45571,386543.8124,1183675.347,214561.1919,21
+45572,386683.9149,1183454.547,213537.3206,21
+45573,388148.3071,1183868.853,212206.3062,21
+45574,388485.2506,1183544.927,210409.385,21
+45575,388864.5627,1183976.163,209066.3265,21
+45576,390062.1587,1183571.861,207777.1715,21
+45577,390286.5984,1184130.49,206354.1006,21
+45578,390977.8474,1183864.838,204693.9504,21
+45579,391768.1965,1183812.994,203668.0236,21
+45580,392330.3023,1184303.328,202004.5205,21
+45581,393106.2435,1184115.233,200834.2427,21
+45582,393594.5835,1185127.431,199060.0492,21
+45583,394370.7692,1184993.103,198324.7793,21
+45584,394818.2467,1185005.457,841001.5814,21
+45585,395598.0646,1185809.759,127770.2462,21
+45586,396496.3596,1185143.105,407278.7628,21
+45587,396806.7092,1184953.904,103604.6987,21
+45588,397637.7098,1185789.291,320540.946,21
+45589,397935.3284,1185028.313,212264.2872,21
+45590,399106.2025,1186030.278,177129.5085,21
+45591,399201.2933,1185185.007,195390.8397,21
+45592,400235.4559,1186000.811,188461.933,21
+45593,400684.285,1185156.233,186427.145,21
+45594,401484.7941,1185963.021,184179.0099,21
+45595,401823.0488,1184648.105,183213.0969,21
+45596,402633.8896,1184496.4,181391.0108,21
+45597,403404.0006,1184887.369,180134.0593,21
+45598,403970.1431,1184375.85,178810.6349,21
+45599,404520.0339,1185571.25,177401.206,21
+45600,405119.0696,1184171.058,176145.1506,21
+45601,405460.5355,1184833.182,173734.0644,21
+45602,405464.3285,1184157.469,171135.687,21
+45603,405714.6873,1184386.303,169184.4783,21
+45604,405654.338,1184660.557,166357.2856,21
+45605,406273.5593,1184739.805,164380.844,21
+45606,405708.7443,1184191.921,161707.145,21
+45607,406396.5116,1184727.729,159477.543,21
+45608,406635.866,1183387.97,156757.6205,21
+45609,406170.0544,1184049.961,154511.3907,21
+45610,406802.0711,1183365.289,152327.4119,21
+45611,406827.8786,1182416.332,149394.1038,21
+45612,406828.4734,1182170.29,147532.0496,21
+45613,407264.8395,1182005.244,144736.5622,21
+45614,406969.9087,1181606.344,142681.1173,21
+45615,407527.6653,1181209.175,139881.7962,21
+45616,407568.4395,1181727.662,137643.5929,21
+45617,407310.3003,1180827.076,135256.7796,21
+45618,408200.6696,1181001.356,133221.1556,21
+45619,407565.5894,1180555.286,131945.7563,21
+45620,408249.6582,1180512.996,130452.8254,21
+45621,407980.5851,1179777.541,129262.0546,21
+45622,408278.408,1180235.506,126502.8915,21
+45623,408534.6221,1179978.553,125535.133,21
+45624,408539.1512,1179108.8,123610.3323,21
+45625,408557.4381,1179320.834,122648.3428,21
+45626,409106.4138,1179128.716,121232.2854,21
+45627,408698.5773,1178584.106,119689.0373,21
+45628,409226.8735,1178794.273,118820.4583,21
+45629,409428.159,1178155.486,116852.2845,21
+45630,409010.7024,1178022.707,116198.2081,21
+45631,409510.8305,1178117.267,114767.3187,21
+45632,409569.392,1177217.566,113846.6151,21
+45633,409680.0079,1177324.323,112946.2219,21
+45634,409677.3042,1177257.739,112001.7192,21
+45635,409837.9998,1176486.625,111032.8972,21
+45636,409967.7656,1178436.26,110272.6578,21
+45637,410193.7619,1177092.845,109408.0406,21
+45638,409774.5848,1177752.889,108304.2502,21
+45639,410421.1404,1177198.236,107878.6501,21
+45640,410062.2301,1176560.763,106666.5101,21
+45641,410333.8296,1177574.956,106124.8359,21
+45642,410417.5346,1175663.387,105306.4936,21
+45643,410514.5718,1175201.017,104722.3732,21
+45644,410616.7799,1174611.218,103833.3994,21
+45645,410438.45,1174316.618,664619.8969,21
+45646,411049.9889,1174260.658,56129.1388,21
+45647,410660.1283,1174057.036,232182.147,21
+45648,410800.6628,1173091.311,43722.00335,21
+45649,411071.9816,1173866.487,187579.1127,21
+45650,411049.409,1172571.253,118372.9936,21
+45651,410964.2011,1173314.19,129474.2003,21
+45652,411299.6956,1172311.181,43487.94425,21
+45653,410984.9879,1172481.469,185159.4498,21
+45654,411586.5354,1172035.167,106526.9729,21
+45655,411322.5899,1171749.3,117957.7592,21
+45656,411492.8628,1171891.562,44759.44367,21
+45657,411330.6214,1171243.631,181163.2169,21
+45658,411677.3384,1170609.504,104224.931,21
+45659,411655.942,1171239.881,98555.40455,21
+45660,411692.7601,1170256.829,103753.6164,21
+45661,468488.0625,1240164.426,148228.3076,21
+45662,472578.5477,1244373.037,152304.8437,21
+45663,474418.3893,1245253.679,177936.1468,21
+45664,476713.5142,1246072.861,166921.7103,21
+45665,477999.6166,1246654.28,171079.9183,21
+45666,480492.5737,1248123.718,172990.8766,21
+45667,482024.7582,1248389.841,174939.651,21
+45668,487231.4917,1287120.987,176702.4419,21
+45669,493774.5393,1318895.22,178454.3804,21
+45670,492454.7447,1293417.583,179837.2431,21
+45671,495205.9741,1305547.571,181933.5255,21
+45672,497130.2265,1307150.272,183579.5994,21
+45673,499705.9543,1307728.132,185108.9138,21
+45674,500738.2863,1310745.466,186875.6853,21
+45675,503410.9689,1311321.005,188598.7778,21
+45676,504770.3296,1312516.988,190277.884,21
+45677,506418.56,1313480.437,191785.15,21
+45678,509191.0698,1316876.347,194043.6059,21
+45679,509929.0945,1314595.394,195166.4781,21
+45680,512496.9198,1318978.029,197355.0321,21
+45681,513771.07,1317727.436,198620.9242,21
+45682,517125.1641,1319349.403,200631.3717,21
+45683,518669.3157,1321584.041,202006.6354,21
+45684,520271.2867,1320136.406,203913.1628,21
+45685,521936.3851,1323393.054,205727.4878,21
+45686,524315.5069,1323459.906,207150.7748,21
+45687,525410.9153,1323421.104,208417.8423,21
+45688,527013.7229,1325683.414,210635.9864,21
+45689,529307.0491,1325536.66,212130.2551,21
+45690,530259.6569,1326969.158,213732.1909,21
+45691,532456.6573,1326747.369,213716.7928,21
+45692,533629.5955,1328209.819,215209.5883,21
+45693,535561.4678,1329352.721,216355.4137,21
+45694,536869.8424,1328668.866,217091.9406,21
+45695,538893.1334,1330635.391,218241.3223,21
+45696,540112.2756,1330486.45,219469.2974,21
+45697,541828.1906,1331972.941,220308.4472,21
+45698,543404.7852,1331662.471,221150.6652,21
+45699,549184.6238,1332184.879,222550.5979,21
+45700,555717.4848,1334028.208,222879.5313,21
+45701,555221.1455,1332890.537,224428.9374,21
+45702,557338.9783,1335761.608,225005.8695,21
+45703,560646.1416,1333972.963,225978.1331,21
+45704,562213.9361,1336576.375,226958.5142,21
+45705,564553.6174,1334650.534,227769.8305,21
+45706,566425.7772,1336973.596,228593.7812,21
+45707,569295.2164,1336788.181,229436.7105,21
+45708,570338.2298,1338217.232,230388.7283,21
+45709,573152.8568,1337141.281,231120.6993,21
+45710,574972.9117,1338697.027,231791.8868,21
+45711,577068.7935,1339216.187,232714.9995,21
+45712,579128.0038,1338996.752,233803.8502,21
+45713,580534.1456,1340653.957,234024.0365,21
+45714,583305.1116,1339994.182,234986.2074,21
+45715,584716.2488,1340058.473,235664.1495,21
+45716,587154.4489,1340799.041,236536.6383,21
+45717,589188.977,1342619.413,237054.0138,21
+45718,590800.9976,1340626.643,238012.9601,21
+45719,592600.9671,1342637.704,238436.5152,21
+45720,594877.4766,1342420.999,239421.3743,21
+45721,655742.3551,1402611.84,262648.2937,21
+45722,662335.8389,1409290.992,264351.9757,21
+45723,663528.5842,1412885.586,265966.2904,21
+45724,666761.5438,1411714.062,266225.8506,21
+45725,668670.0722,1413979.298,195357.4937,21
+45726,669558.6317,1414573.851,195631.2703,21
+45727,672912.0896,1414293.515,196876.2283,21
+45728,673594.6506,1415723.392,197180.5822,21
+45729,675576.1588,1416517.084,197951.8327,21
+45730,676749.6458,1416794.71,198455.8716,21
+45731,679777.9998,1417450.51,198721.4086,21
+45732,680296.6358,1418486.097,199988.8512,21
+45733,681946.3994,1417937.915,199621.4261,21
+45734,683817.0252,1419807.574,200636.3587,21
+45735,685522.9612,1418772.48,200744.7927,21
+45736,686189.2014,1420132.16,201125.0605,21
+45737,689384.3954,1420411.261,201544.1698,21
+45738,689432.7385,1420076.774,201813.1541,21
+45739,690848.8402,1421162.95,201599.5759,21
+45740,693743.6775,1421722.134,202795.0235,21
+45741,693559.4988,1421130.805,202172.3175,21
+45742,696158.7175,1422159.837,202403.4059,21
+45743,696272.511,1421781.025,203063.5686,21
+45744,699213.5133,1423239.434,202568.0466,21
+45745,699327.1336,1422510.952,203084.7949,21
+45746,701016.9062,1423500.17,202571.6192,21
+45747,702106.9602,1422419.864,203140.4424,21
+45748,703678.5891,1424616.642,202599.8048,21
+45749,705660.6218,1422327.323,203103.5345,21
+45750,706085.1883,1425012.525,202352.5593,21
+45751,707430.6564,1424017.139,202695.6557,21
+45752,708499.8799,1424005.815,202272.5599,21
+45753,711280.3455,1424622.096,202520.4642,21
+45754,711165.94,1423676.375,202019.9743,21
+45755,711763.6297,1424824.462,201520.5051,21
+45756,714241.9137,1424725.773,203780.6923,21
+45757,715631.9061,1425370.888,202163.0363,21
+45758,715958.6547,1424309.831,202679.8039,21
+45759,717652.5316,1425494.184,202183.3467,21
+45760,718555.6699,1425209.973,201932.8188,21
+45761,719370.508,1424310.312,201411.1473,21
+45762,721195.6649,1425934.591,202105.0145,21
+45763,722606.2686,1424965.114,200562.7794,21
+45764,722424.7456,1424811.308,201243.0147,21
+45765,725559.4171,1425784.291,200211.5166,21
+45766,724970.4961,1425325.745,200446.0736,21
+45767,726507.7941,1424758.334,199615.7453,21
+45768,728643.3991,1425737.282,199159.8657,21
+45769,728433.2489,1424428.46,198727.7789,21
+45770,730753.7484,1426224.01,198595.4186,21
+45771,730588.3438,1425371.867,197958.0576,21
+45772,732501.0745,1424980.74,197040.8021,21
+45773,733704.8025,1425565.719,196749.0908,21
+45774,733921.8286,1424796.528,196291.6385,21
+45775,735556.3851,1424727.557,195726.9384,21
+45776,737062.0104,1424902.199,195083.9767,21
+45777,736848.7534,1424819.233,194158.863,21
+45778,738275.3846,1425542.277,193747.9319,21
+45779,741032.0128,1422484.474,193264.107,21
+45780,741645.3117,1424033.895,192486.2354,21
+45781,742156.4435,1423668.65,192844.4962,21
+45782,743033.8335,1425180.795,193339.5666,21
+45783,744193.705,1427107.78,193568.1249,21
+45784,744093.0189,1426211.136,194231.0358,21
+45785,744232.7858,1428401.14,194760.1568,21
+45786,745354.9288,1429443.417,194815.6208,21
+45787,744385.6007,1429378.109,195940.8897,21
+45788,745828.8289,1430982.265,195666.8517,21
+45789,745509.9252,1431149.048,196249.8147,21
+45790,746079.4751,1433169.397,196678.3468,21
+45791,745960.93,1432318.152,197390.6166,21
+45792,746913.5106,1434717.484,197445.6129,21
+45793,746781.2733,1434232.767,198290.4374,21
+45794,747378.0855,1436535.882,198124.2422,21
+45795,747109.5051,1436048.662,199286.8652,21
+45796,748443.4398,1437053.775,198840.8318,21
+45797,747524.4255,1439395.093,199734.9571,21
+45798,748653.8594,1438438.985,200173.8652,21
+45799,748839.2938,1440304.556,200383.7934,21
+45800,749164.6235,1440916.489,200765.1785,21
+45801,749008.2553,1441610.424,201313.5012,21
+45802,749124.7242,1442691.512,201473.3682,21
+45803,750036.2797,1442184.468,202163.5774,21
+45804,749830.0219,1444896.757,201894.1362,21
+45805,750015.4383,1444275.581,203535.4592,21
+45806,750957.3889,1445434.159,202134.5232,21
+45807,749779.4992,1447325.456,204096.1235,21
+45808,750752.0802,1446820.188,203743.0396,21
+45809,751701.1416,1448648.911,204125.2831,21
+45810,750702.1911,1447854.956,204739.4475,21
+45811,751460.6622,1450846.773,204796.0163,21
+45812,751605.5245,1450215.553,205258.0593,21
+45813,751669.0618,1452329.067,205368.0362,21
+45814,752337.3034,1450515.989,206081.7507,21
+45815,751412.5861,1454503.4,206343.7895,21
+45816,753183.8876,1452658.648,206152.3759,21
+45817,752426.4086,1455911.693,207585.7303,21
+45818,752084.4411,1454464.139,206757.2918,21
+45819,753266.5224,1456845.914,207686.0422,21
+45820,753114.712,1455961.187,207930.4423,21
+45821,753835.446,1458652.985,207881.0783,21
+45822,752095.5946,1457775.846,209002.7844,21
+45823,754854.3012,1459868.21,208386.7174,21
+45824,753819.741,1459458.909,209555.3047,21
+45825,753454.2518,1461143.359,208992.4447,21
+45826,753793.5385,1461901.071,209723.0888,21
+45827,754313.0406,1462771.234,210392.3992,21
+45828,754914.1389,1462749.197,210073.8778,21
+45829,754057.9815,1464625.868,210707.912,21
+45830,754409.3139,1463962.587,210978.4181,21
+45831,754971.6179,1466263.187,210685.39,21
+45832,755385.0573,1466078.279,211655.9171,21
+45833,753961.8411,1468274.42,211873.0183,21
+45834,756147.2409,1466943.786,212053.5313,21
+45835,754835.6028,1469573.177,212183.7504,21
+45836,755921.7691,1468281.475,212710.9701,21
+45837,754587.9893,1471017.171,212277.228,21
+45838,756539.6744,1470948.176,213494.4624,21
+45839,755625.771,1471327.59,212823.2008,21
+45840,755414.8982,1472862.037,213976.78,21
+45841,764323.2722,1483527.962,220339.3657,21
+45842,765490.0036,1487604.739,223609.1641,21
+45843,766064.52,1488955.936,225890.0544,21
+45844,767234.7209,1490812.453,227982.5799,21
+45845,766289.6172,1491617.821,230471.2589,21
+45846,768237.0961,1494748.614,233102.9573,21
+45847,767666.3981,1494641.591,235311.4603,21
+45848,768434.9257,1497805.102,237484.4362,21
+45849,768348.9729,1498401.864,240162.9461,21
+45850,770224.1523,1500313.984,242231.9843,21
+45851,769166.1815,1501022.471,244680.2391,21
+45852,769830.0801,1504129.782,247195.9202,21
+45853,769507.4215,1503865.763,249084.887,21
+45854,771157.1778,1506673.359,251540.2948,21
+45855,770547.8025,1505549.263,254039.5264,21
+45856,771839.9622,1510233.297,256110.9818,21
+45857,770759.8333,1509301.907,258984.0057,21
+45858,771837.2227,1511492.418,261667.8224,21
+45859,772970.9338,1512564.46,264038.1165,21
+45860,771906.4032,1513581.377,265785.2491,21
+45861,772428.5803,1516006.911,269315.4716,21
+45862,773525.702,1516496.51,271591.0025,21
+45863,773446.6058,1518189.315,273536.6858,21
+45864,772835.4713,1519722.992,276774.1427,21
+45865,774315.7951,1521258.094,279547.7731,21
+45866,774439.7937,1521826.434,281144.3383,21
+45867,774034.6516,1523641.014,284631.7063,21
+45868,774152.1814,1523707.392,287588.2577,21
+45869,775711.0641,1527305.388,289425.6437,21
+45870,773551.4001,1526559.777,292572.8865,21
+45871,776475.1057,1528288.086,295527.3683,21
+45872,775456.2596,1530650.759,297954.4813,21
+45873,775696.275,1529352.422,300895.3907,21
+45874,775987.5677,1533659.56,303361.8218,21
+45875,776086.7799,1533852.838,305929.4901,21
+45876,776546.3882,1533893.32,309404.2176,21
+45877,776823.0438,1536586.161,311422.9292,21
+45878,776943.1915,1537036.596,314579.5014,21
+45879,776338.9925,1539898.222,317407.3686,21
+45880,777998.047,1538743.155,319943.4848,21
+45881,777610.8732,1541410.399,323340.6192,21
+45882,777834.2442,1542601.859,325546.5166,21
+45883,777744.6083,1543012.039,329669.675,21
+45884,777465.7674,1545385.753,333580.6224,21
+45885,778769.0572,1545784.146,335586.9974,21
+45886,778168.968,1546769.645,338522.3988,21
+45887,778687.8637,1548212.063,342357.6469,21
+45888,778554.8566,1549559.451,343994.0967,21
+45889,779366.4381,1552047.741,347874.8775,21
+45890,778288.4322,1550666.649,350511.4337,21
+45891,779384.1515,1554193.712,353064.4242,21
+45892,779503.5254,1553410.801,354478.4207,21
+45893,780395.6432,1556460.91,358176.7419,21
+45894,779111.3489,1556697.406,360051.2432,21
+45895,780365.6326,1558578.074,363947.868,21
+45896,780298.5904,1559137.3,560791.9835,21
+45897,779924.0811,1560146.727,559620.0836,21
+45898,781180.892,1561138.703,556138.1476,21
+45899,780078.3224,1563907.455,554323.901,21
+45900,781217.6361,1563485.08,552725.3446,21
+45901,780942.4604,1563807.172,547375.0679,21
+45902,782784.0111,1564437.041,542864.4381,21
+45903,783673.6505,1565795.589,538898.3234,21
+45904,782943.5334,1564436.386,535328.5138,21
+45905,784420.2494,1564315.595,530235.502,21
+45906,784593.3038,1565816.419,526909.4833,21
+45907,784943.3164,1563550.448,522176.2456,21
+45908,785822.4438,1564455.953,519251.0985,21
+45909,785553.7302,1565195.811,514891.7493,21
+45910,787275.0129,1562925.911,511534.2493,21
+45911,786416.949,1564122.786,508622.2872,21
+45912,787553.4614,1564836.585,503880.8979,21
+45913,787079.8414,1562921.056,500928.8124,21
+45914,788308.2283,1563558.243,498625.0852,21
+45915,789223.3723,1563074.196,494675.9217,21
+45916,789072.963,1564515.564,492092.9843,21
+45917,789446.1798,1562061.253,488260.15,21
+45918,790031.2215,1563207.775,486382.6958,21
+45919,789823.003,1563701.469,482656.8155,21
+45920,791571.1392,1562014.689,480025.0248,21
+45921,791533.7491,1561938.968,477406.3034,21
+45922,791094.255,1562417.216,474424.6131,21
+45923,792719.1511,1563515.026,472813.453,21
+45924,792676.2318,1560714.547,469614.1166,21
+45925,792897.6365,1562348.06,467476.0507,21
+45926,793647.0348,1561676.164,465114.9263,21
+45927,794356.1696,1561346.377,462754.4882,21
+45928,793614.3186,1561492.414,460018.0237,21
+45929,795598.5871,1560710.79,458563.3584,21
+45930,795176.3874,1560668.91,456582.249,21
+45931,795143.9307,1561277.226,453288.3265,21
+45932,796626.1082,1561064.756,453184.0442,21
+45933,796859.8374,1558911.343,449752.9495,21
+45934,796172.4075,1560547.304,448575.7177,21
+45935,797909.0361,1560959.914,446622.7294,21
+45936,798019.2273,1558152.242,444876.5186,21
+45937,797818.831,1561012.404,442632.7702,21
+45938,799161.873,1558366.61,441164.3488,21
+45939,799340.4709,1559558.173,439451.9362,21
+45940,798780.2466,1559669.301,438329.1023,21
+45941,800737.6167,1557751.509,435729.152,21
+45942,800425.4462,1558396.772,435673.0876,21
+45943,800513.0812,1558865.252,432802.1325,21
+45944,801510.0532,1558012.576,432380.3107,21
+45945,801147.8529,1558373.252,430545.5745,21
+45946,802877.9491,1557371.052,430409.2366,21
+45947,802172.1586,1557029.751,433017.5091,21
+45948,802178.2416,1557776.443,429203.4794,21
+45949,804313.3569,1558190.764,430451.371,21
+45950,803230.9007,1555157.067,427812.1928,21
+45951,804413.1843,1557806.105,429782.0019,21
+45952,803937.3018,1556173.511,427131.0705,21
+45953,805300.0068,1555255.111,426518.897,21
+45954,805059.0925,1556612.069,426303.2899,21
+45955,805376.3814,1555784.618,426939.2896,21
+45956,807153.0375,1556164.284,424160.0237,21
+45957,806423.3542,1554295.604,425734.8349,21
+45958,806914.0552,1555563.825,424042.2166,21
+45959,806651.4997,1555315.272,423754.4843,21
+45960,808875.7135,1553058.982,423070.8659,15.6
+45961,0,0,0,15.6
+45962,0,0,0,15.6
+45963,0,0,0,15.6
+45964,438763.4561,3.011292573,0,15.6
+45965,0,0,0,15.6
+45966,0,0,1166603.88,15.6
+45967,0,327.2656648,0,15.6
+45968,0,0,0,15.6
+45969,0,0,0,15.6
+45970,0,0,0,15.6
+45971,0,0,0,15.6
+45972,0,0,0,15.6
+45973,0,0,0,15.6
+45974,0,0,0,15.6
+45975,0,0,0,15.6
+45976,0,0,0,15.6
+45977,0,0,0,15.6
+45978,0,0,0,15.6
+45979,339707.4828,0,0,15.6
+45980,0,0,0,15.6
+45981,0,0,0,15.6
+45982,0,0,0,15.6
+45983,0,0,0,15.6
+45984,0,0,0,15.6
+45985,0,0,0,15.6
+45986,0,0,0,15.6
+45987,0,0,0,15.6
+45988,0,0,0,15.6
+45989,0,0,0,15.6
+45990,0,0,0,15.6
+45991,0,0,0,15.6
+45992,0,0,0,15.6
+45993,0,0,0,15.6
+45994,0,0,0,15.6
+45995,0,0,0,15.6
+45996,0,0,0,15.6
+45997,0,0,0,15.6
+45998,0,0,0,15.6
+45999,0,0,0,15.6
+46000,0,0,0,15.6
+46001,0,0,1115436.266,15.6
+46002,0,0,0,15.6
+46003,0,0,0,15.6
+46004,0,0,0,15.6
+46005,0,0,0,15.6
+46006,0,0,0,15.6
+46007,0,0,0,15.6
+46008,0,0,0,15.6
+46009,0,0,0,15.6
+46010,0,0,0,15.6
+46011,0,0,0,15.6
+46012,0,0,0,15.6
+46013,0,0,0,15.6
+46014,0,0,0,15.6
+46015,0,0,0,15.6
+46016,0,0,0,15.6
+46017,0,0,0,15.6
+46018,0,0,0,15.6
+46019,0,0,0,15.6
+46020,339716.55,0,0,15.6
+46021,0,0,0,15.6
+46022,0,0,0,15.6
+46023,0,0,0,15.6
+46024,0,0,0,15.6
+46025,0,0,0,15.6
+46026,0,0,0,15.6
+46027,0,0,0,15.6
+46028,0,0,0,15.6
+46029,0,0,0,15.6
+46030,0,0,0,15.6
+46031,0,0,0,15.6
+46032,0,0,0,15.6
+46033,0,0,0,15.6
+46034,0,0,0,15.6
+46035,0,0,0,15.6
+46036,0,242.6292384,1069250.251,15.6
+46037,0,0,0,15.6
+46038,0,0,0,15.6
+46039,0,0,0,15.6
+46040,0,0,0,15.6
+46041,0,0,0,15.6
+46042,0,0,0,15.6
+46043,0,0,0,15.6
+46044,0,35963.27524,0,15.6
+46045,0,2515.589104,0,15.6
+46046,0,4779.789113,0,15.6
+46047,0,13787.14019,0,15.6
+46048,0,11059.87682,0,15.6
+46049,0,10560.7231,0,15.6
+46050,0,10997.61586,0,15.6
+46051,0,11097.08601,0,15.6
+46052,0,11421.002,0,15.6
+46053,0,11263.22812,0,15.6
+46054,0,11335.72844,0,15.6
+46055,0,11415.2856,0,15.6
+46056,0,11506.88802,0,15.6
+46057,0,11618.75509,0,15.6
+46058,0,11645.36935,0,15.6
+46059,0,11729.63708,0,15.6
+46060,0,11808.33992,0,15.6
+46061,339715.5732,11898.86835,0,15.6
+46062,0,11964.90999,0,15.6
+46063,0,12029.29551,0,15.6
+46064,0,12132.95885,0,15.6
+46065,0,12158.55868,0,15.6
+46066,0,12242.17315,0,15.6
+46067,0,12325.72949,0,15.6
+46068,0,12658.43593,111891.2458,15.6
+46069,0,12436.58074,110001.8274,15.6
+46070,0,12548.76206,108145.4622,15.6
+46071,0,12607.55977,993529.6552,15.6
+46072,0,12651.58175,100893.3538,15.6
+46073,0,12746.96013,99194.73833,15.6
+46074,0,0,97525.92347,15.6
+46075,0,0,95886.4322,15.6
+46076,0,0,94275.86584,15.6
+46077,0,0,92693.79554,15.6
+46078,0,0,0,15.6
+46079,0,0,0,15.6
+46080,0,52770.78491,0,15.6
+46081,0,0,0,15.6
+46082,0,5191.723608,0,15.6
+46083,0,18932.41087,0,15.6
+46084,0,12833.34054,0,15.6
+46085,0,12891.74939,0,15.6
+46086,0,13156.86193,0,15.6
+46087,0,13087.03802,0,15.6
+46088,0,13080.9027,0,15.6
+46089,0,12999.91392,0,15.6
+46090,0,12967.23382,0,15.6
+46091,0,12900.04808,0,15.6
+46092,0,12828.69874,0,15.6
+46093,0,12796.99148,0,15.6
+46094,0,12760.12538,0,15.6
+46095,0,12623.58976,0,15.6
+46096,0,12656.68781,0,15.6
+46097,0,12545.5367,0,15.6
+46098,0,12512.88026,0,15.6
+46099,0,12533.37826,0,15.6
+46100,0,12384.95215,0,15.6
+46101,0,12300.17419,0,15.6
+46102,0,12320.50863,0,15.6
+46103,339712.914,12166.19263,0,15.6
+46104,0,12172.25698,0,15.6
+46105,0,12081.67634,0,15.6
+46106,0,12040.62389,899129.472,15.6
+46107,0,11933.13511,0,15.6
+46108,0,11953.27126,0,15.6
+46109,0,12056.4529,0,15.6
+46110,0,0,0,15.6
+46111,0,0,0,15.6
+46112,0,0,0,15.6
+46113,0,0,0,15.6
+46114,0,0,0,15.6
+46115,0,0,0,15.6
+46116,0,0,0,15.6
+46117,0,0,0,15.6
+46118,0,46522.36474,0,15.6
+46119,0,570.4526406,0,15.6
+46120,0,3417.17188,0,15.6
+46121,0,15045.33138,86138.36628,15.6
+46122,0,11652.35281,84720.81287,15.6
+46123,0,10518.31796,83326.78249,15.6
+46124,0,11122.41357,81954.61773,15.6
+46125,0,10926.27498,80604.14199,15.6
+46126,0,10853.24184,79274.46635,15.6
+46127,0,10799.72761,77965.61168,15.6
+46128,0,10678.06373,76676.78976,15.6
+46129,0,10663.20151,75408.24168,15.6
+46130,0,10544.47193,74159.38963,15.6
+46131,0,10510.46554,72929.92151,15.6
+46132,0,10648.36478,71720.10794,15.6
+46133,0,10328.50808,70529.38737,15.6
+46134,0,10259.44003,69357.64526,15.6
+46135,0,10151.34263,68204.7286,15.6
+46136,0,10086.44789,67070.41202,15.6
+46137,0,9985.957824,65954.53063,15.6
+46138,0,9897.854337,64856.84149,15.6
+46139,0,10028.01002,63777.16667,15.6
+46140,0,9607.063028,62715.25028,15.6
+46141,0,9949.309837,722607.2981,15.6
+46142,0,10076.19944,0,15.6
+46143,0,10294.00347,0,15.6
+46144,0,10429.77248,0,15.6
+46145,339708.205,10619.21714,0,15.6
+46146,0,10804.19095,0,15.6
+46147,0,10967.63037,0,15.6
+46148,0,66.34927988,0,15.6
+46149,0,0,0,15.6
+46150,0,0,0,15.6
+46151,0,0,0,15.6
+46152,0,0,0,15.6
+46153,0,0,0,15.6
+46154,0,2.824348512,0,15.6
+46155,0,0,0,15.6
+46156,0,50649.13234,0,15.6
+46157,0,760.0937056,0,15.6
+46158,0,4079.925061,0,15.6
+46159,0,18244.25703,0,15.6
+46160,0,13047.78386,0,15.6
+46161,0,12945.13424,0,15.6
+46162,0,13424.50739,0,15.6
+46163,0,13642.2209,0,15.6
+46164,0,13770.95969,0,15.6
+46165,0,13894.02763,0,15.6
+46166,0,14115.06635,0,15.6
+46167,0,14193.64633,0,15.6
+46168,0,14344.96694,0,15.6
+46169,0,14557.32071,0,15.6
+46170,0,14657.99764,0,15.6
+46171,0,14712.34097,0,15.6
+46172,0,14923.54222,0,15.6
+46173,0,15044.89733,0,15.6
+46174,0,15411.72168,0,15.6
+46175,0,15344.97183,0,15.6
+46176,0,15492.39155,721021.045,15.6
+46177,0,15564.90017,0,15.6
+46178,0,15813.80106,61858.70858,15.6
+46179,0,15834.37169,64622.41228,15.6
+46180,0,16078.33323,63876.31916,15.6
+46181,0,16181.73499,63199.91148,15.6
+46182,0,16324.73172,62564.81255,15.6
+46183,0,16465.84779,61954.86589,15.6
+46184,0,16627.029,61363.53092,15.6
+46185,0,16718.30638,60788.5949,15.6
+46186,0,0,60229.19215,15.6
+46187,339693.4037,0,59684.69652,15.6
+46188,0,7.948103734,59154.31806,15.6
+46189,34835.74687,0,58637.29446,15.6
+46190,274.941692,69744.87401,58133.04028,15.6
+46191,3313.610766,319.9310888,57641.13555,15.6
+46192,11360.04403,6154.268561,57161.21304,15.6
+46193,10013.04416,27599.60062,56693.1018,15.6
+46194,8858.183278,16138.08973,56236.60222,15.6
+46195,9489.564403,18142.75428,55791.65107,15.6
+46196,9621.917274,18388.11882,55358.19511,15.6
+46197,9715.032557,18459.36353,54936.15515,15.6
+46198,9849.765793,18654.74135,54525.47758,15.6
+46199,9943.93285,18712.81801,54126.15479,15.6
+46200,10075.09803,18914.74254,53738.10553,15.6
+46201,10047.09331,18736.26792,53326.06622,15.6
+46202,10091.54296,18738.66054,52925.1873,15.6
+46203,10060.29627,18576.27711,52534.26606,15.6
+46204,10074.13026,18502.06489,569213.0149,15.6
+46205,10095.79472,18379.2325,22596.21157,15.6
+46206,10069.95741,18275.33754,136743.6297,15.6
+46207,10095.7954,18329.18902,0,15.6
+46208,10078.4216,18067.60418,0,15.6
+46209,10099.62113,17990.94007,0,15.6
+46210,10095.79583,17928.2419,0,15.6
+46211,10078.42182,17747.23917,582878.9483,15.6
+46212,10136.67667,17732.14102,0,15.6
+46213,10061.9398,17569.2796,0,15.6
+46214,10141.80183,17510.79543,0,15.6
+46215,10086.37722,17412.03624,0,15.6
+46216,10112.23822,17272.70295,0,15.6
+46217,10137.56686,17200.49979,0,15.6
+46218,10102.85829,17126.73587,0,15.6
+46219,0,16956.87673,0,15.6
+46220,0,0,0,15.6
+46221,0,2.166373186,0,15.6
+46222,0,0,0,15.6
+46223,0,0,0,15.6
+46224,0,68209.37797,0,15.6
+46225,0,0,0,15.6
+46226,0,4042.122749,0,15.6
+46227,46407.13346,24941.3049,0,15.6
+46228,815.595383,14993.57452,0,15.6
+46229,341834.3459,15791.11048,0,15.6
+46230,12069.10349,15934.21715,0,15.6
+46231,12088.55407,15920.18568,0,15.6
+46232,9342.409559,15747.02956,0,15.6
+46233,10267.73278,15679.35152,0,15.6
+46234,10212.06139,15536.18424,0,15.6
+46235,10246.53221,15658.6726,0,15.6
+46236,10195.65575,15331.95959,0,15.6
+46237,10262.89715,15244.09448,0,15.6
+46238,10207.80377,15185.2999,0,15.6
+46239,10230.12549,14971.56868,0,15.6
+46240,10190.79534,14923.96929,568800.1102,15.6
+46241,10254.40291,14809.66197,0,15.6
+46242,10183.48352,14712.18403,0,15.6
+46243,10203.7936,14587.76857,0,15.6
+46244,10191.64393,14469.02363,0,15.6
+46245,10225.05515,14371.76653,0,15.6
+46246,10174.38752,14256.92616,0,15.6
+46247,10204.56436,14133.95899,618057.4801,15.6
+46248,10174.38637,14047.29053,0,15.6
+46249,10203.79017,13922.84923,72669.69658,15.6
+46250,10147.28695,13778.14114,65639.00669,15.6
+46251,10175.19683,13821.80516,71230.77755,15.6
+46252,10188.81954,13550.70426,68916.09226,15.6
+46253,10151.55931,13471.66451,67966.33575,15.6
+46254,10148.05805,0,67382.67794,15.6
+46255,10160.89132,0,66906.90468,15.6
+46256,10163.02495,0,66469.95368,15.6
+46257,0,0,66053.14921,15.6
+46258,0,201.4993771,65650.93289,15.6
+46259,0,0,65261.28845,15.6
+46260,0,55917.60952,64883.11562,15.6
+46261,0,0,64384.38788,15.6
+46262,0,2820.269818,63893.45169,15.6
+46263,0,17572.4401,63410.05247,15.6
+46264,0,13815.0883,62933.91238,15.6
+46265,47544.49887,12574.01608,62465.02463,15.6
+46266,700.6818831,13284.67031,62003.35491,15.6
+46267,2241.96578,13396.32121,61548.9357,15.6
+46268,11872.29493,13550.69631,61092.92213,15.6
+46269,12513.89996,13544.22706,60663.5337,15.6
+46270,9478.939015,13716.50559,60228.66743,15.6
+46271,350154.5747,13772.33236,59830.71673,15.6
+46272,10477.60291,13883.55065,59453.50591,15.6
+46273,10538.95252,13930.01234,59077.32521,15.6
+46274,10501.449,14373.04576,58708.62863,15.6
+46275,10617.23064,14132.98316,58345.79015,15.6
+46276,10571.99864,14278.9037,57988.62977,15.6
+46277,10629.18524,14326.50556,57636.78236,15.6
+46278,10645.77348,14417.23559,0,15.6
+46279,10695.29359,14526.47587,0,15.6
+46280,10678.63378,14604.94275,0,15.6
+46281,10740.10943,14948.52853,0,15.6
+46282,10777.77491,14778.84793,0,15.6
+46283,10751.73357,14902.38746,587950.8396,15.6
+46284,10855.44173,14987.80185,0,15.6
+46285,10806.99023,15058.03814,0,15.6
+46286,10872.12652,15157.16809,0,15.6
+46287,10878.05698,15255.0824,0,15.6
+46288,10928.47263,15368.22589,0,15.6
+46289,10915.87805,15371.74743,0,15.6
+46290,10997.95785,0,0,15.6
+46291,11000.55312,0,123135.7642,15.6
+46292,11013.80213,0,72050.60051,15.6
+46293,11038.2023,0,70892.0035,15.6
+46294,11085.63063,63525.76983,80708.76734,15.6
+46295,0,3.555269757,80508.33861,15.6
+46296,0,5700.491961,77677.69338,15.6
+46297,0,23699.72806,78459.25443,15.6
+46298,0,15264.9391,78378.73501,15.6
+46299,0,16151.663,78313.11705,15.6
+46300,0,16499.97164,78273.91411,15.6
+46301,0,16526.24862,78201.71125,15.6
+46302,55130.01533,16641.94486,78151.21453,15.6
+46303,0,16706.48266,78131.2395,15.6
+46304,2647.641811,16811.40849,78059.62011,15.6
+46305,12438.17743,16854.48015,78049.58453,15.6
+46306,14135.65251,16948.71225,78015.94593,15.6
+46307,10365.57425,17316.7704,77994.01951,15.6
+46308,11428.71,17109.75056,77982.3977,15.6
+46309,11559.06495,17154.12858,77932.28068,15.6
+46310,11513.10432,17390.25471,77934.19197,15.6
+46311,11579.82992,17278.18917,77878.8196,15.6
+46312,11591.47294,17520.10103,77910.93061,15.6
+46313,351299.4531,17535.00252,77860.65494,15.6
+46314,11635.47717,17596.92401,77869.1499,15.6
+46315,11643.1188,17717.13727,77815.09801,15.6
+46316,11690.77974,17783.65525,77843.66855,15.6
+46317,11714.80943,17876.56258,77831.02157,15.6
+46318,11702.40669,17942.42753,77812.42721,15.6
+46319,11766.16296,18028.157,77788.14302,15.6
+46320,11789.33163,18110.6383,629205.475,17.8
+46321,907439.6121,1326250.897,1226025.216,17.8
+46322,520879.9518,663346.1847,543443.0754,17.8
+46323,70530.40202,235637.5787,502834.4026,17.8
+46324,193040.1991,184883.9001,675243.5895,17.8
+46325,285556.3498,335671.9562,551089.3184,17.8
+46326,218525.9485,380677.7465,578426.2337,17.8
+46327,224016.2361,298454.7509,594239.7652,17.8
+46328,225291.5428,297126.5753,617393.6369,17.8
+46329,225463.0337,324196.3018,632848.5765,17.8
+46330,226093.1085,316017.7197,644567.9485,17.8
+46331,225564.2812,313254.6292,654284.1147,17.8
+46332,193463.5551,314591.409,665359.8026,17.8
+46333,193905.1933,313665.4181,674900.3252,17.8
+46334,276700.1681,313507.2355,684996.7143,17.8
+46335,220600.0765,312900.457,694746.3105,17.8
+46336,221442.078,312504.7438,704125.1786,17.8
+46337,231961.4226,312352.0861,713536.0962,17.8
+46338,228577.0053,312184.4537,722438.9443,17.8
+46339,229027.2698,311766.8934,731229.6421,17.8
+46340,229709.3099,311366.8938,739516.7425,17.8
+46341,229784.995,311922.9825,747778.0896,17.8
+46342,230723.8554,311052.3877,756338.535,17.8
+46343,231229.1397,310842.3524,763632.3772,17.8
+46344,231571.6885,311252.604,771157.8327,17.8
+46345,231893.7416,310526.1543,778637.6482,17.8
+46346,232852.8457,311544.4123,786377.0266,17.8
+46347,233072.733,309837.6538,792192.2507,17.8
+46348,234032.9256,311150.2652,800045.4207,17.8
+46349,233975.4123,310318.0598,806414.242,17.8
+46350,235017.1991,310630.9489,812764.9351,17.8
+46351,33246.78249,50068.37965,254319.9663,17.8
+46352,372936.8908,49881.17543,166293.1999,17.8
+46353,33335.58056,50016.36415,164091.7128,17.8
+46354,33424.86377,849565.7053,1451056.029,17.8
+46355,741998.9524,120308.5867,256531.029,17.8
+46356,142771.0174,224726.9599,2053311.817,17.8
+46357,151685.2352,307180.9292,523029.5304,17.8
+46358,300649.3305,361520.1275,670217.042,17.8
+46359,234315.8324,282894.6052,856603.6032,17.8
+46360,240826.6536,315405.6759,752369.1516,17.8
+46361,242115.6338,314234.4119,771403.669,17.8
+46362,242716.657,311217.5934,778293.3566,17.8
+46363,242944.4877,311670.0343,784486.82,17.8
+46364,210089.6604,311948.7522,791834.0557,17.8
+46365,210608.0801,311829.156,797392.9376,17.8
+46366,295370.9223,311911.4311,804110.4627,17.8
+46367,241703.1182,312151.6988,809921.4131,17.8
+46368,238695.083,312631.9055,815535.4091,17.8
+46369,251218.3797,311913.0221,821977.0446,17.8
+46370,247681.0764,312530.9882,826636.4896,17.8
+46371,248537.5222,312285.3798,832816.9845,17.8
+46372,248789.8459,313165.5975,838480.787,17.8
+46373,249981.5729,312387.0864,842801.1468,17.8
+46374,250411.4579,312197.9329,848864.0385,17.8
+46375,251148.2216,312510.4184,852832.5459,17.8
+46376,252027.7248,312396.6722,858415.1944,17.8
+46377,252103.3138,312630.3487,862999.9194,17.8
+46378,253153.4555,312645.6315,867662.5822,17.8
+46379,254289.3752,312919.9518,871701.6849,17.8
+46380,254061.6636,313174.0883,876745.5283,20
+46381,1379239.065,2590291.167,3116139.723,20
+46382,1070238.066,1436421.748,2685826.902,20
+46383,731753.3013,457426.3813,2365482.288,20
+46384,625571.2079,175279.6369,1343888.969,20
+46385,125566.3491,1195915.605,1996322.774,20
+46386,919896.9956,547153.9101,373110.9802,20
+46387,582262.0736,733369.871,366880.6486,20
+46388,917433.7267,601782.6717,3275073.309,20
+46389,536374.525,827059.7509,1843534.32,20
+46390,550512.7359,690403.6704,1272051.587,20
+46391,575399.8229,723393.2761,1303121.685,20
+46392,577715.0147,718512.5942,1446338.402,20
+46393,562842.1091,711296.8726,1389292.058,20
+46394,566883.0669,705255.6436,1381725.182,20
+46395,564885.3722,701971.7895,1388574.889,20
+46396,471241.8465,698642.6989,1388417.639,20
+46397,471397.8961,696502.5489,2168569.05,20
+46398,612736.5246,690186.2052,1425797.375,20
+46399,566630.509,688749.5966,1724243.351,20
+46400,558847.7275,685240.1499,1373586.759,20
+46401,567337.5891,680733.81,1411368.109,20
+46402,555001.5565,679320.7379,1376434.643,20
+46403,560016.1402,674824.6351,1550420,20
+46404,551802.4072,672049.9675,1366244.449,20
+46405,553487.7296,670181.6162,1419267.892,20
+46406,551337.7397,666376.5961,1372579.607,20
+46407,550690.972,664030.4912,1374264.26,20
+46408,549999.8767,660968.096,1376568.556,20
+46409,547933.6434,658738.8675,1380654.477,20
+46410,547749.516,656917.1604,1382149.067,20
+46411,528260.0021,627888.6991,1327539.549,20
+46412,527779.1877,624488.3836,1327443.096,20
+46413,527211.7368,622692.2902,1331844.586,20
+46414,524922.4499,691022.761,1328376.8,20
+46415,525594.8498,103322.365,1128929.66,20
+46416,132351.3098,128706.0088,1130015.989,20
+46417,90651.93166,1176838.245,1383558.613,20
+46418,918512.5575,380122.1754,378563.6139,20
+46419,580653.8091,484043.7521,309568.3159,20
+46420,492330.7239,549705.2958,2437237.207,20
+46421,468396.1668,757708.0556,1700014.81,20
+46422,516649.3263,597222.3175,2138484.48,20
+46423,491701.2593,631823.619,1297689.472,20
+46424,907949.0989,627645.64,1385941.288,20
+46425,523610.9259,625396.6391,1322893.622,20
+46426,534216.4051,622427.1238,1331326.25,20
+46427,534132.7309,621253.8804,2119410.107,20
+46428,451825.4235,616892.6509,1373244.095,20
+46429,450372.4957,615620.5223,1682449.106,20
+46430,583075.2785,614721.9225,1326438.349,20
+46431,542794.4071,611346.8548,1364847.918,20
+46432,536688.9368,609740.6225,1335586.494,20
+46433,536775.0719,606990.6288,1515156.342,20
+46434,529812.4536,606176.3139,1332640.197,20
+46435,531395.0085,602584.3148,1380206.784,20
+46436,531069.6853,602117.1951,1337855.903,20
+46437,529737.9229,599288.6565,1342660.979,20
+46438,528960.2741,597213.0092,1347131.889,20
+46439,528766.8893,594154.9094,1350479.013,20
+46440,528469.8707,592390.4203,1355030.751,21
+46441,2309032.068,2984798.931,4255971.948,21
+46442,1937030.759,1907385.205,2345164.801,21
+46443,568757.5373,671229.3378,1080742.869,21
+46444,555043.4871,700493.706,1233060.863,21
+46445,681876.4531,1038620.655,1460852.68,21
+46446,937495.4398,943179.141,1365348.163,21
+46447,707526.8491,893299.3425,1482021.475,21
+46448,759848.4004,907809.3465,1404925.745,21
+46449,757364.5048,904316.0144,1445027.35,21
+46450,755663.7317,901675.3999,1455976.325,21
+46451,751798.6507,900690.5879,1467294.204,21
+46452,752690.8637,896718.6409,1474524.788,21
+46453,747717.2447,894490.7347,1481613.239,21
+46454,747979.9825,894179.7048,1490014.77,21
+46455,744542.6697,890328.5112,2334898.475,21
+46456,743809.9874,889404.5464,1537457.281,21
+46457,741626.8389,887400.7662,1892759.781,21
+46458,740820.1846,885817.6505,1491284.899,21
+46459,738837.2722,882449.4569,1498485.452,21
+46460,736507.4782,882664.5142,1508574.325,21
+46461,736662.4711,880404.2181,1716988.275,21
+46462,734541.5618,879115.5739,1506740.473,21
+46463,732576.7396,877360.0776,1518590.033,21
+46464,732466.0876,876954.9352,1522233.151,21
+46465,730639.7377,874053.4724,1532636.39,21
+46466,729861.1649,873033.8991,1542086.606,21
+46467,728297.364,872813.0327,1545394.231,21
+46468,726447.4379,870174.676,1555369.276,21
+46469,726960.6824,869298.294,1560689.073,21
+46470,724734.5806,868826.4406,1568892.361,21
+46471,724177.7932,868044.66,1573637.527,21
+46472,723502.6289,865266.9147,1581510.746,21
+46473,722603.9776,865028.0934,1584664.238,21
+46474,720239.1343,864568.6149,1593848.046,21
+46475,721348.4324,863034.6939,1596494.733,21
+46476,719305.5192,861829.0038,1603699.897,21
+46477,718276.7694,862468.1679,1608587.793,21
+46478,717702.8752,859043.5638,1613119.023,21
+46479,717072.8561,859059.8274,1620761.742,21
+46480,716797.7155,859529.7542,1622710.037,21
+46481,715622.5102,856925.0774,1631295.709,21
+46482,713998.79,856595.4351,1632405.614,21
+46483,714513.3007,856786.2612,1641297.395,21
+46484,712351.3285,853842.1828,1643006.844,21
+46485,713866.2055,855278.4126,1649084.461,21
+46486,711683.8979,853087.9255,1651953.319,21
+46487,711890.4917,853091.2447,1659760.601,21
+46488,710080.3024,851959.6671,1661178.967,21
+46489,710912.8732,851639.3086,1667479.445,21
+46490,708860.4457,850175.3989,1670880.147,21
+46491,710374.3409,850480.6111,1676087.835,21
+46492,707542.0729,849488.5774,1681188.233,21
+46493,708402.6532,847667.2454,1684808.158,21
+46494,706913.9011,848346.5421,1687679.13,21
+46495,707875.5679,848097.6418,1695772.987,21
+46496,705610.124,846359.1163,1694150.346,21
+46497,705999.6606,845214.8888,1704411.081,21
+46498,706013.7949,847478.178,1706114.399,21
+46499,704936.8794,844673.2144,1709760.564,21
+46500,703541.8542,843438.5458,1715647.875,21
+46501,1042067.04,1340548.2,1654758.407,21
+46502,1036091.515,1334241.566,1646426.466,21
+46503,1034391.845,1334131.206,1644084.595,21
+46504,1032996.623,1333065.144,1645102.044,21
+46505,1034014.224,1330798.277,1644156.558,21
+46506,1030183.578,1332611.337,1644246.653,21
+46507,1032802.816,1331003.725,1642267.126,21
+46508,1029507.916,1330010.8,1644563.145,21
+46509,1029078.31,1329591.335,1642201.968,21
+46510,1029853.517,1330539.05,1642770.689,21
+46511,1026941.927,1328851.708,1643715.683,21
+46512,1028500.224,1328653.017,1643967.927,21
+46513,1026009.077,1328965.979,1642807.957,21
+46514,1026882.842,1328342.628,1645493.425,21
+46515,1025211.562,1327239.961,1643464.953,21
+46516,1025154.636,1326980.352,1644367.193,21
+46517,1024272.231,1327981.836,1645389.761,21
+46518,1024358.067,1324968.633,1645606.731,21
+46519,1023348.16,1326298.789,1645961.158,21
+46520,1023355.976,1327041.63,1646278.42,21
+46521,1021968.842,1324630.191,1647620.11,21
+46522,1021443.193,1326932.843,1647737.817,21
+46523,1022053.585,1324299.207,1647602.778,21
+46524,1021481.757,1325725.148,1648335.863,21
+46525,1020514.504,1325353.611,1650329.867,21
+46526,1019063.582,1324389.408,1649792.585,21
+46527,1020745.005,1326066.781,1650039.79,21
+46528,1020033.336,1324704.508,1652690.196,21
+46529,1018228.109,1324608.629,1652209.251,21
+46530,1019507.549,1324659.094,1653951.085,21
+46531,1020077.511,1323972.738,1651804.019,21
+46532,1018560.895,1325295.524,1656753.731,21
+46533,1019327.403,1325636.396,1654337.859,21
+46534,1017309.348,1323080.466,1656780.451,21
+46535,1014805.942,1326206.316,1656557.925,21
+46536,1012747.589,1323938.229,1658786.585,21
+46537,1011910.477,1323972.988,1658402.393,21
+46538,1010723.457,1325293.749,1658634.633,21
+46539,1011069.977,1324211.744,1640743.916,21
+46540,1009342.69,1325351.632,1634787.781,21
+46541,1008774.583,1323562.656,1634268.023,21
+46542,1007243.657,1325705.342,1632071.139,21
+46543,1008278.897,1323814.683,1634395.927,21
+46544,1006053.173,1326692.222,1627409.56,21
+46545,1005718.719,1323927.033,1630609.327,21
+46546,1006185.311,1325431.716,1625773.42,21
+46547,1003125.492,1325217.556,1626152.722,21
+46548,1005063.519,1325612.97,1622968.406,21
+46549,1001898.556,1324875.075,1622980.717,21
+46550,1004271.103,1325748.297,1619673.32,21
+46551,1001102.506,1324905.955,1620601.383,21
+46552,1001043.32,1326532.364,1617155.8,21
+46553,1000231.957,1325451.951,1615505.022,21
+46554,999779.5467,1325935.996,1614893.845,21
+46555,999714.7526,1327200.909,1611784.893,21
+46556,998562.1477,1325407.906,1610693.17,21
+46557,997695.9876,1327133.688,1608693.444,21
+46558,997810.5216,1325960.6,1608584.049,21
+46559,995676.9145,1326819.317,1604833.997,21
+46560,996894.861,1327833.847,1603337.921,21
+46561,762989.0942,1091604.466,1305317.466,21
+46562,747187.3919,1074381.533,1291347.357,21
+46563,742860.9686,1071348.823,1287732.279,21
+46564,739882.601,1067084.516,1282400.861,21
+46565,737082.0619,1064683.946,1279078.78,21
+46566,735143.5272,1061056.097,1276284.423,21
+46567,731853.4305,1059617.795,1271178.769,21
+46568,731605.6587,1055289.431,1268414.757,21
+46569,731033.3747,1054566.963,1264847.617,21
+46570,730067.1837,1051217.421,1261104.522,21
+46571,729588.8606,1049526.387,1257771.515,21
+46572,729155.6204,1047318.705,1253723.544,21
+46573,727984.6535,1044430.632,1250550.317,21
+46574,727922.6166,1043314.994,1247506.007,21
+46575,727476.7767,1041586.238,1243074.93,21
+46576,726440.0415,1037791.036,1239972.045,21
+46577,726701.3687,1038438.452,1237533.946,21
+46578,725882.8022,1034859.583,1232737.164,21
+46579,724817.3403,1033422.668,1230509.444,21
+46580,725661.5353,1032268.418,1226152.029,21
+46581,724300.0733,1029458.937,1223994.322,21
+46582,724210.8861,1029384.695,1219960.518,21
+46583,724015.2087,1026724.653,1217283.677,21
+46584,723442.9206,1025131.704,1213673.27,21
+46585,723396.3505,1024179.326,1210588.389,21
+46586,722822.9373,1022674.827,1207444.343,21
+46587,722768.7928,1020154.377,1204556.764,21
+46588,722208.5571,1020701.257,1200838.176,21
+46589,722171.849,1016925.023,1198219.919,21
+46590,721723.6752,1019077.367,1194315.461,21
+46591,721964.7558,1014846.705,1193268.814,21
+46592,720505.6408,1015694.427,1189098.344,21
+46593,721820.0898,1013551.034,1187016.051,21
+46594,720528.8035,1012241.547,1184425.269,21
+46595,720943.8428,1011108.841,1181741.125,21
+46596,720413.4766,1010022.204,1178818.624,21
+46597,720038.468,1009199.087,1176352.548,21
+46598,720281.0309,1006473.436,1173929.055,21
+46599,719876.6431,1007451.859,1170895.517,21
+46600,719790.7191,1004828.915,1167950.855,21
+46601,719439.7218,1004458.282,1166190.987,21
+46602,719660.3045,1002876.813,1162357.163,21
+46603,719136.2233,1002349.45,1160864.095,21
+46604,719277.8879,1000284.986,1157395.393,21
+46605,719025.3134,1000191.51,1154637.467,21
+46606,719270.0449,998183.6427,1152526.254,21
+46607,718278.4858,998591.2678,1149558.974,21
+46608,719329.0475,996549.3908,1146355.975,21
+46609,718174.7597,995370.802,1144225.837,21
+46610,718954.5328,995038.3166,1141719.922,21
+46611,718243.4371,993789.6583,1138405.911,21
+46612,718528.7285,993835.2543,1136568.399,21
+46613,718386.1057,992549.3546,1132858.715,21
+46614,718267.4104,992407.1763,1131245.602,21
+46615,718115.9395,992540.3745,1128193.614,21
+46616,718131.679,991345.562,1125514.497,21
+46617,718268.276,991485.9819,1123435.584,21
+46618,718286.6278,990888.2786,1119719.934,21
+46619,717825.4899,990935.932,1117649.202,21
+46620,718221.5005,989680.7335,1120162.209,21
+46621,716913.4048,992860.9032,1111612.689,21
+46622,716120.0007,995206.8565,1109685.217,21
+46623,715114.5723,997880.1678,1105704.761,21
+46624,714053.9713,1000548.432,1102968.394,21
+46625,712849.2228,1002917.914,1099942.167,21
+46626,711893.0894,1005717.522,1097625.397,21
+46627,711083.6907,1008453.342,1093003.941,21
+46628,709974.0798,1010099.572,1091889.68,21
+46629,708931.4344,1013923.586,1087253.616,21
+46630,708085.6987,1015921.935,1085767.204,21
+46631,706891.4686,1019061.255,1081145.763,21
+46632,705905.9906,1021019.679,1079811.665,21
+46633,705279.8362,1023703.731,1075151.615,21
+46634,703859.2577,1027307.317,1073638.529,21
+46635,702845.7026,1028788.875,1069354.433,21
+46636,702000.0976,1032083.375,1067072.35,21
+46637,701248.0797,1034376.17,1063692.578,21
+46638,699808.9542,1037354.387,1060625.501,21
+46639,699159.585,1039938.802,1057971.108,21
+46640,697910.3409,1042656.674,1054783.735,21
+46641,695742.1319,1045248.121,1051169.621,21
+46642,694992.1745,1048102.14,1049157.558,21
+46643,693536.3551,1050451.646,1045432.066,21
+46644,693261.6388,1053554.011,1043463.776,21
+46645,691549.4796,1056526.542,1040794.163,21
+46646,691199.9116,1058483.487,1038889.502,21
+46647,690005.9807,1061599.611,1035231.729,21
+46648,689071.8493,1064263.923,1034217.346,21
+46649,687865.4309,1067008.835,1030627.315,21
+46650,687080.3851,1070792.381,1028702.746,21
+46651,686120.5596,1073150.477,1027041.813,21
+46652,685186.4021,1076270.288,1023292.682,21
+46653,683710.7998,1078574.565,1022061.787,21
+46654,683367.3691,1081878.957,1019439.161,21
+46655,682174.639,1084415.792,1016671.116,21
+46656,680954.688,1087062.192,1015561.352,21
+46657,680136.8967,1090095.185,1012531.174,21
+46658,679186.1757,1092599.827,1010596.066,21
+46659,677985.6078,1095402.771,1008459.939,21
+46660,677185.96,1098502.719,1006442.053,21
+46661,676304.5155,1100949.714,1004714.819,21
+46662,675228.723,1103761.608,1001749.294,21
+46663,674008.1528,1106985.319,999879.7467,21
+46664,673347.44,1108899.057,998478.076,21
+46665,671771.7052,1113136.371,995469.0385,21
+46666,671523.4332,1114528.78,994293.7953,21
+46667,670332.3772,1118154.267,991948.5902,21
+46668,668947.5663,1093592.694,990878.9916,21
+46669,668530.5595,1089951.879,990026.2307,21
+46670,667106.5515,1090717.425,988249.9502,21
+46671,666707.8265,1091668.749,987948.7211,21
+46672,665297.6452,1091565.332,986523.0013,21
+46673,664250.6202,1092812.814,985381.8048,21
+46674,663825.0671,1093863.02,984463.743,21
+46675,662178.18,1095551.766,983718.8955,21
+46676,661782.188,1095555.644,982615.4364,21
+46677,660653.6939,1097888.588,981204.7394,21
+46678,659453.3493,1098728.133,980761.3846,21
+46679,658601.7466,1100057.785,979617.4867,21
+46680,657585.1652,1101237.373,978263.7947,21
+46681,661571.8641,1100088.868,973781.9031,21
+46682,661560.4076,1094550.252,970310.4652,21
+46683,660965.4647,1088393.749,1841299.839,21
+46684,660946.9897,1084484.646,994170.3645,21
+46685,660024.447,1076883.153,1384450.916,21
+46686,660357.2801,1073066.135,935523.7758,21
+46687,659552.1252,1066792.175,934492.8805,21
+46688,659558.6505,1061349.208,932266.5712,21
+46689,659187.3797,1056303.569,930762.9598,21
+46690,658373.9886,1050986.972,927881.7536,21
+46691,658727.6894,1044338.118,926378.3808,21
+46692,657979.5137,1040939.183,924303.1643,21
+46693,657775.4974,1033812.328,921833.8077,21
+46694,657599.9963,1029868.36,920322.9209,21
+46695,657039.0347,1023345.387,917748.5972,21
+46696,656609.7441,1018293.61,915622.8294,21
+46697,656657.8681,1013396.881,913615.4123,21
+46698,656511.125,1007788.474,911085.8662,21
+46699,655333.3635,1002297.676,909145.819,21
+46700,655684.012,997308.6223,906727.158,21
+46701,655431.624,991808.0109,904831.3974,21
+46702,654681.8706,986363.5971,902132.6624,21
+46703,655041.3891,981381.3831,900069.8697,21
+46704,653894.0802,975743.6902,899361.0892,21
+46705,654437.2086,970317.1081,968418.1125,21
+46706,653624.442,965676.5801,1084771.168,21
+46707,653430.8225,959639.0782,879293.5755,21
+46708,653367.708,954503.5554,876832.9334,21
+46709,652825.5017,949170.4415,875219.671,21
+46710,652470.7784,943615.2943,873736.6819,21
+46711,652502.9115,939401.4624,871224.539,21
+46712,652336.2311,933791.7193,870311.4408,21
+46713,651828.895,929129.2538,867846.9006,21
+46714,651829.9659,925186.4108,866101.1826,21
+46715,651640.4004,919713.5022,864089.4022,21
+46716,651534.2058,915020.6643,1731995.915,21
+46717,651234.3253,910142.9297,890586.4916,21
+46718,650894.4271,905875.7336,1280615.224,21
+46719,650775.7789,900383.9326,837375.9363,21
+46720,650907.7022,896391.8295,836089.0532,21
+46721,650428.3721,890893.7529,834918.5612,21
+46722,650432.1699,886637.9397,833825.9655,21
+46723,650220.5036,881320.2875,832044.3308,21
+46724,649887.2499,876986.1013,831028.4906,21
+46725,650010.3409,871869.5257,829770.8172,21
+46726,649557.1209,867761.3754,827514.5987,21
+46727,649632.4512,861982.9822,826684.5366,21
+46728,649342.4303,857910.5987,824810.0391,21
+46729,649354.9906,852938.6359,823331.1579,21
+46730,648849.6395,848115.7422,821523.7501,21
+46731,649092.2827,843459.0356,820417.8255,21
+46732,648491.541,838548.3305,817911.3439,21
+46733,648926.3713,833608.4989,816499.3822,21
+46734,648593.5234,829009.571,814842.7403,21
+46735,648061.5392,824274.647,813050.2014,21
+46736,648184.485,819214.9885,811063.6528,21
+46737,648154.884,814693.9542,809383.6705,21
+46738,647660.9528,809870.904,807214.5286,21
+46739,647620.8698,804891.5482,805757.3512,21
+46740,647636.9851,800220.9091,803451.7904,21
+46741,642599.7081,795437.2411,1684706.891,21
+46742,641526.7383,795546.6278,833066.7792,21
+46743,641253.5787,794831.9815,1234312.979,21
+46744,640138.1222,795008.6066,780937.2533,21
+46745,639603.7453,794633.6609,806758.3324,21
+46746,638918.828,794858.4527,778465.6028,21
+46747,637912.7921,794870.679,777413.4892,21
+46748,637358.5475,795003.3466,776388.6316,21
+46749,637014.5596,795191.2194,775595.327,21
+46750,635751.1273,795348.5148,774565.4975,21
+46751,635467.8394,795401.794,773466.6808,21
+46752,634948.1319,796032.856,772427.0043,21
+46753,633788.4179,795352.4295,770005.1253,21
+46754,633234.6485,796527.2402,769404.6326,21
+46755,632867.3779,796058.9754,768470.23,21
+46756,631818.5966,796388.3672,766315.7392,21
+46757,630901.273,796116.6024,765592.0487,21
+46758,630644.0363,795510.8597,763786.73,21
+46759,629854.2773,796342.8442,763330.6868,21
+46760,629120.055,795729.6593,760752.0524,21
+46761,628502.1104,796811.2636,760574.3839,21
+46762,627975.6264,796714.881,758164.0718,21
+46763,626969.728,796903.5643,757122.9285,21
+46764,626252.7134,796737.5787,755618.6037,21
+46765,625733.5228,797191.4603,754255.0643,21
+46766,625068.5678,797749.4081,752566.195,21
+46767,624549.4633,796882.3644,751216.4,21
+46768,623396.0261,798026.3908,749300.0542,21
+46769,622997.7424,798045.5733,748145.0285,21
+46770,622781.0328,798019.9032,746689.9087,21
+46771,621403.9021,798704.2815,749554.6349,21
+46772,621338.9253,800229.8573,745897.9518,21
+46773,620536.0265,800288.5121,746077.5148,21
+46774,620167.8183,801374.8747,745080.788,21
+46775,619580.5354,802230.1797,744172.4132,21
+46776,619354.9375,803807.2169,743209.2341,21
+46777,618034.6629,803705.6091,742321.929,21
+46778,618217.7299,805135.7854,741246.2543,21
+46779,617759.4491,805776.277,740592.3962,21
+46780,616939.4647,808087.2115,739463.2459,21
+46781,616364.3027,807838.7977,738438.8521,21
+46782,616090.9852,808944.5805,738013.7321,21
+46783,615547.231,809175.1447,736398.7179,21
+46784,614721.5197,811021.8265,735923.7445,21
+46785,614537.3592,811057.8045,734957.637,21
+46786,613761.502,812894.349,733632.352,21
+46787,613733.5082,813126.3666,733003.9786,21
+46788,612944.2444,814488.6928,731935.2829,21
+46789,612106.6691,815269.9745,730982.0874,21
+46790,612549.5533,816173.6054,730045.3033,21
+46791,610916.7252,817110.085,728855.5158,21
+46792,611044.3332,818000.5852,727961.7727,21
+46793,610571.8593,818973.8499,727111.0457,21
+46794,609799.3783,820028.3739,725982.5393,21
+46795,609463.6949,821019.9977,724526.9028,21
+46796,609030.9422,821561.9727,724253.8457,21
+46797,608858.4749,822669.1186,722563.2299,21
+46798,608088.5655,823832.2566,721633.6338,21
+46799,607315.219,824222.2003,720514.5582,21
+46800,607543.2759,825367.0577,719735.9305,21
+46801,637051.1366,855505.6994,753493.5214,21
+46802,638216.8655,854620.3001,1219619.071,21
+46803,638792.1676,853573.2301,739317.2914,21
+46804,638657.3015,854612.4728,868228.6565,21
+46805,639569.3901,852522.2806,735996.4225,21
+46806,639871.5315,851639.0702,736032.673,21
+46807,640172.5559,851442.6971,737088.6781,21
+46808,640615.3002,850333.4447,737530.1235,21
+46809,641033.6811,849753.9084,737952.2728,21
+46810,641703.0621,849162.93,738120.6942,21
+46811,641732.7438,848134.9709,738984.8937,21
+46812,642083.3981,848019.049,733982.6351,21
+46813,642756.3549,846746.4601,733226.0682,21
+46814,643323.2229,846065.798,732883.067,21
+46815,643569.2684,845480.0014,732628.8297,21
+46816,643766.2963,844957.0653,730906.5679,21
+46817,644712.4376,844666.0464,730415.9201,21
+46818,644580.4273,841944.5012,729442.369,21
+46819,645264.7695,840390.8661,728795.4131,21
+46820,645530.2754,839516.5163,727860.2938,21
+46821,646016.7681,838727.6413,726352.845,21
+46822,646487.4607,837878.7122,726128.2909,21
+46823,646907.8323,837212.0057,724384.2946,21
+46824,646893.722,835944.9624,723803.619,21
+46825,647872.4652,835262.8879,722207.1415,21
+46826,648016.6313,833715.854,721524.998,21
+46827,648686.6821,833586.3025,720571.4498,21
+46828,648800.177,832631.063,718897.106,21
+46829,649416.772,832245.2658,718287.6932,21
+46830,649305.1956,830725.0509,716533.2937,21
+46831,650086.9718,829392.7513,715327.5755,21
+46832,650357.47,829228.3068,714719.7715,21
+46833,650527.1592,827565.9183,712879.5221,21
+46834,651154.3409,826663.3758,712404.5847,21
+46835,651460.4113,825795.8456,710398.6078,21
+46836,651592.7627,824911.0748,709931.8569,21
+46837,652519.937,823844.2027,708119.1135,21
+46838,652494.0346,823380.4151,707134.7954,21
+46839,652968.8567,821371.6212,705472.7337,21
+46840,652681.7781,821581.3118,704873.4524,21
+46841,653926.9843,820129.0169,702595.6947,21
+46842,653546.6066,819737.4397,702239.5144,21
+46843,654536.1604,818237.8394,700773.1166,21
+46844,654232.9726,817048.4868,699412.8868,21
+46845,655307.6831,816664.2728,697909.638,21
+46846,654966.8717,814769.225,696933.0864,21
+46847,655931.9017,814573.1187,695650.5318,21
+46848,655898.6769,812959.1286,694336.7786,21
+46849,656518.7907,812453.9708,693155.6681,21
+46850,656606.7751,811464.768,691740.3614,21
+46851,656578.3161,810402.1941,690642.8578,21
+46852,657821.3073,809269.8817,689574.5693,21
+46853,657335.4567,808650.8997,688145.4014,21
+46854,658086.8683,806963.532,686509.4405,21
+46855,658418.1989,808065.561,685952.6845,21
+46856,658326.8651,805303.2516,684318.2269,21
+46857,659457.0531,804316.4278,683677.1672,21
+46858,659385.3002,804011.0944,682155.2833,21
+46859,659786.894,802497.6921,680638.6554,21
+46860,659618.7086,802318.2935,688001.6187,21
+46861,632433.1436,769520.295,630054.9626,21
+46862,631752.6432,767327.7177,626181.2193,21
+46863,632171.161,764271.2709,623365.7113,21
+46864,631901.7775,762418.5745,621828.1806,21
+46865,632033.3258,759887.2186,618029.1533,21
+46866,632105.7876,757780.8879,615553.532,21
+46867,632756.7986,755327.6611,613748.235,21
+46868,631980.9584,752888.2957,610227.0002,21
+46869,632594.2542,752607.7128,607985.8314,21
+46870,632319.7554,749568.2258,605146.3461,21
+46871,632362.2578,748224.123,602941.2191,21
+46872,632640.4899,745504.9805,599654.487,21
+46873,632761.6703,742864.7277,597394.9384,21
+46874,632277.0474,741327.9635,594913.3031,21
+46875,633094.4866,738168.9804,591754.539,21
+46876,632464.5772,736986.6066,589493.3806,21
+46877,633282.191,733807.0259,586640.6717,21
+46878,632946.419,731939.912,584107.1109,21
+46879,632870.5742,729748.3506,581456.4786,21
+46880,633455.8027,727059.5007,578053.2902,21
+46881,633018.454,725021.6267,575994.8906,21
+46882,633354.4428,722787.5099,572834.4163,21
+46883,633475.4739,721121.2527,570111.4762,21
+46884,633348.2759,718544.1655,567776.3593,21
+46885,633731.3883,716357.556,564687.937,21
+46886,633824.805,713533.9575,562385.0609,21
+46887,633833.2272,711647.5529,559126.7803,21
+46888,633986.3682,709032.8095,556607.3795,21
+46889,634308.2854,706873.4565,554559.0709,21
+46890,634006.3277,704903.3872,551164.7493,21
+46891,634370.8445,702249.1697,548508.2377,21
+46892,634428.9018,700407.2073,545879.8793,21
+46893,635087.9792,697692.8298,543106.6389,21
+46894,634759.0884,696214.2068,540273.4585,21
+46895,635337.6504,692871.0057,537568.5946,21
+46896,635711.5765,691473.4205,534996.4237,21
+46897,636216.4447,688940.0458,531734.7981,21
+46898,636078.3978,686995.8356,529471.5073,21
+46899,635991.502,684312.602,526478.031,21
+46900,637121.5526,682346.9356,523668.4059,21
+46901,636857.7329,679792.8572,522405.5791,21
+46902,637140.0768,677835.8316,520876.1777,21
+46903,637524.7885,674424.5922,518913.4268,21
+46904,637972.8854,670918.274,517848.6863,21
+46905,638238.0375,669163.3119,515753.5673,21
+46906,638055.3109,666430.5463,514633.7834,21
+46907,639225.4423,664711.8911,512470.7175,21
+46908,638915.3484,661625.4708,511416.2992,21
+46909,639467.0221,660209.741,508931.7799,21
+46910,639561.2421,657150.7224,507607.9171,21
+46911,640119.3928,654945.8935,505804.4133,21
+46912,640228.5449,652888.2181,503817.0766,21
+46913,640723.588,650625.8913,502141.5829,21
+46914,640875.2526,648166.3765,500149.6945,21
+46915,641382.2699,645894.1237,498185.5209,21
+46916,641760.0073,643673.5272,496346.2619,21
+46917,642035.4278,641513.756,494257.7406,21
+46918,642374.0591,639471.9842,493021.9231,21
+46919,642842.6836,636363.185,490017.5456,21
+46920,642763.217,634775.931,488590.4102,21
+46921,647534.3539,638159.4424,497223.6884,21
+46922,647896.4606,637853.5287,497608.9914,21
+46923,646997.3694,637269.517,497612.6607,21
+46924,647367.1496,636295.6668,497508.9007,21
+46925,647309.1076,636381.0136,497199.2778,21
+46926,646698.5585,635086.3017,497373.8368,21
+46927,647325.9321,634764.733,497186.8504,21
+46928,646795.2901,633690.6609,496981.3404,21
+46929,646609.1264,633665.5357,496818.1742,21
+46930,646442.5432,632597.4078,497449.2985,21
+46931,646712.1119,632139.9715,496537.0128,21
+46932,646366.7726,631500.9607,497252.5754,21
+46933,646022.4353,630674.3652,496750.9662,21
+46934,646194.9505,630105.3535,496969.3161,21
+46935,645979.1496,629553.6135,497039.1867,21
+46936,646139.1243,628954.1498,496851.0915,21
+46937,645252.8532,628258.3678,496849.6028,21
+46938,646183.5005,627406.384,497152.232,21
+46939,645382.5495,627512.2056,497146.917,21
+46940,645313.5679,625527.7241,496842.3446,21
+46941,645576.7446,626533.52,497248.556,21
+46942,645439.8901,624684.1762,497157.4256,21
+46943,644782.7932,624142.9202,497216.4734,21
+46944,645188.2552,624491.4818,497188.1364,21
+46945,644993.5481,622791.1009,497289.0111,21
+46946,644838.1641,622376.0173,497312.5127,21
+46947,644800.0482,622149.2296,497621.7698,21
+46948,645048.1809,620829.6956,497599.0627,21
+46949,644108.4939,621005.574,497809.9124,21
+46950,644853.0168,619916.31,497903.1578,21
+46951,644386.5025,619223.3375,498089.9816,21
+46952,644206.5865,618884.5859,498866.868,21
+46953,644679.5556,618481.6576,499028.6135,21
+46954,644323.3471,617212.0013,499518.0013,21
+46955,644005.0839,617562.3313,500029.0476,21
+46956,644403.9244,616513.4925,500641.8575,21
+46957,644579.5879,616141.5979,500808.3988,21
+46958,643725.3039,615562.5545,501725.1802,21
+46959,644246.3999,615145.0106,502034.1852,21
+46960,644349.1973,614230.9555,503304.608,21
+46961,643849.3156,614346.8939,503551.6099,21
+46962,644367.1737,612792.894,504738.8105,21
+46963,644087.0873,613348.9244,505879.648,21
+46964,643638.4576,612095.8938,507993.3101,21
+46965,644372.982,611750.6326,508878.5751,21
+46966,643919.8505,611668.4077,510691.5097,21
+46967,644171.9542,610912.0947,512016.6205,21
+46968,643701.4611,610010.7946,513840.7589,21
+46969,644105.0118,609687.2527,514968.5874,21
+46970,644149.9684,609848.552,517140.1117,21
+46971,643892.9374,608289.902,517897.1618,21
+46972,644058.9796,608402.0157,519983.1958,21
+46973,643931.8998,607809.7022,521287.1569,21
+46974,643887.7529,607425.3955,523087.0332,21
+46975,643933.2956,606487.6081,524627.3413,21
+46976,644074.3375,606390.4153,526046.6597,21
+46977,643798.9838,605821.8449,527705.2087,21
+46978,644134.194,605166.7869,529414.8866,21
+46979,644053.0689,605108.5797,530947.675,21
+46980,643828.8714,603937.1158,533220.8989,21
+46981,639772.0426,602238.8892,523743.5318,21
+46982,639689.5325,603430.7222,525084.3636,21
+46983,639913.4802,605337.6091,526706.5421,21
+46984,640324.8111,607388.8883,527448.0446,21
+46985,640266.4588,608977.5642,529304.5501,21
+46986,640813.9276,611091.3844,530190.4557,21
+46987,641290.6186,613106.4366,531873.5778,21
+46988,641198.8136,614041.5922,532721.9663,21
+46989,641272.4855,616967.2332,534511.0872,21
+46990,642152.3026,618134.3938,535664.5283,21
+46991,641543.367,620340.2574,536852.3153,21
+46992,642855.4073,622141.1742,538297.574,21
+46993,642222.9656,623650.6811,539522.6226,21
+46994,643261.8965,625663.7522,541112.5277,21
+46995,642731.6332,627953.4835,542133.5195,21
+46996,643739.4873,628985.3285,543672.1959,21
+46997,643527.735,631396.2911,544911.812,21
+46998,643977.2028,632879.7726,546650.9253,21
+46999,644426.7893,635107.5628,547276.4576,21
+47000,644607.616,636246.1812,549221.4124,21
+47001,644827.2369,638646.3932,550274.8782,21
+47002,645195.8548,640215.526,551734.9466,21
+47003,645040.4317,642094.2041,552982.1021,21
+47004,646312.1619,643693.6809,554763.9815,21
+47005,645475.6007,646041.9645,555603.9827,21
+47006,646543.1626,647114.8169,557516.6804,21
+47007,646562.816,649549.032,558580.2818,21
+47008,646902.8856,650839.1524,559936.2149,21
+47009,646850.9428,652980.7757,561720.9119,21
+47010,647747.1188,654835.5512,562505.1697,21
+47011,647806.0452,656128.974,564604.7208,21
+47012,648042.8001,658230.4917,564921.7459,21
+47013,648309.3302,659518.374,567125.613,21
+47014,649203.9043,660911.5135,568038.6258,21
+47015,648902.8668,663545.3505,569353.0304,21
+47016,649562.8513,663813.9794,570884.4113,21
+47017,649967.2887,666471.3516,572046.7735,21
+47018,650099.5294,667751.0824,573351.553,21
+47019,650646.6308,669215.9163,574504.7112,21
+47020,650976.1738,670722.5894,576082.5862,21
+47021,651332.9638,672590.4501,577513.9838,21
+47022,651540.3538,673982.0824,578659.1273,21
+47023,652391.7205,675569.9254,579683.2732,21
+47024,652012.6314,677300.4465,581846.3739,21
+47025,653144.5834,678202.7872,582551.3415,21
+47026,653129.0591,680272.3553,584195.3277,21
+47027,653517.9367,681555.4236,585428.7444,21
+47028,654112.7532,682996.8348,587086.8272,21
+47029,654469.1327,684644.8886,588071.2065,21
+47030,654753.1098,686130.4744,589710.315,21
+47031,655081.547,687707.8598,591123.3844,21
+47032,655921.916,689224.0282,592499.5287,21
+47033,655718.0499,691085.1936,593624.9118,21
+47034,656401.4151,692122.5954,595658.4375,21
+47035,656878.4975,692870.03,596705.8416,21
+47036,656996.71,694546.71,597961.212,21
+47037,657707.5267,695729.3866,599965.1758,21
+47038,657748.4994,697166.8202,600815.3007,21
+47039,658622.1423,697958.8631,602560.3343,21
+47040,658734.0417,698307.8783,603832.8997,21
+47041,658964.9826,699100.6041,608138.2218,21
+47042,659964.2233,698361.0755,611725.1355,21
+47043,659911.1074,698098.3604,615868.6446,21
+47044,660646.8599,698073.886,619890.8408,21
+47045,660689.2756,696934.1569,623538.222,21
+47046,661757.1739,698161.462,627670.063,21
+47047,661401.7511,696945.2963,632067.925,21
+47048,662337.3036,696612.4242,635337.9307,21
+47049,662586.5485,695588.9609,639603.2712,21
+47050,663159.1554,695735.6487,643695.2217,21
+47051,663358.6435,694964.026,647543.275,21
+47052,664035.8526,694298.3586,651639.8652,21
+47053,664202.1155,694418.9594,655442.0062,21
+47054,664735.2373,693275.1665,659667.276,21
+47055,665300.0841,693503.4878,663457.4144,21
+47056,665636.4641,692472.6363,667596.85,21
+47057,666101.7201,692318.0431,671124.9104,21
+47058,666511.0293,691532.7793,675948.2904,21
+47059,666842.8725,691723.2758,679035.8857,21
+47060,667211.7911,690841.2424,683600.7122,21
+47061,667970.2836,689594.8873,687393.1782,21
+47062,668114.9827,689771.1721,691237.8266,21
+47063,668783.6801,688300.0532,695496.4957,21
+47064,668963.764,689023.7302,698894.5104,21
+47065,669484.4174,687628.2333,701564.1356,21
+47066,670277.3307,687776.0543,704943.8664,21
+47067,670257.9312,686717.9427,707660.6699,21
+47068,671104.1538,686188.1673,710553.42,21
+47069,670986.4464,686114.3984,713455.1097,21
+47070,671963.3657,685191.5774,716559.4108,21
+47071,671943.5411,684828.6021,719220.5959,21
+47072,672809.2885,684135.7669,722675.7491,21
+47073,672504.7917,683773.897,725302.5997,21
+47074,673452.8785,683538.5213,728458.5408,21
+47075,673473.4266,682355.5209,731602.8039,21
+47076,673921.4116,682198.0102,734671.9543,21
+47077,674250.0582,681399.8601,737144.3242,21
+47078,674562.0162,681411.2148,740585.8677,21
+47079,674969.8158,680477.8801,743873.2941,21
+47080,674939.1228,680052.6722,746382.2061,21
+47081,675842.3643,679409.3107,749603.7969,21
+47082,675926.7344,678930.2679,752454.9253,21
+47083,676156.0178,678200.8942,755740.6033,21
+47084,676264.448,677612.1468,757889.041,21
+47085,677175.9947,677498.8361,761331.5126,21
+47086,676797.1823,676667.1228,764205.791,21
+47087,677722.9476,675862.5734,766761.6956,21
+47088,677455.2282,675359.8185,770077.8831,21
+47089,677869.986,675334.1457,772477.3689,21
+47090,678247.8225,674456.8074,775902.9366,21
+47091,678406.0716,673611.6334,778194.2575,21
+47092,678759.3083,673552.921,781652.1376,21
+47093,679076.9839,672390.6341,784292.5295,21
+47094,679327.292,672032.63,787136.8423,21
+47095,680077.2697,671896.0084,790382.9957,21
+47096,680022.6671,670913.2719,792825.3571,21
+47097,680791.2971,670320.8508,795900.5079,21
+47098,680697.3035,669934.0629,798919.2042,21
+47099,681658.3709,669104.6658,801581.1478,21
+47100,681814.8221,668558.0064,804968.5607,21
+47101,738596.9435,738693.9699,863795.6721,21
+47102,742106.9763,744175.2056,870867.4478,21
+47103,743754.5185,747787.6937,877126.4528,21
+47104,745283.273,749170.8764,878822.9046,21
+47105,746290.8906,751620.8175,885771.4666,21
+47106,748400.734,754768.1258,993143.8879,21
+47107,749574.0719,756707.2055,989118.2827,21
+47108,750882.8693,759828.7613,885737.4865,21
+47109,752262.36,761805.9755,890104.7005,21
+47110,754195.0096,764490.4817,895452.8769,21
+47111,762767.833,767170.6832,898259.2903,21
+47112,760293.7881,769583.4766,903199.9166,21
+47113,763073.5866,772165.5304,907564.1006,21
+47114,764054.0131,774670.848,911544.8138,21
+47115,766643.0795,776675.1175,916445.3327,21
+47116,767072.9535,779202.5559,1831584.762,21
+47117,769541.5157,781580.5949,955101.9506,21
+47118,769774.8696,784524.371,1385999.632,21
+47119,772358.5623,786054.2265,908880.6491,21
+47120,773866.7758,788725.4963,914299.6755,21
+47121,774527.1996,791092.2303,918831.4099,21
+47122,776697.6325,793174.014,1148977.579,21
+47123,781717.3185,795354.8379,917750.6366,21
+47124,783821.8511,797328.7721,925287.7476,21
+47125,784894.8597,800505.3348,928095.1893,21
+47126,786625.3284,801480.7856,932556.5759,21
+47127,787704.6888,804568.465,937575.3991,21
+47128,789331.37,806170.3045,942025.6488,21
+47129,790269.9946,808658.0404,947288.2736,21
+47130,791864.2404,810669.3752,951690.0606,21
+47131,793184.6815,813390.6496,955910.6442,21
+47132,794398.4611,815648.665,960610.8997,21
+47133,795631.786,817245.0656,965156.3047,21
+47134,796948.2431,819219.8809,969761.0743,21
+47135,797798.0574,821388.3297,976209.7124,21
+47136,799821.2948,823139.9144,1060717.44,21
+47137,800181.4968,825863.8604,1371982.719,21
+47138,801517.2729,827310.9878,963527.3895,21
+47139,802916.8345,829725.5271,968937.5798,21
+47140,804005.8791,831683.6308,978325.277,21
+47141,805105.213,833567.7925,1212374.089,21
+47142,805982.7584,836032.5556,977430.1034,21
+47143,807980.1091,837949.9474,985354.3661,21
+47144,807934.8477,839686.6482,990606.5457,21
+47145,809850.0439,843144.1032,1179882.184,21
+47146,810798.4121,843670.8782,994709.9227,21
+47147,811869.9613,845885.3713,1000738.428,21
+47148,812770.1434,848523.6797,1019069.687,21
+47149,813975.5176,849378.8365,1012811.199,21
+47150,815264.6668,852460.1331,1021963.315,21
+47151,815949.5789,853719.4143,1186393.064,21
+47152,817460.9582,862272.8341,1024880.119,21
+47153,818079.4664,863228.4204,1032740.562,21
+47154,819385.7478,866434.6386,1188786.266,21
+47155,820362.0907,868623.7124,1037806.605,21
+47156,821597.4257,870593.6387,1044739.148,21
+47157,821983.6215,874263.7324,1199483.72,21
+47158,823736.197,877131.5334,1049540.9,21
+47159,824256.7625,878987.1335,1057658.809,21
+47160,825649.3429,880246.6021,1064217.955,21
+47161,847371.4308,944708.9066,1094424.896,21
+47162,849507.0251,948938.1423,1098650.634,21
+47163,850107.1359,953553.2898,1104704.186,21
+47164,851398.2333,954827.6248,1107599.687,21
+47165,851476.7768,958253.255,1127892.475,21
+47166,852773.1694,960569.7867,1133055.647,21
+47167,853305.6401,962577.2922,1989061.058,21
+47168,853618.5322,965180.8965,1170766.529,21
+47169,855250.5464,966998.5131,1545649.258,21
+47170,881170.6378,970006.4664,1124316.082,21
+47171,875453.4312,972481.9867,1142286.992,21
+47172,877027.7754,972698.2619,1140580.857,21
+47173,878925.5848,977549.2275,1348964.598,21
+47174,881593.0323,977909.3294,1141875.361,21
+47175,882601.4706,980748.0614,1146025.96,21
+47176,885249.3675,981858.2851,1152331.309,21
+47177,884770.5646,984224.1209,1156877.725,21
+47178,888817.8824,986810.2688,1162976.324,21
+47179,888141.7084,988574.7424,1167108.775,21
+47180,890339.4196,989692.7616,1172511.173,21
+47181,891613.6164,992628.4726,1175926.965,21
+47182,893168.454,995005.228,1181405.373,21
+47183,894816.431,995106.6212,1185397.489,21
+47184,895373.8685,998653.1496,1189705.327,21
+47185,896796.0522,1000447.227,1193363.345,21
+47186,897582.5548,1001307.317,1197943.277,21
+47187,899589.9454,1003413.759,1200888.583,21
+47188,900326.9099,1006315.827,1204576.022,21
+47189,901959.2794,1005623.879,1208152.947,21
+47190,902569.8031,1009563.839,1211441.817,21
+47191,903597.8132,1011025.429,1214938.389,21
+47192,905700.3001,1012182.598,1217345.153,21
+47193,905249.3336,1014091.906,1221542.454,21
+47194,907587.058,1016323.702,1222851.79,21
+47195,907848.9195,1018156.022,1226723.541,21
+47196,909550.856,1018758.308,1230464.805,21
+47197,910176.5983,1021924.97,1231273.452,21
+47198,910812.4429,1021782.732,1234800.438,21
+47199,913366.9049,1025192.405,1237365.848,21
+47200,911332.3838,1025663.086,1239187.304,21
+47201,915350.9444,1028971.969,1242424.943,21
+47202,914879.8923,1028921.344,1244191.173,21
+47203,916115.0078,1032292.626,1245928.963,21
+47204,917092.0632,1032452.142,1248983.591,21
+47205,917212.752,1034545.093,1250651.497,21
+47206,919450.2396,1036543.95,1253579.818,21
+47207,919006.3006,1036624.357,1254012.232,21
+47208,921633.4057,1040076.86,1258202.188,21
+47209,920499.521,1040767.784,1258087.47,21
+47210,922383.9154,1042406.851,1261245.518,21
+47211,923569.2903,1043781.422,1263267.716,21
+47212,923767.8118,1045238.012,1264443.574,21
+47213,925068.0896,1047031.278,1266521.205,21
+47214,924896.264,1047397.966,1268259.089,21
+47215,926676.0264,1050444.78,1269623.913,21
+47216,927587.0294,1049958.304,1271746.213,21
+47217,927496.499,1053376.36,1273398.489,21
+47218,928914.3667,1052762.177,1274322.539,21
+47219,930604.4219,1055674.889,1276470.439,21
+47220,929549.215,1054310.282,1278296.523,21
+47221,930903.139,1054535.14,1280309.874,21
+47222,932906.6774,1052998.338,1284105.697,21
+47223,932600.0065,1050703.637,1286691.51,21
+47224,933960.8242,1050120.039,1290164.608,21
+47225,933976.6533,1046841.831,1292343.18,21
+47226,934155.9363,1046414.515,1296254.505,21
+47227,935583.9176,1045215.457,1300689.878,21
+47228,935535.5609,1041024.85,1303265.775,21
+47229,936268.0044,1041515.76,1305865.854,21
+47230,937160.2319,1038424.945,1309943.462,21
+47231,936342.2708,1037980.662,1312342.588,21
+47232,938703.6845,1035790.412,1315535.468,21
+47233,938373.7809,1033290.204,1317885.156,21
+47234,938047.7342,1032646.347,1321484.686,21
+47235,939604.3849,1029902.984,1324987.679,21
+47236,940291.2136,1029001.427,1326892.231,21
+47237,939844.2969,1026526.581,1330234.369,21
+47238,941245.1996,1025662.41,1332390.356,21
+47239,941461.4182,1022580.582,1336356.087,21
+47240,941261.7164,1021496.226,2195942.275,21
+47241,942397.7726,1019954.562,1371824.727,21
+47242,942835.0169,1017326.025,1745090.134,21
+47243,942477.131,1016271.268,1317954.465,21
+47244,943873.8516,1014807.064,1322609.328,21
+47245,944954.2803,1011549.08,1327507.325,21
+47246,942778.893,1011120.619,1534393.478,21
+47247,946469.3088,1008307.728,1321795.293,21
+47248,944813.0888,1007134.894,1326550.457,21
+47249,945235.7845,1005634.402,1332165.374,21
+47250,946366.7938,1002571.397,1336730.317,21
+47251,946255.413,1002072.795,1341026.496,21
+47252,947615.5677,998976.6138,1346395.956,21
+47253,946354.4178,997443.6625,1349951.673,21
+47254,948432.2718,996616.0845,1354255.919,21
+47255,947788.3048,993991.8066,1358509.997,21
+47256,948404.0121,992128.6361,1362194.235,21
+47257,948950.7879,990233.3947,1366553.103,21
+47258,948616.9011,988097.151,1370416.903,21
+47259,950031.4119,986437.7269,1373452.833,21
+47260,949931.6865,985250.8448,1377659.75,21
+47261,949968.1329,982399.0621,1381360.654,21
+47262,950967.8749,980724.8905,1383854.862,21
+47263,950832.5792,979356.3331,1388146.155,21
+47264,951258.8595,976807.5166,1390890.801,21
+47265,951922.9622,975339.6255,1395072.621,21
+47266,951436.5793,972455.8872,1396472.926,21
+47267,953284.1216,971650.7388,1401324.87,21
+47268,951831.1548,969534.2099,1403190.263,21
+47269,953688.5701,967587.771,1406921.925,21
+47270,953071.4893,965399.7867,1409015.955,21
+47271,953477.4715,963313.2511,1413042.32,21
+47272,954281.854,962751.1482,1415283.614,21
+47273,953582.2184,958703.9447,1417842.198,21
+47274,955300.6068,958558.5795,1421508.895,21
+47275,954571.7675,956195.6863,1423851.21,21
+47276,955257.7261,953877.7055,1426419.683,21
+47277,954756.6029,952150.7463,1428868.303,21
+47278,956297.7629,949155.1451,1432392.801,21
+47279,955963.1867,949299.9995,1434030.19,21
+47280,956111.5582,945731.0076,1437288.429,21
+47281,966183.3607,956114.7999,1445558.821,21
+47282,966669.3255,958256.3313,1447515.745,21
+47283,968431.2785,960618.512,1447713.589,21
+47284,970106.8194,961723.3972,1450231.187,21
+47285,971137.0436,962373.5536,2296740.239,21
+47286,971640.3152,963894.4332,1484498.715,21
+47287,972389.6264,965986.1003,1837762.373,21
+47288,974705.1657,966332.6249,1425618.825,21
+47289,975019.9396,969080.6772,1429574.016,21
+47290,974595.7889,967926.359,1433826.645,21
+47291,977083.2714,970832.8626,1634089.842,21
+47292,978227.2008,971921.1967,1423639.576,21
+47293,978141.9651,971879.0533,1428749.404,21
+47294,979772.4125,975221.1414,1433330.934,21
+47295,979863.5404,974390.5321,1435089.482,21
+47296,981695.5779,976772.7421,1441352.738,21
+47297,982845.5702,977541.0605,1442255.974,21
+47298,982262.1041,977821.7737,1446317.686,21
+47299,984613.6012,981685.8361,1450243.861,21
+47300,985246.1167,979576.2629,1451825.083,21
+47301,985531.1363,982829.5194,1455212.292,21
+47302,986494.1919,982377.9108,1458054.294,21
+47303,987949.3718,984477.3027,1459984.075,21
+47304,988191.3177,985960.6422,1462603.619,21
+47305,988946.1095,986333.9188,1465475.059,21
+47306,990683.8481,987846.9534,1467156.965,21
+47307,990909.9545,989059.3131,1468584.538,21
+47308,991688.7803,988937.7097,1471926.806,21
+47309,992567.72,992875.1247,1473636.466,21
+47310,993032.8305,992606.3196,1474583.336,21
+47311,994674.5698,993543.5443,1476930.989,21
+47312,994775.2828,994109.8993,1479862.247,21
+47313,995989.4786,997476.8088,1479034.319,21
+47314,996943.5913,995629.3621,1483101.243,21
+47315,996516.2718,999018.9741,1483634.484,21
+47316,999013.0025,998730.4057,1485202.364,21
+47317,998882.2993,998723.7524,1486729.917,21
+47318,999789.3753,1001049.305,1488440.51,21
+47319,1000828.339,1002006.005,1490112.305,21
+47320,1001022.554,1002232.463,1490787.838,21
+47321,1002710.99,1004302.197,1492489.152,21
+47322,1003195.08,1004772.006,1493596.818,21
+47323,1003215.781,1005436.821,1495760.738,21
+47324,1004340.972,1007400.564,1495780.918,21
+47325,1005971.504,1007860.859,1498246.1,21
+47326,1005350.232,1009171.036,1497958.756,21
+47327,1007280.683,1009314.438,1500973.632,21
+47328,1006623.865,1010977.028,1501524.1,21
+47329,1008843.532,1012268.1,1501414.235,21
+47330,1008579.812,1012818.976,1505024.628,21
+47331,1010306.375,1014666.147,1504163.646,21
+47332,1010052.342,1014218.41,1505668.763,21
+47333,1011245.839,1016243.922,1507827.062,21
+47334,1012147.156,1017015.316,1506969.308,21
+47335,1012161.06,1018858.685,1509914.449,21
+47336,1014428.908,1018390.593,1510182.459,21
+47337,1012667.511,1021308.658,1511012.792,21
+47338,1015624.408,1020099.683,1511899.939,21
+47339,1015517.668,1022294.823,1513644.405,21
+47340,1016144.239,1024711.779,1513980.194,21
+47341,1016304.033,1022014.705,1516643.609,21
+47342,1017779.276,1023232.335,1518004.979,21
+47343,1017631.544,1021390.565,1521813.728,21
+47344,1017183.236,1021173.757,1522847.221,21
+47345,1017221.253,1019745.457,1524136.704,21
+47346,1017742.182,1018410.272,1528612.256,21
+47347,1016516.622,1017583.097,1528726.485,21
+47348,1018485.625,1017432.412,1530249.238,21
+47349,1015832.355,1014285.208,1532359.269,21
+47350,1018045.223,1015513.423,2368652.037,21
+47351,1017480.834,1013107.721,1568397.315,21
+47352,1017271.757,1012058.174,1905574.388,21
+47353,1016899.898,1011301.106,1510557.461,21
+47354,1017266.63,1011141.759,1514595.591,21
+47355,1017352.465,1008204.241,1518698.04,21
+47356,1017591.375,1008219.502,1714231.686,21
+47357,1016697.395,1007392.314,1510418.423,21
+47358,1016732.682,1005057.548,1515357.841,21
+47359,1017485.163,1005913.769,1519724.21,21
+47360,1016488.61,1002664.575,1524810.48,21
+47361,1016784.191,1002880.411,1529390.114,21
+47362,1017392.423,1001182.004,1532385.439,21
+47363,1016827.154,1000249.442,1536574.402,21
+47364,1016129.07,999994.8059,1540814.083,21
+47365,1017880.901,997245.3633,1544043.762,21
+47366,1015593.119,997009.1655,1547534.368,21
+47367,1017065.307,996149.2165,1551015.65,21
+47368,1016863.323,994050.5302,1554229.646,21
+47369,1016777.467,994284.2619,1557391.996,21
+47370,1016213.5,991634.9277,1559158.916,21
+47371,1016749.193,991425.3904,1563235.928,21
+47372,1015395.148,990342.8569,1565060.936,21
+47373,1017154.042,988280.0291,1568795.416,21
+47374,1015295.264,988393.9681,1574215.122,21
+47375,1016525.409,986895.9996,1580255.063,21
+47376,1016571.853,984832.2929,1582022.692,21
+47377,1014751.854,983528.8926,1585182.466,21
+47378,1016553.038,984456.5783,1588668.693,21
+47379,1015773.208,981433.6933,1591926.355,21
+47380,1015793.42,980488.505,1594920.362,21
+47381,1015450.116,979400.266,1598169.468,21
+47382,1015857.743,978729.3989,1600099.246,21
+47383,1015226.652,977106.4966,1604527.377,21
+47384,1014742.374,975734.645,1606421.717,21
+47385,1016442.65,975058.1007,1610363.818,21
+47386,1013740.23,973336.0961,1611339.618,21
+47387,1015814.475,972351.1508,1616958.869,21
+47388,1015014.766,970148.5199,1617232.417,21
+47389,1015007.081,971739.3928,1621548.994,21
+47390,1014403.011,967830.3218,1622147.207,21
+47391,1015013.75,966540.195,1628124.189,21
+47392,1013948.28,966973.5104,1629546.484,21
+47393,1014468.434,965737.5592,1630595.974,21
+47394,1015366.172,962573.9987,1634800.798,21
+47395,1013825.016,962839.1702,1638122.585,21
+47396,1013888.501,961564.1152,1638919.821,21
+47397,1014051.562,959796.5619,1642926.458,21
+47398,1014369.294,958776.9911,1645609.983,21
+47399,1013058.428,957647.5092,1647149.269,21
+47400,1014162.067,956147.8166,1649896.912,15.6
+47401,0,0,0,15.6
+47402,0,0,146538.2368,15.6
+47403,0,264.0994217,0,15.6
+47404,0,0,0,15.6
+47405,0,0,0,15.6
+47406,0,0,0,15.6
+47407,0,0,0,15.6
+47408,0,438725.4912,1400312.249,15.6
+47409,0,0,0,15.6
+47410,0,0,0,15.6
+47411,0,0,0,15.6
+47412,0,0,0,15.6
+47413,0,0,0,15.6
+47414,0,0,782695.9907,15.6
+47415,0,0,0,15.6
+47416,0,0,0,15.6
+47417,0,0,0,15.6
+47418,339382.4893,0,0,15.6
+47419,0,0,0,15.6
+47420,0,0,0,15.6
+47421,0,0,0,15.6
+47422,0,0,0,15.6
+47423,0,0,0,15.6
+47424,0,0,0,15.6
+47425,0,0,0,15.6
+47426,0,0,0,15.6
+47427,0,0,0,15.6
+47428,0,0,0,15.6
+47429,0,0,0,15.6
+47430,0,0,0,15.6
+47431,0,0,168586.5794,15.6
+47432,0,438560.135,170471.3317,15.6
+47433,0,0,168641.9801,15.6
+47434,0,0,167411,15.6
+47435,0,0,165720.8168,15.6
+47436,0,0,164307.6377,15.6
+47437,0,0,162969.9963,15.6
+47438,0,0,161374.5925,15.6
+47439,0,0,160089.9336,15.6
+47440,0,0,158702.351,15.6
+47441,0,0,157370.9898,15.6
+47442,0,0,156043.4916,15.6
+47443,0,0,154830.0469,15.6
+47444,0,0,153415.0415,15.6
+47445,0,0,152228.099,15.6
+47446,0,0,1062749.357,15.6
+47447,0,0,145707.2556,15.6
+47448,0,0,144657.4765,15.6
+47449,0,0,143276.7053,15.6
+47450,0,0,142531.6497,15.6
+47451,0,0,141251.5501,15.6
+47452,0,0,140245.0958,15.6
+47453,0,0,139318.3966,15.6
+47454,0,0,138097.375,15.6
+47455,0,0,137185.791,15.6
+47456,0,438395.5621,136171.8699,15.6
+47457,339379.7765,0,135211.0057,15.6
+47458,0,0,134235.3205,15.6
+47459,0,0,133430.948,15.6
+47460,0,0,0,15.6
+47461,0,0,93296.03363,15.6
+47462,0,0,0,15.6
+47463,0,0,0,15.6
+47464,0,0,0,15.6
+47465,0,0,0,15.6
+47466,0,0,0,15.6
+47467,0,0,0,15.6
+47468,0,0,0,15.6
+47469,0,0,0,15.6
+47470,0,0,0,15.6
+47471,0,0,0,15.6
+47472,0,0,0,15.6
+47473,0,0,0,15.6
+47474,0,0,0,15.6
+47475,0,0,90645.64705,15.6
+47476,0,0,0,15.6
+47477,0,0,89442.39796,15.6
+47478,0,0,0,15.6
+47479,0,0,0,15.6
+47480,0,0,0,15.6
+47481,0,0,0,15.6
+47482,0,45430.09842,0,15.6
+47483,0,1272.887637,0,15.6
+47484,0,6536.359791,879907.9937,15.6
+47485,0,18397.78941,0,15.6
+47486,0,12980.42009,0,15.6
+47487,0,13663.32552,0,15.6
+47488,0,14089.9083,0,15.6
+47489,0,14296.28931,0,15.6
+47490,0,14604.72036,84412.85617,15.6
+47491,0,14772.94452,0,15.6
+47492,0,15066.66472,0,15.6
+47493,0,15272.69321,0,15.6
+47494,0,15449.02404,200930.6039,15.6
+47495,0,15809.90853,188665.5822,15.6
+47496,0,15933.11182,190717.7334,15.6
+47497,339387.47,16206.88525,833356.4312,15.6
+47498,0,16436.70974,194996.8216,15.6
+47499,0,16635.21102,387555.9063,15.6
+47500,0,16907.82561,174380.3233,15.6
+47501,0,17111.03028,290043.0951,15.6
+47502,0,17355.29738,224586.1168,15.6
+47503,0,17583.38851,288478.645,15.6
+47504,0,17759.99289,174112.8381,15.6
+47505,0,18085.43284,294613.9268,15.6
+47506,0,18190.52655,209024.764,15.6
+47507,0,18501.34946,273162.9821,15.6
+47508,0,18672.52314,175295.9551,15.6
+47509,0,18897.61717,295020.9462,15.6
+47510,0,19183.65566,205349.2759,15.6
+47511,0,19330.34049,269710.7354,15.6
+47512,0,0,176140.3711,15.6
+47513,0,0,295077.4688,15.6
+47514,0,0,203382.4402,15.6
+47515,0,70672.52253,189413.2023,15.6
+47516,0,0,199062.1842,15.6
+47517,0,15070.85224,197517.7592,15.6
+47518,0,27434.30158,197891.4979,15.6
+47519,0,19897.2269,198619.7215,15.6
+47520,0,21476.06782,199372.0459,15.6
+47521,32884.95239,21614.83825,200634.4138,15.6
+47522,0,21667.84799,834055.8333,15.6
+47523,3449.475944,21616.48192,978393.059,15.6
+47524,10672.91973,21646.29412,0,15.6
+47525,9612.716185,21616.48404,0,15.6
+47526,8392.361561,21568.89612,0,15.6
+47527,8932.722492,21647.93761,0,15.6
+47528,9054.708398,21568.89731,299524.4988,15.6
+47529,9063.434388,21594.93017,103689.8225,15.6
+47530,9186.319682,21548.93355,257786.7827,15.6
+47531,9193.528399,21568.89826,181690.7983,15.6
+47532,9263.5397,21548.93391,213924.472,15.6
+47533,9328.526004,21568.89847,118967.8442,15.6
+47534,9392.686557,21481.1809,256538.1553,15.6
+47535,9444.779375,21568.89841,169772.9393,15.6
+47536,9504.63999,21475.78069,207994.4159,15.6
+47537,348929.2882,21488.09289,118697.286,15.6
+47538,9607.613693,21471.25981,252489.801,15.6
+47539,9688.353272,21492.60864,165878.5436,15.6
+47540,9713.934077,21416.48483,151898.6938,15.6
+47541,9753.012402,21469.66364,160415.6848,15.6
+47542,9849.754186,21381.69548,158446.3685,15.6
+47543,9856.902198,21401.7587,158289.2339,15.6
+47544,9953.290188,21429.58516,158405.0252,15.6
+47545,9993.893398,0,158715.2245,15.6
+47546,10022.54901,0,748358.5803,15.6
+47547,10091.51069,0,140249.0573,15.6
+47548,10135.93654,76309.84117,305516.4793,15.6
+47549,10191.96368,0,124423.0078,15.6
+47550,10245.30955,15407.35873,242271.8853,15.6
+47551,0,27921.03009,187130.3183,15.6
+47552,0,20027.15021,222580.267,15.6
+47553,0,21228.47114,124549.2143,15.6
+47554,0,21235.33818,245856.7206,15.6
+47555,0,21228.47022,173467.8178,15.6
+47556,0,21187.04234,208380.9539,15.6
+47557,0,21150.11509,125035.412,15.6
+47558,46993.99199,21145.00384,0,15.6
+47559,956.0588649,21123.58914,0,15.6
+47560,2136.986831,21081.55108,0,15.6
+47561,14095.28716,21044.54827,224855.6292,15.6
+47562,11965.61044,21023.08031,245699.1023,15.6
+47563,10241.60206,21012.78204,843209.1407,15.6
+47564,11033.49923,20986.05542,170059.6305,15.6
+47565,11010.69766,20980.93661,165894.6668,15.6
+47566,11105.06173,20885.13472,165198.7952,15.6
+47567,11108.62587,20933.89459,165093.8079,15.6
+47568,11169.90456,20831.22226,165300.1318,15.6
+47569,11202.18109,20864.76751,207474.3701,15.6
+47570,11242.78833,20783.92584,818740.9335,15.6
+47571,11273.7275,20778.85104,220787.4668,15.6
+47572,11322.27279,20756.89268,379774.1875,15.6
+47573,11350.10312,20688.99244,206149.882,15.6
+47574,11399.92797,20724.88782,296949.9168,15.6
+47575,11431.02242,20639.86143,245026.8042,15.6
+47576,11474.80437,20602.73905,1604035.33,15.6
+47577,350872.3488,20626.30577,1053959.875,15.6
+47578,11551.85088,0,1086142.446,15.6
+47579,11558.78201,0,1223428.299,15.6
+47580,11622.50423,0,1299283.655,15.6
+47581,11737.61427,73594.81001,1209339.06,15.6
+47582,11876.14155,0,1230373.78,15.6
+47583,11962.15327,13285.10677,1247623.747,15.6
+47584,12139.06588,27350.79622,1372350.874,15.6
+47585,12230.72518,18722.4479,1266862.923,15.6
+47586,12363.75687,19990.86413,1281147.671,15.6
+47587,12475.64292,19935.85251,1293538.246,15.6
+47588,0,19843.65049,1304961.341,15.6
+47589,0,19706.66661,1315403.781,15.6
+47590,0,19678.46138,1325094.012,15.6
+47591,0,19501.57879,1165998.234,15.6
+47592,0,19424.84049,1172460.744,15.6
+47593,58750.50492,19301.58453,1460946.132,15.6
+47594,0,19184.82354,1339826.019,15.6
+47595,2863.995036,19101.51573,2077250.983,15.6
+47596,20061.59537,18972.08851,1407470.469,15.6
+47597,13542.76534,18859.04674,1629459.012,15.6
+47598,13466.11198,18758.08564,1268952.087,15.6
+47599,14094.49419,18610.69641,1272829.91,15.6
+47600,14193.73101,18546.82176,1276448.811,15.6
+47601,14317.32683,18372.81418,1424817.417,15.6
+47602,14416.99816,18296.40713,1268940.48,15.6
+47603,14559.50312,18159.06433,1272804.425,15.6
+47604,14672.38787,18078.2736,2161069.621,15.6
+47605,14765.30964,17924.8357,1383204.577,15.6
+47606,14921.55933,17772.2194,165125.3519,15.6
+47607,14987.01355,17696.02086,344734.5081,15.6
+47608,15177.66612,17593.58343,228487.1817,15.6
+47609,15200.75329,17396.8371,280507.2577,15.6
+47610,15388.86371,17324.96941,160116.5272,15.6
+47611,15486.63743,0,331754.724,15.6
+47612,15588.50044,0,217570.0149,15.6
+47613,15733.49936,0,196988.5366,15.6
+47614,15823.905,0,206978.9617,15.6
+47615,15962.50584,67729.67142,203349.0022,15.6
+47616,16062.48282,0,201870.1791,15.6
+47617,355549.8174,4842.236159,1687764.61,15.6
+47618,16302.3196,24652.49649,1105685.794,15.6
+47619,16408.17545,15040.23875,1823806.979,15.6
+47620,16546.76895,15745.75279,1247604.499,15.6
+47621,16632.84229,15905.33274,1469795.192,15.6
+47622,16779.83448,15758.59033,1200964.545,15.6
+47623,0,15583.85968,1057123.765,15.6
+47624,0,15466.35461,1063571.639,15.6
+47625,0,15319.16274,1204518.152,15.6
+47626,0,15196.3725,1342970.916,15.6
+47627,72258.6385,15010.7116,1227702.448,15.6
+47628,1814.384794,14914.89118,1219882.008,15.6
+47629,7042.324983,14695.05613,1374932.574,15.6
+47630,26232.07283,14627.54132,1235404.343,15.6
+47631,16343.38794,14453.72517,1241059.197,15.6
+47632,17942.75527,14360.90481,1246311.873,15.6
+47633,18044.84259,14173.46742,1369291.372,15.6
+47634,18197.57133,14086.65342,1243012.986,15.6
+47635,18253.89887,13885.76842,1247544.557,15.6
+47636,18430.17246,13761.59367,1251716.766,15.6
+47637,18489.18148,13557.9655,1255430.138,15.6
+47638,18660.69145,13458.34893,1258336.076,15.6
+47639,18741.39777,13253.01922,1261589.428,15.6
+47640,18971.5596,13114.61692,1263646.686,15.6
+47641,19067.86519,13070.56875,1268298.791,15.6
+47642,19058.63857,12944.95544,1272884.972,15.6
+47643,19149.55239,12887.35261,1999392.259,15.6
+47644,19180.59287,12727.23314,1317705.739,15.6
+47645,19297.86942,0,2410600.13,15.6
+47646,19276.29669,0,1256296.98,15.6
+47647,19342.93537,0,320869.4458,15.6
+47648,19423.74215,0,245387.3545,15.6
+47649,19418.71262,0,296329.7417,15.6
+47650,19525.56682,0,159236.974,15.6
+47651,19527.63966,0,318627.1766,15.6
+47652,19624.19505,51967.07805,220880.9394,15.6
+47653,19645.38057,53.01603077,269900.1359,15.6
+47654,19708.99729,3243.435844,156304.2741,15.6
+47655,19764.60578,16137.84195,310419.0275,15.6
+47656,19788.68316,12469.4908,0,15.6
+47657,339359.8442,11189.29106,0,15.6
+47658,0,11656.45697,0,15.6
+47659,0,11643.79299,425307.209,15.6
+47660,73150.07753,11479.24553,207908.7001,15.6
+47661,3311.034188,11453.68042,1747395.555,15.6
+47662,14227.57816,11327.58889,1209267.18,15.6
+47663,25839.99174,11248.58792,1227747.655,15.6
+47664,19457.03609,11189.37173,1335994.013,15.6
+47665,20328.93701,11082.12265,1341001.686,15.6
+47666,20344.93523,10976.71721,1337792,15.6
+47667,20464.00289,10982.56086,2071176.066,15.6
+47668,20439.95032,10874.53589,1415878.922,15.6
+47669,20503.22138,10768.89205,1632243.174,15.6
+47670,20580.84532,10714.53354,1392621.588,15.6
+47671,20597.73303,10594.15577,1404506.322,15.6
+47672,20654.64136,10499.29407,1415928.477,15.6
+47673,20718.92228,10430.63237,1561707.091,15.6
+47674,20716.9095,10251.82784,1421169.626,15.6
+47675,20789.36884,10146.10782,1432057.883,15.6
+47676,20856.21727,10115.39583,1442023.824,15.6
+47677,20866.95933,9933.638542,1571668.977,15.6
+47678,20910.62173,9934.327665,1446153.525,15.6
+47679,21005.4992,9754.626669,1456259.186,15.6
+47680,21003.50192,9713.199175,1463984.136,15.6
+47681,21043.94469,9589.485434,1591758.284,15.6
+47682,21119.64525,0,1467028.696,15.6
+47683,21157.88748,0,1476036.871,15.6
+47684,21214.69264,0,1483714.533,15.6
+47685,21216.66629,0,1491604.778,15.6
+47686,21312.25047,0,1498689.159,15.6
+47687,21325.92677,0,2374186.712,15.6
+47688,21368.58151,0,1489536.422,15.6
+47689,21426.07815,0,1318332.698,15.6
+47690,0,0,1231664.328,15.6
+47691,0,0,1003359.022,15.6
+47692,0,0,197388.3003,15.6
+47693,76643.17986,0,420139.8961,15.6
+47694,8805.223457,0,189443.044,15.6
+47695,12725.68392,0,336445.3487,15.6
+47696,28370.21078,0,2070096.255,15.6
+47697,360356.5574,0,1378156.406,15.6
+47698,21843.71171,0,1313697.009,15.6
+47699,310736.7268,0,1476011.599,15.6
+47700,21969.43178,0,1396589.31,15.6
+47701,48517.83501,0,1536324.058,15.6
+47702,116218.4637,0,1413095.663,15.6
+47703,103210.8021,0,1421825.34,15.6
+47704,92609.26471,0,1428964.861,15.6
+47705,96398.34238,0,1552658.351,15.6
+47706,97299.0238,0,1428992.075,15.6
+47707,97099.60196,0,1436112.029,15.6
+47708,96896.26106,0,1443042.903,15.6
+47709,97252.35862,0,1448291.25,15.6
+47710,97330.22157,0,1454082.936,15.6
+47711,97234.06198,0,1458582.781,15.6
+47712,97357.21745,0,1463026.051,15.6
+47713,97501.59613,0,1467057.024,15.6
+47714,97691.05335,0,1470374.356,15.6
+47715,97661.9077,0,2193656.886,15.6
+47716,97834.73682,0,1516121.875,15.6
+47717,97745.58492,0,1726949.334,15.6
+47718,98301.24899,0,1467234.188,15.6
+47719,97938.95324,0,1471300.966,15.6
+47720,98113.60292,39905.70811,1475146.631,15.6
+47721,98479.29594,883.5273895,1429727.567,15.6
+47722,98346.43309,4204.307062,1280165.104,15.6
+47723,76991.40688,12593.03322,1580376.231,15.6
+47724,76991.40298,11944.97076,1470319.986,15.6
+47725,76794.97218,10200.00914,1583386.511,15.6
+47726,154528.3687,10962.75839,196135.372,15.6
+47727,87040.41675,11109.81539,354911.3855,15.6
+47728,88824.20389,11154.90741,243846.3107,15.6
+47729,28625.66434,11315.24627,298861.4444,15.6
+47730,20798.31551,11452.9769,1005619.429,15.6
+47731,21628.84211,11518.67551,2156365.571,15.6
+47732,21637.26197,11643.05927,1252797.14,15.6
+47733,21607.90012,11761.21747,1333733.519,15.6
+47734,21603.38975,11897.74809,1504405.012,15.6
+47735,21586.03158,11999.49877,1430487.104,15.6
+47736,21546.57792,12073.60334,1447293.406,15.6
+47737,360880.6596,12225.19788,1456869.133,15.6
+47738,21511.70315,12331.11062,1464270.425,15.6
+47739,21515.41126,12456.88367,2179744.773,15.6
+47740,21506.11952,12584.50028,1496584.841,15.6
+47741,21443.66105,12680.02192,1749398.406,15.6
+47742,21472.1276,12820.09025,1472919.979,15.6
+47743,21421.52411,12901.69077,1478339.754,15.6
+47744,367405.2549,13077.08133,1483841.139,15.6
+47745,39567.37392,13135.23934,1616685.989,15.6
+47746,34603.4948,13295.16268,1477749.895,15.6
+47747,111820.8006,13385.23505,1483756.339,15.6
+47748,118051.3187,13538.74729,1488400.731,15.6
+47749,93443.71405,13612.35663,1493515.705,15.6
+47750,100559.1375,0,1497386.016,15.6
+47751,100960.4742,0,1501185.455,15.6
+47752,100464.8236,0,1504875.295,15.6
+47753,100483.1467,0,1318597.43,15.6
+47754,100405.2479,0,1320996.656,15.6
+47755,100334.9808,58369.5486,1623754.727,15.6
+47756,79179.21597,0,1512813.039,15.6
+47757,78914.75728,5119.810095,1573365.845,15.6
+47758,78947.87484,21206.62738,1520461.802,15.6
+47759,155216.8355,14383.77201,1512952.531,15.6
+47760,87319.17199,14843.86874,1639465.041,17.8
+47761,916735.175,1204513.442,296384.0984,17.8
+47762,902907.2763,357924.8061,2761154.564,17.8
+47763,422179.9517,126982.8177,2648183.318,17.8
+47764,325305.8415,301280.8467,2345274.066,17.8
+47765,326618.9258,297983.6548,2049441.509,17.8
+47766,359799.204,264156.6383,1939516.517,17.8
+47767,331313.4163,266137.0204,1977594.069,17.8
+47768,334625.4621,266195.8476,1983137.427,17.8
+47769,332091.4044,265287.2494,1946605.004,17.8
+47770,333636.3754,265119.8443,2661280.335,17.8
+47771,333741.7854,265858.8907,2833984.778,17.8
+47772,334924.466,266796.455,2184156.139,17.8
+47773,335154.0299,265381.04,1909478.809,17.8
+47774,48242.86896,265737.8586,1916819.016,17.8
+47775,48335.39722,265053.1193,1922878.657,17.8
+47776,48436.20795,266053.3847,2056042.154,17.8
+47777,1194383.714,264846.9256,1913993.402,17.8
+47778,430634.951,264863.7691,1922532.234,17.8
+47779,199161.3412,265371.3666,1927332.771,17.8
+47780,394050.4995,264736.8882,1932839.792,17.8
+47781,345754.2451,264894.4773,1936485.602,17.8
+47782,343064.1524,264873.8376,1941317.495,17.8
+47783,343654.5737,265095.0269,1943092.44,17.8
+47784,344378.7604,264630.3809,1946294.411,17.8
+47785,345724.1839,226503.3145,1709258.295,17.8
+47786,346707.7071,226523.1743,1711597.795,17.8
+47787,347043.6199,321592.1687,2028514.137,17.8
+47788,348842.2778,240437.1915,2070733.181,17.8
+47789,298878.4945,263265.4144,1944905.227,17.8
+47790,300031.0634,264042.5387,1946456.205,17.8
+47791,390976.8622,35773.16224,2077964.496,17.8
+47792,362630.2731,35777.05527,238326.6903,17.8
+47793,353215.7321,35721.88511,406185.4501,17.8
+47794,345543.7542,40931.0802,2695570.69,17.8
+47795,356746.6877,801917.7087,2018306.515,17.8
+47796,359922.7971,85679.20932,1687706.316,17.8
+47797,356395.718,202418.9496,2100913.273,17.8
+47798,359350.349,328218.7384,2034999.982,17.8
+47799,360043.1063,256105.7798,2033827.171,17.8
+47800,361381.4643,265684.3467,2037497.007,17.8
+47801,361951.2281,265819.6054,2763241.812,17.8
+47802,363421.7371,266360.0235,2077908.578,17.8
+47803,364891.6134,265858.9245,2324350.298,17.8
+47804,365030.0776,266317.0294,2037617.406,17.8
+47805,366939.1469,266269.7873,2046758.997,17.8
+47806,368078.2188,266660.3226,2050716.87,17.8
+47807,53333.39232,265980.7232,2182211.972,17.8
+47808,53563.08584,267246.7472,2040396.816,17.8
+47809,828825.6021,266405.0305,2047092.141,17.8
+47810,390534.8462,267093.1026,2895611.812,17.8
+47811,288589.8681,266476.336,2031378.795,17.8
+47812,409639.7164,267447.967,2040428.782,17.8
+47813,718035.5825,266931.7957,2047071.296,17.8
+47814,377721.3117,267677.1927,2054859.15,17.8
+47815,379112.1262,266944.7209,2058404.146,17.8
+47816,379701.7223,268012.9325,2064818.67,17.8
+47817,381224.2124,228043.3202,1825680.9,17.8
+47818,382360.5422,228836.3253,1829089.961,17.8
+47819,383055.6737,321701.1054,2864991.736,17.8
+47820,385182.4088,242071.8356,2146036.349,20
+47821,1214047.746,1719301.012,3490656.712,20
+47822,1094934.019,1392098.38,3173505.809,20
+47823,996892.8357,382436.1466,3152607.535,20
+47824,759462.6008,736346.7911,535665.3948,20
+47825,892509.4813,125143.3543,3062891.432,20
+47826,783494.1384,148225.7705,2690944.362,20
+47827,812813.861,1218052.379,2385967.102,20
+47828,800773.3112,488743.4835,2580859.692,20
+47829,790204.0578,654868.1021,2761402.088,20
+47830,760629.112,552057.6866,2714663.726,20
+47831,777229.4862,607352.0631,2632392.379,20
+47832,770372.3236,579584.5776,2666484.205,20
+47833,766660.1777,578517.3556,2664379.717,20
+47834,766814.1991,597129.8809,2659566.641,20
+47835,764057.457,623785.9426,2657486.617,20
+47836,762537.2294,599991.5795,2640121.713,20
+47837,760118.2367,606914.906,3366650.658,20
+47838,748688.5967,606088.0732,2678687.822,20
+47839,140477.5923,604948.6483,2905940.883,20
+47840,139853.1243,604924.5926,2612695.475,20
+47841,952976.0036,602553.4874,2621990.615,20
+47842,899536.2048,603840.7641,2622347.452,20
+47843,631611.4305,601580.7103,2749554.664,20
+47844,774890.288,601579.3649,2604630.452,20
+47845,744931.0106,600703.1693,2612730.391,20
+47846,684358.4429,601128.5584,2615205.255,20
+47847,779993.1582,599422.1352,2623769.162,20
+47848,744821.0117,599526.0386,2622744.428,20
+47849,1084982.214,502735.151,3134906.741,20
+47850,727016.1921,502509.6887,2653346.541,20
+47851,709106.6125,660603.4048,2607572.363,20
+47852,595857.2959,567185.2139,2613021.011,20
+47853,740472.0946,568292.6039,2620116.375,20
+47854,762780.7613,582299.4349,2621662.723,20
+47855,725873.9596,638605.6594,543013.2469,20
+47856,718337.8085,580776.6538,468588.8798,20
+47857,729027.6287,119768.4789,2994700.86,20
+47858,724253.8323,122843.7952,3020711.978,20
+47859,722617.092,1179245.785,2468064.917,20
+47860,720279.5051,386904.9982,2448449.796,20
+47861,720562.0475,592884.5333,2580818.518,20
+47862,718854.3709,538712.9767,2691619.233,20
+47863,718105.3391,561330.3348,2671515.167,20
+47864,716445.6598,548046.6548,2621138.992,20
+47865,715790.3645,631984.0542,2639594.437,20
+47866,715849.593,582033.8766,2641252.442,20
+47867,712747.3759,593669.1387,2639680.262,20
+47868,713911.3171,596265.6858,3357807.185,20
+47869,710248.7281,595473.5074,2676022.473,20
+47870,712040.1199,594193.243,2903760.233,20
+47871,132741.5383,596025.8765,2619082.409,20
+47872,132437.7679,595877.2508,2623521.847,20
+47873,945642.4586,594725.4763,2633069.875,20
+47874,829984.9225,595670.6454,2752680.06,20
+47875,622629.0085,595700.5676,2613616.374,20
+47876,757650.3678,595669.1626,2622842.089,20
+47877,647072.6229,595627.5268,2641283.997,20
+47878,745447.0974,594296.3302,2647427.616,20
+47879,701425.0947,596470.8441,2649628.894,20
+47880,701066.3204,597166.0841,2334915.416,21
+47881,2639259.632,2960550.674,5086532.017,21
+47882,2115781.728,1892454.487,4711186.968,21
+47883,653801.8287,635963.3689,2799411.294,21
+47884,773255.7318,720030.0251,2849080.303,21
+47885,794129.4832,828217.2907,2962819.822,21
+47886,1097935.791,1003671.386,3317102.179,21
+47887,850258.5627,833001.9473,2960650.781,21
+47888,890194.2132,868810.7299,3022770.034,21
+47889,896925.6645,868618.9369,3019031.47,21
+47890,889082.684,866992.4196,3006729.245,21
+47891,889395.0284,862206.6501,2997224.902,21
+47892,884104.829,863784.6912,2994659.491,21
+47893,880230.9791,857607.1439,2981818.82,21
+47894,880286.8046,859766.7346,2978610.605,21
+47895,877554.8889,855902.7508,2972735.152,21
+47896,875038.97,854396.8669,2966257.332,21
+47897,872789.5105,853825.3644,2963031.897,21
+47898,871273.137,851617.2142,2958751.067,21
+47899,867893.1968,850170.0891,2953194.783,21
+47900,868378.5076,849084.2376,2947865.132,21
+47901,865068.1502,847795.4784,2948323.813,21
+47902,863408.3164,847603.0415,2943765.272,21
+47903,862021.5317,843779.3272,2937934.677,21
+47904,860011.5038,846078.4218,2938016.103,21
+47905,858668.9844,841798.8073,2934503.984,21
+47906,858139.6626,842858.0802,2931663.539,21
+47907,854929.8765,840955.8464,2928474.257,21
+47908,855932.8744,840223.3592,2926241.665,21
+47909,851428.1435,839771.6918,2923301.016,21
+47910,853854.6948,838194.031,2923691.205,21
+47911,849363.3968,837197.6609,2916522.741,21
+47912,849288.8048,838279.4621,2919973.067,21
+47913,849027.6993,835455.365,2915992.267,21
+47914,846899.1681,834353.3116,2915259.686,21
+47915,845697.5638,835088.8915,2911260.664,21
+47916,845506.6115,835025.1464,2910970.147,21
+47917,843421.4702,831739.8072,2910552.483,21
+47918,843743.388,833746.545,2908077.9,21
+47919,841667.4822,831734.3496,2906279.528,21
+47920,841358.3399,832133.9487,2906429.708,21
+47921,840377.0061,830959.976,2904521.831,21
+47922,839210.3478,830357.6498,2901054.703,21
+47923,838590.3316,830083.0692,2902641.99,21
+47924,838015.9269,829422.9842,2900410.528,21
+47925,836412.6859,828799.4,2897883.299,21
+47926,836258.9669,828638.4944,2899944.566,21
+47927,836030.9692,829531.1733,2896954.566,21
+47928,833951.8451,826849.6493,2898008.069,21
+47929,833707.6533,827836.8818,2893212.996,21
+47930,834083.8928,827947.3965,2894928.894,21
+47931,832013.4057,825347.2932,2894888.024,21
+47932,832497.6317,827524.3549,2890133.922,21
+47933,831071.2898,825825.8035,2891987.043,21
+47934,830832.4438,826412.0921,2892452.77,21
+47935,830043.6982,826296.526,2886354.118,21
+47936,829678.7158,824595.1215,2893168.1,21
+47937,828607.8534,826519.3063,2885538.698,21
+47938,829527.9326,824585.2736,2890249.201,21
+47939,826777.3894,825465.9632,2885763.558,21
+47940,828030.4659,825432.8271,2887290.52,21
+47941,1422231.883,1618845.422,2838176.083,21
+47942,1417927.453,1616183.317,2828706.998,21
+47943,1414522.977,1615494.436,2824627.926,21
+47944,1416188.433,1616342.16,2815836.787,21
+47945,1412746.092,1614450.523,2814951.523,21
+47946,1413338.975,1616835.275,2811022.999,21
+47947,1412597.548,1614841.697,2807887.94,21
+47948,1409434.562,1618980.53,2804902.313,21
+47949,1411494.637,1615432.583,2803093.551,21
+47950,1409618.934,1617246.228,2802949.667,21
+47951,1408278.246,1619078.872,2798076.987,21
+47952,1408918.08,1617792.045,2797804.399,21
+47953,1406572.921,1619202.793,2794720.384,21
+47954,1407807.759,1619960.133,2794030.914,21
+47955,1404820.938,1620612.903,2794351.788,21
+47956,1406712.883,1621838.236,2789252.525,21
+47957,1404965.738,1622621.548,2791933.143,21
+47958,1403638.235,1623398.173,2785986.833,21
+47959,1404298.801,1622579.33,2787800.251,21
+47960,1402607.514,1625088.256,2785333.846,21
+47961,1402427.559,1624950.486,2784535.192,21
+47962,1402448.648,1625460.171,2785188.469,21
+47963,1400789.409,1626793.717,2782053.383,21
+47964,1401724.837,1626911.905,2782180.874,21
+47965,1401092.086,1628367.042,2780555.184,21
+47966,1399737.389,1629150.539,2780014.173,21
+47967,1399927.084,1627878.912,2778700.551,21
+47968,1399209.866,1631687.283,2777153.296,21
+47969,1398422.699,1630098.17,2777744.726,21
+47970,1398933.132,1632622.104,2775884.981,21
+47971,1398618.814,1632868.752,2775039.847,21
+47972,1396616.537,1633610.182,2774418.607,21
+47973,1397912.82,1634317.062,2776039.879,21
+47974,1393053.858,1635845.727,2772110.882,21
+47975,1393155.657,1635171.163,2771921.582,21
+47976,1390386.315,1637539.815,2772988.113,21
+47977,1393042.132,1638507.905,2771534.854,21
+47978,1389156.364,1638079.333,2751912.235,21
+47979,1389141.64,1641067.275,2748020.312,21
+47980,1389052.79,1639757.341,2743404.04,21
+47981,1387503.215,1641132.952,2744286.588,21
+47982,1387730.904,1643478.425,2737773.124,21
+47983,1387161.577,1643193.588,2736238.256,21
+47984,1385215.527,1644536.227,2733479.225,21
+47985,1386155.01,1645442.391,2729899.455,21
+47986,1384461.06,1644950.85,2726219.748,21
+47987,1383770.799,1646536.189,2722609.48,21
+47988,1385057.264,1646212.366,2720491.104,21
+47989,1381325.199,1649653.265,2715055.435,21
+47990,1384442.693,1648552.113,2714961.02,21
+47991,1379831.677,1649859.693,2709110.378,21
+47992,1382763.48,1650789.923,2707733.603,21
+47993,1380239.631,1652666.912,2701327.537,21
+47994,1380244.76,1653161.837,2700470.71,21
+47995,1379195.276,1653577.767,2692366.245,21
+47996,1379340.495,1655791.557,2691337.612,21
+47997,1378252.433,1655988.504,2686613.056,21
+47998,1378451.359,1656243.458,2681147.565,21
+47999,1377117.741,1659120.917,2679265.363,21
+48000,1377276.098,1659658.645,2675415.822,21
+48001,1142080.18,1424307.088,2315548.716,21
+48002,1123725.712,1407728.881,2282893.191,21
+48003,1120777.943,1403408.57,2261444.458,21
+48004,1550719.386,1398896.603,2242489.017,21
+48005,1112524.204,1397141.916,2228012.061,21
+48006,1110868.179,1393149.287,2210891.346,21
+48007,1108453.102,1389576.208,2198256.924,21
+48008,1108068.903,1388144.921,2185974.937,21
+48009,1106498.432,1385292.222,2175372.232,21
+48010,1103823.899,1383977.835,2163971.13,21
+48011,1104171.974,1382643.904,2154500.798,21
+48012,1101928.267,1380675.01,2144145.528,21
+48013,1100746.136,1380325.146,2134084.181,21
+48014,1099226.274,1378565.166,2127839.126,21
+48015,1098566.994,1377751.646,2115800.748,21
+48016,1096876.441,1376346.464,2109960.484,21
+48017,1095789.614,1375455.41,2100533.075,21
+48018,1094752.623,1374225.945,2093066.249,21
+48019,1093415.785,1373170.558,2084037.919,21
+48020,1092465.18,1372369.045,2077389.335,21
+48021,1091164.537,1370624.139,2069471.034,21
+48022,1089894.358,1370502.89,2061349.202,21
+48023,1089419.578,1368742.595,2054361.416,21
+48024,1087818.08,1367699.809,2046503.214,21
+48025,1087023.085,1367691.136,2039891.931,21
+48026,1085836.798,1366003.959,2030880.129,21
+48027,1084882.036,1365055.596,2026010.806,21
+48028,1518721.879,1364502.141,2016275.494,21
+48029,1082811.564,1363180.784,2011074.536,21
+48030,1081828.212,1362227.933,2002800.698,21
+48031,1081137.71,1362376.689,1996541.852,21
+48032,1078732.017,1360251.699,1990628.657,21
+48033,1078676.892,1360201.295,1984249.601,21
+48034,1076185.849,1358825.465,1977917.821,21
+48035,1076113.055,1358334.485,1973057.8,21
+48036,1073723.314,1357589.98,1965919.126,21
+48037,1073509.528,1356632.652,1960380.231,21
+48038,1071060.267,1356102.976,1954726.351,21
+48039,1068827.737,1354587.574,1949707.268,21
+48040,1067562.315,1355860.609,1943247.396,21
+48041,1065490.929,1355257.406,1937819.333,21
+48042,1064254.152,1354584.998,1931691.36,21
+48043,1062957.028,1352880.442,1926614.746,21
+48044,1061841.141,1353424.147,1920713.129,21
+48045,1059601.299,1351914.209,1914971.198,21
+48046,1059370.768,1351318.447,1908797.123,21
+48047,1057325.447,1350841.362,1904732.154,21
+48048,1055784.343,1349784.563,1897471.936,21
+48049,1054834.701,1349609.672,1893460.603,21
+48050,1052989.251,1348054.339,1887091.048,21
+48051,1051943.928,1348631.182,1882331.339,21
+48052,1485298.858,1346893.932,1875194.173,21
+48053,1049113.878,1346695.96,1871474.052,21
+48054,1047782.553,1344228.845,1864343.467,21
+48055,1046184.705,1343862.057,1859942.299,21
+48056,1045054.305,1343107.635,1853497.641,21
+48057,1043515.327,1342337.591,1848209.043,21
+48058,1042149.434,1341935.47,1842018.214,21
+48059,1040599.403,1341220.566,1838189.553,21
+48060,1040227.554,1340253.71,1831225.579,21
+48061,1036525.952,1338715.344,1823605.55,21
+48062,1035255.249,1335428.27,1817322.114,21
+48063,1032103.342,1333601.436,1808653.196,21
+48064,1030066.278,1331078.441,2540098.67,21
+48065,1028214.542,1328559.456,1833771.954,21
+48066,1024946.52,1328309.113,2055253.867,21
+48067,1023460.61,1324811.265,1758513.827,21
+48068,1020771.171,1324093.565,1754205.694,21
+48069,1018497.455,1320282.081,1749689.731,21
+48070,1016258.987,1319392.739,1744627.311,21
+48071,1013331.882,1315813.224,1738701.096,21
+48072,1011571.655,1314268.105,1733958.545,21
+48073,1007117.549,1311516.865,1727484.465,21
+48074,1004330.422,1309686.369,1722167.084,21
+48075,1002029.656,1306631.431,1715624.865,21
+48076,1434019.873,1305222.106,1709483.539,21
+48077,997148.6859,1300540.434,1703001.558,21
+48078,994620.6797,1299026.245,1698194.036,21
+48079,992271.3743,1296352.518,1761783.94,21
+48080,989797.0285,1294335.888,1674970.571,21
+48081,987487.8175,1291765.091,1669077.07,21
+48082,985136.6182,1289863.218,1820714.638,21
+48083,983082.3885,1286796.778,1639528.863,21
+48084,979897.9474,1285093.108,1636304.249,21
+48085,978723.2436,1282461.205,1631776.929,21
+48086,975409.5076,1280513.367,1626964.873,21
+48087,973447.9391,1277878.608,1622070.153,21
+48088,971019.912,1275920.49,1618086.912,21
+48089,969142.7483,1273046.351,1611271.631,21
+48090,966279.0245,1271463.085,1606546.027,21
+48091,961725.5526,1268248.935,1601291.345,21
+48092,959436.5991,1266627.89,2346763.702,21
+48093,957830.7227,1264632.974,1624957.955,21
+48094,955386.0519,1261515.886,1869672.983,21
+48095,953246.9421,1259677.935,1557116.935,21
+48096,951374.0456,1257196.772,1553715.208,21
+48097,949174.7417,1255028.08,1549731.427,21
+48098,947124.9767,1253208.117,1545954.453,21
+48099,945646.0651,1249751.826,1542013.838,21
+48100,942645.6968,1248484.611,1537639.611,21
+48101,941456.9147,1245602.128,1532722.197,21
+48102,938957.4335,1243745.703,1528086.293,21
+48103,937710.2589,1240899.674,1522684.432,21
+48104,934907.8486,1238818.64,1519118.764,21
+48105,933117.9484,1225616.649,1511785.945,21
+48106,930956.311,1219677.603,1510356.068,21
+48107,929128.9613,1217344.462,1571805.04,21
+48108,927019.8887,1213976.418,1490563.277,21
+48109,925119.3281,1211419.553,1485411.997,21
+48110,922843.1266,1207496.093,1480120.24,21
+48111,920738.8471,1204904.246,1476088.327,21
+48112,919393.5761,1201451.178,1469790.846,21
+48113,916980.3112,1198594.34,1465669.565,21
+48114,915167.7751,1195402.965,1459731.206,21
+48115,912867.509,1192753.905,2220893.476,21
+48116,910892.8249,1189322.393,1483233.914,21
+48117,909398.3372,1185405.217,1746937.271,21
+48118,906872.7137,1183964.617,1416790.752,21
+48119,905095.0476,1178909.523,1413843.905,21
+48120,903176.4805,1175550.103,1409337.517,21
+48121,905321.0273,1177942.035,1412919.504,21
+48122,903094.6079,1177039.943,1409137.159,21
+48123,901693.2235,1173686.75,1407221.826,21
+48124,898950.8888,1172721.94,1403687.314,21
+48125,897122.4788,1169523.979,1399256.503,21
+48126,894909.836,1167443.138,1397036.064,21
+48127,892605.6187,1165340.806,1393174.123,21
+48128,890834.127,1163132.102,1390290.039,21
+48129,888400.288,1160483.478,1389299.432,21
+48130,886593.01,1159117.193,1452322.63,21
+48131,884462.7434,1155792.687,1439578.584,21
+48132,882305.8627,1153886.603,1366384.429,21
+48133,880517.8935,1152274.989,1364265.698,21
+48134,878035.3079,1149238.501,1362231.052,21
+48135,876204.2814,1147671.512,1358985.638,21
+48136,873711.2314,1145086.099,1356923.72,21
+48137,872307.7394,1142431.874,1353901.021,21
+48138,869758.7537,1141066.587,1351371.906,21
+48139,867912.1246,1138316.991,1348667.898,21
+48140,865614.0957,1135416.403,2126536.431,21
+48141,863846.3378,1134550.499,1374560.136,21
+48142,861540.1784,1131168.461,1659536.863,21
+48143,859981.9738,1129796.711,1315384.711,21
+48144,857714.1536,1126734.56,1313424.823,21
+48145,855767.4407,1124953.042,1311947.483,21
+48146,853461.7082,1122443.091,1310950.69,21
+48147,851669.3929,1120358.742,1308045.282,21
+48148,849820.5708,1118414.081,1306630.498,21
+48149,847911.8765,1115471.341,1304876.229,21
+48150,845345.471,1114547.436,1301821.758,21
+48151,844822.5881,1112492.391,1300123.908,21
+48152,842889.7354,1109851.947,1297488.742,21
+48153,841949.2014,1107445.422,1295574.755,21
+48154,840612.2193,1105649.377,1294387.477,21
+48155,838932.2879,1102906.435,1362416.044,21
+48156,837649.6064,1100144.98,1583154.556,21
+48157,836843.6284,1098600.364,1255581.17,21
+48158,835049.5674,1091657.085,1255731.066,21
+48159,833933.7475,1088665.928,1255105.549,21
+48160,833097.2001,1086235.175,1445064.096,21
+48161,831097.3304,1083916.799,1238623.818,21
+48162,830569.9879,1081104.633,1238142.178,21
+48163,829029.3455,1078781.013,1238132.871,21
+48164,827899.4035,1076244.828,1237727.51,21
+48165,826523.3642,1073460.685,1236830.407,21
+48166,825379.099,1071549.228,1236126.345,21
+48167,823919.9807,1068799.913,1234437.917,21
+48168,823112.5698,1066242.715,1233718.306,21
+48169,821452.4856,1063268.277,1231968.111,21
+48170,820630.342,1061584.129,2024492.091,21
+48171,819132.7892,1058593.675,1260346.044,21
+48172,818266.6041,1056546.839,1565230.14,21
+48173,816768.3654,1053842.626,1204814.867,21
+48174,815887.6637,1050898.518,1204172.641,21
+48175,814447.0447,1049038.511,1204154.2,21
+48176,813198.5662,1046068.594,1203054.624,21
+48177,812346.1209,1043333.146,1202383.393,21
+48178,810704.1726,1041407.8,1201447.428,21
+48179,809796.7562,1038794.883,1200323.879,21
+48180,808700.1968,1035972.626,1198319.488,21
+48181,804632.0996,1029983.218,1192042.629,21
+48182,804367.3879,1027139.174,1189393.443,21
+48183,803420.4369,1025801.637,1189307.462,21
+48184,802227.4287,1023768.308,1190117.054,21
+48185,801524.5882,1021911.878,1273318.489,21
+48186,800110.0662,1019122.422,1179145.992,21
+48187,799705.9494,1017603.17,1178677.122,21
+48188,797917.3379,1014821.026,1389218.827,21
+48189,797641.8856,1013199.118,1162333.673,21
+48190,796527.0982,1010901.945,1162219.985,21
+48191,795233.225,1008568.308,1161868.429,21
+48192,794487.428,1005522.617,1320528.108,21
+48193,793834.7694,1003569.522,1150704.707,21
+48194,792109.6165,1001351.998,1150334.974,21
+48195,791792.9637,998942.9704,1151068.348,21
+48196,790503.1712,997069.904,1308176.012,21
+48197,789463.2107,995234.9754,1139914.379,21
+48198,788745.8004,992743.2563,1140810.004,21
+48199,787621.2977,990222.2517,1139923.419,21
+48200,786594.9157,988910.038,1299323.575,21
+48201,786003.2493,986109.1462,1129983.58,21
+48202,786410.8239,984444.6611,1130361.914,21
+48203,786545.0627,981392.3435,1131117.178,21
+48204,784960.4445,980343.0909,1290000.913,21
+48205,784529.8811,977812.0457,1121016.477,21
+48206,783233.8087,975568.9758,1121775.731,21
+48207,782932.9031,973361.919,1121900.584,21
+48208,781652.0465,971143.1768,1282251.425,21
+48209,780795.6714,969487.1668,1112457.832,21
+48210,779909.7883,966899.6811,1113327.289,21
+48211,778782.9237,965116.4558,1113717.991,21
+48212,776944.7533,963771.6201,1275314.815,21
+48213,775104.0708,962125.5488,1104074.639,21
+48214,773671.0302,960747.1225,1105348.444,21
+48215,771920.1911,958752.0884,1105672.081,21
+48216,770396.0987,957776.7486,1268297.238,21
+48217,766386.8624,955837.0495,1096340.069,21
+48218,764674.2857,955833.1373,1097422.806,21
+48219,762554.3813,954325.7613,1098275.771,21
+48220,760980.6967,952933.0769,1260729.283,21
+48221,758933.5673,951568.779,1089127.037,21
+48222,756878.181,949695.3154,1089016.929,21
+48223,755401.9773,948809.9981,1089144.844,21
+48224,753006.9861,947404.7092,1090622.984,21
+48225,751262.546,945498.3259,1089666.134,21
+48226,749389.0206,943311.8983,1090032.769,21
+48227,747383.954,941110.0679,1090309.763,21
+48228,745593.9985,941004.3769,1089643.946,21
+48229,743663.9117,938736.8097,1089845.583,21
+48230,741629.4663,937760.2909,1455788.407,21
+48231,739750.0064,935988.3349,1067347.982,21
+48232,737620.8845,935058.5181,1067659.42,21
+48233,736259.0646,933091.7437,1069294.376,21
+48234,731901.913,933195.8582,1068998.124,21
+48235,729692.8413,930042.1285,1069962.689,21
+48236,727973.8112,929904.1178,1068742.73,21
+48237,725304.7991,928204.3883,1069992.107,21
+48238,724104.312,926075.1193,1068844.066,21
+48239,721158.5749,925630.6205,1069332.683,21
+48240,719562.5785,924369.8431,1440944.557,21
+48241,746716.2952,953287.6325,1087709.8,21
+48242,744560.1992,953719.497,1090152.684,21
+48243,742600.3462,953583.4699,1093348.582,21
+48244,739590.4668,953036.0864,1095769.694,21
+48245,737717.6687,952751.018,1098051.668,21
+48246,735072.9617,952628.5699,1099584.903,21
+48247,732745.1575,951974.6703,1101830.852,21
+48248,730378.1337,951582.0076,1103663.168,21
+48249,728011.8475,951120.109,1105083.842,21
+48250,725691.7759,950434.3516,1484334.186,21
+48251,723325.1544,951110.4737,1085995.025,21
+48252,720761.4863,949768.4214,1088822.785,21
+48253,718583.4605,949757.4462,1090501.499,21
+48254,715834.6259,949713.5594,1094476.923,21
+48255,713791.9468,948577.5918,1095105.13,21
+48256,711233.2355,948944.5808,1096691.331,21
+48257,708545.7869,947762.9046,1098191.577,21
+48258,706269.0214,948204.9129,1100161.954,21
+48259,704134.0476,947930.7109,1100792.023,21
+48260,701216.2319,946862.2113,1483268.648,21
+48261,696901.8256,946677.3899,1081535.734,21
+48262,694403.1379,946295.3881,1082868.975,21
+48263,691495.8553,945984.7346,1085922.664,21
+48264,689015.876,945375.2738,1086865.158,21
+48265,686758.9938,945118.268,1089243.169,21
+48266,684702.8048,944209.401,1089369.239,21
+48267,683374.1754,944351.3801,1091344.218,21
+48268,681688.7093,944020.7638,1092627.405,21
+48269,680075.2987,942824.6996,1092908.221,21
+48270,678470.9946,943651.9581,1478492.597,21
+48271,677092.5447,941400.2593,1073357.133,21
+48272,675128.8786,942343.235,1074737.599,21
+48273,674125.205,940600.2027,1076272.765,21
+48274,672642.6049,940291.2137,1078753.909,21
+48275,670832.2161,938916.1249,1079511.345,21
+48276,669506.3881,938654.0116,1080184.646,21
+48277,668302.0587,937210.1121,1082430.851,21
+48278,666301.3974,936726.7918,1082008.026,21
+48279,665390.0589,935774.6646,1083924.778,21
+48280,663996.044,933511.5465,1470852.106,21
+48281,661923.2696,931959.5291,1062961.372,21
+48282,660841.665,931253.4557,1065038.818,21
+48283,659888.4017,929893.78,1066471.778,21
+48284,658445.5411,929609.6932,1067953.381,21
+48285,657163.9851,927774.7371,1069436.418,21
+48286,655102.7522,927721.9443,1069959.384,21
+48287,654848.2625,926376.1759,1071435.706,21
+48288,652759.3676,925019.2429,1072095.609,21
+48289,651544.9078,924494.411,1072875.439,21
+48290,650032.9201,922823.5208,1463397.471,21
+48291,648942.156,921939.6131,1052377.549,21
+48292,647558.4886,921261.6911,1054778.434,21
+48293,650296.4334,919469.0317,1056384.927,21
+48294,647984.9922,919079.4334,1057939.319,21
+48295,646875.4099,917766.3897,1057788.303,21
+48296,646689.7178,916476.48,1051593.151,21
+48297,645813.6684,915591.114,1056448.086,21
+48298,644536.8369,914715.8941,1055434.614,21
+48299,644633.7623,913492.31,1055289.279,21
+48300,643316.1597,912791.1802,1056118.422,21
+48301,613209.5407,881564.7059,1002282.007,21
+48302,612642.4475,876766.826,999594.9055,21
+48303,611855.8626,875538.1403,998250.1819,21
+48304,611820.7176,873904.9056,995902.9711,21
+48305,611256.732,872169.7094,995126.9818,21
+48306,610383.0927,871483.5835,992219.7233,21
+48307,610111.5965,868943.6743,990896.3038,21
+48308,610322.9504,868157.7888,988866.7384,21
+48309,609172.9794,866225.7658,986623.783,21
+48310,609374.8236,864224.9295,984359.7467,21
+48311,608701.8725,863630.2984,982806.8075,21
+48312,610484.8757,861278.4121,979944.7982,21
+48313,610696.8711,860220.5755,978025.7739,21
+48314,610358.5014,858274.4334,975873.0433,21
+48315,609910.9875,857297.245,973672.0036,21
+48316,610066.1751,854782.3647,970824.2082,21
+48317,609447.7178,853859.0885,969362.4631,21
+48318,609187.0905,852151.6842,966508.8809,21
+48319,609288.2582,850708.5991,964078.8683,21
+48320,609144.5625,849029.8173,962057.5675,21
+48321,608648.7775,847312.2113,959184.3645,21
+48322,608241.0496,846299.6907,957222.0052,21
+48323,608935.8583,843862.2603,953931.7393,21
+48324,607874.9645,843446.5575,952444.5271,21
+48325,607824.7257,840931.0902,949191.9596,21
+48326,609534.1842,840019.4245,947301.3651,21
+48327,608792.6105,838180.4117,944109.5611,21
+48328,609203.1969,836608.7031,941557.8265,21
+48329,609054.052,835421.8577,939145.6395,21
+48330,608408.788,833628.8551,936498.979,21
+48331,608474.9669,832998.5177,933749.442,21
+48332,606792.5982,831040.4036,931314.8246,21
+48333,606692.784,831181.3663,928602.2744,21
+48334,605437.0369,829914.9236,925687.8661,21
+48335,604422.3081,830690.5508,923974.0323,21
+48336,603433.2203,830328.2793,920152.1265,21
+48337,602878.2088,829230.7688,918053.792,21
+48338,601795.5654,828731.6923,915047.8146,21
+48339,600605.9497,827809.3983,912404.8644,21
+48340,600202.6774,827440.2475,909673.6974,21
+48341,598644.3982,826976.6137,907062.8013,21
+48342,598017.6702,826243.6615,904092.6167,21
+48343,597207.0788,825222.3247,901191.0445,21
+48344,596182.7136,825545.1451,898413.3938,21
+48345,594709.0397,824413.4422,895595.0715,21
+48346,593997.8152,822727.8064,892926.163,21
+48347,593173.3512,822385.304,889438.7115,21
+48348,591721.8874,821797.8316,887680.539,21
+48349,591065.1487,821707.0924,883557.0447,21
+48350,590073.2499,820611.4535,880805.1534,21
+48351,588562.2831,820768.3705,878841.355,21
+48352,588177.677,820566.625,875089.5477,21
+48353,587076.5234,819540.0494,872213.6717,21
+48354,585718.8164,819379.7734,869736.6146,21
+48355,584871.3556,818645.7924,866460.2294,21
+48356,583727.4672,818293.2532,862933.9134,21
+48357,582527.5533,818186.9849,860972.4412,21
+48358,581803.7517,817714.2711,857169.7398,21
+48359,580331.5766,817253.532,854725.4578,21
+48360,579545.9235,816926.3524,851311.5883,21
+48361,583824.6384,821940.2259,859356.4783,21
+48362,583798.8879,822619.0073,854808.3798,21
+48363,583731.0096,823567.6161,853469.1739,21
+48364,583229.0172,824106.4947,850154.6625,21
+48365,583274.8769,824199.7912,847087.3128,21
+48366,583022.3943,825882.1717,844367.3307,21
+48367,582582.5536,826094.3876,841601.1261,21
+48368,582553.7588,826769.144,838591.7821,21
+48369,582186.2456,826965.7878,835588.1207,21
+48370,582042.6545,827826.2638,832907.862,21
+48371,581769.8727,828926.7441,830009.7353,21
+48372,581575.2245,828706.6798,827322.1693,21
+48373,581554.5405,830119.9007,824081.4294,21
+48374,580903.2746,830461.3992,821330.334,21
+48375,580605.0482,831747.2731,818606.4274,21
+48376,580872.7355,832802.9829,815764.7325,21
+48377,580031.5836,833371.1101,812379.2652,21
+48378,580167.2575,833915.2486,809835.8868,21
+48379,579654.7788,836869.5007,806634.2247,21
+48380,579585.256,838062.1369,804140.4011,21
+48381,579056.1001,838462.2645,800746.2957,21
+48382,579000.1515,839280.9945,798631.1034,21
+48383,578394.7296,839357.7284,795022.7794,21
+48384,578587.1834,840620.0782,791987.4954,21
+48385,577809.9901,840961.2745,790125.6361,21
+48386,577955.7896,841842.2224,785986.3649,21
+48387,577518.7176,842958.1353,783508.967,21
+48388,576902.7063,843808.676,780903.3721,21
+48389,577051.2763,844131.6556,777391.2029,21
+48390,576598.6225,845383.2109,775282.2773,21
+48391,576310.883,845997.245,771620.4244,21
+48392,576411.8041,846320.2633,769501.9601,21
+48393,576054.2129,847571.7923,766498.5826,21
+48394,576204.8187,847369.0005,763452.1451,21
+48395,575970.6613,848689.6909,761187.5643,21
+48396,575840.8235,848279.6324,758475.4911,21
+48397,576133.7454,848966.7863,755196.1784,21
+48398,575749.6758,850093.84,752988.4527,21
+48399,575578.3015,850108.0233,750163.1006,21
+48400,575756.3961,850723.5557,747132.2147,21
+48401,575614.5592,851400.4713,745046.3709,21
+48402,575386.9637,851564.127,741263.7174,21
+48403,575414.0309,852645.2874,740036.9241,21
+48404,575691.1831,852420.3756,736045.3335,21
+48405,575537.013,853223.6603,734458.6029,21
+48406,575382.7628,855601.1106,730623.1458,21
+48407,575126.7345,855071.3853,728979.3638,21
+48408,575455.3092,855882.1336,725988.2852,21
+48409,575026.3349,855868.5336,723245.0098,21
+48410,575303.2753,857328.9133,720607.2705,21
+48411,575188.715,856869.0639,717684.6954,21
+48412,575018.8838,857359.585,715945.6686,21
+48413,575273.7452,857482.1849,712418.7446,21
+48414,574983.1412,857489.0584,710135.9719,21
+48415,575488.292,857554.0436,707642.441,21
+48416,574954.1291,858736.4457,704976.8607,21
+48417,574968.3082,858911.789,702745.02,21
+48418,575290.9796,859087.5855,699317.928,21
+48419,574914.2133,860532.5308,697881.1882,21
+48420,574939.1287,858392.6862,694704.9297,21
+48421,570889.9305,855124.5683,682803.3646,21
+48422,571235.451,855808.9941,681244.8736,21
+48423,571977.245,857069.29,679518.0221,21
+48424,572286.7863,857943.0965,678007.8009,21
+48425,573160.3528,859164.4971,675948.8898,21
+48426,573335.2709,859542.9684,675068.746,21
+48427,574437.617,861465.0116,672273.5077,21
+48428,574286.4901,862106.0018,671688.6711,21
+48429,575160.5573,863028.217,669726.7335,21
+48430,575453.1666,864406.0199,668211.3391,21
+48431,576588.8051,865220.0254,666248.7663,21
+48432,576674.1934,867246.5227,665083.7083,21
+48433,577498.3428,867117.5602,663485.7693,21
+48434,577694.8652,868661.3413,662132.4846,21
+48435,578911.3683,870077.2867,661593.1475,21
+48436,579123.1243,870606.1194,660522.9932,21
+48437,579517.3026,872163.0823,659937.3498,21
+48438,580354.4952,872701.0539,658852.035,21
+48439,580938.2308,874672.2026,658345.6868,21
+48440,580924.2717,875125.3892,657337.098,21
+48441,582387.767,876289.9396,656250.3775,21
+48442,582368.8915,877637.2773,656132.8725,21
+48443,583258.1222,877368.6966,654699.6546,21
+48444,583579.2649,877829.0029,654376.6336,21
+48445,584815.9735,880225.2277,653093.5451,21
+48446,584649.7278,880222.614,652733.9671,21
+48447,585706.4101,881356.3989,651389.4198,21
+48448,586006.6535,882982.3278,651428.2537,21
+48449,586802.6861,883302.5237,649952.3414,21
+48450,587035.937,885609.6515,649780.7211,21
+48451,588335.9834,885750.315,649023.8614,21
+48452,588432.3545,887209.1735,648784.5404,21
+48453,589671.8858,888124.9176,647956.712,21
+48454,589744.6034,889650.7703,647871.2192,21
+48455,591282.2345,889952.5638,646968.0541,21
+48456,591579.682,892014.1094,646857.0807,21
+48457,592073.5502,892248.9573,646301.1041,21
+48458,592985.6042,894438.779,645846.3009,21
+48459,593783.3775,894557.0004,645361.1626,21
+48460,594474.565,896024.1824,645022.1379,21
+48461,595069.3373,896465.9614,644672.9269,21
+48462,596184.824,898515.5785,643702.2605,21
+48463,596429.7006,899423.0747,644289.7428,21
+48464,597633.82,901133.4408,642849.7287,21
+48465,598355.4316,901639.3242,642707.0766,21
+48466,598879.0962,903499.0804,642772.5447,21
+48467,599834.2676,904052.4809,641751.5931,21
+48468,600651.5898,905099.0966,641790.7935,21
+48469,601229.5465,906800.1441,640707.0071,21
+48470,602213.0164,907216.1243,640761.2961,21
+48471,602441.0925,909135.9903,639972.3638,21
+48472,603942.3353,909794.0685,639691.3699,21
+48473,604270.9668,910878.3397,639117.3971,21
+48474,605238.8491,911749.2832,639011.019,21
+48475,606269.9977,913114.4932,638191.7915,21
+48476,606855.3745,913995.1199,638447.5663,21
+48477,607438.7118,915649.7175,637265.2717,21
+48478,608299.513,916371.6592,637586.4306,21
+48479,609362.7387,917102.1335,636510.4553,21
+48480,610006.4504,918651.3741,636709.925,21
+48481,610315.4565,917654.6757,638471.4874,21
+48482,611158.274,915827.3916,639366.8523,21
+48483,611913.6752,914758.6041,641969.7706,21
+48484,612563.1468,914329.132,642746.1732,21
+48485,613322.9993,912385.3545,644834.5225,21
+48486,613552.5102,911041.6411,646261.3957,21
+48487,614139.479,910300.8517,647938.6898,21
+48488,615004.2538,908995.919,649737.5198,21
+48489,615162.8374,907231.3444,650739.4551,21
+48490,616495.4683,906620.778,653195.9132,21
+48491,616407.9284,905528.1194,654559.4953,21
+48492,617477.1214,903703.3121,655984.6372,21
+48493,617872.2307,903011.4983,657496.6349,21
+48494,618739.4097,901670.9607,659670.8122,21
+48495,619417.8597,900484.8823,660979.114,21
+48496,619745.0208,899255.3657,662584.9593,21
+48497,620434.0684,898026.2629,664715.6945,21
+48498,621352.0175,896996.7206,665516.4796,21
+48499,621527.5354,895892.1055,668072.8457,21
+48500,622242.8782,894019.3092,674422.9126,21
+48501,623238.547,893710.8012,676364.5021,21
+48502,623518.4793,891928.7535,678586.2613,21
+48503,624193.5092,890946.8687,679617.8274,21
+48504,625005.6958,889225.4946,681966.6928,21
+48505,625655.3288,888773.1263,682791.8403,21
+48506,626326.3516,887351.3593,685395.0472,21
+48507,626603.7877,886213.8315,686406.4675,21
+48508,627722.3108,884751.9924,688493.7419,21
+48509,628029.5554,884235.3344,690066.9581,21
+48510,628647.0075,882176.4405,691749.5647,21
+48511,629453.8638,881530.4311,693432.5658,21
+48512,629634.4746,879385.1743,696160.4996,21
+48513,630341.6026,878815.3722,697179.8954,21
+48514,630698.495,877664.1995,699318.5738,21
+48515,631614.7379,876027.1983,700395.9701,21
+48516,631524.9001,874081.7969,700801.466,21
+48517,632128.3635,873338.8715,701639.1942,21
+48518,632689.2119,871769.1029,703017.4433,21
+48519,633234.7844,870193.2512,703106.9439,21
+48520,633256.2082,868988.7417,704166.1929,21
+48521,634221.8523,867756.0444,704865.6448,21
+48522,634625.3747,865931.4362,706207.8465,21
+48523,634513.9917,864917.0854,706288.7504,21
+48524,635554.9935,863436.9126,707249.7691,21
+48525,636253.9774,862157.0767,707839.9625,21
+48526,635778.001,860364.4819,709022.7355,21
+48527,637099.8687,859641.7954,709038.7096,21
+48528,637111.5427,857583.5916,1205685.613,21
+48529,637138.5482,856433.4054,695619.4641,21
+48530,638279.272,854869.9176,842427.3477,21
+48531,638475.8213,853708.594,693459.1319,21
+48532,638852.1646,852235.2,694959.4821,21
+48533,638992.9768,850678.8476,695700.1756,21
+48534,639961.29,849554.8307,697301.9166,21
+48535,640180.4919,847824.7464,698289.6875,21
+48536,640756.2558,846711.0751,699213.7235,21
+48537,640870.884,845003.5668,701178.9028,21
+48538,641814.6002,843894.485,1172796.776,21
+48539,641164.2121,841744.3702,688608.7611,21
+48540,642697.2821,840973.7672,823415.8784,21
+48541,698616.3178,910986.521,924388.8322,21
+48542,701289.7795,914467.5638,746601.9499,21
+48543,702196.2225,916811.3252,872632.9769,21
+48544,703159.3746,918432.4583,752100.8488,21
+48545,703763.1814,919827.1708,757308.1139,21
+48546,707081.2227,922013.5055,762015.4161,21
+48547,716802.6166,923853.6444,767089.2722,21
+48548,711345.2615,925594.116,772281.7118,21
+48549,714187.3426,927242.8775,777203.8944,21
+48550,715386.9006,928863.9828,782242.3316,21
+48551,716171.0722,930720.8827,1690093.159,21
+48552,716934.4792,932473.2787,821877.7818,21
+48553,717988.078,933885.2373,1251930.106,21
+48554,719051.5032,936022.7207,782486.2537,21
+48555,719566.1214,938059.3619,853893.5052,21
+48556,720195.5762,938803.4228,790843.0988,21
+48557,721112.115,940600.4455,1022395.917,21
+48558,722399.8152,942150.9276,792571.5182,21
+48559,722331.3781,943759.5098,873913.7657,21
+48560,723807.5369,945382.034,801709.533,21
+48561,724178.4926,946931.9796,806435.8036,21
+48562,724863.775,948088.8281,812521.0395,21
+48563,725906.5173,949897.8315,817095.2097,21
+48564,727994.6757,951342.2933,822993.8734,21
+48565,729002.287,952553.8208,830120.4366,21
+48566,729725.7632,954385.5262,832833.8167,21
+48567,729998.5313,955747.6721,837548.6769,21
+48568,731350.4865,956600.8924,842135.6817,21
+48569,731061.8308,958507.6592,1734163.571,21
+48570,732497.7956,959904.1825,882108.9078,21
+48571,732853.562,960644.3383,1295105.058,21
+48572,733214.9065,961936.4933,841752.0891,21
+48573,734216.1102,963269.3815,875655.5224,21
+48574,734295.5014,964508.535,851377.4726,21
+48575,735449.7833,965728.3105,1074637.008,21
+48576,735184.9318,966986.7741,852928.8452,21
+48577,736258.7784,968301.9046,896492.9441,21
+48578,736729.4515,970081.5479,862360.4283,21
+48579,736931.0037,970857.9486,866658.3644,21
+48580,737851.6437,972154.1146,873124.7642,21
+48581,737937.6442,973718.8667,877881.9082,21
+48582,738667.9417,974449.6776,882463.9021,21
+48583,739055.7752,976587.4554,891048.5031,21
+48584,739700.561,977159.6324,893013.9828,21
+48585,739950.3718,978399.4042,897848.7953,21
+48586,740233.2885,980222.9379,903232.3392,21
+48587,741051.2451,981595.3723,1782763.762,21
+48588,741021.157,982183.1242,942985.2835,21
+48589,741939.8066,983720.1952,1343042.347,21
+48590,742150.2777,985091.7719,901791.8513,21
+48591,742298.8967,985594.7027,907147.8573,21
+48592,743196.7701,987318.5527,913204.6891,21
+48593,743242.7236,988441.3731,1131696.566,21
+48594,743856.469,989899.8648,913252.6043,21
+48595,743844.0115,990951.3252,923535.1665,21
+48596,744919.8886,991954.8859,925372.7009,21
+48597,744515.8151,993052.8686,930692.469,21
+48598,745607.1768,995022.3786,937065.6706,21
+48599,745107.5217,995993.0107,943235.9628,21
+48600,746499.3076,996975.4999,948183.3919,21
+48601,767932.638,1021446.495,977774.7809,21
+48602,770554.1115,1025677.051,976975.531,21
+48603,771937.9398,1028678.901,979626.5698,21
+48604,772906.0298,1031730.732,1074854.148,21
+48605,773083.4975,1034597.539,1123214.129,21
+48606,775257.7979,1037514.08,1009713.922,21
+48607,775154.3429,1056978.19,1019140.444,21
+48608,777031.7082,1076289.037,1024688.258,21
+48609,777176.9877,1068394.647,1029419.069,21
+48610,778887.3444,1075032.254,1034974.418,21
+48611,779376.8491,1080538.657,1039451.475,21
+48612,784413.3823,1083985.707,1044353.552,21
+48613,806362.0042,1088121.206,1048336.523,21
+48614,795246.3642,1091425.666,1052688.071,21
+48615,800888.1414,1095195.419,1925368.032,21
+48616,802924.3361,1099597.25,1095676.553,21
+48617,803834.7701,1101693.686,1483478.516,21
+48618,807139.6873,1106996.984,1053044.87,21
+48619,807988.4944,1109895.03,1062899.9,21
+48620,810377.3674,1113243.989,1064864.827,21
+48621,811984.0631,1116688.735,1283466.776,21
+48622,812403.0948,1120461.098,1065919.281,21
+48623,815660.2249,1124705.548,1073165.353,21
+48624,815635.1778,1126527.13,1078469.284,21
+48625,817879.9953,1131131.254,1084875.954,21
+48626,819309.9594,1134009.803,1089552.723,21
+48627,820775.2595,1138489.357,1095812.973,21
+48628,822787.3457,1139433.946,1100505.118,21
+48629,823450.2301,1145840.584,1108793.104,21
+48630,825698.5703,1146924.541,1110321.514,21
+48631,827583.8125,1152438.48,1116386.447,21
+48632,827527.9599,1153503.59,1120470.62,21
+48633,829486.9286,1159129.948,1990563.955,21
+48634,831231.6096,1159881.54,1160268.837,21
+48635,831194.9254,1165200.053,1549769.644,21
+48636,834632.9961,1167188.665,1114055.1,21
+48637,834912.909,1171536.827,1120246.183,21
+48638,835644.6153,1173241.433,1125516.338,21
+48639,836917.6829,1177536.112,1340615.004,21
+48640,839530.7925,1179635.695,1124761.758,21
+48641,840746.5913,1183508.168,1128169.329,21
+48642,840017.1231,1186942.198,1135626.9,21
+48643,843612.5513,1188324.319,1140324.964,21
+48644,843046.5048,1193101.131,1145750.028,21
+48645,844692.2711,1195057.762,1150084.144,21
+48646,846953.752,1199516.684,1155384.855,21
+48647,846969.9305,1201358.06,1162216.899,21
+48648,848118.4201,1204234.288,1164269.928,21
+48649,850465.6441,1207978.943,1169414.712,21
+48650,850745.6456,1210245.906,1173081.67,21
+48651,851146.4174,1214119.219,2042779.509,21
+48652,854188.2062,1216203.299,1211409.052,21
+48653,853518.2031,1218763.767,1598889.896,21
+48654,855430.6629,1222798.934,1163773.793,21
+48655,856951.5406,1224176.945,1168894.902,21
+48656,856644.6712,1227933.188,1174465.169,21
+48657,859506.25,1230747.571,1388238.039,21
+48658,858458.6137,1232740.787,1171545.547,21
+48659,861765.4273,1235662.591,1176056.464,21
+48660,861216.4481,1238375.497,1181578.095,21
+48661,863899.7762,1237384.524,1187300.631,21
+48662,864017.5962,1240830.726,1193691.879,21
+48663,866999.8844,1240226.285,1199334.174,21
+48664,866985.8849,1240007.603,1205307.788,21
+48665,868080.6087,1242026.978,1211731.823,21
+48666,870883.6449,1241654.402,1217153.268,21
+48667,869708.9281,1243817.988,1220184.224,21
+48668,872684.555,1242896.891,1226230.252,21
+48669,873241.2205,1243875.654,2094420.91,21
+48670,873710.0708,1244306.58,1267622.894,21
+48671,875778.1826,1245660.393,1649268.228,21
+48672,877444.7799,1245471.372,1219058.167,21
+48673,877028.7083,1245461.427,1225050.379,21
+48674,878727.5559,1248703.695,1230896.821,21
+48675,880857.5769,1245643.029,1446120.38,21
+48676,881158.5696,1249387.641,1227866.931,21
+48677,882227.7149,1247678.935,1235500.968,21
+48678,883773.2492,1249596.993,1241559.507,21
+48679,883445.2745,1249805.368,1246714.178,21
+48680,886429.3436,1250052.53,1252952.087,21
+48681,886850.4277,1251079.272,1257644.275,21
+48682,887623.2744,1250366.578,1264031.098,21
+48683,888470.5772,1252480.277,1273273.648,21
+48684,891431.6531,1251754.46,1273268.189,21
+48685,889766.4456,1254213.184,1278363.493,21
+48686,892463.7649,1251659.02,1363606.919,21
+48687,893626.8591,1255106.164,1650951.261,21
+48688,894077.4285,1253973.665,1263309.944,21
+48689,895677.2653,1254941.253,1268317.174,21
+48690,896255.2293,1255804.613,1275094.031,21
+48691,897785.093,1255772.331,1506531.878,21
+48692,897403.349,1255891.99,1271792.276,21
+48693,900679.4942,1257173.165,1277142.613,21
+48694,900048.6282,1257565.112,1283980.783,21
+48695,901269.6218,1258055.042,1289838.207,21
+48696,902757.0918,1257795.921,1294559.539,21
+48697,904433.6882,1259470.733,1301304.506,21
+48698,904225.0606,1259092.472,1306572.509,21
+48699,905549.48,1260045.977,1310323.438,21
+48700,906687.1372,1260256.021,1317621.495,21
+48701,907716.7198,1259768.361,2171032.351,21
+48702,909051.2112,1262413.799,1357347.499,21
+48703,909527.2338,1260670.884,1724042.972,21
+48704,910112.8428,1262398.078,1307551.871,21
+48705,912862.1584,1262384.637,1312756.204,21
+48706,911776.2859,1262981.696,1319356.316,21
+48707,914533.3848,1263463.981,1528407.232,21
+48708,914900.7218,1264159.869,1316130.244,21
+48709,914649.5999,1263170.486,1321980.657,21
+48710,917071.2092,1265630.95,1328351.909,21
+48711,917229.7125,1264482.409,1334095.129,21
+48712,918493.7445,1265880.476,1339249.39,21
+48713,919043.9899,1265963.741,1345055.249,21
+48714,921290.9224,1267224.95,1349481.615,21
+48715,920571.0711,1266062.506,1357062.957,21
+48716,923341.163,1267383.778,1455311.51,21
+48717,923375.7726,1268112.184,1357015.325,21
+48718,923383.596,1267753.364,1361678.127,21
+48719,925656.4535,1268070.932,1367731.2,21
+48720,926929.5666,1269200.939,1374481.375,21
+48721,933410.2967,1275779.403,1395905.972,21
+48722,935947.3237,1277034.747,1401952.965,21
+48723,936863.9395,1275022.414,1406298.617,21
+48724,936710.9068,1276118.914,1411081.386,21
+48725,936176.7445,1274102.102,2264798.924,21
+48726,937872.4791,1273948.777,1452977.944,21
+48727,938218.0745,1273449.509,1810650.553,21
+48728,937077.0272,1272251.026,1400347.528,21
+48729,939409.3977,1272322.464,1404926.75,21
+48730,937262.5358,1270676.641,1410617.584,21
+48731,939085.2653,1271244.592,1621235.388,21
+48732,937892.5364,1269675.088,1405820.108,21
+48733,939648.2797,1267866.808,1414537.132,21
+48734,938997.6448,1268545.045,1418728.995,21
+48735,938655.5929,1266468.474,1425104.237,21
+48736,941140.2633,1266241.115,1430227.788,21
+48737,938400.8721,1265300.205,1436668.108,21
+48738,940653.8508,1264697.446,1440190.031,21
+48739,939880.706,1263725.642,1449032.86,21
+48740,939774.1901,1261890.621,1543248.157,21
+48741,940950.4731,1262849.684,1446716.23,21
+48742,939503.587,1260355.352,1453769.411,21
+48743,941243.4358,1260234.312,1698010.566,21
+48744,941150.5752,1259655.807,1442949.184,21
+48745,939651.0555,1259120.508,1448289.613,21
+48746,941744.8703,1258115.506,1455347.522,21
+48747,940144.7123,1255393.033,1635090.495,21
+48748,941640.4006,1256018.679,1451507.157,21
+48749,941162.5312,1254709.909,1456621.298,21
+48750,941381.2306,1253788.8,1461928.471,21
+48751,940799.2923,1253435.191,1642159.611,21
+48752,942017.8248,1250856.142,1458248.372,21
+48753,941218.5072,1251869.445,1466080.986,21
+48754,941339.6908,1249685.208,1470264.796,21
+48755,940867.7257,1249184.231,1648506.396,21
+48756,942377.7137,1248038.731,1468230.378,21
+48757,942100.4054,1247315.37,1474859.604,21
+48758,940371.9302,1247558.573,1478977.883,21
+48759,943380.7952,1244332.454,1656996.571,21
+48760,940848.9393,1245180.425,1475933.09,21
+48761,942280.6743,1242832.951,1483657.766,21
+48762,941577.2301,1242365.919,1487632.029,21
+48763,942697.4031,1241019.712,1664450.712,21
+48764,941063.4099,1240689.214,1486920.472,21
+48765,942298.6017,1239089.507,1488724.248,21
+48766,941500.0331,1238950.881,1498444.042,21
+48767,942499.6145,1236750.521,1672056.672,21
+48768,941414.1437,1236463.071,1493574.849,21
+48769,942783.2198,1235470.869,1498724.299,21
+48770,941112.3562,1234292.281,1505049.87,21
+48771,942000.2058,1233447.242,1681761.158,21
+48772,942659.5023,1233809.677,1502507.446,21
+48773,941441.1081,1230222.176,1505719.735,21
+48774,941958.0627,1230097.76,1514880.282,21
+48775,941998.6834,1229435.313,1687705.539,21
+48776,942055.3306,1229126.491,1510939.956,21
+48777,941684.6774,1225453.986,1516166.742,21
+48778,941890.3931,1227537.752,1520631.085,21
+48779,941679.0622,1224605.073,1697362.116,21
+48780,942145.8218,1223936.929,1518534.398,21
+48781,943274.0696,1225781.368,1523132.869,21
+48782,945539.4755,1228177.505,1533054.139,21
+48783,945403.6803,1231294.931,1708218.062,21
+48784,948096.4889,1231315.677,1528645.9,21
+48785,949450.8648,1234136.617,1536363.509,21
+48786,949716.3975,1234481.449,1542586.901,21
+48787,951189.6035,1237495.541,1718211.316,21
+48788,951694.6598,1237715.713,1538363.087,21
+48789,953867.9471,1240028.135,1547302.394,21
+48790,954701.4276,1240925.711,1549474.545,21
+48791,956410.5144,1243669.458,1728829.393,21
+48792,957076.5028,1244732.984,1548073.563,21
+48793,958180.5324,1246543.845,1557127.845,21
+48794,959299.7604,1248421.049,1559433.549,21
+48795,960747.8524,1249020.543,1739391.621,21
+48796,962260.2529,1251933.459,1557375.146,21
+48797,962794.6696,1252353.725,1565517.776,21
+48798,963646.505,1254473.546,1570734.65,21
+48799,966152.65,1256435.901,1745765.282,21
+48800,965627.8921,1257442.032,1568209.337,21
+48801,968651.7426,1259864.155,1574574.307,21
+48802,968504.0228,1261394.586,1580520.068,21
+48803,969677.75,1261747.091,1755830.99,21
+48804,971482.3401,1265149.13,1576117.103,21
+48805,972553.9611,1265705.938,1585934.921,21
+48806,973699.123,1267424.183,1587617.982,21
+48807,974007.4856,1269261.534,1765196.775,21
+48808,976819.355,1270403.544,1586793.615,21
+48809,976852.5796,1273250.546,1593187.627,21
+48810,977639.2917,1272680.043,1597994.228,21
+48811,979848.028,1276426.211,1773863.491,21
+48812,980341.8314,1277714.601,1596185.945,21
+48813,982080.4045,1277258.445,1601196.193,21
+48814,982876.0263,1281723.423,1607499.201,21
+48815,983967.6481,1281806.22,1783755.665,21
+48816,985183.0325,1283926.157,1604024.838,21
+48817,986670.7573,1285560.231,1611567.29,21
+48818,986529.6446,1286211.623,1615533.698,21
+48819,990371.1951,1289227.416,1792421.957,21
+48820,988323.2139,1289708.28,1613446.641,21
+48821,992063.4106,1291624.27,1619958.597,21
+48822,991088.9222,1293947.086,1625367.441,21
+48823,994817.5245,1294695.841,1800100.542,21
+48824,993187.0144,1296327.87,1622638.047,21
+48825,996408.615,1297862.243,1627618.096,21
+48826,996817.6646,1300434.26,1635652.511,21
+48827,997319.1517,1300671.797,1808533.062,21
+48828,1000020.248,1303507.189,1630602.156,21
+48829,999210.0542,1304717.374,1638366.544,21
+48830,1002251.601,1305634.544,1642678.761,21
+48831,1002200.203,1308662.235,1817494.672,21
+48832,1003667.617,1308808.012,1639872.713,21
+48833,1004867.792,1311544.088,1646713.346,21
+48834,1006138.776,1312125.486,1650791.604,21
+48835,1006395.859,1314556.018,1826497.261,21
+48836,1008624.146,1315081.217,1647919.205,21
+48837,1009613.636,1317897.815,1654915.634,21
+48838,1011240.881,1318673.791,1661328.326,21
+48839,1010425.976,1321430.32,1834140.63,21
+48840,1013820.678,1320866.3,1656108.057,15.6
+48841,0,0,0,15.6
+48842,0,0,0,15.6
+48843,0,0,0,15.6
+48844,0,68.70244926,0,15.6
+48845,0,0,0,15.6
+48846,0,0,0,15.6
+48847,0,0,0,15.6
+48848,0,81.62163623,0,15.6
+48849,0,0,0,15.6
+48850,0,0,1243592.104,15.6
+48851,0,0,0,15.6
+48852,0,0,0,15.6
+48853,0,64.31359048,0,15.6
+48854,0,0,0,15.6
+48855,0,0,0,15.6
+48856,0,0,0,15.6
+48857,339493.5391,0,0,15.6
+48858,0,0,0,15.6
+48859,0,0,0,15.6
+48860,0,0,0,15.6
+48861,0,0,0,15.6
+48862,0,0,0,15.6
+48863,0,279.6493506,0,15.6
+48864,0,0,0,15.6
+48865,0,0,0,15.6
+48866,0,0,0,15.6
+48867,0,0,0,15.6
+48868,0,0,0,15.6
+48869,0,0,0,15.6
+48870,0,0,0,15.6
+48871,0,0,0,15.6
+48872,0,0,0,15.6
+48873,0,254.3243679,0,15.6
+48874,0,0,0,15.6
+48875,0,0,0,15.6
+48876,0,0,0,15.6
+48877,0,0,0,15.6
+48878,0,0,0,15.6
+48879,0,0,0,15.6
+48880,0,0,0,15.6
+48881,0,0,0,15.6
+48882,0,0,184848.5426,15.6
+48883,0,0,232649.9827,15.6
+48884,0,0,72689.77405,15.6
+48885,0,0,339993.5431,15.6
+48886,0,0,178606.8591,15.6
+48887,0,0,220466.2381,15.6
+48888,0,0,71357.60636,15.6
+48889,0,0,320411.1435,15.6
+48890,0,0,1119203.415,15.6
+48891,0,0,202747.4792,15.6
+48892,0,0,68950.32144,15.6
+48893,0,0,292110.6958,15.6
+48894,0,0,157072.452,15.6
+48895,0,0,193275.6632,15.6
+48896,339478.3422,0,67876.66402,15.6
+48897,0,0,276647.4368,15.6
+48898,0,0,150165.0819,15.6
+48899,0,0,184520.0246,15.6
+48900,0,0,66798.14536,15.6
+48901,0,445.2845865,262530.2472,15.6
+48902,0,0,143933.17,15.6
+48903,33593.16846,0,176673.0563,15.6
+48904,1983.2558,0,65984.65253,15.6
+48905,4498.546854,0,249696.8967,15.6
+48906,11759.5576,0,138358.5436,15.6
+48907,10435.6185,0,169528.2602,15.6
+48908,9487.863969,0,65208.27278,15.6
+48909,9995.659393,0,237991.5541,15.6
+48910,10146.82574,0,133197.5628,15.6
+48911,10210.01548,0,0,15.6
+48912,10341.64594,0,0,15.6
+48913,10436.13717,0,0,15.6
+48914,10508.18814,0,0,15.6
+48915,10638.7991,0,0,15.6
+48916,10710.31659,0,0,15.6
+48917,10800.00533,0,0,15.6
+48918,10914.03693,0,0,15.6
+48919,10972.63441,0,0,15.6
+48920,11077.21305,0,0,15.6
+48921,11171.26502,0,0,15.6
+48922,11263.08377,0,0,15.6
+48923,11315.88923,0,0,15.6
+48924,11397.37721,0,0,15.6
+48925,11503.62033,0,0,15.6
+48926,11584.57635,0,0,15.6
+48927,11639.91026,0,0,15.6
+48928,11735.4486,0,0,15.6
+48929,11815.71307,0,0,15.6
+48930,11888.81773,0,0,15.6
+48931,11991.71176,0,865853.7988,15.6
+48932,12011.71591,0,0,15.6
+48933,0,0,0,15.6
+48934,0,0,0,15.6
+48935,339472.8143,0,0,15.6
+48936,0,0,0,15.6
+48937,0,0,0,15.6
+48938,51889.15563,0,0,15.6
+48939,0,0,0,15.6
+48940,3567.271649,0,0,15.6
+48941,19095.91417,0,0,15.6
+48942,12083.75874,0,0,15.6
+48943,12617.53225,0,0,15.6
+48944,12994.15273,0,0,15.6
+48945,13006.99389,0,0,15.6
+48946,13062.68327,0,0,15.6
+48947,13161.53354,0,0,15.6
+48948,13156.21782,0,0,15.6
+48949,13263.05529,2.427810959,0,15.6
+48950,13295.84858,0,0,15.6
+48951,13353.03628,0,0,15.6
+48952,13431.81821,63.75792446,0,15.6
+48953,13448.53122,0,0,15.6
+48954,13532.36252,0,0,15.6
+48955,13535.13514,0,0,15.6
+48956,13632.54878,0,0,15.6
+48957,13653.4873,0,301454.7795,15.6
+48958,13732.37942,0,155782.9159,15.6
+48959,13759.89498,0,192283.1403,15.6
+48960,13806.0743,0,105149.7623,15.6
+48961,14583.67364,0,287853.1548,15.6
+48962,14731.38077,0,198960.6813,15.6
+48963,14866.63377,435787.2738,260022.8065,15.6
+48964,14960.80427,0,171389.4334,15.6
+48965,15098.7041,0,285038.4924,15.6
+48966,15200.10672,0,197347.3996,15.6
+48967,15331.83446,0,258068.8194,15.6
+48968,0,0,171203.5464,15.6
+48969,0,0,282445.1172,15.6
+48970,0,0,196404.949,15.6
+48971,0,0,256685.5514,15.6
+48972,65423.49635,0,171862.9992,15.6
+48973,0,0,991610.9113,15.6
+48974,345967.5246,0,195790.4125,15.6
+48975,24484.82456,0,255310.3847,15.6
+48976,14813.40249,0,171900.9973,15.6
+48977,16450.50046,0,278687.6066,15.6
+48978,16629.60514,0,196020.6399,15.6
+48979,16705.15603,0,254989.0504,15.6
+48980,16794.46887,0,172521.8998,15.6
+48981,16954.71339,0,278061.2967,15.6
+48982,17016.60782,0,196337.0397,15.6
+48983,17135.46617,0,254841.7951,15.6
+48984,17229.80189,0,173153.6487,15.6
+48985,17343.63963,0,277680.7149,15.6
+48986,17455.34676,0,196723.7547,15.6
+48987,17524.93258,435733.8602,147565.7121,15.6
+48988,17678.12924,0,66376.64924,15.6
+48989,17721.15489,0,197095.0491,15.6
+48990,17875.90369,37554.22733,0,15.6
+48991,17910.02845,2521.225242,0,15.6
+48992,18092.19761,6766.608249,164541.6832,15.6
+48993,18106.02693,14817.16774,217442.3391,15.6
+48994,18261.63798,12605.03113,148351.0843,15.6
+48995,18345.96391,12215.54664,187383.6235,15.6
+48996,18424.07704,12765.32862,106813.7202,15.6
+48997,18561.06716,13004.21759,223959.979,15.6
+48998,18616.57581,13285.68632,148638.4085,15.6
+48999,18741.19055,13442.65242,179942.862,15.6
+49000,18827.06939,13706.45293,106322.1229,15.6
+49001,18917.01217,13897.81397,219388.0578,15.6
+49002,0,14171.36119,146706.155,15.6
+49003,0,14318.6346,177215.6062,15.6
+49004,0,14617.29275,105915.8199,15.6
+49005,71956.80749,14739.38673,215722.4869,15.6
+49006,2188.054355,15052.8979,145276.88,15.6
+49007,11713.31106,15202.6681,174947.8054,15.6
+49008,26693.25504,15423.67849,105812.7273,15.6
+49009,18433.20514,15660.04668,212626.2165,15.6
+49010,19810.0743,15831.49511,144147.256,15.6
+49011,19913.28682,451755.6163,173164.4635,15.6
+49012,20002.6831,16270.65261,105784.4946,15.6
+49013,20091.97456,16481.4852,209993.8092,15.6
+49014,359660.4565,16666.69582,143331.2813,15.6
+49015,20304.28648,16892.95453,171666.0064,15.6
+49016,20364.84724,17095.68603,737258.9813,15.6
+49017,20422.66145,17319.26703,209731.8166,15.6
+49018,20562.17188,17482.53072,143704.5561,15.6
+49019,20651.98001,17703.69762,171692.2946,15.6
+49020,20702.01345,0,106419.0453,15.6
+49021,20828.62238,0,207644.5377,15.6
+49022,459546.2696,0,0,15.6
+49023,21005.0724,0,0,15.6
+49024,21036.23092,71289.47654,0,15.6
+49025,21125.62591,0,274650.0039,15.6
+49026,21229.46417,6223.617895,127690.6138,15.6
+49027,21270.07941,26799.6911,162793.1021,15.6
+49028,21387.18876,15489.68345,112783.8687,15.6
+49029,21454.77232,17198.70017,203259.2881,15.6
+49030,21499.49144,17170.31362,141648.1663,15.6
+49031,21644.74534,17053.79817,167708.476,15.6
+49032,21667.1008,16993.30944,105700.2594,15.6
+49033,21811.5013,16870.68247,202001.2679,15.6
+49034,21796.84531,16815.5967,140630.4876,15.6
+49035,0,16697.43934,166447.7111,15.6
+49036,0,16648.97619,105433.4113,15.6
+49037,0,16532.92476,200360.5242,15.6
+49038,78158.83637,16438.72937,139937.1494,15.6
+49039,9046.788032,16370.58643,165453.8599,15.6
+49040,287968.2251,16232.23147,105223.4887,15.6
+49041,49443.64699,16191.79466,199077.7412,15.6
+49042,57496.31544,16039.87328,139338.5825,15.6
+49043,114517.4747,15997.25169,164653.3266,15.6
+49044,112329.8217,15882.32272,105100.2764,15.6
+49045,99636.2677,15767.2018,197923.0872,15.6
+49046,105023.132,15710.04221,138907.9359,15.6
+49047,106077.8299,15581.70773,163919.5027,15.6
+49048,106744.2876,15451.99301,105078.6646,15.6
+49049,107739.9716,15448.2352,196904.153,15.6
+49050,108482.5362,15228.98178,138749.1219,15.6
+49051,109243.2658,15249.37859,163464.5746,15.6
+49052,110328.6606,15082.48635,105161.5999,15.6
+49053,111297.9957,14958.68041,196282.9442,15.6
+49054,451270.0674,0,138416.6365,15.6
+49055,112929.5607,0,0,15.6
+49056,113857.3453,0,0,15.6
+49057,114671.712,0,0,15.6
+49058,115615.2063,0,213912.7982,15.6
+49059,116346.3199,61068.23269,750136.074,15.6
+49060,117461.356,0,96615.4496,15.6
+49061,118316.3627,3459.216349,209228.092,15.6
+49062,119010.1502,20429.94658,140042.3661,15.6
+49063,120164.2683,13888.99195,165733.9428,15.6
+49064,120911.5772,13421.87993,106609.2396,15.6
+49065,121799.8533,13806.73861,199007.6695,15.6
+49066,122778.3527,13659.43109,140472.387,15.6
+49067,123618.4756,13579.03779,164921.7499,15.6
+49068,99795.42113,13485.31848,106380.9219,15.6
+49069,101039.4057,13399.39541,197952.5038,15.6
+49070,0,13205.15651,139926.0127,15.6
+49071,82383.10481,13150.779,164383.209,15.6
+49072,19054.63015,13018.36168,106191.4268,15.6
+49073,11075.87376,12886.00728,197131.8984,15.6
+49074,32917.30022,12736.53112,139643.7529,15.6
+49075,24387.77677,12600.98743,163846.2682,15.6
+49076,25150.33938,12500.49609,106152.1227,15.6
+49077,504201.9815,12335.39819,196463.0664,15.6
+49078,25339.80414,12193.64678,139400.108,15.6
+49079,51450.02417,12051.86751,163437.2993,15.6
+49080,182930.4153,11761.23834,106123.2802,15.6
+49081,138316.8242,12213.10071,196047.0194,15.6
+49082,133808.5389,12463.6241,139494.2333,15.6
+49083,139070.5596,12742.21556,163672.7684,15.6
+49084,139994.7804,12988.08725,106915.0792,15.6
+49085,141236.8183,13277.17252,196149.9663,15.6
+49086,142050.9893,13498.35723,139933.1464,15.6
+49087,143185.5217,13833.672,164294.8133,15.6
+49088,143956.9295,13991.21685,0,15.6
+49089,145282.1477,0,0,15.6
+49090,145846.2005,0,0,15.6
+49091,147432.9214,0,244770.8664,15.6
+49092,147979.8611,0,96139.07801,15.6
+49093,149224.6488,0,184579.3664,15.6
+49094,489607.3629,64128.0823,152615.7528,15.6
+49095,151284.9993,0,164556.9679,15.6
+49096,152296.9677,5357.801755,109815.2795,15.6
+49097,153078.6806,23737.24307,197648.9327,15.6
+49098,154524.9106,15873.92537,142118.2379,15.6
+49099,155035.1795,16568.32653,166656.8606,15.6
+49100,156388.515,17102.87943,110527.8176,15.6
+49101,129863.5578,17393.9756,197774.2795,15.6
+49102,130945.8553,17600.90931,142554.699,15.6
+49103,210029.2376,17851.29545,758159.8367,15.6
+49104,148705.8919,18128.38046,112383.3967,15.6
+49105,156001.6804,18315.40208,201934.4253,15.6
+49106,166363.0388,18614.17153,145091.3784,15.6
+49107,27762.27881,18830.2579,170790.8967,15.6
+49108,28174.03142,19070.21342,113164.8036,15.6
+49109,28281.00732,19293.99904,202105.5089,15.6
+49110,28318.08904,19563.79047,145509.2124,15.6
+49111,583831.562,19798.28991,171379.3332,15.6
+49112,28591.68823,20050.76591,114017.6118,15.6
+49113,91311.91917,20249.11522,202318.4293,15.6
+49114,240513.9212,20557.74697,146063.2568,15.6
+49115,158641.9371,20706.20374,172034.5943,15.6
+49116,173311.6513,21018.91586,114918.2472,15.6
+49117,174385.384,21235.25189,202615.9407,15.6
+49118,175855.2817,21459.96628,146644.1614,15.6
+49119,175982.6449,21740.67652,172800.2924,15.6
+49120,177637.9305,21920.90822,115771.1349,15.6
+49121,178182.1584,22226.3825,0,15.6
+49122,179370.0295,22462.59059,0,15.6
+49123,179941.691,22657.91739,0,15.6
+49124,181256.572,0,201744.859,15.6
+49125,181713.1439,0,198338.9515,15.6
+49126,183253.8136,0,138810.9884,15.6
+49127,183808.5617,85518.54252,185726.2333,15.6
+49128,185112.3026,5225.457421,118090.0057,15.6
+49129,185702.7061,13658.86449,206960.3111,15.6
+49130,186620.6883,33053.90893,150400.9193,15.6
+49131,188153.7003,23222.02715,177219.7218,15.6
+49132,188252.234,24849.10814,119511.5264,15.6
+49133,159629.5204,25166.47378,206872.0341,15.6
+49134,499103.7103,25396.26787,150694.5348,15.6
+49135,244161.558,25601.0517,177761.1056,15.6
+49136,187663.1525,25866.71463,120246.34,15.6
+49137,183968.2213,26135.93689,207189.1983,15.6
+49138,199498.7437,354356.9511,151167.6302,15.6
+49139,195364.0109,64845.86221,178521.708,15.6
+49140,196412.2112,84111.63659,1293294.054,15.6
+49141,31265.13543,171635.5393,910358.0047,15.6
+49142,31214.06253,133680.9767,936007.2956,15.6
+49143,31263.12168,133440.1479,1104425.382,15.6
+49144,31215.91125,134230.864,1069032.452,15.6
+49145,697361.2093,133278.9202,1057671.076,15.6
+49146,70842.36603,132318.427,1088397.349,15.6
+49147,92652.90764,131324.8657,1199362.735,15.6
+49148,277410.1501,130460.7787,1874680.215,15.6
+49149,184500.0548,129276.0496,1126186.057,15.6
+49150,197849.2236,128531.7033,1141949.584,15.6
+49151,197427.2159,127310.8284,1257152.793,15.6
+49152,197821.0024,126510.9985,1159957.735,15.6
+49153,197854.7408,125570.3271,1173344.827,15.6
+49154,197892.6469,124327.5462,1028853.4,15.6
+49155,197375.3162,123643.8903,1037059.34,15.6
+49156,198256.5577,122389.044,1044902.482,15.6
+49157,197749.2913,97269.68456,1327013.343,15.6
+49158,197946.032,96095.08888,1216692.745,15.6
+49159,197941.0918,95804.14415,1210474.602,15.6
+49160,198212.4938,183722.2915,1244154.445,15.6
+49161,197512.5287,100569.3611,1948930.17,15.6
+49162,198476.5342,102070.8464,1260169.506,15.6
+49163,198138.3429,126038.2048,1521671.795,15.6
+49164,198119.5557,112476.3913,1241172.477,15.6
+49165,167080.9096,113133.8108,1246481.724,15.6
+49166,167310.0685,112595.4201,1250520.923,15.6
+49167,250495.3481,110852.5011,1255162.925,15.6
+49168,195508.6607,22693.43473,1258934.522,15.6
+49169,187779.1943,22500.19079,1264277.705,15.6
+49170,203739.5816,22377.41479,224216.619,15.6
+49171,198310.0811,22183.67277,222227.7593,15.6
+49172,198599.0433,22010.41191,220621.6512,15.6
+49173,198473.4668,21902.60292,218996.8717,15.6
+49174,537875.6976,21633.92287,217574.5633,15.6
+49175,31050.35908,21602.13376,216034.4448,15.6
+49176,30988.3665,21316.5093,212243.721,15.6
+49177,31076.95455,21232.68373,263035.781,15.6
+49178,30974.02393,21014.65977,158834.1194,15.6
+49179,702364.2541,20875.23485,328049.6441,15.6
+49180,75861.46221,20671.10573,1696146.202,15.6
+49181,96491.38784,20569.49899,1120810.358,15.6
+49182,277224.8522,20307.74021,1126238.289,15.6
+49183,187233.7924,20222.36383,1226851.276,15.6
+49184,199450.3794,20009.13347,1227288.437,15.6
+49185,199918.3778,19817.72475,1219047.995,15.6
+49186,199212.774,19702.97989,1235733.252,15.6
+49187,199469.6607,19504.43512,1076457.848,15.6
+49188,199687.5626,19327.37023,1800153.301,15.6
+49189,199230.3364,19124.73659,1101019.405,15.6
+49190,199324.487,0,1660394.92,15.6
+49191,199368.0022,0,1251647.039,15.6
+49192,199099.061,0,1233887.54,15.6
+49193,199207.0516,0,2145856.145,15.6
+49194,199399.774,78644.83563,1244880.998,15.6
+49195,198918.1936,33.9172462,1251130.995,15.6
+49196,199351.7916,5551.352178,1255997.383,15.6
+49197,168234.5331,27165.15003,1261546.433,15.6
+49198,168112.9903,16120.06635,1265402.729,15.6
+49199,251768.8974,17190.80929,1270011.625,15.6
+49200,195896.7192,17057.26379,1273364.064,17.8
+49201,972833.7474,1282186.758,2675704.244,17.8
+49202,918886.0293,716515.127,2630622.682,17.8
+49203,466100.1259,211197.937,2092057.638,17.8
+49204,613334.8285,211716.4824,1892430.421,17.8
+49205,461418.2494,403024.8738,1568780.761,17.8
+49206,427828.6427,309142.9718,1801771.673,17.8
+49207,460355.7506,310160.2938,1677715.947,17.8
+49208,437081.1131,312652.3483,1687216.898,17.8
+49209,64567.515,313675.0618,1690296.712,17.8
+49210,64283.6909,313686.302,283692.3065,17.8
+49211,877349.5789,314774.4751,280546.7427,17.8
+49212,517584.4921,315105.6679,2642618.541,17.8
+49213,427835.2209,316134.1663,1651845.395,17.8
+49214,745998.5662,316877.9292,1511829.157,17.8
+49215,459402.8212,317139.2559,1759253.045,17.8
+49216,433554.3495,318326.5941,1671782.708,17.8
+49217,433124.5853,318763.7384,1678644.765,17.8
+49218,432698.705,320285.9256,1684380.035,17.8
+49219,432447.7999,320562.7895,1689710.313,17.8
+49220,432440.0747,322273.8513,1471158.68,17.8
+49221,432191.6515,322684.1159,1475230.214,17.8
+49222,431709.7364,323981.1137,1787279.503,17.8
+49223,432153.2924,325514.0408,1743376.655,17.8
+49224,431539.2736,273285.0715,1690868.304,17.8
+49225,431781.6965,274381.9348,1706629.317,17.8
+49226,431752.7805,386580.4336,1713700.584,17.8
+49227,431257.674,305485.9198,1712612.441,17.8
+49228,431627.9643,335851.9885,1711709.366,17.8
+49229,368397.4056,332843.1014,1714639.341,17.8
+49230,367587.7442,333181.9288,2468854.396,17.8
+49231,458827.8167,53782.80673,1730103.388,17.8
+49232,444701.63,53817.02654,2023500.091,17.8
+49233,434138.8205,54002.71667,2615092.936,17.8
+49234,438908.7774,949784.8071,1667532.776,17.8
+49235,432201.0919,206489.8206,1673709.887,17.8
+49236,431027.1471,258685.3353,1678903.972,17.8
+49237,433836.0469,415787.3062,1684531.196,17.8
+49238,432337.5374,349927.272,1685489.301,17.8
+49239,432427.7133,354823.7467,1692834.6,17.8
+49240,432785.6745,356769.5105,1692429.872,17.8
+49241,63942.05218,358727.8366,1696035.636,17.8
+49242,63938.47217,360137.0511,287703.5911,17.8
+49243,903829.3282,361345.7802,285329.2314,17.8
+49244,513059.2252,363276.8211,282979.9981,17.8
+49245,430233.5642,364109.1746,2752659.553,17.8
+49246,416575.4645,365627.7516,1911392.956,17.8
+49247,468646.7917,367337.21,1404244.535,17.8
+49248,441879.105,368939.5596,1744082.172,17.8
+49249,442534.2869,370374.1797,1660841.38,17.8
+49250,782895.8977,371767.296,1653772.579,17.8
+49251,441785.1811,373589.8646,1660735.363,17.8
+49252,443380.0615,375597.4495,1445831.699,17.8
+49253,443838.3551,376954.1453,1450671.792,17.8
+49254,442893.0662,377780.0293,1763303.601,17.8
+49255,444082.6957,380090.448,1710654.973,17.8
+49256,443497.6878,323859.5912,1663350.947,17.8
+49257,443862.7636,324816.3518,1684359.587,17.8
+49258,444550.8455,440786.0552,1692435.439,17.8
+49259,444557.5454,371218.167,1688903.815,17.8
+49260,445623.8797,394978.4151,1692423.728,20
+49261,2105964.159,2018448.257,3148210.28,20
+49262,1113119.412,1453439.983,3152909.106,20
+49263,1070116.824,657385.0384,3064303.631,20
+49264,905849.9048,207479.7645,2478486.233,20
+49265,1083030.859,1172528.677,2454300.272,20
+49266,869737.3464,584324.0278,2576799.265,20
+49267,939061.5196,839610.6968,2387516.617,20
+49268,919478.2111,734047.4069,2417558.637,20
+49269,915077.6668,802165.5427,2363680.064,20
+49270,914782.7877,810744.2856,2365192.949,20
+49271,911687.1124,731416.8221,2370627.032,20
+49272,911392.9002,770969.7768,2416735.617,20
+49273,123510.8309,755903.0506,3277275.122,20
+49274,936380.4874,754081.5022,2320771.321,20
+49275,873151.6034,749586.6177,520340.9749,20
+49276,944652.6031,747986.8994,571019.2596,20
+49277,923711.2132,742614.5773,2802109.826,20
+49278,891837.4914,740757.2643,2719041.039,20
+49279,906992.081,738048.3592,2208196.829,20
+49280,903982.3105,733972.5453,2507241.415,20
+49281,901340.9565,733234.0449,2324736.761,20
+49282,885663.6155,728986.0885,2269494.679,20
+49283,891473.779,725454.5405,2313750.083,20
+49284,888785.798,723482.8076,1991126.402,20
+49285,887261.2586,719928.819,2395536.928,20
+49286,1225095.056,717633.3417,2310212.14,20
+49287,884271.9279,714512.6604,2321023.233,20
+49288,884667.6325,598895.1578,2318664.22,20
+49289,882039.3159,596297.2928,2327173.825,20
+49290,883012.5133,809624.163,2338827.205,20
+49291,880568.5522,708928.215,2970029.227,20
+49292,762210.385,688633.2951,2246440.954,20
+49293,918256.956,710188.1348,2512283.566,20
+49294,877419.6398,700118.265,2202121.549,20
+49295,878434.0251,144989.4632,2405819.81,20
+49296,876841.8317,144771.493,2342860.009,20
+49297,876246.6102,1195122.928,2460408.795,20
+49298,877042.2113,521291.8363,2329116.822,20
+49299,875656.891,633074.8458,2331298.928,20
+49300,873524.762,672938.1858,2339380.397,20
+49301,874672.6339,652329.5837,2344162.449,20
+49302,873728.0512,713755.366,2347748.117,20
+49303,872220.1222,667157.9863,2356108.483,20
+49304,145435.2628,677057.7342,2357135.464,20
+49305,958444.5069,676212.7818,2363056.266,20
+49306,820005.1107,673089.9762,2421334.898,20
+49307,877308.3883,671181.0034,433165.3385,20
+49308,856818.332,669229.3299,597557.772,20
+49309,927701.5029,666760.56,2874969.661,20
+49310,879462.4672,664509.0616,2730940.954,20
+49311,855602.2091,662803.2904,2214189.906,20
+49312,877087.9908,659737.8901,2391316.361,20
+49313,870678.6024,659062.5219,3163115.303,20
+49314,868430.0019,655231.6045,3009976.197,20
+49315,868774.6129,653643.4833,2010562.536,20
+49316,869134.3338,651200.0893,2645025.642,20
+49317,867474.8027,649810.0302,2273369.151,20
+49318,868281.9012,646881.0543,2332205.748,20
+49319,867145.3501,644564.3586,2328236.927,20
+49320,867980.2759,540740.5076,2476653.587,21
+49321,2637047.578,2942850.92,4675724.221,21
+49322,2170592.663,2030281.522,4631169.329,21
+49323,673611.346,696504.8184,2325415.734,21
+49324,787680.4493,785925.6931,2725347.01,21
+49325,1044026.547,1001165.659,2492221.621,21
+49326,1038155.702,1017806.3,2974955.983,21
+49327,949144.9332,920961.5193,2620900.586,21
+49328,970203.322,942194.4767,2697871.824,21
+49329,968645.7234,938870.7623,2704507.363,21
+49330,963877.4197,936418.7911,2702848.061,21
+49331,964471.3898,932625.3627,2703098.412,21
+49332,958852.3734,929976.4396,2698115.839,21
+49333,945550.8495,928145.5726,3455342.251,21
+49334,948029.5143,924515.0145,2715170.944,21
+49335,944565.8103,921043.0835,2994418.808,21
+49336,940681.8433,918978.1522,2648499.616,21
+49337,940379.5589,917392.9129,2655448.254,21
+49338,935986.236,913643.672,2654054.605,21
+49339,932657.316,912458.6766,2654667.28,21
+49340,932149.8158,910246.4353,2653467.317,21
+49341,928084.6103,908297.0188,2654205.739,21
+49342,926664.3439,904893.3265,2651682.029,21
+49343,923772.459,904915.1489,2648719.5,21
+49344,923005.4096,902467.0254,2646731.279,21
+49345,918735.7882,899408.1026,2646169.583,21
+49346,918758.1452,898584.304,2641678.005,21
+49347,916620.9027,897915.6031,2638196.06,21
+49348,913994.5955,894029.5753,2690826.737,21
+49349,913421.4537,894566.9982,2734277.17,21
+49350,909892.9307,891986.0939,2605350.245,21
+49351,909248.0923,889179.6861,2604894.955,21
+49352,907820.0321,1324798.7,2733774.452,21
+49353,904701.8671,887330.2301,2587277.086,21
+49354,905341.8972,886267.243,2584714.734,21
+49355,902796.4396,883775.7966,2592670.33,21
+49356,899954.3793,882782.0728,2590149.438,21
+49357,900123.3243,881890.852,2592966.8,21
+49358,899965.019,880695.7241,2591698.278,21
+49359,894314.4304,879039.2157,2589958.405,21
+49360,897301.9164,878902.5559,2591653.022,21
+49361,893161.5251,874860.9321,2591928.203,21
+49362,893257.8712,876946.5694,2587435.97,21
+49363,891321.2833,873837.1651,3353563.118,21
+49364,891183.5353,872891.4466,2605056.603,21
+49365,887795.5978,871782.529,2892619.461,21
+49366,889683.7453,871779.4154,2547874.878,21
+49367,886369.5376,868464.0319,2545803.582,21
+49368,885441.7942,870066.9021,2554828.026,21
+49369,884963.742,866313.22,2551932.027,21
+49370,883179.0359,867380.1872,2556075.763,21
+49371,882167.7584,865984.184,2555906.99,21
+49372,881563.88,864251.4624,2556374.653,21
+49373,881405.2879,863167.423,2556213.182,21
+49374,878327.3457,864630.0539,2554817.296,21
+49375,878462.1276,859463.8468,2556748.799,21
+49376,878089.9595,863200.9507,2553872.811,21
+49377,876668.3824,858524.203,2554651.682,21
+49378,875484.496,860173.8997,2600954.715,21
+49379,874794.9314,858084.6079,2666481.222,21
+49380,873987.5113,857399.5384,2520561.642,21
+49381,1449820.187,1934018.497,2526208.733,21
+49382,1450390.327,1933786.348,2526894.59,21
+49383,1446616.458,1931321.587,2532178.671,21
+49384,1448808.676,1931924.365,2532236.049,21
+49385,1444922.815,1929470.442,2536793.79,21
+49386,1445393.623,1930985.899,2532834.558,21
+49387,1444402.099,1928955.796,2538456.761,21
+49388,1443328.27,1928022.252,2535472.085,21
+49389,1442954.575,1928976.62,2536885.651,21
+49390,1440987.803,1925753.308,2535938.516,21
+49391,1441931.691,1927363.289,2539817.731,21
+49392,1438204.664,1925973.843,2537279.642,21
+49393,1439511.896,1925408.136,2534889.265,21
+49394,1438382.787,1924352.361,2538067.995,21
+49395,1437596.713,1923991.024,2536248.949,21
+49396,1435618.367,1923880.115,2536604.184,21
+49397,1436062.62,1921947.928,2533131.104,21
+49398,1433621.8,1922840.28,2537146.993,21
+49399,1435681.723,1922648.063,2532330.556,21
+49400,1431935,1920083.977,2537473.788,21
+49401,1431692.305,1920076.769,2530189.073,21
+49402,1431764.776,1920843.466,2535089.932,21
+49403,1430784.282,1919492.057,2530482.375,21
+49404,1429931.757,1918861.535,2533366.98,21
+49405,1427957.303,1919035.649,2529875.392,21
+49406,1428983.397,1916740.277,2532286.882,21
+49407,1426397.694,1918626.718,2529043.938,21
+49408,1427464.982,1916472.966,2529076.56,21
+49409,1425557.711,1917512.154,2529290.507,21
+49410,1424398.338,1914687.661,2528395.483,21
+49411,1424364.417,1916142.982,2527284.159,21
+49412,1420404.336,1915165.797,2528519.557,21
+49413,1415564.872,1914700.31,2525047.546,21
+49414,1411281.516,1912856.792,2528422.537,21
+49415,1411293.233,1914469.601,2525877.797,21
+49416,1409530.94,1913463.837,2524149.521,21
+49417,1408285.946,1912176.272,2508013.685,21
+49418,1407001.716,1912732.272,2501283.33,21
+49419,1406526.689,1912232.232,2500660.169,21
+49420,1404149.802,1911100.267,2494909.999,21
+49421,1404239.573,1911051.056,2494223.316,21
+49422,1402163.931,1910868.589,2491454.828,21
+49423,1400472.904,1909638.526,2486887.097,21
+49424,1399956.051,1912236.268,2485012.236,21
+49425,1398414.548,1910017.223,2481049.948,21
+49426,1397719.041,1909871.534,2479241.859,21
+49427,1397208.486,1910624.302,2473868.707,21
+49428,1395276.681,1909509.452,2470740.317,21
+49429,1393311.504,1909180.096,2469668.377,21
+49430,1393496.927,1908624.087,2464583.189,21
+49431,1391717.485,1910104.204,2463688.77,21
+49432,1390533.292,1907125.346,2457927.474,21
+49433,1390499.977,1909896.816,2456509.891,21
+49434,1388488.957,1907418.985,2453595.243,21
+49435,1386910.515,1907723.214,2448427.206,21
+49436,1388076.943,1907476.559,2446899.493,21
+49437,1383793.603,1907385.892,2443750.048,21
+49438,1385490.344,1907197.558,2440256.465,21
+49439,1382605.645,1906407.076,2436676.505,21
+49440,1382804.298,1907331.012,2435178.234,21
+49441,1323295.736,1847449.032,2311025.993,21
+49442,1317035.626,1843413.592,2305316.27,21
+49443,1314606.585,1845017.904,2293761.073,21
+49444,1314941.252,1843869.934,2289385.024,21
+49445,1312375.707,1844492.184,2285284.93,21
+49446,1310083.907,1846567.146,2281684.677,21
+49447,1309805.156,1844357.65,2273467.875,21
+49448,1307791.995,1846331.995,2270661.602,21
+49449,1307310.07,1847802.12,2264892.513,21
+49450,1304884.493,1847201.38,2261703.781,21
+49451,1303859.636,1847825.269,2255093.093,21
+49452,1303438.662,1849207.932,2251691.548,21
+49453,1301074.107,1849781.45,2245474.114,21
+49454,1300368.62,1850136.744,2243567.42,21
+49455,1298537.139,1851859.923,2234148.747,21
+49456,1298569.826,1851641.875,2235423.97,21
+49457,1296449.371,1852848.926,2227333.959,21
+49458,1294864.688,1853941.299,2223995.801,21
+49459,1294662.811,1854661.275,2219686.499,21
+49460,1293532.85,1854323.225,2216029.53,21
+49461,1290891.299,1856375.679,2210849.878,21
+49462,1291477.647,1856731.763,2207655.926,21
+49463,1289716.008,1855506.766,2201824.773,21
+49464,1288166.806,1859024.428,2198663.425,21
+49465,1287399.015,1858642.301,2193035.912,21
+49466,1286256.575,1858761.365,2189427.519,21
+49467,1285272.558,1861032.038,2184657.205,21
+49468,1283882.264,1861510.732,2181241.745,21
+49469,1282590.785,1862132.708,2174763.607,21
+49470,1283508.232,1863205.57,2172228.082,21
+49471,1279001.54,1864079.996,2168882.312,21
+49472,1280008.822,1865385.818,2165170.613,21
+49473,1279337.465,1865385.417,2163084.501,21
+49474,1276297.025,1867727.555,2158868.74,21
+49475,1277376.731,1867719.586,2157119.441,21
+49476,1274017.432,1868725.873,2152749.983,21
+49477,1274379.674,1869689.906,2150425.802,21
+49478,1272347.184,1870824.078,2147607.169,21
+49479,1271900.99,1871673.229,2145949.69,21
+49480,1269256.24,1873024.765,2140729.858,21
+49481,1270027.706,1872516.019,2142482.08,21
+49482,1268205.222,1875624.5,2134789.787,21
+49483,1265965.039,1874824.63,2135210.903,21
+49484,1266692.819,1877927.23,2129970.213,21
+49485,1264496.01,1875900.414,2132014.667,21
+49486,1263177.8,1879937.597,2124892.981,21
+49487,1261833.768,1879039.849,2123192.629,21
+49488,1259741.51,1881447.205,2124377.967,21
+49489,1257072.982,1881602.051,2118618.202,21
+49490,1256985.15,1883036.294,2116273.669,21
+49491,1254608.393,1882333.755,2114834.185,21
+49492,1253666.689,1885962.377,2112914.381,21
+49493,1252219.983,1886177.341,2109596.303,21
+49494,1251618.256,1886250.603,2108313.366,21
+49495,1250373.909,1888604.507,2105347.33,21
+49496,1248892.037,1888686.535,2103087.811,21
+49497,1247089.576,1889615.861,2100548.147,21
+49498,1246825.739,1892456.269,2099347.058,21
+49499,1244582.462,1891268.858,2097938.07,21
+49500,1244942.624,1893695.738,2092936.047,21
+49501,1244669.801,1893588.103,2079229.057,21
+49502,1239350.907,1891493.304,2058971.955,21
+49503,1239974.792,1892399.671,2045591.36,21
+49504,1238566.777,1891228.709,2029899.326,21
+49505,1237561.89,1892179.423,2014466.712,21
+49506,1235816.692,1890765.886,2005300.179,21
+49507,1236155.462,1892277.135,1991988.648,21
+49508,1234458.852,1890377.08,1979083.299,21
+49509,1231457.576,1890438.24,1964807.378,21
+49510,1233258.116,1891193.932,1954725.936,21
+49511,1229847.622,1890398.285,1940113.787,21
+49512,1230342.341,1890268.216,1928708.375,21
+49513,1227808.953,1890313.796,1918738.32,21
+49514,1228835.226,1888895.421,1903128.107,21
+49515,1225265.412,1890188.362,1892334.1,21
+49516,1225669.426,1888857.528,1883666.226,21
+49517,1224539.133,1888917.566,1869196.643,21
+49518,1222940.235,2315224.509,1859017.582,21
+49519,1221640.777,1887870.255,1847116.434,21
+49520,1221196.714,1888183.677,1835159.272,21
+49521,1219571.12,1888626.856,1824563.819,21
+49522,1218798.871,1887228.11,1813413.887,21
+49523,1217850.129,1889012.57,1802547.589,21
+49524,1216024.859,1886739.099,1789291.952,21
+49525,1216586.581,1887097.792,1780699.45,21
+49526,1213341.928,1886673.4,1769907.293,21
+49527,1213480.108,1887031.757,1755975.034,21
+49528,1212321.995,1886943.878,1747508.104,21
+49529,1211356.002,1886529.17,1735550.647,21
+49530,1210356.461,1885300.715,1730867.257,21
+49531,1208919.995,1885913.219,1717756.035,21
+49532,1206833.951,1886475.235,1708723.986,21
+49533,1206585.951,1885278.16,1694862.824,21
+49534,1203793.316,1884191.319,1685371.842,21
+49535,1203534.675,1885592.703,1674281.71,21
+49536,1201058.021,1884288.476,1663113.217,21
+49537,1200962.113,1884395.874,1651529.9,21
+49538,1198567.242,1885200.219,1642036.822,21
+49539,1197424.999,1882919.981,1629072.985,21
+49540,1194065.583,1884792.044,1618599.869,21
+49541,1191824.385,1850457.985,1608693.419,21
+49542,1189337.578,2270792.983,1597108.818,21
+49543,1190368.146,1841145.418,1586908.77,21
+49544,1185978.225,1839839.2,1575073.507,21
+49545,1186374.703,1837507.089,1563164.92,21
+49546,1183971.351,1835022.942,1554562.527,21
+49547,1182635.232,1833350.652,1543130.808,21
+49548,1180647.216,1831083.846,1530384.41,21
+49549,1180282.949,1829815.467,1521671.491,21
+49550,1178141.221,1826643.857,1508122.996,21
+49551,1176430.603,1826597.364,1500064.843,21
+49552,1175308.405,1824015.535,1488169.829,21
+49553,1173744.214,1821319.051,1475716.252,21
+49554,1171505.52,1821723.057,1467872.562,21
+49555,1171271.736,1818652.534,1453351.449,21
+49556,1168149.619,1817022.769,1444940.172,21
+49557,1168649.081,1814988.904,1432087.847,21
+49558,1165997.822,1814218.096,1422044.293,21
+49559,1164107.921,1811950.169,1410965.573,21
+49560,1164620.86,1809525.492,1401774.916,21
+49561,1160662.397,1805520.923,1394342.248,21
+49562,1160178.556,1803455.05,1393756.583,21
+49563,1157490.325,1799958.221,1388665.223,21
+49564,1156248.34,1797061.981,1382931.223,21
+49565,1153204.956,1793303.378,1381649.999,21
+49566,1151111.63,1786375.895,1373156.894,21
+49567,1150981.374,1780973.641,1372295.982,21
+49568,1146285.816,1778486.093,1364407.966,21
+49569,1145555.183,1774651.416,1361100.814,21
+49570,1143063.502,1773477.969,1357999.136,21
+49571,1141422.898,1766495.046,1350028.397,21
+49572,1139344.506,1767144.678,1347666.823,21
+49573,1137043.257,1761036.115,1342872.079,21
+49574,1135191.94,1759436.123,1336022.656,21
+49575,1131632.092,1756637.792,1331677.763,21
+49576,1131806.425,1751710.409,1328511.22,21
+49577,1127972.29,1751525.182,1321718.863,21
+49578,1127547.147,1745850.911,1317519.617,21
+49579,1123100.698,1743189.916,1311589.683,21
+49580,1123095.611,1742197.732,1307905.519,21
+49581,1120356.863,1737523.563,1301401.103,21
+49582,1117574.332,1734068.399,1296523.423,21
+49583,1116843.834,1731847.294,1292106.344,21
+49584,1112999.584,1729871.294,1287258.682,21
+49585,1112303.161,1724523.039,1281161.668,21
+49586,1109767.361,1723955.484,1277463.874,21
+49587,1107800.706,1719108.133,1270764.605,21
+49588,1105186.783,1718635.12,1266646.443,21
+49589,1104197.071,1713707.251,1262353.053,21
+49590,1100826.099,1710932.508,1255295.43,21
+49591,1100872.064,1708902.676,1252106.059,21
+49592,1098376.793,1705507.486,1245326.034,21
+49593,1097413.72,1702957.245,1242504.552,21
+49594,1096066.741,1700620.811,1233615.124,21
+49595,1095142.74,1695729.033,1231709.729,21
+49596,1093751.094,1694831.161,1225510.418,21
+49597,1091001.619,1692038.707,1218709.619,21
+49598,1091816.575,1688098.239,1216389.851,21
+49599,1089462.37,1685169.458,1207996.024,21
+49600,1088637.638,1683891.042,1205341.857,21
+49601,1086721.955,1679846.513,1199292.489,21
+49602,1087236.621,1677182.054,1194141.636,21
+49603,1083800.089,1674318.485,1188581.52,21
+49604,1083963.516,1671985.976,1184073.194,21
+49605,1082437.864,1668618.949,1177785.968,21
+49606,1081339.046,1666475.681,1173430.194,21
+49607,1080367.844,1661365.114,1168650.931,21
+49608,1078444.378,1661973.322,1160955.698,21
+49609,1078142.846,1656508.461,1158613.89,21
+49610,1076530.788,1655698.743,1152896.315,21
+49611,1075335.325,1650695.286,1146520.961,21
+49612,1074364.232,1650820.112,1142297.035,21
+49613,1073582.518,1645279.674,1136717.105,21
+49614,1071476.516,1643794.981,1130868.621,21
+49615,1071199.424,1642063.125,1127625.27,21
+49616,1069811.594,1637160.223,1120079.811,21
+49617,1068525.394,1636208.324,1113899.512,21
+49618,1067379.58,1632758.585,1108632.66,21
+49619,1066926.945,1631241.706,1100369.87,21
+49620,1067267.962,1627821.907,1099300.619,21
+49621,1065525.893,1626915.727,1093352.383,21
+49622,1062887.185,1626561.032,1087109.165,21
+49623,1062681.01,1625613.248,1086048.998,21
+49624,1060470.056,1624608.796,1079793.715,21
+49625,1059827.432,1624022.706,1078143.661,21
+49626,1058484.506,1623721.683,1074724.408,21
+49627,1055738.428,1622795.194,1069347.729,21
+49628,1056666.461,1622611.25,1067263.235,21
+49629,1053334.74,1620905.968,1063387.703,21
+49630,1053705.099,1621787.082,1058713.169,21
+49631,1050894.661,1619280.484,1057296.457,21
+49632,1051587.884,1632461.081,1051521.374,21
+49633,1048082.166,1619228.041,1048696.887,21
+49634,1047947.21,1617957.196,1045211.096,21
+49635,1047545.736,1617080.8,1041786.439,21
+49636,1044351.958,1616934.243,1037210.081,21
+49637,1046136.856,1616204.448,1034150.901,21
+49638,1045462.116,1615701.644,1032260.486,21
+49639,1043717.647,1615204.754,1027608.443,21
+49640,1041901.249,1613540.539,1025370.398,21
+49641,1041440.107,1613480.923,1023330.009,21
+49642,1041072.778,1613226.426,1018748.934,21
+49643,1037897.697,1611694.709,1018729.595,21
+49644,1038174.242,1611599.878,1014104.657,21
+49645,1037682.45,1611041.158,1012380.525,21
+49646,1034382.029,1609699.787,1008273.911,21
+49647,1035694.837,1609648.765,1008384.246,21
+49648,1032006.623,1609057.649,1004427.687,21
+49649,1032794.261,1607559.851,999720.7212,21
+49650,1030998.354,1607590.199,1000911.957,21
+49651,1029880.688,1607144.856,994509.9915,21
+49652,1028388.469,1606175.639,995458.733,21
+49653,1028414.507,1606844.876,989059.321,21
+49654,1026623.647,1603212.317,991390.1216,21
+49655,1025922.792,1605815.842,984730.6246,21
+49656,1024902.304,1604592.713,986138.0847,21
+49657,1023980.144,1602546.778,980819.8263,21
+49658,1022510.582,1603865.119,979837.362,21
+49659,1021978.529,1601964.699,976461.9283,21
+49660,1021274.932,1601556.462,974246.8227,21
+49661,1020236.606,1601121.819,972359.2446,21
+49662,1018655.272,1600869.096,971077.0969,21
+49663,1018825.38,1600007.312,966845.0317,21
+49664,1016374.025,1599592.667,966359.7421,21
+49665,1016973.19,1599601.103,962491.9616,21
+49666,1014479.862,1598356.481,960559.5016,21
+49667,1014900.155,1598267.539,958534.9535,21
+49668,1013846.956,1597126.643,955759.1079,21
+49669,1012166.508,1597715.001,953765.7416,21
+49670,1012186.993,1596527.569,949411.6086,21
+49671,1010732.685,1596775.428,950307.5165,21
+49672,1010770.766,1594859.264,946408.5358,21
+49673,1008887.916,1596138.756,944245.2489,21
+49674,1008253.231,1593939.908,941586.0155,21
+49675,1007451.298,1595230.299,940251.3195,21
+49676,1006668.065,1593240.834,936172.1769,21
+49677,1005955.71,1592874.161,934711.6507,21
+49678,1003897.517,1593592.623,933467.4998,21
+49679,1004835.884,1592190.93,928440.154,21
+49680,1003562.436,1591482.58,925116.2147,21
+49681,1066335.064,1657816.706,1044642.034,21
+49682,1071554.966,1657144.042,1048168.238,21
+49683,1071845.693,1658061.08,1047129.965,21
+49684,1072069.409,1655395.869,1044892.008,21
+49685,1074761.53,1654642.156,1047011.814,21
+49686,1073364.638,1651567.245,1167756.679,21
+49687,1075356.681,1652681.399,1034259.927,21
+49688,1076017.439,1647886.146,1297897.09,21
+49689,1076223.974,1648710.176,1019092.955,21
+49690,1076782.804,1645510.744,1018539.982,21
+49691,1077303.869,1645165.606,1018039.563,21
+49692,1080624.056,1641566.047,1014904.718,21
+49693,1080221.864,1641809.291,1015055.608,21
+49694,1082186.33,1638479.958,2005818.072,21
+49695,1080962.215,1637716.722,1045850.019,21
+49696,1084098.099,1635249.969,1547510.514,21
+49697,1082277.292,1633551.983,980943.5018,21
+49698,1084494.665,1631182.648,1190466.711,21
+49699,1084577.28,1630475.45,1015088.675,21
+49700,1085593.136,1627156.004,968375.0796,21
+49701,1085534.599,1627397.08,970114.0253,21
+49702,1086160.625,1623954.563,965952.001,21
+49703,1087871.584,1623661.922,965292.914,21
+49704,1087084.205,1620096.229,966913.4788,21
+49705,1087894.54,1620107.282,962898.3437,21
+49706,1089389.152,1617521.757,961066.62,21
+49707,1088769.828,1614897.074,963580.7831,21
+49708,1089833.852,1613508.289,958578.8506,21
+49709,1091048.3,1611751.771,960664.4469,21
+49710,1090477.02,1609573.404,955441.9627,21
+49711,1091002.142,1607862.487,957512.0139,21
+49712,1091466.919,1605764.982,955733.8019,21
+49713,1090763.334,1605173.333,953518.0998,21
+49714,1090871.985,1601824.219,1069672.125,21
+49715,1091938.692,1601741.956,1055837.287,21
+49716,1089001.918,1600480.457,963787.2916,21
+49717,1092219.758,1597218.389,1086751.935,21
+49718,1089698.851,1596711.148,927311.5787,21
+49719,1089978.651,1594821.185,945067.1887,21
+49720,1087453.424,1592731.45,935818.5904,21
+49721,1087454.243,1592627.169,936380.0207,21
+49722,1089161.194,1588969.165,930982.7732,21
+49723,1087226.531,1589686.779,931778.1606,21
+49724,1087296.78,1586038.46,1903471.408,21
+49725,1087923.393,1585905.001,946121.5469,21
+49726,1085712.439,1582813.954,1448142.376,21
+49727,1087784.77,1582738.489,885762.3821,21
+49728,1085703.694,1581133.267,1133873.193,21
+49729,1086772.264,1578245.392,958006.74,21
+49730,1085668.678,1578252.57,871222.9934,21
+49731,1084999.526,1576299.857,911667.1116,21
+49732,1085003.102,1574430.598,901389.1535,21
+49733,1084859.475,1573656.647,896923.7696,21
+49734,1084471.896,1571366.833,894229.5926,21
+49735,1084274.052,1569538.613,894465.5875,21
+49736,1083706.596,1568735.007,892563.7955,21
+49737,1083609.674,1567040.813,890836.8158,21
+49738,1082309.465,1565500.73,890170.7415,21
+49739,1083661.517,1563788.186,887647.161,21
+49740,1082533.095,1562388.472,886475.4988,21
+49741,1079702.823,1562790.165,888334.866,21
+49742,1078795.059,1560729.209,1193804.308,21
+49743,1080183.479,1561530.569,837953.329,21
+49744,1078415.634,1559709.299,1125595.387,21
+49745,1080849.536,1560567.263,924490.2143,21
+49746,1080043.616,1559248.96,845945.7334,21
+49747,1079822.161,1557809.143,880307.2848,21
+49748,1080631.82,1558342.589,874770.7951,21
+49749,1081321.351,1557906.024,870136.7043,21
+49750,1079637.172,1556579.641,874164.2716,21
+49751,1081713.57,1554509.183,873378.5617,21
+49752,1081688.53,1557489.028,873801.2535,21
+49753,1081050.016,1552766.988,874804.1142,21
+49754,1082341.073,1555785.349,1805193.026,21
+49755,1082254.213,1552737.965,870246.0428,21
+49756,1080953.04,1553073.883,1360841.957,21
+49757,1084226.178,1552420.341,822539.927,21
+49758,1081383.708,1551305.693,1080841.62,21
+49759,1083019.986,1551419.013,911618.5608,21
+49760,1083361.872,1550761.396,830189.2511,21
+49761,1083650.868,1548933.911,869264.3183,21
+49762,1082401.519,1550526.692,861446.3247,21
+49763,1084503.778,1548281.01,858463.8189,21
+49764,1083392.809,1547528.352,858912.8253,21
+49765,1084142.665,1548056.063,858483.3016,21
+49766,1083960.432,1546810.936,858459.8953,21
+49767,1083898.883,1545726.381,859305.7022,21
+49768,1085102.678,1546603.016,859375.9514,21
+49769,1084876.088,1544599.912,858309.538,21
+49770,1084306.874,1544527.997,859719.7263,21
+49771,1085695.038,1544257.684,858437.0298,21
+49772,1085010.374,1543192.216,859782.3497,21
+49773,1085992.884,1544421.041,859996.1459,21
+49774,1085995.085,1541982.209,935297.9553,21
+49775,1086284.419,1543254.326,928931.4236,21
+49776,1086307.108,1541458.016,869070.9953,21
+49777,1085970.746,1541693.863,1003884.588,21
+49778,1087046.65,1541962.403,811946.1054,21
+49779,1087187.303,1540654.403,861434.0704,21
+49780,1087461.751,1540938.128,852096.9653,21
+49781,1087722.976,1540494.607,853579.278,21
+49782,1087841.602,1539532.745,852937.966,21
+49783,1086090.335,1539960.647,852662.1272,21
+49784,1086318.817,1538672.529,852708.2262,21
+49785,1085456.631,1540478.003,853303.3052,21
+49786,1086386.607,1538387.282,1782506.04,21
+49787,1085638.638,1538003.985,847370.6262,21
+49788,1086370.993,1538173.488,1338840.63,21
+49789,1086344.879,1537797.496,795604.3034,21
+49790,1086203.787,1537766.24,1059193.377,21
+49791,1087001.529,1538966.629,887384.9571,21
+49792,1086293.407,1539437.213,804520.3004,21
+49793,1086745.359,1538547.815,845287.3988,21
+49794,1086923.171,1539010.44,835860.6807,21
+49795,1085786.356,1539210.401,831902.4934,21
+49796,1087797.794,1537105.562,831420.0815,21
+49797,1087084.265,1539226.158,830680.0025,21
+49798,1087047.15,1537513.716,830747.5408,21
+49799,1087626.627,1538215.647,829489.6026,21
+49800,1087231.687,1537714.815,830127.3068,21
+49801,1086946.559,1538621.767,830188.2378,21
+49802,1087803.298,1540607.269,830239.082,21
+49803,1087134.995,1541292.771,830459.3708,21
+49804,1087377.588,1542814.456,831436.4879,21
+49805,1087037.031,1545083.475,829928.0472,21
+49806,1086813.679,1544603.111,897419.4559,21
+49807,1086787.672,1545924.241,896517.5563,21
+49808,1086323.519,1548286.309,830446.9964,21
+49809,1085633.279,1549070.12,982967.2483,21
+49810,1086318.658,1549744.596,777950.7375,21
+49811,1084144.425,1552133.928,829314.109,21
+49812,1085778.105,1551037.423,821016.0324,21
+49813,1084808.623,1555678.453,818684.5733,21
+49814,1084871.476,1553548.678,818115.669,21
+49815,1084245.063,1556335.569,818225.9645,21
+49816,1083437.487,1557532.299,1730498.703,21
+49817,1084024.683,1559221.931,797334.764,21
+49818,1083758.644,1559424.969,1285863.869,21
+49819,1083067.895,1560996.695,746724.6801,21
+49820,1082723.318,1561597.661,1026146.956,21
+49821,1081967.333,1564938.042,851297.9611,21
+49822,1082636.037,1563986.002,770503.041,21
+49823,1081027.178,1565206.377,809446.4811,21
+49824,1081673.684,1568077.293,799700.9908,21
+49825,1081456.5,1568432.5,797053.2921,21
+49826,1080195.332,1570405.943,795265.6611,21
+49827,1080670.292,1570245.542,794084.6193,21
+49828,1080594.313,1573036.196,794247.4371,21
+49829,1078922.442,1573669.885,790952.2419,21
+49830,1079853.334,1574771.848,790486.5252,21
+49831,1079142.856,1576270.822,790325.1491,21
+49832,1079453.53,1576706.093,789616.9878,21
+49833,1078243.853,1578238.29,787577.093,21
+49834,1079697.803,1579617.87,791039.1275,21
+49835,1079728.456,1579759.163,788100.5537,21
+49836,1079247.241,1581786.84,828568.8235,21
+49837,1079950.418,1581243.313,1185910.247,21
+49838,1079023.82,1584342.133,705066.9625,21
+49839,1080290.877,1583081.923,974412.1418,21
+49840,1080086.961,1586257.882,897586.9659,21
+49841,1079377.956,1585914.787,972902.926,21
+49842,1080432.205,1587231.011,688996.6528,21
+49843,1081022.953,1587700.064,997438.5596,21
+49844,1079200.57,1590197.242,772004.2124,21
+49845,1081140.754,1589305.941,732201.4769,21
+49846,1080968.72,1590863.365,753370.6833,21
+49847,1080999.437,1593528.611,749359.5156,21
+49848,1080466.247,1591203.503,749607.889,21
+49849,1082153.232,1595600.694,747715.1153,21
+49850,1081312.976,1594716.099,748204.2877,21
+49851,1081871.63,1595117.258,1601014.329,21
+49852,1082335.976,1597304.979,708948.5431,21
+49853,1081441.564,1597892.026,1160506.486,21
+49854,1083056.165,1598016.147,665763.2245,21
+49855,1082086.91,1599876.478,945339.1332,21
+49856,1083259.769,1600298.261,784053.5825,21
+49857,1082507.565,1602172.688,708354.4408,21
+49858,1084211.345,1601077.946,745514.0169,21
+49859,1083187.627,1603790.754,735831.3765,21
+49860,1085001.337,1604645.122,733475.6774,21
+49861,1082673.516,1604876.213,730734.9608,21
+49862,1084832.352,1606916.698,728365.0957,21
+49863,1084322.243,1609419.266,727100.5277,21
+49864,1083010.29,1608652.531,725259.3253,21
+49865,1084069.344,1610598.378,723949.7391,21
+49866,1083740.03,1611601.068,720445.9463,21
+49867,1084020.034,1610778.948,721202.7455,21
+49868,1083233.104,1613781.23,717310.5877,21
+49869,1083176.107,1612524.475,716488.8935,21
+49870,1084324.976,1615872.274,714712.6571,21
+49871,1083329.213,1616481.42,728044.1191,21
+49872,1082949.571,1617316.368,753667.7219,21
+49873,1084065.633,1619537.22,678867.721,21
+49874,1083068.831,1619677.569,896072.8164,21
+49875,1084103.721,1621499.464,654625.5066,21
+49876,1082049.185,1621723.682,708917.1665,21
+49877,1084294.042,1623705.753,698339.3134,21
+49878,1083343.478,1625511.183,695411.8425,21
+49879,1083753.189,1625867.884,693995.9939,21
+49880,1083576.003,1628161.23,691130.24,21
+49881,1082471.335,1629150.051,1516766.332,21
+49882,1084897.816,1630070.066,630508.0378,21
+49883,1082842.117,1631861.33,1076311.218,21
+49884,1084386.529,1632356.52,587450.9921,21
+49885,1084204.027,1635754.509,881546.5996,21
+49886,1083204.079,1634457.767,719557.6304,21
+49887,1084948.543,1636637.386,644880.2364,21
+49888,1085078.776,1638968.062,680009.5959,21
+49889,1083657.51,1636647.286,669026.5677,21
+49890,1084358.514,1639497.593,664581.9325,21
+49891,1086119.062,1638948.253,662044.4459,21
+49892,1085174.738,1641557.181,660551.1136,21
+49893,1085507.018,1642235.811,658674.4256,21
+49894,1086648.101,1644335.467,654716.5237,21
+49895,1086903.36,1643731.815,652680.2065,21
+49896,1085864.374,1647278.201,651303.3873,21
+49897,1089038.738,1647569.458,649124.0813,21
+49898,1086911.082,1649393.989,657417.4552,21
+49899,1088313.553,1648735.454,548090.7921,21
+49900,1089456.746,1653599.181,892068.1213,21
+49901,1088892.139,1651533.226,576589.1387,21
+49902,1089459.062,1654521.308,651586.9416,21
+49903,1090837.625,1655851.947,635056.0621,21
+49904,1089016.434,1657417.632,633978.7931,21
+49905,1092566.988,1657977.023,632591.1354,21
+49906,1090911.289,1660084.122,1422719.215,21
+49907,1092686.014,1660874.083,558858.9755,21
+49908,1091984.751,1663947.816,987932.1143,21
+49909,1093300.975,1662584.27,515680.1812,21
+49910,1094023.174,1666800.475,819133.8071,21
+49911,1092999.48,1666451.856,658659.744,21
+49912,1095410.175,1667522.715,591133.8244,21
+49913,1094862.911,1671050.385,623922.7379,21
+49914,1095878.441,1670763.218,613715.1325,21
+49915,1096204.245,1672539.526,611382.1636,21
+49916,1095805.666,1674134.595,606917.53,21
+49917,1098075.456,1675952.289,605440.7406,21
+49918,1097979.554,1676413.4,606277.1392,21
+49919,1097272.165,1678577.355,602188.6144,21
+49920,1099733.341,1679920.427,602252.1932,21
+49921,1100966.44,1680565.272,600743.0422,21
+49922,1102921.625,1681572.869,602155.7763,21
+49923,1105810.256,1681605.149,597389.3823,21
+49924,1107422.461,1684196.346,501660.4523,21
+49925,1109723.479,1685273.016,839610.6507,21
+49926,1112314.679,1685636.55,542873.045,21
+49927,1114296.017,1687497.678,614224.2521,21
+49928,1116748.884,1688764.913,604910.6419,21
+49929,1118164.675,1688674.571,603548.9857,21
+49930,1122123.813,1691002.97,605969.4752,21
+49931,1121762.689,1690595.141,1378749.989,21
+49932,1126834.986,1692154.211,541509.1522,21
+49933,1127161.29,1693475.128,949766.1232,21
+49934,1130197.674,1693297.385,509441.6254,21
+49935,1132771.254,1695551.514,796496.3393,21
+49936,1134992.897,1697128.66,648951.0986,21
+49937,1136831.194,1695517.556,724058.1379,21
+49938,1138333.922,1699013.435,510589.4878,21
+49939,1142970.908,1698583.994,804993.2134,21
+49940,1143531.421,1699284.113,624383.1223,21
+49941,1146260.058,1701930.637,594373.0028,21
+49942,1147809.962,1701485.289,611878.8926,21
+49943,1152118.753,1701965.211,610592.0641,21
+49944,1152542.872,1704600.619,610327.8356,21
+49945,1156034.19,1704335.527,609999.8305,21
+49946,1157304.345,1706075.718,612238.3144,21
+49947,1160334.518,1705949.004,613102.8296,21
+49948,1163057.58,1708537.859,622937.9675,21
+49949,1163626.276,1708631.188,528140.0273,21
+49950,1168078.161,1708680.428,846504.0889,21
+49951,1169300.558,1710950.622,558092.2205,21
+49952,1172239.974,1711405.045,630985.7301,21
+49953,1174880.669,1712652.754,621233.5617,21
+49954,1176498.878,1710784.406,622002.9402,21
+49955,1180100.52,1715611.653,624187.4943,21
+49956,1181943.309,1713204.645,1406585.556,21
+49957,1185199.237,1715682.912,573805.7512,21
+49958,1186654.931,1715706.883,980190.204,21
+49959,1190550.85,1716907.413,542590.8978,21
+49960,1192148.123,1717013.16,817583.1824,21
+49961,1195166.551,1717843.311,671156.916,21
+49962,1196978.375,1718376.546,759336.7355,21
+49963,1200593.544,1720040.323,545827.0778,21
+49964,1202834.903,1719385.426,831832.3643,21
+49965,1203507.329,1720964.86,647219.829,21
+49966,1209448.546,1723129.165,620120.6244,21
+49967,1208937.137,1721190.372,639815.9897,21
+49968,1213316.188,1722627.167,637701.0659,21
+49969,1215058.955,1724838.769,636426.9946,21
+49970,1217479.535,1723193.32,640354.6531,21
+49971,1220464.02,1726841.833,639991.8395,21
+49972,1224289.981,1724196.426,642164.831,21
+49973,1225859.433,1727311.247,668222.0645,21
+49974,1229104.408,1726788.958,569607.5668,21
+49975,1230253.368,1728214.951,881568.8262,21
+49976,1234304.558,1729006.318,588846.8571,21
+49977,1236223.374,1728300.709,663429.5129,21
+49978,1239259.83,1730534.049,652233.8334,21
+49979,1241927.635,1730537.094,655787.3019,21
+49980,1244628.931,1730285.359,657731.0593,21
+49981,644688.8081,1027500.059,228808.5527,21
+49982,645518.7525,1010811.849,229132.6731,21
+49983,646439.0241,1011577.752,228393.8285,21
+49984,647568.8304,1012502.974,225086.5673,21
+49985,648941.5215,1014030.187,498815.7297,21
+49986,650583.4543,1015959.008,117203.5525,21
+49987,652237.768,1018242.184,394624.2071,21
+49988,654030.4501,1020508.46,316438.509,21
+49989,655849.8066,1022909.662,337290.8167,21
+49990,657663.6658,1025299.127,128022.8868,21
+49991,659451.79,1027742.018,413023.684,21
+49992,661201.4355,1029891.569,241162.08,21
+49993,662904.863,1032049.545,214202.0691,21
+49994,664560.2491,1034099.882,231398.0154,21
+49995,666160.4611,1036140.118,228748.8417,21
+49996,667704.7802,1037868.08,229191.4643,21
+49997,669266.1079,1039590.368,230323.2227,21
+49998,670647.5511,1041211.592,231593.6797,21
+49999,672048.5371,1042842.463,946971.8653,21
+50000,673406.8297,1044178.666,183344.4472,21
+50001,674732.93,1045539.3,518238.8525,21
+50002,676008.7027,1046827.657,162864.3782,21
+50003,677345.8425,1048159.621,388759.1302,21
+50004,678478.8782,1049214.116,275822.4416,21
+50005,679671.7144,1050324.493,343786.2402,21
+50006,680839.8205,1051387.071,172602.5962,21
+50007,681989.8018,1052517.228,398209.2091,21
+50008,683113.8112,1053775.999,258650.9648,21
+50009,684315.5966,1054759.202,233752.8669,21
+50010,685334.0451,1055657.777,250186.4538,21
+50011,686429.5235,1056746.461,247331.2994,21
+50012,687514.9665,1057551.52,247687.7273,21
+50013,688597.0301,1058444.78,248901.6011,21
+50014,689653.8009,1059300.359,250369.478,21
+50015,691301.2755,1060266.901,251863.1664,21
+50016,692050.1588,1060991.959,252369.8509,21
+50017,693185.8068,1061797.451,256341.049,21
+50018,694286.7264,1062605.892,256794.8894,21
+50019,695321.1728,1063497.899,249152.6503,21
+50020,696399.8664,1064169.856,272239.9974,21
+50021,697517.2883,1064927.658,292786.4478,21
+50022,698466.2562,1065675.967,218553.5103,21
+50023,699510.6186,1066850.814,439985.8823,21
+50024,701108.6657,1067719.819,411401.8035,21
+50025,701982.301,1068776.437,224870.1297,21
+50026,703343.2296,1070005.011,426416.5222,21
+50027,704166.278,1070801.119,280003.9455,21
+50028,705225.0104,1071588.504,372558.1119,21
+50029,706264.2898,1072473.047,235054.192,21
+50030,707326.059,1073349.715,429097.0611,21
+50031,708341.6552,1074244.48,282288.9251,21
+50032,709382.6581,1074992.573,379562.7259,21
+50033,710414.2354,1075834.11,245562.9029,21
+50034,711430.6369,1076599.568,432841.1162,21
+50035,712459.1173,1077571.086,287775.2758,21
+50036,713454.6315,1078243.52,388975.0932,21
+50037,714462.6213,1079009.704,256382.7428,21
+50038,715488.3791,1079832.511,437551.8867,21
+50039,716463.5689,1080716.042,294055.0531,21
+50040,717475.1,1081386.311,399352.6767,21
+50041,0,0,0,21
+50042,0,0,0,21
+50043,0,0,0,21
+50044,37215.96203,0,0,21
+50045,7240.017079,247.038854,0,21
+50046,14469.24142,0,0,21
+50047,18425.95616,0,0,21
+50048,16265.92194,0,0,21
+50049,16886.58182,0,0,21
+50050,17148.63693,0,0,21
+50051,17341.80952,0,0,21
+50052,17589.08044,0,0,21
+50053,17831.24817,0,0,21
+50054,18024.47232,0,0,21
+50055,18238.83039,0,0,21
+50056,18470.73235,0,0,21
+50057,317821.4675,0,929883.9314,21
+50058,18885.68434,0,0,21
+50059,19098.76547,0,0,21
+50060,103305.1444,0,0,21
+50061,85575.98564,0,0,21
+50062,76380.90487,0,0,21
+50063,85042.82718,0,0,21
+50064,91637.37702,0,0,21
+50065,89075.76095,0,0,21
+50066,91680.57098,3.235376359,0,21
+50067,93038.83227,0,0,21
+50068,94243.65148,0,0,21
+50069,95474.19989,215.9172533,0,21
+50070,96854.94085,0,0,21
+50071,98014.45407,0,0,21
+50072,99445.06072,0,0,21
+50073,106111.5037,0,0,21
+50074,85077.15077,0,0,21
+50075,86428.73787,0,0,21
+50076,88212.53766,0,0,21
+50077,166260.8037,0,0,21
+50078,104902.8618,0,0,21
+50079,103210.6017,0,0,21
+50080,125826.1153,0,0,21
+50081,118464.6245,0,0,21
+50082,120885.6485,198.8978952,0,21
+50083,123015.4406,0,0,21
+50084,124413.1493,0,0,21
+50085,125931.2301,0,0,21
+50086,127628.6001,31905.7213,0,21
+50087,23825.22748,4829.81229,0,21
+50088,23933.56706,4615.851327,0,21
+50089,24150.87949,10007.36199,0,21
+50090,24186.85422,12089.08197,0,21
+50091,24365.25115,9442.017375,0,21
+50092,409679.0415,10214.68349,0,21
+50093,62448.98857,10324.41579,0,21
+50094,95706.69322,10387.66001,0,21
+50095,178926.823,10426.1596,0,21
+50096,137566.4555,10541.64292,0,21
+50097,144413.8929,10542.86317,0,21
+50098,145359.3601,10629.99945,0,21
+50099,147049.2442,10657.96466,0,21
+50100,148341.4289,10751.12591,0,21
+50101,150476.0461,11017.41894,0,21
+50102,150795.8035,11031.27065,0,21
+50103,150941.2831,11184.4903,0,21
+50104,151269.9997,11209.71493,0,21
+50105,151053.6661,11256.49861,907792.9668,21
+50106,151378.8058,11375.92404,0,21
+50107,125349.8927,11390.13497,0,21
+50108,126146.3204,11499.35874,0,21
+50109,200723.6493,11481.96285,0,21
+50110,137418.0951,11676.70285,0,21
+50111,146983.3901,11607.08582,0,21
+50112,155541.1,11761.25679,0,21
+50113,151569.5851,11795.21939,0,21
+50114,151509.738,11847.72263,0,21
+50115,151640.3482,11917.09537,0,21
+50116,151611.438,0,0,21
+50117,151644.8865,0,0,21
+50118,151461.6211,0,0,21
+50119,151603.8039,0,0,21
+50120,151275.8188,0,0,21
+50121,151318.75,0,0,21
+50122,25441.458,0,0,21
+50123,25374.54953,51111.24747,0,21
+50124,25409.92542,122.353688,0,21
+50125,25353.81341,5850.541297,0,21
+50126,477036.5595,15469.14158,0,21
+50127,40571.87487,13817.96901,0,21
+50128,111965.9384,12151.76457,0,21
+50129,190166.7317,12868.02338,0,21
+50130,144882.9555,12907.43463,0,21
+50131,150417.3082,12936.04878,0,21
+50132,150762.1788,13136.82949,0,21
+50133,150010.7992,13038.46506,0,21
+50134,150022.3594,13156.00008,0,21
+50135,149684.6345,13185.6015,0,21
+50136,149583.7818,13241.42974,0,21
+50137,148955.5997,13271.90523,0,21
+50138,148908.0982,13336.46019,0,21
+50139,123627.718,13392.01759,0,21
+50140,123472.6686,13422.45043,0,21
+50141,196776.9827,13529.02077,0,21
+50142,132452.1069,13502.89853,0,21
+50143,143481.0805,13628.53044,0,21
+50144,151356.9845,13589.76704,0,21
+50145,146046.9334,13790.86193,0,21
+50146,146467.6894,13734.51824,0,21
+50147,146129.6712,13749.61214,0,21
+50148,145917.6561,13831.42682,0,21
+50149,145226.98,13921.4374,0,21
+50150,145318.7978,13867.826,0,21
+50151,144490.0947,14070.05746,0,21
+50152,144747.7505,14009.38663,0,21
+50153,143712.1064,0,0,21
+50154,143843.2698,0,0,21
+50155,142778.0311,3.821561685,995800.6406,21
+50156,24249.60309,0,0,21
+50157,24085.83232,78.43484394,0,21
+50158,24121.29742,58862.05585,0,21
+50159,24000.29599,0,0,21
+50160,23978.74722,5215.394651,0,21
+50161,484713.3214,20241.96438,0,21
+50162,34772.06403,15140.36988,0,21
+50163,91033.1509,14935.13505,0,21
+50164,188069.517,15564.21916,0,21
+50165,137482.6302,15843.03846,0,21
+50166,143040.1583,16032.41195,0,21
+50167,144509.4702,16333.78217,0,21
+50168,144022.5978,16546.0927,0,21
+50169,144562.5651,16815.75338,0,21
+50170,145004.5898,17008.32135,0,21
+50171,120523.9841,17245.05251,0,21
+50172,120889.6031,17447.76943,0,21
+50173,121307.4652,17702.32829,0,21
+50174,202030.6926,17911.91919,0,21
+50175,139437.6192,18251.81452,0,21
+50176,133265.0271,18347.05385,0,21
+50177,153594.7758,18611.40717,0,21
+50178,145460.3124,18860.67525,0,21
+50179,146721.0745,19000.78598,0,21
+50180,146566.5564,19284.53572,0,21
+50181,146767.3333,19610.10131,109303.3189,21
+50182,147041.7767,19709.79791,264108.5244,21
+50183,147171.2055,19964.81397,142619.0058,21
+50184,147373.9509,20150.28361,174929.3963,21
+50185,147508.2751,20432.24742,64026.77247,21
+50186,147472.8875,20605.499,254799.7003,21
+50187,147993.8128,20915.99419,141045.5288,21
+50188,147794.9872,0,167783.188,21
+50189,148253.0844,0,60818.38997,21
+50190,148276.8789,0,243618.5307,21
+50191,24532.88401,77733.93355,135872.1552,21
+50192,24584.0682,2901.86844,161381.5791,21
+50193,24555.97443,14729.51174,60626.58059,21
+50194,24573.69432,29451.73053,232747.3079,21
+50195,24586.87201,21430.14216,131249.943,21
+50196,527761.7512,22778.16275,155777.3137,21
+50197,44368.60757,23157.37462,60516.80406,21
+50198,76676.31606,23293.37222,222964.7585,21
+50199,205557.3406,23665.63199,127123.1773,21
+50200,142416.1392,23687.56002,150757.7937,21
+50201,149176.9275,23987.16702,60537.54176,21
+50202,150088.4365,24220.95305,214202.2165,21
+50203,150365.7434,303655.1544,123555.395,21
+50204,125596.4544,76215.16817,146248.1184,21
+50205,125604.3977,74073.75522,60600.94389,21
+50206,125893.4479,151740.9997,914298.4074,21
+50207,207592.7289,138053.7509,119850.129,21
+50208,146211.0697,131735.4904,141436.6183,21
+50209,137285.5576,137835.7859,60578.89382,21
+50210,157827.5373,140570.4316,198258.4202,21
+50211,150117.0976,142453.504,0,21
+50212,150962.4841,145175.0136,0,21
+50213,150471.6121,147369.0642,0,21
+50214,151083.6045,149607.4503,0,21
+50215,150921.2938,152200.117,0,21
+50216,150766.0802,154362.7008,0,21
+50217,151032.391,156681.5453,109540.7125,21
+50218,151194.1074,159075.4301,190067.0709,21
+50219,151003.7548,161577.0664,111640.1762,21
+50220,151166.1014,163838.1849,144130.6038,21
+50221,151789.2495,135587.1013,61707.55915,21
+50222,153079.6159,135899.3399,190736.0204,21
+50223,153311.7827,220119.7069,115785.0475,21
+50224,154653.6986,143755.3665,134897.4123,21
+50225,155153.19,161854.8998,62599.13755,21
+50226,25103.49797,167524.4399,185341.3236,21
+50227,25247.75909,163810.3517,112999.4027,21
+50228,25270.91985,164579.4362,131817.7208,21
+50229,25404.62269,163744.5666,62360.29899,21
+50230,536080.297,164764.4342,180270.9518,21
+50231,37044.43646,163923.4433,110823.347,21
+50232,102981.7845,164429.8808,129025.3689,21
+50233,215250.9362,27795.9236,62216.15302,21
+50234,153830.8335,27785.04957,175720.5152,21
+50235,164067.4312,27823.1675,108964.3975,21
+50236,164261.35,27785.05053,126510.1869,21
+50237,139626.7278,27633.53408,62116.28323,21
+50238,140086.3538,561868.0462,171656.2078,21
+50239,217522.1295,27626.13076,107290.0899,21
+50240,154008.2156,85679.45286,124287.4265,21
+50241,164739.5775,232135.976,62049.78674,21
+50242,172725.8998,152016.1914,168008.3446,21
+50243,170073.8707,163837.3705,105806.6872,21
+50244,171045.2931,164159.1474,122307.2718,21
+50245,171604.82,164382.8568,61971.36915,21
+50246,172487.4702,163916.7066,164761.9467,21
+50247,173549.2402,164076.9357,0,21
+50248,174041.9693,164082.341,0,21
+50249,174990.8698,163561.0304,0,21
+50250,175565.6127,163920.6937,0,21
+50251,176515.2757,163268.8871,0,21
+50252,177186.569,163666.4125,164128.9405,21
+50253,178125.3242,136144.5029,53652.33288,21
+50254,178823.8221,135897.0877,159785.9443,21
+50255,179572.8014,217717.5249,108583.702,21
+50256,180238.3174,142114.0817,119693.674,21
+50257,181219.1478,161465.99,62644.45578,21
+50258,181897.65,165960.7358,756440.5061,21
+50259,182704.3048,162814.1617,105377.6903,21
+50260,27967.2201,162471.5874,121125.7145,21
+50261,28073.88561,162253.8656,63605.1915,21
+50262,28144.06117,162617.8532,161745.6133,21
+50263,28252.42101,161946.7385,104281.5919,21
+50264,657922.0782,161985.8896,119801.6094,21
+50265,89243.26753,162099.2514,63747.29928,21
+50266,65870.59162,161853.6506,159413.9233,21
+50267,273058.1105,161609.0185,103456.4046,21
+50268,177755.4842,26784.30073,118635.662,21
+50269,161691.509,26791.77457,63886.72102,21
+50270,163344.8229,26793.05959,157422.3703,21
+50271,244862.6537,26796.49047,102759.005,21
+50272,186232.1725,26710.75318,117661.9297,21
+50273,185305.3112,556048.6629,64059.7072,21
+50274,200109.1327,26614.72706,155716.9943,21
+50275,195199.8111,84051.69895,102138.0941,21
+50276,196563.9945,218480.4757,116880.3066,21
+50277,196803.8904,153693.792,64200.36052,21
+50278,197757.7704,158284.8985,154213.9053,21
+50279,198586.0109,159911.3029,101690.4059,21
+50280,199252.3585,159506.8105,116139.5223,15.6
+50281,199769.0908,159183.63,64449.34213,15.6
+50282,200140.237,158359.6235,0,15.6
+50283,200843.1482,158121.9501,0,15.6
+50284,201343.2499,156841.2284,0,15.6
+50285,201931.7984,130458.3312,0,15.6
+50286,202079.655,129717.0612,193798.9994,15.6
+50287,202958.3315,129251.6806,94714.81444,15.6
+50288,203132.5912,224712.8115,111476.4913,15.6
+50289,203872.9521,139753.4066,70242.28963,15.6
+50290,204286.2108,135163.2098,152339.0164,15.6
+50291,204848.6136,164752.7658,102104.2661,15.6
+50292,205291.143,150099.3417,116007.1567,15.6
+50293,205826.09,150996.8494,65677.86527,15.6
+50294,30372.43617,150712.5273,151839.8762,15.6
+50295,30468.27527,149865.5347,101761.5079,15.6
+50296,30494.55253,149346.8087,115546.487,15.6
+50297,667217.2207,148581.7323,65921.97641,15.6
+50298,90609.98136,147669.4013,151021.7136,15.6
+50299,116009.542,147367.1939,101522.2736,15.6
+50300,278979.956,146285.2453,115319.4289,15.6
+50301,167909.5953,145900.9411,66181.42503,15.6
+50302,179113.1075,144879.7072,150410.9464,15.6
+50303,263554.7877,24567.85335,101474.9356,15.6
+50304,208700.1027,24540.4159,115110.4615,15.6
+50305,200865.3058,24414.78671,66512.53629,15.6
+50306,217694.7326,24319.88175,149922.2623,15.6
+50307,212401.4365,24353.81266,101466.5005,15.6
+50308,213440.3393,24132.42998,115053.095,15.6
+50309,213387.0108,24072.24004,66811.79545,15.6
+50310,214109.0786,516396.6748,149551.0197,15.6
+50311,214481.9986,23898.12219,101545.4145,15.6
+50312,214996.0935,71743.26382,672115.583,15.6
+50313,215255.3892,157054.8546,67863.0353,15.6
+50314,216364.8409,151874.3609,154184.2936,15.6
+50315,215768.4432,128421.061,104060.5666,15.6
+50316,217257.4432,134864.8859,0,15.6
+50317,216978.1312,134433.9602,0,15.6
+50318,217876.7679,110041.455,0,15.6
+50319,218153.5104,109496.8525,0,15.6
+50320,218432.1735,108690.8441,167051.8068,15.6
+50321,219341.9553,192204.6871,57208.12999,15.6
+50322,219026.7584,112642.506,151588.7377,15.6
+50323,220411.3263,117370.76,109439.4817,15.6
+50324,220057.7437,137908.1183,118357.0057,15.6
+50325,221024.4067,125656.5887,69179.30926,15.6
+50326,221164.6302,127157.6912,154192.5557,15.6
+50327,32143.52167,125748.1724,104895.1922,15.6
+50328,32180.96448,125235.1714,118577.6001,15.6
+50329,32213.9419,124726.7533,69342.01267,15.6
+50330,707784.2717,123540.0377,153621.362,15.6
+50331,117051.3024,122945.8499,104764.2201,15.6
+50332,125892.7631,121724.4405,118443.7034,15.6
+50333,262003.7362,120987.8806,69638.79151,15.6
+50334,182337.1981,119511.1398,153230.2957,15.6
+50335,278646.9652,119455.4293,104790.2589,15.6
+50336,227379.6911,117703.9567,118426.337,15.6
+50337,214229.8843,117065.5776,69920.9134,15.6
+50338,232788.5516,115724.1379,153017.0789,15.6
+50339,227472.0097,114578.8796,104867.5507,15.6
+50340,227661.2647,20855.61384,118481.0404,15.6
+50341,228077.8483,20941.29497,70226.16424,15.6
+50342,227945.199,20939.48,152907.1179,15.6
+50343,228223.8462,21001.11333,105022.3111,15.6
+50344,227873.9305,20988.46599,118631.5705,15.6
+50345,228009.953,20959.58614,70603.70303,15.6
+50346,228378.5825,21034.24879,152882.5207,15.6
+50347,227992.4005,20962.99581,105222.7909,15.6
+50348,228483.6728,21114.35014,118848.3481,15.6
+50349,228242.1574,21091.28589,70969.34614,15.6
+50350,228464.6953,21082.19703,0,15.6
+50351,228338.8504,0,0,15.6
+50352,228421.7108,0,0,15.6
+50353,228646.6834,7.449938959,0,15.6
+50354,228607.1505,76331.65448,209903.9288,15.6
+50355,228499.4322,372986.3197,95765.52475,15.6
+50356,228631.8432,27891.29509,113307.5121,15.6
+50357,228787.5491,81529.50173,78014.46059,15.6
+50358,228826.3845,112029.8382,153902.5915,15.6
+50359,228914.9049,139057.8764,106913.7607,15.6
+50360,32983.21437,108911.1702,120231.2278,15.6
+50361,32924.02387,117507.7182,72462.26013,15.6
+50362,32981.25457,117738.2418,154300.5108,15.6
+50363,721683.3065,117691.2815,106965.6021,15.6
+50364,127821.7269,117498.8311,120457.3286,15.6
+50365,102319.5011,117858.6237,72744.38969,15.6
+50366,261304.7745,118163.0081,154355.0897,15.6
+50367,273644.9678,118307.9288,662420.7905,15.6
+50368,231317.6668,118315.1902,124111.8626,15.6
+50369,217581.1476,118348.6492,73894.56925,15.6
+50370,235092.9284,118845.286,159373.4418,15.6
+50371,229839.2055,118676.553,109939.458,15.6
+50372,229552.5083,118930.5075,124062.8319,15.6
+50373,229737.8705,119159.0678,74211.82843,15.6
+50374,230106.4324,119434.4161,159191.2717,15.6
+50375,229737.839,119557.4317,110012.6584,15.6
+50376,229888.0769,119333.1243,124171.0995,15.6
+50377,229879.0475,120118.3818,74479.94199,15.6
+50378,229849.6066,119791.0076,159099.2292,15.6
+50379,230254.7673,120520.7522,110148.0021,15.6
+50380,229671.6927,120016.4249,124254.5817,15.6
+50381,230006.2243,120793.7437,74866.776,15.6
+50382,230130.7026,120664.1076,159011.3977,15.6
+50383,229849.8976,120967.8822,110327.6725,15.6
+50384,230479.2597,99032.36896,0,15.6
+50385,231953.3969,77.72802168,0,15.6
+50386,231923.2469,0,0,15.6
+50387,231930.3804,78903.017,0,15.6
+50388,232127.1538,2656.264664,189535.2641,15.6
+50389,232193.8604,13954.51339,65193.97439,15.6
+50390,232148.3027,29382.08326,150432.0361,15.6
+50391,232004.554,20844.53178,119460.827,15.6
+50392,232647.4697,21965.00211,124919.0219,15.6
+50393,33352.47371,22084.36989,76126.21859,15.6
+50394,33331.335,22037.91442,160355.6109,15.6
+50395,33304.1238,22131.67275,111735.3763,15.6
+50396,725895.4833,444109.9871,125715.7112,15.6
+50397,111715.2301,29714.88441,76469.73659,15.6
+50398,97661.37436,69311.38153,160215.0409,15.6
+50399,351014.015,129573.2651,111841.4959,15.6
+50400,228145.8904,145067.226,125866.4844,15.6
+50401,220759.6148,118755.6922,76747.18923,15.6
+50402,238715.9355,564403.5159,160271.1946,15.6
+50403,233156.3057,130411.2446,111980.9511,15.6
+50404,233583.0008,131867.8723,126118.3977,15.6
+50405,233366.3451,133952.4525,77011.80494,15.6
+50406,233257.2303,134815.4343,160367.2115,15.6
+50407,233341.6064,136764.0311,112227.766,15.6
+50408,233332.6542,138101.9288,126331.9122,15.6
+50409,233114.3924,139649.2747,77340.4532,15.6
+50410,233574.4412,140869.6325,160492.3531,15.6
+50411,233071.5388,143120.1417,112512.3738,15.6
+50412,233399.3005,143593.6884,126561.8215,15.6
+50413,233122.6084,146168.1019,77647.96345,15.6
+50414,233568.1,146861.2167,160718.9336,15.6
+50415,232969.8328,148626.3628,112777.5951,15.6
+50416,233476.7493,150296.2192,126816.8316,15.6
+50417,233655.0722,126504.9244,77978.27528,15.6
+50418,232932.0036,127670.9834,0,15.6
+50419,233676.1013,129297.5526,0,15.6
+50420,233020.2283,222818.6059,0,15.6
+50421,233547.2726,140770.8652,139601.1858,15.6
+50422,233177.4093,144803.3917,149789.2918,15.6
+50423,233065.7996,170486.2654,673230.7314,15.6
+50424,233726.6732,160015.8486,138371.0332,15.6
+50425,233317.2818,163105.5722,79114.6196,15.6
+50426,33576.2838,26795.98402,168514.0858,15.6
+50427,33514.39721,26881.24432,117349.1421,15.6
+50428,33531.88053,27104.28849,132085.0282,15.6
+50429,695636.6505,27188.47603,80148.61927,15.6
+50430,119341.651,27420.23379,167898.2031,15.6
+50431,176890.6671,617093.853,117172.5111,15.6
+50432,305525.996,27640.64748,131952.9399,15.6
+50433,212906.8704,77998.66885,80332.7372,15.6
+50434,238718.9696,258725.6316,167560.3346,15.6
+50435,234129.1602,162355.2517,117122.9614,15.6
+50436,233368.9307,180373.6196,131961.0584,15.6
+50437,234099.8138,181446.0892,80500.99397,15.6
+50438,233366.7699,183340.2751,167367.567,15.6
+50439,233712.2427,184277.698,117122.9533,15.6
+50440,233887.4187,186321.1725,132025.0761,15.6
+50441,233075.4043,187572.9044,80706.96904,15.6
+50442,233836.2371,188818.0397,167254.1629,15.6
+50443,233502.4151,190125.3673,117230.9772,15.6
+50444,233460.0694,192056.9566,132017.4684,15.6
+50445,233221.7959,193062.5012,81051.52211,15.6
+50446,233742.8957,195058.453,167124.9096,15.6
+50447,233518.8885,195828.0162,117373.8556,15.6
+50448,232965.6457,197721.8976,108841.2146,15.6
+50449,233549.1659,199244.4922,114155.0533,15.6
+50450,233323.7406,169945.7595,113173.2491,15.6
+50451,233319.0914,171106.3439,0,15.6
+50452,233384.3852,262900.4584,0,15.6
+50453,233102.6223,185740.7436,0,15.6
+50454,233398.1932,202791.7363,709364.0331,15.6
+50455,232957.2039,212595.5787,80518.81506,15.6
+50456,233518.7924,208689.9837,194907.9915,15.6
+50457,232780.0845,211067.5456,92292.55341,15.6
+50458,233178.2427,212644.1036,172833.5827,15.6
+50459,33775.50745,213914.949,138977.8592,15.6
+50460,33682.84191,215618.5099,153286.9971,15.6
+50461,0,32199.03271,84994.14009,15.6
+50462,696301.4373,32183.19329,177942.9235,15.6
+50463,202017.1133,32087.5755,129825.3175,15.6
+50464,126397.8181,32003.88445,116467.3668,15.6
+50465,288113.8606,757116.625,123470.5959,15.6
+50466,229888.9967,68485.74989,121905.0758,15.6
+50467,232790.6191,78534.96748,121728.9581,15.6
+50468,232835.6598,300525.7742,121822.4709,15.6
+50469,232760.0714,192429.31,120558.8146,15.6
+50470,232885.2769,204626.6002,124033.2716,15.6
+50471,233197.53,204429.5842,122087.7446,15.6
+50472,232605.0093,203322.542,661080.2223,15.6
+50473,233355.557,202834.4008,91744.0808,15.6
+50474,233271.3266,201103.9247,234196.5742,15.6
+50475,232637.3374,200700.4692,91833.11545,15.6
+50476,233738.6829,198918.9282,190246.8243,15.6
+50477,233080.8894,198495.8335,144898.4356,15.6
+50478,233602.8983,197070.8676,163693.6,15.6
+50479,233179.4997,196254.7923,92592.69468,15.6
+50480,233607.865,194922.376,808096.5758,15.6
+50481,233363.3897,194205.5742,141330.2905,15.6
+50482,234071.0305,163042.2495,126988.4138,15.6
+50483,233493.1477,161761.2369,134551.6157,15.6
+50484,233582.4749,249534.2856,0,15.6
+50485,234210.4963,169345.772,0,15.6
+50486,233599.7973,185962.8795,0,15.6
+50487,234168.55,191637.0219,216680.0175,15.6
+50488,234269.7517,186764.8737,180826.5797,15.6
+50489,233631.2451,185250.4032,82147.21477,15.6
+50490,234760.7623,184987.1443,204205.3798,15.6
+50491,233936.0599,183492.681,151299.2852,15.6
+50492,34129.02899,182532.8044,165175.2252,15.6
+50493,0,181631.3933,96893.83366,15.6
+50494,0,180397.349,197132.622,15.6
+50495,790237.6766,28634.53214,140249.5327,15.6
+50496,163721.6955,28502.33578,1165143.078,15.6
+50497,105370.1435,28414.36559,700050.6372,15.6
+50498,312343.5314,28297.95003,720604.917,15.6
+50499,226896.338,612717.0712,800914.7997,15.6
+50500,235132.1084,28140.88594,842045.4926,15.6
+50501,235438.2606,77559.18968,831206.2908,15.6
+50502,235197.0902,251285.7135,859218.4659,15.6
+50503,235591.6475,156223.973,877651.9066,15.6
+50504,235316.0124,170333.0661,896214.0616,15.6
+50505,235560.5355,168913.9198,912756.2731,15.6
+50506,235713.2002,168214.9805,1619438.154,15.6
+50507,235411.9463,166963.4809,958691.4498,15.6
+50508,235802.9944,166015.7526,1231790.56,15.6
+50509,235815.1576,164643.8833,971675.7895,15.6
+50510,235707.0605,163598.1256,987859.4136,15.6
+50511,235845.5992,162249.9374,1001819.695,15.6
+50512,235853.526,161336.1823,1154046.597,15.6
+50513,236066.5025,159606.2255,1018229.45,15.6
+50514,235679.2887,132767.1053,1031240.012,15.6
+50515,236281.0499,131075.7338,1043662.626,15.6
+50516,236017.9047,130463.5085,1056005.34,15.6
+50517,236232.5936,223569.0093,924778.8544,15.6
+50518,236185.0291,138037.4095,934818.8165,15.6
+50519,675192.8914,136460.5879,943424.5705,15.6
+50520,236568.9856,161419.5948,1227768.781,15.6
+50521,236780.688,150978.2577,1160511.396,15.6
+50522,236986.2967,154167.0143,1151503.562,15.6
+50523,238023.1293,156198.7849,1117916.263,15.6
+50524,237978.8117,157146.8556,1111657.514,15.6
+50525,0,158600.909,1118604.399,15.6
+50526,0,160268.5038,232894.6419,15.6
+50527,87845.66883,161712.3351,226519.6268,15.6
+50528,753529.8394,163005.1381,223941.688,15.6
+50529,168048.4866,27140.40587,222229.4857,15.6
+50530,117817.7461,27315.24217,220673.5074,15.6
+50531,318337.484,27463.73393,219229.4682,15.6
+50532,233601.5986,27610.95608,870329.9916,15.6
+50533,242728.2101,27795.42181,1686056.082,15.6
+50534,243561.2573,628299.7164,1285831.946,15.6
+50535,243903.4031,28067.24059,1006905.911,15.6
+50536,244285.0167,67988.25516,1156350.236,15.6
+50537,244650.7959,259476.6045,1097048.965,15.6
+50538,245248.3023,161604.0768,1256517.409,15.6
+50539,245671.0844,177465.5891,2008513.115,15.6
+50540,246089.4596,179858.5956,1098981.131,15.6
+50541,246144.1638,180834.5652,1107569.709,15.6
+50542,247040.4535,182381.7162,1116125.803,15.6
+50543,247267.3392,183097.7191,1124415.422,15.6
+50544,247817.1838,185343.2496,1131391.364,15.6
+50545,248156.9468,185543.6738,1138505.072,15.6
+50546,248651.0743,187665.2778,1149814.011,15.6
+50547,249076.7733,158617.5961,1233755.08,15.6
+50548,249396.2416,160240.9397,1154599.772,15.6
+50549,249862.9551,248965.2974,1160791.435,15.6
+50550,250511.597,172008.9635,1169227.603,15.6
+50551,251013.4774,191877.2579,1008110.424,15.6
+50552,251133.873,198453.6064,1013831.474,15.6
+50553,251765.5926,196621.6915,1304814.195,15.6
+50554,252270.7646,197557.9953,1184307.845,15.6
+50555,252427.4422,199260.3663,1160333.931,15.6
+50556,253098.0649,200036.5062,1200186.065,15.6
+50557,216689.2083,202154.5688,1192845.116,15.6
+50558,0,202729.9817,1197210.406,15.6
+50559,90065.78524,204479.8949,1201449.863,15.6
+50560,45972.57616,205640.018,1206409.908,15.6
+50561,768327.4307,206850.3002,1209631.957,15.6
+50562,245141.0571,207943.3127,1974330.149,15.6
+50563,92219.33167,209977.8205,160536.2254,15.6
+50564,345022.7,32420.28463,479590.9207,15.6
+50565,248165.8407,32562.6243,157160.1535,15.6
+50566,257801.9367,32638.24978,364726.7352,15.6
+50567,258187.9673,32899.95478,263937.915,15.6
+50568,258439.4773,774790.8712,307524.101,15.6
+50569,259374.7394,74391.17407,1758915.007,15.6
+50570,259544.4987,83399.00218,1054434.335,15.6
+50571,260108.8802,318717.6769,1111710.249,15.6
+50572,260111.1846,204867.0155,1220999.501,15.6
+50573,260953.4781,222108.9419,1184402.867,15.6
+50574,261361.3159,223680.895,1190422.714,15.6
+50575,261277.7508,225330.8986,1200444.108,15.6
+50576,262396.5238,226478.4189,1211131.199,15.6
+50577,262267.8369,227699.5183,1213224.86,15.6
+50578,262978.6638,229123.8484,1219066.853,15.6
+50579,263440.8941,195498.1428,1284994.84,15.6
+50580,265757.1439,196854.723,1293691.184,15.6
+50581,264502.5503,296665.2274,1225987.193,15.6
+50582,265432.7836,212353.3601,1233887.922,15.6
+50583,263716.1521,221091.5504,1078263.051,15.6
+50584,264690.3092,232985.6442,1084172.498,15.6
+50585,262863.0056,225677.6594,1375719.164,15.6
+50586,263413.3752,224926.943,1238174.236,15.6
+50587,262688.0771,224416.9683,1253411.731,15.6
+50588,262322.0978,222844.7587,1274158.202,15.6
+50589,224325.5313,221797.8687,1270370.721,15.6
+50590,223345.1896,220995.2804,2033816.387,15.6
+50591,91399.67984,219489.2931,1290363.529,15.6
+50592,48314.12416,218533.4976,1598758.788,15.6
+50593,25820.55396,217593.8996,1270831.967,15.6
+50594,794512.4892,216301.4956,1275900.224,15.6
+50595,272302.1504,215362.8468,1281455.439,15.6
+50596,83057.17869,214570.8088,1442267.397,15.6
+50597,343069.9222,212622.2372,1277462.583,15.6
+50598,254508.5275,32778.60578,1283175.342,15.6
+50599,257648.3557,32721.12236,265045.6779,15.6
+50600,257659.9227,32574.96446,1157362.195,15.6
+50601,258095.8387,32439.8484,237685.263,15.6
+50602,257262.9496,762542.0303,231679.5846,15.6
+50603,257094.6176,64165.77583,229119.7081,15.6
+50604,256377.3773,69467.78633,1881303.632,15.6
+50605,256118.3012,300536.4702,1108303.37,15.6
+50606,255745.6993,188383.7737,1199646.525,15.6
+50607,255279.7278,201313.3917,1302747.733,15.6
+50608,254644.9128,201576.0044,1264554.328,15.6
+50609,254439.7084,199926.9364,1274602.039,15.6
+50610,254124.1984,198890.1802,1284038.15,15.6
+50611,253377.5529,166754.8874,1292012.826,15.6
+50612,253167.4479,165553.7661,1300303.886,15.6
+50613,252732.2553,255676.7581,1305995.449,15.6
+50614,252270.6515,174889.3778,1313602.185,15.6
+50615,252129.9019,188858.4101,1149782.879,15.6
+50616,251325.5373,196912.6042,1155460.358,15.6
+50617,250998.2946,190501.3759,1451405.84,15.6
+50618,250740.0953,189643.3419,1321640.551,15.6
+50619,250400.194,188905.5417,1330934.432,15.6
+50620,249115.1766,187630.6304,1352334.227,15.6
+50621,213317.1389,186218.91,1348430.11,15.6
+50622,211893.0555,185456.883,1353304.187,15.6
+50623,302495.3638,183696.1777,1357091.94,15.6
+50624,45167.08203,183025.8598,1360893.36,15.6
+50625,24360.04352,182001.6352,1365483.187,15.6
+50626,40591.6662,180837.2363,1368299.136,15.6
+50627,765024.7892,180958.3851,1372057.744,15.6
+50628,223304.4415,178858.9355,1375669.813,15.6
+50629,89643.82424,178001.0393,1378588.65,15.6
+50630,331648.6568,177022.1651,1381716.065,15.6
+50631,236155.6557,175550.0426,1385182.78,15.6
+50632,245035.1783,29835.37249,1387922.209,15.6
+50633,245107.1775,29819.8377,1390846.286,15.6
+50634,243835.9471,29647.31265,246355.8981,15.6
+50635,244203.1235,29706.53473,244707.6832,15.6
+50636,245028.1921,29444.04363,243185.943,15.6
+50637,243368.3705,649692.412,241513.5781,15.6
+50638,243798.3429,29351.08516,240013.1532,15.6
+50639,243032.2692,43932.77837,2104958.057,15.6
+50640,242689.0113,248294.5619,1216351.206,17.8
+50641,244071.6501,152141.0231,1294619.253,17.8
+50642,244249.496,162239.9797,1421421.242,17.8
+50643,245507.4693,135125.0273,1372932.862,17.8
+50644,246250.5415,135164.3325,1377607.41,17.8
+50645,247369.3992,134988.2875,1384421.981,17.8
+50646,248191.2337,234097.5888,1389855.153,17.8
+50647,248993.0133,147752.8671,1216744.409,17.8
+50648,249759.924,145538.8514,1220769.359,17.8
+50649,250960.8448,174469.8223,1521224.609,17.8
+50650,251597.9662,161090.0681,1397606.4,17.8
+50651,252850.912,162791.2135,1398684.07,17.8
+50652,253184.7736,162758.0381,1421726.455,17.8
+50653,215336.653,164537.1465,1416454.045,17.8
+50654,216014.7579,165759.5143,1420104.88,17.8
+50655,307841.265,164918.2208,1422515.374,17.8
+50656,265094.988,165066.8242,1426648.632,17.8
+50657,25802.72211,165309.1015,1428687.498,17.8
+50658,41196.42344,165392.1202,1431436.517,17.8
+50659,39080.86824,165605.3449,2342951.371,17.8
+50660,786115.7996,165435.65,1413119.041,17.8
+50661,265306.2415,165951.9385,1418235.138,17.8
+50662,89803.32053,165564.0045,1422844.174,17.8
+50663,350488.862,165941.4574,1427578.954,17.8
+50664,257989.0542,165972.4688,1431076.884,17.8
+50665,265078.1261,165909.2347,1435787.384,17.8
+50666,266696.4963,166509.1821,1439084.404,17.8
+50667,267871.1344,30363.16768,1442803.37,17.8
+50668,268671.0145,30401.28885,1446184.747,17.8
+50669,269363.0178,30512.16568,247264.847,17.8
+50670,270516.7983,30523.69214,245767.9335,17.8
+50671,271307.2861,30502.18059,244213.8224,17.8
+50672,272028.2367,620923.6513,242673.4076,17.8
+50673,273134.1781,30614.06966,2250823.598,17.8
+50674,273712.4303,57475.7688,1258456.363,17.8
+50675,275076.9301,236899.7512,1320883.703,17.8
+50676,275532.4431,131044.3931,1512688.062,17.8
+50677,276791.0851,133090.0991,1420390.085,17.8
+50678,277710.1244,136835.6143,1438318.94,17.8
+50679,277955.1383,236640.9299,1261696.33,17.8
+50680,279834.5682,149695.3706,1267533.209,17.8
+50681,280131.8102,147283.6623,1571865.644,17.8
+50682,280959.6967,176552.7433,1460789.582,17.8
+50683,282266.7643,162894.2563,1447027.153,17.8
+50684,622067.6536,170665.9025,1480362.876,17.8
+50685,239991.8368,167306.4817,1474110.547,17.8
+50686,240614.2164,168017.9242,1478197.411,17.8
+50687,336224.8457,168314.5883,1481897.362,17.8
+50688,293877.4774,168563.7427,1485506.248,17.8
+50689,279466.4519,168423.829,1488621.301,17.8
+50690,45284.05248,168646.6251,1491897.319,17.8
+50691,47848.14921,168675.651,1495199.126,17.8
+50692,44774.95712,168604.8761,1497714.444,17.8
+50693,827487.0205,169029.8003,1500891.587,17.8
+50694,361923.9054,169019.2828,1503301.127,17.8
+50695,103060.9288,168686.9987,1506291.856,17.8
+50696,380497.5276,169559.3612,1508625.4,17.8
+50697,290740.8837,169231.3875,1511116.703,17.8
+50698,296574.1855,169166.0283,1513460.954,17.8
+50699,296996.9918,169362.9846,1515798.592,17.8
+50700,298560.9365,169818.4134,1518396.501,20
+50701,296174.0833,169170.3554,1518283.561,20
+50702,297204.3972,31956.98827,1519917.039,20
+50703,297007.8154,32028.03397,254144.0781,20
+50704,297546.0817,32037.45009,1150863.472,20
+50705,297442.8464,32172.11249,245110.6705,20
+50706,297802.5195,32019.5216,243479.907,20
+50707,298395.5845,635116.5964,2406740.244,20
+50708,298530.459,32151.87355,1316825.273,20
+50709,298384.6662,23208.23018,1299220.743,20
+50710,299116.3667,217109.9225,1580916.435,20
+50711,299575.9833,211648.4116,1272296.871,20
+50712,299038.3241,142894.0558,1288355.159,20
+50713,300077.8196,166766.6624,1596727.182,20
+50714,300055.1333,177761.8735,1497418.006,20
+50715,300287.6998,170729.9994,1469310.027,20
+50716,300555.4676,171432.062,1511017.705,20
+50717,253722.6922,171884.7504,1500437.625,20
+50718,253565.0373,172133.9001,1504783.07,20
+50719,349539.6569,171850.5477,1507664.293,20
+50720,308788.1051,172478.3086,1510368.685,20
+50721,305429.7884,171946.7302,1513389.296,20
+50722,298849.0747,172537.3706,1515738.832,20
+50723,51886.58548,172453.4118,1518162.4,20
+50724,48747.99447,172519.6456,1519689.063,20
+50725,760580.704,172767.0381,1521975.324,20
+50726,250121.9773,172587.4373,1523088.211,20
+50727,218462.497,173306.1438,1525783.75,20
+50728,352468.0053,172739.6842,1526075.154,20
+50729,641449.261,173374.0959,1528061.558,20
+50730,305627.9629,172945.4209,1529408.986,20
+50731,306105.2099,173996.1953,1530122.433,20
+50732,306169.4764,173062.471,1531017.251,20
+50733,306228.3657,173515.4568,1532638.803,20
+50734,307096.9542,173711.2153,1533521.842,20
+50735,306759.5785,174057.4409,1534093.85,20
+50736,307130.0327,173659.9071,1534825.65,20
+50737,307511.5248,33455.22159,257164.0959,20
+50738,307562.6576,33428.86008,255234.4165,20
+50739,307733.8792,33516.45037,253592.8747,20
+50740,308752.834,33567.88047,251484.3621,20
+50741,307957.2215,0,2514549.198,20
+50742,309138.2819,619229.0068,1360180.307,20
+50743,308707.4944,83523.6313,1119128.905,20
+50744,309384.8068,25585.30155,2159546.168,20
+50745,309804.3911,263949.8894,1615479.53,20
+50746,309469.102,164833.7043,1794728.046,20
+50747,310352.7705,173460.7988,1465969.994,20
+50748,309992.2053,175590.8634,1511678.171,20
+50749,260910.3627,175601.9653,1503011.327,20
+50750,261059.497,175763.1896,2383253.854,20
+50751,356680.5029,176046.0161,1490402.161,20
+50752,323073.93,176122.5271,1496774.778,20
+50753,317698.8347,176098.7927,1503439.878,20
+50754,306337.9662,176353.8479,1508010.964,20
+50755,55414.01964,176199.4654,1513120.847,20
+50756,51573.55906,176315.2004,1517793.225,20
+50757,775605.7366,176804.2689,1521512.113,20
+50758,274306.7902,176399.1586,1528060.556,20
+50759,216668.6033,176778.0959,1528121.283,20
+50760,365900.716,176848.6829,1530343.162,21
+50761,307885.814,174469.8776,1580598.357,21
+50762,311459.9523,174199.3701,1604136.485,21
+50763,310708.5098,174653.7533,1520655.702,21
+50764,311173.7374,175069.4089,1524504.739,21
+50765,310539.4318,174846.8436,1526779.17,21
+50766,310371.0525,175149.8213,1530516.082,21
+50767,310170.2973,175413.1984,1532386.535,21
+50768,309896.3678,175941.9928,1535291.023,21
+50769,310267.8097,175396.8341,1536681.387,21
+50770,309239.4071,176129.4272,1538107.524,21
+50771,309481.2834,176351.5843,918092.9754,21
+50772,311479.9822,34339.63775,196857.8778,21
+50773,310515.3974,0,481811.9117,21
+50774,310847.197,0,192149.029,21
+50775,310781.2965,84362.4428,2337785.825,21
+50776,310200.3356,7336.236198,1176220.371,21
+50777,310017.1345,663965.0905,1579321.147,21
+50778,310405.5524,38109.53054,1614593.464,21
+50779,309432.6819,53986.87011,1468119.688,21
+50780,309782.3837,270056.0329,1513337.114,21
+50781,258883.7773,162739.0298,1508483.851,21
+50782,258252.1558,177828.4571,1513563.163,21
+50783,354642.8888,178929.609,1517970.824,21
+50784,322583.3961,179672.3814,1521043.074,21
+50785,313293.561,179018.2621,1526772.757,21
+50786,303241.5573,179586.4281,1527611.086,21
+50787,55766.83814,179815.9216,1530144.473,21
+50788,51917.91621,179956.314,1532629.307,21
+50789,763254.4188,180490.1282,2261097.619,21
+50790,261217.3355,180102.5252,1553852.564,21
+50791,218389.9768,180922.677,1817570.902,21
+50792,356839.7977,180561.4455,1520886.963,21
+50793,304919.4147,181235.3345,1523705.458,21
+50794,307508.061,181036.5088,1527165.778,21
+50795,308005.0783,181802.3081,1665182.54,21
+50796,307074.4637,181536.0775,1515570.074,21
+50797,305343.4893,181691.9246,1519106.773,21
+50798,305351.6591,182553.5081,1522148.313,21
+50799,304624.8058,181946.398,1525576.535,21
+50800,304734.8414,182891.8426,1527450.026,21
+50801,304400.2719,182584.6821,1530439.943,21
+50802,304299.7655,183069.5857,1531882.33,21
+50803,303742.7282,183237.2879,1535652.174,21
+50804,303852.309,183740.0665,1534355.537,21
+50805,303414.7354,147525.3961,253068.8045,21
+50806,303477.1159,148436.2672,247163.8116,21
+50807,302703.9941,86244.85046,706871.4792,21
+50808,303514.8876,10086.15487,0,21
+50809,302111.4512,38198.59596,2810990.103,21
+50810,302717.66,38219.61104,1333181.751,21
+50811,301965.3975,35661.56462,1348392.346,21
+50812,302156.7394,698387.9441,1600969.177,21
+50813,250924.7831,36071.76583,1496027.833,21
+50814,250299.827,70708.33587,1505460.725,21
+50815,349724.3905,267131.1063,1512944.643,21
+50816,314811.3015,177164.5634,1516791.264,21
+50817,302139.2407,184377.3338,1520081.852,21
+50818,297364.8405,187027.6995,2380031.622,21
+50819,55713.99715,187658.467,1504150.579,21
+50820,51882.31281,187357.6754,1509272.001,21
+50821,51965.19005,187702.8147,1517070.739,21
+50822,839829.6509,188144.8924,1517448.928,21
+50823,368593.2208,188150.4113,1521503.293,21
+50824,111546.282,188823.8723,1572638.529,21
+50825,384602.8072,188558.1353,1594278.693,21
+50826,296289.7302,189457.2333,1602503.216,21
+50827,299694.5625,189042.0186,1512721.024,21
+50828,299787.001,189600.7397,1517584.447,21
+50829,298866.9246,189863.5702,1663941.408,21
+50830,299416.4671,190256.4451,1510078.795,21
+50831,298066.5895,190150.3791,1516611.347,21
+50832,298489.7962,190960.079,1522266.933,21
+50833,298149.1205,190845.0953,1527543.552,21
+50834,297713.7079,191104.375,1531871,21
+50835,296985.6158,191703.6139,1536424.3,21
+50836,297295.6367,191339.0196,1540493.611,21
+50837,296873.7179,154973.7742,1543955.245,21
+50838,296297.9509,154960.443,1547149.829,21
+50839,296507.128,243751.3443,0,21
+50840,295814.9075,171092.3395,706081.9425,21
+50841,295317.1122,192913.8239,309596.4665,21
+50842,295458.4681,40885.98561,472248.1749,21
+50843,294933.9633,37368.96966,2457998.389,21
+50844,296598.7631,37730.98788,1381687.223,21
+50845,244833.3187,37831.83349,1374599.896,21
+50846,244637.3758,670098.5578,1764779.395,21
+50847,347304.0799,37895.5755,1512908.261,21
+50848,307119.2172,94919.84631,1525332.575,21
+50849,294501.0801,279327.5358,1536139.374,21
+50850,293244.0567,180092.3537,1660795.525,21
+50851,298358.3518,196447.8162,1533589.73,21
+50852,51238.83955,196522.8188,1539986.863,21
+50853,50844.88747,197167.0787,1546635.8,21
+50854,50632.95311,197642.796,1670341.552,21
+50855,813404.1204,197372.2805,1542778.547,21
+50856,351638.3252,197722.2032,1549707.427,21
+50857,74848.75603,198250.255,1545429.722,21
+50858,364764.9715,198168.333,1548142.732,21
+50859,282001.7265,198800.6117,1551079.5,21
+50860,276595.59,198845.1893,1553259.974,21
+50861,278365.4172,199246.9565,1555089.035,21
+50862,277033.5335,199505.7858,1557084.325,21
+50863,275675.4051,199524.167,1558025.312,21
+50864,275065.3649,200014.9696,2276974.255,21
+50865,273253.6279,200356.7358,1579276.748,21
+50866,272477.244,200391.2159,1832724.071,21
+50867,271149.7675,200977.8179,1544229.31,21
+50868,270071.587,201222.1738,1546425.081,21
+50869,267110.2705,162017.8741,1547839.62,21
+50870,265844.493,162874.7259,1681175.742,21
+50871,264637.3138,253899.5881,1341088.839,21
+50872,263373.5599,184928.0523,1344336.421,21
+50873,262387.0691,198725.278,1241332.142,21
+50874,260693.5693,207161.7055,317102.1266,21
+50875,259968.8689,202472.2172,165744.5923,21
+50876,258143.4445,39512.00502,363371.9856,21
+50877,210187.0317,39561.18157,2247566.745,21
+50878,209042.6847,39542.99702,1490384.915,21
+50879,311244.0891,39700.16096,1310122.169,21
+50880,260095.0036,710520.7803,1557678.28,21
+50881,243973.8787,39851.53973,1458097.427,21
+50882,255513.974,106664.0912,1462119.392,21
+50883,253073.4836,288330.9254,1463376.412,21
+50884,251258.8418,190180.5097,1461274.532,21
+50885,46818.22666,206069.5799,1459425.359,21
+50886,46564.43611,205908.2733,1455459.597,21
+50887,46397.10686,206751.7265,1451729.552,21
+50888,709982.3085,206465.1353,2158851.083,21
+50889,247725.0964,207046.4705,1462193.988,21
+50890,103838.2776,206923.426,1707459.282,21
+50891,316639.6396,207169.5291,1418365.358,21
+50892,242183.7166,207703.6185,1414465.734,21
+50893,244338.7597,207543.5601,1409269.723,21
+50894,244884.0634,207767.1086,1404395.153,21
+50895,243900.0191,208316.8862,1399012.801,21
+50896,243175.3086,208281.7087,1393503.423,21
+50897,242186.8986,208498.4842,1387342.958,21
+50898,241838.3207,209057.8533,1381197.357,21
+50899,240662.2769,208642.441,1374492.78,21
+50900,239799.7113,209552.8227,1368532.609,21
+50901,238946.9489,168471.1231,1362037.09,21
+50902,238340.9132,169022.1092,1358267.434,21
+50903,237023.9404,266244.4668,1246706.767,21
+50904,236963.1756,192225.231,1165097.805,21
+50905,235168.7949,206022.591,1430892.326,21
+50906,234677.1756,215177.713,1322790.534,21
+50907,233849.7743,210273.6903,231356.1878,21
+50908,232751.1305,211361.6815,245620.9151,21
+50909,188582.1467,211038.3844,233228.0115,21
+50910,187200.1281,41182.95431,230461.3359,21
+50911,283987.4942,41189.09352,1721003.184,21
+50912,231918.4428,41343.075,1871622.239,21
+50913,220843.712,41248.68771,1227505.963,21
+50914,231006.1442,741107.3949,1546595.496,21
+50915,228048.8098,52045.83856,1223817.309,21
+50916,225641.6034,101320.0527,1225684.731,21
+50917,225473.1685,302890.7953,1224100.117,21
+50918,42976.86117,197149.9737,1221708.885,21
+50919,43002.89133,214011.8691,1219233.635,21
+50920,42725.10247,213730.825,1216656.45,21
+50921,644080.8703,214314.0598,1213357.365,21
+50922,170400.5401,214804.2464,1209468.036,21
+50923,120204.7247,214808.9904,1205994.037,21
+50924,276422.7601,214450.2293,1201679.596,21
+50925,214501.5993,215774.488,1197944.452,21
+50926,217966.5974,214901.9411,1194200.205,21
+50927,217802.8362,215935.8373,2117989.767,21
+50928,216893.1146,215095.2995,1356921.733,21
+50929,215490.1536,216365.915,1146424.936,21
+50930,215065.6345,216132.0983,1145479.317,21
+50931,213407.8568,216281.4474,1144512.506,21
+50932,212932.0285,216628.2081,1142959.444,21
+50933,211848.0909,174605.6642,1141370.205,21
+50934,210578.6719,174498.24,1138674.262,21
+50935,209957.1458,278020.6794,991607.9029,21
+50936,208542.4758,198951.8029,988838.3827,21
+50937,208150.783,212622.112,1210286.518,21
+50938,206561.4451,223360.5302,1862244.828,21
+50939,205516.7514,217542.3391,1126846.367,21
+50940,204843.4468,218326.9339,1428184.431,21
+50941,162907.2154,219097.3914,140297.2409,21
+50942,161584.6046,218882.2389,343138.8568,21
+50943,250140.0114,219176.7313,246419.6816,21
+50944,196501.4184,42989.45012,198819.4409,21
+50945,191227.2932,42982.79668,218414.7604,21
+50946,198885.1144,42924.60308,210570.9765,21
+50947,195388.5319,43093.24051,1461732.881,21
+50948,193395.4069,769991.1429,953248.9758,21
+50949,192005.3416,66452.04581,986788.6711,21
+50950,190654.4623,93147.74847,1072191.333,21
+50951,38796.46719,318759.2667,1028570.481,21
+50952,38551.51818,204115.9843,1035959.811,21
+50953,38536.37807,221106.0315,1038051.534,21
+50954,499205.7295,222263.621,1039065.935,21
+50955,150110.7782,222392.6613,1060786.784,21
+50956,87056.1901,221798.4139,1227337.077,21
+50957,233157.0174,222907.3703,1024950.692,21
+50958,170852.3589,222560.352,1025904.526,21
+50959,176055.1817,222844.7643,1026595.034,21
+50960,174670.4801,222923.5226,1026675.871,21
+50961,173092.4995,223233.5875,1025611.638,21
+50962,171746.1359,223424.2701,1025825.578,21
+50963,170098.8559,223576.6964,1024565.018,21
+50964,168717.9549,223777.8348,1024081.212,21
+50965,167113.6059,180026.2757,1023030.113,21
+50966,165828.9466,180513.8703,1780757.383,21
+50967,163970.4214,289285.921,900423.1837,21
+50968,162932.3567,205122.2359,1213036.279,21
+50969,161345.2615,219379.763,878167.5081,21
+50970,159650.4629,230202.9802,1075327.426,21
+50971,158752.9561,224407.8881,1008507.385,21
+50972,157245.9414,225882.6123,983937.828,21
+50973,121662.8148,224982.9365,1007435.202,21
+50974,120630.8648,226377.6527,994758.6002,21
+50975,194453.4347,225592.6708,993769.7701,21
+50976,148432.2981,226214.7009,992467.1432,21
+50977,143544.0791,226747.376,217246.9751,21
+50978,155383.5105,40525.55481,214122.9506,21
+50979,149294.6846,40071.4148,211241.2044,21
+50980,148651.5264,39854.95468,1160987.383,21
+50981,147314.1407,39652.7208,196238.9274,21
+50982,146927.7556,532122.7929,200913.6835,21
+50983,145420.968,68505.47201,193673.1003,21
+50984,33072.71855,116663.137,2044911.054,21
+50985,32821.35039,218920.5345,842218.1566,21
+50986,32770.80272,162398.5569,1155707.431,21
+50987,341358.5386,167067.2828,893132.0065,21
+50988,104104.4047,165414.9932,903256.5147,21
+50989,96455.06502,163949.8706,886009.4963,21
+50990,166136.7249,161767.0242,892686.3938,21
+50991,134471.6431,160361.0295,893685.7607,21
+50992,136369.2801,158062.0991,894803.0682,21
+50993,135682.7684,157416.4158,895164.9148,21
+50994,134633.2781,154821.7912,895656.5412,21
+50995,133907.8169,154130.6024,895865.5701,21
+50996,132396.8301,151946.37,895236.254,21
+50997,131915.6231,114331.9762,895372.3007,21
+50998,130703.6125,112567.2792,895882.7108,21
+50999,130025.1891,192137.2963,948090.5867,21
+51000,130459.9282,133501.0072,1078262.677,21
+51001,128152.5617,141999.3545,767939.1382,21
+51002,128563.465,145841.7021,768821.0576,21
+51003,128178.5115,141280.2789,939646.5087,21
+51004,128146.1107,139592.2905,877200.7073,21
+51005,97773.28302,137622.7358,866471.8166,21
+51006,98041.69519,136052.8686,884483.0471,21
+51007,159883.5993,134025.8388,877577.3605,21
+51008,122821.5097,132376.5816,878535.0927,21
+51009,122184.0117,130362.7144,878739.0013,21
+51010,131576.1558,128725.1855,1663162.66,21
+51011,127421.5357,126971.8895,910831.1938,21
+51012,128157.9993,33961.49832,1190927.829,21
+51013,127824.3625,33618.58773,865202.3199,21
+51014,127642.1566,33666.15549,341172.8843,21
+51015,128140.7928,33260.81184,245694.3347,21
+51016,127498.0041,332583.1107,176666.107,21
+51017,29359.73946,51975.98616,204126.917,21
+51018,29116.97708,78659.91404,194886.0615,21
+51019,29107.13392,138548.9241,190906.4013,21
+51020,322825.5809,115413.4968,188160.4369,21
+51021,95210.05987,112591.1166,185877.249,21
+51022,89161.55731,114172.1649,1202921.844,21
+51023,152054.9579,113254.2742,736282.5749,21
+51024,125722.7453,112651.6644,754724.8646,21
+51025,127634.8622,112063.7143,881089.4504,21
+51026,127833.7894,111700.9891,808818.5269,21
+51027,127913.3418,110999.8888,792188.4902,21
+51028,127692.9507,110668.9987,972775.5382,21
+51029,127979.3802,79173.26017,793839.5717,21
+51030,127670.618,79173.26035,796412.6902,21
+51031,127807.0614,135862.3148,798470.5948,21
+51032,128255.2697,104021.6622,1918739.515,21
+51033,128317.7021,104664.2321,687462.1418,21
+51034,128189.6396,110735.3036,689136.8163,21
+51035,128844.0624,107977.5606,691683.1164,21
+51036,128590.0533,107886.8261,851617.559,21
+51037,101981.0227,107528.1992,789578.7158,21
+51038,102313.2453,107427.8409,778118.6289,21
+51039,161732.3767,107385.4025,798191.6181,21
+51040,119324.6532,107133.5053,792157.5481,21
+51041,129605.3494,106841.8537,793269.0298,21
+51042,133278.3039,106998.6098,1579934.546,21
+51043,131282.6437,106189.1455,826759.9052,21
+51044,131430.6137,107138.2387,1114559.163,21
+51045,131938.1909,106190.037,785218.62,21
+51046,131811.8928,28752.68694,785927.6971,21
+51047,132150.6103,28733.9024,786760.2467,21
+51048,132391.852,28554.08361,787574.6229,21
+51049,132325.1262,28473.44654,788142.2935,21
+51050,27726.91798,314468.0016,788543.622,21
+51051,27658.4191,28703.30448,788985.6391,21
+51052,27690.13701,85233.5769,201817.2404,21
+51053,27621.53179,119192.5828,199089.9166,21
+51054,389539.1358,98352.31097,196918.1399,21
+51055,109280.0274,108708.8086,194226.7582,21
+51056,66620.7208,104559.057,191756.6502,21
+51057,172932.5566,105285.1203,181558.6644,21
+51058,130079.8834,105809.8404,196092.6471,21
+51059,134041.9802,105871.6113,1243069.354,21
+51060,134006.673,105827.1365,763903.0535,21
+51061,134197.4145,78453.70982,686433.1569,21
+51062,133550.5102,78966.44837,748514.8014,21
+51063,133501.2385,129207.3309,738536.9801,21
+51064,133448.1558,100891.2968,727925.2435,21
+51065,132715.7322,102962.4005,732696.4677,21
+51066,133176.507,107955.4672,645360.8718,21
+51067,132373.6959,106297.6545,645795.2161,21
+51068,132547.9329,106457.5278,646193.661,21
+51069,105016.458,106685.5661,1598931.482,21
+51070,105516.8598,106836.1154,764689.7982,21
+51071,164967.4135,107027.9334,1055347.63,21
+51072,116834.282,106885.8104,731628.9524,21
+51073,127867.7984,107543.9291,724064.9524,21
+51074,134788.2145,107459.9158,724920.479,21
+51075,130067.9692,107762.1099,725335.9773,21
+51076,130562.7937,107801.3212,725658.0821,21
+51077,130140.5833,108007.4457,725642.4,21
+51078,129813.7134,108336.675,725360.606,21
+51079,129751.0045,108307.1162,725627.9874,21
+51080,129595.0053,26726.59183,724935.7251,21
+51081,128885.1604,26748.77086,724553.7188,21
+51082,129041.6432,26763.18182,724134.0401,21
+51083,128750.695,26612.8109,728278.5279,21
+51084,25954.17455,26692.81486,722767.6631,21
+51085,25830.49048,313081.0742,721911.8613,21
+51086,25961.56266,57387.12731,793276.3121,21
+51087,25901.82978,80344.71141,1065607.531,21
+51088,389531.0455,134227.7325,703266.0524,21
+51089,77920.68057,107645.722,1403912.248,21
+51090,75969.35259,110490.1944,277009.2657,21
+51091,163857.4381,110783.7059,276373.7477,21
+51092,124300.5308,110987.4234,79304.97897,21
+51093,127657.5406,84196.13539,336562.9933,21
+51094,127527.7054,84627.38231,194104.6469,21
+51095,127030.4214,135542.0997,158789.6983,21
+51096,126927.546,104489.3901,173585.1736,21
+51097,126439.7191,109369.9491,168339.2682,21
+51098,125856.8513,113330.2312,1028054.939,21
+51099,126161.3428,111390.7017,484144.1573,21
+51100,124964.3012,112085.2051,498871.4558,21
+51101,100250.4201,111608.2429,1304489.93,21
+51102,99587.22963,111931.4707,723019.4322,21
+51103,99587.24067,112140.0534,912018.4593,21
+51104,169537.3219,111875.1084,604326.2133,21
+51105,114910.0291,112272.0474,647028.7938,21
+51106,104026.0932,112401.2144,613302.6261,21
+51107,131496.9503,112366.6967,615304.1852,21
+51108,122785.1233,112266.5257,616377.7131,21
+51109,121523.8121,112706.9671,617386.771,21
+51110,122449.6365,112284.2345,618566.3282,21
+51111,120367.7073,112792.8172,619043.6128,21
+51112,120300.7663,112565.2153,620059.2189,21
+51113,120095.5082,112782.2612,620231.6773,21
+51114,119293.0707,112557.079,621062.3192,21
+51115,119571.8778,26143.74651,625450.8487,21
+51116,118691.1844,26050.88488,621374.3932,21
+51117,118772.5702,26126.65665,620985.4482,21
+51118,23688.69053,26088.27983,691041.2494,21
+51119,23755.11135,26109.41614,955888.6246,21
+51120,23543.87184,354705.3113,607755.914,21
+51121,23656.83354,27024.10958,650032.1709,21
+51122,363005.7555,104751.4278,604890.0726,21
+51123,37663.81555,138187.4679,815047.7598,21
+51124,93326.85287,117823.1681,596343.7827,21
+51125,141220.9564,94635.76564,676522.2636,21
+51126,113894.0712,95830.63295,592590.4798,21
+51127,116529.9748,148502.2419,590820.7519,21
+51128,117129.0076,118691.9666,194130.363,21
+51129,117437.8473,124130.8083,187520.8592,21
+51130,116743.6129,130056.5895,184447.6224,21
+51131,116841.1916,128316.0201,182197.701,21
+51132,116438.8023,129971.7986,0,21
+51133,116562.0253,131312.1688,792891.7525,21
+51134,92879.68864,132129.9412,0,21
+51135,93258.60748,133751.9125,0,21
+51136,92879.70447,134669.053,137866.8843,21
+51137,156940.3068,135841.152,322602.1117,21
+51138,105132.7366,137162.4122,213935.3394,21
+51139,99203.94663,138290.9403,161262.6464,21
+51140,119365.208,139487.2301,181686.4448,21
+51141,117037.4634,140679.4119,173194.9933,21
+51142,113662.9997,141596.6651,169092.4214,21
+51143,113313.3297,143212.27,1133469.185,21
+51144,113631.6861,143938.2294,158840.5056,21
+51145,112970.3712,145338.3912,156779.2178,21
+51146,113416.1233,146530.677,154712.8898,21
+51147,112319.0509,147339.7013,152648.8729,21
+51148,113268.3777,149001.7176,143870.7248,21
+51149,112084.4282,149988.8863,156425.5984,21
+51150,112202.9468,29482.79801,145094.9444,21
+51151,112395.0704,29799.70252,145350.6133,21
+51152,22038.99127,29723.79511,107803.2326,21
+51153,22020.53099,441835.5249,277659.6888,21
+51154,22019.98556,68712.9914,205818.7001,21
+51155,21851.45261,127242.776,53483.42146,21
+51156,21951.33232,185926.6346,262628.6293,21
+51157,370615.9925,126576.4432,145939.3473,21
+51158,36403.26197,130234.32,123026.2883,21
+51159,74828.85466,192625.3233,133254.9582,21
+51160,142760.8786,160182.9289,129120.8392,21
+51161,106757.3547,158424.5632,127273.545,21
+51162,110618.4898,169166.6041,125849.4548,21
+51163,110873.6709,167477.7212,124557.4674,21
+51164,110516.9086,167876.5243,722952.7479,21
+51165,110326.3553,169930.6806,66813.60188,21
+51166,110376.763,170701.4662,0,21
+51167,88477.95579,172036.2606,0,21
+51168,88408.95302,174161.531,0,21
+51169,88474.80744,175141.9341,0,21
+51170,148114.1485,176341.8868,0,21
+51171,98581.51121,177958.9829,171673.2626,21
+51172,95837.09749,179050.5513,119564.9119,21
+51173,112393.4976,180674.0677,120763.1072,21
+51174,108563.0543,181826.6984,123991.7988,21
+51175,109498.6185,183074.8906,121434.3185,21
+51176,108347.7687,184389.9064,118873.2531,21
+51177,108760.9101,185960.2037,117759.7046,21
+51178,108530.6829,187220.0206,117207.9055,21
+51179,108609.6425,188533.7028,129048.6606,21
+51180,108343.5927,189614.3543,128584.1966,21
+51181,107699.3219,189602.7536,126558.4413,21
+51182,106842.7679,189231.2076,126991.6723,21
+51183,105988.6263,34532.30596,125215.0429,21
+51184,105041.6628,34571.50547,122049.199,21
+51185,104390.5428,34599.17505,59978.31502,21
+51186,103598.66,550275.9713,230865.4491,21
+51187,20103.0199,154465.152,105222.0971,21
+51188,20026.28236,77645.43421,122420.2168,21
+51189,19804.12506,215195.3029,152879.5524,21
+51190,19863.76799,143841.0165,57835.20161,21
+51191,19753.74737,219153.5448,214274.5915,21
+51192,333047.6132,182871.9035,127798.452,21
+51193,19501.47787,177187.3978,144605.2391,21
+51194,72518.21762,189306.1999,56188.71029,21
+51195,125611.6012,183616.8718,206474.5248,21
+51196,93210.97767,183994.3477,119175.3484,21
+51197,96320.536,183506.5627,136543.5634,21
+51198,95716.67967,183209.7672,751929.8377,21
+51199,94992.7491,182017.3639,197478.6884,21
+51200,75770.30965,182770.0765,114188.6117,21
+51201,74915.64333,181167.0366,93921.5318,21
+51202,73948.20219,181578.5514,16602.09327,21
+51203,121047.0432,180845.9731,159475.2325,21
+51204,79389.79027,180208.0479,80531.27747,21
+51205,79638.45519,180174.5932,88065.52763,21
+51206,90220.96246,179758.759,15961.4109,21
+51207,84605.77184,178906.8963,149368.7521,21
+51208,89179.71611,178788.39,119156.4222,21
+51209,85012.4517,178338.259,96297.05177,21
+51210,85352.01835,177821.0692,29911.73488,21
+51211,84171.82581,177605.0357,156648.091,21
+51212,83747.71213,177127.6053,88053.89118,21
+51213,82423.30068,176836.4142,96160.26502,21
+51214,81958.72962,176267.5275,32494.19019,21
+51215,80825.89028,176178.6533,149140.5125,21
+51216,80125.11083,33341.278,83147.49584,21
+51217,78906.42833,33416.58296,92365.9859,21
+51218,78340.33021,33360.34948,31493.02952,21
+51219,77345.0801,512259.5293,142358.4761,21
+51220,76419.81716,116329.7289,79680.26892,21
+51221,75411.7952,60946.47416,88354.22731,21
+51222,15162.02322,190946.5911,30592.72806,21
+51223,15136.51625,197388.5221,136070.5549,21
+51224,14964.74533,170361.0828,76426.51897,21
+51225,14778.72091,165218.9523,84602.61152,21
+51226,14790.52972,176435.8354,29605.27858,21
+51227,14807.49822,171667.6974,130131.6878,21
+51228,14568.27921,171409.3539,73344.623,21
+51229,14501.42967,171290.6953,80980.16165,21
+51230,14278.90059,170759.1911,28713.50692,21
+51231,14219.83867,170398.2219,124541.7318,21
+51232,14070.16324,170198.3542,70415.1854,21
+51233,221778.8384,169535.2803,77624.31025,21
+51234,0,169530.808,27809.55697,21
+51235,26282.62897,168498.6311,119310.6172,21
+51236,35827.92835,169468.0198,67721.26872,21
+51237,108098.1877,168640.4165,74513.55046,21
+51238,40631.99271,168591.3352,0,21
+51239,51397.32853,168006.0263,0,21
+51240,57696.31376,167902.2539,0,21
+51241,56883.09984,166960.8525,0,21
+51242,60648.57465,166449.2252,0,21
+51243,67145.46688,165417.8523,0,21
+51244,68343.38053,164974.6729,0,21
+51245,71236.08845,164119.0558,0,21
+51246,74032.23954,163701.535,51122.31774,21
+51247,75879.98841,162530.2494,109673.3139,21
+51248,78252.66889,162005.033,60819.18462,21
+51249,80921.85079,33715.08385,68744.71164,21
+51250,82973.42546,33416.04632,27512.63747,21
+51251,85638.73929,33609.58051,108204.3545,21
+51252,87870.38531,465876.9796,603436.8251,21
+51253,90608.65918,36444.61307,71393.958,21
+51254,92494.1651,81578.07182,25431.04689,21
+51255,95230.00679,223766.6685,110447.1163,21
+51256,97356.43094,146765.5418,62706.62609,21
+51257,99702.10657,149000.7828,68981.72945,21
+51258,102379.3286,158466.3201,25164.63676,21
+51259,104263.2582,153693.5923,106321.9547,21
+51260,107129.2105,153723.3058,60767.46282,21
+51261,109036.4984,153106.6668,66720.92952,21
+51262,111375.6681,152125.0848,24947.19065,21
+51263,21564.85667,151678.5197,102551.7645,21
+51264,21863.41337,150996.833,58980.13422,21
+51265,22325.32452,150001.5276,64743.98241,21
+51266,22681.69329,149298.8167,24680.47429,21
+51267,338194.149,148552.4496,99045.29631,21
+51268,41801.51412,148165.5455,57301.52193,21
+51269,70314.67368,146866.4239,62874.4807,21
+51270,203059.0261,146581.8775,24463.83271,21
+51271,122615.8544,145277.6664,95839.23258,21
+51272,118382.9876,145186.0577,55826.99043,21
+51273,143015.6179,144204.9792,61214.19426,21
+51274,136572.3455,143221.4255,24331.04346,21
+51275,143470.9827,142564.2466,92939.08681,21
+51276,145150.3911,141671.3646,0,21
+51277,147454.1146,141247.1401,0,21
+51278,150080.4164,140325.989,0,21
+51279,152544.7423,139414.637,0,21
+51280,155184.8604,139203.0571,0,21
+51281,157190.5336,138534.3388,0,21
+51282,160275.2506,32378.5083,0,21
+51283,162333.2273,32536.59303,0,21
+51284,164932.4779,32185.88892,0,21
+51285,174691.7473,0,0,21
+51286,180409.2752,398441.4532,0,21
+51287,181503.1126,67449.75586,0,21
+51288,189163.9826,86130.39409,0,21
+51289,192402.7591,164709.2769,0,21
+51290,196921.0849,128684.9648,0,21
+51291,200636.4086,129643.5249,0,21
+51292,204247.8698,129923.8347,0,21
+51293,208605.5743,128272.8236,0,21
+51294,212400.16,127828.4979,0,21
+51295,215893.0217,126608.5278,111958.7453,21
+51296,220105.0107,126026.9049,49596.58351,21
+51297,35335.77131,124498.4653,55444.33184,21
+51298,35785.51793,123903.9559,21186.95476,21
+51299,36134.67437,122303.55,89462.17224,21
+51300,613948.3875,121040.5279,51880.62111,21
+51301,177081.7313,122600.238,56646.11655,21
+51302,183781.4887,124012.5526,23702.76764,21
+51303,288816.0296,125171.3259,85763.02916,21
+51304,230139.7908,126258.3283,545638.3037,21
+51305,241922.8987,127182.6764,59896.83554,21
+51306,246128.513,128658.9181,24157.21479,21
+51307,243704.725,129586.3293,90916.58667,21
+51308,246045.1637,130551.2276,53588.58736,21
+51309,246625.4905,136662.4315,58724.50829,21
+51310,248430.2765,138530.5033,24236.96113,21
+51311,249293.9284,139683.5352,88601.14609,21
+51312,250703.8569,142025.2896,52647.4724,21
+51313,251349.624,143845.0502,57527.88565,21
+51314,253192.1141,145225.5545,24276.55595,21
+51315,253950.8358,147793.9964,86425.47185,21
+51316,255720.7151,34009.49337,51676.84925,21
+51317,256315.2693,0,56541.77406,21
+51318,257766.4617,0,24344.90444,21
+51319,258856.5784,73913.97447,84527.91458,21
+51320,260327.041,431340.8398,50893.37371,21
+51321,261222.74,45533.72961,55635.59705,21
+51322,262666.7583,112115.8075,24454.54822,21
+51323,263845.3701,210104.906,82791.28161,21
+51324,264989.1205,154903.8835,50179.97518,21
+51325,266358.2895,165924.1177,0,21
+51326,267712.6896,168746.8933,0,21
+51327,268483.6126,169725.4253,0,21
+51328,269667.4461,172072.8241,0,21
+51329,271893.943,173712.5806,0,21
+51330,40964.22619,176108.7098,0,21
+51331,41186.61955,177004.494,0,21
+51332,641331.4982,179641.1138,0,21
+51333,172257.8152,180484.7728,0,21
+51334,256430.3938,182797.8121,0,21
+51335,317924.9701,184461.6444,0,21
+51336,271011.3993,185859.3039,0,21
+51337,281649.1063,187778.3788,0,21
+51338,282527.0679,189595.2418,0,21
+51339,282141.0618,191085.7274,103774.9644,21
+51340,283705.9069,192927.0295,46725.66089,21
+51341,284362.9308,194552.8573,51354.92016,21
+51342,285360.8155,196201.5817,21857.32229,21
+51343,286340.7207,198436.1537,82891.11321,21
+51344,287532.4961,198962.9587,48458.06646,21
+51345,288604.4263,201800.3483,53564.38932,21
+51346,289390.8744,202820.3135,24962.57838,21
+51347,290709.1749,204730.1536,559862.4328,21
+51348,291238.9343,206541.4598,52545.59312,21
+51349,293234.5829,167464.4447,57434.25214,21
+51350,292970.942,0,25451.96829,21
+51351,295497.1622,93605.85304,85304.80219,21
+51352,295106.9097,27485.62715,51879.94306,21
+51353,297287.3912,581321.8157,56657.94647,21
+51354,297748.6863,112593.2238,25643.76799,21
+51355,299061.1413,166472.0464,83772.48913,21
+51356,299521.6287,263028.7066,51294.80073,21
+51357,301682.786,215779.1432,55998.63697,21
+51358,301331.0111,223020.3879,25772.45365,21
+51359,303668.1455,225326.1708,82433.64696,21
+51360,303754.2107,226433.5726,50784.46809,21
+51361,305695.3472,227196.2768,55432.76778,21
+51362,45752.60649,227213.7108,25983.59691,21
+51363,45902.40902,228460.7109,81317.80426,21
+51364,724248.876,228035.6505,50463.79858,21
+51365,182849.2011,228675.206,55026.22975,21
+51366,322612.8716,229625.4223,26302.67158,21
+51367,680181.5853,229902.5553,80346.37504,21
+51368,315819.2808,229729.9828,50226.29117,21
+51369,317019.7795,230684.1011,0,21
+51370,318258.208,231118.4054,0,21
+51371,319732.8028,231436.8411,0,21
+51372,320522.836,231854.4154,0,21
+51373,321963.1495,232584.2692,0,21
+51374,322885.2972,232301.537,0,21
+51375,324593.2032,233228.9494,0,21
+51376,325564.1728,233353.0085,0,21
+51377,327396.6688,234181.0314,82298.9108,21
+51378,328323.4688,234287.9573,21839.68102,21
+51379,329783.2224,235140.9374,76629.05666,21
+51380,331334.2558,234585.4609,50207.97308,21
+51381,332142.4796,191903.4122,57097.901,21
+51382,333904.4144,191392.6702,26675.00613,21
+51383,335237.8445,105057.8359,79731.66548,21
+51384,336349.7601,30021.39112,50532.87612,21
+51385,337858.0374,36940.03708,55092.59708,21
+51386,339215.3868,691332.1453,27643.4264,21
+51387,340876.0202,126277.03,79233.02347,21
+51388,341795.4329,155162.5163,50498.41323,21
+51389,343348.9177,299738.3723,55007.27153,21
+51390,344607.8924,231266.534,499524.1787,21
+51391,345979.1373,239537.6057,87294.44783,21
+51392,347223.4009,240003.2087,54385.29543,21
+51393,348368.3831,240706.1826,59606.18889,21
+51394,51547.09114,240798.4151,28936.76557,21
+51395,51825.74606,240806.7368,86366.19605,21
+51396,759545.0455,241361.0044,54248.25253,21
+51397,270977.4265,241420.1633,59411.20148,21
+51398,381759.5655,242124.9471,29320.23625,21
+51399,364055.0072,241733.4045,85654.60404,21
+51400,371533.3338,242296.6469,54169.00476,21
+51401,363337.0197,242785.2575,59273.01813,21
+51402,357946.5699,242523.9159,29798.94609,21
+51403,363754.2387,243349.1103,85162.30808,21
+51404,363051.8622,243015.8927,54259.07506,21
+51405,364376.8971,243744.9469,59305.94456,21
+51406,365062.5298,243831.9093,30203.92469,21
+51407,366917.8793,243788.5111,0,21
+51408,367669.4408,244278.1084,0,21
+51409,369066.2781,244640.1167,0,21
+51410,370286.494,244602.914,0,21
+51411,371009.1229,245187.2257,0,21
+51412,712115.4845,244779.5032,0,21
+51413,373496.4749,199815.0124,90062.93273,21
+51414,375306.7373,199470.3361,24201.36619,21
+51415,375421.3019,311004.5803,80233.8286,21
+51416,377496.7548,30254.65199,58357.70887,21
+51417,378316.5975,38695.5334,61082.48835,21
+51418,379702.8895,52211.63939,31024.55668,21
+51419,380841.4789,724384.1911,86180.5817,21
+51420,382577.0705,134564.2852,55561.58086,21
+51421,382096.5651,148599.612,60735.77642,21
+51422,383700.3302,319135.0299,31725.32942,21
+51423,383421.6937,239177.3712,85849.61339,21
+51424,383984.5368,249799.2715,55528.74581,21
+51425,384625.5055,250947.6709,60653.7941,21
+51426,56626.74501,251176.9758,31873.55707,21
+51427,56666.1741,252218.538,85606.46072,21
+51428,778190.7138,253069.578,55503.66368,21
+51429,363935.2107,252931.0028,60603.78674,21
+51430,411332.2359,254537.2399,32080.80221,21
+51431,388057.0145,254582.8625,85390.31169,21
+51432,409423.9113,255569.4239,55512.36795,21
+51433,390593.9532,256128.0714,538682.6236,21
+51434,391758.433,256921.2259,32747.15339,21
+51435,388708.849,257310.0751,93163.97838,21
+51436,390341.6069,258441.549,59204.35265,21
+51437,390467.0143,258782.0182,64923.09232,21
+51438,390211.5041,259425.0599,32908.02119,21
+51439,391752.0524,260285.8568,92410.91654,21
+51440,391421.4091,260590.0449,58976.86074,21
+51441,392305.5123,261633.3861,64627.57007,21
+51442,392607.5461,262449.0969,33088.03477,21
+51443,392872.8879,262663.462,0,21
+51444,393731.1943,263251.2833,0,21
+51445,394007.6291,215904.5069,0,21
+51446,395340.7508,216228.6952,0,21
+51447,400670.2248,335436.6261,0,21
+51448,402771.3626,248856.5567,90822.23397,21
+51449,404105.3347,44218.16657,59382.36237,21
+51450,403631.325,53532.86047,27016.54147,21
+51451,404679.2781,49251.28559,98253.60555,21
+51452,405010.7312,803753.8954,58776.36459,21
+51453,406057.3905,169243.158,65337.60121,21
+51454,406139.6835,135389.3781,33715.9487,21
+51455,406829.5927,359614.9212,92532.83021,21
+51456,406926.9887,259052.1137,59438.74729,21
+51457,746869.9507,272483.6434,65077.72425,21
+51458,60451.52021,273545.0024,33815.09065,21
+51459,60317.53323,274169.6339,91953.51271,21
+51460,812185.3846,274410.4645,59254.79908,21
+51461,421002.0812,275477.1142,64869.3094,21
+51462,419139.4444,276092.7026,33908.4516,21
+51463,419427.3018,276437.1242,91458.11642,21
+51464,432720.5382,277489.7368,59133.86173,21
+51465,413647.7571,277668.5878,64698.93496,21
+51466,418382.3598,278443.845,34025.51155,21
+51467,409729.2641,279551.274,91068.28052,21
+51468,414535.6749,279505.0466,58982.29505,21
+51469,413106.4455,280449.5196,64566.07551,21
+51470,413810.9988,281240.063,34167.90901,21
+51471,413817.8382,281589.0557,90710.32718,21
+51472,414313.0199,282214.8989,58907.56918,21
+51473,414864.6437,283246.8027,64456.14835,21
+51474,414668.1317,283637.6585,34276.07251,21
+51475,414973.0477,283749.4028,90408.83362,21
+51476,415864.8769,285528.0503,543434.8952,21
+51477,416079.4824,233434.0531,68757.0843,21
+51478,415307.8972,234967.5323,0,21
+51479,417424.577,362143.4192,0,21
+51480,415988.6851,268768.47,0,21
+51481,420461.5268,287246.3017,0,21
+51482,420359.2739,55592.86859,0,21
+51483,421246.7861,52959.49116,133412.6041,21
+51484,420976.9479,52406.25373,54738.51547,21
+51485,422395.415,883618.1315,64845.25501,21
+51486,422869.0094,206212.1687,39387.47449,21
+51487,422138.0063,119448.2816,97309.18776,21
+51488,424112.9599,387328.9452,63120.86798,21
+51489,423621.5746,275889.8117,70556.3805,21
+51490,64155.98139,286370.5528,37460.57463,21
+51491,64357.4537,287321.6694,98415.49305,21
+51492,812562.9473,286722.0618,64348.64072,21
+51493,432220.8235,286429.4757,70744.1479,21
+51494,475134.7846,286111.0558,38348.27279,21
+51495,424857.4903,286211.626,98758.27003,21
+51496,444423.3497,285202.4744,64965.00458,21
+51497,436205.1821,285419.2173,71373.91392,21
+51498,433120.7567,285157.3312,39101.12325,21
+51499,430177.0879,284108.5744,99273.59351,21
+51500,430120.9194,284514.1839,65567.46784,21
+51501,430818.8709,283750.6009,72096.3368,21
+51502,430821.2755,283772.0913,39895.85177,21
+51503,431044.2932,283001.8626,99866.14109,21
+51504,770797.7768,283021.7958,66254.24341,21
+51505,431605.992,282843.0913,72819.93687,21
+51506,432957.3756,281901.2857,40751.40594,21
+51507,432093.5072,281883.6866,100498.8692,21
+51508,433562.5904,281550.33,67016.08805,21
+51509,432620.9194,229446.5807,73651.41408,21
+51510,434516.3075,228886.8367,41525.51918,21
+51511,433992.6361,359064.5424,101286.2203,21
+51512,434910.1673,259906.8897,67786.88194,21
+51513,434595.601,276089.7253,0,21
+51514,435759.2261,283862.5663,0,21
+51515,435905.3209,51958.4362,0,21
+51516,436153.1172,51965.40248,0,21
+51517,436672.3078,51859.38185,120328.7988,21
+51518,437289.8324,848075.454,32965.14854,21
+51519,437263.4484,180887.1102,98509.19161,21
+51520,437966.179,121251.2697,569785.9206,21
+51521,438025.1836,378180.6241,80714.34708,21
+51522,67546.43028,261546.8821,44574.61392,21
+51523,67850.29948,277232.4363,111730.6813,21
+51524,812549.5997,276783.0535,73965.56309,21
+51525,454191.4335,276318.5361,81614.93817,21
+51526,502872.1714,276007.5051,45385.35271,21
+51527,442833.735,275867.7656,112154.9502,21
+51528,450135.4414,275075.3997,74623.07838,21
+51529,457527.2758,274765.7735,82225.29574,21
+51530,444639.044,274301.1636,46157.89594,21
+51531,448173.7728,274592.2126,112733.1308,21
+51532,442924.7824,273441.8835,75315.21118,21
+51533,445228.3141,273295.9695,82965.90789,21
+51534,445020.3249,273049.7621,46912.74263,21
+51535,445045.3248,272631.1345,113415.7258,21
+51536,445719.8241,271843.4438,76105.55466,21
+51537,445793.709,271897.4601,83725.47835,21
+51538,446294.6611,271596.2405,47682.42583,21
+51539,446290.5353,270578.5934,114210.7752,21
+51540,447138.9912,270953.9014,76980.67513,21
+51541,447256.1902,219603.4013,84456.96005,21
+51542,448492.0972,220418.8538,48175.70775,21
+51543,448272.3092,349610.2274,114614.9702,21
+51544,450085.0961,250982.615,77129.32399,21
+51545,450036.2885,267942.7641,84539.11432,21
+51546,450838.3663,277185.6825,48206.84042,21
+51547,451184.9606,272831.7723,0,21
+51548,452703.8804,51381.9875,0,21
+51549,452939.7472,51597.56041,0,21
+51550,453270.4484,51508.14482,98339.47291,21
+51551,793748.2627,833195.9849,103631.7055,21
+51552,455077.1435,168544.2868,74401.02454,21
+51553,455730.2108,128224.2208,90391.40631,21
+51554,71554.58378,371256.9097,47827.71491,21
+51555,71838.92619,260958.6946,116894.8884,21
+51556,812534.1303,275515.4953,78307.27359,21
+51557,481176.8307,276235.351,85773.92187,21
+51558,532513.1831,276820.0193,48442.48994,21
+51559,470689.9084,276999.5322,116753.7119,21
+51560,457856.0625,276712.9673,78221.28977,21
+51561,484206.1245,277865.5419,85622.17544,21
+51562,462590.6382,277664.8678,48468.11819,21
+51563,467665.4174,277844.0812,116614.9236,21
+51564,467258.4092,278445.0087,592038.0186,21
+51565,465402.5384,278449.352,89525.33418,21
+51566,466266.6928,278833.4924,48978.10851,21
+51567,466714.8016,279474.6949,122988.947,21
+51568,467464.8289,279262.9161,81172.13412,21
+51569,468172.5696,279737.6674,89144.5286,21
+51570,468357.7145,280160.4522,48890.4181,21
+51571,469599.3657,280335.8715,122347.3413,21
+51572,469994.7636,280424.5175,80913.64279,21
+51573,470376.3372,228569.4143,88704.82177,21
+51574,471193.3561,228719.3233,48857.57928,21
+51575,471731.5911,361984.2977,121766.4539,21
+51576,472904.5067,259764.0559,80598.22059,21
+51577,473020.0875,278809.9575,88397.5319,21
+51578,473758.0871,286073.265,48742.37874,21
+51579,474584.7039,282784.042,121229.7083,21
+51580,475156.1896,283183.8093,0,21
+51581,475559.9488,52599.48108,0,21
+51582,476677.0926,52884.80273,0,21
+51583,477270.5891,52709.09056,0,21
+51584,477795.6353,872700.2305,138470.3115,21
+51585,478453.4748,186105.3057,78210.8454,21
+51586,75864.8512,120498.9038,39182.35838,21
+51587,75966.3057,389491.7847,128227.1399,21
+51588,812515.6862,269894.5262,80235.38383,21
+51589,517616.2858,285141.8318,88046.81178,21
+51590,568421.9491,286508.5558,48793.74731,21
+51591,510444.3788,286272.674,120991.169,21
+51592,468742.9621,286520.1063,80286.7914,21
+51593,511898.9612,287083.5899,87798.02237,21
+51594,487675.1381,286878.1633,48674.20953,21
+51595,489178.3352,287627.064,120317.8061,21
+51596,489999.1774,287198.4309,79988.25807,21
+51597,489931.0206,287947.0531,87450.11855,21
+51598,829446.0249,288235.3572,48468.2619,21
+51599,490692.4755,288112.1686,119875.8556,21
+51600,490230.6247,288550.2257,79642.589,21
+51601,491110.1455,287068.4279,87166.46152,21
+51602,511043.2358,286132.7037,48459.56717,21
+51603,493393.572,284589.8783,119537.8981,21
+51604,495056.6985,283194.0281,79678.86148,21
+51605,495492.6185,229877.5217,87148.47916,21
+51606,501275.9105,228190.6941,48692.66072,21
+51607,498852.5052,360647.2832,119485.7489,21
+51608,500694.2605,256431.42,598670.2951,21
+51609,501254.5201,272839.823,91052.47513,21
+51610,501833.5136,280327.0761,49492.88444,21
+51611,503104.9779,274800.6339,125699.5338,21
+51612,503525.3637,272787.5007,82908.47668,21
+51613,504409.8095,272205.4571,90801.16782,21
+51614,505157.9237,51627.73739,0,21
+51615,505717.5428,51327.69352,0,21
+51616,506907.397,51257.89346,0,21
+51617,507173.3403,819573.7711,0,21
+51618,85257.23346,152705.2215,113054.4797,21
+51619,85247.87777,122710.9613,115996.903,21
+51620,817721.3095,357450.3814,73085.14428,21
+51621,678264.6546,247154.537,99017.14572,21
+51622,560141.3081,259742.012,49673.40674,21
+51623,525670.323,259498.0327,125778.8436,21
+51624,521765.9665,257592.4354,83579.68767,21
+51625,518780.5384,256387.1713,91284.03197,21
+51626,521801.6635,255157.1862,50519.65767,21
+51627,517087.5102,253576.2611,125399.6248,21
+51628,517958.1737,252515.7914,83475.30869,21
+51629,518441.18,250711.1553,91096.51688,21
+51630,519288.7013,250030.0398,50696.64015,21
+51631,518956.7563,248326.8351,125067.8346,21
+51632,515539.6631,247176.0771,83385.7295,21
+51633,515215.2888,245575.7627,91082.34827,21
+51634,516029.3275,244134.2714,50834.61656,21
+51635,516901.3232,243098.2296,124856.4616,21
+51636,516873.4734,241621.2182,83397.61676,21
+51637,518551.2015,192267.3614,91048.39835,21
+51638,518671.8984,191183.2079,51077.96226,21
+51639,519687.5351,311916.1582,124654.4872,21
+51640,520246.1439,212601.6688,83485.25746,21
+51641,545161.9108,230346.726,91072.30988,21
+51642,523445.7949,239950.2482,51257.40084,21
+51643,526181.1042,231836.0846,124578.9218,21
+51644,528725.5721,231391.7802,83563.27354,21
+51645,531586.4648,229801.5414,91148.09397,21
+51646,869689.3469,228319.4185,51423.83246,21
+51647,531794.2574,46463.22459,124614.0315,21
+51648,532399.528,46273.19619,0,21
+51649,532791.806,46215.67936,0,21
+51650,90239.64133,663850.1429,0,21
+51651,6599.116876,66592.88326,183571.1456,21
+51652,939678.4273,165338.595,592065.1422,21
+51653,681926.583,271419.6705,87392.29116,21
+51654,563313.6455,208113.2877,59403.88082,21
+51655,579383.123,215670.5783,129335.5865,21
+51656,563775.1188,214100.7833,86910.67287,21
+51657,526069.726,212220.3041,94628.52689,21
+51658,553558.3518,210923.0725,52745.81868,21
+51659,541734.3532,208904.5555,129829.343,21
+51660,543324.2035,206452.8956,86745.49599,21
+51661,543618.9167,206352.6804,94450.72271,21
+51662,543260.173,206311.6167,52917.32394,21
+51663,544992.1903,206554.1461,129493.5715,21
+51664,544328.4612,206134.7559,86690.73162,21
+51665,545725.176,206266.6533,94472.87995,21
+51666,545772.4165,206332.8689,53091.76573,21
+51667,546188.5293,206073.8551,129336.057,21
+51668,547549.2864,206141.4111,86716.54491,21
+51669,546846.2968,162428.4873,94481.22622,21
+51670,548752.1414,162022.4602,53341.62579,21
+51671,540421.2595,273709.3798,129174.1808,21
+51672,542292.5382,178974.3661,86820.96297,21
+51673,542166.4236,205577.5478,94559.22067,21
+51674,542930.5432,209851.5519,53564.14221,21
+51675,543536.77,205953.6091,129135.0968,21
+51676,543255.9614,206126.3337,86942.79442,21
+51677,576131.114,206095.196,94625.29385,21
+51678,545324.8302,206251.0543,53875.0861,21
+51679,548408.3558,206169.4734,129068.749,21
+51680,556191.4464,43859.60448,87136.81521,21
+51681,554333.4987,43888.79455,563971.2553,21
+51682,7548.336557,43960.3912,264543.5284,21
+51683,130542.9304,43755.92429,316001.169,21
+51684,907702.1708,675718.4161,398600.1627,21
+51685,715159.6725,66566.35401,430902.0187,21
+51686,564142.8942,112863.6018,347593.0843,21
+51687,624576.2171,280965.1747,436105.201,21
+51688,576424.9855,193202.2894,374447.0987,21
+51689,561508.082,206385.2841,454240.9714,21
+51690,563913.9004,206127.6603,386218.1769,21
+51691,564784.3075,206285.3268,460194.9192,21
+51692,562856.7949,206356.8395,399001.5042,21
+51693,562649.3512,206547.5126,491296.0393,21
+51694,563149.4245,206094.9488,409239.8286,21
+51695,563724.2047,206287.798,491439.5923,21
+51696,564073.773,206355.9704,419556.6218,21
+51697,565225.7892,206092.3445,522025.6245,21
+51698,564827.9046,206289.9204,429047.5796,21
+51699,566293.9426,206422.8289,517569.8148,21
+51700,565561.3829,205944.7553,438177.8207,21
+51701,567066.872,162125.0488,550158.7915,21
+51702,567088.3808,162789.5444,446359.7254,21
+51703,567768.4896,273342.6962,1363680.884,21
+51704,568526.3767,179096.901,451154.4146,21
+51705,568624.6975,205472.8106,568786.305,21
+51706,570153.7363,210138.526,458561.009,21
+51707,560246.3733,205974.9239,556301.1674,21
+51708,562460.4772,206540.6707,466747.113,21
+51709,562366.7784,205962.0992,592205.1644,21
+51710,562950.8426,206589.2751,473894.5767,21
+51711,563447.95,206205.1043,297425.1463,21
+51712,599963.7813,206556.0529,170620.6646,21
+51713,476350.7593,206055.9076,190995.5268,21
+51714,128298.9762,43912.25932,0,21
+51715,104164.4077,43885.60691,0,21
+51716,906842.8382,43928.26973,0,21
+51717,753946.1949,43879.95545,297560.1894,21
+51718,558292.026,676835.4501,56381.28524,21
+51719,672185.0049,64955.40054,265078.1788,21
+51720,575084.7787,113622.3406,174819.3692,15.6
+51721,614734.9157,283843.0703,179039.4135,15.6
+51722,561207.8899,197244.0392,71430.94059,15.6
+51723,587481.4772,211382.7782,265968.6624,15.6
+51724,579928.2448,213381.0943,155827.8428,15.6
+51725,580407.5434,214552.3055,173231.6296,15.6
+51726,581033.5494,215712.2898,69982.68889,15.6
+51727,582554.9803,217122.2755,880059.28,15.6
+51728,582004.1523,218542.0336,391746.8208,15.6
+51729,583823.1484,219497.213,521806.2841,15.6
+51730,583985.5633,220926.1578,426817.4655,15.6
+51731,585009.6547,222337.8048,577173.6728,15.6
+51732,585932.2616,223629.0394,451768.902,15.6
+51733,586626.9817,178777.485,582972.7359,15.6
+51734,586919.3796,180243.0577,466222.9461,15.6
+51735,588693.9764,298473.9123,567721.3692,15.6
+51736,589167.1086,202424.8108,473036.3378,15.6
+51737,589472.9832,227710.2213,600965.4237,15.6
+51738,590649.6096,235581.4637,477930.7278,15.6
+51739,591921.4181,231875.622,583845.0669,15.6
+51740,592210.8138,234028.6505,482973.4486,15.6
+51741,593043.0129,234818.7889,617074.6605,15.6
+51742,584670.7948,236568.7167,486870.908,15.6
+51743,584239.5241,237606.9395,597745.1611,15.6
+51744,494457.5366,238531.1247,491304.4026,15.6
+51745,621928.9421,240256.8062,630610.0742,15.6
+51746,133236.6817,241756.9222,494705.2812,15.6
+51747,87278.73289,242563.0849,546799.587,15.6
+51748,915008.0443,48008.5583,1363107.357,15.6
+51749,801094.3644,48282.76773,550669.4977,15.6
+51750,550549.5152,48224.23091,617944.1054,15.6
+51751,720743.2312,741237.0807,590132.4822,15.6
+51752,599158.0797,103581.5841,477259.4166,15.6
+51753,637835.4013,166405.2875,652688.7616,15.6
+51754,612320.8633,319704.8573,495576.1345,15.6
+51755,940733.2189,242735.7655,616217.2056,15.6
+51756,611905.9856,254501.2503,500638.5873,15.6
+51757,609253.0177,255866.6769,222994.4221,15.6
+51758,608707.9511,257748.6422,78013.49492,15.6
+51759,610282.1448,258329.3457,335371.7893,15.6
+51760,610860.8902,260328.1325,189530.5559,15.6
+51761,611175.2559,260924.2703,211581.9815,15.6
+51762,612756.1185,262457.2961,75904.52944,15.6
+51763,612384.4529,263686.7897,317049.5228,15.6
+51764,614482.5069,265135.6678,180494.4934,15.6
+51765,614224.7827,215612.2663,201237.4822,15.6
+51766,615730.8288,217124.9392,73962.42215,15.6
+51767,616215.8267,348136.2818,300476.7627,15.6
+51768,617140.5037,246094.8012,172253.2915,15.6
+51769,617531.1705,266343.9111,1011420.467,15.6
+51770,618757.6264,278307.3313,390812.1938,15.6
+51771,619525.6541,273873.6487,512188.6296,15.6
+51772,620246.6339,274873.1933,455775.2477,15.6
+51773,621097.4306,276488.4671,622161.175,15.6
+51774,621942.3489,278514.9853,455533.9913,15.6
+51775,527392.3194,278676.6258,581579.3799,15.6
+51776,646700.8072,280695.4671,471360.4755,15.6
+51777,616735.3265,282112.3887,606013.6896,15.6
+51778,89923.03366,282786.9911,475186.7894,15.6
+51779,98534.57584,284571.1689,594773.3434,15.6
+51780,951327.3959,285645.9946,402732.6272,15.6
+51781,833552.8231,52778.45024,543429.2637,15.6
+51782,540354.6886,52834.26073,407679.8708,15.6
+51783,739400.2289,52730.45535,736592.2683,15.6
+51784,664181.7175,884471.7152,474441.3763,15.6
+51785,626089.1135,176356.2198,617116.9444,15.6
+51786,657166.6672,123852.3169,511847.4379,15.6
+51787,641180.6533,391232.8376,620479.1527,15.6
+51788,617578.2169,269652.217,502865.3256,15.6
+51789,633270.8598,285752.9606,652599.0024,15.6
+51790,628077.2937,285857.7795,508507.8212,15.6
+51791,626862.2299,285890.5142,636061.7635,15.6
+51792,627096.7009,286639.5785,1494514.979,15.6
+51793,627094.8129,285621.5114,654036.3461,15.6
+51794,626548.66,286067.212,512034.8311,15.6
+51795,625965.5878,286055.9168,636880.2964,15.6
+51796,626405.5127,285622.7881,518646.416,15.6
+51797,625287.4465,233353.8742,670818.6053,15.6
+51798,625609.5721,232811.6513,524246.3376,15.6
+51799,625190.2789,369485.3161,353917.6298,15.6
+51800,624759.5196,262030.2756,200252.7276,15.6
+51801,624772.1702,281317.5066,223450.5189,15.6
+51802,624727.527,291576.2912,80746.93867,15.6
+51803,623838.2813,285597.7771,335699.8331,15.6
+51804,624240.773,285827.334,191795.1385,15.6
+51805,623679.5371,286581.3676,213875.7228,15.6
+51806,527827.2759,285886.5099,80259.07565,15.6
+51807,658549.1455,285932.3601,1078164.709,15.6
+51808,626668.4021,286262.5701,443904.0699,15.6
+51809,616888.49,285526.3392,578992.6981,15.6
+51810,99150.08348,286780.8367,552270.2221,15.6
+51811,436342.7727,285144.6265,639890.028,15.6
+51812,909150.2623,286440.2976,521881.6904,15.6
+51813,822282.5995,285936.9317,587655.5467,15.6
+51814,580497.5898,53214.62288,449119.6958,15.6
+51815,723285.9437,53223.3001,580121.1273,15.6
+51816,646351.7309,53236.48604,676439.5381,15.6
+51817,633346.897,884454.3608,678666.2194,15.6
+51818,652655.7157,174422.0304,529333.7141,15.6
+51819,642425.7341,125424.8569,674787.7774,15.6
+51820,612800.1913,391182.7109,551328.6682,15.6
+51821,631611.3267,269772.2455,705156.6327,15.6
+51822,624774.0327,285929.0614,558568.5321,15.6
+51823,625748.5319,286813.5618,677924.9751,15.6
+51824,623584.6929,286714.1457,565429.8041,15.6
+51825,625191.9092,286056.1156,722602.8647,15.6
+51826,623556.3891,286393.053,571392.5178,15.6
+51827,624181.9058,286232.9265,693686.8843,15.6
+51828,623047.375,286293.5583,579294.1399,15.6
+51829,622910.6824,233135.7777,745485.438,15.6
+51830,622642.2178,232971.4463,587557.9975,15.6
+51831,622777.4385,370163.7292,709084.7607,15.6
+51832,622746.5469,262219.6216,596143.4597,15.6
+51833,621894.1689,280904.4858,761047.633,15.6
+51834,621674.551,291541.9649,602220.7786,15.6
+51835,621709.336,285426.3683,722617.534,15.6
+51836,620977.519,285986.2773,1648907.657,15.6
+51837,525648.941,285595.3508,249872.5713,15.6
+51838,656741.3535,285653.8824,92847.78775,15.6
+51839,623849.5062,286161.6125,371024.2982,15.6
+51840,614974.4489,285333.6214,213622.5904,15.6
+51841,618717.3083,278418.1062,235413.7359,15.6
+51842,107379.9352,277323.1482,88477.38661,15.6
+51843,106992.0371,276367.4656,1251121.895,15.6
+51844,908007.8017,274962.6027,469560.9897,15.6
+51845,803137.6318,273571.6387,638219.6252,15.6
+51846,541098.803,273105.4309,543936.03,15.6
+51847,716934.3153,50731.29019,602793.2484,15.6
+51848,665576.6377,50690.73208,489470.1749,15.6
+51849,623746.0972,50681.8093,868799.135,15.6
+51850,642769.8588,830101.887,575264.2895,15.6
+51851,631279.6931,141867.3097,673347.741,15.6
+51852,958336.4615,130718.74,594142.7072,15.6
+51853,628597.3865,357998.6199,735724.6342,15.6
+51854,625571.4491,249672.2449,583463.0142,15.6
+51855,625820.0828,262310.8909,697214.2756,15.6
+51856,627678.1465,262229.0614,586007.1125,15.6
+51857,627523.057,260644.6631,745247.6345,15.6
+51858,628077.269,259664.7049,587246.903,15.6
+51859,629153.0769,258649.7797,703157.0319,15.6
+51860,629054.6959,257266.7812,589768.9578,15.6
+51861,630469.4191,207495.8903,752019.2365,15.6
+51862,631072.5284,206009.2062,590560.5708,15.6
+51863,631108.0049,331729.985,709555.9537,15.6
+51864,632292.3138,228379.1783,592683.3695,15.6
+51865,633371.8095,247030.9871,758904.2609,15.6
+51866,632787.2008,256315.3135,593647.1511,15.6
+51867,634732.4487,249459.8184,712845.8164,15.6
+51868,539132.6346,248535.606,595236.4939,15.6
+51869,669522.0218,247281.103,762758.7897,15.6
+51870,640675.942,246768.3679,595300.7503,15.6
+51871,631859.9294,245218.3611,715493.9234,15.6
+51872,640407.629,244278.9317,596042.5659,15.6
+51873,640413.6308,243125.3386,260445.1188,15.6
+51874,109534.7143,242177.6675,91027.31653,15.6
+51875,109758.5874,240721.0974,1424427.632,15.6
+51876,921862.6107,240109.934,212856.7933,15.6
+51877,858108.83,238550.9191,237062.4992,15.6
+51878,534035.4502,237786.6963,86505.97667,15.6
+51879,729987.0035,236278.1586,0,15.6
+51880,684530.3989,46794.10074,0,15.6
+51881,612676.405,46438.83105,0,15.6
+51882,707725.484,46491.80107,1266007.64,15.6
+51883,650719.3377,703202.5991,586402.2592,15.6
+51884,652619.7173,72317.46178,464424.268,15.6
+51885,662772.5424,162951.7491,720800.3512,15.6
+51886,643930.3212,289855.6782,571508.5495,15.6
+51887,654504.348,217686.4629,656486.1968,15.6
+51888,652330.5371,227122.211,553126.3694,15.6
+51889,652641.2705,225592.3005,708265.2127,15.6
+51890,653730.0952,224851.0342,560021.004,15.6
+51891,653719.5852,223960.5249,672464.9122,15.6
+51892,654926.3647,222224.5639,563612.3126,15.6
+51893,994035.1138,175996.6643,719644.7037,15.6
+51894,656716.4553,175529.6989,563033.2389,15.6
+51895,656449.0458,288276.4582,680298.7965,15.6
+51896,657248.3461,190815.6335,565178.3123,15.6
+51897,658136.1332,214582.5963,726929.0955,15.6
+51898,658375.5262,219497.5222,565623.0734,15.6
+51899,561958.4123,212888.3069,684683.1886,15.6
+51900,694023.0808,212127.5813,567781.2343,15.6
+51901,663624.4245,214306.9006,732924.0051,15.6
+51902,654521.0847,216028.9817,570844.7798,15.6
+51903,659154.7725,217741.5404,691540.2558,15.6
+51904,658639.7188,219125.85,575286.347,15.6
+51905,656742.5411,221091.6063,743452.1011,15.6
+51906,111658.7877,222385.1405,578769.0141,15.6
+51907,111720.7892,224065.3991,698006.6626,15.6
+51908,923814.0244,225018.7189,583287.6029,15.6
+51909,878246.8549,227100.59,752666.7805,15.6
+51910,546601.2223,228101.8381,586134.9647,15.6
+51911,746376.7231,230056.4871,704438.487,15.6
+51912,688683.898,230937.4418,0,15.6
+51913,633565.103,46209.75889,0,15.6
+51914,650842.2838,46378.58255,1061210.328,15.6
+51915,650969.3539,46554.58885,512046.7488,15.6
+51916,695262.2691,708273.4875,195562.5564,15.6
+51917,650792.0391,76301.18122,219345.8923,15.6
+51918,633062.6515,179911.6346,98814.17946,15.6
+51919,653878.4037,298680.1478,350265.2289,15.6
+51920,645376.5631,233752.2283,201273.1288,15.6
+51921,643903.3878,244597.3497,223711.9285,15.6
+51922,643584.616,245818.4159,83219.85144,15.6
+51923,642128.1945,247537.6197,335294.2023,15.6
+51924,641444.232,248848.4941,1071008.487,15.6
+51925,640085.1035,202426.3837,603061.022,15.6
+51926,639070.8384,203303.1166,488721.0543,15.6
+51927,638662.8624,328478.84,626977.4856,15.6
+51928,637101.4588,229668.6787,585766.3856,15.6
+51929,636986.8899,251863.448,683144.5253,15.6
+51930,538211.3943,262836.6579,556253.8203,15.6
+51931,670976.8795,257982.5127,661630.6919,15.6
+51932,636052.7525,259394.7634,567619.0546,15.6
+51933,627816.4084,261557.1258,718754.6391,15.6
+51934,974167.0807,262362.752,574776.0452,15.6
+51935,632105.885,264022.5165,674074.7442,15.6
+51936,630938.514,265782.0421,582056.4296,15.6
+51937,629284.648,266776.5975,737055.6896,15.6
+51938,109704.2332,268218.7127,587295.4009,15.6
+51939,109690.044,269731.3269,686760.7046,15.6
+51940,921920.2537,271104.2671,594238.2645,15.6
+51941,825423.1515,272380.9252,753394.4054,15.6
+51942,551800.2665,274420.3137,598254.245,15.6
+51943,732316.4479,275030.1322,698466.5304,15.6
+51944,650246.6186,276858.7885,604905.3272,15.6
+51945,627891.822,278364.492,675270.7613,15.6
+51946,639029.7587,51426.32954,515932.4197,15.6
+51947,613271.0488,51475.01282,633304.3061,15.6
+51948,603539.4374,51633.06805,752764.7885,15.6
+51949,610320.3449,875417.6417,755262.1729,15.6
+51950,653463.4332,164261.6261,596508.3605,15.6
+51951,608404.1107,138334.8559,725731.5019,15.6
+51952,609680.9386,388078.7572,616497.4064,15.6
+51953,621144.9831,274814.7346,784883.5573,15.6
+51954,613643.4711,291081.7821,1134105.401,15.6
+51955,613645.7922,293623.2003,371127.3617,15.6
+51956,612280.9357,294333.6705,213032.7957,15.6
+51957,611566.2452,243554.1575,238260.8728,15.6
+51958,609945.0356,243845.4621,90264.95507,15.6
+51959,609689.1559,381387.4911,350303.3489,15.6
+51960,607794.7043,277533.2979,203266.6842,15.6
+51961,515098.7299,294625.0203,227086.4992,15.6
+51962,646263.0576,301931.0699,88207.71937,15.6
+51963,613463.4723,296350.9948,332012.2511,15.6
+51964,605855.3668,294167.4424,194291.4636,15.6
+51965,616713.9272,293431.0859,216725.1232,15.6
+51966,614254.3429,291818.1513,1100900.601,15.6
+51967,615638.4766,290279.7153,579566.2802,15.6
+51968,615060.2638,289112.6033,506076.9817,15.6
+51969,617116.0309,287495.2703,696728.9649,15.6
+51970,108899.7762,285988.4899,621948.3118,15.6
+51971,108975.3431,284860.823,652815.3197,15.6
+51972,921339.3954,283321.9501,590868.8284,15.6
+51973,805377.7625,281983.3962,736318.9358,15.6
+51974,559349.0482,280546.9438,597964.7779,15.6
+51975,728546.8586,279000.2975,684495.627,15.6
+51976,977257.0631,277688.84,606233.4371,15.6
+51977,637721.0325,276180.5927,757587.7559,15.6
+51978,651045.2992,275109.7626,518989.1016,15.6
+51979,624586.4408,50763.75386,625126.9197,15.6
+51980,613805.1912,50651.19675,524204.979,15.6
+51981,618231.957,50383.85592,907728.3671,15.6
+51982,615590.9258,838518.367,602441.3177,15.6
+51983,617197.4334,140632.2285,696980.3573,15.6
+51984,665053.5917,128199.2044,636618.9067,15.6
+51985,623889.0761,360829.4839,783233.1172,15.6
+51986,623751.7486,248011.1875,633394.2106,15.6
+51987,639427.7546,262417.7939,724978.4721,15.6
+51988,632762.5976,260896.4088,639356.1069,15.6
+51989,634517.6046,210413.685,803131.3858,15.6
+51990,634877.3465,209608.2994,643399.3319,15.6
+51991,635953.7125,335568.5258,736172.1334,15.6
+51992,540248.0214,230458.0727,649543.8217,15.6
+51993,674054.6983,249971.8179,816612.6259,15.6
+51994,641254.899,258558.2844,1691080.467,15.6
+51995,634076.9533,251244.6447,730630.8189,15.6
+51996,642705.6642,250660.4955,225247.9758,15.6
+51997,641968.9671,248570.3185,251685.0675,15.6
+51998,642756.6752,247655.5035,95866.34766,15.6
+51999,643183.7931,245996.1664,369067.8356,15.6
+52000,643618.8994,244756.2522,214591.5655,15.6
+52001,644868.5152,242879.1041,239412.0984,15.6
+52002,112161.2271,241831.0477,93684.16901,15.6
+52003,112166.5566,240352.6797,349587.2795,15.6
+52004,924462.5953,238672.2416,1233185.939,15.6
+52005,856858.0979,237246.1009,669663.3858,15.6
+52006,551962.8519,235829.6893,544932.054,15.6
+52007,745813.0614,234525.2779,714604.0349,15.6
+52008,701550.0206,232644.7384,646304.9828,15.6
+52009,639707.0113,231347.2549,766613.1574,15.6
+52010,673921.4134,229959.8544,631498.811,15.6
+52011,666460.1481,228559.6456,640536.6292,15.6
+52012,666144.2537,45624.61089,542117.4804,15.6
+52013,664865.734,45395.88321,696279.4691,15.6
+52014,635935.1033,45350.91423,780463.6045,15.6
+52015,646875.3576,45006.82074,720222.9125,15.6
+52016,643776.5496,761187.5614,630626.1033,15.6
+52017,693429.103,87563.15965,816349.2331,15.6
+52018,989874.1899,79853.45713,653264.4348,15.6
+52019,655597.8711,312413.9937,747132.9223,15.6
+52020,666745.7757,197886.9813,661000.2783,15.6
+52021,660241.2139,172873.9825,825136.97,15.6
+52022,659339.9706,175455.8706,664752.5031,15.6
+52023,560549.0081,291730.7543,755744.28,15.6
+52024,694231.3357,197289.916,669446.5022,15.6
+52025,659974.5766,227846.4306,835923.2016,15.6
+52026,651723.9193,233308.3576,671491.8965,15.6
+52027,657395.6335,232491.5239,763237.9812,15.6
+52028,655630.5247,234587.7108,675557.0909,15.6
+52029,654214.7799,237380.7038,845137.5257,15.6
+52030,652035.8337,239728.6563,676672.6726,15.6
+52031,652684.3591,241662.0894,769695.5737,15.6
+52032,650209.718,244427.7103,679903.2954,15.6
+52033,649723.5189,246451.4608,852556.626,15.6
+52034,113233.9501,249117.7726,1169995.052,15.6
+52035,113331.1303,250860.9091,388674.1057,15.6
+52036,925379.8599,253866.628,224971.9393,15.6
+52037,855538.1978,255824.4912,251177.5455,15.6
+52038,550984.0079,257814.1798,97020.47936,15.6
+52039,743785.0831,260401.3721,366962.3592,15.6
+52040,698674.0073,262940.3103,213990.5961,15.6
+52041,624403.1184,264231.3562,238628.3857,15.6
+52042,671175.5761,266629.8073,1308490.084,15.6
+52043,656617.9986,268967.2296,608235.5932,15.6
+52044,649628.5354,270963.4816,464357.5319,15.6
+52045,632418.5305,273554.5388,694194.8701,15.6
+52046,642952.726,50920.30472,555686.9047,15.6
+52047,623275.9954,50869.01424,838417.5384,15.6
+52048,622993.5379,51405.40351,620644.9547,15.6
+52049,621566.4104,868162.4712,768011.7838,15.6
+52050,666359.2673,156971.7368,646351.0349,15.6
+52051,623456.7652,147467.3007,729756.5693,15.6
+52052,628122.8914,384521.9309,644038.9462,15.6
+52053,634757.3396,224493.3245,802451.4934,15.6
+52054,532345.0055,240230.6295,648721.4012,15.6
+52055,666887.3445,377720.359,737436.0073,15.6
+52056,629861.6562,275740.8623,653631.8986,15.6
+52057,621379.5627,295483.4877,815586.9125,15.6
+52058,629585.6274,307889.9486,656073.7741,15.6
+52059,625711.9305,304779.603,746081.3256,15.6
+52060,624852.5315,306868.7394,660420.3127,15.6
+52061,962379.1062,309678.6194,826411.8284,15.6
+52062,621982.7591,311406.7542,661463.3481,15.6
+52063,621113.1597,313754.2394,754063.7814,15.6
+52064,620302.7172,316025.6165,665349.395,15.6
+52065,618660.9413,318366.1783,834874.0616,15.6
+52066,110878.2233,320424.701,666887.7993,15.6
+52067,110642.0577,322390.442,759428.1811,15.6
+52068,923162.9351,325108.9657,669885.6203,15.6
+52069,795595.2364,327183.7342,842077.5642,15.6
+52070,561130.1229,329016.6045,670448.2095,15.6
+52071,724073.4928,331595.7162,764383.7623,15.6
+52072,619486.3268,333695.6488,240109.2749,15.6
+52073,635154.7748,335778.7585,268937.5972,15.6
+52074,624585.3214,337951.5374,1149838.065,15.6
+52075,602167.7047,340495.2541,379237.5795,15.6
+52076,614556.5838,342249.6263,219890.2937,15.6
+52077,608287.031,344409.1129,0,15.6
+52078,606179.6398,347177.7383,0,15.6
+52079,605372.4547,59042.74406,0,15.6
+52080,591065.8412,59205.48206,349015.538,17.8
+52081,2324090.751,2560020.847,2738916.648,17.8
+52082,2331908.759,1408898.681,2487918.891,17.8
+52083,1106209.576,744169.0024,1872290.915,17.8
+52084,944314.6725,895189.8232,1262917.543,17.8
+52085,707594.3704,817251.5763,1112236.243,17.8
+52086,1273636.209,910618.4008,1176931.614,17.8
+52087,1039043.851,861872.0533,1150387.2,17.8
+52088,1030274.971,834155.2141,1078659.011,17.8
+52089,1041660.931,817233.8529,1229436.084,17.8
+52090,1043279.817,796220.7526,1084491.69,17.8
+52091,1036934.838,802472.9597,1148783.046,17.8
+52092,1035687.479,789406.1344,1096650.046,17.8
+52093,1033135.929,783946.6112,1254718.822,17.8
+52094,1029699.417,779336.5452,1101497.181,17.8
+52095,1028598.489,771760.6099,1164747.502,17.8
+52096,1025268.043,767443.5433,1112396.125,17.8
+52097,1024982.997,760209.6875,1277456.294,17.8
+52098,181114.0875,753871.7913,1115017.818,17.8
+52099,1111364.495,749974.0756,1177621.606,17.8
+52100,1168790.775,743010.6302,1124020.917,17.8
+52101,957655.1929,739254.5761,1295924.702,17.8
+52102,1020885.259,732734.8156,1126776.333,17.8
+52103,1025933.961,728511.5457,1187608.911,17.8
+52104,1354539.929,722937.7044,1137172.327,17.8
+52105,1013338.151,717798.3735,1310569.213,17.8
+52106,1012923.854,713498.9137,1138470.034,17.8
+52107,1011281.929,707823.4765,1195744.449,17.8
+52108,1011179.719,704557.6493,1147402.229,17.8
+52109,1009204.571,697591.1604,1322919.823,17.8
+52110,1008336.046,694574.3266,934098.2481,17.8
+52111,973171.775,111440.2693,0,17.8
+52112,973439.2432,110738.2736,635711.7696,17.8
+52113,1042683.551,1182112.988,379309.0279,17.8
+52114,1018417.753,482907.3117,3511081.885,17.8
+52115,994991.4678,825722.9297,1238810.656,17.8
+52116,865286.145,493059.435,864432.5566,17.8
+52117,1079718.688,576804.1844,1395366.323,17.8
+52118,982394.3764,792461.9962,1087988.322,17.8
+52119,1010753.266,653850.9567,1140318.119,17.8
+52120,1001258.368,634834.2769,1107420.213,17.8
+52121,1003892.099,662436.4948,1274949.821,17.8
+52122,998862.5542,639923.5661,1113917.665,17.8
+52123,1000104.294,640784.6402,1158199.261,17.8
+52124,999015.5011,635898.6419,1127543.985,17.8
+52125,997897.5,631809.8216,1299773.753,17.8
+52126,997154.8635,628372.3272,1131847.295,17.8
+52127,997605.6368,622245.3155,1173645.762,17.8
+52128,997220.6731,620916.945,1143158.831,17.8
+52129,171010.9963,615574.0748,1320403.343,17.8
+52130,1079299.322,611778.5048,1143451.796,17.8
+52131,1146396.406,608651.0727,1184030.037,17.8
+52132,922437.1949,604110.3966,1156103.313,17.8
+52133,1004537.56,600447.3216,1335753.458,17.8
+52134,1002686.357,597287.6778,1158712.479,17.8
+52135,994914.3072,591007.8667,1190785.25,17.8
+52136,992309.6194,590834.8718,1168333.587,17.8
+52137,994171.273,583980.5986,1350172.869,17.8
+52138,993821.0369,581274.5464,1167754.053,17.8
+52139,991564.6615,577581.8651,1199077.81,17.8
+52140,992781.8299,571723.8725,1177614.301,20
+52141,2316683.269,2599839.149,4390246.662,20
+52142,2322318.666,2598163.861,4090572.194,20
+52143,2248173.634,248936.8765,4301011.277,20
+52144,2322814.868,2366556.166,713676.102,20
+52145,1537616.394,1917280.354,2843828.126,20
+52146,1651375.441,1258373.681,2879272.52,20
+52147,1501951.366,1359170.939,2805619.16,20
+52148,1984440.619,1207461.375,2820302.666,20
+52149,1644748.202,1379410.117,2503292.942,20
+52150,1640420.185,1362690.022,2411472.648,20
+52151,1635237.679,1311792.704,2383514.859,20
+52152,1631305.018,1287946.43,2363600.253,20
+52153,1622991.113,1302506.534,2376120.862,20
+52154,1583480.6,1289285.007,3330158.255,20
+52155,1592226.117,1284567.767,2313601.531,20
+52156,1586085.836,1280806.05,2312010.792,20
+52157,1578995.911,1277372.197,2317433.597,20
+52158,1574463.975,1271781.133,2617192.804,20
+52159,1568401.288,1267721.996,2272323.125,20
+52160,249971.2063,1266821.466,2273650.794,20
+52161,1931981.062,1259823.258,2278652.674,20
+52162,1382002.587,1260039.089,2280453.278,20
+52163,1614147.933,1255119.544,2281338.952,20
+52164,1569231.756,1252301.821,2282446.007,20
+52165,1565124.278,1250070.668,2280768.417,20
+52166,1562604.402,1247873.205,2281111.328,20
+52167,1532622.943,1242742.357,2280608.46,20
+52168,1545437.975,1237049.141,2599706.14,20
+52169,1535800.677,1238935.157,2234869.153,20
+52170,1533024.912,1233000.739,2241380.252,20
+52171,1530701.976,1230791.497,2181272.635,20
+52172,1526763.375,1229549.627,2180449.819,20
+52173,1526258.374,1227635.252,1842995.88,20
+52174,1465324.838,191158.0361,2378600.982,20
+52175,1463449.939,190909.1462,443488.533,20
+52176,1536171.757,2143420.329,511877.4164,20
+52177,1533909.997,1098921.058,2844133.12,20
+52178,1336494.304,1068463.549,3076320.941,20
+52179,1538399.853,1183217.57,2115275.172,20
+52180,1551135.784,1286486.763,2237238.212,20
+52181,1515598.479,1253261.899,2087954.918,20
+52182,1494042.194,1190121.524,2213144.035,20
+52183,1510812.788,1227145.338,2173342.807,20
+52184,1496618.978,1217884.243,2184329.242,20
+52185,1493860.214,1214987.971,2193165.265,20
+52186,1492536.121,1213054.875,2194183.963,20
+52187,1488367.894,1212798.741,2205335.643,20
+52188,1487015.795,1213163.292,2526699.318,20
+52189,1483556.615,1208406.456,2168363.524,20
+52190,1482280.763,1206060.462,2178727.209,20
+52191,230709.2188,1204288.481,2182332.506,20
+52192,2135473.568,1205202.623,2192037.286,20
+52193,1355971.374,1202425.942,2194422.717,20
+52194,1545217.395,1201185.199,3219175.906,20
+52195,1511375.278,1201832.237,2157305.877,20
+52196,1466568.578,1200063.742,2169475.51,20
+52197,1479782.604,1199414.358,2171416.472,20
+52198,1478194.699,1198380.849,2502507.015,20
+52199,1471043.215,1199163.179,2144959.67,20
+52200,1459733.975,1195478.73,2150977.03,21
+52201,2350598.404,2993246.705,4407960.699,21
+52202,2357081.623,2323401.912,4349899.582,21
+52203,2286690.324,1783637.241,2733292.045,21
+52204,1299246.07,1227921.475,2698306.646,21
+52205,1852705.38,1675932.486,2965089.638,21
+52206,1683836.455,1489175.83,2747666.717,21
+52207,1656469.287,1497184.752,2692494.687,21
+52208,1657348.268,1485808.272,3012700.546,21
+52209,1646429.662,1479923.903,2639082.005,21
+52210,1627077.953,1473124.855,2639259.055,21
+52211,1628399.608,1470061.866,2632272.312,21
+52212,1624380.273,1465891.928,2635460.431,21
+52213,1614816.21,1458799.125,2628034.198,21
+52214,1611331.871,1457407.747,2631328.024,21
+52215,1608539.444,1449120.918,2620682.571,21
+52216,1600256.472,1449565.047,2624192.727,21
+52217,1600785.744,1443588.229,2611696.628,21
+52218,1590977.365,1439535.473,2932370.901,21
+52219,1589819.136,1436873.497,2556910.062,21
+52220,1587504.305,1431405.009,2566653.013,21
+52221,1579838.893,1431528.467,2564578.263,21
+52222,1577939.575,1425946.059,2568357.509,21
+52223,1574318.117,1422545.757,2568377.055,21
+52224,1570161.657,1420330.765,2568343.463,21
+52225,1566517.918,1417112.355,2570285.918,21
+52226,1563760.223,1414151.437,2565314.215,21
+52227,1561891.976,1411339.413,2568678.997,21
+52228,1554822.793,1407859.095,2884693.765,21
+52229,1554181.655,1405513.046,2514366.703,21
+52230,1551288.87,1402922.736,2522434.875,21
+52231,1545408.872,1398648.935,2523260.202,21
+52232,1546479.9,1398606.464,2527591.735,21
+52233,1539143.958,1394312.808,2530159.71,21
+52234,1539982.833,1391680.945,2531288.894,21
+52235,1535344.258,1390235.3,2532290.344,21
+52236,1532498.692,1387178.108,2530941.685,21
+52237,1529748.579,1385254.779,2536769.037,21
+52238,1525805.434,1382475.318,2859022.712,21
+52239,1525953.472,1380530.899,2484397.261,21
+52240,1522356.601,1377657.774,2494277.094,21
+52241,1519153.278,1376516.079,2494772.115,21
+52242,1515761.078,1374234.895,2504016.341,21
+52243,1516683.58,1371619.702,2501018.225,21
+52244,1509029.46,1367878.728,2506159.539,21
+52245,1511199.564,1370373.943,2507555.501,21
+52246,1507528.373,1363758.5,2506119.377,21
+52247,1503816.967,1363773.611,2504291.908,21
+52248,1503652.689,1361966.16,2832787.316,21
+52249,1499790.138,1358590.026,2458908.046,21
+52250,1498382.472,1358989.104,2464277.68,21
+52251,1495123.75,1354383.535,2469282.1,21
+52252,1494378.09,1354083.609,2473809.944,21
+52253,1490665.446,1353727.197,2479244.242,21
+52254,1489857.796,1348505.577,2475587.729,21
+52255,1487063.307,1349280.128,2485002.499,21
+52256,1485162.019,1346914.257,2482281.601,21
+52257,1484930.668,1343825.353,2484845.489,21
+52258,1479199.121,1344537.997,2816968.131,21
+52259,1479695.225,1341805.857,2437154.497,21
+52260,1477438.581,1338863.789,2446329.948,21
+52261,2367165.407,2168465.417,2382723.231,21
+52262,2361172.328,2159636.932,2372231.176,21
+52263,2357585.194,2155832.092,2378951.139,21
+52264,2357749.033,2153982.931,2373275.54,21
+52265,2353892.307,2148957.88,2377852.967,21
+52266,2354823.941,2147046.934,2372156.008,21
+52267,2351319.834,2145164.177,2374788.223,21
+52268,2351619.841,2140607.361,2715287.427,21
+52269,2348863.127,2135476.044,2325967.632,21
+52270,2348945.737,2133813.844,2333544.315,21
+52271,2345788.55,2129964.415,2332362.662,21
+52272,2346367.748,2127623.005,2341677.538,21
+52273,2343144.018,2123708.647,2338038.038,21
+52274,2343355.625,2122479.22,2343657.576,21
+52275,2343596.552,2117526.915,2340877.975,21
+52276,2338674.255,2117022.067,2341014.938,21
+52277,2341166.324,2114206.081,2344194.857,21
+52278,2338010.648,2109565.639,3162111.151,21
+52279,2337616.247,2108854.049,2375709.758,21
+52280,2338462.651,2105144.171,2670942.345,21
+52281,2334318.632,2101408.88,2298766.254,21
+52282,2335197.866,2101263.108,2297950.859,21
+52283,2334735.976,2098485.095,2306920.673,21
+52284,2332376.975,2093763.589,2493381.831,21
+52285,2332193.019,2093288.965,2285111.837,21
+52286,2331548.993,2090254.631,2285290.15,21
+52287,2330935.296,2086108.952,2290603.765,21
+52288,2329225.819,2086225.508,2462029.179,21
+52289,2329400.377,2082822.871,2274662.79,21
+52290,2328588.606,2079926.623,2272824.886,21
+52291,2324681.502,2076943.616,2283166.209,21
+52292,2323701.947,2074523.353,2451060.062,21
+52293,2325491.777,2072006.47,2263078.154,21
+52294,2321615.414,2068353.715,2264487.155,21
+52295,2321538.689,2068987.268,2271833.261,21
+52296,2321582.881,2063759.906,2439908.435,21
+52297,2319942.991,2063033.035,2251611.545,21
+52298,2320140.873,2059964.111,2258029.55,21
+52299,2317642.729,2058748.837,2258027.214,21
+52300,2319182.577,2055483.968,2261902.743,21
+52301,2316988.254,2054482.16,2263721.873,21
+52302,2315628.01,2051376.316,2265107.011,21
+52303,2317994.334,2048342.408,2265061.224,21
+52304,2313150.166,2047437.121,2267474.232,21
+52305,2316246.124,2045516.553,2264305.636,21
+52306,2313337.105,2040815.066,3100877.873,21
+52307,2313070.73,2041990.044,2301073.431,21
+52308,2313572.314,2038679.776,2606544.122,21
+52309,2310972.983,2035996.299,2225465.824,21
+52310,2311615.813,2033354.121,2226711.095,21
+52311,2311520.9,2033596.209,2230640.923,21
+52312,2310101.721,2028630.569,2430476.092,21
+52313,2309311.2,2029169.139,2213627.744,21
+52314,2308984.437,2025899.575,2214692.701,21
+52315,2309664.386,2023220.442,2221991.893,21
+52316,2306347.189,2020944.756,2393667.531,21
+52317,2308353.915,2020793.542,2206249.244,21
+52318,2307350.571,2017259.157,2206610.326,21
+52319,2305661.993,2015692.815,2211258.91,21
+52320,2306033.745,2014825.817,2389341.307,21
+52321,2099195.292,1767553.817,1677109.533,21
+52322,2082259.934,1749655.059,1654041.335,21
+52323,2076232.772,1742643.144,1654935.349,21
+52324,2073703.073,1736709.187,1828226.706,21
+52325,2068067.583,1733042.116,1636385.355,21
+52326,2065349.121,1727550.895,1636887.364,21
+52327,2060517.289,1723955.095,1637195.626,21
+52328,2058351.902,1718259.869,1635816.175,21
+52329,2053817.949,1715100.925,1638649.874,21
+52330,2052472.128,1712453.935,1636022.011,21
+52331,2048066.991,1705318.447,1635409.842,21
+52332,2479203.318,1705841.977,1635544.501,21
+52333,2042545.602,1699756.208,1633736.654,21
+52334,2039809.754,1696474.164,2495611.24,21
+52335,2037286.842,1693582.029,1663728.979,21
+52336,2035233.49,1690501.906,2019919.171,21
+52337,2031722.264,1686613.352,1595785.172,21
+52338,2030066.648,1684635.872,1596803.111,21
+52339,2027144.963,1680253.747,1596333.594,21
+52340,2024595.534,1678377.675,1814849.618,21
+52341,2023237.8,1674400.116,1581155.455,21
+52342,2019072.13,1673337.431,1579633.503,21
+52343,2018951.057,1668305.02,1583895.474,21
+52344,2015142.988,1667056.476,1777357.675,21
+52345,2014672.886,1665509.919,1568197.315,21
+52346,2010303.567,1662543.987,1568716.73,21
+52347,2009993.927,1658294.679,1567805.718,21
+52348,2007928.922,1658167.394,1765529.129,21
+52349,2004981.365,1653386.298,1553763.152,21
+52350,2438349.491,1652490.779,1557781.776,21
+52351,1999923.028,1648739.148,1557483.553,21
+52352,2000779.124,1647340.051,1557007.089,21
+52353,1996883.863,1644607.528,1560348.182,21
+52354,1996785.122,1641754.447,1556749.166,21
+52355,1993126.513,1639433.293,1557391.616,21
+52356,1992588.982,1638267.857,1559255.451,21
+52357,1989135.468,1634538.615,1556233.576,21
+52358,1988313.225,1633312.974,1557506.519,21
+52359,1988254.513,1629612.436,1564223.422,21
+52360,1982749.779,1629571.889,1551577.873,21
+52361,1983974.364,1625960.828,1554752.626,21
+52362,1981943.564,1623703.203,1721576.822,21
+52363,1978752.67,1621827.297,1537725.316,21
+52364,1978704.642,1619709.587,1535346.384,21
+52365,1976307.126,1617508.529,1535433.93,21
+52366,1973584.675,1615450.249,1535594.664,21
+52367,1973776.158,1613129.651,1534272.086,21
+52368,1970559.973,1611574.836,1532044.16,21
+52369,1969758.391,1608398.288,1532313.732,21
+52370,1968924.501,1606414.9,1531451.704,21
+52371,1964986.216,1603430.736,1528989.324,21
+52372,1965013.436,1602359.057,2417142.733,21
+52373,1963801.649,1599490.31,1560622.007,21
+52374,1960943.666,1598648.198,1938741.721,21
+52375,1960552.657,1597818.136,1493118.344,21
+52376,1957400.428,1593228.5,1490397.923,21
+52377,1958347.681,1592647.141,1493078.712,21
+52378,1953914.245,1590849.464,1722013.81,21
+52379,1955528.734,1589059.239,1477029.026,21
+52380,1951349.022,1585943.755,1476858.677,21
+52381,1948785.285,1584682.581,1479752.252,21
+52382,1947531.494,1581194.035,1680668.654,21
+52383,1945007.922,1579496.629,1461747.546,21
+52384,1944425.967,1575150.655,1465079.493,21
+52385,1941383.466,1575035.676,1464408.278,21
+52386,1940051.911,1571207.081,1466847.444,21
+52387,1939229.577,1568155.033,1465231.258,21
+52388,1937699.156,1566526.591,1466087.468,21
+52389,1934679.848,1564860.398,1466064.707,21
+52390,1933605.534,1560438.478,1463001.761,21
+52391,1932000.243,1560383.724,1466600.549,21
+52392,1930530.112,1556488.215,1461581.233,21
+52393,1930097.389,1554585.823,1462312.514,21
+52394,1926216.59,1552278.815,1464165.822,21
+52395,1928022.954,1548796.079,1459929.729,21
+52396,1923828.306,1548808.56,1457934.916,21
+52397,1923125.108,1543885.607,1456760.784,21
+52398,1922491.114,1542554.149,2351453.375,21
+52399,1919371.37,1540361.13,1483741.741,21
+52400,1919426.248,1539148.473,1873236.809,21
+52401,1916068.511,1535056.228,1417218.871,21
+52402,1917601.98,1533490.648,1416233.196,21
+52403,1913716.401,1531076.117,1417237.478,21
+52404,1913085.675,1528827.198,1415304.294,21
+52405,1912399.974,1526805.178,1417042.825,21
+52406,1909594.281,1524348.912,1416491.338,21
+52407,1909385.983,1522269.307,1413566.914,21
+52408,1907827.021,1519909.788,1415351.434,21
+52409,1904646.836,1516761.714,1413557.991,21
+52410,1906641.015,1517117.386,1411030.169,21
+52411,1902880.217,1514294.302,1411205.517,21
+52412,1901469.791,1511995.084,1409832.738,21
+52413,1901136.405,1507800.158,1408345.393,21
+52414,1898419.447,1477686.055,1404427.869,21
+52415,1896859.796,1467239.499,1406808.803,21
+52416,1897195.64,1462785.092,1401118.128,21
+52417,1893245.61,1461561.169,1399931.258,21
+52418,1892812.566,1456007.335,1398449.999,21
+52419,1891922.257,1454597.388,1396523.534,21
+52420,1889522.57,1448497.858,1394702.19,21
+52421,1889084.535,1448462.072,1391224.218,21
+52422,1886301.005,1443300.06,1390403.134,21
+52423,1885922.051,1441195.991,1388243.083,21
+52424,1884806.444,1437953.062,1384524.308,21
+52425,1881586.193,1435052.055,1383049.699,21
+52426,1881316.784,1433275.64,1378331.772,21
+52427,1879886.296,1428541.644,1379244.911,21
+52428,1878712.918,1426804.465,1374303.825,21
+52429,1876529.74,1424010.834,2285894.754,21
+52430,1874884.25,1421370.131,1402307.468,21
+52431,1874072.551,1418935.476,1809845.624,21
+52432,1872568.796,1415521.289,1333756.937,21
+52433,1870839.521,1414613.388,1333454.375,21
+52434,1868833.065,1410204.373,1331528.416,21
+52435,1868757.174,1408175.429,1331348.779,21
+52436,1866663.882,1405958.545,1332092.931,21
+52437,1865366.964,1403438.574,1327438.602,21
+52438,1863151.034,1400506.272,1328596.274,21
+52439,1862839.191,1398233.24,1326482.056,21
+52440,1861048.487,1397559.111,1329600.277,21
+52441,1859983.261,1395163.19,1328420.764,21
+52442,1858305.607,1394757.112,1327504.875,21
+52443,1857147.253,1393778.892,1325524.268,21
+52444,1854070.675,1393510.776,1321081.706,21
+52445,1852627.263,1392575.296,1321810.364,21
+52446,1851826.102,1390945.355,1317777.533,21
+52447,1849012.938,1390292.99,1313463.401,21
+52448,1847685.678,1390362.306,1314449.975,21
+52449,1845569.216,1388432.914,1308992.076,21
+52450,1843104.697,1388774.766,1309094.49,21
+52451,1842216.912,1385916.726,1308051.067,21
+52452,1836711.12,1386852.885,1301204.026,21
+52453,1835546.911,1386099.257,1300227.524,21
+52454,1834071.412,1384865.825,1295228.428,21
+52455,1830336.944,1384167.037,1293972.347,21
+52456,1829063.582,1383480.107,1291524.903,21
+52457,1826746.53,1382600.415,2204505.966,21
+52458,1824637.045,1382008.733,1319777.764,21
+52459,1821848.878,1380928.949,1731514.524,21
+52460,1818932.623,1380113.223,1251462.414,21
+52461,1819109.4,1380935.147,1247587.386,21
+52462,1814311.402,1377685.2,1247065.798,21
+52463,1813922.233,1379954.785,1245964.887,21
+52464,1811287.922,1377382.837,1244960.218,21
+52465,1808259.111,1377138.527,1243154.844,21
+52466,1806915.805,1375391.075,1239973.834,21
+52467,1804940.384,1376411.618,1239869.433,21
+52468,1803074.066,1375704.215,1238263.481,21
+52469,1799327.155,1372967.38,1236372.189,21
+52470,1798091.109,1375432.46,1231884.275,21
+52471,1797261.374,1371638.463,1233869.625,21
+52472,1793790.782,1373349.69,1226810.55,21
+52473,1792852.882,1370420.607,1229444.457,21
+52474,1791916.295,1370749.572,1223861.687,21
+52475,1789428.023,1370190.956,1224759.193,21
+52476,1787674.595,1368487.368,1219271.72,21
+52477,1787048.941,1368910.377,1218746.328,21
+52478,1784700.989,1368033.916,1215162.756,21
+52479,1783794.32,1366491.903,1214112.157,21
+52480,1781602.17,1365932.406,1211508.084,21
+52481,1780746.115,1366354.317,1207899.565,21
+52482,1778520.588,1363042.306,1205967.674,21
+52483,1778137.467,1365680.199,1201683.524,21
+52484,1774385.054,1362608.799,2125006.035,21
+52485,1775293.783,1362916.912,1230067.93,21
+52486,1773639.553,1362010.885,1655347.004,21
+52487,1770598.005,1361131.879,1165084.86,21
+52488,1771140.786,1361866.529,1162818.596,21
+52489,1768419.582,1359917.104,1161186.651,21
+52490,1767902.662,1360288.341,1160262.144,21
+52491,1764940.292,1359126.597,1158592.052,21
+52492,1765161.613,1359459.81,1157281.298,21
+52493,1762938.127,1359343.197,1154606.061,21
+52494,1762738.895,1356958.888,1154114.799,21
+52495,1759795.551,1357622.418,1151998.81,21
+52496,1759653.971,1357387.813,1148998.068,21
+52497,1758463.128,1356717.615,1148577.244,21
+52498,1755981.46,1355168.43,1146381.123,21
+52499,1755078.998,1357110.348,1143134.258,21
+52500,1754379.98,1354035.843,1142016.463,21
+52501,1750256.089,1352723.882,1133918.857,21
+52502,1748301.687,1349246.877,1126811.161,21
+52503,1744565.021,1346455.928,1125167.806,21
+52504,1743394.08,1345786.058,1121639.947,21
+52505,1741779.292,1342126.568,1118459.227,21
+52506,1738244.778,1340135.833,1116627.589,21
+52507,1736785.022,1339475.577,1112047.747,21
+52508,1734100.124,1336217.634,1107722.61,21
+52509,1733302.832,1334631.263,1103438.194,21
+52510,1730396.461,1331745.251,1101624.955,21
+52511,1728220.597,1331034.307,1096878.264,21
+52512,1726495.192,1327999.059,2027452.655,21
+52513,1724229.213,1325342.435,1122710.702,21
+52514,1721577.522,1324263.475,1561728.314,21
+52515,1720374.405,1321792.191,1055582.904,21
+52516,1717559.876,1319512.938,1090702.433,21
+52517,1716535.989,1317414.704,1049696.185,21
+52518,1714321.565,1316483.229,1049004.378,21
+52519,1710608.446,1312998.74,1044963.499,21
+52520,1711019.229,1311216.601,1044778.574,21
+52521,1706743.14,1309083.753,1038984.73,21
+52522,1705796.027,1307369.433,1037949.079,21
+52523,1703089.854,1305109.338,1036789.273,21
+52524,1702419.757,1302805.834,1031110.416,21
+52525,1698674.214,1301511.554,1031181.518,21
+52526,1698224.877,1298484.638,1026387.698,21
+52527,1695062.34,1297347.842,1023107.896,21
+52528,1693099.548,1292958.33,1021687.155,21
+52529,1691290.391,1294019.293,1018016.996,21
+52530,1689900.224,1290026.97,1013293.736,21
+52531,1686387.908,1288315.963,1013215.153,21
+52532,1685691.115,1287150.173,1007201.807,21
+52533,1682751.046,1285387.561,1006703.325,21
+52534,1680692.516,1283647.483,1003016.904,21
+52535,1679165.649,1282192.935,999368.0158,21
+52536,1677317.608,1279950.393,996837.134,21
+52537,1673082.487,1278378.044,991678.6023,21
+52538,1673820.542,1277752.294,989572.8669,21
+52539,1669596.844,1274045.864,1930289.681,21
+52540,1668857.065,1274892.971,1014477.398,21
+52541,1665509.9,1271986.29,1469593.937,21
+52542,1665100.665,1270010.897,952387.2825,21
+52543,1660610.604,1268972.225,1024451.932,21
+52544,1661227.52,1267608.785,944272.4022,21
+52545,1657747.48,1264856.918,942438.2828,21
+52546,1654702.251,1264042.663,939181.454,21
+52547,1653807.376,1262442.754,937971.2726,21
+52548,1652408.464,1260071.216,935197.9011,21
+52549,1649316.07,1259419.744,932761.3988,21
+52550,1647187.177,1257255.058,929801.5676,21
+52551,1646014.851,1255994.713,928167.0793,21
+52552,1642512.097,1253502.8,925685.0119,21
+52553,1641445.822,1252347.992,921084.7885,21
+52554,1639468.246,1250433.6,919251.0199,21
+52555,1635530.133,1249229.978,917531.0852,21
+52556,1636766.566,1246722.69,913314.6583,21
+52557,1632619.645,1245864.819,910906.1573,21
+52558,1630159.25,1243275.977,908717.0766,21
+52559,1629676.722,1241011.509,904275.8553,21
+52560,1625596.991,1238139.455,904957.0731,21
+52561,1702933.188,1310206.425,1037263.093,21
+52562,1699098.437,1305698.191,1033428.408,21
+52563,1699722.054,1302740.232,1032681.272,21
+52564,1696486.321,1299599.825,1032584.937,21
+52565,1697285.622,1293998.971,1027623.656,21
+52566,1694846.111,1292245.218,1983789.546,21
+52567,1691706.651,1287720.992,1056607.011,21
+52568,1691930.156,1283964.107,1525265.109,21
+52569,1689735.166,1280478.806,995297.0376,21
+52570,1687774.065,1276990.804,1079710.475,21
+52571,1686463.972,1272604.513,989008.7234,21
+52572,1686145.115,1269059.214,990082.9847,21
+52573,1682827.852,1266424.576,986717.8612,21
+52574,1681176.041,1261237.318,986027.2752,21
+52575,1681033.419,1257750.254,984012.5495,21
+52576,1677858.784,1255142.332,983729.2489,21
+52577,1677821.021,1250143.912,981484.9537,21
+52578,1674362.07,1246291.147,978244.0509,21
+52579,1674504.271,1242662.625,978863.4148,21
+52580,1672107.356,1239629.915,975221.1577,21
+52581,1670677.94,1235361.112,976363.1099,21
+52582,1669282.733,1231182.408,970047.2898,21
+52583,1666263.64,1228269.699,971519.8721,21
+52584,1667252.201,1223480.617,967675.2214,21
+52585,1662233.076,1220058.197,965272.8054,21
+52586,1663669.38,1216739.987,964177.9631,21
+52587,1660335.557,1212623.944,961295.5976,21
+52588,1659435.711,1207849.33,958523.4828,21
+52589,1657982.652,1205275.814,958415.2634,21
+52590,1655861.297,1200626.898,957085.2105,21
+52591,1653617.112,1196882.577,950354.8504,21
+52592,1653519.527,1192938.117,950493.3942,21
+52593,1649765.661,1189827.007,945160.8644,21
+52594,1650329.128,1185314.57,1916559.628,21
+52595,1647041.412,1181342.455,973778.7841,21
+52596,1646833.144,1176831.881,1458434.698,21
+52597,1644909.496,1173703.799,911033.3242,21
+52598,1643109.596,1169419.081,1034248.238,21
+52599,1641525.341,1165134.269,901723.2899,21
+52600,1640111.402,1162350.098,900341.4895,21
+52601,1637365.167,1157407.784,897586.2842,21
+52602,1636713.503,1153095.303,897023.8353,21
+52603,1635346.309,1150196.816,894618.0387,21
+52604,1633824.695,1145475.811,892369.2819,21
+52605,1632111.69,1141138.666,890458.7325,21
+52606,1629114.736,1138369.899,887470.7107,21
+52607,1629990.291,1132561.775,885171.2835,21
+52608,1626397.586,1131611.668,883293.4134,21
+52609,1625112.287,1125668.032,879644.4173,21
+52610,1624632.059,1121364.845,879024.6943,21
+52611,1621854.762,1118557.447,876329.117,21
+52612,1620558.552,1112560.085,870794.9595,21
+52613,1619790.666,1110877.073,872032.641,21
+52614,1617004.206,1105106.63,866834.2782,21
+52615,1616389.896,1101609.343,865412.7034,21
+52616,1615095.864,1097943.125,861996.5884,21
+52617,1611510.255,1094131.055,859268.5288,21
+52618,1611495.794,1090627.355,855862.0797,21
+52619,1610614.785,1085043.898,854301.758,21
+52620,1606824.521,1082393.719,854633.0774,21
+52621,1532140.46,1008813.296,727332.1076,21
+52622,1529480.608,1010843.57,723377.7826,21
+52623,1529252.936,1011320.864,718311.3976,21
+52624,1527970.344,1013498.208,1700805.105,21
+52625,1526983.572,1014776.572,745080.0926,21
+52626,1528100.997,1017618.732,1242791.626,21
+52627,1525083.889,1018124.773,683674.3091,21
+52628,1525850.004,1021072.408,873283.0773,21
+52629,1526265.673,1021399.884,694843.9307,21
+52630,1524460.917,1024369.405,667806.4362,21
+52631,1523800.964,1025774.878,664689.5486,21
+52632,1523320.51,1026892.334,661543.0359,21
+52633,1523782.897,1029226.923,658152.9918,21
+52634,1521630.265,1031022.024,654894.9607,21
+52635,1522709.636,1033478.555,651221.3836,21
+52636,1521271.893,1033318.354,648251.9795,21
+52637,1521952.62,1037094.666,645303.4055,21
+52638,1520651.128,1036982.869,642539.1785,21
+52639,1519702.155,1039179.938,640324.2307,21
+52640,1520258.777,1041919.938,635693.387,21
+52641,1519754.544,1043316.029,633498.279,21
+52642,1518189.589,1044576.647,629290.6518,21
+52643,1518831.171,1046907.928,626242.8532,21
+52644,1518453.002,1048786.151,622327.5047,21
+52645,1518099.795,1051033.558,619199.1219,21
+52646,1516773.269,1052068.174,613935.9476,21
+52647,1517199.929,1054498.798,610608.3075,21
+52648,1516882.778,1055068.546,609618.689,21
+52649,1516132.466,1058734.059,603941.5906,21
+52650,1515914.524,1058983.484,607901.7297,21
+52651,1514970.007,1062231.352,596144.005,21
+52652,1514056.342,1063478.859,1578532.557,21
+52653,1511780.481,1066104.722,622543.7174,21
+52654,1509842.887,1068660.578,1123530.691,21
+52655,1506917.376,1069285.012,563297.0714,21
+52656,1506376.718,1071853.924,797745.8462,21
+52657,1504400.47,1073973.664,615338.8996,21
+52658,1504064.205,1076470.424,546740.8426,21
+52659,1502108.041,1078605.643,574581.8059,21
+52660,1501087.794,1079979.303,562598.154,21
+52661,1498979.453,1083549.54,556918.1399,21
+52662,1497893.497,1083727.74,554946.7931,21
+52663,1497052.353,1087677.023,551064.1055,21
+52664,1492514.521,1088569.493,548923.5421,21
+52665,1496382.626,1091501.107,546138.1576,21
+52666,1493152.672,1092899.271,543048.5935,21
+52667,1493326.334,1096127.913,540352.2021,21
+52668,1491072.047,1097141.266,537741.2751,21
+52669,1489408.762,1100251.874,534883.456,21
+52670,1489030.033,1102908.036,529621.4748,21
+52671,1486482.914,1103169.77,526303.6794,21
+52672,1484649.107,1107004.867,524277.4293,21
+52673,1482615.642,1108294.701,520599.3092,21
+52674,1482702.254,1111248.918,517658.1887,21
+52675,1480362.752,1113327.362,515085.338,21
+52676,1476707.357,1114809.48,512904.2312,21
+52677,1477991.415,1118865.67,503402.1966,21
+52678,1474634.677,1119892.302,513448.1844,21
+52679,1472071.501,1121776.825,501937.8081,21
+52680,1472367.391,1125333.898,1419027.52,21
+52681,1466823.339,1121426.234,496266.6691,21
+52682,1466890.121,1121895.524,981516.9032,21
+52683,1465332.225,1118438.082,446105.4618,21
+52684,1461416.893,1115327.912,713778.49,21
+52685,1459698.945,1111906.866,534797.0293,21
+52686,1456034.437,1108372.924,462560.5072,21
+52687,1454122.227,1105905.775,497861.1476,21
+52688,1451464.316,1102336.865,486574.749,21
+52689,1448861.447,1099637.413,481526.502,21
+52690,1446120.113,1094819.493,478376.5514,21
+52691,1443861.16,1093988.087,476115.6888,21
+52692,1440364.839,1088701.8,473171.3023,21
+52693,1437622.744,1086621.169,470897.6614,21
+52694,1436381.126,1081997.218,467884.8007,21
+52695,1431478.873,1080470.061,466345.0208,21
+52696,1430087.255,1075837.064,463759.8382,21
+52697,1426920.055,1072728.175,462028.1414,21
+52698,1423030.097,1069884.59,459441.3975,21
+52699,1421470.221,1067154.408,457441.0833,21
+52700,1418442.962,1062348.042,454982.2362,21
+52701,1414045.373,1059874.718,453047.4569,21
+52702,1413011.868,1056565.508,450774.416,21
+52703,1409794.932,1054191.757,448618.7301,21
+52704,1405081.812,1049628.084,446373.9976,21
+52705,1403734.873,1046764.714,444144.9309,21
+52706,1399889.012,1044073.542,441503.1721,21
+52707,1398644.749,1039406.195,439492.1425,21
+52708,1393466.118,1037180.059,437276.0263,21
+52709,1391591.187,1033502.208,435270.1646,21
+52710,1387298.37,1031087.949,433134.1081,21
+52711,1385360.573,1025676.455,1279193.746,21
+52712,1383702.496,1024227.709,388234.2128,21
+52713,1381065.805,1019516.509,836144.7606,21
+52714,1379760.085,1017457.191,346019.3211,21
+52715,1377429.198,1012769.311,620571.5592,21
+52716,1377191.947,1009173.898,454849.8337,21
+52717,1373829.569,1006363.927,389241.2719,21
+52718,1373663.005,1002213.022,422262.8706,21
+52719,1371367.147,999114.2939,411683.6257,21
+52720,1370063.178,995636.1976,407270.7061,21
+52721,1367693.735,992347.0228,404625.2585,21
+52722,1367104.643,987901.675,402822.5877,21
+52723,1364989.987,984776.1312,400133.0308,21
+52724,1363391.652,981220.2924,398571.8233,21
+52725,1362084.252,978417.9645,396234.0863,21
+52726,1360776.097,973865.3045,394391.2641,21
+52727,1359270.978,970322.2056,392345.3564,21
+52728,1357535.428,967261.1128,390411.6519,21
+52729,1355587.442,963864.725,388184.2826,21
+52730,1355779.808,959712.8445,386337.4267,21
+52731,1352150.81,956000.525,383775.7184,21
+52732,1352739.967,952229.5711,382365.5664,21
+52733,1350295.403,949979.8187,379968.5926,21
+52734,1349894.451,945166.9454,378251.9224,21
+52735,1346841.532,942084.5954,376158.9073,21
+52736,1346844.109,938097.1806,374480.2836,21
+52737,1346000.602,934581.5185,371864.1005,21
+52738,1344266.495,931794.4948,370596.1783,21
+52739,1342272.648,926367.7608,368381.7436,21
+52740,1342199.663,923771.1207,366551.2461,21
+52741,1338936.702,923694.6054,355433.3872,21
+52742,1339377.85,923853.1091,353503.3728,21
+52743,1338423.047,924853.5851,352031.3841,21
+52744,1335854.808,925485.2272,349637.6132,21
+52745,1336697.202,926059.8261,347491.7116,21
+52746,1335527.119,927107.6669,346122.033,21
+52747,1333135.794,926726.7418,344416.5211,21
+52748,1333962.069,927394.6054,343209.2027,21
+52749,1333169.163,928657.5688,341534.644,21
+52750,1330645.303,929424.6783,339932.905,21
+52751,1331128.708,929505.9563,338499.2256,21
+52752,1330816.126,930197.7286,336839.4486,21
+52753,1329197.449,931487.2281,335499.78,21
+52754,1328387.755,931564.9531,334032.729,21
+52755,1328345.971,932001.8846,332326.5217,21
+52756,1327074.802,931961.754,330735.1366,21
+52757,1326377.59,934125.5975,329375.5628,21
+52758,1325452.41,932609.1186,327605.4891,21
+52759,1324869.776,935378.4517,326588.6656,21
+52760,1324810.918,935019.2347,324590.6363,21
+52761,1323375.552,935983.9508,323280.8095,21
+52762,1323790.033,935768.0491,321602.1102,21
+52763,1323042.541,937556.8829,320204.9964,21
+52764,1321078.467,937236.493,318745.7212,21
+52765,1322758.85,937300.6856,316930.7033,21
+52766,1321329.182,939218.656,315357.8015,21
+52767,1320755.387,939288.2249,314409.0167,21
+52768,1320497.347,939702.6023,312566.8944,21
+52769,1320200.356,941187.8998,312002.951,21
+52770,1320444.641,941052.5112,310484.6593,21
+52771,1318733.664,942437.6101,309357.6567,21
+52772,1321209.489,940914.5877,307877.5571,21
+52773,1319824.806,944432.7673,307101.0147,21
+52774,1321269.65,942971.9785,305567.9846,21
+52775,1319743.855,943582.0119,304754.3216,21
+52776,1321950.59,944766.7322,302969.6435,21
+52777,1321275.494,945771.0952,302205.8053,21
+52778,1322518.333,946012.8469,300677.1107,21
+52779,1322552.308,946428.881,299935.7836,21
+52780,1322763.096,947062.944,298199.2942,21
+52781,1323432.835,947868.8635,297500.398,21
+52782,1324227.437,948248.6777,296162.9963,21
+52783,1323633.405,948874.4204,294883.6591,21
+52784,1325016.672,949831.4935,293703.1997,21
+52785,1325405.008,950140.733,292714.4863,21
+52786,1325711.152,950616.8248,291507.387,21
+52787,1325602.494,951465.6199,290430.2407,21
+52788,1327459.733,952192.7878,289007.4789,21
+52789,1327432,953064.2023,288292.6562,21
+52790,1327220.806,952293.6875,286923.7617,21
+52791,1328584.657,954563.1739,285566.2379,21
+52792,1329169.374,954144.025,285023.186,21
+52793,1328785.997,954926.5114,283180.1349,21
+52794,1330815.558,955600.6363,282813.0159,21
+52795,1329173.785,956727.3313,281022.7792,21
+52796,1331640.513,956379.1862,280365.1842,21
+52797,1331932.999,957213.2576,278918.8824,21
+52798,1331618.91,957861.2048,278000.4418,21
+52799,1333416.349,958328.4046,277124.5372,21
+52800,1333174.84,958912.097,275725.2898,21
+52801,1334557.727,957465.355,275320.8496,21
+52802,1334215.051,952768.2293,274842.3123,21
+52803,1336663.085,952689.0937,274130.6659,21
+52804,1336010.045,949487.9064,273724.4729,21
+52805,1338652.73,947605.7759,273254.3361,21
+52806,1340302.204,945559.7642,272946.1606,21
+52807,1340324.531,943245.6387,272142.2248,21
+52808,1342631.72,941030.8463,271813.4834,21
+52809,1342860.042,940368.8541,271528.4622,21
+52810,1344763.421,936188.0502,270811.9514,21
+52811,1346166.952,936015.1173,270683.518,21
+52812,1347118.432,932471.9036,270125.6999,21
+52813,1348985.768,932715.2908,269660.2207,21
+52814,1350061.892,927802.826,269515.7269,21
+52815,1352011.535,927492.9586,268763.5425,21
+52816,1352434.021,924439.3808,268709.4825,21
+52817,1354400.49,924137.845,268185.4236,21
+52818,1355547.535,920217.5466,268000.5775,21
+52819,1356789.298,919622.5644,267360.1904,21
+52820,1358772.601,918350.1158,267243.009,21
+52821,1358921.707,914791.8208,266920.2279,21
+52822,1362811.682,913899.3662,266536.4219,21
+52823,1361681.278,911673.4246,266386.8535,21
+52824,1364412.157,909358.4641,265678.746,21
+52825,1365382.381,907646.074,265930.9508,21
+52826,1367614.812,905495.0967,265377.9571,21
+52827,1368054.333,903711.0414,265064.6704,21
+52828,1369453.295,901861.2655,265168.1119,21
+52829,1371881.673,898242.573,264444.8837,21
+52830,1372908.697,898452.2588,264455.9232,21
+52831,1373928.241,894842.9137,264131.5135,21
+52832,1375896.902,893542.0055,263984.878,21
+52833,1377250.549,891086.0275,263699.8569,21
+52834,1376821.343,889832.4113,263546.7772,21
+52835,1382193.559,886424.8093,263480.586,21
+52836,1383066.69,885113.9802,263404.9971,21
+52837,1384323.256,883515.9859,263055.1911,21
+52838,1385350.953,880574.6626,263017.5069,21
+52839,1388031.928,878945.934,262992.6495,21
+52840,1387751.086,876939.7615,262742.2577,21
+52841,1389616.595,874115.9959,262556.2105,21
+52842,1391462.814,871983.8972,262759.5169,21
+52843,1391770.369,870468.6573,262335.2226,21
+52844,1393455.071,867346.1246,262503.2683,21
+52845,1396036.861,865945.6164,262754.5568,21
+52846,1394727.296,863372.4594,262373.0716,21
+52847,1398098.268,861656.5411,262624.5589,21
+52848,1399038.696,860612.269,262266.2415,21
+52849,1399885.056,856505.2464,262443.0942,21
+52850,1400911.361,856390.491,262246.9353,21
+52851,1402693.024,852921.4334,262355.9731,21
+52852,1403181.538,852041.9697,262288.7032,21
+52853,1405964.798,847676.3785,262159.5104,21
+52854,1405621.65,848415.4869,262254.0558,21
+52855,1407432.203,844518.5152,262409.8502,21
+52856,1408827.023,843234.4254,262427.801,21
+52857,1409949.549,840935.4217,262727.0076,21
+52858,1410979.782,838804.7827,262840.7916,21
+52859,1412818.413,837407.9524,262965.298,21
+52860,1413808.666,835278.9466,262976.5095,21
+52861,1601206.63,1022135.671,307986.626,21
+52862,1613430.194,1033091.995,299488.356,21
+52863,1616574.824,1036298.928,334850.0949,21
+52864,1620378.431,1039203.736,374520.3118,21
+52865,1621957.531,1040653.048,275187.8102,21
+52866,1625465.727,1043925.152,501613.7765,21
+52867,1627197.355,1045647.818,343887.1485,21
+52868,1630850.488,1047936.673,343647.0415,21
+52869,1631859.011,1049155.268,364033.5226,21
+52870,1633475.683,1051093.362,361756.2169,21
+52871,1638205.334,1052657.071,375527.0782,21
+52872,1638482.405,1055445.987,432656.7337,21
+52873,1640610.749,1056185.72,402677.4761,21
+52874,1643100.11,1058872.684,420592.7362,21
+52875,1645507.724,1060464.095,1138523.39,21
+52876,1645536.492,1060948.861,400139.2522,21
+52877,1649310.476,1063626.415,725636.4973,21
+52878,1649871.291,1064735.456,384634.12,21
+52879,1653146.994,1065405.647,595098.9647,21
+52880,1654134.715,1068548.117,479200.6482,21
+52881,1655732.082,1068057.505,569944.9253,21
+52882,1658015.895,1071414.351,403867.6472,21
+52883,1659494.897,1071241.073,625891.5306,21
+52884,1661570.792,1074434.311,480349.212,21
+52885,1662787.815,1075069.652,465155.7628,21
+52886,1664386.439,1075616.936,486639.8641,21
+52887,1665971.331,1077722.241,486290.1364,21
+52888,1675360.432,1080119.02,490449.5436,21
+52889,1677374.934,1079795.75,497470.1771,21
+52890,1680674.94,1082703.619,501565.1011,21
+52891,1680720.127,1082492.246,507466.1216,21
+52892,1682679.803,1086052.386,511373.1246,21
+52893,1684171.315,1085191.496,516039.0511,21
+52894,1685638.737,1087597.128,518858.59,21
+52895,1686065.192,1089246.937,524456.5881,21
+52896,1689402.741,1089375.353,528880.6388,21
+52897,1688928.48,1092379.572,532500.6991,21
+52898,1690253.836,1091773.732,538057.224,21
+52899,1691838.281,1093003.352,538845.3205,21
+52900,1693269.363,1095510.771,546686.3296,21
+52901,1693062.83,1096555.884,548366.0975,21
+52902,1695760.366,1096727.821,552596.4454,21
+52903,1695534.331,1099169.026,558351.5691,21
+52904,1698475.325,1100055.164,560116.327,21
+52905,1697224.785,1100520.667,566381.1021,21
+52906,1699439.985,1102132.107,569629.3589,21
+52907,1700801.795,1102880.29,572032.0505,21
+52908,1700335.512,1103946.178,577944.8777,21
+52909,1702659.364,1105844.42,580059.0932,21
+52910,1702217.726,1106020.604,585597.1131,21
+52911,1704335.636,1107891.728,588093.7062,21
+52912,1705024.288,1108861.628,591448.383,21
+52913,1705289.816,1110544.337,597141.0575,21
+52914,1706923.817,1110260.888,599369.3018,21
+52915,1706804.671,1112970.803,603901.227,21
+52916,1707998.034,1113784.287,607626.1153,21
+52917,1709486.881,1113364.458,610057.4452,21
+52918,1709733.85,1115574.961,614112.3969,21
+52919,1709830.994,1116923.499,618307.8556,21
+52920,1711064.085,1117001.308,621514.4229,21
+52921,1772669.02,1176254.209,724531.6753,21
+52922,1776848.012,1179779.133,734172.2069,21
+52923,1780497.958,1181317.748,742291.2333,21
+52924,1781378.544,1181112.403,749810.0697,21
+52925,1784396.934,1181847.386,751958.2946,21
+52926,1785643.992,1182237.024,761868.2899,21
+52927,1787897.51,1182576.09,763707.7457,21
+52928,1789457.216,1182561.21,773535.804,21
+52929,1791391.968,1182886.303,780803.3289,21
+52930,1792607.245,1184039.572,789346.3307,21
+52931,1794476.127,1182757.231,793336.6905,21
+52932,1795590.185,1183469.029,799911.9834,21
+52933,1798888.919,1185089.188,803637.078,21
+52934,1797175.021,1182925.766,809107.8915,21
+52935,1801905.624,1185126.184,815354.4534,21
+52936,1800967.104,1183018.689,817799.8925,21
+52937,1804725.078,1184902.251,824892.3993,21
+52938,1804722.245,1183843.888,827748.212,21
+52939,1805553.75,1183951.953,833441.021,21
+52940,1808452.126,1185276.527,837963.8166,21
+52941,1809397.526,1183615.001,842051.5544,21
+52942,1810598.104,1184834.444,846028.1445,21
+52943,1811856.774,1183238.077,852775.7005,21
+52944,1813191.799,1185058.612,855099.0266,21
+52945,1814144.417,1183161.773,859400.9875,21
+52946,1816039.626,1184910.403,864335.3759,21
+52947,1816903.381,1183293.74,869352.5564,21
+52948,1819117.834,1184999.574,872257.8181,21
+52949,1818646.308,1182222.438,877523.6035,21
+52950,1821391.944,1184650.064,880185.6946,21
+52951,1822097.666,1183304.586,885368.8956,21
+52952,1822430.572,1183532.431,888494.0004,21
+52953,1824477.534,1182971.022,893203.8116,21
+52954,1826108.907,1182896.516,896762.7201,21
+52955,1826107.202,1183373.442,899534.8442,21
+52956,1827865.721,1182037.139,903398.2336,21
+52957,1828657.772,1181637.152,909085.4456,21
+52958,1830221.051,1183699.363,910776.5885,21
+52959,1831605.08,1180828.735,915995.5734,21
+52960,1830444.808,1183500.971,919250.7089,21
+52961,1835064.326,1179920.5,922690.6262,21
+52962,1832899.769,1181972.796,926053.874,21
+52963,1835995.125,1181117.709,931434.1673,21
+52964,1836600.797,1180378.697,934008.768,21
+52965,1836517.973,1181388.309,936638.6797,21
+52966,1839147.342,1179617.182,939767.3391,21
+52967,1838786.538,1179192.543,944410.1404,21
+52968,1840900.404,1180313.869,947675.8816,21
+52969,1841997.15,1179834.153,950326.123,21
+52970,1841496.758,1177910.571,953629.811,21
+52971,1844491.389,1178612.331,957486.9522,21
+52972,1843645.807,1178808.541,959854.952,21
+52973,1846213.947,1177374.157,963151.4693,21
+52974,1844881.273,1177579.222,967429.9477,21
+52975,1848621.601,1177354.746,971388.9279,21
+52976,1847547.923,1175836.74,975093.0089,21
+52977,1850225.498,1177159.144,978602.6278,21
+52978,1849244.702,1175239.076,983263.0991,21
+52979,1850957.455,1173884.039,987250.8175,21
+52980,1851999.331,1174483.383,993053.6593,21
+52981,1851494.589,1178275.825,993695.1064,21
+52982,1854526.283,1183949.849,999190.3952,21
+52983,1853528.133,1189292.366,1002300.232,21
+52984,1854002.966,1193101.663,1005984.543,21
+52985,1856047.592,1197144.891,1007307.542,21
+52986,1854554.484,1202614.559,1012199.23,21
+52987,1856794.731,1205910.372,1013291.124,21
+52988,1856324.006,1209965.467,1017911.85,21
+52989,1857149.722,1215236.822,1020767.93,21
+52990,1856023.376,1219202.055,1022673.87,21
+52991,1857608.769,1224103.11,1025393.76,21
+52992,1858436.673,1227554.474,1028173.028,21
+52993,1857959.572,1233333.052,1033267.758,21
+52994,1858628.952,1235159.483,1031702.881,21
+52995,1859012.473,1241992.661,1036818.227,21
+52996,1859003.544,1244910.787,1039503.323,21
+52997,1860225.697,1250308.612,1041160.575,21
+52998,1860080.64,1254494.249,1044311.741,21
+52999,1859827.169,1257346.076,1046805.826,21
+53000,1860484.723,1263653.58,1048488.647,21
+53001,1861852.575,1267792.354,1052572.149,21
+53002,1861051.828,1271056.851,1053032.774,21
+53003,1861307.396,1275694.072,1057587.685,21
+53004,1862701.941,1280148.128,1057843.021,21
+53005,1861294.47,1286445.133,1061927.966,21
+53006,1863424.77,1286443.751,1064135.751,21
+53007,1861710.643,1294967.427,1064510.944,21
+53008,1863696.868,1297737.577,1068272.111,21
+53009,1863399.647,1302516.212,1070224.151,21
+53010,1862938.454,1306478.907,1073903.959,21
+53011,1863991.595,1309595.566,1073532.984,21
+53012,1864561.556,1315362.842,1077019.556,21
+53013,1863566.658,1318085.83,1079997.822,21
+53014,1865970.366,1324106.156,1080178.976,21
+53015,1863581.673,1327649.512,1083501.59,21
+53016,1864926.861,1332688.125,1085972.868,21
+53017,1866167.152,1335527.281,1086316.053,21
+53018,1865229.717,1341850.329,1089492.422,21
+53019,1866235.465,1345494.747,1091838.145,21
+53020,1865487.741,1348831.428,1093020.461,21
+53021,1866780.789,1355866.872,1094781.824,21
+53022,1865847.43,1357299.989,1098826.95,21
+53023,1868216.086,1362778.012,1098418.645,21
+53024,1865241.77,1367696.863,1102455.246,21
+53025,1867988.803,1371895.675,1102469.993,21
+53026,1867875.908,1375766.154,1105946.845,21
+53027,1866524.041,1380782.687,1106135.719,21
+53028,1869397.914,1385124.244,1110268.753,21
+53029,1866499.055,1389165.134,1110281.441,21
+53030,1869391.268,1393426.92,1112581.237,21
+53031,1867653.927,1398167.648,1115673.643,21
+53032,1868083.027,1402693.399,1114987.079,21
+53033,1869707.221,1406986.783,1119148.675,21
+53034,1868138.86,1412048.733,1119800.377,21
+53035,1868872.715,1415457.245,1120972.346,21
+53036,1869915.085,1420331.164,1126216.218,21
+53037,1868751.509,1425989.858,1123899.856,21
+53038,1869994.367,1428490.484,1127816.115,21
+53039,1869816.957,1434098.535,1128055.057,21
+53040,1869846.464,1438230.324,1131485.287,21
+53041,1876726.634,1440806.264,1145748.491,21
+53042,1880327.913,1438600.338,1148867.733,21
+53043,1878690.656,1432915.248,1144942.164,21
+53044,1880295.836,1430373.169,1148214.017,21
+53045,1880031.731,1423731.97,1145571.429,21
+53046,1881552.022,1420454.288,1145338.337,21
+53047,1880297.695,1417013.082,1145545.177,21
+53048,1881165.026,1411340.17,1144427.162,21
+53049,1883065.006,1407143.371,1144440.859,21
+53050,1879802.215,1403715.884,1143409.114,21
+53051,1883595.961,1397568.847,1140115.897,21
+53052,1882087.169,1393605.704,1139355.468,21
+53053,1883744.47,1390231.889,1139184.415,21
+53054,1881895.227,1384004.392,1139268.168,21
+53055,1883914.393,1380063.925,1138615.309,21
+53056,1883851.35,1376051.017,1134964.503,21
+53057,1883301.853,1371007.25,1138438.887,21
+53058,1883486.589,1366444.012,1136023.427,21
+53059,1884795.482,1361647.142,1134075.645,21
+53060,1884102.452,1357599.074,1133819.739,21
+53061,1885074.646,1353651.389,1134639.244,21
+53062,1884571.496,1349550.319,1131628.308,21
+53063,1886121.625,1343999.164,1133590.251,21
+53064,1883736.936,1338623.774,1128522.86,21
+53065,1886315.173,1335780.961,1131165.916,21
+53066,1885644.872,1329435.666,1129093.746,21
+53067,1886520.343,1325784.056,1129678.62,21
+53068,1885262.464,1321702.263,1127078.791,21
+53069,1885306.011,1315144.79,1126706.375,21
+53070,1887167.416,1311878.072,1127044.182,21
+53071,1887159.582,1307100.357,1124191.132,21
+53072,1885706.521,1303045.635,1126492.863,21
+53073,1887242.97,1297034.099,1122384.485,21
+53074,1885777.026,1293080.829,1123792.717,21
+53075,1889001.471,1288287.718,1123117.342,21
+53076,1885962.928,1283149.168,1120085.308,21
+53077,1888299.866,1278367.774,1121096.843,21
+53078,1887091.358,1274115.338,1119618.758,21
+53079,1888437.238,1270434.158,1120189.919,21
+53080,1886849.553,1262677.478,1117720.828,21
+53081,1888766.934,1260796.82,1116663.146,21
+53082,1887281.688,1255098.608,1117852.327,21
+53083,1888730.72,1251124.085,1114950.01,21
+53084,1887813.455,1245513.544,1115495.675,21
+53085,1888409.939,1241327.087,1114359.075,21
+53086,1887911.217,1235658.916,1112946.636,21
+53087,1889769.504,1232118.971,1110720.713,21
+53088,1886646.213,1225771.804,1113214.003,21
+53089,1890240.57,1223138.079,1110449.724,21
+53090,1888319.034,1216966.747,1110298.223,21
+53091,1889555.337,1212201.493,1107184.476,21
+53092,1889653.069,1208287.265,1108713.288,21
+53093,1888003.337,1202788.571,1107679.021,21
+53094,1890300.647,1197516.852,1105030.057,21
+53095,1888851.422,1193950.127,1107383.942,21
+53096,1890282.295,1188771.493,1103242.4,21
+53097,1888231.414,1184216.66,1105209.664,21
+53098,1891173.772,1179398.944,1100134.822,21
+53099,1888455.529,1174587.411,1103671.053,21
+53100,1890207.264,1169638.383,1101053.492,21
+53101,1891232.212,1172853.074,1103802.004,21
+53102,1890806.77,1176113.394,1103906.017,21
+53103,1891837.887,1180979.498,1109430.137,21
+53104,1893187.937,1181981.338,1110889.099,21
+53105,1892473.958,1186019.518,1110834.967,21
+53106,1894411.613,1188790.915,1111819.075,21
+53107,1893287.437,1192281.225,1114274.259,21
+53108,1895093.387,1195007.431,1115256.229,21
+53109,1893755.2,1196717.722,1119464.836,21
+53110,1895869.838,1202297.709,1117308.533,21
+53111,1895919.579,1202574.04,1120048.358,21
+53112,1895218.601,1208336.777,1123644.325,21
+53113,1897228.74,1208852.523,1122323.277,21
+53114,1895476.332,1214879.343,1123311.84,21
+53115,1898450.547,1214254.866,1127147.755,21
+53116,1897676.442,1220795.285,1127655.499,21
+53117,1898696.93,1222512.864,1128696.146,21
+53118,1897558.878,1225351.236,1131374.327,21
+53119,1899243.776,1228479.427,1130315.676,21
+53120,1899516.72,1231477.501,1134756.712,21
+53121,1900007.777,1234929.198,1134062.727,21
+53122,1899363.148,1238529.381,1134855.374,21
+53123,1901856.811,1240033.834,1137389.358,21
+53124,1900567.225,1244155.776,1138518.278,21
+53125,1900888.469,1248038.445,1140635.093,21
+53126,1902565.242,1249793.835,1141941.783,21
+53127,1902094.741,1254182.51,1141439.029,21
+53128,1902673.582,1256047.497,1144437.726,21
+53129,1903687.128,1259835.729,1145420.941,21
+53130,1902998.64,1263531.137,1147405.179,21
+53131,1904536.56,1265340.045,1147389.42,21
+53132,1903928.086,1269203.17,1148771.346,21
+53133,1905102.97,1272918.836,1152645.469,21
+53134,1906316.982,1274564.074,1149800.253,21
+53135,1904709.503,1278538.962,1154644.512,21
+53136,1906757.719,1282072.264,1153968.764,21
+53137,1906033.43,1284370.727,1154683.648,21
+53138,1907482.488,1288911.534,1158536.669,21
+53139,1907523.465,1290634.766,1157826.659,21
+53140,1908799.526,1294837.747,1158711.372,21
+53141,1907011.65,1295623.934,1162182.587,21
+53142,1910148.833,1301113.081,1161322.129,21
+53143,1908375.363,1302058.622,1163313.233,21
+53144,1909732.329,1306730.344,1164443.944,21
+53145,1909551.855,1308640.991,1166371.763,21
+53146,1911423.384,1313262.359,1166567.306,21
+53147,1910179.611,1314559.536,1169022.139,21
+53148,1910816.784,1319600.75,1167950.267,21
+53149,1912856.239,1322717.679,1173132.838,21
+53150,1911669.178,1324118.261,1171004.842,21
+53151,1912004.453,1328712.113,1172600.884,21
+53152,1912722.607,1332303.208,1176834.758,21
+53153,1913797.201,1333428.625,1173564.039,21
+53154,1913241.351,1338655.626,1178090.601,21
+53155,1913240.882,1341462.385,1175682.139,21
+53156,1915460.502,1343104.774,1182732.725,21
+53157,1914373.525,1348426.351,1177211.274,21
+53158,1914484.64,1350431.662,1184908.212,21
+53159,1916793.753,1353242.019,1180864.926,21
+53160,1915089.463,1358818.531,1184642.384,15.6
+53161,0,0,0,15.6
+53162,0,0,0,15.6
+53163,0,0,0,15.6
+53164,0,0,0,15.6
+53165,0,0,0,15.6
+53166,0,0,0,15.6
+53167,0,0,1727178.72,15.6
+53168,78170.55379,0,0,15.6
+53169,33704.02056,0,0,15.6
+53170,33434.22887,0,0,15.6
+53171,678948.0524,0,0,15.6
+53172,174823.4398,0,0,15.6
+53173,245972.1845,0,0,15.6
+53174,322367.4611,0,0,15.6
+53175,290855.9417,0,0,15.6
+53176,297111.034,0,0,15.6
+53177,299740.6357,0,0,15.6
+53178,303510.634,0,0,15.6
+53179,306018.8751,0,0,15.6
+53180,309058.5051,0,0,15.6
+53181,311692.092,0,0,15.6
+53182,313836.7358,0,0,15.6
+53183,316798.2052,0,0,15.6
+53184,318717.8711,0,0,15.6
+53185,321289.5049,0,0,15.6
+53186,323733.9194,0,0,15.6
+53187,325460.4079,0,0,15.6
+53188,328008.948,0,0,15.6
+53189,328967.0132,0,0,15.6
+53190,332336.5686,0,0,15.6
+53191,333557.5123,0,0,15.6
+53192,335285.7529,0,0,15.6
+53193,337458.1199,72.56683281,0,15.6
+53194,339288.5382,0,0,15.6
+53195,340775.048,0,0,15.6
+53196,342680.3987,0,0,15.6
+53197,344101.104,0,0,15.6
+53198,301475.6886,0,0,15.6
+53199,301957.1922,0,0,15.6
+53200,394462.9041,0,0,15.6
+53201,58121.19869,0,0,15.6
+53202,47195.2634,0,0,15.6
+53203,811515.458,0,1619495.532,15.6
+53204,362418.598,0,0,15.6
+53205,268390.6039,0,0,15.6
+53206,395670.6851,0,0,15.6
+53207,363110.7337,0,0,15.6
+53208,361466.657,0,0,15.6
+53209,363258.1214,0,0,15.6
+53210,364021.0203,0,0,15.6
+53211,365287.4729,0,0,15.6
+53212,366376.4062,0,0,15.6
+53213,367357.25,0,0,15.6
+53214,368876.5185,0,0,15.6
+53215,369128.959,0,0,15.6
+53216,370555.3917,0,0,15.6
+53217,371852.1449,0,0,15.6
+53218,372244.4459,0,0,15.6
+53219,373597.5238,0,0,15.6
+53220,373972.1655,0,0,15.6
+53221,376618.1281,0,0,15.6
+53222,376752.5226,91.08121403,949109.4519,15.6
+53223,377874.2886,0,0,15.6
+53224,378605.0964,0,0,15.6
+53225,378554.2147,0,0,15.6
+53226,379743.1465,0,0,15.6
+53227,380069.5906,0,0,15.6
+53228,381153.0313,0,179259.6682,15.6
+53229,381280.9932,0,219243.38,15.6
+53230,332768.6368,0,206238.3009,15.6
+53231,334493.0114,0,200440.2634,15.6
+53232,423478.3287,0,196516.5646,15.6
+53233,64886.53096,0,193135.2638,15.6
+53234,52193.68151,0,189942.4569,15.6
+53235,844487.883,0,186847.2254,15.6
+53236,435319.5623,0,183823.8586,15.6
+53237,311701.3214,0,180863.5323,15.6
+53238,404078.2098,0,177962.2647,15.6
+53239,397694.9647,0,175117.3903,15.6
+53240,387720.6202,0,1321227.409,15.6
+53241,386646.0632,0,161397.7646,15.6
+53242,387901.1107,0,158864.6286,15.6
+53243,387554.7978,0,156378.5617,15.6
+53244,388158.5463,0,153938.5059,15.6
+53245,388480.2642,0,151543.4332,15.6
+53246,388544.2427,0,149192.3927,15.6
+53247,388635.8378,0,146884.6819,15.6
+53248,389179.8067,0,144619.4736,15.6
+53249,389351.5163,0,142396.0241,15.6
+53250,389699.3842,0,140213.62,15.6
+53251,388993.6869,0,138070.9836,15.6
+53252,390655.968,0,135968.8406,15.6
+53253,389653.3111,0,133862.5043,15.6
+53254,390312.1494,0,131905.714,15.6
+53255,390838.9578,0,129890.0682,15.6
+53256,390034.366,0,128073.7572,15.6
+53257,390660.6643,0,0,15.6
+53258,391051.3181,0,0,15.6
+53259,390991.5353,0,0,15.6
+53260,390736.1337,0,744243.7788,15.6
+53261,391670.9939,0,0,15.6
+53262,341510.1294,0,0,15.6
+53263,341879.0054,0,0,15.6
+53264,432491.1673,0,0,15.6
+53265,67354.28259,0,0,15.6
+53266,54048.89001,0,0,15.6
+53267,854248.2123,0,0,15.6
+53268,449704.9788,0,0,15.6
+53269,330815.5529,0,0,15.6
+53270,400659.9886,0,0,15.6
+53271,407558.8091,0,0,15.6
+53272,392868.397,0,0,15.6
+53273,392665.9667,0,0,15.6
+53274,392827.5862,0,0,15.6
+53275,392436.6972,0,0,15.6
+53276,392746.6822,0,0,15.6
+53277,392433.6425,0,1059109.863,15.6
+53278,392437.5657,0,0,15.6
+53279,392463.3201,0,0,15.6
+53280,392377.6428,0,0,15.6
+53281,394439.8058,0,0,15.6
+53282,393640.1033,0,0,15.6
+53283,393394.3529,208.349795,0,15.6
+53284,392918.3039,0,0,15.6
+53285,392915.2657,0,0,15.6
+53286,391922.235,0,0,15.6
+53287,391705.3559,0,0,15.6
+53288,391428.7804,0,0,15.6
+53289,390725.0445,0,0,15.6
+53290,390070.8605,0,0,15.6
+53291,390208.7539,0,0,15.6
+53292,388989.7706,0,0,15.6
+53293,389429.3839,0,0,15.6
+53294,339497.4785,0,0,15.6
+53295,339002.9404,3.711185815,0,15.6
+53296,430326.4816,0,0,15.6
+53297,66950.1333,0,0,15.6
+53298,53725.16811,252.0840491,0,15.6
+53299,850996.6935,0,0,15.6
+53300,445144.6944,36407.54611,0,15.6
+53301,316707.7259,432.7591963,0,15.6
+53302,397456.4317,5279.787349,0,15.6
+53303,399091.0753,10968.91308,0,15.6
+53304,385021.4288,11133.51243,0,15.6
+53305,384690.0968,9317.892218,0,15.6
+53306,384120.5225,9895.447226,0,15.6
+53307,383127.5706,9971.741253,0,15.6
+53308,383030.7438,9946.272466,0,15.6
+53309,382056.7693,10000.735,0,15.6
+53310,381676.5431,10005.09285,0,15.6
+53311,378240.9069,10028.25995,0,15.6
+53312,378363.0554,10296.64346,0,15.6
+53313,376836.5128,10047.12763,0,15.6
+53314,376704.4914,10091.18996,0,15.6
+53315,376167.2376,10047.14195,1018335.873,15.6
+53316,375253.6397,10117.31739,0,15.6
+53317,374619.3482,10091.19536,0,15.6
+53318,374310.6115,10129.93473,0,15.6
+53319,373546.9365,10139.2578,0,15.6
+53320,372706.8473,10127.43218,0,15.6
+53321,372249.2522,10166.31527,0,15.6
+53322,371715.3671,10124.86123,0,15.6
+53323,371214.5876,10207.08329,0,15.6
+53324,370335.291,10166.68531,0,15.6
+53325,369825.263,10172.53823,0,15.6
+53326,322933.1052,10287.48591,0,15.6
+53327,322072.0127,10146.09776,0,15.6
+53328,413782.1506,10248.17163,0,15.6
+53329,63348.18405,10201.26641,0,15.6
+53330,51116.82044,0,0,15.6
+53331,833235.3419,0,0,15.6
+53332,416932.8343,0,0,15.6
+53333,265912.6819,0,0,15.6
+53334,398511.7011,0,0,15.6
+53335,369709.5,0,0,15.6
+53336,363916.3782,321.67156,0,15.6
+53337,362824.9787,0,0,15.6
+53338,361837.4186,0,0,15.6
+53339,361744.5005,0,0,15.6
+53340,360584.613,0,0,15.6
+53341,360417.791,0,0,15.6
+53342,361516.3086,0,0,15.6
+53343,360558.866,41666.31685,0,15.6
+53344,360729.3742,2063.202092,0,15.6
+53345,361244.4138,3204.232415,0,15.6
+53346,360757.1744,12994.09654,0,15.6
+53347,361219.0044,12124.795,0,15.6
+53348,361058.7122,9989.866959,0,15.6
+53349,361274.4605,10766.03323,0,15.6
+53350,360927.294,10791.22544,0,15.6
+53351,361551.1719,10812.8284,0,15.6
+53352,360767.6217,10899.87878,0,15.6
+53353,361553.2103,10912.15577,0,15.6
+53354,361007.985,10926.86863,983340.8778,15.6
+53355,361503.6675,11028.83717,111958.9362,15.6
+53356,361284.7978,11007.11268,114053.7415,15.6
+53357,361017.4023,11055.89632,112645.2243,15.6
+53358,316420.6839,11132.48711,111317.7053,15.6
+53359,315409.3015,11140.02464,110041.5823,15.6
+53360,408356.6099,11436.55378,108799.9477,15.6
+53361,61830.26285,11244.37285,107585.5776,15.6
+53362,50627.67303,11253.54949,106395.8846,15.6
+53363,829143.6188,11317.81971,105229.5179,15.6
+53364,410341.0047,11304.98692,104085.3578,15.6
+53365,259093.2297,11430.22328,102962.326,15.6
+53366,398463.3433,11371.10722,101859.2727,15.6
+53367,367049.7756,11701.01024,100775.3998,15.6
+53368,362120.9807,11463.4242,99709.94289,15.6
+53369,362024.9756,11547.62596,98662.41105,15.6
+53370,361788.3249,11555.65502,97632.38006,15.6
+53371,362340.4758,11614.44233,96619.47644,15.6
+53372,361843.62,11638.9474,95623.48025,15.6
+53373,361742.3129,0,94644.14959,15.6
+53374,361677.6258,3.094016803,93681.27591,15.6
+53375,362251.0441,0,92734.67802,15.6
+53376,361613.4613,7.780141401,91804.18799,15.6
+53377,361754.8544,0,90889.65206,15.6
+53378,361428.577,72.26528828,89990.84319,15.6
+53379,362057.3278,0,89107.69517,15.6
+53380,361590.7351,0,88239.93367,15.6
+53381,361389.7527,51091.94791,87387.49547,15.6
+53382,361496.0633,854.7416427,86550.12839,15.6
+53383,361412.5467,3264.072634,85727.67963,15.6
+53384,361580.7522,15978.32361,0,15.6
+53385,361442.0709,13289.85417,0,15.6
+53386,361032.9893,11605.24561,0,15.6
+53387,361911.3067,12243.48601,0,15.6
+53388,360604.4649,12281.625,0,15.6
+53389,361802.652,12369.30882,0,15.6
+53390,315080.5657,12333.35771,0,15.6
+53391,315605.0327,12382.97675,0,15.6
+53392,408165.6668,12460.15338,0,15.6
+53393,61904.94118,12415.16645,755259.31,15.6
+53394,50825.42296,12556.95539,0,15.6
+53395,830224.992,12472.52991,0,15.6
+53396,413556.2329,12556.48657,0,15.6
+53397,255996.2106,12607.05492,0,15.6
+53398,398561.9043,12613.64448,0,15.6
+53399,367203.9432,12632.01412,0,15.6
+53400,361183.9183,12708.82229,0,15.6
+53401,363710.3572,12663.8982,0,15.6
+53402,365669.5359,12791.4815,0,15.6
+53403,367609.5044,12726.13686,0,15.6
+53404,368926.6024,12806.20159,0,15.6
+53405,372083.3127,12839.23307,0,15.6
+53406,372558.3495,12849.03864,0,15.6
+53407,375180.0291,12871.98859,0,15.6
+53408,377190.3308,12937.34434,0,15.6
+53409,378533.9875,12885.48121,0,15.6
+53410,381344.4552,12979.98105,0,15.6
+53411,382310.5005,0,0,15.6
+53412,385030.2822,0,0,15.6
+53413,386393.836,0,0,15.6
+53414,388816.3998,3.175100255,0,15.6
+53415,390559.6146,0,0,15.6
+53416,392592.488,0,0,15.6
+53417,394259.3636,55216.26563,0,15.6
+53418,396661.5197,189.0594286,0,15.6
+53419,398434.9264,3806.12428,0,15.6
+53420,400210.0132,18462.18635,0,15.6
+53421,402202.0365,13391.07712,0,15.6
+53422,353780.152,12733.21874,0,15.6
+53423,355060.058,13311.30931,0,15.6
+53424,450902.0122,13238.0216,0,15.6
+53425,72282.95749,13311.31229,0,15.6
+53426,79555.72053,13300.41214,0,15.6
+53427,871332.0331,13362.91137,0,15.6
+53428,483264.7088,13362.61874,0,15.6
+53429,444610.7589,13312.65002,0,15.6
+53430,382939.3721,13392.87188,0,15.6
+53431,460159.0778,13419.57517,0,15.6
+53432,431531.6075,13431.69943,0,15.6
+53433,433730.9052,13407.43793,747154.3517,15.6
+53434,435505.6714,13418.36243,0,15.6
+53435,438299.9779,13475.16358,0,15.6
+53436,439655.5795,13431.70604,0,15.6
+53437,441907.3165,13676.08783,0,15.6
+53438,444753.6807,13487.2914,0,15.6
+53439,446113.1801,13431.71119,0,15.6
+53440,448721.3104,13463.03175,0,15.6
+53441,450459.5416,13431.71471,0,15.6
+53442,452946.4905,13487.29851,0,15.6
+53443,455811.0194,13407.45511,0,15.6
+53444,456527.7638,13487.30216,0,15.6
+53445,459537.2767,13431.72195,0,15.6
+53446,461460.797,13463.04267,0,15.6
+53447,464407.5127,61.00738263,0,15.6
+53448,465468.8781,0,0,15.6
+53449,468711.5596,0,0,15.6
+53450,470037.8614,0,0,15.6
+53451,473362.4753,0,0,15.6
+53452,474910.0105,0,0,15.6
+53453,477491.3862,58516.87015,0,15.6
+53454,420950.7918,0,0,15.6
+53455,422446.2208,3213.194925,0,15.6
+53456,512282.1714,18726.07244,0,15.6
+53457,84344.65328,14143.33151,0,15.6
+53458,55302.13228,12854.79824,0,15.6
+53459,883052.5412,13413.95206,0,15.6
+53460,619146.1695,13394.14228,0,15.6
+53461,545518.0148,13538.25505,0,15.6
+53462,530232.4707,13653.21689,0,15.6
+53463,469258.6109,13816.45133,0,15.6
+53464,506426.5228,13930.52833,0,15.6
+53465,498289.7764,14048.58125,0,15.6
+53466,492121.8071,14141.31221,0,15.6
+53467,491549.9423,14251.06696,0,15.6
+53468,492229.4186,14641.71375,0,15.6
+53469,491532.7876,14510.9148,0,15.6
+53470,491052.4287,14692.8418,0,15.6
+53471,490969.591,14769.95077,0,15.6
+53472,490087.8869,14990.92658,0,15.6
+53473,489830.9614,15020.69127,739867.0858,15.6
+53474,489897.4567,15264.58832,0,15.6
+53475,488887.5636,15317.83462,0,15.6
+53476,488794.4447,15500.46608,0,15.6
+53477,488677,15673.89967,0,15.6
+53478,487840.4909,15823.19615,0,15.6
+53479,487791.4128,15971.43705,610757.6959,15.6
+53480,487484.9919,16039.381,0,15.6
+53481,487043.0583,16218.79842,0,15.6
+53482,486385.0356,16333.90269,0,15.6
+53483,486678.4304,0,0,15.6
+53484,485615.8128,0,0,15.6
+53485,485760.7072,118.6722976,0,15.6
+53486,425121.569,0,0,15.6
+53487,425163.2297,69052.54394,0,15.6
+53488,520633.0325,0,0,15.6
+53489,94095.71081,5677.803414,0,15.6
+53490,64955.21717,26687.15501,0,15.6
+53491,892339.7916,16237.91335,0,15.6
+53492,611053.3686,17726.66286,0,15.6
+53493,544269.0258,18093.20461,0,15.6
+53494,462498.4682,18307.16779,0,15.6
+53495,471079.421,18389.236,0,15.6
+53496,490642.8214,18497.47606,0,15.6
+53497,512919.4483,18712.98255,0,15.6
+53498,473543.9982,18870.61803,0,15.6
+53499,475070.7698,18974.69816,0,15.6
+53500,487895.0838,19248.20495,0,15.6
+53501,480002.3628,19456.35029,0,15.6
+53502,480291.6325,19601.6167,0,15.6
+53503,480995.2118,19648.67331,0,15.6
+53504,479640.8738,19882.29335,83138.09278,15.6
+53505,479811.7124,20030.20963,85747.41132,15.6
+53506,479054.951,20204.58762,84857.19381,15.6
+53507,478606.4382,20370.24353,84060.94102,15.6
+53508,478404.2734,20491.82302,81444.72793,15.6
+53509,478062.0673,20725.20409,84676.55835,15.6
+53510,477216.3506,21091.03249,81391.65369,15.6
+53511,477070.8772,20964.85466,633812.1566,15.6
+53512,476759.4999,21121.48629,39089.20808,15.6
+53513,476211.2413,21317.34094,883349.0618,15.6
+53514,476159.755,21458.3176,26264.71874,15.6
+53515,475329.4423,21672.42395,154694.843,15.6
+53516,474852.9866,21811.77177,100752.836,15.6
+53517,474947.3206,0,73828.83686,15.6
+53518,414870.5873,0,86065.12325,15.6
+53519,414866.5998,353295.0144,82250.66369,15.6
+53520,510630.0283,94501.93942,80731.7709,17.8
+53521,291983.0072,1239443.509,1411578.97,17.8
+53522,1103837.616,881700.8226,549984.7638,17.8
+53523,977159.7866,230626.2716,549331.1132,17.8
+53524,955756.086,326158.216,644782.0422,17.8
+53525,738637.6469,436455.7375,635470.5153,17.8
+53526,777363.2523,364711.4211,629670.2544,17.8
+53527,769775.3573,362184.4394,638572.7209,17.8
+53528,745270.9983,360834.1404,648151.6363,17.8
+53529,813568.6294,359018.6295,655603.2722,17.8
+53530,786628.4654,356864.8579,664670.4213,17.8
+53531,762954.4717,355800.3354,671938.4172,17.8
+53532,777468.134,353599.4432,680001.6401,17.8
+53533,774377.3829,351368.3075,654229.7608,17.8
+53534,773292.3043,350909.8578,661242.1078,17.8
+53535,772295.808,347990.8709,666778.0159,17.8
+53536,772731.1467,347657.4423,673811.7777,17.8
+53537,772017.1502,345495.0637,678742.7751,17.8
+53538,771379.9811,344497.5955,684697.755,17.8
+53539,771687.4637,342387.6773,691856.8737,17.8
+53540,771129.1587,341503.8716,695122.4839,17.8
+53541,771061.2519,339631.957,699696.4848,17.8
+53542,770930.4242,338829.4753,704848.188,17.8
+53543,770350.4895,337265.2122,1507147.491,17.8
+53544,770530.2798,335962.8071,742937.6894,17.8
+53545,770066.7609,334503.3098,1076494.83,17.8
+53546,770133.3417,333593.9268,710143.632,17.8
+53547,770283.8451,332000.8356,772331.0575,17.8
+53548,769588.8373,330822.5379,716537.4203,17.8
+53549,769978.5126,48263.27871,913821.7852,17.8
+53550,667654.9051,0,718667.6499,17.8
+53551,792077.1116,0,0,17.8
+53552,140443.7052,997930.0746,1221938.91,17.8
+53553,945034.5256,127312.2742,0,17.8
+53554,835247.7105,234593.186,334151.8756,17.8
+53555,702391.5197,401046.9932,177490.4089,17.8
+53556,794297.3728,310010.4528,190186.5313,17.8
+53557,770394.2838,320570.7127,199307.0673,17.8
+53558,770754.2846,319889.1155,190730.0842,17.8
+53559,739013.5084,318674.3933,1494379.23,17.8
+53560,739326.2584,317364.0144,543466.5046,17.8
+53561,807641.645,316553.1815,554716.7295,17.8
+53562,780008.2739,315511.2039,788393.8529,17.8
+53563,757463.3372,313912.7586,672906.8616,17.8
+53564,775271.7901,313647.5893,690880.9044,17.8
+53565,769983.2628,311487.8399,696274.5811,17.8
+53566,770927.5494,311320.8166,701415.134,17.8
+53567,770294.1435,309630.7926,704870.4012,17.8
+53568,770879.7521,309171.6814,708943.0293,17.8
+53569,770727.6459,307677.3212,713210.6897,17.8
+53570,770864.4887,306573.2841,716784.679,17.8
+53571,771021.1227,305686.5683,720172.8948,17.8
+53572,770972.1471,304708.753,723387.362,17.8
+53573,771120.2746,303871.9316,726927.7147,17.8
+53574,771562.7468,302774.6978,729968.5845,17.8
+53575,770931.9268,301467.9118,733344.1305,17.8
+53576,771935.4602,300828.6088,735911.8277,17.8
+53577,771299.5235,299675.2275,738636.4083,17.8
+53578,772146.3382,298794.1964,741209.1112,17.8
+53579,771677.9745,297758.7232,743971.2491,17.8
+53580,772305.2503,296885.3108,746277.4653,20
+53581,2543495.616,2590609.189,3471516.227,20
+53582,2320052.537,44143.13351,2821096.176,20
+53583,290468.984,1328082.53,1915022.597,20
+53584,2293047.98,826464.9296,1265714.347,20
+53585,1099181.114,908639.8271,1133661.087,20
+53586,1353174.479,825894.0135,1486856.702,20
+53587,1405902.236,852917.2343,1264742.421,20
+53588,1337662.809,741609.1294,2279125.497,20
+53589,1332464.141,793350.4326,297182.8963,20
+53590,1284353.496,765080.8966,292177.6673,20
+53591,1247149.136,766041.894,287688.4778,20
+53592,1238832.527,760212.1821,2298347.758,20
+53593,1308555.173,757559.7814,1531301.469,20
+53594,1297861.531,755264.1466,819404.8371,20
+53595,1277817.048,752488.8272,1272008.409,20
+53596,1274669.478,749924.8174,1131942.663,20
+53597,1274912.24,746930.8768,1126513.83,20
+53598,1264474.905,746406.5848,1132624.596,20
+53599,1264524.221,740882.2032,1140548.225,20
+53600,1260649.921,742133.2906,1250274.484,20
+53601,1255017.395,738302.8049,1190872.015,20
+53602,1254485.831,736811.5105,1213936.947,20
+53603,1251607.075,735947.9984,1222850.639,20
+53604,1251051.407,735009.0024,1225777.409,20
+53605,1244695.469,731808.8347,1232479.186,20
+53606,1247257.514,731080.1262,1238044.358,20
+53607,1241157.999,729543.1367,1239077.606,20
+53608,1242204.542,727689.8296,1247456.068,20
+53609,1238322.48,725827.7373,1249325.169,20
+53610,1238110.264,724599.396,1253038.227,20
+53611,1234416.882,699350.4023,1257585.034,20
+53612,1086121.964,697746.9415,1259196.642,20
+53613,1289920.354,64.79823694,1263654.81,20
+53614,177271.1454,0,1266114.461,20
+53615,1293472.21,1332402.127,1079700.885,20
+53616,1279900.26,422821.4179,1079276.954,20
+53617,1296273.646,863884.652,1411265.107,20
+53618,1243544.085,683665.4393,1319980.441,20
+53619,1226283.162,725951.5591,1268783.435,20
+53620,1220916.769,713968.7689,1267680.627,20
+53621,1228115.889,711012.6871,1289374.733,20
+53622,1222442.994,709961.6736,319726.5867,20
+53623,1166500.519,708791.3422,1479254.606,20
+53624,1167672.054,708094.2621,301658.0842,20
+53625,1240121.803,706129.4098,2445544.949,20
+53626,1235055.202,705948.0252,1500831.843,20
+53627,1220246.223,704416.2702,811636.5234,20
+53628,1220542.554,703989.4463,1300969.841,20
+53629,1214941.806,702720.9993,1122560.016,20
+53630,1213250.79,702291.5555,1942242.562,20
+53631,1209245.893,700746.0599,1218143.18,20
+53632,1210881.257,699609.9397,1613698.438,20
+53633,1207620.527,699652.379,1181394.562,20
+53634,1207446.687,698785.44,1245668.021,20
+53635,1206810.176,696478.1285,1209622.838,20
+53636,1205444.006,698648.4421,1214294.911,20
+53637,1203267.595,694626.3626,1224119.678,20
+53638,1205079.638,696270.7809,1226863.177,20
+53639,1200200.45,693757.0804,1281493.227,20
+53640,1203614.112,693924.2552,1265092.082,21
+53641,2674115.428,2938716.539,4290057.937,21
+53642,2336142.93,1888528.575,4157949.715,21
+53643,1302453.359,641685.15,1355353.322,21
+53644,1261957.068,875714.334,1342000.478,21
+53645,1447424.982,1071328.913,2110826.643,21
+53646,1349982.104,930795.9102,1790649.92,21
+53647,1342494.843,934880.1791,1741553.614,21
+53648,1335130.074,930953.3584,1766102.222,21
+53649,1328760.434,927530.5132,1770050.136,21
+53650,1327527.174,923932.4274,1774886.765,21
+53651,1321883.871,921037.7291,1772276.916,21
+53652,1319708.043,917356.605,1777048.013,21
+53653,1314528.455,915924.6083,1775915.166,21
+53654,1312093.869,910759.5718,1774635.674,21
+53655,1307771.72,910283.3506,1775252.223,21
+53656,1305797.969,907342.9128,1776942.535,21
+53657,1303902.344,903511.5292,1770562.242,21
+53658,1298479.513,902090.5182,1779618.866,21
+53659,1297790.114,898994.7571,1769581.798,21
+53660,1296188.529,897999.2447,1774117.743,21
+53661,1290375.869,894045.7801,1766852.105,21
+53662,1290211.264,893382.7637,1767813.849,21
+53663,1288181.715,890529.1164,1767725.574,21
+53664,1283507.584,888152.5735,1764080.374,21
+53665,1283723.523,887226.6365,1764152,21
+53666,1279885.974,884111.7544,1762691.755,21
+53667,1278733.774,882219.6515,1763022.68,21
+53668,1277382.517,881780.4059,1759278.726,21
+53669,1273333.157,878439.8238,1762422.401,21
+53670,1273371.484,876830.2152,1754708.335,21
+53671,1269910.788,876458.3554,1758766.211,21
+53672,1270622.591,872960.8872,1757442.966,21
+53673,1265289.144,871031.9785,1754896.742,21
+53674,1266211.108,871918.8035,1752274.539,21
+53675,1263572.982,867190.3481,1754876.418,21
+53676,1262519.206,868106.0349,1751719.603,21
+53677,1260642.371,864896.5004,1749410.705,21
+53678,1258968.371,865156.2813,1749992.624,21
+53679,1258571.631,861506.661,1746753.432,21
+53680,1255419.586,860889.7352,1750541.787,21
+53681,1255067.806,859748.9863,1744480.545,21
+53682,1252331.184,858376.6384,1744115.67,21
+53683,1252581.703,856570.3566,1746575.882,21
+53684,1250800.641,854242.4559,1741077.185,21
+53685,1248127.889,854350.4714,1741325.373,21
+53686,1247292.233,853050.0705,1741074.216,21
+53687,1247180.221,850852.0706,1741599.893,21
+53688,1246078.122,850035.7818,1736882.296,21
+53689,1243250.412,847933.868,1739644.547,21
+53690,1242201.424,847688.9194,1736985.909,21
+53691,1241392.371,845449.3175,1735282.019,21
+53692,1240286.205,845164.599,1735679.962,21
+53693,1238972.028,843295.4203,1734078.113,21
+53694,1238080.638,841370.8551,1733733.521,21
+53695,1236247.319,842529.7743,1730848.385,21
+53696,1236737.045,839199.8756,1732081.253,21
+53697,1232781.138,838755.0038,1733162.698,21
+53698,1235153.461,838290.1502,1728090.655,21
+53699,1231319.131,836338.9275,1730362.038,21
+53700,1234170.513,836088.828,1727841.284,21
+53701,2232198.238,1219069.207,1660750.709,21
+53702,2224469.394,1214987.384,1647515.431,21
+53703,2221006.542,1213460.798,1644417.208,21
+53704,2222037.054,1210700.338,1644164.904,21
+53705,2216406.86,1210208.328,1634978.472,21
+53706,2215540.654,1209697.981,1634755.318,21
+53707,2214458.526,1208464.363,1632952.679,21
+53708,2210155.589,1206960.867,1626572.392,21
+53709,2210287.791,1206416.562,1625762,21
+53710,2207486.205,1205192.557,1622191.373,21
+53711,2206711.455,1204327.479,1618461.214,21
+53712,2202481.169,1203416.794,1616994.884,21
+53713,2202933.645,1202764.686,1613196.003,21
+53714,2200862.292,1201307.224,1609824.474,21
+53715,2198021.391,1202057.88,1607517.995,21
+53716,2197530.615,1199817.292,1605382.854,21
+53717,2195874.539,1200783.853,1602185.431,21
+53718,2192922.157,1198129.395,1601067.252,21
+53719,2625807.9,1200394.831,1594133.304,21
+53720,2190905.397,1198402.693,1597229.145,21
+53721,2187602.263,1197207.217,1590774.569,21
+53722,2188454.401,1197141.046,1588839.828,21
+53723,2184664.087,1195962.622,1585523.64,21
+53724,2184455.378,1196095.877,1587259.88,21
+53725,2181350.717,1194154.802,1579439.053,21
+53726,2182778.16,1195172.704,1579506.966,21
+53727,2177925.73,1193256.51,1576228.165,21
+53728,2178507.787,1191970.402,1573428.007,21
+53729,2168941.493,1191587.199,1571868.285,21
+53730,2167192.217,1191095.124,1568472.502,21
+53731,2163217.612,1189867.905,1566067.564,21
+53732,2162343.163,1189966.244,1566104.645,21
+53733,2158900.046,1188824.699,1558290.69,21
+53734,2157407.659,1188686.781,1562908.474,21
+53735,2154287.72,1187709.04,1552942.915,21
+53736,2153632.265,1187815.784,1553627.629,21
+53737,2149564.72,1186864.385,1550394.614,21
+53738,2147877.841,1186252.496,1548121.195,21
+53739,2145988.178,1186308.527,1542986.578,21
+53740,2142928.573,1185066.684,1545959.964,21
+53741,2141277.293,1184179.714,1540888.314,21
+53742,2139433.866,1184771.593,1537243.515,21
+53743,2135439.324,1184158.39,1535599.266,21
+53744,2135946.051,1183619.775,1532584.385,21
+53745,2130856.121,1182074.788,1532360.345,21
+53746,2129583.01,1183066.699,1526892.324,21
+53747,2128893.291,1181666.464,1528200.999,21
+53748,2123871.497,1181418.525,1521599.962,21
+53749,2123835.304,1180812.337,1525126.307,21
+53750,2120624.169,1180856.694,1517551.18,21
+53751,2118639.641,1180188.552,1517368.083,21
+53752,2115825.495,1178715.906,1513603.954,21
+53753,2114498.509,1180477.389,1512860.346,21
+53754,2110963.389,1177827.804,1510392.697,21
+53755,2110728.569,1179503.802,1505587.147,21
+53756,2106739.378,1177917.968,1507781.261,21
+53757,2105247.021,1177649.551,1503218.441,21
+53758,2102291.002,1175878.454,1500210.542,21
+53759,2101930.577,1178545.985,1499649.356,21
+53760,2097474.084,1175793.377,1495705.999,21
+53761,1899830.359,946351.5521,1020588.737,21
+53762,1884829.347,927624.3878,991326.8878,21
+53763,1881284.544,922097.4279,985315.6123,21
+53764,2310445.997,919175.5013,980216.8079,21
+53765,1872417.215,912828.2628,976720.756,21
+53766,1866406.217,911293.4767,971278.9541,21
+53767,1849223.056,905631.8402,968140.9295,21
+53768,1852768.111,903745.7264,964901.3348,21
+53769,1846653.641,898326.5998,962955.8075,21
+53770,1842363.627,896153.2126,958957.9126,21
+53771,1837817.937,891672.7844,959395.9372,21
+53772,1835067.213,888548.5253,957560.1024,21
+53773,1830402.332,885485.1344,955722.8067,21
+53774,1827907.793,881612.2664,955792.4108,21
+53775,1823944.427,878068.2141,953905.2736,21
+53776,1819422.356,875146.6553,952203.2052,21
+53777,1817756.245,871892.57,952093.9459,21
+53778,1812812.737,868626.0938,951342.6725,21
+53779,1810610.205,864952.0681,949561.5739,21
+53780,1806719.806,862266.9695,949213.6784,21
+53781,1803610.3,857447.9825,948122.4538,21
+53782,1801271.295,857153.7494,947558.0024,21
+53783,1796799.978,852132.6454,946559.1531,21
+53784,1795560.916,849575.6683,945469.8833,21
+53785,1790196.573,846678.4156,945061.9459,21
+53786,1788766.002,843392.4757,943616.8825,21
+53787,1785380.97,841314.3006,943539.507,21
+53788,1780730.907,838780.184,942742.9545,21
+53789,1779920.652,834170.4886,942458.052,21
+53790,1774591.262,832939.8384,940259.0314,21
+53791,1774015.892,830453.8143,941456.1559,21
+53792,1769516.213,826243.0644,939105.552,21
+53793,1767289.863,824085.1348,939247.4347,21
+53794,1764416.418,821481.1859,936683.9528,21
+53795,1761460.397,818251.3311,937925.9849,21
+53796,1759599.012,817186.7522,935402.593,21
+53797,1756458.28,812174.3051,935670.8338,21
+53798,1753334.742,811085.5371,933657.3935,21
+53799,1751227.486,808622.975,934078.8468,21
+53800,1749747.441,805021.5887,932075.6833,21
+53801,1745829.249,802844.0292,931878.6387,21
+53802,1744552.391,800332.1976,931087.1153,21
+53803,1738349.681,798044.2862,930192.59,21
+53804,1739062.542,795107.5797,929313.6045,21
+53805,1732900.215,792262.516,928428.6688,21
+53806,1732222.158,790504.769,927635.6607,21
+53807,1728196.098,787882.1522,927350.9726,21
+53808,1725762.868,784905.6567,926122.2085,21
+53809,1723606.55,783332.5134,925892.0967,21
+53810,1719592.826,780093.5685,923360.1214,21
+53811,1718612.025,777256.0504,925676.3491,21
+53812,1712969.961,776113.4371,922140.342,21
+53813,1712393.25,772984.0736,922595.2121,21
+53814,1709316.35,770803.6547,921162.61,21
+53815,1705927.492,767720.4497,921560.7993,21
+53816,1703745.196,766054.5632,920092.6322,21
+53817,1701164.98,763793.7014,919455.2308,21
+53818,1698087.924,760293.5846,918632.6773,21
+53819,1696568.017,758809.9227,918516.78,21
+53820,1693516.072,757652.1552,916958.9546,21
+53821,1689030.779,753162.5999,914047.3403,21
+53822,1685286.624,750101.5378,910852.0404,21
+53823,1682453.272,747974.4002,1874809.587,21
+53824,1677808.309,744220.9388,936858.1844,21
+53825,1675289.998,741732.0829,1415256.66,21
+53826,1670442.576,739346.9059,873494.0781,21
+53827,1668141.168,735884.2003,1023078.654,21
+53828,1664123.16,733115.0058,862607.3715,21
+53829,1660659.074,730529.3554,860468.7542,21
+53830,1657349.953,727858.7483,858085.1375,21
+53831,1653194.269,725842.2582,856586.7009,21
+53832,1650336.072,721927.0305,852958.3915,21
+53833,1647535.876,719949.674,851423.5655,21
+53834,1642713.221,716168.9189,849392.9378,21
+53835,1640489.315,714081.0337,845520.8458,21
+53836,1637073.394,711596.8326,844270.6129,21
+53837,1632864.529,708264.8875,841456.1308,21
+53838,1630447.838,705776.6957,838503.9205,21
+53839,1626877.231,703803.7183,836747.5728,21
+53840,1623279.482,699958.9611,834020.2454,21
+53841,1620385.584,697879.3074,830877.6756,21
+53842,1617240.201,694941.8976,828443.9887,21
+53843,1613811.57,692152.4566,826725.7012,21
+53844,1610793.648,689499.3515,822238.6193,21
+53845,1607585.847,687626.51,822377.2126,21
+53846,1604138.064,683333.3557,816996.7426,21
+53847,1601971.673,682473.5231,816064.5457,21
+53848,1597779.493,678843.4102,812098.8864,21
+53849,1595253.598,676658.3324,810423.8684,21
+53850,1591503.211,673104.3474,807559.3858,21
+53851,1588941.007,660979.7376,804985.2942,21
+53852,1586531.965,654766.116,802837.5993,21
+53853,1583900.335,651550.2393,800271.9717,21
+53854,1580888.424,648006.1506,798075.9119,21
+53855,1578645.725,645286.5856,796721.8453,21
+53856,1575861.346,640467.8955,793132.3815,21
+53857,1572444.122,637956.6334,791262.5821,21
+53858,1571116.146,635272.2296,789279.3015,21
+53859,1568794.71,631536.6622,786618.8835,21
+53860,1565418.309,628009.6024,1760174.09,21
+53861,1563741.448,626195.9274,814774.4184,21
+53862,1560641.213,621193.5469,1305430.79,21
+53863,1558623.214,620048.7255,757465.7533,21
+53864,1555731.481,615043.306,950904.7193,21
+53865,1553052.605,613532.9928,770532.8131,21
+53866,1552260.047,609331.7163,745617.392,21
+53867,1547623.915,606911.5128,744917.3841,21
+53868,1547709.03,603584.2051,743307.0624,21
+53869,1543539.673,600346.4496,741497.6694,21
+53870,1540935.632,598040.5154,740676.5189,21
+53871,1540564.659,593948.1162,738109.0411,21
+53872,1538185.668,591845.0858,736992.7871,21
+53873,1536235.356,588291.6408,735905.2797,21
+53874,1534643.693,585106.2396,733489.5036,21
+53875,1532636.371,582804.3493,732069.822,21
+53876,1530021.112,578798.3964,730435.1305,21
+53877,1527767.53,577039.2593,728705.2437,21
+53878,1525739.095,573022.4717,726761.2442,21
+53879,1524349.095,570511.3733,726053.9009,21
+53880,1519819.442,567619.6443,725336.4577,21
+53881,1522428.038,570682.3776,736969.019,21
+53882,1519045.617,568821.5207,735024.2125,21
+53883,1518728.838,566816.9322,735653.0227,21
+53884,1517144.756,565661.1772,734109.3228,21
+53885,1516160.559,563521.6327,733640.1754,21
+53886,1514996.444,561518.0758,732380.489,21
+53887,1513646.809,560423.5804,732531.9116,21
+53888,1512549.807,557808.6302,730809.2593,21
+53889,1511327.185,556593.9742,730565.1732,21
+53890,1510389.001,555051.9485,728994.8232,21
+53891,1508771.136,552787.7312,728206.903,21
+53892,1508756.177,551228.5906,728215.7895,21
+53893,1506117.61,549829.1655,726352.5146,21
+53894,1505418.938,547592.2987,725707.4957,21
+53895,1505321.775,545709.4944,724863.8329,21
+53896,1503206.273,544398.358,723451.123,21
+53897,1501210.905,542538.5933,723605.3012,21
+53898,1502470.596,540458.7697,721904.9185,21
+53899,1499334.414,539110.3317,720537.5734,21
+53900,1498728.096,537290.4365,720841.1853,21
+53901,1498850.661,535283.4316,718250.1514,21
+53902,1495943.869,534032.9685,719119.2113,21
+53903,1496663.781,531800.7646,716065.8109,21
+53904,1494296.601,530181.0245,716520.7172,21
+53905,1493080.279,528650.9024,715419.8941,21
+53906,1492201.495,526520.5564,715314.653,21
+53907,1491885.313,525362.672,715227.8856,21
+53908,1490822.697,522607.3852,713058.293,21
+53909,1489188.278,521632.1198,714418.4701,21
+53910,1487747.71,519949.6138,712083.3914,21
+53911,1487862.69,517787.4931,712855.6284,21
+53912,1485594.657,517130.6465,710507.0173,21
+53913,1484546.795,514769.3421,711159.8043,21
+53914,1482970.811,513661.1002,709565.333,21
+53915,1482573.508,512000.3192,709215.8358,21
+53916,1480185.08,510531.0372,708159.7535,21
+53917,1480568.081,508939.3103,707560.1251,21
+53918,1477929.106,507320.7502,707102.9849,21
+53919,1477645.403,506331.6921,705600.5533,21
+53920,1475006.266,504294.6567,704855.979,21
+53921,1474929.7,503013.6118,704392.6322,21
+53922,1473283.03,502074.0576,703167.5125,21
+53923,1472331.295,500150.1334,702031.4127,21
+53924,1469778.483,499319.426,701909.336,21
+53925,1470496.27,497917.0806,700153.8547,21
+53926,1467739.881,496293.2655,699515.0545,21
+53927,1467164.208,494968.2538,699145.7639,21
+53928,1465950.888,493741.7428,697165.107,21
+53929,1463573.433,492680.5362,697232.1134,21
+53930,1463583.101,490924.9908,695135.1411,21
+53931,1461999.549,489824.6624,694698.5245,21
+53932,1459899.292,488234.0316,694330.6852,21
+53933,1459946.245,486987.2117,692204.1017,21
+53934,1458031.866,485996.2295,692222.0771,21
+53935,1455638.529,484474.3918,690316.6615,21
+53936,1456819.485,482956.0937,689764.536,21
+53937,1453202.705,481758.7413,688948.7184,21
+53938,1452732.667,480667.3945,687018.9953,21
+53939,1451582.357,478885.7542,687461.6665,21
+53940,1450445.421,478031.3217,684986.5541,21
+53941,1446216.103,473079.2964,673072.7803,21
+53942,1442932.29,472691.6419,670070.0277,21
+53943,1438941.951,472072.259,669561.5159,21
+53944,1436634.833,472335.4181,666300.1612,21
+53945,1433439.345,471010.7984,665035.4975,21
+53946,1430174.796,471894.8699,662815.4988,21
+53947,1427666.933,470361.0707,661155.0344,21
+53948,1424813.307,471503.3314,658408.1657,21
+53949,1420654.466,469934.6887,657007.0067,21
+53950,1420159.811,470089.6946,654796.9266,21
+53951,1414259.435,469537.451,652511.0109,21
+53952,1413155.458,469266.8438,650929.6328,21
+53953,1409535.237,469085.9904,647842.1202,21
+53954,1405503.616,468975.0873,646720.9158,21
+53955,1404055.011,468281.7167,644590.9931,21
+53956,1400378.249,468237.2414,642088.9956,21
+53957,1397540.698,467562.2213,640077.2734,21
+53958,1394908.367,467678.0374,638222.6581,21
+53959,1388713.911,467044.032,635255.1044,21
+53960,1385966.995,466812.2969,634089.5217,21
+53961,1383488.369,466624.8747,631407.6444,21
+53962,1379277.162,466102.2956,629353.7302,21
+53963,1376507.779,466051.3141,626729.9382,21
+53964,1372800.835,465570.562,625571.0552,21
+53965,1371079.722,465181.1459,622694.228,21
+53966,1367430.869,465116.9309,620008.1679,21
+53967,1364148.182,464825.6461,618493.4259,21
+53968,1360801.609,463868.3783,616764.0323,21
+53969,1357870.858,464576.774,614064.7237,21
+53970,1354935.516,463354.6945,611519.5694,21
+53971,1350853.283,463375.745,610089.168,21
+53972,1348637.778,463377.2101,607623.779,21
+53973,1343416.657,463123.8491,605438.5519,21
+53974,1340773.466,462184.3604,602924.1146,21
+53975,1336192.754,462665.1557,601280.4636,21
+53976,1332676.302,462033.2262,598494.5159,21
+53977,1329730.236,461907.9869,597222.3874,21
+53978,1324872.358,461605.0735,594232.9248,21
+53979,1321329.694,461420.5075,593214.6664,21
+53980,1318075.605,461410.4714,589599.8559,21
+53981,1314910.719,460684.0601,588471.0407,21
+53982,1309719.102,460609.8818,585433.4923,21
+53983,1740721.004,460332.164,584127.3316,21
+53984,1302543.107,460227.6304,581207.4653,21
+53985,1298470.319,459683.9554,579649.7742,21
+53986,1295535.077,460151.7514,576743.6274,21
+53987,1291351.629,458752.6065,574742.925,21
+53988,1287667.292,459701.1641,573620.0418,21
+53989,1284015.639,458506.5515,569716.1755,21
+53990,1279009.637,458982.2476,568823.0002,21
+53991,1276492.443,457895.9763,566089.0375,21
+53992,1271877.179,458613.2849,563731.8263,21
+53993,1268456.203,457822.1982,561783.1125,21
+53994,1263818.514,457614.6887,559756.0725,21
+53995,1258784.596,457495.7103,556930.224,21
+53996,1254909.205,457186.7752,555806.7609,21
+53997,1250355.871,457391.9715,552679.7767,21
+53998,1246968.686,456347.6397,550596.8147,21
+53999,1240903.978,456556.8724,548441.7515,21
+54000,1240277.302,455907.3628,546613.4206,21
+54001,1308371.225,487038.3234,592135.4169,21
+54002,1306019.176,486059.5057,592060.7372,21
+54003,1303137.732,486726.5923,1474497.313,21
+54004,1297685.079,486917.1529,559608.7317,21
+54005,1295356.689,486555.5224,1035780.173,21
+54006,1290807.115,487401.9484,511697.6658,21
+54007,1286535.338,487659.6381,801623.1691,21
+54008,1283831.84,487530.1918,617985.5948,21
+54009,1278399.395,487440.7871,555353.1658,21
+54010,1276988.461,487787.8649,591429.4562,21
+54011,1704723.965,487432.8512,580669.2367,21
+54012,1268971.613,487297.182,578160.0813,21
+54013,1262684.3,487573.5849,577018.3245,21
+54014,1261290.062,487675.3265,576092.3442,21
+54015,1255619.689,487297.6641,575498.3576,21
+54016,1252071.305,487102.2281,574587.4881,21
+54017,1248294.794,487674.0993,574055.6118,21
+54018,1244755.896,486601.7933,574067.7712,21
+54019,1240742.575,486082.3032,572040.452,21
+54020,1236748.32,486334.4622,572371.508,21
+54021,1232057.463,486191.3918,572145.5113,21
+54022,1229316.722,486526.0546,570856.5382,21
+54023,1223974.651,485967.4751,570087.0029,21
+54024,1220938.616,486013.9063,570200.2939,21
+54025,1216259.39,485484.9328,569319.6476,21
+54026,1212646.54,486246.9803,568414.1571,21
+54027,1208794.35,485644.5942,568343.7551,21
+54028,1204852,485560.1905,567393.8759,21
+54029,1200533.845,485289.0051,567082.9916,21
+54030,1196107.487,485515.7284,566082.8011,21
+54031,1192261.655,485052.0079,565704.2357,21
+54032,1189584.929,486126.1041,565489.1568,21
+54033,1185473.829,485451.6103,564408.979,21
+54034,1181726.521,484734.4736,563883.3514,21
+54035,1178787.299,485131.1002,563790.1562,21
+54036,1175605.973,485129.7255,562611.084,21
+54037,1172274.302,484811.4467,561766.9844,21
+54038,1171113.953,484814.0599,561988.7258,21
+54039,1166504.583,485085.5361,561183.3445,21
+54040,1165091.464,484630.0192,560053.9244,21
+54041,1161962.808,484556.1381,559696.9188,21
+54042,1159425.39,484761.9714,559468.3836,21
+54043,1156965.772,484728.206,558791.9866,21
+54044,1153407.711,483866.5679,558125.4138,21
+54045,1152361.345,485019.0378,557398.5021,21
+54046,1582107.399,483726.3169,556665.9564,21
+54047,1146416.265,484514.408,557012.1466,21
+54048,1143052.699,483915.3038,555406.2422,21
+54049,1140078.87,484189.4892,555306.9069,21
+54050,1137958.878,483816.2741,1409395.506,21
+54051,1134887.868,483633.8754,518344.1384,21
+54052,1133017.516,484509.4548,971421.2241,21
+54053,1128878.539,483879.3434,478579.3427,21
+54054,1127552.821,483132.8966,752624.9542,21
+54055,1124454.15,483458.6914,579468.0765,21
+54056,1121581.43,483359.6615,522080.5608,21
+54057,1119984.682,482970.4113,555086.1394,21
+54058,1116381.121,482818.36,545588.3438,21
+54059,1113814.153,482165.5743,544135.7265,21
+54060,1112021.84,481630.6979,542787.2809,21
+54061,1039928.546,453480.3678,495848.1613,21
+54062,1037405.441,454799.8887,494451.9255,21
+54063,1032822.567,455691.6518,494625.1662,21
+54064,1031770.087,458504.814,494081.9409,21
+54065,1028527.838,458695.0269,493247.7373,21
+54066,1025483.698,460974.8723,493921.3774,21
+54067,1023841.352,462824.8972,492453.6523,21
+54068,1020437.504,463531.5827,492270.5678,21
+54069,1018567.481,464823.8017,492522.9608,21
+54070,1015748.771,466473.8433,491633.6716,21
+54071,1013278.112,467665.1068,491537.3429,21
+54072,1011014.661,469347.9973,491273.189,21
+54073,1442150.59,470402.4007,490649.4203,21
+54074,1005412.76,472208.7723,490621.5098,21
+54075,1003404.473,473596.9586,490239.6068,21
+54076,1001755.5,474708.2596,490206.8361,21
+54077,997981.6801,475967.4885,489155.7124,21
+54078,996388.1003,477520.8798,489763.9364,21
+54079,992564.375,478852.4272,489252.3143,21
+54080,991808.0217,480468.0893,488066.0444,21
+54081,987439.367,481758.8404,488595.6362,21
+54082,987370.8335,483702.0901,488330.1111,21
+54083,982914.4149,484577.1031,488353.7587,21
+54084,981114.9474,486356.3488,486988.0711,21
+54085,979118.7161,488000.438,487961.4466,21
+54086,977189.2569,489115.4503,487135.454,21
+54087,972449.6986,490719.3017,487207.3666,21
+54088,972050.7824,493370.0236,486415.4643,21
+54089,968170.9372,493435.9546,486549.0895,21
+54090,966904.5479,495741.1808,486301.1856,21
+54091,963682.3766,496735.4051,486131.839,21
+54092,961523.8718,498460.962,485824.2193,21
+54093,958369.1163,499624.0186,485828.3059,21
+54094,956153.4379,501479.9325,485650.6532,21
+54095,953472.0396,503225.4567,485607.1225,21
+54096,950584.2639,504090.9421,485504.513,21
+54097,948350.6976,506687.1725,485426.5497,21
+54098,945590.577,506985.7105,484843.6229,21
+54099,942538.5064,509540.8464,1318514.016,21
+54100,1374878.868,510603.7035,446890.387,21
+54101,938299.2625,512122.8492,882743.095,21
+54102,935856.7548,514338.2369,410346.9995,21
+54103,933615.2593,515319.7675,679499.2636,21
+54104,931105.6926,517146.0586,512321.4847,21
+54105,929273.8581,518259.488,458759.7119,21
+54106,926591.1439,520662.4072,490364.6102,21
+54107,923939.0943,521129.7887,482492.1706,21
+54108,922111.7773,524007.9311,480026.0623,21
+54109,919828.112,524609.3796,480433.8667,21
+54110,917390.9434,526686.1677,479376.4693,21
+54111,915317.3401,528180.3165,479906.3624,21
+54112,913420.779,529734.0457,479890.1219,21
+54113,910367.6105,531296.5885,479723.1422,21
+54114,908551.5209,533058.6996,480181.5919,21
+54115,906279.4766,535718.3229,479906.3452,21
+54116,903506.5405,535798.7145,479745.8683,21
+54117,901435.3013,537959.4602,480363.5163,21
+54118,898681.1205,539244.0711,480193.7305,21
+54119,896739.1293,541448.2138,480504.812,21
+54120,893929.9874,542343.9605,479855.1327,21
+54121,897643.0806,545542.7027,489086.0535,21
+54122,895714.0655,545165.5398,488834.3009,21
+54123,894485.8393,543619.6522,488125.5316,21
+54124,892671.6145,541951.7864,487504.6799,21
+54125,891148.3063,541728.8137,487552.299,21
+54126,889178.4914,539520.6549,486693.9898,21
+54127,887747.6165,539100.7318,486496.2977,21
+54128,885863.4521,537110.4003,485762.4443,21
+54129,884424.8509,536573.2019,485428.8855,21
+54130,882973.1124,534936.1273,485529.7347,21
+54131,880685.4377,533601.6641,484098.3781,21
+54132,1313788.871,532603.0126,484169.0783,21
+54133,877858.8647,531121.8846,483381.5448,21
+54134,876350.3266,530037.6416,482713.2114,21
+54135,873857.8593,528865.7254,482648.2314,21
+54136,873489.5852,527567.8449,481571.0314,21
+54137,870896.6596,526265.2228,481452.1989,21
+54138,870038.2256,525090.5973,481154.1058,21
+54139,867638.6097,523600.7455,480057.3735,21
+54140,866913.2894,522381.4141,479554.5687,21
+54141,865078.3068,521432.4014,479162.7079,21
+54142,862992.3183,519793.8117,478650.7363,21
+54143,862224.5253,518881.9393,477939.3104,21
+54144,860241.0008,517380.2589,477314.6553,21
+54145,859518.242,516624.9812,477268.9493,21
+54146,858432.4695,514849.3578,475706.3982,21
+54147,856808.2281,513368.2784,475765.9002,21
+54148,856013.3083,512799.906,475168.0109,21
+54149,853591.0413,510913.5967,474150.9172,21
+54150,852921.5509,510845.8078,474135.3981,21
+54151,851304.8958,509111.0789,473277.6913,21
+54152,849976.7109,508049.1778,472566.0267,21
+54153,848815.0841,507292.3476,471114.154,21
+54154,847228.4876,505471.0592,471182.0428,21
+54155,846575.9594,504568.1418,470107.4921,21
+54156,844830.1114,503520.0972,469618.7352,21
+54157,844060.6894,502129.0843,468442.5665,21
+54158,842798.2365,501017.7017,467502.8449,21
+54159,841193.3092,499904.0631,467473.96,21
+54160,840193.3816,498501.5091,466035.499,21
+54161,839141.5388,497949.1793,465145.3915,21
+54162,837881.9694,495694.8396,464761.0162,21
+54163,836538.2609,495787.3038,463623.8012,21
+54164,835898.6654,493714.272,463013.4666,21
+54165,834658.0878,492726.1622,461889.04,21
+54166,833700.493,491655.9489,461185.9399,21
+54167,833770.329,490549.8623,460690.6686,21
+54168,831588.2897,489233.1344,459168.2014,21
+54169,831144.3912,488083.3506,458778.4086,21
+54170,829991.6333,487049.1801,457937.5409,21
+54171,828966.2564,484948.5818,456615.0048,21
+54172,828400.4423,484159.7993,456402.9504,21
+54173,827219.8957,482617.5791,454616.0878,21
+54174,826211.1577,481904.1246,454491.3827,21
+54175,825508.662,480264.2406,453182.9301,21
+54176,824811.421,479645.7896,452469.0333,21
+54177,823938.4263,477609.8223,451469.0351,21
+54178,823135.1132,476836.4569,450164.4103,21
+54179,821941.7185,476384.11,449815.5025,21
+54180,823057.3677,474099.9641,448742.5579,21
+54181,815829.4836,471029.6854,438262.4818,21
+54182,815812.0032,472201.3872,437302.5773,21
+54183,815803.4651,472911.2492,1229504.108,21
+54184,815345.0002,473695.7084,378062.5512,21
+54185,815751.4618,474838.1313,793456.4685,21
+54186,815608.977,474868.7275,342418.3533,21
+54187,815714.7961,476840.0608,618845.6742,21
+54188,815391.5286,477461.2904,456019.4914,21
+54189,815563.3501,478102.0315,545322.6316,21
+54190,816322.2582,478968.9964,332893.2914,21
+54191,816600.0828,480309.542,615122.6606,21
+54192,818464.408,480757.1968,424411.3168,21
+54193,826898.7061,481555.8842,511487.0692,21
+54194,822782.431,482660.6749,324971.735,21
+54195,825858.5843,483871.5693,603565.6918,21
+54196,826506.5047,483917.4244,413144.5829,21
+54197,828016.6013,486322.704,397800.8605,21
+54198,828729.6367,486206.6212,410783.6324,21
+54199,829834.9089,487075.496,405253.7608,21
+54200,830924.1141,487712.6749,402640.6832,21
+54201,831991.2138,489076.2985,401645.6408,21
+54202,832892.1394,489457.0273,399838.9493,21
+54203,834239.9463,490557.052,399311.2189,21
+54204,834578.8412,491133.9069,397504.9318,21
+54205,836710.8695,492484.266,396854.8563,21
+54206,836753.686,493045.8549,395657.144,21
+54207,838719.9532,493757.6355,394606.7451,21
+54208,839537.749,495382.7129,393245.7684,21
+54209,840069.591,495218.4829,392382.0988,21
+54210,841643.7879,497003.0658,391171.2947,21
+54211,841985.3444,498134.9048,390024.3504,21
+54212,842407.4772,499750.6563,389045.9806,21
+54213,842778.3043,498948.9834,388304.2494,21
+54214,843891.0808,500560.4482,387411.1278,21
+54215,844440.6761,500796.7013,386139.3304,21
+54216,844434.2133,502126.1919,385667.4079,21
+54217,845904.4716,502350.6186,384791.7998,21
+54218,845326.5369,503438.9903,383529.1831,21
+54219,846598.919,503952.4329,382854.5655,21
+54220,846696.7086,505000.9374,381613.3865,21
+54221,847133.1619,505639.7116,381264.6467,21
+54222,847599.387,506378.8972,379916.1309,21
+54223,847961.3218,506948.7003,378873.2946,21
+54224,848587.4202,507846.7778,378519.1874,21
+54225,849055.4504,508410.4675,376980.5563,21
+54226,849057.6731,509327.5895,376764.8484,21
+54227,850440.5343,510862.9204,375368.068,21
+54228,850063.935,510515.004,374617.8396,21
+54229,850674.447,511484.4262,373964.771,21
+54230,850928.4468,511800.4608,372592.9053,21
+54231,852889.0013,512785.3038,372295.4889,21
+54232,854021.7214,513248.3806,370747.5406,21
+54233,853702.2203,514094.0437,370285.8952,21
+54234,854795.906,514494.5664,369062.8739,21
+54235,854712.1644,515262.5545,368457.5983,21
+54236,855718.1592,515668.0827,367165.4423,21
+54237,855974.8819,516117.2367,366631.4412,21
+54238,856442.4947,517028.805,365654.9664,21
+54239,856216.9001,516908.969,364758.8051,21
+54240,857299.3499,516903.2768,363658.9487,21
+54241,857977.4695,518919.7306,363594.677,21
+54242,858325.4842,521712.6771,363248.9132,21
+54243,859837.5535,522855.89,363166.9298,21
+54244,860648.0623,525064.2865,363134.9052,21
+54245,860995.8406,527203.3202,363032.5344,21
+54246,862120.0342,528852.93,362043.3505,21
+54247,863518.144,531144.5513,363190.0157,21
+54248,863204.812,533316.2004,362160.0546,21
+54249,865186.0647,534860.7132,362691.6419,21
+54250,865481.3787,537802.8735,362400.9685,21
+54251,866265.1927,539094.9422,362220.0011,21
+54252,867375.9114,541511.5368,363847.2871,21
+54253,868042.1881,543624.5162,363566.6188,21
+54254,868880.3178,545552.4161,363618.7662,21
+54255,870055.5282,547892.087,363280.0885,21
+54256,870461.7868,549466.0386,363594.8784,21
+54257,871575.0895,552774.882,363544.4668,21
+54258,871644.1163,554143.6197,363447.9349,21
+54259,873164.9541,555910.1431,363697.4888,21
+54260,873689.2033,557997.1405,363494.8797,21
+54261,874917.6753,560114.1346,363386.7264,21
+54262,874894.8646,562395.7555,364067.0357,21
+54263,876499.4419,564110.3931,363396.9717,21
+54264,876689.4064,566820.4481,363800.9981,21
+54265,878105.5103,568524.8696,363783.6364,21
+54266,878019.934,570091.699,363976.6261,21
+54267,880029.8945,573327.2123,363856.0228,21
+54268,879400.829,574427.212,364182.5369,21
+54269,881438.775,576827.4128,363666.2379,21
+54270,881472.1628,579203.9436,364490.1872,21
+54271,882562.4745,581199.9596,364203.509,21
+54272,882793.4153,583824.1874,364243.9858,21
+54273,883466.9343,585292.3276,363857.776,21
+54274,884447.7179,587512.7431,364538.1527,21
+54275,884337.701,589024.1489,364311.0685,21
+54276,885539.2364,591739.3458,364133.7191,21
+54277,885788.9532,593340.7883,362764.1361,21
+54278,886414.4344,595639.3075,363348.1204,21
+54279,886696.0172,597718.3696,362661.9105,21
+54280,887635.9778,599688.7023,363313.7364,21
+54281,887957.6804,601732.9207,363112.7993,21
+54282,888308.9397,603823.882,362951.6735,21
+54283,889203.774,605834.9415,363077.8433,21
+54284,889367.3629,608311.4,363269.3188,21
+54285,890363.8143,609729.0263,363070.6932,21
+54286,890122.6029,612630.2849,363242.2221,21
+54287,891400.0129,613687.9049,363048.9144,21
+54288,891470.6425,616933.4777,363181.6328,21
+54289,891710.3455,617930.4341,363474.7257,21
+54290,892725.9504,620565.4772,363172.4007,21
+54291,892871.953,623456.4089,363297.1995,21
+54292,893386.1901,624717.1448,363641.0887,21
+54293,893923.1921,626361.8385,363464.1408,21
+54294,894358.7664,628953.9194,363758.6612,21
+54295,894941.1552,630734.4955,363333.5012,21
+54296,895012.2927,633063.6256,363960.2698,21
+54297,895748.0497,634651.0734,363615.2552,21
+54298,896379.6146,637550.4957,363495.6263,21
+54299,896237.252,638736.0041,364017.0923,21
+54300,897363.9207,641424.5479,364045.3597,21
+54301,953656.5691,697464.764,449192.9096,21
+54302,973604.007,716893.4403,456231.5111,21
+54303,968091.6965,710644.5668,457910.4066,21
+54304,969034.146,712198.4211,459410.1351,21
+54305,1085155.41,711498.4296,461287.5721,21
+54306,1043686.241,712415.8647,463012.5356,21
+54307,1045316.96,711815.5924,465480.4797,21
+54308,1052944.739,712305.6339,466086.2025,21
+54309,1054762.652,712025.354,468475.8821,21
+54310,1056071.049,712203.2494,469995.6519,21
+54311,1055822.101,711795.4699,472353.9853,21
+54312,1058163.894,712639.9696,473754.6634,21
+54313,1059031.486,711674.8558,474661.608,21
+54314,1059161.413,711420.505,477591.6976,21
+54315,1060485.818,712284.0688,478308.5918,21
+54316,1061204.801,711310.9004,480577.361,21
+54317,1062011.875,711180.2349,484454.1164,21
+54318,1062449.006,711435.6967,485938.1475,21
+54319,1063788.156,723011.8187,487116.6484,21
+54320,1063195.143,733220.3601,490201.121,21
+54321,1065007.229,725428.0225,490264.2735,21
+54322,1064970.219,729303.1418,492733.8768,21
+54323,1066352.794,729876.8282,494093.6514,21
+54324,1065262.735,729957.9294,497930.5898,21
+54325,1066728.111,730615.498,499155.7923,21
+54326,1066456.21,731588.8375,500637.0511,21
+54327,1067703.918,731127.6299,502664.1743,21
+54328,1068329.149,731645.9479,503968.3011,21
+54329,1067956.278,732529.3385,506277.9205,21
+54330,1068928.416,731475.736,506907.0083,21
+54331,1071246.312,732627.9597,509303.3618,21
+54332,1070021.575,732345.6334,510231.7301,21
+54333,1071036.703,733135.8335,512191.9833,21
+54334,1070298.593,732421.9971,513299.213,21
+54335,1071921.289,733024.7607,515294.8903,21
+54336,1070941.2,732564.2787,515958.2603,21
+54337,1071461.151,732563.8101,517715.7371,21
+54338,1071755.659,733030.5323,519606.0744,21
+54339,1070797.3,732487.5256,520106.7267,21
+54340,1072470.1,733241.3865,522413.157,21
+54341,1070675.479,731919.3323,523615.1892,21
+54342,1073414.267,733316.9903,524977.2158,21
+54343,1070463.81,732039.2824,526370.8646,21
+54344,1073164.33,732761.1492,527283.0489,21
+54345,1071432.482,731818.1012,529534.6406,21
+54346,1072041.399,731654.8203,530126.7392,21
+54347,1071753.199,732378.7339,531249.516,21
+54348,1071128.601,730718.6738,533642.0254,21
+54349,1072284.646,731427.5571,532821.6062,21
+54350,1072023.333,731046.829,533862.2513,21
+54351,1071077.972,730473.9236,535470.7807,21
+54352,1071661.963,731098.1361,537164.5597,21
+54353,1071035.151,729503.0802,538154.926,21
+54354,1071336.063,731816.639,539233.8087,21
+54355,1071220.629,729866.1686,540681.8674,21
+54356,1071133.234,729421.7452,541960.1918,21
+54357,1069878,731222.1677,542896.1646,21
+54358,1071034.504,728163.5477,544453.9936,21
+54359,1070386.501,729928.5763,546169.238,21
+54360,1070176.135,728506.9723,546509.6731,21
+54361,1130976.378,789241.1001,587402.544,21
+54362,1137251.947,794083.237,590423.8587,21
+54363,1139492.054,794852.7461,593194.6447,21
+54364,1141677.91,796563.6866,594313.6811,21
+54365,1144893.802,796215.1989,597129.9152,21
+54366,1145651.21,797855.0157,598201.0921,21
+54367,1148480.515,799809.2441,600207.3002,21
+54368,1150869.97,799006.9797,601795.6149,21
+54369,1153470.371,799373.3798,620383.79,21
+54370,1153175.516,800421.7635,631433.7379,21
+54371,1158078.098,800444.3057,627300.5004,21
+54372,1157452.138,800876.8632,633142.5913,21
+54373,1160641.835,801803.7863,636660.5955,21
+54374,1161700.895,801552.3362,639598.7756,21
+54375,1164375.619,801481.3402,642139.7667,21
+54376,1165449.604,803114.5339,646435.1129,21
+54377,1168029.674,803139.3795,648535.8561,21
+54378,1169848.959,803996.2378,650112.6793,21
+54379,1171064.853,804041.8299,655307.6726,21
+54380,1172857.375,804718.5121,659947.6396,21
+54381,1176358.437,804042.6862,660402.5835,21
+54382,1175042.684,805471.8499,666070.8693,21
+54383,1178984.396,805522.8293,666199.3882,21
+54384,1179868.25,805128.1619,670154.7218,21
+54385,1181215.061,806181.777,673864.9945,21
+54386,1184768.141,806373.5664,674593.2302,21
+54387,1183457.233,807019.1385,679216.3291,21
+54388,1187893.058,806735.6535,680558.3457,21
+54389,1188055.738,806268.1885,683083.812,21
+54390,1190071.247,808174.6225,684842.6857,21
+54391,1191345.794,807329.9952,688176.0864,21
+54392,1194675.762,807461.4521,691331.9756,21
+54393,1193450.168,809056.2038,693030.0707,21
+54394,1197508.473,807883.4709,694380.3606,21
+54395,1198027.945,807996.8191,698446.1642,21
+54396,1199535.087,808800.6164,699797.4866,21
+54397,1201681.815,808739.1689,703262.0058,21
+54398,1202413.527,809058.7065,703866.0455,21
+54399,1205046.092,807879.6656,707722.6104,21
+54400,1205003.986,809908.4916,709213.7911,21
+54401,1208497.357,809177.4918,711162.2309,21
+54402,1208624.105,809150.5406,713413.5575,21
+54403,1210633.994,808932.8161,716558.203,21
+54404,1213208.043,810497.9138,717654.2983,21
+54405,1212850.639,809830.8681,720624.8768,21
+54406,1214691.521,809847.3026,722838.2375,21
+54407,1217006.641,809807.705,724153.0045,21
+54408,1218722.124,809435.8499,726117.8633,21
+54409,1219536.031,810722.8842,728207.0704,21
+54410,1221241.136,809673.7169,730288.9318,21
+54411,1222605.583,810826.2567,733464.7534,21
+54412,1223326.166,808931.2343,733649.0813,21
+54413,1226548.634,811071.1103,737096.0514,21
+54414,1226344.259,809319.7776,737446.4258,21
+54415,1228871.863,811523.76,741218.997,21
+54416,1229460.237,808439.689,743268.5806,21
+54417,1231723.709,811875.8638,743209.3215,21
+54418,1232928.395,810619.3895,745675.6116,21
+54419,1233697.693,809896.5947,748855.4055,21
+54420,1235654.383,810513.4299,749343.2881,21
+54421,1237239.119,810820.9438,749119.3455,21
+54422,1236419.025,811052.5119,752781.704,21
+54423,1239957.304,813284.1306,754905.7379,21
+54424,1237631.438,811348.7404,757188.6109,21
+54425,1239441.28,813719.9662,757257.1237,21
+54426,1240846.494,811816.9968,761545.6373,21
+54427,1240397.256,814137.5295,761539.2517,21
+54428,1240114.978,813063.9158,764762.8801,21
+54429,1242557.388,814411.2199,765566.7191,21
+54430,1242725.929,814246.8083,769233.3063,21
+54431,1241654.708,814246.8632,770583.6744,21
+54432,1244762.982,815903.8658,771323.0268,21
+54433,1243949.94,813751.8825,774762.9335,21
+54434,1244323.809,816652.9852,776946.9164,21
+54435,1245102.689,815616.4889,777433.9277,21
+54436,1244805.508,815968.2701,780728.1245,21
+54437,1247594.312,815707.0113,781501.7045,21
+54438,1245638.305,817446.8567,783192.9439,21
+54439,1248388.663,816227.397,785206.845,21
+54440,1246753.606,817249.2362,788213.9108,21
+54441,1248622.232,818120.5852,789216.1502,21
+54442,1249178.378,816370.5256,790101.3359,21
+54443,1249624.308,819122.0228,794092.7163,21
+54444,1248888.715,816942.5504,793859.8812,21
+54445,1251463.606,818284.0635,798783.2293,21
+54446,1250312.051,819700.7987,796857.6792,21
+54447,1251288.756,817647.9279,801508.3594,21
+54448,1252043.266,819539.1666,801898.8174,21
+54449,1251847.943,819587.21,804026.4779,21
+54450,1253721.09,818714.4781,806918.3988,21
+54451,1252319.679,820662.3486,806322.4507,21
+54452,1254336.171,819398.7028,810160.6581,21
+54453,1254237.887,820122.773,810408.2583,21
+54454,1254875.704,821173.6455,813111.2566,21
+54455,1255007.581,819604.6062,813802.0684,21
+54456,1255639.865,821684.0802,815691.1886,21
+54457,1256357.515,820157.0603,816922.7675,21
+54458,1256288.176,821877.4103,820520.8532,21
+54459,1257140.051,821087.0929,819804.4,21
+54460,1257873.388,821572.7216,822620.8172,21
+54461,1257981.444,821485.5206,824387.3358,21
+54462,1259106.607,822232.3851,825799.6926,21
+54463,1258710.373,821652.4935,827909.2498,21
+54464,1259381.781,823082.89,827665.3078,21
+54465,1260423.239,821632.6302,831887.9744,21
+54466,1259274.48,822991.5362,832791.8098,21
+54467,1261188.351,823448.9262,834172.3222,21
+54468,1261414.58,822232.8148,835467.9376,21
+54469,1261465.98,823338.397,836546.4064,21
+54470,1261900.631,825030.7456,839486.9224,21
+54471,1262690.286,823912.4673,841462.9775,21
+54472,1263372.573,825116.905,841394.7761,21
+54473,1262746.735,824455.4942,842925.724,21
+54474,1264024.085,825783.4651,844721.8015,21
+54475,1263770.374,824777.3031,847054.9197,21
+54476,1265350.792,826514.0528,847755.1227,21
+54477,1265180.809,824486.8611,850520.3181,21
+54478,1264331.173,825906.1528,850552.2898,21
+54479,1267147.161,825969.2598,851869.1898,21
+54480,1265218.205,825845.9533,854779.459,21
+54481,1275378.913,833855.2882,869565.3478,21
+54482,1275748.721,835456.1414,875048.0143,21
+54483,1276430.758,835065.8669,1835992.249,21
+54484,1278107.205,834924.2908,881621.9055,21
+54485,1278195.712,836839.8809,1394430.336,21
+54486,1278451.504,835102.4698,830463.4828,21
+54487,1280207.266,835759.983,1096544.836,21
+54488,1279667.029,834518.275,905265.373,21
+54489,1280524.905,836103.5068,1092409.943,21
+54490,1281332.061,834260.0316,828159.375,21
+54491,1282891.609,836294.5814,1096653.082,21
+54492,1281501.251,835949.0855,870284.162,21
+54493,1283950.829,834388.187,1057582.86,21
+54494,1284029.524,835532.3498,822945.5159,21
+54495,1283484.142,835913.8351,1092157.642,21
+54496,1285229.912,834685.4323,863574.2615,21
+54497,1285490.518,836675.8717,1045433.213,21
+54498,1286411.069,833804.8618,821059.1207,21
+54499,1286382.235,836272.0807,1087105.323,21
+54500,1286833.881,835235.4921,861948.3956,21
+54501,1287931.559,835384.4364,839571.3934,21
+54502,1287912.834,834725.3242,862069.1113,21
+54503,1289103.536,835930.8105,859418.1423,21
+54504,1288899.505,835128.3688,860124.854,21
+54505,1290237.589,835040.6128,861590.8186,21
+54506,1290504.044,835673.0307,865091.7019,21
+54507,1290526.688,833437.9759,866144.5648,21
+54508,1290968.306,836921.5826,870133.2759,21
+54509,1292482.84,832502.2712,872947.3989,21
+54510,1291666.613,836508.0768,872891.7418,21
+54511,1293773.205,833994.9129,878059.9448,21
+54512,1292786.31,833808.0281,877797.6327,21
+54513,1294044.647,834944.9696,882051.0641,21
+54514,1294492.684,834297.7,883554.0509,21
+54515,1294289.064,833453.3227,886504.6651,21
+54516,1296323.42,834434.8442,887936.8074,21
+54517,1294660.65,833585.8405,888559.4429,21
+54518,1296610.514,833883.5941,893372.7854,21
+54519,1297173.767,833433.8782,892420.4416,21
+54520,1296784.165,834027.437,895060.2484,21
+54521,1298165.772,833291.2734,897419.6509,21
+54522,1298056.716,832579.351,899217.2368,21
+54523,1298653.414,833818.5513,900678.1998,21
+54524,1299298.372,831888.2539,901433.8127,21
+54525,1299236.687,833477.2027,905182.4613,21
+54526,1299543.214,832008.0808,905105.726,21
+54527,1301294.463,832050.7217,908583.6343,21
+54528,1300092.025,831682.3213,907602.5344,21
+54529,1301835.742,832352.0776,911503.2024,21
+54530,1301443.063,831440.3421,911289.4506,21
+54531,1302645.056,832424.0592,914160.8554,21
+54532,1302904.49,829885.0764,915659.4833,21
+54533,1302694.189,831838.6182,916504.7654,21
+54534,1303761.144,829866.5396,916322.3678,21
+54535,1303353.446,831513.9825,920927.8496,21
+54536,1305026.747,829904.4813,919842.0047,21
+54537,1305203.03,830492.4472,922987.5072,21
+54538,1304422.212,828865.4429,922083.1723,21
+54539,1307052.688,829800.4173,925330.0908,21
+54540,1305613.918,827449.2994,1889511.931,21
+54541,1305924.226,829362.0328,934530.7041,21
+54542,1306987.612,830163.7586,1446513.957,21
+54543,1306872.837,830677.5597,888742.3643,21
+54544,1306144.278,832451.303,1145779.084,21
+54545,1307585.05,831511.3992,957859.0736,21
+54546,1305901.744,834489.3436,890073.8911,21
+54547,1305717.738,832611.9276,932266.4389,21
+54548,1306765.88,834887.7589,924446.6303,21
+54549,1305155.566,835037.5837,924822.0626,21
+54550,1305580.851,835872.1831,925687.8643,21
+54551,1306289.223,836381.4381,927334.2831,21
+54552,1303771.002,836982.0064,931166.0804,21
+54553,1307096.116,838003.601,933096.5424,21
+54554,1302779.764,837990.7558,933668.3742,21
+54555,1305421.929,839635.627,937539.3141,21
+54556,1304498.837,839216.6305,940002.5557,21
+54557,1304597.523,840873.6212,941672.2693,21
+54558,1303778.568,841156.9909,942651.4927,21
+54559,1303467.937,841498.7867,945981.0254,21
+54560,1304651.952,842521.2797,948277.9476,21
+54561,1302808.238,843284.5006,950409.4654,21
+54562,1303749.858,842831.91,951261.9412,21
+54563,1302604.096,845189.8648,955932.8794,21
+54564,1302608.097,845733.0943,953917.8588,21
+54565,1302832.608,844678.1027,958937.3439,21
+54566,1302931.129,846627.1229,959292.912,21
+54567,1300816.66,847279.055,963293.3072,21
+54568,1302636.071,847748.2624,962547.3879,21
+54569,1302452.223,848564.7948,965506.5986,21
+54570,1299662.306,848595.853,969580.7417,21
+54571,1301947.272,850464.4937,969008.6891,21
+54572,1300793.066,849608.2743,972277.5222,21
+54573,1301124.222,852041.1937,972273.946,21
+54574,1300192.667,850363.0828,976949.7177,21
+54575,1300443.294,853638.0748,976331.7293,21
+54576,1299933.759,851630.0216,979494.9384,21
+54577,1299707.321,854994.9398,980720.1596,21
+54578,1298723.952,854546.2492,983201.0519,21
+54579,1300224.841,854536.5837,983106.4737,21
+54580,1298585.849,856051.4868,987938.6899,21
+54581,1299056.424,855610.3399,987356.1178,21
+54582,1297712.489,857729.7543,990153.2485,21
+54583,1299662.697,857044.3667,991930.1652,21
+54584,1297149.384,859687.2787,992876.5417,21
+54585,1297163.92,857703.7769,995092.2042,21
+54586,1298500.78,859834.0737,996993.8065,21
+54587,1296578.319,861161.4216,997353.1017,21
+54588,1297307.535,859655.9509,1000792.215,21
+54589,1297178.202,862116.0184,1001754.368,21
+54590,1295778.87,862391.531,1004562.54,21
+54591,1296528.03,862403.1093,1003787.109,21
+54592,1296114.447,863640.1678,1007913.734,21
+54593,1295590.216,864883.8775,2019146.015,21
+54594,1295947.848,864209.7954,1045758.294,21
+54595,1294817.964,865808.5114,1569645.753,21
+54596,1295505.736,866257.4229,988668.9173,21
+54597,1293568.598,866758.9869,1226889.83,21
+54598,1294371.643,867846.3022,1034463.975,21
+54599,1294288.098,867469.9773,985654.8062,21
+54600,1294165.949,869429.5301,1006922.175,15.6
+54601,0,0,0,15.6
+54602,0,0,0,15.6
+54603,0,369.9391424,0,15.6
+54604,0,0,0,15.6
+54605,0,0,0,15.6
+54606,0,0,1600417.853,15.6
+54607,0,0,0,15.6
+54608,0,0,0,15.6
+54609,0,0,0,15.6
+54610,0,0,0,15.6
+54611,0,0,0,15.6
+54612,0,0,0,15.6
+54613,0,0,0,15.6
+54614,0,0,0,15.6
+54615,59521.87661,0,0,15.6
+54616,9.974311593,437927.4999,0,15.6
+54617,16200.08865,0,0,15.6
+54618,22356.72638,0,0,15.6
+54619,18182.39188,0,0,15.6
+54620,19163.27989,0,0,15.6
+54621,19499.6597,0,0,15.6
+54622,19794.11101,0,0,15.6
+54623,20059.38172,0,0,15.6
+54624,20357.69875,0,0,15.6
+54625,20633.11874,0,0,15.6
+54626,20877.98814,0,0,15.6
+54627,21135.27134,0,0,15.6
+54628,21418.2073,0,0,15.6
+54629,21571.18237,0,0,15.6
+54630,21906.91699,0,0,15.6
+54631,22106.6562,0,0,15.6
+54632,22295.4706,0,0,15.6
+54633,441642.2964,0,0,15.6
+54634,23182.19328,0,0,15.6
+54635,78905.47437,0,0,15.6
+54636,176359.555,0,0,15.6
+54637,133661.4122,0,0,15.6
+54638,137503.9383,0,0,15.6
+54639,141162.3379,0,0,15.6
+54640,143506.2583,0,0,15.6
+54641,145112.8063,0,1501767.379,15.6
+54642,147381.0406,0,0,15.6
+54643,148707.9053,0,0,15.6
+54644,151000.5233,0,0,15.6
+54645,127783.5686,0,180040.0219,15.6
+54646,129254.2517,0,180660.8047,15.6
+54647,131091.1215,437856.9704,177806.4856,15.6
+54648,216366.6046,0,175055.7439,15.6
+54649,151022.2874,368337.3213,172381.6208,15.6
+54650,149071.6731,0,169765.6778,15.6
+54651,170556.3347,0,167198.5285,15.6
+54652,164412.6382,0,164677.3392,15.6
+54653,165929.9156,0,162200.6118,15.6
+54654,167949.4358,0,159767.2309,15.6
+54655,169642.9233,0,157377.4319,15.6
+54656,171156.8731,0,155027.6593,15.6
+54657,172619.8779,0,152716.7213,15.6
+54658,173820.7463,0,150443.5323,15.6
+54659,175852.5377,0,148207.397,15.6
+54660,177037.4678,0,146007.5322,15.6
+54661,180610.3134,0,143804.0926,15.6
+54662,182451.704,0,141693.3974,15.6
+54663,28122.23018,0,139563.5907,15.6
+54664,28345.76202,0,137462.3652,15.6
+54665,28600.19635,0,135393.05,15.6
+54666,28731.98409,0,133356.5409,15.6
+54667,674699.2319,0,131352.1177,15.6
+54668,59996.83114,0,129379.2555,15.6
+54669,100597.0334,0,127437.5894,15.6
+54670,279106.88,0,125527.0805,15.6
+54671,188801.1366,0,123647.9041,15.6
+54672,204644.62,0,121798.5516,15.6
+54673,207125.2194,0,119978.5592,15.6
+54674,208871.0971,0,0,15.6
+54675,210591.4822,0,0,15.6
+54676,212604.4532,0,0,15.6
+54677,214370.0339,0,1018863.202,15.6
+54678,184781.098,437786.461,0,15.6
+54679,186451.4667,0,0,15.6
+54680,272803.7688,0,0,15.6
+54681,215065.0326,0,0,15.6
+54682,214152.4041,0,0,15.6
+54683,229918.6857,0,0,15.6
+54684,226363.8236,0,0,15.6
+54685,228267.5532,0,0,15.6
+54686,230308.2239,0,0,15.6
+54687,231466.7632,0,0,15.6
+54688,233490.172,0,0,15.6
+54689,235163.4277,0,0,15.6
+54690,236596.264,0,0,15.6
+54691,238425.2146,0,0,15.6
+54692,240094.9478,0,0,15.6
+54693,241567.0774,0,0,15.6
+54694,243355.4553,0,0,15.6
+54695,244949.4648,0,0,15.6
+54696,246519.5744,0,0,15.6
+54697,34548.31733,0,0,15.6
+54698,34673.0115,0,0,15.6
+54699,34906.71137,0,0,15.6
+54700,760923.0026,0,0,15.6
+54701,161175.6554,0,0,15.6
+54702,155779.2312,0,0,15.6
+54703,324708.3424,0,0,15.6
+54704,251727.561,0,0,15.6
+54705,260827.1435,0,0,15.6
+54706,262523.6049,0,0,15.6
+54707,263727.8679,0,0,15.6
+54708,265487.2276,368360.4767,0,15.6
+54709,266604.6227,437716.2002,0,15.6
+54710,231574.2263,0,0,15.6
+54711,233249.2994,0,0,15.6
+54712,322620.9742,0,0,15.6
+54713,279536.0553,0,983774.8806,15.6
+54714,260814.8318,0,0,15.6
+54715,279971.9835,0,0,15.6
+54716,277300.378,0,0,15.6
+54717,277762.0504,0,0,15.6
+54718,279771.6224,0,0,15.6
+54719,280863.1282,0,0,15.6
+54720,282281.4628,0,0,15.6
+54721,285366.6413,0,0,15.6
+54722,286407.3589,0,0,15.6
+54723,287390.6878,0,100673.3937,15.6
+54724,288137.437,0,102577.402,15.6
+54725,289774.285,0,100976.5144,15.6
+54726,290230.2858,0,99458.70399,15.6
+54727,291015.8106,0,97994.8111,15.6
+54728,292127.7104,0,96567.84923,15.6
+54729,293104.2796,0,95170.434,15.6
+54730,39281.08437,0,93799.66025,15.6
+54731,39365.57503,0,92454.06048,15.6
+54732,39438.22698,0,91132.4276,15.6
+54733,831019.8717,0,89833.51312,15.6
+54734,318706.2845,0,88556.21177,15.6
+54735,134727.3417,0,87299.65675,15.6
+54736,378633.2441,0,86063.06838,15.6
+54737,299712.7386,0,84845.90354,15.6
+54738,301839.6156,0,83647.74848,15.6
+54739,304184.9914,0,82468.22862,15.6
+54740,305723.1708,437597.1068,81307.05689,15.6
+54741,305099.1779,0,80164.02051,15.6
+54742,266440.3018,0,79038.85663,15.6
+54743,266874.4368,0,77931.38288,15.6
+54744,357928.5828,0,76841.41396,15.6
+54745,319942.1349,0,75768.72901,15.6
+54746,302742.0935,0,74713.1336,15.6
+54747,310100.8989,0,73674.47393,15.6
+54748,314073.5768,0,72652.52612,15.6
+54749,311526.6565,0,756556.4499,15.6
+54750,313413.0771,0,70540.24068,15.6
+54751,313348.5044,0,69569.32529,15.6
+54752,314939.413,0,0,15.6
+54753,315182.6158,0,0,15.6
+54754,316221.4122,0,0,15.6
+54755,316488.6267,0,0,15.6
+54756,317664.6358,0,0,15.6
+54757,318666.0142,0,0,15.6
+54758,318771.5699,0,0,15.6
+54759,320272.2185,0,0,15.6
+54760,320586.8396,0,0,15.6
+54761,321550.538,0,0,15.6
+54762,322000.0724,0,610484.2667,15.6
+54763,42336.42336,0,0,15.6
+54764,42404.85581,0,0,15.6
+54765,792853.5364,0,0,15.6
+54766,282985.4853,0,0,15.6
+54767,234795.2333,368366.5412,0,15.6
+54768,376027.1182,0,0,15.6
+54769,325434.3649,0,0,15.6
+54770,328700.6173,0,0,15.6
+54771,329415.4211,437456.3067,0,15.6
+54772,329828.731,0,0,15.6
+54773,331094.562,0,0,15.6
+54774,288346.4723,0,0,15.6
+54775,288901.1994,0,0,15.6
+54776,379949.5958,0,0,15.6
+54777,347265.7903,0,0,15.6
+54778,333512.1871,0,0,15.6
+54779,330659.9226,0,0,15.6
+54780,339502.9726,0,0,15.6
+54781,336757.0493,0,0,15.6
+54782,336709.0805,0,0,15.6
+54783,337064.5444,0,0,15.6
+54784,337823.492,0,0,15.6
+54785,338273.0564,0,759573.6905,15.6
+54786,338230.5707,0,0,15.6
+54787,339434.2203,0,0,15.6
+54788,339191.5644,0,0,15.6
+54789,339950.7255,0,0,15.6
+54790,340149.323,0,0,15.6
+54791,341023.595,0,0,15.6
+54792,340887.3768,0,0,15.6
+54793,341718.8714,0,0,15.6
+54794,342043.4904,0,0,15.6
+54795,44465.11432,0,0,15.6
+54796,44457.72542,0,0,15.6
+54797,822762.6007,0,0,15.6
+54798,341833.9798,0,0,15.6
+54799,224241.4561,0,0,15.6
+54800,403218.7333,0,0,15.6
+54801,342500.2741,0,0,15.6
+54802,345791.031,437315.7435,0,15.6
+54803,345991.3014,0,0,15.6
+54804,346314.2913,0,0,15.6
+54805,346909.1039,0,0,15.6
+54806,302548.4137,0,0,15.6
+54807,302548.416,0,0,15.6
+54808,393405.4897,0,0,15.6
+54809,363567.679,0,0,15.6
+54810,350103.8415,0,0,15.6
+54811,343571.721,0,0,15.6
+54812,353271.0549,0,0,15.6
+54813,350439.0585,0,67313.67478,15.6
+54814,350135.0903,0,69756.09286,15.6
+54815,350823.8157,0,68684.94508,15.6
+54816,351130.8603,0,67688.07859,15.6
+54817,351319.3865,0,66736.80142,15.6
+54818,351953.2235,0,65814.42707,15.6
+54819,351874.2806,0,64913.77093,15.6
+54820,352721.307,0,64024.40592,15.6
+54821,352931.8247,0,709156.9257,15.6
+54822,353124.055,368335.5742,62865.69488,15.6
+54823,353910.8669,0,62044.71985,15.6
+54824,353716.6456,0,61239.67724,15.6
+54825,354447.9819,0,60446.07431,15.6
+54826,354724.9428,0,596494.2149,15.6
+54827,45758.29866,0,18666.36423,15.6
+54828,45768.54349,0,162524.6053,15.6
+54829,833748.3709,0,7922.955815,15.6
+54830,366751.6453,0,125920.0225,15.6
+54831,250863.0022,0,74158.22616,15.6
+54832,403883.5841,0,53860.64878,15.6
+54833,358989.6616,437175.2263,63402.91327,15.6
+54834,359015.9673,0,60039.49763,15.6
+54835,358886.4276,0,58564.22604,15.6
+54836,359541.2486,0,57579.43618,15.6
+54837,360103.482,0,56734.47184,15.6
+54838,313737.3606,0,55937.04258,15.6
+54839,314083.1262,0,55162.76401,15.6
+54840,404847.3997,0,54404.84147,15.6
+54841,375901.0689,0,53661.71744,15.6
+54842,361711.1001,0,0,15.6
+54843,353586.7248,0,0,15.6
+54844,360196.0587,0,0,15.6
+54845,357357.2742,0,0,15.6
+54846,355898.358,0,0,15.6
+54847,355402.3506,0,0,15.6
+54848,354285.1949,0,0,15.6
+54849,353577.7516,0,0,15.6
+54850,352561.5445,0,0,15.6
+54851,352156.8571,0,0,15.6
+54852,350899.3046,0,0,15.6
+54853,350582.3689,0,0,15.6
+54854,349433.202,0,0,15.6
+54855,348801.0819,0,0,15.6
+54856,347984.6264,0,0,15.6
+54857,346803.9191,0,630995.7807,15.6
+54858,346742.6445,0,0,15.6
+54859,44486.85524,0,0,15.6
+54860,44327.29909,0,0,15.6
+54861,824691.3902,0,0,15.6
+54862,352322.6577,0,0,15.6
+54863,216746.5732,0,0,15.6
+54864,400829.9093,437092.0942,0,15.6
+54865,338721.7446,0,0,15.6
+54866,340276.5795,0,0,15.6
+54867,339222.0974,0,0,15.6
+54868,338515.5466,0,0,15.6
+54869,338066.5275,0,0,15.6
+54870,293499.0132,0,0,15.6
+54871,292660.1063,0,0,15.6
+54872,382267.8104,0,0,15.6
+54873,348632.477,0,0,15.6
+54874,334473.0771,0,0,15.6
+54875,327294.5119,368291.6227,0,15.6
+54876,335809.7941,0,0,15.6
+54877,331282.3437,0,0,15.6
+54878,330388.8133,0,0,15.6
+54879,329541.553,0,0,15.6
+54880,328825.1904,0,0,15.6
+54881,327670.94,0,0,15.6
+54882,327279.4239,0,0,15.6
+54883,326142.2655,0,0,15.6
+54884,325053.1694,0,0,15.6
+54885,325095.4556,0,0,15.6
+54886,322918.8224,0,0,15.6
+54887,323147.2974,0,0,15.6
+54888,321772.3607,437037.7833,0,15.6
+54889,321511.7266,0,0,15.6
+54890,319987.2103,0,0,15.6
+54891,41358.04218,0,0,15.6
+54892,41233.07377,0,0,15.6
+54893,785553.5487,0,635117.2279,15.6
+54894,280386.0182,0,0,15.6
+54895,218853.7174,0,0,15.6
+54896,366699.8233,0,0,15.6
+54897,311785.0206,0,0,15.6
+54898,313890.978,0,0,15.6
+54899,313320.9129,0,0,15.6
+54900,313559.5982,0,0,15.6
+54901,314466.6638,0,0,15.6
+54902,274185.2172,0,0,15.6
+54903,273841.2855,0,0,15.6
+54904,364784.8802,0,571245.723,15.6
+54905,327298.9532,0,0,15.6
+54906,312878.0396,0,0,15.6
+54907,313357.4155,0,0,15.6
+54908,319558.0665,0,0,15.6
+54909,316926.7059,0,67426.55363,15.6
+54910,317484.0466,0,51199.30465,15.6
+54911,317152.5603,0,60351.6072,15.6
+54912,318079.0806,436983.5343,57101.75524,15.6
+54913,317988.4523,0,55702.31629,15.6
+54914,318775.0057,0,54788.69907,15.6
+54915,318548.7111,0,54015.16023,15.6
+54916,319421.5306,0,53290.177,15.6
+54917,319162.2289,0,52589.07922,15.6
+54918,319597.6416,0,51904.46825,15.6
+54919,320406.3387,0,51233.58164,15.6
+54920,320091.0911,0,50574.93025,15.6
+54921,320585.2555,0,49927.59856,15.6
+54922,321009.6747,0,49290.94376,15.6
+54923,41202.89975,0,48664.62204,15.6
+54924,41271.296,0,48048.31092,15.6
+54925,787824.0644,0,47441.79411,15.6
+54926,300324.9376,368250.763,46844.92191,15.6
+54927,217587.4681,0,46257.58932,15.6
+54928,376606.1747,0,45679.66353,15.6
+54929,321140.533,0,593838.7233,15.6
+54930,324000.1158,0,46800.4158,15.6
+54931,324872.5598,0,46210.08878,15.6
+54932,325350.5442,0,45629.616,15.6
+54933,324664.4241,0,45058.90973,15.6
+54934,284349.2171,0,44497.83689,15.6
+54935,283978.4015,0,43946.35367,15.6
+54936,374554.5823,436929.4777,43404.34363,15.6
+54937,339098.0465,0,42871.72202,15.6
+54938,325823.8934,0,0,15.6
+54939,322521.4591,37089.4467,0,15.6
+54940,330241.1327,0,0,15.6
+54941,328148.9597,3823.746221,0,15.6
+54942,327138.105,15626.33271,0,15.6
+54943,328063.5943,10770.82022,0,15.6
+54944,327981.7424,11136.10392,0,15.6
+54945,328442.0301,11651.48651,0,15.6
+54946,328769.1265,11808.30555,0,15.6
+54947,328588.0698,11996.29428,0,15.6
+54948,329527.0238,12204.74565,0,15.6
+54949,328868.5317,12370.84229,0,15.6
+54950,330395.9269,12563.32511,0,15.6
+54951,329495.7972,12716.13059,0,15.6
+54952,330237.4406,12976.1667,0,15.6
+54953,330289.1085,13063.37081,0,15.6
+54954,330795.6804,13321.74666,0,15.6
+54955,42088.20385,13385.43166,0,15.6
+54956,42179.07778,13586.51424,0,15.6
+54957,803583.1562,13775.7649,0,15.6
+54958,333955.6824,13961.96587,0,15.6
+54959,209477.1882,14139.8307,0,15.6
+54960,391343.8933,451189.4951,0,17.8
+54961,1095235.385,1152411.243,149565.2151,17.8
+54962,966155.2232,298814.7877,101288.0239,17.8
+54963,653722.8235,96295.37928,52859.43878,17.8
+54964,638463.407,312931.9226,65076.35061,17.8
+54965,735835.676,286535.6145,616760.9847,17.8
+54966,589835.8476,254996.6933,70685.82198,17.8
+54967,618662.6544,259569.2026,586561.2071,17.8
+54968,661318.0914,259532.2034,47230.56883,17.8
+54969,608474.0771,223122.2545,155242.7292,17.8
+54970,604214.1281,222920.2126,38685.64109,17.8
+54971,611980.6544,316970.937,126215.9518,17.8
+54972,605692.1913,234665.8651,87153.6022,17.8
+54973,603856.703,257601.9432,71414.95495,17.8
+54974,600879.7684,258085.4528,79310.95498,17.8
+54975,599016.0199,254975.7157,76927.71124,17.8
+54976,597560.388,622773.0177,76071.92483,17.8
+54977,596446.6481,254524.9535,75557.26899,17.8
+54978,595047.9284,253576.8476,75226.75141,17.8
+54979,593357.5567,253328.2402,74856.9712,17.8
+54980,592390.1291,252693.0082,74548.29333,17.8
+54981,590601.6714,252168.3219,74215.82568,17.8
+54982,590834.9374,252053.6404,73942.0638,17.8
+54983,587835.9014,249887.2253,73551.77635,17.8
+54984,587974.8689,687329.731,73343.55043,17.8
+54985,586202.1304,249258.1483,73004.76061,17.8
+54986,585773.9773,249505.0524,72697.88673,17.8
+54987,97835.50868,248686.7645,72453.49029,17.8
+54988,97773.8538,247863.6689,72114.6047,17.8
+54989,910986.2948,248270.6009,71892.70347,17.8
+54990,744809.8609,247139.9101,71607.9,17.8
+54991,560036.3224,33465.49294,0,17.8
+54992,640641.8814,33313.26638,0,17.8
+54993,572760.4089,33297.99012,0,17.8
+54994,552594.8388,33265.09117,0,17.8
+54995,626808.0784,725820.3332,0,17.8
+54996,571045.4305,44825.872,137851.5016,17.8
+54997,492040.2365,224781.0999,54161.35904,17.8
+54998,597396.3045,286066.0097,59802.92871,17.8
+54999,581438.4082,237620.5665,80854.47512,17.8
+55000,572388.5834,243574.7082,613693.7954,17.8
+55001,579060.626,210466.7081,72399.6849,17.8
+55002,571197.5279,210499.218,72046.34912,17.8
+55003,571945.587,209767.2877,71789.90527,17.8
+55004,571889.842,314727.4736,71489.77746,17.8
+55005,570000.2265,224037.402,71155.84733,17.8
+55006,569742.5906,231218.0177,70929.65639,17.8
+55007,568958.9779,249005.804,70617.88192,17.8
+55008,567688.6124,676906.9793,70407.93764,17.8
+55009,567381.4706,240173.071,70130.85888,17.8
+55010,566009.0738,240138.3906,69838.23756,17.8
+55011,564948.9285,239692.9606,69619.00099,17.8
+55012,564837.8478,238953.2448,69374.766,17.8
+55013,564348.3263,607494.4034,69102.43991,17.8
+55014,563226.9544,238563.7863,69466.55047,17.8
+55015,562031.3305,237682.7353,72739.4381,17.8
+55016,561651.5625,238714.5722,72556.38404,17.8
+55017,561044.3032,236920.2606,72423.0924,17.8
+55018,560127.1163,237334.0936,72240.89377,17.8
+55019,94560.80836,236743.7028,72163.55478,17.8
+55020,94499.57608,236202.8968,72051.92467,20
+55021,2297653.454,1789904.468,1443310.47,20
+55022,2325564.94,1315990.088,1323153.877,20
+55023,1114136.173,367315.9308,759582.3142,20
+55024,1181516.711,609537.4719,361642.5346,20
+55025,1184338.876,88795.548,553606.861,20
+55026,1040465.201,143371.7184,487948.1781,20
+55027,1162960.309,1183966.134,448167.347,20
+55028,986505.255,396526.7147,648916.9481,20
+55029,1139230.908,535241.9146,571198.5704,20
+55030,1073951.075,541387.0077,553030.4002,20
+55031,1101236.876,538325.8619,571286.3219,20
+55032,1084265.986,529909.5864,579688.8171,20
+55033,1088875.966,529852.9839,581291.248,20
+55034,1080188.723,504696.6605,587157.9174,20
+55035,1081976.006,470296.0578,1416645.86,20
+55036,1078687.859,637869.7714,592548.7761,20
+55037,1078339.167,568825.287,597377.7699,20
+55038,1074751.649,565250.8047,602392.8535,20
+55039,1076035.074,574763.2887,606919.6163,20
+55040,1074549.297,565884.234,611704.4476,20
+55041,1072798.598,569740.4634,615203.9775,20
+55042,1071356.26,569450.2904,619452.4613,20
+55043,1072117.175,569049.0818,612139.5784,20
+55044,1068118.876,568880.2673,616020.0046,20
+55045,1070447.935,570409.819,618239.8148,20
+55046,1068915.85,569400.279,622857.2062,20
+55047,1067170.37,570896.2007,625061.4377,20
+55048,1068489.265,570386.4479,628108.6226,20
+55049,1066079.967,571582.5335,630715.6436,20
+55050,1065699.997,938750.4316,633903.1943,20
+55051,165290.7951,551668.3795,219246.4288,20
+55052,1129186.646,549614.3318,216840.4598,20
+55053,1233970.552,551856.1656,214839.4771,20
+55054,1003283.179,551253.9272,212852.3242,20
+55055,1068728.9,551854.751,1756687.706,20
+55056,1073266.261,610829.5828,599452.1947,20
+55057,1024548.492,87705.51603,477909.288,20
+55058,1026301.611,110428.2102,611676.8593,20
+55059,970833.9685,1146344.707,518453.2558,20
+55060,1116686.119,358880.8456,705984.3308,20
+55061,1054015.967,555737.895,653841.6913,20
+55062,1065187.527,527670.5966,593028.6803,20
+55063,1066355.761,533710.5393,636536.6725,20
+55064,1062283.429,563044.6426,624806.5193,20
+55065,1061827.218,601452.1227,628187.0886,20
+55066,1062748.307,483551.1913,629178.7936,20
+55067,1060369.324,496481.6788,632040.9612,20
+55068,1062373.899,647214.3637,633354.7314,20
+55069,1062417.224,587297.019,635389.0774,20
+55070,1060876.201,581454.4515,1636776.042,20
+55071,1061432.043,588213.648,626597.4807,20
+55072,1061257.366,585818.9542,628922.3319,20
+55073,1060990.881,587646.5768,631258.8569,20
+55074,1062280.209,588603.0004,632340.668,20
+55075,1060247.784,588761.6242,633735.9468,20
+55076,1061601.122,589045.3259,636275.8827,20
+55077,1061926.815,591263.8899,637668.0052,20
+55078,1060841.581,590759.087,639408.5346,20
+55079,1061912.648,592800.3162,640168.9694,20
+55080,1061461.736,592931.5637,641848.5052,21
+55081,2671853.921,2950206.759,4237840.774,21
+55082,2303916.593,1853201.573,2274018.736,21
+55083,776289.3892,597469.5723,487116.9155,21
+55084,1214134.674,665094.4108,809334.3823,21
+55085,1258551.472,853480.8735,1252112.237,21
+55086,1183193.357,941469.8251,947926.9005,21
+55087,1174514.014,804576.4892,967616.7444,21
+55088,1171601.7,838092.559,980592.5363,21
+55089,1171228.6,834635.8266,982437.3623,21
+55090,1165172.563,832915.8154,984303.2493,21
+55091,1165142.919,830620.8141,985454.7343,21
+55092,1162385.462,826242.3514,986501.6348,21
+55093,1158379.94,827881.1089,989110.0287,21
+55094,1157423.206,822822.5042,989194.8915,21
+55095,1154969.477,822904.3168,991192.6214,21
+55096,1151834.384,819219.0554,991596.5134,21
+55097,1151118.451,819017.176,989932.0782,21
+55098,1148974.773,816280.7445,993470.1186,21
+55099,1147135.198,815185.9199,991771.2919,21
+55100,1143351.743,812838.3175,993452.4872,21
+55101,1144048.931,811625.7875,991282.7038,21
+55102,1139452.896,810294.444,994061.8294,21
+55103,1141314.381,808264.3413,990908.7237,21
+55104,1136644.692,807575.2822,992808.1314,21
+55105,1137099.151,807070.3296,991853.6291,21
+55106,1135682.562,805686.7052,990746.3723,21
+55107,1131875.544,803598.2109,992141.0655,21
+55108,1132027.246,802772.8047,988669.0917,21
+55109,1130077.56,801754.0126,989922.1595,21
+55110,1128438.971,798853.3097,988223.2478,21
+55111,1127839.634,800300.0694,988082.2859,21
+55112,1125803.578,797280.9074,987384.0263,21
+55113,1125864.813,797268.6823,986166.6572,21
+55114,1122236.158,796064.599,985747.7235,21
+55115,1123360.354,793168.5941,983310.3979,21
+55116,1119985.767,794564.5165,983679.8199,21
+55117,1119730.513,792469.6333,980261.9993,21
+55118,1114160.323,791260.4778,981509.1293,21
+55119,1115368.153,790559.9826,978862.6257,21
+55120,1110638.967,790553.6703,978166.4122,21
+55121,1112316.079,788147.6685,978017.5715,21
+55122,1109506.841,788763.1174,975124.5315,21
+55123,1106997.293,786213.2806,975681.2343,21
+55124,1106704.576,787229.6402,972384.0104,21
+55125,1104269.977,784589.3791,972672.3366,21
+55126,1104314.979,785839.8435,970636.0187,21
+55127,1102003.109,783543.6361,969202.7731,21
+55128,1100738.935,784082.4248,964965.4849,21
+55129,1097688.865,780765.8932,969372.3405,21
+55130,1099562.294,781941.8631,963446.8572,21
+55131,1095984.747,779524.0936,963978.5102,21
+55132,1095080.835,779188.1527,961167.5321,21
+55133,1094657.614,780253.2509,960153.9024,21
+55134,1093168.871,776477.95,958476.8891,21
+55135,1090923.046,778730.05,957489.2085,21
+55136,1091723.278,775573.0435,955950.4897,21
+55137,1089198.742,776693.7987,955370.9901,21
+55138,1087841.366,776103.02,950330.6742,21
+55139,1086516.501,773543.1879,952677.807,21
+55140,1086776.405,775137.3404,948072.7372,21
+55141,1796691.251,1451455.381,893030.1734,21
+55142,1788493.807,1440248.269,881992.0912,21
+55143,1789486.739,1438018.595,879824.8882,21
+55144,1786202.589,1433273.002,877074.082,21
+55145,1784771.963,1428174.353,875809.1917,21
+55146,1783864.478,1426426.073,872559.5343,21
+55147,1781389.355,1420845,871839.3461,21
+55148,1779397.846,1418590.291,868451.9089,21
+55149,1780193.103,1414372.589,868537.3501,21
+55150,1776386.22,1410052.203,864584.9784,21
+55151,1776898.149,1406537.43,863908.0674,21
+55152,1774069.418,1403576.767,862831.3377,21
+55153,1774811.167,1399444.256,861264.9659,21
+55154,1771566.868,1395874.735,858596.8919,21
+55155,1771774.509,1393240.732,856939.0115,21
+55156,1769523.013,1387849.002,856735.9878,21
+55157,1769962.993,1385812.666,855593.3786,21
+55158,1766676.461,1381580.257,852943.2903,21
+55159,1766784.373,1378520.281,853499.0334,21
+55160,1765338.854,1374758.805,849319.4266,21
+55161,1764865.915,1370979.283,850721.7244,21
+55162,1763390.596,1367421.449,848526.6062,21
+55163,1762570.281,1364307.754,846520.1008,21
+55164,1759974.313,1361198.209,846260.0967,21
+55165,1760643.733,1357080.525,843835.1337,21
+55166,1758830.21,1352946.44,845951.0923,21
+55167,1758792.26,1351090.317,841432.6024,21
+55168,1743810.372,1346583.863,840713.5275,21
+55169,1743104.344,1344535.146,842975.4581,21
+55170,1738067.182,1338465.808,837473.8632,21
+55171,1736183.208,1337536.144,838318.4558,21
+55172,1733369.41,1333060.404,835955.7485,21
+55173,1731794.674,1329554.84,838729.8367,21
+55174,1727586.788,1326982.07,832523.8784,21
+55175,1725653.233,1323253.139,833208.1468,21
+55176,1721774.161,1319031.148,832157.3721,21
+55177,1721690.684,1316914.98,831862.254,21
+55178,1716790.686,1312349.039,830000.5788,21
+55179,1713864.753,1309837.933,828956.0863,21
+55180,1713000.034,1306069.481,830152.2158,21
+55181,1708323.889,1302810.382,828151.2602,21
+55182,1707149.742,1299520.362,829110.3482,21
+55183,1702914.528,1295935.62,827274.8247,21
+55184,1698871.502,1294212.059,826453.882,21
+55185,1697839.099,1288376.173,824834.9158,21
+55186,1692454.645,1286962.005,824448.9876,21
+55187,1689380.86,1281691.68,822285.1348,21
+55188,1688573.94,1281167.805,822818.7184,21
+55189,1682825.838,1274935.132,821125.771,21
+55190,1680679.079,1272862.252,820397.6697,21
+55191,1677584.443,1270825.766,818571.8419,21
+55192,1674678.427,1265124.108,818978.4736,21
+55193,1670455.688,1263653.239,817516.9536,21
+55194,1671073.073,1258879.804,816387.227,21
+55195,1663441.72,1257146.349,814997.8441,21
+55196,1663396.844,1252545.433,815245.2842,21
+55197,1659318.91,1249401.29,813935.7221,21
+55198,1655410.012,1246573.721,813255.9862,21
+55199,1653464.748,1243448.346,812387.0848,21
+55200,1648667.112,1239584.098,810508.1028,21
+55201,1417132.379,1004041.215,493609.5123,21
+55202,1398883.485,985967.9,479348.7176,21
+55203,1392040.501,978044.7708,474294.6791,21
+55204,1383563.217,972757.8109,469534.2525,21
+55205,1378207.033,968624.8563,464616.4899,21
+55206,1372444.333,961549.8857,460767.0255,21
+55207,1364677.762,958953.7882,455834.1239,21
+55208,1361118.49,951544.9267,452599.4164,21
+55209,1354841.013,948391.4574,448617.8023,21
+55210,1349583.939,944323.3898,444843.5178,21
+55211,1344235.331,938220.6294,441698.1659,21
+55212,1338471.348,935573.923,437637.8829,21
+55213,1334058.84,930852.0993,434610.9889,21
+55214,1328789.669,928876.4193,431861.8785,21
+55215,1322732.408,924987.4248,428032.5251,21
+55216,1319206.031,921645.7669,425630.0706,21
+55217,1312426.014,918703.1157,422269.9208,21
+55218,1309834.709,915722.2862,419513.9299,21
+55219,1302456.613,912008.1786,416154.5429,21
+55220,1299501.666,909315.0919,413763.2496,21
+55221,1293376.501,905428.9626,1118929.937,21
+55222,1289859.582,903844.9241,314698.6759,21
+55223,1284055.079,898683.6286,684024.1188,21
+55224,1280214.301,897224.7917,284214.1099,21
+55225,1275880.192,893814.3857,571362.2497,21
+55226,1270558.308,890304.2989,425681.8533,21
+55227,1266638.985,887551.8422,380739.6713,21
+55228,1261575.724,884929.6549,403168.1832,21
+55229,1257961.415,881013.6372,395290.4417,21
+55230,1252105.905,878688.4164,389998.4773,21
+55231,1248203.492,875320.4665,388256.7585,21
+55232,1245107.682,872758.0732,385266.8493,21
+55233,1239570.38,869620.3014,382800.7404,21
+55234,1235661.594,866669.8311,381159.7612,21
+55235,1232650.385,863421.928,377941.5825,21
+55236,1227851.506,861257.3233,376409.5763,21
+55237,1224008.364,857403.6036,373747.7155,21
+55238,1220756.918,855177.9723,371815.3468,21
+55239,1216343.912,851771.5909,370187.8147,21
+55240,1211639.333,849493.2599,367021.3257,21
+55241,1208885.3,846244.8936,366328.571,21
+55242,1204065.84,843368.6833,363277.5886,21
+55243,1199659.812,840072.4121,361386.2094,21
+55244,1196964.082,838195.849,360043.2382,21
+55245,1191256.576,834344.2837,357288.5519,21
+55246,1189612.364,831882.4468,355415.5584,21
+55247,1182869.634,829089.2719,353970.6567,21
+55248,1182228.121,826401.7075,351762.3732,21
+55249,1174849.315,823451.51,349492.8288,21
+55250,1174078.576,820552.2548,348750.4591,21
+55251,1168012.761,817294.5833,346016.3679,21
+55252,1164174.049,815268.1022,344360.0431,21
+55253,1162297.516,811709.2039,342895.1298,21
+55254,1155734.911,809072.6589,341283.7096,21
+55255,1153266.612,806885.5547,339064.0794,21
+55256,1149769.314,803311.099,337435.9547,21
+55257,1144339.886,800879.2729,336086.1528,21
+55258,1142335.238,797927.342,333567.186,21
+55259,1136933.374,795551.6231,333110.3819,21
+55260,1134634.921,791900.2845,330154.5716,21
+55261,1128934.456,792741.532,330075.7483,21
+55262,1123908.561,792356.7718,327770.3094,21
+55263,1120112.789,792396.9991,326831.1442,21
+55264,1116692.031,792126.3386,325664.8726,21
+55265,1110065.97,792129.4011,324173.0061,21
+55266,1107635.472,792317.2615,323140.6766,21
+55267,1102342.774,791994.906,321859.597,21
+55268,1098779.884,792272.8823,320576.5267,21
+55269,1093311.262,791716.677,319330.739,21
+55270,1090045.729,792428.5964,318125.0904,21
+55271,1086193.962,792198.198,317157.2868,21
+55272,1080063.732,791957.5899,315650.1847,21
+55273,1078238.248,792585.9661,314431.584,21
+55274,1073123.455,791774.4427,313400.0162,21
+55275,1069123.018,793047.0324,312432.0933,21
+55276,1065376.505,792704.2212,311036.4369,21
+55277,1060799.929,792991.254,309974.5279,21
+55278,1056341.915,793001.9004,309107.2059,21
+55279,1053257.488,792885.48,307644.6507,21
+55280,1047559.393,793000.5615,306732.4108,21
+55281,1045161.895,793010.2191,305605.1605,21
+55282,1040555.15,793217.8187,304649.1818,21
+55283,1035835.028,792667.798,303514.7188,21
+55284,1033358.582,793790.0139,302348.2604,21
+55285,1028160.987,792682.4165,301415.8583,21
+55286,1024427.109,793516.6114,300278.5935,21
+55287,1021450.346,793097.7178,299404.0173,21
+55288,1016755.142,778998.3993,298367.8144,21
+55289,1013381.356,775140.2046,297246.9053,21
+55290,1009464.555,775277.3652,296275.1383,21
+55291,1006014.916,772878.1828,295055.3835,21
+55292,1002728.398,773563.375,293022.3427,21
+55293,998642.0026,772457.1036,292052.9645,21
+55294,996251.4026,772815.1505,290092.2928,21
+55295,990991.7763,771644.4427,287841.037,21
+55296,989089.5169,771810.0154,285708.3432,21
+55297,984966.9076,771145.5136,283895.7553,21
+55298,982464.5013,771305.8453,282603.2072,21
+55299,980483.2271,771157.0222,280960.6303,21
+55300,977805.5471,770371.1274,279439.8282,21
+55301,976085.3543,771362.7548,276728.8612,21
+55302,973592.016,769787.2111,274805.6266,21
+55303,972350.4147,771056.9215,273778.3634,21
+55304,968898.1589,769836.0646,271601.7405,21
+55305,968790.6977,770333.2957,270422.2952,21
+55306,965291.3866,770188.3519,269060.3395,21
+55307,964467.5409,769693.5205,267288.5843,21
+55308,961210.6751,770088.0795,265623.3652,21
+55309,960836.1198,769586.9267,264272.9286,21
+55310,957976.4228,769849.5402,262594.0739,21
+55311,956122.6346,769887.2893,261224.7594,21
+55312,953477.1196,769555.3799,259337.2986,21
+55313,954070.828,769761.5448,256062.8352,21
+55314,949633.1571,769737.4384,253923.5882,21
+55315,948581.646,769341.855,252518.5007,21
+55316,946981.1995,769814.9109,250770.2825,21
+55317,945008.7428,769503.163,249009.3292,21
+55318,943287.5209,769070.7167,247963.8741,21
+55319,941616.0577,769971.1801,245397.9148,21
+55320,939205.1948,769535.5482,244404.2316,21
+55321,940100.7423,770573.9873,249449.8912,21
+55322,937700.1297,767648.0047,248497.2856,21
+55323,937631.5542,764332.3865,246476.1237,21
+55324,935209.8923,761622.409,245304.6216,21
+55325,934570.5897,758027.5907,243441.7064,21
+55326,933217.1571,755502.3894,242203.2189,21
+55327,931187.5416,751765.0304,240403.9951,21
+55328,930589.756,748882.6996,238839.9459,21
+55329,928595.3797,745471.631,237771.1255,21
+55330,927768.4106,743063.5945,235913.4635,21
+55331,926888.764,739142.1792,234247.9519,21
+55332,925094.4115,736367.0829,232958.0401,21
+55333,924123.4284,733426.36,231671.1609,21
+55334,923388.501,729886.6699,229695.4071,21
+55335,921352.9013,727434.8569,228538.8801,21
+55336,920954.3719,723792.2634,227241.5581,21
+55337,919077.8099,720521.4926,225655.0102,21
+55338,917537.5919,717761.9828,223969.6559,21
+55339,917666.7711,714665.3617,222576.5332,21
+55340,916116.3968,711048.879,221146.9667,21
+55341,914936.2986,708780.0665,219382.3255,21
+55342,913479.1159,704824.4765,218166.8542,21
+55343,912634.7885,702469.4894,216540.844,21
+55344,912113.2334,698849.9622,214938.8323,21
+55345,909525.8752,695827.6412,213374.3018,21
+55346,909725.4074,692976.7995,212148.4632,21
+55347,908590.6626,689342.9221,210107.3066,21
+55348,907475.2827,687107.58,208626.9859,21
+55349,906520.8818,683105.3122,207435.5322,21
+55350,904850.4857,680518.0263,205397.1903,21
+55351,904557.5104,676987.2742,204905.5061,21
+55352,903890.1626,674422.1719,203985.0043,21
+55353,901256.6121,670697.939,203019.5401,21
+55354,901551.461,668218.715,202976.3429,21
+55355,900184.2623,664314.2747,201572.2319,21
+55356,899063.6536,662087.0194,201356.775,21
+55357,898078.1801,658060.7589,200360.233,21
+55358,896956.0119,656052.2475,199873.3598,21
+55359,895894.173,652146.1448,199458.6873,21
+55360,893835.8118,649529.9894,198690.5249,21
+55361,894422.4938,646049.0315,197981.5894,21
+55362,892033.645,643308.0389,197785.4033,21
+55363,892916.586,639927.7753,196970.6522,21
+55364,890649.8478,637061.4891,196980.4248,21
+55365,890566.8727,634283.365,196019.4537,21
+55366,889708.1558,630605.0862,195677.2944,21
+55367,887186.0751,627931.2572,195160.6487,21
+55368,887422.3281,624460.4214,195177.4243,21
+55369,886064.2172,621635.2179,194046.1952,21
+55370,884740.1003,618456.1427,194137.8603,21
+55371,884063.2235,615449.282,193645.5263,21
+55372,882342.572,612444.5487,193352.5781,21
+55373,882265.3864,609021.0921,192784.6894,21
+55374,879920.2869,606477.8329,192596.6561,21
+55375,880408.0952,602260.3162,192337.2962,21
+55376,877451.2206,600549.0007,191925.7344,21
+55377,877494.4629,595099.0297,191563.72,21
+55378,875245.959,591990.3432,191481.5829,21
+55379,875271.5874,588709.4886,190929.4687,21
+55380,873506.3579,584945.0529,190914.3575,21
+55381,871543.8575,580124.8956,183709.1733,21
+55382,868747.4129,577006.0227,183256.7887,21
+55383,868735.6612,576222.3175,183171.5034,21
+55384,866140.4384,573570.2591,182675.5631,21
+55385,866388.9235,572288.0615,182311.0116,21
+55386,865415.1241,570140.0838,181773.872,21
+55387,862630.865,568608.4983,181689.3223,21
+55388,863342.5648,567319.8451,181347.5595,21
+55389,861780.8437,564475.3752,181382.4769,21
+55390,860810.3336,563936.7836,182390.8914,21
+55391,859227.5815,560879.5396,182976.5775,21
+55392,858249.7782,560248.8937,182965.012,21
+55393,857778.1125,558092.2372,182583.0169,21
+55394,856049.5205,556035.1853,182555.8008,21
+55395,850497.6224,554723.1656,182579.8403,21
+55396,851547.156,552624.0064,182388.8146,21
+55397,849778.1593,551473.6303,182048.1559,21
+55398,848246.2662,549628.8229,182519.8339,21
+55399,846806.3378,547007.2177,182231.2638,21
+55400,845725.6789,546319.7406,181970.3248,21
+55401,843802.4302,543791.7142,182266.0181,21
+55402,842913.8045,542817.9483,181827.9185,21
+55403,841438.2203,540599.1397,181992.9877,21
+55404,839631.9675,538811.6579,182166.2077,21
+55405,838414.2138,537280.7871,182036.3746,21
+55406,837289.1383,535840.8836,181754.0359,21
+55407,835144.6592,533692.9811,182017.4007,21
+55408,834407.367,531621.7461,181828.382,21
+55409,832578.2919,530776.4067,182144.7512,21
+55410,830783.0516,529029.0367,181919.5523,21
+55411,829746.8939,527338.8629,181126.9551,21
+55412,827587.3036,525401.2037,179980.395,21
+55413,826358.8206,523773.4554,178667.4611,21
+55414,824226.4487,521492.2773,178181.2749,21
+55415,822999.7771,519572.7935,176280.6452,21
+55416,820910.7563,518054.1593,175869.5584,21
+55417,818915.849,516087.8536,172654.1169,21
+55418,818021.6229,513634.8788,171599.1618,21
+55419,815723.6125,512068.7825,170294.9035,21
+55420,813811.3558,510320.2079,168978.84,21
+55421,812630.1684,508151.8744,168150.5912,21
+55422,811336.0647,506442.4647,166282.0616,21
+55423,809902.7111,504166.7117,165810.3961,21
+55424,808159.3659,502308.2014,163973.6552,21
+55425,806176.743,500212.458,163851.5353,21
+55426,804853.436,498706.7838,163130.4133,21
+55427,802964.5034,496470.95,162529.6429,21
+55428,800835.3575,494457.0456,161625.2509,21
+55429,798969.2321,492758.5954,161343.7709,21
+55430,797119.7136,488849.7705,160233.8089,21
+55431,795557.1012,485912.8086,159831.8777,21
+55432,793395.367,484070.4336,159148.2266,21
+55433,792057.8381,481924.5972,158947.2066,21
+55434,790110.0976,479760.8317,157836.0095,21
+55435,788188.6019,478013.8765,157510.8624,21
+55436,786578.1077,475860.8446,156909.1967,21
+55437,784771.139,473707.225,156502.193,21
+55438,783032.4655,472022.5102,155714.2821,21
+55439,781012.0243,469343.9875,155262.1957,21
+55440,779672.6173,467772.1059,154787.5668,21
+55441,806928.349,498630.563,177632.6367,21
+55442,806453.476,498622.8789,176741.2337,21
+55443,805861.4941,499880.7751,177169.4049,21
+55444,805124.1382,500633.6303,175763.1596,21
+55445,822627.4068,500657.3923,175575.7491,21
+55446,835388.7626,501601.1764,175173.7605,21
+55447,821556.7571,502056.6271,174432.4879,21
+55448,825363.4283,503310.2374,173901.1438,21
+55449,824663.0178,503443.8898,172990.4007,21
+55450,823979.5349,504148.3434,172947.3998,21
+55451,823144.3867,504386.2518,171469.5278,21
+55452,821628.4252,505497.0858,171155.051,21
+55453,822001.749,505522.0098,170487.7233,21
+55454,820455.4069,506294.5208,169916.7535,21
+55455,819471.6553,506548.1487,169360.29,21
+55456,819152.4559,507140.7415,169004.9808,21
+55457,817180.3078,507966.996,167898.1723,21
+55458,817148.9511,507828.6485,167766.6258,21
+55459,816459.9279,508799.2911,167018.8437,21
+55460,815246.0874,508731.4322,166378.6504,21
+55461,815135.5031,509028.3942,165838.5293,21
+55462,813489.5509,509224.2834,164978.191,21
+55463,812645.2105,509727.0976,164686.8037,21
+55464,812126.191,510397.8873,163900.7038,21
+55465,811318.6451,510486.6827,163135.8812,21
+55466,809580.9002,511103.8951,162844.6972,21
+55467,809953.9587,511180.7496,161997.1138,21
+55468,808678.3471,511998.7874,161561.6564,21
+55469,807437.2779,512270.685,160898.2465,21
+55470,806764.9418,512156.9303,160152.2127,21
+55471,805686.9364,513564.71,159824.4309,21
+55472,804844.0922,514290.0897,159641.479,21
+55473,805055.5137,515102.6933,158688.7298,21
+55474,804951.9759,515908.5729,158943.5227,21
+55475,803829.7204,516829.2442,157882.9571,21
+55476,803189.1981,518069.1374,157849.9391,21
+55477,804166.8049,518395.9677,157418.2385,21
+55478,801533.3007,520034.2811,156976.3829,21
+55479,802870.5088,520890.4508,156697.7021,21
+55480,801056.3766,521909.2935,156163.792,21
+55481,801514.0368,522734.1777,155909.0633,21
+55482,801283.8935,523842.7553,155337.0888,21
+55483,801163.3986,525219.5702,155156.6505,21
+55484,799463.7594,525617.962,154834.6918,21
+55485,801332.6484,527494.5844,154114.3518,21
+55486,799179.7712,527940.8853,153892.5378,21
+55487,799762.8901,529772.8511,153646.9524,21
+55488,799034.0264,530234.2462,153199.3426,21
+55489,798984.0173,531542.0463,152840.4072,21
+55490,799433.9195,532810.4071,152599.6193,21
+55491,798847.5869,533840.6148,152207.8672,21
+55492,798409.2564,535278.1093,151732.9594,21
+55493,799252.9657,536017.9013,151385.2245,21
+55494,798339.5127,537689.825,150734.8115,21
+55495,798396.6619,538444.3101,150293.0229,21
+55496,798297.4296,539697.3,149758.2902,21
+55497,797744.3754,541400.6512,149432.3255,21
+55498,799076.5622,541915.5521,149216.8912,21
+55499,797836.8154,543559.6046,148454.7156,21
+55500,798834.6375,544961.7155,148554.0936,21
+55501,761833.6713,511642.3882,125646.931,21
+55502,762016.9857,509200.4114,124998.9426,21
+55503,762441.57,506363.8459,124456.9307,21
+55504,762722.4265,504356.5776,123562.591,21
+55505,762825.1786,501129.8005,123282.076,21
+55506,763653.441,499416.0413,122557.0588,21
+55507,763198.4687,496274.7755,121871.9599,21
+55508,764460.6718,494023.7324,121659.7181,21
+55509,764415.1115,490942.9214,120945.4242,21
+55510,764996.9322,490822.2058,120561.7589,21
+55511,765405.5738,487769.8651,119845.5307,21
+55512,765601.6391,485807.9925,119357.4368,21
+55513,766307.8198,483407.234,118915.1999,21
+55514,766716.0872,480804.8849,118449.9668,21
+55515,767448.1243,478257.4087,117877.9503,21
+55516,767592.026,475859.0111,117222.3492,21
+55517,768181.6599,473605.4717,116799.9826,21
+55518,768918.3163,470684.4866,116200.8875,21
+55519,768980.1866,469001.6718,115979.729,21
+55520,769957.1095,465864.0723,115127.6282,21
+55521,770590.428,464301.9612,114957.0246,21
+55522,770766.6094,460676.1189,59383.55554,21
+55523,771358.3167,459690.1016,59761.20049,21
+55524,772458.3931,456285.2836,58992.55662,21
+55525,772180.8617,454272.5585,59392.61323,21
+55526,773420.9799,451871.9527,59182.18911,21
+55527,773627.3435,449375.1773,59028.36287,21
+55528,774396.0413,447365.0206,58729.11539,21
+55529,774954.0823,444542.8782,58748.85598,21
+55530,775352.8915,442432.6399,58339.76134,21
+55531,775758.6362,439839.8143,58341.99123,21
+55532,776716.9888,437919.6788,58034.98868,21
+55533,776512.3691,434670.6355,57767.56936,21
+55534,778033.7355,432820.3853,57273.90172,21
+55535,777487.0833,430004.8536,57269.63289,21
+55536,778222.5259,427968.9709,56914.55943,21
+55537,779477.0535,425160.1498,56456.71008,21
+55538,778665.952,422855.2378,56167.49388,21
+55539,781130.3996,420498.8054,56068.63564,21
+55540,781690.6669,417919.9759,55457.43153,21
+55541,782669.2017,415312.3509,55353.68983,21
+55542,782246.537,413060.6727,54846.03787,21
+55543,783701.0832,410972.554,54454.00225,21
+55544,783279.079,407639.1462,53989.74515,21
+55545,784166.4065,406564.0285,53926.27954,21
+55546,784900.6201,403378.5228,53171.58253,21
+55547,784970.0602,401648.7801,52807.62258,21
+55548,785487.9176,398690.2981,52427.89039,21
+55549,786037.4268,397637.3239,52146.07494,21
+55550,786271.0676,394448.5523,51420.3047,21
+55551,787161.508,391853.86,51003.35283,21
+55552,787129.6814,388929.5071,50209.21139,21
+55553,787567.5875,386894.063,49380.18222,21
+55554,788377.1629,384569.6062,48907.64337,21
+55555,788255.2532,381429.1338,48265.17322,21
+55556,788963.7465,379762.7996,47984.94908,21
+55557,789354.9645,377180.0998,47250.67194,21
+55558,789640.5993,374341.0316,46556.04588,21
+55559,789944.8835,372525.012,46438.5396,21
+55560,790439.513,369653.83,45475.7086,21
+55561,795848.7695,374138.2192,52462.76317,21
+55562,796291.8401,373731.182,52222.49954,21
+55563,796662.7524,372594.2057,51636.36051,21
+55564,797245.7715,373463.9814,51444.44229,21
+55565,797828.3367,373087.7803,50766.82243,21
+55566,798382.3566,371196.2058,50637.52809,21
+55567,798445.3022,370822.1081,49795.12114,21
+55568,799139.157,370544.1973,49711.4162,21
+55569,799565.0455,369824.5283,49149.20711,21
+55570,799906.6321,369449.6518,48552.23005,21
+55571,800448.7487,368837.2426,48582.04928,21
+55572,801016.4058,368057.4035,47212.11981,21
+55573,801061.2317,367843.6484,47584.75292,21
+55574,801667.3212,367455.5127,46752.98386,21
+55575,802160.462,366512.8357,46310.52398,21
+55576,802744.1131,366519.2175,45736.2304,21
+55577,802785.5684,365425.5312,45615.10052,21
+55578,803588.753,364722.1314,44802.20305,21
+55579,803938.4516,365317.677,44458.73909,21
+55580,803895.9674,364513.5362,43966.25141,21
+55581,805158.8348,362988.6559,43548.43254,21
+55582,804778.2989,362962.1166,43382.50904,21
+55583,805852.648,361929.7025,43191.50776,21
+55584,805630.7702,361796.8878,43343.99928,21
+55585,806722.8708,360990.6729,43153.45671,21
+55586,806794.2326,360659.24,43169.87914,21
+55587,807182.7893,360321.4807,43268.26195,21
+55588,807705.9272,359425.3944,43039.52322,21
+55589,808172.2701,359282.6367,43191.90635,21
+55590,808162.1107,358404.4777,43356.47799,21
+55591,809322.7794,358205.4173,42998.86341,21
+55592,809859.8799,357342.1667,43206.61196,21
+55593,810472.0873,357475.1683,43082.11839,21
+55594,811509.6606,356102.6069,43434.87856,21
+55595,812153.931,355982.6912,43116.49233,21
+55596,812840.3735,355479.4622,43320.46774,21
+55597,813740.5338,354656.5033,43344.28701,21
+55598,814576.8714,354534.2963,43201.4417,21
+55599,815397.9154,353631.9896,43214.86053,21
+55600,817728.2498,353213.6395,43018.29766,21
+55601,818988.1804,352671.0575,42668.23811,21
+55602,819646.7263,352161.2984,42784.73793,21
+55603,819319.4979,351241.6273,42720.49424,21
+55604,820016.3386,351354.6535,42735.99481,21
+55605,820104.1704,350301.8449,42947.68913,21
+55606,820275.7627,349963.192,42611.64149,21
+55607,821128.8734,349335.2337,42821.48797,21
+55608,820830.0911,348717.9641,42639.16217,21
+55609,821372.7879,348243.3793,43050.36763,21
+55610,821878.6123,348525.3187,42724.19661,21
+55611,821903.0031,348150.1234,42876.3656,21
+55612,822414.8342,346715.3118,42773.9006,21
+55613,822797.1325,345723.2051,42862.82852,21
+55614,822980.8057,345662.8617,42998.23226,21
+55615,823359.0411,344709.9912,42801.64703,21
+55616,823916.2022,344678.3631,42958.63965,21
+55617,824175.3713,343572.5024,42883.52952,21
+55618,824779.4048,343043.1687,43076.4168,21
+55619,824770.8969,341616.5907,42941.28647,21
+55620,825702.8342,340463.092,43124.58448,21
+55621,819809.9443,335640.2834,34726.7943,21
+55622,820180.3822,335790.7467,34750.55664,21
+55623,820072.9838,335394.3889,34517.08548,21
+55624,819487.4063,336088.9764,34758.74923,21
+55625,820077.8074,335458.035,34682.02618,21
+55626,820069.1518,336043.8139,34470.75571,21
+55627,819565.7549,335333.6556,34806.04397,21
+55628,820155.3988,336036.2102,34402.78363,21
+55629,819723.2321,335570.0119,34736.30358,21
+55630,819709.2634,335896.735,34617.44836,21
+55631,820976.0434,335853.9482,34679.95732,21
+55632,820379.2011,335848.3848,34665.61075,21
+55633,820858.0341,336153.7212,34480.12014,21
+55634,820921.0666,335930.4819,34788.92393,21
+55635,820761.7542,336126.6023,34734.54549,21
+55636,821110.2274,335820.2582,34615.3899,21
+55637,821152.863,336446.1554,34754.54183,21
+55638,821511.2061,335719.6808,34556.14446,21
+55639,821094.6121,335026.8013,34774.23461,21
+55640,821503.2472,335063.7578,34786.99696,21
+55641,821843.7091,334298.8078,34609.87621,21
+55642,821473.8507,334555.4719,34832.25269,21
+55643,821837.9212,335305.2835,34918.75248,21
+55644,822190.5692,334275.6947,34772.44153,21
+55645,822125.0348,335118.8025,34872.08329,21
+55646,822522.475,334410.1861,34884.53327,21
+55647,822539.7617,335084.5796,34706.30087,21
+55648,822348.3959,334648.1252,35034.61863,21
+55649,823420.7877,335146.4411,35121.94101,21
+55650,822800.9406,335098.4967,34564.27699,21
+55651,823452.4553,334778.9138,35391.77271,21
+55652,823115.995,335810.567,34781.19576,21
+55653,823681.9489,335075.9439,35422.93396,21
+55654,823459.9776,335242.7274,35025.17348,21
+55655,823621.7467,335972.3312,35270.59698,21
+55656,823892.7595,335236.5235,35373.92858,21
+55657,823883.6241,336272.3337,35301.32828,21
+55658,824385.4481,335700.3565,35525.57322,21
+55659,823927.564,336175.0665,35546.17969,21
+55660,824605.3122,336103.3222,35635.54769,21
+55661,824520.9798,336878.9703,35619.55616,21
+55662,824571.2124,336343.6536,35587.40011,21
+55663,825174.0499,337196.5818,36155.08164,21
+55664,824787.5229,337386.2004,35739.5524,21
+55665,825217.3616,337751.3489,35987.69059,21
+55666,825684.9902,337430.9838,36104.61416,21
+55667,825034.2821,338462.6775,36206.54986,21
+55668,826058.6301,337970.3687,36188.92408,21
+55669,825809.4773,338219.4687,36332.40788,21
+55670,826227.2997,339036.5242,36435.48127,21
+55671,826379.2142,338495.6478,36616.96757,21
+55672,826346.5714,338983.7149,36348.95336,21
+55673,826654.209,339155.9048,36996.97018,21
+55674,827043.4625,339534.4752,36593.30526,21
+55675,827289.9733,339411.2471,36923.23093,21
+55676,827003.2017,339877.374,36988.15229,21
+55677,827812.6274,340286.4065,37155.84227,21
+55678,828050.9544,340028.6016,37140.99346,21
+55679,827661.5533,340594.0652,37218.19935,21
+55680,828800.824,340984.1493,37493.55585,21
+55681,828335.849,343389.7455,37504.94028,21
+55682,828821.5502,346655.2484,37742.81779,21
+55683,829084.7585,349219.7926,38056.67391,21
+55684,829336.444,352199.4871,38030.49389,21
+55685,829777.8066,355396.1791,38455.24496,21
+55686,829832.2131,357751.9951,38504.40908,21
+55687,830215.2854,360695.5207,38715.17984,21
+55688,830438.0711,364135.9698,38995.26623,21
+55689,830857.6849,366354.8737,39206.41498,21
+55690,830768.5739,369379.5636,39429.84069,21
+55691,831524.9205,372907.2262,39522.67139,21
+55692,831525.6412,374612.3321,39922.12278,21
+55693,831905.1015,378663.0993,39988.88173,21
+55694,832378.1661,380800.2945,40196.51169,21
+55695,832295.4443,384197.4276,40680.4699,21
+55696,833004.2614,386365.2496,40492.56575,21
+55697,833064.4032,389257.7232,40956.22221,21
+55698,833542.8131,392249.9682,41199.67858,21
+55699,833779.4169,395090.9204,41421.95189,21
+55700,834293.0198,398441.4091,41693.14784,21
+55701,834458.903,400783.4208,41732.55955,21
+55702,834704.2895,403680.1715,42158.28084,21
+55703,835184.0337,407234.9,42225.12152,21
+55704,835494.0276,409484.9981,42681.87998,21
+55705,835695.4843,412805.3233,42696.12305,21
+55706,836622.0118,415717.1681,43189.93882,21
+55707,836284.2605,418066.4414,43206.75787,21
+55708,837245.7096,421859.5737,43644.60557,21
+55709,837175.155,424164.7887,43728.36605,21
+55710,838015.2051,427213.6494,44186.30395,21
+55711,837841.932,429946.8417,166223.4462,21
+55712,838367.5119,433049.2688,164597.8542,21
+55713,838826.3685,435861.2331,163159.1415,21
+55714,838782.9605,438348.3971,161577.5114,21
+55715,839073.3661,441521.8973,159855.6408,21
+55716,839661.084,443793.3084,158446.5797,21
+55717,839522.8773,447153.9292,157077.1875,21
+55718,839946.4756,449608.4562,155685.4982,21
+55719,841289.5371,452192.5465,154081.1174,21
+55720,840593.7892,455619.2095,152985.795,21
+55721,841270.8566,457877.5584,151179.1431,21
+55722,841774.7791,460726.1872,150387.4481,21
+55723,842097.7271,463739.7337,148758.9901,21
+55724,842170.5684,466374.6389,147644.5998,21
+55725,842674.1598,468849.5654,146549.5496,21
+55726,842939.3707,472222.3296,145025.754,21
+55727,843350.0159,474441.9745,144095.6781,21
+55728,843503.5519,477699.2247,142762.5034,21
+55729,844073.8781,480062.456,141653.5583,21
+55730,843990.5129,483081.9979,140697.2992,21
+55731,844822.5096,485752.5266,139449.8565,21
+55732,844718.5013,488820.9204,138513.0506,21
+55733,845342.5757,490743.142,137339.2185,21
+55734,845451.6887,494660.8948,136511.6697,21
+55735,845777.4801,496476.661,135494.3686,21
+55736,846204.4432,499645.8926,134509.1465,21
+55737,846537.9385,502444.3914,133579.2122,21
+55738,846481.8811,504718.9405,132732.0168,21
+55739,847506.9714,508239.3297,131669.7229,21
+55740,847141.0842,510788.4997,131069.7403,21
+55741,889278.9202,565489.3681,165744.5027,21
+55742,905328.0297,568758.2543,167818.8607,21
+55743,915754.5488,569002.6512,167685.7384,21
+55744,910353.7899,579180.9345,169222.5287,21
+55745,914692.1432,579574.473,168043.3881,21
+55746,916657.7313,578282.1237,168275.8226,21
+55747,918915.0762,579346.0853,168641.6837,21
+55748,920969.3536,580654.5739,167970.5277,21
+55749,924173.0714,580807.5191,168307.8081,21
+55750,925487.4241,581179.5597,168290.6546,21
+55751,927903.491,582414.6274,168022.021,21
+55752,929902.1812,582237.0729,168260.6983,21
+55753,937436.7097,583383.6582,168083.9221,21
+55754,936946.2493,584280.1482,168760.028,21
+55755,974498.9419,583599.936,168311.3558,21
+55756,967514.7529,583818.4186,168558.1319,21
+55757,970064.0676,585278.3385,168709.2195,21
+55758,974695.6441,584350.7824,168647.5501,21
+55759,978228.218,585696.2821,168803.6647,21
+55760,980783.1158,585618.4485,169058.4192,21
+55761,984427.3799,585641.0904,168813.1364,21
+55762,985819.044,586655.8755,169203.3506,21
+55763,989188.4676,586256.0818,169089.2093,21
+55764,991740.5952,586994.9365,169412.743,21
+55765,994160.6026,587248.2179,169617.7415,21
+55766,996884.557,587470.1989,169526.4475,21
+55767,999819.3857,588540.134,169935.616,21
+55768,1001954.768,587292.7711,169910.2913,21
+55769,1004995.996,587607.7461,170314.1747,21
+55770,1008039.542,587974.5301,170280.7509,21
+55771,1010694.352,588475.9247,170634.1794,21
+55772,1013530.152,588191.9462,171073.2334,21
+55773,1014894.875,588593.0898,171563.0213,21
+55774,1018507.544,588428.1708,172140.9182,21
+55775,1018634.993,588506.4697,172146.4903,21
+55776,1020650.064,589032.0206,173063.796,21
+55777,1023386.593,588602.6147,173095.1437,21
+55778,1024897.298,589388.6512,173913.1368,21
+55779,1025321.287,589374.2352,174290.3584,21
+55780,1029169.132,589590.1417,174837.2113,21
+55781,1029301.748,589295.507,176275.5706,21
+55782,1031876.277,589205.2391,178364.8938,21
+55783,1032905.291,589226.0014,180303.6524,21
+55784,1034967.813,589261.8166,182218.8616,21
+55785,1036861.666,589529.1463,184254.8261,21
+55786,1037864.589,588719.9477,186143.4642,21
+55787,1038944.087,590146.1855,188627.5121,21
+55788,1041380.189,588576.9898,190330.2006,21
+55789,1041708.882,589913.9276,192688.8423,21
+55790,1044412.512,589142.117,194806.6914,21
+55791,1045358.335,589399.9461,197234.3937,21
+55792,1045713.7,590624.2209,198973.9188,21
+55793,1048585.28,589361.7755,201785.3047,21
+55794,1049047.678,589363.8232,204023.7078,21
+55795,1051101.69,589663.1486,206176.7178,21
+55796,1052221.555,589076.3664,208945.619,21
+55797,1052875.398,589128.6834,210905.5805,21
+55798,1054947.468,589705.1865,213384.4707,21
+55799,1055922.746,588886.8872,216304.1022,21
+55800,1056607.158,589137.7854,218353.2956,21
+55801,1119178.26,610628.5618,232211.925,21
+55802,1122723.393,610842.3974,232363.7435,21
+55803,1127785.212,610983.5823,249770.9646,21
+55804,1127907.394,610750.8432,205287.0848,21
+55805,1130275.841,610323.2301,345523.9702,21
+55806,1132274.274,610898.5863,223163.9694,21
+55807,1133506.909,636004.0203,245635.6186,21
+55808,1135890.013,637399.1739,245521.8184,21
+55809,1137032.538,632645.8636,246766.0466,21
+55810,1137959.715,637210.2836,248224.6323,21
+55811,1140882.853,636880.369,250823.4462,21
+55812,1141648.539,638197.4077,853866.1914,21
+55813,1142732.986,638227.2743,210821.6486,21
+55814,1145310.612,640573.7304,431996.8016,21
+55815,1145114.661,638617.2882,198952.436,21
+55816,1148521.081,640888.4188,371223.3764,21
+55817,1148542.329,640056.185,284404.2401,21
+55818,1149876.662,640981.8058,259085.2792,21
+55819,1152520.569,642290.2798,276367.8783,21
+55820,1152092.173,640681.1621,274673.396,21
+55821,1154041.994,643029.1178,275662.281,21
+55822,1156773.803,642340.4277,281644.6557,21
+55823,1155695.591,642765.5239,284407.7814,21
+55824,1157975.954,643374.9521,286081.9597,21
+55825,1159193.716,642723.9733,288787.7739,21
+55826,1160639.166,644005.057,291869.4477,21
+55827,1161574.969,643357.0196,293827.3224,21
+55828,1162670.498,643971.2758,297007.0673,21
+55829,1163107.949,643849.4633,299123.1783,21
+55830,1165710.484,643598.8939,301810.2861,21
+55831,1165697.515,645138.6463,302337.7475,21
+55832,1168152.252,643088.9432,477632.2495,21
+55833,1167547.753,645317,246283.6354,21
+55834,1170103.243,643962.2602,418665.6145,21
+55835,1169947.013,644559.1594,356817.1802,21
+55836,1172213.31,644759.6398,382202.7655,21
+55837,1172358.969,643936.5024,254057.4854,21
+55838,1173745.295,645151.237,444256.3983,21
+55839,1174268.256,644784.5726,321936.3167,21
+55840,1175527.88,643816.3319,312840.6866,21
+55841,1176944.089,644884.9883,327945.8858,21
+55842,1177703.137,644749.243,327955.5903,21
+55843,1178811.052,643612.3573,330425.7604,21
+55844,1179502.355,645498.8794,333727.6233,21
+55845,1180005.742,643223.7155,336231.1345,21
+55846,1182533.273,644774.6122,993129.1743,21
+55847,1181003.767,643585.5877,304758.4615,21
+55848,1184229.005,644592.4145,573601.3401,21
+55849,1183916.597,643789.757,290429.4881,21
+55850,1185098.71,643173.2671,480624.7633,21
+55851,1186432.153,644085.0626,376985.4892,21
+55852,1185967.733,643419.6271,345908.2061,21
+55853,1188812.235,642783.9482,367317.1005,21
+55854,1188017.585,643860.613,365439.1348,21
+55855,1189782.663,641822.2116,367070.3403,21
+55856,1190026.501,643406.1271,368832.871,21
+55857,1191850.286,642015.9257,371836.7364,21
+55858,1191107.548,642729.9185,374066.0056,21
+55859,1193735.497,642687.2991,376791.98,21
+55860,1193258.342,640611.2922,379387.1008,21
+55861,1195322.497,645796.1649,382328.93,21
+55862,1195802.175,646748.1417,386416.3879,21
+55863,1198598.45,650007.5756,384989.0336,21
+55864,1199061.807,652756.029,396859.8839,21
+55865,1200227.097,655030.4446,394770.3974,21
+55866,1201548.354,656485.161,1098854.736,21
+55867,1202387.396,660667.9606,368035.7309,21
+55868,1202606.277,661387.9164,679965.8861,21
+55869,1205421.05,664976.8232,350058.6859,21
+55870,1205564.379,667299.5312,560641.6696,21
+55871,1206268.326,668178.2233,441475.4964,21
+55872,1208958.17,672605.7162,404912.8599,21
+55873,1208602.417,673801.6503,430209.1654,21
+55874,1210407.67,676974.2092,428689.0442,21
+55875,1210601.8,678706.7313,429725.9935,21
+55876,1212661.356,681420.2702,432757.0704,21
+55877,1212665.815,683852.3829,436176.9561,21
+55878,1215277.324,686243.035,439120.0821,21
+55879,1214751.111,688135.5169,442241.1882,21
+55880,1217200.391,692260.2051,445643.3018,21
+55881,1216419.51,692266.2032,449082.2524,21
+55882,1219494.354,695833.7162,451873.7094,21
+55883,1219368.57,698807.2579,453547.647,21
+55884,1220124.55,699372.7751,460625.7721,21
+55885,1222699.674,702905.5982,461138.0968,21
+55886,1221675.184,705759.6234,465891.0532,21
+55887,1224521.009,706675.92,1216233.954,21
+55888,1223945.235,710215.1338,442998.3262,21
+55889,1225879.184,712169.5462,795155.2255,21
+55890,1226032.974,714630.4405,421614.4403,21
+55891,1228424.93,717510.1499,644832.3503,21
+55892,1227844.843,719238.546,510533.0514,21
+55893,1229617.167,721527.8063,608739.2034,21
+55894,1231322.73,724910.6146,430900.1549,21
+55895,1230717.88,725971.6613,665498.374,21
+55896,1232744.458,728556.2499,500650.5974,21
+55897,1233782.721,731947.0692,484671.2403,21
+55898,1233445.623,732222.6453,502147.6453,21
+55899,1236001.931,736586.3504,501861.8464,21
+55900,1236247.455,738107.4149,503768.6396,21
+55901,1237242.031,739964.796,506540.6027,21
+55902,1238691.54,743219.8905,510195.3341,21
+55903,1238354.457,745294.4924,513563.0806,21
+55904,1241553.115,747105.7169,512290.9146,21
+55905,1239967.425,750254.0534,526322.2976,21
+55906,1242511.256,750988.4082,522362.5506,21
+55907,1242674.732,755585.6965,1312727.925,21
+55908,1244145.792,756313.3735,513494.5951,21
+55909,1243857.892,758471.265,890162.1695,21
+55910,1245929.606,762138.0888,488198.286,21
+55911,1246325.247,763714.8533,713548.548,21
+55912,1247802.701,765629.2313,570801.1354,21
+55913,1248125.943,768566.4658,688829.0579,21
+55914,1248302.79,770515.8995,498183.9914,21
+55915,1251377.578,773044.2268,733380.692,21
+55916,1249719.497,775212.3528,560940.2319,21
+55917,1252736.403,778189.5965,545278.5815,21
+55918,1252785.452,779868.9565,563341.0139,21
+55919,1253617.669,781226.4704,563595.159,21
+55920,1255275.379,785686.6802,566436.6841,21
+55921,1261948.523,793297.0472,579545.9653,21
+55922,1266418.541,792452.6325,587573.2964,21
+55923,1264700.833,793437.4695,591270.3298,21
+55924,1268823.006,794319.4945,595107.3899,21
+55925,1268224.895,792991.1514,604099.1475,21
+55926,1268867.449,794315.5215,606759.9242,21
+55927,1270406.836,793406.6187,612252.7594,21
+55928,1271276.845,793505.6161,1459089.903,21
+55929,1271816.387,793283.7687,630195.116,21
+55930,1273311.151,794708.3125,1038704.261,21
+55931,1274153.898,792336.0736,602908.225,21
+55932,1274355.952,794192.4983,818617.921,21
+55933,1275468.396,792405.947,666381.7777,21
+55934,1277839.442,793679.2949,619137.6637,21
+55935,1276348.3,792254.1783,651480.9781,21
+55936,1279292.744,793540.8371,649531.4493,21
+55937,1277978.403,792597.8746,652447.0532,21
+55938,1280895.923,791758.0578,656935.3927,21
+55939,1280564.645,793163.8973,661770.1364,21
+55940,1282763.708,791701.1306,666764.6753,21
+55941,1285453.207,791968.4719,671109.7429,21
+55942,1283877.423,791594.2763,676584.3346,21
+55943,1285718.062,792059.5352,680586.4589,21
+55944,1286657.725,791552.7416,686661.5461,21
+55945,1286780.37,791255.5264,765673.4522,21
+55946,1288586.598,792039.2685,1120305.886,21
+55947,1288666.85,791217.5255,690654.648,21
+55948,1289359.683,790149.0736,887198.5869,21
+55949,1290649.014,791656.6871,778119.5896,21
+55950,1291688.274,790726.3377,939613.1832,21
+55951,1291593.311,790400.8756,700933.7989,21
+55952,1292351.964,788391.8336,923847.3863,21
+55953,1294631.958,790501.2999,710959.5399,21
+55954,1293081.99,788570.5018,716249.6865,21
+55955,1295902.725,788326.7823,722509.9863,21
+55956,1296370.034,790023.163,730779.286,21
+55957,1296474.199,786524.222,737382.7575,21
+55958,1297086.383,788832.1218,744209.3384,21
+55959,1298486.552,787951.2254,751198.8212,21
+55960,1298714.741,786795.0847,1668155.455,21
+55961,1299022.43,786841.045,796011.5332,21
+55962,1298074.829,787673.5702,1240293.656,21
+55963,1300996.59,785527.0192,761619.8248,21
+55964,1300930.57,786712.2738,944920.25,21
+55965,1301043.755,786115.2688,782310.5709,21
+55966,1301818.68,785918.4269,1006262.814,21
+55967,1303030.494,784392.5533,773661.4251,21
+55968,1303370.38,784965.085,970602.9173,21
+55969,1304728.909,785560.2728,781405.1386,21
+55970,1304597.739,783040.2606,788945.023,21
+55971,1306576.309,784964.0458,796491.4451,21
+55972,1305870.918,782799.6535,802904.3708,21
+55973,1307787.875,783474.7304,809048.4607,21
+55974,1306889.146,782729.4395,817192.3423,21
+55975,1309754.356,782180.3006,823118.5674,21
+55976,1308559.519,783645.738,831994.447,21
+55977,1310378.767,781727.4121,937419.8485,21
+55978,1310481.425,782469.7563,977120.0108,21
+55979,1311368.783,782341.4608,840225.9539,21
+55980,1312417.841,781025.1837,1005429.52,21
+55981,1313245.165,779998.4975,1116151.831,21
+55982,1315997.351,779807.4277,850551.7514,21
+55983,1318856.648,777090.9762,1033470.776,21
+55984,1318487.343,776405.4418,856601.7842,21
+55985,1320509.226,774171.601,862304.888,21
+55986,1322663.781,772367.0184,870359.961,21
+55987,1323741.087,770327.2881,877323.6363,21
+55988,1324299.866,767976.7108,881537.8705,21
+55989,1327343.905,767767.6326,892364.8923,21
+55990,1327669.513,764010.6283,896083.1972,21
+55991,1330361.755,764042.412,904638.1925,21
+55992,1330405.55,762095.155,1844612.503,21
+55993,1332622.221,760015.6004,948317.0998,21
+55994,1334259.523,758087.1278,1411611.181,21
+55995,1335216.719,755974.3783,907594.9877,21
+55996,1336962.425,755309.9221,1046907.388,21
+55997,1337910.119,752257.5562,916752.7906,21
+55998,1340576.297,752548.0642,1163874.89,21
+55999,1340618.418,748868.608,920371.3536,21
+56000,1344092.82,747795.5563,1072834.053,21
+56001,1343711.689,746740.6858,928735.607,21
+56002,1346104.802,743841.7223,935856.7494,21
+56003,1346586.706,743032.5446,943870.7815,21
+56004,1349227.872,740474.3734,948918.9672,21
+56005,1350575.403,739761.6171,957820.3209,21
+56006,1351353.099,736257.3099,962806.6632,21
+56007,1353179.797,737248.3329,970969.0854,21
+56008,1354801.733,732073.253,979118.936,21
+56009,1355708.517,733226.1083,1096443.322,21
+56010,1357789.795,730673.1969,983847.4609,21
+56011,1359114.45,727862.7724,1150414.663,21
+56012,1360815.264,727659.8458,991287.6412,21
+56013,1361826.275,724644.4804,996824.8001,21
+56014,1363571.317,723430.8682,1005341.14,21
+56015,1364681.536,721370.028,1009089.696,21
+56016,1366622.086,719293.7819,1016782.924,21
+56017,1368018.294,718841.1956,1965673.242,21
+56018,1369762.571,714922.8763,1060900.886,21
+56019,1369743.272,715293.2151,1525723.539,21
+56020,1373468.291,712638.1964,1016755.525,21
+56021,1372818.387,710556.7418,1113848.103,21
+56022,1375780.712,708824.107,1025150.595,21
+56023,1376412.246,708114.4278,1277073.572,21
+56024,1378071.793,704997.8059,1028004.715,21
+56025,1379945.249,702929.0009,1138982.454,21
+56026,1380909.785,703322.6978,1036765.151,21
+56027,1382010.821,698966.1258,1044261.319,21
+56028,1385089.129,698005.5586,1051416.888,21
+56029,1384633.058,697129.8259,1056528.16,21
+56030,1387184.289,693510.6505,1065998.457,21
+56031,1387746.589,693540.8896,1070115.153,21
+56032,1390883.518,690554.1666,1077260.266,21
+56033,1390251.214,689450.4745,1086100.267,21
+56034,1393235.831,686669.5336,1202633.205,21
+56035,1394036.207,685466.3984,1090481.071,21
+56036,1395471.935,683598.8763,1213276.837,21
+56037,1396816.946,682032.4809,1095987.57,21
+56038,1398964.596,678734.0182,1103916.367,21
+56039,1399604.947,678282.4596,1110349.626,21
+56040,1401421.827,674891.1191,1117190.559,15.6
+56041,0,0,0,15.6
+56042,0,0,189884.5544,15.6
+56043,0,0,0,15.6
+56044,0,0,0,15.6
+56045,0,436864.0428,0,15.6
+56046,0,0,1484216.955,15.6
+56047,0,0,173259.0464,15.6
+56048,0,0,0,15.6
+56049,0,0,0,15.6
+56050,0,0,0,15.6
+56051,0,0,0,15.6
+56052,0,0,0,15.6
+56053,0,0,0,15.6
+56054,0,435230.8284,0,15.6
+56055,0,0,0,15.6
+56056,0,368314.8924,0,15.6
+56057,0,0,0,15.6
+56058,0,0,0,15.6
+56059,0,0,0,15.6
+56060,0,0,0,15.6
+56061,0,0,0,15.6
+56062,0,0,0,15.6
+56063,0,0,0,15.6
+56064,0,0,0,15.6
+56065,0,0,887321.4054,15.6
+56066,0,0,0,15.6
+56067,0,0,0,15.6
+56068,0,0,0,15.6
+56069,0,0,0,15.6
+56070,0,0,0,15.6
+56071,0,0,0,15.6
+56072,0,0,34368.73913,15.6
+56073,0,0,406232.9653,15.6
+56074,0,0,209676.3071,15.6
+56075,0,0,175254.2,15.6
+56076,0,0,191365.469,15.6
+56077,0,0,183317.0756,15.6
+56078,0,0,179390.172,15.6
+56079,0,0,176567.7981,15.6
+56080,0,0,174083.4503,15.6
+56081,34519.00846,0,1270650.238,15.6
+56082,2102.133922,0,158884.2086,15.6
+56083,2186.935265,0,163705.2224,15.6
+56084,13422.12183,0,157290.0588,15.6
+56085,11488.81331,436773.4093,831048.2172,15.6
+56086,10397.0699,0,67674.75043,15.6
+56087,11303.69765,0,394028.4976,15.6
+56088,11609.31205,0,41822.06548,15.6
+56089,11878.44403,0,298494.1033,15.6
+56090,12169.71387,0,184625.278,15.6
+56091,12405.49923,0,207180.7049,15.6
+56092,12699.21912,0,41598.77059,15.6
+56093,12949.89668,0,292314.2051,15.6
+56094,13197.53079,0,156651.9155,15.6
+56095,13485.60812,0,132145.6911,15.6
+56096,13705.40275,368315.8251,143754.083,15.6
+56097,13973.64529,0,138262.0476,15.6
+56098,14222.45747,0,135663.2724,15.6
+56099,14467.308,0,133838.238,15.6
+56100,14709.56387,0,132246.3741,15.6
+56101,14952.23334,0,0,15.6
+56102,15045.63653,0,0,15.6
+56103,15139.7226,0,0,15.6
+56104,15255.51126,0,0,15.6
+56105,15404.10696,0,0,15.6
+56106,15424.56561,0,0,15.6
+56107,15551.11598,0,0,15.6
+56108,15688.69377,0,0,15.6
+56109,15694.71424,0,0,15.6
+56110,15870.7973,0,716091.1343,15.6
+56111,0,0,0,15.6
+56112,0,0,0,15.6
+56113,0,0,0,15.6
+56114,0,0,0,15.6
+56115,63967.40647,0,0,15.6
+56116,2712.284552,436664.301,0,15.6
+56117,7192.685978,0,899492.3212,15.6
+56118,24049.59918,0,0,15.6
+56119,15333.64167,0,0,15.6
+56120,16764.87466,0,0,15.6
+56121,16755.49816,0,0,15.6
+56122,16862.46917,0,0,15.6
+56123,16958.97729,0,0,15.6
+56124,16964.50448,0,0,15.6
+56125,17080.12885,0,0,15.6
+56126,17090.45286,0,103646.8053,15.6
+56127,17240.0269,0,0,15.6
+56128,17210.94176,0,0,15.6
+56129,17306.24298,0,0,15.6
+56130,17352.74141,0,0,15.6
+56131,17428.26351,0,0,15.6
+56132,17476.754,0,0,15.6
+56133,17542.38829,0,0,15.6
+56134,17547.02912,0,100929.2711,15.6
+56135,17629.45702,0,133360.9479,15.6
+56136,17665.48341,368361.3561,127688.9458,15.6
+56137,17752.1408,0,125627.4013,15.6
+56138,17766.52175,0,124359.8243,15.6
+56139,17804.80169,0,123267.4066,15.6
+56140,17902.74782,0,733803.9688,15.6
+56141,17852.84572,0,62753.56995,15.6
+56142,17986.08287,0,296819.186,15.6
+56143,17960.153,0,43536.64121,15.6
+56144,18033.74984,0,227435.8409,15.6
+56145,0,0,146863.1126,15.6
+56146,0,0,165607.8573,15.6
+56147,0,436524.5725,43358.17224,15.6
+56148,65715.99498,0,224525.1077,15.6
+56149,2454.837728,0,126725.5293,15.6
+56150,11649.36942,0,107672.379,15.6
+56151,24476.04537,0,116708.7384,15.6
+56152,17294.83249,0,112777.7722,15.6
+56153,18379.8506,0,111009.814,15.6
+56154,18460.00881,0,866371.067,15.6
+56155,18464.16341,0,107391.2874,15.6
+56156,18511.16213,0,106394.7363,15.6
+56157,319040.8425,0,105054.0248,15.6
+56158,37651.04521,0,105299.1346,15.6
+56159,32614.2437,0,103899.4882,15.6
+56160,82687.28107,0,101306.6267,15.6
+56161,107401.4757,0,86869.505,15.6
+56162,80127.28696,0,100563.7459,15.6
+56163,88572.91956,0,0,15.6
+56164,89731.22897,0,0,15.6
+56165,90616.74715,0,0,15.6
+56166,98578.73804,0,0,15.6
+56167,97772.49931,0,0,15.6
+56168,99236.38668,0,0,15.6
+56169,101053.5641,0,0,15.6
+56170,102697.1722,0,0,15.6
+56171,103737.2567,0,0,15.6
+56172,105597.0692,0,0,15.6
+56173,106965.328,0,71262.16568,15.6
+56174,108592.0172,0,0,15.6
+56175,109774.1148,0,70098.38037,15.6
+56176,111552.4476,368427.4743,0,15.6
+56177,112912.1571,0,0,15.6
+56178,92671.44287,436428.3275,0,15.6
+56179,94541.10161,0,0,15.6
+56180,95524.94503,0,69014.33088,15.6
+56181,175130.0251,0,0,15.6
+56182,107107.0737,0,0,15.6
+56183,110032.891,0,0,15.6
+56184,131429.7769,0,0,15.6
+56185,123445.8999,0,0,15.6
+56186,125711.2227,0,0,15.6
+56187,22823.22109,0,0,15.6
+56188,22863.62192,0,0,15.6
+56189,23004.59393,0,0,15.6
+56190,23217.29498,0,0,15.6
+56191,23268.311,0,0,15.6
+56192,23461.81458,0,763485.5342,15.6
+56193,473621.761,0,66200.61437,15.6
+56194,23720.56726,0,0,15.6
+56195,94682.91577,0,0,15.6
+56196,182018.2684,0,0,15.6
+56197,137005.0249,0,0,15.6
+56198,142878.6498,0,0,15.6
+56199,144672.0113,0,0,15.6
+56200,146194.5844,0,0,15.6
+56201,147283.6642,0,0,15.6
+56202,148772.2004,0,0,15.6
+56203,150100.033,0,93404.08425,15.6
+56204,151013.863,0,96409.83871,15.6
+56205,152492.981,0,95895.10982,15.6
+56206,154041.4147,0,95439.65097,15.6
+56207,154687.6266,0,95018.38127,15.6
+56208,156523.7965,0,94612.88088,15.6
+56209,157579.0384,436358.6786,94286.03663,15.6
+56210,158874.2588,0,93809.83304,15.6
+56211,134355.9863,0,93465.96389,15.6
+56212,135390.297,0,93093.19003,15.6
+56213,213523.4475,0,92734.96165,15.6
+56214,147500.7583,0,92786.43601,15.6
+56215,163447.0524,0,91768.50239,15.6
+56216,169196.8623,368499.9765,91859.3191,15.6
+56217,167823.5772,0,91325.75224,15.6
+56218,169095.6269,0,89659.35516,15.6
+56219,170131.0173,0,92284.95646,15.6
+56220,171782.153,0,89902.666,15.6
+56221,172116.9277,0,638850.4637,15.6
+56222,172732.5619,0,59178.73237,15.6
+56223,27247.4014,0,202686.8696,15.6
+56224,27303.58578,0,46596.80493,15.6
+56225,27329.82019,0,159698.8556,15.6
+56226,27426.04123,0,110449.9847,15.6
+56227,607371.1342,0,84219.69554,15.6
+56228,59196.71405,0,95995.86671,15.6
+56229,85448.85655,0,92541.09756,15.6
+56230,248755.2187,0,728628.5239,15.6
+56231,166554.7855,0,91217.53575,15.6
+56232,178531.7375,0,0,15.6
+56233,179707.9152,0,0,15.6
+56234,180434.1132,0,0,15.6
+56235,180270.7527,0,0,15.6
+56236,181282.6669,0,0,15.6
+56237,181069.9597,0,0,15.6
+56238,182165.4345,0,0,15.6
+56239,182048.4626,0,55810.09261,15.6
+56240,182819.9869,0,0,15.6
+56241,183049.1716,0,0,15.6
+56242,183732.1293,0,0,15.6
+56243,155534.8383,0,0,15.6
+56244,156320.7338,0,0,15.6
+56245,237590.899,0,0,15.6
+56246,174078.5265,0,54688.76538,15.6
+56247,179235.0739,0,0,15.6
+56248,190763.1769,0,0,15.6
+56249,186314.3663,0,0,15.6
+56250,186951.1579,0,0,15.6
+56251,187657.1591,0,53976.56362,15.6
+56252,187602.1482,0,0,15.6
+56253,188408.7692,0,0,15.6
+56254,188875.6408,0,0,15.6
+56255,189055.2199,0,0,15.6
+56256,189451.0957,0,0,15.6
+56257,28832.95196,368516.0563,0,15.6
+56258,28832.94586,0,52832.79704,15.6
+56259,28862.45994,0,0,15.6
+56260,28934.08917,0,0,15.6
+56261,685633.5496,0,0,15.6
+56262,87290.67177,0,0,15.6
+56263,61585.36819,0,51830.8701,15.6
+56264,283285.5218,0,0,15.6
+56265,178665.1123,0,0,15.6
+56266,193563.5678,0,0,15.6
+56267,193813.8513,0,0,15.6
+56268,194800.4543,0,0,15.6
+56269,194333.6382,0,662561.9958,15.6
+56270,195426.6211,68.58914867,51186.90889,15.6
+56271,195227.0733,0,0,15.6
+56272,195621.5733,0,0,15.6
+56273,196160.2166,0,0,15.6
+56274,196535.9045,3.097924286,50191.07602,15.6
+56275,167276.2288,0,0,15.6
+56276,167811.1592,0,0,15.6
+56277,250710.128,230.0684344,49567.98938,15.6
+56278,190366.4722,42238.63971,0,15.6
+56279,189257.4318,2541.842768,77924.88355,15.6
+56280,203663.4122,4179.039619,81069.74159,15.6
+56281,198840.6642,16879.32076,80875.37862,15.6
+56282,199757.2229,447718.6841,80710.05319,15.6
+56283,200699.4325,11327.63084,80572.09685,15.6
+56284,201026.495,11478.04157,80446.40927,15.6
+56285,201894.9383,11272.93547,80328.699,15.6
+56286,202150.0515,11194.05727,80214.79528,15.6
+56287,203455.0756,10988.57243,80106.57972,15.6
+56288,203797.7624,10861.94205,80001.0795,15.6
+56289,204215.5662,10707.96238,79900.02531,15.6
+56290,205090.3547,10552.52233,79800.67289,15.6
+56291,30323.71994,10405.81064,79712.85265,15.6
+56292,30374.47311,10230.71993,79606.38074,15.6
+56293,30426.13093,10118.59445,79643.83667,15.6
+56294,670963.6699,9945.087073,79390.65751,15.6
+56295,78292.74087,9796.898841,79351.98664,15.6
+56296,123976.1831,9603.670666,79254.29295,15.6
+56297,277731.2876,378043.9969,79173.34598,15.6
+56298,199086.2489,9311.384315,79155.54607,15.6
+56299,211411.4844,9170.998591,78924.22039,15.6
+56300,211704.0372,9030.028938,79016.29822,15.6
+56301,212809.444,8856.628672,78837.19717,15.6
+56302,213403.63,8708.38014,78792.06763,15.6
+56303,213432.077,8539.271159,78721.76692,15.6
+56304,214522.7405,8397.26761,78654.49779,15.6
+56305,214977.4465,8208.85277,78589.55596,15.6
+56306,215516.9065,8100.432304,177668.8144,15.6
+56307,184472.4373,7883.245968,133415.2788,15.6
+56308,185739.5521,0,677076.6843,15.6
+56309,270114.3232,0,103698.8387,15.6
+56310,215707.9012,0,107315.8261,15.6
+56311,207628.6435,0,103450.3055,15.6
+56312,224410.7707,0,106266.858,15.6
+56313,219340.633,436259.2171,105507.9276,15.6
+56314,220385.7111,0,105811.6824,15.6
+56315,220771.3064,0,106094.0419,15.6
+56316,221488.6787,0,106323.8233,15.6
+56317,221781.6525,0,106579.9043,15.6
+56318,222596.359,0,106825.6283,15.6
+56319,223086.9145,0,107126.2942,15.6
+56320,223610.5773,0,107403.8959,15.6
+56321,224632.0562,0,107744.5254,15.6
+56322,224492.0496,0,108008.2573,15.6
+56323,225544.7377,0,108321.6436,15.6
+56324,32443.14249,0,108646.6228,15.6
+56325,32378.90667,0,109022.0617,15.6
+56326,32494.0257,0,109265.1995,15.6
+56327,727945.5456,0,109674.0814,15.6
+56328,111673.2966,0,109965.5265,15.6
+56329,133711.3909,0,110408.4343,15.6
+56330,299085.4371,0,110615.9903,15.6
+56331,220124.5729,0,111027.9249,15.6
+56332,230649.5991,0,111342.643,15.6
+56333,231236.5615,0,111775.2297,15.6
+56334,232012.4184,0,112053.9571,15.6
+56335,232317.6456,0,112391.3748,15.6
+56336,232755.2389,0,0,15.6
+56337,233633.5102,368542.0453,47482.1171,15.6
+56338,234010.3672,0,0,15.6
+56339,201189.6373,0,0,15.6
+56340,201447.4008,0,0,15.6
+56341,287723.3035,0,167223.5396,15.6
+56342,238074.1609,0,103307.5624,15.6
+56343,220366.3113,0,106643.918,15.6
+56344,239329.5721,436177.4372,120849.0861,15.6
+56345,233620.0759,0,113629.71,15.6
+56346,232641.3565,0,114206.3663,15.6
+56347,233179.4785,0,114157.0566,15.6
+56348,232204.5006,0,710216.5851,15.6
+56349,232179.4596,0,115806.0644,15.6
+56350,231450.8685,0,115873.411,15.6
+56351,231369.7045,0,115843.024,15.6
+56352,231190.2755,0,115909.3087,15.6
+56353,230397.6696,0,115928.294,15.6
+56354,230550.3386,0,115955.6632,15.6
+56355,229484.6883,0,116023.815,15.6
+56356,229856.1796,0,116014.6593,15.6
+56357,32696.56358,0,116122.927,15.6
+56358,32651.44446,0,116115.9295,15.6
+56359,32620.57027,0,116170.3415,15.6
+56360,730465.3719,0,116217.0812,15.6
+56361,112242.7439,0,116283.528,15.6
+56362,136718.4599,0,116360.9251,15.6
+56363,293275.4255,0,149845.6178,15.6
+56364,218712.4312,0,154130.4407,15.6
+56365,226914.0527,0,154866.961,15.6
+56366,226784.1557,0,155667.8431,15.6
+56367,226106.0047,0,156476.3258,15.6
+56368,225985.796,0,157106.9313,15.6
+56369,225458.0022,0,158041.7099,15.6
+56370,224892.6094,0,158650.5851,15.6
+56371,192600.3119,0,92179.89551,15.6
+56372,192323.9185,0,91921.70276,15.6
+56373,276705.5126,0,91666.78676,15.6
+56374,223922.2326,0,91532.24353,15.6
+56375,210349.2864,436038.268,91120.93067,15.6
+56376,228485.4329,0,215147.7143,15.6
+56377,222296.5172,0,149329.9402,15.6
+56378,221993.0976,368548.4318,152684.3744,15.6
+56379,221493.5208,0,165813.2546,15.6
+56380,221333.9124,0,162155.686,15.6
+56381,220671.2487,0,161739.3871,15.6
+56382,220500.8133,0,162558.0545,15.6
+56383,220084.1632,0,163136.0241,15.6
+56384,219437.4774,0,163695.0773,15.6
+56385,219076.4943,0,164175.7051,15.6
+56386,219105.9679,0,164842.8687,15.6
+56387,218448.4128,0,165253.4192,15.6
+56388,217679.0116,0,824417.2656,15.6
+56389,218210.1303,0,166685.7513,15.6
+56390,31445.45974,0,167181.7227,15.6
+56391,31337.84897,0,167675.1239,15.6
+56392,31298.49161,0,129914.6577,15.6
+56393,705928.7098,0,129524.4203,15.6
+56394,89358.82119,0,129339.9029,15.6
+56395,125417.2514,0,129064.9805,15.6
+56396,283447.061,0,128827.6573,15.6
+56397,204318.6227,0,128597.4532,15.6
+56398,214358.6695,0,128462.17,15.6
+56399,213764.6958,0,128105.4454,15.6
+56400,213837.7563,0,127903.9695,17.8
+56401,1093086.888,114600.0723,1789513.141,17.8
+56402,937244.9383,53950.06675,1193936.953,17.8
+56403,414941.0873,11822.71872,812868.761,17.8
+56404,645065.4798,22220.84082,956524.0618,17.8
+56405,496702.3474,34190.81666,1086741.859,17.8
+56406,460196.7083,461401.1201,867716.2579,17.8
+56407,495480.2251,26385.81906,900317.5752,17.8
+56408,460814.8088,26270.16133,1158572.672,17.8
+56409,465645.817,26254.8802,1086257.493,17.8
+56410,460902.528,26169.65914,1790903.633,17.8
+56411,457634.9693,26134.45792,1158779.407,17.8
+56412,457913.095,25951.67707,1401996.549,17.8
+56413,456259.3093,26014.02637,1137664.703,17.8
+56414,455288.4177,25918.20017,1154047.668,17.8
+56415,455065.2652,25812.55954,1169089.129,17.8
+56416,453631.0762,25857.61426,1338075.994,17.8
+56417,452793.0776,25700.41257,1186836.502,17.8
+56418,452614.6483,25771.29902,1201448.361,17.8
+56419,451257.432,394245.1398,1214540.849,17.8
+56420,451227.2947,25570.12612,1227687.644,17.8
+56421,450296.5009,25682.80552,1240546.926,17.8
+56422,450190.5109,25522.80861,1251415.353,17.8
+56423,81620.75297,25589.70802,1264249.105,17.8
+56424,81483.76438,25463.34879,1273321.03,17.8
+56425,893874.2234,25522.81555,1284924.913,17.8
+56426,527449.3177,25458.85557,1295953.503,17.8
+56427,422280.5527,25415.92643,1370319.374,17.8
+56428,435075.7907,25411.47555,1385802.444,17.8
+56429,469798.9967,25439.243,2293778.913,17.8
+56430,448484.7921,25322.0066,1293661.436,17.8
+56431,435457.0472,0,211981.8802,17.8
+56432,433844.7628,0,246376.2406,17.8
+56433,434812.4611,0,239796.2927,17.8
+56434,366443.6595,76923.44615,237479.5197,17.8
+56435,365289.4369,657.5690428,2282866.572,17.8
+56436,459082.399,27013.46378,1097922.637,17.8
+56437,505205.2479,463783.6578,1964570.831,17.8
+56438,432092.9854,24907.45699,1270823.616,17.8
+56439,442963.0673,25323.85942,1434542.773,17.8
+56440,452472.4632,25232.30654,1431673.737,17.8
+56441,783501.1818,417430.6446,1334602.021,17.8
+56442,446038.541,64820.67933,1320218.532,17.8
+56443,445125.4463,132969.8354,1524687.195,17.8
+56444,445202.3555,211630.0045,1347668.611,17.8
+56445,445244.1526,161329.0427,1358292.931,17.8
+56446,444341.7747,170641.1903,1369831.77,17.8
+56447,444761.1226,170368.7373,1525289.959,17.8
+56448,444363.5158,170087.0148,1377194.326,17.8
+56449,444537.7626,171021.9516,1386878.837,17.8
+56450,443953.2853,170378.7593,1397388.929,17.8
+56451,444247.2876,170679.0483,1550801.929,17.8
+56452,443847.4292,170675.4238,1402405.781,17.8
+56453,443904.0398,171078.5103,1413524.05,17.8
+56454,444000.5078,171134.7184,1422084.221,17.8
+56455,80418.13521,539718.1792,1431123.649,17.8
+56456,80372.54956,171381.253,1440539.116,17.8
+56457,892756.9195,171459.9745,1448006.428,17.8
+56458,518006.7724,171763.3224,1455541.071,17.8
+56459,412399.0954,171577.8112,1463969.235,17.8
+56460,433386.1781,172425.0737,1470680.579,20
+56461,2313743.098,1351127.072,3165385.09,20
+56462,1809883.819,1205776.224,3846996.131,20
+56463,1076398.659,272215.7007,2792368.942,20
+56464,801273.5826,329158.2134,2315422.607,20
+56465,988524.2776,518114.8298,368878.2883,20
+56466,937020.4161,426325.7227,1462686.046,20
+56467,997064.4807,429459.3697,2677829.353,20
+56468,932472.2886,857063.7234,2427677.135,20
+56469,1012514.484,421633.989,1822235.46,20
+56470,988042.3492,420148.6956,1676175.63,20
+56471,957924.2716,76279.62886,2069068.57,20
+56472,974813.5634,90980.28649,1996161.172,20
+56473,964672.3071,82852.43784,1981999.751,20
+56474,947874.5728,1058104.677,1992690.988,20
+56475,953699.7227,236312.1141,1993452.421,20
+56476,949882.3018,405228.6846,1999602.565,20
+56477,946669.5964,460766.7732,2000786.321,20
+56478,944037.9929,421700.7215,2002592.458,20
+56479,941188.664,423163.9252,2005119.051,20
+56480,940741.6237,424003.6215,2004309.139,20
+56481,936098.4316,421908.443,2006062.734,20
+56482,936757.3005,422128.9525,2004448.461,20
+56483,932903.8077,420718.6889,2004540.168,20
+56484,1271222.447,420201.5468,2003510.685,20
+56485,929595.02,419001.9452,2005018.124,20
+56486,929328.9865,419238.8334,2061391.155,20
+56487,153513.8313,417837.5478,2061456.316,20
+56488,985230.8191,417578.6686,1983080.518,20
+56489,1021875.148,416415.6934,1984325.936,20
+56490,892445.7065,417013.9228,1982734.49,20
+56491,956090.2832,783681.9589,1879801.911,20
+56492,935930.1643,415580.8982,1876490.525,20
+56493,903057.3376,413976.8742,1876026.407,20
+56494,924323.7555,414592.7965,1872993.76,20
+56495,915167.4746,342418.2071,1873421.795,20
+56496,914696.2213,341452.1635,2336155.159,20
+56497,793885.5242,474066.8288,336815.9655,20
+56498,956203.9312,402548.9982,538549.9445,20
+56499,872572.8377,845207.0472,2730675.589,20
+56500,878211.6077,413466.579,2296709.865,20
+56501,876236.855,411799.0717,1453742.41,20
+56502,944420.232,396524.3961,1651815.786,20
+56503,927031.0988,396838.666,2917078.939,20
+56504,888830.7821,70427.73953,1915282.333,20
+56505,907294.1932,70226.63118,1895137.603,20
+56506,904836.0871,70226.64393,1903199.807,20
+56507,901209.0708,973531.5458,1905962.868,20
+56508,899941.5691,187763.4214,1918234.771,20
+56509,899414.5675,396213.4535,1920499.054,20
+56510,899207.9148,419884.2498,2674392.359,20
+56511,897421.4985,392489.9857,1968317.233,20
+56512,896578.0452,393903.4625,2214571.639,20
+56513,895461.8929,393192.7251,1906105.479,20
+56514,895927.0351,392785.4161,1912916.236,20
+56515,893322.3182,392361.9464,1917983.847,20
+56516,892795.2211,392584.8009,1919480.211,20
+56517,892690.6592,391365.1242,1924674.958,20
+56518,146252.8947,391664.0992,1927303.158,20
+56519,146011.1535,391498.3835,1927672.007,20
+56520,958080.9825,391173.6376,1931995.57,21
+56521,2636239.09,2594037.417,4573554.528,21
+56522,2274105.429,1138310.587,3511644.488,21
+56523,739501.9995,459413.8395,2003232.881,21
+56524,861853.8429,522018.1997,2072677.855,21
+56525,1314583.049,706365.071,2536368.585,21
+56526,1047835.574,732873.6175,2282510.03,21
+56527,1078690.466,640693.9323,2362634.245,21
+56528,1078774.805,664282.1938,2373838.593,21
+56529,1062068.703,662656.2002,2294293.534,21
+56530,1044803.187,662219.78,2299861.924,21
+56531,1053114.749,658638.6901,2304045.231,21
+56532,1045469.411,1093398.58,2309321.854,21
+56533,1042959.922,656491.9712,2309118.784,21
+56534,1038843.259,654783.2895,2312740.274,21
+56535,1038668.632,652592.5527,2315346.885,21
+56536,1033561.653,651211.8121,2316169.032,21
+56537,1032162.004,650657.51,3100184.34,21
+56538,1029292.158,649415.2483,2357517.411,21
+56539,1026088.962,646445.2802,2620474.486,21
+56540,1024969.799,647080.088,2286225.934,21
+56541,1022220.838,644308.537,2291688.039,21
+56542,1019505.254,644413.455,2299524.558,21
+56543,1017420.964,642148.7714,2464849.882,21
+56544,1015939.625,641928.7288,2283325.873,21
+56545,1014489.94,640761.7344,2288815.555,21
+56546,1011416.81,639549.3439,2293238.129,21
+56547,1009235.167,638688.2579,2447925.79,21
+56548,1009447.751,638133.0448,2281341.331,21
+56549,1004743.217,636393.9994,2291466.961,21
+56550,1003588.352,635930.4373,2295098.525,21
+56551,995676.9577,634140.8152,2443653.703,21
+56552,997011.5972,634419.7636,2286182.845,21
+56553,992072.8979,634095.8239,2293848.872,21
+56554,991108.0525,631136.1226,2297465.937,21
+56555,989516.897,632362.9869,2305228.613,21
+56556,984871.5448,629943.8277,2308430.943,21
+56557,985008.8028,631126.8283,2315203.152,21
+56558,980754.2502,628549.4909,2316745.514,21
+56559,980744.0237,628608.213,2320490.6,21
+56560,977007.1277,626815.8463,2323988.973,21
+56561,976658.5631,628609.3317,3104303.581,21
+56562,972618.2713,625529.7744,2367435.533,21
+56563,972369.4542,626412.1881,2628754.337,21
+56564,968600.7044,623722.9975,2297529.438,21
+56565,968123.0799,625982.6241,2306084.433,21
+56566,965609.2988,623106.796,2313259.489,21
+56567,963319.771,622848.4127,2481301.429,21
+56568,963310.105,622745.3725,2297508.878,21
+56569,959665.4111,621850.9651,2306644.927,21
+56570,958462.1771,621521.5371,2312894.948,21
+56571,956513.2722,620355.5657,2465170.096,21
+56572,955192.4075,620950.0293,2301668.644,21
+56573,952903.7529,618651.7834,2311544.013,21
+56574,951069.6657,620034.2471,2318235.111,21
+56575,950677.2902,618524.3951,2464815.246,21
+56576,948567.1411,617033.633,2310280.189,21
+56577,945105.8804,618786.1857,2315345.429,21
+56578,946567.1915,616256.1156,2326810.66,21
+56579,943265.4061,617205.1351,2326905.786,21
+56580,941676.6514,615056.0173,2337234.418,21
+56581,1611027.485,860253.363,2280245.492,21
+56582,1604587.192,854936.5479,2266678.809,21
+56583,1602480.334,856301.2891,2270671.198,21
+56584,1598100.989,856144.0151,2266222.643,21
+56585,1598499.562,856532.8297,3042979.99,21
+56586,1592612.503,857717.3279,2302702.823,21
+56587,1593331.318,856101.7537,2557606.829,21
+56588,1588849.497,858854.4922,2230320.596,21
+56589,1586762.269,858961.3586,2235571.095,21
+56590,1586305.685,859130.8492,2237148.425,21
+56591,1582155.104,859670.0948,2401078.362,21
+56592,1580868.011,861696.1096,2218008.223,21
+56593,1578922.436,861890.8615,2223303.238,21
+56594,1575928.234,861682.2793,2226993.486,21
+56595,1573730.858,864330.228,2373082.012,21
+56596,1572943.614,864364.0816,2210754.554,21
+56597,1569849.47,865457.3283,2217614.991,21
+56598,1569316.645,865724.0216,2221246.454,21
+56599,1565049.238,867791.7175,2362505.916,21
+56600,1564202.631,867542.2893,2209058.308,21
+56601,1561726.523,869261.192,2211823.781,21
+56602,1560689.593,869594.3338,2215468.877,21
+56603,1556526.616,871192.623,2219865.642,21
+56604,1557478.353,872528.2408,2222463.075,21
+56605,1552485.452,872398.7348,2224402.709,21
+56606,1553454.143,874321.4603,2225946.445,21
+56607,1543078.531,875372.1512,2228678.377,21
+56608,1542393.594,876125.666,2228608.392,21
+56609,1536982.334,876485.5207,3004909.513,21
+56610,1536806.976,879194.8628,2268397.364,21
+56611,1535009.408,878347.2004,2524708.165,21
+56612,1530662.973,881602.8044,2197854.452,21
+56613,1530657.991,881103.6239,2192225.44,21
+56614,1526745.751,882934.7706,2189777.535,21
+56615,1524426.397,883829.7248,2356967.419,21
+56616,1522531.901,884926.5441,2170026.59,21
+56617,1519522.63,886003.4185,2173807.351,21
+56618,1517452.72,887622.7016,2174394.184,21
+56619,1515456.216,888400.4995,2320521.566,21
+56620,1512449.845,890430.2688,2157006.8,21
+56621,1511395.173,891252.563,2159722.041,21
+56622,1507114.875,893037.9359,2159832.107,21
+56623,1507130.132,893915.7439,2305976.717,21
+56624,1502419.734,895478.8091,2145120.501,21
+56625,1501959.022,896855.0651,2146156.61,21
+56626,1498391.624,897798.2797,2148164.985,21
+56627,1497503.012,898994.5378,2150132.59,21
+56628,1494139.249,900569.0575,2149038.958,21
+56629,1492491.68,901102.7697,2150143.849,21
+56630,1489844.904,902837.9793,2149959.445,21
+56631,1488037.756,903660.6874,2148676.008,21
+56632,1484197.818,903616.8623,2147540.972,21
+56633,1484494.044,905958.0116,2924555.034,21
+56634,1480171.208,906752.8338,2182871.081,21
+56635,1479692.21,908454.8185,2439757.512,21
+56636,1476747.988,908549.2423,2107314.637,21
+56637,1473852.203,910816.8823,2106683.889,21
+56638,1472158.155,912777.4832,2110173.105,21
+56639,1471367.085,912471.4287,2277632.545,21
+56640,1467757.303,914983.7749,2087446.869,21
+56641,1240725.897,697896.4746,1739136.762,21
+56642,1655975.827,691207.8932,1712423.348,21
+56643,1217298.206,690575.551,1841912.347,21
+56644,1211044.71,687928.561,1661527.083,21
+56645,1207602.979,687325.5244,1645728.548,21
+56646,1203725.229,685897.7468,1632427.869,21
+56647,1199119.466,684765.8137,1616542.749,21
+56648,1194229.371,683954.7756,1604271.514,21
+56649,1191774.513,683028.3563,1588223.809,21
+56650,1187769.693,682953.6538,1575355.717,21
+56651,1183395.73,679920.4679,1561753.682,21
+56652,1180143.511,680455.2528,2331083.216,21
+56653,1176984.197,678802.0217,1567084.607,21
+56654,1171711.89,677889.6963,1843045.249,21
+56655,1169531.976,675537.7558,1482572.322,21
+56656,1164972.907,675144.5366,1471548.273,21
+56657,1163221.304,673816.9614,1459694.419,21
+56658,1158532.915,672960.8421,1449099.775,21
+56659,1155238.569,672077.0928,1436296.531,21
+56660,1152689.602,671427.4042,1425296.766,21
+56661,1148086.21,670083.1432,1413392.152,21
+56662,1144868.624,669507.5527,1401047.079,21
+56663,1142511.292,668630.8468,1388704.948,21
+56664,1138711.547,667676.8437,1377528.824,21
+56665,1135134.413,667517.9513,1364693.191,21
+56666,1132553.256,665643.7654,1352186.709,21
+56667,1129509.666,665884.8543,1340123.312,21
+56668,1125227.48,664856.2571,1328873.879,21
+56669,1122760.441,663795.1815,1315590.219,21
+56670,1121054.942,663313.0469,1303117.562,21
+56671,1115712.525,662679.9867,1293927.801,21
+56672,1113865.889,661922.9896,1365350.409,21
+56673,1110268.553,661406.9661,1261845.522,21
+56674,1107021.971,660436.0523,1251441.251,21
+56675,1104449.201,659915.587,1239066.662,21
+56676,1101406.729,659279.0091,1227749.941,21
+56677,1097716.871,658872.9342,1217623.37,21
+56678,1095423.581,657822.2307,1204427.793,21
+56679,1092237.695,658845.5007,1194607.561,21
+56680,1089187.276,657664.2851,2013220.403,21
+56681,1086102.093,656496.4824,1201256.442,21
+56682,1084516.571,657143.4808,1541420.046,21
+56683,1079091.694,655328.4809,1124825.373,21
+56684,1077776.854,655577.3123,1115447.574,21
+56685,1074895.724,654500.0003,1104500.166,21
+56686,1070991.057,653774.2054,1094984.118,21
+56687,1069198.91,653012.7582,1083981.491,21
+56688,1065379.887,652654.3248,1074044.243,21
+56689,1063450.063,652197.2916,1063204.269,21
+56690,1059881.127,651301.4455,1052049.319,21
+56691,1057470.204,651695.4414,1042405.38,21
+56692,1053950.287,650757.0611,1030547.251,21
+56693,1051815.918,650538.8766,1019305.749,21
+56694,1049419.899,649525.8561,1008719.302,21
+56695,1045083.85,649111.4144,997314.6941,21
+56696,1042903.413,648808.3788,985953.7587,21
+56697,1041146.151,647926.4057,974698.3551,21
+56698,1037656.426,648464.9071,963286.1646,21
+56699,1034798.708,647088.9535,951817.2107,21
+56700,1032280.995,646955.1194,942400.1033,21
+56701,1029463.612,648705.6221,1800926.781,21
+56702,1027590.559,650270.6727,959128.2719,21
+56703,1024787.044,651722.3137,1340964.112,21
+56704,1023147.388,653891.2513,895271.3314,21
+56705,1020417.547,655822.9477,898435.4881,21
+56706,1019442.328,657136.741,882217.2025,21
+56707,1016528.494,658673.1871,875803.3087,21
+56708,1014224.384,660032.9263,869624.5437,21
+56709,1013418.916,662513.9687,863148.6591,21
+56710,1009184.054,663648.5436,856488.2753,21
+56711,1008809.601,665764.656,850192.6377,21
+56712,1006014.824,668071.58,843642.1727,21
+56713,1003868.171,669976.3536,837294.4738,21
+56714,1002764.347,671684.4089,831229.2102,21
+56715,999362.262,673430.5402,825441.7716,21
+56716,999049.843,675339.9657,818539.5085,21
+56717,994734.0514,677075.9267,812929.8407,21
+56718,994696.7802,679243.9531,806010.3114,21
+56719,991164.3429,679617.9875,799730.4066,21
+56720,990338.0029,681392.5027,793744.3391,21
+56721,987923.1666,683119.7876,786881.286,21
+56722,985078.7526,684907.7718,780008.2013,21
+56723,984590.0866,686336.1287,774057.3375,21
+56724,981485.9333,666286.5489,767722.9175,21
+56725,980620.8218,662138.8967,759677.2855,21
+56726,976353.1263,662144.1003,754242.9639,21
+56727,976588.4927,662882.3922,746861.904,21
+56728,974065.7293,662039.3231,740724.7946,21
+56729,970935.6304,663182.1124,734502.496,21
+56730,971283.6161,663285.1522,728689.9394,21
+56731,967423.6419,663872.5827,722388.1197,21
+56732,966468.9005,664157.3547,715741.5737,21
+56733,963907.9497,665468.5709,710567.3128,21
+56734,962969.3193,664961.067,704660.2402,21
+56735,959818.9141,666388.7049,699196.982,21
+56736,958613.5365,667069.3557,693188.312,21
+56737,956745.7144,667532.4072,687294.115,21
+56738,954307.6388,668092.7291,682195.8126,21
+56739,953295.6666,669217.4704,675463.3348,21
+56740,950552.476,669475.7347,670625.343,21
+56741,950053.3302,670229.3096,664563.8696,21
+56742,946676.8398,671053.1325,658992.5118,21
+56743,945617.0363,671430.4555,652951.6235,21
+56744,943776.4311,673239.1269,647162.7896,21
+56745,941441.6372,673600.5245,642005.7295,21
+56746,940164.8968,674926.1863,635610.9183,21
+56747,937768.4388,675402.3895,630191.954,21
+56748,936916.584,676427.738,624466.1817,21
+56749,933899.3163,676853.409,618542.1813,21
+56750,933266.8208,677895.0331,612903.6256,21
+56751,930265.5793,682173.6555,607350.813,21
+56752,928763.5894,683833.0565,601296.851,21
+56753,928163.8496,683548.0194,595788.9613,21
+56754,924720.3913,684351.8403,590009.92,21
+56755,923750.2819,685057.2262,584152.7126,21
+56756,922506.1137,685987.741,578860.6813,21
+56757,919504.3533,686274.486,572587.0327,21
+56758,918722.6912,687088.3378,567469.796,21
+56759,916652.9178,687543.1223,561202.2509,21
+56760,914227.6764,687972.1583,555367.9664,21
+56761,912985.5899,690548.5918,549524.4372,21
+56762,910133.9276,688184.071,544500.6724,21
+56763,906863.2762,685908.8552,540382.7087,21
+56764,904541.7371,683951.9591,536117.7628,21
+56765,901470.5325,681041.2339,1480146.038,21
+56766,898261.7379,679733.5801,559476.0003,21
+56767,895897.7251,677052.6533,1026859.63,21
+56768,892181.1925,674826.1739,506242.3736,21
+56769,890399.6262,672823.7004,726965.6947,21
+56770,886629.1398,670777.9405,551324.5168,21
+56771,884089.3164,668564.6297,489204.9438,21
+56772,881231.65,666066.3383,512853.1131,21
+56773,877948.1956,664519.731,502735.3585,21
+56774,875386.4872,661598.5438,497415.5381,21
+56775,872226.3041,659640.4098,494337.7698,21
+56776,869615.0994,657398.1404,491336.5369,21
+56777,866661.7398,654927.0711,489405.4843,21
+56778,863618.4911,653194.0622,486018.0932,21
+56779,860386.9862,650381.6601,483510.7141,21
+56780,857814.4696,648302.3841,473996.8669,21
+56781,855073.2681,646088.0065,485738.5997,21
+56782,851505.415,643493.7238,473262.1542,21
+56783,849081.9624,641343.4303,1367222.438,21
+56784,847600.6274,639257.1078,466358.8902,21
+56785,844499.6145,636488.4879,918343.4841,21
+56786,841321.6315,634132.3265,418097.6911,21
+56787,838895.753,632108.4607,665880.8734,21
+56788,835690.6232,629930.9045,493920.9256,21
+56789,832995.559,627052.0005,633916.2275,21
+56790,829777.3949,625048.0442,395579.9905,21
+56791,827238.7386,622988.0206,659027.7118,21
+56792,823794.8901,620496.5615,450698.6828,21
+56793,821639.5203,618477.702,580830.9668,21
+56794,818380.3952,616058.6533,374108.7895,21
+56795,815351.1693,614231.7868,643879.5048,21
+56796,813361.7848,611585.427,427407.0656,21
+56797,809569.6384,611006.2268,549640.7813,21
+56798,807192.4409,609078.0998,354502.9452,21
+56799,804014.8742,606710.327,624120.3259,21
+56800,801955.0673,604219.4973,408076.6209,21
+56801,798502.9309,602060.9351,387500.6848,21
+56802,795858.2851,599472.1039,400679.4355,21
+56803,792733.6237,597487.9361,393911.7084,21
+56804,789968.8002,595031.1866,391227.4893,21
+56805,787311.1806,592128.6509,388635.3073,21
+56806,784510.4812,590427.3904,386331.7324,21
+56807,781491.3283,587694.5564,1180832.965,21
+56808,778843.205,585501.7326,343325.1007,21
+56809,773888.5543,582688.6273,738783.5818,21
+56810,771715.7829,580966.2403,304562.1518,21
+56811,768674.858,578011.1414,556403.3931,21
+56812,765455.9881,575969.4664,403051.0105,21
+56813,762968.5551,573548.5862,345542.0833,21
+56814,759961.6261,571130.2489,371786.5672,21
+56815,757018.0581,568716.5449,362408.8104,21
+56816,754137.0845,566664.7472,356844.7851,21
+56817,751289.4139,563727.5082,353647.2613,21
+56818,748696.4826,562003.6901,350922.2943,21
+56819,745297.0707,559320.5629,347493.8557,21
+56820,743174.3051,556968.3647,344805.121,21
+56821,737436.8723,549343.7376,343099.8231,21
+56822,735756.4796,546119.6012,340379.1187,21
+56823,734962.297,542572.3707,337756.998,21
+56824,733725.9255,540377.6138,334869.5857,21
+56825,733008.0484,538499.0165,332693.0765,21
+56826,731360.8919,537157.0019,329765.1002,21
+56827,730545.3746,534848.6342,327569.0857,21
+56828,729596.1962,532691.4475,324723.4169,21
+56829,727930.8072,530949.7258,322129.6503,21
+56830,727477.0359,528665.7281,319520.0798,21
+56831,726272.9007,527292.731,316848.6416,21
+56832,724989.7479,525002.9354,314014.6216,21
+56833,723782.9408,523240.7674,311494.6156,21
+56834,722996.7457,521324.0207,308936.7919,21
+56835,721771.6072,519316.7651,305956.8753,21
+56836,720898.8255,517535.6858,303322.5656,21
+56837,719336.2671,516025.4321,300443.1011,21
+56838,719136.5514,513606.6252,297876.8656,21
+56839,717175.3657,512626.4797,294881.5604,21
+56840,717198.1701,510703.2361,291889.5379,21
+56841,714848.1718,508637.7364,289523.5347,21
+56842,714952.7965,506475.0039,286460.3417,21
+56843,712946.0432,505100.6454,283511.5,21
+56844,712286.8007,503555.4667,280769.9837,21
+56845,711110.527,501477.8532,278142.9765,21
+56846,710606.3887,500208.8454,275557.8201,21
+56847,709120.2633,497927.5067,265326.9383,21
+56848,707673.5604,496840.2199,266183.5393,21
+56849,707441.9537,494780.0695,261721.8066,21
+56850,705964.066,493355.6779,258351.2224,21
+56851,705166.6506,491414.3387,254900.8069,21
+56852,703757.3706,489858.1251,251495.4555,21
+56853,703098.0647,489604.6579,248150.2891,21
+56854,701539.0467,486798.6295,244851.5803,21
+56855,700791.687,485065.2188,241363.6636,21
+56856,699715.5559,483225.8177,237913.8583,21
+56857,698432.563,481643.2988,234666.6585,21
+56858,697932.0676,480163.1223,231121.2058,21
+56859,696115.6021,478425.8949,228133.3018,21
+56860,695724.4112,477042.837,224887.6522,21
+56861,694203.7805,475700.8947,221480.7562,21
+56862,693551.8747,473593.231,217704.3009,21
+56863,691992.2385,472376.8144,214779.3915,21
+56864,691199.6655,470305.977,210921.0476,21
+56865,690379.6945,468831.8997,207524.531,21
+56866,688637.0403,467484.3313,204162.3293,21
+56867,688337.5661,466380.8894,200753.2301,21
+56868,686656.3916,464409.3712,197138.0754,21
+56869,686233.3323,462251.0577,195492.3022,21
+56870,684780.0834,460813.7169,191539.1792,21
+56871,684104.4787,459219.6996,188330.4593,21
+56872,682184.6684,457398.5518,185623.4716,21
+56873,682173.7088,455936.7462,184076.706,21
+56874,680223.8048,454136.7718,182601.3623,21
+56875,679702.9119,452675.2952,180714.4913,21
+56876,678761.7427,450704.4311,179557.291,21
+56877,677190.727,449041.893,177933.2614,21
+56878,676791.6105,447705.5337,176386.4008,21
+56879,675051.7691,445227.9772,175175.308,21
+56880,674557.848,444122.2988,173585.7351,21
+56881,704306.2361,461808.5407,196440.802,21
+56882,703767.0115,465163.8344,195587.9791,21
+56883,703667.9802,463952.157,194002.8841,21
+56884,703133.2665,462014.2113,193756.2026,21
+56885,702873.3838,461328.6944,191997.3243,21
+56886,702618.4327,460391.9834,191453.6722,21
+56887,702027.7935,459131.1486,190296.8171,21
+56888,701762.2154,458247.0276,188977.8381,21
+56889,701279.3074,457102.5812,188259.9769,21
+56890,701561.6107,455823.4743,186939.9152,21
+56891,700349.5248,454485.71,186299.799,21
+56892,700940.5729,453534.434,184526.5572,21
+56893,699753.0158,452109.3139,184235.9858,21
+56894,699697.4086,451312.2397,182698.8546,21
+56895,699485.2025,449679.2257,182178.5564,21
+56896,698667.0678,448872.4215,181215.4335,21
+56897,698707.5209,447243.5021,180443.1813,21
+56898,697990.6203,446484.8851,178938.0684,21
+56899,697873.4002,444601.6544,178169.4922,21
+56900,697319.1591,443944.0816,177624.5415,21
+56901,697534.9032,442499.0595,176955.871,21
+56902,695956.7781,441111.3451,176098.3649,21
+56903,696668.6185,439801.6512,175015.1612,21
+56904,695270.6335,438968.9239,174267.4091,21
+56905,695636.5855,437000.0121,173254.4384,21
+56906,694728.7517,436463.5759,172619.4717,21
+56907,694600.4959,434457.3231,171521.0391,21
+56908,693894.1893,433796.3729,170514.9429,21
+56909,693715.7427,431997.1514,169678.0237,21
+56910,693300.3255,431074.0399,168942.576,21
+56911,692651.0105,429014.4596,167072.7593,21
+56912,692151.2524,428289.2093,166361.933,21
+56913,691893.617,426304.337,165001.2946,21
+56914,691680.1999,425756.2155,164208.0469,21
+56915,691318.8551,423635.9164,163210.2052,21
+56916,690401.134,423236.0537,161982.6527,21
+56917,690979.2148,421192.8121,160913.4213,21
+56918,689484.5319,420547.8419,160020.1136,21
+56919,689548.2601,418603.1344,158804.8583,21
+56920,689337.6643,417929.5099,157650.2453,21
+56921,688551.1464,416378.7942,156995.2446,21
+56922,688433.8538,415216.1455,155902.7071,21
+56923,687637.958,413943.7841,154539.9888,21
+56924,687913.3454,412579.2021,153873.4777,21
+56925,686839.1121,411701.8908,152980.5248,21
+56926,686745.5296,410005.5922,151629.4487,21
+56927,686612.4291,409050.4842,150860.398,21
+56928,685488.8354,407836.1775,149777.9009,21
+56929,685658.8399,406258.4116,149500.1188,21
+56930,684819.7019,405469.2933,148072.8879,21
+56931,685161.9001,403908.6923,147479.8347,21
+56932,684181.0887,402880.3284,146722.7486,21
+56933,683538.9991,401739.4447,145347.6188,21
+56934,683787.6458,400237.074,144698.0188,21
+56935,683017.0159,399255.8009,143390.5904,21
+56936,682702.2504,397931.2014,142573.7717,21
+56937,682147.8008,396906.1301,141707.59,21
+56938,681645.6885,395568.5159,140584.7414,21
+56939,681828.1863,394631.3701,139476.5347,21
+56940,680701.9046,392865.7813,138701.7487,21
+56941,649880.0551,373797.8422,115713.873,21
+56942,648097.3265,373218.7433,113904.9329,21
+56943,647163.3276,373932.6032,113005.0472,21
+56944,645439.2656,373740.2528,111463.2966,21
+56945,644714.6695,374356.5695,110279.3603,21
+56946,643236.3474,374338.4488,109163.7931,21
+56947,642181.7837,374733.0772,107930.959,21
+56948,641093.4145,374437.3041,106540.7066,21
+56949,639841.2353,374863.2402,105524.4255,21
+56950,638541.3446,374909.8172,104170.5954,21
+56951,637098.3837,374961.0119,103004.1699,21
+56952,636670.2037,375385.7088,101696.6895,21
+56953,634572.5957,375308.2812,100723.595,21
+56954,634214.1497,373976.8901,99335.98657,21
+56955,632712.0248,373246.0516,98132.82996,21
+56956,631238.9699,373907.0922,96781.08195,21
+56957,630694.0192,373350.2304,95746.67888,21
+56958,629008.2469,373098.8339,94591.95646,21
+56959,628140.3165,373298.5379,93355.10347,21
+56960,626964.5938,372981.2102,91880.94502,21
+56961,625681.2484,372802.9158,91106.52669,21
+56962,624373.8309,372909.1711,89485.64423,21
+56963,623809.6999,372920.4447,88557.66563,21
+56964,622272.9709,372837.8923,87143.05756,21
+56965,621078.2577,372693.0255,85929.87585,21
+56966,620228.9562,373001.9878,84749.60349,21
+56967,618994.5859,372596.9039,83484.14889,21
+56968,617715.3672,372825.0645,82082.46562,21
+56969,616781.1865,372999.7414,80963.71569,21
+56970,615468.35,373334.7599,28825.35072,21
+56971,614869.7182,373410.795,27970.88497,21
+56972,613798.8923,373880.2607,27727.29132,21
+56973,613372.0538,373771.6846,27362.91515,21
+56974,612335.9131,374139.7037,26864.25776,21
+56975,611304.2377,374671.648,26753.95757,21
+56976,611209.2392,374565.6955,25984.69196,21
+56977,609664.2062,375157.404,25753.15304,21
+56978,609661.1336,375532.0943,25379.99091,21
+56979,608402.9525,375373.9744,24956.39761,21
+56980,607885.3904,376336.6285,24732.36864,21
+56981,606934.8289,376193.2347,24223.51601,21
+56982,606742.4033,376778.8031,23974.01665,21
+56983,605500.6922,377243.5039,22604.73915,21
+56984,605142.5847,377649.4679,22607.05918,21
+56985,604534.2356,377796.2733,21931.00818,21
+56986,603710.5239,378554.6822,21973.29669,21
+56987,602787.7689,378576.572,21110.47931,21
+56988,602510.6699,379378.7078,21210.78631,21
+56989,601767.2564,379539.8708,20477.96209,21
+56990,601057.9569,380175.2889,20497.85289,21
+56991,600181.5478,380533.4552,19819.03114,21
+56992,600083.1183,380899.5277,20179.74503,21
+56993,598909.2057,381580.8416,19844.58735,21
+56994,598612.4357,381982.5558,19247.97088,21
+56995,597969.1866,382455.6721,19298.13588,21
+56996,597399.6502,382588.8398,18989.22814,21
+56997,596723.2859,383557.351,18472.63972,21
+56998,595922.5717,383885.819,18454.48615,21
+56999,595669.8997,384258.2604,18117.99511,21
+57000,594656.7492,384982.5991,17711.30759,21
+57001,600170.4757,389162.9994,24138.67287,21
+57002,600162.9203,389355.826,23918.25075,21
+57003,600279.4883,389024.3828,23788.48962,21
+57004,600657.7198,388602.7969,23814.45974,21
+57005,601025.6389,388360.3732,23365.57651,21
+57006,601506.9532,388206.6975,23279.91911,21
+57007,601580.4363,387819.9477,23228.14093,21
+57008,601647.8174,387428.153,22966.22638,21
+57009,602163.3578,387600.8744,22912.73394,21
+57010,602623.4094,386927.5305,22722.02156,21
+57011,602581.085,386566.234,22607.83045,21
+57012,603221.202,386537.0372,22390.45999,21
+57013,603093.5926,386417.5648,22298.93491,21
+57014,604267.6327,385559.2881,22280.66295,21
+57015,603772.7894,385763.1856,22466.07069,21
+57016,604557.8455,385411.3191,22643.25137,21
+57017,604694.9533,384313.7576,22274.6853,21
+57018,605162.5325,383841.5252,22354.20006,21
+57019,605291.0463,383578.2036,22476.55508,21
+57020,605757.8967,382762.8434,22790.15853,21
+57021,606080.4575,381981.9069,22974.03392,21
+57022,606708.8664,381547.3388,22808.34976,21
+57023,606630.7112,380873.5725,22900.63021,21
+57024,607612.2577,380254.4969,22934.56112,21
+57025,607225.7912,379346.9642,22948.06423,21
+57026,608133.3695,378984.647,22732.33723,21
+57027,608205.7572,378244.9907,23062.83682,21
+57028,609121.5014,377750.7986,22912.84667,21
+57029,608852.149,376663.7317,23497.19818,21
+57030,609799.8568,376514.1076,23242.79691,21
+57031,609720.0828,375504.2462,23431.45808,21
+57032,610238.1312,374428.3725,23144.40489,21
+57033,610460.5518,374530.7407,23267.37194,21
+57034,610425.8681,373400.7281,23041.90901,21
+57035,611035.0181,373078.9785,22860.79956,21
+57036,611326.5798,372469.3569,22936.89963,21
+57037,610987.2172,371853.9678,22763.35507,21
+57038,611746.0688,371332.2349,22792.06804,21
+57039,611840.0711,370540.3215,22519.28032,21
+57040,611964.2631,370541.4051,22592.17348,21
+57041,612542.8155,369249.5866,22249.66738,21
+57042,612207.0372,369242.4036,22563.81101,21
+57043,612921.7128,368432.1027,22066.93714,21
+57044,612770.4605,367870.3678,22165.87084,21
+57045,613351.223,367214.8035,22159.59973,21
+57046,612800.1282,366386.7002,21773.76249,21
+57047,614126.12,366102.902,21954.3113,21
+57048,613660.9339,365297.8028,21778.16228,21
+57049,613839.7912,364679.2985,21654.245,21
+57050,614138.3409,364376.4433,21449.86516,21
+57051,614313.0478,363218.623,21585.01301,21
+57052,614660.6901,362796.8503,21457.16907,21
+57053,614725.9205,362531.5475,21145.36618,21
+57054,615018.2261,361634.7451,21371.32461,21
+57055,615241.7031,361119.5668,21062.89867,21
+57056,615204.7448,360628.1843,21033.05888,21
+57057,615640.8099,359642.2682,20873.95916,21
+57058,615872.6391,359555.3527,20833.18189,21
+57059,615998.5201,358793.1954,20759.59813,21
+57060,615968.5022,358312.2381,20644.20147,21
+57061,611429.4644,352250.1205,13812.73426,21
+57062,610781.886,351274.1065,13569.30754,21
+57063,610931.0871,350435.6963,13625.00783,21
+57064,610203.4545,349624.269,13607.42066,21
+57065,610448.6068,349225.917,13165.21813,21
+57066,609780.0005,347999.1756,13407.18398,21
+57067,609832.9118,347446.4454,13167.31976,21
+57068,609222.9627,346772.2689,13403.03719,21
+57069,609274.6923,346182.4706,12857.21293,21
+57070,609171.7115,344841.1923,13193.24933,21
+57071,608173.0894,344917.3538,12978.9644,21
+57072,608743.4871,343577.1736,12885.65874,21
+57073,608213.948,343178.7903,12860.5271,21
+57074,607781.1942,342158.9369,12768.76221,21
+57075,607421.6912,341730.5231,12799.72399,21
+57076,607530.3616,341117.6507,12665.24429,21
+57077,606965.6991,340345.4166,12654.76904,21
+57078,606902.8348,339660.894,12488.1549,21
+57079,606463.5506,338992.8803,12573.51687,21
+57080,605983.6012,338415.957,12454.39062,21
+57081,606130.8068,337731.9951,12489.09292,21
+57082,605717.7414,337078.8339,12246.84628,21
+57083,605331.8157,336507.6068,12376.94663,21
+57084,604733.0474,335659.9905,12048.83506,21
+57085,605206.5041,335475.899,12375.76402,21
+57086,604194.5683,334505.4177,12043.75182,21
+57087,604415.9474,334049.4487,12177.55912,21
+57088,603623.8102,333475.3016,11834.36013,21
+57089,603469.6882,333072.5818,12179.94946,21
+57090,603621.8633,332741.5303,11835.97427,21
+57091,602612.1324,331970.7703,11976.60327,21
+57092,603380.2734,332145.2226,11981.3158,21
+57093,602622.3858,332033.2498,11882.91374,21
+57094,602642.3628,330589.2533,12104.59457,21
+57095,603056.7324,329452.7821,12006.95491,21
+57096,602657.8428,329327.8523,12143.29938,21
+57097,602746.5427,328574.535,11926.86249,21
+57098,602583.0682,327960.4523,12293.78108,21
+57099,602655.7004,327565.2711,12050.75628,21
+57100,602533.8655,326940.7921,12289.53118,21
+57101,602449.6193,326198.1681,11652.50646,21
+57102,602668.5278,325934.8207,11850.11587,21
+57103,602160.7382,324652.7029,11776.93526,21
+57104,602857.1385,325139.9968,11662.15284,21
+57105,602349.4067,323825.4367,12152.63179,21
+57106,602519.8153,323593.3913,11668.64799,21
+57107,602495.0821,323047.8784,12159.40817,21
+57108,602628.3478,322570.5691,12099.05933,21
+57109,602324.0984,321901.7525,12061.02864,21
+57110,602364.0701,321843.1898,12210.57183,21
+57111,602933.8168,321991.9559,12109.32151,21
+57112,602282.8737,320509.2805,12335.27298,21
+57113,602678.4176,319889.4826,12380.24826,21
+57114,602793.1748,319100.579,12488.35444,21
+57115,602358.088,319296.0779,12399.67175,21
+57116,603015.0891,318145.5003,12642.34692,21
+57117,602444.9945,317769.9033,12653.81368,21
+57118,603015.1017,317328.3988,12794.78174,21
+57119,603137.9367,316624.678,12678.06782,21
+57120,602739.681,315766.9924,12945.25521,21
+57121,603887.4595,318053.3447,13065.69002,21
+57122,603877.215,320481.834,13335.82001,21
+57123,604396.8244,322920.0586,13466.69829,21
+57124,605006.7337,325045.0065,13489.45814,21
+57125,605708.1787,327628.0374,14101.86647,21
+57126,605985.5214,330514.9543,14097.47882,21
+57127,606980.7414,333356.7863,14166.25659,21
+57128,606525.1255,334793.8341,14716.09281,21
+57129,607703.3865,337106.5457,14556.66271,21
+57130,608252.7378,340628.7754,14924.14788,21
+57131,608597.1688,342348.1501,15378.11645,21
+57132,608905.466,345389.0244,15210.17616,21
+57133,609951.9147,347779.049,15792.50023,21
+57134,609928.4673,350152.7022,15812.9541,21
+57135,610920.7091,352914.0583,16077.16912,21
+57136,610951.6645,355269.0066,16356.25667,21
+57137,611812.646,358220.5983,16576.90413,21
+57138,612462.5295,360176.8378,16857.47825,21
+57139,612534.7395,363577.9132,17081.39531,21
+57140,613376.7292,367016.269,17395.80374,21
+57141,614119.6214,368069.441,17595.73809,21
+57142,614351.4062,370806.0681,17769.79797,21
+57143,614990.1404,373726.3369,18148.42552,21
+57144,615341.741,375872.0506,18385.27231,21
+57145,616626.9832,378711.0569,18647.4501,21
+57146,616123.0081,381132.17,18914.51373,21
+57147,617442.0493,383966.4746,19173.3844,21
+57148,617499.5419,386947.8792,19529.15272,21
+57149,618536.2318,389212.8837,19585.56128,21
+57150,618725.1267,392262.9172,20154.50508,21
+57151,619404.3431,394366.0466,20202.08444,21
+57152,619850.7643,397086.8612,20451.77008,21
+57153,620503.3822,399269.0076,20716.60053,21
+57154,620664.5788,401921.0507,20837.90685,21
+57155,621600.2646,404128.4465,21228.90643,21
+57156,622115.1487,406579.7406,21368.08085,21
+57157,622210.5623,412318.9485,21476.06182,21
+57158,623188.7298,416564.5925,21905.97362,21
+57159,623373.0595,418066.9138,21988.83316,21
+57160,623876.6008,421808.4698,22182.82223,21
+57161,624586.0241,424495.8519,22715.4918,21
+57162,625184.4667,427643.5482,22684.64214,21
+57163,625248.3262,430773.3724,22803.95073,21
+57164,626010.7591,432945.4177,23423.83552,21
+57165,626561.6911,436617.2438,23207.39377,21
+57166,627131.8345,439249.8524,23796.47733,21
+57167,627427.0087,441880.7281,23851.50111,21
+57168,628111.2086,444856.3739,24312.6002,21
+57169,628236.0801,447591.1915,24238.80643,21
+57170,629020.3798,450522.5944,24728.54242,21
+57171,629264.6366,453280.2292,24654.84018,21
+57172,630160.6372,455952.1459,25331.15393,21
+57173,630134.0606,458898.9134,25286.20071,21
+57174,630707.1228,461284.5158,25745.86733,21
+57175,631334.6518,464204.5199,25815.23362,21
+57176,631899.5916,467182.2476,26125.95017,21
+57177,632035.0895,469485.3758,26456.83259,21
+57178,632745.1839,472471.741,26558.34821,21
+57179,632754.3305,475126.7359,26935.33873,21
+57180,633545.9783,477413.4855,27214.21395,21
+57181,690731.0563,536615.3479,77400.17156,21
+57182,694446.8844,544470.386,80913.15257,21
+57183,696136.8688,550332.246,81963.70035,21
+57184,697712.1073,553334.6989,83301.25633,21
+57185,700144.3027,557661.1254,84259.70088,21
+57186,701458.7197,562468.1036,85685.94512,21
+57187,705716.9709,565815.4228,86344.2495,21
+57188,715097.7763,570662.8177,87403.96801,21
+57189,711813.4868,574408.5433,88568.43373,21
+57190,715365.471,581478.0293,89525.53683,21
+57191,717542.7417,589145.3919,90365.42402,21
+57192,719294.5295,591139.4048,91634.42055,21
+57193,721634.4502,595636.0754,92364.66666,21
+57194,723102.1007,599990.8855,93472.24251,21
+57195,724972.3165,604152.5972,94418.59041,21
+57196,727353.9105,608781.6637,95432.29763,21
+57197,728951.0089,612045.1464,96550.69303,21
+57198,730748.0703,616873.2166,97095.01667,21
+57199,732488.9262,620238.9395,98519.40944,21
+57200,734720.7866,625060.3327,99018.69265,21
+57201,736431.0448,628283.869,100621.8676,21
+57202,737884.3393,632743.4701,101172.6692,21
+57203,740136.0964,636570.5132,102186.603,21
+57204,763379.0127,640453.1939,103119.1178,21
+57205,753280.0887,644377.7449,104309.4104,21
+57206,760035.9386,649503.3368,105111.2567,21
+57207,763145.9464,652091.9267,106333.4969,21
+57208,764081.4787,656039.3118,107159.2907,21
+57209,768667.0965,660222.5139,108100.3892,21
+57210,770755.5502,663268.0695,109262.8334,21
+57211,771960.9348,667649.3026,110005.7114,21
+57212,780930.626,671069.313,110950.4167,21
+57213,781722.2327,675285.6294,112190.669,21
+57214,785857.6706,678333.1845,112794.3731,21
+57215,786983.9089,682941.0779,114005.3874,21
+57216,788887.5498,685748.3418,114704.3998,21
+57217,792003.5299,690589.0539,115628.4737,21
+57218,792843.9846,693214.5,116558.7915,21
+57219,795614.495,697703.6816,117729.8328,21
+57220,797170.3923,700997.5262,117994.609,21
+57221,799335.7264,704519.8367,119810.5399,21
+57222,801325.9159,708751.7811,120008.426,21
+57223,803299.7481,711733.563,120949.8744,21
+57224,805186.3844,716056.9768,122053.4394,21
+57225,807106.8942,719238.227,122777.2968,21
+57226,808838.0632,722891.5781,123600.143,21
+57227,811115.0078,726539.0236,124698.4404,21
+57228,812347.8631,730431.9592,125629.2671,21
+57229,813213.4894,733739.6897,126363.4166,21
+57230,816583.072,737508.4265,127228.2436,21
+57231,817812.1075,741432.1616,128425.9867,21
+57232,818712.6438,744435.8506,129060.6166,21
+57233,821591.0797,748332.287,130576.359,21
+57234,822175.058,751810.651,130624.7518,21
+57235,825187.9408,755413.252,132372.5941,21
+57236,826144.3714,759061.4031,132614.3675,21
+57237,827258.1453,762050.8075,134161.1874,21
+57238,829499.0389,766473.8744,134571.9344,21
+57239,830460.582,768928.1384,135955.2932,21
+57240,833251.3631,773293.4796,137112.534,21
+57241,892468.2504,796631.2342,158287.9937,21
+57242,899994.8999,799281.9167,160941.6399,21
+57243,900535.1695,801700.8547,161507.4479,21
+57244,903976.2596,802984.0277,162964.6621,21
+57245,904616.652,805472.1628,163999.8673,21
+57246,907870.5478,806850.0891,165046.7682,21
+57247,908564.3396,809523.4289,165841.4669,21
+57248,909609.7874,810530.4673,167188.6284,21
+57249,913293.8349,812430.5163,168117.9492,21
+57250,912186.5652,814660.3447,168822.9945,21
+57251,916193.0779,816329.8022,170473.5393,21
+57252,915622.0111,818066.3731,174683.2029,21
+57253,918121.0657,819904.4347,176253.1381,21
+57254,920366.3339,822071.759,177192.7099,21
+57255,920286.2748,823123.7665,178185.4949,21
+57256,921857.767,825213.8862,179172.6553,21
+57257,923967.9366,827077.9236,179986.1623,21
+57258,926014.1996,828495.48,181089.5991,21
+57259,925153.1398,830017.6064,181825.0007,21
+57260,928569.6886,832236.672,183424.4606,21
+57261,928993.9251,833787.9372,183409.4131,21
+57262,930124.5498,835227.8151,184968.4322,21
+57263,931395.4649,836961.7505,185889.3401,21
+57264,932800.1959,838492.533,186501.5093,21
+57265,933910.8516,840286.3461,187767.0975,21
+57266,935220.6231,841967.7668,188485.6124,21
+57267,936276.769,843526.5355,189214.0791,21
+57268,937904.2424,844553.9081,192939.5977,21
+57269,938132.6196,847244.5293,194699.2498,21
+57270,940646.7131,847690.5311,195345.4935,21
+57271,940337.8709,850022.9888,340623.5267,21
+57272,942295.6765,851103.3627,339294.9765,21
+57273,943453.2036,852743.0241,337987.8163,21
+57274,944670.9058,854806.3122,335869.4929,21
+57275,944310.9594,855298.4717,334887.098,21
+57276,946777.2261,857504.7597,333757.5507,21
+57277,947886.7797,858900.2488,331959.27,21
+57278,948364.4055,860058.9542,330774.3193,21
+57279,949493.3838,862239.2075,329819.7221,21
+57280,950817.2324,862691.553,328549.875,21
+57281,950722.4869,865076.4558,327222.4354,21
+57282,953792.7988,865830.334,326737.4717,21
+57283,952213.8281,867560.9485,324622.531,21
+57284,955765.9001,869211.3177,324523.6334,21
+57285,955398.6449,870092.68,323217.9246,21
+57286,956045.4265,872017.2047,322269.1986,21
+57287,957592.4489,872902.8745,321578.5029,21
+57288,958981.8228,874886.7414,320881.0641,21
+57289,958843.6082,875743.4851,319698.5639,21
+57290,960438.5605,877069.6634,319202.909,21
+57291,960794.7028,879178.195,318714.8776,21
+57292,962265.8573,879306.3523,317061.9102,21
+57293,963031.6253,881466.5151,317250.7136,21
+57294,964302.0214,882273.8404,316039.8698,21
+57295,964297.9703,884245.2405,315881.4386,21
+57296,965390.0481,884461.2594,314866.8138,21
+57297,966823.9235,886999.2725,314169.1711,21
+57298,967349.7917,886776.7317,313936.9537,21
+57299,968627.2783,888707.5004,312963.8462,21
+57300,969046.702,888936.8828,312955.3301,21
+57301,970907.4561,892402.8141,312039.8329,21
+57302,972791.042,894737.4085,312193.1672,21
+57303,975799.9689,896768.2124,311225.6795,21
+57304,976486.7061,899743.4987,311325.7124,21
+57305,979319.9322,901173.3072,311066.0498,21
+57306,980347.1584,904510.9327,309941.6495,21
+57307,981585.61,905623.9712,310760.755,21
+57308,984689.2184,908643.7309,309985.3021,21
+57309,985238.7563,910180.6725,309618.5781,21
+57310,987646.8136,912841.1965,309557.7514,21
+57311,989324.7532,915569.9845,309564.5636,21
+57312,991142.8,916763.4786,308886.3923,21
+57313,992502.585,919143.5794,309395.9863,21
+57314,994205.821,922121.9325,309973.8273,21
+57315,996308.2187,923754.2915,309715.1588,21
+57316,997518.7993,932030.7925,309604.298,21
+57317,999742.0492,933774.8618,309569.56,21
+57318,1001440.523,936520.825,309830.0919,21
+57319,1002855.763,939759.2341,309706.0759,21
+57320,1004664.325,941720.9761,309489.5795,21
+57321,1006117.531,944896.8274,310058.2603,21
+57322,1008462.648,947723.0806,309960.392,21
+57323,1009318.145,951113.8815,309793.4688,21
+57324,1011506.137,953232.8447,309787.4055,21
+57325,1012768.91,955581.068,310667.9933,21
+57326,1014975.106,958632.1916,309845.6344,21
+57327,1016280.289,961437.6007,310514.8726,21
+57328,1018076.967,964361.3737,310801.9864,21
+57329,1019267.609,965783.8616,310781.3152,21
+57330,1021749.933,970794.4745,310608.7344,21
+57331,1023105.196,970930.125,311715.9618,21
+57332,1024914.619,975246.8177,310928.3773,21
+57333,1025847.539,977179.9797,311948.2208,21
+57334,1028450.52,980472.5708,312150.3824,21
+57335,1029724.832,982290.328,311689.273,21
+57336,1031208.951,985889.7575,312834.6356,21
+57337,1032911.131,987924.6949,313038.7482,21
+57338,1034805.798,990601.5568,312660.1863,21
+57339,1035744.832,993280.2309,313610.4413,21
+57340,1038419.624,995657.4043,313689.0198,21
+57341,1039636.615,997890.7407,313800.7883,21
+57342,1040730.43,1001227.373,314564.3339,21
+57343,1042904.891,1003702.748,314954.9924,21
+57344,1044859.133,1005208.664,314856.3669,21
+57345,1045848.882,1009698.308,315610.9469,21
+57346,1048010.746,1010433.363,316237.9234,21
+57347,1048898.41,1013923.169,316365.3622,21
+57348,1051362.258,1016732.674,316492.8927,21
+57349,1052526.118,1019213.461,317163.2587,21
+57350,1053590.035,1020803.025,317293.6255,21
+57351,1056303.588,1024511.897,317660.6152,21
+57352,1057154.02,1025858.402,318443.6112,21
+57353,1058666.78,1029632.092,318876.4056,21
+57354,1061187.077,1031671.691,318767.4712,21
+57355,1061282.674,1033478.826,319759.1075,21
+57356,1064966.791,1037451.436,319968.8479,21
+57357,1064371.815,1038650.175,320732.6655,21
+57358,1068255.327,1041279.68,320503.184,21
+57359,1067439.732,1045421.772,321909.1003,21
+57360,1071070.375,1045084.787,321338.5371,21
+57361,1078009.534,1057108.235,326554.878,21
+57362,1080240.669,1057617.991,324687.8632,21
+57363,1081470.691,1057980.013,306413.5425,21
+57364,1080200.437,1060791.59,325498.1322,21
+57365,1082620.719,1061272.082,428380.879,21
+57366,1082131.045,1061095.558,304470.0983,21
+57367,1084214.461,1063480.112,335485.3588,21
+57368,1082164.364,1064081.737,332194.9502,21
+57369,1084955.358,1065337.522,331817.7167,21
+57370,1083253.276,1065095.897,331941.4607,21
+57371,1084949.742,1066441.696,332852.4055,21
+57372,1085749.569,1068333.603,977777.941,21
+57373,1085566.664,1068205.727,264669.8604,21
+57374,1085996.574,1068405.769,551955.9118,21
+57375,1086072.385,1070720.886,246243.0219,21
+57376,1087628.72,1070670.057,475651.2676,21
+57377,1086918.16,1071026.6,363309.8017,21
+57378,1087550.103,1072591.67,327455.7591,21
+57379,1088412.042,1073264.2,347801.4837,21
+57380,1088313.478,1073690.27,343534.0293,21
+57381,1088074.789,1075051.565,342731.7086,21
+57382,1089846.849,1075512.786,342356.9433,21
+57383,1088699.459,1076538.289,343108.2879,21
+57384,1090058.404,1075867.337,343758.223,21
+57385,1090231.384,1078666.963,343944.0465,21
+57386,1090015.545,1078297.37,347566.5564,21
+57387,1090255.945,1079265.885,351191.0989,21
+57388,1091697.377,1079735.193,350432.0717,21
+57389,1090420.208,1081007.446,350956.7145,21
+57390,1092247.769,1080484.469,354280.0891,21
+57391,1091248.215,1081312.343,355220.0049,21
+57392,1093092.447,1081910.083,353105.2702,21
+57393,1091117.19,1082612.524,356644.5264,21
+57394,1093896.439,1083248.206,330645.4974,21
+57395,1092361.289,1083901.04,497401.6908,21
+57396,1093437.979,1084116.523,328860.3922,21
+57397,1092869.861,1085411.382,368650.4831,21
+57398,1095003.726,1086049.341,364688.2677,21
+57399,1092722.406,1086377.391,364231.5386,21
+57400,1094742.454,1087063.369,366627.844,21
+57401,1094713.328,1088168.871,367244.3529,21
+57402,1094319.523,1087980.53,369815.2611,21
+57403,1095170.838,1089257.76,1025030.888,21
+57404,1095361.101,1089042.787,306378.8682,21
+57405,1095250.372,1091143.088,601302.1439,21
+57406,1095357.203,1089587.154,288566.3991,21
+57407,1095963.593,1091997.061,519067.4439,21
+57408,1095458.692,1091874.901,404508.8808,21
+57409,1097660.128,1092816.434,368216.8256,21
+57410,1095205.385,1093310.378,389669.5912,21
+57411,1097447.521,1093318.61,387068.6301,21
+57412,1097522.837,1094672.26,385299.8013,21
+57413,1096116.283,1094986.997,387261.6923,21
+57414,1097592.964,1095115.978,387679.9803,21
+57415,1098443.331,1096489.258,389877.8448,21
+57416,1097062.745,1096369.622,389804.3046,21
+57417,1098336.162,1096852.21,391390.6419,21
+57418,1098933.99,1097912.169,392967.1642,21
+57419,1097630.541,1098388.89,394430.1795,21
+57420,1098322.947,1099275.452,392097.4224,21
+57421,1099572.23,1098829.091,310869.2786,21
+57422,1099754.908,1102016.296,572167.2297,21
+57423,1100226.091,1102503.573,354719.5269,21
+57424,1100301.181,1102452.973,411060.7046,21
+57425,1101363.742,1104876.938,403079.6032,21
+57426,1099582.102,1104823.244,403276.2104,21
+57427,1100889.691,1105795.377,406340.7774,21
+57428,1102094.952,1106450.383,405888.9172,21
+57429,1101048.578,1106902.809,408804.8163,21
+57430,1101247.208,1108278.379,410054.8615,21
+57431,1101590.798,1109009.794,410988.5386,21
+57432,1102311.808,1109091.295,412990.4602,21
+57433,1101468.991,1110895.601,413657.3494,21
+57434,1102216.577,1111201.064,416164.4724,21
+57435,1102366.162,1111946.051,417491.9243,21
+57436,1102380.951,1112993.516,417501.1842,21
+57437,1103012.531,1112846.2,420658.0883,21
+57438,1101788.029,1115084.354,421036.4653,21
+57439,1103925.444,1114662.114,423950.3623,21
+57440,1102421.39,1116821.661,423046.5017,21
+57441,1103062.833,1117134.006,426024.3275,21
+57442,1103532.25,1117917.219,427368.5858,21
+57443,1103149.839,1118967.656,427774.373,21
+57444,1104114.893,1119719.324,430860.2164,21
+57445,1103175.405,1119893.624,431076.9498,21
+57446,1104210.517,1121422.375,432572.4327,21
+57447,1104073.777,1122089.338,434319.9474,21
+57448,1104288.474,1122683.463,435791.1076,21
+57449,1103706.881,1122605.67,438027.0825,21
+57450,1105194.253,1124439.782,439456.0941,21
+57451,1103139.52,1124962.353,441034.9719,21
+57452,1105850.38,1124785.647,443511.3454,21
+57453,1104160.719,1126891.222,444184.4182,21
+57454,1104493.204,1127095.804,446269.0534,21
+57455,1105132.369,1127676.196,448161.9212,21
+57456,1105017.076,1128146.497,449650.6864,21
+57457,1105418.497,1129055.361,451233.5077,21
+57458,1104870.326,1130421.111,453668.0718,21
+57459,1106078.517,1129726.167,454129.5524,21
+57460,1104497.209,1132106.758,456490.7158,21
+57461,1106726.938,1132417.769,458461.417,21
+57462,1104910.07,1131231.512,459961.5911,21
+57463,1106231.02,1134311.773,461297.8763,21
+57464,1105482.513,1134807.819,463394.7706,21
+57465,1107120.044,1133619.615,465240.0258,21
+57466,1104953.448,1136597.938,466339.2053,21
+57467,1106927.588,1136076.982,468660.498,21
+57468,1106035.732,1136872.551,470192.9763,21
+57469,1106528.306,1137854.302,471168.3571,21
+57470,1106697.667,1138253.318,474139.5751,21
+57471,1105867.712,1138768.712,475731.8838,21
+57472,1108457.417,1140578.211,476076.8358,21
+57473,1104907.786,1140011.657,480218.8868,21
+57474,1108423.436,1141548.038,480103.9937,21
+57475,1106264.481,1141483.192,481245.5746,21
+57476,1106991.113,1142808.263,484293.5681,21
+57477,1107931.35,1142944.287,485437.3715,21
+57478,1106049.871,1144016.206,486682.2356,21
+57479,1107961.58,1144520.267,488822.044,21
+57480,1107686.437,1144935.003,490862.9181,15.6
+57481,0,0,0,15.6
+57482,0,3.651513833,0,15.6
+57483,0,0,0,15.6
+57484,0,137.5993755,0,15.6
+57485,0,0,0,15.6
+57486,0,0,1273460.953,15.6
+57487,0,0,0,15.6
+57488,0,104.4953889,0,15.6
+57489,0,0,0,15.6
+57490,0,0,0,15.6
+57491,0,0,0,15.6
+57492,0,78.02184317,0,15.6
+57493,0,0,0,15.6
+57494,0,0,0,15.6
+57495,0,0,0,15.6
+57496,0,69.10379007,0,15.6
+57497,0,0,0,15.6
+57498,0,0,0,15.6
+57499,0,368155.7069,0,15.6
+57500,0,0,0,15.6
+57501,0,60.33160393,0,15.6
+57502,0,0,0,15.6
+57503,0,0,0,15.6
+57504,50972.53274,0,0,15.6
+57505,844.0069052,0,0,15.6
+57506,4075.22522,0,0,15.6
+57507,20653.39028,0,0,15.6
+57508,12639.25631,0,0,15.6
+57509,13927.79891,0,0,15.6
+57510,14360.55855,0,0,15.6
+57511,14572.22169,0,0,15.6
+57512,14831.27956,135.1308402,783894.5893,15.6
+57513,15029.84011,0,0,15.6
+57514,15256.8701,0,0,15.6
+57515,15480.52205,0,0,15.6
+57516,15693.88935,7.636354864,283511.5786,15.6
+57517,15909.33372,0,155887.5679,15.6
+57518,16122.48923,120.1099899,109595.8019,15.6
+57519,16302.41126,0,130690.8297,15.6
+57520,16492.1409,0,122764.0604,15.6
+57521,16688.23732,0,1063989.955,15.6
+57522,16895.33159,0,111998.8254,15.6
+57523,17050.18525,88.67829321,109898.9567,15.6
+57524,17266.17705,0,107913.4093,15.6
+57525,17407.85883,0,105988.39,15.6
+57526,17595.00887,0,104109.8094,15.6
+57527,17787.49479,0,102273.3264,15.6
+57528,17926.03567,0,100463.6087,15.6
+57529,18098.16775,0,98698.82301,15.6
+57530,18266.10358,87.66155124,96856.95759,15.6
+57531,18439.81755,0,93185.19274,15.6
+57532,357969.5113,0,230245.2825,15.6
+57533,18733.85849,0,2485.684556,15.6
+57534,0,0,190945.7355,15.6
+57535,0,0,132305.3585,15.6
+57536,0,7.972086499,120890.9732,15.6
+57537,70957.99231,0,2880.56559,15.6
+57538,30.17100734,368260.1399,191270.9494,15.6
+57539,14638.15385,0,86662.54806,15.6
+57540,25658.23585,0,0,15.6
+57541,19083.16203,0,0,15.6
+57542,20359.55128,319.0679481,0,15.6
+57543,20571.90445,0,0,15.6
+57544,20769.70438,0,0,15.6
+57545,20982.65755,0,0,15.6
+57546,21230.25147,0,0,15.6
+57547,21378.74339,0,0,15.6
+57548,21589.23168,0,0,15.6
+57549,21778.28291,0,0,15.6
+57550,21975.7601,0,0,15.6
+57551,22167.25982,0,0,15.6
+57552,22363.99744,0,0,15.6
+57553,22510.96316,0,0,15.6
+57554,22794.73789,0,0,15.6
+57555,22873.42816,0,76448.64373,15.6
+57556,458788.5238,0,813054.7423,15.6
+57557,29449.46834,0,0,15.6
+57558,48058.25184,0,0,15.6
+57559,171435.5745,3.333318776,0,15.6
+57560,133016.4243,0,0,15.6
+57561,127853.8891,78.28373252,0,15.6
+57562,134162.2239,0,0,15.6
+57563,135742.089,0,0,15.6
+57564,137694.5113,0,72768.52091,15.6
+57565,138753.631,69.83037743,0,15.6
+57566,141142.9549,0,0,15.6
+57567,117260.3015,0,0,15.6
+57568,118810.5928,0,0,15.6
+57569,120463.1388,82.27723236,0,15.6
+57570,207207.3637,0,0,15.6
+57571,144815.6811,0,0,15.6
+57572,139093.4372,0,0,15.6
+57573,162691.6978,87.2179706,73062.35669,15.6
+57574,155261.1576,0,71839.70881,15.6
+57575,157857.3617,0,70687.91532,15.6
+57576,159834.3467,0,69781.91083,15.6
+57577,161141.8576,368229.5154,68310.03288,15.6
+57578,162838.268,0,67583.49261,15.6
+57579,164647.3163,0,66377.47398,15.6
+57580,166116.0919,0,65403.69805,15.6
+57581,167677.9643,80.32606426,64403.37837,15.6
+57582,169561.0999,0,63419.82425,15.6
+57583,171020.3214,0,62710.61825,15.6
+57584,172436.5302,0,61318.72674,15.6
+57585,174684.1377,77.24168352,59215.86252,15.6
+57586,28469.10331,0,89129.74957,15.6
+57587,28584.9014,0,8869.907305,15.6
+57588,28746.41077,0,125576.188,15.6
+57589,28940.43638,87.13106298,71241.82785,15.6
+57590,642023.1665,0,70924.59689,15.6
+57591,29207.24338,0,623762.7255,15.6
+57592,449987.0069,0,125057.1345,15.6
+57593,256681.9206,97.20932815,56142.78117,15.6
+57594,176227.8859,0,60878.71163,15.6
+57595,190618.1018,0,2974.357363,15.6
+57596,192291.2996,0,116350.4492,15.6
+57597,193487.566,80.44162511,50933.49057,15.6
+57598,195254.2719,0,115463.8835,15.6
+57599,196344.0672,0,3031.392868,15.6
+57600,167732.056,0,96940.65416,15.6
+57601,169141.7708,122.6907062,0,15.6
+57602,252996.2331,0,0,15.6
+57603,194491.2915,0,0,15.6
+57604,191163.0252,0,0,15.6
+57605,205969.6087,70.04203144,0,15.6
+57606,200234.7,0,0,15.6
+57607,200990.4125,0,0,15.6
+57608,200772.3968,0,0,15.6
+57609,200921.4551,82.76494316,561268.2537,15.6
+57610,201024.6277,0,0,15.6
+57611,200872.8498,0,0,15.6
+57612,201057.5148,0,0,15.6
+57613,200801.8818,77.54345597,0,15.6
+57614,201381.7628,0,0,15.6
+57615,200963.7375,0,0,15.6
+57616,200837.3426,368155.4155,0,15.6
+57617,201381.564,71.62615808,0,15.6
+57618,200745.8946,0,0,15.6
+57619,201108.5026,0,0,15.6
+57620,30593.46293,0,0,15.6
+57621,30555.43901,0,0,15.6
+57622,30527.03527,319.6260487,0,15.6
+57623,30579.26845,0,0,15.6
+57624,696154.8104,0,0,15.6
+57625,70398.3063,0,0,15.6
+57626,118759.1799,0,648060.306,15.6
+57627,267750.2862,0,0,15.6
+57628,191660.5387,0,0,15.6
+57629,201224.4329,0,48388.30367,15.6
+57630,200755.6436,0,0,15.6
+57631,201477.9876,0,0,15.6
+57632,170084.2581,0,0,15.6
+57633,170688.6014,0,0,15.6
+57634,252704.6637,0,0,15.6
+57635,194652.4893,0,0,15.6
+57636,190502.7272,0,0,15.6
+57637,205491.2483,0,0,15.6
+57638,199652.9284,0,0,15.6
+57639,199474.626,0,50627.35688,15.6
+57640,199771.7768,0,49874.63051,15.6
+57641,199395.4404,0,49188.83308,15.6
+57642,199285.6815,0,48540.16289,15.6
+57643,199018.7237,0,47913.89342,15.6
+57644,198882.0911,0,47302.03036,15.6
+57645,198530.8511,0,46703.8116,15.6
+57646,198772.4307,0,46117.10548,15.6
+57647,198183.0632,0,45542.33442,15.6
+57648,198284.9592,0,44977.64092,15.6
+57649,197604.8862,0,44430.64071,15.6
+57650,198072.9546,0,43875.02508,15.6
+57651,197414.7917,0,43426.42531,15.6
+57652,197156.5302,0,42794.1291,15.6
+57653,197380.3547,0,42300.14654,15.6
+57654,29707.83075,0,41784.63713,15.6
+57655,29746.90253,368177.086,41290.50485,15.6
+57656,29707.80106,0,40785.22273,15.6
+57657,29578.43147,0,40402.29216,15.6
+57658,1025619.103,0,39799.93579,15.6
+57659,63676.13646,0,39360.68657,15.6
+57660,113624.8659,0,38891.32223,15.6
+57661,264130.5723,0,38403.37298,15.6
+57662,188076.7115,0,563153.3094,15.6
+57663,198858.0695,0,40024.31792,15.6
+57664,169786.0377,0,39898.56294,15.6
+57665,170887.1517,0,38814.42085,15.6
+57666,253535.4026,0,38651.15746,15.6
+57667,196024.264,0,0,15.6
+57668,194286.4976,0,0,15.6
+57669,209300.9209,0,0,15.6
+57670,205152.4028,0,0,15.6
+57671,205693.6663,0,0,15.6
+57672,207051.6591,0,0,15.6
+57673,207725.8178,0,0,15.6
+57674,208776.9389,29036.94808,0,15.6
+57675,209573.1806,42.78222487,0,15.6
+57676,210482.3811,2804.890507,0,15.6
+57677,211393.7414,10602.77794,0,15.6
+57678,212197.4113,10248.88766,0,15.6
+57679,213336.3739,8516.611809,0,15.6
+57680,213898.1812,9318.705574,0,15.6
+57681,214985.4844,9444.204794,0,15.6
+57682,215681.3985,9576.622148,0,15.6
+57683,216618.3205,9650.602115,0,15.6
+57684,217783.2058,9760.677437,0,15.6
+57685,218283.9613,9861.557487,33059.86467,15.6
+57686,219363.6946,9928.478276,0,15.6
+57687,220178.4783,10112.20524,0,15.6
+57688,32120.53027,10115.48203,0,15.6
+57689,32261.02756,10278.20948,32415.71347,15.6
+57690,32307.60519,10339.20051,0,15.6
+57691,694057.513,10474.41641,0,15.6
+57692,88966.67381,10533.8005,32194.43247,15.6
+57693,171033.1035,10663.3025,0,15.6
+57694,275853.7662,10877.41213,0,15.6
+57695,222197.9757,378996.3496,0,15.6
+57696,196089.5709,10953.17268,0,15.6
+57697,197404.2298,11045.72609,532225.1751,15.6
+57698,283099.4055,11145.77974,553349.4153,15.6
+57699,232516.1784,11534.73191,0,15.6
+57700,220328.0176,11338.78794,0,15.6
+57701,238601.935,11440.76046,0,15.6
+57702,234424.0798,11548.90182,0,15.6
+57703,234794.1655,11657.86933,0,15.6
+57704,236082.4521,0,0,15.6
+57705,236332.4145,0,0,15.6
+57706,237447.8618,0,0,15.6
+57707,238387.2034,0,0,15.6
+57708,238844.8176,72.67548084,0,15.6
+57709,239805.152,0,40233.8636,15.6
+57710,240723.173,46107.80985,43036.87568,15.6
+57711,241303.2643,1020.878087,42323.13716,15.6
+57712,242360.4716,6957.111376,41677.69125,15.6
+57713,243131.477,15739.27333,41071.00692,15.6
+57714,243538.696,13281.29952,40486.46099,15.6
+57715,245090.7113,12507.12804,39904.60207,15.6
+57716,245414.9694,13049.24942,39147.72555,15.6
+57717,246359.883,13135.83276,39023.45108,15.6
+57718,247354.0556,13222.54537,38303.75425,15.6
+57719,587206.6834,13296.52708,37084.36352,15.6
+57720,248663.2275,13598.00725,46324.57682,15.6
+57721,34935.0827,13531.30276,13920.05448,15.6
+57722,34986.49486,13677.29271,77150.62929,15.6
+57723,34959.1793,13817.51084,37828.08394,15.6
+57724,747721.3783,13998.23983,33659.3191,15.6
+57725,180077.5045,14091.1646,36126.59544,15.6
+57726,133611.3511,14233.61492,34772.46468,15.6
+57727,320129.0937,14297.71209,34203.24133,15.6
+57728,207174.1012,14561.67585,33798.73774,15.6
+57729,213978.6927,14611.39649,33429.84494,15.6
+57730,301426.8807,14717.11996,529230.9694,15.6
+57731,255661.0472,14874.39548,11966.27389,15.6
+57732,235080.2775,15075.44277,96508.06514,15.6
+57733,254801.3065,15130.85841,5960.110589,15.6
+57734,249632.345,15277.9947,598773.4188,15.6
+57735,249192.5158,383551.256,48650.57614,15.6
+57736,249495.7976,15502.57467,51438.38784,15.6
+57737,248999.9702,16008.99628,6186.089175,15.6
+57738,249082.1722,15789.17549,0,15.6
+57739,249525.5775,15908.30058,0,15.6
+57740,248786.8492,0,0,15.6
+57741,249124.3207,0,0,15.6
+57742,248604.9999,0,0,15.6
+57743,249435.6037,0,0,15.6
+57744,248647.161,63166.79527,0,15.6
+57745,248908.8045,0,0,15.6
+57746,249025.4638,9019.089516,0,15.6
+57747,248447.5745,24271.98602,0,15.6
+57748,248796.676,15719.95333,0,15.6
+57749,248827.2669,17253.77023,0,15.6
+57750,248264.9901,17370.16513,0,15.6
+57751,248750.3898,17549.99175,0,15.6
+57752,248508.6072,17660.92396,0,15.6
+57753,248355.2239,17775.21519,0,15.6
+57754,34672.42796,17965.5874,0,15.6
+57755,34749.12154,18006.35752,0,15.6
+57756,34687.69271,18193.31805,0,15.6
+57757,747605.5307,18312.6281,0,15.6
+57758,182097.5677,18514.28164,0,15.6
+57759,130307.388,18532.86828,0,15.6
+57760,286109.0478,18684.63518,535862.1169,15.6
+57761,206403.8028,18853.78304,0,15.6
+57762,300991.8166,18946.06019,0,15.6
+57763,255230.5769,19275.42154,0,15.6
+57764,234312.4575,19236.18194,0,15.6
+57765,254573.2847,19287.7964,0,15.6
+57766,248779.0864,19493.55875,0,15.6
+57767,248712.019,19554.85678,0,15.6
+57768,247840.0557,19705.97753,0,15.6
+57769,248571.7636,19832.37102,0,15.6
+57770,248050.1153,20331.35404,589771.9438,15.6
+57771,247757.1512,20099.18085,0,15.6
+57772,247757.7985,20187.90576,0,15.6
+57773,247708.4885,20367.23289,0,15.6
+57774,247100.9962,0,0,15.6
+57775,247645.1567,368137.0839,0,15.6
+57776,246620.8082,0,0,15.6
+57777,586710.5183,73495.31902,0,15.6
+57778,246363.7613,1597.808447,0,15.6
+57779,247177.998,15692.64004,0,15.6
+57780,246139.3703,27261.24943,0,15.6
+57781,246841.9134,20298.37759,0,15.6
+57782,246531.724,21192.83111,554667.8208,15.6
+57783,247080.103,21184.58208,0,15.6
+57784,246658.163,21126.34702,123846.3753,15.6
+57785,247134.7055,21106.6277,6764.805593,15.6
+57786,247054.6946,20981.40224,100064.4323,15.6
+57787,34323.8414,20959.4701,59503.16764,15.6
+57788,34348.94788,20914.38877,42649.09025,15.6
+57789,34350.27609,20825.48314,50278.47729,15.6
+57790,747182.3249,20788.311,47645.56409,15.6
+57791,183912.9869,20768.39724,46510.26046,15.6
+57792,93358.0611,20657.16739,45762.48594,15.6
+57793,286538.1561,20608.11265,45126.08736,15.6
+57794,292335.5863,20597.45536,44528.29541,15.6
+57795,254970.3646,20486.5295,43949.45588,15.6
+57796,234095.0128,20462.23034,43383.74849,15.6
+57797,253948.1348,20358.73923,42829.23736,15.6
+57798,248858.475,20394.07226,42285.07713,15.6
+57799,248696.7538,20256.48924,41750.85973,15.6
+57800,248517.0353,20245.76082,41224.50905,15.6
+57801,248900.9044,20118.52956,40702.82541,15.6
+57802,248632.0314,20165.56971,40163.74514,15.6
+57803,249126.7664,20039.62416,39274.91374,15.6
+57804,248553.1246,20002.41284,39808.46354,15.6
+57805,249251.1954,19960.14217,38679.6979,15.6
+57806,248702.8296,20181.06927,556223.4424,15.6
+57807,248977.4548,0,546495.0987,15.6
+57808,249491.1473,0,15152.88707,15.6
+57809,248973.0304,0,113543.3455,15.6
+57810,249084.176,70531.54353,7954.606087,15.6
+57811,249259.3797,0,89136.46533,15.6
+57812,249433.2633,14275.31705,53798.27063,15.6
+57813,249137.9503,25495.13725,0,15.6
+57814,249491.7423,18384.36184,0,15.6
+57815,249949.7829,387546.4698,0,15.6
+57816,248748.8095,19372.47079,0,15.6
+57817,249972.4736,19308.10374,0,15.6
+57818,249425.4935,19267.29319,0,15.6
+57819,250039.6952,19210.07131,0,15.6
+57820,34348.59273,19141.02926,0,15.6
+57821,34457.74708,19090.68688,0,15.6
+57822,34348.57137,19056.01138,0,15.6
+57823,753725.5577,18936.13443,0,15.6
+57824,161970.0859,18984.67111,0,15.6
+57825,86625.04856,18812.22767,0,15.6
+57826,379090.2425,18829.64518,0,15.6
+57827,249870.8474,18743.8347,0,15.6
+57828,236343.9723,18701.79609,0,15.6
+57829,256927.7169,18657.69425,0,15.6
+57830,252076.0065,18531.48461,0,15.6
+57831,250766.6195,18578.28849,36126.87494,15.6
+57832,251873.5038,18430.80037,0,15.6
+57833,251276.864,18456.57882,0,15.6
+57834,251344.8112,18336.81052,0,15.6
+57835,590397.3401,18299.26286,0,15.6
+57836,251406.1042,18249.4686,0,15.6
+57837,251046.4776,18190.83962,35415.29904,15.6
+57838,251370.8759,18140.87764,0,15.6
+57839,250897.223,18056.39892,0,15.6
+57840,251554.1129,0,34851.1268,17.8
+57841,1085561.173,1201088.995,996245.3871,17.8
+57842,932497.6917,407311.1876,883351.6134,17.8
+57843,520715.3226,211065.6028,290275.843,17.8
+57844,630869.3532,291297.5522,417277.7693,17.8
+57845,594780.2677,296183.2948,359779.822,17.8
+57846,503217.5295,294477.3014,370388.3806,17.8
+57847,496682.9787,277723.6926,372294.9307,17.8
+57848,512053.6311,281051.2157,377480.3492,17.8
+57849,495531.9912,280279.1117,382647.3094,17.8
+57850,492748.1302,280882.1261,387111.6448,17.8
+57851,492786.6769,280491.0706,392921.704,17.8
+57852,489637.6038,280024.7741,397560.8383,17.8
+57853,81518.01122,280390.6884,402254.8302,17.8
+57854,81305.60988,280017.1328,407439.4335,17.8
+57855,893780.2244,648192.5428,411436.1305,17.8
+57856,519179.1365,280309.8694,416976.2591,17.8
+57857,470587.0336,280152.8752,421244.4821,17.8
+57858,456345.0563,280217.5561,425198.4714,17.8
+57859,522115.8105,280803.3159,430647.6868,17.8
+57860,487510.1729,280212.1417,433781.5104,17.8
+57861,489684.7381,281249.1875,438809.5348,17.8
+57862,477724.0009,280840.7765,442977.0104,17.8
+57863,479869.5694,281520.4157,447102.7844,17.8
+57864,475545.909,281316.9781,1141459.631,17.8
+57865,475695.3257,281470.2694,447197.3527,17.8
+57866,474022.2767,282168.2159,729607.11,17.8
+57867,472659.5572,282831.0785,439492.6015,17.8
+57868,472643.065,283026.765,601680.9876,17.8
+57869,470263.8016,283364.4507,504055.7523,17.8
+57870,470454.9437,283943.5396,600509.6594,17.8
+57871,457260.0011,19.43917851,10499.73299,17.8
+57872,455753.7813,0,259880.3666,17.8
+57873,455125.2649,105668.7163,130082.2265,17.8
+57874,454224.2013,743481.8379,291080.8561,17.8
+57875,452902.5335,100482.9694,196185.4719,17.8
+57876,792354.7386,277268.455,1024854.719,17.8
+57877,489275.388,316718.1681,181211.4862,17.8
+57878,450777.0327,282375.8624,1293896.796,17.8
+57879,461249.3119,286366.6388,280673.8284,17.8
+57880,461482.8321,286928.1694,394513.5434,17.8
+57881,461473.8322,286931.6945,552238.4045,17.8
+57882,459197.1462,287446.8751,458131.3847,17.8
+57883,458915.0775,287873.2221,476779.8149,17.8
+57884,457991.0274,290296.935,481132.0952,17.8
+57885,77939.25113,289875.4323,485288.8371,17.8
+57886,77726.46267,290701.3184,488953.7819,17.8
+57887,890403.1224,291138.5434,493337.219,17.8
+57888,470353.2774,291402.032,496811.2018,17.8
+57889,415083.0631,291972.3189,500655.0866,17.8
+57890,432550.2331,292635.8948,505129.6439,17.8
+57891,502887.9435,660857.2732,508717.9774,17.8
+57892,457387.1061,293519.0669,511829.1397,17.8
+57893,459027.4185,294082.3499,516508.6461,17.8
+57894,451191.6984,293984.3775,519438.7152,17.8
+57895,451165.9448,295497.3689,514169.8894,17.8
+57896,452253.9142,295647.7458,1284790.716,17.8
+57897,449517.6671,301337.2468,518673.2027,17.8
+57898,449472.1858,299076.3428,861463.1646,17.8
+57899,448652.5243,300239.3788,492050.1238,17.8
+57900,448490.4178,300813.3359,681926.3247,20
+57901,2312862.979,1449830.824,2587535.572,20
+57902,2118148.54,1433434.849,2290079.697,20
+57903,1082871.843,212085.7738,1684788.899,20
+57904,791428.5806,240098.4252,1206425.664,20
+57905,787624.7388,1195282.145,1035600.186,20
+57906,1194875.108,447376.7843,983003.9774,20
+57907,895254.5618,723476.259,1041337.254,20
+57908,938794.3259,613222.3,280085.9384,20
+57909,1009184.008,589717.5994,282622.5489,20
+57910,980257.6035,616023.0582,2855413.74,20
+57911,961269.5089,600912.3752,1162909.314,20
+57912,970096.5262,600110.3972,663357.8956,20
+57913,967349.016,597868.1507,1019897.368,20
+57914,1303309.706,594024.9757,906373.4514,20
+57915,962936.0983,592731.1872,902057.6055,20
+57916,960759.382,591632.0986,905169.7167,20
+57917,154478.9238,589722.9996,903975.8018,20
+57918,999482.7173,588242.5352,904757.6648,20
+57919,1054283.008,585999.8642,904055.4226,20
+57920,772931.225,585436.7846,902639.1873,20
+57921,1017696.7,583673.8595,904014.5838,20
+57922,948583.4359,558526.3652,901847.438,20
+57923,956110.5775,557592.9118,896466.7215,20
+57924,949115.7686,556379.1484,904674.5263,20
+57925,952407.1819,554931.4607,897243.4316,20
+57926,949459.6054,615751.4628,1687962.066,20
+57927,949208.2706,926946.0053,908564.8569,20
+57928,947868.866,575836.6798,1245361.852,20
+57929,939447.268,578029.8731,861468.5818,20
+57930,941347.8119,572500.6494,1034828.575,20
+57931,937420.1906,573132.7197,885864.2885,20
+57932,938558.7822,571779.0851,829569.7929,20
+57933,936090.1005,570409.1446,856321.5145,20
+57934,934335.2454,470845.1518,846583.8989,20
+57935,934516,23836.55005,721655.5708,20
+57936,932269.3437,199348.4728,718639.9505,20
+57937,931819.3433,1214769.535,926862.6746,20
+57938,930987.0525,386991.2156,880902.701,20
+57939,898639.1054,665274.4298,817647.1583,20
+57940,897055.1245,538782.4642,257624.6629,20
+57941,963593.6902,588746.9855,266426.0072,20
+57942,932701.2331,566500.9821,256096.1192,20
+57943,917416.9707,566338.7454,2064872.694,20
+57944,928331.8305,564512.3908,1909923.687,20
+57945,925244.0709,565041.7391,580238.8198,20
+57946,923376.7385,562990.5189,859445.5127,20
+57947,924622.261,563513.5291,752647.6072,20
+57948,147121.5796,561950.9284,750637.7947,20
+57949,968138.55,561816.8598,749507.9553,20
+57950,1010082.352,560163.2637,749752.8341,20
+57951,766792.249,561198.5524,748225.454,20
+57952,1325649.891,559615.3222,747204.4001,20
+57953,930051.9723,558646.1423,746541.9761,20
+57954,932032.8033,559223.9453,745414.388,20
+57955,924596.9355,557329.2886,739537.4435,20
+57956,915324.7378,533943.5409,746974.0862,20
+57957,922217.8724,533864.0936,739798.2986,20
+57958,918504.1966,531980.6152,1520578.012,20
+57959,917735.965,532735.323,724281.4287,20
+57960,916665.6459,532472.4693,1082557.112,21
+57961,2312003.419,2958498.642,4244563.099,21
+57962,2237283.819,1403895.303,1953512.587,21
+57963,710795.733,608814.6807,562621.9094,21
+57964,857525.8345,671748.7733,910239.6255,21
+57965,1316076.432,751596.9649,1232390.433,21
+57966,1037439.651,900062.0001,961136.4072,21
+57967,1076889.675,749148.849,999566.408,21
+57968,1073762.812,783180.3261,1008280.924,21
+57969,1059472.336,781413.1801,1011686.722,21
+57970,1055583.271,776315.2298,1015904.292,21
+57971,1056292.339,776002.4587,1020326.273,21
+57972,1049388.091,771701.3566,1024762.474,21
+57973,1048886.473,769952.6772,1025645.401,21
+57974,1045739.635,766699.8529,1030917.417,21
+57975,1043092.497,765798.6753,1034616.492,21
+57976,1041861.49,762921.205,1039552.804,21
+57977,1039231.508,760981.0917,1040533.294,21
+57978,1037371.153,759141.7586,1044342.126,21
+57979,1033924.417,756513.5689,1046831.989,21
+57980,1033156.067,755367.8222,1046410.287,21
+57981,1030871.823,752242.3074,1050775.871,21
+57982,1029703.272,751857.4214,1053908.132,21
+57983,1026715.512,749163.9086,1053735.599,21
+57984,1026367.079,748071.2006,1049043.314,21
+57985,1024542.131,746130.1721,1064285.88,21
+57986,1021015.23,744124.8119,1056423.591,21
+57987,1022978.913,743494.3125,1062825.616,21
+57988,1017660.611,740555.6336,1062279.098,21
+57989,1017219.863,739715.33,1953567.287,21
+57990,1012852.192,738473.01,1081742.799,21
+57991,1011918.453,736045.6367,1511273.599,21
+57992,1007857.263,736270.0634,1030652.847,21
+57993,1009308.686,733154.7218,1244361.985,21
+57994,1005470.686,733553.6968,1087963.826,21
+57995,1003943.32,730182.2951,1026914.139,21
+57996,1002793.753,730417.0934,1060311.287,21
+57997,1001148.836,729846.7568,1053257.817,21
+57998,998517.6359,726772.4926,1054600.486,21
+57999,998006.8268,727060.4465,1053267.203,21
+58000,995689.0349,724997.5893,1056342.15,21
+58001,995164.4507,725800.3033,1058711.289,21
+58002,992781.4391,722510.5833,1059200.825,21
+58003,992333.6968,721935.9084,1062021.142,21
+58004,989375.2835,721809.0566,1063151.194,21
+58005,988986.2869,720216.0803,1062519.367,21
+58006,988246.947,719505.6968,1062723.771,21
+58007,986224.9722,718179.2955,1062578.572,21
+58008,984782.5835,716885.534,1065297.074,21
+58009,983560.9602,717011.5862,1066509.575,21
+58010,981937.0668,715099.1997,1064645.036,21
+58011,982336.4822,714409.8309,1069447.296,21
+58012,978295.4067,713633.1279,1068493.51,21
+58013,980059.2041,712784.6264,1069976.409,21
+58014,976963.0379,712421.2027,1068672.153,21
+58015,975048.3986,709988.7305,1072483.426,21
+58016,976748.9868,710327.7522,1073132.652,21
+58017,972901.6195,709418.136,1072668.095,21
+58018,972485.8385,708584.5688,1069765.205,21
+58019,972584.189,706786.5592,1080318.459,21
+58020,968542.3337,707151.9589,1075186.84,21
+58021,1680839.864,1256559.61,1935518.854,21
+58022,1673580.722,1252509.076,1021560.793,21
+58023,1671061.47,1252068.77,1476706.453,21
+58024,1670524.727,1250961.315,966224.966,21
+58025,1667932.601,1252769.62,1196548.105,21
+58026,1666037.96,1251992.716,1026058.688,21
+58027,1665953.08,1251792.023,959073.0487,21
+58028,1662932.529,1253229.993,995679.0498,21
+58029,1661761.942,1251899.232,986910.0093,21
+58030,1661391.187,1253333.491,985698.9103,21
+58031,1658541.278,1253645.343,984486.7541,21
+58032,1658058.63,1253481.411,985139.2683,21
+58033,1656483.404,1253574.015,987134.7259,21
+58034,1655377.844,1255253.855,985307.7754,21
+58035,1653803.444,1254839.419,987346.2533,21
+58036,1653929.197,1255417.546,986589.0505,21
+58037,1650989.892,1255811.788,987888.1964,21
+58038,1649777.285,1257273.283,988229.295,21
+58039,1649678.509,1256404.633,987415.1976,21
+58040,1648152.822,1258246.871,988463.0145,21
+58041,1645949.182,1257855.814,988873.466,21
+58042,1646592.554,1257826.741,988991.6759,21
+58043,1643191.392,1260459.707,988329.0434,21
+58044,1644912.5,1259361.407,991442.9116,21
+58045,1641019.997,1259410.669,989529.5844,21
+58046,1629924.604,1261288.017,990831.4665,21
+58047,1625187.709,1260875.506,989231.0082,21
+58048,1625008.297,1261260.779,991346.5481,21
+58049,1620921.186,1262799.192,990830.2309,21
+58050,1619118.393,1262634.925,986567.7573,21
+58051,1619112.417,1264712.367,997307.3719,21
+58052,1613897.766,1262793.453,989886.8223,21
+58053,1612128.46,1266351.458,1915601.453,21
+58054,1611407.761,1265024.567,1000528.04,21
+58055,1607024.093,1267523.523,1467708.892,21
+58056,1603868.546,1266479.053,946013.7361,21
+58057,1604270.331,1268644.001,1186358.633,21
+58058,1599267.016,1268413.963,1010901.209,21
+58059,1596398.493,1270071.692,944541.1315,21
+58060,1596373.176,1270222.233,982282.3629,21
+58061,1592468.248,1271382.714,974065.1071,21
+58062,1588808.436,1272014.618,972339.1115,21
+58063,1588629.496,1272517.006,973474.1969,21
+58064,1584921.596,1273057.905,972322.5076,21
+58065,1581663.304,1274967.568,974360.171,21
+58066,1579834.631,1275906.195,975232.009,21
+58067,1579178.627,1275104.903,974627.6195,21
+58068,1573442.617,1277149.912,976923.5951,21
+58069,1573269.752,1278375.226,975013.9158,21
+58070,1568619.097,1278660.274,978123.4776,21
+58071,1568191.739,1279835.278,978266.409,21
+58072,1563309.587,1279496.127,976384.8179,21
+58073,1562382.807,1281763.006,981096.7395,21
+58074,1558247.517,1282555.406,978688.0931,21
+58075,1557148.061,1282686.8,978632.6219,21
+58076,1552533.727,1283523.121,979531.8542,21
+58077,1551152.077,1285426.474,980244.673,21
+58078,1550437.791,1286060.528,981303.5691,21
+58079,1545074.036,1285597.054,982277.2694,21
+58080,1544491.15,1288957.788,979997.2271,21
+58081,1314791.908,1078454.098,693209.5556,21
+58082,1294330.373,1070870.281,1563537.979,21
+58083,1288175.612,1066924.304,648077.177,21
+58084,1281524.58,1063032.261,1119815.648,21
+58085,1275878.602,1060399.331,602584.3282,21
+58086,1270794.934,1056601.421,878701.8105,21
+58087,1262498.024,1053258.573,700183.3217,21
+58088,1259728.736,1050855.519,635143.958,21
+58089,1251894.106,1047167.399,669416.4611,21
+58090,1247672.731,1043634.184,659592.2926,21
+58091,1241337.847,1041328.997,657109.8138,21
+58092,1237143.34,1038162.001,655518.1151,21
+58093,1230621.315,1034387.085,654958.0418,21
+58094,1225334.232,1032204.256,653910.9527,21
+58095,1220184.492,1028735.885,654499.659,21
+58096,1214935.155,1026062.728,653087.6671,21
+58097,1209707.411,1022965.314,653246.5639,21
+58098,1204196.445,1020368.644,652620.444,21
+58099,1199072.312,1016672.293,652572.1165,21
+58100,1193937.248,1014966.256,652040.464,21
+58101,1188926.175,1011313.538,652805.9439,21
+58102,1183069.614,1008879.181,652125.2716,21
+58103,1179474.679,1005921.502,652271.448,21
+58104,1172008.137,1003589.911,653002.6635,21
+58105,1168779.427,999967.5286,652148.2288,21
+58106,1163387.489,997922.6393,652526.644,21
+58107,1158260.817,994947.7409,652462.5157,21
+58108,1153123.087,992178.0676,653446.6138,21
+58109,1148181.658,989932.0293,653359.1912,21
+58110,1143282.521,986971.5449,653002.1429,21
+58111,1138789.074,983902.4371,654628.3783,21
+58112,1133786.429,982037.8633,654121.4253,21
+58113,1129274.992,978624.4263,1542481.328,21
+58114,1124818.721,976675.9083,644737.2567,21
+58115,1119051.905,973553.9956,1103619.955,21
+58116,1116516.419,971470.7111,604126.3327,21
+58117,1110279.745,968451.5209,854468.0547,21
+58118,1106463.82,965807.6632,684336.7109,21
+58119,1101857.804,963594.605,837965.3008,21
+58120,1097168.796,961029.6797,599853.464,21
+58121,1092872.635,958099.2151,856639.9829,21
+58122,1088722.823,955990.179,651693.5346,21
+58123,1083515.506,953117.326,625820.7364,21
+58124,1078377.136,950826.941,646191.0989,21
+58125,1075159.318,948700.7149,641357.8522,21
+58126,1069846.328,946232.506,640565.4451,21
+58127,1065769.934,942794.1568,641807.6543,21
+58128,1062019.765,941706.0754,641758.4843,21
+58129,1055654.714,938362.0572,643756.7961,21
+58130,1053049.462,935753.9941,644123.6023,21
+58131,1048444.242,933689.5522,645639.4111,21
+58132,1042103.214,930639.4626,645867.6887,21
+58133,1039176.693,928282.1702,647968.1266,21
+58134,1034451.874,926786.1805,648704.3529,21
+58135,1029919.464,922739.617,649067.4511,21
+58136,1025241.307,920680.2644,651203.4184,21
+58137,1021577.779,918429.2512,651698.2269,21
+58138,1016023.89,914603.5507,652990.2869,21
+58139,1013041.808,913024.8538,653656.8444,21
+58140,1007457.188,908920.1765,654398.9699,21
+58141,1004848.002,910510.4575,654877.7534,21
+58142,999031.305,909274.3287,653536.9361,21
+58143,995914.4927,910727.762,653765.6386,21
+58144,1425731.823,908999.9473,653223.7635,21
+58145,989107.2281,909995.2608,652699.0776,21
+58146,983226.4739,909316.6089,652655.967,21
+58147,979923.464,908988.2107,651954.0774,21
+58148,975715.7427,908865.2013,651836.6114,21
+58149,972217.0256,909074.6889,650934.2899,21
+58150,967615.0101,908060.6617,651532.5406,21
+58151,964212.6949,908373.5546,650041.999,21
+58152,959979.1718,908020.8811,649790.6157,21
+58153,956599.4515,907839.6359,649803.9113,21
+58154,951614.5416,907476.8713,648804.0671,21
+58155,949497.4712,907227.2649,648441.3673,21
+58156,944089.6332,906882.7531,648309.5301,21
+58157,941096.6112,907077.3944,646600.6266,21
+58158,937245.237,906572.3287,647555.8927,21
+58159,932878.3875,906552.5007,645338.5789,21
+58160,929857.1947,906311.2692,645698.6112,21
+58161,925291.4468,887915.9341,645710.9773,21
+58162,921823.7828,884755.5587,643535.7718,21
+58163,918251.0644,883731.3498,643719.8807,21
+58164,914217.0059,883068.6417,643337.214,21
+58165,910208.7915,881983.2139,642283.1041,21
+58166,907085.8108,881720.0041,641384.7398,21
+58167,903583.787,880591.6764,641451.3917,21
+58168,899491.9671,880203.8883,640466.0278,21
+58169,895355.3358,879142.8181,639087.7541,21
+58170,892689.9766,878478.0588,639494.3823,21
+58171,888987.4642,876537.8909,638542.6391,21
+58172,886515.7099,874580.5464,637740.4569,21
+58173,882369.9217,873528.1644,637998.013,21
+58174,879395.924,869679.2033,636897.8518,21
+58175,877247.7739,867642.6952,636853.1693,21
+58176,872989.5449,865896.0548,636943.9868,21
+58177,871314.3246,865103.2992,636003.4501,21
+58178,867974.5828,862714.202,635211.403,21
+58179,865219.2156,861431.2478,636026.8028,21
+58180,861910.6493,860308.3595,634414.476,21
+58181,1295038.064,858548.5144,634945.8955,21
+58182,856524.7924,856717.2785,633697.0858,21
+58183,854060.1545,855635.6802,633400.9257,21
+58184,851470.0789,853778.1596,633795.8448,21
+58185,849474.7769,852651.4229,632059.4737,21
+58186,846985.3515,850474.7775,632648.9117,21
+58187,844771.4074,849463.0156,631699.1023,21
+58188,841864.0844,847886.6043,631077.4046,21
+58189,840239.2629,846044.344,630912.4123,21
+58190,837477.3392,844801.4373,630648.557,21
+58191,836261.817,843692.5782,631011.0241,21
+58192,834020.0113,841391.2656,631667.2534,21
+58193,833361.4488,840281.116,630210.1321,21
+58194,831369.5115,838763.0439,631049.0695,21
+58195,830005.0369,837128.5712,629789.6732,21
+58196,828716.6153,835362.3209,629016.3502,21
+58197,827199.7541,834023.9486,629362.6962,21
+58198,826012.4844,832713.9356,628445.8571,21
+58199,824451.7639,830969.5063,628363.0243,21
+58200,822799.7671,829199.023,630913.7332,21
+58201,827346.6122,829979.9118,637382.6454,21
+58202,826475.6193,825645.8348,1580769.334,21
+58203,825838.2232,821339.382,641883.1532,21
+58204,824997.0263,817657.3111,1136302.663,21
+58205,824351.5255,812722.3973,594917.9312,21
+58206,823654.6095,809559.0836,850746.4911,21
+58207,822782.3937,803918.2039,665576.1127,21
+58208,822253.1661,800772.8116,600217.7146,21
+58209,821200.9027,795645.7113,637029.9588,21
+58210,820954.1946,791852.9354,628353.9985,21
+58211,819809.019,787413.1074,626251.1809,21
+58212,819627.3956,785526.5595,626068.6697,21
+58213,818629.4138,781885.838,626096.6415,21
+58214,817918.1716,777647.8256,626288.3463,21
+58215,817688.7905,773144.8228,626693.348,21
+58216,816309.2808,769157.3128,626969.8811,21
+58217,816587.286,764798.1109,626745.6957,21
+58218,815260.1533,760202.772,627847.0481,21
+58219,814790.3263,756158.1353,628099.2636,21
+58220,814277.2267,751914.9207,627303.552,21
+58221,813776.2063,747142.8614,628137.0617,21
+58222,812901.3942,742695.7102,628610.5171,21
+58223,812697.8196,738647.7538,629225.3048,21
+58224,812211.827,733660.6515,628569.5778,21
+58225,811447.629,729018.2848,629416.3676,21
+58226,811110.965,725590.765,629423.827,21
+58227,810556.1597,721006.3808,630104.9618,21
+58228,810157.2625,717067.0716,630056.2927,21
+58229,809584.6575,712831.6452,629753.7374,21
+58230,809357.8646,709151.7591,631086.0966,21
+58231,808473.6067,705956.9794,630659.5325,21
+58232,808416.0743,703199.9435,629981.3881,21
+58233,807559.1499,700977.3788,630449.8905,21
+58234,807222.4049,698487.1595,630985.0201,21
+58235,806915.4622,695830.2316,630819.1203,21
+58236,806110.652,693125.4135,630618.4279,21
+58237,805803.1613,690683.2969,630422.8106,21
+58238,805464.993,688751.7816,630975.3634,21
+58239,804909.5964,686216.2018,630289.2108,21
+58240,804807.3508,683832.085,631947.371,21
+58241,804057.1142,681663.1018,1562204.427,21
+58242,804206.7333,679042.7232,634052.3241,21
+58243,803353.6307,676930.2374,1119866.478,21
+58244,803171.21,674148.6199,587694.0608,21
+58245,802551.2605,672775.7983,840344.8001,21
+58246,802272.1726,669777.5585,657890.1373,21
+58247,802053.7768,667737.0823,594348.8365,21
+58248,801200.3448,664883.978,629933.6734,21
+58249,801433.3651,663077.7153,621921.8787,21
+58250,800397.6776,661166.5575,619776.438,21
+58251,800490.9159,658592.389,619369.5,21
+58252,799806.6897,657012.9606,619531.3696,21
+58253,799374.3299,654596.1488,619745.0035,21
+58254,799121.4747,652797.458,619650.7369,21
+58255,798778.023,650190.1004,620614.17,21
+58256,798358.1648,648577.5606,620307.0491,21
+58257,797539.8255,646438.0668,620832.3089,21
+58258,797473.343,644745.9155,620395.8565,21
+58259,796947.0364,642080.4715,620970.8907,21
+58260,796610.5239,640316.7812,621017.2136,21
+58261,791054.6028,635669.9113,609661.5765,21
+58262,789874.9769,635178.2517,607818.1515,21
+58263,789813.1863,634627.7686,606182.1176,21
+58264,788708.9421,634776.0083,604321.5158,21
+58265,788531.9334,634325.9719,602558.5268,21
+58266,787816.6606,634123.2533,600477.7505,21
+58267,787185.9055,633618.4311,599374.1002,21
+58268,786185.7825,633525.7048,596574.7663,21
+58269,785425.5831,633152.6272,595978.7254,21
+58270,785283.2834,633039.6233,592812.7153,21
+58271,783928.7418,632601.8275,591504.108,21
+58272,783555.3533,632555.7555,590569.1448,21
+58273,782845.2118,631784.311,586819.2494,21
+58274,781934.1682,632317.4842,586159.1679,21
+58275,781289.1165,632150.9308,583828.1255,21
+58276,780990.9936,631866.5507,581534.4464,21
+58277,778893.5309,631285.3361,579904.9188,21
+58278,778890.5818,630924.7721,577778.9039,21
+58279,777536.7059,630349.7,575744.8096,21
+58280,776406.3762,630690.9909,574423.8417,21
+58281,776348.2578,629987.8163,571113.6928,21
+58282,774625.2922,629934.58,1471456.824,21
+58283,774042.3501,629651.978,547621.9958,21
+58284,773236.9453,629033.5016,1024770.663,21
+58285,771911.0909,629118.6049,499150.2069,21
+58286,771782.5054,628884.9186,770934.6538,21
+58287,770099.149,628484.3547,587428.016,21
+58288,769404.7802,628609.9934,523927.3475,21
+58289,768164.0708,627731.3759,556928.1698,21
+58290,767410.9618,629951.6862,546674.9685,21
+58291,766337.9983,629415.6361,541962.4831,21
+58292,765626.0517,629459.4597,539298.039,21
+58293,764411.0064,628083.3955,537729.6285,21
+58294,763737.6397,628395.1682,535309.6591,21
+58295,762600.7702,626859.4005,533643.4169,21
+58296,762521.1945,625521.5757,531152.8355,21
+58297,760568.1277,622803.169,529610.4302,21
+58298,760447.7975,623520.9834,527608.5717,21
+58299,759560.5778,621630.5878,524950.6012,21
+58300,758822.5625,621602.8422,523389.8857,21
+58301,757553.1906,620222.1536,521196.2114,21
+58302,757003.5792,620083.6161,519074.9734,21
+58303,755647.9925,618502.7038,517749.7933,21
+58304,755415.9232,618184.6633,514009.1061,21
+58305,753995.6516,617495.6478,513640.9396,21
+58306,753887.2877,616581.4955,510671.5439,21
+58307,752341.8051,615349.6167,508373.6821,21
+58308,751898.9503,615078.664,506525.9429,21
+58309,750649.9254,614120.3126,504713.8639,21
+58310,750136.3721,612823.896,501903.7043,21
+58311,748875.256,612566.7562,500497.0027,21
+58312,748671.6342,611526.9458,497960.759,21
+58313,747236.0738,611268.2606,495685.4355,21
+58314,747031.0369,610579.3679,494087.8163,21
+58315,745803.169,608941.5069,491271.009,21
+58316,745608.6,607999.1114,489131.6386,21
+58317,744391.8619,607445.4003,487425.3713,21
+58318,743851.3172,606268.58,484893.4219,21
+58319,742671.1247,605219.6988,482722.2769,21
+58320,742159.9969,605537.9524,480668.1259,21
+58321,764427.6953,635411.7335,522233.4571,21
+58322,762435.4062,635040.8247,520957.2149,21
+58323,760274.1392,635062.9288,517904.0816,21
+58324,759039.7941,635020.4492,516643.3604,21
+58325,756901.1179,634499.5784,514028.0929,21
+58326,755307.6153,634474.095,511114.2855,21
+58327,753108.9361,633949.8027,509704.4428,21
+58328,751362.7166,633304.9906,507158.0291,21
+58329,749234.1948,633920.1002,504808.2208,21
+58330,747596.0705,632924.5985,502852.2425,21
+58331,745616.1518,632871.1933,500304.3415,21
+58332,743594.0365,632646.6966,497808.9942,21
+58333,742228.8683,632529.6251,496233.4306,21
+58334,740450.2304,631749.8689,493295.825,21
+58335,739062.352,631840.9897,491590.3077,21
+58336,737205.3511,631228.331,489204.7111,21
+58337,735245.3489,631142.6448,486533.4549,21
+58338,733770.5518,630656.1071,484539.5202,21
+58339,731186,630346.2534,482062.1409,21
+58340,731604.2866,629932.0306,479751.5133,21
+58341,729736.6116,630691.1059,477397.8707,21
+58342,727683.3551,629148.5991,474943.5326,21
+58343,725637.9061,629114.0943,472362.0839,21
+58344,724383.9309,628215.6721,470050.5127,21
+58345,721911.4837,628135.431,468069.7761,21
+58346,720722.0575,627937.9237,465564.06,21
+58347,718515.3229,626834.3278,463086.841,21
+58348,716438.0449,627310.229,460857.0671,21
+58349,714672.6072,626261.7321,458117.9683,21
+58350,712720.9703,626262.8745,456075.7734,21
+58351,710483.7039,624763.4445,453596.3266,21
+58352,708886.0631,624436.475,451085.2334,21
+58353,706792.7155,624250.4241,448612.0552,21
+58354,704837.2871,623732.6805,446433.3209,21
+58355,702673.4775,623234.0384,444161.1935,21
+58356,701406.4711,622806.3659,441955.8586,21
+58357,698619.5179,622165.9959,439185.393,21
+58358,696912.8364,622190.8446,436898.2393,21
+58359,695057.6884,621188.3271,434679.1979,21
+58360,692723.5841,621383.2461,432289.623,21
+58361,690631.8251,620347.6659,430074.4481,21
+58362,689141.688,620367.6754,427692.8262,21
+58363,686610.6452,619401.3136,424928.6554,21
+58364,684851.9203,619319.2555,422579.2526,21
+58365,682798.4835,618595.1831,420306.5486,21
+58366,681386.1327,618368.8634,417872.526,21
+58367,678319.573,617737.1449,415691.5053,21
+58368,676874.4914,617386.3818,412813.0811,21
+58369,674614.2313,617040.4818,410828.5004,21
+58370,672757.0562,616391.8298,408097.973,21
+58371,670404.8935,615667.9305,406102.3492,21
+58372,668711.8746,615548.3218,403726.4011,21
+58373,666281.7507,615115.4316,400720.0171,21
+58374,664430.8705,614260.8177,399027.2124,21
+58375,662194.0348,613826.3768,395990.1312,21
+58376,660958.9813,613920.5241,393861.054,21
+58377,658216.1027,612804.4554,391671.3194,21
+58378,656088.928,612395.1062,388641.4236,21
+58379,653668.3603,612305.6305,386665.0634,21
+58380,649938.1833,611180.6791,384100.7404,21
+58381,632410.999,579695.5083,343827.7371,21
+58382,633480.3416,577193.9502,341885.0442,21
+58383,634536.197,574938.5679,1087326.857,21
+58384,635600.0735,573869.6043,264247.4934,21
+58385,635959.4637,571167.6255,653625.4408,21
+58386,637563.5552,569938.1453,234334.4732,21
+58387,637916.7622,568703.9034,514770.0955,21
+58388,639028.2216,566230.0315,363684.978,21
+58389,639571.2552,563874.0234,424919.1925,21
+58390,640909.8728,561757.8743,230794.3542,21
+58391,641670.1465,560046.3356,511552.4669,21
+58392,642268.0986,558094.5726,336467.462,21
+58393,643607.0706,555562.6345,397090.6423,21
+58394,644321.1848,554651.1434,226865.2178,21
+58395,645097.4329,552060.1092,502377.5436,21
+58396,646732.342,549918.3976,327892.2793,21
+58397,646949.3471,548534.4933,314344.1961,21
+58398,647901.3282,545676.2711,326479.5798,21
+58399,648852.6804,544687.8467,322039.5675,21
+58400,649745.3872,543399.644,320012.79,21
+58401,650702.2391,540750.1051,319020.7057,21
+58402,651443.82,538596.8612,318240.6969,21
+58403,652542.4998,536727.5063,317717.5766,21
+58404,653506.5654,534456.189,317506.236,21
+58405,654110.3011,532968.7901,316384.626,21
+58406,655792.2164,530879.3681,316005.25,21
+58407,655773.1616,528406.2268,315575.3629,21
+58408,657486.807,527174.4676,315005.8511,21
+58409,657480.8143,524782.2735,314226.7214,21
+58410,659082.9482,523404.6454,314318.2386,21
+58411,659640.3144,521177.5744,313454.4587,21
+58412,660222.5476,520264.0242,312849.7025,21
+58413,661426.6213,518378.1285,312600.7651,21
+58414,662147.4743,516617.872,311426.4193,21
+58415,662741.5987,515458.6588,311575.4411,21
+58416,663997.9729,513267.0363,310479.2573,21
+58417,664288.0983,512346.495,310330.6831,21
+58418,665593.633,510544.299,309823.5466,21
+58419,665507.0038,509411.8036,309090.4758,21
+58420,666839.3104,507486.8161,308582.7246,21
+58421,665710.9785,506265.6007,308397.3774,21
+58422,666318.3095,504607.1683,307500.2754,21
+58423,667162.8576,503867.2488,307552.433,21
+58424,667977.7357,501986.8507,306608.9448,21
+58425,668275.1406,500646.8013,306280.9498,21
+58426,669747.1905,498941.3202,305716.6094,21
+58427,669836.3497,497626.3816,305540.2371,21
+58428,670605.5726,496060.6687,304923.9446,21
+58429,671117.2064,495285.1989,304559.0686,21
+58430,672007.5596,493212.2034,304141.1076,21
+58431,672203.8036,492265.3077,303696.8915,21
+58432,673544.5815,490402.374,303174.0257,21
+58433,673425.3169,489303.5296,302755.3739,21
+58434,674504.5177,488022.3872,302599.5572,21
+58435,674857.7392,486740.7502,301946.587,21
+58436,676126.2716,485363.1819,301298.2043,21
+58437,676221.352,483412.4842,301655.6328,21
+58438,676807.6509,483023.3575,300541.2857,21
+58439,677357.4438,481052.3682,300662.9639,21
+58440,677776.9221,479615.8802,301953.743,21
+58441,683135.4361,484786.0427,308881.622,21
+58442,682390.0717,483388.1131,308078.5809,21
+58443,682769.358,484008.2501,307427.4067,21
+58444,681872.3157,483719.4673,306685.1759,21
+58445,681616.5071,483787.6414,305623.0169,21
+58446,681708.9717,482902.3203,305323.8795,21
+58447,680896.1975,483063.893,303873.6738,21
+58448,680575.0829,482948.5768,303262.8585,21
+58449,680643.9349,482678.3323,302637.7399,21
+58450,679644.6442,482620.4073,301602.3621,21
+58451,679803.0275,481853.7915,301144.8524,21
+58452,678856.8445,482505.3261,299520.673,21
+58453,679404.9033,481761.5627,299181.3138,21
+58454,678112.9254,481602.7946,298387.336,21
+58455,677944.9231,482067.2238,297471.2957,21
+58456,677858.4747,480827.3496,296757.4238,21
+58457,676819.3686,481637.8376,295716.0099,21
+58458,677067.335,480914.1092,295008.1142,21
+58459,676248.71,480665.6756,294376.3422,21
+58460,675923.8329,481012.4586,292795.2789,21
+58461,675647.463,480496.158,292847.3673,21
+58462,674768.4798,480341.9665,291429.6547,21
+58463,675356.0968,480374.8741,290895.3231,21
+58464,674095.6501,479802.0339,289686.9889,21
+58465,673800.3332,480398.9132,288718.8172,21
+58466,673433.0551,479807.1747,288396.644,21
+58467,672726.0047,479423.4545,287279.9769,21
+58468,672504.4577,479771.0838,286529.1793,21
+58469,672187.544,479210.4305,285505.8983,21
+58470,671547.7237,479486.9323,285047.0659,21
+58471,671154.2918,478915.8136,284043.5882,21
+58472,671535.0867,479028.5334,283246.2297,21
+58473,671157.2326,479010.8441,282957.0904,21
+58474,671268.3033,478076.9551,281888.9088,21
+58475,671371.3266,478579.2346,281820.7772,21
+58476,671271.6967,477986.9481,280639.5388,21
+58477,671368.4532,478185.1676,279953.359,21
+58478,671176.1639,477754.9375,279463.516,21
+58479,671641.4024,477368.2365,279312.4486,21
+58480,671477.9953,477489.4626,277907.2018,21
+58481,671521.6168,477445.5151,277974.4964,21
+58482,672033.825,477025.1237,276922.3433,21
+58483,671564.3008,476904.2427,276516.8229,21
+58484,672171.429,476709.635,275565.5571,21
+58485,672140.7976,476758.5743,275475.0618,21
+58486,672649.1819,476344.2993,274559.7185,21
+58487,672835.4813,476041.004,273880.2523,21
+58488,672690.434,476121.4148,273648.4394,21
+58489,673263.0288,476125.4477,272610.4289,21
+58490,673515.0687,475558.6279,272272.2705,21
+58491,673599.5059,475883.4841,271482.8435,21
+58492,674366.9295,474977.9016,271044.9152,21
+58493,674168.0774,475589.7028,270624.549,21
+58494,674872.946,474900.3062,269512.3839,21
+58495,675011.4299,475118.542,269443.7958,21
+58496,675518.5144,474458.6441,268630.7565,21
+58497,676031.628,474870.5156,267861.229,21
+58498,676347.5148,474271.765,267865.8025,21
+58499,676700.1728,474067.2141,266599.1108,21
+58500,677356.6247,474638.1681,266460.0562,21
+58501,672698.9349,466320.201,258813.5317,21
+58502,672713.7743,464624.375,931455.963,21
+58503,673943.3575,461551.0143,198465.9869,21
+58504,674181.3805,459456.9051,501136.1622,21
+58505,675063.5174,456757.8659,176786.1336,21
+58506,675595.0514,454020.4358,399434.0274,21
+58507,677805.6212,451797.2123,280755.513,21
+58508,677878.3753,449269.9178,327334.1088,21
+58509,680007.8241,446663.7071,175149.4042,21
+58510,680502.7727,444247.681,401517.3331,21
+58511,681447.7662,441765.907,262450.1867,21
+58512,682205.5095,438815.4495,308931.8804,21
+58513,682915.0903,436885.2114,175089.0314,21
+58514,682246.1211,434056.4546,397355.1613,21
+58515,683478.1034,431530.3103,258632.2898,21
+58516,684205.9366,428961.6407,249167.7454,21
+58517,684814.5925,427034.9454,259555.4801,21
+58518,686075.0512,423682.6034,255968.6189,21
+58519,686344.0619,421733.8777,255213.4269,21
+58520,687995.0237,418859.7386,255049.3432,21
+58521,688217.4228,416559.947,254609.9689,21
+58522,689777.3643,413787.482,255602.8728,21
+58523,690237.1554,411783.3993,254626.5184,21
+58524,691337.5842,408691.346,255207.6404,21
+58525,692726.2438,406737.8151,255248.4553,21
+58526,693266.2096,403469.8867,254973.9246,21
+58527,694096.7846,401631.3932,255788.3342,21
+58528,695892.3324,398540.6887,255078.2548,21
+58529,697016.1734,396195.5575,255649.6377,21
+58530,697848.5075,393966.0173,255840.3556,21
+58531,698564.1239,390754.4905,255971.7106,21
+58532,699034.4133,388884.4974,255831.8258,21
+58533,699369.7604,385843.78,256377.8631,21
+58534,700238.2136,383262.708,256569.1861,21
+58535,700721.487,381006.0919,256688.5007,21
+58536,700829.5953,378067.2866,257077.304,21
+58537,703070.1401,375768.7251,257237.8051,21
+58538,703581.6583,372584.0372,257556.5956,21
+58539,703790.2404,370698.4424,258081.9362,21
+58540,704797.8486,367776.756,257992.7108,21
+58541,705543.3668,365153.188,258728.3284,21
+58542,705499.0222,362790.7851,258606.3996,21
+58543,706022.262,359863.0964,259221.7623,21
+58544,706436.0275,357405.6267,259284.9363,21
+58545,707204.4677,354797.5803,259759.107,21
+58546,707414.8338,352087.6677,259872.9882,21
+58547,707334.0724,349665.1215,260545.5522,21
+58548,708338.6696,347155.1088,260889.1479,21
+58549,708449.8328,344402.8987,260762.9721,21
+58550,708780.4642,341724.8911,261730.3549,21
+58551,709198.6072,339287.517,261490.0879,21
+58552,709722.171,336514.8041,262408.9957,21
+58553,710014.4163,333941.8395,262498.7202,21
+58554,710448.9749,331227.1356,263104.9436,21
+58555,711109.6205,328971.3944,263206.4247,21
+58556,710938.0877,326252.4055,263818.365,21
+58557,711277.0951,323349.4958,264134.1152,21
+58558,711915.1495,321063.4135,264548.5986,21
+58559,712132.7297,318214.3129,265026.7076,21
+58560,712342.5473,316324.1499,265394.8362,21
+58561,714279.438,318394.0139,265221.6537,21
+58562,715616.9445,320982.1191,265613.1425,21
+58563,717291.4455,324348.0075,265273.3085,21
+58564,719460.0126,326812.2831,265477.2021,21
+58565,720775.6782,329765.4974,265403.388,21
+58566,722595.6156,332189.1638,265124.6953,21
+58567,724136.2495,335451.8745,265524.725,21
+58568,725729.0298,337594.2224,265425.2507,21
+58569,727382.8601,341167.4993,265200.0452,21
+58570,729038.4355,342872.7867,265231.3457,21
+58571,730836.5135,347000.1895,265469.0913,21
+58572,732455.7486,348884.3335,265111.5325,21
+58573,733836.2233,351975.875,265534.9182,21
+58574,735994.7011,354634.8612,265157.2873,21
+58575,737248.9319,357429.0322,265368.8752,21
+58576,739352.1305,360688.7043,265150.9815,21
+58577,740725.2861,363042.6855,265485.8008,21
+58578,742611.0482,365899.3168,265174.1871,21
+58579,743457.7309,368801.8758,265375.2598,21
+58580,746037.1182,371741.1851,265097.7188,21
+58581,746983.7849,374068.6789,265488.6271,21
+58582,749199.5857,377591.6369,265081.1024,21
+58583,750331.4569,379654.9504,265598.6124,21
+58584,752351.8051,383179.4889,265108.9952,21
+58585,753893.5489,385487.2584,265268.4818,21
+58586,755540.7239,388903.4298,265488.1981,21
+58587,762163.6418,390935.8806,265360.6866,21
+58588,761486.5217,394424.1861,265315.7363,21
+58589,763922.4496,396999.5116,265523.7291,21
+58590,766450.4089,399603.1882,265078.1467,21
+58591,768099.7399,402892.5701,265534.8498,21
+58592,770122.7683,405627.9574,265385.6905,21
+58593,772180.7625,407922.7826,265463.3859,21
+58594,773856.1728,410451.2513,265650.8668,21
+58595,775953.9208,414553.0173,265414.3832,21
+58596,777738.2049,415872.3962,265799.3467,21
+58597,778494.7057,419514.8491,265349.6602,21
+58598,779854.461,421732.4579,266192.1892,21
+58599,781966.8477,424995.0755,265329.6143,21
+58600,784721.8647,427144.7785,266151.6222,21
+58601,787026.8535,430441.294,265442.9164,21
+58602,788534.6592,432826.4932,266315.5811,21
+58603,790171.5607,436213.321,265727.6448,21
+58604,792364.9574,437954.9511,266271.8045,21
+58605,794128.3865,441880.673,265785.4148,21
+58606,796143.0612,443366.6771,266251.9674,21
+58607,797531.6906,447301.6979,265887.6971,21
+58608,799754.773,449229.1215,266565.9897,21
+58609,801430.1479,452625.0909,266137.474,21
+58610,803343.1079,455235.4787,266211.7752,21
+58611,804952.3979,457546.0739,266383.4132,21
+58612,806881.5059,460635.5171,266550.287,21
+58613,808556.6018,463448.3415,266229.9608,21
+58614,809117.8283,466179.7495,266513.5356,21
+58615,810471.473,468927.02,266629.6192,21
+58616,812150.3572,471899.7053,266822.7448,21
+58617,814086.3703,474237.2495,266363.2505,21
+58618,815564.3669,477409.4423,266913.6483,21
+58619,817412.788,479808.2782,266996.4347,21
+58620,819435.5916,482531.4698,266622.2456,21
+58621,875843.3491,540329.8588,345095.4259,21
+58622,879694.6637,542759.9187,350569.7327,21
+58623,881701.6105,561251.4466,352285.5846,21
+58624,884958.4407,555779.3145,354740.6266,21
+58625,886014.6598,558107.2892,356342.0548,21
+58626,887967.1623,560078.4942,358079.3673,21
+58627,890181.6235,562321.221,360529.7904,21
+58628,891823.9173,563886.1481,361830.8097,21
+58629,894015.2173,565232.4454,364393.2756,21
+58630,894158.7623,567499.601,365814.4624,21
+58631,896709.8813,568527.0666,367452.2026,21
+58632,904674.6704,571287.6161,369920.4656,21
+58633,903226.0197,572055.3127,371228.8758,21
+58634,906454.3247,573943.7223,373266.5882,21
+58635,907705.5124,575670.6657,375714.6722,21
+58636,910274.4379,577347.6777,377022.556,21
+58637,911901.0993,578577.495,378458.4368,21
+58638,913539.4241,580542.4887,381003.4596,21
+58639,915921.8464,581851.9429,382345.7733,21
+58640,917287.7817,583791.3285,383785.8271,21
+58641,919476.6043,584959.0318,386073.6011,21
+58642,921252.9578,587069.9078,387449.7775,21
+58643,922820.7228,587810.2632,389353.4665,21
+58644,925235.6695,589433.4861,391075.2261,21
+58645,926653.105,591226.6672,392498.7644,21
+58646,928571.2055,592549.3711,394071.6433,21
+58647,930230.1163,593991.8236,395892.3554,21
+58648,932359.4491,595415.1403,397344.956,21
+58649,933345.3455,596573.5498,399514.3999,21
+58650,936309.6323,598528.9698,400291.286,21
+58651,937031.0615,599051.9598,402388.1585,21
+58652,939454.7721,601172.6692,403470.7295,21
+58653,940963.8306,602584.1517,404884.3385,21
+58654,952398.9267,603475.1279,406125.6083,21
+58655,955357.8424,605198.0379,407191.6646,21
+58656,957784.3828,606155.0316,408378.4455,21
+58657,959450.9169,607581.9575,410103.2816,21
+58658,961827.4176,609045.7426,410593.147,21
+58659,963773.3735,610058.4367,412274.0671,21
+58660,965392.5484,611703.5123,413438.8323,21
+58661,967208.6725,612925.5562,412165.7877,21
+58662,969717.2756,613965.4477,414226.6871,21
+58663,970824.5761,615437.9751,415041.6005,21
+58664,972917.0371,616505.0978,415914.4076,21
+58665,979250.1368,618471.0625,417237.9074,21
+58666,985155.4509,618345.3624,418275.6776,21
+58667,983005.369,621367.1342,418530.7576,21
+58668,988087.8087,621154.3779,420600.9357,21
+58669,989314.7864,623218.9435,420351.3093,21
+58670,991941.6831,624220.1688,422430.6827,21
+58671,993991.2951,624823.0819,422557.4956,21
+58672,996618.1754,627036.3933,423900.1765,21
+58673,998467.4088,627364.8885,424989.3266,21
+58674,1000174.531,629496.4216,425711.4723,21
+58675,1003326.034,629754.8128,426248.5988,21
+58676,1004486.75,631919.9405,427944.0192,21
+58677,1007143.691,632597.2388,428035.8807,21
+58678,1009172.862,633697.7508,429111.9947,21
+58679,1010858.728,635142.026,430062.0758,21
+58680,1012912.429,635946.7052,431145.5028,21
+58681,1074081.946,658622.3113,461557.2544,21
+58682,1081272.274,661137.8505,464196.2396,21
+58683,1084452.784,662616.9134,466417.5205,21
+58684,1087294.348,664063.0652,467313.6843,21
+58685,1090301.645,665205.2999,469166.8863,21
+58686,1092926.963,667243.5639,469600.7517,21
+58687,1094960.126,667854.4835,472380.7928,21
+58688,1098531.251,669863.4119,475267.7572,21
+58689,1100360.492,670878.6854,477094.6226,21
+58690,1104067.528,672554.3125,477620.9032,21
+58691,1104873.35,673521.4378,479637.1033,21
+58692,1107471.311,675587.4899,480998.1642,21
+58693,1111212.229,676070.8346,482707.3318,21
+58694,1113376.522,678179.3694,483751.9901,21
+58695,1114386.842,679017.1692,484819.6156,21
+58696,1118031.746,680563.8568,486950.0801,21
+58697,1119107.779,682166.766,487575.3028,21
+58698,1122459.164,683026.8948,488771.5725,21
+58699,1124165.513,684438.5049,490635.8375,21
+58700,1126837.517,685954.111,491512.9749,21
+58701,1128418.326,686811.6663,492457.3473,21
+58702,1132149.884,688378.9836,494616.4176,21
+58703,1132645.543,689496.9032,494750.7509,21
+58704,1135100.394,691166.0319,495983.7403,21
+58705,1137765.835,691897.5413,498220.2464,21
+58706,1139123.947,693095.2498,497838.9013,21
+58707,1142033.058,694940.1445,500415.6368,21
+58708,1143488.172,695509.5549,500855.5929,21
+58709,1146008.909,697097.125,502293.0139,21
+58710,1146994.102,698356.5005,502976.0905,21
+58711,1150579.34,699334.8258,504490.9148,21
+58712,1152349.302,700666.5979,505257.8212,21
+58713,1152702.805,701732.9256,506518.3698,21
+58714,1157034.458,703168.2944,507358.661,21
+58715,1157372.48,704234.1083,508270.3361,21
+58716,1159546.388,705407.4078,509748.6932,21
+58717,1162186.165,706545.6959,510314.2289,21
+58718,1163314.727,707748.1631,511519.8173,21
+58719,1165839.276,708927.2074,512192.2999,21
+58720,1167574.419,710158.9729,513794.351,21
+58721,1168506.054,711041.3063,514065.2872,21
+58722,1172156.468,712368.9752,515162.5144,21
+58723,1172599.819,713896.3014,516032.1947,21
+58724,1175304.834,713992.4075,517051.5722,21
+58725,1176412.828,716433.787,517967.2751,21
+58726,1178556.525,716428.4519,518706.805,21
+58727,1181644.486,718439.3162,519085.6358,21
+58728,1181623.356,719383.7333,521057.9679,21
+58729,1183828.321,720258.0185,520832.9257,21
+58730,1186726.35,721509.1664,521966.6308,21
+58731,1187008.813,722299.5934,523345.5825,21
+58732,1189637.733,724174.7166,523143.3748,21
+58733,1191479.651,724432.9978,524782.9821,21
+58734,1192387.139,726083.5462,524925.174,21
+58735,1194782.991,727363.8567,525639.4786,21
+58736,1196568.81,728017.9484,526770.516,21
+58737,1198032.438,728907.3832,527615.8522,21
+58738,1200468.741,731781.839,528162.6005,21
+58739,1200812.021,740037.4764,528914.1776,21
+58740,1203938.466,737664.3208,529763.0695,21
+58741,1203710.766,741016.024,530068.1386,21
+58742,1205776.255,744194.0264,530592.3405,21
+58743,1206558.039,746360.4708,531338.4539,21
+58744,1206825.046,747937.5833,531602.0516,21
+58745,1207865.762,751509.8739,531671.8447,21
+58746,1208649.014,751603.7385,532282.2491,21
+58747,1209021.992,755047.6945,532329.645,21
+58748,1210386.47,757415.7373,533065.7526,21
+58749,1210158.717,758993.4288,533298.9022,21
+58750,1211001.61,760371.6652,533186.7408,21
+58751,1212167.056,763663.3624,534122.9349,21
+58752,1212715.04,765266.7022,534188.3294,21
+58753,1212713.775,767348.7491,534522.0647,21
+58754,1214173.998,770353.632,534727.0769,21
+58755,1214709.886,770995.804,535343.0721,21
+58756,1214743.9,773331.1309,535492.085,21
+58757,1214869.233,776661.3471,535674.5833,21
+58758,1217586.512,776833.404,535798.0372,21
+58759,1215827.54,779961.0058,535945.9856,21
+58760,1217706.325,782223.931,536827.2104,21
+58761,1218212.693,783373.9173,536761.6738,21
+58762,1218625.863,786025.0576,536790.1583,21
+58763,1218909.181,787505.5274,537620.7439,21
+58764,1220055.115,789961.1938,537298.4516,21
+58765,1219247.126,791239.5718,537084.2242,21
+58766,1221443.675,794565.0377,538296.6788,21
+58767,1221174.056,795112.8547,537503.5463,21
+58768,1221667.232,797762.1312,538107.297,21
+58769,1222331.529,799903.6506,538691.9342,21
+58770,1223572.597,800987.4969,538770.9722,21
+58771,1223505.143,804116.2365,538793.3225,21
+58772,1225313.052,805530.019,538863.9784,21
+58773,1225054.468,807306.105,539541.4459,21
+58774,1225790.836,809297.5763,539332.5974,21
+58775,1225015.156,812029.0143,539580.2402,21
+58776,1227307.526,812391.035,540184.7667,21
+58777,1226859.221,815229.4351,539762.4565,21
+58778,1227068.56,818445.0577,539993.7209,21
+58779,1227143.591,818061.0586,540117.1758,21
+58780,1228974.632,820880.3998,540516.5109,21
+58781,1227566.191,823951.1105,540642.8451,21
+58782,1229589.48,823859.0882,540721.501,21
+58783,1228838.235,827139.2491,540720.1994,21
+58784,1229675.637,828159.4038,541331.7318,21
+58785,1229913.172,830491.0878,540692.3129,21
+58786,1230228.372,832226.2386,541052.7622,21
+58787,1230341.983,833867.9005,541697.8218,21
+58788,1231100.974,836807.8184,541148.8646,21
+58789,1230365.021,838257.8514,541871.5311,21
+58790,1231526.804,838773.3304,541619.5644,21
+58791,1232353.057,842956.3759,542342.0148,21
+58792,1230544.89,842898.5049,541525.2423,21
+58793,1232663.609,844981.3643,542193.9262,21
+58794,1231598.427,848408.6006,541754.5277,21
+58795,1232267.753,848469.925,542725.3763,21
+58796,1232846.79,851219.4721,542204.1058,21
+58797,1231446.813,852876.6953,541838.4456,21
+58798,1232254.299,854523.7597,543021.2208,21
+58799,1231776.449,857033.3715,542602.1695,21
+58800,1230983.023,858535.5101,542536.1114,21
+58801,1241969.22,867611.9979,546448.8097,21
+58802,1245324.475,871678.2633,546493.5822,21
+58803,1248041.188,874273.845,545586.7897,21
+58804,1251538.094,875446.3693,544662.137,21
+58805,1252462.706,877901.5276,544489.7065,21
+58806,1255030.18,880487.5495,543436.1519,21
+58807,1258014.106,882597.943,542119.1639,21
+58808,1258870.998,883229.9619,542263.0843,21
+58809,1262441.518,887616.7867,540684.3826,21
+58810,1262733.051,887233.8537,545276.8368,21
+58811,1267090.556,890542.709,547284.9203,21
+58812,1267205.213,891900.9303,544984.5835,21
+58813,1270347.634,895025.4563,545155.6862,21
+58814,1270850.167,894652.7564,545949.676,21
+58815,1274670.026,899365.626,544389.055,21
+58816,1275507.15,898785.6569,545010.7722,21
+58817,1277252.531,902400.2566,545456.0784,21
+58818,1280222.73,903147.624,544181.3432,21
+58819,1282375.786,906970.8249,544062.0459,21
+58820,1283431.902,905989.4951,544746.6616,21
+58821,1285831.515,910705.7252,542909.4866,21
+58822,1288108.704,910729.0336,543730.0123,21
+58823,1290400.016,914186.4846,542129.9283,21
+58824,1291189.82,914403.5038,543345.9256,21
+58825,1293942.369,917190.4407,541788.1528,21
+58826,1295743.467,918661.7042,541474.9605,21
+58827,1298232.746,921114.1244,541660.6561,21
+58828,1299125.163,922628.8724,540585.7781,21
+58829,1301752.751,923288.6483,540239.5792,21
+58830,1304127.831,927178.6583,540013.7828,21
+58831,1304457.619,928436.3126,538857.9092,21
+58832,1308406.066,929404.2857,539846.9261,21
+58833,1308796.43,931742.3723,537270.0134,21
+58834,1311877.973,933763.4011,538526.1909,21
+58835,1313017.868,934999.1014,537324.0503,21
+58836,1315233.039,937716.5909,536859.0691,21
+58837,1317243.251,938095.2974,536466.9336,21
+58838,1319035.976,941619.5686,536091.4426,21
+58839,1321010.76,942116.6684,534697.6102,21
+58840,1322631.479,944192.0164,535485.6363,21
+58841,1324615.522,947177.3171,533912.8009,21
+58842,1327656.612,946728.2908,534265.9948,21
+58843,1328158.345,950593.6336,532343.1368,21
+58844,1329677.882,951433.4086,533498.7753,21
+58845,1333482.077,953089.0966,530384.6998,21
+58846,1333483.777,954639.9538,532886.5329,21
+58847,1336376.362,957101.4473,529890.2768,21
+58848,1337774.546,959954.5561,529736.2258,21
+58849,1339958.915,959620.7973,528898.7601,21
+58850,1342076.725,963717.6918,529183.0032,21
+58851,1343435.146,964253.1889,528056.6922,21
+58852,1346073.197,965475.9825,526856.0573,21
+58853,1347091.715,968776.2202,527139.6072,21
+58854,1348700.183,969419.4285,526068.0826,21
+58855,1352574.811,971988.2151,525863.3717,21
+58856,1351640.237,972477.3718,524003.6203,21
+58857,1355360.719,976003.2104,524961.9987,21
+58858,1357112.731,975666.4123,522890.8541,21
+58859,1358519.098,979504.1217,522577.5571,21
+58860,1360436.981,979808.0243,521400.7565,21
+58861,1360861.74,980063.4043,522269.4766,21
+58862,1362903.718,981718.7545,523817.4781,21
+58863,1363127.642,982273.9427,1266757.429,21
+58864,1364222.893,982286.6405,449900.3919,21
+58865,1364895.712,982045.8716,837113.4674,21
+58866,1364487.227,982606.4943,418646.1634,21
+58867,1366112.223,982786.0421,702683.1277,21
+58868,1366022.517,983356.408,551909.3018,21
+58869,1366266.98,982609.1224,507174.4724,21
+58870,1368330.666,983927.1382,534003.3343,21
+58871,1367077.765,983418.9544,528172.632,21
+58872,1368736.417,983788.9253,526200.055,21
+58873,1369164.81,983984.8759,525948.8309,21
+58874,1368980.073,983876.2206,526076.1282,21
+58875,1369796.638,984698.5597,526471.1323,21
+58876,1370748.247,983232.5867,527458.0981,21
+58877,1371176.155,985804.668,527139.4907,21
+58878,1370826.262,984112.874,527233.0042,21
+58879,1373029.218,985569.9902,527601.3988,21
+58880,1371704.804,984778.7407,528202.0989,21
+58881,1373815.796,985068.6475,528905.1554,21
+58882,1373171.799,985537.8648,528002.6555,21
+58883,1373879.513,985689.8538,528668.9498,21
+58884,1374574.851,985556.5465,530509.8543,21
+58885,1374874.621,985457.2921,529559.2253,21
+58886,1376187.843,986057.762,529780.3965,21
+58887,1375306.616,985887.0756,531601.4836,21
+58888,1376998.642,986022.3555,529996.4242,21
+58889,1376592.396,985804.127,531487.8592,21
+58890,1379684.722,987853.434,531287.0094,21
+58891,1380436.552,985301.8803,532090.8245,21
+58892,1379653.049,987273.7555,531013.8283,21
+58893,1381605.022,985987.1138,533758.8663,21
+58894,1380926.452,987269.2759,532031.4713,21
+58895,1381437.853,986277.217,533887.7764,21
+58896,1382509.545,987195.8293,532891.2096,21
+58897,1383221.626,987177.5225,533581.3232,21
+58898,1383161.684,986901.3974,534949.3361,21
+58899,1384058.295,987530.7034,535039.3227,21
+58900,1383876.485,986733.7923,535883.4336,21
+58901,1385101.715,987567.8558,535312.9583,21
+58902,1384388.815,987382.8405,537226.1145,21
+58903,1386441.321,987466.9984,537163.2023,21
+58904,1386444.718,987105.6016,538996.8675,21
+58905,1386136.677,988005.2277,538107.9796,21
+58906,1387260.461,987633.4147,539036.8113,21
+58907,1387711.18,986846.0215,541233.0138,21
+58908,1387508.552,987951.4453,540168.0976,21
+58909,1388565.504,988025.2412,541319.9249,21
+58910,1389038.174,987023.0187,542192.7343,21
+58911,1386646.506,988435.835,542559.776,21
+58912,1389143.346,987397.9047,543518.1394,21
+58913,1386824.011,986851.851,544463.4527,21
+58914,1389693.883,988893.569,545143.3987,21
+58915,1387657.411,986634.7224,544878.7219,21
+58916,1389940.515,988118.3508,547159.4048,21
+58917,1390384.209,986871.0532,546618.5669,21
+58918,1389394.154,987253.9687,548210.1578,21
+58919,1390933.257,987313.6222,547582.5904,21
+58920,1390654.02,985926.4597,549549.8782,15.6
+58921,0,0,0,15.6
+58922,0,116.1751346,0,15.6
+58923,0,0,0,15.6
+58924,0,0,0,15.6
+58925,0,0,0,15.6
+58926,0,117.0733144,1253475.9,15.6
+58927,0,0,0,15.6
+58928,0,0,0,15.6
+58929,0,0,0,15.6
+58930,0,98.43834778,0,15.6
+58931,0,0,0,15.6
+58932,0,0,0,15.6
+58933,0,0,0,15.6
+58934,0,72.49196002,0,15.6
+58935,0,0,0,15.6
+58936,0,0,0,15.6
+58937,0,0,0,15.6
+58938,0,368307.2499,0,15.6
+58939,0,0,0,15.6
+58940,0,0,0,15.6
+58941,0,0,0,15.6
+58942,0,0,0,15.6
+58943,0,270.801628,0,15.6
+58944,0,0,0,15.6
+58945,0,0,0,15.6
+58946,0,0,0,15.6
+58947,0,0,0,15.6
+58948,0,0,0,15.6
+58949,0,0,0,15.6
+58950,0,0,0,15.6
+58951,0,0,0,15.6
+58952,0,0,0,15.6
+58953,0,0,0,15.6
+58954,0,0,0,15.6
+58955,0,0,0,15.6
+58956,0,0,0,15.6
+58957,0,0,0,15.6
+58958,0,0,0,15.6
+58959,0,0,0,15.6
+58960,0,0,0,15.6
+58961,0,0,1194271.62,15.6
+58962,0,0,0,15.6
+58963,0,0,0,15.6
+58964,0,0,0,15.6
+58965,0,0,0,15.6
+58966,0,0,0,15.6
+58967,0,0,0,15.6
+58968,0,0,0,15.6
+58969,0,0,0,15.6
+58970,0,0,0,15.6
+58971,339266.0576,0,0,15.6
+58972,0,0,0,15.6
+58973,0,0,0,15.6
+58974,0,0,0,15.6
+58975,0,0,0,15.6
+58976,0,0,0,15.6
+58977,0,368221.6279,0,15.6
+58978,0,0,0,15.6
+58979,0,0,0,15.6
+58980,0,0,0,15.6
+58981,0,0,0,15.6
+58982,0,63.37830832,0,15.6
+58983,0,0,0,15.6
+58984,0,0,0,15.6
+58985,0,0,0,15.6
+58986,0,0,0,15.6
+58987,0,0,0,15.6
+58988,0,0,0,15.6
+58989,0,0,0,15.6
+58990,30644.79948,0,0,15.6
+58991,1240.999572,0,0,15.6
+58992,2136.917689,0,0,15.6
+58993,8916.978794,0,0,15.6
+58994,10498.48428,0,0,15.6
+58995,7856.45261,63.09992538,0,15.6
+58996,8850.544303,0,1020182.072,15.6
+58997,8958.532194,0,0,15.6
+58998,9118.405364,0,0,15.6
+58999,9193.359708,0,0,15.6
+59000,9325.268832,0,0,15.6
+59001,9404.657679,0,0,15.6
+59002,9546.845046,0,0,15.6
+59003,9631.74528,0,0,15.6
+59004,9747.990017,0,0,15.6
+59005,9840.846987,0,0,15.6
+59006,9967.493251,336.1387989,0,15.6
+59007,10043.01591,0,0,15.6
+59008,10165.76287,0,0,15.6
+59009,10222.68059,0,0,15.6
+59010,10334.41973,0,0,15.6
+59011,10470.84548,0,0,15.6
+59012,10523.93751,0,0,15.6
+59013,10641.95819,0,0,15.6
+59014,10705.12596,0,0,15.6
+59015,10814.5502,0,0,15.6
+59016,10903.18791,368218.9929,0,15.6
+59017,10993.72992,0,0,15.6
+59018,11093.9398,0,0,15.6
+59019,11142.76592,0,0,15.6
+59020,0,0,0,15.6
+59021,0,0,0,15.6
+59022,0,0,0,15.6
+59023,0,0,0,15.6
+59024,0,0,0,15.6
+59025,339262.9469,0,0,15.6
+59026,49749.09796,0,0,15.6
+59027,0,0,0,15.6
+59028,4060.119231,0,0,15.6
+59029,18282.39604,0,0,15.6
+59030,11203.08951,0,0,15.6
+59031,12153.59124,0,990709.9461,15.6
+59032,12308.93475,0,0,15.6
+59033,12398.6103,0,0,15.6
+59034,12473.56908,0,0,15.6
+59035,12539.46935,0,0,15.6
+59036,12614.88726,0,0,15.6
+59037,12691.70744,0,0,15.6
+59038,12759.40367,0,0,15.6
+59039,12829.60294,0,0,15.6
+59040,12879.78474,0,0,15.6
+59041,13716.70749,0,0,15.6
+59042,13830.4169,0,0,15.6
+59043,14035.31326,0,0,15.6
+59044,14100.33887,0,0,15.6
+59045,14313.95497,0,0,15.6
+59046,14396.35501,0,0,15.6
+59047,14565.88513,0,0,15.6
+59048,14702.47677,0,0,15.6
+59049,14821.49632,0,0,15.6
+59050,14968.47017,0,0,15.6
+59051,15099.10088,0,0,15.6
+59052,15238.78918,0,0,15.6
+59053,15378.66267,0,0,15.6
+59054,15497.49007,0,0,15.6
+59055,15656.80096,368217.5668,0,15.6
+59056,0,0,0,15.6
+59057,0,0,0,15.6
+59058,0,0,0,15.6
+59059,0,0,0,15.6
+59060,65434.80759,0,0,15.6
+59061,2331.387727,0,0,15.6
+59062,6717.517272,0,0,15.6
+59063,24722.18864,0,0,15.6
+59064,15519.10945,0,0,15.6
+59065,17024.24388,0,0,15.6
+59066,17216.39206,0,963536.0813,15.6
+59067,17288.68281,0,0,15.6
+59068,17459.09178,0,0,15.6
+59069,17575.45025,0,0,15.6
+59070,17680.68535,0,0,15.6
+59071,17833.33978,0,0,15.6
+59072,17908.40316,0,0,15.6
+59073,18111.16701,0,0,15.6
+59074,18155.43644,0,0,15.6
+59075,18337.98498,0,0,15.6
+59076,18446.61617,0,0,15.6
+59077,18534.57881,0,0,15.6
+59078,18680.91357,0,0,15.6
+59079,18821.59525,0,0,15.6
+59080,18910.42072,0,0,15.6
+59081,19068.97463,0,0,15.6
+59082,358434.7046,0,0,15.6
+59083,19277.74422,0,0,15.6
+59084,19423.01076,0,0,15.6
+59085,19521.92566,0,0,15.6
+59086,19663.98029,0,0,15.6
+59087,19764.34383,0,0,15.6
+59088,19903.60933,0,0,15.6
+59089,20002.99329,0,0,15.6
+59090,0,0,0,15.6
+59091,0,0,0,15.6
+59092,0,0,0,15.6
+59093,74681.35614,0,0,15.6
+59094,6635.868566,0,0,15.6
+59095,9810.423772,368211.2536,0,15.6
+59096,29145.97479,0,0,15.6
+59097,19601.19198,0,0,15.6
+59098,21089.40389,0,0,15.6
+59099,21243.51959,0,0,15.6
+59100,21358.07982,0,0,15.6
+59101,21433.02902,0,938724.0445,15.6
+59102,21486.79043,0,0,15.6
+59103,21605.85824,0,0,15.6
+59104,21692.46439,0,0,15.6
+59105,318426.2154,0,0,15.6
+59106,41774.79832,3.268275805,0,15.6
+59107,36961.19989,0,0,15.6
+59108,100820.866,0,0,15.6
+59109,105417.7382,248.4481838,0,15.6
+59110,96776.74486,0,0,15.6
+59111,100923.0649,0,0,15.6
+59112,101023.0088,0,0,15.6
+59113,103210.8559,0,0,15.6
+59114,103868.3931,0,0,15.6
+59115,104968.319,0,0,15.6
+59116,106011.8087,0,0,15.6
+59117,106914.611,0,0,15.6
+59118,107889.1328,0,0,15.6
+59119,108862.2146,0,0,15.6
+59120,110005.2187,0,0,15.6
+59121,110955.1553,0,0,15.6
+59122,111871.0386,0,0,15.6
+59123,89596.21988,0,0,15.6
+59124,90771.91435,0,0,15.6
+59125,91358.41806,0,0,15.6
+59126,173795.3578,0,0,15.6
+59127,107036.145,0,0,15.6
+59128,105539.1877,0,0,15.6
+59129,126935.0602,0,0,15.6
+59130,118399.6287,0,0,15.6
+59131,121078.695,0,0,15.6
+59132,121566.2919,0,0,15.6
+59133,122628.8116,0,0,15.6
+59134,123789.4199,0,0,15.6
+59135,24175.29501,368204.6739,0,15.6
+59136,363537.2914,0,0,15.6
+59137,24374.41802,0,916058.9506,15.6
+59138,24382.18989,0,0,15.6
+59139,24510.7442,0,0,15.6
+59140,24565.58317,0,0,15.6
+59141,444744.9635,0,0,15.6
+59142,24740.2035,0,0,15.6
+59143,79333.03762,0,0,15.6
+59144,180742.3678,0,0,15.6
+59145,126191.1846,0,0,15.6
+59146,134446.7124,0,0,15.6
+59147,135813.0616,0,0,15.6
+59148,136457.8226,0,0,15.6
+59149,137364.7979,0,0,15.6
+59150,138192.3726,0,0,15.6
+59151,139092.6985,0,0,15.6
+59152,139589.8203,0,0,15.6
+59153,140961.9673,0,0,15.6
+59154,141159.6545,0,0,15.6
+59155,142530.1083,0,0,15.6
+59156,117186.7199,0,0,15.6
+59157,118257.9154,0,0,15.6
+59158,195085.6835,37458.93748,0,15.6
+59159,130039.9109,201.5457481,0,15.6
+59160,143675.0104,7725.965136,0,15.6
+59161,149660.1468,12316.96652,0,15.6
+59162,146841.4765,12161.02735,0,15.6
+59163,147095.2261,10697.49676,0,15.6
+59164,147212.2317,11257.47518,0,15.6
+59165,147813.8988,11262.37559,0,15.6
+59166,147726.9671,11390.4832,0,15.6
+59167,148109.6499,11350.11949,0,15.6
+59168,148347.4082,11455.01018,0,15.6
+59169,148503.9045,11443.71188,0,15.6
+59170,148788.6429,11509.63239,0,15.6
+59171,26062.28112,11574.85527,0,15.6
+59172,26034.34533,11554.76033,0,15.6
+59173,26077.18698,11648.07012,895364.3349,15.6
+59174,26053.9206,11666.67018,0,15.6
+59175,26077.1838,379896.5074,0,15.6
+59176,536726.8729,11738.23212,0,15.6
+59177,30319.15521,11753.38747,0,15.6
+59178,82523.92979,11857.30252,0,15.6
+59179,208839.1655,11792.12431,0,15.6
+59180,142447.8649,11951.18128,0,15.6
+59181,151093.618,11977.26326,0,15.6
+59182,151869.7126,12004.75961,0,15.6
+59183,151882.2685,12061.85728,0,15.6
+59184,152096.689,12068.04093,0,15.6
+59185,152176.2313,12109.10453,0,15.6
+59186,152282.0119,12151.09145,0,15.6
+59187,152503.6608,12173.46972,0,15.6
+59188,126487.193,0,0,15.6
+59189,465931.9505,0,0,15.6
+59190,203734.874,0,0,15.6
+59191,138595.7627,0,0,15.6
+59192,149370.8412,0,0,15.6
+59193,156754.8658,0,0,15.6
+59194,153139.7219,0,0,15.6
+59195,153657.067,52038.50708,0,15.6
+59196,153672.3738,467.6491843,0,15.6
+59197,153779.5749,4389.65215,0,15.6
+59198,153887.1446,16354.45863,0,15.6
+59199,154240.968,13429.33649,0,15.6
+59200,154159.4955,12033.88118,0,15.6
+59201,154395.8985,12654.0039,0,15.6
+59202,154510.0685,12656.33779,0,15.6
+59203,154588.3893,12712.75538,0,15.6
+59204,154510.0605,12738.10391,0,15.6
+59205,154908.2312,12730.68216,0,15.6
+59206,26142.49015,12828.39414,0,15.6
+59207,26133.85685,12787.73842,0,15.6
+59208,26053.12107,12827.09084,0,15.6
+59209,26160.74558,12891.36879,876468.8283,15.6
+59210,26105.75731,12864.58083,0,15.6
+59211,573486.0554,12909.39928,0,15.6
+59212,39916.0226,12962.78456,0,15.6
+59213,71427.37812,12951.86789,0,15.6
+59214,218481.2759,12992.83709,0,15.6
+59215,149274.963,381217.7945,0,15.6
+59216,155537.7161,13035.26419,0,15.6
+59217,156844.4572,13073.89332,0,15.6
+59218,156866.6191,13092.31993,0,15.6
+59219,156862.7104,13091.79933,0,15.6
+59220,131027.2951,13142.82463,0,15.6
+59221,131344.8345,13267.30159,0,15.6
+59222,209036.2257,13348.34194,0,15.6
+59223,144523.6469,13492.55275,0,15.6
+59224,154833.7138,13557.87423,0,15.6
+59225,163602.0778,0,0,15.6
+59226,159492.3185,0,0,15.6
+59227,160650.7529,0,0,15.6
+59228,161305.6217,0,0,15.6
+59229,161450.6677,3.303710269,0,15.6
+59230,162478.8262,0,0,15.6
+59231,162491.425,62957.05009,0,15.6
+59232,163301.8748,0,0,15.6
+59233,163639.9429,3806.568305,0,15.6
+59234,164668.5204,20543.72675,0,15.6
+59235,164268.8821,15156.35188,0,15.6
+59236,165325.4005,14622.8581,0,15.6
+59237,166157.4057,15011.08491,0,15.6
+59238,165926.3553,15196.80491,0,15.6
+59239,167222.6127,15285.83214,0,15.6
+59240,167082.3638,15370.89962,0,15.6
+59241,366411.6297,15533.68174,0,15.6
+59242,27169.35912,15557.3852,0,15.6
+59243,27248.82455,15996.58952,0,15.6
+59244,27214.5603,15790.81535,0,15.6
+59245,594210.3753,15922.63277,859217.4701,15.6
+59246,43789.79162,16047.59742,0,15.6
+59247,88952.46948,16102.23309,0,15.6
+59248,239892.0567,16221.50228,0,15.6
+59249,160177.813,16392.52832,0,15.6
+59250,173345.8805,16489.39912,0,15.6
+59251,173799.2456,16576.30736,0,15.6
+59252,146707.4507,16752.36825,0,15.6
+59253,146931.739,16814.64103,0,15.6
+59254,226921.202,16975.08744,0,15.6
+59255,165775.3897,385266.7611,0,15.6
+59256,168845.9038,17130.3588,0,15.6
+59257,181151.7975,17257.56827,0,15.6
+59258,176608.9619,17341.4297,0,15.6
+59259,177696.5085,17443.23223,0,15.6
+59260,177363.8408,17661.17129,0,15.6
+59261,178718.6358,0,0,15.6
+59262,178742.0052,0,0,15.6
+59263,179132.1281,0,0,15.6
+59264,179424.1277,3.932831465,0,15.6
+59265,180256.2026,72762.27425,0,15.6
+59266,180657.581,86.35342892,0,15.6
+59267,180935.023,7704.105218,0,15.6
+59268,181725.0296,27554.45209,0,15.6
+59269,181847.7122,16799.17813,0,15.6
+59270,182235.2199,18653.0534,0,15.6
+59271,183134.3037,18908.24072,0,15.6
+59272,182858.8806,18824.45694,0,15.6
+59273,184074.9355,19059.11967,0,15.6
+59274,183921.0347,19035.91555,0,15.6
+59275,28708.72885,19192.82802,0,15.6
+59276,28700.11687,19332.34241,0,15.6
+59277,28794.3106,19354.94645,0,15.6
+59278,28803.77162,19507.27887,0,15.6
+59279,669587.8733,19639.65358,0,15.6
+59280,76159.56975,19754.78705,0,17.8
+59281,1037040.857,1204007.742,843467.8686,17.8
+59282,918414.5973,365400.6195,0,17.8
+59283,436155.5369,180008.8352,0,17.8
+59284,480778.2317,322220.6641,0,17.8
+59285,454596.8528,309140.1902,0,17.8
+59286,423427.7505,284256.0445,0,17.8
+59287,444094.2009,282226.1945,0,17.8
+59288,418438.2925,280335.1101,0,17.8
+59289,422150.3243,279238.4058,0,17.8
+59290,414138.7404,276989.3755,0,17.8
+59291,415976.7718,275541.0532,0,17.8
+59292,414213.1619,274205.8313,0,17.8
+59293,752317.3636,272201.0318,0,17.8
+59294,412353.1583,271143.705,0,17.8
+59295,411241.5546,598002.6283,0,17.8
+59296,410903.6826,228844.7125,0,17.8
+59297,409677.6033,332887.0536,0,17.8
+59298,409830.957,246028.7005,0,17.8
+59299,408466.5751,263044.0184,0,17.8
+59300,407975.9404,265183.3903,0,17.8
+59301,407690.7888,261497.3067,0,17.8
+59302,406952.9921,259304.7843,0,17.8
+59303,406650.5099,258968.7356,0,17.8
+59304,405966.3293,257265.2992,0,17.8
+59305,405649.4658,256130.9412,0,17.8
+59306,404774.9055,254375.4384,0,17.8
+59307,404657.8927,253432.7787,0,17.8
+59308,404710.4213,252353.6584,0,17.8
+59309,63359.08934,250929.5436,0,17.8
+59310,63344.93046,250167.7877,0,17.8
+59311,864091.6162,38528.56972,0,17.8
+59312,438497.4238,37385.95968,0,17.8
+59313,383541.5267,37538.04618,0,17.8
+59314,413670.6212,37543.47912,0,17.8
+59315,354936.2348,700945.1212,829088.3871,17.8
+59316,351138.7192,43214.38352,0,17.8
+59317,438620.5996,236177.7862,0,17.8
+59318,431825.9574,276331.356,0,17.8
+59319,413620.8631,235649.2572,0,17.8
+59320,412770.9499,239746.8232,0,17.8
+59321,409596.0655,238355.2887,0,17.8
+59322,411693.3055,238071.7026,0,17.8
+59323,410132.5391,236293.5155,0,17.8
+59324,409662.0891,235254.4249,0,17.8
+59325,409829.0628,233908.0888,0,17.8
+59326,409154.9624,232934.5728,0,17.8
+59327,409413.5995,195739.8822,0,17.8
+59328,409402.3513,194949.2158,0,17.8
+59329,408916.1152,281910.6579,0,17.8
+59330,408795.7798,204574.0111,0,17.8
+59331,747721.1153,595202.2103,0,17.8
+59332,408817.8958,225560.7216,0,17.8
+59333,408557.129,222792.9177,0,17.8
+59334,407749.5273,221807.1602,0,17.8
+59335,408646.7591,220698.6495,0,17.8
+59336,408460.246,221415.825,0,17.8
+59337,407504.9758,221902.0662,0,17.8
+59338,407839.0422,219457.1606,0,17.8
+59339,407848.4827,218906.4286,0,17.8
+59340,407876.1683,218153.5851,0,20
+59341,288596.7712,1411852.592,1651838.82,20
+59342,2293755.068,1286135.932,1007472.684,20
+59343,1172560.282,376107.5081,138467.2935,20
+59344,1086105.467,606296.6539,301432.5063,20
+59345,876163.7119,95997.34979,426823.1178,20
+59346,1011178.223,140804.2337,311177.8077,20
+59347,819353.041,1182544.879,320913.4299,20
+59348,1000701.998,304055.687,322376.4189,20
+59349,925981.7068,519327.33,1194956.366,20
+59350,940813.5891,529905.2437,342927.5653,20
+59351,928391.9756,508942.1776,333376.7398,20
+59352,900655.6505,507800.6854,339160.4428,20
+59353,917262.101,507268.3173,341254.2125,20
+59354,908447.8253,505568.8143,342872.8493,20
+59355,908413.4784,505662.238,345147.4885,20
+59356,906104.0742,504989.1463,346672.286,20
+59357,905211.5086,503904.9862,348644.4368,20
+59358,904651.2241,503391.9759,350883.795,20
+59359,901784.3436,407664.9551,353055.9859,20
+59360,903545.1304,406754.5742,354251.8258,20
+59361,900781.773,592507.6572,356408.9622,20
+59362,900535.2947,492354.9744,358566.4122,20
+59363,900025.818,499902.3895,360347.046,20
+59364,898894.3077,508282.9476,361637.4983,20
+59365,897871.2607,498908.9004,364112.419,20
+59366,898366.1466,502400.3321,366061.732,20
+59367,896934.489,869589.7569,366563.8795,20
+59368,898151.1712,500700.2928,369927.606,20
+59369,1234656.146,500914.1879,370994.7666,20
+59370,896070.4449,500805.8004,372793.2374,20
+59371,896383.7798,481153.1316,0,20
+59372,150579.8233,480461.4532,0,20
+59373,962562.5551,481258.7227,0,20
+59374,925552.7293,480475.4617,200090.1856,20
+59375,861987.8133,481004.8601,74403.3272,20
+59376,895692.1619,481255.9049,1661826.237,20
+59377,935900.8838,139973.337,164528.1287,20
+59378,788189.9183,92778.35557,326695.5571,20
+59379,928160.9728,1058315.305,438367.5265,20
+59380,894881.9727,364749.008,367795.1529,20
+59381,898729.4353,491423.2253,375458.6968,20
+59382,893310.3372,524117.3271,377890.9549,20
+59383,895867.841,503652.1103,1432031.355,20
+59384,897123.5957,502590.6316,374484.3783,20
+59385,894552.1029,502792.6428,375926.7234,20
+59386,895612.0575,503576.5831,378562.6925,20
+59387,896057.041,503130.423,379633.6499,20
+59388,895502.2659,504064.7637,381337.2096,20
+59389,896191.1984,503590.6241,383490.2823,20
+59390,895972.105,504587.0132,384897.3355,20
+59391,896858.3467,414187.3202,386955.2832,20
+59392,896528.476,414145.1405,388132.064,20
+59393,896824.9208,586655.3598,390440.7318,20
+59394,897102.1522,499573.8935,391702.4296,20
+59395,897708.5518,504630.0023,393509.6619,20
+59396,897602.427,511401.083,395282.9301,20
+59397,897734.2136,505675.645,396642.6862,20
+59398,897638.4274,508918.9328,398435.734,20
+59399,900059.5233,508001.1095,400257.1821,20
+59400,897983.048,508251.3391,400503.1794,21
+59401,2632668.09,2957619.709,4205785.084,21
+59402,2222373.59,1673999.938,1605785.204,21
+59403,703883.0808,590133.1109,105827.3276,21
+59404,800018.2366,581126.1717,467126.6432,21
+59405,1260454.459,618359.576,590075.5764,21
+59406,993972.9679,879190.3932,655797.8252,21
+59407,1008554.512,726426.5323,570868.6132,21
+59408,1017301.504,732024.9881,579124.3569,21
+59409,1010031.025,741616.5991,590852.7296,21
+59410,1007755.749,740163.3377,594850.0331,21
+59411,1006292.667,737047.3921,595096.4882,21
+59412,1002122.984,735271.5712,596875.2725,21
+59413,999605.4253,733025.7603,597486.2762,21
+59414,997784.1948,730532.4633,599537.0422,21
+59415,996888.3963,729399.96,601831.4502,21
+59416,993275.4962,727220.2316,601372.3851,21
+59417,991592.7103,725577.6589,604097.5477,21
+59418,990538.6106,723246.3192,604438.1516,21
+59419,988219.1928,721708.0098,606070.3629,21
+59420,986690.2147,719360.2139,608720.6635,21
+59421,984307.6021,718078.5723,607868.039,21
+59422,983013.6536,716208.0143,610198.0446,21
+59423,980157.7452,715825.7716,611707.6807,21
+59424,980594.2207,712990.4053,612380.5461,21
+59425,976550.5316,712147.6746,613611.9126,21
+59426,977411.937,712231.3384,614835.6669,21
+59427,975054.8865,708893.2571,615023.1712,21
+59428,973692.8791,708195.6794,617069.5138,21
+59429,971719.1441,707784.2281,617784.216,21
+59430,972113.605,706464.776,620026.7057,21
+59431,968717.9574,1139014.12,617575.2515,21
+59432,967967.4,704260.5246,622648.6812,21
+59433,964810.0923,702341.94,621534.9243,21
+59434,961257.9533,702750.9353,621880.0772,21
+59435,963718.9163,698784.86,624864.3597,21
+59436,957688.4243,701238.7434,623138.4845,21
+59437,957733.9932,697517.8491,625683.8557,21
+59438,957570.6705,697931.0664,625441.9177,21
+59439,953748.3647,697065.3757,627929.5338,21
+59440,953461.7739,695467.9012,626814.8921,21
+59441,951565.1471,695697.4472,629847.7456,21
+59442,951663.5578,693589.0111,628725.965,21
+59443,946611.0015,692684.9589,629021.8581,21
+59444,949458.5384,693944.3084,631537.7918,21
+59445,945613.1487,690158.4236,630333.5413,21
+59446,946470.6432,691587.1109,633000.8282,21
+59447,943428.4912,689251.1526,632540.8907,21
+59448,941941.9679,690296.5914,633402.532,21
+59449,942509.6762,687632.0724,635078.9627,21
+59450,940097.5778,688279.7615,633258.4053,21
+59451,939759.6956,688026.3129,636662.9577,21
+59452,936990.9695,687008.0605,634314.1998,21
+59453,937119.0365,687034.0482,636896.8844,21
+59454,936117.0265,685898.0606,637134.5171,21
+59455,935059.6287,1120343.852,639048.5528,21
+59456,932631.877,685272.0437,635768.1299,21
+59457,934292.7341,683126.5421,640079.3357,21
+59458,930394.1984,684501.4671,639669.4049,21
+59459,931468.2611,682627.6597,639690.3401,21
+59460,928538.544,682107.3387,639265.7769,21
+59461,1621802.18,1236874.526,641005.9832,21
+59462,1618956.909,1235249.905,641051.0764,21
+59463,1617026.919,1235056.419,640812.4526,21
+59464,2053335.056,1233291.958,641565.3972,21
+59465,1614547.807,1234198.762,642955.4627,21
+59466,1613711.935,1232018.867,644070.1884,21
+59467,1614394.398,1231259.219,641614.9345,21
+59468,1611456.197,1231722.291,645883.987,21
+59469,1611855.649,1228052.559,643520.2092,21
+59470,1608988.8,1231389.274,646764.3551,21
+59471,1609126.876,1227875.857,645574.6959,21
+59472,1608006.958,1228379.567,646752.611,21
+59473,1607704.969,1225638.25,646644.2524,21
+59474,1605005.292,1228193.266,647812.3243,21
+59475,1604371.408,1224551.462,648800.5782,21
+59476,1603993.01,1226366.336,647142.3516,21
+59477,1603148.906,1224500.658,650626.937,21
+59478,1601415.042,1223567.349,649597.6174,21
+59479,1600456.387,1223667.097,650173.9845,21
+59480,1599507.65,1222320.718,650199.2561,21
+59481,1599287.457,1222380.198,651392.9593,21
+59482,1597471.31,1220737.781,652058.4374,21
+59483,1597494.859,1221219.372,651999.1357,21
+59484,1589180.738,1220288.841,652117.2686,21
+59485,1589216.389,1219366.624,653886.8308,21
+59486,1585702.39,1219778.378,652285.8438,21
+59487,1587096.007,1217220.313,655336.8865,21
+59488,1584198.498,1218483.254,653740.9916,21
+59489,1583772.055,1216715.238,655024.7665,21
+59490,1582282.952,1216938.856,656015.3958,21
+59491,1582587.004,1215944.235,655260.8181,21
+59492,1578846.664,1214534.137,654276.3344,21
+59493,1578152.964,1216054.596,656513.0774,21
+59494,1577460.833,1214636.419,655369.9649,21
+59495,1576292.698,1212265.992,657265.5544,21
+59496,2008110.295,1214057.418,654891.2178,21
+59497,1573807.788,1212977.065,658723.3944,21
+59498,1571112.725,1210816.198,655627.3866,21
+59499,1569375.52,1212560.086,657549.5723,21
+59500,1569967.276,1210758.878,659166.3907,21
+59501,1567398.624,1210193.228,658991.8392,21
+59502,1565731.404,1209936.223,659376.0872,21
+59503,1564529.758,1209523.014,658750.2364,21
+59504,1564047.079,1208846.729,660851.8269,21
+59505,1560464.79,1208402.69,659538.4611,21
+59506,1561950.327,1207183.153,661044.6091,21
+59507,1559136.316,1207416.868,659667.6486,21
+59508,1556274.704,1206715.4,660106.047,21
+59509,1555821.008,1206132.161,661164.7253,21
+59510,1553536.298,1205810.934,661312.9299,21
+59511,1551144.429,1205360.587,661113.6762,21
+59512,1550933.232,1204458.9,661464.5928,21
+59513,1547312.994,1204455.574,661733.4474,21
+59514,1548539.252,1203171.163,661846.5968,21
+59515,1545632.305,1203465.28,662224.1212,21
+59516,1543587.047,1202595.48,661814.774,21
+59517,1545216.429,1202842.712,662477.6779,21
+59518,1540809.149,1201831.199,662756.1669,21
+59519,1541810.73,1199961.828,662397.1701,21
+59520,1538549.39,1202100.021,662112.4576,21
+59521,1481788.275,1138800.872,542631.2871,21
+59522,1472337.28,1135208.533,536169.5958,21
+59523,1473763.904,1132693.154,532434.2164,21
+59524,1467671.649,1130581.995,535210.122,21
+59525,1465384.008,1127665.567,534112.2941,21
+59526,1463925.197,1127850.93,533677.3918,21
+59527,1460739.376,1124038.86,535348.6486,21
+59528,1458395,1124866.251,534791.0308,21
+59529,1454790.89,1121117.138,534761.6546,21
+59530,1454365.167,1122421.546,536209.6781,21
+59531,1451264.411,1118486.744,536013.979,21
+59532,1448334.33,1118180.742,537153.5576,21
+59533,1445818.935,1117482.22,537639.8893,21
+59534,1445489.907,1115603.791,538294.8964,21
+59535,1440124.843,1114826.831,538891.5256,21
+59536,1440765.511,1112244.731,539645.3495,21
+59537,1436604.665,1112649.042,540438.8048,21
+59538,1434584.773,1110228.04,542115.5391,21
+59539,1433754.119,1110958.665,540847.3002,21
+59540,1429738.457,1107374.774,543405.084,21
+59541,1428096.215,1107820.141,544019.0998,21
+59542,1426600.483,1106423.924,541505.5301,21
+59543,1422692.862,1104058.037,544165.5464,21
+59544,1423036.557,1104212.887,546006.2904,21
+59545,1417862.271,1103069.533,545719.3453,21
+59546,1417421.777,1100451.215,546903.7429,21
+59547,1415014.174,1101763.145,547888.2816,21
+59548,1412665.67,1098165.723,548857.7398,21
+59549,1409891.03,1099406.356,550395.9177,21
+59550,1408680.258,1096716.846,550560.4481,21
+59551,1406447.604,1095911.77,552451.988,21
+59552,1402620.103,1094869.857,553569.9814,21
+59553,1402200.362,1095263.172,553804.3124,21
+59554,1398052.569,1092210.629,557148.9283,21
+59555,1397565.709,1092995.155,555865.7245,21
+59556,1393820.552,1091720.808,559272.9114,21
+59557,1390647.213,1090902.124,559548.8367,21
+59558,1390834.048,1089353.048,559277.5248,21
+59559,1387048.345,1088518.543,562970.8333,21
+59560,1384004.39,1088100.837,564193.5303,21
+59561,1383640.939,1085893.656,563376.8034,21
+59562,1378803.964,1086943.763,566683.1795,21
+59563,1379235.807,1082300.248,567894.3272,21
+59564,1375040.855,1084619.198,568204.9077,21
+59565,1373165.657,1080730.428,570200.7473,21
+59566,1370762.744,1081774.573,572405.6442,21
+59567,1368933.461,1080309.504,571403.9413,21
+59568,1366444.668,1079429.32,742320.5759,21
+59569,1363450.427,1077399.538,736110.3272,21
+59570,1362311.941,1078581.366,733348.8623,21
+59571,1358720.65,1075585.453,730770.4528,21
+59572,1356884.813,1075381.997,724726.6408,21
+59573,1355078.683,1074148.638,723025.9637,21
+59574,1353481.595,1073377.554,719811.0073,21
+59575,1348839.228,1072529.425,715619.5647,21
+59576,1348473.319,1071742.322,713429.1443,21
+59577,1345019.503,1071044.106,710472.3846,21
+59578,1344146.829,1069119.086,707356.8849,21
+59579,1340137.739,1069147.755,704823.1168,21
+59580,1341512.998,1067542.944,703097.224,21
+59581,1339798.416,1067451.886,699330.6053,21
+59582,1336607.489,1065605.931,695075.2143,21
+59583,1336564.409,1066702.041,692579.5906,21
+59584,1333471.454,1064688.036,689512.1443,21
+59585,1331615.77,1064562.269,686313.8253,21
+59586,1330417.076,1064297.738,683769.5783,21
+59587,1328315.388,1063606.042,683060.5288,21
+59588,1326956.386,1062580.644,677990.2546,21
+59589,1324088.355,1062885.843,678003.4695,21
+59590,1323884.032,1061349.481,674255.1767,21
+59591,1321290.45,1062264.164,672908.1799,21
+59592,1319434.9,1060524.241,670724.0907,21
+59593,1318635.653,1060864.766,668478.0278,21
+59594,1315733.844,1060683.431,666985.5189,21
+59595,1314636.167,1059038.688,665311.5381,21
+59596,1748327.261,1059050.085,663407.5414,21
+59597,1310214.312,1039365.58,662424.8811,21
+59598,1310204.008,1032912.932,660212.5174,21
+59599,1306644.739,1032636.531,658864.2267,21
+59600,1306527.113,1030176.623,657579.6088,21
+59601,1304360.583,1029177.586,656805.905,21
+59602,1302740.368,1026898.461,654305.6819,21
+59603,1300325.361,1026925.066,654132.8219,21
+59604,1299349.14,1023963.034,653409.2502,21
+59605,1297428.533,1022305.374,651695.6332,21
+59606,1296558.269,1022313.07,650223.2691,21
+59607,1292626.39,1019972.293,650040.9361,21
+59608,1293395.542,1018960.163,650091.7384,21
+59609,1291021.465,1018144.521,649434.3068,21
+59610,1288271.135,1016082.147,655813.3234,21
+59611,1286786.827,1016098.98,652905.0762,21
+59612,1284670.914,1013849.892,655008.2252,21
+59613,1280436.511,1013843.983,653407.3906,21
+59614,1278356.674,1012528.539,656024.1956,21
+59615,1276121.383,1012332.443,653653.8294,21
+59616,1273283.442,1010865.067,656829.5091,21
+59617,1270239.726,1010005.445,655556.4815,21
+59618,1267963.442,1008563.159,655977.7082,21
+59619,1264156.205,1008094.737,656618.1026,21
+59620,1262859.424,1006824.043,658438.3467,21
+59621,1259049.555,1006557.917,657383.7247,21
+59622,1254310.319,1004619.574,658163.403,21
+59623,1251025.429,1004789.603,660276.2543,21
+59624,1250047.214,1003713.135,659728.1346,21
+59625,1245572.998,1002896.397,660952.6931,21
+59626,1241906.081,1002402.134,662283.4736,21
+59627,1241280.879,1000634.911,663632.4456,21
+59628,1236497.139,1001141.032,663218.9896,21
+59629,1235593.993,1001436.367,665466.5551,21
+59630,1230765.229,998312.5471,665524.9011,21
+59631,1230252.271,999714.4203,668789.8729,21
+59632,1225485.462,997669.1166,668739.7167,21
+59633,1223024.038,996354.0801,669240.2045,21
+59634,1220276.525,997128.269,671628.4092,21
+59635,1217824.838,995157.2828,673129.4455,21
+59636,1214501.056,993619.6069,674532.6717,21
+59637,1211033.526,995568.4772,674265.8483,21
+59638,1208761.727,992485.4706,678120.8721,21
+59639,1204984.487,991939.5116,677618.0808,21
+59640,1202884.977,992088.7977,679601.6229,21
+59641,1197158.138,988948.6352,684991.26,21
+59642,1193821.435,987534.712,688531.2595,21
+59643,1189133.763,984814.4796,692813.5453,21
+59644,1182911.098,981060.9569,695146.5295,21
+59645,1179702.698,979031.7649,699763.727,21
+59646,1174488.374,976994.818,704179.472,21
+59647,1167061.344,971949.91,708311.4122,21
+59648,1162417.424,971459.4376,711612.8876,21
+59649,1157460.93,967488.0595,717332.2358,21
+59650,1152419.707,963939.5581,720281.2053,21
+59651,1148484.027,963797.1806,725150.0651,21
+59652,1141912.933,958463.659,729243.4515,21
+59653,1137806.199,957851.3764,734770.267,21
+59654,1133796.167,954904.6381,738138.9436,21
+59655,1128172.868,952617.0143,742120.8124,21
+59656,1122407.408,949067.2989,748149.6122,21
+59657,1118896.561,946653.5238,750753.7446,21
+59658,1113976.762,943685.2218,758375.2098,21
+59659,1108529.789,941947.4412,761686.359,21
+59660,1102712.755,938187.5698,764802.9748,21
+59661,1101129.92,936810.6373,771706.1789,21
+59662,1093920.132,932923.1065,777187.7023,21
+59663,1090392.575,931519.9461,779362.658,21
+59664,1085539.322,928498.1454,785094.7377,21
+59665,1080925.119,926297.3325,791065.5845,21
+59666,1075523.253,923925.5284,794271.8815,21
+59667,1071623.512,922540.4954,802742.6295,21
+59668,1066313.296,917794.7832,808932.0674,21
+59669,1061193.655,918567.8154,819016.5029,21
+59670,1057734.103,912729.0866,826007.0932,21
+59671,1052587.224,912188.3886,832479.4601,21
+59672,1050584.444,908847.7595,839778.5876,21
+59673,1046850.754,906573.0667,851495.8412,21
+59674,1045234.91,904147.9521,859078.7161,21
+59675,1040946.992,901418.535,870336.9492,21
+59676,1038883.08,898129.154,877128.1672,21
+59677,1035989.154,897844.484,889729.5803,21
+59678,1031688.555,893270.4298,897829.3042,21
+59679,1031031.869,891272.1522,906743.0056,21
+59680,1026410.578,890176.0851,916833.7102,21
+59681,1023802.329,886411.2434,925214.3451,21
+59682,1022522.662,884433.9253,935992.5032,21
+59683,1018781.453,880865.169,945710.348,21
+59684,1015169.707,879617.157,952497.0684,21
+59685,1014412.156,875518.7353,964969.9647,21
+59686,1010181.984,873916.7253,972689.2991,21
+59687,1007973.591,872069.1188,981636.9447,21
+59688,1005323.85,869090.6751,992468.411,21
+59689,1002110.649,865694.85,1001282.275,21
+59690,999571.4546,863820.141,1009147.804,21
+59691,997984.0227,861822.8984,1019855.907,21
+59692,994076.5615,858414.5445,1029268.683,21
+59693,992324.0635,857319.1097,1038082.804,21
+59694,989329.1606,854617.5753,1046603.192,21
+59695,987647.2293,852803.6396,1057278.591,21
+59696,985525.5361,849817.4078,1064667.489,21
+59697,984670.1758,846685.0208,1075104.634,21
+59698,980876.7133,845361.0912,1082630.256,21
+59699,980028.9362,842237.6268,1093851.744,21
+59700,976283.6368,839532.629,1101649.849,21
+59701,975193.5029,838603.7039,1107631.798,21
+59702,973483.1832,837716.5005,1115894.401,21
+59703,973991.3075,836021.6251,1124155.904,21
+59704,969566.877,836882.6501,1128976.353,21
+59705,971585.1642,834963.019,1139419.775,21
+59706,969349.4779,833466.0424,1147950.151,21
+59707,967416.2253,832726.5822,1155494.613,21
+59708,967141.3789,831686.4659,1164537.225,21
+59709,966869.9966,831111.5222,1168969.502,21
+59710,964373.1634,829638.5333,1177382.767,21
+59711,963989.2116,830178.5609,2170417.675,21
+59712,962400.6366,827640.1318,1227704.291,21
+59713,962525.6522,827782.4991,1723632.831,21
+59714,960566.4435,827135.8382,1176294.68,21
+59715,960250.9407,827069.8168,1214241.375,21
+59716,959315.6159,824335.8181,1192005.761,21
+59717,958101.4292,825263.758,1466061.05,21
+59718,956508.8811,824231.4441,1197251.098,21
+59719,956609.474,823148.4555,1235302.166,21
+59720,954063.9138,823038.3136,1214651.187,21
+59721,954943.7468,820815.4171,1222131.954,21
+59722,952821.1643,821889.5791,1231540.408,21
+59723,953192.944,819493.2277,1240664.391,21
+59724,951108.6274,818710.4049,1250538.536,21
+59725,950997.0892,819809.4651,1257875.986,21
+59726,950300.2315,816942.9789,1267683.764,21
+59727,950169.0345,816958.214,1276039.892,21
+59728,949646.5991,817348.621,1285028.881,21
+59729,949346.4538,814332.309,1294232.282,21
+59730,947396.9993,815264.5418,1301520.505,21
+59731,947933.8825,814362.2476,1311247.224,21
+59732,946028.2721,813106.119,1319127.671,21
+59733,945476.2713,812389.9611,1328530.39,21
+59734,945562.1753,811943.3858,1335360.828,21
+59735,943849.9213,811484.4309,1349334.113,21
+59736,943475.8342,809800.4759,1353892.953,21
+59737,942790.2002,809428.8561,1360220.493,21
+59738,941262.0943,809522.0468,1370798.431,21
+59739,941357.4618,807872.6747,2313657.73,21
+59740,940139.9106,809060.8421,1418895.224,21
+59741,939016.1062,809335.9741,1858582.524,21
+59742,938985.0164,810210.7084,1370402.734,21
+59743,937954.8961,808307.4289,1376297.917,21
+59744,937613.7475,809924.085,1390747.093,21
+59745,936931.9621,806929.2334,1637655.595,21
+59746,935042.5995,808442.1196,1393848.755,21
+59747,936329.4714,806693.4209,1402179.915,21
+59748,933401.703,805500.9438,1412743.757,21
+59749,934724.9292,806178.4528,1422666.277,21
+59750,933149.8658,805345.7005,1432538.672,21
+59751,932803.9222,803650.5612,1442154.279,21
+59752,931804.4106,803605.4212,1453816.804,21
+59753,931044.1257,802280.4576,1461472.205,21
+59754,932065.0689,801558.6545,1471281.125,21
+59755,929756.6551,801931.6675,1481457.695,21
+59756,929852.5822,800350.4643,1489414.463,21
+59757,929523.5762,800679.2591,1500901.206,21
+59758,928368.3779,799437.7542,1507098.57,21
+59759,928092.4219,798359.216,1515788.613,21
+59760,927932.6886,799044.1595,1523241.026,21
+59761,990886.2421,860836.9508,1637138.047,21
+59762,994562.9814,863600.638,1646963.479,21
+59763,995737.1642,862490.4483,1635361.23,21
+59764,994327.453,864149.8361,1633833.315,21
+59765,997935.685,860635.8249,1630202.043,21
+59766,994587.357,862114.7409,2520341.638,21
+59767,998205.7801,860394.6415,1654765.095,21
+59768,996396.9706,858941.9854,2039043.826,21
+59769,998959.9694,859580.3752,1580963.087,21
+59770,996883.6453,858363.5901,1581526.182,21
+59771,998878.7238,855445.5187,1580384.109,21
+59772,998755.9799,857855.0066,1580400.509,21
+59773,999361.56,854665.5813,1578526.385,21
+59774,1000433.353,854028.6098,1577423.345,21
+59775,1002582.195,854549.2274,1578072.704,21
+59776,1002543.808,853011.4896,1576006.52,21
+59777,1001929.194,852266.0247,1573266.596,21
+59778,1004440.864,850723.1141,1573775.804,21
+59779,1002154.186,849692.3654,1571867.791,21
+59780,1004807.957,849469.5057,1569291.812,21
+59781,1002657.947,847549.8632,1567349.412,21
+59782,1005030.493,847635.6533,1566576.152,21
+59783,1003717.067,845284.2516,1563767.573,21
+59784,1005868.737,846069.7972,1562581.75,21
+59785,1003668.265,842513.8798,1561285.444,21
+59786,1007161.513,843879.1996,1559284.817,21
+59787,1004222.515,841459.9625,1557442.225,21
+59788,1005741.219,840131.9981,1552835.028,21
+59789,1007839.356,839613.1937,1561670.822,21
+59790,1004560.935,838708.5447,1549358.329,21
+59791,1007652.214,837332.7511,1545788.758,21
+59792,1004406.951,834839.8527,1706732.847,21
+59793,1005045.388,836500.0824,1526464.227,21
+59794,1004678.961,833926.1494,1524984.799,21
+59795,1002037.859,834004.9005,1518907.833,21
+59796,1002203.802,832840.77,1515697.765,21
+59797,1002092.112,832400.8044,1509987.168,21
+59798,1000092.424,831690.1244,1511325.066,21
+59799,1000419.419,830877.2415,1504614.315,21
+59800,999057.2372,830149.723,1502207.298,21
+59801,998318.4454,828844.8881,2402623.104,21
+59802,995114.9621,828141.3499,1528785.707,21
+59803,994148.5761,829142.0657,1928744.531,21
+59804,993730.0854,826188.5164,1454688.503,21
+59805,992485.1667,825929.5464,1453374.303,21
+59806,989044.2195,826020.7011,1451837.542,21
+59807,992367.036,824266.0832,1452752.323,21
+59808,986736.5898,824051.169,1447775.916,21
+59809,989219.2286,823673.3333,1446691.434,21
+59810,986528.9126,822295.6174,1445347.828,21
+59811,985173.3665,822457.848,1441865.105,21
+59812,984598.7525,820580.2349,1439921.977,21
+59813,982996.2971,820327.711,1432920.868,21
+59814,982437.243,820377.0188,1431860.084,21
+59815,981124.6759,818761.7741,1428235.077,21
+59816,979779.0914,818037.1497,1426037.429,21
+59817,978474.0356,817121.4967,1421489.058,21
+59818,977097.2489,817693.2545,1416896.289,21
+59819,977055.0683,815988.8447,1415050.512,21
+59820,974233.6304,814337.2463,1412672.974,21
+59821,974618.3728,814988.0368,1414434.195,21
+59822,973461.9332,815687.9243,1410362.247,21
+59823,971652.9022,813778.5766,1410965.988,21
+59824,971624.3875,814044.9314,1411818.737,21
+59825,969668.0927,813131.0758,2332086.826,21
+59826,969525.9269,813223.4562,1444403.555,21
+59827,967313.5664,812832.4959,1865112.496,21
+59828,968115.9411,812150.9954,1378537.098,21
+59829,964916.5407,812001.6635,1377555.328,21
+59830,966363.1418,810706.655,1382238.238,21
+59831,964180.7364,812203.0936,1380758.468,21
+59832,962457.9865,809930.8401,1384017.484,21
+59833,962700.8623,810759.1057,1381757.708,21
+59834,959980.4274,809780.1564,1385772.88,21
+59835,960769.2331,809887.5681,1385773.957,21
+59836,959243.5849,808160.2665,1382339.521,21
+59837,955417.9825,809456.1233,1389306.436,21
+59838,955202.5288,808916.877,1385576.691,21
+59839,954071.9237,807146.2978,1384447.756,21
+59840,951574.0116,807700.6064,1386523.499,21
+59841,951571.9248,807931.3148,1387137.007,21
+59842,949603.143,806483.8019,1385232.704,21
+59843,949045.7257,806133.507,1387059.051,21
+59844,947807.4937,805598.2017,1472078.468,21
+59845,945866.8459,807095.8053,1559720.831,21
+59846,946256.8258,804433.7902,1365528.489,21
+59847,943726.0927,804294.2471,1362841.067,21
+59848,942927.49,805446.0033,1366931.938,21
+59849,941484.6725,804013.3765,1555555.283,21
+59850,941504.7116,804013.9192,1354239.877,21
+59851,940434.8614,803517.6978,1353577.572,21
+59852,940216.8359,801721.5334,1356429.06,21
+59853,941312.2703,803628.7955,1356540.932,21
+59854,941234.0504,801434.5735,1358953.749,21
+59855,940303.8691,801260.4144,1356137.685,21
+59856,940889.4437,801263.8765,1361897.105,21
+59857,941701.0863,800214.4115,1358204.213,21
+59858,940733.5602,799831.1376,1361091.953,21
+59859,942839.651,798207.9289,2285509.773,21
+59860,941449.7675,797012.457,1393043.859,21
+59861,943222.2798,797317.3811,1820654.232,21
+59862,942520.292,795912.8615,1329852.03,21
+59863,942836.4999,796933.2442,1332143.865,21
+59864,944808.4784,794432.1545,1333208.589,21
+59865,943566.9444,794518.536,1335253.606,21
+59866,945897.1169,794750.8793,1338011.632,21
+59867,944790.7375,793362.8573,1338608.736,21
+59868,944916.1036,793482.9684,1339950.387,21
+59869,947628.9625,792332.0872,1340800.019,21
+59870,946253.4469,791601.3329,1343219.277,21
+59871,948733.2552,791307.9136,1341573.444,21
+59872,951640.7732,791483.0915,1346775.38,21
+59873,950381.2018,789425.7129,1343427.867,21
+59874,951606.6637,790164.5251,1345441.764,21
+59875,953345.0324,789231.3656,1346627.27,21
+59876,951944.5195,788966.0011,1348053.536,21
+59877,955285.411,787780.9312,1344697.396,21
+59878,954132.1534,787496.5532,1349509.536,21
+59879,955074.6932,787022.8816,1347272.475,21
+59880,957540.516,787073.2889,1350966.073,21
+59881,955282.5017,786990.7732,1438334.286,21
+59882,956849.4812,785691.0206,1793667.906,21
+59883,956592.2961,785299.6701,1332559.911,21
+59884,955672.7833,786024.3091,1339777.702,21
+59885,956981.3917,782946.7664,1346295.333,21
+59886,955698.6408,784248.8466,1610266.649,21
+59887,955679.5791,783123.338,1342550.555,21
+59888,955423.3784,782515.7828,1347491.186,21
+59889,956256.0258,781291.9044,1354559.835,21
+59890,955075.8005,781668.0707,1361879.384,21
+59891,956142.5979,779610.3414,1366877.043,21
+59892,955049.0633,780094.5777,1372303.008,21
+59893,954376.8916,779211.93,1379370.897,21
+59894,956163.07,777431.4204,1383666.59,21
+59895,954634.0441,778399.5936,1391448.735,21
+59896,955537.1985,777366.2109,2309310.394,21
+59897,954772.4951,774873.8713,1430463.136,21
+59898,955818.2556,776101.4155,1851936.255,21
+59899,954104.4809,771218.2325,1376017.042,21
+59900,956186.3818,773256.6475,1386881.794,21
+59901,953917.4453,771771.2195,1388442.55,21
+59902,956006.1766,769812.6542,1638027.086,21
+59903,954760.1379,770417.7777,1389661.152,21
+59904,955983.4899,769059.3237,1393228.234,21
+59905,955849.8075,767924.476,1403054.638,21
+59906,957043.7052,767762.7835,1409537.447,21
+59907,957310.8682,767235.2609,1414282.581,21
+59908,957131.3574,765739.2375,1421425.109,21
+59909,956434.6983,764950.9566,1427746.172,21
+59910,957996.8356,766232.1111,1433331.493,21
+59911,954829.694,762912.1867,1439225.311,21
+59912,952828.2186,763242.0117,1445120.801,21
+59913,953423.3856,762883.58,1452956.264,21
+59914,952163.8963,762087.9612,1463340.2,21
+59915,950269.1765,760909.2244,1542259.647,21
+59916,951130.5999,760236.4808,1880625.594,21
+59917,948330.0047,760626.5104,1442815.286,21
+59918,947616.627,758583.6815,1452830.19,21
+59919,947045.4164,759069.7384,1456837.696,21
+59920,946043.5275,757406.8362,1710194.92,21
+59921,942946.3346,758322.5644,1455524.999,21
+59922,945086.0213,755688.0937,1462453.658,21
+59923,941336.4636,756507.1555,1472897.014,21
+59924,941920.1083,755942.9175,1476572.358,21
+59925,939984.0782,753807.8743,1487566.307,21
+59926,938833.5642,754969.2616,1490817.317,21
+59927,937106.1427,753532.4396,1499969.616,21
+59928,936979.8439,751584.5604,1507719.883,21
+59929,934325.4415,753629.4436,1509822.827,21
+59930,934248.2904,751378.6054,2409023.019,21
+59931,932578.5362,750380.4566,1557199.567,21
+59932,930971.2923,751002.1483,1943676.243,21
+59933,929753.7219,749570.1355,1502839.24,21
+59934,928623.6081,749108.2862,1511762.448,21
+59935,927272.4456,747911.8252,1519066.968,21
+59936,925857.8604,748330.3111,1754222.763,21
+59937,925041.8235,746904.766,1517318.354,21
+59938,923423.5117,745685.9402,1525356.127,21
+59939,921719.7074,745445.9674,1533690.847,21
+59940,920087.7221,743698.5659,1740818.992,21
+59941,921465.4437,745787.4544,1532284.454,21
+59942,919134.9193,744333.3864,1539967.399,21
+59943,921203.9524,747083.1326,1544768.265,21
+59944,918894.3596,746933.9821,1748160.174,21
+59945,920230.8565,748263.6453,1544342.209,21
+59946,919705.0608,747598.5416,1551692.728,21
+59947,919555.613,751641.1504,1558950.557,21
+59948,918289.6845,751934.919,1566310.68,21
+59949,919622.9356,750864.6989,1571864.422,21
+59950,918124.8697,755251.0683,1578534.785,21
+59951,918701.8996,752150.0319,1584526.615,21
+59952,917603.4835,756178.0413,1594045.989,21
+59953,918047.1818,754954.8429,2474624.174,21
+59954,917418.0864,756617.251,1639178.58,21
+59955,917497.8726,757199.8021,2006143.329,21
+59956,915898.5819,757665.9427,1585600.659,21
+59957,917053.409,759691.4085,1591344.007,21
+59958,914708.2556,759124.2588,1601710.855,21
+59959,916484.1138,760210.7519,1825431.727,21
+59960,915848.4666,762388.5823,1598015.825,21
+59961,914106.2007,761803.4762,1604089.247,21
+59962,915269.8006,762197.2531,1613979.329,21
+59963,913918.2533,764752.066,1813706.146,21
+59964,914286.6347,763908.8593,1611648.858,21
+59965,912534.66,766074.8191,1622100.64,21
+59966,913331.4204,765825.1362,1628192.023,21
+59967,912415.7936,767219.1058,1825527.252,21
+59968,912402.426,769162.0606,1628314.404,21
+59969,1346052.209,767135.1482,1637093.861,21
+59970,911657.5552,770377.1127,1644076.53,21
+59971,910860.2707,770441.9606,1653045.435,21
+59972,911545.9683,771639.7612,1660347.86,21
+59973,910224.5663,771455.794,1666138.867,21
+59974,911697.2429,772651.6075,1674818.684,21
+59975,910854.9346,773387.5475,1679037.072,21
+59976,912042.942,774033.7291,1687843.849,21
+59977,910436.7462,775094.3827,2555067.884,21
+59978,911964.5724,774687.8588,1732212.858,21
+59979,911000.5471,777449.8209,2084333.468,21
+59980,912431.4492,776103.5945,1677271.656,21
+59981,911826.927,778123.9586,1683953.069,21
+59982,911763.7422,779075.5633,1692946.958,21
+59983,912116.631,777692.1733,1913051.418,21
+59984,912223.9832,781435.3484,1688036.728,21
+59985,913227.3002,779079.253,1697561.891,21
+59986,912061.9162,781509.1396,1704914.912,21
+59987,913328.9475,783149.3542,1902001.42,21
+59988,912094.6119,781566.4226,1704251.726,21
+59989,913936.4332,783720.4645,1713515.155,21
+59990,912873.2808,783603.1921,1721670.611,21
+59991,914295.324,784694.1191,1912932.165,21
+59992,912767.111,786354.3696,1719934.55,21
+59993,915059.9113,785664.2738,1731619.527,21
+59994,913072.6483,786723.0655,1736744.733,21
+59995,915611.9406,787900.2856,1745213.751,21
+59996,913245.2211,787817.3752,1754935.065,21
+59997,916309.1436,788510.1522,1758912.475,21
+59998,913636.1675,789772.5605,1770106.083,21
+59999,916458.0846,790462.9961,1774323.924,21
+60000,914955.2523,790595.7807,1782446.729,21
+60001,915785.8493,793032.2449,2634351.712,21
+60002,913637.8909,793668.1449,1821110.159,21
+60003,913177.6429,796877.6412,2157096.77,21
+60004,914287.6865,796393.6264,1758342.843,21
+60005,911770.867,798633.6827,1763133.099,21
+60006,913483.7359,799052.0765,1769032.31,21
+60007,910801.8788,802470.0751,1773190.733,21
+60008,910502.9161,801566.2802,1778960.755,21
+60009,911429.0916,804955.9668,1781526.213,21
+60010,909362.1701,804944.8741,1784001.262,21
+60011,908604.7241,806405.8498,1785881.858,21
+60012,910016.9163,808493.9499,1789970.847,21
+60013,907996.3046,808457.6144,1792234.002,21
+60014,907063.0698,811593.6938,1798159.353,21
+60015,908292.8943,811790.7295,1798955.584,21
+60016,905944.6536,814421.3771,1803790.643,21
+60017,905855.3395,813525.296,1804927.261,21
+60018,906348.9774,816966.1178,1809744.383,21
+60019,905024.9485,817409.7811,1809603.948,21
+60020,903953.1205,818952.0847,1817981.711,21
+60021,905195.489,820073.9593,1900395.856,21
+60022,903252.3389,821529.1815,2165442.678,21
+60023,902794.5195,822545.7604,1781240.708,21
+60024,903628.9371,824478.0502,1785562.774,21
+60025,901504.4933,825774.4199,1793125.396,21
+60026,902443.0539,826288.4521,1797386.442,21
+60027,900511.8502,828329.5134,1802009.1,21
+60028,901384.961,829671.0305,1808136.457,21
+60029,900398.3601,830371.4345,1812090.631,21
+60030,898812.8696,832090.4555,1815128.039,21
+60031,900493.3257,833393.3189,1822300.541,21
+60032,898473.1936,834136.2355,2665441.833,21
+60033,897814.1776,836343.7763,1856514.048,21
+60034,898715.2573,836238.366,2190658.336,21
+60035,896737.0328,839014.0514,1793552.923,21
+60036,896400.9566,838853.6034,1800279.35,21
+60037,897488.6259,840348.2422,1804191.941,21
+60038,894610.9744,842659.7828,1810006.566,21
+60039,895374.2608,842508.9061,1812373.194,21
+60040,895544.2013,845071.1575,1817825.129,21
+60041,893798.2967,844556.0219,1818702.51,21
+60042,893860.652,848225.5059,1824410.155,21
+60043,892830.6168,847096.1859,1826031.766,21
+60044,893832.7015,850520.4902,1824653.856,21
+60045,891464.818,850105.8736,1825685.156,21
+60046,891600.054,852033.2223,1828376.115,21
+60047,891733.1655,853842.109,1830026.98,21
+60048,890734.0633,853399.7474,1833938.063,21
+60049,891200.5863,856122.762,1833235.752,21
+60050,889325.4242,857064.7351,1837868.279,21
+60051,888577.4507,858270.2972,1837738.242,21
+60052,889950.898,859009.864,1923259.189,21
+60053,887299.5112,860080.8983,1901367.199,21
+60054,888831.7931,862059.2418,1827235.69,21
+60055,886435.5755,863162.5356,1828820.122,21
+60056,886220.0539,864863.8039,2026349.099,21
+60057,887057.6506,865609.0143,1813667.38,21
+60058,885199.906,866381.1929,1821881.374,21
+60059,885768.9565,868291.8766,1821905.909,21
+60060,884402.4641,869968.3226,2001174.046,21
+60061,337988.2642,314701.1339,1038610.952,21
+60062,337572.2409,315155.0287,1037953.545,21
+60063,337251.3698,315768.2893,1037637.196,21
+60064,337126.5699,316818.7993,1207405.838,21
+60065,337229.198,318021.0732,1027875.69,21
+60066,337528.026,319655.4285,1029721.558,21
+60067,337965.4966,321506.6657,1031872.665,21
+60068,338492.7558,323559.969,1196577.129,21
+60069,339063.0739,325483.3775,1026110.881,21
+60070,339642.4871,327480.5686,1029198.299,21
+60071,340207.1826,329432.3741,1032258.986,21
+60072,340740.5192,331418.3741,1191655.395,21
+60073,341233.8596,333120.6695,1027826.228,21
+60074,341680.8649,334838.1499,1031347.067,21
+60075,342078.215,336467.3643,1034768.578,21
+60076,342424.4091,338090.6986,1189531.227,21
+60077,342719.6467,339468.3964,1031011.024,21
+60078,342965.4847,340848.4021,1034803.241,21
+60079,343447.5463,342155.1593,1038480.512,21
+60080,343319.1092,343494.1454,1189399.414,21
+60081,343432.8999,344572.0302,1035262.832,21
+60082,343508.8974,345693.573,1039305.655,21
+60083,343550.2292,346764.3812,1043227.7,21
+60084,343557.2205,347871.1954,1190983.24,21
+60085,343544.5618,348773.3219,1040510.536,21
+60086,343495.6831,349720.2498,1044798.65,21
+60087,343426.9369,350634.0335,1048958.328,21
+60088,343336.8942,351618.7513,1194085.992,21
+60089,343227.6368,352375.514,1046694.177,21
+60090,343381.9935,353209.0052,1051212.119,21
+60091,342958.8647,354021.0255,1055590.993,21
+60092,342802.6118,354896.5131,1198494.865,21
+60093,342633.5784,355589.2135,1053717.248,21
+60094,342452.7481,356349.0911,1058441.208,21
+60095,342260.8987,357094.9233,1063015.798,21
+60096,342058.7376,357930.0535,1203997.229,21
+60097,341848.4021,358549.6542,1061475.599,21
+60098,341632.4312,359260.8111,1066386.706,21
+60099,341412.3515,359962.4776,1071137.429,21
+60100,341188.4656,360739.4162,1210415.718,21
+60101,341239.522,361340.6261,1069866.432,21
+60102,340727.7406,362018.4976,1074940.3,21
+60103,340490.1462,362689.6977,1079841.418,21
+60104,340247.5552,363458.1661,1217578.422,21
+60105,340000.0366,364014.167,1078774.897,21
+60106,339747.7328,364668.3512,1083985.76,21
+60107,339490.8142,365317.6895,1089011.769,21
+60108,339229.4564,366047.7499,1225324.956,21
+60109,338963.849,366603.1085,1088091.314,21
+60110,338694.1985,367239.7699,1093416.436,21
+60111,338420.7163,367872.7537,1098545.449,21
+60112,338146.4823,368606.716,1233518.578,21
+60113,337862.6323,369128.601,1097724.461,21
+60114,337578.7796,369751.8483,1103147.286,21
+60115,337291.9483,370372.2019,1108364.231,21
+60116,337002.2212,371075.8571,1242060.479,21
+60117,336769.8152,371604.8694,1107610.022,21
+60118,336414.4016,372217.4754,1113118.027,21
+60119,336117.1392,372827.7651,1118410.185,21
+60120,335817.0729,373541.2739,1250870.921,21
+60121,0,0,0,21
+60122,0,0,0,21
+60123,0,0,0,21
+60124,0,0,0,21
+60125,0,0,184965.7552,21
+60126,0,0,302673.4693,21
+60127,0,0,187992.6075,21
+60128,0,0,173352.3216,21
+60129,0,0,183117.3565,21
+60130,0,0,180399.5624,21
+60131,0,0,179153.0728,21
+60132,0,2.936227911,179298.3794,21
+60133,0,0,179206.2093,21
+60134,0,84.66280114,179450.9532,21
+60135,0,0,826743.6653,21
+60136,0,0,131669.9066,21
+60137,0,0,394981.9462,21
+60138,0,0,131748.0207,21
+60139,0,244.3416944,290223.7156,21
+60140,0,0,206802.3173,21
+60141,0,0,1076391.685,21
+60142,438833.6931,0,130354.2376,21
+60143,0,0,282434.0165,21
+60144,0,0,191663.1306,21
+60145,0,0,168239.293,21
+60146,0,0,180377.2423,21
+60147,0,0,1640972.241,21
+60148,0,0,1045541.897,21
+60149,0,0,1061328.501,21
+60150,0,0,1187183.656,21
+60151,0,0,1179661,21
+60152,0,0,1176871.554,21
+60153,0,0,1899631.709,21
+60154,0,0,1227061.902,21
+60155,0,0,1341975.353,21
+60156,0,0,1074320.913,21
+60157,0,0,1084327.245,21
+60158,0,0,1341042.999,21
+60159,0,0,1391772.286,21
+60160,0,0,1247627.339,21
+60161,0,0,1282966.507,21
+60162,0,0,1284580.129,21
+60163,0,0,1295848.179,21
+60164,0,0,1306865.692,21
+60165,0,0,1316630.353,21
+60166,0,0,1326341.073,21
+60167,0,0,1337123.482,21
+60168,0,0,1398872.375,21
+60169,0,0,1405346.876,21
+60170,0,0,1354670.082,21
+60171,0,0,1364591.004,21
+60172,0,0,1373320.164,21
+60173,0,0,1383023.614,21
+60174,0,0,1392139.362,21
+60175,0,0,1400740.149,21
+60176,0,0,1408994.18,21
+60177,0,0,223752.3316,21
+60178,0,0,891166.5396,21
+60179,0,71.05826437,174603.3004,21
+60180,0,0,457698.708,21
+60181,0,0,2069273.09,21
+60182,0,0,1270891.177,21
+60183,0,0,1359676.591,21
+60184,0,0,1617519.439,21
+60185,0,0,1403320.874,21
+60186,0,0,1419019.207,21
+60187,0,0,1425332.313,21
+60188,0,0,1257881.967,21
+60189,0,0,1262370.073,21
+60190,0,0,1543058.283,21
+60191,0,0,1439139.022,21
+60192,0,0,2314514.595,21
+60193,0,0,1499266.229,21
+60194,0,0,1428419.482,21
+60195,0,0,1434457.988,21
+60196,0,0,1439057.961,21
+60197,0,0,1444287.321,21
+60198,0,0,1447782.681,21
+60199,0,0,1452247.206,21
+60200,0,0,1454991.091,21
+60201,29753.74212,0,1458662.204,21
+60202,0,0,2186370.665,21
+60203,30.23679104,0,1480716.308,21
+60204,9720.528128,0,1746703.381,21
+60205,9085.657002,0,1451290.292,21
+60206,7098.527251,0,1454207.016,21
+60207,7978.298727,0,1457695.596,21
+60208,8103.592463,0,1596504.065,21
+60209,8135.313849,0,1447688.843,21
+60210,8235.437328,0,1451148.768,21
+60211,8278.168387,0,245356.9506,21
+60212,8401.043556,0,215286.6618,21
+60213,8446.269774,0,228390.2136,21
+60214,8529.34615,0,223207.0933,21
+60215,8565.460329,0,2113448.802,21
+60216,8691.212302,0,1274023.781,21
+60217,8695.663046,0,1419026.718,21
+60218,8835.214221,0,1494676.12,21
+60219,8819.191537,0,1417851.497,21
+60220,8954.06334,0,1260901.297,21
+60221,8994.511473,0,1265897.669,21
+60222,9079.14721,0,1547706.127,21
+60223,9096.010416,0,1435797.63,21
+60224,9208.836051,0,1442755,21
+60225,9249.038013,0,1459061.91,21
+60226,9330.583383,0,2174610.361,21
+60227,9378.662636,0,1475647.692,21
+60228,9442.657866,0,1735082.838,21
+60229,9502.52204,0,1446075.389,21
+60230,9580.938093,0,1448766.376,21
+60231,0,0,1452609.984,21
+60232,0,0,1586983.171,21
+60233,0,0,1441159.347,21
+60234,0,0,1444888.625,21
+60235,0,0,1447695.582,21
+60236,0,0,1450411.87,21
+60237,0,0,1452660.482,21
+60238,40801.58389,0,1454500.539,21
+60239,1488.646284,0,1456125.63,21
+60240,3705.681018,0,1459064.032,21
+60241,12706.70705,0,1527160.356,21
+60242,11518.79406,0,1455521.357,21
+60243,10100.6593,0,1459290.259,21
+60244,10814.05987,0,1462589.594,21
+60245,10959.66424,0,1089920.565,21
+60246,11126.27335,0,219154.981,21
+60247,11253.29761,0,217434.4546,21
+60248,11408.85871,0,216479.083,21
+60249,11524.83547,0,215685.8989,21
+60250,11697.59822,0,2811740.948,21
+60251,11826.98681,0,1298321.794,21
+60252,11982.25884,0,1429557.741,21
+60253,12085.2227,0,1323946.947,21
+60254,12279.21508,0,1525846.66,21
+60255,12406.17777,0,1424264.514,21
+60256,12502.35137,0,1570763.134,21
+60257,12675.73962,0,1448068.846,21
+60258,12818.64195,0,1451223.385,21
+60259,12948.85747,0,1459435.186,21
+60260,13084.00651,0,1466597.566,21
+60261,13202.18513,0,1473732.173,21
+60262,13388.34031,0,1479057.378,21
+60263,13453.21712,0,1485872.413,21
+60264,13670.46816,0,1493039.885,21
+60265,13753.65543,0,1495096.454,21
+60266,13879.19986,0,1499426.247,21
+60267,14047.96266,0,1548622.403,21
+60268,0,0,1584734.133,21
+60269,0,0,1496195.93,21
+60270,0,0,1501592.849,21
+60271,0,0,1636706.465,21
+60272,58108.78159,0,1495480.158,21
+60273,0,0,1500504.799,21
+60274,7167.836397,0,1506938.184,21
+60275,22124.08029,0,1511537.689,21
+60276,13906.02071,0,1516234.287,21
+60277,15430.73762,0,1520727.264,21
+60278,15538.9895,0,1524442.049,21
+60279,15702.39399,0,1528325.172,21
+60280,15772.04749,0,229116.2393,21
+60281,15943.84438,0,884323.5452,21
+60282,16069.43174,0,186459.061,21
+60283,16141.11762,0,449852.6074,21
+60284,16339.42276,0,2113550.269,21
+60285,16411.04239,0,1148590.888,21
+60286,16549.72152,0,1535995.948,21
+60287,16656.96849,0,1718122.298,21
+60288,16798.39379,0,1483205.63,21
+60289,16917.74225,0,1523453.05,21
+60290,17053.23059,0,1522219.844,21
+60291,17129.00168,0,1529630.852,21
+60292,17310.17051,0,1534402.507,21
+60293,17363.51614,0,1540737.186,21
+60294,17548.92964,0,1545409.191,21
+60295,17603.88741,0,1552631.241,21
+60296,17774.40858,0,1553754.815,21
+60297,17900.85842,0,1557768.809,21
+60298,17955.83041,0,1609789.664,21
+60299,18156.38901,0,2605333.066,21
+60300,18196.06942,0,1516012.173,21
+60301,18283.86629,0,1526247.267,21
+60302,0,0,1536486.178,21
+60303,0,251.5274072,1545573.704,21
+60304,0,0,1553639.918,21
+60305,67249.83467,0,1561739.574,21
+60306,1609.389769,0,1569136.137,21
+60307,11726.26843,0,1575568.118,21
+60308,24585.35707,0,1581774.879,21
+60309,17209.6194,0,2296168.414,21
+60310,18309.87253,17.73634623,1615334.149,21
+60311,18377.35217,0,1862537.208,21
+60312,18309.86735,0,1588553.348,21
+60313,18377.34698,434426.6644,1595101.742,21
+60314,18348.72623,0,262726.4262,21
+60315,18394.01376,0,322520.3355,21
+60316,18355.69088,0,0,21
+60317,18403.17571,0,0,21
+60318,18348.71572,0,2588973.015,21
+60319,18423.02195,0,1430341.127,21
+60320,18378.2902,0,1408340.192,21
+60321,18423.01645,0,1737726.569,21
+60322,18394.39849,0,1585766.612,21
+60323,18403.15921,0,1613925.318,21
+60324,18407.2543,0,1620314.607,21
+60325,18445.57152,0,1627691.138,21
+60326,18401.35397,0,1681847.527,21
+60327,18454.54736,0,1691627.918,21
+60328,18394.3811,0,1634185.186,21
+60329,18448.73927,0,1641809.32,21
+60330,18449.56202,0,1648774.647,21
+60331,18428.88154,0,1655157.177,21
+60332,18452.73549,0,1661184.179,21
+60333,18420.0655,0,1666570.13,21
+60334,18474.37725,0,1671750.802,21
+60335,0,0,1677109.565,21
+60336,0,0,1681977.236,21
+60337,0,434372.6158,1685875.008,21
+60338,68566.59643,0,1690531.948,21
+60339,1765.991243,0,1694560.28,21
+60340,11364.62643,0,1698889.349,21
+60341,25092.14618,0,1702313.358,21
+60342,17299.49212,0,1706287.453,21
+60343,18580.25576,0,1710302.905,21
+60344,18483.19519,0,1713462.559,21
+60345,18578.47966,0,1717256.964,21
+60346,18499.90052,0,1720154.495,21
+60347,18542.03894,0,1724336.195,21
+60348,18525.36361,0,0,21
+60349,18561.8341,0,0,21
+60350,18471.13346,0,363605.9539,21
+60351,18545.1552,0,2683247.763,21
+60352,18542.02116,0,1526503.833,21
+60353,18503.69792,0,1621529.606,21
+60354,18525.34216,0,1813727.779,21
+60355,18503.69067,0,2543533.55,21
+60356,18529.06619,0,1713230.523,21
+60357,18478.21328,0,1721575.562,21
+60358,18550.70656,0,1730933.543,21
+60359,18481.95073,0,1736797.567,21
+60360,18529.05122,0,1744416.199,15.6
+60361,18525.32013,434323.6413,1747412.76,15.6
+60362,18595.79013,0,1750062.274,15.6
+60363,18629.09299,0,1752937.594,15.6
+60364,18717.11023,0,1754442.527,15.6
+60365,18695.61582,0,1756098.21,15.6
+60366,18742.21973,0,1757345.392,15.6
+60367,18816.48404,0,1758681.232,15.6
+60368,0,0,1758944.519,15.6
+60369,0,0,1760390.624,15.6
+60370,0,0,1760472.068,15.6
+60371,70781.4933,0,1761051.117,15.6
+60372,2525.197914,36830.88041,1761163.583,15.6
+60373,10945.21503,0,1761296.396,15.6
+60374,26232.5852,3626.228149,1761014.256,15.6
+60375,17888.99639,12259.57661,1760791.441,15.6
+60376,19215.40093,11421.24229,1761613.976,15.6
+60377,19236.37111,9709.823322,1760557.147,15.6
+60378,19280.33377,10486.58731,1760487.739,15.6
+60379,19354.72055,10673.06588,1760290.29,15.6
+60380,19377.72682,10713.76294,1557966.823,15.6
+60381,19406.56601,10855.50871,0,15.6
+60382,19476.14095,10956.90717,363919.4701,15.6
+60383,19463.00146,11082.04144,278328.524,15.6
+60384,19583.91685,11163.02195,2632770.262,15.6
+60385,276481.6288,11260.5195,1589639.601,15.6
+60386,19644.79881,11401.1889,1614402.56,15.6
+60387,37665.02525,11492.23352,1826137.971,15.6
+60388,99136.46428,11578.67822,1724355.012,15.6
+60389,100588.9871,11716.17405,1736817.896,15.6
+60390,83049.22437,11786.44311,1739771.174,15.6
+60391,90098.42821,11875.81121,1742069.181,15.6
+60392,90324.72221,11941.72842,1743178.149,15.6
+60393,91059.50158,12068.82788,1745275.536,15.6
+60394,91538.26603,12199.88577,1746593.165,15.6
+60395,91928.32499,12249.21365,1746634.408,15.6
+60396,92410.73655,12386.65189,1747543.838,15.6
+60397,92815.33263,12461.26132,1748694.639,15.6
+60398,93408.74292,12608.12922,1749264.408,15.6
+60399,93791.68736,12640.0518,1748462.313,15.6
+60400,94556.57449,12780.59612,1749456.27,15.6
+60401,74831.87906,12879.5043,1749389.76,15.6
+60402,75100.83959,0,1749095.938,15.6
+60403,75647.62794,0,1749225.554,15.6
+60404,150606.3706,0,1749317.923,15.6
+60405,81513.65896,0,1748449.572,15.6
+60406,89518.55209,0,1748838.902,15.6
+60407,104846.4998,0,1749555.151,15.6
+60408,97818.43422,57450.92957,1747795.967,15.6
+60409,99010.53687,536.5187832,1746997.644,15.6
+60410,99838.39604,3995.048949,1747382.506,15.6
+60411,100190.0338,18835.37456,2445774.166,15.6
+60412,100867.716,14505.54899,1573561.039,15.6
+60413,101143.4412,13547.63213,1801345.321,15.6
+60414,102078.5438,14229.58824,1119736.221,15.6
+60415,20855.19306,14287.17393,357587.0879,15.6
+60416,20908.25157,14460.09577,235295.0785,15.6
+60417,20909.52717,14487.25355,2536141.985,15.6
+60418,20950.19864,14620.83302,1497533.914,15.6
+60419,21023.15735,14699.05993,1573711.211,15.6
+60420,21011.25183,14817.6459,1784155.937,15.6
+60421,21041.81364,14800.34195,1687347.028,15.6
+60422,21042.42336,14913.82824,1711348.759,15.6
+60423,21014.44645,14860.43936,1721852.518,15.6
+60424,360580.7399,14956.47163,1731489.769,15.6
+60425,38242.04485,14979.64915,1740585.913,15.6
+60426,49587.10928,14973.03162,1748478.26,15.6
+60427,122452.4584,15058.82442,1756470.421,15.6
+60428,117198.0579,15042.63699,1765402.112,15.6
+60429,100452.4249,15101.23828,1838220.255,15.6
+60430,106027.8712,15151.4966,1766378.277,15.6
+60431,106216.6311,15140.84128,1775112.901,15.6
+60432,106005.0387,15230.27909,1881205.002,15.6
+60433,106089.1274,15210.25843,1774007.751,15.6
+60434,85304.03838,15260.93021,1782695.173,15.6
+60435,84789.68378,15300.42537,1791698.321,15.6
+60436,85288.64751,15311.94051,1899410.771,15.6
+60437,160823.796,15377.50349,1790958.322,15.6
+60438,91225.44601,0,1799718.087,15.6
+60439,98491.8378,0,1806188.484,15.6
+60440,112271.2556,0,1913177.324,15.6
+60441,105216.021,0,1802231.771,15.6
+60442,106324.7232,60683.3844,1809332.367,15.6
+60443,106182.8891,0,1818272.49,15.6
+60444,106014.2395,6359.759356,1621372.424,15.6
+60445,106300.2567,22431.17457,1628262.056,15.6
+60446,106292.675,14856.04771,1942821.109,15.6
+60447,106013.0113,15489.6071,291400.6943,15.6
+60448,106453.2739,15757.74345,231013.1819,15.6
+60449,106088.2689,15780.53736,255016.6705,15.6
+60450,106145.0255,15806.39586,3422635.9,15.6
+60451,106569.116,15896.74426,1859002.096,15.6
+60452,105938.0087,15835.17141,1911875.396,15.6
+60453,106572.3532,15932.57264,1927625.307,15.6
+60454,20753.2672,15973.93269,1831874.105,15.6
+60455,20730.0557,15951.19664,1847605.23,15.6
+60456,20753.49735,16012.57232,1857052.756,15.6
+60457,20692.46954,16050.91421,1866617.917,15.6
+60458,20752.64212,16041.56912,1874682.447,15.6
+60459,20672.77176,16118.03889,1881408.439,15.6
+60460,20699.27523,16089.51789,1889619.569,15.6
+60461,20691.60198,16182.13653,1895389.906,15.6
+60462,20641.18781,16153.66727,1901255.149,15.6
+60463,382194.8618,16238.361,1907235.56,15.6
+60464,35438.03261,16245.71298,1913993.945,15.6
+60465,42973.11558,16289.65027,1917215.533,15.6
+60466,126558.2775,16281.24548,1923233.623,15.6
+60467,97662.89234,16363.6489,1927417.773,15.6
+60468,80299.43642,16348.25847,2629468.346,15.6
+60469,86453.27904,16395.86645,1967446.665,15.6
+60470,161298.5667,16427.31033,2190231.518,15.6
+60471,91667.7233,16434.08775,1930015.498,15.6
+60472,99385.78516,0,1937015.87,15.6
+60473,113001.9431,0,1943003.027,15.6
+60474,105624.8965,0,1950120.955,15.6
+60475,106814.7532,0,1955898.221,15.6
+60476,106517.531,67833.1005,2546429.882,15.6
+60477,106528.773,0,1727042.76,15.6
+60478,106304.8703,4781.982837,2049589.727,15.6
+60479,106428.0211,26448.05978,2012787.847,15.6
+60480,106176.7886,14951.21694,275730.1921,15.6
+60481,106266.3969,16841.04954,262333.981,15.6
+60482,106496.9938,16908.2714,2853543.174,15.6
+60483,106653.0602,16977.24756,1975371.206,15.6
+60484,106326.4315,16986.2741,1811293.907,15.6
+60485,106744.3273,17064.0227,2055901.583,15.6
+60486,106706.4726,17057.12799,1971823.596,15.6
+60487,106608.6057,17111.02165,1982323.878,15.6
+60488,107196.4297,17169.29257,2030464.712,15.6
+60489,106665.6483,17210.76931,2186984.372,15.6
+60490,107088.0058,17191.47051,1968212.874,15.6
+60491,107098.6932,17196.61503,1979304.442,15.6
+60492,107067.0601,17231.29003,1992008.965,15.6
+60493,20452.65339,17283.83579,2001936.927,15.6
+60494,20476.44818,17308.33091,2010915.499,15.6
+60495,20469.74023,17330.39339,2019327.286,15.6
+60496,20440.45133,17373.20951,2026843.221,15.6
+60497,20433.78113,17441.70903,2033348.756,15.6
+60498,20476.48638,17395.26835,2040221.626,15.6
+60499,20417.83213,17508.72681,2742196.843,15.6
+60500,0,17528.31667,2083754.597,15.6
+60501,0,17530.72654,2304833.102,15.6
+60502,379144.5709,17629.28263,2043450.737,15.6
+60503,88023.77645,17582.72225,2051287.799,15.6
+60504,23578.35951,17690.70519,2058780.982,15.6
+60505,123857.9494,17693.2334,2065195.076,15.6
+60506,126365.3909,0,2070631.842,15.6
+60507,101562.7694,0,2077231.092,15.6
+60508,108882.4232,0,1845163.093,15.6
+60509,109020.7137,0,1850908.681,15.6
+60510,108590.5306,73997.86691,2176024.218,15.6
+60511,108870.7227,0,2155086.152,15.6
+60512,108778.1995,6356.206369,302497.0693,15.6
+60513,108877.399,27577.64007,299264.4221,15.6
+60514,108982.1178,16269.01234,2945361.733,15.6
+60515,108612.087,18076.22982,2322756.448,15.6
+60516,109140.4871,18131.92249,1851238.751,15.6
+60517,108848.4917,18182.85807,2196554.774,15.6
+60518,108943.6599,18219.16106,2111945.719,15.6
+60519,108988.2105,18262.30567,2145548.477,15.6
+60520,108943.7348,18293.8725,2301441.175,15.6
+60521,109201.8521,18291.51741,2081048.224,15.6
+60522,108943.8106,18349.26908,2094494.45,15.6
+60523,108900.1591,18423.69116,2108211.449,15.6
+60524,109368.172,18412.13524,2117448.622,15.6
+60525,108858.6317,18445.11627,2128306.098,15.6
+60526,109593.9466,18510.20511,2135486.127,15.6
+60527,108882.1674,18541.54905,2143506.443,15.6
+60528,109470.1557,18581.88257,2150736.233,15.6
+60529,109239.9757,18577.16752,2156104.041,15.6
+60530,109213.2023,18644.31629,2860461.593,15.6
+60531,109563.2428,18717.811,2200248.002,15.6
+60532,20313.18084,18644.30739,2420197.538,15.6
+60533,0,18815.67411,2159182.228,15.6
+60534,0,18775.20525,2168550.213,15.6
+60535,0,18815.66503,2174862.309,15.6
+60536,74478.92257,18882.08098,2181917.82,15.6
+60537,5073.468874,18877.66654,2188155.906,15.6
+60538,13034.9341,18947.95429,2193564.137,15.6
+60539,26406.16531,18977.24299,2200090.676,15.6
+60540,19504.55959,0,1951708.89,15.6
+60541,424812.9101,0,1951611.502,15.6
+60542,32529.18074,0,3065424.359,15.6
+60543,38444.73598,69738.97842,2234364.266,15.6
+60544,139350.8817,0,312389.9011,15.6
+60545,128162.8816,10549.98737,319426.7704,15.6
+60546,110443.1141,26198.34603,2972394.104,15.6
+60547,118672.3652,17040.26801,2481258.805,15.6
+60548,119509.528,18469.48242,1981550.396,15.6
+60549,120347.6019,18423.59767,2132823.595,15.6
+60550,121877.7142,18322.20368,2240339.135,15.6
+60551,122665.4154,18313.02313,2334971.714,15.6
+60552,123670.993,18213.58395,2110071.953,15.6
+60553,124696.5086,18097.7496,2119741.589,15.6
+60554,126021.088,18102.32949,2125347.778,15.6
+60555,126817.6322,17958.90178,2130967.306,15.6
+60556,127884.6614,17934.8052,2132608.441,15.6
+60557,129168.8359,17846.34029,2137454.533,15.6
+60558,130187.5589,17773.4276,2135604.267,15.6
+60559,131117.8911,17702.33321,2137290.466,15.6
+60560,132422.6616,17635.54219,2137129.416,15.6
+60561,133266.986,17530.53419,2832540.521,15.6
+60562,134388.8057,17512.10536,2168350.265,15.6
+60563,135670.1317,17401.93559,2380432.782,15.6
+60564,136519.6559,17378.96831,2114452.02,15.6
+60565,137882.7473,17225.31805,2114691.468,15.6
+60566,115421.7831,17212.45902,2117154.151,15.6
+60567,116558.7043,17131.06321,2115612.679,15.6
+60568,117472.8403,17003.3883,2116047.02,15.6
+60569,199555.4026,17045.01909,2114171.502,15.6
+60570,136623.075,16833.32411,2113277.75,15.6
+60571,10051.55793,16892.18552,2111873.335,15.6
+60572,32168.64228,16716.92797,1869013.396,15.6
+60573,23290.495,0,1868353.206,15.6
+60574,24279.9914,0,2190996.418,15.6
+60575,24392.08656,0,2166198.251,15.6
+60576,562242.1885,0,308498.0712,15.6
+60577,24657.6308,68161.48522,304518.5829,15.6
+60578,58515.94117,0,3027664.828,15.6
+60579,225285.6357,3717.055491,2318335.367,15.6
+60580,142935.4692,25832.545,1793200.227,15.6
+60581,154231.8444,14471.23645,2867440.481,15.6
+60582,156988.2388,16029.68481,2082111.99,15.6
+60583,157552.734,16056.42428,2294470.478,15.6
+60584,159097.0741,15978.78111,2037184.824,15.6
+60585,159973.7604,15919.25482,2041707.655,15.6
+60586,160886.131,15821.34584,2045489.37,15.6
+60587,162178.4211,15746.00184,2046873.122,15.6
+60588,162908.0358,15656.19694,2048279.226,15.6
+60589,164212.9602,15609.62086,2048314.124,15.6
+60590,165381.4788,15504.74903,2049291.781,15.6
+60591,166354.6148,15430.8144,2047353.636,15.6
+60592,167188.1787,15349.24781,2046695.245,15.6
+60593,168797.9515,15270.90518,2045519.698,15.6
+60594,169500.0187,15171.58402,2043207.509,15.6
+60595,170597.0651,15119.26551,2042189.938,15.6
+60596,171521.8098,15006.70972,2057045.609,15.6
+60597,173044.8453,14904.27668,2034342.316,15.6
+60598,173686.5309,14840.90973,2031584.011,15.6
+60599,147881.8335,14754.93359,2129761.447,15.6
+60600,148796.5877,14577.34772,2009750.122,15.6
+60601,226957.2267,14600.91995,2016975.245,15.6
+60602,164501.3007,14671.63618,2022703.863,15.6
+60603,169794.999,14649.30123,2131024.433,15.6
+60604,179416.2187,14671.63314,1786209.973,15.6
+60605,175382.9626,14721.1061,1792627.056,15.6
+60606,27102.95603,14714.52548,2123764.709,15.6
+60607,27160.90626,0,2091920.011,15.6
+60608,27070.44114,0,300904.85,15.6
+60609,27086.43838,0,286315.3767,15.6
+60610,638692.1926,0,3037001.918,15.6
+60611,30953.65664,0,2127213.06,15.6
+60612,90869.29351,65350.84138,1818411.198,15.6
+60613,240176.7387,0,2813455.137,15.6
+60614,165346.9996,2798.63116,2057892.753,15.6
+60615,172611.8428,21955.11154,3073223.472,15.6
+60616,174274.7312,14870.65581,2009226.703,15.6
+60617,173650.0762,14535.32725,2023070.684,15.6
+60618,173512.1811,15057.36745,2035661.903,15.6
+60619,173202.7694,15094.9509,2161296.388,15.6
+60620,172962.5029,15123.26565,2036155.394,15.6
+60621,173294.5168,15159.38342,2046477.724,15.6
+60622,172252.8022,15139.89642,2057601.767,15.6
+60623,172733.7917,15188.87147,2173217.785,15.6
+60624,172190.9895,15241.70175,2054661.055,15.6
+60625,172031.4185,15215.96644,2065840.743,15.6
+60626,171807.7976,15290.53333,2075057.396,15.6
+60627,171412.8376,15245.40194,2081543.743,15.6
+60628,171745.323,15330.40575,2090032.376,15.6
+60629,171059.4387,15310.79843,2095369.883,15.6
+60630,170998.6046,15346.929,2101503.459,15.6
+60631,144516.8823,15382.85958,2105712.718,15.6
+60632,143819.5784,15415.9033,2111828.875,15.6
+60633,220929.9285,15382.85625,2814245.632,15.6
+60634,157508.3444,15481.05191,2152099.567,15.6
+60635,165027.5365,15451.83048,2372185.177,15.6
+60636,173660.6365,15500.4584,1866948.182,15.6
+60637,169154.1961,15484.63175,1872967.504,15.6
+60638,169574.5722,15552.806,2204933.63,15.6
+60639,169029.0746,15569.18897,2305638.698,15.6
+60640,26243.73342,15608.52185,250914.0307,15.6
+60641,26180.16158,15569.18553,413411.3548,15.6
+60642,26154.0738,0,3033978.475,15.6
+60643,26134.14175,0,2492184.926,15.6
+60644,616196.2087,0,1819916.571,15.6
+60645,26085.72788,0,2188098.332,15.6
+60646,84027.99634,62565.56424,2107596.44,15.6
+60647,234347.8927,0,2108140.845,15.6
+60648,157756.9201,5651.621533,2121744.786,15.6
+60649,166292.3308,23178.89915,2132383.321,15.6
+60650,167248.1188,14960.49486,2141707.64,15.6
+60651,166775.4416,15657.77839,2149237.243,15.6
+60652,166956.2038,15932.58278,2158116.77,15.6
+60653,166439.7928,15996.90999,2859219.109,15.6
+60654,165931.8204,15948.68547,2203673.979,15.6
+60655,165943.3461,16061.08499,2420288.899,15.6
+60656,165440.5304,16030.62194,2161328.73,15.6
+60657,165233.0307,16087.18428,2168390.744,15.6
+60658,165024.8578,16064.41253,2176035.929,15.6
+60659,164748.1529,16125.12953,2296545.221,15.6
+60660,164133.386,16131.82312,2165065.55,15.6
+60661,164683.4201,16186.51105,2172788.276,15.6
+60662,164127.7827,16179.77083,2177237.106,15.6
+60663,139281.2983,16189.82922,2287972.429,15.6
+60664,138782.7248,16220.91236,2167633.288,15.6
+60665,214095.2498,16225.07034,2174086.549,15.6
+60666,149992.7724,16294.7623,2179876.763,15.6
+60667,161420.803,16246.945,2184821.046,15.6
+60668,167810.1566,16339.95551,1934402.583,15.6
+60669,164492.8906,16307.39337,1937780.293,15.6
+60670,164640.3948,16323.8028,2267547.106,15.6
+60671,164618.2202,16365.14675,2258725.07,15.6
+60672,164799.0622,16400.05535,941738.8804,15.6
+60673,164563.5062,16393.59014,276369.3682,15.6
+60674,25656.41944,16422.53711,3383839.176,15.6
+60675,25557.79802,16447.77485,2517606.971,15.6
+60676,25604.86434,0,1974197.618,15.6
+60677,25652.11069,0,2183878.454,15.6
+60678,604025.0828,0,2228719.109,15.6
+60679,25635.45966,0,2188245.566,15.6
+60680,77625.51777,67343.67473,2190586.518,15.6
+60681,233830.8061,0,2197242.506,15.6
+60682,154192.678,4868.311611,2199581.977,15.6
+60683,164327.7304,25490.58353,2204309.133,15.6
+60684,164738.0558,15303.20184,2206401.734,15.6
+60685,165428.9593,16575.16046,2209463.834,15.6
+60686,164813.6774,16748.56539,2211538.301,15.6
+60687,165323.6175,16779.74585,2214435.427,15.6
+60688,164963.6735,16814.53256,2213077.528,15.6
+60689,165099.8228,16824.31103,2220830.663,15.6
+60690,165188.2103,16832.68593,2216478.366,15.6
+60691,164953.754,16846.5501,2217287.632,15.6
+60692,164805.6503,16905.266,2304187.863,15.6
+60693,165236.7923,16880.34628,2203220.947,15.6
+60694,165157.6948,16927.50529,2208529.153,15.6
+60695,139300.9766,16937.26226,2210909.829,15.6
+60696,139261.3744,16936.18398,2314741.026,15.6
+60697,214741.7282,16984.35965,2198702.522,15.6
+60698,150250.7623,16993.09998,2203088.066,15.6
+60699,161846.5641,16993.09813,2207736.084,15.6
+60700,168696.221,17074.70993,2053204.382,15.6
+60701,164403.6838,17046.07596,2730483.964,15.6
+60702,165161.8775,17074.70622,2243652.562,15.6
+60703,165206.3095,17080.65594,2245269.628,15.6
+60704,165083.7813,17130.27658,316397.5625,15.6
+60705,164848.8157,17102.77607,336219.417,15.6
+60706,165091.0098,17180.11575,3076843.955,15.6
+60707,165287.8733,17142.97055,2537396.445,15.6
+60708,25667.51648,17192.78005,1989553.223,15.6
+60709,25637.10131,17202.23396,2183570.904,15.6
+60710,25653.5595,0,2245486.047,15.6
+60711,25684.23697,0,2893969.935,15.6
+60712,607529.3729,0,2240357.6,15.6
+60713,25681.63415,0,2457649.582,15.6
+60714,77151.92655,70754.26106,2198114.003,15.6
+60715,233642.1171,0,2206932.692,15.6
+60716,155027.2207,5242.202057,2211979.101,15.6
+60717,164116.3112,27330.77555,2218658.669,15.6
+60718,165401.451,15520.72682,2222520.378,15.6
+60719,165221.3513,17431.16277,2224999.493,15.6
+60720,165366.5473,17505.14596,2229091.705,17.8
+60721,164509.9987,17765.93072,2231869.23,17.8
+60722,164336.7527,17943.72321,2232872.361,17.8
+60723,163817.2635,18124.34887,2236766.767,17.8
+60724,162896.6071,18266.90181,2235252.593,17.8
+60725,162596.7748,18504.86812,2240718.121,17.8
+60726,162038.0177,18620.16962,2238900.384,17.8
+60727,136171.618,18798.66179,2241310.517,17.8
+60728,135915.8619,18995.5553,2241635.962,17.8
+60729,135306.9629,19149.05359,2243608.63,17.8
+60730,217712.1551,19306.01598,2942984.398,17.8
+60731,157865.2856,19498.15112,2278161.737,17.8
+60732,142588.6158,19634.90783,2222986.653,17.8
+60733,167105.8742,19780.46452,1957563.456,17.8
+60734,156877.943,19983.33628,2291115.536,17.8
+60735,157456.4051,20125.27414,2285772.251,17.8
+60736,157123.1307,20262.18522,392969.4331,17.8
+60737,155887.1815,20493.33277,290843.2618,17.8
+60738,155912.8003,20615.61494,3115131.794,17.8
+60739,155206.2563,20809.47341,2583849.501,17.8
+60740,154887.8171,20933.77601,2039649.104,17.8
+60741,153973.3918,21166.01079,2191979.148,17.8
+60742,24357.92031,21285.9118,2281293.226,17.8
+60743,24309.07577,21484.65674,2224308.545,17.8
+60744,24244.49976,0,2230580.616,17.8
+60745,24173.23235,0,2233826,17.8
+60746,24144.76427,0,2239574.59,17.8
+60747,604298.9317,79893.86812,2242391.449,17.8
+60748,24022.25735,2505.332578,2244673.122,17.8
+60749,54808.73608,14764.83841,2247824.376,17.8
+60750,204665.591,30020.82029,2248491.813,17.8
+60751,150168.8193,21679.33763,2252855.073,17.8
+60752,144745.5679,23054.22533,3054051.217,17.8
+60753,148413.9927,23249.48736,2231598.147,17.8
+60754,147676.2487,23411.95438,2236030.131,17.8
+60755,147569.5985,391836.4175,2239817.164,17.8
+60756,146534.9063,23763.27515,2245319.939,17.8
+60757,146556.8644,23971.05809,2246451.621,17.8
+60758,145320.3946,24100.20739,2250293.839,17.8
+60759,145271.0737,24299.29457,2252844.847,17.8
+60760,121065.5227,24458.84322,2254271.8,17.8
+60761,120555.5078,24641.40231,2256578.966,17.8
+60762,120670.7319,24803.24876,2256913.768,17.8
+60763,199604.5598,24965.34795,2258501.165,17.8
+60764,135244.8476,25179.95155,1985123.173,17.8
+60765,127569.3148,25350.54476,1985206.828,17.8
+60766,149770.6035,25470.33923,2317828.716,17.8
+60767,139800.6579,25692.28573,2311559.598,17.8
+60768,140172.7127,25870.44366,347814.8947,17.8
+60769,139719.1943,26054.31868,356430.1235,17.8
+60770,139022.2307,26217.10833,3133825.148,17.8
+60771,478110.5542,26437.67639,2625511.591,17.8
+60772,137960.8063,26587.5307,2094693.39,17.8
+60773,137585.16,26750.50045,2186484.035,17.8
+60774,136901.0057,26921.67814,2309825.299,17.8
+60775,136264.7941,27112.88698,2241846.725,17.8
+60776,136135.8711,340620.8887,2248907.78,17.8
+60777,22299.02051,6270.846896,2251296.448,17.8
+60778,22256.95594,62207.34626,2254963.282,17.8
+60779,22148.99425,210800.335,2260445.441,17.8
+60780,22187.8613,111067.6132,2259678.584,20
+60781,22057.69408,128347.7499,2267064.409,20
+60782,22169.47556,133864.2076,2270793.239,20
+60783,552423.3691,129688.0686,2275645.219,20
+60784,22130.43441,128905.5841,2279821.56,20
+60785,46277.3625,128242.9202,2282242.327,20
+60786,166023.2288,127170.5211,2287886.483,20
+60787,148299.4942,126599.4849,2289198.62,20
+60788,127421.37,125459.8009,2294183.948,20
+60789,135115.3444,124838.4731,2296952.958,20
+60790,135226.7625,123787.0342,2300611.974,20
+60791,135273.3346,123008.4052,2301775.761,20
+60792,135392.4039,122073.4612,2307211.031,20
+60793,113241.1611,489582.44,2309390.717,20
+60794,113295.8172,120296.6605,2311454.443,20
+60795,113023.7818,119743.6918,2315681.208,20
+60796,191504.6517,118836.56,2034196.86,20
+60797,125483.7094,117316.1956,2034594.992,20
+60798,124395.9371,117294.6414,2371046.023,20
+60799,143401.2399,115850.5371,2374342.756,20
+60800,135041.2036,115093.403,361956.9619,20
+60801,136112.3666,114500.5126,355461.6039,20
+60802,135880.865,113392.1175,3153793.003,20
+60803,136397.805,112391.4419,3534383.817,20
+60804,136161.7675,111561.5164,2314951.512,20
+60805,136419.8674,110914.9714,2153123.468,20
+60806,136582.8292,24901.43842,2398427.806,20
+60807,136536.2255,24840.4333,2324898.166,20
+60808,136603.0504,24630.49422,2327799.879,20
+60809,136845.5039,2.962369104,2337858.305,20
+60810,136905,0,2343830.499,20
+60811,136781.2736,77.2418451,2348585.154,20
+60812,137223.6575,88897.67732,2355506.726,20
+60813,22459.77602,6839.785107,2360515.901,20
+60814,22478.07948,10836.74214,2549949.069,20
+60815,22498.07323,33855.94333,2517671.321,20
+60816,22471.42287,22145.41943,2520243.639,20
+60817,22499.53652,23739.3863,2523166.145,20
+60818,362034.1208,23552.47389,2531115.169,20
+60819,573230.4195,23429.30195,2530928.114,20
+60820,22527.98031,23321.46746,2533085.843,20
+60821,45288.71791,23138.08853,2536850.378,20
+60822,175806.6779,23076.48508,2540561.729,20
+60823,149765.623,22981.43667,2543588.273,20
+60824,131756.1036,22805.36349,2547058.891,20
+60825,138845.0012,22641.50615,2548568.834,20
+60826,116222.2305,22493.78642,2553804.803,20
+60827,116562.1256,22440.11293,2556482.602,20
+60828,116520.6302,22276.22217,2263480.346,20
+60829,194942.5383,22254.05355,2265277.184,20
+60830,130030.7734,22084.80772,2595633.185,20
+60831,127226.068,390039.7652,2615303.764,20
+60832,146847.8476,21772.07701,469924.7251,20
+60833,138832.1761,21619.72741,447965.193,20
+60834,139266.9558,21526.78568,3332427.265,20
+60835,139969.1055,21316.92906,3129140.435,20
+60836,139415.0174,21529.18979,2646867.67,20
+60837,139911.4876,21019.74212,2495223.787,20
+60838,139698.5183,20953.5415,2592594.424,20
+60839,140017.5793,20771.92191,2607635.449,20
+60840,139951.0657,20527.35055,2589140.721,21
+60841,137651.6259,20548.72651,2585567.645,21
+60842,137493.2471,0,2587043.113,21
+60843,137484.6037,0,2588987.651,21
+60844,137030.1533,0,2432908.549,21
+60845,137127.4213,75417.86723,2436171.444,21
+60846,136997.1741,405.1772516,2436941.931,21
+60847,136699.6661,16142.64077,2438244.454,21
+60848,136949.9514,27630.47984,2438897.832,21
+60849,22461.57811,20567.11579,2439428.074,21
+60850,22441.57119,21766.3146,2440011.308,21
+60851,22424.94127,21875.63607,2440767.32,21
+60852,22404.91722,21984.38973,2438750.697,21
+60853,22408.23817,22187.91873,2636033.873,21
+60854,22368.16094,22261.80726,2587845.091,21
+60855,568455.8971,22372.90383,2590856.243,21
+60856,22368.17147,22618.28532,2594819.767,21
+60857,45242.73534,22620.16167,2594516.002,21
+60858,166601.6549,22786.09769,2590242.987,21
+60859,128136.0241,22876.60746,2593075.907,21
+60860,105709.9297,23006.44802,2287812.608,21
+60861,113178.4091,23113.92687,2626028.195,21
+60862,191203.1195,23310.50077,2620503.958,21
+60863,124827.9067,23324.16264,2578407.284,21
+60864,124182.7167,23592.86055,471958.9239,21
+60865,142282.5916,23583.33962,465659.6993,21
+60866,134176.1305,23793.80487,3332971.926,21
+60867,134669.8926,23863.47386,3144562.004,21
+60868,134730.0742,24026.55455,2655610.516,21
+60869,133840.2933,24114.61092,2478609.448,21
+60870,134734.5258,24302.77026,2594751.254,21
+60871,134074.622,24325.15378,2600323.242,21
+60872,133723.5483,24504.21948,2631075.234,21
+60873,133852.5636,24577.37328,2566743.748,21
+60874,133739.2489,24728.37732,2571685.717,21
+60875,133329.7992,0,2576510.754,21
+60876,133441.7576,0,2576457.206,21
+60877,133266.5162,0,2582362.596,21
+60878,133062.9753,91060.66791,2580310.787,21
+60879,132815.0125,8178.198916,2583934.21,21
+60880,132851.496,325669.8144,2582845.391,21
+60881,132839.3883,35932.62234,3279777.808,21
+60882,132186.7139,84006.11042,2625226.551,21
+60883,132463.8579,137836.8559,2665939.539,21
+60884,132435.2858,128938.9803,2407675.735,21
+60885,21917.90169,119959.93,2413063.994,21
+60886,21859.68033,125301.1922,2416929.805,21
+60887,21921.3174,126429.6634,2420297.677,21
+60888,21874.90469,128028.3368,2423385.735,21
+60889,21863.32897,128369.7767,2422759.21,21
+60890,21825.77331,130460.7127,2427599.994,21
+60891,546935.1013,131583.2313,2317455.157,21
+60892,0,132489.7685,2273419.156,21
+60893,24775.35956,133935.8218,2613032.23,21
+60894,128725.6882,503379.8682,2634757.522,21
+60895,206209.4515,136377.5903,2594609.806,21
+60896,109950.8701,137595.2835,454913.035,21
+60897,121179.0456,139315.857,480031.302,21
+60898,137581.0067,139765.2408,3361763.18,21
+60899,129677.388,141975.0965,3111343.098,21
+60900,130601.506,142727.2128,2680978.684,21
+60901,130301.4072,142209.0932,2421455.466,21
+60902,130120.8045,141794.4355,2698310.183,21
+60903,130255.3173,141084.067,2552542.014,21
+60904,130101.9375,140454.9348,2547067.357,21
+60905,129716.0974,139748.96,2549378.352,21
+60906,130005.12,139344.7792,2551744.859,21
+60907,129812.3435,138798.7827,2553592.132,21
+60908,129388.2249,110625.5439,2553399.262,21
+60909,129662.1066,109972.7497,2553435.926,21
+60910,129165.4102,66.35284063,2553104.65,21
+60911,129825.8197,99612.94848,3246943.03,21
+60912,128933.6025,12429.4614,2590495.556,21
+60913,128990.3437,9165.851621,2788918.209,21
+60914,129533.8483,39368.97892,2525427.313,21
+60915,128579.1535,25075.16733,2527288.082,21
+60916,129179.3529,26947.47969,2529513.385,21
+60917,128668.7132,26818.15591,2642217.46,21
+60918,128587.6811,455606.8243,2505262.134,21
+60919,128918.9713,37528.24121,2510760.087,21
+60920,128387.041,61667.92462,2514875.154,21
+60921,21570.1778,155325.2619,2358048.541,21
+60922,21526.70277,140820.4275,2359177.598,21
+60923,21317.25334,122845.9551,2064293.079,21
+60924,21262.91744,128228.6062,2060896.179,21
+60925,0,127462.9088,2408662.532,21
+60926,0,127286.8259,2412652.653,21
+60927,0,126258.4057,2367066.084,21
+60928,594721.5273,125309.4758,367214.1472,21
+60929,9125.648762,124994.3482,377739.4468,21
+60930,36264.66137,124691.9491,3160027.869,21
+60931,134666.5569,123823.5746,2986225.354,21
+60932,152731.0795,123066.5534,2471817.804,21
+60933,113046.276,122506.3047,2308838.16,21
+60934,123047.9795,121608.3309,3342423.359,21
+60935,123384.3619,121110.1424,2440449.966,21
+60936,122544.7617,120254.7278,2444279.646,21
+60937,122448.4394,119758.7656,2444582.084,21
+60938,121824.7652,118538.4687,2449013.441,21
+60939,121335.0264,118324.6771,2448149.129,21
+60940,120877.7069,117382.3471,2447778.782,21
+60941,120515.1057,91760.63982,2446290.054,21
+60942,119862.6507,91263.04021,2445646.432,21
+60943,119798.4668,90439.23541,2442982.072,21
+60944,118905.2483,179391.1657,2493077.564,21
+60945,118794.4291,96685.75312,2423517.853,21
+60946,117988.2243,99932.65881,2423447.957,21
+60947,117857.4423,122181.6518,2538071.745,21
+60948,117293.1549,22771.19561,2394256.126,21
+60949,116626.5624,24234.65763,2396424.328,21
+60950,116550.9312,24178.95682,2397753.984,21
+60951,115407.6126,24108.71984,2396457.385,21
+60952,115640.047,23961.89316,2395964.248,21
+60953,115059.388,392065.8518,2393544.082,21
+60954,114457.1274,23764.75139,2391824.859,21
+60955,114083.8689,23716.60584,2105245.322,21
+60956,113927.861,23530.37951,2101904.823,21
+60957,113339.1933,23513.47516,2449853.919,21
+60958,0,23341.68527,2443989.996,21
+60959,0,23274.45248,2418900.315,21
+60960,0,23052.03143,462201.5684,21
+60961,72021.07396,23319.80603,459904.9525,21
+60962,4017.094833,23536.72998,3130172.958,21
+60963,14108.37948,23693.57886,2448472.151,21
+60964,25291.85336,23880.22206,1975254.628,21
+60965,19209.84563,24064.57944,2172872.325,21
+60966,19895.74956,24189.7824,2197940.548,21
+60967,19929.71918,24412.90562,2160573.932,21
+60968,19895.76401,24555.11472,2860733.944,21
+60969,496380.2499,24728.00986,2199797.736,21
+60970,26720.09135,24919.229,2415752.948,21
+60971,39217.50024,25132.50749,2148519.397,21
+60972,99268.86135,25234.06681,2152921.162,21
+60973,147908.0876,387373.6694,2152411.852,21
+60974,98046.291,15201.49273,2271875.185,21
+60975,110557.0171,45928.44882,2131031.407,21
+60976,110728.149,117964.4616,2133120.069,21
+60977,110199.3903,207082.5145,2135231.367,21
+60978,109892.3192,107468.2908,2134584.601,21
+60979,109798.5034,117603.7414,2133899.029,21
+60980,109632.0318,143937.4532,2132034.547,21
+60981,109341.9195,132557.4973,2130778.22,21
+60982,108963.8653,136405.9035,2127358.452,21
+60983,108866.8272,137437.198,2124223.13,21
+60984,108767.347,139479.473,2121985.5,21
+60985,108233.4635,140568.9814,2116610.931,21
+60986,108301.5314,141945.8366,2114477.414,21
+60987,108189.8503,143927.3789,1843015.325,21
+60988,107428.5248,145149.6423,1838281.744,21
+60989,107983.0516,146732.6259,2186848.122,21
+60990,106922.2684,148323.7452,2132070.232,21
+60991,87945.35329,149561.6064,2095363.605,21
+60992,87470.76763,151626.5412,332092.4994,21
+60993,87033.28661,152726.0525,333502.225,21
+60994,158392.268,154369.2997,2887762.129,21
+60995,90248.37544,156176.0338,2221693.107,21
+60996,99790.85484,157320.4144,1869336.234,21
+60997,111695.4605,159305.2281,2092351.34,21
+60998,105622.8085,160290.1578,2046492.688,21
+60999,19368.87342,162704.6676,2033323.865,21
+61000,19347.89943,163570.022,2034188.298,21
+61001,19347.90546,165137.2882,2033694.953,21
+61002,19326.85724,167003.1639,2031410.691,21
+61003,19271.10761,30403.65305,2031254.895,21
+61004,19303.59374,30630.92888,2028056.079,21
+61005,19245.94286,30736.30394,2834305.536,21
+61006,19226.71592,30931.0905,2001494.538,21
+61007,19203.95365,0,2000744.454,21
+61008,19183.68142,597011.5193,2001011.183,21
+61009,19163.12293,91816.12362,2000141.864,21
+61010,19141.61272,422934.8867,1998772.107,21
+61011,19103.03938,260551.864,1996848.634,21
+61012,19100.80846,172448.5892,1995108.61,21
+61013,18993.65636,182848.048,1991382.214,21
+61014,457359.0455,185750.1343,1989212.878,21
+61015,28564.13595,187773.7892,1984763.942,21
+61016,36543.76474,188946.2297,1982521.885,21
+61017,84126.53549,190308.4574,1977908.248,21
+61018,141336.0086,192585.1011,1974932.979,21
+61019,88739.96396,193371.3459,1726229.643,21
+61020,101684.0685,195383.3463,1721806.442,21
+61021,103321.654,195859.1985,2047989.721,21
+61022,104704.6019,193629.4489,1987227.479,21
+61023,106058.8611,192895.4694,1932158.053,21
+61024,88204.68947,191672.0868,316315.1552,21
+61025,89432.4575,190603.0241,289989.8466,21
+61026,90810.1809,189450.8251,2693431.561,21
+61027,163815.9984,188563.6685,1932235.576,21
+61028,97857.53186,187286.0451,1746551.273,21
+61029,109266.2279,186299.8755,1954130.608,21
+61030,122314.7116,184705.1216,1863537.968,21
+61031,117451.9306,184332.41,1865876.653,21
+61032,120022.865,182912.9814,1863614.716,21
+61033,121790.3318,181819.1119,1859297.303,21
+61034,123138.6544,164637.8487,1857018.117,21
+61035,124996.4284,160021.7391,1850239.506,21
+61036,126394.7549,156603.677,1847222.847,21
+61037,128219.5018,153989.3425,1840169.855,21
+61038,130165.1356,30470.14752,1835845.053,21
+61039,131144.5339,253.9205592,1829646.597,21
+61040,133513.7979,0,1823459.107,21
+61041,134867.5848,80716.21366,1817544.167,21
+61042,136843.3965,9674.553425,1811218.544,21
+61043,138615.3786,24100.21973,1804278.113,21
+61044,23070.5255,439115.5294,1798642.361,21
+61045,23268.27927,26402.87332,1793615.808,21
+61046,23477.23969,81681.1235,1787628.534,21
+61047,23611.08399,157854.5008,1781851.087,21
+61048,23882.99984,125319.4083,1776304.474,21
+61049,23989.60818,118798.6847,1771102.761,21
+61050,594929.9558,118423.8595,1765085.417,21
+61051,24423.56226,115943.1511,1549329.475,21
+61052,76117.35887,113653.8193,1542911.585,21
+61053,206855.1649,111283.3388,1826481.903,21
+61054,158863.2558,109112.6412,1745893.591,21
+61055,157139.1497,474128.3337,1742767.831,21
+61056,162194.66,104185.8078,248930.735,21
+61057,138620.3706,102218.481,259537.878,21
+61058,140238.5241,98936.88898,252789.1184,21
+61059,141780.8987,97360.87214,2297139.773,21
+61060,228274.7914,94922.94702,1808065.813,21
+61061,173581.4931,92353.4363,1533102.008,21
+61062,154680.6293,90367.37063,1747895.139,21
+61063,184408.7155,87886.44998,1677198.615,21
+61064,176595.0028,79710.4179,1669862.783,21
+61065,178998.6271,76492.38823,1671383.457,21
+61066,181136.109,73556.15163,1668820.313,21
+61067,182993.4613,71375.28866,1665902.651,21
+61068,185068.4164,68374.95876,1663151.275,21
+61069,186519.9931,66364.49621,1659580.512,21
+61070,189352.6252,63877.1159,1656302.434,21
+61071,190584.4485,38545.80732,1652439.903,21
+61072,192882.3795,37248.12878,1648748.64,21
+61073,194701.4983,36661.62708,1644440.047,21
+61074,196852.0476,60243.0105,1640507.663,21
+61075,198909.6914,7079.512108,1636105.707,21
+61076,200955.8077,12256.56903,1633133.89,21
+61077,202889.2674,23017.6298,1629667.488,21
+61078,204824.2798,17284.69737,1626701.938,21
+61079,207162.8713,17510.26885,1624078.627,21
+61080,30632.02278,20936.65355,1620088.025,21
+61081,30574.03906,19274.68507,1619401.402,21
+61082,30749.36297,453607.541,1617443.869,21
+61083,666250.1611,19441.8991,2209487.271,21
+61084,76339.48235,19281.62778,1410150.931,21
+61085,147576.6671,19270.61948,1651615.304,21
+61086,266236.9278,19131.616,1579267.913,21
+61087,203974.4785,18953.15939,1571180.36,21
+61088,212711.6131,19036.1556,1574821.972,21
+61089,212417.5532,18768.26032,222658.7607,21
+61090,182596.1038,18726.70035,220199.1121,21
+61091,182436.3921,18649.18481,218488.548,21
+61092,266936.3191,18584.10535,2028685.8,21
+61093,212501.7092,18462.47608,1529097.174,21
+61094,202074.0648,18373.37635,1419338.503,21
+61095,220766.36,18204.88631,1579604.476,21
+61096,215044.9225,18263.1748,1512156.975,21
+61097,215566.438,18036.97978,1515510.078,21
+61098,216168.0104,18051.21201,1513755.06,21
+61099,216129.5067,17971.07685,1511314.772,21
+61100,216552.0205,385983.4513,1508082.991,21
+61101,217018.3781,17839.12229,1505801.366,21
+61102,217568.1949,17657.44887,1501897.991,21
+61103,217347.8195,17758.33843,1499178.867,21
+61104,218059.9902,0,1495692.97,21
+61105,218338.9869,0,1492099.369,21
+61106,218814.0493,434263.6195,1488608.191,21
+61107,218835.3238,41948.49519,1485461.595,21
+61108,219491.4721,4985.651952,1481246.096,21
+61109,219634.1602,13746.34363,1477711.631,21
+61110,220265.0889,16705.02046,1474211.249,21
+61111,220400.1491,14598.82366,1470474.38,21
+61112,220842.7173,14711.40742,1467762.272,21
+61113,32112.26955,17860.61882,1518321.573,21
+61114,32174.44833,16981.88586,1451710.487,21
+61115,32224.67305,16734.59506,1276666.342,21
+61116,693151.8872,16904.67155,1413727.706,21
+61117,101070.1504,16845.72511,1493917.189,21
+61118,154665.2344,16803.33499,1417855.057,21
+61119,279336.3181,16767.00548,1407998.152,21
+61120,218277.9399,16687.59656,1423101.12,21
+61121,225241.8782,16571.29463,1419335.797,21
+61122,194310.7501,16572.99775,220716.16,21
+61123,193453.347,16479.58486,218785.3038,21
+61124,280499.4119,16412.26126,217022.859,21
+61125,230125.3533,16349.981,1917364.687,21
+61126,214519.0296,16294.02323,2116683.265,21
+61127,234556.1691,16223.83265,1261980.054,21
+61128,229070.7956,16178.81488,1693901.037,21
+61129,229718.6104,16024.23383,1345052.605,21
+61130,230153.2065,450245.3075,1351322.513,21
+61131,230809.3067,15873.39774,1352067.187,21
+61132,230972.6275,15943.12482,1482390.868,21
+61133,231624.0682,15818.35681,1338653.659,21
+61134,232293.9665,15659.70406,1338229.345,21
+61135,232897.6075,15621.66402,1339644.566,21
+61136,232995.8266,15650.08302,1460951.062,21
+61137,233835.3384,0,1325360.006,21
+61138,234279.398,0,1325705.27,21
+61139,234915.8105,0,1324831.134,21
+61140,235342.084,38002.66739,1448030.655,21
+61141,235665.5846,758.2568405,1313966.251,21
+61142,576078.6181,11944.58207,1311614.172,21
+61143,236864.9498,14795.18578,1311168.351,21
+61144,237477.3738,12492.24142,1308494.493,21
+61145,237876.675,12554.42575,1307450.877,21
+61146,34084.86043,381524.0771,1303848.043,21
+61147,34150.72924,15975.68328,1149126.787,21
+61148,34193.4145,13941.78618,1145959.848,21
+61149,730423.2992,14584.23377,1364627.924,21
+61150,148750.5718,14482.10951,2025716.301,21
+61151,146463.0191,14272.60199,1281681.099,21
+61152,305805.0737,14316.99231,1579180.568,21
+61153,235461.6815,14233.96799,1259601.593,21
+61154,208997.0012,14040.89633,1258481.556,21
+61155,209255.5585,14031.25198,250285.1707,21
+61156,297338.5403,13923.6704,292317.357,21
+61157,250859.7755,13818.72051,141171.9842,21
+61158,233002.7019,13764.55613,1762028.829,21
+61159,250426.9586,13684.11458,1166215.257,21
+61160,247363.1059,13734.53881,1243975.138,21
+61161,246985.9767,13645.94996,1232923.975,21
+61162,247682.8571,13709.37139,1183317.234,21
+61163,248527.4208,13569.22054,1185813.661,21
+61164,248371.2975,13634.15307,1315807.01,21
+61165,249432.7154,13613.05264,1173020.261,21
+61166,249798.8217,13544.37904,1172745.291,21
+61167,250472.4565,13714.00346,1172223.585,21
+61168,250979.7693,13485.04864,1170589.64,21
+61169,251146.9425,13492.16106,1169512.395,21
+61170,252399.3886,0,1167414.984,21
+61171,252158.8814,0,1165200.137,21
+61172,253326.8673,0,1162912.372,21
+61173,253571.4339,0,1160146.578,21
+61174,254303.6211,41578.726,1908665.614,21
+61175,254971.2643,1977.904237,1164442.709,21
+61176,255014.4798,8484.698562,1462470.718,21
+61177,256086.5034,14579.38713,1130461.23,21
+61178,256620.6064,11207.11725,1128414.638,21
+61179,36207.43764,11508.59777,997732.4181,21
+61180,36270.82659,11512.0141,1153995.994,21
+61181,36329.21157,11523.905,981304.4789,21
+61182,772530.5308,11509.72212,1192863.356,21
+61183,205417.6247,13896.71667,1109665.106,21
+61184,130322.6145,13333.82731,1223561.865,21
+61185,337549.5401,13029.26013,1093750.512,21
+61186,216423.8445,13171.26616,1081269.522,21
+61187,225413.7133,13144.26845,1078071.414,21
+61188,315104.3533,13144.2687,270094.1111,21
+61189,272209.9804,13057.89424,118607.0863,21
+61190,252812.2243,13117.02163,347760.4442,21
+61191,267482.9809,13056.60805,213947.1887,21
+61192,266078.5044,13030.69036,1630180.017,21
+61193,265522.4061,13142.26374,899646.9032,21
+61194,266281.8478,12919.23076,975075.2944,21
+61195,266543.0115,13015.13111,1029833.219,21
+61196,267208.0032,12856.53457,995136.8365,21
+61197,268118.1121,381064.8229,999044.5203,21
+61198,268311.28,12832.10721,998608.521,21
+61199,269051.8239,12887.62358,997416.6754,21
+61200,269082.4832,12828.42549,996559.7483,21
+61201,270316.4159,12716.12151,998680.674,21
+61202,270831.5238,12828.47981,1766198.32,21
+61203,271207.6262,12666.83511,1010022.349,21
+61204,271819.2185,0,1331804.28,21
+61205,272508.1285,0,992230.8433,21
+61206,273166.0024,0,994187.3055,21
+61207,273552.0588,0,996264.0872,21
+61208,274413.1625,42156.44544,998319.3757,21
+61209,274833.1721,0,999331.1841,21
+61210,275679.473,8538.836743,1000735.908,21
+61211,275986.7517,14470.71548,1002170.247,21
+61212,38483.06565,10781.8825,891009.8443,21
+61213,38463.2214,11233.09099,891932.686,21
+61214,38633.8135,11218.48536,892189.6787,21
+61215,814019.9431,11243.18984,1090594.83,21
+61216,266340.9208,11179.74379,1000537.514,21
+61217,125002.6774,11189.78639,989403.7165,21
+61218,321412.6885,11140.60533,1011847.709,21
+61219,238079.2153,11175.39443,1065403.116,21
+61220,332865.6743,13108.62497,1095950.489,21
+61221,294790.3209,11895.6845,992292.0542,21
+61222,275198.6738,12117.58049,372007.0448,21
+61223,284900.2959,12117.58045,157843.7408,21
+61224,286834.7655,12226.77747,206035.0031,21
+61225,285468.5838,12014.96381,196092.2051,21
+61226,286169.2666,12076.16482,193026.3885,21
+61227,286856.8178,12039.01788,191103.8583,21
+61228,287152.6606,12022.14878,1407705.022,21
+61229,287810.3839,11887.45987,1615498.856,21
+61230,288570.9495,12009.66346,1880263.598,21
+61231,288990.3337,11923.9839,1267062.285,21
+61232,289923.8066,11820.78873,910299.9975,21
+61233,290616.5468,11872.64749,918583.9222,21
+61234,290999.082,11857.20474,921706.6011,21
+61235,291858.7892,11806.13709,924786.4433,21
+61236,292639.9155,11684.4229,927379.4521,21
+61237,292901.8727,11827.87238,930482.8774,21
+61238,294225.9851,0,933266.2683,21
+61239,294289.4389,0,934642.7915,21
+61240,295700.1979,0,937812.9604,21
+61241,295943.1834,0,939191.3786,21
+61242,296401.2577,41099.87002,940485.248,21
+61243,297681.1374,0,946867.6364,21
+61244,298370.9522,7039.082028,942893.0414,21
+61245,40879.95757,14681.6687,840842.3768,21
+61246,41047.64291,378298.9162,909481.5078,21
+61247,759869.3921,10791.37472,923723.3783,21
+61248,208397.8989,10826.31957,1019007.68,21
+61249,246059.7399,10813.72551,926802.8797,21
+61250,299654.1996,10801.11315,928352.4519,21
+61251,259532.0995,10771.54504,946304.0181,21
+61252,353228.7687,10825.51913,938550.422,21
+61253,318613.6648,10771.54489,940058.4465,21
+61254,303229.9221,10770.6712,940441.5052,21
+61255,303414.2064,10783.75685,940906.9781,21
+61256,309801.1927,10740.98394,1742769.391,21
+61257,308477.2386,10795.00532,945515.5875,21
+61258,308444.0259,10740.98381,468215.5637,21
+61259,309480.204,11028.04402,100006.2102,21
+61260,310134.3635,11400.92798,345010.353,21
+61261,310752.9958,11141.25241,229318.894,21
+61262,311133.4228,11130.81778,173449.6665,21
+61263,311844.508,11167.71371,198235.7258,21
+61264,312524.6548,11085.97296,1348506.295,21
+61265,312699.0868,11060.54517,789044.629,21
+61266,313664.9058,11060.54594,839547.9022,21
+61267,313937.7835,11020.03366,914086.1571,21
+61268,314787.4946,11030.49833,871962.5444,21
+61269,315629.0353,10979.41606,878085.0289,21
+61270,315344.0468,10974.82481,883323.7613,21
+61271,316749.7452,10874.9186,879732.0238,21
+61272,317007.4376,0,880591.65,21
+61273,317569.1336,0,944603.1134,21
+61274,318158.5734,0,994337.0586,21
+61275,318860.0497,0,873517.4498,21
+61276,319353.1801,40075.52918,873808.1526,21
+61277,43341.63327,0,1059906.184,21
+61278,43276.46273,5373.20324,771415.9193,21
+61279,792377.8954,14971.70503,772081.0276,21
+61280,271074.6954,9507.369378,771876.2085,21
+61281,236919.4346,10338.53317,946903.2652,21
+61282,328079.1279,10329.41762,852327.171,21
+61283,277944.082,10312.64767,857646.9621,21
+61284,371221.552,10283.5579,871637.0461,21
+61285,341611.4562,10233.10741,864423.9553,21
+61286,325414.7223,10243.80392,864458.8053,21
+61287,324928.2777,10226.78408,1676333.24,21
+61288,329318.1521,10164.84798,895864.1309,21
+61289,328874.325,10198.32049,1197919.732,21
+61290,328653.063,10120.91897,847937.5376,21
+61291,329453.7913,10145.39886,847454.1158,21
+61292,330017.8953,10092.35158,847595.4905,21
+61293,331084.1857,10103.71862,846629.0678,21
+61294,331047.0994,378196.0388,211608.9654,21
+61295,332324.9349,10091.49124,201108.2161,21
+61296,333180.2668,10017.01323,196765.8544,21
+61297,333649.7366,10021.9019,193876.9442,21
+61298,334130.4261,9981.782832,191408.8834,21
+61299,335358.0738,9990.734046,189142.3749,21
+61300,336039.1251,9990.740213,1268692.946,21
+61301,336543.3396,9924.187908,710231.2177,21
+61302,337683.4072,10209.75834,838053.7058,21
+61303,338065.9095,10089.47668,828669.5967,21
+61304,339327.2666,10076.50199,780521.8154,21
+61305,339707.5815,10112.46454,970113.7361,21
+61306,340786.6045,0,778507.8271,21
+61307,341243.9238,0,778803.8846,21
+61308,341869.8871,0,779289.1379,21
+61309,45746.62059,0,779291.9937,21
+61310,45840.76912,0,779696.6902,21
+61311,816527.9569,40015.39544,694148.7531,21
+61312,317336.4861,0,694034.5553,21
+61313,274816.2693,4303.798854,692865.3945,21
+61314,333987.2993,14608.83158,849176.6866,21
+61315,304842.1821,8897.312515,1576510.55,21
+61316,393338.0009,9781.181628,801801.3979,21
+61317,367317.2974,9765.913728,1120415.538,21
+61318,351222.3486,9711.504596,758998.6702,21
+61319,352426.947,9765.917963,758361.3996,21
+61320,352311.4989,9668.988468,758403.0524,21
+61321,353644.8761,9721.911911,756593.8467,21
+61322,352210.2563,9709.591297,755726.6908,21
+61323,352391.4873,9666.987483,754177.2788,21
+61324,351624.2944,9709.593108,752685.7629,21
+61325,352057.9251,9666.989275,751111.57,21
+61326,351195.2978,9666.990164,749577.2462,21
+61327,351514.5277,9707.518682,748030.9241,21
+61328,351566.6416,9638.715511,745597.9229,21
+61329,350715.8157,9680.733528,746605.1502,21
+61330,351128.1439,9651.05719,196619.6155,21
+61331,350637.3739,9667.309666,87941.0453,21
+61332,351111.7256,9624.271977,401005.9674,21
+61333,349844.6645,9637.961267,146668.9941,21
+61334,351144.0222,9648.898396,199827.8193,21
+61335,349642.4698,9602.281842,189637.7333,21
+61336,350191.0118,9646.578839,1167174.136,21
+61337,350049.7067,9570.444034,607596.6809,21
+61338,349769.9952,9651.460633,636014.8719,21
+61339,349693.6248,9988.507883,1529209.97,21
+61340,349528.6796,9804.567585,709098.0538,21
+61341,46169.79494,368195.3268,1021544.807,21
+61342,46263.73672,0,668905.4101,21
+61343,816487.9603,0,693155.4854,21
+61344,331208.7193,0,594204.0222,21
+61345,280678.9531,0,593957.4724,21
+61346,330834.6572,38429.84544,593166.0603,21
+61347,307555.5969,570.595858,730159.4243,21
+61348,393206.0827,3488.58628,654621.9587,21
+61349,365859.255,14588.25421,658492.443,21
+61350,349191.4412,8634.140846,667873.4086,21
+61351,348966.3843,9571.529028,661779.7812,21
+61352,347755.7603,9555.693715,661822.1129,21
+61353,350267.256,9584.245008,1768465.437,21
+61354,348346.8469,9530.253758,732951.4795,21
+61355,347834.4627,9554.661237,642255.3712,21
+61356,348735.9064,9540.85646,730188.9575,21
+61357,347848.7967,9514.834057,866821.1314,21
+61358,348249.9004,9513.176762,630118.8512,21
+61359,347840.2497,9541.157119,708870.8157,21
+61360,347799.3794,9485.402771,626563.0956,21
+61361,348074.2078,9525.541544,799548.7258,21
+61362,347977.7368,9485.404379,619971.8673,21
+61363,347365.7035,9497.672306,706300.2509,21
+61364,348173.3523,9497.673093,616327.7743,21
+61365,347582.7438,9469.706852,616060.7821,21
+61366,347670.0833,9497.674645,193787.9321,21
+61367,347981.381,9481.677737,187207.2419,21
+61368,347404.2108,9610.455727,184210.4576,21
+61369,347798.7919,10329.88435,181843.9528,21
+61370,347472.4278,9873.351791,179766.2585,21
+61371,347460.9506,10015.95065,859787.6212,21
+61372,347875.2198,9987.788937,1114156.737,21
+61373,45731.24154,10138.67629,826886.4209,21
+61374,45709.34677,10068.66814,520841.0392,21
+61375,810613.5372,10124.55935,681674.7991,21
+61376,332856.8053,0,556758.0875,21
+61377,280642.2865,0,501393.7419,21
+61378,329462.249,0,501048.7093,21
+61379,307881.2674,0,500668.0634,21
+61380,393377.8797,35141.63743,628418.4803,21
+61381,363524.5799,1671.246808,553387.4435,21
+61382,347410.2381,3466.595432,557537.4975,21
+61383,348240.7384,13964.45712,569049.7027,21
+61384,347880.9562,9296.372162,564903.1002,21
+61385,349419.2196,9666.240157,568482.7614,21
+61386,349202.2523,9919.985949,671683.366,21
+61387,349266.9433,378170.7327,564376.2856,21
+61388,350020.2749,10006.71531,697855.5311,21
+61389,350012.9135,10115.33306,562334.5097,21
+61390,351088.2408,10138.8397,563288.3312,21
+61391,351371.1449,10196.76192,563784.5081,21
+61392,351925.7544,10273.50426,564143.0833,21
+61393,352418.8121,10331.08916,564872.4046,21
+61394,353297.8713,10537.68465,565172.9534,21
+61395,353212.7373,12200.17811,1409650.887,21
+61396,354152.3266,11316.21445,597181.1013,21
+61397,354746.3671,11713.75847,948046.6999,21
+61398,355385.4516,11756.00087,555491.0441,21
+61399,355732.2496,11848.38625,655831.1308,21
+61400,356304.5194,12060.4332,553468.3045,21
+61401,357035.7943,12080.53495,553998.6947,21
+61402,357839.0535,12166.76363,205571.4749,21
+61403,357929.6169,12255.50852,194516.7962,21
+61404,358728.6042,12640.90426,189652.6934,21
+61405,46919.49357,12460.0979,186398.9452,21
+61406,47271.13206,12571.62456,183670.0182,21
+61407,811229.0469,12710.48073,181008.6343,21
+61408,369610.6135,12856.50332,1231516.732,21
+61409,307681.6354,12778.99931,169165.7254,21
+61410,329200.3731,0,917082.8251,21
+61411,326578.6383,0,382859.0363,21
+61412,407487.2714,0,470647.4936,21
+61413,382564.128,0,550070.8388,21
+61414,367503.7904,43117.47074,582426.0669,21
+61415,369516.0256,1955.565672,603538.1103,21
+61416,365489.6583,8089.233012,687461.1766,21
+61417,370009.7548,15564.07281,496708.2072,21
+61418,369061.8783,11574.16851,614556.7976,21
+61419,369438.5405,12123.94389,492171.023,21
+61420,370707.504,12193.70937,493546.1287,21
+61421,370802.2963,13528.80226,494688.4892,21
+61422,371255.7921,13260.6388,495745.1538,21
+61423,374005.3364,14360.16819,496865.3499,21
+61424,374348.5204,16617.69194,497519.8658,21
+61425,374404.5437,15316.26085,498887.5042,21
+61426,375646.1219,16042.31405,1312074.005,21
+61427,376528.4129,16193.92214,529253.4109,21
+61428,376866.5794,16395.51308,858850.199,21
+61429,378370.8687,16598.08076,492994.4382,21
+61430,377999.247,16755.72103,600466.6135,21
+61431,380057.4918,16945.80216,493347.7576,21
+61432,379801.3538,385426.3791,492388.3634,21
+61433,381153.3879,17262.80746,492987.3656,21
+61434,381544.1195,17579.4873,493372.7526,21
+61435,382894.2032,17646.32348,493805.0291,21
+61436,383019.4884,17948.13151,517255.6521,21
+61437,50766.90457,18063.714,520524.45,21
+61438,50953.66013,18261.65005,521040.7826,21
+61439,828514.3913,18570.7223,521117.4645,21
+61440,441105.0656,18669.27318,201324.6576,21
+61441,332259.5109,18741.26641,189710.7745,21
+61442,340302.9655,18757.26054,207127.9241,21
+61443,352364.1583,18937.49714,192041.3021,21
+61444,427114.2254,0,128419.6234,21
+61445,405033.0328,0,129596.3116,21
+61446,391357.2541,0,312708.4072,21
+61447,388179.2558,49734.15837,227864.4291,21
+61448,388398.409,4128.067883,24050.08839,21
+61449,388089.7889,14323.19132,406364.9215,21
+61450,392700.5593,19591.57378,185441.7889,21
+61451,389256.3795,16261.2694,157676.1015,21
+61452,391178.9223,19035.01209,183583.3337,21
+61453,390467.7735,20869.13163,172030.082,21
+61454,391717.2322,19325.01963,170720.4822,21
+61455,391317.3492,19971.99385,169308.5756,21
+61456,392004.1931,20070.02526,167904.584,21
+61457,392138.5954,20144.61149,2583315.942,21
+61458,392299.7734,20254.74117,437174.8507,21
+61459,392576.5786,20312.52359,721872.1334,21
+61460,393475.5883,20366.1114,438864.4053,21
+61461,732401.0857,20513.33049,586339.2779,21
+61462,393790.6247,20536.85732,458568.5592,21
+61463,393793.1814,20696.29272,466140.7128,21
+61464,394497.9786,20593.66736,469541.986,21
+61465,394582.1203,20861.58403,472521.7828,21
+61466,394747.3859,20764.07289,451800.5995,21
+61467,395030.6385,20872.47846,455012.0805,21
+61468,395396.5189,20957.9512,457818.2456,21
+61469,53260.08031,20984.31847,460039.3904,21
+61470,53206.75802,20952.96719,463374.4166,21
+61471,838311.2616,21132.99501,470398.1192,21
+61472,475175.308,21079.81333,468297.6689,21
+61473,340552.6672,21148.17056,471057.4827,21
+61474,346280.0173,21163.12482,544668.2453,21
+61475,362690.0203,21270.95545,575166.1399,21
+61476,435768.3772,21227.31022,474581.9047,21
+61477,415342.661,368198.5871,605290.0737,21
+61478,399511.2388,0,684093.5532,21
+61479,401451.1726,0,420340.7273,21
+61480,403095.4256,55141.05286,587450.7566,21
+61481,400215.4236,1770.222968,426518.3953,21
+61482,401479.1978,15935.66189,422734.9345,21
+61483,401826.374,20293.61837,550131.6458,21
+61484,401537.4035,24857.16737,473648.7455,21
+61485,402123.0842,20043.8661,474388.589,21
+61486,401868.6725,21519.90856,492100.673,21
+61487,402884.8538,21579.95227,180357.1345,21
+61488,402559.1971,21619.28153,868386.6061,21
+61489,403352.5965,21629.52943,82684.37578,21
+61490,403437.351,21593.44615,415732.3146,21
+61491,403845.6433,21678.45752,54296.6186,21
+61492,403795.8849,21652.52653,325282.3621,21
+61493,404579.3883,21652.81861,215683.6806,21
+61494,404754.115,21732.28594,1015676.724,21
+61495,405200.6989,21661.07682,384317.5223,21
+61496,405119.8267,21681.8671,405634.3231,21
+61497,406007.5691,21760.19908,529420.7548,21
+61498,405877.1142,21689.27419,464704.7686,21
+61499,406127.2774,21673.11882,476246.7315,21
+61500,407038.4535,21663.35748,479067.5983,21
+61501,55701.73491,21614.21914,484706.4901,21
+61502,56162.39305,21880.02576,494584.1681,21
+61503,854393.3961,21740.694,496033.3444,21
+61504,487194.416,21935.85476,501081.5511,21
+61505,394841.0355,21976.80819,1658839.564,21
+61506,337982.8716,21972.03713,616973.0627,21
+61507,724301.3245,22125.36596,502813.2957,21
+61508,453018.7437,22187.76056,652955.9253,21
+61509,436681.5264,22164.58994,715220.9116,21
+61510,421578.6052,0,511542.9121,21
+61511,433109.5638,0,653369.3409,21
+61512,426829.1735,0,519257.5049,21
+61513,426282.7177,56109.37664,464918.5338,21
+61514,430438.7637,143.6348135,470330.8269,21
+61515,431070.0944,16833.02032,474738.4701,21
+61516,432813.5321,29776.10548,615127.4508,21
+61517,433405.2197,20924.43491,537828.9322,21
+61518,436385.5089,22641.21159,544393.3253,21
+61519,436634.39,22869.85431,1391004.804,21
+61520,439345.2393,23061.93692,592755.0159,21
+61521,440171.6487,22869.8546,940873.1201,21
+61522,442703.9283,391309.7968,564407.2835,21
+61523,442965.1281,23081.20801,667144.1038,21
+61524,445861.545,23248.61639,238966.6891,21
+61525,446510.093,23173.0187,265628.0317,21
+61526,449126.5446,23262.92072,64261.49154,21
+61527,449582.6157,23375.44538,351282.0217,21
+61528,451843.6522,23347.97571,202770.1283,21
+61529,453009.8234,23504.36295,1321438.508,21
+61530,454939.7418,23474.87051,469244.6232,21
+61531,455901.3753,23479.77092,604539.523,21
+61532,457759.6627,23596.49465,629132.5861,21
+61533,62847.94436,23722.77464,727376.9879,21
+61534,63272.10109,23609.24806,577660.2079,21
+61535,876703.1791,23791.54374,681456.3611,21
+61536,558375.3817,23788.7793,588160.6713,21
+61537,513294.9069,23812.42994,594198.3267,21
+61538,376232.9988,23978.43709,600694.1986,21
+61539,412595.6905,23871.31666,607506.4712,21
+61540,508155.2792,23971.45346,613562.9813,21
+61541,489188.0202,24112.96095,619950.3626,21
+61542,472315.1332,24077.77855,626058.5403,21
+61543,482414.2527,0,1450588.607,21
+61544,477335.311,0,668521.9943,21
+61545,478640.4572,0,1004805.984,21
+61546,480396.4112,60207.27049,566748.575,21
+61547,478009.668,716.6925529,654378.2195,21
+61548,482318.3837,23484.55693,575250.4097,21
+61549,481611.2374,29171.30029,932219.6953,21
+61550,483594.7018,23108.07375,646721.5799,21
+61551,484732.8334,24613.41536,714391.5329,21
+61552,485544.3841,24625.30668,670913.1614,21
+61553,487794.6074,24720.37522,1912551.732,21
+61554,827517.4476,24655.91755,655479.7192,21
+61555,490400.0038,24802.89211,724359.9125,21
+61556,491437.009,24745.02612,666306.1405,21
+61557,492150.1068,24985.29129,841342.2158,21
+61558,493731.4643,24920.2941,673620.3643,21
+61559,495212.7091,24852.2022,367178.53,21
+61560,496452.7016,25104.38135,201998.455,21
+61561,498602.5772,25847.20786,171212.5185,21
+61562,497766.6921,26114.87315,185963.8173,21
+61563,497979.0952,26222.70703,180606.9519,21
+61564,496306.6139,26353.86715,1311846.043,21
+61565,69202.02791,26635.27927,579021.432,21
+61566,69463.85589,26658.48086,612523.4786,21
+61567,882334.2154,394922.9018,1508765.367,21
+61568,623517.8627,27088.88171,709492.2527,21
+61569,553351.3384,27040.07989,1017564.797,21
+61570,435945.2347,27318.13528,686476.8478,21
+61571,505431.1031,27446.97567,714884.8767,21
+61572,515451.469,27509.33795,698737.7465,21
+61573,496647.4928,27728.95542,892889.2828,21
+61574,494162.213,27811.60951,703614.562,21
+61575,492653.7635,28074.90108,746134.3812,21
+61576,491522.5958,0,715760.8448,21
+61577,489730.9902,0,891805.06,21
+61578,489395.7457,0,723460.7836,21
+61579,488363.3357,71127.14724,706701.9223,21
+61580,488118.5188,9978.520249,645109.7509,21
+61581,487272.2614,25382.906,817912.1618,21
+61582,486023.6968,34065.79869,815280.8494,21
+61583,486139.7927,28347.03966,782466.9135,21
+61584,484210.0876,29343.69176,732430.739,21
+61585,484693.9598,29696.37274,761911.2785,21
+61586,483326.7731,29707.23294,756623.7657,21
+61587,482313.2377,29803.49834,763220.3749,21
+61588,482523.1488,30190.70219,768946.7678,21
+61589,480654.9222,30069.07246,773781.7963,21
+61590,480859.8865,30368.21864,779896.3549,21
+61591,479272.039,30506.44001,1610444.219,21
+61592,479164.695,30490.85321,821004.8883,21
+61593,478211.7035,30837.4569,1154278.819,21
+61594,476882.7561,30866.90392,95155.52666,21
+61595,477154.874,30915.066,368599.7675,21
+61596,475489.7646,31247.54153,259167.4464,21
+61597,68242.10273,31288.20056,288266.1688,21
+61598,68107.69909,31453.26506,1461066.76,21
+61599,881477.7858,31700.98196,709437.5716,21
+61600,588588.9559,31677.64485,688230.9797,21
+61601,467265.3797,31936.93964,1004671.096,21
+61602,378695.2286,31995.7201,768113.7137,21
+61603,848281.1791,32229.61074,797422.3874,21
+61604,506241.639,32404.27185,1820111.15,21
+61605,465524.7786,32357.36381,935595.3455,21
+61606,479746.6249,32690.55519,777689.9183,21
+61607,469856.342,32765.43085,801007.7502,21
+61608,469444.4442,32901.21468,790503.0601,21
+61609,467663.2725,368170.7163,957514.1259,21
+61610,465141.0968,0,796637.2678,21
+61611,465027.5304,0,815708.2691,21
+61612,463915.0369,87019.68526,708078.2103,21
+61613,462709.9299,22657.28522,712928.3902,21
+61614,462102.9225,265122.8212,718353.2519,21
+61615,461415.6093,43668.77951,930675.3822,21
+61616,460338.4658,56315.94919,838479.8401,21
+61617,458939.2561,80097.74527,822413.5852,21
+61618,459413.5512,123223.0196,852072.4953,21
+61619,456843.0843,89170.63855,1664835.206,21
+61620,459471.4397,99706.15179,884151.6386,21
+61621,459734.3764,99771.16031,1206200.803,21
+61622,459774.638,100600.2623,849445.4369,21
+61623,461645.5606,100770.2601,855834.8719,21
+61624,460535.9971,101271.6768,859918.5996,21
+61625,462342.2056,101569.2899,1066568.268,21
+61626,462407.4148,102106.5336,861467.1136,21
+61627,462934.4858,102170.2413,865988.944,21
+61628,463890.6557,103036.421,256845.4475,21
+61629,68056.81449,102992.9045,286615.9518,21
+61630,68305.44368,103650.5039,108411.4141,21
+61631,881587.6649,104327.6277,394428.129,21
+61632,568872.9753,104072.048,1590033.858,21
+61633,458364.0035,104952.2891,975420.6204,21
+61634,372557.7004,105151.0848,716696.4962,21
+61635,510932.6506,105702.7267,919287.3522,21
+61636,502216.3553,105969.5218,856539.4829,21
+61637,466273.1173,106368.7557,1017666.415,21
+61638,481662.9116,106713.9609,860522.4608,21
+61639,473171.3134,107328.0642,866773.854,21
+61640,474133.0821,107460.9754,873329.909,21
+61641,474870.1321,108231.8948,880104.3926,21
+61642,472211.4824,72144.66749,885614.338,21
+61643,473894.8224,72672.59766,891377.9578,21
+61644,475054.2936,80692.27398,897924.5267,21
+61645,473780.4646,20066.42025,787451.5769,21
+61646,494177.6729,34410.09558,792092.3211,21
+61647,475524.8896,39251.51938,1027734.765,21
+61648,476231.6237,36207.80986,908782.1951,21
+61649,479899.0234,36561.08555,1733089.009,21
+61650,482477.3838,404602.0357,967190.5872,21
+61651,481157.6694,36737.69109,1280298.312,21
+61652,821830.6898,343629.597,919841.5698,21
+61653,482892.2001,53040.30633,924605.5841,21
+61654,483736.7184,60654.14034,929505.55,21
+61655,484147.6733,144294.4315,1137487.327,21
+61656,484858.7282,113897.0143,1994493.448,21
+61657,484939.0745,112226.5851,914686.9306,21
+61658,486507.6716,114850.6616,920705.338,21
+61659,485845.3608,114952.653,926603.4681,21
+61660,487730.7373,115735.8079,934648.5963,21
+61661,75660.16849,115357.286,943115.5609,21
+61662,75667.37863,116281.3051,241455.6661,21
+61663,888515.0824,116098.5966,238572.4435,21
+61664,607384.2573,116711.4874,227321.728,21
+61665,488763.3996,116948.3968,1659725.4,21
+61666,518483.3661,117338.4175,934542.0558,21
+61667,486031.9513,117278.3765,1146531.775,21
+61668,514974.0472,118122.9884,995769.7651,21
+61669,496730.4425,118217.8785,926813.4182,21
+61670,495678.8289,118392.7724,939173.3949,21
+61671,498038.4337,119153.3532,1152733.581,21
+61672,494769.3887,119030.5316,944702.9913,21
+61673,497359.1871,119437.1153,951748.0601,21
+61674,497335.5796,82017.95823,959642.3054,21
+61675,497319.8876,82441.52236,966796.5878,21
+61676,494396.7244,169016.4274,973492.7545,21
+61677,494023.8634,104060.9603,853582.8132,21
+61678,495816.3663,118193.4439,858651.7762,21
+61679,495255.2273,129150.3288,1119774.052,21
+61680,495813.3371,124371.677,992713.8071,21
+61681,494167.3205,124744.4646,1803938.805,21
+61682,492500.9037,38094.68189,1047966.342,21
+61683,493234.3197,38156.58575,1354232.259,21
+61684,492156.2364,37871.50691,996651.8434,21
+61685,512568.1892,38042.14859,1007316.618,21
+61686,492861.2121,37868.66471,1009793.788,21
+61687,493425.139,37805.20798,1217297.212,21
+61688,494976.9626,377960.4075,1008850.57,21
+61689,497070.8089,42515.10228,1015132.181,21
+61690,494413.1682,66813.31212,1020388.363,21
+61691,495128.1349,516873.9325,1024725.56,21
+61692,494626.7371,118124.296,1029683.44,21
+61693,78093.30374,114691.359,1034413.511,21
+61694,78033.09095,117148.3619,1039395.236,21
+61695,890751.0661,116111.4887,258204.4808,21
+61696,545863.9838,115935.2939,246162.9847,21
+61697,597828.5692,120098.2769,262809.6867,21
+61698,483112.2866,117816.1037,1882419.208,21
+61699,491873.8658,117927.993,1026547.222,21
+61700,512746.7881,117370.526,912067.2118,21
+61701,494102.5769,117031.5237,1096612.966,21
+61702,493721.4465,116772.259,1014936.616,21
+61703,830448.1258,116195.6073,1029946.191,21
+61704,492631.1899,115833.0835,1034175.954,21
+61705,491450.7088,114935.805,1039687.833,21
+61706,491048.0224,78544.20306,1044838.15,21
+61707,490999.5621,77715.09598,1049393.327,21
+61708,489550.176,160885.4059,2942879.854,21
+61709,490869.8779,95024.48148,931521.4159,21
+61710,489292.5463,111897.6523,1235138.851,21
+61711,489155.8054,115539.9214,1152398.037,21
+61712,489240.2636,111521.6021,1021639.772,21
+61713,488555.3444,111690.1784,1020603.709,21
+61714,488731.4814,110933.2842,1245848.063,21
+61715,483161.6785,110648.9677,1038504.838,21
+61716,483229.1967,110186.0291,1042419.588,21
+61717,483055.6173,109628.1957,1047874.25,21
+61718,482097.1782,35828.81408,1053718.26,21
+61719,482576.8408,35769.06395,1058756.325,21
+61720,481672.4122,35627.00098,1063809.943,21
+61721,482040.4955,35734.45323,1068082.384,21
+61722,480939.7985,35439.72246,1077110.782,21
+61723,480691.7894,35530.7823,1076767.25,21
+61724,480952.8068,35424.70652,1080639.075,21
+61725,94937.34967,35311.15637,1159067.098,21
+61726,74622.08088,35250.35485,1172293.839,21
+61727,814119.2618,35145.92738,1082331.986,21
+61728,526161.01,35166.56431,394033.8722,21
+61729,600631.4514,327411.1455,219609.3609,21
+61730,467700.6636,53653.95932,257985.9146,21
+61731,488934.3192,49487.43121,1825504.543,21
+61732,506065.6816,458003.0874,941535.2659,21
+61733,489235.2118,117562.0405,984571.5575,21
+61734,483501.6709,90178.53002,1128135.796,21
+61735,487127.1685,95400.32892,1061403.528,21
+61736,481773.4928,95234.00555,1876626.406,21
+61737,483252.2673,94545.60144,1111633.501,21
+61738,482017.94,59421.85833,1410642.015,21
+61739,481999.8226,58987.78645,1070476.556,21
+61740,481431.8404,57854.87711,1075899.686,21
+61741,480785.123,151667.3767,942489.3459,21
+61742,482027.9872,82779.66388,1141875.871,21
+61743,480548.4025,87979.06889,1204873.782,21
+61744,481256.8209,109827.7611,1071911.732,21
+61745,481473.3421,101960.4103,1082042.593,21
+61746,480691.6054,104530.5021,1113125.171,21
+61747,481549.3166,106926.5981,1105285.483,21
+61748,480812.0732,107933.9308,1113849.079,21
+61749,481527.7963,110093.0553,1119115.99,21
+61750,480987.3533,111691.0569,1130655.52,21
+61751,481181.9534,113116.5966,1130600.997,21
+61752,481099.0836,114851.6776,1137421.668,21
+61753,481376.6842,116906.6223,1214822.079,21
+61754,481153.6096,118247.915,1232168.944,21
+61755,476833.9646,120007.9325,1142270.091,21
+61756,476887.4433,121409.201,1149483.639,21
+61757,74116.92728,123081.7939,1154262.091,21
+61758,74121.77623,124999.4295,1159885.308,21
+61759,812619.8956,37556.79632,1165989.673,21
+61760,514457.8313,37869.39835,1170363.017,21
+61761,593473.4524,37805.10096,268912.3488,21
+61762,455026.2008,38213.71362,266383.8079,21
+61763,487323.5771,38102.87573,958825.9608,21
+61764,520742.5286,38525.57553,2131662.107,21
+61765,484125.8925,38661.48302,1368736.276,21
+61766,481494.003,394672.1302,1034023.706,21
+61767,486064.8935,43121.81671,1242056.92,21
+61768,483243.5088,67678.28482,1147704.956,21
+61769,484061.2838,196466.865,1354844.053,21
+61770,482604.3394,135253.5405,1161589.901,21
+61771,483453.5126,104548.4784,1170065.479,21
+61772,482917.1438,107791.6437,1177697.501,21
+61773,483126.3864,203096.7504,1030473.995,21
+61774,482450.9494,131128.4167,1037594.52,21
+61775,483261.1036,149858.4148,1326497.262,21
+61776,482066.8507,157852.148,1202976.882,21
+61777,482801.5615,522835.6104,1199557.283,21
+61778,482682.0054,156975.1421,1226902.556,21
+61779,482527.927,158761.4767,1221739.777,21
+61780,482180.6948,160083.3949,1300010.94,21
+61781,482743.2867,161844.2252,1315189.909,21
+61782,482299.8325,163664.0065,1228496.688,21
+61783,482506.6382,164645.4737,1236086.044,21
+61784,482173.1401,166678.8358,1241125.984,21
+61785,482651.3895,168097.8188,1247510.572,21
+61786,482145.4005,169853.0534,1253463.733,21
+61787,482570.7369,171193.1029,1258827.119,21
+61788,481556.669,173080.9296,2327052.092,21
+61789,79335.0278,174494.1353,1241404.042,21
+61790,79378.88426,176218.6845,2052401.302,21
+61791,817282.0805,177650.1011,1262287.688,21
+61792,519186.6482,179166.8629,1621741.626,21
+61793,600002.5008,181160.2917,1248612.126,21
+61794,452315.718,182234.3318,421597.2015,21
+61795,488876.2358,184195.9182,304199.1924,21
+61796,498801.8145,44122.44695,337208.7282,21
+61797,484187.2619,44206.97306,2329129.731,21
+61798,478665.8185,44480.44701,1199423.66,21
+61799,482185.1208,44494.16779,1049158.459,21
+61800,477042.4019,548175.8284,1351324.705,15.6
+61801,479212.1606,75522.89009,1224162.383,15.6
+61802,477452.6067,148670.637,1242490.495,15.6
+61803,498162.1389,192882.0122,1251757.135,15.6
+61804,477697.9749,143910.2824,1263238.986,15.6
+61805,477067.9355,261145.5127,1101007.613,15.6
+61806,479723.0979,179823.392,1106880.626,15.6
+61807,480919.0993,191440.6329,1466430.173,15.6
+61808,478166.9075,204224.4949,1396681.515,15.6
+61809,478577.5204,199596.4568,1256737.447,15.6
+61810,478071.9052,200096.6204,1288822.733,15.6
+61811,477260.6826,201114.7854,1291859.971,15.6
+61812,477268.8128,202278.1978,1294449.125,15.6
+61813,475975.1755,202775.7824,1300361.455,15.6
+61814,475881.7783,203334.8511,1305678.658,15.6
+61815,475668.5464,204990.3253,1309798.536,15.6
+61816,475472.106,204935.427,1315121.27,15.6
+61817,474114.0995,206559.3587,2125005.259,15.6
+61818,474758.4054,206786.0879,1329313.539,15.6
+61819,472984.0988,207579.2524,1687295.344,15.6
+61820,473802.6053,208441.6308,1308767.081,15.6
+61821,78352.57289,209641.5275,1314119.371,15.6
+61822,78237.21633,209663.9154,1319660.022,15.6
+61823,817171.5253,579402.9195,1506378.7,15.6
+61824,500133.5557,211669.6417,1314441.194,15.6
+61825,586721.265,212314.2125,1319391.72,15.6
+61826,433888.7715,213662.9835,1324054.556,15.6
+61827,490791.1068,214265.7359,271900.9043,15.6
+61828,489715.8272,215030.0177,288667.1924,15.6
+61829,473564.8721,215637.8434,280677.3165,15.6
+61830,472904.9193,47541.44717,2538653.328,15.6
+61831,470102.3519,47783.4107,1298404.513,15.6
+61832,469552.6951,47667.35864,1195215.934,15.6
+61833,464872.9131,47937.74586,1405869.049,15.6
+61834,463934.0621,680701.9462,1291040.49,15.6
+61835,462889.3199,71995.84523,1298662.705,15.6
+61836,463250.7113,66261.52875,1340270.653,15.6
+61837,461958.3133,367814.7829,1140921.638,15.6
+61838,461491.1642,195632.6486,1146980.508,15.6
+61839,800868.3054,217578.779,1599667.016,15.6
+61840,460551.4956,231102.1261,1343737.003,15.6
+61841,460237.7221,225336.8125,1301572.353,15.6
+61842,459410.3927,227502.0363,2343843.796,15.6
+61843,480125.8098,228107.7699,1313404.741,15.6
+61844,459699.8058,228315.1001,1317929.294,15.6
+61845,460064.9577,229336.0779,1325234.569,15.6
+61846,460617.3935,230874.4457,1331477.699,15.6
+61847,463529.0067,230631.7376,1337723.704,15.6
+61848,460469.112,232140.5377,1344764.833,15.6
+61849,460701.7528,232716.9444,1349306.158,15.6
+61850,460451.6055,233366.096,1354917.82,15.6
+61851,459400.1408,234389.839,2157116.844,15.6
+61852,459288.4087,235161.8743,1371235.107,15.6
+61853,76260.99092,236078.0766,1720877.427,15.6
+61854,76498.60518,236852.3375,1351247.86,15.6
+61855,816986.269,237843.4824,1355942.421,15.6
+61856,475126.6254,238037.3573,1362274.865,15.6
+61857,569397.3283,239553.0886,1545777.279,15.6
+61858,405954.033,239954.6376,1357488.518,15.6
+61859,489391.4334,240984.0287,1362857.789,15.6
+61860,473964.9796,241586.103,311346.0095,15.6
+61861,457999.7992,240513.4855,270611.0538,15.6
+61862,460219.7184,238377.8146,287144.8702,15.6
+61863,458994.9888,237587.3656,2568352.941,15.6
+61864,460271.3533,49944.10236,1343255.474,15.6
+61865,459774.4338,49735.41832,1161183.168,15.6
+61866,459956.6991,49659.61102,1489221.1,15.6
+61867,461190.4776,987478.5259,1335636.523,15.6
+61868,460943.22,49636.70513,1330402.089,15.6
+61869,461844.9568,235445.2233,1164000.854,15.6
+61870,461569.6357,264204.4785,1169315.457,15.6
+61871,463399.4735,210854.3259,1474962.615,15.6
+61872,462329.553,229385.7911,1384473.158,15.6
+61873,459365.6393,222708.8348,1337732.899,15.6
+61874,459162.5822,221119.5001,1369737.564,15.6
+61875,459838.0336,219759.6193,2162942.8,15.6
+61876,460371.0184,218110.1493,1380251.642,15.6
+61877,460737.6894,216922.5903,1724587.83,15.6
+61878,461083.7824,214644.0057,1358261.025,15.6
+61879,461772.5115,213787.033,1364500.992,15.6
+61880,462138.045,211943.1576,1368334.629,15.6
+61881,463195.0907,210114.9551,1373948.736,15.6
+61882,485036.1905,209175.6617,1377342.494,15.6
+61883,464542.2357,206975.3766,1381376.589,15.6
+61884,466182.3999,205932.6771,1384643.226,15.6
+61885,76833.58291,204210.2941,1388420.658,15.6
+61886,79763.65818,202502.0324,1391457.582,15.6
+61887,816817.0852,201322.1551,1393593.28,15.6
+61888,495007.8603,199134.1348,1397414.115,15.6
+61889,590145.9623,198210.2772,1400448.63,15.6
+61890,431472.2999,196448.3694,1473400.903,15.6
+61891,496580.0827,194633.0812,1473129.54,15.6
+61892,493053.8432,193300.4448,1393987.517,15.6
+61893,478421.2556,191520.0158,402493.6149,15.6
+61894,478176.6625,189855.9379,258385.749,15.6
+61895,476635.708,188518.5422,290910.605,15.6
+61896,477874.2661,187308.6255,3571149.583,15.6
+61897,478107.9819,44658.60407,1357878.689,15.6
+61898,477889.7943,44317.32313,1149778.272,15.6
+61899,478700.4617,4.006715375,1405478.421,15.6
+61900,479479.9337,0,2115904.114,15.6
+61901,479654.3634,109250.5651,1167908.271,15.6
+61902,480354.7527,558915.9483,1500166.231,15.6
+61903,480686.8981,49681.37917,1457587.055,15.6
+61904,481180.0716,118842.0819,1371077.552,15.6
+61905,482267.4882,215709.3343,1327040.353,15.6
+61906,482583.2071,169118.1094,1360005.936,15.6
+61907,482872.2431,167851.5075,1365491.367,15.6
+61908,483159.7022,167621.8503,1367150.979,15.6
+61909,484469.0415,534436.736,1372724.023,15.6
+61910,484309.6009,164256.4068,1378348.102,15.6
+61911,485305.8701,162725.9279,1382776.892,15.6
+61912,819438.9069,161357.9336,1387391.675,15.6
+61913,480734.3622,159067.1508,1390631.287,15.6
+61914,481060.9018,157826.6652,1396419.53,15.6
+61915,481280.1873,155932.7579,1477966.389,15.6
+61916,482984.3424,154072.6308,1393737.875,15.6
+61917,75409.56895,151862.2427,1398736.923,15.6
+61918,75470.25597,150637.8655,1612439.209,15.6
+61919,836949.3093,147992.4724,1386978.785,15.6
+61920,519564.9894,145654.2621,1390722.864,15.6
+61921,607072.9644,142180.6491,1385322.53,15.6
+61922,466032.0965,144302.2022,1552030.369,15.6
+61923,493832.2692,145746.5058,1383095.949,15.6
+61924,508408.3433,147466.0568,1390657.327,15.6
+61925,491942.9075,149445.9047,1396870.905,15.6
+61926,487959.2211,150931.696,278338.7054,15.6
+61927,489488.9688,152474.4251,292686.6485,15.6
+61928,486608.3474,154564.7817,286337.4221,15.6
+61929,486402.688,155639.4034,2625554.914,15.6
+61930,486932.9329,157947.6468,1411217.764,15.6
+61931,485398.1857,118788.4119,1185118.85,15.6
+61932,485628.196,0,2236368.102,15.6
+61933,485402.3609,99338.98189,1218094.104,15.6
+61934,484899.9468,19044.55883,1536046.283,15.6
+61935,485361.3981,40142.51189,1495948.148,15.6
+61936,483888.2779,45255.94387,1415828.357,15.6
+61937,485120.0957,41541.65398,1371451.431,15.6
+61938,483974.3284,547924.6126,1573204.66,15.6
+61939,483264.4154,42743.54842,1398017.027,15.6
+61940,484531.2307,136025.2908,1401953.127,15.6
+61941,483095.6369,210142.9672,1410586.279,15.6
+61942,483546.107,176622.5796,2408038.338,15.6
+61943,482873.4876,177866.7048,1398047.334,15.6
+61944,482990.221,180977.6969,1407684.462,15.6
+61945,482935.7308,182622.1615,1416516.799,15.6
+61946,482206.1135,552410.6222,1428593.708,15.6
+61947,482098.3892,185781.6037,1432048.125,15.6
+61948,482302.0703,187427.3927,1438837.759,15.6
+61949,74066.67826,189332.6113,1511559.003,15.6
+61950,74045.94098,190955.0331,1522577.46,15.6
+61951,812626.1755,192204.0449,1446133.019,15.6
+61952,502407.2843,194464.4653,1452584.504,15.6
+61953,932230.0629,195122.0728,1459515.09,15.6
+61954,452237.9721,198106.7253,1465742.532,15.6
+61955,485968.9036,199020.2337,1471085.429,15.6
+61956,521594.8791,200777.5539,1476917.244,15.6
+61957,481282.576,202145.8985,1481796.891,15.6
+61958,480702.042,204449.9376,1486487.408,15.6
+61959,484970.2153,205651.039,980089.3078,15.6
+61960,482631.586,207630.04,196047.5711,15.6
+61961,481483.0943,208949.2996,543108.9977,15.6
+61962,481755.5803,210572.2636,2707775.444,15.6
+61963,481175.097,166327.2339,1573863.168,15.6
+61964,481227.3951,166749.3852,1225759.462,15.6
+61965,480564.154,285907.6839,1525113.4,15.6
+61966,480325.6438,198206.3175,1283416.351,15.6
+61967,480365.6235,212745.277,1571857.425,15.6
+61968,479379.2574,53506.2831,1503947.149,15.6
+61969,480196.3913,47469.41206,1453195.371,15.6
+61970,479533.9194,48192.6789,1486246.842,15.6
+61971,479072.5328,48227.66814,1493245.828,15.6
+61972,478923.9576,735780.2406,1496568.009,15.6
+61973,478787.2231,120050.9484,1507484.105,15.6
+61974,478427.8511,105309.9241,1509333.134,15.6
+61975,478794.8672,320441.5474,1514541.779,15.6
+61976,478080.4057,221919.4108,1585286.955,15.6
+61977,477832.5654,236233.642,1594864.439,15.6
+61978,477818.2844,238802.728,1518707.442,15.6
+61979,477511.4411,240285.5447,1523772.598,15.6
+61980,477266.3112,242029.0005,1530122.46,15.6
+61981,79774.46918,240624.5761,1529997.268,15.6
+61982,79747.19207,239925.2154,1532573.354,15.6
+61983,818603.5138,605859.3158,1534462.418,15.6
+61984,501652.1134,237021.8147,1536460.312,15.6
+61985,598332.1121,235990.3106,1538116.396,15.6
+61986,448324.1267,234747.3085,2322116.837,15.6
+61987,487902.3367,232802.5731,1550828.766,15.6
+61988,498000.5177,232441.4115,1876893.183,15.6
+61989,482469.5467,230556.5778,2492520.543,15.6
+61990,479260.1345,229847.8535,1495269.269,15.6
+61991,482754.7635,228494.4968,1501010.106,15.6
+61992,478952.4784,226915.0623,272696.2426,15.6
+61993,506164.9828,226386.4905,296293.2999,15.6
+61994,820605.0659,224072.9936,287397.5262,15.6
+61995,485926.1681,175704.5024,2664682.8,15.6
+61996,488831.0589,173913.4417,1624270.062,15.6
+61997,489971.4343,293782.424,1024618.919,15.6
+61998,489904.1636,200278.6848,1376233.613,15.6
+61999,489898.2912,211850.727,1615342.974,15.6
+62000,491151.1111,222916.4018,1516148.539,15.6
+62001,491549.3392,215491.8644,1543373.159,15.6
+62002,492173.3877,47282.24838,1490744.918,15.6
+62003,492240.1607,47156.30107,1497524.611,15.6
+62004,493810.4398,47011.98722,1500777.539,15.6
+62005,493750.3978,46959.04899,1505945.782,15.6
+62006,494807.3271,686728.3395,1511614.655,15.6
+62007,494569.9621,83599.28554,1517015.516,15.6
+62008,495988.2115,104892.407,1520316.583,15.6
+62009,496085.0377,279932.874,1525354.608,15.6
+62010,497511.6046,194339.4661,2302139.059,15.6
+62011,496846.8361,203116.15,1542942.936,15.6
+62012,498890.781,201928.4594,1862823.954,15.6
+62013,83241.41247,201106.6644,1514525,15.6
+62014,83321.32851,199816.6743,1519248.975,15.6
+62015,819332.9026,198420.6238,1523997.529,15.6
+62016,649661.4222,196765.5697,1528302.092,15.6
+62017,573307.9555,195719.1267,1530300.372,15.6
+62018,490478.4418,194224.5942,1535661.277,15.6
+62019,504664.2004,193260.9965,1536765.125,15.6
+62020,520038.815,559222.6823,1540819.057,15.6
+62021,507976.6593,190593.0293,1541849.402,15.6
+62022,505060.6183,188696.4769,1545708.972,15.6
+62023,500215.4646,187509.1716,1546905.984,15.6
+62024,500415.9077,186338.886,1551542.572,15.6
+62025,501037.4522,184844.0735,296001.933,15.6
+62026,501279.1303,183390.8483,201227.3749,15.6
+62027,501851.6221,138276.9392,465779.9593,15.6
+62028,502206.6889,137390.0604,2725265.998,15.6
+62029,530900.7475,245101.4784,1485249.528,15.6
+62030,504033.4858,155051.8846,1029984.458,15.6
+62031,507666.1421,173475.865,1727636.348,15.6
+62032,514261.4666,180378.9544,1555111.39,15.6
+62033,513075.6235,173637.3767,1480610.824,15.6
+62034,512041.5017,172371.1643,2274589.608,15.6
+62035,513849.2403,171384.0333,1530543.402,15.6
+62036,853685.6932,42421.82763,2789353.28,15.6
+62037,514772.1832,42411.3093,1476687.286,15.6
+62038,515521.6157,42085.21248,1486646.822,15.6
+62039,516310.4819,41875.62898,1494208.97,15.6
+62040,516316.5962,42006.78762,1502170.081,15.6
+62041,517218.858,41686.81355,1510425.42,15.6
+62042,517709.9799,554772.5193,1517727.885,15.6
+62043,517248.4265,41653.29543,1523976.849,15.6
+62044,518205.478,87546.77407,1531950.585,15.6
+62045,86223.70769,214546.9557,1537433.83,15.6
+62046,7413.289984,159457.9526,1542094.189,15.6
+62047,935775.7965,160831.7788,1547743.621,15.6
+62048,643007.328,162794.8691,1555512.03,15.6
+62049,572657.2618,163426.7342,1639433.73,15.6
+62050,566898.4728,162969.702,1552868.686,15.6
+62051,487007.6243,163237.0853,1556963.172,15.6
+62052,548069.8558,162847.2465,1562253.543,15.6
+62053,525654.7861,163237.9122,1564810.847,15.6
+62054,524365.045,163262.0245,1570161.877,15.6
+62055,524033.4231,162811.7416,1572097.672,15.6
+62056,524308.1365,163626.1034,1577298.184,15.6
+62057,524733.3863,530864.8097,1579630.614,15.6
+62058,525039.5485,163625.4285,980122.5817,15.6
+62059,517500.2668,121455.8999,208240.3758,15.6
+62060,517820.5626,121762.296,542988.3442,15.6
+62061,517984.6434,224931.9883,2581514.912,15.6
+62062,518210.8345,138632.2062,1562791.906,15.6
+62063,518962.7355,162768.8164,1361126.94,15.6
+62064,548573.3829,167128.175,1733148.107,15.6
+62065,519901.0071,163525.7101,1527301.936,15.6
+62066,522770.6058,163062.7561,1548919.759,15.6
+62067,531421.8925,164394.3673,1561067.702,15.6
+62068,527469.7671,163573.3515,1562446.057,15.6
+62069,528017.6419,163709.5676,1568513.662,15.6
+62070,528692.552,164026.1826,1573961.269,15.6
+62071,528800.1652,163893.381,1579012.364,15.6
+62072,529179.1431,41815.67605,1587923.664,15.6
+62073,529587.8306,41849.65078,1588210.331,15.6
+62074,529612.3644,41901.21474,1591894.277,15.6
+62075,530643.9509,41817.10206,1654677.462,15.6
+62076,529995.8646,41828.85079,1686362.438,15.6
+62077,7870.511329,41990.21544,1587685.356,15.6
+62078,463737.9135,555156.1904,1593139.714,15.6
+62079,900404.4924,41903.01142,1597900.673,15.6
+62080,666293.3464,89430.30325,1600837.489,15.6
+62081,572379.8754,216119.8858,1606316.81,15.6
+62082,588767.95,161428.0553,1608208.334,15.6
+62083,508464.5511,162461.9271,1613220.711,15.6
+62084,548537.9261,164990.5493,2583276.553,15.6
+62085,539972.1681,164866.1247,2349773.819,15.6
+62086,535829.5917,164857.6616,1605930.216,15.6
+62087,536487.4841,165214.829,1915470.527,15.6
+62088,534857.7823,164991.8475,1581825.676,15.6
+62089,536696.6064,164864.7414,1588399.107,15.6
+62090,536146.3731,165008.9327,1595876.346,15.6
+62091,537225.5564,123407.8212,281171.6842,15.6
+62092,536504.5808,123000.2854,304663.9642,15.6
+62093,537508.7341,228058.3987,2474135.628,15.6
+62094,529416.4787,507403.4765,1297751.02,15.6
+62095,529978.1784,164841.5174,1569960.727,15.6
+62096,530011.3024,168932.0681,1694031.171,15.6
+62097,530317.3395,165021.1399,1566415.171,15.6
+62098,530874.3886,165362.0364,1586656.858,15.6
+62099,563309.6272,165166.3016,1606329.309,15.6
+62100,531575.6332,165788.5736,1603249.9,15.6
+62101,535421.0916,165617.6605,1613793.481,15.6
+62102,544738.3183,166232.8802,1682520.462,15.6
+62103,541791.1023,165684.535,1697623.788,15.6
+62104,546250.2475,166594.2511,1628389.426,15.6
+62105,546458.4135,166295.667,1638188.924,15.6
+62106,549419.9501,166881.7118,1648223.648,15.6
+62107,551947.5994,166750.4852,1656598.955,15.6
+62108,469543.7163,42168.642,1666184.994,15.6
+62109,125954.924,42406.82059,1673985.664,15.6
+62110,92775.63374,42190.53091,1681670.015,15.6
+62111,903760.0678,42425.90311,1690238.23,15.6
+62112,722446.7708,42391.33061,1697030.52,15.6
+62113,562632.2834,42355.4152,2468050.296,15.6
+62114,668781.4835,578908.0159,1725101.983,15.6
+62115,557058.0401,42400.90802,2031772.466,15.6
+62116,566926.7431,83641.32649,1700006.544,15.6
+62117,585255.9441,231563.6245,1709523.584,15.6
+62118,576089.9087,162098.8069,1717885.766,15.6
+62119,578468.2295,167856.2024,1725207.301,15.6
+62120,579725.2715,169930.3043,1734268.243,15.6
+62121,921456.9585,170240.2015,1741081.358,15.6
+62122,584143.4444,170226.3406,1749315.515,15.6
+62123,585773.938,127641.3761,313290.6548,15.6
+62124,587634.2305,128168.0512,310721.4757,15.6
+62125,590236.8978,234968.8154,2587449.539,15.6
+62126,591951.5398,145269.905,1669432.847,15.6
+62127,594235.043,170396.5776,1582376.026,15.6
+62128,595699.3467,175161.4357,1920871.593,15.6
+62129,587880.9498,171200.8526,1742188.687,15.6
+62130,589628.2137,171825.9681,1812997.441,15.6
+62131,591514.4325,540306.3614,1830747.028,15.6
+62132,594020.1443,172092.887,2670073.233,15.6
+62133,633067.8338,172588.6693,1747009.965,15.6
+62134,599504.3964,172849.7795,1762695.78,15.6
+62135,606099.7852,172826.9987,1773929.783,15.6
+62136,615427.9582,173350.2561,1786976.689,15.6
+62137,613767.3847,172999.9266,1797803.938,15.6
+62138,616944.968,173707.4015,1808709.981,15.6
+62139,529227.5775,173572.2974,1817951.875,15.6
+62140,650424.5423,173808.9112,2574205.328,15.6
+62141,105696.826,174372.0786,1851712.494,15.6
+62142,94860.85962,174359.9509,2142430.115,15.6
+62143,917174.7708,174526.7196,1830139.857,15.6
+62144,838089.0744,43370.0357,1838664.621,15.6
+62145,544335.9614,43164.79725,1849955.83,15.6
+62146,733828.0898,43440.63403,1859993.179,15.6
+62147,691001.0768,43229.01852,1868110.701,15.6
+62148,638666.3205,43405.55894,1875650.86,15.6
+62149,663652.4189,583502.2706,1885044.111,15.6
+62150,655906.3886,43453.49829,1891521.071,15.6
+62151,637288.6341,87841.7034,1898989.842,15.6
+62152,652045.7544,247756.5606,1906959.962,15.6
+62153,649326.9979,164244.4614,1913824.913,15.6
+62154,650823.6493,176743.9145,1922017.36,15.6
+62155,654181.5423,133833.463,315093.85,15.6
+62156,654553.4543,134315.5554,327335.7994,15.6
+62157,657194.9814,244513.0159,2656442.894,15.6
+62158,658889.4015,151539.7364,1990212.986,15.6
+62159,661426.9505,177183.5034,1820475.092,15.6
+62160,662753.0698,182619.3148,1946161.342,17.8
+62161,2323470.713,1370830.93,4770188.057,17.8
+62162,2015391.054,1111822.862,3352496.827,17.8
+62163,1043090.318,354919.2256,3149005.786,17.8
+62164,1050824.522,605240.0772,3053264.175,17.8
+62165,1201711.014,481794.0016,2833710.384,17.8
+62166,1169859.291,516180.3248,2974617.96,17.8
+62167,1061127.757,485067.6857,3629851.999,17.8
+62168,1036183.991,852950.4571,2909650.994,17.8
+62169,1048017.387,482950.1809,3151689.376,17.8
+62170,899107.3739,481859.5761,2832715.235,17.8
+62171,1111560.821,480888.5771,2788085.639,17.8
+62172,1020340.052,481055.6491,2811629.169,17.8
+62173,188758.5152,480098.8749,2941664.912,17.8
+62174,1072521.058,479553.524,2776453.718,17.8
+62175,1169405.044,479714.2649,2780802.271,17.8
+62176,1059714.241,478298.7327,2782032.401,17.8
+62177,977982.1891,478178.5785,2907427.512,17.8
+62178,1053068.714,478622.4146,2757594.954,17.8
+62179,1029595.63,120401.6139,2757681.253,17.8
+62180,1025612.892,120052.2565,2764047.044,17.8
+62181,1025718.475,1040960.301,3757263.893,17.8
+62182,1023874.498,318763.1734,2693697.808,17.8
+62183,1022529.358,484611.2309,2701633.269,17.8
+62184,1020441.935,490941.1935,2712950.414,17.8
+62185,1019532.212,481979.9151,2836564.075,17.8
+62186,1019044.627,478353.1849,2695289.641,17.8
+62187,1016685.951,370599.1238,609357.7508,17.8
+62188,1016512.961,370039.8719,485724.97,17.8
+62189,1013631.118,605891.6661,2744250.111,17.8
+62190,1014149.516,482549.7991,3061012.215,17.8
+62191,1012036.844,450791.6077,2594635.734,17.8
+62192,1011945.219,486294.5152,2527800.61,17.8
+62193,1009658.531,467191.6457,2671613.945,17.8
+62194,975041.9076,472456.2205,2546749.23,17.8
+62195,975011.2314,471728.183,2779902.865,17.8
+62196,1045173.67,471393.4841,2677348.788,17.8
+62197,1014423.589,471723.0698,2678548.096,17.8
+62198,997491.0191,472513.7784,2668538.16,17.8
+62199,1005261.385,499079.0741,3420353.971,17.8
+62200,1002887.183,475097.8928,2705475.925,17.8
+62201,866336.3865,479401.1502,2960852.34,17.8
+62202,1058785.966,487984.8914,2642506.185,17.8
+62203,981271.6402,484238.4566,2647465.447,17.8
+62204,178778.4995,485117.5659,2649452.008,17.8
+62205,1041172.903,853500.7182,2790637.409,17.8
+62206,1162039.39,486946.8526,2627721.526,17.8
+62207,957124.8593,486398.1196,2631062.209,17.8
+62208,984430.828,487597.7015,2632679.492,17.8
+62209,1347673.177,487993.8148,2768141.565,17.8
+62210,994900.3786,488657.7131,2611267.841,17.8
+62211,995094.2351,116013.7608,2620471.226,17.8
+62212,992067.9387,116134.0456,2619737.789,17.8
+62213,991716.5027,1091582.207,2751092.496,17.8
+62214,991567.9295,311627.2072,2601512.485,17.8
+62215,989281.1439,525074.5028,2606248.395,17.8
+62216,991447.9633,491294.2378,2608567.781,17.8
+62217,987247.83,501654.8702,2611806.794,17.8
+62218,987833.8869,494184.0094,2610036.382,17.8
+62219,987970.2525,390930.9682,465386.1671,17.8
+62220,985949.571,391173.7493,178293.2529,20
+62221,2318074.307,2605327.466,4779129.453,20
+62222,2325590.92,2621944.548,4709616.38,20
+62223,2326110.848,1857861.724,4687916.125,20
+62224,2321512.313,852365.224,4661824.178,20
+62225,1270249.127,968973.9513,3870291.228,20
+62226,1692911.081,1331107.36,3865581.02,20
+62227,1668257.805,1164054.771,4223212.701,20
+62228,1635356.328,1141196.215,4044671.881,20
+62229,1587744.734,1069955.877,3925510.317,20
+62230,1587557.548,1093428.942,4389979.684,20
+62231,1586631.302,1161462.822,3901991.631,20
+62232,1391718.375,1089936.339,3860733.102,20
+62233,1593834.911,1109670.789,3837117.597,20
+62234,1596420.453,1103472.11,3816235.144,20
+62235,274787.5027,1098671.784,3792871.373,20
+62236,1877735.143,1097414.961,3782338.28,20
+62237,1382982.845,1093936.098,3757524.037,20
+62238,1596463.616,1090959.277,3750159.146,20
+62239,1552559.668,1087839.021,3736324.292,20
+62240,1550599.222,1086485.05,3723078.596,20
+62241,1545178.962,1083424.823,3710439.981,20
+62242,1544306.626,1448769.992,3703000.527,20
+62243,1541491.903,202539.4233,3690717.447,20
+62244,1538500.292,1475246.111,3680041.235,20
+62245,1535774.047,964251.4284,3674291.03,20
+62246,1533739.875,1074476.597,3663902.202,20
+62247,1531836.886,1081810.449,3663524.792,20
+62248,1529268.064,1070092.039,3654546.925,20
+62249,1525744.615,1068044.121,3649528.783,20
+62250,1526972.853,1065193.949,3645251.242,20
+62251,1521520.689,900658.7969,218091.7589,20
+62252,1522645.983,1133357.267,4315566.197,20
+62253,1856829.782,1123315.042,3570166.79,20
+62254,1518695.784,1020113.278,3683239.602,20
+62255,1515328.685,1070502.375,3580999.121,20
+62256,1514810.156,1058658.476,3659625.73,20
+62257,1456364.985,1056148.65,3491593.814,20
+62258,1454544.984,1054933.503,3451929.59,20
+62259,1526586.662,1053675.825,3688349.579,20
+62260,1527370.542,1053073.616,3632959.403,20
+62261,1511693.545,1018281.044,3579297.336,20
+62262,1505993.743,1017944.165,3604067.223,20
+62263,1336690.412,1015692.149,3604669.568,20
+62264,1537786.559,1103160.586,3595072.993,20
+62265,1545472.429,1034761.506,3599698.119,20
+62266,211802.1773,1044296.054,3591203.25,20
+62267,1763418.488,1048767.642,3590891.033,20
+62268,1352517.308,1043142.571,3593755.586,20
+62269,1529005.36,1041674.233,3584806.215,20
+62270,1496410.936,1039776.408,3588298.753,20
+62271,1492926.311,1041821.061,3582698.265,20
+62272,1494307.753,1035769.864,3582057.361,20
+62273,1492378.948,1039590.56,3577268.418,20
+62274,1492073.076,189292.4156,3580783.117,20
+62275,1488702.086,188152.3444,3575083.863,20
+62276,1489896.134,1379343.15,3575344.205,20
+62277,1488130.874,1276074.059,3569921.152,20
+62278,1487917.68,833944.0539,3573198.445,20
+62279,1485891.955,1469732.017,3565978.738,20
+62280,1485726.026,1040774.544,4283550.197,21
+62281,2352347.103,2614700.869,4719420.628,21
+62282,2357021.212,2237690.261,4680783.881,21
+62283,2084052.95,924982.5161,4633451.93,21
+62284,1340401.22,1327752.739,3575108.172,21
+62285,1827948.996,1370700.339,4276399.927,21
+62286,1634966.41,1247725.132,4143058.09,21
+62287,1625158.71,1265605.836,4086578.645,21
+62288,1605057.952,1257654.071,4040136.409,21
+62289,1605166.222,1247046.106,3998057.761,21
+62290,1595777.934,1246363.294,3964885.548,21
+62291,1590299.544,1243672.506,3945513.188,21
+62292,1584450.726,1238078.222,3914580.796,21
+62293,1581868.949,1235283.313,3901085.223,21
+62294,1571212.783,1232417.638,3884772.323,21
+62295,1570554.638,1227856.653,3871542.41,21
+62296,1565677.335,1227133.285,3858404.237,21
+62297,1559020.694,1223054.552,3848323.799,21
+62298,1555418.551,1220332.07,3839715.267,21
+62299,1553396.246,1217152.624,3824080.824,21
+62300,1544306.229,1215419.953,3820328.456,21
+62301,1544871.42,1211667.268,3812035.175,21
+62302,1539352.987,1211432.855,3805617.962,21
+62303,1533900.618,1205894.916,3799090.085,21
+62304,1533717.701,1206109.474,3796722.358,21
+62305,1527239.506,1202197.88,3783166.115,21
+62306,1524279.153,1200487.385,3781347.228,21
+62307,1521104.949,1198397.612,3780618.605,21
+62308,1519062.144,1196612.02,3766893.462,21
+62309,1512796.992,1194778.784,3765182.85,21
+62310,1512009.573,1190546.486,3761144.466,21
+62311,1506838.597,1190916.671,3757067.62,21
+62312,1503413.687,1188780.493,3811464.547,21
+62313,1502188.899,1186318.477,3728844.314,21
+62314,1497650.6,1183835.544,3730333.51,21
+62315,1497505.179,1183491.926,3726550.355,21
+62316,1491587.358,1179139.208,3725376.182,21
+62317,1488562.914,1180718.04,3722948.405,21
+62318,1488352.845,1176736.047,3719446.247,21
+62319,1484052.105,1176405.78,3715887.15,21
+62320,1482522.45,1174846.108,3715820.414,21
+62321,1478540.395,1171697.469,3707741.556,21
+62322,1476434.72,1171187.005,4458327.123,21
+62323,1473041.459,1170173.729,3732898.263,21
+62324,1473698.252,1166869.181,3954849.699,21
+62325,1466949.866,1165330.204,3663821.017,21
+62326,1467560.301,1165094.682,3659838.864,21
+62327,1463615.872,1159608.555,3672097.98,21
+62328,1462375.434,1158957.976,3809319.356,21
+62329,1460222.09,1156126.209,3641792.89,21
+62330,1457679.231,1156127.435,3643553.386,21
+62331,1454577.208,1152211.954,3651176.126,21
+62332,1455188.904,1151204.263,3784502.818,21
+62333,1450711.202,1150299.636,3624807.135,21
+62334,1449703.647,1148421.156,3634945.387,21
+62335,1446204.687,1144540.473,3637942.382,21
+62336,1446036.475,1146128.858,3768074.657,21
+62337,1444120.365,1142128.802,3612184.276,21
+62338,1439563.006,1141318.276,3623942.172,21
+62339,1440370.076,1137957.141,3626227.02,21
+62340,1437195.394,1138725.371,3631663.796,21
+62341,2138947.726,2112541.2,3572043.222,21
+62342,2132275.632,2104440.424,3566030.519,21
+62343,2127708.359,2102266.487,3564728.283,21
+62344,2126647.831,2097498.074,3566334.706,21
+62345,2123439.474,2095655.814,3560595.754,21
+62346,2121887.907,2090994.812,4319443.04,21
+62347,2118547.795,2089497.878,3587984.648,21
+62348,2117358.504,2087918.512,3845228.842,21
+62349,2113492.503,2082781.042,3506813.038,21
+62350,2113082.623,2082494.635,3514833.524,21
+62351,2110322.027,2079891.159,3518408.63,21
+62352,2108567.753,2074545.091,3523443.093,21
+62353,2106905.929,2075054.769,3524635.529,21
+62354,2104100.647,2071880.147,3528129.859,21
+62355,2103083.572,2068029.068,3523866.452,21
+62356,2098467.02,2067836.607,3524255.129,21
+62357,2100476.503,2063209.52,3522011.512,21
+62358,2097346.008,2062969.557,3525441.873,21
+62359,2093690.125,2058244.066,3515113.655,21
+62360,2093515.934,2058110.635,3522736.52,21
+62361,2092296.736,2054327.801,3514634.838,21
+62362,2088106.601,2052799.66,3511323.376,21
+62363,2086979.047,2050808.532,3560767.355,21
+62364,2086711.766,2048391.401,3739631.242,21
+62365,2082893.227,2045697.72,3441200.63,21
+62366,2081448.957,2044024.18,3451460.614,21
+62367,2081824.212,2041990.352,3461525.646,21
+62368,2077297.27,2038546.567,3627209.134,21
+62369,2076801.245,2038668.903,3434053.33,21
+62370,2076422.941,2034208.275,3431713.151,21
+62371,2072031.759,2033036.519,3429158.794,21
+62372,2073069.187,2030842.064,3569161.132,21
+62373,2071285.333,2029348.439,3406741.65,21
+62374,2066518.537,2025621.816,3415428.95,21
+62375,2068057.253,2025480.024,3416686.885,21
+62376,2065859.661,2023232.079,3546983.176,21
+62377,2062923.122,2019869.765,3389561.311,21
+62378,2063037.186,2017966.9,3397457.648,21
+62379,2060029.052,2017107.686,3394294.608,21
+62380,2059808.268,2014667.948,3397534.614,21
+62381,2057419.994,2011911.125,3392071.051,21
+62382,2056698.786,2010590.794,3397188.791,21
+62383,2054498.841,2007304.675,3391627.365,21
+62384,2051740.591,2006603.809,3382491.02,21
+62385,2053338.574,2004588.073,3388252.326,21
+62386,2048994.512,2001335.404,4141553.173,21
+62387,2048485.624,1999508.961,3397975.014,21
+62388,2047926.863,1998104.665,3669857.001,21
+62389,2043884.875,1995685.211,3316362.298,21
+62390,2046492.754,1993947.668,3327610.312,21
+62391,2040602.938,1991694.976,3324237.225,21
+62392,2042130.785,1989118.907,3330745.887,21
+62393,2039721.004,1988374.215,3326950.797,21
+62394,2037229.783,1985025.063,3324087.826,21
+62395,2038029.504,1984150.597,3325600.602,21
+62396,2034504.29,1980801.173,3321817.293,21
+62397,2034041.884,1979943.07,3317788.01,21
+62398,2032998.592,1975978.735,3316634.245,21
+62399,2030893.152,1975524.559,3310655.792,21
+62400,2029615.686,1971246.678,3313633.905,21
+62401,1824474.842,1737330.568,2852719.442,21
+62402,1806039.513,1720550.598,2807170.169,21
+62403,1801288.558,1715869.13,2789310.728,21
+62404,1796112.695,1710655.073,2825809.755,21
+62405,1791458.585,1707057.432,2706100.841,21
+62406,1786052.847,1702252.652,2694803.053,21
+62407,2216721.159,1698902.38,2684207.041,21
+62408,1778265.403,1695363.196,2674686.386,21
+62409,1775026.655,1691511.758,2662811.357,21
+62410,1771163.068,1689152.703,2652713.712,21
+62411,1767350.965,1684830.723,2639445.335,21
+62412,1764736.025,1683640.678,2630108.778,21
+62413,1759903.134,1678411.664,2910003.198,21
+62414,1757595.067,2102212.958,2555989.878,21
+62415,1752921.022,1674116.986,2559286.727,21
+62416,1751787.836,1670378.276,2547113.866,21
+62417,1746388.064,1668353.85,2540387.914,21
+62418,1744842.133,1666215.247,2531309.349,21
+62419,1741848.55,1662254.096,2526139.301,21
+62420,1737987.802,1661170.691,2513550.908,21
+62421,1734865.437,1657988.678,2503082.884,21
+62422,1733715.429,1654393.367,2497149.719,21
+62423,1729512.318,1654266.067,3264241.473,21
+62424,1727143.151,1650316.957,2489199.499,21
+62425,1723713.514,1648465.493,2788781.479,21
+62426,1721618.406,1645758.94,2417198.374,21
+62427,1718537.071,1643425.256,2409975.136,21
+62428,1715825.906,1641750.115,2406748.398,21
+62429,1713088.662,1639968.532,2396182.249,21
+62430,1708863.935,1636424.509,2392483.339,21
+62431,1703873.903,1634650.156,2383493.458,21
+62432,1701168.658,1634151.14,2375121.398,21
+62433,1697584.773,1629384.993,2365835.972,21
+62434,1694834.29,1629733.719,2361005.925,21
+62435,1691747.335,1626033.255,2349678.768,21
+62436,1687250.043,1624936.35,2339850.864,21
+62437,1686173.97,1622283.06,2335816.976,21
+62438,1681819.695,1621586.196,2322288.115,21
+62439,1678347.142,1618241.515,2316548.088,21
+62440,1677415.017,1617899.614,2303201.746,21
+62441,1673022.68,1614288.756,2297705.108,21
+62442,1669988.288,1614651.481,2286060.523,21
+62443,1666828.317,1610020.251,2277802.697,21
+62444,1664494.059,1611079.679,2585875.572,21
+62445,1661739.718,1607688.853,2215908.483,21
+62446,1658121.733,1606891.296,2212774.085,21
+62447,1654724.979,1603729.565,2208425.006,21
+62448,1653350.949,1604027.275,2204784.302,21
+62449,1650013.786,1600282.358,2196445.959,21
+62450,1647774.942,1599256.515,2191827.503,21
+62451,1643832.629,1597753.794,2185029.785,21
+62452,1641376.946,1595258.557,2176999.494,21
+62453,1640275.046,1594782.32,2170208.949,21
+62454,1634863.46,1592300.064,2490571.896,21
+62455,1633489.141,1590014.429,2115318.196,21
+62456,1630297.892,1588243.585,2111108.457,21
+62457,1628613.39,1588446.714,2110113.936,21
+62458,1620358.707,1583504.655,2106158.664,21
+62459,1619988.508,1584949.107,2098931.513,21
+62460,1614854.158,1580164.297,2095073.716,21
+62461,1613708.327,1581257.076,2088457.768,21
+62462,1608138.763,1578779.063,2082349.336,21
+62463,1605360.592,1577357.122,2073136.303,21
+62464,1603318.849,1576752.65,2398811.237,21
+62465,1599997.296,1575032.165,2019179.686,21
+62466,1596268.924,1574071.22,2017964.022,21
+62467,1595364.427,1573348.652,2013003.497,21
+62468,1589763.047,1570110.388,2007487.265,21
+62469,1589789.312,1571313.044,2002868.869,21
+62470,1583712.025,1530288.86,1997373.251,21
+62471,1583661.36,1523516.395,1991683.455,21
+62472,1578738.47,1517216.641,1983353.482,21
+62473,1577684.123,1514260.729,1979171.064,21
+62474,1573100.901,1509624.787,2310499.661,21
+62475,1571541.482,1506643.22,1925343.909,21
+62476,1569687.926,1500922.23,1923230.607,21
+62477,1564464.763,1498343.343,1919433.217,21
+62478,1563839.368,1493839.192,1914255.113,21
+62479,1559894.919,1490470.496,1908523.243,21
+62480,1556851.968,1486232.447,1902390.869,21
+62481,1555389.198,1481447.746,1898443.475,21
+62482,1552049.718,1479022.377,1891783.313,21
+62483,1549417.548,1474255.111,1883008.155,21
+62484,1547241.594,1471222.564,2226484.203,21
+62485,1544215.362,1467016.656,1835359.955,21
+62486,1541363.036,1464074.001,1827717.235,21
+62487,1538807.653,1459701.134,1824003.328,21
+62488,1535699.795,1455342.086,1982726.573,21
+62489,1532795.293,1453747.303,1795930.504,21
+62490,1530428.341,1447516.128,1793306.637,21
+62491,1528448.604,1445277.711,1791204.531,21
+62492,1523968.369,1441663.725,1947572.486,21
+62493,1521359.158,1437377.751,1763790.538,21
+62494,1519639.591,1433966.705,1757903.812,21
+62495,1515740.374,1430774.373,1754330.207,21
+62496,1511420.167,1426255.868,1915941.723,21
+62497,1511081.305,1423262.188,1729510.503,21
+62498,1506222.594,1419626.292,1724272.64,21
+62499,1504575.161,1415259.365,1719980.656,21
+62500,1499283.985,1412934.198,1886498.856,21
+62501,1499285.301,1408528.922,1693885.116,21
+62502,1494921.781,1405417.513,1693099.012,21
+62503,1491438.679,1402125.642,1686230.517,21
+62504,1489315.41,1398046.765,1854164.101,21
+62505,1486655.149,1395559.806,1662762.705,21
+62506,1482108.991,1394156.604,1658625.575,21
+62507,1480996.858,1392105.359,1654446.565,21
+62508,1477256.809,1387534.258,1823236.508,21
+62509,1474102.042,1386182.212,1630500.305,21
+62510,1472495.842,1381250.351,1626940.686,21
+62511,1468149.849,1379907.736,1622119.611,21
+62512,1465363.74,1374103.918,1792950.237,21
+62513,1462672.648,1373510.997,1598975.518,21
+62514,1457605.041,1369644.717,1594314.565,21
+62515,1454055.115,1365369.855,1590832.768,21
+62516,1450129.126,1363333.16,1761833.415,21
+62517,1448115.68,1360353.574,1567912,21
+62518,1445763.62,1356553.843,1562380.787,21
+62519,1441167.701,1354261.664,1561195.071,21
+62520,1438235.666,1350879.711,1732497.885,21
+62521,1437567.966,1349469.44,1538536.337,21
+62522,1432092.89,1346063.111,1537675.156,21
+62523,1430857.448,1342114.688,1532636.531,21
+62524,1424854.426,1338433.423,1712174.836,21
+62525,1424915.53,1335130.961,1513784.969,21
+62526,1420700.394,1332270.988,1513487.845,21
+62527,1416323.953,1328339.51,1511050.74,21
+62528,1414177.199,1323754.298,1687239.318,21
+62529,1410894.766,1320889.828,1492996.503,21
+62530,1407114.08,1316735.584,1487851.761,21
+62531,1404563.318,1312444.409,1487207.994,21
+62532,1401460.959,1310398.606,1666152.537,21
+62533,1399492.435,1305781.468,1467418.37,21
+62534,1393909.784,1303463.169,1465130.238,21
+62535,1392111.879,1298059.442,1464108.43,21
+62536,1388674.458,1295993.451,1642494.989,21
+62537,1385849.435,1292425.534,1445274.514,21
+62538,1382040.205,1288025.917,1442993.35,21
+62539,1380124.534,1285002.084,1440197.565,21
+62540,1376050.751,1282180.725,1620544.788,21
+62541,1374195.287,1277650.626,1422470.04,21
+62542,1369698.152,1274188.848,1419014.516,21
+62543,1367638.655,1272202.956,1417505.189,21
+62544,1364662.064,1267547.591,1598662.7,21
+62545,1360436.235,1264101.771,1399009.895,21
+62546,1359105.925,1261962.165,1396742.418,21
+62547,1354121.45,1256444.881,1394567.015,21
+62548,1352797.937,1257547.024,1575866.609,21
+62549,1349524.648,1250066.013,1378333.897,21
+62550,1346155.8,1250023.794,1372429.666,21
+62551,1342708.967,1244391.146,1371317.599,21
+62552,1341142.762,1242085.989,1554584.459,21
+62553,1337573.596,1239043.709,1354559.7,21
+62554,1335748.989,1236027.548,1351783.89,21
+62555,1331424.894,1232605.265,1350114.213,21
+62556,1331032.831,1230538.497,1533740.311,21
+62557,1326232.826,1225919.148,1332704.739,21
+62558,1325769.295,1225211.776,1332382.61,21
+62559,1321377.011,1220864.933,1325456.117,21
+62560,1318751.277,1218032.533,1515228.265,21
+62561,1317419.916,1215891.783,1310024.949,21
+62562,1313325.069,1213474.103,1309709.809,21
+62563,1311278.5,1207803.167,1305535.57,21
+62564,1309592.47,1206909.641,1495072.596,21
+62565,1305461.205,1203137.902,1290404.003,21
+62566,1304350.631,1200715.363,1286752.729,21
+62567,1302069.816,1197506.168,1287747.156,21
+62568,1298046.254,1194817.389,1473055.191,21
+62569,1295953.771,1191576.743,1272454.653,21
+62570,1294363.744,1189322.864,1269535.077,21
+62571,1290306.245,1185654.853,1268517.31,21
+62572,1289095.359,1183682.883,1458293.392,21
+62573,1286357.047,1180837.297,1252800.853,21
+62574,1283420.486,1179019.008,1253469.964,21
+62575,1281073.413,1175389.611,1252037.34,21
+62576,1279499.889,1171848.887,1439639.953,21
+62577,1275402.489,1170175.876,1238516.859,21
+62578,1275232.189,1166332.255,1233600.686,21
+62579,1270009.265,1164060.459,1236388.752,21
+62580,1273128.784,1164111.995,1423922.4,21
+62581,1270184.095,1155349.751,1215202.891,21
+62582,1267542.159,1152543.267,1212749.455,21
+62583,1267716.16,1147874.139,1206653.276,21
+62584,1266758.214,1145049.04,1397650.887,21
+62585,1264153.456,1143102.306,1189290.868,21
+62586,1264358.925,1140970.111,1186546.28,21
+62587,1263305.908,1138763.872,1183472.158,21
+62588,1262131.857,1136684.587,1374838.282,21
+62589,1261370.474,1134988.584,1166181.542,21
+62590,1259967.426,1132292.088,1171266.675,21
+62591,1259562.465,1130582.131,1159657.224,21
+62592,1257288.079,1128366.694,1351087.148,21
+62593,1255569.24,1126250.786,1144350.466,21
+62594,1253608.036,1124384.853,1156374.457,21
+62595,1252563.025,1121827.698,1136233.274,21
+62596,1250916.952,1121027.334,1328703.861,21
+62597,1251964.905,1117483.194,1119016.112,21
+62598,1248991.977,1116266.74,1145374.298,21
+62599,1247821.977,1113328.406,1112549.018,21
+62600,1247827.425,1112111.904,1306797.491,21
+62601,1246204.959,1109364.745,1094629.442,21
+62602,1244415.512,1107604.615,1133575.422,21
+62603,1244005.746,1105406.931,1087665.183,21
+62604,1243485.698,1103293.511,1284600.826,21
+62605,1241486.13,1101232.741,1075631.958,21
+62606,1241116.011,1099200.977,1117850.9,21
+62607,1240307.295,1097013.528,1066236.687,21
+62608,1237686.464,1095231.876,1263036.036,21
+62609,1238778.364,1092427.211,1052325.712,21
+62610,1235948.541,1091085.648,1105653.342,21
+62611,1235916.849,1088555.694,1042633.729,21
+62612,1235152.102,1086736.943,1242320.736,21
+62613,1233856.152,1084962.439,1027156.079,21
+62614,1234867.155,1082643.058,1094445.577,21
+62615,1232660.477,1080874.11,1022060.621,21
+62616,1231653.947,1078504.357,1215964.839,21
+62617,1233565.527,1076584.034,1007737.173,21
+62618,1229650.837,1074929.177,1080259.691,21
+62619,1231499.322,1072329.663,997912.9003,21
+62620,1229516.075,1070347.903,1197223.201,21
+62621,1230214.591,1068888.228,984996.9395,21
+62622,1228232.815,1066265.105,1068837.682,21
+62623,1229150.576,1064152.829,975865.3487,21
+62624,1226364.204,1062215.87,1175702.874,21
+62625,1228297.095,1060324.355,963423.8388,21
+62626,1226006.109,1058152.338,1053037.116,21
+62627,1226440.368,1055737.283,953465.7336,21
+62628,1226144.4,1054125.696,1153086.554,21
+62629,1226198.117,1052028.854,937337.2591,21
+62630,1228022.218,1049731.636,1036861.846,21
+62631,1225861.78,1047681.57,928003.446,21
+62632,1225740.266,1045643.294,1127897.674,21
+62633,1226284.722,1043247.912,914580.2523,21
+62634,1224675.412,1041704.725,1023649.229,21
+62635,1225658.021,1039117.622,905235.7971,21
+62636,1224658.04,1036887.754,1106003.805,21
+62637,1224575.591,1034684.798,891915.039,21
+62638,1223751.806,1032508.085,1011113.259,21
+62639,1224454.904,1029307.976,883392.5884,21
+62640,1223240.062,1026962.916,1084012.491,21
+62641,1297342.734,1049254.088,993188.3111,21
+62642,1298275.875,1047891.578,1117285.395,21
+62643,1295417.021,1046133.054,988974.8879,21
+62644,1295466.985,1044181.614,1193181.693,21
+62645,1294867.553,1042404.397,981992.2849,21
+62646,1294484.058,1041122.921,1111426.004,21
+62647,1292377.475,1039053.024,978240.0719,21
+62648,1292008.047,1036311.09,1183049.163,21
+62649,1290998.277,1034589.948,968578.3375,21
+62650,1290610.581,1052658.458,1106461.956,21
+62651,1289002.852,1038196.058,964007.096,21
+62652,1288386.384,1040327.746,1168652.078,21
+62653,1288214.506,1037281.513,956626.4062,21
+62654,1286029.772,1035920.349,1097006.467,21
+62655,1285451.583,1032820.407,950459.7896,21
+62656,1284824.022,1030473.001,1154426.206,21
+62657,1284290.34,1028093.696,940572.4547,21
+62658,1281870.622,1026774.731,1089178.699,21
+62659,1283071.798,1022401.03,932553.9689,21
+62660,1280441.308,1021088.823,1140630.158,21
+62661,1280030.978,1019702.101,925588.965,21
+62662,1279543.788,1015412.45,1079190.804,21
+62663,1277872.839,1014479.211,917581.1697,21
+62664,1277414.146,1011598.919,1123753.434,21
+62665,1275807.665,1008952.077,909399.2537,21
+62666,1276321.012,1006106.225,1068542.673,21
+62667,1274785.493,1004233.384,901322.5235,21
+62668,1272857.31,1001792.302,1108870.935,21
+62669,1274034.185,998416.0293,891355.801,21
+62670,1271089.666,997037.1806,1059775.174,21
+62671,1271005.56,994196.7896,883954.8046,21
+62672,1269165.875,992169.4158,1091481.599,21
+62673,1267373.786,988276.6357,875490.1716,21
+62674,1265056.436,987017.2218,1046604.591,21
+62675,1265296.358,984700.5853,869825.4558,21
+62676,1262747.579,980729.6076,1073425.172,21
+62677,1261593.105,979747.6259,858873.2395,21
+62678,1259107.416,976680.7474,1035985.038,21
+62679,1258711.205,974533.6221,851625.3752,21
+62680,1256326.487,971409.3828,848531.7171,21
+62681,1253864.56,970532.4622,848615.2642,21
+62682,1254610.809,966672.3084,847031.5929,21
+62683,1250473.966,964279.8638,847523.4398,21
+62684,1251115.315,962412.2014,843403.1885,21
+62685,1247755.385,959143.9653,844878.8551,21
+62686,1247958.236,956839.5535,1316459.983,21
+62687,1242335.397,955801.8411,823212.6555,21
+62688,1241196.334,952400.3943,1023266.781,21
+62689,1240573.919,950800.2457,813374.3111,21
+62690,1238268.074,948338.4561,815194.7658,21
+62691,1234810.274,946549.2811,812167.5732,21
+62692,1236497.603,943971.7927,811795.9567,21
+62693,1232232.015,942469.4175,810761.866,21
+62694,1231473.924,939753.7334,805893.9732,21
+62695,1229473.265,938509.1047,807464.805,21
+62696,1228020.492,935480.5049,1287412.694,21
+62697,1225565.593,934446.9347,786497.2059,21
+62698,1224245.992,931235.5361,1002963.356,21
+62699,1223106.136,929859.373,776964.8182,21
+62700,1221445.125,927966.635,779767.1646,21
+62701,1143741.243,901820.4454,655434.4046,21
+62702,1141956.379,900229.0181,653328.7156,21
+62703,1140478.318,897340.4484,650843.325,21
+62704,1138347.309,895627.7358,650613.579,21
+62705,1136153.326,893638.0539,647983.1591,21
+62706,1135369.759,891204.4292,1134964.972,21
+62707,1132815.928,889472.6795,632703.7209,21
+62708,1131754.768,887310.1802,870653.9698,21
+62709,1131462.995,884622.992,622953.5927,21
+62710,1127327.774,883420.1534,626401.0332,21
+62711,1126406.77,880796.7054,623013.8294,21
+62712,1125186.759,878565.353,623498.3833,21
+62713,1123708.037,876801.2482,621050.1061,21
+62714,1121963.34,874245.676,622080.0668,21
+62715,1120064.435,872667.8299,618355.4644,21
+62716,1118476.129,870134.9431,1105261.515,21
+62717,1116821.692,868427.1177,603404.063,21
+62718,1115539.796,865589.3556,849815.0629,21
+62719,1113556.074,864345.0912,597777.804,21
+62720,1112189.161,861915.9006,596838.3743,21
+62721,1109916.402,860221.9421,598982.9749,21
+62722,1109486.985,857535.4328,594639.2648,21
+62723,1106659.533,855687.7275,592811.9384,21
+62724,1105721.405,853971.1757,592933.6478,21
+62725,1104168.402,851184.3597,592319.0466,21
+62726,1101155.336,848983.393,1069990.767,21
+62727,1101524.881,847128.8557,575374.7259,21
+62728,1098022.102,844929.7039,826016.4545,21
+62729,1097471.022,842987.7503,577528.4226,21
+62730,1094192.993,841239.7548,567054.8353,21
+62731,1095849.076,839759.4144,576441.0427,21
+62732,1092158.847,837251.9588,573405.9529,21
+62733,1092183.902,835935.5499,570184.8558,21
+62734,1089738.957,833550.7913,570464.3713,21
+62735,1090139.368,831723.8732,569694.2811,21
+62736,1087084.134,830183.7579,1035742.971,21
+62737,1086892.349,827766.8512,545855.6402,21
+62738,1085988.364,826053.406,801165.1413,21
+62739,1084260.756,824423.7955,556542.1902,21
+62740,1084062.377,822170.972,539734.9709,21
+62741,1081138.89,820532.3233,555672.0034,21
+62742,1081179.514,818326.2333,549737.001,21
+62743,1079763.065,816430.0588,548887.6522,21
+62744,1078436.027,814956.1737,547563.8201,21
+62745,1076968.013,812784.4641,546842.395,21
+62746,1076498.784,810494.7016,999200.2328,21
+62747,1075031.586,809146.3325,517111.8667,21
+62748,1073466.954,807373.6228,775946.026,21
+62749,1070512.775,804781.973,533356.0035,21
+62750,1068845.973,803321.5898,517858.9848,21
+62751,1067972.79,801625.4569,532909.4036,21
+62752,1065201.481,799136.0375,527581.1251,21
+62753,1065680.091,797791.2747,525680.8353,21
+62754,1062777.839,795465.8892,525541.9272,21
+62755,1063068.341,793837.7182,523643.536,21
+62756,1061082.95,791863.3256,962916.6701,21
+62757,1059682.213,789648.2688,485238.5461,21
+62758,1057792.974,788113.5956,749845.1992,21
+62759,1058327.62,786402.7996,510254.292,21
+62760,1054686.197,783719.9372,495488.9133,21
+62761,1055787.482,787416.4086,515222.6837,21
+62762,1056906.812,786424.7562,511874.03,21
+62763,1055857.089,784253.9843,510313.3178,21
+62764,1054224.247,782737.3704,507168.144,21
+62765,1053071.468,781566.0602,507138.2442,21
+62766,1050994.334,779129.7801,921211.679,21
+62767,1050560.29,778213.2187,457188.0297,21
+62768,1049011.261,775878.2654,726501.0498,21
+62769,1047486.059,774929.5246,488625.2094,21
+62770,1046438.999,772590.5802,476409.3161,21
+62771,1045647.387,770807.5459,487832.7184,21
+62772,1043624.779,769779.2716,482996.2496,21
+62773,1043672.628,767310.6023,479342.0313,21
+62774,1040830.652,766204.4355,478295.1381,21
+62775,1039587.518,764081.944,476200.3602,21
+62776,1039113.641,762483.6711,867892.1532,21
+62777,1037836.68,761092.9382,414766.0957,21
+62778,1034768.028,758817.4685,689857.1701,21
+62779,1036550.052,757009.2898,459707.0771,21
+62780,1032820.347,755617.0398,445402.9055,21
+62781,1032431.495,753812.1407,457283.9052,21
+62782,1031559.609,751672.5425,452517.4094,21
+62783,1030110.361,750287.3037,448078.7264,21
+62784,1029055.563,748483.3455,446881.4458,21
+62785,1026169.566,746449.6715,444451.9632,21
+62786,1026980.374,744691.0297,812005.1156,21
+62787,1025000.638,743256.1153,372191.9536,21
+62788,1023729.992,741032.9247,651443.3834,21
+62789,1022375.632,739552.2753,428077.2948,21
+62790,1021930.499,737611.5262,416190.1406,21
+62791,1020371.835,735668.1261,425634.8096,21
+62792,1020683.094,734687.8036,422258.7537,21
+62793,1020413.358,731773.8845,416948.9621,21
+62794,1019792.005,730831.9449,416472.9137,21
+62795,1019448.694,728851.1006,413757.6949,21
+62796,1019320.986,726879.1318,753836.1997,21
+62797,1019379.129,725592.046,334612.1435,21
+62798,1019627.311,723531.4237,612009.6652,21
+62799,1018682.883,721671.3498,398213.687,21
+62800,1018921.167,719752.5515,385283.7469,21
+62801,1018280.315,718583.998,395596.9119,21
+62802,1021652.621,716134.1745,390514.1431,21
+62803,1020122.484,714585.1703,387211.183,21
+62804,1021968.898,713019.312,384379.9136,21
+62805,1021484.654,711118.1256,382701.6915,21
+62806,1021863.457,709991.4264,694338.5153,21
+62807,1021932.412,707723.0689,292855.5367,21
+62808,1021381.11,705699.4684,570710.0279,21
+62809,1022537.643,704494.4779,363214.5113,21
+62810,1022499.034,702275.8764,352995.682,21
+62811,1023140.982,700765.7472,361201.4315,21
+62812,1021375.481,698658.6086,357777.7805,21
+62813,1024453.422,696977.9252,351867.1683,21
+62814,1022431.624,695278.6215,351188.6822,21
+62815,1024751.637,693326.3446,348570.6136,21
+62816,1023664.892,691216.3425,635769.3947,21
+62817,1024149.721,689896.1705,257460.7659,21
+62818,1025352.993,687852.9585,527235.5465,21
+62819,1024631.014,685558.0947,332001.3482,21
+62820,1025759.152,683457.6095,322364.5971,21
+62821,1023632.943,678361.3316,325570.1262,21
+62822,1024695.63,678754.3654,324241.4355,21
+62823,1024251.916,678901.0672,321348.0169,21
+62824,1023634.31,678249.2828,320697.6846,21
+62825,1025188.038,679048.2304,321191.3992,21
+62826,1022797.9,678888.8793,591853.7369,21
+62827,1024742.659,678740.5658,236593.1125,21
+62828,1023253.813,679250.4395,496428.7803,21
+62829,1023774.069,678923.4702,312272.6923,21
+62830,1022919.452,679556.0895,306067.4006,21
+62831,1024238.349,679116.8828,314346.3949,21
+62832,1023673.34,679945.34,312640.6959,21
+62833,1023930.767,679875.9435,309932.3801,21
+62834,1026848.121,679735.2875,311257.2491,21
+62835,1026014.911,679945.5809,311682.4993,21
+62836,1027786.49,680401.7845,569568.3076,21
+62837,1026087.497,680187.9052,233300.1874,21
+62838,1027695.494,680359.4682,479245.14,21
+62839,1027316.153,680955.4249,305123.9548,21
+62840,1027472.331,680726.2817,297798.9561,21
+62841,1027917.391,681224.6994,306943.5912,21
+62842,1028846.845,681415.3342,304677.4152,21
+62843,1027640.122,681501.264,303786.2681,21
+62844,1029627.958,681772.5733,303804.6808,21
+62845,1028358.426,681933.9843,302955.0692,21
+62846,1029629.768,682205.4418,552697.173,21
+62847,1028712.871,682691.7357,227776.5472,21
+62848,1030843.811,682846.7985,465618.4357,21
+62849,1028699.03,683130.72,298341.8937,21
+62850,1031169.032,683206.1042,292503.5361,21
+62851,1029731.03,683450.4824,302104.1039,21
+62852,1031991.027,683900.1054,300956.9678,21
+62853,1031718.176,684805.2007,300829.1638,21
+62854,1031752.167,685188.0803,301503.1897,21
+62855,1031227.545,685376.8216,303014.1886,21
+62856,1030890.014,685836.6149,545762.8914,21
+62857,1030728.886,686418.2363,233940.6025,21
+62858,1031360.05,687052.7772,461629.5697,21
+62859,1029628.178,687144.6546,350946.8512,21
+62860,1030293.577,687667.9368,236233.5495,21
+62861,1030536.667,688583.0905,458430.7494,21
+62862,1029356.742,688686.8392,301866.1967,21
+62863,1029180.984,689096.4616,294907.0245,21
+62864,1029500.266,689692.3833,305643.1885,21
+62865,1027909.563,690378.3202,304228.6252,21
+62866,1029298.177,690823.6036,305100.8541,21
+62867,1027562.81,691121.8041,306058.491,21
+62868,1028368.855,692204.2111,307325.8522,21
+62869,1027842.057,692314.499,1002806.084,21
+62870,1027845.04,693107.1593,269721.9096,21
+62871,1026666.711,694004.7046,575446.7869,21
+62872,1027429.821,694333.6834,250226.8092,21
+62873,1025490.761,694668.2845,454263.7822,21
+62874,1027234.943,695488.826,344474.5999,21
+62875,1025371.376,695862.8351,411348.4042,21
+62876,1025546.64,696591.5585,253982.5801,21
+62877,1024927.621,697146.4767,465644.9928,21
+62878,1026069.922,697884.0548,329551.2172,21
+62879,1023793.008,698155.4172,309091.9265,21
+62880,1024406.713,699415.3133,324277.5619,21
+62881,1025504.315,699190.3518,320750.3326,21
+62882,1022376.942,699924.3072,320790.3934,21
+62883,1025112.892,699788.6792,321235.6441,21
+62884,1023225.208,700485.3123,319810.7255,21
+62885,1025418.686,705117.2499,395841.0175,21
+62886,1024827.551,708001.9685,264297.3085,21
+62887,1025174.725,707731.5718,480515.6757,21
+62888,1025890.964,709723.4333,317911.4591,21
+62889,1026263.951,710884.2374,324393.0613,21
+62890,1025641.903,712688.1679,331464.6079,21
+62891,1027277.472,713839.8773,330052.099,21
+62892,1026487.38,714964.6616,331302.887,21
+62893,1026978.381,716696.4742,332408.8485,21
+62894,1027937.313,718414.8605,334407.2398,21
+62895,1028891.522,718849.1707,1045316.538,21
+62896,1027535.191,720807.2981,300207.6985,21
+62897,1029367.898,722112.2055,617868.2725,21
+62898,1028613.095,723268.5201,279471.113,21
+62899,1029956.603,724711.6864,487235.1812,21
+62900,1029011.129,725967.7776,373131.3124,21
+62901,1030575.609,727743.0418,327467.6243,21
+62902,1030413.537,728536.1522,355283.0374,21
+62903,1031486.049,729980.468,351067.6299,21
+62904,1031134.701,731346.8398,350881.5978,21
+62905,1030721.04,733348.5939,351980.8621,21
+62906,1032815.414,734653.5243,353110.2403,21
+62907,1031516.314,735926.0142,355029.1281,21
+62908,1033771.667,737866.0934,356411.5524,21
+62909,1031941.628,738759.0935,357699.6566,21
+62910,1034315.218,740360.7722,355099.7385,21
+62911,1033378.945,741253.5354,367177.929,21
+62912,1033592.112,742254.6156,360524.6878,21
+62913,1034030.865,742686.0527,1088055.138,21
+62914,1033868.181,744226.2501,326287.4304,21
+62915,1034094.388,743941.6822,660245.4947,21
+62916,1035079.439,745600.6989,302227.8733,21
+62917,1033620.431,746135.8067,520734.7289,21
+62918,1035132.841,746160.2276,398914.1392,21
+62919,1034642.642,747666.4354,350971.4391,21
+62920,1035016.715,747765.9681,378115.9671,21
+62921,1035049.746,749101.9214,372539.7242,21
+62922,1034230.979,748784.2115,371886.8404,21
+62923,1035709.226,750099.9508,371649.1062,21
+62924,1034815.598,750462.7704,373058.0867,21
+62925,1034861.191,750421.8789,373320.4111,21
+62926,1036254.917,752244.6274,374100.0378,21
+62927,1034830.72,751403.3253,374702.9653,21
+62928,1035904.976,753170.9592,370748.0488,21
+62929,1034857.664,752716.1674,381846.993,21
+62930,1035386.49,753653.5705,375146.7367,21
+62931,1035618.668,754535.0443,1114359.744,21
+62932,1035840.869,754254.7647,339955.504,21
+62933,1036023.01,755364.6138,684314.3157,21
+62934,1035833.309,755438.5053,314716.8822,21
+62935,1034977.548,756233.886,539717.3819,21
+62936,1036847.51,756351.4371,412491.1597,21
+62937,1034255.215,757158.8012,363498.5904,21
+62938,1036898.985,757150.2932,391228.5156,21
+62939,1035594.885,757868.7107,385460.1297,21
+62940,1035543.297,758148.6337,384273.0514,21
+62941,1222954.561,829652.8141,449923.5982,21
+62942,1231674.2,836348.0151,444488.62,21
+62943,1235087.131,839530.7095,604337.9358,21
+62944,1236133.372,842868.4147,661423.8107,21
+62945,1239527.932,845366.3179,527608.7246,21
+62946,1240913.549,848518.9693,794947.4887,21
+62947,1241635.254,851527.8868,777850.9737,21
+62948,1244684.946,854389.9244,557122.544,21
+62949,1246054.734,857164.3251,792638.3738,21
+62950,1246730.866,860375.0919,613855.9313,21
+62951,1249265.058,862721.1851,739325.5868,21
+62952,1249882.703,865423.5269,576367.4992,21
+62953,1251507.107,869400.4684,809173.7787,21
+62954,1253661.357,870542.3465,633652.01,21
+62955,1253067.202,874917.2,770507.1159,21
+62956,1255347.93,886030.7039,601913.6284,21
+62957,1257376.703,915353.5383,839239.6794,21
+62958,1256748.769,899706.1366,649737.7561,21
+62959,1259120.881,910466.5761,790679.8849,21
+62960,1260081.478,913068.57,623041.9675,21
+62961,1261555.307,917640.3612,859487.6882,21
+62962,1261583.208,919893.513,666012.4935,21
+62963,1263742.279,924075.8082,812107.1839,21
+62964,1264866.367,927404.3353,639497.9042,21
+62965,1264424.676,930523.9046,879458.2254,21
+62966,1266339.051,933939.4947,682088.8864,21
+62967,1267809.002,936810.4503,831575.0441,21
+62968,1267343.54,939977.6078,656614.4866,21
+62969,1270341.758,942505.4595,898528.0103,21
+62970,1269151.923,946365.8645,696493.3048,21
+62971,1271392.238,949654.7839,849552.4765,21
+62972,1271748.636,950801.9876,672925.3626,21
+62973,1272445.536,956202.1581,915169.6847,21
+62974,1272816.916,958136.8488,710857.8388,21
+62975,1274217.693,960064.2818,868230.8758,21
+62976,1274264.848,964849.2103,685281.3648,21
+62977,1275909.707,966128.4276,930062.4036,21
+62978,1276677.167,968726.414,723481.4416,21
+62979,1279310.928,972477.2755,883909.8623,21
+62980,1277972.518,975295.5995,698585.0383,21
+62981,1281528.503,977378.9195,946152.736,21
+62982,1280301.149,980237.6777,734090.8055,21
+62983,1281081.121,982988.8125,900345.1018,21
+62984,1282222.018,985496.5709,710743.7006,21
+62985,1283453.689,988347.9599,959093.1766,21
+62986,1282648.956,992418.9149,746403.7571,21
+62987,1283424.312,992286.0997,913359.6139,21
+62988,1285718.991,996550.3766,723821.8469,21
+62989,1284048.859,998764.8773,971745.2121,21
+62990,1284990.922,1001704.363,756841.055,21
+62991,1286966.021,1003339.739,927101.2739,21
+62992,1286235.596,1006736.622,734253.1878,21
+62993,1288101.094,1009837.658,984722.5055,21
+62994,1286407.709,1011077.753,766104.3469,21
+62995,1289612.522,1013497.843,939441.8507,21
+62996,1287675.422,1017610.091,746814.8586,21
+62997,1289721.347,1018975.709,994727.5117,21
+62998,1289866.781,1021234.987,777772.6742,21
+62999,1289783.37,1023511.605,950543.5207,21
+63000,1290760.221,1027355.747,759656.0872,21
+63001,1349124.562,1089723.267,1105966.781,21
+63002,1356073.767,1098244.838,896574.2161,21
+63003,1356350.221,1103770.298,1079251.161,21
+63004,1357135.009,1106557.773,888701.2838,21
+63005,1360297.735,1110482.216,1131083.707,21
+63006,1360298.206,1114624.639,913572.1612,21
+63007,1360309.659,1116591.703,1100621.324,21
+63008,1363250.234,1122262.473,904679.253,21
+63009,1363978.36,1124777.638,1146697.653,21
+63010,1363616.487,1128878.192,927975.6184,21
+63011,1364537.129,1131114.731,1117759.292,21
+63012,1366415.249,1135752.989,920816.2062,21
+63013,1366884.222,1139060.856,1162638.115,21
+63014,1367698.901,1141847.93,940368.2853,21
+63015,1367886.51,1146356.689,1139413.654,21
+63016,1370010.01,1148823.346,936657.7371,21
+63017,1369254.071,1151838.927,1180380.442,21
+63018,1370992.469,1156264.737,956384.8229,21
+63019,1371972.535,1158473.005,1153198.284,21
+63020,1372143.812,1162432.524,949655.2108,21
+63021,1372916.478,1165593.001,1193553.701,21
+63022,1374349.031,1168362.002,967736.0517,21
+63023,1373163.679,1171880.807,1166511.131,21
+63024,1375228.282,1175556.122,963201.5503,21
+63025,1375656.853,1177895.072,1203476.202,21
+63026,1376594.091,1181232.015,978875.3373,21
+63027,1376061.459,1185234.527,1178202.099,21
+63028,1377818.543,1187662.028,976653.6746,21
+63029,1377071.759,1190606.18,1215950.895,21
+63030,1379531.814,1194073.027,986648.1915,21
+63031,1379470.601,1196335.436,1192158.144,21
+63032,1378487.943,1200834.141,987420.5744,21
+63033,1382085.907,1203158.476,1224383.947,21
+63034,1378715.677,1206025.498,997112.0472,21
+63035,1382871.782,1209543.896,1203597.467,21
+63036,1381079.423,1211957.404,997620.0876,21
+63037,1381641.832,1216310.761,1233847.543,21
+63038,1383721.101,1217913.103,1007315.719,21
+63039,1382642.131,1221401.32,1215042.903,21
+63040,1383713.141,1225270.594,1005923.391,21
+63041,1384819.841,1226672.552,1244870.481,21
+63042,1383687.388,1231107.506,1013691.271,21
+63043,1385848.619,1233581.218,1226313.21,21
+63044,1384691.257,1235897.177,1016553.672,21
+63045,1386667.241,1239637.536,1252488.302,21
+63046,1386575.253,1242750.921,1022559.125,21
+63047,1386287.411,1244072.037,1235401.28,21
+63048,1387991.127,1250876.299,1027787.34,21
+63049,1387249.534,1251361.365,1259854.807,21
+63050,1388625.617,1255098.59,1031916.406,21
+63051,1387577.146,1258973.353,1246287.238,21
+63052,1388985.453,1260294.931,1036057.269,21
+63053,1390212.364,1264477.66,1267097.37,21
+63054,1388850.078,1266942.719,1042518.541,21
+63055,1390638.557,1269493.663,1253110.264,21
+63056,1389812.142,1273199.432,1046156.016,21
+63057,1390684.154,1275907.168,1274972.65,21
+63058,1391362.164,1277571.47,1049860.603,21
+63059,1391628.428,1282132.048,1263851.025,21
+63060,1391717.175,1284335.845,1054391.692,21
+63061,1392752.647,1286502.077,1281270.063,21
+63062,1392504.271,1291374.999,1058243.283,21
+63063,1395209.236,1292655.187,1277147.999,21
+63064,1392223.97,1296083.698,1061873.984,21
+63065,1395516.625,1298105.04,1289879.144,21
+63066,1393639.759,1302729.825,1067692.648,21
+63067,1395543.634,1303742.816,1282616.755,21
+63068,1394756.821,1307183.194,1071903.168,21
+63069,1395477.196,1308445.061,1295359.085,21
+63070,1396349.764,1311196.719,1075321.818,21
+63071,1395742.56,1313354.308,1292464.648,21
+63072,1396101.485,1316273.18,1077281.901,21
+63073,1397268.002,1319690.924,1303366.483,21
+63074,1395848.809,1320980.583,1082359.55,21
+63075,1398274.129,1324533.412,1299827.617,21
+63076,1397896.16,1327906.717,1085721.596,21
+63077,1397061.177,1329230.811,1308203.272,21
+63078,1398205.249,1332472.571,1092775.398,21
+63079,1398639.596,1334660.689,1303837.059,21
+63080,1399107.293,1339155.631,1096261.048,21
+63081,1397504.429,1339110.149,1312659.176,21
+63082,1400714.267,1343548.947,1097418.522,21
+63083,1398024.814,1345818.35,1315958.401,21
+63084,1401402.219,1348029.199,1099229.355,21
+63085,1397818.724,1350654.671,1319484.184,21
+63086,1402319.858,1353394.913,1102406.131,21
+63087,1399699.31,1356523.337,1323853.749,21
+63088,1400351.443,1357958.639,1108223.745,21
+63089,1400894.011,1362774.546,1324374.413,21
+63090,1400349.674,1361946.911,1112188.773,21
+63091,1402971.843,1367531.574,1328892.993,21
+63092,1400424.026,1369155.72,1115715.241,21
+63093,1401558.387,1371954.119,1329144.527,21
+63094,1402097.376,1374890.759,1118876.797,21
+63095,1401672.511,1376842.553,1336260.025,21
+63096,1402974.895,1379579.495,1121567.75,21
+63097,1402518.328,1382402.617,1335229.107,21
+63098,1402739.312,1384322.629,1125029.578,21
+63099,1402943,1388641.829,1343953.689,21
+63100,1403630.418,1390430.909,1128601.303,21
+63101,1402541.746,1393764.475,1338507.008,21
+63102,1404257.011,1395838.308,1133277.72,21
+63103,1404547.397,1398667.217,1349060.748,21
+63104,1402776.624,1400608.998,1136189.432,21
+63105,1404906.186,1404426.306,1343099.499,21
+63106,1404312.149,1405574.782,1140924.832,21
+63107,1404152.653,1409677.339,1354007.793,21
+63108,1405547.183,1410297.262,1142895.826,21
+63109,1404076.703,1413772.384,1349322.094,21
+63110,1405669.394,1414544.135,1145101.939,21
+63111,1405039.889,1419167.704,1363546.224,21
+63112,1405917.089,1420852.73,1148754.633,21
+63113,1405322.647,1422419.543,1351662.628,21
+63114,1405564.669,1425905.769,1154064.436,21
+63115,1406210.608,1427985.182,1366780.355,21
+63116,1405896.753,1431897.419,1157462.89,21
+63117,1406190.877,1432622.788,1355568.133,21
+63118,1407299.249,1436151.87,1159367.532,21
+63119,1406126.511,1439148.652,1376020.794,21
+63120,1406648.023,1440704.394,1160265.492,21
+63121,1414733.695,1447973.875,1377351.085,21
+63122,1416505.776,1448662.668,1182545.605,21
+63123,1417156.119,1448244.792,1400070.192,21
+63124,1418221.93,1446585.138,1184274.797,21
+63125,1418075.666,1446138.743,1386209.779,21
+63126,1419530.53,1444782.364,1187941.654,21
+63127,1419465.351,1445003.669,1408887.525,21
+63128,1420175.438,1442706.856,1194078.191,21
+63129,1420352.941,1444508.976,1388782.346,21
+63130,1420759.724,1440991.628,1197965.902,21
+63131,1422860.865,1441287.391,1414325.82,21
+63132,1421700.108,1439687.977,1202287.864,21
+63133,1422232.503,1440326.251,1393278.407,21
+63134,1423191.35,1437071.068,1203313.321,21
+63135,1424731.108,1438047.697,1422774.864,21
+63136,1422693.738,1436985.911,1206215.811,21
+63137,1425409.579,1435677.424,1399380.09,21
+63138,1424786.841,1434476.394,1211185.666,21
+63139,1426517.677,1434449.779,1427862.03,21
+63140,1424822.6,1433579.051,1213384.774,21
+63141,1427443.952,1432192.266,1403453.022,21
+63142,1426048.021,1432380.816,1216007.341,21
+63143,1427567.008,1430022.889,1435514.927,21
+63144,1428178.844,1430141.955,1221011.502,21
+63145,1428775.879,1428375.532,1407774.092,21
+63146,1427021.656,1428187.68,1221936.077,21
+63147,1430729.385,1426500.516,1442960.707,21
+63148,1427898.335,1426925.575,1223146.496,21
+63149,1430583.514,1423818.303,1413891.419,21
+63150,1430474.848,1423795.947,1232338.747,21
+63151,1429877.512,1423769.591,1448201.419,21
+63152,1431637.856,1420735.744,1234752.991,21
+63153,1430970.711,1420588.376,1419464.96,21
+63154,1433048.851,1419550.462,1238224.299,21
+63155,1431305.365,1417323.277,1455504.644,21
+63156,1432551.11,1416690.884,1239159.213,21
+63157,1433656.949,1415191.006,1424255.104,21
+63158,1433046.058,1415354.826,1243889.085,21
+63159,1434257.031,1413123.472,1459613.449,21
+63160,1433655.745,1413197.891,1246620.433,21
+63161,1435118.169,1410340.499,1429034.787,21
+63162,1434213.246,1410350.511,1248372.881,21
+63163,1435586.758,1409595.681,1467142.299,21
+63164,1436307.241,1408202.434,1252256.689,21
+63165,1435148.601,1406773.256,1430132.849,21
+63166,1436681.557,1407002.505,1256106.74,21
+63167,1437313.418,1404265.937,1471881.768,21
+63168,1436017.442,1403809.664,1256512.267,21
+63169,1438933.073,1402560.922,1435387.035,21
+63170,1436535.673,1401203.205,1261478.879,21
+63171,1438225.285,1401112.596,1478460.187,21
+63172,1438472.197,1398986.686,1259852.809,21
+63173,1439101.217,1398557.167,1439382.818,21
+63174,1439292.23,1396650.343,1267553.336,21
+63175,1439501.111,1395836.391,1482934.313,21
+63176,1440133.567,1395957.636,1266771.98,21
+63177,1439726.752,1393007.074,1442382.659,21
+63178,1442146.891,1392581.564,1272094.878,21
+63179,1438878.383,1391670.848,1487934.323,21
+63180,1443138.48,1390656.183,1273377.115,21
+63181,1439962.117,1391152.928,1444347.916,21
+63182,1441740.135,1394174.224,1277914.834,21
+63183,1441816.135,1395809.717,1491782.621,21
+63184,1440603.605,1394788.11,1276833.13,21
+63185,1441409.786,1398764.416,1447662.323,21
+63186,1440277.987,1398521.642,1276947.69,21
+63187,1439833.801,1400417.315,1494903.703,21
+63188,1439017.194,1401088.93,1275031.95,21
+63189,1441605.459,1401834.574,1448799.129,21
+63190,1436822.225,1403778.391,1278350.199,21
+63191,1440008.015,1404640.825,1493425.482,21
+63192,1438038.413,1405932.913,1277529.963,21
+63193,1437294.093,1407746.034,1448018.405,21
+63194,1439370.227,1407712.041,1280242.572,21
+63195,1436403.316,1409773.195,1494001.861,21
+63196,1436603.371,1410190.39,1275943.08,21
+63197,1436777.256,1412168.125,1451248.279,21
+63198,1435933.841,1412913.24,1277842.803,21
+63199,1436660.44,1413908.714,1495438.53,21
+63200,1434993.167,1415503.73,1277433.233,21
+63201,1434824.425,1415966.199,1451337.399,21
+63202,1435321.829,1418110.047,1278789.75,21
+63203,1434045.323,1418756.194,1496894.756,21
+63204,1434548.805,1419855.57,1276239.149,21
+63205,1433522.059,1420767.602,1451133.814,21
+63206,1433579.526,1423057.627,1281185.611,21
+63207,1432718.832,1422622.616,1494077.452,21
+63208,1432909.993,1425594.787,1279085.158,21
+63209,1432016.725,1424221.988,1451176.557,21
+63210,1431941.156,1427493.407,1281133.128,21
+63211,1432330.585,1428515.535,1493960.932,21
+63212,1430074.721,1427886.974,1281718.085,21
+63213,1431349.984,1430976.161,1449858.359,21
+63214,1429273.943,1431632.24,1280536.226,21
+63215,1430765.274,1431886.405,1496575.206,21
+63216,1429275.168,1433526.874,1280156.602,21
+63217,1429005.486,1435017.925,1451468.379,21
+63218,1429357.448,1434952.63,1280165.471,21
+63219,1428551.295,1438108.258,1497761.286,21
+63220,1426842.837,1437396.423,1279801.454,21
+63221,1428336.653,1438289.414,1451486.867,21
+63222,1427463.828,1440938.703,1280370.694,21
+63223,1427237.881,1440589.182,1498892.33,21
+63224,1425134.853,1442664.631,1278986.664,21
+63225,1426918.573,1443173.727,1452798.845,21
+63226,1424791.807,1444928.152,1281597.472,21
+63227,1426807.407,1444835.294,1498985.107,21
+63228,1423845.462,1447472.948,1276684.638,21
+63229,1425473.969,1447949.253,1454894.689,21
+63230,1423395.848,1449215.977,1281579.387,21
+63231,1423626.833,1449814.925,1498210.157,21
+63232,1423166.809,1450869.239,1279962.551,21
+63233,1423421.424,1451661.303,1452620.196,21
+63234,1421916.934,1453345.401,1280531.449,21
+63235,1422319.298,1453858.779,1498005.052,21
+63236,1421165.516,1454430.835,1281746.17,21
+63237,1422081.845,1455912.129,1451607.414,21
+63238,1421060.422,1456075.784,1280841.34,21
+63239,1420450.161,1457710.406,1499842.087,21
+63240,1420023.903,1456697.767,1279626.808,15.6
+63241,0,0,0,15.6
+63242,438614.507,0,0,15.6
+63243,0,749.0895272,0,15.6
+63244,0,0,0,15.6
+63245,0,0,0,15.6
+63246,0,0,0,15.6
+63247,0,0,0,15.6
+63248,0,0,0,15.6
+63249,0,0,0,15.6
+63250,0,0,1464105.964,15.6
+63251,0,0,0,15.6
+63252,0,0,0,15.6
+63253,71205.13477,0,0,15.6
+63254,6358.566324,0,0,15.6
+63255,16116.00075,0,0,15.6
+63256,28559.52413,0,0,15.6
+63257,22308.11299,0,0,15.6
+63258,23641.45649,0,0,15.6
+63259,24018.98733,0,0,15.6
+63260,24382.23483,0,0,15.6
+63261,490141.6438,0,0,15.6
+63262,34442.87576,0,0,15.6
+63263,116028.6753,0,0,15.6
+63264,209867.2985,0,0,15.6
+63265,159501.0361,0,0,15.6
+63266,170355.552,0,0,15.6
+63267,173918.5093,0,0,15.6
+63268,176795.0314,0,0,15.6
+63269,180072.6384,0,0,15.6
+63270,182583.9819,0,0,15.6
+63271,185975.2629,0,0,15.6
+63272,188100.8417,0,0,15.6
+63273,191250.0438,0,0,15.6
+63274,193594.8784,0,0,15.6
+63275,196590.4961,0,0,15.6
+63276,199010.4809,0,0,15.6
+63277,201519.2543,0,0,15.6
+63278,204009.0749,0,0,15.6
+63279,206551.488,0,0,15.6
+63280,208805.6622,0,0,15.6
+63281,211215.4283,0,0,15.6
+63282,213599.4706,0,0,15.6
+63283,185254.0806,0,0,15.6
+63284,187545.541,0,0,15.6
+63285,271978.0864,0,0,15.6
+63286,216583.3567,0,0,15.6
+63287,215957.5821,0,0,15.6
+63288,231711.5658,0,0,15.6
+63289,228987.3355,0,0,15.6
+63290,230956.0514,0,1382394.872,15.6
+63291,32434.2114,0,0,15.6
+63292,32546.94468,0,0,15.6
+63293,32861.36077,0,0,15.6
+63294,717130.3931,0,0,15.6
+63295,133690.7297,0,0,15.6
+63296,167246.3839,0,0,15.6
+63297,301144.9816,0,0,15.6
+63298,241789.9384,0,0,15.6
+63299,248971.0524,0,0,15.6
+63300,251373.4844,0,0,15.6
+63301,253333.6367,0,0,15.6
+63302,252926.697,223.2630643,0,15.6
+63303,254149.6513,0,0,15.6
+63304,254339.9834,0,0,15.6
+63305,254173.8071,0,0,15.6
+63306,254753.0603,0,0,15.6
+63307,255377.6572,434439.4894,0,15.6
+63308,254859.5923,0,0,15.6
+63309,255560.6719,0,0,15.6
+63310,255792.8132,0,0,15.6
+63311,255535.0235,0,0,15.6
+63312,256188.2369,0,0,15.6
+63313,256337.2967,0,0,15.6
+63314,256023.9795,0,0,15.6
+63315,221907.6702,0,0,15.6
+63316,222185.9108,0,0,15.6
+63317,308650.3286,0,0,15.6
+63318,259834.5833,0,0,15.6
+63319,244019.938,0,0,15.6
+63320,262293.8957,0,0,15.6
+63321,256824.4014,0,0,15.6
+63322,257139.5217,0,0,15.6
+63323,256647.6572,0,0,15.6
+63324,34511.89156,0,0,15.6
+63325,34439.22432,0,0,15.6
+63326,34451.99433,0,0,15.6
+63327,760136.5753,0,0,15.6
+63328,205393.3055,0,0,15.6
+63329,129351.9357,0,0,15.6
+63330,332708.1304,0,1309289.032,15.6
+63331,249207.4903,0,0,15.6
+63332,257276.7407,0,0,15.6
+63333,257097.942,0,0,15.6
+63334,256861.4132,0,0,15.6
+63335,256691.6712,0,0,15.6
+63336,256472.7627,0,0,15.6
+63337,256669.5907,0,0,15.6
+63338,255953.6249,434370.2327,0,15.6
+63339,256095.6968,0,0,15.6
+63340,255431.5205,0,0,15.6
+63341,255827.8139,0,0,15.6
+63342,254874.7181,0,0,15.6
+63343,255305.2824,0,0,15.6
+63344,254793.9597,0,0,15.6
+63345,254514.6987,0,0,15.6
+63346,254353.5863,0,0,15.6
+63347,220008.9091,0,0,15.6
+63348,219724.5014,0,0,15.6
+63349,305674.1492,0,0,15.6
+63350,255794.4522,0,0,15.6
+63351,239987.2471,0,0,15.6
+63352,257960.4859,0,0,15.6
+63353,252807.094,0,0,15.6
+63354,251859.7365,0,0,15.6
+63355,251763.2074,0,0,15.6
+63356,251586.4283,0,0,15.6
+63357,33783.11238,0,0,15.6
+63358,33724.67335,32896.82243,0,15.6
+63359,33697.38449,1135.442604,0,15.6
+63360,748750.9859,4919.763365,0,15.6
+63361,190655.2048,12228.20747,0,15.6
+63362,135977.0124,12170.08256,0,15.6
+63363,327282.4429,10389.77895,0,15.6
+63364,248911.2801,11187.92879,0,15.6
+63365,258108.4559,11354.91797,0,15.6
+63366,258368.4397,11416.0902,0,15.6
+63367,260212.5671,11580.87233,0,15.6
+63368,260510.5295,11680.79735,0,15.6
+63369,261614.6356,11767.50046,0,15.6
+63370,262378.6354,11900.76927,0,15.6
+63371,263266.7621,11987.9641,1256364.99,15.6
+63372,264229.3524,12140.67603,0,15.6
+63373,265125.0011,12158.91413,0,15.6
+63374,265880.8305,12372.14671,0,15.6
+63375,266853.8123,12386.71101,0,15.6
+63376,267543.2666,12508.29028,0,15.6
+63377,268725.1042,12646.93055,0,15.6
+63378,269298.5728,12712.61552,0,15.6
+63379,234863.2632,12793.94238,0,15.6
+63380,235352.2215,12998.4637,0,15.6
+63381,323410.9623,13084.23087,0,15.6
+63382,278855.0902,13164.73121,0,15.6
+63383,261224.8601,13258.62172,0,15.6
+63384,279068.4367,13363.52529,0,15.6
+63385,275907.8802,13482.87597,0,15.6
+63386,276320.5211,13534.30267,0,15.6
+63387,277190.6667,13652.80576,0,15.6
+63388,277963.3717,0,0,15.6
+63389,278780.2612,0,0,15.6
+63390,36696.45379,0,0,15.6
+63391,36770.19207,0,0,15.6
+63392,36917.7226,0,0,15.6
+63393,807198.2042,55009.55264,0,15.6
+63394,302238.6533,0,0,15.6
+63395,109679.3398,7016.24627,0,15.6
+63396,370596.885,20158.29363,0,15.6
+63397,280799.0524,13910.37789,0,15.6
+63398,285909.5879,14439.11425,0,15.6
+63399,288185.0104,14786.67961,0,15.6
+63400,288302.9233,14806.37969,0,15.6
+63401,289271.8095,14916.60047,0,15.6
+63402,290126.6547,14944.82143,0,15.6
+63403,290615.5464,15078.79422,0,15.6
+63404,291624.78,15323.45915,0,15.6
+63405,292013.0234,15241.03097,0,15.6
+63406,292965.4273,15293.34513,0,15.6
+63407,293896.5728,15373.87939,0,15.6
+63408,294536.3448,15435.34962,0,15.6
+63409,295077.4867,15542.77897,0,15.6
+63410,295893.0007,15607.43036,0,15.6
+63411,258179.3912,15668.54233,0,15.6
+63412,258811.4032,15755.53222,1044637.14,15.6
+63413,349306.7879,15839.48703,0,15.6
+63414,309348.5892,15994.88208,0,15.6
+63415,288246.7296,15985.12717,0,15.6
+63416,303354.4204,16053.59358,0,15.6
+63417,302221.7397,16125.99126,0,15.6
+63418,302073.8001,16179.50321,0,15.6
+63419,302550.3259,16404.01968,0,15.6
+63420,303307.9365,16366.81984,0,15.6
+63421,303641.4667,16407.92875,392781.1147,15.6
+63422,304396.6387,16494.05706,164067.5926,15.6
+63423,39332.10697,0,191544.3581,15.6
+63424,39389.2442,0,53905.82971,15.6
+63425,755129.8742,0,315697.4663,15.6
+63426,252069.1179,0,162668.3855,15.6
+63427,226896.4585,64215.79194,189108.7532,15.6
+63428,350753.8205,0,52420.26508,15.6
+63429,305854.102,10058.97718,295137.3591,15.6
+63430,307585.8807,24079.35657,154781.2879,15.6
+63431,308060.0132,15952.90513,179478.457,15.6
+63432,308841.1607,17309.20644,51330.84321,15.6
+63433,309042.5802,17420.05507,278453.2078,15.6
+63434,309149.1869,17479.67707,147211.2371,15.6
+63435,310030.1641,17530.56335,170462.089,15.6
+63436,307643.8325,17640.73778,50425.89824,15.6
+63437,308841.5871,17669.03746,263207.9263,15.6
+63438,308998.228,17736.43867,140304.2986,15.6
+63439,308846.3337,17934.61855,162235.1619,15.6
+63440,310136.3383,17838.54007,49636.15576,15.6
+63441,309670.9126,17945.87419,249292.3677,15.6
+63442,310160.3421,18056.67833,133994.6081,15.6
+63443,271191.0184,18040.80992,154690.6957,15.6
+63444,270850.6778,18437.20401,48964.30484,15.6
+63445,361351.0317,18141.99087,236507.3473,15.6
+63446,322985.8918,18344.48536,128237.9349,15.6
+63447,305382.2717,18273.5017,147796.4159,15.6
+63448,312227.485,18442.82407,48340.52983,15.6
+63449,314981.7317,18399.30409,224847.7008,15.6
+63450,313507.5828,18573.30796,122932.7045,15.6
+63451,313544.1672,18552.09855,0,15.6
+63452,314335.7724,18629.98576,0,15.6
+63453,313992.4203,18879.67852,0,15.6
+63454,315044.9734,18680.33033,834663.2655,15.6
+63455,40434.26287,18907.6387,0,15.6
+63456,40521.71179,18870.54309,0,15.6
+63457,775661.178,0,0,15.6
+63458,280443.7479,230.9766501,0,15.6
+63459,221592.9695,0,0,15.6
+63460,367193.8654,66666.18409,0,15.6
+63461,315423.7618,0,0,15.6
+63462,317821.263,15375.64814,0,15.6
+63463,319409.999,24451.46609,187689.8221,15.6
+63464,318841.8185,18593.6978,41105.66132,15.6
+63465,319458.3588,19447.27414,204028.7392,15.6
+63466,319989.8346,19577.69783,114185.789,15.6
+63467,319534.2808,19565.66228,137014.7666,15.6
+63468,320334.9121,19667.94477,46530.56917,15.6
+63469,320326.4836,19985.57393,199171.5778,15.6
+63470,321347.6961,19799.67628,111617.4057,15.6
+63471,320908.9056,19793.04203,128091.4513,15.6
+63472,320996.763,19877.0564,47081.94565,15.6
+63473,322242.3497,19992.15304,190597.2656,15.6
+63474,321557.2644,19957.93896,107707.7086,15.6
+63475,281121.0165,20062.64806,123399.3488,15.6
+63476,281476.1148,20149.51265,46558.04146,15.6
+63477,372154.7114,20108.98314,182788.3036,15.6
+63478,334450.2737,20352.20288,104161.314,15.6
+63479,321298.3587,20288.08607,119147.6903,15.6
+63480,320301.3708,20313.3167,46115.10148,15.6
+63481,327598.1352,20368.01706,175845.2435,15.6
+63482,324807.956,20444.92188,101259.9514,15.6
+63483,325728.4516,20444.26545,115839.0064,15.6
+63484,326050.0809,20575.61978,46356.36691,15.6
+63485,326699.8737,20564.41426,170098.5415,15.6
+63486,327404.254,20579.53191,99008.16878,15.6
+63487,41575.63611,20588.03331,113006.331,15.6
+63488,41748.2848,20746.3674,46749.56276,15.6
+63489,797481.3172,20992.39554,164910.331,15.6
+63490,323290.252,0,97012.125,15.6
+63491,214592.2243,0,110641.4882,15.6
+63492,387273.0298,0,47030.62334,15.6
+63493,329032.3139,74364.21188,0,15.6
+63494,331869.3175,2453.777995,0,15.6
+63495,333116.7658,14440.1249,0,15.6
+63496,333424.169,27576.71895,623660.9691,15.6
+63497,333873.5378,20088.90331,0,15.6
+63498,334700.9629,21164.00133,0,15.6
+63499,335173.4388,21305.1127,0,15.6
+63500,335597.9773,21540.40766,100590.6437,15.6
+63501,336436.8901,21324.91741,155575.4058,15.6
+63502,336663.3072,21395.69824,92258.79169,15.6
+63503,337433.1335,21317.31302,115877.0915,15.6
+63504,338167.2462,21372.02806,50575.54672,15.6
+63505,338539.6508,21396.64757,160699.6877,15.6
+63506,339121.0319,21473.75548,97117.80783,15.6
+63507,296914.6767,21404.83492,110388.7308,15.6
+63508,297311.7759,21561.38402,50049.09347,15.6
+63509,388406.9397,21506.47869,157428.1377,15.6
+63510,354823.1678,21846.1929,95714.33826,15.6
+63511,344725.5815,21596.75296,108658.8985,15.6
+63512,335912.5241,21602.308,50423.58508,15.6
+63513,347638.7031,21683.67141,154127.7946,15.6
+63514,343848.7656,21692.42667,94612.73823,15.6
+63515,344433.9587,21760.08309,107161.0528,15.6
+63516,344893.5913,21746.59032,50919.71099,15.6
+63517,345585.3946,21801.35267,151264.0107,15.6
+63518,346485.889,21838.31426,93647.72211,15.6
+63519,43517.91359,21844.50218,105982.5267,15.6
+63520,43660.24695,21933.90991,51379.02096,15.6
+63521,824091.3197,21901.07876,148808.7755,15.6
+63522,374528.0408,21977.05937,92916.88546,15.6
+63523,225584.2692,290786.3196,104977.1089,15.6
+63524,404253.751,22124.35011,51909.03311,15.6
+63525,349534.6158,15200.42975,146705.1194,15.6
+63526,350890.2434,152968.9426,92309.20521,15.6
+63527,351646.9225,117168.4473,104198.7465,15.6
+63528,352498.8323,84748.05443,52491.98936,15.6
+63529,352084.7359,114224.9571,144869.1168,15.6
+63530,353874.1246,106095.8607,0,15.6
+63531,353462.1978,107760.6902,0,15.6
+63532,354460.0072,108000.9923,0,15.6
+63533,354858.7589,108830.2307,0,15.6
+63534,355368.0242,109295.2638,155062.7332,15.6
+63535,355908.6569,109513.4648,89291.60569,15.6
+63536,356966.1097,110052.402,46317.95233,15.6
+63537,356703.4325,111037.8722,152341.8304,15.6
+63538,357722.926,110885.0577,91378.61131,15.6
+63539,313664.736,111742.359,670800.5456,15.6
+63540,313550.0574,112401.9715,55117.57834,15.6
+63541,404930.9285,111425.083,147738.8424,15.6
+63542,375840.6609,111367.9719,94279.74207,15.6
+63543,365368.9718,110914.2329,106179.0165,15.6
+63544,355459.1314,109948.1865,54984.06916,15.6
+63545,365515.25,110003.3918,145697.5757,15.6
+63546,363673.5723,109030.4155,93432.50411,15.6
+63547,363649.5065,108898.7179,105096.6425,15.6
+63548,364757.1587,108027.7018,54864.0836,15.6
+63549,364654.6528,107928.3548,143973.2448,15.6
+63550,365827.2077,107031.9133,92635.68585,15.6
+63551,45842.05371,106927.3145,104080.1626,15.6
+63552,45825.48917,105858.5041,54848.48414,15.6
+63553,841841.5416,21546.26277,142369.4482,15.6
+63554,417254.3847,21433.34395,91948.37794,15.6
+63555,265014.2972,21406.72855,103249.5063,15.6
+63556,407047.9565,0,54786.34058,15.6
+63557,376579.0903,0,140951.3394,15.6
+63558,372556.052,0,91302.05735,15.6
+63559,372561.6607,76639.83385,102502.997,15.6
+63560,374125.6819,2996.98979,54783.21626,15.6
+63561,374145.9858,12526.9325,139624.4836,15.6
+63562,374918.2086,396300.5792,90795.49359,15.6
+63563,375473.3758,19410.38963,101785.9525,15.6
+63564,376125.6821,20718.83927,0,15.6
+63565,376826.1288,20545.85278,0,15.6
+63566,377071.6686,20495.89744,0,15.6
+63567,378375.7314,20718.26742,0,15.6
+63568,378553.7631,20321.74382,125928.6302,15.6
+63569,379213.4336,20237.79246,125208.7898,15.6
+63570,380236.465,20159.77944,80344.35464,15.6
+63571,333500.2078,20041.50606,110878.6337,15.6
+63572,333519.6554,19985.40208,53915.01717,15.6
+63573,424989.2934,19857.50718,138192.1316,15.6
+63574,400215.9171,19778.44994,90476.60494,15.6
+63575,389394.2026,19726.97115,101159.5936,15.6
+63576,380192.4564,19672.16346,55060.88094,15.6
+63577,385771.8303,19573.04898,137164.371,15.6
+63578,386828.403,19363.00531,89949.8134,15.6
+63579,385996.5974,19313.27939,100619.72,15.6
+63580,387082.1704,19230.64162,55005.72533,15.6
+63581,386562.6784,19218.74633,136218.5119,15.6
+63582,388343.5775,19033.22591,635962.9646,15.6
+63583,48347.7481,18940.90454,103345.4308,15.6
+63584,48477.94359,18847.7001,55593.1428,15.6
+63585,861112.5169,18750.95751,140539.9851,15.6
+63586,451309.4287,18641.16971,91680.99975,15.6
+63587,326069.2935,18571.27547,102694.8711,15.6
+63588,400255.647,18435.41236,55500.67305,15.6
+63589,406853.8482,0,139444.3415,15.6
+63590,394404.9606,0,91199.18075,15.6
+63591,394378.1418,333.5907144,102098.2069,15.6
+63592,394564.9629,0,55492.52213,15.6
+63593,395968.6884,74569.55521,138426.235,15.6
+63594,395970.2269,663.9471687,90771.24975,15.6
+63595,397146.9918,6515.448608,101522.0022,15.6
+63596,397163.007,26677.85369,55478.88075,15.6
+63597,398151.3871,16094.65523,137526.5829,15.6
+63598,398791.4273,17445.29267,0,15.6
+63599,399487.7944,17344.24765,0,15.6
+63600,399856.7135,17149.44437,0,17.8
+63601,1098375.601,1325772.357,1500569.206,17.8
+63602,1048210.372,687304.0176,1539667.616,17.8
+63603,688243.1754,211207.2832,1202898.807,17.8
+63604,638352.9025,291702.2486,751485.2458,17.8
+63605,765083.5699,362437.0382,822771.7723,17.8
+63606,734569.0636,313442.9368,889589.8127,17.8
+63607,723315.7346,307252.5006,901567.5513,17.8
+63608,722723.1206,306390.189,821648.8338,17.8
+63609,702849.2559,305599.2448,884494.2182,17.8
+63610,690022.7626,304026.2971,847510.1425,17.8
+63611,700002.3061,303303.3711,972162.2043,17.8
+63612,693723.2478,301951.2412,868923.9261,17.8
+63613,691811.6342,300803.5966,936586.8731,17.8
+63614,690434.3803,300742.9848,891449.7814,17.8
+63615,112227.8847,298994.4738,1027840.931,17.8
+63616,112019.9756,299469.3454,908079.6989,17.8
+63617,924397.6755,297269.0131,978583.879,17.8
+63618,899498.4521,732057.1887,926800.5758,17.8
+63619,576609.6629,296443.066,1074059.155,17.8
+63620,752919.8586,296201.9822,939692.5665,17.8
+63621,715961.8738,295309.3802,1012381.87,17.8
+63622,699461.297,294814.7633,955382.3923,17.8
+63623,664936.4448,241902.4463,1112026.703,17.8
+63624,688608.91,241835.2025,966109.4943,17.8
+63625,679303.0769,343366.6083,2035656.623,17.8
+63626,674392.017,278635.5174,961890.8798,17.8
+63627,657873.2676,291287.004,1120518.639,17.8
+63628,665836.5585,294517.0313,971533.4918,17.8
+63629,662466.1892,291404.4601,1044992.086,17.8
+63630,658826.4676,659178.0694,984709.848,17.8
+63631,637756.2408,51717.93169,0,17.8
+63632,635849.2946,51783.59605,0,17.8
+63633,635607.8698,51668.07845,527725.5673,17.8
+63634,603905.58,744385.6306,2292062.541,17.8
+63635,660400.1785,101844.5738,1285344.616,17.8
+63636,655557.904,288922.3048,712458.1526,17.8
+63637,645541.3557,314138.2585,1168109.3,17.8
+63638,649996.6185,286244.2349,976315.3737,17.8
+63639,647934.206,288060.2704,1131826.229,17.8
+63640,645540.6502,287850.868,982861.072,17.8
+63641,644740.426,287501.9407,1050956.656,17.8
+63642,643974.7526,287365.8937,995644.8054,17.8
+63643,980209.8698,287008.672,1162281.061,17.8
+63644,641430.3206,286606.3513,1003166.731,17.8
+63645,639220.1062,286406.9959,1071684.51,17.8
+63646,638895.9558,286289.9961,1015997.475,17.8
+63647,107936.4809,285827.8935,1185640.88,17.8
+63648,107224.2408,285561.7501,1020793.515,17.8
+63649,919847.0873,719365.3545,1088199.057,17.8
+63650,828477.3324,285571.3687,1031806.895,17.8
+63651,571477.9551,284503.377,1205183.133,17.8
+63652,736398.5135,284966.5039,1035646.896,17.8
+63653,666870.2872,284383.0201,1103621.727,17.8
+63654,637112.353,284034.6966,1044105.338,17.8
+63655,647848.586,234084.5391,1222690.378,17.8
+63656,622406.3485,232953.8611,1048526.609,17.8
+63657,632635.1211,331288.9125,1113206.519,17.8
+63658,627817.3382,267777.2474,1057989.105,17.8
+63659,624923.4282,283432.5632,1236150.81,17.8
+63660,624498.7472,285022.8135,1058631.285,20
+63661,2319394.098,2394479.038,4350573.505,20
+63662,2327193.073,1411663.719,3737444.239,20
+63663,2160315.588,402318.9351,2294517.282,20
+63664,1014048.803,215335.2256,585660.5601,20
+63665,742722.2666,1141748.702,2427913.737,20
+63666,1396255.924,518101.9462,2177158.653,20
+63667,1186180.262,725823.8382,2248093.201,20
+63668,1149008.036,1024785.312,2130584.778,20
+63669,1154325.721,730542.4411,1959434.517,20
+63670,1158848.678,701258.4732,2013409.593,20
+63671,1150108.368,697825.9904,2030722.869,20
+63672,1148758.813,700038.7491,1943611.099,20
+63673,1145499.932,700955.1648,1915075.885,20
+63674,1141679.812,696695.9472,1923001.571,20
+63675,1140138.722,698890.8728,2063313.238,20
+63676,1135377.975,697800.2891,1909069.024,20
+63677,1134864.85,696102.5462,1908251.006,20
+63678,1131628.86,696888.0883,1913923.852,20
+63679,176072.1948,695414.346,2058360.386,20
+63680,1225563.312,695768.8748,1898560.801,20
+63681,1250864.747,696535.1161,1902522.634,20
+63682,1120349.063,694699.2184,1904787.624,20
+63683,1090367.363,696105.3795,2053697.07,20
+63684,1137704.15,695948.1053,1892517.968,20
+63685,1118712.308,695466.9117,1896567.602,20
+63686,1116455.014,695844.1553,1897569.931,20
+63687,1115845.42,584804.8829,2050278.536,20
+63688,1452441.88,584312.5658,1886621.182,20
+63689,1110566.745,808924.1539,1889394.478,20
+63690,1111495.86,691155.3018,1893027.043,20
+63691,1108831.128,661343.303,1977708.746,20
+63692,1106304.078,680843.5466,1817044.931,20
+63693,1107970.056,675956.7568,1816424.99,20
+63694,1104142.242,675331.1316,1583081.231,20
+63695,1064286.851,188372.9703,0,20
+63696,932991.0249,119052.4562,333568.8898,20
+63697,1176698.505,1221421.915,2603989.763,20
+63698,1108776.374,526610.1312,2224786.077,20
+63699,1102680.03,673186.4806,2893502.865,20
+63700,1095550.266,655277.8133,1940859.314,20
+63701,1102701.473,759933.231,1709785.14,20
+63702,1094757.85,690164.8173,1857155.642,20
+63703,1096511.65,707937.9769,1962601.19,20
+63704,1092774.326,708639.883,1818294.655,20
+63705,1094893.408,710586.3195,1827300.045,20
+63706,1091300.87,1078452.406,1836365.626,20
+63707,1090726.6,711288.0791,1986194.24,20
+63708,1091642.033,712303.1344,1835454.276,20
+63709,1088698.535,712718.8515,1843468.069,20
+63710,167191.412,713911.6121,1848674.955,20
+63711,1181758.692,715457.3424,2005094.746,20
+63712,1239581.407,715252.9151,1846228.962,20
+63713,1031219.717,717360.9432,1851641.108,20
+63714,1089487.626,717654.0887,1856661.681,20
+63715,1093527.434,720034.3352,2016401.762,20
+63716,1085405.429,718717.8331,1848333.554,20
+63717,1083230.758,722123.2125,1860076.247,20
+63718,1084175.442,721358.0314,1862615.476,20
+63719,1080531.931,614759.2061,2018369.73,20
+63720,1082967.673,613972.6375,1860794.328,21
+63721,2670950.98,2598101.452,4388239.508,21
+63722,2295867.632,2497698.033,4318204.34,21
+63723,946719.5957,763685.2651,1839161.697,21
+63724,1203027.846,768816.9957,2140834.569,21
+63725,1327146.651,1150617.103,2262389.79,21
+63726,1226560.446,1041030.968,2174677.469,21
+63727,1224457.663,959741.5483,2288133.895,21
+63728,1220544.457,986467.04,2122895.322,21
+63729,1215346.717,983522.6632,2131367.454,21
+63730,1214002.147,978266.3581,2136209.924,21
+63731,1210686.571,976946.5497,2294236.043,21
+63732,1206364.851,972798.8971,2121241.331,21
+63733,1204683.746,971644.1453,2125933.592,21
+63734,1201224.724,967623.3615,2125864.221,21
+63735,1199831.668,967006.0032,2291377.702,21
+63736,1196397.127,965569.5414,2110542.008,21
+63737,1195476.321,962539.9509,2115845.687,21
+63738,1190695.52,959280.5536,2118596.585,21
+63739,1190713.875,960162.2884,2275006.169,21
+63740,1186908.422,955850.7514,2103848.654,21
+63741,1186569.698,956236.8337,2100899.792,21
+63742,1184770.797,952645.8435,2106131.122,21
+63743,1180830.758,952031.9211,2268588.491,21
+63744,1179742.491,950098.3995,2089801.171,21
+63745,1179096.476,949943.4665,2092744.107,21
+63746,1175374.256,946374.6939,2095432.659,21
+63747,1174523.681,945584.0746,2256348.756,21
+63748,1172992.797,943922.2661,2079615.825,21
+63749,1171887,943675.6283,2082354.21,21
+63750,1168883.471,940728.1096,2082215.022,21
+63751,1168306.085,939692.6638,2251258.821,21
+63752,1167551.533,938912.8593,2064721.909,21
+63753,1165095.823,937037.5279,2075937.896,21
+63754,1163994.44,935993.138,2070658.882,21
+63755,1162423.623,935910.385,2242354.289,21
+63756,1161057.653,933647.75,2058847.954,21
+63757,1160255.865,932369.596,2063261.425,21
+63758,1157679.972,932247.2296,2065452.78,21
+63759,1158086.223,930544.2118,2233628.388,21
+63760,1156149.756,928911.9209,2051993.347,21
+63761,1153982.155,929641.6803,2054050.269,21
+63762,1153884.843,926702.3985,2059042.258,21
+63763,1152930.021,927510.0715,2226360.579,21
+63764,1150108.373,925740.0176,2045945.179,21
+63765,1151312.294,924613.8994,2046347.794,21
+63766,1148173.704,923262.7575,2051557.357,21
+63767,1148280.562,924409.1143,2222331.729,21
+63768,1145666.477,921117.3356,2036892.327,21
+63769,1147575.185,921600.7849,2040693.801,21
+63770,1142380.44,920796.6498,2047167.238,21
+63771,1144582.506,919320.811,2215567.957,21
+63772,1142450.385,919500.6428,2028624.93,21
+63773,1141038.941,917845.0847,2039190.507,21
+63774,1140906.795,916713.7464,2038522.885,21
+63775,1140032.245,916595.0112,2209597.831,21
+63776,1136835.351,916791.6713,2026655.759,21
+63777,1134255.344,914405.1894,2030722.686,21
+63778,1134134.957,914337.8417,2033620.55,21
+63779,1132092.881,913743.3802,2205981.74,21
+63780,1131898.945,914029.2613,2020472.392,21
+63781,1816869.099,1840474.572,1966255.932,21
+63782,1812548.427,1837433.216,1959463.787,21
+63783,1810019.195,1832126.902,2131331.53,21
+63784,1806968.246,1833039.66,1947726.607,21
+63785,1805403.69,1829476.173,1951939.292,21
+63786,1804302.429,1828256.475,1951081.433,21
+63787,1801495.242,1826979.83,2131055.469,21
+63788,1800868.576,1824055.417,1943795.472,21
+63789,1800513.219,1822795.215,1945597.038,21
+63790,1796737.811,1820863.132,1951926.622,21
+63791,1796158.483,1820390.862,2125738.643,21
+63792,1794293.046,1817544.622,1940594.088,21
+63793,1793982.918,1817174.051,1941532.098,21
+63794,1791049.727,1814821.272,1948744.19,21
+63795,1791352.454,1812337.654,2123061.847,21
+63796,1788613.099,1813395.574,1937189.5,21
+63797,1787576.351,1809158.604,1939925.373,21
+63798,1787213.166,1809546.736,1943072.823,21
+63799,2220419.974,1806455.924,2120913.114,21
+63800,1779677.259,1805385.624,1933282.143,21
+63801,1780203.576,1805377.339,1937186.753,21
+63802,1776905.218,1801242.065,1941434.007,21
+63803,1776725.203,1802607.173,2114325.31,21
+63804,1776212.766,1799418.976,1931884.031,21
+63805,1773000.927,1798616.883,1932870.05,21
+63806,1774076.753,1796946.595,1939789.181,21
+63807,1771990.766,1796295.446,2112880.867,21
+63808,1771118.987,1793643.904,1928555.21,21
+63809,1769100.788,1793463.896,1919208.121,21
+63810,1768087.153,1791254.178,1924821.447,21
+63811,1768422.534,1790188.171,2096618.241,21
+63812,1764145.787,1788334.309,1909095.071,21
+63813,1762977.103,1788200.299,1910689.271,21
+63814,1760303.418,1786587.429,1911636.095,21
+63815,1759577.915,1783843.562,2087507.351,21
+63816,1756284.544,1784565.968,1896932.278,21
+63817,1756700.219,1781471.316,1898910.69,21
+63818,1752450.1,1780731.466,1900912.345,21
+63819,1750905.654,1780266.282,2078795.055,21
+63820,1747743.155,1778396.979,1886669.832,21
+63821,1744745.169,1775667.879,1886502.453,21
+63822,1742341.842,1776973.915,1890017.696,21
+63823,1739602.938,1773167.78,2068028.378,21
+63824,1737058.979,1774949.112,1874574.217,21
+63825,1735273.32,1770478.037,1876646.679,21
+63826,1732254.425,1770791.067,1881207.185,21
+63827,1730188.709,1768704.318,2057499.163,21
+63828,1727816.655,1767852.717,1864673.214,21
+63829,1725704.195,1767058.885,1865927.111,21
+63830,1723526.635,1765744.15,1867824.021,21
+63831,1720138.198,1763079.672,2050318.581,21
+63832,1719729.016,1763394.195,1851478.27,21
+63833,1716270.739,1760545.655,1857812.744,21
+63834,1714300.902,1761084.086,1854484.493,21
+63835,1712537.82,1758364.451,2041845.447,21
+63836,1710461.268,1757265.965,1843665.679,21
+63837,1706951.685,1755432.671,1840699.897,21
+63838,1707153.804,1754874.895,1841351.824,21
+63839,1703067.853,1752773.5,2026894.068,21
+63840,1701623.418,1748433.649,1830551.163,21
+63841,1467002.961,1518141.751,1354911.423,21
+63842,1449779.573,1498276.702,1322977.785,21
+63843,1441599.018,1494339.318,1504952.271,21
+63844,1436066.278,1492155.432,1295553.306,21
+63845,1432161.545,1486872.152,1291866.385,21
+63846,1426667.801,1484979.118,1284087.812,21
+63847,1421295.708,1480956.935,1466530.188,21
+63848,1418272.478,1478844.769,1260629.953,21
+63849,1413658.996,1477701.896,1263379.955,21
+63850,1410048.24,1473282.699,1249634.067,21
+63851,1405982.63,1471072.972,1433598.658,21
+63852,1401861.237,1468208.461,1224310.193,21
+63853,1397774.793,1466261.483,1240791.697,21
+63854,1394918.163,1463822.751,1213954.886,21
+63855,1388988.383,1461396.488,1399619.181,21
+63856,1385805.078,1459486.742,1193433.798,21
+63857,1381005.711,1457863.18,1215491.969,21
+63858,1378709.602,1455338.38,1179695.202,21
+63859,1374694.53,1452871.984,1367892.348,21
+63860,1371473.82,1450504.698,1160055.724,21
+63861,1368202.674,1450519.081,1191798.582,21
+63862,1364745.986,1447060.614,1145622.651,21
+63863,1361413.671,1445508.636,1337221.483,21
+63864,1359318.843,1445910.538,1125337.531,21
+63865,1354186.487,1442884.109,1169848.283,21
+63866,1351873.964,1439346.591,1113066.952,21
+63867,1349651.935,1439603.977,1305235.162,21
+63868,1345004.869,1437267.551,1092825.083,21
+63869,1343126.449,1435674.676,1145707.68,21
+63870,1339495.958,1434373.931,1082971.478,21
+63871,1335805.972,1432696.31,1270686.537,21
+63872,1333636.18,1430495.416,1064401.546,21
+63873,1330110.975,1430404.044,1124420.417,21
+63874,1326543.951,1429570.371,1050286.221,21
+63875,1323545.866,1427681.055,1242477.094,21
+63876,1320431.703,1428957.052,1033955.083,21
+63877,1317370.53,1425965.658,1102529.977,21
+63878,1314585.415,1426954.471,1021023.68,21
+63879,1310282.749,1425129.023,1214071.226,21
+63880,1309241.513,1424950.548,1004710.201,21
+63881,1304070.961,1424446.012,1082012.772,21
+63882,1301936.1,1422973.008,993810.1187,21
+63883,1297561.186,1422904.96,1184251.196,21
+63884,1295983.285,1422117.06,975539.5199,21
+63885,1292781.668,1421177.663,1062798.735,21
+63886,1288715,1420540.03,964679.9258,21
+63887,1286080.935,1420668.491,1157026.228,21
+63888,1283022.981,1418341.595,947937.3135,21
+63889,1279801.606,1419430.942,1042287.321,21
+63890,1277875.524,1417915.793,938285.0148,21
+63891,1272524.179,1417215.121,1127757.702,21
+63892,1271797.773,1417288.653,918446.7303,21
+63893,1267234.636,1415446.163,1021103.333,21
+63894,1263010.365,1416097.389,905724.2865,21
+63895,1259018.634,1414687.128,1099440.707,21
+63896,1256600.176,1414077.973,891337.9577,21
+63897,1253516.024,1414004.71,1000373.3,21
+63898,1249544.323,1413366.054,879318.4537,21
+63899,1248092.798,1412002.72,1070699.097,21
+63900,1243612.894,1412430.988,864655.8606,21
+63901,1240374.88,1409901.342,977159.5053,21
+63902,1236072.919,1408087.264,844742.7762,21
+63903,1231888.481,1406497.496,1030501.709,21
+63904,1228310.034,1403956.098,822453.7303,21
+63905,1658862.91,1402862.631,949072.2162,21
+63906,1220102.611,1377078.301,802369.4378,21
+63907,1216582.104,1371256.061,990611.9445,21
+63908,1212991.396,1366549.854,782598.0949,21
+63909,1208279.785,1362518.325,922686.5476,21
+63910,1204580.043,1358503.313,764862.0503,21
+63911,1200460.458,1355103.291,951566.2756,21
+63912,1195696.083,1350579.565,745703.6431,21
+63913,1193324.339,1347785.715,896150.9284,21
+63914,1187994.863,1342827.238,727550.0209,21
+63915,1184266.013,1339864.15,913474.7665,21
+63916,1180734.113,1336137.203,708097.965,21
+63917,1175209.189,1331878.907,870776.6239,21
+63918,1172515.15,1328532.928,689701.4166,21
+63919,1168136.401,1324449.192,875185.0574,21
+63920,1163352.769,1321168.364,672151.5562,21
+63921,1158911.718,1316647.034,844245.7676,21
+63922,1156170.763,1313701.732,653230.0711,21
+63923,1585069.287,1309641.78,837825.1184,21
+63924,1147602.235,1306117.506,635448.5821,21
+63925,1142872.175,1302047.379,818405.8242,21
+63926,1138790.062,1298493.897,616776.5649,21
+63927,1134911.452,1294730.366,800866.4607,21
+63928,1130319.372,1290993.302,599069.5253,21
+63929,1126808.517,1287890.144,792658.488,21
+63930,1123136.516,1282992.417,582639.3537,21
+63931,1119344.954,1280447.091,763923.2471,21
+63932,1118013.357,1276296.642,564343.4126,21
+63933,1112374.269,1272843.965,769101.0264,21
+63934,1112199.734,1269819.715,559759.4076,21
+63935,1107633.988,1265694.169,728869.8874,21
+63936,1105714.506,1262516.558,533165.7914,21
+63937,1102603.188,1258826.929,745073.0439,21
+63938,1100270.169,1255702.157,537787.142,21
+63939,1097385.528,1252001.887,695456.9929,21
+63940,1096148.335,1248363.849,501243.2639,21
+63941,1524779.509,1245575.274,721704.1584,21
+63942,1091516.673,1241670.665,516563.1585,21
+63943,1086801.735,1238791.87,661066.6483,21
+63944,1084530.788,1234557.768,469925.1646,21
+63945,1082305.406,1232244.01,697918.2146,21
+63946,1080746.401,1228001.827,494094.1477,21
+63947,1077150.011,1225398.798,626574.242,21
+63948,1074791.675,1221448.753,437259.7026,21
+63949,1073084.587,1218841.656,674038.1854,21
+63950,1070063.836,1215071.649,473121.4394,21
+63951,1067313.148,1216797.538,596121.5663,21
+63952,1066390.366,1214209.067,411379.1611,21
+63953,1062394.85,1210978.631,651921.3194,21
+63954,1061901.173,1207949.718,455053.3525,21
+63955,1057661.293,1204629.841,567141.9446,21
+63956,1057510.182,1201496.394,385213.5329,21
+63957,1054359.062,1198230.364,631325.8692,21
+63958,1051987.622,1195040.72,435988.2695,21
+63959,1484185.481,1192143.782,538275.2776,21
+63960,1047993.563,1188353.16,360949.6256,21
+63961,1044784.62,1190989.862,609330.7362,21
+63962,1042148.016,1186993.355,418821.112,21
+63963,1037392.3,1185774.306,526136.6635,21
+63964,1034968.083,1182163.691,348672.2658,21
+63965,1030312.998,1179645.821,598038.5532,21
+63966,1027614.799,1177324.434,411487.2888,21
+63967,1024283.788,1174320.748,503958.1873,21
+63968,1020149.281,1171841.825,335841.5393,21
+63969,1016499.641,1169157.756,583465.0639,21
+63970,1014281.703,1166251.272,399870.2206,21
+63971,1008825.418,1164327.253,487141.1434,21
+63972,1008301.563,1161110.393,321887.3486,21
+63973,1002284.151,1158826.974,568954.9533,21
+63974,999550.1385,1156086.081,388726.7056,21
+63975,996623.322,1153762.414,470344.4001,21
+63976,992620.087,1150977.647,309013.9393,21
+63977,1423784.004,1148396.232,555020.7098,21
+63978,986865.4312,1146273.988,377443.8873,21
+63979,982921.1984,1143679.886,454863.3137,21
+63980,980776.0486,1141096.69,296160.6652,21
+63981,977403.98,1138210.022,541260.0529,21
+63982,975314.887,1136041.55,366614.211,21
+63983,973641.7329,1133743.871,440153.3662,21
+63984,969188.6447,1130776.757,283255.3692,21
+63985,968181.0094,1128688.86,527762.5976,21
+63986,964618.8363,1125947.014,356486.3218,21
+63987,962988.5634,1123870.407,424443.4668,21
+63988,960487.5162,1121420.745,271479.505,21
+63989,957122.0843,1118850.498,514717.078,21
+63990,955045.7947,1116492.811,345439.7761,21
+63991,953403.3908,1114142.234,410401.6823,21
+63992,948925.422,1111717.901,259588.6921,21
+63993,948529.0218,1109532.363,501507.0027,21
+63994,945432.1513,1107315.519,335535.6255,21
+63995,942982.891,1105013.603,395644.5415,21
+63996,940276.0508,1103450.574,248258.8386,21
+63997,938584.4944,1100920.858,488568.3824,21
+63998,936183.1174,1098849.641,325022.7745,21
+63999,933447.9698,1096407.095,382023.2587,21
+64000,931385.5988,1094355.841,237129.9816,21
+64001,928207.3294,1092408.125,475485.7903,21
+64002,926564.7476,1089550.796,315203.1969,21
+64003,924339.0593,1088695.071,368603.454,21
+64004,1355943.645,1085090.097,226872.3857,21
+64005,919079.4142,1084267.52,462678.7284,21
+64006,918088.066,1081564.291,306103.2281,21
+64007,913603.9601,1079478.766,355525.0188,21
+64008,912375.1777,1077746.631,216547.6391,21
+64009,909781.3081,1075160.437,450852.1716,21
+64010,907221.3381,1073687.347,296621.54,21
+64011,905585.4305,1071452.698,342322.97,21
+64012,903019.3736,1069275.65,207192.1213,21
+64013,900706.8101,1067620.183,438761.6609,21
+64014,897500.4717,1065506.394,287088.7075,21
+64015,897138.5034,1063996.34,330543.3326,21
+64016,892618.1068,1061463.506,197676.1789,21
+64017,891785.3912,1059475.603,426306.9532,21
+64018,887941.9117,1057372.881,278176.3356,21
+64019,887268.631,1055872.19,318225.9076,21
+64020,883911.2578,1053576.477,188303.1753,21
+64021,881059.7724,1047321.267,408310.5269,21
+64022,879326.114,1044644.059,261416.5119,21
+64023,877279.9004,1040661.027,295010.6812,21
+64024,875238.1208,1037731.943,166297.0345,21
+64025,874593.615,1034436.524,391374.6115,21
+64026,872028.6375,1030820.671,248192.8485,21
+64027,872236.84,1027648.392,233312.1348,21
+64028,869200.4588,1024238.991,240153.2081,21
+64029,869243.2799,1020344.631,416050.4713,21
+64030,866410.5667,1017335.552,145261.5528,21
+64031,864622.6837,1014029.821,362875.5235,21
+64032,864618.1624,1009890.015,222011.2848,21
+64033,861702.0393,1006737.166,213668.3627,21
+64034,860342.3554,1003344.815,218178.5509,21
+64035,859548.4447,1000814.461,213402.4201,21
+64036,857217.8902,997549.9829,209624.2375,21
+64037,856201.3071,995294.3725,206906.3164,21
+64038,854204.3628,991755.812,203944.5868,21
+64039,853101.4486,989330.9751,363322.195,21
+64040,851638.508,986400.1182,112720.2608,21
+64041,849499.6673,983476.0731,319446.7001,21
+64042,847318.8744,980556.5955,189161.5269,21
+64043,847020.673,977877.2733,181044.6075,21
+64044,844613.4779,974937.452,185064.6396,21
+64045,843195.1089,971793.0566,180278.7541,21
+64046,842270.8283,969347.8998,176589.5984,21
+64047,839260.9487,965843.4329,175243.8051,21
+64048,838807.1263,963488.2902,173850.2887,21
+64049,836230.6409,960262.3772,316762.7373,21
+64050,835999.24,957446.3627,91314.48667,21
+64051,832951.4143,953831.0766,283059.303,21
+64052,832065.5495,951306.6524,166329.3964,21
+64053,829981.7152,947946.4226,161176.0465,21
+64054,828172.8316,944800.4348,166511.111,21
+64055,827406.8831,941764.9673,163816.4179,21
+64056,824520.4832,938879.9753,162264.304,21
+64057,823199.736,935666.14,161357.7473,21
+64058,822132.8399,933166.6506,160929.6722,21
+64059,820010.5279,929934.3086,290672.9504,21
+64060,817791.5653,927232.3848,86847.66549,21
+64061,816754.8923,923868.4183,260978.2423,21
+64062,815152.7101,920910.3894,154435.8908,21
+64063,812472.4807,918465.3885,150499.7814,21
+64064,811748.8541,914790.8161,154861.6326,21
+64065,808803.4528,911989.5074,153074.4097,21
+64066,808236.9132,909465.8958,151886.1529,21
+64067,805928.9052,906662.994,151063.3451,21
+64068,803602.6733,903067.828,151082.7113,21
+64069,803722.0987,900165.0485,271234.6319,21
+64070,800128.3411,897129.3493,83017.849,21
+64071,799478.7326,894119.9509,244147.8792,21
+64072,796725.9215,890843.7139,145434.3317,21
+64073,795301.0118,888332.7253,141990.3499,21
+64074,794183.6059,884752.0881,146513.6907,21
+64075,791521.7187,881699.6275,144204.2137,21
+64076,789986.6125,879059.9411,143436.312,21
+64077,788741.5234,875905.5013,142854.1201,21
+64078,787036.2868,872210.6934,142154.7693,21
+64079,785003.8929,869688.8128,141573.143,21
+64080,782800.7817,866253.1002,79775.44671,21
+64081,850013.2066,886902.121,102500.3693,21
+64082,848560.0261,883465.1176,103251.6637,21
+64083,845513.5444,879649.109,103429.2602,21
+64084,844202.5699,876034.5918,104007.5953,21
+64085,842300.1195,872793.9313,104317.7247,21
+64086,840507.9074,868539.7014,104434.9781,21
+64087,838032.9974,865287.2119,104566.9543,21
+64088,836133.9874,861534.9644,105180.4573,21
+64089,835015.476,857320.5033,105299.1074,21
+64090,833052.7236,854821.2589,105418.092,21
+64091,829871.9249,849996.9214,105831.4122,21
+64092,829849.9265,846776.1039,105866.7606,21
+64093,826244.9754,843089.0647,106173.4526,21
+64094,825384.5707,839372.661,106347.8506,21
+64095,822147.3041,835563.349,106606.6523,21
+64096,821167.7607,832149.2713,106944.0118,21
+64097,818462.374,828244.0656,106594.8709,21
+64098,816380.056,824220.1282,107368.0942,21
+64099,815435.9731,821076.7621,106900.2654,21
+64100,813075.3895,817095.1624,107598.3432,21
+64101,810596.0147,813336.8057,107584.6127,21
+64102,808172.862,809663.0837,107218.8073,21
+64103,806850.2492,805690.0654,107981.1974,21
+64104,804300.0237,802098.1349,107733.2314,21
+64105,802765.3084,798266.8489,107871.2678,21
+64106,799860.2873,794630.3776,107941.3387,21
+64107,799292.7738,790461.8437,108042.3008,21
+64108,796610.5791,786933.8116,107828.8874,21
+64109,794034.0145,783130.0013,108151.1757,21
+64110,792328.914,779573.3992,108148.8808,21
+64111,789816.4481,774968.6249,108007.6142,21
+64112,788514.2641,772256.3257,108323.0172,21
+64113,784434.5802,767758.5083,107960.0716,21
+64114,784821.8447,763901.9835,108035.0279,21
+64115,780593.5823,760807.3952,108142.5818,21
+64116,780330.2375,756376.9493,108130.4941,21
+64117,777284.8687,752633.127,107902.4457,21
+64118,775102.2201,749431.1312,108066.3113,21
+64119,772721.2409,745162.9638,108302.604,21
+64120,771002.9844,741524.1373,107312.7532,21
+64121,767301.7811,737937.4636,108197.9269,21
+64122,762566.0905,733643.1248,107876.4977,21
+64123,761139.0711,730283.6065,107453.4092,21
+64124,759709.0355,726348.2491,107893.7045,21
+64125,755003.6901,722596.697,107668.2583,21
+64126,754014.7075,718877.2718,107461.9606,21
+64127,750680.5192,715191.2945,107629.9133,21
+64128,748929.9304,711098.7328,107369.4949,21
+64129,745610.6463,707870.9734,107506.5214,21
+64130,743368.5238,703723.1364,107202.1827,21
+64131,741930.5266,700266.9477,107376.9741,21
+64132,738181.3714,696328.459,107553.9871,21
+64133,737404.3748,692438.4751,107060.4183,21
+64134,733814.0281,689297.9185,106986.567,21
+64135,731187.8288,684628.5424,107230.142,21
+64136,729975.3218,681940.805,106825.1637,21
+64137,726790.1819,677529.1594,106817.505,21
+64138,725005.1434,674790.9015,106649.3266,21
+64139,721989.5595,670338.5781,106941.0092,21
+64140,720750.6006,666481.4964,106146.8848,21
+64141,655154.5197,639865.6249,80055.32954,21
+64142,651900.863,635439.2565,79643.52846,21
+64143,650990.4644,632815.0591,78655.9084,21
+64144,648101.468,629040.6508,79184.90826,21
+64145,646938.9453,625436.0326,78060.7136,21
+64146,644776.553,621965.2677,78338.5739,21
+64147,642622.0818,618524.0334,77997.58273,21
+64148,641242.3007,615079.3568,77672.48145,21
+64149,638688.3859,611348.7621,77354.87899,21
+64150,636703.8724,607694.626,77268.11355,21
+64151,635474.1811,603914.3756,76813.66011,21
+64152,632904.9827,601128.3967,76357.57164,21
+64153,631557.0572,597637.6275,76511.27347,21
+64154,629453.0471,593531.7596,75648.12348,21
+64155,627492.0206,590263.0395,75898.709,21
+64156,626104.6367,586134.3008,74967.04172,21
+64157,623798.2271,583122.1141,75264.88767,21
+64158,622063.9366,579435.1303,74366.38863,21
+64159,620670.1512,575833.7354,74279.50333,21
+64160,618319.4118,572143.3762,73909.19196,21
+64161,616920.1655,569201.4099,73509.80013,21
+64162,614988.4918,565258.6763,73178.40849,21
+64163,612910.1763,561865.8507,72802.05461,21
+64164,611583.1836,558639.9631,72385.34488,21
+64165,609605.4514,554638.775,71618.7405,21
+64166,607423.5645,551817.8584,71838.11561,21
+64167,606513.9631,547841.9466,71068.37225,21
+64168,603707.172,544569.4818,70569.25308,21
+64169,602359.9925,541409.9461,70273.87497,21
+64170,601866.3227,537479.2842,69596.62257,21
+64171,600602.4327,534523.5304,69557.01842,21
+64172,599140.8133,530998.2024,68580.14076,21
+64173,598355.3933,527787.952,68335.4166,21
+64174,597071.4625,524456.7679,67804.62031,21
+64175,596208.9944,521577.3233,67915.02563,21
+64176,594728.0925,517922.5973,67387.68883,21
+64177,594238.5637,514895.5582,66873.43877,21
+64178,592627.9742,511213.5461,66295.51272,21
+64179,592107.4249,508172.5271,66376.08068,21
+64180,590807.3736,504417.2084,65013.91769,21
+64181,589712.814,501485.3783,65045.92658,21
+64182,589038.0446,497893.2355,64121.89267,21
+64183,589295.0864,494735.6036,63808.35619,21
+64184,588739.6385,491163.374,63202.29597,21
+64185,587956.7077,488395.973,62726.07451,21
+64186,586816.1677,484117.5881,61761.75181,21
+64187,586357.5648,481133.6024,61611.65036,21
+64188,584955.0522,477239.672,60878.24809,21
+64189,584448.1293,474456.5871,60088.13134,21
+64190,583177.8881,470607.5595,59554.99392,21
+64191,582556.5338,467705.788,59064.14483,21
+64192,581414.5471,464020.8968,58190.19639,21
+64193,580475.5527,460697.2787,57681.95515,21
+64194,579533.5977,457712.9872,57243.75768,21
+64195,578561.7611,453885.2695,56313.67895,21
+64196,577608.8025,451019.3796,55815.1517,21
+64197,576779.3449,448386.7839,55108.38856,21
+64198,575776.6026,444348.9987,54552.84695,21
+64199,574739.0402,440730.9156,53683.43864,21
+64200,573918.9491,437381.1439,53344.3177,21
+64201,577122.8774,443302.0338,60760.65259,21
+64202,576121.2973,444542.9084,60252.21818,21
+64203,574223.3983,445820.9889,59143.90533,21
+64204,573261.5317,446565.6301,59124.68261,21
+64205,570888.4723,447800.5648,57799.72047,21
+64206,569348.3282,448403.9499,57392.22639,21
+64207,567123.3985,449988.5612,56322.76619,21
+64208,564852.6803,450457.6755,56040.87464,21
+64209,564095.7222,451656.7978,54948.27034,21
+64210,561322.105,452815.2627,54179.12685,21
+64211,559705.1064,453526.6046,53729.62883,21
+64212,557550.414,454686.2964,52196.05322,21
+64213,555195.7633,455978.2842,51955.91151,21
+64214,553140.1043,456337.8734,51080.98633,21
+64215,551259.3277,457924.1979,50176.46551,21
+64216,549176.5105,458435.4493,49605.73321,21
+64217,547026.1279,459837.9748,48292.92064,21
+64218,545206.4079,460458.4289,48159.06702,21
+64219,543436.2298,461565.0651,46795.42215,21
+64220,540759.9534,462708.8872,46050.14463,21
+64221,539328.9831,463675.9863,45328.45839,21
+64222,537015.3231,464361.1893,44531.0625,21
+64223,535166.027,465669.2001,43699.78432,21
+64224,533060.7338,465714.9329,42858.11907,21
+64225,530931.3074,466841.6229,42030.66531,21
+64226,530171.7024,467598.3113,41179.71553,21
+64227,528101.1287,468715.9065,40638.55034,21
+64228,526200.6533,469731.5017,39646.66391,21
+64229,524908.8619,470678.8657,38944.31666,21
+64230,522217.9484,471455.8536,38237.76139,21
+64231,520810.2675,472852.092,38381.05857,21
+64232,518196.9093,473560.4785,37577.6692,21
+64233,516272.9074,474952.3016,37734.85137,21
+64234,513925.3627,475473.7013,37435.26752,21
+64235,511894.7382,476808.5964,37288.08818,21
+64236,508967.2677,477811.8995,36802.34822,21
+64237,506953.2262,478866.8208,36924.86894,21
+64238,504453.3416,479684.4682,36466.44648,21
+64239,502633.3823,481037.2706,36592.9346,21
+64240,500279.2945,481822.6316,35930.25235,21
+64241,497768.0928,483031.9058,36127.19548,21
+64242,495295.7331,483756.5751,35585.00606,21
+64243,493608.5249,485390.5719,35679.22628,21
+64244,490877.9428,486185.8938,35252.88422,21
+64245,488712.8746,487140.3611,35227.57312,21
+64246,486402.2148,488432.6603,34794.17468,21
+64247,483823.9995,489835.0706,35008.70705,21
+64248,481937.4363,491102.1378,34561.70932,21
+64249,479696.034,491962.8387,34323.44113,21
+64250,476974.8874,493205.1376,34119.7111,21
+64251,474663.9551,494431.7227,34112.55149,21
+64252,472075.5594,495081.5632,33752.94431,21
+64253,470011.0472,496667.2286,33644.95156,21
+64254,467204.7741,497179.2928,33535.3096,21
+64255,465057.1334,498000.3791,33207.08071,21
+64256,462742.1941,499499.2801,32973.651,21
+64257,459976.9739,500429.3617,33245.834,21
+64258,456700.5018,501635.9668,32549.91621,21
+64259,454505.7875,502511.691,32793.12896,21
+64260,451491.7396,504285.4979,32378.38658,21
+64261,444865.1075,498477.9928,23264.94678,21
+64262,442658.1686,498471.265,23242.15906,21
+64263,441374.5386,497959.4083,22580.64451,21
+64264,439647.6081,497657.3378,23029.76936,21
+64265,437541.4944,497308.1216,22583.00862,21
+64266,436550.8613,496985.9957,22588.99816,21
+64267,434085.248,496678.2465,22480.87838,21
+64268,432814.8497,496521.7552,22401.86048,21
+64269,431241.1607,496126.2434,22368.56527,21
+64270,429186.5577,495788.9604,22282.19517,21
+64271,427580.7269,495683.4561,22039.38949,21
+64272,425704.8711,495192.6119,22196.18226,21
+64273,424220.3888,495179.6355,21709.1282,21
+64274,421918.2965,494646.4797,22076.00108,21
+64275,420866.3936,494434.6678,21641.43185,21
+64276,418642.528,494441.1113,21725.6487,21
+64277,416983.66,494191.934,21652.33402,21
+64278,415231.1813,494536.2065,21525.91529,21
+64279,413534.0207,494040.4224,21531.28286,21
+64280,411618.4445,494814.3992,21447.46843,21
+64281,409944.0691,494428.2093,21330.71385,21
+64282,407877.9244,494672.9695,21183.9873,21
+64283,406410.7406,494091.472,21129.36294,21
+64284,404664.0191,494723.7483,21114.67926,21
+64285,401977.9287,494469.5123,21119.81036,21
+64286,398964.9767,495016.1275,21028.71156,21
+64287,398032.0655,494619.8091,20652.71358,21
+64288,395541.2024,495213.3148,21054.72697,21
+64289,394871.7942,494565.2729,20795.15602,21
+64290,393442.2105,494504.5918,20587.00149,21
+64291,392786.4964,494827.2506,20714.35368,21
+64292,391297.7517,494531.7634,20596.72823,21
+64293,390747.0458,494378.9497,20494.76503,21
+64294,389535.9587,494435.907,20612.12733,21
+64295,388666.6835,494160.7172,20397.38706,21
+64296,387743.7559,494210.1047,20534.76756,21
+64297,386839.5141,493987.8676,20254.0164,21
+64298,385915.0877,493932.6093,20329.82663,21
+64299,385030.4374,493854.3494,20441.8316,21
+64300,383940.7686,493737.6388,20186.40915,21
+64301,383144.0867,493876.6101,20343.87114,21
+64302,382144.5209,493160.9199,20108.18672,21
+64303,381349.6938,493756.3052,20225.59005,21
+64304,380237.4789,493208.2973,20009.65162,21
+64305,379246.3305,493536.9004,20254.82483,21
+64306,378489.7264,493229.4327,20131.64571,21
+64307,377449.3174,492804.1929,19807.35358,21
+64308,376655.776,493209.0447,20160.75551,21
+64309,375635.8734,492767.0262,19949.31689,21
+64310,374727.3947,493050.3095,20041.79008,21
+64311,374181.1908,492775.1618,19978.19817,21
+64312,372573.3476,492409.8888,19834.36979,21
+64313,372264.1425,492598.5561,19977.12982,21
+64314,370916.9946,497822.7248,19754.84071,21
+64315,370475.2771,496337.5106,19975.98988,21
+64316,369183.6635,497594.8415,19788.11245,21
+64317,368484.3454,497790.433,19767.93288,21
+64318,367600.9197,498692.509,20275.51478,21
+64319,367087.6236,498951.6553,19929.9395,21
+64320,366055.6444,498700.6322,20176.08769,21
+64321,366548.9648,500371.7325,20071.85912,21
+64322,367397.6989,502500.6856,20313.38647,21
+64323,367870.9504,504234.8064,20080.86916,21
+64324,368548.156,505485.7927,20588.43436,21
+64325,369110.2743,507895.6215,20109.73806,21
+64326,369761.8401,509338.2864,20617.43707,21
+64327,370377.0634,511360.0627,20493.68273,21
+64328,371016.9934,513233.4969,20626.73325,21
+64329,371729.8597,514701.5762,20764.31338,21
+64330,372301.7018,516846.7474,20670.17294,21
+64331,372892.1488,518424.2521,20793.411,21
+64332,373562.2639,520208.6659,21019.92229,21
+64333,374334.9712,522390.8539,20955.38969,21
+64334,374575.2815,523817.6421,20940.54347,21
+64335,375753.2309,525900.845,21447.6922,21
+64336,376116.9018,527414.4782,20969.79086,21
+64337,376920.8866,529377.5058,21457.55568,21
+64338,377385.4591,531247.5308,21264.62153,21
+64339,378266.0368,532876.4515,21595.58151,21
+64340,378837.8816,534939.5382,21757.19233,21
+64341,379594.6154,537059.3852,21407.76881,21
+64342,379999.4039,538870.5438,21885.70006,21
+64343,380920.4389,540397.9886,21801.61288,21
+64344,381534.5028,542951.8673,22023.98391,21
+64345,382098.2833,544138.254,21954.07262,21
+64346,383024.9328,545962.389,22309.00035,21
+64347,383421.5822,548427.0802,22068.60957,21
+64348,384369.5691,550079.2743,22603.44031,21
+64349,384852.6025,552129.3512,22211.75614,21
+64350,385690.4324,553872.914,22633.5111,21
+64351,386108.5209,555350.9142,22591.37571,21
+64352,387234.0524,557205.569,22776.53464,21
+64353,387521.6959,558113.4461,22886.32257,21
+64354,388416.461,559726.125,22891.8485,21
+64355,388961.0358,561568.0481,22679.98734,21
+64356,389943.6126,562019.7291,23403.48454,21
+64357,390286.7335,564142.7353,22974.72302,21
+64358,391139.2117,565163.9354,23301.77751,21
+64359,392029.9408,566355.1476,23203.46766,21
+64360,392663.9361,567932.2214,23501.99167,21
+64361,393508.9082,569213.5738,23460.72896,21
+64362,394174.0664,570343.4946,23523.05319,21
+64363,394944.8788,571812.9213,23746.15434,21
+64364,395588.2944,572865.6981,23771.06677,21
+64365,396451.6894,574374.5537,23757.86848,21
+64366,397091.0961,575362.9082,24065.83065,21
+64367,398093.0437,576786.3288,23807.70216,21
+64368,398430.9559,577927.692,24285.39625,21
+64369,399560.6849,578967.3679,24102.73747,21
+64370,400178.7286,580788.3579,24339.8778,21
+64371,400824.7252,581089.2083,24341.53148,21
+64372,401578.3638,583162.4918,24620.97867,21
+64373,402707.2014,583654.0562,24509.06132,21
+64374,405805.8281,585301.4492,24652.24599,21
+64375,405479.4985,586006.1019,24866.0955,21
+64376,407024.2578,587953.152,24796.58561,21
+64377,408357.1531,588356.2695,24930.35573,21
+64378,409309.0807,589899.4262,25177.06425,21
+64379,410473.7195,590882.1957,25093.70796,21
+64380,411523.3717,591929.1942,25199.30608,21
+64381,451277.53,662749.4494,66728.67893,21
+64382,454434.5315,668897.1932,70483.65832,21
+64383,455763.6853,672049.2473,72661.25584,21
+64384,457585.3109,674700.7346,72746.02083,21
+64385,458548.5008,677662.9968,73330.68118,21
+64386,460564.7949,680709.9022,74504.54794,21
+64387,462015.388,683694.424,75022.25351,21
+64388,463466.4799,686569.8643,75519.97405,21
+64389,464853.3247,689263.1613,76686.39074,21
+64390,510755.6836,692181.2185,76766.46033,21
+64391,516817.1931,694870.0688,77935.57667,21
+64392,508701.9037,698162.1931,78180.93112,21
+64393,516494.2311,700487.913,79184.9572,21
+64394,520005.9006,703932.9268,79840.74697,21
+64395,522558.8278,705791.2173,80382.20894,21
+64396,524456.1543,709208.9337,80717.54178,21
+64397,527943.6243,711301.7803,81837.04983,21
+64398,531281.2998,714583.2881,82131.68647,21
+64399,533653.3844,716539.978,83045.43688,21
+64400,538673.3418,719865.5057,83834.62647,21
+64401,539048.4555,722193.105,84047.44489,21
+64402,543145.501,724447.9861,84889.34524,21
+64403,544915.4518,727533.2645,85708.60156,21
+64404,547064.3727,729495.2623,85839.61902,21
+64405,550464.0467,732645.8887,87011.45793,21
+64406,555479.0734,734668.694,87500.5341,21
+64407,561258.664,737599.3842,87877.25666,21
+64408,562334.7033,739607.7274,88904.28989,21
+64409,566158.3548,741900.0326,89274.8697,21
+64410,569291.8654,745232.8737,90001.80746,21
+64411,572087.2281,746705.034,90703.76499,21
+64412,575213.2586,749981.5452,90819.12778,21
+64413,575932.37,751590.0649,92387.35793,21
+64414,579925.3757,754592.3599,92241.62225,21
+64415,581648.1549,756299.0681,93028.08965,21
+64416,584416.3462,759550.2625,93932.16112,21
+64417,585219.2946,760840.0647,94219.72412,21
+64418,589040.5129,764285.2417,94990.34919,21
+64419,599570.5724,765500.176,95676.54046,21
+64420,603474.2716,769002.4543,96228.93033,21
+64421,607138.5379,770092.8291,97274.09105,21
+64422,609380.0268,773683.1503,97432.19275,21
+64423,611717.3012,774770.1905,98389.46483,21
+64424,614238.6711,777948.8733,98924.32928,21
+64425,616856.4548,779427.7284,99856.46708,21
+64426,617647.5292,782431.49,100062.1688,21
+64427,622185.9773,784307.2827,100934.6823,21
+64428,622492.6685,786550.7697,101516.1698,21
+64429,626981.5895,789092.9421,102471.9427,21
+64430,626960.2578,790985.7555,102430.3286,21
+64431,630206.1055,793962.6936,103917.8481,21
+64432,631366.1019,794618.3738,103791.7173,21
+64433,634653.6915,798778.2333,104972.8041,21
+64434,635914.6816,799739.5671,107327.38,21
+64435,637252.3669,802239.9412,109733.6992,21
+64436,640296.6098,804775.4933,109786.2721,21
+64437,641623.8556,806373.8915,111459.9909,21
+64438,642993.9952,809154.2046,112686.2512,21
+64439,645789.9495,811076.2919,114724.2323,21
+64440,646787.2553,813141.8241,115171.1543,21
+64441,707965.8925,838684.1361,139486.2441,21
+64442,714900.1928,843654.0661,141741.0088,21
+64443,716055.4941,846894.2835,143784.6167,21
+64444,717842.8256,850034.6401,145147.8998,21
+64445,720925.486,853528.8055,147265.0057,21
+64446,723037.0427,856474.6152,176703.5741,21
+64447,723256.4016,859022.2488,207242.852,21
+64448,726708.8769,863335.2821,187210.0503,21
+64449,726778.0127,865582.0377,199140.3827,21
+64450,729732.7289,890683.139,202571.8125,21
+64451,730385.0276,893352.8465,206000.0542,21
+64452,732529.067,894871.7889,209199.4667,21
+64453,734462.7699,899698.3203,212864.3722,21
+64454,734343.7734,905041.1066,214632.6747,21
+64455,738281.3701,908914.5932,219744.2253,21
+64456,736998.5014,912246.819,230850.6495,21
+64457,740182.6764,916816.9091,231570.7586,21
+64458,741760.7305,920447.0348,238638.3118,21
+64459,741360.1397,924986.0461,237775.4229,21
+64460,744997.6385,927776.5311,243606.5928,21
+64461,745215.5604,932410.5243,244300.9745,21
+64462,745891.9683,935708.5436,248168.8786,21
+64463,748085.709,939730.3112,250904.3346,21
+64464,748387.5255,943903.0613,252189.2933,21
+64465,750561.8802,947562.5685,256140.61,21
+64466,751249.5359,950552.7993,258719.4455,21
+64467,752459.8221,954463.6667,261938.3652,21
+64468,753825.3345,959351.2271,263450.4128,21
+64469,754994.3049,960687.7832,264986.7047,21
+64470,755376.4681,965851.3089,270880.1744,21
+64471,757265.9116,968801.1607,269446.3515,21
+64472,758433.8074,973073.5447,273628.2203,21
+64473,758652.7735,975297.048,276682.6542,21
+64474,760732.8633,980521.2092,278317.3048,21
+64475,760946.4576,983307.6307,279741.3845,21
+64476,762534.3673,986576.8508,283303.8919,21
+64477,763532.2493,990001.0115,284545.5098,21
+64478,763902.1094,994581.2151,287694.2037,21
+64479,765179.5435,997179.1503,288083.9034,21
+64480,766568.654,999921.6932,292680.0341,21
+64481,766368.1414,1005332.3,293657.1653,21
+64482,767933.598,1006831.325,296855.761,21
+64483,769408.4593,1011105.096,297649.3509,21
+64484,768546.4481,1014634.443,300967.3623,21
+64485,772398.1332,1017684.765,301801.6463,21
+64486,770127.8527,1020832.035,304813.8748,21
+64487,773306.5267,1025690.461,306355.4025,21
+64488,772247.2042,1027200.315,308776.4497,21
+64489,775030.2025,1031453.889,311806.2384,21
+64490,773862.1485,1034539.124,311001.5113,21
+64491,776015.2169,1038755.807,316465.6281,21
+64492,776394.5587,1040625.776,316498.2607,21
+64493,777134.5292,1044543.629,318008.6513,21
+64494,777577.3337,1049462.95,320804.4815,21
+64495,779870.7493,1051705.022,322032.0058,21
+64496,778426.8165,1056193.728,324881.2092,21
+64497,781031.7351,1057916.505,326231.669,21
+64498,780267.8322,1063009.498,328390.3774,21
+64499,782158.9864,1065159.218,329885.028,21
+64500,782776.1877,1068455.141,333715.117,21
+64501,780251.8901,1071625.843,498702.2926,21
+64502,778613.7313,1073530.705,498763.6999,21
+64503,775808.2242,1077391.787,497283.3544,21
+64504,774725.9495,1078530.23,494221.6429,21
+64505,771542.8892,1081353.264,494908.6747,21
+64506,768585.2465,1083872.438,490587.7829,21
+64507,768215.6705,1086054.97,490854.9663,21
+64508,763157.1101,1088214.023,491491.4293,21
+64509,763188.4332,1089861.473,490518.0701,21
+64510,758720.8382,1091380.453,487282.9085,21
+64511,757554.8366,1095092.653,488003.3273,21
+64512,755356.977,1096354.204,487272.8602,21
+64513,752386.0382,1099580.335,484665.3956,21
+64514,749816.112,1100788.18,485400.2764,21
+64515,747580.0362,1103249.485,483191.8159,21
+64516,745114.2064,1106097.969,484201.8481,21
+64517,742113.5561,1108773.622,481964.8694,21
+64518,740500.9176,1109741.248,481296.8965,21
+64519,737735.2224,1112308.87,480743.1176,21
+64520,734033.0658,1115537.938,480270.0275,21
+64521,733002.691,1117075.178,478374.5305,21
+64522,729726.0037,1119036.699,480247.3509,21
+64523,727510.8016,1121683.346,478952.8343,21
+64524,724774.3582,1123998.421,477192.0654,21
+64525,723543.0476,1125384.833,478376.3267,21
+64526,719648.9382,1128266.705,478977.5342,21
+64527,717773.0997,1130354.954,476291.6444,21
+64528,715367.0018,1133215.358,477466.9874,21
+64529,711663.9593,1134871.38,478429.5674,21
+64530,709457.8218,1136421.919,475637.1214,21
+64531,707524.9027,1139649.558,477306.6385,21
+64532,704340.6853,1141280.069,476534.3216,21
+64533,700650.5524,1143026.914,476447.4326,21
+64534,699797.5879,1146083.609,477123.2312,21
+64535,695557.0251,1147994.352,476546.9319,21
+64536,694035.0941,1150308.484,479071.1854,21
+64537,689324.7743,1152390.151,477131.3992,21
+64538,689373.2584,1154327.122,478838.2345,21
+64539,684545.4221,1156094.437,478065.5122,21
+64540,682606.7286,1160278.896,478756.6928,21
+64541,679361.7233,1159531.672,479106.6587,21
+64542,676583.7915,1163430.048,479726.4813,21
+64543,674338.3009,1165222.154,479671.023,21
+64544,670769.9471,1167460.623,480688.0352,21
+64545,669167.1426,1169886.6,481289.9417,21
+64546,664793.0418,1171499.054,481281.5438,21
+64547,662482.1487,1173661.411,480869.0479,21
+64548,660201.7745,1175685.184,483606.4562,21
+64549,654939.4084,1179050.334,481776.6263,21
+64550,654257.686,1179286.574,483838.9801,21
+64551,650376.6326,1182249.834,484100.1045,21
+64552,646819.1946,1185555.015,483808.7886,21
+64553,644966.8505,1185768.471,485808.2715,21
+64554,641000.3549,1189392.643,485523.0371,21
+64555,638530.3067,1190445.088,486909.1739,21
+64556,636820.4521,1193330.837,487598.6698,21
+64557,631496.5545,1195398.772,487598.5653,21
+64558,630600.6187,1196920.071,487981.627,21
+64559,626201.049,1199404.126,489284.3025,21
+64560,624193.8322,1201213.849,489859.572,21
+64561,631475.4237,1211481.28,503937.7132,21
+64562,632547.9913,1213630.522,506571.3976,21
+64563,633834.6782,1216466.008,507190.4103,21
+64564,631851.245,1217051.43,509071.1256,21
+64565,633925.5295,1220030.45,510401.2548,21
+64566,632231.2698,1221625.295,511382.0785,21
+64567,633476.5892,1222321.517,513415.7244,21
+64568,632849.9019,1224533.755,514052.6719,21
+64569,633940.1688,1226712.356,516716.2635,21
+64570,632661.154,1228759.963,516765.0211,21
+64571,634316.5068,1228497.339,518331.9812,21
+64572,633231.7902,1232261.549,519199.049,21
+64573,633757.9593,1233098.553,520611.5865,21
+64574,632799.5751,1234403.95,522833.2422,21
+64575,633292.3969,1237036.289,522509.2976,21
+64576,634195.3478,1237579.932,526221.5906,21
+64577,632767.4309,1239595.903,524799.7533,21
+64578,632923.4911,1240931.496,528509.9769,21
+64579,634048.3513,1243077.74,527839.0665,21
+64580,633143.6839,1244781.93,531158.0073,21
+64581,633827.7293,1245134.149,531364.0482,21
+64582,631531.6458,1247958.87,532249.1539,21
+64583,635542.9073,1248572.646,534224.2117,21
+64584,631122.2168,1251637.149,534391.1838,21
+64585,634679.487,1252124.662,538270.7526,21
+64586,632464.3986,1253511.454,535687.006,21
+64587,632587.8117,1255654.988,539847.7914,21
+64588,632903.7276,1256707.248,539458.8234,21
+64589,632607.4471,1258313.995,541358.5669,21
+64590,632446.3449,1261237.369,544018.4481,21
+64591,632905.6215,1263026.079,542717.6764,21
+64592,632289.023,1263335.38,545241.7022,21
+64593,632336.1988,1265621.413,546568.0746,21
+64594,632481.332,1267275.332,547943.9139,21
+64595,632101.9287,1268311.92,549458.3365,21
+64596,631605.5057,1270940.305,548643.0077,21
+64597,632598.1726,1271269.201,552338.2952,21
+64598,630831.3509,1273713.331,553480.0989,21
+64599,632915.3653,1274221.387,552775.6381,21
+64600,630873.5816,1276509.88,556231.5293,21
+64601,631855.1886,1277938.434,555690.0147,21
+64602,630541.0095,1279521.022,558134.5599,21
+64603,632094.429,1280100.41,558488.5451,21
+64604,630764.8451,1282878.077,561031.9467,21
+64605,630893.3809,1283837.533,560776.0339,21
+64606,630808.0101,1285314.245,562989.1891,21
+64607,630781.9714,1286033.148,564743.321,21
+64608,629954.0255,1288918.719,563173.1055,21
+64609,629961.2369,1289091.621,566970.8188,21
+64610,631593.3316,1292080.368,567973.4538,21
+64611,629078.0035,1292069.011,568644.8456,21
+64612,629102.0878,1294572.183,570342.8479,21
+64613,630715.244,1295149.85,570570.9237,21
+64614,629089.1351,1297530.757,571934.384,21
+64615,629765.8009,1298572.361,573563.1055,21
+64616,628341.6953,1299356.393,575624.705,21
+64617,629958.1981,1301871.786,574744.6131,21
+64618,627988.6776,1303581.523,577319.9574,21
+64619,628867.3715,1304543.283,578242.511,21
+64620,629285.1227,1305819.688,580133.8465,21
+64621,627821.7068,1305376.081,580552.8477,21
+64622,629046.8745,1307725.118,584612.226,21
+64623,627802.4673,1307367.22,587238.2268,21
+64624,626978.2397,1307860.718,586813.5873,21
+64625,625613.1941,1307756.004,590111.1925,21
+64626,624879.527,1307997.543,592202.6132,21
+64627,623747.5978,1307510.192,591291.0283,21
+64628,622958.6904,1308460.289,595924.3146,21
+64629,623019.374,1308634.928,597321.4624,21
+64630,620855.4959,1307080.972,598464.3255,21
+64631,619861.7623,1308913.744,599922.0659,21
+64632,619876.0975,1308364.688,602226.1221,21
+64633,617686.5137,1309389.58,605749.3407,21
+64634,618093.6323,1307620.809,604931.5202,21
+64635,616500.2279,1309497.025,607842.6887,21
+64636,615834.7088,1309032.827,610215.6209,21
+64637,613810.9529,1308269.759,610684.3509,21
+64638,614472.8506,1308574.185,613673.3632,21
+64639,612995.7796,1309419.606,615714.235,21
+64640,611138.8913,1309321.434,616902.0062,21
+64641,610829.0424,1309530.636,618898.5556,21
+64642,609819.32,1308648.288,621615.2588,21
+64643,609680.2139,1309413.225,623153.2965,21
+64644,607430.8548,1309160.187,625245.3251,21
+64645,606935.7606,1309319.619,626900.4145,21
+64646,607147.822,1309456.183,629007.4654,21
+64647,604166.1912,1309114.139,630505.365,21
+64648,603920.1537,1309498.872,633615.7773,21
+64649,603735.0534,1309364.137,634878.0779,21
+64650,601433.1974,1310236.725,636763.8269,21
+64651,601626.0275,1308328.051,639335.272,21
+64652,600423.5698,1310179.196,640254.3458,21
+64653,598611.5925,1309644.597,643984.6493,21
+64654,598791.8796,1309994.075,644613.6151,21
+64655,596819.1719,1309213.467,648006.0453,21
+64656,596420.1216,1309597.004,647019.8942,21
+64657,595632.3398,1309548.318,652958.3105,21
+64658,594271.2986,1309133.487,651595.0313,21
+64659,592223.9273,1310678.714,655411.6408,21
+64660,593701.7506,1309121.1,656762.1285,21
+64661,590717.9399,1309122.466,659448.8269,21
+64662,590343.7775,1310214.41,660875.8204,21
+64663,588575.8299,1309502.787,663508.7547,21
+64664,588938.4967,1309163.588,664826.8589,21
+64665,586712.3459,1309622.894,667476.6979,21
+64666,587599.681,1310049.093,669476.476,21
+64667,584390.8965,1308617.935,669888.7015,21
+64668,583654.3416,1310746.978,674191.6445,21
+64669,584010.4262,1308421.637,675261.1019,21
+64670,581704.7456,1310186.99,677367.9637,21
+64671,581275.2276,1309400.415,680606.3417,21
+64672,580432.6518,1308662.091,680944.9547,21
+64673,578795.2847,1309655.836,683142.3744,21
+64674,578538.3744,1309679.362,687587.4798,21
+64675,576733.9231,1309286.441,687087.3334,21
+64676,576350.1786,1308566.949,690278.1562,21
+64677,574477.9307,1310112.666,690922.6976,21
+64678,574526.1589,1308698.991,695510.335,21
+64679,572693.4265,1309314.136,696343.7311,21
+64680,572090.4695,1308508.652,700916.193,15.6
+64681,0,0,0,15.6
+64682,0,0,0,15.6
+64683,0,765.7052135,0,15.6
+64684,0,0,0,15.6
+64685,0,0,0,15.6
+64686,0,0,1434792.867,15.6
+64687,0,0,0,15.6
+64688,0,0,0,15.6
+64689,0,0,0,15.6
+64690,0,0,0,15.6
+64691,0,0,0,15.6
+64692,0,0,0,15.6
+64693,0,0,0,15.6
+64694,0,0,0,15.6
+64695,0,0,0,15.6
+64696,0,0,0,15.6
+64697,0,0,0,15.6
+64698,0,0,0,15.6
+64699,0,0,0,15.6
+64700,339505.0541,0,0,15.6
+64701,0,0,0,15.6
+64702,0,0,0,15.6
+64703,0,0,0,15.6
+64704,0,0,0,15.6
+64705,0,0,0,15.6
+64706,0,0,0,15.6
+64707,0,0,0,15.6
+64708,0,0,0,15.6
+64709,0,0,0,15.6
+64710,0,0,0,15.6
+64711,0,0,0,15.6
+64712,0,0,0,15.6
+64713,0,0,0,15.6
+64714,0,0,0,15.6
+64715,0,0,0,15.6
+64716,0,0,0,15.6
+64717,0,0,0,15.6
+64718,0,0,0,15.6
+64719,0,0,0,15.6
+64720,0,0,0,15.6
+64721,0,0,1356962.485,15.6
+64722,0,0,0,15.6
+64723,0,0,156758.3458,15.6
+64724,0,0,154552.3861,15.6
+64725,0,0,151729.616,15.6
+64726,0,0,149686.123,15.6
+64727,0,0,147002.3079,15.6
+64728,0,0,145051.571,15.6
+64729,0,0,142471.6009,15.6
+64730,0,0,140598.1524,15.6
+64731,0,0,138113.1197,15.6
+64732,0,0,136310.6412,15.6
+64733,0,0,133913.7766,15.6
+64734,0,0,132176.6034,15.6
+64735,0,0,129862.3662,15.6
+64736,0,0,128186.5596,15.6
+64737,0,0,125951.0315,15.6
+64738,0,0,120804.9419,15.6
+64739,0,0,125994.7652,15.6
+64740,0,0,119370.9099,15.6
+64741,0,0,753031.6081,15.6
+64742,0,0,27272.20301,15.6
+64743,0,0,315468.7747,15.6
+64744,339540.2948,0,6919.827022,15.6
+64745,0,0,242384.3856,15.6
+64746,0,0,139579.645,15.6
+64747,0,0,149821.9902,15.6
+64748,0,0,7075.001841,15.6
+64749,0,0,233633.8085,15.6
+64750,0,0,115121.2987,15.6
+64751,0,0,0,15.6
+64752,0,0,0,15.6
+64753,0,0,0,15.6
+64754,0,0,0,15.6
+64755,0,0,0,15.6
+64756,0,0,0,15.6
+64757,0,0,940758.5016,15.6
+64758,0,0,0,15.6
+64759,0,0,0,15.6
+64760,0,0,0,15.6
+64761,0,0,0,15.6
+64762,0,0,0,15.6
+64763,0,0,0,15.6
+64764,0,0,0,15.6
+64765,0,0,0,15.6
+64766,0,0,0,15.6
+64767,0,0,0,15.6
+64768,0,0,0,15.6
+64769,0,0,0,15.6
+64770,0,0,0,15.6
+64771,0,368093.5404,0,15.6
+64772,0,0,0,15.6
+64773,0,0,0,15.6
+64774,0,0,0,15.6
+64775,0,0,0,15.6
+64776,0,0,0,15.6
+64777,0,0,0,15.6
+64778,0,0,0,15.6
+64779,0,0,0,15.6
+64780,0,0,0,15.6
+64781,0,0,0,15.6
+64782,0,0,0,15.6
+64783,0,0,0,15.6
+64784,0,96.65911054,0,15.6
+64785,0,0,0,15.6
+64786,0,0,0,15.6
+64787,0,0,0,15.6
+64788,0,3.932675646,0,15.6
+64789,339575.7396,0,0,15.6
+64790,0,103.3570777,0,15.6
+64791,0,0,0,15.6
+64792,0,0,0,15.6
+64793,0,0,912433.3558,15.6
+64794,0,0,0,15.6
+64795,438128.6603,237.8522408,89997.34029,15.6
+64796,0,0,92306.04807,15.6
+64797,0,34116.17421,90692.93072,15.6
+64798,0,3336.631759,89563.89116,15.6
+64799,0,6519.508215,88087.2876,15.6
+64800,0,13009.36194,87037.67555,15.6
+64801,0,13134.62778,85599.31605,15.6
+64802,0,11318.47438,84564.96667,15.6
+64803,0,11954.90303,83180.68367,15.6
+64804,0,11861.14239,82185.8145,15.6
+64805,0,11825.62172,80850.65149,15.6
+64806,0,11842.77527,79890.94566,15.6
+64807,0,11705.09718,78600.29033,15.6
+64808,0,11749.05797,77672.02257,15.6
+64809,0,11664.99723,76422.44677,15.6
+64810,0,11601.03968,75523.31128,15.6
+64811,0,11584.39132,74312.70236,15.6
+64812,0,11486.15197,73441.39019,15.6
+64813,0,11457.10382,72268.34083,15.6
+64814,0,11417.48979,71424.00608,15.6
+64815,0,11361.00976,70287.45136,15.6
+64816,0,11289.45582,69469.4807,15.6
+64817,0,11206.69975,68368.50514,15.6
+64818,0,11206.37925,67576.34107,15.6
+64819,0,11083.69322,66510.08203,15.6
+64820,0,11068.65846,65743.22262,15.6
+64821,0,10981.54668,64710.87535,15.6
+64822,0,10932.61936,63968.83015,15.6
+64823,0,10882.83488,62969.57741,15.6
+64824,0,10780.82389,0,15.6
+64825,0,10739.80324,0,15.6
+64826,0,10665.31091,0,15.6
+64827,0,0,0,15.6
+64828,0,0,0,15.6
+64829,0,0,691635.7018,15.6
+64830,0,0,0,15.6
+64831,0,0,0,15.6
+64832,0,0,0,15.6
+64833,0,0,0,15.6
+64834,0,0,0,15.6
+64835,339580.4466,0,0,15.6
+64836,0,0,0,15.6
+64837,0,37301.69717,0,15.6
+64838,0,2726.289577,0,15.6
+64839,0,4837.048701,0,15.6
+64840,0,9447.636476,0,15.6
+64841,0,380045.4953,0,15.6
+64842,0,8744.506326,0,15.6
+64843,0,9533.667314,0,15.6
+64844,0,9461.903745,0,15.6
+64845,0,9372.702062,0,15.6
+64846,0,9251.880661,0,15.6
+64847,0,9219.080664,0,15.6
+64848,0,9069.58884,0,15.6
+64849,0,8994.240897,0,15.6
+64850,0,8908.818979,0,15.6
+64851,0,8804.131244,0,15.6
+64852,0,8720.574304,0,15.6
+64853,0,8572.171517,0,15.6
+64854,0,8511.20757,0,15.6
+64855,0,8395.440839,0,15.6
+64856,0,8274.893395,0,15.6
+64857,0,8188.276163,0,15.6
+64858,0,8059.959317,0,15.6
+64859,0,7900.99514,0,15.6
+64860,0,7737.442991,0,15.6
+64861,0,7793.41698,0,15.6
+64862,0,7896.732221,0,15.6
+64863,0,7896.731904,0,15.6
+64864,0,8020.620885,0,15.6
+64865,0,8055.26672,690069.4222,15.6
+64866,0,8126.223972,0,15.6
+64867,0,0,0,15.6
+64868,0,0,0,15.6
+64869,0,0,0,15.6
+64870,0,0,0,15.6
+64871,0,0,0,15.6
+64872,0,0,0,15.6
+64873,0,0,0,15.6
+64874,0,0,0,15.6
+64875,0,0,0,15.6
+64876,0,0,0,15.6
+64877,0,0,0,15.6
+64878,0,0,57784.4246,15.6
+64879,0,0,60350.74693,15.6
+64880,339608.1483,0,59651.22616,15.6
+64881,0,0,58771.20859,15.6
+64882,0,0,58177.60949,15.6
+64883,0,0,57367.64567,15.6
+64884,0,0,56813.33004,15.6
+64885,0,0,56040.88901,15.6
+64886,0,0,55512.867,15.6
+64887,0,0,54771.90806,15.6
+64888,0,32631.99386,54266.08412,15.6
+64889,0,5232.985155,53552.48314,15.6
+64890,0,4236.349906,53065.49861,15.6
+64891,0,9380.758322,52376.21457,15.6
+64892,0,12375.97383,51905.90429,15.6
+64893,0,9177.362748,51239.0877,15.6
+64894,0,10114.09638,50784.31593,15.6
+64895,0,10174.46048,50138.95309,15.6
+64896,0,10201.45375,49699.25341,15.6
+64897,0,10281.10356,49074.794,15.6
+64898,0,10345.53654,48649.98724,15.6
+64899,0,10387.40166,48046.08114,15.6
+64900,0,378504.3854,47636.02824,15.6
+64901,0,10496.59723,600766.1583,15.6
+64902,0,10541.39718,48781.32339,15.6
+64903,0,10603.10745,48176.40168,15.6
+64904,0,10654.42489,47764.64999,15.6
+64905,0,10696.83554,47180.67489,15.6
+64906,0,10750.96983,46784.35673,15.6
+64907,0,10826.11911,0,15.6
+64908,0,10844.30926,0,15.6
+64909,0,10940.34108,0,15.6
+64910,0,10938.19355,0,15.6
+64911,0,11019.44166,0,15.6
+64912,0,11091.86705,0,15.6
+64913,0,11098.35909,0,15.6
+64914,0,11179.97197,0,15.6
+64915,0,11249.22205,0,15.6
+64916,0,11246.97806,0,15.6
+64917,0,11334.80084,0,15.6
+64918,0,0,0,15.6
+64919,0,0,0,15.6
+64920,0,0,0,15.6
+64921,0,66.56131793,0,15.6
+64922,0,0,0,15.6
+64923,0,0,0,15.6
+64924,0,0,0,15.6
+64925,339670.162,49053.51452,0,15.6
+64926,0,547.4589081,0,15.6
+64927,0,6762.165893,0,15.6
+64928,0,16182.81534,0,15.6
+64929,0,13905.60456,0,15.6
+64930,0,12965.84225,0,15.6
+64931,0,13578.02819,0,15.6
+64932,0,13809.72967,0,15.6
+64933,0,14138.99697,0,15.6
+64934,0,14147.76556,0,15.6
+64935,0,14275.20788,0,15.6
+64936,0,14425.90546,0,15.6
+64937,0,14655.84787,585065.788,15.6
+64938,0,14747.59938,0,15.6
+64939,0,15028.68401,0,15.6
+64940,0,15120.50901,0,15.6
+64941,0,15222.51826,0,15.6
+64942,0,15457.66544,0,15.6
+64943,0,15574.66883,0,15.6
+64944,0,15855.03446,0,15.6
+64945,0,15914.53732,0,15.6
+64946,0,16054.54866,0,15.6
+64947,0,16224.97082,0,15.6
+64948,0,16412.09131,0,15.6
+64949,0,16566.51208,0,15.6
+64950,0,16709.34463,0,15.6
+64951,0,16798.18366,0,15.6
+64952,0,16999.23663,0,15.6
+64953,0,17211.10233,0,15.6
+64954,0,17319.58211,0,15.6
+64955,0,0,0,15.6
+64956,0,368040.239,0,15.6
+64957,0,0,0,15.6
+64958,0,91.57300837,0,15.6
+64959,0,71167.82003,0,15.6
+64960,0,0,0,15.6
+64961,0,10199.1428,0,15.6
+64962,0,26302.46116,0,15.6
+64963,0,17392.74263,0,15.6
+64964,0,18953.56087,0,15.6
+64965,0,19179.13339,0,15.6
+64966,0,19253.55043,0,15.6
+64967,0,19471.67367,0,15.6
+64968,0,19732.46252,0,15.6
+64969,339678.2391,19750.57161,45313.97831,15.6
+64970,0,19903.46646,48421.08808,15.6
+64971,0,20120.88422,47819.63677,15.6
+64972,0,20216.25482,46358.88926,15.6
+64973,0,20682.45941,593251.0555,15.6
+64974,0,20502.17406,48520.50326,15.6
+64975,0,20723.06276,562434.3867,15.6
+64976,0,20864.42655,19953.96717,15.6
+64977,0,21019.41956,128998.8421,15.6
+64978,0,21195.73294,12123.08086,15.6
+64979,0,21277.03625,100613.6204,15.6
+64980,0,21664.96883,63009.72403,15.6
+64981,0,21557.37844,67891.09395,15.6
+64982,0,21626.2516,12436.31502,15.6
+64983,0,21707.90389,98696.75079,15.6
+64984,0,21827.60119,54087.4099,15.6
+64985,0,21961.74368,46501.87963,15.6
+64986,0,21981.8,50696.56611,15.6
+64987,0,22045.15963,48896.18651,15.6
+64988,0,22120.09625,48090.67336,15.6
+64989,0,0,47545.74903,15.6
+64990,0,0,47076.1223,15.6
+64991,0,0,46633.18714,15.6
+64992,0,81129.16196,46203.97059,15.6
+64993,0,4858.833349,45784.96892,15.6
+64994,0,12740.18935,45375.17285,15.6
+64995,0,30862.81674,44974.18559,15.6
+64996,0,21461.65418,44581.76478,15.6
+64997,0,22874.86583,44197.77468,15.6
+64998,0,22983.19237,0,15.6
+64999,0,23051.4032,0,15.6
+65000,0,23149.85849,0,15.6
+65001,0,23273.0162,0,15.6
+65002,0,23293.96643,0,15.6
+65003,0,23391.6091,0,15.6
+65004,0,23429.40196,0,15.6
+65005,0,23555.52662,0,15.6
+65006,0,23866.99351,0,15.6
+65007,0,23667.3196,533944.3821,15.6
+65008,0,23734.91727,0,15.6
+65009,0,391878.8129,647505.1586,15.6
+65010,0,23897.34168,0,15.6
+65011,0,24016.18619,0,15.6
+65012,0,24011.6348,0,15.6
+65013,339722.7907,24162.12038,0,15.6
+65014,0,24203.47876,0,15.6
+65015,0,24425.39755,0,15.6
+65016,0,24324.56271,0,15.6
+65017,0,24468.00192,0,15.6
+65018,0,24499.51964,0,15.6
+65019,0,24612.61825,0,15.6
+65020,0,24650.24673,0,15.6
+65021,0,24880.12616,0,15.6
+65022,0,0,0,15.6
+65023,0,270898.3007,0,15.6
+65024,0,24021.74962,0,15.6
+65025,31441.31762,115741.5712,0,15.6
+65026,2900.536027,120402.2439,0,15.6
+65027,3963.372161,107607.8548,0,15.6
+65028,9871.438888,121145.75,0,15.6
+65029,11027.123,115616.1392,0,15.6
+65030,8915.894367,118373.8868,0,15.6
+65031,9751.802995,119038.4778,0,15.6
+65032,9929.62448,120729.4846,0,15.6
+65033,10113.97049,120942.0597,0,15.6
+65034,10239.61626,122509.7901,0,15.6
+65035,10383.3643,123154.9331,0,15.6
+65036,10568.39369,124692.471,0,15.6
+65037,10715.10476,125334.4372,0,15.6
+65038,10866.39375,126014.5663,550374.0799,15.6
+65039,11060.44976,127545.8797,0,15.6
+65040,11177.9055,128185.3546,0,17.8
+65041,907474.8067,1318346.053,145505.7056,17.8
+65042,472000.5571,961910.6586,168989.9118,17.8
+65043,170308.974,213372.1872,88735.83524,17.8
+65044,235975.759,342391.4008,80602.78584,17.8
+65045,296845.2337,437970.8956,99461.99004,17.8
+65046,252825.0877,383178.1035,666408.1866,17.8
+65047,253700.6176,375137.8494,91182.00572,17.8
+65048,253640.0713,374905.9793,90764.87443,17.8
+65049,252722.789,375124.029,90513.99913,17.8
+65050,252920.5007,374635.156,90262.01866,17.8
+65051,252091.5316,373117.0164,90073.74544,17.8
+65052,251813.207,373415.7219,89799.36219,17.8
+65053,251320.5613,59024.21463,89667.83192,17.8
+65054,251458.8266,58691.99754,89434.06856,17.8
+65055,217581.6252,0,89327.61603,17.8
+65056,217416.226,1007483.923,89147.12913,17.8
+65057,641209.1602,303381.6342,88978.58952,17.8
+65058,245086.8382,255240.697,88826.70241,17.8
+65059,243477.4789,446220.4583,88765.67849,17.8
+65060,253478.3835,731733.3225,88542.44896,17.8
+65061,249754.8011,372233.7999,88449.98097,17.8
+65062,249846.6298,371146.2844,88390.33253,17.8
+65063,249233.5827,370042.2952,88163.10747,17.8
+65064,249595.2938,370450.2374,88150.2581,17.8
+65065,249103.2024,370402.6896,88051.21951,17.8
+65066,249032.5433,370087.3681,87952.28,17.8
+65067,249244.6222,370113.6871,94165.27841,17.8
+65068,248563.2833,369947.4578,100397.2709,17.8
+65069,248895.9272,369675.2119,98769.42322,17.8
+65070,249122.4754,370442.4863,626810.7377,17.8
+65071,32660.96828,371109.611,22109.98662,17.8
+65072,32635.12041,370123.066,820253.4667,17.8
+65073,32705.86062,370861.7524,202369.5637,17.8
+65074,708910.4222,370152.7787,442808.4742,17.8
+65075,111731.2509,370814.3584,419348.2367,17.8
+65076,202560.5537,370109.1506,378291.9781,17.8
+65077,292468.8099,371014.294,395409.9098,17.8
+65078,242878.4012,370299.636,396315.7563,17.8
+65079,248278.7393,370313.1371,402564.7092,17.8
+65080,248382.9553,370837.1243,407939.6592,17.8
+65081,248367.0178,370486.5622,1166558.904,17.8
+65082,248147.6686,370531.297,417569.0871,17.8
+65083,248441.5697,370951.8248,423734.4783,17.8
+65084,248028.5002,370861.4015,429054.2641,17.8
+65085,248130.6255,370813.0971,434407.9026,17.8
+65086,247974.1065,58258.32619,440632.9298,17.8
+65087,215917.8098,0,445256.3732,17.8
+65088,215511.2185,7.084872152,451259.4448,17.8
+65089,299002.9908,1127521.102,456440.7281,17.8
+65090,239882.4976,232938.0341,461477.7689,17.8
+65091,242452.0474,268291.425,466668.7816,17.8
+65092,251243.1172,445710.0163,471727.159,17.8
+65093,247878.4313,367054.1064,476807.8319,17.8
+65094,587712.3381,372051.6388,481680.2581,17.8
+65095,247714.6951,373850.767,485984.9898,17.8
+65096,247809.6985,373198.4709,479898.9066,17.8
+65097,247804.0085,373054.6017,484116.1666,17.8
+65098,248161.1512,741648.3709,488465.5263,17.8
+65099,247385.0226,373166.0841,489596.4348,17.8
+65100,247545.5888,374130.9209,501560.2415,20
+65101,2023926.606,1434247.411,2547418.606,20
+65102,1046666.79,1433901.529,1137971.238,20
+65103,597921.2975,636767.5685,2134199.31,20
+65104,95027.3001,813658.4414,1951176.171,20
+65105,870678.0193,750816.0011,1235983.572,20
+65106,603040.2698,783049.5995,1117397.71,20
+65107,582118.0777,763245.1115,955276.8068,20
+65108,587148.2555,757890.4112,1016189.822,20
+65109,651323.9863,715645.2924,944793.4196,20
+65110,603858.119,731640.1994,961362.5904,20
+65111,614253.0094,726021.8571,961525.2192,20
+65112,612672.194,723439.7674,965611.4066,20
+65113,614067.5709,720122.6015,969789.6632,20
+65114,612449.7266,719466.5868,974171.6836,20
+65115,612333.5602,717444.1146,977512.8133,20
+65116,614183.6317,716016.9853,2007215.658,20
+65117,612140.1693,714007.5201,966132.8172,20
+65118,613465.7346,713357.7396,970420.9952,20
+65119,530301.2711,29962.99882,975054.0579,20
+65120,529423.726,214063.7477,976925.7889,20
+65121,643573.7143,1226774.186,981927.2381,20
+65122,634920.0678,700062.5287,985558.8761,20
+65123,612790.3532,636579.7139,987815.5487,20
+65124,623079.2397,761107.7012,991064.969,20
+65125,614806.4518,698048.5072,994191.4382,20
+65126,620563.0633,664053.2073,996484.4655,20
+65127,617368.7667,688587.6066,999617.47,20
+65128,618238.6504,678548.4971,999962.8138,20
+65129,617899.4827,676049.2342,1005296.693,20
+65130,959112.3526,688103.0098,1006610.688,20
+65131,601974.9551,680586.0288,973070.7385,20
+65132,604547.271,663861.9441,976610.9677,20
+65133,603225.2337,666441.5805,282858.7735,20
+65134,605108.5132,749533.7092,992935.5754,20
+65135,82942.21657,1043738.67,0,20
+65136,82821.86322,695110.0161,2492319.646,20
+65137,898025.8091,698406.9952,1382147.975,20
+65138,695661.5658,694002.5603,878365.213,20
+65139,544873.5521,693350.8722,1026720.941,20
+65140,604221.8054,692967.4673,930198.5335,20
+65141,670587.9142,692789.2547,930149.1021,20
+65142,620473.541,692283.4454,922765.5653,20
+65143,628978.5517,691965.5595,924841.4526,20
+65144,632120.4402,689743.3797,928639.4549,20
+65145,631032.6206,691696.9907,932492.2396,20
+65146,632614.6987,690310.2833,934959.8944,20
+65147,633720.4447,689203.254,936984.6448,20
+65148,634061.7176,689553.9092,941102.2029,20
+65149,636040.1212,688598.7126,942091.3458,20
+65150,635441.7273,575620.327,944822.9437,20
+65151,553918.6102,28923.68163,2063109.67,20
+65152,556071.9673,225998.6909,927655.614,20
+65153,661909.2359,1237472.413,930732.6869,20
+65154,663824.3259,604614.9175,934728.3982,20
+65155,637621.3872,653976.226,937385.4664,20
+65156,651798.5772,730408.7246,938732.8715,20
+65157,640285.8303,612968.7714,941989.6636,20
+65158,647827.7791,669713.0065,944555.8382,20
+65159,647549.5756,651078.4312,945393.6223,20
+65160,646611.8898,688152.865,949306.1486,21
+65161,2632712.234,2610997.116,4243530.52,21
+65162,1981061.024,2017067.068,3963980.382,21
+65163,476257.7475,672958.339,1627622.095,21
+65164,494137.7963,800502.6213,1056965.409,21
+65165,762562.8067,842169.042,1583170.659,21
+65166,860827.7936,1103278.316,1593111.051,21
+65167,699325.6059,873096.7187,1342900.012,21
+65168,738623.5339,928492.8603,1295068.16,21
+65169,737589.9354,922244.9118,1311098.987,21
+65170,732457.5723,919145.353,1312405.256,21
+65171,732616.1396,914344.6027,1321259.269,21
+65172,727922.3452,913385.7032,1325445.146,21
+65173,728096.4694,908600.2661,1328711.664,21
+65174,723490.9279,906661.529,1332805.983,21
+65175,722355.3959,902014.4978,1336517.43,21
+65176,720877.9059,900391.3952,1339999.172,21
+65177,718111.2443,897566.6759,1341555.498,21
+65178,716387.4628,894287.5491,1346886.518,21
+65179,715418.8086,892618.946,1346420.345,21
+65180,713058.9097,888555.6333,1349528.754,21
+65181,711254.7522,887256.0602,1350764.927,21
+65182,709919.1253,882639.9604,1353284.396,21
+65183,708761.8725,881466.585,1353855.529,21
+65184,707961.0039,879214.7897,1356481.877,21
+65185,705525.3164,875245.0895,1355246.752,21
+65186,703196.9822,874962.5946,1358922.167,21
+65187,705099.2918,871252.0003,1357143.162,21
+65188,699870.7701,868439.3921,1360534.414,21
+65189,702285.0705,868093.9102,1358406.783,21
+65190,698071.0561,863717.0291,1361673.492,21
+65191,698763.3172,863695.7489,1362066.257,21
+65192,696679.7585,860307.4592,1359743.57,21
+65193,697117.6702,858892.4574,1362585.035,21
+65194,693690.637,854545.7704,1362115.893,21
+65195,693816.3046,856428.1504,1360619.246,21
+65196,693802.0418,850879.0201,1363345.312,21
+65197,691141.9047,851872.1638,1362815.924,21
+65198,690521.5615,845789.6723,1361959.813,21
+65199,689679.7278,848553.1009,1362816.394,21
+65200,689106.3037,844915.1078,1364339.501,21
+65201,686756.2042,842054.9887,1362071.654,21
+65202,687730.29,842342.9829,1360841.009,21
+65203,685714.8297,839746.8272,1364119.029,21
+65204,685816.4499,836962.8635,1360784.042,21
+65205,683309.5784,835401.029,1364975.13,21
+65206,685037.1332,835186.168,1360090.386,21
+65207,681235.7524,830833.6812,1363356.317,21
+65208,682272.0683,832109.8544,1360227.978,21
+65209,680429.6172,826814.6862,1364541.268,21
+65210,680855.92,828198.2549,1358761.571,21
+65211,678888.052,823472.0803,1361853.722,21
+65212,678762.613,824878.525,1361740.563,21
+65213,677441.1664,821296.0694,1359489.286,21
+65214,677861.2436,819428.3397,1361635.921,21
+65215,676146.2798,817254.5027,1360874.58,21
+65216,675024.8526,816841.5585,1359273.857,21
+65217,675463.4,813947.1597,1361196.791,21
+65218,675107.2292,811793.6584,1358812.402,21
+65219,673172.4875,810441.9271,1359717.305,21
+65220,672208.1262,806554.7173,1362208.379,21
+65221,752185.7243,1692438.466,1291984.517,21
+65222,745217.0623,1686727.775,1285189.168,21
+65223,743092.8288,1686322.602,1278768.838,21
+65224,741927.1566,1687128.566,1279614.042,21
+65225,739724.9277,1686273.107,1277738.063,21
+65226,738713.7982,1685910.882,1276078.792,21
+65227,736742.7206,1686695.066,1276103.068,21
+65228,734208.0326,1687091.25,1272531.58,21
+65229,734975.7895,1686097.851,1273493.67,21
+65230,731972.2398,1687003.716,1271415.55,21
+65231,730679.7965,1687176.17,1271750.346,21
+65232,729167.4041,1688222.819,1267872.451,21
+65233,728444.2368,1686697.858,1267599.685,21
+65234,725802.472,1688761.671,1269254.115,21
+65235,726208.0119,1688092.279,1265014.617,21
+65236,722394.8162,1688367.397,1265084.11,21
+65237,723876.0175,1689389.937,1265524.022,21
+65238,719990.8285,1690083.062,1261271.37,21
+65239,718051.4521,1688572.184,1263402.402,21
+65240,715706.924,1691422.675,1261666.701,21
+65241,713376.541,1690655.978,1260048.39,21
+65242,713967.9879,1690896.813,1258559.327,21
+65243,709449.1379,1692809.14,1261124.672,21
+65244,711437.1579,1691578.623,1258250.958,21
+65245,707136.1545,1693875.695,1255678.059,21
+65246,707480.8464,1692896.803,1256717.537,21
+65247,705216.1939,1694578.603,1255517.311,21
+65248,704727.3288,1694006.981,1248252.281,21
+65249,702738.465,1696585.095,1246881.017,21
+65250,701594.1152,1694914.46,1243813.801,21
+65251,700772.1427,1696416.842,1248986.733,21
+65252,699144.8956,1697379.374,1240688.251,21
+65253,697129.9748,1698575.157,1241493.655,21
+65254,697165.866,1698283.118,1237089.123,21
+65255,694468.2037,1699235.804,2202332.033,21
+65256,694492.3338,1701001.734,1265124.304,21
+65257,691794.211,1699150.5,1738800.48,21
+65258,690779.1296,1702476.913,1202555.662,21
+65259,689272.8142,1701742.075,1373562.847,21
+65260,688025.791,1703163.943,1205350.567,21
+65261,685382.1346,1703763.27,1189018.836,21
+65262,685612.5389,1704554.3,1188865.715,21
+65263,684331.5619,1704503.128,1189066.588,21
+65264,681255.3781,1706769.363,1189120.264,21
+65265,680485.2819,1706922.894,1189235.164,21
+65266,679776.4242,1706794.838,1186874.488,21
+65267,677461.2948,1708756.04,1188406.658,21
+65268,676968.9807,1708778.636,1188159.392,21
+65269,674629.4567,1711460.089,1187106.66,21
+65270,672652.206,1709819.613,1184420.253,21
+65271,673699.9111,1711583.933,1187320.21,21
+65272,672079.2939,1713256.63,1184763.21,21
+65273,669992.6898,1713075.794,1185194.406,21
+65274,669115.8948,1714553.279,1184779.125,21
+65275,667545.1317,1715392.058,1183390.413,21
+65276,666895.7678,1715575.823,1182365.231,21
+65277,665374.5252,1716759.583,1185339.987,21
+65278,663853.2275,1718292.711,1180579.805,21
+65279,662904.0483,1718353.253,1184579.549,21
+65280,660762.0036,1720131.04,1181859.231,21
+65281,431252.8054,1485656.859,771052.1051,21
+65282,413336.6625,1473793.429,748738.2017,21
+65283,410571.3835,1474667.704,746517.6941,21
+65284,405374.1111,1474184.768,743170.5794,21
+65285,401774.5346,1475304.85,1700731.841,21
+65286,398625.6098,1475764.476,756705.2218,21
+65287,394466.8177,1476092.437,1244376.297,21
+65288,392903.0388,1477238.809,700261.6921,21
+65289,388310.5825,1477911.726,933565.4099,21
+65290,386421.886,1478621.831,752117.0396,21
+65291,382343.0282,1479523.897,684109.3423,21
+65292,381474.5316,1480814.787,715190.067,21
+65293,376324.6769,1481059.954,704198.9468,21
+65294,375219.3142,1482607.846,698989.5025,21
+65295,371508.5276,1483372.125,696568.2867,21
+65296,369932.8881,1484634.446,694243.1079,21
+65297,366885.185,1485270.427,691661.9304,21
+65298,363775.2505,1486789.594,689736.0008,21
+65299,361824.1668,1487936.006,687888.1884,21
+65300,359363.5763,1488589.773,685578.5142,21
+65301,357052.0593,1490081.387,683905.8768,21
+65302,353776.0754,1491130.226,681705.8149,21
+65303,352719.5962,1492037.352,678925.2645,21
+65304,349689.2356,1493844.648,677926.5345,21
+65305,347346.5528,1495039.074,675138.3205,21
+65306,345083.3643,1495697.882,673606.5989,21
+65307,343240.8968,1497580.186,670938.7265,21
+65308,341047.1982,1498131.869,669085.7285,21
+65309,338386.5524,1500671.387,667036.144,21
+65310,336510.5076,1501096.003,658575.7866,21
+65311,334570.9519,1502816.333,669778.3767,21
+65312,331571.3905,1503591.428,659236.1781,21
+65313,330304.2702,1505871.989,659914.6626,21
+65314,328465.3468,1506376.878,657544.3784,21
+65315,326161.2309,1508316.56,1586237.633,21
+65316,324753.6482,1509208.387,652432.2886,21
+65317,323299.4514,1511418.657,1137598.019,21
+65318,322697.026,1512206.365,602715.4593,21
+65319,320530.2111,1513579.514,854423.323,21
+65320,319758.2307,1515460.325,675177.2058,21
+65321,318479.4123,1516996.219,605381.4059,21
+65322,316656.5514,1518037.82,641568.2199,21
+65323,315926.5627,1520154.348,630066.3565,21
+65324,314108.0392,1521094.282,627512.0512,21
+65325,313540.2231,1522498.752,623664.9389,21
+65326,311679.9662,1525028.05,622548.4547,21
+65327,310721.4756,1525094.522,620823.1603,21
+65328,309382.0354,1527731.601,618922.8608,21
+65329,308152.6903,1529314.986,617777.4609,21
+65330,306555.7379,1530012.518,615681.9108,21
+65331,305899.8654,1531833.215,617037.541,21
+65332,304300.1517,1534236.876,615964.3028,21
+65333,302827.7494,1534741.876,613832.65,21
+65334,301999.5476,1537383.728,612760.1929,21
+65335,300847.7773,1538171.475,610649.6273,21
+65336,299422.872,1539893.529,610334.4654,21
+65337,298093.1213,1541856.248,607327.405,21
+65338,297406.0835,1543229.44,606555.4893,21
+65339,295241.365,1544581.322,604275.4513,21
+65340,295846.7389,1546811.19,597472.1944,21
+65341,293602.5912,1546165.615,605787.3051,21
+65342,292871.7606,1546561.942,593305.9237,21
+65343,291511.7662,1500408.866,591405.0442,21
+65344,290877.7357,1495169.233,587750.4891,21
+65345,289509.5113,1489798.878,1472344.702,21
+65346,289064.1313,1486298.422,551660.5644,21
+65347,287761.2412,1481041.112,1019838.278,21
+65348,286990.4924,1477788.591,498436.9875,21
+65349,285864.2405,1473186.254,771980.8358,21
+65350,285288.4662,1468706.197,593621.565,21
+65351,284221.5973,1464795.378,524311.015,21
+65352,282654.5187,1460860.402,556538.0079,21
+65353,282772.6836,1456906.646,543327.4178,21
+65354,280972.8424,1452305.951,536961.422,21
+65355,280532.2993,1874551.121,531916.1601,21
+65356,279668.7055,1444967.654,527868.6644,21
+65357,278017.108,1441823.423,522926.9743,21
+65358,278085.1662,1437491.435,519041.8506,21
+65359,276735.0604,1434408.456,514455.1837,21
+65360,275679.3585,1430424.441,510111.1596,21
+65361,275000.6667,1425989.177,505703.8932,21
+65362,273974.3831,1422788.588,500859.5184,21
+65363,273118.8461,1418893.881,497400.4901,21
+65364,272139.8854,1415286.198,491537.974,21
+65365,271456.483,1412115.146,488245.7585,21
+65366,270265.5152,1408122.218,482513.6033,21
+65367,269596.2519,1404526.324,479364.7414,21
+65368,268441.2762,1400840.093,473324.6727,21
+65369,267871.1272,1397409.312,469695.9263,21
+65370,267038.2232,1393429.872,464851.2636,21
+65371,265683.4838,1390600.104,459852.8877,21
+65372,265599.0352,1387161.799,454884.6313,21
+65373,264367.474,1383093.733,450554.7907,21
+65374,263621.6506,1805548.155,445368.1607,21
+65375,263118.2519,1376762.3,441128.5702,21
+65376,262074.8158,1373475.536,436502.1512,21
+65377,261530.1415,1370124.168,431561.997,21
+65378,260877.3345,1367255.546,427075.5583,21
+65379,259989.9411,1363672.115,421870.6002,21
+65380,259231.9938,1360290.747,417519.1222,21
+65381,258538.9004,1357609.96,412420.3519,21
+65382,257984.4671,1353958.825,408263.5956,21
+65383,257025.1318,1351017.262,402301.7292,21
+65384,256514.714,1347730.938,399056.0057,21
+65385,255525.048,1344829.256,392851.4875,21
+65386,255143.8866,1341340.216,388796.2281,21
+65387,254233.6861,1338449.014,383683.8126,21
+65388,253378.9044,1335037.624,378750.0249,21
+65389,253052.5811,1332562.318,373271.4526,21
+65390,252277.5107,1328644.584,369472.3648,21
+65391,251152.2724,1751516.212,363956.3248,21
+65392,251421.6493,1322661.566,359921.1742,21
+65393,249589.8165,1319854.175,354288.8289,21
+65394,249919.0983,1316110.963,349807.9387,21
+65395,248522.6131,1312739.7,345099.1994,21
+65396,248433.6829,1309593.557,340055.544,21
+65397,247370.0425,1306701.657,335450.7312,21
+65398,246843.2559,1304295.377,330677.2082,21
+65399,246284.4675,1301095.433,325567.7875,21
+65400,245318.4676,1298238.528,1040698.03,21
+65401,250184.39,1299006.69,229173.4915,21
+65402,249704.1761,1294847.962,606577.3715,21
+65403,250437.7059,1291760.773,195966.2636,21
+65404,250014.5847,1287890.629,487351.6486,21
+65405,250284.8075,1284606.763,339686.7103,21
+65406,250080.6247,1280738.9,372701.7308,21
+65407,250470.9613,1277641.585,180944.3469,21
+65408,250223.7445,1273680.765,472388.0705,21
+65409,250386.414,1270295.377,301467.3714,21
+65410,250624.6803,1267016.953,332185.0702,21
+65411,250222.4817,1263099.488,165807.8219,21
+65412,250938.133,1260183.354,451304.7126,21
+65413,250370.3825,1255921.974,282509.6426,21
+65414,250865.4184,1253108.084,307781.2681,21
+65415,250791.0585,1249198.783,154045.2166,21
+65416,250729.7595,1245924.658,430836.4201,21
+65417,250816.4538,1242328.118,267389.6792,21
+65418,251326.234,1238685.937,249849.6371,21
+65419,250717.9832,1235535.113,259273.6858,21
+65420,251351.6515,1231881.963,253338.7672,21
+65421,251031.707,1228612.072,248531.0262,21
+65422,251347.5029,1225113.34,243916.2899,21
+65423,251473.2708,1221688.207,240717.9752,21
+65424,251167.828,1218050.409,237968.9022,21
+65425,251632.922,1215084.197,235515.5257,21
+65426,251554.4988,1211398.671,232651.2415,21
+65427,251615.094,1208024.919,230261.2312,21
+65428,251920.1908,1205122.227,228135.1051,21
+65429,251731.1586,1200996.771,225400.6816,21
+65430,252512.5905,1198061.952,222859.3202,21
+65431,251834.393,1194911.101,221310.6377,21
+65432,252653.7231,1191564.067,219190.196,21
+65433,252535.9455,1188095.16,217266.6118,21
+65434,252431.3554,1186209.885,215380.8213,21
+65435,253126.6077,1183528.891,213653.6836,21
+65436,252649.4911,1182046.051,211608.8791,21
+65437,253143.4442,1179473.183,209785.0548,21
+65438,253357.3275,1177873.242,208147.4519,21
+65439,253429.4168,1175510.228,206432.2861,21
+65440,253095.2653,1173440.163,204507.07,21
+65441,253952.7875,1171866.266,202804.8938,21
+65442,253423.6649,1169371.8,203177.1662,21
+65443,254238.3503,1167929.081,201629.7011,21
+65444,253605.9115,1165283.929,200497.491,21
+65445,254494.9391,1163844.706,198761.8236,21
+65446,254104.2965,1162198.411,197371.7028,21
+65447,254794.8565,1159435.188,195889.2402,21
+65448,254453.4849,1157933.193,194611.4404,21
+65449,254828.6523,1156023.304,193214.4196,21
+65450,254874.547,1154077.133,191757.0964,21
+65451,254760.5424,1152167.938,190237.2744,21
+65452,255481.2069,1150258.379,189373.8544,21
+65453,255272.4975,1148513.341,187634.3329,21
+65454,255530.086,1146301.247,186466.6022,21
+65455,255524.8434,1145042.001,185108.5539,21
+65456,255770.3998,1142769.383,183925.2372,21
+65457,255952.3798,1140854.835,182460.0603,21
+65458,256160.9389,1139407.956,181216.5034,21
+65459,256106.338,1137274.102,180181.297,21
+65460,256490.0114,1135998.491,178590.8017,21
+65461,254729.0983,1126933.689,170714.6713,21
+65462,258474.3082,1123629.66,169089.348,21
+65463,260785.7187,1120590.925,772104.811,21
+65464,264981.8004,1117207.587,101504.1912,21
+65465,267726.5973,1113773.142,338430.004,21
+65466,271159.7035,1110630.09,84720.31286,21
+65467,274557.9703,1107698.994,275349.3218,21
+65468,277568.0917,1104217.358,182168.1735,21
+65469,281023.5603,1101349.948,198381.9863,21
+65470,284290.1963,1097764.679,81363.37583,21
+65471,287812.4082,1094959.905,271434.2389,21
+65472,290741.2612,1091879.711,163804.1921,21
+65473,294515.2698,1088272.812,180257.2124,21
+65474,297429.8149,1085462.962,78495.80766,21
+65475,300984.5776,1083055.265,263238.1497,21
+65476,304462.8012,1078723.934,77522.713,21
+65477,307480.325,1076300.847,76921.83994,21
+65478,311275.177,1072377.678,76807.24634,21
+65479,314149.6676,1070179.116,76377.21011,21
+65480,317849.0094,1066219.446,75810.72759,21
+65481,321212.4509,1063154.136,75810.68488,21
+65482,324300.6333,1060767.376,75258.09967,21
+65483,328245.4601,1056467.663,75075.55791,21
+65484,331037.8333,1054556.79,74332.95145,21
+65485,334723.547,1050753.875,74156.24141,21
+65486,338108.5352,1047679.565,73922.20131,21
+65487,341488.4207,1044291.987,73234.27877,21
+65488,344937.6523,1041857.488,73113.23657,21
+65489,348233.3847,1038531.807,72666.23733,21
+65490,351842.5515,1035456.717,72249.51325,21
+65491,354936.4563,1032037.655,71985.3682,21
+65492,358321.5357,1028823.539,71205.14635,21
+65493,361465.1132,1025692.687,70729.70743,21
+65494,364681.2647,1022515.047,69917.75707,21
+65495,368223.201,1019432.773,69624.85762,21
+65496,371177.2709,1016318.015,68767.78836,21
+65497,374385.922,1012939.303,68146.44123,21
+65498,377944.3956,1009807.121,67745.39443,21
+65499,380935.3163,1006720.831,66865.9249,21
+65500,384244.5987,1004004.69,66533.5509,21
+65501,387365.1933,1000527.097,65701.89243,21
+65502,390932.8792,997762.3482,65111.6197,21
+65503,393957.0753,994105.8848,64214.75205,21
+65504,397170.2511,991545.8349,64004.58104,21
+65505,400302.7619,988246.0314,63030.09014,21
+65506,403832.1331,984646.7074,62463.2752,21
+65507,406801.6306,981626.3964,61658.47488,21
+65508,410131.0513,977420.6681,61443.77297,21
+65509,413231.9866,974521.8501,60263.98313,21
+65510,416643.0459,970629.5753,59643.41308,21
+65511,419800.4004,968137.5678,59122.68786,21
+65512,422997.9338,963924.888,58402.80247,21
+65513,426354.4842,960807.9173,57734.64453,21
+65514,429394.0293,957455.2755,56915.36118,21
+65515,432685.1941,953533.3179,56336.99479,21
+65516,436079.3653,950347.1103,55406.39569,21
+65517,438919.6783,946903.0473,55032.97062,21
+65518,442820.0109,942811.0098,54188.25008,21
+65519,445314.892,939758.2139,53367.12883,21
+65520,448808.669,934594.9956,52673.65361,21
+65521,474253.9639,957453.2855,78025.36888,21
+65522,473629.4724,956050.7336,77802.26122,21
+65523,474358.0277,953453.2438,77872.0594,21
+65524,474154.23,952045.2914,76926.44521,21
+65525,473930.4004,950087.7026,77201.95489,21
+65526,473862.9276,948420.9177,76218.69318,21
+65527,473893.8974,946427.8276,76091.59253,21
+65528,473310.611,944307.0479,75560.06331,21
+65529,473737.3147,942605.2106,75386.97635,21
+65530,473068.6579,940874.4022,74773.7329,21
+65531,473317.5187,939024.4589,74291.19952,21
+65532,473132.7433,936963.2207,74040.89282,21
+65533,472631.7381,935081.4662,73531.00956,21
+65534,472755.6186,932814.8756,72948.67622,21
+65535,472409.9867,931551.2852,72531.95845,21
+65536,472140.2998,929234.1318,72379.11763,21
+65537,472233.0142,926907.6234,71606.34002,21
+65538,471757.3294,925559.6573,71183.64619,21
+65539,471548.6975,923458.2131,71024.28973,21
+65540,471513.8978,921001.8689,70307.39889,21
+65541,470952.2394,919441.7809,70021.18763,21
+65542,470860.918,917235.1771,69306.14803,21
+65543,470856.8768,915253.0814,69043.42234,21
+65544,470138.0127,913107.1291,68555.78443,21
+65545,469967.4936,911532.8207,68149.33618,21
+65546,470348.9575,908874.5094,67455.59677,21
+65547,469188.3795,905258.8247,67380.09727,21
+65548,469390.1372,900482.282,66411.5343,21
+65549,468732.4534,899521.2695,66266.72149,21
+65550,469237.9185,896067.508,65851.58686,21
+65551,468217.6187,893756.0831,65093.85933,21
+65552,468528.8598,891054.1012,65526.28297,21
+65553,468402.8192,888499.9687,64694.77165,21
+65554,468689.4776,886098.6582,64589.41656,21
+65555,468106.3364,883148.5682,64568.00739,21
+65556,468715.3981,881152.6279,64086.53861,21
+65557,467862.9942,878322.5966,63927.18929,21
+65558,468764.4739,875893.7342,63515.89545,21
+65559,468037.0285,873330.0795,63768.61073,21
+65560,468247.5596,871056.6806,63103.29327,21
+65561,468249.2071,868587.3056,63074.6549,21
+65562,468173.7893,866045.3511,62825.58586,21
+65563,468021.8037,863655.5042,62650.79841,21
+65564,468331.1735,861129.7509,62326.03418,21
+65565,467834.8497,858986.5776,62144.74972,21
+65566,468320.2012,856283.5205,62147.34147,21
+65567,468084.823,854491.346,61528.81823,21
+65568,468127.675,851351.7205,61893.70318,21
+65569,467860.2392,849813.3272,61184.4066,21
+65570,468277.9039,846696.6566,61400.71498,21
+65571,467798.5392,844777.3312,60803.92385,21
+65572,468280.7007,842782.3118,60942.94816,21
+65573,467884.1076,839511.0607,60525.41004,21
+65574,468149.3664,838081.2025,60552.60838,21
+65575,468255.3775,835547.9503,60090.68729,21
+65576,467724.7697,832949.5263,59473.41703,21
+65577,468329.5979,831190.6472,60125.3051,21
+65578,467807.7682,828433.1105,59247.88158,21
+65579,468086.5113,826309.2114,59378.98537,21
+65580,468121.192,824537.1082,58824.62388,21
+65581,443292.1145,793994.2158,32295.97132,21
+65582,443009.6193,792285.5797,31379.38235,21
+65583,442949.8649,791192.6944,30598.64188,21
+65584,442707.0856,788902.511,29977.5829,21
+65585,442696.3827,787895.8982,29627.8938,21
+65586,443244.5627,786483.3311,28658.75536,21
+65587,442277.0204,784350.6261,28303.52453,21
+65588,442640.1807,783253.8578,27686.39901,21
+65589,442533.8289,781438.2507,27104.71974,21
+65590,442746.5576,779912.8877,26564.6895,21
+65591,442170.7432,778180.6795,26252.02915,21
+65592,442324.6928,776808.3809,25714.50677,21
+65593,442651.9301,775538.2352,25601.65907,21
+65594,442291.7745,773388.5021,24856.75043,21
+65595,442282.885,772353.0578,25007.22928,21
+65596,442202.0256,770542.9601,24321.50017,21
+65597,442124.4951,769137.318,24037.03514,21
+65598,442348.2874,767571.4991,23812.16123,21
+65599,442226.876,766201.288,23419.05524,21
+65600,441914.5904,764692.8661,23071.54814,21
+65601,442727.1453,763211.5326,22650.90019,21
+65602,441855.3027,761764.7894,22587.04076,21
+65603,442233.554,760615.4682,21903.40524,21
+65604,442309.7683,758852.4512,21836.77643,21
+65605,442135.1163,757436.2393,21411.91575,21
+65606,442403.7346,755642.9176,21059.68918,21
+65607,441893.8612,754986.4231,20780.77793,21
+65608,442390.2058,753061.5541,20461.53917,21
+65609,442334.7845,751822.3929,20026.89447,21
+65610,442208.0662,750609.6867,20074.33985,21
+65611,442554.0168,749245.8856,19119.43165,21
+65612,442574.382,747966.2067,19041.15231,21
+65613,442554.55,746992.7862,18717.16129,21
+65614,442994.152,745708.2238,17984.18217,21
+65615,442711.6674,744787.1653,17807.30154,21
+65616,442920.8196,743513.3684,17463.63311,21
+65617,443295.8274,742482.8221,16896.86379,21
+65618,443234.2453,741317.8623,16430.77675,21
+65619,443777.1294,740555.5106,16146.90036,21
+65620,443325.2579,739527.3674,15830.66778,21
+65621,443809.6142,738400.8997,15263.94606,21
+65622,443819.4371,737241.4718,14936.29748,21
+65623,444277.5057,736373.8921,14528.91852,21
+65624,444170.4677,735733.9988,14172.43806,21
+65625,444395.7268,734260.7673,13762.26631,21
+65626,444575.7098,733291.3612,13161.05845,21
+65627,445192.4847,732756.7975,13130.16515,21
+65628,444619.397,731511.3865,12386.74214,21
+65629,445220.1929,730905.9902,12239.09218,21
+65630,445359.9555,729598.099,11597.65693,21
+65631,445857.6635,728989.9925,11453.0089,21
+65632,445385.1857,727920.4161,10837.13238,21
+65633,446155.5914,727291.8373,10543.62258,21
+65634,446108.0644,726203.3161,10164.9005,21
+65635,446518.6975,725658.8932,9602.286075,21
+65636,446535.64,724447.0128,9518.799855,21
+65637,446788.9969,723721.0045,8720.586511,21
+65638,447222.0044,722809.5841,8734.320353,21
+65639,447018.9318,722266.2523,8119.908893,21
+65640,447484.3322,720987.7443,8351.642727,21
+65641,452285.9588,726616.9828,17073.45697,21
+65642,452591.9839,726413.2236,17024.92098,21
+65643,452408.8341,726155.2543,17235.39605,21
+65644,452911.1836,725726.3427,16841.88791,21
+65645,452463.8992,725043.89,16948.835,21
+65646,452759.9081,724960.0419,16658.04754,21
+65647,452920.6227,724069.63,16625.68599,21
+65648,453081.331,723964.2716,16369.27352,21
+65649,452869.9584,723818.8091,16561.97355,21
+65650,453385.4537,722834.6757,16043.52908,21
+65651,452863.6026,722391.1542,16272.11088,21
+65652,453369.1202,722334.0579,15959.9979,21
+65653,453120.3737,721412.1029,15719.26666,21
+65654,453600.9915,721100.6979,15930.53646,21
+65655,453526.1141,720810.802,15502.37238,21
+65656,453502.4105,719970.1609,15487.94328,21
+65657,453819.371,719441.3524,15330.91525,21
+65658,453814.3507,719543.8427,15305.71118,21
+65659,453820.4926,718230.77,14997.91373,21
+65660,453952.0256,718177.2244,14990.80885,21
+65661,453934.4052,717459.6804,14849.88187,21
+65662,454400.9849,716900.4934,14675.82809,21
+65663,454120.4999,716345.9684,14705.67281,21
+65664,454494.7142,715711.7411,14416.59652,21
+65665,454446.8911,715550.1266,14419.37822,21
+65666,454467.7521,714282.7899,14404.04988,21
+65667,454667.416,714021.8438,14159.1408,21
+65668,454884.7885,713643.4249,14001.33018,21
+65669,454793.7299,712670.2987,14003.94837,21
+65670,455382.5871,712475.4006,13854.80781,21
+65671,454903.1732,711739.2387,13857.3682,21
+65672,461214.6774,711590.5829,13592.43179,21
+65673,455273.3005,710980.9898,13710.29789,21
+65674,455778.9188,710750.6623,13588.13669,21
+65675,455838.6883,711162.1153,13428.61932,21
+65676,455632.1527,710993.7724,13574.4879,21
+65677,456087.4245,710513.8272,13308.40758,21
+65678,455931.5398,710350.9721,13292.06086,21
+65679,456688.745,709531.6395,13285.02234,21
+65680,456221.7449,709611.7715,13162.11253,21
+65681,456684.3277,709090.6587,13145.56782,21
+65682,457006.1144,708722.4013,13012.95162,21
+65683,456863.0871,707687.1942,13015.19414,21
+65684,456998.1347,707380.7053,12998.43724,21
+65685,457468.0955,706898.5091,12991.13002,21
+65686,457434.9079,706829.8072,12732.25431,21
+65687,457480.3206,706328.2765,12860.262,21
+65688,458080.9364,706216.496,12717.3164,21
+65689,457864.3533,705814.9793,12719.44977,21
+65690,458200.703,705760.7942,12576.117,21
+65691,458350.5299,705102.1357,12704.31083,21
+65692,458691.137,705170.1568,12434.48114,21
+65693,458573.8291,704743.0738,12436.51624,21
+65694,458894.756,704539.0504,12564.88138,21
+65695,459115.4824,704321.9574,12410.94812,21
+65696,459443.3388,703942.1069,12169.69283,21
+65697,459460.9658,703882.8162,12404.96641,21
+65698,459501.0812,703548.9082,12280.41103,21
+65699,460211.2988,703413.7901,12135.43046,21
+65700,459760.8606,703147.6542,12137.36205,21
+65701,455914.6447,698592.3885,3091.106199,21
+65702,455626.3797,698590.6922,2784.147866,21
+65703,456750.9753,698000.2364,2784.254119,21
+65704,456799.6537,697463.1763,2774.292631,21
+65705,457187.1588,697200.2981,2619.953387,21
+65706,457795.3779,696589.6995,2630.192554,21
+65707,457933.8371,695935.594,2465.092114,21
+65708,458620.9751,695740.8572,2599.638861,21
+65709,458861.0258,695340.3411,2465.263014,21
+65710,459393.2578,694478.4747,2299.119112,21
+65711,459677.8481,694152.6657,2455.069108,21
+65712,460173.8224,693837.8811,2433.79313,21
+65713,460895.7737,692891.4355,2142.583308,21
+65714,460582.722,692723.2798,2433.946308,21
+65715,462164.4656,691916.5562,2142.717331,21
+65716,461196.0413,691650.3452,2142.780332,21
+65717,462697.3406,690910.8971,2288.783923,21
+65718,462513.2374,691365.7991,2142.910342,21
+65719,463718.566,690994.9645,2142.973329,21
+65720,463171.4957,690261.0818,1996.498039,21
+65721,464400.8702,689807.1499,2143.09523,21
+65722,464266.2437,689610.898,1996.611227,21
+65723,464977.781,688772.3698,2143.217115,21
+65724,465550.6491,688365.9041,1849.549592,21
+65725,465810.4727,688284.5187,2143.334884,21
+65726,466148.0916,687159.491,1849.650533,21
+65727,466740.0219,687365.2106,1996.884632,21
+65728,467252.9413,686443.6177,1849.747981,21
+65729,467385.9367,686466.2118,1996.990194,21
+65730,468463.1411,685738.7456,1849.845418,21
+65731,468280.4804,685514.2519,1849.892375,21
+65732,468735.701,685138.2988,1849.939329,21
+65733,469974.676,684825.4299,1997.197471,21
+65734,469859.1071,684434.6201,1850.036742,21
+65735,470297.8705,684280.8869,2143.903172,21
+65736,470962.5122,683926.6355,1997.361418,21
+65737,471451.3518,683918.8606,2144.024948,21
+65738,472014.6557,683467.6,1997.47449,21
+65739,472159.9327,682984.9807,2144.146708,21
+65740,473077.7423,683209.4861,1997.587546,21
+65741,473406.8998,682817.2403,2144.26845,21
+65742,473848.0799,682485.3971,1997.700587,21
+65743,474442.2225,682359.1216,2144.390177,21
+65744,474973.7766,682074.5242,2144.453061,21
+65745,475097.7409,682067.2873,2144.51594,21
+65746,476079.4669,681857.9085,2144.578815,21
+65747,476296.3638,681577.2341,2144.641686,21
+65748,477064.142,681705.8388,2144.704552,21
+65749,477288.0675,681338.6589,2144.767414,21
+65750,478069.968,681224.2064,2290.912757,21
+65751,478180.4516,681201.6142,2144.897136,21
+65752,479051.2566,681240.6771,2144.959985,21
+65753,479452.3878,680862.4459,2291.119066,21
+65754,479875.1722,681256.6371,2291.19069,21
+65755,480251.097,680465.4719,2145.156525,21
+65756,481198.1082,681163.8277,2291.329626,21
+65757,481102.8395,680791.7406,2291.401235,21
+65758,482259.4743,680914.7095,2437.039588,21
+65759,482438.4089,680242.1026,2145.423822,21
+65760,482812.0934,680112.1132,2437.19228,21
+65761,483827.0506,680348.6825,2291.692022,21
+65762,483074.5846,681670.4692,2437.349773,21
+65763,484532.3688,682099.1774,2291.839503,21
+65764,484285.9965,682954.7558,2437.507077,21
+65765,484945.596,683759.0129,2437.587989,21
+65766,484896.4599,684584.0021,2582.749141,21
+65767,486085.9836,685576.4075,2437.754292,21
+65768,485773.7249,686024.8045,2582.925826,21
+65769,486229.87,687138.0753,2583.016546,21
+65770,486975.4994,687972.4387,2583.10726,21
+65771,486951.8263,689004.7825,2583.197965,21
+65772,487533.1685,689743.0532,2727.899045,21
+65773,488142.5247,690556.146,2728.000085,21
+65774,487951.919,691954.5101,2728.101115,21
+65775,489026.0165,692071.7418,2872.349468,21
+65776,488659.6471,694011.6079,2872.46134,21
+65777,489537.2233,694212.7358,2872.573201,21
+65778,489595.2787,695349.0799,2872.685052,21
+65779,490348.5406,696738.1984,3016.507463,21
+65780,490170.838,697225.6172,3016.630656,21
+65781,491064.3735,698525.1774,3160.034162,21
+65782,491307.9071,699748.3597,3016.882437,21
+65783,491722.7933,700103.6548,3303.165028,21
+65784,491768.548,701892.2429,3160.439172,21
+65785,492765.9382,702307.0663,3303.453811,21
+65786,492406.1339,703951.9013,3303.601143,21
+65787,493454.0636,705543.4245,3303.74846,21
+65788,493386.4685,707092.7592,3446.383901,21
+65789,493845.2127,708263.3705,3304.048928,21
+65790,494081.4058,709587.2976,3588.801791,21
+65791,495002.5713,710610.4673,3588.975216,21
+65792,494897.4091,711510.8748,3447.030374,21
+65793,495200.0881,712446.7949,3731.055384,21
+65794,496265.6523,713508.7751,3589.495329,21
+65795,496430.3553,714357.76,3872.803724,21
+65796,496516.0593,715174.2999,3589.854596,21
+65797,497535.7363,716296.9737,4014.225367,21
+65798,497546.9471,717000.7129,3731.997443,21
+65799,497927.2013,718077.7953,4014.643527,21
+65800,498469.637,718765.8901,3873.80363,21
+65801,499357.585,719574.0252,4015.068637,21
+65802,499359.3011,720701.2522,4156.003311,21
+65803,499900.859,721029.8848,4156.234521,21
+65804,500422.0331,722590.3063,4296.857176,21
+65805,500616.6312,722910.6069,4297.104007,21
+65806,501599.0441,724056.834,4437.424369,21
+65807,501345.3377,724482.8514,4297.604943,21
+65808,502319.1237,725596.2955,4577.706633,21
+65809,502707.7843,726516.7154,4438.212921,21
+65810,502952.9458,727003.5797,4769.996466,21
+65811,503466.8485,728259.6625,4460.187143,21
+65812,503757.6743,728499.3694,4909.753721,21
+65813,504765.1199,729786.5006,4760.7114,21
+65814,504822.1008,730245.046,4771.197629,21
+65815,505256.4449,731386.9738,5059.69999,21
+65816,505623.8501,731941.6713,4921.137169,21
+65817,506350.7736,736315.3257,5070.415384,21
+65818,506986.9895,738875.1762,5209.380894,21
+65819,506613.1179,739292.9021,5081.093358,21
+65820,507759.6455,741215.5777,5368.36755,21
+65821,564411.6994,801365.7393,21062.26184,21
+65822,566950.6189,810168.622,22118.64648,21
+65823,567289.6441,825855.7297,22631.31945,21
+65824,568105.5066,831945.4428,22653.5928,21
+65825,568499.1566,834284.7471,22928.62284,21
+65826,569326.7851,839218.4114,23439.37573,21
+65827,569887.812,845260.1871,23446.03672,21
+65828,570584.2692,849451.3186,23736.1636,21
+65829,571128.0581,856737.2459,23978.36524,21
+65830,571514.942,861663.5102,24267.92753,21
+65831,572818.5748,866216.7148,24509.72436,21
+65832,572939.8754,871207.2651,24548.55889,21
+65833,573801.8553,875685.2415,25024.29795,21
+65834,574598.7047,880704.5636,25094.8444,21
+65835,575113.4329,884651.1114,31568.49674,21
+65836,576158.6185,889595.3526,29795.04136,21
+65837,576428.6095,894223.0363,30698.43167,21
+65838,577525.5992,898417.7653,31658.72177,21
+65839,578064.8636,902944.3086,32088.59345,21
+65840,578615.1604,907431.6927,32702.34705,21
+65841,579313.3018,911417.0332,33054.97287,21
+65842,579905.6754,916279.2165,33972.7535,21
+65843,580511.4234,920072.2218,34658.61622,21
+65844,581339.5972,925062.9127,35424.78889,21
+65845,581688.4493,928384.2745,35529.48206,21
+65846,582474.2161,933128.1498,36467.92559,21
+65847,583060.8724,937284.2597,36908.73342,21
+65848,583462.6844,941346.8345,37604.96185,21
+65849,584258.6775,945771.4388,38037.3704,21
+65850,586178.0223,949037.8521,38947.61284,21
+65851,586313.3415,954229.3168,39721.27323,21
+65852,586743.6874,957467.2435,40314.3286,21
+65853,586919.3732,962199.2654,40400.6711,21
+65854,587313.6986,965562.5997,45836.84635,21
+65855,587944.8472,969815.1205,44835.93168,21
+65856,587411.755,974037.1031,45874.81383,21
+65857,588453.5453,977705.3449,46855.96649,21
+65858,588620.9931,982167.673,47911.66296,21
+65859,588245.828,985191.6589,48645.0284,21
+65860,592882.2757,989672.2126,49355.86447,21
+65861,593321.6639,993999.5049,50524.93767,21
+65862,594370.3457,997397.5979,51016.88728,21
+65863,594182.8678,1001336.769,52043.46771,21
+65864,595070.3837,1005356.397,52547.45206,21
+65865,595092.5897,1009121.288,53563.74693,21
+65866,595306.8489,1012658.4,54061.15214,21
+65867,595906.8452,1016994.453,54968.31781,21
+65868,596291.8427,1020846.257,55928.37097,21
+65869,596361.349,1023891.095,56101.92862,21
+65870,596985.1076,1028652.391,57315.30833,21
+65871,597081.8373,1031928.551,57600.30367,21
+65872,597036.3368,1035586.467,58704.95243,21
+65873,597905.7683,1040009.062,59174.60066,21
+65874,597622.4837,1043190.945,59961.65708,21
+65875,598290.9372,1046963.184,60524.9363,21
+65876,598526.6792,1051128.726,61388.74929,21
+65877,598287.5228,1054365.892,62060.88523,21
+65878,599001.9046,1058748.716,62604.8612,21
+65879,599064.7735,1061459.291,63600.31272,21
+65880,599148.4303,1065952.841,63864.69634,21
+65881,621543.4949,1089500.526,84165.50994,21
+65882,623946.4111,1093614.434,86215.54341,21
+65883,681812.3229,1095860.311,87213.55275,21
+65884,663159.9362,1097592.216,88689.63113,21
+65885,666393.7782,1100130.411,89718.64193,21
+65886,670379.0567,1102728.334,90560.20184,21
+65887,672922.7219,1104245.743,91833.26454,21
+65888,674874.0204,1107265.854,92998.92796,21
+65889,677136.6567,1109040.068,94956.10195,21
+65890,678418.9259,1111103.733,95691.28616,21
+65891,681751.0765,1113816.723,96911.84425,21
+65892,682368.3741,1115357.151,97999.74451,21
+65893,684764.5081,1118031.61,98841.65428,21
+65894,687596.6451,1119706.769,100546.0963,21
+65895,687342.9952,1122014.548,101117.796,21
+65896,690618.1311,1124477.079,102403.9752,21
+65897,692686.1864,1125850.276,106118.7961,21
+65898,693510.8085,1128725.006,107306.6672,21
+65899,696489.45,1130257.212,112507.5486,21
+65900,697329.391,1132473.051,114559.5205,21
+65901,698980.657,1134118.688,114669.9526,21
+65902,700965.4325,1136729.417,116622.8561,21
+65903,702068.9769,1138681.13,118085.5201,21
+65904,704517.7385,1140297.449,119814.9651,21
+65905,705504.6868,1142641.65,121132.4426,21
+65906,707866.0803,1144002.243,122398.2915,21
+65907,708360.6891,1146692.017,123747.475,21
+65908,710473.4852,1148559.521,125431.9011,21
+65909,712074.6242,1149872.433,126166.583,21
+65910,713433.737,1152575.303,127938.1075,21
+65911,715367.0484,1154117.383,129131.67,21
+65912,716404.7351,1156018.921,130658.5582,21
+65913,718588.169,1158085.531,131524.0014,21
+65914,719412.9348,1159301.949,132937.2443,21
+65915,721217.2554,1162061.906,134418.1346,21
+65916,722382.3974,1163854.14,135684.6541,21
+65917,723968.1438,1165253.916,136804.2274,21
+65918,725235.3974,1167149.354,138078.1293,21
+65919,726686.79,1169389.245,139120.7493,21
+65920,728208.9407,1170866.959,140347.0222,21
+65921,728477.3671,1172980.18,141912.1579,21
+65922,732015.8285,1174677.221,142774.577,21
+65923,731628.0795,1176369.514,144078.7788,21
+65924,734388.2861,1178756.144,145459.0084,21
+65925,734456.6732,1179457.011,146475.4512,21
+65926,736098.6119,1182305.163,147376.3937,21
+65927,738241.232,1183533.887,149075.0066,21
+65928,737939.0292,1186004.541,149805.2987,21
+65929,740726.2858,1186764.504,151347.9241,21
+65930,741924.2521,1189647.602,152013.3221,21
+65931,742685.4255,1190755.097,153574.1068,21
+65932,743329.3199,1192450.531,154192.5886,21
+65933,746241.6846,1194837.128,156117.6823,21
+65934,746390.6252,1196188.654,156648.3698,21
+65935,747645.8123,1197837.907,157775.763,21
+65936,748952.0852,1199858.357,158863.5109,21
+65937,750967.5917,1201249.161,160069.9654,21
+65938,751084.0153,1203231.282,161547.6687,21
+65939,752575.1647,1212341.862,162093.463,21
+65940,754976.2681,1213244.102,162989.3721,21
+65941,753777.2734,1216829.713,164762.6821,21
+65942,756303.416,1224263.307,164787.7802,21
+65943,757072.5671,1225550.478,166585.5768,21
+65944,756599.4197,1231764.943,166553.8516,21
+65945,757381.6513,1234752.798,168462.3502,21
+65946,759363.3893,1238174.251,168793.2978,21
+65947,757576.2553,1242536.708,169758.2978,21
+65948,759394.1226,1246585.223,171051.9482,21
+65949,760096.5279,1249785.128,171382.4893,21
+65950,760029.1277,1253871.02,172448.6299,21
+65951,761078.2457,1257911.406,173326.456,21
+65952,761437.2913,1261175.907,174485.7745,21
+65953,761326.6885,1265041.782,175176.6299,21
+65954,763207.0138,1268522.771,175850.0973,21
+65955,762080.0376,1272270.876,177164.8658,21
+65956,763404.8023,1277028.499,177278.5189,21
+65957,763675.8736,1278965.701,179152.3097,21
+65958,764538.2706,1284346.442,179005.2084,21
+65959,765422.2956,1286755.559,180318.9845,21
+65960,764268.1623,1291025.826,181125.5683,21
+65961,765749.8758,1294477.041,182044.9903,21
+65962,766750.6736,1297358.45,182628.0219,21
+65963,765588.2512,1302627.494,183512.5458,21
+65964,768340.42,1304371.69,191500.6711,21
+65965,766085.9476,1309245.711,192604.7844,21
+65966,769229.4787,1312225.689,193642.4466,21
+65967,767631.208,1316258.42,196398.9724,21
+65968,768339.9017,1319050.24,197049.1533,21
+65969,769579.7543,1323119.48,200126.4632,21
+65970,769920.5316,1326990.485,200318.196,21
+65971,768565.8861,1329798.069,202647.4972,21
+65972,771194.699,1334088.721,203966.1331,21
+65973,770863.3052,1337416.872,205859.1138,21
+65974,771078.0884,1340728.875,207480.9666,21
+65975,771252.354,1343929.716,208387.5079,21
+65976,772627.1042,1348073.624,210853.6627,21
+65977,771157.911,1351892.358,212061.1678,21
+65978,774134.2433,1353458.814,213932.2932,21
+65979,772061.3745,1359403.576,214388.0819,21
+65980,774105.5434,1361987.261,216620.6694,21
+65981,773580.1403,1364841.22,218985.6961,21
+65982,774204.1672,1368201.415,218748.4159,21
+65983,773950.6153,1372983.408,221277.6937,21
+65984,776196.5356,1375246.821,222899.6461,21
+65985,773850.3657,1378899.465,223870.7407,21
+65986,776623.0349,1382812.262,226304.3887,21
+65987,775218.034,1386012.903,226312.767,21
+65988,776331.2541,1389045.63,227843.8458,21
+65989,776703.16,1393945.842,230903.3465,21
+65990,776557.2183,1395227.12,231007.2914,21
+65991,777705.1633,1401042.185,233299.2483,21
+65992,777492.1717,1401734.281,234224.2293,21
+65993,778281.4737,1407952.86,234436.9154,21
+65994,777417.4059,1408797.075,238148.183,21
+65995,779279.6079,1413795.323,238611.2069,21
+65996,779040.3707,1417677.343,239143.001,21
+65997,778814.2909,1419131.405,241382.0002,21
+65998,779254.8126,1424739.849,244338.87,21
+65999,780318.0136,1426058.604,242395.8379,21
+66000,779542.3513,1430741.87,246064.0789,21
+66001,789360.7489,1439121.465,260831.2074,21
+66002,789114.5547,1441256.536,264760.5198,21
+66003,790477.7623,1441133.279,265625.9408,21
+66004,791320.9637,1442280.024,268461.8898,21
+66005,791745.1264,1443496.465,271018.9292,21
+66006,792093.4131,1442949.494,270585.3888,21
+66007,792931.0441,1445081.929,274594.1385,21
+66008,792429.4107,1445049.252,275682.8413,21
+66009,794150.8236,1444854.689,278831.8839,21
+66010,793418.0999,1446212.787,276989.0671,21
+66011,794008.2183,1446758.328,282208.402,21
+66012,794882.2021,1446327.975,282982.6971,21
+66013,794870.835,1447764.436,283305.5685,21
+66014,794961.3604,1448705.59,286796.0977,21
+66015,796905.6412,1446927.281,287341.4151,21
+66016,795089.204,1448900.836,289678.6309,21
+66017,796893.4369,1449504.758,290993.6592,21
+66018,797238.46,1448703.974,293380.9749,21
+66019,796765.8271,1450600.594,293995.2676,21
+66020,797434.0642,1450804.479,295842.7044,21
+66021,798161.88,1449315.994,298149.6329,21
+66022,797829.9855,1451362.482,300459.8911,21
+66023,798274.1516,1452082.33,302101.1255,21
+66024,799799.8477,1450565.821,303707.8034,21
+66025,798604.2832,1452750.692,304364.6281,21
+66026,799305.7465,1451627.319,309263.0809,21
+66027,799159.3798,1452227.929,306223.9219,21
+66028,799891.2866,1454027.498,311056.1615,21
+66029,800122.0554,1451401.099,311631.5675,21
+66030,800437.8083,1454477.455,312905.4063,21
+66031,800953.6243,1453260.37,315449.7607,21
+66032,801135.5756,1453298.462,316485.9897,21
+66033,800902.5316,1454577.79,318137.5787,21
+66034,801186.6247,1453673.852,320359.3937,21
+66035,802211.6525,1454966.391,320707.0998,21
+66036,802044.6675,1454879.3,323344.7975,21
+66037,801737.8385,1454487.169,323278.5695,21
+66038,803402.6302,1455081.3,326831.6053,21
+66039,801886.2959,1455137.691,326492.9543,21
+66040,803002.1243,1455790.815,330677.2786,21
+66041,803613.3609,1454959.159,328476.4184,21
+66042,803287.1205,1457150.753,334280.6338,21
+66043,803849.7413,1454516.139,331071.278,21
+66044,802922.9542,1456686.622,336702.47,21
+66045,804617.7275,1455974.533,336370.4389,21
+66046,803852.5268,1455988.458,336782.7776,21
+66047,804917.7352,1456216.03,340096.1642,21
+66048,804738.7328,1457153.894,341217.3721,21
+66049,804672.6494,1455302.658,342350.9713,21
+66050,804735.832,1456823.784,343038.5035,21
+66051,805650.789,1457075.361,345163.5384,21
+66052,805369.3891,1455982.976,346969.8919,21
+66053,804672.5663,1456449.754,346962.6796,21
+66054,806801.14,1457165.78,350003.0925,21
+66055,806326.8317,1456255.38,348949.4755,21
+66056,805227.9818,1456217.329,353456.4298,21
+66057,806540.2209,1456629.307,352170.2289,21
+66058,807177.9034,1456064.192,355098.6582,21
+66059,806251.934,1455381.215,357583.2946,21
+66060,807590.3868,1455173.592,356202.7409,21
+66061,805823.631,1455242.059,359290.4666,21
+66062,808928.5966,1457927.718,361544.7476,21
+66063,807942.0006,1458893.043,363898.5158,21
+66064,809216.9429,1458792.663,362544.7002,21
+66065,808183.5034,1461191.023,367509.7849,21
+66066,808698.2913,1461045.172,365443.8803,21
+66067,808618.4966,1462444.177,368459.1628,21
+66068,809372.6963,1463424.171,369023.0399,21
+66069,809084.3679,1463519.646,368974.5393,21
+66070,808330.7515,1465851.275,372328.6812,21
+66071,809895.8141,1465452.783,372340.0493,21
+66072,809057.1696,1467222.031,373045.6358,21
+66073,808970.5946,1467789.414,373857.5716,21
+66074,810473.2088,1469367.8,376307.0152,21
+66075,808593.2005,1469659.758,376191.6185,21
+66076,810571.1888,1470945.548,379899.9377,21
+66077,808330.7285,1471082.715,376962.7474,21
+66078,811165.6649,1473517.396,380456.7731,21
+66079,809302.2604,1472734.768,381311.5728,21
+66080,809767.5909,1475252.859,382653.0936,21
+66081,810028.7489,1474801.94,382455.8551,21
+66082,810583.2954,1476761.376,383978.6859,21
+66083,809702.7484,1477257.213,386545.6802,21
+66084,810380.9651,1477308.306,385653.7081,21
+66085,809558.6235,1479481.097,387770.7404,21
+66086,811218.6896,1480291.811,388100.9229,21
+66087,810090.4604,1480623.114,389433.6275,21
+66088,810774.9226,1482499.064,390762.7677,21
+66089,809912.4155,1481971.196,390466.3658,21
+66090,810780.216,1484361.081,394003.7457,21
+66091,810486.8915,1484673.546,392834.7131,21
+66092,810669.3842,1485576.759,394732.2757,21
+66093,811013.1631,1485469.625,394066.0171,21
+66094,810348.2475,1488244.118,398342.7484,21
+66095,810939.6656,1487809.716,396200.2609,21
+66096,810828.8749,1489283.008,399584.9992,21
+66097,810955.8263,1490600.653,397165.1804,21
+66098,810597.1529,1490079.656,402316.612,21
+66099,811328.5891,1492574.055,400522.7072,21
+66100,810346.7375,1493230.328,402640.1321,21
+66101,811384.9772,1493425.142,403636.1682,21
+66102,810860.5877,1493986.191,403675.938,21
+66103,810967.3133,1496104.11,404643.1609,21
+66104,810869.3896,1496667.55,406545.1392,21
+66105,811591.9747,1496817.613,407128.6626,21
+66106,810294.4901,1498819.685,407491.8002,21
+66107,812435.0529,1498815.114,407967.9379,21
+66108,810430.0704,1499905.219,410610.2183,21
+66109,810562.1515,1501513.545,410730.625,21
+66110,812063.1234,1501284.484,411040.9398,21
+66111,810972.84,1503292.204,412139.057,21
+66112,811230.2037,1503427.77,413925.5661,21
+66113,811446.3361,1504205.33,412614.3603,21
+66114,810576.7782,1505631.373,416517.8721,21
+66115,812123.9195,1506034.794,415367.831,21
+66116,810544.5339,1507458.985,416204.5473,21
+66117,811192.6078,1508470.523,417959.7014,21
+66118,811511.1862,1508011.367,418350.9135,21
+66119,811676.35,1510190.651,419404.2671,21
+66120,812256.1872,1510691.756,421035.2933,15.6
+66121,0,0,0,15.6
+66122,0,0,0,15.6
+66123,0,0,0,15.6
+66124,0,0,0,15.6
+66125,0,79.96860354,0,15.6
+66126,0,0,1714305.923,15.6
+66127,0,0,0,15.6
+66128,0,0,0,15.6
+66129,0,125.7095463,0,15.6
+66130,0,0,0,15.6
+66131,0,0,0,15.6
+66132,339638.623,0,0,15.6
+66133,0,73.89554299,0,15.6
+66134,0,0,0,15.6
+66135,0,0,0,15.6
+66136,0,0,0,15.6
+66137,0,67.19665644,0,15.6
+66138,0,0,0,15.6
+66139,0,0,0,15.6
+66140,0,0,0,15.6
+66141,0,0,0,15.6
+66142,0,279.8412152,0,15.6
+66143,0,0,0,15.6
+66144,0,0,0,15.6
+66145,0,0,0,15.6
+66146,0,0,0,15.6
+66147,0,0,0,15.6
+66148,0,0,0,15.6
+66149,0,0,0,15.6
+66150,0,0,0,15.6
+66151,0,64.04677174,0,15.6
+66152,0,0,0,15.6
+66153,0,0,0,15.6
+66154,0,0,0,15.6
+66155,0,3.066390577,0,15.6
+66156,0,0,0,15.6
+66157,0,74.24719858,0,15.6
+66158,0,0,0,15.6
+66159,0,0,0,15.6
+66160,0,0,0,15.6
+66161,0,7.298055973,1623924.448,15.6
+66162,0,0,0,15.6
+66163,0,97.55176332,0,15.6
+66164,0,0,0,15.6
+66165,0,0,0,15.6
+66166,0,0,0,15.6
+66167,0,3.539350406,0,15.6
+66168,0,0,0,15.6
+66169,339581.9015,81.82121774,0,15.6
+66170,0,0,0,15.6
+66171,0,0,0,15.6
+66172,0,0,0,15.6
+66173,0,7.97329308,0,15.6
+66174,0,0,0,15.6
+66175,0,106.9079719,0,15.6
+66176,0,0,0,15.6
+66177,0,0,0,15.6
+66178,0,0,0,15.6
+66179,0,3.940599516,0,15.6
+66180,0,0,0,15.6
+66181,0,0,0,15.6
+66182,0,0,0,15.6
+66183,0,0,0,15.6
+66184,0,0,0,15.6
+66185,0,0,0,15.6
+66186,0,0,0,15.6
+66187,0,0,0,15.6
+66188,0,0,0,15.6
+66189,0,0,0,15.6
+66190,0,0,0,15.6
+66191,0,0,0,15.6
+66192,0,0,0,15.6
+66193,0,0,0,15.6
+66194,0,0,0,15.6
+66195,0,0,0,15.6
+66196,0,0,1541434.049,15.6
+66197,0,0,0,15.6
+66198,0,0,0,15.6
+66199,0,0,0,15.6
+66200,0,0,0,15.6
+66201,0,0,0,15.6
+66202,0,0,0,15.6
+66203,0,0,0,15.6
+66204,0,0,0,15.6
+66205,0,0,0,15.6
+66206,0,0,0,15.6
+66207,339543.0014,0,0,15.6
+66208,0,0,0,15.6
+66209,0,0,0,15.6
+66210,0,0,0,15.6
+66211,0,0,0,15.6
+66212,0,0,0,15.6
+66213,0,0,0,15.6
+66214,0,0,0,15.6
+66215,0,0,0,15.6
+66216,0,0,0,15.6
+66217,0,0,0,15.6
+66218,0,0,0,15.6
+66219,0,0,0,15.6
+66220,0,0,0,15.6
+66221,0,0,0,15.6
+66222,0,0,0,15.6
+66223,0,0,0,15.6
+66224,0,0,0,15.6
+66225,0,0,0,15.6
+66226,0,32399.60646,0,15.6
+66227,0,2619.286932,0,15.6
+66228,0,2051.706708,0,15.6
+66229,0,10766.52055,0,15.6
+66230,0,12140.3316,0,15.6
+66231,0,10650.00003,1466181.904,15.6
+66232,0,11154.73725,0,15.6
+66233,43050.56893,11615.40932,0,15.6
+66234,1280.650857,11952.50796,0,15.6
+66235,2030.818994,12168.00322,0,15.6
+66236,12283.15427,12436.99282,0,15.6
+66237,11303.89089,12719.23453,0,15.6
+66238,9258.750009,12965.33353,0,15.6
+66239,10001.94413,13209.46024,0,15.6
+66240,10103.62397,13475.56166,0,15.6
+66241,10319.60165,13857.54739,0,15.6
+66242,10390.76932,14041.53997,0,15.6
+66243,10431.79967,14206.51692,0,15.6
+66244,10465.14879,14348.23836,0,15.6
+66245,350033.0973,14525.61819,0,15.6
+66246,10583.31871,14847.21306,0,15.6
+66247,10593.80668,14852.24082,0,15.6
+66248,10654.86036,15015.12028,0,15.6
+66249,10711.50058,15204.0053,0,15.6
+66250,10742.13637,15323.34603,0,15.6
+66251,10784.9365,15508.93627,0,15.6
+66252,10864.41519,15682.76095,0,15.6
+66253,10839.0527,15813.18708,0,15.6
+66254,10932.36268,16054.43318,0,15.6
+66255,10953.31992,16163.48055,0,15.6
+66256,10993.52694,0,0,15.6
+66257,11069.44761,0,0,15.6
+66258,11062.99274,0,0,15.6
+66259,11114.6993,85.87346742,0,15.6
+66260,11182.75536,61564.75187,0,15.6
+66261,11184.83258,0,0,15.6
+66262,11239.43231,12941.6151,0,15.6
+66263,0,22377.0268,0,15.6
+66264,0,16692.17979,0,15.6
+66265,0,17640.4938,0,15.6
+66266,0,17821.80708,1397507.78,15.6
+66267,0,17968.42835,0,15.6
+66268,0,18089.31653,0,15.6
+66269,0,18278.52007,0,15.6
+66270,53333.51255,18363.69962,0,15.6
+66271,0,18773.28711,0,15.6
+66272,2469.831133,18690.83565,0,15.6
+66273,15704.00311,18793.01123,0,15.6
+66274,12678.12024,18942.29482,0,15.6
+66275,11112.45038,19097.57878,0,15.6
+66276,11803.72577,19197.48361,0,15.6
+66277,11877.13384,19327.98796,0,15.6
+66278,11862.8468,19535.75104,0,15.6
+66279,11952.93253,19593.14854,0,15.6
+66280,11908.49193,19769.50963,0,15.6
+66281,12001.01358,19908.70192,0,15.6
+66282,11999.37266,20020.45612,0,15.6
+66283,351521.523,20211.54893,0,15.6
+66284,12036.03139,20271.80329,0,15.6
+66285,12101.30784,20442.3017,0,15.6
+66286,12105.0336,20570.16061,0,15.6
+66287,12152.92349,20690.72705,0,15.6
+66288,12159.71404,20791.34429,0,15.6
+66289,12156.61233,20939.43353,0,15.6
+66290,12248.87509,0,0,15.6
+66291,12221.46515,0,0,15.6
+66292,12252.54759,0,0,15.6
+66293,12300.22782,73391.39191,0,15.6
+66294,12316.10367,4598.883779,0,15.6
+66295,12315.17307,15252.43562,0,15.6
+66296,12346.89551,28031.53837,0,15.6
+66297,12404.78105,21045.16218,0,15.6
+66298,12384.37012,22132.86655,0,15.6
+66299,12398.02422,22274.46649,0,15.6
+66300,0,22464.15522,0,15.6
+66301,0,22240.6986,1334806.647,15.6
+66302,0,22230.71422,0,15.6
+66303,0,22049.58028,0,15.6
+66304,0,21974.19408,0,15.6
+66305,0,21862.52375,0,15.6
+66306,61110.6603,21737.16534,0,15.6
+66307,0,21603.22241,0,15.6
+66308,2172.156299,21549.99768,0,15.6
+66309,19471.87878,21490.85065,0,15.6
+66310,13843.46315,21288.09062,0,15.6
+66311,13175.57548,21195.46259,0,15.6
+66312,13794.47362,21045.91909,0,15.6
+66313,13998.00094,20967.76627,0,15.6
+66314,14028.8201,20906.56327,0,15.6
+66315,14153.54802,20696.7069,0,15.6
+66316,14307.11594,20597.9334,0,15.6
+66317,14368.2321,20507.45741,0,15.6
+66318,14476.35176,20325.79316,0,15.6
+66319,14610.5793,20254.53407,0,15.6
+66320,14652.98441,20114.48493,0,15.6
+66321,354328.5729,20026.86256,0,15.6
+66322,14858.28372,19856.18457,0,15.6
+66323,15048.81658,110.119783,0,15.6
+66324,15098.23076,0,0,15.6
+66325,15238.05723,0,0,15.6
+66326,15311.2521,67745.91282,0,15.6
+66327,15472.87613,935.8538847,0,15.6
+66328,15526.52586,14893.07561,0,15.6
+66329,15638.5466,24188.90663,0,15.6
+66330,15746.11046,18136.61773,0,15.6
+66331,15869.8684,18780.34019,0,15.6
+66332,15968.80686,18754.15207,0,15.6
+66333,16053.61128,18521.71088,0,15.6
+66334,16165.40902,18453.23028,0,15.6
+66335,16274.77434,18336.89016,0,15.6
+66336,0,18180.42604,1277559.096,15.6
+66337,0,18131.32146,0,15.6
+66338,0,17912.07976,0,15.6
+66339,0,17753.55241,0,15.6
+66340,70380.98493,17711.02679,0,15.6
+66341,0,17552.28577,0,15.6
+66342,7201.627716,17482.61334,0,15.6
+66343,25382.71177,17280.87469,0,15.6
+66344,15808.82684,17132.8112,0,15.6
+66345,17334.85206,16985.48161,0,15.6
+66346,17453.81893,16842.12031,0,15.6
+66347,17562.0846,16723.31806,0,15.6
+66348,17690.03377,16540.931,0,15.6
+66349,17736.76805,16415.27462,0,15.6
+66350,17908.43886,16261.25874,0,15.6
+66351,17974.13402,16259.31245,0,15.6
+66352,18055.92171,15917.40107,0,15.6
+66353,18190.00791,15830.04469,0,15.6
+66354,18250.38856,15634.39182,0,15.6
+66355,18378.11143,15489.11684,0,15.6
+66356,18486.60412,62.45966845,0,15.6
+66357,18545.66254,0,0,15.6
+66358,18719.3941,0,0,15.6
+66359,358204.1033,0,0,15.6
+66360,18882.77381,56943.94269,0,15.6
+66361,18841.32808,0,0,15.6
+66362,18843.54906,7306.773423,0,15.6
+66363,18858.5364,457130.4425,0,15.6
+66364,18783.00953,15045.98388,0,15.6
+66365,18777.93954,15727.61103,0,15.6
+66366,18777.80035,16285.53599,0,15.6
+66367,18777.92506,16466.77829,0,15.6
+66368,18741.60353,16717.39818,0,15.6
+66369,18694.8506,16994.4305,0,15.6
+66370,0,17195.47551,0,15.6
+66371,0,17481.30257,0,15.6
+66372,0,17676.10103,1225293.706,15.6
+66373,70598.69399,17851.87193,0,15.6
+66374,554.2177981,18143.32679,0,15.6
+66375,11786.72069,18300.62621,0,15.6
+66376,25319.29308,18615.86775,0,15.6
+66377,17448.45738,18815.77643,0,15.6
+66378,18616.88928,19031.15201,0,15.6
+66379,18655.38958,19265.89604,0,15.6
+66380,18592.45864,19526.33665,0,15.6
+66381,18616.86799,19743.7711,0,15.6
+66382,18589.27843,19989.37507,0,15.6
+66383,18538.64195,20172.53187,0,15.6
+66384,18547.46302,20444.42807,0,15.6
+66385,18491.68416,20681.11003,0,15.6
+66386,18488.47635,20898.4569,0,15.6
+66387,18467.03376,21151.95543,0,15.6
+66388,18451.83964,21355.31097,0,15.6
+66389,18402.56921,21596.54994,0,15.6
+66390,18385.26245,0,0,15.6
+66391,18360.58321,0,0,15.6
+66392,18345.21661,0,0,15.6
+66393,18318.46389,79263.60728,0,15.6
+66394,18301.1141,441552.5694,0,15.6
+66395,18253.5751,13884.38863,0,15.6
+66396,18264.25021,30808.26167,0,15.6
+66397,357646.186,22292.60058,0,15.6
+66398,18199.2747,23735.96606,0,15.6
+66399,18149.48364,23982.78946,0,15.6
+66400,18176.40739,24182.29366,0,15.6
+66401,18095.64681,24488.85082,0,15.6
+66402,18084.16077,24628.63714,0,15.6
+66403,0,24926.37053,0,15.6
+66404,0,25127.58063,0,15.6
+66405,0,336102.5883,0,15.6
+66406,68823.48777,49492.97437,0,15.6
+66407,0,44367.91921,0,15.6
+66408,10635.52364,122874.5389,1177591.695,15.6
+66409,24895.11134,119168.4446,0,15.6
+66410,16600.89298,130532.3512,0,15.6
+66411,17864.88312,123242.4899,0,15.6
+66412,17833.65552,130375.5984,0,15.6
+66413,17890.48425,132547.7354,0,15.6
+66414,17753.82325,135770.1245,0,15.6
+66415,17790.73969,137377.976,0,15.6
+66416,17762.85158,140988.9033,0,15.6
+66417,17722.40355,142580.4355,0,15.6
+66418,17670.75669,145138.543,0,15.6
+66419,17673.64527,147890.5827,0,15.6
+66420,17643.86998,150286.0239,0,15.6
+66421,17761.84445,151004.9496,0,15.6
+66422,17876.41587,151239.6924,0,15.6
+66423,18004.39454,123246.7796,0,15.6
+66424,18161.84553,123918.4132,0,15.6
+66425,18261.98176,210023.5472,0,15.6
+66426,18385.07781,134940.0275,0,15.6
+66427,18538.40521,151312.0901,0,15.6
+66428,18633.78225,159096.6296,0,15.6
+66429,18790.59339,155309.2352,0,15.6
+66430,18899.4293,156475.664,0,15.6
+66431,18996.49531,156745.3171,0,15.6
+66432,19179.1607,157604.8067,0,15.6
+66433,19280.07782,158154.3176,0,15.6
+66434,19386.85478,158567.1619,0,15.6
+66435,19522.56817,29332.56353,0,15.6
+66436,339428.197,29333.5357,0,15.6
+66437,0,29397.62309,0,15.6
+66438,0,29365.64183,0,15.6
+66439,73183.09379,29456.3758,0,15.6
+66440,3138.639191,506636.87,0,15.6
+66441,14328.23052,42789.11493,0,15.6
+66442,26208.08,107359.5413,0,15.6
+66443,19780.47676,216300.1426,0,15.6
+66444,20716.99287,154985.5805,1134059.488,15.6
+66445,20910.0864,164981.6654,0,15.6
+66446,21004.4597,165590.8417,0,15.6
+66447,21137.91041,165576.6023,0,15.6
+66448,21270.58794,166737.7812,0,15.6
+66449,21385.32976,166236.8122,0,15.6
+66450,21498.80549,167451.4024,0,15.6
+66451,21626.13758,167442.7614,0,15.6
+66452,21759.58878,167989.1835,0,15.6
+66453,21871.01074,168299.4689,0,15.6
+66454,21981.0123,168603.656,0,15.6
+66455,22128.09073,139404.7484,0,15.6
+66456,22235.75265,139559.0704,0,15.6
+66457,431813.5187,228633.255,0,15.6
+66458,31660.26703,152117.1166,0,15.6
+66459,43643.13104,165900.6645,0,15.6
+66460,137856.5534,176120.0247,0,15.6
+66461,131583.9555,170978.3915,0,15.6
+66462,112077.8609,171963.5492,0,15.6
+66463,120190.1956,172761.4275,0,15.6
+66464,121617.8271,172577.2355,0,15.6
+66465,122573.6029,173299.5089,0,15.6
+66466,124164.0315,173318.398,0,15.6
+66467,124517.0801,174477.1917,0,15.6
+66468,126442.3379,173977.6856,0,15.6
+66469,103190.8798,174771.8201,0,15.6
+66470,104520.0228,30258.38254,0,15.6
+66471,105597.8316,30307.38878,0,15.6
+66472,188801.8762,30311.73881,0,15.6
+66473,125453.8322,30320.90082,0,15.6
+66474,118729.6377,548666.9429,0,15.6
+66475,482359.6841,31177.05616,0,15.6
+66476,135031.9289,139086.7265,0,15.6
+66477,136759.2065,223317.7339,0,15.6
+66478,138026.9152,170145.8592,0,15.6
+66479,139442.4396,178139.6011,0,15.6
+66480,142177.3536,179061.765,1094342.955,17.8
+66481,917451.4335,1345800.11,0,17.8
+66482,917502.2825,1028927.399,0,17.8
+66483,425737.3978,217032.8,0,17.8
+66484,477396.938,446892.6524,0,17.8
+66485,350555.6176,489087.8693,0,17.8
+66486,395178.4838,411096.1558,0,17.8
+66487,50925.7949,347920.8639,0,17.8
+66488,48628.00686,344282.5056,0,17.8
+66489,841996.2388,455008.0535,0,17.8
+66490,389266.0797,411683.2389,0,17.8
+66491,300897.1325,400797.4391,0,17.8
+66492,396557.5582,406900.9579,0,17.8
+66493,376392.5657,394848.441,0,17.8
+66494,371458.1814,397788.677,0,17.8
+66495,370305.728,393591.5602,0,17.8
+66496,370961.8296,390748.1719,0,17.8
+66497,369653.3473,388804.9376,0,17.8
+66498,370748.7889,386484.5789,0,17.8
+66499,369551.5817,383725.0331,0,17.8
+66500,369813.1911,382223.0471,0,17.8
+66501,369626.2184,379201.7449,0,17.8
+66502,322104.3433,377415.2814,0,17.8
+66503,322101.3708,375232.6946,0,17.8
+66504,412118.7077,61803.85779,0,17.8
+66505,384649.7599,61525.21098,0,17.8
+66506,373118.9311,61388.79205,0,17.8
+66507,366027.2061,1041380.156,0,17.8
+66508,371924.6254,250040.3409,0,17.8
+66509,370386.6503,247828.1804,0,17.8
+66510,370556.7642,438188.1139,0,17.8
+66511,369421.2402,718608.7474,0,17.8
+66512,370547.8143,356039.6494,0,17.8
+66513,709284.5695,355064.8449,0,17.8
+66514,370475.6532,352206.8764,1058080.951,17.8
+66515,370189.3743,350739.7078,0,17.8
+66516,370812.801,348106.7398,0,17.8
+66517,370275.949,346494.1542,0,17.8
+66518,370953.8621,344674.9122,0,17.8
+66519,47842.12564,284408.7556,0,17.8
+66520,47744.6265,282842.0524,0,17.8
+66521,841276.1582,394184.991,0,17.8
+66522,385762.8599,322097.0361,0,17.8
+66523,296060.6099,339280.0039,0,17.8
+66524,400258.592,331264.9489,0,17.8
+66525,377152.9013,331146.7923,0,17.8
+66526,371777.2959,329464.0255,0,17.8
+66527,373298.3239,325606.7107,0,17.8
+66528,372355.2555,325087.4846,0,17.8
+66529,373337.0865,322249.0317,0,17.8
+66530,373289.1326,320371.6936,0,17.8
+66531,373499.6356,318876.2352,0,17.8
+66532,373427.6345,316953.5685,0,17.8
+66533,373935.5493,314628.9129,0,17.8
+66534,326413.8871,313365.8974,0,17.8
+66535,326236.2845,310436.8044,0,17.8
+66536,416740.4053,309186.5504,0,17.8
+66537,390256.1029,53827.92156,0,17.8
+66538,379365.5443,53613.99284,0,17.8
+66539,371905.7281,53233.01466,0,17.8
+66540,378215.915,788839.1926,0,20
+66541,1631038.187,1432330.389,1658788.637,20
+66542,1103651.193,1203892.026,282240.1282,20
+66543,954366.1727,455928.0656,224846.8845,20
+66544,670208.5548,883792.8937,330233.5662,20
+66545,781543.3683,666256.5115,302804.6189,20
+66546,848784.6021,702642.8663,287319.9658,20
+66547,799759.4988,627246.0664,288287.8898,20
+66548,1136276.145,662515.4405,1322704.352,20
+66549,763322.7461,648749.2275,285270.7052,20
+66550,776404.0221,1014869.654,286934.5707,20
+66551,136587.1823,524312.62,287328.5517,20
+66552,949381.633,732115.5647,288935.9138,20
+66553,728719.0326,648369.1634,289466.5466,20
+66554,724948.5057,657022.0262,290350.6142,20
+66555,763009.3566,663180.7861,292314.5689,20
+66556,784350.0952,662177.5049,292566.5885,20
+66557,755965.0789,660576.8402,294055.0137,20
+66558,764186.0102,662423.1515,294641.8488,20
+66559,762206.2524,659629.643,296264.4283,20
+66560,762171.7776,662197.2476,297267.2638,20
+66561,759807.2078,661766.5657,298289.0254,20
+66562,759799.4829,660464.6525,299160.7193,20
+66563,751521.502,662023.9599,300738.4763,20
+66564,750947.2111,661682.6469,301292.7406,20
+66565,750627.976,661531.062,302831.7595,20
+66566,640461.1701,663263.7037,303721.9695,20
+66567,779446.5328,662494.872,305191.6173,20
+66568,747149.5053,663806.9327,304508.8593,20
+66569,740912.6822,663786.932,305333.5415,20
+66570,745671.5163,144473.005,306404.2399,20
+66571,719746.9424,114551.4198,0,20
+66572,717743.2325,1199890.61,0,20
+66573,717172.8457,531258.8476,0,20
+66574,778424.319,724375.2763,0,20
+66575,734176.1505,665529.3864,197896.765,20
+66576,735110.7099,617467.055,19531.5465,20
+66577,741700.919,660371.9707,35566.67782,20
+66578,737521.4192,644222.3164,47436.50031,20
+66579,737583.0817,643656.9952,1573046.438,20
+66580,737042.1403,653060.4854,63789.54389,20
+66581,735400.0636,691827.9211,242115.3704,20
+66582,129215.7451,552428.2486,1520899.77,20
+66583,468533.027,561685.6014,286582.5628,20
+66584,942640.6247,771836.4234,303780.7143,20
+66585,874031.1656,681421.1802,304671.0978,20
+66586,611406.194,664196.1289,306534.4949,20
+66587,768324.5785,685936.3355,306922.3842,20
+66588,694882.1684,682645.0699,308676.125,20
+66589,787381.1229,1050182.01,309394.447,20
+66590,735421.8137,682947.6368,310208.0898,20
+66591,747555.6739,684423.3376,312506.5246,20
+66592,723403.5218,686516.4692,312282.9232,20
+66593,737332.7655,685762.7132,314817.975,20
+66594,731162.8796,687970.1727,314747.1767,20
+66595,732746.159,687636.2609,316586.8194,20
+66596,729332.8167,689319.7728,317837.1568,20
+66597,628387.1457,691016.0597,318537.1651,20
+66598,758528.1057,691690.5848,319627.7381,20
+66599,732368.68,692518.5392,323324.9025,20
+66600,722984.522,694497.8674,323545.3504,21
+66601,2315927.766,2608619.282,3820226.723,21
+66602,1995394.046,2048327.844,1465673.259,21
+66603,628990.8646,693440.5413,76808.90858,21
+66604,743208.5505,817727.3558,359549.2878,21
+66605,818537.3699,867832.8537,534222.2345,21
+66606,1048113.545,1158502.31,553166.8229,21
+66607,818808.0577,916012.4943,495601.7438,21
+66608,878845.2616,950649.4546,495826.1596,21
+66609,870820.9474,962138.5607,509912.1359,21
+66610,869028.2269,953784.9869,510343.3949,21
+66611,864797.1337,953216.922,516332.1198,21
+66612,863810.3469,946743.5553,514723.5237,21
+66613,859236.7986,947655.7768,519447.8414,21
+66614,858530.4932,943812.9482,519750.3495,21
+66615,856085.734,941845.7367,524010.629,21
+66616,854192.7841,940535.699,524651.9826,21
+66617,853264.0625,936475.929,527386.8487,21
+66618,848863.311,936891.9436,528962.3992,21
+66619,849396.3912,933558.7893,531229.8533,21
+66620,845996.6005,931835.4619,534043.9322,21
+66621,845428.747,929284.5289,533591.3698,21
+66622,843743.601,929723.937,537936.8836,21
+66623,841133.3306,926759.4047,539667.2486,21
+66624,841403.4453,923757.5541,540797.9472,21
+66625,837497.0796,925141.9559,541730.6256,21
+66626,837373.3665,921339.0609,545317.5134,21
+66627,837335.9408,921311.7315,545833.2568,21
+66628,833531.145,918682.6083,548802.2668,21
+66629,833763.5369,917799.8034,550132.4155,21
+66630,833138.2671,917091.3965,551647.2864,21
+66631,830283.0808,915593.5212,553556.0047,21
+66632,829797.1813,913235.2089,555085.1989,21
+66633,829323.8793,913556.0257,556539.354,21
+66634,825805.5236,911606.7395,558255.1072,21
+66635,826580.5721,910726.2672,560156.3343,21
+66636,824991.0125,909581.9229,562683.1299,21
+66637,824672.9714,908386.7379,562614.6296,21
+66638,822518.7653,905546.6752,565618.37,21
+66639,822077.6539,908018.9888,566594.4672,21
+66640,820721.0972,904497.2264,566615.1602,21
+66641,820634.1064,905501.3094,570898.984,21
+66642,819514.4796,902931.7092,569453.0183,21
+66643,818451.8493,902908.0646,574563.8887,21
+66644,816935.0124,900888.6938,573153.5294,21
+66645,817556.7236,900887.631,573940.9531,21
+66646,815886.5397,899800.8644,578592.6877,21
+66647,814813.0357,898408.5959,577409.9343,21
+66648,815033.0683,899164.8433,580096.1092,21
+66649,813377.2262,896786.0772,579603.702,21
+66650,813382.3924,896585.4295,582756.5886,21
+66651,812315.1029,895465.1812,584141.3939,21
+66652,810666.0691,895394.7277,584439.3985,21
+66653,811994.0924,893417.3483,585967.7655,21
+66654,810523.6892,894403.6906,587679.6596,21
+66655,809645.8511,890852.0018,587926.9434,21
+66656,808254.0893,892545.7393,592161.8999,21
+66657,810127.7642,892457.214,589163.8098,21
+66658,806911.5732,889188.3174,592460.7079,21
+66659,807475.0546,890384.8186,592834.1548,21
+66660,807840.2792,888987.2792,595265.1951,21
+66661,1315249.16,2000674.923,679268.1522,21
+66662,1309678.169,1992678.19,525153.982,21
+66663,1309157.409,2415623.256,527367.0998,21
+66664,1308027.779,1989358.333,526319.4858,21
+66665,1306476.956,1985973.957,525229.1681,21
+66666,1305827.942,1983411.757,527451.7407,21
+66667,1305422.525,1983116.974,666992.7786,21
+66668,1303543.046,1978714.652,522966.6772,21
+66669,1304530.959,1977829.738,524285.6479,21
+66670,1302860.688,1976657.326,524114.0236,21
+66671,1300730.366,1973460.531,524959.5126,21
+66672,1302556.418,1971316.692,524267.2684,21
+66673,1299194.495,1970115.613,523644.5372,21
+66674,1301189.624,1967043.147,526603.1675,21
+66675,1298068.014,1966104.154,525148.1893,21
+66676,1298362.968,1964114.933,526471.4432,21
+66677,1298930.727,1962221.094,525038.6124,21
+66678,1294933.61,1960665.351,528047.7299,21
+66679,1290399.18,1958031.747,525497.4995,21
+66680,1289821.826,1956717.95,528511.1104,21
+66681,1289750.842,1954095.435,527946.9168,21
+66682,1288029.263,1953633.267,527281.8507,21
+66683,1288108.101,1951739.481,527482.9279,21
+66684,1285773.274,1948009.558,530220.8311,21
+66685,1286810.385,1948492.841,528655.769,21
+66686,1285582.965,1945048.866,529915.3023,21
+66687,1284275.547,1944943.888,528341.9798,21
+66688,1284711.896,1941677.731,528089.6613,21
+66689,1284812.147,1941487.415,529768.2046,21
+66690,1282184.148,1938990.099,529408.7457,21
+66691,1283213.849,1938315.43,528144.7464,21
+66692,1280777.099,1936166.146,530501.479,21
+66693,1280563.019,1934725.561,529726.6961,21
+66694,1279091.872,1933544.954,529440.3841,21
+66695,1279604.81,1930091.488,528915.736,21
+66696,1276166.192,1930384.814,531361.4719,21
+66697,1276549.089,1928501.407,528626.5829,21
+66698,1276165.279,1926131.96,530714.9602,21
+66699,1274288.213,1924065.888,529160.754,21
+66700,1273308.399,1923475.195,530354.0194,21
+66701,1273244.724,1921560.269,530412.1388,21
+66702,1270397.093,1919694.04,529555.6674,21
+66703,1271115.512,1918131.409,530549.4322,21
+66704,1268744.238,1916724.36,529350.7819,21
+66705,1270470.039,1914640.588,531527.4697,21
+66706,1265123.357,1912701.149,527679.7008,21
+66707,1268638.933,1912531.054,532534.3089,21
+66708,1264388.637,1908487.637,528985.5307,21
+66709,1265331.87,1909705.766,529433.1226,21
+66710,1264904.992,1906228.88,531718.1173,21
+66711,1262100.403,1904504.197,528541.49,21
+66712,1263429.637,1903353.557,529833.661,21
+66713,1261692.287,1901265.842,530379.428,21
+66714,1260919.506,1900283.451,530898.2657,21
+66715,1260149.496,1898510.583,529761.9774,21
+66716,1258990.835,1896848.213,529330.7697,21
+66717,1259641.262,1893697.347,530644.8984,21
+66718,1257645.533,1893017.887,528653.6727,21
+66719,1257265.76,1891636.202,531237.7074,21
+66720,1259752.694,1887079.666,529613.8563,21
+66721,1021175.78,1653276.824,242070.2347,21
+66722,1004200.245,1641900.573,235994.1538,21
+66723,999386.0024,1640190.522,233687.5076,21
+66724,994811.0026,1639349.544,232864.3621,21
+66725,990551.649,1637740.627,230596.5049,21
+66726,986375.1985,1635602.996,229861.0012,21
+66727,983943.6964,1636210.86,227921.4886,21
+66728,978847.2376,1633813.954,227981.7601,21
+66729,976344.783,1633420.331,225698.0152,21
+66730,972979.9269,1632589.429,224716.1355,21
+66731,970867.259,1631664.638,223820.0798,21
+66732,969104.4213,1629951.81,222696.4105,21
+66733,966983.5309,1630515.493,221228.7153,21
+66734,964611.362,1628641.185,220624.2956,21
+66735,963206.6242,1628336.161,219301.2142,21
+66736,961240.8507,1626913.985,218247.1269,21
+66737,958905.4175,1627614.674,217366.6093,21
+66738,957617.3452,1625515.829,216602.8924,21
+66739,955590.4406,1625426.99,214982.1763,21
+66740,953678.3192,1625011.689,215485.6103,21
+66741,951872.3823,1623864.064,215023.1143,21
+66742,950198.7369,1623988.792,213353.839,21
+66743,948382.1022,1622874.599,213271.4595,21
+66744,946731.6063,1622346.716,211372.7092,21
+66745,944920.053,1622015.948,211037.1981,21
+66746,943097.9861,1621577.982,209983.5641,21
+66747,941922.7807,1620837.109,209045.6123,21
+66748,939637.1715,1620602.421,208388.9489,21
+66749,938079.7312,1619900.152,207113.4567,21
+66750,936753.4902,1619960.474,206753.5701,21
+66751,934620.4946,1619278.151,205335.7939,21
+66752,932206.3927,1618490.343,204118.1996,21
+66753,929984.6536,1618590.818,203062.9622,21
+66754,926513.069,1618154.295,202105.766,21
+66755,923533.0158,1617492.578,201302.3513,21
+66756,920819.8085,1617673.752,199349.7744,21
+66757,919616.3699,1616549.713,199105.0458,21
+66758,916028.0828,1617387.759,197236.9814,21
+66759,915241.8295,1615926.312,196355.3558,21
+66760,911742.8021,1616482.213,195532.0127,21
+66761,907996.6796,1615895.897,193759.4206,21
+66762,905635.1666,1615193.646,193225.244,21
+66763,902663.3223,1616007.912,191833.1346,21
+66764,900800.8165,1614457.444,190655.1918,21
+66765,897709.5553,1615718.971,189182.4521,21
+66766,895424.6626,1613756.544,188708.408,21
+66767,893417.6882,1614871.272,186862.0413,21
+66768,890429.3435,1614305.052,185921.1585,21
+66769,888051.5509,1613506.348,184819.2413,21
+66770,885560.9752,1614312.95,183524.462,21
+66771,883294.2097,1613227.622,182112.2126,21
+66772,880413.2056,1613447.778,181223.0659,21
+66773,875992.5725,1613257.453,180239.5285,21
+66774,873818.562,1613021.85,178450.8226,21
+66775,870239.7721,1613531.556,177900.5452,21
+66776,868418.1125,1612106.985,176069.607,21
+66777,865735.4986,1613411.987,175173.2742,21
+66778,862909.8191,1612029.391,174035.4171,21
+66779,860765.4679,1608667.169,172509.7431,21
+66780,857774.0973,1607694.986,171470.1607,21
+66781,855674.4272,2031556.9,169907.0734,21
+66782,853898.1173,1605104.288,168622.1578,21
+66783,851017.9195,1581859.626,166993.0323,21
+66784,848703.2693,1577806.709,165813.2227,21
+66785,846392.9249,1573922.538,164768.9421,21
+66786,844090.9461,1569741.118,162136.2959,21
+66787,841246.7801,1567327.411,161933.1488,21
+66788,839266.1953,1564326.445,160424.8741,21
+66789,836567.0111,1559703.44,158536.7847,21
+66790,833933.3553,1557731.707,157288.9489,21
+66791,829214.7981,1553405.706,155736.2597,21
+66792,826259.4685,1550610.553,154401.3725,21
+66793,823720.4174,1547028.751,153415.67,21
+66794,820937.7732,1544315.365,151585.1847,21
+66795,817920.2166,1540369.552,150223.7546,21
+66796,815492.834,1537304.574,148495.1355,21
+66797,812445.7199,1533848.485,147568.5053,21
+66798,810237.446,1530251.097,145575.7979,21
+66799,807144.634,1527278.866,142182.1879,21
+66800,804703.4101,1524101.888,139847.1201,21
+66801,801982.1012,1520168.801,138721.2873,21
+66802,799255.5316,1517527.842,136814.5683,21
+66803,796934.3979,1513670.169,134998.4144,21
+66804,794074.3572,1510970.614,134149.033,21
+66805,791859.4579,1506770.336,131918.7141,21
+66806,788794.6634,1504397.496,130997.3972,21
+66807,786578.0304,1924226.01,129072.9436,21
+66808,784005.4269,1497253.4,127505.2438,21
+66809,781148.3995,1492903.002,126072.817,21
+66810,778835.2807,1488846.667,124429.1273,21
+66811,776341.6261,1486241.842,123305.2943,21
+66812,774980.2931,1483381.96,122143.2366,21
+66813,772749.2466,1480137.777,120832.6726,21
+66814,771336.4517,1477085.858,119858.9303,21
+66815,769453.8851,1474752.708,118401.8157,21
+66816,767161.0298,1471707.783,117646.937,21
+66817,766695.3401,1468611.024,116385.9841,21
+66818,763764.13,1466214.147,117754.4479,21
+66819,763156.1376,1463174.953,117250.3795,21
+66820,760664.047,1460576.55,115876.4066,21
+66821,759573.3342,1457686.67,115370.1416,21
+66822,757478.3681,1455370.069,113681.1234,21
+66823,756301.478,1452085.824,113138.4325,21
+66824,754121.396,1449776.143,111785.3302,21
+66825,752979.5287,1447049.371,110900.0916,21
+66826,751274.4928,1444181.439,109829.3597,21
+66827,749131.9126,1441823.6,109206.1966,21
+66828,748472.0094,1439215.987,107304.0445,21
+66829,746012.0621,1436457.853,107283.2057,21
+66830,744904.6789,1433895.582,105688.4226,21
+66831,743079.9657,1430904.008,104743.8476,21
+66832,741534.5162,1429273.313,103365.7809,21
+66833,740209.6897,1425880.924,103251.9322,21
+66834,738619.969,1423598.18,101336.6615,21
+66835,736746.5154,1421251.53,101046.0842,21
+66836,735534.6024,1418847.51,99497.91402,21
+66837,734248.8566,1415783.358,98634.60959,21
+66838,733866.1338,1413796.425,97848.95318,21
+66839,733511.8497,1410946.556,96668.49769,21
+66840,732036.5295,1409115.79,95456.27439,21
+66841,735705.2629,1411612.467,102944.3748,21
+66842,734329.1795,1408909.448,101751.7692,21
+66843,732812.053,1831677.393,99427.31454,21
+66844,731424.9828,1403458.517,98223.59024,21
+66845,730167.7968,1400892.027,96919.22025,21
+66846,728780.1794,1397512.204,95040.43839,21
+66847,727410.6605,1395519.442,93421.83134,21
+66848,726192.5392,1392188.687,91697.90853,21
+66849,724820.1201,1389254.771,90691.74583,21
+66850,723360.6008,1386886.867,88397.57909,21
+66851,722241.1417,1383631.978,87577.09574,21
+66852,720910.2099,1380781.301,85672.23034,21
+66853,719643.9047,1378336.003,84503.40366,21
+66854,718298.1459,1375312.843,83854.0772,21
+66855,717167.0698,1372719.926,81909.44359,21
+66856,715745.373,1369975.855,81457.23197,21
+66857,714638.6382,1366772.339,80011.57548,21
+66858,713720.5087,1789672.523,78683.18039,21
+66859,711914.1351,1360574.745,77716.29676,21
+66860,711114.8608,1359128.603,76317.91226,21
+66861,709898.7395,1354427.453,75670.82818,21
+66862,708809.6022,1352129.477,73855.11301,21
+66863,707290.3825,1349181.826,73118.01955,21
+66864,706429.0728,1346566.521,71944.45774,21
+66865,705466.9369,1343303.2,70664.76556,21
+66866,703896.7879,1341114.081,69600.58278,21
+66867,703470.145,1338390.402,68464.76642,21
+66868,702213.0328,1334896.034,67175.3965,21
+66869,701336.3009,1333047.899,66251.43884,21
+66870,700214.6036,1329463.683,64782.24412,21
+66871,699361.0406,1328182.639,63899.18407,21
+66872,698601.8298,1325364.771,62357.6004,21
+66873,697399.3349,1749886.684,61019.19273,21
+66874,696433.7919,1321714.266,59733.65429,21
+66875,696300.0519,1320794.119,58381.37563,21
+66876,694721.5461,1318533.153,56836.75231,21
+66877,693940.2575,1317104.251,56322.3039,21
+66878,693456.2609,1315777.637,54633.45308,21
+66879,692491.7006,1313889.694,54057.57379,21
+66880,691304.0333,1311975.426,53146.61119,21
+66881,690895.1959,1311497.743,52442.16908,21
+66882,689660.7,1309532.61,51216.92787,21
+66883,689112.4371,1307923.051,50540.73318,21
+66884,688530.6985,1306948.827,49555.78331,21
+66885,687996.3683,1305090.831,48597.20244,21
+66886,686495.8492,1304396.857,48112.78556,21
+66887,686436.0278,1302930.996,46626.35262,21
+66888,685467.8906,1727236.67,46150.3871,21
+66889,684704.1874,1300069.652,45296.34595,21
+66890,683670.4423,1299343.924,44048.95269,21
+66891,683173.7691,1297737.589,43639.41253,21
+66892,682447.7925,1296908.094,42417.99287,21
+66893,681281.0654,1295525.07,41826.36583,21
+66894,680939.6209,1294324.034,40889.80695,21
+66895,679917.3722,1293510.062,39941.90733,21
+66896,679301.6326,1292399.742,39206.1481,21
+66897,678277.4648,1291326.274,38402.11352,21
+66898,677791.9585,1290509.863,37753.43847,21
+66899,676498.3687,1288866.245,36417.82153,21
+66900,675037.9886,1288724.441,36254.70086,21
+66901,669493.0647,1280922.33,23754.00777,21
+66902,667970.3679,1277157.897,23463.4608,21
+66903,666206.1348,1274614.018,22490.85151,21
+66904,665112.0397,1271288.895,21864.44992,21
+66905,663726.6738,1268174.15,21280.89456,21
+66906,662365.4142,1265334.719,20683.83685,21
+66907,661081.538,1262180.999,19874.86262,21
+66908,659779.4922,1259143.064,19483.02348,21
+66909,658352.347,1256408.337,18853.32707,21
+66910,656847.7392,1252879.866,18066.4998,21
+66911,655605.1013,1250379.424,17789.69685,21
+66912,654257.7412,1247285.474,16721.28752,21
+66913,652551.1136,1669979.615,16395.14127,21
+66914,651490.5578,1240917.959,15968.50037,21
+66915,649891.399,1239229.904,14850.17787,21
+66916,648290.5076,1234748.905,14561.7122,21
+66917,646818.2708,1232890.747,13916.44254,21
+66918,645804.0423,1229435.395,13513.25597,21
+66919,644032.3388,1229172.978,12539.44701,21
+66920,642505.1945,1226248.876,12222.71865,21
+66921,640814.5566,1224046.712,11686.17591,21
+66922,639347.2072,1220995.827,10909.69906,21
+66923,638115.2837,1218322.9,10499.89354,21
+66924,636266.8109,1217295.608,9915.245399,21
+66925,634893.3942,1212716.815,9455.678934,21
+66926,633175.9895,1210219.442,8734.912447,21
+66927,631329.1095,1207183.777,8297.280731,21
+66928,630345.0474,1205383.941,7857.88398,21
+66929,628380.069,1202365.748,7118.04849,21
+66930,626621.0545,1199168.852,6818.296014,21
+66931,625161.1491,1196014.658,6243.814865,21
+66932,623270.7826,1192457.825,5809.038375,21
+66933,621770.3695,1188611.58,5433.244538,21
+66934,619980.227,1184894.132,5506.551917,21
+66935,618220.9694,1180827.545,5108.894296,21
+66936,616828.0854,1177411.036,4909.550779,21
+66937,614809.6366,1173106.288,4645.540505,21
+66938,613891.2334,1169505.821,4604.019183,21
+66939,611463.6141,1164893.478,4361.040201,21
+66940,610112.1607,1162169.498,3977.781159,21
+66941,608476.2562,1157544.914,4074.303158,21
+66942,607354.1614,1153774.616,3690.038391,21
+66943,605777.5972,1149789.26,3443.047653,21
+66944,604477.5919,1145660.973,3401.021072,21
+66945,602840.9533,1141430.38,3152.858981,21
+66946,600959.8347,1136916.525,3110.074967,21
+66947,599808.6736,1132802.273,2696.934827,21
+66948,598202.4728,1128775.134,2632.210133,21
+66949,596688.9321,1124539.251,2401.804672,21
+66950,594768.939,1120168.824,2169.69469,21
+66951,593460.3982,1115854.06,2105.127426,21
+66952,591885.0065,1111745.933,1892.712881,21
+66953,590364.0303,1107427.656,1611.304634,21
+66954,588945.8725,1102727.758,1611.907704,21
+66955,587307.9685,1098348.414,1324.792307,21
+66956,585746.8692,1094021.373,1281.069108,21
+66957,584674.789,1087337.176,1258.874854,21
+66958,582784.8591,1082521.526,1171.640945,21
+66959,582040.1857,1076951.368,1171.646853,21
+66960,580628.5463,1071561.714,1072.240068,21
+66961,599209.862,1097777.46,11854.92052,21
+66962,599036.1027,1094930.858,15761.45436,21
+66963,598952.1,1091504.42,13933.46087,21
+66964,598717.5767,1087680.813,14198.06695,21
+66965,598005.4359,1084491.101,14035.2211,21
+66966,601448.628,1080732.446,13767.28561,21
+66967,599152.5669,1077571.323,13746.99317,21
+66968,599246.8861,1073987.479,13562.75467,21
+66969,599273.1313,1070648.605,13500.01062,21
+66970,599236.51,1066848.165,13130.51742,21
+66971,598429.8806,1063446.904,13252.51453,21
+66972,598589.8615,1060043.113,13025.45091,21
+66973,598149.0748,1056127.886,12676.03122,21
+66974,598109.0447,1053241.908,12776.99942,21
+66975,597776.2106,1048673.65,12427.44525,21
+66976,597752.5649,1046304.397,12528.01254,21
+66977,596977.6275,1041595.853,12156.25139,21
+66978,597013.2827,1038490.739,11970.47237,21
+66979,596862.0741,1035153.355,12049.67623,21
+66980,596393.3362,1031899.819,11720.02223,21
+66981,596437.3323,1028710.263,11655.77097,21
+66982,595845.3471,1026340.636,11425.5734,21
+66983,595818.759,1023104.381,11282.32229,21
+66984,595601.0908,1020532.478,11163.14009,21
+66985,595040.4672,1017883.125,10986.74555,21
+66986,594901.5553,1014825.229,10965.49912,21
+66987,594634.895,1011779.5,10734.01411,21
+66988,594379.7837,1009371.825,10358.02479,21
+66989,594419.3406,1006431.653,10646.94142,21
+66990,593195.2987,1003247.358,10115.07378,21
+66991,593287.5515,1000923.06,10248.88576,21
+66992,592547.4166,997412.4367,9849.250573,21
+66993,592577.321,995508.0727,9994.539849,21
+66994,592151.401,992397.5425,9615.945329,21
+66995,591892.225,989094.299,9571.983765,21
+66996,592380.0115,986938.4768,9360.159797,21
+66997,591047.1643,983539.5014,9337.978997,21
+66998,591571.9731,981593.5169,9293.635571,21
+66999,591279.8357,978033.5202,8890.62092,21
+67000,591137.8889,975754.7952,8913.563215,21
+67001,591249.5127,972449.8949,8800.65198,21
+67002,591075.8051,970275.7097,8475.714924,21
+67003,590908.5255,967316.9527,8587.60071,21
+67004,590381.3168,964496.6938,8373.622133,21
+67005,590851.9688,961528.8644,8193.799472,21
+67006,590456.7767,958846.6345,7967.644643,21
+67007,590012.5599,956333.8223,8090.694088,21
+67008,590341.3483,953496.591,7729.584348,21
+67009,589719.7245,950897.6035,7683.337502,21
+67010,589687.8588,947905.4982,7648.500741,21
+67011,590035.6585,945530.6336,7274.126462,21
+67012,589110.2369,942414.7628,7396.927685,21
+67013,589675.8713,939646.0492,7033.720826,21
+67014,588946.6914,937196.8046,6985.408134,21
+67015,589193.7976,934661.1946,6912.93967,21
+67016,588679.1431,931420.2446,6584.028111,21
+67017,588852.8156,929241.1619,6377.34228,21
+67018,588350.0702,926138.5904,6524.255749,21
+67019,588386.5305,923444.7388,6182.225898,21
+67020,588355.5337,920898.2544,5961.5219,21
+67021,568971.4869,895605.7275,0,21
+67022,568913.586,893382.3718,0,21
+67023,569540.3844,891237.5098,0,21
+67024,569872.9582,889209.6358,0,21
+67025,570459.3908,887383.6481,0,21
+67026,570602.4064,885122.0927,0,21
+67027,570953.4498,882618.3214,0,21
+67028,571528.3722,880920.3169,0,21
+67029,571586.1284,878022.1833,0,21
+67030,571954.1953,876643.9829,0,21
+67031,572648.4873,873561.5295,0,21
+67032,572577.9346,871934.0842,0,21
+67033,573210.625,869285.5564,0,21
+67034,573400.9494,867421.6649,0,21
+67035,574430.7274,865260.9648,0,21
+67036,574105.7791,862495.341,0,21
+67037,574715.3419,860962.374,0,21
+67038,575061.0082,858064.2943,0,21
+67039,575409.384,856356.4688,0,21
+67040,575982.5305,853861.3408,0,21
+67041,576061.1544,851897.6782,0,21
+67042,576785.2449,849378.3012,0,21
+67043,577056.7797,847486.8291,0,21
+67044,577433.5506,844972.7354,0,21
+67045,578211.892,843079.2662,0,21
+67046,578504.3924,840786.6805,0,21
+67047,578279.1948,838950.7491,0,21
+67048,579632.4668,836361.0314,0,21
+67049,579383.2976,834048.7611,0,21
+67050,580044.0406,832438.3074,0,21
+67051,580596.2876,829217.9911,0,21
+67052,580706.9852,827360.2445,0,21
+67053,581306.8915,825546.3306,0,21
+67054,581584.8085,822705.5103,0,21
+67055,582435.3798,821193.741,0,21
+67056,582725.5435,819124.3032,0,21
+67057,582841.022,816338.6939,0,21
+67058,583392.0983,815037.1358,0,21
+67059,583733.9651,812599.677,0,21
+67060,584201.0379,810627.3562,0,21
+67061,584792.9597,808367.9309,0,21
+67062,585058.2335,806716.0091,0,21
+67063,585405.2275,803754.4445,0,21
+67064,586139.212,801719.2607,0,21
+67065,586374.3663,799292.9514,0,21
+67066,587098.1745,797167.7795,0,21
+67067,587168.5122,795516.2153,0,21
+67068,587725.6695,792967.3482,0,21
+67069,587967.1468,791161.309,0,21
+67070,588457.5944,788987.0479,0,21
+67071,589255.2999,786796.9132,0,21
+67072,589066.1845,784544.2589,0,21
+67073,590048.2214,782772.2431,0,21
+67074,590148.1288,780239.9604,0,21
+67075,591014.7272,778534.0728,0,21
+67076,591072.261,776154.3024,0,21
+67077,591608.1259,773843.4469,0,21
+67078,592105.2291,772252.631,0,21
+67079,592445.9338,769513.1672,0,21
+67080,594281.8232,767443.1349,0,21
+67081,599924.7291,770077.9258,0,21
+67082,600272.0633,767819.5079,0,21
+67083,600794.5461,764621.8997,0,21
+67084,601192.51,762823.156,0,21
+67085,601893.2683,760044.3805,0,21
+67086,602686.2677,757341.0886,0,21
+67087,602639.6314,754721.7401,0,21
+67088,603633.9807,752367.0491,0,21
+67089,603726.1557,749241.1893,0,21
+67090,604735.6547,747141.8294,0,21
+67091,604692.5821,743838.0594,0,21
+67092,605379.6558,742210.4132,0,21
+67093,605960.2759,738097.3542,0,21
+67094,606473.2672,736055.9178,0,21
+67095,606915.3546,733132.9328,0,21
+67096,607311.6636,730871.2157,0,21
+67097,608037.5692,727128.3994,0,21
+67098,608357.6519,725194.6882,0,21
+67099,608730.697,722349.9071,0,21
+67100,609119.3235,719367.8523,0,21
+67101,610218.6876,716695.1629,0,21
+67102,609784.7935,713702.9636,0,21
+67103,610998.7314,711076.4613,0,21
+67104,611136.8726,708177.0627,0,21
+67105,611528.0067,705502.7251,0,21
+67106,612330.3402,702151.059,0,21
+67107,612440.6082,699790.8856,0,21
+67108,613379.9774,696330.7182,0,21
+67109,613217.9339,693907.5321,0,21
+67110,614123.6923,691408.7114,0,21
+67111,612227.2715,688271.1876,0,21
+67112,612634.3875,685582.0021,0,21
+67113,613286.3681,682473.603,0,21
+67114,614164.6424,679504.3952,0,21
+67115,614045.8221,676705.6561,0,21
+67116,614972.3157,674003.0325,0,21
+67117,615369.1285,670391.6675,0,21
+67118,616115.2426,668113.8808,0,21
+67119,616236.6032,664679.7351,0,21
+67120,617151.926,661987.1513,0,21
+67121,617368.8931,658886.2223,0,21
+67122,618349.7668,655909.0609,0,21
+67123,618549.663,652967.7867,0,21
+67124,619164.8975,650154.1768,0,21
+67125,619556.0861,646981.3482,0,21
+67126,620644.9712,643955.1068,0,21
+67127,620579.3097,641448.7629,0,21
+67128,621402.6822,638060.651,0,21
+67129,622046.1525,635121.2436,0,21
+67130,622352.1424,632384.8703,0,21
+67131,623290.1226,629464.1401,0,21
+67132,623161.4691,626163.1337,0,21
+67133,624233.648,623252.1403,0,21
+67134,624836.216,620563.7401,0,21
+67135,625115.9402,617158.7178,0,21
+67136,625828.8109,614446.8108,0,21
+67137,626260.917,611264.5311,0,21
+67138,627037.7044,607966.2964,0,21
+67139,627621.3197,605497.5778,0,21
+67140,627821.6028,601397.6424,0,21
+67141,623610.1552,597054.9896,0,21
+67142,624575.3449,596468.0719,0,21
+67143,624747.9818,595934.682,0,21
+67144,625300.1864,595258.1317,0,21
+67145,625611.1462,594682.2447,0,21
+67146,626685.9539,594492.6215,0,21
+67147,626798.0279,593608.8778,0,21
+67148,627388.0846,592884.2823,0,21
+67149,628155.4976,592252.5221,0,21
+67150,628564.9528,591911.8543,0,21
+67151,629192.3516,590928.8006,0,21
+67152,629579.7835,590888.8807,0,21
+67153,630203.796,590085.5134,0,21
+67154,630818.8351,589667.5953,0,21
+67155,631280.8882,589061.0164,0,21
+67156,631873.54,588611.5199,0,21
+67157,632464.4774,588023.8396,0,21
+67158,632860.3297,587377.9598,0,21
+67159,633831.2268,587481.1776,0,21
+67160,633785.4014,586322.4693,0,21
+67161,634636.112,586195.6011,0,21
+67162,635289.3981,585475.0518,0,21
+67163,635954.6449,585451.0668,0,21
+67164,636069.4948,585471.8739,0,21
+67165,637011.0393,584156.7478,0,21
+67166,637607.0837,584170.1166,0,21
+67167,637768.2844,583390.0909,0,21
+67168,638662.7449,583107.5258,0,21
+67169,639111.2398,582873.091,0,21
+67170,639801.2203,582197.8889,0,21
+67171,640217.0523,582019.4871,0,21
+67172,640895.1042,582083.351,0,21
+67173,641527.5779,581421.5771,0,21
+67174,642017.0299,580264.667,0,21
+67175,642970.8802,580649.1584,0,21
+67176,643133.0447,579763.4238,0,21
+67177,644302.1162,579995.7309,0,21
+67178,644388.1667,579647.2012,0,21
+67179,645148.1695,579102.277,0,21
+67180,646136.149,579692.82,0,21
+67181,646050.4515,578739.077,0,21
+67182,647707.082,579604.0909,0,21
+67183,647331.9015,579078.8966,0,21
+67184,648704.7058,578398.4417,0,21
+67185,648776.3365,578540.0739,0,21
+67186,649991.3389,578406.5706,0,21
+67187,650114.0911,578145.001,0,21
+67188,651090.3444,578354.5779,0,21
+67189,651426.6196,578084.8881,0,21
+67190,652536.7787,578129.0847,0,21
+67191,652699.7042,578019.1028,0,21
+67192,653723.2662,578297.909,0,21
+67193,654156.1108,577962.7097,0,21
+67194,655044.0665,578058.3088,0,21
+67195,655215.2035,578289.3139,0,21
+67196,656339.61,577883.1797,0,21
+67197,656986.1743,580182.9673,0,21
+67198,657375.4181,580088.6254,0,21
+67199,658106.0896,579739.0008,0,21
+67200,658744.5789,580555.3802,0,21
+67201,660213.8703,581494.126,0,21
+67202,660354.6061,582302.6492,0,21
+67203,662131.1,584418.6539,0,21
+67204,662533.9608,584246.201,0,21
+67205,664046.6642,584637.8992,0,21
+67206,665135.7152,586223.2171,0,21
+67207,665342.576,587286.4351,0,21
+67208,667254.3656,588304.0135,0,21
+67209,667340.337,589296.6386,0,21
+67210,669397.2714,590574.3587,0,21
+67211,669327.8989,591838.231,0,21
+67212,671361.3156,592596.6779,0,21
+67213,671361.888,593974.5935,0,21
+67214,673039.2018,595006.7366,0,21
+67215,674110.5409,596313.5118,0,21
+67216,675135.4678,597448.0196,0,21
+67217,675558.7215,598731.2712,0,21
+67218,677341.6479,599670.1359,0,21
+67219,677565.9564,601171.1787,0,21
+67220,679060.3532,602200.8688,0,21
+67221,679979.3695,603364.5054,0,21
+67222,680940.3851,605668.9156,0,21
+67223,681818.9709,605833.082,0,21
+67224,682995.5984,607273.458,0,21
+67225,684129.7813,608429.224,0,21
+67226,684933.321,609792.8386,0,21
+67227,686174.6542,618304.1629,0,21
+67228,686982.8712,620985.3282,0,21
+67229,687962.4184,622048.0325,0,21
+67230,689025.8188,625326.265,0,21
+67231,690021.3416,627060.2044,0,21
+67232,691100.4541,629091.31,0,21
+67233,691279.6955,630762.0706,0,21
+67234,693143.9637,631786.9007,0,21
+67235,693014.3241,633196.6777,0,21
+67236,694843.577,635264.4189,0,21
+67237,694994.3613,636865.2479,0,21
+67238,696701.266,638079.1118,0,21
+67239,696877.9422,639633.3767,0,21
+67240,697959.3828,641511.635,0,21
+67241,698592.8081,642879.691,0,21
+67242,699773.9746,645549.4069,0,21
+67243,700706.3733,646154.6708,0,21
+67244,701220.3666,647742.9433,0,21
+67245,702262.0751,649283.2947,0,21
+67246,702936.5219,650244.6428,0,21
+67247,704228.3831,652559.4522,0,21
+67248,704437.4554,652918.4316,0,21
+67249,705846.2963,655091.5621,0,21
+67250,706912.6492,656092.6418,0,21
+67251,706938.2828,657525.7923,0,21
+67252,708329.4208,658610.9608,0,21
+67253,709115.4252,660493.9627,0,21
+67254,709718.0415,660950.3124,0,21
+67255,710470.7518,662753.8816,0,21
+67256,711647.8798,663679.4777,0,21
+67257,712299.2434,665255.3989,0,21
+67258,712915.9346,665495.3872,0,21
+67259,714098.3687,667836.9577,0,21
+67260,714805.5042,666832.6174,0,21
+67261,771272.7544,735825.7238,0,21
+67262,774248.2681,752146.8858,0,21
+67263,774834.0288,752732.698,0,21
+67264,776121.2425,758813.6387,0,21
+67265,776517.7369,763349.7088,0,21
+67266,777591.4532,769144.3165,0,21
+67267,778364.5231,773013.1716,0,21
+67268,779431.2769,778904.9658,0,21
+67269,779732.6974,785997.0237,0,21
+67270,781155.316,790631.0682,0,21
+67271,781949.9095,795904.6514,0,21
+67272,788056.8902,801131.9591,0,21
+67273,787738.9344,805353.8853,0,21
+67274,787923.2841,811064.3437,0,21
+67275,789593.9065,815450.2105,0,21
+67276,790283.4382,819883.8522,0,21
+67277,791161.876,824949.3607,0,21
+67278,792291.9747,829779.3867,0,21
+67279,792921.0312,834095.6691,1519.239105,21
+67280,794004.5133,838364.0738,3321.413546,21
+67281,794781.5346,843940.2997,2607.99847,21
+67282,795538.6396,848115.2145,3143.912242,21
+67283,796604.506,851834.7256,3675.319397,21
+67284,797096.3819,856915.6354,3851.593779,21
+67285,798002.5983,861351.1385,4377.813095,21
+67286,798929.6668,865903.7585,4552.495651,21
+67287,798812.1342,870360.1935,5074.196037,21
+67288,799959.7658,873983.3806,5074.303115,21
+67289,800415.8809,879688.3923,5765.148288,21
+67290,801068.6743,882838.2898,5765.282848,21
+67291,801982.0284,887808.0125,6280.195378,21
+67292,802196.5124,891989.2636,6451.356641,21
+67293,803512.1039,895984.6719,6792.686082,21
+67294,803146.0897,900810.016,6963.037404,21
+67295,804322.9811,904684.887,7133.131065,21
+67296,804199.2735,908976.4893,7641.483785,21
+67297,804712.565,912884.2424,7641.704394,21
+67298,805928.1929,917661.621,7979.44711,21
+67299,805909.7628,921629.6614,8316.238824,21
+67300,808202.4241,925630.3768,8316.493904,21
+67301,809342.1892,930289.871,8819.840578,21
+67302,811367.099,934578.7457,8820.122456,21
+67303,812538.1699,937694.5404,9154.678318,21
+67304,813228.3712,942938.9118,9321.787585,21
+67305,813316.2555,946414.4654,9488.693198,21
+67306,814411.0759,950856.2584,9821.57121,21
+67307,814569.7014,955055.5686,9987.877155,21
+67308,815532.677,959209.0542,10153.99052,21
+67309,815637.5076,962713.9445,10485.27726,21
+67310,816398.4378,967477.4975,10485.65312,21
+67311,816851.4767,971091.3056,10980.95876,21
+67312,817471.8198,975296.3408,10981.36401,21
+67313,817963.5922,979872.2022,11146.36644,21
+67314,818405.1396,983140.0904,11475.41295,21
+67315,818534.435,987700.8616,11914.97709,21
+67316,819220.7396,992230.8136,11858.08493,21
+67317,820237.3208,994925.5167,12326.15646,21
+67318,819740.966,1000348.183,12350.08832,21
+67319,820733.2638,1003280.206,12723.62052,21
+67320,821036.3658,1007646.248,13073.05803,21
+67321,842903.4099,1032843.007,19407.7718,21
+67322,844597.2236,1037406.729,20101.45202,21
+67323,845463.901,1041279.401,20792.77155,21
+67324,846020.0564,1044307.262,20793.87127,21
+67325,846693.5143,1047722.337,21875.01481,21
+67326,847429.6668,1051776.492,29174.99056,21
+67327,847565.8636,1054764.659,25236.8271,21
+67328,848621.5993,1058826.482,27270.71313,21
+67329,849026.5612,1062655.118,27958.73501,21
+67330,849393.4327,1064858.288,29015.1949,21
+67331,850251.3096,1068380.976,28949.24477,21
+67332,863144.0992,1072456.998,30008.29404,21
+67333,872617.8823,1075268.249,30698.26764,21
+67334,866107.556,1078591.253,31284.3939,21
+67335,871174.175,1081900.505,31831.15013,21
+67336,872274.5782,1085755.746,32526.32674,21
+67337,872805.2575,1088442.393,33309.31122,21
+67338,875907.1129,1092333.97,34365.89178,21
+67339,877103.9673,1095505.515,35416.32263,21
+67340,877007.7628,1098223.532,35790.86003,21
+67341,879546.8127,1101997.539,36532.38012,21
+67342,880705.1992,1105668.344,37025.92814,21
+67343,881264.595,1108423.26,37439.70678,21
+67344,882851.534,1111585.575,38136.5821,21
+67345,884126.8133,1115332.636,38670.29922,21
+67346,884990.696,1117967.131,39060.76085,21
+67347,887004.5566,1121574.452,39776.09764,21
+67348,887351.6502,1124528.033,40083.63653,21
+67349,888200.4938,1127489.022,40857.99539,21
+67350,889909.0921,1131350.97,41206.45437,21
+67351,890050.1033,1134195.602,41715.7984,21
+67352,892181.5712,1136876.69,42264.43315,21
+67353,891879.3863,1140911.954,42632.49149,21
+67354,894650.9379,1143611.258,43019.2943,21
+67355,893690.7539,1146588.748,43727.94002,21
+67356,896107.7793,1150008.566,44194.12453,21
+67357,896442.8485,1153500.808,44460.34033,21
+67358,897767.9295,1156783.202,45125.95442,21
+67359,897189.6851,1158772.938,45351.14845,21
+67360,899537.4887,1162648.487,46157.18526,21
+67361,899916.724,1165702.694,46398.85295,21
+67362,901175.1406,1168213.097,46606.03374,21
+67363,901753.9166,1172033.719,47586.3056,21
+67364,902528.9579,1174629.74,47334.50942,21
+67365,902787.3431,1178164.379,48313.12599,21
+67366,904612.6906,1180816.656,48536.50153,21
+67367,904386.9582,1184348.377,49200.71894,21
+67368,906346.9097,1187099.98,49249.8465,21
+67369,906390.3071,1200599.129,49784.37456,21
+67370,907114.7669,1199755.102,50305.93692,21
+67371,907869.482,1203311.932,50665.80047,21
+67372,908766.2108,1208616.084,51146.62361,21
+67373,909251.843,1210837.293,51388.65912,21
+67374,910086.4852,1216160.808,51590.57211,21
+67375,910644.8925,1219669.059,52545.62592,21
+67376,911920.084,1222461.57,52312.26137,21
+67377,911674.1428,1226499.864,53442.39015,21
+67378,913439.5058,1231423.329,53013.48108,21
+67379,912917.9809,1232772.6,54297.72885,21
+67380,914548.9428,1238273.86,53753.37261,21
+67381,914350.789,1240556.212,57734.92581,21
+67382,915544.3991,1243819.803,56511.10431,21
+67383,914417.2255,1245028.793,57460.89192,21
+67384,917155.0277,1245849.558,58040.61127,21
+67385,913986.6923,1247436.752,58425.05816,21
+67386,917724.1168,1248125.89,59614.45364,21
+67387,914567.4455,1250953.058,59383.76218,21
+67388,916900.4426,1250374.856,60591.20356,21
+67389,916112.7664,1252699.16,60778.67279,21
+67390,917446.7084,1253248.98,61249.56444,21
+67391,914980.8684,1255033.607,62054.50989,21
+67392,918200.8358,1256027.024,62187.58973,21
+67393,916041.1281,1257127.877,63252.29502,21
+67394,916613.3039,1257351.961,63457.91712,21
+67395,918001.1579,1260097.63,64308.76812,21
+67396,916134.4256,1259516.984,64666.42386,21
+67397,918371.865,1261714.806,65449.3425,21
+67398,915915.4088,1261978.811,65545.91026,21
+67399,917717.8693,1263053.924,66482.90595,21
+67400,918215.4953,1265076.172,66708.8688,21
+67401,915981.6106,1263935.933,67655.2229,21
+67402,918828.6681,1265160.348,67387.64842,21
+67403,917230.0573,1267825.753,68794.8714,21
+67404,917377.9818,1266325.093,68691.97123,21
+67405,917871.5569,1268829.906,69356.23003,21
+67406,917694.5838,1267861.789,69866.97739,21
+67407,917133.2263,1270837.525,70485.86069,21
+67408,917922.683,1270706.54,70681.90291,21
+67409,917446.9403,1271222.558,71223.40235,21
+67410,917315.2906,1273465.559,71654.35724,21
+67411,917506.046,1271810.757,72644.27647,21
+67412,917779.7098,1275155.994,72547.34957,21
+67413,917733.7666,1274594.616,72992.17139,21
+67414,917135.5242,1275677.75,73672.059,21
+67415,917828.7038,1277642.775,74017.63702,21
+67416,916906.9311,1276160.499,74375.02347,21
+67417,918254.749,1278819.61,75251.63756,21
+67418,916513.1035,1279294.837,75210.62397,21
+67419,917686.6876,1279073.12,75854.95807,21
+67420,917761.7212,1279923.494,76132.35071,21
+67421,916875.6011,1281780.483,77018.95363,21
+67422,917311.3318,1281306.181,76938.15808,21
+67423,916681.2532,1282944.921,77544.31927,21
+67424,917763.2184,1282762.127,78096.71074,21
+67425,916191.3979,1284461.978,79036.46813,21
+67426,917350.3693,1284510.079,78578.0361,21
+67427,917283.1802,1284901.271,79852.35115,21
+67428,916698.5968,1286296.109,79692.76957,21
+67429,915724.8118,1286410.551,80577.89486,21
+67430,916803.2839,1287645.892,80950.24469,21
+67431,916456.9886,1288231.277,81086.12473,21
+67432,915866.2233,1288067.072,81559.5971,21
+67433,916050.954,1289952.281,82651.22882,21
+67434,916989.7935,1289243.475,82140.1702,21
+67435,915141.3353,1291478.872,83148.37972,21
+67436,916612.3585,1291090.214,83121.49569,21
+67437,914977.0015,1291967.631,83861.80458,21
+67438,916567.1803,1292301.392,84487.82433,21
+67439,914696.7483,1293358.904,84418.22585,21
+67440,915338.4281,1293038.843,84652.72197,21
+67441,924578.1945,1303056.556,89379.64515,21
+67442,924304.0818,1303842.234,90040.62209,21
+67443,926076.5247,1304721.159,90759.8777,21
+67444,926353.1542,1305403.672,91466.0989,21
+67445,926419.8773,1306407.594,92249.93375,21
+67446,926982.8772,1306865.355,92642.96339,21
+67447,928495.6467,1306830.419,93466.88508,21
+67448,926682.7759,1308360.795,94100.96891,21
+67449,928356.4402,1308967.558,94502.15179,21
+67450,929019.0629,1308027.9,95703.43265,21
+67451,929010.3584,1310362.514,95595.2323,21
+67452,928837.1142,1310038.418,96501.11803,21
+67453,929960.5402,1309900.703,97206.55285,21
+67454,929825.6764,1311163.898,97676.46445,21
+67455,929492.4485,1311185.664,98582.78035,21
+67456,930990.3994,1311553.133,98948.5273,21
+67457,929957.6423,1312225.397,99659.18248,21
+67458,931891.2707,1311898.982,100043.5719,21
+67459,929823.5217,1312600.172,102411.8332,21
+67460,932878.809,1313912.459,103513.8765,21
+67461,930926.2043,1312457.527,104326.8203,21
+67462,932040.5415,1315095.951,105083.3237,21
+67463,932909.5364,1312885.42,106149.468,21
+67464,931828.5234,1315838.582,106644.0394,21
+67465,932808.4079,1314276.929,107944.7245,21
+67466,932698.5125,1315330.031,108524.0857,21
+67467,933219.8861,1314996.518,109356.2683,21
+67468,932970.7168,1316174.357,110499.8993,21
+67469,933902.0834,1315943.771,111042.3675,21
+67470,933041.0111,1317201.107,112080.3743,21
+67471,933259.158,1315556.231,112944.9723,21
+67472,934706.1343,1317310.308,113690.7954,21
+67473,933996.3882,1317059.6,114417.3106,21
+67474,934754.9915,1317610.088,115515.6959,21
+67475,933285.3572,1317682.016,116137.9821,21
+67476,935581.712,1317922.039,117134.6153,21
+67477,933829.1548,1317751.196,117735.6296,21
+67478,936323.9138,1319272.976,118678.556,21
+67479,933866.3872,1317658.216,119334.4672,21
+67480,935773.8033,1319881.4,120540.3564,21
+67481,935869.9957,1318917.674,121029.0822,21
+67482,934637.4458,1319189.866,121845.1018,21
+67483,936155.5774,1319992.436,122741.2728,21
+67484,935506.1649,1319663.712,123681.2203,21
+67485,935784.0093,1319984.357,123928.2403,21
+67486,935851.9784,1319801.181,125751.5492,21
+67487,937127.8199,1320734.899,125933.3271,21
+67488,935453.4627,1320911.137,126235.5992,21
+67489,936481.2167,1320596.737,127772.8538,21
+67490,936394.9546,1320274.132,128399.5724,21
+67491,936089.349,1322435.974,129220.1363,21
+67492,937075.1504,1320994.184,129960.1297,21
+67493,936664.71,1321002.409,130280.3268,21
+67494,937055.9323,1322226.38,131500.3589,21
+67495,937071.9985,1321391.267,132808.0036,21
+67496,936549.2664,1323094.119,132790.367,21
+67497,937247.6054,1321637.709,134060.8894,21
+67498,937862.5887,1323134.526,134291.9722,21
+67499,937050.6078,1321532.113,135639.8079,21
+67500,937269.4751,1324201.412,136273.6683,21
+67501,938029.0803,1326712.223,136204.0146,21
+67502,938693.2474,1332189.923,137728.4498,21
+67503,939614.2552,1336406.802,137782.8123,21
+67504,939247.5704,1340084.634,138290.5709,21
+67505,940781.4648,1343480.909,138931.115,21
+67506,940109.9747,1349355.097,139557.8949,21
+67507,940438.5817,1351443.872,139995.0898,21
+67508,940919.7843,1357216.762,140553.8952,21
+67509,941065.177,1360849.484,141015.0537,21
+67510,941392.8311,1364529.154,141513.9625,21
+67511,942464.1825,1369125.527,142054.3077,21
+67512,941298.1795,1372713.989,142634.2842,21
+67513,943447.2209,1376095.187,143319.8679,21
+67514,941575.7752,1382127.539,143582.6598,21
+67515,943563.69,1384745.142,144265.9997,21
+67516,943659.288,1389193.454,144520.3215,21
+67517,942821.2651,1393615.965,145724.4123,21
+67518,943678.5848,1398427.186,144971.0218,21
+67519,944838.6913,1400307.489,146884.0338,21
+67520,943869.4004,1406021.71,146479.1649,21
+67521,944519.8861,1410844.735,146953.0082,21
+67522,945432.1594,1413164.782,148014.123,21
+67523,944918.6773,1418197.389,147617.2952,21
+67524,946080.162,1422204.279,149160.6699,21
+67525,945454.3604,1426034.988,148901.7978,21
+67526,945814.1512,1430341.424,149777.4109,21
+67527,946712.1738,1434625.827,150138.2453,21
+67528,945983.3633,1438431.657,150469.8525,21
+67529,947553.0472,1443389.943,150986.6069,21
+67530,946467.4171,1445756.238,152231.8263,21
+67531,948165.8289,1451749.707,152326.7257,21
+67532,946931.0179,1455091.27,153140.461,21
+67533,948415.3691,1458317.802,152882.3737,21
+67534,947432.4984,1464328.82,162875.6346,21
+67535,948956.0096,1466157.191,158799.565,21
+67536,948814.8809,1471842.993,163169.4138,21
+67537,948602.4783,1476291.853,161647.0218,21
+67538,949982.7651,1479204.731,164650.3362,21
+67539,948603.144,1484157.023,165738.9866,21
+67540,950340.2362,1487133.426,167433.3588,21
+67541,949754.7441,1492688.419,166449.0605,21
+67542,949956.1402,1495916.889,170356.0632,21
+67543,951291.449,1500512.093,168991.7648,21
+67544,949713.6467,1503823.173,172126.0738,21
+67545,951658.2867,1508236.618,171663.8886,21
+67546,950846.306,1513393.46,174260.5175,21
+67547,951392.972,1515589.694,174316.3548,21
+67548,952349.8434,1521297.904,176321.0537,21
+67549,951487.2684,1525461.438,177742.958,21
+67550,952091.0072,1528287.439,176798.3261,21
+67551,952442.2705,1532738.743,180356.8049,21
+67552,952619.9167,1538022.31,179043.6661,21
+67553,953209.0853,1540885.378,182050.1626,21
+67554,952746.1428,1545671.872,182024.2739,21
+67555,953466.749,1548745.142,184014.2981,21
+67556,953534.6811,1554441.503,184664.6587,21
+67557,953817.206,1557677.777,185233.4488,21
+67558,953221.8825,1561566.508,187620.7772,21
+67559,955174.9839,1566538.251,187612.4621,21
+67560,953343.3086,1569351.856,188798.9421,15.6
+67561,0,0,0,15.6
+67562,0,0,0,15.6
+67563,0,0,0,15.6
+67564,0,121.3923662,0,15.6
+67565,0,0,0,15.6
+67566,0,0,1815387.959,15.6
+67567,0,0,0,15.6
+67568,0,116.1700164,0,15.6
+67569,0,0,0,15.6
+67570,0,0,0,15.6
+67571,0,0,0,15.6
+67572,0,80.2188975,0,15.6
+67573,0,0,0,15.6
+67574,339446.9244,0,0,15.6
+67575,0,0,0,15.6
+67576,0,71.16498103,0,15.6
+67577,0,0,0,15.6
+67578,0,0,0,15.6
+67579,0,0,0,15.6
+67580,0,0,0,15.6
+67581,0,63.08619187,0,15.6
+67582,0,0,0,15.6
+67583,0,0,0,15.6
+67584,0,0,0,15.6
+67585,0,0,0,15.6
+67586,0,0,0,15.6
+67587,0,0,0,15.6
+67588,0,0,0,15.6
+67589,0,0,0,15.6
+67590,0,0,0,15.6
+67591,0,0,0,15.6
+67592,0,136.382374,0,15.6
+67593,0,0,0,15.6
+67594,0,0,0,15.6
+67595,0,0,0,15.6
+67596,0,2.554677017,0,15.6
+67597,0,0,0,15.6
+67598,0,71.39170243,0,15.6
+67599,0,0,0,15.6
+67600,0,0,0,15.6
+67601,0,0,1717289.258,15.6
+67602,0,8.015063625,0,15.6
+67603,0,0,0,15.6
+67604,0,105.8802244,0,15.6
+67605,0,0,0,15.6
+67606,0,0,0,15.6
+67607,0,0,0,15.6
+67608,0,3.750748245,0,15.6
+67609,0,0,0,15.6
+67610,0,87.22021798,0,15.6
+67611,339446.2124,0,0,15.6
+67612,0,0,0,15.6
+67613,0,0,0,15.6
+67614,0,0,0,15.6
+67615,0,84.68181274,0,15.6
+67616,0,0,0,15.6
+67617,0,0,0,15.6
+67618,0,0,0,15.6
+67619,0,0,0,15.6
+67620,0,0,0,15.6
+67621,0,0,0,15.6
+67622,0,0,0,15.6
+67623,0,0,0,15.6
+67624,0,0,0,15.6
+67625,0,0,0,15.6
+67626,0,0,0,15.6
+67627,0,0,0,15.6
+67628,0,0,0,15.6
+67629,0,0,0,15.6
+67630,0,0,0,15.6
+67631,0,0,0,15.6
+67632,0,0,0,15.6
+67633,0,0,0,15.6
+67634,0,0,0,15.6
+67635,0,0,0,15.6
+67636,0,0,1627276.201,15.6
+67637,0,0,0,15.6
+67638,0,0,0,15.6
+67639,0,0,0,15.6
+67640,0,0,0,15.6
+67641,0,0,0,15.6
+67642,0,0,0,15.6
+67643,0,0,0,15.6
+67644,0,0,0,15.6
+67645,0,0,0,15.6
+67646,0,0,0,15.6
+67647,0,0,0,15.6
+67648,0,0,0,15.6
+67649,339450.2184,87.19687128,0,15.6
+67650,0,0,0,15.6
+67651,0,0,0,15.6
+67652,0,0,0,15.6
+67653,0,0,0,15.6
+67654,0,0,0,15.6
+67655,0,2.936811339,0,15.6
+67656,0,0,0,15.6
+67657,0,98.62642511,0,15.6
+67658,0,0,0,15.6
+67659,0,0,0,15.6
+67660,0,0,0,15.6
+67661,0,0,0,15.6
+67662,0,252.8665017,0,15.6
+67663,0,0,0,15.6
+67664,0,0,0,15.6
+67665,0,0,0,15.6
+67666,0,0,0,15.6
+67667,0,0,0,15.6
+67668,0,0,0,15.6
+67669,0,0,0,15.6
+67670,0,0,0,15.6
+67671,0,0,1544626.593,15.6
+67672,0,0,0,15.6
+67673,0,0,0,15.6
+67674,0,0,0,15.6
+67675,0,0,0,15.6
+67676,0,0,0,15.6
+67677,0,0,0,15.6
+67678,0,0,0,15.6
+67679,0,0,0,15.6
+67680,0,0,0,15.6
+67681,0,0,0,15.6
+67682,0,0,0,15.6
+67683,0,0,0,15.6
+67684,0,82.88051381,0,15.6
+67685,0,0,0,15.6
+67686,0,0,0,15.6
+67687,339454.7405,0,0,15.6
+67688,0,0,0,15.6
+67689,0,0,0,15.6
+67690,0,0,0,15.6
+67691,0,0,0,15.6
+67692,0,30571.8363,0,15.6
+67693,0,140.4336158,0,15.6
+67694,0,4200.173719,0,15.6
+67695,0,10049.57048,0,15.6
+67696,0,10964.60969,0,15.6
+67697,0,8696.448952,0,15.6
+67698,0,9592.798446,0,15.6
+67699,0,9771.681284,0,15.6
+67700,0,9740.192188,0,15.6
+67701,0,9813.439286,0,15.6
+67702,0,9883.668115,0,15.6
+67703,0,9939.39024,0,15.6
+67704,0,10130.38679,0,15.6
+67705,0,10080.58035,0,15.6
+67706,0,10178.32365,1469234.709,15.6
+67707,0,10217.84723,0,15.6
+67708,0,10280.81577,0,15.6
+67709,0,10375.10966,0,15.6
+67710,0,10404.57034,0,15.6
+67711,0,10586.53312,0,15.6
+67712,0,10533.05974,0,15.6
+67713,0,10640.53798,0,15.6
+67714,0,10656.30791,0,15.6
+67715,0,10755.64843,0,15.6
+67716,43183.07623,10791.2634,0,15.6
+67717,815.5989231,10856.48487,0,15.6
+67718,2287.940808,11189.87928,0,15.6
+67719,11359.9815,10989.30554,0,15.6
+67720,11546.59017,11035.02276,0,15.6
+67721,9059.812836,11124.76197,0,15.6
+67722,9926.875518,0,0,15.6
+67723,10062.52766,0,0,15.6
+67724,10085.7057,0,0,15.6
+67725,349630.0764,0,0,15.6
+67726,10250.8677,0,0,15.6
+67727,10322.50546,73.84060653,0,15.6
+67728,10379.61892,0,0,15.6
+67729,10492.94519,43444.96291,0,15.6
+67730,10518.50022,1587.959803,0,15.6
+67731,10604.54971,6301.22496,0,15.6
+67732,10675.2638,13821.73762,0,15.6
+67733,10770.74359,12997.36762,0,15.6
+67734,10803.27253,11439.82676,0,15.6
+67735,10893.179,12094.40722,0,15.6
+67736,10956.76669,12106.92049,0,15.6
+67737,11030.82441,12208.24096,0,15.6
+67738,11111.87525,12183.28713,0,15.6
+67739,11156.03048,12367.79708,0,15.6
+67740,11242.15163,12325.19573,0,15.6
+67741,11312.98778,12627.92298,1400433.406,15.6
+67742,11407.04017,12899.96616,0,15.6
+67743,11486.77469,13161.03888,0,15.6
+67744,11551.47132,13315.66126,0,15.6
+67745,11653.42852,13537.15804,0,15.6
+67746,0,13745.58939,0,15.6
+67747,0,14004.38871,0,15.6
+67748,0,14207.5171,0,15.6
+67749,0,14328.44846,0,15.6
+67750,0,14611.71405,0,15.6
+67751,0,14846.89163,0,15.6
+67752,0,15010.42015,0,15.6
+67753,59551.126,15170.35075,0,15.6
+67754,0,15437.30274,0,15.6
+67755,1801.420858,15652.98403,0,15.6
+67756,16892.00438,15806.18355,0,15.6
+67757,13955.34848,15899.35266,0,15.6
+67758,11958.45792,16232.06294,0,15.6
+67759,12926.2572,67.44993945,0,15.6
+67760,12972.71082,0,0,15.6
+67761,13059.75268,0,0,15.6
+67762,13124.96484,0,0,15.6
+67763,352636.6439,65102.43082,0,15.6
+67764,13298.11952,0,0,15.6
+67765,13322.54784,10788.36474,0,15.6
+67766,13414.49681,24506.32945,0,15.6
+67767,13508.72708,16907.3152,0,15.6
+67768,13530.35778,18176.78901,0,15.6
+67769,13624.1353,18437.37932,0,15.6
+67770,13730.35175,18631.09143,0,15.6
+67771,13752.0403,18937.38815,0,15.6
+67772,13844.87254,18998.73659,0,15.6
+67773,13907.5393,19248.73899,0,15.6
+67774,14006.36702,19411.9287,0,15.6
+67775,14016.58635,19701.26036,0,15.6
+67776,14153.06083,19839.13604,1337603.972,15.6
+67777,14183.47776,19983.39279,0,15.6
+67778,14261.11624,20243.36832,0,15.6
+67779,14348.6598,20507.06761,0,15.6
+67780,14408.20835,20585.76403,0,15.6
+67781,14454.90206,20834.98789,0,15.6
+67782,14557.51921,21010.67091,0,15.6
+67783,0,21250.6611,0,15.6
+67784,0,21413.73018,0,15.6
+67785,0,21611.37463,0,15.6
+67786,0,21796.48585,0,15.6
+67787,0,22042.9515,0,15.6
+67788,68427.86248,22241.80728,0,15.6
+67789,0,22385.20205,0,15.6
+67790,3621.697933,22596.1038,0,15.6
+67791,22470.89765,22838.24653,0,15.6
+67792,14861.43561,23031.10844,0,15.6
+67793,14948.92561,0,0,15.6
+67794,15397.75275,0,0,15.6
+67795,15489.61977,68.73173679,0,15.6
+67796,15556.81721,84391.82849,0,15.6
+67797,15603.53015,7856.328969,0,15.6
+67798,15670.17305,12655.11311,0,15.6
+67799,15768.71614,33328.47281,0,15.6
+67800,15770.49213,23224.43048,0,15.6
+67801,355318.3238,24569.42177,0,15.6
+67802,15934.65057,459918.1544,0,15.6
+67803,15934.64926,24436.47043,0,15.6
+67804,16026.50265,24343.5503,0,15.6
+67805,16070.44368,24290.68021,0,15.6
+67806,16145.25401,24243.46547,0,15.6
+67807,16169.46055,24081.28635,0,15.6
+67808,16228.76261,24062.84853,0,15.6
+67809,16300.25249,23949.26656,0,15.6
+67810,16305.15712,23897.64721,0,15.6
+67811,16417.8052,23775.97388,1280230.309,15.6
+67812,16430.32218,23722.10507,0,15.6
+67813,16504.3746,23609.34476,0,15.6
+67814,16547.23367,23566.26217,0,15.6
+67815,16576.09501,23454.40702,0,15.6
+67816,16667.70066,23379.78418,0,15.6
+67817,16692.42497,23297.02883,0,15.6
+67818,0,23169.62096,0,15.6
+67819,0,23161.48108,0,15.6
+67820,0,22989.64953,0,15.6
+67821,0,22960.16849,0,15.6
+67822,71715.47069,22829.67684,0,15.6
+67823,322.5590199,22791.51789,0,15.6
+67824,6826.752984,22607.24779,0,15.6
+67825,25737.19928,22615.6636,0,15.6
+67826,15699.86431,0,0,15.6
+67827,17236.45899,0,0,15.6
+67828,17311.80796,0,0,15.6
+67829,17409.44642,80945.40102,0,15.6
+67830,17418.06608,5351.543306,0,15.6
+67831,17472.63312,11336.08223,0,15.6
+67832,17535.70136,30483.08695,0,15.6
+67833,17570.38749,455798.9118,0,15.6
+67834,17647.79378,21789.04712,0,15.6
+67835,17644.13071,21708.54313,0,15.6
+67836,17745.83263,21607.47249,0,15.6
+67837,17781.06367,21541.42348,0,15.6
+67838,17798.73691,21425.69594,0,15.6
+67839,357322.3095,21307.79392,0,15.6
+67840,17909.70385,21210.09422,0,15.6
+67841,18000.13377,21166.53111,0,15.6
+67842,17995.11316,20994.21561,0,15.6
+67843,18074.23581,20932.15982,0,15.6
+67844,18140.20514,20848.38377,0,15.6
+67845,18122.70504,20716.46531,0,15.6
+67846,18253.4151,20723.98347,1227839.495,15.6
+67847,18207.45078,20510.20988,0,15.6
+67848,18381.63025,20452.89407,0,15.6
+67849,18295.59599,20360.14226,0,15.6
+67850,18418.19494,20202.05293,0,15.6
+67851,18463.70821,20155.37867,0,15.6
+67852,0,19969.85025,0,15.6
+67853,0,19879.87102,0,15.6
+67854,0,19783.38371,0,15.6
+67855,70710.92924,19631.86193,0,15.6
+67856,233.3864202,19520.45324,0,15.6
+67857,12127.92926,454693.4838,0,15.6
+67858,25410.90653,19260.65157,0,15.6
+67859,17712.38733,0,0,15.6
+67860,18930.90495,0,0,15.6
+67861,18965.11855,0,0,15.6
+67862,18925.8323,68381.89316,0,15.6
+67863,18867.4233,0,0,15.6
+67864,18901.75337,12981.56619,0,15.6
+67865,18807.12788,25436.86273,0,15.6
+67866,18860.47217,17834.71814,0,15.6
+67867,18743.39198,19196.2598,0,15.6
+67868,18777.77606,19104.34298,0,15.6
+67869,18720.94916,19223.69008,0,15.6
+67870,18717.268,19205.88265,0,15.6
+67871,18662.07688,19234.79018,0,15.6
+67872,18670.49669,19267.52265,0,15.6
+67873,18596.0891,19294.84966,0,15.6
+67874,18616.88801,19299.51017,0,15.6
+67875,18549.07157,19344.96725,0,15.6
+67876,18557.8811,19347.21365,0,15.6
+67877,18505.47386,19399.91073,0,15.6
+67878,357904.647,19397.78758,0,15.6
+67879,18468.94391,19433.93709,0,15.6
+67880,18404.33064,19454.71007,0,15.6
+67881,18439.36155,19468.52148,1180001.177,15.6
+67882,18344.81323,19515.76642,0,15.6
+67883,18356.89075,19550.00762,0,15.6
+67884,18330.9145,19525.38354,0,15.6
+67885,0,19590.41448,0,15.6
+67886,0,19613.83839,0,15.6
+67887,0,19633.91773,0,15.6
+67888,70020.5859,19633.9167,0,15.6
+67889,0,19701.52601,0,15.6
+67890,10724.79311,19688.38042,0,15.6
+67891,25223.45786,19737.96851,0,15.6
+67892,16787.28475,0,0,15.6
+67893,18108.87943,0,0,15.6
+67894,18048.54229,0,0,15.6
+67895,18085.77183,71763.55906,0,15.6
+67896,18004.18549,0,0,15.6
+67897,18007.9931,14528.08977,0,15.6
+67898,17955.97356,26012.36236,0,15.6
+67899,17963.59642,18918.64386,0,15.6
+67900,17897.43957,19982.60739,0,15.6
+67901,17902.5471,20072.54489,0,15.6
+67902,17846.90183,20085.63136,0,15.6
+67903,17831.31547,20106.03916,0,15.6
+67904,17790.49104,20132.34781,0,15.6
+67905,17788.21658,20195.57423,0,15.6
+67906,17724.14365,20154.94751,0,15.6
+67907,17714.00047,20255.23287,0,15.6
+67908,17700.60468,20221.67896,0,15.6
+67909,17639.58247,20281.34399,0,15.6
+67910,17639.58599,20311.09732,0,15.6
+67911,17572.79672,20324.16513,0,15.6
+67912,17594.58803,20314.66427,0,15.6
+67913,17529.27041,20413.18769,0,15.6
+67914,17509.86822,20416.71588,0,15.6
+67915,17472.20766,20405.96403,0,15.6
+67916,17466.31591,20470.07107,1136331.226,15.6
+67917,356841.6381,20472.3509,0,15.6
+67918,0,20507.75221,0,15.6
+67919,0,20549.20851,0,15.6
+67920,0,20540.90166,0,17.8
+67921,1342297.923,1325603.877,0,17.8
+67922,770981.6228,642682.5399,0,17.8
+67923,363730.2794,225247.4434,0,17.8
+67924,146905.7935,318510.0287,0,17.8
+67925,354814.5715,290779.8066,0,17.8
+67926,286068.204,265986.8471,0,17.8
+67927,278479.3086,378827.9292,0,17.8
+67928,277491.7353,307689.7479,0,17.8
+67929,277005.4879,311800.3718,0,17.8
+67930,275952.2089,315071.6138,0,17.8
+67931,276075.5346,313957.7434,0,17.8
+67932,274628.0432,311674.4607,0,17.8
+67933,274615.7237,311723.7376,0,17.8
+67934,273885.4003,310411.2843,0,17.8
+67935,273736.6571,309935.1349,0,17.8
+67936,273455.5386,309236.8478,0,17.8
+67937,272170.4031,308696.1117,0,17.8
+67938,272981.2558,308468.1288,0,17.8
+67939,271758.7592,307196.6833,0,17.8
+67940,272297.9211,307814.9999,0,17.8
+67941,271515.3034,306057.3351,0,17.8
+67942,271325.7593,306567.6895,0,17.8
+67943,271383.379,305708.0065,0,17.8
+67944,270822.8004,305636.1951,0,17.8
+67945,270673.1032,305123.464,0,17.8
+67946,270654.596,304580.4819,0,17.8
+67947,270185.5273,304359.5106,0,17.8
+67948,270421.7404,304332.5812,0,17.8
+67949,270310.0852,303378.3283,0,17.8
+67950,269822.175,303383.2367,1096485.254,17.8
+67951,0,55701.18254,0,17.8
+67952,0,55597.7777,0,17.8
+67953,87824.16485,55432.43615,0,17.8
+67954,1112201.385,784811.4293,0,17.8
+67955,173870.7221,489775.7779,0,17.8
+67956,190152.0399,282692.0598,0,17.8
+67957,323775.3268,281060.692,0,17.8
+67958,265396.6079,242767.865,0,17.8
+67959,269227.8906,355595.8738,0,17.8
+67960,269678.3833,287448.6774,0,17.8
+67961,269651.4338,302000.409,0,17.8
+67962,269394.4482,301338.4754,0,17.8
+67963,269767.0719,301221.7007,0,17.8
+67964,269095.206,300177.2742,0,17.8
+67965,269800.4975,300295.0678,0,17.8
+67966,268846.5703,300210.7433,0,17.8
+67967,269942.521,299774.5873,0,17.8
+67968,268807.1769,299575.6325,0,17.8
+67969,269513.1916,299813.7355,0,17.8
+67970,269266.0135,299064.2731,0,17.8
+67971,269260.8047,299545.6963,0,17.8
+67972,269478.2961,299032.4684,0,17.8
+67973,269224.8776,298565.6399,0,17.8
+67974,269368.0943,299199.489,0,17.8
+67975,269480.9981,298678.8451,0,17.8
+67976,270462.8679,298490.352,0,17.8
+67977,269689.3347,298492.0237,0,17.8
+67978,270728.9349,298006.1434,0,17.8
+67979,269661.988,298562.7826,0,17.8
+67980,270574.4579,297721.8419,0,20
+67981,1094141.145,1429358.809,0,20
+67982,1067193.636,1434146.262,0,20
+67983,564395.6518,434534.9239,0,20
+67984,227849.4952,215917.6616,1060099.78,20
+67985,915749.4955,1171244.433,0,20
+67986,601684.2552,531618.8092,0,20
+67987,727409.7099,740150.2353,0,20
+67988,584091.5273,693909.6668,0,20
+67989,928234.002,491655.3508,0,20
+67990,579497.9129,742301.4584,0,20
+67991,581893.247,630079.1086,0,20
+67992,570751.9947,645399.6742,0,20
+67993,571217.5455,648846.8673,0,20
+67994,567748.0117,647019.3375,0,20
+67995,566774.6437,1013936.277,0,20
+67996,564595.7656,645776.825,0,20
+67997,562695.0961,646238.4923,0,20
+67998,561461.8045,645297.2171,0,20
+67999,559511.135,646680.1903,0,20
+68000,557307.2003,645915.0274,0,20
+68001,565572.399,646635.0099,0,20
+68002,565351.5153,646302.7533,0,20
+68003,561798.6538,647385.2504,0,20
+68004,562637.2077,647936.5194,0,20
+68005,561528.4894,647746.4862,0,20
+68006,561497.8059,648987.5192,0,20
+68007,560355.8814,649014.5316,0,20
+68008,561119.1761,650054.1603,0,20
+68009,558278.5792,651008.8798,0,20
+68010,560237.9458,650608.5869,0,20
+68011,539773.8524,621819.4388,0,20
+68012,540053.1456,621081.5514,0,20
+68013,539881.8992,623053.1579,0,20
+68014,444519.0472,708925.0267,0,20
+68015,0,130677.0152,0,20
+68016,195169.1887,148943.7276,0,20
+68017,920895.8059,1236130.99,0,20
+68018,652307.8208,613281.5536,1026867.664,20
+68019,593550.3813,664214.3267,0,20
+68020,505595.5941,616857.5652,0,20
+68021,560198.5373,510165.2464,0,20
+68022,547905.0434,781118.4361,0,20
+68023,537392.1305,674305.8081,0,20
+68024,876923.8036,654511.712,0,20
+68025,536432.8794,674498.4371,0,20
+68026,535722.8939,672544.9131,0,20
+68027,548649.8788,670714.8504,0,20
+68028,564113.4432,672992.8694,0,20
+68029,551414.2828,674226.7208,0,20
+68030,555010.5601,674906.9637,0,20
+68031,555326.301,675634.1206,0,20
+68032,556110.7603,677707.5999,0,20
+68033,554874.3598,678983.4139,0,20
+68034,555139.1289,679079.4737,0,20
+68035,555229.4837,1050367.507,0,20
+68036,555102.8729,681489.1558,0,20
+68037,555698.0522,684286.2344,0,20
+68038,554946.8901,685847.294,0,20
+68039,554866.6415,685471.1051,0,20
+68040,555213.5169,689111.9684,0,21
+68041,2312181.74,2611403.886,1351081.36,21
+68042,1843256.981,1862595.994,130168.8789,21
+68043,595754.2155,702293.2127,54271.10733,21
+68044,567508.2708,835583.5933,316866.3316,21
+68045,640423.1548,821165.5422,219147.5478,21
+68046,949854.7189,1166377.755,211069.2951,21
+68047,696060.5784,910926.9912,216571.439,21
+68048,751374.2791,960968.7335,219324.4541,21
+68049,748804.8853,945370.5715,218218.6993,21
+68050,746718.9459,950625.1079,219995.504,21
+68051,742502.2026,946128.6624,220153.1715,21
+68052,740880.5134,941569.6155,221364.6015,21
+68053,738347.2158,938566.4965,221077.5182,21
+68054,734745.8328,935894.0188,222921.044,21
+68055,735206.5826,934142.4767,222888.3206,21
+68056,729468.5061,929823.4988,224032.5172,21
+68057,729873.7288,928891.6366,224519.7288,21
+68058,727030.7408,926738.4035,224862.9424,21
+68059,725154.3881,921982.3034,226543.4057,21
+68060,721610.0478,922773.4073,226322.4307,21
+68061,722363.2551,917428.9167,228138.9432,21
+68062,719386.738,918115.7671,227892.8772,21
+68063,717463.3545,914230.6025,228678.1833,21
+68064,714485.9747,913243.4377,230356.1456,21
+68065,715772.0533,909968.1371,229990.1339,21
+68066,711402.4668,909629.6765,231655.1659,21
+68067,710834.2838,906082.2118,231859.5382,21
+68068,710018.2771,905284.4786,232968.1549,21
+68069,708296.0707,902801.7862,238041.2297,21
+68070,705592.7278,901724.9487,236097.5572,21
+68071,705825.3815,898670.2623,237804.7011,21
+68072,703457.0782,897868.9042,238656.9409,21
+68073,701825.5761,897387.2092,239823.3578,21
+68074,701296.8095,893547.0421,240845.7935,21
+68075,699753.4586,892164.9473,241482.7264,21
+68076,697967.7415,890787.563,242283.4706,21
+68077,697526.8855,890850.0074,243942.8976,21
+68078,695504.0923,886247.4441,243724.2544,21
+68079,695503.0969,887568.8705,245725.8742,21
+68080,692849.0128,884471.9195,245952.6321,21
+68081,692740.8211,881772.2885,247179.6483,21
+68082,691718.5335,883753.0568,247568.6259,21
+68083,690512.2694,879220.355,249047.0351,21
+68084,689471.8405,878322.0286,249457.5581,21
+68085,688934.4197,878176.1576,250651.533,21
+68086,686777.1947,874999.8739,251758.7762,21
+68087,687677.8187,875356.4243,251655.8638,21
+68088,685046.7465,872406.993,254014.346,21
+68089,684390.0236,871628.7027,253493.5745,21
+68090,685398.1171,868989.6868,255040.7226,21
+68091,682810.7815,870461.3234,255778.7852,21
+68092,681933.3411,865315.4492,256454.2845,21
+68093,681804.7001,866234.1924,257600.6726,21
+68094,680258.3858,864321.8024,258557.6621,21
+68095,680102.1737,861476.0194,258539.3888,21
+68096,679166.1036,861267.7033,260189.6256,21
+68097,677617.8271,858694.4567,260974.5926,21
+68098,678087.418,857642.8936,261541.7467,21
+68099,676705.7274,854689.3397,262325.1332,21
+68100,675974.3292,853088.8701,263137.9399,21
+68101,936000.1247,2079345.12,246217.5485,21
+68102,932392.8781,2073773.935,243847.523,21
+68103,927970.6557,2071768.366,244358.9356,21
+68104,929189.2067,2070003.835,244850.3911,21
+68105,926159.8556,2070104.406,244132.0867,21
+68106,925693.7926,2067604.639,244794.7686,21
+68107,924664.9158,2066740.653,245308.6958,21
+68108,923793.3984,2065758.635,244864.0915,21
+68109,921757.0948,2064469.066,245702.5068,21
+68110,921296.7594,2064108.942,245997.6422,21
+68111,920225.753,2061819.2,246093.0945,21
+68112,919528.0742,2061012.397,245889.8303,21
+68113,918419.5191,2061562.551,246850.5324,21
+68114,916651.3178,2058845.598,246418.7395,21
+68115,917401.1617,2059082.775,246944.8416,21
+68116,913199.1941,2056988.393,247968.4055,21
+68117,913121.2634,2057996.77,247008.1679,21
+68118,911920.1335,2055253.825,248008.1513,21
+68119,909677.2412,2054898.553,247796.5261,21
+68120,908621.1737,2055818.808,248389.2257,21
+68121,908152.1282,2051647.89,249041.7373,21
+68122,906492.7264,2053688.855,248013.6044,21
+68123,906938.632,2051604.021,249823.2622,21
+68124,904144.5683,2052585.091,249022.9985,21
+68125,904143.6338,2049738.06,249351.6789,21
+68126,903407.2833,2050182.753,250086.8146,21
+68127,903427.0038,2048884.321,249670.7818,21
+68128,901619.5622,2048594.793,250602.3871,21
+68129,900830.0782,2047981.676,249871.4829,21
+68130,900396.9329,2047331.013,250911.5642,21
+68131,899196.3907,2046592.505,250656.6583,21
+68132,897860.5167,2046316.359,251085.9516,21
+68133,897575.8617,2044054.2,250747.0355,21
+68134,895309.4799,2046005.686,252169.3537,21
+68135,894851.6694,2043024.438,250879.8266,21
+68136,893697.176,2044498.754,251672.8466,21
+68137,892369.2799,2042775.847,251984.0582,21
+68138,891269.6134,2041900.705,251830.138,21
+68139,890529.4511,2043293.108,252171.2304,21
+68140,888322.8335,2039950.846,251981.6992,21
+68141,888279.7996,2041718.579,253031.6746,21
+68142,885765.0669,2040444.386,252252.748,21
+68143,886015.83,2039743.602,252574.1003,21
+68144,884389.0303,2038776.398,253162.9991,21
+68145,882039.1561,2039756.616,253142.6788,21
+68146,883624.9699,2036987.03,252633.5594,21
+68147,879750.8979,2038462.137,253320.2128,21
+68148,879567.4693,2038084.288,253903.072,21
+68149,878655.4957,2036215.28,253130.8619,21
+68150,877546.5821,2036856.034,253771.1614,21
+68151,876307.7402,2035202.194,254130.2421,21
+68152,875890.9213,2035980.867,253197.9318,21
+68153,874483.6765,2036224.565,254767.8049,21
+68154,872572.4202,2033376.972,253414.1931,21
+68155,873228.4322,2034771.501,254516.7102,21
+68156,870463.0178,2033723.801,254676.0041,21
+68157,870453.0629,2033430.719,254186.6972,21
+68158,869714.5961,2033453.871,254944.0382,21
+68159,867343.6324,2031475.482,254235.3948,21
+68160,867373.1061,2033589.672,254521.5095,21
+68161,631809.4422,1809783.117,122801.2705,21
+68162,624566.9481,1803429.76,115644.4204,21
+68163,621664.58,1801201.605,114070.49,21
+68164,618591.7967,1798707.935,112425.0256,21
+68165,616356.682,1798225.694,111551.393,21
+68166,613596.2847,1795559.308,109923.1792,21
+68167,611449.5158,1794218.855,109503.5054,21
+68168,608753.5516,1793250.798,107560.6558,21
+68169,606380.1937,1791203.582,107658.2001,21
+68170,604540.3512,1790500.906,105887.2212,21
+68171,601815.9076,1789053.925,105078.8911,21
+68172,599985.0336,1787029.157,104391.2275,21
+68173,597361.1614,1786390.409,103304.8956,21
+68174,595560.7549,1785128.84,102747.265,21
+68175,592930.2349,1783823.026,101540.5738,21
+68176,591409.355,1782566.154,100988.3194,21
+68177,588917.184,1781636.813,100043.6562,21
+68178,586811.3606,1779760.013,98778.94908,21
+68179,584613.43,1779620.952,98624.52513,21
+68180,583106.129,1778227.443,97546.43246,21
+68181,580193.4519,1776848.928,96745.66489,21
+68182,579093.571,1776273.399,95928.63616,21
+68183,576546.2148,1775041.512,95743.70741,21
+68184,575027.2129,1774096.155,93907.59674,21
+68185,572712.7513,1773130.015,93926.54789,21
+68186,570801.8162,1772353.235,93169.88355,21
+68187,568949.4203,1770874.172,92402.30619,21
+68188,567164.4656,1770864.089,91366.45932,21
+68189,564867.6457,1769167.996,91115.73824,21
+68190,563393.3996,1768679.433,90100.10344,21
+68191,561509.3171,1767545.091,89541.74213,21
+68192,559788.8286,1767651.009,88767.92514,21
+68193,558180.6956,1765392.143,88038.61136,21
+68194,556246.3763,1765347.67,87363.68684,21
+68195,554861.3818,1764862.963,86407.8541,21
+68196,553425.73,1763353.123,86224.89454,21
+68197,550997.0571,1762785.591,84924.27109,21
+68198,550260.895,1762343.582,84629.87912,21
+68199,548273.8895,1761482.073,83945.16523,21
+68200,546404.8789,1761028.171,82862.10196,21
+68201,545660.8498,1759407.728,81882.91705,21
+68202,543339.5835,1759849.921,80887.47106,21
+68203,542118.8957,1758163.852,79913.89899,21
+68204,540479.0645,1757991.671,79946.84171,21
+68205,539099.6509,1757032.945,78665.72449,21
+68206,537587.1542,1756415.801,78484.06106,21
+68207,535754.5078,1756092.121,77426.72867,21
+68208,534422.999,1754739.413,77073.78357,21
+68209,532865.726,1754901.092,76100.67425,21
+68210,531489.04,1754268.466,75843.38133,21
+68211,529953.7479,1752747.99,74696.98324,21
+68212,528485.1717,1753166.325,74596.81444,21
+68213,527000.5371,1751856.386,73590.94995,21
+68214,525516.8813,1751512.241,73202.79669,21
+68215,524054.0285,1750999.003,72458.68508,21
+68216,522834.2729,1745975.143,71828.86852,21
+68217,521276.2235,1744579.71,71229.1416,21
+68218,519933.7091,1743861.07,70779.24226,21
+68219,518379.0068,1743004.414,69693.76846,21
+68220,516984.7384,1742255.603,69791.06733,21
+68221,515919.6029,1740402.532,68667.39975,21
+68222,514135.3409,1739762.288,68103.55275,21
+68223,512906.6966,1714865.382,67635.13975,21
+68224,512130.6782,1708359.36,66803.82284,21
+68225,510090.7576,1705368.063,66399.35837,21
+68226,509231.0095,1701420.842,65750.30064,21
+68227,508123.7277,1698914.989,64807.35816,21
+68228,506102.0989,1695687.823,64581.80835,21
+68229,505627.456,1692477.687,63762.74644,21
+68230,503847.3283,1688681.133,63438.69727,21
+68231,502874.8846,1686474.362,62277.91669,21
+68232,501665.0122,1682544.056,62242.33481,21
+68233,499892.4085,1679921.749,61369.80831,21
+68234,499190.9064,1676709.979,60921.56802,21
+68235,497656.0062,1673326.767,60316.06796,21
+68236,496429.2921,1670208.853,59828.91381,21
+68237,495339.555,1667631.812,59020.61009,21
+68238,493938.6076,1664364.263,58845.68589,21
+68239,492622.9173,1661205.191,58767.03365,21
+68240,491650.5579,1657963.561,57691.19202,21
+68241,490115.3154,1655675.704,57557.03612,21
+68242,489392.1856,1652020.286,57189.78701,21
+68243,487387.359,1648923.261,56574.024,21
+68244,486895.8021,1646631.708,56426.42738,21
+68245,485300.2208,1642775.177,55933.42788,21
+68246,484208.2036,1640835.124,55177.1223,21
+68247,482761.1435,1636907.014,54995.6492,21
+68248,481887.6416,1634303.428,54810.66651,21
+68249,480733.9728,1631743.419,53907.60531,21
+68250,478986.0339,1628512.266,53817.09617,21
+68251,477307.0975,1631017.099,53394.07148,21
+68252,473081.9617,1630353.925,52927.77592,21
+68253,470066.428,1627923.772,52692.43966,21
+68254,468417.8485,1625766.856,52261.18591,21
+68255,465287.1634,1623340.092,52076.6468,21
+68256,461719.2102,1621254.715,51420.6351,21
+68257,458407.6069,1619036.809,51525.90979,21
+68258,455900.3684,1616075.853,51044.47741,21
+68259,452750.2835,1613504.625,50841.89055,21
+68260,450322.658,1611278.661,50587.76458,21
+68261,447281.5849,1608463.536,50727.61733,21
+68262,443951.3261,1606105.465,50013.64324,21
+68263,439992.6232,1603577.299,50110.67189,21
+68264,436268.9946,1600925.127,49765.40171,21
+68265,433368.6565,1599068.523,49746.90588,21
+68266,430597.0221,1595807.088,49385.37479,21
+68267,427636.2563,1593946.905,49205.43797,21
+68268,424149.1974,1591199.401,49040.58636,21
+68269,421677.2638,1588745.514,48806.39571,21
+68270,418589.0937,1586451.374,48499.4472,21
+68271,413010.4972,1583602.743,48261.91733,21
+68272,410148.6115,1581736.308,48294.92221,21
+68273,406546.1723,1578710.652,47931.92687,21
+68274,404026.0645,1577090.702,47870.68534,21
+68275,400757.177,1573337.543,47554.12712,21
+68276,397910.0705,1572648.217,47194.488,21
+68277,395144.0529,1569118.903,47313.0134,21
+68278,391515.4782,1567388.62,46880.17488,21
+68279,388747.5147,1564780.801,47020.74516,21
+68280,385442.6344,1563213.199,46330.15726,21
+68281,386082.7838,1562218.692,57651.46445,21
+68282,382829.2845,1558414.64,57762.96516,21
+68283,377886.5869,1553071.716,57392.90895,21
+68284,375762.2298,1549848.939,57848.07304,21
+68285,373797.9637,1544605.256,56918.84315,21
+68286,371605.1053,1540668.637,57792.57071,21
+68287,369618.2555,1535731.418,56756.77796,21
+68288,367449.0664,1531061.032,57097.16039,21
+68289,366001.3757,1527491.577,57159.81282,21
+68290,363350.8906,1522368.603,56787.66578,21
+68291,361820.7561,1518252.908,56489.82581,21
+68292,359780.6312,1513847.21,57004.2057,21
+68293,358142.3981,1509449.921,56179.10373,21
+68294,355616.1727,1504926.181,56675.1244,21
+68295,354080.5786,1500737.898,56106.39687,21
+68296,352138.9279,1496253.745,56343.91301,21
+68297,350088.5487,1491789.124,55781.19037,21
+68298,348445.9328,1487932.948,56270.70418,21
+68299,346537.2261,1482835.55,55699.88635,21
+68300,345093.3273,1479168.102,55857.9339,21
+68301,343691.0267,1475035.877,55626.03612,21
+68302,342033.6415,1469719.022,55642.47258,21
+68303,340141.2713,1466639.019,55145.44743,21
+68304,339249.8672,1461948.99,55598.7995,21
+68305,337049.8426,1457643.795,54964.17625,21
+68306,335618.3967,1453406.496,55545.07311,21
+68307,334500.0025,1449345.921,54629.24063,21
+68308,332666.1718,1444587.527,55175.70842,21
+68309,331419.1609,1440850.195,54589.79918,21
+68310,330319.1904,1436351.539,54984.45943,21
+68311,328681.1343,1432423.694,54434.0847,21
+68312,327590.3366,1427806.917,54787.11687,21
+68313,326604.7471,1424060.986,53929.28095,21
+68314,323345.8637,1419726.58,54251.87727,21
+68315,323141.6737,1415751.484,53898.85176,21
+68316,321952.8498,1411468.676,53833.64357,21
+68317,320018.2335,1407815.495,53241.56161,21
+68318,319111.1727,1403256.74,53651.45403,21
+68319,318155.4332,1399742.235,53005.74238,21
+68320,316278.5182,1395855.446,52821.24126,21
+68321,315714.0908,1391585.6,53063.32389,21
+68322,314003.1286,1387782.164,52358.08107,21
+68323,313011.1802,1383940.822,52372.33206,21
+68324,311463.9824,1379730.8,52086.73943,21
+68325,310556.9901,1376497.785,52188.60853,21
+68326,308819.2977,1371899.662,51719.60067,21
+68327,308157.142,1368253.224,51502.1136,21
+68328,306546.0879,1364793.97,51217.25702,21
+68329,305187.5825,1360535.236,51236.90875,21
+68330,303921.3021,1356517.901,50967.01886,21
+68331,302928.8634,1353007.658,50647.92142,21
+68332,301556.2387,1349103.222,50558.74759,21
+68333,300134.7176,1345187.838,50239.10357,21
+68334,298914.8424,1341459.313,50182.64989,21
+68335,297544.248,1337901.321,49875.58991,21
+68336,296404.8818,1333589.503,49790.45166,21
+68337,294918.4385,1330158.047,49184.4314,21
+68338,293446.0341,1326265.734,49444.42426,21
+68339,292192.3511,1322740.455,49229.2308,21
+68340,291451.9985,1318737.663,48449.51566,21
+68341,285775.853,1314068.395,37712.82459,21
+68342,285402.4641,1312429.942,36554.80544,21
+68343,284701.1449,1311419.381,36147.98374,21
+68344,283857.7003,1309373.558,36250.30615,21
+68345,283836.0476,1307662.93,35227.38199,21
+68346,282598.2954,1305884.992,35313.25227,21
+68347,282293.8164,1304146.51,34435.85547,21
+68348,281693.1024,1303105.332,34523.86785,21
+68349,280980.8334,1301848.628,33977.10335,21
+68350,280538.6712,1301560.782,33282.30525,21
+68351,279730.3579,1300009.007,33322.3974,21
+68352,273529.6211,1299484.706,32676.93796,21
+68353,273629.9782,1298545.431,32085.91,21
+68354,272794.9224,1297587.913,32117.66016,21
+68355,271157.0835,1296602.322,31334.84459,21
+68356,269577.9771,1295692.262,31221.65082,21
+68357,268941.0626,1294778.027,30949.706,21
+68358,267370.0655,1293818.12,30273.49751,21
+68359,265897.4954,1292960.822,30047.17615,21
+68360,264943.8371,1292044.592,29573.64789,21
+68361,263570.1913,1291104.171,29096.81811,21
+68362,262144.5528,1290111.442,28826.14824,21
+68363,261190.9086,1289204.637,28409.959,21
+68364,259689.0022,1288470.882,28043.53629,21
+68365,258427.1127,1287125.287,27443.67836,21
+68366,257295.6029,1286635.307,27531.04035,21
+68367,255883.3306,1285441.229,26504.15175,21
+68368,254769.0177,1284389.494,26560.54161,21
+68369,253321.6176,1283636.365,26052.4721,21
+68370,252022.3104,1282501.926,25550.72478,21
+68371,251534.0989,1281809.61,25307.95884,21
+68372,251367.8386,1280789.593,25024.14787,21
+68373,251007.2421,1279645.863,24680.59158,21
+68374,250709.0628,1278774.067,24613.07632,21
+68375,250491.8382,1278033.812,24043.49974,21
+68376,250417.3996,1276869.649,24038.01991,21
+68377,250247.5753,1275876.651,23769.71106,21
+68378,250186.7231,1275342.722,23553.33437,21
+68379,250966.7355,1274148.478,23228.02873,21
+68380,251461.0203,1273268.875,22939.33758,21
+68381,251367.6328,1272249.663,22925.11692,21
+68382,251535.3791,1271468.568,22541.21901,21
+68383,251356.3989,1270462.736,22144.38786,21
+68384,251566.4861,1269665.811,22272.7947,21
+68385,251649.7053,1268305.817,21882.54113,21
+68386,251517.6724,1267680.854,21634.91356,21
+68387,252047.6051,1266738.254,21473.01909,21
+68388,251915.7886,1266076.043,21384.04022,21
+68389,252099.4134,1264267.243,20867.82487,21
+68390,252400.9106,1263862.145,20797.26491,21
+68391,252606.5279,1261523.666,20760.85524,21
+68392,253088.1224,1260306.276,20358.4505,21
+68393,253349.126,1259336.733,20376.04996,21
+68394,253627.2388,1258322.221,20009.89858,21
+68395,254233.967,1257652.516,19936.61336,21
+68396,254329.9521,1255687.084,19438.12321,21
+68397,254723.5741,1255453.622,19885.99889,21
+68398,254762.8636,1254178.598,19042.70578,21
+68399,254007.6903,1252791.475,19331.07997,21
+68400,254478.5559,1252100.494,18952.80083,21
+68401,273560.6382,1275286.911,40995.09581,21
+68402,274889.2876,1274331.685,42862.91708,21
+68403,274671.7755,1273739.154,42548.9968,21
+68404,275394.0454,1272801.658,42472.56986,21
+68405,275718.6481,1271995.617,42766.16226,21
+68406,276134.8296,1270994.75,42662.35364,21
+68407,276548.9068,1270321.374,42975.7582,21
+68408,277040.1019,1269414.213,42786.12582,21
+68409,277741.429,1268456.923,43273.16856,21
+68410,277644.8371,1267792.952,42834.65472,21
+68411,278125.1414,1266524.395,43429.48174,21
+68412,279048.6347,1266081.859,42955.79646,21
+68413,279105.6895,1264748.692,43459.49056,21
+68414,279732.8758,1264099.97,43487.11428,21
+68415,279979.1089,1263189.253,43456.99209,21
+68416,280547.4289,1261807.091,43444.48994,21
+68417,281081.4723,1261525.903,43523.86021,21
+68418,281564.5714,1260024.438,44064.88681,21
+68419,281718.9267,1259277.854,43502.11327,21
+68420,282460.6404,1258203.249,43973.79219,21
+68421,282607.3263,1257784.718,43799.23462,21
+68422,283419.9215,1256231.569,44143.43923,21
+68423,283288.6975,1255392.259,43993.63902,21
+68424,284324.0697,1254447.892,44192.3121,21
+68425,284557.7461,1253603.608,44274.68262,21
+68426,284860.6929,1252333.773,44204.85813,21
+68427,285466.0538,1251611.643,44660.91502,21
+68428,285941.6537,1250500.858,44478.69107,21
+68429,285812.5548,1249523.578,44551.56521,21
+68430,286566.492,1248450.493,44819.03303,21
+68431,286428.4825,1247891.183,44568.00303,21
+68432,287074.1843,1246239.917,44984.02935,21
+68433,287204.7544,1245537.946,44860.33252,21
+68434,287661.6345,1244713.616,44880.50795,21
+68435,288153.508,1243437.993,45042.25478,21
+68436,288035.4361,1242443.449,44843.44315,21
+68437,288771.0285,1241412.849,45212.10365,21
+68438,288981.1935,1241222.564,44907.97608,21
+68439,288901.506,1239069.121,45365.86331,21
+68440,289595.1272,1238854.96,45214.09417,21
+68441,289803.8469,1237534.887,45376.98536,21
+68442,290028.3263,1236899.026,45211.86303,21
+68443,290193.0489,1235436.959,45565.46692,21
+68444,290699.1004,1234984.65,45241.67407,21
+68445,290815.5298,1233539.897,45579.33546,21
+68446,291066.9448,1233101.213,45547.68307,21
+68447,291508.0138,1231928.917,45593.17319,21
+68448,291743.9625,1230484.508,45425.30571,21
+68449,291755.3282,1230341.351,45918.17395,21
+68450,292231.7456,1228811.169,45611.12981,21
+68451,292359.3732,1228187.121,45773.80576,21
+68452,292511.0646,1226892.276,45922.39202,21
+68453,292726.6216,1226585.091,45664.39376,21
+68454,293313.0357,1225196.837,46063.61573,21
+68455,293095.7311,1224530.409,45976.34818,21
+68456,293646.4252,1223363.924,45989.63845,21
+68457,293840.3547,1222700.338,45954.78019,21
+68458,294512.0412,1221449.174,46477.67456,21
+68459,294232.6708,1220856.604,45677.83345,21
+68460,296339.3119,1219859.79,46628.73249,21
+68461,276641.5863,1193657.637,22535.07208,21
+68462,276909.6139,1190818.115,22290.54062,21
+68463,277759.1894,1188104.134,21950.88999,21
+68464,278378.1491,1185402.924,21769.3052,21
+68465,278555.7213,1182986.374,21712.66117,21
+68466,279578.7431,1180129.423,21398.71469,21
+68467,280014.1698,1177383.364,21195.25466,21
+68468,280411.2282,1174347.126,21179.27472,21
+68469,281358.2921,1171928.293,21143.58992,21
+68470,281742.7973,1168637.214,20640.73834,21
+68471,282352.9336,1166555.309,20764.2718,21
+68472,283111.5592,1163181.135,20606.66,21
+68473,283462.2198,1160613.5,20403.7136,21
+68474,284066.9402,1157933.155,20373.5195,21
+68475,284901.8703,1154818.693,19862.97034,21
+68476,285145.803,1152509.357,20332.77996,21
+68477,286257.6429,1148972.789,19655.69471,21
+68478,286326.5326,1147186.438,19821.88019,21
+68479,287515.8,1143555.607,19581.96665,21
+68480,287503.1064,1141457.604,19607.38439,21
+68481,288470.5992,1138207.248,19089.60697,21
+68482,289016.2729,1136150.834,19192.85389,21
+68483,289380.8266,1133685.213,19194.33116,21
+68484,290213.8532,1131664.525,18867.31838,21
+68485,290881.4955,1128750.693,18668.62843,21
+68486,291238.6791,1125528.727,18850.55872,21
+68487,292083.2291,1123546.125,18451.47939,21
+68488,292846.0431,1120346.228,18504.43519,21
+68489,292968.1946,1117935.443,18285.73778,21
+68490,293935.2583,1115220.192,18126.03267,21
+68491,294663.9268,1112668.793,18099.68608,21
+68492,295077.0723,1109503.184,18108.98792,21
+68493,296150.754,1107306.522,17570.93216,21
+68494,296599.3463,1104402.259,17741.54585,21
+68495,297232.0167,1102711.289,17743.08492,21
+68496,298307.4436,1099039.992,17373.56584,21
+68497,298768.2653,1096551.174,17204.88563,21
+68498,299713.6248,1094234.849,17336.41969,21
+68499,300044.0063,1090894.92,17033.73177,21
+68500,301234.5119,1088703.873,16978.58354,21
+68501,301769.144,1085806.21,16976.53597,21
+68502,302469.093,1083402.973,16637.26832,21
+68503,303382.8889,1080938.615,16476.15785,21
+68504,304042.1862,1077779.017,16619.6696,21
+68505,304696.4007,1075868.685,16236.29084,21
+68506,305448.2189,1072446.789,16459.68199,21
+68507,306388.4135,1070291.477,15896.087,21
+68508,306846.1112,1067366.887,16219.66595,21
+68509,307648.6591,1064893.366,15572.49602,21
+68510,308557.1458,1062406.431,16010.91297,21
+68511,309317.7738,1059401.84,15534.69024,21
+68512,309977.9181,1056867.043,15678.72619,21
+68513,310587.3977,1054256.915,15313.48152,21
+68514,311804.4197,1051488.934,15345.69397,21
+68515,312029.5221,1048742.077,15275.46024,21
+68516,313336.4417,1046053.49,14971.79265,21
+68517,313558.831,1044270.342,14941.82435,21
+68518,314144.1893,1040400.199,14942.79145,21
+68519,314855.6594,1037705.202,14730.99068,21
+68520,315364.4206,1034625.09,14568.14978,21
+68521,320330.8276,1038178.398,25588.86713,21
+68522,319265.0843,1036595.62,25547.65966,21
+68523,318947.5062,1034579.444,25704.98453,21
+68524,318433.2952,1032960.49,25706.88692,21
+68525,317371.7229,1030870.968,25362.19927,21
+68526,316901.4609,1028362.515,25515.98003,21
+68527,315920.1898,1026951.563,25518.32206,21
+68528,315773.9953,1024296.661,25283.82319,21
+68529,314395.448,1022453.212,25218.65177,21
+68530,314228.0926,1020640.249,25288.1015,21
+68531,313255.8446,1017983.059,25290.22861,21
+68532,312559.6224,1016527.738,24968.12665,21
+68533,312016.3111,1014347.422,25162.60189,21
+68534,311198.5583,1011777.512,24754.89593,21
+68535,310706.9484,1010280.572,25258.20685,21
+68536,309615.3716,1008069.806,24626.89775,21
+68537,309034.319,1005491.594,24781.21838,21
+68538,308473.275,1003920.639,24894.91541,21
+68539,307726.7107,1001133.28,24592.43807,21
+68540,306810.704,999804.0083,24568.89966,21
+68541,306335.6919,996760.1755,24728.41593,21
+68542,305516.2978,995364.0249,24227.4525,21
+68543,304962.9445,992556.185,24534.28646,21
+68544,303955.0669,990606.4074,24251.56829,21
+68545,303614.7301,988757.6882,24166.23369,21
+68546,302418.8358,986012.1603,24214.80918,21
+68547,302028.7552,984427.2645,24017.52945,21
+68548,301546.7784,981856.6223,24172.00025,21
+68549,300206.6668,979535.2229,23848.17201,21
+68550,299790.996,977677.0542,24002.77425,21
+68551,299266.3947,975157.9095,23984.39069,21
+68552,298334.6726,973530.1607,23480.00232,21
+68553,297953.5852,970747.9238,23787.47375,21
+68554,297159.0297,968781.9873,23483.63311,21
+68555,296453.5934,967144.7718,23444.63251,21
+68556,295906.5146,964225.9197,23285.40914,21
+68557,295320.9341,962123.1443,23427.67907,21
+68558,294645.3547,960637.7007,22911.89291,21
+68559,293833.1947,957918.8837,23278.11982,21
+68560,293527.0438,955674.3396,22874.44883,21
+68561,292619.9765,953923.5566,22722.69107,21
+68562,292283.1758,951512.6153,22928.12956,21
+68563,291051.9934,949502.3873,22479.49619,21
+68564,291166.9684,947293.7252,22727.72452,21
+68565,289919.7372,945237.307,22361.03562,21
+68566,289954.5732,942891.7686,22484.43582,21
+68567,288816.9077,941134.1096,22179.02006,21
+68568,288292.4992,938885.1856,22159.98275,21
+68569,287842.0231,936543.4916,21952.99137,21
+68570,287366.185,934878.938,22142.7062,21
+68571,286510.0747,931233.3672,21935.45084,21
+68572,285923.9644,929330.1951,21513.06255,21
+68573,285367.206,927480.4411,21784.72547,21
+68574,284852.8591,925242.7548,21376.62571,21
+68575,283984.9843,923747.4387,21592.63244,21
+68576,283945.8732,921952.6148,21400.07036,21
+68577,282871.5365,919865.388,21339.78889,21
+68578,282358.523,917648.4725,21073.89961,21
+68579,282066.6643,917066.871,21342.68914,21
+68580,281238.6658,914410.6191,21014.97378,21
+68581,277038.4788,908901.2413,9590.192654,21
+68582,277679.287,908597.5808,9353.370394,21
+68583,279014.784,907638.7416,9785.1728,21
+68584,279449.7715,906919.074,9067.318039,21
+68585,280924.375,906309.961,9409.367717,21
+68586,281634.6079,905697.1275,9073.091266,21
+68587,282696.9032,904897.8928,9027.14894,21
+68588,283922.3516,904312.1933,8838.601979,21
+68589,284774.853,903761.9098,8690.546059,21
+68590,285626.9991,903218.2188,8839.266996,21
+68591,286894.1468,902143.1544,8460.394994,21
+68592,287831.7569,902120.718,8650.475243,21
+68593,288972.2443,901096.6264,8481.821909,21
+68594,289637.8311,900660.9663,8440.764906,21
+68595,291065.7093,900001.5527,8292.35014,21
+68596,292161.5829,899706.0472,8230.656176,21
+68597,292637.3304,898974.8391,8272.378733,21
+68598,294400.66,898333.5073,8082.228304,21
+68599,295080.737,897986.7928,8041.050827,21
+68600,296111.1678,897384.2293,8062.200356,21
+68601,297167.7326,896658.8178,7871.674011,21
+68602,298288.7016,896502.9108,7851.320381,21
+68603,299480.3651,896429.3676,7872.214717,21
+68604,300361.709,897535.5049,7640.027235,21
+68605,301428.7565,896560.7115,7702.466251,21
+68606,302999.9304,896453.1888,7619.60792,21
+68607,303479.044,896243.4198,7470.17471,21
+68608,304771.6213,895347.1356,7620.113631,21
+68609,306033.67,895089.9356,7278.766333,21
+68610,306987.3983,900549.0922,7429.28817,21
+68611,307950.1074,903996.8527,7258.271182,21
+68612,308785.1206,902269.5957,7258.784303,21
+68613,310030.5643,902818.8122,7238.048288,21
+68614,310694.4593,903362.0434,7259.24963,21
+68615,311849.6352,903791.5834,7238.200687,21
+68616,312754.3946,904215.7863,7238.995173,21
+68617,313659.3183,904384.2208,7046.614519,21
+68618,314422.9169,905326.8865,7260.174409,21
+68619,315584.9708,904952.9181,7047.060377,21
+68620,316259.5298,905887.2335,7218.937937,21
+68621,317404.5011,906240.3681,7068.199669,21
+68622,318270.8355,907485.8411,7048.008625,21
+68623,319167.5316,906758.8388,7198.612915,21
+68624,320096.8552,907802.6072,6897.428073,21
+68625,321052.6153,907809.5277,7198.748426,21
+68626,321983.3014,907997.5591,7048.892992,21
+68627,322650.0491,908873.1211,7028.102924,21
+68628,323702.1863,908508.384,7049.049789,21
+68629,324815.7853,909400.4571,7028.540999,21
+68630,325333.8979,909191.3819,7049.489206,21
+68631,326456.8145,909674.6715,6857.190131,21
+68632,327487.6304,909567.5641,7179.58924,21
+68633,328108.2644,910231.2396,6899.36179,21
+68634,329131.6061,910333.8539,7008.584252,21
+68635,330019.5173,910445.361,7029.849049,21
+68636,330895.7101,910483.9261,7009.01957,21
+68637,331783.1989,910808.2821,6879.198089,21
+68638,332623.1883,911265.6371,7009.450778,21
+68639,333532.3344,911085.4226,7030.718195,21
+68640,334504.5484,911132.0478,7009.885764,21
+68641,335108.32,913170.0197,6838.259184,21
+68642,336135.0825,914232.0949,7052.105699,21
+68643,336700.517,915419.6808,6817.911495,21
+68644,337601.5692,917705.5491,7010.746066,21
+68645,338386.1179,918361.5089,6839.097512,21
+68646,339020.1751,921611.7861,6990.088805,21
+68647,339969.4529,922905.402,6860.571584,21
+68648,340429.3658,924169.8864,6797.86414,21
+68649,342489.1733,925861.8209,6990.728036,21
+68650,343111.1031,927475.7871,6840.140848,21
+68651,343960.0071,928252.549,6798.48449,21
+68652,344874.5881,930634.9282,6840.554173,21
+68653,345712.9569,931123.4414,6798.895012,21
+68654,346622.5459,933372.2816,6819.874837,21
+68655,347456.8866,934353.7916,6799.305011,21
+68656,348291.057,935617.2811,6820.286126,21
+68657,349122.5695,936044.5241,6799.714875,21
+68658,349956.1766,937658.9805,6799.919568,21
+68659,350960.384,939240.0855,6648.598398,21
+68660,351762.6737,940025.0212,6951.142176,21
+68661,352119.9093,941342.9009,6628.218416,21
+68662,353455.9035,943749.1947,6821.513941,21
+68663,353783.9803,943949.2233,6758.996736,21
+68664,355008.032,946420.5458,6649.592997,21
+68665,355533.5028,946712.9803,6780.210163,21
+68666,356444.0368,948167.4223,6801.546647,21
+68667,356898.8665,949680.2164,6608.270363,21
+68668,358076.7761,951029.0775,6801.60052,21
+68669,358467.31,952648.8662,6781.340334,21
+68670,359380.5731,954281.7159,6629.645892,21
+68671,360343.0912,955195.7907,6781.422121,21
+68672,361473.9481,956315.1912,6609.251922,21
+68673,362715.425,957410.1429,6781.824015,21
+68674,363651.7784,958539.3665,6609.643194,21
+68675,365249.9442,959401.2652,6609.836725,21
+68676,366040.6362,960508.6633,6782.424441,21
+68677,367463.1813,962030.237,6568.234317,21
+68678,368552.1691,962064.4059,6631.211407,21
+68679,369946.0824,964282.888,6568.61807,21
+68680,370921.2469,963917.0869,6610.806716,21
+68681,372259.9265,965631.9073,6569.001324,21
+68682,373455.6006,966888.4129,6417.216172,21
+68683,374567.7522,966875.3348,6783.811933,21
+68684,375966.7756,968550.8158,6375.554362,21
+68685,377157.5255,969430.1145,6438.951346,21
+68686,378469.6603,970167.9343,6548.737126,21
+68687,379627.1119,971360.3528,6612.147225,21
+68688,381062.853,972017.257,6376.287737,21
+68689,382070.4654,972941.7311,6397.683282,21
+68690,383525.5513,973966.7692,6591.533912,21
+68691,384581.284,974671.4426,6376.834867,21
+68692,386159.969,975743.9412,6398.232304,21
+68693,387296.6227,976503.3016,6398.02665,21
+68694,388381.9759,977476.6555,6398.595431,21
+68695,390126.8064,978695.4825,6377.558175,21
+68696,390964.2049,980287.2557,6377.738654,21
+68697,392621.2601,981046.0422,6204.657465,21
+68698,393642.7242,981825.181,6399.316108,21
+68699,395020.1544,982246.6745,6377.855004,21
+68700,396320.9124,983852.4229,6205.537131,21
+68701,451030.1929,1053144.421,35591.11462,21
+68702,454564.2854,1058995.428,51659.14272,21
+68703,456182.0974,1061182.766,45484.41162,21
+68704,457503.467,1062533.397,47233.0679,21
+68705,459529.144,1065176.108,48037.74937,21
+68706,462868.3179,1067061.949,48384.54889,21
+68707,463254.6335,1069663.365,51013.85732,21
+68708,465424.9072,1070915.611,49684.21599,21
+68709,466473.6174,1073085.51,50791.82867,21
+68710,468574.4961,1075289.003,51129.56724,21
+68711,470005.3668,1076793.506,52131.47913,21
+68712,471265.1935,1079063.116,52861.79771,21
+68713,473571.895,1081072.12,52753.7136,21
+68714,474066.1963,1082771.785,53330.09845,21
+68715,476785.2525,1084070.061,53667.8044,21
+68716,477941.9221,1087142.392,54155.58726,21
+68717,479684.4955,1087518.799,54478.35745,21
+68718,481725.6748,1090506.035,54888.58342,21
+68719,482873.4672,1091651.767,55289.0344,21
+68720,486182.647,1093787.701,55693.90674,21
+68721,488606.207,1094794.688,55721.29027,21
+68722,489790.3975,1095928.888,56805.74881,21
+68723,491832.0529,1098026.845,56390.50735,21
+68724,493531.7415,1098558.9,56907.67386,21
+68725,495325.2632,1101222.123,57494.30916,21
+68726,496408.0592,1102782.47,57714.16956,21
+68727,499156.7956,1103888.128,57928.68535,21
+68728,501610.083,1104915.196,58313.86752,21
+68729,502863.7052,1108204.673,58883.81228,21
+68730,504778.0313,1108337.114,58897.46996,21
+68731,506237.7695,1110010.528,59053.65225,21
+68732,507445.5318,1112103.112,59663.12381,21
+68733,508431.943,1112963.828,60089.3926,21
+68734,510367.2945,1115276.049,60130.61799,21
+68735,510924.1715,1116709.662,60224.27249,21
+68736,512657.8152,1117064.148,60750.52838,21
+68737,513394.7974,1118937.094,60934.78763,21
+68738,514655.7445,1120681.757,61351.1794,21
+68739,515703.0207,1121425.53,61388.75564,21
+68740,520114.0405,1123244.435,61881.78811,21
+68741,522096.6552,1124951.828,62204.04348,21
+68742,523120.7904,1125632.201,62247.05407,21
+68743,526622.5549,1127341.431,62669.14968,21
+68744,528131.0879,1128966.016,62682.64379,21
+68745,529596.9931,1129951.272,63102.63736,21
+68746,530499.4956,1131597.213,63442.88353,21
+68747,531966.0395,1133511.697,63539.21336,21
+68748,533021.8089,1133759.116,63838.85399,21
+68749,534724.5187,1135510.176,63972.28293,21
+68750,535629.8525,1136608.335,64274.78041,21
+68751,536482.7923,1138236.343,64383.96152,21
+68752,538596.305,1138740.155,64741.69602,21
+68753,538667.8291,1140898.495,65078.32844,21
+68754,540328.6674,1141680.393,65156.58695,21
+68755,541486.1601,1143239.735,65398.13701,21
+68756,542404.6389,1144496.246,65554.77034,21
+68757,543562.5003,1145576.248,65625.35992,21
+68758,544606.6466,1146712.912,66337.56998,21
+68759,545939.4534,1148701.013,66026.78973,21
+68760,546623.1841,1150229.996,66714.03279,21
+68761,568927.323,1171384.778,92449.52441,21
+68762,571170.0065,1173674.85,93361.52458,21
+68763,571668.4311,1174841.703,100456.433,21
+68764,572289.8629,1174531.653,107459.3826,21
+68765,573684.5998,1176432.21,103130.644,21
+68766,574164.6056,1176760.9,106397.0053,21
+68767,574782.0213,1177302.14,107354.6154,21
+68768,575665.787,1178061.683,108805.7561,21
+68769,576545.7432,1178959.245,109665.4011,21
+68770,577220.1317,1179328.431,110888.8902,21
+68771,578193.623,1180317.997,112260.1597,21
+68772,578235.0339,1180602.364,112833.5255,21
+68773,579591.6133,1181723.756,114610.5643,21
+68774,579908.7442,1181972.145,115290.7598,21
+68775,580766.7729,1182527.569,116349.4472,21
+68776,581318.7587,1183021.877,117530.3895,21
+68777,582006.1913,1184246.899,118429.3503,21
+68778,582721.0959,1184362.256,119285.6829,21
+68779,583029.9701,1184969.958,121662.4653,21
+68780,584120.8466,1185358.606,122198.0896,21
+68781,584381.554,1186349.998,123143.5409,21
+68782,584980.6792,1186525.204,124147.1221,21
+68783,585237.7858,1186705.954,125368.0393,21
+68784,586517.9415,1188653.641,125878.1609,21
+68785,586335.8346,1187316.188,126880.677,21
+68786,587296.6365,1189305.885,128283.491,21
+68787,587503.7416,1188525.961,128558.7761,21
+68788,588561.5131,1190197.026,129818.8992,21
+68789,588772.1962,1189343.661,130202.3987,21
+68790,588836.2253,1191000.669,131402.8949,21
+68791,590055.5176,1191090.691,132457.9535,21
+68792,589757.3714,1191145.03,132997.5243,21
+68793,590760.244,1191932.417,133992.4014,21
+68794,591362.7174,1191795.836,134714.1708,21
+68795,591288.9517,1193274.585,135884.8365,21
+68796,602691.3154,1193025.243,136198.6715,21
+68797,599617.6566,1193420.889,137108.4098,21
+68798,600894.3531,1194201.28,138012.3213,21
+68799,602640.072,1194103.105,138887.5409,21
+68800,603974.5236,1195036.439,139519.7403,21
+68801,604806.1876,1194454.953,140389.5429,21
+68802,606554.1038,1196336.204,141048.2267,21
+68803,607290.4757,1195230,141642.2436,21
+68804,608992.9938,1196132.743,142794.9943,21
+68805,609416.3729,1197282.399,143180.9148,21
+68806,610562.3013,1196667.908,143956.4433,21
+68807,612222.0994,1197372.568,145314.2477,21
+68808,613143.2054,1197684.964,145180.4288,21
+68809,614194.5611,1197641.842,146472.3947,21
+68810,614577.6358,1199056.166,146785.0358,21
+68811,616043.4763,1198035.335,147899.971,21
+68812,617425.8998,1199576.06,148265.5189,21
+68813,616923.8574,1199021.338,149134.5925,21
+68814,619452.7595,1199683.214,150072.666,21
+68815,619464.7793,1200088.776,150386.2322,21
+68816,621979.6408,1200519.256,150964.8156,21
+68817,620509.7921,1200131.537,152663.5571,21
+68818,623632.7657,1202238.053,151954.2871,21
+68819,623182.9665,1210053.858,153904.8851,21
+68820,624945.0527,1207430.139,153417.8913,21
+68821,625076.2415,1209245.992,154521.2118,21
+68822,628858.6347,1213093.526,155229.9717,21
+68823,628916.6982,1212954.54,154872.0163,21
+68824,630406.4478,1215896.419,156314.8055,21
+68825,632399.0169,1218388.605,155921.09,21
+68826,632546.8142,1217956.21,156708.9039,21
+68827,634738.7695,1221000.171,157300.7019,21
+68828,635529.9728,1222712.848,157284.5554,21
+68829,636590.6414,1223640.087,158269.7561,21
+68830,638795.6885,1226485.399,158512.3831,21
+68831,638689.0783,1226446.688,158624.6967,21
+68832,641043.44,1228930.03,159647.61,21
+68833,641721.1639,1230532.979,159482.7042,21
+68834,643315.0197,1232580.765,159877.7656,21
+68835,644168.6031,1233555.33,160892.4104,21
+68836,645731.1951,1235127.719,160402.5967,21
+68837,645600.7424,1236939.528,161592.339,21
+68838,648745.8658,1238111.492,161917.3055,21
+68839,648814.2612,1239991.141,161405.2652,21
+68840,649739.1094,1242422.271,163000.5,21
+68841,652144.119,1242065.26,162835.0824,21
+68842,652368.7739,1245893.954,163189.2772,21
+68843,653271.2965,1245456.545,163423.9528,21
+68844,655054.6681,1248480.787,163777.8053,21
+68845,655711.8134,1248580.278,164621.9422,21
+68846,656864.3184,1251455.618,164205.9804,21
+68847,658499.5036,1251524.762,165449.8243,21
+68848,658760.3898,1253390.072,165014.5498,21
+68849,660466.3188,1255859.623,165951.5924,21
+68850,661247.1739,1256213.238,166113.104,21
+68851,662761.2281,1258097.199,166314.7729,21
+68852,663185.4905,1259729.14,166486.4636,21
+68853,664834.8317,1261486.868,167186.7542,21
+68854,666050.8967,1262084.275,167119.5588,21
+68855,665561.4932,1264567.849,168032.307,21
+68856,668654.8863,1265282.527,168012.6519,21
+68857,668589.2296,1267871.085,168182.1038,21
+68858,670387.6924,1268025.745,168633.4878,21
+68859,670335.7256,1269965.317,169268.5881,21
+68860,672779.0212,1271461.553,169256.8756,21
+68861,672931.1478,1271385.686,169366.7787,21
+68862,673480.1054,1275853.342,170453.0237,21
+68863,675663.0708,1274213.643,169717.4064,21
+68864,675673.8412,1276865.135,170995.3745,21
+68865,677983.0207,1278829.096,170394.4103,21
+68866,677307.3908,1279485.465,171319.0292,21
+68867,679508.9395,1281172.909,171229.8442,21
+68868,679738.5856,1282520.786,172244.8729,21
+68869,681298.8023,1283503.55,171559.0784,21
+68870,682127.7279,1285480.758,172690.4333,21
+68871,682765.3519,1287742.917,172274.1328,21
+68872,684195.1526,1286690.456,172842.5665,21
+68873,684909.0587,1290993.51,173722.0641,21
+68874,685912.5786,1289388.521,172819.4287,21
+68875,686785.6749,1292816.286,173888.205,21
+68876,688510.6451,1293530.57,174215.8169,21
+68877,688350.9061,1294526.779,174178.7811,21
+68878,690122.5995,1296640.086,174595.3204,21
+68879,691119.7804,1297584.876,174485.4132,21
+68880,691696.2998,1298629.598,175478.8231,21
+68881,699480.4662,1309176.684,180249.4333,21
+68882,701414.8698,1313720.338,181715.8433,21
+68883,701013.4388,1315573.094,182813.1591,21
+68884,701447.2745,1318782.133,183443.5484,21
+68885,702687.2462,1320929.062,184299.0983,21
+68886,700704.9963,1324032.999,185370.1919,21
+68887,703082.1584,1326103.541,185268.0565,21
+68888,702277.3292,1329431.797,186599.791,21
+68889,701962.7456,1331047.69,187203.0999,21
+68890,701988.963,1334015.581,187716.5192,21
+68891,703054.0428,1336155.99,188757.5281,21
+68892,702385.8542,1339659.827,189081.4445,21
+68893,702516.7225,1340609.194,189854.4634,21
+68894,702735.5789,1344331.598,190637.6564,21
+68895,702635.4524,1345570.894,191511.1855,21
+68896,702833.9508,1348722.554,191569.2284,21
+68897,702300.3715,1350116.695,192924.471,21
+68898,702948.4473,1354558.964,193250.8932,21
+68899,702565.0038,1354625.043,193871.3064,21
+68900,703464.7626,1359169.662,194879.0147,21
+68901,702534.2598,1360445.434,195015.4341,21
+68902,702441.7815,1362690.634,196416.2464,21
+68903,703224.5655,1364760.199,196071.7658,21
+68904,702514.9847,1368832.427,197537.38,21
+68905,702187.7148,1369696.656,197892.3057,21
+68906,703260.3579,1372587.778,198671.7376,21
+68907,702093.5004,1374429.425,199504.803,21
+68908,702246.3907,1377535.655,199553.5563,21
+68909,702789.7841,1378974.802,200672.199,21
+68910,702157.8953,1382041.24,201481.3567,21
+68911,701954.7766,1383685.323,201069.1376,21
+68912,702318.3147,1387328.577,203422.432,21
+68913,702353.2179,1388186.735,202429.6107,21
+68914,702406.3742,1391312.06,204080.613,21
+68915,701084.6471,1393239.768,204346.7088,21
+68916,702248.7519,1395395.284,205137.2058,21
+68917,702089.6176,1398992.491,205828.4801,21
+68918,701069.0428,1399396.637,205793.9769,21
+68919,701438.8261,1403409.243,207454.3867,21
+68920,702104.2591,1405203.309,207694.6195,21
+68921,700774.4751,1406754.146,207733.9802,21
+68922,701123.8161,1409139.864,209169.7426,21
+68923,701110.5261,1412756.028,209409.9772,21
+68924,701098.0442,1413543.262,210056.5709,21
+68925,701692.8697,1415998.978,211259.3515,21
+68926,703134.642,1419673.175,210668.1744,21
+68927,701542.2449,1420431.538,212111.8842,21
+68928,700982.6821,1422508.193,212650.9022,21
+68929,702980.5435,1426735.374,212884.2601,21
+68930,701458.1716,1426837.069,213953.1636,21
+68931,700877.8769,1430364.599,214206.0059,21
+68932,701328.153,1432647.716,215511.5664,21
+68933,701155.6594,1434385.564,215257.9018,21
+68934,701652.5513,1436678.305,216684.834,21
+68935,700274.4507,1439012.199,216451.9444,21
+68936,700684.654,1441647.598,217638.8883,21
+68937,701327.0003,1442851.076,218422.5874,21
+68938,699901.2736,1445867.174,218015.2748,21
+68939,700104.5783,1448343.417,219700.6242,21
+68940,700234.3049,1449973.183,220290.1566,21
+68941,699839.9887,1452765.452,219887.5982,21
+68942,702304.5613,1455557.483,221140.4227,21
+68943,701842.8358,1457193.772,220809.9124,21
+68944,702446.2591,1460441.016,222316.1294,21
+68945,702898.8297,1462018.623,221743.4852,21
+68946,702486.9251,1464607.847,222907.6952,21
+68947,702897.2526,1465709.829,222722.2679,21
+68948,704562.3441,1469329.75,224036.4191,21
+68949,702879.1378,1470546.372,223516.8846,21
+68950,704397.57,1472184.274,224638.0359,21
+68951,704631.2713,1475449.665,224845.2504,21
+68952,703919.2345,1477942.983,225655.7239,21
+68953,705423.5143,1478579.242,225184.0292,21
+68954,704457.8184,1481527.188,226677.5004,21
+68955,706055.0796,1483177.411,226604.5487,21
+68956,704548.2922,1486653.81,226904.9701,21
+68957,707364.0235,1487994.358,227678.0448,21
+68958,705438.4187,1489620.357,228015.7109,21
+68959,706134.1427,1491793.451,228392.915,21
+68960,706623.5448,1494839.889,228619.6408,21
+68961,707524.5239,1496070.218,229511.2981,21
+68962,706310.5592,1499743.497,229380.8603,21
+68963,708339.4098,1499471.295,230035.9545,21
+68964,706854.6335,1503469.762,230984.6337,21
+68965,708054.5483,1505588.334,230758.9086,21
+68966,708815.5089,1506495.256,231365.7665,21
+68967,708104.7481,1509497.82,232015.6614,21
+68968,708383.2172,1511375.905,231897.026,21
+68969,708872.8958,1512812.985,232884.7577,21
+68970,709103.5791,1517561.069,232896.3562,21
+68971,709546.1718,1516403.517,233693.797,21
+68972,709486.9319,1520650.533,233953.1134,21
+68973,709503.5225,1521840.96,234204.4639,21
+68974,710482.8523,1523929.794,234775.8942,21
+68975,709554.1567,1525855.475,235534.4302,21
+68976,711564.8491,1529558.696,235491.129,21
+68977,710124.3992,1529751.293,235565.7781,21
+68978,710562.7577,1533475.787,236877.0821,21
+68979,711537.9263,1534356.37,236342.9947,21
+68980,711686.7822,1538310.897,237793.2486,21
+68981,711102.7137,1540939.485,237376.6522,21
+68982,711582.6055,1541453.73,238022.9908,21
+68983,712369.2003,1545606.21,238718.0499,21
+68984,712533.3075,1546678.443,238555.0436,21
+68985,711183.1399,1548715.456,239646.9539,21
+68986,713590.8027,1551095.904,239483.8915,21
+68987,712469.0095,1553473.245,240256.3763,21
+68988,713383.7657,1554104.267,240153.946,21
+68989,713120.4014,1559010.554,241055.4681,21
+68990,713532.124,1558944.492,241418.7629,21
+68991,713155.5832,1560611.088,241398.8794,21
+68992,714881.7209,1565475.511,242728.4196,21
+68993,712830.5479,1564739.891,242966.8541,21
+68994,714592.1438,1568683.611,244349.819,21
+68995,715020.8353,1569972.484,243615.4192,21
+68996,713559.57,1572504.589,245319.7602,21
+68997,715094.032,1574353.294,245117.315,21
+68998,715266.306,1575780.929,245659.7827,21
+68999,715190.8481,1579983.795,245971.4698,21
+69000,715431.534,1579323.466,247111.258,15.6
+69001,0,0,0,15.6
+69002,0,0,0,15.6
+69003,0,814.4907605,0,15.6
+69004,0,0,0,15.6
+69005,0,0,0,15.6
+69006,0,0,1773558.674,15.6
+69007,0,0,0,15.6
+69008,0,0,0,15.6
+69009,339622.0813,0,0,15.6
+69010,0,0,0,15.6
+69011,0,0,0,15.6
+69012,0,0,0,15.6
+69013,0,0,0,15.6
+69014,0,0,0,15.6
+69015,0,0,0,15.6
+69016,0,0,0,15.6
+69017,0,0,0,15.6
+69018,0,0,0,15.6
+69019,0,0,0,15.6
+69020,0,0,0,15.6
+69021,0,40505.94848,0,15.6
+69022,0,5594.799442,0,15.6
+69023,0,441677.6238,0,15.6
+69024,0,17792.64569,0,15.6
+69025,0,13797.40176,0,15.6
+69026,0,13796.7961,0,15.6
+69027,0,14166.09095,0,15.6
+69028,0,14352.14274,0,15.6
+69029,0,14464.46258,0,15.6
+69030,0,14589.00301,0,15.6
+69031,0,14579.97585,0,15.6
+69032,0,14694.93151,0,15.6
+69033,0,14818.82362,0,15.6
+69034,0,14857.59244,0,15.6
+69035,0,14962.42863,0,15.6
+69036,0,15066.67296,0,15.6
+69037,0,450255.1426,0,15.6
+69038,0,15242.55291,0,15.6
+69039,0,15220.07419,0,15.6
+69040,0,15337.61865,0,15.6
+69041,0,15341.73655,1678195.471,15.6
+69042,0,15489.81561,0,15.6
+69043,0,15458.90368,0,15.6
+69044,0,15513.47178,0,15.6
+69045,339584.8059,15630.07713,0,15.6
+69046,0,15572.83877,0,15.6
+69047,0,450509.919,0,15.6
+69048,0,15646.57731,0,15.6
+69049,0,15746.30769,0,15.6
+69050,0,15747.40553,0,15.6
+69051,0,0,0,15.6
+69052,0,0,0,15.6
+69053,0,0,0,15.6
+69054,0,0,0,15.6
+69055,0,59205.99816,0,15.6
+69056,0,0,0,15.6
+69057,0,8320.655379,0,15.6
+69058,0,23075.92193,0,15.6
+69059,0,14533.28813,0,15.6
+69060,0,15980.79693,0,15.6
+69061,0,16200.61038,0,15.6
+69062,0,16513.71701,0,15.6
+69063,0,16312.99246,0,15.6
+69064,0,16387.03343,0,15.6
+69065,0,16386.09938,0,15.6
+69066,0,16488.89527,0,15.6
+69067,0,16518.81184,0,15.6
+69068,0,16510.83555,0,15.6
+69069,0,16666.1939,0,15.6
+69070,0,16602.41905,0,15.6
+69071,0,16676.81447,0,15.6
+69072,0,451790.6345,0,15.6
+69073,0,16741.14133,0,15.6
+69074,0,16782.75447,0,15.6
+69075,0,16791.75723,0,15.6
+69076,0,16820.13569,1591118.136,15.6
+69077,0,16895.34239,0,15.6
+69078,0,16903.05847,0,15.6
+69079,0,16873.518,0,15.6
+69080,0,17006.28057,0,15.6
+69081,339572.1668,16934.55214,0,15.6
+69082,0,451760.1317,0,15.6
+69083,0,17008.27512,0,15.6
+69084,0,17044.74574,0,15.6
+69085,0,0,0,15.6
+69086,0,0,0,15.6
+69087,0,0,0,15.6
+69088,0,0,0,15.6
+69089,0,66018.27741,0,15.6
+69090,0,0,0,15.6
+69091,0,9335.233304,0,15.6
+69092,0,24496.38179,0,15.6
+69093,0,15879.95097,0,15.6
+69094,0,17179.21042,0,15.6
+69095,0,17281.18305,0,15.6
+69096,0,17210.84452,0,15.6
+69097,0,17288.61882,0,15.6
+69098,0,17259.53087,0,15.6
+69099,0,17229.2803,0,15.6
+69100,0,17310.27014,0,15.6
+69101,0,17214.12441,0,15.6
+69102,0,17314.12403,0,15.6
+69103,0,17259.53033,0,15.6
+69104,0,17283.30429,0,15.6
+69105,0,17259.5301,0,15.6
+69106,0,17272.57357,0,15.6
+69107,0,17274.08822,0,15.6
+69108,0,17272.57331,0,15.6
+69109,0,17235.83232,0,15.6
+69110,0,17296.2703,0,15.6
+69111,0,17190.36175,1511502.075,15.6
+69112,0,17296.27,0,15.6
+69113,0,452187.61,0,15.6
+69114,0,17274.56082,0,15.6
+69115,0,17197.48259,0,15.6
+69116,0,17181.53566,0,15.6
+69117,339583.6578,17212.06966,0,15.6
+69118,0,17192.33818,0,15.6
+69119,0,0,0,15.6
+69120,0,0,0,15.6
+69121,0,0,0,15.6
+69122,0,0,0,15.6
+69123,0,69516.18356,0,15.6
+69124,0,0,0,15.6
+69125,0,12074.69029,0,15.6
+69126,0,25585.54034,0,15.6
+69127,0,17835.92051,0,15.6
+69128,0,19192.25406,0,15.6
+69129,0,19331.26884,0,15.6
+69130,0,19538.62538,0,15.6
+69131,0,19665.19367,0,15.6
+69132,0,19793.53113,0,15.6
+69133,0,20003.86949,0,15.6
+69134,0,20084.38873,0,15.6
+69135,0,20271.80244,0,15.6
+69136,0,20472.91453,0,15.6
+69137,0,20504.5746,0,15.6
+69138,0,20776.4966,0,15.6
+69139,0,20888.5102,0,15.6
+69140,0,20986.73321,0,15.6
+69141,0,21226.79231,0,15.6
+69142,0,21312.58494,0,15.6
+69143,0,21483.99403,0,15.6
+69144,0,21616.31714,0,15.6
+69145,0,21779.04082,0,15.6
+69146,0,21929.47543,1438943.561,15.6
+69147,0,22078.77455,0,15.6
+69148,0,22220.65125,0,15.6
+69149,0,22413.44388,0,15.6
+69150,0,22511.64188,0,15.6
+69151,0,22647.48652,0,15.6
+69152,0,22871.95101,0,15.6
+69153,0,0,0,15.6
+69154,339579.0653,108.5738694,0,15.6
+69155,0,0,0,15.6
+69156,0,82309.03369,0,15.6
+69157,0,6440.134069,0,15.6
+69158,0,13696.02737,0,15.6
+69159,0,32023.64925,0,15.6
+69160,0,22834.39811,0,15.6
+69161,0,24186.35072,0,15.6
+69162,0,339172.9586,0,15.6
+69163,0,42255.68821,0,15.6
+69164,0,44402.95643,0,15.6
+69165,0,134873.1272,0,15.6
+69166,0,136039.2272,0,15.6
+69167,0,114057.9044,0,15.6
+69168,0,124441.3906,0,15.6
+69169,0,125919.2926,0,15.6
+69170,0,127192.4144,0,15.6
+69171,0,129480.9318,0,15.6
+69172,0,130496.2476,0,15.6
+69173,0,132403.9096,0,15.6
+69174,0,133957.9412,0,15.6
+69175,0,135607.3413,0,15.6
+69176,0,136884.5885,0,15.6
+69177,0,138876.9624,0,15.6
+69178,0,140338.7401,0,15.6
+69179,0,142192.0357,0,15.6
+69180,0,143273.0351,0,15.6
+69181,0,143427.4699,1372685.223,15.6
+69182,0,142460.4398,0,15.6
+69183,0,141883.0409,0,15.6
+69184,0,141500.4975,0,15.6
+69185,0,141152.9952,0,15.6
+69186,0,113529.3488,0,15.6
+69187,0,114020.0963,0,15.6
+69188,0,113020.1907,0,15.6
+69189,0,207402.2857,0,15.6
+69190,0,124283.1285,0,15.6
+69191,339574.1883,120311.0812,0,15.6
+69192,0,37574.37456,0,15.6
+69193,0,24103.73653,0,15.6
+69194,0,25638.69406,0,15.6
+69195,0,25520.31632,0,15.6
+69196,0,25404.55794,0,15.6
+69197,0,25293.79612,0,15.6
+69198,0,25219.20371,0,15.6
+69199,0,427017.5652,0,15.6
+69200,0,44398.52545,0,15.6
+69201,0,75003.53673,0,15.6
+69202,0,148472.5684,0,15.6
+69203,0,140930.7388,0,15.6
+69204,0,122689.1369,0,15.6
+69205,0,128406.0285,0,15.6
+69206,0,126955.0641,0,15.6
+69207,0,126407.2033,0,15.6
+69208,0,125452.4077,0,15.6
+69209,0,124132.07,0,15.6
+69210,0,123943.5551,0,15.6
+69211,0,122269.6361,0,15.6
+69212,0,121954.7255,0,15.6
+69213,0,120150.29,0,15.6
+69214,0,120169.2308,0,15.6
+69215,0,118466.8673,0,15.6
+69216,0,117822.1089,1312129.748,15.6
+69217,0,116907.3231,0,15.6
+69218,0,115723.739,0,15.6
+69219,0,92070.68868,0,15.6
+69220,0,91495.09321,0,15.6
+69221,0,89868.14929,0,15.6
+69222,0,171451.698,0,15.6
+69223,0,93231.62734,0,15.6
+69224,0,98908.93606,0,15.6
+69225,0,117866.5326,0,15.6
+69226,0,106374.0908,0,15.6
+69227,0,107172.6781,0,15.6
+69228,339572.7752,105390.41,0,15.6
+69229,0,21307.93238,0,15.6
+69230,0,21105.80652,0,15.6
+69231,0,21015.91442,0,15.6
+69232,0,20757.86081,0,15.6
+69233,0,20645.79607,0,15.6
+69234,0,20523.58694,0,15.6
+69235,0,20280.78748,0,15.6
+69236,0,20127.418,0,15.6
+69237,0,19979.75883,0,15.6
+69238,0,19752.79263,0,15.6
+69239,0,19593.75128,0,15.6
+69240,0,19241.86541,0,15.6
+69241,0,19720.47854,0,15.6
+69242,0,20137.90095,0,15.6
+69243,0,20410.73663,0,15.6
+69244,0,20700.80161,0,15.6
+69245,0,456047.1058,0,15.6
+69246,0,21315.31815,0,15.6
+69247,0,21733.70863,0,15.6
+69248,0,21955.81491,0,15.6
+69249,0,22334.54986,0,15.6
+69250,0,22601.76321,0,15.6
+69251,0,22850.15796,1256735.821,15.6
+69252,0,332383.4787,0,15.6
+69253,0,39425.7982,0,15.6
+69254,0,54136.26135,0,15.6
+69255,0,211275.885,0,15.6
+69256,0,131068.6165,0,15.6
+69257,0,121652.7892,0,15.6
+69258,0,151689.9042,0,15.6
+69259,0,143577.6828,0,15.6
+69260,0,148272.5421,0,15.6
+69261,0,150730.7813,0,15.6
+69262,0,153650.0679,0,15.6
+69263,39661.18297,156089.6012,0,15.6
+69264,2288.348261,159867.655,0,15.6
+69265,341104.1031,161467.3776,0,15.6
+69266,10147.37016,165032.1573,0,15.6
+69267,11422.86209,167596.0064,0,15.6
+69268,8514.532218,170570.7072,0,15.6
+69269,9377.58268,172996.4292,0,15.6
+69270,9568.092996,175964.6741,0,15.6
+69271,9568.09457,179280.6599,0,15.6
+69272,9648.885438,181577.6849,0,15.6
+69273,9769.358198,184290.8983,0,15.6
+69274,9754.154079,187369.2735,0,15.6
+69275,9924.325003,190234.1193,0,15.6
+69276,9936.517889,627759.2484,0,15.6
+69277,10043.65948,195312.3363,0,15.6
+69278,10067.7813,199106.7895,0,15.6
+69279,10191.73771,201115.203,0,15.6
+69280,10242.77373,203790.669,0,15.6
+69281,10293.70538,207493.7636,0,15.6
+69282,10416.69246,32192.88931,0,15.6
+69283,10440.45871,32516.33728,0,15.6
+69284,10545.67431,32787.00237,0,15.6
+69285,10629.22388,0,0,15.6
+69286,10646.32192,700252.5716,1206117.102,15.6
+69287,10774.18564,153267.1777,0,15.6
+69288,10823.06996,103553.5702,0,15.6
+69289,10900.36354,304017.3948,0,15.6
+69290,10961.89061,225143.5245,0,15.6
+69291,11070.45557,234394.083,0,15.6
+69292,11120.73022,237950.5948,0,15.6
+69293,0,240663.1125,0,15.6
+69294,0,243676.0055,0,15.6
+69295,0,246080.9128,0,15.6
+69296,0,248834.0875,0,15.6
+69297,0,251554.9019,0,15.6
+69298,0,254305.9137,0,15.6
+69299,0,257094.212,0,15.6
+69300,56850.42354,259854.0963,0,15.6
+69301,0,257296.6838,0,15.6
+69302,341955.638,255905.2573,0,15.6
+69303,13965.70935,253500.2937,0,15.6
+69304,14145.01838,251346.2451,0,15.6
+69305,10907.40944,249457.3708,0,15.6
+69306,11950.98905,247051.4335,0,15.6
+69307,12027.64733,680433.6743,0,15.6
+69308,12007.71283,242713.6305,0,15.6
+69309,12103.1319,241520.9827,0,15.6
+69310,12081.60919,238534.1984,0,15.6
+69311,12139.61322,237313.3151,0,15.6
+69312,12171.97904,234823.0475,0,15.6
+69313,12208.42698,232284.9493,0,15.6
+69314,12203.90786,230895.2224,0,15.6
+69315,12271.12475,228504.9646,0,15.6
+69316,12292.92418,33990.83896,0,15.6
+69317,12313.33186,0,0,15.6
+69318,12324.65221,0,0,15.6
+69319,12402.00236,750552.4494,0,15.6
+69320,12402.00866,41681.34106,0,15.6
+69321,12433.66396,149326.7221,1159900.646,15.6
+69322,12451.65834,277577.8528,0,15.6
+69323,12499.42012,202814.4423,0,15.6
+69324,12517.43958,209900.997,0,15.6
+69325,12564.70411,208915.6769,0,15.6
+69326,12572.86372,206424.6392,0,15.6
+69327,12591.62763,204515.595,0,15.6
+69328,12686.49718,201930.1659,0,15.6
+69329,12622.07154,200126.6927,0,15.6
+69330,0,197767.6013,0,15.6
+69331,0,196017.9695,0,15.6
+69332,0,193115.9765,0,15.6
+69333,0,191582.7483,0,15.6
+69334,0,188936.1202,0,15.6
+69335,58137.19733,187275.7373,0,15.6
+69336,0,184600.9359,0,15.6
+69337,2333.896534,183053.8582,0,15.6
+69338,18209.95709,614976.3647,0,15.6
+69339,352979.2955,178722.129,0,15.6
+69340,12399.39571,175934.4134,0,15.6
+69341,13047.79743,174267.0703,0,15.6
+69342,13025.55407,171695.3706,0,15.6
+69343,13100.67345,169891.9773,0,15.6
+69344,13089.85553,167680.2769,0,15.6
+69345,13135.16063,165116.3653,0,15.6
+69346,13164.91231,163232.1218,0,15.6
+69347,13183.52018,161286.6003,0,15.6
+69348,13199.28247,158380.419,0,15.6
+69349,13251.06003,0,0,15.6
+69350,13239.43968,0,0,15.6
+69351,13286.19436,0,0,15.6
+69352,13310.19595,94932.7145,0,15.6
+69353,13301.40295,11052.92294,0,15.6
+69354,13396.77096,7519.917974,0,15.6
+69355,13345.26882,550071.1406,0,15.6
+69356,13396.77089,22784.81158,1117694.955,15.6
+69357,13445.99614,62055.68318,0,15.6
+69358,13433.88223,167248.945,0,15.6
+69359,13480.86715,144582.8638,0,15.6
+69360,13491.68561,124202.927,0,17.8
+69361,906647.8987,1399781.765,0,17.8
+69362,452161.8597,1023662.249,0,17.8
+69363,63384.03954,214378.7035,0,17.8
+69364,241785.3825,337114.7423,0,17.8
+69365,226531.2708,479769.48,0,17.8
+69366,184388.5481,404657.1721,0,17.8
+69367,279118.4964,397590.3691,0,17.8
+69368,229534.0918,401145.5728,0,17.8
+69369,211428.2267,400421.0566,0,17.8
+69370,231175.4318,402877.5125,0,17.8
+69371,224910.4193,401848.3134,0,17.8
+69372,225005.5993,403272.9763,0,17.8
+69373,224293.8764,404641.7915,0,17.8
+69374,224964.0765,404423.6021,0,17.8
+69375,224452.3923,405909.1261,0,17.8
+69376,564357.688,406726.8998,0,17.8
+69377,224570.5324,407733.3309,0,17.8
+69378,224268.3458,408840.2633,0,17.8
+69379,225020.4456,409695.7043,0,17.8
+69380,224364.6925,410872.7742,0,17.8
+69381,224793.2595,412278.0559,0,17.8
+69382,224662.5441,342488.4866,0,17.8
+69383,224770.6959,344056.011,0,17.8
+69384,225330.7049,479909.9475,0,17.8
+69385,224905.1785,82980.82888,0,17.8
+69386,225344.8977,86533.2644,0,17.8
+69387,225073.5265,956578.3445,0,17.8
+69388,225617.7975,258451.1379,0,17.8
+69389,225661.6989,417264.6867,0,17.8
+69390,225766.2559,445182.5986,1079044.8,17.8
+69391,33761.99535,411043.4009,0,17.8
+69392,33697.62229,411831.5649,0,17.8
+69393,33697.62304,413016.2701,0,17.8
+69394,33697.62387,414953.6498,0,17.8
+69395,711072.2807,415390.6296,0,17.8
+69396,76938.84948,417683.8611,0,17.8
+69397,148651.864,467371.8083,0,17.8
+69398,240523.9805,419840.7455,0,17.8
+69399,272459.9541,430835.5069,0,17.8
+69400,223083.3809,442994.6049,0,17.8
+69401,220781.2923,439674.6692,0,17.8
+69402,232189.3275,441502.6528,0,17.8
+69403,228999.8844,443168.9835,0,17.8
+69404,228488.8339,444826.8683,0,17.8
+69405,228910.2708,446144.3685,0,17.8
+69406,229716.8629,448195.781,0,17.8
+69407,228842.393,449635.7289,0,17.8
+69408,230016.3779,450937.4013,0,17.8
+69409,229429.4126,453166.1902,0,17.8
+69410,230676.4793,454742.3268,0,17.8
+69411,569308.9767,455788.6939,0,17.8
+69412,230788.7761,457949.6765,0,17.8
+69413,230554.072,459781.5608,0,17.8
+69414,231018.3606,386467.637,0,17.8
+69415,231406.6711,388062.7327,0,17.8
+69416,231358.4297,523057.9812,0,17.8
+69417,231702.065,101456.6461,0,17.8
+69418,231892.5193,85344.3849,0,17.8
+69419,232418.2313,1108760.329,0,17.8
+69420,232145.3387,281088.4633,0,20
+69421,1089046.277,2181494.237,163956.818,20
+69422,1061680.775,1453425.489,7888.502523,20
+69423,692968.8468,972731.4061,20123.52454,20
+69424,643482.9546,788227.3035,1075896.954,20
+69425,118683.7761,1107152.72,25795.34464,20
+69426,130232.6007,919512.7344,26100.16174,20
+69427,930882.3005,910722.8619,26111.63297,20
+69428,649288.5855,904284.2517,26051.86377,20
+69429,418419.1974,993498.7813,26118.78531,20
+69430,548959.0857,938105.8964,25993.54486,20
+69431,519341.7341,934144.7384,26025.58842,20
+69432,525230.8706,942640.5366,26046.29763,20
+69433,515373.1076,938440.6212,25953.883,20
+69434,511233.9596,938881.5184,25976.33625,20
+69435,512448.6494,936877.307,26006.81917,20
+69436,507617.103,936971.077,25881.41111,20
+69437,508805.9076,936817.4273,25969.50315,20
+69438,507054.9354,936800.0643,25922.93703,20
+69439,506156.6014,934708.2153,25898.00457,20
+69440,505453.4572,937537.2834,25895.69636,20
+69441,504697.8359,934694.5434,25916.54611,20
+69442,504445.5189,936619.326,25926.04404,20
+69443,503394.8747,935482.4025,25810.60374,20
+69444,502864.2671,936152.1669,25944.50221,20
+69445,502411.8759,935033.8859,25873.14728,20
+69446,841802.5271,798612.9909,25884.34226,20
+69447,501259.8609,1003749.568,25869.66056,20
+69448,501263.7575,943255.6001,25867.36133,20
+69449,508962.7609,170543.2423,25865.74674,20
+69450,511598.6901,1263639.997,25908.57671,20
+69451,491203.7679,770060.2086,0,20
+69452,494439.7811,977331.9003,0,20
+69453,492388.1925,941946.0422,0,20
+69454,494589.6883,937056.7271,0,20
+69455,494733.5868,939779.8372,0,20
+69456,536832.3924,940391.6545,0,20
+69457,93305.4983,940027.6677,0,20
+69458,109924.851,1375509.129,1028683.011,20
+69459,921431.0636,901467.8973,339.380322,20
+69460,499939.8377,902581.4276,139058.9909,20
+69461,405473.2152,995231.6377,3060.72456,20
+69462,527129.1499,938459.026,13800.31868,20
+69463,533613.6584,939379.6614,39224.35933,20
+69464,499716.2917,946371.4916,23198.76126,20
+69465,511256.9511,946813.9848,25732.80364,20
+69466,498250.2903,944888.075,25808.94062,20
+69467,501266.5777,946905.6266,25751.26445,20
+69468,499018.8244,947332.6259,25816.10338,20
+69469,504367.2813,947603.4561,25791.7765,20
+69470,534292.5589,948746.9099,25461.90405,20
+69471,515064.0394,950003.915,25471.35431,20
+69472,522059.8798,950333.4724,25470.74765,20
+69473,522152.0451,950266.8091,25422.41523,20
+69474,523435.7942,952846.5322,25476.86034,20
+69475,523427.1742,951169.6074,25465.1996,20
+69476,525015.7792,953450.0981,25484.30762,20
+69477,524805.9063,818652.257,25461.14031,20
+69478,526401.6264,1013092.317,25469.15216,20
+69479,526883.3902,966305.8118,25468.45346,20
+69480,526501.8518,171653.1022,25466.248,21
+69481,2633335.739,2938097.806,1992079.877,21
+69482,1828462.108,2357078.679,73612.38537,21
+69483,550401.7715,768037.2798,159948.6981,21
+69484,526884.8379,820631.7823,312361.4224,21
+69485,578321.9359,1229130.093,263159.7748,21
+69486,928690.5851,1148890.417,244889.7137,21
+69487,655496.7623,1070217.083,251214.7793,21
+69488,715597.8502,1094889.697,251600.8109,21
+69489,712303.3833,1090782.144,251178.7452,21
+69490,711413.5028,1088489.652,252469.4851,21
+69491,706016.7444,1087088.308,252221.2376,21
+69492,704719.7829,1084328.299,253499.8448,21
+69493,702927.7445,1081903.392,252769.6385,21
+69494,699840.1556,1080810.027,253902.166,21
+69495,696811.0318,1076765.072,254347.293,21
+69496,696636.3315,1077892.885,254178.1201,21
+69497,693019.3017,1073816.329,255641.1911,21
+69498,691747.9095,1072906.906,254945.8988,21
+69499,688720.4103,1071849.629,256406.0103,21
+69500,687807.47,1069958.662,256097.6283,21
+69501,686431.8274,1067337.595,256849.2002,21
+69502,684045.2553,1066809.686,257306.4938,21
+69503,682157.673,1063826.591,257821.0383,21
+69504,681735.03,1064235.3,258339.3905,21
+69505,679557.0349,1060829.774,258371.4972,21
+69506,677669.4011,1060745.319,259441.9951,21
+69507,677167.0109,1059059.252,259617.4562,21
+69508,675946.4575,1057698.824,260200.8407,21
+69509,672704.4988,1056902.67,260534.6022,21
+69510,673658.8063,1054964.81,261118.9374,21
+69511,670980.5632,1054033.453,261092.4379,21
+69512,670642.4809,1053052.93,262437.9904,21
+69513,669357.2245,1051120.052,261614.7327,21
+69514,667489.8797,1051818.741,263238.3232,21
+69515,666913.2739,1048014.473,263268.359,21
+69516,665179.8806,1048434.839,263663.7307,21
+69517,665132.1885,1047729.858,264208.5985,21
+69518,663126.0995,1046295.738,264017.0568,21
+69519,661983.2782,1044476.055,265740.0468,21
+69520,661488.0412,1042990.304,264942.8862,21
+69521,660418.0835,1044236.145,266250.6832,21
+69522,659471.0257,1042337.53,265861.0552,21
+69523,658389.4512,1040579.598,266896.3009,21
+69524,657244.8682,1041366.907,267163.3107,21
+69525,657007.2374,1038523.275,267251.541,21
+69526,655153.7969,1040009.442,268012.6173,21
+69527,654426.4995,1037275.191,268291.3818,21
+69528,655036.7979,1036913.417,268995.3684,21
+69529,651851.7501,1036383.962,268400.5423,21
+69530,651811.7646,1035576.554,269916.5152,21
+69531,652385.315,1034528.05,269818.944,21
+69532,649755.754,1034358.344,270030.8497,21
+69533,650088.6948,1033116.131,270838.5652,21
+69534,649086.7659,1032573.997,271055.3746,21
+69535,647933.2373,1030089.175,271092.9861,21
+69536,647822.495,1030386.712,271864.8534,21
+69537,645285.298,1027817.015,272229.381,21
+69538,647089.0038,1027904.881,271915.3712,21
+69539,645220.0232,1026075.674,273530.6449,21
+69540,643572.2673,1025489.894,272558.6549,21
+69541,1051430.93,2254955.345,273772.8957,21
+69542,1048623.272,2252046.036,273886.1346,21
+69543,1048853.173,2251001.93,275018.5066,21
+69544,1047611.241,2248195.939,274912.2206,21
+69545,1047044.825,2245406.562,275364.9326,21
+69546,1047219.519,2244897.77,276408.0795,21
+69547,1046402.575,2241540.79,276528.329,21
+69548,1046780.715,2239403.282,276964.9555,21
+69549,1043812.901,2238233.329,277538.4114,21
+69550,1046367.365,2234718.038,278324.0218,21
+69551,1044233.254,2235047.695,278246.3374,21
+69552,1044569.485,2229150.397,278829.9778,21
+69553,1042793.06,2231324.614,279795.556,21
+69554,1043324.61,2226293.133,279297.0824,21
+69555,1042183.627,2226601.727,281320.8432,21
+69556,1039415.502,2223197.895,280163.7988,21
+69557,1039693.159,2221617.886,281744.2618,21
+69558,1038795.957,2219158.536,281862.9691,21
+69559,1038343.773,2641862.683,282269.9784,21
+69560,1035912.545,2215594.875,282407.8216,21
+69561,1037451.711,2212828.529,283797.1349,21
+69562,1035051.772,2212361.246,283330.213,21
+69563,1036472.977,2209023.703,284148.3576,21
+69564,1033855.801,2208589.989,284811.4229,21
+69565,1035876.083,2206064.229,284362.7543,21
+69566,1032904.454,2206948.722,285782.3419,21
+69567,1033086.331,2204321.348,285253.6282,21
+69568,1034102.522,2201774.524,286345.5945,21
+69569,1032402.21,2201735.222,286681.6834,21
+69570,1032274.49,2200338.642,286949.3351,21
+69571,1031975.11,2198602.495,287224.3338,21
+69572,1030773.359,2198645.107,287826.2541,21
+69573,1031551.76,2193615.008,287897.8773,21
+69574,1029510.41,2196047.15,287567.4558,21
+69575,1028937.437,2189724.957,288654.2839,21
+69576,1030058.929,2191684.556,288829.7595,21
+69577,1027347.313,2188074.87,288523.355,21
+69578,1027564.529,2188264.708,288942.1306,21
+69579,1028304.684,2183852.552,289872.6616,21
+69580,1025891.36,2184031.163,289342.2327,21
+69581,1025469.461,2181383.309,291346.0023,21
+69582,1025690.716,2604978.846,289714.468,21
+69583,1024306.898,2177690.157,291980.9719,21
+69584,1025386.861,2176259.255,290384.0487,21
+69585,1023340.91,2174737.939,291320.0176,21
+69586,1022702.617,2172966.513,291677.0683,21
+69587,1022866.118,2173429.496,291554.0707,21
+69588,1021665.69,2167803.178,291874.8134,21
+69589,1022733.434,2168348.501,291698.8083,21
+69590,1019745.22,2167082.733,292569.8331,21
+69591,1022232.136,2164582.053,292395.8124,21
+69592,1018673.482,2162300.683,292248.5712,21
+69593,1019645.035,2161957.715,292905.2549,21
+69594,1019792.872,2160438.23,292794.6726,21
+69595,1017845.116,2156926.481,292984.9611,21
+69596,1017827.743,2157714.122,292981.357,21
+69597,1017865.891,2153674.347,293314.6971,21
+69598,1015660.245,2152559.132,293373.1521,21
+69599,1018001.62,2152641.429,293135.1546,21
+69600,1015050.455,2149220.651,293818.3383,21
+69601,955154.1923,2085944.74,251762.8762,21
+69602,949305.0142,2081190.865,249791.0513,21
+69603,947226.5587,2077476.479,248518.6194,21
+69604,946042.2885,2076070.647,248926.2065,21
+69605,942438.0609,2072206.194,247647.9992,21
+69606,942477.9654,2072784.255,248066.9769,21
+69607,939811.1272,2067323.949,246935.8274,21
+69608,937267.1641,2067827.047,246688.3455,21
+69609,937471.1205,2064320.571,246750.3635,21
+69610,933805.1991,2062564.737,245944.8034,21
+69611,933833.0594,2060816.294,246263.7903,21
+69612,931019.099,2059691.697,245268.4883,21
+69613,930487.7457,2055074.242,245319.7513,21
+69614,928477.2918,2055089.961,245019.0351,21
+69615,926359.2994,2052901.101,244609.9663,21
+69616,925472.9703,2050789.074,244439.3411,21
+69617,923798.1481,2047588.354,243987.5072,21
+69618,921780.9017,2047951.661,243862.889,21
+69619,921375.5139,2044484.746,243598.284,21
+69620,919222.7463,2042287.23,243180.9992,21
+69621,917920.6064,2041031.007,241628.415,21
+69622,916210.7679,2039967.88,241924.9684,21
+69623,915084.729,2035746.58,241041.3842,21
+69624,913473.894,2036509.871,241622.1888,21
+69625,912133.3239,2032139.991,240673.8018,21
+69626,910790.0555,2030384.994,240341.2321,21
+69627,908588.1999,2029958.97,240408.1311,21
+69628,909341.1188,2026774.325,239748.2093,21
+69629,905242.7926,2024942.998,240040.1981,21
+69630,905122.1174,2023441.476,238944.9143,21
+69631,904618.7183,2021342.751,238714.2855,21
+69632,901698.4095,2018934.262,239113.0732,21
+69633,901227.7576,2018723.014,237908.5485,21
+69634,898929.3224,2014633.662,237550.6993,21
+69635,899221.5919,2014316.995,237162.4652,21
+69636,895640.9042,2011402.261,236947.7777,21
+69637,896583.9567,2010246.364,236213.5367,21
+69638,893278.8008,2007275.734,236258.646,21
+69639,894097.2401,2006826.652,234783.9804,21
+69640,890898.2495,2004369.336,235504.8314,21
+69641,890008.5632,2001758.685,234977.1786,21
+69642,888459.6129,2001607.853,233425.986,21
+69643,888674.3716,1997140.802,233563.6465,21
+69644,885867.4184,1997499.814,233188.6032,21
+69645,884284.825,1994297.829,232500.8825,21
+69646,883722.2461,1993183.153,232324.7254,21
+69647,882685.4591,1991549.464,231509.2798,21
+69648,880215.1063,1988936.152,231154.9561,21
+69649,880697.3649,1986935.673,230827.1474,21
+69650,877987.2368,1984658.618,229875.32,21
+69651,876873.6702,1983618.289,229424.4961,21
+69652,875837.3446,1977254.023,229944.3328,21
+69653,874676.5546,1974868.409,228271.5339,21
+69654,873269.7779,1972742.588,228293.3067,21
+69655,871269.5265,1970089.05,227443.1924,21
+69656,871288.4176,1967774.202,227546.8925,21
+69657,868811.7622,1964630.137,226890.5069,21
+69658,868432.4653,1962219.83,225913.0582,21
+69659,867060.4099,1959652.205,225644.4035,21
+69660,866262.3321,1954532.677,225275.7621,21
+69661,864637.4797,1953331.973,224660.3693,21
+69662,862623.2286,1948484.137,223636.9289,21
+69663,863408.8785,1917284.192,223130.4815,21
+69664,860127.7679,1910075.581,222025.9347,21
+69665,860446.7696,1904378.687,221332.2442,21
+69666,859624.3138,1898662.326,221665.4968,21
+69667,857891.3304,1896301.193,219339.7954,21
+69668,858215.8906,1890662.487,219931.0178,21
+69669,856258.8566,1885338.847,218658.7527,21
+69670,856515.5619,1882229.105,217887.5942,21
+69671,854664.7396,1877519.874,217305.2647,21
+69672,854289.0632,1872028.687,216553.3427,21
+69673,852641.3102,1870165.143,215783.4873,21
+69674,852610.999,1863659.946,214869.4111,21
+69675,851476.0848,1860546.012,214715.0782,21
+69676,851083.173,1856265.229,213401.7285,21
+69677,848995.5757,1850874.449,213268.4441,21
+69678,849199.2563,1847987.987,211874.0474,21
+69679,849016.3033,1842924.882,211539.4899,21
+69680,846076.9052,1838747.165,210274.5358,21
+69681,846339.7738,1834422.43,210596.3109,21
+69682,846127.0221,1831384.314,208608.2742,21
+69683,845170.6284,1825196.884,208637.6437,21
+69684,842795.8159,1822059.311,207917.5267,21
+69685,843714.9447,1817816.476,206826.0195,21
+69686,841942.1311,1812463.566,206132.4889,21
+69687,841245.2238,1808966.812,205536.1304,21
+69688,840811.1407,1804363.626,204625.6935,21
+69689,839155.6389,1799263.031,203867.0959,21
+69690,838554.8402,1795734.221,203313.969,21
+69691,838464.9863,1790298.235,202346.4688,21
+69692,837012.2014,1786478.396,202088.9705,21
+69693,836278.8909,1782310.182,200958.2587,21
+69694,835324.7723,1778435.606,201068.1622,21
+69695,834150.1189,1772486.629,199724.9866,21
+69696,834242.4243,1769680.786,200103.8327,21
+69697,832501.3462,1764548.432,198539.4525,21
+69698,832059.9819,1761552.147,198082.3411,21
+69699,831125.5424,1756051.186,198144.7471,21
+69700,829928.5238,1752008.676,197763.1205,21
+69701,829615.5787,1748577.36,197748.4514,21
+69702,828806.0379,1744629.898,196674.0356,21
+69703,826405.7336,1739474.461,196828.6477,21
+69704,827601.3782,1735606.687,195266.051,21
+69705,825921.326,1731544.288,195461.3327,21
+69706,824891.0335,1727679.095,194612.8208,21
+69707,824444.2732,1722681.95,193867.185,21
+69708,823246.5813,1721087.179,194170.9824,21
+69709,823087.7816,1714156.565,191909.5998,21
+69710,821195.7119,1712041.477,193236.4136,21
+69711,820514.8605,1707296.735,191138.6241,21
+69712,820833.3754,1703458.64,191548.7149,21
+69713,818101.5285,1700297.876,190607.8848,21
+69714,818910.2916,1695774.818,190005.424,21
+69715,816795.4096,1691840.819,189500.9819,21
+69716,817135.48,1689558.168,188947.6475,21
+69717,815242.0909,1684114.303,188005.0419,21
+69718,815636.0524,1682106.986,187959.4938,21
+69719,813791.6409,1676744.541,187502.4488,21
+69720,813011.2793,1673846.522,186307.1773,21
+69721,812405.1762,1675085.298,189808.7201,21
+69722,811895.2393,1673795.378,188685.6502,21
+69723,810584.6365,1672482.247,189571.6691,21
+69724,810263.182,1672448.826,188778.6188,21
+69725,808368.0718,2093590.905,188515.5619,21
+69726,808423.3185,1669192.461,187868.7199,21
+69727,806750.1126,1667633.737,188242.0448,21
+69728,805688.0257,1666112.245,187890.5271,21
+69729,805906.9318,1664169.513,187348.9573,21
+69730,802663.3947,1664174.066,186907.1295,21
+69731,804202.4131,1662398.251,187297.4373,21
+69732,801752.3862,1660600.61,186362.1275,21
+69733,801320.4896,1658899.44,186149.1022,21
+69734,800139.1916,1657154.081,186129.8233,21
+69735,799355.7208,1656830.958,186202.5765,21
+69736,798226.5811,1654231.966,185108.2126,21
+69737,797585.6441,1652954.168,185323.9862,21
+69738,795547.6443,1652871.4,184964.6888,21
+69739,796716.5589,1650447.153,184658.9697,21
+69740,793713.2409,2073638.413,184441.5325,21
+69741,792686.7213,1648313.695,182938.9814,21
+69742,793151.7111,1648041.886,182818.5299,21
+69743,790586.2895,1644633.192,182565.7462,21
+69744,791133.1295,1644935.77,182606.3063,21
+69745,789635.1886,1643317.946,181865.4702,21
+69746,787699.3037,1641290.825,181326.1069,21
+69747,788551.4016,1641040.705,181709.1779,21
+69748,786321.1418,1639825.073,181066.5103,21
+69749,785921.148,1637979.064,180946.6027,21
+69750,784048.1288,1636877.101,180628.2857,21
+69751,784545.7559,1635214.613,180502.863,21
+69752,780320.5534,1635469.555,179695.1756,21
+69753,781324.0291,1633012.81,180465.8093,21
+69754,777518.3051,1632734.363,179629.6201,21
+69755,775656.4772,2055860.24,179602.8395,21
+69756,772816.7026,1631376.757,179332.0819,21
+69757,772749.351,1628789.953,179470.4384,21
+69758,769217.6674,1629887.887,178904.7791,21
+69759,768594.4955,1627061.255,179375.5442,21
+69760,767376.4525,1626798.289,178149.0742,21
+69761,764580.8112,1626652.816,178829.8506,21
+69762,764428.5179,1626347.365,178751.358,21
+69763,761333.6131,1623716.529,177651.3249,21
+69764,761304.5996,1624312.235,178536.0981,21
+69765,756729.3866,1622392.964,177971.715,21
+69766,755742.0524,1622776.121,177736.3866,21
+69767,751668.88,1620399.971,177778.1485,21
+69768,752669.7942,1621672.506,177389.7729,21
+69769,749569.257,1618550.632,177233.2048,21
+69770,747929.1032,2043936.859,177767.6827,21
+69771,746348.9883,1617469.185,176897.6333,21
+69772,744365.5888,1617474.777,176768.6151,21
+69773,742352.893,1616942.798,176831.2147,21
+69774,741608.2011,1615519.751,176737.302,21
+69775,739063.3562,1615894.001,176243.7373,21
+69776,736828.06,1613363.698,176854.9855,21
+69777,736497.8506,1613675.992,175648.5405,21
+69778,732546.3598,1612921.745,176389.3681,21
+69779,733471.5232,1612488.268,176185.313,21
+69780,728806.0537,1610668.467,175615.0609,21
+69781,726011.4919,1608520.366,172322.5186,21
+69782,722332.9744,1605414.574,172423.9865,21
+69783,720323.7371,1601911.944,171970.777,21
+69784,716284.8492,1598987.524,171614.9095,21
+69785,716923.4636,1596247.639,171691.0405,21
+69786,711404.3685,1595252.341,171590.8459,21
+69787,709821.1889,1589535.946,171458.507,21
+69788,708547.5723,1588177.091,171003.7492,21
+69789,705180.6498,1585678.05,171523.812,21
+69790,702794.8312,1583115.337,170547.7015,21
+69791,701823.946,1578840.369,171416.911,21
+69792,698359.4945,1577874.582,170618.2678,21
+69793,696054.9221,1573822.827,170120.3253,21
+69794,693652.4808,1571853.201,170765.8723,21
+69795,691464.0277,1568873.365,170189.4423,21
+69796,687736.7317,1565875.528,170727.2218,21
+69797,686502.4551,1563984.782,169526.0455,21
+69798,683780.8132,1560497.304,170154.4118,21
+69799,680823.9232,1557924.594,170019.7672,21
+69800,678021.1789,1555660.026,169551.5937,21
+69801,676608.8504,1552165.151,169072.8653,21
+69802,673029.3311,1550229.473,170333.7829,21
+69803,670741.0778,1546734.854,168897.6388,21
+69804,668120.0701,1545365.237,169325.8479,21
+69805,665260.887,1541239.006,169238.5672,21
+69806,663187.5469,1539381.088,168925.2644,21
+69807,657227.5413,1536100.708,168791.1955,21
+69808,655368.7916,1533796.213,168671.4702,21
+69809,652545.0481,1531087.263,168644.9351,21
+69810,648654.2743,1528501.967,168433.7969,21
+69811,646585.8277,1526231.826,168763.1375,21
+69812,644182.4691,1522123.991,169096.4373,21
+69813,642322.6718,1520857.576,168339.6767,21
+69814,638155.378,1518342.985,169670.3282,21
+69815,636852.9825,1514349.324,169269.4863,21
+69816,634037.7606,1513769.663,169777.2613,21
+69817,632992.3299,1509188.661,169681.2872,21
+69818,630333.6925,1508529.455,170036.9377,21
+69819,630547.4464,1505565.612,170472.2145,21
+69820,627963.7114,1502058.085,170758.1542,21
+69821,627815.8394,1499735.259,170998.4538,21
+69822,624586.2131,1497238.08,170710.7088,21
+69823,624983.3203,1494876.56,171915.3551,21
+69824,622182.1087,1491982.484,171550.6657,21
+69825,621487.7502,1489372.459,172210.0092,21
+69826,620289.9468,1487718.939,172130.6921,21
+69827,618102.8728,1483765.494,172449.2791,21
+69828,617652.7664,1482213.763,173293.9323,21
+69829,615499.6606,1479932.558,173277.6923,21
+69830,614129.744,1475990.623,173369.5243,21
+69831,613962.6285,1476090.223,173823.7762,21
+69832,610592.2379,1470942.081,174202.2278,21
+69833,611185.3599,1469478.279,174923.8195,21
+69834,608088.5096,1467659.779,174576.5335,21
+69835,607847.3775,1463528.221,175447.4363,21
+69836,605425.4322,1463735.464,175613.9738,21
+69837,605332.607,1460724.277,175997.6023,21
+69838,602660.6678,1459345.902,176615.3158,21
+69839,602316.7301,1455397.379,176171.9457,21
+69840,600538.0592,1456637.027,177654.6885,21
+69841,658059.5168,1513190.638,224573.4979,21
+69842,661097.9997,1518503.291,228153.0659,21
+69843,660431.6972,1517251.096,227814.5597,21
+69844,659724.5975,1516360.139,310027.3409,21
+69845,661347.071,1516340.072,285599.2098,21
+69846,658529.8743,1515228.701,283300.3232,21
+69847,659427.9378,1515312.243,290266.8838,21
+69848,658761.2929,1513530.919,291223.3254,21
+69849,658146.7741,1513564.821,295532.3389,21
+69850,657445.6171,1511775.309,293266.3742,21
+69851,657159.3403,1512065.177,296022.9087,21
+69852,657317.9832,1510468.901,298211.6858,21
+69853,657031.4642,1510322.735,299860.6518,21
+69854,655564.9351,1507951.991,299057.8907,21
+69855,656700.369,1507418.648,302195.1259,21
+69856,655092.6356,1508172.503,301720.6993,21
+69857,654921.485,1504804.306,305176.6708,21
+69858,655088.9875,1504681.142,303537.8337,21
+69859,654894.0729,1503517.185,307796.9352,21
+69860,653305.8787,1503064.818,305832.0555,21
+69861,653600.2807,1501743.643,310485.5007,21
+69862,653455.6219,1499330.755,308030.6211,21
+69863,652440.0277,1500406.193,311152.518,21
+69864,652426.1767,1497918.24,310395.899,21
+69865,651494.3269,1497787.413,313635.8275,21
+69866,651610.4348,1495446.416,313156.9431,21
+69867,650618.4671,1495324.613,313265.3915,21
+69868,650625.1677,1493648.173,316266.7397,21
+69869,649944.2527,1493269.841,317633.2686,21
+69870,648933.1948,1490393.737,316391.4657,21
+69871,649043.9329,1490983.265,317916.6101,21
+69872,647657.0503,1488521.347,320442.8033,21
+69873,647584.3075,1488906.485,318220.3741,21
+69874,646049.2014,1485244.397,322132.3829,21
+69875,646711.0697,1487431.905,320301.9569,21
+69876,644709.3173,1483030.393,321830.1677,21
+69877,643403.8364,1484410.778,322395.4914,21
+69878,643272.1295,1482708.11,322298.8666,21
+69879,642674.3606,1481313.079,323555.5294,21
+69880,640699.6454,1479275.423,324358.4937,21
+69881,640891.3469,1479653.499,326039.1919,21
+69882,639948.9959,1477587.603,323522.3256,21
+69883,638670.764,1477324.765,326386.6441,21
+69884,639046.0687,1475079.981,327273.8196,21
+69885,636555.3192,1474722.41,325823.3096,21
+69886,636138.274,1473717.405,329601.0518,21
+69887,636783.9878,1471000.984,325798.1321,21
+69888,634684.1025,1472442.114,330986.4184,21
+69889,633975.7013,1470041.258,328026.6551,21
+69890,634140.0555,1468953.306,330948.4363,21
+69891,632002.3933,1468666.723,329360.0174,21
+69892,632664.5402,1466221.464,331291.9052,21
+69893,630973.8532,1466105.696,330823.4491,21
+69894,629866.2412,1465239.094,332711.0215,21
+69895,630967.635,1463183.508,331081.5643,21
+69896,628249.3993,1463149.876,333096.7619,21
+69897,628000.7432,1461708.038,334318.9296,21
+69898,628748.4716,1459782.403,332430.8849,21
+69899,626657.3393,1460241.081,334645.4867,21
+69900,625665.4807,1458915.497,334120.0534,21
+69901,625931.1574,1456972.035,333055.9344,21
+69902,624155.8713,1458777.965,337698.5742,21
+69903,623122.0369,1456818.31,335575.9657,21
+69904,622988.1147,1456664.676,337502.6928,21
+69905,620128.0292,1457693.188,336241.4975,21
+69906,621241.0951,1455663.183,339817.0116,21
+69907,618311.8851,1455781.425,338522.856,21
+69908,618995.2892,1455245.422,340147.2679,21
+69909,617336.6554,1455322.771,341035.7962,21
+69910,615320.7214,1454261.816,340561.9519,21
+69911,616024.2167,1454330.971,343195.548,21
+69912,614395.4989,1452828.319,340815.4747,21
+69913,613188.8795,1454053.505,345442.197,21
+69914,612835.009,1452625.475,342959.9487,21
+69915,611264.024,1452071.966,343948.4696,21
+69916,610438.9717,1452231.856,345769.0344,21
+69917,609378.4569,1451570.275,345749.9859,21
+69918,608608.7295,1450611.014,346285.0065,21
+69919,606550.606,1451261.458,345882.149,21
+69920,607229.4324,1449810.734,348854.9122,21
+69921,605089.9643,1450021.68,348154.8533,21
+69922,604126.6799,1449156.093,348753.4051,21
+69923,603742.7776,1449004.699,350881.2813,21
+69924,601739.4101,1448235.237,348756.6323,21
+69925,602162.1684,1448627.156,351378.615,21
+69926,599757.8537,1447455.072,351308.9492,21
+69927,598633.2233,1447035.915,353288.8107,21
+69928,599773.0359,1447565.259,352062.6345,21
+69929,597313.747,1445786.951,353111.0535,21
+69930,596305.7957,1447184.654,354322.876,21
+69931,597230.5702,1445360.499,354142.8723,21
+69932,594152.9898,1445795.636,355822.2203,21
+69933,593343.9305,1444908.702,354351.3987,21
+69934,594249.5501,1445430.521,356459.1854,21
+69935,591670.0452,1444029.557,357821.3975,21
+69936,589062.4972,1444763.952,355245.724,21
+69937,588964.1326,1442936.208,359750.7541,21
+69938,585671.2104,1444133.488,357313.3563,21
+69939,583790.4533,1443183.786,358838.1464,21
+69940,583094.1288,1443927.872,358615.3837,21
+69941,581664.833,1442355.669,361389.0841,21
+69942,579677.2276,1441455.252,358661.0886,21
+69943,579052.0229,1443426.379,361378.2487,21
+69944,577197.0567,1440741.058,360946.8462,21
+69945,575483.6055,1443070.28,363371.8873,21
+69946,574917.336,1440650.42,361172.2313,21
+69947,572778.9993,1440587.006,363487.0077,21
+69948,571318.4673,1440936.924,363739.3677,21
+69949,570334.4552,1440321.961,363238.0688,21
+69950,568524.0702,1440328.288,364562.0531,21
+69951,566447.1541,1439807.494,365179.8622,21
+69952,565582.8418,1439244.707,366034.1542,21
+69953,563702.1661,1439684.519,364027.9045,21
+69954,562407.8646,1438438.931,367806.0544,21
+69955,560545.0038,1438984.927,365753.3394,21
+69956,559158.9679,1438941.556,366732.4246,21
+69957,557498.3016,1436777.707,367908.5291,21
+69958,556397.1081,1439112.321,368345.8505,21
+69959,554088.4146,1436711.03,368120.2334,21
+69960,552932.7375,1437742.422,368756.486,21
+69961,552691.13,1436195.234,370981.8935,21
+69962,551521.7717,1436498.831,370156.167,21
+69963,551236.0587,1435679.562,371046.294,21
+69964,550126.9745,1435398.511,373327.9198,21
+69965,549568.0877,1434092.496,371960.4956,21
+69966,548361.1433,1433328.98,370929.6311,21
+69967,547935.6911,1432627.886,375485.5726,21
+69968,546552.1296,1432552.381,370588.0543,21
+69969,546111.6899,1431078.58,375431.8366,21
+69970,545332.0388,1430628.773,371475.9138,21
+69971,542984.6496,1429251.02,376212.7677,21
+69972,543633.4817,1429748.078,373384.1899,21
+69973,542393.4341,1427715.393,374674.9537,21
+69974,541592.9016,1427154.619,374937.5678,21
+69975,540742.1972,1426422.562,374312.9209,21
+69976,539818.7776,1426017.574,376544.266,21
+69977,538039.8907,1425099.617,375096.0603,21
+69978,537991.1311,1422758.231,376163.1458,21
+69979,537004.2591,1423753.072,376116.5834,21
+69980,535966.8311,1422802.39,376560.2224,21
+69981,535465.5759,1420009.023,376503.1167,21
+69982,533144.5484,1420762.874,377321.7085,21
+69983,533577.4698,1419737.742,376868.0112,21
+69984,532644.0856,1418762.9,377389.8323,21
+69985,531404.7696,1417679.019,378062.943,21
+69986,530063.7798,1417046.417,380047.8413,21
+69987,529983.58,1415354.839,377463.2864,21
+69988,528797.2955,1415137.18,377667.0215,21
+69989,527529.8645,1414145.78,379372.1467,21
+69990,527341.9942,1413457.845,379533.0804,21
+69991,526246.953,1411679.017,379739.6,21
+69992,525393.782,1412010.475,380542.2697,21
+69993,525524.9075,1409436.248,377264.8052,21
+69994,523580.4369,1410797.756,382342.4697,21
+69995,524765.7678,1408159.006,378489.4349,21
+69996,523302.5675,1408367.279,380411.0505,21
+69997,522388.3989,1406331.686,379842.9015,21
+69998,522436.6976,1406460.66,381643.0926,21
+69999,521342.2113,1403894.643,379404.5208,21
+70000,521229.2886,1405233.855,380912.2424,21
+70001,521107.9114,1403437.538,379705.8354,21
+70002,519547.9753,1402570.806,382327.8315,21
+70003,520064.3612,1401545.493,378619.9432,21
+70004,519399.9128,1400394.331,382150.8488,21
+70005,517344.7093,1402971.143,379850.3702,21
+70006,519263.7207,1404102.179,382365.6341,21
+70007,517309.3738,1403027.84,379012.2436,21
+70008,517899.4924,1403255.442,381664.0128,21
+70009,517059.0675,1403058.421,380631.7056,21
+70010,516166.6942,1402515.112,382429.9422,21
+70011,516537.3415,1404332.229,380965.3469,21
+70012,515298.5454,1401733.459,380007.8658,21
+70013,515750.6276,1404129.175,381563.1231,21
+70014,515761.1268,1403109.331,382170.5841,21
+70015,513099.9598,1401938.24,380768.5408,21
+70016,516066.8116,1404081.219,381510.0893,21
+70017,513650.3834,1403348.261,382772.5707,21
+70018,514315.1064,1402060.775,380228.5629,21
+70019,513983.6535,1403961.252,382638.6722,21
+70020,513040.9299,1402746.839,379467.6075,21
+70021,513822.8209,1403872.812,382883.0784,21
+70022,514866.3493,1405732.297,382075.0823,21
+70023,514226.9818,1406180.104,380174.9916,21
+70024,515237.0038,1406877.156,383836.628,21
+70025,516642.0991,1407736.417,381451.3264,21
+70026,515188.5775,1410616.449,381080.6164,21
+70027,517708.87,1409106.108,382927.5301,21
+70028,516427.6948,1411883.396,382777.0947,21
+70029,517688.6355,1411845.962,382736.8048,21
+70030,517973.364,1413699.412,380176.353,21
+70031,518162.0366,1414659.265,383508.7869,21
+70032,520734.3398,1415748.66,382012.554,21
+70033,518817.4355,1415571.834,381433.7573,21
+70034,519838.2478,1419204.894,382521.4545,21
+70035,521101.9498,1417408.62,381587.7451,21
+70036,521104.7781,1421544.61,383736.3755,21
+70037,522793.8615,1421286.17,381341.8224,21
+70038,521528.3852,1422325.334,383249.6993,21
+70039,521431.2125,1425307.541,380166.143,21
+70040,523489.2601,1424720.125,383124.0914,21
+70041,521964.8466,1426686.112,382992.2961,21
+70042,523124.4381,1427722.997,381138.2734,21
+70043,523108.1842,1429013.826,381919.9938,21
+70044,523012.5553,1431218.557,382808.2367,21
+70045,525096.3288,1431332.414,381770.4323,21
+70046,523734.8361,1433023.183,383470.0962,21
+70047,525915.6648,1433753.722,381592.1283,21
+70048,524420.3655,1437076.698,380860.3384,21
+70049,526764.1201,1436454.698,384246.2586,21
+70050,525233.8496,1437366.332,380852.9768,21
+70051,527724.5896,1440160.652,382078.9227,21
+70052,526457.016,1441145.253,382479.4116,21
+70053,528605.6523,1441751.379,384120.7809,21
+70054,528103.4276,1444897.23,382483.1158,21
+70055,529654.617,1443771.334,382709.6038,21
+70056,528546.1045,1447855.061,383738.7563,21
+70057,530555.7432,1447842.067,385232.2772,21
+70058,531488.3393,1448908.493,384169.325,21
+70059,529870.5514,1452060.977,384987.408,21
+70060,532630.8822,1452034.468,384579.4926,21
+70061,532709.78,1454175.43,384985.2372,21
+70062,532840.4128,1454889.185,387281.9467,21
+70063,533936.7564,1457867.779,384458.5993,21
+70064,533834.2068,1458420.625,389374.289,21
+70065,535340.4222,1460234.808,385673.2818,21
+70066,534563.4058,1460883.232,386942.831,21
+70067,536862.5485,1463242.809,389540.6514,21
+70068,536950.5693,1465025.876,385739.6983,21
+70069,537495.9971,1465612.255,389906.1276,21
+70070,537464.8339,1468120.017,387566.5333,21
+70071,539133.2969,1469152.267,390092.7479,21
+70072,539206.9817,1471051.913,390090.4608,21
+70073,540141.8288,1472344.111,388291.2078,21
+70074,540835.5028,1474166.798,392293.2434,21
+70075,541621.1206,1475272.553,390331.0529,21
+70076,541884.5854,1476329.599,390534.9552,21
+70077,543140.4574,1480326.501,391297.5339,21
+70078,543082.1591,1479176.389,392455.5579,21
+70079,545176.7839,1482374.867,391386.9773,21
+70080,544744.3932,1482755.286,394706.4851,21
+70081,545656.8335,1485668.236,391653.5756,21
+70082,546808.5489,1485747.677,393888.7223,21
+70083,548160.3491,1487662.102,394343.6254,21
+70084,548920.2094,1489142.987,396022.2388,21
+70085,549387.8574,1490380.718,393115.3768,21
+70086,551415.6503,1492404.427,397559.8455,21
+70087,551440.5472,1493071.893,397467.6002,21
+70088,552350.6458,1495419.572,395769.791,21
+70089,555224.6692,1495651.257,398655.9957,21
+70090,553502.8796,1498361.253,398456.9458,21
+70091,557049.9001,1499737.508,399046.527,21
+70092,556430.381,1501067.576,401529.734,21
+70093,557268.6652,1502552.245,399500.1333,21
+70094,560018.6597,1503389.012,400704.0506,21
+70095,559306.1066,1505149.754,402335.515,21
+70096,561337.9264,1507726.432,402639.2944,21
+70097,561946.3177,1507976.784,403523.9083,21
+70098,562608.2353,1510241.765,403887.1963,21
+70099,564846.7289,1510492.199,403938.2642,21
+70100,565618.9486,1513612.553,404962.2116,21
+70101,566068.0734,1514560.949,406533.5816,21
+70102,567347.0613,1514385.206,405506.7361,21
+70103,569377.2887,1518995.159,407987.2737,21
+70104,568784.5267,1518605.786,407770.4283,21
+70105,571001.5728,1520227.512,407150.6386,21
+70106,572533.4134,1522698.154,409177.5,21
+70107,571997.1259,1523192.207,411075.1996,21
+70108,575159.8209,1525742.933,410042.1752,21
+70109,574912.2091,1527625.361,411072.9205,21
+70110,576804.4811,1527139.942,412095.4815,21
+70111,578185.9725,1530699.25,411590.8115,21
+70112,577983.6121,1529365.6,413370.3447,21
+70113,580877.1876,1532591.688,413811.0905,21
+70114,581661.8917,1531998.903,413823.1576,21
+70115,582962.7117,1533166.497,414326.1214,21
+70116,584700.0164,1534035.236,416385.4552,21
+70117,585644.5887,1535425.046,415114.0722,21
+70118,587829.4281,1534963.878,417094.9785,21
+70119,589225.5317,1536570.329,415158.8857,21
+70120,590736.7475,1537710.468,417707.0204,21
+70121,593059.8587,1537266.903,417867.5065,21
+70122,592936.5485,1539148.586,417920.857,21
+70123,595079.416,1538870.611,418660.767,21
+70124,597481.6261,1541387.866,420156.7317,21
+70125,597794.7169,1540033.787,418905.9466,21
+70126,600022.8543,1540601.105,421259.4627,21
+70127,602553.7196,1542904.336,419532.2608,21
+70128,602832.6521,1543135.4,422989.6537,21
+70129,605822.7241,1542215.018,420519.6111,21
+70130,605947.3867,1544094.023,423533.8998,21
+70131,609484.891,1544757.645,421049.1507,21
+70132,608842.1471,1544694.183,423919.5733,21
+70133,612820.0301,1545788.852,425430.8591,21
+70134,613838.4416,1546575.711,422294.2266,21
+70135,614954.9913,1546173.547,426111.4519,21
+70136,617453.8246,1547694.492,423425.8798,21
+70137,618109.8468,1547032.571,427857.6955,21
+70138,621004.19,1548969.398,423635.6658,21
+70139,622253.3604,1548838.369,428714.9262,21
+70140,624397.3335,1548171.491,426235.7979,21
+70141,283384.3456,880287.0022,0,21
+70142,284642.886,871080.4172,0,21
+70143,286162.8761,872147.7127,0,21
+70144,287404.1862,873376.5179,0,21
+70145,288991.6282,875164.3419,0,21
+70146,290703.831,877324.085,0,21
+70147,292502.4282,879832.1234,0,21
+70148,294350.0281,882271.8835,0,21
+70149,296218.3206,884856.8465,0,21
+70150,298088.1536,887430.0876,0,21
+70151,299947.2962,890055.1982,0,21
+70152,301787.6635,892405.0784,0,21
+70153,303681.2955,894770.4638,0,21
+70154,305393.3849,897042.8791,0,21
+70155,307153.9578,899322.1137,0,21
+70156,308885.305,901302.0467,0,21
+70157,310587.7839,903292.8772,0,21
+70158,312262.4137,905197.0836,0,21
+70159,313910.6748,907125.6798,0,21
+70160,315534.2889,908768.9545,0,21
+70161,317135.097,910449.0832,0,21
+70162,318714.9381,912066.9638,0,21
+70163,320353.6218,913879.8345,0,21
+70164,321820.3359,915906.8103,0,21
+70165,323349.8178,917079.9381,0,21
+70166,324865.7238,918658.8693,0,21
+70167,326369.1049,920237.8102,0,21
+70168,327860.901,921530.4154,0,21
+70169,329342.0233,922934.3743,0,21
+70170,330813.3642,925297.0916,0,21
+70171,332275.7796,926359.8627,0,21
+70172,333730.0637,927715.6607,0,21
+70173,335255.0142,929134.8893,0,21
+70174,336616.6287,930454.8168,0,21
+70175,338049.6955,931906.6392,0,21
+70176,339476.3544,933096.7203,0,21
+70177,340896.9129,934408.5209,0,21
+70178,342311.701,935676.0755,0,21
+70179,343720.6276,937050.6935,0,21
+70180,345124.0562,938209.1886,0,21
+70181,346522.7071,939449.7403,0,21
+70182,347918.4924,940853.6287,0,21
+70183,349392.4426,942460.2881,0,21
+70184,350709.3351,943447.8645,0,21
+70185,352105.2444,944770.9006,0,21
+70186,353500.938,946032.4783,0,21
+70187,354896.0525,947374.6436,0,21
+70188,356290.1464,948504.3907,0,21
+70189,357682.6664,949715.9694,0,21
+70190,359073.0562,950952.1762,0,21
+70191,360460.8748,952265.0301,0,21
+70192,361845.8316,953371.9171,0,21
+70193,363307.4276,954552.8291,0,21
+70194,364606.6323,955757.1167,0,21
+70195,365982.4261,958570.4313,0,21
+70196,367355.2061,961198.6748,0,21
+70197,368725.0561,961767.291,0,21
+70198,370092.0699,963689.7338,0,21
+70199,371456.3389,965426.1576,0,21
+70200,372817.9539,966739.0246,0,21
+70201,0,0,0,21
+70202,0,0,0,21
+70203,0,0,0,21
+70204,0,52680.75846,0,21
+70205,0,9348.935339,0,21
+70206,0,14948.36266,0,21
+70207,0,23393.02723,0,21
+70208,0,19549.68576,1855315.818,21
+70209,0,20277.69412,0,21
+70210,0,20580.13017,0,21
+70211,0,20961.28827,0,21
+70212,0,21240.67561,0,21
+70213,0,21497.74809,0,21
+70214,0,339498.7297,0,21
+70215,0,42340.91989,0,21
+70216,0,44287.65629,0,21
+70217,0,146235.7637,0,21
+70218,0,109999.3384,0,21
+70219,0,110935.027,0,21
+70220,0,115603.6577,0,21
+70221,0,117338.166,0,21
+70222,0,119056.4122,0,21
+70223,0,121260.0052,0,21
+70224,0,122875.335,0,21
+70225,0,124764.5469,0,21
+70226,339577.7781,131725.5657,0,21
+70227,0,138410.8608,0,21
+70228,0,138279.7844,0,21
+70229,0,141737.9096,0,21
+70230,0,145287.1998,0,21
+70231,0,147661.544,0,21
+70232,0,151088.496,0,21
+70233,0,153412.8278,0,21
+70234,0,128852.1757,0,21
+70235,0,131201.2631,0,21
+70236,0,211095.5659,0,21
+70237,0,148520.0475,0,21
+70238,0,165149.8784,0,21
+70239,0,172782.3816,0,21
+70240,0,172684.6525,0,21
+70241,0,175110.8282,0,21
+70242,0,178112.5453,0,21
+70243,0,180179.0866,0,21
+70244,0,30102.49445,0,21
+70245,0,30440.16277,1752435.996,21
+70246,0,30653.59614,0,21
+70247,0,30871.25442,0,21
+70248,0,546955.4011,0,21
+70249,0,120577.2614,0,21
+70250,0,122622.4425,0,21
+70251,0,255590.4587,0,21
+70252,0,196487.6448,0,21
+70253,0,206070.8435,0,21
+70254,0,209155.7357,0,21
+70255,0,210790.3547,0,21
+70256,0,214383.4045,0,21
+70257,0,215735.4396,0,21
+70258,0,218682.6653,0,21
+70259,0,220732.2195,0,21
+70260,0,223134.7562,0,21
+70261,0,225571.9497,0,21
+70262,0,225761.8738,0,21
+70263,0,226149.5172,0,21
+70264,0,225684.4302,0,21
+70265,0,226300.34,0,21
+70266,0,191777.3587,0,21
+70267,0,191590.199,0,21
+70268,0,288705.4425,0,21
+70269,0,213768.1245,0,21
+70270,0,218557.1076,0,21
+70271,339574.1594,231860.6932,0,21
+70272,0,225957.5865,0,21
+70273,0,226603.7206,0,21
+70274,0,226389.9105,0,21
+70275,0,226540.2833,0,21
+70276,0,226345.8667,0,21
+70277,0,226419.2278,0,21
+70278,0,34105.19393,0,21
+70279,0,34066.96198,0,21
+70280,0,34051.64614,0,21
+70281,0,639666.4627,0,21
+70282,0,113278.1164,1658693.376,21
+70283,0,166029.2482,0,21
+70284,0,274615.7744,0,21
+70285,0,219971.0663,0,21
+70286,0,226059.9279,0,21
+70287,0,225763.3086,0,21
+70288,0,225077.5463,0,21
+70289,0,225981.1977,0,21
+70290,0,225119.5147,0,21
+70291,0,224846.9802,0,21
+70292,0,224739.1546,0,21
+70293,0,224524.1098,0,21
+70294,0,224210.9807,0,21
+70295,0,224161.3348,0,21
+70296,0,223898.5913,0,21
+70297,0,223677.4934,0,21
+70298,0,189739.4645,0,21
+70299,0,189913.4312,0,21
+70300,0,284433.232,0,21
+70301,0,209566.4356,0,21
+70302,0,214024.1196,0,21
+70303,0,227957.6162,0,21
+70304,0,221216.0249,0,21
+70305,0,221442.2527,0,21
+70306,0,221207.0387,0,21
+70307,0,221014.9801,0,21
+70308,0,220267.259,0,21
+70309,0,220631.6825,0,21
+70310,0,219601.0662,0,21
+70311,0,32858.28559,0,21
+70312,0,32860.8433,0,21
+70313,0,32730.10262,0,21
+70314,0,628075.6762,0,21
+70315,0,91753.01444,0,21
+70316,339550.8184,168689.1087,0,21
+70317,0,262716.7598,0,21
+70318,0,211162.011,0,21
+70319,0,217349.4184,1573073.134,21
+70320,0,216286.756,0,21
+70321,0,217204.2014,0,21
+70322,0,217302.1896,0,21
+70323,0,217522.339,0,21
+70324,0,218147.7812,0,21
+70325,0,217744.4571,0,21
+70326,0,218681.0671,0,21
+70327,0,218711.9989,0,21
+70328,0,218720.8348,0,21
+70329,0,219552.9129,0,21
+70330,0,186990.6208,0,21
+70331,0,188672.5068,0,21
+70332,0,283215.6756,0,21
+70333,0,208336.6761,0,21
+70334,0,214276.2656,0,21
+70335,0,228633.6195,0,21
+70336,0,222373.5892,0,21
+70337,26813.06937,222817.7666,0,21
+70338,0,222113.7244,0,21
+70339,0,222282.2041,0,21
+70340,5763.178994,222512.7088,0,21
+70341,6641.447193,222342.1008,0,21
+70342,4581.817533,223405.74,0,21
+70343,5255.806094,222599.3007,0,21
+70344,5311.170232,32873.19861,0,21
+70345,5327.967378,32916.33685,0,21
+70346,5404.541234,32934.22568,0,21
+70347,5421.218088,661465.4221,0,21
+70348,5492.462731,85860.44553,0,21
+70349,5513.851459,170105.5305,0,21
+70350,5584.615044,275408.481,0,21
+70351,5611.655806,217680.2055,0,21
+70352,5972.820873,225836.2837,0,21
+70353,6031.030334,225611.5779,0,21
+70354,6074.027338,226274.5341,0,21
+70355,6180.016999,226032.2815,0,21
+70356,6274.042574,226381.7085,1494860.032,21
+70357,6347.222737,226558.7254,0,21
+70358,6436.161999,226645.5674,0,21
+70359,6496.58784,226612.5565,0,21
+70360,6631.392786,227325.9966,0,21
+70361,346188.5426,226706.0467,0,21
+70362,6773.175103,194425.1944,0,21
+70363,6838.734017,195222.752,0,21
+70364,6919.592062,292981.4247,0,21
+70365,7000.091007,213835.5394,0,21
+70366,7080.237117,220784.3928,0,21
+70367,0,235766.3534,0,21
+70368,0,228332.2386,0,21
+70369,0,229975.1738,0,21
+70370,0,228850.369,0,21
+70371,0,228714.9798,0,21
+70372,0,229446.4876,0,21
+70373,33983.52105,229286.5019,0,21
+70374,0,229149.9438,0,21
+70375,209.931351,229608.2599,0,21
+70376,11041.09345,229812.0029,0,21
+70377,8477.702069,33396.25781,0,21
+70378,7486.294674,33370.48016,0,21
+70379,8070.397112,33392.64701,0,21
+70380,8187.467033,691011.5097,0,21
+70381,8174.101548,91430.90614,0,21
+70382,8199.571796,163149.5781,0,21
+70383,8248.297868,287601.5346,0,21
+70384,8527.372941,222084.0486,0,21
+70385,8746.832581,229986.9885,0,21
+70386,8630.260611,230261.3782,0,21
+70387,8763.373692,230015.6933,0,21
+70388,8800.926299,230328.5462,0,21
+70389,8852.768212,229541.9935,0,21
+70390,8912.643681,229782.4745,0,21
+70391,8957.47287,230080.4333,0,21
+70392,8988.973325,228868.3815,0,21
+70393,9083.359583,229815.3646,1423480.202,21
+70394,9061.012307,195914.8276,0,21
+70395,9174.34179,195914.8281,0,21
+70396,9161.159659,292954.3134,0,21
+70397,9260.97431,213371.1284,0,21
+70398,9264.415844,221760.2314,0,21
+70399,9298.748247,236075.5176,0,21
+70400,9397.116493,229172.3488,0,21
+70401,9370.037199,229348.6149,0,21
+70402,9453.762848,229456.4285,0,21
+70403,0,229074.4705,0,21
+70404,0,228943.3197,0,21
+70405,0,228943.6215,0,21
+70406,339530.7729,226920.2792,0,21
+70407,0,226376.0284,0,21
+70408,35802.80888,226839.3504,0,21
+70409,2055.143717,225945.9148,0,21
+70410,2935.882233,32599.58231,0,21
+70411,13420.3706,32510.68104,0,21
+70412,9919.342083,32451.01527,0,21
+70413,9555.272931,676216.3808,0,21
+70414,9934.495201,89295.16988,0,21
+70415,9958.225077,159306.6622,0,21
+70416,9984.988081,280049.8398,0,21
+70417,10052.61365,216243.5291,0,21
+70418,10046.10657,223583.9198,0,21
+70419,10098.74849,224089.6795,0,21
+70420,10134.78343,222739.0616,0,21
+70421,10152.20089,223250.5321,0,21
+70422,10193.15259,222485.1625,0,21
+70423,10210.5416,221904.4301,0,21
+70424,10247.67857,221897.2803,0,21
+70425,10254.56253,221271.9647,0,21
+70426,10321.3274,189150.3117,0,21
+70427,10305.62778,188779.0609,0,21
+70428,10342.10263,281087.8905,0,21
+70429,10401.86812,203955.9137,0,21
+70430,10389.41115,211986.9319,1358335.45,21
+70431,10443.1072,224297.8001,0,21
+70432,10455.54067,217744.295,0,21
+70433,10479.90127,218198.1266,0,21
+70434,10508.94768,217276.8246,0,21
+70435,10542.38879,217008.7786,0,21
+70436,10543.4426,217602.3534,0,21
+70437,10574.46312,216908.8293,0,21
+70438,0,216576.3441,0,21
+70439,0,215833.8702,0,21
+70440,0,215580.7608,0,15.6
+70441,0,215959.3387,0,15.6
+70442,0,216443.1694,0,15.6
+70443,40561.75366,31354.70429,0,15.6
+70444,2340.146948,31250.38252,0,15.6
+70445,3703.410037,31400.19738,0,15.6
+70446,15363.42385,659164.7453,0,15.6
+70447,10481.10303,73173.38189,0,15.6
+70448,10692.36989,167117.5839,0,15.6
+70449,10911.36703,270833.008,0,15.6
+70450,10925.33937,213517.0495,0,15.6
+70451,350474.9025,221887.9485,0,15.6
+70452,10977.08787,221956.9707,0,15.6
+70453,10977.08685,222833.0048,0,15.6
+70454,11032.74339,223386.8151,0,15.6
+70455,11008.98294,223430.8257,0,15.6
+70456,11060.36956,223595.8593,0,15.6
+70457,11083.78545,223859.3655,0,15.6
+70458,11050.8298,192237.8059,0,15.6
+70459,11113.06891,192588.3527,0,15.6
+70460,11123.69021,287249.5805,0,15.6
+70461,11113.27776,209650.5744,0,15.6
+70462,11169.18711,219362.2429,0,15.6
+70463,11152.77691,232414.5807,0,15.6
+70464,11209.55428,226778.956,0,15.6
+70465,11172.10363,227835.8445,0,15.6
+70466,11219.96916,228556.8212,0,15.6
+70467,11214.94351,228866.9364,1298796.434,15.6
+70468,11258.46654,229117.5534,0,15.6
+70469,11239.12034,230142.2643,0,15.6
+70470,11291.58191,230253.3384,0,15.6
+70471,11263.62473,230902.9712,0,15.6
+70472,11334.78378,231574.627,0,15.6
+70473,0,231674.0635,0,15.6
+70474,0,232650.7734,0,15.6
+70475,0,232540.9612,0,15.6
+70476,0,33010.5555,0,15.6
+70477,0,33122.62345,0,15.6
+70478,45176.37579,33151.53225,0,15.6
+70479,900.4399747,720905.7456,0,15.6
+70480,4568.737763,102973.3147,0,15.6
+70481,16518.47021,150599.0913,0,15.6
+70482,10896.36582,303031.336,0,15.6
+70483,11364.01141,226886.9933,0,15.6
+70484,11538.66384,237580.9431,0,15.6
+70485,11538.22881,238275.0991,0,15.6
+70486,11557.33987,238310.2217,0,15.6
+70487,11576.13553,239125.8265,0,15.6
+70488,11580.98279,239798.8661,0,15.6
+70489,11556.93844,239724.634,0,15.6
+70490,11590.32006,206593.2335,0,15.6
+70491,11618.84165,207133.809,0,15.6
+70492,11599.01853,306230.6474,0,15.6
+70493,11614.29707,226860.8108,0,15.6
+70494,11620.30217,234041.0928,0,15.6
+70495,11656.03135,249425.1107,0,15.6
+70496,351127.8589,242272.5366,0,15.6
+70497,11648.82745,243603.3514,0,15.6
+70498,11697.80902,244758.4646,0,15.6
+70499,11609.08712,244590.2476,0,15.6
+70500,11696.99569,244863.1315,0,15.6
+70501,11717.00008,244580.8709,0,15.6
+70502,11740.12993,242988.5796,0,15.6
+70503,11780.60373,241803.4177,0,15.6
+70504,11847.50395,241048.5423,1244502.584,15.6
+70505,11861.12922,239413.1687,0,15.6
+70506,11897.82903,238611.3858,0,15.6
+70507,11929.78334,237511.1213,0,15.6
+70508,0,235824.8128,0,15.6
+70509,0,33467.19606,0,15.6
+70510,0,33243.9203,0,15.6
+70511,0,33201.94353,0,15.6
+70512,46259.749,725095.0461,0,15.6
+70513,715.2563021,97840.88439,0,15.6
+70514,4857.93865,136972.7806,0,15.6
+70515,17616.87946,299258.1235,0,15.6
+70516,11510.51235,216110.9198,0,15.6
+70517,12115.56123,226208.5539,0,15.6
+70518,12361.05765,225120.1066,0,15.6
+70519,12334.50768,224101.611,0,15.6
+70520,12417.56212,222804.2758,0,15.6
+70521,12437.73601,221698.0332,0,15.6
+70522,12459.99124,188536.8391,0,15.6
+70523,12505.83194,187354.7999,0,15.6
+70524,12545.62461,278311.5268,0,15.6
+70525,12559.82097,200265.1532,0,15.6
+70526,12630.63293,209446.2546,0,15.6
+70527,12621.61583,219771.2167,0,15.6
+70528,12690.64838,212809.0603,0,15.6
+70529,12694.69704,212092.7064,0,15.6
+70530,12767.59221,211409.336,0,15.6
+70531,12752.0649,209417.6087,0,15.6
+70532,12825.51875,208987.8171,0,15.6
+70533,12828.84947,206873.8565,0,15.6
+70534,12889.78002,206521.8694,0,15.6
+70535,12886.61831,204524.4184,0,15.6
+70536,12972.29888,204439.2015,0,15.6
+70537,12966.19502,201810.3701,0,15.6
+70538,12989.42945,201899.4537,0,15.6
+70539,13063.23229,199464.1163,0,15.6
+70540,13035.17228,199555.5245,0,15.6
+70541,352653.5796,197371.0169,1194879.904,15.6
+70542,0,29451.56265,0,15.6
+70543,0,29232.38642,0,15.6
+70544,0,29170.17909,0,15.6
+70545,0,29052.87178,0,15.6
+70546,52499.23413,666908.1526,0,15.6
+70547,258.8999906,57414.83028,0,15.6
+70548,5679.526386,93742.32723,0,15.6
+70549,19930.40465,260286.8803,0,15.6
+70550,12209.29781,176683.9742,0,15.6
+70551,13445.32238,184885.3976,0,15.6
+70552,13512.76417,184194.7564,0,15.6
+70553,13546.01804,183008.0145,0,15.6
+70554,13577.47383,153707.0718,0,15.6
+70555,13605.46607,152542.7839,0,15.6
+70556,13646.34743,231259.469,0,15.6
+70557,13646.34429,158185.987,0,15.6
+70558,13709.14043,173421.7712,0,15.6
+70559,13746.31619,177614.0579,0,15.6
+70560,13760.69549,170503.4656,0,15.6
+70561,13808.88552,172249.7427,0,15.6
+70562,13931.82849,171702.0352,0,15.6
+70563,13948.68748,172208.6599,0,15.6
+70564,14065.22843,172232.6038,0,15.6
+70565,14058.19907,172633.1489,0,15.6
+70566,14174.91722,172388.3363,0,15.6
+70567,14261.78075,173525.398,0,15.6
+70568,14270.79541,173052.2663,0,15.6
+70569,14386.65889,173503.2759,0,15.6
+70570,14427.68136,173564.6525,0,15.6
+70571,14481.70862,173913.8812,0,15.6
+70572,14542.8952,174651.5352,0,15.6
+70573,14657.22325,174087.8792,0,15.6
+70574,14680.23138,174527.3259,0,15.6
+70575,14759.16876,175170.8284,0,15.6
+70576,0,27368.34542,0,15.6
+70577,0,27346.70895,0,15.6
+70578,0,27416.42044,1149580.018,15.6
+70579,0,27419.72471,0,15.6
+70580,61412.66369,594614.8541,0,15.6
+70581,1062.075817,27593.05143,0,15.6
+70582,7100.45477,111652.1502,0,15.6
+70583,21790.2682,237731.6713,0,15.6
+70584,14457.85941,166044.6518,0,15.6
+70585,354876.4163,177401.948,0,15.6
+70586,15502.44192,149956.9749,0,15.6
+70587,15634.18921,150557.4572,0,15.6
+70588,15655.81614,230709.0456,0,15.6
+70589,15743.02343,158616.2328,0,15.6
+70590,15780.69803,177313.6979,0,15.6
+70591,15841.30033,182088.2465,0,15.6
+70592,15957.49015,178567.0549,0,15.6
+70593,15950.47887,179429.256,0,15.6
+70594,16055.03351,179683.7313,0,15.6
+70595,16116.55356,179583.5389,0,15.6
+70596,16125.23834,179932.171,0,15.6
+70597,16258.34893,180495.3695,0,15.6
+70598,16254.40509,180198.105,0,15.6
+70599,16366.49189,180644.1251,0,15.6
+70600,16404.09718,180994.5001,0,15.6
+70601,16464.67868,180994.6849,0,15.6
+70602,16547.19934,181344.9384,0,15.6
+70603,16554.82575,181806.6528,0,15.6
+70604,16671.42636,181509.4003,0,15.6
+70605,16719.99955,182147.6513,0,15.6
+70606,16734.24259,182211.9014,0,15.6
+70607,16881.32045,182522.7561,0,15.6
+70608,16860.36771,182654.7638,0,15.6
+70609,16947.49885,182992.8157,0,15.6
+70610,0,28477.05398,0,15.6
+70611,0,28661.53606,0,15.6
+70612,0,28511.71624,0,15.6
+70613,63348.01968,28609.00828,0,15.6
+70614,1315.734381,633442.2851,0,15.6
+70615,11483.78757,29080.15952,1108192.673,15.6
+70616,23068.86802,116764.9048,0,15.6
+70617,16474.38457,247588.7238,0,15.6
+70618,17476.32111,145558.278,0,15.6
+70619,17639.86769,156167.3674,0,15.6
+70620,17586.73707,240767.3501,0,15.6
+70621,17682.25517,169268.2844,0,15.6
+70622,17677.07873,188555.5731,0,15.6
+70623,17735.88241,196495.5168,0,15.6
+70624,17724.73417,194391.531,0,15.6
+70625,17808.36484,197064.8205,0,15.6
+70626,17773.70979,198038.8494,0,15.6
+70627,17892.82241,200164.0005,0,15.6
+70628,17839.18016,202506.6353,0,15.6
+70629,17876.21854,203792.6586,0,15.6
+70630,357389.645,205811.6423,0,15.6
+70631,17919.7019,207462.2276,0,15.6
+70632,18010.23732,209354.6193,0,15.6
+70633,17988.58064,211109.4563,0,15.6
+70634,18053.48235,212992.9536,0,15.6
+70635,18073.78387,214562.2641,0,15.6
+70636,18080.07681,216893.751,0,15.6
+70637,18132.11478,217968.478,0,15.6
+70638,18164.96729,220606.5422,0,15.6
+70639,18185.21724,221799.9174,0,15.6
+70640,18201.68422,223934.163,0,15.6
+70641,18271.00858,225313.9088,0,15.6
+70642,18248.28838,227509.16,0,15.6
+70643,0,229548.1099,0,15.6
+70644,0,34020.11089,0,15.6
+70645,0,34274.01967,0,15.6
+70646,68665.13555,34490.14203,0,15.6
+70647,3387.874772,742202.5737,0,15.6
+70648,9975.321563,93285.6726,0,15.6
+70649,25553.78281,151789.9933,0,15.6
+70650,17345.03288,276441.7135,0,15.6
+70651,18569.15699,197234.8272,0,15.6
+70652,18591.34754,313229.6298,1070539.885,15.6
+70653,18694.63252,232316.0582,0,15.6
+70654,18632.50726,241776.9296,0,15.6
+70655,18736.60497,256810.0015,0,15.6
+70656,18699.38468,252023.0081,0,15.6
+70657,18762.24868,254503.0355,0,15.6
+70658,18798.55833,256394.7303,0,15.6
+70659,18803.23534,257919.4412,0,15.6
+70660,18840.40058,261196.2247,0,15.6
+70661,18849.76057,262975.3685,0,15.6
+70662,18902.01443,264679.5742,0,15.6
+70663,18906.74876,266722.8617,0,15.6
+70664,18948.37497,268315.1618,0,15.6
+70665,18968.22174,269813.0536,0,15.6
+70666,18994.57169,272160.4027,0,15.6
+70667,19050.34269,273531.2871,0,15.6
+70668,19014.41279,275642.9975,0,15.6
+70669,19071.90206,277220.3338,0,15.6
+70670,19117.0525,279279.7581,0,15.6
+70671,19116.89516,279335.6455,0,15.6
+70672,19178.07927,281471.044,0,15.6
+70673,19158.31944,283055.0564,0,15.6
+70674,358652.962,284647.3128,0,15.6
+70675,19203.17412,287087.3363,0,15.6
+70676,0,288308.9612,0,15.6
+70677,0,40948.61301,0,15.6
+70678,0,41173.15896,0,15.6
+70679,72620.8082,41396.30242,0,15.6
+70680,4731.52255,969734.8982,0,15.6
+70681,9150.375425,200547.1815,0,15.6
+70682,27424.01721,63974.07787,0,15.6
+70683,18126.42692,369244.8092,0,15.6
+70684,19472.09858,360673.0397,0,15.6
+70685,19507.63129,284573.7897,0,15.6
+70686,19599.51765,298828.1726,0,15.6
+70687,19552.61789,303458.5204,0,15.6
+70688,19608.94808,304686.9016,0,15.6
+70689,19627.82908,305080.6361,1036260.193,15.6
+70690,19629.1931,305366.0541,0,15.6
+70691,19688.44716,306233.393,0,15.6
+70692,19708.57446,307363.8287,0,15.6
+70693,19713.54176,307350.7042,0,15.6
+70694,19743.81052,309044.9142,0,15.6
+70695,19757.45875,308910.9851,0,15.6
+70696,19789.05413,310185.5538,0,15.6
+70697,19827.93125,309323.2229,0,15.6
+70698,19833.42223,311110.5356,0,15.6
+70699,19852.25096,311446.9786,0,15.6
+70700,19888.60137,313675.2161,0,15.6
+70701,19912.27938,312710.3979,0,15.6
+70702,19912.27424,314641.0314,0,15.6
+70703,19967.86848,315822.8081,0,15.6
+70704,19956.40534,315776.8638,0,15.6
+70705,19979.40811,317092.8547,0,15.6
+70706,20007.68586,317670.9015,0,15.6
+70707,231353.3934,318843.7517,0,15.6
+70708,20011.84208,319207.0801,0,15.6
+70709,0,320395.2768,0,15.6
+70710,49599.44655,46322.27146,0,15.6
+70711,51020.49988,46690.68943,0,15.6
+70712,111200.8638,854933.2657,0,15.6
+70713,47227.51417,173134.3577,0,15.6
+70714,51745.67077,222124.2974,0,15.6
+70715,68931.66648,325287.5499,0,15.6
+70716,61703.9334,393809.6493,0,15.6
+70717,66790.79604,314616.2121,0,15.6
+70718,404107.3939,328817.9824,0,15.6
+70719,65374.6202,325032.8877,0,15.6
+70720,66123.04428,330174.6314,0,15.6
+70721,66038.09655,331799.2601,0,15.6
+70722,66442.17184,331680.4403,0,15.6
+70723,66652.93867,331295.8076,0,15.6
+70724,67031.40285,335059.5687,0,15.6
+70725,67001.59649,334899.057,0,15.6
+70726,67615.17519,335976.1897,1004861.047,15.6
+70727,67507.13688,336703.1552,0,15.6
+70728,68196.35915,337475.835,0,15.6
+70729,68043.7323,338585.3354,0,15.6
+70730,68543.88245,339342.2046,0,15.6
+70731,68830.0314,339759.029,0,15.6
+70732,68834.13533,340977.7844,0,15.6
+70733,69426.64055,340265.1519,0,15.6
+70734,69271.96901,341652.6772,0,15.6
+70735,69877.64005,342077.3881,0,15.6
+70736,69754.00642,343123.9074,0,15.6
+70737,20733.14336,343900.7464,0,15.6
+70738,20736.97475,344531.3049,0,15.6
+70739,20733.13364,345402.7256,0,15.6
+70740,20752.31219,346280.0164,0,15.6
+70741,20863.33592,345604.2764,0,15.6
+70742,0,51382.72224,0,15.6
+70743,0,51359.25663,0,15.6
+70744,0,916885.2551,0,15.6
+70745,76184.71532,209571.6184,0,15.6
+70746,7637.155888,216026.5681,0,15.6
+70747,12559.53042,349929.0813,0,15.6
+70748,27997.84787,407064.0013,0,15.6
+70749,266257.9651,335732.9641,0,15.6
+70750,21531.51132,343860.3851,0,15.6
+70751,21634.98202,344967.8982,0,15.6
+70752,80602.0303,345977.6732,0,15.6
+70753,93333.95893,344487.0988,0,15.6
+70754,72891.08661,343027.438,0,15.6
+70755,78870.73635,343180.2023,0,15.6
+70756,80079.60839,342625.5553,0,15.6
+70757,83980.95411,342179.6778,0,15.6
+70758,87077.93908,341835.5138,0,15.6
+70759,85945.4293,341641.516,0,15.6
+70760,87281.46033,340712.4977,0,15.6
+70761,88128.14238,341579.8619,0,15.6
+70762,428774.7165,369624.7169,0,15.6
+70763,89742.26083,340091.5741,976179.2755,15.6
+70764,91105.964,342028.0182,0,15.6
+70765,91385.04732,348092.0434,0,15.6
+70766,92324.77244,347139.1286,0,15.6
+70767,93513.3405,345112.4661,0,15.6
+70768,94125.67862,345769.6412,0,15.6
+70769,94725.28811,344762.9416,0,15.6
+70770,96017.3343,346620.7197,0,15.6
+70771,96294.79079,345628.538,0,15.6
+70772,97474.46815,345632.3606,0,15.6
+70773,98078.04057,345202.2555,0,15.6
+70774,98997.84792,59165.91893,0,15.6
+70775,76687.43237,59293.4724,0,15.6
+70776,76911.08413,897395.1531,0,15.6
+70777,78063.91129,198401.3436,0,15.6
+70778,159086.9297,227187.9526,0,15.6
+70779,16513.57687,342181.2796,0,15.6
+70780,10565.06655,406453.2739,0,15.6
+70781,31525.09712,331255.1626,0,15.6
+70782,23101.81151,350227.4034,0,15.6
+70783,23903.17755,340845.3385,0,15.6
+70784,24010.62099,345713.486,0,15.6
+70785,24035.87034,342639.2756,0,15.6
+70786,336669.1599,341934.9999,0,15.6
+70787,56579.56363,342074.0777,0,15.6
+70788,50918.37808,341622.5085,0,15.6
+70789,124817.4966,340448.7393,0,15.6
+70790,123381.2719,341039.2575,0,15.6
+70791,106475.7537,340287.4541,0,15.6
+70792,113017.4338,332399.8388,0,15.6
+70793,113606.8842,333027.7855,0,15.6
+70794,114225.2061,331957.4012,0,15.6
+70795,115088.0493,331866.5206,0,15.6
+70796,115788.9696,331194.1325,0,15.6
+70797,116264.0331,331061.24,0,15.6
+70798,117095.5947,330826.0782,0,15.6
+70799,117732.795,330598.5101,0,15.6
+70800,118284.43,329595.6574,949995.485,17.8
+70801,118907.2213,329167.2449,0,17.8
+70802,119451.2111,327524.1146,0,17.8
+70803,119541.0792,326805.4499,0,17.8
+70804,120649.3834,324638.2731,0,17.8
+70805,120408.8025,324218.9686,0,17.8
+70806,460737.4886,51889.97258,0,17.8
+70807,121760.6583,51632.77719,0,17.8
+70808,96716.21028,840654.7838,0,17.8
+70809,97351.98294,160828.6122,0,17.8
+70810,172956.8504,218681.3104,0,17.8
+70811,108073.7319,309863.4434,0,17.8
+70812,121491.7057,380780.0132,0,17.8
+70813,127644.9177,303740.0355,0,17.8
+70814,124932.5246,316594.1959,0,17.8
+70815,125415.6548,313002.5803,0,17.8
+70816,25678.94599,313172.6476,0,17.8
+70817,25687.99623,311009.0381,0,17.8
+70818,25749.3053,309329.6925,0,17.8
+70819,25751.00186,308104.7427,0,17.8
+70820,25850.08678,306103.9029,0,17.8
+70821,431691.1204,305339.3215,0,17.8
+70822,35490.48643,303970.445,0,17.8
+70823,63224.46159,301814.9925,0,17.8
+70824,168369.1538,301598.1082,0,17.8
+70825,130793.4564,299969.2692,0,17.8
+70826,127666.1855,298197.4362,0,17.8
+70827,131334.3312,297452.6162,0,17.8
+70828,131712.0339,296284.7147,0,17.8
+70829,132473.6489,294176.2863,0,17.8
+70830,132418.6378,293883.0019,0,17.8
+70831,133191.4839,292195.7018,0,17.8
+70832,133502.6974,290791.7825,0,17.8
+70833,133800.4749,289330.4757,0,17.8
+70834,134443.433,288593.8337,0,17.8
+70835,134810.1103,286397.4308,926055.2332,17.8
+70836,135031.2187,286196.998,0,17.8
+70837,135655.5139,284045.9067,0,17.8
+70838,135818.8277,48476.45641,0,17.8
+70839,136832.6789,48199.93544,0,17.8
+70840,110040.4548,48257.28389,0,17.8
+70841,110744.3662,892463.4414,0,17.8
+70842,188443.0244,112340.3956,0,17.8
+70843,464255.9658,63126.99233,0,17.8
+70844,134174.3304,453526.971,0,17.8
+70845,142830.7469,245623.1408,0,17.8
+70846,139216.7981,266258.6763,0,17.8
+70847,140019.6594,276179.3794,0,17.8
+70848,140382.7853,270171.8222,0,17.8
+70849,140732.9644,268368.2536,0,17.8
+70850,141489.386,266603.06,0,17.8
+70851,27096.65063,265544.9113,0,17.8
+70852,27094.68848,263944.7369,0,17.8
+70853,27087.10206,262208.9742,0,17.8
+70854,27197.78832,260998.4587,0,17.8
+70855,27203.68924,259321.7547,0,17.8
+70856,512512.1144,257533.5325,0,17.8
+70857,28411.96804,256496.5242,0,17.8
+70858,71007.57397,254177.2757,0,17.8
+70859,203339.328,252584.9768,0,17.8
+70860,137628.3024,249716.1556,0,20
+70861,145330.8221,249470.769,0,20
+70862,146718.2276,250454.1895,0,20
+70863,146674.2501,249837.429,0,20
+70864,147199.8005,250197.5343,0,20
+70865,147147.8175,250443.949,0,20
+70866,147358.9171,250190.0094,0,20
+70867,147458.0428,250746.0778,0,20
+70868,147721.0002,250172.1336,0,20
+70869,147987.3401,250956.3111,0,20
+70870,147922.0422,250495.7087,904313.0536,20
+70871,148358.221,45913.55894,0,20
+70872,120765.5804,45628.27328,0,20
+70873,121075.3296,45929.36105,0,20
+70874,200000.2005,731925.7288,0,20
+70875,137855.5853,56059.07584,0,20
+70876,143215.2468,219963.2343,0,20
+70877,153756.4528,315179.1761,0,20
+70878,149355.5303,232585.3972,0,20
+70879,149894.7672,257698.121,0,20
+70880,489369.235,252077.6869,0,20
+70881,150067.8258,252236.6241,0,20
+70882,150593.8727,252736.3719,0,20
+70883,150570.7093,252587.8357,0,20
+70884,150611.1993,252715.7777,0,20
+70885,151226.9798,252938.9382,0,20
+70886,27896.91353,252547.5945,0,20
+70887,27953.70978,253200.8201,0,20
+70888,27954.47592,252941.2463,0,20
+70889,27953.68455,252994.6599,0,20
+70890,516800.2006,253937.0419,0,20
+70891,28480.7063,252977.5756,0,20
+70892,77659.94352,253410.3137,0,20
+70893,216830.4936,253570.3147,0,20
+70894,139981.6507,253710.2868,0,20
+70895,152812.1231,253753.8314,0,20
+70896,153004.5584,253585.6168,0,20
+70897,153138.5691,254072.0958,0,20
+70898,153596.6124,253962.998,0,20
+70899,153334.8797,254258.0239,0,20
+70900,153775.8126,254316.2047,0,20
+70901,153678.0861,254058.8991,0,20
+70902,154144.9935,254706.199,0,20
+70903,153916.0407,254641.673,0,20
+70904,125991.5111,46890.23212,0,20
+70905,126383.3103,47152.22543,884544.8884,20
+70906,205277.0629,0,0,20
+70907,145228.2589,742241.4875,0,20
+70908,147429.666,178972.6836,0,20
+70909,159771.602,135569.197,0,20
+70910,154853.6521,328458.4219,0,20
+70911,155166.3468,248474.9775,0,20
+70912,155503.6678,255639.1993,0,20
+70913,155548.3631,255449.8316,0,20
+70914,155593.7561,256094.615,0,20
+70915,156188.2206,255764.3679,0,20
+70916,155544.0631,256118.1174,0,20
+70917,495685.3802,256026.8758,0,20
+70918,156093.361,256715.8087,0,20
+70919,156530.7922,256377.3278,0,20
+70920,28469.94185,255970.0113,0,21
+70921,28130.92017,254121.0969,0,21
+70922,28156.58668,253967.5438,0,21
+70923,28067.03687,253645.7439,0,21
+70924,531245.2779,254226.092,0,21
+70925,27985.45252,254382.1348,0,21
+70926,70873.48516,253965.0683,0,21
+70927,220687.5737,254939.7196,0,21
+70928,138232.0132,254125.1653,0,21
+70929,151427.6259,255142.002,0,21
+70930,151206.703,254913.8838,0,21
+70931,150650.8615,254666.0978,0,21
+70932,150634.6989,255286.558,0,21
+70933,149828.5243,255160.3424,0,21
+70934,149930.9503,255232.7219,0,21
+70935,149258.0576,255408.3284,0,21
+70936,121417.625,255760.8022,0,21
+70937,121068.84,47419.75258,0,21
+70938,198993.6546,104.4840593,0,21
+70939,136367.8511,0,0,21
+70940,141924.7171,866929.6101,0,21
+70941,151375.6072,91989.41693,0,21
+70942,146524.4562,144924.8048,866474.6282,21
+70943,146596.8789,344155.7584,0,21
+70944,146248.3699,243912.2662,0,21
+70945,145453.2233,257202.6149,0,21
+70946,145790.9431,257728.9277,0,21
+70947,145096.4404,257267.0178,0,21
+70948,144545.3994,258095.991,0,21
+70949,144600.3904,257569.8445,0,21
+70950,143965.5893,258366.5459,0,21
+70951,143807.2023,257980.6569,0,21
+70952,143221.7441,258117.0842,0,21
+70953,143103.6356,258411.3679,0,21
+70954,26750.87725,258524.8661,0,21
+70955,26723.74776,258426.8512,0,21
+70956,26647.5278,258829.2514,0,21
+70957,26602.83395,258457.4367,0,21
+70958,26619.89541,259334.0122,0,21
+70959,521797.1877,258979.0591,0,21
+70960,26654.94913,258583.1956,0,21
+70961,391356.0467,259792.9858,0,21
+70962,201153.2851,259101.1201,0,21
+70963,133010.8317,259484.12,0,21
+70964,137171.4118,259591.6463,0,21
+70965,139301.6107,259520.3764,0,21
+70966,138534.2546,260147.3686,0,21
+70967,138456.2174,259933.1431,0,21
+70968,111668.8589,260114.3068,0,21
+70969,111490.8396,259766.4652,0,21
+70970,186570.9577,275.4314265,0,21
+70971,122188.3322,0,0,21
+70972,133387.8341,125561.8563,0,21
+70973,138867.568,793208.0928,0,21
+70974,135462.0727,108261.5909,0,21
+70975,135029.6962,154825.8651,0,21
+70976,134865.9526,345844.222,0,21
+70977,134271.3108,247840.3489,0,21
+70978,134065.6101,261284.5814,0,21
+70979,133283.2035,262425.0602,849859.708,21
+70980,134536.9484,261415.0655,0,21
+70981,133171.8452,262021.9147,0,21
+70982,133567.2201,262099.0592,0,21
+70983,133662.2566,262147.9573,0,21
+70984,133963.8742,262742.6506,0,21
+70985,133666.7923,262167.2879,0,21
+70986,134342.2655,263148.7098,0,21
+70987,134268.1235,262616.7121,0,21
+70988,134510.1307,263310.4157,0,21
+70989,25682.73537,263042.9827,0,21
+70990,25717.67744,263678.295,0,21
+70991,25758.05707,263405.8716,0,21
+70992,25753.1826,263801.922,0,21
+70993,25541.28553,263917.7087,0,21
+70994,491399.8957,264097.6858,0,21
+70995,28675.529,264307.9794,0,21
+70996,48830.27616,264174.6915,0,21
+70997,177308.5847,264684.8308,0,21
+70998,135991.0029,264558.5399,0,21
+70999,125832.849,264941.9909,0,21
+71000,104612.7909,264949.8956,0,21
+71001,104522.7258,265501.1122,0,21
+71002,104479.69,238577.0042,0,21
+71003,185985.3881,113.1819876,0,21
+71004,127778.7128,131847.8308,0,21
+71005,452302.0185,38489.18456,0,21
+71006,137602.0834,828106.5851,0,21
+71007,128474.091,134428.6788,0,21
+71008,128820.8854,151653.2639,0,21
+71009,128869.5258,360950.0156,0,21
+71010,129042.312,259013.9299,0,21
+71011,128280.0022,272305.0559,0,21
+71012,127831.9433,273427.8596,0,21
+71013,127867.9922,273146.7791,0,21
+71014,127148.4855,273449.6689,0,21
+71015,126666.1353,273562.2452,834664.1068,21
+71016,126403.8872,273678.5257,0,21
+71017,125883.3706,273898.1727,0,21
+71018,125191.3972,274103.3411,0,21
+71019,124771.6695,274322.4013,0,21
+71020,124533.6541,274405.3605,0,21
+71021,123659.2689,274651.1636,0,21
+71022,123568.4234,274831.6798,0,21
+71023,122809.2224,275065.5027,0,21
+71024,24620.93747,274961.2478,0,21
+71025,24502.6571,275241.9654,0,21
+71026,24527.35035,275618.7846,0,21
+71027,24441.54087,275480.205,0,21
+71028,24460.56375,276150.7056,0,21
+71029,24345.94132,275895.4325,0,21
+71030,24348.07159,276002.1024,0,21
+71031,24298.57909,276960.9466,0,21
+71032,451565.0429,270592.3537,0,21
+71033,1113.478183,270746.2053,0,21
+71034,23093.38858,220197.3784,0,21
+71035,140034.2923,220365.9689,0,21
+71036,171501.7063,133317.9938,0,21
+71037,111131.071,33010.16026,0,21
+71038,98347.91758,46631.63423,0,21
+71039,123707.5194,852797.4486,0,21
+71040,112963.1753,133261.2623,0,21
+71041,112811.653,144241.6124,0,21
+71042,111229.5732,364702.0825,0,21
+71043,110036.7244,258283.6834,0,21
+71044,108832.6191,272697.5032,0,21
+71045,107385.2491,273113.725,0,21
+71046,106000.9266,273041.6855,0,21
+71047,444376.5649,273103.991,0,21
+71048,103496.6604,273373.4486,0,21
+71049,102138.4572,298772.647,0,21
+71050,101128.1384,273321.7,0,21
+71051,99359.06332,275322.7441,820833.9736,21
+71052,98657.37725,279944.0925,0,21
+71053,96668.38662,280024.9633,0,21
+71054,95825.55501,279274.7506,0,21
+71055,94207.2053,279511.009,0,21
+71056,93304.79627,280334.1077,0,21
+71057,91482.92942,279763.5637,0,21
+71058,90470.97261,280224.1159,0,21
+71059,88844.91349,279965.7298,0,21
+71060,87939.33807,280711.2581,0,21
+71061,86233.77218,280238.7922,0,21
+71062,20983.64562,280736.6332,0,21
+71063,20966.2091,280689.4747,0,21
+71064,20769.95914,280660.5026,0,21
+71065,20623.60371,280995.0706,0,21
+71066,0,229019.7949,0,21
+71067,0,229237.3231,0,21
+71068,0,366059.2827,0,21
+71069,70994.03399,39170.844,0,21
+71070,8642.27529,54790.46629,0,21
+71071,10904.49063,64566.55923,0,21
+71072,26158.23704,865493.803,0,21
+71073,18888.21135,145038.6149,0,21
+71074,19534.69985,149263.8997,0,21
+71075,19430.73002,377677.545,0,21
+71076,19289.33135,267796.1455,0,21
+71077,19184.01468,283231.1972,0,21
+71078,19027.58532,283216.1728,0,21
+71079,18959.42158,277581.9694,0,21
+71080,18790.33981,276565.2742,0,21
+71081,18675.06623,278028.5348,0,21
+71082,18581.21985,276556.003,0,21
+71083,18420.95468,277639.094,0,21
+71084,18325.50608,277224.7037,0,21
+71085,18189.49704,277413.2005,0,21
+71086,18092.77557,277586.9848,0,21
+71087,357308.9468,277314.2407,808329.9664,21
+71088,17858.18767,277430.3487,0,21
+71089,17707.12448,274602.8456,0,21
+71090,17568.40935,273745.4761,0,21
+71091,17469.04841,273095.109,0,21
+71092,17375.63624,273040.4217,0,21
+71093,17181.27329,272679.9867,0,21
+71094,17087.49142,298423.368,0,21
+71095,16979.07437,272202.7382,0,21
+71096,16842.5976,273423.2756,0,21
+71097,16705.60158,277866.4865,0,21
+71098,16583.47502,226401.3198,0,21
+71099,0,224160.2191,0,21
+71100,0,363995.5127,0,21
+71101,0,259517.2086,0,21
+71102,57982.87509,54590.98737,0,21
+71103,2507.018381,61568.99222,0,21
+71104,10394.05227,54851.46436,0,21
+71105,21361.71874,784004.1435,0,21
+71106,15244.91051,146566.5041,0,21
+71107,16011.051,124615.8837,0,21
+71108,15994.86495,348954.3394,0,21
+71109,15940.01605,242756.3056,0,21
+71110,15894.99048,256084.1405,0,21
+71111,15874.3517,256563.1202,0,21
+71112,15753.18874,255524.7669,0,21
+71113,15763.54822,255341.9552,0,21
+71114,15691.6143,254896.756,0,21
+71115,15631.37558,254142.9432,0,21
+71116,15589.71039,253734.9791,0,21
+71117,15529.20489,253442.5356,0,21
+71118,15481.93134,253052.7302,0,21
+71119,15406.11186,252513.1332,0,21
+71120,15368.43393,252267.022,0,21
+71121,15302.69938,250725.5902,0,21
+71122,15259.65786,250435.2043,0,21
+71123,15198.65429,250340.623,796927.0088,21
+71124,15104.42479,247592.5303,0,21
+71125,15124.78328,247692.208,0,21
+71126,14999.34416,246730.9096,0,21
+71127,354340.5359,247029.6018,0,21
+71128,14925.59199,246467.2265,0,21
+71129,14841.02695,246244.1121,0,21
+71130,14782.54913,196459.9155,0,21
+71131,14723.90491,196277.2616,0,21
+71132,0,321601.1081,0,21
+71133,0,227819.0026,0,21
+71134,0,248255.553,0,21
+71135,49932.41754,52270.3316,0,21
+71136,577.6517767,51763.83525,0,21
+71137,12518.72578,50324.6665,0,21
+71138,17764.75103,645199.7408,0,21
+71139,14060.96425,222294.2706,0,21
+71140,14552.37733,143659.0013,0,21
+71141,14518.12485,296948.9839,0,21
+71142,14514.27546,248204.6297,0,21
+71143,14452.5762,246562.7396,0,21
+71144,14512.64022,247867.4035,0,21
+71145,14377.2167,248186.3739,0,21
+71146,14473.71047,248771.1892,0,21
+71147,14387.78086,247741.8144,0,21
+71148,14379.77786,249060.3155,0,21
+71149,14354.56004,248499.2059,0,21
+71150,14400.78496,249277.233,0,21
+71151,14255.08181,248812.5148,0,21
+71152,14384.83869,249685.2421,0,21
+71153,14257.34066,250027.9904,0,21
+71154,14259.83658,249903.5685,0,21
+71155,14278.38685,250675.657,0,21
+71156,14241.21688,250250.3345,0,21
+71157,14201.53099,250850.2611,0,21
+71158,14238.7223,251442.7919,0,21
+71159,14164.33774,251474.7653,786493.2432,21
+71160,14175.41134,251808.594,0,21
+71161,14145.31386,250598.5968,0,21
+71162,14005.81057,200254.5685,0,21
+71163,14033.89777,199041.1304,0,21
+71164,14072.54674,316623.4987,0,21
+71165,0,228486.7599,0,21
+71166,0,252497.8736,0,21
+71167,339402.3026,242710.5731,0,21
+71168,0,51329.85593,0,21
+71169,53583.44091,49020.18954,0,21
+71170,2150.534113,505042.0773,0,21
+71171,6674.580784,198763.3923,0,21
+71172,19566.67663,197397.4181,0,21
+71173,12764.23311,260701.7238,0,21
+71174,13641.95518,235623.4544,0,21
+71175,13625.38582,234890.7424,0,21
+71176,13576.03587,234404.9871,0,21
+71177,13495.76238,233040.5755,0,21
+71178,13481.92843,231594.9884,0,21
+71179,13407.81877,231285.956,0,21
+71180,13391.68304,229855.3967,0,21
+71181,13319.39467,228768.7855,0,21
+71182,13270.5825,227692.2834,0,21
+71183,13239.03239,226987.8053,0,21
+71184,13171.53837,225688.6404,0,21
+71185,13149.79214,224794.8863,0,21
+71186,13085.65543,223625.1295,0,21
+71187,13060.05757,222794.61,0,21
+71188,12957.95671,221851.7964,0,21
+71189,12960.80677,220505.888,0,21
+71190,12932.16,220230.0051,0,21
+71191,12780.35464,218687.6714,0,21
+71192,12867.38881,217566.0125,0,21
+71193,12698.06024,216184.1135,0,21
+71194,12699.35595,170456.2503,0,21
+71195,12665.82226,169308.6342,776705.8187,21
+71196,12551.13586,271861.389,0,21
+71197,12551.13869,198167.1854,0,21
+71198,12494.25544,213612.0034,0,21
+71199,0,208811.876,0,21
+71200,0,45991.42302,0,21
+71201,0,44671.53649,0,21
+71202,0,44448.46571,0,21
+71203,47223.74528,489686.7202,0,21
+71204,0,232511.8582,0,21
+71205,6140.689175,95365.09817,0,21
+71206,17558.29191,235402.7494,0,21
+71207,350462.8099,210215.831,0,21
+71208,12007.50336,196459.9989,0,21
+71209,11989.98428,199555.8686,0,21
+71210,11947.2964,198803.8984,0,21
+71211,11883.78134,197372.391,0,21
+71212,11801.39511,196414.4337,0,21
+71213,11820.87049,194920.7113,0,21
+71214,11704.99118,194212.5581,0,21
+71215,11691.22332,193610.5618,0,21
+71216,11631.83827,193073.1284,0,21
+71217,11586.93283,192697.7742,0,21
+71218,11525.77701,192899.8352,0,21
+71219,11492.23991,192036.9868,0,21
+71220,11449.38231,192791.4663,0,21
+71221,11437.30693,190690.112,0,21
+71222,11472.35095,189601.337,0,21
+71223,11525.38197,188639.5882,0,21
+71224,11482.87102,187002.1488,0,21
+71225,11567.81907,186069.5027,0,21
+71226,11551.15454,143759.2111,0,21
+71227,11578.29329,143060.7201,0,21
+71228,11622.07343,227706.6508,0,21
+71229,11599.18648,173624.8045,0,21
+71230,11635.96801,177108.7159,0,21
+71231,11667.18388,179496.6474,0,21
+71232,11688.64824,177707.8366,767598.967,21
+71233,0,38608.20367,0,21
+71234,0,38296.14193,0,21
+71235,0,37950.18709,0,21
+71236,0,447875.6169,0,21
+71237,0,157247.8251,0,21
+71238,48118.35806,91706.38021,0,21
+71239,0,210803.2144,0,21
+71240,5706.554908,164043.872,0,21
+71241,17306.75669,166318.7035,0,21
+71242,10944.58698,165268.6863,0,21
+71243,11905.7329,164407.813,0,21
+71244,11907.97503,162796.1616,0,21
+71245,11994.23338,162099.7139,0,21
+71246,11956.61349,160605.2777,0,21
+71247,11994.2469,159217.1653,0,21
+71248,11994.25373,158370.5495,0,21
+71249,351505.4768,157152.6228,0,21
+71250,12055.18577,155461.8442,0,21
+71251,12032.50091,155101.3015,0,21
+71252,12102.83765,153599.1095,0,21
+71253,12068.03192,152462.4421,0,21
+71254,12183.58308,151770.2593,0,21
+71255,12142.44066,150324.9564,0,21
+71256,12176.36874,149819.2779,0,21
+71257,12211.07403,148039.6071,0,21
+71258,12239.34718,115680.2568,0,21
+71259,12247.88997,114734.5856,0,21
+71260,12276.65193,179706.2295,0,21
+71261,12334.30902,139564.2456,0,21
+71262,12337.00013,138153.237,0,21
+71263,12360.10959,146194.8515,0,21
+71264,12377.0688,141873.3199,0,21
+71265,12422.51432,140849.2821,0,21
+71266,12465.23374,30808.56836,0,21
+71267,12437.64575,30582.25965,0,21
+71268,0,30287.09923,0,21
+71269,0,30248.39304,759333.2279,21
+71270,0,405609.2034,0,21
+71271,0,79036.53239,0,21
+71272,48988.18002,83677.37153,0,21
+71273,0,167642.6358,0,21
+71274,6265.0791,127928.1377,0,21
+71275,18434.33671,130630.4457,0,21
+71276,11643.03048,129416.5739,0,21
+71277,12747.54417,128026.8619,0,21
+71278,12778.93203,127278.2378,0,21
+71279,12887.41527,125044.7393,0,21
+71280,12795.85899,123913.2979,0,21
+71281,12890.94243,123398.2643,0,21
+71282,12829.57391,123460.3144,0,21
+71283,12921.14917,123346.6317,0,21
+71284,12849.48265,123542.7343,0,21
+71285,12905.53762,122988.6991,0,21
+71286,12895.6062,123092.9408,0,21
+71287,12883.05722,123467.6309,0,21
+71288,12942.11901,122525.8948,0,21
+71289,12919.07986,123122.7606,0,21
+71290,12936.32176,95505.70808,0,21
+71291,352520.8214,95295.4093,0,21
+71292,12942.74013,151864.4208,0,21
+71293,12985.64856,114318.1683,0,21
+71294,12956.19709,121005.9813,0,21
+71295,12989.31682,125440.084,0,21
+71296,13041.73723,122507.4669,0,21
+71297,13041.68519,123068.4221,0,21
+71298,13133.77539,123134.5813,0,21
+71299,13106.92885,122505.6425,0,21
+71300,13176.07125,27490.63765,0,21
+71301,13116.78819,27530.53255,0,21
+71302,0,27473.40168,0,21
+71303,0,27379.91868,0,21
+71304,0,370461.9642,0,21
+71305,0,27285.44453,0,21
+71306,53222.44566,108931.0264,751632.0417,21
+71307,0,143616.5048,0,21
+71308,5195.241695,119232.9955,0,21
+71309,20133.83785,122494.8935,0,21
+71310,11991.02267,121750.1089,0,21
+71311,13332.61947,122145.109,0,21
+71312,13331.88681,121735.3501,0,21
+71313,13332.63732,121850.4245,0,21
+71314,13338.93274,121490.004,0,21
+71315,13365.79701,121800.3101,0,21
+71316,13305.7535,121379.3296,0,21
+71317,13329.83807,121544.1261,0,21
+71318,13354.7805,121092.4535,0,21
+71319,13319.24745,121508.2112,0,21
+71320,13318.76689,120962.2035,0,21
+71321,13343.53302,121134.1212,0,21
+71322,13299.05546,94337.20923,0,21
+71323,13354.82264,94094.67612,0,21
+71324,13298.45752,94216.06598,0,21
+71325,13305.8288,154043.8802,0,21
+71326,13311.97006,119919.1814,0,21
+71327,13332.39888,108565.6009,0,21
+71328,13262.98161,127574.5841,0,21
+71329,13334.62228,119914.6971,0,21
+71330,13321.13444,120471.8809,0,21
+71331,13278.78681,121019.3195,0,21
+71332,13284.99992,120341.8699,0,21
+71333,352939.202,120572.7204,0,21
+71334,13265.28777,26656.60961,0,21
+71335,13298.54792,26618.3511,0,21
+71336,0,26638.32123,0,21
+71337,0,26581.59869,0,21
+71338,0,26637.42422,0,21
+71339,0,395801.3912,0,21
+71340,54288.76615,38083.54404,0,21
+71341,0,86566.60256,0,21
+71342,4194.003473,155415.1411,0,21
+71343,20771.78664,120615.2594,744526.5402,21
+71344,11893.74973,125158.5707,0,21
+71345,13345.75132,126382.7559,0,21
+71346,13401.55623,127462.8486,0,21
+71347,13394.5854,127761.6367,0,21
+71348,13450.30868,129410.776,0,21
+71349,13410.21625,129433.3706,0,21
+71350,13465.93949,130943.1417,0,21
+71351,13481.53153,131867.5935,0,21
+71352,13494.98002,133679.7739,0,21
+71353,13481.54412,133945.967,0,21
+71354,13543.52722,135193.6245,0,21
+71355,13530.11829,107201.2403,0,21
+71356,13562.05776,108010.0572,0,21
+71357,13563.05808,164519.3257,0,21
+71358,13574.56338,130083.8129,0,21
+71359,13581.64217,135789.0334,0,21
+71360,13658.85815,143136.5481,0,21
+71361,13594.09394,140984.1548,0,21
+71362,13658.87036,142339.7355,0,21
+71363,13658.87641,142754.3219,0,21
+71364,13693.76784,144141.5242,0,21
+71365,13674.3149,144628.6195,0,21
+71366,13707.11458,145865.6494,0,21
+71367,13745.01323,146335.2795,0,21
+71368,13741.92732,147418.2321,0,21
+71369,13735.83549,30875.77213,0,21
+71370,0,31166.26655,0,21
+71371,0,31349.8718,0,21
+71372,0,31489.82349,0,21
+71373,0,480000.2191,0,21
+71374,57102.70381,95788.15701,0,21
+71375,339646.6591,72307.52467,0,21
+71376,4826.658479,208319.386,0,21
+71377,21238.25884,148626.8193,0,21
+71378,12509.23703,156892.2189,0,21
+71379,13876.80295,157856.9863,0,21
+71380,13930.67887,158613.0197,738387.5084,21
+71381,13915.40134,160111.7503,0,21
+71382,13930.69106,160136.1087,0,21
+71383,13961.14488,161951.9641,0,21
+71384,13957.16694,162354.4335,0,21
+71385,13961.15653,163617.3754,0,21
+71386,13980.41044,164382.2856,0,21
+71387,13987.5705,130923.4031,0,21
+71388,14006.7479,132008.7366,0,21
+71389,13995.60513,201401.7357,0,21
+71390,14059.51769,162517.4353,0,21
+71391,13957.94025,163177.7151,0,21
+71392,14059.52866,173981.4567,0,21
+71393,14056.29679,170923.3569,0,21
+71394,14037.10595,171973.0304,0,21
+71395,14056.30753,173164.4986,0,21
+71396,14093.86326,173940.9066,0,21
+71397,14040.84596,174881.7905,0,21
+71398,14128.10481,176247.7704,0,21
+71399,14056.32855,176621.9491,0,21
+71400,14112.75941,177793.2109,0,21
+71401,14077.3678,177275.8421,0,21
+71402,14086.54989,177096.4452,0,21
+71403,14046.97861,37140.44666,0,21
+71404,0,37098.20804,0,21
+71405,0,36975.97475,0,21
+71406,0,506641.9113,0,21
+71407,0,107930.764,0,21
+71408,58079.17039,100593.3456,0,21
+71409,0,220979.3925,0,21
+71410,5040.300352,165295.3506,0,21
+71411,21032.26184,171216.8702,0,21
+71412,12676.31969,170995.9083,0,21
+71413,13886.34006,169782.3422,0,21
+71414,13878.41167,169225.9766,0,21
+71415,13896.17486,168856.497,0,21
+71416,13836.75201,168029.5859,0,21
+71417,353521.1506,167092.6249,732916.9316,21
+71418,13800.81393,166959.9088,0,21
+71419,13810.56365,129235.0507,0,21
+71420,13747.49241,136114.6963,0,21
+71421,13778.07069,209971.5135,0,21
+71422,13711.39417,159008.4776,0,21
+71423,13709.34905,164729.2088,0,21
+71424,13680.66538,173309.947,0,21
+71425,13657.99439,169097.9599,0,21
+71426,13638.52329,169036.6844,0,21
+71427,13619.71262,171450.4279,0,21
+71428,13569.57341,170891.2421,0,21
+71429,13588.90036,171312.7071,0,21
+71430,13546.55361,171098.399,0,21
+71431,13515.90931,171072.576,0,21
+71432,13577.44195,170207.6901,0,21
+71433,13515.74639,170143.7181,0,21
+71434,13562.20729,169967.0937,0,21
+71435,13565.93407,169284.2105,0,21
+71436,13546.82199,36011.278,0,21
+71437,13561.95519,35957.31192,0,21
+71438,0,35860.30039,0,21
+71439,0,35727.8448,0,21
+71440,0,487691.3603,0,21
+71441,0,86152.53939,0,21
+71442,55950.01866,83149.42659,0,21
+71443,226.4025458,225392.0111,0,21
+71444,4230.618539,154926.7829,0,21
+71445,21244.32948,164156.8734,0,21
+71446,12206.57754,164308.1417,0,21
+71447,13656.22829,163217.6314,0,21
+71448,13717.04323,163124.2065,0,21
+71449,13684.84254,162179.5662,0,21
+71450,13764.84392,161273.8483,0,21
+71451,13723.02543,126290.86,0,21
+71452,13747.3922,125454.3537,0,21
+71453,13799.25773,200952.4135,0,21
+71454,13753.36852,143200.5853,727938.7664,21
+71455,13818.03182,157034.1457,0,21
+71456,13796.92028,160106.7358,0,21
+71457,13852.37912,156231.5494,0,21
+71458,13819.82579,155741.5337,0,21
+71459,353576.2405,154864.505,0,21
+71460,13848.20296,152660.9874,0,21
+71461,13918.59117,153528.8614,0,21
+71462,13923.86864,154193.9655,0,21
+71463,14009.17954,154286.364,0,21
+71464,13999.51524,155450.0463,0,21
+71465,14080.87481,155131.7429,0,21
+71466,14074.93488,156314.817,0,21
+71467,14127.29838,156207.35,0,21
+71468,14193.50624,157516.9134,0,21
+71469,14191.04875,157300.6745,0,21
+71470,14258.78115,34595.94017,0,21
+71471,14271.90787,34649.83025,0,21
+71472,0,34760.17755,0,21
+71473,0,34719.47336,0,21
+71474,0,431459.158,0,21
+71475,0,67209.6726,0,21
+71476,60948.24426,127520.1952,0,21
+71477,0,194039.5478,0,21
+71478,5765.861911,156862.3172,0,21
+71479,21461.84199,162516.9513,0,21
+71480,13705.46572,162942.8749,0,21
+71481,14619.96489,163246.5233,0,21
+71482,14765.81929,163737.5619,0,21
+71483,14834.10655,129077.9335,0,21
+71484,14878.87715,129360.1386,0,21
+71485,14919.93882,208827.8212,0,21
+71486,14948.3125,147159.9829,0,21
+71487,15018.22693,166616.1964,0,21
+71488,15033.84999,168304.9319,0,21
+71489,15115.64813,166948.6785,0,21
+71490,15134.7992,167189.4895,723397.3499,21
+71491,15187.90201,168029.0213,0,21
+71492,15213.14107,168096.7779,0,21
+71493,15253.85313,168754.9505,0,21
+71494,15285.18885,168683.4522,0,21
+71495,15316.45044,169535.0431,0,21
+71496,15329.04651,169793.5516,0,21
+71497,15397.44788,170327.1131,0,21
+71498,15378.85597,170839.1131,0,21
+71499,15472.21002,170968.8439,0,21
+71500,15441.1097,171601.1569,0,21
+71501,355199.5469,171852.1874,0,21
+71502,15530.99989,172066.7678,0,21
+71503,15577.50365,172762.3639,0,21
+71504,15588.34313,36438.25406,0,21
+71505,15639.4921,36522.56572,0,21
+71506,0,36433.33952,0,21
+71507,0,36593.64813,0,21
+71508,0,508932.0021,0,21
+71509,0,56012.61242,0,21
+71510,68108.33382,139414.5565,0,21
+71511,1274.446423,213632.964,0,21
+71512,6193.197409,170194.3209,0,21
+71513,22026.44485,176770.0537,0,21
+71514,15730.41898,176518.5698,0,21
+71515,15674.81788,140425.4216,0,21
+71516,16025.86172,140395.1527,0,21
+71517,16080.32574,225918.5084,0,21
+71518,16110.47006,158716.5468,0,21
+71519,16120.03667,178633.6773,0,21
+71520,16147.06219,181324.3792,0,21
+71521,16213.58393,181964.2359,0,21
+71522,16237.83461,184934.7953,0,21
+71523,16301.51753,186686.2483,0,21
+71524,16296.17666,188743.3852,0,21
+71525,16391.81703,191530.9895,0,21
+71526,16392.44916,192810.5975,719245.9791,21
+71527,16457.82837,195588.143,0,21
+71528,16487.20956,197222.4545,0,21
+71529,16534.95612,199635.9728,0,21
+71530,16550.36929,201725.0462,0,21
+71531,16648.29334,203778.4793,0,21
+71532,16629.25702,205784.9888,0,21
+71533,16707.92736,208077.0683,0,21
+71534,16725.58762,209990.8136,0,21
+71535,16780.32578,211835.9628,0,21
+71536,16831.0794,214111.4772,0,21
+71537,16844.18298,216355.0355,0,21
+71538,16911.70362,41832.56817,0,21
+71539,16956.17435,42008.21135,0,21
+71540,0,42428.75611,0,21
+71541,339672.9257,635118.9045,0,21
+71542,0,93048.85188,0,21
+71543,65471.07678,180520.7043,0,21
+71544,0,275550.9603,0,21
+71545,10585.81285,226216.2897,0,21
+71546,23635.95053,234959.543,0,21
+71547,16105.11481,193274.0726,0,21
+71548,17352.6552,195826.5043,0,21
+71549,17355.83236,304375.82,0,21
+71550,17442.06604,226570.6909,0,21
+71551,17462.40264,240295.8651,0,21
+71552,17523.95422,252815.0027,0,21
+71553,17553.58252,249605.5029,0,21
+71554,17592.83916,250524.9377,0,21
+71555,17657.23227,252509.3182,0,21
+71556,17681.10301,254732.702,0,21
+71557,17723.75055,256616.3064,0,21
+71558,17763.76099,257905.7192,0,21
+71559,17831.98933,260796.419,0,21
+71560,17829.97745,262210.9896,0,21
+71561,17936.50257,264186.22,0,21
+71562,17919.8396,265759.5768,715527.9831,21
+71563,17977.49366,268174.3484,0,21
+71564,18046.38063,269828.8221,0,21
+71565,18064.97384,271683.9706,0,21
+71566,18131.04969,273681.0797,0,21
+71567,18171.82861,275545.5068,0,21
+71568,18193.32731,277519.6427,0,21
+71569,18257.8725,279022.5636,0,21
+71570,18297.8641,281754.1943,0,21
+71571,18321.5788,49750.64067,0,21
+71572,18381.77992,49961.62231,0,21
+71573,0,50306.24375,0,21
+71574,0,876858.0937,0,21
+71575,0,203026.6587,0,21
+71576,69708.71665,130558.2187,0,21
+71577,2206.281947,394722.9298,0,21
+71578,11647.4313,284207.7113,0,21
+71579,25054.25778,246894.7434,0,21
+71580,357400.5151,249392.7044,0,21
+71581,18779.62589,376725.019,0,21
+71582,18779.03674,284594.9585,0,21
+71583,18821.97599,302241.4431,0,21
+71584,18799.09754,308427.7703,0,21
+71585,18845.98548,306767.4941,0,21
+71586,18820.60921,307830.2726,0,21
+71587,18817.39777,308362.8563,0,21
+71588,18886.05379,309204.64,0,21
+71589,18829.41536,310783.4482,0,21
+71590,18866.05394,311215.5206,0,21
+71591,18899.69775,312552.8867,0,21
+71592,18866.05904,313271.6693,0,21
+71593,18902.90783,314098.3806,0,21
+71594,18879.65005,315465.1485,0,21
+71595,18909.99311,316055.3347,0,21
+71596,18941.07001,317432.2072,0,21
+71597,18899.71277,317956.1036,0,21
+71598,18928.19127,319148.1674,712143.32,21
+71599,18943.64424,320192.4453,0,21
+71600,18965.00131,320791.9477,0,21
+71601,18965.00372,321720.3289,0,21
+71602,18965.00611,323158.2875,0,21
+71603,18986.2879,323715.8734,0,21
+71604,18967.49557,55402.23715,0,21
+71605,19003.05178,55616.30588,0,21
+71606,0,830925.2768,0,21
+71607,0,184169.3937,0,21
+71608,0,280269.6758,0,21
+71609,70605.03646,371691.7953,0,21
+71610,2696.622693,326529.6197,0,21
+71611,12557.7776,274698.958,0,21
+71612,25028.09547,276288.6945,0,21
+71613,18184.50888,413504.777,0,21
+71614,19051.30797,314347.879,0,21
+71615,19133.39737,339069.2886,0,21
+71616,19084.79066,335253.6146,0,21
+71617,19088.59572,339256.5242,0,21
+71618,19109.7283,337807.6823,0,21
+71619,358796.8321,338855.0795,0,21
+71620,19109.73301,340558.7355,0,21
+71621,19173.27247,340391.1379,0,21
+71622,19105.28518,341819.6499,0,21
+71623,19173.27702,342834.2126,0,21
+71624,19170.05159,343509.4896,0,21
+71625,19153.376,344334.7773,0,21
+71626,19251.2507,345277.9857,0,21
+71627,19272.23537,346310.2513,0,21
+71628,19315.60888,347379.6492,0,21
+71629,19251.25722,348139.875,0,21
+71630,19333.26348,349184.2401,0,21
+71631,19294.63284,349869.3014,0,21
+71632,19333.26775,350660.5374,0,21
+71633,19295.76356,351967.9812,0,21
+71634,19332.21876,352768.9696,709014.2272,21
+71635,19312.36482,353433.4397,0,21
+71636,19359.97046,59568.12943,0,21
+71637,19328.9259,59694.88833,0,21
+71638,19315.6299,915594.4343,0,21
+71639,0,229609.629,0,21
+71640,0,283237.3226,0,21
+71641,0,412225.2603,0,21
+71642,71371.38587,350311.604,0,21
+71643,3554.854084,293221.177,0,21
+71644,13329.0417,292199.8697,0,21
+71645,25335.8105,433230.1939,0,21
+71646,18853.54926,329616.2807,0,21
+71647,19638.99192,350906.833,0,21
+71648,19717.99132,340580.4786,0,21
+71649,19641.56724,344017.0309,0,21
+71650,19694.95336,339624.7078,0,21
+71651,19694.95521,336861.144,0,21
+71652,19664.61466,335252.4566,0,21
+71653,19694.95873,332576.1166,0,21
+71654,19698.24449,331259.9316,0,21
+71655,19721.31494,328163.3931,0,21
+71656,19675.20581,326779.091,0,21
+71657,19740.13209,324507.3568,0,21
+71658,359368.6365,321844.6504,0,21
+71659,19697.4616,320805.5852,0,21
+71660,19761.45368,317512.0498,0,21
+71661,19674.42259,316089.2445,0,21
+71662,19741.69874,313425.6161,0,21
+71663,20579.8785,311777.0203,0,21
+71664,20391.01969,309021.7459,0,21
+71665,20387.81445,308817.6049,0,21
+71666,20468.53214,306393.7051,0,21
+71667,20520.09385,304230.6356,0,21
+71668,20602.84981,54754.09451,0,21
+71669,20563.38417,54640.11518,0,21
+71670,20733.5022,54257.26631,706385.5238,21
+71671,20583.14464,925541.7255,0,21
+71672,0,215219.1532,0,21
+71673,0,100547.3674,0,21
+71674,0,394067.3415,0,21
+71675,71902.15593,222650.7566,0,21
+71676,3932.980121,228914.4013,0,21
+71677,13557.1023,365651.539,0,21
+71678,25416.52606,256861.2689,0,21
+71679,19075.93717,273570.4652,0,21
+71680,19760.48807,279694.9706,0,21
+71681,19841.46865,273265.9238,0,21
+71682,19817.04605,270600.3236,0,21
+71683,19807.17967,268882.842,0,21
+71684,19817.69781,265949.5965,0,21
+71685,21954.21887,264059.5319,0,21
+71686,21023.83243,261648.7284,0,21
+71687,21143.15094,259359.4501,0,21
+71688,21331.31618,256706.8626,0,21
+71689,21313.96332,255021.8765,0,21
+71690,21370.44909,251944.1978,0,21
+71691,21399.85626,250000.0547,0,21
+71692,21350.04447,247456.4183,0,21
+71693,21511.97594,245520.3511,0,21
+71694,21475.05845,242356.1613,0,21
+71695,21514.41138,240240.0331,0,21
+71696,21544.68694,237951.1331,0,21
+71697,361235.8922,235252.3645,0,21
+71698,21657.99965,233063.2674,0,21
+71699,21567.50013,229834.3098,0,21
+71700,21724.6628,226318.0555,0,21
+71701,21652.16392,46996.7606,0,21
+71702,21660.95523,46928.1255,0,21
+71703,21835.08915,47286.16301,0,21
+71704,21761.4425,678296.4449,0,21
+71705,0,85147.82516,0,21
+71706,0,178924.1215,704146.7834,21
+71707,0,242052.0932,0,21
+71708,71972.5695,182506.4864,0,21
+71709,3975.300703,314842.4471,0,21
+71710,13787.96872,215850.6314,0,21
+71711,25469.89006,239010.4818,0,21
+71712,19203.3158,248882.7068,0,21
+71713,19900.3703,244724.7649,0,21
+71714,21197.4413,246404.5541,0,21
+71715,23148.05038,247635.3087,0,21
+71716,21684.659,249288.1576,0,21
+71717,22219.63897,249989.3345,0,21
+71718,22217.90459,251779.556,0,21
+71719,22289.71363,252786.9674,0,21
+71720,22302.4814,254049.5548,0,21
+71721,22344.82579,255577.2514,0,21
+71722,22374.33429,256592.3556,0,21
+71723,22322.24877,258136.2921,0,21
+71724,22501.72759,259178.6055,0,21
+71725,22373.76486,260843.5055,0,21
+71726,22481.46707,261761.8201,0,21
+71727,22498.91198,262934.7264,0,21
+71728,22496.79732,264545.7875,0,21
+71729,22510.79617,265551.6464,0,21
+71730,22520.6182,266551.1068,0,21
+71731,22630.48405,268603.21,0,21
+71732,22552.65996,270223.9672,0,21
+71733,22656.62915,272050.4304,0,21
+71734,22593.95417,51683.10836,0,21
+71735,22692.48194,52012.76529,0,21
+71736,362369.3382,52000.38392,0,21
+71737,22743.45379,836732.9641,0,21
+71738,0,165626.3091,0,21
+71739,0,87438.99375,0,21
+71740,0,321324.8366,0,21
+71741,72018.40108,351030.3863,0,21
+71742,4031.329428,258108.331,702294.8485,21
+71743,14122.03239,280726.8439,0,21
+71744,25394.00188,290292.4526,0,21
+71745,19306.67532,286729.7427,0,21
+71746,24885.54887,288117.3741,0,21
+71747,22177.52678,289654.8201,0,21
+71748,22865.12151,290135.4025,0,21
+71749,22944.85432,291981.7663,0,21
+71750,22987.63433,292887.3364,0,21
+71751,23072.73283,294259.8282,0,21
+71752,22925.06001,295119.9689,0,21
+71753,23190.44719,296875.4283,0,21
+71754,22931.33499,298206.7865,0,21
+71755,23167.94723,299011.1376,0,21
+71756,23049.43115,300442.9567,0,21
+71757,23151.71378,301563.9061,0,21
+71758,23150.9036,303312.3765,0,21
+71759,23150.37776,303673.5559,0,21
+71760,23152.23615,305415.437,0,21
+71761,23200.97956,304394.5772,0,21
+71762,23292.08967,303414.149,0,21
+71763,23193.17063,301579.6616,0,21
+71764,23350.49678,301681.4071,0,21
+71765,23328.06871,299870.0502,0,21
+71766,23453.8376,299189.721,0,21
+71767,23362.28204,54719.05562,0,21
+71768,23509.97079,54686.71588,0,21
+71769,23479.36765,54637.33583,0,21
+71770,23552.39781,920877.2576,0,21
+71771,0,143750.8809,0,21
+71772,0,58092.48782,0,21
+71773,0,489862.7397,0,21
+71774,72492.63423,250913.3054,0,21
+71775,344184.8099,285266.2031,0,21
+71776,14705.03139,293699.0574,0,21
+71777,25582.67304,287775.5404,0,21
+71778,24979.46021,287004.3904,700439.2077,21
+71779,23508.60432,285569.4041,0,21
+71780,23701.62367,285952.9194,0,21
+71781,23994.10136,284706.3774,0,21
+71782,24086.0789,283794.2895,0,21
+71783,23972.41428,282245.5101,0,21
+71784,24085.87132,281629.1361,0,21
+71785,24201.76032,280159.9299,0,21
+71786,24125.19241,279219.6935,0,21
+71787,24217.71339,278014.6695,0,21
+71788,24125.20865,277207.1828,0,21
+71789,24378.21474,274492.1896,0,21
+71790,24178.98683,274107.3333,0,21
+71791,24362.29451,272553.9329,0,21
+71792,24298.40785,271721.5916,0,21
+71793,24419.54424,270476.0127,0,21
+71794,24339.85834,269277.4252,0,21
+71795,24435.46113,268397.8455,0,21
+71796,24458.6943,267284.5209,0,21
+71797,24455.13339,265976.0794,0,21
+71798,24496.31967,264587.7063,0,21
+71799,24526.41075,264009.0018,0,21
+71800,24551.21036,51130.40348,0,21
+71801,24579.5881,50963.96855,0,21
+71802,24569.10322,50950.21321,0,21
+71803,24683.88802,734561.9837,0,21
+71804,0,81798.43034,0,21
+71805,0,221432.1644,0,21
+71806,0,313966.428,0,21
+71807,73649.39226,237375.9888,0,21
+71808,6595.924731,259446.7348,0,21
+71809,13881.84371,253005.5218,0,21
+71810,29143.19897,252085.6288,0,21
+71811,26159.02533,250795.8567,0,21
+71812,23983.89268,249564.6169,0,21
+71813,24843.72958,248748.9325,0,21
+71814,364734.4913,246708.0693,698522.6215,21
+71815,24958.20431,246031.3479,0,21
+71816,25062.2794,244915.2986,0,21
+71817,24946.56121,243035.0251,0,21
+71818,25095.23322,242269.419,0,21
+71819,25083.67029,240321.9425,0,21
+71820,337974.2869,238135.5141,0,21
+71821,25179.98555,238235.7162,0,21
+71822,39956.65027,238501.2075,0,21
+71823,89481.58513,238259.1541,0,21
+71824,122258.1431,238043.8646,0,21
+71825,87290.23694,238567.5977,0,21
+71826,97388.83217,238267.7582,0,21
+71827,98484.48752,238818.5279,0,21
+71828,98695.42,237682.9525,0,21
+71829,99543.28925,238848.1742,0,21
+71830,99790.16547,238298.5815,0,21
+71831,100420.355,238819.3591,0,21
+71832,101228.0928,238205.2264,0,21
+71833,101390.7211,48482.39189,0,21
+71834,102208.6035,48395.41321,0,21
+71835,102936.0009,0,0,21
+71836,103009.8467,660662.7699,0,21
+71837,77725.10979,167059.1157,0,21
+71838,78341.96863,140199.7022,0,21
+71839,78509.92835,297279.4034,0,21
+71840,155852.6407,234587.2675,0,21
+71841,91236.4979,238090.3579,0,21
+71842,92443.99158,239571.0155,0,21
+71843,115701.355,239433.4567,0,21
+71844,107610.1494,239053.6101,0,21
+71845,108055.812,239631.9962,0,21
+71846,109802.3727,239509.4696,0,21
+71847,109711.8802,239631.3282,0,21
+71848,110523.4919,239600.9513,0,21
+71849,111300.705,239557.3133,0,21
+71850,27246.19767,239650.4842,0,21
+71851,27264.98186,239580.6641,696737.2896,21
+71852,27345.47217,239577.8142,0,21
+71853,27421.56298,240125.3147,0,21
+71854,27399.22065,239731.5204,0,21
+71855,27625.25998,239785.453,0,21
+71856,367337.3178,239802.1934,0,21
+71857,27658.53879,239874.0629,0,21
+71858,27744.60155,240189.5251,0,21
+71859,27700.93621,239898.2951,0,21
+71860,438041.3813,239944.7171,0,21
+71861,45351.50257,240362.1651,0,21
+71862,42762.0592,240293.9988,0,21
+71863,132218.6449,240275.4046,0,21
+71864,140627.6192,239949.3474,0,21
+71865,112706.5209,240499.7444,0,21
+71866,121250.5046,48605.85911,0,21
+71867,122367.5185,0,0,21
+71868,122500.5963,0,0,21
+71869,123096.902,795592.7404,0,21
+71870,95231.98669,62030.30725,0,21
+71871,95592.89587,165090.6302,0,21
+71872,96081.56831,309091.6981,0,21
+71873,177220.8405,230451.0672,0,21
+71874,115303.0148,241766.4557,0,21
+71875,107253.0836,241892.0093,0,21
+71876,138801.826,242076.1802,0,21
+71877,125580.7322,241760.6975,0,21
+71878,127521.7788,241938.4563,0,21
+71879,128603.6995,242267.1372,0,21
+71880,129300.454,241920.5293,0,15.6
+71881,128829.4657,242313.9683,0,15.6
+71882,129319.4064,241931.4051,0,15.6
+71883,129510.2674,242502.8352,0,15.6
+71884,129349.6971,242298.5829,0,15.6
+71885,129410.8879,241674.5393,0,15.6
+71886,130104.23,242705.1511,0,15.6
+71887,129544.8892,241890.0632,695029.1456,15.6
+71888,130046.347,242369.237,0,15.6
+71889,129912.6337,242731.8767,0,15.6
+71890,29254.62631,242134.7366,0,15.6
+71891,29380.56073,242312.1402,0,15.6
+71892,29270.68795,242297.5824,0,15.6
+71893,29284.5411,243041.7565,0,15.6
+71894,29384.36674,242572.0959,0,15.6
+71895,29362.9967,242136.32,0,15.6
+71896,29290.32139,243179.5805,0,15.6
+71897,498402.7839,242114.2778,0,15.6
+71898,375377.352,243295.057,0,15.6
+71899,50456.11593,3.149670329,0,15.6
+71900,155949.8745,0,0,15.6
+71901,146716.4008,129307.8054,0,15.6
+71902,123948.0979,696411.7025,0,15.6
+71903,102411.1912,90168.68996,0,15.6
+71904,102466.7165,172016.388,0,15.6
+71905,102253.4346,306985.387,0,15.6
+71906,183869.6648,232876.2402,0,15.6
+71907,122794.4357,243466.5359,0,15.6
+71908,113822.181,243461.0342,0,15.6
+71909,144281.4498,243244.0135,0,15.6
+71910,130161.6288,244082.8907,0,15.6
+71911,132546.8925,243455.4641,0,15.6
+71912,132385.496,243751.0996,0,15.6
+71913,132843.1627,243824.0476,0,15.6
+71914,132737.269,243606.261,0,15.6
+71915,132626.8707,243926.025,0,15.6
+71916,132881.5366,243801.4046,0,15.6
+71917,133181.0904,243986.4714,0,15.6
+71918,132846.7097,243874.3875,0,15.6
+71919,133291.1197,244073.7361,0,15.6
+71920,133425.5926,244005.103,0,15.6
+71921,132955.8316,243797.3846,0,15.6
+71922,133707.5524,244383.0914,0,15.6
+71923,133450.067,243934.8906,692915.8549,15.6
+71924,133598.5882,244356.3946,0,15.6
+71925,133588.0849,244073.769,0,15.6
+71926,133960.5208,244405.3071,0,15.6
+71927,29785.02101,244177.7805,0,15.6
+71928,29721.8565,244627.3424,0,15.6
+71929,29849.02919,244389.0044,0,15.6
+71930,29723.76266,244243.1554,0,15.6
+71931,29797.34696,195476.0538,0,15.6
+71932,29762.7309,0,0,15.6
+71933,29904.77387,130439.4873,0,15.6
+71934,523005.5774,20146.0615,0,15.6
+71935,32953.51131,730596.2385,0,15.6
+71936,22925.9461,99514.61268,0,15.6
+71937,471121.748,164650.3965,0,15.6
+71938,120473.0125,312444.0678,0,15.6
+71939,178847.3265,234218.4245,0,15.6
+71940,126268.0427,245726.0352,0,15.6
+71941,118449.5349,249496.3331,0,15.6
+71942,145337.1393,251853.1683,0,15.6
+71943,132123.9768,254896.1239,0,15.6
+71944,133424.3247,693029.815,0,15.6
+71945,132884.8367,258965.7505,0,15.6
+71946,132416.4204,261567.8107,0,15.6
+71947,131957.1287,263489.2153,0,15.6
+71948,131231.4247,265915.2085,0,15.6
+71949,131112.0143,267936.482,0,15.6
+71950,130261.515,270367.1141,0,15.6
+71951,129872.1639,272316.8254,0,15.6
+71952,129135.5325,274669.0655,0,15.6
+71953,128883.8229,276599.4918,0,15.6
+71954,128499.6219,278960.5665,0,15.6
+71955,127816.4328,281481.1284,0,15.6
+71956,127038.6814,282915.979,0,15.6
+71957,127000.4118,285404.8325,0,15.6
+71958,126301.7249,288051.6711,0,15.6
+71959,125741.1147,289439.2771,690985.1631,15.6
+71960,125403.0578,291949.1363,0,15.6
+71961,124688.36,293026.551,0,15.6
+71962,124533.5658,296029.3567,0,15.6
+71963,123582.6884,241777.925,0,15.6
+71964,28609.5284,244752.9041,0,15.6
+71965,28527.97723,582213.1965,0,15.6
+71966,28598.07048,29208.07896,0,15.6
+71967,28368.51288,53613.1476,0,15.6
+71968,28399.64716,952250.9286,0,15.6
+71969,0,214124.5644,0,15.6
+71970,0,133291.8928,0,15.6
+71971,0,425064.6952,0,15.6
+71972,77848.77802,302494.2631,0,15.6
+71973,456396.0325,318236.4679,0,15.6
+71974,26403.42392,321334.7646,0,15.6
+71975,54307.55232,323871.6983,0,15.6
+71976,453974.859,325766.6362,0,15.6
+71977,147798.7786,327716.3867,0,15.6
+71978,105729.9983,329652.0641,0,15.6
+71979,116844.7115,331957.3787,0,15.6
+71980,116035.7769,334302.5358,0,15.6
+71981,115747.3197,335890.8554,0,15.6
+71982,114888.8054,337844.6813,0,15.6
+71983,114802.7963,341058.5994,0,15.6
+71984,113942.3117,341973.8655,0,15.6
+71985,113337.4358,343875.545,0,15.6
+71986,113234.6211,783439.4087,0,15.6
+71987,112184.4423,348586.5212,0,15.6
+71988,112137.1836,350251.8616,0,15.6
+71989,111305.6101,353003.4532,0,15.6
+71990,111009.1292,355075.5253,0,15.6
+71991,110259.382,356586.9955,0,15.6
+71992,109956.58,359248.1398,0,15.6
+71993,109176.5977,361139.2688,0,15.6
+71994,109155.9235,363123.1124,0,15.6
+71995,108325.2296,302357.3652,689264.4281,15.6
+71996,107792.584,303716.9687,0,15.6
+71997,107402.9674,460413.4479,0,15.6
+71998,106952.7197,44172.4586,0,15.6
+71999,106364.9778,69012.37928,0,15.6
+72000,105986.3301,958083.1774,0,15.6
+72001,106172.7203,250717.8852,0,15.6
+72002,79676.43071,292572.1815,0,15.6
+72003,0,432376.2116,0,15.6
+72004,0,366824.8649,0,15.6
+72005,74364.15721,372497.422,0,15.6
+72006,7831.606606,372013.2861,0,15.6
+72007,21119.86365,371484.9305,0,15.6
+72008,33357.72674,369872.7081,0,15.6
+72009,25780.18282,370398.0954,0,15.6
+72010,27024.3144,368595.5999,0,15.6
+72011,27116.00895,368119.7204,0,15.6
+72012,366883.3853,367366.8835,0,15.6
+72013,27228.78096,366749.7918,0,15.6
+72014,27135.07301,365571.9879,0,15.6
+72015,27169.61993,365270.3568,0,15.6
+72016,27263.33326,364756.7334,0,15.6
+72017,423764.3427,363606.5485,0,15.6
+72018,47208.17638,362402.3945,0,15.6
+72019,40417.40297,362503.8265,0,15.6
+72020,105993.6705,360934.3107,0,15.6
+72021,142782.7789,360532.7308,0,15.6
+72022,101063.5718,359857.8312,0,15.6
+72023,112540.4681,358933.2534,0,15.6
+72024,112728.5309,358560.2509,0,15.6
+72025,112983.2483,357155.9602,0,15.6
+72026,113261.1102,356645.9595,0,15.6
+72027,113117.6628,293681.9253,0,15.6
+72028,113936.234,292877.5005,0,15.6
+72029,113679.1188,448433.597,0,15.6
+72030,113857.5241,39961.26662,687959.3226,15.6
+72031,114442.3668,64926.6908,0,15.6
+72032,114431.616,902377.2013,0,15.6
+72033,114714.8589,213045.8791,0,15.6
+72034,115133.5825,284916.0468,0,15.6
+72035,87386.55041,402086.5362,0,15.6
+72036,87939.43108,343429.8665,0,15.6
+72037,87686.60764,348787.0355,0,15.6
+72038,164453.1895,348457.3554,0,15.6
+72039,98990.37845,346978.5879,0,15.6
+72040,109731.271,346824.4178,0,15.6
+72041,123500.989,345385.7585,0,15.6
+72042,115950.5696,345117.0479,0,15.6
+72043,117232.2908,344099.6935,0,15.6
+72044,117662.1206,343355.4909,0,15.6
+72045,117962.2211,342521.1357,0,15.6
+72046,118243.8481,341574.1692,0,15.6
+72047,28219.22167,341149.0163,0,15.6
+72048,367990.1067,340117.8316,0,15.6
+72049,28125.75926,339557.7221,0,15.6
+72050,28346.17687,338317.2466,0,15.6
+72051,28162.52337,337768.6422,0,15.6
+72052,28418.81885,337236.5873,0,15.6
+72053,28210.81016,336117.8459,0,15.6
+72054,28422.31071,334984.2049,0,15.6
+72055,28324.01846,335169.7807,0,15.6
+72056,466109.7875,333347.1646,0,15.6
+72057,39421.62844,333564.2383,0,15.6
+72058,46522.40333,331832.6659,0,15.6
+72059,129146.3828,271721.0305,0,15.6
+72060,146452.0596,270744.6386,0,15.6
+72061,114081.8939,425279.93,0,15.6
+72062,124565.3827,33105.54834,0,15.6
+72063,125565.089,60961.85441,0,15.6
+72064,126837.6509,834451.9277,0,15.6
+72065,127722.8785,168013.596,686935.1657,15.6
+72066,128551.9457,282895.4052,0,15.6
+72067,129675.3608,364920.4795,0,15.6
+72068,101518.7308,317518.1272,0,15.6
+72069,102087.3885,321342.0138,0,15.6
+72070,103171.3808,320305.4499,0,15.6
+72071,183627.8408,319687.5162,0,15.6
+72072,122106.4448,317325.8596,0,15.6
+72073,126260.9023,317476.0798,0,15.6
+72074,144253.395,315550.2936,0,15.6
+72075,136885.3746,314683.9685,0,15.6
+72076,139365.5518,313711.8018,0,15.6
+72077,139804.13,312013.9962,0,15.6
+72078,141807.6357,311631.2729,0,15.6
+72079,141920.6305,310415.5892,0,15.6
+72080,143529.9343,308595.8986,0,15.6
+72081,144526.255,308278.5757,0,15.6
+72082,145700.931,306642.1058,0,15.6
+72083,146411.7578,305383.328,0,15.6
+72084,487941.7037,305259.4349,0,15.6
+72085,148232.1053,302709.5862,0,15.6
+72086,31576.13986,302785.4416,0,15.6
+72087,31665.23318,300994.8896,0,15.6
+72088,31809.48066,299734.0513,0,15.6
+72089,31866.74716,299473.0107,0,15.6
+72090,32150.52259,297224.0027,0,15.6
+72091,568123.2468,240693.3577,0,15.6
+72092,32272.0789,239778.1516,0,15.6
+72093,61120.65811,388984.6175,0,15.6
+72094,223796.6958,27391.34061,0,15.6
+72095,153028.1067,51534.73377,0,15.6
+72096,158487.4121,61094.98976,0,15.6
+72097,162102.9588,897875.8496,0,15.6
+72098,163361.4728,175662.0043,0,15.6
+72099,164569.6686,124513.0159,0,15.6
+72100,165181.7102,394213.3584,686138.8154,15.6
+72101,133307.1908,269055.9199,0,15.6
+72102,134082.2773,285171.5832,0,15.6
+72103,211508.1386,283426.6501,0,15.6
+72104,156514.9934,283422.7923,0,15.6
+72105,168218.8482,282141.618,0,15.6
+72106,174924.6188,280943.7391,0,15.6
+72107,173155.1819,279694.3965,0,15.6
+72108,174462.4706,278419.985,0,15.6
+72109,175349.7332,277008.7715,0,15.6
+72110,176382.8063,276194.6503,0,15.6
+72111,178105.1891,274119.165,0,15.6
+72112,178690.7846,273922.1944,0,15.6
+72113,179989.6792,271751.0913,0,15.6
+72114,181098.8707,270716.8617,0,15.6
+72115,182242.9596,269524.0233,0,15.6
+72116,183559.9271,268093.9093,0,15.6
+72117,184464.4283,266639.73,0,15.6
+72118,185771.1553,265038.8083,0,15.6
+72119,186552.6982,263786.4667,0,15.6
+72120,528374.0332,261211.2517,0,15.6
+72121,35969.57925,261914.6433,0,15.6
+72122,36123.60592,260904.0056,0,15.6
+72123,36082.52322,210369.1359,0,15.6
+72124,36204.85151,209656.8273,0,15.6
+72125,660760.5272,350428.285,0,15.6
+72126,50678.14441,231123.7654,0,15.6
+72127,115793.5625,49006.67831,0,15.6
+72128,258838.4111,57678.70388,0,15.6
+72129,183366.062,51589.67279,0,15.6
+72130,194175.3433,795524.6298,0,15.6
+72131,194772.8599,118577.6966,0,15.6
+72132,196156.0788,157426.2662,0,15.6
+72133,159089.887,342673.738,0,15.6
+72134,160032.0528,250038.4339,0,15.6
+72135,242068.4171,263195.5834,685657.2793,15.6
+72136,192140.8493,263322.0161,0,15.6
+72137,190258.9806,263460.3643,0,15.6
+72138,204125.6887,263195.9363,0,15.6
+72139,199632.9085,263774.4129,0,15.6
+72140,200301.9288,263683.8371,0,15.6
+72141,639046.1186,263710.7499,0,15.6
+72142,201483.5422,264085.0941,0,15.6
+72143,202664.3615,263974.8306,0,15.6
+72144,202707.7864,264264.8717,0,15.6
+72145,203456.9343,264143.1843,0,15.6
+72146,204424.2841,264362.7897,0,15.6
+72147,204942.7302,264188.8453,0,15.6
+72148,205326.5773,264729.3545,0,15.6
+72149,205939.908,264453.534,0,15.6
+72150,206997.662,265154.3425,0,15.6
+72151,206890.7746,264357.2781,0,15.6
+72152,208270.1107,265421.9042,0,15.6
+72153,208192.4314,265041.5527,0,15.6
+72154,209538.2245,264829.5388,0,15.6
+72155,38257.37636,213738.5992,0,15.6
+72156,378401.7436,212750.0162,0,15.6
+72157,38501.37046,355120.0725,0,15.6
+72158,662885.2864,234653.3217,0,15.6
+72159,57974.62216,263042.1113,0,15.6
+72160,168289.9831,58123.31465,0,15.6
+72161,261278.894,51946.53408,0,15.6
+72162,207447.5452,52684.72782,0,15.6
+72163,215173.9167,810749.8104,0,15.6
+72164,215834.0765,125046.0073,0,15.6
+72165,177591.7416,155452.7042,0,15.6
+72166,177819.5958,350988.3399,0,15.6
+72167,262216.9947,254340.9733,0,15.6
+72168,218305.9824,267653.6258,0,15.6
+72169,207999.1903,268699.9471,0,15.6
+72170,224735.0744,268874.3571,685498.1869,15.6
+72171,219703.2231,268472.3651,0,15.6
+72172,221179.8187,269093.2202,0,15.6
+72173,221281.7132,268481.1765,0,15.6
+72174,221832.2589,269261.9378,0,15.6
+72175,222682.1436,268889.1805,0,15.6
+72176,223109.8394,269172.2136,0,15.6
+72177,224027.809,269680.5275,0,15.6
+72178,224061.0204,268831.6919,0,15.6
+72179,225302.3856,269721.8204,0,15.6
+72180,225545.1325,269736.8545,0,15.6
+72181,227113.3149,269625.3456,0,15.6
+72182,227821.4568,270155.6696,0,15.6
+72183,229638.8974,270294.12,0,15.6
+72184,230726.7495,270375.4129,0,15.6
+72185,231930.5175,270815.0692,0,15.6
+72186,233140.9617,271163.4511,0,15.6
+72187,234776.2485,218250.9481,0,15.6
+72188,41458.62859,218422.3316,0,15.6
+72189,41525.3328,362817.294,0,15.6
+72190,41755.1448,241056.0309,0,15.6
+72191,717656.4347,268259.9664,0,15.6
+72192,477417.3005,278758.7689,0,15.6
+72193,160720.5289,52674.68604,0,15.6
+72194,301493.0156,53215.17748,0,15.6
+72195,238087.8652,53331.2897,0,15.6
+72196,246633.403,835125.1452,0,15.6
+72197,204757.7081,136318.2017,0,15.6
+72198,206041.7425,152104.3073,0,15.6
+72199,293319.375,362904.8661,0,15.6
+72200,261431.0616,260721.5805,0,15.6
+72201,238519.9898,275088.6247,0,15.6
+72202,259044.1989,275743.7473,0,15.6
+72203,256097.512,275513.4122,0,15.6
+72204,256737.914,276553.1494,0,15.6
+72205,257959.5514,275945.7484,685126.1799,15.6
+72206,259573.6188,276955.2945,0,15.6
+72207,260678.2583,276658.5421,0,15.6
+72208,261736.4613,277215.3105,0,15.6
+72209,263804.9142,277142.4286,0,15.6
+72210,264312.9596,277789.2031,0,15.6
+72211,265856.4022,277745.4792,0,15.6
+72212,267846.3668,278251.7092,0,15.6
+72213,268085.0559,278367.6057,0,15.6
+72214,270174.8836,278417.0443,0,15.6
+72215,271270.0457,279309.6786,0,15.6
+72216,272707.8431,279250.5586,0,15.6
+72217,274217.6503,279296.7564,0,15.6
+72218,274874.81,279956.078,0,15.6
+72219,277036.2905,226084.3515,0,15.6
+72220,278104.6583,226445.9594,0,15.6
+72221,46614.50258,373961.4093,0,15.6
+72222,46868.27406,250022.2528,0,15.6
+72223,46857.54045,277212.248,0,15.6
+72224,804643.3652,287922.9315,0,15.6
+72225,290378.9096,281107.0715,0,15.6
+72226,114584.8696,54282.40298,0,15.6
+72227,377661.6873,54398.88592,0,15.6
+72228,620141.7922,54426.70238,0,15.6
+72229,243432.5893,867977.9369,0,15.6
+72230,244270.4375,151905.253,0,15.6
+72231,336969.1115,147009.4999,0,15.6
+72232,307681.1119,380099.1843,0,15.6
+72233,289941.8445,269826.4968,0,15.6
+72234,297310.4001,285201.7929,0,15.6
+72235,301588.0894,286311.8602,0,15.6
+72236,300409.0666,285764.1793,0,15.6
+72237,302321.9661,286798.9564,0,15.6
+72238,303497.0862,286819.517,0,15.6
+72239,304678.1376,287085.101,0,15.6
+72240,306307.4831,287058.3702,684552.4075,17.8
+72241,306202.3057,287724.4455,0,17.8
+72242,306475.4184,287034.2385,0,17.8
+72243,306555.7952,287837.7673,0,17.8
+72244,307009.0208,287876.2953,0,17.8
+72245,306603.9487,287925.3205,0,17.8
+72246,307168.8036,287993.1235,0,17.8
+72247,307081.4753,288267.3123,0,17.8
+72248,307446.7923,288711.6299,0,17.8
+72249,307564.1432,288318.9081,0,17.8
+72250,307571.469,288905.2572,0,17.8
+72251,307657.8281,233920.935,0,17.8
+72252,307880.7149,233913.0629,0,17.8
+72253,308006.7826,385176.5726,0,17.8
+72254,50187.18654,258675.0781,0,17.8
+72255,50286.36062,285749.3698,0,17.8
+72256,756583.4659,295751.3069,0,17.8
+72257,244926.6678,289711.6227,0,17.8
+72258,234128.484,290250.3535,0,17.8
+72259,351998.0448,55549.38629,0,17.8
+72260,306936.3099,55736.9317,0,17.8
+72261,258989.456,55591.7401,0,17.8
+72262,259310.738,895000.073,0,17.8
+72263,352244.3636,165033.213,0,17.8
+72264,662406.8804,142633.4849,0,17.8
+72265,309077.0905,393053.0548,0,17.8
+72266,305474.6251,276110.4134,0,17.8
+72267,314312.8043,292214.492,0,17.8
+72268,309970.7701,292596.844,0,17.8
+72269,311072.8275,292775.219,0,17.8
+72270,310413.5061,292476.4259,0,17.8
+72271,311580.0976,293383.6074,0,17.8
+72272,310301.2624,292887.0029,0,17.8
+72273,311286.6545,293532.0019,0,17.8
+72274,311229.9009,292948.5964,0,17.8
+72275,311619.6287,294019.9778,684026.402,17.8
+72276,310958.0781,293589.4027,0,17.8
+72277,312059.5057,293913.0241,0,17.8
+72278,311909.2632,294189.7928,0,17.8
+72279,311690.336,293802.2215,0,17.8
+72280,312065.3738,295022.9051,0,17.8
+72281,312122.868,294182.9344,0,17.8
+72282,311895.8775,294765.6118,0,17.8
+72283,312851.0553,239049.0842,0,17.8
+72284,312106.9578,238747.3955,0,17.8
+72285,312901.6032,394101.314,0,17.8
+72286,51123.19293,263696.0222,0,17.8
+72287,51160.16901,292044.3422,0,17.8
+72288,764541.1712,302272.8554,0,17.8
+72289,259296.3676,295316.4366,0,17.8
+72290,230855.3461,296301.2694,0,17.8
+72291,359195.454,296229.2155,0,17.8
+72292,310950.345,56411.30004,0,17.8
+72293,262654.7508,56510.24039,0,17.8
+72294,262858.1065,56607.78613,0,17.8
+72295,357882.7936,915546.7496,0,17.8
+72296,326025.7611,174689.1898,0,17.8
+72297,314981.3258,140177.03,0,17.8
+72298,309869.7205,403808.1794,0,17.8
+72299,318357.2615,282607.4004,0,17.8
+72300,654904.1063,298598.411,0,20
+72301,314172.5143,300060.5831,0,20
+72302,313148.6292,299349.1052,0,20
+72303,312684.2184,300331.2882,0,20
+72304,311474.4688,299713.3295,0,20
+72305,310662.1538,300622.8848,0,20
+72306,309480.0335,300115.6218,0,20
+72307,309350.0146,300629.6412,0,20
+72308,307793.5225,300684.982,0,20
+72309,307465.7184,300766.5261,0,20
+72310,306088.515,301212.0353,683541.6826,20
+72311,305624.4113,301369.3218,0,20
+72312,304504.3267,301171.3404,0,20
+72313,303611.7899,301719.5092,0,20
+72314,303194.625,301800.2543,0,20
+72315,301823.8019,244719.1004,0,20
+72316,301124.3517,245305.3498,0,20
+72317,300399.2955,403589.3099,0,20
+72318,50139.97682,270826.9568,0,20
+72319,49814.00581,299130.6569,0,20
+72320,49897.6682,309359.1437,0,20
+72321,823656.5731,302778.9373,0,20
+72322,351991.4592,303486.2538,0,20
+72323,111716.1321,303698.76,0,20
+72324,371995.2096,303967.4711,0,20
+72325,244725.348,57678.56147,0,20
+72326,242234.9723,57465.62707,0,20
+72327,339201.5417,57768.2596,0,20
+72328,302250.1154,940954.1509,0,20
+72329,283738.2863,188373.5611,0,20
+72330,289416.5049,136580.8351,0,20
+72331,290987.1482,435271.9759,0,20
+72332,287909.9872,288786.7604,0,20
+72333,287334.3911,307477.1692,0,20
+72334,286120.7407,312083.0056,0,20
+72335,285380.9842,311913.3965,0,20
+72336,624233.3511,311548.1685,0,20
+72337,283337.4431,311795.2598,0,20
+72338,282934.4456,312170.3622,0,20
+72339,281786.0387,312039.8765,0,20
+72340,280680.2124,312993.093,0,20
+72341,280545.6169,312153.5062,0,20
+72342,279195.7309,313090.2724,0,20
+72343,278290.7364,313004.344,0,20
+72344,277483.1168,313344.1295,0,20
+72345,276923.7142,313686.117,683087.9446,20
+72346,275846.0342,313702.9574,0,20
+72347,274567.9075,256172.6961,0,20
+72348,274517.988,255560.4922,0,20
+72349,273186.7243,417806.2596,0,20
+72350,272278.3989,282555.9064,0,20
+72351,47001.15977,312397.3933,0,20
+72352,47087.12432,320776.7167,0,20
+72353,46903.25489,315029.655,0,20
+72354,785338.9161,315898.572,0,20
+72355,253511.707,316248.6265,0,20
+72356,104461.4887,316786.0083,0,20
+72357,307970.5775,315867.1046,0,20
+72358,209800.9981,63864.7825,0,20
+72359,313455.7827,64047.18908,0,20
+72360,275001.4874,64179.19692,0,21
+72361,247513.1174,966947.4201,0,21
+72362,265380.4932,203649.191,0,21
+72363,261631.6632,142450.1029,0,21
+72364,260904.447,435756.5453,0,21
+72365,259819.0095,306774.2656,0,21
+72366,260198.7809,326155.8646,0,21
+72367,259668.3267,328774.9536,0,21
+72368,259392.9695,331434.4326,0,21
+72369,259331.6925,333875.7021,0,21
+72370,258984.0855,335366.622,0,21
+72371,258274.3015,338044.9173,0,21
+72372,598249.8616,340254.6939,0,21
+72373,258367.7319,364764.4085,0,21
+72374,257616.1784,345041.0051,0,21
+72375,257811.6722,349057.8476,0,21
+72376,257221.3819,354990.6946,0,21
+72377,257149.4225,357581.4677,0,21
+72378,256576.56,358612.6719,0,21
+72379,256763.8006,297814.6773,0,21
+72380,256315.2474,300115.137,0,21
+72381,255924.0835,467508.7722,0,21
+72382,255796.6024,342327.9885,0,21
+72383,255594.0297,373543.4863,682664.5115,21
+72384,44844.75933,374424.4355,0,21
+72385,44734.04554,376541.899,0,21
+72386,44761.82337,377773.1886,0,21
+72387,754807.5629,379699.906,0,21
+72388,204545.7306,381396.4541,0,21
+72389,77418.99587,384443.1778,0,21
+72390,285364.1796,385715.8408,0,21
+72391,292176.1958,73829.8503,0,21
+72392,263075.7902,74165.61592,0,21
+72393,238730.3641,984828.1515,0,21
+72394,258201.4687,256318.9695,0,21
+72395,253403.1373,324959.8172,0,21
+72396,252647.4688,454529.9624,0,21
+72397,252197.9546,396132.2775,0,21
+72398,252209.1463,404234.4221,0,21
+72399,251729.5378,406564.3155,0,21
+72400,251397.5757,408072.0289,0,21
+72401,251181.5205,411379.8611,0,21
+72402,251232.4131,412087.0968,0,21
+72403,250131.3676,407463.9468,0,21
+72404,251017.2491,408704.4054,0,21
+72405,249302.2419,411047.4232,0,21
+72406,250306.4258,412830.641,0,21
+72407,249566.112,415758.4677,0,21
+72408,249049.6122,417513.9449,0,21
+72409,249038.9171,453160.9331,0,21
+72410,248597.9072,422434.1682,0,21
+72411,248801.1326,355201.8996,0,21
+72412,247719.8621,366457.0615,0,21
+72413,247982.2033,535420.7213,0,21
+72414,587306.403,428587.78,0,21
+72415,247473.9912,443478.4726,0,21
+72416,246899.3348,448275.8712,0,21
+72417,43858.46217,447639.1557,0,21
+72418,43857.93605,450339.5289,0,21
+72419,43866.83887,451824.3432,0,21
+72420,739097.5709,453522.3591,682261.3554,21
+72421,134201.4419,451783.2743,0,21
+72422,86981.0593,449628.7104,0,21
+72423,364860.5776,520621.1114,0,21
+72424,247912.5401,84029.06045,0,21
+72425,233015.4168,1117175.897,0,21
+72426,254232.9025,272827.6976,0,21
+72427,249205.6322,415400.2182,0,21
+72428,248845.0691,465270.2103,0,21
+72429,249840.1534,440109.3519,0,21
+72430,249854.1644,434524.8536,0,21
+72431,249922.0344,432185.8034,0,21
+72432,249556.5212,431106.4966,0,21
+72433,249338.4262,428622.1487,0,21
+72434,249575.2078,426289.6898,0,21
+72435,249864.9902,425332.4804,0,21
+72436,250305.2424,421631.9165,0,21
+72437,250216.1776,421195.8319,0,21
+72438,250730.8508,418812.5571,0,21
+72439,249973.4661,407749.3948,0,21
+72440,250411.3207,405750.7188,0,21
+72441,250618.4464,404468.9812,0,21
+72442,250709.7524,402298.3896,0,21
+72443,250709.5051,329372.9356,0,21
+72444,251938.8293,764706.1612,0,21
+72445,251110.6639,532886.5359,0,21
+72446,251810.6631,375838.189,0,21
+72447,252425.6441,401962.722,0,21
+72448,252191.2481,401338.1412,0,21
+72449,252520.2879,400930.9851,0,21
+72450,44553.64075,395375.03,0,21
+72451,44643.59472,393762.4553,0,21
+72452,44544.97799,391708.899,0,21
+72453,705428.8475,388862.5098,0,21
+72454,157926.6997,387583.5537,0,21
+72455,171411.7929,75898.85738,0,21
+72456,677509.4562,75488.17594,681880.1597,21
+72457,230878.3649,959110.3842,0,21
+72458,259893.3348,236553.2401,0,21
+72459,254463.4832,304402.7874,0,21
+72460,254189.0416,430947.3347,0,21
+72461,254492.1216,367166.1499,0,21
+72462,254289.362,371166.0813,0,21
+72463,254750.2783,369065.6789,0,21
+72464,254611.1355,367402.0363,0,21
+72465,254377.3271,364613.0516,0,21
+72466,254796.9471,362988.1962,0,21
+72467,254821.7973,360596.7984,0,21
+72468,254906.0178,358058.1987,0,21
+72469,254959.3859,355774.1089,0,21
+72470,255075.91,353921.2553,0,21
+72471,255046.8501,351333.4463,0,21
+72472,254819.1122,349102.5863,0,21
+72473,255262.4514,347344.2091,0,21
+72474,255637.3349,344137.5033,0,21
+72475,254941.0234,273601.1754,0,21
+72476,255410.6187,271841.9515,0,21
+72477,255621.6349,438603.2493,0,21
+72478,255293.0238,298699.4771,0,21
+72479,255658.0468,328382.0508,0,21
+72480,255456.3156,326541.9721,0,21
+72481,255662.8041,327255.9108,0,21
+72482,254988.8781,328365.3472,0,21
+72483,44617.83805,329611.3823,0,21
+72484,44507.69914,331564.9715,0,21
+72485,0,357161.5524,0,21
+72486,702466.1115,334124.7383,0,21
+72487,253232.9727,65024.68195,0,21
+72488,133637.1957,69776.43802,0,21
+72489,313541.8583,860907.7222,0,21
+72490,250817.0117,177031.6294,0,21
+72491,253919.9885,318824.4014,0,21
+72492,253324.8896,387278.4207,680194.2273,21
+72493,252844.6102,348888.5661,0,21
+72494,252551.2986,353797.2243,0,21
+72495,592424.9175,355760.1561,0,21
+72496,251795.2399,357076.6122,0,21
+72497,252167.8053,358793.0166,0,21
+72498,251433.059,360252.2202,0,21
+72499,251344.7749,362016.8118,0,21
+72500,250582.6081,363758.2284,0,21
+72501,250997.8437,365128.7554,0,21
+72502,249938.4072,366731.6316,0,21
+72503,250813.0245,367748.6063,0,21
+72504,249036.7205,370585.6208,0,21
+72505,249607.9743,370770.1668,0,21
+72506,249100.0359,373339.8787,0,21
+72507,249222.4995,308773.8123,0,21
+72508,248143.8371,310395.3236,0,21
+72509,248413.4813,484997.1095,0,21
+72510,248021.8951,353816.416,0,21
+72511,247564.4884,385823.0998,0,21
+72512,247139.2344,384444.2919,0,21
+72513,247317.4102,387254.6462,0,21
+72514,246321.697,387007.1106,0,21
+72515,246485.5513,380422.8941,0,21
+72516,43209.87904,381900.0732,0,21
+72517,0,382717.5434,0,21
+72518,0,385422.2445,0,21
+72519,772258.044,68633.00094,0,21
+72520,178502.9854,68665.63134,0,21
+72521,124219.907,1016964.863,0,21
+72522,315214.9009,252386.3994,0,21
+72523,236887.8128,321417.5681,0,21
+72524,243308.7718,462291.7164,0,21
+72525,243082.3036,395547.6507,0,21
+72526,242681.6727,401930.6051,0,21
+72527,241985.8768,403449.21,0,21
+72528,241931.6297,404801.2166,678420.2344,21
+72529,241391.6952,406469.1,0,21
+72530,240717.246,406872.7372,0,21
+72531,240629.7979,409329.5535,0,21
+72532,239928.6946,409436.5389,0,21
+72533,239695.3135,410981.4839,0,21
+72534,579031.1132,412854.484,0,21
+72535,238771.5601,413364.4575,0,21
+72536,238279.6371,415362.6468,0,21
+72537,237726.6037,416169.1975,0,21
+72538,237564.9577,417918.5495,0,21
+72539,236847.9958,347316.3808,0,21
+72540,235412.31,348627.2825,0,21
+72541,233538.4194,522038.7577,0,21
+72542,232845.4252,399874.3936,0,21
+72543,231492.1603,377869.7852,0,21
+72544,230495.9803,362669.4125,0,21
+72545,229031.9085,361741.4937,0,21
+72546,228385.0358,353869.8169,0,21
+72547,227110.2235,348502.9571,0,21
+72548,225512.8028,343359.2871,0,21
+72549,0,338463.0243,0,21
+72550,0,334183.1146,0,21
+72551,87358.33164,63319.967,0,21
+72552,676871.3231,63066.67887,0,21
+72553,81200.09737,736741.4885,0,21
+72554,168262.1827,244996.1976,0,21
+72555,266229.6709,239064.8158,0,21
+72556,211491.4651,346810.1787,0,21
+72557,216060.1527,297269.3171,0,21
+72558,215089.581,295542.5034,0,21
+72559,214051.2655,292039.8784,0,21
+72560,212759.8404,287465.0848,0,21
+72561,211801.4103,283329.8199,0,21
+72562,210164.7226,279104.812,0,21
+72563,209598.2225,275248.2347,0,21
+72564,207911.5899,270544.2638,675940.584,21
+72565,207148.1835,266831.0703,0,21
+72566,206069.7779,262465.5352,0,21
+72567,204265.0615,258641.1873,0,21
+72568,203569.178,254307.6218,0,21
+72569,202455.3215,250740.9483,0,21
+72570,201193.2381,246249.9746,0,21
+72571,200299.999,190094.959,0,21
+72572,199163.3877,186438.7155,0,21
+72573,537634.1116,318719.396,0,21
+72574,197648.504,206833.6461,0,21
+72575,195841.5881,232788.6573,0,21
+72576,195461.1208,226047.2791,0,21
+72577,194358.573,222288.3816,0,21
+72578,193276.8331,217781.9155,0,21
+72579,192428.794,213779.801,0,21
+72580,191488.7649,209865.6667,0,21
+72581,154507.6713,206452.2729,0,21
+72582,0,202535.1173,0,21
+72583,79338.86329,47182.76833,0,21
+72584,31074.3973,46928.88455,0,21
+72585,26631.06082,46383.60329,0,21
+72586,647177.2528,411985.8063,0,21
+72587,75736.81282,233656.8681,0,21
+72588,82293.21484,79525.75173,0,21
+72589,249648.813,214248.0183,0,21
+72590,176871.1793,177241.7422,0,21
+72591,179535.083,170218.8366,0,21
+72592,180915.3601,169496.1952,0,21
+72593,180000.2139,166342.0898,0,21
+72594,178910.5167,163672.4861,0,21
+72595,177772.4797,160662.9848,0,21
+72596,177566.1247,157893.6348,0,21
+72597,175645.1609,155078.221,0,21
+72598,175581.2755,151707.5313,0,21
+72599,174244.7708,149790.6848,0,21
+72600,173381.4761,147473.9081,679891.368,21
+72601,172827.8785,149064.0635,0,21
+72602,172857.1181,149494.7146,0,21
+72603,171744.7578,110071.9571,0,21
+72604,171779.0933,110704.8131,0,21
+72605,171407.2039,203259.5033,0,21
+72606,170625.1022,140561.1405,0,21
+72607,170371.0333,147620.5004,0,21
+72608,170223.2759,155465.1959,0,21
+72609,169335.3832,153127.3933,0,21
+72610,169153.5887,153528.188,0,21
+72611,168863.232,153233.5257,0,21
+72612,508104.3054,154176.8886,0,21
+72613,134929.5801,154252.2554,0,21
+72614,134360.5058,154514.638,0,21
+72615,210267.8511,155535.0341,0,21
+72616,19825.72443,39376.6809,0,21
+72617,29274.39798,39427.86843,0,21
+72618,35828.99322,39453.60171,0,21
+72619,32378.14428,390178.6437,0,21
+72620,548469.3345,187587.9982,0,21
+72621,36658.03487,64923.4853,0,21
+72622,104907.2053,202084.7442,0,21
+72623,219074.7698,155753.5792,0,21
+72624,154264.1628,159530.8258,0,21
+72625,163285.927,160207.1165,0,21
+72626,163548.9758,160191.1998,0,21
+72627,162753.528,161296.0566,0,21
+72628,162319.0189,160876.7797,0,21
+72629,161684.2005,161793.6879,0,21
+72630,161564.7155,162023.3751,0,21
+72631,160809.2392,162613.6971,0,21
+72632,160254.7008,162293.243,0,21
+72633,159460.2555,163673.241,0,21
+72634,158878.1265,163545.8367,0,21
+72635,158525.408,125171.9183,0,21
+72636,157603.0196,125636.0807,679628.9999,21
+72637,157042.0418,213398.8196,0,21
+72638,156413.6143,155993.7518,0,21
+72639,156132.891,167528.8249,0,21
+72640,154914.6769,169352.4291,0,21
+72641,154676.8277,171546.7445,0,21
+72642,153850.959,171174.7879,0,21
+72643,153602.4786,172651.5337,0,21
+72644,152680.7857,173136.8141,0,21
+72645,120891.6161,174637.1602,0,21
+72646,121267.0404,175305.5601,0,21
+72647,119758.7437,176261.8721,0,21
+72648,204126.1715,177772.6421,0,21
+72649,139945.1684,39128.26079,0,21
+72650,17795.11016,39424.79193,0,21
+72651,377980.0091,373161.482,0,21
+72652,29112.3536,167798.4788,0,21
+72653,29980.12718,141344.1985,0,21
+72654,29953.18642,205228.9081,0,21
+72655,477477.0984,184064.3359,0,21
+72656,32088.46423,186519.2699,0,21
+72657,92609.91827,187592.723,0,21
+72658,188115.559,188498.5166,0,21
+72659,133434.7638,190268.5808,0,21
+72660,140015.2258,190842.2421,0,21
+72661,139943.5249,190206.654,0,21
+72662,139478.273,189180.4035,0,21
+72663,138857.0728,189107.7783,0,21
+72664,138697.9873,187692.9422,0,21
+72665,137702.7097,187040.8056,0,21
+72666,137387.8023,186503.2,0,21
+72667,137113.5651,146922.5417,0,21
+72668,136327.3655,146400.1756,0,21
+72669,136019.2667,232988.3353,0,21
+72670,135634.9031,173566.5243,0,21
+72671,134647.5058,182532.6815,0,21
+72672,134878.3612,182801.5505,0,21
+72673,134101.905,182819.4967,679380.9636,21
+72674,133391.4459,180483.9501,0,21
+72675,133342.617,180940.2588,0,21
+72676,132461.1164,179551.9123,0,21
+72677,132221.8749,178941.2111,0,21
+72678,103512.1204,178657.584,0,21
+72679,102852.1347,177622.6124,0,21
+72680,102519.7383,177062.4411,0,21
+72681,184990.976,36976.2875,0,21
+72682,116759.4962,37156.25743,0,21
+72683,111266.2556,36844.29688,0,21
+72684,141416.9026,422101.3128,0,21
+72685,25530.81077,208110.4797,0,21
+72686,27827.48137,80298.20728,0,21
+72687,27931.89129,208473.8584,0,21
+72688,27799.07739,174389.0582,0,21
+72689,27715.58214,170116.1688,0,21
+72690,399879.9565,171316.1883,0,21
+72691,27663.75221,170292.9447,0,21
+72692,83044.96397,169729.3968,0,21
+72693,500642.7495,168965.8509,0,21
+72694,122114.1977,168376.0229,0,21
+72695,124656.3083,167817.7295,0,21
+72696,125819.9401,166542.9272,0,21
+72697,125895.5421,166599.5032,0,21
+72698,125733.2576,165221.424,0,21
+72699,126030.6274,130207.4943,0,21
+72700,126037.4497,129281.3756,0,21
+72701,125834.4647,205369.5513,0,21
+72702,126297.781,153340.7496,0,21
+72703,126094.906,157091.6784,0,21
+72704,126157.6583,164497.7029,0,21
+72705,126291.4065,160591.137,0,21
+72706,126702.764,159615.935,0,21
+72707,126345.8001,159005.2428,0,21
+72708,126739.0276,158306.1088,0,21
+72709,126880.9066,157632.1787,0,21
+72710,126987.7227,157004.6434,679164.8842,21
+72711,99910.39437,156534.4002,0,21
+72712,100200.6164,155362.2027,0,21
+72713,100267.3661,154867.637,0,21
+72714,182205.1039,32720.10524,0,21
+72715,115151.6167,32452.9738,0,21
+72716,106242.3962,32399.9266,0,21
+72717,142082.4368,396574.7075,0,21
+72718,126394.8082,94824.13453,0,21
+72719,128294.928,114506.6436,0,21
+72720,27128.49478,171461.8491,0,21
+72721,27160.05194,145537.4952,0,21
+72722,27139.41128,146983.0321,0,21
+72723,27183.0875,147740.3249,0,21
+72724,27027.78998,147185.3925,0,21
+72725,406962.8481,147108.7952,0,21
+72726,27067.65215,147278.7928,0,21
+72727,94301.35808,147299.467,0,21
+72728,168157.6023,146921.4854,0,21
+72729,123980.5919,147217.2618,0,21
+72730,130296.6664,146780.8915,0,21
+72731,130994.8849,116334.3467,0,21
+72732,130727.9927,115975.6826,0,21
+72733,131314.2585,182662.6824,0,21
+72734,470809.6035,135107.9909,0,21
+72735,131088.2598,144577.0797,0,21
+72736,133387.3865,148776.6311,0,21
+72737,133678.6191,146433.2461,0,21
+72738,133805.4726,146251.5213,0,21
+72739,134149.0809,146185.4764,0,21
+72740,134393.9336,145711.239,0,21
+72741,134475.1423,146295.9962,0,21
+72742,134950.8179,145578.6269,0,21
+72743,135068.2769,145526.9552,0,21
+72744,108263.0523,145466.2921,0,21
+72745,108055.407,145185.3973,0,21
+72746,109200.2778,145053.3808,0,21
+72747,191049.7399,29813.57719,678977.3631,21
+72748,123652.6035,29724.51003,0,21
+72749,116849.4946,29613.60801,0,21
+72750,146015.976,389686.5798,0,21
+72751,136632.885,69078.94973,0,21
+72752,135486.9451,125831.2424,0,21
+72753,136507.5385,163471.4812,0,21
+72754,135855.7871,142326.8695,0,21
+72755,27098.52893,144043.112,0,21
+72756,27045.76119,143789.392,0,21
+72757,27013.83347,143706.2486,0,21
+72758,26990.22996,143517.6654,0,21
+72759,26866.20907,143353.7091,0,21
+72760,432012.2559,143340.2339,0,21
+72761,32891.78668,143050.0038,0,21
+72762,91659.67391,143237.6614,0,21
+72763,175442.7281,114305.8284,0,21
+72764,126783.527,114106.7551,0,21
+72765,133332.878,173335.7625,0,21
+72766,133366.958,132673.1592,0,21
+72767,132599.8339,141294.93,0,21
+72768,132523.9591,144237.8371,0,21
+72769,131904.3486,142747.4674,0,21
+72770,131903.2752,142315.5955,0,21
+72771,131222.3879,142512.5864,0,21
+72772,131086.9371,142138.0806,0,21
+72773,130645.2165,142949.2654,0,21
+72774,130067.2476,141788.8113,0,21
+72775,469634.1565,142647.7475,0,21
+72776,129356.3937,142138.2111,0,21
+72777,103099.6001,142566.1777,0,21
+72778,100581.0735,141938.6007,0,21
+72779,100415.6905,142550.7566,0,21
+72780,179893.0334,27750.85159,0,21
+72781,112262.3735,28006.30923,0,21
+72782,103938.0487,27972.39412,0,21
+72783,131803.2978,396513.1131,0,21
+72784,123889.0518,67773.39566,678817.5336,21
+72785,121084.3102,130405.2749,0,21
+72786,121392.8111,167403.8568,0,21
+72787,121259.0206,147973.341,0,21
+72788,119912.5228,150190.7746,0,21
+72789,119521.3282,150780.1473,0,21
+72790,25239.72353,151738.4086,0,21
+72791,25131.00532,152334.4131,0,21
+72792,25010.7578,153108.1058,0,21
+72793,24966.72979,153740.947,0,21
+72794,24904.01065,154337.1256,0,21
+72795,24820.03329,126901.7342,0,21
+72796,391710.594,127093.7354,0,21
+72797,24664.23567,184764.0501,0,21
+72798,62288.47733,150520.4318,0,21
+72799,151103.6129,154604.902,0,21
+72800,104546.5884,161281.0633,0,21
+72801,109265.7034,159064.9419,0,21
+72802,109610.5221,160274.2505,0,21
+72803,111219.7402,160915.7901,0,21
+72804,108899.9236,161426.4098,0,21
+72805,108305.7455,162231.0962,0,21
+72806,108061.4277,163130.5713,0,21
+72807,107422.2704,163416.394,0,21
+72808,106939.1339,164564.8649,0,21
+72809,106579.2013,165143.0975,0,21
+72810,82831.95388,165737.923,0,21
+72811,81996.33486,167016.5827,0,21
+72812,82103.9575,166870.1282,0,21
+72813,151840.7156,29470.20405,0,21
+72814,91921.26121,29469.5867,0,21
+72815,88460.56754,29437.32452,0,21
+72816,108866.1081,473916.2775,0,21
+72817,444693.2,128293.8774,0,21
+72818,103215.7184,97457.59177,0,21
+72819,103282.8215,216001.0197,0,21
+72820,103203.0607,167781.2154,0,21
+72821,102940.9794,173498.339,678679.1381,21
+72822,102559.4785,174172.6876,0,21
+72823,102438.4433,174907.7443,0,21
+72824,102188.1635,175420.682,0,21
+72825,101633.2338,176438.9479,0,21
+72826,22446.15364,176902.3731,0,21
+72827,22342.07997,147296.2725,0,21
+72828,22326.82738,148139.351,0,21
+72829,22210.07378,208352.4935,0,21
+72830,22106.21929,176983.346,0,21
+72831,22142.91686,173973.4628,0,21
+72832,21734.70327,184342.844,0,21
+72833,352157.4402,181440.9968,0,21
+72834,27059.88034,182694.8248,0,21
+72835,41167.83523,183059.954,0,21
+72836,140544.4573,183471.9463,0,21
+72837,92106.63859,185364.957,0,21
+72838,96258.23635,185363.4339,0,21
+72839,97259.12108,186523.8018,0,21
+72840,96291.10547,186725.8994,0,21
+72841,96593.67485,185947.7575,0,21
+72842,96160.40818,185190.8385,0,21
+72843,75357.64757,184014.4175,0,21
+72844,74705.32371,182794.1493,0,21
+72845,75070.73331,181796.8056,0,21
+72846,134117.0748,30540.34797,0,21
+72847,83186.06054,30429.75622,0,21
+72848,83344.62796,30205.71349,0,21
+72849,97748.61223,510749.8177,0,21
+72850,93366.62551,151753.7019,0,21
+72851,95967.52654,75955.62553,0,21
+72852,94054.19568,232232.1163,0,21
+72853,94417.41444,168749.3231,0,21
+72854,94372.07517,173575.5602,0,21
+72855,93912.48486,173092.6905,0,21
+72856,93905.53934,171628.2725,0,21
+72857,93612.80355,171225.4003,0,21
+72858,433239.8391,169713.379,678557.7,21
+72859,92996.58394,139872.6269,0,21
+72860,93106.05467,138499.0647,0,21
+72861,92669.55789,194517.9295,0,21
+72862,92598.48499,161950.022,0,21
+72863,19898.0829,158801.9208,0,21
+72864,19773.41592,166549.4624,0,21
+72865,19800.47188,162521.6432,0,21
+72866,19648.52893,161109.9987,0,21
+72867,19599.35024,161294.7579,0,21
+72868,19535.32913,159951.5688,0,21
+72869,19342.26361,158848.5112,0,21
+72870,323391.0265,157955.3945,0,21
+72871,19067.12912,156756.8721,0,21
+72872,26888.20742,155666.284,0,21
+72873,132132.4332,154921.5049,0,21
+72874,81962.64877,153490.9323,0,21
+72875,87149.57159,152517.3958,0,21
+72876,68818.14717,151646.7653,0,21
+72877,68421.93937,150429.5946,0,21
+72878,68153.4571,149340.9978,0,21
+72879,118259.781,27016.69019,0,21
+72880,76354.63232,27022.04135,0,21
+72881,75267.80515,26851.00756,0,21
+72882,86624.92892,399831.6509,0,21
+72883,81151.66869,85446.6837,0,21
+72884,86149.37639,105993.72,0,21
+72885,82905.57188,168772.5266,0,21
+72886,82847.00632,138440.9723,0,21
+72887,82930.90344,139864.6986,0,21
+72888,81954.44303,138976.0065,0,21
+72889,81818.13982,137731.484,0,21
+72890,81145.39851,136270.2697,0,21
+72891,80532.58266,109817.6319,0,21
+72892,80168.18892,108614.473,0,21
+72893,79642.49563,155701.3876,0,21
+72894,79102.65739,125873.3887,0,21
+72895,78663.33883,128614.7619,678448.0254,21
+72896,78138.89195,131503.226,0,21
+72897,77794.88012,128718.5784,0,21
+72898,77440.94296,127383.0444,0,21
+72899,417427.8319,125951.8465,0,21
+72900,17328.63278,124393.1277,0,21
+72901,17454.41238,123796.9891,0,21
+72902,17450.07879,124029.0375,0,21
+72903,17517.12435,123320.512,0,21
+72904,17470.16467,123280.5878,0,21
+72905,17602.42873,123066.6791,0,21
+72906,17575.83387,122939.3137,0,21
+72907,320969.931,122447.9594,0,21
+72908,17680.07758,122421.3682,0,21
+72909,5228.611455,122072.6286,0,21
+72910,104174.4911,121932.6115,0,21
+72911,57862.10597,121724.3891,0,21
+72912,108562.4745,24477.01839,0,21
+72913,75155.2525,24654.12449,0,21
+72914,71565.3198,24381.75459,0,21
+72915,84468.04564,24628.54976,0,21
+72916,79156.12888,337583.5367,0,21
+72917,83571.37187,86221.53894,0,21
+72918,83833.49788,70439.82558,0,21
+72919,83127.20089,152243.3312,0,21
+72920,84082.10953,117240.4516,0,21
+72921,84383.99148,120248.2519,0,21
+72922,84649.7023,119827.7015,0,21
+72923,84949.94801,95902.9958,0,21
+72924,85299.87995,95447.73687,0,21
+72925,85501.25156,95528.11568,0,21
+72926,86071.40647,144369.8858,0,21
+72927,86158.18004,120064.6565,0,21
+72928,86726.32017,110732.9661,0,21
+72929,86887.42219,124231.9858,0,21
+72930,87272.28617,119242.045,0,21
+72931,87742.12024,119536.4769,678261.0404,21
+72932,88224.11763,119692.8016,0,21
+72933,88680.44822,119378.4362,0,21
+72934,89325.92114,119928.1745,0,21
+72935,89559.90898,119904.3994,0,21
+72936,90396.65692,119597.3538,0,21
+72937,19246.73346,119908.9491,0,21
+72938,19328.09108,120153.2516,0,21
+72939,19490.71783,120208.605,0,21
+72940,359267.3813,120036.4879,0,21
+72941,19714.65397,120364.9069,0,21
+72942,319500.5402,120822.7872,0,21
+72943,4957.49421,120263.1823,0,21
+72944,34516.49035,121010.3924,0,21
+72945,162622.0879,121113.3546,0,21
+72946,85720.84833,25081.43597,0,21
+72947,83678.08349,25251.55551,0,21
+72948,99947.32371,25220.58188,0,21
+72949,94213.86673,25257.11015,0,21
+72950,97441.35209,349123.9463,0,21
+72951,100011.9014,87968.87397,0,21
+72952,98633.00689,55535.37262,0,21
+72953,100049.5506,165635.9702,0,21
+72954,100471.2405,117459.7985,0,21
+72955,101131.0886,123597.2557,0,21
+72956,101932.2054,98491.43331,0,21
+72957,102258.3047,98817.3827,0,21
+72958,102942.2258,99051.14786,0,21
+72959,103543.3226,154463.8231,0,21
+72960,104216.9773,124439.3847,0,21
+72961,104888.3914,117081.0437,0,21
+72962,105484.5054,132339.7356,0,21
+72963,106307.5867,126798.0963,0,21
+72964,106909.0442,128396.2698,0,21
+72965,107698.2653,128053.946,0,21
+72966,108424.0594,128832.1436,0,21
+72967,108867.0837,129233.7576,678078.7489,21
+72968,110107.191,129849.4649,0,21
+72969,110407.5117,130214.1129,0,21
+72970,111501.8691,130637.6581,0,21
+72971,113901.8899,131122.2654,0,21
+72972,24343.8596,131623.1362,0,21
+72973,24339.47682,132493.9061,0,21
+72974,24719.33012,132068.4643,0,21
+72975,0,133588.8445,0,21
+72976,349005.9734,133547.6387,0,21
+72977,118697.8738,134230.745,0,21
+72978,51604.15704,134912.0901,0,21
+72979,164509.2712,135315.6903,0,21
+72980,464686.9621,27492.16907,0,21
+72981,132298.2708,27741.61562,0,21
+72982,134296.8572,27913.85115,0,21
+72983,134993.6664,363528.2735,0,21
+72984,142005.5153,74525.70465,0,21
+72985,140475.042,114187.9131,0,21
+72986,143571.7723,163752.3367,0,21
+72987,144827.6582,139475.8933,0,21
+72988,147004.8343,143296.1591,0,21
+72989,148684.5136,113888.8646,0,21
+72990,150182.0322,114720.6459,0,21
+72991,152298.5634,175294.318,0,21
+72992,153746.6525,133061.6899,0,21
+72993,156122.8609,145753.4792,0,21
+72994,157408.5914,148482.1704,0,21
+72995,159497.4902,146774.9429,0,21
+72996,161116.285,147501.21,0,21
+72997,163125.4323,147871.6763,0,21
+72998,164558.6461,148363.0558,0,21
+72999,166646.2744,148670.401,0,21
+73000,168568.9057,149027.9525,0,21
+73001,170327.1317,149485.4224,0,21
+73002,171639.6019,149859.7031,0,21
+73003,174198.1424,150007.0599,678137.1181,21
+73004,175166.3498,150768.1938,0,21
+73005,177317.1098,150764.874,0,21
+73006,30430.50412,151547.1499,0,21
+73007,0,151269.1549,0,21
+73008,0,151879.0183,0,21
+73009,542736.0827,152346.3029,0,21
+73010,124192.5343,152630.2846,0,21
+73011,103103.2196,152903.548,0,21
+73012,240224.5596,153255.071,0,21
+73013,187668.5246,33508.625,0,21
+73014,192827.3499,33653.22278,0,21
+73015,195758.0284,33602.38394,0,21
+73016,196925.2859,422545.8195,0,21
+73017,199379.7721,74600.88796,0,21
+73018,540175.8298,127257.4298,0,21
+73019,202607.3678,181272.1979,0,21
+73020,204112.701,153099.3567,0,21
+73021,205373.7416,121981.5375,0,21
+73022,207002.6885,122190.9084,0,21
+73023,207623.309,196700.8335,0,21
+73024,209723.0599,142585.3418,0,21
+73025,210345.9543,156510.1858,0,21
+73026,212202.8485,160074.2682,0,21
+73027,213253.0664,158151.6524,0,21
+73028,214592.783,158257.1342,0,21
+73029,215718.1691,158917.1987,0,21
+73030,217573.7048,159357.6094,0,21
+73031,218530.1112,159454.575,0,21
+73032,220034.2435,159696.7554,0,21
+73033,221117.16,160029.165,0,21
+73034,222656.6713,160391.0847,0,21
+73035,224118.9044,160447.6293,0,21
+73036,225050.4524,160892.5938,0,21
+73037,227113.9716,161232.9431,0,21
+73038,229019.308,161134.8179,0,21
+73039,0,166959.0483,678056.13,21
+73040,0,165045.6367,0,21
+73041,79781.9693,166485.2161,0,21
+73042,691441.1416,167639.1556,0,21
+73043,164681.436,167889.5114,0,21
+73044,131897.7675,168672.3123,0,21
+73045,309502.9439,170211.0375,0,21
+73046,233048.1857,36851.17262,0,21
+73047,243215.5649,36995.24133,0,21
+73048,244677.8721,37132.4836,0,21
+73049,246507.1757,452100.4512,0,21
+73050,247818.2608,85319.5366,0,21
+73051,249233.0952,125917.7249,0,21
+73052,250318.8537,196572.828,0,21
+73053,250978.1617,142757.6875,0,21
+73054,252067.432,134316.4163,0,21
+73055,253438.7634,224626.3649,0,21
+73056,593402.2741,158525.8007,0,21
+73057,255106.238,177026.8324,0,21
+73058,256138.374,180400.453,0,21
+73059,256710.9412,178834.2782,0,21
+73060,258439.7456,178950.105,0,21
+73061,259543.128,180239.3176,0,21
+73062,260444.4875,180169.0642,0,21
+73063,261411.1613,180834.5828,0,21
+73064,262294.4202,181547.8153,0,21
+73065,263362.9964,182341.1987,0,21
+73066,263868.8712,182187.5026,0,21
+73067,266455.2801,183291.377,0,21
+73068,267662.8132,183413.4689,0,21
+73069,268190.5317,184359.9782,0,21
+73070,269442.5002,184054.8373,0,21
+73071,229218.8311,185748.8734,0,21
+73072,0,185098.9751,0,21
+73073,84837.78054,186106.2007,0,21
+73074,43223.83358,186918.1141,0,21
+73075,757309.2877,186502.1666,677981.1414,21
+73076,272613.113,187855.7146,0,21
+73077,153159.5889,187637.2302,0,21
+73078,334654.4828,188627.0147,0,21
+73079,278254.5252,39145.07334,0,21
+73080,277711.8523,39280.53542,0,21
+73081,282978.1657,40035.27301,0,21
+73082,283672.6826,472496.5936,0,21
+73083,284546.2578,123105.2565,0,21
+73084,285402.6675,147330.4863,0,21
+73085,286489.5051,189056.342,0,21
+73086,287196.7892,150367.5388,0,21
+73087,288145.4468,251377.3887,0,21
+73088,288704.2435,174184.2415,0,21
+73089,290439.8918,196217.581,0,21
+73090,290661.3731,199059.5109,0,21
+73091,291401.3626,197452.6239,0,21
+73092,292704.2296,197256.4578,0,21
+73093,293438.4511,197947.8353,0,21
+73094,294487.4808,198184.2852,0,21
+73095,634630.9081,198840.7198,0,21
+73096,296320.1106,198997.2176,0,21
+73097,296752.5944,199461.8508,0,21
+73098,297797.9452,199516.6487,0,21
+73099,298406.5738,200145.2542,0,21
+73100,299652.1462,200503.1281,0,21
+73101,300251.0457,200675.4227,0,21
+73102,301139.5926,201305.9874,0,21
+73103,256578.895,201291.5774,0,21
+73104,257322.3324,202092.392,0,21
+73105,87950.67481,202094.2657,0,21
+73106,57924.0761,202526.5487,0,21
+73107,743521.956,202874.9518,0,21
+73108,249322.0637,203308.7117,0,21
+73109,234877.7568,203497.8542,0,21
+73110,350486.3707,203917.3968,0,21
+73111,306495.2341,204112.5251,677909.9475,21
+73112,309981.8268,41628.26539,0,21
+73113,310548.3627,41798.68682,0,21
+73114,311033.2899,41662.02695,0,21
+73115,312394.5031,527514.8626,0,21
+73116,312755.7227,125149.3519,0,21
+73117,313695.9353,110550.9234,0,21
+73118,314385.1793,204863.8459,0,21
+73119,315159.1283,261994.1581,0,21
+73120,315945.2205,184314.0882,0,21
+73121,316729.9772,207065.0208,0,21
+73122,317766.3675,210924.4375,0,21
+73123,317760.2217,207991.218,0,21
+73124,319116.443,208583.3083,0,21
+73125,320076.9648,208640.464,0,21
+73126,319887.0576,209024.558,0,21
+73127,321735.4478,209494.5156,0,21
+73128,321840.1719,209778.283,0,21
+73129,322548.9574,209573.0247,0,21
+73130,323594.362,210601.4956,0,21
+73131,324071.8669,210566.2892,0,21
+73132,324692.9566,210387.3823,0,21
+73133,326051.3309,211224.2439,0,21
+73134,665721.1947,211569.5429,0,21
+73135,278018.6182,211485.1453,0,21
+73136,278790.1048,211851.2832,0,21
+73137,91163.37631,212376.6101,0,21
+73138,63906.22355,211958.2494,0,21
+73139,789296.0588,213291.0255,0,21
+73140,319038.9859,212724.7217,0,21
+73141,226852.0278,215464.7519,0,21
+73142,386461.7766,217898.9621,0,21
+73143,333126.6841,219332.7048,0,21
+73144,336583.8084,221116.5875,0,21
+73145,338449.8227,43895.05282,0,21
+73146,339506.197,44141.65795,0,21
+73147,341106.5902,44246.2579,677845.4081,21
+73148,342447.1218,607444.0086,0,21
+73149,343951.1301,96238.75466,0,21
+73150,345256.9019,120714.6845,0,21
+73151,346876.5976,347469.2174,0,21
+73152,347766.3662,205941.5423,0,21
+73153,349929.0742,235566.0419,0,21
+73154,350550.5178,242340.2593,0,21
+73155,352742.8355,240608.6392,0,21
+73156,353939.4513,242140.971,0,21
+73157,355171.8158,243704.4781,0,21
+73158,356947.6605,245361.1849,0,21
+73159,358027.1047,247278.5015,0,21
+73160,359471.6011,248861.2758,0,21
+73161,361296.7099,250209.1645,0,21
+73162,362018.7588,252294.1497,0,21
+73163,364408.8522,253734.4632,0,21
+73164,365012.4599,254999.803,0,21
+73165,367100.4338,257373.0654,0,21
+73166,368138.6417,258425.9584,0,21
+73167,314725.1241,260234.5415,0,21
+73168,316539.895,262426.1942,0,21
+73169,94441.25241,263217.8564,0,21
+73170,71158.87517,265492.4925,0,21
+73171,838056.4198,267246.739,0,21
+73172,419577.4709,268323.4474,0,21
+73173,650403.2931,270353.0953,0,21
+73174,398575.765,272141.6496,0,21
+73175,394392.1855,273391.2114,0,21
+73176,385336.4603,275496.5316,0,21
+73177,386896.1823,276781.3321,0,21
+73178,387948.2872,50316.42889,0,21
+73179,389719.9422,50386.04503,0,21
+73180,390571.7108,50577.39335,0,21
+73181,392882.6146,757559.5136,0,21
+73182,393423.1504,181721.8796,0,21
+73183,395353.5202,220746.2309,677795.429,21
+73184,396496.5537,342926.6027,0,21
+73185,398084.6781,283906.4033,0,21
+73186,399653.7781,294460.0062,0,21
+73187,400697.261,294423.0974,0,21
+73188,402387.9636,295765.0672,0,21
+73189,403998.3437,298025.9143,0,21
+73190,405293.7934,299226.4435,0,21
+73191,406861.9889,300718.7413,0,21
+73192,407990.142,302936.4096,0,21
+73193,409435.316,304525.5886,0,21
+73194,411418.6481,305855.3313,0,21
+73195,412582.234,308029.2519,0,21
+73196,414087.36,309067.6554,0,21
+73197,415642.8329,311546.4029,0,21
+73198,416912.9584,312323.1218,0,21
+73199,357559.0394,314832.8974,0,21
+73200,358485.0535,316332.6996,0,21
+73201,99167.57983,315703.4397,0,21
+73202,80818.79939,315633.8371,0,21
+73203,876282.8044,316306.2298,0,21
+73204,500889.0351,316951.962,0,21
+73205,432868.6512,316532.821,0,21
+73206,386981.7868,317033.3197,0,21
+73207,455345.6522,317434.4154,0,21
+73208,426991.104,317686.3536,0,21
+73209,427166.5282,317727.6151,0,21
+73210,427871.9328,318370.601,0,21
+73211,427805.0638,55150.69577,0,21
+73212,768503.845,55097.14217,0,21
+73213,430061.4661,718432.1235,0,21
+73214,429844.7653,152604.5959,0,21
+73215,431097.5949,358443.9363,0,21
+73216,431338.6893,332681.1205,0,21
+73217,432555.918,318974.2089,0,21
+73218,432699.6285,322851.0622,0,21
+73219,433342.9582,322409.4093,677753.6706,21
+73220,434531.0064,321735.9084,0,21
+73221,434240.6869,322221.5243,0,21
+73222,436073.4682,322266.5686,0,21
+73223,435868.2846,322466.8323,0,21
+73224,436546.1861,322861.3784,0,21
+73225,437616.7718,323238.9802,0,21
+73226,438398.3867,322960.3857,0,21
+73227,438410.7264,323526.6256,0,21
+73228,439430.5446,323318.314,0,21
+73229,439949.6149,323952.0411,0,21
+73230,441301.8619,324430.7542,0,21
+73231,374135.8536,324162.9574,0,21
+73232,375511.4468,324396.3588,0,21
+73233,104506.617,324898.5533,0,21
+73234,84995.81572,324554.2965,0,21
+73235,876315.0782,325643.2721,0,21
+73236,531869.2574,325351.1703,0,21
+73237,470318.3259,325603.3192,0,21
+73238,420828.4279,325910.6135,0,21
+73239,457951.7419,325781.9425,0,21
+73240,452786.3849,326874.8524,0,21
+73241,446891.2867,326105.8502,0,21
+73242,447772.5295,327121.2538,0,21
+73243,447368.8089,56493.30544,0,21
+73244,448835.7136,56619.23517,0,21
+73245,449005.0071,741984.104,0,21
+73246,449813.3977,160898.1076,0,21
+73247,450484.8884,362500.1589,0,21
+73248,450719.2004,343386.5032,0,21
+73249,451419.2929,327151.6216,0,21
+73250,452425.2268,330166.7075,0,21
+73251,792121.0075,330083.4236,0,21
+73252,453112.5406,329510.902,0,21
+73253,453864.1197,329144.1896,0,21
+73254,454811.4505,329778.8742,0,21
+73255,455107.725,330295.6025,677715.0538,21
+73256,455923.6197,330149.1749,0,21
+73257,456088.8614,330001.2714,0,21
+73258,457216.6575,330885.0963,0,21
+73259,457592.2376,330396.6103,0,21
+73260,458287.462,331360.1396,0,21
+73261,458284.5485,329725.2765,0,21
+73262,457833.8069,328741.1542,0,21
+73263,389840.6446,327921.4958,0,21
+73264,389909.5246,327074.2022,0,21
+73265,108888.543,325664.0755,0,21
+73266,86380.53807,324836.9279,0,21
+73267,878428.2861,323849.0201,0,21
+73268,562513.6247,323016.1784,0,21
+73269,487401.4024,321331.8551,0,21
+73270,449215.0442,321065.7399,0,21
+73271,457874.9378,319818.4621,0,21
+73272,468515.9802,318402.4013,0,21
+73273,457853.6534,317997.1435,0,21
+73274,456724.3873,316665.4957,0,21
+73275,456786.727,55723.23221,0,21
+73276,456481.6373,55670.02312,0,21
+73277,456215.9232,713515.9398,0,21
+73278,455756.286,135611.0221,0,21
+73279,455693.418,355942.1888,0,21
+73280,455463.7351,322271.1445,0,21
+73281,455054.4564,305459.3835,0,21
+73282,455131.9525,311747.5308,0,21
+73283,454265.1118,308092.9906,0,21
+73284,454215.1531,306649.5827,0,21
+73285,454215.2755,305096.5268,0,21
+73286,453698.0948,304783.372,0,21
+73287,453573.0387,302859.4329,0,21
+73288,452975.9519,302809.9228,0,21
+73289,453284.101,300582.6006,0,21
+73290,454494.6277,300458.7269,0,21
+73291,454194.7562,298636.4527,0,21
+73292,454050.4113,297739.9179,0,21
+73293,793167.5025,296747.5114,677683.2172,21
+73294,453382.0139,295670.2543,0,21
+73295,385483.8021,294073.9628,0,21
+73296,384914.7423,293678.7284,0,21
+73297,112122.5215,291613.3963,0,21
+73298,85437.29259,291694.075,0,21
+73299,878965.3331,289466.8066,0,21
+73300,551508.7079,288783.6832,0,21
+73301,494593.2622,287717.371,0,21
+73302,427593.6228,286483.1856,0,21
+73303,460779.3856,285697.6156,0,21
+73304,460652.0177,283695.5481,0,21
+73305,452035.8232,283401.1192,0,21
+73306,450638.2281,281786.9681,0,21
+73307,451024.217,52397.30758,0,21
+73308,450384.6338,52224.55654,0,21
+73309,449652.2912,0,0,21
+73310,449983.2545,766057.5309,0,21
+73311,448977.8376,289069.6527,0,21
+73312,449373.7483,95205.19762,0,21
+73313,448608.5153,362089.0205,0,21
+73314,448176.5306,267613.477,0,21
+73315,447896.0834,271101.07,0,21
+73316,447794.6321,270857.7308,0,21
+73317,447219.9694,269841.8467,0,21
+73318,446774.9372,268196.8742,0,21
+73319,446834.3426,266032.1695,0,21
+73320,446094.2686,264529.1331,0,15.6
+73321,445715.4756,264404.4432,0,15.6
+73322,444009.6574,264800.7416,0,15.6
+73323,443924.9781,264730.0866,0,15.6
+73324,442351.8118,265012.152,0,15.6
+73325,442153.5511,264834.7021,0,15.6
+73326,440552.9363,265715.242,0,15.6
+73327,372666.0682,265556.3558,0,15.6
+73328,371816.723,265715.2382,0,15.6
+73329,114951.5402,265640.5262,677655.8666,15.6
+73330,82825.42939,266153.3568,0,15.6
+73331,879647.5552,266275.0637,0,15.6
+73332,520835.965,266465.6429,0,15.6
+73333,479143.2161,266873.9702,0,15.6
+73334,383033.5424,266205.6946,0,15.6
+73335,460750.5328,267244.0278,0,15.6
+73336,775156.6838,267078.6768,0,15.6
+73337,431133.3362,267481.5505,0,15.6
+73338,430827.0717,267741.4458,0,15.6
+73339,429073.1491,267861.826,0,15.6
+73340,429099.1025,51019.262,0,15.6
+73341,427359.5349,0,0,15.6
+73342,426437.6868,0,0,15.6
+73343,425443.8975,867302.1909,0,15.6
+73344,425066.8674,148986.6025,0,15.6
+73345,423556.0321,135250.9895,0,15.6
+73346,422426.8024,359764.127,0,15.6
+73347,421779.1978,257144.4206,0,15.6
+73348,420825.345,270028.2419,0,15.6
+73349,419467.1186,270431.8904,0,15.6
+73350,419297.6834,270340.6758,0,15.6
+73351,417181.4345,270785.3098,0,15.6
+73352,417326.6627,271120.5187,0,15.6
+73353,415661.002,271056.7266,0,15.6
+73354,415426.8143,271260.7452,0,15.6
+73355,413405.8379,271750.0153,0,15.6
+73356,413632.2058,271886.5616,0,15.6
+73357,411861.1634,271676.1199,0,15.6
+73358,411164.3579,272420.5236,0,15.6
+73359,346051.1178,272564.8963,0,15.6
+73360,345093.0251,272428.6104,0,15.6
+73361,116672.5713,273058.9445,0,15.6
+73362,75871.58871,273463.3241,0,15.6
+73363,878564.4294,272954.9757,0,15.6
+73364,479719.7603,273615.6506,0,15.6
+73365,374952.3176,273898.9957,677625.1052,15.6
+73366,389188.5622,273843.0413,0,15.6
+73367,425900.2146,274325.1273,0,15.6
+73368,403123.758,274858.392,0,15.6
+73369,401739.6267,274427.9092,0,15.6
+73370,400571.6574,275188.7892,0,15.6
+73371,399999.0161,274993.7273,0,15.6
+73372,398546.4206,275573.4766,0,15.6
+73373,398039.3751,0,0,15.6
+73374,396280.5812,0,0,15.6
+73375,735220.333,139969.4908,0,15.6
+73376,394759.8323,780539.555,0,15.6
+73377,393696.438,184424.6997,0,15.6
+73378,392394.6935,140967.7443,0,15.6
+73379,391920.7605,368318.6617,0,15.6
+73380,390482.5772,265248.9621,0,15.6
+73381,391211.5688,281158.797,0,15.6
+73382,392254.3984,283736.7429,0,15.6
+73383,392281.5979,284781.8963,0,15.6
+73384,393491.0548,287886.1639,0,15.6
+73385,393605.2932,288468.0141,0,15.6
+73386,394750.7252,291248.7695,0,15.6
+73387,395015.0379,292558.9152,0,15.6
+73388,395682.0288,294143.4773,0,15.6
+73389,396750.1839,295964.6567,0,15.6
+73390,397211.1187,297772.7955,0,15.6
+73391,334267.3806,299600.8222,0,15.6
+73392,335242.406,301613.6581,0,15.6
+73393,118185.8425,302186.8451,0,15.6
+73394,73128.51311,304214.1449,0,15.6
+73395,874153.1434,305959.2078,0,15.6
+73396,470103.7986,307734.4107,0,15.6
+73397,352811.9546,309105.2017,0,15.6
+73398,400684.921,311361.3407,0,15.6
+73399,422561.7881,313068.5489,0,15.6
+73400,404554.913,314252.4683,0,15.6
+73401,405811.2905,316486.6426,677593.7099,15.6
+73402,405195.9654,318089.9888,0,15.6
+73403,407069.858,319687.3125,0,15.6
+73404,407144.0081,321548.1937,0,15.6
+73405,407365.494,265727.6052,0,15.6
+73406,408650.6131,0,0,15.6
+73407,409322.0929,153637.6712,0,15.6
+73408,409664.5255,774170.9161,0,15.6
+73409,410312.851,201783.3481,0,15.6
+73410,411539.4794,292054.6172,0,15.6
+73411,411559.8883,371449.9391,0,15.6
+73412,412418.9699,333291.8443,0,15.6
+73413,413481.3066,337497.8832,0,15.6
+73414,413189.9532,339704.8429,0,15.6
+73415,754156.6253,341086.6469,0,15.6
+73416,415459.5872,343046.3967,0,15.6
+73417,415482.502,344755.9986,0,15.6
+73418,416432.9861,346515.871,0,15.6
+73419,417512.4372,348168.9679,0,15.6
+73420,418143.1126,350010.0847,0,15.6
+73421,418083.8606,352145.2662,0,15.6
+73422,419761.6962,352977.4021,0,15.6
+73423,353252.6443,355347.7217,0,15.6
+73424,354550.1099,357206.7623,0,15.6
+73425,120365.808,358866.2123,0,15.6
+73426,78183.38106,360450.8518,0,15.6
+73427,882386.9282,362546.0666,0,15.6
+73428,495855.8642,364386.3042,0,15.6
+73429,444469.372,365751.5877,0,15.6
+73430,380619.4515,367313.2075,0,15.6
+73431,457799.0778,370645.9201,0,15.6
+73432,427890.6699,370656.3696,0,15.6
+73433,427984.7336,373495.3872,0,15.6
+73434,428636.0343,374866.195,0,15.6
+73435,429258.7157,377280.0573,0,15.6
+73436,430498.9682,378027.8193,0,15.6
+73437,430382.5399,316642.3606,677564.6001,15.6
+73438,431607.2507,0,0,15.6
+73439,432415.1513,164832.0792,0,15.6
+73440,432757.8978,928909.2793,0,15.6
+73441,428323.0947,262269.3842,0,15.6
+73442,430447.5512,323113.8896,0,15.6
+73443,431191.0597,417638.4011,0,15.6
+73444,433109.192,374764.2797,0,15.6
+73445,434920.8091,373607.7893,0,15.6
+73446,436472.6599,372413.8197,0,15.6
+73447,437916.7291,371442.2181,0,15.6
+73448,439650.1787,369831.9879,0,15.6
+73449,441316.3177,368410.8558,0,15.6
+73450,443230.1098,367324.4905,614313.7713,15.6
+73451,444698.9038,365342.5917,0,15.6
+73452,785517.6329,364490.5051,0,15.6
+73453,448363.1657,363088.802,0,15.6
+73454,449199.8728,361823.5245,0,15.6
+73455,382082.0035,360501.5438,0,15.6
+73456,383281.634,358828.1149,0,15.6
+73457,118356.2596,357763.5898,0,15.6
+73458,85908.93026,356112.2463,0,15.6
+73459,881617.7152,354996.0654,0,15.6
+73460,560385.4553,353224.1717,0,15.6
+73461,517186.8977,352361.8156,0,15.6
+73462,432940.4613,350708.6588,0,15.6
+73463,478557.4479,349473.1049,0,15.6
+73464,477719.4525,347969.1531,0,15.6
+73465,470531.5022,346967.5514,0,15.6
+73466,472278.2902,345265.9446,0,15.6
+73467,473320.511,344225.3332,0,15.6
+73468,475711.3308,342032.6291,0,15.6
+73469,476484.8518,282245.8726,0,15.6
+73470,478545.596,0,0,15.6
+73471,479890.8902,158431.6176,0,15.6
+73472,482079.3121,808169.325,765136.8807,15.6
+73473,483633.4756,213741.9388,0,15.6
+73474,484995.4401,279295.2742,0,15.6
+73475,487373.2527,379523.7415,0,15.6
+73476,488837.2168,328476.1123,0,15.6
+73477,490248.4885,330822.598,0,15.6
+73478,492902.7446,329819.1439,0,15.6
+73479,493131.4887,328267.4328,0,15.6
+73480,496813.7347,326674.7189,0,15.6
+73481,496617.566,325731.2787,0,15.6
+73482,499836.3467,323850.9109,0,15.6
+73483,500987.1633,322269.6533,0,15.6
+73484,502688.4302,321174.0226,0,15.6
+73485,504939.9285,319773.9356,0,15.6
+73486,506100.0912,317840.8793,621965.1899,15.6
+73487,431222.5506,316854.3171,0,15.6
+73488,546324.4795,315816.2098,0,15.6
+73489,416004.0254,313834.8795,0,15.6
+73490,80778.18073,312834.2092,0,15.6
+73491,895349.8175,311474.7864,0,15.6
+73492,649023.025,309581.0589,0,15.6
+73493,560189.3988,307979.3341,0,15.6
+73494,563310.3376,306589.8132,0,15.6
+73495,516283.5527,305212.4738,0,15.6
+73496,529896.1524,302996.9729,0,15.6
+73497,533976.8058,302019.9754,0,15.6
+73498,529079.0241,299868.8449,0,15.6
+73499,530977.4456,298076.3648,0,15.6
+73500,532364.2026,295313.9686,0,15.6
+73501,532864.4595,244675.5347,0,15.6
+73502,532194.4927,0,0,15.6
+73503,532862.1882,150662.3039,0,15.6
+73504,532352.9802,26978.50158,0,15.6
+73505,551614.2995,916771.9333,0,15.6
+73506,532204.6492,241424.2791,0,15.6
+73507,532926.2894,146723.4645,782603.3395,15.6
+73508,534063.4938,419277.6648,0,15.6
+73509,537261.1557,310864.1608,0,15.6
+73510,535381.1394,323607.7819,0,15.6
+73511,536073.802,327344.1497,0,15.6
+73512,536068.3649,329705.3801,0,15.6
+73513,536089.0734,332679.7719,0,15.6
+73514,536201.1145,334804.7651,0,15.6
+73515,535933.4305,337579.8505,0,15.6
+73516,536551.7878,339804.4519,0,15.6
+73517,536235.6154,342892.4615,0,15.6
+73518,455402.2947,344695.3339,0,15.6
+73519,571239.4909,347801.7796,0,15.6
+73520,536349.4737,350081.8801,0,15.6
+73521,84833.49888,351921.6742,0,15.6
+73522,90002.81731,354239.7956,0,15.6
+73523,897015.8456,356865.2262,0,15.6
+73524,685917.3512,359042.4884,0,15.6
+73525,554637.5708,362103.2296,0,15.6
+73526,945507.6848,364318.9873,0,15.6
+73527,539877.2497,366713.7619,0,15.6
+73528,531055.6238,369246.8306,0,15.6
+73529,548356.5273,372105.6832,0,15.6
+73530,539518.0657,373967.4223,0,15.6
+73531,537819.5895,377507.8714,0,15.6
+73532,539401.9777,378442.1273,0,15.6
+73533,537459.817,318145.6354,0,15.6
+73534,539365.7363,319952.5655,0,15.6
+73535,534115.9251,163842.2583,0,15.6
+73536,534842.7411,40770.94733,0,15.6
+73537,534409.1119,984047.6055,0,15.6
+73538,534425.1124,252621.5762,0,15.6
+73539,534489.2627,361506.8508,0,15.6
+73540,534448.6322,434854.8887,0,15.6
+73541,533685.6453,404218.6109,0,15.6
+73542,535116.0674,405987.9542,771139.5573,15.6
+73543,534153.2289,409458.9963,0,15.6
+73544,533719.1973,410866.586,0,15.6
+73545,534976.6198,413809.2984,0,15.6
+73546,553024.2962,416100.9974,0,15.6
+73547,534514.8457,418708.3412,0,15.6
+73548,535272.9764,420897.5354,0,15.6
+73549,455580.8608,423230.5344,0,15.6
+73550,575031.9883,426238.0923,0,15.6
+73551,538131.4516,428024.0869,0,15.6
+73552,538377.0917,431127.6882,0,15.6
+73553,91179.17224,433063.0562,0,15.6
+73554,85961.89105,435572.502,0,15.6
+73555,898693.0912,438513.5886,0,15.6
+73556,685271.216,440401.8996,0,15.6
+73557,556122.4619,443276.6347,0,15.6
+73558,608629.7515,445860.5249,0,15.6
+73559,540536.7914,448031.9705,0,15.6
+73560,533402.2128,450539.8026,0,15.6
+73561,551845.5373,448836.0322,0,15.6
+73562,541592.4154,881554.2533,0,15.6
+73563,881557.852,444219.5381,0,15.6
+73564,542873.1362,440879.3958,0,15.6
+73565,543072.0312,367624.9853,0,15.6
+73566,544218.7127,364875.5444,0,15.6
+73567,544183.7666,166988.3278,0,15.6
+73568,545591.9165,60062.32301,0,15.6
+73569,545138.4978,1073520.823,0,15.6
+73570,546856.9444,267005.8051,0,15.6
+73571,546679.9351,434840.2303,0,15.6
+73572,547879.5853,866624.4226,0,15.6
+73573,548054.9619,431484,0,15.6
+73574,548994.3715,419699.8249,0,15.6
+73575,549103.5428,417280.8499,0,15.6
+73576,546152.1247,414823.0529,0,15.6
+73577,545803.6625,411747.4158,761467.1039,15.6
+73578,546921.8826,409781.7734,0,15.6
+73579,547344.7183,407005.2939,0,15.6
+73580,464769.665,404378.5753,0,15.6
+73581,583127.9275,402645.1831,0,15.6
+73582,550235.902,835024.9579,0,15.6
+73583,549347.2303,397090.3028,0,15.6
+73584,575945.4498,394747.0679,0,15.6
+73585,88242.37939,392687.8116,0,15.6
+73586,84103.52768,389795.8589,0,15.6
+73587,903321.1722,387657.0383,0,15.6
+73588,719249.5655,385257.2003,0,15.6
+73589,551858.7294,382230.2593,0,15.6
+73590,656813.7539,380372.9654,0,15.6
+73591,562534.8675,377764.3951,0,15.6
+73592,561992.378,810515.9272,0,15.6
+73593,567419.4971,372819.8132,0,15.6
+73594,566519.4462,370442.4014,0,15.6
+73595,564439.4205,367769.9831,0,15.6
+73596,564589.0092,365492.9332,0,15.6
+73597,565299.2949,300024.7417,0,15.6
+73598,566067.1895,298133.8486,0,15.6
+73599,567019.4349,165792.5408,0,15.6
+73600,906585.4349,34140.33547,0,15.6
+73601,567932.2041,893212.4328,0,15.6
+73602,568709.1504,664593.5302,0,15.6
+73603,569639.5608,283251.0922,0,15.6
+73604,569655.6185,398863.7893,0,15.6
+73605,571184.0924,340290.4069,0,15.6
+73606,571081.5511,342497.4861,0,15.6
+73607,572364.3371,340033.7749,0,15.6
+73608,572240.3925,337760.4907,0,15.6
+73609,574187.4647,334212.7821,0,15.6
+73610,573518.8183,332403.365,0,15.6
+73611,488850.2221,329417.8543,0,15.6
+73612,609358.2599,762385.016,752737.4992,15.6
+73613,578391.6854,324793.5393,0,15.6
+73614,567883.1128,321753.9334,0,15.6
+73615,576713.9885,319054.572,0,15.6
+73616,574452.9542,316749.2018,0,15.6
+73617,88679.03416,313697.0887,0,15.6
+73618,86931.84607,310779.2172,0,15.6
+73619,899997.2935,308088.5649,0,15.6
+73620,774693.0553,303924.9267,0,15.6
+73621,542939.2711,303585.9928,0,15.6
+73622,697132.9113,739143.7801,0,15.6
+73623,576661.9382,303816.2,0,15.6
+73624,620073.4983,303574.8262,0,15.6
+73625,566840.9888,303820.6299,0,15.6
+73626,592395.2739,303569.1706,0,15.6
+73627,584799.0056,303428.5514,0,15.6
+73628,583856.4162,303177.2264,0,15.6
+73629,584087.2442,248298.1016,0,15.6
+73630,584028.1666,247055.2867,0,15.6
+73631,584504.1092,154284.4293,0,15.6
+73632,584180.6693,460963.4307,0,15.6
+73633,584182.5101,53051.26279,0,15.6
+73634,584518.6973,916038.2405,0,15.6
+73635,584877.953,212708.7587,0,15.6
+73636,583748.3746,134820.2578,0,15.6
+73637,924518.2298,408584.6954,0,15.6
+73638,584371.5797,290309.6747,0,15.6
+73639,584968.7693,303415.5749,0,15.6
+73640,584816.827,304611.4626,0,15.6
+73641,585016.3735,304099.0829,0,15.6
+73642,497441.6919,739676.2259,0,15.6
+73643,618804.328,304375.4483,0,15.6
+73644,588327.8899,303766.8462,0,15.6
+73645,581123.3186,303883.9493,0,15.6
+73646,590924.5172,304331.9485,0,15.6
+73647,586777.8695,303807.8877,744953.5925,15.6
+73648,588310.973,303888.9805,0,15.6
+73649,96679.0916,303697.5158,0,15.6
+73650,88139.40379,303667.922,0,15.6
+73651,901655.1071,303894.3617,0,15.6
+73652,758428.9315,738904.1623,0,15.6
+73653,541822.7556,303792.3323,0,15.6
+73654,698107.8331,303624.6893,0,15.6
+73655,600923.6894,303355.719,62955.12026,15.6
+73656,620283.7319,303579.9122,62004.1184,15.6
+73657,569584.3182,303813.6238,61071.35632,15.6
+73658,600203.9097,303019.7475,60154.95489,15.6
+73659,589674.7701,303838.65,59254.40341,15.6
+73660,589273.8132,303155.884,58369.30332,15.6
+73661,588858.0812,248190.2269,57499.32795,15.6
+73662,589008.1234,683201.5577,56644.25828,15.6
+73663,589494.9871,400978.3271,55803.87945,15.6
+73664,589110.4077,25412.55106,54978.04171,15.6
+73665,588950.4028,52015.45131,54166.5928,15.6
+73666,588728.2807,61480.89267,53369.41495,15.6
+73667,589800.1674,912707.8147,52586.44168,15.6
+73668,588868.9462,210927.3301,51817.51327,15.6
+73669,589425.5537,134053.8077,51062.58109,15.6
+73670,588947.2431,410595.0215,50321.48342,15.6
+73671,589235.6058,288947.5876,49594.16707,15.6
+73672,589302.2097,738541.7645,48880.44857,15.6
+73673,500777.1731,304196.1119,48180.2651,15.6
+73674,962595.696,303718.8686,47493.42229,15.6
+73675,591824.8661,304146.3227,0,15.6
+73676,586261.167,303751.5899,0,15.6
+73677,593948.6614,303880.1158,0,15.6
+73678,591748.7551,303670.9634,0,15.6
+73679,591608.4792,303781.6661,0,15.6
+73680,591378.3527,303880.0871,0,17.8
+73681,294241.1372,2583102.389,113757.4277,17.8
+73682,2302691.078,3000484.792,664858.6555,17.8
+73683,2010073.226,1099987.268,63704.61998,17.8
+73684,1066116.816,872578.12,70377.3857,17.8
+73685,887018.6794,789203.2651,76150.09251,17.8
+73686,789658.4537,1162472.943,69957.04025,17.8
+73687,1217124.203,919241.2219,70617.55752,17.8
+73688,1009738.755,926719.3839,70273.49253,17.8
+73689,991185.0545,920386.8461,69876.97344,17.8
+73690,1012437.832,927016.8364,69509.77953,17.8
+73691,1008453.764,918615.1095,69192.90758,17.8
+73692,1004520.957,1350664.42,68838.81216,17.8
+73693,1000595.244,784344.8932,68508.65999,17.8
+73694,1000664.124,1015883.421,68235.37604,17.8
+73695,995510.1739,883369.2868,67896.72698,17.8
+73696,995902.2396,909048.6407,67600.80302,17.8
+73697,992353.9557,156047.396,67338.54801,17.8
+73698,991182.1339,152952.7897,67011.64689,17.8
+73699,989353.4471,1578483.33,66794.6746,17.8
+73700,985308.15,843052.7857,66473.70906,17.8
+73701,986770.4021,851710.4969,66260.47996,17.8
+73702,981080.4039,1412579.749,65990.18178,17.8
+73703,982638.461,934565.1015,65756.85625,17.8
+73704,843082.5192,910971.0651,65507.7604,17.8
+73705,1049547.069,899631.7451,65281.58658,17.8
+73706,958292.3373,910491.194,65046.75539,17.8
+73707,981822.2755,905589.5718,64832.79154,17.8
+73708,975244.4701,905484.8569,64586.36332,17.8
+73709,971058.1411,903325.2382,64444.43472,17.8
+73710,971537.5366,904849.1561,64191.83635,17.8
+73711,1308433.491,880318.4818,0,17.8
+73712,160798.2322,1314421.226,0,17.8
+73713,1059174.073,880547.3329,0,17.8
+73714,1099702.644,953956.7591,0,17.8
+73715,877993.9186,886377.4161,0,17.8
+73716,985253.3477,900025.2765,101888.3181,17.8
+73717,938541.6676,910825.3831,599806.0085,17.8
+73718,932481.519,903493.8801,63359.71367,17.8
+73719,995615.0776,905957.226,69717.13216,17.8
+73720,955225.1313,905925.8583,65703.33359,17.8
+73721,950689.9185,905817.6513,65899.45387,17.8
+73722,956990.8379,1343415.114,65663.14913,17.8
+73723,954437.2194,907618.1405,65393.5236,17.8
+73724,951808.2621,783494.5167,65226.85356,17.8
+73725,952542.5763,1006242.318,65004.64433,17.8
+73726,949256.276,878940.1258,64801.21454,17.8
+73727,948947.4688,911817.8549,64612.699,17.8
+73728,948628.3926,913479.5506,64449.33095,17.8
+73729,946371.4666,149411.3732,64218.88196,17.8
+73730,946121.599,148878.1802,64066.79644,17.8
+73731,943350.6315,1493487.342,63912.42668,17.8
+73732,944157.5669,1390160.86,63739.95412,17.8
+73733,942911.4365,800491.9829,63588.26248,17.8
+73734,940321.4205,989411.9187,63416.60403,17.8
+73735,812827.8753,938049.2695,63266.65189,17.8
+73736,1000664.837,935399.9468,63115.83247,17.8
+73737,927039.3633,935470.036,62978.16748,17.8
+73738,940818.0804,924955.0447,62850.28412,17.8
+73739,936482.1183,922032.7964,62743.33619,17.8
+73740,933924.0396,924564.2541,62536.20096,20
+73741,2312927.851,2604716.668,1127605.952,20
+73742,2318357.941,2609282.465,659206.6366,20
+73743,290425.5996,2567097.235,376929.3103,20
+73744,2273633.234,2125455.989,343469.2603,20
+73745,2305030.219,2323415.898,424631.0593,20
+73746,1589110.848,1440225.647,315562.0653,20
+73747,1534808.329,1858389.932,321569.76,20
+73748,2047267.016,1716709.419,476453.9067,20
+73749,1557641.063,1685419.13,428252.1502,20
+73750,1500370.158,1655733.858,417530.1282,20
+73751,1591191.519,1657362.937,428679.3898,20
+73752,1575354.007,1643572.278,1156496.09,20
+73753,1554069.772,1634262.737,440279.3494,20
+73754,1549511.04,1624626.417,445932.9032,20
+73755,1542872.61,1426418.439,453260.9507,20
+73756,1539053.697,1651777.508,458498.6821,20
+73757,1532340.621,1656799.12,463853.4577,20
+73758,1529172.337,1630298.375,470170.6936,20
+73759,1526825.126,1561563.536,475216.9137,20
+73760,1521679.902,1594798.184,481920.4127,20
+73761,1519610.552,235313.2655,485746.3728,20
+73762,1517159.372,2377619.405,491147.1444,20
+73763,1512180.291,1584407.381,497090.5108,20
+73764,1511126.81,1454184.461,501469.9382,20
+73765,1505333.755,1609477.41,506542.4785,20
+73766,1323462.882,1558015.162,511169.2064,20
+73767,1531462.43,1545226.579,516072.9918,20
+73768,1534007.652,1539495.524,520729.706,20
+73769,1501259.429,1973169.468,524872.4127,20
+73770,1483856.798,1530503.365,529718.4096,20
+73771,1497897.348,1526235.146,210412.443,20
+73772,1491233.528,1519836.295,209272.8353,20
+73773,1487743.986,1518330.018,207737.5434,20
+73774,225472.0452,1511686.299,206750.3821,20
+73775,1810653.073,1464092.471,1225175.617,20
+73776,1349554.58,1457927.05,378023.8154,20
+73777,1550100.955,1552151.052,495303.3489,20
+73778,1509449.371,1499695.201,476998.9284,20
+73779,1481150.288,1926099.387,435555.5624,20
+73780,1479675.494,1488659.59,616442.3217,20
+73781,1435248.042,1486680.755,551856.975,20
+73782,1430164.977,1481440.362,525457.1637,20
+73783,1502463.223,1476291.724,548978.9367,20
+73784,1496673.763,1473813.047,549036.1,20
+73785,1819776.38,1471170.214,551920.4543,20
+73786,1480151.261,1295902.484,555876.5793,20
+73787,1474398.414,1528277.525,1536234.441,20
+73788,1471331.328,1530801.986,553594.9561,20
+73789,1473093.05,1856125.551,557108.2684,20
+73790,1470730.645,1462118.465,562387.9772,20
+73791,1469046.309,1453483.601,564618.2625,20
+73792,1470657.468,212757.6004,569506.2838,20
+73793,1465840.146,2187028.385,572362.4486,20
+73794,1468405.355,1361818.836,577080.0227,20
+73795,1464183.86,1372200.652,580008.8037,20
+73796,1467675.952,1482137.478,584225.5249,20
+73797,1291160.775,1435618.559,586902.9503,20
+73798,1502079.14,1433239.586,591136.4838,20
+73799,1504034.537,1865220.348,594011.6858,20
+73800,1437245.559,1427347.556,598210.7544,21
+73801,2317110.838,2992154.162,2509748.087,21
+73802,2323041.424,2575622.39,1543819.143,21
+73803,2093209.417,2053668.232,364699.9195,21
+73804,1252285.751,1926228.945,695919.5429,21
+73805,1777844.194,1654679.56,827391.4298,21
+73806,1630216.291,1833678.508,674971.4228,21
+73807,1616474.88,1726211.885,700126.0799,21
+73808,1586577.554,1726610.259,704561.472,21
+73809,1592680.989,2154195.287,707376.2202,21
+73810,1582670.004,1710414.784,710836.9807,21
+73811,1577820.837,1702134.666,712782.7309,21
+73812,1573672.325,1696756.573,716924.0587,21
+73813,1567385.442,1688804.34,719474.3709,21
+73814,1564361.316,1682719.252,722238.3429,21
+73815,1557247.285,1678222.967,724617.3312,21
+73816,1555579.174,1669932.979,727988.283,21
+73817,1550710.373,1664413.069,730349.3876,21
+73818,1546216.574,1661336.946,733545.5728,21
+73819,1542200.646,2089802.893,735596.2047,21
+73820,1538730.753,1650098.525,737967.7345,21
+73821,1535040.524,1644747.44,741074.3493,21
+73822,1530481.688,1638926.644,742340.8707,21
+73823,1529197.432,1637132.349,746165.0843,21
+73824,1521245.905,1631777.656,748049.5972,21
+73825,1521506.122,1625633.748,750203.2846,21
+73826,1518452.757,1624424.24,751437.0255,21
+73827,1511627.779,1618833.422,756281.7186,21
+73828,1513384.706,1613946.851,755828.8786,21
+73829,1505960.446,2047099.827,759022.839,21
+73830,1504218.957,1605552.891,760751.0877,21
+73831,1504015.284,1605383.051,763005.0233,21
+73832,1495913.832,1598654.87,765368.8834,21
+73833,1497461.377,1596401.908,766701.1225,21
+73834,1493224.33,1592537.761,768452.9052,21
+73835,1489755.833,1590451.971,770835.0512,21
+73836,1488786.632,1586147.876,772524.0794,21
+73837,1483167.827,1581806.4,773822.3075,21
+73838,1483483.975,1579583.021,776640.5885,21
+73839,1481025.424,2012658.218,776788.1464,21
+73840,1476459.961,1573469.345,780262.7982,21
+73841,1474815.981,1571271.823,779111.8553,21
+73842,1472282.385,1568687.124,783738.4555,21
+73843,1471876.114,1564995.106,783718.2472,21
+73844,1465415.694,1561710.938,786128.9305,21
+73845,1467332.686,1558157.136,786352.9022,21
+73846,1462229.741,1557090.595,788857.7695,21
+73847,1462568.446,1551705.633,790924.5395,21
+73848,1456937.791,1551755.9,791013.5739,21
+73849,1458545.564,1980960.935,792077.4573,21
+73850,1452879.79,1545205.379,795655.3823,21
+73851,1453440.548,1542470.412,795336.386,21
+73852,1450482.918,1538543.092,796677.9426,21
+73853,1447592.034,1535087.507,798711.1049,21
+73854,1445992.906,1534125.941,799640.8538,21
+73855,1445478.926,1529873.594,800984.7792,21
+73856,1441230.615,1527197.279,802335.8477,21
+73857,1440715.402,1525165.653,804695.5432,21
+73858,1440892.406,1523885.437,804281.8889,21
+73859,1435232.44,1951588.735,804518.2385,21
+73860,1436331.712,1516574.367,810226.6543,21
+73861,2327542.813,2790901.528,766365.2105,21
+73862,2318547.514,2782953.381,759289.5275,21
+73863,2318035.146,2777777.083,758663.3219,21
+73864,2315133.565,2775399.378,758118.6973,21
+73865,2311911.182,2769654.674,756966.4105,21
+73866,2310956.272,2769924.787,756481.7181,21
+73867,2307233.191,2764659.223,755882.7988,21
+73868,2305565.878,2760683.478,754993.3328,21
+73869,2303672.037,2761502.067,755817.7766,21
+73870,2300940.682,2752787.914,753358.229,21
+73871,2296992.278,2753933.558,754270.1679,21
+73872,2295803.503,2750534.263,753064.4631,21
+73873,2293233.281,2745913.407,752448.8829,21
+73874,2291654.421,2745497.474,753038.9311,21
+73875,2290101.11,2741273.043,752197.5572,21
+73876,2286704.528,2740353.571,751731.2808,21
+73877,2285681.665,2733874.267,750629.9257,21
+73878,2285449.951,2735138.439,752168.23,21
+73879,2268617.622,2731543.143,751111.1086,21
+73880,2267734.053,2727514.734,750212.317,21
+73881,2265561.121,2727211.278,747999.5738,21
+73882,2259782.139,2722569.497,749070.1996,21
+73883,2259329.126,3145163.89,748051.7088,21
+73884,2255196.974,2718015.831,747038.7248,21
+73885,2254274.082,2716295.63,747843.1687,21
+73886,2249199.74,2713392.005,746566.05,21
+73887,2250220.149,2710672.225,723691.1056,21
+73888,2244817.374,2708246.024,721261.1944,21
+73889,2244110.127,2707431.54,718207.0702,21
+73890,2240567.627,2702701.384,718321.979,21
+73891,2238326.618,2703603.242,715566.0704,21
+73892,2235840.02,2700099.584,713244.1478,21
+73893,2234855.002,2698435.871,712108.8921,21
+73894,2230702.23,2695857.463,709127.6711,21
+73895,2232293.982,2694534.268,707377.8314,21
+73896,2227229.818,2693111.8,705297.9756,21
+73897,2226573.261,2688959.965,703754.7355,21
+73898,2223678.541,2688838.385,699943.027,21
+73899,2222580.366,2685381.152,698994.3446,21
+73900,2219747.139,2684601.885,696577.9801,21
+73901,2217696.695,2680509.794,695042.3789,21
+73902,2216327.24,2679948.081,692280.2038,21
+73903,2213543.145,2678896.331,689771.0478,21
+73904,2213064.874,2674280.175,689433.7799,21
+73905,2210162.219,2674476.634,684750.7309,21
+73906,2207751.886,2670284.867,685557.5166,21
+73907,2206948.323,2671713.546,681425.2274,21
+73908,2203948.439,2666078.219,680408.135,21
+73909,2203627.673,2668116.549,677644.4189,21
+73910,2200739.742,2661378.101,675978.5494,21
+73911,2199617.961,2663443.927,674246.4025,21
+73912,2195925.301,2659886.688,670764.9794,21
+73913,2196596.011,2656783.882,671162.2004,21
+73914,2193826.471,2655925.581,667111.9876,21
+73915,2191541.963,2655257.838,665193.9032,21
+73916,2190481.728,2650915.606,662971.8628,21
+73917,2189610.822,2651862.735,662009.9077,21
+73918,2185748.23,2647911.883,656368.6032,21
+73919,2187020.038,2646242.596,656752.3525,21
+73920,2184438.249,2646249.22,653457.2678,21
+73921,1984791.227,2413885.522,474570.4155,21
+73922,1968475.726,2823170.162,460079.298,21
+73923,1960301.638,2392155.166,452430.4084,21
+73924,1956809.664,2387438.317,445133.2415,21
+73925,1951174.088,2383259.972,437841.3584,21
+73926,1946551.905,2378428.323,430602.7404,21
+73927,1942208.37,2374799.444,423889.4907,21
+73928,1938224.956,2370268.58,416535.8157,21
+73929,1934403.403,2366789.87,409916.4446,21
+73930,1917960.636,2356901.749,402788.0915,21
+73931,1919139.816,2354690.325,395319.035,21
+73932,1912839.335,2353394.764,388459.652,21
+73933,1908860.384,2347758.214,381905.0351,21
+73934,1901775.078,2343634.512,374798.169,21
+73935,1900401.901,2341539.127,368870.5603,21
+73936,1893344.578,2338209.489,362147.9309,21
+73937,1891530.155,2335621.647,355754.0308,21
+73938,1885297.832,2332593.539,350067.3379,21
+73939,1881543.095,2328298.094,343078.1235,21
+73940,1878842.699,2327873.655,337319.2359,21
+73941,1874021.682,2323305.32,330440.9107,21
+73942,1868884.666,2322413.379,324724.7253,21
+73943,1867801.786,2316894.221,317801.3401,21
+73944,1860875.144,2317461.972,311471.9739,21
+73945,1858723.542,2313153.027,304998.4232,21
+73946,1854021.453,2311549.582,299090.4095,21
+73947,1852821.699,2308803.976,294018.5736,21
+73948,1845311.608,2307688.232,288242.685,21
+73949,1844286.064,2304079.094,282467.7683,21
+73950,1839591.42,2301888.789,277323.4885,21
+73951,1834888.098,2300944.807,271562.6553,21
+73952,1831735.567,2297998.398,266282.3912,21
+73953,1828066.638,2294899.555,260805.8112,21
+73954,1823273.525,2295104.844,255112.8305,21
+73955,1819581.815,2291175.313,249937.7152,21
+73956,1816621.801,2289949.421,246192.793,21
+73957,1809950.402,2287431.367,243045.8069,21
+73958,1809548.499,2286503.484,240273.4449,21
+73959,1803022.557,2283191.494,236952.9361,21
+73960,1799275.954,2282006.836,234265.9886,21
+73961,1794345.761,2280994.848,231352.3746,21
+73962,1789200.958,2274005.906,228191.4396,21
+73963,1784728.616,2270947.347,225725.6012,21
+73964,1781147.27,2268791.489,222695.5889,21
+73965,1777596.242,2268579.452,220267.6633,21
+73966,1772231.757,2264135.246,217183.5774,21
+73967,1769014.688,2262166.13,214702.5144,21
+73968,1766146.681,2262072.333,212127.1458,21
+73969,1760222.031,2257916.046,209227.6251,21
+73970,1757339.918,2257423.046,206726.9891,21
+73971,1753436.886,2254265.957,204457.3711,21
+73972,1748316.211,2252932.826,201631.4388,21
+73973,1746212.844,2251404.515,199101.2892,21
+73974,1741532.634,2248750.951,196831.6175,21
+73975,1736626.934,2247723.484,193955.6513,21
+73976,1729337.255,2245680.814,192097.3703,21
+73977,1727482.071,2243706.192,189430.8267,21
+73978,1719778.223,2240112.183,186895.4481,21
+73979,1718061.379,2242214.896,184572.5059,21
+73980,1712246.218,2236544.631,182462.985,21
+73981,1707122.413,2234925.795,179934.516,21
+73982,1703344.785,2234041.68,178149.4921,21
+73983,1698377.732,2208740.393,175727.4238,21
+73984,1693279.563,2204158.053,173906.2394,21
+73985,1689477.835,2200024.955,171624.4556,21
+73986,1684978.047,2195048.996,169561.9542,21
+73987,1680015.341,2193916.086,167615.7896,21
+73988,1676375.109,2187083.537,165708.5367,21
+73989,1670145.858,2186025.956,163638.0651,21
+73990,1664888.684,2182045.666,68738.29435,21
+73991,1659645.951,2177927.318,67792.01408,21
+73992,1653965.614,2174468.165,67042.49725,21
+73993,1649808.454,2170177.356,66569.86072,21
+73994,1646746.896,2168098.336,65623.30123,21
+73995,1640569.871,2164335.327,64893.24314,21
+73996,1637180.189,2160029.68,64277.45143,21
+73997,1631681.243,2158680.593,63524.75385,21
+73998,1628384.973,2152595.05,62938.06284,21
+73999,1623698.403,2151209.914,62110.31851,21
+74000,1618997.807,2147625.701,61802.9899,21
+74001,1614621.055,2144287.496,60772.35632,21
+74002,1610579.249,2140627.783,60312.17238,21
+74003,1606185.738,2138063.494,59941.20399,21
+74004,1601992.596,2133021.329,59332.491,21
+74005,1596739.786,2132433.859,58707.46316,21
+74006,1593297.453,2127656.045,58267.69475,21
+74007,1588923.601,2125131.668,57761.5083,21
+74008,1583566.597,2121490.406,56992.58977,21
+74009,1581049.196,2119290.019,56658.23263,21
+74010,1575158.904,2114792.944,55919.55567,21
+74011,1571923.452,2113952.749,55517.23124,21
+74012,1568032.994,2109555.73,54773.99305,21
+74013,1563114.899,2107133.042,54628.19882,21
+74014,1560872.034,2104902.467,53853.75076,21
+74015,1556383.241,2102808.7,53070.41426,21
+74016,1552097.864,2098811.132,52905.46356,21
+74017,1548796.665,2097307.073,51988.04682,21
+74018,1546627.058,2094500.066,51921.3918,21
+74019,1540698.173,2092347.565,50977.98971,21
+74020,1539738.468,2090255.531,50613.88029,21
+74021,1534802.167,2089969.282,50014.81142,21
+74022,1531843,2084740.755,49248.82859,21
+74023,1527323.91,2084668.975,49063.85807,21
+74024,1525317.128,2082597.107,48290.04712,21
+74025,1520711.355,2079120.366,47742.54693,21
+74026,1518073.467,2078589.936,47144.88597,21
+74027,1515117.426,2075168.785,46874.57831,21
+74028,1510708.82,2073995.74,45974.18973,21
+74029,1507831.072,2072332.674,45567.88743,21
+74030,1504217.962,2068826.413,44892.24091,21
+74031,1502215.197,2068446.43,44523.3919,21
+74032,1497225.075,2066532.107,43865.6015,21
+74033,1494533.558,2063421.767,43056.19981,21
+74034,1491612.674,2061201.618,43002.62051,21
+74035,1487652.779,2061384.926,42164.80897,21
+74036,1486158.529,2056836.681,41406.22455,21
+74037,1480493.657,2056175.418,41330.12706,21
+74038,1480572.537,2053642.233,40321.30007,21
+74039,1473928.932,2054141.92,39822.22423,21
+74040,1473674.017,2048884.457,39516.41698,21
+74041,1469079.796,2048489.202,37578.17936,21
+74042,1466636.616,2046142.418,36885.086,21
+74043,1464288.06,2042701.473,36641.5937,21
+74044,1460032.112,2038983.861,35824.18495,21
+74045,1457949.089,2039317.92,35557.0116,21
+74046,1453451.896,2033803.968,34605.31045,21
+74047,1452034.322,2032151.924,34251.2241,21
+74048,1447488.212,2029739.781,33656.30088,21
+74049,1444717.963,2026857.146,33031.13853,21
+74050,1442552.135,2023230.762,32639.08533,21
+74051,1438110.051,2022396.502,31820.11469,21
+74052,1436118.559,2018244.496,31607.08001,21
+74053,1432587.456,2015529.199,30622.74423,21
+74054,1430219.496,2013945.562,30451.19015,21
+74055,1426396.615,2010738.591,29484.52272,21
+74056,1424215.108,2008094.958,29213.41561,21
+74057,1421386.659,2005308.707,28619.64554,21
+74058,1417303.058,2003367.168,27985.96804,21
+74059,1415740.266,1998978.092,27462.45795,21
+74060,1412355.262,1998045.744,26920.00453,21
+74061,1407014.018,1994199.432,26217.82825,21
+74062,1405392.831,1992192.141,25818.33066,21
+74063,1401933.5,1990113.085,25159.78171,21
+74064,1397962.479,1986754.855,24754.02584,21
+74065,1396765.112,1983627.099,24043.34467,21
+74066,1393162.992,1982728.226,23442.71561,21
+74067,1390258.313,1977953.594,23104.66413,21
+74068,1387579.881,1976660.36,22238.43125,21
+74069,1385589.65,1973848.617,21968.56723,21
+74070,1381903.178,1970359.577,21369.40218,21
+74071,1379751.807,1969684.224,20543.20802,21
+74072,1378820.958,1964302.356,20239.04565,21
+74073,1377963.094,1964502.044,19271.30344,21
+74074,1376884.432,1959090.411,18871.33925,21
+74075,1374793.361,1957413.314,18263.99951,21
+74076,1373967.143,1955196.866,17519.46629,21
+74077,1370913.601,1950882.295,16963.05925,21
+74078,1370119.841,1950938.593,16370.97711,21
+74079,1368886.303,1945036.287,15682.9145,21
+74080,1365021.129,1944290.781,15061.911,21
+74081,1365790.868,1940407.51,14525.00894,21
+74082,1362659.551,1937647.964,13835.55266,21
+74083,1360472.806,1935437.512,13237.89634,21
+74084,1361518.779,1932723.159,12713.98126,21
+74085,1357317.272,1929545.872,11902.78239,21
+74086,1356495.123,1926844.087,11628.38622,21
+74087,1355355.647,1924151.135,11053.29844,21
+74088,1352921.738,1922328.568,11032.46741,21
+74089,1351679.483,1920818.279,10373.321,21
+74090,1349888.082,1912552.664,10352.09074,21
+74091,1348354.605,1911295.928,10009.77627,21
+74092,1346775.969,1905108.902,9642.823794,21
+74093,1345092.319,1906755.002,9346.385093,21
+74094,1343797.963,1899656.683,9131.798487,21
+74095,1344735.867,1899953.426,8769.922304,21
+74096,1343362.007,1894750.171,8593.880916,21
+74097,1342606.417,1893122.898,8121.501458,21
+74098,1339568.37,1890108.862,8023.185363,21
+74099,1340182.65,1887029.111,7575.789422,21
+74100,1337025.666,1883123.738,7471.739717,21
+74101,1335670.731,1881693.414,7539.53291,21
+74102,1333219.723,1876109.891,7340.754974,21
+74103,1332716.966,1875253.341,7265.044599,21
+74104,1330639.764,1871282.431,6773.976472,21
+74105,1328928.318,1869159.269,6760.22641,21
+74106,1328210.275,1866832.605,6390.529743,21
+74107,1326920.581,1863835.645,6202.696387,21
+74108,1325189.973,1862313.538,5999.647569,21
+74109,1324436.303,1859391.597,5688.537821,21
+74110,1322885.001,1857304.999,5610.98389,21
+74111,1321428.935,1854048.466,5255.854204,21
+74112,1322319.881,1852070.232,4939.882757,21
+74113,1321322.34,1848276.319,4997.939087,21
+74114,1320549.509,1847905.041,4515.462558,21
+74115,1318820.164,1843796.173,4332.778373,21
+74116,1317863.487,1840940.593,4253.623125,21
+74117,1317058.596,1838057.669,3887.259709,21
+74118,1315666.763,1836717.203,3691.274646,21
+74119,1314104.952,1832450.654,3478.991058,21
+74120,1313498.888,1832084.615,3277.785572,21
+74121,1311557.864,1827250.444,3049.460186,21
+74122,1311694.071,1827160.074,2859.339439,21
+74123,1309040.857,1823559.51,2610.424797,21
+74124,1308290.563,1819996.728,2396.098978,21
+74125,1307965.214,1820141.986,2357.594768,21
+74126,1308641.21,1816326.811,2258.020296,21
+74127,1307407.367,1813829.275,2203.892802,21
+74128,1307074.788,1812049.262,2149.563858,21
+74129,1305301.572,1808566.677,2064.324927,21
+74130,1304933.32,1806492.251,2022.710279,21
+74131,1299077.07,1803685.967,1952.331142,21
+74132,1732032.451,1803289.907,1881.656617,21
+74133,1295683.666,1798330.586,1855.052104,21
+74134,1293288.431,1797236.703,1752.819532,21
+74135,1292654.758,2220198.472,1741.519221,21
+74136,1288715.89,1790278.372,1667.791539,21
+74137,1288312.297,1789805.664,1597.828466,21
+74138,1285790.106,1786830.647,1552.86399,21
+74139,1283299.213,1784111.11,1496.003974,21
+74140,1282193.537,1781975.615,1452.680885,21
+74141,1279028.49,1778911.551,1393.409011,21
+74142,1277436.527,1776506.69,1319.85934,21
+74143,1275156.766,1775120.509,1291.713329,21
+74144,1274384.43,1769127.832,1215.736007,21
+74145,1270164.311,1766641.958,1187.198276,21
+74146,1268930.535,1764932.563,1112.048152,21
+74147,1267076.812,1761108.708,1065.504839,21
+74148,1264984.456,1759546.655,1021.367154,21
+74149,1263031.048,1756870.589,943.223685,21
+74150,1259736.223,1753174.15,928.0626469,21
+74151,1256852.323,1752903.22,848.717406,21
+74152,1253521.957,1747297.027,832.5395565,21
+74153,1251337.033,1746248.681,800.0814367,21
+74154,1249445.853,1744319.504,783.810517,21
+74155,1246609.901,1740827.753,767.5077844,21
+74156,1245435.555,1738070.848,751.1726553,21
+74157,1242757.169,1736934.899,718.3948008,21
+74158,1240558.433,1731948.891,701.9595301,21
+74159,1237512.324,1731261.944,668.9775549,21
+74160,1235584.006,1727528.326,668.9846022,21
+74161,1310517.755,1801161.834,1151.261409,21
+74162,1309224.361,1798642.846,1151.252238,21
+74163,1308494.603,1796965.289,1835.034029,21
+74164,1307290.04,2220411.413,1453.244708,21
+74165,1307295.001,1793461.001,1453.277944,21
+74166,1305606.49,1790183.342,1392.079255,21
+74167,1739090.854,1788763.142,1394.011317,21
+74168,1302424.254,1785634.432,1304.566345,21
+74169,1303532.052,1783815.13,1274.633648,21
+74170,1301341.818,1780479.492,1246.383538,21
+74171,1300303.36,1780027.694,1155.79994,21
+74172,1300575.684,1776582.328,1141.450763,21
+74173,1298183.779,1774418.587,1080.526859,21
+74174,1298801.241,1773014.616,1051.342776,21
+74175,1295325.458,1769350.161,973.5847661,21
+74176,1296148.211,1767487.75,959.7541092,21
+74177,1294783.706,1765762.285,872.3224406,21
+74178,1292938.183,1761518.897,881.3757162,21
+74179,1292861.236,1761455.702,800.4294708,21
+74180,1291691.29,1758053.054,800.4395441,21
+74181,1290391.147,1754839.442,784.1609873,21
+74182,1289745.41,1754484.095,767.8504836,21
+74183,1287923.292,1750826.349,735.1230576,21
+74184,1288191.614,1746971.093,735.1315464,21
+74185,1718977.05,1747115.143,685.7859688,21
+74186,1286642.775,1743429.675,702.2787115,21
+74187,1283247.769,1739847.693,652.7254769,21
+74188,1283780.114,1738874.966,652.7321756,21
+74189,1281819.549,1736539.593,636.1472786,21
+74190,1281183,1733546.301,602.8595891,21
+74191,1279717.855,1731327.775,586.161889,21
+74192,1279032.374,1730163.966,569.4243128,21
+74193,1278762.906,1727307.368,535.8226732,21
+74194,1277921.812,1726254.999,535.8272091,21
+74195,1277279.822,1724002.883,485.1052907,21
+74196,1275859.176,2148472.506,468.1115822,21
+74197,1276963.287,1720962.802,451.0712068,21
+74198,1274815.003,1718501.923,433.9828418,21
+74199,1274043.876,1717103.168,399.6535067,21
+74200,1273873.135,1716238.462,365.1137686,21
+74201,1272059.826,1713598.639,365.1158773,21
+74202,1272957.845,1712976.941,330.3499256,21
+74203,1271151.459,1709735.229,312.8772623,21
+74204,1270414.571,1709428.667,277.7356127,21
+74205,1270309.828,1707711.46,260.061544,21
+74206,1270074.721,1706801.974,242.3131506,21
+74207,1267704.489,1703266.51,206.5742894,21
+74208,1268955.184,1704050.064,188.5735517,21
+74209,1266152.692,1701457.794,170.4759256,21
+74210,1267491.734,1700189.048,133.9536348,21
+74211,1265224.726,1697316.922,133.9539215,21
+74212,1265942.678,1697920.362,78.14628665,21
+74213,1264946.564,1693579.2,87.55188537,21
+74214,1263214.068,1693815.292,39.94706982,21
+74215,1263930.766,1691178.703,39.94709537,21
+74216,1263280.292,1691078.098,0,21
+74217,1261395.371,1687705.018,0,21
+74218,1262016.396,1687260.294,0,21
+74219,1259901.067,1684031.853,0,21
+74220,1262024.637,1681815.309,0,21
+74221,1183053.412,1604463.225,0,21
+74222,1182818.677,1603148.54,0,21
+74223,1181122.849,1601200.958,0,21
+74224,1178872.699,1599902.91,0,21
+74225,1179223.29,1598075.937,0,21
+74226,1178521.452,1597527.205,0,21
+74227,1175105.056,1595850.9,0,21
+74228,1176632.855,1594940.089,0,21
+74229,1174731.08,1592769.185,0,21
+74230,1172957.038,1593145.069,0,21
+74231,1173989.976,1589426.097,0,21
+74232,1170301.95,1590606.82,0,21
+74233,1170611.832,1587738.957,0,21
+74234,1169967.021,1588481.295,0,21
+74235,1167293.231,1586171.418,0,21
+74236,1168855.007,1584212.852,0,21
+74237,1165786.523,1585549.55,0,21
+74238,1165796.567,1581518.444,0,21
+74239,1164660.048,1582679.633,0,21
+74240,1162949.889,1580581.115,0,21
+74241,1162731.699,1579180.596,0,21
+74242,1161900.924,1578387.972,0,21
+74243,1159903.059,1578715.007,0,21
+74244,1159978.491,1576504.114,0,21
+74245,1159036.02,1576006.535,0,21
+74246,1157073.841,1574126.961,0,21
+74247,1156855.42,1574133.402,0,21
+74248,1155390.183,1573566.339,0,21
+74249,1154261.25,1570798.752,0,21
+74250,1154264.253,1570723.097,0,21
+74251,1153191.829,1570429.239,0,21
+74252,1151282.164,1567339.33,0,21
+74253,1152611.41,1566520.04,0,21
+74254,1150345.949,1561590.105,0,21
+74255,1150016.505,1559463.183,0,21
+74256,1148489.031,1558027.271,0,21
+74257,1149556.182,1556688.431,0,21
+74258,1147300.292,1552652.691,0,21
+74259,1146677.351,1553040.015,0,21
+74260,1147229.025,1549212.707,0,21
+74261,1145544.504,1548376.514,0,21
+74262,1144588.339,1546876.242,0,21
+74263,1144804.951,1542818.011,0,21
+74264,1142966.589,1542632.715,0,21
+74265,1143607.918,1540236.316,0,21
+74266,1141980.981,1536853.847,0,21
+74267,1142073.442,1536847.172,0,21
+74268,1141390.515,1533335.476,0,21
+74269,1140261.54,1532620.484,0,21
+74270,1140105.167,1955595.05,0,21
+74271,1138335.759,1527588.73,0,21
+74272,1138788.327,1524228.539,0,21
+74273,1137537.505,1519607.492,0,21
+74274,1138070.907,1518297.514,0,21
+74275,1136266.517,1515822.796,0,21
+74276,1136221.496,1513940.601,0,21
+74277,1134706.941,1510636.427,0,21
+74278,1135779.948,1509090.028,0,21
+74279,1133348.282,1507521.576,0,21
+74280,1133986.321,1503695.912,0,21
+74281,1133528.93,1504711.842,0,21
+74282,1138833.766,1506625.355,0,21
+74283,1137897.964,1504675.219,0,21
+74284,1137768.724,1502994.95,0,21
+74285,1138021.764,1501660.898,0,21
+74286,1140178.784,1499499.488,0,21
+74287,1137369.357,1498956.731,0,21
+74288,1140088.677,1495958.634,0,21
+74289,1139062.927,1495270.985,0,21
+74290,1140194.051,1493481.669,0,21
+74291,1140566.61,1489813.965,0,21
+74292,1140354.868,1491296.706,0,21
+74293,1141759.765,1486889.629,0,21
+74294,1141170.006,1485124.11,0,21
+74295,1142165.668,1482041.828,0,21
+74296,1146174.716,1480141.224,0,21
+74297,1143860.243,1478434.783,0,21
+74298,1146288.081,1476828.507,0,21
+74299,1145136.16,1473806.292,0,21
+74300,1146101.923,1472715.818,0,21
+74301,1147609.543,1896278.308,0,21
+74302,1145924.94,1468317.122,0,21
+74303,1147477.609,1465156.547,0,21
+74304,1148913.308,1465548.122,0,21
+74305,1148015.77,1460469.337,0,21
+74306,1149373.804,1460414.241,0,21
+74307,1149233.276,1456542.203,0,21
+74308,1149624.71,1456011.333,0,21
+74309,1150243.961,1452265.191,0,21
+74310,1151796.254,1453283.535,0,21
+74311,1150527.763,1450040.847,0,21
+74312,1152988.694,1448852.048,0,21
+74313,1151133.287,1448635.082,0,21
+74314,1153126.733,1445606.863,0,21
+74315,1153083.224,1444719.876,0,21
+74316,1154046.507,1443429.223,0,21
+74317,1154709.494,1441306.569,0,21
+74318,1154143.581,1438755.121,0,21
+74319,1156210.295,1438781.357,0,21
+74320,1154567.03,1436157.919,0,21
+74321,1156968.656,1434988.852,0,21
+74322,1157112.964,1434652.249,0,21
+74323,1156808.053,1431711.232,0,21
+74324,1158407.011,1432037.817,0,21
+74325,1158085.792,1430274.586,0,21
+74326,1158521.149,1428907.261,0,21
+74327,1159886.157,1427922.159,0,21
+74328,1161017.975,1426436.794,0,21
+74329,1160284.226,1425692.957,0,21
+74330,1161342.872,1424753.096,0,21
+74331,1161599.829,1849015.471,0,21
+74332,1162206.725,1422631.72,0,21
+74333,1162387.291,1420732.068,0,21
+74334,1163978.3,1420422.258,0,21
+74335,1164692.545,1419709.436,0,21
+74336,1164254.122,1417358.741,0,21
+74337,1165647.24,1418401.638,0,21
+74338,1165961.169,1415504.999,0,21
+74339,1166157.685,1415440.473,0,21
+74340,1167517.264,1415063.054,0,21
+74341,1166413.185,1409515.497,0,21
+74342,1168025.867,1408537.219,0,21
+74343,1167811.372,1405593.61,0,21
+74344,1168964.53,1403087.669,0,21
+74345,1169860.71,1400887.434,0,21
+74346,1170127.192,1396752.587,0,21
+74347,1170775.217,1395522.658,0,21
+74348,1170378.212,1818565.336,0,21
+74349,1172676.365,1390233.304,0,21
+74350,1172228.708,1387139.53,0,21
+74351,1173906.963,1385727.14,0,21
+74352,1173448.948,1381911.05,0,21
+74353,1175082.258,1379916.044,0,21
+74354,1175443.304,1377818.972,0,21
+74355,1176068.844,1375062.754,0,21
+74356,1177230.183,1372011.358,0,21
+74357,1176540.442,1370129.541,0,21
+74358,1179166.946,1367680.615,0,21
+74359,1178106.983,1364798.3,0,21
+74360,1179726.397,1363044.027,0,21
+74361,1180036.891,1360065.715,0,21
+74362,1181668.396,1358858.149,0,21
+74363,1181121.628,1356432.703,0,21
+74364,1183507.69,1354245.779,0,21
+74365,1183063.517,1351783.403,0,21
+74366,1183959.575,1350553.956,0,21
+74367,1184648.911,1347177.103,0,21
+74368,1186048.861,1345177.938,0,21
+74369,1185858.259,1769391.277,0,21
+74370,1187820.871,1340865.773,0,21
+74371,1187545.514,1336781.079,0,21
+74372,1187913.71,1336461.568,0,21
+74373,1187535.138,1333344.451,0,21
+74374,1188683.912,1332353.82,0,21
+74375,1187231.72,1330804.256,0,21
+74376,1187677.576,1328618.154,0,21
+74377,1185791.469,1327332.338,0,21
+74378,1186939.859,1325958.232,0,21
+74379,1186110.315,1325136.199,0,21
+74380,1186263.137,1321805.877,0,21
+74381,1186947.285,1322730.205,0,21
+74382,1186229.1,1318734.916,0,21
+74383,1187615.491,1319036.96,0,21
+74384,1186036.462,1317855.035,0,21
+74385,1186844.293,1315049.919,0,21
+74386,1187531.568,1315346.162,0,21
+74387,1186472.46,1312875.829,0,21
+74388,1187706.018,1311874.733,0,21
+74389,1187484.876,1311103.556,0,21
+74390,1186921.293,1735604.597,0,21
+74391,1187639.234,1308053.434,0,21
+74392,1186889.477,1306952.554,0,21
+74393,1187872.51,1306359.173,0,21
+74394,1188101.159,1304578.414,0,21
+74395,1186954.724,1304066.919,0,21
+74396,1187722.161,1302314.973,0,21
+74397,1188971.489,1300662.794,0,21
+74398,1187518.837,1300643.539,0,21
+74399,1186312.691,1298542.047,0,21
+74400,1186235.873,1296726.901,0,21
+74401,1184570.675,1297659.768,0,21
+74402,1182459.578,1298888.578,0,21
+74403,1180394.555,1300250.144,0,21
+74404,1180685.667,1301619.406,0,21
+74405,1178344.853,1304423.696,0,21
+74406,1177721.407,1305725.126,0,21
+74407,1176461.278,1307986.038,0,21
+74408,1175132.817,1309401.984,0,21
+74409,1175150.988,1312148.925,0,21
+74410,1172498.804,1313768.2,0,21
+74411,1171915.261,1316664.763,0,21
+74412,1171412.035,1317445.01,0,21
+74413,1168837.024,1319937.824,0,21
+74414,1169825.825,1322533.489,0,21
+74415,1166805.18,1324031.949,0,21
+74416,1166829.678,1325330.136,0,21
+74417,1165338.309,1329443.107,0,21
+74418,1163718.427,1329947.038,0,21
+74419,1163684.077,1333699.341,0,21
+74420,1162177.667,1334217.11,0,21
+74421,1160159.01,1337660.905,0,21
+74422,1160444.607,1338083.066,0,21
+74423,1159247.349,1341916.456,0,21
+74424,1157680.125,1344394.899,0,21
+74425,1154281.273,1345635.548,0,21
+74426,1153576.66,1347751.341,0,21
+74427,1151424.576,1351673.444,0,21
+74428,1150262.273,1352270.182,0,21
+74429,1149988.741,1355087.045,0,21
+74430,1148853.3,1357641.117,0,21
+74431,1147016.422,1359340.861,0,21
+74432,1148218.019,1360182.343,0,21
+74433,1145573.529,1363884.526,0,21
+74434,1146842.412,1364652.137,0,21
+74435,1144592.954,1366452.01,0,21
+74436,1146047.128,1367211.725,0,21
+74437,1144003.903,1370042.143,0,21
+74438,1144824.346,1372281.491,0,21
+74439,1143433.284,1372974.846,0,21
+74440,1142887.152,1374922.622,0,21
+74441,1142417.693,1376909.588,0,21
+74442,1142507.408,1378571.611,0,21
+74443,1141712.67,1380646.795,0,21
+74444,1141496.005,1381166.757,0,21
+74445,1141057.738,1383818.318,0,21
+74446,1139346.745,1385581.238,0,21
+74447,1141489.438,1386091.197,0,21
+74448,1138572.09,1389057.86,0,21
+74449,1139822.552,1391250.769,0,21
+74450,1138927.36,1390971.761,0,21
+74451,1137915.156,1394007.843,0,21
+74452,1138779.298,1395410.794,0,21
+74453,1138319.523,1396572.527,0,21
+74454,1136639.911,1399355.469,0,21
+74455,1137240.19,1399676.13,0,21
+74456,1137101.587,1401692.502,0,21
+74457,1136562.626,1403331.152,0,21
+74458,1135762.929,1405144.868,0,21
+74459,1137844.078,1406995.24,0,21
+74460,1138078.81,1407235.558,0,21
+74461,1323303.044,1594291.529,0,21
+74462,1336121.7,1608722.145,0,21
+74463,1336068.763,1611064.157,0,21
+74464,1341508.221,1616774.035,0,21
+74465,1340951.118,1618233.676,0,21
+74466,1345373.508,1623318.812,0,21
+74467,1345311.26,1626028.043,0,21
+74468,1349518.152,1628634.689,0,21
+74469,1349863.273,1637133.975,0,21
+74470,1352652.48,1640067.132,0,21
+74471,1353191.825,1643656.127,0,21
+74472,1356926.635,1646508.471,0,21
+74473,1356350.051,1648913.981,0,21
+74474,1360107.622,1651768.635,0,21
+74475,1360665.644,1654242.926,0,21
+74476,1362463.437,1656619.019,0,21
+74477,1363027.901,1659165.412,0,21
+74478,1366016.485,1661013.867,0,21
+74479,1366777.188,1664779.895,0,21
+74480,1367854.469,1665306.607,0,21
+74481,1371045.365,1668843.881,0,21
+74482,1370606.144,1670417.327,0,21
+74483,1373269.202,1672985.384,0,21
+74484,1374757.673,1674051.015,0,21
+74485,1376203.957,1677537.998,0,21
+74486,1377219.016,1679704.733,0,21
+74487,1379966.537,1679474.121,0,21
+74488,1379837.102,1684492.473,0,21
+74489,1382491.42,1683846.644,0,21
+74490,1382609.861,1687200.437,0,21
+74491,1385759.336,1688491.529,0,21
+74492,1385892.828,1691001.06,0,21
+74493,1386491.815,1691612.116,0,21
+74494,1388240.702,1693967.12,0,21
+74495,1390425.072,1697217.955,0,21
+74496,1389703.034,1696654.434,0,21
+74497,1392785.478,1699248.8,0,21
+74498,1391249.249,1701622.522,0,21
+74499,1394380.204,1701650.361,0,21
+74500,1400899.65,1704815.863,0,21
+74501,1403291.997,1706094.979,0,21
+74502,1402573.889,1706798.525,0,21
+74503,1406376.101,1709037.325,0,21
+74504,1406032.447,1710903.27,0,21
+74505,1408539.336,1712118.418,0,21
+74506,1408019.545,1714652.29,0,21
+74507,1411426.592,1713589.511,0,21
+74508,1411973.17,1717697.179,0,21
+74509,1415642.761,1717950.005,0,21
+74510,1414961.232,1720002.527,0,21
+74511,1417345.416,1720145.821,0,21
+74512,1418336.747,1722811.455,0,21
+74513,1418788.998,1725157.992,0,21
+74514,1419447.208,1723963.491,0,21
+74515,1421001.267,1728391.97,0,21
+74516,1422454.558,1727706.391,0,21
+74517,1422589.417,1728905.553,0,21
+74518,1423261.152,1731761.053,0,21
+74519,1424026.816,1731431.745,0,21
+74520,1426991.114,1734667.946,0,21
+74521,1483464.391,1797773.469,0,21
+74522,1490311.763,1810678.975,0,21
+74523,1489696.843,1813520.858,0,21
+74524,1492276.242,1820381.844,0,21
+74525,1491889.473,1823260.931,0,21
+74526,1494126.468,1831430.806,0,21
+74527,1494480.103,1832442.522,0,21
+74528,1494573.06,1840614.194,0,21
+74529,1494266.089,1842796.38,0,21
+74530,1496975.871,1849064.588,0,21
+74531,1496360.676,1854299.353,0,21
+74532,1496863.968,1856318.073,0,21
+74533,1497002.988,1864549.828,0,21
+74534,1498703.787,1866140.762,0,21
+74535,1498477.881,2297506.807,0,21
+74536,1498601.027,1877597.506,0,21
+74537,1497986.651,1880238.468,0,21
+74538,1500987.549,1886026.148,0,21
+74539,1499481.583,1889987.024,0,21
+74540,1500296.912,1895307.017,0,21
+74541,1500598.829,1897893.44,0,21
+74542,1500704.561,1903443.764,0,21
+74543,1500281.164,1908705.398,0,21
+74544,1502438.547,2336439.082,0,21
+74545,1500507.958,1918779.061,0,21
+74546,1502545.008,1920102.842,0,21
+74547,1499772.32,1926300.766,0,21
+74548,1503900.453,1929999.594,0,21
+74549,1500558.166,1934118.6,0,21
+74550,1503541.562,1938522.937,0,21
+74551,1501157.274,1942883.13,0,21
+74552,1503184.601,1947375.316,0,21
+74553,1502572.422,1951986.737,0,21
+74554,1501584.064,1955673.515,0,21
+74555,1502936.547,1960528.557,0,21
+74556,1502861.181,1963995.456,0,21
+74557,1502496.981,1969785.217,0,21
+74558,1502979.135,1972887.195,0,21
+74559,1503009.233,1977748.245,0,21
+74560,1502445.533,1981207.924,0,21
+74561,1502783.079,1986179.314,0,21
+74562,1502486.393,1990634.861,0,21
+74563,1502745.668,1994101.654,0,21
+74564,1503306.226,1999149.199,0,21
+74565,1501348.817,2002477.406,0,21
+74566,1503892.717,2006645.944,0,21
+74567,1501482.597,2012671.105,0,21
+74568,1503394.625,2014849.57,0,21
+74569,1502273.381,2019232.794,0,21
+74570,1501710.477,2024034.585,0,21
+74571,1502927.805,2029411.891,0,21
+74572,1501464.632,2030705.547,0,21
+74573,1503071.112,2037667.105,0,21
+74574,1500317.87,2040371.354,0,21
+74575,1502691.84,2044864.658,0,21
+74576,1501411.371,2048948.38,0,21
+74577,1500279.389,2053674.164,0,21
+74578,1503086.554,2056420.268,0,21
+74579,1499443.376,2061443.503,0,21
+74580,1502334.229,2066509.475,1643.113686,21
+74581,1500467.109,2066534.866,1211.143643,21
+74582,1503490.475,2069559.356,1355.983114,21
+74583,1503306.169,2069808.443,1785.741237,21
+74584,1502961.534,2071687.405,1785.791906,21
+74585,1505698.429,2073337.813,2209.616406,21
+74586,1503304.947,2074000.638,2069.026531,21
+74587,1505824.831,2076942.359,2489.479111,21
+74588,1506215.192,2076662.022,2801.933772,21
+74589,1506128.947,2078221.898,2802.058326,21
+74590,1506139.348,2079876.717,3207.479085,21
+74591,1507546.802,2080952.805,3262.653879,21
+74592,1508006.32,2081785.518,3555.192592,21
+74593,1508052.601,2083822.299,3582.461518,21
+74594,1508246.31,2084287.844,3873.274566,21
+74595,1509141.226,2086982.255,4044.969135,21
+74596,1509514.667,2087385.223,4315.711655,21
+74597,1510180.604,2088041.427,4369.046849,21
+74598,1509813.587,2090378.92,4504.089675,21
+74599,1510983.419,2091394.54,4807.982427,21
+74600,1511881.908,2092754.074,4959.579564,21
+74601,1510739.196,2094332.364,4977.366453,21
+74602,1513789.864,2093462.221,5411.972255,21
+74603,1511031.565,2098111.575,5279.532568,21
+74604,1513109.803,2096869.769,5729.455552,21
+74605,1513560.052,2098878.668,5721.396999,21
+74606,1513929.448,2100127.412,5896.755706,21
+74607,1513880.027,2100867.483,6355.272367,21
+74608,1515028.483,2102394.526,6421.224195,21
+74609,1514253.841,2103592.098,6667.274396,21
+74610,1515140.406,2104327.571,6761.439941,21
+74611,1516568.547,2107448.837,7051.79757,21
+74612,1515510.254,2106996.355,7114.303732,21
+74613,1515747.66,2107547.274,7406.301763,21
+74614,1518345.126,2109611.008,7609.353588,21
+74615,1516528.595,2111831.352,7613.109696,21
+74616,1517498.702,2111557.629,7944.983421,21
+74617,1518301.767,2114494.83,8122.141586,21
+74618,1517777.156,2113392.375,9969.906503,21
+74619,1518125.937,2115619.285,9592.528551,21
+74620,1519521.709,2117041.059,10222.84032,21
+74621,1519527.786,2119167.49,10547.57231,21
+74622,1519676.487,2118105.253,10834.2898,21
+74623,1520352.62,2121920.095,11300.21157,21
+74624,1519924.782,2120139.478,11583.22395,21
+74625,1520766.457,2123824.618,11999.64014,21
+74626,1522103.585,2122513.66,12281.96597,21
+74627,1519799.962,2126471.282,12615.1788,21
+74628,1522281.983,2126014.806,12915.19927,21
+74629,1522336.333,2126914.196,13421.83795,21
+74630,1521295.728,2128558.356,13509.35802,21
+74631,1522767.925,2130525.895,14035.02841,21
+74632,1523618.88,2129847.44,14202.60712,21
+74633,1523156.852,2131899.386,14625.71597,21
+74634,1523510.761,2133796.866,15028.83437,21
+74635,1523688.789,2133399.567,15082.99117,21
+74636,1524479.943,2137324.975,15636.46314,21
+74637,1524528.983,2135150.908,15872.80222,21
+74638,1524924.533,2138384.554,16107.79442,21
+74639,1525423.482,2139122.087,16475.44146,21
+74640,1525209.306,2139640.935,16881.14473,21
+74641,1532392.403,2150966.33,18637.86961,21
+74642,1534906.47,2154345.104,19649.2142,21
+74643,1534336.102,2156025.417,19771.09344,21
+74644,1534967.864,2157897.557,20366.31532,21
+74645,1534444.315,2159259.073,20732.64636,21
+74646,1535322.975,2162256.667,20930.10291,21
+74647,1534896.547,2162628.083,21434.9127,21
+74648,1536379.776,2164779.246,21867.5714,21
+74649,1535449.999,2164895.793,22120.44346,21
+74650,1535621.131,2168358.029,22311.15394,21
+74651,1535120.357,2169698.983,22934.74153,21
+74652,1537434.183,2170248.865,23220.40264,21
+74653,1533974.811,2172037.781,23893.95473,21
+74654,1537321.546,2173740.154,25508.18491,21
+74655,1535122.616,2174888.842,25300.39731,21
+74656,1535763.492,2176740.068,26100.21211,21
+74657,1537843.82,2176525.633,26637.33583,21
+74658,1534958.584,2178005.644,27230.56417,21
+74659,1535700.475,2181151.062,27499.18357,21
+74660,1537018.574,2180093.304,28313.7067,21
+74661,1535440.178,2183241.861,28599.12724,21
+74662,1536527.011,2183394.025,29156.66295,21
+74663,1536710.268,2185655.215,29579.36732,21
+74664,1535261.6,2186612.583,30358.13704,21
+74665,1536488.543,2188567.487,30467.00231,21
+74666,1536146.928,2187998.986,31200.61255,21
+74667,1536316.032,2192271.881,31635.25708,21
+74668,1536379.25,2190374.775,32045.57859,21
+74669,1535407.116,2194734.156,32600.89011,21
+74670,1536556.144,2192954.174,33149.71777,21
+74671,1535284.281,2196725.892,33430.4497,21
+74672,1536095.013,2196630.228,34205.0028,21
+74673,1535505.209,2198896.314,34175.56425,21
+74674,1536957.338,2198317.928,35167.08305,21
+74675,1534602.755,2202298.135,35243.10652,21
+74676,1536796.622,2200142.897,35785.23624,21
+74677,1534656.146,2203827.246,36412.24542,21
+74678,1535913.117,2205946.698,36851.80735,21
+74679,1535834.659,2203562.19,37157.02713,21
+74680,1534936.696,2209078.989,37583.92726,21
+74681,1536300.277,2206304.931,38069.80277,21
+74682,1533955.067,2210731.638,38886.76134,21
+74683,1535822.106,2210569.972,38697.08525,21
+74684,1535864.605,2210743.362,39707.19897,21
+74685,1533623.33,2213587.253,39777.65662,21
+74686,1535982.453,2215210.391,40319.93158,21
+74687,1535119.589,2214196.916,40693.93226,21
+74688,1533573.241,2217388.23,41403.61942,21
+74689,1534885.983,2218355.844,41524.81407,21
+74690,1534688.339,2218889.548,42029.64394,21
+74691,1535275.649,2219875.374,42567.72038,21
+74692,1533689.543,2220850.435,42964.11341,21
+74693,1533276.273,2223259.139,43310.60821,21
+74694,1535421.18,2223886.284,43769.73985,21
+74695,1532842.082,2224772.782,44187.05363,21
+74696,1535313.486,2226669.297,44565.19267,21
+74697,1532293.26,2226901.31,45145.88252,21
+74698,1534869.642,2228862.71,45310.25273,21
+74699,1533513.086,2229832.325,46078.0262,21
+74700,1533333.238,2230371.396,46469.80346,21
+74701,1533010.974,2231760.294,46372.42601,21
+74702,1534245.813,2658037.27,47620.85791,21
+74703,1534550.157,2234733.923,47700.72842,21
+74704,1533545.277,2234804.24,48512.4074,21
+74705,1534295.743,2234447.651,48703.04747,21
+74706,1532745.853,2237925.521,49712.32486,21
+74707,1533823.595,2237489.81,49701.41522,21
+74708,1532786.128,2236540.023,50568.10313,21
+74709,1533154.951,2240595.866,51080.96298,21
+74710,1532414.905,2238760.844,51288.62735,21
+74711,1532469.843,2240096.501,52112.68536,21
+74712,1531958.415,2241303.422,52444.89958,21
+74713,1533797.225,2240847.086,53082.56707,21
+74714,1529691.65,2242887.49,53529.67487,21
+74715,1533194.465,2242575.939,53880.48653,21
+74716,1531558.461,2245053.719,54795.35826,21
+74717,1530667,2242883.783,54919.65986,21
+74718,1532588.735,2246388.971,55955.04153,21
+74719,1529761.438,2245712.315,55820.95762,21
+74720,1531961.964,2246353.019,56728.39077,21
+74721,1529840.686,2247030.097,57222.44476,21
+74722,1530239.629,2249088.038,57659.70995,21
+74723,1530684.66,2248255.854,58229.19535,21
+74724,1530348.963,2673523.405,58703.5222,21
+74725,1528464.94,2249678.035,59306.01614,21
+74726,1531230.582,2252077.732,59571.19067,21
+74727,1528023.211,2250606.632,60339.13759,21
+74728,1530333.797,2252378.136,60626.65275,21
+74729,1528458.679,2253408.348,61497.33352,21
+74730,1527835.707,2253707.835,61513.00376,21
+74731,1529033.203,2253544.768,62554.8045,21
+74732,1528679.794,2255813.717,62727.53469,21
+74733,1526963.686,2255027.379,63451.97229,21
+74734,1528772.771,2256066.889,63936.89598,21
+74735,1527388.878,2257564.592,64205.91229,21
+74736,1527970.023,2257497.559,65095.81973,21
+74737,1527553.086,2259506.085,65223.85137,21
+74738,1525660.579,2258392.054,66010.28065,21
+74739,1527722.149,2259489.959,66499.51699,21
+74740,1525759.005,2261851.011,66843.01502,21
+74741,1526387.746,2259926.798,67556.9464,21
+74742,1527306.917,2263373.302,67858.19776,21
+74743,1524308.209,2262215.838,68447.90694,21
+74744,1526226.724,2263971.762,69157.43433,21
+74745,1526076.279,2263710.896,69269.48468,21
+74746,1524106.071,2264327.133,70089.6907,21
+74747,1525087.809,2690402.7,70821.32527,21
+74748,1525260.771,2265442.418,70899.18257,21
+74749,1523363.932,2268098.156,71498.288,21
+74750,1524296.767,2266231.838,72045.89181,21
+74751,1524713.284,2269433.572,72557.80228,21
+74752,1522818.822,2268691.269,73382.53834,21
+74753,1524129.889,2269408.401,73320.06763,21
+74754,1522511.76,2270348.276,74158.99305,21
+74755,1523045.284,2271547.637,74762.48741,21
+74756,1523530.367,2271358.418,74990.56999,21
+74757,1520991.093,2272394.354,75657.91288,21
+74758,1523328.961,2273077.084,76234.49945,21
+74759,1522029.33,2273978.441,76540.46204,21
+74760,1520560.079,2273596.871,77237.18274,15.6
+74761,0,0,0,15.6
+74762,0,0,0,15.6
+74763,0,0,0,15.6
+74764,0,0,0,15.6
+74765,0,0,0,15.6
+74766,0,0,1226834.638,15.6
+74767,0,0,0,15.6
+74768,0,0,0,15.6
+74769,0,0,0,15.6
+74770,0,222.7286091,0,15.6
+74771,0,0,0,15.6
+74772,0,0,0,15.6
+74773,66029.21116,0,0,15.6
+74774,3730.504615,0,0,15.6
+74775,19750.99666,0,0,15.6
+74776,26334.93084,0,0,15.6
+74777,22523.24321,0,0,15.6
+74778,23560.12995,0,0,15.6
+74779,24047.73955,0,0,15.6
+74780,24504.01525,0,0,15.6
+74781,24911.89452,0,0,15.6
+74782,25300.40156,0,0,15.6
+74783,552332.336,0,0,15.6
+74784,30035.5352,33192.45776,0,15.6
+74785,113417.249,7666.356358,0,15.6
+74786,227148.4707,5838.053042,0,15.6
+74787,166844.3141,17735.67039,0,15.6
+74788,179764.5974,13212.28411,0,15.6
+74789,184022.5256,13813.97353,0,15.6
+74790,186812.7314,14245.52582,0,15.6
+74791,191210.7933,14522.43051,0,15.6
+74792,194255.0588,14787.37734,0,15.6
+74793,197448.1675,14980.03354,0,15.6
+74794,201263.4348,15235.6166,0,15.6
+74795,204398.5303,15463.49431,0,15.6
+74796,207452.9504,15703.38151,0,15.6
+74797,210938.5923,15912.36441,0,15.6
+74798,214021.9313,16133.5545,0,15.6
+74799,217060.5013,16372.06388,0,15.6
+74800,220379.2504,16524.10518,0,15.6
+74801,223108.7365,16757.07956,1178970.63,15.6
+74802,226471.9716,16993.81566,0,15.6
+74803,196794.2146,17159.07599,0,15.6
+74804,199561.0907,17403.56731,0,15.6
+74805,286873.6564,17520.75533,0,15.6
+74806,236689.3319,17812.40476,0,15.6
+74807,230441.6815,17935.82897,0,15.6
+74808,248642.3203,315280.9987,0,15.6
+74809,246939.0512,23848.81628,0,15.6
+74810,249113.1371,87363.48728,0,15.6
+74811,252337.8717,128401.3277,0,15.6
+74812,254507.5051,129696.1602,0,15.6
+74813,35397.51177,118215.7235,0,15.6
+74814,35781.00927,105325.0719,0,15.6
+74815,35958.66073,107361.0884,0,15.6
+74816,768865.2045,108809.3474,0,15.6
+74817,217886.8244,178244.6244,0,15.6
+74818,145394.5778,111976.4526,0,15.6
+74819,347892.8584,130440.7109,0,15.6
+74820,269161.4118,140152.442,0,15.6
+74821,278377.7485,137453.3932,0,15.6
+74822,278502.512,141021.1041,0,15.6
+74823,717902.9367,143550.7599,0,15.6
+74824,278917.7533,145124.0193,0,15.6
+74825,278861.6681,147840.8392,0,15.6
+74826,279437.7223,149356.1792,0,15.6
+74827,279561.678,151986.9825,0,15.6
+74828,278737.2283,154021.1465,0,15.6
+74829,279753.3896,155746.7025,0,15.6
+74830,279204.1382,158067.0796,0,15.6
+74831,279730.031,160066.9274,0,15.6
+74832,278985.2213,162055.4987,0,15.6
+74833,279701.9517,164274.8882,0,15.6
+74834,278918.5168,165524.195,0,15.6
+74835,242361.0745,168291.8644,0,15.6
+74836,241937.2151,169850.5171,1135289.711,15.6
+74837,330575.2828,171850.5593,0,15.6
+74838,287756.8064,24199.85487,0,15.6
+74839,266075.1284,24400.13232,0,15.6
+74840,283319.1027,24614.65791,0,15.6
+74841,279562.9359,24732.99276,0,15.6
+74842,278417.65,578320.1967,0,15.6
+74843,279059.3569,25130.79838,0,15.6
+74844,278157.8836,154300.4682,0,15.6
+74845,278340.9089,229722.4408,0,15.6
+74846,37297.59853,181582.1924,0,15.6
+74847,37227.98212,164949.753,0,15.6
+74848,37184.74555,166205.2227,0,15.6
+74849,803058.4588,168079.9167,0,15.6
+74850,274483.8168,262010.5385,0,15.6
+74851,109029.9142,183782.6484,0,15.6
+74852,367158.6341,183873.7016,0,15.6
+74853,268090.2319,211432.2659,0,15.6
+74854,276498.828,201204.1687,0,15.6
+74855,276783.5217,204542.2716,0,15.6
+74856,276158.1686,205693.2823,0,15.6
+74857,275787.9442,207793.1074,0,15.6
+74858,275661.4637,209282.5167,0,15.6
+74859,275069.3566,210609.2202,0,15.6
+74860,274865.5965,212950.8896,0,15.6
+74861,274538.8501,213848.9473,0,15.6
+74862,274126.6451,215782.894,0,15.6
+74863,273490.3014,217268.1959,0,15.6
+74864,273654.2208,218950.9423,0,15.6
+74865,272954.6719,220212.6116,0,15.6
+74866,272411.3558,221902.4803,0,15.6
+74867,235932.9506,223619.9543,0,15.6
+74868,235429.6427,225390.3228,0,15.6
+74869,322940.4401,226143.7987,0,15.6
+74870,278332.8947,228377.3775,0,15.6
+74871,257338.0043,229211.31,1095430.771,15.6
+74872,275141.5301,30264.57305,0,15.6
+74873,270190.697,30460.80367,0,15.6
+74874,269576.7499,30509.09944,0,15.6
+74875,268937.5685,719977.0092,0,15.6
+74876,268913.6278,90285.65533,0,15.6
+74877,267851.2587,167510.5388,0,15.6
+74878,267860.3406,301484.4168,0,15.6
+74879,36008.74594,233392.2961,0,15.6
+74880,35944.83858,212875.6714,0,15.6
+74881,36287.2192,215001.8799,0,15.6
+74882,787083.3066,305575.4346,0,15.6
+74883,253390.7003,226709.0194,0,15.6
+74884,121377.9917,236598.6108,0,15.6
+74885,359067.3192,246352.1278,0,15.6
+74886,268609.0441,238967.9985,0,15.6
+74887,278044.543,238734.2039,0,15.6
+74888,279266.9196,237057.1719,0,15.6
+74889,280323.2993,235813.8481,0,15.6
+74890,281610.4726,234133.4829,0,15.6
+74891,282115.8546,233361.9065,0,15.6
+74892,283402.9604,231399.1233,0,15.6
+74893,284517.2581,230177.6646,0,15.6
+74894,285334.2438,229272.8442,0,15.6
+74895,286292.0817,227251.7232,0,15.6
+74896,287454.0848,226329.9393,0,15.6
+74897,288683.6946,224645.1513,0,15.6
+74898,288909.5443,223009.1511,0,15.6
+74899,252418.6107,222280.7388,0,15.6
+74900,253038.2124,220475.6089,0,15.6
+74901,343219.4537,218610.5705,0,15.6
+74902,303731.8925,217826.9309,0,15.6
+74903,282581.5552,215678.8404,0,15.6
+74904,298557.161,214987.418,0,15.6
+74905,297678.3327,27926.86376,0,15.6
+74906,297364.816,27673.27261,1059019.517,15.6
+74907,298105.8768,27509.02455,0,15.6
+74908,299859.8862,652812.3911,0,15.6
+74909,299888.5032,43351.31979,0,15.6
+74910,301195.6964,160025.3415,0,15.6
+74911,302308.4238,254572.0683,0,15.6
+74912,39779.90524,167659.2851,0,15.6
+74913,39906.16662,174717.859,0,15.6
+74914,754492.884,173359.0493,0,15.6
+74915,243050.0476,268781.3109,0,15.6
+74916,232946.0857,183300.0023,0,15.6
+74917,351035.7349,176250.1224,0,15.6
+74918,306461.9624,206031.8358,0,15.6
+74919,310020.2752,189391.2931,0,15.6
+74920,311128.171,190175.3721,0,15.6
+74921,311412.187,189018.2032,0,15.6
+74922,312599.9079,186264.2233,0,15.6
+74923,313424.072,185406.7033,0,15.6
+74924,314690.5237,183609.9206,0,15.6
+74925,314982.6533,181634.4484,0,15.6
+74926,316246.5093,180234.9238,0,15.6
+74927,316628.1579,178412.0281,0,15.6
+74928,317808.6405,176508.889,0,15.6
+74929,318921.0939,175417.603,0,15.6
+74930,319039.4767,173001.2521,0,15.6
+74931,278824.5529,171572.5273,0,15.6
+74932,279498.3243,169326.7844,0,15.6
+74933,370306.45,168035.2917,0,15.6
+74934,334178.8172,166099.8517,0,15.6
+74935,321589.5412,163596.9336,0,15.6
+74936,321561.1648,162415.4673,0,15.6
+74937,328153.1174,160113.1266,0,15.6
+74938,326455.8216,21683.32216,0,15.6
+74939,327218.3488,21402.8226,0,15.6
+74940,327480.5963,21043.93906,0,15.6
+74941,328971.5615,21153.45986,1025750.378,15.6
+74942,329685.2311,456767.4447,0,15.6
+74943,330398.679,549849.3749,0,15.6
+74944,42942.90093,21231.18635,0,15.6
+74945,42936.60785,54091.73062,0,15.6
+74946,799019.8015,195731.1395,0,15.6
+74947,328560.3377,126133.0724,0,15.6
+74948,221254.6776,211004.3699,0,15.6
+74949,391126.7729,138208.2258,0,15.6
+74950,334385.1263,149194.5841,0,15.6
+74951,338014.9442,164398.1388,0,15.6
+74952,339168.2339,157201.0669,0,15.6
+74953,339758.5033,158028.9024,0,15.6
+74954,340538.4588,159096.4565,0,15.6
+74955,341773.5654,158942.8881,0,15.6
+74956,342107.3986,159589.5039,0,15.6
+74957,342924.7546,159820.9696,0,15.6
+74958,344528.924,160255.6794,0,15.6
+74959,344234.2512,161049.007,0,15.6
+74960,345505.1594,160733.5207,0,15.6
+74961,346900.9605,161687.8169,0,15.6
+74962,346864.4025,161866.829,0,15.6
+74963,303800.0774,162223.5202,0,15.6
+74964,304156.9356,162796.382,0,15.6
+74965,394696.1103,162943.2058,0,15.6
+74966,365119.3447,598897.3644,0,15.6
+74967,355004.3002,164174.3112,0,15.6
+74968,346429.633,164044.7271,0,15.6
+74969,356186.8027,164854.6811,0,15.6
+74970,354905.33,164905.5416,0,15.6
+74971,354525.5047,165240.5804,0,15.6
+74972,355822.7922,165824.4808,0,15.6
+74973,356304.9589,22501.10954,0,15.6
+74974,357256.0022,22517.96472,0,15.6
+74975,358356.6914,22577.78643,0,15.6
+74976,45874.25502,22637.56353,995371.5985,15.6
+74977,45979.63385,22692.58395,0,15.6
+74978,832081.4933,599110.6753,0,15.6
+74979,388901.3388,0,0,15.6
+74980,259173.5039,61040.75687,0,15.6
+74981,404251.7642,299427.081,0,15.6
+74982,367580.13,141876.2412,0,15.6
+74983,365072.7097,159159.7426,0,15.6
+74984,365991.1845,179206.8534,0,15.6
+74985,366740.9794,170368.2978,0,15.6
+74986,367631.1191,171287.2782,0,15.6
+74987,368491.2745,172337.9983,0,15.6
+74988,368907.5638,172045.5292,0,15.6
+74989,369989.5976,172710.7,0,15.6
+74990,370443.9685,608441.2273,0,15.6
+74991,371647.9353,173281.6652,0,15.6
+74992,371937.8607,173303.237,0,15.6
+74993,373046.9252,174590.9694,0,15.6
+74994,373464.3463,173873.1048,0,15.6
+74995,326997.6317,174601.5589,0,15.6
+74996,327827.8818,175209.7675,0,15.6
+74997,418482.717,175217.5361,0,15.6
+74998,393931.3651,175537.1426,0,15.6
+74999,383228.3558,175874.284,0,15.6
+75000,374933.4278,176625.3699,0,15.6
+75001,378073.9706,180964.2855,0,15.6
+75002,377194.9206,185281.1956,0,15.6
+75003,374376.0828,187886.0741,0,15.6
+75004,373376.4081,192073.0984,0,15.6
+75005,371395.5703,194510.8224,0,15.6
+75006,370528.9427,198266.4648,0,15.6
+75007,368751.7295,201241.9886,0,15.6
+75008,46667.36736,26835.5993,0,15.6
+75009,46452.11311,27207.10664,0,15.6
+75010,838373.8779,27530.43861,0,15.6
+75011,403722.7911,639037.0583,967638.9006,15.6
+75012,259183.7255,14809.06747,0,15.6
+75013,399180.1953,236438.0117,0,15.6
+75014,364196.1367,249232.3682,0,15.6
+75015,359454.3086,217725.7849,0,15.6
+75016,356854.7102,232834.17,0,15.6
+75017,356381.5885,232104.958,0,15.6
+75018,354223.502,235692.0696,0,15.6
+75019,353380.9247,238931.8872,0,15.6
+75020,351704.6283,241467.0007,0,15.6
+75021,350616.6958,245036.7816,0,15.6
+75022,349188.9848,247425.3767,0,15.6
+75023,347588.8994,251044.6972,0,15.6
+75024,346382.2209,253527.676,0,15.6
+75025,344813.4952,257016.7041,0,15.6
+75026,343968.3616,259787.1126,0,15.6
+75027,298532.9623,262454.8513,0,15.6
+75028,297509.0284,265688.4662,0,15.6
+75029,386381.2349,269009.977,0,15.6
+75030,352409.6339,271577.5948,0,15.6
+75031,340300.6249,274661.0642,0,15.6
+75032,328536.9234,277806.1335,0,15.6
+75033,338533.2078,280609.5907,0,15.6
+75034,332707.99,283409.3621,0,15.6
+75035,331918.919,286683.269,0,15.6
+75036,330235.0042,289685.39,0,15.6
+75037,328584.3196,292710.7809,0,15.6
+75038,327756.0956,294811.2417,0,15.6
+75039,325871.8866,298879.1188,0,15.6
+75040,41695.68065,301682.6673,0,15.6
+75041,41507.56192,38260.74461,0,15.6
+75042,788197.472,38537.9319,0,15.6
+75043,309235.6144,787773.4576,0,15.6
+75044,205778.0216,109740.4482,0,15.6
+75045,373877.0776,352491.015,0,15.6
+75046,314015.1981,343411.7048,942355.201,15.6
+75047,315856.3385,312499.6334,0,15.6
+75048,314160.2827,329467.7498,0,15.6
+75049,313165.3928,329018.4872,0,15.6
+75050,311983.6387,331308.0386,0,15.6
+75051,309836.1362,334458.6267,0,15.6
+75052,309177.4002,337672.6044,0,15.6
+75053,307570.8048,339652.655,0,15.6
+75054,306366.0533,343400.0634,0,15.6
+75055,304721.0007,345863.8173,0,15.6
+75056,303354.7976,348985.5355,0,15.6
+75057,302051.5431,351763.5892,0,15.6
+75058,301126.9761,354636.2689,0,15.6
+75059,260388.2476,357838.4156,0,15.6
+75060,259559.0769,360400.7565,0,15.6
+75061,349403.1474,360505.7316,0,15.6
+75062,310433.8055,360061.3357,0,15.6
+75063,290925.3787,359979.7829,0,15.6
+75064,300946.2317,359932.922,0,15.6
+75065,302281.3602,359612.7855,0,15.6
+75066,301309.3663,359646.7952,0,15.6
+75067,302178.8544,359375.0418,0,15.6
+75068,301400.559,359061.1696,0,15.6
+75069,303031.5986,358810.118,0,15.6
+75070,303343.8495,359222.4903,0,15.6
+75071,303335.1143,358221.5029,0,15.6
+75072,39438.97949,358543.1404,0,15.6
+75073,39490.77784,44476.75814,0,15.6
+75074,759073.0041,44405.48048,0,15.6
+75075,259053.1904,921535.8913,0,15.6
+75076,218956.2114,189171.7832,0,15.6
+75077,354407.3241,335344.1937,0,15.6
+75078,304622.832,410832.5563,0,15.6
+75079,308209.7225,349008.4493,0,15.6
+75080,308710.6005,354897.0873,0,15.6
+75081,309011.4472,356986.3862,919287.5631,15.6
+75082,309594.1684,355978.0436,0,15.6
+75083,309735.6493,355164.6223,0,15.6
+75084,310584.4943,355071.078,0,15.6
+75085,311222.3502,354444.1019,0,15.6
+75086,311089.8791,354680.0047,0,15.6
+75087,311830.1668,354257.6357,0,15.6
+75088,312515.9161,354176.2629,0,15.6
+75089,312731.5655,353790.2334,0,15.6
+75090,313137.1911,353252.2965,0,15.6
+75091,273501.0409,354032.361,0,15.6
+75092,273501.0413,352647.0729,0,15.6
+75093,364264.8889,353331.8265,0,15.6
+75094,326485.8471,352621.2379,0,15.6
+75095,312402.7038,352687.0603,0,15.6
+75096,313460.1649,351945.6111,0,15.6
+75097,319861.3768,352325.7609,0,15.6
+75098,316947.1865,351643.6546,0,15.6
+75099,317666.3841,351849.1503,0,15.6
+75100,317952.3182,351083.4578,0,15.6
+75101,318726.615,351551.5293,0,15.6
+75102,318632.8672,350352.5314,0,15.6
+75103,319605.0885,350675.3378,0,15.6
+75104,41215.73631,350755.2294,0,15.6
+75105,41273.74403,44205.12024,0,15.6
+75106,785172.0827,44281.32832,0,15.6
+75107,307513.3487,905156.7979,0,15.6
+75108,210788.6009,178358.8934,0,15.6
+75109,377023.6003,333109.6529,0,15.6
+75110,320221.4129,402470.7339,0,15.6
+75111,323410.9926,341288.5521,0,15.6
+75112,323883.134,348272.9776,0,15.6
+75113,324404.6822,351080.0164,0,15.6
+75114,324737.9367,348130.0611,0,15.6
+75115,325289.8217,348102.3532,0,15.6
+75116,325604.1024,348410.7238,898241.5365,15.6
+75117,325948.7752,347260.7021,0,15.6
+75118,326536.1287,348087.9348,0,15.6
+75119,327058.5912,347155.4609,0,15.6
+75120,327375.8201,346762.734,0,17.8
+75121,1093187.685,1430846.617,0,17.8
+75122,1048516.839,1429809.197,0,17.8
+75123,561063.3308,345413.4589,0,17.8
+75124,657461.834,747061.9562,0,17.8
+75125,707892.2122,742546.4901,0,17.8
+75126,667090.0364,690215.4857,0,17.8
+75127,623877.1215,687413.6347,0,17.8
+75128,643129.2464,632912.2945,0,17.8
+75129,591240.9195,650541.8689,0,17.8
+75130,614425.5422,642979.5457,0,17.8
+75131,605335.7567,637630.3121,0,17.8
+75132,601442.5707,633256.3402,0,17.8
+75133,600702.9163,629133.8334,0,17.8
+75134,596002.1646,624750.6721,0,17.8
+75135,595042.5157,620786.0734,0,17.8
+75136,102990.3313,616779.8871,0,17.8
+75137,102483.1884,117862.001,0,17.8
+75138,914637.6187,117036.4829,0,17.8
+75139,743251.0263,1109722.822,0,17.8
+75140,583899.0505,478512.0241,0,17.8
+75141,674483.4215,656039.6417,0,17.8
+75142,579867.2403,694051.4083,0,17.8
+75143,576486.8791,540291.8987,0,17.8
+75144,592912.0682,620415.3446,0,17.8
+75145,581095.2661,593340.2736,0,17.8
+75146,578875.6933,588685.167,0,17.8
+75147,576639.5667,582413.746,0,17.8
+75148,575957.7421,580057.2766,0,17.8
+75149,573962.7764,576000.5742,0,17.8
+75150,572387.9883,573266.364,879019.459,17.8
+75151,556077.3293,545484.0131,0,17.8
+75152,553795.4814,541938.8675,0,17.8
+75153,553064.1728,539500.9248,0,17.8
+75154,807011.3511,609781.2943,0,17.8
+75155,510234.5775,539491.2185,0,17.8
+75156,578897.5205,549930.7786,0,17.8
+75157,580159.8143,555525.7423,0,17.8
+75158,557979.1645,546323.5587,0,17.8
+75159,564659.4614,545642.3678,0,17.8
+75160,563263.2177,540728.9825,0,17.8
+75161,559387.1104,538879.98,0,17.8
+75162,555859.2078,535647.3805,0,17.8
+75163,556633.1796,532540.7715,0,17.8
+75164,554581.6916,529316.299,0,17.8
+75165,553210.464,526689.7685,0,17.8
+75166,552227.0697,522956.5376,0,17.8
+75167,549514.4685,520231.1914,0,17.8
+75168,95706.4014,518388.9426,0,17.8
+75169,95498.81546,101606.186,0,17.8
+75170,907587.1954,100991.4829,0,17.8
+75171,673865.054,1084466.81,0,17.8
+75172,592450.7915,245659.7613,0,17.8
+75173,578591.9463,640598.9349,0,17.8
+75174,512964.1546,478969.1531,0,17.8
+75175,566467.9193,511487.4818,0,17.8
+75176,541884.16,501102.3995,0,17.8
+75177,540108.7053,491185.7234,0,17.8
+75178,539060.8842,489298.5807,0,17.8
+75179,537895.9231,486904.9388,0,17.8
+75180,536558.2186,479527.6153,0,20
+75181,2316452.269,2607721.83,0,20
+75182,2323424.407,2622212.495,0,20
+75183,2088216.453,2104602.625,0,20
+75184,934405.9324,783354.6262,861459.263,20
+75185,778852.8202,980838.6436,0,20
+75186,1183141.271,1373587.355,0,20
+75187,1212337.965,1087542.534,0,20
+75188,1110327.097,1122603.065,0,20
+75189,1114547.684,1117637.753,0,20
+75190,1115251.712,1113153.475,0,20
+75191,1117529.012,1108626.475,0,20
+75192,1106861.634,1104940.839,0,20
+75193,1448087.779,1099562.074,0,20
+75194,1104799.021,1097430.663,0,20
+75195,1103251.707,1093817.626,0,20
+75196,1101089.958,1090130.019,0,20
+75197,1100096.643,1086229.356,0,20
+75198,1097052.277,1083750.884,0,20
+75199,1097436.578,1080790.182,0,20
+75200,168744.9175,1078509.081,0,20
+75201,1215005.547,179031.3498,0,20
+75202,1224622.485,1492465.353,0,20
+75203,1026630.56,820480.8269,0,20
+75204,1103316.85,1156695.499,0,20
+75205,1094976.197,1065548.449,0,20
+75206,1089601.485,1058409.164,0,20
+75207,1087869.289,1066563.404,0,20
+75208,1086056.548,1059484.546,0,20
+75209,1086802.033,1059041.208,0,20
+75210,1084484.163,1054968.682,0,20
+75211,1084939.574,1055073.76,0,20
+75212,1083881.116,1051732.158,0,20
+75213,1081816.541,1051363.224,0,20
+75214,1083784.001,1048927.701,0,20
+75215,1081008.141,1004003.962,0,20
+75216,1080469.364,997145.9893,0,20
+75217,917317.0886,1090531.974,0,20
+75218,1088469.37,1035118.93,845407.8202,20
+75219,1107601.283,1026773.004,0,20
+75220,1094355.897,1034526.533,0,20
+75221,1073105.384,1031321.611,0,20
+75222,1078446.582,1027377.46,0,20
+75223,1079477.603,1027362.034,0,20
+75224,1077943.542,1023214.06,0,20
+75225,1077571.208,1024994.483,0,20
+75226,1076861.468,1019897.183,0,20
+75227,1077331.069,1019630.29,0,20
+75228,1076448.568,1017010.989,0,20
+75229,1075917.503,1017761.838,0,20
+75230,1075806.717,1013803.861,0,20
+75231,162700.923,1012419.072,0,20
+75232,1513857.87,167326.9327,0,20
+75233,1224478.291,167267.6076,0,20
+75234,1006960.037,1299819.697,0,20
+75235,1088263.015,1264745.326,0,20
+75236,1081804.095,828234.9059,0,20
+75237,1075445.645,1078930.964,0,20
+75238,1075356.751,1025980.91,0,20
+75239,1075139.451,1018504.726,0,20
+75240,1074330.998,1019503.7,0,21
+75241,2314944.355,2988111.688,114308.2158,21
+75242,2263261.359,2382775.147,27774.58769,21
+75243,823387.4157,1111316.855,116018.5664,21
+75244,1239590.944,1266663.198,76971.90169,21
+75245,1284592.703,1416993.687,124486.8316,21
+75246,1201229.12,1321641.707,98947.93267,21
+75247,1200050.152,1309405.659,106519.9636,21
+75248,1195046.201,1307508.014,108814.3976,21
+75249,1193673.799,1302532.74,108978.7221,21
+75250,1188620.387,1299181.026,110125.9778,21
+75251,1187648.647,1295464.102,111005.4889,21
+75252,1184065.122,1291386.908,111579.5248,21
+75253,1179887.984,1288320.235,112782.0518,21
+75254,1178476.277,1286673.569,113239.6344,21
+75255,1175213.467,1280754.291,114261.8675,21
+75256,1174602.319,1279302.261,115286.2701,21
+75257,1168900.283,1276394.609,115542.723,21
+75258,1170705.843,1273448.209,116948.0554,21
+75259,1165319.57,1272723.006,117581.7764,21
+75260,1164711.232,1266923.421,118244.2911,21
+75261,1162733.493,1267860.962,119279.5834,21
+75262,1160860.771,1262657.569,119911.783,21
+75263,1158033.878,1263596.074,120996.4571,21
+75264,1157269.783,1258325.767,121894.7911,21
+75265,1154620.149,1257345.81,122596.7158,21
+75266,1147796.977,1254552.837,123636.0123,21
+75267,1145997.239,1252823.501,126762.2174,21
+75268,1145333.843,1251893.296,128806.6211,21
+75269,1141761.312,1248916.942,128785.4154,21
+75270,1140315.845,1246228.859,131152.0647,21
+75271,1136574.905,1246310.906,131617.7238,21
+75272,1135335.037,1244185.477,133422.3184,21
+75273,1134427.573,1240524.591,134154.5007,21
+75274,1130860.244,1239860.246,135719.5328,21
+75275,1129636.798,1238933.574,136925.8057,21
+75276,1127576.104,1235361.16,138203.0855,21
+75277,1125083.946,1235403.486,139177.1554,21
+75278,1123424.443,1233274.675,140854.2669,21
+75279,1122576.549,1231830.334,141510.349,21
+75280,1119296.317,1229986.244,143156.8544,21
+75281,1118416.549,1229962.479,144291.8195,21
+75282,1117385.216,1225842.604,145413.2336,21
+75283,1114275.757,1225975.972,146597.9019,21
+75284,1114854.352,1225456.634,147871.0737,21
+75285,1109911.66,1221921.247,149028.2836,21
+75286,1112005.784,1222710.611,150395.0438,21
+75287,1107478.913,1220555.873,151374.2682,21
+75288,1107274.723,1217996.588,152649.0875,21
+75289,1106340.012,1219416.801,153961.407,21
+75290,1103041.67,1215653.439,155016.803,21
+75291,1104363.183,1215864.424,156072.5079,21
+75292,1099136.195,1212726.921,157662.8656,21
+75293,1102105.706,1215141.887,158540.2639,21
+75294,1097324,1210081.934,159610.1537,21
+75295,1098469.446,1211655.056,161291.8114,21
+75296,1095227.079,1208032.835,162045.7211,21
+75297,1094678.899,1210156.791,163361.3032,21
+75298,1093958.193,1205778.44,166155.065,21
+75299,1091525.878,1206765.542,166887.7504,21
+75300,1090883.253,1204482.159,168389.6089,21
+75301,1458766.787,2741010.434,153688.1438,21
+75302,1450060.337,2733163.208,153804.7267,21
+75303,1448331.38,2731911.183,153427.6619,21
+75304,1444618.504,2731411.021,154211.0784,21
+75305,1440869.097,2726068.747,154915.3499,21
+75306,1436024.46,2727886.619,155370.1411,21
+75307,1433099.58,2724001.322,155432.7721,21
+75308,1432125.273,2723304.476,156878.0701,21
+75309,1425613.807,2721359.327,156438.1065,21
+75310,1423240.049,2734584.482,158096.0533,21
+75311,1420614.319,2746893.405,157519.3001,21
+75312,1415546.479,2733803.846,158895.7539,21
+75313,1416911.793,2738638.028,159314.7092,21
+75314,1410943.416,2734501.939,159990.7975,21
+75315,1409527.983,2735880.128,160193.8018,21
+75316,1406045.472,2734399.119,161041.8812,21
+75317,1403886.763,2732049.982,161615.5374,21
+75318,1402179.565,2732215.696,162448.9163,21
+75319,1397054.788,2731119.304,162200.1902,21
+75320,1395945.306,2728944.078,160748.758,21
+75321,1393713.103,2729422.837,160425.4911,21
+75322,1388836.954,2727915.479,160451.4738,21
+75323,1388916.407,2725736.323,161396.3211,21
+75324,1385241.489,2727182.284,161184.9174,21
+75325,1383533.656,2724001.965,162316.0091,21
+75326,1380852.086,2724012.477,161680.0407,21
+75327,1377027.771,2723119.323,158932.9194,21
+75328,1377588.363,2720313.275,158707.8107,21
+75329,1373166.353,2723101.521,159291.1713,21
+75330,1371167.649,2718593.005,159540.0945,21
+75331,1370253.901,2720331.427,159505.9876,21
+75332,1366033.513,2716654.535,160272.4735,21
+75333,1363569.709,2719054,160149.6961,21
+75334,1361242.455,2715838.195,159982.2197,21
+75335,1360201.014,2714543.773,160526.1716,21
+75336,1355261.746,2714164.796,160531.9322,21
+75337,1354671.396,2713141.403,160488.1641,21
+75338,1350117.674,2710937.898,160701.3957,21
+75339,1350636.408,2710067.443,161107.8596,21
+75340,1344638.112,2711398.337,160652.2067,21
+75341,1344724.929,2705273.739,161155.2397,21
+75342,1340912.675,2709902.384,161284.757,21
+75343,1338890.756,2705159.106,161041.5041,21
+75344,1335609.414,2705614.688,161152.9205,21
+75345,1334064.83,2704012.303,161835.6241,21
+75346,1330516.46,2703454.976,161019.9579,21
+75347,1329295.675,2703038.505,162517.0989,21
+75348,1326283.323,2700748.17,161666.8975,21
+75349,1323910.945,2702130.293,162392.0599,21
+75350,1321422.359,2697719.181,162559.9739,21
+75351,1319136.26,2699636.105,162364.4881,21
+75352,1316289.373,2698143.327,163096.7405,21
+75353,1313987.636,2696119.941,162568.0114,21
+75354,1312158.057,2697012.531,163453.1169,21
+75355,1309003.007,2694681.422,163031.2074,21
+75356,1307431.676,2694873.526,163509.5697,21
+75357,1303691.61,2693259.021,163334.3381,21
+75358,1302938.395,2692448.298,163822.0288,21
+75359,1299047.451,2692130.094,163494.3336,21
+75360,1297950.296,2690727.972,164385.5982,21
+75361,1058162.525,2447588.547,61915.43032,21
+75362,1042723.722,2430442.128,57412.01444,21
+75363,1032592.732,2425931.478,56011.69788,21
+75364,1028523.149,2423009.555,54531.84806,21
+75365,1021587.388,2842863.621,53857.45796,21
+75366,1015480.884,2419122.669,52533.03541,21
+75367,1010269.08,2415552.685,51727.85349,21
+75368,1005027.596,2414069.133,50768.35136,21
+75369,999578.8146,2412025.309,49823.59744,21
+75370,994951.8849,2410899.679,49204.50815,21
+75371,989821.194,2409409.673,48279.26335,21
+75372,985258.3642,2405527.074,47019.15484,21
+75373,979418.8423,2408050.649,46976.06887,21
+75374,975591.5507,2402728.827,45456.21629,21
+75375,970414.1179,2403518.323,45018.5173,21
+75376,967359.4724,2402702.368,44343.79067,21
+75377,961768.0479,2399663.788,43293.60789,21
+75378,957168.5069,2400733.545,42606.75166,21
+75379,953018.313,2397341.129,41897.26359,21
+75380,949599.3206,2398744.864,40998.71956,21
+75381,944590.2642,2394240.307,40286.4638,21
+75382,939865.4591,2394786.459,39566.9218,21
+75383,936932.6587,2393017.582,38799.05115,21
+75384,931401.8183,2393117.735,38115.95939,21
+75385,929221.9846,2391507.306,37144.54585,21
+75386,923370.1996,2391313.117,36777.57832,21
+75387,920209.8258,2389961.804,35699.58514,21
+75388,917315.2369,2389834.297,35322.98562,21
+75389,910802.9508,2389320.471,34265.1602,21
+75390,909823.6338,2388405.257,33720.05906,21
+75391,903033.0208,2386489.135,32961.49745,21
+75392,898044.8213,2387524.983,32646.47788,21
+75393,893019.7416,2386097.048,31478.79995,21
+75394,888864.3812,2385991.906,31389.03144,21
+75395,884689.8847,2384871.71,30232.64814,21
+75396,879273.9156,2383164.03,29958.20265,21
+75397,875227.1024,2385552.058,29379.04524,21
+75398,870357.3703,2378891.954,28837.50279,21
+75399,866820.2071,2379148.137,28610.80971,21
+75400,861711.7208,2376406.157,28155.44213,21
+75401,855102.5768,2377637.818,27988.17407,21
+75402,850647.9376,2375378.946,27090.08095,21
+75403,845524.8375,2375284.559,27331.51942,21
+75404,841262.5115,2374756.92,26784.03785,21
+75405,837156.9204,2372060.633,26262.53612,21
+75406,831548.6962,2374205.777,25945.14943,21
+75407,826958.5583,2371434.186,25952.76548,21
+75408,823885.2716,2370240.678,25032.79707,21
+75409,817081.4971,2370802.131,25250.87388,21
+75410,813774.7379,2369487.412,24577.97754,21
+75411,809946.8186,2367534.778,24214.25073,21
+75412,803975.5159,2370260.032,23989.53872,21
+75413,799983.4737,2365499.877,23744.85121,21
+75414,795463.3899,2367299.153,23995.20842,21
+75415,791245.4472,2366776.523,24349.70716,21
+75416,784317.6273,2363759.61,23535.94596,21
+75417,779571.0474,2365994.81,23485.66441,21
+75418,775625.6415,2363683.832,23284.36792,21
+75419,769565.9969,2363902.19,22730.91217,21
+75420,766718.4181,2362665.016,22689.67223,21
+75421,761832.6271,2358979.129,22463.92672,21
+75422,756843.6199,2354339.268,21931.83989,21
+75423,755333.4715,2314752.079,21566.70958,21
+75424,748510.7233,2304075.082,21633.70653,21
+75425,746869.429,2296660.03,20983.35146,21
+75426,741705.4362,2289950.64,20883.84031,21
+75427,738802.7316,2283985.678,20561.38609,21
+75428,733848.7924,2276620.913,20283.24049,21
+75429,730562.4374,2271648.357,19942.22707,21
+75430,725841.2914,2263689.942,19720.30883,21
+75431,722834.4457,2257130.323,19292.2564,21
+75432,717971.7627,2250082.76,19279.00391,21
+75433,714537.8152,2244035.002,18576.85021,21
+75434,710185.3112,2236387.877,18701.54682,21
+75435,707489.6727,2231033.753,18221.10322,21
+75436,701291.2761,2223097.939,17983.87362,21
+75437,698758.7171,2216994.394,17638.60491,21
+75438,694390.2682,2210039.048,17476.65182,21
+75439,689260.9075,2203814.958,17217.72655,21
+75440,685188.2369,2196962.677,16571.72105,21
+75441,679704.0041,2190111.408,16903.28265,21
+75442,673462.456,2183264.189,15982.47466,21
+75443,671026.0046,2177470.977,16312.64825,21
+75444,664833.8072,2170451.944,15479.05813,21
+75445,661685.0657,2163218.906,15590.47138,21
+75446,657382.6327,2157600.924,15218.13323,21
+75447,652660.9462,2150565.444,14930.59988,21
+75448,648048.5987,2143757.955,14594.2509,21
+75449,644301.2175,2137697.889,14347.30032,21
+75450,639050.7545,2130929.081,14148.64216,21
+75451,637900.9001,2123535.431,13698.69708,21
+75452,631664.5908,2118358.035,13144.52925,21
+75453,631166.6527,2111760.076,12746.27105,21
+75454,626479.6376,2104876.163,12286.6469,21
+75455,624317.5549,2099016.212,11813.89529,21
+75456,620432.0813,2093393.058,11379.72906,21
+75457,616881.5724,2086057.275,10995.85474,21
+75458,615449.6261,2080773.337,10453.73998,21
+75459,612294.2965,2074598.504,10017.17488,21
+75460,608472.8579,2069193.751,9651.773216,21
+75461,606792.6478,2064449.145,9080.300736,21
+75462,602812.9625,2056644.412,8673.90158,21
+75463,600754.2294,2051945.626,8402.34618,21
+75464,596550.9269,2045390.968,7546.675744,21
+75465,596455.5901,2039117.27,7420.504452,21
+75466,591068.7313,2034582.155,6853.017174,21
+75467,590855.1368,2026751.749,6628.806441,21
+75468,585470.3943,2021904.218,6183.241211,21
+75469,585315.3235,2015752.371,5935.822186,21
+75470,581367.9027,2009925.954,5790.815862,21
+75471,577987.049,2004407.567,5248.854129,21
+75472,577000.4407,1997372.964,5185.223739,21
+75473,573941.7718,1992634.73,4750.489721,21
+75474,570792.4553,1986909.115,4665.961113,21
+75475,568829.2732,1979125.685,4551.578513,21
+75476,566936.5432,1975751.094,4507.095187,21
+75477,562291.3447,1967609.975,4404.264145,21
+75478,561770.8505,1962063.19,4306.938878,21
+75479,558417.9448,1956595.814,4241.293393,21
+75480,556767.6694,1948664.993,4141.145186,21
+75481,553326.3198,1943344.69,4832.852125,21
+75482,550559.7916,1937598.908,15857.78795,21
+75483,548441.4065,1934249.052,10296.68879,21
+75484,544647.3131,1927703.633,11021.67591,21
+75485,542334.9079,1923898.57,10694.00617,21
+75486,539635.2196,1917514.428,10425.31743,21
+75487,535488.6964,1914496.919,10078.03039,21
+75488,533138.2951,1907877.701,9809.535489,21
+75489,530506.7785,1902482.658,9556.242639,21
+75490,526520.3761,1900114.956,9188.126346,21
+75491,525228.7802,1892970.745,8783.742011,21
+75492,520726.9366,1888246.336,8695.296367,21
+75493,519396.6941,1885661.08,8173.833134,21
+75494,515313.0349,1878467.861,8048.450569,21
+75495,512790.1427,1875575.502,7503.708001,21
+75496,510743.3122,1869567.042,7450.047271,21
+75497,506444.7393,1864981.053,6916.218858,21
+75498,503793.9133,1860625.446,6843.752954,21
+75499,502632.9443,1855690.833,6497.974714,21
+75500,497940.4911,1851649.311,6270.345534,21
+75501,495431.3779,1847006.411,5940.181795,21
+75502,493470.4647,1841190.666,5536.479622,21
+75503,489411.8876,1837769.082,5516.858306,21
+75504,487463.1005,1832639.021,5110.963808,21
+75505,484279.938,1827230.442,4755.996406,21
+75506,481813.611,1823961.686,4701.275902,21
+75507,478631.043,1818174.863,4185.126501,21
+75508,475689.5216,1813734.152,4110.790208,21
+75509,473241.306,1810269.871,3731.267491,21
+75510,471083.5581,1804910.57,3532.785267,21
+75511,467216.1482,1799679.702,3130.194281,21
+75512,464027.5365,1797373.72,2744.637361,21
+75513,462496.3685,1790997.694,2315.259357,21
+75514,457959.3688,1787196.396,1937.058982,21
+75515,456753.3701,1783338.781,1697.691312,21
+75516,453056.002,1779100.984,1191.574244,21
+75517,450420.1321,1774597.498,1131.822722,21
+75518,447324.4088,1770716.439,1050.855104,21
+75519,444322.1248,1766591.319,992.2808689,21
+75520,442431.0584,1762069.886,909.8134333,21
+75521,438360.0752,1758120.967,858.5570691,21
+75522,435306.1464,1755516.467,776.6252124,21
+75523,433430.1,1749199.521,723.2328591,21
+75524,430256.8349,1746921.065,685.1053941,21
+75525,427836.2106,1741495.359,685.1094513,21
+75526,424390.5237,1739346.045,627.6268706,21
+75527,421265.3724,1733113.356,627.6302986,21
+75528,418486.9637,1730384.171,569.7796601,21
+75529,416706.5314,1726787.146,569.7825054,21
+75530,412248.7096,1721680.433,530.9981292,21
+75531,412657.9424,1717883.516,511.5381222,21
+75532,409273.0018,1715127.252,492.0302139,21
+75533,407274.759,1709932.285,452.8628627,21
+75534,404537.2197,1706015.775,413.4853019,21
+75535,402059.4178,1703614.626,413.4868316,21
+75536,400319.0739,1698072.096,373.8832865,21
+75537,397308.0876,1694672.244,353.9916721,21
+75538,394377.1001,1690880.859,314.0126713,21
+75539,393230.0911,1687171.331,314.013567,21
+75540,389600.1917,1683424.75,253.5063535,21
+75541,386763.5347,1678564.693,293.9213652,21
+75542,383095.8246,1674662.408,253.5076256,21
+75543,381027.2737,1669732.727,212.7581168,21
+75544,378277.1184,1665526.855,192.2419089,21
+75545,376628.8989,1663422.706,150.8826431,21
+75546,373028.6992,1658560.383,130.0161069,21
+75547,371191.6944,1654200.494,87.81991363,21
+75548,369301.67,1652926.391,55.64539547,21
+75549,365962.3474,1646567,33.83230901,21
+75550,363866.8442,1644945.482,0,21
+75551,362459.9475,1642206.824,0,21
+75552,358533.8183,1639287.032,0,21
+75553,356946.8563,1636167.687,0,21
+75554,354910.6944,1633748.555,0,21
+75555,351634.3029,1631165.517,0,21
+75556,349768.8656,1628866.461,0,21
+75557,346976.6421,1625317.953,0,21
+75558,344481.6783,1623221.121,0,21
+75559,342942.994,1620237.197,0,21
+75560,339102.7703,1617859.361,0,21
+75561,337188.5595,1613780.64,0,21
+75562,334960.508,1613761.053,0,21
+75563,332444.6571,1608193.003,0,21
+75564,329833.5276,1607281.613,0,21
+75565,327232.4759,1604455.562,0,21
+75566,325572.8123,1601770.738,0,21
+75567,322213.2145,1598117.826,0,21
+75568,319727.937,1595989.443,0,21
+75569,317334.6354,1592875.668,0,21
+75570,314405.222,1591327.402,0,21
+75571,313324.0695,1587087.687,0,21
+75572,309397.1011,1585807.771,0,21
+75573,307879.5005,1582644.244,0,21
+75574,304934.7932,1580145.079,0,21
+75575,302819.0712,1576625.468,0,21
+75576,299831.4424,1574343.118,0,21
+75577,297511.7626,1572192.097,0,21
+75578,295820.9568,1568782.854,0,21
+75579,292049.4122,1566266.76,0,21
+75580,291034.5166,1563943.474,0,21
+75581,288119.0438,1560769.816,0,21
+75582,284952.3109,1557742.465,0,21
+75583,283634.5934,1555896.188,0,21
+75584,280086.7362,1552795.808,0,21
+75585,278722.8414,1550065.254,0,21
+75586,274722.5126,1547656.621,0,21
+75587,273523.2888,1545048.067,0,21
+75588,271251.3679,1543503.652,0,21
+75589,267934.8665,1540532.493,0,21
+75590,265984.2412,1539246.593,0,21
+75591,263831.2026,1537270.478,0,21
+75592,260487.5284,1534860.086,0,21
+75593,258411.4734,1532601.718,0,21
+75594,255883.3082,1530289.954,0,21
+75595,252962.9431,1527908.347,0,21
+75596,251101.9448,1525688.405,0,21
+75597,248550.9267,1523084.815,0,21
+75598,245060.1111,1521283.005,0,21
+75599,244264.9233,1518681.698,0,21
+75600,239842.8203,1515989.483,0,21
+75601,308520.4251,1546377.329,0,21
+75602,305898.4474,1603037.485,0,21
+75603,304982.3085,1572373.068,0,21
+75604,302345.1254,1576070.056,0,21
+75605,302246.5262,1573303.862,0,21
+75606,299632.1869,1571506.728,0,21
+75607,298176.6406,1569168.686,0,21
+75608,296814.4023,1566490.687,0,21
+75609,294243.6112,1563447.237,0,21
+75610,293067.0901,1562717.087,0,21
+75611,291435.7534,1560259.371,0,21
+75612,290078.1509,1557302.905,0,21
+75613,288337.057,1557008.441,0,21
+75614,286396.9335,1552438.657,0,21
+75615,284788.3536,1557913.18,0,21
+75616,283352.7561,1555313.655,0,21
+75617,280879.8118,1553502.424,0,21
+75618,280983.1603,1553370.151,0,21
+75619,277429.0756,1551321.385,0,21
+75620,277304.0284,1550689.655,0,21
+75621,274664.2776,1549028.791,0,21
+75622,273678.1206,1547653.855,0,21
+75623,272212.7074,1546410.419,0,21
+75624,269776.6022,1545585.62,0,21
+75625,268745.2326,1543363.175,0,21
+75626,267062.3471,1541937.561,0,21
+75627,266154.5595,1544242.992,0,21
+75628,263207.4982,1542100.303,0,21
+75629,262460.3193,1542136.67,0,21
+75630,260487.9559,1539732.038,0,21
+75631,258638.255,1538951.107,0,21
+75632,257728.8925,1536268.21,0,21
+75633,254668.8981,1535282.407,0,21
+75634,253898.1869,1532812.038,0,21
+75635,251766.192,1530295.834,0,21
+75636,250409.1611,1528919.235,0,21
+75637,248818.7921,1526487.507,0,21
+75638,246820.4652,1525149.918,0,21
+75639,244811.5836,1523472.782,0,21
+75640,244027.2753,1519529.15,0,21
+75641,240756.2573,1945064.609,0,21
+75642,240925.1385,1516534.381,0,21
+75643,237256.6951,1513766.506,0,21
+75644,238046.4943,1512559.857,0,21
+75645,234392.1505,1508403.234,0,21
+75646,233013.9486,1509069.412,0,21
+75647,231629.3634,1503981.997,0,21
+75648,229459.0444,1503670.357,0,21
+75649,228987.9681,1498042.425,0,21
+75650,225441.0418,1495388.038,0,21
+75651,225115.3784,1493132.565,0,21
+75652,224007.8462,1489809.47,0,21
+75653,221366.7679,1487487.647,0,21
+75654,219753.7768,1486099.15,0,21
+75655,218566.7828,1481521.064,0,21
+75656,216524.8206,1481133.053,0,21
+75657,215161.352,1477259.806,0,21
+75658,212585.1844,1900794.203,0,21
+75659,212628.3437,1472799.475,0,21
+75660,210965.0263,1469067.946,0,21
+75661,148383.7829,1398581.662,0,21
+75662,146944.257,1396206.557,0,21
+75663,145398.8648,1394338.549,0,21
+75664,143948.1704,1393080.991,0,21
+75665,142359.8928,1391217.785,0,21
+75666,141276.0328,1389917.427,0,21
+75667,139679.591,1387848.818,0,21
+75668,138310.5686,1386503.946,0,21
+75669,136719.7909,1384589.145,0,21
+75670,135387.9855,1383115.883,0,21
+75671,134225.1949,1381081.149,0,21
+75672,132591.1336,1379696.588,0,21
+75673,131309.0106,1377999.98,0,21
+75674,130387.6675,1376153.063,0,21
+75675,129253.1651,1374368.238,0,21
+75676,128901.6047,1372973.628,0,21
+75677,128841.4619,1371001.694,0,21
+75678,128190.5946,1369150.972,0,21
+75679,128408.218,1367443.34,0,21
+75680,127515.2054,1366299.117,0,21
+75681,127495.1259,1364010.213,0,21
+75682,127105.6284,1362599.826,0,21
+75683,126779.8587,1360802.794,0,21
+75684,126646.7426,1358854.437,0,21
+75685,126038.3459,1357272.884,0,21
+75686,125934.3525,1355743.096,0,21
+75687,125222.1033,1353809.68,0,21
+75688,125418.9025,1352190.131,0,21
+75689,124536.7903,1350416.799,0,21
+75690,124474.6188,1348825.731,0,21
+75691,124209.7455,1347082.183,0,21
+75692,123607.3806,1345173.501,0,21
+75693,123520.7383,1344122.983,0,21
+75694,122882.6436,1342033.843,0,21
+75695,122665.3656,1340845.933,0,21
+75696,122322.4247,1338806.301,0,21
+75697,121861.0611,1337329.066,0,21
+75698,121737.9497,1336091.168,0,21
+75699,120758.5626,1334123.807,0,21
+75700,120851.8996,1332830.171,0,21
+75701,120177.7137,1331017.794,0,21
+75702,119948.1421,1329513.635,0,21
+75703,119407.8643,1328377.056,0,21
+75704,118820.6533,1325839.321,0,21
+75705,118514.8304,1324925.642,0,21
+75706,118005.5164,1323400.97,0,21
+75707,117662.9262,1321468.535,0,21
+75708,116851.4359,1319960.006,0,21
+75709,116776.637,1318806.649,0,21
+75710,115578.3345,1316726.249,0,21
+75711,115734.318,1315596.775,0,21
+75712,114736.8211,1313592.37,0,21
+75713,114533.5398,1312655.199,0,21
+75714,113777.6172,1310129.357,0,21
+75715,113157.0006,1309628.315,0,21
+75716,112697.8945,1307481.742,0,21
+75717,111889.5795,1305857.171,0,21
+75718,111440.5426,1304414.346,0,21
+75719,110525.3099,1302840.188,0,21
+75720,110272.3747,1301553.803,0,21
+75721,114792.0888,1305886.712,0,21
+75722,114248.5512,1307066.646,0,21
+75723,113788.2591,1305757.251,0,21
+75724,113207.7148,1305376.916,0,21
+75725,112484.5163,1305345.997,0,21
+75726,111759.6317,1304354.677,0,21
+75727,111406.9425,1304020.857,0,21
+75728,110403.9906,1303265.475,0,21
+75729,109565.8161,1302758.759,0,21
+75730,108254.1558,1301853.345,0,21
+75731,107734.3804,1301220.089,0,21
+75732,107140.9849,1300212.454,0,21
+75733,106003.1709,1299656.35,0,21
+75734,105731.6178,1299179.006,0,21
+75735,104559.4996,1295218.362,0,21
+75736,103841.8567,1294709.137,0,21
+75737,103383.212,1293334.325,0,21
+75738,102172.5227,1292948.631,0,21
+75739,101624.9612,1291189.44,0,21
+75740,100650.2835,1291466.219,0,21
+75741,99898.77207,1290295.668,0,21
+75742,99302.86945,1288872.244,0,21
+75743,97907.76284,1288653.146,0,21
+75744,97459.04081,1287239.628,0,21
+75745,96718.01789,1287050.263,0,21
+75746,95263.80856,1285669.131,0,21
+75747,95104.54985,1284764.551,0,21
+75748,93660.56105,1284303.676,0,21
+75749,92975.94094,1283117.202,0,21
+75750,92397.57438,1282454.386,0,21
+75751,91088.53182,1281610.361,0,21
+75752,90747.88309,1281148.265,0,21
+75753,89621.65858,1280714.052,0,21
+75754,89164.03926,1280083.877,0,21
+75755,88015.80139,1279357.852,0,21
+75756,87745.01023,1279186.215,0,21
+75757,86821.93576,1278116.172,0,21
+75758,85843.18729,1278340.045,0,21
+75759,85433.84667,1277206.335,0,21
+75760,84641.24348,1277003.497,0,21
+75761,83819.20382,1276351.008,0,21
+75762,83355.69904,1276596.975,0,21
+75763,82359.44627,1275146.4,0,21
+75764,81928.87242,1275224.871,0,21
+75765,81160.77999,1274418.631,0,21
+75766,80644.61433,1274883.916,0,21
+75767,79600.48324,1273651.075,0,21
+75768,79318.66853,1273234.065,0,21
+75769,78500.29954,1273361.25,0,21
+75770,78210.60854,1272665.443,0,21
+75771,77258.81915,1272032.078,0,21
+75772,76808.82875,1272366.706,0,21
+75773,76255.49334,1271196.904,0,21
+75774,75386.86258,1271213.276,0,21
+75775,75033.16718,1271117.143,0,21
+75776,74454.13486,1270089.059,0,21
+75777,74191.80033,1270053.85,0,21
+75778,74654.50414,1269949.813,0,21
+75779,74191.46398,1269600.985,0,21
+75780,74395.26493,1269038.237,0,21
+75781,67881.07333,1263410.987,0,21
+75782,67674.79171,1262974.414,0,21
+75783,67669.57932,1261243.295,0,21
+75784,67348.22791,1260532.757,0,21
+75785,67378.8693,1259250.846,0,21
+75786,66932.06809,1258396.428,0,21
+75787,66915.0327,1257192.782,0,21
+75788,66913.60706,1256323.598,0,21
+75789,66594.39464,1254965.474,0,21
+75790,66497.25287,1254515.606,0,21
+75791,66423.25834,1253060.072,0,21
+75792,66188.37719,1252289.884,0,21
+75793,66138.78869,1251356.639,0,21
+75794,65859.49177,1249978.946,0,21
+75795,65979.12767,1249438.002,0,21
+75796,65416.07173,1247769.848,0,21
+75797,65847.95444,1247476.71,0,21
+75798,65224.54821,1246573.121,0,21
+75799,65277.10379,1244946.675,0,21
+75800,65208.24317,1244896.65,0,21
+75801,64944.02303,1244042.051,0,21
+75802,64643.85174,1242364.234,0,21
+75803,64927.67532,1241941.874,0,21
+75804,64471.26818,1241209.961,0,21
+75805,64493.35177,1239964.003,0,21
+75806,64309.25843,1239544.361,0,21
+75807,64187.18468,1238179.086,0,21
+75808,64006.21746,1237586.669,0,21
+75809,64022.82035,1236787.878,0,21
+75810,63572.50742,1235824.876,0,21
+75811,63840.01554,1234997.586,0,21
+75812,63572.55503,1234651.501,0,21
+75813,63391.14439,1233407.003,0,21
+75814,63443.86189,1233357.882,0,21
+75815,63244.13844,1232370.904,0,21
+75816,63120.635,1231994.787,0,21
+75817,63242.16707,1231049.437,0,21
+75818,62956.35308,1231099.212,0,21
+75819,62807.85298,1230023.937,0,21
+75820,62971.05504,1229296.146,0,21
+75821,62643.19595,1229043.692,0,21
+75822,62653.92775,1228493.179,0,21
+75823,62643.04883,1227750.172,0,21
+75824,62368.04116,1227002.369,0,21
+75825,62501.82433,1227098.418,0,21
+75826,62215.71114,1226220.588,0,21
+75827,62319.57595,1225399.75,0,21
+75828,62219.23745,1225095.157,0,21
+75829,61907.91563,1224853.529,0,21
+75830,62336.51635,1224502.314,0,21
+75831,61761.95849,1223777.133,0,21
+75832,62046.84908,1223365.787,0,21
+75833,61612.81404,1223246.649,0,21
+75834,61761.97926,1222191.187,0,21
+75835,61744.98463,1221665.462,0,21
+75836,61615.69896,1221187.551,0,21
+75837,61446.354,1220204.733,0,21
+75838,61612.15978,1220546.2,0,21
+75839,61300.03013,1218379.224,0,21
+75840,61329.04922,1217933.15,0,21
+75841,61426.6675,1220897.239,0,21
+75842,61042.8483,1224487.116,0,21
+75843,61147.59829,1226189.821,0,21
+75844,61154.46436,1229204.674,0,21
+75845,60855.81602,1231524.835,0,21
+75846,61034.53943,1233915.955,0,21
+75847,61163.17526,1236512.757,0,21
+75848,60730.15162,1239324.966,0,21
+75849,61038.65602,1241267.761,0,21
+75850,60867.86915,1244758.887,0,21
+75851,60574.90427,1246517.404,0,21
+75852,61021.47521,1248623.954,0,21
+75853,60439.67929,1252303.31,0,21
+75854,60607.96663,1253807.63,0,21
+75855,60557.63423,1257305.713,0,21
+75856,60438.00517,1259006.147,0,21
+75857,60436.8278,1262206.775,0,21
+75858,60303.9969,1264282.519,0,21
+75859,60278.01144,1266905.356,0,21
+75860,60309.90098,1269273.701,0,21
+75861,60123.20256,1272351.367,0,21
+75862,60028.4852,1274564.38,0,21
+75863,60123.19293,1276974.323,0,21
+75864,60011.77011,1280006.085,0,21
+75865,59823.22345,1282351.335,0,21
+75866,60008.59912,1284797.781,0,21
+75867,59711.79544,1287658.514,0,21
+75868,59856.27477,1290112.958,0,21
+75869,59691.90129,1294019.995,0,21
+75870,59579.88753,1296501.271,0,21
+75871,59706.44419,1298753.577,0,21
+75872,59550.70229,1301326.483,0,21
+75873,59423.75956,1302224.661,0,21
+75874,59579.86529,1306021.129,0,21
+75875,59244.34854,1306935.436,0,21
+75876,59594.0235,1307765.675,0,21
+75877,59273.5919,1310227.404,0,21
+75878,59258.63634,1312005.478,0,21
+75879,59298.33066,1314003.163,0,21
+75880,59139.80651,1316175.112,0,21
+75881,59123.02732,1318361.779,0,21
+75882,59293.63238,1319583.177,0,21
+75883,58983.62752,1322467.369,0,21
+75884,59142.73535,1323921.188,0,21
+75885,58855.95782,1326307.261,0,21
+75886,58986.62114,1327742.221,0,21
+75887,59041.06578,1329934.409,0,21
+75888,58838.42523,1332124.303,0,21
+75889,58852.92846,1333977.677,0,21
+75890,58873.38857,1335651.265,0,21
+75891,58851.52613,1337746.2,0,21
+75892,58585.96944,1339938.977,0,21
+75893,58871.97911,1341582.136,0,21
+75894,58715.82797,1343291.433,0,21
+75895,58605.09803,1345689.907,0,21
+75896,58867.34633,1347640.495,0,21
+75897,58752.13712,1349433.022,0,21
+75898,58619.54313,1350928.325,0,21
+75899,58935.96425,1353549.917,0,21
+75900,58678.37671,1355626.155,0,21
+75901,88300.24706,1426638.204,0,21
+75902,104402.1158,1431614.289,0,21
+75903,98099.75056,1434513.268,0,21
+75904,100719.9662,1437157.262,0,21
+75905,101218.4006,1439276.135,0,21
+75906,102153.5983,1442380.348,0,21
+75907,103024.9292,1486199.215,0,21
+75908,103307.7438,1528869.981,314.023448,21
+75909,104481.1811,1499121.195,627.692884,21
+75910,131881.2432,1517643.977,433.2290802,21
+75911,161879.5165,1518876.414,531.0451892,21
+75912,138863.6303,1528090.122,608.456376,21
+75913,150555.4103,1526196.996,589.1724796,21
+75914,151333.4823,1532764.08,666.0783086,21
+75915,151475.7146,1534686.524,666.0821456,21
+75916,155820.5176,1537433.185,723.3519054,21
+75917,155105.0877,1540871.591,723.3564003,21
+75918,156673.8845,1544315.711,780.298283,21
+75919,159370.6898,1545951.433,920.69525,21
+75920,160314.519,1549942.989,1126.910578,21
+75921,160650.7156,1552972.011,1071.947212,21
+75922,164013.4017,1553829.296,1202.107315,21
+75923,165277.756,1557979.739,1212.31009,21
+75924,165475.2973,1560798.283,1329.148165,21
+75925,168645.4655,1562923.788,1857.539183,21
+75926,168684.6992,1565578.151,3943.350628,21
+75927,170232.9505,1567538.156,2955.928815,21
+75928,171602.2508,1571030.554,3738.407418,21
+75929,173009.8814,1573029.564,3890.451386,21
+75930,173167.1017,1575117.853,4463.574138,21
+75931,176223.1352,1577835.374,4651.586452,21
+75932,174977.1936,1580742.232,4884.383598,21
+75933,178706.3696,1582680.541,5257.535867,21
+75934,176526.1324,1584407.221,5607.113669,21
+75935,180212.1673,1587399.005,5838.491562,21
+75936,178599.2693,1588700.884,6187.837445,21
+75937,181035.6687,1591980.825,6571.004736,21
+75938,181242.9254,1593739.979,6590.610668,21
+75939,182592.5939,1596086.591,7298.687625,21
+75940,184660.5122,1598437.334,7531.773647,21
+75941,187865.0043,1600077.268,9658.141516,21
+75942,187952.3988,1603218.276,9245.632874,21
+75943,188743.6338,1603753.514,9926.031149,21
+75944,189058.3393,1607057.75,10573.61614,21
+75945,191800.2694,1608246.972,10817.23572,21
+75946,190802.4295,1611001.989,11603.24694,21
+75947,192564.4229,1612952.86,11990.33707,21
+75948,191991.9552,1614053.898,12327.96289,21
+75949,194016.3476,1617869.36,12998.51975,21
+75950,196591.7718,1618575.996,13372.12505,21
+75951,197290.576,1620356.682,13829.74834,21
+75952,197660.647,1623293.078,14544.87186,21
+75953,200412.2212,1624896.958,14676.26713,21
+75954,199017.4773,1626322.439,15392.00808,21
+75955,201377.5619,1628437.697,15707.80412,21
+75956,201776.7179,1630747.752,16361.34367,21
+75957,202094.0253,1632248.484,16550.73991,21
+75958,203946.9503,1634351.181,17238.4921,21
+75959,202857.7585,1635974.58,17369.15974,21
+75960,204679.2914,1637937.561,18204.34486,21
+75961,260453.2029,1702973.531,29676.53223,21
+75962,263903.8168,1711054.439,30772.99515,21
+75963,264870.2558,1712944.269,31515.1251,21
+75964,275278.3709,1716657.206,32202.8591,21
+75965,273579.896,1719981.599,32194.28789,21
+75966,275836.758,1722688.072,33282.36673,21
+75967,277799.8457,1725732.843,33447.14872,21
+75968,279874.7189,1728697.731,34063.55682,21
+75969,280267.4371,1731038.015,34420.39047,21
+75970,281620.1492,1734922.629,35189.21212,21
+75971,283446.4499,1736124.078,35183.16306,21
+75972,285228.2249,1740220.118,35969.36195,21
+75973,285697.2264,1741668.838,36307.90222,21
+75974,286943.3259,1745677.301,36901.56707,21
+75975,288882.6283,1747468.855,36948.68898,21
+75976,289878.5976,1750702.426,37852.13036,21
+75977,290704.4447,1751386.865,38156.46188,21
+75978,292034.9578,1757052.64,38525.80478,21
+75979,292730.0099,1757894.238,39104.813,21
+75980,294164.7489,1759313.265,39456.05031,21
+75981,295864.9204,1763987.73,39914.31295,21
+75982,295372.3251,1765556.063,40419.41653,21
+75983,298169.8347,1768393.142,41055.99076,21
+75984,298105.3637,1769384.335,41616.98733,21
+75985,299277.0012,1773959.362,42016.61521,21
+75986,299231.3051,1775540.165,42519.69098,21
+75987,302090.2566,1777906.102,42871.17827,21
+75988,301588.9355,1779782.241,43116.98234,21
+75989,302762.3205,1782406.177,43708.28707,21
+75990,304226.7106,1785921.07,44088.4799,21
+75991,304044.1289,1786566.838,44321.70967,21
+75992,306226.1834,1789385.085,44788.80567,21
+75993,305611.0734,1792964.879,45139.75914,21
+75994,307424.9832,1794186.887,45266.81047,21
+75995,308098.9556,1796539.276,46092.45107,21
+75996,308331.4621,1798779.888,45966.07386,21
+75997,309948.5008,1801924.716,46554.8544,21
+75998,309886.11,1803623.061,46900.05664,21
+75999,311272.7584,1805342.199,47270.37627,21
+76000,311408.5121,1808782.781,47329.73434,21
+76001,311679.4817,1810295.049,47934.51553,21
+76002,314382.9987,1812387.415,48077.01738,21
+76003,312396.4832,1814662.612,48632.81934,21
+76004,315072.8984,1818031.43,48709.66004,21
+76005,315070.6234,1818116.05,49076.44736,21
+76006,315633.3872,1822900.915,49678.75413,21
+76007,316033.7038,1823605.508,49505.35289,21
+76008,317844.2542,1825627.571,50086.90218,21
+76009,316582.9946,1828830.396,50458.74716,21
+76010,318937.4715,1830109.503,50501.22663,21
+76011,317848.3742,1832467.852,51018.16345,21
+76012,319654.949,1835300.914,51184.33005,21
+76013,319472.2916,1836858.404,51566.52853,21
+76014,321173.8244,1838419.661,51848.10831,21
+76015,319909.9286,1841592.506,51962.87805,21
+76016,322492.0128,1842768.087,52310.11716,21
+76017,321601.6591,1845913.999,52610.62191,21
+76018,323182.6683,1846787.203,52994.78049,21
+76019,322170.8909,1850761.512,53021.01477,21
+76020,324392.6279,1851962.513,53627.71438,21
+76021,324078.254,1854258.221,53500.2285,21
+76022,326332.3342,1859144.267,54291.97602,21
+76023,325985.5172,1862595.906,54134.93975,21
+76024,327424.7032,1865397.107,54736.4376,21
+76025,327444.3372,1867121.839,54832.26461,21
+76026,329510.7817,1871963.213,55000.23322,21
+76027,328931.8736,1874662.725,55498.91225,21
+76028,329826.7934,1878973.895,55531.63313,21
+76029,330918.6857,1882641.978,56193.73962,21
+76030,331785.8782,1885294.297,55949.39445,21
+76031,331904.674,1889454.694,56592.75061,21
+76032,332840.9667,1891486.693,56609.56036,21
+76033,333576.9107,1895246.643,57261.02219,21
+76034,333871.5165,1898467.709,56924.96147,21
+76035,334149.8926,1900738.712,57609.378,21
+76036,336868.8273,1904418.572,57739.26586,21
+76037,335079.9045,1904580.564,58059.53477,21
+76038,336621.3898,1909697.605,58387.224,21
+76039,337967.747,1911147.324,60541.1878,21
+76040,336889.8729,1914882.106,59850.52431,21
+76041,339352.62,1917222.188,60949.09605,21
+76042,339395.584,1921294.22,61240.47163,21
+76043,338734.5385,1924849.118,61711.06074,21
+76044,341112.6992,1925382.29,62065.84386,21
+76045,340611.7217,1930105.967,62938.92384,21
+76046,342026.7271,1933642.734,62810.72515,21
+76047,342179.0825,1935275.784,63810.29689,21
+76048,341530.0826,1939714.514,63610.12116,21
+76049,344579.6611,1940881.751,64392.94819,21
+76050,343105.5618,1945988.638,64923.61912,21
+76051,345193.0996,1947978.576,65284.79516,21
+76052,344335.3893,1950155.647,65618.43937,21
+76053,345580.3838,1955699.051,66113.63139,21
+76054,346056.0253,1955118.764,66590.29558,21
+76055,346491.5565,1961585.312,67003.77308,21
+76056,347801.6963,1963396.183,67450.03376,21
+76057,347380.9159,1964838.59,67286.97076,21
+76058,349382.6706,1970826.539,68588.0476,21
+76059,348224.4153,1970539.07,68493.62511,21
+76060,349177.4083,1976162.524,68902.05991,21
+76061,350527.2499,1977063.06,69372.62601,21
+76062,349601.9873,1981113.804,69705.18321,21
+76063,352007.1203,1984618.753,70211.98184,21
+76064,351083.2587,1988193.039,70667.88855,21
+76065,352114.9152,1991274.109,70561.45506,21
+76066,352428.7121,1993879.511,71617.95021,21
+76067,353080.1332,1996851.126,71378.06968,21
+76068,354255.5375,2001800.955,72204.25021,21
+76069,353891.4536,2002436.94,72470.79875,21
+76070,354182.4463,2005183.582,72667.40677,21
+76071,356209.5952,2009984.683,73221.34986,21
+76072,354885.6808,2011832.06,73400.27256,21
+76073,356347.6338,2013949.39,73952.82473,21
+76074,357365.3683,2016900.855,74073.80266,21
+76075,355915.6974,2019337.865,74765.67563,21
+76076,358574.5179,2023423.74,75026.16596,21
+76077,358278.205,2024860.41,75092.67209,21
+76078,358148.5626,2029293.891,75708.47411,21
+76079,359335.1875,2031186.596,75910.54667,21
+76080,359776.1535,2034099.759,76397.24074,21
+76081,367918.9371,2043816.108,79717.70916,21
+76082,370679.1962,2046308.963,80766.17867,21
+76083,370544.6221,2046986.943,81237.81212,21
+76084,371927.3306,2047527.545,81437.49811,21
+76085,372707.3269,2050180.524,82549.98685,21
+76086,373740.6368,2050607.798,82366.71718,21
+76087,374115.8761,2051212.092,83033.14726,21
+76088,375844.0501,2053397.483,83284.3307,21
+76089,375999.2192,2052695.46,83710.76892,21
+76090,377015.5084,2055957.089,84169.03051,21
+76091,377150.5575,2053721.176,84648.26659,21
+76092,378265.1508,2058315.943,84785.34941,21
+76093,379935.1992,2057165.607,85591.28208,21
+76094,379171.1936,2058553.405,85310.24826,21
+76095,382072.8496,2059181.469,86578.25382,21
+76096,380628.2953,2060194.252,86282.94985,21
+76097,382786.8221,2061181.259,86727.33215,21
+76098,382737.8653,2062464.869,87315.48348,21
+76099,383887.5197,2063209.841,87480.56407,21
+76100,384405.4508,2063790.785,88052.23064,21
+76101,385542.0518,2065138.293,88360.3295,21
+76102,386183.8522,2065487.933,88457.56389,21
+76103,386307.4971,2066431.093,89097.8958,21
+76104,388209.7307,2067502.821,89194.61037,21
+76105,387373.6314,2068953.205,89731.2234,21
+76106,389564.754,2068941.522,89864.41418,21
+76107,389008.436,2069757.117,90954.86574,21
+76108,390650.1029,2071209.611,90043.89166,21
+76109,390044.0111,2070810.826,91406.88837,21
+76110,392002.4728,2072467.397,91457.91781,21
+76111,392501.3347,2073679.185,91287.87385,21
+76112,392887.8339,2073748.088,92471.19426,21
+76113,392960.0246,2074816.636,92264.95621,21
+76114,395206.2699,2075147.378,92840.81142,21
+76115,394551.5977,2077606.151,92883.8192,21
+76116,395259.7752,2076099.761,93599.95939,21
+76117,396971.5479,2078463.455,93448.26782,21
+76118,396322.786,2078755.24,93957.90536,21
+76119,398037.007,2078557.938,94588.4713,21
+76120,398436.2961,2081487.612,94207.1022,21
+76121,398796.2388,2081321.105,95267.00941,21
+76122,399458.3778,2082275.136,95340.25082,21
+76123,399849.6829,2083197.161,95369.07922,21
+76124,401106.1901,2083497.209,95990.29012,21
+76125,401007.7481,2084913.473,96691.26149,21
+76126,402081.4939,2084244.577,97196.49128,21
+76127,402716.2362,2086241.772,97192.09824,21
+76128,403042.3696,2085244.195,97757.33675,21
+76129,403904.4316,2087621.747,98002.68872,21
+76130,404741.7123,2086872.777,98277.9791,21
+76131,404685.6299,2087918.118,98662.44306,21
+76132,406051.5465,2088701.319,98677.98608,21
+76133,406304.5683,2089751.313,99210.40928,21
+76134,406968.9681,2089431.76,99471.5262,21
+76135,407150.8428,2090101.851,99800.81045,21
+76136,408022.0957,2090291.153,99872.63842,21
+76137,409121.1701,2091055.618,100751.6669,21
+76138,408654.2825,2091513.747,100217.7265,21
+76139,410836.9473,2090778.785,101213.817,21
+76140,410753.1162,2090396.454,100941.8269,21
+76141,410964.7205,2091280.062,101786.0485,21
+76142,849189.3471,2093145.65,101643.2824,21
+76143,413035.5409,2096599.895,102579.6252,21
+76144,414496.1644,2095357.339,102561.202,21
+76145,415179.7369,2098272.655,102990.7387,21
+76146,415684.9178,2098282.097,103244.0455,21
+76147,416420.5874,2100415.157,103406.6487,21
+76148,417563.9521,2101570.522,104229.2544,21
+76149,416554.9032,2101729.577,104373.4892,21
+76150,419084.4615,2105580.73,104884.2482,21
+76151,419148.5658,2103799.82,104759.7412,21
+76152,420097.7763,2107582.818,105410.4759,21
+76153,420593.8305,2106170.982,105919.9047,21
+76154,421024.0924,2110144.978,105810.8031,21
+76155,421803.7729,2109496.148,106681.8867,21
+76156,422207.7448,2111647.241,106434.2737,21
+76157,422707.1882,2112921.998,107377.2092,21
+76158,425265.8181,2113416.839,107418.898,21
+76159,423652.8814,2115983.622,107541.0826,21
+76160,424951.2407,2115780.334,108126.2702,21
+76161,426041.4312,2117903.227,108671.6497,21
+76162,426203.1262,2118790.549,108356.0222,21
+76163,427693.0704,2120322.945,109626.8249,21
+76164,427567.3411,2121126.908,108731.5458,21
+76165,429108.7822,2122790.644,110321.6137,21
+76166,428094.4878,2124016.988,109655.1878,21
+76167,430861.7885,2125574.651,110757.1769,21
+76168,430023.959,2125966.554,110375.4513,21
+76169,431485.0716,2127801.735,111189.5431,21
+76170,432357.7992,2129253.42,111278.2418,21
+76171,432526.9965,2129673.29,111651.5231,21
+76172,433720.3877,2132072.928,111938.4732,21
+76173,434213.5528,2132148.874,112579.8252,21
+76174,436307.0302,2134460.844,112672.9215,21
+76175,435048.6863,2134745.574,112971.8733,21
+76176,437742.5163,2137115.499,113072.367,21
+76177,436832.1501,2136592.948,114889.6945,21
+76178,437779.2246,2139940.436,114834.2418,21
+76179,439749.1675,2139960.538,115737.7745,21
+76180,439749.5218,2142125.9,116079.7625,21
+76181,440313.1412,2141194.106,116376.3354,21
+76182,441932.9588,2145727.758,117283.5765,21
+76183,440898.2969,2143793.75,117342.6523,21
+76184,443322.8281,2147445.996,118228.0814,21
+76185,443674.4867,2146557.681,118377.5503,21
+76186,445168.7469,2149676.696,119286.2498,21
+76187,443710.7595,2149882.416,119293.0964,21
+76188,446217.7284,2151059.015,120066.8414,21
+76189,446745.3353,2153132.744,120672.012,21
+76190,447128.0555,2152782.994,120456.7453,21
+76191,447931.8429,2156701.947,121642.4358,21
+76192,450271.4427,2155266.195,121564.0424,21
+76193,450848.0377,2158034.674,122916.8787,21
+76194,452380.4341,2158590.746,122250.6835,21
+76195,455760.2303,2160149.441,123425.2387,21
+76196,456116.2043,2161705.669,124057.6454,21
+76197,457218.5127,2161375.553,123611.6117,21
+76198,460859.9295,2163654.256,124850.927,21
+76199,460454.9941,2165765.897,125010.6524,21
+76200,463983.763,2165921.846,125677.6807,15.6
+76201,0,0,0,15.6
+76202,0,0,0,15.6
+76203,0,738.028508,0,15.6
+76204,0,0,0,15.6
+76205,0,0,1613972.691,15.6
+76206,0,0,0,15.6
+76207,0,0,0,15.6
+76208,339755.4155,0,0,15.6
+76209,0,0,0,15.6
+76210,0,0,0,15.6
+76211,0,0,0,15.6
+76212,0,0,0,15.6
+76213,0,0,0,15.6
+76214,0,0,0,15.6
+76215,0,0,0,15.6
+76216,0,0,0,15.6
+76217,0,0,0,15.6
+76218,0,0,0,15.6
+76219,0,0,0,15.6
+76220,0,0,0,15.6
+76221,0,0,0,15.6
+76222,0,0,0,15.6
+76223,0,0,0,15.6
+76224,0,0,0,15.6
+76225,0,2.916982449,0,15.6
+76226,0,0,0,15.6
+76227,0,0,0,15.6
+76228,0,88.95889336,0,15.6
+76229,0,0,0,15.6
+76230,0,0,0,15.6
+76231,0,0,0,15.6
+76232,0,0,0,15.6
+76233,0,0,0,15.6
+76234,0,0,0,15.6
+76235,0,105.6223606,0,15.6
+76236,0,0,0,15.6
+76237,0,0,0,15.6
+76238,0,0,0,15.6
+76239,0,0,1532712.067,15.6
+76240,0,0,0,15.6
+76241,0,0,0,15.6
+76242,0,0,0,15.6
+76243,0,0,0,15.6
+76244,0,0,0,15.6
+76245,339922.2791,0,0,15.6
+76246,0,0,0,15.6
+76247,0,0,0,15.6
+76248,0,0,0,15.6
+76249,0,0,0,15.6
+76250,0,0,0,15.6
+76251,0,0,0,15.6
+76252,0,0,0,15.6
+76253,0,0,0,15.6
+76254,0,0,0,15.6
+76255,0,0,0,15.6
+76256,0,0,0,15.6
+76257,0,0,0,15.6
+76258,0,0,0,15.6
+76259,0,0,0,15.6
+76260,0,0,0,15.6
+76261,0,0,0,15.6
+76262,0,335.928039,0,15.6
+76263,0,0,0,15.6
+76264,0,0,0,15.6
+76265,0,0,0,15.6
+76266,0,0,0,15.6
+76267,0,0,0,15.6
+76268,0,0,0,15.6
+76269,0,0,0,15.6
+76270,0,0,0,15.6
+76271,0,0,0,15.6
+76272,0,33229.47649,0,15.6
+76273,0,7270.219772,0,15.6
+76274,0,4806.116354,1458718.21,15.6
+76275,0,15033.0591,0,15.6
+76276,0,13097.88001,0,15.6
+76277,0,12373.01623,0,15.6
+76278,0,13086.22179,0,15.6
+76279,0,13386.15068,0,15.6
+76280,0,13681.64654,0,15.6
+76281,0,13878.33694,0,15.6
+76282,0,14176.63463,0,15.6
+76283,339970.1367,14385.58539,0,15.6
+76284,0,14687.59931,0,15.6
+76285,0,14967.02034,0,15.6
+76286,0,15135.72556,0,15.6
+76287,0,15432.00664,0,15.6
+76288,0,15648.3947,0,15.6
+76289,0,15946.42497,0,15.6
+76290,0,16100.56273,0,15.6
+76291,0,16404.82362,0,15.6
+76292,0,16694.67714,0,15.6
+76293,0,16813.12485,0,15.6
+76294,0,17095.57407,0,15.6
+76295,0,17316.64094,0,15.6
+76296,0,17503.01493,0,15.6
+76297,0,18059.73329,0,15.6
+76298,0,17982.90866,0,15.6
+76299,0,18206.7801,0,15.6
+76300,0,18422.64665,0,15.6
+76301,0,18637.22935,0,15.6
+76302,0,0,0,15.6
+76303,0,0,0,15.6
+76304,0,54.97519026,0,15.6
+76305,0,66389.93799,0,15.6
+76306,0,0,0,15.6
+76307,0,17397.97962,0,15.6
+76308,0,24610.52172,0,15.6
+76309,0,19886.22376,1391904.371,15.6
+76310,0,20589.79203,0,15.6
+76311,0,20885.45586,0,15.6
+76312,0,20983.49623,0,15.6
+76313,0,21240.93555,0,15.6
+76314,0,21427.59403,0,15.6
+76315,0,21660.10189,0,15.6
+76316,0,21822.98052,0,15.6
+76317,0,21996.35015,0,15.6
+76318,0,332088.7305,0,15.6
+76319,0,51159.35094,0,15.6
+76320,0,80696.77761,0,15.6
+76321,339940.6357,136456.1235,0,15.6
+76322,0,137978.1787,0,15.6
+76323,0,120536.7033,0,15.6
+76324,0,125869.4838,0,15.6
+76325,0,125400.1031,0,15.6
+76326,0,125340.8038,0,15.6
+76327,0,124801.1131,0,15.6
+76328,0,124500.6652,0,15.6
+76329,0,124097.097,0,15.6
+76330,0,123539.1377,0,15.6
+76331,0,123209.6867,0,15.6
+76332,0,123066.3778,0,15.6
+76333,0,122230.1176,0,15.6
+76334,0,122418.0794,0,15.6
+76335,0,99825.65722,0,15.6
+76336,0,99480.58639,0,15.6
+76337,0,99443.15762,0,15.6
+76338,0,175185.4543,0,15.6
+76339,0,101744.3172,0,15.6
+76340,0,112052.5077,0,15.6
+76341,0,125980.9678,0,15.6
+76342,0,117405.7959,0,15.6
+76343,0,118138.4004,0,15.6
+76344,0,117847.3114,1330967.536,15.6
+76345,0,117033.0107,0,15.6
+76346,0,116412.7209,0,15.6
+76347,0,116382.497,0,15.6
+76348,0,20715.14713,0,15.6
+76349,0,20666.59029,0,15.6
+76350,0,20507.46787,0,15.6
+76351,0,20497.41627,0,15.6
+76352,0,20313.98455,0,15.6
+76353,0,20288.16484,0,15.6
+76354,0,20170.96556,0,15.6
+76355,0,20057.05909,0,15.6
+76356,0,19993.70685,0,15.6
+76357,0,19886.7447,0,15.6
+76358,0,19760.60607,0,15.6
+76359,339904.458,19679.36931,0,15.6
+76360,0,19692.35546,0,15.6
+76361,0,19478.27807,0,15.6
+76362,0,19386.98879,0,15.6
+76363,0,19304.80346,0,15.6
+76364,0,324937.1603,0,15.6
+76365,0,64111.58794,0,15.6
+76366,0,55916.29341,0,15.6
+76367,0,95315.50864,0,15.6
+76368,0,110339.6439,0,15.6
+76369,0,76022.09086,0,15.6
+76370,0,83551.79175,0,15.6
+76371,0,149377.8918,0,15.6
+76372,0,82510.98273,0,15.6
+76373,0,93281.57873,0,15.6
+76374,0,105760.1455,0,15.6
+76375,0,96136.41332,0,15.6
+76376,0,96764.59055,0,15.6
+76377,0,95849.92159,0,15.6
+76378,0,94466.13072,0,15.6
+76379,0,93344.07143,1442263.663,15.6
+76380,0,90986.88264,0,15.6
+76381,0,94439.83671,0,15.6
+76382,0,96843.86894,0,15.6
+76383,0,98941.09293,0,15.6
+76384,0,101447.5794,0,15.6
+76385,0,102802.447,0,15.6
+76386,0,105415.4822,0,15.6
+76387,0,107340.7284,0,15.6
+76388,0,109108.1291,0,15.6
+76389,0,111637.0637,0,15.6
+76390,0,113227.4718,0,15.6
+76391,0,115380.5406,0,15.6
+76392,0,117021.8409,0,15.6
+76393,0,118966.4505,0,15.6
+76394,0,20216.02088,0,15.6
+76395,0,20437.27906,0,15.6
+76396,0,20570.26825,0,15.6
+76397,339868.6472,20842.22588,0,15.6
+76398,0,21161.62698,0,15.6
+76399,0,21164.8147,0,15.6
+76400,0,21424.36007,0,15.6
+76401,0,0,0,15.6
+76402,0,432393.3632,0,15.6
+76403,0,8897.998144,0,15.6
+76404,0,147699.7005,0,15.6
+76405,0,146166.8758,0,15.6
+76406,0,143801.9273,0,15.6
+76407,0,148020.364,0,15.6
+76408,0,146707.0817,0,15.6
+76409,0,149688.2952,0,15.6
+76410,0,150897.3466,0,15.6
+76411,0,153132.9201,0,15.6
+76412,0,155070.5262,0,15.6
+76413,0,156322.2544,0,15.6
+76414,0,158916.1911,1359080.138,15.6
+76415,0,160104.2809,0,15.6
+76416,0,161913.5594,0,15.6
+76417,0,164178.1522,0,15.6
+76418,0,165791.5073,0,15.6
+76419,0,167186.2607,0,15.6
+76420,0,169590.3689,0,15.6
+76421,0,171070.0409,0,15.6
+76422,0,172924.7491,0,15.6
+76423,0,174595.9303,0,15.6
+76424,0,176871.2826,0,15.6
+76425,0,178116.0206,0,15.6
+76426,0,180252.115,0,15.6
+76427,0,181785.5752,0,15.6
+76428,0,183784.7519,0,15.6
+76429,0,185672.5617,0,15.6
+76430,0,187288.5164,0,15.6
+76431,0,188833.7239,0,15.6
+76432,0,27418.67507,0,15.6
+76433,0,27687.51045,0,15.6
+76434,0,0,0,15.6
+76435,339834.0883,0,0,15.6
+76436,0,717001.1493,0,15.6
+76437,29755.56731,25484.55881,0,15.6
+76438,928.2711165,130239.3075,0,15.6
+76439,4249.86709,271718.1824,0,15.6
+76440,8456.947757,194597.3737,0,15.6
+76441,9908.7921,204511.0568,0,15.6
+76442,7707.860894,204606.8327,0,15.6
+76443,8453.212165,202826.188,0,15.6
+76444,8453.206046,201821.6424,0,15.6
+76445,8536.23603,201179.4977,0,15.6
+76446,8603.694118,199817.3054,0,15.6
+76447,8593.600922,198570.1598,0,15.6
+76448,8686.133089,197927.7535,0,15.6
+76449,8717.30664,196787.9232,1284845.895,15.6
+76450,8743.09837,195516.3354,0,15.6
+76451,8826.192555,194635.214,0,15.6
+76452,8818.814265,193812.1075,0,15.6
+76453,8929.208612,192166.3352,0,15.6
+76454,8900.970409,191770.8215,0,15.6
+76455,9007.966077,190303.381,0,15.6
+76456,8992.853138,189562.8327,0,15.6
+76457,9087.814471,188116.2881,0,15.6
+76458,9084.373087,187425.1567,0,15.6
+76459,9178.310175,186569.4333,0,15.6
+76460,9175.534899,185040.298,0,15.6
+76461,9257.626892,184233.4255,0,15.6
+76462,9266.343048,183112.8266,0,15.6
+76463,9325.239538,181937.5667,0,15.6
+76464,9355.183568,181050.5626,0,15.6
+76465,9417.224422,179841.9285,0,15.6
+76466,9449.887927,0,0,15.6
+76467,0,0,0,15.6
+76468,0,0,0,15.6
+76469,0,94703.60867,0,15.6
+76470,0,580529.5584,0,15.6
+76471,0,7792.386554,0,15.6
+76472,0,111265.1518,0,15.6
+76473,339788.1401,236202.9806,0,15.6
+76474,0,158052.2073,0,15.6
+76475,39726.18727,168746.4408,0,15.6
+76476,969.9794108,168409.5503,0,15.6
+76477,4215.083654,167415.8384,0,15.6
+76478,12293.36889,165487.4673,0,15.6
+76479,10866.85028,165345.9792,0,15.6
+76480,9593.44574,163375.5657,0,15.6
+76481,10069.62547,162793.6963,0,15.6
+76482,10143.62273,161283.6148,0,15.6
+76483,10149.00672,160614.968,0,15.6
+76484,10196.43567,158591.0332,1226812.262,15.6
+76485,10228.16753,158266.2634,0,15.6
+76486,10263.81483,156466.8959,0,15.6
+76487,10280.88731,155957.1533,0,15.6
+76488,10336.47119,154880.1135,0,15.6
+76489,10326.89794,153546.2368,0,15.6
+76490,10391.25098,152793.4591,0,15.6
+76491,10418.07476,150994.1,0,15.6
+76492,10425.06139,150194.7145,0,15.6
+76493,10469.77998,149019.3371,0,15.6
+76494,10506.65176,147158.8443,0,15.6
+76495,10506.42322,146208.843,0,15.6
+76496,10579.24337,144865.6148,0,15.6
+76497,10582.0971,143636.9097,0,15.6
+76498,10618.21753,141776.6514,0,15.6
+76499,10639.36004,118696.0415,0,15.6
+76500,10654.50564,0,0,15.6
+76501,10750.61223,69.97977074,0,15.6
+76502,10858.47592,77601.70649,0,15.6
+76503,10897.2869,2433.158187,0,15.6
+76504,11013.62307,13652.50526,0,15.6
+76505,0,28905.62777,0,15.6
+76506,0,20428.38743,0,15.6
+76507,0,524243.3075,0,15.6
+76508,0,21699.77228,0,15.6
+76509,0,70090.47104,0,15.6
+76510,0,168243.8063,0,15.6
+76511,388698.0463,152607.2275,0,15.6
+76512,109.0747316,135305.4759,0,15.6
+76513,3801.094748,141776.1881,0,15.6
+76514,16596.84763,142147.2751,0,15.6
+76515,11986.55043,142420.5841,0,15.6
+76516,11615.82187,142215.9393,0,15.6
+76517,12086.35576,142860.6448,0,15.6
+76518,12197.6913,142567.1397,0,15.6
+76519,12240.1997,143444.5503,1170624.154,15.6
+76520,12325.63886,142558.7165,0,15.6
+76521,12421.84847,143688.8228,0,15.6
+76522,12478.04843,143587.7786,0,15.6
+76523,12573.92172,143613.3316,0,15.6
+76524,12635.50634,144417.3667,0,15.6
+76525,12708.43189,144321.8776,0,15.6
+76526,12789.30118,143842.199,0,15.6
+76527,12872.66868,144937.07,0,15.6
+76528,12934.23234,144660.4318,0,15.6
+76529,13044.14505,145149.1565,0,15.6
+76530,13097.1494,145464.4006,0,15.6
+76531,13135.61665,145387.4238,0,15.6
+76532,13258.93544,123391.4663,0,15.6
+76533,13338.73162,123589.6432,0,15.6
+76534,13376.20744,123730.8863,0,15.6
+76535,13469.44634,204399.4575,0,15.6
+76536,13558.98146,128191.2954,0,15.6
+76537,13618.74393,13204.81931,0,15.6
+76538,13693.38718,30423.74119,0,15.6
+76539,13783.47864,21165.90338,0,15.6
+76540,13814.94754,22556.76869,0,15.6
+76541,0,22621.46621,0,15.6
+76542,0,22609.24562,125600.661,15.6
+76543,0,554212.34,123590.7951,15.6
+76544,0,22661.97061,121615.3915,15.6
+76545,56854.78177,65535.0377,119673.0382,15.6
+76546,0,194987.4696,117763.0803,15.6
+76547,4932.737085,152640.5512,115886.1638,15.6
+76548,22449.67581,145209.4964,114041.3336,15.6
+76549,352719.7041,149812.6354,112227.5757,15.6
+76550,14593.26353,150682.2822,110444.5591,15.6
+76551,14715.82343,150055.2497,108691.9686,15.6
+76552,14786.00825,150884.8847,106969.3779,15.6
+76553,14871.41696,150844.1157,105276.5328,15.6
+76554,14896.85396,151078.6099,980416.8138,15.6
+76555,15003.1518,151011.0758,98613.36073,15.6
+76556,15091.95192,151248.906,97063.9544,15.6
+76557,15100.33044,151746.1335,95541.80237,15.6
+76558,15186.75092,151172.5564,94046.56502,15.6
+76559,15302.29171,152488.4282,92577.83146,15.6
+76560,15348.06735,151731.3128,91135.24238,17.8
+76561,907669.5417,1420278.95,0,17.8
+76562,767139.0071,1007548.097,0,17.8
+76563,298757.7503,211182.296,0,17.8
+76564,248719.3964,405598.1291,0,17.8
+76565,328691.9516,402357.1243,0,17.8
+76566,304959.9133,349235.8737,0,17.8
+76567,290758.2075,489703.5496,0,17.8
+76568,289726.9582,400230.5197,0,17.8
+76569,288671.9866,411608.603,0,17.8
+76570,287411.2872,408750.2239,0,17.8
+76571,286248.7386,410424.0345,0,17.8
+76572,285479.8107,406951.0083,0,17.8
+76573,284485.7281,80602.82981,0,17.8
+76574,283440.4376,80461.91574,0,17.8
+76575,247199.9845,910441.132,0,17.8
+76576,246257.9044,229406.4617,0,17.8
+76577,331667.2658,402832.3091,0,17.8
+76578,281925.6241,419645.2432,0,17.8
+76579,268910.8695,399847.151,0,17.8
+76580,283472.0868,399640.8807,0,17.8
+76581,277968.7318,397645.3711,0,17.8
+76582,277402.2282,397848.6316,0,17.8
+76583,276589.6699,396398.787,0,17.8
+76584,275820.5991,396310.0915,0,17.8
+76585,275379.8069,394788.5449,0,17.8
+76586,275173.9141,394769.5862,0,17.8
+76587,613107.0599,393992.1816,0,17.8
+76588,273717.4789,392910.9695,891206.1452,17.8
+76589,272312.4597,392945.5584,0,17.8
+76590,272637.3956,392197.137,86007.2894,17.8
+76591,34287.4802,376719.4705,84647.03596,17.8
+76592,34246.79509,376498.572,83352.32318,17.8
+76593,34183.07282,375732.8454,82100.626,17.8
+76594,767480.8799,375281.0682,80878.54759,17.8
+76595,187536.3849,375188.3562,79680.19549,17.8
+76596,185484.2489,374508.0029,78503.38964,17.8
+76597,321975.5179,357573.4529,77347.14365,17.8
+76598,263566.1643,310898.0393,76210.77636,17.8
+76599,266770.108,445328.1754,75093.37688,17.8
+76600,267228.9776,380178.9486,73994.11274,17.8
+76601,265831.0969,386308.2475,72912.40816,17.8
+76602,265915.7775,386681.3856,71847.82191,17.8
+76603,265075.7494,387307.1878,70800.03606,17.8
+76604,264782.6607,386265.9464,69768.87611,17.8
+76605,263733.5683,76803.26905,68754.14607,17.8
+76606,263698.9915,76668.12493,67755.67831,17.8
+76607,229927.1313,76747.35533,66773.39762,17.8
+76608,228986.772,1051194.42,65807.17735,17.8
+76609,313565.1844,257305.3853,64856.89079,17.8
+76610,255259.9073,265691.4889,63922.46573,17.8
+76611,254581.645,467766.6574,63003.78126,17.8
+76612,264205.7213,373778.1573,62100.6622,17.8
+76613,259832.7703,383126.0608,61213.02834,17.8
+76614,260144.6627,383923.7211,60340.71307,17.8
+76615,258522.08,383078.5253,59483.54592,17.8
+76616,259091.1161,382975.6574,58641.4118,17.8
+76617,258043.3705,382184.2358,57814.111,17.8
+76618,257626.652,382891.4037,0,17.8
+76619,257367.0885,381511.6704,0,17.8
+76620,256694.9552,382519.4688,0,20
+76621,2073370.125,2606831.762,1264277.726,20
+76622,1389024.747,2618038.616,897448.2289,20
+76623,650606.8374,648805.8506,341287.146,20
+76624,81849.95808,856843.7197,422724.3369,20
+76625,864685.8513,835855.8326,377570.3745,20
+76626,617350.3814,1154023.996,384510.9366,20
+76627,596650.9293,869485.2242,386363.4867,20
+76628,583658.0785,918652.3575,390845.591,20
+76629,671103.4369,855507.7096,395045.6195,20
+76630,597605.2279,988336.5459,400189.3325,20
+76631,618831.4106,903255.2951,403740.1372,20
+76632,614790.2358,915518.587,408792.0821,20
+76633,612273.6576,915695.0443,412311.5155,20
+76634,612665.1752,908385.7446,416897.4712,20
+76635,609176.0337,905092.548,420947.7803,20
+76636,610043.6706,902466.8349,424759.3547,20
+76637,608113.7315,898113.1307,428995.5581,20
+76638,606658.0075,160046.7916,432586.9313,20
+76639,523560.9716,159371.757,436441.2894,20
+76640,521539.6039,1243362.937,440012.2929,20
+76641,642861.4582,955652.0645,443679.9362,20
+76642,621340.9795,840186.1109,447022.8575,20
+76643,603105.3847,951692.905,451139.932,20
+76644,610826.6137,899576.9447,453800.8239,20
+76645,602241.1174,860901.5505,457550.7147,20
+76646,604117.9172,886666.3082,460511.7955,20
+76647,600951.694,875264.3333,467513.8929,20
+76648,600669.6853,870420.3454,471944.7716,20
+76649,602018.2914,870083.0851,477466.9915,20
+76650,598495.5684,868170.5174,478399.0707,20
+76651,584991.9615,864308.0638,118596.1699,20
+76652,583334.0618,862888.78,116869.0096,20
+76653,583491.3882,860488.3388,115193.8971,20
+76654,582668.8128,859403.8399,290171.2648,20
+76655,80606.1043,856899.9704,169102.5114,20
+76656,80851.75923,855016.1197,1037719.292,20
+76657,1235171.762,853923.1663,171550.3692,20
+76658,604124.2263,851288.9174,1394214.64,20
+76659,513505.3054,816593.4556,226446.573,20
+76660,533481.2313,698035.5556,417267.9988,20
+76661,681305.3877,699474.2476,541005.9246,20
+76662,567829.6348,1017795.073,454046.4298,20
+76663,595022.939,829420.7248,471628.9501,20
+76664,602520.8182,824638.1838,475910.2015,20
+76665,596809.2228,856854.987,479348.1889,20
+76666,597366.202,840905.4595,483001.503,20
+76667,597880.2963,841947.3559,486394.7803,20
+76668,597449.4023,836325.2894,489899.291,20
+76669,597097.2787,836360.9665,492935.8905,20
+76670,597873.666,146831.5354,496545.2042,20
+76671,517177.2461,146042.9272,499764.3358,20
+76672,518101.2191,1229977.732,503205.258,20
+76673,632112.7353,788926.1697,505991.6176,20
+76674,616250.3,872607.4581,509293.1063,20
+76675,598747.7375,870383.4747,503234.3852,20
+76676,601392.1779,800451.6098,506526.711,20
+76677,598192.8279,842636.8986,508563.7814,20
+76678,596930.7884,828359.8108,511713.3975,20
+76679,599074.249,825249.2401,513710.9951,20
+76680,596237.5335,824331.6874,516274.6193,21
+76681,2307978.985,2979746.615,2458061.408,21
+76682,1983865.373,2143706.211,1148652.668,21
+76683,499170.0562,731250.92,290552.29,21
+76684,520534.3456,1134401.737,552715.9841,21
+76685,758551.7389,1240730.135,713293.9196,21
+76686,883457.7406,1130996.687,558572.4729,21
+76687,713489.2336,1130126.503,583993.8906,21
+76688,753075.2735,1128483.122,587815.6861,21
+76689,752329.4088,1126170.464,591369.8153,21
+76690,746637.3274,1121739.871,593493.6577,21
+76691,748008.5501,1120856.058,597612.8972,21
+76692,742347.5256,1117251.836,598954.5218,21
+76693,741415.5782,1113474.823,602757.9107,21
+76694,739152.66,1102796.363,604565.1868,21
+76695,736492.7616,1103265.294,608017.6006,21
+76696,735557.7634,1101366.139,610530.5313,21
+76697,732020.6233,1096331.296,613462.8109,21
+76698,731764.6849,1094093.584,615615.6146,21
+76699,729204.9793,1092031.848,618138.4075,21
+76700,726707.6299,1088058.105,621612.5867,21
+76701,725524.1328,1087471.433,623031.1497,21
+76702,725463.5442,1083821.65,625828.881,21
+76703,720857.1711,1081987.027,628793.3005,21
+76704,722065.9445,1080776.971,631461.8524,21
+76705,719170.8519,1076155.44,632691.8157,21
+76706,717300.8335,1074932.241,636017.3173,21
+76707,715936.9483,1073881.707,637823.1859,21
+76708,716018.8885,1070212.738,640939.9832,21
+76709,713383.0297,1069815.889,642657.1459,21
+76710,712335.3501,1066863.411,644538.8741,21
+76711,710910.6133,1065706.936,647818.1098,21
+76712,710565.6115,1063283.364,649207.8609,21
+76713,708980.7793,1062199.249,651958.7592,21
+76714,707715.5997,1058597.358,653504.64,21
+76715,706984.2742,1059998.059,656286.8293,21
+76716,706321.1875,1055547.303,657368.8911,21
+76717,704098.1464,1056273.448,660383.9329,21
+76718,704935.8822,1051049.026,661503.5584,21
+76719,702152.8948,1053062.009,664659.4784,21
+76720,702278.796,1049439.709,665790.772,21
+76721,701246.7301,1049049.785,668458.167,21
+76722,698670.2984,1047170.087,669669.4379,21
+76723,700056.7884,1045781.223,672534.6305,21
+76724,698834.3968,1042949.047,673869.2284,21
+76725,696836.0287,1041501.277,675160.7874,21
+76726,696419.2107,1041834.907,678881.4111,21
+76727,695792.7038,1039867.565,678956.7914,21
+76728,695053.3358,1037676.672,681527.9747,21
+76729,694566.344,1035995.306,683239.5518,21
+76730,692279.0834,1035759.117,684492.3262,21
+76731,692962.5189,1034650.725,687541.9406,21
+76732,691305.2251,1032078.577,688134.2914,21
+76733,692080.5658,1031797.866,690719.4954,21
+76734,689902.9487,1029983.476,692213.3754,21
+76735,689498.9858,1029327.93,693152.6073,21
+76736,688919.7249,1027327.219,696105.6581,21
+76737,688258.9797,1027467.344,697154.6653,21
+76738,687736.2784,1024135.648,698862.1581,21
+76739,685908.3253,1025198.02,700859.6613,21
+76740,686629.2347,1022500.057,702485.6261,21
+76741,883526.8954,2194889.252,683161.7694,21
+76742,877004.3644,2189522.798,682369.6874,21
+76743,876805.8951,2187252.2,681188.862,21
+76744,875142.1296,2186485.519,681740.8158,21
+76745,875789.1791,2183225.813,682433.9514,21
+76746,872638.5143,2181636.579,682067.4375,21
+76747,870846.7294,2181741.52,682994.2928,21
+76748,869500.9303,2178709.879,683268.2201,21
+76749,869241.6514,2177769.958,682956.2891,21
+76750,866809.2633,2177017.62,683687.3122,21
+76751,867521.0274,2174029.296,683445.716,21
+76752,864948.1043,2174420.056,684654.048,21
+76753,865123.2826,2171838.577,684262.6955,21
+76754,864284.6444,2179828.489,683930.8156,21
+76755,864040.3602,2182604.514,685822.8828,21
+76756,861274.3371,2176622.83,684536.0923,21
+76757,861809.0064,2179684.227,685453.4203,21
+76758,861698.8923,2175656.312,685887.0419,21
+76759,857984.8335,2176424.707,683053.4902,21
+76760,858422.4969,2175549.548,682762.3108,21
+76761,857632.2863,2173484.43,683252.3871,21
+76762,856015.0962,2174445.452,683171.3647,21
+76763,856582.6428,2172142.922,684004.1292,21
+76764,855264.6157,2171889.919,682904.7878,21
+76765,854217.0029,2171507.511,682950.7199,21
+76766,853736.6353,2168747.676,683628.3906,21
+76767,853196.8316,2169369.387,664343.3365,21
+76768,853211.306,2168621.252,663278.1106,21
+76769,850877.6075,2167262.091,660656.1007,21
+76770,852565.606,2166260.595,660648.8445,21
+76771,850153.0168,2166300.571,659147.7394,21
+76772,850221.8285,2165009.852,656889.2426,21
+76773,849833.0769,2164633.567,655054.0529,21
+76774,848857.6414,2163115.316,653830.0115,21
+76775,848228.1707,2162457.022,650868.2315,21
+76776,848060.7869,2161322.313,649930.8996,21
+76777,849112.2686,2162217.172,648022.2595,21
+76778,845954.2881,2160122.627,646550.018,21
+76779,846851.2913,2159384.412,643860.9056,21
+76780,845563.6329,2159533.118,642322.8477,21
+76781,846530.9679,2158181.251,640209.127,21
+76782,845606.4848,2157509.221,638579.8945,21
+76783,843313.89,2156853.086,635987.6359,21
+76784,844526.2476,2156855.364,634900.6193,21
+76785,845042.6699,2154803.088,632414.8815,21
+76786,841975.2873,2155037.451,630705.1086,21
+76787,844429.7883,2154372.671,628495.7842,21
+76788,841878.2695,2152889.174,626402.511,21
+76789,841730.8478,2152876.629,625107.0352,21
+76790,841937.5688,2152345.026,622416.12,21
+76791,841212.9228,2152268.237,621399.4249,21
+76792,840631.3408,2149978.655,617966.9884,21
+76793,840816.5385,2150827.518,617454.5231,21
+76794,839011.9164,2149413.353,614905.0068,21
+76795,840092.6047,2148715.407,612787.0439,21
+76796,838286.984,2148292.472,610036.3285,21
+76797,839563.2982,2148329.868,609177.7477,21
+76798,837759.5042,2147238.557,606815.3242,21
+76799,837529.2385,2147162.157,604680.4883,21
+76800,838007.7226,2145412.683,602365.6937,21
+76801,607193.8603,1909134.639,461265.7594,21
+76802,591772.2504,1889168.315,452192.5107,21
+76803,587705.2301,1885077.313,448475.0023,21
+76804,584022.3388,1883058.695,443828.8007,21
+76805,582380.3273,1877751.199,440213.511,21
+76806,579608.3861,1876390.134,435842.321,21
+76807,575640.9381,1872337.54,431856.7905,21
+76808,575724.4563,1870242.521,428248.1866,21
+76809,571463.5622,1866777.269,424633.5516,21
+76810,570983.0003,1866960.841,421446.2997,21
+76811,568068.245,1862195.609,418142.6744,21
+76812,566749.8405,1861024.985,414875.4161,21
+76813,565069.147,1858186.6,411121.5019,21
+76814,561494.2953,1857256.306,408243.5645,21
+76815,562318.8205,1853767.891,404697.7741,21
+76816,559177.7408,1852134.229,401445.1112,21
+76817,557098.7868,1850643.684,398154.0727,21
+76818,556406.2997,1847195.396,394468.7102,21
+76819,554539.5183,1847163.399,391405.3687,21
+76820,552578.5423,1844351.925,387629.4959,21
+76821,552582.6481,1841000.351,384590.5628,21
+76822,549320.0611,1842230.811,380942.7507,21
+76823,548276.7839,1838066.486,377625.1943,21
+76824,548195.6025,1836238.444,374270.8351,21
+76825,545498.2912,1835810.413,371080.1968,21
+76826,544426.6702,1832711.418,368261.8037,21
+76827,543638.1883,1831759.32,364747.257,21
+76828,541061.3227,1830843.733,361329.1612,21
+76829,541297.3317,1826901.383,358618.0264,21
+76830,539747.1177,1827737.613,355073.0586,21
+76831,537514.1688,1825003.244,351780.0735,21
+76832,536789.0742,1823469.345,349420.7575,21
+76833,536045.135,1822130.174,346353.497,21
+76834,534357.0972,1815239.631,344005.0173,21
+76835,532652.9015,1814273.045,341409.8391,21
+76836,531856.665,1812307.558,339438.3106,21
+76837,531755.1714,1809846.156,336706.4537,21
+76838,530722.8051,1808444.203,334762.2401,21
+76839,530699.2271,1806647.565,332010.7032,21
+76840,529697.1806,1804193.537,329861.8056,21
+76841,529341.7832,1802994.962,327529.8119,21
+76842,528899.0134,1801428.13,325140.1216,21
+76843,528218.5843,1798863.57,322884.8898,21
+76844,528266.2101,1798180.843,320740.0644,21
+76845,526993.2189,1795883.956,317979.6904,21
+76846,527044.5822,1795122.84,315970.0123,21
+76847,526520.2531,1792018.432,313798.5177,21
+76848,526051.0479,1792005.42,311153.3103,21
+76849,525140.4902,1788628.903,308989.9193,21
+76850,525260.2367,1788333.057,306690.554,21
+76851,524392.2585,1787437.804,304613.343,21
+76852,523979.9336,1783750.704,302139.8615,21
+76853,523864.2071,1783475.843,299521.9743,21
+76854,522647.1605,1781828.655,297932.2754,21
+76855,522908.254,1780746.58,295150.5179,21
+76856,522273.4401,1778531.345,292969.581,21
+76857,521797.447,1776913.131,291036.373,21
+76858,520842.2569,1776065.281,288488.7118,21
+76859,521082.8071,1774417.948,286128.8824,21
+76860,520423.0861,1772890.807,284346.5704,21
+76861,519529.481,1770561.425,280688.6103,21
+76862,518814.4331,1768833.587,277499.0871,21
+76863,517727.8119,1748856.198,274648.3523,21
+76864,517460.203,1744233.777,270984.2851,21
+76865,516523.6302,1740618.242,268121.9787,21
+76866,515511.5521,1737981.533,264739.7198,21
+76867,515179.3611,1736510.536,261536.7455,21
+76868,514049.206,1732921.425,258046.0954,21
+76869,513274.1973,1731473.657,255109.5422,21
+76870,512679.0647,1729117.733,251519.1015,21
+76871,511983.7159,1725872.225,248460.0929,21
+76872,511184.2282,1724673.521,245209.3385,21
+76873,510272.3555,1721415.641,241680.6848,21
+76874,509782.5645,1719497.74,238332.6631,21
+76875,508868.4379,1716053.998,235136.4632,21
+76876,508343.7983,1715734.095,231750.8853,21
+76877,507349.979,1712166.131,228339.5162,21
+76878,506656.637,1710168.016,225117.9792,21
+76879,505801.9716,1708727.909,221461.606,21
+76880,505469.5164,1706350.169,218106.5597,21
+76881,504382.507,1704137.497,214839.7269,21
+76882,503827.8201,1701866.694,211611.2059,21
+76883,503664.7065,1699770.446,208398.4809,21
+76884,501703.2871,1697564.099,205256.2996,21
+76885,502364.2486,1695878.698,201597.3675,21
+76886,500678.205,1693782.394,198774.8224,21
+76887,500282.7965,1692390.043,195380.6372,21
+76888,499534.2226,1689259.073,192180.0212,21
+76889,498867.0223,1687945.289,188910.1922,21
+76890,498242.419,1685490.448,185702.7196,21
+76891,497368.2328,1685095.985,182557.0042,21
+76892,496563.0237,1681641.584,179168.3647,21
+76893,496111.1419,1679483.487,176212.7696,21
+76894,494782.3392,1678630.74,172790.4405,21
+76895,494195.3576,1676301.034,169694.3685,21
+76896,493409.9189,1672828.847,166438.329,21
+76897,492324.5478,1672490.06,163288.5063,21
+76898,491576.2496,1669257.528,160553.9526,21
+76899,491036.7041,1667663.78,158543.7448,21
+76900,490146.231,1664877.534,156875.5626,21
+76901,489265.4319,1663772.097,154862.5536,21
+76902,488496.9123,1661536.772,153310.9095,21
+76903,487541.7307,1659284.237,151420.3909,21
+76904,486559.7889,1657789.809,149646.0078,21
+76905,486111.3011,1655121.224,147765.6381,21
+76906,485188.1059,1654066.36,146385.0312,21
+76907,484061.1213,1650696.923,144487.8624,21
+76908,483709.4621,1648837.548,142728.0413,21
+76909,482504.3723,1647765.989,140991.5021,21
+76910,482266.6541,1645028.048,139713.4543,21
+76911,480499.51,1644154.09,137745.8161,21
+76912,480662.0665,1640637.925,136332.5827,21
+76913,479053.9384,1639359.529,134496.3956,21
+76914,478535.1227,1637332.751,133289.6709,21
+76915,477739.4636,1635405.181,131216.5032,21
+76916,476994.0684,1632798.821,130101.4408,21
+76917,475876.7788,1632192.409,128270.5276,21
+76918,475123.6324,1629235.945,126907.1513,21
+76919,474536.9782,1627685.002,125353.7186,21
+76920,473518.1244,1625129.324,123819.6448,21
+76921,479108.4035,2052068.055,121119.717,21
+76922,480915.2597,1621551.537,119924.747,21
+76923,481869.9323,1620492.726,118098.2797,21
+76924,483366.7127,1617845.907,116807.6626,21
+76925,484706.5243,1617098.465,115268.9615,21
+76926,485819.4724,1615232.098,113686.3716,21
+76927,487468.017,1612666.015,112208.9578,21
+76928,488411.2619,1610556.89,110790.8383,21
+76929,489992.2616,1609899.958,109349.1982,21
+76930,491379.619,1606965.666,107983.665,21
+76931,492529.9015,1605408.329,106586.5905,21
+76932,493980.1603,1603350.849,105546.5237,21
+76933,495215.3368,1602947.608,104116.0783,21
+76934,498271.8419,1598797.585,103037.0355,21
+76935,499880.251,1599646.09,101765.6624,21
+76936,501207.5093,1595893.327,100520.6576,21
+76937,502178.8055,1594050.748,99516.14763,21
+76938,504193.1987,1593173.667,98236.29604,21
+76939,504793.5679,1590888.702,97208.85937,21
+76940,507080.244,1588831.681,95865.41292,21
+76941,507553.7161,1587804.085,94832.82876,21
+76942,509567.8484,1585955.309,93880.16668,21
+76943,510680.2756,1583222.891,92579.4796,21
+76944,511827.4019,1582436.618,91513.52908,21
+76945,513637.7817,1580182.96,90566.08519,21
+76946,514765.092,1578663.026,89290.92426,21
+76947,514318.1109,1576296.959,88339.47584,21
+76948,515587.8369,1574852.388,87265.89462,21
+76949,516831.3376,1573773.183,86265.45289,21
+76950,518658.2514,1571150.956,85063.20361,21
+76951,519524.3694,1569758.547,84149.83621,21
+76952,521148.7364,1568540.672,83101.80385,21
+76953,522202.6964,1566810.943,81965.17609,21
+76954,523511.0891,1566408.543,81102.1225,21
+76955,524628.8947,1565203.067,79986.34708,21
+76956,526030.5183,1564002.264,78927.18311,21
+76957,527157.2185,1563172.36,78181.69268,21
+76958,526932.6344,1562126.788,76878.63732,21
+76959,527981.1169,1561256.816,76173.41692,21
+76960,529045.6191,1560147.364,74964.93643,21
+76961,530006.8095,1559222.596,74201.85283,21
+76962,531643.2438,1558512.772,73120.2161,21
+76963,532975.2945,1556998.198,72129.48229,21
+76964,533807.2939,1556672.535,71229.37578,21
+76965,535416.0069,1555320.05,21963.76322,21
+76966,536530.8964,1554094.698,21580.45258,21
+76967,537956.7351,1553845.326,21176.36564,21
+76968,538914.8028,1552356.629,20922.81495,21
+76969,540488.3663,1551778.735,20364.64063,21
+76970,541592.8217,1550662.644,20289.80993,21
+76971,542951.1177,1549746.687,19613.49998,21
+76972,543704.7881,1548808.864,19449.97043,21
+76973,545824.0284,1547713.816,19133.76452,21
+76974,546452.5475,1547086.756,18799.66236,21
+76975,548243.208,1546026.666,18772.74921,21
+76976,549107.303,1544683.517,18337.34072,21
+76977,550649.4809,1544471.523,18515.33019,21
+76978,552091.8212,1543222.508,17891.35794,21
+76979,552924.6636,1542565.248,18051.52434,21
+76980,554517.455,1541063.257,17815.62309,21
+76981,548989.1586,1539345.453,18051.6315,21
+76982,546185.6906,1539164.422,17817.72829,21
+76983,545061.7724,1539059.641,17694.93891,21
+76984,544203.5022,1538553.909,17553.16132,21
+76985,543708.796,1538749.307,17335.32037,21
+76986,542299.4204,1538320.953,17118.88631,21
+76987,541715.2315,1538511.748,17036.69583,21
+76988,540993.3519,1538162.972,16849.45461,21
+76989,540104.4004,1538208.623,16778.19149,21
+76990,538861.7791,1537801.375,16375.55658,21
+76991,538475.9542,1537799.191,16410.47197,21
+76992,537146.1444,1537599.243,16091.56436,21
+76993,536493.8862,1537096.228,16061.29009,21
+76994,535595.8834,1537077.631,15814.97622,21
+76995,534575.2175,1536623.594,15569.80836,21
+76996,533684.6848,1536866.587,15557.91441,21
+76997,532840.4307,1536205.943,15289.63575,21
+76998,532076.0731,1536269.181,15158.54756,21
+76999,530903.8806,1535700.462,15029.21886,21
+77000,529959.3099,1536016.355,14680.28852,21
+77001,529130.8182,1535232.837,14744.97147,21
+77002,528056.1947,1534898.746,14394.23573,21
+77003,527627.015,1535097.866,14262.50413,21
+77004,526022.0714,1534622.991,14226.56566,21
+77005,525392.5553,1534254.336,13863.6238,21
+77006,524224.3025,1534164.581,13739.26372,21
+77007,523336.8709,1534119.934,13702.41463,21
+77008,522931.7301,1532926.388,13436.44911,21
+77009,521014.3967,1533680.441,13210.35436,21
+77010,520534.2316,1534847.974,13152.04701,21
+77011,519988.7365,1533986.097,12904.02107,21
+77012,519375.545,1534104.881,12654.87539,21
+77013,519479.8493,1961453.574,12494.88031,21
+77014,518626.2137,1533912.723,12254.33286,21
+77015,518877.8855,1533125.526,12092.97146,21
+77016,518006.9284,1533073.561,11829.54994,21
+77017,518022.9196,1532393.433,11563.18486,21
+77018,517858.0438,1531234.914,11681.25876,21
+77019,517293.3218,1530244.954,11403.39556,21
+77020,516978.1988,1530208.052,11262.09792,21
+77021,517220.0881,1529909.71,10992.94142,21
+77022,516519.2813,1529576.503,10747.37367,21
+77023,516185.4144,1529374.706,10671.50582,21
+77024,516545.6002,1528947.319,10308.4158,21
+77025,515792.117,1528392.822,10174.69214,21
+77026,515848.682,1525009.343,9993.537805,21
+77027,515807.6531,1524400.904,9615.103778,21
+77028,515337.828,1523715.206,9583.547961,21
+77029,515577.1049,1523665.827,9307.018909,21
+77030,515294.9638,1522817.93,9029.680951,21
+77031,514872.7656,1522012.251,9009.189773,21
+77032,514857.0909,1522553.955,8740.700632,21
+77033,515127.8941,1521164.586,8849.747543,21
+77034,514719.4665,1521185.351,8439.318574,21
+77035,514697.1686,1520547.589,8393.971309,21
+77036,514474.4409,1520202.465,8028.240111,21
+77037,514584.7135,1519840.091,7970.167675,21
+77038,514785.48,1519168.152,7709.475696,21
+77039,514046.2607,1518766.463,7530.720926,21
+77040,514945.5766,1518503.839,7279.677855,21
+77041,537880.4008,1551887.199,12726.82485,21
+77042,537912.9191,1551229.882,12732.87442,21
+77043,537688.4578,1550576.199,12591.62589,21
+77044,536218.1967,1549205.159,12449.93912,21
+77045,536721.0938,1549389.621,12319.55277,21
+77046,535709.2848,1547715.293,12177.79761,21
+77047,535566.6922,1547431.771,12136.45244,21
+77048,534531.0646,1550352.279,11891.39937,21
+77049,534108.3435,1569568.451,11669.00842,21
+77050,533825.2977,1555096.564,11706.09714,21
+77051,533211.6791,1558615.358,11482.21567,21
+77052,532359.443,1556394.742,11349.63252,21
+77053,532236.1883,1557485.624,11180.124,21
+77054,531016.7945,1554443.349,11069.93917,21
+77055,531504.4912,1554467.143,10900.0426,21
+77056,530441.1096,1552975.12,10788.53384,21
+77057,529915.5286,1551776.937,10617.59247,21
+77058,529554.7661,1550845.145,10505.39725,21
+77059,529055.3192,1549700.668,10321.74381,21
+77060,528183.402,1548156.232,10232.61718,21
+77061,527931.191,1546635.792,10175.77786,21
+77062,527688.5653,1543565.196,9946.03504,21
+77063,526382.1687,1543818.147,9900.795776,21
+77064,526760.5729,1541235.374,9657.621603,21
+77065,525788.3156,1540261.511,9741.145609,21
+77066,524939.8886,1539780.588,9367.370832,21
+77067,525526.121,1536637.354,9345.626484,21
+77068,524095.1434,1537441.24,9205.40055,21
+77069,525442.8356,1535034.08,9052.959439,21
+77070,525359.1708,1533680.426,8912.036234,21
+77071,524143.2392,1533056.69,8783.085461,21
+77072,524176.863,1532000.095,8747.79368,21
+77073,523091.331,1529811.086,8499.188599,21
+77074,522517.7562,1529252.447,8463.231717,21
+77075,521371.9893,1527860.196,8332.885643,21
+77076,521319.4856,1527211.717,8189.647742,21
+77077,520204.5699,1524901.622,8165.504986,21
+77078,519868.7234,1525132.296,7926.364382,21
+77079,518341.0179,1523796.487,7876.295993,21
+77080,518398.9105,1521827.421,7864.39567,21
+77081,516990.5732,1521336.488,7610.770829,21
+77082,516761.006,1520751.32,7489.527319,21
+77083,515832.1942,1517650.501,7574.271815,21
+77084,514833.1194,1518861.091,7345.901642,21
+77085,514130.3012,1515832.715,7238.386363,21
+77086,513787.2511,1515807.559,7214.400217,21
+77087,512250.9076,1515051.895,7106.563948,21
+77088,512409.5818,1513301.431,6972.947024,21
+77089,510893.642,1512192.325,6864.518116,21
+77090,510640.0428,1511450.359,6840.212958,21
+77091,509430.5941,1510347.615,6731.457758,21
+77092,508603.9275,1509375.142,6596.743634,21
+77093,508029.6512,1506703.017,6487.382362,21
+77094,506985.3294,1507879.204,6339.066521,21
+77095,506617.8567,1505513.589,6353.049005,21
+77096,505392.7951,1504411.142,5981.351289,21
+77097,505095.7297,1503879.512,6093.910894,21
+77098,503796.9841,1502902.976,5845.43243,21
+77099,503350.5117,1501484.76,5846.343159,21
+77100,502438.1849,1500725.52,5596.561294,21
+77101,478178.9748,1461357.656,782.2435156,21
+77102,478231.3471,1459303.679,768.3862771,21
+77103,478682.5314,1459325.669,740.5287065,21
+77104,478665.1238,1457482.295,726.5620834,21
+77105,479413.7925,1457609.653,698.5227291,21
+77106,479284.5477,1456630.904,698.5356753,21
+77107,479952.8417,1455348.364,670.3706451,21
+77108,480270.5247,1454796.884,670.3825519,21
+77109,480427.6371,1453743.016,627.8859316,21
+77110,480455.2405,1452476.851,627.896341,21
+77111,481380.0476,1452392.264,599.400568,21
+77112,481098.8233,1450871.22,599.4100359,21
+77113,481686.143,1450187.474,556.3976733,21
+77114,482176.8816,1449610.766,556.405813,21
+77115,483608.1593,1448130.74,527.5499647,21
+77116,484461.4286,1447829.196,513.0682823,21
+77117,484426.6555,1446397.874,498.547061,21
+77118,485256.3018,1446127.27,469.3766202,21
+77119,485752.7327,1444774.447,454.7316615,21
+77120,485761.6334,1445510.998,440.0434353,21
+77121,486464.6873,1444884.724,395.699273,21
+77122,486639.4064,1443423.075,395.7033356,21
+77123,487083.9065,1443444.381,365.904526,21
+77124,487824.2311,1441848.112,350.9311733,21
+77125,487738.6267,1440982.278,320.8213842,21
+77126,488419.9676,1441025.368,290.4854159,21
+77127,488929.4027,1439872.334,275.2278854,21
+77128,489061.7225,1438485.389,259.9062802,21
+77129,489717.7078,1438329.289,213.5221519,21
+77130,489961.323,1437295.558,197.9099308,21
+77131,490333.2203,1437128.164,182.214147,21
+77132,491014.4165,1436202.851,150.5446224,21
+77133,491384.5755,1436070.384,118.4516162,21
+77134,491670.7612,1435821.48,102.2182119,21
+77135,492423.5006,1435364.437,85.83830297,21
+77136,492447.7836,1435258.085,52.53329434,21
+77137,493361.2862,1434612.175,18.13374746,21
+77138,493643.343,1434390.362,9.224311689,21
+77139,494067.5633,1434563.7,0,21
+77140,494508.3613,1433327.516,0,21
+77141,495232.1553,1434031.838,0,21
+77142,495346.001,1433385.325,0,21
+77143,495866.7447,1433365.837,0,21
+77144,496585.6789,1433000.742,0,21
+77145,497070.5119,1432759.725,0,21
+77146,497223.4397,1432622.782,0,21
+77147,498046.647,1432230.189,0,21
+77148,498189.7224,1432803.375,0,21
+77149,499086.6483,1431358.483,0,21
+77150,499225.4074,1432423.209,0,21
+77151,499899.8454,1431628.903,0,21
+77152,500325.1949,1431866.313,0,21
+77153,500727.1807,1431623.07,0,21
+77154,501216.8025,1430929.5,0,21
+77155,502084.1847,1431728.463,0,21
+77156,502064.0278,1432869.032,0,21
+77157,503000.3326,1433816.403,0,21
+77158,503378.9612,1433112.652,0,21
+77159,503796.8766,1434034.568,0,21
+77160,504240.3924,1432820.874,0,21
+77161,508476.5016,1435232.904,0,21
+77162,507412.0516,1432971.658,0,21
+77163,507148.1149,1431750.154,0,21
+77164,505794.8436,1429899.86,0,21
+77165,505725.5284,1427785.845,0,21
+77166,504459.1367,1426501.077,0,21
+77167,503662.1209,1424401.96,0,21
+77168,503607.9839,1422834.76,0,21
+77169,502084.9389,1420766.378,0,21
+77170,501416.1206,1419256.056,0,21
+77171,501037.9772,1417538.899,0,21
+77172,499825.0112,1415475.549,0,21
+77173,499349.3861,1414092.883,0,21
+77174,498430.7167,1840485.295,0,21
+77175,497742.216,1410147.511,0,21
+77176,497085.2751,1408886.064,0,21
+77177,495952.9347,1406888.175,0,21
+77178,495559.4515,1404796.617,0,21
+77179,494853.6392,1403582.221,0,21
+77180,493757.1014,1401191.313,0,21
+77181,493231.9571,1399954.87,0,21
+77182,492101.5842,1397977.336,0,21
+77183,491919.6401,1395880.382,0,21
+77184,490480.7611,1394862.054,0,21
+77185,490461.1263,1393961.784,0,21
+77186,489215.1389,1392621.905,0,21
+77187,488367.9367,1391240.967,0,21
+77188,487874.8436,1388305.381,0,21
+77189,487256.9569,1387853.981,0,21
+77190,488020.4696,1385130.316,0,21
+77191,486978.1968,1811942.172,0,21
+77192,486511.7092,1380170.019,0,21
+77193,485384.4795,1378537.643,0,21
+77194,484387.6894,1376096.958,0,21
+77195,483701.2139,1374490.298,0,21
+77196,482162.2998,1372273.73,0,21
+77197,482183.2467,1370359.185,0,21
+77198,480225.02,1368292.839,0,21
+77199,479987.1778,1366800.004,0,21
+77200,478918.5638,1364295.357,0,21
+77201,477514.618,1362209.219,0,21
+77202,477203.4735,1360767.233,0,21
+77203,473999.7032,1358326.327,0,21
+77204,472900.429,1356388.342,0,21
+77205,471939.4365,1354215.943,0,21
+77206,470434.2325,1352762.816,0,21
+77207,469776.1083,1350298.108,0,21
+77208,468714.4966,1776796.981,0,21
+77209,467724.102,1345985.694,0,21
+77210,466285.5953,1344422.292,0,21
+77211,463736.109,1341674.16,0,21
+77212,462966.0531,1340091.93,0,21
+77213,461529.0194,1337684.467,0,21
+77214,460766.7764,1335790.164,0,21
+77215,459249.2055,1333132.719,0,21
+77216,458945.9399,1331370.082,0,21
+77217,457060.1231,1329584.823,0,21
+77218,456714.9995,1326179.409,0,21
+77219,455266.3498,1324905.861,0,21
+77220,454396.3461,1319867.804,0,21
+77221,449052.7827,1320433.514,0,21
+77222,449905.2681,1321832.272,0,21
+77223,448990.9275,1323967.172,0,21
+77224,449558.1151,1325658.172,0,21
+77225,449467.8483,1327355.893,0,21
+77226,449386.8926,1328580.987,0,21
+77227,449584.6577,1331212.37,0,21
+77228,449294.2747,1331816.096,0,21
+77229,449877.1023,1333604.104,0,21
+77230,449210.2108,1335698.581,0,21
+77231,449791.9662,1335088.675,0,21
+77232,449741.0897,1336262.63,0,21
+77233,449856.9589,1337683.483,0,21
+77234,449428.8129,1339108.499,0,21
+77235,449907.9999,1340688.394,0,21
+77236,449909.8562,1341974.265,0,21
+77237,447715.5439,1343480.411,0,21
+77238,448019.1846,1345201.406,0,21
+77239,447294.3158,1346672.566,0,21
+77240,447766.1584,1347740.406,0,21
+77241,447236.833,1349201.285,0,21
+77242,447667.2779,1351212.258,0,21
+77243,447244.9192,1351756.916,0,21
+77244,447577.6155,1354528.18,0,21
+77245,447566.8747,1354442.876,0,21
+77246,447389.273,1357039.169,0,21
+77247,447693.3883,1357953.657,0,21
+77248,447366.3466,1359835.208,0,21
+77249,447734.1918,1360951.211,0,21
+77250,447579.2797,1362311.318,0,21
+77251,448098.3661,1364023.262,0,21
+77252,448729.1452,1365271.24,0,21
+77253,449191.2197,1366334.432,0,21
+77254,450069.3151,1368642.977,0,21
+77255,450662.2467,1368852.92,0,21
+77256,451066.6577,1371333.916,0,21
+77257,452011.7113,1371856.926,0,21
+77258,452646.5745,1374122.943,0,21
+77259,453138.4245,1374397.77,0,21
+77260,454240.1797,1377008.342,0,21
+77261,454477.6135,1377516.655,0,21
+77262,455803.3554,1379021.632,0,21
+77263,456020.7645,1380618.841,0,21
+77264,456629.3089,1382309.655,0,21
+77265,457935.1841,1383177.436,0,21
+77266,458579.7084,1384553.421,0,21
+77267,459022.4637,1386152.85,0,21
+77268,460130.5551,1387729.295,0,21
+77269,460552.3975,1388554.343,0,21
+77270,461584.6185,1390681.029,0,21
+77271,464190.6698,1390938.057,0,21
+77272,465126.7748,1391732.074,0,21
+77273,466207.257,1392131.395,0,21
+77274,466815.2048,1393697.072,0,21
+77275,467855.79,1394589.121,0,21
+77276,468898.3146,1396217.919,0,21
+77277,469393.507,1397703.865,0,21
+77278,470778.8593,1398608.873,0,21
+77279,470897.8548,1400473.987,0,21
+77280,472750.2623,1401241.259,0,21
+77281,473423.8544,1403497.734,0,21
+77282,474521.3199,1404975.727,0,21
+77283,475909.8594,1406615.61,0,21
+77284,477016.6855,1408815.361,0,21
+77285,478293.1213,1410120.43,0,21
+77286,479396.3777,1412199.722,0,21
+77287,480374.5582,1414056.718,0,21
+77288,481964.0411,1415704.085,0,21
+77289,482651.1141,1417581.796,0,21
+77290,484374.0595,1419418.585,0,21
+77291,485062.5551,1420613.024,0,21
+77292,486387.7155,1423210.128,0,21
+77293,487808.7264,1424785.289,0,21
+77294,488681.3834,1424460.845,0,21
+77295,489972.5998,1425745.91,0,21
+77296,491619.5258,1427311.271,0,21
+77297,492297.5214,1429218.257,0,21
+77298,493553.1121,1431435.139,0,21
+77299,494950.8635,1432930.394,0,21
+77300,495881.4167,1434337.176,0,21
+77301,497452.5612,1436982.99,0,21
+77302,499157.4405,1438237.1,0,21
+77303,500956.1582,1440087.918,0,21
+77304,502036.2273,1442103.526,0,21
+77305,502963.0414,1444255.995,0,21
+77306,504340.06,1445821.382,0,21
+77307,505858.2556,1447250.923,0,21
+77308,506748.4701,1448862.208,0,21
+77309,508071.9007,1450021.421,0,21
+77310,509143.3334,1451491.811,0,21
+77311,510368.4728,1454701.137,0,21
+77312,511062.723,1455383.228,0,21
+77313,512195.8099,1458101.443,0,21
+77314,512819.7288,1459421.524,0,21
+77315,514121.179,1461933.56,0,21
+77316,514446.9644,1463765.368,0,21
+77317,516133.5002,1465539.38,0,21
+77318,516235.3374,1468003.298,0,21
+77319,517666.0812,1469741.614,0,21
+77320,517915.5807,1471387.883,0,21
+77321,519413.2091,1474457.682,0,21
+77322,520208.6991,1475577.355,0,21
+77323,520855.0057,1478043.52,0,21
+77324,521819.4348,1480232.347,0,21
+77325,522623.9441,1482298.262,0,21
+77326,523612.4094,1484525.232,0,21
+77327,524035.5185,1486820.561,0,21
+77328,525456.2491,1488506.647,0,21
+77329,525940.9564,1491329.654,0,21
+77330,526685.5157,1493412.656,0,21
+77331,527666.1778,1495543.348,0,21
+77332,528492.1274,1497735.117,0,21
+77333,529214.561,1499941.617,0,21
+77334,530037.7067,1501932.035,0,21
+77335,531098.8608,1504150.737,0,21
+77336,531765.4364,1507319.41,0,21
+77337,532260.0451,1508213.558,0,21
+77338,533209.1506,1511574.756,0,21
+77339,534281.5253,1513139.001,0,21
+77340,534694.0728,1515689.438,0,21
+77341,590960.4423,1586112.658,0,21
+77342,594921.8555,1594911.887,0,21
+77343,596258.311,1606104.613,0,21
+77344,597038.9574,1602279.349,0,21
+77345,598422.3286,1606692.235,0,21
+77346,599676.3574,1609468.592,0,21
+77347,600840.0826,1610983.66,0,21
+77348,602103.9153,1614284.622,0,21
+77349,603019.4235,1620703.032,0,21
+77350,604801.4206,1623618.058,0,21
+77351,605420.5235,1626118.461,0,21
+77352,607204.6202,1628915.784,0,21
+77353,607608.0215,1630231.804,0,21
+77354,609416.8645,1633586.265,0,21
+77355,610461.5741,1680032.329,0,21
+77356,611007.7677,1655763.851,0,21
+77357,612938.9294,1668383.715,0,21
+77358,613356.601,1668831.733,0,21
+77359,614837.0685,1675047.552,0,21
+77360,615687.6424,1674874.873,0,21
+77361,616749.7993,1679346.355,0,21
+77362,617852.436,1682751.264,0,21
+77363,618606.1631,1683799.368,0,21
+77364,621695.4013,1687767.966,0,21
+77365,622973.4953,1689950.557,0,21
+77366,622716.8511,1691843.061,0,21
+77367,624595.8667,1695313.117,0,21
+77368,625052.0358,1696645.436,0,21
+77369,626295.4281,1700187.306,0,21
+77370,626826.2835,1701960.178,0,21
+77371,628656.2302,1703707.353,0,21
+77372,628980.1677,1706779.173,0,21
+77373,629884.9131,1708969.228,0,21
+77374,631315.1464,1710887.429,0,21
+77375,631911.7949,1712634.616,0,21
+77376,632388.4041,1715943.679,0,21
+77377,633962.7691,1716762.097,0,21
+77378,634483.6817,1719638.422,0,21
+77379,635248.7369,1721273.602,0,21
+77380,637206.8424,1722319.625,0,21
+77381,637830.0169,1726076.588,0,21
+77382,639171.2565,1727391.333,0,21
+77383,639827.531,1728739.444,0,21
+77384,640886.214,1731231.504,0,21
+77385,641623.3954,1732489.099,0,21
+77386,642854.6765,1734771.719,0,21
+77387,643205.8111,1737052.695,0,21
+77388,644207.1792,1737234.086,0,21
+77389,645348.1083,1740686.635,0,21
+77390,645840.2635,1741704.259,0,21
+77391,648297.7569,1743850.775,0,21
+77392,648926.3071,1745878.222,0,21
+77393,650521.3417,1747349.239,0,21
+77394,650360.5704,1748502.597,0,21
+77395,652034.9964,1750939.003,0,21
+77396,652320.1013,1751502.218,0,21
+77397,653509.2255,1754463.888,216.8824819,21
+77398,653991.9296,1755498.721,177.1032557,21
+77399,654953.3675,1757604.539,216.8846534,21
+77400,655781.9499,1758938.556,248.3376432,21
+77401,677834.2853,1824233.036,651.1741685,21
+77402,680592.2673,1831165.447,5947.914332,21
+77403,709432.6337,1835019.768,6314.516993,21
+77404,733633.7232,1836983.551,5552.871816,21
+77405,715214.6862,1840040.789,7122.519542,21
+77406,724985.6378,1843429.911,7184.562044,21
+77407,725590.1459,1844761.541,7485.135923,21
+77408,728423.6613,1848496.93,8021.338527,21
+77409,730356.2871,1851407.294,8247.446452,21
+77410,731485.315,1852991.517,8623.903606,21
+77411,733543.1596,1855601.595,8944.004561,21
+77412,735816.4069,1858638.799,9319.867858,21
+77413,736927.7827,1860645.419,9624.000944,21
+77414,738692.5005,1863628.099,9924.621823,21
+77415,741152.1683,1865160.62,14257.95964,21
+77416,742423.1297,1868031.506,13019.8,21
+77417,743558.8024,1869681.472,14025.96612,21
+77418,745433.5428,1872913.842,14589.6193,21
+77419,746704.0948,1874413.905,15460.82706,21
+77420,748643.9917,1877949.839,15994.42025,21
+77421,750564.447,1879149.197,16646.99219,21
+77422,751634.1945,1881662.822,17230.3727,21
+77423,752442.811,1883848.414,17736.80368,21
+77424,754581.7671,1886089.184,18511.22917,21
+77425,755059.0245,1888673.024,20060.8524,21
+77426,758232.5441,1890221.917,20749.74648,21
+77427,757758.7681,1892104.98,21330.38195,21
+77428,759484.527,1895526.4,21722.0066,21
+77429,762299.8719,1896771.557,22523.88732,21
+77430,761049.3442,1898004.712,22858.50026,21
+77431,764539.7846,1900906.921,23705.36534,21
+77432,764658.8957,1904538.606,23821.8451,21
+77433,767213.3374,1904220.572,24673.82215,21
+77434,767163.3505,1907422.966,24987.35678,21
+77435,769617.1275,1908969.266,25361.50208,21
+77436,769273.7055,1912297.138,26203.88674,21
+77437,772028.2376,1912871.314,26421.6881,21
+77438,771798.4516,1915751.237,27012.37588,21
+77439,774728.5188,1917557.815,27358.46935,21
+77440,773694.9899,1919012.856,27975.39691,21
+77441,775960.7152,1921872.042,28235.58499,21
+77442,777129.1753,1923374.769,29011.01074,21
+77443,778317.4576,1925804.504,29109.83909,21
+77444,779644.1981,1926365.779,29899.48181,21
+77445,780553.1619,1930597.291,30019.72843,21
+77446,780771.576,1930640.411,30772.19881,21
+77447,784065.5488,1934284.687,31306.04364,21
+77448,783103.3328,1933315.455,31743.81946,21
+77449,785177.3532,1938646.079,32234.91248,21
+77450,785319.1639,1938153.407,32863.00236,21
+77451,787428.2968,1942074.72,33222.72529,21
+77452,787834.1993,1941022.098,33672.1856,21
+77453,789469.9766,1945281.261,34140.89404,21
+77454,789729.4628,1946721.436,34638.97318,21
+77455,791010.1646,1947767.267,34935.05727,21
+77456,792411.3746,1951730.746,35756.05303,21
+77457,793856.6326,1951309.937,35687.96049,21
+77458,793300.3637,1954226.621,36552.58017,21
+77459,795387.4079,1956112.601,36743.28369,21
+77460,796635.8568,1958109.613,37308.9346,21
+77461,797843.1559,1958239.11,37698.28856,21
+77462,799990.9816,1961907.79,38472.59446,21
+77463,801309.497,1962598.62,38750.94168,21
+77464,803039.7943,1963206.152,39612.03524,21
+77465,804349.7032,1966363.679,39740.53233,21
+77466,806719.5561,1964832.324,40572.8452,21
+77467,806346.0361,1969149.794,41061.30058,21
+77468,810127.0775,1968461.356,41563.8696,21
+77469,809723.6929,1970384.241,42061.43406,21
+77470,811724.9252,1971585.701,42501.27683,21
+77471,814395.7326,1972805.388,43275.45628,21
+77472,814194.432,1974616.573,43490.20555,21
+77473,816059.6146,1974850.646,44338.94481,21
+77474,817751.8754,1977459.049,44646.98701,21
+77475,819439.6741,1977099.498,47148.28055,21
+77476,820668.8018,1979778.814,48127.90885,21
+77477,823075.0091,1980082.625,48318.999,21
+77478,822735.5751,1982362.16,50126.8668,21
+77479,825096.1119,1981402.448,50161.89987,21
+77480,827231.2209,1985471.537,51652.14007,21
+77481,827297.9746,1983881.335,52383.38352,21
+77482,830138.9137,1987873.464,53086.53148,21
+77483,830833.5104,1986478.403,53937.73552,21
+77484,832548.4065,1989154.913,54822.36994,21
+77485,833570.3768,1989650.271,55851.85367,21
+77486,835125.3959,1991216.277,56675.22824,21
+77487,836658.7255,1993239.06,57149.17953,21
+77488,837178.8397,1992439.458,58522.34944,21
+77489,840189.3434,1994966.435,58849.59503,21
+77490,840201.9706,1996725.432,60024.44799,21
+77491,842582.4309,1996495.376,60647.63988,21
+77492,843141.5652,1997969.166,61584.16472,21
+77493,845579.0271,1999216.016,62749.98426,21
+77494,845916.7194,2000569.344,62980.42394,21
+77495,848795.2582,2002134.231,64153.81373,21
+77496,847541.2442,2002140.624,65214.62884,21
+77497,852225.2441,2004608.832,65540.05913,21
+77498,850938.9589,2005229.951,66766.8187,21
+77499,854336.8512,2005612.091,67460.40304,21
+77500,853894.9429,2007031.598,68330.82532,21
+77501,856673.4016,2008560.275,69031.09544,21
+77502,857001.6909,2009828.061,69978.40016,21
+77503,858855.1202,2010387.353,70562.36926,21
+77504,860794.4465,2011416.728,71865.81769,21
+77505,861865.4533,2012642.533,72100.67712,21
+77506,862368.3712,2015060.643,73380.35671,21
+77507,864582.2061,2013361.719,74168.23724,21
+77508,866619.4572,2017247.349,74435.05327,21
+77509,866253.8012,2017242.732,76116.98349,21
+77510,867934.4445,2018127.334,76180.64262,21
+77511,870554.2737,2019359.214,77269.68987,21
+77512,870123.9456,2020511.527,78274.6737,21
+77513,873375.9441,2021512.299,78857.02355,21
+77514,873744.5566,2022765.062,79594.8503,21
+77515,874907.7384,2023742.783,80682.26039,21
+77516,876235.6981,2024749.923,81100.29183,21
+77517,878035.1853,2026102.331,82406.28299,21
+77518,880082.3941,2027485.21,82816.63144,21
+77519,879769.0664,2027594.826,83762.0118,21
+77520,881892.1581,2028556.819,84514.45756,21
+77521,889968.8807,2036568.797,87934.18347,21
+77522,893011.5297,2039636.418,89086.32588,21
+77523,892268.7911,2039439.447,90309.10122,21
+77524,893824.0447,2040811.836,90754.18721,21
+77525,895161.3667,2042349.651,92167.62514,21
+77526,895609.4362,2044099.838,92725.57596,21
+77527,895733.124,2042634.953,94286.7062,21
+77528,897234.0493,2045310.375,95245.6354,21
+77529,896504.5921,2046468.438,95840.15917,21
+77530,897743.8416,2046876.815,96824.57466,21
+77531,899022.8555,2048245.414,98172.86959,21
+77532,898384.2108,2047864.261,98541.97728,21
+77533,900096.7257,2051032.413,100086.2201,21
+77534,899933.822,2049208.955,100688.5561,21
+77535,902887.3322,2052149,101592.4438,21
+77536,902802.7252,2052293.255,102661.6575,21
+77537,904693.186,2053513.571,103504.8912,21
+77538,903860.9566,2053327.546,104562.5318,21
+77539,905213.1905,2055652.871,105271.5515,21
+77540,905641.829,2055554.181,106319.2935,21
+77541,905479.6508,2056736.563,107409.5993,21
+77542,907379.647,2058237.231,107882.9814,21
+77543,905908.5242,2057731.3,109322.7968,21
+77544,908351.0812,2060327.379,110031.0842,21
+77545,907755.4209,2059122.825,110912.0046,21
+77546,908627.8223,2061460.865,111598.9222,21
+77547,908534.2715,2061731.108,113022.5119,21
+77548,909372.0138,2062772.248,113575.7985,21
+77549,909917.2253,2063063.36,114771.0758,21
+77550,910368.7889,2064464.878,115536.6573,21
+77551,910114.3609,2064647.043,116361.8405,21
+77552,911822.8393,2066506.89,117287.8434,21
+77553,910053.2588,2065488.055,118342.6482,21
+77554,913920.0277,2068604.417,119291.484,21
+77555,911708.1809,2067828.379,119692.5847,21
+77556,912059.9404,2069036.311,121433.6445,21
+77557,914025.5869,2070334.152,245596.9644,21
+77558,913330.8652,2069574.814,245094.1239,21
+77559,914276.4385,2072552.493,243776.1088,21
+77560,913967.9304,2071568.167,242945.7049,21
+77561,914656.0605,2073071.05,242136.4028,21
+77562,915709.1383,2074348.874,241182.3849,21
+77563,915452.0663,2073182.646,240468.1667,21
+77564,916101.694,2076316.179,239475.9675,21
+77565,915346.1431,2075185.301,238743.7447,21
+77566,915892.7982,2077671.944,238177.3876,21
+77567,914438.287,2076694.144,237288.8969,21
+77568,915082.7259,2077574.244,236695.8757,21
+77569,916474.2524,2079935.799,235429.7603,21
+77570,915416.4704,2079299.856,235377.1113,21
+77571,915931.3626,2081004.305,234609.3777,21
+77572,916844.4054,2080965.222,234119.9912,21
+77573,917288.9103,2082425.293,233123.0835,21
+77574,916691.6141,2082624.492,232699.2084,21
+77575,917971.3508,2083506.883,232579.5855,21
+77576,917568.32,2083985.302,231364.549,21
+77577,918752.211,2084436.986,231423.6394,21
+77578,917923.5179,2086833.063,230652.2592,21
+77579,919065.9005,2085641.317,230768.6581,21
+77580,918552.7953,2087144.246,230413.048,21
+77581,920599.6159,2087096.869,229428.5138,21
+77582,921331.636,2089499.008,229297.1399,21
+77583,922903.588,2089170.59,228974.3313,21
+77584,923446.1155,2090404.108,227649.2981,21
+77585,925590.4476,2091304.075,227945.6769,21
+77586,925029.498,2089831.211,226648.9652,21
+77587,926201.1083,2091194.295,226924.3349,21
+77588,928239.8024,2092390.8,225893.4326,21
+77589,927599.8262,2092235.15,225821.5605,21
+77590,930107.984,2092599.855,225279.4997,21
+77591,929329.1349,2093709.146,224724.0454,21
+77592,931994.315,2093303.408,224291.0369,21
+77593,931609.3345,2095199.198,224379.9657,21
+77594,933322.3373,2093720.885,223550.9006,21
+77595,933278.9946,2095327.727,223321.2285,21
+77596,934501.5831,2094981.456,222857.754,21
+77597,936142.5871,2096610.177,222886.7068,21
+77598,936470.2482,2095826.302,222310.5937,21
+77599,937929.2991,2097342.129,222084.6194,21
+77600,938484.314,2096965.547,223822.6537,21
+77601,939342.0798,2097253.535,222989.9462,21
+77602,939982.7819,2098305.269,222738.6653,21
+77603,940901.371,2097675.325,223496.6069,21
+77604,942571.2764,2100113.031,223157.6552,21
+77605,942368.9885,2097531.992,223080.3176,21
+77606,944689.0055,2100650.404,223332.5473,21
+77607,944247.243,2100574.813,223225.4958,21
+77608,947246.5675,2099431.433,223439.7331,21
+77609,945477.06,2101223.042,223101.2119,21
+77610,948545.865,2101689.228,223980.3386,21
+77611,947206.2758,2100997.992,223577.0287,21
+77612,950531.3965,2102163.961,223617.6059,21
+77613,949699.3075,2102159.136,223866.3206,21
+77614,951404.4683,2103401.946,223959.0048,21
+77615,951535.0176,2102936.024,224549.3039,21
+77616,953141.3135,2103005.383,223953.3254,21
+77617,954066.5834,2105369.99,224472.0467,21
+77618,955436.4647,2103799.291,224673.6578,21
+77619,954781.6902,2104685.987,224968.9538,21
+77620,958070.6895,2106227.944,224775.4858,21
+77621,955702.9139,2104041.378,225528.0437,21
+77622,959431.739,2106485.812,225104.943,21
+77623,959433.1598,2106860.318,226062.9107,21
+77624,959953.267,2106553.146,225671.6716,21
+77625,960782.2022,2106860.012,226115.0882,21
+77626,961544.8216,2106550.519,226404.1031,21
+77627,964057.1287,2107874.543,226393.7115,21
+77628,962770.5646,2109141.674,227089.8106,21
+77629,965476.9467,2107991.573,227212.3886,21
+77630,965061.081,2109235.787,227420.0657,21
+77631,966860.0046,2108434.961,228156.5629,21
+77632,966748.8571,2111218.086,227885.9035,21
+77633,968769.2102,2109212.054,228608.0684,21
+77634,969197.1962,2111292.768,228743.043,21
+77635,969760.2661,2110483.377,229027.8806,21
+77636,971215.9897,2112335.441,229326.2152,21
+77637,971034.3422,2110150.445,229778.133,21
+77638,972786.4955,2113811.222,230140.8125,21
+77639,973906.8565,2111251.992,230480.4732,21
+77640,974271.271,2114701.709,230916.1573,15.6
+77641,0,0,0,15.6
+77642,0,0,0,15.6
+77643,0,0,0,15.6
+77644,0,70.42669128,0,15.6
+77645,438539.5517,0,998621.1758,15.6
+77646,0,0,0,15.6
+77647,0,0,0,15.6
+77648,0,100.4298498,0,15.6
+77649,0,0,0,15.6
+77650,0,0,0,15.6
+77651,0,0,0,15.6
+77652,339466.9741,62539.63155,0,15.6
+77653,0,4983.48308,0,15.6
+77654,0,25529.29222,0,15.6
+77655,0,26583.63674,0,15.6
+77656,0,24952.50697,0,15.6
+77657,0,25566.63957,670177.593,15.6
+77658,0,26054.27381,0,15.6
+77659,0,26434.83618,0,15.6
+77660,0,26749.92936,0,15.6
+77661,0,464315.5428,0,15.6
+77662,0,60321.6835,0,15.6
+77663,0,118726.3776,0,15.6
+77664,0,227156.2666,0,15.6
+77665,0,171616.287,0,15.6
+77666,0,184598.2069,0,15.6
+77667,0,188031.1865,0,15.6
+77668,0,190970.4618,0,15.6
+77669,0,194930.4444,0,15.6
+77670,0,197294.304,0,15.6
+77671,0,200868.7407,0,15.6
+77672,0,203655.3538,0,15.6
+77673,0,206861.44,0,15.6
+77674,0,209192.7929,0,15.6
+77675,0,212264.3839,0,15.6
+77676,0,214937.2928,0,15.6
+77677,0,218041.9198,0,15.6
+77678,0,220064.5236,0,15.6
+77679,0,223382.1879,890217.2022,15.6
+77680,0,225350.464,0,15.6
+77681,0,228251.0563,0,15.6
+77682,0,197382.1505,83259.02487,15.6
+77683,0,200269.6815,81848.46824,15.6
+77684,0,299578.9829,0,15.6
+77685,0,219274.7106,0,15.6
+77686,0,235754.813,80533.90756,15.6
+77687,0,247260.7068,0,15.6
+77688,0,245256.3527,0,15.6
+77689,339439.5241,247451.775,0,15.6
+77690,0,249692.6714,0,15.6
+77691,0,35363.35532,0,15.6
+77692,0,35489.1746,0,15.6
+77693,0,35778.81539,0,15.6
+77694,0,785954.5211,0,15.6
+77695,0,104230.3108,0,15.6
+77696,0,181898.7433,0,15.6
+77697,47039.84151,334401.4444,0,15.6
+77698,700.6992142,256433.2005,79230.30632,15.6
+77699,3571.799564,269642.5448,0,15.6
+77700,15898.52537,271561.67,0,15.6
+77701,12267.48629,272966.1492,0,15.6
+77702,11536.76952,274495.8382,78241.03209,15.6
+77703,12138.06756,276128.6849,0,15.6
+77704,12283.9857,277096.2849,0,15.6
+77705,12368.50729,279069.6567,0,15.6
+77706,12489.74006,279752.861,0,15.6
+77707,12616.59096,281616.3855,0,15.6
+77708,12699.49721,282513.7561,0,15.6
+77709,12824.93481,284287.6881,0,15.6
+77710,12897.84975,285128.4122,0,15.6
+77711,13002.05416,286679.0792,0,15.6
+77712,13136.45158,288151.2954,0,15.6
+77713,13199.7663,288703.5115,827163.8133,15.6
+77714,13316.52506,251406.3757,0,15.6
+77715,13386.5089,252227.959,0,15.6
+77716,13522.91915,364851.2728,0,15.6
+77717,13552.41652,279265.6828,0,15.6
+77718,13709.21934,288741.8462,0,15.6
+77719,13752.30306,301040.5357,0,15.6
+77720,13886.53441,297662.7066,0,15.6
+77721,13931.32401,298158.4496,0,15.6
+77722,14020.1003,300047.8819,0,15.6
+77723,14113.31082,300988.3079,0,15.6
+77724,14211.0334,40417.32332,0,15.6
+77725,14261.00874,40604.40541,0,15.6
+77726,353793.5835,40681.90153,0,15.6
+77727,0,954832.5499,0,15.6
+77728,0,194145.9746,0,15.6
+77729,0,143377.9007,0,15.6
+77730,0,417472.8288,0,15.6
+77731,0,293564.3678,0,15.6
+77732,64638.91088,310631.9067,0,15.6
+77733,0,312367.2826,645100.8237,15.6
+77734,4096.109112,313014.7106,0,15.6
+77735,23590.42869,313651.2175,0,15.6
+77736,13865.69788,314785.0653,5.841080867,15.6
+77737,15175.29521,315185.4908,0,15.6
+77738,15363.44067,316649.3791,0,15.6
+77739,15444.4382,317236.2145,0,15.6
+77740,15505.04636,317825.3613,0,15.6
+77741,15542.27104,319372.1856,0,15.6
+77742,15626.85293,319693.0051,0,15.6
+77743,15643.93536,321018.4538,0,15.6
+77744,15738.31039,321356.6429,0,15.6
+77745,15784.1315,322086.107,0,15.6
+77746,15804.48225,280634.3648,0,15.6
+77747,15894.98391,281243.8961,0,15.6
+77748,15957.82921,395980.9416,835985.3793,15.6
+77749,15987.04063,313240.3459,0,15.6
+77750,16029.21352,325520.6833,0,15.6
+77751,16078.79351,327909.9054,0,15.6
+77752,16165.93764,329492.1731,0,15.6
+77753,16198.06679,328822.3548,0,15.6
+77754,16230.2998,329705.5236,0,15.6
+77755,16295.58827,330622.3076,75620.69627,15.6
+77756,16353.77998,330827.5237,0,15.6
+77757,16366.08497,43623.78535,0,15.6
+77758,16432.00172,43651.83307,0,15.6
+77759,16483.94673,868649.5111,74718.11318,15.6
+77760,16533.01047,172025.4576,73521.60996,15.6
+77761,16879.96281,298710.2575,72491.1764,15.6
+77762,0,380857.0474,71203.72052,15.6
+77763,339440.8301,338217.9016,70191.21581,15.6
+77764,0,343471.692,69110.38838,15.6
+77765,0,345618.7722,68070.31795,15.6
+77766,72715.70285,347490.2983,67109.86793,15.6
+77767,1852.622042,348762.18,65898.39377,15.6
+77768,7649.804898,350873.3543,65169.71791,15.6
+77769,27066.66552,352580.6187,64034.79112,15.6
+77770,17019.98451,353451.2911,63116.40468,15.6
+77771,18724.73308,356646.8238,62171.2175,15.6
+77772,18937.79687,357476.9104,61241.52463,15.6
+77773,19093.29018,359391.216,60325.96588,15.6
+77774,19287.60814,360813.4586,59426.53303,15.6
+77775,19463.42006,362676.6631,58539.82439,15.6
+77776,19632.66638,364626.3436,57673.26541,15.6
+77777,19786.78385,365878.2985,56808.16806,15.6
+77778,20011.55896,320670.8161,56105.30091,15.6
+77779,20150.87671,321656.6508,55089.6784,15.6
+77780,20304.79189,437552.4733,54339.07506,15.6
+77781,20506.88353,371662.277,53522.88266,15.6
+77782,20640.54012,375677.3647,52739.10494,15.6
+77783,20871.09829,373404.6944,663654.1148,15.6
+77784,21007.7181,380921.7733,52078.16771,15.6
+77785,21199.25711,380093.5933,51682.83828,15.6
+77786,21329.71861,381090.293,50759.94844,15.6
+77787,21538.66816,383263.1892,0,15.6
+77788,21688.51364,384438.0984,0,15.6
+77789,21871.57451,49415.39237,0,15.6
+77790,22061.50689,49697.0501,0,15.6
+77791,22182.77431,1020114.011,0,15.6
+77792,22391.3352,238915.691,0,15.6
+77793,22547.4271,340275.4336,0,15.6
+77794,22714.03454,439611.4732,0,15.6
+77795,22924.43401,395457.4696,0,15.6
+77796,0,398564.9045,0,15.6
+77797,0,400839.6352,0,15.6
+77798,425450.7009,402518.292,0,15.6
+77799,84704.58466,403778.0612,0,15.6
+77800,387132.5973,405402.5638,0,15.6
+77801,141108.5083,407715.6676,0,15.6
+77802,144490.7058,408393.7486,0,15.6
+77803,122731.2801,410099.3758,574713.0614,15.6
+77804,131100.5394,411813.7981,0,15.6
+77805,132796.8002,413087.3243,0,15.6
+77806,134386.1316,414992.7171,0,15.6
+77807,135994.3606,416336.687,0,15.6
+77808,137964.1666,418193.1689,0,15.6
+77809,139029.9728,419255.6921,0,15.6
+77810,141180.0147,368197.3357,0,15.6
+77811,142819.8191,369310.735,123469.3991,15.6
+77812,144211.7399,484721.4633,58382.57744,15.6
+77813,146179.2553,439828.4756,50106.96809,15.6
+77814,147810.0604,417205.6274,54433.47726,15.6
+77815,149541.1361,437935.8954,52013.77236,15.6
+77816,150886.1765,427692.2253,50806.4555,15.6
+77817,153219.2052,433880.8426,49925.91674,15.6
+77818,154376.1419,433567.2884,640358.9682,15.6
+77819,156495.4332,435187.6091,49857.13501,15.6
+77820,157707.4848,438803.4351,49081.26414,15.6
+77821,159293.3825,54900.81146,48519.02447,15.6
+77822,159580.208,54873.96634,47465.50791,15.6
+77823,160742.9816,1127732.505,47138.40706,15.6
+77824,161186.7274,257010.7423,46337.5434,15.6
+77825,162304.5526,448588.1594,45772.11966,15.6
+77826,163349.7508,440888.928,563135.7249,15.6
+77827,163772.0938,473910.7636,12791.76631,15.6
+77828,27721.59904,435752.828,130189.3049,15.6
+77829,0,436120.578,4525.356542,15.6
+77830,0,444735.2558,102338.3589,15.6
+77831,79125.64134,440285.3589,57833.68952,15.6
+77832,16181.00598,439226.094,42136.58761,15.6
+77833,631242.2453,439761.4233,49317.17594,15.6
+77834,35431.53876,438421.02,46651.96025,15.6
+77835,81711.93079,438188.3705,45452.42817,15.6
+77836,240562.9174,437564.3497,44636.13879,15.6
+77837,504136.8173,436754.6505,43931.97822,15.6
+77838,172731.9881,436490.9666,43268.45882,15.6
+77839,175215.8759,435545.8786,0,15.6
+77840,177869.3215,435440.7216,0,15.6
+77841,178485.687,434658.9704,0,15.6
+77842,179341.6687,380205.1175,0,15.6
+77843,179956.4718,380319.2003,0,15.6
+77844,180449.8082,494234.7005,0,15.6
+77845,181422.0171,447166.4767,0,15.6
+77846,182160.4111,421415.9123,37790.8757,15.6
+77847,182597.1208,440209.0909,0,15.6
+77848,183472.6733,427761.3339,37250.05837,15.6
+77849,184245.5007,431433.4433,0,15.6
+77850,185026.9012,430283.1265,0,15.6
+77851,185583.2366,428260.9161,0,15.6
+77852,186624.4001,428839.2671,0,15.6
+77853,186673.6502,60543.67604,580597.0086,15.6
+77854,188186.0172,60362.92277,0,15.6
+77855,188482.4687,1108676.936,0,15.6
+77856,189225.4685,249648.6376,0,15.6
+77857,189901.4723,407531.7639,0,15.6
+77858,190657.9554,437214.1485,0,15.6
+77859,191789.031,421580.1177,0,15.6
+77860,191622.7,416676.6624,0,15.6
+77861,162818.1178,415563.6585,0,15.6
+77862,163078.9803,414811.3188,38286.95876,15.6
+77863,82822.06622,414410.6467,37758.00039,15.6
+77864,24320.2344,413998.2202,39992.3964,15.6
+77865,20857.59443,413048.7094,58060.42919,15.6
+77866,35923.68153,412353.8776,9114.663167,15.6
+77867,688166.3802,411616.5145,82909.43364,15.6
+77868,64356.18876,411219.8217,46670.37065,15.6
+77869,111808.2119,410585.9356,34485.76133,15.6
+77870,270043.6095,409793.4852,39254.92557,15.6
+77871,189426.1227,408927.1763,37465.52665,15.6
+77872,200663.8257,439994.9168,36790.2057,15.6
+77873,201696.4823,407995.0313,36352.86558,15.6
+77874,541372.8381,357146.4994,35965.06668,15.6
+77875,203012.9863,367233.016,535881.5529,15.6
+77876,203394.0626,476694.6353,12401.80788,15.6
+77877,203994.2069,422874.0503,103594.0594,15.6
+77878,204752.7067,405049.8224,5969.686536,15.6
+77879,205213.5496,416046.3972,81870.87536,15.6
+77880,205944.2972,410139.9282,47643.02296,15.6
+77881,204558.7186,410706.7647,35181.67208,15.6
+77882,204776.1921,410357.2812,40926.02272,15.6
+77883,205222.1615,410649.4736,38889.64734,15.6
+77884,205364.5595,411340.3127,38005.80877,15.6
+77885,205633.0956,58926.77976,37422.74826,15.6
+77886,206061.6485,58882.12519,36926.83256,15.6
+77887,206439.242,1083945.571,36461.84853,15.6
+77888,206588.6789,248429.7224,545874.4971,15.6
+77889,206891.1915,373899.4952,38428.5928,15.6
+77890,207130.3057,450643.459,37947.62957,15.6
+77891,207437.8852,416107.0823,37477.86765,15.6
+77892,208063.4754,415162.539,0,15.6
+77893,176158.8288,416486.543,0,15.6
+77894,177213.214,416514.7209,0,15.6
+77895,261238.1901,417030.6218,31012.70951,15.6
+77896,205971.8134,417530.0884,0,15.6
+77897,20819.73104,417674.1968,0,15.6
+77898,37262.64096,418239.2473,0,15.6
+77899,31663.13073,418385.2722,0,15.6
+77900,31810.09075,419521.5644,0,15.6
+77901,726039.9111,419186.233,0,15.6
+77902,100152.6408,411981.069,0,15.6
+77903,109166.4082,411525.2707,0,15.6
+77904,286061.2678,412802.8211,0,15.6
+77905,202824.7233,412686.0263,0,15.6
+77906,212638.1682,361051.1991,0,15.6
+77907,212872.8241,361063.541,0,15.6
+77908,213498.3201,477619.37,529220.6447,15.6
+77909,213041.4084,426246.4354,0,15.6
+77910,214003.6044,405855.3509,0,15.6
+77911,213470.0945,422202.4063,0,15.6
+77912,553406.6941,413479.4997,0,15.6
+77913,214088.9738,417774.7167,0,15.6
+77914,214370.0841,454379.9897,0,15.6
+77915,214676.43,416466.3097,0,15.6
+77916,214823.4942,418780.578,0,15.6
+77917,214934.1434,66689.1675,0,15.6
+77918,215472.6352,61199.47124,39142.71157,15.6
+77919,215014.5544,1116405.362,42097.6166,15.6
+77920,215858.5854,251231.8233,41536.7863,15.6
+77921,215666.8773,414877.9878,41035.53512,15.6
+77922,216155.748,449353.0747,40567.28245,15.6
+77923,216177.4299,433761.5033,568841.6205,15.6
+77924,216451.5424,429679.752,42207.37648,15.6
+77925,184507.7024,429416.0879,41715.9165,15.6
+77926,184478.4186,430379.7241,42252.18256,15.6
+77927,269830.077,430334.0666,40440.57935,15.6
+77928,216349.7833,430882.4299,40637.94968,15.6
+77929,205660.8412,431402.8309,39994.83529,15.6
+77930,223325.1324,431666.8616,38874.20432,15.6
+77931,32376.31698,432042.6831,46832.05422,15.6
+77932,32472.26938,432153.8566,17710.38558,15.6
+77933,32432.12775,433116.8676,79150.18344,15.6
+77934,691614.3243,432639.9702,38221.38247,15.6
+77935,68164.4875,434015.4731,36338.32819,15.6
+77936,172541.6187,433519.2918,38177.50029,15.6
+77937,266207.4392,434503.9762,36990.82818,15.6
+77938,213637.1987,380883.3907,36500.33112,15.6
+77939,219587.1155,381247.874,36154.57209,15.6
+77940,220262.5845,498053.7947,35839.33815,15.6
+77941,219899.7929,450382.9999,531299.1073,15.6
+77942,220311.4382,425439.0918,15055.42689,15.6
+77943,220183.6102,446161.8981,99284.32069,15.6
+77944,220639.3455,423781.9948,8859.738337,15.6
+77945,220163.5316,430082.1493,78782.32895,15.6
+77946,220462.9089,427789.5976,47502.51734,15.6
+77947,220504.2901,428542.4442,0,15.6
+77948,220215.4655,428703.7647,0,15.6
+77949,220855.4907,54660.42675,0,15.6
+77950,559560.6996,54645.5376,0,15.6
+77951,220881.8432,1125615.42,0,15.6
+77952,220532.9151,290436.5886,0,15.6
+77953,220915.8854,446959.3463,0,15.6
+77954,220669.9188,432816.2981,0,15.6
+77955,220927.479,457277.9341,0,15.6
+77956,220660.7819,439881.7437,0,15.6
+77957,188518.5093,440863.5537,0,15.6
+77958,188480.9566,441154.8725,545559.8777,15.6
+77959,273633.9066,441184.8354,33325.76605,15.6
+77960,221577.2214,441846.2009,0,15.6
+77961,208752.0423,441913.2407,0,15.6
+77962,226833.3258,441874.2951,0,15.6
+77963,221212.1143,442369.3045,0,15.6
+77964,32725.66229,442903.3307,0,15.6
+77965,32728.22401,442330.7607,0,15.6
+77966,32660.7051,443521.1787,0,15.6
+77967,698348.0599,443065.1249,0,15.6
+77968,81118.97599,443944.7179,0,15.6
+77969,165775.5495,443630.2752,0,15.6
+77970,272216.0643,389039.811,0,15.6
+77971,215488.4086,388396.896,0,15.6
+77972,222102.8877,507662.0421,0,15.6
+77973,222012.6529,461149.8969,0,15.6
+77974,222325.8841,432497.0462,35599.35862,15.6
+77975,221399.5632,457625.2924,541175.6801,15.6
+77976,222544.4473,441112.7338,14740.92186,15.6
+77977,221554.7693,448913.1403,108886.8977,15.6
+77978,222258.7764,445416.0152,7896.851312,15.6
+77979,221779.6617,446975.5834,86112.22025,15.6
+77980,221964.3763,446413.0435,51395.56109,15.6
+77981,221937.7998,66005.02168,54495.53394,15.6
+77982,221739.0719,55914.07681,8184.327376,15.6
+77983,222176.3159,1133346.652,84313.32945,15.6
+77984,221739.6902,256438.7203,43902.6735,15.6
+77985,221578.4179,478373.1363,37996.63238,15.6
+77986,222336.5828,427240.3682,41030.54147,15.6
+77987,221387.1553,453683.4501,39516.22576,15.6
+77988,561195.8856,484485.6904,38794.71089,15.6
+77989,189554.1797,438869.6025,38284.32573,15.6
+77990,188977.8638,440598.0426,37835.86819,15.6
+77991,274802.5681,457986.2829,37409.47492,15.6
+77992,223361.939,449169.464,36994.33574,15.6
+77993,208601.0623,450600.5891,540677.1724,15.6
+77994,227480.1649,450862.4528,38302.74518,15.6
+77995,221817.8902,450922.8553,43861.28384,15.6
+77996,221839.0499,451494.7661,19632.71437,15.6
+77997,32588.06496,451433.328,77179.46858,15.6
+77998,32525.28414,452085.6867,41747.066,15.6
+77999,32575.06934,451240.9499,8826.032866,15.6
+78000,699262.5026,452796.4356,75132.82623,17.8
+78001,954306.3624,1446425.677,119969.5037,17.8
+78002,860499.8283,1204570.95,59968.67767,17.8
+78003,433734.735,691409.2972,56055.71987,17.8
+78004,643305.4131,797839.0088,65843.0216,17.8
+78005,476358.5718,801060.1515,62291.00237,17.8
+78006,444950.7898,781110.8364,61643.04465,17.8
+78007,475005.5966,774877.9141,61971.0798,17.8
+78008,449027.5007,771559.6767,561710.7833,17.8
+78009,450369.242,769857.426,43898.79413,17.8
+78010,447828.1616,769306.7999,131893.7701,17.8
+78011,446733.7039,768801.6141,37458.9299,17.8
+78012,445631.7553,767410.0411,109472.3636,17.8
+78013,444439.356,139725.7748,77015.87256,17.8
+78014,443222.0973,1223851.717,83194.52302,17.8
+78015,442700.4789,638167.291,37736.11155,17.8
+78016,441234.6372,764018.3712,111297.5248,17.8
+78017,462375.9419,778632.333,71581.42657,17.8
+78018,442353.3604,732962.3207,65888.56199,17.8
+78019,442115.5881,732113.3751,69473.5082,17.8
+78020,445842.0982,821616.4219,68402.80915,17.8
+78021,383434.7659,747791.4559,68085.11001,17.8
+78022,381953.2122,765123.6305,68070.92958,17.8
+78023,472469.7838,766199.9372,68011.92072,17.8
+78024,459494.1956,765935.7945,68057.7352,17.8
+78025,435355.4266,764114.7569,68043.56384,17.8
+78026,789133.1531,765370.7625,68089.11022,17.8
+78027,442439.7791,761420.5183,590872.3534,17.8
+78028,439288.5811,761108.0631,89422.97095,17.8
+78029,441884.3011,763021.4228,41738.55943,17.8
+78030,67880.30493,761122.5813,114008.6825,17.8
+78031,67627.91716,763174.0965,0,17.8
+78032,880300.4527,761716.7822,36363.39269,17.8
+78033,520148.9167,657294.4449,44428.88631,17.8
+78034,439813.1923,799639.689,42707.23978,17.8
+78035,404908.5718,784917.2673,42120.59771,17.8
+78036,464958.9255,746082.4483,41789.99294,17.8
+78037,438054.6804,769020.7956,131037.4984,17.8
+78038,437058.4576,763899.3348,571453.2262,17.8
+78039,436932.6503,764293.2257,57471.33485,17.8
+78040,436070.2495,763809.6311,164226.0407,17.8
+78041,436095.1586,764970.3884,53161.23941,17.8
+78042,436033.9529,764335.6853,132635.8733,17.8
+78043,434652.1076,765711.2893,96969.78559,17.8
+78044,435318.7994,137581.2749,106430.4274,17.8
+78045,434338.3134,137549.5349,54883.5162,17.8
+78046,434041.4612,1221703.338,136482.6164,17.8
+78047,426710.4026,1078685.638,91868.52592,17.8
+78048,425523.8536,502835.8215,85299.96764,17.8
+78049,425505.706,854665.6459,89837.26656,17.8
+78050,425135.8339,740683.8139,88773.32039,17.8
+78051,425168.3917,737683.9865,88716.78752,17.8
+78052,424273.0131,826485.9391,88861.64038,17.8
+78053,364266.9279,754216.5663,89119.68668,17.8
+78054,363888.8912,771207.6663,89342.63099,17.8
+78055,453580.2938,774370.1121,89610.70024,17.8
+78056,436686.4355,772038.7798,89853.06118,17.8
+78057,418037.1158,772187.9881,88822.37084,17.8
+78058,435342.527,773157.3601,91819.79334,17.8
+78059,417073.0111,773304.527,90259.7265,17.8
+78060,424726.9433,775860.963,611346.5855,20
+78061,2633754.73,2613192.018,1885055.523,20
+78062,280587.8104,2627056.243,918668.9751,20
+78063,1072376.241,1482281.934,404121.2014,20
+78064,1028259.633,1069713.964,643438.8663,20
+78065,1007978.621,1444558.527,561255.3069,20
+78066,881366.1036,1432750.083,640864.1882,20
+78067,944103.054,1301521.472,454812.1349,20
+78068,914096.9319,1340085.344,573220.1054,20
+78069,910318.3342,1319341.954,654915.5282,20
+78070,908106.2872,1312807.437,579651.6252,20
+78071,908027.4477,1311493.143,564235.6301,20
+78072,903585.3765,1307098.085,588716.845,20
+78073,902742.159,1299858.156,592994.8697,20
+78074,900861.2183,1297650.992,598341.483,20
+78075,898343.6427,1294458.641,609802.3538,20
+78076,885687.01,228287.7708,616984.7074,20
+78077,883917.1271,1431107.693,622853.7126,20
+78078,883990.8831,1577615.937,630733.7142,20
+78079,878209.167,1245987.471,636146.433,20
+78080,877550.6643,1224593.057,642986.5591,20
+78081,875521.0538,1311733.48,646493.0402,20
+78082,871164.7293,1220908.715,661030.1124,20
+78083,871577.6239,1219171.326,660211.5564,20
+78084,867231.6463,1313508.535,1444565.292,20
+78085,751665.2037,1295201.735,698002.0593,20
+78086,903276.0498,1250889.995,1026984.057,20
+78087,860279.8591,1274540.24,674125.4543,20
+78088,858370.1645,1262815.421,833741.6476,20
+78089,859229.3437,1258436.72,717784.9897,20
+78090,858263.5114,1257103.624,683841.7035,20
+78091,827320.7976,1256882.855,256987.9007,20
+78092,826681.4023,1254371.463,228978.9997,20
+78093,112438.045,1250588.589,224801.6905,20
+78094,178058.4002,1250969.266,222009.5969,20
+78095,956648.7019,1084722.939,2814671.292,20
+78096,1261959.456,1297492.13,430277.3265,20
+78097,766483.7187,1233067.326,596795.6907,20
+78098,935691.7594,1259201.593,720999.7809,20
+78099,856720.2124,1244521.025,556772.3175,20
+78100,870403.3507,1241923.409,568268.5939,20
+78101,822284.4097,1239936.212,777131.2637,20
+78102,850784.0939,1240682.867,680781.8088,20
+78103,839698.2664,1234642.355,638471.4815,20
+78104,838809.933,1237186.751,683162.5418,20
+78105,837514.9522,1232897.35,677834.2568,20
+78106,820068.8007,1233001.889,1487444.096,20
+78107,827589.7133,213615.064,705918.1767,20
+78108,822862.5595,1389963.716,1061328.938,20
+78109,820035.3157,1561258.664,678528.4937,20
+78110,819985.3115,1095334.818,855146.3669,20
+78111,815931.1626,1235872.472,729350.6786,20
+78112,815878.345,1246356.657,685753.2932,20
+78113,813435.274,1227137.513,710240.8849,20
+78114,811587.2187,1172019.554,708305.4213,20
+78115,810650.3051,1170325.348,710866.5919,20
+78116,699353.3466,1270674.373,712336.9273,20
+78117,842995.8815,1241825.71,717334.5518,20
+78118,803758.1682,1209869.068,720117.5506,20
+78119,799094.2634,1230319.323,723524.2512,20
+78120,804269.3837,1215845.616,727515.7397,21
+78121,2310143.154,3009448.044,2778370.57,21
+78122,2164921.36,2488583.91,1726214.615,21
+78123,666677.5738,883295.316,441102.8386,21
+78124,784209.8233,1358751.862,821939.8243,21
+78125,1116357.938,1394187.736,887610.0719,21
+78126,1009020.107,1296231.574,806635.342,21
+78127,965906.1152,1294584.191,802132.8924,21
+78128,978962.7029,1290187.529,1647348.528,21
+78129,955431.2989,1285444.757,846407.3619,21
+78130,960144.8533,1283609.264,1220261.366,21
+78131,956109.1479,1278476.49,811321.9184,21
+78132,952975.8159,1274977.476,981773.7957,21
+78133,947503.1437,1272065.589,848869.8285,21
+78134,946151.7932,1269295.908,1019412.28,21
+78135,941538.0383,1265712.225,815435.1044,21
+78136,941305.8069,1263419.124,1001119.89,21
+78137,935842.2716,1259421.88,829486.8414,21
+78138,934432.8777,1257265.111,824423.4428,21
+78139,931905.8535,1255214.519,828572.2398,21
+78140,927686.2537,1252407.934,835150.8948,21
+78141,927226.7034,1248658.374,839617.5055,21
+78142,924194.7514,1248948.412,844661.57,21
+78143,920958.3015,1243337.62,849259.0105,21
+78144,920200.2252,1243498.466,854781.1643,21
+78145,916913.0787,1240307.73,858491.9641,21
+78146,916448.1935,1238091.653,866562.3761,21
+78147,912197.445,1237184.862,867749.3477,21
+78148,911988.6154,1233083.323,872468.3185,21
+78149,908874.6239,1233367.901,876984.569,21
+78150,907110.2266,1230878.701,1768288.078,21
+78151,905840.5569,1226353.733,917297.3736,21
+78152,903912.0111,1229008.2,1332944.721,21
+78153,901284.6947,1225045.437,873741.3377,21
+78154,900833.4413,1221904.279,1046474.199,21
+78155,898572.6722,1222664.707,897613.448,21
+78156,896479.6438,1219918.545,1102416.593,21
+78157,895233.8453,1217544.657,875778.39,21
+78158,894237.7923,1217183.457,1060733.717,21
+78159,891218.5373,1215049.282,877999.7271,21
+78160,889474.1003,1213786.646,883456.3972,21
+78161,889922.0005,1211924.891,887758.0264,21
+78162,886448.2958,1211128.376,893334.7036,21
+78163,886656.9611,1208814.493,896519.2163,21
+78164,883316.2332,1207971.111,903076.2923,21
+78165,884209.8524,1206237.961,906090.7577,21
+78166,879696.7161,1205309.745,909871.3887,21
+78167,879678.8969,1203055.564,916145.3529,21
+78168,877340.6467,1203629.348,921877.426,21
+78169,877027.5196,1199168.224,923202.0834,21
+78170,875664.7467,1201258.628,927046.5251,21
+78171,872099.4591,1197856.317,931544.3952,21
+78172,873375.588,1197378.734,1843420.42,21
+78173,870753.0874,1196066.685,970646.5955,21
+78174,868814.3705,1194548.714,1403957.137,21
+78175,869948.6638,1194504.62,924558.8222,21
+78176,865406.1772,1191846.528,1083323.771,21
+78177,865408.5919,1191269.069,930692.4097,21
+78178,865844.9164,1191153.241,1161355.774,21
+78179,861529.7216,1187608.835,926577.5879,21
+78180,863449.5256,1188894.069,1097039.887,21
+78181,1461320.448,2529514.389,900663.0358,21
+78182,1458154.787,2522292.13,897707.4356,21
+78183,1455879.355,2521033.349,897838.0397,21
+78184,1453790.788,2519002.715,897211.5729,21
+78185,1454256.444,2517481.46,896549.5984,21
+78186,1450566.826,2514981.296,895510.4123,21
+78187,1447495.495,2514077.607,895399.2486,21
+78188,1446931.076,2512320.075,894679.5516,21
+78189,1446746.16,2511676.787,893403.3434,21
+78190,1443107.595,2509087.33,895863.5461,21
+78191,1445593.033,2539110.216,891862.3033,21
+78192,1441214.854,2521342.458,889993.1596,21
+78193,1441433.731,2523605.176,889368.2401,21
+78194,1440712.685,2524023.202,1807655.137,21
+78195,1440209.523,2523027.271,917900.7528,21
+78196,1436847.365,2520479.083,1357741.45,21
+78197,1439065.899,2521432.955,864055.1053,21
+78198,1436022.976,2517732.802,1040399.031,21
+78199,1420137.511,2519940.59,879749.3318,21
+78200,1416995.904,2515713.78,853180.6179,21
+78201,1412727.981,2517211.728,851024.688,21
+78202,1410121.519,2514893.701,851753.2217,21
+78203,1408620.636,2514349.405,849991.0641,21
+78204,1405970.602,2513617.502,850051.7073,21
+78205,1403100.888,2511859.429,847998.4894,21
+78206,1401533.542,2511514.277,848279.568,21
+78207,1398730.802,2511031.253,817588.914,21
+78208,1398034.937,2508521.285,813593.0215,21
+78209,1395177.008,2509599.598,810201.1903,21
+78210,1390372.624,2506806.784,808587.3915,21
+78211,1392928.061,2507965.906,803907.4147,21
+78212,1387828.221,2504387.908,804350.4773,21
+78213,1386907.833,2505887.323,797191.1369,21
+78214,1384953.379,2504052.578,796178.136,21
+78215,1384408.762,2502517.939,789527.8199,21
+78216,1381452.89,2503538.031,1723877.593,21
+78217,1382150.323,2500690.626,814443.7553,21
+78218,1379807.16,2501002.763,1269987.08,21
+78219,1376492.391,2500418.163,755899.8851,21
+78220,1379844.877,2498579.375,968842.9749,21
+78221,1373825.001,2498829.887,797683.7989,21
+78222,1375662.44,2496827.405,737082.0083,21
+78223,1372041.753,2497504.322,758595.7433,21
+78224,1372000.433,2495265.98,747404.9391,21
+78225,1370968.561,2494632.608,743230.8906,21
+78226,1368539.779,2495240.132,739408.76,21
+78227,1369105.597,2492606.157,736072.3413,21
+78228,1365893.656,2494550.143,734620.0814,21
+78229,1365911.646,2490792.469,731046.918,21
+78230,1365097.839,2491518.302,727633.6933,21
+78231,1362419.56,2491095.022,725530.5076,21
+78232,1365176.496,2489265.102,721455.9882,21
+78233,1364024.301,2488866.151,718479.4748,21
+78234,1362052.549,2488983.221,715610.2338,21
+78235,1360968.114,2487689.871,705767.1885,21
+78236,1361947.73,2487485.453,714391.5748,21
+78237,1359132.263,2485721.48,703737.6494,21
+78238,1359000.494,2486500.419,1611671.528,21
+78239,1359230.45,2483952.297,702343.475,21
+78240,1356241.228,2485577.774,1159202.557,21
+78241,1560960.132,2258095.244,481900.3699,21
+78242,1106727.396,2246027.96,726428.2197,21
+78243,1101459.375,2242108.909,548061.9544,21
+78244,1095813.118,2238797.527,474823.3106,21
+78245,1091634.865,2235897.257,504844.4893,21
+78246,1087313.467,2233428.046,489846.2986,21
+78247,1081628.526,2222473.436,482037.9457,21
+78248,1078545.39,2221172.624,476480.616,21
+78249,1074128.123,2220022.612,471695.3736,21
+78250,1071513.151,2216159.407,466179.9772,21
+78251,1068910.923,2214698.124,461245.2993,21
+78252,1063725.685,2209801.992,455915.9359,21
+78253,1061991.868,2210334.635,451563.9112,21
+78254,1056433.625,2206951.752,446046.5499,21
+78255,1054475.555,2203836.513,440587.6124,21
+78256,1049521.777,2203031.843,435535.4135,21
+78257,1047233.21,2200482.076,430191.3487,21
+78258,1043093.008,2198571.383,425471.8353,21
+78259,1040616.207,2197047.026,413699.7227,21
+78260,1036222.227,2194587.607,422831.4603,21
+78261,1034109.068,2193056.495,408222.2711,21
+78262,1030099.326,2191888.285,1223078.307,21
+78263,1027177.39,2188823.82,344279.556,21
+78264,1024272.497,2188274.153,774321.7729,21
+78265,1020493.358,2186580.17,296838.912,21
+78266,1018482.043,2184227.606,584395.3429,21
+78267,1014987.789,2182662.932,413359.8073,21
+78268,1013265.978,2182113.478,352259.4979,21
+78269,1012351.456,2179283.605,377373.1051,21
+78270,1008124.813,2178706.726,365474.129,21
+78271,1005163.026,2171772.289,357827.4401,21
+78272,1000984.426,2169446.899,353066.5076,21
+78273,995969.0591,2166938.822,347728.2235,21
+78274,992252.2694,2165941.595,343295.4077,21
+78275,989678.3226,2161950.995,338544.1116,21
+78276,984919.5496,2163140.782,334340.9048,21
+78277,982487.6322,2159350.519,330825.3062,21
+78278,978462.4466,2157947.418,326478.5161,21
+78279,974584.5155,2156319.887,321651.7944,21
+78280,971534.9029,2155760.738,318264.375,21
+78281,968327.4769,2152754.733,313862.1142,21
+78282,964319.4706,2151080.173,309417.8401,21
+78283,960358.5479,2149577.998,303495.0018,21
+78284,956792.9183,2147565.312,304475.1006,21
+78285,953313.3382,2145250.531,296429.5515,21
+78286,949577.8165,2145418.775,293964.9419,21
+78287,943730.4556,2142915.488,1012189.684,21
+78288,940002.3916,2140501.348,200680.4762,21
+78289,936645.3177,2141787.162,570128.6232,21
+78290,932263.8148,2138570.756,165433.1407,21
+78291,929184.5508,2136984.044,447856.8831,21
+78292,924779.4502,2135639.578,300288.4065,21
+78293,921411.6282,2135015.153,334552.9382,21
+78294,918665.8074,2132749.236,147382.6159,21
+78295,914891.2752,2131608.886,432724.5035,21
+78296,912636.4372,2130256.941,262152.2279,21
+78297,908845.6746,2127378.015,291053.9927,21
+78298,905935.4862,2126955.126,130798.5704,21
+78299,902985.1491,2125973.162,410925.6704,21
+78300,899708.7909,2123662.16,239104.7292,21
+78301,897289.1965,2122182.662,222469.6236,21
+78302,895116.5293,2119916.275,230490.9986,21
+78303,892462.2408,2082859.134,222679.6711,21
+78304,889782.3152,2073131.429,218205.5369,21
+78305,887506.6693,2070161.108,213965.4794,21
+78306,885215.2569,2066116.336,210209.665,21
+78307,882292.589,2062538.556,203550.395,21
+78308,879286.077,2059724.568,206070.6071,21
+78309,877576.9641,2055194.73,198390.5933,21
+78310,874137.0299,2051853.468,196711.3493,21
+78311,869313.8551,2047987.246,385605.1717,21
+78312,866262.2426,2046353.539,89494.99048,21
+78313,863200.8834,2042474.017,338665.423,21
+78314,860454.6622,2038153.426,181048.4252,21
+78315,857646.9885,2034569.967,178191.7466,21
+78316,854979.4874,2033122.727,182992.2209,21
+78317,851661.8536,2028032.325,351016.4796,21
+78318,849252.5981,2026432.98,81975.31992,21
+78319,846032.0749,2023040.592,309360.3837,21
+78320,843498.8576,2018992.325,165697.2145,21
+78321,840604.1292,2017361.406,162852.9414,21
+78322,837602.1731,2013506.193,167910.4491,21
+78323,834943.8871,2011015.573,163456.6951,21
+78324,832336.9791,2008082.68,161358.019,21
+78325,829487.5869,2005458.681,159551.5554,21
+78326,826589.8604,2002269.453,158042.7502,21
+78327,824336.2782,2001594.047,307892.1383,21
+78328,821503.4529,1998185.972,71228.97707,21
+78329,818775.3975,1996148.322,272102.021,21
+78330,816037.8009,1994274.828,145143.255,21
+78331,814422.5695,1990290.788,143682.0109,21
+78332,813501.7699,1989975.014,147258.513,21
+78333,812426.3678,1986657.053,281772.0922,21
+78334,810448.7572,1985806.506,65100.42627,21
+78335,810121.7435,1981933.963,249731.907,21
+78336,809105.5918,1980257.226,133756.3396,21
+78337,807807.0783,1979266.63,131900.5209,21
+78338,807342.6742,1976368.193,135663.3083,21
+78339,806199.6308,1974844.582,132210.5183,21
+78340,805482.9787,1970767.495,130716.064,21
+78341,804618.3412,1969637.137,129301.4396,21
+78342,803879.0927,1967419.097,127837.6435,21
+78343,803128.1712,1965563.619,249424.9454,21
+78344,802926.5089,1962220.426,56704.11437,21
+78345,803320.2642,1961451.816,221270.6858,21
+78346,803951.1435,1957728.443,117828.6975,21
+78347,803054.5936,1956222.606,116782.4033,21
+78348,803134.6098,1953371.6,119566.8876,21
+78349,801851.8597,1951813.453,228711.0203,21
+78350,802134.299,1948267.494,52623.79442,21
+78351,801507.3126,1946535.348,203917.9446,21
+78352,801012.8736,1944604.782,108934.0819,21
+78353,800456.5562,1942247.927,108027.2136,21
+78354,800439.5248,1939508.587,110934.9228,21
+78355,799986.6279,1936567.192,108615.8445,21
+78356,799320.6317,1934739.559,107238.3132,21
+78357,799478.72,1932837.029,106397.627,21
+78358,798591.9429,1930137.042,105357.7625,21
+78359,798493.9089,1927262.936,205208.7224,21
+78360,798698.2243,1925739.037,46900.38024,21
+78361,802218.7868,1922565.923,181990.7513,21
+78362,801749.0117,1918696.673,96706.3669,21
+78363,802145.742,1916595.693,96050.47504,21
+78364,801331.2014,1912114.879,98876.28203,21
+78365,800947.495,1910402.79,189058.5838,21
+78366,800791.5059,1905650.787,43406.14941,21
+78367,802508.3515,1903669.996,168721.5408,21
+78368,802649.7303,1899942.909,90316.32173,21
+78369,802140.0914,1896712.056,89505.4071,21
+78370,802247.5796,1893453.975,92006.03036,21
+78371,802142.4405,1890486.454,90360.56159,21
+78372,801859.8592,1887084.902,88918.99708,21
+78373,801736.7607,1884149.753,88619.40161,21
+78374,801430.2255,1880350.307,171749.3394,21
+78375,801162.5831,1877901.742,39792.46659,21
+78376,801524.9235,1874212.529,39339.94074,21
+78377,801183.2723,1871340.341,39348.4262,21
+78378,801110.3078,1867470.963,38881.4988,21
+78379,801172.5229,1864956.849,38443.7012,21
+78380,800692.028,1862066.213,38394.87575,21
+78381,800803.4573,1858560.217,38004.34927,21
+78382,802759.5561,1854856.536,37644.16751,21
+78383,802981.5254,1852254.915,37393.95574,21
+78384,802627.2377,1848763.368,37209.9368,21
+78385,803115.474,1845445.795,36708.12753,21
+78386,802919.769,1843392.49,36525.29247,21
+78387,802717.9713,1839188.867,36227.03414,21
+78388,802901.1421,1835967.051,35884.9473,21
+78389,802741.8873,1833621.631,35582.52386,21
+78390,802905.323,1830021.464,35078.64669,21
+78391,802106.0468,1826920.178,35228.32263,21
+78392,801253.1067,1824734.372,34577.94069,21
+78393,801202.7636,1820972.723,34265.97048,21
+78394,799611.7523,1817562.403,34214.50295,21
+78395,798917.5274,1816957.882,33576.52549,21
+78396,798309.2253,1811241.186,33560.38465,21
+78397,797817.944,1809982.29,32877.95538,21
+78398,796453.5214,1807434.434,33039.81499,21
+78399,796080.9412,1803985.055,32351.91527,21
+78400,794940.4987,1801393.618,32188.65689,21
+78401,794747.2204,1798250.131,31982.80464,21
+78402,792983.942,1796193.942,31286.72318,21
+78403,792904.1832,1793860.472,31464.81061,21
+78404,791777.179,1791425.534,30762.90743,21
+78405,791165.2405,1789466.674,30634.07641,21
+78406,789785.5391,1787260.708,30316.3345,21
+78407,789793.1418,1784746.916,29813.66428,21
+78408,788229.7482,1782765.812,29672.8669,21
+78409,787640.2438,1780401.959,29274.2345,21
+78410,786905.1163,1778090.272,29093.59684,21
+78411,785998.0453,1776567.671,28538.47125,21
+78412,785324.4119,1773081.369,28460.30332,21
+78413,783914.4204,1771811.949,27862.99341,21
+78414,783528.1879,2196777.119,27770.41586,21
+78415,782695.4898,1767165.803,27213.93124,21
+78416,781599.3051,1764855.973,27183.91003,21
+78417,780727.0045,1762930.804,26627.28907,21
+78418,779999.6025,1760699.163,26343.76561,21
+78419,778890.1341,1759106.004,26209.49876,21
+78420,778198.0589,1757674.092,25468.72671,21
+78421,773120.5991,1752357.723,26431.21002,21
+78422,772749.081,1749936.215,25845.68412,21
+78423,771452.9829,1747034.578,25632.26714,21
+78424,771335.0784,1745633.231,25154.6508,21
+78425,769924.3142,1743277.595,24834.73986,21
+78426,770331.3788,1740812.322,24359.07249,21
+78427,768718.6933,1739098.065,24200.92134,21
+78428,768455.8663,1736285.547,23432.91277,21
+78429,767936.6732,1734748.064,23421.75719,21
+78430,767026.8794,1732480.811,22804.13787,21
+78431,766568.1898,1730500.193,22581.31858,21
+78432,765978.7097,1728109.706,22172.22838,21
+78433,764992.3915,1725855.983,21746.39393,21
+78434,764975.5742,1724339.451,21537.0155,21
+78435,763267.249,1721847.705,20969.57538,21
+78436,763384.3066,1720044.948,20711.6479,21
+78437,762354.1045,1717739.257,20141.74387,21
+78438,761953.4285,1715516.839,20017.02866,21
+78439,760937.2554,1713632.005,19385.03247,21
+78440,760464.0851,1711381.775,19236.35261,21
+78441,759601.3249,1709371.88,18788.68106,21
+78442,759703.4653,1707075.751,18308.01944,21
+78443,757726.9193,1704703.103,18091.68188,21
+78444,758032.7542,1703104.967,17682.46852,21
+78445,756641.8859,1700508.959,17346.48532,21
+78446,756345.0914,1699087.5,16742.29109,21
+78447,755300.1058,1696008.872,16648.31466,21
+78448,755014.5549,1694477.441,16157.43667,21
+78449,751970.3455,1691971.474,15674.31273,21
+78450,751084.9663,1690302.089,15661.68935,21
+78451,749977.1611,1686246.565,15280.27518,21
+78452,748890.7684,1684948.463,15240.72692,21
+78453,746814.5755,1683352.261,14982.88679,21
+78454,746184.4907,1680585.401,14843.22433,21
+78455,744345.9501,1680016.745,14680.03999,21
+78456,743719.1753,1677535.396,14450.88135,21
+78457,741453.0417,1676504.729,14266.77717,21
+78458,740574.0952,1674408.897,14240.75346,21
+78459,739189.8048,1672506.264,13870.36972,21
+78460,737767.9796,1671953.461,13715.86872,21
+78461,736469.3302,1669184.929,13669.12709,21
+78462,735256.1684,1668185.879,13420.67178,21
+78463,733253.5257,1666325.997,13151.05993,21
+78464,732357.3097,1664753.104,13111.78417,21
+78465,730280.5511,1662902.547,12970.15138,21
+78466,729534.8004,1662020.011,12683.16881,21
+78467,725583.2094,1659681.916,12552.26377,21
+78468,724626.8244,1658801.785,12371.60129,21
+78469,722555.3899,1656892.353,12226.19954,21
+78470,721294.1161,2082436.833,11983.75117,21
+78471,719213.851,1654178.013,11898.01779,21
+78472,718292.7103,1652179.696,11666.33553,21
+78473,716513.5156,1651083.198,11496.43195,21
+78474,714341.2263,1649175.302,11346.92592,21
+78475,713132.5675,1647842.969,11196.99399,21
+78476,711343.0654,1646608.689,11014.97535,21
+78477,709608.1932,1644567.448,10790.44712,21
+78478,708294.1078,1643495.869,10702.13442,21
+78479,706178.5793,1642019.367,10465.8115,21
+78480,707347.7997,1640341.11,10376.71871,21
+78481,732086.554,1674988.664,16013.23767,21
+78482,730612.8244,1674399.237,15984.04227,21
+78483,728318.1604,1675505.664,15940.62099,21
+78484,725883.9104,1675088.519,15935.33979,21
+78485,723679.8945,1675133.504,15567.48204,21
+78486,721779.6973,1674713.179,15668.47598,21
+78487,719134.4786,1675258.546,15515.78184,21
+78488,717207.8453,1674694.434,15354.23201,21
+78489,714989.757,1675249.883,15256.74238,21
+78490,712814.0366,1677110.316,15106.28733,21
+78491,708423.1776,1691208.877,15055.69224,21
+78492,706216.0372,1687825.175,15051.19326,21
+78493,704845.7606,1687788.678,14585.42226,21
+78494,703119.7422,1687840.493,14838.26271,21
+78495,702692.8028,1687461.446,14530.86297,21
+78496,701031.2672,1688468.872,14491.2851,21
+78497,700288.4313,1688329.807,14221.22933,21
+78498,699007.5241,1688242.295,14310.32417,21
+78499,697863.3248,1687467.692,14081.14495,21
+78500,696801.5179,1688855.202,13893.57625,21
+78501,695731.8641,1688588.197,13919.4082,21
+78502,694954.772,1688409.649,13824.30527,21
+78503,692977.6004,1688166.771,13512.05132,21
+78504,692604.3567,1687766.659,13576.69341,21
+78505,691083.714,1688815.843,13314.48764,21
+78506,689623.4714,1687346.364,13294.19891,21
+78507,689099.7389,1688268.228,13149.54777,21
+78508,687368.5878,1690816.469,13022.58897,21
+78509,686628.606,1690697.896,12958.97619,21
+78510,685036.961,1691362.821,12727.97897,21
+78511,684003.2837,1690510.022,12685.4367,21
+78512,682798.7937,1690970.691,12546.49043,21
+78513,681891.3882,1690901.459,12410.46178,21
+78514,680584.1252,1690595.557,12367.37916,21
+78515,679379.6998,1690453.178,12134.0497,21
+78516,678241.7952,1690868.277,12065.407,21
+78517,677385.4745,1690868.327,12072.15597,21
+78518,676017.1558,1690921.196,11776.07604,21
+78519,674774.1989,1688493.268,11768.38034,21
+78520,673906.9569,1688822,11532.69553,21
+78521,672591.7758,1688560.084,11560.31782,21
+78522,672107.869,1689058.967,11347.77246,21
+78523,670271.179,1687365.123,11194.09218,21
+78524,669699.6491,1689499.56,11139.40901,21
+78525,668208.237,1687508.122,11128.09571,21
+78526,668199.8847,1688438.984,10757.71316,21
+78527,666356.4567,1688524.759,10833.11984,21
+78528,665438.2389,1688461.732,10666.47172,21
+78529,665162.5236,1687979.015,10560.82156,21
+78530,662962.5878,1688717.057,10391.89202,21
+78531,662621.345,1687478.801,10360.03858,21
+78532,662023.6031,1687942.503,10091.45861,21
+78533,660513.6486,1688687.915,10194.27652,21
+78534,659545.079,1687100.668,9913.348881,21
+78535,658468.4713,1687757.7,9781.49716,21
+78536,657765.9066,1688243.635,9858.380631,21
+78537,656240.0022,1687254.394,9588.972547,21
+78538,656012.9479,1688225.692,9567.657049,21
+78539,654609.5021,1687226.053,9544.953081,21
+78540,653560.6583,1687814.646,9275.405265,21
+78541,631183.0821,1645081.354,3736.759662,21
+78542,632115.1368,1642981.648,3340.724091,21
+78543,632620.4935,1641731.998,3327.10164,21
+78544,633456.2655,2067645.773,3313.451237,21
+78545,635031.3887,1639425.493,3189.801566,21
+78546,635526.3688,1637700.349,3162.148985,21
+78547,636485.4881,1636457.18,3037.948215,21
+78548,637671.1351,1634952.85,3010.175539,21
+78549,638318.054,1634145.318,2885.39903,21
+78550,639508.5938,1631630.187,2885.591463,21
+78551,640083.5752,1631601.193,2843.615436,21
+78552,641798.1183,1629367.213,2606.12756,21
+78553,641911.3043,1628689.776,2690.149504,21
+78554,643353.7719,1627122.202,2578.255183,21
+78555,643774.378,1626023.419,2295.745374,21
+78556,645158.2886,1624184.285,2395.007713,21
+78557,646091.0747,1622876.112,2281.807934,21
+78558,646806.0476,1623833.51,1981.822188,21
+78559,652225.9559,1622325.131,2111.018682,21
+78560,660240.1357,1620937.436,1823.395618,21
+78561,658732.7958,1619933.794,1678.123774,21
+78562,661958.1281,1618406.936,1531.678506,21
+78563,664104.4787,1617131.608,1502.899778,21
+78564,666052.9256,1615707.604,1205.504959,21
+78565,668570.0127,1614829.85,1068.475898,21
+78566,670476.4128,1611282.834,884.9307439,21
+78567,672208.4114,1610159.76,724.5785237,21
+78568,676492.9775,1608763.53,695.2808505,21
+78569,678723.289,1607728.238,680.589422,21
+78570,680974.9206,1606350.773,636.2951844,21
+78571,681870.2505,1605437.283,636.3046409,21
+78572,683047.3343,1603792.376,576.7597548,21
+78573,681958.0513,1603511.448,561.7889018,21
+78574,682174.0534,1601477.45,531.7258414,21
+78575,682967.3631,1601208.972,501.5058239,21
+78576,683622.3357,1599678.703,471.1217608,21
+78577,684416.4199,1598367.484,440.5656487,21
+78578,684748.4417,1597974.603,394.3867525,21
+78579,685388.39,1596746.259,378.8994299,21
+78580,686356.6461,2023528.507,332.118449,21
+78581,686545.9869,1594328.023,284.8283906,21
+78582,687186.8727,1593871.371,268.9420173,21
+78583,687891.2378,1592126.986,220.8637406,21
+78584,688075.8867,1591752.672,188.4250387,21
+78585,686840.9068,1590457.846,155.6262123,21
+78586,686870.6266,1589210.155,88.66097065,21
+78587,687163.3998,1588699.765,88.66114722,21
+78588,687455.5972,1587455.625,18.69830037,21
+78589,687992.4605,1586452.382,0,21
+78590,688322.441,1584963.973,0,21
+78591,688787.0976,1584426.053,0,21
+78592,689154.497,1582962.033,0,21
+78593,689386.1076,1582421.53,0,21
+78594,689481.8171,1580826.911,0,21
+78595,690084.2025,1579855.228,0,21
+78596,690009.7781,1578901.234,0,21
+78597,690432.4869,1578319.948,0,21
+78598,690846.5143,1576350.553,0,21
+78599,690741.5168,1574431.686,0,21
+78600,691087.2056,1572170.45,0,21
+78601,693964.2778,1575679.157,0,21
+78602,690198.6375,1578305.587,0,21
+78603,687284.6699,1578385.63,0,21
+78604,685120.9538,1578091.678,0,21
+78605,683258.8513,1578315.269,0,21
+78606,681187.0457,1577151.99,0,21
+78607,679894.9953,1577682.769,0,21
+78608,678306.979,1577247.399,0,21
+78609,677063.8505,1577256.71,0,21
+78610,675614.5181,1576588.106,0,21
+78611,674022.1108,1576983.421,0,21
+78612,672739.9344,1576283.225,0,21
+78613,670860.058,1576523.141,0,21
+78614,669583.3783,1576027.796,0,21
+78615,667600.5187,1575588.704,0,21
+78616,666496.4013,1576076.012,0,21
+78617,664655.4912,1575308.046,0,21
+78618,662915.6644,1575293.372,0,21
+78619,661519.424,1575269.895,0,21
+78620,660002.1093,1574653.086,0,21
+78621,657640.1685,1574683.322,0,21
+78622,657045.0767,1574558.983,0,21
+78623,654653.6074,1574260.62,0,21
+78624,652945.513,1574065.182,0,21
+78625,651371.4965,1573632.707,0,21
+78626,649148.0701,1573751.435,0,21
+78627,647487.0518,1573836.156,0,21
+78628,644387.9784,1573208.685,0,21
+78629,643300.4508,1573006.988,0,21
+78630,641327.6403,1573061.013,0,21
+78631,639593.6514,1572627.201,0,21
+78632,638174.4486,1572443.069,0,21
+78633,636619.0612,1572089.318,0,21
+78634,634593.0268,1571434.648,0,21
+78635,633181.8426,1571969.673,0,21
+78636,631665.8358,1570553.855,0,21
+78637,629809.5804,1571427.544,0,21
+78638,628346.5869,1570053.471,0,21
+78639,626535.1994,1570067.786,0,21
+78640,625153.172,1569965.875,0,21
+78641,623375.8055,1569476.577,0,21
+78642,621834.401,1569099.164,0,21
+78643,620353.3569,1568976.03,0,21
+78644,618592.7309,1568011.515,0,21
+78645,616726.5636,1568588.36,0,21
+78646,615190.2952,1995294.736,0,21
+78647,613675.0836,1567828.983,0,21
+78648,611926.8063,1566832.243,0,21
+78649,610212.3768,1566674.454,0,21
+78650,608679.7339,1566422.287,0,21
+78651,607114.402,1565790.878,0,21
+78652,605835.4945,1565730.776,0,21
+78653,603618.4634,1565408.258,0,21
+78654,601881.8213,1565098.892,0,21
+78655,600853.2212,1564450.656,0,21
+78656,598693.5752,1564208.318,0,21
+78657,597145.2397,1563962.532,0,21
+78658,595705.6559,1563592.38,0,21
+78659,593742.7401,1563010.426,0,21
+78660,592352.2784,1563107.345,0,21
+78661,585891.8041,1558309.952,0,21
+78662,585182.7123,1557935.628,0,21
+78663,583822.7282,1558279.9,0,21
+78664,582573.105,1557234.738,0,21
+78665,581534.5388,1557121.717,0,21
+78666,580267.3391,1556801.135,0,21
+78667,579835.2787,1556933.628,0,21
+78668,578341.736,1556062.124,0,21
+78669,577391.8699,1556152.089,0,21
+78670,576207.0757,1555902.111,0,21
+78671,575364.0799,1555072.307,0,21
+78672,574362.1523,1555563.721,0,21
+78673,573246.0536,1554839.096,0,21
+78674,572142.985,1554184.446,0,21
+78675,571094.9161,1554422.952,0,21
+78676,570026.0916,1553980.11,0,21
+78677,569028.2226,1553541.045,0,21
+78678,568278.664,1553424.256,0,21
+78679,566575.2107,1553186.707,0,21
+78680,566354.3283,1552604.523,0,21
+78681,564571.7257,1552809.936,0,21
+78682,564656.7905,1549653.055,0,21
+78683,562679.2432,1549446.164,0,21
+78684,562165.1838,1548869.605,0,21
+78685,561392.7466,1548672.229,0,21
+78686,560378.5759,1548148.111,0,21
+78687,559723.0117,1547760.936,0,21
+78688,558541.2153,1547892.678,0,21
+78689,557850.704,1546984.955,0,21
+78690,556969.8808,1546863.229,0,21
+78691,556436.1752,1546739.744,0,21
+78692,555874.2393,1546249.883,0,21
+78693,554871.706,1546317.027,0,21
+78694,554511.8178,1547056.528,0,21
+78695,553393.6994,1545788.857,0,21
+78696,553473.5871,1546799.964,0,21
+78697,552282.7016,1546279.35,0,21
+78698,551614.0049,1546538.402,0,21
+78699,551437.3827,1546092.754,0,21
+78700,550334.7651,1546964.442,0,21
+78701,550181.1666,1545767.569,0,21
+78702,549587.2073,1547163.665,0,21
+78703,548990.9992,1546244.375,0,21
+78704,547826.3956,1546773.512,0,21
+78705,547790.4346,1546836.061,0,21
+78706,547001.3602,1546767.86,0,21
+78707,546568.1157,1547085.02,0,21
+78708,545485.6844,1546891.081,0,21
+78709,545714.8927,1547368.033,0,21
+78710,544643.0099,1546694.59,0,21
+78711,544196.2982,1547870.845,0,21
+78712,544058.6945,1547510.15,0,21
+78713,542977.0646,1547563.213,0,21
+78714,542756.3753,1547882.173,0,21
+78715,541769.8568,1548255.95,0,21
+78716,541791.6737,1547750.797,0,21
+78717,540709.1568,1548364.416,0,21
+78718,540640.825,1548777.819,0,21
+78719,539821.3988,1548575.682,0,21
+78720,539391.8744,1550154.214,0,21
+78721,540044.448,1551368.738,0,21
+78722,541361.1059,1553061.368,0,21
+78723,541542.8904,1552874.085,0,21
+78724,542368.1448,1554637.051,0,21
+78725,543051.6161,1555620.603,0,21
+78726,543798.7922,1556582.891,0,21
+78727,544816.4652,1557349.446,0,21
+78728,545860.0879,1559087.815,0,21
+78729,546470.0067,1559550.433,0,21
+78730,547248.4822,1560485.007,0,21
+78731,548512.8027,1561969.04,0,21
+78732,548970.9617,1562947.457,0,21
+78733,550049.1361,1563801.007,0,21
+78734,550765.2178,1565212.841,0,21
+78735,551519.3766,1565663.61,0,21
+78736,552519.4782,1567580.385,0,21
+78737,553299.7571,1568295.647,0,21
+78738,554049.0688,1569353.722,0,21
+78739,555413.2664,1570141.334,0,21
+78740,555507.8275,1571624.491,0,21
+78741,557112.809,1572376.443,0,21
+78742,557893.1287,1573966.881,0,21
+78743,558555.0843,1574554.683,0,21
+78744,559403.6202,1576227.619,0,21
+78745,560318.0955,1576754.139,0,21
+78746,561255.1956,1578109.536,0,21
+78747,561961.6683,1579302.973,0,21
+78748,563267.777,1580480.713,0,21
+78749,563931.8603,1581364.64,0,21
+78750,564609.5188,1582683.111,0,21
+78751,566204.4453,1583496.19,0,21
+78752,567355.8951,1584656.789,0,21
+78753,568592.1053,1585027.223,0,21
+78754,569820.8893,1585423.562,0,21
+78755,570826.3934,1586561.654,0,21
+78756,572416.2423,1587163.588,0,21
+78757,573430.6992,1587504.638,0,21
+78758,574927.6883,1588949.761,0,21
+78759,576467.8891,1589361.622,0,21
+78760,577397.4829,1589156.64,0,21
+78761,579156.4305,1591040.22,0,21
+78762,579786.9094,1590694.587,0,21
+78763,582170.204,1591823.292,0,21
+78764,582844.1211,1592804.733,0,21
+78765,584130.7214,1592577.934,0,21
+78766,587903.1765,1594153.188,0,21
+78767,594082.1223,1594042.199,0,21
+78768,593272.0806,1594827.258,0,21
+78769,596350.2848,1595441.771,0,21
+78770,598801.5269,1595709.446,0,21
+78771,601041.826,1597164.123,0,21
+78772,602894.1154,1596985.48,0,21
+78773,605442.1656,1597455.69,0,21
+78774,607892.5947,1598737.285,0,21
+78775,609952.3191,1598743.473,0,21
+78776,612027.7706,1599163.94,0,21
+78777,616002.1618,1600503.651,0,21
+78778,619018.8963,1600078.568,0,21
+78779,620857.4953,1601338.545,0,21
+78780,623620.746,2029730.989,0,21
+78781,680141.7378,1683921.113,0,21
+78782,685044.5247,1691379.805,0,21
+78783,687921.8543,1695777.462,0,21
+78784,690795.2815,1698499.647,0,21
+78785,693001.9525,1702651.581,0,21
+78786,695657.5806,1705500.777,0,21
+78787,698065.253,1709267.721,0,21
+78788,701174.5344,1712122.829,0,21
+78789,703033.24,1716198.478,0,21
+78790,706151.0917,1718218.735,0,21
+78791,708402.4105,1722637.098,0,21
+78792,717217.154,1724737.268,0,21
+78793,717578.4258,1761559.63,0,21
+78794,720742.89,1765313.713,0,21
+78795,723330.3932,1763070.586,0,21
+78796,725478.5328,1769303.864,0,21
+78797,728484.5467,1774348.664,0,21
+78798,732305.5144,1777690.133,0,21
+78799,735035.1457,1782366.261,0,21
+78800,737808.1085,1785589.624,0,21
+78801,739931.3391,1788412.061,0,21
+78802,742611.0687,1793337.256,0,21
+78803,744634.6067,1795738.072,0,21
+78804,747805.4346,1799565.282,0,21
+78805,749933.7946,1802873.108,0,21
+78806,752146.7621,1805927.072,0,21
+78807,756040.7034,1809258.212,0,21
+78808,758656.5375,1812932.26,0,21
+78809,761012.594,1816039.748,0,21
+78810,763683.1216,1819293.646,0,21
+78811,765403.7552,1820307.124,0,21
+78812,767237.5756,1824603.471,0,21
+78813,770222.8492,1826694.461,0,21
+78814,771580.2002,1829754.188,0,21
+78815,773485.9742,1833523.592,0,21
+78816,775766.1154,1834854.716,0,21
+78817,776853.083,1839863.498,0,21
+78818,778849.2626,1840586.289,0,21
+78819,780896.2383,1845722.719,0,21
+78820,785941.4849,1847179.052,0,21
+78821,789230.3401,1850642.755,0,21
+78822,790516.8621,1853823.299,0,21
+78823,792853.6717,1855308.159,0,21
+78824,794291.251,1859857.229,0,21
+78825,796541.1663,1860254.316,0,21
+78826,798019.6634,1864727.703,0,21
+78827,799362.3668,1867572.75,0,21
+78828,802164.1414,1869584.617,0,21
+78829,802372.7097,1872236.312,0,21
+78830,804910.9544,1876317.486,0,21
+78831,806449.3137,1877455.328,0,21
+78832,809769.716,1880608.647,0,21
+78833,812114.349,1883553.828,0,21
+78834,813195.537,1886565.638,0,21
+78835,815138.6282,1887791.998,0,21
+78836,816385.7679,1891283.793,0,21
+78837,818188.0721,1894098.183,72.71311453,21
+78838,819334.2719,1896089.444,216.1447131,21
+78839,820628.7545,1898208.1,158.1171083,21
+78840,822284.4437,1902358.762,207.9259169,21
+78841,845504.9153,1964990.978,630.356469,21
+78842,848500.5031,1973391.478,6210.884083,21
+78843,850299.6544,1972176.842,7449.106392,21
+78844,907096.8369,1976643.569,6479.083818,21
+78845,884244.6864,1977442.412,7226.201206,21
+78846,891189.7577,1979243.97,7832.575553,21
+78847,894316.5748,1980414.054,13624.13762,21
+78848,898884.6803,1982485.464,12958.17849,21
+78849,899650.0692,1983239.484,13235.68012,21
+78850,902822.8161,1985857.258,14634.22198,21
+78851,904568.862,1986360.062,15089.49978,21
+78852,907814.0097,1987722.306,15879.89574,21
+78853,910130.6981,1989932.539,16687.95512,21
+78854,911763.4713,1989564.681,17218.07426,21
+78855,914890.3788,1995306.926,18021.20767,21
+78856,916127.2024,1992676.914,18594.78772,21
+78857,919533.9993,1997946.143,19337.92528,21
+78858,919811.7785,1996380.067,19916.31886,21
+78859,924083.1584,1998218.706,20699.11817,21
+78860,924945.8852,1998996.252,21258.17606,21
+78861,926486.7253,2001834.412,21921.63226,21
+78862,929382.6017,2001120.515,22654.02276,21
+78863,931609.1535,2002989.022,23152.89781,21
+78864,931644.4218,2004539.441,23901.19963,21
+78865,936388.2875,2004351.204,25891.29882,21
+78866,936145.8763,2006955.852,26681.25413,21
+78867,938681.2489,2006411.304,27307.90256,21
+78868,940442.8771,2008302.273,27956.05057,21
+78869,942205.6137,2009146.663,28448.31967,21
+78870,944139.3549,2009709.084,29451.37038,21
+78871,947261.358,2011309.239,29742.49034,21
+78872,947531.5543,2012309.932,30454.18949,21
+78873,949207.1971,2012383.68,31225.33621,21
+78874,951867.6353,2013966.872,31476.89773,21
+78875,952607.7499,2014699.825,32478.82986,21
+78876,955312.6971,2015577.53,32716.73702,21
+78877,956017.529,2016245.232,33571.25549,21
+78878,957908.6311,2018046.065,33968.926,21
+78879,959769.7188,2017469.591,34709.6848,21
+78880,962141.5254,2020052.29,35232.35271,21
+78881,961973.2248,2018549.06,35814.14695,21
+78882,965182.1702,2021308.725,36303.48834,21
+78883,965868.6714,2021082.091,36944.33116,21
+78884,967535.5527,2022619.958,37467.14157,21
+78885,969066.6631,2023499.111,38048.35904,21
+78886,971495.5957,2021450.29,38616.39821,21
+78887,971472.5552,2022846.379,39067.67635,21
+78888,974281.5216,2024588.256,39929.386,21
+78889,975350.2578,2024323.137,39963.83708,21
+78890,977008.0134,2025200.79,41046.22942,21
+78891,978479.9082,2026194.049,41244.84146,21
+78892,979182.5657,2026606.297,41852.73399,21
+78893,980743.9707,2027491.006,42525.12422,21
+78894,983608.5088,2028047.108,42939.15023,21
+78895,983218.552,2028613.531,43469.94608,21
+78896,985966.806,2029146.392,44104.09009,21
+78897,985932.7316,2031003.016,44557.78644,21
+78898,988993.4681,2031041.139,45050.9606,21
+78899,989224.8453,2031431.347,45601.15066,21
+78900,991548.137,2032067.718,46160.02823,21
+78901,991419.4287,2033970.505,46550.6491,21
+78902,992528.4305,2034683.555,47231.41438,21
+78903,993278.6684,2036357.934,47276.66274,21
+78904,992329.0274,2036922.345,48342.78261,21
+78905,994043.0789,2038634.425,48345.02981,21
+78906,992917.5609,2038477.274,48866.71467,21
+78907,994931.0836,2040682.777,49689.45706,21
+78908,993977.1948,2041717.123,49553.292,21
+78909,994752.5901,2041896.339,50568.13098,21
+78910,994605.246,2042793.972,50715.82643,21
+78911,994521.3483,2045006.829,51302.35801,21
+78912,996751.7036,2043963.341,51750.48948,21
+78913,995350.253,2047044.951,52091.00442,21
+78914,994409.2299,2047810.419,52653.34593,21
+78915,997632.629,2046650.579,53154.73652,21
+78916,995533.1502,2051045.909,53240.69861,21
+78917,995845.6962,2048881.85,54073.30494,21
+78918,996995.8442,2051465.21,54512.11504,21
+78919,996894.5001,2052275.759,54810.42053,21
+78920,997044.0755,2053437.993,55360.88703,21
+78921,997183.6308,2054318.692,55818.74498,21
+78922,997704.4499,2053894.009,56398.11961,21
+78923,997245.1977,2056463.948,57217.0188,21
+78924,997803.3855,2057023.217,57564.78866,21
+78925,997622.2171,2057653.117,57961.15518,21
+78926,998354.3839,2058075.333,58686.70732,21
+78927,997777.269,2060912.616,58842.96831,21
+78928,997521.2371,2059703.823,59746.66999,21
+78929,998597.9565,2062333.015,60120.86411,21
+78930,998542.2766,2061713.814,60426.13599,21
+78931,998310.1306,2063966.119,61131.75932,21
+78932,999178.0771,2064216.887,61574.74237,21
+78933,998111.4477,2065357.977,62168.55303,21
+78934,998871.8879,2066127.253,62376.53946,21
+78935,998158.7302,2067271.44,63121.6141,21
+78936,999097.3949,2068152.015,63613.55132,21
+78937,998763.1356,2068781.667,63975.86436,21
+78938,999290.0602,2070029.761,64547.25154,21
+78939,998419.7254,2070859.248,64999.44432,21
+78940,999044.4333,2072000.083,65572.88839,21
+78941,999874.3162,2072058.924,65712.8235,21
+78942,998772.5286,2073907.878,66675.72708,21
+78943,999204.9656,2073454.436,66911.43909,21
+78944,999008.669,2076078.604,67211.69927,21
+78945,999855.5631,2075133.995,67988.3601,21
+78946,998351.8099,2077633.457,68405.21236,21
+78947,999194.6365,2077952.95,69053.18124,21
+78948,998785.8373,2079384.147,69102.07572,21
+78949,1000124.087,2078442.324,70002.98532,21
+78950,998414.8771,2081122.323,70113.08785,21
+78951,1000173.232,2081455.791,71032.58538,21
+78952,997607.7572,2082253.362,71003.50502,21
+78953,999935.18,2083231.601,71750.07465,21
+78954,998700.6946,2083620.182,72267.74106,21
+78955,999318.6357,2085853.152,72590.06696,21
+78956,998284.6802,2084450.579,73609.44053,21
+78957,999899.1381,2088076.098,76618.96119,21
+78958,997670.4562,2085861.033,75891.50468,21
+78959,999931.7732,2089215.01,77270.78794,21
+78960,998055.1982,2088524.993,78007.07837,21
+78961,1008320.388,2099269.284,81374.02027,21
+78962,1009473.626,2101406.441,82697.89667,21
+78963,1011944.485,2101815.864,83919.67714,21
+78964,1011854.428,2103861.441,84217.25887,21
+78965,1014887.618,2104270.804,85743.16151,21
+78966,1014550.645,2106685.099,86301.7693,21
+78967,1016049.987,2107404.603,87296.40703,21
+78968,1018456.949,2107997.111,88168.97647,21
+78969,1017748.225,2109180.297,89020.89394,21
+78970,1020047.196,2111858.861,90154.92261,21
+78971,1020962.818,2111143.212,90621.48239,21
+78972,1021809.033,2112287.438,91542.23793,21
+78973,1023715.093,2114945.646,92875.95923,21
+78974,1024402.437,2114753.984,93060.66317,21
+78975,1025411.543,2116230.977,94306.07652,21
+78976,1026607.081,2116952.773,95119.7252,21
+78977,1027679.475,2117695.975,95746.88833,21
+78978,1028362.217,2119847.474,96726.32456,21
+78979,1030387.45,2119657.851,97886.83039,21
+78980,1030629.638,2122088.88,98144.30664,21
+78981,1031847.347,2122286.716,99439.65349,21
+78982,1033589.997,2123647.156,99774.72578,21
+78983,1034439.599,2124135.324,101104.8258,21
+78984,1034807.322,2125342.103,101733.0155,21
+78985,1036589.61,2127062.793,102323.1743,21
+78986,1037545.635,2127176.21,103409.229,21
+78987,1037253.888,2128992.204,104282.5519,21
+78988,1039831.786,2129789.283,104912.2757,21
+78989,1040620.529,2130336.085,105923.8794,21
+78990,1041468.411,2131461.877,106408.7601,21
+78991,1041757.51,2133238.999,238157.6622,21
+78992,1043420.426,2132703.424,237006.8289,21
+78993,1045235.784,2133984.558,235365.9885,21
+78994,1044092.872,2136521.712,234491.417,21
+78995,1047434.407,2136412.161,233275.8422,21
+78996,1047642.823,2137652.56,231749.624,21
+78997,1047395.586,2137350.048,231413.543,21
+78998,1050522.578,2141575.774,229715.3991,21
+78999,1050070.667,2139447.498,229031.927,21
+79000,1051019.667,2141560.86,227776.917,21
+79001,1052968.512,2144021.921,226758.7458,21
+79002,1052916.995,2142778.286,225808.4322,21
+79003,1054612.664,2144635.602,225021.1573,21
+79004,1055645.207,2146495.502,224343.9471,21
+79005,1055417.685,2145157.781,223334.9651,21
+79006,1057734.357,2148507.238,222598.5879,21
+79007,1057789.228,2147868.887,221993.1613,21
+79008,1059158.02,2149530.185,220757.0522,21
+79009,1060304.445,2150793.888,220604.9853,21
+79010,1060922.325,2151371.385,219269.1542,21
+79011,1062211.243,2152344.944,219154.6977,21
+79012,1062353.095,2154051.603,218230.6858,21
+79013,1063842.243,2153561.558,217327.0487,21
+79014,1065389.864,2155998.627,217177.0006,21
+79015,1065803.23,2155868.209,216543.6638,21
+79016,1066477.666,2157858.064,215832.0373,21
+79017,1068284.374,2157817.78,215190.3799,21
+79018,1067764.034,2159277.554,215226.9666,21
+79019,1070817.742,2159314.282,214948.0664,21
+79020,1071325.144,2162141.184,214158.9163,21
+79021,1074266.869,2160907.446,214170.7842,21
+79022,1074893.571,2163864.307,213944.3383,21
+79023,1076134.229,2165818.63,213893.3243,21
+79024,1076706.121,2164707.379,213418.6905,21
+79025,1077380.495,2167842.074,213373.0319,21
+79026,1077735.081,2167402.335,213605.6602,21
+79027,1080044.883,2167666.394,212909.7904,21
+79028,1078670.188,2169709.262,213173.5223,21
+79029,1080660.098,2169049.696,212923.8837,21
+79030,1081079.225,2171559.929,212897.6722,21
+79031,1081658.096,2172031.548,213106.7364,21
+79032,1082949.265,2172307.049,212478.6277,21
+79033,1082233.35,2173340.986,212999.2414,21
+79034,1084200.377,2174403.061,212839.1503,21
+79035,1084384.133,2175054.295,213194.2671,21
+79036,1084551.751,2176723.154,212861.5822,21
+79037,1086566.567,2176151.81,213283.7133,21
+79038,1086073.423,2178607.973,212930.4233,21
+79039,1087802.584,2177496.032,213444.2415,21
+79040,1086953.498,2180036.292,213506.2745,21
+79041,1088962.677,2180263.433,213284.6792,21
+79042,1088857.542,2180083.559,213786.9019,21
+79043,1090054.834,2182888.718,213966.2007,21
+79044,1090446.652,2181887.215,213995.0396,21
+79045,1090883.827,2183850.439,214355.6938,21
+79046,1091816.292,2183830.154,214240.4349,21
+79047,1092672.337,2185521.979,214795.4585,21
+79048,1092344.889,2185774.464,214804.3652,21
+79049,1094935.757,2187686.697,215280.176,21
+79050,1093278.721,2186541.021,215331.0021,21
+79051,1095698.136,2188833.369,215930.274,21
+79052,1094992.294,2189724.053,215865.6121,21
+79053,1096566.466,2188863.405,216427.9129,21
+79054,1097070.246,2191502.835,216938.7054,21
+79055,1097571.324,2191586.049,216890.1244,21
+79056,1097611.775,2192614.766,217409.9053,21
+79057,1098628.996,2192931.714,217664.0656,21
+79058,1099694.272,2193778.902,218334.0079,21
+79059,1098959.768,2196534.359,218493.7574,21
+79060,1101755.52,2193753.726,218942.8187,21
+79061,1100351.306,2197633.904,219043.6231,21
+79062,1102287.48,2197024.439,220014.7942,21
+79063,1102789.877,2198473.061,220231.3519,21
+79064,1102902.852,2198045.676,220463.5955,21
+79065,1103358.103,2200637.174,221096.9062,21
+79066,1104474.096,2200537.243,221793.976,21
+79067,1104873.612,2200436.974,223976.5403,21
+79068,1105162.725,2202883.594,224563.3663,21
+79069,1106042.36,2202890.682,226521.8814,21
+79070,1107415.536,2203760.037,228548.2715,21
+79071,1106253.825,2204829.208,229683.3967,21
+79072,1108821.522,2204561.305,231276.0414,21
+79073,1108061.12,2205309.112,233289.2084,21
+79074,1108830.439,2208639.175,234623.9073,21
+79075,1110007.327,2206606.338,236679.1899,21
+79076,1110597.152,2207785.591,238657.9377,21
+79077,1109903.43,2209694.456,239991.6223,21
+79078,1112298.373,2209904.795,242142.2153,21
+79079,1111669.857,2210774.303,243754.6894,21
+79080,1112496.68,2211705.954,245996.5274,15.6
+79081,0,0,0,15.6
+79082,0,0,0,15.6
+79083,0,482.0654266,0,15.6
+79084,0,0,0,15.6
+79085,0,0,1503738.649,15.6
+79086,0,0,0,15.6
+79087,0,0,0,15.6
+79088,0,0,0,15.6
+79089,0,0,0,15.6
+79090,0,0,0,15.6
+79091,0,0,0,15.6
+79092,0,72638.51243,0,15.6
+79093,0,7378.237258,0,15.6
+79094,0,23935.56497,0,15.6
+79095,339424.6665,29456.09941,0,15.6
+79096,0,26264.04125,0,15.6
+79097,0,26850.60251,0,15.6
+79098,0,27277.61046,0,15.6
+79099,0,27662.9321,0,15.6
+79100,0,496514.2924,0,15.6
+79101,0,48764.25175,0,15.6
+79102,0,156129.066,0,15.6
+79103,0,219619.9323,0,15.6
+79104,0,181710.7561,0,15.6
+79105,0,190930.7501,0,15.6
+79106,0,194206.204,0,15.6
+79107,0,196608.2832,89659.27382,15.6
+79108,0,199528.8785,0,15.6
+79109,0,201592.29,0,15.6
+79110,0,204808.9854,0,15.6
+79111,0,207014.3652,86842.35943,15.6
+79112,0,210015.1352,677594.4061,15.6
+79113,0,211447.9916,15707.57611,15.6
+79114,0,214461.4178,242243.2684,15.6
+79115,0,216894.6474,439.3786215,15.6
+79116,0,218552.1216,188902.0958,15.6
+79117,0,221488.5756,101588.9813,15.6
+79118,0,223104.9132,73293.19201,15.6
+79119,0,225585.269,849322.0243,15.6
+79120,0,227389.8503,80001.57403,15.6
+79121,0,229894.0154,77655.56265,15.6
+79122,0,198236.6719,76017.46194,15.6
+79123,0,200776.3712,74586.00399,15.6
+79124,0,299202.5677,73229.98573,15.6
+79125,0,219700.1245,71914.6794,15.6
+79126,0,234390.1654,70630.38133,15.6
+79127,35957.87477,246623.4822,69374.0638,15.6
+79128,2573.980922,242764.4662,68144.5018,15.6
+79129,4777.467545,245327.3137,0,15.6
+79130,12559.55352,34629.66247,0,15.6
+79131,11506.53258,34871.74624,0,15.6
+79132,10440.83676,34954.78506,0,15.6
+79133,350521.1464,757724.7399,0,15.6
+79134,11257.50668,104182.6412,65718.95801,15.6
+79135,11474.72221,178971.6164,0,15.6
+79136,11674.60647,322540.0478,0,15.6
+79137,11839.5731,249403.3097,0,15.6
+79138,11979.87733,260529.1537,0,15.6
+79139,12195.30201,262524.3875,0,15.6
+79140,12364.10277,265049.4735,0,15.6
+79141,12683.21903,269223.3269,0,15.6
+79142,12881.46595,270795.4326,64413.11251,15.6
+79143,13151.80538,272515.0238,0,15.6
+79144,13298.85371,275169.229,0,15.6
+79145,13516.97458,276785.3776,0,15.6
+79146,13729.11536,278953.3233,0,15.6
+79147,13896.06467,280623.8229,0,15.6
+79148,14127.84905,282758.0663,0,15.6
+79149,14289.13459,284555.6564,63267.75724,15.6
+79150,14517.57025,286341.909,62268.57386,15.6
+79151,14648.5954,288469.1943,61204.21474,15.6
+79152,14901.81361,289969.5333,60161.0097,15.6
+79153,15037.18496,292011.8355,59253.46902,15.6
+79154,15272.07958,254467.1341,712278.0377,15.6
+79155,15389.41056,256074.063,57633.97455,15.6
+79156,15649.77073,368809.5099,56682.16419,15.6
+79157,0,284402.9263,55831.32661,15.6
+79158,0,295163.972,54810.54822,15.6
+79159,0,306899.37,53940.97601,15.6
+79160,0,304487.6676,53045.24367,15.6
+79161,64943.15086,306383.7523,52168.98219,15.6
+79162,1094.399937,307293.8624,51693.80364,15.6
+79163,9008.799713,41113.83937,50227.05181,15.6
+79164,24157.57464,41282.2735,49741.06258,15.6
+79165,16013.57693,804361.4155,48745.37567,15.6
+79166,17423.87483,142703.7384,46038.23927,15.6
+79167,17614.6899,298757.1967,49241.27214,15.6
+79168,17769.64087,348069.3328,45748.08773,15.6
+79169,17929.5573,317751.2987,569707.0552,15.6
+79170,18091.2336,321935.9752,9258.957014,15.6
+79171,357664.2141,323423.799,135847.7553,15.6
+79172,18387.44086,325229.5163,509.6277505,15.6
+79173,18559.26193,326303.1788,105808.1031,15.6
+79174,18748.01296,328329.409,57295.59181,15.6
+79175,18865.55198,329590.9181,41079.86951,15.6
+79176,18995.25873,330952.9911,48585.58253,15.6
+79177,19219.72474,332635.398,45627.87395,15.6
+79178,19305.95875,333581.7325,0,15.6
+79179,19462.72115,335748.9502,0,15.6
+79180,19628.2811,336485.7324,0,15.6
+79181,19804.35041,338188.6736,0,15.6
+79182,19891.65708,340256.9979,0,15.6
+79183,20061.73497,340551.6971,0,15.6
+79184,20247.63765,343040.0509,0,15.6
+79185,20324.17626,343519.0705,0,15.6
+79186,20511.77234,300876.1275,0,15.6
+79187,20620.46469,301653.2326,0,15.6
+79188,20807.09085,417218.5407,0,15.6
+79189,20927.08152,340915.2587,619529.5335,15.6
+79190,21075.17367,351987.5386,0,15.6
+79191,0,351046.3631,43851.48712,15.6
+79192,0,356300.8507,0,15.6
+79193,0,354688.4227,0,15.6
+79194,75704.00453,356724.4345,0,15.6
+79195,7323.817331,46197.75858,0,15.6
+79196,14181.01555,46403.55214,0,15.6
+79197,28362.50077,938806.7935,0,15.6
+79198,21318.07156,218095.9863,0,15.6
+79199,22366.27247,302204.0403,0,15.6
+79200,22484.52892,414457.2155,43114.35765,15.6
+79201,23279.9255,369185.7796,0,15.6
+79202,23388.9384,375479.9903,0,15.6
+79203,23561.86242,378276.8425,0,15.6
+79204,349159.7021,379037.3134,0,15.6
+79205,57259.08445,381544.7671,42662.13433,15.6
+79206,59028.30459,382936.5476,0,15.6
+79207,151692.0782,384808.4335,0,15.6
+79208,120212.6653,386267.6015,0,15.6
+79209,458297.8685,388302.4861,0,15.6
+79210,122933.2731,390128.7691,0,15.6
+79211,124023.6045,391240.6141,0,15.6
+79212,125273.4687,393592.6327,559812.4332,15.6
+79213,126473.9222,394755.9177,0,15.6
+79214,128167.3963,397189.2941,0,15.6
+79215,128812.5381,398218.3669,0,15.6
+79216,130411.5282,400119.6596,103272.7444,15.6
+79217,131342.3571,401509.0384,55945.12676,15.6
+79218,133110.2224,352544.4679,59338.58321,15.6
+79219,134190.9822,354082.6693,252.5840344,15.6
+79220,135191.1254,469693.0011,99348.25417,15.6
+79221,136701.356,416509.48,46187.02991,15.6
+79222,138004.3071,403726.0952,39369.83764,15.6
+79223,139040.6626,417034.0538,42885.49668,15.6
+79224,114463.4078,412355.2066,599477.5638,15.6
+79225,115358.8893,416159.0722,41804.72258,15.6
+79226,116794.865,441496.7623,40971.38714,15.6
+79227,201932.9762,53790.70093,40224.4261,15.6
+79228,143465.7952,57286.97606,0,15.6
+79229,131376.578,1103619.584,0,15.6
+79230,156133.8402,249817.2936,0,15.6
+79231,148554.8883,434882.1765,0,15.6
+79232,150401.6801,448235.3903,38801.23718,15.6
+79233,151555.6373,443056.3488,0,15.6
+79234,27195.01023,439085.695,0,15.6
+79235,27287.54324,439660.575,0,15.6
+79236,27389.00583,441890.6651,0,15.6
+79237,27462.85631,443378.2424,0,15.6
+79238,27647.26027,444595.6278,0,15.6
+79239,560543.4323,446927.9158,550075.6172,15.6
+79240,29560.3303,447764.4589,0,15.6
+79241,94347.37387,448352.3176,0,15.6
+79242,224223.1127,449248.0512,0,15.6
+79243,153342.8449,451739.0383,0,15.6
+79244,165291.7113,452371.7702,0,15.6
+79245,166635.012,454608.7514,0,15.6
+79246,167568.9705,456120.144,0,15.6
+79247,507934.444,457743.1149,0,15.6
+79248,169888.0721,459072.6281,0,15.6
+79249,170565.0923,461088.8908,0,15.6
+79250,171901.235,406824.449,0,15.6
+79251,172864.1346,407336.7993,0,15.6
+79252,173715.1161,522855.359,0,15.6
+79253,174975.0767,490086.5538,0,15.6
+79254,176336.2051,452716.5096,0,15.6
+79255,176592.3763,483640.6636,0,15.6
+79256,178487.8205,462615.4682,44032.81977,15.6
+79257,149292.901,463918.681,43249.99356,15.6
+79258,150702.5498,467080.4994,42502.11125,15.6
+79259,232981.5473,58191.45086,610096.8814,15.6
+79260,174966.2238,58219.1106,42881.29535,15.6
+79261,174402.3261,1142342.44,42642.54981,15.6
+79262,188319.0489,297757.2981,41955.44097,15.6
+79263,183545.8622,595025.5316,41520.24107,15.6
+79264,184483.3519,424947.9441,41045.65435,15.6
+79265,185111.7279,490392.6517,40585.88458,15.6
+79266,185440.3674,481829.7857,40136.43033,15.6
+79267,186030.0527,473077.5618,39696.93093,15.6
+79268,186399.7419,471090.5593,39267.85703,15.6
+79269,30285.07877,471849.1117,38847.72835,15.6
+79270,30230.33512,469946.6326,38437.81678,15.6
+79271,30387.27088,468661.1398,38036.62379,15.6
+79272,30339.75128,467763.8388,37648.65541,15.6
+79273,661538.0562,466064.8062,37261.75972,15.6
+79274,68730.22377,465239.9671,36997.97453,15.6
+79275,85669.93208,463820.6409,36503.49991,15.6
+79276,269194.805,462853.3555,36180.67752,15.6
+79277,179579.7014,462160.4981,35828.45177,15.6
+79278,191991.9324,459491.3116,35494.54399,15.6
+79279,193449.5978,460239.6559,35537.96171,15.6
+79280,193471.8441,457849.0982,34724.9005,15.6
+79281,194178.3111,457046.5485,34622.22078,15.6
+79282,194481.8476,400082.0956,34227.9031,15.6
+79283,194807.5765,399150.7544,33961.74927,15.6
+79284,195052.4718,514035.7491,0,15.6
+79285,535098.5856,471865.8435,0,15.6
+79286,195847.5624,436808.7516,0,15.6
+79287,196493.4955,463287.9082,0,15.6
+79288,196561.629,445568.1484,0,15.6
+79289,166358.1141,449288.1754,0,15.6
+79290,166391.0716,448862.3218,0,15.6
+79291,250252.0577,64589.55479,0,15.6
+79292,194426.4883,64160.83928,28873.78258,15.6
+79293,188101.3754,1130546.357,0,15.6
+79294,204708.5393,256770.9822,530557.9354,15.6
+79295,199223.1649,449087.2161,0,15.6
+79296,200156.257,436293.646,0,15.6
+79297,200021.3659,441610.0358,0,15.6
+79298,201159.0429,431225.6098,0,15.6
+79299,200898.2885,429194.9224,30846.78839,15.6
+79300,201431.6941,468660.8514,0,15.6
+79301,201851.4357,427021.1136,0,15.6
+79302,202448.0242,426177.7466,0,15.6
+79303,31531.54841,440924.7255,0,15.6
+79304,31619.84676,431194.8498,0,15.6
+79305,31602.01481,431297.5368,0,15.6
+79306,31670.28698,430561.4911,0,15.6
+79307,702378.5867,429255.2962,0,15.6
+79308,97188.65155,428035.8581,0,15.6
+79309,96302.85107,425978.1056,0,15.6
+79310,283424.5866,425821.3568,0,15.6
+79311,194800.8266,424191.2418,30370.9637,15.6
+79312,205881.2247,423044.2579,33606.16549,15.6
+79313,206416.0103,421574.4964,36956.64318,15.6
+79314,207029.992,369118.1512,36724.41176,15.6
+79315,207386.3972,367671.7649,36545.73408,15.6
+79316,207035.0909,482283.3064,36755.51915,15.6
+79317,208123.2305,426929.4954,36140.47589,15.6
+79318,207704.974,409314.3881,36193.64181,15.6
+79319,208595.2622,419278.8247,35984.89649,15.6
+79320,208278.5806,412061.9597,35889.15629,15.6
+79321,177369.8776,413787.2119,35538.13296,15.6
+79322,177002.1042,411003.7522,35188.27405,15.6
+79323,261682.7744,59858.66552,34838.93358,15.6
+79324,548374.3216,59553.41359,34490.79777,15.6
+79325,198754.4892,1074866.702,34142.07759,15.6
+79326,215982.016,248609.7538,33794.45066,15.6
+79327,210755.9525,356912.4424,33446.33908,15.6
+79328,211678.329,444738.0888,33099.37903,15.6
+79329,211406.2892,402213.8014,513488.9592,15.6
+79330,211943.273,392427.7381,35741.84072,15.6
+79331,212263.3752,392036.7894,35337.44583,15.6
+79332,212477.1941,390708.7983,34938.29782,15.6
+79333,212810.9712,388740.1721,34540.27827,15.6
+79334,213340.3123,388501.8115,34508.67905,15.6
+79335,213372.1925,386679.2316,33648.95925,15.6
+79336,213838.7044,386074.5373,33425.93787,15.6
+79337,32479.30683,383680.3484,32958.80972,15.6
+79338,32501.59436,383587.2387,32592.12147,15.6
+79339,32528.78906,419455.8588,32207.55576,15.6
+79340,677889.8392,380680.3589,31825.68605,15.6
+79341,82141.7863,379621.0154,0,15.6
+79342,146557.279,393139.6745,0,15.6
+79343,274684.0566,384496.0312,0,15.6
+79344,207919.1654,384145.7703,0,15.6
+79345,217422.6072,383063.4092,0,15.6
+79346,217501.7006,334280.1287,0,15.6
+79347,217679.9649,332735.3614,0,15.6
+79348,218117.0724,448371.693,23691.83822,15.6
+79349,218317.9025,376587.9337,0,15.6
+79350,218444.213,377630.724,0,15.6
+79351,218946.5446,372880.5441,0,15.6
+79352,218797.1431,377779.7119,0,15.6
+79353,186450.4408,373175.0166,23273.39372,15.6
+79354,186718.3872,371931.2606,0,15.6
+79355,271793.3538,54928.38761,0,15.6
+79356,221922.7666,54663.09027,0,15.6
+79357,206963.9939,976267.7496,0,15.6
+79358,226645.2312,235381.0215,22853.55625,15.6
+79359,220387.2182,280246.5361,0,15.6
+79360,221079.3443,425861.1905,0,15.6
+79361,221275.4819,357736.1863,0,15.6
+79362,221668.12,361832.3801,0,15.6
+79363,560743.9987,362115.6303,22439.89693,15.6
+79364,222164.4121,359759.1522,492019.4999,15.6
+79365,222235.6034,359466.743,0,15.6
+79366,222303.914,357300.1331,0,15.6
+79367,223001.8454,356217.6199,0,15.6
+79368,222630.1763,355367.2713,0,15.6
+79369,223590.2423,345923.6013,25448.02942,15.6
+79370,33136.7696,345224.4543,0,15.6
+79371,33223.95858,342800.5339,0,15.6
+79372,33175.35709,342923.2681,0,15.6
+79373,697056.7346,340676.0358,28066.9599,15.6
+79374,97471.08249,340279.4126,27610.39532,15.6
+79375,160174.4342,338077.1233,27196.89443,15.6
+79376,277900.8814,337511.9264,26805.7367,15.6
+79377,219186.1389,336134.7036,26425.60315,15.6
+79378,225185.3623,291030.5122,26049.63533,15.6
+79379,225878.6644,290431.3446,25677.57024,15.6
+79380,226068.3247,404032.9449,25307.11523,15.6
+79381,226635.1829,321158.6989,25171.36027,15.6
+79382,226448.3915,329697.6193,25039.82412,15.6
+79383,227805.4195,329803.429,24913.01939,15.6
+79384,227274.7669,331107.8369,24789.41377,15.6
+79385,194715.632,328266.635,24669.96347,15.6
+79386,195409.232,327539.1228,24553.6698,15.6
+79387,280699.1732,42995.94979,24441.46353,15.6
+79388,233982.2534,74394.72497,24331.39712,15.6
+79389,216289.8915,876930.7545,24229.80821,15.6
+79390,235967.8191,169042.2584,24126.96173,15.6
+79391,231346.8217,277773.1579,24030.72754,15.6
+79392,231006.379,378811.3706,23936.67546,15.6
+79393,232176.0013,323630.6084,23851.10645,15.6
+79394,231898.1629,327682.113,23765.16167,15.6
+79395,232796.2035,328231.5756,23685.97003,15.6
+79396,233207.1817,326226.6189,23609.35587,15.6
+79397,233427.3213,325903.6347,23541.47412,15.6
+79398,234249.4887,325277.175,23473.47411,15.6
+79399,234360.8696,324028.9905,468592.5251,15.6
+79400,234731.9228,323054.8605,27286.30962,15.6
+79401,235445.2077,322779.1124,0,15.6
+79402,575124.1585,321373.0871,20534.95105,15.6
+79403,34311.56199,320796.5585,0,15.6
+79404,34313.14563,319640.8871,0,15.6
+79405,34354.15065,319306.0035,0,15.6
+79406,723595.8324,318141.4423,0,15.6
+79407,144111.6801,317064.3496,0,15.6
+79408,146193.3416,316480.3009,0,15.6
+79409,301822.8676,315853.8452,0,15.6
+79410,233088.1669,273501.4536,20195.66272,15.6
+79411,240192.0083,272524.2262,0,15.6
+79412,240990.5072,383974.1616,0,15.6
+79413,241326.319,297063.3168,0,15.6
+79414,241981.6969,307287.7228,19831.09408,15.6
+79415,241923.9287,311606.3802,0,15.6
+79416,242312.5478,309412.816,0,15.6
+79417,208005.6012,307420.8886,0,15.6
+79418,208490.689,300300.097,19482.99666,15.6
+79419,295750.5503,40288.83386,0,15.6
+79420,250658.9111,40182.88974,0,15.6
+79421,231254.2233,39977.53057,0,15.6
+79422,249791.8059,987737.3734,19137.00207,15.6
+79423,245312.8894,202202.3321,0,15.6
+79424,245855.6295,95702.08347,0,15.6
+79425,246017.6227,409865.3955,0,15.6
+79426,246370.4419,281012.4911,18795.93273,15.6
+79427,246772.4683,290771.2145,0,15.6
+79428,247287.3118,292229.9816,0,15.6
+79429,247523.772,291354.3445,18463.82318,15.6
+79430,248043.4179,290209.473,0,15.6
+79431,248336.2133,289794.6313,0,15.6
+79432,249064.7112,288601.9901,0,15.6
+79433,249193.9471,287566.2854,0,15.6
+79434,249478.4017,287065.2104,474292.0751,15.6
+79435,250249.1467,286152.6679,31398.29648,15.6
+79436,35524.06577,285292.0956,31326.503,15.6
+79437,35599.85264,283744.1046,31297.5796,15.6
+79438,35544.17819,283612.4062,31360.57075,15.6
+79439,753536.8833,282862.1822,31254.52611,15.6
+79440,196233.6093,281457.1304,31351.75722,17.8
+79441,1406273.711,1439035.15,31221.42891,17.8
+79442,921903.2466,1113785.4,31159.11233,17.8
+79443,517033.2657,444027.0638,31085.33695,17.8
+79444,642774.3046,705812.0867,31013.33188,17.8
+79445,582590.3666,686725.7743,30942.52314,17.8
+79446,510441.6903,594398.1769,30873.10801,17.8
+79447,508126.0282,607914.6313,30803.82038,17.8
+79448,518711.9043,611489.6875,30735.67879,17.8
+79449,434392.7706,606434.2841,30667.48732,17.8
+79450,524871.169,607084.6829,30600.34513,17.8
+79451,513708.1652,608275.162,30533.2571,17.8
+79452,509832.4564,124118.1273,30467.33142,17.8
+79453,509852.9271,123695.8253,30401.74697,17.8
+79454,507246.4134,1206913.6,30337.47411,17.8
+79455,509208.542,567286.5937,30273.8596,17.8
+79456,508832.4984,609747.7019,30292.43356,17.8
+79457,507740.2937,677056.934,30142.48441,17.8
+79458,507648.482,586484.6277,30094.23255,17.8
+79459,507903.4717,634085.1026,30034.01548,17.8
+79460,508621.1457,621016.0793,29977.81133,17.8
+79461,508338.9052,620723.5081,30291.08978,17.8
+79462,508402.4054,623376.5159,29800.86538,17.8
+79463,508916.9275,624128.4743,0,17.8
+79464,509410.8347,626003.5798,0,17.8
+79465,509831.5548,627594.7816,0,17.8
+79466,510139.8183,628722.8578,0,17.8
+79467,510120.3309,632006.6326,0,17.8
+79468,511322.2302,631579.8225,463317.1224,17.8
+79469,84631.90887,635310.4941,0,17.8
+79470,84709.38153,634811.3278,0,17.8
+79471,886128.095,610372.9262,0,17.8
+79472,624867.7916,609748.7165,79748.92763,17.8
+79473,563002.4038,517476.5062,45224.49165,17.8
+79474,501073.095,748141.5543,47748.27506,17.8
+79475,498856.7768,629749.4187,59140.656,17.8
+79476,521159.4568,635962.893,53649.26769,17.8
+79477,844705.0471,656466.5389,57402.15301,17.8
+79478,542113.8217,651171.247,56291.95765,17.8
+79479,506733.3869,653392.5511,56909.99119,17.8
+79480,442320.1985,654922.5793,57290.21817,17.8
+79481,446379.7673,656988.7753,57666.56254,17.8
+79482,534583.921,659340.1863,57994.13692,17.8
+79483,541849.8933,660205.4377,58398.24161,17.8
+79484,517691.4967,126774.9072,58716.85435,17.8
+79485,527323.3378,127090.5944,59151.41889,17.8
+79486,527802.4352,1211455.234,59467.19348,17.8
+79487,520910.5928,745125.8161,59877.88925,17.8
+79488,526338.4077,567588.099,60211.98416,17.8
+79489,525725.8032,757673.8166,60658.28845,17.8
+79490,525106.4114,707598.0779,61074.78969,17.8
+79491,526996.7632,673466.1638,61368.62588,17.8
+79492,526144.0849,680117.0019,61752.15031,17.8
+79493,526743.9176,686569.073,62110.5061,17.8
+79494,527767.078,685243.3984,62565.70403,17.8
+79495,528311.8618,686270.9994,63122.25321,17.8
+79496,529028.0479,689590.1579,63218.28137,17.8
+79497,530116.0139,690440.2881,63709.19816,17.8
+79498,529790.4177,692513.2856,73020.97541,17.8
+79499,531448.1738,695837.9831,77244.1617,17.8
+79500,531657.3612,696601.8171,77952.53016,20
+79501,289134.1506,2611762.209,868658.3762,20
+79502,2297730.284,2624486.285,1011664.584,20
+79503,1472587.71,1767540.191,471492.9554,20
+79504,1077032.801,669436.0265,525204.9948,20
+79505,931132.3055,1520094.166,534470.1691,20
+79506,1111014.077,1403183.685,502721.306,20
+79507,1016240.714,1251286.185,519479.5965,20
+79508,972404.8706,1296110.385,544118.8563,20
+79509,967957.8831,1279551.949,546166.933,20
+79510,1035206.065,1265583.177,557658.7935,20
+79511,1007104.573,1271764.778,569082.2142,20
+79512,854010.008,1260717.822,578969.6482,20
+79513,1376905.37,1261544.821,588688.0122,20
+79514,981040.2989,1257901.175,599522.1889,20
+79515,993996.3764,1255056.211,608480.562,20
+79516,987290.7146,221381.5585,618862.5136,20
+79517,984917.8198,1477092.412,627251.8435,20
+79518,982474.3977,1549794.46,637363.1169,20
+79519,982256.9223,1099889.592,645727.1244,20
+79520,979612.4345,1276817.592,654783.0658,20
+79521,978101.1683,1258832.733,663156.7145,20
+79522,977040.5191,1244785.409,671949.2854,20
+79523,975784.3297,1241710.328,680001.9083,20
+79524,974105.8323,1242104.445,688444.881,20
+79525,972110.9666,1238473.51,695526.3094,20
+79526,972109.184,1240884.68,704273.4831,20
+79527,970231.8759,1235997.304,678749.0793,20
+79528,969235.4369,1237213.231,685640.5794,20
+79529,967745.2376,1234612.76,692580.4259,20
+79530,966198.9902,1235990.912,698690.5493,20
+79531,966101.4141,1233302.932,235186.4198,20
+79532,155844.4939,1232475.744,232987.9641,20
+79533,968353.357,1233838.646,138511.5667,20
+79534,1124761.932,1231053.976,0,20
+79535,875029.501,1018033.625,340742.4967,20
+79536,986870.7245,1236126.473,2596043.441,20
+79537,960812.9807,1267189.341,483934.9774,20
+79538,958553.9212,1266981.682,665658.7688,20
+79539,958536.9916,1217584.218,745980.2818,20
+79540,923845.6213,1239409.454,692851.4347,20
+79541,925021.1867,1225544.266,707457.5339,20
+79542,990323.4598,1231429.041,714333.6826,20
+79543,841075.4025,1228489.098,720280.2584,20
+79544,982212.0238,1229029.93,727085.804,20
+79545,955188.9286,1227588.77,734174.3011,20
+79546,955488.4252,1227385.602,739768.3012,20
+79547,950380.8991,211596.2567,746598.4746,20
+79548,952087.5401,1443369.207,752646.6223,20
+79549,1289814.964,1536873.328,758735.9043,20
+79550,949697.1563,1069252.601,764141.5932,20
+79551,949648.3056,1267039.412,770854.3868,20
+79552,948493.4678,1238211.65,775665.615,20
+79553,947326.7904,1230606.396,781665.7873,20
+79554,947765.3476,1229133.593,787182.7685,20
+79555,946517.0288,1227567.991,791405.877,20
+79556,945497.587,1231036.081,798273.5616,20
+79557,945420.1306,1227873.632,802772.2815,20
+79558,945659.8301,1229425.07,807052.1429,20
+79559,943414.9869,1229131.344,812342.6556,20
+79560,944426.3478,1229864.431,817365.6611,21
+79561,2313909.935,3007287.591,2995440.635,21
+79562,2216019.915,2461009.521,1914601.605,21
+79563,698437.1876,880051.894,565280.151,21
+79564,799759.0983,1412459.901,930266.1623,21
+79565,1250676.602,1407810.186,1046636.528,21
+79566,1046180.823,1325916.701,943010.578,21
+79567,1038464.173,1322470.736,935223.1269,21
+79568,1032997.406,1297768.555,948035.6878,21
+79569,1026616.441,1290361.541,950064.062,21
+79570,1026736.395,1290702.344,955796.8449,21
+79571,1024557.185,1285010.656,957124.7639,21
+79572,1019029.144,1281606.25,961860.7131,21
+79573,1017476.856,1278154.268,965061.4129,21
+79574,1015033.383,1274787.48,967440.8713,21
+79575,1013591.771,1271125.436,972061.3086,21
+79576,1008698.965,1269918.138,974156.2871,21
+79577,1010016.345,1265146.46,978468.6863,21
+79578,1005724.741,1264352.973,984290.7404,21
+79579,1004614.776,1259436.569,983448.6561,21
+79580,1001746.556,1258331.645,986876.3491,21
+79581,1000481.049,1255943.43,989169.637,21
+79582,998258.1094,1253602.326,1892322.579,21
+79583,997785.2526,1250210.155,1025631.263,21
+79584,993993.6157,1248401.851,1450032.349,21
+79585,995253.1025,1245875.756,977283.0577,21
+79586,990112.8102,1243972.772,1090834.654,21
+79587,991069.4122,1242822.717,979547.1873,21
+79588,988399.1644,1239869.444,1211799.598,21
+79589,987488.591,1237684.969,975770.3316,21
+79590,985682.1086,1236345.43,1104883.742,21
+79591,985218.072,1233627.815,976277.6521,21
+79592,977876.9798,1233895.694,979833.9683,21
+79593,978324.5825,1230205.844,982718.1192,21
+79594,977150.8489,1228355.047,987265.5915,21
+79595,973828.1613,1228792.914,990318.6143,21
+79596,972775.8908,1224413.196,993416.1676,21
+79597,971614.2126,1224747.535,997089.3025,21
+79598,969828.9733,1223463.842,1000138.419,21
+79599,966278.7397,1220661.608,1002971.437,21
+79600,968664.0358,1219833.807,1005222.044,21
+79601,963264.8305,1218139.958,1009723.015,21
+79602,963431.9051,1216557.982,1011295.294,21
+79603,963206.5872,1215567.069,1014778.817,21
+79604,960072.8539,1213847.031,1016370.384,21
+79605,958605.6872,1213034.395,1019299.081,21
+79606,958388.8607,1211518.888,1022238.324,21
+79607,957559.7492,1208822.206,1941114.348,21
+79608,953790.8142,1210442.137,1058052.869,21
+79609,955696.0571,1206508.015,1494920.706,21
+79610,952365.0811,1207808.674,1006791.185,21
+79611,951853.8156,1203335.283,1111585.31,21
+79612,949962.7446,1205367.576,1008503.349,21
+79613,949112.3853,1201971.549,1247084.76,21
+79614,947829.8525,1202652.233,1003931.119,21
+79615,947044.4602,1199922.839,1125145.371,21
+79616,946353.35,1199651.88,1006285.501,21
+79617,944464.3829,1199204.489,1009053.012,21
+79618,942592.0631,1196693.37,1013388.043,21
+79619,944095.2037,1196558.707,1015747.196,21
+79620,940504.6349,1195665.964,1019591.206,21
+79621,1629717.666,2512916.105,1019139.265,21
+79622,1626659.864,2511110.991,1017780.742,21
+79623,1625260.166,2511334.551,1017064.6,21
+79624,1623001.864,2507799.485,1015651.739,21
+79625,1619389.538,2507788.091,1015464.692,21
+79626,1619033.524,2505863.352,1013608.776,21
+79627,1616696.946,2505387.258,1014110.788,21
+79628,1616261.238,2503213.206,1010891.456,21
+79629,1612780.63,2503576.161,1010745.007,21
+79630,1613411.297,2518453.244,1008526.021,21
+79631,1612164.663,2525208.986,1007098.873,21
+79632,1609045.487,2518796.579,1927634.068,21
+79633,1607139.68,2516955.771,1035914.824,21
+79634,1609409.275,2519244.214,1474662.801,21
+79635,1604311.558,2517748.645,977258.2886,21
+79636,1603443.574,2515042.616,1097632.624,21
+79637,1603975.532,2516012.143,967333.8713,21
+79638,1600801.219,2513266.752,967245.6235,21
+79639,1596185.056,2513896.468,964394.3955,21
+79640,1589234.375,2511792.251,966144.9137,21
+79641,1591804.093,2510940.391,963103.3505,21
+79642,1588478.121,2510558.677,963572.3856,21
+79643,1586086.972,2509341.079,961896.1927,21
+79644,1586241.546,2507865.898,960457.064,21
+79645,1583074.112,2508359.159,960243.7559,21
+79646,1582711.569,2504958.639,956897.3572,21
+79647,1579487.26,2505343.454,936560.1493,21
+79648,1580871.13,2505018.614,931800.9469,21
+79649,1575989.169,2502746.641,929241.4701,21
+79650,1576381.769,2504011.515,929139.8758,21
+79651,1574087.436,2503342.916,925024.2533,21
+79652,1573664.987,2502701.188,921717.6755,21
+79653,1569839.151,2501236.049,918016.7986,21
+79654,1568868.145,2500964.297,913629.8928,21
+79655,1567625.239,2498291.622,910445.056,21
+79656,1566730.497,2500055.513,906048.6524,21
+79657,1563393.38,2497013.817,902150.951,21
+79658,1563098.892,2497068.605,898365.1152,21
+79659,1560302.929,2495159.993,894438.3633,21
+79660,1558789.157,2495334.803,889763.0127,21
+79661,1558852.06,2493894.176,886298.7589,21
+79662,1554240.325,2493353.429,882753.7775,21
+79663,1555645.634,2493201.34,877267.6401,21
+79664,1552808.072,2489219.414,874967.6918,21
+79665,1549984.654,2491559.297,870538.5168,21
+79666,1550958.341,2490153.36,866526.8508,21
+79667,1547075.643,2488238.589,862328.5004,21
+79668,1546621.412,2486315.566,859068.4312,21
+79669,1543669.519,2489396.661,853695.5445,21
+79670,1544447.236,2483966.666,850390.9335,21
+79671,1539791.445,2486115.474,846237.4405,21
+79672,1541320.468,2484316.164,842429.23,21
+79673,1537251.991,2483423.275,836965.981,21
+79674,1536490.906,2481707.412,833555.7594,21
+79675,1534381.655,2482342.848,828853.5144,21
+79676,1533170.686,2480780.03,824770.9588,21
+79677,1531594.997,2480356.019,819619.6292,21
+79678,1529836.12,2478004.951,815832.1174,21
+79679,1527535.041,2479784.898,810700.2587,21
+79680,1529259.952,2476311.156,806252.6656,21
+79681,1470542.028,2416284.203,1718217.065,21
+79682,1463067.271,2411797,771893.7287,21
+79683,1462601.793,2408334.158,1248363.815,21
+79684,1457142.381,2407436.741,701052.243,21
+79685,1456479.507,2405030.185,912066.8525,21
+79686,1452139.722,2404504.865,729474.0334,21
+79687,1451027.428,2403470.582,667905.4095,21
+79688,1448845.002,2399561.582,682441.375,21
+79689,1444627.372,2401821.824,667568.7403,21
+79690,1443455.211,2397819.024,658659.8687,21
+79691,1441188.283,2398580.338,652484.6651,21
+79692,1437636.248,2395738.039,645258.0346,21
+79693,1436884.513,2395966.656,639057.7142,21
+79694,1433573.138,2393110.49,631957.4976,21
+79695,1431666.17,2393139.507,625927.9278,21
+79696,1428059.943,2391473.966,617061.9757,21
+79697,1427481.633,2391323.605,610603.1873,21
+79698,1423859.786,2388973.649,603101.9848,21
+79699,1423729.157,2389654.063,597520.2303,21
+79700,1418369.636,2386279.476,590474.5224,21
+79701,1418055.152,2387070.046,583429.9458,21
+79702,1416497.788,2384750.224,576689.7127,21
+79703,1412208.228,2384829.269,570391.7045,21
+79704,1410561.812,2383237.969,562899.9231,21
+79705,1409158.596,2382777.89,557967.9226,21
+79706,1406504.827,2381959.19,550725.0517,21
+79707,1404644.775,2376907.858,545700.2219,21
+79708,1401229.06,2375025.203,538691.1099,21
+79709,1401351.483,2375623.489,533636.5458,21
+79710,1396947.925,2372970.146,526666.4874,21
+79711,1395577.227,2372328.066,521513.0607,21
+79712,1392454.151,2369877.879,515001.9347,21
+79713,1389482.328,2366833.249,509212.8925,21
+79714,1388099.86,2367067.153,503723.0793,21
+79715,1385902.912,2362971.904,497269.1591,21
+79716,1381478.87,2363918.744,491580.9025,21
+79717,1379931.298,2361624.802,485210.0148,21
+79718,1378802.379,2360859.469,479914.2199,21
+79719,1374059.102,2358270.443,472870.314,21
+79720,1370436.735,2356976.118,465540.0763,21
+79721,1367173.432,2355835.699,464151.1706,21
+79722,1365158.549,2355672.691,454526.4804,21
+79723,1361431.017,2352537.593,449111.1707,21
+79724,1359347.173,2352359.516,1252201.332,21
+79725,1356211.598,2349631.223,359646.1457,21
+79726,1352604.346,2350164.856,799597.3353,21
+79727,1351509.75,2348331.423,308482.6755,21
+79728,1348596.137,2345431.954,620498.0094,21
+79729,1344878.405,2346706.243,449295.8291,21
+79730,1341969.392,2342516.808,381216.9774,21
+79731,1340447.654,2344048.813,408053.7652,21
+79732,1336377.436,2341614.829,393658.432,21
+79733,1334105,2340531.816,385885.5825,21
+79734,1332109.214,2338592.494,378369.1712,21
+79735,1327937.075,2337762.114,372059.5756,21
+79736,1325076.668,2336965.788,366252.8651,21
+79737,1324773.768,2336380.178,360023.3662,21
+79738,1752488.17,2332844.655,354725.9316,21
+79739,1318659.231,2334826.617,348505.6945,21
+79740,1313831.871,2331156.351,343023.5223,21
+79741,1311417.781,2331533.758,337738.1451,21
+79742,1308432.965,2328181.08,332088.6144,21
+79743,1303060.254,2316406.756,326600.6715,21
+79744,1298392.705,2311255.239,321336.5899,21
+79745,1297778.125,2309583.461,309296.7105,21
+79746,1292981.307,2309955.776,317599.8929,21
+79747,1292490.233,2306383.147,303470.4922,21
+79748,1286169.661,2306412.223,300542.4768,21
+79749,1286641.558,2305096.6,297484.372,21
+79750,1280751.224,2304145.841,989431.0362,21
+79751,1280128.227,2302208.183,192513.1709,21
+79752,1276127.575,2300976.62,552437.2111,21
+79753,1273048.638,2300136.241,164080.2671,21
+79754,1271666.735,2298239.214,451605.1954,21
+79755,1266609.797,2297905.989,313536.9177,21
+79756,1265266.905,2296370.403,336542.1998,21
+79757,1262006.425,2295118.08,156181.8943,21
+79758,1259215.1,2294364.115,442182.2766,21
+79759,1255331.381,2293100.919,281811.3813,21
+79760,1253483.771,2292907.081,303004.7148,21
+79761,1249304.239,2289998.353,149310.2878,21
+79762,1246949.948,2291244.987,426465.7089,21
+79763,1243344.295,2289799.102,265501.6763,21
+79764,1241232.249,2288522.867,285941.4365,21
+79765,1237551.827,2287317.466,142511.4592,21
+79766,1233963.648,2288582.261,409953.7358,21
+79767,1232097.873,2285094.965,251610.2958,21
+79768,1227536.134,2286263.647,236496.0492,21
+79769,1225967.062,2285804.686,245013.3459,21
+79770,1221885.626,2282526.986,239631.2551,21
+79771,1219946.054,2283629.13,235906.6552,21
+79772,1218640.444,2282865.235,234116.2511,21
+79773,1216049.64,2280386.181,232248.5427,21
+79774,1213504.522,2281991.087,230543.0116,21
+79775,1647055.333,2278662.516,228878.2386,21
+79776,1210176.832,2278871.908,862653.0633,21
+79777,1209076.025,2278095.478,147541.177,21
+79778,1206351.145,2277079.128,429346.9238,21
+79779,1204664.163,2276304.98,126789.2992,21
+79780,1203646.706,2275024.878,355323.0804,21
+79781,1202028.579,2274648.025,246121.1645,21
+79782,1200253.88,2273491.783,262564.1033,21
+79783,1197740.715,2273017.497,123022.9801,21
+79784,1197765.86,2271307.089,122573.5218,21
+79785,1194448.744,2271338.66,121849.2148,21
+79786,1193179.642,2269677.161,122438.7554,21
+79787,1193638.81,2270852.663,121188.314,21
+79788,1188774.877,2266400.35,121581.1694,21
+79789,1190755.92,2269293.944,120809.1034,21
+79790,1186150.573,2268523.838,120568.4324,21
+79791,1186801.268,2264736.057,120316.2125,21
+79792,1184082.631,2265666.532,119928.7701,21
+79793,1182895.177,2265294.773,119729.6023,21
+79794,1181973.296,2262590.248,119551.5075,21
+79795,1179614.385,2261887.601,119038.2315,21
+79796,1179270.751,2263113.182,119042.0585,21
+79797,1177405.64,2259102.653,118553.9715,21
+79798,1175915.978,2261964.669,118394.0391,21
+79799,1173995.753,2258024.392,118009.8342,21
+79800,1173828.203,2258262.886,117746.0844,21
+79801,1173349.888,2258793.654,116937.4615,21
+79802,1172799.789,2258009.744,116383.2311,21
+79803,1173024.194,2256117.136,116000.3935,21
+79804,1173109.49,2257806.003,115796.6198,21
+79805,1172975.451,2256541.182,115246.5638,21
+79806,1171160.697,2254451.259,114869.0297,21
+79807,1172611.227,2255910.684,114590.5585,21
+79808,1171275.236,2252488.772,114154.5636,21
+79809,1170875.371,2255748.372,113339.3527,21
+79810,1172657.472,2252368.758,113588.1051,21
+79811,1169536.392,2253309.144,113090.7406,21
+79812,1172371.961,2252459.778,112197.7812,21
+79813,1169468.946,2250974.681,112277.373,21
+79814,1171247.209,2251924.815,111820.0235,21
+79815,1170728.335,2250546.517,111134.8949,21
+79816,1170347.102,2251023.337,110792.7528,21
+79817,1169810.022,2249512.873,110383.4312,21
+79818,1171848.339,2248590.47,109941.7386,21
+79819,1173432.336,2249395.362,109682.8563,21
+79820,1172243.364,2246366.362,108654.1827,21
+79821,1172527.753,2249005.236,109263.5414,21
+79822,1172269.782,2246676.53,107642.0886,21
+79823,1172816.633,2245602.306,107814.4593,21
+79824,1172296.294,2246742.001,107413.1735,21
+79825,1173097.139,2244917.428,106823.6475,21
+79826,1171585.816,2246080.062,106320.9289,21
+79827,1173267.086,2243903.89,106074.0199,21
+79828,1172769.208,2244774.817,105057.2143,21
+79829,1171914.524,2242714.653,105408.3092,21
+79830,1174055.761,2243623.589,104259.7726,21
+79831,1171181.397,2240977.036,104061.0997,21
+79832,1173491.621,2243028.9,103437.033,21
+79833,1171581.144,2242233.718,103365.3464,21
+79834,1173217.081,2240400.429,102182.1204,21
+79835,1170891.53,2240790.734,102284.8747,21
+79836,1172020.249,2241419.346,101471.3593,21
+79837,1171516.489,2240617.349,101289.581,21
+79838,1170906.154,2239635.185,100402.0943,21
+79839,1171551.814,2238783.251,100130.5508,21
+79840,1171243.607,2240885.619,99546.17294,21
+79841,1170376.498,2238182.853,99054.22647,21
+79842,1171211.56,2238208.536,98648.31726,21
+79843,1170298.608,2239096.007,97846.55636,21
+79844,1170981.774,2238195.196,97612.29088,21
+79845,1170489.723,2237277.144,97041.10425,21
+79846,1170656.151,2236893.687,96394.01597,21
+79847,1167821.521,2237924.995,95990.24656,21
+79848,1168530.871,2235077.762,95500.30876,21
+79849,1166173.843,2237787.971,94927.37373,21
+79850,1167690.813,2236015.974,94506.38723,21
+79851,1167447.881,2235041.729,93816.50898,21
+79852,1165713.301,2236616.983,93143.66285,21
+79853,1168178.509,2234734.566,92920.9066,21
+79854,1165915.459,2235180.577,92298.4769,21
+79855,1166421.667,2234246.156,91626.4712,21
+79856,1165637.409,2234807.293,91209.46648,21
+79857,1167292.717,2233428.735,90724.64928,21
+79858,1164575.62,2234674.344,89723.7697,21
+79859,1166496.232,2233526.503,90098.59172,21
+79860,1165323.507,2231976.217,88460.58719,21
+79861,1160923.038,2234382.67,89422.81397,21
+79862,1159442.334,2231204.008,88684.57055,21
+79863,1156987.636,2234368.175,87806.67959,21
+79864,1155676.475,2231880.503,88026.3921,21
+79865,1153254.707,2231942.426,86980.58442,21
+79866,1151973.328,2234238.096,87123.62643,21
+79867,1149597.033,2231610.667,86089.31748,21
+79868,1148576.582,2234272.888,85818.53661,21
+79869,1146463.293,2231863.825,85630.11791,21
+79870,1145435.73,2234025.666,84867.49926,21
+79871,1142069.753,2232503.939,84359.07974,21
+79872,1142659.596,2232635.342,84269.33167,21
+79873,1138361.235,2233243.154,83541.40544,21
+79874,1138276.045,2234451.6,82882.50616,21
+79875,1135757.95,2232634.748,82767.32558,21
+79876,1134383.978,2233922.211,82117.91731,21
+79877,1132383.441,2233815.122,81606.04707,21
+79878,1131181.521,2233469.67,81257.1487,21
+79879,1128582.495,2234502.273,80855.41935,21
+79880,1127431.174,2233044.361,80382.47849,21
+79881,1124450.878,2233875.899,79454.46868,21
+79882,1123669.567,2235249.732,79461.91625,21
+79883,1121217.108,2232538.745,78570.24028,21
+79884,1120326.485,2234470.046,78649.61342,21
+79885,1117759.644,2234970.377,77714.41203,21
+79886,1115233.527,2234414.129,77222.56381,21
+79887,1115762.316,2234458.68,77109.99734,21
+79888,1111599.541,2234245.502,76285.70863,21
+79889,1110668.618,2234821.421,75914.97823,21
+79890,1109335.422,2236079.245,75495.43267,21
+79891,1107022.936,2233611.802,74939.08779,21
+79892,1105800.115,2236495.224,74055.7964,21
+79893,1104466.727,2235232.941,74104.68245,21
+79894,1103931.466,2233643.976,73173.02745,21
+79895,1100992.041,2236620.527,72805.61916,21
+79896,1101634.504,2235937.909,71990.69272,21
+79897,1099683.615,2234826.847,71809.04004,21
+79898,1097865.564,2237450.165,70928.37301,21
+79899,1098409.617,2234284.033,70380.87425,21
+79900,1095301.081,2237424.908,70256.08933,21
+79901,1093886.932,2236733.821,69096.76722,21
+79902,1094481.371,2237050.845,69101.58092,21
+79903,1091999.49,2235669.428,68226.17066,21
+79904,1090496.09,2237879.585,67937.34402,21
+79905,1090342.831,2235917.199,66843.30598,21
+79906,1088938.976,2238787.94,66901.59059,21
+79907,1087088.05,2237009.653,65851.0336,21
+79908,1087033.7,2237123.353,65709.6465,21
+79909,1084956.482,2239305.774,65029.20749,21
+79910,1084771.026,2236603.072,64411.271,21
+79911,1083690.434,2239052.702,63952.05328,21
+79912,1084649.474,2239430.778,63211.34203,21
+79913,1082326.032,2237156.81,62633.44357,21
+79914,1082983.086,2239145.738,62626.27238,21
+79915,1080148.111,2239253.734,61448.61912,21
+79916,1079641.594,2238107.777,61266.06766,21
+79917,1079425.655,2239679.816,60661.73178,21
+79918,1077992.142,2240225.871,60001.20374,21
+79919,1076844.698,2239314.434,59742.59807,21
+79920,1075890.712,2240424.508,58699.75303,21
+79921,1139489.622,2307585.55,80581.81403,21
+79922,1144261.596,2310792.285,81258.74804,21
+79923,1144144.669,2312454.132,81364.62407,21
+79924,1145269.808,2308804.78,80959.9938,21
+79925,1146428.779,2309630.225,80932.35203,21
+79926,1146413.05,2311169.727,80562.46707,21
+79927,1148479.686,2306906.345,80905.10101,21
+79928,1147925.978,2308888.727,80033.70508,21
+79929,1149288.099,2305871.173,80020.51906,21
+79930,1150802.48,2307495.779,80043.29736,21
+79931,1149144.476,2304904.617,79595.20228,21
+79932,1152957.629,2304937.62,79340.34793,21
+79933,1151146.739,2303967.715,79035.60759,21
+79934,1152935.199,2303379.54,78762.92389,21
+79935,1156042.082,2302296.122,78898.22435,21
+79936,1155286.587,2301343.824,78086.61384,21
+79937,1156469.305,2301417.863,78021.40822,21
+79938,1158098.41,2299243.102,77984.7308,21
+79939,1157308.388,2299501.894,77749.06656,21
+79940,1159236.879,2297290.491,77077.33049,21
+79941,1160168.618,2298210.714,77043.95154,21
+79942,1158825.963,2294950.228,76952.05152,21
+79943,1161175.475,2296409.205,76257.28901,21
+79944,1161503.948,2293453.297,76599.86845,21
+79945,1162678.368,2294163.591,76400.12184,21
+79946,1162256.603,2291410.861,76368.07732,21
+79947,1163165.739,2292192.116,75643.89385,21
+79948,1163623.575,2290492.492,75683.7291,21
+79949,1166154.222,2289279.368,75295.44531,21
+79950,1164484.821,2288481.013,74766.76685,21
+79951,1168001.172,2287643.476,74989.94067,21
+79952,1166376.325,2284166.531,74204.11685,21
+79953,1167388.157,2283771.864,74025.61373,21
+79954,1166011.87,2280188.873,73893.3796,21
+79955,1168048.715,2278030.291,73398.12416,21
+79956,1166439.956,2274363.772,72727.19086,21
+79957,1167648.027,2275429.583,72938.22844,21
+79958,1166086.373,2270498.108,72237.2909,21
+79959,1167497.652,2269487.39,72203.79949,21
+79960,1166010.105,2267831.112,71507.49093,21
+79961,1167725.439,2265958.223,71375.36574,21
+79962,1167220.436,2261587.067,70734.90682,21
+79963,1165428.723,2263289.286,70809.15084,21
+79964,1166873.165,2257625.029,70163.79569,21
+79965,1167295.108,2255327.036,69937.57897,21
+79966,1166457.826,2250756.699,69394.57654,21
+79967,1166585.846,2251408.991,68971.60893,21
+79968,1165357.978,2246306.935,68946.93855,21
+79969,1166450.989,2244149.306,68617.93862,21
+79970,1166049.409,2244582.343,68244.69993,21
+79971,1165519.609,2240171.32,68698.00798,21
+79972,1165602.909,2237374.562,68085.7791,21
+79973,1165309.416,2236424.942,67887.05139,21
+79974,1165236.313,2234740.323,67039.1021,21
+79975,1165018.806,2230405.375,66941.07968,21
+79976,1164017.776,2229108.358,66787.94982,21
+79977,1166628.596,2228290.469,66062.03519,21
+79978,1162230.022,2223165.276,65958.90697,21
+79979,1165474.344,2221901.546,65473.80706,21
+79980,1163664.648,2219281.512,65100.54484,21
+79981,1164519.409,2216697.843,65033.75551,21
+79982,1165881.228,2214428.054,64571.10957,21
+79983,1164935.287,2209993.937,64072.06159,21
+79984,1167078.294,2206485.518,64157.98061,21
+79985,1167370.004,2203907.96,63399.37517,21
+79986,1167115.73,2200201.368,63058.66118,21
+79987,1167954.953,2197711.607,62412.5124,21
+79988,1169190.356,2194443.634,62315.82522,21
+79989,1169465.269,2192762.56,61932.26028,21
+79990,1169475.093,2189382.884,61322.19855,21
+79991,1170846.976,2185602.251,60813.56075,21
+79992,1171374.843,2182973.677,60761.68076,21
+79993,1172109.658,2180260.752,60147.42838,21
+79994,1171351.159,2177889.093,60034.31793,21
+79995,1173558.988,2174126.655,59335.4011,21
+79996,1174135.738,2171383.127,59489.67088,21
+79997,1172390.368,2168236.864,58228.59211,21
+79998,1175651.471,2166266.956,58368.87988,21
+79999,1175308.191,2160685.887,57886.95225,21
+80000,1174239.052,2160947.052,57073.13148,21
+80001,1178059.215,2155840.77,56859.31919,21
+80002,1175770.666,2152667.404,56085.37188,21
+80003,1177160.76,2150664.907,56170.54948,21
+80004,1177705.852,2147053.636,54917.53387,21
+80005,1178713.906,2142781.441,54654.71743,21
+80006,1178898.807,2141973.352,54470.74275,21
+80007,1178761.884,2137198.152,53487.2217,21
+80008,1179602.585,2134582.693,53020.86568,21
+80009,1180392.532,2133152.24,52532.17273,21
+80010,1181050.149,2127043.076,51995.13994,21
+80011,1181857.493,2124678.44,51704.5623,21
+80012,1182104.361,2123192.533,51402.35279,21
+80013,1183249.484,2119535.655,50839.78588,21
+80014,1184116.86,2118329.793,50044.56798,21
+80015,1184139.141,2116111.697,49674.46567,21
+80016,1185441.495,2113982.205,49051.10594,21
+80017,1186204.545,2112084.38,48197.75739,21
+80018,1185945.01,2110527.042,47800.78311,21
+80019,1187606.547,2106850.925,47138.70316,21
+80020,1188446.197,2107136.693,46301.16053,21
+80021,1189739.377,2105565.592,45974.48134,21
+80022,1189874.823,2101047.802,45161.29442,21
+80023,1191097.449,2102460.974,44632.3358,21
+80024,1191302.225,2099145.736,46734.47599,21
+80025,1192566.845,2097559.145,46777.30989,21
+80026,1193235.637,2095006.819,46841.73657,21
+80027,1194109.681,2094931.677,47140.56737,21
+80028,1195050.532,2092829.264,45001.02693,21
+80029,1195177.371,2090748.398,46319.07319,21
+80030,1197109.88,2089283.766,45216.97631,21
+80031,1197703.355,2087130.16,46762.80271,21
+80032,1197981.339,2086180.685,43990.41804,21
+80033,1199372.269,2085233.99,44908.4163,21
+80034,1199676.986,2083055.143,44434.08222,21
+80035,1200959.044,2080753.186,44562.07487,21
+80036,1201193.399,2080964.429,42880.69692,21
+80037,1202882.089,2077579.666,43902.36486,21
+80038,1203192.64,2078638.999,43246.83245,21
+80039,1204197.004,2074872.248,42510.70342,21
+80040,1205137.283,2074116.09,41746.55387,21
+80041,1206038.738,2071458.794,43443.57534,21
+80042,1206087.164,2071081.673,41856.63767,21
+80043,1206482.866,2067625.923,42047.42075,21
+80044,1206695.258,2070300.657,42163.685,21
+80045,1206869.364,2067064.678,41477.24021,21
+80046,1208222.216,2067757.995,41293.49144,21
+80047,1207713.161,2065811.671,41037.10397,21
+80048,1207547.456,2065820.614,39454.0038,21
+80049,1208581.223,2064906.248,40244.84513,21
+80050,1208402.971,2063994.434,39047.93691,21
+80051,1209477.491,2064672.458,39377.24006,21
+80052,1209060.173,2061395.638,38549.81748,21
+80053,1210093.609,2064127.706,37758.21423,21
+80054,1209747.856,2061375.885,39923.57977,21
+80055,1209853.347,2060694.834,36730.82521,21
+80056,1210641.934,2061335.334,38246.55822,21
+80057,1210485.684,2059669.631,37505.48538,21
+80058,1211263.499,2059886.529,36037.49129,21
+80059,1211672.19,2057985.152,37739.61232,21
+80060,1211769.877,2059187.945,35499.85673,21
+80061,1212826.824,2056967.232,36916.64736,21
+80062,1211597.585,2057949.042,36660.14691,21
+80063,1212655.286,2056574.533,36368.13325,21
+80064,1214525.751,2055826.282,37574.70456,21
+80065,1212105.535,2056971.018,35541.01103,21
+80066,1214439.359,2054551.447,37147.05287,21
+80067,1214158.736,2054893.754,36460.22668,21
+80068,1214383.306,2054157.914,37449.20153,21
+80069,1214133.137,2054367.83,35795.10574,21
+80070,1214860.511,2053052.009,37593.25128,21
+80071,1215864.921,2053562.056,37167.75759,21
+80072,1215355.435,2052980.359,35951.46758,21
+80073,1216374.78,2052765.334,37717.85568,21
+80074,1216334.24,2051382.466,36380.78365,21
+80075,1216431.575,2054260.732,38284.51527,21
+80076,1217100.466,2050251.776,37898.2468,21
+80077,1217246.832,2055635.669,36906.78087,21
+80078,1218006.442,2053779.35,37570.39117,21
+80079,1217756.04,2055918.189,39247.1833,21
+80080,1218732.753,2054133.557,37376.02139,21
+80081,1218742.015,2055409.85,38887.07498,21
+80082,1219052.272,2055236.26,38697.2354,21
+80083,1220610.395,2055352.086,38627.01416,21
+80084,1218045.576,2054426.435,38231.35482,21
+80085,1221720.251,2056836.389,40189.86127,21
+80086,1220702.203,2054366.321,38125.08292,21
+80087,1219982.572,2055042.299,39620.68185,21
+80088,1221746.1,2056533.509,39692.24399,21
+80089,1221045.18,2054474.643,39250.35315,21
+80090,1223120.206,2056883.055,40301.90471,21
+80091,1221309.376,2055513.687,38925.33336,21
+80092,1223723.493,2055208.68,40909.46888,21
+80093,1222985.289,2057231.129,40584.10267,21
+80094,1223349.174,2055686.423,40335.24173,21
+80095,1223711.561,2055568.849,40337.40962,21
+80096,1223789.028,2057976.667,41118.75084,21
+80097,1224553.129,2055939.652,40759.57004,21
+80098,1225085.802,2056340.016,41760.58605,21
+80099,1225127.93,2058064.268,40611.72616,21
+80100,1225640.591,2057262.96,41193.74963,21
+80101,1225772.91,2057569.864,42712.03936,21
+80102,1224631.402,2058394.145,42862.72367,21
+80103,1225220.384,2060883.858,42683.45982,21
+80104,1224402.747,2059155.639,42849.67077,21
+80105,1223188.646,2060442.818,44390.7211,21
+80106,1223960.881,2062419.934,43671.85094,21
+80107,1222116.593,2062247.598,44546.72061,21
+80108,1223270.969,2062231.472,44570.38313,21
+80109,1221970.865,2064864.965,44585.90588,21
+80110,1222019.451,2063776.74,46343.3338,21
+80111,1222244.971,2065258.031,44971.49977,21
+80112,1220144.224,2066064.569,46899.07601,21
+80113,1221116.888,2068803.722,46670.30476,21
+80114,1219142.207,2070098.4,46970.98877,21
+80115,1220519.049,2072020.514,47215.07936,21
+80116,1218331.632,2071048.682,47976.20644,21
+80117,1219590.742,2073757.529,48191.33945,21
+80118,1218567.14,2073868.103,49136.39648,21
+80119,1217618.324,2074456.972,48470.86363,21
+80120,1218323.199,2075313.459,49532.04521,21
+80121,1216897.505,2077666.753,49789.48324,21
+80122,1217385.555,2077335.629,51421.77192,21
+80123,1215757.567,2078199.019,49898.91858,21
+80124,1216496.528,2079452.736,52029.88213,21
+80125,1214732.331,2081183.77,50880.34626,21
+80126,1215780.351,2081441.157,52087.78396,21
+80127,1214819.759,2081558.888,52307.38932,21
+80128,1214338.764,2083986.917,54035.56589,21
+80129,1214703.712,2083723.731,52790.78027,21
+80130,1212464.718,2085771.632,54141.742,21
+80131,1214079.058,2086416.515,53145.80222,21
+80132,1211219.619,2086447.633,56665.20963,21
+80133,1211763.81,2087676.865,54938.34992,21
+80134,1210077.025,2089225.767,55454.96616,21
+80135,1209603.202,2090124.385,57493.4389,21
+80136,1207165.354,2088975.805,55663.64583,21
+80137,1204930.411,2092593.156,58082.81894,21
+80138,1205080.89,2091151.81,58058.58946,21
+80139,1202751.785,2094120.172,58252.16519,21
+80140,1203445.67,2092232.789,60452.47745,21
+80141,1201982.901,2096307.241,58886.76959,21
+80142,1200732.023,2094187.78,61036.43675,21
+80143,1200263.853,2096780.583,60159.46056,21
+80144,1197920.845,2097368.855,61796.97748,21
+80145,1198749.024,2098461.005,61624.01892,21
+80146,1195753.872,2097276.856,63838.27588,21
+80147,1196596.831,2101835.676,62329.04204,21
+80148,1194253.844,2097775.161,64289.78137,21
+80149,1194887.798,2103112.19,63131.45798,21
+80150,1191952.64,2102541.083,66659.81935,21
+80151,1193020.625,2102567.947,65275.49172,21
+80152,1188764.426,2103360.407,65747.17063,21
+80153,1188754.263,2105474.391,67518.75215,21
+80154,1185728.788,2105316.668,66328.99696,21
+80155,1186699.539,2106787.518,68212.06937,21
+80156,1184090.418,2106841.091,68959.79375,21
+80157,1184922.557,2108651.416,68723.83574,21
+80158,1181852.083,2109178.195,69215.13644,21
+80159,1182586.176,2109063.061,71707.98716,21
+80160,1182552.969,2111370.444,69634.86093,21
+80161,1181365.111,2111341.19,72151.75648,21
+80162,1179253.487,2113989.648,72383.08984,21
+80163,1179818.524,2115948.067,73111.35129,21
+80164,1178995.431,2116777.034,73057.7925,21
+80165,1179561.826,2118868.819,73530.62001,21
+80166,1178125.103,2120883.884,75883.00195,21
+80167,1178241.203,2121392.344,74345.0559,21
+80168,1178687.008,2123679.477,76490.26403,21
+80169,1177443.779,2126236.075,76982.24774,21
+80170,1176666.349,2126978.857,77625.07061,21
+80171,1178208.467,2128398.394,77395.93292,21
+80172,1175801.213,2131814.039,80211.57307,21
+80173,1176484.788,2131619.785,78611.43685,21
+80174,1174310.091,2133576.628,80732.22673,21
+80175,1173449.016,2136681.087,81075.1474,21
+80176,1173570.363,2137539.432,81889.25351,21
+80177,1172543.611,2139074.104,83807.56053,21
+80178,1173853.84,2141574.816,82544.18043,21
+80179,1170703.723,2142646.69,83777.00239,21
+80180,1173259.37,2143958.606,85390.82991,21
+80181,1171679.648,2146702.482,85347.72938,21
+80182,1171237.525,2147398.013,86264.52008,21
+80183,1171142.696,2149760.492,86596.60644,21
+80184,1170812.736,2151236.168,88686.25955,21
+80185,1171494.572,2153273.717,87650.02065,21
+80186,1169736.881,2154364.653,89545.40764,21
+80187,1170497.015,2156725.281,90244.60253,21
+80188,1169788.873,2158529.992,90517.35046,21
+80189,1169586.24,2159273.75,92772.01162,21
+80190,1169559.244,2162310.098,91924.57632,21
+80191,1169633.84,2163226.277,91840.29743,21
+80192,1170134.187,2164629.301,95941.93846,21
+80193,1170515.974,2165204.375,93034.09589,21
+80194,1171067.706,2168220.033,95076.20495,21
+80195,1171042.118,2168794.671,97618.68755,21
+80196,1171850.413,2170251.58,96128.90604,21
+80197,1172791.862,2170083.189,96703.74327,21
+80198,1173086.709,2174605.435,100569.4325,21
+80199,1172379.495,2173776.331,97681.52072,21
+80200,1174961.638,2174793.591,99831.66358,21
+80201,1174286.407,2176289.694,102070.8582,21
+80202,1175364.881,2179011.168,100852.5735,21
+80203,1174788.887,2178491.29,103108.3722,21
+80204,1177405.935,2180236.741,101912.9678,21
+80205,1175875.159,2182713.367,105602.283,21
+80206,1178113.378,2183103.37,103843.4299,21
+80207,1178214.873,2183236.534,106842.6079,21
+80208,1178631.924,2187004.542,105587.3533,21
+80209,1179533.624,2186250.43,107844.7659,21
+80210,1180849.81,2188292.344,106487.5843,21
+80211,1180174.763,2189126.429,110769.803,21
+80212,1181531.824,2191315.634,109190.1182,21
+80213,1182636.96,2191111.088,109773.6446,21
+80214,1182534.013,2194195.309,112539.0256,21
+80215,1184109.284,2193158.288,110322.2246,21
+80216,1183728.12,2196339.257,115196.4509,21
+80217,1185711.884,2196037.462,111846.3407,21
+80218,1184790.829,2199040.879,115841.2947,21
+80219,1187159.68,2198920.331,114798.9029,21
+80220,1186542.033,2199693.49,116892.2083,21
+80221,578356.9461,1274230.898,0,21
+80222,578720.0833,1242545.747,0,21
+80223,579192.8148,1243318.213,0,21
+80224,579876.4836,1244626.239,0,21
+80225,580895.2558,1246528.042,0,21
+80226,581985.2368,1248912.48,0,21
+80227,583302.4609,1251609.385,0,21
+80228,584704.7443,1254471.993,0,21
+80229,586143.6965,1257411.464,0,21
+80230,587575.3554,1260341.008,0,21
+80231,588986.3817,1266276.783,0,21
+80232,590359.3744,1267823.131,0,21
+80233,591685.3262,1270634.743,0,21
+80234,593025.7785,1278945.541,0,21
+80235,594176.5835,1287573.992,0,21
+80236,595338.9104,1294582.291,0,21
+80237,596446.8663,1293954.316,0,21
+80238,597502.8469,1298142.286,0,21
+80239,598509.9016,1300940.723,0,21
+80240,599474.5698,1303268.512,0,21
+80241,600390.7849,1305614.029,0,21
+80242,601271.5902,1307716.844,0,21
+80243,602117.1576,1309949.205,0,21
+80244,602930.6927,1311653.079,0,21
+80245,603781.8638,1313584.126,0,21
+80246,604473.4893,1323419.982,0,21
+80247,605208.1318,1323121.237,0,21
+80248,605921.9215,1330616.717,0,21
+80249,606617.5419,1330496.223,0,21
+80250,607297.1801,1334458.83,0,21
+80251,607966.1758,1336376.181,0,21
+80252,608614.7689,1339009.44,0,21
+80253,609325.1501,1344929.586,0,21
+80254,609884.1448,1348996.089,0,21
+80255,610502.791,1350442.237,0,21
+80256,611111.6519,1353662.17,0,21
+80257,611714.4758,1356585.198,0,21
+80258,612302.6399,1359076.236,0,21
+80259,612951.8099,1361578.742,0,21
+80260,613462.1623,1364398.432,0,21
+80261,614031.546,1366330.946,0,21
+80262,614596.1559,1368955.289,0,21
+80263,615161.7104,1371620.116,0,21
+80264,615719.0049,1373409.717,0,21
+80265,616349.7923,1375730.529,0,21
+80266,616835.4771,1378233.605,0,21
+80267,617389.7353,1379794.136,0,21
+80268,618067.284,1382503.672,0,21
+80269,618862.3852,1384095.103,0,21
+80270,619290.8037,1386238.476,0,21
+80271,620017.5362,1388461.307,0,21
+80272,620493.0768,1390000.777,0,21
+80273,621132.6885,1392247.332,0,21
+80274,621691.4183,1393877.138,0,21
+80275,622265.7381,1395825.867,0,21
+80276,622829.5813,1397657.425,0,21
+80277,623468.2573,1399201.838,0,21
+80278,623943.411,1401226.811,0,21
+80279,624489.5998,1402807.756,0,21
+80280,625421.7811,1404897.866,0,21
+80281,0,0,0,21
+80282,0,0,0,21
+80283,0,84303.039,0,21
+80284,0,606528.3456,0,21
+80285,44816.33271,46996.63071,0,21
+80286,4169.81454,641326.8958,0,21
+80287,12748.66246,254334.0159,1622912.698,21
+80288,18595.25716,216220.808,0,21
+80289,15325.13797,223535.2437,0,21
+80290,15969.29749,225277.4232,0,21
+80291,16179.2177,227124.7597,0,21
+80292,16396.61793,229237.297,0,21
+80293,16554.2122,230498.4342,0,21
+80294,16782.39427,232736.7513,0,21
+80295,16897.77506,236008.4307,0,21
+80296,17143.09664,237558.5314,0,21
+80297,17276.49897,239415.1999,0,21
+80298,17471.85709,241224.6287,0,21
+80299,17644.55085,242823.4948,0,21
+80300,17795.79494,244510.3932,0,21
+80301,17965.72442,246477.0901,0,21
+80302,18132.26551,248493.4854,0,21
+80303,18270.79715,249365.1987,0,21
+80304,18455.30379,251479.9683,0,21
+80305,18568.15763,253484.312,0,21
+80306,18783.72413,254847.4158,0,21
+80307,18882.25127,256034.6811,0,21
+80308,19050.32777,258578.4965,0,21
+80309,19156.59293,259790.6062,0,21
+80310,19355.07141,260962.9004,0,21
+80311,19444.13271,262031.455,0,21
+80312,19624.15508,262801.6862,0,21
+80313,19723.80596,230043.4008,0,21
+80314,19862.84711,0,0,21
+80315,0,101727.7026,0,21
+80316,0,20148.48775,0,21
+80317,0,822753.57,0,21
+80318,379118.4975,153820.6966,0,21
+80319,23765.51313,152735.5617,0,21
+80320,27010.24069,361919.2266,0,21
+80321,131828.1085,265051.6279,0,21
+80322,113308.1456,279200.8416,0,21
+80323,100428.6324,281517.0891,1540471.947,21
+80324,107491.687,282903.9745,0,21
+80325,108731.3279,283988.7717,0,21
+80326,110292.393,285387.6739,0,21
+80327,111103.7069,286963.3158,0,21
+80328,112561.068,288203.994,0,21
+80329,113371.748,289449.92,0,21
+80330,114713.1844,291099.5783,0,21
+80331,115735.4442,292251.9319,0,21
+80332,116949.6359,293170.0041,0,21
+80333,118038.7045,295548.2282,0,21
+80334,119194.8339,295907.8104,0,21
+80335,120168.6047,297631.4401,0,21
+80336,121205.277,299075.366,0,21
+80337,122494.5399,300195.6544,0,21
+80338,123126.8228,301377.0982,0,21
+80339,124713.595,303340.0873,0,21
+80340,126865.746,303939.009,0,21
+80341,128842.1685,306675.4225,0,21
+80342,129361.8694,307357.8013,0,21
+80343,130900.8772,306990.982,0,21
+80344,130800.2315,307491.9079,0,21
+80345,132478.7936,268635.2388,0,21
+80346,132633.214,268413.5532,0,21
+80347,133824.4046,111604.8669,0,21
+80348,0,25124.22402,0,21
+80349,0,796411.5154,0,21
+80350,0,151388.5395,0,21
+80351,80181.20976,280683.2092,0,21
+80352,16008.10503,344116.5287,0,21
+80353,11135.87181,305958.208,0,21
+80354,512687.6178,310340.2282,0,21
+80355,26092.3781,310351.8756,0,21
+80356,67875.59849,309684.5589,0,21
+80357,202854.8914,310289.692,0,21
+80358,132512.2044,310799.6554,0,21
+80359,143285.7688,310330.9224,0,21
+80360,144205.368,311044.6527,1465267.335,21
+80361,145110.0702,310757.2318,0,21
+80362,145296.8507,311132.2897,0,21
+80363,146023.992,310829.0987,0,21
+80364,146747.9537,311409.2165,0,21
+80365,147131.9758,311278.9071,0,21
+80366,147620.3305,311807.5681,0,21
+80367,148034.4416,311087.2101,0,21
+80368,149273.0923,311824.8886,0,21
+80369,148977.699,311552.9189,0,21
+80370,150065.489,311825.1239,0,21
+80371,150221.9073,311890.1561,0,21
+80372,151024.9022,312458.8272,0,21
+80373,151638.806,311402.9283,0,21
+80374,151904.7099,312799.7566,0,21
+80375,152433.0084,311569.4796,0,21
+80376,153239.9392,312846.2444,0,21
+80377,153331.0593,271999.6269,0,21
+80378,154466.2913,272768.0224,0,21
+80379,154293.2004,112523.8808,0,21
+80380,155275.4579,25576.93923,0,21
+80381,129842.9385,813265.7834,0,21
+80382,130412.3803,156225.2499,0,21
+80383,130978.5224,278356.1565,0,21
+80384,82750.70262,350663.7843,0,21
+80385,23460.84331,308936.4115,0,21
+80386,10531.38057,312776.3627,0,21
+80387,34087.74544,313066.4608,0,21
+80388,25298.07204,313338.8061,0,21
+80389,590606.1561,312620.4033,0,21
+80390,33591.61878,313490.667,0,21
+80391,81225.18317,312361.4754,0,21
+80392,221591.1828,313358.9061,0,21
+80393,155238.9315,312574.7015,0,21
+80394,161176.3535,313131.586,0,21
+80395,163189.2335,313225.4345,0,21
+80396,163603.453,312815.8374,0,21
+80397,163929.7065,312501.686,1396641.373,21
+80398,164062.7516,313284.3378,0,21
+80399,164705.5551,312756.9686,0,21
+80400,164860.0528,312952.1215,0,21
+80401,165345.1809,313074.8932,0,21
+80402,166404.6259,313991.1517,0,21
+80403,166711.3614,314309.0355,0,21
+80404,167580.3723,314738.4719,0,21
+80405,167804.0453,315761.9463,0,21
+80406,169263.3681,315599.1824,0,21
+80407,169059.3081,316478.4847,0,21
+80408,170456.6318,316593.5775,0,21
+80409,170607.6511,277589.9951,0,21
+80410,171657.6457,277536.3572,0,21
+80411,171783.2386,112944.2426,0,21
+80412,173055.0945,25912.41993,0,21
+80413,173442.0139,837121.3895,0,21
+80414,146349.0954,165906.5391,0,21
+80415,147685.3986,280071.9972,0,21
+80416,225085.7958,361968.1302,0,21
+80417,164849.3923,317613.7852,0,21
+80418,171249.2166,322851.9639,0,21
+80419,31677.3121,322820.7187,0,21
+80420,27562.21901,346927.3564,0,21
+80421,27916.79349,324649.9416,0,21
+80422,27922.92847,328718.2096,0,21
+80423,638705.8122,334005.3861,0,21
+80424,48999.40487,331928.1241,0,21
+80425,90722.7101,332614.3198,0,21
+80426,252912.0308,332895.1833,0,21
+80427,171359.2832,333955.5153,0,21
+80428,182482.7657,333848.9483,0,21
+80429,184089.8676,334373.38,0,21
+80430,184339.0177,336502.7596,0,21
+80431,184958.0473,336937.2385,0,21
+80432,185447.6517,337319.1363,0,21
+80433,186013.349,337605.0909,0,21
+80434,186749.4075,338351.2918,1333985.849,21
+80435,187157.3549,338346.4723,0,21
+80436,187891.0405,339448.9405,0,21
+80437,188228.7338,339417.9852,0,21
+80438,189002.3198,340317.8724,0,21
+80439,189318.1328,340439.4597,0,21
+80440,190438.8833,340460.8367,0,21
+80441,190298.7596,299791.0166,0,21
+80442,191454.2018,299592.1089,0,21
+80443,191588.0928,121498.8106,0,21
+80444,192564.0758,37997.79012,0,21
+80445,192657.7825,898624.4015,0,21
+80446,164282.9173,198075.408,0,21
+80447,164502.6065,286280.5697,0,21
+80448,246233.0101,393712.6046,0,21
+80449,188281.1714,340549.6891,0,21
+80450,186711.9132,337806.4135,0,21
+80451,201617.995,338498.5158,0,21
+80452,196279.1151,338952.787,0,21
+80453,29771.76623,339085.4725,0,21
+80454,29857.52326,339828.9314,0,21
+80455,29899.03186,340001.8041,0,21
+80456,29956.47796,340536.1516,0,21
+80457,692768.1068,340377.852,0,21
+80458,85614.13351,341299.6685,0,21
+80459,105210.9329,374066.8779,0,21
+80460,274909.7325,341613.4959,0,21
+80461,194618.5478,345262.5364,0,21
+80462,204683.0731,355558.4327,0,21
+80463,205594.3997,350386.4666,0,21
+80464,206648.0516,351839.6231,0,21
+80465,206759.6951,352194.2428,0,21
+80466,207570.9675,352066.5458,0,21
+80467,208116.1875,353413.9039,0,21
+80468,208879.8565,353294.4833,0,21
+80469,209189.747,353584.0289,0,21
+80470,210093.3469,353849.2536,0,21
+80471,210634.8698,354678.2502,1276780.187,21
+80472,211136.9423,355044.1599,0,21
+80473,211812.1497,311636.0422,0,21
+80474,212479.0036,311290.1089,0,21
+80475,212969.8081,122977.1436,0,21
+80476,213641.6346,42802.93214,0,21
+80477,214564.9016,942330.4563,0,21
+80478,183208.6731,219249.1467,0,21
+80479,184095.6024,285191.4793,0,21
+80480,268032.721,414246.8218,0,21
+80481,215675.1919,352322.6251,0,21
+80482,205799.5267,358943.1878,0,21
+80483,223356.2654,359559.1627,0,21
+80484,218770.4058,359704.6094,0,21
+80485,219006.9025,360042.2738,0,21
+80486,219984.1733,360702.1389,0,21
+80487,32088.44319,360630.9263,0,21
+80488,32106.41851,361508.1077,0,21
+80489,32202.67002,352632.0172,0,21
+80490,688673.3349,352901.6944,0,21
+80491,98484.13312,353282.9248,0,21
+80492,162164.4667,353405.1043,0,21
+80493,274679.7292,354348.0628,0,21
+80494,219048.6344,353994.1299,0,21
+80495,225637.1976,355058.3269,0,21
+80496,226057.0846,393306.149,0,21
+80497,227008.6088,355209.2037,0,21
+80498,227120.3678,357050.2134,0,21
+80499,227962.9963,371235.2298,0,21
+80500,228557.6392,364548.1873,0,21
+80501,228877.7169,366393.4072,0,21
+80502,229614.8687,365730.3292,0,21
+80503,230263.6346,366947.2269,0,21
+80504,230449.5619,367371.246,0,21
+80505,231312.4725,321343.9903,0,21
+80506,231799.2488,322755.7811,0,21
+80507,232142.3991,125110.5183,0,21
+80508,233114.8125,48110.85273,1224541.62,21
+80509,233386.9819,977946.2563,0,21
+80510,200583.9312,238257.171,0,21
+80511,201119.5723,285544.071,0,21
+80512,286923.7974,431667.2531,0,21
+80513,239712.7052,364610.6345,0,21
+80514,223222.3622,370910.2775,0,21
+80515,242341.4765,372308.2124,0,21
+80516,237158.7409,371682.4879,0,21
+80517,238185.7826,372778.8541,0,21
+80518,238216.4417,372714.4819,0,21
+80519,239229.2691,373257.6076,0,21
+80520,33976.89835,372918.1945,0,15.6
+80521,33787.79997,372822.7812,0,15.6
+80522,33809.45867,371125.2739,0,15.6
+80523,727297.5852,369871.4316,0,15.6
+80524,156481.0258,370027.8888,0,15.6
+80525,138339.4969,367698.3195,0,15.6
+80526,305823.7708,357311.5292,0,15.6
+80527,233360.2304,356279.9706,0,15.6
+80528,241044.1174,355278.6406,0,15.6
+80529,241230.0272,354376.2505,0,15.6
+80530,241949.9925,353143.7928,0,15.6
+80531,241944.9329,351732.1722,0,15.6
+80532,242463.8639,391161.5613,0,15.6
+80533,242224.3614,350516.2741,0,15.6
+80534,243343.5981,349010.1628,0,15.6
+80535,242798.559,364978.7377,0,15.6
+80536,243671.8431,354022.831,0,15.6
+80537,243800.5929,311248.1962,0,15.6
+80538,244223.3962,309146.1913,0,15.6
+80539,244245.0235,125858.6056,0,15.6
+80540,245200.6688,44045.033,0,15.6
+80541,244889.8951,935759.6009,0,15.6
+80542,210726.0356,210347.1603,0,15.6
+80543,211763.3289,272940.7243,0,15.6
+80544,298112.4773,405274.2294,0,15.6
+80545,253181.3755,340558.2731,1176844.395,15.6
+80546,232733.9527,344653.7725,0,15.6
+80547,252289.3657,345209.3206,0,15.6
+80548,248110.1773,342713.0037,0,15.6
+80549,247652.9827,342544.1072,0,15.6
+80550,248095.5852,341025.7939,0,15.6
+80551,248326.727,339714.4698,0,15.6
+80552,248905.747,338474.4657,0,15.6
+80553,34800.82144,337848.5362,0,15.6
+80554,34845.18869,335998.7763,0,15.6
+80555,34885.40759,335815.0197,0,15.6
+80556,751949.9112,333373.2759,0,15.6
+80557,195389.5988,333366.3622,0,15.6
+80558,123653.8521,331091.013,0,15.6
+80559,326047.7858,331235.8389,0,15.6
+80560,243691.6943,329066.0632,0,15.6
+80561,252321.1242,328035.5381,0,15.6
+80562,252106.3956,318388.7384,0,15.6
+80563,253407.4828,317119.0701,0,15.6
+80564,252783.7937,315705.2959,0,15.6
+80565,253302.5493,314657.4987,0,15.6
+80566,253797.4474,313483.8428,0,15.6
+80567,254025.9085,312673.1718,0,15.6
+80568,253887.8853,310426.9144,0,15.6
+80569,254742.7605,269627.5092,0,15.6
+80570,254782.7912,306763.0677,0,15.6
+80571,254910.0431,114409.9325,0,15.6
+80572,255423.7151,26433.3486,0,15.6
+80573,255758.7247,839199.1041,0,15.6
+80574,220325.3893,151754.8374,0,15.6
+80575,220967.43,267095.1131,0,15.6
+80576,308256.0118,354657.9821,0,15.6
+80577,266089.1021,303798.2069,0,15.6
+80578,243041.3806,308857.9204,0,15.6
+80579,262199.8077,306597.9223,0,15.6
+80580,258425.8363,306103.1252,0,15.6
+80581,257865.4838,308215.0428,0,15.6
+80582,258711.532,310379.4501,1133310.693,15.6
+80583,258198.6785,313619.6127,0,15.6
+80584,259023.7811,314992.3947,0,15.6
+80585,258855.7496,317658.1837,0,15.6
+80586,35851.11251,319756.1373,0,15.6
+80587,35839.2789,322815.7281,0,15.6
+80588,35895.67782,324193.9086,0,15.6
+80589,773573.5018,327644.0242,0,15.6
+80590,234467.8479,329139.2367,0,15.6
+80591,109829.2199,331821.2389,0,15.6
+80592,344387.2747,334525.6594,0,15.6
+80593,252893.7513,336166.1581,0,15.6
+80594,261687.1016,339105.4833,0,15.6
+80595,261890.568,341324.2319,0,15.6
+80596,262014.5126,343735.0188,0,15.6
+80597,262425.9809,346008.8351,0,15.6
+80598,262255.0893,348574.3405,0,15.6
+80599,263197.9737,351013.2439,0,15.6
+80600,262959.8637,342446.9919,0,15.6
+80601,263085.516,300587.2168,0,15.6
+80602,263077.8643,301790.3771,0,15.6
+80603,263580.3968,117613.7534,0,15.6
+80604,263824.5928,37877.62659,0,15.6
+80605,263678.1725,999482.0367,0,15.6
+80606,228052.4143,220622.6921,0,15.6
+80607,228089.0174,283985.3424,0,15.6
+80608,316344.7073,438169.1214,0,15.6
+80609,274996.5838,367747.7729,0,15.6
+80610,250987.346,377888.9266,0,15.6
+80611,269913.6748,380240.6618,0,15.6
+80612,265790.7914,383521.0902,0,15.6
+80613,266309.3125,385864.0468,0,15.6
+80614,265422.5233,387852.8393,0,15.6
+80615,266585.8556,390626.4064,0,15.6
+80616,266165.2179,392684.007,0,15.6
+80617,266621.2121,395453.3178,0,15.6
+80618,266878.1383,397530.5166,0,15.6
+80619,36731.25055,400216.793,1093590.023,15.6
+80620,36760.83146,402531.1915,0,15.6
+80621,36736.54593,405118.5747,0,15.6
+80622,791282.8069,407091.3313,0,15.6
+80623,264771.1525,410084.0134,0,15.6
+80624,97633.73364,412576.7364,0,15.6
+80625,359342.6637,414367.4665,0,15.6
+80626,259361.0111,417324.6247,0,15.6
+80627,269277.2105,419472.597,0,15.6
+80628,269651.4106,422315.2677,0,15.6
+80629,269577.8793,423828.5363,0,15.6
+80630,269958.4072,427541.5097,0,15.6
+80631,270061.9055,429159.5123,0,15.6
+80632,270044.7503,431909.0359,0,15.6
+80633,270994.6426,379945.4738,0,15.6
+80634,270352.9358,382716.5267,0,15.6
+80635,270565.9972,120287.78,0,15.6
+80636,271345.3913,67686.89085,0,15.6
+80637,270967.8339,1115021.022,0,15.6
+80638,234015.8372,265241.4046,0,15.6
+80639,234442.468,515283.1305,0,15.6
+80640,323455.0828,435484.396,0,15.6
+80641,282428.2983,452096.631,0,15.6
+80642,257414.8949,458270.6598,0,15.6
+80643,275472.8066,446979.5992,0,15.6
+80644,271791.6722,447478.7323,0,15.6
+80645,270534.2918,447698.4471,0,15.6
+80646,270976.0038,446294.5506,0,15.6
+80647,269760.2111,445844.7546,0,15.6
+80648,270702.9331,445240.1371,0,15.6
+80649,269660.5774,444183.7732,0,15.6
+80650,269700.5011,443542.3787,0,15.6
+80651,269698.2235,442952.8037,0,15.6
+80652,37046.87259,442754.0521,0,15.6
+80653,37095.04944,441143.9142,0,15.6
+80654,36984.88326,440884.9878,0,15.6
+80655,795267.9067,440171.8324,0,15.6
+80656,272973.6776,439683.411,1057321.434,15.6
+80657,92329.23207,438789.6634,0,15.6
+80658,359974.4215,437667.7119,0,15.6
+80659,259403.2751,437973.1701,0,15.6
+80660,268124.7477,436349.3757,0,15.6
+80661,268105.7175,436125.5395,0,15.6
+80662,267321.881,435654.5617,0,15.6
+80663,267609.9948,434162.0434,0,15.6
+80664,267137.7484,434270.0188,0,15.6
+80665,266981.5706,378520.3448,0,15.6
+80666,266681.1352,377625.4786,0,15.6
+80667,266434.5079,136213.3315,0,15.6
+80668,266157.5714,81826.43162,0,15.6
+80669,265990.0794,1107559.161,0,15.6
+80670,229100.3787,254065.5254,0,15.6
+80671,228608.1199,394466.7047,0,15.6
+80672,317396.4021,440006.9353,0,15.6
+80673,274576.575,475626.5381,0,15.6
+80674,251272.3099,414173.791,0,15.6
+80675,268682.9729,415603.328,0,15.6
+80676,265409.6582,435095.7626,0,15.6
+80677,263891.5076,424164.4212,0,15.6
+80678,264286.6111,424873.1489,0,15.6
+80679,263546.0237,423765.1078,0,15.6
+80680,263265.2515,423218.6451,0,15.6
+80681,263535.5641,422954.7144,0,15.6
+80682,262768.4577,421703.6494,0,15.6
+80683,262805.396,421008.2101,0,15.6
+80684,262505.4656,420072.2602,0,15.6
+80685,36380.6348,419682.0957,0,15.6
+80686,36490.06262,418712.8114,0,15.6
+80687,36331.09364,418362.6353,0,15.6
+80688,781589.84,418362.3179,0,15.6
+80689,250057.5256,417404.1375,0,15.6
+80690,96095.20683,416768.6054,0,15.6
+80691,349931.4512,416127.136,0,15.6
+80692,251689.2181,415001.0568,0,15.6
+80693,260818.207,415271.8471,1024208.88,15.6
+80694,260501.9914,414111.8422,0,15.6
+80695,260688.9022,413199.3137,0,15.6
+80696,259780.9571,412495.8485,0,15.6
+80697,260299.0197,357750.0658,0,15.6
+80698,259432.8818,357014.0485,0,15.6
+80699,259185.0421,136085.6551,0,15.6
+80700,259447.3776,73980.48754,0,15.6
+80701,259190.0863,1067509.61,0,15.6
+80702,224336.4364,260528.8103,0,15.6
+80703,224570.9785,334087.7654,0,15.6
+80704,312886.3215,439367.4749,0,15.6
+80705,271019.3263,393144.698,0,15.6
+80706,249075.7378,393586.8696,0,15.6
+80707,267921.4257,445033.1276,0,15.6
+80708,264487.9455,392348.0259,123978.5267,15.6
+80709,264512.3157,392733.3548,0,15.6
+80710,265025.2183,412367.4222,121870.1202,15.6
+80711,265829.3826,401351.9721,0,15.6
+80712,266883.5335,401180.5462,0,15.6
+80713,266625.5325,401775.0244,0,15.6
+80714,267211.9722,399682.7479,0,15.6
+80715,268905.6099,399373.9085,0,15.6
+80716,268323.0355,398704.0332,0,15.6
+80717,269750.9844,397405.1259,0,15.6
+80718,37354.48612,396953.5365,0,15.6
+80719,37491.64776,396267.2595,0,15.6
+80720,37512.87923,395044.1947,0,15.6
+80721,799958.9573,393850.789,0,15.6
+80722,288282.305,393576.9985,0,15.6
+80723,91263.38172,393179.0875,0,15.6
+80724,365199.1449,391617.4839,0,15.6
+80725,267319.5658,390697.559,0,15.6
+80726,274841.002,390435.6232,0,15.6
+80727,276187.234,388960.1935,119863.0035,15.6
+80728,276564.4943,388436.3401,0,15.6
+80729,277176.6248,333819.5836,0,15.6
+80730,278083.5709,333647.2402,1072073.407,15.6
+80731,278211.3422,135222.8566,0,15.6
+80732,278869.7615,63885.91275,0,15.6
+80733,279773.5858,997551.7565,0,15.6
+80734,241588.9044,254385.2059,0,15.6
+80735,242299.2792,296015.9504,111140.8999,15.6
+80736,332055.2855,445641.7697,0,15.6
+80737,292678.4466,362821.4385,109247.7599,15.6
+80738,272056.2812,368124.5683,0,15.6
+80739,285553.0771,367458.4483,0,15.6
+80740,284984.9516,366731.7536,0,15.6
+80741,284909.2072,365562.8301,0,15.6
+80742,284892.9698,420713.4689,0,15.6
+80743,285549.2354,363553.1541,0,15.6
+80744,286342.9965,363253.2499,107411.5875,15.6
+80745,286902.6057,381444.2125,0,15.6
+80746,287606.427,374005.8002,105653.6033,15.6
+80747,288113.7487,372013.4139,0,15.6
+80748,288623.9425,372241.1921,0,15.6
+80749,289241.0189,371320.3933,0,15.6
+80750,290030.0357,369785.7724,103788.4942,15.6
+80751,39800.36982,369984.1695,0,15.6
+80752,39743.47336,368072.0175,0,15.6
+80753,39969.75442,368147.2775,102023.334,15.6
+80754,823012.6034,366362.292,0,15.6
+80755,363721.3209,365925.5462,0,15.6
+80756,105106.5125,364854.1884,100287.1753,15.6
+80757,373022.1766,363706.5943,0,15.6
+80758,295437.4683,363681.0681,0,15.6
+80759,294940.0119,361903.6769,98580.62862,15.6
+80760,296072.6642,362888.1206,0,15.6
+80761,296955.457,308697.5592,96963.43889,15.6
+80762,295955.9927,307953.5013,0,15.6
+80763,295687.6665,133923.0373,0,15.6
+80764,295340.7238,52941.63629,0,15.6
+80765,295334.0606,925820.4471,95227.19928,15.6
+80766,254343.9882,206049.7408,0,15.6
+80767,254721.4681,288483.6856,924905.718,15.6
+80768,343993.9404,405433.0785,0,15.6
+80769,304807.3288,344878.7588,0,15.6
+80770,288048.5713,349391.7523,0,15.6
+80771,292209.6143,347637.4328,0,15.6
+80772,296026.5055,334818.2457,683806.0725,15.6
+80773,292535.2473,332966.5019,0,15.6
+80774,292761.5672,332393.28,0,15.6
+80775,292453.062,329871.0677,0,15.6
+80776,292255.6142,329327.6034,0,15.6
+80777,291381.1797,375223.2207,0,15.6
+80778,291953.5249,326546.3454,0,15.6
+80779,291102.4199,324116.7592,0,15.6
+80780,290846.263,341640.6854,0,15.6
+80781,290812.2371,331423.9064,0,15.6
+80782,290129.2172,330951.46,0,15.6
+80783,290576.4182,330212.6193,0,15.6
+80784,39709.42109,328609.4064,0,15.6
+80785,39726.77576,326612.7798,0,15.6
+80786,39708.62789,325488.8066,0,15.6
+80787,821503.7997,323741.8309,0,15.6
+80788,362119.481,322998.6264,0,15.6
+80789,98327.06449,320549.1854,0,15.6
+80790,363661.9174,319652.3868,0,15.6
+80791,290886.6252,318235.3154,0,15.6
+80792,286333.2791,316439.4765,0,15.6
+80793,287860.1849,266978.5503,0,15.6
+80794,287232.0735,265993.0399,0,15.6
+80795,287417.4492,128752.3985,0,15.6
+80796,286697.4776,41122.84178,0,15.6
+80797,286731.9177,59700.71212,0,15.6
+80798,246677.2006,978582.3665,0,15.6
+80799,246920.1545,202629.0587,0,15.6
+80800,335875.2335,114640.73,0,15.6
+80801,296033.5484,421102.8436,0,15.6
+80802,276462.5212,286607.1752,0,15.6
+80803,285647.9419,299777.8167,0,15.6
+80804,286196.5164,299039.229,1529584.377,15.6
+80805,284485.8583,297985.0177,0,15.6
+80806,284143.2439,296347.0261,0,15.6
+80807,283061.3926,284875.6028,0,15.6
+80808,284045.4211,283400.5814,0,15.6
+80809,282590.2841,282185.8571,0,15.6
+80810,283095.815,280081.3836,0,15.6
+80811,282044.2266,278979.411,0,15.6
+80812,282435.6318,277015.1032,0,15.6
+80813,281748.7801,275739.107,0,15.6
+80814,281687.2128,315707.1544,0,15.6
+80815,281249.2584,272479.3451,0,15.6
+80816,281177.3195,270286.6901,0,15.6
+80817,38857.74881,282708.7072,0,15.6
+80818,38881.02236,275087.457,0,15.6
+80819,38725.13295,274029.7551,0,15.6
+80820,812296.6398,269846.062,0,15.6
+80821,334155.745,278695.046,0,15.6
+80822,89520.32873,284053.0901,0,15.6
+80823,358686.6702,288793.1657,0,15.6
+80824,278383.9599,293940.4024,0,15.6
+80825,276259.5914,252555.9348,0,15.6
+80826,277690.7363,256629.7736,0,15.6
+80827,277407.3842,377547.9585,0,15.6
+80828,276679.8313,44675.11094,0,15.6
+80829,276086.509,58978.6604,0,15.6
+80830,237380.7185,63498.95931,0,15.6
+80831,237145.9321,1016191.715,0,15.6
+80832,325674.8683,230711.5652,0,15.6
+80833,284745.081,150837.5169,0,15.6
+80834,262511.9067,459967.1886,0,15.6
+80835,276143.9419,333234.8454,0,15.6
+80836,273941.3865,352467.875,693686.6774,15.6
+80837,273045.9098,358057.0058,0,15.6
+80838,271614.3629,363294.1303,0,15.6
+80839,271741.5888,366993.975,0,15.6
+80840,270978.6237,372764.0406,0,15.6
+80841,270529.8209,376602.9544,964308.491,15.6
+80842,269991.205,381554.1193,0,15.6
+80843,269792.6847,386336.8849,0,15.6
+80844,269421.6912,377425.4705,0,15.6
+80845,268151.6798,382024.9044,0,15.6
+80846,268372.4224,386427.2728,0,15.6
+80847,267643.5408,391191.9682,0,15.6
+80848,267257.0869,448812.3308,0,15.6
+80849,266366.9824,400539.0566,0,15.6
+80850,37493.83093,407323.8975,0,15.6
+80851,37461.60341,430687.3543,0,15.6
+80852,37455.68133,424199.2217,0,15.6
+80853,797218.9273,430641.2395,0,15.6
+80854,281998.1514,435645.1023,0,15.6
+80855,77148.1581,439560.9366,0,15.6
+80856,355880.8169,444419.5792,0,15.6
+80857,255402.6584,383381.3201,0,15.6
+80858,262550.6578,387887.996,0,15.6
+80859,261889.8333,515675.8221,0,15.6
+80860,261870.8671,481866.1505,0,15.6
+80861,261420.852,72349.03042,0,15.6
+80862,223441.3434,97640.9793,0,15.6
+80863,223702.5167,1154958.02,0,15.6
+80864,311029.1731,302818.9203,0,15.6
+80865,269072.3721,541176.7469,0,15.6
+80866,244736.8266,469734.3732,0,15.6
+80867,263060.0188,513320.148,0,15.6
+80868,258315.8445,499568.5616,689010.6633,15.6
+80869,257499.003,505083.8909,0,15.6
+80870,256835.3609,508567.2283,0,15.6
+80871,256377.4865,513310.8663,0,15.6
+80872,255388.5298,517587.8809,0,15.6
+80873,255715.9264,521690.8318,0,15.6
+80874,254690.8717,526259.3265,0,15.6
+80875,254336.6517,529984.1943,0,15.6
+80876,253841.5056,536259.2442,0,15.6
+80877,253217.0232,537864.9666,0,15.6
+80878,252816.8836,525168.5672,927505.0253,15.6
+80879,252400.2712,528904.3809,0,15.6
+80880,251825.4085,533475.1992,0,17.8
+80881,252404.6456,601651.4863,0,17.8
+80882,253246.3399,535424.1558,0,17.8
+80883,36327.13525,546207.678,0,17.8
+80884,36413.5198,559457.7147,0,17.8
+80885,36544.88816,552251.4279,0,17.8
+80886,776435.7228,553098.1239,0,17.8
+80887,248097.8204,554267.8428,0,17.8
+80888,90093.93326,553444.3833,0,17.8
+80889,347379.8361,474897.3512,0,17.8
+80890,249794.0713,605358.0641,0,17.8
+80891,259960.5353,549260.3762,0,17.8
+80892,260536.3417,553889.9514,0,17.8
+80893,261540.9656,104432.1911,0,17.8
+80894,225166.159,102084.7377,0,17.8
+80895,225173.518,1183995.159,0,17.8
+80896,314872.2327,515378.5384,0,17.8
+80897,274849.6132,547627.269,0,17.8
+80898,251269.176,619810.8717,0,17.8
+80899,270022.8335,526738.1359,0,17.8
+80900,267358.466,573811.6094,686167.4138,17.8
+80901,267200.3502,557002.9369,0,17.8
+80902,267934.8632,557859.926,0,17.8
+80903,268786.3444,557350.0369,0,17.8
+80904,269496.7584,558299.5397,0,17.8
+80905,269870.47,557791.4243,0,17.8
+80906,270878.5486,557630.6513,0,17.8
+80907,271370.544,558368.5007,0,17.8
+80908,272718.2592,558981.6085,0,17.8
+80909,272499.9633,557734.7062,0,17.8
+80910,273950.3129,558965.3641,0,17.8
+80911,274546.3223,539253.2239,0,17.8
+80912,274939.8262,539561.6983,0,17.8
+80913,276078.0339,539651.2073,927561.713,17.8
+80914,276591.7213,610370.2909,0,17.8
+80915,277386.5399,542577.3122,0,17.8
+80916,39061.05738,551627.045,0,17.8
+80917,39253.43488,566581.2946,0,17.8
+80918,39330.46068,559310.3825,0,17.8
+80919,814589.8273,559049.7661,0,17.8
+80920,343855.5747,479486.2437,0,17.8
+80921,90308.80746,612211.814,0,17.8
+80922,361490.426,555756.7518,0,17.8
+80923,624215.3902,559265.6493,0,17.8
+80924,282277.2753,566267.7779,0,17.8
+80925,285104.2458,104121.4393,0,17.8
+80926,246313.101,102971.317,0,17.8
+80927,246329.6858,1185635.479,0,17.8
+80928,338843.7482,529836.5867,0,17.8
+80929,298047.2795,546895.1442,0,17.8
+80930,282277.1397,633707.5641,0,17.8
+80931,289488.3503,529457.5455,0,17.8
+80932,292308.5305,580217.4729,683439.9655,17.8
+80933,291417.297,563373.9165,0,17.8
+80934,291900.0781,563904.5711,0,17.8
+80935,292775.3501,563361.8367,63.97630046,17.8
+80936,293508.484,563927.7001,201210.011,17.8
+80937,293805.4242,564446.9352,113733.9195,17.8
+80938,295135.2864,563527.5018,119612.5458,17.8
+80939,295898.4957,563955.1779,517.7092787,17.8
+80940,296290.9425,564791.7755,193378.1178,20
+80941,296111.6705,563082.7229,93257.50826,20
+80942,296163.041,564194.1699,0,20
+80943,296742.945,562571.1577,0,20
+80944,296438.5231,542812.3336,0,20
+80945,296607.6169,542274.2221,0,20
+80946,296307.4312,542630.71,0,20
+80947,296136.6117,613304.9659,0,20
+80948,296330.8677,543830.7457,846559.9277,20
+80949,42208.96189,552907.7254,0,20
+80950,42184.00425,566471.6691,0,20
+80951,42275.05297,477171.834,0,20
+80952,833818.6088,613032.444,0,20
+80953,389061.7898,552482.9942,0,20
+80954,109296.7495,558177.0511,0,20
+80955,367880.9156,563677.3062,0,20
+80956,298630.8521,560211.2371,0,20
+80957,294658.568,102727.7328,0,20
+80958,253175.0029,102153.8058,0,20
+80959,253137.8869,1186736.262,0,20
+80960,344979.8738,513074.846,0,20
+80961,304185.7726,550110.0191,0,20
+80962,289487.9401,617309.9976,0,20
+80963,291558.4302,528351.6382,0,20
+80964,296427.0781,571921.7086,652669.7664,20
+80965,292868.6696,556479.2283,0,20
+80966,295582.6158,556533.7413,0,20
+80967,633849.7339,554891.3957,0,20
+80968,294311.0588,555707.5043,0,20
+80969,294620.7642,553364.6182,0,20
+80970,294093.5762,554386.5087,0,20
+80971,294393.6375,553923.2943,0,20
+80972,294271.8425,552310.6957,0,20
+80973,293410.8512,552570.5984,0,20
+80974,294133.3272,552204.8435,0,20
+80975,293488.1908,551416.6646,0,20
+80976,293760.9238,551153.4817,0,20
+80977,293221.3073,531302.6488,0,20
+80978,293425.9353,531052.9748,0,20
+80979,292908.8756,530498.9376,0,20
+80980,293352.3542,600042.6016,0,20
+80981,292556.6122,531572.0073,0,20
+80982,43308.65019,459295.8027,0,20
+80983,43200.18628,611458.2438,852009.1208,20
+80984,43330.48755,536912.0542,0,20
+80985,830707.9775,548455.2837,0,20
+80986,382271.7034,552110.2821,0,20
+80987,100926.7953,548927.6009,0,20
+80988,362631.5563,544676.5612,0,20
+80989,298146.5476,101868.9829,0,20
+80990,246110.0471,100866.7927,0,20
+80991,248723.0475,1185023.881,0,20
+80992,340819.0393,474971.0483,0,20
+80993,299289.9087,558271.1806,0,20
+80994,282650.6897,577480.5614,0,20
+80995,287762.3608,527598.838,0,20
+80996,296739.0466,555347.5551,655065.6504,20
+80997,289857.6198,542866.699,0,20
+80998,291336.9151,541728.2649,0,20
+80999,290658.5967,542404.485,0,20
+81000,290783.2888,540802.7224,0,21
+81001,287890.6316,538357.0665,0,21
+81002,287812.9715,538597.8236,0,21
+81003,287561.8983,537710.8199,0,21
+81004,287288.7011,539026.7597,0,21
+81005,287094.8642,537790.9244,0,21
+81006,287568.8363,538577.2176,0,21
+81007,286532.1266,538333.165,0,21
+81008,287282.7188,538488.4042,0,21
+81009,286723.3056,539248.0822,0,21
+81010,286578.3143,519077.9554,0,21
+81011,286509.2577,520531.5966,0,21
+81012,286487.8703,519929.4379,0,21
+81013,286014.584,508070.6497,0,21
+81014,286623.5999,579317.9311,0,21
+81015,43213.71912,520618.9512,0,21
+81016,43421.36417,549168.9217,0,21
+81017,43252.90715,542740.6302,0,21
+81018,823655.9009,541220.0501,0,21
+81019,362173.717,539034.3584,0,21
+81020,90908.95528,540302.0063,856518.5826,21
+81021,357463.9523,99620.72533,0,21
+81022,247576.4994,99578.80897,0,21
+81023,239294.9949,1183722.424,0,21
+81024,333816.2665,460964.9882,0,21
+81025,292525.5619,561681.7798,0,21
+81026,273538.3416,565019.6669,0,21
+81027,287428.0831,530023.3166,0,21
+81028,286520.6904,551240.7387,657068.7243,21
+81029,285175.286,542576.507,0,21
+81030,284332.6973,540703.1815,0,21
+81031,284749.4553,541559.5254,0,21
+81032,284235.5862,541979.7657,0,21
+81033,284546.3387,541441.0702,0,21
+81034,283931.6502,542037.22,0,21
+81035,283956.09,541602.8,0,21
+81036,284070.9608,541373.4356,0,21
+81037,283242.1564,542734.6411,0,21
+81038,283837.298,541398.4749,0,21
+81039,283280.6449,541971.7688,0,21
+81040,283208.2365,542387.5931,0,21
+81041,283314.0057,541927.0283,0,21
+81042,282851.2692,542026.004,0,21
+81043,282611.9663,523630.5296,0,21
+81044,283101.2793,442590.3435,0,21
+81045,281937.4962,580955.6391,0,21
+81046,282724.4413,582556.5072,0,21
+81047,282228.2064,526987.6642,0,21
+81048,44059.18775,541294.0953,0,21
+81049,44270.14532,550680.3244,0,21
+81050,44156.19497,541798.756,0,21
+81051,819289.4436,543822.8961,0,21
+81052,342350.2727,543642.5996,0,21
+81053,85158.83998,100371.5641,0,21
+81054,317941.9681,100127.7825,0,21
+81055,237938.0833,1184546.973,0,21
+81056,327249.8136,470357.2361,0,21
+81057,286718.5737,560754.5044,858372.8177,21
+81058,273515.4885,575426.8669,0,21
+81059,282806.8263,530603.0816,0,21
+81060,282099.7765,559419.0197,658889.227,21
+81061,280511.1426,544291.2413,0,21
+81062,277567.316,543741.1636,0,21
+81063,277172.2729,541583.2989,0,21
+81064,276327.912,540177.6175,0,21
+81065,275154.0053,538457.4144,0,21
+81066,274756.6039,537650.7879,0,21
+81067,273773.1536,535991.0967,0,21
+81068,273585.1034,533858.8474,0,21
+81069,272048.8666,533106.4187,0,21
+81070,271855.4365,532171.9852,0,21
+81071,270858.2588,529500.7801,0,21
+81072,270043.6981,529024.9987,0,21
+81073,269526.3544,526502.8,0,21
+81074,268735.8861,526631.5458,0,21
+81075,267877.2168,444540.5279,0,21
+81076,266945.0832,564915.352,0,21
+81077,266592.638,490014.1753,0,21
+81078,264983.3449,506567.2789,0,21
+81079,255991.7951,572551.7613,0,21
+81080,252848.8462,497661.933,0,21
+81081,41707.99613,509295.6426,0,21
+81082,41674.35738,522589.084,0,21
+81083,41284.31353,512124.3136,0,21
+81084,718186.4206,511258.6652,0,21
+81085,257150.4671,95359.0233,0,21
+81086,39056.9138,95205.70054,0,21
+81087,284201.7872,1179061.546,0,21
+81088,280433.8477,371842.6715,0,21
+81089,243094.1862,564309.2613,0,21
+81090,228135.1458,473043.3516,0,21
+81091,242222.1691,524353.4628,0,21
+81092,236832.7457,502165.4007,0,21
+81093,236349.8401,499108.9617,864576.9857,21
+81094,234860.0613,497947.1532,0,21
+81095,233895.8007,496446.9934,0,21
+81096,232885.2484,495007.4541,0,21
+81097,231060.4909,493545.0566,0,21
+81098,229870.0116,491971.9732,0,21
+81099,228759.2439,490443.079,0,21
+81100,227710.4353,489274.8462,0,21
+81101,226020.5352,487589.2813,0,21
+81102,224987.1754,486209.2058,0,21
+81103,223751.8123,484674.1251,0,21
+81104,222260.0091,483598.5222,0,21
+81105,220953.191,481711.9208,0,21
+81106,220272.3283,406818.0251,0,21
+81107,218220.6081,405676.1642,0,21
+81108,217508.3272,550977.0855,0,21
+81109,215686.0051,474513.6757,0,21
+81110,215066.5421,446589.201,0,21
+81111,213390.1102,471560.3278,0,21
+81112,212118.8914,514394.3236,0,21
+81113,210780.1508,458016.0166,0,21
+81114,37515.30167,462339.0884,0,21
+81115,37290.58457,476946.1443,0,21
+81116,37168.45531,465976.5095,0,21
+81117,608679.129,89130.18852,0,21
+81118,88097.07203,88703.91829,0,21
+81119,103658.8255,1148364.535,0,21
+81120,287611.7175,279603.7344,0,21
+81121,199231.9561,487160.1652,0,21
+81122,192735.3145,463257.4528,0,21
+81123,209368.2248,478780.5097,0,21
+81124,204172.4857,469406.6823,0,21
+81125,205357.2161,469900.8019,0,21
+81126,205593.5985,472231.8871,0,21
+81127,206027.2381,474447.7299,0,21
+81128,207007.9224,474766.0382,0,21
+81129,207404.9239,477243.6664,768961.2526,21
+81130,207689.6421,479421.6269,0,21
+81131,208216.6602,479418.5688,0,21
+81132,209003.3357,483262.6421,0,21
+81133,209419.7831,483325.5478,0,21
+81134,209966.1908,485783.5914,0,21
+81135,210459.0496,487120.454,0,21
+81136,211200.3898,489561.4469,0,21
+81137,211496.0243,490699.9607,0,21
+81138,211943.8682,417158.519,0,21
+81139,212629.5593,419456.9611,0,21
+81140,213032.7242,568832.9255,0,21
+81141,213598.3788,515732.7095,0,21
+81142,213860.6707,470133.2793,0,21
+81143,214625.6192,499683.3155,0,21
+81144,214818.8651,489199.3255,0,21
+81145,215543.7427,551032.3379,0,21
+81146,216025.8063,490978.6738,0,21
+81147,38070.86132,499209.235,0,21
+81148,38002.85214,517528.624,0,21
+81149,38147.73948,94641.15248,0,21
+81150,587934.253,96277.73233,0,21
+81151,117110.715,1180731.727,0,21
+81152,186066.1266,388204.0362,0,21
+81153,267040.9813,570417.9715,0,21
+81154,210370.3603,490830.9837,0,21
+81155,225959.2817,538539.0022,0,21
+81156,224092.5595,522834.6562,0,21
+81157,224539.7043,522656.5869,0,21
+81158,225468.9375,524082.8834,0,21
+81159,226167.3256,525356.8095,0,21
+81160,227380.5311,526800.0311,0,21
+81161,228166.8852,528903.8611,0,21
+81162,229216.632,529083.1952,0,21
+81163,229885.5992,532167.438,0,21
+81164,231326.629,531824.8493,0,21
+81165,231903.8032,535284.2871,760962.1336,21
+81166,232748.4285,535141.5075,0,21
+81167,234064.2727,537671.9043,0,21
+81168,234912.4206,539077.9225,0,21
+81169,236017.7402,539596.6004,0,21
+81170,236617.6359,461260.9511,0,21
+81171,238311.036,603945.3339,0,21
+81172,238471.3808,532703.821,0,21
+81173,240134.6887,550420.2444,0,21
+81174,241065.82,553247.4844,0,21
+81175,241966.4641,529771.9322,0,21
+81176,242763.6388,532828.1054,0,21
+81177,244630.2918,534089.2832,0,21
+81178,244593.1448,607317.7595,0,21
+81179,246593.8094,537544.7691,0,21
+81180,40806.01158,550109.7355,0,21
+81181,40847.59513,110468.8919,0,21
+81182,438803.6847,101733.217,0,21
+81183,661848.3477,1184487.174,0,21
+81184,290357.0098,492885.5276,0,21
+81185,122230.9257,536674.6744,0,21
+81186,294863.9923,587077.3606,0,21
+81187,252080.1343,521400.4798,0,21
+81188,246343.4922,554362.3172,0,21
+81189,247230.4906,542755.7559,0,21
+81190,247819.1533,540564.908,0,21
+81191,246923.8847,538643.8709,0,21
+81192,247502.1387,536789.106,0,21
+81193,247518.4748,536794.3058,0,21
+81194,247348.8007,535557.3158,0,21
+81195,247047.7145,537203.3383,0,21
+81196,249206.194,535783.1096,0,21
+81197,249800.1319,535846.2237,0,21
+81198,249237.0851,536599.2388,0,21
+81199,250147.6791,537025.1406,0,21
+81200,249709.8875,537453.3026,0,21
+81201,249862.8088,455829.3499,753659.5905,21
+81202,250309.8813,600272.3328,0,21
+81203,249947.1678,521268.2868,0,21
+81204,250274.8929,542914.6895,0,21
+81205,250730.541,543576.8175,0,21
+81206,250426.1577,542904.3796,0,21
+81207,250428.792,541431.9858,0,21
+81208,250973.7795,525099.85,0,21
+81209,250839.4602,525430.4711,0,21
+81210,252495.5964,527149.0707,0,21
+81211,252234.3324,526563.1322,0,21
+81212,252395.8943,586540.8421,0,21
+81213,40719.30655,86928.20496,0,21
+81214,0,91442.50613,0,21
+81215,0,1189358.952,0,21
+81216,779086.5802,451033.5971,0,21
+81217,231193.0946,562967.0668,0,21
+81218,113086.9526,629832.8293,0,21
+81219,318487.7535,524436.5043,0,21
+81220,249286.9825,563380.0636,0,21
+81221,250342.509,558910.1493,0,21
+81222,250582.145,560352.6434,0,21
+81223,250313.51,562545.705,0,21
+81224,250799.5271,563791.6925,0,21
+81225,249979.555,565093.4256,0,21
+81226,249721.7191,566670.2569,0,21
+81227,249394.9376,567394.8498,0,21
+81228,249858.3279,569069.3746,0,21
+81229,248535.0055,570376.9674,0,21
+81230,249163.6108,571656.3164,0,21
+81231,248358.3976,573019.1715,0,21
+81232,248200.4772,489259.3856,0,21
+81233,247875.8834,633464.2656,0,21
+81234,247796.8668,565423.2435,0,21
+81235,247231.126,577990.0311,0,21
+81236,247114.8255,582788.9029,0,21
+81237,246752.554,582070.935,746996.3246,21
+81238,246694.9166,583641.4022,0,21
+81239,246188.0185,583943.3377,0,21
+81240,247365.6504,585821.9014,0,21
+81241,248218.5502,583852.7891,0,21
+81242,247383.3109,562725.5748,0,21
+81243,248077.7563,560768.4952,0,21
+81244,247226.5665,558175.995,0,21
+81245,247892.8589,146777.1231,0,21
+81246,0,87265.14935,0,21
+81247,0,1182048.164,0,21
+81248,87220.20387,542414.627,0,21
+81249,728413.6934,536016.093,0,21
+81250,193959.0836,651135.5577,0,21
+81251,126574.8438,552559.118,0,21
+81252,319356.7966,557886.1129,0,21
+81253,239182.8792,565725.9664,0,21
+81254,247186.4282,556121.0423,0,21
+81255,246635.2756,554663.3618,0,21
+81256,246632.9764,552056.4623,0,21
+81257,246834.872,549222.8243,0,21
+81258,246087.4502,547843.9965,0,21
+81259,246041.2074,545301.882,0,21
+81260,245849.724,542359.2754,0,21
+81261,245979.5923,540865.7743,0,21
+81262,245200.2689,539021.4342,0,21
+81263,245389.2187,455654.6079,0,21
+81264,245141.1641,595960.0911,0,21
+81265,244721.6453,515234.4828,0,21
+81266,244714.4744,534300.2668,0,21
+81267,244658.5081,532018.7898,0,21
+81268,244114.0673,526528.6702,0,21
+81269,244107.3662,522620.8813,0,21
+81270,243910.4905,521699.3946,0,21
+81271,242194.2931,517431.1829,0,21
+81272,242482.3892,515861.8268,0,21
+81273,581261.7178,508506.179,740921.9227,21
+81274,241811.4383,505752.3418,0,21
+81275,241808.6736,486946.6417,0,21
+81276,241552.2706,483461.0021,0,21
+81277,241779.6495,75292.23873,0,21
+81278,202500.9657,74797.85178,0,21
+81279,0,1212177.489,0,21
+81280,86423.93999,275774.4656,0,21
+81281,35977.69765,570977.4971,0,21
+81282,704441.3053,466015.9155,0,21
+81283,183561.8588,476974.078,0,21
+81284,130250.7307,476432.92,0,21
+81285,307538.5498,466416.7911,0,21
+81286,233375.9692,463063.6468,0,21
+81287,240658.2819,458970.4666,0,21
+81288,240373.0605,455184.7462,0,21
+81289,240511.3974,452220.0585,0,21
+81290,240275.0185,447819.8059,0,21
+81291,240107.2115,444608.3767,0,21
+81292,239829.0181,440629.0611,0,21
+81293,240141.3292,437095.1755,0,21
+81294,239454.7443,365630.5556,0,21
+81295,239400.5799,361823.129,0,21
+81296,239426.7576,505941.5352,0,21
+81297,239218.1529,413481.7447,0,21
+81298,238865.6592,416917.3238,0,21
+81299,239163.7031,422999.8497,0,21
+81300,238705.4326,408733.6833,0,21
+81301,237783.1431,410961.7858,0,21
+81302,236828.3881,407668.1544,0,21
+81303,235878.0336,405936.7934,0,21
+81304,234647.5763,403360.1469,0,21
+81305,233981.0442,401187.3177,0,21
+81306,233056.5276,399719.5606,0,21
+81307,231436.5174,397230.3901,0,21
+81308,231349.8167,395568.7149,0,21
+81309,229502.847,63458.75025,0,21
+81310,192829.8982,63190.78864,735382.4451,21
+81311,191832.9152,925470.8477,0,21
+81312,85194.60767,251437.4547,0,21
+81313,32071.13926,389888.6233,0,21
+81314,18568.52892,375350.7426,0,21
+81315,701453.2355,408562.2087,0,21
+81316,118011.518,374603.1464,0,21
+81317,138818.7565,374229.3788,0,21
+81318,281085.9681,376545.4635,0,21
+81319,213191.5696,371460.2004,0,21
+81320,219721.1265,368966.1353,0,21
+81321,218584.7479,367982.9304,0,21
+81322,217850.534,364409.1038,0,21
+81323,216726.434,362939.9264,0,21
+81324,215428.1316,360608.7531,0,21
+81325,215105.5206,358322.3402,0,21
+81326,213300.7378,296411.3223,0,21
+81327,213278.3801,295024.9327,0,21
+81328,211366.9344,423008.3284,0,21
+81329,210862.4927,338539.817,0,21
+81330,209686.0856,348882.4483,0,21
+81331,208805.3232,352432.4517,0,21
+81332,208019.232,339553.8267,0,21
+81333,207038.2986,344399.5067,0,21
+81334,205827.6433,340464.5685,0,21
+81335,205540.1025,339187.1773,0,21
+81336,203980.7292,337546.8388,0,21
+81337,203336.5784,335999.5857,0,21
+81338,202658.2339,334596.0595,0,21
+81339,201387.2451,333058.4353,0,21
+81340,200815.6882,331888.5218,0,21
+81341,199648.1723,63515.13754,0,21
+81342,166582.6918,63514.50152,0,21
+81343,165982.0353,716911.4719,0,21
+81344,244419.9238,274797.7841,0,21
+81345,20788.46095,309939.1981,0,21
+81346,19504.59541,316507.3048,0,21
+81347,38909.60121,324791.2612,729356.6149,21
+81348,31100.88337,314313.7527,0,21
+81349,677938.8677,313289.8239,0,21
+81350,99395.18224,311281.4889,0,21
+81351,61571.77116,310647.5405,0,21
+81352,279285.9233,335857.846,0,21
+81353,175918.9302,307950.9346,0,21
+81354,189552.3352,309277.9558,0,21
+81355,188187.1439,314703.8711,0,21
+81356,188097.402,310974.683,0,21
+81357,187028.2016,308608.2054,0,21
+81358,185583.4602,254860.611,0,21
+81359,185264.1442,252842.874,0,21
+81360,184160.4355,361788.105,0,21
+81361,183651.3888,300586.8047,0,21
+81362,183058.5663,309883.4685,0,21
+81363,183079.2729,309434.1207,0,21
+81364,182619.8199,305709.1292,0,21
+81365,182458.4749,307478.7666,0,21
+81366,181483.3882,307107.0421,0,21
+81367,181560.6308,306497.5769,0,21
+81368,180952.1042,307584.7129,0,21
+81369,181022.3946,306360.863,0,21
+81370,180203.4397,308330.6995,0,21
+81371,179916.093,306827.1478,0,21
+81372,179915.3341,308015.611,0,21
+81373,179054.8673,60107.73498,0,21
+81374,149544.7621,59859.78002,0,21
+81375,149036.6536,721481.2645,0,21
+81376,224885.8479,248703.9836,0,21
+81377,161879.5602,301001.3977,0,21
+81378,169394.5968,309184.0686,0,21
+81379,32441.71811,318214.5588,0,21
+81380,30402.55711,309390.3087,0,21
+81381,28530.97416,309001.8881,0,21
+81382,29275.04151,302354.7318,0,21
+81383,622764.0742,301934.9772,0,21
+81384,60462.71167,302309.7339,723955.1161,21
+81385,78452.93293,301999.3851,0,21
+81386,242852.994,302400.181,0,21
+81387,166612.2429,303144.6263,0,21
+81388,173312.2123,302306.2623,0,21
+81389,174138.0004,334652.005,0,21
+81390,173852.6054,251700.0571,0,21
+81391,173591.676,253220.3745,0,21
+81392,173019.9194,358377.3337,0,21
+81393,172510.2531,312418.1443,0,21
+81394,172351.4891,311099.8277,0,21
+81395,171744.3092,316541.9805,0,21
+81396,171300.1325,308614.5245,0,21
+81397,171181.2145,313139.1976,0,21
+81398,170335.1706,312227.8337,0,21
+81399,170403.4808,311454.4372,0,21
+81400,169750.8386,313045.9666,0,21
+81401,169201.6697,311644.4846,0,21
+81402,169158.3598,312979.4416,0,21
+81403,168530.3878,312311.4944,0,21
+81404,168094.3327,313362.1435,0,21
+81405,167717.8992,58249.91997,0,21
+81406,139488.9023,58379.76895,0,21
+81407,138878.3524,736236.6509,0,21
+81408,138925.2991,247123.1334,0,21
+81409,221846.7876,323857.2496,0,21
+81410,161939.4749,306106.9657,0,21
+81411,144111.1173,326692.5049,0,21
+81412,171421.6155,315226.8103,0,21
+81413,24467.49917,315161.4797,0,21
+81414,29794.8776,315680.8645,0,21
+81415,26630.11089,315269.8811,0,21
+81416,27481.41255,316145.1821,0,21
+81417,569202.2034,316243.5258,0,21
+81418,33846.0701,316328.1559,0,21
+81419,91729.5289,308968.6967,0,21
+81420,221483.461,309092.977,0,21
+81421,152704.1228,308231.8509,719416.4799,21
+81422,161786.4525,257533.6425,0,21
+81423,162389.7208,257271.5742,0,21
+81424,162493.622,343465.7236,0,21
+81425,162660.8963,342352.6387,0,21
+81426,162770.8129,303355.4233,0,21
+81427,162427.6261,310613.4996,0,21
+81428,162870.3192,310416.2521,0,21
+81429,162764.6297,310846.674,0,21
+81430,162897.0139,308199.1808,0,21
+81431,163061.6527,307316.7688,0,21
+81432,162865.1909,306423.7032,0,21
+81433,163126.5416,305452.7136,0,21
+81434,162949.4545,304345.6803,0,21
+81435,163585.4359,303986.7152,0,21
+81436,162983.7196,302387.7799,0,21
+81437,163632.668,54679.60119,0,21
+81438,163325.8736,54293.13697,0,21
+81439,136315.2819,712530.1889,0,21
+81440,136359.0053,242663.1667,0,21
+81441,136338.1637,282778.1644,0,21
+81442,219584.7273,302142.4176,0,21
+81443,159165.7146,304459.3757,0,21
+81444,143974.5496,295631.7446,0,21
+81445,170346.1666,295288.2285,0,21
+81446,160297.1373,293935.7008,0,21
+81447,28327.81698,293289.972,0,21
+81448,27362.48448,292502.6345,0,21
+81449,27073.76987,291155.6074,0,21
+81450,27400.16475,290753.428,0,21
+81451,569945.1716,288375.8199,0,21
+81452,37966.31666,287820.0224,0,21
+81453,93075.04284,286637.0226,0,21
+81454,228429.5623,241067.0588,0,21
+81455,155225.4121,234112.6636,0,21
+81456,166715.2749,318739.4233,0,21
+81457,167459.0869,277262.1883,0,21
+81458,167424.9653,280664.9314,715289.35,21
+81459,167735.3459,274428.0208,0,21
+81460,168227.2407,275829.2593,0,21
+81461,168606.4049,275479.5936,0,21
+81462,168549.2814,304980.2123,0,21
+81463,169302.96,273207.4836,0,21
+81464,168925.0368,272714.9058,0,21
+81465,169931.9393,279849.7926,0,21
+81466,169761.9562,277737.3984,0,21
+81467,170394.2212,276510.3561,0,21
+81468,170838.3244,275564.2962,0,21
+81469,170718.2964,49788.63476,0,21
+81470,171272.2848,49420.52845,0,21
+81471,171985.1222,656574.9012,0,21
+81472,143714.3683,238057.9287,0,21
+81473,144753.6309,216208.9698,0,21
+81474,144695.7225,300217.4134,0,21
+81475,228881.1543,272458.5166,0,21
+81476,171356.6816,270241.5166,0,21
+81477,154104.9527,270205.268,0,21
+81478,179713.211,269112.5425,0,21
+81479,171777.5612,268291.7646,0,21
+81480,174588.612,267801.9928,0,21
+81481,28887.63547,267906.9709,0,21
+81482,27966.95465,267255.3108,0,21
+81483,28350.07368,267466.1496,0,21
+81484,28394.07093,267691.9768,0,21
+81485,621730.2172,267569.0772,0,21
+81486,60670.20144,224517.6814,0,21
+81487,81241.54272,225178.772,0,21
+81488,247150.8463,307888.8292,0,21
+81489,167769.8725,264289.3544,0,21
+81490,177392.2734,272444.9611,0,21
+81491,178302.491,262457.5042,0,21
+81492,178570.4513,263680.8039,0,21
+81493,178780.3527,261207.0181,0,21
+81494,179241.5839,261064.0971,0,21
+81495,179341.5812,260422.5112,711967.0257,21
+81496,179607.6752,260940.0679,0,21
+81497,179822.068,260223.6668,0,21
+81498,180109.39,260212.9539,0,21
+81499,180353.5747,260026.0039,0,21
+81500,181601.9925,261483.7651,0,21
+81501,182313.5078,73324.82081,0,21
+81502,182230.0702,42374.02401,0,21
+81503,182631.511,628935.9067,0,21
+81504,182851.6051,237188.4674,0,21
+81505,154249.9905,202538.0726,0,21
+81506,154136.0134,298506.6841,0,21
+81507,231151.2081,264844.3549,0,21
+81508,168559.1601,265475.9885,0,21
+81509,176474.3634,265483.6583,0,21
+81510,185812.3878,265175.0465,0,21
+81511,185477.0659,264893.8457,0,21
+81512,184948.2791,265157.6638,0,21
+81513,184829.1986,264821.8101,0,21
+81514,185325.1705,264142.8439,0,21
+81515,29301.92953,264724.2451,0,21
+81516,29346.02954,263850.3068,0,21
+81517,29346.71252,264171.2058,0,21
+81518,29356.35572,220761.5079,0,21
+81519,662180.878,220943.5063,0,21
+81520,76410.63156,302881.0937,0,21
+81521,72352.53881,260493.6029,0,21
+81522,267810.0086,265739.6643,0,21
+81523,174337.4991,258963.4269,0,21
+81524,186567.8856,265147.9822,0,21
+81525,187353.6217,262098.8224,0,21
+81526,187573.5719,262096.4675,0,21
+81527,187382.4851,261423.0224,0,21
+81528,187246.6142,261586.0306,0,21
+81529,187813.3074,261308.2873,0,21
+81530,187395.0981,260890.7692,0,21
+81531,187973.2918,254583.9062,0,21
+81532,187655.4176,254967.3826,708465.5498,21
+81533,187701.0217,43018.04044,0,21
+81534,187977.1793,43174.01461,0,21
+81535,188110.7226,597636.4041,0,21
+81536,187930.048,231540.3661,0,21
+81537,158332.5723,193322.2099,0,21
+81538,158637.4513,312458.0369,0,21
+81539,235225.1505,252986.9965,0,21
+81540,173735.968,253594.9908,0,21
+81541,178942.9952,260384.3658,0,21
+81542,187965.2028,259544.848,0,21
+81543,188927.9023,258103.2163,0,21
+81544,184324.0303,258233.8042,0,21
+81545,184914.2753,258169.3495,0,21
+81546,184295.8521,257899.6401,0,21
+81547,183445.6194,257805.4641,0,21
+81548,182744.6401,257434.2081,0,21
+81549,29074.6213,257676.3231,0,21
+81550,29138.63562,213666.6999,0,21
+81551,28935.66039,213107.1916,0,21
+81552,28951.18728,294068.4209,0,21
+81553,645201.7202,256097.5945,0,21
+81554,67217.62929,260750.1041,0,21
+81555,73388.97711,252824.3036,0,21
+81556,246631.5506,258653.2266,0,21
+81557,170067.2198,256506.8068,0,21
+81558,174887.9529,256549.8806,0,21
+81559,175967.2242,255657.4236,0,21
+81560,175355.2096,256366.2544,0,21
+81561,174589.1784,255242.9736,0,21
+81562,173885.7729,255905.1724,0,21
+81563,173012.6663,255612.9522,0,21
+81564,172164.4965,255356.3154,0,21
+81565,171640.0409,50719.29371,0,21
+81566,170744.4916,50782.13073,0,21
+81567,169883.3286,569324.4523,0,21
+81568,169262.4551,234642.8893,705465.0061,21
+81569,140888.7136,200713.0917,0,21
+81570,140303.8688,268989.1932,0,21
+81571,139204.1416,251150.9087,0,21
+81572,220249.4582,248146.976,0,21
+81573,160580.3624,248803.7522,0,21
+81574,146747.3347,279123.4221,0,21
+81575,170136.0953,249031.0183,0,21
+81576,163602.8348,248100.7984,0,21
+81577,165346.8722,258343.0639,0,21
+81578,163043.7436,255718.3227,0,21
+81579,163319.7776,254408.1314,0,21
+81580,162925.6163,256010.094,0,21
+81581,162495.9581,255383.3073,0,21
+81582,161967.1197,209954.9839,0,21
+81583,26875.3431,209695.2988,0,21
+81584,26886.08864,298335.7141,0,21
+81585,26857.12839,252981.2807,0,21
+81586,26647.72404,262559.2807,0,21
+81587,562200.2827,252741.0553,0,21
+81588,29428.21971,259646.6121,0,21
+81589,94311.26678,257494.2858,0,21
+81590,212766.8466,257969.4804,0,21
+81591,150850.2049,258266.274,0,21
+81592,157136.1733,258006.5733,0,21
+81593,157579.702,258974.5585,0,21
+81594,157161.3035,258992.6057,0,21
+81595,156819.1614,259432.0014,0,21
+81596,156268.762,259971.6151,0,21
+81597,155925.077,54812.88472,0,21
+81598,155485.1606,54910.24762,0,21
+81599,155107.4065,569443.9319,0,21
+81600,154776.2975,249372.2091,0,21
+81601,155508.4365,221324.2765,0,21
+81602,129711.7082,273243.4704,0,21
+81603,130369.235,261710.2918,0,21
+81604,131102.8317,248422.1381,702539.6694,21
+81605,210123.744,249943.081,0,21
+81606,148216.7764,255481.7158,0,21
+81607,142159.486,249583.3336,0,21
+81608,164322.1149,251631.0759,0,21
+81609,160984.55,250083.5336,0,21
+81610,161124.7151,282115.762,0,21
+81611,161288.0855,248925.6466,0,21
+81612,162581.0655,248686.4183,0,21
+81613,163076.0339,255217.0464,0,21
+81614,163753.2603,207861.2543,0,21
+81615,164269.9965,204691.2065,0,21
+81616,165327.6621,302884.2465,0,21
+81617,27285.52989,242933.9677,0,21
+81618,27320.72891,254752.3195,0,21
+81619,27420.98515,246667.5474,0,21
+81620,366987.18,251701.4169,0,21
+81621,596167.7653,248679.4136,0,21
+81622,40362.22354,247522.618,0,21
+81623,91404.34633,247096.6184,0,21
+81624,229306.5041,246196.8021,0,21
+81625,162798.7318,245908.0074,0,21
+81626,170100.5522,245027.8752,0,21
+81627,171748.5967,245639.1479,0,21
+81628,172585.4866,245515.6971,0,21
+81629,173163.2376,51629.86311,0,21
+81630,173803.3229,51574.76839,0,21
+81631,174690.9295,491843.0825,0,21
+81632,174535.6777,228239.9781,0,21
+81633,175841.5278,183115.256,0,21
+81634,176258.714,267669.7725,0,21
+81635,148014.1044,235764.6832,0,21
+81636,148686.7247,236900.1867,0,21
+81637,149236.8967,235124.5774,0,21
+81638,229913.4194,235061.4373,0,21
+81639,174832.6875,233020.7295,0,21
+81640,159594.1972,226617.8754,700016.8983,21
+81641,186053.3671,225948.9331,0,21
+81642,182996.7172,224590.6856,0,21
+81643,180045.6178,223121.8859,0,21
+81644,182078.1735,222511.7524,0,21
+81645,182507.3019,220620.1513,0,21
+81646,183240.4715,176501.0156,0,21
+81647,183576.2795,175096.7888,0,21
+81648,184559.536,272907.0672,0,21
+81649,184704.0405,230271.7832,0,21
+81650,185464.1174,213660.022,0,21
+81651,29967.32228,215433.404,0,21
+81652,29939.59135,218555.8813,0,21
+81653,30089.15828,217349.9396,0,21
+81654,30161.4245,214594.0624,0,21
+81655,653869.9726,213546.5195,0,21
+81656,79706.14475,211481.142,0,21
+81657,102473.5425,211653.1651,0,21
+81658,255237.2656,209018.1027,0,21
+81659,182455.8311,207907.9251,0,21
+81660,191409.5941,204104.8361,0,21
+81661,192198.8588,46230.40527,0,21
+81662,193062.3576,46369.81436,0,21
+81663,192343.7539,46481.77766,0,21
+81664,193899.8899,488600.2305,0,21
+81665,193136.5361,187837.4827,0,21
+81666,533427.7466,132663.9213,0,21
+81667,194438.575,257962.8951,0,21
+81668,163401.2718,210147.3323,0,21
+81669,163561.1613,221704.3457,0,21
+81670,239780.9875,223721.3847,0,21
+81671,179718.5358,225039.2996,0,21
+81672,189972.8565,226273.8979,0,21
+81673,201968.138,226898.5748,0,21
+81674,195763.115,228553.4417,0,21
+81675,196999.5539,228751.624,0,21
+81676,197325.284,230411.3617,697885.1355,21
+81677,197958.1727,230871.4205,0,21
+81678,198040.3208,187696.3754,0,21
+81679,198504.3422,183603.877,0,21
+81680,198890.9498,292767.3785,0,21
+81681,199243.2909,212293.7501,0,21
+81682,199576.528,226585.6838,0,21
+81683,199904.7726,235553.2024,0,21
+81684,200431.6232,232416.0839,0,21
+81685,32211.84732,232719.1281,0,21
+81686,32234.58399,234156.1543,0,21
+81687,32243.31142,234815.9288,0,21
+81688,642449.1825,235123.4311,0,21
+81689,68197.37139,236236.1626,0,21
+81690,148350.8901,261351.8336,0,21
+81691,252294.3362,237138.6749,0,21
+81692,196431.8472,238311.7975,0,21
+81693,203650.0377,244504.1702,0,21
+81694,204444.363,51952.63956,0,21
+81695,204037.3057,50699.24782,0,21
+81696,204700.9282,51118.83829,0,21
+81697,204911.0079,662620.4463,0,21
+81698,204990.3345,167434.0535,0,21
+81699,205320.8699,161974.9438,0,21
+81700,174069.1016,306246.4679,0,21
+81701,174374.2673,242943.6821,0,21
+81702,252787.8833,250466.2789,0,21
+81703,194671.5984,250869.7089,0,21
+81704,205346.1788,251895.8749,0,21
+81705,212784.7487,252407.4178,0,21
+81706,209506.6241,252358.2971,0,21
+81707,209654.7833,253710.7453,0,21
+81708,210748.7828,253321.537,0,21
+81709,210284.2015,254552.6909,0,21
+81710,211162.8144,206950.018,0,21
+81711,550667.5827,207654.6751,0,21
+81712,211363.3819,328229.1719,696136.0056,21
+81713,212332.3689,236103.9534,0,21
+81714,211859.4442,251583.4096,0,21
+81715,214126.3291,262022.9754,0,21
+81716,214595.0075,257488.3875,0,21
+81717,214811.6391,257995.9535,0,21
+81718,34650.20271,258735.8408,0,21
+81719,34741.04181,258770.952,0,21
+81720,34912.54285,253062.6815,0,21
+81721,680797.4341,259254.289,0,21
+81722,107921.8015,261572.0807,0,21
+81723,153170.7947,264052.33,0,21
+81724,273391.7884,266165.0594,0,21
+81725,216770.067,268123.8241,0,21
+81726,223885.4154,270234.828,0,21
+81727,224830.3321,51039.43538,0,21
+81728,225506.4487,79195.82221,0,21
+81729,226010.7645,52327.28782,0,21
+81730,227298.4009,794334.9216,0,21
+81731,227746.0599,225455.6838,0,21
+81732,191284.74,155229.5915,0,21
+81733,192870.5288,372520.1384,0,21
+81734,273675.3291,287358.2369,0,21
+81735,228025.2196,296691.4814,0,21
+81736,221968.4865,299632.4406,0,21
+81737,237702.363,302066.3115,0,21
+81738,233072.3032,304018.1665,0,21
+81739,234172.1949,306221.4658,0,21
+81740,234956.4909,307835.499,0,21
+81741,235699.013,310818.7604,0,21
+81742,236540.8892,257524.5053,0,21
+81743,237467.4617,259227.8982,0,21
+81744,237817.5421,402646.7477,0,21
+81745,238753.5915,295143.9465,0,21
+81746,239972.9498,322169.3522,0,21
+81747,240151.4832,324692.5925,0,21
+81748,241363.1971,326427.8701,694737.6072,21
+81749,242287.1339,327473.8897,0,21
+81750,242224.3104,330201.6541,0,21
+81751,39277.19745,331405.0737,0,21
+81752,39507.776,335898.5883,0,21
+81753,39610.64579,336811.4793,0,21
+81754,742927.6475,340142.9586,0,21
+81755,208463.8108,341349.0717,0,21
+81756,111377.1908,343739.3172,0,21
+81757,324612.0146,346197.9897,0,21
+81758,580907.2947,337465.0345,0,21
+81759,250258.2295,339284.4749,0,21
+81760,250517.6973,59737.27319,0,21
+81761,251914.2685,59698.15808,0,21
+81762,252476.4065,845334.7433,0,21
+81763,253256.3,280462.5848,0,21
+81764,213421.4597,284665.8552,0,21
+81765,213624.3668,399538.8116,0,21
+81766,298797.1111,363159.5433,0,21
+81767,264276.5017,366524.3928,0,21
+81768,242040.5072,367575.4196,0,21
+81769,264387.5096,370797.1785,0,21
+81770,258629.3929,372442.6165,0,21
+81771,259887.6392,374752.961,0,21
+81772,259900.4502,376532.925,0,21
+81773,261490.7275,379043.727,0,21
+81774,261626.5247,317726.6777,0,21
+81775,263046.815,319876.8751,0,21
+81776,263382.8705,480849.2988,0,21
+81777,264268.7021,364296.1433,0,21
+81778,265073.6264,400324.2666,0,21
+81779,265658.8465,389891.0535,0,21
+81780,267963.5541,397710.463,0,21
+81781,266058.9659,393717.5967,0,21
+81782,266423.6465,392843.8275,0,21
+81783,266008.0623,391468.0079,0,21
+81784,42838.59927,389979.0433,693985.3416,21
+81785,42903.62637,388673.8736,0,21
+81786,42868.17819,388292.3465,0,21
+81787,785092.7246,386015.6729,0,21
+81788,283370.1179,386245.3464,0,21
+81789,87763.11493,383743.0653,0,21
+81790,349112.3386,383134.0201,0,21
+81791,259641.9109,381898.0436,0,21
+81792,263078.2594,76616.92555,0,21
+81793,264608.5104,63954.56286,0,21
+81794,263735.6489,914583.9095,0,21
+81795,263966.8461,252554.1199,0,21
+81796,220793.2326,291532.5817,0,21
+81797,220183.7591,459463.1984,0,21
+81798,308875.6928,357590.2949,0,21
+81799,270623.6123,363858.0325,0,21
+81800,248033.8621,379539.5877,0,21
+81801,267620.8992,370500.402,0,21
+81802,262327.5666,370437.3786,0,21
+81803,261823.4847,369061.9947,0,21
+81804,261015.457,367714.0192,0,21
+81805,601054.2591,366858.3554,0,21
+81806,260546.4516,302466.0224,0,21
+81807,261093.0987,301994.5546,0,21
+81808,260311.6008,462762.2964,0,21
+81809,260208.2865,334535.1642,0,21
+81810,259677.2336,365845.3874,0,21
+81811,259653.8675,358184.7288,0,21
+81812,259451.2833,359993.1896,0,21
+81813,258933.1565,355445.8516,0,21
+81814,258771.0792,354854.1611,0,21
+81815,258677.3157,352902.3946,0,21
+81816,258115.1373,351909.0355,0,21
+81817,42872.47487,350110.2221,0,21
+81818,42792.8899,348760.5618,0,21
+81819,42871.3833,347797.2186,0,21
+81820,768981.0336,345494.6015,692524.8923,21
+81821,250795.9233,345012.1651,0,21
+81822,91777.67292,343452.1272,0,21
+81823,343319.1649,341829.0172,0,21
+81824,247064.0033,71531.68057,0,21
+81825,256279.7721,71500.72785,0,21
+81826,255569.0258,815145.4228,0,21
+81827,255638.4412,201776.8115,0,21
+81828,212355.9843,271421.5993,0,21
+81829,212051.1861,363953.4002,0,21
+81830,302591.8532,317259.4653,0,21
+81831,260091.1993,319676.0156,0,21
+81832,239552.1941,362882.5194,0,21
+81833,259873.2532,316657.0255,0,21
+81834,253671.2538,317875.1197,0,21
+81835,253093.6009,327268.7461,0,21
+81836,252915.9693,324047.9451,0,21
+81837,253053.1818,321298.5295,0,21
+81838,252260.721,261302.7376,0,21
+81839,251969.4112,260052.4984,0,21
+81840,252031.1393,413274.4181,0,21
+81841,251872.363,290958.5197,0,21
+81842,252646.7697,321921.1737,0,21
+81843,251891.0128,327843.906,0,21
+81844,252990.9875,325368.6577,0,21
+81845,253041.2636,328370.417,0,21
+81846,252486.7255,329503.6535,0,21
+81847,253606.057,331535.4431,0,21
+81848,253295.9465,333351.5992,0,21
+81849,253519.3241,335383.0997,0,21
+81850,43117.58781,336816.0438,0,21
+81851,42987.06875,339189.8883,0,21
+81852,382491.6543,340560.8241,0,21
+81853,761986.9697,343082.4515,0,21
+81854,236072.015,344149.5841,0,21
+81855,99268.82738,347333.2303,0,21
+81856,339141.3069,73298.07885,691196.2893,21
+81857,246519.1156,73707.37124,0,21
+81858,256058.6438,844145.7562,0,21
+81859,256326.765,228493.0801,0,21
+81860,213268.1837,304080.4302,0,21
+81861,212722.8057,399923.8834,0,21
+81862,306640.024,343497.6366,0,21
+81863,261713.7718,348967.6818,0,21
+81864,243096.0818,351881.6088,0,21
+81865,262984.0107,352357.0027,0,21
+81866,257764.8955,401794.8551,0,21
+81867,257814.5143,356523.0327,0,21
+81868,257779.7655,363525.1032,0,21
+81869,257877.8334,378696.6436,0,21
+81870,258408.0597,309309.6659,0,21
+81871,258023.0104,311588.7718,0,21
+81872,258847.0847,481471.9675,0,21
+81873,258780.9686,352894.4313,0,21
+81874,258978.2061,392513.3816,0,21
+81875,259260.219,383060.9609,0,21
+81876,258946.114,389471.0015,0,21
+81877,259535.6572,389148.0375,0,21
+81878,259527.7875,390269.2776,0,21
+81879,259884.8488,392481.3802,0,21
+81880,260063.3848,393628.6259,0,21
+81881,260122.6371,395679.0746,0,21
+81882,260315.9755,397521.8347,0,21
+81883,44146.82484,399400.5517,0,21
+81884,44190.95823,401075.5398,0,21
+81885,44224.65087,402568.9057,0,21
+81886,775678.1444,404723.6272,0,21
+81887,258949.1446,406505.0509,0,21
+81888,92078.34522,83577.45871,0,21
+81889,349925.6137,84051.36654,0,21
+81890,253452.7851,999583.7894,0,21
+81891,261276.9712,273380.2642,0,21
+81892,218550.1646,379489.2922,689996.3193,21
+81893,217829.3796,448861.003,0,21
+81894,312882.1901,420515.7173,0,21
+81895,268625.4658,421705.7536,0,21
+81896,249030.5668,407842.4316,0,21
+81897,268873.0081,409925.3881,0,21
+81898,263157.9939,412332.8522,0,21
+81899,603448.5794,413305.8987,0,21
+81900,263533.987,471615.3678,0,21
+81901,263214.9057,416794.1013,0,21
+81902,262334.7509,346342.1949,0,21
+81903,261619.227,361484.3513,0,21
+81904,261278.111,523410.9254,0,21
+81905,260277.6921,405662.135,0,21
+81906,260140.8471,428029.1382,0,21
+81907,258716.0287,423669.8779,0,21
+81908,258874.1089,419930.6318,0,21
+81909,257365.56,419922.4854,0,21
+81910,257638.5979,416610.7922,0,21
+81911,256480.3771,415369.4525,0,21
+81912,255617.332,413407.119,0,21
+81913,255195.2166,412343.7709,0,21
+81914,254565.279,410550.1516,0,21
+81915,253785.672,409099.6315,0,21
+81916,43672.33947,407132.8345,0,21
+81917,43679.002,406212.5215,0,21
+81918,43562.33267,404024.7117,0,21
+81919,756274.2726,403083.5633,0,21
+81920,223750.5023,83495.69714,0,21
+81921,99394.9264,83222.09131,0,21
+81922,331607.8843,972739.9681,0,21
+81923,240597.8838,271663.9274,0,21
+81924,205390.497,333276.4099,0,21
+81925,204462.1711,439065.8878,0,21
+81926,299213.3761,389978.325,0,21
+81927,248187.7887,390472.7668,0,21
+81928,233283.018,390199.3354,0,21
+81929,250757.1892,387117.2901,0,21
+81930,245146.2278,373156.4601,688899.9045,21
+81931,243892.7095,370246.2632,0,21
+81932,243854.6161,370645.9225,0,21
+81933,242383.7165,367406.2148,0,21
+81934,242217.2782,351410.3418,0,21
+81935,241665.0737,299476.4698,0,21
+81936,240851.1201,473708.3049,0,21
+81937,239666.206,353639.5729,0,21
+81938,239864.2963,381561.9068,0,21
+81939,238651.2168,371585.2814,0,21
+81940,238335.2956,374126.8182,0,21
+81941,237310.0463,369716.5447,0,21
+81942,236976.7354,367837.5957,0,21
+81943,236290.2204,366791.7903,0,21
+81944,235466.638,364476.1529,0,21
+81945,234694.5848,362129.8101,0,21
+81946,234407.781,361976.911,0,21
+81947,233765.0224,359007.8765,0,21
+81948,232631.3988,357665.2964,0,21
+81949,41413.5759,355978.3314,0,21
+81950,41509.14421,354405.6213,0,21
+81951,41377.19744,352175.8902,0,21
+81952,710955.5211,75511.32501,0,21
+81953,145002.7044,75374.02602,0,21
+81954,130276.7086,840172.9945,0,21
+81955,292141.5342,211386.9811,0,21
+81956,179482.0819,292291.5755,0,21
+81957,186149.9716,384301.3542,0,21
+81958,279388.9073,335697.9958,0,21
+81959,221143.1697,337457.6464,0,21
+81960,215051.1478,334354.251,0,15.6
+81961,230851.5513,334815.5839,0,15.6
+81962,225456.6096,333999.5496,0,15.6
+81963,225339.2106,335193.0432,0,15.6
+81964,226270.3942,322869.6473,0,15.6
+81965,225188.7372,323032.0309,0,15.6
+81966,225816.9158,262035.7149,0,15.6
+81967,225636.8165,262584.259,687893.6386,15.6
+81968,226217.2039,429318.6437,0,15.6
+81969,225603.4397,340687.6261,0,15.6
+81970,225865.2054,325975.5931,0,15.6
+81971,225969.4074,329281.6938,0,15.6
+81972,225852.8864,342545.618,0,15.6
+81973,226448.4804,336567.8784,0,15.6
+81974,225529.0196,335329.2104,0,15.6
+81975,226473.2422,337007.8381,0,15.6
+81976,225926.1283,335818.2437,0,15.6
+81977,226081.1877,336236.4529,0,15.6
+81978,226617.609,336619.0665,0,15.6
+81979,225680.7417,335888.7222,0,15.6
+81980,226722.7674,336893.9636,0,15.6
+81981,226307.6324,336023.8039,0,15.6
+81982,41014.37627,336797.1138,0,15.6
+81983,41009.03973,336464.2585,0,15.6
+81984,40978.52285,73060.58136,0,15.6
+81985,699271.0851,73114.71904,0,15.6
+81986,127346.626,811542.2795,0,15.6
+81987,142093.2974,189664.1484,0,15.6
+81988,244080.1004,303468.6514,0,15.6
+81989,518895.3216,372556.7374,0,15.6
+81990,280296.7834,334558.1349,0,15.6
+81991,221451.3914,337914.1558,0,15.6
+81992,217452.7114,337493.182,0,15.6
+81993,233254.6578,338429.847,0,15.6
+81994,226983.8506,338020.9526,0,15.6
+81995,228048.0736,338131.0615,0,15.6
+81996,227170.9859,338043.2621,0,15.6
+81997,227908.5801,338405.3041,0,15.6
+81998,227979.4518,277092.4974,0,15.6
+81999,227484.9947,265519.4844,0,15.6
+82000,227740.2826,433663.4248,0,15.6
+82001,227907.8942,296326.4505,0,15.6
+82002,227844.7777,329691.1782,0,15.6
+82003,227891.8664,331003.4002,686974.589,15.6
+82004,228014.7736,378974.2426,0,15.6
+82005,227904.6246,327913.0572,0,15.6
+82006,227956.5753,329609.6883,0,15.6
+82007,228084.964,346592.6576,0,15.6
+82008,227922.2391,339208.7911,0,15.6
+82009,228229.4819,340145.7469,0,15.6
+82010,228153.2771,340471.8962,0,15.6
+82011,228129.4845,340415.8937,0,15.6
+82012,228324.9636,339918.1003,0,15.6
+82013,228280.7203,340655.8777,0,15.6
+82014,228579.318,340748.2604,0,15.6
+82015,41268.16732,340750.2664,0,15.6
+82016,41205.75944,73773.26447,0,15.6
+82017,41406.30286,73784.84039,0,15.6
+82018,702348.5831,822947.0258,0,15.6
+82019,133260.8188,192674.0987,0,15.6
+82020,98191.66436,306440.5545,0,15.6
+82021,247433.7399,377272.0071,0,15.6
+82022,274443.3813,339196.8034,0,15.6
+82023,222768.5734,341589.4927,0,15.6
+82024,217768.1502,342818.4548,0,15.6
+82025,233113.5644,342902.7903,0,15.6
+82026,227455.6945,343157.284,0,15.6
+82027,227377.695,343027.5423,0,15.6
+82028,227409.1521,343510.7832,0,15.6
+82029,226467.3779,343730.8471,0,15.6
+82030,226931.3961,282090.2587,0,15.6
+82031,226457.5064,282239.7049,0,15.6
+82032,226208.4328,453033.964,0,15.6
+82033,225969.1756,312895.96,0,15.6
+82034,225819.4382,336656.469,0,15.6
+82035,564736.5069,336562.6215,0,15.6
+82036,225584.6404,335406.1602,0,15.6
+82037,224892.9858,334879.8467,0,15.6
+82038,224961.9322,334164.3923,0,15.6
+82039,224633.673,387881.8913,686134.4715,15.6
+82040,224184.6946,335177.9224,0,15.6
+82041,224196.1612,336015.3912,0,15.6
+82042,224041.7988,354552.5439,0,15.6
+82043,223859.0837,347866.6543,0,15.6
+82044,223135.4662,348014.7974,0,15.6
+82045,223334.8609,348586.3897,0,15.6
+82046,223050.176,348674.4373,0,15.6
+82047,222983.6086,349210.6447,0,15.6
+82048,40624.39065,75491.36972,0,15.6
+82049,40781.17328,75502.46281,0,15.6
+82050,40699.1017,845547.0126,0,15.6
+82051,689855.4792,204341.3977,0,15.6
+82052,68102.44782,309714.3405,0,15.6
+82053,106638.282,389946.5271,0,15.6
+82054,329990.4959,347471.4463,0,15.6
+82055,207174.3976,351459.6797,0,15.6
+82056,211960.8255,352069.98,0,15.6
+82057,226347.7252,352043.8008,0,15.6
+82058,220839.3142,352599.861,0,15.6
+82059,220725.4883,353001.9356,0,15.6
+82060,220462.9682,352361.5044,0,15.6
+82061,220164.9678,354010.389,0,15.6
+82062,219987.4323,289802.6836,0,15.6
+82063,219727.858,290523.1018,0,15.6
+82064,219364.8409,463416.4906,0,15.6
+82065,219451.514,322235.2409,0,15.6
+82066,218807.6067,359936.42,0,15.6
+82067,218766.6941,358033.7674,0,15.6
+82068,218624.1067,357801.2777,0,15.6
+82069,218138.7711,343538.4067,0,15.6
+82070,218098.7739,343856.1763,0,15.6
+82071,217768.5828,343965.3613,0,15.6
+82072,217796.7722,343655.3881,0,15.6
+82073,217215.5234,394900.7655,0,15.6
+82074,217147.5437,344269.147,0,15.6
+82075,216865.4909,349228.5057,685366.0298,15.6
+82076,216759.6849,364582.4517,0,15.6
+82077,216159.1996,357315.0144,0,15.6
+82078,216137.9594,358624.4872,0,15.6
+82079,216249.8187,358433.7693,0,15.6
+82080,215406.0436,77471.57631,0,15.6
+82081,377911.3273,75724.6932,0,15.6
+82082,38548.40997,861755.6963,0,15.6
+82083,38354.88114,209118.3154,0,15.6
+82084,625671.5232,304910.0967,0,15.6
+82085,24976.80848,396915.8382,0,15.6
+82086,214628.6486,349650.5889,0,15.6
+82087,244214.4774,354172.9133,0,15.6
+82088,196038.1132,355097.5111,0,15.6
+82089,213528.3725,354736.7894,0,15.6
+82090,208736.3626,355131.3845,0,15.6
+82091,209039.4671,354808.9583,0,15.6
+82092,208639.8615,355862.2039,0,15.6
+82093,208793.5099,355264.7902,0,15.6
+82094,208865.9526,292738.9724,0,15.6
+82095,208196.0997,293205.7691,0,15.6
+82096,208721.9064,462855.3423,0,15.6
+82097,208489.3867,326434.058,0,15.6
+82098,207787.512,361955.2639,0,15.6
+82099,208477.3708,359929.6317,0,15.6
+82100,207929.0027,359324.2924,0,15.6
+82101,208265.4548,358661.2603,0,15.6
+82102,207494.9528,358707.9958,0,15.6
+82103,208109.9845,345629.5318,0,15.6
+82104,207630.0545,345567.6159,0,15.6
+82105,207762.2983,346006.6759,0,15.6
+82106,207323.4946,346181.1807,0,15.6
+82107,207482.6175,397053.2149,0,15.6
+82108,207727.4792,346469.5271,0,15.6
+82109,206965.1599,351179.8348,0,15.6
+82110,207495.647,366371.1297,684664.4091,15.6
+82111,206889.5525,359463.2246,0,15.6
+82112,207218.9349,77044.21871,0,15.6
+82113,206836.7802,77471.27728,0,15.6
+82114,38082.8924,877987.7344,0,15.6
+82115,38090.5669,217173.8668,0,15.6
+82116,0,312739.7399,0,15.6
+82117,620112.9923,405238.6495,0,15.6
+82118,105583.0313,357974.465,0,15.6
+82119,155364.1406,362742.4789,0,15.6
+82120,582607.5283,362754.8993,0,15.6
+82121,205393.3176,363182.5347,0,15.6
+82122,206487.4381,363442.3619,0,15.6
+82123,206804.5627,363510.1047,0,15.6
+82124,206374.4207,363227.6855,0,15.6
+82125,207173.0166,364833.3019,0,15.6
+82126,205935.6069,299511.9109,0,15.6
+82127,206648.0201,300137.2367,0,15.6
+82128,206264.2873,471947.9299,0,15.6
+82129,206013.9527,335579.2963,0,15.6
+82130,206333.1978,370551.5402,0,15.6
+82131,206013.982,368250.295,0,15.6
+82132,205648.6264,368269.1263,0,15.6
+82133,206014.0112,366914.4477,0,15.6
+82134,205657.2572,367749.9848,0,15.6
+82135,205492.3649,367045.503,0,15.6
+82136,205552.9469,367707.564,0,15.6
+82137,205592.0375,353818.5471,0,15.6
+82138,205132.5196,354514.3821,0,15.6
+82139,205512.8285,354106.0111,0,15.6
+82140,204999.7851,354465.6403,0,15.6
+82141,204982.9823,409407.9646,0,15.6
+82142,204949.0925,355434.2113,0,15.6
+82143,204749.899,358774.1277,0,15.6
+82144,204264.1347,86724.23581,0,15.6
+82145,204445.2754,78452.08572,684024.7016,15.6
+82146,203957.6119,900213.2457,0,15.6
+82147,37762.35597,227909.3988,0,15.6
+82148,0,316250.686,0,15.6
+82149,0,416542.5335,0,15.6
+82150,701366.9964,365788.6104,0,15.6
+82151,40429.18703,372085.7081,0,15.6
+82152,153327.1707,371486.7331,0,15.6
+82153,252888.8874,371960.9613,0,15.6
+82154,196159.4201,372014.4501,0,15.6
+82155,202945.6356,372532.6717,0,15.6
+82156,202902.879,372885.6409,0,15.6
+82157,202407.0631,372735.947,0,15.6
+82158,542152.7966,307226.1297,0,15.6
+82159,202083.7803,307139.7054,0,15.6
+82160,202254.4708,482595.6843,0,15.6
+82161,201883.6267,344066.8113,0,15.6
+82162,201972.5827,380796.6343,0,15.6
+82163,201459.7169,375716.6784,0,15.6
+82164,201619.7282,377782.1429,0,15.6
+82165,200962.6438,375891.4703,0,15.6
+82166,201557.9154,376225.2353,0,15.6
+82167,200654.4314,376058.5086,0,15.6
+82168,201122.4129,376836.2213,0,15.6
+82169,200198.6315,375963.0306,0,15.6
+82170,200774.4815,377325.777,0,15.6
+82171,200231.1652,362544.4106,0,15.6
+82172,200107.9201,362317.2281,0,15.6
+82173,199970.3934,363261.4378,0,15.6
+82174,200121.1043,362743.0856,0,15.6
+82175,199224.5457,420989.2628,0,15.6
+82176,199729.3847,69043.56054,0,15.6
+82177,199237.7802,69884.19973,0,15.6
+82178,199141.1896,929632.3422,0,15.6
+82179,199028.1093,238875.3529,0,15.6
+82180,0,320024.3044,683441.1167,15.6
+82181,0,427456.1097,0,15.6
+82182,86353.85168,375292.8293,0,15.6
+82183,25269.35336,380869.9316,0,15.6
+82184,684982.9598,380568.3878,0,15.6
+82185,106282.1497,380656.9418,0,15.6
+82186,98483.13125,381141.5432,0,15.6
+82187,260531.1387,381333.1328,0,15.6
+82188,193467.1378,381282.0262,0,15.6
+82189,196765.6849,381786.3457,0,15.6
+82190,197834.211,314548.2852,0,15.6
+82191,197826.3992,314580.2339,0,15.6
+82192,197592.5396,492112.6332,0,15.6
+82193,197314.495,354378.4823,0,15.6
+82194,197407.5266,388869.0956,0,15.6
+82195,196587.9927,385421.564,0,15.6
+82196,536716.2659,386206.5205,0,15.6
+82197,196325.6642,384888.6745,0,15.6
+82198,196671.1515,385023.2784,0,15.6
+82199,196076.4281,385004.9713,0,15.6
+82200,196199.0143,385183.1813,0,15.6
+82201,195812.1093,385190.8875,0,15.6
+82202,195395.6176,385832.1637,0,15.6
+82203,194694.2513,385111.6012,0,15.6
+82204,194634.3458,386770.3776,0,15.6
+82205,194053.1595,371148.2546,0,15.6
+82206,193413.6485,370741.3495,0,15.6
+82207,193614.4082,372227.8606,0,15.6
+82208,192617.4913,68668.05711,0,15.6
+82209,192599.0001,128948.194,0,15.6
+82210,192050.507,930707.3538,0,15.6
+82211,191418.1066,238550.8582,0,15.6
+82212,155241.8164,333975.7728,0,15.6
+82213,154571.8387,436382.3985,0,15.6
+82214,84805.77036,383764.2696,0,15.6
+82215,22428.37423,389686.3002,682910.9221,15.6
+82216,32300.48921,388988.7913,0,15.6
+82217,39397.19982,389411.7605,0,15.6
+82218,667680.025,390068.0863,0,15.6
+82219,64177.62408,389795.2631,0,15.6
+82220,115069.1589,390394.6629,0,15.6
+82221,243099.0794,390066.5196,0,15.6
+82222,183790.839,322063.4262,0,15.6
+82223,187075.4688,321839.5662,0,15.6
+82224,187613.2765,501894.7203,0,15.6
+82225,187201.428,363886.7315,0,15.6
+82226,187171.337,398373.055,0,15.6
+82227,186273.6487,393541.3952,0,15.6
+82228,186067.3669,395093.8038,0,15.6
+82229,185710.5194,394301.6925,0,15.6
+82230,185177.3213,393350.7156,0,15.6
+82231,184841.2556,394231.0888,0,15.6
+82232,184300.7316,394146.2445,0,15.6
+82233,184152.2449,393848.2991,0,15.6
+82234,523112.3462,395022.4024,0,15.6
+82235,183020.4622,394636.9612,0,15.6
+82236,182914.7871,394668.1521,0,15.6
+82237,182112.5665,395212.7166,0,15.6
+82238,182291.701,395245.4279,0,15.6
+82239,181650.3616,380225.8513,0,15.6
+82240,180723.5783,70246.03677,0,15.6
+82241,180255.6681,70217.23389,0,15.6
+82242,179520.0263,950803.0109,0,15.6
+82243,179039.8203,310662.7079,0,15.6
+82244,143802.0434,313326.513,0,15.6
+82245,143777.5467,438185.3763,0,15.6
+82246,143081.224,402151.2572,0,15.6
+82247,234942.3725,395872.921,0,15.6
+82248,30047.89528,398901.4481,0,15.6
+82249,19674.59347,398195.1667,0,15.6
+82250,42878.44239,399226.2209,682432.9661,15.6
+82251,33853.68728,399329.0008,0,15.6
+82252,633914.8843,399088.7331,0,15.6
+82253,36463.59084,399366.759,0,15.6
+82254,94540.94562,329796.0429,0,15.6
+82255,240316.5104,328583.9933,0,15.6
+82256,163938.3582,512318.1562,0,15.6
+82257,173741.9945,372996.9389,0,15.6
+82258,173354.0638,408501.0729,0,15.6
+82259,172960.5781,402017.2722,0,15.6
+82260,172887.4591,404926.679,0,15.6
+82261,173198.2183,402856.3813,0,15.6
+82262,173714.8402,401890.3116,0,15.6
+82263,174744.4149,402589.1547,0,15.6
+82264,174426.3019,402814.3474,0,15.6
+82265,175872.4866,401959.5566,0,15.6
+82266,175989.2977,402969.0351,0,15.6
+82267,176638.0069,401530.705,0,15.6
+82268,176947.6283,402670.1364,0,15.6
+82269,178051.9003,402125.6838,0,15.6
+82270,178303.075,402872.5171,0,15.6
+82271,178649.5747,402359.7137,0,15.6
+82272,519305.3892,87722.47165,0,15.6
+82273,179885.9645,71558.59504,0,15.6
+82274,180633.8332,965636.4922,0,15.6
+82275,181160.1245,255597.5752,0,15.6
+82276,181667.3182,313407.3377,0,15.6
+82277,147207.3401,506668.7679,0,15.6
+82278,147959.6656,384221.514,0,15.6
+82279,148318.1351,390844.8038,0,15.6
+82280,241171.5941,413086.0425,0,15.6
+82281,181238.475,401859.9581,0,15.6
+82282,20414.64358,403499.9313,0,15.6
+82283,43690.9444,403172.3847,0,15.6
+82284,35209.5197,403760.6794,0,15.6
+82285,35622.90479,403271.9082,681987.1998,15.6
+82286,660001.9782,332286.8126,0,15.6
+82287,61423.04682,331468.7306,0,15.6
+82288,112781.0099,516150.8241,0,15.6
+82289,249547.3373,375973.0194,0,15.6
+82290,182994.2611,411951.5138,0,15.6
+82291,190696.6411,404152.7881,0,15.6
+82292,192059.9917,407132.8145,0,15.6
+82293,192411.7403,405244.9956,0,15.6
+82294,193135.2963,404447.3122,0,15.6
+82295,193345.0538,404857.5529,0,15.6
+82296,194465.8195,404284.2431,0,15.6
+82297,194754.8745,404560.44,0,15.6
+82298,195236.1101,404690.8519,0,15.6
+82299,196055.1132,404158.3711,0,15.6
+82300,196291.1934,404503.4125,0,15.6
+82301,197366.8424,404394.6747,0,15.6
+82302,197580.0668,404646.4659,0,15.6
+82303,198536.5304,403891.9353,0,15.6
+82304,198555.8896,88583.02442,0,15.6
+82305,199870.5007,88386.46189,0,15.6
+82306,199717.1596,987314.9124,0,15.6
+82307,200995.8238,256451.3094,0,15.6
+82308,201203.1049,313956.823,0,15.6
+82309,201804.2073,444360.8515,0,15.6
+82310,505008.2331,383188.3075,0,15.6
+82311,165644.2281,454693.2306,0,15.6
+82312,253200.4067,389952.8814,0,15.6
+82313,192747.6804,392969.5863,0,15.6
+82314,199754.7852,414420.3082,0,15.6
+82315,209369.0226,403387.408,0,15.6
+82316,37619.13339,404666.0047,0,15.6
+82317,37859.36202,404872.9877,0,15.6
+82318,37874.24529,332362.551,0,15.6
+82319,659100.1965,333201.2385,0,15.6
+82320,64873.69751,517491.7386,681562.2741,17.8
+82321,2264765.107,2620971.373,0,17.8
+82322,1495532.127,2621299.952,0,17.8
+82323,590142.5764,713695.3955,0,17.8
+82324,733867.6655,941224.416,0,17.8
+82325,752757.7406,1158890.915,0,17.8
+82326,684002.1585,997484.1729,0,17.8
+82327,679939.1955,1000940.837,0,17.8
+82328,662912.5698,989927.0082,0,17.8
+82329,660877.2871,985501.3095,0,17.8
+82330,658170.2731,981624.1966,0,17.8
+82331,653548.4612,979403.0229,0,17.8
+82332,652012.5191,967938.6292,0,17.8
+82333,650247.1942,955486.2,0,17.8
+82334,645227.1231,959261.9591,0,17.8
+82335,646938.5521,951899.626,0,17.8
+82336,642613.1103,177886.3689,0,17.8
+82337,641717.7672,177220.2905,0,17.8
+82338,638811.5245,1469049.423,0,17.8
+82339,638825.2635,1044947.034,0,17.8
+82340,635405.1525,790515.8865,0,17.8
+82341,634803.573,977491.6348,0,17.8
+82342,533630.4366,914294.7327,0,17.8
+82343,532444.6185,1004757.456,0,17.8
+82344,740030.1933,942859.5067,0,17.8
+82345,627071.9108,920528.5137,0,17.8
+82346,627318.0719,928700.9015,0,17.8
+82347,636592.9708,926126.3131,0,17.8
+82348,964168.8948,922539.1138,0,17.8
+82349,106089.9931,918491.2833,0,17.8
+82350,105458.3466,785282.5539,0,17.8
+82351,904296.651,1016525.613,0,17.8
+82352,735699.2587,891420.3668,0,17.8
+82353,627705.8364,906672.0436,0,17.8
+82354,574288.7092,914152.4111,0,17.8
+82355,643692.1879,907262.4814,681155.3876,17.8
+82356,615928.9192,905605.9149,0,17.8
+82357,613954.486,905319.1344,0,17.8
+82358,612288.9107,902853.5773,0,17.8
+82359,634017.0903,901504.1937,0,17.8
+82360,614116.9483,899646.0315,0,17.8
+82361,612472.2014,897050.0814,0,17.8
+82362,620189.5736,897919.7034,0,17.8
+82363,613987.9889,894490.9447,0,17.8
+82364,616411.585,894242.0134,0,17.8
+82365,615012.6232,893447.4157,0,17.8
+82366,613768.1069,889966.5715,0,17.8
+82367,613838.9835,890114.074,0,17.8
+82368,614224.8735,165085.0885,0,17.8
+82369,612197.2139,164612.3992,0,17.8
+82370,612622.7849,1391350.953,0,17.8
+82371,611620.7954,958232.5812,0,17.8
+82372,611205.923,780520.736,0,17.8
+82373,611005.3511,928085.5459,0,17.8
+82374,518358.6707,875821.6929,0,17.8
+82375,517918.4947,947400.6956,0,17.8
+82376,726026.3253,865474.4585,0,17.8
+82377,586048.005,882455.8197,0,17.8
+82378,621592.8657,883974.5148,0,17.8
+82379,612517.845,879646.7677,0,17.8
+82380,606712.743,878084.4437,0,20
+82381,289395.6901,2407829.798,66126.88762,20
+82382,2284694.605,2654271.197,47625.31245,20
+82383,2261291.831,2607206.363,10634.87223,20
+82384,2228995.989,2168712.839,21041.1511,20
+82385,2071733.925,1992491.765,23479.17686,20
+82386,1373073.459,1523874.627,20453.91656,20
+82387,1522312.579,1824537.842,20861.94274,20
+82388,1370157.706,1699090.146,20858.83289,20
+82389,1323298.327,1687598.821,20925.31323,20
+82390,1307300.295,1677566.997,711372.5798,20
+82391,1362511.034,1668122.895,21041.33129,20
+82392,1321948.716,1630537.375,21059.03462,20
+82393,1311856.357,1610104.225,21151.04058,20
+82394,1313801.392,1612041.838,21219.01408,20
+82395,1305439.703,1600555.443,24667.37448,20
+82396,1302546.732,1593283.814,30536.86417,20
+82397,1296358.135,1586641.716,26421.23953,20
+82398,1294566.573,1578924.897,27893.60433,20
+82399,1287599.765,1571995.252,28247.56796,20
+82400,1283349.485,271624.6908,28356.47713,20
+82401,1282134.102,2291464.425,28623.52465,20
+82402,1276408.303,1569312.105,28701.12626,20
+82403,1274257.84,1439629.977,28924.75726,20
+82404,1271126.833,1602374.457,29163.19458,20
+82405,1266715.469,1465943.469,29286.93732,20
+82406,1110626.399,1456647.48,29455.10947,20
+82407,1320573.396,1553528.972,29653.77802,20
+82408,1294413.933,1551648.861,29812.94722,20
+82409,1221113.352,1512122.608,30063.9608,20
+82410,1252222.752,1522552.768,30134.45421,20
+82411,1243465.117,1515566.631,0,20
+82412,175480.6709,1325777.279,0,20
+82413,1714869.873,1555615.941,0,20
+82414,1095604.441,1560592.434,0,20
+82415,1239584.913,1504510.979,0,20
+82416,1249327.344,1475565.694,74507.18797,20
+82417,1233785.237,1500155.199,11122.31873,20
+82418,1230940.932,1487273.767,21331.49709,20
+82419,1224643.828,1483013.403,26279.64122,20
+82420,1206594.735,1479644.97,23112.30698,20
+82421,1187735.871,1476435.517,23413.03181,20
+82422,1183102.174,1474470.372,30476.01377,20
+82423,1178877.354,1470940.908,34664.45131,20
+82424,1575962.696,1467383.994,30630.87394,20
+82425,1203125.397,1465099.114,761390.3036,20
+82426,1188108.815,1460743.7,32588.72049,20
+82427,1198355.549,1459969.623,32937.35284,20
+82428,1191258.258,1457961.609,33531.07697,20
+82429,1188210.297,1450590.273,33408.89416,20
+82430,1186301.654,1453470.071,33790.24378,20
+82431,1184298.539,247439.7993,33917.24712,20
+82432,1181687.038,2137213.768,34136.93647,20
+82433,1179204.68,1383637.805,34357.0616,20
+82434,1176720.01,1370871.717,34618.04284,20
+82435,1174058.349,1484066.254,34676.61562,20
+82436,1173337.732,1438182.209,35012.09901,20
+82437,1028969.768,1362672.208,35080.59966,20
+82438,1238605.73,1360984.919,35509.63999,20
+82439,1172116.512,1459228.31,35420.10372,20
+82440,1148330.166,1444382.131,35916.80585,21
+82441,2306611.152,2998672.418,1175697.112,21
+82442,2224871.152,2610162.24,528707.5118,21
+82443,1715953.93,2231987.647,133430.1112,21
+82444,1178877.93,1757121.88,279240.151,21
+82445,1598795.925,1862978.687,322516.0074,21
+82446,1432719.896,1889812.344,300719.2104,21
+82447,1441686.855,1835516.786,289772.2849,21
+82448,1428359.32,1827123.828,297144.4871,21
+82449,1425559.752,1805182.003,299395.3645,21
+82450,1419613.423,1809144.243,300619.8509,21
+82451,1417868.539,1799752.056,301189.9092,21
+82452,1410827.311,1795880.607,304109.169,21
+82453,1408255.67,1786843.503,304421.9714,21
+82454,1403177.006,1784119.105,306272.5825,21
+82455,1394638.091,1780000.811,307405.2029,21
+82456,1392556.469,1773753.235,309050.4065,21
+82457,1387308.222,1769291.116,310350.8263,21
+82458,1383579.181,1765466.566,311305.5757,21
+82459,1380027.379,1759686.596,313339.2856,21
+82460,1378058.344,1757959.135,314561.0202,21
+82461,1370212.499,1750859.845,315731.9887,21
+82462,1371497.574,1746796.059,317042.589,21
+82463,1367697.147,1744797.514,318485.6077,21
+82464,1361492.188,1740208.855,319683.4045,21
+82465,1361739.971,1735908.008,320829.5871,21
+82466,1357344.545,1733081.646,322496.7609,21
+82467,1352702.625,1729506.862,323796.5204,21
+82468,1354006.604,1726137.742,325119.0932,21
+82469,1346472.502,1723010.103,326189.7887,21
+82470,1347320.352,1720505.245,327382.2229,21
+82471,1343140.371,1718318.657,329761.0782,21
+82472,1340105.635,1713144.462,329580.0752,21
+82473,1338469.278,1711373.733,331900.3888,21
+82474,1335524.687,1708214.222,332723.215,21
+82475,1334015.265,1706693.554,333952.674,21
+82476,1329244.003,1700829.567,335865.6058,21
+82477,1329687.384,1700958.728,336265.0412,21
+82478,1325132.668,1697877.741,338232.7333,21
+82479,1323352.735,1694494.85,338653.0823,21
+82480,1322511.568,1694048.849,340436.889,21
+82481,1317677.111,1689804.168,341354.107,21
+82482,1318613.329,1688463.041,342756.3628,21
+82483,1313699.39,1686247.937,344012.0687,21
+82484,1313543.087,1682407.194,344615.247,21
+82485,1311382.801,1682775.766,346436.7908,21
+82486,1307793.787,1678393.952,347181.4281,21
+82487,1308203.206,1677655.386,348333.2045,21
+82488,1304574.285,1674513.767,349807.9155,21
+82489,1302039.37,1673315.725,350684.0618,21
+82490,1300909.054,1671468.457,352190.4948,21
+82491,1299214.415,1668356.488,352791.0573,21
+82492,1299288.917,1666997.198,354044.4269,21
+82493,1293084.345,1665004.987,355298.667,21
+82494,1296296.563,1664509.416,356340.1223,21
+82495,1291708.516,1660612.058,357471.8614,21
+82496,1290731.891,1661273.121,358073.4086,21
+82497,1287696.807,1657526.334,359687.5302,21
+82498,1287054.564,1655246.791,360362.1749,21
+82499,1286260.515,1654430.193,361601.3677,21
+82500,1283526.296,1654068.494,362485.7679,21
+82501,1705165.061,3402079.735,348288.3132,21
+82502,1695485.815,3393392.909,345980.4805,21
+82503,1694521.804,3390868.162,346737.0301,21
+82504,1689645.621,3385773.931,346086.5771,21
+82505,1688858.901,3385705.584,346964.9265,21
+82506,1684884.38,3434006.392,346907.3271,21
+82507,1683750.677,3428887.424,346677.3397,21
+82508,1677252.516,3417739.654,347283.5316,21
+82509,1674336.706,3418351.88,347138.8522,21
+82510,1673444.399,3420666.599,347778.2741,21
+82511,1669843.043,3412719.233,347320.8774,21
+82512,1667616.949,3413192.813,347745.5028,21
+82513,1663799.304,3409152.891,348602.0225,21
+82514,1663031.954,3407692.886,345474.8837,21
+82515,1658982.628,3403986.855,345159.67,21
+82516,1658270.451,3403383.567,345900.9421,21
+82517,1654043.198,3398433.98,345487.7286,21
+82518,1654321.239,3395808.105,345120.8912,21
+82519,1645608.479,3394977.867,345831.4836,21
+82520,1645109.607,3390869.546,345455.5451,21
+82521,1642510.01,3389259.845,345318.9218,21
+82522,1639384.363,3387792.233,345259.0049,21
+82523,1638532.43,3383488.831,345459.6247,21
+82524,1635152.927,3382343.974,345005.7495,21
+82525,1632444.206,3380151.159,345232.3452,21
+82526,1631232.056,3377368.936,345222.6169,21
+82527,1627749.665,3373931.514,328702.2839,21
+82528,1627104.228,3374458.837,325773.9194,21
+82529,1622888.895,3369464.957,324344.9395,21
+82530,1622523.572,3367380.682,323754.21,21
+82531,1620325.679,3366708.551,322195.0384,21
+82532,1616866.141,3362848.281,320584.0623,21
+82533,1613893.038,3362510.715,318746.2649,21
+82534,1613626.405,3359231.647,316949.4086,21
+82535,1609561.375,3357488.042,315422.1824,21
+82536,1607762.42,3353938.286,313513.0206,21
+82537,1604614.601,3354177.8,312396.1153,21
+82538,1603523.081,3348616.366,309969.4609,21
+82539,1600333.931,3350060.959,309121.8402,21
+82540,1598160.799,3345088.72,306781.471,21
+82541,1597861.721,3345225.847,305954.7098,21
+82542,1592107.949,3341773.799,303677.1817,21
+82543,1591595.979,3340573.385,302681.1362,21
+82544,1589976.848,3338100.029,300204.7416,21
+82545,1586277.601,3335387.238,299620.7552,21
+82546,1585170.219,3333201.032,297057.1725,21
+82547,1582713.137,3333260.038,295721.0756,21
+82548,1580219.286,3329679.01,293845.0595,21
+82549,1578265.44,3326491.491,292184.9629,21
+82550,1576163.949,3326828.207,289926.8601,21
+82551,1573561.627,3323579.622,288959.9116,21
+82552,1571776.445,3322025.985,286522.9769,21
+82553,1570417.118,3320103.491,284891.912,21
+82554,1565735.113,3317958.504,283262.8021,21
+82555,1566412.164,3315208.984,280739.7507,21
+82556,1563070.519,3314662.244,279364.7658,21
+82557,1560093.964,3312386.754,277013.2751,21
+82558,1560428.851,3315172.867,275054.7925,21
+82559,1555595.116,3306095.358,273563.094,21
+82560,1554438.565,3306566.552,271171.9159,21
+82561,1311114.098,3058471.288,172251.6086,21
+82562,1291373.052,3036926.526,166524.9633,21
+82563,1282328.52,3029570.641,163824.2959,21
+82564,1278998.76,3023690.69,161673.1268,21
+82565,1272111.539,3017977.687,159379.7817,21
+82566,1266616.414,3011034.327,157466.2717,21
+82567,1261980.354,3009020.305,155230.2527,21
+82568,1258581.178,3001574.17,153202.7421,21
+82569,1253217.836,2998069.355,151402.1974,21
+82570,1247996.947,2992577.355,149293.8841,21
+82571,1245184.753,2989733.8,147349.8843,21
+82572,1241499.877,2983844.957,145714.5365,21
+82573,1234794.891,2980763.174,143479.2974,21
+82574,1234266.999,2975550.776,141994.5816,21
+82575,1228667.798,2972058.871,139823.5562,21
+82576,1224288.177,2968426.123,138102.808,21
+82577,1222791.11,2963332.011,136460.9474,21
+82578,1217004.821,2961305.549,134656.0773,21
+82579,1214197.914,2956638.214,133007.8424,21
+82580,1211874.426,2948041.311,130982.6197,21
+82581,1207479.908,2945572.787,129625.5911,21
+82582,1203345.48,2940143.765,48729.28339,21
+82583,1201765.839,2936471.188,48482.00496,21
+82584,1198047.665,2933321.644,47418.28975,21
+82585,1193555.886,2929414.435,47169.53431,21
+82586,1191922.331,2923721.706,46404.08938,21
+82587,1188531.267,2923581.343,46329.87918,21
+82588,1184106.258,2917655.008,45229.29156,21
+82589,1183210.469,2914807.142,45209.61506,21
+82590,1179195.43,2910216.493,44398.1123,21
+82591,1175658.403,2907411.01,43921.8605,21
+82592,1173159.418,2903134.167,43522.61505,21
+82593,1170708.192,2902091.037,43137.34188,21
+82594,1167198.147,2895113.514,42323.86219,21
+82595,1165263.29,2894149.31,42253.95346,21
+82596,1162214.699,2889442.458,41680.59238,21
+82597,1158903.307,2886100.546,41002.504,21
+82598,1157380.36,2883149.9,40694.17254,21
+82599,1154201.571,2880278.29,40217.17068,21
+82600,1151267.724,2876529.172,39582.56225,21
+82601,1148337.591,2872627.548,39317.12564,21
+82602,1147034.587,2870022.431,38716.25474,21
+82603,1143474.926,2865913.967,38252.82362,21
+82604,1141129.023,2863321.937,37969.76872,21
+82605,1139190.979,2860193.798,37221.13877,21
+82606,1134939.936,2857296.451,36880.5174,21
+82607,1134748.028,2852569.454,36508.46569,21
+82608,1131009.517,2851629.193,35788.99496,21
+82609,1128575.737,2848559.339,35504.21887,21
+82610,1126309.121,2842958.406,35092.25327,21
+82611,1124698.034,2843542.67,34492.15403,21
+82612,1120345.643,2835654.594,34269.4369,21
+82613,1120317.744,2836842.878,33710.75095,21
+82614,1115538.631,2831961.229,33280.30665,21
+82615,1114970.254,2827860.023,32955.84209,21
+82616,1111459.58,2825248.952,32676.31294,21
+82617,1110297.506,2823788.177,32153.40589,21
+82618,1107065.766,2815954.238,31894.23581,21
+82619,1105860.874,2816467.919,31141.72396,21
+82620,1102357.299,2810902.97,31104.40787,21
+82621,1102130.19,2808692.099,30538.49499,21
+82622,1097780.867,2804451.072,30173.77038,21
+82623,1097068.049,2756932.067,29501.29749,21
+82624,1093892.286,2742429.104,28946.89653,21
+82625,1093822.186,2738019.449,28749.69974,21
+82626,1091367.897,2726834.046,28024.27716,21
+82627,1089524.017,2723658.105,27773.89243,21
+82628,1086973.074,2717005.785,26978.62471,21
+82629,1086967.222,2713807.772,26834.66886,21
+82630,1083788.385,2707003.109,26226.68745,21
+82631,1081408.451,2700387.585,25644.54232,21
+82632,1082140.356,2697238.57,25249.42151,21
+82633,1078280.166,2691143.884,24867.10848,21
+82634,1076622.708,2685225.308,24286.7609,21
+82635,1075451.115,2681062.569,23802.56156,21
+82636,1074946.129,2677119.843,23341.51995,21
+82637,1071126.983,2672795.267,22505.491,21
+82638,1070761.618,2674796.742,21803.38819,21
+82639,1067711.278,2673793.859,21334.20435,21
+82640,1067128.371,2666671.903,20995.33797,21
+82641,1066184.88,2665276.98,20141.76744,21
+82642,1062866.929,2659248.654,20084.48266,21
+82643,1062917.418,2656415.045,19203.07577,21
+82644,1059673.604,2651917.691,19047.7275,21
+82645,1059336.756,2646200.392,18489.90104,21
+82646,1057230.616,2644676.392,18000.523,21
+82647,1055191.103,2639027.354,17339.21349,21
+82648,1053828.891,2635367.889,17183.68032,21
+82649,1053067.01,2631029.698,16606.45884,21
+82650,1050115.358,2627014.758,15922.03311,21
+82651,1049917.052,2623046.306,15733.38212,21
+82652,1047195.708,2621057.526,15196.23139,21
+82653,1047558.914,2617098.984,14554.0231,21
+82654,1043413.284,2608951.02,14449.75529,21
+82655,1044099.537,2605267.837,13719.52478,21
+82656,1041142.088,2601583.889,13226.76213,21
+82657,1041138.037,2599362.172,13113.42775,21
+82658,1037600.08,2595794.419,12339.31608,21
+82659,1038252.836,2593270.038,12085.1759,21
+82660,1035119.106,2590787.613,11623.97296,21
+82661,1035268.445,2586259.589,10969.95208,21
+82662,1031854.957,2585556.161,10913.20113,21
+82663,1032000.399,2582121.254,10070.7753,21
+82664,1029336.56,2578764.878,9883.790849,21
+82665,1028943.277,2577938.501,9610.862508,21
+82666,1027294.869,2574044.027,9282.435487,21
+82667,1025081.633,2573413.149,9133.337054,21
+82668,1025268.848,2568246.091,8937.831135,21
+82669,1022066.589,2568401.98,8765.207448,21
+82670,1021953.482,2564535.199,8475.052788,21
+82671,1020034.594,2564749.047,8396.917206,21
+82672,1018190.578,2560147.333,8089.634443,21
+82673,1017962.54,2558997.173,8044.47707,21
+82674,1015330.673,2556501.871,7639.797463,21
+82675,1014547.712,2555292.032,7650.547848,21
+82676,1014165.99,2553129.173,7377.992312,21
+82677,1011201.959,2549853.264,7066.579179,21
+82678,1010859.628,2550784.525,7135.536123,21
+82679,1008325.142,2546898.147,6691.163653,21
+82680,1009257.414,2545845.333,6650.224935,21
+82681,1006102.723,2543867.922,5934.118362,21
+82682,1006043.024,2541129.57,5637.28267,21
+82683,1004313.118,2539839.311,5547.859879,21
+82684,1004061.598,2537262.097,5411.474403,21
+82685,1001203.521,2534662.096,5025.337723,21
+82686,1000458.689,2533396.142,5017.841755,21
+82687,999008.0091,2531361.363,4637.948757,21
+82688,998005.5652,2530075.234,4616.911006,21
+82689,996526.6395,2528309.813,4374.610093,21
+82690,993939.6339,2526052.572,4212.416868,21
+82691,994003.7176,2524147.29,4131.724806,21
+82692,992570.1916,2522351.879,4069.791814,21
+82693,990234.1975,2521411.793,4034.818866,21
+82694,990424.3072,2519226.655,3942.504226,21
+82695,987558.2687,2517191.034,3915.585635,21
+82696,987120.4477,2515591.078,3844.734397,21
+82697,985641.2902,2513664.148,3787.32037,21
+82698,983819.3517,2513248.651,3724.411752,21
+82699,983861.807,2510079.451,3680.386033,21
+82700,980570.3133,2509526.953,3603.389699,21
+82701,980816.464,2507653.745,3570.23571,21
+82702,978949.7922,2506038.112,3470.462623,21
+82703,977817.5045,2504215.385,3437.050323,21
+82704,976226.316,2503833.458,3387.024804,21
+82705,976228.6331,2500983.02,3314.29003,21
+82706,972627.1854,2499442.609,3263.9634,21
+82707,973235.9015,2499333.774,3190.779564,21
+82708,971668.3066,2496746.438,3131.352289,21
+82709,969104.1836,2496633.036,3103.45261,21
+82710,969575.5527,2494764.748,2992.573886,21
+82711,968134.5026,2492151.644,2969.714579,21
+82712,965858.5026,2490945.442,2881.216815,21
+82713,966013.8429,2490287.466,2843.999326,21
+82714,964510.9403,2486749.854,2754.933334,21
+82715,962436.7096,2486547.12,2717.459718,21
+82716,963074.811,2482258.363,2630.376695,21
+82717,961533.3493,2484224.935,2578.286868,21
+82718,959316.0895,2478879.185,2514.22234,21
+82719,959803.2782,2479298.958,2490.640744,21
+82720,957862.5984,2476531.043,2438.16253,21
+82721,957167.1066,2475576.07,2373.597408,21
+82722,955529.862,2472194.887,2323.311183,21
+82723,955861.9784,2473052.218,2231.717805,21
+82724,953104.9888,2467983.446,2207.665213,21
+82725,953882.0186,2469168.764,2100.781798,21
+82726,951613.8506,2465529.33,2076.538602,21
+82727,951575.9024,2464413.884,1998.359545,21
+82728,949491.0465,2462926.834,1929.644959,21
+82729,949367.5641,2460088.416,1880.344585,21
+82730,948773.0385,2459025.108,1798.759351,21
+82731,946455.6168,2457445.471,1744.163835,21
+82732,946051.5642,2454739.682,1694.108674,21
+82733,945474.5783,2453605.754,1609.219988,21
+82734,943991.8394,2453085.535,1558.613529,21
+82735,943783.1941,2448900.641,1503.157301,21
+82736,942284.4301,2448699.436,1434.666312,21
+82737,940802.6039,2446941.461,1365.824543,21
+82738,940232.3153,2444107.59,1311.803179,21
+82739,939177.5537,2442560.674,1242.261356,21
+82740,938443.7575,2442102.419,1185.497256,21
+82741,936892.3497,2437116.387,1213.954831,21
+82742,933169.5693,2435099.232,1159.137672,21
+82743,933490.1877,2431213.431,1101.965811,21
+82744,931202.0827,2428606.426,1017.626505,21
+82745,930857.0588,2427188.066,988.7107736,21
+82746,928717.1765,2423289.506,903.2315612,21
+82747,927533.7363,2421596.253,844.552346,21
+82748,927292.0387,2418949.815,816.6608619,21
+82749,925356.6651,2416320.032,711.6309248,21
+82750,924448.7439,2412905.649,683.6926425,21
+82751,922814.6813,2411394.03,621.570771,21
+82752,922999.0442,2408473.231,574.49211,21
+82753,919814.7344,2404739.946,574.4984521,21
+82754,920350.7287,2404576.272,526.7780337,21
+82755,918442.2676,2399509.121,542.7312057,21
+82756,916932.3543,2398656.657,494.7680111,21
+82757,916277.7605,2394509.902,510.8040366,21
+82758,915275.6405,2394192.172,446.4220507,21
+82759,914219.0566,2389910.098,462.5891273,21
+82760,912149.9679,2387363.914,397.6563518,21
+82761,911775.8796,2385550.012,413.9659499,21
+82762,910839.1253,2382355.694,364.8953312,21
+82763,908408.9626,2380256.835,348.4336954,21
+82764,908994.8406,2376293.934,331.9154167,21
+82765,906983.3057,2376689.336,315.3382713,21
+82766,906370.042,2371038.065,265.2248361,21
+82767,904154.132,2370330.668,281.9971551,21
+82768,905209.5523,2366664.813,231.470906,21
+82769,901284.1635,2364442.257,214.4779085,21
+82770,902403.4694,2361418,197.4010348,21
+82771,899033.399,2359667.095,162.9700886,21
+82772,901328.098,2356078.549,162.9705852,21
+82773,897178.4465,2355134.755,110.5018659,21
+82774,898124.7889,2350656.184,110.5020942,21
+82775,896048.6857,2350094.374,92.74151689,21
+82776,895904.4552,2346181.095,47.51464284,21
+82777,894185.1796,2343902.531,38.27925303,21
+82778,893846.1551,2340593.693,19.51439652,21
+82779,891449.8989,2340698.222,0,21
+82780,892274.0428,2334793.281,0,21
+82781,890682.4702,2334794.778,0,21
+82782,889448.0144,2331695.065,0,21
+82783,888367.2792,2329055.511,0,21
+82784,888801.6197,2324943.848,0,21
+82785,885328.8657,2325020.91,0,21
+82786,886732.049,2321034.863,0,21
+82787,884234.343,2318809.178,0,21
+82788,884641.1721,2315144.045,0,21
+82789,882620.1275,2315783.883,0,21
+82790,882671.3176,2309424.351,0,21
+82791,880487.8971,2310123.622,0,21
+82792,880881.368,2305395.075,0,21
+82793,878624.4775,2303955.257,0,21
+82794,878871.3561,2301181.06,0,21
+82795,877665.2821,2299396.224,0,21
+82796,876899.2021,2296127.423,0,21
+82797,875737.5785,2293179.917,0,21
+82798,875286.4991,2292408.353,0,21
+82799,873638.4349,2288158.397,0,21
+82800,873339.9068,2286411.369,0,21
+82801,948461.5634,2364117.586,0,21
+82802,948274.9964,2361110.485,0,21
+82803,947541.9386,2359758.338,0,21
+82804,948301.8987,2357415.367,0,21
+82805,948114.458,2355269.089,0,21
+82806,947316.41,2352507.347,0,21
+82807,949016.1657,2351250.418,0,21
+82808,946856.8673,2347842.43,0,21
+82809,947637.0103,2346101.117,0,21
+82810,947917.217,2343430.153,0,21
+82811,946453.015,2341224.044,0,21
+82812,948188.107,2339012.469,0,21
+82813,946614.3431,2336408.34,0,21
+82814,947711.7585,2334845.139,0,21
+82815,945895.6459,2332406.502,0,21
+82816,947398.3143,2329257.7,0,21
+82817,946452.2618,2327024.767,0,21
+82818,945084.214,2324124.182,0,21
+82819,947920.2871,2323262.89,0,21
+82820,945061.6029,2319371.467,0,21
+82821,946039.3155,2317495.471,0,21
+82822,946350.915,2315117.057,0,21
+82823,944767.375,2313925.906,0,21
+82824,946378.6155,2309861.255,0,21
+82825,945094.3163,2308365.646,0,21
+82826,944972.5466,2305277.033,0,21
+82827,944411.6204,2302449.409,0,21
+82828,945351.6764,2301985.743,0,21
+82829,945067.3704,2298046.419,0,21
+82830,944681.435,2295959.189,0,21
+82831,943934.3363,2293821.875,0,21
+82832,944618.3254,2291913.468,0,21
+82833,944150.9002,2290315.11,0,21
+82834,943010.1774,2286349.804,0,21
+82835,945122.5281,2286020.743,0,21
+82836,944000.5821,2282664.167,0,21
+82837,943640.2964,2281888.919,0,21
+82838,943587.879,2278898.554,0,21
+82839,944283.6665,2277225.779,0,21
+82840,942671.2747,2276081.651,0,21
+82841,943986.2933,2272390.31,0,21
+82842,943497.3932,2272526.659,0,21
+82843,943327.2728,2267898.872,0,21
+82844,943224.6445,2267865.65,0,21
+82845,943399.8304,2265120.112,0,21
+82846,943807.2688,2262596.266,0,21
+82847,943090.8432,2261676.518,0,21
+82848,943213.4177,2259826.76,0,21
+82849,942605.2296,2257979.283,0,21
+82850,943569.7592,2254866.363,0,21
+82851,943394.0179,2253673.373,0,21
+82852,942216.0992,2252598.951,0,21
+82853,943862.5675,2248426.108,0,21
+82854,943599.5576,2249374.311,0,21
+82855,942121.8629,2245253.272,0,21
+82856,944442.1066,2244192.062,0,21
+82857,941735.6269,2242839.086,0,21
+82858,943729.3888,2240616.971,0,21
+82859,942478.5819,2238498.149,0,21
+82860,943236.4098,2237722.939,0,21
+82861,866953.5828,2154366.69,0,21
+82862,864824.8705,2153980.571,0,21
+82863,863318.351,2150983.311,0,21
+82864,860957.5611,2149694.618,0,21
+82865,860254.8081,2148081.518,0,21
+82866,859760.3171,2145825.496,0,21
+82867,857274.4787,2145127.317,0,21
+82868,856398.4148,2143738.453,0,21
+82869,854434.4108,2140400.069,0,21
+82870,854685.0038,2139898.753,0,21
+82871,851517.1041,2137730.414,0,21
+82872,850620.6471,2136438.946,0,21
+82873,849988.0187,2134445.366,0,21
+82874,847713.815,2133753.217,0,21
+82875,847254.9763,2132151.145,0,21
+82876,846265.6213,2129937.753,0,21
+82877,844308.9845,2128236.816,0,21
+82878,844180.428,2127349.061,0,21
+82879,840356.004,2124914.61,0,21
+82880,841531.7031,2124856.763,0,21
+82881,839648.9598,2121370.631,0,21
+82882,837879.1945,2121868.623,0,21
+82883,836612.6101,2118570.033,0,21
+82884,836032.4224,2119138.232,0,21
+82885,834490.6744,2116351.165,0,21
+82886,832980.6356,2114747.026,0,21
+82887,831413.363,2114146.629,0,21
+82888,831580.3017,2111970.409,0,21
+82889,828655.6138,2110513.279,0,21
+82890,828691.8878,2110098.865,0,21
+82891,826794.3703,2107981.64,0,21
+82892,825952.6663,2107989.483,0,21
+82893,824283.8612,2106731.386,0,21
+82894,823329.0519,2104137.846,0,21
+82895,822087.9011,2105396.509,0,21
+82896,821065.8731,2102131.45,0,21
+82897,819998.6493,2103555.452,0,21
+82898,817418.1233,2099941.827,0,21
+82899,818167.2357,2100944.803,0,21
+82900,815194.8168,2099304.961,0,21
+82901,815053.0098,2098732.048,0,21
+82902,813798.3526,2097616.664,0,21
+82903,812351.7502,2096751.951,0,21
+82904,810873.6343,2095242.956,0,21
+82905,809956.6582,2095156.372,0,21
+82906,809385.2842,2093720.599,0,21
+82907,806913.633,2093718.218,0,21
+82908,807532.4986,2092201.244,0,21
+82909,804775.3621,2092044.602,0,21
+82910,804509.3253,2091475.185,0,21
+82911,801942.7401,2093832.332,0,21
+82912,802732.8316,2091153.393,0,21
+82913,799373.3668,2090872.724,0,21
+82914,800325.2481,2090986.184,0,21
+82915,797420.4972,2088495.525,0,21
+82916,798184.0668,2089034.877,0,21
+82917,794887.4261,2089211.942,0,21
+82918,796078.9293,2087762.4,0,21
+82919,792196.9937,2086688.072,0,21
+82920,793073.4119,2086420.961,0,21
+82921,791728.4591,2091434.714,0,21
+82922,795288.1923,2094828.79,0,21
+82923,793531.1639,2097697.662,0,21
+82924,793309.6875,2098058.139,0,21
+82925,792575.0753,2099838.762,0,21
+82926,792438.5187,2101623.981,0,21
+82927,790616.3184,2101984.413,0,21
+82928,790939.541,2104123.052,0,21
+82929,790376.7354,2105847.784,0,21
+82930,788794.6122,2105719.394,0,21
+82931,789812.9479,2108612.551,0,21
+82932,787447.4478,2535053.426,0,21
+82933,787938.0183,2109621.748,0,21
+82934,787263.581,2113109.886,0,21
+82935,786368.9932,2112280.952,0,21
+82936,785162.7712,2115165.136,0,21
+82937,785019.7913,2115239.491,0,21
+82938,784603.1357,2117337.125,0,21
+82939,784653.5072,2117647.267,0,21
+82940,782970.9849,2119903.889,0,21
+82941,782508.4434,2120887.332,0,21
+82942,782368.1306,2122144.189,0,21
+82943,781198.0171,2123113.338,0,21
+82944,780822.5573,2124927.337,0,21
+82945,780671.9084,2125950.287,0,21
+82946,779376.1385,2126355.703,0,21
+82947,779267.1857,2132689.953,0,21
+82948,779019.2509,2134091.144,0,21
+82949,777251.4175,2135066.346,0,21
+82950,778479.2518,2136559.457,0,21
+82951,776028.7096,2137727.257,0,21
+82952,777092.22,2138905.969,0,21
+82953,775448.9869,2139710.436,0,21
+82954,775446.7871,2139275.341,0,21
+82955,774478.4245,2138085.276,0,21
+82956,775203.0245,2141428.055,0,21
+82957,773357.3689,2141739.416,0,21
+82958,774103.4068,2142441.638,0,21
+82959,772746.2494,2143414.951,0,21
+82960,773222.0227,2144868.634,0,21
+82961,771765.9283,2144650.745,0,21
+82962,771836.9273,2147846.531,0,21
+82963,771167.8929,2145722.834,0,21
+82964,771266.4886,2149173.055,0,21
+82965,769846.0682,2148951.781,0,21
+82966,770558.4179,2150664.384,0,21
+82967,769293.4847,2151008.408,0,21
+82968,769415.0143,2152097.902,0,21
+82969,769147.3937,2153110.634,0,21
+82970,768193.3356,2153205.86,0,21
+82971,768014.3202,2154769.019,0,21
+82972,766509.1947,2155652.251,0,21
+82973,767788.7768,2156049.612,0,21
+82974,766536.5815,2158064.918,0,21
+82975,766591.6924,2158452.856,0,21
+82976,766240.8942,2158628.525,0,21
+82977,765009.6178,2162520.263,0,21
+82978,766386.4847,2162302.922,0,21
+82979,764053.8663,2163579.907,0,21
+82980,764348.275,2164939.089,0,21
+82981,763784.7843,2162442.213,0,21
+82982,761458.4407,2163049.69,0,21
+82983,761704.2903,2162014.394,0,21
+82984,760561.7381,2159492.003,0,21
+82985,760283.5151,2160441.196,0,21
+82986,759428.9313,2158077.445,0,21
+82987,759068.2634,2157869.416,0,21
+82988,757190.7106,2156778.86,0,21
+82989,757275.3737,2155860.296,0,21
+82990,756823.7614,2155146.162,0,21
+82991,755825.787,2153184.172,0,21
+82992,754727.2473,2153544.214,0,21
+82993,754872.2792,2151197.37,0,21
+82994,753798.7106,2151887.757,0,21
+82995,752609.4248,2150025.545,0,21
+82996,752565.3186,2148323.254,0,21
+82997,751987.0921,2148197.173,0,21
+82998,750296.5783,2146995.911,0,21
+82999,750344.6749,2145479.466,0,21
+83000,749604.5725,2146063.485,0,21
+83001,748059.1101,2142616.073,0,21
+83002,748976.5838,2144645.44,0,21
+83003,747218.2692,2141309.335,0,21
+83004,747408.3049,2140528.187,0,21
+83005,745007.1407,2139956.507,0,21
+83006,746373.4515,2139119.715,0,21
+83007,744768.8833,2137364.834,0,21
+83008,743031.893,2137556.122,0,21
+83009,744033.2598,2134934.316,0,21
+83010,742793.3319,2135982.834,0,21
+83011,741882.3809,2132209.494,0,21
+83012,742226.567,2133313.504,0,21
+83013,740243.1849,2130819.211,0,21
+83014,740637.5272,2131221.783,0,21
+83015,740469.8133,2128096.765,0,21
+83016,738159.793,2127695.187,0,21
+83017,739315.6038,2128202.433,0,21
+83018,737436.8994,2124934.733,0,21
+83019,737877.9231,2124909.203,0,21
+83020,736619.675,2124831.028,0,21
+83021,737274.9947,2121672.464,0,21
+83022,735135.4659,2121127.66,0,21
+83023,736001.749,2119402.136,0,21
+83024,734841.3244,2119146.984,0,21
+83025,733523.2327,2117470.057,0,21
+83026,734467.707,2115662.668,0,21
+83027,732834.2292,2115410.692,0,21
+83028,732932.9134,2113960.145,0,21
+83029,732056.5062,2113480.156,0,21
+83030,731977.0893,2110191.184,0,21
+83031,731019.1123,2111216.75,0,21
+83032,730602.9043,2108485.305,0,21
+83033,730470.8663,2108213.128,0,21
+83034,729188.1866,2106912.602,0,21
+83035,729140.8527,2104826.554,0,21
+83036,728782.4577,2105051.957,0,21
+83037,728347.5651,2103064.745,0,21
+83038,726821.591,2101274.907,0,21
+83039,728083.7489,2101122.844,0,21
+83040,726779.1338,2099472.222,0,21
+83041,726265.6113,2097658.967,0,21
+83042,725376.5728,2096931.679,0,21
+83043,724753.8892,2094564.049,0,21
+83044,725339.1499,2093887.222,0,21
+83045,725337.1049,2092770.859,0,21
+83046,724286.9012,2091380.826,0,21
+83047,725338.871,2091085.674,0,21
+83048,724952.6428,2088702.035,0,21
+83049,725516.1729,2088960.081,0,21
+83050,724495.8426,2087182.053,0,21
+83051,724836.806,2086650.797,0,21
+83052,724388.4038,2085235.643,0,21
+83053,725899.0047,2084053.444,0,21
+83054,723689.9373,2083574.201,0,21
+83055,725980.2423,2081575.645,0,21
+83056,724248.1784,2081021.238,0,21
+83057,725679.5187,2080166.245,0,21
+83058,723624.8023,2077792.053,0,21
+83059,725621.1679,2078105.424,0,21
+83060,724686.811,2076996.727,0,21
+83061,724068.1784,2074891.325,0,21
+83062,726510.6798,2075155.104,0,21
+83063,723759.3335,2072465.653,0,21
+83064,725377.4351,2071882.688,0,21
+83065,725040.4878,2071698.846,0,21
+83066,725171.5241,2069566.48,0,21
+83067,724765.3792,2068982.349,0,21
+83068,725163.3102,2068382.765,0,21
+83069,725421.1188,2066593.822,0,21
+83070,724656.2496,2064729.698,0,21
+83071,726004.1685,2065165.275,0,21
+83072,725157.1944,2062644.114,0,21
+83073,725533.4099,2061940.952,0,21
+83074,724030.166,2061938.987,0,21
+83075,726059.8657,2059336.929,0,21
+83076,724828.4514,2058923.048,0,21
+83077,726087.0864,2057758.321,0,21
+83078,725288.1631,2056625.319,0,21
+83079,725764.5267,2053710.483,0,21
+83080,724783.2083,2054777.217,0,21
+83081,726283.0127,2052775.533,0,21
+83082,724822.8111,2052295.975,0,21
+83083,725676.1518,2050341.001,0,21
+83084,725749.8865,2049211.188,0,21
+83085,725148.4512,2048285.701,0,21
+83086,726164.5376,2045804.716,0,21
+83087,725458.5733,2047018.171,0,21
+83088,726295.6847,2043655.012,0,21
+83089,725558.2609,2043728.266,0,21
+83090,725356.3966,2042680.526,0,21
+83091,726770.0609,2040769.47,0,21
+83092,725441.7115,2039753.767,0,21
+83093,726025.0851,2037686.721,0,21
+83094,726452.1389,2038980.07,0,21
+83095,725711.6531,2035194.645,0,21
+83096,726257.6234,2035482.745,0,21
+83097,726050.8,2033345.553,0,21
+83098,726222.7562,2032775.918,0,21
+83099,726129.2039,2031583.919,0,21
+83100,727399.7827,2030487.185,0,21
+83101,910704.1626,2223287.188,0,21
+83102,922408.9022,2235658.284,0,21
+83103,922827.4185,2237622.052,0,21
+83104,924792.6796,2238938.825,0,21
+83105,927261.2458,2238850.511,0,21
+83106,926588.006,2242302.947,0,21
+83107,929075.7215,2240839.627,0,21
+83108,929741.248,2242367.278,0,21
+83109,930566.7695,2242981.875,0,21
+83110,932361.878,2243682.378,0,21
+83111,931908.7538,2242499.645,0,21
+83112,932960.1621,2245792.494,0,21
+83113,935582.0221,2243517.15,0,21
+83114,933504.5703,2245791.084,0,21
+83115,936472.1706,2245036.282,0,21
+83116,936334.2791,2246352.519,0,21
+83117,936706.2496,2247741.433,0,21
+83118,937635.4889,2248338.983,0,21
+83119,938909.3245,2247874.291,0,21
+83120,939179.0648,2248756.772,0,21
+83121,939791.6173,2249415.182,0,21
+83122,940520.7774,2248155.573,0,21
+83123,940729.5104,2249233.112,0,21
+83124,942863.0076,2248385.677,0,21
+83125,941323.9602,2249434.338,0,21
+83126,943678.0974,2249947.067,0,21
+83127,942967.5689,2248733.937,0,21
+83128,944151.7602,2248096.216,0,21
+83129,944252.5678,2249231.047,0,21
+83130,945843.6828,2248956.733,0,21
+83131,945072.2568,2248551.505,0,21
+83132,946087.905,2248985.221,0,21
+83133,947594.9481,2247950.576,0,21
+83134,944761.0114,2248317.452,0,21
+83135,947708.7992,2248470.913,0,21
+83136,946852.5334,2247176.805,0,21
+83137,947597.2405,2247920.265,0,21
+83138,947276.4381,2247720.014,0,21
+83139,947651.8315,2245773.902,0,21
+83140,949597.054,2247185.865,0,21
+83141,949927.4806,2246597.771,0,21
+83142,950492.8029,2246256.484,0,21
+83143,951103.7236,2246074.833,0,21
+83144,951248.4264,2245195.765,0,21
+83145,950850.4928,2244700.039,0,21
+83146,951385.5747,2246199.728,0,21
+83147,951955.6099,2243872.622,0,21
+83148,951689.7145,2243550.19,0,21
+83149,951983.8431,2244221.617,0,21
+83150,952118.2806,2242322.442,0,21
+83151,952727.4928,2244443.407,0,21
+83152,952067.521,2240860.731,0,21
+83153,953000.1757,2242763.836,0,21
+83154,952739.5995,2241842.584,0,21
+83155,953092.856,2239815.094,0,21
+83156,955311.9295,2242513.558,0,21
+83157,955213.0235,2238890.08,0,21
+83158,955354.4646,2240172.107,0,21
+83159,956312.4944,2239610.222,0,21
+83160,954595.9964,2238462.144,0,21
+83161,1016471.94,2305808.557,0,21
+83162,1020280.329,2312110.578,0,21
+83163,1025433.713,2314316.238,0,21
+83164,1024867.888,2317771.638,0,21
+83165,1028356.436,2317058.569,0,21
+83166,1030088.857,2319928.917,0,21
+83167,1031332.691,2321741.23,0,21
+83168,1034961.72,2324235.332,0,21
+83169,1035959.363,2324347.573,0,21
+83170,1037825.532,2326123.218,0,21
+83171,1038700.561,2328033.31,0,21
+83172,1040876.819,2331256.054,0,21
+83173,1043267.282,2329340.452,0,21
+83174,1045145.255,2333049.513,0,21
+83175,1046181.749,2334416.351,0,21
+83176,1047910.637,2335462.752,0,21
+83177,1050311.379,2335728.766,0,21
+83178,1050769.757,2340325.144,0,21
+83179,1053300.531,2338187.082,0,21
+83180,1054872.486,2340891.447,0,21
+83181,1055858.766,2343116.296,0,21
+83182,1057743.86,2342465.588,0,21
+83183,1059785.901,2345810.086,0,21
+83184,1060668.731,2345033.371,0,21
+83185,1061683.405,2347441.779,0,21
+83186,1064534.824,2349202.351,0,21
+83187,1065256.267,2350584.24,0,21
+83188,1066244.602,2349298.2,0,21
+83189,1067781.006,2354569.126,0,21
+83190,1071440.661,2351065.165,0,21
+83191,1070352.456,2357369.428,0,21
+83192,1072208.995,2353906.617,0,21
+83193,1074484.194,2357914.022,0,21
+83194,1075978.911,2357599.576,0,21
+83195,1076195.252,2359759.931,0,21
+83196,1079618.81,2361257.582,0,21
+83197,1078205.472,2360364.156,0,21
+83198,1082748.292,2364793.709,0,21
+83199,1082059.898,2361591.691,0,21
+83200,1083586.233,2367656.511,0,21
+83201,1084795.944,2364676.993,0,21
+83202,1087076.527,2367820.54,0,21
+83203,1087338.656,2368976.235,0,21
+83204,1089652.626,2368982.943,0,21
+83205,1091287.709,2370696.096,0,21
+83206,1090445.227,2371800.591,0,21
+83207,1095097.293,2372142.609,0,21
+83208,1093072.31,2374645.037,0,21
+83209,1097561.076,2374521.091,0,21
+83210,1095873.44,2376752.222,0,21
+83211,1099310.155,2376127.735,0,21
+83212,1099351.859,2378680.375,0,21
+83213,1101458.698,2379157.1,0,21
+83214,1101536.265,2379724.523,0,21
+83215,1104577.489,2381311.365,0,21
+83216,1104458.973,2382218.756,0,21
+83217,1106405.471,2383107.479,0,21
+83218,1108366.738,2384785.339,0,21
+83219,1107165.066,2384907.485,0,21
+83220,1110849.673,2385786.963,0,21
+83221,1110673.724,2388776.198,0,21
+83222,1112515.65,2387923.944,0,21
+83223,1113862.113,2389748.502,0,21
+83224,1113851.199,2391456.275,0,21
+83225,1115576.894,2392259.852,0,21
+83226,1115312.141,2392652.01,0,21
+83227,1116728.245,2391483.298,0,21
+83228,1117775.3,2394420.039,0,21
+83229,1117010.201,2392225.813,0,21
+83230,1119453.975,2396225.866,0,21
+83231,1119723.176,2394358.293,0,21
+83232,1120452.966,2396973.154,0,21
+83233,1121568.498,2397619.311,0,21
+83234,1121705.318,2397572.1,0,21
+83235,1122669.876,2400379.482,0,21
+83236,1123664.542,2399487.585,0,21
+83237,1124211.446,2401491.391,0,21
+83238,1125255.35,2401014.91,0,21
+83239,1124812.355,2403426.47,0,21
+83240,1127811.728,2404043.231,0,21
+83241,1126537.075,2403955.781,0,21
+83242,1127308.632,2404646.21,0,21
+83243,1129494.515,2407857.723,0,21
+83244,1128803.94,2406701.782,0,21
+83245,1130588.482,2408286.623,0,21
+83246,1129630.479,2408075.662,0,21
+83247,1132381.439,2410814.019,0,21
+83248,1132568.124,2409437.203,0,21
+83249,1131236.493,2412715.972,0,21
+83250,1133957.473,2411343.678,0,21
+83251,1133732.092,2414282.928,0,21
+83252,1135084.299,2412237.923,0,21
+83253,1134079.896,2416242.809,0,21
+83254,1137618.126,2415314.905,0,21
+83255,1135343.198,2416763.099,0,21
+83256,1137456.959,2417079.654,0,21
+83257,1138035.783,2417841.591,0,21
+83258,1138334.848,2420767.32,0,21
+83259,1139237.999,2419340.743,0,21
+83260,1139334.425,2420478.23,0,21
+83261,1140661.203,2422592.935,0,21
+83262,1140243.17,2422136.328,0,21
+83263,1141631.185,2422528.216,0,21
+83264,1141513.341,2425185.231,0,21
+83265,1143061.043,2424589.57,0,21
+83266,1143051.122,2427031.848,0,21
+83267,1145777.209,2425508.375,0,21
+83268,1142616.466,2430248.638,0,21
+83269,1146354.658,2431576.028,0,21
+83270,1145518.233,2431727.513,0,21
+83271,1145775.192,2433365.413,0,21
+83272,1146562.888,2433051.329,0,21
+83273,1146821.617,2435224.706,0,21
+83274,1146467.942,2434356.671,209.223178,21
+83275,1149092.344,2437109.899,130.1856117,21
+83276,1147033.419,2437642.904,165.5844115,21
+83277,1147802.981,2437072.508,217.8824741,21
+83278,1149609.176,2439936.146,217.883377,21
+83279,1147531.98,2439875.061,235.1344426,21
+83280,1147133.043,2439351.666,286.4130943,21
+83281,1156345.451,2448434.636,2178.390119,21
+83282,1158549.603,2448063.183,1957.464187,21
+83283,1159520.875,2449322.148,2379.862094,21
+83284,1161729.612,2450728.873,2412.987656,21
+83285,1161784.179,2450761.314,2830.027139,21
+83286,1164794.368,2452873.107,2846.565734,21
+83287,1164323.727,2450230.102,3160.074547,21
+83288,1166677.02,2455100.386,3283.691279,21
+83289,1167248.697,2453479.433,3586.181748,21
+83290,1168896.579,2453349.554,3602.549371,21
+83291,1169932.289,2455883.845,4024.616045,21
+83292,1170527.773,2454887.812,4024.925487,21
+83293,1172262.079,2455734.123,4202.28929,21
+83294,1174589.033,2456358.809,4459.881271,21
+83295,1174091.216,2458737.582,4620.129739,21
+83296,1175453.441,2455714.409,4779.94147,21
+83297,1177726.454,2459273.445,5035.021838,21
+83298,1177372.15,2458278.164,5066.980913,21
+83299,1179948.065,2459825.392,5336.607946,21
+83300,1181157.698,2459265.029,5620.714009,21
+83301,1181787.849,2459574.445,5850.364691,21
+83302,1182659.401,2461058.45,6005.906049,21
+83303,1184803.107,2461809.379,6274.712185,21
+83304,1185294.295,2460319.938,6467.895441,21
+83305,1186193.277,2462876.144,6653.093312,21
+83306,1188060.571,2462595.785,6818.27399,21
+83307,1188072.461,2462412.978,7111.30377,21
+83308,1190133.453,2464730.476,7151.743833,21
+83309,1191263.22,2462980.521,7472.048644,21
+83310,1191961.976,2465670.804,7622.434592,21
+83311,1192900.434,2463543.644,7803.017868,21
+83312,1195123.909,2466580.023,7980.924214,21
+83313,1195275.672,2464639.021,8132.798783,21
+83314,1196235.649,2467149.493,8434.596624,21
+83315,1198393.772,2466600.127,8474.207566,21
+83316,1198216.666,2466562.368,8777.353979,21
+83317,1200875.595,2467474.113,8935.982018,21
+83318,1201485.82,2468684.641,9104.024458,21
+83319,1201968.058,2468054.911,9266.999368,21
+83320,1203510.805,2468393.65,9439.796305,21
+83321,1205193.389,2470161.787,9727.844239,21
+83322,1204772.547,2469075.323,9767.027762,21
+83323,1206982.026,2470567.459,9929.078062,21
+83324,1208396.37,2469680.037,10213.54274,21
+83325,1209044.687,2472554.58,10528.45309,21
+83326,1210307.65,2469589.405,10597.75883,21
+83327,1210534.754,2472582.126,10891.00569,21
+83328,1212193.151,2472679.667,11208.23524,21
+83329,1213254.332,2471531.01,11174.2671,21
+83330,1214784.533,2473953.371,11597.36966,21
+83331,1215270.315,2473084.376,11638.93706,21
+83332,1216562.173,2472921.238,11878.30965,21
+83333,1217335.616,2474100.479,12024.41715,21
+83334,1219720.15,2475224.116,12337.97465,21
+83335,1219632.567,2474897.959,12439.10768,21
+83336,1220625.873,2474086.85,12690.36152,21
+83337,1222727.269,2477312.077,12795.55775,21
+83338,1222901.804,2475084.288,13571.91211,21
+83339,1224866.493,2476291.169,14913.19653,21
+83340,1224656.386,2477239.294,14594.07177,21
+83341,1227385.421,2476437.594,15454.79741,21
+83342,1229828.31,2477535.354,15488.46242,21
+83343,1230593.071,2476114.432,16155.8087,21
+83344,1232534.575,2475206.747,16411.38937,21
+83345,1234128.783,2477096.059,17060.54472,21
+83346,1235305.647,2473892.957,17461.12969,21
+83347,1238731.096,2474848.284,17728.31801,21
+83348,1237655.207,2474173.434,18164.49973,21
+83349,1240806.104,2473178.604,18755.06319,21
+83350,1241325.506,2473683.49,18832.80252,21
+83351,1244653.065,2472394.557,19569.2588,21
+83352,1243432.286,2472439.326,19811.09385,21
+83353,1247818.995,2471347.654,20358.52336,21
+83354,1247307.273,2471159.364,20522.85509,21
+83355,1249109.231,2470467.558,21244.92123,21
+83356,1251607.426,2469425.357,21397.53841,21
+83357,1252376.876,2470132.134,21912.93036,21
+83358,1253980.65,2468105.748,22334.30231,21
+83359,1255199.858,2469054.308,22694.15303,21
+83360,1257746.569,2468594.406,23287.30747,21
+83361,1258284.937,2466080.502,23391.2992,21
+83362,1260632.923,2467821.589,24077.14176,21
+83363,1261195.107,2466083.096,24270.30477,21
+83364,1264059.486,2465740.104,24840.02074,21
+83365,1264159.667,2464399.189,25046.43359,21
+83366,1266529.83,2466327.651,25632.91008,21
+83367,1267399.531,2462325.454,25937.28958,21
+83368,1269752.56,2464755.316,26498.69549,21
+83369,1271365.379,2462765.354,26688.34562,21
+83370,1271814.868,2462195.125,27079.08391,21
+83371,1274511.791,2463363.099,27599.15112,21
+83372,1274324.913,2459402.571,28234.95193,21
+83373,1277744.025,2461678.544,28059.03519,21
+83374,1278634.304,2460453.762,29021.49996,21
+83375,1279058.754,2460580.853,29005.26173,21
+83376,1281948.37,2458215.247,29637.12491,21
+83377,1283542.158,2458966.65,30071.16664,21
+83378,1283822.829,2458330.921,30281.60221,21
+83379,1286746.962,2456370.131,30841.30346,21
+83380,1286640.078,2457419.261,30960.62972,21
+83381,1290844.342,2457659.718,32716.01385,21
+83382,1289193.972,2453448.222,33128.95118,21
+83383,1292490.475,2456725.5,33911.82525,21
+83384,1293947.547,2455358.591,34381.98002,21
+83385,1294103.929,2452135.217,34895.02714,21
+83386,1298012.275,2454473.782,35773.71655,21
+83387,1296978.793,2454032.835,35996.35167,21
+83388,1300145.326,2452027.752,37168.63065,21
+83389,1301091.491,2451494.319,37012.10804,21
+83390,1302867.36,2451870.667,38297.63411,21
+83391,1303920.982,2450276.071,38593.66654,21
+83392,1305666.705,2450705.932,39118.88443,21
+83393,1307379.87,2449384.453,39720.61774,21
+83394,1308688.503,2448330.639,40504.59175,21
+83395,1310603.31,2449062.856,41059.90378,21
+83396,1311441.8,2447574.736,41601.9419,21
+83397,1313033.679,2447673.318,42087.92852,21
+83398,1314399.882,2446704.913,42649.10281,21
+83399,1316622.708,2444982.216,43597.43042,21
+83400,1317775.227,2446740.084,44030.35531,15.6
+83401,0,0,0,15.6
+83402,0,0,0,15.6
+83403,0,250.4917911,0,15.6
+83404,0,0,0,15.6
+83405,0,0,0,15.6
+83406,0,0,1003310.659,15.6
+83407,0,0,0,15.6
+83408,0,0,0,15.6
+83409,0,0,0,15.6
+83410,0,0,0,15.6
+83411,0,0,0,15.6
+83412,0,0,0,15.6
+83413,0,0,0,15.6
+83414,0,3.189613284,0,15.6
+83415,0,62378.046,0,15.6
+83416,0,1076.160896,0,15.6
+83417,0,17265.45085,0,15.6
+83418,0,23953.94535,0,15.6
+83419,0,19287.32456,0,15.6
+83420,0,20110.43203,0,15.6
+83421,0,20350.94878,0,15.6
+83422,0,20447.36124,0,15.6
+83423,0,20643.14191,0,15.6
+83424,0,20763.89333,0,15.6
+83425,0,416677.158,0,15.6
+83426,0,51921.20374,0,15.6
+83427,0,88654.71982,0,15.6
+83428,0,173706.2107,0,15.6
+83429,0,147979.2245,0,15.6
+83430,339342.6216,143486.5741,0,15.6
+83431,0,148308.9962,0,15.6
+83432,0,149582.0372,0,15.6
+83433,0,150636.7342,0,15.6
+83434,0,151720.6,0,15.6
+83435,0,152593.3157,0,15.6
+83436,0,153838.3338,0,15.6
+83437,0,154799.8011,0,15.6
+83438,0,155864.92,0,15.6
+83439,0,156021.7479,0,15.6
+83440,0,157877.7315,0,15.6
+83441,0,157654.2723,974900.1351,15.6
+83442,0,158630.2362,0,15.6
+83443,0,159952.7519,0,15.6
+83444,0,160111.0924,0,15.6
+83445,0,138585.0339,0,15.6
+83446,0,138668.8026,0,15.6
+83447,0,140123.5238,0,15.6
+83448,0,220136.4255,0,15.6
+83449,0,145194.1979,0,15.6
+83450,0,155444.7237,0,15.6
+83451,0,172259.5212,0,15.6
+83452,0,163813.3166,0,15.6
+83453,0,165312.8037,0,15.6
+83454,0,165885.3515,0,15.6
+83455,0,23096.56119,0,15.6
+83456,0,23104.83837,0,15.6
+83457,0,23119.72689,0,15.6
+83458,0,23217.96904,0,15.6
+83459,0,23150.85887,0,15.6
+83460,0,591905.839,0,15.6
+83461,0,23477.9476,0,15.6
+83462,0,98602.69776,0,15.6
+83463,0,243961.7283,0,15.6
+83464,0,164477.0039,0,15.6
+83465,0,178585.1248,0,15.6
+83466,0,181120.6257,0,15.6
+83467,0,182582.853,0,15.6
+83468,0,184603.9463,0,15.6
+83469,0,185918.0104,0,15.6
+83470,0,187614.7609,0,15.6
+83471,0,189340.6938,0,15.6
+83472,0,191415.1948,0,15.6
+83473,0,192316.6481,0,15.6
+83474,0,194493.0788,0,15.6
+83475,339342.6866,195965.113,0,15.6
+83476,0,197302.7744,948973.4568,15.6
+83477,0,199222.8362,0,15.6
+83478,0,174021.0433,0,15.6
+83479,0,175396.311,0,15.6
+83480,0,176976.8772,0,15.6
+83481,0,274444.6326,0,15.6
+83482,0,191897.2484,0,15.6
+83483,0,192230.9883,0,15.6
+83484,0,220942.7423,0,15.6
+83485,0,209491.2136,0,15.6
+83486,0,212657.0547,0,15.6
+83487,0,214290.2458,0,15.6
+83488,0,215338.7083,0,15.6
+83489,0,217190.5941,0,15.6
+83490,0,28558.95841,0,15.6
+83491,0,28720.96017,0,15.6
+83492,0,28877.76613,0,15.6
+83493,0,685774.9851,0,15.6
+83494,0,52726.82512,0,15.6
+83495,0,181613.383,0,15.6
+83496,0,276977.5658,0,15.6
+83497,0,220136.9473,0,15.6
+83498,0,229698.8403,0,15.6
+83499,0,230729.9468,0,15.6
+83500,0,232368.5277,0,15.6
+83501,0,233668.2089,0,15.6
+83502,0,234720.179,0,15.6
+83503,0,235704.3641,0,15.6
+83504,0,237537.3703,0,15.6
+83505,0,238356.6858,0,15.6
+83506,0,239834.7443,0,15.6
+83507,0,240732.186,0,15.6
+83508,0,242261.0341,0,15.6
+83509,0,243006.192,0,15.6
+83510,0,244709.6464,0,15.6
+83511,0,214318.2491,925309.2895,15.6
+83512,0,215262.4707,0,15.6
+83513,0,309888.3491,0,15.6
+83514,0,230482.7856,0,15.6
+83515,0,245250.9615,0,15.6
+83516,0,256473.4833,0,15.6
+83517,0,252341.0958,0,15.6
+83518,0,253646.9818,0,15.6
+83519,0,254755.9941,0,15.6
+83520,339335.3415,256236.5162,0,15.6
+83521,0,257227.0505,0,15.6
+83522,0,255716.7036,0,15.6
+83523,0,32222.08643,0,15.6
+83524,0,32059.80741,0,15.6
+83525,0,31905.96412,0,15.6
+83526,0,803756.8569,0,15.6
+83527,0,107763.9059,0,15.6
+83528,0,134184.0105,0,15.6
+83529,0,331220.6339,0,15.6
+83530,0,232264.3656,0,15.6
+83531,0,243417.231,0,15.6
+83532,0,243212.8234,0,15.6
+83533,0,241501.8417,0,15.6
+83534,0,239750.0762,0,15.6
+83535,0,239074.6089,0,15.6
+83536,0,236640.3679,0,15.6
+83537,0,235827.4927,0,15.6
+83538,0,234621.868,0,15.6
+83539,0,232629.0313,0,15.6
+83540,0,231277.3938,0,15.6
+83541,0,230052.6525,0,15.6
+83542,0,228418.7574,0,15.6
+83543,0,197773.2009,0,15.6
+83544,0,197126.2681,0,15.6
+83545,0,281409.6148,0,15.6
+83546,0,202851.6695,903700.441,15.6
+83547,0,217829.5104,0,15.6
+83548,0,223288.0646,0,15.6
+83549,0,218207.6852,0,15.6
+83550,0,215969.324,0,15.6
+83551,0,215110.2712,0,15.6
+83552,0,213819.9691,0,15.6
+83553,0,211497.3397,0,15.6
+83554,0,210803.7035,0,15.6
+83555,0,208514.5325,0,15.6
+83556,0,26749.45344,0,15.6
+83557,0,26634.32058,0,15.6
+83558,0,26445.66925,0,15.6
+83559,0,26245.70043,0,15.6
+83560,0,725429.6341,0,15.6
+83561,0,54226.82721,0,15.6
+83562,0,80958.5788,0,15.6
+83563,0,286638.9543,0,15.6
+83564,0,179137.9158,0,15.6
+83565,0,193587.4,0,15.6
+83566,339328.9336,192334.6819,0,15.6
+83567,0,190348.0967,0,15.6
+83568,0,188975.2898,0,15.6
+83569,0,186699.9079,0,15.6
+83570,0,185377.1198,0,15.6
+83571,0,183448.8327,0,15.6
+83572,0,181296.5346,0,15.6
+83573,0,180124.6415,0,15.6
+83574,0,177524.5056,0,15.6
+83575,0,152801.1407,0,15.6
+83576,0,151139.9445,0,15.6
+83577,0,149041.6177,0,15.6
+83578,0,232156.166,0,15.6
+83579,0,149664.1278,0,15.6
+83580,0,152425.4854,0,15.6
+83581,0,173884.6213,883970.0675,15.6
+83582,0,163376.8776,0,15.6
+83583,0,165519.8955,0,15.6
+83584,0,165257.2524,0,15.6
+83585,0,166147.563,0,15.6
+83586,0,166152.7621,0,15.6
+83587,0,166730.7975,0,15.6
+83588,0,166597.251,0,15.6
+83589,0,167417.4267,0,15.6
+83590,0,22439.81831,0,15.6
+83591,38121.25689,22490.34151,0,15.6
+83592,0,22545.5784,0,15.6
+83593,1409.741434,22555.41433,0,15.6
+83594,13547.17371,22622.04214,0,15.6
+83595,10392.21972,637604.0063,0,15.6
+83596,9589.155012,22662.80271,0,15.6
+83597,10313.99033,64752.95497,0,15.6
+83598,10511.88878,254423.4622,0,15.6
+83599,10697.36924,155456.8609,0,15.6
+83600,10900.79402,170609.5194,0,15.6
+83601,11042.75723,171141.5749,0,15.6
+83602,11238.64979,171648.027,0,15.6
+83603,11438.48907,171871.3172,0,15.6
+83604,11563.51257,171874.6121,0,15.6
+83605,11814.90405,172489.2345,0,15.6
+83606,11895.41761,172853.4767,0,15.6
+83607,12175.67711,172436.7838,0,15.6
+83608,12261.74803,150158.8955,0,15.6
+83609,12570.64981,150204.5875,0,15.6
+83610,12724.3655,150704.0058,0,15.6
+83611,12924.9897,234855.7924,0,15.6
+83612,352401.843,156618.2401,0,15.6
+83613,13266.01666,163415.1484,0,15.6
+83614,13428.70904,183427.4242,0,15.6
+83615,13594.87776,173905.5084,0,15.6
+83616,13669.69025,175286.6479,865949.1817,15.6
+83617,13866.49872,175261.7632,0,15.6
+83618,13994.35869,176354.1815,0,15.6
+83619,14195.83844,176278.2148,0,15.6
+83620,14351.76377,176105.0054,0,15.6
+83621,0,176913.0331,0,15.6
+83622,0,176981.6476,0,15.6
+83623,0,177078.8618,0,15.6
+83624,0,177528.2459,0,15.6
+83625,63302.09724,23799.48547,0,15.6
+83626,0,23899.50063,0,15.6
+83627,4832.145231,23848.25961,0,15.6
+83628,24464.68085,23972.9885,0,15.6
+83629,14293.05441,636074.9268,0,15.6
+83630,16030.53712,24014.36216,0,15.6
+83631,16317.53907,87901.82504,0,15.6
+83632,16433.44033,258139.5652,0,15.6
+83633,16626.09556,164577.4739,0,15.6
+83634,16778.52164,180900.6018,0,15.6
+83635,16960.93482,180763.1003,0,15.6
+83636,17119.47183,180934.3556,0,15.6
+83637,17269.25075,181557.3864,0,15.6
+83638,17468.67267,181331.2021,0,15.6
+83639,17534.87469,182060.5546,0,15.6
+83640,17922.82027,181515.4261,0,15.6
+83641,17666.54871,158145.4445,0,15.6
+83642,17640.04892,157880.8433,0,15.6
+83643,17580.29543,157982.3635,0,15.6
+83644,17468.66508,247418.9672,0,15.6
+83645,17427.43479,165526.5304,0,15.6
+83646,17338.93074,170144.9204,0,15.6
+83647,17291.23616,192957.1781,0,15.6
+83648,17210.09122,181718.0321,0,15.6
+83649,17141.46996,183959.5387,0,15.6
+83650,17072.74931,183668.5305,0,15.6
+83651,16966.79156,184068.0048,849492.2476,15.6
+83652,16939.64647,184169.8385,0,15.6
+83653,16841.73308,184427.3176,0,15.6
+83654,16765.06227,184493.2214,0,15.6
+83655,0,184788.3443,0,15.6
+83656,0,185221.7686,0,15.6
+83657,0,184902.0622,0,15.6
+83658,339322.3935,185151.0863,0,15.6
+83659,69992.12199,24983.41273,0,15.6
+83660,0,25026.71319,0,15.6
+83661,7021.361337,24992.85982,0,15.6
+83662,23946.45443,25097.64013,0,15.6
+83663,14980.35354,673785.2172,0,15.6
+83664,16028.09972,25115.85664,0,15.6
+83665,16186.07602,94494.12638,0,15.6
+83666,16078.40365,265493.9727,0,15.6
+83667,15970.08184,172549.0087,0,15.6
+83668,15939.01762,187140.822,0,15.6
+83669,15804.29306,187306.5284,0,15.6
+83670,15749.31505,187366.5443,0,15.6
+83671,15645.75461,187825.8269,0,15.6
+83672,15495.92891,187898.4308,0,15.6
+83673,15343.76259,188137.2577,0,15.6
+83674,15336.64511,162706.4518,0,15.6
+83675,15183.08155,162634.9525,0,15.6
+83676,15151.28209,163289.3805,0,15.6
+83677,15027.73247,255580.1686,0,15.6
+83678,14947.76747,172600.2232,0,15.6
+83679,14853.49474,174368.2962,0,15.6
+83680,14763.64168,199873.6225,0,15.6
+83681,14675.34785,187663.2492,0,15.6
+83682,14574.31336,189535.0987,0,15.6
+83683,14511.26774,189607.8751,0,15.6
+83684,14372.40097,190361.715,0,15.6
+83685,14334.58976,189586.6884,0,15.6
+83686,14205.44226,190627.0478,834469.5698,15.6
+83687,14102.84423,189944.0655,0,15.6
+83688,14047.12247,190837.8617,0,15.6
+83689,0,190454.5496,0,15.6
+83690,0,191014.5739,0,15.6
+83691,0,191020.5924,0,15.6
+83692,0,190942.3087,0,15.6
+83693,0,26083.04495,0,15.6
+83694,64277.65483,26080.84258,0,15.6
+83695,0,26124.07545,0,15.6
+83696,2003.652568,26146.69449,0,15.6
+83697,18321.68513,702752.2669,0,15.6
+83698,13862.08609,30558.48079,0,15.6
+83699,12293.19593,91547.01253,0,15.6
+83700,12714.9428,275380.3436,0,15.6
+83701,13120.35555,177332.9948,0,15.6
+83702,13423.27895,192969.0253,0,15.6
+83703,352946.0988,193092.2264,0,15.6
+83704,13874.81196,193018.0675,0,15.6
+83705,14145.7845,193401.6783,0,15.6
+83706,14323.31774,193561.5122,0,15.6
+83707,14619.11672,167361.4711,0,15.6
+83708,14882.73047,167262.9086,0,15.6
+83709,15055.72707,167371.0861,0,15.6
+83710,15350.47181,263909.5193,0,15.6
+83711,15592.22033,178737.2906,0,15.6
+83712,15780.27073,178420.4078,0,15.6
+83713,16073.05491,206000.1977,0,15.6
+83714,16312.24844,193369.825,0,15.6
+83715,16504.78376,194696.7496,0,15.6
+83716,16804.82981,195306.4682,0,15.6
+83717,17009.8971,195757.6815,0,15.6
+83718,17274.49547,195133.5844,0,15.6
+83719,17488.4494,195964.602,0,15.6
+83720,17753.88476,195707.7173,0,15.6
+83721,17996.13617,196388.1546,820756.8189,15.6
+83722,18199.29486,195755.4105,0,15.6
+83723,18509.77661,196952.9838,0,15.6
+83724,0,196427.42,0,15.6
+83725,0,196482.1158,0,15.6
+83726,0,197401.4982,0,15.6
+83727,71749.14942,27153.39048,0,15.6
+83728,2977.979365,27098.34424,0,15.6
+83729,13897.10885,27168.32415,0,15.6
+83730,26121.74935,27192.35896,0,15.6
+83731,369465.1201,732888.6026,0,15.6
+83732,20847.83579,44025.56101,0,15.6
+83733,48921.08597,79326.14463,0,15.6
+83734,149337.0724,290945.5138,0,15.6
+83735,122085.5397,182324.0222,0,15.6
+83736,117267.0823,198985.8596,0,15.6
+83737,124283.0472,199407.4371,0,15.6
+83738,125502.8086,199801.639,0,15.6
+83739,127970.5341,199743.6068,0,15.6
+83740,130607.1243,172427.615,0,15.6
+83741,132971.1263,172604.8296,0,15.6
+83742,135919.2748,253767.2038,0,15.6
+83743,137932.9321,178396.5962,0,15.6
+83744,140632.0476,200619.0795,0,15.6
+83745,143104.1204,203476.8353,0,15.6
+83746,146037.2311,200730.6153,0,15.6
+83747,148194.9706,200857.2085,0,15.6
+83748,490215.5911,201319.4889,0,15.6
+83749,153436.4637,201524.3354,0,15.6
+83750,156101.516,201653.2756,0,15.6
+83751,158636.9543,201598.2545,0,15.6
+83752,161403.1864,201934.7651,0,15.6
+83753,163865.3226,202073.587,0,15.6
+83754,166351.433,202480.2597,0,15.6
+83755,168876.4659,202119.0158,0,15.6
+83756,172267.559,202764.2845,808241.5372,15.6
+83757,146808.2255,202795.0298,0,15.6
+83758,149433.8319,203024.518,0,15.6
+83759,230307.488,202953.86,0,15.6
+83760,172093.9438,203217,0,17.8
+83761,186438.207,317620.1423,0,17.8
+83762,905824.5643,1398824.385,0,17.8
+83763,880756.6189,1070217.299,0,17.8
+83764,506043.7531,289357.1265,0,17.8
+83765,585044.4184,565705.2256,0,17.8
+83766,438142.9145,598257.3721,0,17.8
+83767,406616.4636,480058.4027,0,17.8
+83768,445370.4802,514723.5001,0,17.8
+83769,419558.726,502132.99,0,17.8
+83770,419642.3868,499551.4077,0,17.8
+83771,418657.6173,497113.8416,0,17.8
+83772,417359.3494,417751.8561,0,17.8
+83773,416666.4361,415726.4406,0,17.8
+83774,416040.2838,569738.1316,0,17.8
+83775,415322.9161,486413.6376,0,17.8
+83776,414937.0896,488408.8291,0,17.8
+83777,414441.4583,490771.3797,0,17.8
+83778,413183.6459,487595.1212,0,17.8
+83779,413208.9332,487021.2901,0,17.8
+83780,412836.1429,485181.2223,0,17.8
+83781,412122.4495,483608.6585,0,17.8
+83782,411981.5669,483143.8082,0,17.8
+83783,411203.6439,481727.2182,0,17.8
+83784,411256.2797,481094.2997,0,17.8
+83785,410895.3913,480113.6436,0,17.8
+83786,410092.9316,478973.681,0,17.8
+83787,410475.799,478539.1269,0,17.8
+83788,409573.4139,476963.5937,0,17.8
+83789,347845.6558,477813.5786,0,17.8
+83790,348203.6666,475204.2509,796814.3852,17.8
+83791,776774.884,452738.4675,0,17.8
+83792,86118.46362,74349.78695,0,17.8
+83793,78237.16686,74343.2974,0,17.8
+83794,848474.1676,1140952.62,0,17.8
+83795,464207.2458,270172.2704,0,17.8
+83796,316808.4008,486588.3188,0,17.8
+83797,425955.1683,486499.1553,0,17.8
+83798,407978.7405,475089.7826,0,17.8
+83799,400471.0221,471133.2463,0,17.8
+83800,399967.0174,470448.5942,0,17.8
+83801,399980.6853,469909.3208,0,17.8
+83802,399315.1681,469667.5534,0,17.8
+83803,399970.9446,468527.5054,0,17.8
+83804,426171.0045,395440.4425,0,17.8
+83805,399527.2333,395476.4745,0,17.8
+83806,404052.0796,542341.4174,0,17.8
+83807,411377.4473,458042.7337,0,17.8
+83808,406270.6169,468853.1173,0,17.8
+83809,407175.2458,464503.9369,0,17.8
+83810,407021.0249,468660.7544,0,17.8
+83811,407134.7,465536.3318,0,17.8
+83812,406741.158,464990.9995,0,17.8
+83813,406993.9707,464575.4698,0,17.8
+83814,406755.8358,464213.3324,0,17.8
+83815,407253.3776,464702.7275,0,17.8
+83816,406742.3468,463266.458,0,17.8
+83817,406859.6068,463231.964,0,17.8
+83818,407173.4176,463187.9595,0,17.8
+83819,406702.0878,462651.4361,0,17.8
+83820,407388.445,462544.0101,0,20
+83821,2102006.287,2606913.328,69497.17033,20
+83822,1830330.397,2622025.346,16139.93373,20
+83823,1025350.023,2040806.92,14094.63356,20
+83824,247786.7335,190596.1856,813740.403,20
+83825,1017507.785,1323634.491,19879.58409,20
+83826,700618.9579,915888.916,20384.06126,20
+83827,1104782.54,1302644.459,20433.40824,20
+83828,1240052.939,1066993.879,20455.07617,20
+83829,932688.5211,1110195.486,20517.88903,20
+83830,935835.4506,1104892.073,20495.78316,20
+83831,932533.0795,1101425.89,20523.79255,20
+83832,930734.6301,1095996.86,20556.17666,20
+83833,928612.5774,1091315.406,20596.22868,20
+83834,872789.3516,1089675.987,20630.94224,20
+83835,880204.4225,1084871.545,20624.60663,20
+83836,876584.9895,945245.2379,20666.36634,20
+83837,939289.5997,1170392.081,20686.57267,20
+83838,912130.0463,1500512.789,20720.73697,20
+83839,886644.9318,1067029.366,20757.52651,20
+83840,897908.1221,1073450.562,20769.5308,20
+83841,894958.1119,1068155.539,20815.73497,20
+83842,890997.8206,1057473.074,20816.74523,20
+83843,888555.4899,1054841.063,28467.89181,20
+83844,879730.7529,1052960.409,57666.96498,20
+83845,879214.5927,1048319.834,65054.64051,20
+83846,876357.0133,1044965.268,56871.32299,20
+83847,873663.4514,1043325.943,73989.40072,20
+83848,870150.9612,1040517.297,74195.92435,20
+83849,869160.4014,1036839.18,72834.16491,20
+83850,865546.0509,1473076.83,75791.20399,20
+83851,862616.8552,1031322.664,54613.21444,20
+83852,745910.3854,1029374.506,55558.03821,20
+83853,906042.6829,1027925.179,56188.38689,20
+83854,849247.578,1024866.545,56871.85753,20
+83855,141729.3174,129381.6856,57260.75887,20
+83856,144633.8015,129110.4933,58294.53939,20
+83857,956193.8975,1513262.141,58703.5918,20
+83858,954678.3088,1177474.852,897885.0418,20
+83859,870666.9739,858682.0049,59410.87881,20
+83860,905947.1515,1093348.232,138177.2296,20
+83861,898977.9623,1033368.934,67656.63684,20
+83862,832372.5863,1030599.196,82250.68786,20
+83863,873034.6769,1028304.841,87351.76499,20
+83864,850716.3384,1008626.799,84275.26703,20
+83865,1173528.664,1007974.765,85004.52516,20
+83866,842073.0466,1007600.465,86151.35733,20
+83867,809392.6878,879595.0373,86299.8877,20
+83868,807179.5036,875902.161,87795.26027,20
+83869,804769.2705,1108944.869,87484.85318,20
+83870,868958.205,1022026.48,22549.45524,20
+83871,836524.5958,971641.4868,22604.65119,20
+83872,815973.6943,1005295.2,22629.61989,20
+83873,829205.1782,995615.6184,22682.2192,20
+83874,824278.2184,992985.4333,22701.56078,20
+83875,821772.5979,992167.4886,22788.1762,20
+83876,820310.1711,989326.3442,22558.05971,20
+83877,819165.6114,988368.1221,22559.70389,20
+83878,816494.6425,987069.3808,22652.52249,20
+83879,815714.8164,986389.5239,22597.39804,20
+83880,814422.3555,983507.2145,22633.45542,21
+83881,2307555.033,2990625.951,1143525.595,21
+83882,2203220.796,2327965.001,90058.31777,21
+83883,703567.8211,1095482.562,122000.1974,21
+83884,840951.2062,1307176.365,251584.5523,21
+83885,1307838.234,1432221.94,189200.8516,21
+83886,1026498.321,1336530.699,201508.8545,21
+83887,1051387.84,1330789.929,198951.5836,21
+83888,1039359.706,1324558.504,199042.3617,21
+83889,1044431.89,1322877.562,201167.293,21
+83890,1039561.248,1316621.334,200441.7117,21
+83891,1034362.907,1306896.832,201813.706,21
+83892,1032499.407,1284158.041,202205.0559,21
+83893,1031617.569,1293653.483,202786.6729,21
+83894,1028457.513,1283756.75,203118.6473,21
+83895,1025849.172,1283720.398,204430.8416,21
+83896,1015067.112,1278482.602,204685.3609,21
+83897,1017741.082,1277765.731,205310.164,21
+83898,1013373.597,1273842.936,205630.9018,21
+83899,1010101.876,1270851.027,206866.1851,21
+83900,1007949.691,1268961.698,206848.9987,21
+83901,1007158.147,1266707.415,207998.3875,21
+83902,1001724.501,1261534.447,208166.1003,21
+83903,1001529.655,1262228.51,208892.2073,21
+83904,999667.674,1259178.343,209995.9332,21
+83905,995780.6422,1255412.348,209984.5522,21
+83906,996562.8645,1255226.432,211066.6642,21
+83907,992413.1275,1250762.564,211245.6935,21
+83908,989435.9298,1251489.385,212344.0951,21
+83909,990338.9304,1247826.487,212571.472,21
+83910,986372.5749,1245615.3,213608.9348,21
+83911,985216.9342,1244527.115,213738.4874,21
+83912,982182.8897,1242202.805,214826.0353,21
+83913,983129.0101,1239647.013,215156.1667,21
+83914,978477.5892,1238984.286,215809.5072,21
+83915,978199.1582,1235139.911,216395.0988,21
+83916,977764.9596,1237453.542,217130.3406,21
+83917,973607.3196,1231193.951,217787.032,21
+83918,973445.5426,1232744.045,217980.5925,21
+83919,972161.3298,1229190.897,219103.5241,21
+83920,971381.4742,1229043.529,219288.0562,21
+83921,967745.2132,1225610.77,220323.312,21
+83922,968167.657,1226330.42,220103.4972,21
+83923,966723.7959,1223513.891,221742.8531,21
+83924,964425.2397,1221850.08,221347.811,21
+83925,965276.4925,1220830.267,222462.0092,21
+83926,964312.3076,1219789.046,222824.5874,21
+83927,963875.7493,1218552.605,223756.4663,21
+83928,961064.4142,1216245.86,223777.2875,21
+83929,961064.0248,1214908.468,224404.066,21
+83930,959784.8736,1213577.777,225265.2919,21
+83931,957184.1868,1213846.869,225721.1177,21
+83932,958188.5447,1209406.597,225822.9517,21
+83933,954070.0744,1210229.924,226893.3863,21
+83934,955703.0075,1209864.389,227478.1107,21
+83935,953087.5623,1206656.19,227646.2609,21
+83936,953521.3578,1206317.935,228062.3553,21
+83937,950979.939,1205755.82,228976.7026,21
+83938,950327.3801,1202151.622,229381.0612,21
+83939,946070.4343,1203807.86,229593.7872,21
+83940,944540.2815,1201643.752,230500.7296,21
+83941,1755576.704,2549402.67,212349.6284,21
+83942,1748873.221,2543374.313,211833.4971,21
+83943,1744745.115,2540881.707,211000.7758,21
+83944,1743539.502,2538222.542,211027.0191,21
+83945,1741060.955,2533876.859,211849.7055,21
+83946,1735921.673,2532373.877,211420.0925,21
+83947,1737117.859,2529424.844,212063.4511,21
+83948,1731804.022,2529858.483,212406.9992,21
+83949,1730656.297,2564809.958,212027.9196,21
+83950,1729040.882,2548006.05,212584.4526,21
+83951,1722680.611,2550626.331,213158.1251,21
+83952,1722664.981,2547928.301,213488.0799,21
+83953,1718478.189,2548164.497,210000.7715,21
+83954,1716934.509,2970580.394,210246.2553,21
+83955,1715125.885,2546053.337,210096.4976,21
+83956,1712724.126,2541649.026,210344.3282,21
+83957,1710277.593,2542605.217,210002.8837,21
+83958,1709120.364,2539761.964,210464.0867,21
+83959,1683523.229,2538819.976,210293.6876,21
+83960,1678277.471,2537647.618,210263.7127,21
+83961,1672613.261,2536173.893,210463.5407,21
+83962,1668296.633,2535047.881,210856.7912,21
+83963,1663699.661,2533303.676,210141.7871,21
+83964,1660393.475,2532376.107,211341.0455,21
+83965,1656085.317,2531488.653,210382.1899,21
+83966,1652408.186,2528710.395,211035.4759,21
+83967,1647477.372,2529775.188,209001.353,21
+83968,1644067.493,2525576.126,209074.6435,21
+83969,1641097.695,2526806.909,209123.0944,21
+83970,1636717.182,2524939.505,209506.5666,21
+83971,1632575.168,2523022.294,208689.4295,21
+83972,1629071.611,2522207.801,208533.0728,21
+83973,1625629.382,2521743.011,207009.1256,21
+83974,1622420.786,2945880.503,206509.3168,21
+83975,1617704.825,2517559.863,205972.4891,21
+83976,1614946.903,2518946.761,205313.4931,21
+83977,1610403.334,2516714.122,204451.0764,21
+83978,1608318.041,2514378.884,204506.2552,21
+83979,1603100.353,2515581.652,203680.3996,21
+83980,1600112.632,2512390.899,203409.266,21
+83981,1596418.303,2513883.886,202729.2376,21
+83982,1593598.54,2510330.285,202895.8049,21
+83983,1588648.681,2509975.456,201548.8876,21
+83984,1587227.562,2508947.624,201631.0546,21
+83985,1580688.598,2509263.99,201027.5795,21
+83986,1579275.664,2505720.46,200273.6497,21
+83987,1574184.828,2507015.232,200039.3028,21
+83988,1572074.566,2504516.372,199028.2022,21
+83989,1566032.592,2504651.869,199326.8287,21
+83990,1565798.521,2502741.09,198423.1337,21
+83991,1558974.07,2502976.216,197608.2271,21
+83992,1556763.291,2501951.51,197412.9697,21
+83993,1551796.404,2499412.621,196707.3789,21
+83994,1549812.015,2925486.728,196295.9725,21
+83995,1545844.286,2498655.08,195381.5966,21
+83996,1541588.898,2498345.076,195290.0611,21
+83997,1537376.705,2496139.665,194278.9155,21
+83998,1534522.454,2496103.301,194133.4624,21
+83999,1530520.676,2493729.896,193086.1709,21
+84000,1525759.781,2495607.389,192885.7529,21
+84001,1298667.385,2237175.797,70201.40139,21
+84002,1705933.06,2223178.084,64468.32217,21
+84003,1265692.873,2218586.158,63198.25586,21
+84004,1256158.288,2214984.184,61233.97918,21
+84005,1250749.492,2210565.235,59943.99322,21
+84006,1242162.774,2209589.743,58352.02225,21
+84007,1235523.402,2204803.713,57425.16387,21
+84008,1229278.32,2203902.205,55869.53143,21
+84009,1220998.073,2201263.904,54627.44156,21
+84010,1215569.556,2198388.839,53524.70272,21
+84011,1209630.053,2197163.122,52391.95723,21
+84012,1202367.689,2194909.155,51102.39756,21
+84013,1195626.409,2619746.135,49775.82711,21
+84014,1189929.937,2190623.869,48864.06023,21
+84015,1182723.667,2189130.05,47865.87873,21
+84016,1177021.768,2184507.822,46334.004,21
+84017,1170216.815,2180795.59,45334.12938,21
+84018,1163669.689,2178975.183,44303.11866,21
+84019,1158098.503,2177514.493,43364.47332,21
+84020,1584779.518,2175885.966,41859.97825,21
+84021,1144709.941,2173469.521,41217.47163,21
+84022,1139087,2172973.617,39781.30316,21
+84023,1131440.84,2169936.29,39179.29482,21
+84024,1126730.719,2169585.516,35823.42535,21
+84025,1118904.26,2166174.472,35306.4323,21
+84026,1113862.964,2166714.834,33854.85204,21
+84027,1107832.511,2164825.024,32677.22161,21
+84028,1099714.038,2162490.681,31767.87066,21
+84029,1096382.322,2161995.635,30404.10332,21
+84030,1087917.863,2160687.568,29638.26602,21
+84031,1083343.762,2159501.724,28137.26823,21
+84032,1076443.317,2156824.089,26887.55625,21
+84033,1071275.935,2156302.222,25650.00136,21
+84034,1065306.284,2155126.891,24447.11599,21
+84035,1059285.014,2153010.354,23658.35246,21
+84036,1052879.755,2152524.446,22580.28369,21
+84037,1046769.512,2152219.277,22269.12309,21
+84038,1042500.948,2149172.184,21782.16135,21
+84039,1035760.054,2148924.14,21620.14813,21
+84040,1029361.979,2149351.139,21052.33794,21
+84041,1024717.484,2148506.209,20771.9741,21
+84042,1017620.997,2145572.335,20390.82421,21
+84043,1012656.329,2146213.824,19946.96405,21
+84044,1006908.092,2143894.576,19250.01297,21
+84045,1000266.195,2144261.185,18980.85365,21
+84046,996051.6764,2141055.546,18413.6809,21
+84047,1422831.666,2142208.464,17886.62713,21
+84048,984315.7508,2139063.579,17799.80108,21
+84049,977448.894,2139372.26,17190.12933,21
+84050,972970.1564,2137033.219,16870.52149,21
+84051,966783.8997,2135617.761,16442.76716,21
+84052,961334.8912,2133296.076,15996.47161,21
+84053,956774.8134,2132350.143,15589.50506,21
+84054,950890.2837,2131779.1,15284.55294,21
+84055,947289.4618,2131470.2,14821.93658,21
+84056,941160.8037,2128387.176,14352.02595,21
+84057,936647.3214,2129600.166,13903.54322,21
+84058,931856.9162,2126261.986,13560.241,21
+84059,927273.8722,2127047.986,13284.39671,21
+84060,922509.337,2124860.372,12616.82787,21
+84061,918522.8114,2123819.79,12165.82957,21
+84062,910192.6122,2119313.062,11857.35939,21
+84063,906616.4348,2082015.025,11173.25957,21
+84064,900285.9195,2068474.489,10894.73741,21
+84065,894399.2557,2066647.006,10525.06538,21
+84066,888382.911,2064186.568,10099.08668,21
+84067,884437.8877,2057435.061,9882.75928,21
+84068,876324.0278,2053624.57,9434.1821,21
+84069,872853.5861,2050668.449,9078.22952,21
+84070,866751.5742,2048138.275,8611.709592,21
+84071,859871.1868,2043248.934,8232.031895,21
+84072,855942.0185,2039656.201,7760.647122,21
+84073,849656.7178,2036058.906,7543.869919,21
+84074,844391.0555,2032091.182,7158.050413,21
+84075,838976.8615,2027830.842,6707.281368,21
+84076,833823.9813,2024818.548,6424.228199,21
+84077,827312.5416,2021457.607,6029.873185,21
+84078,822851.2855,2017029.655,5771.506111,21
+84079,816465.1269,2014225.687,5254.808654,21
+84080,812398.9719,2010026.148,5077.023841,21
+84081,807544.0478,2004329.821,4594.309913,21
+84082,804886.2095,2000812.149,4565.716635,21
+84083,798416.814,1998357.911,4410.535211,21
+84084,796680.4097,1993423.343,4318.243145,21
+84085,791191.443,1990952.39,4272.05251,21
+84086,787229.4723,1986927.096,4162.020276,21
+84087,782924.2031,1983413.261,4036.980649,21
+84088,778419.0084,1980079.369,3975.680052,21
+84089,775158.7088,1976315.597,3847.186052,21
+84090,770753.0083,1973839.39,3788.154633,21
+84091,766379.8869,1970208.256,3688.632301,21
+84092,762782.5537,1966103.062,3599.389264,21
+84093,758639.1733,1964372.791,3514.304361,21
+84094,754381.1444,1961542.014,3404.207817,21
+84095,750324.8845,1957643.925,3374.181898,21
+84096,747106.1213,1955660.579,3225.512304,21
+84097,741832.2196,1951267.544,3182.586062,21
+84098,737945.7414,1949174.557,3081.285239,21
+84099,734587.6584,1946308.968,2969.307161,21
+84100,731404.6564,1942087.334,2918.379032,21
+84101,727222.0564,1941045,2825.869946,21
+84102,724282.5248,2361203.162,2721.021279,21
+84103,720419.1339,1935160.864,2658.835376,21
+84104,717405.736,1930684.696,2558.096813,21
+84105,713458.9373,1927474.768,2459.224403,21
+84106,710078.1546,1925070.484,2409.620418,21
+84107,706576.8848,1921741.973,2291.884285,21
+84108,703121.3824,1919105.838,2225.820103,21
+84109,699603.3993,1915110.171,2139.25124,21
+84110,695963.0719,1914039.309,2040.078147,21
+84111,692513.5979,1909013.238,1969.095992,21
+84112,689186.1055,1906862.359,1885.12973,21
+84113,685587.9367,1904195.19,1780.395199,21
+84114,682374.0179,1899741.999,1746.910843,21
+84115,678717.6727,1898306.394,1605.471301,21
+84116,675204.8675,1894817.238,1552.50827,21
+84117,671627.5467,1892562.761,1462.536795,21
+84118,668309.4209,1887266.127,1407.102181,21
+84119,664942.6288,1885461.174,1369.973974,21
+84120,661178.9064,1879724.213,1332.750501,21
+84121,658399.7516,1882348.421,1239.246654,21
+84122,656605.538,2308776.248,1201.675554,21
+84123,654982.5845,1882881.505,1145.118015,21
+84124,653055.4966,1882732.463,1126.218277,21
+84125,651336.6947,1881185.167,1069.336112,21
+84126,649995.1891,1883779.588,1050.324838,21
+84127,647493.8735,1881085.537,1012.207907,21
+84128,646380.1465,1882167.747,954.8078216,21
+84129,644457.7912,1881336.881,954.8144859,21
+84130,642685.2795,1881221.68,897.1389936,21
+84131,640942.7856,1881150.738,858.5315912,21
+84132,638882.5742,1881500.906,839.1812396,21
+84133,637329.8705,1879918.504,800.3738016,21
+84134,635390.8577,1881364.268,761.4272847,21
+84135,633703.9073,1881346.144,722.3365056,21
+84136,632007.4993,1878980.602,702.7371404,21
+84137,630215.5486,1880916.953,643.6986902,21
+84138,628406.316,1879612.719,623.9408067,21
+84139,626894.4033,1879743.394,584.2954043,21
+84140,624909.4626,1879120.254,544.4740758,21
+84141,623592.4187,1880030.541,504.4670501,21
+84142,621375.8265,1879258.895,484.3913784,21
+84143,620107.7861,1878747.462,423.8489483,21
+84144,618163.4249,1879000.293,423.8503671,21
+84145,616521.1004,1878205.905,342.3245307,21
+84146,620368.119,1878940.881,342.3254701,21
+84147,616797.8869,1877379.978,301.1729203,21
+84148,615959.6717,1879567.403,238.8749631,21
+84149,615753.6094,1877661.597,238.8754306,21
+84150,614193.7182,1879746.056,175.7635623,21
+84151,613565.9633,1879429.65,154.5081775,21
+84152,612241.6317,1880951.467,89.89150014,21
+84153,611687.8482,1879322.526,67.98580116,21
+84154,610697.7678,1879831.9,23.28456538,21
+84155,609398.9701,1878908.704,0,21
+84156,608737.8414,1881348.274,0,21
+84157,607816.2474,1878843.557,0,21
+84158,606710.612,1878187.713,0,21
+84159,605834.782,1877135.402,0,21
+84160,605131.9807,1878678.759,0,21
+84161,600759.8539,1876554.628,0,21
+84162,596112.1866,1877866.313,0,21
+84163,597056.2705,1877079.741,0,21
+84164,594686.4914,1877872.624,0,21
+84165,592701.409,1877578.276,0,21
+84166,591489.8729,1877659.305,0,21
+84167,589425.2288,1877913.94,0,21
+84168,588112.2284,1877202.775,0,21
+84169,586104.7029,1877356.671,0,21
+84170,584813.9853,1878576.497,0,21
+84171,582757.8206,1876385.087,0,21
+84172,581189.6249,1877536.457,0,21
+84173,579688.6394,1875764.87,0,21
+84174,577581.3438,1876067.999,0,21
+84175,575998.457,1875231.596,0,21
+84176,574218.8972,1876787.537,0,21
+84177,572289.9647,2300450.451,0,21
+84178,570730.8773,1875430.359,0,21
+84179,568737.4386,1876004.328,0,21
+84180,567012.695,1876705.318,0,21
+84181,560925.5226,1871722.433,0,21
+84182,559335.5885,1867929.983,0,21
+84183,558346.9234,1863991.045,0,21
+84184,556680.8069,1862939.131,0,21
+84185,555641.7645,1857832.095,0,21
+84186,553936.3402,1855906.323,0,21
+84187,552143.913,1851780.406,0,21
+84188,550403.1443,1849215.536,0,21
+84189,549730.6733,1847430.556,0,21
+84190,547177.9754,1841799.472,0,21
+84191,546599.1104,1840885.98,0,21
+84192,544885.5062,1835697.691,0,21
+84193,543534.0772,1834556.002,0,21
+84194,541820.2471,1830699.618,0,21
+84195,540243.7125,1826785.59,0,21
+84196,538899.9927,2249852.951,0,21
+84197,537018.0688,1822136.311,0,21
+84198,535676.2709,1817596.472,0,21
+84199,533602.1795,1815368.099,0,21
+84200,532555.4855,1812233.57,0,21
+84201,530295.6931,1808747.236,0,21
+84202,529135.1598,1805942.677,0,21
+84203,526966.4567,1802921.409,0,21
+84204,525433.8405,1799389.164,0,21
+84205,523507.9865,1797768.937,0,21
+84206,522144.8786,1792643.434,0,21
+84207,520080.904,1791231.308,0,21
+84208,518325.6833,1787284.811,0,21
+84209,516307.0871,1783992.825,0,21
+84210,514976.3707,1783532.82,0,21
+84211,512774.7973,1779997.628,0,21
+84212,511019.4245,1776878.67,0,21
+84213,509269.4849,1773979.55,0,21
+84214,507841.7467,1772667.056,0,21
+84215,505353.2193,2193352.719,0,21
+84216,504032.21,1765281.383,0,21
+84217,502143.1793,1762727.016,0,21
+84218,500155.4941,1760899.356,0,21
+84219,498390.2818,1757247.102,0,21
+84220,496491.8075,1753964.919,0,21
+84221,494861.4575,1752591.083,0,21
+84222,492911.6853,1747678.129,0,21
+84223,491185.2156,1746818.378,0,21
+84224,489238.5502,1742843.082,0,21
+84225,487388.4001,1740292.381,0,21
+84226,485290.0788,1737783.875,0,21
+84227,483963.773,1735447.702,0,21
+84228,482307.7956,1731736.107,0,21
+84229,480008.7074,1728896.456,0,21
+84230,479031.072,2152227.707,0,21
+84231,476705.1623,1723554.766,0,21
+84232,475519.7544,1720514.445,0,21
+84233,473614.3382,1718489.726,0,21
+84234,471852.8752,1714892.224,0,21
+84235,470271.0957,1713165.755,0,21
+84236,468558.4621,1709798.521,0,21
+84237,467091.0959,1706389.23,0,21
+84238,465216.4435,1705364.21,0,21
+84239,463984.2302,1700729.602,0,21
+84240,461719.6357,1698740.908,0,21
+84241,484428.4207,1777241.824,0,21
+84242,483163.5909,1776461.509,0,21
+84243,486462.6446,1775961.062,0,21
+84244,482591.7247,1774225.162,0,21
+84245,481292.2745,1773563.739,0,21
+84246,479766.5668,1772604.15,0,21
+84247,478106.6647,1771139.346,0,21
+84248,476654.6151,1770774.035,0,21
+84249,475090.6424,2194551.067,0,21
+84250,473598.9643,1768730.903,0,21
+84251,471891.8436,1766540.282,0,21
+84252,470489.0627,1767948.015,0,21
+84253,469013.9359,1764403.635,0,21
+84254,467575.6402,1764107.561,0,21
+84255,465902.5046,1763039.037,0,21
+84256,464443.1911,1762561.884,0,21
+84257,463368.4651,1760715.502,0,21
+84258,461130.8836,1759478.351,0,21
+84259,460263.3571,1758441.928,0,21
+84260,459015.6291,1758238.284,0,21
+84261,456722.4761,1756351.057,0,21
+84262,455949.5453,1756163.458,0,21
+84263,454219.2576,1754470.034,0,21
+84264,452803.7805,2178439.44,0,21
+84265,451264.3981,1752695.289,0,21
+84266,449695.51,1751148.941,0,21
+84267,448310.7981,1750056.883,0,21
+84268,446726.3074,1748747.37,0,21
+84269,445391.7566,1748353.79,0,21
+84270,443314.7424,1747113.562,0,21
+84271,442097.7274,1745550.125,0,21
+84272,440551.3095,1744590.074,0,21
+84273,438495.5698,1743940.822,0,21
+84274,437291.3262,1741863.64,0,21
+84275,435549.1652,1741193.253,0,21
+84276,433919.6556,1740515.112,0,21
+84277,432298.5686,1738648.611,0,21
+84278,430736.6775,1738269.596,0,21
+84279,429014.6272,2162741.751,0,21
+84280,427578.7328,1734996.01,0,21
+84281,425867.71,1735342.341,0,21
+84282,424269.143,1733268.942,0,21
+84283,422782.6974,1732326.126,0,21
+84284,421008.6917,1731516.772,0,21
+84285,419637.5041,1729509.718,0,21
+84286,418046.5983,1729247.141,0,21
+84287,416684.2272,1728431.596,0,21
+84288,415349.5882,1726908.439,0,21
+84289,413495.7158,1726581.905,0,21
+84290,412519.7049,1724012.597,0,21
+84291,410921.2075,1724543.446,0,21
+84292,409703.6443,1722219.409,0,21
+84293,408160.4422,1722239.819,0,21
+84294,406762.3634,2145948.483,0,21
+84295,405557.2573,1719496.524,0,21
+84296,404251.4588,1718291.894,0,21
+84297,402985.4268,1717689.485,0,21
+84298,401649.0414,1716952.804,0,21
+84299,400295.6114,1715283.843,0,21
+84300,399188.9981,1714112.233,0,21
+84301,375088.6605,1637331.515,0,21
+84302,373848.9145,1635213.125,0,21
+84303,373583.1045,1633058.944,0,21
+84304,373083.9391,1632423.338,0,21
+84305,372732.4687,1630701.563,0,21
+84306,372299.6165,1628474.638,0,21
+84307,371959.6052,1627922.356,0,21
+84308,371710.6017,1626078.151,0,21
+84309,370866.7191,2049770.065,0,21
+84310,370976.044,1622925.621,0,21
+84311,370489.7375,1621553.123,0,21
+84312,370233.7362,1619990.8,0,21
+84313,369954.163,1618557.504,0,21
+84314,369336.2695,1616844.85,0,21
+84315,369426.5227,1615728.135,0,21
+84316,369072.4067,1613255.842,0,21
+84317,368576.057,1613083.385,0,21
+84318,368697.5088,1610436.744,0,21
+84319,368133.5972,1609526.48,0,21
+84320,367880.2803,1608029.21,0,21
+84321,367793.264,1606402.869,0,21
+84322,367737.3581,1604836.592,0,21
+84323,367031.3016,1603508.033,0,21
+84324,367053.1219,2027658.04,0,21
+84325,366865.9996,1600080.962,0,21
+84326,366543.5425,1599343.436,0,21
+84327,366247.2634,1597132.771,0,21
+84328,366000.5716,1596490.406,0,21
+84329,365865.1425,1594296.896,0,21
+84330,365499.7429,1593206.303,0,21
+84331,365416.8448,1591803.531,0,21
+84332,364895.6523,1591035.028,0,21
+84333,365116.6901,1589482.89,0,21
+84334,364378.3515,1588654.195,0,21
+84335,364656.1789,1587598.021,0,21
+84336,364124.0489,1586210.51,0,21
+84337,364212.7255,1585685.221,0,21
+84338,363470.717,1584457.829,0,21
+84339,363659.2274,2009006.356,0,21
+84340,362944.7501,1582576.993,0,21
+84341,362889.5286,1581866.045,0,21
+84342,362474.5669,1580251.3,0,21
+84343,362522.4751,1579796.337,0,21
+84344,361435.8442,1578844.719,0,21
+84345,361648.0436,1577640.867,0,21
+84346,361250.9761,1576787.63,0,21
+84347,360586.3137,1576124.629,0,21
+84348,360330.9658,1574845.584,0,21
+84349,359678.7961,1574505.576,0,21
+84350,359306.8862,1573008.622,0,21
+84351,358934.9129,1572827.354,0,21
+84352,358292.0924,1571458.532,0,21
+84353,358026.6586,1570372.475,0,21
+84354,357206.3672,1995962.904,0,21
+84355,356855.8548,1568734.045,0,21
+84356,356130.9336,1568255.173,0,21
+84357,355594.9315,1567352.323,0,21
+84358,355296.9189,1566494.406,0,21
+84359,354176.86,1565763.758,0,21
+84360,355721.7239,1564311.178,0,21
+84361,357910.1047,1569761.671,0,21
+84362,357317.1384,1569779.068,0,21
+84363,356994.2656,1570355.279,0,21
+84364,355883.1031,1571475.329,0,21
+84365,355208.6839,1571255.72,0,21
+84366,354811.0197,1571996.913,0,21
+84367,353491.7394,1572063.31,0,21
+84368,352817.8015,1572943.739,0,21
+84369,352282.9848,1573059.281,0,21
+84370,351382.5403,1573927.735,0,21
+84371,350279.6298,1574122.352,0,21
+84372,349738.3459,1574845.994,0,21
+84373,348931.292,2000308.292,0,21
+84374,347650.1714,1576322.475,0,21
+84375,347406.848,1575519.741,0,21
+84376,345988.8087,1576865.942,0,21
+84377,345354.5754,1576865.357,0,21
+84378,344579.1028,1577409.322,0,21
+84379,343588.3051,1577992.709,0,21
+84380,342706.2956,1578333.549,0,21
+84381,341630.4031,1579168.904,0,21
+84382,341056.1142,1579315.24,0,21
+84383,339867.7422,1580160.907,0,21
+84384,339194.4686,1580194.861,0,21
+84385,338388.3706,1580895.084,0,21
+84386,337053.5985,1581619.184,0,21
+84387,336533.2615,1581614.941,0,21
+84388,335455.296,1583005.444,0,21
+84389,334670.8189,1582347.157,0,21
+84390,333409.8386,1584054.359,0,21
+84391,333007.6696,1583283.795,0,21
+84392,331628.8727,1584423.341,0,21
+84393,330839.0251,1584532.009,0,21
+84394,329906.1941,1584493.417,0,21
+84395,329308.7016,1585228.511,0,21
+84396,328213.9756,1585594.389,0,21
+84397,327806.824,1585583.799,0,21
+84398,327009.8442,1585764.041,0,21
+84399,326204.4262,1586189.574,0,21
+84400,325339.9066,1586286.137,0,21
+84401,324947.9371,1587124.309,0,21
+84402,324236.2381,1586700.795,0,21
+84403,323007.0663,1587134.789,0,21
+84404,322946.5552,1587343.071,0,21
+84405,321894.5639,1587559.927,0,21
+84406,321617.6446,1587977.78,0,21
+84407,321238.7883,1587914.641,0,21
+84408,321819.1888,1588405.677,0,21
+84409,321933.5421,1588581.475,0,21
+84410,322375.5749,1588508.583,0,21
+84411,322331.2654,1588780.811,0,21
+84412,322969.033,1586790.828,0,21
+84413,323377.1421,1585404.516,0,21
+84414,323710.1145,1586150.604,0,21
+84415,323691.4616,1585747.623,0,21
+84416,324580.985,1585853.412,0,21
+84417,324502.8126,1585825.976,0,21
+84418,325219.5839,1586251.718,0,21
+84419,325406.803,1585742.99,0,21
+84420,325712.8087,1586512.864,0,21
+84421,320723.8132,1581639.126,0,21
+84422,320093.8798,1581274.726,0,21
+84423,320368.3528,1580299.737,0,21
+84424,320101.1693,1580516.705,0,21
+84425,320544.4663,1579864.009,0,21
+84426,319780.4117,1579241.899,0,21
+84427,320215.7647,1578712.687,0,21
+84428,319915.6185,1578294.627,0,21
+84429,320133.5827,1578130.597,0,21
+84430,319898.0445,1577324.734,0,21
+84431,319977.562,1576966.053,0,21
+84432,319861.7816,1576696.998,0,21
+84433,319889.7431,1575737.814,0,21
+84434,319952.2997,1576021.974,0,21
+84435,320067.3998,1574756.059,0,21
+84436,320008.2043,1574628.319,0,21
+84437,320026.3793,1574476.248,0,21
+84438,320083.4793,1573771.006,0,21
+84439,320007.167,1573065.328,0,21
+84440,320333.0774,1573201.191,0,21
+84441,320110.698,1572208.388,0,21
+84442,320416.2253,1572220.682,0,21
+84443,320316.4653,1571308.812,0,21
+84444,320674.9178,1571255.125,0,21
+84445,320521.778,1570698.104,0,21
+84446,320791.8477,1570137.428,0,21
+84447,320749.2711,1570181.5,0,21
+84448,321163.0956,1568936.486,0,21
+84449,320913.5057,1569130.003,0,21
+84450,321427.9854,1568428.2,0,21
+84451,321401.7112,1566870.797,0,21
+84452,321884.1372,1566772.656,0,21
+84453,321932.6901,1566560.833,0,21
+84454,322471.718,1566583.799,0,21
+84455,322736.4902,1566337.062,0,21
+84456,323254.8165,1566328.218,0,21
+84457,323587.8988,1566356.816,0,21
+84458,324071.0351,1566292.298,0,21
+84459,324567.7572,1566489.901,0,21
+84460,324880.8846,1565906.145,0,21
+84461,325650.6133,1566765.585,0,21
+84462,325780.2149,1566393.485,0,21
+84463,326397.0657,1564661.814,0,21
+84464,327112.8732,1564127.851,0,21
+84465,327146.3764,1564269.63,0,21
+84466,327918.3005,1564152.374,0,21
+84467,328322.1195,1564299.49,0,21
+84468,328933.842,1564112.501,0,21
+84469,329139.5202,1564563.294,0,21
+84470,329775.4521,1564027.641,0,21
+84471,330122.4443,1564909.658,0,21
+84472,330607.31,1564211.155,0,21
+84473,331395.7247,1564713.799,0,21
+84474,331488.2265,1564871.14,0,21
+84475,332415.3525,1565022.725,0,21
+84476,332446.3816,1565222.811,0,21
+84477,333467.951,1565022.189,0,21
+84478,333513.5073,1565523.037,0,21
+84479,334400.8219,1991067.781,0,21
+84480,334865.3791,1565767.288,0,21
+84481,336562.4843,1568246.09,0,21
+84482,338680.9962,1569529.07,0,21
+84483,340693.7681,1571842.539,0,21
+84484,342567.6493,1574474.633,0,21
+84485,344338.0043,1575050.099,0,21
+84486,346553.3893,1579109.164,0,21
+84487,348330.9131,1579707.496,0,21
+84488,350362.7264,1583355.539,0,21
+84489,352316.1307,1584156.338,0,21
+84490,354288.3208,1586992.011,0,21
+84491,356288.1877,1589191.481,0,21
+84492,358029.3897,1591494.616,0,21
+84493,360301.7527,1593363.37,0,21
+84494,362264.3766,1596350.047,0,21
+84495,364085.7076,1597731.085,0,21
+84496,366069.8421,1600687.559,0,21
+84497,368057.5744,1602694.057,0,21
+84498,370084.2843,1605085.112,0,21
+84499,372263.962,1607458.009,0,21
+84500,374008.4558,1609775.586,0,21
+84501,375972.9537,1612133.62,0,21
+84502,378196.3754,2039869.021,0,21
+84503,379929.9112,1616753.374,0,21
+84504,382151.8319,1619276.808,0,21
+84505,383920.9511,1621752.191,0,21
+84506,386130.6525,1623715.423,0,21
+84507,388208.4421,1626507.308,0,21
+84508,389945.6442,1629029.648,0,21
+84509,391825.1774,1630925.917,0,21
+84510,394303.0291,1633943.334,0,21
+84511,396107.8182,1636453.647,0,21
+84512,398250.3485,1638843.338,0,21
+84513,400688.9053,1641049.778,0,21
+84514,402821.5369,1643922.235,0,21
+84515,405129.7079,1645749.573,0,21
+84516,407082.5731,1649257.106,0,21
+84517,409352.7779,1651062.833,0,21
+84518,411316.8269,1653744.027,0,21
+84519,413463.534,1656247.235,0,21
+84520,415669.8438,1658947.41,0,21
+84521,417240.3705,1661648.792,0,21
+84522,419390.5372,1663606.73,0,21
+84523,420020.0617,1666768.205,0,21
+84524,421592.9438,1668730.255,0,21
+84525,422064.6258,2097104.199,0,21
+84526,423686.3394,1674246.658,0,21
+84527,424160.8389,1676417.151,0,21
+84528,425598.9999,1679783.528,0,21
+84529,426682.9354,1681670.692,0,21
+84530,427574.2269,1684777.105,0,21
+84531,428817.7815,1686757.144,0,21
+84532,429671.5227,1689898.839,0,21
+84533,430590.5594,1691768.854,0,21
+84534,431856.4451,1695768.045,0,21
+84535,433015.2727,1696519.687,0,21
+84536,433872.8114,1700282.456,0,21
+84537,435243.6904,1703162.286,0,21
+84538,435963.1334,1704790.745,0,21
+84539,437637.7253,1707830.193,0,21
+84540,438358.2952,1711970.411,0,21
+84541,466912.6271,1790016.83,0,21
+84542,468892.7072,1794925.198,0,21
+84543,469577.1343,1799144.247,0,21
+84544,470432.8818,1800365.782,0,21
+84545,471514.984,1803166.139,0,21
+84546,472048.1327,1806150.046,0,21
+84547,473198.2634,1865798.33,0,21
+84548,474074.3508,1884299.784,0,21
+84549,475002.6357,1873953.168,0,21
+84550,476038.6852,1886609.515,0,21
+84551,476944.0285,1892832.639,0,21
+84552,477882.4855,1894085.558,0,21
+84553,478432.7087,1898460.601,0,21
+84554,479495.1246,1900363.489,0,21
+84555,480516.0751,1904411.782,0,21
+84556,481123.0472,1905937.712,0,21
+84557,482298.4969,1909571.263,0,21
+84558,482760.9527,1911750.476,0,21
+84559,483756.3999,1915296.593,0,21
+84560,485033.9776,1915707.413,0,21
+84561,485628.5748,1920825.773,0,21
+84562,486312.6336,1921014.538,0,21
+84563,487079.6752,1925102.111,0,21
+84564,487934.1853,1926100.027,0,21
+84565,488705.108,1927633.481,0,21
+84566,489514.8844,1931255.692,0,21
+84567,489950.382,1932719.335,0,21
+84568,491183.6066,1935087.668,0,21
+84569,491587.3314,1936509.317,0,21
+84570,492647.267,1938323.598,0,21
+84571,492954.0603,1941948.955,0,21
+84572,493905.3959,1942002.121,0,21
+84573,494538.325,1944513.762,0,21
+84574,495005.0814,1946101.65,0,21
+84575,495891.892,1947651.521,0,21
+84576,496784.4484,1950127.326,0,21
+84577,497102.5591,1950157.428,0,21
+84578,497853.2708,1954455.028,0,21
+84579,499094.9878,1953347.162,0,21
+84580,501001.6279,1956543.254,0,21
+84581,501630.9815,1958136.758,0,21
+84582,508012.3596,1958847.857,0,21
+84583,522500.5164,1961187.686,0,21
+84584,514746.6077,1961445.475,0,21
+84585,519786.7667,1964550.198,0,21
+84586,521371.1679,1964448.8,0,21
+84587,523282.5138,1966706.483,0,21
+84588,524775.1516,1967796.94,0,21
+84589,526283.9522,1968994.66,0,21
+84590,528408.9153,1971129.147,0,21
+84591,529246.2455,1971736.51,0,21
+84592,530757.1234,1973178.587,0,21
+84593,532375.8765,1975291.387,0,21
+84594,533560.1804,1975330.511,0,21
+84595,534820.589,1977183.186,0,21
+84596,536280.5108,1978741.64,0,21
+84597,538969.0698,1979033,0,21
+84598,540336.8444,1980743.113,0,21
+84599,541698.3867,1982982.043,0,21
+84600,543048.7619,1981887.468,0,21
+84601,572308.6725,2049841.894,0,21
+84602,628847.0348,2055945.768,0,21
+84603,607303.8845,2059362.662,0,21
+84604,616930.5681,2063353.02,0,21
+84605,619695.9612,2067223.464,0,21
+84606,623553.8174,2068572.496,0,21
+84607,625902.9746,2073910.332,0,21
+84608,629331.9781,2074868.76,0,21
+84609,631064.5299,2080376.744,0,21
+84610,635079.9117,2081702.829,0,21
+84611,637647.3334,2085847.517,0,21
+84612,640428.9847,2088679.352,0,21
+84613,642985.2271,2090481.985,0,21
+84614,645976.5569,2095110.714,0,21
+84615,648440.6263,2097021.541,0,21
+84616,650695.9891,2100089.445,0,21
+84617,653147.8355,2102505.959,0,21
+84618,659057.0421,2106128.668,0,21
+84619,664684.4253,2107816.913,0,21
+84620,664949.3811,2111751.795,0,21
+84621,669123.8732,2113483.483,0,21
+84622,672026.1414,2117045.037,0,21
+84623,674902.9494,2119437.409,0,21
+84624,677754.3102,2122904.128,0,21
+84625,680932.7027,2124986.358,0,21
+84626,683102.8858,2127991.207,0,21
+84627,686468.9074,2129388.828,0,21
+84628,689437.8699,2133376.785,0,21
+84629,690440.003,2134756.294,0,21
+84630,695896.6322,2139165.945,0,21
+84631,696698.2755,2140608.517,0,21
+84632,699587.2068,2142780.653,0,21
+84633,701731.9393,2145763.085,0,21
+84634,705422.2857,2149600.26,0,21
+84635,706959.3245,2150642.972,0,21
+84636,710472.3194,2154708.265,0,21
+84637,711478.0515,2156207.791,0,21
+84638,715160.8277,2158760.447,0,21
+84639,716391.7351,2163071.18,0,21
+84640,719832.7697,2162986.37,0,21
+84641,721970.3747,2166889.426,0,21
+84642,723893.4771,2169192.982,0,21
+84643,726584.6157,2171206.416,0,21
+84644,728300.249,2174754.581,0,21
+84645,731711.1224,2176141.493,0,21
+84646,733938.9282,2178992.341,0,21
+84647,734957.1595,2181767.231,0,21
+84648,738511.0141,2184078.747,0,21
+84649,740663.1784,2185919.474,0,21
+84650,742023.7975,2187782.378,0,21
+84651,745269.0898,2192050.102,0,21
+84652,746294.847,2193359.545,0,21
+84653,748617.3826,2195573.689,0,21
+84654,751802.1356,2197573.712,0,21
+84655,753047.244,2199795.902,0,21
+84656,755372.2234,2203417.109,0,21
+84657,757021.6961,2204293.806,0,21
+84658,759608.3165,2207780.857,0,21
+84659,761175.3293,2208584.096,0,21
+84660,764165.3786,2214009.998,0,21
+84661,764298.8067,2212754.702,0,21
+84662,766607.668,2212421.713,0,21
+84663,767634.1126,2215009.198,0,21
+84664,769663.3451,2214854.554,0,21
+84665,769526.5287,2214345.027,0,21
+84666,772352.7014,2216040.542,0,21
+84667,771445.5318,2216116.335,0,21
+84668,774442.7358,2216288.467,0,21
+84669,775145.6926,2217895.983,0,21
+84670,775472.333,2216663.185,0,21
+84671,776597.13,2218812.362,0,21
+84672,777985.3353,2218524.959,0,21
+84673,780580.4831,2218041.963,0,21
+84674,778917.1586,2219866.055,0,21
+84675,781517.8877,2219832.444,0,21
+84676,782059.3645,2220203.675,0,21
+84677,783691.9907,2220854.441,0,21
+84678,784289.1284,2220992.747,0,21
+84679,785059.4745,2221638.853,0,21
+84680,786695.5065,2220915.157,0,21
+84681,787398.3317,2222915.228,0,21
+84682,787667.1157,2222435.095,0,21
+84683,789740.8727,2222984.831,0,21
+84684,790090.7102,2222641.726,0,21
+84685,791941.3346,2226125.585,0,21
+84686,791176.0581,2224449.564,0,21
+84687,793356.1107,2226694.216,0,21
+84688,793397.9988,2226180.7,0,21
+84689,794973.1328,2225914.868,0,21
+84690,796942.0322,2227723.848,0,21
+84691,796245.8818,2226220.536,0,21
+84692,799574.5488,2226627.471,0,21
+84693,798594.6741,2225444.187,0,21
+84694,799706.1764,2227140.508,0,21
+84695,800854.2805,2227027.427,0,21
+84696,801822.2467,2227463.58,0,21
+84697,802852.7231,2226764.073,0,21
+84698,802956.9086,2228193.806,0,21
+84699,804502.1976,2226661.532,0,21
+84700,804313.466,2229201.846,0,21
+84701,806791.6932,2228332.699,0,21
+84702,806047.2828,2227762.614,0,21
+84703,807201.0125,2228432.386,0,21
+84704,808746.6746,2228376.01,0,21
+84705,808090.5995,2230401.566,0,21
+84706,810230.9942,2227443.41,0,21
+84707,810471.4107,2653455.1,0,21
+84708,811284.6355,2230094.548,0,21
+84709,811991.7922,2228572.312,0,21
+84710,811926.502,2230779.841,0,21
+84711,813432.8253,2229622.231,0,21
+84712,814475.265,2228798.303,0,21
+84713,814257.1676,2230618.672,0,21
+84714,816191.4675,2230136.099,0,21
+84715,815142.3407,2229416.014,0,21
+84716,817360.6813,2230175.442,0,21
+84717,817068.7507,2230393.884,0,21
+84718,818774.5835,2229208.356,0,21
+84719,818235.0733,2229742.611,0,21
+84720,820681.283,2227850.898,0,21
+84721,827991.9161,2238938.908,0,21
+84722,831380.4911,2243017.564,0,21
+84723,833240.5959,2247524.159,0,21
+84724,833766.2521,2248527.627,0,21
+84725,836342.7977,2252398.993,0,21
+84726,837579.7476,2255725.987,0,21
+84727,838470.8444,2257206.609,0,21
+84728,839591.9555,2261185.835,0,21
+84729,842233.918,2687502.693,0,21
+84730,841526.6695,2265707.747,0,21
+84731,844283.0049,2269921.288,0,21
+84732,845484.9362,2273052.903,0,21
+84733,846049.9618,2274263.652,0,21
+84734,848128.497,2278109.266,0,21
+84735,849362.265,2280264.576,0,21
+84736,848975.1439,2282412.709,0,21
+84737,851214.5658,2286866.66,0,21
+84738,851863.9408,2288310.081,0,21
+84739,853343.0046,2291294.701,0,21
+84740,853594.3058,2294938.657,0,21
+84741,856609.9068,2296742.522,0,21
+84742,855749.62,2299635.568,0,21
+84743,858749.0457,2302363.643,0,21
+84744,859208.091,2729627.404,0,21
+84745,860402.4753,2308095.173,0,21
+84746,861365.0865,2309292.694,0,21
+84747,863006.2747,2314639.089,0,21
+84748,863820.4782,2316950.337,0,21
+84749,865403.3582,2317498.862,0,21
+84750,865228.5605,2322839.039,0,21
+84751,867933.2503,2324587.251,0,21
+84752,868812.046,2327336.342,0,21
+84753,868869.1835,2328979.81,0,21
+84754,870660.5373,2332633.17,0,21
+84755,872734.8053,2336001.158,0,21
+84756,872004.465,2337690.145,0,21
+84757,874817.797,2341243.936,0,21
+84758,874587.9283,2342340.855,0,21
+84759,876405.1353,2769895.566,0,21
+84760,877680.3565,2348922.693,0,21
+84761,877870.4763,2351153.77,0,21
+84762,879549.1441,2355100.244,0,21
+84763,881352.3251,2356696.326,0,21
+84764,881507.7485,2360133.04,0,21
+84765,882306.372,2361422.66,0,21
+84766,884417.131,2366629.55,0,21
+84767,883994.065,2366206.172,0,21
+84768,886141.3484,2370959.618,0,21
+84769,886813.6902,2373318.233,0,21
+84770,888313.6111,2375509.393,0,21
+84771,888363.6952,2377842.823,0,21
+84772,891405.6924,2381417.542,0,21
+84773,889983.1806,2384056.921,0,21
+84774,892894.095,2809258.726,0,21
+84775,892427.1638,2389006.671,0,21
+84776,894399.16,2393125.137,0,21
+84777,895110.389,2393996.29,0,21
+84778,896291.2807,2396809.789,0,21
+84779,897592.877,2400476.813,0,21
+84780,897840.0792,2401901.221,0,21
+84781,900039.8947,2403799.206,0,21
+84782,901327.7376,2404783.825,0,21
+84783,901816.912,2405760.536,0,21
+84784,903288.3638,2405564.772,0,21
+84785,904722.3441,2405794.079,0,21
+84786,905067.7684,2407320.592,0,21
+84787,905716.26,2405423.327,0,21
+84788,907741.7419,2407506.769,0,21
+84789,907321.62,2829787.665,0,21
+84790,909084.5527,2407425.052,0,21
+84791,910983.775,2407261.873,135.2875788,21
+84792,910286.8903,2407073.74,135.287731,21
+84793,911718.8918,2407916.661,157.0126028,21
+84794,912880.1627,2409426.863,178.604335,21
+84795,913753.4814,2407578.257,200.0764477,21
+84796,914826.208,2407664.247,221.4396509,21
+84797,915539.939,2409297.926,253.2986422,21
+84798,916365.4459,2408563.865,263.8727058,21
+84799,917192.9764,2409696.449,284.9558754,21
+84800,918613.452,2407986.075,316.4286268,21
+84801,918960.7238,2409392.422,326.881872,21
+84802,921259.6735,2410240.986,358.1320408,21
+84803,920319.2951,2409044.458,462.3524159,21
+84804,921944.6177,2410007.986,1975.992524,21
+84805,924031.3195,2409674.638,1468.674361,21
+84806,922417.143,2410039.037,1764.578682,21
+84807,926044.4417,2410139.107,2017.197682,21
+84808,923811.9526,2410937.953,2422.39122,21
+84809,928506.918,2410082.921,2545.598753,21
+84810,926444.4,2409960.138,2919.394132,21
+84811,928290.2003,2412098.544,2991.301569,21
+84812,929404.2697,2409147.225,3372.087087,21
+84813,929812.7566,2412662.345,3392.34732,21
+84814,931138.3863,2409192.744,3801.310979,21
+84815,931598.4126,2411972.946,3963.268863,21
+84816,933008.3269,2411494.947,4227.264529,21
+84817,933509.5557,2410923.339,4388.930491,21
+84818,934462.2952,2411917.28,4611.025938,21
+84819,935196.2275,2411290.721,4992.261984,21
+84820,936764.505,2411328.292,5032.588152,21
+84821,936581.6718,2412318.884,5392.580432,21
+84822,938144.5547,2411547.837,5611.197247,21
+84823,938633.8474,2411315.532,5790.710632,21
+84824,940037.3102,2413629.488,6028.483103,21
+84825,940019.6853,2411085.804,6206.83474,21
+84826,941986.6706,2412357.896,6581.77899,21
+84827,941652.5101,2412612.635,6621.23224,21
+84828,944458.4893,2411800.107,6975.182758,21
+84829,942967.836,2413471.378,7210.579502,21
+84830,944914.7885,2411111.926,7386.641803,21
+84831,946294.4213,2413050.773,7582.109628,21
+84832,946293.3465,2412441.232,7816.467468,21
+84833,947732.9893,2413197.793,8127.197164,21
+84834,947566.9018,2412230.685,8224.969926,21
+84835,949201.745,2412734.306,8534.933026,21
+84836,949952.1497,2413548.203,8767.259445,21
+84837,950303.0347,2412808.862,8941.338315,21
+84838,952318.9014,2412509.052,9153.559401,21
+84839,951930.3477,2413038.99,9538.126674,21
+84840,953533.7176,2412751.208,9519.647599,15.6
+84841,0,0,0,15.6
+84842,0,0,0,15.6
+84843,0,0,0,15.6
+84844,0,0,0,15.6
+84845,0,0,1459675.913,15.6
+84846,0,0,0,15.6
+84847,0,0,0,15.6
+84848,0,435507.8192,0,15.6
+84849,0,0,0,15.6
+84850,0,0,0,15.6
+84851,0,0,0,15.6
+84852,0,0,0,15.6
+84853,0,0,0,15.6
+84854,0,0,0,15.6
+84855,0,0,0,15.6
+84856,339408.186,0,0,15.6
+84857,0,0,0,15.6
+84858,0,0,0,15.6
+84859,0,0,0,15.6
+84860,0,0,0,15.6
+84861,0,0,0,15.6
+84862,0,0,0,15.6
+84863,0,0,0,15.6
+84864,0,0,0,15.6
+84865,0,0,0,15.6
+84866,0,0,0,15.6
+84867,0,0,0,15.6
+84868,0,0,0,15.6
+84869,0,0,0,15.6
+84870,0,0,0,15.6
+84871,0,0,0,15.6
+84872,0,435453.8062,0,15.6
+84873,0,0,0,15.6
+84874,0,0,0,15.6
+84875,0,0,0,15.6
+84876,0,0,0,15.6
+84877,0,0,0,15.6
+84878,0,0,0,15.6
+84879,0,0,1391905.949,15.6
+84880,0,33235.42525,0,15.6
+84881,0,7092.451345,0,15.6
+84882,0,4624.508041,0,15.6
+84883,0,14262.73144,0,15.6
+84884,0,12988.23728,0,15.6
+84885,0,11910.01392,0,15.6
+84886,0,12595.2879,0,15.6
+84887,0,12824.25688,0,15.6
+84888,0,13069.64327,0,15.6
+84889,0,13245.79052,0,15.6
+84890,0,13419.6495,0,15.6
+84891,0,13681.94175,0,15.6
+84892,0,13805.94581,0,15.6
+84893,0,14093.40944,0,15.6
+84894,339389.4518,14171.61543,0,15.6
+84895,0,14456.12719,0,15.6
+84896,0,449966.37,0,15.6
+84897,0,14815.24259,0,15.6
+84898,0,14962.71868,0,15.6
+84899,0,15135.59349,0,15.6
+84900,0,15332.53371,0,15.6
+84901,0,15620.26649,0,15.6
+84902,0,15774.33875,0,15.6
+84903,0,15989.0308,0,15.6
+84904,0,16150.98417,0,15.6
+84905,0,16337.34308,0,15.6
+84906,0,16471.57902,0,15.6
+84907,0,16686.73449,0,15.6
+84908,0,16811.13674,0,15.6
+84909,0,17014.96392,0,15.6
+84910,0,0,0,15.6
+84911,0,0,0,15.6
+84912,0,0,0,15.6
+84913,0,0,1329687.498,15.6
+84914,0,67431.84613,0,15.6
+84915,0,0,0,15.6
+84916,0,11389.88493,0,15.6
+84917,0,25077.78691,0,15.6
+84918,0,17268.66986,0,15.6
+84919,0,18650.82402,0,15.6
+84920,0,454104.3906,0,15.6
+84921,0,18953.64515,0,15.6
+84922,0,19096.93315,0,15.6
+84923,0,19165.1352,0,15.6
+84924,0,19395.9492,0,15.6
+84925,0,19439.29489,0,15.6
+84926,0,19645.30189,0,15.6
+84927,0,19731.54308,0,15.6
+84928,0,19885.2117,0,15.6
+84929,0,19998.85789,0,15.6
+84930,0,300815.1609,0,15.6
+84931,0,35238.12047,0,15.6
+84932,339356.6913,77389.56864,0,15.6
+84933,0,121179.7442,0,15.6
+84934,0,127172.7296,0,15.6
+84935,0,111645.162,0,15.6
+84936,0,118445.9721,0,15.6
+84937,0,119760.4994,0,15.6
+84938,0,121087.0244,0,15.6
+84939,0,122299.4083,0,15.6
+84940,0,123678.4695,0,15.6
+84941,0,124685.5631,0,15.6
+84942,0,126071.1387,0,15.6
+84943,0,127171.2715,0,15.6
+84944,0,106844.5547,0,15.6
+84945,0,108353.3329,0,15.6
+84946,0,109951.5507,0,15.6
+84947,0,188592.6621,1272853.076,15.6
+84948,0,115938.9552,0,15.6
+84949,0,127664.0145,0,15.6
+84950,0,143603.5879,0,15.6
+84951,0,136418.6967,0,15.6
+84952,0,139085.0522,0,15.6
+84953,0,139865.1751,0,15.6
+84954,0,141127.9201,0,15.6
+84955,0,142547.8906,0,15.6
+84956,0,143069.5049,0,15.6
+84957,0,144842.1028,0,15.6
+84958,0,145468.6567,0,15.6
+84959,0,146872.0944,0,15.6
+84960,0,23571.25641,0,15.6
+84961,0,23852.8238,0,15.6
+84962,0,23955.40255,0,15.6
+84963,0,24058.79869,0,15.6
+84964,0,24168.78522,0,15.6
+84965,0,514646.6938,0,15.6
+84966,0,24401.89269,0,15.6
+84967,29610.99408,103173.7012,0,15.6
+84968,0,206750.3755,0,15.6
+84969,0,155118.24,0,15.6
+84970,6486.515427,160348.8151,0,15.6
+84971,348418.575,162759.8987,0,15.6
+84972,5814.75988,164028.5498,0,15.6
+84973,6905.983568,165018.6072,0,15.6
+84974,7032.167042,165832.1583,0,15.6
+84975,7092.095864,166901.0954,0,15.6
+84976,7197.733363,168173.9346,0,15.6
+84977,7276.416405,143457.4184,0,15.6
+84978,7389.307492,144910.5389,0,15.6
+84979,7430.734517,145281.9992,0,15.6
+84980,7536.680128,239464.0821,0,15.6
+84981,7614.064755,158612.7647,0,15.6
+84982,7725.170208,158222.81,1220963.566,15.6
+84983,8263.587965,186447.8626,0,15.6
+84984,8325.889075,174166.3474,0,15.6
+84985,8430.298805,177199.3208,0,15.6
+84986,8590.21922,178093.6011,0,15.6
+84987,8757.521765,179142.8445,0,15.6
+84988,8883.832165,180007.1917,0,15.6
+84989,8994.610535,181287.2689,0,15.6
+84990,9180.517208,181479.8199,0,15.6
+84991,9267.144033,183334.8865,0,15.6
+84992,9447.819872,183905.1962,0,15.6
+84993,9539.247794,184432.8776,0,15.6
+84994,9688.337086,185957.241,0,15.6
+84995,9847.929194,27125.43802,0,15.6
+84996,9946.70484,27216.45414,0,15.6
+84997,0,27309.45746,0,15.6
+84998,0,27401.94654,0,15.6
+84999,0,636298.4701,0,15.6
+85000,0,31031.0776,0,15.6
+85001,0,135359.411,0,15.6
+85002,37467.51342,251514.6996,0,15.6
+85003,2834.942403,184194.5985,0,15.6
+85004,4408.506653,195286.3714,0,15.6
+85005,16393.08494,196329.2492,0,15.6
+85006,10219.68254,196760.4271,0,15.6
+85007,11389.19114,197823.2386,0,15.6
+85008,11519.74288,198728.0647,0,15.6
+85009,11640.20412,199165.4041,0,15.6
+85010,351092.9357,172214.7167,0,15.6
+85011,11862.67269,172330.2414,0,15.6
+85012,12009.36392,258468.8637,0,15.6
+85013,12154.84006,182692.2127,0,15.6
+85014,12215.69,200682.737,0,15.6
+85015,12385.5709,208440.6515,0,15.6
+85016,12481.69891,204424.3647,0,15.6
+85017,12586.1055,206152.2789,1173619.328,15.6
+85018,12728.74378,206547.5842,0,15.6
+85019,12816.6449,207700.2862,0,15.6
+85020,12948.45873,208268.1688,0,15.6
+85021,13070.40911,209155.2532,0,15.6
+85022,13144.47673,209481.2894,0,15.6
+85023,13244.1257,210719.6063,0,15.6
+85024,13336.35994,210781.6346,0,15.6
+85025,13455.86209,211824.0338,0,15.6
+85026,13526.88877,212394.6369,0,15.6
+85027,13662.59442,213029.2635,0,15.6
+85028,13745.99909,213824.844,0,15.6
+85029,13805.63267,29798.85945,0,15.6
+85030,13981.14851,29806.82432,0,15.6
+85031,14004.98328,29985.46371,0,15.6
+85032,0,669593.146,0,15.6
+85033,0,47842.83105,0,15.6
+85034,0,174207.3574,0,15.6
+85035,0,267940.732,0,15.6
+85036,54638.05645,210850.3836,0,15.6
+85037,1273.942286,219767.081,0,15.6
+85038,9332.556481,220791.1028,0,15.6
+85039,19974.44224,220957.1571,0,15.6
+85040,14098.46624,221809.687,0,15.6
+85041,15024.30365,222443.5214,0,15.6
+85042,15148.87664,192513.9222,0,15.6
+85043,15188.45684,192546.8253,0,15.6
+85044,15327.52565,285078.8136,0,15.6
+85045,15410.29225,206148.0341,0,15.6
+85046,15494.97232,220208.8995,0,15.6
+85047,15582.10692,231355.8169,0,15.6
+85048,15657.92949,225711.8858,0,15.6
+85049,355108.0233,227319.5099,0,15.6
+85050,15823.20964,227841.5224,0,15.6
+85051,15976.70998,228815.5914,0,15.6
+85052,16006.38224,228431.7068,1130400.731,15.6
+85053,16117.7463,230176.4001,0,15.6
+85054,16232.98677,229696.5839,0,15.6
+85055,16280.14744,231314.0096,0,15.6
+85056,16394.66366,231082.4539,0,15.6
+85057,16463.42753,232227.2955,0,15.6
+85058,16557.25968,232137.3528,0,15.6
+85059,16623.66411,233431.125,0,15.6
+85060,16772.96079,233434.8881,0,15.6
+85061,16804.51237,234882.7836,0,15.6
+85062,16875.47137,31948.50105,0,15.6
+85063,17035.27926,32087.63068,0,15.6
+85064,17054.57078,32091.96622,0,15.6
+85065,17158.98532,745165.2449,0,15.6
+85066,0,84604.8597,0,15.6
+85067,0,154789.6183,0,15.6
+85068,0,307042.3003,0,15.6
+85069,61594.19947,228007.9195,0,15.6
+85070,2812.792762,239826.0634,0,15.6
+85071,12202.32674,239810.3101,0,15.6
+85072,23073.25243,240902.654,0,15.6
+85073,17042.09343,241071.5374,0,15.6
+85074,18033.89537,209276.7743,0,15.6
+85075,18076.71358,209436.3623,0,15.6
+85076,18195.03282,306941.5036,0,15.6
+85077,18267.05746,225780.6728,0,15.6
+85078,18347.96188,237194.1352,0,15.6
+85079,18432.30261,250118.8256,0,15.6
+85080,18500.43456,244209.4073,0,15.6
+85081,18583.80147,245443.4334,0,15.6
+85082,18648.32513,245982.4708,0,15.6
+85083,18750.72319,246507.6582,0,15.6
+85084,18795.01233,246925.5857,0,15.6
+85085,18881.35322,247533.4499,0,15.6
+85086,18966.23461,248291.8554,0,15.6
+85087,19040.61566,248330.977,1090952.008,15.6
+85088,358441.4809,248795.3943,0,15.6
+85089,19185.31841,249843.5739,0,15.6
+85090,19259.1177,250193.325,0,15.6
+85091,19367.56837,250564.7928,0,15.6
+85092,19386.70109,250935.8408,0,15.6
+85093,19510.46285,251674.8018,0,15.6
+85094,19548.59355,251986.4006,0,15.6
+85095,19655.6288,34099.71398,0,15.6
+85096,19690.55244,34206.77737,0,15.6
+85097,19783.77782,34207.84059,0,15.6
+85098,19882.51538,814606.7054,0,15.6
+85099,0,117458.9487,0,15.6
+85100,0,133913.748,0,15.6
+85101,0,342022.8594,0,15.6
+85102,72690.06622,241281.5888,0,15.6
+85103,7241.588274,255783.7196,0,15.6
+85104,9457.164275,256372.2441,0,15.6
+85105,317620.4676,256721.4677,0,15.6
+85106,19232.89412,222615.4093,0,15.6
+85107,20511.78335,222928.2479,0,15.6
+85108,100004.092,325503.6488,0,15.6
+85109,95220.40529,242386.4698,0,15.6
+85110,77944.38745,250515.5046,0,15.6
+85111,85352.62703,266389.7798,0,15.6
+85112,85397.46893,258984.6587,0,15.6
+85113,86184.00745,260519.3192,0,15.6
+85114,86621.65832,261198.3551,0,15.6
+85115,87135.94,261171.4515,0,15.6
+85116,87725.98326,261869.3941,0,15.6
+85117,88121.8745,262696.6443,0,15.6
+85118,88833.98062,262251.3588,0,15.6
+85119,89118.28294,263699.5382,0,15.6
+85120,89942.43418,263360.1655,0,15.6
+85121,90147.80146,264371.4031,0,15.6
+85122,92520.98544,264245.3407,1054928.269,15.6
+85123,95346.0786,265651.7517,0,15.6
+85124,94952.22124,265149.1778,0,15.6
+85125,96069.58176,265988.555,0,15.6
+85126,97506.90122,266608.4232,0,15.6
+85127,437552.6051,266402.8505,0,15.6
+85128,99044.03307,35993.44846,0,15.6
+85129,99982.42834,36080.98487,0,15.6
+85130,101352.1952,36053.35535,0,15.6
+85131,101909.2864,872238.963,0,15.6
+85132,80560.78608,147006.4473,0,15.6
+85133,81477.25115,116487.4457,0,15.6
+85134,82139.73495,373057.3079,0,15.6
+85135,79698.26652,254554.067,0,15.6
+85136,11418.39598,270490.5021,0,15.6
+85137,10805.67268,272261.4293,0,15.6
+85138,30867.43553,235143.9922,0,15.6
+85139,21850.9802,236241.4027,0,15.6
+85140,22943.11859,342551.5215,0,15.6
+85141,23090.85711,258453.1887,0,15.6
+85142,350414.6764,265085.1211,0,15.6
+85143,35695.31417,280410.8843,0,15.6
+85144,62575.77485,274076.0777,0,15.6
+85145,156931.4187,275146.6873,0,15.6
+85146,108930.542,275868.7991,0,15.6
+85147,116644.7778,275291.8335,0,15.6
+85148,117436.5837,277355.8816,0,15.6
+85149,118877.6212,275730.8467,0,15.6
+85150,119219.8056,277818.481,0,15.6
+85151,120345.086,277675.9749,0,15.6
+85152,120782.7714,277934.6716,0,15.6
+85153,121938.3771,278354.0615,0,15.6
+85154,122538.1364,279148.5651,0,15.6
+85155,123445.8081,279062.38,0,15.6
+85156,123914.114,280030.3191,0,15.6
+85157,125136.8391,280145.5012,1022028.687,15.6
+85158,125704.0909,280661.182,0,15.6
+85159,126409.6628,281331.4746,0,15.6
+85160,127459.4719,281052.3085,0,15.6
+85161,128081.479,37982.2389,0,15.6
+85162,128907.6856,37973.67292,0,15.6
+85163,129804.2863,38037.27597,463034.9931,15.6
+85164,130273.6715,929586.9796,0,15.6
+85165,106762.6477,178173.0561,0,15.6
+85166,446565.7271,104465.5617,0,15.6
+85167,108106.5357,398703.6601,0,15.6
+85168,191524.2296,267704.86,0,15.6
+85169,129311.4727,285635.721,0,15.6
+85170,121622.4008,248232.7106,0,15.6
+85171,143610.7554,248900.4958,0,15.6
+85172,24496.77499,360800.9631,0,15.6
+85173,25253.39345,273911.5961,0,15.6
+85174,25325.68212,281943.3904,0,15.6
+85175,25352.84254,294102.6314,0,15.6
+85176,25409.87819,289828.557,0,15.6
+85177,467452.8378,290048.2169,0,15.6
+85178,25537.09993,290099.5236,0,15.6
+85179,103921.138,291417.0249,0,15.6
+85180,184845.4608,290942.9477,0,15.6
+85181,137048.7454,291902.8484,0,15.6
+85182,145423.5159,292388.5005,0,15.6
+85183,146016.9271,292106.1305,0,15.6
+85184,146550.9628,293037.1623,0,15.6
+85185,147380.3811,293179.3884,0,15.6
+85186,148070.7191,293883.025,0,15.6
+85187,148564.6176,293964.9814,0,15.6
+85188,149562.5096,294953.5273,0,15.6
+85189,149935.5178,294464.2025,0,15.6
+85190,150542.3627,295417.2185,0,15.6
+85191,151709.6608,295670.4811,0,15.6
+85192,151938.1768,296535.0965,1066077.216,15.6
+85193,152719.6104,296049.7537,0,15.6
+85194,153684.3984,39942.38402,0,15.6
+85195,153720.1832,39975.78917,457829.9079,15.6
+85196,155317.3618,68378.59487,0,15.6
+85197,155204.9745,990505.2609,0,15.6
+85198,129693.6788,209269.7258,0,15.6
+85199,129762.3429,108967.8568,0,15.6
+85200,208864.936,421117.586,0,17.8
+85201,916953.5909,1446404.752,0,17.8
+85202,910528.9381,1155431.576,0,17.8
+85203,434424.7648,443694.1264,0,17.8
+85204,500508.6123,692329.0666,0,17.8
+85205,406833.3769,683670.6782,0,17.8
+85206,724227.2975,630687.9236,0,17.8
+85207,48636.24529,572179.0923,0,17.8
+85208,51910.27852,604729.2137,0,17.8
+85209,849896.4882,588607.6908,0,17.8
+85210,407510.0299,584741.4769,0,17.8
+85211,356846.8937,581675.2929,0,17.8
+85212,381198.2067,575861.1294,0,17.8
+85213,399228.576,572348.8178,0,17.8
+85214,384253.8586,569345.3866,0,17.8
+85215,383566.4278,567099.4769,0,17.8
+85216,383171.2254,562848.9591,0,17.8
+85217,382818.3818,560529.1527,0,17.8
+85218,382622.4121,556819.7545,0,17.8
+85219,381770.3458,555258.4659,0,17.8
+85220,382185.9038,550531.4903,0,17.8
+85221,381340.0327,549715.3584,0,17.8
+85222,381096.8493,545231.1623,0,17.8
+85223,381447.8272,543748.661,461102.3211,17.8
+85224,380660.7112,540626.5993,0,17.8
+85225,380907.4749,537728.5339,0,17.8
+85226,380213.9446,510175.1027,990090.6269,17.8
+85227,380399.2178,83577.42367,0,17.8
+85228,380461.9372,83268.00176,0,17.8
+85229,380153.6208,1240481.346,0,17.8
+85230,327716.6245,336877.3325,0,17.8
+85231,327778.1675,589357.2775,0,17.8
+85232,417635.8624,499596.2158,0,17.8
+85233,393967.3647,456655.6007,0,17.8
+85234,376725.8345,436089.4178,0,17.8
+85235,378712.2447,581560.0734,0,17.8
+85236,374758.561,520855.0255,0,17.8
+85237,381695.7792,499763.6628,0,17.8
+85238,380446.8793,519453.0599,0,17.8
+85239,52215.17999,502339.6372,0,17.8
+85240,52611.80758,504972.2001,0,17.8
+85241,845391.825,501074.8405,0,17.8
+85242,729703.2737,499204.9433,0,17.8
+85243,328999.5372,496608.2991,0,17.8
+85244,392719.709,494222.0452,0,17.8
+85245,388601.0806,492790.9831,0,17.8
+85246,380054.8129,489855.4613,0,17.8
+85247,380619.2642,488233.3868,0,17.8
+85248,379615.6734,485054.2357,0,17.8
+85249,380513.0344,484140.2285,0,17.8
+85250,380008.6936,480403.442,0,17.8
+85251,380087.8862,479248.5831,0,17.8
+85252,380269.0366,477047.2608,0,17.8
+85253,380560.5845,474305.5293,0,17.8
+85254,380155.2036,471996.5625,0,17.8
+85255,380834.2017,470776.7844,0,17.8
+85256,380185.8286,467066.5383,0,17.8
+85257,380785.9568,465499.1611,0,17.8
+85258,380900.7064,463422.768,0,17.8
+85259,380253.0773,73800.54523,0,17.8
+85260,381280.4158,73463.49544,1022726.588,20
+85261,2289686.608,2568151.203,0,20
+85262,883107.5613,2590946.246,0,20
+85263,1016772.825,1268353.432,0,20
+85264,743718.443,622079.3495,0,20
+85265,879568.2821,1022850.978,0,20
+85266,897686.295,1248450.243,0,20
+85267,838051.7375,1020737.015,0,20
+85268,805811.6207,1036482.36,0,20
+85269,817596.7779,1044352.826,0,20
+85270,815486.7906,1038513.181,0,20
+85271,142284.8179,1035070.569,0,20
+85272,952487.8648,1028537.216,0,20
+85273,742834.5853,1026667.547,0,20
+85274,842994.1729,1024515.333,0,20
+85275,816359.5894,1019116.372,0,20
+85276,789281.8072,1019560.635,0,20
+85277,806517.9501,1015206.452,0,20
+85278,1140625.948,1012413.884,0,20
+85279,797917.212,1007820.305,0,20
+85280,798361.9981,995953.6127,0,20
+85281,796195.5281,999153.5588,0,20
+85282,795325.2211,994114.4393,0,20
+85283,794085.643,990696.6247,0,20
+85284,792564.5918,989063.1866,0,20
+85285,792487.7783,984377.3346,0,20
+85286,791087.1988,983232.2574,0,20
+85287,789447.3235,979352.4309,0,20
+85288,789888.3633,978977.2618,0,20
+85289,788074.9055,973797.1006,0,20
+85290,788286.8752,974616.5549,0,20
+85291,760680.9609,131095.3746,0,20
+85292,755496.8281,130665.8382,0,20
+85293,646871.3032,1306048.124,0,20
+85294,853663.5499,1200160.628,989715.6986,20
+85295,775488.8586,790551.5391,0,20
+85296,769018.7728,911827.5571,0,20
+85297,781775.6289,1060268.545,0,20
+85298,776859.5285,962644.5335,0,20
+85299,775908.9588,972160.0462,0,20
+85300,774747.893,955031.2825,0,20
+85301,773026.8417,955060.8619,0,20
+85302,134153.761,954871.1361,0,20
+85303,134083.4184,951067.9352,0,20
+85304,947097.6042,950440.4245,0,20
+85305,890363.8109,947017.3728,0,20
+85306,615321.0652,946157.1533,0,20
+85307,886789.5269,945456.6122,0,20
+85308,754905.7639,942770.9756,86411.39568,20
+85309,781050.3594,941079.9182,94026.49431,20
+85310,780260.3001,940118.7185,88965.1852,20
+85311,776641.1762,938787.8903,143552.4942,20
+85312,777537.4992,937903.908,109085.8371,20
+85313,776890.9884,934960.5458,120902.7135,20
+85314,1104241.258,936043.7768,121642.4522,20
+85315,767125.7274,931508.0268,122821.6194,20
+85316,766206.3013,933696.6295,122951.0872,20
+85317,766402.1067,929477.774,123921.9319,20
+85318,763168.6701,930973.2526,124594.3157,20
+85319,764752.2993,928140.5021,124974.9577,20
+85320,763154.2856,927462.8854,125759.717,21
+85321,2311421.159,2976560.513,1833244.475,21
+85322,2163382.47,2331483.167,452344.7912,21
+85323,657884.8073,871367.5112,102344.1334,21
+85324,767149.5683,1293092.471,200839.9223,21
+85325,936431.3677,1338038.561,297175.6446,21
+85326,1058026.881,1245624.727,237541.9296,21
+85327,906861.7908,1218617.793,232788.9398,21
+85328,940242.5236,1231915.448,237283.1344,21
+85329,938002.082,1221720.534,238660.257,21
+85330,931306.691,1494622.652,239274.2958,21
+85331,918766.4427,1218494.85,239228.9431,21
+85332,921651.7843,1216543.088,240289.8034,21
+85333,917878.7351,1212956.963,240489.9813,21
+85334,914150.2578,1211252.73,241175.0664,21
+85335,913535.5619,1209029.225,241773.9631,21
+85336,909501.0721,1208181.151,242060.3208,21
+85337,906392.4088,1206054.078,243085.1635,21
+85338,905700.5698,1476314.535,243596.9144,21
+85339,903050.326,1201911.232,244149.7309,21
+85340,901706.7597,1201680.756,244664.1773,21
+85341,898674.9963,1198058.679,245708.624,21
+85342,895695.6344,1199803.245,245988.0185,21
+85343,895575.1878,1194943.878,246793.354,21
+85344,892981.9601,1195537.686,247379.1648,21
+85345,891857.1354,1194564.132,247787.57,21
+85346,890104.6564,1464864.923,249062.9849,21
+85347,886764.5216,1191123.238,248690.515,21
+85348,887101.3943,1190956.039,249907.1645,21
+85349,885238.1635,1188425.084,250466.4821,21
+85350,883293.5499,1188249.919,251204.553,21
+85351,881582.8035,1186184.362,251538.2055,21
+85352,880101.7043,1184302.766,252439.341,21
+85353,878990.0885,1183781.121,253039.5442,21
+85354,877423.2055,1454768.039,253328.5763,21
+85355,875259.6141,1182899.091,254447.1433,21
+85356,876072.1292,1179669.389,254392.5541,21
+85357,873100.3198,1180241.461,255308.9798,21
+85358,872418.503,1178999.533,256003.072,21
+85359,871402.6221,1177803.657,256262.8918,21
+85360,870450.7682,1177659.518,256954.5576,21
+85361,867734.7899,1176967.553,257736.0159,21
+85362,867795.6369,1447691.164,258356.6961,21
+85363,866849.4443,1176343.012,258782.3038,21
+85364,864492.2862,1173803.489,259373.7626,21
+85365,866516.4141,1174093.973,259841.1043,21
+85366,861690.3841,1172960,260426.5078,21
+85367,862752.3623,1172922.597,261176.9976,21
+85368,861153.5894,1171887.102,261574.9741,21
+85369,860283.9988,1170359.976,262153.28,21
+85370,860159.2655,1444832.65,262594.048,21
+85371,857208.1874,1169057.017,263231.1704,21
+85372,857084.595,1169758.392,264398.1524,21
+85373,857892.6572,1169650.338,263985.6832,21
+85374,856007.6838,1168278.071,264796.4155,21
+85375,853925.9725,1168136.227,265662.2429,21
+85376,853412.9388,1167542.371,266151.7849,21
+85377,851655.0162,1166825.458,265901.7176,21
+85378,848475.5647,1439990.148,267489.5458,21
+85379,848514.6188,1166312.062,267397.4686,21
+85380,844959.805,1164533.941,267926.2401,21
+85381,1449107.868,2645515.668,255307.4744,21
+85382,1441781.49,2638462.084,253355.3376,21
+85383,1439954.148,2635907.432,253335.6809,21
+85384,1438330.509,2632155.748,253188.1126,21
+85385,1435972.109,2631125.51,253132.2968,21
+85386,1436044.941,2629314.446,253250.7393,21
+85387,1432854.884,2624796.381,253175.9861,21
+85388,1431094.276,2625458.035,253028.4409,21
+85389,1431100.927,2649554.777,253066.2693,21
+85390,1428544.271,2652181.866,252809.5321,21
+85391,1724798.756,2641729.109,251768.7375,21
+85392,1426844.828,2644763.201,249476.6455,21
+85393,1423266.446,2641441.062,248980.1759,21
+85394,1423643.629,2641963.948,249002.9429,21
+85395,1420962.337,2638121.119,248904.0418,21
+85396,1421255.806,2637002.658,248930.9513,21
+85397,1417598.697,2634952.243,248197.2537,21
+85398,1418365.522,2634266.062,248342.3492,21
+85399,1393366.696,2631266.822,248086.6878,21
+85400,1386938.273,2629766.031,247779.8615,21
+85401,1383809.075,2628202.142,247810.6406,21
+85402,1378449.148,2626782.075,247086.15,21
+85403,1378022.518,2623552.714,247700.0811,21
+85404,1372434.003,2625096.649,247321.5922,21
+85405,1369771.733,2619468.834,246829.8229,21
+85406,1366108.603,2620326.288,246764.5757,21
+85407,1364435.277,2617343.628,246686.1669,21
+85408,1359733.929,2615734.835,246084.8599,21
+85409,1357817.231,2614785.614,246154.9085,21
+85410,1354564.933,2614801.821,246353.0295,21
+85411,1350906.819,2611770.364,245631.7035,21
+85412,1349886.335,2609562.617,245224.3403,21
+85413,1344859.764,2610096.259,244955.7046,21
+85414,1342849.508,2605759.712,244558.6688,21
+85415,1341566.82,2606929.736,243820.5695,21
+85416,1336321.143,2603307.858,243788.8646,21
+85417,1335423.743,2602278.908,242841.4376,21
+85418,1331034.604,2601421.072,242995.6585,21
+85419,1330199.931,2595955.243,242333.0841,21
+85420,1326353.249,2596649.464,241894.8932,21
+85421,1323109.349,2591226.895,241363.5634,21
+85422,1321122.638,2592886.401,240937.7474,21
+85423,1318751.199,2587797.511,240477.0657,21
+85424,1315168.162,2587091.935,240136.9498,21
+85425,1312119.618,2585409.282,239723.1692,21
+85426,1310559.765,2583264.55,238977.084,21
+85427,1307491.917,2581006.923,238697.8582,21
+85428,1303546.946,2578636.229,238273.1573,21
+85429,1301784.833,2577618.749,237536.1221,21
+85430,1299580.128,2574986.198,237442.6099,21
+85431,1295484.923,2573191.796,236633.95,21
+85432,1293360.708,2571014.715,236620.0547,21
+85433,1292281.555,2569400.606,235361.9714,21
+85434,1286549.082,2565814.184,235619.8253,21
+85435,1286362.02,2565926.333,234761.6773,21
+85436,1281510.3,2562394.323,234322.7271,21
+85437,1280799.117,2560655.559,233973.6741,21
+85438,1277604.973,2558870.76,233204.4297,21
+85439,1272846.669,2554856.754,233044.3092,21
+85440,1273252.634,2551987.67,231936.8197,21
+85441,1037825.403,2307069.981,135397.3575,21
+85442,1018326.917,2288643.632,129093.7989,21
+85443,1011508.129,2282894.258,127539.9983,21
+85444,1003999.255,2276463.462,126387.2287,21
+85445,998516.9137,2273584.607,125033.4347,21
+85446,991963.0735,2269650.406,123941.6709,21
+85447,985519.2778,2265419.63,122679.3757,21
+85448,979830.6816,2261383.726,121668.2466,21
+85449,974951.8668,2258398.421,120602.1097,21
+85450,967884.5945,2254991.181,119943.3799,21
+85451,963994.7393,2251082.53,118319.6599,21
+85452,956615.8287,2248634.106,117808.6655,21
+85453,951748.5285,2240713.225,116509.4985,21
+85454,946457.459,2238038.643,115628.8754,21
+85455,941124.5515,2233336.076,114577.1292,21
+85456,935181.1195,2230760.237,113844.0144,21
+85457,930352.2766,2225982.44,112606.6344,21
+85458,924299.4621,2223819.521,112163.0445,21
+85459,920360.1732,2220142.154,110672.8374,21
+85460,915018.4965,2216408.71,110150.6842,21
+85461,912158.7679,2213854.387,109077.1651,21
+85462,906791.4381,2210633.189,108438.0283,21
+85463,903458.6757,2206080.612,107074.968,21
+85464,898650.1921,2204789.783,106572.9728,21
+85465,894477.6275,2201026.318,105484.0415,21
+85466,890756.4558,2197729.436,104847.7975,21
+85467,886051.6689,2195269.052,103747.2374,21
+85468,881717.243,2190647.746,102865.6354,21
+85469,878595.6418,2189804.75,102152.0573,21
+85470,872842.998,2185751.711,101247.6711,21
+85471,869539.8246,2182793.029,100430.1939,21
+85472,864917.2256,2179786.049,99429.41066,21
+85473,861758.1844,2177449.626,98707.91764,21
+85474,857051.7625,2173243.64,97574.30846,21
+85475,853456.6869,2170935.38,96954.01246,21
+85476,849698.0379,2169094.384,95827.74201,21
+85477,845198.4536,2164963.619,95146.66558,21
+85478,842287.6803,2162802.859,94022.44843,21
+85479,837776.5053,2159669.955,93503.36344,21
+85480,834284.6655,2156751.663,92336.38881,21
+85481,829800.8635,2154336.753,91554.08796,21
+85482,826985.8579,2151020.2,91050.14731,21
+85483,822292.4107,2149685.925,90081.27413,21
+85484,819068.3613,2145044.498,89622.82216,21
+85485,815553.3618,2142736.22,88907.05815,21
+85486,812466.3144,2141486.517,88279.1455,21
+85487,809701.8422,2137864.606,87408.33417,21
+85488,805535.443,2135388.159,86939.67297,21
+85489,803051.5795,2131866.645,86046.26328,21
+85490,799140.2108,2130019.062,85581.53358,21
+85491,796243.1009,2127933.741,84922.85211,21
+85492,792579.8492,2124608.495,84216.5578,21
+85493,789958.1854,2121662.28,83609.1865,21
+85494,786210.4528,2120815.024,82860.78174,21
+85495,783400.1622,2116783.05,82300.45653,21
+85496,780525.7188,2115302.397,81683.55841,21
+85497,776741.0425,2112289.343,80956.21126,21
+85498,773631.3767,2110279.028,80503.11998,21
+85499,770819.4386,2106526.886,79737.09174,21
+85500,767469.2314,2105527.396,79097.04937,21
+85501,764409.1596,2102617.091,78418.93908,21
+85502,761808.2339,2098667.626,454064.9274,21
+85503,758891.2844,2044828.885,34178.42466,21
+85504,755913.4037,2032776.401,169555.9894,21
+85505,753625.8538,2023689.187,28637.90368,21
+85506,750331.4749,2016623.711,176847.105,21
+85507,747175.1884,2009902.646,118520.6189,21
+85508,744542.724,2297399.584,151253.3414,21
+85509,741626.6121,1995155.709,29933.24489,21
+85510,738575.9352,1986476.435,222884.782,21
+85511,735677.8162,1980916.344,145653.0837,21
+85512,732955.194,1971966.326,25823.26466,21
+85513,730158.27,1964949.703,161585.6207,21
+85514,727272.2982,1958474.895,104680.4566,21
+85515,724613.024,1950636.873,139685.1608,21
+85516,720988.1125,1944834.543,25400.65265,21
+85517,718698.7633,1936791.717,201354.3417,21
+85518,717119.1509,1929414.33,80931.91092,21
+85519,715312.9403,1924448.28,185942.1497,21
+85520,713743.2263,1915427.203,22358.82095,21
+85521,712483.2681,1909037.072,183444.6726,21
+85522,710672.0306,1902666.882,98016.84006,21
+85523,709448.4972,1896087.635,21071.23274,21
+85524,707512.7494,1888682.397,132767.3401,21
+85525,705919.5683,1880799.783,84956.4394,21
+85526,704344.6016,1876072.234,122023.6509,21
+85527,703133.7437,1868564.494,19578.73404,21
+85528,701158.3192,1861965.155,169575.9396,21
+85529,700046.5597,1855154.912,42619.65273,21
+85530,698003.2772,1848214.921,134385.6432,21
+85531,696987.8089,1842317.948,17981.76993,21
+85532,695492.7929,1833453.56,151394.4262,21
+85533,693598.9327,1829187.916,90907.6985,21
+85534,692177.3654,1822304.838,17642.53241,21
+85535,690991.924,1815861.269,114572.359,21
+85536,688781.0406,1809096.935,72964.91252,21
+85537,687961.5931,1803370.33,101333.7722,21
+85538,686158.0745,1797557.437,18299.96644,21
+85539,684751.1038,1790437.402,147415.2936,21
+85540,683132.306,1785208.656,53637.45593,21
+85541,682113.992,1778298.492,138824.7766,21
+85542,680030.9425,1773883.101,16862.31714,21
+85543,678947.1017,1766063.334,135482.7327,21
+85544,677313.7791,1760891.59,32688.9268,21
+85545,676223.873,1755317.863,47080.938,21
+85546,674704.5885,1748491.028,74093.56606,21
+85547,673412.8972,1742417.066,16707.08758,21
+85548,671733.2357,1737436.935,107233.4485,21
+85549,671091.4997,1731645.764,67836.51933,21
+85550,669289.0501,1725355.899,71178.46225,21
+85551,667957.4385,1719569.342,70246.58279,21
+85552,666287.8109,1714270.174,33537.33634,21
+85553,664694.0718,1708729.474,96867.88306,21
+85554,663217.487,1702114.219,29266.14565,21
+85555,662142.3448,1697785.846,44535.55078,21
+85556,660438.783,1691277.962,41473.97238,21
+85557,659467.367,1685599.493,40711.0546,21
+85558,657960.0044,1681056.833,40267.78874,21
+85559,657432.4846,1674779.425,40235.18885,21
+85560,655346.166,1669193.099,39923.90541,21
+85561,652823.782,1661176.902,46536.71497,21
+85562,651839.3274,1654515.791,46310.54282,21
+85563,650624.4396,1645733.603,46206.23989,21
+85564,648262.2512,1639208.65,46396.47866,21
+85565,647535.6424,1630118.555,45860.85927,21
+85566,645934.4258,1623356.295,45875.5809,21
+85567,645201.2002,1615713.949,45930.58931,21
+85568,644034.8633,1606989.851,45546.2788,21
+85569,642301.4785,1599287.136,45561.09198,21
+85570,641232.0844,1592536.721,45555.64238,21
+85571,639798.0549,1584140.383,45165.00892,21
+85572,638607.8437,1577250.716,45255.22603,21
+85573,637463.1534,1569665.807,45162.23206,21
+85574,636211.943,1563175.02,44966.10155,21
+85575,634826.4222,1556351.122,44994.51107,21
+85576,633887.1932,1549344.803,44764.30598,21
+85577,632941.5565,1542277.54,44700.00209,21
+85578,631381.5981,1535925.793,44619.52857,21
+85579,629667.2303,1528740.152,44392.56479,21
+85580,629329.8665,1522642.94,44443.44981,21
+85581,627306.5673,1515481.036,44215.95622,21
+85582,626501.6353,1508719.892,44181.19091,21
+85583,625244.673,1502201.239,44198.38122,21
+85584,623604.3597,1495327.329,43809.67622,21
+85585,625970.7221,1489067.956,43995.42422,21
+85586,626353.812,1482060.814,43787.30532,21
+85587,624526.4203,1475732.487,43715.31272,21
+85588,624677.2616,1468732.958,43568.2883,21
+85589,623906.0995,1462285.193,43600.04299,21
+85590,623558.7571,1456744.519,43394.54064,21
+85591,623179.9337,1450001.76,43268.3073,21
+85592,622923.3492,1443137,43098.87263,21
+85593,621930.4063,1437127.437,42914.96285,21
+85594,622295.5776,1429768.515,42874.10275,21
+85595,621904.3214,1424042.012,42524.97929,21
+85596,621122.198,1417438.419,42316.29917,21
+85597,620936.847,1410515.474,42223.29001,21
+85598,620290.5389,1404574.124,42008.73589,21
+85599,619875.086,1397723.077,41850.50738,21
+85600,619749.4561,1391200.396,41545.73551,21
+85601,619381.5468,1385146.809,41435.95168,21
+85602,618459.3365,1378201.192,41339.6053,21
+85603,615373.6989,1372741.339,40939.05894,21
+85604,610754.7585,1365248.29,40872.63419,21
+85605,612004.6783,1360804.28,40661.30308,21
+85606,610143.033,1355343.488,40529.66898,21
+85607,608831.1587,1350360.166,40179.42362,21
+85608,607464.5381,1344984.469,40047.44534,21
+85609,606583.3299,1340276.94,39934.34497,21
+85610,605048.7822,1334656.97,39517.11387,21
+85611,604220.847,1330019.829,39606.41656,21
+85612,602385.091,1324735.276,39119.2156,21
+85613,601566.002,1319588.075,39117.30845,21
+85614,600409.6505,1314377.335,38887.99592,21
+85615,598871.3061,1309526.332,38558.45643,21
+85616,597727.3956,1303872.92,38453.82557,21
+85617,596250.6269,1298882.617,38325.19884,21
+85618,595281.521,1293849.098,37955.70313,21
+85619,593864.3922,1288257.188,37828.06764,21
+85620,592409.5091,1282013.247,38209.73083,21
+85621,586812.6677,1275425.242,31501.5633,21
+85622,585664.7693,1272831.289,31375.07022,21
+85623,585124.9921,1270234.703,30931.65755,21
+85624,583310.687,1267915.362,30794.2783,21
+85625,582906.6201,1264976.075,30360.34289,21
+85626,581986.1422,1263445.195,30393.07474,21
+85627,580323.9137,1260663.592,29913.32577,21
+85628,580006.1001,1258430.616,29730.7071,21
+85629,578544.9277,1256135.559,29520.79357,21
+85630,577424.6213,1254030.556,29260.34464,21
+85631,576756.6731,1251833.956,28947.18774,21
+85632,575431.3482,1249149.43,28694.3604,21
+85633,573881.0915,1247290.206,28567.01749,21
+85634,573396.2887,1244881.956,28219.88831,21
+85635,571943.6351,1242764.625,27966.30364,21
+85636,570828.4748,1240651.668,27869.499,21
+85637,569920.3179,1237964.983,27490.51184,21
+85638,567959.1246,1236266.495,27163.92727,21
+85639,567324.5544,1233804.384,27138.93029,21
+85640,565847.2527,1231350.02,26675.07388,21
+85641,564475.2487,1229376.012,26554.87502,21
+85642,563411.7139,1227615.26,26286.69375,21
+85643,562117.1044,1224557.035,25968.62678,21
+85644,561102.7258,1222798.537,25816.3882,21
+85645,559316.4787,1220769.803,25485.42162,21
+85646,558710.8024,1218150.116,25320.49868,21
+85647,557147.3244,1216140.435,25119.51063,21
+85648,555647.7641,1213938.646,24655.35983,21
+85649,554532.8941,1211819.113,24742.22314,21
+85650,553313.9478,1208918.763,24204.7184,21
+85651,551536.6719,1207825.424,24269.74422,21
+85652,550833.2475,1205202.369,23607.90501,21
+85653,548843.9655,1203089.778,23707.08648,21
+85654,547884.5025,1201082.004,23135.65805,21
+85655,546585.0912,1198739.153,23097.73613,21
+85656,544848.7461,1196620.22,22575.08727,21
+85657,543829.7356,1194554.249,22497.41785,21
+85658,542236.0086,1192533.052,22048.24644,21
+85659,540898.2412,1190010.165,21928.26013,21
+85660,539536.9221,1188408.463,21587.30781,21
+85661,538062.7584,1185535.581,21532.07399,21
+85662,536693.549,1184022.368,21214.70807,21
+85663,535543.6863,1181300.191,20960.65731,21
+85664,533794.773,1179322.128,20942.18103,21
+85665,532640.879,1177584.213,20489.15964,21
+85666,531304.7183,1174762.674,20458.91072,21
+85667,529523.413,1173068.707,20117.06785,21
+85668,528672.7848,1170842.771,19987.58651,21
+85669,526870.0245,1168540.901,19733.61783,21
+85670,525485.5549,1166212.288,19503.54351,21
+85671,524399.5746,1164350.814,19375.20967,21
+85672,522880.8482,1161943.132,19029.20304,21
+85673,521392.7737,1159825.086,18888.92542,21
+85674,520432.2568,1157512.001,18656.0726,21
+85675,518918.6717,1155373.46,18506.97863,21
+85676,517551.5098,1153279.233,18181.83516,21
+85677,516153.0369,1150702.842,18030.39142,21
+85678,514885.1442,1148251.588,17903.78689,21
+85679,514062.1328,1146189.583,17455.92917,21
+85680,511908.2403,1143921.322,3083.325803,21
+85681,534667.2217,1169045.13,25367.98339,21
+85682,533390.2007,1169424.104,11547.6405,21
+85683,530990.7944,1170092.742,12257.5914,21
+85684,529706.9421,1169932.874,15261.11722,21
+85685,527831.8131,1169946.371,13058.47926,21
+85686,525791.3833,1170420.587,13681.92344,21
+85687,524574.3825,1170383.823,341653.2273,21
+85688,522166.3761,1172053.758,13648.34518,21
+85689,521374.5302,1171883.988,13632.56159,21
+85690,518766.4739,1171470.877,13545.08758,21
+85691,517672.3878,1172279.164,13442.97767,21
+85692,515806.1877,1171689.653,13426.55239,21
+85693,514364.0474,1172629.71,13421.80806,21
+85694,512030.0742,1171830.995,13247.14988,21
+85695,510957.3952,1172216.079,13294.20315,21
+85696,509566.333,1172295.536,13126.7422,21
+85697,507312.9912,1172277.264,13102.32087,21
+85698,506129.5092,1172007.829,13021.32467,21
+85699,504111.1243,1172096.118,12981.18542,21
+85700,502895.1672,1171917.365,12999.03632,21
+85701,500965.6116,1172482.848,12679.92843,21
+85702,499712.0414,1171518.83,12900.05129,21
+85703,497802.1794,1172128.353,12656.84947,21
+85704,496362.9864,1171718.887,12574.16806,21
+85705,494406.7038,1171405.569,12556.55197,21
+85706,492796.4368,1171654.554,12550.64748,21
+85707,491540.847,1171589.051,12251.58834,21
+85708,489386.3258,1171066.187,12538.44921,21
+85709,487679.5426,1171385.101,12125.94395,21
+85710,486330.727,1170752.803,12232.75168,21
+85711,484155.2265,1171046.208,11987.09005,21
+85712,482746.8642,1170684.278,12219.98812,21
+85713,480698.8732,1170259.965,11665.72751,21
+85714,479087.2213,1169080.156,11785.5545,21
+85715,477005.6991,1168551.431,11748.79245,21
+85716,475531.3388,1168742.722,11462.50674,21
+85717,473825.6641,1168697.863,11510.0309,21
+85718,471342.0123,1168259.506,11320.36653,21
+85719,470524.2471,1168385.337,11301.0928,21
+85720,467964.7317,1167961.417,11070.77111,21
+85721,466693.7921,1167883.266,10985.71041,21
+85722,464649.0057,1168010.264,10946.03034,21
+85723,463220.8325,1167305.913,10721.19,21
+85724,460996.545,1167793.111,10832.54116,21
+85725,459637.4719,1167278.385,10376.27306,21
+85726,457763.2709,1167394.946,10478.55237,21
+85727,456095.5953,1167254.137,10359.96361,21
+85728,454374.7911,1166880.951,10229.30628,21
+85729,452551.3879,1167143.782,10023.56779,21
+85730,451260.9273,1167030.799,10088.02061,21
+85731,449150.4372,1166938.161,9770.896859,21
+85732,447833.1628,1166513.247,9745.853222,21
+85733,446149.6434,1166897.192,9514.348446,21
+85734,444523.4435,1166134.097,9483.65631,21
+85735,442973.8501,1166922.974,9363.019367,21
+85736,441139.7638,1166643.108,9154.523673,21
+85737,439661.1373,1167307.892,9320.114458,21
+85738,438659.4774,1167568.242,9035.845094,21
+85739,436359.7012,1167573.045,9114.053168,21
+85740,434835.7478,1167585.291,8980.16454,21
+85741,409563.7575,1142724.245,1153.688957,21
+85742,407899.6838,1141898.622,1073.585446,21
+85743,406768.4811,1140516.458,1073.623844,21
+85744,405836.1684,1140690.309,1019.858041,21
+85745,404481.8273,1139066.523,992.9147883,21
+85746,403655.2955,1138360.314,965.8102839,21
+85747,402467.478,1137481.915,938.7024251,21
+85748,401225.6421,1136572.433,897.7991056,21
+85749,400400.1963,1135585.481,870.4372458,21
+85750,399264.9918,1134609.099,849.8699877,21
+85751,398199.954,1133651.541,801.6326939,21
+85752,397202.7825,1132847.536,773.9479232,21
+85753,396135.2337,1131909.662,773.9675714,21
+85754,395096.0469,1130418.351,690.2815355,21
+85755,394342.4526,1130406.783,704.2877914,21
+85756,392942.2664,1128458.129,641.0423541,21
+85757,392255.6055,1128358.942,634.0025324,21
+85758,391246.9073,1126822.587,591.4438226,21
+85759,390226.7542,1126293.122,562.9460178,21
+85760,389326.2971,1124964.803,527.109777,21
+85761,388057.5451,1124562.267,505.5687814,21
+85762,387525.3835,1123287.205,462.0807088,21
+85763,386186.1457,1122274.059,425.7150249,21
+85764,385411.2307,1118680.275,418.4568731,21
+85765,384272.5489,1119381.914,359.2691334,21
+85766,383616.5007,1117213.125,344.6185785,21
+85767,382124.1222,1116295.731,299.9873783,21
+85768,381637.6131,1115295.846,276.8248491,21
+85769,380366.0267,1114145.994,247.0236367,21
+85770,379635.3695,1112852.703,200.2794419,21
+85771,378313.6057,1111524.694,193.1486526,21
+85772,377639.8006,1111233.517,145.5770755,21
+85773,376492.2604,1109554.133,145.5777344,21
+85774,375575.4797,1108815.705,105.4255713,21
+85775,374840.5865,1108204.919,105.4259177,21
+85776,373772.2698,1106606.973,82.07252344,21
+85777,372736.8783,1106231.925,82.07273124,21
+85778,371658.8227,1105139.54,74.20530598,21
+85779,371036.159,1104143.129,50.29747874,21
+85780,369465.739,1103362.22,50.29755591,21
+85781,369091.1917,1102640.459,42.20603879,21
+85782,367543.3996,1101485.115,25.77766627,21
+85783,366971.0101,1100567.072,17.40095718,21
+85784,365687.8325,1100154.612,8.107230269,21
+85785,364611.8474,1098607.315,0,21
+85786,364055.5759,1098462.019,0,21
+85787,362595.7341,1097263.886,0,21
+85788,361474.7874,1096948.111,0,21
+85789,360722.5492,1095214.795,0,21
+85790,359339.8244,1095408.111,0,21
+85791,358471.2223,1093974.053,0,21
+85792,356967.2404,1093458.685,0,21
+85793,356107.2186,1092354.658,0,21
+85794,355226.2432,1091951.656,0,21
+85795,353569.2409,1091250.021,0,21
+85796,352771.2176,1090032.148,0,21
+85797,351476.3074,1089533.256,0,21
+85798,350225.7578,1088888.913,0,21
+85799,349133.5646,1087534.694,0,21
+85800,348135.6624,1087446.383,0,21
+85801,351592.5302,1088308.806,0,21
+85802,351477.1245,1086423.56,0,21
+85803,350775.2207,1083696.881,0,21
+85804,349276.8576,1081851.663,0,21
+85805,349038.3566,1079402.492,0,21
+85806,348119.9438,1076723.52,0,21
+85807,347106.169,1074451.584,0,21
+85808,346684.3116,1072386.055,0,21
+85809,345197.3542,1069353.162,0,21
+85810,344795.3604,1067480.459,0,21
+85811,343862.2685,1064798.634,0,21
+85812,343054.2975,1062782.792,0,21
+85813,341969.5545,1059608.627,0,21
+85814,341291.6656,1057847.178,0,21
+85815,340375.6231,1055211.112,0,21
+85816,339165.2895,1052639.879,0,21
+85817,338784.6363,1050282.889,0,21
+85818,337366.1477,1047573.166,0,21
+85819,336992.9083,1045312.372,0,21
+85820,335434.584,1042693.642,0,21
+85821,334997.3538,1040620.34,0,21
+85822,333963.3789,1037498.91,0,21
+85823,333265.9071,1035244.046,0,21
+85824,331812.5159,1033287.378,0,21
+85825,331476.2407,1030991.562,0,21
+85826,330070.7067,1029098.835,0,21
+85827,329633.4272,1026215.472,0,21
+85828,328350.5574,1023788.56,0,21
+85829,327439.8698,1021545.885,0,21
+85830,326791.933,1018681.204,0,21
+85831,325687.9644,1016692.582,0,21
+85832,325096.3557,1012909.733,0,21
+85833,324317.2918,1010964.947,0,21
+85834,323129.9351,1008003.185,0,21
+85835,322821.2295,1005982.336,0,21
+85836,321774.6006,1003360.63,0,21
+85837,321126.2917,1001144.428,0,21
+85838,320092.6227,998671.0579,0,21
+85839,319638.4369,996236.6391,0,21
+85840,318766.6368,994305.841,0,21
+85841,318066.6462,991378.9564,0,21
+85842,317217.7757,989500.4694,0,21
+85843,316741.3454,986841.1205,0,21
+85844,315619.8524,984339.9221,0,21
+85845,315119.3428,982621.2205,0,21
+85846,314783.651,979591.803,0,21
+85847,313478.8035,977801.5204,0,21
+85848,313371.9251,974618.8082,0,21
+85849,312138.1539,973151.5764,0,21
+85850,312153.1615,970506.5844,0,21
+85851,311880.5046,967864.1575,0,21
+85852,312178.4291,966159.3312,266.3177352,21
+85853,312389.4772,963153.6517,393.5755904,21
+85854,312199.9965,960894.0859,393.5802386,21
+85855,312980.3802,959271.8718,518.7788266,21
+85856,312349.8425,955792.3235,518.7869741,21
+85857,313274.5341,954423.6752,642.3719227,21
+85858,313157.4249,951293.9546,764.6174695,21
+85859,313206.8859,948929.8545,764.6354073,21
+85860,313651.7969,945435.2132,764.6533446,21
+85861,307918.8735,942854.8888,0,21
+85862,307909.2398,943937.1791,0,21
+85863,307316.1166,944072.2335,0,21
+85864,307189.8643,945434.1284,0,21
+85865,307197.5238,945036.6921,0,21
+85866,306520.0226,946405.9387,0,21
+85867,306495.1761,946453.3977,0,21
+85868,306321.5525,947367.9,0,21
+85869,306256.154,947933.7193,0,21
+85870,305673.6401,948454.9165,0,21
+85871,305626.2071,949273.7044,0,21
+85872,305440.4352,950040.2022,0,21
+85873,305293.131,949971.1664,0,21
+85874,304834.0606,951267.0013,0,21
+85875,305101.0871,951683.1057,0,21
+85876,304559.0814,952478.3318,0,21
+85877,304541.7085,952714.7547,0,21
+85878,304409.8943,954237.5108,0,21
+85879,304202.4035,953761.4963,0,21
+85880,303869.4682,955346.6241,0,21
+85881,304253.6273,955639.9218,0,21
+85882,303545.8566,956436.5962,0,21
+85883,303904.3156,957130.9538,0,21
+85884,303399.0452,957601.6469,0,21
+85885,303639.2694,958868.6563,0,21
+85886,303350.1567,959135.3641,0,21
+85887,303328.7351,960081.2465,0,21
+85888,303143.2232,960972.9453,0,21
+85889,302828.5187,961279.7589,0,21
+85890,302799.6372,962971.9989,0,21
+85891,303049.3082,962637.8742,0,21
+85892,302999.9802,964454.8087,0,21
+85893,303241.1254,965037.8449,0,21
+85894,303428.1633,965927.4823,0,21
+85895,303567.528,966901.2651,0,21
+85896,304231.5407,967856.1993,0,21
+85897,304425.099,968784.5456,0,21
+85898,304783.6975,969723.6775,0,21
+85899,305138.6107,970837.6466,0,21
+85900,305373.0813,972027.643,0,21
+85901,305878.455,971306.8913,0,21
+85902,306241.7035,973032.9853,0,21
+85903,306653.3424,973638.3637,0,21
+85904,306982.3184,974898.7637,0,21
+85905,307111.5829,975664.1984,0,21
+85906,307918.7823,977110.6465,0,21
+85907,308050.4981,978033.2273,0,21
+85908,308607.7697,978827.3657,0,21
+85909,308944.5331,980341.5443,0,21
+85910,309422.6309,981133.2452,0,21
+85911,309781.4563,982904.2163,0,21
+85912,310080.721,983328.736,0,21
+85913,310954.2428,985006.2527,0,21
+85914,311281.3255,985799.6467,0,21
+85915,311460.1046,987431.4739,0,21
+85916,312411.3018,988268.1363,0,21
+85917,312234.1858,989565.7621,0,21
+85918,313280.1534,990884.2001,0,21
+85919,313417.7433,992060.164,0,21
+85920,313794.5765,993484.5665,0,21
+85921,314541.2,993866.4424,0,21
+85922,314814.1055,993348.93,0,21
+85923,315623.8139,994281.5313,0,21
+85924,315987.849,994012.4169,0,21
+85925,316656.1931,994657.4068,0,21
+85926,317280.9252,994806.938,0,21
+85927,317792.3858,994720.7453,0,21
+85928,318139.0332,995489.5307,0,21
+85929,319082.0988,995373.658,0,21
+85930,319380.253,996145.9995,0,21
+85931,319930.096,996013.269,0,21
+85932,320581.4365,996721.0424,0,21
+85933,321026.5359,996745.4026,0,21
+85934,321957.5172,996981.4081,0,21
+85935,322094.8875,997947.0167,0,21
+85936,322850.1921,997841.1613,0,21
+85937,323290.7623,998505.5418,0,21
+85938,324212.5127,998372.2062,0,21
+85939,324278.3091,999421.785,0,21
+85940,325098.8269,999441.1225,0,21
+85941,325552.6974,999975.6792,0,21
+85942,326424.2196,1000874.805,0,21
+85943,326589.2737,1002236.22,0,21
+85944,327171.6686,1001782.161,0,21
+85945,327888.1188,1003288.087,0,21
+85946,328362.5443,1003496.076,0,21
+85947,328967.6813,1004338.123,0,21
+85948,329172.219,1004911.634,0,21
+85949,329697.4505,1005197.23,0,21
+85950,330247.2476,1006661.317,0,21
+85951,330680.0145,1006469.324,0,21
+85952,330935.4235,1007491.431,0,21
+85953,331802.4798,1007782.166,0,21
+85954,332222.9495,1008215.635,0,21
+85955,332719.1505,1008627.914,0,21
+85956,333204.2183,1009529.354,0,21
+85957,333755.3867,1009541.496,0,21
+85958,334245.2147,1010470.567,0,21
+85959,334706.9409,1010982.863,0,21
+85960,335250.7594,1010982.969,0,21
+85961,335709.3632,1012348.354,0,21
+85962,336170.2677,1012310.045,0,21
+85963,335897.4621,1012558.475,0,21
+85964,335539.3168,1013733.937,0,21
+85965,335262.5605,1016956.562,0,21
+85966,334868.0543,1022878.499,0,21
+85967,334525.6683,1021121.999,0,21
+85968,333943.5183,1024607.569,0,21
+85969,333641.7143,1026055.596,0,21
+85970,333738.1065,1027818.958,0,21
+85971,332457.9725,1029010.212,0,21
+85972,332579.0236,1031366.737,0,21
+85973,331994.6285,1032117.584,0,21
+85974,331575.9977,1034487.863,0,21
+85975,331337.9781,1035404.93,0,21
+85976,330779.3034,1037324.989,0,21
+85977,330426.3971,1038617.311,0,21
+85978,329931.938,1040548.075,0,21
+85979,330273.9514,1041416.261,0,21
+85980,329247.8231,1043612.187,0,21
+85981,357592.4709,1116843.222,0,21
+85982,359766.4706,1126820.703,1450.550728,21
+85983,362538.3695,1130167.146,1048.122005,21
+85984,362429.6876,1137096.651,2410.076956,21
+85985,364049.4902,1141246.029,13257.46266,21
+85986,364649.1702,1146745.327,6040.979741,21
+85987,366441.2153,1151628.344,8569.409175,21
+85988,367255.6434,1156814.944,8697.814768,21
+85989,368664.2581,1168833.433,9164.8638,21
+85990,369813.8357,1176021.172,9179.855035,21
+85991,370817.6398,1181173.499,9519.882525,21
+85992,372096.7778,1186147.252,9671.360128,21
+85993,373160.418,1191047.514,9985.441423,21
+85994,374189.419,1195749.573,10024.94248,21
+85995,375231.2235,1200501.7,10472.78862,21
+85996,376762.6577,1205333.988,10402.51824,21
+85997,377517.0547,1209894.384,10823.20718,21
+85998,378517.8967,1214033.708,10876.95551,21
+85999,380025.0371,1219115.998,11185.19631,21
+86000,381003.3288,1223221.094,11239.07748,21
+86001,381951.1996,1227068.372,11656.24134,21
+86002,382933.4982,1230544.015,11588.02618,21
+86003,383989.7182,1235248.28,11919.98735,21
+86004,384963.0049,1239770.668,12153.99485,21
+86005,386130.5465,1244846.877,12170.84408,21
+86006,386952.7616,1249274.083,12513.43572,21
+86007,388130.8607,1253556.24,12650.58611,21
+86008,388987.0893,1257709.709,12763.74681,21
+86009,390477.3362,1261995.756,14542.07115,21
+86010,391094.0896,1266340.834,14141.10167,21
+86011,391985.6218,1270274.207,14679.15274,21
+86012,392898.6112,1274187.88,15063.63584,21
+86013,393998.5334,1278646.609,15186.51361,21
+86014,394953.3849,1282336.8,15869.01074,21
+86015,395753.3667,1298285.868,15984.35099,21
+86016,396890.5736,1299461.944,16141.42089,21
+86017,397543.5557,1303436.716,16900.30686,21
+86018,398919.1306,1309342.25,16921.97235,21
+86019,399659.1399,1313716.071,17184.60336,21
+86020,400491.608,1319660.885,17726.66658,21
+86021,401507.7279,1322749.928,17756.33576,21
+86022,403575.0442,1327830.071,18320.09799,21
+86023,405973.9666,1332104.823,18558.03411,21
+86024,405835.8712,1336823.095,18783.90168,21
+86025,407471.7826,1340757.871,19139.1212,21
+86026,413564.3885,1345258.352,19469.66367,21
+86027,425387.5989,1350177.379,19628.85294,21
+86028,421145.4462,1354082.013,19945.45093,21
+86029,425866.4063,1358049.789,20513.52905,21
+86030,427649.475,1362540.202,20409.04508,21
+86031,430069.933,1366048.833,20988.06994,21
+86032,431922.5364,1372302.288,21026.36971,21
+86033,434031.0472,1373959.496,21518.75912,21
+86034,435824.322,1378627.015,21630.88997,21
+86035,437783.1851,1383678.354,22005.47933,21
+86036,440036.7787,1387063.524,22346.25497,21
+86037,441127.5879,1390472.41,22753.21471,21
+86038,444643.2506,1394996.574,22944.83605,21
+86039,446976.0327,1398308.482,23496.26993,21
+86040,448797.9006,1401036.326,23387.81594,21
+86041,464051.5312,1469957.273,32531.28478,21
+86042,466420.9099,1478997.885,34660.41833,21
+86043,468272.0252,1484361.672,34503.2334,21
+86044,471088.6204,1490109.173,35191.78215,21
+86045,472736.9223,1493194.575,35600.09118,21
+86046,480723.1144,1499288.889,36301.8544,21
+86047,479084.6553,1502547.414,36578.46498,21
+86048,482666.4105,1507400.503,37445.23935,21
+86049,484099.7461,1512521.598,37615.23257,21
+86050,486458.1634,1517631.264,38512.28828,21
+86051,488393.115,1520138.356,38674.9753,21
+86052,490258.307,1525105.445,39549.76883,21
+86053,492429.5472,1529529.067,39735.32242,21
+86054,493699.8705,1534310.776,40600.35748,21
+86055,496476.4216,1537765.15,40970.51264,21
+86056,497952.4977,1543129.31,41470.5423,21
+86057,503867.3714,1545769.822,43687.22747,21
+86058,507319.1211,1550412.078,44063.18781,21
+86059,508486.9628,1555038.932,44791.52969,21
+86060,511118.6727,1558594.297,45277.07383,21
+86061,513892.0838,1563070.573,46056.98622,21
+86062,516041.2128,1566286.283,46402.22749,21
+86063,518475.7445,1570906.941,46992.9285,21
+86064,520563.591,1575401.374,47559.14864,21
+86065,522935.891,1578562.597,47975.71933,21
+86066,525457.3657,1582666.732,48485.49821,21
+86067,532391.4783,1586147.75,49045.18581,21
+86068,542170.8332,1591215.958,52065.763,21
+86069,540548.4439,1594129.4,52166.14019,21
+86070,544874.5324,1597287.388,54131.9816,21
+86071,547362.9608,1603488.725,54725.40856,21
+86072,550916.6853,1605767.297,55786.35918,21
+86073,554358.8745,1609160.018,56525.05279,21
+86074,555975.0237,1613742.531,56745.94219,21
+86075,559766.2738,1617927.754,58066.42338,21
+86076,562990.2147,1620939.426,58189.06144,21
+86077,565065.3171,1624542.975,59452.06534,21
+86078,567861.5515,1629570.226,59533.38302,21
+86079,570976.35,1632507.782,60579.05543,21
+86080,572736.999,1636424.028,60908.30165,21
+86081,575871.5219,1642795.443,61719.37839,21
+86082,578697.8042,1643092.849,62449.39655,21
+86083,580450.213,1649437.019,62948.49002,21
+86084,583697.7731,1651755.038,63622.41184,21
+86085,586318.0147,1656825.539,64235.64725,21
+86086,588102.229,1658873.836,64832.85656,21
+86087,591316.9447,1664337.61,65474.47195,21
+86088,592964.7256,1665724.347,65883.69437,21
+86089,595770.1739,1672138.097,66913.04677,21
+86090,598358.5162,1673382.52,67259.65201,21
+86091,600156.1171,1677352.697,67682.47183,21
+86092,602290.4957,1678648.698,68428.38012,21
+86093,604668.6479,1684537.479,69173.38484,21
+86094,607075.0834,1686992.399,69546.6,21
+86095,609835.4013,1691355.362,70262.94648,21
+86096,611664.8215,1693734.815,71162.40594,21
+86097,613092.3984,1697693.309,74004.15202,21
+86098,616466.2514,1701241.917,73241.2507,21
+86099,618477.4896,1705969.85,74784.45836,21
+86100,619157.331,1707516.056,75078.82455,21
+86101,622192.544,1711120.23,76512.65072,21
+86102,623995.2174,1714312.62,76714.84689,21
+86103,625139.5536,1717245.531,78143.49995,21
+86104,625871.1789,1717082.127,78413.99076,21
+86105,627972.1714,1723337.36,79494.3249,21
+86106,629176.2949,1722453.807,80303.9916,21
+86107,630765.9059,1726270.509,80934.14643,21
+86108,630792.3452,1728184.978,82074.11676,21
+86109,634289.6342,1731785.626,82520.59802,21
+86110,633641.4726,1732710.083,83543.73186,21
+86111,635458.1806,1735517.182,83886.03432,21
+86112,636165.4271,1737521.766,85265.64371,21
+86113,638202.6728,1740987.645,85660.72153,21
+86114,639945.4408,1742321.382,86548.39412,21
+86115,639347.2038,1745118.938,87401.30034,21
+86116,642164.0966,1747503.059,87934.01327,21
+86117,642077.6904,1748799.405,89801.67785,21
+86118,643600.0694,1752471.886,90408.87817,21
+86119,645325.6098,1753463.616,91210.57099,21
+86120,646162.432,1757374.704,91858.36701,21
+86121,646518.1773,1757934.406,92868.1044,21
+86122,648386.9923,1761126.149,93314.94099,21
+86123,649226.2396,1763290.63,94393.39533,21
+86124,650403.1542,1765259.324,94835.32443,21
+86125,651630.6635,1768689.011,95901.22694,21
+86126,651805.3675,1768543.99,96679.42339,21
+86127,653522.5314,1772747.671,97071.99338,21
+86128,654816.2615,1774442.57,97471.89686,21
+86129,654592.0117,1776395.845,97885.36458,21
+86130,657481.9927,1778982.579,98486.88406,21
+86131,655752.0591,1781772.934,99693.05038,21
+86132,659666.8758,1782817.92,100089.958,21
+86133,657956.0666,1786424.4,100935.4272,21
+86134,660961.7676,1786717.367,101351.7528,21
+86135,660900.9417,1790641.491,102504.976,21
+86136,661812.9553,1791942.649,103013.9726,21
+86137,663385.9329,1794622.636,103936.2529,21
+86138,663910.581,1796668.711,104420.6544,21
+86139,664206.8798,1797959.38,105231.5439,21
+86140,666008.3694,1803285.185,105852.0497,21
+86141,666356.7064,1804051.028,106699.3184,21
+86142,668207.1214,1807730.094,107442.6699,21
+86143,666965.8947,1808727.218,107763.9731,21
+86144,670186.1394,1810761.456,108944.736,21
+86145,669327.3224,1814191.784,109798.1161,21
+86146,670887.7288,1814581.941,109784.8887,21
+86147,671447.089,1819111.714,111154.7895,21
+86148,672884.7518,1819517.678,111679.5464,21
+86149,672118.2724,1822411.756,112204.813,21
+86150,675060.0302,1824594.211,113163.369,21
+86151,674076.0145,1825750.033,113578.3178,21
+86152,675294.189,1829838.836,114249.2769,21
+86153,676361.1632,1830228.475,115539.5878,21
+86154,677628.9959,1833027.058,115701.1088,21
+86155,676828.706,1836200.448,116358.4476,21
+86156,679698.7542,1836563.932,117518.5991,21
+86157,678333.7508,1839635.042,117695.4883,21
+86158,680726.4253,1841487.1,118656.0073,21
+86159,680351.3222,1844028.028,119468.0353,21
+86160,681166.3435,1845981.422,119793.315,21
+86161,691069.2109,1856699.347,124358.0886,21
+86162,693442.0688,1857518.634,125114.2021,21
+86163,696323.7281,1860369.663,126659.839,21
+86164,696957.959,1862147.399,126804.772,21
+86165,699244.8581,1863954.188,127702.1831,21
+86166,700428.424,1864853.282,128467.225,21
+86167,702603.5091,1866164.978,128993.3619,21
+86168,703822.2515,1866156.467,130230.6903,21
+86169,704715.0205,1868476.105,130095.3919,21
+86170,706899.6751,1869619.714,131354.2476,21
+86171,708957.2038,1871314.05,131813.9834,21
+86172,709112.8784,1873020.419,132456.0114,21
+86173,712221.4525,1874333.495,133370.7017,21
+86174,712327.3637,1875223.872,133830.1901,21
+86175,714351.2837,1877502.588,134427.9132,21
+86176,715422.513,1877983.188,135404.7819,21
+86177,717458.0106,1879927.143,135551.2127,21
+86178,718864.742,1881271.456,136496.1374,21
+86179,720494.7666,1882989.866,137308.7517,21
+86180,720706.4268,1883876.292,137444.1686,21
+86181,723776.4722,1885779.806,138614.2742,21
+86182,723885.3208,1886816.289,138797.1051,21
+86183,726770.6946,1888165.015,139788.0648,21
+86184,726126.1576,1889562.307,140232.4998,21
+86185,729693.2362,1890827.442,140551.4214,21
+86186,729064.579,1892158.568,141840.9729,21
+86187,731939.6775,1894086.941,142047.9849,21
+86188,732105.006,1894207.901,142739.5555,21
+86189,735113.9152,1896705.091,142997.4267,21
+86190,734859.9833,1896394.413,144279.1621,21
+86191,736246.3602,1900305.936,144747.4201,21
+86192,738868.6538,1899095.327,144773.6274,21
+86193,739164.4188,1901058.844,145908.8337,21
+86194,739979.9389,1903317.141,146122.2552,21
+86195,743376.4027,1902971.504,147176.3983,21
+86196,742784.5427,1905134.099,147309.2818,21
+86197,744172.959,1905437.721,148348.1978,21
+86198,747155.2166,1908478.543,148570.8055,21
+86199,746892.386,1907968.332,149109.3526,21
+86200,748082.7431,1910456.251,150096.1187,21
+86201,751146.5441,1911510.855,150077.2373,21
+86202,749855.9126,1911743.575,151191.1637,21
+86203,752936.1178,1913297.438,151596.5031,21
+86204,754081.5626,1914456.028,152391.1582,21
+86205,754699.5994,1915288.219,152269.3515,21
+86206,756812.7945,1917513.59,153514.2043,21
+86207,756857.0679,1917084.254,153847.386,21
+86208,759191.0165,1919823.37,154402.0039,21
+86209,760285.9126,1919004.186,154780.9585,21
+86210,760873.6803,1921928.424,155529.1002,21
+86211,762213.2093,1922606.538,156298.659,21
+86212,764124.8452,1922600.284,156281.683,21
+86213,764267.4094,1923838.684,157591.4897,21
+86214,767437.3281,1927536.844,157250.9712,21
+86215,766380.9847,1925496.569,158485.5273,21
+86216,769372.4596,1927909.925,158954.228,21
+86217,769268.1825,1928200.957,159046.3045,21
+86218,771098.4251,1928940.36,159835.3691,21
+86219,772524.4498,1929688.59,160592.9199,21
+86220,773800.0525,1928777.594,160753.9778,21
+86221,774031.2095,1932359.219,161457.4573,21
+86222,776944.5661,1935139.214,161999.8244,21
+86223,778748.0614,1938161.266,162254.894,21
+86224,778412.1436,1940198.693,163081.1189,21
+86225,780755.0351,1941762.549,163203.3817,21
+86226,781707.4535,1944139.718,164391.8841,21
+86227,782817.949,1945526.545,163940.8755,21
+86228,783556.0727,1948991.131,165011.9888,21
+86229,785091.1081,1948785.054,165307.0129,21
+86230,785813.7448,1952353.053,165925.1249,21
+86231,786916.8109,1953943.325,166169.8876,21
+86232,788448.0578,1954802.368,167051.7225,21
+86233,789721.5216,1958995.474,167219.2219,21
+86234,790053.2455,1959552.809,167565.2552,21
+86235,792720.337,1961766.778,168374.7264,21
+86236,791722.1504,1963030.259,168368.0207,21
+86237,794452.9479,1965005.053,169726.666,21
+86238,794714.5935,1968472.399,169043.4055,21
+86239,796597.7008,1968505.386,170171.3105,21
+86240,796588.3872,1971452.162,170821.8912,21
+86241,798651.5716,1973071.284,170578.6478,21
+86242,798885.9293,1974243.753,171682.5845,21
+86243,801518.8639,1977543.747,171769.1153,21
+86244,800630.1611,1979130.357,172292.8777,21
+86245,802914.4682,1979767.895,172817.1287,21
+86246,803563.9093,1982790.05,173251.6775,21
+86247,805887.7857,1984649.461,173618.4507,21
+86248,805129.4781,1986356.552,173978.104,21
+86249,807102.1249,1987153.173,174735.7873,21
+86250,808092.0734,1991490.146,174509.7921,21
+86251,809106.0282,1991478.165,175690.7299,21
+86252,810355.8074,1993011.112,175557.8111,21
+86253,810906.4341,1996583.341,176340.0978,21
+86254,813063.2716,1996938.755,176728.7251,21
+86255,812305.4004,1999734.253,177336.3372,21
+86256,814824.0453,2000986.988,177124.654,21
+86257,816161.3884,2003148.575,178029.3463,21
+86258,815655.1835,2005458.486,178239.6896,21
+86259,818545.546,2006465.073,179071.1629,21
+86260,818512.9416,2009561.819,178886.5428,21
+86261,819894.3139,2010090.266,179294.4179,21
+86262,820243.7717,2013451.948,180151.1241,21
+86263,821751.3734,2013726.763,180330.3593,21
+86264,823408.7014,2016957.364,180795.1102,21
+86265,823581.2746,2018341.682,181214.7457,21
+86266,825239.8924,2019022.267,181677.8778,21
+86267,825651.8325,2022992.087,181531.2444,21
+86268,827100.3209,2023257.114,182754.0073,21
+86269,828155.8056,2024930.034,182701.9074,21
+86270,829503.3325,2029084.002,183049.876,21
+86271,829248.9469,2028960.252,183509.7452,21
+86272,831182.8452,2030659.157,184240.9873,21
+86273,831898.8688,2033597.568,183605.7508,21
+86274,833932.2354,2033994.599,185281.2245,21
+86275,833332.8283,2037370.201,184704.5414,21
+86276,835384.8354,2038179.431,185621.6398,21
+86277,836227.4971,2040531.113,185543.4097,21
+86278,836724.1895,2042230.723,186261.9426,21
+86279,839272.6116,2043933.136,186361.3789,21
+86280,838137.726,2045900.168,187287.552,15.6
+86281,0,0,0,15.6
+86282,0,0,0,15.6
+86283,0,0,0,15.6
+86284,0,0,0,15.6
+86285,0,0,1421861.82,15.6
+86286,0,3.087286225,0,15.6
+86287,0,0,0,15.6
+86288,0,73.32754712,0,15.6
+86289,0,0,0,15.6
+86290,0,0,0,15.6
+86291,339497.5753,0,0,15.6
+86292,0,3.173064729,0,15.6
+86293,0,0,0,15.6
+86294,0,4.150141254,0,15.6
+86295,0,0,0,15.6
+86296,0,0,0,15.6
+86297,0,68.32525572,0,15.6
+86298,0,0,0,15.6
+86299,0,0,0,15.6
+86300,0,0,0,15.6
+86301,0,0,0,15.6
+86302,0,0,0,15.6
+86303,0,0,0,15.6
+86304,0,0,0,15.6
+86305,0,0,0,15.6
+86306,0,0,0,15.6
+86307,0,0,0,15.6
+86308,0,0,0,15.6
+86309,0,0,0,15.6
+86310,0,0,0,15.6
+86311,0,0,0,15.6
+86312,0,0,0,15.6
+86313,0,0,0,15.6
+86314,0,0,0,15.6
+86315,0,0,0,15.6
+86316,0,0,0,15.6
+86317,0,0,0,15.6
+86318,0,0,0,15.6
+86319,0,0,1357140.265,15.6
+86320,0,0,0,15.6
+86321,0,0,0,15.6
+86322,0,0,0,15.6
+86323,0,0,0,15.6
+86324,0,0,0,15.6
+86325,0,0,0,15.6
+86326,0,0,0,15.6
+86327,0,0,0,15.6
+86328,339453.7728,0,0,15.6
+86329,0,0,0,15.6
+86330,0,0,0,15.6
+86331,0,0,0,15.6
+86332,0,0,0,15.6
+86333,0,0,0,15.6
+86334,0,0,0,15.6
+86335,0,0,0,15.6
+86336,0,0,0,15.6
+86337,0,0,0,15.6
+86338,0,0,0,15.6
+86339,0,0,0,15.6
+86340,0,0,0,15.6
+86341,0,0,0,15.6
+86342,0,87.79964521,0,15.6
+86343,0,0,0,15.6
+86344,0,0,0,15.6
+86345,0,0,0,15.6
+86346,0,0,0,15.6
+86347,0,0,0,15.6
+86348,0,0,0,15.6
+86349,0,32121.5487,0,15.6
+86350,0,1699.719888,0,15.6
+86351,0,3043.934818,0,15.6
+86352,0,11175.33154,0,15.6
+86353,0,12906.16098,0,15.6
+86354,0,11281.46969,1298024.14,15.6
+86355,0,12015.04075,0,15.6
+86356,0,12586.66927,0,15.6
+86357,28349.26746,12973.96482,0,15.6
+86358,0,13369.39609,0,15.6
+86359,1119.555853,13680.1199,0,15.6
+86360,8436.06564,14089.6644,0,15.6
+86361,8384.754812,14461.58338,0,15.6
+86362,6683.534139,14789.99242,0,15.6
+86363,7438.278501,15147.93657,0,15.6
+86364,7576.888664,15506.53393,0,15.6
+86365,347139.8476,15910.81304,0,15.6
+86366,7828.600948,16227.23882,0,15.6
+86367,7932.255236,16549.77153,0,15.6
+86368,8090.095393,16931.13316,0,15.6
+86369,8196.376751,17300.3375,0,15.6
+86370,8306.905684,17605.67186,0,15.6
+86371,8430.443705,18008.13761,0,15.6
+86372,8875.01986,18307.89766,0,15.6
+86373,9293.614608,18643.31126,0,15.6
+86374,9268.113252,19044.9981,0,15.6
+86375,9535.775385,19387.22204,0,15.6
+86376,9727.81603,19680.08974,0,15.6
+86377,9923.335658,20054.9584,0,15.6
+86378,10079.06534,20390.22082,0,15.6
+86379,10298.17843,0,0,15.6
+86380,10451.01175,0,0,15.6
+86381,10638.69361,0,0,15.6
+86382,10850.24285,72208.12903,0,15.6
+86383,10968.58424,5652.816659,0,15.6
+86384,11186.26356,16735.39391,0,15.6
+86385,11358.59416,28444.73364,0,15.6
+86386,11528.1653,22344.37174,0,15.6
+86387,0,23527.27848,0,15.6
+86388,0,347238.8279,0,15.6
+86389,0,50055.63501,1244046.222,15.6
+86390,0,47683.29718,0,15.6
+86391,41051.20402,150754.8538,0,15.6
+86392,1796.585982,115645.5831,0,15.6
+86393,9337.848452,124759.2547,0,15.6
+86394,16638.67611,144231.3479,0,15.6
+86395,12383.35283,137782.3437,0,15.6
+86396,13243.02316,144828.424,0,15.6
+86397,13423.87842,148167.6881,0,15.6
+86398,13557.79935,152107.5371,0,15.6
+86399,13751.75206,155262.4348,0,15.6
+86400,13870.73011,159222.4183,0,15.6
+86401,14234.23206,162417.2109,0,15.6
+86402,353800.4465,165171.7568,0,15.6
+86403,14591.56706,166221.4117,0,15.6
+86404,14702.95605,168475.5318,0,15.6
+86405,14918.31704,169474.6419,0,15.6
+86406,15033.04228,171590.1468,0,15.6
+86407,15227.96933,173226.9419,0,15.6
+86408,15319.64584,175071.3093,0,15.6
+86409,15568.82208,176295.7855,0,15.6
+86410,15641.86346,178120.0259,0,15.6
+86411,15828.97578,180080.8524,0,15.6
+86412,15980.89008,151163.2954,0,15.6
+86413,16107.22866,153143.9825,0,15.6
+86414,16295.09638,240324.8119,0,15.6
+86415,16458.02509,168783.4713,0,15.6
+86416,16548.08484,183808.7732,0,15.6
+86417,16749.31843,193210.8591,0,15.6
+86418,16872.41176,30218.47628,0,15.6
+86419,17038.87047,30745.67386,0,15.6
+86420,17175.89692,30949.61327,0,15.6
+86421,0,30982.92897,0,15.6
+86422,0,601116.0665,0,15.6
+86423,0,79493.27819,0,15.6
+86424,59138.32801,138535.768,1194753.379,15.6
+86425,3973.191698,254124.117,0,15.6
+86426,13750.06699,195225.8314,0,15.6
+86427,22690.91799,204727.7482,0,15.6
+86428,17717.7132,205328.6872,0,15.6
+86429,18514.50714,207280.8447,0,15.6
+86430,18679.20211,208352.6047,0,15.6
+86431,18845.16077,209764.6262,0,15.6
+86432,18947.91419,211067.1625,0,15.6
+86433,19109.97357,213066.4477,0,15.6
+86434,19258.99663,213464.848,0,15.6
+86435,19356.75912,214970.8302,0,15.6
+86436,19534.28776,216546.8144,0,15.6
+86437,19667.11184,217702.2462,0,15.6
+86438,19759.77421,218771.3551,0,15.6
+86439,19950.10881,220105.932,0,15.6
+86440,359436.8164,221454.3264,0,15.6
+86441,20236.31314,223102.1855,0,15.6
+86442,20302.22403,223544.6308,0,15.6
+86443,20452.42166,225397.2856,0,15.6
+86444,20632.27202,193104.155,0,15.6
+86445,20766.13038,193730.2375,0,15.6
+86446,20813.67699,293674.7655,0,15.6
+86447,21042.00725,215318.4675,0,15.6
+86448,21103.88188,223798.626,0,15.6
+86449,21314.93063,238592.7313,0,15.6
+86450,21373.97772,233145.8411,0,15.6
+86451,21528.10364,235264.1234,0,15.6
+86452,21673.94749,34718.1948,0,15.6
+86453,21779.50856,34761.99635,0,15.6
+86454,0,34949.90781,0,15.6
+86455,0,706559.592,0,15.6
+86456,0,113015.6835,0,15.6
+86457,76992.96042,168353.4002,0,15.6
+86458,11355.37211,303763.4034,0,15.6
+86459,10131.23221,236796.631,1149738.976,15.6
+86460,31312.00915,246790.0649,0,15.6
+86461,21503.18038,246364.5936,0,15.6
+86462,298236.1525,246250.4816,0,15.6
+86463,22841.77411,245424.9463,0,15.6
+86464,27754.80393,245507.0722,0,15.6
+86465,121820.2369,244672.9173,0,15.6
+86466,86754.1296,244064.0301,0,15.6
+86467,85307.59696,244230.1816,0,15.6
+86468,88220.65315,243005.6294,0,15.6
+86469,88489.06743,243151.4461,0,15.6
+86470,88730.26458,242534.8171,0,15.6
+86471,88793.7449,241772.8255,0,15.6
+86472,89057.58286,241922.6777,0,15.6
+86473,89310.12166,240356.8927,0,15.6
+86474,89274.55972,241280.2733,0,15.6
+86475,89744.37316,239810.4866,0,15.6
+86476,89649.02162,205120.9768,0,15.6
+86477,89994.54144,204742.106,0,15.6
+86478,429346.4372,304946.2616,0,15.6
+86479,90685.01368,223859.6986,0,15.6
+86480,90396.88699,229324.1324,0,15.6
+86481,90766.83641,243541.9397,0,15.6
+86482,91025.02302,236048.4941,0,15.6
+86483,90978.99563,236297.7796,0,15.6
+86484,91352.13706,235807.0685,0,15.6
+86485,91580.64741,34003.17939,0,15.6
+86486,91704.82397,33893.32162,0,15.6
+86487,68737.91287,33881.41018,0,15.6
+86488,68868.59363,704085.8371,0,15.6
+86489,69196.56838,100733.5826,0,15.6
+86490,149935.3263,155983.1429,0,15.6
+86491,81957.16569,294423.3797,0,15.6
+86492,9913.261018,222449.8505,0,15.6
+86493,32009.09389,231397.2032,0,15.6
+86494,21979.62666,231076.1027,1108685.795,15.6
+86495,23177.57677,230188.6789,0,15.6
+86496,23265.60942,229425.8804,0,15.6
+86497,23212.19304,229637.1012,0,15.6
+86498,23273.13039,228340.297,0,15.6
+86499,23209.2659,228045.8657,0,15.6
+86500,23300.01388,227450.3139,0,15.6
+86501,23215.54759,226715.7327,0,15.6
+86502,317611.6505,226230.0568,0,15.6
+86503,41782.69282,225682.7448,0,15.6
+86504,36677.96222,225220.1126,0,15.6
+86505,132395.367,224520.4775,0,15.6
+86506,92790.88499,223644.021,0,15.6
+86507,94010.41895,223452.4803,0,15.6
+86508,100548.6445,190335.7847,0,15.6
+86509,100053.4327,189922.9626,0,15.6
+86510,99571.51331,284047.658,0,15.6
+86511,100747.266,205025.5851,0,15.6
+86512,100322.5541,212780.452,0,15.6
+86513,100954.9678,225402.5321,0,15.6
+86514,101269.3299,218821.2426,0,15.6
+86515,101130.1273,218413.1441,0,15.6
+86516,441003.3168,217948.4776,0,15.6
+86517,101861.9985,217289.4984,0,15.6
+86518,101871.1675,31630.44596,0,15.6
+86519,102245.7401,31507.30037,0,15.6
+86520,79350.03818,31483.91389,0,15.6
+86521,79770.95605,647044.0619,0,15.6
+86522,80275.18961,63363.50666,0,15.6
+86523,161967.3905,166296.8959,0,15.6
+86524,94003.2648,260306.0568,0,15.6
+86525,93452.97585,204118.4684,0,15.6
+86526,114166.6143,210252.5557,0,15.6
+86527,105922.9294,210249.408,0,15.6
+86528,107023.4868,208840.1249,0,15.6
+86529,108309.0013,208023.3231,1142812.233,15.6
+86530,108397.8756,207251.4237,0,15.6
+86531,108955.7068,205660.5967,0,15.6
+86532,23758.4456,205167.394,0,15.6
+86533,23856.04675,204134.9608,0,15.6
+86534,23832.40827,202928.4799,0,15.6
+86535,23906.01502,202378.8941,0,15.6
+86536,23956.98914,200737.5612,0,15.6
+86537,23942.81842,200372.2692,0,15.6
+86538,24035.07925,198916.3593,0,15.6
+86539,24036.87228,198301.0075,0,15.6
+86540,354094.1714,167708.6003,0,15.6
+86541,43740.23333,167037.4675,0,15.6
+86542,63254.70245,251772.6752,0,15.6
+86543,158508.6936,175976.7643,0,15.6
+86544,109861.1976,188457.1217,0,15.6
+86545,117147.4429,196784.9341,0,15.6
+86546,118057.0245,190696.1972,0,15.6
+86547,118539.9534,189784.2928,0,15.6
+86548,118620.4176,189229.4906,0,15.6
+86549,119516.831,187893.8385,0,15.6
+86550,119491.5927,186919.6722,0,15.6
+86551,120117.4404,27914.4769,0,15.6
+86552,120797.1228,27798.6064,0,15.6
+86553,96267.19981,27708.95379,0,15.6
+86554,436452.4695,27522.00026,0,15.6
+86555,97125.90256,605647.0318,0,15.6
+86556,180032.8967,33567.85478,0,15.6
+86557,115301.3502,121303.7629,0,15.6
+86558,111141.0843,234917.9672,0,15.6
+86559,131054.0142,168145.9109,0,15.6
+86560,123777.8224,176159.3867,0,15.6
+86561,124510.1216,175377.9304,0,15.6
+86562,125436.6484,174050.716,0,15.6
+86563,125610.989,172766.1299,0,15.6
+86564,125977.322,172070.9973,1098437.486,15.6
+86565,126688.4707,170689.6218,0,15.6
+86566,126993.3542,169231.151,0,15.6
+86567,127289.0239,168076.1954,0,15.6
+86568,128135.8942,167234.8205,0,15.6
+86569,128254.2303,165505.4717,0,15.6
+86570,25238.14211,164734.5771,0,15.6
+86571,25287.81835,163379.7441,0,15.6
+86572,25260.56977,136892.0684,0,15.6
+86573,25335.88729,135981.9334,0,15.6
+86574,25374.61291,134501.9768,0,15.6
+86575,25335.88232,224071.1752,0,15.6
+86576,432483.8905,142538.6772,0,15.6
+86577,25388.641,139931.837,0,15.6
+86578,93095.83045,164627.3331,0,15.6
+86579,174854.7537,150875.829,0,15.6
+86580,126368.1099,149842.8814,0,15.6
+86581,134439.2011,154746.9848,0,15.6
+86582,135451.2939,158171.8004,0,15.6
+86583,135263.649,161696.9791,0,15.6
+86584,136192.3798,164603.6401,0,15.6
+86585,136768.4991,25910.18378,0,15.6
+86586,111231.1008,26190.39215,0,15.6
+86587,111944.3826,26593.80044,0,15.6
+86588,188054.7082,26860.94257,0,15.6
+86589,122967.9934,27183.0664,0,15.6
+86590,136952.255,626519.2288,0,15.6
+86591,142875.6793,46910.62462,0,15.6
+86592,479891.8111,114242.1342,0,15.6
+86593,140783.0287,256161.9591,0,15.6
+86594,141788.7136,184170.4028,0,15.6
+86595,142016.8522,197080.9708,0,15.6
+86596,142847.9066,200525.886,0,15.6
+86597,143310.7561,203100.3203,0,15.6
+86598,143712.4519,206123.4357,0,15.6
+86599,144563.0511,208734.6787,1058189.568,15.6
+86600,144688.9547,211582.983,0,15.6
+86601,145880.5994,214601.4096,0,15.6
+86602,145751.2102,217445.6338,0,15.6
+86603,146701.7133,219878.1883,0,15.6
+86604,147230.0338,223107.4592,0,15.6
+86605,147721.8334,193799.0576,0,15.6
+86606,26848.46506,195484.321,0,15.6
+86607,26906.10705,293725.9992,0,15.6
+86608,27025.52193,217426.5865,0,15.6
+86609,26968.11518,231100.5288,0,15.6
+86610,27112.95503,244637.6573,0,15.6
+86611,510996.7613,242754.7317,0,15.6
+86612,32417.22845,245230.4137,0,15.6
+86613,99799.38749,248312.6614,0,15.6
+86614,203639.4652,250962.5382,0,15.6
+86615,145629.4726,254360.3057,0,15.6
+86616,154855.7794,256095.9129,0,15.6
+86617,155217.7278,261512.7725,0,15.6
+86618,128522.4857,263860.1804,0,15.6
+86619,128940.6791,266869.9838,0,15.6
+86620,207847.5094,37184.91855,0,15.6
+86621,144628.3934,37511.94915,0,15.6
+86622,152744.3088,37801.4656,0,15.6
+86623,162355.7105,870600.8519,0,15.6
+86624,158418.4409,169076.3759,0,15.6
+86625,159103.073,137280.6901,0,15.6
+86626,159876.478,384310.5298,0,15.6
+86627,160253.0877,273140.0634,0,15.6
+86628,160563.5844,290330.141,0,15.6
+86629,161045.5752,294136.7456,0,15.6
+86630,501389.9597,295956.0914,0,15.6
+86631,161973.2768,299263.8211,0,15.6
+86632,162639.8189,301846.7473,0,15.6
+86633,163526.5778,304588.1461,0,15.6
+86634,163320.2353,307207.5636,1021111.829,15.6
+86635,164533.9224,309618.3313,0,15.6
+86636,164644.9373,312374.8762,0,15.6
+86637,165188.0955,273161.4068,0,15.6
+86638,165623.9919,275153.5736,0,15.6
+86639,166585.9233,392174.7953,0,15.6
+86640,166388.961,310451.9343,0,17.8
+86641,102023.5035,1422616.95,0,17.8
+86642,905830.2758,1358699.99,0,17.8
+86643,880392.7173,272017.5179,0,17.8
+86644,488896.8196,705828.1345,0,17.8
+86645,568909.0542,726846.188,0,17.8
+86646,463012.6441,658213.6467,0,17.8
+86647,411861.3806,596794.1705,0,17.8
+86648,437368.485,625200.7905,0,17.8
+86649,422940.4746,620863.2507,0,17.8
+86650,366247.7209,616859.7426,0,17.8
+86651,365347.2215,616480.8773,0,17.8
+86652,454923.6046,617294.9943,0,17.8
+86653,438467.5175,117176.9542,0,17.8
+86654,418417.4046,117196.5073,0,17.8
+86655,418617.6186,1201382.787,0,17.8
+86656,419663.2993,606822.5147,0,17.8
+86657,415242.8752,582489.9839,0,17.8
+86658,417065.9798,699974.4067,0,17.8
+86659,415707.6475,602532.1401,0,17.8
+86660,415514.3663,617674.7606,0,17.8
+86661,412612.1905,620244.7571,0,17.8
+86662,412834.526,614786.3483,0,17.8
+86663,412587.8832,614535.3772,0,17.8
+86664,411941.6637,613916.4737,0,17.8
+86665,412527.5293,614620.3853,0,17.8
+86666,411435.1733,614762.9074,0,17.8
+86667,411683.5216,613593.4116,0,17.8
+86668,412083.2778,615283.1722,987484.9189,17.8
+86669,750103.7734,523365.4183,0,17.8
+86670,411972.1882,657171.0006,0,17.8
+86671,410668.3821,586763.3725,0,17.8
+86672,52309.65076,584741.4929,0,17.8
+86673,52255.23077,592963.7053,0,17.8
+86674,865653.2311,667124.6217,0,17.8
+86675,486902.0827,602327.3195,0,17.8
+86676,376801.8945,609930.2197,0,17.8
+86677,404999.4247,621533.2815,0,17.8
+86678,431349.6594,617168.0064,0,17.8
+86679,412186.0842,616844.2289,0,17.8
+86680,412184.2247,617546.6885,0,17.8
+86681,411707.7992,617772.7584,0,17.8
+86682,358782.5141,618895.9063,0,17.8
+86683,358793.3911,618530.4353,0,17.8
+86684,448804.8855,619019.0964,0,17.8
+86685,430509.7735,116669.5497,0,17.8
+86686,413914.4155,116526.1695,0,17.8
+86687,412406.87,1200778.619,0,17.8
+86688,412267.8898,623598.9324,0,17.8
+86689,411481.2767,579549.2128,0,17.8
+86690,411840.9767,706638.9399,0,17.8
+86691,411434.9927,624476.9375,0,17.8
+86692,411084.4618,618353.4041,0,17.8
+86693,411314.3968,633215.4757,0,17.8
+86694,414795.7528,626949.0647,0,17.8
+86695,412177.7481,627011.2823,0,17.8
+86696,413178.7647,627779.7325,0,17.8
+86697,413670.8861,626400.8392,0,17.8
+86698,413281.2296,626554.6369,0,17.8
+86699,414103.0132,627531.6981,0,17.8
+86700,413148.8841,536883.0475,0,20
+86701,2287168.877,2605523.351,226188.6063,20
+86702,1101663.418,2361654.038,1029890.694,20
+86703,1023644.068,1289255.354,56609.22247,20
+86704,495260.7053,802270.2514,84627.83935,20
+86705,910825.6152,1105229.644,93196.49351,20
+86706,766526.5168,1303124.577,80698.39295,20
+86707,769981.4544,1076343.58,82132.7061,20
+86708,879313.9742,1114081.514,81870.34177,20
+86709,869219.6929,1106454.253,81322.68156,20
+86710,842324.6274,1104241.987,81067.16786,20
+86711,1125444.368,1098523.639,80611.89162,20
+86712,826454.9767,1093072.943,80195.60885,20
+86713,826355.8855,1088533.062,79851.83289,20
+86714,715302.2738,1085244.623,79516.59126,20
+86715,855712.4236,1080161.703,79093.28884,20
+86716,822972.2297,1075998.862,78765.52709,20
+86717,820893.0089,195037.7428,78453.54357,20
+86718,816842.2046,1291154.845,78061.03137,20
+86719,818157.3759,1214073.743,77768.64369,20
+86720,815811.2084,948119.755,77465.23526,20
+86721,812334.0292,1096585.011,77177.78471,20
+86722,813320.4521,1058614.438,76822.68656,20
+86723,810719.7866,1053732.315,76503.32697,20
+86724,808946.185,1051559.613,76243.01163,20
+86725,807699.0148,1046223.97,75937.19006,20
+86726,805177.8729,1045651.492,74725.96538,20
+86727,805926.8604,1041415.595,74471.33819,20
+86728,803378.5125,1038814.989,74153.13994,20
+86729,802379.0881,1036948.06,73881.97831,20
+86730,801546.0473,1034145.147,73547.00933,20
+86731,777442.8013,892100.1354,0,20
+86732,775643.1387,1093613.957,0,20
+86733,775761.0529,1035832.25,0,20
+86734,831200.0703,1018604.48,0,20
+86735,123195.7088,977079.0875,0,20
+86736,942259.5857,977892.7017,957102.4339,20
+86737,725945.9962,1065744.921,51330.79088,20
+86738,817065.4566,1016186.557,68698.78046,20
+86739,1160973.737,1007981.635,77173.96657,20
+86740,769738.1235,1009516.409,71094.88336,20
+86741,798237.1994,1008157.967,71149.88313,20
+86742,790118.7062,1004557.475,70930.23255,20
+86743,789287.5312,1001197.774,70668.20716,20
+86744,787207.3464,1000432.181,70396.70875,20
+86745,682252.8382,997756.9676,70196.68573,20
+86746,814337.1873,994157.485,69944.02986,20
+86747,788647.2042,993803.3206,69688.86201,20
+86748,781177.7043,174933.4879,69451.30434,20
+86749,784566.8439,1258465.962,69330.5674,20
+86750,784562.347,969357.7518,68974.87742,20
+86751,782191.7319,953298.1617,68881.06753,20
+86752,782491.3958,997916.849,68645.83426,20
+86753,777618.0109,979150.5354,68429.26688,20
+86754,776522.7434,979213.1439,68179.13,20
+86755,777275.7525,976682.9223,68101.03813,20
+86756,773722.1417,973044.6924,67994.26945,20
+86757,774038.018,973718.0697,69148.65772,20
+86758,772799.2627,969328.0883,68030.75473,20
+86759,770878.5546,967444.7844,68135.89372,20
+86760,770354.8724,966585.7552,68077.91408,21
+86761,2312769.851,2996336.727,1741467.305,21
+86762,2074981.502,2315188.862,539307.7313,21
+86763,624324.0408,787772.7817,76445.60011,21
+86764,643580.2947,1098664.752,282127.6435,21
+86765,874594.8109,1329690.807,340954.4988,21
+86766,964914.6675,1160544.554,281812.891,21
+86767,813461.8432,1172216.014,287893.7473,21
+86768,848295.614,1167667.081,289056.166,21
+86769,846780.1473,1167587.758,291926.5917,21
+86770,841553.0383,1161348.2,293340.1837,21
+86771,839209.2619,1161839.565,295173.8885,21
+86772,836340.4536,1156116.521,296324.833,21
+86773,833320.2692,1156270.453,297195.7597,21
+86774,830469.4378,1153010.778,299571.7476,21
+86775,828108.3489,1150658.02,300085.3161,21
+86776,826465.6029,1148472.12,302041.2318,21
+86777,823312.4291,1146727.922,303458.4927,21
+86778,821793.0757,1143858.288,304388.2253,21
+86779,818722.4787,1141351.267,305684.9993,21
+86780,817819.7868,1141622.615,307359.2491,21
+86781,813559.9123,1137127.594,308465.2058,21
+86782,815283.5168,1137533.048,309589.3463,21
+86783,808785.9838,1133824.72,311149.0024,21
+86784,808943.8169,1133647.625,312286.1636,21
+86785,807442.2417,1131134.315,312982.7607,21
+86786,806004.1425,1129932.344,314646.7022,21
+86787,802695.6447,1128388.466,315771.5921,21
+86788,802518.7451,1126186.633,316933.6341,21
+86789,800431.8859,1125095.442,318200.4246,21
+86790,799584.5854,1124356.106,319205.8345,21
+86791,796904.2417,1122289.942,320171.6217,21
+86792,795268.7286,1120676.903,321634.3158,21
+86793,795299.5804,1120650.693,321913.9299,21
+86794,793156.1583,1116558.937,324247.4231,21
+86795,791407.0052,1119476.063,324010.0932,21
+86796,791443.3112,1114053.139,325184.2617,21
+86797,788844.0944,1116276.451,327386.7816,21
+86798,787737.604,1113633.805,326901.4785,21
+86799,786892.7138,1112811.112,328831.6305,21
+86800,784677.5621,1112066.876,328982.2814,21
+86801,785048.6979,1109104.912,330675.2165,21
+86802,782668.346,1110413.906,331586.3041,21
+86803,782320.2903,1108904.47,332116.5385,21
+86804,780015.4292,1106238.462,332485.7526,21
+86805,780373.8726,1107368.063,334712.1559,21
+86806,777531.4556,1105017.235,334706.2372,21
+86807,778774.5871,1105278.764,335820.0062,21
+86808,775014.2055,1103217.137,336322.2822,21
+86809,776392.803,1102790.405,337788.3378,21
+86810,773352.8504,1101351.995,338040.2829,21
+86811,773743.8874,1101936.576,339261.3398,21
+86812,773092.3609,1098689.254,339413.803,21
+86813,771030.3609,1100264.054,341052.8552,21
+86814,770302.7995,1098447.075,340988.3221,21
+86815,770224.9205,1097504.814,342196.4432,21
+86816,759839.4074,1096245.997,342863.8499,21
+86817,756397.2508,1096436.962,343239.7508,21
+86818,754100.8471,1095315.581,344640.9,21
+86819,753239.507,1094132.126,345216.4024,21
+86820,750955.5426,1093962.659,345010.0681,21
+86821,1008715.273,2474079.368,331000.641,21
+86822,1002099.46,2468146.542,328135.4986,21
+86823,999743.127,2466711.58,329393.0732,21
+86824,997233.2062,2466574.074,329289.8361,21
+86825,993999.2739,2463751.581,329335.3583,21
+86826,992674.3408,2464491.18,330075.8268,21
+86827,990360.2164,2461472.172,330674.9581,21
+86828,987017.1446,2462082.457,330198.6329,21
+86829,985434.1276,2460132.654,331496.2141,21
+86830,983473.6456,2461018.307,330385.2881,21
+86831,980486.6515,2491903.218,326879.8068,21
+86832,979053.7231,2473090.062,325621.107,21
+86833,976517.1296,2476367.704,326653.9362,21
+86834,974929.3922,2477729.552,326095.7677,21
+86835,972818.9614,2476218.1,326457.4422,21
+86836,969969.8353,2474634.586,327123.1134,21
+86837,968156.6853,2476782.325,326461.2525,21
+86838,967388.0694,2473109.222,326906.4109,21
+86839,963190.5545,2475708.017,327136.4638,21
+86840,963398.3117,2472599.726,327042.4028,21
+86841,959760.3613,2473950.809,327556.6282,21
+86842,958211.0694,2472690.698,327949.6478,21
+86843,956986.0408,2471227.992,327282.8845,21
+86844,955072.6643,2472300.27,327968.408,21
+86845,951648.9353,2471238.173,328013.7681,21
+86846,951303.2995,2471747.827,328054.7954,21
+86847,950212.6295,2469133.793,328472.9552,21
+86848,946813.9309,2470240.607,328051.2251,21
+86849,946292.7725,2469110.359,328529.7933,21
+86850,943337.8476,2468896.749,328177.5551,21
+86851,943373.2173,2468896.116,328808.2029,21
+86852,939367.9518,2466192.268,327765.2221,21
+86853,940034.6879,2467314.578,327800.1903,21
+86854,935692.7305,2466343.369,327235.0564,21
+86855,934792.6639,2465403.378,326815.6855,21
+86856,933061.5974,2464842.805,326527.3746,21
+86857,931026.5035,2465003.758,326202.7289,21
+86858,929041.2885,2464860.015,326162.2724,21
+86859,926731.1195,2462341.928,324952.658,21
+86860,926293.0299,2464663.55,325184.9869,21
+86861,922764.359,2461702.423,324352.0956,21
+86862,920911.0582,2461759.869,324427.0928,21
+86863,920218.5608,2462351.26,323906.8528,21
+86864,917895.8709,2461336.373,323133.9298,21
+86865,915480.7858,2459446.386,323215.5024,21
+86866,913980.291,2461541.171,322713.8925,21
+86867,911794.8916,2460067.877,322026.1725,21
+86868,911338.0954,2459783.196,321606.3236,21
+86869,907783.5267,2458823.677,321325.2169,21
+86870,906137.6753,2458215.949,320732.2672,21
+86871,905156.7454,2459593.605,320381.4184,21
+86872,902789.8049,2457154.004,320195.3593,21
+86873,901072.1606,2457780.789,319216.2493,21
+86874,899064.3975,2457977.732,318945.9333,21
+86875,897010.7057,2456379.447,318638.44,21
+86876,896670.2067,2457032.093,317865.1974,21
+86877,892875.1613,2456219.279,317637.9899,21
+86878,892542.7347,2454894.128,317146.7634,21
+86879,890213.5633,2457252.986,316458.7952,21
+86880,888332.3793,2453772.26,315918.7501,21
+86881,655999.2526,2216693.833,196317.8432,21
+86882,634272.6854,2193560.729,188360.6118,21
+86883,630523.6006,2189048.78,186301.5752,21
+86884,622458.7535,2183108.768,183738.0742,21
+86885,618550.3997,2178998.366,181828.0114,21
+86886,612468.2362,2173279.49,179961.2631,21
+86887,606541.3449,2167650.662,178062.3665,21
+86888,602327.6761,2165388.619,175946.5851,21
+86889,596898.905,2135768.026,174680.8795,21
+86890,592519.9446,2129070.684,172157.3092,21
+86891,586851.6155,2120976.426,171475.8168,21
+86892,582566.0478,2115130.695,168820.606,21
+86893,577842.0836,2108513.289,167585.7446,21
+86894,573676.615,2102220.412,165953.5876,21
+86895,568832.5016,2096480.782,164104.3104,21
+86896,563919.0369,2090287.774,162641.9697,21
+86897,559471.3416,2083597.71,160892.1059,21
+86898,556212.9816,2076928.82,159729.2346,21
+86899,552969.1741,2071665.064,157756.5151,21
+86900,549127.0466,2063932.886,156306.6055,21
+86901,546513.3126,2060190.093,154719.982,21
+86902,542257.0942,2055478.03,153192.0299,21
+86903,540153.1807,2049683.318,151936.9624,21
+86904,535784.2617,2044914.443,149768.4775,21
+86905,532443.8026,2039554.745,148809.4454,21
+86906,528960.9353,2033074.886,147324.641,21
+86907,526191.2584,2028343.05,146100.2669,21
+86908,521813.5712,2021641.082,144560.5142,21
+86909,519477.7649,2017169.516,142867.6389,21
+86910,515603.1558,2011448.677,141753.0563,21
+86911,512243.585,2003589.523,139804.6903,21
+86912,509500.7092,1998743.834,138053.5176,21
+86913,506079.6196,1992973.67,135959.1048,21
+86914,502425.4082,1986706.028,133856.4559,21
+86915,499398.2658,1983711.032,130441.5875,21
+86916,496087.3673,1975622.62,127964.6681,21
+86917,492637.4525,1971388.408,126149.2782,21
+86918,489581.651,1965845.927,124447.5909,21
+86919,486243.8891,1961685.462,121611.1135,21
+86920,483086.865,1954754.555,120301.8713,21
+86921,480104.2338,1949980.698,118017.2024,21
+86922,476568.1866,1945958.098,116259.2153,21
+86923,473298.3256,1939079.746,114491.4718,21
+86924,469789.8583,1934386.27,112663.5677,21
+86925,466900.5568,1928400.858,110167.767,21
+86926,463193.6408,1924716.859,108284.639,21
+86927,460245.0239,1919175.711,106805.4781,21
+86928,456505.8053,1913514.655,105047.9598,21
+86929,454219.8359,1909077.205,103610.3577,21
+86930,450318.0727,1901517.372,101964.9507,21
+86931,447006.8227,1898579.514,101241.9911,21
+86932,443885.8032,1892195.442,100059.3301,21
+86933,440343.9114,1886351.256,99413.69183,21
+86934,436928.9914,1881781.717,98442.21715,21
+86935,433720.5946,1875299.288,97529.14717,21
+86936,430194.3151,1871073.884,96628.83322,21
+86937,427581.2862,1864735.423,95832.71416,21
+86938,424382.7369,1858747.19,94719.6588,21
+86939,421248.3857,1854664.125,94202.49799,21
+86940,418553.3778,1848784.037,36192.7641,21
+86941,415671.894,1841659.201,35162.74821,21
+86942,413662.3709,1835892.118,34495.75646,21
+86943,411692.7569,1829947.619,33394.6897,21
+86944,409230.2995,1823087.919,33197.60735,21
+86945,407261.6176,1816706.76,32011.15325,21
+86946,404894.4339,1811734.353,31613.56174,21
+86947,402755.2082,1804427.586,30734.0587,21
+86948,401351.9124,1798265.258,30232.2068,21
+86949,398468.042,1793273.239,29484.77358,21
+86950,396598.4219,1786004.394,28553.80134,21
+86951,393931.5717,1780960.42,28140.8036,21
+86952,392295.0583,1773595.328,27435.22817,21
+86953,389775.8767,1769025.245,26901.52526,21
+86954,388185.7123,1761527.173,26227.01139,21
+86955,385580.2111,1756004.725,25727.47205,21
+86956,383872.759,2041713.39,25024.03033,21
+86957,381653.5449,1743728.636,24469.71651,21
+86958,379137.1557,1737864.469,23821.03539,21
+86959,377100.7974,1731984.049,23089.3251,21
+86960,375326.2411,1726403.853,22831.16929,21
+86961,373244.7341,1719483.263,22272.35277,21
+86962,371472.9811,1713396.584,22116.44169,21
+86963,369433.1271,1708363.062,21766.16411,21
+86964,367378.9595,1700484.856,21367.15795,21
+86965,365560.3051,1696326.078,21024.93402,21
+86966,364397.105,1689286.265,20889.97792,21
+86967,361365.8078,1682392.666,20276.55711,21
+86968,359866.8108,1678118.127,20138.92555,21
+86969,357679.7916,1670523.483,19450.88152,21
+86970,355788.8179,1665296.711,19052.03898,21
+86971,354371.8816,1658674.915,18671.14451,21
+86972,351723.5239,1653542.614,18566.05018,21
+86973,350604.6212,1647505.464,18065.31099,21
+86974,348792.6975,1641864.333,17957.11964,21
+86975,347103.6913,1635817.88,17706.73216,21
+86976,344880.8786,1630496.348,17258.67059,21
+86977,343795.9332,1624743.789,17282.04711,21
+86978,342062.5297,1619107.345,16771.02296,21
+86979,341082.4755,1614581.525,17012.18901,21
+86980,339365.9822,1611678.216,16425.35541,21
+86981,337608.5752,1606687.408,16522.44971,21
+86982,335837.1262,1601400.22,16104.04898,21
+86983,334392.7109,1596457.956,16082.19186,21
+86984,333107.1947,1591669.658,15859.29347,21
+86985,330649.9306,1585875.877,15613.20421,21
+86986,329556.8482,1581760.658,15430.44267,21
+86987,327339.1972,1576454.35,15355.30124,21
+86988,326212.9581,1571049.775,15100.45894,21
+86989,324262.238,1566214.759,14787.82995,21
+86990,322672.9792,1561759.428,14866.94697,21
+86991,321372.2186,1555855.507,14458.96579,21
+86992,319379.4069,1551423.617,14363.83606,21
+86993,319344.2503,1546348.094,14249.88055,21
+86994,317526.338,1539100.776,14006.09044,21
+86995,317168.4553,1534733.089,13769.7173,21
+86996,315835.0875,1529737.754,13696.34311,21
+86997,315138.1553,1524800.405,13409.14755,21
+86998,314248.6047,1519530.962,13323.70948,21
+86999,313366.8808,1514605.272,13073.69156,21
+87000,312528.3399,1510183.141,12983.95444,21
+87001,310179.0781,1506208.494,12214.95326,21
+87002,309835.0862,1499566.476,12066.33778,21
+87003,307987.347,1492618.5,11819.59857,21
+87004,313870.2037,1485516.768,11697.51173,21
+87005,310629.2231,1479171.799,11352.06329,21
+87006,310085.2523,1473401.726,11451.60609,21
+87007,309840.5705,1465422.477,10993.4269,21
+87008,308872.2954,1458619.957,10954.17411,21
+87009,308204.5324,1451761.866,10656.95082,21
+87010,307958.1751,1444608.082,10555.5516,21
+87011,307298.9101,1437230.52,10431.32944,21
+87012,306439.616,1431174.565,10080.11072,21
+87013,305643.8609,1420685.865,10041.88895,21
+87014,305019.2581,1415091.302,9533.712287,21
+87015,304879.0354,1406723.038,9229.18567,21
+87016,303763.3894,1400662.456,9151.765443,21
+87017,303061.4936,1392580.95,8859.708354,21
+87018,302906.782,1386045.035,8808.201306,21
+87019,301948.6637,1378901.594,8445.994714,21
+87020,301691.8447,1371936.445,8450.379096,21
+87021,300831.0728,1364448.771,8070.644731,21
+87022,300277.2192,1358256.844,8062.326591,21
+87023,299722.852,1350721.916,7721.622432,21
+87024,299043.4661,1344923.032,7672.014585,21
+87025,298625.5653,1337135.127,7342.189774,21
+87026,297520.9207,1330668.866,7306.386792,21
+87027,297704.8273,1324835.97,6963.557835,21
+87028,296802.3396,1316767.824,6922.903382,21
+87029,296502.3748,1311035.065,6711.712569,21
+87030,296278.8965,1303791.018,6554.429488,21
+87031,295222.5901,1297253.128,6180.231134,21
+87032,295021.366,1290967.926,5993.967996,21
+87033,294264.6829,1283910.671,5630.903061,21
+87034,294189.5013,1278328.265,5428.273956,21
+87035,293686.1014,1270814.284,4940.375028,21
+87036,292985.1344,1264599.406,4856.847693,21
+87037,292923.3463,1258639.079,4830.30315,21
+87038,292736.7328,1251542.14,4486.572205,21
+87039,291756.4951,1245615.261,4295.078887,21
+87040,291644.4778,1239207.964,3904.184824,21
+87041,291162.6893,1232889.806,3723.748463,21
+87042,290858.4998,1226592.312,3483.912724,21
+87043,290309.131,1221854.723,2986.971225,21
+87044,290152.0702,1215600.406,2915.300112,21
+87045,289465.5449,1209005.759,2554.461172,21
+87046,289612.8256,1203118.751,2304.941174,21
+87047,289236.7453,1196976.204,1963.22731,21
+87048,288199.1023,1191275.696,1703.972585,21
+87049,288892.0794,1186274.925,1545.901636,21
+87050,287913.2241,1180699.016,1485.530874,21
+87051,288001.2031,1176575.059,1455.242095,21
+87052,287673.6734,1169048.005,1440.083228,21
+87053,286707.8629,1165086.249,1394.415433,21
+87054,286188.1892,1159291.249,1363.87491,21
+87055,285971.3591,1154349.101,1333.248055,21
+87056,286585.2695,1149283.405,1302.53357,21
+87057,285160.1563,1143797.926,1271.730096,21
+87058,285440.3836,1139530.125,1225.342786,21
+87059,284637.5191,1133608.183,1225.366617,21
+87060,284588.0792,1128757.948,1178.771182,21
+87061,279059.6468,1123040.667,1209.89659,21
+87062,277867.4149,1121905.982,1163.229397,21
+87063,278387.4624,1121020.966,1147.640366,21
+87064,277642.2245,1119915.621,1116.367978,21
+87065,278323.8492,1119364.538,1069.264464,21
+87066,277523.5664,1118158.008,1053.525009,21
+87067,277437.9459,1117372.37,1021.950705,21
+87068,276980.2458,1116569.586,1006.132544,21
+87069,276995.3298,1115523.067,958.4855947,21
+87070,276585.7188,1114891.78,926.5898142,21
+87071,276535.7614,1114006.411,910.6067246,21
+87072,276333.2804,1112899.762,878.5414039,21
+87073,275727.7729,1112314.931,846.3596473,21
+87074,276115.5186,1111924.768,814.0583436,21
+87075,275539.3295,1110633.901,797.8669765,21
+87076,275151.7344,1110479.123,765.3797562,21
+87077,274704.897,1109014.048,732.7640824,21
+87078,274561.837,1108920.707,700.0158484,21
+87079,274073.7065,1107942.281,683.5944306,21
+87080,274050.0463,1107068.444,634.1034818,21
+87081,273478.0225,1106528.114,634.1099439,21
+87082,273030.8221,1105538.979,584.2874709,21
+87083,273186.4669,1104892.385,567.606409,21
+87084,272496.9236,1104385.293,534.1179145,21
+87085,272000.1348,1103333.451,517.3134952,21
+87086,271367.84,1102722.466,466.6295863,21
+87087,271300.7905,1101827.837,449.6460268,21
+87088,270554.3014,1101105.514,432.6144701,21
+87089,270202.8781,1100463.356,381.2117345,21
+87090,269915.1821,1099466.401,381.2140762,21
+87091,269304.3468,1098637.951,346.6771107,21
+87092,269182.7125,1098343.674,311.9052561,21
+87093,268159.2874,1096672.881,311.9068244,21
+87094,267828.0892,1096796.699,276.8790583,21
+87095,267129.198,1095561.243,259.2619668,21
+87096,266648.6125,1094852.308,223.7995727,21
+87097,266142.93,1094084.311,223.8003804,21
+87098,265394.7393,1092938.097,188.0020497,21
+87099,265147.3229,1092628.975,169.9614359,21
+87100,264207.5879,1091969.152,151.8155095,21
+87101,264327.614,1091515.482,133.5536917,21
+87102,263139.6224,1090363.255,115.1627429,21
+87103,262733.4631,1089478.347,77.9176356,21
+87104,262006.4379,1088709.519,77.9177077,21
+87105,261570.9243,1087668.604,59.00545455,21
+87106,256284.3157,1086742.292,20.29110632,21
+87107,256130.5085,1085833.75,20.29111292,21
+87108,255018.1104,1084725.289,0,21
+87109,253701.6947,1083882.995,0,21
+87110,252131.9362,1082857.263,0,21
+87111,251514.9013,1081899.993,0,21
+87112,250168.881,1080585.718,0,21
+87113,248626.4087,1079548.023,0,21
+87114,248191.566,1078705.084,0,21
+87115,246710.8482,1077080.619,0,21
+87116,245137.9784,1076370.982,0,21
+87117,244755.6909,1075018.695,0,21
+87118,243683.9957,1073625.728,0,21
+87119,242126.832,1071976.489,0,21
+87120,241366.2834,1069944.059,0,21
+87121,262923.8474,1091557.662,0,21
+87122,262673.9355,1090299.864,0,21
+87123,262011.7537,1088134.093,0,21
+87124,261929.9508,1086633.138,432.6443146,21
+87125,260981.0261,1084490.376,115.1641626,21
+87126,260382.7658,1083177.489,188.0067645,21
+87127,260021.5158,1080845.253,169.965728,21
+87128,259372.8282,1079351.671,151.8193005,21
+87129,258642.0489,1077660.859,151.8196693,21
+87130,258636.9637,1075596.854,133.5573138,21
+87131,257537.4734,1073982.546,115.1658225,21
+87132,257646.9195,1072012.219,115.1660345,21
+87133,256723.4358,1070492.838,77.91981601,21
+87134,256144.2007,1068474.08,96.6281746,21
+87135,255899.9712,1066362.212,59.0071255,21
+87136,255132.0334,1064683.645,59.00718106,21
+87137,255092.2997,1063134.357,39.83387509,21
+87138,254050.0268,1060866.617,20.29169487,21
+87139,253892.842,1058925.423,20.29170141,21
+87140,252983.9866,1056896.573,10.30328419,21
+87141,253039.8618,1055829.696,0,21
+87142,252155.6862,1052973.4,0,21
+87143,251396.3408,1051561.586,0,21
+87144,251208.0641,1049519.664,0,21
+87145,250366.8088,1047680.699,0,21
+87146,249920.6274,1045548.245,0,21
+87147,248619.5946,1043394.05,0,21
+87148,248163.1298,1042069.842,0,21
+87149,247169.2901,1039772.481,0,21
+87150,246699.9342,1038137.19,0,21
+87151,245722.4052,1035525.112,0,21
+87152,245193.9446,1034343.088,0,21
+87153,244379.9556,1032260.232,0,21
+87154,243931.7176,1030134.224,0,21
+87155,242888.1899,1028374.126,0,21
+87156,242713.1461,1026541.819,0,21
+87157,241844.6438,1024347.224,0,21
+87158,241103.8332,1022797.914,0,21
+87159,240476.1596,1020110.763,0,21
+87160,240056.3083,1019145.274,0,21
+87161,239074.1093,1016303.306,0,21
+87162,238793.8655,1015042.64,0,21
+87163,238298.1383,1012997.998,0,21
+87164,237353.4703,1008067.587,0,21
+87165,236922.1776,1005943.303,0,21
+87166,236306.9101,1003922.543,0,21
+87167,236064.4554,1001107.189,0,21
+87168,235218.8266,998697.4117,0,21
+87169,234987.9317,996893.4152,0,21
+87170,234116.5984,993916.9649,0,21
+87171,233914.22,992287.8535,0,21
+87172,233473.0924,989315.2048,0,21
+87173,232737.6961,987306.49,0,21
+87174,232486.1308,985544.2883,0,21
+87175,232046.3234,982429.7379,0,21
+87176,231713.5834,980710.1885,0,21
+87177,231053.7482,978366.3995,0,21
+87178,230753.965,975890.7554,0,21
+87179,230331.7937,974298.8252,0,21
+87180,230049.0104,971027.0027,0,21
+87181,206382.8202,944237.3461,0,21
+87182,205607.8727,942766.9129,0,21
+87183,205014.6022,941434.499,0,21
+87184,204664.6461,941458.0899,0,21
+87185,204191.1337,939328.6887,0,21
+87186,203508.2405,938852.3035,0,21
+87187,203567.3245,937507.4857,0,21
+87188,202628.0712,936689.3453,0,21
+87189,202508.4458,935346.8394,0,21
+87190,202027.889,934505.8993,0,21
+87191,201656.4528,933505.9001,0,21
+87192,201152.3811,932438.4092,0,21
+87193,200589.7629,931240.0596,0,21
+87194,200680.9528,930692.9395,0,21
+87195,199880.6763,929239.3994,0,21
+87196,199376.8755,928178.0145,0,21
+87197,199487.3826,927777.5138,0,21
+87198,198666.0203,926067.7059,0,21
+87199,198532.8845,925931.1286,0,21
+87200,198123.6589,924368.1923,0,21
+87201,197536.1116,923683.7409,0,21
+87202,197341.5289,922738.307,0,21
+87203,196838.2736,921885.1656,0,21
+87204,196523.0975,921159.3444,0,21
+87205,195968.8818,919962.1202,0,21
+87206,195710.5784,919238.2803,0,21
+87207,195482.461,918683.9966,0,21
+87208,194629.2392,917320.4737,0,21
+87209,194316.6423,917008.2555,0,21
+87210,194134.3466,916037.3795,0,21
+87211,193434.4432,915188.7707,0,21
+87212,193325.4084,914781.4506,0,21
+87213,192711.8423,913895.4987,0,21
+87214,192442.8177,913285.2994,0,21
+87215,191865.3003,913103.3568,0,21
+87216,191788.7588,911824.0241,0,21
+87217,190733.3727,912605.5237,0,21
+87218,190832.5796,912489.8825,0,21
+87219,190274.3933,911374.2271,0,21
+87220,189556.8419,911241.3871,0,21
+87221,189375.9555,910671.8631,0,21
+87222,188818.5771,909844.9463,0,21
+87223,188354.4547,909662.6031,0,21
+87224,187709.8704,909107.9443,0,21
+87225,187395.9642,908375.6748,0,21
+87226,186669.3389,907916.3306,0,21
+87227,186276.9932,906179.6705,0,21
+87228,185602.3173,905805.9453,0,21
+87229,185234.741,905149.651,0,21
+87230,184408.9168,904443.2565,0,21
+87231,183975.7091,903967.3856,0,21
+87232,183380.1596,903570.3143,0,21
+87233,182779.1995,902624.0776,0,21
+87234,182269.1334,902476.2896,0,21
+87235,181243.6966,901589.0094,0,21
+87236,181106.3124,900861.4641,0,21
+87237,180304.5403,900817.7697,0,21
+87238,179698.4367,900013.3189,0,21
+87239,178912.3689,899115.9838,0,21
+87240,178310.1311,899224.4755,0,21
+87241,183224.1697,903543.7835,0,21
+87242,182596.1658,904508.3458,0,21
+87243,182788.6482,904814.8871,0,21
+87244,182052.406,904845.0608,0,21
+87245,182206.3253,905826.6199,0,21
+87246,181649.6178,905801.5248,0,21
+87247,181289.1045,906193.5964,0,21
+87248,181239.1136,906777.6393,0,21
+87249,180668.8136,907102.1522,0,21
+87250,180530.1201,907025.6818,0,21
+87251,180161.1613,907325.705,0,21
+87252,179615.7037,908229.6185,0,21
+87253,179525.6138,908254.8462,0,21
+87254,179272.9947,908486.6048,0,21
+87255,179028.1843,908868.5962,0,21
+87256,178617.5728,909427.7052,0,21
+87257,178221.9091,909260.2457,0,21
+87258,178008.1642,909750.4114,0,21
+87259,177886.761,910151.58,0,21
+87260,177389.2485,910266.3176,0,21
+87261,177367.3012,910454.4079,0,21
+87262,176709.1525,911064.0613,0,21
+87263,176978.6844,911106.3272,0,21
+87264,176246.1519,911398.8706,0,21
+87265,176405.1787,911839.492,0,21
+87266,175653.486,911743.2216,0,21
+87267,176015.1784,912174.2761,0,21
+87268,175444.9473,912654.862,0,21
+87269,175263.1291,912970.0649,0,21
+87270,175150.3808,912618.2817,0,21
+87271,175006.0618,913567.7351,0,21
+87272,175041.8024,913471.051,0,21
+87273,174923.6118,914363.2579,0,21
+87274,175899.576,914195.2567,0,21
+87275,176619.6727,914798.326,0,21
+87276,177457.5164,915534.5277,0,21
+87277,177852.7145,915381.9841,0,21
+87278,179110.5539,916245.508,0,21
+87279,179578.726,916301.1581,0,21
+87280,180498.0693,916775.35,0,21
+87281,181557.4059,917455.5135,0,21
+87282,182167.9975,917559.0126,0,21
+87283,183216.7721,918410.8966,0,21
+87284,184060.9994,918458.4686,0,21
+87285,184856.1389,918620.2635,0,21
+87286,185912.3061,918316.316,0,21
+87287,186857.4422,918453.7338,0,21
+87288,187592.0878,918433.5349,0,21
+87289,188688.1269,918243.7104,0,21
+87290,189474.3833,918280.7437,0,21
+87291,190406.2834,918227.7275,0,21
+87292,191694.8281,918011.5485,0,21
+87293,192243.279,917932.4042,0,21
+87294,193436.446,918337.0948,0,21
+87295,194240.0131,917925.6725,0,21
+87296,195323.4826,917789.1649,0,21
+87297,196164.1867,917893.6892,0,21
+87298,197351.9557,917939.4788,0,21
+87299,198201.4905,917806.3941,0,21
+87300,199415.8635,917481.7316,0,21
+87301,194298.3724,912407.9478,0,21
+87302,194904.6193,911232.3185,0,21
+87303,195287.0627,911293.4494,0,21
+87304,195676.8733,910507.9323,0,21
+87305,196306.5479,910180.1424,0,21
+87306,196814.4063,909886.6137,0,21
+87307,197237.5833,909259.3947,0,21
+87308,197764.5285,909134.9602,0,21
+87309,198193.0809,908308.5137,0,21
+87310,198999.2798,908203.935,0,21
+87311,199160.2987,907777.6196,0,21
+87312,199911.775,907371.9381,0,21
+87313,200263.9083,906999.6012,0,21
+87314,200969.2157,906747.3248,0,21
+87315,201022.1303,906092.8582,0,21
+87316,201811.9652,905870.076,0,21
+87317,201970.9261,905762.4738,0,21
+87318,202792.4221,904783.1836,0,21
+87319,203026.9668,905022.336,0,21
+87320,203800.2988,904472.2391,0,21
+87321,204163.6761,904244.2764,0,21
+87322,204773.2037,903709.8752,0,21
+87323,205068.1013,903467.1836,0,21
+87324,205826.3374,903693.8965,0,21
+87325,206265.1294,902891.5294,0,21
+87326,206755.0844,903063.1416,0,21
+87327,207375.0189,902666.6498,0,21
+87328,207605.0504,902756.6564,0,21
+87329,208254.7515,902257.6831,0,21
+87330,208661.9313,902472.2765,0,21
+87331,209341.365,901912.7401,0,21
+87332,209885.0054,902095.2946,0,21
+87333,210587.0269,902127.1346,0,21
+87334,211282.1928,901803.7461,0,21
+87335,211805.3802,901983.8187,0,21
+87336,212537.9893,902112.4996,0,21
+87337,213205.1272,901849.325,0,21
+87338,213764.8193,902000.0284,0,21
+87339,214494.7411,901999.572,0,21
+87340,215166.3054,902092.9829,0,21
+87341,215694.2035,901951.6274,0,21
+87342,215900.6511,902552.1267,0,21
+87343,216122.3287,901851.0335,0,21
+87344,215973.5532,902368.1409,0,21
+87345,215985.2579,902421.995,0,21
+87346,216047.6061,902423.355,0,21
+87347,216098.3538,902674.8663,0,21
+87348,216131.4041,902895.3896,0,21
+87349,216048.3556,902587.5961,0,21
+87350,215984.2251,903377.1798,0,21
+87351,216391.5647,902676.1874,0,21
+87352,215829.0507,903842.0812,0,21
+87353,216427.1168,903272.5795,0,21
+87354,216039.314,903849.1052,0,21
+87355,216573.1659,903801.3676,0,21
+87356,216031.4195,904429.6914,0,21
+87357,216254.5114,903997.9244,0,21
+87358,216184.5037,904882.245,0,21
+87359,216166.6121,904687.6096,0,21
+87360,216290.8032,905242.0937,0,21
+87361,216810.4164,907890.8548,0,21
+87362,217647.4685,910676.9977,0,21
+87363,218659.6334,913822.2195,0,21
+87364,219459.2681,915964.3702,0,21
+87365,220465.8383,919429.9445,0,21
+87366,221699.7576,922297.4579,0,21
+87367,222153.2857,924869.8515,0,21
+87368,223280.7525,927864.6498,0,21
+87369,223820.3161,930772.0027,0,21
+87370,224963.0396,933609.1221,0,21
+87371,225549.4108,936397.0528,0,21
+87372,226722.6447,939785.8872,0,21
+87373,226997.8908,942162.8967,0,21
+87374,228339.956,945642.3554,0,21
+87375,228854.3489,947966.2164,0,21
+87376,229817.9876,951524.4019,0,21
+87377,230611.7404,954090.4428,0,21
+87378,231397.4811,957314.1115,0,21
+87379,232206.5815,960142.05,0,21
+87380,233315.1764,963100.7404,0,21
+87381,233803.2234,966339.9834,0,21
+87382,234757.6776,969534.7564,0,21
+87383,235578.0156,973108.2268,0,21
+87384,236479.8689,976189.29,0,21
+87385,237338.7482,979266.4391,0,21
+87386,237954.4065,982564.1235,0,21
+87387,238810.3601,985877.7419,0,21
+87388,239992.799,988648.6454,0,21
+87389,240398.6238,992757.3515,0,21
+87390,241615.2598,995597.2647,0,21
+87391,242164.8994,998503.7065,0,21
+87392,243372.3321,1002204.431,0,21
+87393,243817.0388,1004551.387,0,21
+87394,244987.7255,1008163.191,0,21
+87395,245838.0664,1011261.722,0,21
+87396,246788.7745,1013926.994,0,21
+87397,247459.7357,1017321.243,0,21
+87398,248569.8585,1020602.438,0,21
+87399,249390.7509,1023915.525,0,21
+87400,250202.8371,1027438.752,0,21
+87401,251168.071,1030015.496,0,21
+87402,252133.8281,1034899.782,0,21
+87403,252961.9679,1046142.988,0,21
+87404,253915.9508,1045955.898,0,21
+87405,254870.1119,1051571.416,0,21
+87406,255458.7264,1057543.156,0,21
+87407,256799.1043,1061503.001,0,21
+87408,257371.1476,1066490.113,0,21
+87409,258474.6533,1070207.984,0,21
+87410,259432.1993,1075076.716,0,21
+87411,260126.4863,1078602.576,0,21
+87412,261236.8797,1083500.68,0,21
+87413,262093.7765,1086849.647,0,21
+87414,262895.2742,1091769.904,0,21
+87415,264045.5418,1095364.776,0,21
+87416,264972.6602,1100097.221,0,21
+87417,265706.3514,1103945.188,0,21
+87418,266790.8041,1107706.083,0,21
+87419,267549.8283,1112337.951,0,21
+87420,268600.6056,1116172.162,0,21
+87421,296247.1596,1178063.43,0,21
+87422,298258.4201,1200219.701,0,21
+87423,299035.4968,1195201.694,0,21
+87424,299982.9485,1199776.997,0,21
+87425,300896.3595,1203284.799,0,21
+87426,301927.6809,1205789.505,0,21
+87427,302923.8492,1209026.458,0,21
+87428,303846.0384,1211809.758,0,21
+87429,304767.9658,1215007.849,0,21
+87430,306044.3693,1217444.509,0,21
+87431,306795.2489,1220733.921,0,21
+87432,307885.4868,1223185.154,0,21
+87433,309717.1088,1226465.208,0,21
+87434,309894.618,1228876.854,0,21
+87435,311413.7884,1231458.743,0,21
+87436,312158.7019,1234349.591,0,21
+87437,313281.3575,1237175.214,0,21
+87438,314214.217,1239711.48,0,21
+87439,314970.1647,1242155.992,0,21
+87440,315998.3564,1244627.797,0,21
+87441,316776.5052,1247697.45,0,21
+87442,318077.7311,1249456.992,0,21
+87443,318459.6106,1252632.372,0,21
+87444,319425.0049,1254972.579,0,21
+87445,320632.3253,1257139.537,0,21
+87446,321132.2362,1259981.795,0,21
+87447,322145.6671,1262355.435,0,21
+87448,322980.8858,1264355.139,0,21
+87449,323640.9182,1267464.826,0,21
+87450,324591.642,1269122.786,0,21
+87451,325306.9583,1271762.92,0,21
+87452,326113.7376,1273484.387,0,21
+87453,327046.6037,1275340.624,0,21
+87454,327475.1776,1277591.604,0,21
+87455,328990.1731,1279443.558,0,21
+87456,329437.2092,1280771.905,0,21
+87457,330533.2117,1283246.758,0,21
+87458,331065.4865,1285050.664,0,21
+87459,332498.2027,1286530.55,0,21
+87460,333291.5365,1289702.666,0,21
+87461,334218.878,1291775.981,0,21
+87462,335298.75,1293027.939,0,21
+87463,335826.2048,1295486.59,0,21
+87464,336793.2794,1296386.468,0,21
+87465,337841.4514,1298842.935,0,21
+87466,338380.5628,1299797.936,0,21
+87467,342616.6705,1301889.53,0,21
+87468,344497.3812,1303211.395,0,21
+87469,345047.1574,1305270.934,0,21
+87470,346996.7651,1306452.391,0,21
+87471,348572.1712,1308044.883,0,21
+87472,349871.0172,1309814.866,0,21
+87473,351010.761,1311373.724,0,21
+87474,352935.6513,1312782.377,0,21
+87475,354199.9525,1321745.634,0,21
+87476,355346.9458,1321040.315,0,21
+87477,356927.1109,1324102.627,0,21
+87478,358277.7594,1326522.081,0,21
+87479,359642.9753,1327603.219,0,21
+87480,368104.0557,1330578.739,0,21
+87481,383266.937,1393870.871,0,21
+87482,392800.6262,1403194.294,0,21
+87483,398524.6812,1408209.927,0,21
+87484,397260.6312,1414542.989,0,21
+87485,400536.4477,1418593.227,0,21
+87486,402850.2964,1423402.955,0,21
+87487,404378.6291,1426393.336,0,21
+87488,407161.9432,1431734.354,473.716034,21
+87489,408330.8427,1436036.627,263.3624588,21
+87490,410568.7027,1438693.589,352.0703103,21
+87491,412280.0526,1443962.83,1612.075268,21
+87492,414041.0048,1447592.966,3463.750262,21
+87493,415863.0003,1451672.65,2676.588614,21
+87494,417419.3338,1454947.108,3249.471639,21
+87495,419534.2227,1460562.077,3849.109909,21
+87496,420888.367,1461751.49,3883.291734,21
+87497,422356.4516,1467725.078,4442.34869,21
+87498,424461.1779,1470031.174,4627.73153,21
+87499,425508.0412,1474703.232,4912.981614,21
+87500,428219.7896,1478298.029,5363.236834,21
+87501,431113.5471,1481579.606,5512.974652,21
+87502,431562.866,1485591.575,5942.856214,21
+87503,433846.4105,1488954.042,6107.935617,21
+87504,435066.8645,1493073.372,6534.402826,21
+87505,436557.9051,1496275.821,6698.297996,21
+87506,438534.7446,1500388.462,7121.615072,21
+87507,439687.8102,1503303.659,7413.705014,21
+87508,441223.9587,1507326.713,7559.835149,21
+87509,442726.2308,1509992.025,7995.002135,21
+87510,444125.8178,1515354.181,8140.277646,21
+87511,457416.8832,1516776.587,8985.960515,21
+87512,453876.8615,1521050.347,10343.26303,21
+87513,457773.4056,1525217.701,10438.98643,21
+87514,458992.1763,1527861.861,10691.12377,21
+87515,462960.0287,1531435.708,11088.61038,21
+87516,463555.6311,1534931.456,11419.89424,21
+87517,466684.7518,1538102.241,11610.24921,21
+87518,468189.2628,1542053.156,11955.95349,21
+87519,470446.1639,1545095.895,12301.18868,21
+87520,471694.6874,1548715.592,12904.01799,21
+87521,474658.3204,1550754.229,13039.22061,21
+87522,475261.2298,1555308.473,13185.11861,21
+87523,479164.8048,1558702.019,13831.09402,21
+87524,479252.6828,1562089.68,16075.02966,21
+87525,482219.7907,1564116.504,17651.18255,21
+87526,483239.1927,1568531.688,17341.96751,21
+87527,486104.8321,1571736.529,18366.32398,21
+87528,486659.0508,1574419.619,18981.28384,21
+87529,489041.3331,1578803.563,19594.86388,21
+87530,490457.3307,1581233.512,20351.2773,21
+87531,492823.9517,1584448.075,20682.26763,21
+87532,493752.8187,1587480.974,21451.35509,21
+87533,496168.6404,1591176.449,22003.64914,21
+87534,497697.8193,1594184.636,22526.18582,21
+87535,499429.765,1596565.818,23091.39881,21
+87536,500779.1238,1599911.12,23694.62413,21
+87537,502886.7042,1604725.605,24171.76543,21
+87538,503837.268,1605450.02,24662.62698,21
+87539,506771.7051,1611156.762,25334.22344,21
+87540,506801.6322,1613257.287,25709.46475,21
+87541,509897.4052,1613666.912,26282.46237,21
+87542,511544.8617,1615462.979,26896.64406,21
+87543,512997.4626,1618050.966,27226.28123,21
+87544,515638.5176,1619549.634,27936.31786,21
+87545,516517.0645,1620674.12,28421.8923,21
+87546,518404.5747,1623256.445,28983.09059,21
+87547,519926.204,1625207.5,29459.71593,21
+87548,521680.2136,1626694.296,29929.60284,21
+87549,523085.301,1627976.062,30745.15,21
+87550,525061.9303,1629615.278,30841.25924,21
+87551,525837.4925,1632111.497,31461.96808,21
+87552,528387.6003,1633368.825,31981.29765,21
+87553,528276.2381,1635199.76,32482.0379,21
+87554,532038.8567,1637337.147,35462.08798,21
+87555,532176.5579,1638358.353,35031.08028,21
+87556,533941.381,1639676.316,35965.63536,21
+87557,534652.5815,1642946.906,36835.98327,21
+87558,537875.6006,1642497.592,37401.4949,21
+87559,538213.1731,1646112.123,38327.74233,21
+87560,539260.7896,1646661.913,38899.82479,21
+87561,541723.1524,1648738.595,39541.33978,21
+87562,542492.6177,1649556.036,40332.97826,21
+87563,544060.3193,1652093.457,40902.6048,21
+87564,545241.1185,1653922.387,41699.11069,21
+87565,546902.0784,1654381.775,42415.64164,21
+87566,548189.9878,1656834.974,43068.74907,21
+87567,550013.1904,1657978.983,43662.86988,21
+87568,550996.6584,1660449.003,44482.04224,21
+87569,551878.3167,1660374.657,45003.19947,21
+87570,554083.0736,1663967.95,45699.49569,21
+87571,554780.5812,1665164.417,46365.08768,21
+87572,556203.9323,1665394.285,46986.47227,21
+87573,557798.3301,1667711.232,47699.95991,21
+87574,558764.1699,1669846.339,48112.14746,21
+87575,560997.6181,1671055.782,49260.70595,21
+87576,560496.3349,1671678.941,49289.63901,21
+87577,563894.3605,1674461.174,50358.502,21
+87578,563431.3507,1676247.668,50890.38522,21
+87579,565891.8765,1677064.22,51314.13166,21
+87580,566955.3642,1678575.565,52187.66771,21
+87581,567769.0879,1679635.795,52675.50835,21
+87582,569213.9596,1683970.23,53291.45823,21
+87583,570381.408,1682888.221,54075.83839,21
+87584,572032.8026,1686981.277,54303.06255,21
+87585,573086.8404,1686377.689,55274.87606,21
+87586,573842.2649,1688967.275,55858.62376,21
+87587,575886.1978,1690058.219,56054.4319,21
+87588,576618.4753,1692374.417,57265.18869,21
+87589,577373.5509,1692801.629,57365.46247,21
+87590,579751.5825,1695833.805,58034.22101,21
+87591,579148.5242,1696312.46,58811.77074,21
+87592,582247.3355,1698452.262,59269.56075,21
+87593,581991.3412,1698514.584,59974.36275,21
+87594,583749.829,1701422.533,60394.99583,21
+87595,584879.7065,1701008.48,61337.24254,21
+87596,586104.9499,1702579.973,61427.46981,21
+87597,587477.2395,1705184.208,62236.39093,21
+87598,588141.0199,1704493.298,62745.59073,21
+87599,589327.6259,1707372.103,63351.25869,21
+87600,590792.3546,1709371.021,64263.14093,21
+87601,599783.3212,1718607.925,67476.25302,21
+87602,602551.0372,1721732.85,68607.76652,21
+87603,603969.5713,1725265.038,69722.20264,21
+87604,606379.3675,1726577.593,70357.45156,21
+87605,606281.3973,1728072.289,71420.80334,21
+87606,608781.2903,1731583.64,71800.60731,21
+87607,609417.3938,1733016.73,72897.74432,21
+87608,611838.2542,1734940.014,73469.87075,21
+87609,611921.2066,1736818.023,74185.62018,21
+87610,614735.411,1739082.149,75185.38964,21
+87611,613586.8879,1741512.816,75729.72756,21
+87612,617698.0345,1743037.423,76433.99729,21
+87613,617479.5532,1745815.596,77317.78158,21
+87614,618445.3483,1746727.116,78165.1291,21
+87615,621246.8399,1749070.474,78535.33594,21
+87616,620388.1482,1750930.836,79633.11855,21
+87617,623668.2484,1754081.83,79802.5436,21
+87618,623147.8479,2039840.013,81539.99826,21
+87619,625483.0593,1758100.428,81302.75033,21
+87620,626925.739,1758806.787,82516.61727,21
+87621,627207.3525,1760674.07,83219.99786,21
+87622,629477.1088,1763743.059,83647.36863,21
+87623,630144.7725,1764100.574,84396.10192,21
+87624,631272.7489,1767024.536,85555.07478,21
+87625,632246.166,1768951.521,85672.25374,21
+87626,633812.7371,1770837.224,86786.02251,21
+87627,634655.68,1773020.737,87608.00268,21
+87628,636453.6442,1774024.178,87578.40155,21
+87629,635787.9317,1777415.21,89344.90066,21
+87630,639237.3268,1777478.951,89502.84904,21
+87631,638477.9978,2067862.916,90117.74831,21
+87632,640851.7772,1781707.659,90999.82201,21
+87633,642246.4926,1784099.712,91644.09748,21
+87634,642374.3593,1785393.828,92395.07181,21
+87635,643900.017,1789030.614,92720.17413,21
+87636,644482.61,1788936.929,94132.20394,21
+87637,646995.2274,1792128.93,94135.45667,21
+87638,646029.3808,1793901.988,95441.54622,21
+87639,649469.3165,1794632.126,95377.35404,21
+87640,648684.1147,1797857.194,96918.52493,21
+87641,650801.4234,1799264.683,96896.53524,21
+87642,651323.0063,1801489.307,98170.33175,21
+87643,652394.9266,1802265.481,98617.63519,21
+87644,654108.8449,2092564.987,99190.0834,21
+87645,654631.6929,1806074.826,100094.2043,21
+87646,655702.7993,1808597.179,100751.4183,21
+87647,656379.5692,1810648.792,101307.2955,21
+87648,657855.896,1811631.751,102180.4695,21
+87649,659042.0463,1814919.197,102664.36,21
+87650,660631.1722,1814867.632,103453.9245,21
+87651,660130.9897,1819285.938,104329.2138,21
+87652,662575.5159,1819022.716,104746.5089,21
+87653,662475.5011,1822108.044,105373.1358,21
+87654,664617.5349,1823130.967,106257.4721,21
+87655,664424.156,1826002.773,107105.0011,21
+87656,667258.9761,1826356.724,107485.3279,21
+87657,665658.0221,2115881.96,108211.4662,21
+87658,668486.8167,1831139.979,109170.1613,21
+87659,669366.9426,1832165.801,109467.2548,21
+87660,670164.1075,1835760.677,110547.0396,21
+87661,670010.3683,1837867.822,110633.8647,21
+87662,672687.4668,1839610.435,112064.0603,21
+87663,672715.3941,1840845.999,111898.7562,21
+87664,673286.9305,1843407.16,112834.3666,21
+87665,674260.1907,1843946.639,113247.0171,21
+87666,673327.6634,1846173.169,114519.9376,21
+87667,674855.0234,1846503.812,114460.632,21
+87668,675785.1597,1848576.358,115173.0894,21
+87669,675264.5213,1850403.139,116199.5827,21
+87670,675550.5429,1850945.352,116364.3774,21
+87671,677733.3205,1852422.979,117303.7778,21
+87672,676908.9448,1855514.901,117613.3285,21
+87673,676747.622,1855081.505,118519.6065,21
+87674,678568.2882,1856756.135,118714.0708,21
+87675,678480.5846,1858538.222,119807.4632,21
+87676,678566.6038,1859788.58,120158.435,21
+87677,678936.5947,1861570.997,120834.9938,21
+87678,680415.4651,1863385.79,121496.5625,21
+87679,680165.2553,1862806.305,122056.7386,21
+87680,680482.757,1866950.368,122527.9381,21
+87681,681062.5681,1865949.045,123366.8103,21
+87682,681749.2457,1868878.838,124013.7524,21
+87683,681929.6859,1870250.359,124187.9953,21
+87684,682638.4506,1870815.498,125496.7028,21
+87685,682150.2322,1872329.576,126235.3172,21
+87686,683972.725,1873729.078,128673.0026,21
+87687,683140.2361,1876015.211,128820.9692,21
+87688,684615.6675,1876149.568,129589.5563,21
+87689,684742.4863,1878387.202,130962.683,21
+87690,683978.318,1879485.412,131475.801,21
+87691,686156.7451,1880109.326,132486.9624,21
+87692,685583.4612,1883228.243,133462.8212,21
+87693,686155.7371,1883361.136,134113.1492,21
+87694,686125.8599,1884427.191,135154.881,21
+87695,687205.4568,1886687.342,135900.7885,21
+87696,687643.4396,1887382.606,136951.6558,21
+87697,686603.7781,1889428.931,137527.9397,21
+87698,688997.1552,1890335.39,138744.5149,21
+87699,688192.7591,1891641.019,139422.6245,21
+87700,689003.5466,1893081.846,140267.9728,21
+87701,689597.8227,1895159.344,141198.7323,21
+87702,689391.7158,1895051.019,142161.9037,21
+87703,689800.7925,1897484.796,142664.403,21
+87704,690652.3095,1898584.9,143866.3592,21
+87705,690251.9211,1899656.78,144637.0014,21
+87706,691444.6811,1901858.252,145346.2121,21
+87707,692100.0996,1902210.308,146591.8707,21
+87708,691531.5183,1904985.701,147199.5974,21
+87709,691656.738,1904389.956,147759.8276,21
+87710,692925.7777,1907675.024,149084.3781,21
+87711,693146.8329,1906924.541,149674.5638,21
+87712,692794.4756,1909473.062,150681.7717,21
+87713,694158.5309,1911095.981,151537.3824,21
+87714,693814.8658,1912416.741,151785.0331,21
+87715,694396.2226,1913165.308,153824.7433,21
+87716,694655.1923,1914426.012,153741.6018,21
+87717,695075.2813,1916006.915,154735.303,21
+87718,695022.0656,1917965.197,155739.3391,21
+87719,696269.8735,1918385.661,156413.0115,21
+87720,696167.139,1919260.46,157572.3369,15.6
+87721,0,0,0,15.6
+87722,0,0,0,15.6
+87723,0,238.4316674,0,15.6
+87724,0,0,0,15.6
+87725,0,0,1406114.91,15.6
+87726,0,0,0,15.6
+87727,0,0,0,15.6
+87728,0,0,0,15.6
+87729,339634.9685,0,0,15.6
+87730,0,0,0,15.6
+87731,0,0,0,15.6
+87732,0,0,0,15.6
+87733,0,0,0,15.6
+87734,0,0,0,15.6
+87735,0,0,0,15.6
+87736,0,0,0,15.6
+87737,0,0,0,15.6
+87738,0,0,0,15.6
+87739,0,0,0,15.6
+87740,0,0,0,15.6
+87741,0,0,0,15.6
+87742,0,0,0,15.6
+87743,0,37014.35964,0,15.6
+87744,0,2411.955263,0,15.6
+87745,0,3738.210622,0,15.6
+87746,0,16473.37344,0,15.6
+87747,0,13386.91116,0,15.6
+87748,0,12678.75383,0,15.6
+87749,0,13510.53344,0,15.6
+87750,0,13878.57793,0,15.6
+87751,0,14112.13747,0,15.6
+87752,0,14384.93865,0,15.6
+87753,0,14620.87213,0,15.6
+87754,0,14861.81349,0,15.6
+87755,0,15119.16408,0,15.6
+87756,0,15363.64466,0,15.6
+87757,0,15571.71993,0,15.6
+87758,0,15816.74326,0,15.6
+87759,0,15991.71547,1436349.547,15.6
+87760,0,16292.18892,0,15.6
+87761,0,16425.00074,0,15.6
+87762,0,16631.26606,0,15.6
+87763,0,16856.36442,0,15.6
+87764,0,17107.27896,0,15.6
+87765,339614.1515,17221.34552,0,15.6
+87766,0,17439.92049,0,15.6
+87767,0,17656.58995,0,15.6
+87768,0,17834.98813,0,15.6
+87769,0,17977.953,0,15.6
+87770,0,18246.2573,0,15.6
+87771,0,18333.31644,0,15.6
+87772,0,18550.8189,0,15.6
+87773,0,0,0,15.6
+87774,0,0,0,15.6
+87775,0,0,0,15.6
+87776,0,63169.85234,0,15.6
+87777,0,1446.836887,0,15.6
+87778,0,17904.58415,0,15.6
+87779,0,23308.83018,0,15.6
+87780,0,19403.36556,0,15.6
+87781,0,20276.53227,0,15.6
+87782,0,20499.89477,0,15.6
+87783,0,20706.73887,0,15.6
+87784,0,20925.69324,0,15.6
+87785,0,21146.35593,0,15.6
+87786,0,21331.71564,0,15.6
+87787,0,21506.34163,0,15.6
+87788,0,21763.10872,0,15.6
+87789,0,332626.3205,0,15.6
+87790,0,44922.27876,0,15.6
+87791,0,44270.5816,0,15.6
+87792,0,129802.8962,0,15.6
+87793,0,108588.4126,0,15.6
+87794,0,102541.2151,1364393.433,15.6
+87795,0,107227.2598,0,15.6
+87796,0,118143.7153,0,15.6
+87797,0,121495.734,0,15.6
+87798,0,120807.9489,0,15.6
+87799,0,124064.8512,0,15.6
+87800,0,126118.2345,0,15.6
+87801,339601.4158,128112.338,0,15.6
+87802,0,130068.3857,0,15.6
+87803,0,131762.3544,0,15.6
+87804,0,134287.1451,0,15.6
+87805,0,135422.3608,0,15.6
+87806,0,112737.6337,0,15.6
+87807,0,114552.4201,0,15.6
+87808,0,115835.6732,0,15.6
+87809,0,205130.5441,0,15.6
+87810,0,132460.6741,0,15.6
+87811,0,131513.3881,0,15.6
+87812,0,157243.4577,0,15.6
+87813,0,147775.417,0,15.6
+87814,0,150948.1341,0,15.6
+87815,0,152715.6715,0,15.6
+87816,0,154487.7986,0,15.6
+87817,0,156630.5076,0,15.6
+87818,0,157520.2935,0,15.6
+87819,0,27089.55516,0,15.6
+87820,0,27279.65855,0,15.6
+87821,0,27441.45504,0,15.6
+87822,0,27542.10352,0,15.6
+87823,0,27739.64028,0,15.6
+87824,0,501848.1083,0,15.6
+87825,0,69369.14901,0,15.6
+87826,0,120147.7307,0,15.6
+87827,0,218834.6392,0,15.6
+87828,0,168509.2611,0,15.6
+87829,0,176761.0714,1299167.098,15.6
+87830,0,178300.4963,0,15.6
+87831,0,180045.1106,0,15.6
+87832,0,181187.4352,0,15.6
+87833,0,182567.1457,0,15.6
+87834,0,184958.9484,0,15.6
+87835,0,184955.689,0,15.6
+87836,0,187446.6506,0,15.6
+87837,0,188725.1661,0,15.6
+87838,339596.9513,189605.0978,0,15.6
+87839,0,161497.6197,0,15.6
+87840,0,162724.424,0,15.6
+87841,0,250587.3968,0,15.6
+87842,0,177781.3016,0,15.6
+87843,0,189734.4403,0,15.6
+87844,0,198116.8527,0,15.6
+87845,0,193157.8489,0,15.6
+87846,0,192781.8698,0,15.6
+87847,0,192905.4463,0,15.6
+87848,0,191993.0063,0,15.6
+87849,0,192014.5786,0,15.6
+87850,0,191261.8409,0,15.6
+87851,0,190949.1501,0,15.6
+87852,0,190714.2534,0,15.6
+87853,0,189687.9722,0,15.6
+87854,0,29722.84893,0,15.6
+87855,0,29644.7637,0,15.6
+87856,0,29703.76096,0,15.6
+87857,0,29585.51554,0,15.6
+87858,0,588880.6093,0,15.6
+87859,0,62117.73741,0,15.6
+87860,0,133145.1035,0,15.6
+87861,0,238153.8377,0,15.6
+87862,0,179776.2483,0,15.6
+87863,0,186250.1244,0,15.6
+87864,0,186410.6412,1239968.996,15.6
+87865,0,185510.4399,0,15.6
+87866,0,184800.8052,0,15.6
+87867,0,184577.2685,0,15.6
+87868,0,183417.1791,0,15.6
+87869,0,183322.6704,0,15.6
+87870,0,182374.6395,0,15.6
+87871,0,153163.6269,0,15.6
+87872,0,153108.1888,0,15.6
+87873,0,234071.3287,0,15.6
+87874,0,161788.087,0,15.6
+87875,339530.2534,176693.2846,0,15.6
+87876,0,182105.2633,0,15.6
+87877,0,177446.4018,0,15.6
+87878,0,177657.8814,0,15.6
+87879,0,176522.0518,0,15.6
+87880,0,175782.3214,0,15.6
+87881,0,175483.101,0,15.6
+87882,0,174764.3858,0,15.6
+87883,0,173452.6032,0,15.6
+87884,0,173667.8091,0,15.6
+87885,0,172344.6108,0,15.6
+87886,0,170687.4426,0,15.6
+87887,0,170049.8025,0,15.6
+87888,0,26943.21197,0,15.6
+87889,0,26866.35837,0,15.6
+87890,0,26691.36216,0,15.6
+87891,0,26654.60996,0,15.6
+87892,0,26553.06961,0,15.6
+87893,0,545987.0195,0,15.6
+87894,0,36901.25724,0,15.6
+87895,0,114791.0622,0,15.6
+87896,0,212991.3297,0,15.6
+87897,0,155331.2291,0,15.6
+87898,0,162051.6795,0,15.6
+87899,0,161288.8794,1186361.962,15.6
+87900,0,160902.7707,0,15.6
+87901,0,161387.0594,0,15.6
+87902,0,162768.0721,0,15.6
+87903,0,138328.0235,0,15.6
+87904,0,139273.1863,0,15.6
+87905,0,139904.469,0,15.6
+87906,0,235838.7475,0,15.6
+87907,0,156857.7168,0,15.6
+87908,0,153392.0593,0,15.6
+87909,0,182784.928,0,15.6
+87910,0,172423.7992,0,15.6
+87911,0,175073.1106,0,15.6
+87912,339465.2272,176490.0709,0,15.6
+87913,0,177553.2268,0,15.6
+87914,0,178998.1132,0,15.6
+87915,0,180364.7913,0,15.6
+87916,0,181114.6551,0,15.6
+87917,0,183161.8076,0,15.6
+87918,0,183487.437,0,15.6
+87919,0,185393.3286,0,15.6
+87920,0,186560.3834,0,15.6
+87921,0,187422.1882,0,15.6
+87922,0,189469.4349,0,15.6
+87923,0,28796.89424,0,15.6
+87924,0,28782.28745,0,15.6
+87925,0,29127.49814,0,15.6
+87926,0,29034.23084,0,15.6
+87927,0,624385.3477,0,15.6
+87928,0,61465.43043,0,15.6
+87929,0,134457.5484,0,15.6
+87930,0,256506.1682,0,15.6
+87931,0,191033.3807,0,15.6
+87932,0,200337.542,0,15.6
+87933,0,202281.6098,0,15.6
+87934,0,203477.9862,1138042.189,15.6
+87935,0,204288.1892,0,15.6
+87936,0,175673.3404,0,15.6
+87937,0,176075.0133,0,15.6
+87938,0,266880.6667,0,15.6
+87939,0,191927.8216,0,15.6
+87940,0,205399.1191,0,15.6
+87941,0,216376.0938,0,15.6
+87942,0,212073.4482,0,15.6
+87943,0,214261.1658,0,15.6
+87944,0,214992.506,0,15.6
+87945,0,216380.9817,0,15.6
+87946,0,217800.4691,0,15.6
+87947,0,219038.4157,0,15.6
+87948,0,219745.4734,0,15.6
+87949,339440.7801,221007.7742,0,15.6
+87950,0,222842.9174,0,15.6
+87951,0,223359.5139,0,15.6
+87952,0,225174.8264,0,15.6
+87953,0,225904.5913,0,15.6
+87954,0,227196.4531,0,15.6
+87955,0,228436.7069,0,15.6
+87956,0,229711.5757,0,15.6
+87957,0,32907.01672,0,15.6
+87958,0,33021.69391,0,15.6
+87959,0,33097.88183,71318.21108,15.6
+87960,0,702572.6284,72230.54076,15.6
+87961,0,98202.74784,72792.08703,15.6
+87962,0,166015.6189,73336.01615,15.6
+87963,0,296620.8228,73857.96527,15.6
+87964,0,230131.1273,74353.29373,15.6
+87965,0,238819.8605,74818.93942,15.6
+87966,0,241042.2068,75253.66832,15.6
+87967,0,241531.8114,75657.35952,15.6
+87968,29925.67954,208247.7365,76030.31115,15.6
+87969,0,209495.6446,1048514.485,15.6
+87970,0,310576.2126,74023.58553,15.6
+87971,5095.909715,230499.6812,74337.28295,15.6
+87972,8502.591783,237568.724,74627.09406,15.6
+87973,5579.56764,253720.187,74895.1992,15.6
+87974,6573.814885,247328.7035,75143.86908,15.6
+87975,7344.931106,251061.2983,75375.21686,15.6
+87976,7003.686009,252101.156,75591.1156,15.6
+87977,7264.653574,252377.9475,75793.51832,15.6
+87978,7294.3049,254185.7184,75984.13208,15.6
+87979,7392.812148,254372.7398,76164.58679,15.6
+87980,7481.674149,255911.8009,76336.42567,15.6
+87981,7564.087434,256286.1596,76500.9039,15.6
+87982,7608.311421,257869.0782,0,15.6
+87983,7711.375847,256653.1816,0,15.6
+87984,7782.730745,257665.189,0,15.6
+87985,7855.684766,258662.0761,0,15.6
+87986,347333.0147,259561.62,0,15.6
+87987,8014.814822,260494.9387,0,15.6
+87988,8089.779962,261061.7122,0,15.6
+87989,8122.194676,262467.7436,0,15.6
+87990,8223.309858,36243.23814,0,15.6
+87991,8295.048964,36432.16819,56588.89165,15.6
+87992,8364.154277,36441.38843,56149.1398,15.6
+87993,8451.310595,828469.4452,55711.48174,15.6
+87994,8472.131003,143082.6584,55275.54329,15.6
+87995,8619.390162,140779.3712,54841.54019,15.6
+87996,8603.64247,357691.3098,54409.64846,15.6
+87997,8749.790253,257011.0596,53980.09005,15.6
+87998,0,270646.1667,53552.98792,15.6
+87999,0,271849.1576,53128.5459,15.6
+88000,0,235605.1745,52706.88914,15.6
+88001,0,236656.7413,52288.1352,15.6
+88002,0,345600.3093,51872.39245,15.6
+88003,0,261430.0876,51459.77587,15.6
+88004,0,268108.3001,887635.6499,15.6
+88005,34243.86958,282933.8424,49203.44885,15.6
+88006,3493.071335,278137.1695,0,15.6
+88007,3089.848028,278718.4878,0,15.6
+88008,11342.54383,280237.5612,0,15.6
+88009,10694.56937,282806.5434,0,15.6
+88010,9115.013891,282490.4754,0,15.6
+88011,9718.137818,283831.0638,0,15.6
+88012,9841.596187,285173.2841,0,15.6
+88013,9855.366909,285937.9629,0,15.6
+88014,9931.068069,286223.7591,0,15.6
+88015,10024.71038,287941.7814,0,15.6
+88016,10069.2815,288390.3494,0,15.6
+88017,10134.12362,288071.0129,0,15.6
+88018,10157.90192,289019.7137,0,15.6
+88019,10281.50206,290047.5037,0,15.6
+88020,10325.33088,290702.0145,0,15.6
+88021,10327.69385,292185.1004,0,15.6
+88022,10411.00556,292072.9966,0,15.6
+88023,10436.43427,39523.0108,0,15.6
+88024,349890.9353,39734.16152,0,15.6
+88025,10490.53763,39728.79904,0,15.6
+88026,10565.03913,944345.9092,0,15.6
+88027,10579.22881,199208.5153,0,15.6
+88028,10618.90712,122271.0674,0,15.6
+88029,10664.44324,408348.6787,48115.71168,15.6
+88030,10684.84523,285248.5408,47693.96766,15.6
+88031,10761.11702,300393.6104,47311.45092,15.6
+88032,10761.11277,261374.992,46950.53137,15.6
+88033,10794.23777,262385.7463,46600.09276,15.6
+88034,10833.64013,376133.6399,46254.78992,15.6
+88035,0,290333.6129,45912.47095,15.6
+88036,0,302933.9219,45572.14354,15.6
+88037,0,308529.6321,45233.16944,15.6
+88038,0,307709.0176,44895.06092,15.6
+88039,0,308217.957,819047.986,15.6
+88040,0,309132.4126,43341.12764,15.6
+88041,45719.6664,309466.9648,43011.80086,15.6
+88042,815.6895344,311020.3865,42682.47463,15.6
+88043,3734.080677,313493.9489,42353.13002,15.6
+88044,16170.60421,313684.6643,42023.86249,15.6
+88045,10925.11117,315702.8856,41694.83834,15.6
+88046,11052.22409,315708.0832,41366.23607,15.6
+88047,11336.50859,317181.4494,41038.28977,15.6
+88048,11383.08126,317652.0314,40711.2444,15.6
+88049,11392.73011,318779.8454,40385.27338,15.6
+88050,11395.02579,319632.0322,40060.5548,15.6
+88051,11417.29726,318126.879,39737.25366,15.6
+88052,11380.80003,319801.0003,39415.50574,15.6
+88053,11419.43359,319879.283,39095.41425,15.6
+88054,11454.76377,321416.7667,38777.09747,15.6
+88055,11499.24165,321209.5987,38460.66859,15.6
+88056,11444.99465,43005.27179,38146.18702,15.6
+88057,11570.75437,42983.15799,0,15.6
+88058,11521.0108,847374.8459,0,15.6
+88059,11590.67526,181756.1797,0,15.6
+88060,11554.29653,276647.8902,0,15.6
+88061,11666.31832,370354.7176,0,15.6
+88062,350963.7623,324503.4057,0,15.6
+88063,11693.66089,328530.2145,0,15.6
+88064,11664.01028,286660.7921,0,15.6
+88065,11685.07393,286871.0925,0,15.6
+88066,11739.46594,402039.6894,0,15.6
+88067,11728.8276,321492.3748,0,15.6
+88068,11754.61242,335882.1643,0,15.6
+88069,11806.32763,332733.6135,0,15.6
+88070,11772.09385,337295.8296,0,15.6
+88071,0,335875.5102,0,15.6
+88072,0,337042.0284,0,15.6
+88073,0,337399.6362,0,15.6
+88074,0,338819.7818,741488.396,15.6
+88075,0,339340.5649,0,15.6
+88076,49176.10297,339994.4068,0,15.6
+88077,493.1513709,342944.8997,0,15.6
+88078,3338.420208,342917.0252,0,15.6
+88079,18511.76694,344460.8102,0,15.6
+88080,11042.98099,344414.9219,0,17.8
+88081,833669.7352,1422126.813,36058.13805,17.8
+88082,319602.368,1387928.739,35716.11115,17.8
+88083,137691.331,299869.7707,35412.68929,17.8
+88084,230359.7695,720041.5582,35129.89998,17.8
+88085,228868.3316,707195.3199,34856.59514,17.8
+88086,213008.479,680667.3397,34587.44801,17.8
+88087,210443.2305,652608.6739,34320.21692,17.8
+88088,209862.2724,117629.3711,34053.91241,17.8
+88089,209201.496,117440.6449,33787.91327,17.8
+88090,208809.3223,1201066.118,33521.67583,17.8
+88091,208121.4291,625777.2397,33254.77826,17.8
+88092,208050.5665,572486.9235,32986.96623,17.8
+88093,207260.4078,701433.6677,32718.1455,17.8
+88094,206802.8599,607140.9396,32448.28875,17.8
+88095,206480.962,609161.1725,32177.47047,17.8
+88096,206253.8863,526583.4388,31905.73369,17.8
+88097,205831.1944,651696.4603,31633.24427,17.8
+88098,204992.4852,602968.8548,31360.17887,17.8
+88099,205399.8838,599559.6544,31086.26929,17.8
+88100,543957.287,605772.9785,30812.84839,17.8
+88101,204728.2276,600704.8351,30539.50376,17.8
+88102,204127.161,600498.9098,30266.46375,17.8
+88103,203729.1411,596595.5067,29993.59824,17.8
+88104,203969.0201,596302.2097,29721.42785,17.8
+88105,203155.0144,594349.9093,29449.07764,17.8
+88106,172273.0585,592755.9192,29178.20637,17.8
+88107,171751.3728,589222.9361,28908.09228,17.8
+88108,251895.3933,588520.2029,28639.15608,17.8
+88109,191762.9801,586635.3382,649998.0686,17.8
+88110,199416.7268,585458.6749,0,17.8
+88111,33694.04192,558111.9714,0,17.8
+88112,30890.24253,557205.5058,0,17.8
+88113,30805.4558,555768.5955,0,17.8
+88114,30768.83243,622600.1284,0,17.8
+88115,583879.7832,559878.2354,0,17.8
+88116,80001.16696,570244.1187,0,17.8
+88117,160398.1251,576499.8765,0,17.8
+88118,242685.5727,570662.5129,0,17.8
+88119,195395.8511,569469.1395,0,17.8
+88120,201434.8951,107709.1827,0,17.8
+88121,200796.5205,107810.0895,0,17.8
+88122,200864.749,1191483.909,0,17.8
+88123,200418.8748,465239.9838,0,17.8
+88124,200435.467,604431.2235,0,17.8
+88125,200048.5438,580912.6299,0,17.8
+88126,200078.7454,547518.614,0,17.8
+88127,199551.2182,486543.166,0,17.8
+88128,199569.8636,474760.1835,0,17.8
+88129,199227.0106,607105.1129,0,17.8
+88130,199202.5119,582549.0376,0,17.8
+88131,198804.8426,532908.9315,0,17.8
+88132,198693.2391,563774.6984,0,17.8
+88133,198603.3328,554168.2631,0,17.8
+88134,198385.8334,553013.6561,0,17.8
+88135,537625.636,548460.6809,0,17.8
+88136,197936.4754,547711.2797,0,17.8
+88137,197652.1315,546471.2747,0,17.8
+88138,167896.9605,545027.0391,0,17.8
+88139,167821.5471,543348.2911,0,17.8
+88140,245303.7176,542638.3767,0,20
+88141,1092466.766,2600929.646,161820.2379,20
+88142,1043008.431,2405248.691,88984.5616,20
+88143,557812.8231,1077135.614,666350.4973,20
+88144,586765.2658,777440.7287,74780.10701,20
+88145,104015.9075,981089.3717,64860.56683,20
+88146,112713.0386,1248950.49,63921.82053,20
+88147,917324.3451,1013847.544,63983.78242,20
+88148,467677.612,1046138.723,63868.64877,20
+88149,498943.6582,1050203.785,63922.5005,20
+88150,438707.5271,1044125.438,63886.28416,20
+88151,487479.7976,1040246.429,63902.56718,20
+88152,463398.6624,187538.3324,63901.00312,20
+88153,461838.9242,1285878.641,63969.98983,20
+88154,461200.4696,1085654.445,63967.16758,20
+88155,460554.1512,956381.023,63958.78009,20
+88156,459335.8709,1048719.243,64130.36208,20
+88157,459322.3758,1024437.604,64060.72306,20
+88158,458285.4911,1019092.472,64156.70109,20
+88159,457672.9756,877921.5246,64176.48413,20
+88160,457500.7102,1085275.593,64284.90746,20
+88161,456582.3776,1018128.608,64259.10261,20
+88162,456849.2372,1003197.847,86364.40857,20
+88163,455848.0296,1010512.796,165384.7373,20
+88164,455494.7051,1005830.861,166505.7985,20
+88165,455968.2393,1003176.024,145613.8391,20
+88166,454753.9211,1001376.158,160199.0213,20
+88167,455412.3565,997900.5231,188765.7818,20
+88168,454442.8566,996693.0024,174544.5864,20
+88169,454774.0338,995762.3506,182752.3499,20
+88170,712436.068,991341.9163,186914.0385,20
+88171,357785.7816,991358.3288,152962.8784,20
+88172,486116.9921,988581.4483,155684.8568,20
+88173,450905.2341,987124.4456,158080.9791,20
+88174,443403.3828,984545.7201,160301.9613,20
+88175,439691.5888,942807.4746,290883.3054,20
+88176,443951.9852,940691.4517,182547.7037,20
+88177,79190.1274,1029510.668,919455.5338,20
+88178,129168.3965,976722.8882,213475.3622,20
+88179,871962.5992,971208.5806,211642.1853,20
+88180,467607.2715,976804.3332,214968.4377,20
+88181,432613.7892,973407.2111,217534.1978,20
+88182,454341.7451,973671.6456,220367.2508,20
+88183,469078.7864,170594.7651,223528.7694,20
+88184,455686.8287,1254090.56,226060.2468,20
+88185,455352.7476,906999.3042,228850.6615,20
+88186,455879.9356,960126.9556,231921.4033,20
+88187,455350.6338,972334.5758,233981.0393,20
+88188,455583.468,964619.7168,237491.8491,20
+88189,456523.5606,961423.0232,239677.2037,20
+88190,455565.1559,832231.5342,242552.4662,20
+88191,456408.5791,1027226.138,89336.57209,20
+88192,456229.1301,958751.0798,88860.54343,20
+88193,457140.4203,947736.1061,88603.45875,20
+88194,456326.0189,959926.7221,88615.51171,20
+88195,457189.9009,955097.5102,88531.44006,20
+88196,456830.8196,952978.9233,88414.13594,20
+88197,457886.7867,951848.3368,88380.20359,20
+88198,457682.0692,950696.1598,88223.03041,20
+88199,457526.6456,949624.1872,88123.58627,20
+88200,458465.1878,948089.1886,88138.92386,21
+88201,2618040.518,2986924.952,1947590.867,21
+88202,1598779.643,2238466.04,754030.352,21
+88203,492312.9159,762050.0462,128345.8252,21
+88204,557589.3895,1101954.078,318597.9103,21
+88205,628648.2069,1292618.42,464426.6313,21
+88206,842703.023,1136616.435,338372.8303,21
+88207,655872.596,1149154.882,357611.2289,21
+88208,696191.9107,1143123.681,362169.7514,21
+88209,694115.4088,1142358.775,365619.1407,21
+88210,692463.5856,1136818.382,368430.6968,21
+88211,690176.3114,1135051.393,371640.0397,21
+88212,689474.431,1132379.48,373993.14,21
+88213,685974.4825,1127852.521,377928.049,21
+88214,685565.1556,1127952.807,380174.0038,21
+88215,684209.9948,1122621.748,383742.7908,21
+88216,682234.9505,1121098.46,386717.7413,21
+88217,680756.314,1118933.057,389787.5498,21
+88218,680740.2488,1116589.305,393027.7645,21
+88219,677040.3095,1113339.876,395391.5419,21
+88220,677833.3811,1111070.844,399227.8554,21
+88221,675782.0763,1109305.168,401442.2376,21
+88222,675183.4744,1107847.52,404925.9984,21
+88223,673288.2112,1105129.904,407067.2603,21
+88224,673214.5761,1103259.273,411079.2003,21
+88225,672459.8945,1100347.536,413238.885,21
+88226,669740.1594,1100759.487,416570.5747,21
+88227,670641.6679,1097425.169,419326.0487,21
+88228,669747.1751,1095068.521,422063.2277,21
+88229,667928.1798,1093366.444,424713.6399,21
+88230,667717.9804,1092697.302,428033.7378,21
+88231,666844.1789,1090982.821,430675.5467,21
+88232,665684.0731,1089009.786,432988.4718,21
+88233,666336.1544,1088118.461,436330.2663,21
+88234,664801.9864,1085004.685,438658.3738,21
+88235,664584.6718,1085304.635,441249.2499,21
+88236,663198.0847,1081772.509,444308.1063,21
+88237,663442.1572,1081157.1,446814.8194,21
+88238,661805.7386,1080066.163,449452.7027,21
+88239,662795.4715,1077926.295,452082.1448,21
+88240,661373.5111,1074944.071,454718.4609,21
+88241,660117.63,1075465.393,457001.0731,21
+88242,661395.117,1071953.241,460972.552,21
+88243,659906.5941,1072844.678,462124.3715,21
+88244,659642.538,1069643.095,465042.4929,21
+88245,658825.318,1063621.726,468309.2722,21
+88246,659256.5169,1064301.028,470076.716,21
+88247,658992.1876,1059429.868,473088.9384,21
+88248,657292.9373,1060315.08,474981.724,21
+88249,658223.5316,1054468.498,478341.0472,21
+88250,657649.3447,1056761.038,480001.0818,21
+88251,656211.1406,1051087.048,482482.0522,21
+88252,656993.6931,1049693.184,485719.1786,21
+88253,657210.4243,1049558.026,487690.8071,21
+88254,649826.0188,1045891.966,490690.9152,21
+88255,650129.0817,1043291.782,492153.8831,21
+88256,648434.3596,1041956.818,495318.311,21
+88257,648388.5575,1040828.993,497047.0544,21
+88258,647287.2392,1037172.842,500522.2839,21
+88259,646698.2984,1035815.611,502449.8956,21
+88260,646726.685,1030507.408,504502.8541,21
+88261,1134359.634,2338903.628,486998.5301,21
+88262,1129022.41,2331493.762,484600.1891,21
+88263,1126128.954,2331111.566,484680.3306,21
+88264,1124934.846,2330281.88,484547.5549,21
+88265,1122344.465,2327407.985,485471.719,21
+88266,1121166.163,2327836.137,483981.3129,21
+88267,1120464.362,2324329.02,485435.6396,21
+88268,1117317.172,2325313.131,484740.7493,21
+88269,1116849.474,2320683.796,467347.1583,21
+88270,1114506.941,2323957.841,464784.8297,21
+88271,1114145.558,2319211.433,462562.6247,21
+88272,1111293.909,2320299.917,462162.7107,21
+88273,1111131.861,2341683.795,459830.5329,21
+88274,1108150.028,2327462.934,458636.7652,21
+88275,1108277.363,2329431.904,456277.4836,21
+88276,1106777.286,2330537.029,456137.359,21
+88277,1103925.979,2328169.212,453555.0635,21
+88278,1104265.878,2328553.405,451916.5073,21
+88279,1101616.44,2325277.937,450155.3066,21
+88280,1101890.02,2328052.448,448725.716,21
+88281,1098661.397,2323900.472,446937.2511,21
+88282,1099008.334,2327121.445,444879.9417,21
+88283,1096202.152,2322207.075,443378.9982,21
+88284,1096542.623,2325413.801,441383.7499,21
+88285,1094626.177,2321452.085,439680.2849,21
+88286,1093154.048,2321575.008,437400.4762,21
+88287,1092645.96,2321904.05,436181.7666,21
+88288,1090458.508,2320738.223,433517.6638,21
+88289,1090323.311,2319676.226,432422.5797,21
+88290,1088328.665,2317889.162,430285.5527,21
+88291,1088040.291,2319096.569,428208.1924,21
+88292,1084509.534,2318525.92,425286.2369,21
+88293,1085280.965,2316679.185,423902.861,21
+88294,1081178.982,2315748.069,421551.8005,21
+88295,1081460.269,2315878.647,419382.1418,21
+88296,1079215.661,2315765.221,417524.5987,21
+88297,1077412.915,2314585.016,414650.8741,21
+88298,1075376.948,2313206.715,412294.0892,21
+88299,1075188.312,2313538.012,410574.0931,21
+88300,1072507.189,2312325.497,407953.4769,21
+88301,1070919.62,2312601.223,406065.7831,21
+88302,1067674.199,2311967.568,404000.6742,21
+88303,1066144.224,2310725.266,401799.5551,21
+88304,1063538.995,2310193.114,399017.9243,21
+88305,1062303.381,2309146.489,397497.2766,21
+88306,1061112.555,2309493.439,394967.5653,21
+88307,1057656.188,2308691.684,392196.9753,21
+88308,1057638.409,2307492.209,390114.1665,21
+88309,1055892.259,2307252.641,387667.7551,21
+88310,1052810.265,2305911.191,384569.3779,21
+88311,1052630.222,2307905.123,383216.9795,21
+88312,1049673.842,2304427.35,379948.2458,21
+88313,1048169.637,2304920.376,377649.9608,21
+88314,1046880.441,2306185.078,374785.1265,21
+88315,1044603.774,2305934.849,372959.5287,21
+88316,1043303.379,2304629.496,369123.7191,21
+88317,1041194.796,2305492.009,367532.3794,21
+88318,1040649.198,2303158.839,364611.1561,21
+88319,1037316.605,2304474.798,362086.6594,21
+88320,1036577.228,2302340.09,359580.1912,21
+88321,822626.2685,2065994.586,232013.3955,21
+88322,816019.1174,2042022.183,222635.6528,21
+88323,813605.3835,2040473.532,217817.9379,21
+88324,811048.2173,2033170.522,213857.6775,21
+88325,809160.8773,1996966.805,209462.3547,21
+88326,806077.3486,1987042.941,205410.7312,21
+88327,804819.5053,1975991.476,200867.3587,21
+88328,802408.93,1970208.816,197063.6148,21
+88329,800129.2913,1962190.872,192376.494,21
+88330,798700.0423,1955969.378,190251.373,21
+88331,796413.6804,1948772.517,187440.8203,21
+88332,794423.3367,1941633.696,185458.3663,21
+88333,792238.2734,1935140.442,182963.8911,21
+88334,791125.3344,1929270.212,181022.2112,21
+88335,788241.6773,1922718.478,178378.1538,21
+88336,787487.1649,1915658.991,176552.2421,21
+88337,784711.2607,1910534.724,174229.2699,21
+88338,783498.4709,1904061.882,172077.5328,21
+88339,779952.5797,1897418.022,169874.7981,21
+88340,777419.4327,1891568.468,168020.3299,21
+88341,776658.5861,1885532.835,165785.5856,21
+88342,773260.4339,1879563.887,164011.0067,21
+88343,772604.304,1873347.365,162035.7163,21
+88344,770599.869,1868478.758,159793.472,21
+88345,768732.2593,1860286.839,158016.7033,21
+88346,766688.8691,1856340.257,156251.2173,21
+88347,764996.7232,1849402.949,153927.2209,21
+88348,763533.1382,1844676.504,151890.3782,21
+88349,761664.4919,1837606.617,150212.457,21
+88350,759422.3207,1832511.042,148030.9497,21
+88351,758621.1897,1828254.116,146427.083,21
+88352,756442.63,1819684.055,144086.9245,21
+88353,755040.9169,1816438.867,143210.5396,21
+88354,753705.0169,1810359.017,141613.2527,21
+88355,751548.8755,1804522.546,140130.2394,21
+88356,750836.8031,1799394.158,138763.9632,21
+88357,748596.6401,1793797.134,137071.5688,21
+88358,747206.6014,1787533.562,135789.3439,21
+88359,746198.141,1781989.8,134465.9968,21
+88360,744164.9437,1777430.8,132942.1592,21
+88361,743132.0274,1770248.167,131317.1577,21
+88362,740980.5223,1766570.139,130243.554,21
+88363,739789.3425,1759422.282,128867.7972,21
+88364,738536.7027,1754176.859,127690.9292,21
+88365,736602.4864,1749791.147,126305.4795,21
+88366,735240.073,1743358.164,125380.9439,21
+88367,733587.4977,1738178.524,123964.2076,21
+88368,732196.0157,1733140.849,123145.9851,21
+88369,730303.3104,1727484.912,121886.6937,21
+88370,729005.2916,1721908.467,120601.364,21
+88371,727516.5791,1716684.061,119537.3846,21
+88372,725879.173,1711635.751,118593.7585,21
+88373,724125.1898,1705596.889,117178.5211,21
+88374,723136.7878,1703526.533,116520.6482,21
+88375,721314.555,1695965.351,114973.0145,21
+88376,719249.6196,1691836.949,114271.7643,21
+88377,718393.9252,1687449.733,112947.3042,21
+88378,716517.2355,1680410.37,111922.3979,21
+88379,715091.4424,1677347.213,111026.4387,21
+88380,713876.3175,1670383.398,44703.83523,21
+88381,711024.769,1665023.321,44738.67784,21
+88382,709122.2617,1656863.936,43764.13439,21
+88383,706500.3139,1650534.15,43203.62888,21
+88384,704439.4317,1642476.431,42835.14042,21
+88385,702142.8823,1637503.377,41974.1502,21
+88386,697463.8448,1628812.429,41598.8382,21
+88387,694789.0174,1622661.137,40910.18857,21
+88388,692140.9243,1615299.5,40352.90214,21
+88389,689440.2976,1605945.449,39858.63717,21
+88390,687294.3603,1600622.481,39216.43391,21
+88391,685208.4577,1592492.898,38569.80574,21
+88392,682239.5186,1586660.048,38000.10083,21
+88393,680197.9466,1578602.913,37570.82422,21
+88394,677766.766,1858254.982,36689.1129,21
+88395,676286.0806,1565474.96,36461.63424,21
+88396,673135.4674,1557850.951,35880.85132,21
+88397,670760.6645,1551513.316,34882.51272,21
+88398,668372.8446,1543211.842,34747.53829,21
+88399,666506.2187,1537225.648,33992.64203,21
+88400,663750.7268,1530043.907,33486.19163,21
+88401,661396.8651,1523277.35,32971.58912,21
+88402,659150.0225,1517417.348,32106.83107,21
+88403,657048.015,1511360.862,31863.78855,21
+88404,654276.8217,1504666.12,31186.76337,21
+88405,652338.0285,1499516.02,30460.11685,21
+88406,649471.6656,1492962.153,30140.54172,21
+88407,647398.2053,1487020.188,29585.65819,21
+88408,644861.8971,1480848.154,28808.15086,21
+88409,642254.144,1474822.093,28414.78979,21
+88410,640097.1722,1468798.814,27767.51238,21
+88411,637805.0179,1749423.982,27076.27588,21
+88412,634850.9292,1457140.465,26456.13514,21
+88413,633466.3952,1451177.089,25575.56311,21
+88414,630438.6562,1444986.472,24934.49522,21
+88415,627557.1681,1439582.655,24361.42904,21
+88416,625837.9908,1433095.885,23418.03133,21
+88417,622918.8974,1427965.085,23049.8649,21
+88418,620516.7343,1421656.869,21939.18932,21
+88419,618007.9647,1415797.268,21570.81901,21
+88420,615879.3523,1410514.249,21485.79681,21
+88421,613174.2226,1404421.658,20810.63642,21
+88422,611437.6435,1398713.927,20509.2275,21
+88423,608543.8283,1393050.534,20306.96649,21
+88424,605681.5779,1387280.465,20096.74437,21
+88425,603998.542,1381552.84,19857.51977,21
+88426,600907.1851,1376188.691,19491.77017,21
+88427,598735.8551,1369920.501,19456.6578,21
+88428,596603.5858,1364902.087,18887.81288,21
+88429,593717.2683,1359120.823,18577.79009,21
+88430,591898.9948,1353585.903,18505.28337,21
+88431,589237.1089,1348028.387,17940.76545,21
+88432,587227.9581,1342863.497,17899.60518,21
+88433,584131.5559,1336544.891,17401.85014,21
+88434,582328.2225,1331974.183,17235.09107,21
+88435,579837.5335,1325644.337,16784.79373,21
+88436,579146.9226,1320935.134,16593.78881,21
+88437,577200.2808,1315492.776,16239.25945,21
+88438,576202.4664,1310430.316,15971.45322,21
+88439,574668.9858,1304897.555,15718.38369,21
+88440,573125.1342,1300152.329,15317.25091,21
+88441,576801.6689,1295387.477,14533.80093,21
+88442,576476.5099,1301172.688,14151.51475,21
+88443,575865.038,1295191.338,13898.34537,21
+88444,575416.7167,1295593.722,13409.50778,21
+88445,575047.8795,1293229.051,13248.85887,21
+88446,574590.6575,1290515.115,12896.68758,21
+88447,574171.6863,1288637.402,12668.42591,21
+88448,573423.2229,1285964.665,12201.89833,21
+88449,573910.0111,1283776.751,11888.71524,21
+88450,572815.0898,1280996.104,11748.68991,21
+88451,572408.3372,1277067.544,11198.25616,21
+88452,572314.6554,1275016.421,10920.16095,21
+88453,571727.1035,1272251.831,10631.32499,21
+88454,571149.8529,1270501.543,10396.95692,21
+88455,571401.7738,1267549.354,9889.45226,21
+88456,570848.6285,1265863.834,9702.538311,21
+88457,570332.6344,1263161.654,9330.428146,21
+88458,570668.9928,1261257.317,9006.545714,21
+88459,570015.9629,1258923.13,8601.891248,21
+88460,569669.7997,1256592.167,8590.32718,21
+88461,569542.7689,1254216.034,7893.91168,21
+88462,569556.8382,1252374.53,7842.047701,21
+88463,569302.6029,1249854.393,7347.51888,21
+88464,569134.756,1247903.059,7141.320489,21
+88465,569310.305,1245696.993,6739.224188,21
+88466,569179.1774,1244054.356,6573.742906,21
+88467,569626.9953,1243972.112,6181.06256,21
+88468,569095.6305,1242533.394,5815.784248,21
+88469,569197.8094,1241742.322,5591.392851,21
+88470,568863.2521,1240885.329,5392.273598,21
+88471,569220.6567,1240149.453,4862.931382,21
+88472,569737.8726,1239312.673,4806.78685,21
+88473,569242.3712,1238657.18,4591.141647,21
+88474,570310.9135,1237748.352,4064.467802,21
+88475,570089.7887,1237092.45,4156.561064,21
+88476,570819.9097,1237614.609,3622.784443,21
+88477,570705.7434,1236820.656,3609.528148,21
+88478,570942.8848,1236366.129,3341.970302,21
+88479,571593.6514,1235464.794,2988.802786,21
+88480,571622.6671,1235459.453,2900.522436,21
+88481,572062.3358,1234658.021,2682.37863,21
+88482,572526.1492,1234603.6,2638.054054,21
+88483,572715.1294,1232444.332,2552.284387,21
+88484,573366.7349,1231815.492,2479.964485,21
+88485,573799.1537,1231401.052,2452.213183,21
+88486,573938.3149,1231172.275,2362.458481,21
+88487,574092.0659,1230813.604,2290.816858,21
+88488,574669.312,1229818.163,2247.078979,21
+88489,575065.3298,1230064.863,2173.381389,21
+88490,575162.4115,1229407.546,2113.654945,21
+88491,575466.9982,1229493.65,2039.295509,21
+88492,576142.688,1228769.691,1994.734674,21
+88493,576152.23,1228915.818,1919.662266,21
+88494,577042.0816,1228260.933,1844.09336,21
+88495,576838.5015,1228268.128,1813.555216,21
+88496,577106.4116,1227797.791,1722.129227,21
+88497,577601.8198,1227840.156,1675.357964,21
+88498,577811.9849,1227469.043,1613.879776,21
+88499,577776.2862,1227306.66,1550.341347,21
+88500,578443.9954,1226919.23,1486.078133,21
+88501,572575.5875,1219900.45,1534.770581,21
+88502,572533.8667,1216982.945,1486.809354,21
+88503,573347.5816,1214812.149,1454.255546,21
+88504,572506.4251,1212441.917,1438.296476,21
+88505,571986.9656,1210224.977,1406.286153,21
+88506,571947.1883,1207745.674,1390.261399,21
+88507,571866.8171,1205358.669,1374.214325,21
+88508,571346.4359,1203023.481,1342.028373,21
+88509,571597.1047,1201233.022,1325.913654,21
+88510,571138.9873,1199725.433,1293.592521,21
+88511,570703.1552,1198664.188,1277.408563,21
+88512,571376.0634,1196180.625,1244.948892,21
+88513,570237.9974,1193421.382,1228.693982,21
+88514,570235.0164,1191933.518,1196.092163,21
+88515,569753.6253,1189098.73,1163.393622,21
+88516,569887.6191,1187034.11,1163.41172,21
+88517,568831.2553,1184864.092,1130.614073,21
+88518,569151.7315,1182178.794,1097.71594,21
+88519,568563.8755,1180723.254,1097.73209,21
+88520,568367.03,1177677.153,1048.183654,21
+88521,568224.7251,1175934.049,1048.198405,21
+88522,567726.154,1173218.48,1015.039063,21
+88523,567045.4866,1171318.846,998.4257201,21
+88524,567109.7711,1169011.737,965.102878,21
+88525,566174.1394,1166376.643,948.4057066,21
+88526,565945.7616,1164304.444,914.9134794,21
+88527,565905.8236,1162006.799,914.9247695,21
+88528,564898.7185,1159443.358,864.4614524,21
+88529,564951.2052,1157631.761,864.4715508,21
+88530,564849.4011,1154718.914,830.6818731,21
+88531,563861.9702,1152846.628,796.7675895,21
+88532,563423.6277,1149967.859,796.7761901,21
+88533,562473.0879,1148417.978,745.6582878,21
+88534,562302.0514,1144956.748,745.6658356,21
+88535,561432.9207,1143463.423,694.2450124,21
+88536,560976.4331,1140755.971,694.2515687,21
+88537,560420.7201,1138159.99,659.7967573,21
+88538,559543.6237,1135877.088,625.1946047,21
+88539,559790.9686,1133692.145,607.8389751,21
+88540,558417.3419,1130500.649,590.4439828,21
+88541,557908.3117,1128930.867,555.5280929,21
+88542,557104.0174,1125835.077,538.0098123,21
+88543,556749.2079,1123679.951,502.8392349,21
+88544,555829.6226,1120205.165,485.1883855,21
+88545,555173.6945,1118367.589,467.4909048,21
+88546,554961.1573,1114552.277,414.099675,21
+88547,553967.615,1113044.737,414.1020347,21
+88548,554003.6408,1109725.476,378.2484986,21
+88549,552888.7706,1107000.132,360.2390107,21
+88550,552001.1192,1104231.767,324.0396537,21
+88551,551668.1849,1101713.938,305.8462246,21
+88552,550824.6202,1098705.165,269.2538348,21
+88553,550209.0775,1096368.098,250.8487334,21
+88554,549787.0674,1092859.909,232.3649083,21
+88555,549231.3101,1085745.019,195.1392247,21
+88556,548227.339,1079606.929,176.3849628,21
+88557,548595.5209,1077186.978,138.5494658,21
+88558,547306.5398,1072358.034,138.5497335,21
+88559,546459.1193,1068062.901,80.77240324,21
+88560,546360.0102,1061726.748,80.7724946,21
+88561,566089.9467,1087987.975,573.0601822,21
+88562,566502.4676,1085332.074,555.5821635,21
+88563,567123.1319,1082912.631,520.4950174,21
+88564,567779.5771,1079687.246,520.4987262,21
+88565,568020.8811,1077357.775,485.2351708,21
+88566,569015.3669,1074690.144,467.5358709,21
+88567,569239.533,1071538.468,431.9892312,21
+88568,569456.555,1069444.246,414.1416476,21
+88569,570362.3961,1066321.016,396.2413664,21
+88570,570995.7559,1063819.457,360.2732598,21
+88571,571116.8516,1061511.941,342.2031737,21
+88572,571959.6167,1058267.591,324.0717267,21
+88573,572384.6711,1055703.862,287.6087327,21
+88574,573128.7144,1053168.302,269.2819139,21
+88575,574307.2522,1050157.555,250.8722229,21
+88576,573670.9232,1047890.106,213.8168934,21
+88577,575032.999,1044659.702,213.8175344,21
+88578,575138.3807,1042098.119,157.5396917,21
+88579,575502.8191,1039629.42,166.9847663,21
+88580,576306.3238,1036624.372,119.4559139,21
+88581,573300.8815,1033787.62,119.4561127,21
+88582,574472.3117,1030444.738,80.77989717,21
+88583,574631.8197,1028349.271,61.15218234,21
+88584,574435.7686,1024930.352,41.26384024,21
+88585,574675.4826,1022401.147,31.1923131,21
+88586,574271.037,1019666.177,0,21
+88587,574643.8538,1016600.438,0,21
+88588,574404.3793,1013927.404,0,21
+88589,574123.4026,1011345.58,0,21
+88590,574299.9429,1008529.573,0,21
+88591,574202.7395,1005694.859,0,21
+88592,574449.506,1003048.735,0,21
+88593,574422.5526,1000238.884,0,21
+88594,574886.1603,997858.3609,0,21
+88595,574653.3788,995293.8129,0,21
+88596,575335.8389,992536.8866,0,21
+88597,575197.7842,989989.9934,0,21
+88598,575587.3407,987404.6644,0,21
+88599,575318.0502,984659.049,0,21
+88600,576304.2821,982833.0207,0,21
+88601,575910.8933,979725.5663,0,21
+88602,576311.3276,977061.1752,0,21
+88603,576793.1846,974793.8422,0,21
+88604,576908.3341,972459.9213,0,21
+88605,577222.1937,969974.1207,0,21
+88606,577530.182,967164.4457,0,21
+88607,577841.2922,965355.5609,0,21
+88608,578239.6697,962139.143,0,21
+88609,578622.0702,960283.6149,0,21
+88610,578969.81,957879.1192,0,21
+88611,579347.7622,955293.6118,0,21
+88612,579668.7904,952758.8627,0,21
+88613,580108.6599,950911.4339,0,21
+88614,580640.9292,948105.8661,0,21
+88615,580976.631,945867.8623,0,21
+88616,581471.8814,943690.9874,0,21
+88617,582079.9084,941153.22,0,21
+88618,582134.8731,938921.5254,0,21
+88619,583225.9268,936458.3407,0,21
+88620,583072.2634,934080.1488,0,21
+88621,560091.926,906142.1834,0,21
+88622,559689.783,904161.0253,0,21
+88623,559181.6244,902929.3037,0,21
+88624,560139.8394,902225.7603,0,21
+88625,559709.5579,900372.0766,0,21
+88626,559925.8274,899494.8425,0,21
+88627,560074.0559,897054.5137,0,21
+88628,560004.155,896884.5359,0,21
+88629,560279.1924,894607.5032,0,21
+88630,560543.6262,893881.6403,0,21
+88631,560584.9941,892212.8024,0,21
+88632,560173.5575,890702.9933,0,21
+88633,561181.8713,889778.7329,0,21
+88634,560738.3451,888595.717,0,21
+88635,561153.5778,886629.0693,0,21
+88636,561060.1056,886053.6775,0,21
+88637,561288.4617,884209.9936,0,21
+88638,561645.0023,883379.2335,0,21
+88639,561389.7025,881885.1231,0,21
+88640,561994.2926,880728.1526,0,21
+88641,561912.9906,879642.4128,0,21
+88642,562086.8448,878664.2691,0,21
+88643,562333.6863,876983.6578,0,21
+88644,562312.3667,876218.3897,0,21
+88645,562608.4409,875074.8027,0,21
+88646,562815.8063,873925.8432,0,21
+88647,562915.2984,872709.1761,0,21
+88648,562880.3128,871577.2681,0,21
+88649,563227.2501,870644.6187,0,21
+88650,563179.7328,869584.5129,0,21
+88651,563789.5213,868655.3422,0,21
+88652,564131.8438,867496.9041,0,21
+88653,564650.5863,866879.0668,0,21
+88654,564910.9811,866029.3174,0,21
+88655,565592.5354,864435.0005,0,21
+88656,565922.3953,864682.5145,0,21
+88657,566151.7261,862775.0899,0,21
+88658,567168.6413,862600.0825,0,21
+88659,567060.6475,861285.8355,0,21
+88660,567671.3303,862744.3706,0,21
+88661,568439.5234,862422.3756,0,21
+88662,568466.6771,860995.0706,0,21
+88663,568791.9392,860350.6561,0,21
+88664,569745.488,859903.9507,0,21
+88665,569932.4961,859244.9974,0,21
+88666,570442.0352,857629.0746,0,21
+88667,570817.9796,857973.1201,0,21
+88668,571216.3391,856353.8043,0,21
+88669,573108.6262,856075.0966,0,21
+88670,574053.0256,855077.8895,0,21
+88671,574361.0334,853045.6167,0,21
+88672,575032.6595,852414.2474,0,21
+88673,575515.7549,851271.2015,0,21
+88674,575851.4284,850589.761,0,21
+88675,576788.7925,849923.2806,0,21
+88676,577145.4022,848967.0978,0,21
+88677,577261.8337,848258.6082,0,21
+88678,578490.8662,847195.3409,0,21
+88679,578290.6962,846500.0754,0,21
+88680,579197.027,845499.6538,0,21
+88681,584879.2229,849956.6753,0,21
+88682,585924.2652,848390.0955,0,21
+88683,586620.4356,848768.3011,0,21
+88684,587535.1761,847656.4273,0,21
+88685,588143.6125,846928.4161,0,21
+88686,589445.1753,846250.6059,0,21
+88687,589919.9366,845801.2474,0,21
+88688,590858.991,844795.7805,0,21
+88689,591644.4225,844098.9163,0,21
+88690,592380.0022,843850.9074,0,21
+88691,592370.6657,842368.835,0,21
+88692,592759.9571,842320.3183,0,21
+88693,592938.6199,840809.965,0,21
+88694,593295.841,840746.1309,0,21
+88695,593882.271,839171.5369,0,21
+88696,593707.8768,838871.2068,0,21
+88697,594340.3194,838303.7397,0,21
+88698,594684.4885,836907.5159,0,21
+88699,594688.9904,836417.1613,0,21
+88700,595364.8217,835231.1116,0,21
+88701,595635.1089,834701.6441,0,21
+88702,596253.0558,833713.9037,0,21
+88703,595861.3128,832805.2786,0,21
+88704,597562.5426,831681.839,0,21
+88705,598141.3226,831425.8591,0,21
+88706,598227.9144,829848.0104,0,21
+88707,598996.224,829541.074,0,21
+88708,599160.4595,827973.5618,0,21
+88709,599518.0002,827407.5056,0,21
+88710,600387.6202,826299.1217,0,21
+88711,600267.1018,825707.0077,0,21
+88712,600812.9117,825055.3377,0,21
+88713,601242.3941,823718.2546,0,21
+88714,601396.6509,823418.2834,0,21
+88715,601910.8732,822302.9753,0,21
+88716,602319.0697,821668.0891,0,21
+88717,602532.4899,820503.2928,0,21
+88718,603083.6279,820495.7783,0,21
+88719,603327.7763,818939.8717,0,21
+88720,603707.0319,818868.4124,0,21
+88721,604259.8648,817415.4347,0,21
+88722,604385.174,817111.3846,0,21
+88723,604951.1494,816152.5578,0,21
+88724,605336.3379,815498.3505,0,21
+88725,605816.4503,814401.694,0,21
+88726,606064.8335,814212.4091,0,21
+88727,606758.8146,813171.0041,0,21
+88728,607045.826,812542.3506,0,21
+88729,607340.4133,811932.1727,0,21
+88730,608023.2219,810989.1374,0,21
+88731,608291.3053,810404.1657,0,21
+88732,608783.356,809779.5442,0,21
+88733,609063.518,809040.7299,0,21
+88734,609943.2728,808284.6125,0,21
+88735,610002.739,807832.3957,0,21
+88736,610540.065,806758.8464,0,21
+88737,611330.8632,806362.93,0,21
+88738,611271.2989,805840.7557,0,21
+88739,612115.875,804844.4874,0,21
+88740,612616.4352,804184.3367,0,21
+88741,607003.1007,799290.4939,0,21
+88742,606670.2897,798071.8244,0,21
+88743,606823.7109,798256.7388,0,21
+88744,606356.3885,797309.2855,0,21
+88745,606323.6287,796986.5984,0,21
+88746,606350.7333,796417.8853,0,21
+88747,606649.2447,795819.5426,0,21
+88748,607217.1991,795679.8632,0,21
+88749,606695.9307,795111.1182,0,21
+88750,606988.7559,794481.466,0,21
+88751,606954.4187,794306.3922,0,21
+88752,606672.7877,793633.6175,0,21
+88753,606527.885,793261.4533,0,21
+88754,606806.5854,794079.9831,0,21
+88755,606569.8064,793432.4436,0,21
+88756,606203.9197,793201.8785,0,21
+88757,606547.9436,792776.9122,0,21
+88758,606267.288,792297.3976,0,21
+88759,606326.879,791769.7649,0,21
+88760,606114.2501,791867.7843,0,21
+88761,606253.5644,790809.3246,0,21
+88762,606234.2894,791010.8697,0,21
+88763,606055.2885,790506.2497,0,21
+88764,605839.1288,788846.093,0,21
+88765,606244.8721,788966.8809,0,21
+88766,605791.7316,788455.1647,0,21
+88767,605916.1886,788217.4176,0,21
+88768,606001.4303,788236.8844,0,21
+88769,605592.8568,787917.4775,0,21
+88770,606014.5648,787789.7266,0,21
+88771,605448.5988,787797.2736,0,21
+88772,605799.8035,788096.9735,0,21
+88773,605471.29,788292.3562,0,21
+88774,605084.7473,788260.7939,0,21
+88775,605297.3204,788828.296,0,21
+88776,604753.8561,788733.8451,0,21
+88777,604929.3735,789036.2407,0,21
+88778,604787.2565,789487.948,0,21
+88779,604433.9062,789365.8106,0,21
+88780,604671.8333,789606.0854,0,21
+88781,604069.2749,790181.1383,0,21
+88782,604079.1979,789641.3208,0,21
+88783,604152.7007,790095.0788,0,21
+88784,603541.2985,790580.2614,0,21
+88785,603980.8641,790333.4845,0,21
+88786,603197.2056,790868.5424,0,21
+88787,603433.4012,790930.2574,0,21
+88788,603302.9111,791085.9007,0,21
+88789,603078.9244,791652.4602,0,21
+88790,602790.6099,791225.646,0,21
+88791,602908.4537,792206.9598,0,21
+88792,602395.6881,791769.0386,0,21
+88793,602818.4988,792686.8276,0,21
+88794,602240.7237,792477.4094,0,21
+88795,602384.0013,793006.4181,0,21
+88796,602253.315,792882.084,0,21
+88797,602059.5899,792766.7461,0,21
+88798,602051.6573,791848.0396,0,21
+88799,601690.1864,790736.4404,0,21
+88800,601727.2966,789895.1959,0,21
+88801,602720.3241,790819.2772,0,21
+88802,603129.6697,791266.684,0,21
+88803,603949.0864,791902.2551,0,21
+88804,604965.5132,791812.2421,0,21
+88805,605382.9555,792086.794,0,21
+88806,606661.3427,792992.8697,0,21
+88807,607034.9479,792931.7147,0,21
+88808,607764.0826,793138.5199,0,21
+88809,609105.9635,793753.8213,0,21
+88810,609348.7313,794077.6941,0,21
+88811,610224.7859,794565.7819,0,21
+88812,611025.4405,794461.3425,0,21
+88813,611674.5055,795264.4932,0,21
+88814,612672.3957,795491.6065,0,21
+88815,613203.8946,796008.0788,0,21
+88816,613903.3202,796333.4317,0,21
+88817,615306.7494,796786.9567,0,21
+88818,615980.4415,797198.3654,0,21
+88819,616586.4349,797531.27,0,21
+88820,617852.739,798206.2702,0,21
+88821,618222.8726,798121.4301,0,21
+88822,619323.9633,799281.2222,0,21
+88823,619938.9612,799150.5976,0,21
+88824,620798.3652,799896.5617,0,21
+88825,621679.3815,800148.5313,0,21
+88826,622331.3036,800881.6387,0,21
+88827,623412.3802,801308.5726,0,21
+88828,623794.4515,801599.6481,0,21
+88829,624760.3584,802293.1993,0,21
+88830,625970.3516,802560.2044,0,21
+88831,626704.7868,803411.3829,0,21
+88832,627839.1221,804272.9439,0,21
+88833,629013.1534,804267.3512,0,21
+88834,629991.5141,805676.9731,0,21
+88835,631569.068,805721.8051,0,21
+88836,632334.9533,806904.202,0,21
+88837,633714.5553,807454.9747,0,21
+88838,634943.1265,808014.2927,0,21
+88839,636199.6198,808988.3492,0,21
+88840,637272.7398,809651.9294,0,21
+88841,638482.0525,810521.014,0,21
+88842,640147.8688,811081.356,0,21
+88843,641071.8555,811994.9664,0,21
+88844,642260.4894,812952.5059,0,21
+88845,643617.4,813661.9029,0,21
+88846,644871.9229,814250.7538,0,21
+88847,646226.0495,815486.6091,0,21
+88848,647200.8341,816153.2995,0,21
+88849,648961.5581,816972.9386,0,21
+88850,650176.7242,817736.5659,0,21
+88851,651025.7153,818933.0883,0,21
+88852,652782.9026,819574.1418,0,21
+88853,654553.4247,820512.7642,0,21
+88854,655072.9843,821650.2649,0,21
+88855,656855.847,822368.9624,0,21
+88856,657977.9138,823566.3441,0,21
+88857,659451.411,824130.3779,0,21
+88858,660840.4817,825565.2905,0,21
+88859,662173.133,826222.0007,0,21
+88860,663493.0075,827225.9939,0,21
+88861,704717.6632,869830.1456,0,21
+88862,708222.3384,875856.5926,0,21
+88863,710245.4472,879515.4291,0,21
+88864,735206.9274,889292.2651,0,21
+88865,722248.9018,901593.2548,0,21
+88866,729197.3242,900697.9867,0,21
+88867,731597.1774,907303.5659,0,21
+88868,733589.5014,911345.5356,0,21
+88869,736598.4154,916359.7126,0,21
+88870,738368.0097,920688.4717,0,21
+88871,741100.0848,927007.4774,0,21
+88872,742995.2877,930366.8268,0,21
+88873,745447.9771,935812.2116,0,21
+88874,747796.6318,939900.9156,0,21
+88875,750423.4657,944958.7869,0,21
+88876,752141.7825,949402.4658,0,21
+88877,754913.0796,966852.9879,0,21
+88878,756719.1953,965065.3866,0,21
+88879,759087.1702,973147.2327,0,21
+88880,761653.3414,979070.1691,0,21
+88881,763600.1081,984870.9801,0,21
+88882,765522.6178,990826.0793,0,21
+88883,768536.9006,996474.9433,0,21
+88884,770075.6787,1002248.877,0,21
+88885,772162.5145,1008026.886,0,21
+88886,775004.931,1013011.416,0,21
+88887,776373.4593,1019467.222,0,21
+88888,779305.2775,1024467.716,0,21
+88889,781257.0944,1030187.696,0,21
+88890,783336.6553,1035292.15,0,21
+88891,784611.5627,1040529.942,0,21
+88892,786900.7037,1045155.748,0,21
+88893,789237.6822,1049650.237,0,21
+88894,790854.7055,1054677.356,0,21
+88895,792460.4652,1058627.874,0,21
+88896,794574.0659,1063262.592,0,21
+88897,796039.7944,1067888.752,0,21
+88898,798276.7834,1072547.835,0,21
+88899,799434.7598,1076312.108,0,21
+88900,801364.93,1081037.622,0,21
+88901,803282.6406,1085037.144,0,21
+88902,804713.7562,1089452.247,0,21
+88903,806586.2899,1093897.008,0,21
+88904,808112.9058,1097569.166,0,21
+88905,810056.5107,1101913.579,0,21
+88906,810994.3228,1106090.844,0,21
+88907,813225.6704,1110054.035,0,21
+88908,814990.3434,1114119.256,0,21
+88909,816090.7219,1118104.677,0,21
+88910,817903.7473,1122261.393,0,21
+88911,819289.7559,1126143.915,0,21
+88912,821345.3447,1129629.982,0,21
+88913,822243.1744,1133552.369,0,21
+88914,824187.9488,1137728.971,0,21
+88915,826093.7088,1141478.232,0,21
+88916,826802.319,1144801.688,0,21
+88917,829087.2336,1149358.578,0,21
+88918,831469.1651,1151293.824,0,21
+88919,832587.3224,1156884.926,0,21
+88920,834648.3617,1157788.785,0,21
+88921,863227.3243,1183634.037,0,21
+88922,867375.0772,1187962.507,0,21
+88923,869762.9677,1191754.188,0,21
+88924,870703.9971,1215552.459,0,21
+88925,873534.3651,1247837.973,0,21
+88926,874468.5187,1227842.234,0,21
+88927,877135.4091,1240881.958,0,21
+88928,877965.1666,1244412.298,0,21
+88929,880459.8681,1248795.539,0,21
+88930,881321.7291,1253075.31,0,21
+88931,883687.2224,1256915.632,0,21
+88932,884554.069,1259798.303,0,21
+88933,887014.507,1265578.834,0,21
+88934,887477.3306,1267953.117,0,21
+88935,890104.4957,1271425.389,0,21
+88936,890969.618,1276602.977,0,21
+88937,892431.971,1278973.596,0,21
+88938,894235.0061,1282250.954,0,21
+88939,895518.3497,1287933.654,0,21
+88940,896683.5828,1289715.282,0,21
+88941,898541.3605,1292981.231,0,21
+88942,899521.3267,1297747.901,0,21
+88943,901573.7224,1300868.235,0,21
+88944,902103.9342,1303186.771,0,21
+88945,904028.5442,1308532.609,0,21
+88946,905227.0799,1310137.013,0,21
+88947,906627.7135,1315291.302,0,21
+88948,907739.7841,1316379.591,0,21
+88949,909345.2326,1320936.717,0,21
+88950,910199.1508,1324247.861,0,21
+88951,912221.9082,1327291.777,0,21
+88952,912792.1338,1330659.718,0,21
+88953,914497.0341,1333301.366,0,21
+88954,915261.3196,1337929.011,0,21
+88955,916929.67,1339303.979,0,21
+88956,917959.4901,1343958.872,0,21
+88957,919360.1102,1346343.479,0,21
+88958,920590.7685,1349531.192,0,21
+88959,920994.8102,1353382.942,0,21
+88960,923453.7151,1354626.322,0,21
+88961,923471.3169,1358629.136,0,21
+88962,925560.8359,1362348.079,0,21
+88963,926085.3368,1364126.281,0,21
+88964,927596.3942,1367916.844,0,21
+88965,928323.2341,1371607.338,0,21
+88966,929782.4078,1372506.487,0,21
+88967,930614.655,1377564.739,0,21
+88968,932115.2113,1379440.481,0,21
+88969,933393.3914,1383344.559,0,21
+88970,933696.9507,1384158.052,0,21
+88971,935251.4419,1390047.043,0,21
+88972,936609.051,1390145.935,0,21
+88973,936823.8789,1394633.131,0,21
+88974,938924.3802,1397252.529,0,21
+88975,939098.6022,1399788.691,0,21
+88976,941019.8269,1403735.933,0,21
+88977,941197.0408,1405870.388,642.4323423,21
+88978,942634.4067,1409431.422,1700.724145,21
+88979,943859.9941,1413310.756,1253.038666,21
+88980,944979.3392,1413628.948,1700.793865,21
+88981,946050.7591,1420685.044,1848.588305,21
+88982,946940.7389,1423977.678,2142.213842,21
+88983,949192.6376,1427119.601,2370.289472,21
+88984,949930.1298,1431209.336,2833.331999,21
+88985,951173.6032,1434745.509,2892.573429,21
+88986,952581.9473,1437780.245,3246.373446,21
+88987,954001.3276,1440894.998,3283.982171,21
+88988,954939.3651,1445712.124,3748.92652,21
+88989,956604.1388,1447530.216,3900.102986,21
+88990,957297.9704,1451829.494,3946.289734,21
+88991,958821.1543,1454320.541,4387.785727,21
+88992,960340.1156,1457433.111,4564.730516,21
+88993,961173.8047,1461736.96,4741.144039,21
+88994,962574.9255,1463971.755,5020.381024,21
+88995,967444.7685,1467381.18,5083.548006,21
+88996,971828.7606,1469958.825,5508.909291,21
+88997,971658.8728,1474675.757,5544.917714,21
+88998,974360.9004,1477028.927,5838.996829,21
+88999,975745.3376,1479696.934,6149.606766,21
+89000,977675.218,1484019.644,6176.515898,21
+89001,980611.7056,1486427.102,6477.095425,21
+89002,980358.834,1490072.297,6631.641534,21
+89003,984238.1382,1492263.749,6820.73546,21
+89004,984576.8434,1496627.937,7093.098747,21
+89005,986658.4278,1498851.844,7263.948124,21
+89006,988323.958,1502356.21,7434.462331,21
+89007,990504.5045,1505576.491,7722.281904,21
+89008,992032.1559,1508906.73,7757.411907,21
+89009,993253.2053,1511294.748,8178.475128,21
+89010,995244.6359,1514969.989,8196.453232,21
+89011,997163.1722,1518596.062,8382.394847,21
+89012,998126.4786,1520566.039,8650.611835,21
+89013,1000839.813,1525210.305,8951.974187,21
+89014,1001095.267,1526273.623,8853.695544,21
+89015,1004608.491,1531625.893,9270.424494,21
+89016,1004079.148,1532540.324,9420.936074,21
+89017,1007877.804,1537232.848,9588.051153,21
+89018,1006910.641,1539129.865,9754.916829,21
+89019,1011323.425,1542488.339,9888.160907,21
+89020,1010773.038,1545836.551,10202.91726,21
+89021,1013332.348,1548910.912,10204.2764,21
+89022,1015088.986,1551106.876,10649.28419,21
+89023,1016387.529,1555327.799,10519.65068,21
+89024,1017544.23,1558116.352,10947.00693,21
+89025,1020071.159,1559939.987,11112.14943,21
+89026,1020534.077,1564733.848,11113.75004,21
+89027,1022224.575,1566760.669,11425.39566,21
+89028,1024417.387,1569697.819,11557.19759,21
+89029,1025776.489,1573250.732,11817.37717,21
+89030,1026554.168,1575344.987,12349.8145,21
+89031,1029013.887,1579720.751,12249.13203,21
+89032,1029789.019,1580865.467,12632.30984,21
+89033,1031882.747,1585464.876,12663.48541,21
+89034,1032930.682,1587982.738,13142.9588,21
+89035,1034652.253,1590476.389,13063.034,21
+89036,1035802.707,1594167.872,13494.41316,21
+89037,1037418.855,1596621.77,13557.52239,21
+89038,1039607.257,1599691.586,13877.25467,21
+89039,1039566.679,1602147.195,13936.10378,21
+89040,1042520.14,1606658.962,14257.07472,21
+89041,1050769.647,1615587.608,15214.0822,21
+89042,1052427.079,1620690.931,15587.51537,21
+89043,1053749.158,1621964.441,15731.03262,21
+89044,1054381.491,1625740.904,16075.89169,21
+89045,1055104.029,1626690.167,16262.1801,21
+89046,1056093.783,1630809.384,16434.70385,21
+89047,1056669.104,1631548.983,16622.88321,21
+89048,1057106.246,1635815.943,16822.0598,21
+89049,1058985.709,1635841.497,17093.00527,21
+89050,1057944.19,1639876.551,17307.43839,21
+89051,1059498.583,1641750.829,17479.15235,21
+89052,1060401.381,1642932.887,17525.32636,21
+89053,1060530.377,1647004.685,18101.37923,21
+89054,1060491.179,1648041.353,17897.33478,21
+89055,1062818.976,1650343.16,18318.71279,21
+89056,1061791.073,1653626.673,18364.89319,21
+89057,1063546.657,1654294.98,18704.98738,21
+89058,1063126.911,1657847.259,18844.65682,21
+89059,1064780.015,1658404.925,21198.06894,21
+89060,1064587.258,1662412.781,20564.21724,21
+89061,1064829.233,1663790.988,21441.5663,21
+89062,1065907.555,1665590.921,21622.48863,21
+89063,1067310.747,1668593.28,22025.47682,21
+89064,1066153.787,1670701.468,22558.45879,21
+89065,1067459.831,1671239.657,22840.36779,21
+89066,1068083.66,1675679.491,23344.81103,21
+89067,1068465.54,1676601.171,23565.02797,21
+89068,1068246.702,1678200.339,24127.96769,21
+89069,1069831.302,1682546.666,24548.67271,21
+89070,1070104.184,1681928.419,25086.23928,21
+89071,1069714.991,1685375.504,25477.81732,21
+89072,1071407.112,1687696.293,25844.60391,21
+89073,1069627.007,1689737.803,26359.08967,21
+89074,1072631.862,1690810.079,26583.2385,21
+89075,1072129.438,1693625.736,27120.69993,21
+89076,1072132.8,1696081.717,27301.48628,21
+89077,1072497.945,1697477.84,28008.32129,21
+89078,1073801.01,1700295.459,28262.88077,21
+89079,1073822.773,1701702.57,28766.49406,21
+89080,1073703.697,1704628.149,28882.82029,21
+89081,1074580.401,1705139.313,29591.30568,21
+89082,1075616.966,1709461.211,29642.15856,21
+89083,1075239.841,1708810.924,30223.14491,21
+89084,1075193.841,1713147.661,30723.44914,21
+89085,1076259.916,1714774.025,31055.39499,21
+89086,1077092.894,1715277.608,31109.36804,21
+89087,1075708.811,1718938.284,31903.34618,21
+89088,1077724.692,1720125.691,31955.45352,21
+89089,1077688.778,1722526.737,32642.77372,21
+89090,1078058.388,1724224.26,32784.94804,21
+89091,1077731.944,1726137.142,33125.71206,21
+89092,1078374.544,1729036.668,33657.80586,21
+89093,1078827.458,1730727.456,33832.00984,21
+89094,1079367.54,1732109.886,34366.1049,21
+89095,1080315.731,1734080.205,34793.18681,21
+89096,1078655.112,1736981.476,34866.72228,21
+89097,1081294.615,1738435.873,35403.10339,21
+89098,1080337.209,1740404.107,35814.49846,21
+89099,1080847.855,1743197.911,35977.54612,21
+89100,1081214.776,1743260.92,36565.15347,21
+89101,1082425,1746534.964,36859.3847,21
+89102,1085838.569,1748920.168,37091.87011,21
+89103,1086576.354,1749941.136,37713.93471,21
+89104,1088193.974,1752484.636,38005.32401,21
+89105,1090115.6,1753261.671,38270.75543,21
+89106,1090248.621,1755314.938,38918.29718,21
+89107,1094246.401,1757811.075,39053.01224,21
+89108,1093569.934,1758084.15,39741.22931,21
+89109,1096295.119,1760102.85,39755.21807,21
+89110,1096978.09,1762051.295,40517.43645,21
+89111,1098988.354,1763197.881,40553.68154,21
+89112,1100144.983,1765440.248,41115.83064,21
+89113,1102396.587,1766491.347,41555.05568,21
+89114,1103105.429,1767635.667,41925.80564,21
+89115,1104302.382,1770924.896,42000.68632,21
+89116,1106847.391,1771237.93,42828.37461,21
+89117,1107728.061,1772571.9,42824.46362,21
+89118,1109896.215,1774969.417,43368.33814,21
+89119,1110502.087,1776998.929,43735.35496,21
+89120,1112037.639,1778613.498,44190.07057,21
+89121,1113856.237,1780692.524,44533.22049,21
+89122,1115905.687,1781407.189,44846.67264,21
+89123,1115997.88,1784629.592,45073.57574,21
+89124,1118497.637,1784874.791,45925.40118,21
+89125,1120145.754,1787971.133,45744.21165,21
+89126,1120793.383,1787838.605,47792.3557,21
+89127,1122825.984,1790392.818,48154.55448,21
+89128,1124410.279,1791392.111,48523.09966,21
+89129,1125268.745,1793646.829,49506.70232,21
+89130,1127318.55,1794782.39,49730.37931,21
+89131,1129098.175,1796587.244,50755.98722,21
+89132,1129636.902,1797676.531,51003.13151,21
+89133,1131351.129,1800858.151,51945.57298,21
+89134,1133105.285,1800453.372,52348.63472,21
+89135,1134997.545,1802596.117,52661.134,21
+89136,1135796.133,1804755.764,54054.59366,21
+89137,1137990.843,1805810.182,53888.91202,21
+89138,1137947.431,1807602.656,54933.5657,21
+89139,1141484.37,1808820.172,55413.35528,21
+89140,1142172.239,1810604.295,55997.8285,21
+89141,1142174.54,1812903.621,57104.32202,21
+89142,1145297.496,1813750.476,57341.38562,21
+89143,1146398.472,1814826.149,58156.46463,21
+89144,1148334.294,1817511.298,58748.83572,21
+89145,1148812.734,1818368.306,59374.76238,21
+89146,1150346.711,1820053.669,60037.27849,21
+89147,1152560.311,1821601.311,60459.82133,21
+89148,1153434.126,1824269.007,61174.20191,21
+89149,1155278.443,1823588.783,61941.39245,21
+89150,1157163.653,1826911.014,62553.8502,21
+89151,1156524.767,1828095.413,63023.08782,21
+89152,1160498.359,1828816.523,63577.06002,21
+89153,1160986.048,1832308.931,64454.80992,21
+89154,1161594.788,1831551.854,64871.5499,21
+89155,1165190.255,1834876,65609.65512,21
+89156,1163432.798,1835059.124,66203.9106,21
+89157,1168615.092,1837178.623,66621.23686,21
+89158,1166780.109,1839664.45,67454.19629,21
+89159,1170112.659,1839827.42,68073.53168,21
+89160,1170876.316,1841961.868,68349.64498,15.6
+89161,0,0,0,15.6
+89162,0,0,0,15.6
+89163,0,0,0,15.6
+89164,0,0,0,15.6
+89165,0,313.4865113,1268777.728,15.6
+89166,0,0,0,15.6
+89167,0,0,0,15.6
+89168,0,0,0,15.6
+89169,0,0,0,15.6
+89170,0,0,0,15.6
+89171,0,0,0,15.6
+89172,0,0,0,15.6
+89173,0,0,0,15.6
+89174,0,0,0,15.6
+89175,0,0,0,15.6
+89176,0,0,0,15.6
+89177,339215.6243,0,0,15.6
+89178,0,0,0,15.6
+89179,0,0,0,15.6
+89180,0,0,0,15.6
+89181,0,0,0,15.6
+89182,0,0,0,15.6
+89183,0,0,0,15.6
+89184,0,0,0,15.6
+89185,0,0,0,15.6
+89186,0,0,0,15.6
+89187,0,0,0,15.6
+89188,0,0,0,15.6
+89189,0,0,0,15.6
+89190,0,0,0,15.6
+89191,0,31751.79924,0,15.6
+89192,0,0,0,15.6
+89193,0,4822.548443,0,15.6
+89194,0,10372.82826,0,15.6
+89195,0,9891.377261,0,15.6
+89196,0,8885.417986,0,15.6
+89197,0,9505.311758,0,15.6
+89198,0,11008.98158,0,15.6
+89199,0,11314.38474,1217298.439,15.6
+89200,0,11304.83815,0,15.6
+89201,0,11740.29545,0,15.6
+89202,29039.62676,12142.73254,0,15.6
+89203,2090.311371,12465.93938,0,15.6
+89204,2703.500495,12652.05584,0,15.6
+89205,8594.635925,12949.81813,0,15.6
+89206,9788.602688,13163.75889,0,15.6
+89207,8650.977042,13447.21257,0,15.6
+89208,8860.699653,13607.80623,0,15.6
+89209,9210.693849,13889.67176,0,15.6
+89210,9330.540976,14145.16401,0,15.6
+89211,9529.526832,14348.63467,0,15.6
+89212,9605.877135,14540.50583,0,15.6
+89213,9750.249601,14826.43635,0,15.6
+89214,9896.22203,14963.62456,0,15.6
+89215,349210.554,15064.04597,0,15.6
+89216,10147.59943,15272.60528,0,15.6
+89217,10238.18523,15478.58631,0,15.6
+89218,10383.54916,15643.46893,0,15.6
+89219,10466.14194,15909.46238,0,15.6
+89220,10593.49096,16067.32057,0,15.6
+89221,10871.91979,0,0,15.6
+89222,11076.14739,0,0,15.6
+89223,11233.49462,0,0,15.6
+89224,11429.24711,0,0,15.6
+89225,11573.75425,56946.36905,0,15.6
+89226,11720.04031,1463.817947,0,15.6
+89227,11931.10505,11876.48266,0,15.6
+89228,12041.26363,20765.95572,0,15.6
+89229,12216.70226,15264.92421,0,15.6
+89230,12363.02206,15981.28201,0,15.6
+89231,12545.55489,15920.3893,0,15.6
+89232,0,15845.14327,0,15.6
+89233,0,15846.41196,0,15.6
+89234,0,15729.72966,1170291.928,15.6
+89235,0,15686.22737,0,15.6
+89236,0,15614.76883,0,15.6
+89237,52711.6788,15404.04601,0,15.6
+89238,0,15333.19195,0,15.6
+89239,8433.61307,15251.92211,0,15.6
+89240,19170.06971,15193.95901,0,15.6
+89241,13117.69375,15114.4112,0,15.6
+89242,14154.16366,15046.43011,0,15.6
+89243,14289.41789,14942.75026,0,15.6
+89244,14427.27923,14883.56945,0,15.6
+89245,14565.53668,14801.96863,0,15.6
+89246,14654.59212,14684.81388,0,15.6
+89247,14838.97806,14633.80718,0,15.6
+89248,14927.88174,14524.70203,0,15.6
+89249,15053.33955,14455.77838,0,15.6
+89250,15197.73634,14358.47828,0,15.6
+89251,15268.80839,14240.67554,0,15.6
+89252,15444.46267,14149.85374,0,15.6
+89253,354744.2527,14098.38895,0,15.6
+89254,15659.10709,13952.91686,0,15.6
+89255,15794.82998,0,0,15.6
+89256,15872.0019,0,0,15.6
+89257,16038.44523,0,0,15.6
+89258,16112.60027,0,0,15.6
+89259,16259.76949,46411.46495,0,15.6
+89260,16343.70257,1654.260254,0,15.6
+89261,16486.4267,7086.280963,0,15.6
+89262,16560.03397,18455.60041,0,15.6
+89263,16696.7299,12191.84916,0,15.6
+89264,16799.05261,12894.13702,0,15.6
+89265,16932.95138,12879.88115,0,15.6
+89266,16974.37251,12746.64238,0,15.6
+89267,0,12632.50881,0,15.6
+89268,0,12489.87841,0,15.6
+89269,0,12420.31695,1127393.314,15.6
+89270,61449.37202,12223.07255,0,15.6
+89271,1784.732326,12162.29933,0,15.6
+89272,12935.82763,11994.67526,0,15.6
+89273,22832.39675,11857.00829,0,15.6
+89274,17073.46939,11722.45363,0,15.6
+89275,18017.94426,11658.49012,0,15.6
+89276,18115.13109,11455.43052,0,15.6
+89277,18270.92913,11340.41452,0,15.6
+89278,18288.33522,11152.47079,0,15.6
+89279,18439.6907,10985.8183,0,15.6
+89280,18515.17656,10686.71362,0,15.6
+89281,19246.19817,11792.55559,0,15.6
+89282,19289.43589,12004.84146,0,15.6
+89283,19418.86314,12375.09454,0,15.6
+89284,19403.44995,12602.52047,0,15.6
+89285,19516.23782,12890.93455,0,15.6
+89286,19530.0624,13103.17949,0,15.6
+89287,19596.86166,13415.16297,0,15.6
+89288,19677.8608,13629.52449,0,15.6
+89289,19703.97234,0,0,15.6
+89290,19741.62994,0,0,15.6
+89291,19863.77558,0,0,15.6
+89292,359026.0849,0,0,15.6
+89293,19927.04794,50804.80326,0,15.6
+89294,19978.46174,1238.016076,0,15.6
+89295,20023.05021,10768.78607,0,15.6
+89296,20054.30509,20733.27795,0,15.6
+89297,20102.09603,15033.10592,0,15.6
+89298,20180.90699,16189.99157,0,15.6
+89299,20206.36667,16568.76089,0,15.6
+89300,0,16721.27786,0,15.6
+89301,0,17031.81681,0,15.6
+89302,0,17217.17725,0,15.6
+89303,73664.0462,17483.12608,0,15.6
+89304,7090.919404,17746.62043,1088245.283,15.6
+89305,9573.352307,17952.75494,0,15.6
+89306,28678.49203,18219.49923,0,15.6
+89307,19251.92273,18408.93689,0,15.6
+89308,20630.89086,18726.56655,0,15.6
+89309,20712.60272,18904.33138,0,15.6
+89310,20726.28598,19140.53775,0,15.6
+89311,20728.52439,19407.21282,0,15.6
+89312,20864.10959,19662.33294,0,15.6
+89313,20815.56293,19857.05301,0,15.6
+89314,20900.05435,20076.53653,0,15.6
+89315,20947.1972,20370.47459,0,15.6
+89316,20940.62433,20594.76803,0,15.6
+89317,21016.91938,20752.52559,0,15.6
+89318,21059.29294,21085.34665,0,15.6
+89319,21057.14382,21272.69913,0,15.6
+89320,21135.22129,21482.40257,0,15.6
+89321,21175.23967,21772.83614,0,15.6
+89322,21186.61098,313238.8147,0,15.6
+89323,21217.39166,2680.833625,0,15.6
+89324,21292.68803,36171.43463,0,15.6
+89325,21302.04482,95050.04341,0,15.6
+89326,21328.2212,161784.3622,0,15.6
+89327,21385.75349,85378.30654,0,15.6
+89328,21425.08666,95263.45453,0,15.6
+89329,21385.75126,114212.5062,0,15.6
+89330,21535.20614,107300.2189,0,15.6
+89331,360704.7085,111238.7223,0,15.6
+89332,21535.20392,126092.2137,0,15.6
+89333,0,120980.548,0,15.6
+89334,0,125434.0269,0,15.6
+89335,0,128492.1842,0,15.6
+89336,77559.02401,130952.047,0,15.6
+89337,9339.415715,133519.5436,0,15.6
+89338,10148.37054,135617.2401,0,15.6
+89339,30072.97148,138868.0966,1052506.126,15.6
+89340,20651.24328,140948.7082,0,15.6
+89341,21870.45979,140589.1245,0,15.6
+89342,21954.22137,140389.582,0,15.6
+89343,21878.49416,140202.1435,0,15.6
+89344,21984.93463,139666.1984,0,15.6
+89345,21901.82524,139267.7004,0,15.6
+89346,21930.88085,139066.2199,0,15.6
+89347,294290.8455,138435.9059,0,15.6
+89348,41743.35279,138585.2113,0,15.6
+89349,35180.25963,137560.6843,0,15.6
+89350,93939.12626,137412.3721,0,15.6
+89351,97263.40577,137131.7872,0,15.6
+89352,79578.74173,25197.92335,0,15.6
+89353,85085.89514,25077.89819,0,15.6
+89354,84799.38542,25022.77153,0,15.6
+89355,85151.10025,24906.33224,0,15.6
+89356,84939.44759,0,0,15.6
+89357,85219.65829,0,0,15.6
+89358,84775.65333,386493.4321,0,15.6
+89359,87115.5992,87017.49609,0,15.6
+89360,87853.03741,79941.13471,0,15.6
+89361,87453.31428,158400.879,0,15.6
+89362,87627.22528,134577.2308,0,15.6
+89363,88148.28868,128917.5892,0,15.6
+89364,88617.16242,130743.032,0,15.6
+89365,88385.50168,129772.1527,0,15.6
+89366,67099.80055,129447.0301,0,15.6
+89367,67005.46676,128484.977,0,15.6
+89368,67318.82257,127876.4223,0,15.6
+89369,145757.7178,127427.7746,0,15.6
+89370,416919.0748,126391.1759,0,15.6
+89371,78830.40452,125879.3578,0,15.6
+89372,97932.69044,125082.5392,0,15.6
+89373,89436.66214,124518.0255,0,15.6
+89374,90478.7123,123770.8792,1019882.703,15.6
+89375,90910.37087,123002.7496,0,15.6
+89376,91006.69998,122196.9472,0,15.6
+89377,21994.76241,121997.5825,0,15.6
+89378,21983.12245,120389.0546,0,15.6
+89379,21977.49672,120053.1224,0,15.6
+89380,21965.48068,119422.4338,0,15.6
+89381,21962.36365,118331.3348,0,15.6
+89382,21948.10426,117843.5179,0,15.6
+89383,21927.12268,116768.8439,0,15.6
+89384,21932.89944,116158.9286,0,15.6
+89385,21909.74635,115342.1541,0,15.6
+89386,21915.25787,114508.8282,0,15.6
+89387,21899.8093,113508.3766,0,15.6
+89388,21907.72439,21603.79243,0,15.6
+89389,21882.32108,0,0,15.6
+89390,21882.31975,0,0,15.6
+89391,21824.15558,0,0,15.6
+89392,21899.80267,75240.94579,0,15.6
+89393,322814.9028,5050.382691,0,15.6
+89394,31564.28853,11890.56063,0,15.6
+89395,39951.62467,28157.4632,0,15.6
+89396,96712.7855,19474.29661,0,15.6
+89397,111934.2805,20490.5883,0,15.6
+89398,86477.45941,20390.95586,0,15.6
+89399,72046.34262,343718.3066,0,15.6
+89400,72139.39189,30783.86331,0,15.6
+89401,73005.40765,38777.2061,0,15.6
+89402,151286.0721,95318.58491,0,15.6
+89403,83699.24879,136854.2287,0,15.6
+89404,85956.65718,97943.66521,0,15.6
+89405,105115.8822,111639.0733,0,15.6
+89406,96948.91889,113778.8524,0,15.6
+89407,98878.204,115898.9326,0,15.6
+89408,99341.96337,118096.9546,0,15.6
+89409,439239.32,119511.9312,990102.5529,15.6
+89410,101005.0262,121809.5554,0,15.6
+89411,101622.7499,123849.9766,0,15.6
+89412,101990.767,125557.9737,0,15.6
+89413,103265.2775,127798.5954,0,15.6
+89414,103314.8386,130081.9612,0,15.6
+89415,104268.7226,131821.3879,0,15.6
+89416,105085.7618,133976.3299,0,15.6
+89417,105632.2908,135829.7246,0,15.6
+89418,106403.5062,138030.9644,0,15.6
+89419,106987.7278,140006.942,0,15.6
+89420,107782.7378,142081.0072,0,15.6
+89421,108259.1858,143844.3059,0,15.6
+89422,109245.6497,120978.5607,0,15.6
+89423,23227.38034,123545.6743,0,15.6
+89424,23265.70533,124196.7775,0,15.6
+89425,23344.38064,216898.3288,0,15.6
+89426,23387.46885,140965.0519,0,15.6
+89427,23472.80448,140352.3037,0,15.6
+89428,23519.85928,168323.5607,0,15.6
+89429,23546.45965,24767.80097,0,15.6
+89430,23627.70247,26562.13316,0,15.6
+89431,23692.73146,26782.68066,0,15.6
+89432,375908.7447,26969.9325,0,15.6
+89433,6081.043779,27237.1927,0,15.6
+89434,40219.08892,537355.3117,0,15.6
+89435,217791.2136,52217.23411,0,15.6
+89436,107639.7927,126273.0896,0,15.6
+89437,104296.7989,222462.9557,0,15.6
+89438,129250.5472,171252.5111,0,15.6
+89439,119553.0354,179901.5237,0,15.6
+89440,123226.6193,182091.7332,0,15.6
+89441,123411.8823,183756.5836,0,15.6
+89442,124388.1603,185918.1462,0,15.6
+89443,124465.0495,187552.8336,0,15.6
+89444,125211.1798,189103.68,962918.974,15.6
+89445,126111.8977,191760.7729,0,15.6
+89446,126210.4246,193310.9306,0,15.6
+89447,127000.7071,194584.7635,0,15.6
+89448,127521.5226,197802.3313,0,15.6
+89449,467303.6341,198452.8322,0,15.6
+89450,128921.7894,200828.9581,0,15.6
+89451,129078.0394,202739.3244,0,15.6
+89452,129748.9112,204367.4474,0,15.6
+89453,130852.4767,206504.0386,0,15.6
+89454,130677.0401,208436.3044,0,15.6
+89455,131765.2489,178548.5954,0,15.6
+89456,132334.1421,180124.4723,0,15.6
+89457,132462.9134,275029.8032,0,15.6
+89458,133845.2101,199476.1727,0,15.6
+89459,133495.1457,211370.3735,0,15.6
+89460,134840.1835,224860.641,0,15.6
+89461,134729.7186,220110.7352,0,15.6
+89462,25482.05181,221771.5924,0,15.6
+89463,25573.92997,222679.4194,0,15.6
+89464,25594.00923,33006.74658,0,15.6
+89465,0,33198.59206,0,15.6
+89466,0,33278.85853,0,15.6
+89467,0,671877.1803,0,15.6
+89468,562002.162,94696.34381,0,15.6
+89469,25718.39082,167028.4505,0,15.6
+89470,53105.37452,283903.5603,0,15.6
+89471,207579.4887,223872.1389,0,15.6
+89472,131420.2081,233023.855,0,15.6
+89473,141468.5121,233884.6455,0,15.6
+89474,142426.5984,235136.0654,0,15.6
+89475,142948.7996,236014.5865,0,15.6
+89476,143239.5181,236967.4431,0,15.6
+89477,143955.2349,237989.061,0,15.6
+89478,144026.3127,239123.5393,0,15.6
+89479,144614.1998,239880.6521,938119.4279,15.6
+89480,144845.9241,240981.6071,0,15.6
+89481,145657.0039,241843.69,0,15.6
+89482,145890.1046,242987.298,0,15.6
+89483,146383.952,243815.4734,0,15.6
+89484,146773.0546,244989.3062,0,15.6
+89485,147170.0155,246075.1616,0,15.6
+89486,147804.683,246643.329,0,15.6
+89487,148096.0064,212576.4976,0,15.6
+89488,148701.4788,212865.8024,0,15.6
+89489,488200.0104,317692.9505,0,15.6
+89490,149384.6861,237035.8226,0,15.6
+89491,150397.7757,243180.3778,0,15.6
+89492,150059.7091,259434.6897,0,15.6
+89493,151113.4557,253071.7209,0,15.6
+89494,151441.0301,255192.0447,0,15.6
+89495,151647.8806,255788.5783,0,15.6
+89496,152474.0366,256951.6559,0,15.6
+89497,152765.6953,36660.52925,0,15.6
+89498,0,36842.28325,0,15.6
+89499,0,36841.24276,0,15.6
+89500,78125.17067,796426.4363,0,15.6
+89501,15903.25773,155014.2157,0,15.6
+89502,21255.66355,137660.7575,0,15.6
+89503,570387.3091,348871.3293,0,15.6
+89504,34754.09947,252786.3844,0,15.6
+89505,75148.71464,265909.7961,0,15.6
+89506,223116.9352,267303.072,0,15.6
+89507,147778.5855,268028.7184,0,15.6
+89508,158289.5726,269182.181,0,15.6
+89509,159248.9878,270265.8712,0,15.6
+89510,159865.0687,270728.7884,0,15.6
+89511,159972.6552,272270.6674,0,15.6
+89512,160625.8014,273075.681,0,15.6
+89513,160829.549,273729.6427,0,15.6
+89514,161202.4217,275311.0952,915472.9595,15.6
+89515,161763.0187,275583.4316,0,15.6
+89516,161912.1612,276647.1181,0,15.6
+89517,162564.6731,278436.289,0,15.6
+89518,162780.4215,278530.7064,0,15.6
+89519,163391.5456,240598.7323,0,15.6
+89520,163564.3697,243424.083,0,17.8
+89521,1036863.024,1416669.12,0,17.8
+89522,918252.0755,1292864.26,0,17.8
+89523,427848.6286,284263.5536,0,17.8
+89524,504246.3996,552363.5525,0,17.8
+89525,387825.4437,731354.2687,0,17.8
+89526,413881.7477,520024.222,0,17.8
+89527,402211.7994,541051.7812,0,17.8
+89528,394414.3482,550917.3835,0,17.8
+89529,732427.6484,539212.0155,0,17.8
+89530,329005.3836,106755.3042,0,17.8
+89531,328122.9413,104962.5027,0,17.8
+89532,417336.2611,1187215.711,0,17.8
+89533,78646.52849,341798.1007,0,17.8
+89534,69366.0138,620978.5591,0,17.8
+89535,856929.2659,479371.9333,0,17.8
+89536,390773.5134,534155.1362,0,17.8
+89537,334399.1429,512144.2798,0,17.8
+89538,403523.2055,506948.1416,0,17.8
+89539,393423.9955,503793.3389,0,17.8
+89540,386159.8121,501248.2226,0,17.8
+89541,385126.0096,497662.6828,0,17.8
+89542,384454.2343,494386.2207,0,17.8
+89543,384663.8222,492556.9245,0,17.8
+89544,383262.8927,488664.7767,0,17.8
+89545,383834.4282,486328.4984,0,17.8
+89546,382753.3919,483249.5133,0,17.8
+89547,382525.9304,480583.5035,0,17.8
+89548,382121.4225,477299.6966,889280.5001,17.8
+89549,381831.8096,476087.0248,0,17.8
+89550,381018.9671,471470.3414,0,17.8
+89551,379663.8122,375881.1036,0,17.8
+89552,379180.9182,373153.8673,0,17.8
+89553,378792.8011,508320.7509,0,17.8
+89554,378529.9189,448495.2496,0,17.8
+89555,378048.0038,493782.0893,0,17.8
+89556,378353.7209,448676.664,0,17.8
+89557,377511.8417,442544.8052,0,17.8
+89558,377515.9826,459033.9121,0,17.8
+89559,377240.4607,447689.3804,0,17.8
+89560,377219.7985,445771.4899,0,17.8
+89561,376347.846,443295.2976,0,17.8
+89562,316114.6027,89460.9324,0,17.8
+89563,315607.9128,89141.81086,0,17.8
+89564,405692.4295,993018.8527,0,17.8
+89565,416615.0118,281849.2872,0,17.8
+89566,66034.75379,427051.6204,0,17.8
+89567,844014.8219,444893.5961,0,17.8
+89568,365166.8332,427672.1754,0,17.8
+89569,310894.3108,423361.5411,0,17.8
+89570,403474.8708,420224.7156,0,17.8
+89571,379588.8127,417697.4429,0,17.8
+89572,375613.8135,414712.208,0,17.8
+89573,375237.6877,412909.1928,0,17.8
+89574,375694.1708,410073.3379,0,17.8
+89575,374813.6906,407368.73,0,17.8
+89576,375471.8366,404672.8853,0,17.8
+89577,374949.4105,401365.9991,0,17.8
+89578,374249.2235,399197.0041,0,17.8
+89579,375582.639,395268.1209,0,17.8
+89580,374357.6859,391446.482,0,20
+89581,2027439.988,2611467.232,138720.5832,20
+89582,1099922.819,1919948.677,908433.3015,20
+89583,983183.602,460408.0054,14078.50105,20
+89584,738719.9922,895374.3288,29269.27712,20
+89585,767471.1461,1103143.397,30734.44433,20
+89586,903468.4753,915579.5223,26084.17267,20
+89587,849994.2472,960110.0753,26963.27881,20
+89588,786107.5103,937077.6578,27630.57418,20
+89589,809713.0283,929412.9805,27629.01001,20
+89590,807730.6472,935630.6966,27661.73634,20
+89591,801512.1029,932413.3817,27873.59935,20
+89592,799619.7484,930716.5491,27963.06476,20
+89593,798004.0619,923513.999,28040.4682,20
+89594,674230.6936,172397.0015,92286.71567,20
+89595,843852.6433,172346.6449,109476.6925,20
+89596,784707.2245,1256108.776,80171.56523,20
+89597,146834.9284,914113.2836,104572.3586,20
+89598,146465.8447,884550.0269,114912.0411,20
+89599,959393.5134,952939.4112,107900.3831,20
+89600,909199.7624,930040.8639,112119.8088,20
+89601,963321.2674,928643.3991,115077.682,20
+89602,824331.4439,928993.3667,131148.1827,20
+89603,824958.2752,928814.9977,123719.0862,20
+89604,758190.8684,928747.6005,128152.679,20
+89605,788447.1021,929532.7898,130609.258,20
+89606,780297.1462,928726.865,131261.1238,20
+89607,781014.9544,930880.5872,133078.6303,20
+89608,761739.2711,927684.7675,135795.7148,20
+89609,765517.6611,925564.7826,136741.0828,20
+89610,763989.0592,930331.2142,139270.4602,20
+89611,735521.5987,928573.8556,110006.3789,20
+89612,735078.9323,930165.6848,112336.8591,20
+89613,730951.769,930887.434,113601.3634,20
+89614,793068.5073,800842.1653,115240.8648,20
+89615,758531.1728,1007041.858,117063.0513,20
+89616,744542.3096,930923.4281,1230124.31,20
+89617,757455.2894,886698.5333,127649.3984,20
+89618,750074.9397,902389.6484,144418.9067,20
+89619,750718.6787,990409.7138,162314.5508,20
+89620,749728.395,931808.3186,154398.6288,20
+89621,746628.4936,935596.4906,157278.1985,20
+89622,747071.0424,942905.2443,32032.5771,20
+89623,746242.2632,941391.7207,32205.42527,20
+89624,742712.981,942334.4098,32319.69283,20
+89625,629957.3656,943122.2384,32383.55956,20
+89626,787561.6957,169477.6246,32587.11551,20
+89627,734538.0676,169752.7457,32641.49874,20
+89628,737163.9226,1253847.202,32796.06849,20
+89629,141424.8963,1037132.605,32918.92868,20
+89630,139262.887,847082.3686,33050.9314,20
+89631,951289.7429,991270.8542,33186.53202,20
+89632,826221.6027,952093.0616,33278.40644,20
+89633,631061.4945,953853.5565,33433.83093,20
+89634,791338.1438,954689.6869,33543.86911,20
+89635,770613.9782,954983.1862,33681.8031,20
+89636,751863.0566,957495.4228,33771.14388,20
+89637,1058895.437,958213.3923,34003.48849,20
+89638,739272.5398,959007.4542,33983.89494,20
+89639,731594.2979,961046.586,34323.87074,20
+89640,731987.7836,961269.6035,34199.46492,21
+89641,2310487.162,2983661.191,2102663.309,21
+89642,2141987.073,2232039.953,404253.9527,21
+89643,686061.0216,761779.809,65058.22144,21
+89644,782136.6799,979490.896,259625.3852,21
+89645,882302.4498,1324818.631,298127.4383,21
+89646,1098984.554,1099322.612,222824.1103,21
+89647,904588.4025,1125350.697,249912.7244,21
+89648,946752.6514,1122493.924,246369.135,21
+89649,945559.1251,1119979.309,245658.426,21
+89650,939654.8252,1116686.017,247401.3812,21
+89651,925008.3888,1116336.906,247393.6535,21
+89652,929672.3968,1112497.582,247974.4045,21
+89653,922924.992,1111507.951,248030.1661,21
+89654,921645.6974,1109206.82,248729.7467,21
+89655,917047.9034,1109208.962,249529.2913,21
+89656,917121.0753,1104900.757,249034.527,21
+89657,911592.9285,1104636.415,250192.3977,21
+89658,911571.9409,1101219.444,250160.8437,21
+89659,908029.9973,1101587.392,250987.1114,21
+89660,905633.3758,1101623.857,251456.8805,21
+89661,902333.4406,1099420.272,251578.9099,21
+89662,900659.2183,1099207.207,252610.4762,21
+89663,899195.014,1096107.263,252131.3782,21
+89664,896517.9574,1096108.112,253601.2555,21
+89665,895696.1448,1095853.673,253733.9096,21
+89666,891453.4073,1092340.932,254142.6975,21
+89667,891635.5558,1093984.196,254468.9889,21
+89668,887397.2651,1089901.439,255328.9316,21
+89669,888321.2781,1091124.659,255836.1088,21
+89670,884241.6447,1089942.21,256012.2965,21
+89671,883828.7886,1086894.92,256902.6907,21
+89672,881322.2746,1088690.094,257195.5533,21
+89673,879990.1222,1085800.797,257241.0592,21
+89674,878894.7724,1086770.535,258400.4366,21
+89675,876410.6337,1084287.305,259000.1461,21
+89676,874950.5239,1084047.122,258620.9913,21
+89677,874906.0046,1085281.783,260312.9428,21
+89678,871905.4631,1080604.352,260035.8118,21
+89679,870887.3756,1083165.2,260210.0909,21
+89680,868870.658,1079882.419,260968.4897,21
+89681,867825.4961,1079389.986,262168.2847,21
+89682,866717.2569,1077103.442,261781.8536,21
+89683,865793.8446,1078241.52,262466.8805,21
+89684,864683.2663,1076040.43,262770.751,21
+89685,861891.3316,1076766.303,264150.9468,21
+89686,861650.1523,1075342.288,262994.4832,21
+89687,860773.9898,1074735.98,265061.3767,21
+89688,858298.3584,1073479.073,264984.7795,21
+89689,858560.2156,1075013.178,265148.7334,21
+89690,856398.1449,1071543.126,265696.2624,21
+89691,855257.7715,1073506.763,265937.1206,21
+89692,854240.6334,1071191.738,266916.7338,21
+89693,849233.8931,1072386.417,267123.0627,21
+89694,844729.5528,1070009.988,267263.584,21
+89695,846294.2547,1070986.725,268037.0298,21
+89696,842577.3009,1068492.411,268639.172,21
+89697,841896.9468,1071347.921,268423.8831,21
+89698,839690.1011,1067524.167,269562.4148,21
+89699,839018.9893,1068263.848,269256.4754,21
+89700,837289.1616,1068834.959,270433.0688,21
+89701,1600532.986,2489357.376,270862.5664,21
+89702,1599189.002,2487313.078,270601.2709,21
+89703,1595289.605,2485645.463,271094.1228,21
+89704,1595780.882,2483415.591,272798.7286,21
+89705,1590774.958,2482619.021,272260.8741,21
+89706,1590560.594,2481135.508,272761.436,21
+89707,1589515.062,2477092.652,273354.0856,21
+89708,1586102.256,2477360.261,269880.6246,21
+89709,1583613.049,2475051.787,268972.9955,21
+89710,1583385.15,2473325.022,269570.9471,21
+89711,1581470.585,2474303.55,269507.0348,21
+89712,1578039.977,2496564.066,270833.7201,21
+89713,1576393.91,2479796.656,270676.8964,21
+89714,1575563.916,2484134.987,270500.5303,21
+89715,1572774.308,2480603.115,271456.5034,21
+89716,1571787.411,2480903.136,271970.5752,21
+89717,1568907.861,2478311.708,271855.3448,21
+89718,1567973.933,2478170.978,271950.3044,21
+89719,1564971.83,2475451.915,272802.6041,21
+89720,1564169.529,2474715.86,272708.3533,21
+89721,1561914.861,2471941.046,273180.8853,21
+89722,1560198.683,2471440.595,273193.8715,21
+89723,1558445.965,2469618.215,273859.3369,21
+89724,1557003.101,2468231.655,273955.7779,21
+89725,1554095.719,2466573.07,274313.7183,21
+89726,1552980.67,2465502.003,275106.9161,21
+89727,1551085.178,2463215.217,274191.7239,21
+89728,1549893.611,2462364.278,275521.792,21
+89729,1546553.3,2461087.655,274883.6982,21
+89730,1547138.929,2458877.154,275869.2077,21
+89731,1542013.816,2457177.221,275371.2581,21
+89732,1541403.982,2456136.232,275820.279,21
+89733,1536392.819,2455620.599,275712.6301,21
+89734,1536269.972,2450955.463,275355.2367,21
+89735,1532867.505,2449568.595,275810.2139,21
+89736,1529845.257,2448561.409,275287.5826,21
+89737,1529022.558,2447045.039,275471.8498,21
+89738,1526502.301,2443679.639,275406.923,21
+89739,1523427.566,2443409.02,275141.8047,21
+89740,1521950.11,2440603.423,275470.4563,21
+89741,1518895.092,2439982.22,274957.0416,21
+89742,1516093.311,2437246.499,274934.2456,21
+89743,1515161.369,2435672.686,274964.828,21
+89744,1512333.852,2434071.416,274899.1181,21
+89745,1507206.361,2432233.344,274329.9196,21
+89746,1506205.251,2430857.034,275306.1647,21
+89747,1502536.299,2428896.013,273803.8463,21
+89748,1500449.913,2426890.072,274402.1379,21
+89749,1498027.976,2425157.8,273928.8382,21
+89750,1495551.829,2424710.729,274403.2643,21
+89751,1493612.371,2420992.925,273604.068,21
+89752,1490357.08,2421308.191,273781.3395,21
+89753,1488467.346,2418346.151,273441.102,21
+89754,1486048.722,2416329.931,273138.0481,21
+89755,1482185.96,2415660.569,273355.8064,21
+89756,1482082.196,2414261.016,272923.2351,21
+89757,1478141.492,2410306.606,272469.6854,21
+89758,1476763,2410894.721,272585.983,21
+89759,1473277.253,2408926.132,272522.3105,21
+89760,1471081.24,2406636.088,271631.8788,21
+89761,1409055.534,2341672.566,230354.9559,21
+89762,1401727.172,2306463.674,226302.5791,21
+89763,1398416.786,2295643.167,225748.1622,21
+89764,1393281.204,2289160.865,224429.2321,21
+89765,1390067.359,2285165.218,223497.1119,21
+89766,1387110.327,2277096.369,222625.545,21
+89767,1381862.527,2273653.704,221342.9005,21
+89768,1380776.234,2267386.206,220707.6168,21
+89769,1373826.576,2261516.905,219918.1209,21
+89770,1373090.734,2257218.568,219056.3155,21
+89771,1369046.181,2249823.604,217774.289,21
+89772,1365108.466,2246300.6,217132.0006,21
+89773,1361232.99,2239156.301,216377.7643,21
+89774,1357367.388,2234237.75,215580.5925,21
+89775,1355928.409,2229852.71,214213.5452,21
+89776,1349983.042,2223070.883,213903.2472,21
+89777,1344934.866,2218219.327,212764.8795,21
+89778,1342500.014,2214905.804,211861.8474,21
+89779,1337007.84,2206884.432,211245.0479,21
+89780,1333968.888,2203468.164,210214.8776,21
+89781,1331212.757,2196273.15,209714.0947,21
+89782,1326191.473,2194091.266,208381.5378,21
+89783,1323643.683,2186367.896,207390.0789,21
+89784,1320456.868,2182197.611,207140.4608,21
+89785,1316206.314,2176657.272,205585.2342,21
+89786,1312950.648,2171902.718,205646.4691,21
+89787,1310091.063,2166170.9,203725.4515,21
+89788,1305768.006,2161443.956,204076.3557,21
+89789,1303281.411,2155304.896,201879.4156,21
+89790,1298758.4,2151245.976,202334.7228,21
+89791,1295333.345,2144591.826,199745.1425,21
+89792,1293029.737,2140577.218,199824.8529,21
+89793,1288484.339,2134988.727,198146.2804,21
+89794,1285873.619,2130402.568,196571.0711,21
+89795,1282934.772,2125768.458,195691.0659,21
+89796,1279188.22,2119194.086,194594.4372,21
+89797,1277308.943,2114990.184,192719.4473,21
+89798,1272039.041,2109807.915,192308.0343,21
+89799,1271043.362,2104751.705,190571.6246,21
+89800,1265727.441,2098300.69,189257.3465,21
+89801,1263753.852,2094318.696,188290.1153,21
+89802,1260085.42,2088659.79,186433.2057,21
+89803,1257439.995,2084686.461,186028,21
+89804,1252777.454,2078035.182,183915.0997,21
+89805,1251408.35,2072731.171,183176.1994,21
+89806,1247523.904,2069449.624,181355.1777,21
+89807,1243846.754,2062306.549,180613.7481,21
+89808,1241860.871,2058246.81,178774.0497,21
+89809,1237606.611,2053379.651,177895.7551,21
+89810,1237044.97,2046450.191,176302.2344,21
+89811,1232930.251,2044091.155,174957.7743,21
+89812,1230806.959,2036450.997,173958.3889,21
+89813,1226385.894,2033419.771,172259.7478,21
+89814,1225036.744,2026770.745,170948.9824,21
+89815,1220453.982,2022607.177,169955.1424,21
+89816,1218045.644,2018016.84,168576.6173,21
+89817,1214717.314,2012032.464,167018.3344,21
+89818,1211777.12,2008105.132,165839.7941,21
+89819,1208643.271,2002309.752,164204.0127,21
+89820,1205359.362,1998705.925,163049.4522,21
+89821,1204019.855,1991233.882,162357.1636,21
+89822,1200682.789,1984666.956,160410.5162,21
+89823,1199317.046,1976436.158,159575.0103,21
+89824,1197047.163,1972535.628,158821.1338,21
+89825,1195410.86,1963492.25,157317.1207,21
+89826,1193165.645,1958618.586,156301.8306,21
+89827,1191906.36,1952044.84,155377.9517,21
+89828,1188788.937,1944679.664,154195.5455,21
+89829,1188292.056,1938421.982,152488.2342,21
+89830,1185846.079,1931982.726,152317.4268,21
+89831,1182893.88,1926708.581,150671.9081,21
+89832,1178832.479,1918124.844,149529.007,21
+89833,1179122.545,1914441.154,148786.0483,21
+89834,1176411.819,1905355.268,147579.9767,21
+89835,1174487.407,1900241.659,145702.1645,21
+89836,1172612.798,1893052.556,145801.2334,21
+89837,1170489.894,1887058.807,143486.3846,21
+89838,1168810.758,1880040.922,143521.8598,21
+89839,1166330.944,1873870.577,141291.5332,21
+89840,1165371.854,1867974.164,140934.3439,21
+89841,1162267.951,1859837.952,139426.6689,21
+89842,1161374.956,1855378.61,138675.7896,21
+89843,1158438.8,1847700.538,137100.7878,21
+89844,1157996.837,1841209.522,136199.287,21
+89845,1155180.821,1834799.782,134879.1244,21
+89846,1153390.914,1828593.24,133877.0652,21
+89847,1151799.283,1821318.503,132947.0988,21
+89848,1148730.33,1815007.645,131002.9815,21
+89849,1148503.902,1809354.009,130889.0412,21
+89850,1144500.097,1803443.732,129226.3875,21
+89851,1145366.828,1798203.148,128194.9649,21
+89852,1143122.632,1791108.155,127716.6143,21
+89853,1142092.824,1786454.26,127383.9835,21
+89854,1141040.041,1781418.829,126311.6656,21
+89855,1139492.513,1775516.32,125353.6278,21
+89856,1139795.467,1769284.746,125318.6684,21
+89857,1137613.837,1764649.915,124219.9266,21
+89858,1135887.033,1757004.661,123909.1795,21
+89859,1136110.955,1753782.995,122269.2849,21
+89860,1135160.462,1746470.853,122723.6965,21
+89861,1133314.93,1742614.554,121753.2046,21
+89862,1133639.253,1737069.368,121109.1338,21
+89863,1130776.774,1731619.52,120195.9379,21
+89864,1131938.024,1726976.603,119610.6504,21
+89865,1129635.774,1721911.009,119439.8657,21
+89866,1129607.298,1717130.246,118111.0309,21
+89867,1127846.949,1711757.008,118181.0246,21
+89868,1127497.83,1707344.176,117178.5027,21
+89869,1127254.64,1702326.194,116635.1921,21
+89870,1125524.429,1697756.277,115709.6511,21
+89871,1125133.65,1691888.452,115974.8533,21
+89872,1124720.094,1689012.148,114340.5938,21
+89873,1126924.703,1681908.292,114333.5445,21
+89874,1124593.501,1679489.536,113735.3709,21
+89875,1126342.994,1673610.645,112729.0347,21
+89876,1124420.475,1669074.791,112765.5512,21
+89877,1125031.564,1664983.915,111726.3677,21
+89878,1123557.542,1661039.348,111226.5981,21
+89879,1122839.562,1655431.533,110529.644,21
+89880,1122852.196,1652295.043,110198.2356,21
+89881,1123266.295,1648873.432,112362.8582,21
+89882,1122468.354,1647463.798,111430.6111,21
+89883,1122648.407,1646146.356,110987.1379,21
+89884,1123188.656,1642307.384,110453.5448,21
+89885,1122306.897,1641229.963,109867.5469,21
+89886,1122135.336,1637880.55,108404.7616,21
+89887,1123713.579,1635908.821,108543.429,21
+89888,1121055.391,1634694.797,107442.0528,21
+89889,1123350.623,1632019.54,106806.3613,21
+89890,1121509.623,1630325.664,105849.7681,21
+89891,1122640.335,1628243.534,105469.2215,21
+89892,1121789.232,1626025.679,104746.0995,21
+89893,1122496.461,1624526.405,103969.6012,21
+89894,1122643.074,1622805.119,103311.7328,21
+89895,1122510.983,1620246.746,102638.68,21
+89896,1121748.682,1619481.354,101927.5908,21
+89897,1122483.012,1616497.858,101242.4759,21
+89898,1123852.586,1615866.143,100517.4958,21
+89899,1124414.768,1612606.245,100012.8084,21
+89900,1124590.248,1612746.169,98855.58402,21
+89901,1124786.26,1609130.758,98651.30965,21
+89902,1125129.422,1609081.71,98003.33132,21
+89903,1124256.16,1606306.712,96976.92351,21
+89904,1126536.816,1605012.425,96431.10462,21
+89905,1123567.563,1602974.049,95730.34049,21
+89906,1126092.808,1600875.514,95230.52185,21
+89907,1124630.279,1599321.057,94253.41834,21
+89908,1126433.943,1597649.329,93891.04314,21
+89909,1125700.939,1596111.493,93065.81478,21
+89910,1125356.756,1593666.705,92516.19281,21
+89911,1125530.887,1592525.113,92028.31573,21
+89912,1124576.953,1589365.776,90812.4321,21
+89913,1124484.557,1585423.567,90571.87508,21
+89914,1122661.727,1584565.497,90168.90686,21
+89915,1123155.303,1581521.654,89409.71571,21
+89916,1122680.231,1577081.95,88778.05042,21
+89917,1120226.641,1576611.784,88378.55572,21
+89918,1121737.932,1572593.799,87608.71221,21
+89919,1120289.711,1569945.677,87051.52279,21
+89920,1119046.568,1567526.728,86322.58637,21
+89921,1119298.638,1564053.073,85798.70959,21
+89922,1117985.499,1562764.714,85323.90533,21
+89923,1117833.785,1559096.007,84499.25631,21
+89924,1116685.728,1556665.325,84243.56632,21
+89925,1116157.582,1552807.561,83236.49988,21
+89926,1114659.365,1551202.566,82737.85497,21
+89927,1116318.626,1548960.3,82543.21699,21
+89928,1112920.181,1544045.619,81413.9963,21
+89929,1113749,1543821.158,81122.9972,21
+89930,1112329.555,1538607.698,80450.55993,21
+89931,1111768.184,1537426.163,79925.75285,21
+89932,1111862.916,1533964.458,79098.85226,21
+89933,1109411.449,1531642.243,78577.85101,21
+89934,1109519.581,1527978.512,78255.69908,21
+89935,1108883.386,1525700.599,77201.64991,21
+89936,1108227.792,1522772.596,77325.25322,21
+89937,1107162.435,1519808.573,75855.42738,21
+89938,1104365.039,1516522.928,75993.56835,21
+89939,1104285.918,1514853.869,74925.95355,21
+89940,1101079.517,1510634.794,74524.29535,21
+89941,1396204.892,1507629.887,70551.35413,21
+89942,1097253.452,1505065.031,70211.07098,21
+89943,1097051.439,1500094.605,68799.68936,21
+89944,1094928.526,1498432.597,68974.11106,21
+89945,1093254.774,1495253.113,67900.37092,21
+89946,1090948.419,1491425.505,67338.66431,21
+89947,1090005.956,1488452.783,66556.85519,21
+89948,1087239.023,1486064.698,66232.48076,21
+89949,1086614.56,1481185.227,65036.69009,21
+89950,1083565.42,1479268.042,64979.57244,21
+89951,1082728.017,1476109.872,63961.9344,21
+89952,1081294.556,1472184.993,63640.28904,21
+89953,1077623.278,1469413.378,62515.0516,21
+89954,1078706.756,1466546.182,62264.21442,21
+89955,1074170.192,1463616.102,61735.10082,21
+89956,1073977.561,1459402.318,60462.18406,21
+89957,1072661.854,1457672.601,60357.34613,21
+89958,1068849.108,1453656.38,59473.44538,21
+89959,1067797.193,1450336.502,58952.74421,21
+89960,1066900.447,1448214.665,58126.72803,21
+89961,1063638.468,1443392.509,57713.91832,21
+89962,1062652.416,1440505.985,56607.32302,21
+89963,1060079.111,1438893.884,56190.47293,21
+89964,1057655.515,1433227.762,55520.64516,21
+89965,1056484.343,1430733.265,54812.38906,21
+89966,1055078.427,1427247.376,54047.76076,21
+89967,1052164.182,1423043.904,53383.51459,21
+89968,1050430.98,1421336.415,52865.25528,21
+89969,1048331.73,1418531.098,52033.9086,21
+89970,1046451.769,1416436.442,51254.98854,21
+89971,1045191.282,1415810.293,50939.53645,21
+89972,1042253.49,1411630.353,50516.65037,21
+89973,1042808.308,1411162.894,49590.4907,21
+89974,1039554.79,1408408.954,49362.4964,21
+89975,1038581.699,1407423.884,49052.47767,21
+89976,1038117.788,1405070.381,48246.32789,21
+89977,1034919.491,1401960.83,48161.12856,21
+89978,1035017.845,1401241.165,47283.12494,21
+89979,1032172.465,1399286.926,47078.68923,21
+89980,1031190.261,1395579.723,46649.51235,21
+89981,1030704.287,1396137.817,46311.23113,21
+89982,1027591.124,1391489.092,45535.1784,21
+89983,1027732.613,1390368.192,46031.16991,21
+89984,1025114.833,1388203.238,44946.47601,21
+89985,1023690.28,1387534.329,44783.69625,21
+89986,1023499.304,1383768.198,44390.76014,21
+89987,1020400.469,1383587.035,44199.37945,21
+89988,1020269.931,1379340.347,43662.09091,21
+89989,1017246.749,1379109.853,43088.09124,21
+89990,1017262.388,1375641.536,43231.68733,21
+89991,1016682.624,1372972.85,42089.20388,21
+89992,1013087.31,1372435.077,42668.14822,21
+89993,1013745.797,1369439.611,41617.93932,21
+89994,1010969.791,1367095.054,41447.09334,21
+89995,1009707.397,1363598.153,41265.77066,21
+89996,1009483.812,1364002.403,40649.33813,21
+89997,1006567.779,1359396.595,40647.41347,21
+89998,1006588.529,1358550.809,39842.66628,21
+89999,1004382.511,1354842.037,40106.50705,21
+90000,1003131.645,1351234.032,39117.32584,21
+90001,1066685.253,1413440.17,72270.98869,21
+90002,1068763.536,1414198.918,73364.77944,21
+90003,1069976.676,1417004.342,73905.22344,21
+90004,1070241.318,1415247.293,73927.4204,21
+90005,1068471.815,1416953.848,73709.09887,21
+90006,1069908.463,1415635.75,73964.09369,21
+90007,1068671.959,1415473.045,73910.89665,21
+90008,1069945.034,1417087.012,73697.2096,21
+90009,1068016.148,1416780.06,73370.51215,21
+90010,1068817.553,1415419.134,74209.45809,21
+90011,1069039.849,1417235.458,72854.76352,21
+90012,1067390.016,1416575.283,73796.25862,21
+90013,1067635.992,1415122.789,72803.4644,21
+90014,1069221.254,1417683.2,73464.25297,21
+90015,1066435.901,1414724.856,72669.17947,21
+90016,1067583.862,1417096.24,72898.13672,21
+90017,1067055.779,1415560.194,72533.82818,21
+90018,1067646.106,1418006.684,72796.38599,21
+90019,1065514.276,1416055.768,72267.97608,21
+90020,1066648.085,1416332.303,72675.62466,21
+90021,1066680.106,1416454.686,71804.7033,21
+90022,1064784.97,1416976.32,72279.37537,21
+90023,1065595.355,1416207.29,71850.45304,21
+90024,1065070.997,1415744.112,71660.25712,21
+90025,1064836.118,1415813.11,71517.54628,21
+90026,1064380.511,1416386.795,71678.02306,21
+90027,1064084.796,1415179.508,71185.33322,21
+90028,1063671.045,1415799.842,70676.42465,21
+90029,1063311.325,1414506.732,71226.41485,21
+90030,1062487.522,1414972.343,71001.38889,21
+90031,1063036.485,1414648.133,70207.58641,21
+90032,1060817.372,1415481.681,69782.28087,21
+90033,1061467.83,1414649.055,69606.44023,21
+90034,1059495.301,1413941.289,69149.8856,21
+90035,1060311.417,1414573.002,68697.49315,21
+90036,1059391.927,1414174.261,69017.40415,21
+90037,1056895.61,1413251.449,68820.86669,21
+90038,1058929.977,1413002.208,68621.35886,21
+90039,1056378.094,1413065.735,68316.45053,21
+90040,1056419.037,1412600.995,67359.98269,21
+90041,1055820.348,1411926.121,67817.67641,21
+90042,1054436.856,1412682.597,66837.62246,21
+90043,1054580.244,1412438.807,66688.09838,21
+90044,1053050.123,1412028,66047.88217,21
+90045,1052904.416,1412005.792,66296.83535,21
+90046,1051695.186,1411868.805,64895.18393,21
+90047,1052263.174,1411874.775,65195.11656,21
+90048,1049638.116,1411213.586,64689.73023,21
+90049,1050342.579,1412045.962,64183.53018,21
+90050,1049970.589,1412025.127,63721.67365,21
+90051,1047955.096,1410881.491,63368.30285,21
+90052,1047919.027,1412148.965,63020.95193,21
+90053,1047851.605,1410758.325,62616.04536,21
+90054,1045982.79,1412073.598,61910.71214,21
+90055,1046059.938,1410490.418,61620.76577,21
+90056,1044545.839,1412186.06,60690.52538,21
+90057,1044975.245,1410635.758,60459.87271,21
+90058,1043287.83,1410248.682,59352.59309,21
+90059,1043627.979,1412163.262,59284.76451,21
+90060,1042546.801,1410327.602,58654.69207,21
+90061,1041714.864,1408231.308,56668.13714,21
+90062,1039600.739,1406508.086,55944.36003,21
+90063,1039594.965,1403273.828,55301.2713,21
+90064,1037647.778,1402631.119,54392.0436,21
+90065,1036580.572,1398203.419,53519.14838,21
+90066,1035130.669,1398122.257,53278.17612,21
+90067,1034662.072,1393970.749,51630.96918,21
+90068,1032617.552,1391117.547,51786.50903,21
+90069,1031546.566,1389895.917,50356.38152,21
+90070,1030727.323,1386608.038,49542.89361,21
+90071,1029697.01,1384630.27,49026.50041,21
+90072,1028457.532,1382663.896,47623.90981,21
+90073,1026366.061,1379487.076,47228.78471,21
+90074,1026587.859,1377335.028,46246.58969,21
+90075,1024050.521,1374998.905,45096.03855,21
+90076,1024308.724,1372765.641,44616.04632,21
+90077,1021530.257,1369980.296,42880.29037,21
+90078,1021770.439,1367906.759,42470.68063,21
+90079,1018731.758,1365414.748,41018.58191,21
+90080,1020120.813,1361766.838,39895.02316,21
+90081,1016810.274,1361213.91,39758.7438,21
+90082,1015314.126,1357404.535,38453.72431,21
+90083,1015994.145,1355835.745,37915.01989,21
+90084,1013252.618,1353833.708,36625.79192,21
+90085,1011574.351,1349960.547,36335.63105,21
+90086,1012244.737,1349320.583,35039.08256,21
+90087,1008876.23,1345410.175,34218.00714,21
+90088,1008861.867,1344510.136,33264.2092,21
+90089,1007296.706,1340837.554,32238.66831,21
+90090,1006036.215,1339448.709,32008.01589,21
+90091,1004113.275,1336089.746,30907.69441,21
+90092,1004597.222,1335361.398,30030.32697,21
+90093,1003027.644,1331671.003,29637.32762,21
+90094,1000626.989,1329253.935,28246.08819,21
+90095,1001313.447,1326737.556,27647.04223,21
+90096,999590.6286,1325229.546,26924.55349,21
+90097,998234.1215,1322795.067,25618.56721,21
+90098,997011.1423,1320413.955,25094.78166,21
+90099,996071.5577,1317578.156,24777.17884,21
+90100,995559.3105,1315095.783,24031.58615,21
+90101,993048.4302,1313098.082,23874.77106,21
+90102,993759.0897,1310954.892,23392.96045,21
+90103,990212.9442,1308568.83,23152.99368,21
+90104,991511.1665,1305927.364,22484.58027,21
+90105,988882.6432,1304106.156,22346.01132,21
+90106,988020.3924,1301320.911,21674.75181,21
+90107,987971.2564,1299264.312,21735.91743,21
+90108,984589.125,1295983.557,20636.55532,21
+90109,985447.4749,1294823.393,21001.13786,21
+90110,984284.7329,1291776.733,20002.0166,21
+90111,981260.8608,1288808.022,20060.29922,21
+90112,981524.6998,1288092.673,19231.67107,21
+90113,980971.4443,1284110.07,19155.84353,21
+90114,977149.4436,1283360.492,18587.21615,21
+90115,978547.2098,1279631.473,18231.03733,21
+90116,977389.1148,1278651.972,17945.41262,21
+90117,974004.6739,1275034.621,17529.80074,21
+90118,974506.5098,1272298.855,17243.71329,21
+90119,973624.8104,1271404.381,17039.30019,21
+90120,971007.6637,1268291.421,16651.41154,21
+90121,972521.2874,1267962.626,17477.13544,21
+90122,973314.534,1268881.346,17651.76609,21
+90123,972694.9917,1270735.159,17064.84712,21
+90124,973961.88,1269475.874,16919.83693,21
+90125,974158.8516,1269440.733,17004.7439,21
+90126,974417.1097,1270326.023,16665.53793,21
+90127,973312.44,1271105.009,16101.58458,21
+90128,976640.4297,1270295.763,16389.30168,21
+90129,973609.7117,1271186.486,16004.84414,21
+90130,975446.0315,1273400.632,15800.89413,21
+90131,975698.4938,1271702.338,15594.09706,21
+90132,976091.2843,1272313.589,15594.74173,21
+90133,976722.1898,1274483.008,15574.49781,21
+90134,975444.8453,1271039.622,15205.36817,21
+90135,977208.4453,1275003.527,15533.92382,21
+90136,977626.0967,1273145.706,15206.61403,21
+90137,977184.444,1273594.937,15329.34398,21
+90138,977827.1923,1273681.601,15165.89782,21
+90139,977776.4395,1273411.195,15124.45482,21
+90140,978400.079,1274327.506,14981.85556,21
+90141,979223.0539,1273993.747,15104.60987,21
+90142,978862.7072,1274113.206,14776.50992,21
+90143,979728.6696,1275253.86,15084.7306,21
+90144,979957.4556,1274580.084,14735.47167,21
+90145,980083.0997,1274223.995,14714.91116,21
+90146,980788.8768,1274767.813,14736.65118,21
+90147,981012.6045,1274897.142,14673.69946,21
+90148,981084.365,1274562.759,14695.49159,21
+90149,982005.5501,1275092.235,14345.36953,21
+90150,982428.2735,1275153.367,14654.20995,21
+90151,982357.809,1275733.634,14304.00082,21
+90152,983633.7284,1275249.867,14469.41918,21
+90153,984133.4465,1275355.164,14283.83172,21
+90154,984977.7629,1275544.027,14098.02201,21
+90155,985329.5532,1276153.404,14263.6231,21
+90156,986988.6059,1275872.687,14264.18091,21
+90157,986858.2969,1275996.699,14056.93499,21
+90158,988667.1257,1275982.24,14078.86354,21
+90159,989328.6483,1276296.628,14036.61166,21
+90160,989525.8814,1277777.2,13871.89119,21
+90161,990722.01,1275050.097,13850.98008,21
+90162,991215.3701,1278343.104,13664.58132,21
+90163,992487.8939,1276877.034,13830.56425,21
+90164,993521.0594,1277106.05,13478.46961,21
+90165,994239.1342,1278477.434,13478.97889,21
+90166,994895.1445,1277070.462,13602.04201,21
+90167,996861.7443,1279795.272,13292.60864,21
+90168,996434.1239,1277981.471,13249.93267,21
+90169,998107.0044,1278590.316,13250.42796,21
+90170,1000544.204,1280151.835,13063.23357,21
+90171,998459.9977,1278741.674,13063.71699,21
+90172,1001874.222,1280276.474,13042.53135,21
+90173,1001328.182,1280905.911,12855.05226,21
+90174,1004602.55,1279893.957,12855.52342,21
+90175,1002576.982,1280944.662,12689.53588,21
+90176,1005678.448,1282068.636,12812.95269,21
+90177,1005748.443,1281002,12480.28907,21
+90178,1008586.941,1282941.738,12647.40462,21
+90179,1007897.846,1282109.692,12270.67615,21
+90180,1009763.043,1283654.456,12626.50509,21
+90181,1009748.141,1284250.987,10929.42784,21
+90182,1010043.31,1283791.867,11098.27536,21
+90183,1010374.099,1284501.939,11076.76709,21
+90184,1008720.168,1285335.372,10930.52244,21
+90185,1010712.149,1284169.874,10887.08602,21
+90186,1009781.626,1283625.766,10898.4097,21
+90187,1009049.748,1285763.702,10887.80647,21
+90188,1010076.547,1284356.375,10866.21061,21
+90189,1010006.019,1284713.534,10719.78912,21
+90190,1010282.587,1285390.059,10676.18891,21
+90191,1009012.539,1283882.611,10867.28445,21
+90192,1009653.181,1285041.979,10507.92484,21
+90193,1010463.201,1285575.07,10677.23657,21
+90194,1009438.203,1286301.517,16933.94845,21
+90195,1010300.932,1286631.538,12698.84078,21
+90196,1009780.477,1286056.423,15004.52535,21
+90197,1010099.858,1286787.172,14667.09595,21
+90198,1010193.474,1287404.583,14792.91813,21
+90199,1009987.152,1287603.347,16938.44635,21
+90200,1010217.804,1288474.503,15679.32896,21
+90201,1010144.939,1289784.03,16727.00531,21
+90202,1010805.986,1288524.099,16728.04101,21
+90203,1010827.075,1289155.886,16729.07626,21
+90204,1009924.457,1290714.731,18784.02282,21
+90205,1010579.594,1290735.112,16539.58435,21
+90206,1011416.239,1291805.708,18594.73537,21
+90207,1010784.615,1290216.399,18787.80173,21
+90208,1010623.715,1292568.219,18597.33129,21
+90209,1012324.331,1292814.971,20485.99909,21
+90210,1010146.255,1294132.236,18577.80389,21
+90211,1012699.947,1294014.145,20658.83542,21
+90212,1011007.684,1294904.488,19441.70635,21
+90213,1011512.118,1296484.462,20639.68027,21
+90214,1012502.056,1295199.825,21471.82099,21
+90215,1011800.636,1295503.465,20665.20262,21
+90216,1011609.522,1303871.41,22472.01739,21
+90217,1013334.717,1304588.823,21669.24651,21
+90218,1011715.196,1306387.394,22498.07811,21
+90219,1013662.091,1307961.252,22499.96863,21
+90220,1011896.623,1308211.317,23687.86616,21
+90221,1013988.074,1311589.08,22503.83357,21
+90222,1012424.27,1312240.827,24682.53885,21
+90223,1015740.563,1314304.227,24366.89331,21
+90224,1015874.137,1315176.336,23673.87552,21
+90225,1016752.549,1318531.203,25721.75287,21
+90226,1016569.455,1317052.93,24351.15956,21
+90227,1016367.148,1321247.283,26881.49712,21
+90228,1018123.633,1320569.315,24718.55449,21
+90229,1016325.87,1323681.634,27732.8269,21
+90230,1017817.296,1323289.031,26719.37658,21
+90231,1018093.852,1326043.657,26744.36797,21
+90232,1017233.442,1327380.656,27899.79924,21
+90233,1018635.312,1327288.476,28735.39531,21
+90234,1019038.271,1331236.318,26752.45093,21
+90235,1019378.586,1329841.465,29900.45239,21
+90236,1017443.13,1333917.466,28744.25746,21
+90237,1020203.179,1331896.424,28939.68786,21
+90238,1020203.158,1336430.076,30726.98479,21
+90239,1019150.734,1335927.807,28945.86758,21
+90240,1019791.276,1337104.181,30926.1094,21
+90241,1021755.296,1340727.798,30759.37856,21
+90242,1022300.397,1341666.608,31102.83219,21
+90243,1024211.35,1343476.905,31762.81538,21
+90244,1023875.022,1347721.218,30939.77556,21
+90245,1026461.005,1348045.159,33116.00897,21
+90246,1027366.702,1351472.04,32768.3746,21
+90247,1028781.309,1354058.478,33112.43954,21
+90248,1029572.902,1354444.325,32968.63518,21
+90249,1031941.68,1358147.453,33120.08239,21
+90250,1032148.72,1360258.628,34938.14857,21
+90251,1033593.548,1362493.132,33150.33416,21
+90252,1034249.961,1364441.523,34946.39565,21
+90253,1036276.476,1366786.637,35143.21789,21
+90254,1037595.288,1368735.468,35317.43594,21
+90255,1038103.399,1371202.281,37129.38437,21
+90256,1039137.826,1373637.226,35348.56349,21
+90257,1041721.429,1375100.243,37308.59764,21
+90258,1041022.955,1378409.065,36347.45465,21
+90259,1043637.392,1379113.486,37329.1205,21
+90260,1043923.052,1382650.919,38501.58952,21
+90261,1048441.58,1384037,37349.82822,21
+90262,1048608.243,1386870.604,39496.51983,21
+90263,1049362.72,1387906.421,39354.11675,21
+90264,1052800.832,1391687.305,38521.47334,21
+90265,1051432.657,1391622.517,39534.32979,21
+90266,1054914.278,1395550.67,41653.06223,21
+90267,1054482.998,1398006.337,39567.22602,21
+90268,1056838.057,1399349.612,41505.50026,21
+90269,1056556.414,1400908.135,40720.79033,21
+90270,1059450.314,1404285.015,41708.96582,21
+90271,1059051.822,1405731.251,42707.03704,21
+90272,1061954.048,1408362.02,41731.542,21
+90273,1063219.054,1409550.219,43868.4041,21
+90274,1062408.952,1412744.144,43896.89534,21
+90275,1065925.342,1415420.388,41941.05141,21
+90276,1066497.517,1415421.725,46226.39375,21
+90277,1066230.069,1420247.231,43915.33568,21
+90278,1069708.161,1420642.803,45284.33286,21
+90279,1070440.609,1422033.629,46246.15472,21
+90280,1070944.038,1426283.662,44340.23008,21
+90281,1073145.827,1426695.935,48402.39699,21
+90282,1073977.296,1430173.02,44522.43054,21
+90283,1075239.82,1430678.298,48607.88651,21
+90284,1076034.839,1434542.006,46685.04705,21
+90285,1078339.247,1434292.163,48644.3657,21
+90286,1079040.045,1438589.085,48820.72317,21
+90287,1080517.661,1440496.959,49041.29027,21
+90288,1081744.243,1441197.792,48857.42829,21
+90289,1082471.884,1444678.516,50030.57523,21
+90290,1084415.215,1446379.11,50206.95564,21
+90291,1085370.059,1448460.022,51210.26679,21
+90292,1086470.17,1450253.713,50413.01454,21
+90293,1087930.668,1452382.503,51416.62511,21
+90294,1089609.323,1454814.769,53368.50952,21
+90295,1090153.57,1455662.043,51623.16826,21
+90296,1092196.404,1459029.636,52772.4847,21
+90297,1093649.8,1461396.42,53774.48996,21
+90298,1093101.268,1461843.243,53782.87739,21
+90299,1097091.903,1465643.814,53981.63398,21
+90300,1095920.641,1465737.697,54158.23849,21
+90301,546458.1369,836546.957,0,21
+90302,546483.0092,827531.3847,0,21
+90303,546609.5868,829744.442,0,21
+90304,546929.5865,832307.7745,0,21
+90305,547478.4686,835276.6135,0,21
+90306,548221.3028,838615.0884,0,21
+90307,549094.9794,842147.2396,0,21
+90308,550038.6938,845822.5827,0,21
+90309,551007.0444,849538.0415,0,21
+90310,551970.2503,853245.8859,0,21
+90311,552909.2039,856889.1976,0,21
+90312,553963.6254,860584.0832,0,21
+90313,554671.8594,863966.8247,0,21
+90314,555484.5617,867375.6195,0,21
+90315,556248.6332,870693.4077,0,21
+90316,556964.2022,873928.817,0,21
+90317,557632.6369,877061.9739,0,21
+90318,558256.1701,880247.3413,0,21
+90319,558837.5393,883103.2009,0,21
+90320,559379.6941,886015.1312,0,21
+90321,560036.4735,888862.5842,0,21
+90322,560358.5385,891651.3656,0,21
+90323,560801.1353,894508.1664,0,21
+90324,561216.4355,897074.5589,0,21
+90325,561607.2597,899718.8904,0,21
+90326,561976.0745,902324.3272,0,21
+90327,562324.9983,904898.8145,0,21
+90328,562655.8698,907434.0565,0,21
+90329,562970.3356,909945.1306,0,21
+90330,563419.7763,912431.0359,0,21
+90331,563555.9616,914894.4336,0,21
+90332,563829.7824,917409.9249,0,21
+90333,564092.4572,919762.4234,0,21
+90334,564344.8693,922170.3609,0,21
+90335,564587.7461,924562.654,0,21
+90336,564821.7295,927014.6263,0,21
+90337,565047.4294,929304.66,0,21
+90338,565265.4387,931656.4412,0,21
+90339,565476.3275,933996.7189,0,21
+90340,565680.6223,936402.2141,0,21
+90341,566027.3498,938646.2188,0,21
+90342,566071.2614,941149.5108,0,21
+90343,566258.3971,944456.1746,0,21
+90344,566440.5625,946374.6046,0,21
+90345,566618.0978,948869.425,0,21
+90346,566791.3173,951250.9181,0,21
+90347,861565.9858,953650.8929,0,21
+90348,567125.9048,956105.5172,0,21
+90349,567287.7592,958397.4077,0,21
+90350,567446.2966,960754.4497,0,21
+90351,567601.7298,963105.4478,0,21
+90352,567754.2465,965553.7705,0,21
+90353,567903.9975,967798.698,0,21
+90354,568051.1048,970141.3158,0,21
+90355,568195.683,972454.7923,0,21
+90356,568337.852,974880.6061,0,21
+90357,568477.732,977108.8431,0,21
+90358,568615.4371,979409.5549,0,21
+90359,568751.0699,981750.2543,0,21
+90360,568884.7166,984112.4925,0,21
+90361,0,0,0,21
+90362,0,0,0,21
+90363,0,0,0,21
+90364,0,0,0,21
+90365,0,0,0,21
+90366,0,32840.08851,0,21
+90367,0,2721.336402,1813594.089,21
+90368,0,3912.089405,0,21
+90369,0,14542.71204,0,21
+90370,0,9170.679596,0,21
+90371,0,10191.99325,0,21
+90372,0,10372.16112,0,21
+90373,32947.72192,10473.1269,0,21
+90374,0,10662.62786,0,21
+90375,290.9572475,11040.03389,0,21
+90376,12159.24111,10888.55322,0,21
+90377,9584.891843,11019.61833,0,21
+90378,9347.695085,11190.25368,0,21
+90379,9715.846076,11291.07027,0,21
+90380,10066.59059,11804.35815,0,21
+90381,10287.41832,12455.26253,0,21
+90382,10481.34997,12364.70178,0,21
+90383,10632.41609,12688.46592,0,21
+90384,10893.9252,12878.00315,0,21
+90385,11012.26411,13159.12022,0,21
+90386,11244.27901,13295.72439,0,21
+90387,11396.96957,13595.01431,0,21
+90388,11570.99463,13734.6328,0,21
+90389,11767.17546,13904.52996,0,21
+90390,11916.58409,14321.69627,0,21
+90391,12087.60348,14382.23924,0,21
+90392,12272.19781,14697.58327,0,21
+90393,12445.95851,14816.48384,0,21
+90394,12555.8466,15030.7131,0,21
+90395,12768.72336,15241.1639,0,21
+90396,12922.95818,0,0,21
+90397,13039.77234,0,0,21
+90398,13235.02991,0,0,21
+90399,13375.35134,46012.93962,0,21
+90400,13526.24436,4880.802987,0,21
+90401,13659.71308,14553.218,0,21
+90402,13825.15194,19071.86345,0,21
+90403,0,16355.19834,1714244.638,21
+90404,0,16833.55358,0,21
+90405,0,17035.61956,0,21
+90406,0,17212.01556,0,21
+90407,53723.99736,267486.624,0,21
+90408,334.9786006,17543.4451,0,21
+90409,10843.44987,40654.49966,0,21
+90410,19497.55505,83639.01433,0,21
+90411,14367.35105,99379.61031,0,21
+90412,15243.52391,77667.40438,0,21
+90413,15330.54625,85401.50337,0,21
+90414,15518.31648,86820.8199,0,21
+90415,15611.72311,87134.12577,0,21
+90416,15748.91552,88530.146,0,21
+90417,15866.44208,89362.12543,0,21
+90418,15982.21138,89963.01592,0,21
+90419,16109.3266,91191.12967,0,21
+90420,16195.91299,92045.74832,0,21
+90421,16585.17652,92978.61374,0,21
+90422,16610.32005,93497.5046,0,21
+90423,16721.91886,92489.24804,0,21
+90424,16868.41191,92360.22957,0,21
+90425,16914.97055,92366.51963,0,21
+90426,17038.85589,91642.96409,0,21
+90427,17110.92818,91650.04335,0,21
+90428,17246.69921,91043.15786,0,21
+90429,17300.22682,71888.29277,0,21
+90430,17419.84685,71441.32348,0,21
+90431,17496.04124,70909.13446,0,21
+90432,17569.74485,131644.1696,0,21
+90433,17683.51573,77131.35028,0,21
+90434,17773.46934,83602.28325,0,21
+90435,17838.80166,93745.5783,0,21
+90436,17928.24667,87758.63973,0,21
+90437,0,18774.24938,0,21
+90438,0,18754.94675,0,21
+90439,0,18645.40425,0,21
+90440,64675.32983,18638.64623,1624434.793,21
+90441,3493.350571,18467.94841,0,21
+90442,12050.32579,18417.31725,0,21
+90443,24397.54453,18331.13755,0,21
+90444,17698.75194,18289.33383,0,21
+90445,18721.58839,18238.97841,0,21
+90446,18827.51214,18107.82437,0,21
+90447,18887.12965,18130.84019,0,21
+90448,18992.40833,288960.1059,0,21
+90449,19058.45485,21023.78524,0,21
+90450,19097.42701,48829.67101,0,21
+90451,19221.88332,84816.71965,0,21
+90452,19267.32003,94384.01203,0,21
+90453,19306.32231,75165.45252,0,21
+90454,19410.15512,80330.8524,0,21
+90455,19487.68673,79611.46352,0,21
+90456,19535.83483,79278.66451,0,21
+90457,19629.32836,78335.10416,0,21
+90458,19661.04586,78153.35161,0,21
+90459,19754.02375,77272.926,0,21
+90460,19839.9364,77125.61373,0,21
+90461,19859.02659,76302.65923,0,21
+90462,19973.46581,58741.20401,0,21
+90463,19998.57184,58474.62537,0,21
+90464,20105.41802,57783.2834,0,21
+90465,20112.41534,110792.8915,0,21
+90466,20243.50892,58585.40821,0,21
+90467,20256.52802,71461.79871,0,21
+90468,308114.0732,75724.11174,0,21
+90469,20418.48983,71277.04004,0,21
+90470,7240.99355,71607.9079,0,21
+90471,80737.88184,70512.21555,0,21
+90472,73050.55937,70412.95933,0,21
+90473,137819.2149,69722.73665,0,21
+90474,80230.99674,69011.44332,0,21
+90475,80148.15536,68404.51982,0,21
+90476,100997.2072,67999.57211,0,21
+90477,92451.46294,67195.97937,1542235.889,21
+90478,94436.71719,15695.07191,0,21
+90479,95248.83848,15624.59681,0,21
+90480,95657.13451,15515.51176,0,21
+90481,96327.77137,15598.87913,0,21
+90482,96320.33411,15712.65185,0,21
+90483,96933.49222,15830.01559,0,21
+90484,96765.75825,15850.38796,0,21
+90485,97568.85374,16032.3425,0,21
+90486,97428.65496,16081.49325,0,21
+90487,98111.09595,16173.94537,0,21
+90488,98062.57054,16302.83716,0,21
+90489,98528.10168,16355.61368,0,21
+90490,98679.04991,16489.001,0,21
+90491,99064.60948,16531.05961,0,21
+90492,99246.15845,16651.33406,0,21
+90493,99377.24692,16727.07038,0,21
+90494,99762.1899,16830.57733,0,21
+90495,100136.6754,0,0,21
+90496,100141.2893,0,0,21
+90497,100695.5851,0,0,21
+90498,21245.63416,55121.13121,0,21
+90499,21222.22118,918.5534223,0,21
+90500,21304.91208,16702.80101,0,21
+90501,21261.10457,20201.02232,0,21
+90502,21271.82046,17189.21536,0,21
+90503,0,17624.44737,0,21
+90504,0,284273.4368,0,21
+90505,0,17935.75056,0,21
+90506,76204.21457,43734.89122,0,21
+90507,8286.576026,81521.79944,0,21
+90508,11167.16269,100051.3885,0,21
+90509,345209.9595,76962.74766,0,21
+90510,48812.32654,84243.32438,0,21
+90511,49168.8498,84495.01025,0,21
+90512,124183.9218,85765.09076,0,21
+90513,111584.1459,85450.72232,0,21
+90514,99888.56626,86572.70395,1467009.194,21
+90515,104265.9617,86816.67601,0,21
+90516,104305.0963,87313.13401,0,21
+90517,104399.7559,87966.7073,0,21
+90518,104179.0578,88529.50827,0,21
+90519,104476.9988,88850.23434,0,21
+90520,104680.0383,89579.66356,0,21
+90521,104214.0957,90205.38356,0,21
+90522,104680.3589,90407.48603,0,21
+90523,104680.4495,91125.10821,0,21
+90524,104714.5237,91924.48579,0,21
+90525,104706.2809,92065.51187,0,21
+90526,104629.5755,94311.8339,0,21
+90527,105004.4036,96859.16007,0,21
+90528,104803.8043,76808.74307,0,21
+90529,105050.4014,77720.39323,0,21
+90530,105185.056,77946.72634,0,21
+90531,104749.0715,146423.1017,0,21
+90532,105349.3106,84794.55423,0,21
+90533,105021.5155,95555.36608,0,21
+90534,105408.7259,25433.73071,0,21
+90535,104987.6994,19593.43684,0,21
+90536,83943.92175,20446.67699,0,21
+90537,84358.18994,20491.39304,0,21
+90538,83787.87633,20590.90018,0,21
+90539,76042.89949,20649.988,0,21
+90540,8069.920363,20770.26872,0,21
+90541,11672.69803,20787.98186,0,21
+90542,28481.0457,345824.1821,0,21
+90543,20396.46248,29998.86539,0,21
+90544,21342.73796,50403.55764,0,21
+90545,21449.09833,138151.6683,0,21
+90546,21415.2809,98288.12,0,21
+90547,21451.70487,111775.0552,0,21
+90548,21438.00025,114353.4284,0,21
+90549,21530.84189,112139.5708,0,21
+90550,389834.9656,114282.6835,0,21
+90551,32144.95419,114666.3887,1398280.992,21
+90552,56802.96563,115774.1261,0,21
+90553,133631.5719,115560.6551,0,21
+90554,116884.6573,116872.8576,0,21
+90555,106511.8101,116954.2589,0,21
+90556,110561.1163,117756.8869,0,21
+90557,110907.3061,118244.5296,0,21
+90558,111051.8684,118854.8044,0,21
+90559,111434.863,119415.4016,0,21
+90560,111013.1489,119627.4893,0,21
+90561,111777.2134,98444.60627,0,21
+90562,111764.1478,98494.11228,0,21
+90563,111668.9683,98844.79904,0,21
+90564,112573.01,174810.2325,0,21
+90565,111910.5064,108002.8841,0,21
+90566,112758.514,113010.1795,0,21
+90567,112428.8493,130304.6787,0,21
+90568,113194.8915,122622.1532,0,21
+90569,90979.10106,124257.4262,0,21
+90570,91853.37745,124605.8808,0,21
+90571,91338.78635,125519.4904,0,21
+90572,169292.0596,22178.81175,0,21
+90573,101342.2851,22260.0641,0,21
+90574,104824.7901,22328.02907,0,21
+90575,121193.5239,22315.93126,0,21
+90576,113725.6574,22383.01114,0,21
+90577,114760.8409,22430.73889,0,21
+90578,115035.6845,384222.195,0,21
+90579,115202.2435,24582.95655,0,21
+90580,22043.70342,91765.88181,0,21
+90581,22072.21409,171919.4309,0,21
+90582,22028.62092,122914.6396,0,21
+90583,22072.21083,131658.5447,0,21
+90584,22105.48074,132504.3347,0,21
+90585,22089.98318,133021.0071,0,21
+90586,22072.20541,133350.1607,0,21
+90587,22138.67068,133609.3922,0,21
+90588,22093.89043,134530.0589,1335408.177,21
+90589,446150.8051,134510.7807,0,21
+90590,25726.17758,135384.1397,0,21
+90591,47398.4876,135608.5041,0,21
+90592,162380.7067,136156.6787,0,21
+90593,117769.3431,136501.9474,0,21
+90594,116326.5106,114079.0042,0,21
+90595,119171.4117,114294.7453,0,21
+90596,119497.3416,114853.7054,0,21
+90597,119300.3829,196179.4171,0,21
+90598,119658.1147,126259.7122,0,21
+90599,119525.3516,126735.2983,0,21
+90600,121021.8047,148674.6796,0,15.6
+90601,121707.4952,138980.2675,0,15.6
+90602,100221.8425,141052.268,0,15.6
+90603,100359.3723,140791.1483,0,15.6
+90604,101662.2195,141983.4915,0,15.6
+90605,180870.7637,141401.4717,0,15.6
+90606,116385.968,142559.9644,0,15.6
+90607,114269.0381,142456.603,0,15.6
+90608,134851.8435,23707.80755,0,15.6
+90609,127160.1243,23709.9789,0,15.6
+90610,128586.3403,23779.37126,0,15.6
+90611,129785.6893,23760.89548,0,15.6
+90612,130190.3861,23852.84467,0,15.6
+90613,131126.267,424951.6345,0,15.6
+90614,131785.0899,49831.85127,0,15.6
+90615,132755.7529,105481.6321,0,15.6
+90616,133417.2749,185257.8878,0,15.6
+90617,134242.9244,140492.9453,0,15.6
+90618,135013.1865,147437.1831,0,15.6
+90619,23883.98175,147676.3841,0,15.6
+90620,24009.9261,148090.0548,0,15.6
+90621,24033.48961,148786.9663,0,15.6
+90622,24148.12918,148292.5479,0,15.6
+90623,24184.67497,149542.0136,0,15.6
+90624,24264.52625,148829.6045,0,15.6
+90625,519676.5432,150111.9734,1277946.68,15.6
+90626,24399.93677,149743.1705,0,15.6
+90627,75033.75744,126093.3556,0,15.6
+90628,196674.7244,126360.4492,0,15.6
+90629,137689.6951,126550.6706,0,15.6
+90630,144189.3036,212776.2723,0,15.6
+90631,144344.6969,139472.9288,0,15.6
+90632,145632.1654,136565.8887,0,15.6
+90633,146025.686,162823.2031,0,15.6
+90634,146620.0899,150913.3888,0,15.6
+90635,122349.6362,153305.6641,0,15.6
+90636,123253.9263,152980.0695,0,15.6
+90637,123333.6438,153793.1942,0,15.6
+90638,207405.2963,154030.6584,0,15.6
+90639,148508.4563,154448.4389,0,15.6
+90640,135084.3606,154357.3719,0,15.6
+90641,159763.3427,155135.6456,0,15.6
+90642,151644.9875,155222.5089,0,15.6
+90643,153248.9684,24801.40393,0,15.6
+90644,153679.4565,24872.13637,0,15.6
+90645,154417.2274,24941.50847,0,15.6
+90646,155200.9113,24852.44411,0,15.6
+90647,156141.5749,24981.24461,0,15.6
+90648,156306.4265,491627.1061,0,15.6
+90649,157583.6561,44407.92122,0,15.6
+90650,158104.3553,117650.1232,0,15.6
+90651,158727.8317,199122.6059,0,15.6
+90652,159463.6182,152893.9168,0,15.6
+90653,160364.7812,158831.2003,0,15.6
+90654,160870.1801,159221.1582,0,15.6
+90655,26493.70433,159680.654,0,15.6
+90656,26684.62228,160025.9492,0,15.6
+90657,26632.30327,159913.9441,0,15.6
+90658,26815.65426,160596.4307,0,15.6
+90659,563541.4296,160751.068,0,15.6
+90660,35732.68996,135761.966,0,15.6
+90661,99237.2587,135761.9647,0,15.6
+90662,224905.4536,136185.5806,1225470.108,15.6
+90663,155305.1531,226448.8531,0,15.6
+90664,166079.4209,149967.8715,0,15.6
+90665,165988.7911,145102.1934,0,15.6
+90666,166551.1058,173324.9184,0,15.6
+90667,166103.4475,160888.5635,0,15.6
+90668,139570.8329,162587.4322,0,15.6
+90669,139428.3075,162802.0483,0,15.6
+90670,217655.3661,162937.385,0,15.6
+90671,155606.6925,163651.4684,0,15.6
+90672,160973.1266,163514.5213,0,15.6
+90673,171282.9979,163415.4627,0,15.6
+90674,166915.6899,164012.3928,0,15.6
+90675,167433.9126,164303.0843,0,15.6
+90676,167342.5057,164228.6085,0,15.6
+90677,167691.9142,164271.3123,0,15.6
+90678,167515.3799,25715.92767,0,15.6
+90679,167939.6626,25720.78614,0,15.6
+90680,167639.8552,25723.48952,0,15.6
+90681,168155.0053,25819.42697,0,15.6
+90682,168320.5946,504604.2741,0,15.6
+90683,168120.9381,31343.67147,0,15.6
+90684,168493.6496,141318.8208,0,15.6
+90685,168412.5994,201268.8684,0,15.6
+90686,168684.9677,160974.4866,0,15.6
+90687,168634.2512,166611.3573,0,15.6
+90688,168951.4107,167005.9802,0,15.6
+90689,27158.04979,167136.6153,0,15.6
+90690,27131.6106,166968.5798,0,15.6
+90691,27164.32782,167541.524,0,15.6
+90692,27167.06817,167543.7399,0,15.6
+90693,594480.6858,141585.5384,0,15.6
+90694,45741.34749,142181.6434,0,15.6
+90695,86169.44283,142132.92,0,15.6
+90696,237446.7572,234945.0445,0,15.6
+90697,159018.1168,157467.0727,0,15.6
+90698,170242.2977,149576.7752,0,15.6
+90699,170653.3077,181091.8847,1177632.31,15.6
+90700,143386.5864,167018.8156,0,15.6
+90701,143627.5824,169242.2156,0,15.6
+90702,221776.9934,168854.4106,0,15.6
+90703,160114.3434,169759.6964,0,15.6
+90704,164729.4391,169393.7444,0,15.6
+90705,175507.1656,170110.4688,0,15.6
+90706,170743.9774,169784.9582,0,15.6
+90707,171203.2245,170188.2817,0,15.6
+90708,171322.0749,170349.2086,0,15.6
+90709,171256.0132,170410.1205,0,15.6
+90710,171634.6931,170714.135,0,15.6
+90711,171471.0424,170394.0318,0,15.6
+90712,171583.0795,26293.64383,0,15.6
+90713,171713.632,26351.57971,0,15.6
+90714,171754.4005,26362.98107,0,15.6
+90715,171933.6805,26330.7556,0,15.6
+90716,171921.5982,536742.6457,0,15.6
+90717,171924.6532,28882.10012,0,15.6
+90718,172234.4953,146082.9922,0,15.6
+90719,172426.1594,209073.1619,0,15.6
+90720,173480.4891,166998.2763,0,15.6
+90721,174419.7639,172692.7901,0,15.6
+90722,176628.4854,438459.2028,0,15.6
+90723,27983.74053,172650.4634,0,15.6
+90724,28273.83492,172577.0016,0,15.6
+90725,28428.06753,172592.3173,0,15.6
+90726,28687.25415,145825.9476,0,15.6
+90727,658052.0404,147317.2803,0,15.6
+90728,75927.12544,147100.4382,0,15.6
+90729,80696.06085,242310.2106,0,15.6
+90730,274665.2824,427388.4661,0,15.6
+90731,183525.1869,154502.8995,0,15.6
+90732,168722.3928,185714.5481,0,15.6
+90733,170766.3533,171483.5364,0,15.6
+90734,256057.8158,173668.1995,0,15.6
+90735,201745.6468,172935.6234,0,15.6
+90736,196638.0332,173304.2998,1133892.637,15.6
+90737,215467.9998,173633.7644,0,15.6
+90738,211658.5839,438453.7856,0,15.6
+90739,214252.0372,173001.8574,0,15.6
+90740,215991.3103,173416.3911,0,15.6
+90741,218272.8555,172045.405,0,15.6
+90742,220824.3368,171898.6045,0,15.6
+90743,222493.0521,172025.5749,0,15.6
+90744,225029.0267,171878.2276,0,15.6
+90745,226938.918,171790.2012,0,15.6
+90746,229120.1914,291579.6126,0,15.6
+90747,231485.6857,26271.18236,0,15.6
+90748,233641.5015,26194.7038,0,15.6
+90749,235738.6932,26208.47728,0,15.6
+90750,237912.3752,552101.5689,0,15.6
+90751,240258.0686,26233.47831,0,15.6
+90752,242513.6049,131327.3504,0,15.6
+90753,244437.5487,479700.1326,0,15.6
+90754,247132.8454,163343.2574,0,15.6
+90755,248964.4621,171449.9241,0,15.6
+90756,251326.8393,171751.495,0,15.6
+90757,36063.8342,171481.1326,0,15.6
+90758,36300.14657,171000.0073,0,15.6
+90759,36510.76245,145513.7314,0,15.6
+90760,772820.3354,407075.0966,0,15.6
+90761,222695.262,144960.0683,0,15.6
+90762,126726.6271,239607.6269,0,15.6
+90763,346037.4224,158223.3837,0,15.6
+90764,223971.0096,152902.3762,0,15.6
+90765,233536.786,182958.0267,0,15.6
+90766,325721.2031,168430.2213,0,15.6
+90767,287163.893,432907.7283,0,15.6
+90768,268409.2358,170549.0573,0,15.6
+90769,282725.2549,170992.5132,0,15.6
+90770,285587.8729,170314.2332,0,15.6
+90771,285012.3552,170445.6739,0,15.6
+90772,287970.9057,170415.2327,0,15.6
+90773,291103.8638,170060.0014,1093497.411,15.6
+90774,293409.1294,432386.232,0,15.6
+90775,295708.6762,170218.7175,0,15.6
+90776,298333.9015,169936.2765,0,15.6
+90777,300210.1549,170040.7292,0,15.6
+90778,302800.4466,170139.39,0,15.6
+90779,304720.0652,169351.0919,0,15.6
+90780,307859.3461,25924.30045,0,15.6
+90781,306307.649,287748.4471,0,15.6
+90782,306331.5869,25761.36741,0,15.6
+90783,306257.7759,25612.42975,0,15.6
+90784,305206.1264,25577.29219,0,15.6
+90785,305259.5035,584856.9973,0,15.6
+90786,304378.5623,29257.89113,0,15.6
+90787,304281.1688,100225.3014,0,15.6
+90788,303367.9862,478590.009,0,15.6
+90789,303144.2314,156088.3531,0,15.6
+90790,41527.79228,160551.3434,0,15.6
+90791,41357.80457,160437.7718,0,15.6
+90792,760928.4974,134817.0255,0,15.6
+90793,236729.8668,134372.7571,0,15.6
+90794,223814.3983,133144.6424,0,15.6
+90795,345398.7014,483343.2216,0,15.6
+90796,255743.9689,142025.7058,0,15.6
+90797,258763.8025,140007.085,0,15.6
+90798,348082.814,164875.9302,0,15.6
+90799,310468.8056,152103.1114,0,15.6
+90800,295886.8824,152126.7824,0,15.6
+90801,294440.9684,152231.843,0,15.6
+90802,300082.0953,412492.9752,0,15.6
+90803,296660.6855,151140.1801,0,15.6
+90804,296177.606,149680.534,0,15.6
+90805,295296.9517,149262.7779,0,15.6
+90806,295019.8104,148353.4639,0,15.6
+90807,294192.457,147171.4763,0,15.6
+90808,294020.9969,146369.9242,0,15.6
+90809,293015.0166,407396.8806,0,15.6
+90810,293015.2903,144916.6778,1056909.743,15.6
+90811,290417.1508,142660.6149,0,15.6
+90812,291004.5918,142078.3022,0,15.6
+90813,289279.931,141151.6659,0,15.6
+90814,289378.1717,140154.8204,0,15.6
+90815,288587.693,22664.12411,0,15.6
+90816,287887.8678,284437.4259,0,15.6
+90817,287652.6163,22418.43926,0,15.6
+90818,286731.7798,22334.96925,0,15.6
+90819,286243.5608,22244.61981,0,15.6
+90820,285912.1044,22109.62696,0,15.6
+90821,285318.9771,22041.93512,0,15.6
+90822,39615.88242,473827.2122,0,15.6
+90823,39486.73142,283718.9572,0,15.6
+90824,39518.01085,82193.60699,0,15.6
+90825,808044.6959,137340.2811,0,15.6
+90826,311877.4538,112450.06,0,15.6
+90827,120280.4938,103786.2357,0,15.6
+90828,316664.3816,181973.1474,0,15.6
+90829,239940.3409,110117.2559,0,15.6
+90830,330362.4939,378954.2844,0,15.6
+90831,292002.5483,132291.6793,0,15.6
+90832,269688.1714,122540.1046,0,15.6
+90833,279910.5708,123116.1559,0,15.6
+90834,279758.6356,121790.1544,0,15.6
+90835,277542.7441,120966.5554,0,15.6
+90836,276516.3693,119941.9527,0,15.6
+90837,276378.8759,380736.0259,0,15.6
+90838,275029.4928,117960.8023,0,15.6
+90839,274941.9999,116455.0274,0,15.6
+90840,274241.7408,114596.1836,0,15.6
+90841,272876.9253,117322.3413,0,15.6
+90842,272193.9614,118189.4223,0,15.6
+90843,270895.0157,119748.0782,0,15.6
+90844,270307.6426,382641.6383,0,15.6
+90845,269252.6504,122331.5317,0,15.6
+90846,267815.3566,123557.5682,0,15.6
+90847,267414.1306,124655.653,1023946.589,15.6
+90848,266117.2172,125821.8194,0,15.6
+90849,264922.4368,127156.3014,0,15.6
+90850,264702.9739,128354.0011,0,15.6
+90851,262535.2326,391783.1896,0,15.6
+90852,262557.5694,21728.79494,0,15.6
+90853,261076.9041,21846.42604,0,15.6
+90854,260009.6511,21989.75625,0,15.6
+90855,36916.73658,22150.9117,0,15.6
+90856,36754.49908,22267.68001,0,15.6
+90857,36708.81841,22366.41968,0,15.6
+90858,778106.1145,262008.4949,0,15.6
+90859,231455.7374,456479.383,0,15.6
+90860,64330.08016,577.0114769,0,15.6
+90861,298558.2325,149280.8289,0,15.6
+90862,296762.2369,161342.666,0,15.6
+90863,258909.6176,133639.1437,0,15.6
+90864,238313.8634,150842.6963,0,15.6
+90865,253710.7424,406429.9447,0,15.6
+90866,249063.5808,147586.8977,0,15.6
+90867,248101.0456,148106.6094,0,15.6
+90868,245853.3833,149689.1407,0,15.6
+90869,246174.2748,150635.2503,0,15.6
+90870,243926.1976,151271.5945,0,15.6
+90871,243427.4556,153209.6084,0,15.6
+90872,242441.0006,415681.4412,0,15.6
+90873,241334.126,155237.6232,0,15.6
+90874,239854.2902,155861.6748,0,15.6
+90875,239482.3076,157595.3427,0,15.6
+90876,237911.8997,158143.8503,0,15.6
+90877,237000.5514,159460.8396,0,15.6
+90878,236145.7784,160686.5398,0,15.6
+90879,234827.6262,423515.4241,0,15.6
+90880,233709.1907,163288.417,0,15.6
+90881,233082.1065,163722.123,0,15.6
+90882,231549.2704,165073.2189,0,15.6
+90883,230775.1054,166273.1284,0,15.6
+90884,229544.7511,167458.3939,993986.2022,15.6
+90885,228635.9033,168159.7763,0,15.6
+90886,227329.2572,169675.5535,0,15.6
+90887,226706.5293,170806.8079,0,15.6
+90888,33285.20986,171965.6244,0,15.6
+90889,33122.19453,26464.03757,0,15.6
+90890,32992.84515,26600.73078,0,15.6
+90891,709066.3639,0,0,15.6
+90892,81751.71369,0,0,15.6
+90893,101272.9373,555265.4484,0,15.6
+90894,331229.8155,95846.68903,0,15.6
+90895,213085.8661,121727.0659,0,15.6
+90896,203682.0883,212422.4352,0,15.6
+90897,222151.4578,185762.5014,0,15.6
+90898,214834.9855,180899.9054,0,15.6
+90899,214213.3543,184692.3112,0,15.6
+90900,213729.001,185225.6577,0,15.6
+90901,214481.4879,186431.733,0,15.6
+90902,214973.7341,186665.5349,0,15.6
+90903,215651.9878,187020.9391,0,15.6
+90904,216343.7497,188767.5539,0,15.6
+90905,216768.0876,188159.5198,0,15.6
+90906,217403.0128,189418.9537,0,15.6
+90907,218274.4509,189893.3718,0,15.6
+90908,218621.0799,191509.8218,0,15.6
+90909,219468.3086,191756.7196,0,15.6
+90910,219535.7531,192732.9137,0,15.6
+90911,221006.2288,193010.8816,0,15.6
+90912,220890.9632,194471.962,0,15.6
+90913,221880.3275,193807.7069,0,15.6
+90914,222157.3867,195718.7182,0,15.6
+90915,223165.6019,195939.6997,0,15.6
+90916,223646.2072,195594.9336,0,15.6
+90917,223876.0247,196531.7755,0,15.6
+90918,225280.7089,197215.9218,0,15.6
+90919,225355.6787,197678.3055,0,15.6
+90920,226022.7137,198618.6241,0,15.6
+90921,33506.83974,199315.3757,0,15.6
+90922,33602.02515,199717.3666,966760.9175,15.6
+90923,33671.607,29633.48511,0,15.6
+90924,688462.2584,0,0,15.6
+90925,96912.52214,0,0,15.6
+90926,186088.1938,86175.52023,0,15.6
+90927,298607.2216,680846.7659,0,15.6
+90928,210877.5993,74899.1217,0,15.6
+90929,237270.422,96093.97962,0,15.6
+90930,232942.5437,288434.3338,0,15.6
+90931,233633.3981,192483.4308,0,15.6
+90932,234320.5163,206622.3374,0,15.6
+90933,234264.6851,207510.108,0,15.6
+90934,235642.8546,208148.3381,0,15.6
+90935,235981.3537,209157.3027,0,15.6
+90936,236220.8067,209436.2099,0,15.6
+90937,237354.3973,210298.3979,0,15.6
+90938,237684.7588,210687.8733,0,15.6
+90939,238469.8607,211260.6712,0,15.6
+90940,238595.695,212304.3025,0,15.6
+90941,240040.0853,212545.7537,0,15.6
+90942,240307.4928,214598.9759,0,15.6
+90943,240646.3728,215320.4122,0,15.6
+90944,241380.6184,215975.1768,0,15.6
+90945,242154.0977,216420.0151,0,15.6
+90946,243205.2457,217168.8914,0,15.6
+90947,242852.9835,217857.9709,0,15.6
+90948,244187.888,218654.4594,0,15.6
+90949,244833.5786,218307.0913,0,15.6
+90950,244839.1824,218542.2998,0,15.6
+90951,246191.4246,219386.2643,0,15.6
+90952,246546.1938,220209.0439,0,15.6
+90953,246892.6231,221065.3285,0,15.6
+90954,36043.5176,221077.4444,0,15.6
+90955,36169.77987,222271.7638,0,15.6
+90956,0,190967.616,0,15.6
+90957,732782.0772,0,0,15.6
+90958,261553.5285,93715.74929,0,15.6
+90959,113039.7554,14912.21066,942197.7958,15.6
+90960,322557.856,703767.9562,0,17.8
+90961,244868.3602,77407.73725,0,17.8
+90962,249586.6176,151533.7807,0,17.8
+90963,246558.6555,287736.2782,0,17.8
+90964,245556.7619,214027.0879,0,17.8
+90965,243243.0657,224058.2729,0,17.8
+90966,241804.6577,223775.3558,0,17.8
+90967,239667.4282,223817.0082,0,17.8
+90968,238084.0573,223142.3663,0,17.8
+90969,236286.057,222643.202,0,17.8
+90970,234587.6311,222572.684,0,17.8
+90971,232678.2174,222178.9443,0,17.8
+90972,231097.3063,221879.6361,0,17.8
+90973,228940.2091,221555.166,0,17.8
+90974,227541.9497,221359.2273,0,17.8
+90975,225504.8724,220586.9171,0,17.8
+90976,223811.1725,220619.6207,0,17.8
+90977,221975.023,220033.505,0,17.8
+90978,220302.401,219865.6395,0,17.8
+90979,218052.4645,219313.3994,0,17.8
+90980,216837.3458,219591.0171,0,17.8
+90981,214604.3291,218695.6646,0,17.8
+90982,213006.9358,218502.8627,0,17.8
+90983,211074.1373,218244.3772,0,17.8
+90984,209336.4231,217983.8315,0,17.8
+90985,207454.7006,217107.7571,0,17.8
+90986,205640.6602,217834.4235,0,17.8
+90987,31425.41675,216155.8316,0,17.8
+90988,0,185211.4232,0,17.8
+90989,0,184741.4894,0,17.8
+90990,721847.4084,92075.86023,0,17.8
+90991,62815.14435,13540.50371,0,17.8
+90992,96712.11376,26226.59508,0,17.8
+90993,266361.0213,36634.6957,0,17.8
+90994,179319.111,773015.7748,919354.7702,17.8
+90995,189146.9957,95122.84464,0,17.8
+90996,187748.4864,64169.12346,0,17.8
+90997,185124.8563,313620.1359,0,17.8
+90998,183605.7506,198970.5663,0,17.8
+90999,181707.0771,212321.3889,0,17.8
+91000,179713.8084,213066.5692,0,17.8
+91001,177841.3848,212407.1384,0,17.8
+91002,515012.0721,212498.9832,0,17.8
+91003,173952.5337,211776.5183,0,17.8
+91004,171946.701,211582.6256,0,17.8
+91005,169855.7257,211257.4683,0,17.8
+91006,168243.5139,210731.3264,0,17.8
+91007,165887.9276,210751.8609,0,17.8
+91008,163964.8045,209784.4398,0,17.8
+91009,162154.6293,210103.4664,0,17.8
+91010,159865.1439,209289.726,0,17.8
+91011,158003.8482,208762.8273,0,17.8
+91012,156144.0123,209262.9191,0,17.8
+91013,153630.6014,207998.9635,0,17.8
+91014,151670.235,208305.9344,0,17.8
+91015,149646.5963,207391.7596,0,17.8
+91016,147897.9419,207412.9323,0,17.8
+91017,144743.3612,207354.9267,0,17.8
+91018,143275.9167,206299.215,0,17.8
+91019,140313.2153,206530.729,0,17.8
+91020,0,175284.5422,0,20
+91021,0,174500.8037,0,20
+91022,0,262358.2362,0,20
+91023,82073.81007,184993.0454,0,20
+91024,20826.29999,25978.00459,0,20
+91025,552141.7247,34855.08231,0,20
+91026,33445.96349,29690.01003,0,20
+91027,53388.55547,30134.74045,0,20
+91028,200817.5864,713346.3571,0,20
+91029,148650.5443,65853.7318,898327.6797,20
+91030,145778.7208,77953.85736,0,20
+91031,150825.1311,284673.2816,0,20
+91032,152216.1442,181753.4387,0,20
+91033,153102.7302,195088.5879,0,20
+91034,154038.2992,194360.8229,0,20
+91035,155337.4816,193753.7633,0,20
+91036,156317.2354,192231.3993,0,20
+91037,157249.1537,190533.9904,0,20
+91038,158739.2996,190141.784,0,20
+91039,159358.6829,188611.7756,0,20
+91040,160758.5423,188004.6359,0,20
+91041,161569.4414,188065.7872,0,20
+91042,163172.9721,186478.4977,0,20
+91043,163635.8145,185260.2008,0,20
+91044,165019.2442,185130.3084,0,20
+91045,166088.4601,183640.4595,0,20
+91046,167041.1188,183176.822,0,20
+91047,168762.1748,181917.8231,0,20
+91048,509410.0412,181403.2073,0,20
+91049,171041.1595,179842.8167,0,20
+91050,172096.465,179590.6626,0,20
+91051,173634.9892,178305.8885,0,20
+91052,174332.5734,149133.5249,0,20
+91053,146321.9502,147546.552,0,20
+91054,146619.8517,147469.0676,0,20
+91055,80632.18394,243621.1084,0,20
+91056,21197.24158,159587.946,0,20
+91057,21685.46831,153299.1441,0,20
+91058,34016.14924,39108.39336,0,20
+91059,667563.743,24919.89418,0,20
+91060,64925.32823,26722.71351,0,20
+91061,79153.13037,26665.38757,0,20
+91062,259591.1816,26534.64422,0,20
+91063,177770.47,622009.7127,0,20
+91064,187450.6298,27958.1305,877733.9157,20
+91065,189757.7737,77058.86851,0,20
+91066,190921.3484,231592.1645,0,20
+91067,192016.5625,155493.4993,0,20
+91068,193194.4196,161867.097,0,20
+91069,194138.4715,162563.9444,0,20
+91070,195375.6574,161213.481,0,20
+91071,196496.8272,160365.5251,0,20
+91072,197426.6259,159890.8796,0,20
+91073,198970.2832,158171.3814,0,20
+91074,199929.4449,157568.2244,0,20
+91075,200800.817,156747.319,0,20
+91076,202040.9621,155120.4533,0,20
+91077,203431.4625,154677.9572,0,20
+91078,204298.8285,153390.245,0,20
+91079,205613.6931,151872.8114,0,20
+91080,207783.6543,149939.0775,0,21
+91081,204250.1945,148136.4106,0,21
+91082,204258.8867,147241.3724,0,21
+91083,204569.1239,147722.902,0,21
+91084,204743.9023,147696.6384,0,21
+91085,170683.107,121469.4612,0,21
+91086,171346.0333,121986.9503,0,21
+91087,256157.6158,121669.6173,0,21
+91088,203512.3422,207534.7389,0,21
+91089,20893.10423,129861.5851,0,21
+91090,37709.87509,134240.5836,0,21
+91091,32693.92853,155309.4694,0,21
+91092,677017.8856,144607.1423,0,21
+91093,74731.58267,24393.82609,0,21
+91094,135271.1603,24390.94746,0,21
+91095,266308.9937,25729.42601,0,21
+91096,199469.9367,27368.23782,0,21
+91097,208370.1236,26044.11095,0,21
+91098,208502.8373,26676.10105,0,21
+91099,208890.1562,552485.4337,0,21
+91100,209180.9092,26712.26497,0,21
+91101,209349.277,65283.33036,858200.2318,21
+91102,209509.9514,195984.2691,0,21
+91103,209906.6496,151184.8879,0,21
+91104,209968.0268,144865.0649,0,21
+91105,210409.3603,149880.537,0,21
+91106,210446.3073,149327.6225,0,21
+91107,210591.6569,149991.7746,0,21
+91108,211301.7475,149327.6269,0,21
+91109,210884.4339,150023.7007,0,21
+91110,211464.0375,149440.9772,0,21
+91111,211757.0273,150070.7328,0,21
+91112,211669.4527,149724.2679,0,21
+91113,212484.3607,149726.937,0,21
+91114,212049.8929,150125.049,0,21
+91115,212742.0547,149528.6726,0,21
+91116,212819.8725,150622.4686,0,21
+91117,176581.1236,149653.3545,0,21
+91118,176256.8636,122784.6486,0,21
+91119,263510.3494,123312.9011,0,21
+91120,213036.3649,122644.0132,0,21
+91121,197151.5165,209723.5433,0,21
+91122,45404.07791,131417.4417,0,21
+91123,36584.70031,135355.7781,0,21
+91124,37097.86091,156822.6375,0,21
+91125,689431.8848,146142.7047,0,21
+91126,89258.48146,150797.625,0,21
+91127,146421.2246,151302.476,0,21
+91128,270714.1879,150196.388,0,21
+91129,209295.1179,27727.02196,0,21
+91130,216212.468,27715.61738,0,21
+91131,208292.922,27795.85324,0,21
+91132,206644.4889,27936.32227,0,21
+91133,205619.2896,27745.28951,0,21
+91134,205035.6299,27995.59031,0,21
+91135,204215.6906,563965.919,0,21
+91136,203916.92,27961.54368,0,21
+91137,202628.8188,62710.65845,0,21
+91138,202366.4874,203842.6409,841142.9714,21
+91139,201117.4754,151644.1991,0,21
+91140,200759.7685,148518.8109,0,21
+91141,200437.2588,152025.2703,0,21
+91142,199707.3727,152093.4595,0,21
+91143,200043.4445,152880.8707,0,21
+91144,199172.8409,152169.3199,0,21
+91145,199249.1286,153224.3596,0,21
+91146,198280.9934,152316.0493,0,21
+91147,198283.9419,153274.5572,0,21
+91148,197432.7557,152837.6245,0,21
+91149,161291.2666,153587.1222,0,21
+91150,160292.381,152858.5257,0,21
+91151,241565.9013,124971.578,0,21
+91152,194778.6666,124971.5772,0,21
+91153,183619.9468,125110.9908,0,21
+91154,200672.2024,212646.0106,0,21
+91155,35700.6381,134626.0395,0,21
+91156,36163.15028,136977.7818,0,21
+91157,36150.90514,159869.7682,0,21
+91158,558261.3922,155879.8485,0,21
+91159,105703.5847,153652.8775,0,21
+91160,148638.78,154342.8367,0,21
+91161,224064.2168,155166.3583,0,21
+91162,189030.7667,154782.0424,0,21
+91163,190205.9729,155388.9049,0,21
+91164,190329.9598,155051.0451,0,21
+91165,189535.8498,29327.44913,0,21
+91166,189326.5395,29463.41076,0,21
+91167,188431.2746,29290.96347,0,21
+91168,188182.642,29481.38065,0,21
+91169,188103.5233,29457.26014,0,21
+91170,186677.3457,29463.41494,0,21
+91171,187173.748,588389.9437,0,21
+91172,185779.231,29590.41077,0,21
+91173,185898.6407,57498.3045,0,21
+91174,185296.4799,221994.4143,825671.2943,21
+91175,184197.1548,151702.5352,0,21
+91176,184248.5777,154713.7166,0,21
+91177,183368.6484,157479.3622,0,21
+91178,183110.9513,157689.6304,0,21
+91179,182309.6019,157875.2806,0,21
+91180,183534.6786,157886.1228,0,21
+91181,146906.8893,157893.0868,0,21
+91182,146448.2567,158360.7078,0,21
+91183,220102.4265,158133.4993,0,21
+91184,185019.4408,128414.5399,0,21
+91185,174168.7443,128286.4936,0,21
+91186,186032.7126,128885.6193,0,21
+91187,183424.4945,218222.8918,0,21
+91188,35506.53068,138427.571,0,21
+91189,35395.04396,140944.452,0,21
+91190,35407.15604,170417.0456,0,21
+91191,531477.0326,158317.0594,0,21
+91192,144612.864,158782.2153,0,21
+91193,113060.7019,159319.8533,0,21
+91194,223867.8034,160344.5615,0,21
+91195,181510.9253,159568.1882,0,21
+91196,183958.1391,160169.8662,0,21
+91197,183702.506,160104.4534,0,21
+91198,184434.2018,124638.5615,0,21
+91199,183804.8457,114846.519,0,21
+91200,183780.5269,112240.8896,0,21
+91201,183527.8834,25582.32578,0,21
+91202,183436.8628,25506.37323,0,21
+91203,182517.8734,25240.74557,0,21
+91204,182760.646,25181.54352,0,21
+91205,182271.0851,25073.3693,0,21
+91206,181441.6751,24977.2753,0,21
+91207,181564.6781,317761.1138,0,21
+91208,180535.5859,35934.71173,0,21
+91209,180703.9447,74851.93146,0,21
+91210,179873.8899,121064.5895,811734.6854,21
+91211,179430.8867,104874.4153,0,21
+91212,178977.1298,99908.3268,0,21
+91213,145249.5623,101184.6337,0,21
+91214,145222.5252,100501.9685,0,21
+91215,208391.8266,99957.29851,0,21
+91216,180785.2989,98931.99512,0,21
+91217,164592.141,74462.49829,0,21
+91218,178916.1955,74023.28243,0,21
+91219,173945.2944,73251.73313,0,21
+91220,173141.9815,127422.5219,0,21
+91221,32019.9482,81670.19924,0,21
+91222,31898.96965,84630.20845,0,21
+91223,31577.91745,102864.9252,0,21
+91224,525306.4797,91563.29859,0,21
+91225,106694.5199,92995.50736,0,21
+91226,93445.77786,92292.28027,0,21
+91227,217299.8498,91536.13475,0,21
+91228,161284.4541,91143.30997,0,21
+91229,166238.1358,89899.77466,0,21
+91230,166154.2586,89734.32269,0,21
+91231,164633.0169,88926.22073,0,21
+91232,164107.6784,88651.70218,0,21
+91233,162993.2849,88107.51911,0,21
+91234,162369.4066,87904.33882,0,21
+91235,161319.9904,87252.36895,0,21
+91236,160760.0187,86555.53335,0,21
+91237,159356.4127,22510.88595,0,21
+91238,158966.6346,22537.50583,0,21
+91239,157817.1975,22434.14608,0,21
+91240,156860.4866,22331.886,0,21
+91241,156089.7789,22434.43912,0,21
+91242,155133.021,22303.26045,0,21
+91243,153969.4445,22228.39922,0,21
+91244,153131.9884,256828.2641,0,21
+91245,124124.359,22569.67155,0,21
+91246,122463.1794,47919.20155,799326.22,21
+91247,183825.3317,67546.66127,0,21
+91248,146674.7033,101699.2083,0,21
+91249,135591.814,75027.6584,0,21
+91250,154495.2811,58618.1376,0,21
+91251,145153.1368,59314.0721,0,21
+91252,144883.1476,59225.25792,0,21
+91253,143973.6934,107909.7287,0,21
+91254,27104.60498,66646.66957,0,21
+91255,27016.39227,72899.75948,0,21
+91256,26805.3227,88688.06524,0,21
+91257,401272.7936,79014.82652,0,21
+91258,87248.52981,80802.18236,0,21
+91259,86076.34472,80882.45327,0,21
+91260,170509.6058,80825.13344,0,21
+91261,131178.0129,80591.32211,0,21
+91262,134119.7409,80692.00892,0,21
+91263,132971.9277,80472.82297,0,21
+91264,131914.4519,80369.57114,0,21
+91265,130723.4398,80323.31755,0,21
+91266,129653.7266,80027.6479,0,21
+91267,128264.0854,80430.39209,0,21
+91268,127215.3888,79733.05863,0,21
+91269,126214.1029,80043.23439,0,21
+91270,124763.4465,79619.53683,0,21
+91271,123766.5053,79814.25396,0,21
+91272,122375.0892,79405.67101,0,21
+91273,121318.7273,79479.87826,0,21
+91274,120191.9393,22191.59692,0,21
+91275,118689.0799,22064.31376,0,21
+91276,117857.0268,22086.33845,0,21
+91277,92661.58646,22100.77314,0,21
+91278,91986.79949,22158.02331,0,21
+91279,144874.6796,21957.6055,0,21
+91280,107480.2791,22162.9652,0,21
+91281,100894.6272,21984.66997,0,21
+91282,111649.7126,21987.2218,788119.2955,21
+91283,110739.3906,216088.4708,0,21
+91284,108444.862,8056.100457,0,21
+91285,108824.4994,21045.42027,0,21
+91286,108358.3148,78270.86561,0,21
+91287,21921.72339,77679.76407,0,21
+91288,21936.01502,67743.5594,0,21
+91289,21628.76678,81170.51839,0,21
+91290,306272.763,74819.37251,0,21
+91291,72831.8696,76658.67056,0,21
+91292,72221.89255,76613.73753,0,21
+91293,129496.1151,76219.80526,0,21
+91294,105333.6716,75968.85537,0,21
+91295,106454.244,76172.98216,0,21
+91296,106833.2735,75765.5883,0,21
+91297,106245.8563,75631.09641,0,21
+91298,106350.4085,75347.83183,0,21
+91299,105722.4425,75232.45699,0,21
+91300,105930.8356,75161.72117,0,21
+91301,105469.4377,74955.87981,0,21
+91302,105390.1905,74716.8001,0,21
+91303,105059.0477,74801.23359,0,21
+91304,104975.7149,74295.47507,0,21
+91305,104527.4761,74136.07198,0,21
+91306,104675.2314,74263.87351,0,21
+91307,104259.007,73688.64967,0,21
+91308,104057.9913,73791.50701,0,21
+91309,85304.54865,73520.58443,0,21
+91310,85151.1456,73299.60358,0,21
+91311,126644.6051,73190.61627,0,21
+91312,101381.943,73001.53841,0,21
+91313,95856.52811,21453.61913,0,21
+91314,104431.6282,21427.83246,0,21
+91315,101147.7813,21284.10663,0,21
+91316,101324.2686,0,0,21
+91317,101029.4345,0,0,21
+91318,101419.3189,0,777692.0485,21
+91319,102652.6953,51150.55268,0,21
+91320,16596.97629,671.8026199,0,21
+91321,16794.96531,16843.8436,0,21
+91322,16714.22864,25405.06404,0,21
+91323,295119.4893,20707.73973,0,21
+91324,62604.39034,20652.4681,0,21
+91325,70938.12455,21063.0569,0,21
+91326,121072.0609,209966.6743,0,21
+91327,98902.25568,41411.40322,0,21
+91328,100211.9002,35599.1528,0,21
+91329,100289.3506,36265.94956,0,21
+91330,99794.20511,74543.46386,0,21
+91331,99946.01201,59233.20482,0,21
+91332,99475.68478,70006.64467,0,21
+91333,99341.22362,66599.83997,0,21
+91334,99264.44463,67048.84329,0,21
+91335,98797.57101,67549.99943,0,21
+91336,99062.76846,67055.2183,0,21
+91337,98798.60726,67070.22155,0,21
+91338,98735.64457,69520.37212,0,21
+91339,437873.2692,68893.78106,0,21
+91340,98393.20003,68959.29123,0,21
+91341,83800.22572,68855.06865,0,21
+91342,83950.08188,68449.49655,0,21
+91343,119714.1519,68837.98277,0,21
+91344,97138.59887,68545.99529,0,21
+91345,92628.14734,68475.28373,0,21
+91346,99917.88969,68161.95593,0,21
+91347,97610.66766,68291.2783,0,21
+91348,97496.3612,68150.15532,0,21
+91349,97335.25265,47801.70094,0,21
+91350,98523.69469,47423.12659,0,21
+91351,97432.66145,47335.69913,0,21
+91352,98113.26426,46858.07876,0,21
+91353,14680.8055,100458.7278,0,21
+91354,14721.93479,47852.33489,767672.5007,21
+91355,14806.30885,56282.36601,0,21
+91356,14811.39238,19650.41465,0,21
+91357,305686.2865,23405.28594,0,21
+91358,95435.51141,18149.4262,0,21
+91359,33707.15366,19684.36693,0,21
+91360,132891.8692,19737.22016,0,21
+91361,95064.30655,19607.34472,0,21
+91362,98530.46933,19486.37128,0,21
+91363,98605.98058,19521.02145,0,21
+91364,98323.16336,19460.9622,0,21
+91365,98716.11455,19249.43984,0,21
+91366,98111.99679,19302.90103,0,21
+91367,98810.58205,19287.29737,0,21
+91368,98245.683,19038.28825,0,21
+91369,98301.44097,19010.29321,0,21
+91370,98491.11166,19055.51423,0,21
+91371,98390.17152,18869.77537,0,21
+91372,98156.89798,18809.91131,0,21
+91373,82735.97331,18728.56318,0,21
+91374,82432.12994,18687.81505,0,21
+91375,122198.3298,18278.03484,0,21
+91376,95560.65776,18133.1512,0,21
+91377,93682.4091,18078.88277,0,21
+91378,100789.0434,17849.25561,0,21
+91379,98082.53373,17907.15268,0,21
+91380,97889.91335,17662.29612,0,21
+91381,97582.66528,17795.99042,0,21
+91382,97430.52944,17837.15703,0,21
+91383,96987.38404,0,0,21
+91384,96988.53655,0,0,21
+91385,96643.02815,0,0,21
+91386,96514.94302,0,0,21
+91387,16092.93127,41811.18569,0,21
+91388,16094.8976,2090.443478,0,21
+91389,16068.9709,13116.56143,0,21
+91390,16077.06684,15509.12943,0,21
+91391,294399.8684,18516.08169,757886.5284,21
+91392,82122.42089,18309.50345,0,21
+91393,42689.48292,17314.68039,0,21
+91394,124101.6211,17811.48401,0,21
+91395,92300.94284,18036.15243,0,21
+91396,94382.08074,17774.92427,0,21
+91397,94202.28427,17948.63337,0,21
+91398,93865.19412,202487.1859,0,21
+91399,93687.13555,17844.16571,0,21
+91400,93495.31026,29282.40219,0,21
+91401,92999.59794,35781.58938,0,21
+91402,93123.53362,70176.75241,0,21
+91403,92627.24348,53335.16582,0,21
+91404,92274.50899,54352.463,0,21
+91405,76742.5524,55775.24319,0,21
+91406,75935.65716,56240.18947,0,21
+91407,75935.65603,56560.21367,0,21
+91408,124933.4141,56277.557,0,21
+91409,92760.39878,56889.33776,0,21
+91410,79696.83768,56609.38213,0,21
+91411,95615.36904,57361.68975,0,21
+91412,91482.60233,57397.11247,0,21
+91413,92381.21948,57951.70938,0,21
+91414,91330.88825,58711.1361,0,21
+91415,91698.57126,62466.42177,0,21
+91416,91422.3154,61078.13225,0,21
+91417,91377.55469,44480.7197,0,21
+91418,90969.7392,45001.59537,0,21
+91419,90907.95236,45911.50479,0,21
+91420,90665.81801,87197.62689,0,21
+91421,15251.59432,50121.36931,0,21
+91422,15258.6053,62495.74766,0,21
+91423,15137.90281,64688.19942,0,21
+91424,15135.79532,68306.30193,0,21
+91425,273140.3576,68930.39414,0,21
+91426,51869.98623,68503.23491,0,21
+91427,57653.46118,69947.87033,0,21
+91428,106788.7832,18779.63541,756167.6405,21
+91429,85183.3477,18899.66272,0,21
+91430,86004.3526,18909.6378,0,21
+91431,85895.02564,19088.30366,0,21
+91432,88589.81613,19010.23273,0,21
+91433,87720.53457,19228.22351,0,21
+91434,87203.98828,19166.97685,0,21
+91435,87401.19218,19314.9078,0,21
+91436,86988.24075,19306.65019,0,21
+91437,86858.81341,220188.958,0,21
+91438,72242.23651,35971.862,0,21
+91439,71910.98988,37788.51446,0,21
+91440,71838.87056,86077.66411,0,21
+91441,118041.8904,88906.04242,0,21
+91442,85837.66069,73545.62453,0,21
+91443,78361.18738,78146.02485,0,21
+91444,92911.3648,77409.25762,0,21
+91445,88108.85644,77072.7569,0,21
+91446,88871.50298,76679.62394,0,21
+91447,89714.17011,75948.95293,0,21
+91448,90376.2067,75455.71248,0,21
+91449,91160.63558,75015.82845,0,21
+91450,91611.67798,55994.78573,0,21
+91451,92137.96702,55487.00785,0,21
+91452,92497.5202,55314.99671,0,21
+91453,93337.26412,97854.75756,0,21
+91454,93732.90158,57643.2423,0,21
+91455,15120.62621,65623.84767,0,21
+91456,15138.15108,70204.45935,0,21
+91457,15180.02769,67050.7541,0,21
+91458,15245.07176,72032.52679,0,21
+91459,266854.1113,68016.10512,0,21
+91460,46885.83776,68883.18675,0,21
+91461,79369.31496,68084.56133,0,21
+91462,114640.4151,67594.97002,0,21
+91463,96306.45849,67061.58443,0,21
+91464,98676.84127,66975.72118,0,21
+91465,99050.66888,65915.702,749320.5043,21
+91466,99239.2198,65751.23671,0,21
+91467,99860.35172,16491.79122,0,21
+91468,99558.65161,16402.48943,0,21
+91469,100354.5825,16215.69944,0,21
+91470,100038.6024,16309.39741,0,21
+91471,84993.47655,15985.29786,0,21
+91472,85222.66638,16020.60494,0,21
+91473,85229.15242,15842.14583,0,21
+91474,135682.0252,15800.27832,0,21
+91475,101474.4594,15785.01242,0,21
+91476,90587.54281,15467.77198,0,21
+91477,107752.7033,15615.81782,0,21
+91478,101787.0515,15335.49076,0,21
+91479,102843.7234,15394.03929,0,21
+91480,102858.3235,15190.04615,0,21
+91481,103169.357,15195.70841,0,21
+91482,103783.5654,14989.80534,0,21
+91483,103694.9564,0,0,21
+91484,104402.6201,0,0,21
+91485,104222.7116,0,0,21
+91486,104811.7057,0,0,21
+91487,105326.5789,40305.25855,0,21
+91488,105256.9432,0,0,21
+91489,16042.84002,6232.674598,0,21
+91490,16122.99671,14301.78155,0,21
+91491,16125.7179,11279.31394,0,21
+91492,16190.68817,10862.43013,0,21
+91493,291099.2169,16816.26797,0,21
+91494,79472.33424,13097.44615,0,21
+91495,77695.44655,14155.09683,0,21
+91496,127884.0043,14014.44735,0,21
+91497,108364.7389,13964.50395,0,21
+91498,109754.3275,13888.11648,0,21
+91499,109754.2285,13779.90318,0,21
+91500,110135.1853,13543.87117,0,21
+91501,110352.5939,13815.13629,0,21
+91502,109954.7456,13952.93529,743062.8399,21
+91503,110291.8594,13957.65401,0,21
+91504,93406.45465,14155.84677,0,21
+91505,93569.61273,14174.192,0,21
+91506,93425.72652,14390.37832,0,21
+91507,145854.2348,14360.99641,0,21
+91508,111014.9381,14612.6884,0,21
+91509,97451.64617,14597.82272,0,21
+91510,115027.9594,14797.95229,0,21
+91511,109395.4319,14803.61921,0,21
+91512,109595.8773,14950.0455,0,21
+91513,109402.5193,15146.81685,0,21
+91514,109404.6463,15073.2171,0,21
+91515,109387.3651,15299.20206,0,21
+91516,109176.0735,15412.35037,0,21
+91517,109208.4505,0,0,21
+91518,108958.0506,0,0,21
+91519,108832.8392,0,0,21
+91520,108958.3207,0,0,21
+91521,108356.602,41094.1908,0,21
+91522,108730.5742,420.2704398,0,21
+91523,16078.92477,10174.6036,0,21
+91524,16012.77622,16615.97671,0,21
+91525,15995.3953,12385.21123,0,21
+91526,15995.09847,13239.84494,0,21
+91527,306156.954,18441.76325,0,21
+91528,63842.47017,16105.03606,0,21
+91529,82920.1984,16618.57839,0,21
+91530,125733.1755,17109.70547,0,21
+91531,105783.8128,17252.94739,0,21
+91532,106621.7676,17392.38906,0,21
+91533,105882.9854,17435.86114,0,21
+91534,105920.6587,17537.95067,0,21
+91535,105086.1004,17718.80729,0,21
+91536,444408.5865,17809.53765,0,21
+91537,88827.88011,17864.7274,0,21
+91538,88312.3054,18104.36113,0,21
+91539,88147.31356,18154.69214,737334.8699,21
+91540,136898.441,18230.50965,0,21
+91541,101975.0298,18438.48509,0,21
+91542,90975.74681,18482.52696,0,21
+91543,106824.9837,18700.0804,0,21
+91544,100613.8657,203418.4138,0,21
+91545,100013.4607,19271.63882,0,21
+91546,99888.9225,45818.63477,0,21
+91547,98853.393,40591.01596,0,21
+91548,98318.7003,99608.79342,0,21
+91549,98010.7253,64396.75341,0,21
+91550,97044.04523,72441.88485,0,21
+91551,96336.46067,54777.91993,0,21
+91552,95753.6047,55016.18695,0,21
+91553,95079.61473,55922.13525,0,21
+91554,94506.61478,109802.5198,0,21
+91555,93269.31506,57572.26002,0,21
+91556,93187.77352,73569.06765,0,21
+91557,14257.82358,78472.77116,0,21
+91558,14194.39441,76326.00407,0,21
+91559,14098.00268,83364.12062,0,21
+91560,14014.05009,80122.90347,0,21
+91561,234639.4889,80947.27771,0,21
+91562,47038.56155,81082.30132,0,21
+91563,80554.5321,80480.63131,0,21
+91564,97353.92904,79888.77883,0,21
+91565,87296.08493,79346.05393,0,21
+91566,86892.04875,79446.2604,0,21
+91567,86371.97601,79078.33321,0,21
+91568,85902.82633,78903.18611,0,21
+91569,84737.23791,78444.76434,0,21
+91570,71227.56662,78272.83727,0,21
+91571,70528.91607,78250.53009,0,21
+91572,69816.76253,77665.97293,0,21
+91573,109489.9337,77601.12327,0,21
+91574,82301.03172,20466.53278,0,21
+91575,73043.22774,20439.68656,0,21
+91576,85318.88308,20361.42946,732092.2116,21
+91577,79720.45112,20388.45017,0,21
+91578,80244.60298,20431.64501,0,21
+91579,80388.68707,20265.13856,0,21
+91580,80167.73945,20359.13485,0,21
+91581,80439.87769,20213.69616,0,21
+91582,80398.24235,20335.97636,0,21
+91583,80529.29135,20267.37033,0,21
+91584,80267.85274,0,0,21
+91585,80892.05586,0,0,21
+91586,80354.71247,0,0,21
+91587,80808.54018,0,0,21
+91588,80584.61536,60348.50261,0,21
+91589,80842.9064,213566.1543,0,21
+91590,80653.24166,19201.00269,0,21
+91591,12405.75161,52799.86941,0,21
+91592,12366.52663,47932.8782,0,21
+91593,12294.56414,95195.03388,0,21
+91594,12334.669,66168.66566,0,21
+91595,250024.971,70771.79054,0,21
+91596,384778.061,71181.6977,0,21
+91597,62046.61221,70850.48734,0,21
+91598,96252.06793,70409.18543,0,21
+91599,81606.97491,69693.07659,0,21
+91600,82374.90866,68776.76427,0,21
+91601,82397.8536,68200.15838,0,21
+91602,82501.80258,67577.5735,0,21
+91603,70578.88981,66779.11055,0,21
+91604,70576.39793,66758.4951,0,21
+91605,70746.80352,65752.48352,0,21
+91606,108034.3803,65237.25514,0,21
+91607,85345.44608,64691.01501,0,21
+91608,72813.50543,64327.65446,0,21
+91609,87765.77493,63445.0918,0,21
+91610,82752.48199,62764.43026,0,21
+91611,83162.71588,62505.22092,0,21
+91612,83843.52376,61674.50486,0,21
+91613,83582.77679,60700.7264,727301.7307,21
+91614,83829.67157,60510.3071,0,21
+91615,83812.51959,59911.24815,0,21
+91616,84294.36121,58835.77333,0,21
+91617,83958.36891,58524.05413,0,21
+91618,84289.31864,39713.45756,0,21
+91619,84622.77717,0,0,21
+91620,84432.3626,0,0,21
+91621,84797.76512,0,0,21
+91622,84781.32101,45748.41619,0,21
+91623,85156.72239,1028.80555,0,21
+91624,85312.80388,8428.98426,0,21
+91625,11946.04663,18175.54135,0,21
+91626,11946.67155,17355.32561,0,21
+91627,11946.67477,18204.83365,0,21
+91628,11994.50916,17066.12695,0,21
+91629,270218.2645,17714.93494,0,21
+91630,59250.87081,17633.39738,0,21
+91631,52649.43538,17632.53061,0,21
+91632,108557.796,17739.51049,0,21
+91633,85659.32726,17590.26024,0,21
+91634,87452.27508,17670.46586,0,21
+91635,87464.78427,17646.39347,0,21
+91636,75702.30849,17632.86126,0,21
+91637,75534.34107,17534.64136,0,21
+91638,76186.03483,17584.57252,0,21
+91639,115015.2737,17666.31019,0,21
+91640,92325.12359,17484.13671,0,21
+91641,78425.79713,17514.9268,0,21
+91642,93397.07439,17569.35269,0,21
+91643,89138.84388,17435.55875,0,21
+91644,89250.27606,17508.04623,0,21
+91645,89667.45955,17384.10967,0,21
+91646,89789.77279,17505.97849,0,21
+91647,89871.78192,17396.85041,0,21
+91648,90348.23215,17396.62184,0,21
+91649,90186.94775,17374.99555,722906.7237,21
+91650,429979.5897,17332.12823,0,21
+91651,90727.80103,17367.15604,0,21
+91652,90976.17515,0,0,21
+91653,91461.86934,0,0,21
+91654,91476.03506,0,0,21
+91655,91774.42813,0,0,21
+91656,91987.14618,41600.0234,0,21
+91657,92290.71145,2833.802645,0,21
+91658,92458.14642,7214.172107,0,21
+91659,12668.70058,17960.84477,0,21
+91660,12654.55531,20404.22445,0,21
+91661,12678.61747,16357.96799,0,21
+91662,12724.9673,17616.2369,0,21
+91663,295085.8649,17874.72227,0,21
+91664,82271.92312,17794.89655,0,21
+91665,39627.55818,17960.00577,0,21
+91666,125383.8947,17970.81453,0,21
+91667,92802.8427,18017.38502,0,21
+91668,95510.77014,18043.05643,0,21
+91669,82925.13213,18129.12028,0,21
+91670,83229.65568,18134.306,0,21
+91671,83382.61466,18178.77327,0,21
+91672,124885.823,18338.92177,0,21
+91673,102284.5626,18303.79904,0,21
+91674,85811.09619,18293.25833,0,21
+91675,101106.7434,18478.78971,0,21
+91676,97978.17762,18428.11073,0,21
+91677,97644.8024,18558.50102,0,21
+91678,98012.97909,18606.15664,0,21
+91679,98219.63832,18544.99798,0,21
+91680,98681.95727,18719.45775,0,21
+91681,98887.6237,18773.5149,0,21
+91682,99009.5419,18825.70829,0,21
+91683,99389.41809,18857.52474,0,21
+91684,99658.63582,18951.76833,0,21
+91685,99905.67697,19081.69747,718868.0139,21
+91686,100333.6638,0,0,21
+91687,100214.4439,0,0,21
+91688,100698.0869,0,0,21
+91689,101151.8366,0,0,21
+91690,101208.0536,50344.31105,0,21
+91691,101630.8513,671.3983916,0,21
+91692,101728.8525,10372.50792,0,21
+91693,13533.09783,21037.54301,0,21
+91694,13644.34695,22148.05026,0,21
+91695,13629.88505,18250.65285,0,21
+91696,302245.2976,19809.6789,0,21
+91697,72815.28728,19942.13804,0,21
+91698,404114.468,20046.55943,0,21
+91699,127781.7025,20033.94488,0,21
+91700,103083.9392,20381.94914,0,21
+91701,104966.3941,20173.87351,0,21
+91702,90874.03993,20436.89093,0,21
+91703,91299.35287,20505.61964,0,21
+91704,129519.6475,20546.44665,0,21
+91705,103726.2985,20550.27565,0,21
+91706,102507.2095,20776.51748,0,21
+91707,109555.8001,20811.62661,0,21
+91708,107819.9691,20863.40804,0,21
+91709,107814.0819,20941.57828,0,21
+91710,108497.9348,21042.38449,0,21
+91711,108613.5806,21133.50916,0,21
+91712,109295.793,21096.6004,0,21
+91713,109665.2267,21273.29467,0,21
+91714,109793.6797,21286.66133,0,21
+91715,110299.4074,21246.18552,0,21
+91716,110596.9483,21456.55043,0,21
+91717,111218.8677,21448.62254,0,21
+91718,111319.0901,21576.77935,0,21
+91719,111869.9483,21508.5011,0,21
+91720,112118.9396,213878.598,0,21
+91721,112742.4427,8579.322798,715181.8427,21
+91722,112857.53,20876.34405,0,21
+91723,113637.4168,18371.48311,0,21
+91724,113937.3035,107293.1849,0,21
+91725,114489.1919,45959.46573,0,21
+91726,17549.30039,57228.60916,0,21
+91727,17695.50907,78528.29203,0,21
+91728,17827.27736,69682.66192,0,21
+91729,330679.9309,71196.65864,0,21
+91730,106560.0669,71561.23106,0,21
+91731,56151.99473,83727.39366,0,21
+91732,150254.8002,77391.02221,0,21
+91733,115308.4055,80209.90981,0,21
+91734,99742.4412,80742.79311,0,21
+91735,100274.667,81686.27866,0,21
+91736,148742.2817,82233.36342,0,21
+91737,116935.9348,82958.47219,0,21
+91738,113597.3934,83223.07508,0,21
+91739,124382.7958,84412.95828,0,21
+91740,460190.3065,84859.54529,0,21
+91741,121253.1689,85183.49111,0,21
+91742,121903.0252,86010.78871,0,21
+91743,121853.409,86451.74255,0,21
+91744,122284.0766,86843.65828,0,21
+91745,122757.2651,87614.30966,0,21
+91746,122755.788,87818.92125,0,21
+91747,123214.4362,88645.47995,0,21
+91748,123398.9192,88898.78753,0,21
+91749,123738.0028,89434.10776,0,21
+91750,124080.0951,23504.19095,0,21
+91751,124521.9999,23676.31942,0,21
+91752,124328.9896,23502.33369,0,21
+91753,125257.2213,23827.32262,0,21
+91754,125336.6207,0,0,21
+91755,125223.3475,0,0,21
+91756,126066.046,0,0,21
+91757,126222.7873,60000.44908,711817.9793,21
+91758,126584.2247,0,0,21
+91759,21840.10952,21766.01786,0,21
+91760,21905.04373,29729.49506,0,21
+91761,22083.60418,22545.36949,0,21
+91762,357696.631,24242.81202,0,21
+91763,139081.4916,276836.6078,0,21
+91764,47534.61652,24343.57793,0,21
+91765,169807.9094,40055.40158,0,21
+91766,102429.081,77493.43017,0,21
+91767,106842.7674,119862.9065,0,21
+91768,167074.2337,89866.97467,0,21
+91769,126832.1159,95778.12486,0,21
+91770,122999.4539,97915.72381,0,21
+91771,134975.618,98664.55016,0,21
+91772,130863.987,97988.48164,0,21
+91773,131288.8703,99406.47721,0,21
+91774,131540.2794,99103.79107,0,21
+91775,132078.7136,99704.63529,0,21
+91776,132018.6301,99842.84051,0,21
+91777,132348.6751,100273.7777,0,21
+91778,132515.9442,100480.0956,0,21
+91779,132808.1622,100926.8421,0,21
+91780,133134.3486,101345.2636,0,21
+91781,133379.296,101182.7008,0,21
+91782,472940.4661,101879.3006,0,21
+91783,136181.6365,102107.9607,0,21
+91784,137291.515,102412.8811,0,21
+91785,137497.161,102726.1199,0,21
+91786,138088.6565,102933.965,0,21
+91787,139369.7043,77966.44303,0,21
+91788,144465.094,77599.3462,0,21
+91789,143741.9103,78773.47057,0,21
+91790,145289.466,141874.4924,0,21
+91791,146419.2937,79048.45569,0,21
+91792,25560.92101,107716.3764,0,21
+91793,25645.12165,28177.03103,708750.4344,21
+91794,25735.09067,25060.46255,0,21
+91795,379324.4012,25900.03029,0,21
+91796,167648.952,25949.39813,0,21
+91797,53784.08563,25856.51204,0,21
+91798,177444.5599,26098.23195,0,21
+91799,124894.0021,25990.54757,0,21
+91800,200695.729,26178.12607,0,21
+91801,154786.3717,27064.60216,0,21
+91802,154384.1169,27505.86306,0,21
+91803,166578.3467,27572.00347,0,21
+91804,170779.0635,305565.2467,0,21
+91805,173138.1823,59939.58883,0,21
+91806,174180.5034,91441.36586,0,21
+91807,175512.1222,132311.7832,0,21
+91808,175980.7481,138137.9399,0,21
+91809,177742.4437,126256.6432,0,21
+91810,178654.601,132734.5696,0,21
+91811,178978.2441,134823.6168,0,21
+91812,180709.3245,136943.4483,0,21
+91813,180905.5407,138761.0563,0,21
+91814,182603.2498,141355.1133,0,21
+91815,182814.1009,143326.119,0,21
+91816,184100.0303,144405.6159,0,21
+91817,184614.5263,146971.8386,0,21
+91818,187543.7356,149016.7204,0,21
+91819,186684.8612,150407.0921,0,21
+91820,188643.3891,121220.6746,0,21
+91821,188851.1166,122700.852,0,21
+91822,189997.7397,124488.1746,0,21
+91823,190623.8455,210809.8918,0,21
+91824,191397.3388,146994.8742,0,21
+91825,370171.2531,151387.8799,0,21
+91826,31070.7764,173812.9323,0,21
+91827,31100.7259,165423.0941,0,21
+91828,521398.1273,168978.392,0,21
+91829,200195.6507,171058.8127,705941.8462,21
+91830,73638.8561,172781.7228,0,21
+91831,199079.1614,174884.357,0,21
+91832,249638.4118,177044.6051,0,21
+91833,185730.8081,178362.878,0,21
+91834,194078.4616,35294.2945,0,21
+91835,199002.5655,35382.41864,0,21
+91836,198203.8547,35847.30758,0,21
+91837,201458.0975,35983.66548,0,21
+91838,201651.1984,577643.886,0,21
+91839,201575.5658,56907.86303,0,21
+91840,202471.3186,148577.5101,0,21
+91841,203404.0005,239009.2506,0,21
+91842,203706.0476,190181.1452,0,21
+91843,204414.8427,198219.5421,0,21
+91844,204812.7602,200994.7826,0,21
+91845,205555.38,201982.8256,0,21
+91846,205991.0144,204567.7734,0,21
+91847,206792.8477,206101.4944,0,21
+91848,206803.2507,207679.6099,0,21
+91849,207973.4091,210144.6709,0,21
+91850,208180.1546,211805.4844,0,21
+91851,208699.1631,213277.61,0,21
+91852,209365.5225,215914.6217,0,21
+91853,209520.2717,177642.5797,0,21
+91854,210114.7693,179353.0465,0,21
+91855,210997.4925,272717.699,0,21
+91856,211122.7647,208199.039,0,21
+91857,211896.2448,219689.3147,0,21
+91858,34929.88728,231153.5877,0,21
+91859,35044.64453,227856.3623,0,21
+91860,35065.86157,230907.5883,0,21
+91861,605931.0396,229723.3877,0,21
+91862,174772.2782,229667.1638,0,21
+91863,68921.40986,228884.6806,0,21
+91864,311918.9686,229067.7312,0,21
+91865,214997.3614,227988.5913,703372.3181,21
+91866,213308.1125,227430.2522,0,21
+91867,228418.2325,227113.0836,0,21
+91868,564605.8513,41055.19043,0,21
+91869,226320.0806,40765.21566,0,21
+91870,228696.4894,40976.76133,0,21
+91871,229275.6371,669860.4087,0,21
+91872,230938.5685,88847.34944,0,21
+91873,232497.416,157651.4133,0,21
+91874,233588.5229,279431.8343,0,21
+91875,235225.4069,215137.6301,0,21
+91876,236565.5951,222618.9062,0,21
+91877,237544.3055,222393.3443,0,21
+91878,239462.7498,221409.8858,0,21
+91879,240410.2383,221443.145,0,21
+91880,242049.6762,220659.5536,0,21
+91881,243436.3565,220202.9249,0,21
+91882,244875.5407,219508.9723,0,21
+91883,245873.6914,219139.636,0,21
+91884,247550.1099,218743.6743,0,21
+91885,248619.2601,177823.8864,0,21
+91886,250300.1473,177153.0012,0,21
+91887,251652.3336,270519.5642,0,21
+91888,252932.3572,200360.3692,0,21
+91889,254079.995,210826.1853,0,21
+91890,255792.08,220714.5595,0,21
+91891,41305.22473,215262.7253,0,21
+91892,41536.9232,214449.2984,0,21
+91893,643217.3735,214824.855,0,21
+91894,147741.8888,213908.8029,0,21
+91895,164550.9037,213211.7765,0,21
+91896,343677.9161,212772.8219,0,21
+91897,261696.4281,212188.2727,0,21
+91898,266496.043,211987.1077,0,21
+91899,266221.3895,211013.9887,0,21
+91900,271498.4533,210852.3248,0,21
+91901,270435.9415,39415.51443,701038.5324,21
+91902,272228.5941,39404.58411,0,21
+91903,273121.0252,39351.79878,0,21
+91904,274607.1719,39298.90799,0,21
+91905,275977.4773,692661.4579,0,21
+91906,277313.6295,94069.6918,0,21
+91907,278185.8625,89822.01485,0,21
+91908,280148.1606,288511.035,0,21
+91909,281152.7029,193703.989,0,21
+91910,282305.2809,204535.4719,0,21
+91911,623369.0024,204401.2281,0,21
+91912,284830.09,203429.4438,0,21
+91913,286444.7131,203035.0562,0,21
+91914,287943.4387,202459.3311,0,21
+91915,288794.9894,202023.2924,0,21
+91916,290727.6811,201001.5106,0,21
+91917,291143.8018,162178.7384,0,21
+91918,293438.0665,161847.425,0,21
+91919,294202.8644,250126.5,0,21
+91920,295365.2388,180810.8724,0,21
+91921,295258.3293,196471.4782,0,21
+91922,294781.981,203192.4083,0,21
+91923,46733.18483,199485.3144,0,21
+91924,46796.64476,199905.5852,0,21
+91925,747163.3728,200524.9317,0,21
+91926,177120.2641,200852.467,0,21
+91927,172214.9885,200992.8598,0,21
+91928,380917.2451,201163.5978,0,21
+91929,299741.2868,201821.9479,0,21
+91930,286710.5105,202165.483,0,21
+91931,290198.6467,202031.1398,0,21
+91932,292363.3338,202685.0711,0,21
+91933,290129.5658,202826.842,0,21
+91934,289456.9085,203234.8284,0,21
+91935,288961.5661,38883.16193,0,21
+91936,288306.2621,38861.94568,0,21
+91937,287960.3987,38881.84471,698913.3007,21
+91938,287380.4458,39046.38111,0,21
+91939,287160.2042,676350.9634,0,21
+91940,285888.2369,82161.76062,0,21
+91941,286575.9828,102859.0185,0,21
+91942,284709.6101,282356.7615,0,21
+91943,285169.7149,195370.0165,0,21
+91944,284197.0479,207234.9328,0,21
+91945,283842.6108,207859.696,0,21
+91946,283166.3235,208483.975,0,21
+91947,282708.1751,208305.8035,0,21
+91948,282064.5654,209240.9449,0,21
+91949,281879.257,169572.1046,0,21
+91950,280969.9149,169873.7359,0,21
+91951,280396.9366,262352.0514,0,21
+91952,280030.0974,190200.1788,0,21
+91953,279822.935,206390.0978,0,21
+91954,617547.8842,213763.1099,0,21
+91955,45881.80101,209526.2892,0,21
+91956,45769.99815,210235.1693,0,21
+91957,709735.0528,210930.7571,0,21
+91958,152838.4123,210309.075,0,21
+91959,159383.5613,211446.9341,0,21
+91960,369304.8329,211235.2379,0,21
+91961,278033.349,211929.2565,0,21
+91962,270158.1339,211758.346,0,21
+91963,273859.0142,212301.6594,0,21
+91964,275648.8507,212295.8859,0,21
+91965,273416.9357,213044.8691,0,21
+91966,272327.8297,212978.921,0,21
+91967,272142.4664,213285.3507,0,21
+91968,271098.642,213142.652,0,21
+91969,270668.1441,40244.29202,0,21
+91970,270167.406,40140.55758,0,21
+91971,269269.6835,40209.93124,0,21
+91972,268892.9062,40350.4091,0,21
+91973,268008.5112,731743.3756,696973.1693,21
+91974,267492.1455,93777.06129,0,21
+91975,266948.8806,86768.02812,0,21
+91976,266006.8758,306362.0494,0,21
+91977,265894.5562,202469.3005,0,21
+91978,264746.7221,215655.6764,0,21
+91979,264283.5005,217883.6538,0,21
+91980,263858.239,216921.9104,0,21
+91981,263909.7963,177600.1537,0,21
+91982,264641.5845,177794.0202,0,21
+91983,265213.8593,276278.9655,0,21
+91984,265892.2694,199761.4022,0,21
+91985,265887.2646,217067.5271,0,21
+91986,266805.9431,224806.681,0,21
+91987,45328.06459,221375.927,0,21
+91988,45261.30374,222300.6621,0,21
+91989,45420.6113,222968.1874,0,21
+91990,738113.4531,223404.9166,0,21
+91991,177484.3371,224519.467,0,21
+91992,235943.8375,225044.798,0,21
+91993,320145.7242,225663.4643,0,21
+91994,267018.1323,226415.424,0,21
+91995,271774.8606,226995.8824,0,21
+91996,274064.6535,228062.436,0,21
+91997,272954.2292,228225.7554,0,21
+91998,273531.465,229325.0785,0,21
+91999,273695.9979,229753.8235,0,21
+92000,274493.7466,230664.9837,0,21
+92001,274865.7839,231201.0643,0,21
+92002,275298.6998,232011.5968,0,21
+92003,275860.8496,42638.74053,0,21
+92004,276466.4894,42772.94558,0,21
+92005,276516.6456,42927.96206,0,21
+92006,277246.2573,717081.4224,0,21
+92007,278032.6488,84067.33233,0,21
+92008,278165.181,160375.8751,0,21
+92009,617930.9882,302307.7058,0,21
+92010,279629.0857,228087.4116,0,21
+92011,279462.8458,239213.9053,695197.7505,21
+92012,280250.2657,240370.6658,0,21
+92013,280723.5605,197012.9686,0,21
+92014,281522.1281,197663.8012,0,21
+92015,281146.1117,305054.533,0,21
+92016,282678.127,223244.5558,0,21
+92017,282539.3467,237198.2894,0,21
+92018,283148.803,249168.7287,0,21
+92019,283514.348,243290.2401,0,21
+92020,47917.12418,244615.0212,0,21
+92021,47938.56851,245757.5632,0,21
+92022,684114.0045,246337.4914,0,21
+92023,148464.2711,246596.9901,0,21
+92024,271963.1397,247724.8154,0,21
+92025,338023.459,248154.5222,0,21
+92026,278144.5315,249455.1922,0,21
+92027,287503.3286,249290.8269,0,21
+92028,290542.3725,250883.1852,0,21
+92029,289206.1723,250868.6448,0,21
+92030,288885.8396,251937.9493,0,21
+92031,290530.3396,252373.8377,0,21
+92032,290012.2823,253388.9027,0,21
+92033,290820.2789,253910.6398,0,21
+92034,291432.6708,254580.6343,0,21
+92035,291698.6686,255495.5795,0,21
+92036,292079.5807,45851.36653,0,21
+92037,292931.7893,46122.99621,0,21
+92038,293154.4093,46117.94612,0,21
+92039,293569.9938,798286.1781,0,21
+92040,294195.9843,133401.1445,0,15.6
+92041,294262.0418,136875.2443,0,15.6
+92042,295059.7114,344234.8317,0,15.6
+92043,294528.6035,245013.8359,0,15.6
+92044,295779.5083,258360.8855,0,15.6
+92045,295147.4742,211849.2261,0,15.6
+92046,296412.2102,212022.4514,0,15.6
+92047,295822.8065,325405.3105,0,15.6
+92048,296473.7018,240322.3582,693572.3619,15.6
+92049,296914.3287,250312.6138,0,15.6
+92050,297169.3542,263256.2683,0,15.6
+92051,297181.3947,256888.3067,0,15.6
+92052,50166.47013,257244.4025,0,15.6
+92053,50031.89519,256989.207,0,15.6
+92054,700211.812,257097.7779,0,15.6
+92055,173502.4606,256509.2818,0,15.6
+92056,288213.4303,256506.9765,0,15.6
+92057,347841.6985,256299.8245,0,15.6
+92058,293426.8749,256126.6978,0,15.6
+92059,298776.2173,255904.2546,0,15.6
+92060,303316.3401,255656.9175,0,15.6
+92061,300303.7779,255731.8206,0,15.6
+92062,301701.1053,255495.0577,0,15.6
+92063,301137.2844,254951.9153,0,15.6
+92064,640621.7119,254975.9835,0,15.6
+92065,302075.3999,255106.1841,0,15.6
+92066,302308.6034,254053.0031,0,15.6
+92067,302503.3956,255081.0144,0,15.6
+92068,303090.9424,253701.0637,0,15.6
+92069,302509.4597,46537.37797,0,15.6
+92070,303810.938,46512.71582,0,15.6
+92071,303266.4868,46451.32754,0,15.6
+92072,303940.3916,785143.9198,0,15.6
+92073,303897.4113,123369.9415,0,15.6
+92074,304920.0532,135596.6685,0,15.6
+92075,304427.6064,337302.5254,0,15.6
+92076,304819.0107,239065.858,0,15.6
+92077,305640.8351,206456.6708,0,15.6
+92078,305182.8698,206198.875,0,15.6
+92079,306238.6216,321133.0993,0,15.6
+92080,305793.5949,233261.143,0,15.6
+92081,306266.8598,245067.6784,0,15.6
+92082,306859.4708,258282.8358,0,15.6
+92083,306862.1983,250694.9714,0,15.6
+92084,51823.96254,251646.6086,725423.0995,15.6
+92085,51701.93695,251205.2957,0,15.6
+92086,711845.6427,250828.45,0,15.6
+92087,201247.0848,251419.3114,0,15.6
+92088,284786.0679,250122.9326,0,15.6
+92089,362758.359,250726.9753,0,15.6
+92090,302009.5753,250000.3534,0,15.6
+92091,309894.7828,250095.2117,0,15.6
+92092,311758.6001,249701.0013,0,15.6
+92093,310298.9742,249369.6483,0,15.6
+92094,310259.255,249881.5821,0,15.6
+92095,310799.0801,248910.879,0,15.6
+92096,311080.4283,248765.4411,0,15.6
+92097,311308.9367,248975.3693,0,15.6
+92098,311161.2665,248535.3322,0,15.6
+92099,311793.8209,248134.4615,0,15.6
+92100,312402.4667,248198.799,0,15.6
+92101,311672.388,249177.121,0,15.6
+92102,312180.9441,46575.04247,0,15.6
+92103,312086.0964,46656.49027,0,15.6
+92104,312275.7079,46748.75551,0,15.6
+92105,311820.6675,775770.8312,0,15.6
+92106,312325.3352,118676.4285,0,15.6
+92107,651329.0535,148161.9782,0,15.6
+92108,312195.174,335455.3058,0,15.6
+92109,312010.9983,197184.6937,0,15.6
+92110,312219.4428,210472.1212,0,15.6
+92111,312132.6603,331223.3977,0,15.6
+92112,312384.6123,240638.6942,0,15.6
+92113,312159.6319,255042.485,0,15.6
+92114,311899.2772,268667.2828,0,15.6
+92115,312693.0443,263281.841,0,15.6
+92116,52804.62815,264639.2085,0,15.6
+92117,52938.83603,265952.2003,0,15.6
+92118,717619.9846,267160.0064,0,15.6
+92119,214616.1571,267653.4264,0,15.6
+92120,283597.4026,269180.9044,0,15.6
+92121,368356.0141,269820.4051,720767.8971,15.6
+92122,305991.1454,271549.6649,0,15.6
+92123,313273.5058,271663.858,0,15.6
+92124,314788.748,273634.3454,0,15.6
+92125,313424.9728,274188.3189,0,15.6
+92126,312671.3091,275271.1793,0,15.6
+92127,313075.1933,276634.383,0,15.6
+92128,312905.5218,277713.0423,0,15.6
+92129,312972.8955,278236.7034,0,15.6
+92130,312429.6475,279967.9803,0,15.6
+92131,313287.391,280459.4308,0,15.6
+92132,312405.6981,281745.1973,0,15.6
+92133,313149.8949,283359.0229,0,15.6
+92134,312607.9638,283838.0271,0,15.6
+92135,312863.3937,50906.26709,0,15.6
+92136,312711.7719,51012.09219,0,15.6
+92137,312942.6313,51169.78845,0,15.6
+92138,312512.8914,902895.3147,0,15.6
+92139,312889.8047,185581.4919,0,15.6
+92140,312872.2666,120111.8512,0,15.6
+92141,312471.1143,349739.4444,0,15.6
+92142,312944.3126,224006.4504,0,15.6
+92143,312460.9036,371458.0119,0,15.6
+92144,312810.9634,275556.6272,0,15.6
+92145,312772.2331,292644.1768,0,15.6
+92146,312767.9625,302063.6424,0,15.6
+92147,312624.3771,298613.9367,0,15.6
+92148,53418.51965,300376.6866,0,15.6
+92149,53333.59069,300844.8122,0,15.6
+92150,717855.2639,302198.8659,0,15.6
+92151,555415.9201,303545.114,0,15.6
+92152,283760.6159,304361.5756,0,15.6
+92153,368725.6799,305405.1802,0,15.6
+92154,306642.4042,306711.1658,0,15.6
+92155,313592.0123,307451.0019,0,15.6
+92156,315406.9228,308975.5385,0,15.6
+92157,313561.3108,309699.1382,0,15.6
+92158,313207.0662,311399.2226,716606.6532,15.6
+92159,312815.7671,311957.6167,0,15.6
+92160,313395.7635,312967.1394,0,15.6
+92161,306693.1627,306685.5382,0,15.6
+92162,306923.368,303602.55,0,15.6
+92163,306579.112,302948.2971,0,15.6
+92164,306885.742,301194.3317,0,15.6
+92165,306312.2713,299624.7759,0,15.6
+92166,306318.3184,298608.0772,0,15.6
+92167,306876.4484,296572.5591,0,15.6
+92168,306319.2477,51729.18872,0,15.6
+92169,306257.6884,51572.50713,0,15.6
+92170,306325.0318,51201.6956,0,15.6
+92171,306505.1023,926985.0694,0,15.6
+92172,306363.6462,194818.8514,0,15.6
+92173,306119.3077,52111.70798,0,15.6
+92174,306111.3597,346967.5339,0,15.6
+92175,306243.9324,346317.0662,0,15.6
+92176,306289.8673,263769.2345,0,15.6
+92177,305841.0108,275765.3016,0,15.6
+92178,306284.9972,285441.6261,0,15.6
+92179,305759.7298,278564.8708,0,15.6
+92180,52153.95958,277339.9962,0,15.6
+92181,52107.80613,275104.2298,0,15.6
+92182,708267.2843,274388.5963,0,15.6
+92183,199347.3227,272492.8488,0,15.6
+92184,283275.9539,271212.9231,0,15.6
+92185,360185.2809,268978.3538,0,15.6
+92186,300048.1191,267824.2776,0,15.6
+92187,305920.5268,266345.5168,0,15.6
+92188,308838.0444,264137.0631,0,15.6
+92189,646088.0872,263290.0979,0,15.6
+92190,306339.9526,261513.3183,0,15.6
+92191,306179.6655,259568.4974,0,15.6
+92192,306176.3798,258197.7722,0,15.6
+92193,306271.574,256829.7321,712637.927,15.6
+92194,305403.887,254654.9425,0,15.6
+92195,306530.3066,253427.4812,0,15.6
+92196,305330.9364,251494.0311,0,15.6
+92197,305855.4086,250151.9531,0,15.6
+92198,305753.5723,248241.5024,0,15.6
+92199,305197.2529,247117.1815,0,15.6
+92200,306197.5897,245612.2993,0,15.6
+92201,305152.389,46188.05739,0,15.6
+92202,305535.7328,46166.06299,0,15.6
+92203,305250.5828,45901.62396,0,15.6
+92204,305771.884,736770.4964,0,15.6
+92205,304955.0616,45924.5903,0,15.6
+92206,305443.8067,97846.46855,0,15.6
+92207,305166.3304,376121.5244,0,15.6
+92208,305312.0433,197539.1505,0,15.6
+92209,305054.2055,225639.7387,0,15.6
+92210,304868.4119,234606.6627,0,15.6
+92211,305130.0148,226242.9068,0,15.6
+92212,52503.71131,225359.783,0,15.6
+92213,52474.58347,223479.7044,0,15.6
+92214,706915.5532,221709.5393,0,15.6
+92215,196747.0279,219602.5773,0,15.6
+92216,283321.8813,217972.9439,0,15.6
+92217,358985.412,215582.5626,0,15.6
+92218,299292.2259,213868.3751,0,15.6
+92219,304425.7101,211696.0829,0,15.6
+92220,308331.4963,208623.1962,0,15.6
+92221,305725.2856,208534.4896,0,15.6
+92222,305608.9912,208664.119,0,15.6
+92223,306178.5082,209244.7083,0,15.6
+92224,305278.9855,209190.2291,0,15.6
+92225,306020.1982,209045.719,0,15.6
+92226,305550.0656,209211.7702,0,15.6
+92227,645288.9598,209361.355,0,15.6
+92228,306085.7951,209316.6983,709393.766,15.6
+92229,306047.8346,209702.464,0,15.6
+92230,306019.4366,209631.3494,0,15.6
+92231,306770.2017,210061.7754,0,15.6
+92232,305849.1166,209621.3448,0,15.6
+92233,306817.2813,210132.5336,0,15.6
+92234,306202.9186,42753.1864,0,15.6
+92235,307076.2668,42611.54733,0,15.6
+92236,306630.5099,42697.9719,0,15.6
+92237,306664.4374,0,0,15.6
+92238,307212.1764,664537.5422,0,15.6
+92239,307089.6678,133410.2323,0,15.6
+92240,307066.3687,77551.51714,0,15.6
+92241,307517.3957,293624.4088,0,15.6
+92242,307468.0193,200641.2187,0,15.6
+92243,307544.4315,210788.944,0,15.6
+92244,53403.86316,211959.409,0,15.6
+92245,53490.06808,211713.3162,0,15.6
+92246,710582.4183,211977.9897,0,15.6
+92247,205564.5519,212593.8965,0,15.6
+92248,283650.1105,211987.5609,0,15.6
+92249,363622.8055,212035.549,0,15.6
+92250,303697.9369,212759.9587,0,15.6
+92251,308426.7758,212495.178,0,15.6
+92252,312707.458,212755.38,0,15.6
+92253,309879.6571,212878.6284,0,15.6
+92254,309972.5045,212704.6796,0,15.6
+92255,309955.0292,213100.3957,0,15.6
+92256,309546.4858,213238.4778,0,15.6
+92257,310529.1098,213182.0691,0,15.6
+92258,309863.5397,213188.9904,0,15.6
+92259,310007.9841,214051.6683,0,15.6
+92260,310447.7905,212948.1476,0,15.6
+92261,310458.7422,214382.9026,33312.2774,15.6
+92262,310224.7435,213490.6372,33303.07545,15.6
+92263,311009.1043,214229.4076,699972.1193,15.6
+92264,310298.5282,214058.844,33063.73952,15.6
+92265,649903.6074,214114.8086,32740.2247,15.6
+92266,311090.4047,214588.1706,32748.2484,15.6
+92267,310872.9836,214162.1879,32431.74601,15.6
+92268,310965.4482,43450.43392,32439.44342,15.6
+92269,311519.6886,0,32127.20378,15.6
+92270,311186.4326,0,32132.48395,15.6
+92271,311203.9851,109948.5548,31822.89167,15.6
+92272,311734.3739,701550.7197,31824.91593,15.6
+92273,311509.3962,75625.72522,31517.55405,15.6
+92274,311661.2874,100629.3649,31516.47338,15.6
+92275,311908.2375,304048.1317,31211.61925,15.6
+92276,54686.3528,201518.4496,31208.00255,15.6
+92277,54649.1862,215353.2887,30906.183,15.6
+92278,715826.0685,216744.1489,30900.72444,15.6
+92279,216858.8171,216160.6643,30602.51235,15.6
+92280,283508.8589,216766.1594,30595.93507,15.6
+92281,367919.8895,216515.7843,30271.99814,15.6
+92282,308302.2396,217230.6454,30234.79933,15.6
+92283,310165.3924,216914.9303,29915.13911,15.6
+92284,314858.1186,217178.9577,29877.60668,15.6
+92285,311025.1235,217355.8985,29562.64927,15.6
+92286,310868.4346,217555.7868,29525.24837,15.6
+92287,310294.402,217483.536,0,15.6
+92288,309604.8231,218133.8942,0,15.6
+92289,309266.586,217722.6743,0,15.6
+92290,308522.2065,218193.8564,0,15.6
+92291,308190.7505,218611.7311,0,15.6
+92292,307426.7443,218114.911,0,15.6
+92293,306979.4833,218929.8364,0,15.6
+92294,306977.2344,218482.0121,0,15.6
+92295,305909.7698,219275.9927,0,15.6
+92296,305591.0085,218887.1591,0,15.6
+92297,305042.2569,219457.1924,0,15.6
+92298,304702.6154,219525.4202,635038.1578,15.6
+92299,304261.5491,219269.5305,0,15.6
+92300,303593.3305,220322.6916,0,15.6
+92301,303095.8613,175091.7684,0,15.6
+92302,302682.1565,0,0,15.6
+92303,641648.6042,113312.2294,0,15.6
+92304,301417.1513,18802.02759,0,15.6
+92305,301320.6536,42696.12768,0,15.6
+92306,300893.3612,754701.3034,0,15.6
+92307,300148.9369,87104.74924,0,15.6
+92308,53797.31822,90482.2419,0,15.6
+92309,53638.8573,316805.0989,0,15.6
+92310,695338.7435,206053.0436,0,15.6
+92311,173566.9364,221748.001,0,15.6
+92312,291687.5526,222726.5718,0,15.6
+92313,346602.69,223044.2514,0,15.6
+92314,290006.042,222207.3324,0,15.6
+92315,297753.3032,223468.601,0,15.6
+92316,299740.0928,222978.4053,0,15.6
+92317,296774.4687,223581.3544,0,15.6
+92318,295858.0505,223301.393,0,15.6
+92319,295657.8289,223432.1945,0,15.6
+92320,295123.3464,224010.0758,0,15.6
+92321,294108.0064,223904.0105,0,15.6
+92322,293798.4504,223850.7373,0,15.6
+92323,293702.5942,224617.73,0,15.6
+92324,292611.0161,224001.0897,0,15.6
+92325,292497.3723,224727.9945,0,15.6
+92326,291558.3373,224745.8557,0,15.6
+92327,291428.3216,224714.7805,0,15.6
+92328,290819.7149,225138.9645,0,15.6
+92329,289973.1706,225274.4687,0,15.6
+92330,290070.1508,225438.1582,0,15.6
+92331,288811.2871,225566.485,0,15.6
+92332,289319.4452,225580.5617,0,15.6
+92333,287862.5753,180560.4752,638870.4861,15.6
+92334,287785.9306,180425.6495,0,15.6
+92335,287483.8718,298318.8312,0,15.6
+92336,286461.0388,19195.12844,0,15.6
+92337,286640.312,43417.21038,0,15.6
+92338,285266.3321,50106.12266,0,15.6
+92339,285346.3766,45218.08515,0,15.6
+92340,52264.39646,777499.9503,0,15.6
+92341,391503.9099,99624.04455,0,15.6
+92342,0,88228.18097,0,15.6
+92343,754460.6967,335190.6186,30885.71471,15.6
+92344,376486.7186,217230.3821,30865.96766,15.6
+92345,142950.6482,235752.3343,30620.27671,15.6
+92346,354802.6507,238196.0593,30672.80512,15.6
+92347,289990.6157,239244.9374,30465.09554,15.6
+92348,294183.7675,240838.1378,30529.9367,15.6
+92349,292785.3089,242135.7939,30331.07794,15.6
+92350,293437.3416,243867.3881,30396.94468,15.6
+92351,294234.7576,244897.0616,30202.41715,15.6
+92352,294553.9835,246958.8896,30266.74717,15.6
+92353,295818.4912,247732.2787,30074.13748,15.6
+92354,295808.9325,249920.1687,30134.96986,15.6
+92355,297049.2054,250718.8808,29942.78494,15.6
+92356,297756.583,252390.7708,29999.3575,15.6
+92357,297897.0435,254059.6256,29807.15063,15.6
+92358,299772.8434,254738.5081,29859.57613,15.6
+92359,299241.9574,257220.2309,29667.64807,15.6
+92360,300597.1543,257973.8259,29716.54774,15.6
+92361,301483.9378,259869.9052,29525.49904,15.6
+92362,302043.4705,260634.0307,29571.66324,15.6
+92363,302584.1016,262430.8387,29382.16495,15.6
+92364,303859.8572,264000.1913,29426.32662,15.6
+92365,304351.6741,215437.1846,29238.999,15.6
+92366,304671.4327,216100.8021,29281.87369,15.6
+92367,305907.1349,349724.3736,29097.23392,15.6
+92368,306551.5705,245822.3667,600049.0298,15.6
+92369,307613.8913,265578.3281,29930.18773,15.6
+92370,307756.9469,57021.51504,29968.08458,15.6
+92371,309551.511,50714.4568,0,15.6
+92372,309081.0227,51335.36303,0,15.6
+92373,55509.0927,857042.5504,0,15.6
+92374,0,150691.4287,0,15.6
+92375,709299.3685,143826.2745,0,15.6
+92376,327938.8566,377204.1042,354039.8748,15.6
+92377,234687.9757,268870.2589,0,15.6
+92378,360629.6703,284097.8034,0,15.6
+92379,650857.2474,286349.8625,0,15.6
+92380,320087.7175,287549.1927,0,15.6
+92381,317518.219,288742.77,0,15.6
+92382,318839.1049,290520.3622,0,15.6
+92383,319284.5394,291510.8172,0,15.6
+92384,319495.8281,293579.2096,0,15.6
+92385,321014.5577,294189.9335,0,15.6
+92386,321134.9607,296360.7043,0,15.6
+92387,322078.1989,297461.7078,0,15.6
+92388,323070.6061,299100.6299,0,15.6
+92389,323426.0118,300369.4965,0,15.6
+92390,324517.2987,301501.6998,0,15.6
+92391,325009.1958,303453.1847,0,15.6
+92392,326009.7465,304555.9935,0,15.6
+92393,326676.3794,306432.829,0,15.6
+92394,327583.1905,307474.8712,0,15.6
+92395,328007.3811,309190.1293,0,15.6
+92396,329299.7994,310307.0434,0,15.6
+92397,329468.8156,256666.9031,0,15.6
+92398,330885.8766,257163.5093,0,15.6
+92399,330992.8988,401285.2539,0,15.6
+92400,332394.7709,294820.2308,0,17.8
+92401,2276280.703,2589677.487,126812.8658,17.8
+92402,1427146.291,1420297.05,170555.3342,17.8
+92403,806798.0035,195574.751,676531.4515,17.8
+92404,744708.8468,732082.0928,133423.9992,17.8
+92405,123701.6142,763736.571,51467.93507,17.8
+92406,928309.2996,919540.1622,143160.5497,17.8
+92407,925540.2385,788914.8904,91121.7117,17.8
+92408,817070.3143,815101.0631,131750.6694,17.8
+92409,782067.7536,775468.9592,45318.70971,17.8
+92410,803730.013,766297.5446,139089.8779,17.8
+92411,803307.9945,777167.0306,88828.19741,17.8
+92412,793755.3336,768404.7861,128165.6005,17.8
+92413,792550.4242,765755.3684,45155.92816,17.8
+92414,789949.6072,764061.1335,135177.0254,17.8
+92415,789526.8076,760896.7423,86947.74582,17.8
+92416,770053.7143,759004.0348,124898.4437,17.8
+92417,774735.5251,757260.5141,45161.95917,17.8
+92418,1107838.252,756683.1342,131705.2931,17.8
+92419,767491.5484,753500.4814,85350.81275,17.8
+92420,764857.6324,752624.0284,122124.6555,17.8
+92421,764395.4782,751355.3776,45191.86423,17.8
+92422,760564.6876,749518.2412,128659.759,17.8
+92423,758892.1584,749311.5866,84056.6746,17.8
+92424,757511.4169,746559.7958,119619.4297,17.8
+92425,755262.5112,746407.068,45321.84584,17.8
+92426,753142.4854,744870.9887,125971.4581,17.8
+92427,752475.6857,743399.541,88274.79922,17.8
+92428,750345.6016,743325.0684,127347.8222,17.8
+92429,748227.911,621869.7357,55150.34766,17.8
+92430,747956.0358,620999.739,132869.071,17.8
+92431,731458.7879,835831.2851,46408.54326,17.8
+92432,731720.8718,754690.5868,79577.74426,17.8
+92433,729408.8384,683562.7017,10065.2438,17.8
+92434,728161.2474,187167.7685,188198.8076,17.8
+92435,772833.1748,121862.6574,75350.52819,17.8
+92436,119119.5294,1222753.242,120073.3177,17.8
+92437,10397.50881,613044.1636,61453.71245,17.8
+92438,1017029.24,798888.0993,666586.358,17.8
+92439,828170.7522,795384.9874,94415.46998,17.8
+92440,780375.1564,698922.0439,129289.3254,17.8
+92441,752126.9198,754144.0489,57815.79856,17.8
+92442,758695.1727,738015.8715,134371.4249,17.8
+92443,760500.472,735501.0143,94560.98941,17.8
+92444,734259.2898,735382,129070.0384,17.8
+92445,729254.6937,737195.5143,58480.71959,17.8
+92446,733459.7944,736944.5124,134020.8808,17.8
+92447,731231.3422,735606.5102,94812.25609,17.8
+92448,728544.8329,735016.9939,129002.7407,17.8
+92449,726538.954,734972.4716,59082.61423,17.8
+92450,728102.3559,734829.0297,133875.2571,17.8
+92451,725817.4256,735317.3136,95049.3621,17.8
+92452,723871.442,732864.6874,129085.2881,17.8
+92453,724795.3383,733704.8723,59747.04492,17.8
+92454,722993.4872,733799.3659,133741.3585,17.8
+92455,721469.9116,733203.3867,95412.57278,17.8
+92456,721482.1375,732948.5153,116895.4835,17.8
+92457,1059748.409,731783.8123,48065.27352,17.8
+92458,720086.8333,733052.7968,122175.8343,17.8
+92459,718349.6248,732174.2005,82778.25412,17.8
+92460,718022.1307,732142.1402,115680.1516,20
+92461,2303503.978,2373479.717,1453595.926,20
+92462,2296780.616,2616487.572,1191462.965,20
+92463,2283927.315,2467979.695,685721.7813,20
+92464,2190242.742,1988345.21,539894.2972,20
+92465,988150.3782,1143886.121,643592.2846,20
+92466,1511723.311,316488.1842,672078.2808,20
+92467,1479489.657,2329513.62,694000.4221,20
+92468,53240.88723,1414480.14,818189.2457,20
+92469,1806782.226,1351242.775,652555.2883,20
+92470,1366744.558,1460063.07,764057.504,20
+92471,1414595.621,1417160.082,760175.6502,20
+92472,1324488.381,1399337.932,839061.4675,20
+92473,1355584.704,1395428.628,1486945.575,20
+92474,1345566.359,1385678.068,794809.5348,20
+92475,1335280.162,1381897.727,782193.2427,20
+92476,1328237.37,1376052.193,884047.3291,20
+92477,1326224.626,1371670.185,704534.2,20
+92478,1319563.842,1366162.482,831465.0065,20
+92479,1315378.292,1361869.109,720323.0129,20
+92480,1313996.78,1356404.999,745650.2275,20
+92481,1306372.689,1352578.634,739330.4826,20
+92482,1305840.886,1348796.578,748099.2968,20
+92483,1301632.378,1345176.656,829104.369,20
+92484,1296892.924,1341018.726,1024800.753,20
+92485,1295916.447,1337711.788,761586.1747,20
+92486,1292070.066,1336177.185,901067.7095,20
+92487,1287808.018,1328395.652,895984.7848,20
+92488,1287937.288,1329337.472,1014863.202,20
+92489,1281806.999,1325232.212,773687.7057,20
+92490,1282122.61,1320480.525,914305.5398,20
+92491,1276955.876,1320008.832,150403.1957,20
+92492,1276097.261,1142950.01,178587.1644,20
+92493,1273646.832,1373925.164,347404.1126,20
+92494,1269914.949,1379942.858,1844233.31,20
+92495,1608693.555,1276233.274,723346.6081,20
+92496,1266207.391,1269557.237,628321.7102,20
+92497,1230680.048,174439.9346,1138119.059,20
+92498,1227358.917,1910480.793,763530.6909,20
+92499,64615.94602,1269031.37,863347.9405,20
+92500,1680069.174,1216526.579,856404.4521,20
+92501,1286264.447,1334541.818,997935.2671,20
+92502,1199777.974,1293976.483,747520.7357,20
+92503,1270949.723,1289499.036,890013.3929,20
+92504,1256513.99,1287511.91,872475.2883,20
+92505,1248090.148,1287499.874,991783.9807,20
+92506,1248210.068,1282115.294,762114.582,20
+92507,1244079.467,1283566.995,901642.7808,20
+92508,1243536.914,1278559.507,1749582.545,20
+92509,1241781.3,1277986.886,789082.3068,20
+92510,1239630.352,1276177.918,907156.9602,20
+92511,1238356.636,1275471.956,1059866.47,20
+92512,1236254.297,1271517.754,772529.131,20
+92513,1234676.75,1272220.044,899650.4765,20
+92514,1232574.217,1269791.947,782717.3729,20
+92515,1232232.325,1269758.317,870890.4,20
+92516,1230488.406,1265782.302,1077278.487,20
+92517,1227627.723,1265808.392,790974.5259,20
+92518,1227748.383,1263442.872,930601.8135,20
+92519,1224851.242,1263125.684,800085.9257,20
+92520,1224717.405,1259356.294,817812.5538,21
+92521,2310725.118,2978738.251,2591307.965,21
+92522,2301711.536,2432966.205,1790983.955,21
+92523,1728566.754,1712421.268,592879.6365,21
+92524,1183463.702,1300178.122,1203482.913,21
+92525,1642016.398,1705296.13,930150.2648,21
+92526,1483719.914,1520671.029,992539.6909,21
+92527,1444015.724,1516187.288,994555.1792,21
+92528,1458892.511,1515254.257,1121213.215,21
+92529,1448623.841,1507641.842,863188.0094,21
+92530,1443107.628,1500371.452,990298.8362,21
+92531,1439476.774,1496714.07,870355.5033,21
+92532,1435463.644,1762425.813,940006.9446,21
+92533,1428757.459,1486715.099,1195182.628,21
+92534,1426944.587,1483337.784,871308.1762,21
+92535,1420585.979,1476894.943,1007571.857,21
+92536,1419135.913,1475345.093,915461.4717,21
+92537,1415490.017,1469937.918,1078756.637,21
+92538,1411389.466,1465862.796,1179939.755,21
+92539,1407362.637,1464140.442,871427.8154,21
+92540,1405600.773,1458753.197,982515.0081,21
+92541,1399818.116,1727965.715,967829.3923,21
+92542,1401443.969,1452448.481,1180761.07,21
+92543,1393946.385,1450677.941,873155.0847,21
+92544,1393286.59,1446340.891,1008757.689,21
+92545,1389633.171,1443080.003,1011093.156,21
+92546,1385536.603,1441014.606,1131272.497,21
+92547,1387122.838,1437528.649,873299.2881,21
+92548,1378958.963,1436330.894,1007633.55,21
+92549,1379999.325,1430578.92,879852.119,21
+92550,1376643.685,1701483.696,913290.0463,21
+92551,1374663.155,1426047.631,931791.9341,21
+92552,1370723.862,1424609.31,1004916.428,21
+92553,1370048.53,1421713.769,1128918.796,21
+92554,1365947.108,1418284.403,889516.2663,21
+92555,1364751.534,1416218.261,1017796.15,21
+92556,1362121.476,1415714.893,894641.7175,21
+92557,1359878.653,1410773.792,987425.7723,21
+92558,1360066.274,1410291.651,1225225.186,21
+92559,1354088.625,1678826.903,892252.0643,21
+92560,1355508.607,1405138.233,1028593.134,21
+92561,1351619.805,1403037.924,897415.719,21
+92562,1349638.27,1400256.881,913322.0808,21
+92563,1349575.201,1400147.252,906109.2173,21
+92564,1345228.039,1396271.959,912662.3156,21
+92565,1344369.101,1393837.879,1005177.856,21
+92566,1343487.696,1392839.694,1275619.812,21
+92567,1340359.361,1390389.142,905798.7746,21
+92568,1340378.755,1661382.743,1043969.703,21
+92569,1322342.889,1385094.555,1065581.377,21
+92570,1320015.003,1385388.635,1204061.209,21
+92571,1316534.831,1382716.988,899805.4365,21
+92572,1312412.939,1381374.507,1033216.316,21
+92573,1309182.315,1379930.537,903810.1791,21
+92574,1306686.272,1375288.547,992838.2753,21
+92575,1303950.819,1377802.387,1267212.75,21
+92576,1299558.502,1371965.453,899458.6053,21
+92577,1296967.382,1645630.384,1034309.224,21
+92578,1296050.745,1369084.698,1054325.854,21
+92579,1289913.545,1368748.526,1186675.591,21
+92580,1290336.772,1367354.559,895237.0499,21
+92581,2050612.082,2526613.409,1006082.911,21
+92582,2038192.36,2519281.066,1013903.171,21
+92583,2033087.956,2515019.89,1184433.506,21
+92584,2030422.023,2807825.534,866749.0956,21
+92585,2023000.42,2508972.262,1000643.884,21
+92586,2017311.841,2505310.234,854516.116,21
+92587,2012284.021,2503894.827,890507.1887,21
+92588,2008971.248,2499690.019,1040500.074,21
+92589,2003276.52,2496539.589,856122.1078,21
+92590,1996649.789,2495672.922,943246.4289,21
+92591,1994711.959,2489640.001,860672.5153,21
+92592,1987770.545,2489504.651,865050.8957,21
+92593,1984636.476,2486343.918,867969.8405,21
+92594,1978519.674,2483063.465,872406.9118,21
+92595,1974526.025,2481022.315,875042.0852,21
+92596,1968023.814,2478595.285,878105.2805,21
+92597,1967427.119,2474420.436,1407038.08,21
+92598,1958291.948,2473908.067,894255.4232,21
+92599,1956983.625,2469964.145,1123212.074,21
+92600,1952052.3,2468617.351,882609.1052,21
+92601,1946892.835,2463405.232,934405.9005,21
+92602,1942263.526,2463462.14,886086.7036,21
+92603,1938375.087,2461182.029,888745.7972,21
+92604,1935674.622,2457331.828,888392.3872,21
+92605,1929058.709,2455800.209,891035.9972,21
+92606,1925963.403,2452464.01,892699.4205,21
+92607,1922064.445,2451292.478,895539.6729,21
+92608,1916374.553,2449708.452,896238.4629,21
+92609,1914058.234,2444915.092,898036.8559,21
+92610,1907415.289,2445298.641,900846.1168,21
+92611,1907034.866,2439859.617,900743.1307,21
+92612,1899400.309,2440699.34,902744.881,21
+92613,1896240.409,2435176.9,903113.0313,21
+92614,1892334.74,2436485.116,905136.008,21
+92615,1888264.552,2432408.205,904864.2003,21
+92616,1886315.568,2429941.541,905953.3491,21
+92617,1878548.101,2427505.701,906549.3745,21
+92618,1877787.723,2427418.627,907544.0152,21
+92619,1871472.197,2423227.634,907603.1036,21
+92620,1869962.313,2420558.34,907602.38,21
+92621,1863706.057,2420979.508,908521.1985,21
+92622,1862163.867,2414974.561,908684.4676,21
+92623,1856266.316,2417725.377,908865.2099,21
+92624,1854737.614,2410930.999,908328.573,21
+92625,1847854.557,2411610.651,909745.5733,21
+92626,1846949.144,2408759.323,908501.8191,21
+92627,1842111.007,2407292.366,908023.0153,21
+92628,1836763.865,2404533.752,910393.9686,21
+92629,1834104.839,2402531.979,903494.2056,21
+92630,1830445.557,2399585.498,904595.3157,21
+92631,1825988.887,2398377.458,903906.8116,21
+92632,1821114.534,2397588.852,903598.0897,21
+92633,1820821.512,2393567.907,902487.8267,21
+92634,1813326.075,2392729.681,902771.6152,21
+92635,1810716.808,2370848.925,901948.4077,21
+92636,1807562.11,2360087.619,901083.4441,21
+92637,1803218.032,2360142.989,900898.343,21
+92638,1799554.029,2351023.19,900722.2723,21
+92639,1796861.483,2351640.204,899268.4141,21
+92640,1790246.21,2344128.431,898371.6134,21
+92641,1572443.902,2122206.123,718707.395,21
+92642,1551576.164,2097841.307,706106.3355,21
+92643,1545626.552,2086934.952,701107.6812,21
+92644,1537655.618,2049039.246,694861.074,21
+92645,1519697.6,2057688.296,690215.0239,21
+92646,1513450.14,2040640.67,684704.3025,21
+92647,1509219.018,2030620.807,679025.3369,21
+92648,1502624.422,2019335.721,673871.9224,21
+92649,1495454.011,2009675.272,668181.0991,21
+92650,1490069.756,1999784.776,663564.9463,21
+92651,1484751.323,1989291.182,657171.1433,21
+92652,1479325.417,1980644.331,652460.8061,21
+92653,1473585.896,1971304.267,646835.5394,21
+92654,1468369.153,1960798.521,641412.788,21
+92655,1462955.133,1952084.999,635744.4479,21
+92656,1456400.146,1941507.408,631096.512,21
+92657,1453994.253,1933825.335,624509.4478,21
+92658,1448010.204,1927528.909,620126.0007,21
+92659,1441974.137,1919682.847,614198.768,21
+92660,1438312.872,1912104.613,608120.8106,21
+92661,1431352.838,1903031.921,604033.9126,21
+92662,1428614.021,1894253.77,597119.9882,21
+92663,1421642.036,1886430.858,593039.2334,21
+92664,1417961.401,1877333.988,586451.9222,21
+92665,1413887.988,1869795.787,582175.7572,21
+92666,1407909.154,1859818.105,575698.5518,21
+92667,1403457.975,1852793.079,570628.9545,21
+92668,1398750.391,1843384.642,565382.4799,21
+92669,1394862.249,1834868.286,559692.049,21
+92670,1388213.885,1828451.241,554702.7982,21
+92671,1385074.97,1818463.932,549376.2375,21
+92672,1381311.705,1809823.738,544025.3081,21
+92673,1377213.619,1803346.512,539688.9402,21
+92674,1370913.073,1795890.251,535507.5691,21
+92675,1368236.372,1786967.907,531366.2249,21
+92676,1363218.997,1778048.393,526648.2948,21
+92677,1360505.81,1772447.481,523144.5552,21
+92678,1354738.863,1762748.584,518258.769,21
+92679,1351036.016,1756502.407,514941.4186,21
+92680,1348203.054,1749161.958,509979.8259,21
+92681,1343287.677,1739205.273,506353.0206,21
+92682,1338902.947,1732655.983,502261.5152,21
+92683,1336266.445,1725859.616,497485.7309,21
+92684,1330105.407,1716758.29,494117.3609,21
+92685,1328642.152,1709248.651,489089.0217,21
+92686,1321994.294,1704593.802,486245.4706,21
+92687,1320448.643,1692910.03,481029.9384,21
+92688,1315273.484,1688808.121,477170.7568,21
+92689,1311416.827,1678685.366,473381.8942,21
+92690,1308274.86,1671664.755,469294.319,21
+92691,1303513.075,1664194.508,464805.6275,21
+92692,1300163.676,1655993.777,460314.0095,21
+92693,1294710.191,1649268.675,455165.6324,21
+92694,1292696.1,1640448.799,451500.6172,21
+92695,1286842.257,1633869.923,447424.0398,21
+92696,1285005.554,1625934.481,443176.0825,21
+92697,1279265.275,1618119.859,439470.0517,21
+92698,1277562.685,1611036.287,434980.8381,21
+92699,1271968.938,1603347.949,431564.748,21
+92700,1269993.46,1597749.622,426966.0836,21
+92701,1265333.584,1589546.819,421149.788,21
+92702,1260475.684,1584154.296,413999.3702,21
+92703,1257640.769,1577721.687,407326.9226,21
+92704,1252912.187,1571510.765,400935.3085,21
+92705,1249099.351,1564616.156,393827.184,21
+92706,1244720.559,1561643.211,387670.0445,21
+92707,1241350.103,1552629.219,380592.7592,21
+92708,1238117.738,1549045.64,374815.0102,21
+92709,1233063.036,1541444.036,367196.0073,21
+92710,1228849.642,1537544.923,361351.6934,21
+92711,1225730.402,1530466.033,354313.1288,21
+92712,1222204.847,1525666.765,348191.4761,21
+92713,1217609.801,1519264.686,341375.4234,21
+92714,1213503.267,1514721.559,336034.7633,21
+92715,1209526.395,1506620.49,330323.2114,21
+92716,1207390.781,1502891.035,326174.9445,21
+92717,1201251.561,1496799.782,323241.6663,21
+92718,1198409.999,1489817.197,319839.2238,21
+92719,1195255.953,1487128.016,317169.563,21
+92720,1190190.336,1478422.423,313754.7888,21
+92721,1186502.034,1475035.1,310755.3668,21
+92722,1184500.328,1468244.148,307412.9901,21
+92723,1178006.244,1462361.744,304594.0139,21
+92724,1176359.33,1457685.997,300934.205,21
+92725,1171304.495,1451399.671,298075.1421,21
+92726,1168427.766,1445928.091,294366.4645,21
+92727,1163888.426,1440665.5,291457.7174,21
+92728,1160869.401,1434710.885,288145.9185,21
+92729,1157417.38,1430095.005,284839.2074,21
+92730,1153743.444,1422563.223,281368.3644,21
+92731,1149791.492,1418388.09,278216.9444,21
+92732,1146157.62,1412421.973,274863.2987,21
+92733,1144795.699,1407655.933,271313.2501,21
+92734,1138392.387,1402432.398,268022.378,21
+92735,1138381.513,1396128.515,264852.381,21
+92736,1132558.97,1391623.833,261539.3119,21
+92737,1130713.956,1385335.751,257452.0892,21
+92738,1126664.847,1380895.49,254628.928,21
+92739,1124299.987,1375266.781,251092.5861,21
+92740,1121222.838,1367878.605,247281.1694,21
+92741,1117637.47,1362528.138,242916.6335,21
+92742,1114723.661,1356283.077,239847.6828,21
+92743,1110719.622,1351345.217,235781.6882,21
+92744,1109510.588,1346718.235,232484.7734,21
+92745,1104388.532,1340624.28,228815.1058,21
+92746,1102960.35,1334623.05,225515.96,21
+92747,1099075.665,1331150.835,221576.4194,21
+92748,1097163.935,1323680.266,218450.9112,21
+92749,1093304.754,1319781.825,214641.0766,21
+92750,1090465.778,1314562.389,210753.3586,21
+92751,1087988.101,1308905.561,207535.9418,21
+92752,1085801.91,1304158.552,203876.6832,21
+92753,1082083.791,1298455.781,200201.5957,21
+92754,1079311.594,1293615.978,196616.8246,21
+92755,1076710.189,1289261.479,193133.5431,21
+92756,1073650.086,1282634.25,189248.4095,21
+92757,1072180.408,1278542.022,185999.7416,21
+92758,1068329.229,1272324.199,182304.7304,21
+92759,1066607.379,1267816.768,179064.2846,21
+92760,1063356.925,1261131.627,175307.3491,21
+92761,1062475.641,1260659.911,170869.1445,21
+92762,1059189.56,1257430.765,167237.6071,21
+92763,1058766.431,1256298.648,163599.1817,21
+92764,1054868.805,1251231.111,160324.7716,21
+92765,1053905.837,1250131.89,156793.8384,21
+92766,1050955.804,1245940.38,153278.7495,21
+92767,1048977.24,1244333.993,149782.9324,21
+92768,1046733.238,1240202.284,148253.2463,21
+92769,1044918.144,1239137.48,146976.3541,21
+92770,1042739.957,1235453.895,145354.2072,21
+92771,1039972.567,1231705.227,143923.6326,21
+92772,1040107.536,1230939.026,142494.9006,21
+92773,1035933.8,1227148.368,141008.3742,21
+92774,1035099.947,1224890.937,139382.6763,21
+92775,1033208.052,1222026.404,138322.8496,21
+92776,1030275.143,1219764.49,136632.2174,21
+92777,1029241.845,1215819.491,135398.0167,21
+92778,1027368.039,1215228.498,133722.8281,21
+92779,1023442.142,1211856.098,132250.7728,21
+92780,1025422.058,1207787.708,131159.4616,21
+92781,1021762.896,1206790.079,129567.6544,21
+92782,1022335.801,1203749.138,128070.3182,21
+92783,1020851.679,1201587.151,127002.8727,21
+92784,1019321.017,1198012.508,125319.8674,21
+92785,1019081.71,1195495.72,123789.6495,21
+92786,1017830.516,1193358.225,123011.5371,21
+92787,1016924.208,1189853.581,121494.8129,21
+92788,1016523.244,1188551.417,120462.8065,21
+92789,1013988.322,1185286.393,119446.0509,21
+92790,1015471.079,1184079.129,118121.0289,21
+92791,1012530.461,1182277.813,117199.4691,21
+92792,1011611.071,1179050.286,116034.6601,21
+92793,1011840.377,1175982.406,115015.3707,21
+92794,1009948.582,1175287.882,113793.6216,21
+92795,1009221.873,1169969.131,112821.746,21
+92796,1008574.166,1170354.198,111606.1528,21
+92797,1007608.16,1165973.408,110830.8314,21
+92798,1006098.669,1162815.538,109557.9128,21
+92799,1006015.801,1159986.543,108586.3149,21
+92800,1005026.304,1158584.977,107404.7231,21
+92801,1003382.862,1155165.389,106545.5238,21
+92802,1003781.647,1153310.168,105569.6831,21
+92803,1001474.069,1150930.778,104442.894,21
+92804,1001184.73,1149097.002,103443.223,21
+92805,1000914.92,1145950.128,102433.6015,21
+92806,1000530.308,1144270.094,101460.4258,21
+92807,999652.1937,1141650.876,100263.7797,21
+92808,997771.2487,1139519.036,99608.22273,21
+92809,997991.5992,1136994.384,98537.56565,21
+92810,997408.0577,1134646.724,28314.6636,21
+92811,995576.6238,1133443.691,28153.27125,21
+92812,995513.6809,1130033.405,27710.83917,21
+92813,993997.152,1129126.49,26876.77519,21
+92814,993771.6005,1125955.23,26964.48912,21
+92815,993686.2761,1126625.74,26326.13927,21
+92816,990901.1082,1124075.198,25874.26036,21
+92817,990841.5336,1121498.594,25365.00813,21
+92818,990519.2087,1122766.909,24969.16879,21
+92819,988848.7398,1119870.062,24621.41297,21
+92820,988484.4512,1118766.964,24074.11586,21
+92821,986578.1884,1114320.033,24610.23468,21
+92822,984656.0489,1110957.381,24422.46223,21
+92823,985081.2838,1108715.986,23460.01368,21
+92824,985360.5208,1104318.379,23301.73794,21
+92825,984143.7318,1102969.977,22543.03131,21
+92826,983487.7052,1099857.166,22001.38796,21
+92827,984181.0846,1096264.735,21434.6007,21
+92828,983555.3443,1095081.073,21055.27817,21
+92829,982113.5303,1091073.386,20392.06106,21
+92830,982987.1925,1088510.573,19811.25267,21
+92831,982020.4256,1087929.175,19542.04045,21
+92832,982520.7787,1082112.122,18652.08332,21
+92833,981128.6132,1082063.86,18363.47126,21
+92834,980485.7327,1078365.088,17864.53709,21
+92835,980189.0188,1075883.183,17178.08614,21
+92836,980768.7045,1074051.211,16867.67838,21
+92837,979166.8663,1071429.867,16156.12215,21
+92838,979382.3388,1069467.548,15659.45817,21
+92839,978436.3913,1066070.174,15145.50803,21
+92840,977956.0854,1063830.53,14839.07636,21
+92841,977060.3708,1061306.629,14045.61908,21
+92842,976342.0389,1058530.599,13737.12832,21
+92843,975782.1059,1058043.673,13176.58854,21
+92844,975202.9672,1055331.496,12592.88352,21
+92845,974716.3653,1052724.217,12051.33237,21
+92846,974138.8396,1050324.727,11707.03772,21
+92847,973616.7095,1047464.318,11352.21217,21
+92848,972474.6546,1044494.886,11186.58324,21
+92849,971739.6182,1042765.527,10963.7519,21
+92850,971330.5717,1040348.249,10648.13333,21
+92851,970303.0448,1036594.623,10438.85587,21
+92852,969346.1712,1035008.842,10229.01102,21
+92853,969405.5632,1032315.048,9913.385428,21
+92854,968675.8665,1029129.333,9817.382892,21
+92855,968805.3039,1026926.316,9502.894276,21
+92856,966673.7225,1024634.777,9151.526993,21
+92857,967291.1523,1020861.149,9102.812511,21
+92858,965091.5888,1020068.149,8889.270859,21
+92859,965639.2584,1015742.63,8535.541907,21
+92860,965578.8102,1013724.291,8351.109605,21
+92861,963308.7813,1011595.31,8161.030173,21
+92862,964241.9543,1008074.688,7944.984445,21
+92863,962798.1391,1006200.705,7592.221717,21
+92864,962964.3179,1001550.96,7536.615595,21
+92865,960981.5156,1000479.034,7181.960293,21
+92866,961619.0103,997665.504,6988.876951,21
+92867,960731.5708,994828.6841,6784.800945,21
+92868,960209.562,991657.5265,6410.878866,21
+92869,960808.9905,989398.4948,6520.996796,21
+92870,958329.2476,985963.7335,6009.223345,21
+92871,959784.0938,983083.0226,5825.993161,21
+92872,956938.7103,981236.2663,5744.764545,21
+92873,959445.4018,977030.855,5391.655443,21
+92874,955924.2641,974516.1082,5195.72884,21
+92875,956604.7196,972469.5764,5124.489511,21
+92876,957292.1393,967992.7638,4614.614372,21
+92877,955388.9196,964453.8799,4714.245854,21
+92878,955735.6182,963203.0846,4227.667469,21
+92879,954716.2839,957982.0817,4255.437142,21
+92880,954525.7959,954328.9628,3796.652414,21
+92881,1022762.715,1020019.797,10402.07037,21
+92882,1021257.156,1017007.951,10334.36627,21
+92883,1022659.5,1014952.905,10047.15511,21
+92884,1020736.825,1009765.876,10095.43953,21
+92885,1020868.136,1007859.418,9647.070599,21
+92886,1020322.896,1003734.607,9739.125027,21
+92887,1020186.436,1001412.993,9244.94836,21
+92888,1019048.805,996904.4646,9365.689377,21
+92889,1019291.815,995579.7625,9004.958818,21
+92890,1018700.15,990040.8299,8841.810141,21
+92891,1017592.262,988357.5306,8745.899827,21
+92892,1018084.326,985441.6482,8466.647636,21
+92893,1017435.674,980562.5018,8367.691533,21
+92894,1017453.506,978913.5128,8058.190488,21
+92895,1015573.436,974974.8725,7987.603453,21
+92896,1017206.446,971344.5094,7678.979158,21
+92897,1013998.797,969333.6605,7589.786176,21
+92898,1015359.708,963714.3223,7444.312026,21
+92899,1014993.33,956547.355,7208.020779,21
+92900,1014870.622,951842.1437,6891.726625,21
+92901,1012674.256,948177.6585,6973.744334,21
+92902,1014382.218,943712.3433,6519.961665,21
+92903,1011865.253,938979.9324,6570.175443,21
+92904,1012273.252,935076.4726,6253.483614,21
+92905,1012027.362,928852.5231,6056.984825,21
+92906,1009698.738,927626.3633,5999.552442,21
+92907,1010922.719,919949.256,5680.337362,21
+92908,1008824.834,917849.5064,5590.147408,21
+92909,1009822.316,912681.1194,5299.383368,21
+92910,1008369.586,908280.6998,5349.247642,21
+92911,1006927.782,903504.4902,4901.813023,21
+92912,1006439.471,899958.1625,4951.587752,21
+92913,1005166.729,894983.0648,4656.226123,21
+92914,1005657.658,891335.659,4441.738516,21
+92915,1004044.813,886547.3103,4394.654812,21
+92916,1003055.427,883502.561,4193.544976,21
+92917,1003079.519,877936.3118,3989.96606,21
+92918,1001081.218,875179.2011,3818.507727,21
+92919,1002335.931,870152.7487,3596.780239,21
+92920,999059.8775,866476.3195,3566.360311,21
+92921,1000041.038,863137.4562,3351.8563,21
+92922,998047.8455,858439.4658,3168.390483,21
+92923,998674.7978,854110.4573,2975.289349,21
+92924,997080.5677,850317.4436,2942.077206,21
+92925,995657.4345,847200.4326,2635.974347,21
+92926,996915.8004,842189.0269,2619.332652,21
+92927,994450.2333,839031.8923,2456.886787,21
+92928,994071.4254,834813.2082,2423.352392,21
+92929,990857.3417,831304.8451,2112.718468,21
+92930,989865.1906,827178.9546,2243.236103,21
+92931,989185.6229,823721.3217,1930.813356,21
+92932,989094.7193,819040.6448,1747.713284,21
+92933,987872.4862,816219.2281,2062.207578,21
+92934,985301.4371,811258.5967,1897.043769,21
+92935,985847.6406,807780.2256,1713.802162,21
+92936,984393.499,804408.496,1563.466181,21
+92937,983607.289,801110.8729,1512.182771,21
+92938,982101.4302,796602.7681,1377.657355,21
+92939,982739.7249,792193.7951,1172.880609,21
+92940,980106.8082,790323.5054,1172.899352,21
+92941,907156.1211,714869.0533,138.7522527,21
+92942,906040.7869,714215.0889,100.3406662,21
+92943,903351.502,713906.5658,100.3408371,21
+92944,903520.7093,711698.6875,61.23480187,21
+92945,900798.3982,712095.6218,41.31898113,21
+92946,901563.9696,710574.0639,41.31900546,21
+92947,898260.6842,708928.4168,0,21
+92948,899266.7069,709899.9008,0,21
+92949,897526.3631,706842.6882,0,21
+92950,896725.9773,706702.3554,0,21
+92951,895541.9996,705175.1201,0,21
+92952,894544.078,705408.5238,0,21
+92953,893246.5892,703155.1476,0,21
+92954,892358.554,704325.9391,0,21
+92955,891895.5744,701774.8063,0,21
+92956,889899.485,701968.4473,0,21
+92957,889463.006,701315.5435,0,21
+92958,888809.1691,699603.4008,0,21
+92959,886070.1192,699034.6214,0,21
+92960,886754.5488,699180.8027,0,21
+92961,884256.6601,697171.1982,0,21
+92962,884178.8991,697306.6488,0,21
+92963,882917.8069,696423.8018,0,21
+92964,881838.4474,696517.2418,0,21
+92965,880411.1411,694630.3491,0,21
+92966,880311.3602,695484.5929,0,21
+92967,877904.9766,693357.6987,0,21
+92968,877671.7317,693293.3796,0,21
+92969,875342.7544,693050.0684,0,21
+92970,875924.0547,692071.8049,0,21
+92971,872821.0222,692213.8732,0,21
+92972,873545.1246,691852.1293,0,21
+92973,871495.7612,691432.5314,0,21
+92974,870603.8262,690983.4091,0,21
+92975,870218.7696,691994.3205,0,21
+92976,866979.3837,690221.8175,0,21
+92977,868001.6173,690064.7845,0,21
+92978,865373.6734,690765.0394,0,21
+92979,864649.3135,690521.7552,0,21
+92980,863960.959,689915.8584,0,21
+92981,862867.3502,690276.1085,0,21
+92982,859812.1024,689274.6692,0,21
+92983,861093.8774,688830.7726,0,21
+92984,856992.899,691545.5488,0,21
+92985,858091.4157,690335.4696,0,21
+92986,854865.9487,691051.0552,0,21
+92987,855272.2312,690893.2924,0,21
+92988,853116.2523,690813.3045,0,21
+92989,851277.805,690198.6877,0,21
+92990,851040.7391,691689.977,0,21
+92991,847557.533,689791.3757,0,21
+92992,847987.9664,691073.2265,0,21
+92993,846338.5991,689888.0712,0,21
+92994,843486.6977,690644.9878,0,21
+92995,844028.8534,689275.3908,0,21
+92996,840989.4826,690035.4671,0,21
+92997,840632.9067,688649.4804,0,21
+92998,838896.7404,689944.0981,0,21
+92999,836518.382,688887.0994,0,21
+93000,835555.9091,689454.4136,0,21
+93001,836147.2234,688173.2347,0,21
+93002,836776.9669,687880.0084,0,21
+93003,836359.8153,686858.3259,0,21
+93004,835489.5629,684026.0246,0,21
+93005,834673.2013,681810.6743,0,21
+93006,832213.3439,681748.8565,0,21
+93007,833289.7595,678292.659,0,21
+93008,830194.9775,676657.459,0,21
+93009,830333.763,674543.8791,0,21
+93010,829759.4097,672308.1297,0,21
+93011,827021.3952,669125.117,0,21
+93012,828435.4772,667818.1431,0,21
+93013,825322.4101,665759.0622,0,21
+93014,826120.3412,662894.45,0,21
+93015,823465.6349,660982.1868,0,21
+93016,823150.3332,658329.2639,0,21
+93017,822641.4582,655049.7726,0,21
+93018,820461.2192,652508.3428,0,21
+93019,820123.9207,649815.7257,0,21
+93020,819389.7146,648426.4209,0,21
+93021,818144.2915,645042.1387,0,21
+93022,817222.6382,643529.5398,0,21
+93023,815981.6371,640880.1668,0,21
+93024,815977.0845,638609.3834,0,21
+93025,813915.1319,636610.6696,0,21
+93026,812990.2753,634239.4633,0,21
+93027,812847.4094,632816.886,0,21
+93028,810867.3632,630322.2117,0,21
+93029,810001.8614,628632.199,0,21
+93030,810366.84,626893.4145,0,21
+93031,807884.2564,624779.9313,0,21
+93032,808363.4871,623137.0621,0,21
+93033,806582.6391,621245.9647,0,21
+93034,806314.8619,619654.7725,0,21
+93035,804973.8412,617592.3022,0,21
+93036,804999.8345,616136.792,0,21
+93037,803694.8704,614293.9993,0,21
+93038,803095.4103,611980.4621,0,21
+93039,802577.5968,610693.8796,0,21
+93040,801436.4943,608818.4401,0,21
+93041,801446.2388,607118.0409,0,21
+93042,799263.3613,605103.3288,0,21
+93043,800900.6662,603660.1926,0,21
+93044,797451.5567,601457.7574,0,21
+93045,799323.9593,600169.9113,0,21
+93046,797112.9438,598247.5145,0,21
+93047,797341.1018,596106.3251,0,21
+93048,796706.0233,594619.3875,0,21
+93049,796087.7231,592724.1106,0,21
+93050,794788.368,591083.1156,0,21
+93051,794489.5062,588759.1691,0,21
+93052,794151.8399,587540.772,0,21
+93053,794236.6042,585405.0997,0,21
+93054,792398.8046,583614.955,0,21
+93055,793125.7385,581780.0055,0,21
+93056,792066.0168,580062.0779,0,21
+93057,791331.5428,578269.9832,0,21
+93058,791577.6716,576205.3956,0,21
+93059,790115.6209,574232.3761,0,21
+93060,790709.5166,571033.7542,0,21
+93061,789151.2469,568221.8337,0,21
+93062,788652.3311,569503.1916,0,21
+93063,790170.9758,570354.6543,0,21
+93064,789198.5959,571895.9331,0,21
+93065,788472.255,573005.7339,0,21
+93066,789285.3326,574551.8383,0,21
+93067,788031.0579,575267.2174,0,21
+93068,788396.1158,576931.923,0,21
+93069,788697.4298,578427.9278,0,21
+93070,787101.6172,579298.8738,0,21
+93071,788161.6142,580806.7972,0,21
+93072,787409.166,582026.5256,0,21
+93073,787479.5743,583544.1964,0,21
+93074,786649.1474,584917.5138,0,21
+93075,787559.0738,586268.326,0,21
+93076,786534.8014,587626.8792,0,21
+93077,786059.6544,589250.4873,0,21
+93078,786511.6322,590256.9545,0,21
+93079,785357.7843,592133.2091,0,21
+93080,786052.1176,593349.7561,0,21
+93081,785324.7206,594979.2487,0,21
+93082,784905.1478,596525.4239,0,21
+93083,785139.955,597808.9511,0,21
+93084,784376.9028,599858.3914,0,21
+93085,784671.099,601004.7647,0,21
+93086,784541.3699,603165.2595,0,21
+93087,783332.0124,604770.0112,0,21
+93088,783663.1889,606446.4725,0,21
+93089,783016.8983,607778.4629,0,21
+93090,783644.0097,609607.3528,0,21
+93091,783169.4053,612237.2046,0,21
+93092,782307.0017,613714.7211,0,21
+93093,782306.9669,616323.4869,0,21
+93094,782534.3467,618333.7679,0,21
+93095,781294.269,619995.1189,0,21
+93096,781990.9918,622949.1524,0,21
+93097,780470.4485,623757.0305,0,21
+93098,781716.0774,625227.6682,0,21
+93099,780345.3279,626497.9723,0,21
+93100,779827.6233,628548.6673,0,21
+93101,781211.2289,629874.3684,0,21
+93102,779910.2707,631184.3341,0,21
+93103,780218.3989,632649.8855,0,21
+93104,780576.2025,634148.2108,0,21
+93105,779757.4217,635168.4682,0,21
+93106,780719.1462,636923.3192,0,21
+93107,780251.7854,638105.5963,0,21
+93108,780477.0903,639625.5422,0,21
+93109,780193.4228,640991.5104,0,21
+93110,780382.8273,642547.4547,0,21
+93111,780747.9726,643761.6416,0,21
+93112,780321.5484,645694.2725,0,21
+93113,780739.157,646701.8338,0,21
+93114,780529.9701,648568.3277,0,21
+93115,780731.4434,649886.4262,0,21
+93116,780862.2091,651809.1322,0,21
+93117,780784.1804,652757.4508,0,21
+93118,781042.6856,654757.8323,0,21
+93119,780935.6505,656274.0658,0,21
+93120,781071.2111,657782.1693,0,21
+93121,781438.4984,659848.3094,0,21
+93122,781546.1815,661256.3628,0,21
+93123,782116.0779,662866.9474,0,21
+93124,782225.1372,663673.0913,0,21
+93125,782391.3656,665007.3248,0,21
+93126,782682.3107,665983.361,0,21
+93127,783391.1972,667952.8129,0,21
+93128,783188.6274,669888.292,0,21
+93129,783662.3255,671694.1722,0,21
+93130,784397.9539,672878.5663,0,21
+93131,784332.8179,674918.5227,0,21
+93132,785237.3026,675426.9368,0,21
+93133,784970.1438,677132.2792,0,21
+93134,785691.3093,678491.2669,0,21
+93135,785619.1413,679956.7343,0,21
+93136,786325.1434,681575.6284,0,21
+93137,786247.1302,682607.667,0,21
+93138,786810.0949,683984.0112,0,21
+93139,787037.3713,686006.2312,0,21
+93140,787094.817,686755.734,0,21
+93141,787708.0094,688811.2414,0,21
+93142,787889.07,690481.6282,0,21
+93143,788217.2053,693010.3003,0,21
+93144,788283.5541,693807.2085,0,21
+93145,788874.669,695562.9214,0,21
+93146,789151.3585,697295.1712,0,21
+93147,789291.076,698404.7463,0,21
+93148,789821.7538,700387.9956,0,21
+93149,789730.5334,701464.6658,0,21
+93150,790453.7787,703587.3195,0,21
+93151,790437.2931,704389.2925,0,21
+93152,791141.1921,705783.7357,0,21
+93153,791114.5249,707523.9034,0,21
+93154,791666.0276,708280.6296,0,21
+93155,791788.1193,709770.1968,0,21
+93156,792200.154,710814.0371,0,21
+93157,792900.4924,712582.3879,0,21
+93158,792846.4109,713242.5977,0,21
+93159,793260.958,715069.2171,0,21
+93160,793772.5192,715756.7757,0,21
+93161,793974.2269,717500.5243,0,21
+93162,794478.5586,718407.882,0,21
+93163,794518.6181,718774.8984,0,21
+93164,795422.2886,719860.6073,0,21
+93165,795213.9173,721334.6906,0,21
+93166,795967.8933,722219.3267,0,21
+93167,796175.0283,723729.2009,0,21
+93168,796918.9092,724759.7797,0,21
+93169,797429.0829,725949.0432,0,21
+93170,797959.4926,727588.68,0,21
+93171,798251.1635,728133.8498,0,21
+93172,798707.4839,729931.4594,0,21
+93173,799076.4559,730557.5793,0,21
+93174,799646.2605,732917.1196,0,21
+93175,799928.3828,734035.4642,0,21
+93176,800686.9787,735475.8921,0,21
+93177,800695.3256,736368.7057,0,21
+93178,801519.2556,738148.5186,0,21
+93179,801931.2832,739163.3551,0,21
+93180,801847.0216,740806.1961,0,21
+93181,834725.18,804663.4831,0,21
+93182,856339.6915,828523.3388,0,21
+93183,1051396.15,823949.209,0,21
+93184,932037.4765,973234.5824,0,21
+93185,971923.7927,915061.9491,0,21
+93186,981251.6316,925739.3766,0,21
+93187,978744.5159,936250.4863,0,21
+93188,983611.932,941449.0825,0,21
+93189,985615.906,945611.31,0,21
+93190,989538.0481,949834.2032,0,21
+93191,991705.5226,953984.7778,0,21
+93192,993395.5845,959275.1559,0,21
+93193,997573.1602,962664.3145,0,21
+93194,998780.2766,966031.0032,0,21
+93195,1000220.613,972097.3389,0,21
+93196,1004594.177,974391.477,0,21
+93197,1004460.469,978655.6314,0,21
+93198,1008456.529,982422.4367,0,21
+93199,1010470.447,986824.8554,0,21
+93200,1011936.148,988740.9471,0,21
+93201,1015947.391,994168.2357,0,21
+93202,1015483.855,997313.6488,0,21
+93203,1019104.346,1001054.209,0,21
+93204,1021388.76,1003643.245,0,21
+93205,1023279.958,1009457.675,0,21
+93206,1024795.949,1011324.311,0,21
+93207,1027467.199,1014237.844,0,21
+93208,1027941.18,1019743.196,0,21
+93209,1031196.302,1019856.037,0,21
+93210,1032965.032,1026185.872,0,21
+93211,1034386.907,1027596.275,0,21
+93212,1036319.191,1030856.181,0,21
+93213,1039283.517,1033826.755,0,21
+93214,1039721.343,1037778.262,0,21
+93215,1042751.39,1039529.339,0,21
+93216,1043540.393,1043105.123,0,21
+93217,1046196.546,1045727.489,0,21
+93218,1047606.369,1048672.882,0,21
+93219,1049525.236,1051134.8,0,21
+93220,1050959.235,1054853.491,0,21
+93221,1052807.213,1056446.33,0,21
+93222,1056040.978,1059994.438,0,21
+93223,1056043.99,1063434.015,0,21
+93224,1058704.735,1064664.105,0,21
+93225,1060954.741,1068819.166,0,21
+93226,1061783.213,1070491.28,0,21
+93227,1064449.761,1073602.495,0,21
+93228,1065996.626,1076326.361,0,21
+93229,1067551.447,1078671.141,0,21
+93230,1069486.251,1081866.525,0,21
+93231,1071223.994,1083796.103,0,21
+93232,1073371.423,1086364.088,0,21
+93233,1076606.508,1089349.143,0,21
+93234,1076427.572,1091059.81,0,21
+93235,1079475.329,1094433.711,0,21
+93236,1081035.628,1096466.109,0,21
+93237,1082616.974,1099459.731,0,21
+93238,1085598.963,1101032.694,0,21
+93239,1092217.157,1104223.454,0,21
+93240,1096336.88,1105211.645,0,21
+93241,1156920.399,1167421.961,0,21
+93242,1163565.491,1170336.978,0,21
+93243,1170651.376,1172750.789,0,21
+93244,1170913.614,1173808.688,7429.895229,21
+93245,1189971.43,1175241.849,3442.30934,21
+93246,1194674.574,1174603.598,4845.541449,21
+93247,1197830.429,1176970.652,5260.499376,21
+93248,1202574.428,1178003.509,5535.876648,21
+93249,1204997.745,1178424.379,5810.211794,21
+93250,1207945.961,1179165.576,6219.60133,21
+93251,1211104.105,1180385.811,6355.930692,21
+93252,1215206.189,1180961.563,6897.323792,21
+93253,1215877.798,1181911.076,6897.955169,21
+93254,1220305.483,1183373.708,7435.798142,21
+93255,1222400.456,1182677.768,7730.735163,21
+93256,1224247.295,1183824.103,8167.907391,21
+93257,1228275.093,1185603.927,8493.079371,21
+93258,1230076.735,1184340.142,8701.058244,21
+93259,1232792.334,1186337.877,9153.644207,21
+93260,1234749.529,1186092.21,9436.341578,21
+93261,1236599.747,1187334.039,9754.582066,21
+93262,1241228.209,1188229.565,10053.763,21
+93263,1241324.048,1186866.258,10352.12443,21
+93264,1242988.229,1188693.482,10667.47353,21
+93265,1248057.873,1188853.83,11076.13499,21
+93266,1246901.294,1189250.568,11242.57002,21
+93267,1252389.152,1191163.467,11684.43951,21
+93268,1250890.11,1188875.229,11850.02611,21
+93269,1256511.981,1191064.168,12257.64796,21
+93270,1256823.693,1192475.899,12454.43956,21
+93271,1259702.024,1191714.701,13842.47525,21
+93272,1261347.815,1193088.944,16747.355,21
+93273,1263841.508,1193116.754,15933.92475,21
+93274,1265711.175,1193546.556,17984.88857,21
+93275,1266755.738,1193511.642,18842.25585,21
+93276,1269462.858,1194187.842,19586.71154,21
+93277,1272365.178,1194304.901,20060.5266,21
+93278,1272438.278,1194862.348,20800.78056,21
+93279,1275773.238,1194412.016,21788.89169,21
+93280,1277166.283,1196159.685,22314.22034,21
+93281,1277542.477,1194806.624,22838.09603,21
+93282,1282357.206,1196098.416,23609.85884,21
+93283,1281294.68,1195622.526,24048.43946,21
+93284,1284825.82,1196074.73,24908.37912,21
+93285,1285293.159,1196214.32,25337.81141,21
+93286,1288498.868,1196198.072,25988.92071,21
+93287,1288792.737,1196441.786,26507.57651,21
+93288,1291448.701,1197393.587,27162.14627,21
+93289,1293178.847,1196494.676,27813.14763,21
+93290,1294705.039,1197585.668,28218.80938,21
+93291,1296309.209,1196171.073,28963.58694,21
+93292,1297363.67,1198296.026,29518.6328,21
+93293,1300504.593,1197834.397,29789.7599,21
+93294,1299979.32,1197146.762,30549.49842,21
+93295,1304078.511,1197625.9,31214.2829,21
+93296,1303123.164,1197534.292,31790.32655,21
+93297,1306739.179,1198427.903,31930.64258,21
+93298,1305800.197,1197741.515,32971.1915,21
+93299,1310357.471,1197596.561,33062.15401,21
+93300,1310368.956,1199082.595,33905.96988,21
+93301,1310780.392,1196195.787,34408.29837,21
+93302,1314080.84,1200148.795,34548.84951,21
+93303,1314383.539,1198192.349,35412.80722,21
+93304,1315914.03,1201284.707,35309.9111,21
+93305,1316274.779,1199249.195,36145.52205,21
+93306,1318126.02,1201517.58,36556.30316,21
+93307,1318372.601,1201730.23,36830.69175,21
+93308,1319834.498,1201145.05,37347.45241,21
+93309,1320661.324,1202490.665,37974.06873,21
+93310,1322412.093,1203049.049,38148.31823,21
+93311,1321879.189,1203046.361,38569.19358,21
+93312,1324698.631,1203281.356,39161.89069,21
+93313,1323675.043,1205945.616,39437.7681,21
+93314,1326307.005,1203867.688,39775.30772,21
+93315,1326113.637,1204964.608,40463.28997,21
+93316,1327421.883,1205988.904,40764.54726,21
+93317,1329035.131,1205153.812,41038.89861,21
+93318,1328715.944,1207063.618,41564.01815,21
+93319,1330453.923,1207900.57,41652.79057,21
+93320,1331111.604,1205854.52,42535.7247,21
+93321,1331725.494,1209389.909,42665.07702,21
+93322,1332930.68,1207030.795,43152.84441,21
+93323,1334047.648,1209064.923,43198.9748,21
+93324,1334018.674,1209396.423,44167.0786,21
+93325,1336480.077,1208922.634,43998.59919,21
+93326,1335934.277,1210309.094,44753.84624,21
+93327,1335871.882,1210146.65,44969.78822,21
+93328,1338758.714,1210463.213,45356.53035,21
+93329,1339669.603,1210700.175,45668.02538,21
+93330,1338152.73,1212361.053,46207.8615,21
+93331,1340246.551,1210804.495,46587.57387,21
+93332,1340881.933,1213078.046,46676.21308,21
+93333,1342116.212,1211343.932,47286.39778,21
+93334,1342810.524,1213521.758,47637.76004,21
+93335,1342494.442,1213363.969,47780.3193,21
+93336,1344006.941,1213934.622,48441.81676,21
+93337,1344794.981,1212866.751,48766.85051,21
+93338,1345188.922,1215815.776,48792.3433,21
+93339,1346781.218,1213145.667,49741.8459,21
+93340,1346821.325,1216721.664,49413.36034,21
+93341,1346907.035,1214385.446,50288.05486,21
+93342,1349321.471,1215782.799,50427.86882,21
+93343,1348434.987,1216604.351,50869.69663,21
+93344,1349349.981,1216692.605,51242.03013,21
+93345,1350483.463,1215665.346,51559.50749,21
+93346,1350799.559,1217940.164,51830.34332,21
+93347,1352004.715,1217335.634,52269.416,21
+93348,1352319.617,1219463.029,52635.99279,21
+93349,1353030.482,1217520.295,52938.00026,21
+93350,1352772.457,1220172.271,53627.39029,21
+93351,1354603.86,1218019.514,54057.9878,21
+93352,1355000.838,1220494.587,54109.78813,21
+93353,1355690.12,1220372.977,54656.47263,21
+93354,1354686.739,1219185.451,55228.20274,21
+93355,1358075.185,1220801.025,55361.98299,21
+93356,1356003.958,1221070.522,55913.69681,21
+93357,1358135.501,1221373.802,56251.4398,21
+93358,1358860.316,1221633.784,56742.42216,21
+93359,1358430.124,1222277.353,56735.62327,21
+93360,1359504.82,1221712.687,57646.41441,21
+93361,1367871.085,1229450.501,59754.66566,21
+93362,1370049.951,1231728.132,60626.32608,21
+93363,1371889.556,1232159.634,61138.16499,21
+93364,1372865.196,1232421.462,61486.41629,21
+93365,1373139.176,1233200.552,62513.90002,21
+93366,1374375.316,1234271.575,62427.20944,21
+93367,1377404.528,1233069.062,63165.87177,21
+93368,1376006.689,1234692.881,63536.23438,21
+93369,1378983.497,1235906.68,64106.96601,21
+93370,1379718.461,1234245.536,64383.78817,21
+93371,1379110.097,1237685.463,65061.67994,21
+93372,1383117.667,1234562.432,65486.48498,21
+93373,1381087.115,1238626.768,65945.50532,21
+93374,1384651.484,1235677.244,66418.09398,21
+93375,1384281.144,1238822.869,66800.91475,21
+93376,1385426.597,1237838.438,67148.44777,21
+93377,1386821.994,1237422.211,67662.00243,21
+93378,1387558.282,1239665.134,68460.2615,21
+93379,1388832.359,1239847.685,68583.45097,21
+93380,1390174.429,1238123.208,68931.07348,21
+93381,1389648.276,1240283.403,69679.90561,21
+93382,1392012.924,1240403.122,69841.43214,21
+93383,1392619.178,1241119.59,70368.1541,21
+93384,1394101.015,1240617.494,71125.14342,21
+93385,1394247.98,1241153.261,73592.61884,21
+93386,1395699.889,1241756.616,73376.11865,21
+93387,1397162.61,1241911.038,74440.09337,21
+93388,1397291.742,1242420.081,74953.86855,21
+93389,1398508.098,1243148.165,76149.58805,21
+93390,1398991.731,1242511.789,76691.86471,21
+93391,1401170.865,1243432.38,77197.81391,21
+93392,1400433.018,1241925.028,78168.94035,21
+93393,1403192.83,1243850.123,78911.00287,21
+93394,1401772.038,1244014.694,79316.67845,21
+93395,1404879.249,1242524.043,80169.04078,21
+93396,1405067.394,1245892.934,81248.06241,21
+93397,1405781.844,1243117.61,81263.11658,21
+93398,1406702.127,1244486.61,82751.68769,21
+93399,1408046.822,1246111.16,82745.78945,21
+93400,1408875.562,1244582.745,83828.30973,21
+93401,1409133.479,1245765.744,84518.33057,21
+93402,1410113.278,1245737.743,85067.4475,21
+93403,1411850.364,1246563.813,85801.20907,21
+93404,1412532.993,1246468.594,86627.55873,21
+93405,1412251.129,1245685.827,87395.32443,21
+93406,1415442.882,1247970.202,87814.47004,21
+93407,1413687.218,1247149.23,88560.97196,21
+93408,1415632.586,1247571.618,89149.2418,21
+93409,1417072.038,1247953.324,89947.04666,21
+93410,1416790.976,1247027.424,90877.6752,21
+93411,1419119.11,1248887.337,91585.58349,21
+93412,1419231.884,1248668.669,92097.22603,21
+93413,1420527.302,1249003.706,93416.32828,21
+93414,1419874.45,1247544.894,93201.86664,21
+93415,1422208.442,1251336.144,95021.54701,21
+93416,1422848.89,1247764.329,94720.17239,21
+93417,1424127.188,1251036.81,96082.06554,21
+93418,1423636.733,1248378.74,96344.79544,21
+93419,1425726.843,1251720.716,97579.61612,21
+93420,1427406.385,1250129.649,98001.10164,21
+93421,1429009.044,1250455.1,98597.07476,21
+93422,1430989.668,1254384.885,99369.05148,21
+93423,1431559.307,1253766.878,100052.4783,21
+93424,1431257.329,1255862.03,100943.8194,21
+93425,1434054.901,1255855.327,101205.8159,21
+93426,1432946.004,1256869.749,102147.536,21
+93427,1435541.735,1259054.604,102895.3349,21
+93428,1433780.129,1258331.691,103514.1395,21
+93429,1437939.886,1259591.7,103999.2443,21
+93430,1434665.782,1260586.351,105177.9481,21
+93431,1438878.77,1261154.494,105264.6525,21
+93432,1438365.828,1263438.666,106276.3806,21
+93433,1438520.999,1262924.663,107070.2812,21
+93434,1439751.584,1264646.605,107427.7304,21
+93435,1441523.53,1264552.417,108370.1412,21
+93436,1440834.241,1266539.08,108996.9684,21
+93437,1441673.564,1267612.575,109636.3289,21
+93438,1443543.458,1267180.936,109868.2193,21
+93439,1443293.418,1269071.044,111376.0502,21
+93440,1443322.032,1270174.266,111404.1644,21
+93441,1445858.719,1271188.808,112447.1981,21
+93442,1445274.526,1269998.216,112821.6057,21
+93443,1446966.569,1273920.977,113463.0234,21
+93444,1447002.346,1272425.665,114401.0912,21
+93445,1447831.913,1274197.619,114890.35,21
+93446,1449407.203,1275222.144,115584.2172,21
+93447,1448227.923,1276507.383,116179.9514,21
+93448,1450860.498,1276589.501,117120.2321,21
+93449,1450946.199,1277304.601,117384.1943,21
+93450,1451423.832,1278958.147,118451.7103,21
+93451,1452584.999,1279016.761,118762.451,21
+93452,1453239.081,1281137.246,119561.1881,21
+93453,1452725.622,1281482.717,120141.9656,21
+93454,1456046.957,1281352.652,120933.6646,21
+93455,1453879.956,1282948.968,121536.1208,21
+93456,1456457.988,1284807.624,122261.7762,21
+93457,1456658.989,1284195.311,122620.675,21
+93458,1457669.1,1287820.664,123416.5553,21
+93459,1458195.673,1287394.366,124234.0716,21
+93460,1458361.172,1287533.016,124513.1979,21
+93461,1459483.008,1290925.97,125991.7561,21
+93462,1459948.695,1290558.305,125360.738,21
+93463,1460980.238,1290541.429,127069.6194,21
+93464,1462788.933,1292869.602,127175.5329,21
+93465,1460372.065,1292014.788,127624.4037,21
+93466,1464570.677,1294570.951,128948.6476,21
+93467,1462785.722,1295498.348,129333.5407,21
+93468,1464143.414,1294779.492,129607.107,21
+93469,1465991.867,1297235.173,130865.777,21
+93470,1465453.736,1297207.165,130889.4489,21
+93471,1466332.171,1299499.024,131880.3329,21
+93472,1467556.4,1298602.911,132449.1439,21
+93473,1467467.657,1298820.248,133420.9436,21
+93474,1469338.415,1299818.9,133062.6583,21
+93475,1468622.734,1300898.545,134714.7586,21
+93476,1469943.831,1301364.333,135198.4133,21
+93477,1471647.358,1302578.449,135190.4822,21
+93478,1470393.186,1303311.255,136659.3742,21
+93479,1472654.564,1303916.282,136526.5183,21
+93480,1471803.521,1304488.995,137761.6467,15.6
+93481,0,0,0,15.6
+93482,0,0,0,15.6
+93483,0,149.6099777,0,15.6
+93484,0,0,0,15.6
+93485,0,0,0,15.6
+93486,0,0,1440117.378,15.6
+93487,0,0,0,15.6
+93488,0,0,0,15.6
+93489,0,4.104069112,0,15.6
+93490,0,0,0,15.6
+93491,0,108.4244345,0,15.6
+93492,0,0,0,15.6
+93493,0,0,0,15.6
+93494,0,0,0,15.6
+93495,0,3.719723548,0,15.6
+93496,0,0,0,15.6
+93497,0,0,0,15.6
+93498,0,275.3365254,0,15.6
+93499,0,0,0,15.6
+93500,0,0,0,15.6
+93501,0,0,0,15.6
+93502,0,0,0,15.6
+93503,0,0,0,15.6
+93504,0,0,0,15.6
+93505,0,3.971541353,0,15.6
+93506,0,0,0,15.6
+93507,0,0,0,15.6
+93508,0,273.2305531,0,15.6
+93509,0,0,0,15.6
+93510,0,0,0,15.6
+93511,0,0,0,15.6
+93512,0,0,0,15.6
+93513,0,0,0,15.6
+93514,0,0,0,15.6
+93515,0,0,0,15.6
+93516,0,54.62508136,0,15.6
+93517,0,0,0,15.6
+93518,0,0,0,15.6
+93519,0,0,0,15.6
+93520,0,0,0,15.6
+93521,0,0,1373678.883,15.6
+93522,0,0,0,15.6
+93523,0,0,0,15.6
+93524,0,0,0,15.6
+93525,0,0,0,15.6
+93526,0,0,0,15.6
+93527,0,0,0,15.6
+93528,0,0,0,15.6
+93529,0,0,0,15.6
+93530,0,0,0,15.6
+93531,0,0,0,15.6
+93532,0,0,0,15.6
+93533,0,0,0,15.6
+93534,0,0,0,15.6
+93535,0,0,0,15.6
+93536,0,0,0,15.6
+93537,0,0,0,15.6
+93538,0,0,0,15.6
+93539,0,0,0,15.6
+93540,0,0,0,15.6
+93541,0,0,0,15.6
+93542,0,0,0,15.6
+93543,0,0,0,15.6
+93544,0,0,0,15.6
+93545,0,0,0,15.6
+93546,0,0,0,15.6
+93547,29602.95202,0,0,15.6
+93548,0,0,0,15.6
+93549,323.7501384,0,0,15.6
+93550,6261.053032,0,0,15.6
+93551,7438.058024,0,0,15.6
+93552,5211.564995,0,0,15.6
+93553,5972.110638,0,0,15.6
+93554,6080.389384,0,0,15.6
+93555,6168.482937,0,0,15.6
+93556,6367.68586,0,1313014.226,15.6
+93557,8451.887122,0,0,15.6
+93558,7445.183367,3.923985582,0,15.6
+93559,7999.007003,0,0,15.6
+93560,8221.128133,0,0,15.6
+93561,8391.825022,73.2844123,0,15.6
+93562,8602.458631,0,0,15.6
+93563,8787.612929,0,0,15.6
+93564,8967.743275,0,0,15.6
+93565,9159.628823,0,0,15.6
+93566,9333.832329,0,0,15.6
+93567,9547.112037,0,0,15.6
+93568,9674.046751,0,0,15.6
+93569,9898.596963,0,0,15.6
+93570,10043.47345,0,0,15.6
+93571,10241.44836,0,0,15.6
+93572,10407.88256,0,0,15.6
+93573,10566.77487,0,0,15.6
+93574,10757.36278,0,0,15.6
+93575,10927.25285,0,0,15.6
+93576,11076.3386,2.743596705,0,15.6
+93577,0,0,0,15.6
+93578,0,0,0,15.6
+93579,0,265.7822659,0,15.6
+93580,0,0,0,15.6
+93581,39910.54991,0,0,15.6
+93582,2151.651843,0,0,15.6
+93583,8228.544289,0,0,15.6
+93584,16299.06128,0,0,15.6
+93585,11941.49917,0,0,15.6
+93586,12665.51329,3.044070634,0,15.6
+93587,12890.42127,0,0,15.6
+93588,13077.9978,0,0,15.6
+93589,13178.66195,291.9457591,0,15.6
+93590,13382.51986,0,0,15.6
+93591,13483.34337,0,1257614.733,15.6
+93592,13641.54761,0,0,15.6
+93593,13823.92883,0,0,15.6
+93594,13923.12238,0,0,15.6
+93595,14091.82368,0,0,15.6
+93596,14276.13907,0,0,15.6
+93597,14355.74707,0,0,15.6
+93598,14550.53719,0,0,15.6
+93599,14646.52733,0,0,15.6
+93600,14839.31419,0,0,15.6
+93601,15095.93237,0,0,15.6
+93602,15312.84312,0,0,15.6
+93603,15413.82294,0,0,15.6
+93604,15536.04769,0,0,15.6
+93605,15672.61996,0,0,15.6
+93606,15798.96263,0,0,15.6
+93607,15908.45957,0,0,15.6
+93608,16082.29621,0,0,15.6
+93609,16160.78384,0,0,15.6
+93610,16295.14177,0,0,15.6
+93611,0,0,0,15.6
+93612,0,0,0,15.6
+93613,0,0,0,15.6
+93614,56999.46694,0,0,15.6
+93615,280952.333,0,0,15.6
+93616,12060.72262,0,0,15.6
+93617,21889.47367,0,0,15.6
+93618,90307.50336,0,0,15.6
+93619,76528.23975,0,0,15.6
+93620,67547.16117,0,0,15.6
+93621,71822.53298,0,0,15.6
+93622,72265.63921,0,0,15.6
+93623,72992.52212,0,0,15.6
+93624,73313.51313,0,0,15.6
+93625,74132.31689,0,0,15.6
+93626,74382.2732,0,1207025.106,15.6
+93627,75125.15884,0,0,15.6
+93628,78511.6283,0,0,15.6
+93629,79979.96191,0,0,15.6
+93630,80006.30935,0,0,15.6
+93631,81516.95809,0,0,15.6
+93632,82311.12046,0,0,15.6
+93633,89286.80114,0,0,15.6
+93634,87395.85106,0,0,15.6
+93635,89639.79807,0,0,15.6
+93636,91152.23174,0,0,15.6
+93637,92536.36441,0,0,15.6
+93638,93820.20404,0,0,15.6
+93639,95297.13703,0,0,15.6
+93640,96580.77001,0,0,15.6
+93641,98199.10405,0,0,15.6
+93642,99233.95607,0,0,15.6
+93643,100616.9051,0,0,15.6
+93644,81888.69815,0,0,15.6
+93645,0,0,0,15.6
+93646,0,0,0,15.6
+93647,72791.52331,0,0,15.6
+93648,10441.89704,0,0,15.6
+93649,8637.844333,0,0,15.6
+93650,29358.91168,0,0,15.6
+93651,329468.3588,0,0,15.6
+93652,39451.60753,0,0,15.6
+93653,74323.61416,0,0,15.6
+93654,148257.7343,0,0,15.6
+93655,111067.8983,0,0,15.6
+93656,117141.6599,0,0,15.6
+93657,118622.2289,0,0,15.6
+93658,119828.4153,0,0,15.6
+93659,121032.5953,0,0,15.6
+93660,122100.7203,0,0,15.6
+93661,122770.7193,0,0,15.6
+93662,124180.2429,0,1238173.731,15.6
+93663,124362.2771,0,0,15.6
+93664,125567.9017,0,0,15.6
+93665,126236.6998,0,0,15.6
+93666,127030.5926,0,0,15.6
+93667,127906.4702,0,0,15.6
+93668,128778.9529,0,0,15.6
+93669,129267.054,0,0,15.6
+93670,130416.8207,0,0,15.6
+93671,130984.4707,0,0,15.6
+93672,131928.274,0,0,15.6
+93673,132699.5946,0,0,15.6
+93674,133375.0558,0,0,15.6
+93675,134060.8428,0,0,15.6
+93676,135061.8324,0,0,15.6
+93677,112605.8188,0,0,15.6
+93678,113078.7836,0,0,15.6
+93679,114051.3912,0,0,15.6
+93680,192819.9887,0,0,15.6
+93681,16588.98833,0,0,15.6
+93682,12276.87854,0,0,15.6
+93683,30427.1137,0,0,15.6
+93684,23182.82529,0,0,15.6
+93685,432904.3028,0,0,15.6
+93686,49521.62263,0,0,15.6
+93687,103167.6324,0,0,15.6
+93688,181638.6264,0,0,15.6
+93689,139347.8874,0,0,15.6
+93690,145771.7643,0,0,15.6
+93691,147039.8756,0,0,15.6
+93692,486284.495,0,0,15.6
+93693,148152.3474,0,0,15.6
+93694,148591.3624,0,0,15.6
+93695,149496.9013,27902.92986,0,15.6
+93696,149744.6552,0,0,15.6
+93697,150467.0146,1092.468742,0,15.6
+93698,151449.4055,7840.690993,1184863.089,15.6
+93699,151554.854,8722.800819,0,15.6
+93700,152579.0809,6490.591359,0,15.6
+93701,153302.3949,9689.253374,0,15.6
+93702,153299.8277,8633.874144,0,15.6
+93703,154739.2384,9117.742497,0,15.6
+93704,154726.6083,9343.543577,0,15.6
+93705,155604.5484,9486.222582,0,15.6
+93706,156294.3143,9678.187307,0,15.6
+93707,156859.2598,9857.325431,0,15.6
+93708,157255.3861,10027.16167,0,15.6
+93709,158032.8239,10156.34783,0,15.6
+93710,133646.6045,10379.9111,0,15.6
+93711,134160.1098,10525.42368,0,15.6
+93712,208878.8931,10688.47658,0,15.6
+93713,146116.1773,10846.54491,0,15.6
+93714,158014.0624,11016.85744,0,15.6
+93715,28770.76425,11173.46501,0,15.6
+93716,25243.88392,11332.07874,0,15.6
+93717,25612.20648,11514.39612,0,15.6
+93718,25631.12945,11637.44402,0,15.6
+93719,539453.2886,11838.5854,0,15.6
+93720,77022.41717,12002.83052,0,15.6
+93721,79662.96602,11934.88477,0,15.6
+93722,224674.653,11865.84921,0,15.6
+93723,154236.5759,11838.06164,0,15.6
+93724,163701.0398,11739.30083,0,15.6
+93725,163856.2949,0,0,15.6
+93726,164524.5736,0,0,15.6
+93727,163899.607,0,0,15.6
+93728,164523.2034,0,0,15.6
+93729,164432.8882,0,0,15.6
+93730,164609.4677,0,0,15.6
+93731,164583.6383,41525.48486,0,15.6
+93732,164787.9236,2867.621951,0,15.6
+93733,165152.0461,5065.319404,0,15.6
+93734,164938.984,13446.91038,1136563.448,15.6
+93735,165313.4803,12242.63649,0,15.6
+93736,165137.5393,10551.52755,0,15.6
+93737,165506.2122,11103.98339,0,15.6
+93738,165622.569,11007.07811,0,15.6
+93739,165397.2233,10954.21763,0,15.6
+93740,165952.2699,10906.65249,0,15.6
+93741,165838.4889,10826.06335,0,15.6
+93742,140366.9521,10757.32594,0,15.6
+93743,140165.672,10715.2332,0,15.6
+93744,216242.6164,10596.66532,0,15.6
+93745,152537.2871,10578.71937,0,15.6
+93746,162748.8886,10542.70304,0,15.6
+93747,169967.7,10391.17609,0,15.6
+93748,166489.9093,10390.26478,0,15.6
+93749,25787.10987,10270.60941,0,15.6
+93750,25749.03886,10224.3058,0,15.6
+93751,25813.61975,10165.16269,0,15.6
+93752,25787.10449,10085.67943,0,15.6
+93753,563296.2457,10010.93934,0,15.6
+93754,80273.53336,9912.69572,0,15.6
+93755,72874.61766,9894.151968,0,15.6
+93756,235448.5145,9757.321029,0,15.6
+93757,157292.8786,9761.360208,0,15.6
+93758,167937.3851,9628.481731,0,15.6
+93759,168222.1047,9556.33619,0,15.6
+93760,168259.8659,9498.497907,0,15.6
+93761,168286.7822,0,0,15.6
+93762,168203.2585,0,0,15.6
+93763,168512.0763,0,0,15.6
+93764,168339.4771,0,0,15.6
+93765,168547.191,0,0,15.6
+93766,168137.3315,0,0,15.6
+93767,168953.4573,0,0,15.6
+93768,168127.8682,0,0,15.6
+93769,507895.8102,0,0,15.6
+93770,168661.1249,0,1092786.418,15.6
+93771,168525.3536,0,0,15.6
+93772,168808.9659,29787.06948,0,15.6
+93773,168763.1408,1656.655105,0,15.6
+93774,142943.4804,4736.394431,0,15.6
+93775,142844.489,6846.521792,0,15.6
+93776,218878.788,10816.24904,0,15.6
+93777,155124.5718,7267.985345,0,15.6
+93778,165102.988,8017.008303,0,15.6
+93779,172355.8424,7943.29638,0,15.6
+93780,168754.6958,7759.388845,0,15.6
+93781,169953.5352,7946.703246,0,15.6
+93782,170339.823,8136.197736,0,15.6
+93783,26073.40581,8254.984086,0,15.6
+93784,26185.49365,8351.358331,0,15.6
+93785,26222.72298,8520.744969,0,15.6
+93786,26265.44133,8626.275239,0,15.6
+93787,596191.5381,8736.289305,0,15.6
+93788,88008.7607,8875.923971,0,15.6
+93789,67641.00088,8980.326129,0,15.6
+93790,250526.1215,9096.049618,0,15.6
+93791,165485.7467,9240.488525,0,15.6
+93792,177690.4331,9356.824365,0,15.6
+93793,178765.9663,9449.983702,0,15.6
+93794,179197.9367,9614.206698,0,15.6
+93795,180012.0493,9697.088268,0,15.6
+93796,180373.4666,9856.748651,0,15.6
+93797,181366.2317,9948.552722,0,15.6
+93798,181628.2103,10047.191,0,15.6
+93799,182345.0232,10207.39275,0,15.6
+93800,182850.1512,10318.21243,0,15.6
+93801,183821.1311,10377.31939,0,15.6
+93802,184017.2596,0,0,15.6
+93803,185008.3086,0,0,15.6
+93804,185367.3244,0,0,15.6
+93805,186103.5329,0,0,15.6
+93806,159016.7496,0,1053208.283,15.6
+93807,159509.697,0,0,15.6
+93808,238858.6162,0,0,15.6
+93809,179069.6355,41157.80897,0,15.6
+93810,182522.7363,2609.483125,0,15.6
+93811,194122.2239,5830.610148,0,15.6
+93812,190341.4819,13435.23999,0,15.6
+93813,190938.1848,13093.55289,0,15.6
+93814,192002.8153,11362.66326,0,15.6
+93815,192197.6481,12098.99175,0,15.6
+93816,192888.4839,12205.28851,0,15.6
+93817,28390.69572,12359.77142,0,15.6
+93818,28479.13746,12401.47626,0,15.6
+93819,28586.95004,12569.90949,0,15.6
+93820,617231.5537,12668.41121,0,15.6
+93821,88452.74485,12764.16436,0,15.6
+93822,114946.0299,12897.21187,0,15.6
+93823,259165.6415,12970.61825,0,15.6
+93824,188170.5786,13106.547,0,15.6
+93825,198723.07,13214.36731,63010.18179,15.6
+93826,199546.8457,13351.60779,62500.05131,15.6
+93827,199929.2848,13438.3667,62040.17591,15.6
+93828,200890.4105,13502.67969,61606.62609,15.6
+93829,201012.1973,13684.72391,61185.72803,15.6
+93830,202024.5885,13777.95572,60771.60471,15.6
+93831,202225.4465,13847.24031,60362.35128,15.6
+93832,203038.0847,13989.17476,59957.2014,15.6
+93833,203598.993,14100.05697,59555.61061,15.6
+93834,203973.7345,14278.33866,59157.09722,15.6
+93835,205121.9534,14411.68973,58761.18943,15.6
+93836,205292.5894,14482.94921,58367.57095,15.6
+93837,205941.9338,14596.52502,57976.00172,15.6
+93838,176935.9421,14726.50012,57586.45245,15.6
+93839,177422.3588,0,57198.93969,15.6
+93840,598397.4185,0,56813.52497,17.8
+93841,1067926.09,1175728.006,132175.0399,17.8
+93842,919784.4837,379224.9076,940115.3834,17.8
+93843,476754.4928,211981.8271,72009.10734,17.8
+93844,633469.2108,270581.2107,86917.49919,17.8
+93845,483464.6425,268544.2424,77409.08391,17.8
+93846,474084.1379,285419.5409,78769.5991,17.8
+93847,462784.8793,256812.5428,78741.37762,17.8
+93848,465885.5072,260946.79,78639.42626,17.8
+93849,454466.2181,261392.1675,78493.79145,17.8
+93850,80626.61324,261179.5437,78437.31928,17.8
+93851,80488.20611,258817.6442,78290.04408,17.8
+93852,887347.7543,257909.4985,78230.45921,17.8
+93853,524790.9427,257018.9445,75481.53196,17.8
+93854,438162.771,255403.1839,75364.5001,17.8
+93855,436197.2048,254608.9884,75173.83055,17.8
+93856,468268.9526,253222.3593,75071.67175,17.8
+93857,450100.1162,252358.4859,74900.12386,17.8
+93858,448217.162,251229.5218,74797.00409,17.8
+93859,446468.2762,249769.1888,74627.73069,17.8
+93860,446633.6461,249372.695,74561.29622,17.8
+93861,445383.2311,247968.1412,74400.34783,17.8
+93862,445318.2852,246859.0416,74302.42971,17.8
+93863,444570.2557,246182.0599,74158.13182,17.8
+93864,444211.9449,244733.815,74032.88706,17.8
+93865,443281.2653,244185.5109,73996.24909,17.8
+93866,443131.6395,242999.8508,73827.44652,17.8
+93867,442481.1072,242008.1312,73727.47702,17.8
+93868,442006.7541,241172.8809,73690.22771,17.8
+93869,442104.1914,239731.712,73519.95882,17.8
+93870,372316.2939,239536.4769,73488.76594,17.8
+93871,362877.926,0,0,17.8
+93872,464429.778,0,0,17.8
+93873,451855.2621,0,0,17.8
+93874,432499.9415,98578.68031,0,17.8
+93875,431581.0599,610610.7292,0,17.8
+93876,436544.4061,54968.75013,828150.7359,17.8
+93877,428310.4403,234564.5795,0,17.8
+93878,770064.1157,252600.2557,128859.2591,17.8
+93879,429887.6618,224368.9119,60358.16257,17.8
+93880,430033.1288,226885.3573,67836.67487,17.8
+93881,428842.9599,231375.5351,78984.18319,17.8
+93882,68494.01015,227712.4565,71766.93407,17.8
+93883,106488.854,226866.093,72722.7481,17.8
+93884,866476.3673,226893.6611,75357.56754,17.8
+93885,498871.3663,225309.3172,75330.2564,17.8
+93886,424624.2476,224707.8625,75409.16722,17.8
+93887,424694.4921,223607.8196,75402.4902,17.8
+93888,460359.0139,222789.078,75517.37187,17.8
+93889,439551.1635,221690.0624,75552.00653,17.8
+93890,439028.883,221110.7398,75673.39718,17.8
+93891,438217.0437,220004.0228,75760.35768,17.8
+93892,438584.2409,219122.5815,75842.56047,17.8
+93893,438439.4648,217896.6537,75913.556,17.8
+93894,438139.6131,217842.3043,76024.15255,17.8
+93895,437945.5376,584388.0312,76097.01786,17.8
+93896,438148.8236,215412.9685,76189.54627,17.8
+93897,437878.6027,214612.6155,76290.55852,17.8
+93898,437927.8014,213339.3113,76343.86894,17.8
+93899,437862.5991,212555.2741,76473.31757,17.8
+93900,437513.3386,210630.4531,76563.4907,20
+93901,2304297.636,2585738.84,1568528.898,20
+93902,2085446.434,1261330.65,942581.3109,20
+93903,1049977.944,352386.3586,383358.5906,20
+93904,913969.5274,486222.8633,471339.4297,20
+93905,1220973.934,200157.6152,526417.5375,20
+93906,1016762.959,88878.49032,475529.1795,20
+93907,1001145.944,1167536.704,478006.432,20
+93908,1009447.472,335778.6531,412960.8001,20
+93909,999570.2377,632872.436,416613.7765,20
+93910,997528.5898,656046.4849,1446555.89,20
+93911,992103.9053,599016.6225,511949.6282,20
+93912,965375.7863,609922.6783,468561.5517,20
+93913,946237.4772,607272.242,499395.2342,20
+93914,127499.4037,604422.7255,498760.7365,20
+93915,1047735.756,871127.6443,501873.7877,20
+93916,1420077.149,601446.592,506642.0956,20
+93917,955670.0461,600398.4079,511359.4612,20
+93918,979666.848,597975.9301,516379.1787,20
+93919,981008.2965,597258.4599,520895.786,20
+93920,939045.7619,595344.1259,525503.7206,20
+93921,962501.2982,594436.6363,529729.2876,20
+93922,951385.461,592252.3096,534899.4172,20
+93923,949609.5006,856732.2474,538284.9296,20
+93924,947867.4355,590423.719,543750.0493,20
+93925,943742.1243,589523.3955,546660.0545,20
+93926,945364.1662,587625.2825,551841.7266,20
+93927,939418.9143,586378.7287,557101.0243,20
+93928,940510.2136,586490.4509,562457.2198,20
+93929,937080.6741,585094.1017,566546.1853,20
+93930,935808.8839,583601.1442,570460.1018,20
+93931,932785.5594,830721.5206,156444.6131,20
+93932,933629.1456,563818.545,155975.1154,20
+93933,808694.1211,563615.0279,155189.4678,20
+93934,980128.3647,562913.7405,154847.3104,20
+93935,916560.1337,475716.4896,1808226.022,20
+93936,927104.6239,844462.1541,464071.5525,20
+93937,922995.87,180000.6639,510660.4745,20
+93938,924875.8773,56944.2392,638705.0807,20
+93939,920785.1068,358885.3865,577002.9002,20
+93940,920335.6697,1083232.551,495254.067,20
+93941,918143.7547,291605.3665,498048.71,20
+93942,918247.1223,524951.3912,718091.3338,20
+93943,915582.3052,536467.7658,628979.1594,20
+93944,914166.0392,624882.386,1662476.094,20
+93945,147158.479,550255.8544,607154.8582,20
+93946,1010064.586,573288.9726,601788.0478,20
+93947,933616.5951,837301.3638,606307.4178,20
+93948,891011.0841,572382.5023,614032.8352,20
+93949,957009.4318,571727.0743,618398.4027,20
+93950,911689.2447,570344.6842,625713.8042,20
+93951,897753.452,571524.5842,632431.2821,20
+93952,913408.3507,569762.213,635413.3173,20
+93953,902773.9571,569166.8539,641722.0809,20
+93954,1243540.137,570342.3889,645152.9892,20
+93955,902567.254,833346.336,649563.3492,20
+93956,901385.37,568485.6289,654714.8489,20
+93957,899472.1823,568430.529,659032.6253,20
+93958,900828.1513,567258.5459,662381.2604,20
+93959,895416.1098,567398.1897,667275.7324,20
+93960,898680.3408,566391.2863,672605.8421,21
+93961,2306552.501,2592998.198,2820873.632,21
+93962,2237738.365,1806544.996,1686879.949,21
+93963,759986.0791,616518.3384,281116.9126,21
+93964,1031027.283,926588.4232,679391.9218,21
+93965,1272420.467,1080087.999,734448.3509,21
+93966,1101472.876,837613.0151,668461.9135,21
+93967,1117873.95,862546.3729,652017.3016,21
+93968,1100235.424,861105.0629,660977.5813,21
+93969,1093064.699,856843.6709,664141.194,21
+93970,1095052.099,855565.237,665392.0811,21
+93971,1090659.146,852425.3516,669094.1321,21
+93972,1087431.258,1114858.017,669775.3037,21
+93973,1084573.34,847628.753,672534.6921,21
+93974,1082758.923,847025.5297,676074.9304,21
+93975,1079684.23,842819.5252,676788.5307,21
+93976,1076827.933,841014.8011,680140.7483,21
+93977,1076198.53,841122.0345,682458.3302,21
+93978,1072276.936,836986.1826,684269.4674,21
+93979,1071735.89,836746.9319,687265.6574,21
+93980,1069849.47,1100032.011,688816.0923,21
+93981,1066819.633,832557.1567,691702.9466,21
+93982,1065869.53,831320.756,693633.4529,21
+93983,1063608.63,828820.8094,696963.2482,21
+93984,1062147.412,829256.8035,697730.5049,21
+93985,1060789.46,825411.2016,700714.228,21
+93986,1059083.97,826737.7259,703314.6071,21
+93987,1057957.474,823065.8896,704231.3198,21
+93988,1055477.504,1087845.996,707938.1488,21
+93989,1055109.715,820673.3737,708690.453,21
+93990,1052738.92,819794.3926,711435.0793,21
+93991,1052653.122,819005.686,713857.9695,21
+93992,1049348.749,818007.9014,715453.4736,21
+93993,1050767.186,815746.2993,717198.3594,21
+93994,1046370.755,814867.2801,719657.4397,21
+93995,1047801.243,813728.6321,721636.7964,21
+93996,1045276.357,1078777.654,723247.1641,21
+93997,1044309.224,810720.8293,726143.5437,21
+93998,1043386.256,811565.6887,726704.0596,21
+93999,1042086.918,807917.1921,729684.4151,21
+94000,1041279.022,810519.2598,730765.327,21
+94001,1041124.586,805953.9621,733387.6379,21
+94002,1037258.724,807631.3269,734961.4173,21
+94003,1038412.661,805332.1818,736166.2429,21
+94004,1036701.675,1070661.075,738981.8331,21
+94005,1036907.345,802649.8051,739312.7938,21
+94006,1033798.771,804246.2473,742160.0552,21
+94007,1020895.056,801416.9838,744269.7095,21
+94008,1017086.795,802646.6644,744464.199,21
+94009,1013281.135,799871.4375,747884.5551,21
+94010,1013021.905,800566.9561,748271.4288,21
+94011,1007166.085,799715.7414,750590.0683,21
+94012,1008042.17,1063107.302,752085.7395,21
+94013,1002459.177,798066.2073,753469.3378,21
+94014,1003044.756,796198.6339,755171.6357,21
+94015,997877.5013,797057.0053,757364.2745,21
+94016,997595.8013,795825.4435,756941.5803,21
+94017,993566.995,795164.8156,761748.4474,21
+94018,992473.9778,793701.1006,760690.9523,21
+94019,988902.7337,795160.998,763147.4081,21
+94020,988407.8725,1056841.93,764457.8049,21
+94021,1835582.35,1434284.285,741294.4886,21
+94022,1828792.248,1427159.819,740256.3857,21
+94023,1822950.525,1428675.131,739648.9581,21
+94024,1819707.65,1427268.743,711176.7054,21
+94025,1813418.891,1428145.866,708208.8074,21
+94026,1811493.791,1425409.612,706528.9604,21
+94027,1805110.033,1428430.854,704521.4125,21
+94028,1802252.81,1426349.464,703156.855,21
+94029,1795864.005,1425781.408,701868.0176,21
+94030,1792782.573,1427817.543,700236.1009,21
+94031,1786667.337,1425184.757,698498.8997,21
+94032,1781338.882,1427230.455,697538.7939,21
+94033,1776959.812,1425620.085,696206.6886,21
+94034,1773733.095,1426404.232,694081.1991,21
+94035,1767560.482,1426100.162,693636.6384,21
+94036,1762815.827,1426353.04,691312.9318,21
+94037,1760144.484,1426320.277,691353.643,21
+94038,1753634.191,1426648.238,689015.3844,21
+94039,1752284.41,1425485.651,688524.2411,21
+94040,1745420.087,1427501.306,686215.5838,21
+94041,1743043.49,1425585.676,686218.1376,21
+94042,1739220.828,1427052.329,684547.6665,21
+94043,1732639.314,1426490.451,682807.0552,21
+94044,1731588.497,1426095.272,682069.6251,21
+94045,1725449.304,1427770.283,680232.5738,21
+94046,1721235.023,1426733.574,678746.0283,21
+94047,1718328.109,1427097.531,677698.8554,21
+94048,1713962.645,1427462.989,676967.88,21
+94049,1707805.96,1427795.761,674146.5154,21
+94050,1707005.616,1429556.857,674524.3083,21
+94051,1701094.796,1429036.77,672346.6309,21
+94052,1697002.756,1427646.875,671271.5388,21
+94053,1695153.801,1430506.467,670240.2502,21
+94054,1688783.115,1428607.371,669316.1496,21
+94055,1685943.817,1430784.477,668068.3906,21
+94056,1682256.508,1428607.034,666494.1886,21
+94057,1678781.083,1427973.631,666613.8899,21
+94058,1674017.645,1430597.489,664014.4988,21
+94059,1670574.591,1428842.932,663330.0329,21
+94060,1667601.989,1430844.82,662402.6469,21
+94061,1664042.494,1429145.9,660956.3213,21
+94062,1657571.568,1431172.431,659365.6812,21
+94063,1657282.269,1430091.035,658547.1553,21
+94064,1650913.274,1432374.805,657189.4203,21
+94065,1649106.489,1429287.538,656086.1652,21
+94066,1643656.162,1433147.65,654822.6719,21
+94067,1641425.586,1430904.814,653142.5925,21
+94068,1637422.636,1432515.665,653046.4243,21
+94069,1633087.618,1432725.226,650003.7296,21
+94070,1629711.248,1432228,648957.2494,21
+94071,1627140.488,1406789.914,647690.1206,21
+94072,1621414.364,1398909.774,646223.3973,21
+94073,1619140.6,1398386.369,645179.227,21
+94074,1616840.415,1396731.263,642697.3474,21
+94075,1610905.001,1396228.461,642620.5049,21
+94076,1607866.591,1395581.798,639197.3493,21
+94077,1606019.222,1393971.418,639621.3343,21
+94078,1601000.235,1392059.285,636486.6503,21
+94079,1596442.433,1392424.377,635042.5289,21
+94080,1594838.219,1390868.522,634734.7046,21
+94081,1364328.603,1158365.426,463428.8575,21
+94082,1346010.761,1139985.518,454718.8226,21
+94083,1339621.286,1134508.726,450665.4137,21
+94084,1631947.772,1130315.528,446825.0886,21
+94085,1327423.183,1123436.123,443694.3955,21
+94086,1323767.979,1120344.295,439485.6582,21
+94087,1318313.719,1113783.998,436084.0422,21
+94088,1312047.734,1110909.624,432245.316,21
+94089,1308294.306,1105268.559,428980.3109,21
+94090,1302493.486,1103343.868,424299.0578,21
+94091,1298766.061,1096799.116,421776.7222,21
+94092,1292610.388,1093804.805,417426.2717,21
+94093,1287875.577,1089319.677,413824.3958,21
+94094,1283851.119,1086137.957,410447.4135,21
+94095,1278790.625,1082318.269,406538.9871,21
+94096,1274088.746,1077946.678,403113.8633,21
+94097,1270238.397,1074664.098,399366.5981,21
+94098,1264356.696,1070649.855,395866.5333,21
+94099,1261224.691,1068111.809,392767.088,21
+94100,1255695.635,1062796.958,388942.839,21
+94101,1252593.998,1059925.656,387096.2906,21
+94102,1246628.443,1057056.863,384363.3107,21
+94103,1243155.099,1053031.112,382688.3972,21
+94104,1237981.567,1049827.536,380204.9418,21
+94105,1233866.885,1047275.275,377413.4006,21
+94106,1228710.906,1044180.755,375835.7305,21
+94107,1225373.943,1039521.208,373220.3945,21
+94108,1220230.397,1038639.233,370848.1919,21
+94109,1216391.232,1033727.832,368632.6321,21
+94110,1212111.831,1030032.042,366337.91,21
+94111,1206560.976,1028500.606,363593.4574,21
+94112,1203954.283,1021953.961,361704.6039,21
+94113,1198534.266,1020115.643,359808.8806,21
+94114,1195146.1,1017079.309,356974.4754,21
+94115,1486143.279,1013019.946,355176.8972,21
+94116,1186985.496,1009292.383,352201.0811,21
+94117,1182715.521,1007583.827,350612.2781,21
+94118,1177497.763,1003507.803,348245.2508,21
+94119,1174400.934,1000105.445,345839.3271,21
+94120,1170585.927,997797.0186,343816.3727,21
+94121,1165512.268,994486.8875,340810.6735,21
+94122,1161131.906,992024.801,339769.0567,21
+94123,1159037.065,989652.55,336238.2397,21
+94124,1151686.751,985956.885,334836.3249,21
+94125,1150137.92,984792.1873,331924.2644,21
+94126,1145125.545,981348.1477,329683.4948,21
+94127,1140235.924,979445.1845,327240.3915,21
+94128,1136902.046,976706.4026,325113.6408,21
+94129,1133784.948,973838.3998,322951.2033,21
+94130,1129461.445,971203.3138,319712.6789,21
+94131,1125465.492,969460.7109,318168.5502,21
+94132,1123249.908,966287.1498,315671.866,21
+94133,1118197.436,963199.2804,313055.2301,21
+94134,1114386.363,962125.0652,310541.0539,21
+94135,1110765.288,958693.4895,308096.9763,21
+94136,1108258.864,956198.2502,306377.5018,21
+94137,1399719.076,953772.4314,302989.5783,21
+94138,1099734.907,951061.5729,301660.9832,21
+94139,1096159.091,948720.522,298737.6833,21
+94140,1093488.622,944491.7094,296480.6635,21
+94141,1088782.75,941947.8072,293362.3871,21
+94142,1083722.183,941302.3772,289626.06,21
+94143,1079586.693,938873.0813,286617.3793,21
+94144,1076620.512,937491.317,282492.4085,21
+94145,1070862.707,935721.9495,279650.5249,21
+94146,1067654.831,934908.5554,275522.4186,21
+94147,1063816.418,933409.4729,272367.2605,21
+94148,1059400.783,931823.0524,268744.7987,21
+94149,1055355.192,930575.94,265637.7968,21
+94150,1050117.465,929301.3525,262540.6243,21
+94151,1047656.521,928100.7347,259775.9106,21
+94152,1042245.045,925962.639,256666.5028,21
+94153,1039120.754,925233.5394,253531.0449,21
+94154,1033981.137,924219.5056,250526.4477,21
+94155,1030487.463,922415.5029,247594.4151,21
+94156,1026969.203,920829.5858,244461.5377,21
+94157,1021628.929,919878.5867,241105.8741,21
+94158,1018635.162,918621.5398,238496.3261,21
+94159,1307801.652,916713.5924,235164.8606,21
+94160,1010564.728,915836.6104,232490.5321,21
+94161,1005216.387,914900.4319,229387.079,21
+94162,1001579.789,912849.7305,226685.1295,21
+94163,997306.4734,911872.3781,223462.3896,21
+94164,992710.0274,910116.1299,220751.5504,21
+94165,989848.979,909232.8466,217713.0648,21
+94166,985589.0263,908000.0898,214793.1081,21
+94167,980726.5686,905998.2857,211608.7322,21
+94168,977511.0281,905523.859,208775.2209,21
+94169,973041.792,903328.283,206007.0765,21
+94170,969156.9135,902758.6858,202868.5596,21
+94171,966282.1067,900969.9364,198124.0409,21
+94172,961144.5574,900320.4336,195205.3093,21
+94173,957909.8005,899445.2063,192053.6486,21
+94174,953486.3281,898229.1829,189117.2939,21
+94175,950241.9671,897131.287,186189.6059,21
+94176,945958.1586,896656.3431,183143.2477,21
+94177,942257.938,895322.3807,180181.9446,21
+94178,939288.7359,894469.7371,177332.2482,21
+94179,933899.1156,893263.0688,174100.2302,21
+94180,931545.2124,892839.1574,171251.2335,21
+94181,1221370.372,891380.5567,168596.7856,21
+94182,923771.8408,890640.661,167216.066,21
+94183,919198.9612,889713.9444,165462.6347,21
+94184,915640.3548,888743.4344,163921.2841,21
+94185,912422.4043,887885.6437,162282.7017,21
+94186,908107.2193,886601.6013,160586.6245,21
+94187,905063.252,886048.6923,159214.4711,21
+94188,900890.9909,884978.6797,157419.0553,21
+94189,897489.0924,884413.9962,155811.5603,21
+94190,893056.4673,882666.3341,154547.542,21
+94191,890564.0871,882488.3821,152555.2109,21
+94192,885443.3466,881316.4661,151541.6846,21
+94193,883149.2427,880192.5659,149782.7473,21
+94194,878992.3835,879890.5012,148185.0746,21
+94195,874342.628,877924.4351,147095.5426,21
+94196,871551.2036,878105.4207,145214.6774,21
+94197,868466.1025,876260.8941,143866.1186,21
+94198,863205.2588,876167.6384,142587.7146,21
+94199,860981.8998,874479.5608,141065.4261,21
+94200,856098.9606,874322.8347,139791.7721,21
+94201,848069.9411,879432.9618,136977.1125,21
+94202,846097.1926,879201.7413,136034.3185,21
+94203,842748.212,879915.1151,134784.7426,21
+94204,840896.92,879386.6517,133485.064,21
+94205,840076.0101,879263.6003,131903.311,21
+94206,837811.373,879267.8979,131308.0053,21
+94207,835243.3511,878405.6459,129571.8742,21
+94208,840216.1513,879268.2113,128759.09,21
+94209,836082.1262,878301.7173,127571.3352,21
+94210,834381.8069,878287.0681,126176.8421,21
+94211,834968.7266,878411.2407,125169.966,21
+94212,831729.4519,877985.7407,124285.6608,21
+94213,832105.2518,878354.9787,123042.0274,21
+94214,830780.7062,876806.26,122318.794,21
+94215,828978.1973,877964.7302,121023.9488,21
+94216,827713.9449,877246.1601,120224.2519,21
+94217,826447.487,876886.5054,119176.0747,21
+94218,825908.3414,876855.5211,118137.4303,21
+94219,824271.9079,876398.471,116959.7244,21
+94220,823059.2529,876859.9739,116259.5716,21
+94221,822189.1344,875731.8412,115104.0106,21
+94222,820956.7466,876244.1437,114192.0052,21
+94223,819697.4251,875291.9243,113262.288,21
+94224,818816.8428,875833.7254,112332.4257,21
+94225,817711.0275,875012.4462,111402.0167,21
+94226,816405.5453,874906.0016,110251.6395,21
+94227,816048.313,875119.5179,109507.298,21
+94228,814417.3404,874483.9475,108608.3801,21
+94229,814008.5606,875354.8263,107620.159,21
+94230,812876.4458,875315.5327,106802.4495,21
+94231,812372.0459,874889.4842,105538.7785,21
+94232,811614.1361,875363.6331,104587.1856,21
+94233,811461.9538,874398.622,103544.7026,21
+94234,810611.6233,875035.1965,102235.0994,21
+94235,810495.1968,874406.8486,101354.0057,21
+94236,809972.3992,873520.2135,100447.7263,21
+94237,809110.6268,873527.816,99138.67124,21
+94238,809135.3354,872596.8961,98934.24264,21
+94239,808441.9743,873519.881,97758.25581,21
+94240,807918.6816,872921.6611,96730.55534,21
+94241,807325.5356,872518.0738,95978.00183,21
+94242,807217.3733,872944.7258,94686.84835,21
+94243,806491.0733,872127.5187,93972.86806,21
+94244,805992.2901,872403.0588,92648.41445,21
+94245,805585.7999,872001.432,91960.66251,21
+94246,805104.2133,871979.6177,91455.62959,21
+94247,804604.7991,871935.6138,90525.21179,21
+94248,804053.0723,871797.7184,89497.48072,21
+94249,803522.651,871610.3118,88792.16729,21
+94250,803104.8958,871517.7976,87778.94588,21
+94251,802421.1194,871431.6901,86975.06094,21
+94252,801853.3183,871459.2883,86137.21497,21
+94253,801482.1733,871135.2708,85135.17976,21
+94254,800722.7,871095.9259,84436.04876,21
+94255,800693.4497,870844.6732,83463.15613,21
+94256,800133.7809,870702.6685,82621.49249,21
+94257,799654.4078,870773.7072,81894.90783,21
+94258,799070.2534,870721.9659,80863.92,21
+94259,798144.1932,870263.4282,80108.57834,21
+94260,798173.5769,871473.1998,25102.14622,21
+94261,791592.7298,865089.5351,25451.46608,21
+94262,790600.9212,864601.683,25180.81456,21
+94263,788575.1442,863466.8587,24378.41069,21
+94264,787664.8612,862660.2288,24004.0972,21
+94265,785362.3952,862289.745,22900.77979,21
+94266,784369.5312,861375.1332,22716.5911,21
+94267,782901.114,860437.5252,21780.72322,21
+94268,781405.4079,859782.6349,21340.74209,21
+94269,779920.6596,859156.371,20469.61115,21
+94270,778562.5572,858210.3631,20102.74213,21
+94271,777060.6968,857781.164,19285.36475,21
+94272,775124.4642,856454.4335,18784.45448,21
+94273,774196.2987,856339.2146,18012.56204,21
+94274,771918.9879,855318.0152,17460.87363,21
+94275,770872.3833,854114.4147,16681.27228,21
+94276,768949.6224,853990.1999,16083.65473,21
+94277,767272.3445,852983.5126,15659.65164,21
+94278,766010.6043,851990.814,14808.2576,21
+94279,763867.8664,851584.3437,14176.7295,21
+94280,762288.7032,850576.7859,13736.49456,21
+94281,760664.4941,849584.5297,12999.34516,21
+94282,758852.3202,849772.1738,12561.55526,21
+94283,757182.5049,847792.3112,11850.19155,21
+94284,755082.8099,847970.9487,11529.07873,21
+94285,753603.3445,846839.914,11236.55677,21
+94286,751645.9643,846021.3605,11020.72006,21
+94287,749873.0616,845185.8876,10595.00429,21
+94288,747779.4036,844670.4722,10534.45071,21
+94289,746388.1142,843878.6884,9945.901782,21
+94290,744149.763,842667.959,9775.389793,21
+94291,742115.0142,842497.0601,9291.300172,21
+94292,740964.3554,841265.2317,9269.219813,21
+94293,738427.1195,839948.7324,8944.450362,21
+94294,736702.8159,839683.9232,8771.43448,21
+94295,734684.5612,838072.354,8321.152099,21
+94296,732975.891,837638.8218,8246.154246,21
+94297,729219.5503,836017.9692,7955.117533,21
+94298,722260.8959,835770.9573,7487.539548,21
+94299,722612.1388,834353.866,7450.053996,21
+94300,719223.4945,833340.6023,7092.530525,21
+94301,716675.7398,832560.9679,6825.116304,21
+94302,714008.8406,831462.8247,6591.013365,21
+94303,711657.4886,830360.5511,6284.367029,21
+94304,708696.2367,829724.2062,6099.904104,21
+94305,706255.3705,828318.5594,5763.721129,21
+94306,704135.3332,827460.2241,5592.16666,21
+94307,701004.1154,826472.5546,5252.88382,21
+94308,698733.2482,825353.4996,4932.747496,21
+94309,696082.6642,824512.1689,4855.398079,21
+94310,693758.658,823207.5757,4587.557619,21
+94311,691254.9729,822532.2686,4537.081765,21
+94312,688574.5215,821352.3098,4184.900834,21
+94313,686445.6221,820088.1823,4011.670766,21
+94314,683422.6155,819591.1003,3808.201411,21
+94315,681548.8008,817891.2568,3494.500472,21
+94316,679193.1519,817430.0754,3135.044599,21
+94317,676573.7855,816106.589,3082.824444,21
+94318,674539.7601,814974.9455,2730.512056,21
+94319,671921.1565,814407.2128,2564.264424,21
+94320,669722.7815,812899.9537,2192.345089,21
+94321,692631.3883,841983.4606,8348.570496,21
+94322,696314.9553,842191.4606,8487.266769,21
+94323,692315.0564,840523.5034,8312.386009,21
+94324,691870.5434,840294.0317,8062.106878,21
+94325,689599.6074,839221.4807,8261.706389,21
+94326,689009.2218,838141.4352,7860.671711,21
+94327,687242.0415,837519.8186,7973.596033,21
+94328,685495.361,836664.4347,7670.782427,21
+94329,684808.522,835611.5108,7659.489887,21
+94330,682988.7761,834713.3325,7465.804136,21
+94331,681756.0026,834467.7774,7481.204378,21
+94332,680314.8265,832673.2682,7276.603019,21
+94333,679130.991,832834.3869,7162.537327,21
+94334,677734.0837,830835.3429,6969.424036,21
+94335,676611.9772,830837.8418,7073.034575,21
+94336,678918.5892,829323.5182,6689.735065,21
+94337,679552.8865,828741.1001,6892.869577,21
+94338,675174.4421,827630.8148,6765.609902,21
+94339,675365.6041,826987.7031,6583.749019,21
+94340,673796.3386,825561.5137,6445.135295,21
+94341,671899.2119,825253.1642,6518.202244,21
+94342,670177.6568,823761.8461,6120.953981,21
+94343,668765.7676,823316.4681,6209.103343,21
+94344,667351.4285,821773.5769,6040.229337,21
+94345,665999.2549,821242.3194,5911.056657,21
+94346,662688.127,820018.616,5831.165486,21
+94347,662890.2563,819065.4724,5701.57199,21
+94348,660147.5174,818432.7763,5516.43309,21
+94349,658853.4163,817082.9371,5504.081303,21
+94350,656670.72,816323.3041,5464.021761,21
+94351,655375.0236,815692.2373,5174.493594,21
+94352,652974.7682,814758.9797,5119.370737,21
+94353,651456.3945,814176.8172,5108.588988,21
+94354,650000.3544,813783.1815,4947.586645,21
+94355,647453.2338,812931.3182,4774.777889,21
+94356,647332.4337,812467.4693,4894.273776,21
+94357,644352.223,812096.6759,4588.597765,21
+94358,642952.4722,811369.3387,4560.854816,21
+94359,641299.7442,810475.1853,4533.057922,21
+94360,639856.9967,810777.7315,4358.791756,21
+94361,638418.5202,809432.3911,4345.810838,21
+94362,637457.3582,809066.6703,4155.833815,21
+94363,635377.3392,808297.7467,4156.131302,21
+94364,634790.1162,808488.0858,3951.944568,21
+94365,632659.3286,807245.3464,3967.257915,21
+94366,631578.5015,807199.6044,3775.735051,21
+94367,630478.1518,806278.7797,3747.324642,21
+94368,628834.2943,806145.4052,3720.324905,21
+94369,628120.9223,805563.8728,3541.419959,21
+94370,626108.0972,805071.6803,3392.127572,21
+94371,625193.6368,804042.7142,3320.577151,21
+94372,624335.1311,804413.6372,3018.214774,21
+94373,622879.0465,803123.9459,2989.201021,21
+94374,621638.0138,803371.2772,2808.315254,21
+94375,620606.4873,802163.1703,2779.071061,21
+94376,619850.6761,802144.954,2471.922886,21
+94377,618218.0913,801967.8979,2567.495327,21
+94378,617549.9641,800511.3209,2398.561091,21
+94379,616528.6481,800707.3049,2087.394286,21
+94380,615109.5188,800517.977,2198.740353,21
+94381,590797.4852,769246.6033,542.0027057,21
+94382,590131.8817,768524.242,525.5272687,21
+94383,588933.5364,768112.8803,492.4446144,21
+94384,588269.9592,767572.3193,475.8397342,21
+94385,587873.3865,767385.5336,442.4889309,21
+94386,586711.0238,766253.5396,425.7440355,21
+94387,586707.398,766725.7417,408.9496586,21
+94388,585363.4607,765375.4309,375.2035372,21
+94389,585127.3506,765244.7065,358.2508843,21
+94390,584423.6224,764568.6404,341.2416083,21
+94391,583689.2647,764170.0356,307.0423639,21
+94392,583070.8298,763730.4512,289.8490282,21
+94393,582528.0015,763146.508,255.2565846,21
+94394,581479.8187,762492.7173,255.2577036,21
+94395,581493.3969,762624.0818,202.7991566,21
+94396,580206.1442,761418.8539,202.7998623,21
+94397,580087.8209,761753.4125,167.3873082,21
+94398,578890.7318,760625.7821,131.5514136,21
+94399,579003.0119,760565.2148,131.55171,21
+94400,577711.3993,760142.7277,95.19525397,21
+94401,577402.8904,759567.6497,58.14744819,21
+94402,576477.6025,759079.9421,58.14750584,21
+94403,576205.6829,758789.4701,20.00514782,21
+94404,575066.0954,758869.0092,0,21
+94405,574879.3601,757699.2869,0,21
+94406,573822.5167,757941.582,0,21
+94407,573500.979,757108.2471,0,21
+94408,572126.5149,756745.9154,0,21
+94409,572241.5621,756607.5771,0,21
+94410,570861.7601,757179.166,0,21
+94411,570631.4463,756316.7782,0,21
+94412,569199.09,755933.0676,0,21
+94413,569064.5568,755999.4761,0,21
+94414,568364.6021,755667.4743,0,21
+94415,567423.2484,755045.379,0,21
+94416,566320.3109,754388.8845,0,21
+94417,566110.1279,754756.6113,0,21
+94418,564924.2297,753957.5268,0,21
+94419,564139.2275,753483.3475,0,21
+94420,563608.1855,753570.0716,0,21
+94421,562310.4464,753041.8779,0,21
+94422,561325.0265,752567.9953,0,21
+94423,561272.9805,752344.108,0,21
+94424,559408.7774,751908.1784,0,21
+94425,559314.7525,751706.3733,0,21
+94426,557749.9094,751182.6432,0,21
+94427,557445.9663,751170.0109,0,21
+94428,555996.5802,750409.9094,0,21
+94429,555323.7861,750681.8684,0,21
+94430,554172.979,749913.7584,0,21
+94431,553384.9182,749682.272,0,21
+94432,552206.6225,749516.6113,0,21
+94433,551285.7208,748791.6954,0,21
+94434,550151.0825,748981.9919,0,21
+94435,549186.9949,748316.6071,0,21
+94436,547936.0223,748366.8938,0,21
+94437,547003.776,747423.8437,0,21
+94438,546127.1689,747531.0816,0,21
+94439,544771.8925,747545.1976,0,21
+94440,543508.3855,746754.3756,0,21
+94441,547229.3859,751409.9315,0,21
+94442,545774.4486,751639.3125,0,21
+94443,543939.1288,751600.8884,0,21
+94444,542668.6949,751949.3143,0,21
+94445,541241.2491,752247.1281,0,21
+94446,539291.2979,751822.7742,0,21
+94447,538111.9428,752080.9713,0,21
+94448,536334.8735,752195.1718,0,21
+94449,534703.1932,752275.4045,0,21
+94450,533169.3831,752688.7423,0,21
+94451,531484.1636,752158.0571,0,21
+94452,530164.1793,752601.5873,0,21
+94453,528418.5242,752599.5258,0,21
+94454,526518.3678,752685.8399,0,21
+94455,525403.5661,752957.6047,0,21
+94456,523385.6851,753043.6825,0,21
+94457,522118.0113,752883.389,0,21
+94458,520214.1462,753013.2453,0,21
+94459,518814.0075,753381.8607,0,21
+94460,517063.9417,753178.4095,0,21
+94461,515644.5464,753488.5879,0,21
+94462,514072.3405,753586.7692,0,21
+94463,512178.8651,753766.9525,0,21
+94464,510896.3351,753628.9535,0,21
+94465,509043.86,754046.4259,0,21
+94466,507696.0349,753917.8758,0,21
+94467,506148.0456,754690.1164,0,21
+94468,504341.2674,753812.5345,0,21
+94469,503091.0227,754659.3541,0,21
+94470,501298.8566,754556.7772,0,21
+94471,499973.144,754707.8711,0,21
+94472,498538.2337,754554.7574,0,21
+94473,497152.7861,755193.0106,0,21
+94474,495440.9755,754877.519,0,21
+94475,494620.3986,754972.581,0,21
+94476,492722.1253,755609.3537,0,21
+94477,491843.84,754927.1206,0,21
+94478,490170.1921,755735.1248,0,21
+94479,489609.6152,755281.7996,0,21
+94480,489534.785,755660.1397,0,21
+94481,489239.3545,755564.8069,0,21
+94482,489012.8417,756076.2445,0,21
+94483,488716.8238,755948.1434,0,21
+94484,488718.2116,755825.7959,0,21
+94485,488271.1244,756060.3366,0,21
+94486,488463.1182,756353.7783,0,21
+94487,487889.7878,756122.8875,0,21
+94488,487867.1118,756602.646,0,21
+94489,487750.9494,756079.9338,0,21
+94490,487649.8817,757085.2244,0,21
+94491,487588.1928,756694.6068,0,21
+94492,487022.227,756490.9516,0,21
+94493,487478.6346,757479.2065,0,21
+94494,486861.1647,756309.6061,0,21
+94495,487130.2424,757702.0858,0,21
+94496,486744.7127,756949.7921,0,21
+94497,486784.4907,757537.2597,0,21
+94498,486642.9219,757154.3933,0,21
+94499,486536.562,757773.9052,0,21
+94500,486336.8455,757368.3714,0,21
+94501,481706.7843,751842.3985,0,21
+94502,482000.6648,751627.001,0,21
+94503,482103.2291,751440.145,0,21
+94504,482923.2732,750720.0508,0,21
+94505,482790.305,750675.7904,0,21
+94506,483611.3544,750434.7363,0,21
+94507,483973.9214,749949.1526,0,21
+94508,484369.6648,749645.1711,0,21
+94509,484735.9263,749675.5591,0,21
+94510,485266.1587,748914.0397,0,21
+94511,485681.2151,749069.9339,0,21
+94512,486221.7081,748217.1809,0,21
+94513,486654.5593,748416.4778,0,21
+94514,486725.7976,748211.9239,0,21
+94515,487489.6393,747629.4284,0,21
+94516,487491.2993,747422.9091,0,21
+94517,488300.7243,746865.7658,0,21
+94518,488373.4267,746844.0102,0,21
+94519,489316.2321,746708.1762,0,21
+94520,489430.7349,746133.2831,0,21
+94521,489872.8944,745701.5997,0,21
+94522,490493.1269,745804.8425,0,21
+94523,490985.1567,745438.1981,0,21
+94524,491346.8915,744907.6806,0,21
+94525,491910.2132,744754.9643,0,21
+94526,492479.3306,744592.1164,0,21
+94527,492800.6744,744146.552,0,21
+94528,493492.4015,743884.847,0,21
+94529,493939.35,743993.7499,0,21
+94530,494395.1936,743009.924,0,21
+94531,495123.1563,743253.9386,0,21
+94532,495408.1318,742902.7968,0,21
+94533,496275.7542,742108.5544,0,21
+94534,496863.8372,742585.2566,0,21
+94535,497298.354,741935.2748,0,21
+94536,497803.2754,741548.1943,0,21
+94537,498872.7228,741700.0022,0,21
+94538,498658.7793,741017.9082,0,21
+94539,499844.0046,741041.0809,0,21
+94540,499937.8436,740349.8307,0,21
+94541,500599.1038,740492.9193,0,21
+94542,501091.0136,740306.5737,0,21
+94543,501255.7244,739763.6724,0,21
+94544,501088.6833,739381.1541,0,21
+94545,500519.9845,739655.621,0,21
+94546,500425.7764,738693.5984,0,21
+94547,500186.5773,738896.6709,0,21
+94548,499829.6988,738625.9332,0,21
+94549,499413.3051,738265.8152,0,21
+94550,499290.6532,737881.2825,0,21
+94551,498971.8435,738160.3978,0,21
+94552,498524.8266,737048.0868,0,21
+94553,498472.8266,737381.8838,0,21
+94554,498165.8262,737044.0771,0,21
+94555,497844.3722,736870.4549,0,21
+94556,497742.4253,736316.1067,0,21
+94557,497174.1643,736155.5241,0,21
+94558,497259.2658,735981.7792,0,21
+94559,496622.1045,735585.8012,0,21
+94560,496987.2503,735774.8354,0,21
+94561,496412.7391,735820.3428,0,21
+94562,497479.2117,736599.2165,0,21
+94563,497509.5486,737225.5383,0,21
+94564,497711.3306,737312.9054,0,21
+94565,498417.5111,738697.0342,0,21
+94566,498359.6027,738147.0563,0,21
+94567,498923.3874,739549.9321,0,21
+94568,498991.1965,739989.9151,0,21
+94569,499390.8677,740378.5179,0,21
+94570,499911.1263,740760.5179,0,21
+94571,500018.6472,741232.9625,0,21
+94572,500533.1689,742507.499,0,21
+94573,500516.3774,742562.0864,0,21
+94574,501182.4866,743085.1423,0,21
+94575,501426.1724,743314.872,0,21
+94576,501639.8932,745085.9406,0,21
+94577,501786.4179,744146.9951,0,21
+94578,502565.9068,745484.4476,0,21
+94579,502565.7326,746235.6821,0,21
+94580,503028.14,746192.606,0,21
+94581,503102.5731,747452.7647,0,21
+94582,503761.0396,747181.0271,0,21
+94583,503723.1028,748534.2714,0,21
+94584,504552.6677,748652.0208,0,21
+94585,504379.2889,749439.2914,0,21
+94586,504892.2948,749777.4792,0,21
+94587,505148.8471,750318.9418,0,21
+94588,505831.4802,751043.4971,0,21
+94589,505640.0906,751521.8257,0,21
+94590,506323.5389,752170.3629,0,21
+94591,506516.3574,752532.8523,0,21
+94592,506827.8336,753366.9149,0,21
+94593,507618.5897,753599.7856,0,21
+94594,507332.6503,754177.5655,0,21
+94595,508213.6993,754820.7573,0,21
+94596,508461.5075,755713.1028,0,21
+94597,508787.6283,755756.1622,0,21
+94598,509290.4997,756310.4104,0,21
+94599,509369.5907,757269.4199,0,21
+94600,510012.1033,757699.6738,0,21
+94601,510383.3301,757649.6776,0,21
+94602,510760.4547,758970.4324,0,21
+94603,511112.802,758909.07,0,21
+94604,511498.6809,759949.7017,0,21
+94605,512137.2294,760322.6973,0,21
+94606,512238.911,760922.3379,0,21
+94607,512697.0345,761366.7823,0,21
+94608,513224.4835,761885.8453,0,21
+94609,513567.6027,762377.9826,0,21
+94610,514062.7625,763306.4468,0,21
+94611,514388.9304,763495.9601,0,21
+94612,514665.7636,764302.9206,0,21
+94613,515184.6178,764413.474,0,21
+94614,515820.7819,765279.6154,0,21
+94615,516016.2867,765874.0967,0,21
+94616,516418.2032,766361.7539,0,21
+94617,517019.6893,766874.0382,0,21
+94618,517197.6453,767555.2025,0,21
+94619,517999.7399,767682.4929,0,21
+94620,517952.4615,768757.0642,0,21
+94621,548501.9505,825462.9978,0,21
+94622,550382.2622,827923.2251,0,21
+94623,552334.2023,843946.5324,0,21
+94624,553242.0493,841211.9748,0,21
+94625,555109.0294,841878.397,0,21
+94626,556352.6554,843945.1044,0,21
+94627,558070.9042,846237.0043,0,21
+94628,559587.0175,846790.2727,0,21
+94629,561021.8239,848691.6565,0,21
+94630,562489.9604,849789.1568,0,21
+94631,564179.356,851023.86,0,21
+94632,565495.2752,852410.6258,0,21
+94633,567311.6972,854059.5668,0,21
+94634,568477.4745,854279.0639,0,21
+94635,570136.171,856692.5313,0,21
+94636,571862.8841,857027.0313,0,21
+94637,573283.312,858330.6833,0,21
+94638,574588.3227,858242.774,0,21
+94639,576389.8043,860610.2094,0,21
+94640,577524.4996,861238.7283,0,21
+94641,578994.249,862529.4485,0,21
+94642,580533.9332,863688.1246,0,21
+94643,581867.74,864309.5469,0,21
+94644,583268.1116,865613.5085,0,21
+94645,584645.3348,866903.6292,0,21
+94646,585886.4418,867420.4311,0,21
+94647,587517.6531,868893.9996,0,21
+94648,605950.1184,869731.6515,0,21
+94649,598846.9372,871100.8213,0,21
+94650,603929.1748,871692.2386,0,21
+94651,606187.3956,872324.8578,0,21
+94652,607596.0432,873954.7239,0,21
+94653,611631.5366,874109.4209,0,21
+94654,611561.8519,875788.3324,0,21
+94655,614738.8089,876088.387,0,21
+94656,616409.9506,877092.5498,0,21
+94657,618032.7616,877657.5528,0,21
+94658,621248.4186,878847.2999,0,21
+94659,621717.162,879158.9227,0,21
+94660,624252.4462,880517.6987,0,21
+94661,626844.5366,881624.0474,0,21
+94662,635076.2709,881305.4216,0,21
+94663,632751.798,882845.2434,0,21
+94664,637945.1731,883888.5484,0,21
+94665,640008.6049,892085.7593,0,21
+94666,642457.6338,890947.5297,0,21
+94667,644806.5593,892563.2915,0,21
+94668,647445.2136,893745.4138,0,21
+94669,649457.8882,896752.2236,0,21
+94670,652372.0759,896210.7805,0,21
+94671,654446.3285,898037.1703,0,21
+94672,657659.5471,900625.5806,0,21
+94673,658375.2146,900438.6322,0,21
+94674,662845.3909,901946.0901,0,21
+94675,662825.9521,904655.0533,0,21
+94676,667642.2682,905370.3054,0,21
+94677,668542.0929,906516.034,0,21
+94678,671295.4743,908540.5954,0,21
+94679,672723.0986,908515.6008,0,21
+94680,676382.1699,910802.9729,0,21
+94681,732143.198,972086.3053,0,21
+94682,745406.5785,978307.2227,0,21
+94683,747803.4515,980053.6319,0,21
+94684,751925.5918,981540.6171,0,21
+94685,756254.6058,985882.634,0,21
+94686,762302.8559,985360.7827,159.0891427,21
+94687,768989.1471,989565.0118,4964.857368,21
+94688,773286.7315,989655.0401,2617.835226,21
+94689,787006.5806,991864.5198,3850.568932,21
+94690,798338.6742,994809.1102,4231.315165,21
+94691,797277.3874,995327.9023,4449.872587,21
+94692,804365.038,997920.199,4861.164901,21
+94693,809891.9435,998636.6781,5156.622884,21
+94694,814302.0877,1001157.473,5597.10361,21
+94695,818974.2122,1002573.188,5743.666269,21
+94696,824580.7928,1003694.864,6052.026207,21
+94697,827823.2323,1006800.094,6453.834714,21
+94698,832202.5273,1006702.771,6615.370867,21
+94699,838676.4861,1008996.711,7047.170465,21
+94700,839604.4107,1010595.378,7191.164532,21
+94701,847048.9259,1012188.098,7603.643454,21
+94702,850054.1717,1013144.489,7904.916683,21
+94703,854103.6295,1015309.35,8047.617293,21
+94704,858792.958,1016318.623,8456.113722,21
+94705,862196.521,1018205.096,8738.556958,21
+94706,866072.3341,1019424.87,9255.628499,21
+94707,870449.5057,1020346.048,9615.04202,21
+94708,874324.1172,1022085.111,9927.035191,21
+94709,877618.0612,1023739.963,10133.20958,21
+94710,883332.1813,1025170.037,10590.99154,21
+94711,884539.1727,1026298.644,10786.82034,21
+94712,890672.2125,1027528.622,12247.68686,21
+94713,893093.1629,1028383.188,14539.46624,21
+94714,897458.015,1031204.678,13868.11601,21
+94715,900299.4409,1031661.16,16408.57942,21
+94716,905105.9592,1032522.243,17167.56049,21
+94717,908717.3456,1034182.378,17643.3949,21
+94718,911044.8114,1035991.822,18395.92679,21
+94719,915943.0716,1036998.819,18898.27529,21
+94720,918631.1988,1037740.067,19643.28177,21
+94721,922482.7524,1038835.975,20097.48841,21
+94722,926016.029,1041587.966,20873.96092,21
+94723,928962.1616,1041032.232,21122.32282,21
+94724,933321.0877,1042859.592,21952.95679,21
+94725,936923.7884,1044305.23,22227.81672,21
+94726,939268.3378,1046031.707,22940.62806,21
+94727,943521.771,1046097.911,23229.72207,21
+94728,947518.0958,1048554.902,24030.47099,21
+94729,950273.8919,1048815.678,24213.67389,21
+94730,953818.9138,1049763.324,25008.13135,21
+94731,957161.1736,1052668.572,25312.16572,21
+94732,960709.8348,1051541.397,25877.3824,21
+94733,963711.7833,1054356.584,26290.76072,21
+94734,966789.3163,1054747.125,26954.597,21
+94735,970853.1853,1056299.053,27053.50568,21
+94736,973589.6217,1057367.242,27948.86003,21
+94737,976310.6192,1057788.495,28116.16991,21
+94738,981547.8087,1060048.097,28694.76068,21
+94739,982035.2003,1060143.832,29103.80591,21
+94740,986878.7056,1061772.755,29457.64778,21
+94741,989006.4494,1061960.962,30137.68788,21
+94742,991562.3983,1061895.672,30359.43583,21
+94743,994132.7757,1063606.648,30884.50257,21
+94744,995320.092,1063111.732,31094.69837,21
+94745,998243.1676,1064769.533,31645.5471,21
+94746,999520.112,1064502.884,31939.35461,21
+94747,1002176.16,1065379.648,32625.00882,21
+94748,1003793.245,1066363.453,32674.1554,21
+94749,1004961.482,1066346.435,33149.36539,21
+94750,1008446.247,1066247.008,33653.2126,21
+94751,1009604.898,1068573.158,34110.7449,21
+94752,1011254.36,1067516.383,34157.92303,21
+94753,1014093.504,1068587.711,34682.12572,21
+94754,1015594.159,1069515.245,35130.71042,21
+94755,1016961.772,1069278.667,35390.48422,21
+94756,1019815.968,1070200.548,35891.13533,21
+94757,1020921.845,1071172.978,36122.1579,21
+94758,1023186.434,1070808.967,36434.89992,21
+94759,1024255.527,1071833.257,37088.49731,21
+94760,1028183.244,1072568.229,37043.32703,21
+94761,1027318.007,1072326.514,37635.97208,21
+94762,1030928.085,1073404.943,37928.12137,21
+94763,1032457.859,1073166.78,38365.54794,21
+94764,1033457.142,1074332.97,38626.3192,21
+94765,1036054.959,1073821.584,39138.36481,21
+94766,1037609.423,1076026.651,39365.38346,21
+94767,1039888.438,1074854.845,39971.0208,21
+94768,1040491.524,1075522.451,40368.9833,21
+94769,1043373.858,1077002.733,40534.56708,21
+94770,1043837.185,1077108.304,41066.49278,21
+94771,1046316.521,1076173.45,41328.35149,21
+94772,1047720.851,1078241.882,41836.93679,21
+94773,1049568.077,1077931.255,42193.3236,21
+94774,1052665.561,1079086.288,42498.18392,21
+94775,1051929.236,1078580.972,42775.79766,21
+94776,1054986.026,1080593.692,43294.78227,21
+94777,1056297.672,1078284.631,43566.5919,21
+94778,1057921.932,1080852.256,43934.48322,21
+94779,1059413.283,1081134.481,44425.63485,21
+94780,1061126.858,1080982.671,44495.59752,21
+94781,1063944.352,1081371.449,45049.19523,21
+94782,1063684.531,1082240.479,45273.63515,21
+94783,1066107.596,1081817.148,45689.86533,21
+94784,1068751.307,1083288.431,46085.09682,21
+94785,1068105.184,1082952.96,46275.79503,21
+94786,1071547.249,1083214.564,46718.59695,21
+94787,1072213.095,1083946.96,47142.73409,21
+94788,1074570.721,1084264.466,47123.40001,21
+94789,1075302.511,1085261.67,48052.50797,21
+94790,1077681.416,1084463.69,47955.07637,21
+94791,1078997.329,1085763.601,48248.01717,21
+94792,1079109.513,1085787.301,48752.55731,21
+94793,1083341.916,1086308.836,49058.56625,21
+94794,1082649.527,1086713.436,49315.21859,21
+94795,1085681.865,1086772.531,49709.54995,21
+94796,1085170.258,1087467.332,49877.75659,21
+94797,1088311.208,1087241.105,50508.92522,21
+94798,1090044.056,1088548.363,50505.98555,21
+94799,1090563.935,1087755.526,50875.87158,21
+94800,1093010.541,1089786.188,51527.61248,21
+94801,1100165.827,1096535.319,53174.67027,21
+94802,1103490.246,1100682.119,54378.44099,21
+94803,1104502.656,1100651.96,54586.25669,21
+94804,1104676.792,1102765.136,54848.64773,21
+94805,1105553.821,1102233.497,58525.58732,21
+94806,1107064.679,1105273.749,57272.30671,21
+94807,1107414.345,1104854.49,58611.76718,21
+94808,1108565.949,1107156.374,59215.26487,21
+94809,1108130.069,1107649.611,59916.9105,21
+94810,1111051.092,1109457.115,60838.07724,21
+94811,1109527.044,1110832.754,61450.54597,21
+94812,1111450.447,1112701.283,62061.52927,21
+94813,1112142.942,1111715.181,62976.10349,21
+94814,1112485.435,1114527.033,63367.62424,21
+94815,1112966.267,1115266.355,64152.26342,21
+94816,1113985.517,1115461.155,64724.72195,21
+94817,1114780.477,1116044.761,65616.08531,21
+94818,1114753.178,1118693.574,65998.04418,21
+94819,1116324.564,1118623.157,66849.04851,21
+94820,1116245.732,1119703.868,67281.90757,21
+94821,1117484.507,1120281.934,68149.67511,21
+94822,1117287.979,1121632.012,68645.97263,21
+94823,1119246.736,1122629.157,69613.13096,21
+94824,1117968.762,1124155.336,69713.29408,21
+94825,1120142.087,1123764.565,70810.4384,21
+94826,1120795.769,1126262.515,71227.12541,21
+94827,1120032.429,1125126.678,71672.83852,21
+94828,1121447.691,1128381.692,72566.67368,21
+94829,1121484.483,1127684.411,73176.56242,21
+94830,1122722.22,1128832.386,73844.11883,21
+94831,1122640.775,1128609.31,74177.20061,21
+94832,1124197.395,1130085.938,75276.64813,21
+94833,1123230.729,1130414.608,75102.48153,21
+94834,1124683.109,1131142.33,76501.30688,21
+94835,1125718.094,1132340.332,76856.66349,21
+94836,1124544.342,1132957.685,77083.28782,21
+94837,1127385.965,1134352.119,78305.82787,21
+94838,1125778.441,1134491.887,78272.04277,21
+94839,1126866.594,1136377.579,79287.17034,21
+94840,1128743.086,1135744.329,79789.52652,21
+94841,1126802.123,1138567.048,80337.07004,21
+94842,1129420.407,1137338.352,80863.22042,21
+94843,1128813.792,1139463.171,81806.16675,21
+94844,1129558.807,1140057.881,81968.19472,21
+94845,1129915.532,1141213.378,82748.02811,21
+94846,1130510.401,1141161.262,83100.63636,21
+94847,1130687.833,1142563.427,83990.06958,21
+94848,1131864.213,1144277.423,84116.32691,21
+94849,1130791.905,1143578.196,85315.53262,21
+94850,1133479.641,1145307.789,85507.63642,21
+94851,1131213.287,1145916.629,86054.89649,21
+94852,1134216.187,1146324.329,86853.65705,21
+94853,1132566.706,1147884.137,87023.50256,21
+94854,1134740.356,1148063.275,87971.30107,21
+94855,1133651.285,1148875.609,88350.27757,21
+94856,1135633.143,1151202.538,88959.39577,21
+94857,1134245.705,1150435.544,89477.14593,21
+94858,1136113.985,1151191.673,89883.00758,21
+94859,1135390.579,1152832.781,90897.66699,21
+94860,1137191.743,1153488.043,91181.95489,21
+94861,1136815.88,1153641.23,91603.63505,21
+94862,1141499.084,1155245.776,92064.39511,21
+94863,1140462.006,1156980.244,92499.96403,21
+94864,1142123.959,1156521.266,93002.53894,21
+94865,1144782.182,1157289.342,93703.02742,21
+94866,1144918.768,1158319.094,93887.67852,21
+94867,1146752.629,1158053.732,94477.67174,21
+94868,1147468.045,1159128.988,94928.7231,21
+94869,1149162.896,1159911.059,95351.18476,21
+94870,1150182.587,1159750.096,95846.49233,21
+94871,1151660.938,1161814.453,96599.92958,21
+94872,1152280.561,1161017.084,96150.78605,21
+94873,1154671.535,1161748.176,97768.55764,21
+94874,1154800.251,1163820.635,97149.43274,21
+94875,1157277.83,1162980.785,98352.69967,21
+94876,1157193.069,1163449.404,98488.21772,21
+94877,1158538.545,1164979.696,98986.49275,21
+94878,1161333.859,1164856.341,99211.55436,21
+94879,1160452.076,1164831.362,100166.5593,21
+94880,1163589.59,1167260.063,100067.2917,21
+94881,1163756.454,1166060.982,100810.2111,21
+94882,1165376.723,1167815.285,101051.1909,21
+94883,1165936.186,1166690.493,101667.4286,21
+94884,1167583.287,1170018.594,101781.3634,21
+94885,1168573.22,1168414,102852.5169,21
+94886,1170984.704,1169433.624,102523.0683,21
+94887,1170394.121,1170526.545,103321.7597,21
+94888,1172716.787,1170175.978,103960.1894,21
+94889,1173126.899,1171905.613,103783.723,21
+94890,1175439.667,1171209.884,104791.1539,21
+94891,1175136.992,1173651.033,104868.67,21
+94892,1177973.855,1171978.187,105290.9376,21
+94893,1178354.275,1174523.964,105946.1467,21
+94894,1179364.973,1173206.872,106025.6369,21
+94895,1180808.257,1175603.277,106687.1143,21
+94896,1181944.25,1175069.027,107116.4507,21
+94897,1183390.396,1175187.623,107392.23,21
+94898,1185263.56,1177213.87,107743.7521,21
+94899,1184443.321,1176312.495,108247.9472,21
+94900,1187728.127,1177285.099,108606.8297,21
+94901,1187310.034,1177976.7,109291.6756,21
+94902,1189975.377,1179156.147,109176.2812,21
+94903,1189267.451,1177884.04,109813.2408,21
+94904,1192219.949,1180527.502,110434.6152,21
+94905,1192986.936,1180331.536,110438.6631,21
+94906,1193615.589,1179755.077,111017.8634,21
+94907,1194966.028,1182592.681,111618.3802,21
+94908,1196657.119,1181492.819,113013.6266,21
+94909,1197217.157,1182203.71,113498.2472,21
+94910,1198147.312,1183100.117,114586.5603,21
+94911,1200921.215,1183056.818,114258.8895,21
+94912,1200299.108,1183728.337,115665.8467,21
+94913,1202491.569,1185636.33,115670.9918,21
+94914,1203157.533,1184074.555,116678.9212,21
+94915,1204515.611,1186306.957,116767.3668,21
+94916,1205734.282,1185046.23,117955.6464,21
+94917,1207075.618,1187387.925,118083.8099,21
+94918,1208791.286,1187405.22,118897.0003,21
+94919,1207172.511,1186209.702,119246.4822,21
+94920,1212231.57,1190144.019,119975.7907,15.6
+94921,0,0,0,15.6
+94922,0,0,0,15.6
+94923,0,234.8583797,0,15.6
+94924,0,0,0,15.6
+94925,0,0,0,15.6
+94926,0,0,1349571.841,15.6
+94927,0,0,0,15.6
+94928,0,0,0,15.6
+94929,0,0,0,15.6
+94930,0,0,0,15.6
+94931,0,0,0,15.6
+94932,0,0,0,15.6
+94933,0,0,0,15.6
+94934,0,0,0,15.6
+94935,0,0,0,15.6
+94936,0,0,0,15.6
+94937,0,0,0,15.6
+94938,0,0,0,15.6
+94939,0,0,0,15.6
+94940,0,0,0,15.6
+94941,0,0,0,15.6
+94942,0,0,0,15.6
+94943,0,0,0,15.6
+94944,0,0,0,15.6
+94945,0,0,0,15.6
+94946,0,0,0,15.6
+94947,0,0,0,15.6
+94948,0,0,0,15.6
+94949,0,0,0,15.6
+94950,0,0,0,15.6
+94951,339295.1451,0,0,15.6
+94952,0,0,0,15.6
+94953,0,0,0,15.6
+94954,0,0,0,15.6
+94955,0,0,0,15.6
+94956,0,0,0,15.6
+94957,0,0,0,15.6
+94958,0,0,0,15.6
+94959,0,0,0,15.6
+94960,0,0,0,15.6
+94961,0,0,1291016.893,15.6
+94962,0,0,0,15.6
+94963,0,0,0,15.6
+94964,0,0,0,15.6
+94965,0,0,0,15.6
+94966,0,0,0,15.6
+94967,0,0,0,15.6
+94968,0,0,0,15.6
+94969,0,0,0,15.6
+94970,0,0,0,15.6
+94971,0,0,0,15.6
+94972,0,0,0,15.6
+94973,0,0,0,15.6
+94974,0,0,0,15.6
+94975,0,0,0,15.6
+94976,0,0,0,15.6
+94977,0,0,0,15.6
+94978,0,0,0,15.6
+94979,0,0,0,15.6
+94980,0,0,0,15.6
+94981,0,0,0,15.6
+94982,0,0,0,15.6
+94983,29997.27,0,0,15.6
+94984,0,0,0,15.6
+94985,584.1507552,0,0,15.6
+94986,7008.373276,0,0,15.6
+94987,7319.591464,0,0,15.6
+94988,5514.718782,0,0,15.6
+94989,6147.340749,0,0,15.6
+94990,6256.338817,0,0,15.6
+94991,6290.243391,0,0,15.6
+94992,6372.887245,0,0,15.6
+94993,7054.982037,0,0,15.6
+94994,6966.228436,0,0,15.6
+94995,7112.209629,0,0,15.6
+94996,7215.18092,0,1237550.2,15.6
+94997,346637.9159,0,0,15.6
+94998,7627.672479,0,0,15.6
+94999,8239.007905,0,0,15.6
+95000,8120.564541,0,0,15.6
+95001,8353.717517,0,0,15.6
+95002,8529.640979,0,0,15.6
+95003,8696.092594,0,0,15.6
+95004,8864.558702,0,0,15.6
+95005,8986.977333,0,0,15.6
+95006,9210.633195,0,0,15.6
+95007,9290.01147,0,0,15.6
+95008,9493.85699,0,0,15.6
+95009,9599.881542,0,0,15.6
+95010,9763.701994,0,0,15.6
+95011,9914.787325,0,0,15.6
+95012,10076.63305,0,0,15.6
+95013,0,0,0,15.6
+95014,0,0,0,15.6
+95015,0,0,0,15.6
+95016,0,0,0,15.6
+95017,0,0,0,15.6
+95018,36313.85271,0,0,15.6
+95019,3176.741922,0,0,15.6
+95020,7145.360993,0,0,15.6
+95021,14926.043,0,0,15.6
+95022,10884.11092,0,0,15.6
+95023,11620.25843,0,0,15.6
+95024,11728.67619,0,0,15.6
+95025,11904.79235,0,0,15.6
+95026,11959.92192,0,0,15.6
+95027,12131.15559,0,0,15.6
+95028,12238.08212,0,0,15.6
+95029,12349.71512,0,0,15.6
+95030,12454.5585,0,0,15.6
+95031,12621.03801,0,1188734.396,15.6
+95032,12673.14908,0,0,15.6
+95033,12828.89982,0,0,15.6
+95034,12943.99924,0,0,15.6
+95035,13035.16327,0,0,15.6
+95036,13179.18044,0,0,15.6
+95037,13239.85669,0,0,15.6
+95038,13382.67335,0,0,15.6
+95039,13495.7636,0,0,15.6
+95040,13585.06158,0,0,15.6
+95041,13907.73617,0,0,15.6
+95042,353232.1451,0,0,15.6
+95043,14030.41776,0,0,15.6
+95044,14141.05275,0,0,15.6
+95045,14204.35796,0,0,15.6
+95046,14238.73917,0,0,15.6
+95047,14383.22578,0,0,15.6
+95048,0,0,0,15.6
+95049,0,0,0,15.6
+95050,0,39503.472,0,15.6
+95051,0,2464.007788,0,15.6
+95052,53536.84283,5858.36393,0,15.6
+95053,4678.389126,13282.10868,0,15.6
+95054,7701.375821,12585.76396,0,15.6
+95055,20576.26265,11118.25368,0,15.6
+95056,14219.47189,11808.34542,0,15.6
+95057,15095.09661,11957.76094,0,15.6
+95058,15212.83601,12068.77503,0,15.6
+95059,15257.76133,12183.69141,0,15.6
+95060,15346.18756,12317.98094,0,15.6
+95061,15396.33453,12433.95952,0,15.6
+95062,15467.7475,12568.55149,0,15.6
+95063,15522.56828,12668.75684,0,15.6
+95064,15561.39443,12816.14395,0,15.6
+95065,15681.95576,12921.57052,0,15.6
+95066,15697.9649,13043.86531,1144156.383,15.6
+95067,15746.45065,13190.31943,0,15.6
+95068,15867.45387,13255.63458,0,15.6
+95069,15856.32571,13435.07965,0,15.6
+95070,15964.04241,13521.88486,0,15.6
+95071,16002.6785,13669.52131,0,15.6
+95072,16077.07162,13764.45968,0,15.6
+95073,16072.08215,13903.51536,0,15.6
+95074,16206.65179,13994.91278,0,15.6
+95075,16216.88135,14159.67249,0,15.6
+95076,16275.77368,14257.53859,0,15.6
+95077,16350.75614,14365.8478,0,15.6
+95078,16376.7626,14444.85932,0,15.6
+95079,16468.14919,14667.09346,0,15.6
+95080,16472.18463,0,0,15.6
+95081,16562.82972,0,0,15.6
+95082,0,0,0,15.6
+95083,0,0,0,15.6
+95084,0,0,0,15.6
+95085,57034.09179,62418.69825,0,15.6
+95086,3584.562607,0,0,15.6
+95087,12034.83014,5684.00964,0,15.6
+95088,21565.6565,22626.48697,0,15.6
+95089,355555.1639,15200.40395,0,15.6
+95090,17042.93817,15644.89607,0,15.6
+95091,17074.60577,16091.80202,0,15.6
+95092,17111.04555,16239.5855,0,15.6
+95093,17235.85014,16284.5471,0,15.6
+95094,17213.95424,16408.22392,0,15.6
+95095,17250.68867,16557.92148,0,15.6
+95096,17301.67694,16651.72473,0,15.6
+95097,17425.63544,16727.3249,0,15.6
+95098,293344.4933,16871.26961,0,15.6
+95099,17496.17692,16975.45263,0,15.6
+95100,17616.5954,17038.64219,0,15.6
+95101,77849.69113,17153.72109,1103483.471,15.6
+95102,78767.21483,17103.1255,0,15.6
+95103,62111.9772,17186.10834,0,15.6
+95104,67048.01777,17199.87497,0,15.6
+95105,67424.77894,17223.39266,0,15.6
+95106,67182.08333,17265.53515,0,15.6
+95107,67484.98398,17267.49715,0,15.6
+95108,67368.96448,17341.85922,0,15.6
+95109,67495.69223,17337.43932,0,15.6
+95110,67482.4316,17378.96033,0,15.6
+95111,67872.92252,17429.12141,0,15.6
+95112,67774.6061,17378.95884,0,15.6
+95113,67795.66246,17503.17139,0,15.6
+95114,67986.24422,17490.07978,0,15.6
+95115,50187.23638,0,0,15.6
+95116,50065.70167,0,0,15.6
+95117,51819.45508,0,0,15.6
+95118,115665.5269,0,0,15.6
+95119,57518.18101,69895.21346,0,15.6
+95120,62836.76909,0,0,15.6
+95121,77199.14804,7280.243754,0,15.6
+95122,70477.21431,26736.84083,0,15.6
+95123,71336.906,16060.46059,0,15.6
+95124,72097.26004,17854.14741,0,15.6
+95125,72251.40796,17868.81406,0,15.6
+95126,72455.28395,17929.24839,0,15.6
+95127,72713.1267,17942.11453,0,15.6
+95128,18501.70867,17958.8142,0,15.6
+95129,18468.71607,17995.31813,0,15.6
+95130,18545.19442,17993.39347,0,15.6
+95131,18519.31754,18017.03001,0,15.6
+95132,18576.91787,18017.02871,0,15.6
+95133,18582.06852,18080.96659,0,15.6
+95134,18622.82088,18038.68329,0,15.6
+95135,18616.82263,18138.93568,0,15.6
+95136,357947.8748,18068.13038,1066350.541,15.6
+95137,18696.87823,18160.59009,0,15.6
+95138,18667.85756,18104.53402,0,15.6
+95139,306533.0917,18211.51976,0,15.6
+95140,18704.62637,18160.58569,0,15.6
+95141,18786.04669,18213.42776,0,15.6
+95142,92079.49163,18211.5152,0,15.6
+95143,79541.89033,18269.3309,0,15.6
+95144,68699.17119,18276.94436,0,15.6
+95145,76392.45465,18256.56552,0,15.6
+95146,78832.17829,18311.15603,0,15.6
+95147,76721.3805,18317.22252,0,15.6
+95148,59002.96095,18298.53813,0,15.6
+95149,58888.65916,0,0,15.6
+95150,61439.7061,0,0,15.6
+95151,130122.823,0,0,15.6
+95152,68855.12495,0,0,15.6
+95153,72398.94236,74279.84862,0,15.6
+95154,89065.20011,0,0,15.6
+95155,81718.06297,7937.448652,0,15.6
+95156,82863.02694,27593.47174,0,15.6
+95157,83539.88158,16821.5636,0,15.6
+95158,83403.27981,18507.77329,0,15.6
+95159,84266.8731,18514.80963,0,15.6
+95160,84291.13394,18656.41119,0,15.6
+95161,84578.60599,18543.67513,0,15.6
+95162,84719.3044,18656.40778,0,15.6
+95163,84381.12878,18601.03024,0,15.6
+95164,85237.81374,18706.53507,0,15.6
+95165,84604.22798,18694.05712,0,15.6
+95166,84874.81588,18685.15627,0,15.6
+95167,85232.32015,18729.79257,0,15.6
+95168,84776.35234,18792.28835,0,15.6
+95169,19004.89716,18763.64458,0,15.6
+95170,18989.86951,18772.70829,0,15.6
+95171,19001.93319,18870.57097,1032450.384,15.6
+95172,18934.02651,18792.28144,0,15.6
+95173,18950.14087,18899.09702,0,15.6
+95174,18953.39201,18851.07782,0,15.6
+95175,18878.93332,18932.77187,0,15.6
+95176,18934.02024,18920.35624,0,15.6
+95177,18829.18918,18950.64793,0,15.6
+95178,18895.08309,18954.03105,0,15.6
+95179,312430.7049,19005.58723,0,15.6
+95180,18822.75949,18986.07421,0,15.6
+95181,0,19060.38361,0,15.6
+95182,72643.7111,19042.82851,0,15.6
+95183,416796.7874,0,0,15.6
+95184,130540.4265,0,0,15.6
+95185,71325.62476,0,0,15.6
+95186,75457.62469,0,0,15.6
+95187,92812.3088,78037.10614,0,15.6
+95188,83857.75399,419.291915,0,15.6
+95189,85393.51422,8235.331353,0,15.6
+95190,84997.26268,28559.57035,0,15.6
+95191,85047.64018,17620.49033,0,15.6
+95192,85046.25834,19307.10674,0,15.6
+95193,84967.51058,19338.7937,0,15.6
+95194,84824.56249,19361.53207,0,15.6
+95195,84672.91648,19372.20558,0,15.6
+95196,84783.33153,19365.10567,0,15.6
+95197,84558.77076,19440.4709,0,15.6
+95198,84589.20385,19412.35216,0,15.6
+95199,84545.39574,19426.51896,0,15.6
+95200,84245.3768,19461.15534,0,15.6
+95201,84223.84784,387667.6074,0,15.6
+95202,84463.07637,19461.15143,0,15.6
+95203,83930.86384,19510.52286,0,15.6
+95204,84111.82764,19538.28211,0,15.6
+95205,84081.01192,19524.41298,0,15.6
+95206,83732.44331,19515.37874,1001504.155,15.6
+95207,83906.83222,19582.05432,0,15.6
+95208,83563.91643,19599.08591,0,15.6
+95209,18193.52071,19592.36788,0,15.6
+95210,18213.9769,19595.88878,0,15.6
+95211,18172.9903,19632.15219,0,15.6
+95212,18108.95475,19663.74054,0,15.6
+95213,18092.31709,19642.85404,0,15.6
+95214,0,19675.92425,0,15.6
+95215,0,19691.28215,0,15.6
+95216,0,19675.92023,0,15.6
+95217,65822.79342,0,0,15.6
+95218,4369.249321,0,0,15.6
+95219,9516.019086,0,0,15.6
+95220,24714.15224,71520.69311,0,15.6
+95221,16929.91223,0,0,15.6
+95222,312308.335,13286.14156,0,15.6
+95223,18314.18976,26811.56079,0,15.6
+95224,18418.47721,18735.82747,0,15.6
+95225,90855.809,20049.12248,0,15.6
+95226,107357.9191,20145.03377,0,15.6
+95227,82825.37459,20241.52103,0,15.6
+95228,90733.95447,20268.43817,0,15.6
+95229,92830.24438,20334.99281,0,15.6
+95230,433080.1148,20393.30772,0,15.6
+95231,95229.75205,20362.43164,0,15.6
+95232,96073.58339,20507.5822,0,15.6
+95233,96029.44319,20405.54323,0,15.6
+95234,96931.97689,20635.73216,0,15.6
+95235,98610.07205,20609.30922,0,15.6
+95236,99327.20041,20667.96215,0,15.6
+95237,100681.9027,20723.92309,0,15.6
+95238,101619.8343,20789.53524,0,15.6
+95239,102786.13,20851.19835,0,15.6
+95240,104287.7183,20870.19848,0,15.6
+95241,105058.115,20985.12823,973256.9763,15.6
+95242,106465.1295,20970.88676,0,15.6
+95243,107439.3014,21117.38329,0,15.6
+95244,108806.0063,21065.29926,0,15.6
+95245,109681.9674,21217.35728,0,15.6
+95246,111213.003,21217.35124,0,15.6
+95247,91082.61791,21274.84027,0,15.6
+95248,92420.87592,21364.77878,0,15.6
+95249,93339.23252,21394.36859,0,15.6
+95250,170602.0343,0,0,15.6
+95251,105964.5443,0,0,15.6
+95252,10108.185,0,442960.7522,15.6
+95253,29530.80398,78416.2919,0,15.6
+95254,20759.72375,1620.79991,0,15.6
+95255,21937.441,14394.12013,0,15.6
+95256,22150.59135,28931.68384,0,15.6
+95257,22199.03536,20663.45827,0,15.6
+95258,410652.1805,21871.01791,0,15.6
+95259,39792.2392,22006.12195,0,15.6
+95260,88266.75088,22041.52008,0,15.6
+95261,160555.1441,22060.07804,0,15.6
+95262,128705.7455,22154.35602,0,15.6
+95263,130633.1926,22185.41073,0,15.6
+95264,133015.2137,719406.0409,0,15.6
+95265,133909.9021,49654.11376,0,15.6
+95266,135288.3823,74312.50544,0,15.6
+95267,136304.6875,127538.4861,0,15.6
+95268,137252.7054,133125.6106,0,15.6
+95269,138562.7827,114687.0267,0,15.6
+95270,139854.789,120632.3217,0,15.6
+95271,140760.0798,122245.0506,0,15.6
+95272,141923.2057,121660.8275,0,15.6
+95273,143219.6158,122990.8109,0,15.6
+95274,144272.5535,123470.0789,0,15.6
+95275,145441.6895,123866.1772,0,15.6
+95276,146623.3697,124649.5429,1198131.688,15.6
+95277,487081.281,124816.2194,0,15.6
+95278,148930.6377,125961.2493,0,15.6
+95279,150116.0685,126314.1944,0,15.6
+95280,126256.9365,127153.9975,0,17.8
+95281,972540.6475,1249869.593,0,17.8
+95282,917905.2552,930098.3368,0,17.8
+95283,439775.3631,189221.8723,0,17.8
+95284,446861.9684,313332.1532,0,17.8
+95285,404460.2243,452355.3101,0,17.8
+95286,380717.6879,363532.033,0,17.8
+95287,385806.3371,358664.829,0,17.8
+95288,56814.2483,364131.6553,0,17.8
+95289,56114.65447,365258.4382,0,17.8
+95290,819216.7168,364195.2734,0,17.8
+95291,356288.4262,363845.8906,0,17.8
+95292,330882.7861,363092.1206,0,17.8
+95293,378589.289,363512.706,0,17.8
+95294,375843.2859,49736.82501,0,17.8
+95295,366090.3317,49635.60219,0,17.8
+95296,365847.9112,49744.09313,0,17.8
+95297,364076.1281,1066710.907,0,17.8
+95298,364168.6082,239164.1924,0,17.8
+95299,362721.3638,234026.0457,436170.2709,17.8
+95300,362089.4962,449852.9875,0,17.8
+95301,361187.187,351846.3187,0,17.8
+95302,360437.0044,361903.9193,0,17.8
+95303,359880.9431,362586.7644,0,17.8
+95304,358925.5376,362180.9033,0,17.8
+95305,358501.7785,362129.2964,0,17.8
+95306,357193.5044,362662.405,0,17.8
+95307,357318.678,362150.0757,0,17.8
+95308,356371.8278,362694.1487,0,17.8
+95309,355772.6287,362262.7491,0,17.8
+95310,355301.5953,362845.2051,1089303.393,17.8
+95311,300798.7109,362874.1407,0,17.8
+95312,300690.5875,730991.0999,0,17.8
+95313,389838.3835,362936.1502,0,17.8
+95314,358269.7137,312786.3433,0,17.8
+95315,691743.0315,313012.095,0,17.8
+95316,352939.3296,426327.8555,0,17.8
+95317,351185.9805,348156.5938,0,17.8
+95318,351517.4456,358616.9092,0,17.8
+95319,350599.009,359740.3474,0,17.8
+95320,53405.35849,365509.7885,0,17.8
+95321,53412.06429,365732.8935,0,17.8
+95322,797679.4813,363499.7054,0,17.8
+95323,319501.7449,365051.798,0,17.8
+95324,288672.3466,365058.9423,0,17.8
+95325,378840.0566,365204.9814,0,17.8
+95326,350777.8314,365952.348,0,17.8
+95327,348709.3753,51134.6454,0,17.8
+95328,348177.301,51172.20647,0,17.8
+95329,347973.685,51395.97555,0,17.8
+95330,347076.2271,1081431.368,0,17.8
+95331,347411.8426,240997.5659,0,17.8
+95332,346032.4335,246066.6058,0,17.8
+95333,346352.4995,452342.2937,0,17.8
+95334,345719.6116,359300.8601,0,17.8
+95335,345347.6011,368978.0405,0,17.8
+95336,344617.2357,369963.0489,0,17.8
+95337,344728.036,369948.7334,0,17.8
+95338,344070.9981,369980.3942,0,17.8
+95339,343744.4241,370527.8203,0,17.8
+95340,343126.18,370561.4846,0,20
+95341,2279871.809,1790373.862,192700.0286,20
+95342,1311381.948,1426895.848,103663.6705,20
+95343,752118.3022,621586.9291,69449.11422,20
+95344,777588.2967,791189.519,951405.4251,20
+95345,1118265.241,843797.2112,455996.5708,20
+95346,831267.1501,676817.9695,30704.99513,20
+95347,815133.2328,887098.0679,166246.2007,20
+95348,838898.6808,781192.0873,227784.2305,20
+95349,828115.1327,751735.7076,27204.06124,20
+95350,821927.452,1144743.999,222454.1311,20
+95351,819267.2736,768397.8806,52034.45579,20
+95352,478912.8075,766165.5896,93166.03078,20
+95353,936215.4524,763107.673,244843.7979,20
+95354,787053.0894,763838.1021,26896.17923,20
+95355,865732.6245,761561.0317,208588.2028,20
+95356,771911.5986,761410.6666,114345.5258,20
+95357,817079.3321,759403.8286,205281.1131,20
+95358,803536.8011,759288.978,27273.86189,20
+95359,800309.3677,757796.4802,196396.2037,20
+95360,799398.8866,142322.1644,104613.0098,20
+95361,780451.6815,141969.1478,194691.1526,20
+95362,784229.1979,1228568.577,27174.70791,20
+95363,781164.1186,772541.9374,184752.014,20
+95364,778130.6908,611835.524,48684.84312,20
+95365,774606.4121,781541.9576,67922.8623,20
+95366,773349.0979,733267.0104,85334.6746,20
+95367,772356.9305,756934.3643,195976.287,20
+95368,767585.0021,761769.9084,27296.294,20
+95369,767917.785,750918.8469,171623.5448,20
+95370,764182.2472,755980.6152,92498.41601,20
+95371,739981.7664,728021.8569,144533.2072,20
+95372,736665.1514,726745.6644,786.0699995,20
+95373,735897.895,727746.9323,136849.6234,20
+95374,682162.7784,800620.9128,18934.4695,20
+95375,800010.9135,733930.9396,0,20
+95376,742824.1264,757698.8889,0,20
+95377,755717.2611,644552.1303,243541.7877,20
+95378,755754.2272,810772.4647,662839.8044,20
+95379,749025.3735,748497.2294,147806.7987,20
+95380,747467.3436,750029.5091,48573.2863,20
+95381,744766.9389,758542.2535,57731.4769,20
+95382,742761.3026,754568.7244,55021.39068,20
+95383,129005.4928,756408.5123,126759.1816,20
+95384,128649.9728,756333.38,27191.30236,20
+95385,940658.0711,754627.9312,151412.3425,20
+95386,758440.6092,757659.6632,81672.40074,20
+95387,771796.7302,755912.2584,129513.1888,20
+95388,770589.154,1125514.121,27210.30047,20
+95389,1103404.368,756498.8303,137198.6651,20
+95390,749621.0253,757442.8572,41458.95104,20
+95391,720686.1974,758954.1525,54573.37358,20
+95392,739049.7369,137877.9817,86743.35215,20
+95393,729816.3472,137950.5114,90028.10488,20
+95394,728970.2914,1224743.503,37232.48842,20
+95395,727795.3073,761983.8511,132264.5385,20
+95396,726341.3944,610568.6496,92472.78406,20
+95397,726176.3124,776589.7102,117925.4166,20
+95398,723438.1885,771829.427,27539.25827,20
+95399,723503.4963,770016.6652,123669.5307,20
+95400,722286.9813,755720.518,40497.42961,21
+95401,2303953.439,2614892.718,1097945.739,21
+95402,2171768.297,2008030.861,322175.55,21
+95403,678594.8878,658929.2331,100946.6021,21
+95404,782094.4605,803891.9412,376282.4909,21
+95405,1137522.018,955714.1777,295225.1185,21
+95406,984833.7844,1050123.785,340663.3096,21
+95407,966891.2951,909008.3243,226056.1389,21
+95408,973622.8686,942811.0704,343189.6409,21
+95409,971126.0798,939264.0347,287006.3577,21
+95410,966161.1215,933743.1617,340858.179,21
+95411,965190.4717,931381.0978,231515.1528,21
+95412,966744.0012,928563.8963,357514.61,21
+95413,962390.3488,923951.9768,295852.3849,21
+95414,962321.6696,922222.0937,350210.9774,21
+95415,958094.9777,918472.8267,234820.1555,21
+95416,958990.6854,916947.6568,369579.5593,21
+95417,956380.8279,912732.4442,303889.2988,21
+95418,948385.963,912116.4902,360638.9482,21
+95419,948604.3607,907772.9109,238091.0522,21
+95420,946875.4955,905672.9419,380256.3387,21
+95421,943121.3731,903318.9716,310483.7903,21
+95422,944451.3848,902692.1905,370122.0995,21
+95423,938358.4613,897800.584,241850.9926,21
+95424,939942.1963,897326.6001,389488.9779,21
+95425,934870.8367,894144.3836,316453.74,21
+95426,936868.9569,891723.6866,379010.8445,21
+95427,931784.708,890368.9898,244411.1042,21
+95428,932988.2909,888687.2051,398462.5543,21
+95429,929953.377,885836.1588,322231.2439,21
+95430,928439.4905,884354.1971,386622.0668,21
+95431,927860.6745,881340.1021,247205.4082,21
+95432,924200.5236,881415.8817,406304.3918,21
+95433,926064.1474,877777.9418,327323.5797,21
+95434,921581.7659,875800.2933,393508.1514,21
+95435,922105.6409,875301.4953,250065.395,21
+95436,920226.3298,873160.5849,413201.7578,21
+95437,916522.4163,870549.8964,332202.5695,21
+95438,915936.2673,870128.2658,399793.0803,21
+95439,912794.7162,866434.2027,252608.6153,21
+95440,913549.8528,866396.7984,419620.5497,21
+95441,912387.1721,864009.343,336281.1304,21
+95442,909787.4158,862132.7766,405919.1924,21
+95443,909258.1438,862452.2534,254331.7473,21
+95444,908527.0036,858072.0987,426073.4492,21
+95445,907926.2314,858510.6287,339760.1033,21
+95446,892136.1067,855799.6474,411366.9151,21
+95447,890420.3316,854807.2897,256605.9599,21
+95448,887737.4606,853998.4607,431173.877,21
+95449,884969.0461,851169.1563,343475.7974,21
+95450,883032.6686,849843.1711,416396.5303,21
+95451,879460.7471,849318.2216,258807.1677,21
+95452,879200.8108,847022.7967,435557.2008,21
+95453,874258.1824,846129.9698,347080.2008,21
+95454,872968.025,845179.4533,420884.622,21
+95455,871379.0678,841815.5481,260364.8078,21
+95456,866569.9221,842776.7451,440544.0456,21
+95457,865642.3771,839244.5174,349848.1518,21
+95458,863670.9508,840045.7516,424887.3772,21
+95459,860071.0711,837654.7931,262460.9984,21
+95460,857433.4794,835458.0791,444417.8578,21
+95461,1547952.198,1441007.664,337963.4483,21
+95462,1536716.024,1436495.018,411483.2504,21
+95463,1533482.66,1438034.632,236237.3539,21
+95464,1526782.95,1439041.657,417465.8909,21
+95465,1523355.388,1438936.961,323714.7896,21
+95466,1517610.871,1440268.939,395065.8842,21
+95467,1512702.532,1440747.811,231808.4378,21
+95468,1509005.98,1441386.617,413382.2891,21
+95469,1501909.575,1443071.337,319365.0083,21
+95470,1498421.143,1441411.996,391536.7672,21
+95471,1492735.204,1444901.008,227929.4798,21
+95472,1784394.823,1444448.269,409291.3074,21
+95473,1484542.362,1446925.516,315361.0584,21
+95474,1478275.065,1447194.876,387852.7161,21
+95475,1474215.633,1448186.344,223532.8441,21
+95476,1470008.996,1449337.008,405363.1894,21
+95477,1464906.902,1451824.238,310925.1511,21
+95478,1461669.201,1450890.702,383924.9505,21
+95479,1455208.364,1453750.34,219399.4947,21
+95480,1453376.709,1455082.764,400982.3786,21
+95481,1446715.423,1455409.131,307040.9867,21
+95482,1442574.902,1456999.155,379251.6648,21
+95483,1439058.295,1459296.954,215398.2915,21
+95484,1434849.131,1458802.181,396243.757,21
+95485,1428714.36,1460615.508,302604.495,21
+95486,1425862.462,1464093.851,374739.2559,21
+95487,1421310.414,1462619.733,211142.7059,21
+95488,1415711.022,1465734.883,391863.3943,21
+95489,1412755.894,1466907.764,298290.0426,21
+95490,1407281.274,1467850.917,371059.4687,21
+95491,1403423.808,1470250.131,207689.8925,21
+95492,1399806.37,1470412.302,387957.9113,21
+95493,1394307.922,1473457.699,294202.5786,21
+95494,1686933.317,1473088.459,366290.9531,21
+95495,1386276.404,1476420.439,203796.757,21
+95496,1382252.971,1476820.134,383186.8041,21
+95497,1378728.871,1478297.026,289867.5646,21
+95498,1373021.646,1480188.052,361983.4119,21
+95499,1370896.217,1481063.664,199852.5225,21
+95500,1365625.054,1483782.972,378119.3815,21
+95501,1360123.089,1484705.873,285424.1992,21
+95502,1359799.88,1485927.006,357035.4119,21
+95503,1351065.173,1488320.247,196000.0382,21
+95504,1350302.843,1489556.004,372879.0188,21
+95505,1345434.763,1490951.118,280789.9833,21
+95506,1341578.742,1491991.496,351876.6063,21
+95507,1336290.472,1453160.953,191918.9933,21
+95508,1334104.384,1445326.518,367275.2001,21
+95509,1329158.39,1444910.696,275734.9121,21
+95510,1325348.896,1443286.228,345975.1493,21
+95511,1321191.823,1444850.735,187415.6098,21
+95512,1317334.932,1432692.585,360175.2114,21
+95513,1313764.563,1434082.224,268558.3264,21
+95514,1309292.739,1431444.57,338840.7952,21
+95515,1306108.237,1432628.051,180501.1288,21
+95516,1301892.54,1432817.984,353662.659,21
+95517,1298401.638,1431137.269,262171.0979,21
+95518,1293175.251,1431157.575,332277.7822,21
+95519,1290735.593,1433333.184,175017.8488,21
+95520,1285794.986,1430605.633,346732.6117,21
+95521,1053450.084,1197143.695,161135.6718,21
+95522,1032055.71,1176495.165,223794.1437,21
+95523,1023872.387,1170706.334,71151.07674,21
+95524,1015920.797,1163093.542,238758.8784,21
+95525,1008378.741,1159194.792,147828.7692,21
+95526,1001289.202,1154421.264,205711.5215,21
+95527,993993.271,1148076.169,63339.20442,21
+95528,986725.3368,1144466.47,223550.8647,21
+95529,981185.0562,1137400.757,136465.6982,21
+95530,972964.4759,1134958.32,191385.5624,21
+95531,966864.7318,1127230.969,56845.31838,21
+95532,960188.254,1123992.696,209056.151,21
+95533,953783.3667,1119290.865,125540.6298,21
+95534,947109.4381,1115440.253,177615.2902,21
+95535,940768.9973,1111457.583,50533.58657,21
+95536,934307.9368,1109367.71,194488.5448,21
+95537,927559.5166,1102539.203,115645.7742,21
+95538,921678.4189,1100610.168,164343.4574,21
+95539,914914.1634,1096453.903,44409.73397,21
+95540,909394.7968,1093162.48,181675.7942,21
+95541,901990.1364,1089402.907,107155.1141,21
+95542,897175.0032,1086666.107,153697.6424,21
+95543,889589.0748,1082899.146,40298.12592,21
+95544,884150.5712,1079696.304,170713.8011,21
+95545,877192.1288,1076160.742,99660.73688,21
+95546,872166.9129,1073180.334,143725.7258,21
+95547,865443.943,1069571.674,37233.39262,21
+95548,859495.7635,1066339.171,160129.9204,21
+95549,853687.8726,1063401.371,93521.91923,21
+95550,846921.3323,1059673.306,134936.5006,21
+95551,841307.1413,1057384.608,34406.08288,21
+95552,835878.8194,1053924.969,150625.5149,21
+95553,829665.33,1051786.367,87633.21196,21
+95554,824034.0088,1049124.107,126874.604,21
+95555,818355.6931,1045906.652,31906.29199,21
+95556,812316.9347,1043600.951,141433.6676,21
+95557,806683.8291,1041438.447,82342.40893,21
+95558,801305.0616,1039583.814,118862.3525,21
+95559,794848.6184,1038202.77,29598.54171,21
+95560,791535.6808,1035637.722,132881.0154,21
+95561,785351.4909,1034034.247,39357.56855,21
+95562,780016.7066,1032790.741,60298.24155,21
+95563,773846.4735,1030401.608,129489.9645,21
+95564,768157.2694,1029057.318,26502.01342,21
+95565,762378.7964,1027165.145,26115.71923,21
+95566,757462.9128,1025651.95,25526.57112,21
+95567,751062.9807,1023638.536,25217.14271,21
+95568,745708.0991,1022148.869,24529.9115,21
+95569,739921.4145,1020331.184,24077.10537,21
+95570,735005.421,1018631.256,23677.03744,21
+95571,730026.5589,1017054.704,22921.5109,21
+95572,724286.6364,1015123.568,22233.75572,21
+95573,720644.7643,1013507.254,21553.66977,21
+95574,715090.0095,1012019.551,21142.98022,21
+95575,711438.0113,1011250.496,20495.79455,21
+95576,706340.5302,1009210.31,20021.91328,21
+95577,702008.8399,1007523.123,19468.43419,21
+95578,697703.9504,1006720.363,19025.47549,21
+95579,693102.7041,1004009.879,18524.9621,21
+95580,688262.663,1002623.422,18003.27676,21
+95581,683373.2259,1000832.542,17498.16083,21
+95582,679066.9739,998272.1444,17164.33909,21
+95583,673298.8229,996066.2603,16682.16108,21
+95584,669068.215,993681.921,16134.73426,21
+95585,663611.3758,991726.1716,16043.09723,21
+95586,659276.9675,989789.2499,15372.41658,21
+95587,653943.4618,987201.9232,14987.78613,21
+95588,649611.8833,985297.5687,14524.62216,21
+95589,644297.0259,983032.695,13687.00711,21
+95590,639818.6091,981263.7989,13207.23103,21
+95591,634784.2502,978710.2011,12969.46038,21
+95592,630215.9412,975984.2127,12603.76885,21
+95593,624894.2843,973960.0028,12463.62642,21
+95594,620612.7687,971193.8832,12189.62381,21
+95595,615746.0275,968761.5627,12096.83598,21
+95596,608702.611,967380.8495,11665.88413,21
+95597,604895.558,964478.5537,11484.04256,21
+95598,599025.0385,962934.148,11387.06974,21
+95599,594890.5953,959818.9437,11021.30081,21
+95600,589665.5625,958839.8354,10968.30176,21
+95601,584928.5733,955684.0807,10764.5225,21
+95602,579995.7316,954585.5559,10589.04971,21
+95603,575314.1195,951644.7364,10445.2049,21
+95604,570236.6476,949762.8484,10221.19269,21
+95605,565564.0611,947665.8123,10061.7712,21
+95606,560807.8821,945892.7533,9901.77275,21
+95607,555547.4961,943107.808,9649.878543,21
+95608,551349.3699,941509.2011,9532.094434,21
+95609,546088.7582,938938.9508,9326.577258,21
+95610,541067.957,941174.2185,9119.255113,21
+95611,537095.1128,935108.4671,8912.09064,21
+95612,531625.1241,932793.7322,8918.136768,21
+95613,527227.5349,929362.3972,8407.874458,21
+95614,522246.1935,927604.9712,8477.732113,21
+95615,517513.9119,925158.8869,8203.518741,21
+95616,512360.4052,921530.4675,7927.789747,21
+95617,508233.412,920457.9973,7910.948842,21
+95618,502609.2903,916596.1191,7337.845213,21
+95619,498144.5993,915230.9527,7445.770658,21
+95620,493286.7424,911969.3239,7396.509705,21
+95621,488520.1331,909529.0522,6991.773198,21
+95622,483242.8275,906985.5605,6935.674639,21
+95623,478964.9508,904521.4913,6567.265969,21
+95624,473503.1155,901631.3703,6600.251707,21
+95625,469959.5267,899532.87,6221.10832,21
+95626,465979.4619,896387.0709,6046.913239,21
+95627,462100.6425,894336.947,5881.783233,21
+95628,458151.1656,891142.1496,5569.865415,21
+95629,454606.934,889362.4759,5445.576368,21
+95630,450412.3504,885757.4781,5234.910452,21
+95631,446336.041,883925.9125,5067.889005,21
+95632,442208.1891,880796.4515,4661.253159,21
+95633,438472.1353,878761.6451,4708.053517,21
+95634,434400.9535,875940.7762,4317.305954,21
+95635,431091.2714,872790.6271,4235.143134,21
+95636,426351.2197,871061.3411,3948.988068,21
+95637,423340.123,867618.9552,3629.785388,21
+95638,418935.6159,865548.7174,3575.680961,21
+95639,415253.3986,862746.5683,3386.884557,21
+95640,411166.8693,860363.4558,2961.222951,21
+95641,407915.8813,863231.4655,2527.350016,21
+95642,405580.1314,862188.6766,2449.179976,21
+95643,403196.388,860772.5582,2403.999058,21
+95644,400801.3361,859324.5314,2327.823063,21
+95645,398808.6495,857971.8696,2257.991736,21
+95646,396787.0256,857003.2524,2202.634214,21
+95647,394472.3011,855409.5505,2122.554868,21
+95648,392369.9865,853975.3706,2066.484084,21
+95649,390287.2205,853136.4508,1995.421192,21
+95650,388078.3736,850788.0719,1927.554941,21
+95651,386085.0252,850359.105,1869.303649,21
+95652,383833.9833,848453.1145,1798.342053,21
+95653,381766.3512,847216.1305,1728.013693,21
+95654,379837.3647,846161.1666,1681.190403,21
+95655,377583.185,844094.9706,1597.412195,21
+95656,375547.5782,842888.9258,1524.695969,21
+95657,373271.531,842254.2754,1476.759382,21
+95658,371463.709,839883.0099,1403.806501,21
+95659,369238.2826,838959.9227,1354.371745,21
+95660,367132.7907,837652.1049,1242.226764,21
+95661,365395.1344,835537.1254,1242.635518,21
+95662,362906.4551,834801.2799,1115.274899,21
+95663,360993.9872,833359.5296,1102.350459,21
+95664,358771.2312,832242.6514,1009.670698,21
+95665,357062.9153,829925.0229,996.7392582,21
+95666,354842.1813,829120.466,944.682381,21
+95667,356922.8984,827724.7917,944.7094427,21
+95668,353086.5783,825883.0597,905.4150317,21
+95669,352109.6682,824816.6559,879.1002279,21
+95670,350726.6886,823501.3931,865.9152362,21
+95671,349301.4843,821955.4578,812.842151,21
+95672,347387.4901,820223.0756,812.862008,21
+95673,346321.2663,819331.717,786.1717895,21
+95674,344494.373,816895.1722,745.9157675,21
+95675,343257.6223,816559.3541,732.4502168,21
+95676,341570.6807,813998.5474,705.4134,21
+95677,340275.9336,813362.6845,691.8567759,21
+95678,338683.8047,811102.0918,650.9715831,21
+95679,337386.7864,809869.1374,623.5590984,21
+95680,335440.9798,808520.201,623.5706163,21
+95681,334653.5829,806673.1926,582.1951989,21
+95682,331839.1171,805574.795,554.4415151,21
+95683,330931.1607,804108.8647,540.5150041,21
+95684,328955.4709,802116.0833,512.5415413,21
+95685,327920.483,801175.8294,498.5012542,21
+95686,325827.3625,799638.3963,456.1269449,21
+95687,324691.2525,798177.4981,456.1330147,21
+95688,322616.7049,796472.9773,413.3809184,21
+95689,321421.3483,795336.6647,399.0445483,21
+95690,319833.6303,793528.6637,370.2260263,21
+95691,317965.4006,792006.9966,355.7453728,21
+95692,316841.803,791142.3461,326.6257985,21
+95693,314842.8039,788808.0336,297.2882432,21
+95694,313398.2206,787835.7581,282.5336878,21
+95695,311742.3644,786366.3704,252.8358899,21
+95696,309984.5516,784612.4127,222.8699876,21
+95697,308465.1806,783309.4384,207.7782679,21
+95698,307011.4574,781500.7793,192.6077607,21
+95699,304763.2363,780697.0052,146.566587,21
+95700,303929.7982,778349.106,146.567186,21
+95701,297277.1204,772699.4819,131.020674,21
+95702,295510.1486,769925.049,131.0211493,21
+95703,294225.9588,768443.3277,99.56671971,21
+95704,293023.1156,765492.4178,83.62865381,21
+95705,291235.4887,764831.7087,51.20741272,21
+95706,289918.0006,761475.5743,34.63403054,21
+95707,288275.3719,760421.2632,17.69177171,21
+95708,287281.3671,758548.9246,0,21
+95709,285229.9224,756318.9826,0,21
+95710,284129.7564,754001.4871,0,21
+95711,282599.9941,752452.432,0,21
+95712,280870.6493,750651.626,0,21
+95713,279539.7531,748096.8126,0,21
+95714,278004.8055,745326.151,0,21
+95715,276490.2989,743413.7739,0,21
+95716,275208.1003,741344.557,0,21
+95717,273467.0249,738938.6352,0,21
+95718,269893.3914,737150.5058,0,21
+95719,263447.5963,735340.992,0,21
+95720,264368.4253,732867.2982,0,21
+95721,261073.5935,730957.3537,0,21
+95722,258568.677,729449.3267,0,21
+95723,256593.6116,727011.3621,0,21
+95724,254210.1248,724961.0306,0,21
+95725,251825.0599,722997.9406,0,21
+95726,249365.4623,720980.4692,0,21
+95727,247296.8896,719096.6447,0,21
+95728,244980.6406,716658.3798,0,21
+95729,242239.5074,715104.1301,0,21
+95730,240228.2045,712879.2002,0,21
+95731,237841.7662,711669.5963,0,21
+95732,235581.8664,710986.7587,0,21
+95733,233205.0292,709673.3173,0,21
+95734,231353.4512,709026.4839,0,21
+95735,228684.6812,707873.4762,0,21
+95736,226523.5104,707194.7469,0,21
+95737,224371.7591,706502.7125,0,21
+95738,221907.1902,705122.4559,0,21
+95739,219810.3982,704933.3006,0,21
+95740,217745.1198,703717.0554,0,21
+95741,215093.5282,703271.8539,0,21
+95742,212430.2417,702712.6477,0,21
+95743,210410.0632,701556.1084,0,21
+95744,207919.2237,701002.5239,0,21
+95745,206023.8769,700722.1553,0,21
+95746,203385.2334,699531.4723,0,21
+95747,201200.774,699145.1306,0,21
+95748,198889.727,700280.9641,0,21
+95749,196722.4432,700101.6755,0,21
+95750,194636.3475,699932.423,0,21
+95751,192132.8616,698794.4446,0,21
+95752,190183.7461,699032.8113,0,21
+95753,187718.2834,698198.7528,0,21
+95754,186027.3613,697823.5697,0,21
+95755,183528.8458,697481.8759,0,21
+95756,181182.9248,697167.7582,0,21
+95757,179522.1135,696352.2406,0,21
+95758,177190.2641,696310.7386,0,21
+95759,174988.3943,695686.6341,0,21
+95760,173133.2218,696443.1835,0,21
+95761,194132.5261,725871.7393,0,21
+95762,193374.0511,726185.4804,0,21
+95763,192423.2175,727190.1322,0,21
+95764,190999.1146,727823.7416,0,21
+95765,189827.845,728064.0582,0,21
+95766,188637.9709,728572.4812,0,21
+95767,187456.6808,729220.1946,0,21
+95768,186200.4544,730564.1225,0,21
+95769,184863.0668,731031.1526,0,21
+95770,184008.9671,731725.6002,0,21
+95771,182728.0177,732199.3291,0,21
+95772,181478.3071,733323.2791,0,21
+95773,180365.7217,733858.5163,0,21
+95774,179405.8293,734419.8551,0,21
+95775,178311.9511,735357.5911,0,21
+95776,176893.5741,735897.119,0,21
+95777,175973.3211,736826.0085,0,21
+95778,174845.3197,736914.7189,0,21
+95779,173496.8266,738376.0059,0,21
+95780,172790.152,738935.0846,0,21
+95781,171532.478,739371.4006,0,21
+95782,170682.6696,740248.2422,0,21
+95783,169234.3674,741016.624,0,21
+95784,168687.7814,741488.3406,0,21
+95785,165558.203,744900.9108,0,21
+95786,164452.5517,745533.0735,0,21
+95787,163497.579,746347.0041,0,21
+95788,161677.1681,747264.2207,0,21
+95789,160892.9057,748256.684,0,21
+95790,159514.1068,748963.9111,0,21
+95791,158045.7684,749092.617,0,21
+95792,156573.4745,748992.6947,0,21
+95793,155388.5432,749367.289,0,21
+95794,153664.6444,748713.9511,0,21
+95795,152177.8543,749260.9706,0,21
+95796,150825.0999,748840.9548,0,21
+95797,149371.8294,748677.5204,0,21
+95798,147893.246,749000.4515,0,21
+95799,146566.9184,748342.607,0,21
+95800,144956.8836,748595.6014,0,21
+95801,143772.0865,747766.4205,0,21
+95802,141953.5429,748515.9956,0,21
+95803,140914.095,747779.5516,0,21
+95804,139325.6635,747359.2507,0,21
+95805,137788.7144,747776.9038,0,21
+95806,136684.5699,746818.4504,0,21
+95807,135072.2458,747155.9323,0,21
+95808,133741.6771,746920.832,0,21
+95809,132412.9978,745839.8887,0,21
+95810,130900.4199,746825.5387,0,21
+95811,129633.5762,745116.2403,0,21
+95812,128440.2648,745816.6413,0,21
+95813,126783.4936,746678.8138,0,21
+95814,125565.5652,745076.1033,0,21
+95815,124309.0168,745693.1603,0,21
+95816,123009.9823,745288.0198,0,21
+95817,121581.2393,744376.7404,0,21
+95818,120322.1837,744815.0272,0,21
+95819,119114.3769,744290.0963,0,21
+95820,117664.7434,743464.3467,0,21
+95821,94026.09666,712654.1101,0,21
+95822,92688.84713,711626.2305,0,21
+95823,91684.71825,709842.4288,0,21
+95824,90460.24043,709527.2482,0,21
+95825,89771.25689,708389.5477,0,21
+95826,88893.7335,707404.8359,0,21
+95827,87607.63587,706063.9182,0,21
+95828,87012.3037,705402.4622,0,21
+95829,85859.32993,704221.3113,0,21
+95830,84846.43422,703181.9631,0,21
+95831,84853.27858,701957.2987,0,21
+95832,84329.02791,701055.7964,0,21
+95833,84252.66883,699018.6887,0,21
+95834,84100.74589,698431.8159,0,21
+95835,83962.6784,696492.178,0,21
+95836,83706.41457,696180.9711,0,21
+95837,83503.31641,694945.1409,0,21
+95838,83255.29502,693755.7995,0,21
+95839,83107.44456,692507.9153,0,21
+95840,82795.32289,691687.6529,0,21
+95841,82589.35815,690730.7191,0,21
+95842,82451.90165,689527.885,0,21
+95843,82076.37762,688219.6874,0,21
+95844,81815.36435,687200.8548,0,21
+95845,81378.90709,686352.9669,0,21
+95846,81294.40705,685305.3612,0,21
+95847,81022.05821,683828.8817,0,21
+95848,80248.97373,683250.739,0,21
+95849,80402.37864,681817.7558,0,21
+95850,79545.80458,680561.4265,0,21
+95851,79520.25566,680588.0216,0,21
+95852,79198.21299,678881.9475,0,21
+95853,78353.78498,678150.2938,0,21
+95854,78319.71025,677965.8083,0,21
+95855,77791.79369,676839.51,0,21
+95856,77306.65886,675948.8953,0,21
+95857,76783.71149,675794.3698,0,21
+95858,76379.38385,674223.1128,0,21
+95859,75859.83728,674114.2699,0,21
+95860,75219.03065,673482.7942,0,21
+95861,74894.19167,672031.4096,0,21
+95862,73973.83707,672308.0935,0,21
+95863,73866.16082,670899.5525,0,21
+95864,72820.75004,670337.7806,0,21
+95865,72468.5603,669970.5921,0,21
+95866,71870.94349,668863.563,0,21
+95867,70977.62374,668116.4174,0,21
+95868,70776.24164,668426.3462,0,21
+95869,69772.52835,666161.4516,0,21
+95870,69138.29536,666840.6512,0,21
+95871,68458.41194,665410.4516,0,21
+95872,67773.51683,665175.4367,0,21
+95873,66909.03432,664298.2166,0,21
+95874,66234.04332,663821.3255,0,21
+95875,65530.01861,662745.0918,0,21
+95876,64829.79834,662375.9274,0,21
+95877,63802.193,661887.1818,0,21
+95878,63206.29401,661164.1454,0,21
+95879,62380.09929,660160.7859,0,21
+95880,61560.528,660359.0311,0,21
+95881,65943.10386,662912.8558,0,21
+95882,65599.01735,663416.2762,0,21
+95883,64590.49976,662594.8711,0,21
+95884,63898.42995,661514.3009,0,21
+95885,63059.9806,661383.7637,0,21
+95886,62184.09577,660411.6253,0,21
+95887,61471.58217,659721.3776,0,21
+95888,60580.97352,659457.499,0,21
+95889,59803.53246,657890.569,0,21
+95890,58919.61589,658114.9204,0,21
+95891,58047.6401,656768.9606,0,21
+95892,57180.15798,656443.0164,0,21
+95893,56537.16931,655833.4893,0,21
+95894,55399.71225,655729.1685,0,21
+95895,54703.73221,655491.814,0,21
+95896,53658.80157,654462.7852,0,21
+95897,53103.69614,654102.9312,0,21
+95898,52152.63436,653238.6032,0,21
+95899,50972.62593,652675.2086,0,21
+95900,50662.16937,652503.1623,0,21
+95901,49736.75924,650912.8351,0,21
+95902,49712.36948,650929.1316,0,21
+95903,49567.1053,649909.944,0,21
+95904,49557.37319,648713.3131,0,21
+95905,49554.92868,647939.7928,0,21
+95906,49238.77464,647425.6405,0,21
+95907,49378.48338,646592.9537,0,21
+95908,49228.29114,646305.8181,0,21
+95909,49226.61194,645616.9267,0,21
+95910,48911.77389,644542.3177,0,21
+95911,49197.36961,644310.1535,0,21
+95912,48921.10993,643517.5397,0,21
+95913,49038.3015,642580.3503,0,21
+95914,49072.1301,642114.3525,0,21
+95915,49028.93312,641427.485,0,21
+95916,48912.70481,640344.8223,0,21
+95917,49051.09938,639744.6717,0,21
+95918,48903.32544,639133.4183,0,21
+95919,49210.73332,638336.6938,0,21
+95920,48884.50233,637576.9483,0,21
+95921,49072.53978,636951.7737,0,21
+95922,48891.26885,636022.5108,0,21
+95923,49206.90629,635322.8555,0,21
+95924,48912.31573,634546.5657,0,21
+95925,49185.27378,634099.0686,0,21
+95926,49093.22283,632985.8636,0,21
+95927,49025.33593,631912.8717,0,21
+95928,49086.52969,631916.0596,0,21
+95929,49352.94706,630630.4272,0,21
+95930,48908.37107,630285.581,0,21
+95931,49391.77779,629071.6927,0,21
+95932,49189.99334,628451.2956,0,21
+95933,49252.80703,627461.628,0,21
+95934,49217.03255,626893.223,0,21
+95935,49375.56118,625456.0869,0,21
+95936,49217.06123,626073.0516,0,21
+95937,49548.49717,623783.0208,0,21
+95938,49233.8796,623788.4999,0,21
+95939,49548.52383,622026.6976,0,21
+95940,49394.68083,621090.1587,0,21
+95941,43922.90034,617822.3696,0,21
+95942,43773.80186,619399.7972,0,21
+95943,43941.69618,620435.9283,0,21
+95944,43764.3565,620911.9076,0,21
+95945,44138.44927,622487.8715,0,21
+95946,43914.17804,623047.9854,0,21
+95947,44131.58536,624521.8692,0,21
+95948,44150.50476,624871.6178,0,21
+95949,44283.9595,626668.0638,0,21
+95950,44302.84818,627085.3356,0,21
+95951,44456.17001,628115.7845,0,21
+95952,44326.80232,629363.2602,0,21
+95953,44646.83782,629932.7638,0,21
+95954,44641.53511,631127.97,0,21
+95955,44810.78953,632500.7711,0,21
+95956,44682.7392,632941.5513,0,21
+95957,45145.6574,634265.19,0,21
+95958,44704.09733,634715.7722,0,21
+95959,45316.56525,636390.2481,0,21
+95960,45176.41801,636995.1177,0,21
+95961,45200.67973,637754.9123,0,21
+95962,45498.53607,639289.3277,0,21
+95963,45219.53358,639592.675,0,21
+95964,45692.70611,641181.4997,0,21
+95965,45871.94935,641660.8879,0,21
+95966,45752.76103,642949.3083,0,21
+95967,45927.28273,643464.6737,0,21
+95968,45941.77624,645187.6075,0,21
+95969,46285.78077,645564.9068,0,21
+95970,46283.49177,648121.8526,0,21
+95971,46485.63011,648336.6302,0,21
+95972,46292.92422,650411.1256,0,21
+95973,46525.45149,650747.544,0,21
+95974,46802.40445,652551.6543,0,21
+95975,46527.68196,653241.3127,0,21
+95976,46839.6079,654427.5007,0,21
+95977,46717.32657,656016.4929,0,21
+95978,47040.53054,655639.4793,0,21
+95979,46872.20634,657285.7176,0,21
+95980,47231.52623,658103.7181,0,21
+95981,47082.02223,659707.631,0,21
+95982,47082.01665,660521.7092,0,21
+95983,47555.78129,661822.9288,0,21
+95984,47291.14795,662803.2899,0,21
+95985,47300.89977,663946.062,0,21
+95986,47596.52578,665661.3029,0,21
+95987,47615.68618,666235.287,0,21
+95988,47666.68122,667601.7573,0,21
+95989,47794.68631,669000.5406,0,21
+95990,47860.84585,670026.3806,0,21
+95991,47961.23725,671206.7181,0,21
+95992,48093.31669,672234.3065,0,21
+95993,49039.94686,673872.6195,0,21
+95994,49659.80394,674414.9552,0,21
+95995,50103.63869,676366.7879,0,21
+95996,51215.65031,677162.7538,0,21
+95997,51527.84441,678295.1166,0,21
+95998,52448.71715,679548.0992,0,21
+95999,53079.92854,681065.7685,0,21
+96000,53688.76482,681899.9203,0,21
+96001,54620.32014,682225.8268,0,21
+96002,55902.30541,682665.8508,0,21
+96003,56539.06756,682590.9608,0,21
+96004,57729.8727,683084.5193,0,21
+96005,58467.59386,683472.4667,0,21
+96006,59566.57313,683590.4113,0,21
+96007,60258.82398,683816.6121,0,21
+96008,61017.00521,683991.9181,0,21
+96009,61144.3842,684446.8845,0,21
+96010,61475.65844,684521.1848,0,21
+96011,61975.17876,684893.6202,0,21
+96012,62408.39457,684850.5177,0,21
+96013,62448.84475,685762.7328,0,21
+96014,63211.73317,685441.6274,0,21
+96015,63085.42119,685696.0604,0,21
+96016,64012.03216,685993.1605,0,21
+96017,63832.06152,686272.822,0,21
+96018,64522.76196,686799.2043,0,21
+96019,64805.1207,686906.545,0,21
+96020,65144.53752,686984.2403,0,21
+96021,66084.939,687132.925,0,21
+96022,65936.34152,687618.2377,0,21
+96023,66088.57823,687654.8906,0,21
+96024,66569.06118,688065.4477,0,21
+96025,67185.22858,688547.548,0,21
+96026,67221.88048,688591.5653,0,21
+96027,67685.58604,688633.2734,0,21
+96028,68143.86311,689101.5124,0,21
+96029,68359.62784,689257.4612,0,21
+96030,69442.29289,689310.5087,0,21
+96031,69156.2344,689844.0372,0,21
+96032,69610.05459,689705.3655,0,21
+96033,69928.88361,689912.5446,0,21
+96034,70421.46036,689876.2568,0,21
+96035,70752.2938,690686.4192,0,21
+96036,71241.33942,690094.7019,0,21
+96037,70863.45241,690385.4813,0,21
+96038,71630.12954,690838.993,0,21
+96039,71899.31497,690565.4849,0,21
+96040,72204.4615,691393.6596,0,21
+96041,72869.20337,690784.8024,0,21
+96042,73036.13723,691048.2366,0,21
+96043,73534.98055,691595.3247,0,21
+96044,74083.5809,691109.9477,0,21
+96045,74420.13948,691360.5638,0,21
+96046,74898.36968,691944.1612,0,21
+96047,75518.11078,691531.3134,0,21
+96048,75836.02135,691928.7848,0,21
+96049,76383.11544,692227.4661,0,21
+96050,76956.02181,691616.3033,0,21
+96051,77337.35501,692828.7775,0,21
+96052,77960.19481,691946.814,0,21
+96053,78028.22387,692446.8196,0,21
+96054,78791.2976,692771.014,0,21
+96055,79145.40175,692464.8014,0,21
+96056,79975.28625,693043.5659,0,21
+96057,79844.5379,692715.5605,0,21
+96058,80450.0519,692988.2124,0,21
+96059,80694.75977,693009.1599,0,21
+96060,81322.27646,693389.3963,0,21
+96061,109787.7256,750813.3312,0,21
+96062,112196.1155,754009.6195,0,21
+96063,113960.9359,756826.1611,0,21
+96064,115456.4629,774936.4326,0,21
+96065,117107.6997,766135.335,0,21
+96066,119625.8178,771206.4881,0,21
+96067,120405.2118,772661.1291,0,21
+96068,122414.8459,775309.629,0,21
+96069,124041.2144,776579.0608,0,21
+96070,125679.477,778815.1037,0,21
+96071,127826.046,781131.8136,0,21
+96072,128983.692,782100.4243,0,21
+96073,131087.5074,784742.6836,0,21
+96074,132699.4835,785989.7496,0,21
+96075,134691.402,788599.1514,0,21
+96076,135930.0512,789521.6391,0,21
+96077,137781.2335,792254.7804,0,21
+96078,139306.1455,792712.1233,0,21
+96079,140930.8498,795893.4125,0,21
+96080,142644.6967,796824.497,0,21
+96081,144586.1894,798815.3679,0,21
+96082,146294.4016,800369.4017,0,21
+96083,148023.287,802609.243,0,21
+96084,149806.7658,803338.6091,0,21
+96085,152097.4223,805897.6824,0,21
+96086,153176.284,806783.0471,0,21
+96087,154958.1455,809139.2757,0,21
+96088,156621.2629,810184.4409,0,21
+96089,158488.1295,812226.1885,0,21
+96090,160171.5985,812874.9803,0,21
+96091,161598.6196,816096.2538,0,21
+96092,163669.9197,816359.917,0,21
+96093,165052.8273,818350.2739,0,21
+96094,167201.0441,819494.866,0,21
+96095,169060.8183,821176.8331,0,21
+96096,170529.6927,822716.3456,0,21
+96097,171897.6223,823823.1527,0,21
+96098,174054.6546,825755.3889,0,21
+96099,175229.037,826738.7373,0,21
+96100,177180.3394,829899.0766,0,21
+96101,178584.8049,830647.8196,0,21
+96102,180438.6083,832101.4596,0,21
+96103,181871.2464,834117.1725,0,21
+96104,183419.0541,835207.8046,0,21
+96105,185725.1654,836324.0212,0,21
+96106,186861.4624,838101.6131,0,21
+96107,188354.7376,839922.9298,0,21
+96108,190006.859,840223.9083,0,21
+96109,191593.1088,842816.8109,0,21
+96110,193313.4731,843303.7071,0,21
+96111,194949.2198,844751.6474,0,21
+96112,196346.6933,846733.8255,0,21
+96113,198161.082,847341.9737,0,21
+96114,200180.6669,848974.9534,0,21
+96115,201212.7219,850760.0394,0,21
+96116,202870.7241,851103.8225,0,21
+96117,204783.1172,853629.1122,0,21
+96118,205985.6016,854664.1953,0,21
+96119,207496.3219,855344.0609,0,21
+96120,209554.9634,857268.8239,0,21
+96121,221155.8001,878821.6729,0,21
+96122,225370.4163,881572.8364,0,21
+96123,228309.1519,882554.1383,0,21
+96124,232364.6698,885116.8759,0,21
+96125,235485.6814,885302.9237,0,21
+96126,238711.1576,888024.7117,0,21
+96127,243242.9976,888975.4493,0,21
+96128,246661.7979,890690.0433,0,21
+96129,250304.1453,904630.5053,0,21
+96130,253322.8055,922272.18,0,21
+96131,257317.2681,912107.5702,0,21
+96132,278101.4318,918734.9256,0,21
+96133,282150.1168,922494.1665,0,21
+96134,284659.7733,922843.6616,0,21
+96135,290246.4994,927349.037,0,21
+96136,295799.4553,927693.1888,0,21
+96137,300794.5278,931588.1646,0,21
+96138,304437.8023,933335.6951,0,21
+96139,318928.9736,935122.933,0,21
+96140,318816.3705,937957.278,0,21
+96141,326276.5998,939045.7213,0,21
+96142,330061.9704,942714.4777,0,21
+96143,337125.5354,943744.1877,0,21
+96144,340778.2291,945389.9352,0,21
+96145,353133.7112,948510.5634,0,21
+96146,354954.6701,950610.8086,0,21
+96147,361523.2749,951419.9296,0,21
+96148,365755.8003,953929.1997,0,21
+96149,372947.8486,955927.1178,0,21
+96150,377559.5684,957535.1761,0,21
+96151,382226.6937,960573.1499,0,21
+96152,389050.6356,961359.843,0,21
+96153,394361.2637,962972.4016,0,21
+96154,399567.9791,965664.8431,0,21
+96155,405950.5028,967230.4248,0,21
+96156,409436.9633,967857.1732,0,21
+96157,416671.2611,971789.9818,0,21
+96158,420452.0283,972844.4837,0,21
+96159,426228.4264,973541.9836,0,21
+96160,430822.2077,975971.0168,0,21
+96161,436314.5044,978447.7706,0,21
+96162,440951.1342,979167.6044,0,21
+96163,446444.8391,981634.0601,0,21
+96164,451382.8765,983168.6189,0,21
+96165,456103.9391,984259.2042,0,21
+96166,460759.6428,986272.9399,0,21
+96167,467020.4619,988276.832,0,21
+96168,470351.0134,990299.2961,0,21
+96169,475400.7208,990851.0979,0,21
+96170,481257.156,993381.1215,0,21
+96171,485012.6396,994681.534,0,21
+96172,490368.3885,996630.7006,0,21
+96173,494936.6559,997224.1909,0,21
+96174,498773.9065,1000820.889,0,21
+96175,505428.2377,1000127.323,0,21
+96176,508194.5368,1003508.13,0,21
+96177,513680.5103,1004306.162,0,21
+96178,518666.8033,1005838.85,0,21
+96179,521436.4404,1008129.115,0,21
+96180,528381.2508,1008763.237,0,21
+96181,529046.123,1009905.838,0,21
+96182,531792.9916,1012011.727,0,21
+96183,534096.1457,1011242.321,0,21
+96184,534671.2515,1013121.959,0,21
+96185,537333.9571,1013411.632,0,21
+96186,539203.8361,1014153.368,0,21
+96187,540412.8742,1013992.732,0,21
+96188,542353.3911,1015529.303,0,21
+96189,543965.0011,1016303.779,0,21
+96190,545028.4168,1016407.366,0,21
+96191,547446.8113,1017474.187,0,21
+96192,549175.7423,1018050.053,0,21
+96193,549793.7886,1019183.413,0,21
+96194,551574.8657,1017651.262,0,21
+96195,554321.6218,1020858.263,0,21
+96196,554964.1304,1020281.205,0,21
+96197,556854.6482,1021392.481,0,21
+96198,558601.5223,1020802.847,0,21
+96199,559508.5596,1023402.533,0,21
+96200,561540.0866,1022370.274,0,21
+96201,563066.0489,1022623.766,0,21
+96202,564249.2085,1024834.449,0,21
+96203,566118.9458,1024393.529,0,21
+96204,567764.4769,1024906.141,0,21
+96205,567943.9455,1025471.465,0,21
+96206,570720.2045,1025605.079,0,21
+96207,571511.407,1027619.557,0,21
+96208,574010.7574,1026168.285,0,21
+96209,573259.0024,1028453.801,0,21
+96210,576959.3958,1027891.304,0,21
+96211,576916.5894,1029247.191,0,21
+96212,578752.5015,1028674.092,0,21
+96213,579612.9225,1030896.252,0,21
+96214,581267.1683,1028577.165,0,21
+96215,582627.1807,1032558.123,0,21
+96216,584179.2527,1031169.213,0,21
+96217,585869.2965,1031869.14,0,21
+96218,586102.1238,1031849.241,0,21
+96219,588932.1145,1033144.487,0,21
+96220,588997.3983,1033130.227,0,21
+96221,590540.9393,1033555.717,0,21
+96222,592421.1356,1034731.024,0,21
+96223,592666.6498,1034339.306,0,21
+96224,594816.4915,1035476.81,0,21
+96225,595563.6701,1035706.49,0,21
+96226,597743.9195,1035403.336,0,21
+96227,597493.993,1036921.641,0,21
+96228,599658.2572,1037487.851,0,21
+96229,600438.2978,1036797.666,0,21
+96230,602402.8669,1037655.423,0,21
+96231,603073.1858,1039478.72,0,21
+96232,604541.4619,1037628.518,0,21
+96233,604985.1339,1039723.93,0,21
+96234,607123.1593,1039769.254,0,21
+96235,607715.501,1040231.338,0,21
+96236,608937.3936,1039733.678,0,21
+96237,610312.6033,1041751.504,0,21
+96238,610647.1375,1041190.494,0,21
+96239,613389.8228,1041565.31,0,21
+96240,613426.9306,1042682.952,0,21
+96241,622476.4448,1050258.375,0,21
+96242,624581.6423,1052644.527,0,21
+96243,626687.8784,1053767.39,0,21
+96244,626926.7476,1054068.831,0,21
+96245,628809.9027,1055219.725,0,21
+96246,629567.6362,1056082.247,0,21
+96247,629893.3431,1057690.884,0,21
+96248,632664.417,1057206.558,0,21
+96249,632560.5727,1057925.75,0,21
+96250,632846.3251,1059805.032,0,21
+96251,635454.464,1059376.707,0,21
+96252,635451.9679,1060745.312,0,21
+96253,636506.7698,1061119.218,0,21
+96254,637373.1274,1061420.322,0,21
+96255,639062.5189,1063142.96,0,21
+96256,639337.5435,1062233.828,0,21
+96257,640248.3598,1065038.215,0,21
+96258,641174.6557,1063154.845,0,21
+96259,642475.1464,1065710.06,0,21
+96260,642745.2721,1066034.31,0,21
+96261,644129.6414,1065822.314,0,21
+96262,645185.883,1068156.842,0,21
+96263,645017.1396,1065862.8,0,21
+96264,646737.9293,1069774.6,0,21
+96265,648015.1913,1068925.363,0,21
+96266,647634.936,1068781.056,0,21
+96267,649519.9054,1070396.15,0,21
+96268,649644.1985,1070392.549,0,21
+96269,651094.7585,1071753.754,0,21
+96270,651594.2481,1071007.316,0,21
+96271,651448.5421,1073000.037,0,21
+96272,653928.6269,1073311.046,0,21
+96273,653653.4267,1072248.712,0,21
+96274,654662.2416,1075591.541,0,21
+96275,655636.4826,1073725.192,0,21
+96276,655817.4596,1075880.43,0,21
+96277,657499.9553,1075070.387,0,21
+96278,656810.9714,1076737.589,0,21
+96279,658979.9301,1075902.395,0,21
+96280,659232.7706,1079249.035,0,21
+96281,660015.0976,1076485.096,0,21
+96282,660892.2938,1078903.944,0,21
+96283,661190.6142,1079511.839,0,21
+96284,662497.2577,1079322.635,0,21
+96285,662956.8362,1079753.207,0,21
+96286,663623.9256,1080982.566,0,21
+96287,663633.8534,1080824.686,0,21
+96288,665485.7821,1081920.762,917.5128835,21
+96289,664793.4659,1081226.479,917.535988,21
+96290,667403.874,1083392.613,917.5590916,21
+96291,666428.6844,1082575.736,1165.88864,21
+96292,668178.4122,1083587.115,1288.795083,21
+96293,667678.6616,1084425.551,1410.951279,21
+96294,669768.2574,1084824.357,1532.414774,21
+96295,669159.8366,1084793.855,1653.234316,21
+96296,669716.6348,1085434.122,1808.66528,21
+96297,672292.6649,1086155.82,2176.765459,21
+96298,670742.4711,1086593.221,1994.440691,21
+96299,672344.749,1087144.557,2397.835365,21
+96300,674895.5844,1087580.25,2413.684703,21
+96301,674214.9329,1087307.472,2671.809171,21
+96302,677099.1613,1087772.216,2679.748245,21
+96303,676778.2763,1088575.353,2827.343915,21
+96304,678016.3019,1087494.848,2943.808053,21
+96305,678527.7553,1088018.546,3205.763998,21
+96306,678402.9545,1086494.585,3105.719581,21
+96307,679311.4947,1088192.823,3458.764258,21
+96308,680340.9719,1086769.44,3481.607509,21
+96309,680571.018,1086814.322,3496.879169,21
+96310,681068.4574,1086216.76,3854.174727,21
+96311,681546.0235,1085898.557,3763.105972,21
+96312,682704.9278,1087054.74,3997.962148,21
+96313,682931.2025,1085064.051,4013.128774,21
+96314,682585.4425,1086258.634,4268.684094,21
+96315,684263.2788,1084319.51,4269.208171,21
+96316,684436.7348,1085311.54,4523.451078,21
+96317,684789.7381,1084494.329,4524.040585,21
+96318,684818.324,1085121.379,4665.432633,21
+96319,687119.8631,1083783.965,4777.685595,21
+96320,686020.4979,1083769.816,4918.433436,21
+96321,686416.3541,1084219.386,5037.38206,21
+96322,687914.1055,1082992.143,5059.529796,21
+96323,687976.2556,1083418.088,5281.702857,21
+96324,688639.7663,1083180.996,5310.930981,21
+96325,688492.8227,1082196.153,5546.345761,21
+96326,690339.2246,1082261.168,5437.125266,21
+96327,688959.5482,1082511.915,5795.80896,21
+96328,691757.6912,1081130.405,5701.191135,21
+96329,689792.6226,1081501.685,5921.204363,21
+96330,692117.8659,1081260.034,6059.40993,21
+96331,691796.0239,1080409.037,6074.42508,21
+96332,692349.6648,1081135.404,6184.482986,21
+96333,693076.3863,1080415.336,6322.173761,21
+96334,693418.5389,1079701.45,6554.080454,21
+96335,693241.7219,1078716.097,6446.974996,21
+96336,694757.6928,1080887.015,6584.181546,21
+96337,694641.6216,1078193.581,6801.553124,21
+96338,695820.0415,1078440.374,6830.407001,21
+96339,694912.3192,1079288.978,7047.082234,21
+96340,697009.0208,1077613.059,6954.663209,21
+96341,695855.2794,1077974.789,7216.18149,21
+96342,697542.876,1077206.379,7485.559803,21
+96343,697806.7324,1077411.039,7406.465643,21
+96344,697774.8495,1077099.843,7607.615169,21
+96345,698223.6384,1076091.993,7714.173121,21
+96346,698459.4517,1076369.647,7882.509898,21
+96347,700551.8669,1075698.857,7897.839715,21
+96348,699473.0796,1075421.13,8156.503151,21
+96349,699769.5815,1075873.66,8187.054136,21
+96350,700488.9019,1074211.049,8302.719883,21
+96351,701868.9235,1074974.793,8460.162825,21
+96352,701039.4205,1074788.439,8505.488837,21
+96353,702177.3822,1073114.001,8719.133525,21
+96354,702451.6091,1073372.536,8764.348461,21
+96355,702891.8511,1073322.216,8913.559026,21
+96356,702963.9627,1072467.115,8915.855037,21
+96357,703187.7523,1073556.291,9391.916955,21
+96358,704631.9407,1070922.772,9308.035738,21
+96359,704306.2977,1072841.689,9585.483202,21
+96360,704303.6515,1070351.674,9576.725106,15.6
+96361,0,0,0,15.6
+96362,0,0,0,15.6
+96363,0,0,0,15.6
+96364,0,0,0,15.6
+96365,0,407.3398777,673572.6697,15.6
+96366,0,0,0,15.6
+96367,0,0,0,15.6
+96368,0,0,0,15.6
+96369,0,0,0,15.6
+96370,0,0,0,15.6
+96371,0,0,0,15.6
+96372,339417.4485,0,0,15.6
+96373,0,0,0,15.6
+96374,0,0,0,15.6
+96375,0,0,0,15.6
+96376,0,0,0,15.6
+96377,0,0,0,15.6
+96378,0,0,0,15.6
+96379,0,0,0,15.6
+96380,0,0,0,15.6
+96381,0,0,0,15.6
+96382,0,0,0,15.6
+96383,0,0,0,15.6
+96384,0,0,0,15.6
+96385,0,0,0,15.6
+96386,0,0,0,15.6
+96387,0,0,0,15.6
+96388,0,0,0,15.6
+96389,0,0,0,15.6
+96390,0,0,0,15.6
+96391,0,0,0,15.6
+96392,0,0,0,15.6
+96393,0,0,0,15.6
+96394,0,368182.6405,0,15.6
+96395,0,0,0,15.6
+96396,0,0,0,15.6
+96397,0,0,0,15.6
+96398,0,0,0,15.6
+96399,0,0,674385.5817,15.6
+96400,0,0,0,15.6
+96401,0,0,0,15.6
+96402,0,0,0,15.6
+96403,0,0,0,15.6
+96404,0,0,0,15.6
+96405,0,0,0,15.6
+96406,0,0,0,15.6
+96407,0,0,0,15.6
+96408,0,0,0,15.6
+96409,0,0,0,15.6
+96410,339405.1183,0,0,15.6
+96411,0,0,0,15.6
+96412,0,0,0,15.6
+96413,0,0,0,15.6
+96414,0,0,0,15.6
+96415,0,0,0,15.6
+96416,0,0,0,15.6
+96417,0,0,0,15.6
+96418,0,0,0,15.6
+96419,0,0,0,15.6
+96420,0,0,0,15.6
+96421,0,0,0,15.6
+96422,0,0,0,15.6
+96423,0,0,0,15.6
+96424,0,0,0,15.6
+96425,0,0,0,15.6
+96426,0,0,0,15.6
+96427,0,0,0,15.6
+96428,0,0,0,15.6
+96429,0,0,0,15.6
+96430,0,0,0,15.6
+96431,0,0,0,15.6
+96432,0,0,0,15.6
+96433,0,0,0,15.6
+96434,0,0,674839.9682,15.6
+96435,0,0,0,15.6
+96436,0,0,0,15.6
+96437,0,0,0,15.6
+96438,0,0,0,15.6
+96439,0,0,0,15.6
+96440,0,0,0,15.6
+96441,0,368184.6923,0,15.6
+96442,0,0,0,15.6
+96443,0,0,0,15.6
+96444,0,0,0,15.6
+96445,0,0,0,15.6
+96446,0,0,0,15.6
+96447,0,0,0,15.6
+96448,339393.108,0,0,15.6
+96449,0,0,0,15.6
+96450,0,0,0,15.6
+96451,0,0,0,15.6
+96452,0,0,0,15.6
+96453,0,0,0,15.6
+96454,0,0,0,15.6
+96455,0,0,0,15.6
+96456,0,0,0,15.6
+96457,0,0,0,15.6
+96458,0,0,0,15.6
+96459,0,0,0,15.6
+96460,0,0,0,15.6
+96461,0,0,0,15.6
+96462,0,0,0,15.6
+96463,0,0,0,15.6
+96464,0,0,0,15.6
+96465,0,0,0,15.6
+96466,0,0,0,15.6
+96467,0,0,0,15.6
+96468,0,0,0,15.6
+96469,0,0,674503.487,15.6
+96470,0,0,0,15.6
+96471,0,0,0,15.6
+96472,0,0,0,15.6
+96473,0,0,0,15.6
+96474,0,0,0,15.6
+96475,0,0,0,15.6
+96476,0,0,0,15.6
+96477,0,0,0,15.6
+96478,0,0,0,15.6
+96479,0,0,0,15.6
+96480,0,0,0,15.6
+96481,0,0,0,15.6
+96482,0,0,0,15.6
+96483,0,0,0,15.6
+96484,0,0,0,15.6
+96485,0,0,0,15.6
+96486,339381.8271,0,0,15.6
+96487,0,0,0,15.6
+96488,0,368189.4656,0,15.6
+96489,0,0,0,15.6
+96490,0,0,0,15.6
+96491,0,0,0,15.6
+96492,0,0,0,15.6
+96493,0,0,0,15.6
+96494,0,0,0,15.6
+96495,0,0,0,15.6
+96496,0,0,0,15.6
+96497,0,0,0,15.6
+96498,0,0,0,15.6
+96499,0,0,0,15.6
+96500,0,0,0,15.6
+96501,0,0,0,15.6
+96502,0,0,0,15.6
+96503,0,0,0,15.6
+96504,0,0,674128.7299,15.6
+96505,0,0,0,15.6
+96506,0,0,0,15.6
+96507,0,0,0,15.6
+96508,0,0,0,15.6
+96509,0,0,0,15.6
+96510,0,0,0,15.6
+96511,0,0,0,15.6
+96512,0,0,0,15.6
+96513,0,0,0,15.6
+96514,0,0,0,15.6
+96515,0,0,0,15.6
+96516,0,0,0,15.6
+96517,0,0,0,15.6
+96518,0,0,0,15.6
+96519,0,0,0,15.6
+96520,0,0,0,15.6
+96521,0,0,0,15.6
+96522,0,0,0,15.6
+96523,0,0,0,15.6
+96524,339375.3728,0,0,15.6
+96525,0,0,0,15.6
+96526,0,0,0,15.6
+96527,0,0,0,15.6
+96528,0,0,0,15.6
+96529,0,0,0,15.6
+96530,0,0,0,15.6
+96531,0,0,0,15.6
+96532,0,0,0,15.6
+96533,0,0,0,15.6
+96534,0,0,0,15.6
+96535,0,0,0,15.6
+96536,0,368185.7333,0,15.6
+96537,0,0,0,15.6
+96538,0,0,0,15.6
+96539,0,0,674618.5592,15.6
+96540,0,0,0,15.6
+96541,0,40126.75751,0,15.6
+96542,0,1699.683476,0,15.6
+96543,0,5320.387546,0,15.6
+96544,0,11271.22504,0,15.6
+96545,0,12692.00576,0,15.6
+96546,0,10075.31915,0,15.6
+96547,0,10997.09561,0,15.6
+96548,0,11025.26018,0,15.6
+96549,0,11169.05914,0,15.6
+96550,0,11192.17124,0,15.6
+96551,0,11281.98128,0,15.6
+96552,0,11344.37796,0,15.6
+96553,0,11440.12458,0,15.6
+96554,0,11508.38319,0,15.6
+96555,0,11592.76371,0,15.6
+96556,0,11639.12391,0,15.6
+96557,0,11730.70109,0,15.6
+96558,0,11807.99342,0,15.6
+96559,0,11880.67153,0,15.6
+96560,0,11911.71959,0,15.6
+96561,0,12062.09304,0,15.6
+96562,0,12062.09365,0,15.6
+96563,339369.9255,12202.1346,0,15.6
+96564,0,12242.56258,0,15.6
+96565,0,12312.86143,0,15.6
+96566,0,12401.69102,0,15.6
+96567,0,12460.45073,0,15.6
+96568,0,12560.81562,0,15.6
+96569,0,12619.79083,0,15.6
+96570,0,12668.14973,0,15.6
+96571,0,0,0,15.6
+96572,0,0,0,15.6
+96573,0,0,0,15.6
+96574,0,0,674850.8266,15.6
+96575,0,0,0,15.6
+96576,0,0,0,15.6
+96577,0,0,0,15.6
+96578,0,56976.85689,0,15.6
+96579,0,0,0,15.6
+96580,0,4646.193416,0,15.6
+96581,0,17926.51454,0,15.6
+96582,0,14354.28843,0,15.6
+96583,0,13146.66988,0,15.6
+96584,0,381995.3764,0,15.6
+96585,0,13889.25883,0,15.6
+96586,0,13965.38003,0,15.6
+96587,0,14057.39908,0,15.6
+96588,0,14072.63385,0,15.6
+96589,0,14179.22948,0,15.6
+96590,0,14239.15759,0,15.6
+96591,0,14304.68022,0,15.6
+96592,0,14343.42437,0,15.6
+96593,0,14455.40701,0,15.6
+96594,0,14464.28721,0,15.6
+96595,0,14594.5784,0,15.6
+96596,0,14625.0988,0,15.6
+96597,0,14692.93648,0,15.6
+96598,0,14761.68885,0,15.6
+96599,0,14824.47254,0,15.6
+96600,0,14892.80972,0,15.6
+96601,0,14997.3689,0,15.6
+96602,339363.9522,15066.44315,0,15.6
+96603,0,15155.83112,0,15.6
+96604,0,15184.89906,0,15.6
+96605,0,15356.0303,0,15.6
+96606,0,15391.80113,0,15.6
+96607,0,15467.79137,0,15.6
+96608,0,0,0,15.6
+96609,0,0,674189.1091,15.6
+96610,0,0,0,15.6
+96611,0,0,0,15.6
+96612,0,0,0,15.6
+96613,0,66772.9919,0,15.6
+96614,0,0,0,15.6
+96615,0,3814.588609,0,15.6
+96616,0,26033.87363,0,15.6
+96617,0,14408.61197,0,15.6
+96618,0,16352.04156,0,15.6
+96619,0,16484.07167,0,15.6
+96620,0,16580.27503,0,15.6
+96621,0,16635.89754,0,15.6
+96622,0,16744.73666,0,15.6
+96623,0,16787.02473,0,15.6
+96624,0,16859.93489,0,15.6
+96625,0,16972.799,0,15.6
+96626,0,17025.48478,0,15.6
+96627,0,17047.72691,0,15.6
+96628,0,17190.13151,0,15.6
+96629,0,17234.34368,0,15.6
+96630,0,17336.72808,0,15.6
+96631,0,385533.8865,0,15.6
+96632,0,17536.78582,0,15.6
+96633,0,17469.93495,0,15.6
+96634,0,17658.66359,0,15.6
+96635,0,17672.13384,0,15.6
+96636,0,17744.91513,0,15.6
+96637,0,17854.8571,0,15.6
+96638,0,17889.34717,0,15.6
+96639,0,17993.79866,0,15.6
+96640,0,18047.85144,0,15.6
+96641,339364.1744,18124.61623,0,15.6
+96642,0,18209.81139,0,15.6
+96643,0,0,0,15.6
+96644,0,0,673989.0081,15.6
+96645,0,0,0,15.6
+96646,0,0,0,15.6
+96647,0,74155.57232,0,15.6
+96648,0,0,0,15.6
+96649,0,9049.40201,0,15.6
+96650,0,27346.69476,0,15.6
+96651,0,17356.79185,0,15.6
+96652,0,18914.47618,0,15.6
+96653,0,19036.51864,0,15.6
+96654,0,19120.03403,0,15.6
+96655,0,19137.10132,0,15.6
+96656,0,19266.01163,0,15.6
+96657,0,19341.49242,0,15.6
+96658,0,19348.21158,0,15.6
+96659,0,19497.37438,0,15.6
+96660,0,19501.84661,0,15.6
+96661,0,19567.34411,0,15.6
+96662,0,19639.54172,0,15.6
+96663,0,19650.37399,0,15.6
+96664,0,19718.51064,0,15.6
+96665,0,19758.85239,0,15.6
+96666,0,19822.53917,0,15.6
+96667,0,19835.58054,0,15.6
+96668,0,19897.73592,0,15.6
+96669,0,19960.62384,0,15.6
+96670,0,19966.26875,0,15.6
+96671,0,20056.7212,0,15.6
+96672,0,20042.60387,0,15.6
+96673,0,20137.02521,0,15.6
+96674,0,20172.48976,0,15.6
+96675,0,20207.24461,0,15.6
+96676,0,20260.4363,0,15.6
+96677,0,0,0,15.6
+96678,0,368191.3193,0,15.6
+96679,0,0,674389.1889,15.6
+96680,339363.1549,73422.53957,0,15.6
+96681,0,0,0,15.6
+96682,0,15152.48233,0,15.6
+96683,0,26775.56377,0,15.6
+96684,0,19524.48603,0,15.6
+96685,0,20711.18774,0,15.6
+96686,0,20751.03039,0,15.6
+96687,0,20832.6067,0,15.6
+96688,0,20825.6729,0,15.6
+96689,0,20917.11067,0,15.6
+96690,0,20903.77301,0,15.6
+96691,0,21021.27915,0,15.6
+96692,0,20969.06875,0,15.6
+96693,0,21065.86326,0,15.6
+96694,0,21104.77213,0,15.6
+96695,0,21111.85847,0,15.6
+96696,0,21201.35743,0,15.6
+96697,0,21237.47757,0,15.6
+96698,0,21201.35856,0,15.6
+96699,0,21346.68912,0,15.6
+96700,0,21317.01886,0,15.6
+96701,0,21398.3838,0,15.6
+96702,0,21416.39132,0,15.6
+96703,0,21477.59381,0,15.6
+96704,0,21513.40768,0,15.6
+96705,0,21525.05062,0,15.6
+96706,0,21612.23244,0,15.6
+96707,0,21601.80617,0,15.6
+96708,0,21690.91902,0,15.6
+96709,0,21668.93438,0,15.6
+96710,0,0,0,15.6
+96711,0,0,0,15.6
+96712,0,0,0,15.6
+96713,0,79213.66789,0,15.6
+96714,0,2277.786729,674528.2064,15.6
+96715,0,14182.20744,0,15.6
+96716,0,29341.05449,0,15.6
+96717,0,20771.2566,0,15.6
+96718,0,22088.35145,0,15.6
+96719,339360.942,22136.35355,0,15.6
+96720,0,22182.75145,0,17.8
+96721,435584.4953,1203900.682,0,17.8
+96722,87935.43614,808990.2012,0,17.8
+96723,69590.23183,214074.2933,0,17.8
+96724,184393.1485,709051.8623,0,17.8
+96725,128336.431,385835.7001,0,17.8
+96726,136231.6052,349273.2328,0,17.8
+96727,136485.0156,341595.1658,0,17.8
+96728,136383.8333,341727.8039,0,17.8
+96729,136821.4733,341053.9119,0,17.8
+96730,137206.1076,340451.4553,0,17.8
+96731,136929.7821,340830.2346,0,17.8
+96732,137692.9267,340060.2902,0,17.8
+96733,137625.636,339280.1626,0,17.8
+96734,138312.3291,340243.2147,0,17.8
+96735,138201.9099,339544.3959,0,17.8
+96736,138598.3431,340077.4843,0,17.8
+96737,138995.6333,338852.6778,0,17.8
+96738,139143.5452,339784.6672,0,17.8
+96739,139867.7107,339466.7054,0,17.8
+96740,139839.299,339686.285,0,17.8
+96741,140160.0887,339670.383,0,17.8
+96742,140821.1027,339686.2942,0,17.8
+96743,140774.167,295371.1741,0,17.8
+96744,141386.669,295255.5535,0,17.8
+96745,141570.2135,408508.8438,0,17.8
+96746,141997.3597,327269.1766,0,17.8
+96747,142355.1032,340673.6049,0,17.8
+96748,142727.1124,340894.8037,673795.1519,17.8
+96749,142990.0274,342352.1071,0,17.8
+96750,143498.7378,340708.9471,0,17.8
+96751,0,44881.38656,0,17.8
+96752,0,44760.8337,0,17.8
+96753,0,44921.90121,0,17.8
+96754,77164.35352,1010495.443,0,17.8
+96755,350676.5827,212761.5619,0,17.8
+96756,19770.52824,222993.847,0,17.8
+96757,29032.20777,426713.473,0,17.8
+96758,24412.09797,333109.0108,0,17.8
+96759,369388.4011,343050.2195,0,17.8
+96760,69894.60728,344482.2508,0,17.8
+96761,114117.1988,714079.77,0,17.8
+96762,181024.049,345679.2845,0,17.8
+96763,142599.0303,345666.043,0,17.8
+96764,148723.2924,346694.3275,0,17.8
+96765,149264.8662,346213.7734,0,17.8
+96766,149202.1314,347693.8758,0,17.8
+96767,150129.9986,347126.6115,0,17.8
+96768,149905.3512,347805.2034,0,17.8
+96769,150588.7719,348458.4764,0,17.8
+96770,150538.314,348584.1156,0,17.8
+96771,151537.26,349123.206,0,17.8
+96772,151048.3983,349089.6528,0,17.8
+96773,151852.9286,349949.6478,0,17.8
+96774,152000.4643,350245.5601,0,17.8
+96775,152274.764,303892.2633,0,17.8
+96776,152984.5982,303650.5694,0,17.8
+96777,152727.2427,417508.8065,0,17.8
+96778,153926.8706,338664.1831,0,17.8
+96779,153316.7446,349942.6067,0,17.8
+96780,154206.5305,350972.2743,0,20
+96781,1038910.413,1424211.062,0,20
+96782,1042066.239,1396532.034,673621.3482,20
+96783,474690.2524,533421.9854,0,20
+96784,408056.5038,134780.8922,0,20
+96785,420291.8275,1219669.693,0,20
+96786,420020.0757,571519.2437,0,20
+96787,404255.9584,743410.1166,0,20
+96788,399897.2482,725213.1427,0,20
+96789,70377.91751,718195.9092,0,20
+96790,73665.93757,653217.2369,0,20
+96791,412143.6783,684718.9098,0,20
+96792,856016.9981,675915.8123,0,20
+96793,429275.2641,671712.888,0,20
+96794,329307.6059,669416.491,0,20
+96795,393572.3827,669169.1781,0,20
+96796,395281.7655,666790.4319,0,20
+96797,380886.1369,664435.2609,0,20
+96798,380538.4131,1032751.342,0,20
+96799,379136.3473,661579.2621,0,20
+96800,378032.9309,661525.9005,0,20
+96801,377540.2084,668032.9661,0,20
+96802,375918.1887,669692.5459,0,20
+96803,374921.7951,664858.4401,0,20
+96804,374662.6478,667587.5997,0,20
+96805,372846.9096,665097.4092,0,20
+96806,372697.993,664838.0506,0,20
+96807,371535.4343,558490.3697,0,20
+96808,370591.0676,557173.6241,0,20
+96809,369926.5034,734353.8319,0,20
+96810,369427.7018,686177.3163,0,20
+96811,382331.7785,621233.2064,0,20
+96812,370615.0979,645584.6801,0,20
+96813,379785.893,641422.4533,0,20
+96814,374946.3736,639560.7116,0,20
+96815,308457.3303,176693.355,0,20
+96816,307793.1045,109332.0672,674140.3367,20
+96817,414571.4688,1217777.763,0,20
+96818,386079.5968,630771.759,0,20
+96819,371656.9422,633269.838,0,20
+96820,369946.4609,715257.7303,0,20
+96821,374176.3252,609186.1456,0,20
+96822,75564.54321,661736.7139,0,20
+96823,75251.66795,644119.8337,0,20
+96824,75152.81516,642943.2237,0,20
+96825,835406.5792,641914.0695,0,20
+96826,375876.9261,641822.3608,0,20
+96827,642588.6623,655257.2515,0,20
+96828,395103.0991,669971.0071,0,20
+96829,373368.9505,656597.6467,0,20
+96830,367861.9545,662847.368,0,20
+96831,367219.697,660950.1233,0,20
+96832,365861.1672,661697.8441,0,20
+96833,366304.8505,662386.5678,0,20
+96834,365508.7512,661524.572,0,20
+96835,365172.9,1030328.172,0,20
+96836,363727.7727,662400.1113,0,20
+96837,364599.3404,660839.6105,0,20
+96838,363168.32,662548.0288,0,20
+96839,362860.7129,560375.7893,0,20
+96840,362807.6019,560943.1607,0,21
+96841,2299682.121,2603431.13,0,21
+96842,1562885.648,1832042.652,0,21
+96843,370557.5074,659907.5407,1445.85889,21
+96844,429507.0962,686185.7284,9504.021089,21
+96845,564620.2365,708600.5195,31678.05116,21
+96846,758671.2836,1044001.872,29242.36617,21
+96847,566812.2958,789722.5004,25907.69821,21
+96848,611828.0035,843064.7579,40407.70704,21
+96849,609534.9037,839544.5614,66995.27287,21
+96850,608858.196,836681.7002,49020.99174,21
+96851,605242.3291,831916.8889,56223.50886,21
+96852,604859.1273,830606.3388,56645.40913,21
+96853,601358.8002,827774.6575,57718.28439,21
+96854,601572.2053,824659.0178,58582.48033,21
+96855,597996.548,822696.4904,58791.85481,21
+96856,598637.6626,819552.6764,60025.5684,21
+96857,595359.0827,816953.11,60516.90612,21
+96858,594017.705,816082.8152,61100.62436,21
+96859,592754.0108,811552.4842,62012.43116,21
+96860,591348.9437,812456.9714,62535.64037,21
+96861,589663.5498,807291.6046,63362.78665,21
+96862,589448.7676,807101.6093,63855.94597,21
+96863,587282.8261,804437.2345,64597.04586,21
+96864,585293.3867,802652.2517,65194.42906,21
+96865,586082.8753,800774.9311,65901.29529,21
+96866,582896.6985,798878.8647,66589.20579,21
+96867,583175.2506,796108.6401,67516.66728,21
+96868,581855.6104,797032.8467,67577.92301,21
+96869,580199.9733,791419.0397,68642.46688,21
+96870,579443.8064,792946.1744,69097.57859,21
+96871,578672.1284,790323.7778,69792.87875,21
+96872,576621.7962,788457.3349,70658.49433,21
+96873,577376.5811,786197.2358,70969.53707,21
+96874,574907.6227,785593.8899,71699.96223,21
+96875,574384.4848,784034.8922,72375.88588,21
+96876,573140.1636,782947.188,73033.44141,21
+96877,573256.2319,779306.9563,73694.22647,21
+96878,571373.7107,781268.1713,74172.86354,21
+96879,571588.0108,776868.5224,74844.2881,21
+96880,569494.9244,777591.1573,75381.32309,21
+96881,569928.749,774508.6001,76353.76178,21
+96882,567887.2619,774536.0871,76538.02045,21
+96883,568001.2192,772325.3667,77470.07317,21
+96884,565080.2511,770652.5442,78004.53907,21
+96885,565250.2402,770553.1031,78349.33142,21
+96886,562798.1479,769839.2301,79651.72991,21
+96887,564422.2908,766230.1282,82839.57093,21
+96888,560863.0043,766374.5368,81794.53025,21
+96889,562098.5938,765840.3707,83278.44059,21
+96890,560394.069,763221.249,84174.38216,21
+96891,559422.0454,763283.5763,85057.06176,21
+96892,559394.3508,761744.8421,85774.26262,21
+96893,558006.3708,760745.5553,86865.14536,21
+96894,557417.5588,759758.217,87467.00618,21
+96895,557181.9813,757679.4541,88253.39158,21
+96896,554978.2778,758924.5206,89450.50527,21
+96897,555456.171,755562.5781,89925.43769,21
+96898,555018.0392,756792.0123,91000.48653,21
+96899,552298.8287,754327.9474,91820.67726,21
+96900,554007.3238,753354.1323,92414.72963,21
+96901,716602.9585,1308806.647,81332.54394,21
+96902,713777.1247,1303341.813,76998.21276,21
+96903,711572.3448,1303015.154,76057.75438,21
+96904,711840.4023,1301633.115,76331.67705,21
+96905,712380.2626,1302364.655,75774.75678,21
+96906,710334.8062,1301196.707,76127.71212,21
+96907,712361.0371,1301265.999,75327.99778,21
+96908,710992.1216,1300734.758,76027.65889,21
+96909,710878.7269,1300722.98,75353.36794,21
+96910,710441.5778,1301064.36,75376.14171,21
+96911,712085.4574,1300313.423,75412.4965,21
+96912,710531.496,1300786.692,74898.40257,21
+96913,710540.0003,1299591.444,75168.8728,21
+96914,712072.4191,1300172.446,74933.94112,21
+96915,710508.033,1300929.426,74565.97254,21
+96916,710955.1839,1299181.037,74768.20774,21
+96917,711834.5528,1301019.95,74182.91979,21
+96918,711731.1147,1299729.487,74793.91042,21
+96919,711414.8515,1300074.719,74010.3114,21
+96920,712318.1685,1300710.858,73969.80958,21
+96921,711639.5034,1300834.305,73520.87015,21
+96922,712335.7053,1299834.26,73212.32484,21
+96923,711645.837,1301429.337,73093.38443,21
+96924,713908.1749,1300011.411,73192.78792,21
+96925,711443.3114,1301309.249,72743.67327,21
+96926,714017.9542,1300628.285,72448.00591,21
+96927,712893.0759,1301544.787,72822.3292,21
+96928,714015.2597,1301400.292,71729.75848,21
+96929,713109.3262,1301051.385,72462.28173,21
+96930,714790.45,1302967.77,71945.22709,21
+96931,713599.3934,1301229.355,71182.72784,21
+96932,714789.5384,1303201.579,70995.32323,21
+96933,713925.6859,1301832.944,70292.85001,21
+96934,714027.6447,1303458.292,69741.33073,21
+96935,715821.1623,1302849.19,69391.3,21
+96936,714374.031,1303389.608,68951.93822,21
+96937,714623.2648,1303784.373,68205.24018,21
+96938,714547.868,1303745.603,67886.85103,21
+96939,715826.024,1305173.619,67823.81794,21
+96940,715372.2326,1304282.412,66513.57989,21
+96941,714373.2399,1304467.896,66738.18549,21
+96942,715509.9207,1306043.598,65700.88962,21
+96943,715952.5222,1305324.123,65724.94206,21
+96944,715570.0303,1269676.068,64877.40105,21
+96945,715367.1,1262916.516,64415.83992,21
+96946,716441.5526,1262735.86,64019.56598,21
+96947,714608.9385,1260704.923,63148.52729,21
+96948,716858.5073,1262730.014,63245.22477,21
+96949,715696.7128,1260910.09,61953.54589,21
+96950,716360.9156,1261871.626,62058.35768,21
+96951,716212.9721,1259733.982,61445.54799,21
+96952,715955.3272,1258880.664,60477.33296,21
+96953,717253.2703,1259454.977,60128.94878,21
+96954,716158.9797,1257723.654,59820.31592,21
+96955,716385.9425,1257545.396,59176.11071,21
+96956,717083.4508,1256738.067,58533.50733,21
+96957,716594.5595,1256606.646,58034.15905,21
+96958,716740.3555,1256199.39,57362.82321,21
+96959,717625.5667,1254530.537,57139.45982,21
+96960,717452.5078,1256301.66,55984.29925,21
+96961,498229.2902,1020023.976,5246.059337,21
+96962,492901.6502,1011896.567,3572.887774,21
+96963,491258.8085,1009760.757,3141.898099,21
+96964,489980.9138,1005980.716,2461.831117,21
+96965,488120.6959,1007568.84,2288.364786,21
+96966,487366.3685,1005803.25,1984.144248,21
+96967,486397.9,1003035.024,1936.216936,21
+96968,484874.0876,1001671.403,1887.302231,21
+96969,483498.054,999255.1736,1823.183814,21
+96970,482822.1122,997075.0445,1774.380967,21
+96971,481589.5787,994573.9738,1725.415254,21
+96972,480382.1875,993137.2542,1660.217225,21
+96973,479644.8513,991072.9527,1627.543223,21
+96974,478500.583,988982.572,1545.223135,21
+96975,477679.055,987412.3684,1529.079919,21
+96976,476578.7866,984569.0773,1462.478433,21
+96977,475994.9843,983792.0529,1413.111765,21
+96978,474678.6944,981429.4249,1379.2449,21
+96979,474474.3826,979189.0382,1296.203616,21
+96980,472712.2168,977835.4183,1279.130322,21
+96981,472313.4761,976095.235,1211.988139,21
+96982,471730.6565,974091.8475,1178.306246,21
+96983,470468.8548,972084.1296,1101.977923,21
+96984,469949.3647,970928.078,1075.851299,21
+96985,469412.1009,968803.1831,1025.19379,21
+96986,468363.9154,967269.5911,973.3953219,21
+96987,467968.5582,965512.4773,904.592914,21
+96988,466727.4961,963885.0256,886.7979702,21
+96989,466660.7412,962420.9556,817.42551,21
+96990,465335.2004,960631.0384,782.5687735,21
+96991,465474.4015,957866.3743,694.1759656,21
+96992,464708.8808,955808.3039,619.9199906,21
+96993,464334.9119,955925.7635,468.4890785,21
+96994,463801.9542,954095.0536,434.3274046,21
+96995,464302.2272,953431.7319,434.3303902,21
+96996,463314.5078,953017.5692,399.9713545,21
+96997,462829.1692,951082.1796,382.7150781,21
+96998,462627.0285,950659.939,365.4042551,21
+96999,462360.3022,950213.3073,330.6088526,21
+97000,462394.3391,948611.0394,330.6105829,21
+97001,461841.5349,948613.7104,277.9506724,21
+97002,461506.1811,946975.0855,295.5715919,21
+97003,461544.3975,945993.2639,242.4992087,21
+97004,460926.8889,945593.8956,224.6575463,21
+97005,461144.9726,944958.4104,224.6583451,21
+97006,460504.0124,943688.1906,188.7168581,21
+97007,460835.2448,942962.675,170.6047408,21
+97008,459896.15,942055.2156,152.3872498,21
+97009,460191.4672,941539.9883,115.5911677,21
+97010,460163.7696,940051.6777,115.5913799,21
+97011,459513.4977,939623.4635,78.20331539,21
+97012,460252.5599,938859.6509,59.21963655,21
+97013,458825.5938,937631.3031,39.97549564,21
+97014,459861.1747,937519.2518,20.36249737,21
+97015,459011.0584,935749.0177,0,21
+97016,458827.567,935616.7236,0,21
+97017,458882.0313,934270.9425,0,21
+97018,459205.4838,933962.7392,0,21
+97019,458678.4384,932400.5721,0,21
+97020,459912.3091,932415.9096,0,21
+97021,457060.6283,930080.1376,0,21
+97022,455647.8927,928161.2929,0,21
+97023,454084.3921,927467.6773,0,21
+97024,452910.4269,925078.0906,0,21
+97025,451447.9414,923476.4131,0,21
+97026,449677.3814,921982.2482,0,21
+97027,448346.0294,919968.1345,0,21
+97028,447133.5546,918629.0528,0,21
+97029,445566.0587,916567.8882,0,21
+97030,444072.507,915324.6928,0,21
+97031,443091.1225,913462.6257,0,21
+97032,441134.227,911676.3482,0,21
+97033,439794.248,910219.0358,0,21
+97034,438564.3328,908616.7004,0,21
+97035,437207.189,906453.4003,0,21
+97036,435825.9124,905321.962,0,21
+97037,434354.745,903338.9775,0,21
+97038,432810.0075,901415.0954,0,21
+97039,431789.8612,900308.4221,0,21
+97040,430160.6353,898494.0027,0,21
+97041,428959.4713,896311.1604,0,21
+97042,427422.0221,895093.3648,0,21
+97043,426541.8412,893055.6263,0,21
+97044,424324.1914,891928.2908,0,21
+97045,423889.9755,889568.1734,0,21
+97046,421810.7051,888740.4472,0,21
+97047,420788.9586,886262.8508,0,21
+97048,419726.3382,884921.2137,0,21
+97049,417943.9039,882948.6428,0,21
+97050,416850.598,882177.6453,0,21
+97051,415104.7439,879179.0184,0,21
+97052,413357.9423,878040.6953,0,21
+97053,412213.9129,875331.798,0,21
+97054,410375.3234,873810.7599,0,21
+97055,408755.8493,872102.3079,0,21
+97056,407148.8684,869850.5341,0,21
+97057,405519.2702,867907.0876,0,21
+97058,404013.5507,865442.3975,0,21
+97059,402218.8863,864055.3189,0,21
+97060,400980.8578,862004.2294,0,21
+97061,398963.8032,859651.2838,0,21
+97062,397714.5746,858213.3162,0,21
+97063,395708.5746,856014.5403,0,21
+97064,393988.0434,853871.4635,0,21
+97065,392584.7832,851740.9469,0,21
+97066,391174.1123,849954.9567,0,21
+97067,389208.1902,848071.0336,0,21
+97068,387560.5825,845494.6657,0,21
+97069,385943.7485,844343.4313,0,21
+97070,384263.9058,841402.5934,0,21
+97071,382826.9752,839981.1559,0,21
+97072,380888.9604,837983.7519,0,21
+97073,379679.9485,835622.973,0,21
+97074,377400.3167,834122.0725,0,21
+97075,376520.6509,831261.4116,0,21
+97076,374028.8715,830000.4592,0,21
+97077,372754.0332,827750.7304,0,21
+97078,371256.1374,825571.4488,0,21
+97079,369263.8237,823848.622,0,21
+97080,367983.586,821711.9111,0,21
+97081,370327.0035,823393.4289,0,21
+97082,369731.3875,821606.682,0,21
+97083,366983.6098,819252.7838,0,21
+97084,365848.9744,817286.9485,0,21
+97085,364153.538,814298.711,0,21
+97086,362656.7322,812934.6757,0,21
+97087,360819.2123,809958.461,0,21
+97088,359282.6644,808380.272,0,21
+97089,357631.8614,805430.3191,0,21
+97090,355970.6413,803020.1111,0,21
+97091,354248.5876,801335.6958,0,21
+97092,352908.9819,798929.8408,0,21
+97093,351123.4647,796407.5062,0,21
+97094,349287.3154,794175.6794,0,21
+97095,347766.8799,792010.8866,0,21
+97096,346022.3741,789645.3102,0,21
+97097,344247.2807,787601.6565,0,21
+97098,342589.0818,784902.0781,0,21
+97099,341129.2822,782827.4623,0,21
+97100,339085.6321,780697.8163,0,21
+97101,337701.1431,778231.347,0,21
+97102,335774.3708,775370.3423,0,21
+97103,334359.4043,774468.5281,0,21
+97104,332736.7588,770427.2471,0,21
+97105,330958.578,769634.5213,0,21
+97106,329123.7476,766611.527,0,21
+97107,327892.3646,764003.4472,0,21
+97108,326070.7436,762764.937,0,21
+97109,324438.6729,759221.6034,0,21
+97110,322467.1351,757910.9591,0,21
+97111,321533.7049,754710.966,0,21
+97112,319560.7194,752744.7998,0,21
+97113,318410.3979,750923.6708,0,21
+97114,317071.3851,747485.0924,0,21
+97115,315496.9375,746108.0221,0,21
+97116,314368.0958,743445.1129,0,21
+97117,313022.2219,741233.7781,0,21
+97118,311196.3415,739324.2315,0,21
+97119,310106.8994,736102.7808,0,21
+97120,308768.9243,734729.6604,0,21
+97121,307378.1369,732315.6404,0,21
+97122,306117.5366,729531.435,0,21
+97123,304682.0063,727444.304,0,21
+97124,303449.3588,725262.3675,0,21
+97125,301802.2484,723111.9434,0,21
+97126,300845.1595,720448.0755,0,21
+97127,299337.3287,718628.619,0,21
+97128,297992.1158,715670.722,0,21
+97129,296943.2588,714238.0683,0,21
+97130,295126.4116,711238.8494,0,21
+97131,294353.4693,709231.8719,0,21
+97132,292769.7312,707315.3018,0,21
+97133,291324.3038,704626.2681,0,21
+97134,290571.302,702469.433,0,21
+97135,288452.8103,700309.4579,0,21
+97136,288081.4731,698072.0079,0,21
+97137,286269.1875,695520.2823,0,21
+97138,285059.155,693718.3976,0,21
+97139,283771.5579,690836.1,0,21
+97140,282580.1109,689117.2923,0,21
+97141,275787.2659,682759.6122,0,21
+97142,273703.6249,680512.2114,0,21
+97143,272262.0249,678994.6443,0,21
+97144,269612.3709,677287.2214,0,21
+97145,268315.7915,675216.3336,0,21
+97146,266219.1871,673473.7647,0,21
+97147,264079.0319,671498.2519,0,21
+97148,262460.9764,669726.0153,0,21
+97149,260374.3975,667829.91,0,21
+97150,258366.2903,666179.9096,0,21
+97151,256733.5246,664295.244,0,21
+97152,254654.3502,662160.9769,0,21
+97153,252472.8703,660591.1651,0,21
+97154,251167.6984,658784.6389,0,21
+97155,248814.2853,656461.9612,0,21
+97156,246990.227,655115.3793,0,21
+97157,245116.0864,652993.9406,0,21
+97158,243350.9676,651153.177,0,21
+97159,241260.7241,649426.9889,0,21
+97160,239236.252,647406.1353,0,21
+97161,237397.0998,645449.7749,0,21
+97162,235846.7884,643849.0019,0,21
+97163,233572.3594,641996.8773,0,21
+97164,231783.8569,640098.8487,0,21
+97165,229778.4826,637867.2585,0,21
+97166,228088.0446,636342.9167,0,21
+97167,225957.0813,634501.5858,0,21
+97168,224285.3977,632700.2812,0,21
+97169,222135.0786,630435.1927,0,21
+97170,220658.2223,628860.0181,0,21
+97171,218291.0849,627883.2859,0,21
+97172,216858.4122,625441.1618,0,21
+97173,215421.6096,624673.6572,0,21
+97174,213311.5936,622824.3518,0,21
+97175,211709.3898,621534.2183,0,21
+97176,210132.0653,620263.7005,0,21
+97177,208146.7281,618784.475,0,21
+97178,206436.2753,617193.3546,0,21
+97179,205276.0857,616300.2867,0,21
+97180,203012.4564,614398.7313,0,21
+97181,201529.3998,613454.1121,0,21
+97182,199957.6984,611917.576,0,21
+97183,198059.7346,610572.8235,0,21
+97184,196567.1989,609171.3542,0,21
+97185,195008.4929,608485.5375,0,21
+97186,193207.7622,607561.8998,0,21
+97187,191528.1541,605859.5067,0,21
+97188,189990.7772,604736.0913,0,21
+97189,188145.9304,603171.1728,0,21
+97190,186910.2221,602289.7533,0,21
+97191,185109.8541,600468.5257,0,21
+97192,183061.9815,600013.0322,0,21
+97193,182108.3417,597686.4955,0,21
+97194,179886.5648,597288.5374,0,21
+97195,178777.1867,595629.1959,0,21
+97196,177004.2095,594523.8696,0,21
+97197,175166.5551,593160.5837,0,21
+97198,173839.7282,591856.2332,0,21
+97199,172081.1772,590933.3767,0,21
+97200,170630.2049,589098.7,0,21
+97201,194339.5681,619405.9406,0,21
+97202,194386.0738,620044.1146,0,21
+97203,194272.8897,619726.7287,0,21
+97204,193661.9399,620290.2241,0,21
+97205,193447.1377,620369.0785,0,21
+97206,193273.2608,620789.6983,0,21
+97207,192643.2129,620644.2708,0,21
+97208,192487.5462,621619.2489,0,21
+97209,192302.6317,621006.5181,0,21
+97210,191878.7356,622377.2929,0,21
+97211,191696.1993,622033.927,0,21
+97212,191523.0367,622153.5847,0,21
+97213,190806.8994,622386.8642,0,21
+97214,191064.9456,622162.38,0,21
+97215,190304.6413,622775.4624,0,21
+97216,190438.8888,622935.6142,0,21
+97217,189844.0928,623237.7157,0,21
+97218,189610.8827,623419.8395,0,21
+97219,189488.2542,623997.1088,0,21
+97220,189153.7538,623695.2308,0,21
+97221,188654.8477,624431.8132,0,21
+97222,188627.0778,624576.7656,0,21
+97223,188009.8634,624975.8399,0,21
+97224,188254.7984,624893.824,0,21
+97225,187598.7145,625265.0224,0,21
+97226,187145.7138,625680.9072,0,21
+97227,187228.1513,626006.7699,0,21
+97228,187029.4175,625972.2695,0,21
+97229,186111.3517,626188.3644,0,21
+97230,186339.5148,626831.7529,0,21
+97231,185809.2989,627003.9804,0,21
+97232,185664.2854,626629.3621,0,21
+97233,184501.4818,627688.7339,0,21
+97234,184759.2,627148.5967,0,21
+97235,184068.7105,627543.1429,0,21
+97236,183601.5676,627818.3895,0,21
+97237,183348.7029,627849.8406,0,21
+97238,182545.5318,627916.2715,0,21
+97239,182325.54,628660.6762,0,21
+97240,181949.5821,628141.2135,0,21
+97241,181309.5814,628823.6464,0,21
+97242,181075.6604,628500.8133,0,21
+97243,180363.4852,629348.7021,0,21
+97244,180037.963,628672.6662,0,21
+97245,179657.1872,629423.5937,0,21
+97246,178990.151,629442.9952,0,21
+97247,178768.8155,629703.6546,0,21
+97248,178074.6342,629710.9228,0,21
+97249,177719.8766,629861.9263,0,21
+97250,177354.9943,630085.9865,0,21
+97251,176526.8598,630352.9707,0,21
+97252,176456.6368,630381.2174,0,21
+97253,175723.1096,630597.6609,0,21
+97254,175430.3952,630683.835,0,21
+97255,174702.8906,630878.5772,0,21
+97256,174457.0769,631130.4313,0,21
+97257,173939.7534,631361.8269,0,21
+97258,173623.5364,631238.3924,0,21
+97259,172833.4775,631565.3269,0,21
+97260,172926.0877,631764.0906,0,21
+97261,147678.0259,601404.6261,0,21
+97262,146448.3864,601133.062,0,21
+97263,146061.5467,600561.2718,0,21
+97264,145328.2851,600153.9586,0,21
+97265,144644.4409,600200.2829,0,21
+97266,144237.7546,599331.8252,0,21
+97267,142960.0121,599180.8101,0,21
+97268,143011.4945,598917.838,0,21
+97269,141912.0604,598528.6242,0,21
+97270,141539.1005,597825.0332,0,21
+97271,140594.7245,598086.3177,0,21
+97272,140262.3531,597080.6484,0,21
+97273,139263.5411,597011.2296,0,21
+97274,138716.8115,596717.1363,0,21
+97275,138394.2314,596081.024,0,21
+97276,137342.9833,596349.2415,0,21
+97277,136904.9895,595295.6237,0,21
+97278,136191.7841,595297.0376,0,21
+97279,135532.2409,594684.1539,0,21
+97280,135222.415,594914.229,0,21
+97281,134075.5235,594018.8961,0,21
+97282,133876.1951,593930.1751,0,21
+97283,132917.7447,593621.1943,0,21
+97284,132543.4824,593179.0177,0,21
+97285,131992.149,593177.4594,0,21
+97286,131260.223,592494.616,0,21
+97287,130432.1106,592523.0113,0,21
+97288,130434.3439,591673.2321,0,21
+97289,129205.8099,592299.978,0,21
+97290,128920.4634,591159.1351,0,21
+97291,128159.2914,591419.6741,0,21
+97292,127660.5852,590995.5537,0,21
+97293,126949.3801,590539.4917,0,21
+97294,126224.0788,590750.8603,0,21
+97295,125684.7863,590307.9384,0,21
+97296,124789.6633,590108.2641,0,21
+97297,124512.2507,589824.641,0,21
+97298,123531.8066,589954.5977,0,21
+97299,123049.3672,589269.0985,0,21
+97300,122439.822,590015.1069,0,21
+97301,121666.9971,588599.3779,0,21
+97302,121067.0889,589284.2629,0,21
+97303,120505.7525,588781.5023,0,21
+97304,119921.9687,588661.7851,0,21
+97305,119143.5268,588282.6172,0,21
+97306,118818.0268,588496.3186,0,21
+97307,117921.6607,588439.4347,0,21
+97308,117404.207,587566.5807,0,21
+97309,116840.7603,588335.6774,0,21
+97310,116012.3828,587493.5717,0,21
+97311,115768.4547,587640.2084,0,21
+97312,114830.1443,587826.0423,0,21
+97313,114149.3656,587238.189,0,21
+97314,113761.0504,587429.8456,0,21
+97315,113089.6733,587282.2527,0,21
+97316,112154.3437,586750.9034,0,21
+97317,111863.5653,587441.0989,0,21
+97318,111187.1831,586535.7803,0,21
+97319,110417.7211,586776.3443,0,21
+97320,110604.6989,587034.0322,0,21
+97321,116044.3208,591565.9113,0,21
+97322,115783.3563,592280.6833,0,21
+97323,116280.1456,593143.9233,0,21
+97324,116625.8434,592901.1513,0,21
+97325,116546.7795,594235.1256,0,21
+97326,117059.1311,594171.3181,0,21
+97327,117173.2452,594428.3265,0,21
+97328,117196.3728,595587.4372,0,21
+97329,117835.0738,595389.869,0,21
+97330,117686.2594,596319.5878,0,21
+97331,117980.3633,596090.973,0,21
+97332,118265.2649,597604.6596,0,21
+97333,118546.6551,597458.8336,0,21
+97334,118505.9843,597827.869,0,21
+97335,118963.9302,598565.1294,0,21
+97336,119026.8404,598802.7139,0,21
+97337,119280.0812,599671.9786,0,21
+97338,119616.3551,599772.9897,0,21
+97339,119762.7749,600341.476,0,21
+97340,119934.4817,601323.2599,0,21
+97341,120095.5502,600679.5522,0,21
+97342,120362.3116,602500.8452,0,21
+97343,120640.0396,602242.1642,0,21
+97344,120887.7159,602704.5133,0,21
+97345,120728.7072,603434.0038,0,21
+97346,121595.6655,603894.8716,0,21
+97347,121555.8896,604258.5471,0,21
+97348,121616.7707,604795.7269,0,21
+97349,122004.5891,605472.6474,0,21
+97350,122326.3139,605927.6938,0,21
+97351,122771.0728,606155.0822,0,21
+97352,122701.9696,607076.1294,0,21
+97353,123609.594,607296.8118,0,21
+97354,123507.9992,607879.3987,0,21
+97355,124331.0213,608945.6445,0,21
+97356,124251.9521,608724.854,0,21
+97357,125056.479,609549.4879,0,21
+97358,125224.2378,610216.437,0,21
+97359,125639.7574,610755.1322,0,21
+97360,126012.8049,611309.5836,0,21
+97361,126630.4474,611633.8822,0,21
+97362,126704.9351,612706.3606,0,21
+97363,127499.4435,612791.2982,0,21
+97364,127356.9351,613605.4841,0,21
+97365,128518.966,613759.1528,0,21
+97366,128093.5661,614803.9613,0,21
+97367,129245.9066,615167.6651,0,21
+97368,129279.386,615922.8291,0,21
+97369,129830.7896,616370.2658,0,21
+97370,130092.4496,616803.954,0,21
+97371,130771.5787,617483.3051,0,21
+97372,131241.4849,618426.7353,0,21
+97373,131416.9721,618485.2879,0,21
+97374,131896.8739,619240.8733,0,21
+97375,132505.8242,619825.3362,0,21
+97376,132917.3192,620423.691,0,21
+97377,133308.742,621325.1165,0,21
+97378,133741.6998,621200.3875,0,21
+97379,134211.657,622668.0951,0,21
+97380,134810.3181,622541.8652,0,21
+97381,128214.2254,618396.9277,0,21
+97382,128230.4026,618210.926,0,21
+97383,127252.3993,618471.417,0,21
+97384,127047.5558,618914.9382,0,21
+97385,126611.5217,618777.8331,0,21
+97386,126150.7242,619203.358,0,21
+97387,125458.8808,619335.7647,0,21
+97388,125242.1972,619539.3101,0,21
+97389,124576.6801,619595.565,0,21
+97390,124189.0021,619967.4703,0,21
+97391,123689.7508,620083.4142,0,21
+97392,123478.3497,620521.9964,0,21
+97393,122825.3514,620375.4994,0,21
+97394,122376.5568,620768.2436,0,21
+97395,122203.4917,621135.7627,0,21
+97396,121291.5615,621001.8777,0,21
+97397,121413.6802,621643.4822,0,21
+97398,120311.2968,621446.2202,0,21
+97399,120520.6055,621928.5974,0,21
+97400,119616.2228,622152.8483,0,21
+97401,119358.587,622169.4499,0,21
+97402,118936.5536,622372.4267,0,21
+97403,118349.1138,623028.091,0,21
+97404,118236.6495,622901.2865,0,21
+97405,117248.9837,623122.9216,0,21
+97406,117435.386,623400.5914,0,21
+97407,116467.8309,623546.6523,0,21
+97408,116433.6916,624214.822,0,21
+97409,115932.2407,623654.5848,0,21
+97410,115401.884,624547.5646,0,21
+97411,114743.4398,624724.9021,0,21
+97412,114564.9753,624443.1659,0,21
+97413,113802.195,625228.2286,0,21
+97414,113408.9917,625423.5602,0,21
+97415,112910.0031,625145.6025,0,21
+97416,112331.8187,626180.2462,0,21
+97417,112104.6532,626105.9491,0,21
+97418,111164.2182,626093.5315,0,21
+97419,110861.6001,626621.7467,0,21
+97420,110323.9901,626858.1512,0,21
+97421,109895.2182,627005.1963,0,21
+97422,109181.0134,627650.6779,0,21
+97423,108891.1011,627191.9738,0,21
+97424,108185.3917,627876.2296,0,21
+97425,107820.5645,628106.7993,0,21
+97426,107099.9886,628556.7847,0,21
+97427,106896.4091,628503.8871,0,21
+97428,105986.392,628999.1449,0,21
+97429,105712.4293,628970.0672,0,21
+97430,104874.3868,629334.2325,0,21
+97431,104691.2671,629754.3715,0,21
+97432,103978.0737,630156.5992,0,21
+97433,103535.3423,630044.6963,0,21
+97434,102627.3164,630236.3274,0,21
+97435,102607.8679,630766.3836,0,21
+97436,101695.1542,631239.6142,0,21
+97437,101417.6601,630869.2237,0,21
+97438,100741.022,631802.4428,0,21
+97439,100066.282,631746.0279,0,21
+97440,99821.33787,631902.5616,0,21
+97441,98894.27239,632244.3089,0,21
+97442,98547.02304,632108.6097,0,21
+97443,97919.11169,632151.4578,0,21
+97444,97377.94509,632380.0355,0,21
+97445,96709.86392,632203.67,0,21
+97446,96203.37491,632450.8111,0,21
+97447,95561.19974,632522.7759,0,21
+97448,95061.53306,632360.734,0,21
+97449,94446.40336,632574.2361,0,21
+97450,93939.09366,632442.3476,0,21
+97451,93017.36604,632832.8119,0,21
+97452,92819.78166,632767.2565,0,21
+97453,91968.07167,632479.1019,0,21
+97454,91589.73932,632611.9548,0,21
+97455,90696.4961,633282.3236,0,21
+97456,90378.0055,632383.4525,0,21
+97457,89757.31,633158.6534,0,21
+97458,88823.36596,632953.854,0,21
+97459,88395.046,633108.2985,0,21
+97460,88065.98665,632867.1423,0,21
+97461,87062.77013,633392.4831,0,21
+97462,86442.70565,632890.9641,0,21
+97463,86037.12879,633123.4718,0,21
+97464,85382.85391,633416.6934,0,21
+97465,84490.69746,633124.8115,0,21
+97466,84280.51459,633350.5277,0,21
+97467,83347.20323,633448.2276,0,21
+97468,82697.37768,633611.6227,0,21
+97469,82142.39717,633288.1675,0,21
+97470,81572.53327,633460.9723,0,21
+97471,80945.85564,633710.447,0,21
+97472,80761.82771,633420.136,0,21
+97473,80512.39759,633656.9997,0,21
+97474,80185.08728,633309.578,0,21
+97475,79712.29909,633701.6447,0,21
+97476,79672.529,633436.3389,0,21
+97477,79294.09602,633535.6256,0,21
+97478,78902.97698,633556.592,0,21
+97479,79069.39536,633161.2804,0,21
+97480,78369.29921,634022.3509,0,21
+97481,78507.16531,633146.2642,0,21
+97482,78047.10606,633350.2523,0,21
+97483,78063.12481,633448.976,0,21
+97484,77440.7211,633544.6777,0,21
+97485,77913.75994,633357.5076,0,21
+97486,77271.29496,633350.0053,0,21
+97487,77105.56573,633383.6722,0,21
+97488,77390.66472,633556.3722,0,21
+97489,76534.86066,633061.3943,0,21
+97490,76804.4058,633645.1062,0,21
+97491,76870.37016,633030.6182,0,21
+97492,76063.7258,633457.5337,0,21
+97493,76471.94295,633321.5832,0,21
+97494,76115.09448,633198.2882,0,21
+97495,76076.22613,633289.3923,0,21
+97496,76008.53712,633258.6051,0,21
+97497,75614.21156,633188.2762,0,21
+97498,75793.45848,633251.2396,0,21
+97499,75493.33285,633199.7817,0,21
+97500,75412.55172,633768.9401,0,21
+97501,130376.9683,689695.3535,0,21
+97502,133723.4276,692979.0275,0,21
+97503,134934.397,693127.7784,0,21
+97504,136570.6463,703898.4844,0,21
+97505,137777.6186,705031.6252,0,21
+97506,139183.7386,703590.2349,0,21
+97507,140732.6278,705264.6467,0,21
+97508,142010.4235,706581.6135,0,21
+97509,143212.01,707854.6402,0,21
+97510,144760.4267,708094.5349,0,21
+97511,146132.4766,709069.2735,0,21
+97512,147357.8162,710622.9596,0,21
+97513,148724.125,710557.3473,0,21
+97514,150137.8359,711971.9414,0,21
+97515,151395.5518,712921.4432,0,21
+97516,152729.3674,713335.1317,0,21
+97517,153904.4801,714189.5081,0,21
+97518,155528.2188,714879.011,0,21
+97519,156558.4193,715759.8087,0,21
+97520,158037.7932,716579.4929,0,21
+97521,158870.0947,717175.2055,0,21
+97522,160704.7295,717903.4394,0,21
+97523,161481.1893,718479.6981,0,21
+97524,163116.0521,719312.0278,0,21
+97525,164005.4542,719611.4674,0,21
+97526,165333.2778,720743.2178,0,21
+97527,166666.3334,720721.8563,0,21
+97528,167550.6227,721905.4841,0,21
+97529,169240.0106,722297.609,0,21
+97530,169754.3351,723015.7573,0,21
+97531,171278.5255,722928.6413,0,21
+97532,172142.1331,724125.6774,0,21
+97533,172861.491,724880.5485,0,21
+97534,173984.5049,724340.4053,0,21
+97535,174844.6444,725930.437,0,21
+97536,175682.7113,725735.0272,0,21
+97537,176889.9516,726460.0852,0,21
+97538,177265.5318,726329.056,0,21
+97539,178662.6624,727685.4292,0,21
+97540,179066.9025,727495.7202,0,21
+97541,180076.5057,727599.8894,0,21
+97542,180825.5408,727852.8179,0,21
+97543,182656.0119,728261.1967,0,21
+97544,183079.4601,729284.8159,0,21
+97545,184056.4087,728539.9484,0,21
+97546,184964.6757,730059.7497,0,21
+97547,185845.9663,729613.0632,0,21
+97548,186737.9038,730564.8717,0,21
+97549,187201.6911,730500.7423,0,21
+97550,188257.8284,730971.4407,0,21
+97551,189105.8249,731690.1659,0,21
+97552,190065.3456,731751.1599,0,21
+97553,190356.9969,731935.3795,0,21
+97554,191512.0676,732872.171,0,21
+97555,192162.8114,731965.1903,0,21
+97556,192778.6393,733987.8027,0,21
+97557,194007.4368,733146.9649,0,21
+97558,194266.9157,733999.379,0,21
+97559,194829.524,734163.4453,0,21
+97560,196399.5041,734631.3414,0,21
+97561,212482.7636,756794.1865,0,21
+97562,215113.1953,759817.9245,0,21
+97563,215269.0627,761671.0407,0,21
+97564,216389.5329,762564.4678,0,21
+97565,217417.9911,764006.0492,0,21
+97566,222479.6914,766584.1906,0,21
+97567,221764.9092,766784.952,0,21
+97568,224835.0881,769451.7761,0,21
+97569,225904.9211,770139.6043,0,21
+97570,227153.263,771942.3606,0,21
+97571,228288.4556,773881.7136,0,21
+97572,228737.0817,774729.5859,0,21
+97573,230344.6796,776567.859,0,21
+97574,230479.3077,778218.2917,0,21
+97575,232154.9294,779338.567,0,21
+97576,232701.2618,781007.0037,0,21
+97577,233524.2628,782100.4281,0,21
+97578,235192.4082,784132.9386,0,21
+97579,235353.0372,784947.4123,0,21
+97580,236595.748,786793.1972,0,21
+97581,237222.5438,787953.4013,0,21
+97582,238477.077,790041.697,0,21
+97583,238535.8379,799142.1819,0,21
+97584,240253.7357,803572.902,0,21
+97585,240604.7442,802603.3062,0,21
+97586,241447.0182,806298.2349,0,21
+97587,242176.2327,808916.1672,0,21
+97588,242897.5856,810373.3234,0,21
+97589,243856.1737,812499.0031,0,21
+97590,244351.2428,814921.4367,0,21
+97591,245278.0762,818099.6163,0,21
+97592,246095.7489,818367.6388,0,21
+97593,246515.6787,821635.0823,0,21
+97594,247440.0472,822432.8273,0,21
+97595,248070.3519,825762.8287,0,21
+97596,248937.8849,827148.4121,0,21
+97597,249280.5433,829398.7963,0,21
+97598,250063.3244,831193.5937,0,21
+97599,250981.5845,833437.0314,0,21
+97600,251277.4943,834929.6262,0,21
+97601,252229.9874,836502.4113,0,21
+97602,252548.7352,839568.6487,0,21
+97603,253479.123,840366.6908,0,21
+97604,253940.7724,842720.5641,0,21
+97605,254697.1323,843594.4434,0,21
+97606,254946.8115,847326.5535,0,21
+97607,255995.0321,846803.2339,0,21
+97608,256341.4851,851422.613,0,21
+97609,256727.2763,850451.459,0,21
+97610,261459.3649,854605.0289,0,21
+97611,265711.8308,854865.4931,0,21
+97612,264572.3555,857273.6083,0,21
+97613,267227.8629,858925.2429,0,21
+97614,266784.0677,859822.2495,0,21
+97615,269671.8803,862685.0613,0,21
+97616,269928.1269,864442.5794,0,21
+97617,271379.2839,864541.4133,0,21
+97618,272221.9554,868248.1605,0,21
+97619,272997.8588,868943.2355,0,21
+97620,273577.6462,870317.8514,0,21
+97621,274500.1688,873443.6494,0,21
+97622,276155.3576,872359.2291,0,21
+97623,277033.2308,876532.1966,0,21
+97624,278232.144,875696.588,0,21
+97625,277608.5283,876727.5839,0,21
+97626,279958.5974,879042.9873,0,21
+97627,280420.3007,878965.5783,0,21
+97628,280779.6845,880604.232,0,21
+97629,281779.6446,882529.8804,0,21
+97630,282307.8802,881564.9327,0,21
+97631,283716.8538,884990.4243,0,21
+97632,283794.3545,883876.719,0,21
+97633,285060.5909,886725.03,0,21
+97634,285253.4241,886696.7565,0,21
+97635,285668.5925,887549.1881,0,21
+97636,287481.7614,889951.0175,0,21
+97637,287823.2832,890578.4676,0,21
+97638,288245.437,890590.7574,0,21
+97639,289089.7326,892343.4342,0,21
+97640,289902.4649,893108.9206,0,21
+97641,289780.4725,894826.1273,0,21
+97642,291527.9842,894129.9809,0,21
+97643,292064.7241,897424.3409,0,21
+97644,291974.9346,896189.6811,0,21
+97645,293931.1897,899205.4479,0,21
+97646,293029.7462,898225.508,0,21
+97647,294285.2727,900202.4568,0,21
+97648,295591.3797,900679.3485,0,21
+97649,295462.0202,902730.5898,0,21
+97650,296248.2541,902594.2549,0,21
+97651,297313.722,904329.781,0,21
+97652,297172.4333,904089.1698,0,21
+97653,297421.0725,906514.0094,0,21
+97654,299132.3943,906155.0556,0,21
+97655,299677.3157,908961.421,0,21
+97656,299404.9269,907654.5664,0,21
+97657,300423.7153,909138.4661,0,21
+97658,300664.4457,911046.3153,0,21
+97659,301861.4059,911383.2603,0,21
+97660,302149.7818,912018.9499,0,21
+97661,302279.7616,913216.2076,0,21
+97662,303599.3799,914209.7594,0,21
+97663,303716.1426,914767.245,0,21
+97664,304353.1993,916375.6323,0,21
+97665,305266.0972,915872.3006,0,21
+97666,305566.2111,917807.9213,0,21
+97667,305137.526,918393.9012,0,21
+97668,306998.0104,919733.0516,0,21
+97669,306988.4454,919189.5468,0,21
+97670,307742.6115,921739.3621,0,21
+97671,308070.5646,921092.862,0,21
+97672,308257.4675,923245.3701,0,21
+97673,309408.5632,924139.6663,0,21
+97674,309162.1292,924012.1012,0,21
+97675,310038.3628,925726.4708,0,21
+97676,310630.4392,925515.1453,0,21
+97677,310472.1242,927508.1977,0,21
+97678,312009.8503,927035.1621,0,21
+97679,312014.3163,929363.0916,1212.016108,21
+97680,311538.2871,929330.5733,1212.039365,21
+97681,323515.6025,937681.1753,1787.050667,21
+97682,323647.4227,940372.3351,2351.409805,21
+97683,325898.9343,941361.9305,2351.497306,21
+97684,327077.5173,941531.7286,2630.485298,21
+97685,328239.3305,943975.0837,2907.586127,21
+97686,328288.1569,943031.6824,2907.71974,21
+97687,330723.773,945055.3165,3320.098784,21
+97688,331435.0212,945747.1685,3183.266522,21
+97689,332179.8851,946748.1249,3729.142578,21
+97690,333387.6068,946943.6712,3593.496888,21
+97691,334389.9771,948961.6803,4000.240967,21
+97692,335612.6849,947802.3179,4000.493049,21
+97693,335986.6549,950458.5019,4135.576688,21
+97694,337602.3306,950392.0489,4655.941892,21
+97695,338180.336,951061.783,4596.742419,21
+97696,339436.6819,951211.3622,4979.382499,21
+97697,339261.9867,953999.7731,5034.710269,21
+97698,341614.0583,952061.8757,5300.795096,21
+97699,342676.5647,954136.5058,5487.818016,21
+97700,342232.5277,955260.1565,5620.444636,21
+97701,343907.5487,954371.8248,5788.569744,21
+97702,344186.2327,957560.9924,5956.203354,21
+97703,346158.1229,955626.7676,6219.260005,21
+97704,346179.555,958643.0674,6272.633071,21
+97705,348059.7838,958100.0411,6534.777452,21
+97706,347833.7309,958004.7922,6700.755925,21
+97707,349382.4444,960194.4185,6866.335133,21
+97708,349839.2282,959861.3515,6997.018556,21
+97709,351594.784,961270.5006,7162.024337,21
+97710,352416.8055,961405.5992,7447.376393,21
+97711,353249.0123,962687.2537,7473.910257,21
+97712,353660.7526,962994.4397,7732.717769,21
+97713,355093.9733,963650.5871,7784.713837,21
+97714,355675.7762,965201.068,8042.7743,21
+97715,356569.755,964193.642,8214.317548,21
+97716,356340.0983,965210.0347,8351.848576,21
+97717,357121.8487,966677.9167,8369.760889,21
+97718,358555.2494,966549.3919,8787.425641,21
+97719,358816.621,967832.0831,8677.859041,21
+97720,359733.1183,966313.0251,9094.281108,21
+97721,360657.4028,970296.7781,9095.555883,21
+97722,361740.6638,967559.7601,9256.995376,21
+97723,361582.5871,970464.7849,9401.64147,21
+97724,363449.1684,969510.4301,9546.122527,21
+97725,363609.663,971515.2378,9833.138767,21
+97726,364529.4838,970034.2175,9851.065611,21
+97727,365446.6658,972048.5846,9995.045072,21
+97728,365262.2869,972547.1617,10138.87268,21
+97729,367677.9305,972191.0745,10424.44415,21
+97730,367017.7633,972937.1078,10426.10445,21
+97731,368800.2253,973814.7219,10585.77032,21
+97732,367895.8707,974046.9751,10728.99621,21
+97733,370160.9174,974554.8799,11013.21489,21
+97734,370207.3524,975287.2084,11015.06023,21
+97735,371367.5714,975580.8048,11049.22421,21
+97736,371766.5783,975379.3294,11608.88912,21
+97737,373542.8052,976097.2063,11576.80463,21
+97738,372521.8087,976495.5672,11773.33521,21
+97739,374139.635,976644.8203,11943.00223,21
+97740,376347.8524,976132.0008,12146.31771,21
+97741,376077.3047,977250.4836,12308.1679,21
+97742,380019.4103,978721.5052,12499.85257,21
+97743,381683.2803,980525.7962,12627.60263,21
+97744,384534.1377,980545.8973,12853.93012,21
+97745,384895.9127,981844.0651,13118.87345,21
+97746,388002.6932,982269.0097,13050.40419,21
+97747,390113.2059,983574.0182,13469.7642,21
+97748,391064.1833,984159.0467,13508.43221,21
+97749,393911.401,984330.0202,13698.52165,21
+97750,394833.9264,987006.965,13841.16656,21
+97751,397855.3612,986095.8015,14154.64072,21
+97752,399176.0464,987927.7053,14207.28041,21
+97753,400575.0727,987483.5038,14225.96453,21
+97754,404073.285,990083.9206,14783.89067,21
+97755,404527.7016,989746.2929,14591.15246,21
+97756,406443.1968,990335.1312,14855.20477,21
+97757,409053.5894,993021.7587,15166.70362,21
+97758,410770.7593,991012.9555,15202.35081,21
+97759,413610.0786,994076.9492,15376.21192,21
+97760,413847.1955,994275.8593,15533.33183,21
+97761,416714.547,994397.1345,15843.63679,21
+97762,418660.8718,995585.7922,15742.53919,21
+97763,419734.8004,997221.6433,16157.11786,21
+97764,423145.364,996671.1902,16193.81175,21
+97765,423254.5659,999370.4033,16244.90958,21
+97766,426130.5416,998381.2877,16674.81301,21
+97767,428669.4206,1000067.478,16679.79418,21
+97768,429811.2439,1000330.189,16883.15899,21
+97769,431552.8702,1001736.279,16903.54594,21
+97770,433480.1985,1002049.369,17315.85601,21
+97771,435965.8038,1003204.552,17232.24422,21
+97772,437224.3271,1004153.162,17523.86923,21
+97773,439857.6611,1003782.572,17679.82862,21
+97774,441652.8457,1007081.664,18019.52874,21
+97775,443046.399,1004875.024,18128.14988,21
+97776,444859.3801,1008169.706,18376.52,21
+97777,447791.7521,1007598.085,18483.93293,21
+97778,448993.4238,1009355.611,18790.44698,21
+97779,449981.4103,1009013.277,18853.33407,21
+97780,453272.6833,1010434.606,19173.74959,21
+97781,454577.9348,1011081.598,19252.24807,21
+97782,456676.8845,1012886.144,19541.9158,21
+97783,458743.8053,1011375.111,19635.26783,21
+97784,460255.2844,1014247.273,19804.75812,21
+97785,462954.4451,1014735.345,20017.60369,21
+97786,463705.9968,1014924.044,20303.81464,21
+97787,466504.5345,1015670.296,20251.00693,21
+97788,467787.2502,1016534.721,20597.18207,21
+97789,469772.2183,1018559.95,20720.53479,21
+97790,472392.273,1017101.099,20843.78152,21
+97791,472921.1208,1019846.027,21132.04571,21
+97792,477034.0932,1019455.527,21313.82843,21
+97793,476392.123,1021469.494,22279.55959,21
+97794,479777.4707,1020057.271,22930.38467,21
+97795,481330.3739,1023730.866,22953.71169,21
+97796,483158.1957,1021766.011,23456.03606,21
+97797,485281.4805,1025007.469,23898.32176,21
+97798,486961.3849,1024168.466,24110.45487,21
+97799,489673.3311,1024779.692,24442.00673,21
+97800,490078.4323,1026579.213,25017.09282,15.6
+97801,0,0,0,15.6
+97802,0,0,0,15.6
+97803,0,0,0,15.6
+97804,0,76.94274288,0,15.6
+97805,0,0,1084782.196,15.6
+97806,0,0,0,15.6
+97807,339990.3214,268199.6444,0,15.6
+97808,0,0,0,15.6
+97809,0,0,0,15.6
+97810,0,0,0,15.6
+97811,0,0,0,15.6
+97812,0,0,0,15.6
+97813,0,0,0,15.6
+97814,0,0,0,15.6
+97815,0,264021.1446,0,15.6
+97816,0,0,0,15.6
+97817,0,0,0,15.6
+97818,0,0,0,15.6
+97819,0,0,0,15.6
+97820,0,0,0,15.6
+97821,0,0,0,15.6
+97822,0,0,0,15.6
+97823,0,632177.3507,0,15.6
+97824,0,0,0,15.6
+97825,0,0,0,15.6
+97826,0,0,0,15.6
+97827,0,0,0,15.6
+97828,0,0,0,15.6
+97829,0,0,0,15.6
+97830,0,0,0,15.6
+97831,0,263932.0825,0,15.6
+97832,0,0,0,15.6
+97833,0,0,0,15.6
+97834,0,0,0,15.6
+97835,0,0,0,15.6
+97836,0,0,0,15.6
+97837,0,0,0,15.6
+97838,0,0,0,15.6
+97839,0,263918.9756,1046899.356,15.6
+97840,0,0,0,15.6
+97841,0,0,0,15.6
+97842,0,0,0,15.6
+97843,339965.0823,0,0,15.6
+97844,0,0,0,15.6
+97845,0,0,0,15.6
+97846,0,0,0,15.6
+97847,0,263910.5951,0,15.6
+97848,0,0,0,15.6
+97849,0,0,0,15.6
+97850,0,0,0,15.6
+97851,0,0,0,15.6
+97852,0,0,0,15.6
+97853,0,0,0,15.6
+97854,0,0,0,15.6
+97855,0,263899.8179,0,15.6
+97856,0,0,0,15.6
+97857,0,0,0,15.6
+97858,0,0,0,15.6
+97859,0,0,0,15.6
+97860,0,0,0,15.6
+97861,0,0,0,15.6
+97862,0,0,0,15.6
+97863,0,264108.4847,0,15.6
+97864,0,368223.0764,0,15.6
+97865,0,0,0,15.6
+97866,0,0,0,15.6
+97867,0,0,0,15.6
+97868,0,0,0,15.6
+97869,0,0,0,15.6
+97870,0,0,0,15.6
+97871,0,264132.8473,0,15.6
+97872,0,0,0,15.6
+97873,0,0,1019908.243,15.6
+97874,0,0,0,15.6
+97875,0,0,0,15.6
+97876,0,0,0,15.6
+97877,0,0,0,15.6
+97878,0,0,0,15.6
+97879,0,264137.2406,0,15.6
+97880,339940.6344,0,0,15.6
+97881,0,0,0,15.6
+97882,0,0,0,15.6
+97883,0,0,0,15.6
+97884,0,0,0,15.6
+97885,0,0,0,15.6
+97886,0,0,0,15.6
+97887,0,264180.0717,0,15.6
+97888,0,0,0,15.6
+97889,0,0,0,15.6
+97890,0,0,0,15.6
+97891,0,0,0,15.6
+97892,0,0,0,15.6
+97893,0,0,0,15.6
+97894,0,0,0,15.6
+97895,0,264223.6727,0,15.6
+97896,0,0,0,15.6
+97897,0,0,0,15.6
+97898,0,0,0,15.6
+97899,0,0,0,15.6
+97900,0,0,0,15.6
+97901,0,0,0,15.6
+97902,0,0,0,15.6
+97903,0,264267.8104,0,15.6
+97904,0,0,0,15.6
+97905,0,368216.509,0,15.6
+97906,0,0,0,15.6
+97907,0,0,0,15.6
+97908,0,0,990046.1374,15.6
+97909,0,0,0,15.6
+97910,0,0,0,15.6
+97911,0,264305.2308,0,15.6
+97912,0,0,0,15.6
+97913,0,0,0,15.6
+97914,0,0,0,15.6
+97915,0,0,0,15.6
+97916,0,0,0,15.6
+97917,339916.5347,0,0,15.6
+97918,0,0,0,15.6
+97919,0,264354.2362,0,15.6
+97920,0,0,0,15.6
+97921,0,0,0,15.6
+97922,0,0,0,15.6
+97923,0,0,0,15.6
+97924,0,0,0,15.6
+97925,0,0,0,15.6
+97926,0,0,0,15.6
+97927,0,264335.6108,0,15.6
+97928,0,0,0,15.6
+97929,0,0,0,15.6
+97930,0,0,0,15.6
+97931,0,0,0,15.6
+97932,0,0,0,15.6
+97933,0,0,0,15.6
+97934,0,0,0,15.6
+97935,0,264321.4699,0,15.6
+97936,0,0,0,15.6
+97937,0,0,0,15.6
+97938,0,0,0,15.6
+97939,0,0,0,15.6
+97940,0,0,0,15.6
+97941,0,0,0,15.6
+97942,0,0,0,15.6
+97943,0,264331.8123,962764.5704,15.6
+97944,0,0,0,15.6
+97945,0,0,0,15.6
+97946,0,0,0,15.6
+97947,0,368217.3084,0,15.6
+97948,0,0,0,15.6
+97949,0,0,0,15.6
+97950,0,0,0,15.6
+97951,0,264330.2714,0,15.6
+97952,0,0,0,15.6
+97953,0,0,0,15.6
+97954,339893.6609,0,0,15.6
+97955,0,0,0,15.6
+97956,0,0,0,15.6
+97957,0,0,0,15.6
+97958,0,0,0,15.6
+97959,0,264322.6156,0,15.6
+97960,0,0,0,15.6
+97961,0,0,0,15.6
+97962,0,0,0,15.6
+97963,0,0,0,15.6
+97964,0,0,0,15.6
+97965,0,0,0,15.6
+97966,0,0,0,15.6
+97967,0,264323.8479,0,15.6
+97968,0,0,0,15.6
+97969,0,0,0,15.6
+97970,0,0,0,15.6
+97971,0,0,0,15.6
+97972,0,0,0,15.6
+97973,0,0,0,15.6
+97974,0,0,0,15.6
+97975,0,264339.4335,0,15.6
+97976,0,0,0,15.6
+97977,0,0,0,15.6
+97978,0,0,937855.6208,15.6
+97979,0,0,0,15.6
+97980,0,0,0,15.6
+97981,0,0,0,15.6
+97982,0,0,0,15.6
+97983,0,264332.7148,0,15.6
+97984,0,0,0,15.6
+97985,0,0,0,15.6
+97986,0,0,0,15.6
+97987,0,0,0,15.6
+97988,0,0,0,15.6
+97989,0,368222.4154,0,15.6
+97990,0,0,0,15.6
+97991,339871.6554,264305.1865,0,15.6
+97992,0,0,0,15.6
+97993,0,0,0,15.6
+97994,0,0,0,15.6
+97995,0,0,0,15.6
+97996,0,0,0,15.6
+97997,0,0,0,15.6
+97998,0,0,0,15.6
+97999,0,264297.9042,0,15.6
+98000,0,0,0,15.6
+98001,0,0,0,15.6
+98002,0,0,0,15.6
+98003,0,0,0,15.6
+98004,0,0,0,15.6
+98005,0,0,0,15.6
+98006,0,0,0,15.6
+98007,0,264296.8019,0,15.6
+98008,0,0,0,15.6
+98009,0,0,0,15.6
+98010,0,0,0,15.6
+98011,0,0,0,15.6
+98012,0,0,0,15.6
+98013,0,0,915111.5002,15.6
+98014,0,0,0,15.6
+98015,0,264302.8177,0,15.6
+98016,0,0,0,15.6
+98017,0,0,0,15.6
+98018,0,0,0,15.6
+98019,0,0,0,15.6
+98020,0,0,0,15.6
+98021,0,0,0,15.6
+98022,0,0,0,15.6
+98023,0,264315.8496,0,15.6
+98024,0,0,0,15.6
+98025,0,0,0,15.6
+98026,0,0,0,15.6
+98027,0,0,0,15.6
+98028,339849.2756,0,0,15.6
+98029,0,0,0,15.6
+98030,0,0,0,15.6
+98031,0,632556.0364,0,15.6
+98032,0,40599.26697,0,15.6
+98033,0,1713.813584,0,15.6
+98034,0,4125.733284,0,15.6
+98035,0,13842.82513,0,15.6
+98036,0,11929.78228,0,15.6
+98037,0,10699.58164,0,15.6
+98038,0,11339.68669,0,15.6
+98039,0,275786.3398,0,15.6
+98040,0,11556.25195,0,15.6
+98041,0,11654.73136,0,15.6
+98042,0,11635.65672,0,15.6
+98043,0,11804.35062,0,15.6
+98044,0,11832.03339,0,15.6
+98045,0,11949.37821,0,15.6
+98046,0,11948.16233,0,15.6
+98047,0,276471.7521,0,15.6
+98048,0,12110.19639,894346.3749,15.6
+98049,0,12234.69881,0,15.6
+98050,0,12277.20045,0,15.6
+98051,0,12343.79999,0,15.6
+98052,0,12452.04914,0,15.6
+98053,0,12476.89703,0,15.6
+98054,0,12580.4775,0,15.6
+98055,0,277072.7085,0,15.6
+98056,0,12751.59433,0,15.6
+98057,0,12751.13271,0,15.6
+98058,0,12923.44669,0,15.6
+98059,0,12914.85782,0,15.6
+98060,0,12999.04517,0,15.6
+98061,0,13136.13878,0,15.6
+98062,0,0,0,15.6
+98063,0,264455.6833,0,15.6
+98064,0,0,0,15.6
+98065,0,0,0,15.6
+98066,339828.8295,0,0,15.6
+98067,0,0,0,15.6
+98068,0,56083.73057,0,15.6
+98069,0,11.17211771,0,15.6
+98070,0,4687.148649,0,15.6
+98071,0,284189.5245,0,15.6
+98072,0,13726.91716,0,15.6
+98073,0,381879.5753,0,15.6
+98074,0,14138.25759,0,15.6
+98075,0,14181.76605,0,15.6
+98076,0,14286.20839,0,15.6
+98077,0,14320.79652,0,15.6
+98078,0,14407.41996,0,15.6
+98079,0,278999.8494,0,15.6
+98080,0,14528.36597,0,15.6
+98081,0,14616.68844,0,15.6
+98082,0,14702.70545,0,15.6
+98083,0,14745.47593,925368.0166,15.6
+98084,0,14839.70541,0,15.6
+98085,0,14863.21049,0,15.6
+98086,0,14997.5262,0,15.6
+98087,0,279565.9021,0,15.6
+98088,0,15091.01078,0,15.6
+98089,0,15180.17406,0,15.6
+98090,0,15275.25402,0,15.6
+98091,0,15266.50382,0,15.6
+98092,0,15422.92595,0,15.6
+98093,0,15433.22986,0,15.6
+98094,0,15527.59681,0,15.6
+98095,0,280155.1495,0,15.6
+98096,0,15671.91082,0,15.6
+98097,0,15716.04394,0,15.6
+98098,0,0,0,15.6
+98099,0,0,0,15.6
+98100,0,0,0,15.6
+98101,0,0,0,15.6
+98102,0,61975.93401,0,15.6
+98103,0,264534.3434,0,15.6
+98104,339811.1392,6357.846653,0,15.6
+98105,0,23397.68351,0,15.6
+98106,0,14778.6582,0,15.6
+98107,0,15764.92956,0,15.6
+98108,0,15901.1137,0,15.6
+98109,0,15961.56375,0,15.6
+98110,0,15878.1253,0,15.6
+98111,0,280436.4807,0,15.6
+98112,0,15884.72179,0,15.6
+98113,0,15838.68717,0,15.6
+98114,0,15855.81316,0,15.6
+98115,0,384045.3403,0,15.6
+98116,0,15803.86689,0,15.6
+98117,0,15804.45632,0,15.6
+98118,0,15797.26937,901757.5412,15.6
+98119,0,280307.1959,0,15.6
+98120,0,15774.15295,0,15.6
+98121,0,15728.68641,0,15.6
+98122,0,15745.1746,0,15.6
+98123,0,15705.57001,0,15.6
+98124,0,15728.68069,0,15.6
+98125,0,15680.50507,0,15.6
+98126,0,15705.56428,0,15.6
+98127,0,280140.2148,0,15.6
+98128,0,15663.97361,0,15.6
+98129,0,15625.15973,0,15.6
+98130,0,15667.93772,0,15.6
+98131,0,15571.90069,0,15.6
+98132,0,0,0,15.6
+98133,0,0,0,15.6
+98134,0,0,0,15.6
+98135,0,264494.6614,0,15.6
+98136,0,0,0,15.6
+98137,0,68182.56307,0,15.6
+98138,0,0,0,15.6
+98139,0,2563.649789,0,15.6
+98140,0,23483.09762,0,15.6
+98141,0,15015.77065,0,15.6
+98142,339804.7079,15066.48382,0,15.6
+98143,0,280047.5826,0,15.6
+98144,0,15471.04158,0,15.6
+98145,0,15510.9151,0,15.6
+98146,0,15476.37081,0,15.6
+98147,0,15454.36598,0,15.6
+98148,0,15369.91999,0,15.6
+98149,0,15441.76792,0,15.6
+98150,0,15376.51783,0,15.6
+98151,0,279823.3754,0,15.6
+98152,0,15376.51405,0,15.6
+98153,0,15287.80873,880357.083,15.6
+98154,0,15318.45801,0,15.6
+98155,0,15234.99609,0,15.6
+98156,0,15307.04686,0,15.6
+98157,0,383386.4732,0,15.6
+98158,0,15228.88024,0,15.6
+98159,0,279620.4773,0,15.6
+98160,0,15192.81683,0,17.8
+98161,90575.94676,1190167.307,0,17.8
+98162,68923.26058,283464.6232,0,17.8
+98163,36462.37493,93353.23602,0,17.8
+98164,7816.968974,293795.5829,0,17.8
+98165,32692.06449,294458.8594,0,17.8
+98166,27636.95882,248942.2389,0,17.8
+98167,25049.51409,485807.169,0,17.8
+98168,25484.49896,221144.6189,0,17.8
+98169,25523.11746,321283.8008,0,17.8
+98170,25351.32854,236756.5793,0,17.8
+98171,25342.54933,259383.2664,0,17.8
+98172,25195.00687,261151.1361,0,17.8
+98173,25191.90476,258971.9229,0,17.8
+98174,25083.2642,258787.5336,0,17.8
+98175,25060.78591,523959.7125,0,17.8
+98176,25029.70635,258990.5208,0,17.8
+98177,24914.95274,259398.4701,0,17.8
+98178,24884.93724,259785.4041,0,17.8
+98179,24858.4394,259415.0227,0,17.8
+98180,364595.7438,260072.2267,0,17.8
+98181,459134.6845,260253.2402,0,17.8
+98182,53487.05835,260471.2875,0,17.8
+98183,62960.41564,524933.0689,0,17.8
+98184,201973.5525,260793.6825,0,17.8
+98185,139770.9259,260915.6733,0,17.8
+98186,143626.0674,261791.3535,0,17.8
+98187,145941.1975,261574.4775,860945.294,17.8
+98188,145865.5845,261864.3801,0,17.8
+98189,145878.6576,262188.773,0,17.8
+98190,145740.4122,263389.9784,0,17.8
+98191,121382.3708,301174.8117,0,17.8
+98192,121542.3681,36735.15604,0,17.8
+98193,121264.8446,36660.97671,0,17.8
+98194,198267.2156,404804.0989,0,17.8
+98195,130780.3304,790515.0218,0,17.8
+98196,141928.6288,66917.63375,0,17.8
+98197,150129.5823,215599.9052,0,17.8
+98198,145645.3001,319179.3265,0,17.8
+98199,146280.9477,481695.385,0,17.8
+98200,146027.813,226829.3411,0,17.8
+98201,146505.8281,325467.9439,0,17.8
+98202,146332.4573,242176.7719,0,17.8
+98203,146542.9559,265316.2132,0,17.8
+98204,146369.6461,267088.5879,0,17.8
+98205,146671.8645,264845.0321,0,17.8
+98206,146889.788,265521.6972,0,17.8
+98207,146770.9731,530820.1103,0,17.8
+98208,147074.583,266080.0316,0,17.8
+98209,146601.5604,266058.2552,0,17.8
+98210,147639.8448,267217.1984,0,17.8
+98211,24063.65252,267069.1231,0,17.8
+98212,24114.18823,267419.3026,0,17.8
+98213,24054.09845,268106.1241,0,17.8
+98214,24078.78543,267933.2277,0,17.8
+98215,363860.7969,533427.0911,0,17.8
+98216,24037.91977,269081.7434,0,17.8
+98217,24012.80456,269270.419,0,17.8
+98218,24026.61409,269605.4494,0,17.8
+98219,24020.78661,270300.9202,0,17.8
+98220,23961.5153,270350.4752,0,20
+98221,1093070.64,1425657.463,957798.0579,20
+98222,1075742.23,1347263.008,53093.59787,20
+98223,496741.4207,644763.519,59839.63196,20
+98224,495829.0318,698613.9924,75970.42076,20
+98225,375178.2565,122189.7622,66218.37512,20
+98226,413154.5081,139153.4212,66960.94661,20
+98227,422902.6596,1214404.073,66589.05676,20
+98228,382516.7021,464999.2309,66247.62755,20
+98229,391243.0544,600063.3393,65979.05031,20
+98230,387542.1536,920392.5497,65625.01723,20
+98231,385074.4807,746720.6363,65325.45301,20
+98232,384164.3027,463610.0075,65080.38752,20
+98233,382097.5248,638899.7415,64777.22714,20
+98234,380657.1862,569674.2038,64492.57345,20
+98235,379031.7468,545284.3952,64343.61576,20
+98236,378071.9735,568298.4042,64020.57129,20
+98237,366364.4022,558237.7033,63795.73119,20
+98238,364634.4837,552114.3261,63493.86989,20
+98239,363730.7823,819256.5487,81874.22667,20
+98240,362649.6389,551525.2971,109967.607,20
+98241,360939.2882,551119.6616,130910.8315,20
+98242,360352.6009,549423.2405,149953.8888,20
+98243,359173.9835,549171.8254,128422.685,20
+98244,358057.1284,547161.0954,138377.209,20
+98245,356883.1197,546709.4316,150973.5681,20
+98246,356331.0658,545712.541,149850.1674,20
+98247,354792.7001,809178.3409,149263.2186,20
+98248,354402.7814,543984.3084,151403.3633,20
+98249,352797.2026,543049.4492,152858.6493,20
+98250,692619.7027,542203.9113,153590.7592,20
+98251,62767.63023,518891.7405,131005.1857,20
+98252,62761.07884,519319.6576,131672.6918,20
+98253,62502.93084,517345.9739,132703.1325,20
+98254,837430.4255,517022.5131,133053.1732,20
+98255,263267.7285,781478.7686,908758.8169,20
+98256,202641.773,570215.0234,133874.0189,20
+98257,423858.5543,92457.55222,134634.5452,20
+98258,363303.2724,115382.9125,135245.6074,20
+98259,337979.1127,1172835.192,238283.0347,20
+98260,345100.4738,362371.586,140455.0834,20
+98261,345610.2439,566456.1138,160080.9409,20
+98262,343360.5652,532622.9272,168536.0766,20
+98263,342600.4389,713381.6828,163359.5868,20
+98264,341694.3691,442518.2624,165328.3511,20
+98265,341153.862,602953.8788,165915.1118,20
+98266,340368.4784,904592.2004,167048.5204,20
+98267,339500.0519,524573.9411,167917.1151,20
+98268,338795.115,539268.4021,70391.01945,20
+98269,338651.6255,527878.4039,70024.41582,20
+98270,337148.088,531600.9491,69799.52978,20
+98271,336829.8201,794026.956,69443.05851,20
+98272,336549.0949,529266.6126,69163.72129,20
+98273,335083.9584,529213.6401,68933.10581,20
+98274,335066.1226,527882.1493,68582.3398,20
+98275,334346.6723,528253.8329,68357.51754,20
+98276,333635.0876,527481.9421,68035.99309,20
+98277,333059.7066,527255.079,67812.02461,20
+98278,332146.7535,527343.4352,67524.57135,20
+98279,331779.7864,790701.7157,67277.22444,20
+98280,331200.3954,526289.0949,67060.84848,21
+98281,2594475.753,2597920.25,1434038.305,21
+98282,969351.7685,1560908.8,193054.3548,21
+98283,324660.6098,606871.3457,113932.9214,21
+98284,442977.9503,608241.7706,331647.8602,21
+98285,723928.6457,672363.8691,253379.4707,21
+98286,531686.8992,947658.783,248205.2064,21
+98287,559253.7499,984351.8811,251659.6966,21
+98288,556965.2618,768888.8489,252361.9395,21
+98289,557313.8473,768292.2459,252955.1345,21
+98290,553700.5011,764975.1402,254160.9915,21
+98291,555124.8616,762313.2705,254703.1717,21
+98292,551561.3118,759296.9846,255488.2016,21
+98293,551498.1752,756942.767,255818.7932,21
+98294,550639.7857,755810.8927,257325.2548,21
+98295,548298.504,1015853.137,257745.8007,21
+98296,548723.2322,751096.099,259065.2195,21
+98297,547045.2029,747818.8166,259450.7938,21
+98298,545999.1358,746203.2626,260446.9689,21
+98299,545909.2102,742683.4879,261028.5352,21
+98300,544639.5362,743095.131,261755.0708,21
+98301,543445.194,739277.9491,262645.2766,21
+98302,543391.0113,738717.5067,263619.9734,21
+98303,542658.162,1000605.904,263845.7143,21
+98304,541397.5446,736536.6216,264763.3255,21
+98305,541758.3562,733233.6211,265344.3686,21
+98306,540770.0731,731400.2208,266577.4293,21
+98307,539850.7166,730478.7524,266810.0182,21
+98308,539818.3449,729068.569,267216.8599,21
+98309,539026.5012,726447.37,269092.8331,21
+98310,538975.5807,725853.8261,270179.7984,21
+98311,538067.1788,987195.4295,270260.0407,21
+98312,538231.9494,720857.6738,271088.2046,21
+98313,536859.1995,719497.8751,272134.7969,21
+98314,537748.203,718645.6552,272376.0278,21
+98315,536919.6895,716583.1213,273467.4571,21
+98316,535561.7537,714668.2703,274412.068,21
+98317,536948.4299,714316.6214,274580.1487,21
+98318,535144.877,711613.0029,275485.1437,21
+98319,535725.1579,976337.4477,276480.6121,21
+98320,535051.9551,709350.8715,276755.4879,21
+98321,535198.623,707970.9645,277443.7836,21
+98322,532292.4438,706743.9484,278409.6787,21
+98323,533545.7681,705649.8507,278601.3458,21
+98324,531197.2812,703495.104,279502.435,21
+98325,531991.1981,703655.4417,280160.4081,21
+98326,531652.5415,701841.4282,280692.3796,21
+98327,530739.2281,963269.3953,281485.0216,21
+98328,531014.0454,700278.479,282125.7246,21
+98329,530608.0012,697749.174,282104.0349,21
+98330,529136.3507,695639.3943,283410.1666,21
+98331,530706.2954,696228.1512,283374.2942,21
+98332,529454.0342,693122.4802,284520.2171,21
+98333,529324.8837,693348.3072,284612.6398,21
+98334,529462.3646,690755.7883,285344.4465,21
+98335,528842.6135,954365.5557,286291.5312,21
+98336,528663.41,690018.2287,286475.2815,21
+98337,528477.5305,687174.3735,286649.5498,21
+98338,528232.3651,685845.2437,287803.0055,21
+98339,528516.9976,685164.7427,287966.1988,21
+98340,527884.6356,682172.4383,273484.3077,21
+98341,756765.8318,1277363.937,256712.6706,21
+98342,752394.571,1272268.64,253764.8164,21
+98343,750377.4162,1269716.16,253286.4904,21
+98344,749555.8914,1268439.798,252435.7501,21
+98345,749366.1485,1265542.023,251728.1529,21
+98346,748127.5178,1265901.054,251111.3267,21
+98347,747788.8053,1262891.988,250344.7926,21
+98348,745979.4488,1262367.921,250036.7832,21
+98349,746744.4081,1259925.782,249329.8528,21
+98350,744199.6416,1259594.146,248645.0895,21
+98351,745777.6634,1257797.478,248277.758,21
+98352,743259.9019,1256191.114,248103.3614,21
+98353,744106.2899,1255066.989,247182.038,21
+98354,742080.8668,1254508.452,246392.9191,21
+98355,743527.2125,1251777.619,246608.6935,21
+98356,741434.4853,1252801.814,245340.1816,21
+98357,741097.9658,1248908.287,245124.5143,21
+98358,741115.5975,1249611.616,244549.1548,21
+98359,739512.0632,1247990.655,243954.6527,21
+98360,739852.4201,1246676.959,242909.266,21
+98361,739862.6198,1245083.55,242393.5241,21
+98362,738680.8065,1244870.395,241732.809,21
+98363,738609.4428,1243995.856,241016.3795,21
+98364,737995.626,1241569.043,240212.4699,21
+98365,737220.4109,1241423.873,240357.8701,21
+98366,736879.1494,1240009.841,239806.8695,21
+98367,737435.285,1239234.418,239552.4129,21
+98368,735648.7234,1238596.846,239342.0058,21
+98369,735636.5959,1236651.916,238975.908,21
+98370,735886.9385,1236288.788,238770.7313,21
+98371,735304.5296,1234781.046,238211.6679,21
+98372,734183.2502,1234545.198,237378.1872,21
+98373,734677.8175,1232686.843,236598.9831,21
+98374,733284.3427,1233279.016,236358.8997,21
+98375,733865.8912,1229494.342,235203.1207,21
+98376,732643.7847,1231954.431,234720.7512,21
+98377,732571.7319,1228305.625,233985.0951,21
+98378,731871.3802,1229304.174,231642.8233,21
+98379,732241.9247,1226415.78,230617.521,21
+98380,731014.9768,1179112.527,229582.2277,21
+98381,730211.6417,1169610.812,228717.4759,21
+98382,731539.5931,1167965.668,228380.9401,21
+98383,729765.6663,1165220.381,226898.4538,21
+98384,729407.9939,1163650.009,225938.3866,21
+98385,730144.3592,1160598.193,225220.9797,21
+98386,728533.7411,1158976.344,224132.1823,21
+98387,728525.1672,1155681.386,223133.0754,21
+98388,727994.592,1154362.738,221972.3836,21
+98389,728972.7051,1150469.651,221086.3622,21
+98390,726989.6914,1150158.611,220175.8265,21
+98391,726851.0783,1147742.682,219049.0701,21
+98392,726898.9889,1145504.464,217587.3732,21
+98393,726050.455,1143871.287,217073.025,21
+98394,726971.5621,1141342.914,215458.9861,21
+98395,725591.2519,1139661.984,214677.3043,21
+98396,725101.3958,1138097.161,213436.8812,21
+98397,724980.4977,1136689.595,212371.6421,21
+98398,724207.6082,1134387.13,211318.4832,21
+98399,724491.6822,1132118.066,210185.4295,21
+98400,723576.2495,1131263.314,207055.1049,21
+98401,532754.7564,913056.1633,112179.2686,21
+98402,526133.6002,906375.5832,106726.8278,21
+98403,523670.3766,904174.6291,104198.254,21
+98404,520940.2089,902259.3587,102368.7426,21
+98405,518936.4532,900040.4778,100654.0569,21
+98406,516390.0441,898185.4554,99191.82121,21
+98407,514550.1137,896568.0731,98011.45209,21
+98408,512023.4574,894405.3849,97065.01645,21
+98409,510343.6523,893058.8861,95693.57913,21
+98410,508101.9808,891352.0665,94801.10774,21
+98411,506148.7321,889737.1074,93578.38172,21
+98412,504030.4221,887690.5401,92524.71132,21
+98413,501888.34,886322.1284,91392.73338,21
+98414,500457.2616,884680.606,90516.34404,21
+98415,498132.8232,883143.5547,89258.34275,21
+98416,496160.7223,884797.4443,88472.7313,21
+98417,494599.3901,884331.6627,87106.7356,21
+98418,492555.7458,882518.3506,86513.19619,21
+98419,490598.1035,881248.1043,85041.25243,21
+98420,488876.7563,879957.9074,84279.69472,21
+98421,487002.3027,878338.6403,83038.0822,21
+98422,485372.8236,877059.1202,82249.90831,21
+98423,483177.9974,875743.3392,81275.70024,21
+98424,481870.4408,874010.1021,80109.63872,21
+98425,479999.5592,873390.6401,79134.56845,21
+98426,477967.682,870845.2297,78149.95516,21
+98427,476792.5345,870570.9057,77301.03055,21
+98428,474719.9053,869117.9004,76216.80279,21
+98429,473283.3382,867559.5589,75221.97029,21
+98430,471242.4668,867052.3274,19326.41447,21
+98431,469708.5887,865773.0145,18651.48271,21
+98432,468464.2752,865187.9701,18190.90031,21
+98433,466497.8922,863414.8849,17903.5263,21
+98434,464847.6538,863086.7332,17586.00149,21
+98435,463466.8989,862062.6246,17341.52996,21
+98436,461776.1649,860834.1023,16819.65505,21
+98437,460172.8317,859773.5346,16729.14622,21
+98438,458836.8526,859440.9932,16251.44812,21
+98439,457012.3946,855814.0719,16159.58086,21
+98440,455767.0588,854877.7892,15713.87629,21
+98441,453909.5529,854199.269,15634.60421,21
+98442,452819.7369,852703.5096,15264.76232,21
+98443,450985.2344,852337.5761,15174.95485,21
+98444,449436.4748,850957.3481,14589.10694,21
+98445,448028.9182,850130.8058,14713.44845,21
+98446,446317.4772,849841.4746,14170.17472,21
+98447,445395.3324,848630.1997,14032.48702,21
+98448,443270.0258,847596.3259,13676.18268,21
+98449,442034.0695,847061.5575,13608.82276,21
+98450,440911.9726,846348.3014,13094.63704,21
+98451,438820.6325,844875.816,13013.66843,21
+98452,437807.3939,845195.345,12764.02849,21
+98453,436289.0268,843327.7525,12424.26363,21
+98454,434442.9953,843100.7615,12074.43857,21
+98455,433429.6626,842432.3217,12037.83871,21
+98456,431754.0186,841394.554,11626.72257,21
+98457,430542.731,841078.3142,11317.83993,21
+98458,428436.329,839745.0237,11143.50532,21
+98459,427904.6298,839350.5496,10958.36882,21
+98460,426124.9678,839053.4481,10618.75641,21
+98461,424597.3119,836150.1864,10234.78388,21
+98462,424062.0997,834485.4613,10164.85138,21
+98463,422196.9395,832843.1404,9873.859528,21
+98464,422030.1079,830759.6995,9539.759049,21
+98465,420061.4966,828569.6365,9507.560596,21
+98466,419171.9114,826988.7858,9334.984844,21
+98467,418318.8506,824814.0698,9013.683852,21
+98468,416886.5767,823023.2186,8853.182586,21
+98469,415992.1772,821195.2851,8654.053721,21
+98470,414884.3379,819199.257,8494.591392,21
+98471,413556.4255,817449.1043,7864.09445,21
+98472,413020.59,815426.5208,7815.153914,21
+98473,411462.2218,814134.1146,7499.853133,21
+98474,410139.4532,811061.4812,7308.206123,21
+98475,409789.4208,810503.4714,7133.324601,21
+98476,407795.3994,807785.272,6810.5544,21
+98477,407867.7791,806021.0588,6750.8141,21
+98478,405766.9114,804275.3239,6439.605045,21
+98479,405312.4718,802589.6486,6246.327619,21
+98480,403859.614,800337.0166,6052.360614,21
+98481,403143.5039,798919.9114,5873.210745,21
+98482,402174.4001,796650.6199,5541.0366,21
+98483,400552.1443,794755.8337,5493.679363,21
+98484,400232.9221,793342.1396,5162.474044,21
+98485,398709.9326,791416.5021,5111.17626,21
+98486,397590.3625,788992.354,4628.6781,21
+98487,396733.1135,787774.3966,4714.973964,21
+98488,395803.7922,785638.464,4389.818656,21
+98489,394724.3274,788934.4733,4187.696864,21
+98490,393570.9554,789059.4836,3846.325682,21
+98491,392452.6229,786885.0143,3946.035581,21
+98492,391103.1323,786641.1919,3445.838271,21
+98493,389698.4095,785770.4982,3535.283659,21
+98494,388948.2589,784564.444,3212.003599,21
+98495,386648.8948,784162.7078,3013.110354,21
+98496,386175.8135,782786.9533,2920.520351,21
+98497,384444.3086,782031.3741,2590.611856,21
+98498,383237.68,781618.3374,2552.685746,21
+98499,381826.9751,779986.8164,2444.957767,21
+98500,380589.1763,779616.3907,2432.254976,21
+98501,379214.9548,778586.9996,2365.279226,21
+98502,377968.8313,777719.2527,2312.319728,21
+98503,376321.277,777184.9808,2243.481558,21
+98504,375324.4403,775803.5582,2204.423325,21
+98505,373575.5934,775335.1322,2149.545698,21
+98506,372438.1762,774289.1158,2094.479184,21
+98507,370960.2448,773598.054,2027.086329,21
+98508,369838.1514,772650.9837,1984.90433,21
+98509,368094.0161,771745.7903,1930.272874,21
+98510,367032.5589,771172.8641,1874.32171,21
+98511,365498.0927,769966.6987,1804.507877,21
+98512,364231.0466,769356.0884,1790.893394,21
+98513,362729.9084,768622.8451,1706.612202,21
+98514,361541.4893,767501.4609,1663.484766,21
+98515,360312.3251,767642.4015,1592.089992,21
+98516,358263.3902,765799.5549,1563.728081,21
+98517,357720.7006,765781.8235,1505.607136,21
+98518,355600.0038,764208.6554,1446.981708,21
+98519,355013.3488,764418.4196,1387.681567,21
+98520,352853.1269,762878.5057,1356.784941,21
+98521,355967.1126,769070.0136,1297.38586,21
+98522,353801.3303,769530.7277,1252.616525,21
+98523,352024.7952,769505.0253,1237.667322,21
+98524,350447.1426,769522.4716,1237.694587,21
+98525,348212.857,769581.6049,1192.654696,21
+98526,346816.0109,769618.1126,1177.612102,21
+98527,344709.5767,769968.4482,1162.545605,21
+98528,343112.1223,769351.9827,1147.455009,21
+98529,341312.6123,770252.6539,1132.34011,21
+98530,339365.7227,769425.5642,1117.200702,21
+98531,337589.2362,769448.7295,1086.826209,21
+98532,336025.0234,770097.5286,1071.612293,21
+98533,334308.1796,769825.0596,1041.088481,21
+98534,331893.0858,769189.8518,1041.107769,21
+98535,330709.9538,769643.907,995.12063,21
+98536,328603.4128,769669.1476,995.1382512,21
+98537,326951.7902,769623.5965,964.3550945,21
+98538,324974.6313,769067.4235,948.9315064,21
+98539,323505.9579,769689.3012,933.4803984,21
+98540,321539.1478,769251.088,902.4796754,21
+98541,319677.4282,768906.7039,886.9444122,21
+98542,318061.1453,769478.0879,871.3803473,21
+98543,316234.4396,768822.7349,840.1516325,21
+98544,314448.8056,769551.6095,840.164187,21
+98545,312474.2784,768469.7557,793.092129,21
+98546,310595.269,768361.8959,793.1033148,21
+98547,309250.88,770374.7696,761.5724223,21
+98548,306863.6063,769453.1251,761.5827349,21
+98549,305205.064,769190.7369,714.0422868,21
+98550,303361.0598,770239.0914,714.0513506,21
+98551,301644.8407,768792.7068,698.144711,21
+98552,300291.5633,768651.8149,650.2028157,21
+98553,298465.7332,768399.2394,666.2284406,21
+98554,297277.292,766197.6986,618.0750232,21
+98555,295686.421,766302.1377,601.9555783,21
+98556,293976.8448,765600.8522,585.7982633,21
+98557,292642.1743,765123.5009,569.6023145,21
+98558,291077.6144,764539.6349,537.085973,21
+98559,289652.5791,764118.9204,520.7692585,21
+98560,288124.4354,763059.1153,504.4103821,21
+98561,286622.4451,763129.1372,471.5579049,21
+98562,285129.9411,762315.2786,471.5618505,21
+98563,283809.6343,761344.0207,421.9384124,21
+98564,282226.1706,761450.2085,421.9415696,21
+98565,280674.2068,760655.9871,388.6160059,21
+98566,279584.3012,759633.1433,355.0799698,21
+98567,277780.8107,759445.0141,355.0822035,21
+98568,276555.8333,758445.2841,321.3198711,21
+98569,275143.3353,758347.3868,304.3490405,21
+98570,273408.0767,757480.6036,270.2108975,21
+98571,272083.9334,756564.6987,270.2121888,21
+98572,271065.2316,756418.4613,235.7920146,21
+98573,269164.8661,755294.4534,218.4665968,21
+98574,268197.587,754812.4268,201.0573098,21
+98575,266255.1077,754532.041,183.5581884,21
+98576,265253.5092,753267.6235,148.2602787,21
+98577,263685.9763,754012.4018,148.2606658,21
+98578,262290.5715,753126.5244,112.49651,21
+98579,261079.5398,752491.8387,94.40352954,21
+98580,259404.5195,751305.9365,76.140379,21
+98581,254059.477,746179.7049,76.14050329,21
+98582,253352.951,743275.5018,76.14060528,21
+98583,252957.9457,742096.8591,57.67267432,21
+98584,252130.6065,740050.1615,19.84687549,21
+98585,251462.627,738494.113,0,21
+98586,251371.69,736570.9769,0,21
+98587,250175.2055,734878.4192,0,21
+98588,249926.2332,733429.7243,0,21
+98589,249484.197,731119.5194,0,21
+98590,248505.4301,729673.2996,0,21
+98591,248525.2255,727663.7441,0,21
+98592,247392.342,725932.0301,0,21
+98593,247032.3138,724164.1515,0,21
+98594,246636.4741,722511.0578,0,21
+98595,245767.1411,720494.4136,0,21
+98596,245547.4291,718600.3774,0,21
+98597,245019.4375,717403.3628,0,21
+98598,244133.7687,714619.2993,0,21
+98599,243973.0425,713511.6043,0,21
+98600,243059.6492,711514.2154,0,21
+98601,242835.0299,708596.0273,0,21
+98602,242156.0771,706555.2685,0,21
+98603,241734.9017,705120.4678,0,21
+98604,241049.9465,703080.2837,0,21
+98605,240838.7208,698773.4574,0,21
+98606,239800.6929,695178.2063,0,21
+98607,239851.2037,694437.955,0,21
+98608,238896.8998,691291.1065,0,21
+98609,238763.0802,689836.1759,0,21
+98610,237941.4151,687877.0873,0,21
+98611,237278.8076,685770.8121,0,21
+98612,237138.9631,684443.5297,0,21
+98613,236242.5751,682472.5481,0,21
+98614,235539.9781,680777.2754,0,21
+98615,235009.3022,679054.7245,0,21
+98616,234347.8691,677050.8161,0,21
+98617,233709.9245,678826.2017,0,21
+98618,233133.1553,677227.7912,0,21
+98619,232604.6142,676399.314,0,21
+98620,231824.0928,674505.7884,0,21
+98621,231152.1639,672872.0083,0,21
+98622,230791.1997,671585.522,0,21
+98623,229848.3918,670016.6896,0,21
+98624,229412.1959,668572.5828,0,21
+98625,228522.6102,666622.1239,0,21
+98626,228284.464,665244.9633,0,21
+98627,227322.9096,664362.9073,0,21
+98628,226783.7799,661831.249,0,21
+98629,226242.4403,660752.6188,0,21
+98630,225338.1517,658902.1786,0,21
+98631,224938.8041,658151.2557,0,21
+98632,224383.4415,655290.0753,0,21
+98633,223545.3256,655037.6622,0,21
+98634,222993.8075,652585.2792,0,21
+98635,222269.6537,651421.6326,0,21
+98636,221653.1534,649879.0802,0,21
+98637,221222.6723,648288.5376,0,21
+98638,220126.9239,646729.0954,0,21
+98639,220033.2804,644914.7231,0,21
+98640,219008.9535,644012.0931,0,21
+98641,242564.4633,673647.8071,0,21
+98642,242148.6833,674616.4257,0,21
+98643,240881.5472,675566.4034,0,21
+98644,240641.4552,676215.2358,0,21
+98645,239129.1166,676551.5601,0,21
+98646,238533.4062,677755.0559,0,21
+98647,237935.6184,677421.3063,0,21
+98648,236604.0408,679026.6947,0,21
+98649,235951.0293,678827.4233,0,21
+98650,235097.8985,680045.8311,0,21
+98651,234397.4471,680056.5476,0,21
+98652,233237.2201,681250.4848,0,21
+98653,232448.8692,681574.8731,0,21
+98654,231783.578,682347.7889,0,21
+98655,230592.7337,683080.1604,0,21
+98656,230091.2371,683542.1693,0,21
+98657,228997.3132,683906.596,0,21
+98658,227946.1129,684778.0295,0,21
+98659,227378.9478,685122.7926,0,21
+98660,226242.5512,686143.8109,0,21
+98661,225656.1915,686512.0511,0,21
+98662,224101.585,687112.0348,0,21
+98663,223947.8473,687488.8914,0,21
+98664,222481.3773,688358.7404,0,21
+98665,222064.6653,688900.6955,0,21
+98666,220731.2625,689099.4607,0,21
+98667,219747.1639,690446.5047,0,21
+98668,219362.7308,690397.3462,0,21
+98669,217489.4263,691010.5915,0,21
+98670,217631.9704,691916.5642,0,21
+98671,215538.1004,692389.672,0,21
+98672,215000.8181,692835.1186,0,21
+98673,213672.3708,693498.6138,0,21
+98674,212518.4708,694258.9961,0,21
+98675,211729.4497,694922.412,0,21
+98676,210117.7346,695257.5575,0,21
+98677,209295.5879,695720.8607,0,21
+98678,208176.9088,696654.1712,0,21
+98679,206838.765,697325.8548,0,21
+98680,205686.2102,697262.1538,0,21
+98681,204730.0196,698735.8943,0,21
+98682,202137.3784,698935.9165,0,21
+98683,200981.5664,699393.7705,0,21
+98684,199536.8331,700047.6854,0,21
+98685,198262.5373,700963.6931,0,21
+98686,197232.2779,701399.0512,0,21
+98687,195679.7707,701992.4678,0,21
+98688,194841.4231,702295.0245,0,21
+98689,193410.2658,703329.793,0,21
+98690,192158.3065,703743.6986,0,21
+98691,190837.0766,704445.1881,0,21
+98692,190024.0256,705334.8649,0,21
+98693,189154.7885,705254.1601,0,21
+98694,188381.9327,706330.4104,0,21
+98695,187532.5522,706625.9068,0,21
+98696,187007.8895,707785.4628,0,21
+98697,185838.9172,707825.8203,0,21
+98698,185513.4131,708771.4295,0,21
+98699,184274.9039,709332.8741,0,21
+98700,183919.0176,709990.4105,0,21
+98701,163871.9093,680231.6797,0,21
+98702,162160.042,681122.15,0,21
+98703,161101.2843,681143.988,0,21
+98704,160129.1849,682376.9974,0,21
+98705,158603.9647,682910.2638,0,21
+98706,157347.261,683822.8524,0,21
+98707,156374.6848,683869.3011,0,21
+98708,154911.677,685446.1648,0,21
+98709,153724.6302,685259.3918,0,21
+98710,152153.7766,686767.4037,0,21
+98711,151126.3826,686496.7917,0,21
+98712,149911.9719,688060.0134,0,21
+98713,148444.1172,687931.6717,0,21
+98714,147520.3304,689095.7442,0,21
+98715,145925.063,689858.8237,0,21
+98716,145022.7097,689854.732,0,21
+98717,143786.38,691506.6685,0,21
+98718,142499.0727,691186.5188,0,21
+98719,141437.8236,692753.4662,0,21
+98720,140168.9069,693042.3622,0,21
+98721,139035.0801,693711.3186,0,21
+98722,137806.7592,694601.1152,0,21
+98723,136647.3173,694941.2431,0,21
+98724,135445.7144,696222.1783,0,21
+98725,134058.7587,696436.7648,0,21
+98726,133367.7808,697420.362,0,21
+98727,131697.5446,697918.8077,0,21
+98728,130724.3781,698879.9416,0,21
+98729,129449.5428,699380.6742,0,21
+98730,128457.287,700188.1933,0,21
+98731,127077.723,701090.6218,0,21
+98732,126227.1167,702231.0428,0,21
+98733,125145.1652,702434.2321,0,21
+98734,124170.8913,703375.679,0,21
+98735,123027.1857,704687.1323,0,21
+98736,121948.8562,704647.4781,0,21
+98737,121172.5081,706306.1578,0,21
+98738,119948.1982,706314.1477,0,21
+98739,119120.6881,708328.5106,0,21
+98740,118051.549,707715.5447,0,21
+98741,117206.0965,709493.2907,0,21
+98742,115827.1233,710239.5475,0,21
+98743,115239.6735,711075.0508,0,21
+98744,114093.559,711629.7509,0,21
+98745,113075.6175,712517.2862,0,21
+98746,112347.9903,713692.1845,0,21
+98747,111185.5854,714000.5976,0,21
+98748,110318.1894,715776.8128,0,21
+98749,109480.0719,715693.7167,0,21
+98750,108405.6081,716964.649,0,21
+98751,107426.3142,717745.6479,0,21
+98752,106740.809,718736.541,0,21
+98753,105825.0959,719511.5065,0,21
+98754,104505.9798,720226.8665,0,21
+98755,104479.5541,721380.9357,0,21
+98756,103610.5658,722013.8043,0,21
+98757,102755.471,723006.8528,0,21
+98758,101869.0745,723737.9472,0,21
+98759,101253.3922,724813.5816,0,21
+98760,100252.5491,725693.2267,0,21
+98761,104695.7891,729906.4548,0,21
+98762,104605.8077,729604.3479,0,21
+98763,103949.3665,729798.5498,0,21
+98764,103048.2268,728848.5387,0,21
+98765,102657.3991,728883.9995,0,21
+98766,101951.9691,728604.7168,0,21
+98767,101438.9451,727870.9721,0,21
+98768,100876.6099,728110.0056,0,21
+98769,99996.64806,727396.3891,0,21
+98770,99814.6319,727174.6739,0,21
+98771,98875.96736,726776.4478,0,21
+98772,98661.09108,726593.032,0,21
+98773,97860.79343,726042.0847,0,21
+98774,97348.36607,726098.0048,0,21
+98775,96896.70611,725440.8662,0,21
+98776,96229.57876,725000.7547,0,21
+98777,95826.85503,724922.3526,0,21
+98778,95259.18975,724874.2984,0,21
+98779,94579.48712,723702.0344,0,21
+98780,94409.10128,724284.6998,0,21
+98781,93640.97897,722843.3972,0,21
+98782,93602.5423,723834.3487,0,21
+98783,93337.604,722270.1321,0,21
+98784,92791.1947,722957.0014,0,21
+98785,92287.31438,721775.6841,0,21
+98786,91939.93766,722172.3371,0,21
+98787,91460.63473,721475.3952,0,21
+98788,91300.46547,721031.7071,0,21
+98789,90940.475,720867.4693,0,21
+98790,90705.72054,720605.3895,0,21
+98791,90152.1504,720024.6021,0,21
+98792,89626.571,719966.6829,0,21
+98793,89047.07548,719747.2856,0,21
+98794,88780.15897,719148.9126,0,21
+98795,87850.74616,718992.8445,0,21
+98796,87565.19974,718572.7396,0,21
+98797,87136.43773,718336.77,0,21
+98798,86326.48879,718214.2719,0,21
+98799,85993.56224,717631.5364,0,21
+98800,85415.97071,717428.7979,0,21
+98801,84730.31351,717268.9476,0,21
+98802,84378.64142,716693.032,0,21
+98803,83657.1888,716616.3815,0,21
+98804,83223.19231,716246.8199,0,21
+98805,82536.98742,716127.0602,0,21
+98806,82268.55442,715423.8596,0,21
+98807,81372.38798,715549.8238,0,21
+98808,80960.91767,716381.822,0,21
+98809,80541.06681,716577.2279,0,21
+98810,80096.74998,715666.8828,0,21
+98811,79349.7612,715782.347,0,21
+98812,79207.96399,715353.0116,0,21
+98813,78494.86039,715002.1237,0,21
+98814,78039.18764,715020.9529,0,21
+98815,77604.62308,714109.9058,0,21
+98816,77055.44619,714646.253,0,21
+98817,76559.92262,713909.6528,0,21
+98818,75910.19978,713440.1278,0,21
+98819,75734.27641,713678.7144,0,21
+98820,74934.0306,713041.8824,0,21
+98821,69182.14425,708450.9117,0,21
+98822,69323.27777,708000.2912,0,21
+98823,68939.65503,707752.4617,0,21
+98824,69336.27134,708286.5075,0,21
+98825,68738.1104,707596.9062,0,21
+98826,69279.2355,708031.8491,0,21
+98827,68740.33392,707281.4163,0,21
+98828,69249.9858,707754.7861,0,21
+98829,68722.23025,707648.8724,0,21
+98830,69059.77821,707022.6428,0,21
+98831,68879.19472,707650.3701,0,21
+98832,68881.81043,707399.4758,0,21
+98833,68840.99743,707096.875,0,21
+98834,68875.72136,707383.1181,0,21
+98835,68824.91495,706712.1876,0,21
+98836,68858.38474,707291.5022,0,21
+98837,68923.64503,707108.3642,0,21
+98838,68723.29186,706814.9166,0,21
+98839,68805.22396,707155.9469,0,21
+98840,68828.93102,706525.0319,0,21
+98841,68773.68242,707077.2128,0,21
+98842,68696.23644,706604.0838,0,21
+98843,68799.12653,706698.1715,0,21
+98844,68755.52839,706383.3791,0,21
+98845,68744.32749,706608.1946,0,21
+98846,68770.96367,706718.5149,0,21
+98847,68545.15443,706330.5617,0,21
+98848,68728.3592,706442.5681,0,21
+98849,68710.74262,706532.7063,0,21
+98850,68616.69647,706385.1748,0,21
+98851,68709.2436,706249.6165,0,21
+98852,68685.06324,706382.7145,0,21
+98853,68688.33783,706220.7375,0,21
+98854,68470.35137,706280.93,0,21
+98855,68864.52803,706689.7506,0,21
+98856,68644.77338,705888.8769,0,21
+98857,68454.51464,706503.0501,0,21
+98858,68830.61369,706513.0789,0,21
+98859,68596.52802,706130.1857,0,21
+98860,68653.63533,706460.4225,0,21
+98861,68603.18454,706532.7028,0,21
+98862,68575.81163,706724.0802,0,21
+98863,68881.72498,706237.4746,0,21
+98864,68572.21573,706775.7433,0,21
+98865,68588.5564,706408.1009,0,21
+98866,68735.57048,706931.0577,0,21
+98867,68759.14953,706620.8492,0,21
+98868,68502.68211,707057.8963,0,21
+98869,68758.84874,706580.0474,0,21
+98870,68707.17406,706465.0969,0,21
+98871,68700.91734,707096.2408,0,21
+98872,68682.91886,707055.1666,0,21
+98873,68708.33358,706797.5565,0,21
+98874,68672.30509,707050.0376,0,21
+98875,68674.32052,706995.8339,0,21
+98876,68865.29114,707159.3786,0,21
+98877,68733.89689,707372.3397,0,21
+98878,68657.19614,707140.3428,0,21
+98879,68813.26639,707210.5086,0,21
+98880,68821.15237,707399.8321,0,21
+98881,68835.83988,707668.8403,0,21
+98882,68855.42219,707458.0088,0,21
+98883,69010.56451,707873.9502,0,21
+98884,69059.15582,707747.5081,0,21
+98885,69175.79685,708488.5926,0,21
+98886,69235.96214,707948.3149,0,21
+98887,69288.05579,708263.4454,0,21
+98888,69463.86651,708816.7115,0,21
+98889,69486.37383,708696.6514,0,21
+98890,69495.19827,709121.08,0,21
+98891,69707.32879,708526.4041,0,21
+98892,69825.10517,709557.9642,0,21
+98893,70372.13137,709503.4145,0,21
+98894,69987.03571,708879.2854,0,21
+98895,70580.71925,710052.6128,0,21
+98896,70452.96717,710012.0432,0,21
+98897,70708.3839,709779.866,0,21
+98898,70872.46668,710128.2816,0,21
+98899,71043.10359,710459.8287,0,21
+98900,71107.92464,710541.2545,0,21
+98901,71073.45086,709141.2053,0,21
+98902,71585.01802,709644.335,0,21
+98903,71552.94588,709473.848,0,21
+98904,71581.70534,710486.819,0,21
+98905,71869.78049,709660.3544,0,21
+98906,72678.3835,710038.5562,0,21
+98907,72660.10587,709986.8586,0,21
+98908,73018.5506,709589.6406,0,21
+98909,73008.76648,710003.535,0,21
+98910,73116.95269,709858.0055,0,21
+98911,73470.1038,710182.4693,0,21
+98912,73609.48984,710245.1382,0,21
+98913,73716.0371,710652.1414,0,21
+98914,73908.52579,710153.9349,0,21
+98915,74500.98688,710944.9963,0,21
+98916,74223.90765,710637.7043,0,21
+98917,74797.52282,710798.2118,0,21
+98918,74746.86,711271.5971,0,21
+98919,75348.85422,710707.7085,0,21
+98920,75153.52855,711638.5501,0,21
+98921,75800.56149,711054.7646,0,21
+98922,75657.34542,711772.2126,0,21
+98923,75377.67684,711592.3146,0,21
+98924,75756.98362,711565.738,0,21
+98925,75915.53438,711869.8868,0,21
+98926,76277.52912,712411.3306,0,21
+98927,76363.19467,711762.5107,0,21
+98928,76453.14301,712166.7286,0,21
+98929,77299.1682,712412.7056,0,21
+98930,76768.99651,713179.3444,0,21
+98931,77652.74361,711766.4237,0,21
+98932,77451.12457,713257.9351,0,21
+98933,77995.06005,712909.7783,0,21
+98934,77979.75881,712813.618,0,21
+98935,78673.68234,713371.3106,0,21
+98936,78391.83949,713481.6773,0,21
+98937,79162.31842,713097.5342,0,21
+98938,79056.62731,713640.1011,0,21
+98939,79594.92404,713852.0629,0,21
+98940,79592.90931,713571.7315,0,21
+98941,126853.2895,770842.7783,0,21
+98942,141600.1178,774144.213,0,21
+98943,136441.4211,774197.9078,0,21
+98944,138663.8303,783029.5452,0,21
+98945,138948.7179,788649.0947,0,21
+98946,139907.5306,785360.2034,0,21
+98947,140714.9946,788243.9231,0,21
+98948,140951.8244,789492.896,0,21
+98949,141933.1174,790383.9304,0,21
+98950,142354.2954,792414.0395,0,21
+98951,143357.3268,792699.7509,0,21
+98952,143890.327,794720.4475,0,21
+98953,144279.0786,795106.2713,0,21
+98954,145106.8395,797261.2431,0,21
+98955,145491.1163,798109.4873,0,21
+98956,146432.9635,800788.0869,0,21
+98957,146821.2819,801247.977,0,21
+98958,147305.0736,802233.8408,0,21
+98959,147938.2021,803524.7265,0,21
+98960,148418.373,804187.5096,0,21
+98961,149174.3737,805777.1221,0,21
+98962,149226.484,806485.1385,0,21
+98963,150083.9911,807448.6723,0,21
+98964,150572.6138,808423.3751,0,21
+98965,151148.4801,809355.783,0,21
+98966,151267.2432,810991.2985,0,21
+98967,151899.6145,810738.7781,0,21
+98968,152280.2302,812762.9454,0,21
+98969,153007.0421,813221.3929,0,21
+98970,153114.5923,813683.4657,0,21
+98971,153636.7168,814505.1614,0,21
+98972,153797.0757,814251.628,0,21
+98973,154095.7881,815427.1067,0,21
+98974,154254.0162,816471.1887,0,21
+98975,154319.3102,816725.221,0,21
+98976,154966.1836,817998.2134,0,21
+98977,154914.7604,817857.5227,0,21
+98978,155641.3102,819792.394,0,21
+98979,156310.7098,819798.4046,0,21
+98980,155969.006,820733.9628,0,21
+98981,156637.014,821604.0914,0,21
+98982,156260.6568,821494.964,0,21
+98983,156897.303,823004.8161,0,21
+98984,156587.4781,823608.837,0,21
+98985,156796.3683,824215.4498,0,21
+98986,157214.4894,824768.4667,0,21
+98987,156731.0231,825272.1836,0,21
+98988,157276.6837,826012.0167,0,21
+98989,157227.3343,826991.4846,0,21
+98990,157231.3738,827383.5939,0,21
+98991,157396.6031,828511.2613,0,21
+98992,157595.3094,828000.5504,0,21
+98993,156448.6646,830181.3953,0,21
+98994,157055.1677,829560.4221,0,21
+98995,156537.2448,830811.3136,0,21
+98996,157091.7873,831368.8758,0,21
+98997,156675.1665,831785.1637,0,21
+98998,156887.3463,832803.0656,0,21
+98999,156850.3524,833021.2426,0,21
+99000,156892.8339,833920.6238,0,21
+99001,174605.2387,856161.7397,0,21
+99002,176243.3656,859098.0072,0,21
+99003,177247.4169,860940.0485,0,21
+99004,178261.4229,861952.7605,0,21
+99005,179549.4961,863871.2503,0,21
+99006,180517.0576,864947.7389,0,21
+99007,181202.0302,866688.7958,0,21
+99008,182530.3351,868669.5043,0,21
+99009,183276.1681,869065.4166,0,21
+99010,185987.8926,871734.8664,0,21
+99011,187368.9272,872754.0782,0,21
+99012,188514.1606,874282.658,0,21
+99013,189055.4149,876068.8048,0,21
+99014,190368.4192,877971.469,0,21
+99015,191086.8911,879540.0511,0,21
+99016,192007.1831,881099.3451,0,21
+99017,193000.9744,882080.3864,0,21
+99018,195258.7083,883999.2341,0,21
+99019,196301.0021,885584.8354,0,21
+99020,197314.2192,887021.219,0,21
+99021,197945.56,888016.0249,0,21
+99022,199438.8755,890009.0125,0,21
+99023,199701.8215,890886.4354,0,21
+99024,201107.5711,891927.6965,0,21
+99025,201946.6995,893442.9937,0,21
+99026,202929.4811,894913.6198,0,21
+99027,203523.1253,896016.9313,0,21
+99028,204870.9098,897400.8969,0,21
+99029,205178.4339,898868.4571,0,21
+99030,206554.7037,899942.8756,0,21
+99031,207293.0228,901780.9182,0,21
+99032,207939.3651,902751.3647,0,21
+99033,208785.3531,904294.8903,0,21
+99034,209823.3421,905014.1267,0,21
+99035,210328.8569,907157.9445,0,21
+99036,211722.6278,907893.7631,0,21
+99037,211843.9067,909605.0179,0,21
+99038,213150.9068,910131.7632,0,21
+99039,213816.9649,912360.7429,0,21
+99040,214471.2056,913232.8429,0,21
+99041,215387.9162,914445.3749,0,21
+99042,216093.9037,915342.7859,0,21
+99043,217026.7077,917571.9725,0,21
+99044,217419.2174,918393.3862,0,21
+99045,218424.9013,919347.5948,0,21
+99046,219177.1012,922576.7431,0,21
+99047,219780.6989,932146.3858,0,21
+99048,220871.7254,928438.4984,0,21
+99049,221716.6911,932883.4165,0,21
+99050,221728.8075,933835.4421,0,21
+99051,223375.4505,936180.2912,0,21
+99052,223328.9769,938060.3991,0,21
+99053,224614.6517,940000.3951,0,21
+99054,225033.8183,941811.4547,0,21
+99055,225931.9381,944276.3442,0,21
+99056,226294.7138,946169.2205,0,21
+99057,227521.8331,949014.7509,0,21
+99058,227704.1281,949950.2597,0,21
+99059,228788.9535,953107.7345,0,21
+99060,229311.5681,953232.0745,0,21
+99061,229209.1194,956352.1946,0,21
+99062,230700.7697,958038.2423,0,21
+99063,230147.6283,959757.7366,0,21
+99064,230733.913,961755.7456,0,21
+99065,231071.7911,963124.0257,0,21
+99066,231500.0955,964498.3154,0,21
+99067,231940.3212,967659.9571,0,21
+99068,231990.33,966701.536,0,21
+99069,232417.6973,971099.9945,0,21
+99070,232704.2785,969927.678,0,21
+99071,233372.2967,974063.0614,0,21
+99072,233020.8789,973930.1656,0,21
+99073,234027.834,976403.8575,0,21
+99074,233540.2616,977031.6067,0,21
+99075,234738.9159,979353.411,0,21
+99076,234369.9144,981311.9553,0,21
+99077,235286.0653,982119.3149,0,21
+99078,234874.1063,983639.5993,0,21
+99079,235820.0436,985522.8648,0,21
+99080,235581.4034,987079.0585,0,21
+99081,236119.8585,987869.523,0,21
+99082,236499.649,990395.3512,0,21
+99083,236416.1836,991199.8345,0,21
+99084,237176.0544,993416.2442,0,21
+99085,237182.4391,992929.9029,0,21
+99086,237595.1585,997126.1477,0,21
+99087,237538.3633,996087.1248,0,21
+99088,238274.5084,999709.0043,0,21
+99089,238103.2674,999577.4707,0,21
+99090,238845.322,1001787.026,0,21
+99091,238396.1651,1003601.194,0,21
+99092,239522.579,1003734.874,0,21
+99093,238958.3325,1006837.849,0,21
+99094,239749.5712,1006882.168,0,21
+99095,239746.4977,1008786.676,0,21
+99096,240240.1172,1010357.762,0,21
+99097,240133.2845,1011342.013,0,21
+99098,240884.8303,1014237.612,0,21
+99099,240542.7806,1013673.454,0,21
+99100,241249.6432,1015942.978,0,21
+99101,240741.0176,1017905.569,0,21
+99102,241967.3372,1017564.08,0,21
+99103,247911.903,1020540.057,0,21
+99104,245969.0464,1021637.808,0,21
+99105,247183.9061,1022743.205,0,21
+99106,247856.7941,1023882.288,0,21
+99107,248862.1118,1025735.983,0,21
+99108,249731.4604,1026376.568,0,21
+99109,249656.7885,1028168.011,0,21
+99110,251374.4548,1030097.733,0,21
+99111,251681.9899,1030554.088,157.8304897,21
+99112,251822.7581,1032213.94,1037.474372,21
+99113,252947.8021,1033318.821,750.8154474,21
+99114,253625.0866,1035146.065,894.7454682,21
+99115,255126.7824,1036188.991,1037.523724,21
+99116,253460.2438,1038228.217,1179.289061,21
+99117,256930.5909,1038510.668,1320.147983,21
+99118,254905.9943,1039625.235,1320.178778,21
+99119,257329.7659,1042557.261,1460.219226,21
+99120,257688.3036,1041855.994,1738.048959,21
+99121,266111.216,1054123.99,2149.940682,21
+99122,268266.3996,1057616.738,2913.502038,21
+99123,269677.2294,1058665.608,2895.971805,21
+99124,269358.7533,1064154.585,3164.043956,21
+99125,271474.8408,1064938.585,3332.821827,21
+99126,272672.3885,1068043.054,3509.581361,21
+99127,272163.2632,1070997.425,3651.002956,21
+99128,274489.8883,1072258.535,3949.698484,21
+99129,274377.7883,1075168.072,3958.566774,21
+99130,275333.6449,1078176.06,4386.316627,21
+99131,276687.2807,1079554.608,4281.419094,21
+99132,276304.1703,1083807.731,4689.966121,21
+99133,278462.7651,1084477.217,4707.243328,21
+99134,278528.988,1088877.051,4871.062204,21
+99135,279702.1546,1090191.714,5146.921755,21
+99136,279387.575,1093062.131,5309.643708,21
+99137,281686.8378,1095203.586,5438.774781,21
+99138,280526.7887,1098275.668,5609.089118,21
+99139,283396.2855,1100641.543,5745.991998,21
+99140,281805.8433,1103448.568,6034.883622,21
+99141,285026.5187,1105990.802,6051.927356,21
+99142,283893.0275,1107400.692,6196.259369,21
+99143,285410.9396,1111452.31,6610.012831,21
+99144,285451.9982,1112671.187,6373.617684,21
+99145,286646.0257,1116209.321,6896.453893,21
+99146,287452.0502,1117912.366,6929.622842,21
+99147,287013.6465,1120924.367,7056.365455,21
+99148,288872.3622,1123248.589,7231.165308,21
+99149,289875.3238,1125776.24,7482.77248,21
+99150,289306.319,1127639.894,7499.776807,21
+99151,290509.5962,1130823.299,7673.670466,21
+99152,290764.81,1133454.505,7908.21564,21
+99153,291978.8729,1137105.734,8081.413584,21
+99154,292117.2765,1138061.019,8098.397367,21
+99155,292804.3725,1141842.168,8347.793126,21
+99156,293606.0098,1143630.026,8520.186292,21
+99157,294083.2153,1145259.912,8645.09412,21
+99158,294262.8437,1149208.835,8677.829972,21
+99159,295459.9562,1150669.802,9125.38401,21
+99160,295729.5857,1151700.152,9316.717412,21
+99161,297091.3457,1155705.115,9388.402105,21
+99162,296217.6691,1157823.431,9579.102262,21
+99163,298770.0815,1160243.066,9755.501673,21
+99164,297250.9165,1161963.701,10050.08582,21
+99165,299255.4907,1165099.464,10100.00814,21
+99166,299090.1365,1167486.917,10396.9145,21
+99167,300562.078,1169160.366,10414.24536,21
+99168,300618.6456,1172523.813,10617.92336,21
+99169,301414.6273,1174335.794,10881.10528,21
+99170,302793.3985,1176787.185,11067.22032,21
+99171,301739.1751,1179735.736,11102.69206,21
+99172,304178.7394,1181933.631,11378.79519,21
+99173,303245.4936,1183864.569,11459.93585,21
+99174,303955.8034,1186652.835,11704.88534,21
+99175,304871.7516,1189203.395,11770.58186,21
+99176,306196.6533,1191145.302,12121.70819,21
+99177,304973.8541,1194250.929,12487.33922,21
+99178,306574.5065,1195230.071,12443.71302,21
+99179,307551.8257,1199639,12784.29079,21
+99180,307067.1091,1200379.266,12984.56885,21
+99181,308324.4694,1202271.061,13045.86004,21
+99182,310321.4416,1205419.416,13360.51458,21
+99183,311756.7591,1206732.379,13438.85527,21
+99184,311747.3922,1209706.512,13737.71644,21
+99185,313757.7992,1210847.066,13815.705,21
+99186,313982.0726,1211657.246,14113.90762,21
+99187,314446.4903,1214468.786,14190.71113,21
+99188,315554.4458,1214689.142,14504.98185,21
+99189,315902.4328,1217336.23,14549.96441,21
+99190,317577.6248,1218233.019,14866.13495,21
+99191,316788.6474,1220364.04,14952.22276,21
+99192,319955.1045,1219805.791,14987.41105,21
+99193,319432.3502,1221729.014,15564.3425,21
+99194,320615.7619,1223439.19,15373.04895,21
+99195,321538.3744,1224781.142,15672.34089,21
+99196,322271.0397,1226777.904,15982.20508,21
+99197,323489.8451,1227658.684,15938.76633,21
+99198,324109.5571,1228499.78,16222.56141,21
+99199,324917.4585,1231219.866,16415.9757,21
+99200,325107.3281,1232281.523,16605.83457,21
+99201,327417.7493,1232915.716,16786.88477,21
+99202,327063.0106,1236468.251,16846.44573,21
+99203,328513.5986,1235573.214,17141.87146,21
+99204,329364.1318,1238245.499,17231.4026,21
+99205,329372.6547,1239785.323,17511.73307,21
+99206,331943.8457,1241283.132,17571.30895,21
+99207,330438.5262,1241828.407,17882.48754,21
+99208,333064.7329,1244645.042,17941.33074,21
+99209,333262.6009,1244832.473,18002.9286,21
+99210,334468.3565,1247304.126,18527.241,21
+99211,334454.9801,1248918.666,18344.25979,21
+99212,336702.8134,1249068.648,18662.95033,21
+99213,336382.3686,1251669.699,18814.06107,21
+99214,337777.2442,1252908.688,19018.7121,21
+99215,338061.0438,1254112.637,19050.89727,21
+99216,339586.8096,1256152,19400.96207,21
+99217,339998.2785,1256740.707,19575.959,21
+99218,340947.012,1259130.122,21167.56023,21
+99219,341265.3176,1261790.194,20693.51888,21
+99220,342801.4184,1262165.118,21877.59681,21
+99221,343499.2556,1262721.254,23320.99968,21
+99222,344082.2963,1266395.369,23136.79873,21
+99223,344373.747,1266019.443,23845.62744,21
+99224,346242.5089,1268991.339,24429.11052,21
+99225,346911.041,1268821.077,24579.64437,21
+99226,347380.1953,1270626.028,25647.32402,21
+99227,347562.1373,1271217.039,25810.51239,21
+99228,350189.3208,1272949.584,26350.20061,21
+99229,350993.7373,1274872.037,26885.65953,21
+99230,351080.6069,1275369.114,27329.48752,21
+99231,351762.1537,1277900.404,27959.01593,21
+99232,353665.9944,1279060.245,28374.12931,21
+99233,353993.9097,1280169.186,28847.98256,21
+99234,354258.3454,1281199.355,29203.36053,21
+99235,355307.6368,1283782.004,30106.712,21
+99236,356726.1383,1283604.488,30195.71863,21
+99237,356211.106,1286516.328,30806.96847,21
+99238,358650.4739,1287339.676,31360.2354,21
+99239,357644.6735,1288343.433,31794.97744,21
+99240,360003.9873,1290638.056,32302.83047,15.6
+99241,0,0,0,15.6
+99242,0,0,0,15.6
+99243,0,258.1524293,0,15.6
+99244,0,0,0,15.6
+99245,0,0,1028110.544,15.6
+99246,0,0,0,15.6
+99247,340015.2746,0,0,15.6
+99248,0,0,0,15.6
+99249,0,0,0,15.6
+99250,0,0,0,15.6
+99251,0,0,0,15.6
+99252,0,0,0,15.6
+99253,0,0,0,15.6
+99254,0,0,0,15.6
+99255,0,0,0,15.6
+99256,0,0,0,15.6
+99257,0,0,0,15.6
+99258,0,0,0,15.6
+99259,0,0,0,15.6
+99260,0,0,0,15.6
+99261,0,0,0,15.6
+99262,0,0,0,15.6
+99263,0,0,0,15.6
+99264,0,0,0,15.6
+99265,0,0,0,15.6
+99266,0,0,0,15.6
+99267,0,368070.9993,0,15.6
+99268,0,0,0,15.6
+99269,0,0,0,15.6
+99270,0,0,0,15.6
+99271,0,0,0,15.6
+99272,0,0,0,15.6
+99273,0,0,0,15.6
+99274,0,0,0,15.6
+99275,0,0,0,15.6
+99276,0,0,0,15.6
+99277,0,0,0,15.6
+99278,0,0,0,15.6
+99279,0,0,997516.7252,15.6
+99280,0,0,0,15.6
+99281,0,0,0,15.6
+99282,0,0,0,15.6
+99283,340035.618,0,0,15.6
+99284,0,0,0,15.6
+99285,0,0,0,15.6
+99286,0,0,0,15.6
+99287,0,0,0,15.6
+99288,0,0,0,15.6
+99289,0,0,0,15.6
+99290,0,0,0,15.6
+99291,0,0,0,15.6
+99292,0,0,0,15.6
+99293,0,0,0,15.6
+99294,0,0,0,15.6
+99295,0,0,0,15.6
+99296,0,0,0,15.6
+99297,0,0,0,15.6
+99298,0,0,0,15.6
+99299,0,0,0,15.6
+99300,0,0,0,15.6
+99301,0,0,0,15.6
+99302,0,0,0,15.6
+99303,0,0,0,15.6
+99304,0,0,0,15.6
+99305,0,0,0,15.6
+99306,0,0,0,15.6
+99307,0,0,0,15.6
+99308,0,0,0,15.6
+99309,0,368057.6825,0,15.6
+99310,0,0,0,15.6
+99311,0,0,0,15.6
+99312,0,0,0,15.6
+99313,0,0,969584.6213,15.6
+99314,0,0,0,15.6
+99315,0,0,0,15.6
+99316,0,0,0,15.6
+99317,0,0,0,15.6
+99318,0,0,0,15.6
+99319,340056.6622,0,0,15.6
+99320,0,0,0,15.6
+99321,0,0,0,15.6
+99322,0,0,0,15.6
+99323,0,0,0,15.6
+99324,0,0,0,15.6
+99325,0,0,0,15.6
+99326,0,0,0,15.6
+99327,0,0,0,15.6
+99328,0,0,0,15.6
+99329,0,0,0,15.6
+99330,0,0,0,15.6
+99331,0,0,0,15.6
+99332,0,0,0,15.6
+99333,0,0,0,15.6
+99334,0,0,0,15.6
+99335,0,0,0,15.6
+99336,0,0,0,15.6
+99337,0,0,0,15.6
+99338,0,0,0,15.6
+99339,0,0,0,15.6
+99340,0,0,0,15.6
+99341,0,0,0,15.6
+99342,0,0,0,15.6
+99343,0,0,0,15.6
+99344,0,46230.78539,0,15.6
+99345,0,2411.814032,0,15.6
+99346,0,5467.15901,0,15.6
+99347,0,16691.04106,944102.8193,15.6
+99348,0,13794.62191,0,15.6
+99349,0,13088.83274,0,15.6
+99350,0,13806.53907,0,15.6
+99351,0,382128.117,0,15.6
+99352,0,14239.09159,0,15.6
+99353,0,14567.85874,0,15.6
+99354,0,14737.96468,0,15.6
+99355,340077.0957,14983.37022,0,15.6
+99356,0,15220.35194,0,15.6
+99357,0,15432.85515,0,15.6
+99358,0,15721.97715,0,15.6
+99359,0,15876.69574,0,15.6
+99360,0,16123.95439,0,15.6
+99361,0,16823.70325,0,15.6
+99362,0,16836.91617,0,15.6
+99363,0,16786.13503,0,15.6
+99364,0,16896.74654,0,15.6
+99365,0,16810.62917,0,15.6
+99366,0,16836.91445,0,15.6
+99367,0,16823.70067,0,15.6
+99368,0,16883.70738,0,15.6
+99369,0,16823.6988,0,15.6
+99370,0,16856.89865,0,15.6
+99371,0,16812.69016,0,15.6
+99372,0,16856.89626,0,15.6
+99373,0,16846.05405,0,15.6
+99374,0,0,0,15.6
+99375,0,0,0,15.6
+99376,0,0,0,15.6
+99377,0,0,0,15.6
+99378,0,66162.52306,0,15.6
+99379,0,0,0,15.6
+99380,0,6248.371183,0,15.6
+99381,0,25701.96115,0,15.6
+99382,0,15113.94626,920849.3157,15.6
+99383,0,16679.62696,0,15.6
+99384,0,16855.86062,0,15.6
+99385,0,16780.65111,0,15.6
+99386,0,16828.22424,0,15.6
+99387,0,16730.52817,0,15.6
+99388,0,16777.44225,0,15.6
+99389,0,16730.52525,0,15.6
+99390,0,16739.54375,0,15.6
+99391,0,16715.04743,0,15.6
+99392,340167.2121,16715.04606,0,15.6
+99393,0,16715.04471,0,15.6
+99394,0,384674.8065,0,15.6
+99395,0,16661.51419,0,15.6
+99396,0,16715.04073,0,15.6
+99397,0,16563.4006,0,15.6
+99398,0,16626.07755,0,15.6
+99399,0,16636.94521,0,15.6
+99400,0,16512.26273,0,15.6
+99401,0,16638.96364,0,15.6
+99402,0,16487.62711,0,15.6
+99403,0,16621.27449,0,15.6
+99404,0,16587.88409,0,15.6
+99405,0,16563.13734,0,15.6
+99406,0,16542.93482,0,15.6
+99407,0,16535.29409,0,15.6
+99408,0,0,0,15.6
+99409,0,0,0,15.6
+99410,0,0,0,15.6
+99411,0,0,0,15.6
+99412,0,65344.98039,0,15.6
+99413,0,0,0,15.6
+99414,0,6038.363996,0,15.6
+99415,0,24213.95279,0,15.6
+99416,0,15273.33288,0,15.6
+99417,0,16127.12791,899636.2385,15.6
+99418,0,16314.31048,0,15.6
+99419,0,16354.67363,0,15.6
+99420,0,16278.58153,0,15.6
+99421,0,16338.86958,0,15.6
+99422,0,16466.92107,0,15.6
+99423,0,16451.45619,0,15.6
+99424,0,16610.83394,0,15.6
+99425,0,16636.8522,0,15.6
+99426,0,16696.64077,0,15.6
+99427,0,16801.13424,0,15.6
+99428,0,16812.5683,0,15.6
+99429,340262.7316,16931.64206,0,15.6
+99430,0,16988.19753,0,15.6
+99431,0,17064.33855,0,15.6
+99432,0,17115.86209,0,15.6
+99433,0,17150.90733,0,15.6
+99434,0,17303.38492,0,15.6
+99435,0,17312.21505,0,15.6
+99436,0,17392.55169,0,15.6
+99437,0,385483.4037,0,15.6
+99438,0,17503.61507,0,15.6
+99439,0,17621.39463,0,15.6
+99440,0,17626.25998,0,15.6
+99441,0,17712.14845,0,15.6
+99442,0,0,0,15.6
+99443,0,0,0,15.6
+99444,0,0,0,15.6
+99445,0,0,0,15.6
+99446,0,72458.25928,0,15.6
+99447,0,0,0,15.6
+99448,0,7511.840093,0,15.6
+99449,0,27512.21473,0,15.6
+99450,0,16594.25583,0,15.6
+99451,0,18491.85814,0,15.6
+99452,0,18504.74389,880259.4557,15.6
+99453,0,18601.39671,0,15.6
+99454,0,18673.16857,0,15.6
+99455,0,18767.84306,0,15.6
+99456,0,18758.88298,0,15.6
+99457,0,18851.51921,0,15.6
+99458,0,18910.33544,0,15.6
+99459,0,18950.95811,0,15.6
+99460,0,19076.70682,0,15.6
+99461,0,19080.3395,0,15.6
+99462,0,19113.94634,0,15.6
+99463,0,19276.11792,0,15.6
+99464,0,19212.59096,0,15.6
+99465,0,19395.45743,0,15.6
+99466,340289.3759,19339.2566,0,15.6
+99467,0,19479.36396,0,15.6
+99468,0,19498.60314,0,15.6
+99469,0,19578.6954,0,15.6
+99470,0,19638.13783,0,15.6
+99471,0,19681.32988,0,15.6
+99472,0,19758.02332,0,15.6
+99473,0,19783.71394,0,15.6
+99474,0,19861.95171,0,15.6
+99475,0,19971.98144,0,15.6
+99476,0,0,0,15.6
+99477,0,0,0,15.6
+99478,0,0,0,15.6
+99479,0,72302.39449,0,15.6
+99480,0,367994.9843,0,15.6
+99481,0,14345.76859,0,15.6
+99482,0,26950.30112,0,15.6
+99483,0,19374.44107,0,15.6
+99484,0,20591.43377,0,15.6
+99485,0,20767.78828,0,15.6
+99486,0,20862.92746,0,15.6
+99487,0,20947.35397,862556.1348,15.6
+99488,0,21064.03595,0,15.6
+99489,0,21173.96326,0,15.6
+99490,0,21242.03079,0,15.6
+99491,0,21343.4237,0,15.6
+99492,0,21439.12638,0,15.6
+99493,0,21598.79057,0,15.6
+99494,0,21585.51319,0,15.6
+99495,0,21793.99108,0,15.6
+99496,0,21809.50057,0,15.6
+99497,0,21968.20496,0,15.6
+99498,0,22025.04582,0,15.6
+99499,0,22112.28101,0,15.6
+99500,0,22253.87623,0,15.6
+99501,0,22275.37168,0,15.6
+99502,0,22447.14182,0,15.6
+99503,340186.6054,22468.53245,0,15.6
+99504,0,22663.62029,0,15.6
+99505,0,22663.61789,0,15.6
+99506,0,22799.90808,0,15.6
+99507,0,22885.14307,0,15.6
+99508,0,22943.1038,0,15.6
+99509,0,0,0,15.6
+99510,0,0,0,15.6
+99511,0,0,0,15.6
+99512,0,84463.82656,0,15.6
+99513,0,4646.315033,0,15.6
+99514,0,13541.76119,0,15.6
+99515,0,32139.65131,0,15.6
+99516,0,22333.03569,0,15.6
+99517,0,23905.36834,0,15.6
+99518,0,23955.86248,0,15.6
+99519,0,24068.92486,0,15.6
+99520,0,24210.8933,0,15.6
+99521,0,24201.82891,0,15.6
+99522,0,24395.45731,846399.4865,15.6
+99523,0,392388.7487,0,15.6
+99524,0,24525.41808,0,15.6
+99525,0,24619.65654,0,15.6
+99526,0,24658.56713,0,15.6
+99527,0,24770.85808,0,15.6
+99528,0,24866.07555,0,15.6
+99529,0,24953.85356,0,15.6
+99530,0,25038.07967,0,15.6
+99531,0,25090.63988,0,15.6
+99532,0,25219.63893,0,15.6
+99533,0,25257.96626,0,15.6
+99534,0,25358.62003,0,15.6
+99535,0,25485.12793,0,15.6
+99536,0,25506.45783,0,15.6
+99537,0,25635.49493,0,15.6
+99538,0,407873.9156,0,15.6
+99539,0,38893.53704,0,15.6
+99540,340046.4088,82609.27045,0,15.6
+99541,0,148068.2785,0,15.6
+99542,0,113991.5846,0,15.6
+99543,0,100064.2222,0,15.6
+99544,0,105347.6039,0,15.6
+99545,0,200991.5903,0,15.6
+99546,0,116197.7763,0,15.6
+99547,0,116560.4883,0,15.6
+99548,0,143805.8958,0,15.6
+99549,0,131557.2133,0,15.6
+99550,0,133316.4095,0,15.6
+99551,0,134198.9989,0,15.6
+99552,0,134189.8474,0,15.6
+99553,0,135001.3676,0,15.6
+99554,0,134920.7935,0,15.6
+99555,0,135824.0334,0,15.6
+99556,0,135952.2652,0,15.6
+99557,0,136580.9191,831655.4049,15.6
+99558,0,136862.0783,0,15.6
+99559,0,137029.9375,0,15.6
+99560,0,138221.9648,0,15.6
+99561,0,137599.5916,0,15.6
+99562,0,138850.2571,0,15.6
+99563,0,138858.7244,0,15.6
+99564,0,139371.4118,0,15.6
+99565,0,139811.5634,0,15.6
+99566,0,508153.4494,0,15.6
+99567,0,140453.9864,0,15.6
+99568,0,26694.38878,0,15.6
+99569,0,26676.74562,0,15.6
+99570,0,26741.58892,0,15.6
+99571,0,26625.85545,0,15.6
+99572,0,26736.37333,0,15.6
+99573,0,26645.24579,0,15.6
+99574,0,26736.37544,0,15.6
+99575,0,0,0,15.6
+99576,0,0,0,15.6
+99577,339994.302,500092.0334,0,15.6
+99578,0,98929.52539,0,15.6
+99579,0,54369.78254,0,15.6
+99580,0,165139.6361,0,15.6
+99581,0,164640.8582,0,15.6
+99582,0,138708.2433,0,15.6
+99583,0,146848.4689,0,15.6
+99584,0,147025.4518,0,15.6
+99585,0,147282.7374,0,15.6
+99586,0,147541.8754,0,15.6
+99587,0,147645.8995,0,15.6
+99588,0,148204.324,0,15.6
+99589,0,147829.6423,0,15.6
+99590,0,148585.4858,0,15.6
+99591,0,148710.3789,0,15.6
+99592,0,148739.8266,818203.2934,15.6
+99593,0,149255.1364,0,15.6
+99594,0,149677.5213,0,15.6
+99595,0,149189.442,0,15.6
+99596,0,150199.0339,0,15.6
+99597,0,150295.948,0,15.6
+99598,0,150067.1601,0,15.6
+99599,0,151048.8631,0,15.6
+99600,0,150655.7294,0,17.8
+99601,76813.44784,1324879.148,0,17.8
+99602,17953.30229,968773.9899,0,17.8
+99603,6944.874895,211813.3701,0,17.8
+99604,21162.08941,405506.7855,0,17.8
+99605,19760.5814,435398.8401,0,17.8
+99606,17396.90744,406206.977,0,17.8
+99607,17803.35001,61145.52919,0,17.8
+99608,17711.19926,0,0,17.8
+99609,17699.8842,1252816.587,0,17.8
+99610,17536.80595,274146.2627,0,17.8
+99611,17607.36245,380375.6864,0,17.8
+99612,17476.80026,411220.9821,0,17.8
+99613,17407.19469,392086.9445,0,17.8
+99614,17388.99981,391119.389,0,17.8
+99615,357259.3248,389446.4152,0,17.8
+99616,17282.50763,387838.5138,0,17.8
+99617,17170.21133,388306.508,0,17.8
+99618,17187.22022,386639.2282,0,17.8
+99619,17088.83599,386443.3907,0,17.8
+99620,17057.73213,385838.3939,0,17.8
+99621,16983.80978,384912.929,0,17.8
+99622,16982.00623,384603.811,0,17.8
+99623,16896.90592,384130.6509,0,17.8
+99624,16839.79146,383671.0376,0,17.8
+99625,16789.96488,382621.3665,0,17.8
+99626,16789.95839,383322.4574,805914.9992,17.8
+99627,16693.02727,381512.6784,0,17.8
+99628,16653.54234,381733.312,0,17.8
+99629,16611.97745,380998.9428,0,17.8
+99630,16556.10307,381037.6559,0,17.8
+99631,0,380244.8912,0,17.8
+99632,0,379799.5045,0,17.8
+99633,0,379468.4619,0,17.8
+99634,0,379161.3037,0,17.8
+99635,0,378867.0711,0,17.8
+99636,0,378810.6263,0,17.8
+99637,63187.42724,377299.2696,0,17.8
+99638,1107.381336,378703.0386,0,17.8
+99639,6254.693771,57429.54232,0,17.8
+99640,24638.95434,0,0,17.8
+99641,14433.76044,0,0,17.8
+99642,16063.67668,1169776.983,0,17.8
+99643,16039.2503,231950.2639,0,17.8
+99644,16008.94825,253712.996,0,17.8
+99645,15988.09533,461625.7591,0,17.8
+99646,15916.28206,735777.8022,0,17.8
+99647,15853.83141,375058.2525,0,17.8
+99648,15833.71482,375749.7158,0,17.8
+99649,15746.53478,375590.2765,0,17.8
+99650,355690.1207,375105.9522,0,17.8
+99651,15685.01213,374753.4824,0,17.8
+99652,15600.68223,374605.029,0,17.8
+99653,15608.25792,374252.2532,0,17.8
+99654,15524.60832,374460.1,0,17.8
+99655,15467.77278,373987.8596,0,17.8
+99656,15479.2397,373139.7193,0,17.8
+99657,15373.28205,373868.7388,0,17.8
+99658,15350.62229,373174.7457,0,17.8
+99659,15312.65278,372765.9377,0,17.8
+99660,15244.20254,373671.4297,794682.2238,20
+99661,1070372.213,1774422.608,0,20
+99662,669401.5158,1427918.939,0,20
+99663,267809.4463,603896.9151,0,20
+99664,193174.1166,817350.5897,0,20
+99665,352951.0583,785667.6544,0,20
+99666,294709.3078,833366.8318,0,20
+99667,234060.5513,780219.5811,0,20
+99668,235242.8443,771275.2033,0,20
+99669,319475.6226,746115.0066,0,20
+99670,286757.6684,761926.4632,0,20
+99671,283306.7692,753441.1573,0,20
+99672,290048.7724,27571.20057,0,20
+99673,287363.9527,214591.9009,0,20
+99674,287887.8814,1230835.995,0,20
+99675,287384.6252,765382.4364,0,20
+99676,287553.0771,623090.2607,0,20
+99677,288004.1657,784765.6352,0,20
+99678,281245.3309,732892.5774,0,20
+99679,281930.6415,673868.47,0,20
+99680,281809.5376,770403.5272,0,20
+99681,281911.3102,741196.8439,0,20
+99682,281887.5245,736289.7771,0,20
+99683,282120.1838,1109423.237,0,20
+99684,282440.5422,739445.0658,0,20
+99685,622271.2594,739929.8583,0,20
+99686,282714.2032,737981.1808,0,20
+99687,282980.2849,736704.7745,1362.087995,20
+99688,282708.2233,737947.2893,18822.58804,20
+99689,283874.3361,735106.4098,7792.222785,20
+99690,283014.206,736677.4094,11504.74823,20
+99691,51585.38053,708495.5234,11826.73254,20
+99692,51422.31075,707234.9878,12147.70644,20
+99693,51567.15032,707043.3946,12362.36478,20
+99694,51441.9029,780387.9405,801161.7634,20
+99695,758740.3674,712065.489,12939.93747,20
+99696,166485.2678,737734.8251,13152.09067,20
+99697,247868.0391,734062.4474,13363.91951,20
+99698,320864.505,733114.3309,13575.43244,20
+99699,232727.2064,732628.5364,13992.80797,20
+99700,235090.2226,732831.0756,18243.93561,20
+99701,317939.8328,731987.1286,16503.18859,20
+99702,283873.385,732593.1865,17587.56285,20
+99703,283607.4303,617889.8876,18380.47753,20
+99704,290088.3185,201584.0605,18711.63488,20
+99705,287711.6209,131257.7157,19278.54632,20
+99706,288333.7172,1222919.075,22513.52647,20
+99707,288965.9674,711568.5595,23039.9599,20
+99708,288742.2641,626834.4451,23526.05816,20
+99709,289297.375,760720.6129,24736.05528,20
+99710,289600.3233,665931.7341,0,20
+99711,289934.4233,748025.8553,0,20
+99712,290914.6878,738544.5525,0,20
+99713,290276.9816,726112.8585,0,20
+99714,291312.3724,732887.75,0,20
+99715,291370.916,732301.9543,0,20
+99716,291587.5146,732684.5266,0,20
+99717,292352.5111,731020.9333,0,20
+99718,292554.1806,732888.0954,0,20
+99719,292849.5335,732742.5613,0,20
+99720,633273.4097,1099932.592,0,21
+99721,2275988.109,2614700.984,349259.3721,21
+99722,650386.552,1907479.385,30487.68949,21
+99723,200178.6588,662202.3061,121963.5992,21
+99724,374930.8736,784944.0076,138276.4672,21
+99725,459608.5966,797522.6983,126634.9397,21
+99726,515535.2939,1078290.315,141845.1515,21
+99727,426394.081,861316.8275,132323.2076,21
+99728,453107.4283,903807.6643,136923.7493,21
+99729,453187.8218,904926.3824,137317.1544,21
+99730,452120.1321,900269.3343,137954.2472,21
+99731,450418.7914,898071.3846,139045.901,21
+99732,451103.611,894168.408,139133.1995,21
+99733,449507.2215,891702.6384,140092.0243,21
+99734,448579.9402,891724.236,140475.6308,21
+99735,448956.4274,886412.9484,141832.2586,21
+99736,447291.8755,886510.9869,141850.7708,21
+99737,448135.8748,884549.4,142978.1296,21
+99738,446059.9809,880708.4509,143463.7676,21
+99739,447472.7232,881465.138,144481.1972,21
+99740,445658.8202,877061.9774,144968.5207,21
+99741,445324.3579,876263.913,145764.0571,21
+99742,445987.8333,875512.373,146659.6859,21
+99743,444169.7431,872950.9422,147120.0887,21
+99744,445514.4505,871766.2524,148382.8044,21
+99745,444093.6138,870256.6138,148678.7646,21
+99746,444418.057,868400.727,149953.9357,21
+99747,443359.0455,867387.3826,150355.501,21
+99748,443633.2764,866349.821,151518.4947,21
+99749,443338.8213,864744.0646,151802.7878,21
+99750,443855.1522,864210.7246,152810.1818,21
+99751,442987.1066,861091.8774,153882.5989,21
+99752,441856.7474,862229.0264,154643.9818,21
+99753,443560.366,860123.5261,155205.379,21
+99754,442430.3186,859290.6574,156224.279,21
+99755,442201.4592,857382.1855,157153.5854,21
+99756,442391.4151,857857.9198,157698.9746,21
+99757,442594.2016,855387.7572,158806.5023,21
+99758,441557.7217,854890.7562,159294.462,21
+99759,442434.9398,854271.6026,160624.8251,21
+99760,441562.3475,853995.1561,160922.421,21
+99761,440538.292,850953.96,162178.4036,21
+99762,440677.8236,852400.9482,163038.4219,21
+99763,439048.6895,850639.3024,163465.1224,21
+99764,439908.6172,849648.1136,164519.2041,21
+99765,439714.4961,849681.003,165408.7842,21
+99766,439765.2077,848362.4033,166476.0783,21
+99767,437885.2796,848895.7569,166797.1773,21
+99768,440181.7816,845785.5048,168092.5436,21
+99769,438467.2702,847797.1531,168852.8552,21
+99770,438520.2904,844954.3369,169400.1867,21
+99771,439612.1383,845335.8536,170743.5662,21
+99772,437972.5038,844460.5205,171113.0831,21
+99773,437872.351,844148.8561,172383.6792,21
+99774,439655.3055,843632.2896,172854.7053,21
+99775,437092.3754,841843.2739,173983.5915,21
+99776,439052.122,842941.1442,174732.5169,21
+99777,437488.072,842987.3215,175627.2136,21
+99778,438420.4572,840541.574,176353.2605,21
+99779,437067.3329,840508.1517,167347.6461,21
+99780,438505.3836,840630.5476,167033.3803,21
+99781,598970.5256,1561755.392,166712.3992,21
+99782,597388.5208,1557917.441,166939.421,21
+99783,598198.3145,1556717.37,167119.1761,21
+99784,597255.1491,1556540.289,167285.9399,21
+99785,598157.1765,1554332.328,167177.145,21
+99786,596812.2025,1553890.598,167521.2613,21
+99787,598335.2808,1550858.937,167604.0322,21
+99788,596338.6341,1550196.681,167754.7436,21
+99789,597605.3399,1551063.15,168189.977,21
+99790,596850.8164,1545586.047,167764.0609,21
+99791,597149.0771,1547182.221,168260.965,21
+99792,597106.6098,1545178.739,168522.1154,21
+99793,596352.117,1543378.165,168372.9681,21
+99794,596284.5221,1543049.034,168342.8469,21
+99795,597193.243,1540124.155,168759.1069,21
+99796,595665.0657,1541916.412,168710.4254,21
+99797,597478.0149,1536967.56,168749.3912,21
+99798,595375.0115,1537684.805,169237.3989,21
+99799,596574.4266,1535863.703,168878.1539,21
+99800,595770.271,1535341.003,168990.3268,21
+99801,596085.992,1533674.268,169244.347,21
+99802,596092.1139,1531753.349,169019.1673,21
+99803,595719.5489,1530889.662,169619.2369,21
+99804,595533.0979,1530896.704,169049.1324,21
+99805,594849.5523,1528038.738,169861.2186,21
+99806,596212.1165,1528188.39,169789.5178,21
+99807,595230.3917,1525692.233,169862.5355,21
+99808,595569.0462,1525542.881,170328.5251,21
+99809,594888.3233,1522629.635,170207.1742,21
+99810,595633.7517,1524659.053,170434.3627,21
+99811,594447.4542,1519563.672,170278.4438,21
+99812,595268.7232,1522022.477,170829.2851,21
+99813,594839.7168,1518071.064,170565.1188,21
+99814,594058.2847,1518765.148,170650.7566,21
+99815,594479.6586,1515854.005,170730.6884,21
+99816,594841.0891,1489034.277,170669.5548,21
+99817,593456.5023,1480160.417,170829.9062,21
+99818,595091.6826,1477810.411,172063.2523,21
+99819,592647.1295,1473295.357,171392.2625,21
+99820,594667.9269,1470400.067,172014.6937,21
+99821,593132.7671,1465894.781,172282.4359,21
+99822,593571.2931,1462793.304,172265.4043,21
+99823,593671.2635,1459916.016,172240.6382,21
+99824,593069.4924,1456460.659,172484.2144,21
+99825,592789.8744,1453447.091,172189.2745,21
+99826,592675.6136,1449917.264,172834.2446,21
+99827,592963.5662,1448159.298,172686.5459,21
+99828,593020.546,1443259.099,172977.2846,21
+99829,590991.1522,1441503.862,172614.4783,21
+99830,593693.3216,1437701.947,172828.5552,21
+99831,591516.7764,1435859.058,173021.5754,21
+99832,591253.8175,1431870.72,172994.0739,21
+99833,592285.1807,1429250.933,172830.9834,21
+99834,591859.7033,1426553.768,173305.2629,21
+99835,591150.401,1422909.53,172767.3287,21
+99836,591298.1414,1421146.745,173608.4804,21
+99837,590799.3277,1417721.107,172899.8131,21
+99838,591058.2813,1413473.338,172959.0295,21
+99839,590081.4757,1413499.552,173436.047,21
+99840,592116.7619,1407862.172,172960.9269,21
+99841,528499.1894,1347521.979,139524.2461,21
+99842,524370.7602,1337729.945,137467.9241,21
+99843,521797.4948,1335557.853,136758.5678,21
+99844,519965.8608,1330537.258,138281.0748,21
+99845,518617.3506,1326408.14,137461.3797,21
+99846,515886.0198,1323627.218,137461.2551,21
+99847,514494.8539,1318820.194,137019.3305,21
+99848,512016.7948,1315918.208,136435.057,21
+99849,511640.2709,1311733.365,136171.2688,21
+99850,510084.8568,1308249.426,136043.1285,21
+99851,506249.4854,1305485.354,135851.6766,21
+99852,507910.48,1300627.306,134663.0042,21
+99853,503195.8114,1297709.448,135204.5108,21
+99854,503565.1288,1295437.322,134545.2817,21
+99855,501737.5561,1289299.313,134244.5506,21
+99856,499542.6468,1287659.497,133958.055,21
+99857,497822.7262,1283739.253,133438.2673,21
+99858,497781.9142,1281536.782,133444.4759,21
+99859,495163.7444,1276518.246,132719.3436,21
+99860,493765.3101,1272778.71,132746.1888,21
+99861,491445.1912,1271287.655,132478.7616,21
+99862,492030.7689,1266357.078,131512.4224,21
+99863,488636.8908,1264554.612,131832.9315,21
+99864,488110.5073,1259945.609,131462.9521,21
+99865,486064.3295,1256860.209,130797.4063,21
+99866,485172.904,1254501.342,130663.0047,21
+99867,484279.3328,1249519.811,130143.848,21
+99868,481505.785,1247443.091,130095.6291,21
+99869,480505.0175,1243106.879,129360.6907,21
+99870,479863.1245,1239682.964,129627.8556,21
+99871,477492.4854,1236999.123,127785.0494,21
+99872,476512.0747,1232099.106,125389.8799,21
+99873,474892.8128,1229896.139,122882.8246,21
+99874,473267.7911,1224635.733,121861.4208,21
+99875,473525.878,1221683.427,120196.2692,21
+99876,470093.5292,1218267.708,118786.6988,21
+99877,469274.2915,1215464.439,117167.2011,21
+99878,469325.1681,1210110.792,115354.2592,21
+99879,465802.1527,1208087.613,114506.2689,21
+99880,466022.1362,1203971.442,112192.2484,21
+99881,463770.5954,1199716.685,111054.2782,21
+99882,463331.3738,1197238.516,108563.6499,21
+99883,461684.7922,1193195.061,108029.475,21
+99884,459169.9722,1189010.265,103201.5591,21
+99885,460191.679,1186007.212,102166.3166,21
+99886,456564.652,1182931.541,99734.09366,21
+99887,456716.8223,1178197.592,98610.98683,21
+99888,455046.9447,1176400.657,96693.15583,21
+99889,452617.2352,1170677.252,94792.75082,21
+99890,452902.202,1168466.189,93259.17222,21
+99891,450804.4262,1164664.631,91366.41727,21
+99892,449333.2442,1160443.243,89421.13862,21
+99893,448389.9739,1157633.712,87800.0564,21
+99894,447659.8371,1153580.201,85663.89892,21
+99895,445034.4614,1151180.124,83878.27229,21
+99896,444575.7273,1145769.426,82003.34844,21
+99897,443977.083,1142988.841,80000.87868,21
+99898,441169.0365,1139866.514,78570.5375,21
+99899,440740.6405,1135675.368,75885.26392,21
+99900,439679.0075,1131826.406,74996.79535,21
+99901,437915.2335,1128417.173,73013.73189,21
+99902,437039.2126,1125015.051,71762.16423,21
+99903,436039.8759,1121537.234,69843.74713,21
+99904,435233.2053,1119542.782,68379.81247,21
+99905,434947.2257,1113896.403,66585.55723,21
+99906,433093.9395,1112499.351,65198.12929,21
+99907,433278.6241,1108014.366,63694.4537,21
+99908,431917.6933,1104524.701,62123.25606,21
+99909,431599.6761,1102409.238,60262.47142,21
+99910,430276.4758,1100156.403,59151.25022,21
+99911,429589.8019,1097544.886,55852.4648,21
+99912,427972.2509,1094387.616,55129.68747,21
+99913,429059.3734,1092313.036,54682.35696,21
+99914,427407.8606,1089986.473,53755.56104,21
+99915,425272.5806,1086177.479,52478.49246,21
+99916,426737.3087,1084834.386,52622.08649,21
+99917,423589.7248,1081804.625,51087.70913,21
+99918,425408.4159,1078140.436,50662.01732,21
+99919,421943.448,1077470.751,49732.51431,21
+99920,423638.9308,1072864.47,49092.25846,21
+99921,420260.1459,1071659.379,48253.7516,21
+99922,422124.8926,1068228.749,47321.62764,21
+99923,419996.0182,1066282.549,46526.36135,21
+99924,419319.1552,1062442.395,46133.02825,21
+99925,418385.5092,1060582.292,44810.77857,21
+99926,417619.6629,1057891.653,44163.80971,21
+99927,417229.9972,1054653.243,43607.0355,21
+99928,415800.1787,1053339.528,42394.50866,21
+99929,415313.5836,1050000.76,41885.65122,21
+99930,415547.0429,1046404.031,40875.186,21
+99931,412471.9441,1045727.076,40252.88085,21
+99932,413241.4048,1042338.406,39802.78696,21
+99933,411244.4569,1040864.524,39155.76876,21
+99934,410570.0316,1037780.528,38648.13543,21
+99935,408867.5248,1036073.313,37860.48985,21
+99936,409051.2765,1033275.784,37467.15477,21
+99937,406944.6032,1032149.342,36771.00641,21
+99938,405831.4821,1028387.633,36314.33195,21
+99939,404612.6794,1028344.757,35726.26849,21
+99940,404608.1053,1024524.041,35170.36373,21
+99941,402337.9391,1022333.099,34497.36509,21
+99942,401168.1557,1021616.395,34145.24991,21
+99943,401165.2217,1017909.285,33772.31795,21
+99944,399025.7827,1018230.088,32832.18877,21
+99945,397903.8604,1016897.139,32639.60614,21
+99946,397624.9217,1013042.729,31984.26465,21
+99947,395254.5726,1013039.688,31473.87283,21
+99948,394584.2699,1009894.761,30788.08411,21
+99949,394055.1535,1007585.264,30644.00001,21
+99950,392253.1061,1006453.916,29769.33072,21
+99951,391376.3386,1003761.695,29464.35637,21
+99952,389990.3649,1002065.42,29005.04779,21
+99953,388516.5559,999969.9767,28312.27776,21
+99954,388147.3507,998859.4331,28005.49903,21
+99955,386313.2802,994648.6248,27110.21904,21
+99956,385900.497,993893.956,27346.89698,21
+99957,383836.2193,991268.2376,26319.58718,21
+99958,383453.7341,990151.577,26138.95124,21
+99959,381541.6911,987726.5737,25833.04103,21
+99960,381214.2544,986431.5462,25599.40722,21
+99961,378688.5849,981672.5591,24630.57149,21
+99962,378272.8431,980096.2894,24480.52134,21
+99963,375325.2279,976162.8691,23726.97854,21
+99964,374915.2684,974802.1108,23098.04804,21
+99965,373157.4782,970907.5407,22749.8298,21
+99966,370485.2382,969442.8207,22157.1332,21
+99967,369684.7445,965910.4635,21526.49165,21
+99968,367075.8796,963981.1072,21037.84652,21
+99969,366197.2306,960637.8091,20556.91717,21
+99970,364847.2115,960433.5001,20094.18137,21
+99971,361386.9347,957060.2378,19454.54092,21
+99972,361488.8833,955468.2371,18940.1816,21
+99973,359607.4479,952694.7503,18183.87616,21
+99974,356758.2688,949528.9105,17995.51226,21
+99975,355763.9352,947949.3236,17316.80022,21
+99976,354851.08,945072.2891,17109.23092,21
+99977,351282.9335,942856.0453,16873.11005,21
+99978,350771.3557,941033.6053,16517.34894,21
+99979,349173.4558,937007.0667,16132.33735,21
+99980,346437.1736,936408.0938,16105.50934,21
+99981,345539.0346,932558.0213,15684.76435,21
+99982,343065.2666,931774.5801,15446.08365,21
+99983,341804.3679,928635.475,15284.59394,21
+99984,339443.6622,926692.2205,14732.55925,21
+99985,338594.2035,923037.6427,14784.79787,21
+99986,336074.8686,922720.872,14314.99016,21
+99987,335000.3447,920087.1783,14032.91015,21
+99988,332765.827,916774.0779,13875.56591,21
+99989,331327.1482,915610.2398,13598.47137,21
+99990,329110.9453,912059.2688,13219.717,21
+99991,328228.1887,909677.4653,13040.71183,21
+99992,325944.5043,905809.886,12791.10162,21
+99993,325505.0134,904669.3235,12567.42353,21
+99994,322895.3782,901061.5873,12384.52053,21
+99995,322264.4042,899279.8988,11969.74247,21
+99996,320332.0046,897226.0789,11905.69547,21
+99997,319465.7368,896046.908,11572.20693,21
+99998,316842.937,893013.8746,11325.45009,21
+99999,315812.9601,893917.8655,11107.9748,21
+100000,315254.8482,890458.6546,11043.3269,21
+100001,312708.9766,893168.625,10523.7635,21
+100002,311339.5226,889771.7336,10453.10841,21
+100003,311073.2239,891127.6717,10227.39626,21
+100004,307243.1341,888102.5852,10020.14633,21
+100005,308250.6031,887621.5206,9615.101515,21
+100006,305673.3443,887252.1493,9600.537882,21
+100007,305207.2099,885539.4702,9349.297218,21
+100008,302049.8468,885427.2668,8987.584594,21
+100009,302458.2488,883493.3807,8890.890702,21
+100010,299841.1391,883370.5661,8563.852157,21
+100011,298905.0581,881956.387,8448.591593,21
+100012,298430.7292,880401.7844,8102.0643,21
+100013,294723.0115,880850.1818,8071.599917,21
+100014,295437.6752,878799.1064,7780.142556,21
+100015,293354.5494,877947.0226,7449.565619,21
+100016,291712.4694,876919.9015,7384.944045,21
+100017,290366.6977,876957.9711,7141.040853,21
+100018,288951.0189,874098.5052,6792.463454,21
+100019,287628.8811,874293.1091,6693.175117,21
+100020,286550.1742,873286.2563,6497.466443,21
+100021,285233.2782,870369.4903,6450.257723,21
+100022,285279.7137,869115.5755,6096.420397,21
+100023,284776.545,866311.4333,5993.677155,21
+100024,283296.6864,864695.1416,5801.378871,21
+100025,284312.0356,864023.1111,5555.532867,21
+100026,283583.7555,860924.1547,5179.281862,21
+100027,282301.7819,859976.5504,5096.202328,21
+100028,282967.5953,857831.8592,4899.163525,21
+100029,282620.0949,856623.0064,4631.660921,21
+100030,281189.7369,854289.9112,4435.520951,21
+100031,282112.2021,853427.1673,4018.053985,21
+100032,280651.8495,850368.0691,4133.052099,21
+100033,281360.1038,849594.8209,3583.177717,21
+100034,280811.275,847291.3118,3644.573122,21
+100035,279590.1113,846565.0133,3108.715614,21
+100036,280496.7668,844018.5883,3223.473537,21
+100037,278856.4467,842126.4885,2779.420974,21
+100038,279856.4627,841336.5087,2592.677523,21
+100039,278926.2436,838128.5722,2502.09482,21
+100040,278235.749,837649.5155,2085.691431,21
+100041,278798.9101,835370.8999,1874.598787,21
+100042,277070.5415,833945.8774,1836.557703,21
+100043,278188.7213,832442.6464,1463.683555,21
+100044,276764.5421,830434.3947,1241.304889,21
+100045,277198.5931,829368.4009,1202.997362,21
+100046,276437.9922,827475.8346,1203.006545,21
+100047,276494.2949,825237.3608,1145.34247,21
+100048,276660.0161,824033.2448,1145.350858,21
+100049,275355.7397,821903.896,1087.441939,21
+100050,275582.0897,820918.6943,1068.088065,21
+100051,274961.4528,817885.5661,1068.095438,21
+100052,275115.342,817596.8102,990.3680464,21
+100053,274184.4345,814274.5743,1009.852201,21
+100054,274914.4734,813426.0203,951.3348811,21
+100055,273449.4724,810870.2603,931.7716151,21
+100056,274334.1705,810263.8517,912.1766829,21
+100057,272950.6894,807332.4974,872.8847183,21
+100058,273872.0118,805802.9748,833.460706,21
+100059,272434.3787,805128.2302,833.4653501,21
+100060,273227.6203,800960.6863,793.9045474,21
+100061,273210.6695,801238.8979,754.2022463,21
+100062,271452.0853,798373.3348,734.2982035,21
+100063,272812.4685,796407.9005,714.3565531,21
+100064,271121.793,794884.3186,674.3541121,21
+100065,271892.8537,792034.0491,654.2949409,21
+100066,271016.6207,790945.581,614.0500561,21
+100067,271544.7405,789541.0026,614.0526661,21
+100068,270210.2506,784735.2804,553.3597416,21
+100069,271187.8202,785068.3286,533.039097,21
+100070,269460.254,782525.1677,533.0410916,21
+100071,271051.1278,779191.3572,471.7825734,21
+100072,269982.2648,779465.5365,451.2614024,21
+100073,269464.5824,775588.602,430.6857941,21
+100074,269653.3633,773629.951,410.0537185,21
+100075,268777.4809,771600.9748,368.6099888,21
+100076,269519.3905,770027.0742,347.7942428,21
+100077,269060.0189,767744.8258,305.9578248,21
+100078,268156.7745,765826.8466,305.9585126,21
+100079,268647.1201,762968.7496,242.6347742,21
+100080,267597.8659,761395.9774,242.6352136,21
+100081,330330.095,817672.9974,754.2560265,21
+100082,333271.3056,822384.0904,774.1326827,21
+100083,332401.0746,820701.0704,754.2637766,21
+100084,332336.2433,820962.4417,734.3579959,21
+100085,332892.1672,821596.9634,714.4146099,21
+100086,330885.6467,819373.3841,714.4180699,21
+100087,332037.3746,820675.8405,674.4119732,21
+100088,330806.0986,818825.8885,674.4150764,21
+100089,329511.7468,819449.9685,654.3539758,21
+100090,329758.9597,818095.6494,634.2519133,21
+100091,329289.4551,817796.1522,614.1079205,21
+100092,327392.2732,816907.7012,593.9209669,21
+100093,328393.9483,816404.2047,573.689954,21
+100094,327113.1014,817103.2785,573.6922155,21
+100095,325962.3296,814270.1728,533.0859402,21
+100096,325980.7081,815282.1444,512.7173516,21
+100097,325022.3181,813099.524,512.7233129,21
+100098,324362.5959,812906.4462,471.8280398,21
+100099,323816.9441,812440.3505,471.8303629,21
+100100,323027.7822,811065.2058,451.3070139,21
+100101,322352.4782,809593.4388,430.7292152,21
+100102,320940.5423,802723.8408,389.4008549,21
+100103,320868.5266,802014.5835,410.096094,21
+100104,320837.2297,799395.0768,368.6478782,21
+100105,319119.0688,798997.1053,347.8298867,21
+100106,317781.3568,795112.1315,326.9449802,21
+100107,318068.8722,793405.181,326.945757,21
+100108,317118.8893,792203.6859,284.9602857,21
+100109,315897.2967,788475.4879,284.9608793,21
+100110,315683.7309,788253.9743,242.6603084,21
+100111,314230.2674,785220.0397,263.8533901,21
+100112,313836.9615,784535.8106,200.0005395,21
+100113,313044.092,781889.5104,221.3796867,21
+100114,311907.9731,780969.7788,178.5170626,21
+100115,310967.1876,779465.6877,178.5173061,21
+100116,310835.936,777046.5887,156.917632,21
+100117,309020.6312,777279.0965,135.1888656,21
+100118,309706.3506,774373.5371,135.1890138,21
+100119,307159.5545,773197.1485,102.3141967,21
+100120,307324.9749,771442.2778,91.2684905,21
+100121,306368.1197,771708.7444,80.17190891,21
+100122,304388.7105,768598.8431,57.80074508,21
+100123,304913.527,767105.3003,46.5081098,21
+100124,303747.7588,766762.6597,23.62880815,21
+100125,302733.1153,764768.1051,23.62881321,21
+100126,301634.4821,763095.7332,0,21
+100127,300652.6615,762919.9485,0,21
+100128,299998.4683,760694.8502,0,21
+100129,300112.8478,759274.1917,0,21
+100130,298342.6094,758773.8463,0,21
+100131,297538.2159,756934.7445,0,21
+100132,299403.3254,755374.5636,0,21
+100133,297601.0157,755044.965,0,21
+100134,297788.1186,752783.6505,0,21
+100135,297853.8435,751242.4055,0,21
+100136,296924.3209,750253.4451,0,21
+100137,297123.1523,748815.5294,0,21
+100138,296190.2315,748107.914,0,21
+100139,296660.5999,746129.1649,0,21
+100140,296124.0797,747970.1505,0,21
+100141,296618.1443,745153.0599,0,21
+100142,296110.8788,745233.5821,0,21
+100143,295598.3467,744632.1775,0,21
+100144,296544.8536,745778.3782,0,21
+100145,296062.2512,743324.589,0,21
+100146,296763.2425,745696.4442,0,21
+100147,294462.9959,743707.5496,0,21
+100148,297274.6267,744022.6049,0,21
+100149,294991.2876,743404.5989,0,21
+100150,296129.7313,744310.8689,0,21
+100151,295530.8453,743708.0263,0,21
+100152,295747.4197,742859.1041,0,21
+100153,295380.9787,744649.6394,0,21
+100154,295426.3727,742747.057,0,21
+100155,295929.0269,743367.1241,0,21
+100156,294982.3746,744109.7042,0,21
+100157,295541.7441,743255.6622,0,21
+100158,294791.9995,743002.2517,0,21
+100159,296228.7158,744143.1001,0,21
+100160,294278.5053,743260.94,0,21
+100161,294983.731,743373.9234,0,21
+100162,295904.8995,744487.3081,0,21
+100163,293768.7109,743625.8074,0,21
+100164,295240.2057,743357.7747,0,21
+100165,295517.4645,743782.4488,0,21
+100166,294126.3608,744549.7085,0,21
+100167,295011.3178,744765.4019,0,21
+100168,294021.7293,744344.0925,0,21
+100169,294335.6161,744386.8495,0,21
+100170,294859.5268,745013.6884,0,21
+100171,294466.7608,745895.7109,0,21
+100172,294788.5865,746098.4695,0,21
+100173,295072.0196,745705.8094,0,21
+100174,295794.0364,747903.9212,0,21
+100175,295677.622,747305.7013,0,21
+100176,296354.2551,747817.3458,0,21
+100177,296242.2716,748510.7736,0,21
+100178,296884.8516,748933.3883,0,21
+100179,297662.739,750725.624,0,21
+100180,297726.0513,750231.7942,0,21
+100181,298070.7114,751188.3561,0,21
+100182,298335.8629,751861.2728,0,21
+100183,298504.0458,753403.9562,0,21
+100184,299389.3066,752588.7868,0,21
+100185,300465.6278,753522.5779,0,21
+100186,299522.6718,756386.0087,0,21
+100187,301299.7997,753894.0553,0,21
+100188,300247.5892,757073.0953,0,21
+100189,302260.4083,756233.8852,0,21
+100190,301995.5298,758168.9785,0,21
+100191,302702.377,758078.6528,0,21
+100192,303275.3531,758546.765,0,21
+100193,303613.002,761080.6621,0,21
+100194,303877.5803,759183.2137,0,21
+100195,305706.4574,762399.6049,0,21
+100196,304750.1826,761619.0083,0,21
+100197,306549.9428,761942.1511,0,21
+100198,306006.1737,764929.4286,0,21
+100199,307435.0443,763415.3471,0,21
+100200,307911.8565,765404.384,0,21
+100201,307907.5089,764579.1121,0,21
+100202,310303.7623,765602.7259,0,21
+100203,308455.4886,763911.4864,0,21
+100204,310777.6357,764211.6069,0,21
+100205,311303.3548,764904.1957,0,21
+100206,310483.7515,762559.4503,0,21
+100207,312030.4537,764019.0834,0,21
+100208,312328.9711,762193.2945,0,21
+100209,311473.3919,763169.5184,0,21
+100210,313514.8575,762833.1443,0,21
+100211,314023.6473,761061.073,0,21
+100212,313830.8064,761918.3684,0,21
+100213,314407.4953,761592.685,0,21
+100214,314624.8168,760630.6957,0,21
+100215,315954.4035,760525.8289,0,21
+100216,315539.024,759521.3494,0,21
+100217,316822.0597,760200.6442,0,21
+100218,317213.1913,758947.4527,0,21
+100219,316939.5503,759348.7514,0,21
+100220,318935.2814,757803.2243,0,21
+100221,317643.1676,757892.7598,0,21
+100222,320087.5182,757899.5239,0,21
+100223,319436.8934,757032.8774,0,21
+100224,320800.8577,756884.2054,0,21
+100225,320272.5993,756105.8056,0,21
+100226,322016.3738,755702.6145,0,21
+100227,321292.9069,756094.6936,0,21
+100228,322513.6212,754890.9399,0,21
+100229,323436.885,754002.8285,0,21
+100230,323661.3141,754684.8582,0,21
+100231,323678.7208,753088.2466,0,21
+100232,325450.0047,753405.2744,0,21
+100233,324024.7022,752665.2137,0,21
+100234,324503.6938,751348.9926,0,21
+100235,326605.0393,752409.6523,0,21
+100236,324637.9565,750265.875,0,21
+100237,325065.5138,750719.7328,0,21
+100238,326915.3887,749417.0885,0,21
+100239,325370.5354,749779.4704,0,21
+100240,326974.9834,747853.903,0,21
+100241,325842.4012,748363.1176,0,21
+100242,327117.2672,747399.9527,0,21
+100243,327586.7494,747454.8546,0,21
+100244,326194.6508,745016.8206,0,21
+100245,328355.0889,746731.3811,0,21
+100246,327325.485,744619.345,0,21
+100247,327972.3111,745102.3119,0,21
+100248,328256.9025,743685.0688,0,21
+100249,328312.2123,743601.876,0,21
+100250,328406.3443,742660.6207,0,21
+100251,328508.6426,741815.5513,0,21
+100252,329586.0634,741635.8814,0,21
+100253,328398.8443,740450.4991,0,21
+100254,329967.747,739188.5119,0,21
+100255,328975.7441,740646.2825,0,21
+100256,330609.5552,737604.4834,0,21
+100257,329022.0742,738131.4362,0,21
+100258,330248.9031,737733.9606,0,21
+100259,330923.6269,735198.8953,0,21
+100260,329530.724,733848.0549,0,21
+100261,330793.1984,734688.0188,0,21
+100262,331109.1736,734067.4226,0,21
+100263,331633.9828,733211.651,0,21
+100264,331539.2084,733642.7563,0,21
+100265,333037.8939,732843.5539,0,21
+100266,332235.594,733121.4803,0,21
+100267,332272.2615,732173.2895,0,21
+100268,334690.9887,733056.7215,0,21
+100269,333159.8165,731466.3462,0,21
+100270,333145.6028,731780.876,0,21
+100271,335163.7939,731714.0175,0,21
+100272,334111.416,730704.5439,0,21
+100273,335577.8289,732195.3176,0,21
+100274,335083.3701,729918.8243,0,21
+100275,335568.5238,730665.5524,0,21
+100276,336572.3218,730602.5053,0,21
+100277,335674.4739,729919.2971,0,21
+100278,337390.7137,729976.4413,0,21
+100279,336277.6435,730316.4679,0,21
+100280,338004.4711,728552.1733,0,21
+100281,338582.7371,729638.4759,0,21
+100282,339172.1151,729570.8365,0,21
+100283,339552.6949,728652.1854,0,21
+100284,340431.9227,729530.5171,0,21
+100285,341024.9183,729774.8274,0,21
+100286,341391.9974,730165.1943,0,21
+100287,343033.1265,730102.2623,0,21
+100288,342841.0033,729714.7342,0,21
+100289,344197.7939,730132.0505,0,21
+100290,343906.279,730585.4892,0,21
+100291,345504.936,730179.3007,0,21
+100292,346121.8288,730795.9845,0,21
+100293,345831.9854,730895.498,0,21
+100294,348173.9702,732351.184,0,21
+100295,347488.5499,731167.4472,0,21
+100296,349294.0975,732566.2354,0,21
+100297,349467.0153,732900.2268,0,21
+100298,349997.3571,732624.6131,0,21
+100299,351460.8477,733947.3518,0,21
+100300,351251.0218,733906.6917,0,21
+100301,353032.6571,734368.9823,0,21
+100302,353506.8,735304.6284,0,21
+100303,353268.2268,735349.6212,0,21
+100304,354630.4004,736289.4746,0,21
+100305,355467.3322,736209.074,0,21
+100306,356185.1939,737020.8842,0,21
+100307,356622,738974.0638,0,21
+100308,357459.537,738045.2613,0,21
+100309,358954.9662,738231.7877,0,21
+100310,358917.3412,740581.4847,0,21
+100311,359183.9373,740369.714,0,21
+100312,361673.1097,741400.9185,0,21
+100313,360418.28,740851.9521,0,21
+100314,362551.9649,743548.0453,0,21
+100315,362257.2668,743505.2163,0,21
+100316,363649.0863,743999.4725,0,21
+100317,364125.6312,744418.3706,0,21
+100318,365055.5558,745537.1413,0,21
+100319,365222.0519,747564.6308,0,21
+100320,366643.1534,746226.3505,0,21
+100321,367468.3449,748512.5009,0,21
+100322,366547.8313,750998.4827,0,21
+100323,369214.9158,751874.8732,0,21
+100324,368451.6259,753666.9772,0,21
+100325,370422.0681,755409.3557,0,21
+100326,370008.7525,757453.8361,0,21
+100327,371399.4829,758270.0292,0,21
+100328,372093.7973,762199.6113,0,21
+100329,371939.9738,763483.0539,0,21
+100330,373555.9045,765876.9544,0,21
+100331,373833.4812,767737.986,0,21
+100332,374622.1603,769242.4379,0,21
+100333,376343.3524,771330.6465,0,21
+100334,375696.8803,772758.1764,0,21
+100335,376617.0652,775826.2456,0,21
+100336,377309.5042,777026.0784,0,21
+100337,379588.1093,779114.4154,0,21
+100338,377139.673,781989.0809,0,21
+100339,381111.1992,783904.2139,0,21
+100340,379590.4829,787177.8734,0,21
+100341,380565.5004,787953.4031,0,21
+100342,382380.5816,791562.9996,0,21
+100343,381846.8118,791150.2651,0,21
+100344,383904.4154,796775.2872,0,21
+100345,382821.7272,797743.654,0,21
+100346,385259.9279,800487.2824,0,21
+100347,385156.966,804002.7942,0,21
+100348,385507.8452,804799.2212,0,21
+100349,387044.2957,808976.9984,0,21
+100350,387201.1059,808791.2163,0,21
+100351,388200.7617,816757.7586,0,21
+100352,389552.4817,825595.4395,0,21
+100353,388440.7039,825487.6409,0,21
+100354,390771.1001,830018.4144,0,21
+100355,391103.6725,832604.3071,0,21
+100356,391851.688,838055.1108,0,21
+100357,392609.8633,839252.7684,0,21
+100358,392860.6521,842614.5916,0,21
+100359,395292.1338,846760.5787,0,21
+100360,394129.5813,847908.7128,0,21
+100361,395087.384,852739.8466,0,21
+100362,397775.72,855439.5602,0,21
+100363,395510.029,857956.4285,0,21
+100364,399198.1265,860634.498,0,21
+100365,397383.7612,864815.048,0,21
+100366,399993.7627,866333.6837,0,21
+100367,399811.1116,869658.386,0,21
+100368,399838.2965,872951.8579,0,21
+100369,402403.3304,874767.683,0,21
+100370,402122.2954,878646.8508,0,21
+100371,402713.3289,880900.7008,0,21
+100372,404586.0514,883177.0577,0,21
+100373,403396.2217,887665.817,0,21
+100374,405507.4654,887762.2887,0,21
+100375,406424.8415,892930.1362,0,21
+100376,406208.0771,894099.0733,0,21
+100377,407600.1169,897281.9509,0,21
+100378,408670.7749,900353.1405,0,21
+100379,408895.9299,901772.4381,0,21
+100380,409766.7929,905337.247,0,21
+100381,39877.03324,434813.2704,0,21
+100382,39893.70273,435222.7159,0,21
+100383,39977.29717,435767.2292,0,21
+100384,40201.72944,436587.3723,0,21
+100385,40588.75057,437720.4739,0,21
+100386,41112.74481,439109.6234,0,21
+100387,41728.09807,440660.88,0,21
+100388,42391.85949,442287.5626,0,21
+100389,43072.51339,443928.1178,0,21
+100390,43749.59832,445544.2164,0,21
+100391,44410.47266,447113.678,0,21
+100392,45047.35448,448624.4385,0,21
+100393,45655.46401,450070.4415,0,21
+100394,46231.96432,451449.317,0,21
+100395,46775.54052,452761.279,0,21
+100396,47286.03003,454008.3309,0,21
+100397,47764.14034,455193.7164,0,21
+100398,48211.19628,456321.466,0,21
+100399,48628.90905,457395.9873,0,21
+100400,49019.17539,458421.7506,0,21
+100401,49383.98803,459403.1732,0,21
+100402,49725.32791,460344.4848,0,21
+100403,50045.12092,461249.535,0,21
+100404,50345.22218,462121.8581,0,21
+100405,50627.39505,462964.7194,0,21
+100406,50893.27854,463781.0981,0,21
+100407,51144.3926,464573.724,0,21
+100408,51382.11823,465345.037,0,21
+100409,51607.70461,466097.1942,0,21
+100410,51822.29303,466832.113,0,21
+100411,52026.92784,467551.5089,0,21
+100412,52222.55267,468256.9183,0,21
+100413,52410.00849,468949.6576,0,21
+100414,52590.02238,469630.8008,0,21
+100415,52763.22475,470301.2359,0,21
+100416,52929.63947,470961.7417,0,21
+100417,53091.42111,471613.0445,0,21
+100418,53246.89882,472255.836,0,21
+100419,53398.60014,472890.7726,0,21
+100420,53544.8703,473518.4486,0,21
+100421,53687.51449,474139.3865,0,21
+100422,53826.42173,474754.0503,0,21
+100423,53961.83273,475362.8694,0,21
+100424,54094.0032,475966.25,0,21
+100425,54223.17388,476564.5735,0,21
+100426,54349.56547,477158.1794,0,21
+100427,54473.37625,477747.3605,0,21
+100428,54594.78311,478332.3692,0,21
+100429,54713.94846,478913.4396,0,21
+100430,54831.02436,479490.797,0,21
+100431,54946.15186,480064.6448,0,21
+100432,55059.45703,480635.1594,0,21
+100433,55171.04962,481202.5027,0,21
+100434,55281.02437,481766.825,0,21
+100435,55389.46909,482328.2676,0,21
+100436,55496.4686,482886.9661,0,21
+100437,55602.10375,483443.0449,0,21
+100438,55706.44739,483996.6142,0,21
+100439,55809.56301,484547.774,0,21
+100440,55911.50453,485096.6121,0,21
+100441,0,0,0,21
+100442,0,0,0,21
+100443,272575.6653,514.6536689,0,21
+100444,0,0,0,21
+100445,0,0,0,21
+100446,0,0,0,21
+100447,0,0,1499110.189,21
+100448,0,0,0,21
+100449,0,0,0,21
+100450,0,0,0,21
+100451,0,0,0,21
+100452,0,0,0,21
+100453,0,0,0,21
+100454,0,0,0,21
+100455,340058.6029,0,0,21
+100456,0,276.8520426,0,21
+100457,0,0,0,21
+100458,0,0,0,21
+100459,0,0,0,21
+100460,0,0,0,21
+100461,0,271397.4588,0,21
+100462,0,0,0,21
+100463,0,0,0,21
+100464,0,0,0,21
+100465,0,0,0,21
+100466,0,0,0,21
+100467,0,0,0,21
+100468,0,0,0,21
+100469,0,267334.2368,0,21
+100470,0,0,0,21
+100471,0,0,0,21
+100472,0,0,0,21
+100473,0,23387.0163,0,21
+100474,0,598.8871213,0,21
+100475,0,2497.491041,0,21
+100476,0,5156.398726,0,21
+100477,0,274177.9194,0,21
+100478,0,5179.354152,0,21
+100479,0,6742.86159,0,21
+100480,0,6180.242714,0,21
+100481,0,6508.33258,0,21
+100482,0,6533.485061,0,21
+100483,0,6651.742359,1425876.955,21
+100484,0,6694.667084,0,21
+100485,0,274020.7828,0,21
+100486,0,6820.778244,0,21
+100487,0,6943.761316,0,21
+100488,0,6977.176896,0,21
+100489,0,7063.835661,0,21
+100490,0,7101.465333,0,21
+100491,0,7205.23165,0,21
+100492,0,7218.46882,0,21
+100493,0,274527.1339,0,21
+100494,0,7341.290369,0,21
+100495,0,7433.06386,0,21
+100496,340078.5234,7509.027244,0,21
+100497,0,7539.558042,0,21
+100498,0,7615.118526,0,21
+100499,0,7658.574746,0,21
+100500,0,7735.57237,0,21
+100501,0,275132.5341,0,21
+100502,0,8136.89229,0,21
+100503,0,0,0,21
+100504,0,0,0,21
+100505,0,0,0,21
+100506,0,0,0,21
+100507,0,0,0,21
+100508,0,31479.59796,0,21
+100509,0,269323.2271,0,21
+100510,0,4068.061945,0,21
+100511,0,12395.5884,0,21
+100512,0,9294.395029,0,21
+100513,0,9315.65196,0,21
+100514,0,9659.010823,0,21
+100515,0,9785.021803,0,21
+100516,0,9879.696103,0,21
+100517,0,277174.9961,0,21
+100518,0,10139.12059,0,21
+100519,0,10210.31773,1359702.44,21
+100520,0,10357.14578,0,21
+100521,0,10479.64733,0,21
+100522,0,10532.79623,0,21
+100523,0,10706.16037,0,21
+100524,0,10811.89871,0,21
+100525,0,278051.7058,0,21
+100526,0,11035.2681,0,21
+100527,0,11103.40178,0,21
+100528,0,11517.44112,0,21
+100529,0,11964.62317,0,21
+100530,0,11954.54099,0,21
+100531,0,12222.91923,0,21
+100532,0,12415.44019,0,21
+100533,0,279763.3926,0,21
+100534,0,12805.24967,0,21
+100535,0,12969.70411,0,21
+100536,0,13187.01954,0,21
+100537,0,13386.86212,0,21
+100538,340081.0646,0,0,21
+100539,0,0,0,21
+100540,0,0,0,21
+100541,0,309634.3184,0,21
+100542,0,235.6371821,0,21
+100543,0,13333.60099,0,21
+100544,0,17626.49102,0,21
+100545,0,14147.33955,0,21
+100546,0,15009.99317,0,21
+100547,0,15200.38193,0,21
+100548,0,15342.72774,0,21
+100549,0,282736.8263,0,21
+100550,0,15695.02593,0,21
+100551,0,15888.86598,0,21
+100552,0,16066.02436,0,21
+100553,0,16222.86324,0,21
+100554,0,16407.96353,0,21
+100555,0,16568.08049,1303213.867,21
+100556,0,16747.43528,0,21
+100557,0,284087.849,0,21
+100558,0,17041.05201,0,21
+100559,0,17263.60218,0,21
+100560,0,17395.95482,0,21
+100561,0,17525.38373,0,21
+100562,0,17684.03206,0,21
+100563,0,17748.03797,0,21
+100564,0,17965.20779,0,21
+100565,0,285164.008,0,21
+100566,0,18181.88501,0,21
+100567,0,18289.66219,0,21
+100568,0,18420.31752,0,21
+100569,0,18504.22117,0,21
+100570,0,18675.5982,0,21
+100571,0,0,0,21
+100572,0,0,0,21
+100573,0,267172.3566,0,21
+100574,0,58899.17503,0,21
+100575,0,7301.584966,0,21
+100576,0,14698.86442,0,21
+100577,0,23751.04793,0,21
+100578,0,19129.95821,0,21
+100579,0,19807.01206,0,21
+100580,340072.4338,19870.30543,0,21
+100581,0,287226.5147,0,21
+100582,0,251743.078,0,21
+100583,0,23479.60443,0,21
+100584,0,46559.59203,0,21
+100585,0,68997.31834,0,21
+100586,0,104946.4072,0,21
+100587,0,74476.0455,0,21
+100588,0,84248.83658,0,21
+100589,0,351974.5557,0,21
+100590,0,85657.02473,0,21
+100591,0,86552.3142,1250066.443,21
+100592,0,87110.63563,0,21
+100593,0,88224.39786,0,21
+100594,0,88918.9393,0,21
+100595,0,89696.67363,0,21
+100596,0,90333.98085,0,21
+100597,0,358620.011,0,21
+100598,0,92059.57366,0,21
+100599,0,92641.11656,0,21
+100600,0,93930.70998,0,21
+100601,0,94299.01724,0,21
+100602,0,95221.47282,0,21
+100603,0,96078.55191,0,21
+100604,0,74489.75303,0,21
+100605,0,342160.6783,0,21
+100606,0,75575.54936,0,21
+100607,0,150456.4979,0,21
+100608,0,88313.86015,0,21
+100609,0,91364.93414,0,21
+100610,0,108289.2554,0,21
+100611,0,101565.1931,0,21
+100612,0,23308.84251,0,21
+100613,0,290641.3506,0,21
+100614,0,23531.65713,0,21
+100615,0,23677.91729,0,21
+100616,0,23696.16074,0,21
+100617,0,23861.57437,0,21
+100618,0,329592.3788,0,21
+100619,0,37572.91222,0,21
+100620,0,65591.77009,0,21
+100621,0,415001.2918,0,21
+100622,340053.3847,102994.0256,0,21
+100623,0,109947.4779,0,21
+100624,0,110445.4345,0,21
+100625,0,110367.5433,0,21
+100626,0,110574.8352,0,21
+100627,0,110790.0506,1200135.464,21
+100628,0,110881.2778,0,21
+100629,0,378315.7384,0,21
+100630,0,111045.1442,0,21
+100631,0,111665.4917,0,21
+100632,0,111428.3707,0,21
+100633,0,111589.7003,0,21
+100634,0,111994.5284,0,21
+100635,0,111900.2285,0,21
+100636,0,111972.3056,0,21
+100637,0,355076.5687,0,21
+100638,0,88069.20217,0,21
+100639,0,156207.5355,0,21
+100640,0,95498.39064,0,21
+100641,0,112998.9103,0,21
+100642,0,115081.8315,0,21
+100643,0,113098.4859,0,21
+100644,0,113238.6257,0,21
+100645,0,380664.4985,0,21
+100646,0,114294.0154,0,21
+100647,0,116373.9806,0,21
+100648,0,24642.54177,0,21
+100649,0,24656.46922,0,21
+100650,0,24657.73661,0,21
+100651,0,24638.77629,0,21
+100652,0,24691.31812,0,21
+100653,0,291731.1334,0,21
+100654,0,372833.0772,0,21
+100655,0,28495.45942,0,21
+100656,0,80196.67775,0,21
+100657,0,149959.4576,0,21
+100658,0,110177.7302,0,21
+100659,0,115327.0401,0,21
+100660,0,115614.0269,0,21
+100661,0,388441.5038,0,21
+100662,0,120879.3668,0,21
+100663,0,121029.4423,0,21
+100664,340046.3249,121279.1519,1154405.653,21
+100665,0,122117.2016,0,21
+100666,0,122114.1532,0,21
+100667,0,122265.4353,0,21
+100668,0,123181.4474,0,21
+100669,0,365137.2326,0,21
+100670,0,98540.07556,0,21
+100671,0,99040.40855,0,21
+100672,0,183023.4155,0,21
+100673,0,113193.8437,0,21
+100674,0,110395.2149,0,21
+100675,0,133986.9158,0,21
+100676,0,123861.5743,0,21
+100677,0,392474.4103,0,21
+100678,0,125305.4522,0,21
+100679,0,126087.0297,0,21
+100680,0,125881.7319,0,15.6
+100681,0,127124.0372,0,15.6
+100682,0,128273.058,0,15.6
+100683,0,129444.9149,0,15.6
+100684,0,25221.39944,0,15.6
+100685,0,292304.4122,0,15.6
+100686,0,25378.89606,0,15.6
+100687,0,25520.00115,0,15.6
+100688,0,25534.26373,0,15.6
+100689,0,391249.4715,0,15.6
+100690,0,26263.65429,0,15.6
+100691,0,93818.56123,0,15.6
+100692,0,184840.5814,0,15.6
+100693,0,397078.7104,0,15.6
+100694,0,140552.7655,0,15.6
+100695,0,142237.9924,0,15.6
+100696,0,143197.8522,0,15.6
+100697,0,143934.9439,0,15.6
+100698,0,145023.3748,0,15.6
+100699,0,146117.7484,0,15.6
+100700,0,147046.1006,0,15.6
+100701,0,414901.8166,1112597.667,15.6
+100702,0,122363.8561,0,15.6
+100703,0,122944.5164,0,15.6
+100704,0,200279.3876,0,15.6
+100705,0,134248.3406,0,15.6
+100706,340058.1564,151886.9951,0,15.6
+100707,0,156230.9102,0,15.6
+100708,0,155032.5946,0,15.6
+100709,0,422848.3465,0,15.6
+100710,0,157086.6483,0,15.6
+100711,0,157606.2755,0,15.6
+100712,0,159008.3969,0,15.6
+100713,0,159970.7436,0,15.6
+100714,0,160370.5048,0,15.6
+100715,0,162210.246,0,15.6
+100716,0,162519.1833,0,15.6
+100717,0,430854.2451,0,15.6
+100718,0,164588.3759,0,15.6
+100719,0,28451.82033,0,15.6
+100720,0,28499.78638,0,15.6
+100721,0,28593.08445,0,15.6
+100722,0,28659.02026,0,15.6
+100723,0,468662.6553,0,15.6
+100724,0,68760.3728,0,15.6
+100725,0,406567.7058,0,15.6
+100726,0,206207.2042,0,15.6
+100727,0,169144.7577,0,15.6
+100728,0,174602.8204,0,15.6
+100729,0,176127.6344,0,15.6
+100730,0,176673.0972,0,15.6
+100731,0,177473.5914,0,15.6
+100732,0,178470.5355,0,15.6
+100733,0,446460.7763,0,15.6
+100734,0,150222.7414,0,15.6
+100735,0,151665.0584,0,15.6
+100736,0,236714.9432,0,15.6
+100737,0,166712.525,0,15.6
+100738,0,179717.5414,1074297.615,15.6
+100739,0,188433.8451,0,15.6
+100740,0,185526.62,0,15.6
+100741,0,452010.1057,0,15.6
+100742,0,185119.8858,0,15.6
+100743,0,184553.1472,0,15.6
+100744,0,184761.7731,0,15.6
+100745,0,183688.0589,0,15.6
+100746,0,184291.8747,0,15.6
+100747,0,183206.8052,0,15.6
+100748,340098.6126,183225.8617,0,15.6
+100749,0,449850.6902,0,15.6
+100750,0,182604.5666,0,15.6
+100751,0,182535.4102,0,15.6
+100752,0,181780.5937,0,15.6
+100753,0,29707.74849,0,15.6
+100754,0,29601.43405,0,15.6
+100755,0,29597.84046,0,15.6
+100756,0,29553.51406,0,15.6
+100757,0,800163.2679,0,15.6
+100758,0,70304.65246,0,15.6
+100759,0,131897.7704,0,15.6
+100760,0,223449.6837,0,15.6
+100761,0,173444.9615,0,15.6
+100762,0,178715.2778,0,15.6
+100763,0,178898.8384,0,15.6
+100764,0,178077.9529,0,15.6
+100765,0,445071.355,0,15.6
+100766,0,148519.7464,0,15.6
+100767,0,148304.1381,0,15.6
+100768,0,230967.0933,0,15.6
+100769,0,159721.2318,0,15.6
+100770,0,172299.4611,0,15.6
+100771,0,179728.2181,0,15.6
+100772,0,175384.433,0,15.6
+100773,0,441785.2817,0,15.6
+100774,0,174778.49,0,15.6
+100775,0,174657.7502,1039471.738,15.6
+100776,0,173712.2562,0,15.6
+100777,0,173893.9044,0,15.6
+100778,0,173348.5724,0,15.6
+100779,0,173162.5455,0,15.6
+100780,0,172019.9499,0,15.6
+100781,0,439918.7182,0,15.6
+100782,0,171434.4621,0,15.6
+100783,0,171612.7336,0,15.6
+100784,0,171421.163,0,15.6
+100785,0,170511.9529,0,15.6
+100786,0,170638.9768,0,15.6
+100787,0,28031.12123,0,15.6
+100788,0,27960.55729,0,15.6
+100789,0,294780.272,0,15.6
+100790,340218.4588,27879.45614,0,15.6
+100791,0,497494.0091,0,15.6
+100792,0,42002.57798,0,15.6
+100793,0,143984.4481,0,15.6
+100794,0,200950.1797,0,15.6
+100795,0,162817.541,0,15.6
+100796,0,166925.6181,0,15.6
+100797,0,433684.6402,0,15.6
+100798,0,138853.638,0,15.6
+100799,0,138738.1902,0,15.6
+100800,0,217309.4579,0,15.6
+100801,0,148129.6758,0,15.6
+100802,0,164118.2801,0,15.6
+100803,0,170432.3267,0,15.6
+100804,0,167436.508,0,15.6
+100805,0,434698.0756,0,15.6
+100806,0,169183.4046,0,15.6
+100807,0,168936.8536,0,15.6
+100808,0,169983.0037,0,15.6
+100809,0,169993.0588,0,15.6
+100810,0,171151.7852,0,15.6
+100811,0,171353.0426,0,15.6
+100812,0,171899.9384,1007809.767,15.6
+100813,0,439232.2851,0,15.6
+100814,0,173336.8871,0,15.6
+100815,0,173202.7437,0,15.6
+100816,0,174537.5337,0,15.6
+100817,0,174418.7873,0,15.6
+100818,0,175580.8051,0,15.6
+100819,0,175352.6781,0,15.6
+100820,0,176565.2083,0,15.6
+100821,0,295273.3292,0,15.6
+100822,0,28475.86409,0,15.6
+100823,0,28508.26468,0,15.6
+100824,0,28573.98515,0,15.6
+100825,0,539901.8668,0,15.6
+100826,0,46874.09343,0,15.6
+100827,0,149008.3825,0,15.6
+100828,0,219432.6938,0,15.6
+100829,0,442961.3484,0,15.6
+100830,0,153591.8892,0,15.6
+100831,0,154266.2125,0,15.6
+100832,340318.1848,238330.4892,0,15.6
+100833,0,166688.6616,0,15.6
+100834,0,180511.5197,0,15.6
+100835,0,189697.0252,0,15.6
+100836,0,184657.6808,0,15.6
+100837,0,452902.7613,0,15.6
+100838,0,186478.9801,0,15.6
+100839,0,187055.5745,0,15.6
+100840,0,187240.0686,0,15.6
+100841,0,188104.1083,0,15.6
+100842,0,188385.1867,0,15.6
+100843,0,189225.5717,0,15.6
+100844,0,189386.871,0,15.6
+100845,0,456745.4338,0,15.6
+100846,0,190582.424,0,15.6
+100847,0,190928.5081,0,15.6
+100848,0,191472.1142,0,15.6
+100849,0,192255.7147,978792.2665,15.6
+100850,0,192046.9979,0,15.6
+100851,0,193635.5909,0,15.6
+100852,0,193363.1471,0,15.6
+100853,0,460770.3088,0,15.6
+100854,0,194525.6301,0,15.6
+100855,0,30184.76358,0,15.6
+100856,0,30114.759,0,15.6
+100857,0,30304.8749,0,15.6
+100858,0,30269.60356,0,15.6
+100859,0,619978.7852,0,15.6
+100860,0,73918.63175,0,15.6
+100861,0,395692.7979,0,15.6
+100862,0,224090.9016,0,15.6
+100863,0,158115.1679,0,15.6
+100864,0,253054.5413,0,15.6
+100865,0,178765.3059,0,15.6
+100866,0,189589.3438,0,15.6
+100867,0,198922.4504,0,15.6
+100868,0,193299.0208,0,15.6
+100869,0,460110.4821,0,15.6
+100870,0,192855.5724,0,15.6
+100871,0,191993.5003,0,15.6
+100872,0,191586.5297,0,15.6
+100873,0,191687.0674,0,15.6
+100874,340298.4753,190005.9502,0,15.6
+100875,0,190679.9088,0,15.6
+100876,0,189051.1827,0,15.6
+100877,0,456312.0079,0,15.6
+100878,0,188638.079,0,15.6
+100879,0,187972.1079,0,15.6
+100880,0,187561.0852,0,15.6
+100881,0,186999.565,0,15.6
+100882,0,186493.5392,0,15.6
+100883,0,186067.4405,0,15.6
+100884,0,185431.633,0,15.6
+100885,0,451877.637,0,15.6
+100886,0,184567.9294,952263.1011,15.6
+100887,0,183595.9086,0,15.6
+100888,0,183824.537,0,15.6
+100889,0,28624.8636,0,15.6
+100890,0,28564.8807,0,15.6
+100891,0,28487.93639,0,15.6
+100892,0,28404.53555,0,15.6
+100893,0,835342.9706,0,15.6
+100894,0,11602.28342,0,15.6
+100895,0,111963.1584,0,15.6
+100896,0,278535.0252,0,15.6
+100897,0,153943.9516,0,15.6
+100898,0,175103.7593,0,15.6
+100899,0,182430.0141,0,15.6
+100900,0,176952.1094,0,15.6
+100901,0,444094.8275,0,15.6
+100902,0,176154.024,0,15.6
+100903,0,175862.93,0,15.6
+100904,0,175457.9301,0,15.6
+100905,0,174588.8816,0,15.6
+100906,0,174326.5442,0,15.6
+100907,0,173306.8564,0,15.6
+100908,0,173038.042,0,15.6
+100909,0,439686.6332,0,15.6
+100910,0,171737.3658,0,15.6
+100911,0,171382.6812,0,15.6
+100912,0,170815.3495,0,15.6
+100913,0,170390.2887,0,15.6
+100914,0,169487.8793,0,15.6
+100915,0,169446.7545,0,15.6
+100916,340125.5649,168450.4363,0,15.6
+100917,0,434994.0262,0,15.6
+100918,0,167491.0074,0,15.6
+100919,0,166938.3673,0,15.6
+100920,0,166329.5436,0,15.6
+100921,0,166467.9623,0,15.6
+100922,0,166489.9295,0,15.6
+100923,0,26631.69536,928053.7385,15.6
+100924,0,26635.04633,0,15.6
+100925,0,293441.5552,0,15.6
+100926,0,0,0,15.6
+100927,0,0,0,15.6
+100928,0,600426.2931,0,15.6
+100929,0,8925.714985,0,15.6
+100930,0,122217.3015,0,15.6
+100931,0,216838.8646,0,15.6
+100932,0,159057.7244,0,15.6
+100933,0,433422.4912,0,15.6
+100934,0,167037.0228,0,15.6
+100935,0,166758.5158,0,15.6
+100936,0,166936.026,0,15.6
+100937,0,166080.9344,0,15.6
+100938,0,166927.8672,0,15.6
+100939,0,166081.4778,0,15.6
+100940,0,166619.1738,0,15.6
+100941,0,432811.5465,0,15.6
+100942,0,166193.6491,0,15.6
+100943,0,166509.3277,0,15.6
+100944,0,165970.3612,0,15.6
+100945,0,165613.7972,0,15.6
+100946,0,166701.4473,0,15.6
+100947,0,165294.9555,0,15.6
+100948,0,166207.6543,0,15.6
+100949,0,432595.0794,0,15.6
+100950,0,165846.6509,0,15.6
+100951,0,165454.6784,0,15.6
+100952,0,166000.9782,0,15.6
+100953,0,165615.0308,0,15.6
+100954,0,165727.3345,0,15.6
+100955,0,165426.5352,0,15.6
+100956,0,165471.8882,0,15.6
+100957,0,432321.3067,0,15.6
+100958,340067.3357,0,0,15.6
+100959,0,0,0,15.6
+100960,0,0,906009.1519,15.6
+100961,0,95448.98016,0,15.6
+100962,0,13938.95581,0,15.6
+100963,0,532887.9084,0,15.6
+100964,0,38382.89403,0,15.6
+100965,0,383229.9612,0,15.6
+100966,0,215278.5214,0,15.6
+100967,0,157966.3367,0,15.6
+100968,0,165133.5432,0,15.6
+100969,0,165799.4491,0,15.6
+100970,0,166056.7823,0,15.6
+100971,0,165481.7847,0,15.6
+100972,0,165441.4825,0,15.6
+100973,0,432264.1428,0,15.6
+100974,0,165037.7698,0,15.6
+100975,0,165432.612,0,15.6
+100976,0,165055.1584,0,15.6
+100977,0,164846.2824,0,15.6
+100978,0,165383.3276,0,15.6
+100979,0,164288.7158,0,15.6
+100980,0,165260.6958,0,15.6
+100981,0,431186.2124,0,15.6
+100982,0,165331.8407,0,15.6
+100983,0,166412.877,0,15.6
+100984,0,166391.6948,0,15.6
+100985,0,167623.6682,0,15.6
+100986,0,167923.3223,0,15.6
+100987,0,168685.5717,0,15.6
+100988,0,169764.4034,0,15.6
+100989,0,436710.2399,0,15.6
+100990,0,170411.6023,0,15.6
+100991,0,144916.3849,0,15.6
+100992,0,145860.5296,0,15.6
+100993,0,78927.50317,0,15.6
+100994,0,7144.470077,0,15.6
+100995,0,25802.5336,0,15.6
+100996,0,30305.14387,0,15.6
+100997,0,821180.3974,885902.3684,15.6
+100998,0,27271.54411,0,15.6
+100999,0,143042.2259,0,15.6
+101000,340035.2086,221049.8933,0,15.6
+101001,0,171481.1868,0,15.6
+101002,0,179569.9582,0,15.6
+101003,0,179836.2684,0,15.6
+101004,0,180928.9263,0,15.6
+101005,0,448297.3571,0,15.6
+101006,0,182040.1312,0,15.6
+101007,0,183000.8605,0,15.6
+101008,0,184516.1273,0,15.6
+101009,0,185557.4244,0,15.6
+101010,0,186357.5669,0,15.6
+101011,0,186601.4967,0,15.6
+101012,0,187552.3811,0,15.6
+101013,0,455354.5488,0,15.6
+101014,0,188482.356,0,15.6
+101015,0,190039.9471,0,15.6
+101016,0,190613.3168,0,15.6
+101017,0,189863.8156,0,15.6
+101018,0,190670.3659,0,15.6
+101019,0,191874.698,0,15.6
+101020,0,191842.7166,0,15.6
+101021,0,459810.0984,0,15.6
+101022,0,193716.8362,0,15.6
+101023,0,165188.6779,0,15.6
+101024,0,166393.967,0,15.6
+101025,0,252558.7163,0,15.6
+101026,0,177755.8837,0,15.6
+101027,0,25783.62756,0,15.6
+101028,0,33677.01465,0,15.6
+101029,0,295581.9631,0,15.6
+101030,0,29545.63798,0,15.6
+101031,0,669108.586,0,15.6
+101032,0,58467.44447,0,15.6
+101033,0,119100.8159,0,15.6
+101034,0,272335.0463,867407.9809,15.6
+101035,0,192389.6697,0,15.6
+101036,0,204290.0715,0,15.6
+101037,0,471584.2646,0,15.6
+101038,0,205975.745,0,15.6
+101039,0,206934.4815,0,15.6
+101040,0,206818.9086,0,17.8
+101041,0,207648.3191,0,17.8
+101042,340025.8136,207577.1549,0,17.8
+101043,0,207933.9828,0,17.8
+101044,0,207843.9007,0,17.8
+101045,0,475054.1897,0,17.8
+101046,0,208514.2191,0,17.8
+101047,0,208458.8132,0,17.8
+101048,0,208972.5638,0,17.8
+101049,0,209153.99,0,17.8
+101050,0,209545.2777,0,17.8
+101051,0,209076.1738,0,17.8
+101052,0,210047.3601,0,17.8
+101053,0,476638.2711,0,17.8
+101054,0,210253.959,0,17.8
+101055,0,179629.748,0,17.8
+101056,0,180082.8134,0,17.8
+101057,0,270315.5671,0,17.8
+101058,0,193308.0353,0,17.8
+101059,0,206041.4487,0,17.8
+101060,0,216689.3773,0,17.8
+101061,0,296818.8326,0,17.8
+101062,0,30880.89818,0,17.8
+101063,0,30963.6997,0,17.8
+101064,0,30895.42726,0,17.8
+101065,0,729732.1836,0,17.8
+101066,0,82488.03819,0,17.8
+101067,0,94641.03504,0,17.8
+101068,0,302027.9266,0,17.8
+101069,0,466138.0349,850443.6858,17.8
+101070,0,214346.3541,0,17.8
+101071,0,214592.0047,0,17.8
+101072,0,215093.1809,0,17.8
+101073,0,215438.7263,0,17.8
+101074,0,214706.2829,0,17.8
+101075,0,216230.5503,0,17.8
+101076,0,215109.2879,0,17.8
+101077,0,482339.439,0,17.8
+101078,340037.7316,584034.8085,0,17.8
+101079,0,216035.1345,0,17.8
+101080,0,216324.542,0,17.8
+101081,0,216312.5553,0,17.8
+101082,0,216698.2604,0,17.8
+101083,0,216662.7171,0,17.8
+101084,0,216966.7059,0,17.8
+101085,0,483599.0682,0,17.8
+101086,0,217206.5445,0,17.8
+101087,0,186201.7619,0,17.8
+101088,0,186127.301,0,17.8
+101089,0,278895.2912,0,17.8
+101090,0,199857.1851,0,17.8
+101091,0,212681.1609,0,17.8
+101092,0,223475.6474,0,17.8
+101093,0,484857.6632,0,17.8
+101094,0,218718.2218,0,17.8
+101095,0,31749.17187,0,17.8
+101096,0,31777.91659,0,17.8
+101097,0,31799.61116,0,17.8
+101098,0,676900.8692,0,17.8
+101099,0,56556.47473,0,17.8
+101100,0,169302.4635,0,20
+101101,0,537163.5256,0,20
+101102,0,210344.6332,0,20
+101103,0,219056.4918,0,20
+101104,0,219256.2303,835114.1782,20
+101105,0,220548.4013,0,20
+101106,0,220269.3067,0,20
+101107,0,221101.2899,0,20
+101108,0,220842.8704,0,20
+101109,0,488622.451,0,20
+101110,0,221794.5349,0,20
+101111,0,222549.8642,0,20
+101112,0,223183.737,0,20
+101113,0,223086.5052,0,20
+101114,0,224277.0713,0,20
+101115,0,224042.399,0,20
+101116,0,224382.8962,0,20
+101117,0,492022.3019,0,20
+101118,0,225536.2906,0,20
+101119,0,193304.5474,0,20
+101120,340048.4812,193948.8626,0,20
+101121,0,289805.629,0,20
+101122,0,209558.6044,0,20
+101123,0,220957.7404,0,20
+101124,0,234380.6754,0,20
+101125,0,227634.2907,0,20
+101126,0,498448.1097,0,20
+101127,0,229378.1389,0,20
+101128,0,33036.30593,0,20
+101129,0,33167.45063,0,20
+101130,0,33181.8737,0,20
+101131,0,719152.0442,0,20
+101132,0,75256.16591,0,20
+101133,0,161571.9169,0,20
+101134,0,295337.4825,0,20
+101135,0,223618.7599,0,20
+101136,0,233536.1275,0,20
+101137,0,234606.1557,0,20
+101138,0,504981.1104,0,20
+101139,0,235392.8878,0,20
+101140,0,235878.6052,0,20
+101141,0,235898.0496,820959.3601,20
+101142,0,236428.3328,0,20
+101143,0,237323.3453,0,20
+101144,0,236933.4507,0,20
+101145,0,237845.0301,0,20
+101146,0,504585.2727,0,20
+101147,0,238461.6107,0,20
+101148,0,238835.5797,0,20
+101149,0,239511.195,0,20
+101150,0,239650.0989,0,20
+101151,0,206043.4025,0,20
+101152,0,206224.5817,0,20
+101153,0,306343.0072,0,20
+101154,0,491725.8936,0,20
+101155,0,233919.1563,0,20
+101156,0,248141.566,0,20
+101157,0,242304.6828,0,20
+101158,0,242866.1795,0,20
+101159,0,243793.656,0,20
+101160,0,243523.9325,0,21
+101161,0,34680.54432,0,21
+101162,340050.4843,301000.8642,0,21
+101163,0,34577.03544,0,21
+101164,0,763225.7636,0,21
+101165,0,94296.72755,0,21
+101166,0,144256.7395,0,21
+101167,0,314779.2422,0,21
+101168,0,227203.787,0,21
+101169,0,238108.4824,0,21
+101170,0,504694.1989,0,21
+101171,0,237060.7769,0,21
+101172,0,237037.1097,0,21
+101173,0,235656.3332,0,21
+101174,0,235738.5798,0,21
+101175,0,234606.2908,0,21
+101176,0,233982.0073,0,21
+101177,0,233594.8943,0,21
+101178,0,499017.226,808054.0596,21
+101179,0,232290.9131,0,21
+101180,0,231589.3048,0,21
+101181,0,230618.0768,0,21
+101182,0,230767.7402,0,21
+101183,0,196146.6567,0,21
+101184,0,195774.0463,0,21
+101185,0,292232.6824,0,21
+101186,0,476298.0928,0,21
+101187,0,220698.2801,0,21
+101188,0,232040.5499,0,21
+101189,0,225033.6305,0,21
+101190,0,225710.0075,0,21
+101191,0,224377.2936,0,21
+101192,0,223831.366,0,21
+101193,0,223545.6036,0,21
+101194,0,298921.2077,0,21
+101195,0,32491.25748,0,21
+101196,0,32427.88409,0,21
+101197,0,694170.6368,0,21
+101198,0,55674.54501,0,21
+101199,0,159318.8975,0,21
+101200,0,277231.5612,0,21
+101201,0,208844.0682,0,21
+101202,0,217398.7553,0,21
+101203,0,217921.853,0,21
+101204,340071.7986,485829.1336,0,21
+101205,0,216447.4699,0,21
+101206,0,215008.7539,0,21
+101207,0,214759.0386,0,21
+101208,0,213828.9368,0,21
+101209,0,213206.0715,0,21
+101210,0,212367.6408,0,21
+101211,0,212006.3393,0,21
+101212,0,477443.4033,0,21
+101213,0,210595.462,0,21
+101214,0,209597.5106,796177.5727,21
+101215,0,178194.9359,0,21
+101216,0,177169.6599,0,21
+101217,0,267766.2324,0,21
+101218,0,187325.425,0,21
+101219,0,202465.6298,0,21
+101220,0,476290.5441,0,21
+101221,0,205633.7551,0,21
+101222,0,205828.0881,0,21
+101223,0,206770.5244,0,21
+101224,0,206191.8478,0,21
+101225,0,207066.6871,0,21
+101226,0,206989.3154,0,21
+101227,0,30920.951,0,21
+101228,0,297201.1968,0,21
+101229,0,30920.95234,0,21
+101230,0,30951.58943,0,21
+101231,0,732934.18,0,21
+101232,0,67104.81935,0,21
+101233,0,89728.90482,0,21
+101234,0,298761.9936,0,21
+101235,0,193903.5018,0,21
+101236,0,475322.0113,0,21
+101237,0,210071.2563,0,21
+101238,0,209251.7787,0,21
+101239,0,210370.1831,0,21
+101240,0,210063.4654,0,21
+101241,0,210830.6926,0,21
+101242,0,210449.2474,0,21
+101243,340094.5362,210902.2922,0,21
+101244,0,477024.6862,0,21
+101245,0,211603.4874,0,21
+101246,0,211465.4159,0,21
+101247,0,180329.2174,0,21
+101248,0,180361.7997,0,21
+101249,0,272423.3286,0,21
+101250,0,193216.1523,785388.5231,21
+101251,0,208477.129,0,21
+101252,0,483637.388,0,21
+101253,0,190743.5899,0,21
+101254,0,180979.3199,0,21
+101255,0,179664.4722,0,21
+101256,0,177916.2855,0,21
+101257,0,176467.2528,0,21
+101258,0,176050.7548,0,21
+101259,0,173834.6272,0,21
+101260,0,438991.5603,0,21
+101261,0,27822.13195,0,21
+101262,0,27725.12002,0,21
+101263,0,27686.31751,0,21
+101264,0,27505.70712,0,21
+101265,0,530477.9811,0,21
+101266,0,62741.12198,0,21
+101267,0,88342.23017,0,21
+101268,0,482483.7921,0,21
+101269,0,157140.3526,0,21
+101270,0,160232.6928,0,21
+101271,0,160961.3038,0,21
+101272,0,159711.2927,0,21
+101273,0,158803.7347,0,21
+101274,0,525876.2416,0,21
+101275,0,157567.1297,0,21
+101276,0,423357.5541,0,21
+101277,0,156967.8363,0,21
+101278,0,156613.3155,0,21
+101279,0,129614.4084,0,21
+101280,0,129869.5108,0,21
+101281,0,202314.8106,0,21
+101282,340120.308,142571.0618,0,21
+101283,0,153744.5352,0,21
+101284,0,426978.453,0,21
+101285,0,157488.198,0,21
+101286,0,157953.7171,775547.8966,21
+101287,0,158697.0907,0,21
+101288,0,158339.7247,0,21
+101289,0,159552.9914,0,21
+101290,0,159228.237,0,21
+101291,0,159812.7137,0,21
+101292,0,425894.2449,0,21
+101293,0,160662.2434,0,21
+101294,0,160479.0561,0,21
+101295,0,26648.84393,0,21
+101296,0,26649.94707,0,21
+101297,0,26704.84537,0,21
+101298,0,26672.87824,0,21
+101299,0,518522.4625,0,21
+101300,0,347057.9864,0,21
+101301,0,88550.15499,0,21
+101302,0,216417.2361,0,21
+101303,0,156138.6418,0,21
+101304,0,163431.2085,0,21
+101305,0,164910.3757,0,21
+101306,0,164032.1131,0,21
+101307,0,165247.6954,0,21
+101308,0,431109.21,0,21
+101309,0,165459.083,0,21
+101310,0,165905.2821,0,21
+101311,0,138654.5839,0,21
+101312,0,139400.8397,0,21
+101313,0,212070.4842,0,21
+101314,0,156957.5743,0,21
+101315,0,161535.9584,0,21
+101316,0,173146.366,0,21
+101317,0,437834.4841,0,21
+101318,0,169736.334,0,21
+101319,0,169368.2216,0,21
+101320,0,537995.1286,0,21
+101321,340174.0332,169928.676,0,21
+101322,0,169586.2789,766441.1783,21
+101323,0,170075.3216,0,21
+101324,0,170112.427,0,21
+101325,0,169403.821,0,21
+101326,0,170043.8382,0,21
+101327,0,439412.9216,0,21
+101328,0,169337.747,0,21
+101329,0,27477.12887,0,21
+101330,0,27304.61371,0,21
+101331,0,27322.5603,0,21
+101332,0,471398.5764,0,21
+101333,0,87654.01141,0,21
+101334,0,130529.5038,0,21
+101335,0,465382.7416,0,21
+101336,0,165437.335,0,21
+101337,0,167426.6098,0,21
+101338,0,168345.4319,0,21
+101339,0,167480.8317,0,21
+101340,0,167370.3775,0,21
+101341,0,165047.7629,0,21
+101342,0,162648.7331,0,21
+101343,0,134439.2134,0,21
+101344,0,401705.8915,0,21
+101345,0,197785.6032,0,21
+101346,0,147321.6577,0,21
+101347,0,143029.0842,0,21
+101348,0,153988.6079,0,21
+101349,0,145889.2139,0,21
+101350,0,144540.0371,0,21
+101351,0,141648.0203,0,21
+101352,0,139593.2509,0,21
+101353,0,406071.0375,0,21
+101354,0,134705.8541,0,21
+101355,0,132122.7197,0,21
+101356,0,130008.8233,0,21
+101357,0,127044.5655,0,21
+101358,0,124999.7248,758280.8703,21
+101359,0,122282.6143,0,21
+101360,340257.1265,119612.4547,0,21
+101361,0,117431.7073,0,21
+101362,0,290091.8325,0,21
+101363,0,20886.09066,0,21
+101364,0,20680.25338,0,21
+101365,0,323761.4013,0,21
+101366,0,411351.6568,0,21
+101367,0,87432.53752,0,21
+101368,0,125579.7049,0,21
+101369,0,103746.4514,0,21
+101370,0,104931.1366,0,21
+101371,0,373058.0642,0,21
+101372,0,103474.0556,0,21
+101373,0,102675.6926,0,21
+101374,0,101772.8517,0,21
+101375,0,82777.02417,0,21
+101376,0,82562.23761,0,21
+101377,0,125131.7463,0,21
+101378,0,94170.39389,0,21
+101379,0,94037.66628,0,21
+101380,0,368315.9461,0,21
+101381,0,96300.27505,0,21
+101382,0,95335.09183,0,21
+101383,0,94748.02366,0,21
+101384,0,94012.33349,0,21
+101385,0,93039.42992,0,21
+101386,0,92535.48851,0,21
+101387,0,91450.48948,0,21
+101388,0,90836.06552,0,21
+101389,0,358881.4292,0,21
+101390,0,89264.54551,0,21
+101391,0,88596.00983,0,21
+101392,0,87487.71092,0,21
+101393,0,87046.06288,0,21
+101394,0,86224.4121,751209.8867,21
+101395,0,13416.35875,0,21
+101396,0,13361.33211,0,21
+101397,0,13286.77898,0,21
+101398,0,13213.93515,0,21
+101399,340366.9633,282515.9766,0,21
+101400,0,299688.7366,0,21
+101401,0,19223.67215,0,21
+101402,0,60112.28407,0,21
+101403,0,106036.9124,0,21
+101404,0,81934.33386,0,21
+101405,0,84475.34331,0,21
+101406,0,85029.80732,0,21
+101407,0,72018.72738,0,21
+101408,0,341161.5098,0,21
+101409,0,109593.1861,0,21
+101410,0,80383.13674,0,21
+101411,0,85301.64254,0,21
+101412,0,88517.40418,0,21
+101413,0,87782.07928,0,21
+101414,0,88050.98547,0,21
+101415,0,88433.37876,0,21
+101416,0,88698.07701,0,21
+101417,0,358138.4847,0,21
+101418,0,89518.12644,0,21
+101419,0,89842.71705,0,21
+101420,0,458633.3785,0,21
+101421,0,90594.41593,0,21
+101422,0,91236.73257,0,21
+101423,0,91512.74066,0,21
+101424,0,92169.40775,0,21
+101425,0,92031.61662,0,21
+101426,0,361708.5178,0,21
+101427,0,93036.4319,0,21
+101428,0,93511.68847,0,21
+101429,0,93795.94247,0,21
+101430,0,14280.47392,0,21
+101431,0,14335.6315,745257.453,21
+101432,0,14349.59893,0,21
+101433,0,14400.0653,0,21
+101434,0,312826.2444,0,21
+101435,0,313266.5042,0,21
+101436,0,66515.87098,0,21
+101437,0,120784.7111,0,21
+101438,0,95626.07996,0,21
+101439,0,83469.90461,0,21
+101440,340396.4363,83865.02075,0,21
+101441,0,122996.6089,0,21
+101442,0,96468.24616,0,21
+101443,0,95228.71861,0,21
+101444,0,102386.8602,0,21
+101445,0,100289.0863,0,21
+101446,0,100756.019,0,21
+101447,0,370330.681,0,21
+101448,0,101811.8523,0,21
+101449,0,101712.5116,0,21
+101450,0,102291.6624,0,21
+101451,0,102742.1015,0,21
+101452,0,103159.7835,0,21
+101453,0,103399.4179,0,21
+101454,0,104003.0392,0,21
+101455,0,104036.9825,0,21
+101456,0,104852.3605,0,21
+101457,0,104938.122,0,21
+101458,0,105453.26,0,21
+101459,0,374982.9573,0,21
+101460,0,106307.8936,0,21
+101461,0,105976.3184,0,21
+101462,0,105661.5777,0,21
+101463,0,105525.1643,0,21
+101464,0,15363.15331,0,21
+101465,0,15316.9916,0,21
+101466,0,15316.99167,0,21
+101467,0,312318.4084,0,21
+101468,0,45777.08964,740520.1818,21
+101469,0,84996.23625,0,21
+101470,0,121828.5451,0,21
+101471,0,455213.2475,0,21
+101472,0,88986.32501,0,21
+101473,0,396823.835,0,21
+101474,0,101082.326,0,21
+101475,0,97645.18422,0,21
+101476,0,104551.4863,0,21
+101477,0,102544.0398,0,21
+101478,0,101400.4714,0,21
+101479,0,101815.4079,0,21
+101480,0,101400.4743,0,21
+101481,340413.0277,101075.1874,0,21
+101482,0,101516.496,0,21
+101483,0,101239.9855,0,21
+101484,0,101110.6412,0,21
+101485,0,100874.1057,0,21
+101486,0,100674.0264,0,21
+101487,0,369431.5788,0,21
+101488,0,100397.1586,0,21
+101489,0,100253.5392,0,21
+101490,0,100157.7161,0,21
+101491,0,99861.80232,0,21
+101492,0,99645.36425,0,21
+101493,0,99739.09406,0,21
+101494,0,99354.85847,0,21
+101495,0,99378.84861,0,21
+101496,0,99296.12426,0,21
+101497,0,16066.62483,0,21
+101498,0,16175.57871,0,21
+101499,0,285171.1375,0,21
+101500,0,16204.42508,0,21
+101501,0,311021.9168,0,21
+101502,0,58946.25607,0,21
+101503,0,44693.95268,0,21
+101504,0,107131.5408,0,21
+101505,0,120692.3448,730958.4127,21
+101506,0,93612.95281,0,21
+101507,0,359419.6163,0,21
+101508,0,99848.90631,0,21
+101509,0,97165.94109,0,21
+101510,0,96894.70922,0,21
+101511,0,97097.32592,0,21
+101512,0,96516.43432,0,21
+101513,0,96514.03757,0,21
+101514,0,96335.52072,0,21
+101515,0,96152.61751,0,21
+101516,0,95733.57747,0,21
+101517,0,95959.40402,0,21
+101518,0,95349.46812,0,21
+101519,0,732733.7947,0,21
+101520,0,94744.74224,0,21
+101521,0,95613.00178,0,21
+101522,340411.9737,95013.22677,0,21
+101523,0,95641.43623,0,21
+101524,0,95304.14153,0,21
+101525,0,95341.15867,0,21
+101526,0,95581.32733,0,21
+101527,0,361136.0456,0,21
+101528,0,95642.47526,0,21
+101529,0,95647.67934,0,21
+101530,0,95573.65418,0,21
+101531,0,16906.11457,0,21
+101532,0,16915.44863,0,21
+101533,0,16978.26232,0,21
+101534,0,16961.33101,0,21
+101535,0,547781.0244,0,21
+101536,0,31393.50235,0,21
+101537,0,98147.72209,0,21
+101538,0,109900.5899,0,21
+101539,0,91940.37634,0,21
+101540,0,98519.86394,0,21
+101541,0,96266.7314,0,21
+101542,0,96320.35208,729864.5125,21
+101543,0,362142.7738,0,21
+101544,0,96410.62213,0,21
+101545,0,96172.47075,0,21
+101546,0,96635.69705,0,21
+101547,0,96209.07221,0,21
+101548,0,96635.70354,0,21
+101549,0,96267.13553,0,21
+101550,0,96445.66317,0,21
+101551,0,96503.47133,0,21
+101552,0,96492.60471,0,21
+101553,0,96491.82607,0,21
+101554,0,96418.75136,0,21
+101555,0,97768.35212,0,21
+101556,0,99019.41547,0,21
+101557,0,98614.4629,0,21
+101558,0,99216.36961,0,21
+101559,0,99332.77902,0,21
+101560,0,100290.4054,0,21
+101561,0,100283.7661,0,21
+101562,0,100717.4451,0,21
+101563,338686.2108,100935.1222,0,21
+101564,0,101645.5177,0,21
+101565,0,17484.01362,0,21
+101566,0,385543.4513,0,21
+101567,0,3.066928302,0,21
+101568,0,0,0,21
+101569,0,328178.4295,0,21
+101570,0,46667.24768,0,21
+101571,0,66845.33015,0,21
+101572,0,121559.478,0,21
+101573,0,108892.4234,0,21
+101574,0,102883.1486,0,21
+101575,0,105759.9881,0,21
+101576,0,106055.1668,0,21
+101577,0,106456.3756,0,21
+101578,0,106750.533,0,21
+101579,0,106842.888,725267.3195,21
+101580,0,107105.7702,0,21
+101581,0,106882.8972,0,21
+101582,0,106763.9017,0,21
+101583,0,107354.2793,0,21
+101584,0,107159.6838,0,21
+101585,0,107958.8778,0,21
+101586,0,107625.3464,0,21
+101587,0,108075.4554,0,21
+101588,0,108343.9042,0,21
+101589,0,108136.8652,0,21
+101590,0,108796.6653,0,21
+101591,0,108690.5378,0,21
+101592,0,109141.6608,0,21
+101593,0,109163.0969,0,21
+101594,0,109157.7576,0,21
+101595,0,109903.918,0,21
+101596,0,109645.086,0,21
+101597,0,109897.6719,0,21
+101598,0,110257.1554,0,21
+101599,0,0,0,21
+101600,0,0,0,21
+101601,0,48740.05478,0,21
+101602,0,9885.431259,0,21
+101603,0,292991.6735,0,21
+101604,339015.7508,76552.95173,0,21
+101605,0,83995.97434,0,21
+101606,0,131794.8066,0,21
+101607,0,110926.5042,0,21
+101608,0,112769.5982,0,21
+101609,0,112505.5226,0,21
+101610,0,113242.6273,0,21
+101611,0,112881.5169,0,21
+101612,0,113455.3898,0,21
+101613,0,481610.9713,0,21
+101614,0,114035.4419,0,21
+101615,0,113655.7243,0,21
+101616,0,114504.9626,721058.4004,21
+101617,0,114546.1747,0,21
+101618,0,114573.536,0,21
+101619,0,114933.8181,0,21
+101620,0,114954.9886,0,21
+101621,0,115518.5263,0,21
+101622,0,115415.1504,0,21
+101623,0,115772.0929,0,21
+101624,0,115652.2918,0,21
+101625,0,116416.3192,0,21
+101626,0,115908.7963,0,21
+101627,0,116789.0504,0,21
+101628,0,116373.2393,0,21
+101629,0,116662.9687,0,21
+101630,0,116801.0654,0,21
+101631,0,98856.56358,0,21
+101632,0,98263.76579,0,21
+101633,0,50142.90211,0,21
+101634,0,10263.07322,0,21
+101635,0,15738.7561,0,21
+101636,0,20624.59123,0,21
+101637,0,317087.0249,0,21
+101638,0,84302.0223,0,21
+101639,0,83940.69391,0,21
+101640,0,140060.8413,0,21
+101641,0,116944.397,0,21
+101642,0,387549.5145,0,21
+101643,0,119025.7844,0,21
+101644,0,118931.2787,0,21
+101645,339308.2013,119274.8198,0,21
+101646,0,119644.9944,0,21
+101647,0,119854.7518,0,21
+101648,0,119543.1299,0,21
+101649,0,120453.6908,0,21
+101650,0,120035.5961,0,21
+101651,0,120831.4907,0,21
+101652,0,120345.4678,0,21
+101653,0,120993.1868,717196.7279,21
+101654,0,120815.91,0,21
+101655,0,120860.5423,0,21
+101656,0,389932.0204,0,21
+101657,0,121186.5735,0,21
+101658,0,120864.3697,0,21
+101659,0,489341.1433,0,21
+101660,0,120822.8935,0,21
+101661,0,121279.0182,0,21
+101662,0,121058.1291,0,21
+101663,0,102188.8232,0,21
+101664,0,102012.7184,0,21
+101665,0,152033.6402,0,21
+101666,0,114546.8466,0,21
+101667,0,15075.04685,0,21
+101668,0,21321.76157,0,21
+101669,0,18794.61048,0,21
+101670,0,560205.0499,0,21
+101671,0,81452.99499,0,21
+101672,0,104455.9744,0,21
+101673,0,131914.9907,0,21
+101674,0,120349.3631,0,21
+101675,0,119604.0507,0,21
+101676,0,119417.6858,0,21
+101677,0,119727.5249,0,21
+101678,0,384504.205,0,21
+101679,0,119048.901,0,21
+101680,0,118519.3705,0,21
+101681,0,118285.7648,0,21
+101682,0,118422.5846,0,21
+101683,0,117792.7384,0,21
+101684,0,117664.5827,0,21
+101685,0,117290.802,0,21
+101686,339581.1538,117272.2986,0,21
+101687,0,116805.6597,0,21
+101688,0,116553.806,0,21
+101689,0,116299.9154,713646.192,21
+101690,0,385009.4956,0,21
+101691,0,115754.2643,0,21
+101692,0,115513.7607,0,21
+101693,0,114894.8642,0,21
+101694,0,115223.821,0,21
+101695,0,96095.06075,0,21
+101696,0,95971.48934,0,21
+101697,0,141306.1593,0,21
+101698,0,378780.5596,0,21
+101699,0,107174.67,0,21
+101700,0,21363.41612,0,21
+101701,0,18206.27003,0,21
+101702,0,18160.84091,0,21
+101703,0,289092.3111,0,21
+101704,0,99542.23422,0,21
+101705,0,440659.9621,0,21
+101706,0,395069.6169,0,21
+101707,0,109779.0294,0,21
+101708,0,109834.7834,0,21
+101709,0,109479.3136,0,21
+101710,0,109463.9295,0,21
+101711,0,109114.0043,0,21
+101712,0,108881.311,0,21
+101713,0,108601.1262,0,21
+101714,0,374059.453,0,21
+101715,0,108441.802,0,21
+101716,0,107771.1378,0,21
+101717,0,107870.4594,0,21
+101718,0,107752.5424,0,21
+101719,0,107168.8082,0,21
+101720,0,107239.1214,0,21
+101721,0,107110.2715,0,21
+101722,0,106720.4246,0,21
+101723,0,106447.2957,0,21
+101724,339800.5084,106541.3488,0,21
+101725,0,106117.7671,710397.4783,21
+101726,0,106046.583,0,21
+101727,0,89962.25849,0,21
+101728,0,89982.14743,0,21
+101729,0,129014.4632,0,21
+101730,0,104680.117,0,21
+101731,0,98545.30806,0,21
+101732,0,107683.611,0,21
+101733,0,15453.03854,0,21
+101734,0,15237.04041,0,21
+101735,0,15292.25285,0,21
+101736,0,286936.4667,0,21
+101737,0,74626.17034,0,21
+101738,0,77360.72158,0,21
+101739,0,120469.8576,0,21
+101740,0,103450.0902,0,21
+101741,0,103623.8046,0,21
+101742,0,103419.5929,0,21
+101743,0,103587.8764,0,21
+101744,0,103177.9074,0,21
+101745,0,103192.3282,0,21
+101746,0,102810.7016,0,21
+101747,0,103144.5306,0,21
+101748,0,102596.3904,0,21
+101749,0,102542.9386,0,21
+101750,0,102596.3605,0,21
+101751,0,470374.3806,0,21
+101752,0,102512.7896,0,21
+101753,0,101755.7934,0,21
+101754,0,102296.6931,0,21
+101755,0,101537.7811,0,21
+101756,0,102110.2402,0,21
+101757,0,101480.4255,0,21
+101758,0,101507.2779,0,21
+101759,0,87062.64377,0,21
+101760,0,86478.69591,0,21
+101761,0,125912.3928,707437.2698,21
+101762,339284.3451,99364.32641,0,21
+101763,0,96750.50339,0,21
+101764,0,104040.4032,0,21
+101765,0,101862.0191,0,21
+101766,0,14651.18892,0,21
+101767,0,14669.23912,0,21
+101768,0,14717.70404,0,21
+101769,0,290577.167,0,21
+101770,0,59589.77933,0,21
+101771,0,82239.20852,0,21
+101772,0,117924.988,0,21
+101773,0,102379.4363,0,21
+101774,0,102770.5164,0,21
+101775,0,102952.8095,0,21
+101776,0,102983.2464,0,21
+101777,0,102989.2506,0,21
+101778,0,103365.2765,0,21
+101779,0,103201.0003,0,21
+101780,0,103195.4245,0,21
+101781,0,103582.7407,0,21
+101782,0,103407.1317,0,21
+101783,0,103600.5464,0,21
+101784,0,103823.7762,0,21
+101785,0,103600.5045,0,21
+101786,0,104209.2364,0,21
+101787,0,103635.368,0,21
+101788,0,104239.4717,0,21
+101789,0,104213.5242,0,21
+101790,0,104269.5306,0,21
+101791,0,89580.24558,0,21
+101792,0,89576.33043,0,21
+101793,0,129837.6041,0,21
+101794,0,102582.6651,0,21
+101795,0,99667.13715,0,21
+101796,0,107740.2311,0,21
+101797,0,473017.1969,704747.9817,21
+101798,0,105260.4735,0,21
+101799,0,14985.76734,0,21
+101800,339242.2799,14985.76349,0,21
+101801,0,14985.75969,0,21
+101802,0,305183.2972,0,21
+101803,0,65073.0016,0,21
+101804,0,78717.03629,0,21
+101805,0,125192.8199,0,21
+101806,0,105562.6481,0,21
+101807,0,106517.5763,0,21
+101808,0,106723.4963,0,21
+101809,0,106941.0755,0,21
+101810,0,106911.4691,0,21
+101811,0,107143.6221,0,21
+101812,0,107331.1796,0,21
+101813,0,107146.0084,0,21
+101814,0,107732.209,0,21
+101815,0,107367.8776,0,21
+101816,0,107918.872,0,21
+101817,0,107815.6723,0,21
+101818,0,107906.8154,0,21
+101819,0,108401.347,0,21
+101820,0,109169.0646,0,21
+101821,0,110599.2498,0,21
+101822,0,110990.2954,0,21
+101823,0,95696.79237,0,21
+101824,0,95874.57395,0,21
+101825,0,137116.9904,0,21
+101826,0,111064.8271,0,21
+101827,0,105751.6459,0,21
+101828,0,115263.2554,0,21
+101829,0,112675.8154,0,21
+101830,0,112820.9242,0,21
+101831,0,113387.2788,0,21
+101832,0,15762.30933,0,21
+101833,0,15762.30498,702298.5589,21
+101834,0,15806.22277,0,21
+101835,0,326620.1151,0,21
+101836,0,91995.38984,0,21
+101837,0,68463.59982,0,21
+101838,0,142102.7851,0,21
+101839,339209.4968,113666.7971,0,21
+101840,0,116185.7657,0,21
+101841,0,116233.7126,0,21
+101842,0,116686.3597,0,21
+101843,0,116835.4337,0,21
+101844,0,117249.3638,0,21
+101845,0,485527.3797,0,21
+101846,0,117645.1566,0,21
+101847,0,118252.2657,0,21
+101848,0,118210.6634,0,21
+101849,0,118774.8301,0,21
+101850,0,118986.2096,0,21
+101851,0,118987.3382,0,21
+101852,0,119602.0134,0,21
+101853,0,119527.8792,0,21
+101854,0,120164.9845,0,21
+101855,0,102237.0762,0,21
+101856,0,102412.7396,0,21
+101857,0,146248.2291,0,21
+101858,0,122151.1152,0,21
+101859,0,113805.5236,0,21
+101860,0,126950.3522,0,21
+101861,0,122400.5171,0,21
+101862,0,123516.9805,0,21
+101863,0,123773.503,0,21
+101864,0,123935.5167,0,21
+101865,0,20522.21119,0,21
+101866,0,20676.79506,0,21
+101867,0,20892.73528,0,21
+101868,0,351523.0354,0,21
+101869,0,118594.3184,700054.2508,21
+101870,0,61543.1589,0,21
+101871,0,160580.6257,0,21
+101872,0,124022.8067,0,21
+101873,0,127160.3906,0,21
+101874,0,127686.6415,0,21
+101875,0,127835.3265,0,21
+101876,0,128916.1686,0,21
+101877,0,129644.0461,0,21
+101878,339227.071,129598.567,0,21
+101879,0,130000.2852,0,21
+101880,0,130393.4967,0,21
+101881,0,130958.4707,0,21
+101882,0,131234.2585,0,21
+101883,0,131575.8672,0,21
+101884,0,131988.8681,0,21
+101885,0,132558.1437,0,21
+101886,0,132929.8055,0,21
+101887,0,477569.5361,0,21
+101888,0,112909.0561,0,21
+101889,0,170126.8665,0,21
+101890,0,136221.3116,0,21
+101891,0,131882.4096,0,21
+101892,0,143738.9156,0,21
+101893,0,140918.2631,0,21
+101894,0,142284.5985,0,21
+101895,0,144776.9154,0,21
+101896,0,147001.3214,0,21
+101897,0,147040.1618,0,21
+101898,0,28091.38668,0,21
+101899,0,28306.57866,0,21
+101900,0,28507.09876,0,21
+101901,0,376369.1562,0,21
+101902,0,156704.5536,0,21
+101903,0,78501.14935,0,21
+101904,0,192808.9551,0,21
+101905,0,152479.3831,698012.6909,21
+101906,0,156710.5433,0,21
+101907,0,157709.6189,0,21
+101908,0,159044.687,0,21
+101909,0,159784.0546,0,21
+101910,0,160886.6353,0,21
+101911,0,161647.3846,0,21
+101912,0,162234.2166,0,21
+101913,0,163014.438,0,21
+101914,0,163818.0243,0,21
+101915,0,164602.1541,0,21
+101916,0,164856.1833,0,21
+101917,340392.1819,165798.5115,0,21
+101918,0,166674.1063,0,21
+101919,0,134948.1649,0,21
+101920,0,135210.5543,0,21
+101921,0,208186.265,0,21
+101922,0,158538.2978,0,21
+101923,0,157154.9443,0,21
+101924,0,172626.8635,0,21
+101925,0,170997.5423,0,21
+101926,0,169054.0912,0,21
+101927,0,171127.5356,0,21
+101928,0,170765.0172,0,21
+101929,0,540181.9763,0,21
+101930,0,172443.1713,0,21
+101931,0,33718.63843,0,21
+101932,0,33877.83162,0,21
+101933,0,34175.81173,0,21
+101934,0,458611.1156,0,21
+101935,0,169006.549,0,21
+101936,0,91063.08769,0,21
+101937,0,220127.0748,0,21
+101938,0,173001.7887,0,21
+101939,0,177189.0353,0,21
+101940,0,177199.215,0,21
+101941,0,178249.8119,696163.367,21
+101942,0,178051.5224,0,21
+101943,0,178644.6451,0,21
+101944,0,178533.962,0,21
+101945,0,179248.5856,0,21
+101946,0,179444.6203,0,21
+101947,0,185247.1517,0,21
+101948,0,182925.6845,0,21
+101949,0,184948.6824,0,21
+101950,0,185064.7231,0,21
+101951,0,150597.3283,0,21
+101952,0,150262.3681,0,21
+101953,0,233181.8167,0,21
+101954,0,174396.8676,0,21
+101955,0,183116.4753,0,21
+101956,340373.1654,195179.3213,0,21
+101957,0,189375.7465,0,21
+101958,0,191336.7179,0,21
+101959,0,191533.5568,0,21
+101960,0,192442.19,0,21
+101961,0,192631.9304,0,21
+101962,0,193868.0805,0,21
+101963,0,193785.9542,0,21
+101964,0,37225.26762,0,21
+101965,0,37130.6943,0,21
+101966,0,37232.93933,0,21
+101967,0,497799.6456,0,21
+101968,0,169953.061,0,21
+101969,0,101934.5137,0,21
+101970,0,252934.9936,0,21
+101971,0,559063.0179,0,21
+101972,0,197962.867,0,21
+101973,0,200285.7403,0,21
+101974,0,200202.1585,0,21
+101975,0,200808.7334,0,21
+101976,0,200793.114,0,21
+101977,0,201911.752,694467.9214,21
+101978,0,201586.3214,0,21
+101979,0,202448.2227,0,21
+101980,0,202392.334,0,21
+101981,0,203169.5662,0,21
+101982,0,203289.7338,0,21
+101983,0,165068.9092,0,21
+101984,0,165235.998,0,21
+101985,0,249924.2057,0,21
+101986,0,191017.1857,0,21
+101987,0,200024.09,0,21
+101988,0,207725.1882,0,21
+101989,0,204224.8221,0,21
+101990,0,205159.9522,0,21
+101991,0,204787.1588,0,21
+101992,0,205389.5914,0,21
+101993,0,205166.1804,0,21
+101994,0,206193.4722,0,21
+101995,340372.5971,205829.1702,0,21
+101996,0,206111.076,0,21
+101997,0,38826.37847,0,21
+101998,0,38774.37124,0,21
+101999,0,38903.15724,0,21
+102000,0,516089.9505,0,21
+102001,0,188127.0117,0,21
+102002,0,114323.1757,0,21
+102003,0,258315.6881,0,21
+102004,0,202145.2853,0,21
+102005,0,207006.3419,0,21
+102006,0,207946.5404,0,21
+102007,0,207580.1032,0,21
+102008,0,207932.0704,0,21
+102009,0,207370.2437,0,21
+102010,0,208385.8865,0,21
+102011,0,207718.8445,0,21
+102012,0,207778.8744,0,21
+102013,0,208018.9015,0,21
+102014,0,207969.7964,0,21
+102015,0,169083.4243,692915.5584,21
+102016,0,168751.3838,0,21
+102017,0,254589.91,0,21
+102018,0,199700.6583,0,21
+102019,0,568696.1511,0,21
+102020,0,213286.4889,0,21
+102021,0,207402.5839,0,21
+102022,0,208485.1733,0,21
+102023,0,208105.7928,0,21
+102024,0,208003.1287,0,21
+102025,0,208274.6027,0,21
+102026,0,208236.4347,0,21
+102027,0,207807.9734,0,21
+102028,0,208422.7052,0,21
+102029,0,207924.9923,0,21
+102030,0,39486.65855,0,21
+102031,0,39389.91579,0,21
+102032,0,39410.20435,0,21
+102033,0,537626.9622,0,21
+102034,0,158745.3582,0,21
+102035,0,127938.9315,0,21
+102036,0,256654.3382,0,21
+102037,340311.4982,201681.1863,0,21
+102038,0,207771.0072,0,21
+102039,0,207252.4928,0,21
+102040,0,207469.9186,0,21
+102041,0,207315.4354,0,21
+102042,0,206974.6144,0,21
+102043,0,207130.5574,0,21
+102044,0,206876.0026,0,21
+102045,0,206614.2296,0,21
+102046,0,206579.2367,0,21
+102047,0,167242.5703,0,21
+102048,0,166558.4162,0,21
+102049,0,253572.4973,0,21
+102050,0,197102.2036,0,21
+102051,0,198395.6709,0,21
+102052,0,210779.4032,0,21
+102053,0,205324.0366,691499.6808,21
+102054,0,205494.6825,0,21
+102055,0,205469.4381,0,21
+102056,0,205343.4175,0,21
+102057,0,205087.6006,0,21
+102058,0,205150.5415,0,21
+102059,0,204307.2175,0,21
+102060,0,205830.9063,0,21
+102061,0,205184.5813,0,21
+102062,0,206895.1406,0,21
+102063,0,40058.31127,0,21
+102064,0,40065.67729,0,21
+102065,0,40227.14346,0,21
+102066,0,553336.0346,0,21
+102067,0,507595.3893,0,21
+102068,0,147252.1194,0,21
+102069,0,257036.4259,0,21
+102070,0,209496.8114,0,21
+102071,0,214817.5226,0,21
+102072,0,216715.0069,0,21
+102073,0,216566.3841,0,21
+102074,0,218733.6679,0,21
+102075,0,218771.1915,0,21
+102076,0,219522.7873,0,21
+102077,0,221135.7562,0,21
+102078,0,221680.5767,0,21
+102079,340291.4228,180958.6808,0,21
+102080,0,181462.4221,0,21
+102081,0,278085.5105,0,21
+102082,0,215697.0945,0,21
+102083,0,217996.9625,0,21
+102084,0,233100.0611,0,21
+102085,0,227674.2148,0,21
+102086,0,229642.6789,0,21
+102087,0,229957.8903,0,21
+102088,0,231253.8387,0,21
+102089,0,232360.9544,690207.0952,21
+102090,0,232636.0798,0,21
+102091,0,234272.9377,0,21
+102092,0,234622.8073,0,21
+102093,0,236056.1445,0,21
+102094,0,236505.7087,0,21
+102095,0,239203.2167,0,21
+102096,0,44154.12519,0,21
+102097,0,44171.22525,0,21
+102098,0,44236.87178,0,21
+102099,0,671112.496,0,21
+102100,0,178074.2042,0,21
+102101,0,145598.294,0,21
+102102,0,307141.131,0,21
+102103,0,239492.2343,0,21
+102104,0,247283.8495,0,21
+102105,0,248694.7605,0,21
+102106,0,247681.1535,0,21
+102107,0,249313.5399,0,21
+102108,0,249628.8779,0,21
+102109,0,250884.1471,0,21
+102110,0,251482.0709,0,21
+102111,0,206830.2671,0,21
+102112,0,207862.6477,0,21
+102113,0,315147.0112,0,21
+102114,0,241724.874,0,21
+102115,0,253028.618,0,21
+102116,0,627764.5249,0,21
+102117,0,258000.5119,0,21
+102118,340325.7628,258971.1412,0,21
+102119,0,259862.1019,0,21
+102120,0,260836.1245,0,15.6
+102121,0,260929.1512,0,15.6
+102122,0,261294.3852,0,15.6
+102123,0,261470.363,0,15.6
+102124,0,262174.6399,0,15.6
+102125,0,262490.6192,689028.5796,15.6
+102126,0,261985.6924,0,15.6
+102127,0,263233.762,0,15.6
+102128,0,263120.094,0,15.6
+102129,0,47221.23448,0,15.6
+102130,0,47150.35201,0,15.6
+102131,0,47253.30916,0,15.6
+102132,0,754762.6051,0,15.6
+102133,0,215356.9612,0,15.6
+102134,0,136044.305,0,15.6
+102135,0,331585.61,0,15.6
+102136,0,263082.1746,0,15.6
+102137,0,264395.38,0,15.6
+102138,0,266393.3062,0,15.6
+102139,0,266812.4604,0,15.6
+102140,0,267263.1588,0,15.6
+102141,0,267208.1672,0,15.6
+102142,0,267591.4905,0,15.6
+102143,0,220034.9673,0,15.6
+102144,0,220415.9166,0,15.6
+102145,0,334258.2984,0,15.6
+102146,0,254118.5309,0,15.6
+102147,0,266865.9256,0,15.6
+102148,0,271453.4138,0,15.6
+102149,0,270425.4985,0,15.6
+102150,0,269679.0895,0,15.6
+102151,0,270755.2215,0,15.6
+102152,0,270126.5596,0,15.6
+102153,0,270452.4276,0,15.6
+102154,0,271465.1557,0,15.6
+102155,0,271511.3626,0,15.6
+102156,0,271100.6933,0,15.6
+102157,340350.9036,271951.4144,0,15.6
+102158,0,272322.6404,0,15.6
+102159,0,640213.4749,0,15.6
+102160,0,272651.1128,0,15.6
+102161,0,273086.1439,687953.9711,15.6
+102162,0,48907.08888,0,15.6
+102163,0,48758.63417,0,15.6
+102164,0,49000.64364,0,15.6
+102165,0,794153.6687,0,15.6
+102166,0,225106.7109,0,15.6
+102167,0,132667.0804,0,15.6
+102168,0,346415.9701,0,15.6
+102169,0,272690.9519,0,15.6
+102170,0,273604.6649,0,15.6
+102171,0,275464.5158,0,15.6
+102172,0,276339.6747,0,15.6
+102173,0,276191.0597,0,15.6
+102174,0,276514.9505,0,15.6
+102175,0,227477.656,0,15.6
+102176,0,227685.1301,0,15.6
+102177,0,346384.7353,0,15.6
+102178,0,262146.1745,0,15.6
+102179,0,276213.8071,0,15.6
+102180,0,279519.7235,0,15.6
+102181,0,278994.337,0,15.6
+102182,0,278214.2414,0,15.6
+102183,0,277766.6027,0,15.6
+102184,0,278214.2491,0,15.6
+102185,0,278002.8331,0,15.6
+102186,0,277772.3241,0,15.6
+102187,0,278342.4382,0,15.6
+102188,0,277778.0214,0,15.6
+102189,0,277702.0611,0,15.6
+102190,0,277887.3399,0,15.6
+102191,0,278185.233,0,15.6
+102192,0,277472.1545,0,15.6
+102193,340343.5451,277955.4665,0,15.6
+102194,0,277467.5503,0,15.6
+102195,0,49838.94866,0,15.6
+102196,0,417690.3757,686973.7144,15.6
+102197,0,49918.3023,0,15.6
+102198,0,812618.5656,0,15.6
+102199,0,224399.7527,0,15.6
+102200,0,129661.3889,0,15.6
+102201,0,353542.7259,0,15.6
+102202,0,274060.5892,0,15.6
+102203,0,275527.1268,0,15.6
+102204,0,277715.2235,0,15.6
+102205,0,277607.9781,0,15.6
+102206,0,277457.6734,0,15.6
+102207,0,227787.4275,0,15.6
+102208,0,227494.1346,0,15.6
+102209,0,349268.427,0,15.6
+102210,0,260149.6092,0,15.6
+102211,0,276095.8692,0,15.6
+102212,0,279052.3884,0,15.6
+102213,0,278189.9244,0,15.6
+102214,0,276682.562,0,15.6
+102215,0,277824.2597,0,15.6
+102216,0,276668.3238,0,15.6
+102217,0,277022.5148,0,15.6
+102218,0,276741.4592,0,15.6
+102219,0,276967.3082,0,15.6
+102220,0,276702.562,0,15.6
+102221,0,276782.0153,0,15.6
+102222,0,276672.9706,0,15.6
+102223,0,276229.4165,0,15.6
+102224,0,276995.1827,0,15.6
+102225,0,275993.7969,0,15.6
+102226,0,276541.7632,0,15.6
+102227,0,276012.7068,0,15.6
+102228,0,50089.06614,0,15.6
+102229,340286.6735,50129.07537,0,15.6
+102230,0,50065.83028,0,15.6
+102231,0,811516.5236,686077.5545,15.6
+102232,0,213249.9545,0,15.6
+102233,0,495287.0724,0,15.6
+102234,0,356804.9317,0,15.6
+102235,0,269595.7888,0,15.6
+102236,0,274023.278,0,15.6
+102237,0,275885.7732,0,15.6
+102238,0,275336.4928,0,15.6
+102239,0,225512.0492,0,15.6
+102240,0,226762.5304,0,15.6
+102241,0,344109.5877,0,15.6
+102242,0,253387.7305,0,15.6
+102243,0,270404.5173,0,15.6
+102244,0,276639.1275,0,15.6
+102245,0,275152.6563,0,15.6
+102246,0,276380.3501,0,15.6
+102247,0,277185.9481,0,15.6
+102248,0,278116.2053,0,15.6
+102249,0,279997.443,0,15.6
+102250,0,280014.0321,0,15.6
+102251,0,281901.9307,0,15.6
+102252,0,282897.4276,0,15.6
+102253,0,284115.4454,0,15.6
+102254,0,285215.8719,0,15.6
+102255,0,285939.6781,0,15.6
+102256,0,287685.6842,0,15.6
+102257,0,288322.3882,0,15.6
+102258,0,289909.6158,0,15.6
+102259,0,290964.8333,0,15.6
+102260,0,291585.7937,0,15.6
+102261,0,51413.36606,0,15.6
+102262,0,51736.17981,0,15.6
+102263,0,51625.19208,0,15.6
+102264,0,885132.8942,0,15.6
+102265,340377.631,240679.5414,0,15.6
+102266,0,127776.5553,717898.1823,15.6
+102267,0,393626.3706,0,15.6
+102268,0,293090.9097,0,15.6
+102269,0,300705.7775,0,15.6
+102270,0,671659.3658,0,15.6
+102271,0,252361.8741,0,15.6
+102272,0,252842.6778,0,15.6
+102273,0,383105.1272,0,15.6
+102274,0,291250.758,0,15.6
+102275,0,310945.1024,0,15.6
+102276,0,310260.4928,0,15.6
+102277,0,313599.4323,0,15.6
+102278,0,312805.0578,0,15.6
+102279,0,314346.3923,0,15.6
+102280,0,315037.1338,0,15.6
+102281,0,316284.2975,0,15.6
+102282,0,317722.7102,0,15.6
+102283,0,318480.6684,0,15.6
+102284,0,319696.9756,0,15.6
+102285,0,321174.8519,0,15.6
+102286,0,321957.9479,0,15.6
+102287,0,323504.5194,0,15.6
+102288,0,324108.6371,0,15.6
+102289,0,325773.8553,0,15.6
+102290,0,326476.9644,0,15.6
+102291,0,328082.5045,0,15.6
+102292,0,329011.5787,0,15.6
+102293,0,330027.3697,0,15.6
+102294,0,56282.06359,0,15.6
+102295,0,56409.12894,0,15.6
+102296,0,830929.5775,0,15.6
+102297,0,221628.1003,0,15.6
+102298,0,274337.0911,0,15.6
+102299,0,382300.2571,0,15.6
+102300,0,334431.5769,0,15.6
+102301,337095.9591,338172.658,713991.0027,15.6
+102302,0,337687.4152,0,15.6
+102303,0,280891.4082,0,15.6
+102304,0,280243.3982,0,15.6
+102305,0,417511.6673,0,15.6
+102306,0,319144.0544,0,15.6
+102307,0,343202.7815,0,15.6
+102308,0,701286.3472,0,15.6
+102309,0,338197.5465,0,15.6
+102310,0,335765.0569,0,15.6
+102311,0,335175.7381,0,15.6
+102312,0,335542.2153,0,15.6
+102313,0,334215.6829,0,15.6
+102314,0,334397.7301,0,15.6
+102315,0,334593.5532,0,15.6
+102316,0,333344.9709,0,15.6
+102317,0,333778.661,0,15.6
+102318,0,333178.9352,0,15.6
+102319,0,332791.5441,0,15.6
+102320,0,332371.3944,0,15.6
+102321,0,332249.7437,0,15.6
+102322,0,332085.1292,0,15.6
+102323,0,331459.5586,0,15.6
+102324,0,331561.0248,0,15.6
+102325,0,330771.416,0,15.6
+102326,0,56804.74443,0,15.6
+102327,0,56612.19223,0,15.6
+102328,0,827989.5599,0,15.6
+102329,0,212506.8536,0,15.6
+102330,0,267632.4392,0,15.6
+102331,0,374384.6093,0,15.6
+102332,0,324631.5735,0,15.6
+102333,0,329037.6485,0,15.6
+102334,0,327665.4348,0,15.6
+102335,0,271851.8213,0,15.6
+102336,0,271083.5113,710425.2588,15.6
+102337,337075.0302,409558.1104,0,15.6
+102338,0,308343.6744,0,15.6
+102339,0,331412.4182,0,15.6
+102340,0,326438.468,0,15.6
+102341,0,329370.5738,0,15.6
+102342,0,326544.5709,0,15.6
+102343,0,327246.6589,0,15.6
+102344,0,325933.1793,0,15.6
+102345,0,325920.5771,0,15.6
+102346,0,693618.3296,0,15.6
+102347,0,325605.5206,0,15.6
+102348,0,324263.2623,0,15.6
+102349,0,325440.3743,0,15.6
+102350,0,323800.5288,0,15.6
+102351,0,324042.5307,0,15.6
+102352,0,323957.812,0,15.6
+102353,0,322870.5927,0,15.6
+102354,0,323104.0822,0,15.6
+102355,0,323093.9993,0,15.6
+102356,0,321895.4817,0,15.6
+102357,0,322113.5767,0,15.6
+102358,0,56239.06745,0,15.6
+102359,0,56122.05345,0,15.6
+102360,0,806614.8022,0,15.6
+102361,0,191350.3419,0,15.6
+102362,0,266025.1139,376210.5777,15.6
+102363,0,358479.5613,0,15.6
+102364,0,311663.3328,0,15.6
+102365,0,313536.5288,0,15.6
+102366,0,312279.4806,0,15.6
+102367,0,256209.5443,0,15.6
+102368,0,255213.1624,0,15.6
+102369,0,391051.8864,0,15.6
+102370,0,287313.9221,0,15.6
+102371,0,305400.9124,712506.6288,15.6
+102372,0,305206.8824,0,15.6
+102373,340412.6391,302999.913,0,15.6
+102374,0,300843.7153,0,15.6
+102375,0,299134.258,0,15.6
+102376,0,297989.5727,0,15.6
+102377,0,296121.7729,0,15.6
+102378,0,294946.6284,0,15.6
+102379,0,292970.221,0,15.6
+102380,0,292022.2706,0,15.6
+102381,0,290481.1104,0,15.6
+102382,0,287938.3031,0,15.6
+102383,0,288107.9134,0,15.6
+102384,0,653099.042,0,15.6
+102385,0,284018.225,0,15.6
+102386,0,282671.8344,0,15.6
+102387,0,280845.1155,0,15.6
+102388,0,279800.3811,0,15.6
+102389,0,277967.3189,0,15.6
+102390,0,51502.95594,0,15.6
+102391,0,51185.87397,0,15.6
+102392,0,51037.28172,0,15.6
+102393,0,825062.4455,0,15.6
+102394,0,182351.3041,0,15.6
+102395,0,112127.5092,0,15.6
+102396,0,365246.5286,0,15.6
+102397,0,250766.4632,0,15.6
+102398,0,263895.922,0,15.6
+102399,0,212633.8033,0,15.6
+102400,0,211023.27,0,15.6
+102401,0,337328.1982,0,15.6
+102402,0,237515.2083,0,15.6
+102403,0,250705.6525,0,15.6
+102404,0,259262.9296,0,15.6
+102405,0,252512.4736,0,15.6
+102406,0,251075.903,723035.9472,15.6
+102407,0,249253.1915,0,15.6
+102408,0,247585.7783,0,15.6
+102409,340413.7253,245838.8035,0,15.6
+102410,0,244544.2223,0,15.6
+102411,0,242287.4255,0,15.6
+102412,0,240791.1563,0,15.6
+102413,0,238665.4948,0,15.6
+102414,0,237307.2455,0,15.6
+102415,0,235588.6579,0,15.6
+102416,0,233250.0308,0,15.6
+102417,0,231770.5047,0,15.6
+102418,0,229773.0607,0,15.6
+102419,0,226960.6622,379433.353,15.6
+102420,0,224583.4683,0,15.6
+102421,65312.36505,2569635.408,0,15.6
+102422,18624.17979,1549524.896,0,15.6
+102423,6245.014837,162992.4938,0,15.6
+102424,15366.01399,543697.9818,0,15.6
+102425,19652.2673,725454.1287,0,15.6
+102426,14976.72828,614889.5913,0,15.6
+102427,15927.56959,763037.5298,0,15.6
+102428,15877.30376,613565.524,0,15.6
+102429,15934.69279,670135.2818,0,15.6
+102430,15857.61475,661204.9741,0,15.6
+102431,15890.98763,540139.3231,0,15.6
+102432,15883.55495,542563.0579,0,15.6
+102433,15820.31009,775759.6288,0,15.6
+102434,15875.98452,693042.4912,0,15.6
+102435,15825.24717,621635.8521,0,15.6
+102436,15829.11071,682109.6416,0,15.6
+102437,15832.04591,665236.8041,0,15.6
+102438,15836.56805,666981.1424,0,15.6
+102439,15821.41695,667721.6719,0,15.6
+102440,15797.32269,666284.4373,0,15.6
+102441,15808.85288,669230.6162,737624.3137,15.6
+102442,15843.20985,670278.0077,0,15.6
+102443,15767.63694,670195.2719,0,15.6
+102444,15841.63334,673404.2234,0,15.6
+102445,356196.3322,674173.725,0,15.6
+102446,15822.75603,674837.5437,0,15.6
+102447,15793.04408,677197.6228,0,15.6
+102448,15810.1455,679789.5169,0,15.6
+102449,15805.61463,678785.5193,0,15.6
+102450,15802.10586,683290.8373,0,15.6
+102451,0,667168.7281,0,15.6
+102452,0,669011.8112,0,15.6
+102453,0,670379.5955,0,15.6
+102454,0,116190.7254,0,15.6
+102455,0,116136.7463,0,15.6
+102456,52210.24953,1255886.11,0,15.6
+102457,3423.682054,469941.6411,0,15.6
+102458,9524.847329,699385.8981,0,15.6
+102459,21537.55847,809032.3806,0,15.6
+102460,14754.07771,1026448.529,0,15.6
+102461,15812.6253,712962.8298,0,15.6
+102462,15822.57421,709452.4557,0,15.6
+102463,15865.68272,592709.5944,0,15.6
+102464,15819.00815,799346.491,0,15.6
+102465,15835.8062,682931.8575,0,15.6
+102466,15844.12706,718715.9772,0,15.6
+102467,15823.1012,719682.0635,0,15.6
+102468,15865.63915,721124.9766,0,15.6
+102469,15837.40614,721918.4063,0,15.6
+102470,15823.07561,725035.7821,0,15.6
+102471,15848.41785,727299.9858,0,15.6
+102472,15833.40282,729316.6857,0,15.6
+102473,15835.73794,731957.3091,0,15.6
+102474,15841.59692,734796.3151,0,15.6
+102475,15819.05587,736630.5912,0,15.6
+102476,15855.87469,738462.2488,731807.9388,15.6
+102477,15844.50839,741850.9284,0,15.6
+102478,15784.52985,744391.5899,0,15.6
+102479,15869.06832,746017.0821,0,15.6
+102480,15827.23903,748248.3988,0,17.8
+102481,1257229.452,2611718.698,168508.0424,17.8
+102482,569677.5435,2625686.467,103964.1955,17.8
+102483,199693.4546,2469057.937,64823.70917,17.8
+102484,266082.2895,2041902.336,64787.34504,17.8
+102485,298496.1957,1121068.586,80018.79659,17.8
+102486,208848.0848,226774.5951,70220.661,17.8
+102487,209604.2595,2152731.943,71083.35838,17.8
+102488,324286.1723,1458056.882,71071.55333,17.8
+102489,274049.1524,1286726.488,70958.44013,17.8
+102490,268022.6253,1424171.217,70914.77451,17.8
+102491,273232.1773,1380169.896,70862.9285,17.8
+102492,274261.984,1366287.912,70802.67505,17.8
+102493,273067.6506,1354754.624,70782.56562,17.8
+102494,272427.701,1167409.623,70758.93873,17.8
+102495,272621.0797,1393546.095,70733.72388,17.8
+102496,272401.0475,1397072.825,70665.96483,17.8
+102497,272233.1797,1328840.494,70688.045,17.8
+102498,271849.9708,1675398.484,70638.34457,17.8
+102499,272219.9534,1322659.455,68371.80962,17.8
+102500,271971.8591,1308335.572,68340.58472,17.8
+102501,271788.9802,1302314.971,68184.77684,17.8
+102502,272003.5024,1298088.119,68168.84606,17.8
+102503,271546.3124,1291025.642,68067.96732,17.8
+102504,272077.6967,1285193.786,68006.90766,17.8
+102505,271484.9551,1280633.924,67949.33317,17.8
+102506,271735.7099,1273942.781,67888.85814,17.8
+102507,272036.4751,1271645.75,67810.45251,17.8
+102508,271418.0359,1263812.718,67765.63738,17.8
+102509,271983.1031,1259258.089,67710.28084,17.8
+102510,271565.6663,1257238.447,67679.93676,17.8
+102511,62186.27149,1249293.491,700434.2921,17.8
+102512,61975.01139,1247203.635,0,17.8
+102513,62038.42114,1241532.537,0,17.8
+102514,58083.76751,1237620.523,0,17.8
+102515,671597.0958,1232663.729,134592.771,17.8
+102516,126672.2763,1227929.013,49737.95107,17.8
+102517,590352.8222,198482.6987,66230.05711,17.8
+102518,241648.0254,1760441.849,71467.83019,17.8
+102519,206498.3931,1023814.863,67104.90788,17.8
+102520,308012.3596,1253341.099,67508.21266,17.8
+102521,270811.503,1209638.021,67369.34236,17.8
+102522,260331.5822,1203343.708,67430.60645,17.8
+102523,272290.6344,1198765.175,67333.61832,17.8
+102524,269195.9874,1195185.275,67269.06647,17.8
+102525,268551.6882,1031710.693,67327.45743,17.8
+102526,269098.4257,1263323,67219.56067,17.8
+102527,268674.1657,1223994.41,67245.5468,17.8
+102528,269178.5892,1142537.664,67159.9428,17.8
+102529,268919.4974,1187026.557,67189.93407,17.8
+102530,269175.6733,1169987.291,67150.13462,17.8
+102531,268923.3444,1166081.457,67135.87511,17.8
+102532,269558.7542,1163363.033,67154.89674,17.8
+102533,269123.138,1158402.123,67107.52354,17.8
+102534,269429.1265,1153707.373,67108.76277,17.8
+102535,269232.1867,1152646.597,67093.00208,17.8
+102536,269755.5435,1514053.153,67084.38614,17.8
+102537,269295.0534,1142142.913,67066.55241,17.8
+102538,269841.7439,1139491.921,67088.93024,17.8
+102539,269615.7625,1135349.054,67028.26664,17.8
+102540,270075.2816,1129253.778,67072.94321,20
+102541,2166111.377,2609919.283,1098306.13,20
+102542,561123.5176,2304388.374,548033.5233,20
+102543,145435.1082,1548397.454,185102.9409,20
+102544,342977.4745,1281113.3,282956.7291,20
+102545,362571.7752,1619306.749,363468.1576,20
+102546,383512.2332,1440669.509,323941.273,20
+102547,435954.7369,1456053.32,320024.5086,20
+102548,383356.913,1442290.516,326689.3808,20
+102549,402333.1461,1441072.727,330436.1493,20
+102550,402887.6975,1432827.775,333804.4496,20
+102551,401361.1527,1431099.547,336096.794,20
+102552,401707.4205,1425279.702,339089.0395,20
+102553,400369.14,1422196.051,342234.1289,20
+102554,401645.0257,1417716.989,345187.934,20
+102555,400898.3427,1415201.962,348365.0004,20
+102556,399937.8055,1412932.471,351184.654,20
+102557,401520.3371,1406128.867,353726.9976,20
+102558,399551.8493,1407487.373,356680.4605,20
+102559,400619.5053,1401192.183,359468.0812,20
+102560,399741.9899,1400906.466,362415.1533,20
+102561,400137.3703,1396734.108,364967.3508,20
+102562,399311.1107,1393358.387,366872.2121,20
+102563,399498.7608,1392091.289,370655.1699,20
+102564,400549.6413,1390729.807,371948.18,20
+102565,399371.8617,1385785.41,375289.7985,20
+102566,398842.4952,1384131.869,377546.7513,20
+102567,400812.6119,1383514.201,379426.7796,20
+102568,398187.005,1379500.393,382571.5188,20
+102569,400157.7076,1379090.016,384021.2079,20
+102570,400015.0685,1374952.18,386510.4407,20
+102571,398598.2679,1374737.234,388616.389,20
+102572,400947.7909,1371199.514,391177.4649,20
+102573,399069.4546,1370629.365,393246.9823,20
+102574,399970.7191,1367834.198,394777.0366,20
+102575,398679.4562,1366905.797,397360.3816,20
+102576,401176.5417,1364944.196,399153.0358,20
+102577,399196.1735,1362297.666,401397.3747,20
+102578,400725.1316,1360571.335,403487.5373,20
+102579,399760.8924,1359932.149,404733.8568,20
+102580,400210.6121,1358299.693,406972.2907,20
+102581,399866.7879,1355159.394,409372.171,20
+102582,400589.0309,1355489.958,410176.4903,20
+102583,400907.4288,1352465.972,412618.7109,20
+102584,400281.914,1351520.997,414152.4622,20
+102585,401285.8686,1350285,415984.6929,20
+102586,400168.3176,1348960.696,417286.4588,20
+102587,401255.1429,1346246.497,419522.0818,20
+102588,401725.4153,1345469.463,421036.1508,20
+102589,400942.3745,1345193.718,422510.4123,20
+102590,400448.4159,1343035.882,423984.0427,20
+102591,402948.0856,1340544.193,426111.5888,20
+102592,401179.878,1341387.491,426525.2545,20
+102593,401761.6708,1338472.906,429371.8986,20
+102594,402157.1296,1339564.578,430260.8702,20
+102595,402382.9883,1334146.263,431638.7425,20
+102596,402151.3232,1337555.887,433538.5525,20
+102597,402950.0948,1331751.643,434055.1648,20
+102598,402225.8969,1335750.771,436207.902,20
+102599,402906.9991,1330098.098,437777.7329,20
+102600,403608.726,1331664.702,438805.0122,21
+102601,376323.595,2629382.798,422487.504,21
+102602,371436.493,2621043.51,423198.3111,21
+102603,372197.586,2619617.601,424015.3625,21
+102604,371374.6267,2616841.899,426050.0336,21
+102605,371044.2049,2614618.804,427657.8663,21
+102606,370562.6619,2611102.717,430390.358,21
+102607,371756.8829,2607561.137,431298.8781,21
+102608,369552.244,2607791.933,433242.6623,21
+102609,372050.6145,2604397.542,435459.9035,21
+102610,370701.7357,2602020.153,437562.4839,21
+102611,369964.629,2599715.676,438903.5108,21
+102612,371999.0212,2596890.875,441081.0416,21
+102613,370329.9994,2597173.914,442806.0698,21
+102614,372207.2953,2590685.18,444612.4365,21
+102615,369957.7464,2593783.329,446306.1195,21
+102616,371879.0251,2586657.781,448574.3433,21
+102617,371204.8407,2587609.719,450210.1985,21
+102618,371925.9512,2586888.203,452773.7086,21
+102619,371688.8609,2581517.608,453521.7222,21
+102620,371979.3182,2580830.91,456426.8551,21
+102621,371180.3412,2578807.388,458017.8338,21
+102622,373369.5781,2577124.47,459900.6945,21
+102623,372356.8422,2575263.683,461848.2683,21
+102624,371480.6183,2572630.098,464251.7729,21
+102625,373990.2425,2572004.193,465276.9639,21
+102626,373742.917,2567352.304,467732.6132,21
+102627,375176.8016,2569948.809,469477.9575,21
+102628,375945.7595,2562982.697,470994.266,21
+102629,378606.1739,2565446.573,473707.4446,21
+102630,378140.7945,2560981.707,475013.2023,21
+102631,379661.2324,2560153.151,477878.2956,21
+102632,381504.5877,2557734.768,479376.9419,21
+102633,382116.4955,2556957.619,480841.9887,21
+102634,383834.8101,2555075.171,483583.6217,21
+102635,384454.5478,2552279.778,485033.0625,21
+102636,386050.2809,2551155.562,486616.7979,21
+102637,385216.4264,2549617.53,489592.8981,21
+102638,384964.215,2547523.036,490727.5369,21
+102639,386249.9317,2545478.7,493239.6199,21
+102640,386370.4332,2543897.696,495196.1274,21
+102641,388649.5747,2543401.791,497166.928,21
+102642,389123.1004,2540075.701,498779.9812,21
+102643,390097.2626,2539400.277,501162.6838,21
+102644,390767.9672,2536610.407,502984.6176,21
+102645,392816.8456,2535938.722,505217.7757,21
+102646,393061.7002,2534751.778,506890.993,21
+102647,394852.9981,2530486.239,509304.3168,21
+102648,395257.6267,2532015.86,511331.4515,21
+102649,396825.737,2527246.827,512551.5658,21
+102650,397076.0971,2528860.772,515251.3165,21
+102651,400107.6447,2524003.333,516660.0365,21
+102652,398973.078,2524592.804,518444.7258,21
+102653,401437.6767,2522432.024,521751.7475,21
+102654,401895.8789,2518903.745,521994.1672,21
+102655,403506.8277,2519661.309,525304.1345,21
+102656,405504.0683,2516699.403,527073.9404,21
+102657,404860.5952,2515436.508,504672.4606,21
+102658,407476.5608,2512570.136,504163.8663,21
+102659,409018.8526,2513043.052,503863.3959,21
+102660,408954.3954,2508083.979,504958.5376,21
+102661,250074.5925,2291655.183,350543.5931,21
+102662,245865.4023,2244408.449,340018.5589,21
+102663,244252.4392,2248573.694,334770.3655,21
+102664,243214.2604,2244516.36,330334.5274,21
+102665,241782.0804,2235837.727,326152.7258,21
+102666,241065.1431,2232591.651,321802.8607,21
+102667,240021.3441,2227387.457,317511.3271,21
+102668,238572.3666,2222878.07,313121.7531,21
+102669,237894.4195,2219864.987,308802.3809,21
+102670,236721.0288,2215108.461,305029.3247,21
+102671,236117.6191,2210531.087,299873.9526,21
+102672,234585.4894,2208370.818,296905.0827,21
+102673,233799.953,2203876.133,291353.9365,21
+102674,232960.6646,2200594.415,287730.0115,21
+102675,232082.4204,2197087.057,283431.3938,21
+102676,231007.3131,2194264.772,279882.8074,21
+102677,230205.084,2190411.517,275792.4452,21
+102678,229487.5642,2187958.347,271770.1306,21
+102679,228354.041,2185271.659,267520.4271,21
+102680,227690.8816,2181231.055,263842.7539,21
+102681,226582.92,2178375.93,259694.4369,21
+102682,226396.0082,2176707.731,256021.8393,21
+102683,224810.6764,2172462.058,252139.3636,21
+102684,224725.9255,2169854.335,249673.4524,21
+102685,223383.6284,2168215.617,246046.8221,21
+102686,222969.5928,2164591.261,243156.8221,21
+102687,222107.3699,2161045.405,239771.3236,21
+102688,221517.6102,2160125.195,236728.1569,21
+102689,220751.1517,2139664.864,233497.0877,21
+102690,219967.0828,2132196.977,230262.4321,21
+102691,219074.0943,2129805.549,227054.8571,21
+102692,218701.4371,2122780.095,223830.3365,21
+102693,217603.0722,2120390.399,220790.6066,21
+102694,217231.3334,2115438.46,217617.899,21
+102695,216136.4067,2111481.564,214163.766,21
+102696,215746.6807,2106658.296,211418.3688,21
+102697,214760.8012,2103098.535,208113.9471,21
+102698,214441.9261,2100164.596,204959.1129,21
+102699,213491.0479,2095329.041,201795.5777,21
+102700,212550.7945,2091146.098,198696.8611,21
+102701,212558.5686,2087080.102,195667.4376,21
+102702,211334.2088,2082230.127,192587.3128,21
+102703,211129.3798,2078526.185,189951.4809,21
+102704,209941.838,2073961.208,186622.6945,21
+102705,209704.2542,2069771.777,183384.8172,21
+102706,208713.8173,2065963.11,180527.5993,21
+102707,208607.6612,2061407.051,177633.9872,21
+102708,207147.6034,2057517.13,174451.6186,21
+102709,207213.4923,2052665.929,171206.5753,21
+102710,206525.1424,2049054.073,168521.1732,21
+102711,205701.5357,2044830.66,165152.2324,21
+102712,204867.8762,2041523.053,162101.8174,21
+102713,204893.6257,2035234.256,160137.1653,21
+102714,203803.8165,2033162.368,158055.6535,21
+102715,203377.3179,2028359.002,156304.3018,21
+102716,202613.8487,2023788.151,154792.8178,21
+102717,201917.2363,2020866.508,153134.7181,21
+102718,201683.6696,2015793.765,151187.9724,21
+102719,201030.0803,2012917.264,149593.8431,21
+102720,200005.8711,2011419.755,148100.6302,21
+102721,200224.3352,2010276.214,146693.8553,21
+102722,200191.054,2003916.684,145152.7396,21
+102723,199611.2779,2001518.15,143590.5189,21
+102724,199619.7751,1995659.615,142263.4423,21
+102725,199632.7111,1993278.401,140669.8352,21
+102726,198915.9333,1990100.815,139258.4225,21
+102727,199627.5338,1984153.002,137741.6465,21
+102728,198996.2937,1980215.5,136387.7647,21
+102729,198693.0019,1976387.233,134951.6798,21
+102730,199047.1527,1970903.228,133298.7532,21
+102731,198479.5078,1966768.994,131980.2496,21
+102732,198832.7019,1961781.95,130377.6077,21
+102733,198133.0896,1957416.2,129046.7168,21
+102734,198477.3102,1950759.502,127530.3492,21
+102735,198200.7827,1945058.548,126162.8994,21
+102736,198014.7977,1940562.016,124821.6398,21
+102737,197949.4994,1935929.492,123162.0643,21
+102738,197811.5891,1931457.542,121841.0676,21
+102739,197830.7677,1925801.096,120356.1943,21
+102740,197455.5249,1921270.312,119140.4109,21
+102741,197623.2208,1916521.986,117328.9286,21
+102742,197451.8866,1911594.446,116259.4763,21
+102743,197224.6761,1907017.762,114745.0971,21
+102744,197213.2088,1901960.227,113518.2791,21
+102745,197269.2909,1896655.161,111680.9122,21
+102746,196662.033,1892718.394,110876.3955,21
+102747,197286.9355,1888277.75,109580.8388,21
+102748,196823.9352,1883016.127,107293.981,21
+102749,196676.8315,1878418.616,106341.2011,21
+102750,196567.0114,1874601.228,104879.6981,21
+102751,196796.849,1868813.904,104022.3532,21
+102752,196131.9832,1867153.785,102522.7398,21
+102753,196376.5524,1860291.791,101856.1183,21
+102754,196309.2774,1859560.945,100392.4587,21
+102755,196117.4413,1852759.977,99419.63874,21
+102756,195979.9485,1851166.095,98470.05685,21
+102757,195977.8186,1845798.695,97200.74995,21
+102758,195879.8634,1843728.86,96600.22132,21
+102759,195891.5819,1838659.644,95163.84468,21
+102760,195593.4097,1835397.105,28560.13764,21
+102761,195614.2905,1832174.455,28022.38946,21
+102762,195468.9787,1828202.707,27394.32238,21
+102763,195640.2288,1825619.69,26753.18885,21
+102764,195088.8007,1820515.849,26280.09389,21
+102765,195244.841,1818456.161,25587.49594,21
+102766,195319.0077,1813320.079,25053.59973,21
+102767,194648.1283,1813066.325,24459.21904,21
+102768,195194.1815,1808901.005,23766.84882,21
+102769,194717.965,1805718.767,23455.41749,21
+102770,194590.085,1802433.048,22494.6028,21
+102771,194594.827,1800084.764,22210.701,21
+102772,194297.7131,2086209.83,21403.39313,21
+102773,194488.287,1793064.359,20895.53925,21
+102774,194118.1597,1790617.232,20397.15327,21
+102775,194096.935,1784035.9,19696.38407,21
+102776,193882.1814,1779521.393,19183.18194,21
+102777,193898.1231,1777802.178,18426.51648,21
+102778,193614.803,1773178.463,18090.3359,21
+102779,193519.9237,1770543.658,17263.91285,21
+102780,193428.0499,1766768.102,16825.0414,21
+102781,196499.7306,1763472.711,15146.57496,21
+102782,195161.3862,1756190.302,14590.46939,21
+102783,193224.4972,1751417.879,14293.67157,21
+102784,192048.895,1745813.986,13799.48388,21
+102785,190868.7939,1739473.682,13590.31786,21
+102786,188803.2578,1734539.047,13449.41692,21
+102787,187747.4272,1729095.211,13145.75268,21
+102788,185857.7391,1723658.546,12868.07346,21
+102789,184895.6003,1717385.505,12651.99051,21
+102790,182816.3717,1713182.632,12405.1461,21
+102791,181796.9005,1706526.465,12319.18248,21
+102792,179726.9566,1701273.175,11907.39763,21
+102793,178699.8055,1695982.34,11962.81548,21
+102794,176965.8342,1692078.319,11521.61262,21
+102795,175783.142,1684147.959,11492.44226,21
+102796,173814.4357,1681856.174,11321.20109,21
+102797,172538.8607,1673863.725,11104.46386,21
+102798,170874.4387,1669541.973,10928.83155,21
+102799,169462.277,1663711.953,10623.49982,21
+102800,168102.0845,1659653.809,10602.46419,21
+102801,166273.5289,1653200.63,10301.33232,21
+102802,164762.6092,1648710.261,10169.41615,21
+102803,163486.785,1645342.563,9829.306401,21
+102804,161801.8623,1639285.705,9779.684996,21
+102805,160248.0148,1635023.677,9609.606688,21
+102806,158841.7623,1629236.437,9387.858318,21
+102807,157473.7552,1624674.341,9118.573694,21
+102808,155655.8644,1618917.849,9017.009911,21
+102809,154605.588,1614435.692,8859.16527,21
+102810,152985.062,1609177.424,8649.264263,21
+102811,151419.6829,1600754.214,8348.365333,21
+102812,150304.0174,1596250.073,8274.265628,21
+102813,148698.1849,1589868.306,8251.861698,21
+102814,147242.4794,1582242.001,7758.810931,21
+102815,145916.6715,1578311.036,7850.980237,21
+102816,144563.3223,1570381.545,7383.457027,21
+102817,143218.173,1565087.789,7456.808714,21
+102818,141788.8307,1557467.929,7131.361649,21
+102819,140287.6656,1553321.805,7065.187368,21
+102820,139232.0158,1545316.712,6761.105837,21
+102821,137858.0767,1539277.626,6644.394662,21
+102822,136124.4334,1532079.495,6491.697434,21
+102823,134981.5505,1527223.131,6154.760298,21
+102824,133591.7166,1519464.156,6196.85531,21
+102825,132447.7655,1513960.272,5894.331496,21
+102826,131174.0016,1506247.994,5690.442129,21
+102827,129146.3637,1501180.529,5463.395461,21
+102828,128525.9037,1493566.14,5415.295563,21
+102829,126699.8891,1486882.435,5228.43323,21
+102830,125521.5281,1480902.892,4843.704214,21
+102831,124396.1634,1474045.654,4962.587876,21
+102832,122567.9297,1467611.682,4426.502493,21
+102833,121614.1816,1459744.102,4533.371168,21
+102834,119989.7782,1454582.271,4333.487749,21
+102835,118779.253,1447836.295,3945.969447,21
+102836,117481.3388,1439624.388,3916.516808,21
+102837,115868.7475,1434667.45,3812.397187,21
+102838,114637.1607,1427017.741,3636.076567,21
+102839,113480.5586,1419837.767,3543.905114,21
+102840,111884.3551,1410167.916,3504.037652,21
+102841,106101.225,1406226.65,3529.312221,21
+102842,105260.9171,1400324.418,3461.875688,21
+102843,103542.3018,1395877.807,3368.978264,21
+102844,103166.5767,1390993.616,3356.483354,21
+102845,102000.2957,1388328.386,3205.117635,21
+102846,100792.6517,1382944.558,3207.602732,21
+102847,100085.2811,1379004.201,3083.273168,21
+102848,98697.87682,1374494.957,3027.359807,21
+102849,98039.88207,1370672.931,2975.90029,21
+102850,96639.49552,1366838.99,2889.230525,21
+102851,95921.75095,1361690.678,2824.342791,21
+102852,94815.34054,1358012.976,2724.057646,21
+102853,93802.18594,1353011.821,2697.941277,21
+102854,92857.91807,1348005.325,2583.899611,21
+102855,91936.68185,1345402.058,2544.313319,21
+102856,90739.28913,1339685.423,2473.696209,21
+102857,90465.91099,1335877.862,2373.94578,21
+102858,89730.11713,1330996.743,2331.685961,21
+102859,89099.70042,1327210.079,2246.772437,21
+102860,88663.84661,1322474.282,2172.977553,21
+102861,87527.72517,1316920.663,2118.610762,21
+102862,87449.5309,1313471.712,2030.62862,21
+102863,86547.43815,1309375.067,1971.761178,21
+102864,86103.05513,1304096.376,1886.835139,21
+102865,85305.7445,1299431.053,1825.606206,21
+102866,84811.94346,1296068.671,1769.618217,21
+102867,84104.81323,1290221.452,1678.018789,21
+102868,83311.97742,1286573.639,1621.213236,21
+102869,83127.81969,1284711.927,1544.787719,21
+102870,82074.56615,1280878.481,1517.477595,21
+102871,81666.47788,1279318.016,1411.135956,21
+102872,80929.2827,1276438.383,1380.386834,21
+102873,80195.71633,1274318.553,1303.63228,21
+102874,79608.76154,1271450.831,1242.148087,21
+102875,79040.83142,1269884.326,1147.187517,21
+102876,77810.85626,1266517.445,1115.07383,21
+102877,77878.45675,1265006.747,1066.190713,21
+102878,76556.78858,1262182.278,1049.932341,21
+102879,76256.86356,1260423.693,1000.967639,21
+102880,75450.99325,1258850.064,1000.981872,21
+102881,74721.60408,1256623.376,951.7737965,21
+102882,74160.27308,1253543.239,918.8334133,21
+102883,73258.68849,1252721.871,918.8454316,21
+102884,72811.81572,1250916.971,869.2121778,21
+102885,71614.63104,1248520.264,852.6157049,21
+102886,71504.3096,1246192.211,819.3207758,21
+102887,70486.42219,1245820.896,785.9011695,21
+102888,70100.10147,1242310.032,769.1477143,21
+102889,68743.99726,1242311.329,735.5337035,21
+102890,68779.74788,1238396.799,718.6801828,21
+102891,67738.72762,1238476.499,667.896843,21
+102892,66966.01083,1235236.995,667.9032396,21
+102893,66383.38634,1234600.873,616.7945857,21
+102894,65803.38381,1231297.621,616.8000491,21
+102895,64713.32265,1231064.462,565.3462346,21
+102896,64288.91918,1228710.118,548.1173633,21
+102897,63601.26111,1227830.399,530.8463813,21
+102898,62681.91579,1224945.566,478.763226,21
+102899,62260.02168,1224206.799,478.7665314,21
+102900,61239.75506,1221814.849,443.8150717,21
+102901,85502.21616,1290661.317,935.5016826,21
+102902,85279.21652,1289323.375,951.9803265,21
+102903,85155.29151,1291219.249,902.5094115,21
+102904,84557.05559,1289012.528,885.9691238,21
+102905,84461.80897,1289079.244,885.9803022,21
+102906,83872.50784,1287556.014,836.1578774,21
+102907,83269.15987,1288455.082,819.4961736,21
+102908,83324.59609,1286182.082,802.8030066,21
+102909,82323.54377,1286096.666,769.311822,21
+102910,82346.58047,1286157.792,769.3202696,21
+102911,81815.44856,1285470.506,718.8331362,21
+102912,81306.18455,1284819.198,718.8405211,21
+102913,80966.9436,1284349.862,668.0451475,21
+102914,80472.25211,1283435.619,685.0209785,21
+102915,80178.56127,1283140.501,616.9309862,21
+102916,79543.84808,1283045.495,634.0160512,21
+102917,79177.72238,1280705.818,582.66733,21
+102918,78707.64392,1281502.792,582.6722002,21
+102919,78524.21158,1279961.349,548.2425106,21
+102920,77741.05559,1279651.612,513.6451461,21
+102921,77543.81142,1278524.915,513.6489385,21
+102922,77180.91051,1278694.944,478.8751017,21
+102923,76549.68032,1277841.569,461.4087723,21
+102924,76194.47493,1277302.369,443.9221769,21
+102925,75650.92022,1276643.99,408.7589144,21
+102926,75279.7371,1276681.472,408.7619377,21
+102927,74969.55995,1274882.828,355.6258445,21
+102928,74384.93424,1275076.505,373.3962956,21
+102929,73968.6241,1274451.039,319.9140329,21
+102930,73398.09862,1273414.665,319.9155042,21
+102931,73322.82024,1274103.78,283.9458476,21
+102932,72711.75426,1272295.888,265.8577501,21
+102933,72726.30308,1271340.468,247.6953268,21
+102934,72473.0099,1270026.439,229.4541613,21
+102935,72069.4785,1270923.571,211.1291503,21
+102936,71920.29219,1268697.179,174.2021388,21
+102937,71733.81417,1267974.051,174.202575,21
+102938,71283.60028,1268017.139,136.852154,21
+102939,71110.61314,1266536.182,117.9900336,21
+102940,71029.05353,1266077.981,108.5054267,21
+102941,70678.94047,1265086.322,79.80273015,21
+102942,70429.09615,1265397.307,60.41925437,21
+102943,70262.20541,1262021.177,40.77527894,21
+102944,70106.26087,1263810.195,10.53863642,21
+102945,69599.35925,1261017.362,0,21
+102946,69783.53903,1261164.215,0,21
+102947,69318.12608,1260137.728,0,21
+102948,69414.52454,1257952.345,0,21
+102949,68801.04987,1259389.679,0,21
+102950,68888.39103,1256861.509,0,21
+102951,68842.18817,1254911.902,0,21
+102952,68033.6019,1253559.257,0,21
+102953,68417.70588,1253020.04,0,21
+102954,68099.28352,1251249.413,0,21
+102955,67818.66703,1250952.243,0,21
+102956,67650.5263,1249090.302,0,21
+102957,67607.11878,1249156.571,0,21
+102958,67324.9536,1247337.422,0,21
+102959,67019.00852,1245880.357,0,21
+102960,66993.97553,1245672.843,0,21
+102961,47318.09423,1173408.055,0,21
+102962,47145.97416,1170227.795,0,21
+102963,46241.43265,1167011.593,0,21
+102964,46522.24226,1163465.454,0,21
+102965,45802.54012,1152874.383,0,21
+102966,45882.80606,1153971.032,0,21
+102967,45346.74525,1149860.757,0,21
+102968,45247.12313,1144581.436,0,21
+102969,44720.28537,1143142.061,0,21
+102970,44483.78544,1138833.613,0,21
+102971,44479.66148,1134922.253,0,21
+102972,43827.60628,1133252.042,0,21
+102973,323994.7973,1130563.599,0,21
+102974,43546.1081,1125270.947,0,21
+102975,43625.1723,1124135.48,0,21
+102976,43104.7978,1119288.996,0,21
+102977,43174.26486,1116045.723,0,21
+102978,42951.59267,1113632.05,0,21
+102979,42539.00508,1108762.817,0,21
+102980,42649.77198,1106491.975,0,21
+102981,42204.43349,1102809.566,0,21
+102982,42022.25138,1098614.351,0,21
+102983,42122.75711,1095633.741,0,21
+102984,41483.9804,1092684.106,0,21
+102985,41676.65687,1086535.791,0,21
+102986,41272.82524,1083525.268,0,21
+102987,41188.96221,1079755.491,0,21
+102988,40815.07274,1076118.218,0,21
+102989,40665.04327,1072718.214,0,21
+102990,40625.27201,1070357.337,0,21
+102991,40162.755,1065673.685,0,21
+102992,39948.40146,1063428.34,0,21
+102993,39842.98731,1060363.545,0,21
+102994,39410.11463,1055889.772,0,21
+102995,39175.29081,1053729.753,0,21
+102996,38894.08818,1049236.755,0,21
+102997,38742.69286,1047002.877,0,21
+102998,38209.85614,1044015.849,0,21
+102999,38299.13852,1040425.405,0,21
+103000,37884.63946,1037638.926,0,21
+103001,37438.38349,1034358.949,0,21
+103002,37427.14415,1030950.202,0,21
+103003,36995.27606,1028549.803,0,21
+103004,36759.60925,1024644.738,0,21
+103005,36551.22814,1021977.058,0,21
+103006,36121.30492,1018719.515,0,21
+103007,35856.74732,1016487.35,0,21
+103008,35791.31983,1012703.585,0,21
+103009,35114.73694,1010522.34,0,21
+103010,35281.87902,1007089.124,0,21
+103011,34782.21594,1004445.688,0,21
+103012,34347.02129,1001074.218,0,21
+103013,34269.16952,998284.0361,0,21
+103014,33899.25588,995877.4197,0,21
+103015,33665.83217,992294.199,0,21
+103016,33354.37376,989726.1017,0,21
+103017,33215.64733,986975.3471,0,21
+103018,32526.27683,983901.7756,0,21
+103019,32662.49603,981407.0714,0,21
+103020,319954.2844,978179.8179,0,21
+103021,37798.38803,978711.6758,0,21
+103022,37548.97107,977071.4298,0,21
+103023,37287.20065,974921.5358,0,21
+103024,37028.44272,973287.025,0,21
+103025,36967.78926,971324.3762,0,21
+103026,36577.14983,969326.9295,0,21
+103027,36468.39842,967224.0245,0,21
+103028,35784.34772,965230.0374,0,21
+103029,36118.83276,963714.7559,0,21
+103030,35571.36909,961614.2456,0,21
+103031,35207.73883,959836.6235,0,21
+103032,35157.35156,958595.84,0,21
+103033,34841.39735,956824.6077,0,21
+103034,34451.91648,955028.0823,0,21
+103035,34154.92623,952846.7316,0,21
+103036,34163.98701,951703.7907,0,21
+103037,33664.70723,949117.219,0,21
+103038,33522.43287,947577.9073,0,21
+103039,33209.82888,946359.27,0,21
+103040,32839.91759,943624.6494,0,21
+103041,32666.73671,942526.1456,0,21
+103042,32501.33848,940654.1925,0,21
+103043,32095.64671,938693.7857,0,21
+103044,31844.59938,937614.4654,0,21
+103045,31773.12111,935256.5124,0,21
+103046,31149.4071,934064.8732,0,21
+103047,31293.34907,931631.5262,0,21
+103048,30776.0527,931423.7921,0,21
+103049,30666.52202,928255.2679,0,21
+103050,30376.66379,927441.8598,0,21
+103051,30135.49224,926324.519,0,21
+103052,30072.4019,925926.0675,0,21
+103053,29649.61547,924872.223,0,21
+103054,318443.5019,924735.8862,0,21
+103055,29399.76364,923779.4705,0,21
+103056,29426.24443,923746.0149,0,21
+103057,28903.15279,921767.1895,0,21
+103058,29066.77722,921624.8182,0,21
+103059,29035.19029,921427.6771,0,21
+103060,28509.63375,920674.1757,0,21
+103061,28556.92179,920463.1209,0,21
+103062,28445.671,920103.6803,0,21
+103063,28088.67604,919424.744,0,21
+103064,28258.28492,919598.07,0,21
+103065,27731.77212,918655.8415,0,21
+103066,27971.48456,918971.7445,0,21
+103067,27580.77219,917908.2965,0,21
+103068,27556.07161,918273.7333,0,21
+103069,27462.34676,917558.4714,0,21
+103070,27083.0759,917297.7774,0,21
+103071,27219.8611,917073.5466,0,21
+103072,26894.17767,916622.9648,0,21
+103073,26963.37428,916593.8075,0,21
+103074,26753.78763,916079.2781,0,21
+103075,26469.40778,915924.088,0,21
+103076,26683.41838,915612.0619,0,21
+103077,26036.11289,915446.2594,0,21
+103078,26397.04413,914782.4124,0,21
+103079,26084.92033,914828.3212,0,21
+103080,25951.05645,914558.2155,0,21
+103081,20045.65957,909312.5859,0,21
+103082,19745.1123,909181.7493,0,21
+103083,19828.10502,908869.2222,0,21
+103084,19355.67401,908023.9381,0,21
+103085,19801.14726,908257.4461,0,21
+103086,19111.11127,907658.4104,0,21
+103087,309236.6055,907328.9517,0,21
+103088,19173.98026,907281.1453,0,21
+103089,19046.33369,906918.946,0,21
+103090,19028.38749,906361.149,0,21
+103091,18813.65766,906564.4578,0,21
+103092,18965.1156,907134.8271,0,21
+103093,18657.18398,908308.2758,0,21
+103094,18644.41892,907642.1416,0,21
+103095,18632.17086,907709.8743,0,21
+103096,18606.0341,907416.9452,0,21
+103097,18284.26319,907376.635,0,21
+103098,18477.83477,907256.4941,0,21
+103099,18271.99334,906767.3625,0,21
+103100,18335.32616,907057.7746,0,21
+103101,18013.99039,906469.5706,0,21
+103102,18233.33721,906019.4141,0,21
+103103,17974.23115,906393.3091,0,21
+103104,18104.87687,905387.2661,0,21
+103105,17857.25366,905545.8126,0,21
+103106,17846.37718,905102.1603,0,21
+103107,17844.93868,904657.8332,0,21
+103108,17716.19113,903422.8643,0,21
+103109,17819.39251,901528.2634,0,21
+103110,17482.22493,900224.7279,0,21
+103111,17807.03201,898380.4251,0,21
+103112,17468.96507,897154.0819,0,21
+103113,17664.07062,895440.8058,0,21
+103114,17468.96593,893875.4507,0,21
+103115,17547.6098,891905.828,0,21
+103116,17442.27787,890703.748,0,21
+103117,17534.32346,888930.2935,0,21
+103118,17444.22178,887447.018,0,21
+103119,17519.80852,885737.4814,0,21
+103120,17430.93539,884191.4922,0,21
+103121,17506.49551,882453.392,0,21
+103122,17430.93614,881061.027,0,21
+103123,17375.9901,879128.0035,0,21
+103124,17417.62307,877688.274,0,21
+103125,17611.80631,876150.1265,0,21
+103126,17285.19755,874174.1593,0,21
+103127,17586.03587,872983.7378,0,21
+103128,17299.90773,871490.386,0,21
+103129,17598.46707,869117.0732,0,21
+103130,17350.22136,868185.2262,0,21
+103131,17624.21572,866414.7389,0,21
+103132,17469.46883,864774.955,0,21
+103133,17362.65284,862888.8835,0,21
+103134,17598.46867,861942.8169,0,21
+103135,17586.03845,859355.8952,0,21
+103136,17467.38489,858250.3504,0,21
+103137,17701.48363,856239.4854,0,21
+103138,17572.67166,855146.0927,0,21
+103139,17583.76749,852995.6639,0,21
+103140,17572.67223,851535.3552,0,21
+103141,17790.94803,851433.8801,0,21
+103142,17586.0444,851442.8706,0,21
+103143,17441.56675,851553.5951,0,21
+103144,17778.52282,851527.4562,0,21
+103145,17559.28695,851754.8851,0,21
+103146,17545.52724,851425.0218,0,21
+103147,17559.29042,851732.9704,0,21
+103148,17634.96435,851803.9939,0,21
+103149,17559.29389,851457.0166,0,21
+103150,17519.66202,851755.223,0,21
+103151,17545.87494,851923.782,0,21
+103152,17622.4942,851681.7287,0,21
+103153,17545.87844,852023.4583,0,21
+103154,17622.49778,851546.9624,0,21
+103155,17507.50063,852072.899,0,21
+103156,17647.43253,851893.7539,0,21
+103157,17495.00331,851746.6464,0,21
+103158,17634.98226,852318.8404,0,21
+103159,17507.50765,851697.5515,0,21
+103160,17726.80302,852282.7353,0,21
+103161,17492.80885,851955.2055,0,21
+103162,17740.22915,851938.2527,0,21
+103163,17494.03659,852493.997,0,21
+103164,17609.09338,852225.1463,0,21
+103165,17713.36196,852530.3006,0,21
+103166,17623.98498,852607.5412,0,21
+103167,17713.36563,852552.6306,0,21
+103168,17700.86661,852758.0223,0,21
+103169,17726.81954,852964.8007,0,21
+103170,17610.54206,852878.8198,0,21
+103171,17818.21592,853258.1853,0,21
+103172,17816.01962,853061.2082,0,21
+103173,17713.37674,853392.2129,0,21
+103174,17831.67174,853366.0403,0,21
+103175,17713.38047,853437.8317,0,21
+103176,17920.87009,853365.6999,0,21
+103177,17830.72804,853687.9255,0,21
+103178,17803.53006,853679.1283,0,21
+103179,18050.3557,853633.8892,0,21
+103180,17700.88892,854036.5664,0,21
+103181,18152.82134,854064.5274,0,21
+103182,17714.34293,853761.7102,0,21
+103183,18152.82526,854498.4163,0,21
+103184,18037.86442,853972.6281,0,21
+103185,17918.50625,854362.1749,0,21
+103186,18154.49035,854465.5535,0,21
+103187,18049.30435,854402.544,0,21
+103188,18140.33415,854404.3085,0,21
+103189,18152.83709,855134.9148,0,21
+103190,18166.28935,854489.7946,0,21
+103191,18140.34008,855090.6595,0,21
+103192,18282.91544,854740.7123,0,21
+103193,18357.2245,855459.6678,0,21
+103194,18282.91945,854628.4624,0,21
+103195,18256.97017,855014.9897,0,21
+103196,18384.10353,853886.2317,0,21
+103197,18385.74784,854485.9324,0,21
+103198,18487.30724,854294.7736,0,21
+103199,18603.58199,854358.376,0,21
+103200,18282.93154,854490.0659,0,21
+103201,40015.28519,905628.768,0,21
+103202,41594.50091,909321.0346,0,21
+103203,43616.31473,909989.6244,0,21
+103204,43397.85462,911705.2824,0,21
+103205,45266.00211,982402.8909,0,21
+103206,44520.57369,1008560.928,0,21
+103207,45375.00225,978361.4423,0,21
+103208,45728.64188,994127.204,0,21
+103209,45898.03892,996352.5355,0,21
+103210,46332.58503,998136.4462,0,21
+103211,46557.13471,1000565.001,0,21
+103212,47033.11407,1001155.282,0,21
+103213,47643.98774,1004085.456,0,21
+103214,47509.94027,1005477.302,0,21
+103215,48149.27447,1006814.168,0,21
+103216,48581.32594,1008200.121,0,21
+103217,48506.94144,1009578.365,0,21
+103218,49079.53045,1012895.535,0,21
+103219,49203.41372,1011456.648,0,21
+103220,49944.61333,1014318.125,0,21
+103221,49700.42087,1016654.605,0,21
+103222,50135.18176,1016705.582,0,21
+103223,50698.21343,1018147.243,0,21
+103224,50825.48209,1020848.62,0,21
+103225,51043.12733,1020326.109,0,21
+103226,51289.33005,1022754.296,0,21
+103227,51833.47511,1023957.821,0,21
+103228,52029.72534,1024152.01,0,21
+103229,52055.09583,1026643.629,0,21
+103230,54266.6823,1026643.936,0,21
+103231,54719.44388,1029901.699,0,21
+103232,54835.03022,1029493.85,0,21
+103233,55768.92483,1032035.653,0,21
+103234,56156.84347,1033174.353,0,21
+103235,56366.41372,1035204.252,0,21
+103236,57266.1134,1036355.559,0,21
+103237,57743.69526,1038479.812,0,21
+103238,58006.12235,1038859.577,0,21
+103239,58582.60712,1041053.538,0,21
+103240,59119.9815,1042366.478,0,21
+103241,59327.66417,1044253.038,0,21
+103242,60289.13632,1047223.707,0,21
+103243,60395.49124,1047443.617,0,21
+103244,60843.16238,1050569.881,0,21
+103245,61610.7659,1051519.876,0,21
+103246,62397.02894,1053134.361,0,21
+103247,64934.47577,1054809.239,0,21
+103248,64290.22077,1057981.435,0,21
+103249,65631.22238,1057393.159,0,21
+103250,66293.31427,1061157.461,0,21
+103251,66964.1856,1061343.317,0,21
+103252,67571.98219,1064618.549,0,21
+103253,68455.19862,1065077.81,0,21
+103254,68990.91038,1071804.876,0,21
+103255,69502.46399,1079890.998,0,21
+103256,70408.93175,1077913.836,0,21
+103257,71337.55262,1083231.502,0,21
+103258,71348.85629,1086321.596,0,21
+103259,72515.26201,1088864.558,0,21
+103260,73084.04915,1092824.242,0,21
+103261,91018.40414,1155925.112,0,21
+103262,93126.86685,1164353.58,0,21
+103263,94198.62715,1171307.488,0,21
+103264,94884.80404,1175187.143,0,21
+103265,96061.19615,1182687.059,0,21
+103266,96785.61991,1185781.979,0,21
+103267,97466.89976,1191526.178,0,21
+103268,98552.58731,1196400.67,0,21
+103269,99277.87569,1201768.649,0,21
+103270,99938.42096,1205670.302,0,21
+103271,101015.6671,1211229.382,0,21
+103272,101485.0065,1216338.097,0,21
+103273,102648.8274,1219999.344,0,21
+103274,103023.98,1225949.445,0,21
+103275,104041.419,1229931.143,0,21
+103276,104851.5609,1235986.695,0,21
+103277,105396.8021,1238411.191,0,21
+103278,106377.9321,1245259.08,0,21
+103279,106939.0182,1248844.187,0,21
+103280,107886.2196,1253282.783,0,21
+103281,108286.828,1258201.486,0,21
+103282,109385.7927,1263030.924,0,21
+103283,109998.2244,1266755.912,0,21
+103284,110607.2681,1272289.994,0,21
+103285,111256.1423,1276809.211,0,21
+103286,112404.6677,1279213.251,0,21
+103287,112732.5418,1287020.074,0,21
+103288,113412.8277,1289779.917,0,21
+103289,114664.4353,1296240.307,0,21
+103290,114915.44,1298887.144,0,21
+103291,115367.8387,1304577.557,0,21
+103292,116360.7212,1307808.285,0,21
+103293,116650.9867,1312005.39,0,21
+103294,117185.1222,1316253.365,0,21
+103295,117955.2541,1319715.164,0,21
+103296,118553.6175,1325058.866,0,21
+103297,118810.1324,1326834.892,0,21
+103298,119552.1821,1331483.431,0,21
+103299,119885.6203,1335911.469,0,21
+103300,120386.3307,1338642.282,0,21
+103301,121270.6647,1344003.104,0,21
+103302,122589.4357,1346430.481,0,21
+103303,122807.5446,1350998.593,0,21
+103304,123018.1311,1355216.573,0,21
+103305,124155.7792,1358076.879,0,21
+103306,124211.3324,1362831.833,0,21
+103307,125144.5271,1365379.153,0,21
+103308,125722.0729,1370251.157,0,21
+103309,126099.4962,1373848.122,0,21
+103310,126688.5473,1377449.572,0,21
+103311,127782.2616,1382591.895,0,21
+103312,127471.0386,1384277.972,0,21
+103313,128842.5174,1389208.323,0,21
+103314,129073.6021,1393221.069,0,21
+103315,129406.4079,1396479.59,0,21
+103316,130262.6002,1399466.45,0,21
+103317,130703.6207,1403475.863,0,21
+103318,131360.3612,1408803.947,0,21
+103319,131573.4563,1410513.946,0,21
+103320,132375.9956,1413956.321,0,21
+103321,132972.8683,1418735.416,0,21
+103322,132982.9011,1423427.644,0,21
+103323,133358.3992,1425751.605,0,21
+103324,134101.4908,1430411.482,0,21
+103325,134079.0165,1432627.566,0,21
+103326,134494.0455,1437147.551,0,21
+103327,135240.3869,1441066.482,0,21
+103328,135053.0487,1444471.013,0,21
+103329,135724.8277,1446721.354,0,21
+103330,135943.8259,1450926.334,0,21
+103331,136534.5994,1455946.136,0,21
+103332,136458.7063,1456835.338,0,21
+103333,140729.1521,1461772.104,0,21
+103334,142222.6047,1465560.204,0,21
+103335,142087.9238,1466914.773,0,21
+103336,142923.5624,1473506.976,0,21
+103337,143490.1854,1474006.045,0,21
+103338,143359.1251,1479903.933,0,21
+103339,144029.5597,1480694.255,0,21
+103340,144581.5606,1487042.87,0,21
+103341,144592.6414,1487742.737,0,21
+103342,144844.0599,1492597.012,0,21
+103343,145268.7748,1496228.379,0,21
+103344,145790.5793,1497836.654,0,21
+103345,145688.7634,1503670.118,0,21
+103346,146323.4384,1505485.084,0,21
+103347,146460.166,1508595.155,0,21
+103348,146470.1064,1512174.701,0,21
+103349,147013.6139,1517498.717,0,21
+103350,147246.5151,1517458.785,0,21
+103351,147436.2102,1523736.818,0,21
+103352,147742.4448,1524357.452,0,21
+103353,147802.0368,1529803.304,0,21
+103354,148201.8764,1529807.614,0,21
+103355,148384.149,1535620.989,0,21
+103356,148212.0576,1537725.529,0,21
+103357,149080.2541,1540382.994,0,21
+103358,148814.1492,1543773.937,0,21
+103359,149111.8469,1546304.512,0,21
+103360,149445.3615,1549180.907,0,21
+103361,149632.374,1552683.628,0,21
+103362,149575.1923,1555011.846,0,21
+103363,149692.6125,1558821.462,0,21
+103364,150526.746,1560706.572,0,21
+103365,150106.1036,1564414.561,0,21
+103366,150220.6382,1566405.604,0,21
+103367,150760.6066,1569553.283,0,21
+103368,150819.5594,1573819.69,0,21
+103369,150651.5497,1575173.868,0,21
+103370,151185.0919,1577890.074,0,21
+103371,151131.0995,1581291.527,0,21
+103372,151647.7927,1584380.213,0,21
+103373,151401.7135,1587026.635,0,21
+103374,151646.0771,1589315.453,0,21
+103375,151785.2175,1593981.413,0,21
+103376,152149.7616,1594324.266,0,21
+103377,151930.7081,1599027.158,0,21
+103378,152141.1996,1600114.94,0,21
+103379,152406.772,1604821.797,0,21
+103380,152592.9984,1605014.618,0,21
+103381,155298.4766,1618250.877,0,21
+103382,156449.004,1619091.286,0,21
+103383,156262.3898,1622418.164,0,21
+103384,157061.5385,1624678.839,0,21
+103385,157361.3198,1627470.83,0,21
+103386,156927.3327,1629230.4,0,21
+103387,157995.3372,1633657.355,0,21
+103388,157760.9462,1633826.418,0,21
+103389,158642.0061,1637593.669,0,21
+103390,158127.546,1638196.347,0,21
+103391,158919.3078,1643609.389,0,21
+103392,158883.6808,1642271.089,0,21
+103393,159186.82,1648397.957,0,21
+103394,159522.6175,1648549.064,0,21
+103395,159620.4574,1649833.151,0,21
+103396,159834.6569,1655284.444,0,21
+103397,160568.0744,1654221.462,0,21
+103398,160011.9884,1658694.736,0,21
+103399,160503.8733,1660744.844,0,21
+103400,160798.7579,1662882.003,0,21
+103401,161275.0654,1665131.203,0,21
+103402,161050.3672,1666573.809,0,21
+103403,161299.8999,1669745.037,0,21
+103404,161610.462,1671978.407,0,21
+103405,161788.8829,1673812.747,0,21
+103406,162032.9448,1675716.255,0,21
+103407,162353.2341,1679464.326,0,21
+103408,162190.7114,1679197.579,0,21
+103409,162759.6542,1684819.712,0,21
+103410,166222.0318,1683500.463,0,21
+103411,169033.2785,1687968.104,0,21
+103412,167914.9826,1690161.681,0,21
+103413,168950.0719,1690129.493,0,21
+103414,170333.5485,1695107.654,0,21
+103415,170601.5062,1695180.608,0,21
+103416,171119.5364,1699301.819,0,21
+103417,172045.7382,1699763.224,0,21
+103418,172867.64,1702941.372,0,21
+103419,173286.5235,1703849.989,0,21
+103420,174278.7591,1707845.162,0,21
+103421,173928.335,1709333.681,0,21
+103422,176305.2222,1709702.809,0,21
+103423,175258.7533,1714916.26,0,21
+103424,177012.9208,1714877.029,0,21
+103425,177165.1266,1717949.184,0,21
+103426,178613.3951,1719053.019,0,21
+103427,177673.8957,1722694.558,0,21
+103428,179568.2995,1723463.485,0,21
+103429,179459.7055,1726244.188,0,21
+103430,180399.09,1728587.831,0,21
+103431,181645.8255,1729741.072,0,21
+103432,180435.8815,1732629.19,0,21
+103433,182855.8756,1734604.579,0,21
+103434,181719.2166,1735817.32,0,21
+103435,183434.9071,1739794.112,0,21
+103436,184137.05,1739642.543,0,21
+103437,183650.0859,1744438.27,0,21
+103438,184801.5489,1742976.717,0,21
+103439,185621.3352,1748124.2,0,21
+103440,185796.8295,1749987.69,0,21
+103441,186701.3628,1751503.198,0,21
+103442,187722.6687,1754972.292,0,21
+103443,189324.2674,1753943.213,0,21
+103444,188200.3579,1757232.13,0,21
+103445,190667.8863,1757120.456,0,21
+103446,189519.3027,1760186.768,0,21
+103447,190695.2575,1759459.119,0,21
+103448,191286.2715,1760961.196,0,21
+103449,191958.1128,1763051.16,0,21
+103450,192113.5224,1764398.558,0,21
+103451,192251.0138,1764177.266,0,21
+103452,193932.6203,1766846.599,0,21
+103453,193719.4622,1767936.059,0,21
+103454,194020.5879,1768236.577,0,21
+103455,194153.0897,1769697.575,0,21
+103456,195281.4889,1770976.711,0,21
+103457,195635.3019,1772782.463,0,21
+103458,196445.4453,1773019.231,0,21
+103459,195824.8206,1774319.77,0,21
+103460,197548.9451,1775691.837,0,21
+103461,196850.0019,1777499.814,0,21
+103462,198495.1287,1777641.824,0,21
+103463,198082.4869,1778800.843,0,21
+103464,198533.3239,1781269.006,0,21
+103465,199862.5704,1780415.751,0,21
+103466,199069.8427,1782769.931,0,21
+103467,199945.1162,1784278.792,0,21
+103468,201188.5509,1784372.964,0,21
+103469,199952.6094,1786187.502,0,21
+103470,202664.5785,1787154.104,0,21
+103471,201300.6207,1786739.555,0,21
+103472,202220.7566,1787842.764,0,21
+103473,202599.9479,1789899.657,0,21
+103474,202966.5743,1790161.558,0,21
+103475,203826.1498,1791818.118,0,21
+103476,203277.0467,1792479.346,0,21
+103477,204900.8886,1793826.833,0,21
+103478,204262.643,1794396.477,0,21
+103479,205256.9412,1796092.568,0,21
+103480,205289.886,1796638.474,0,21
+103481,205726.236,1799239.439,0,21
+103482,207035.7752,1798892.617,0,21
+103483,205528.8475,1799683.719,0,21
+103484,208313.8981,1802735.92,0,21
+103485,206347.8461,1801476.94,0,21
+103486,208246.7245,1803100.872,0,21
+103487,207938.4838,1805148.571,0,21
+103488,208165.3698,1805855.274,0,21
+103489,208476.3294,1806735.141,0,21
+103490,209697.2969,1808483.543,0,21
+103491,209544.9871,1807726.921,0,21
+103492,210066.5938,1810590.484,0,21
+103493,209407.079,1811058.064,0,21
+103494,211357.4038,1811563.319,0,21
+103495,209801.671,1814667.537,0,21
+103496,212497.2805,1813157.133,0,21
+103497,210810.813,1815793.147,0,21
+103498,212584.2025,1816352.824,0,21
+103499,211328.9052,1818268.236,0,21
+103500,213671.4436,1819040.406,0,21
+103501,0,0,0,21
+103502,0,0,0,21
+103503,0,0,0,21
+103504,0,0,0,21
+103505,0,0,0,21
+103506,0,0,1087292.452,21
+103507,340415.9377,0,0,21
+103508,0,0,0,21
+103509,0,0,0,21
+103510,0,143.0204515,0,21
+103511,0,0,0,21
+103512,0,0,0,21
+103513,0,0,0,21
+103514,0,0,0,21
+103515,0,0,0,21
+103516,0,0,0,21
+103517,0,0,0,21
+103518,0,0,0,21
+103519,0,0,0,21
+103520,0,0,0,21
+103521,0,0,0,21
+103522,0,0,0,21
+103523,0,0,0,21
+103524,0,0,0,21
+103525,0,0,0,21
+103526,0,0,0,21
+103527,0,0,0,21
+103528,0,0,0,21
+103529,0,0,0,21
+103530,0,0,0,21
+103531,0,0,0,21
+103532,0,28979.76561,0,21
+103533,0,0,0,21
+103534,0,2523.545733,0,21
+103535,0,11341.56627,0,21
+103536,0,9077.204821,0,21
+103537,0,8619.65043,0,21
+103538,0,9273.040376,0,21
+103539,0,9481.760254,0,21
+103540,0,10969.84752,0,21
+103541,0,11259.6532,1054444.298,21
+103542,0,11406.45795,0,21
+103543,340415.1453,11833.46487,0,21
+103544,0,12165.50515,0,21
+103545,0,12487.26607,0,21
+103546,0,12813.15923,0,21
+103547,0,13070.49124,0,21
+103548,0,13452.78073,0,21
+103549,0,13688.44606,0,21
+103550,0,14051.39752,0,21
+103551,0,14248.39527,0,21
+103552,0,14614.09029,0,21
+103553,0,14867.91902,0,21
+103554,0,15158.75454,0,21
+103555,0,15435.94874,0,21
+103556,0,15706.37469,0,21
+103557,0,15984.58821,0,21
+103558,0,16247.41277,0,21
+103559,0,16521.34401,0,21
+103560,0,16767.3025,0,15.6
+103561,0,17019.61023,0,15.6
+103562,0,0,0,15.6
+103563,0,0,0,15.6
+103564,0,0,0,15.6
+103565,0,53989.09195,0,15.6
+103566,0,2819.543785,0,15.6
+103567,0,16448.60381,0,15.6
+103568,0,20517.95919,0,15.6
+103569,0,286208.2075,0,15.6
+103570,0,17955.51216,0,15.6
+103571,0,33818.69278,0,15.6
+103572,0,77788.63382,0,15.6
+103573,0,102087.7154,0,15.6
+103574,0,76701.1712,0,15.6
+103575,0,83563.24703,0,15.6
+103576,0,85375.95317,1022489.427,15.6
+103577,0,85614.01739,0,15.6
+103578,0,86407.53906,0,15.6
+103579,0,86753.18175,0,15.6
+103580,337828.674,87476.29718,0,15.6
+103581,0,87886.37943,0,15.6
+103582,0,88359.99232,0,15.6
+103583,0,88974.49844,0,15.6
+103584,0,89509.15504,0,15.6
+103585,0,89813.73788,0,15.6
+103586,0,90467.82393,0,15.6
+103587,0,90998.94913,0,15.6
+103588,0,91254.48734,0,15.6
+103589,0,91932.59625,0,15.6
+103590,0,92290.8855,0,15.6
+103591,0,92673.1216,0,15.6
+103592,0,93120.24718,0,15.6
+103593,0,97078.25088,0,15.6
+103594,0,96450.08914,0,15.6
+103595,0,77938.74195,0,15.6
+103596,0,78889.62111,0,15.6
+103597,0,79213.24269,0,15.6
+103598,0,145048.0061,0,15.6
+103599,0,4660.281974,0,15.6
+103600,0,15840.76128,0,15.6
+103601,0,24279.06402,0,15.6
+103602,0,19464.68373,0,15.6
+103603,0,19999.19782,0,15.6
+103604,0,20060.39979,0,15.6
+103605,0,20140.68204,0,15.6
+103606,0,319464.8502,0,15.6
+103607,0,41874.22831,0,15.6
+103608,0,43288.30886,0,15.6
+103609,0,132899.8399,0,15.6
+103610,0,98092.03032,0,15.6
+103611,0,103679.7647,991332.9093,15.6
+103612,0,111366.5474,0,15.6
+103613,0,107158.2682,0,15.6
+103614,0,109085.7303,0,15.6
+103615,0,109828.4996,0,15.6
+103616,0,110393.8764,0,15.6
+103617,338082.7757,110396.3586,0,15.6
+103618,0,111479.3469,0,15.6
+103619,0,111320.1026,0,15.6
+103620,0,111820.982,0,15.6
+103621,0,115734.2015,0,15.6
+103622,0,117187.2725,0,15.6
+103623,0,118720.6253,0,15.6
+103624,0,120065.3486,0,15.6
+103625,0,121842.0569,0,15.6
+103626,0,123095.8544,0,15.6
+103627,0,124792.4134,0,15.6
+103628,0,104036.4401,0,15.6
+103629,0,105860.287,0,15.6
+103630,0,106730.4743,0,15.6
+103631,0,182004.9194,0,15.6
+103632,0,117907.4158,0,15.6
+103633,0,124790.4053,0,15.6
+103634,0,141409.0115,0,15.6
+103635,0,135169.0805,0,15.6
+103636,0,22889.4396,0,15.6
+103637,0,23053.46463,0,15.6
+103638,0,23209.47067,0,15.6
+103639,0,23339.23386,0,15.6
+103640,0,23448.36271,0,15.6
+103641,0,396268.0869,0,15.6
+103642,0,55703.51673,0,15.6
+103643,0,120621.379,0,15.6
+103644,0,178184.7919,0,15.6
+103645,0,145902.9746,0,15.6
+103646,0,151279.6684,963819.0644,15.6
+103647,0,152755.8412,0,15.6
+103648,0,154125.6499,0,15.6
+103649,0,155190.2408,0,15.6
+103650,0,156636.7335,0,15.6
+103651,0,157440.4041,0,15.6
+103652,0,159171.446,0,15.6
+103653,0,160055.7015,0,15.6
+103654,338325.2623,161313.8105,0,15.6
+103655,0,162858.8404,0,15.6
+103656,0,163691.7653,0,15.6
+103657,0,165478.3331,0,15.6
+103658,0,166059.4612,0,15.6
+103659,0,167578.0018,0,15.6
+103660,0,168540.1193,0,15.6
+103661,0,144268.6666,0,15.6
+103662,0,144981.9933,0,15.6
+103663,0,219869.5147,0,15.6
+103664,0,155868.9823,0,15.6
+103665,0,174389.6482,0,15.6
+103666,0,178314.2731,0,15.6
+103667,0,177016.7416,0,15.6
+103668,0,179585.2951,0,15.6
+103669,0,180745.1498,0,15.6
+103670,0,181965.2129,0,15.6
+103671,0,27433.70907,0,15.6
+103672,0,27586.80543,0,15.6
+103673,0,27598.1364,0,15.6
+103674,0,27864.82901,0,15.6
+103675,0,565154.3262,0,15.6
+103676,0,79645.80848,0,15.6
+103677,0,135652.2306,0,15.6
+103678,0,238744.566,0,15.6
+103679,0,186972.229,0,15.6
+103680,0,194158.6491,0,15.6
+103681,0,196269.4301,939527.9565,15.6
+103682,0,196742.01,0,15.6
+103683,0,198246.6496,0,15.6
+103684,0,199442.6941,0,15.6
+103685,0,200618.5485,0,15.6
+103686,0,201228.9184,0,15.6
+103687,0,203415.1155,0,15.6
+103688,0,203732.9449,0,15.6
+103689,0,205047.287,0,15.6
+103690,0,206521.4405,0,15.6
+103691,338437.4183,207165.1803,0,15.6
+103692,0,208455.7936,0,15.6
+103693,0,179466.8553,0,15.6
+103694,0,180650.6254,0,15.6
+103695,0,267460.0853,0,15.6
+103696,0,197099.3012,0,15.6
+103697,0,209089.0922,0,15.6
+103698,0,219298.6594,0,15.6
+103699,0,215541.5859,0,15.6
+103700,0,217318.8684,0,15.6
+103701,0,218152.8611,0,15.6
+103702,0,218945.8995,0,15.6
+103703,0,220283.1485,0,15.6
+103704,0,221046.0343,0,15.6
+103705,0,31561.46707,0,15.6
+103706,0,31600.97427,0,15.6
+103707,0,31789.3543,0,15.6
+103708,0,649769.3333,0,15.6
+103709,0,101360.7106,0,15.6
+103710,0,170958.2255,0,15.6
+103711,0,276522.5778,0,15.6
+103712,0,222551.3915,0,15.6
+103713,0,230137.2495,0,15.6
+103714,0,230955.4381,0,15.6
+103715,0,231936.2973,0,15.6
+103716,0,232739.2527,917209.321,15.6
+103717,0,233642.5961,0,15.6
+103718,0,234350.9458,0,15.6
+103719,0,235418.2898,0,15.6
+103720,0,235948.1535,0,15.6
+103721,0,237248.3898,0,15.6
+103722,0,237595.1051,0,15.6
+103723,0,238674.1773,0,15.6
+103724,0,239578.2394,0,15.6
+103725,0,206480.4028,0,15.6
+103726,0,207583.1171,0,15.6
+103727,0,305122.6105,0,15.6
+103728,338600.8632,228719.8178,0,15.6
+103729,0,234875.0087,0,15.6
+103730,0,250531.9674,0,15.6
+103731,0,244011.3916,0,15.6
+103732,0,245657.3199,0,15.6
+103733,0,246663.2001,0,15.6
+103734,0,246952.3234,0,15.6
+103735,0,248299.4261,0,15.6
+103736,0,247932.2797,0,15.6
+103737,0,250062.4017,0,15.6
+103738,0,34627.6047,0,15.6
+103739,0,34623.32835,0,15.6
+103740,0,34751.39422,0,15.6
+103741,0,748303.8013,0,15.6
+103742,0,142068.3948,0,15.6
+103743,0,144085.8335,0,15.6
+103744,0,322310.3466,0,15.6
+103745,0,238135.5571,0,15.6
+103746,0,247458.9142,0,15.6
+103747,0,247338.3387,0,15.6
+103748,0,246385.1481,0,15.6
+103749,0,245151.6445,0,15.6
+103750,0,245139.9496,0,15.6
+103751,0,243427.6915,895637.3476,15.6
+103752,0,243479.7177,0,15.6
+103753,0,242076.5556,0,15.6
+103754,0,241282.2971,0,15.6
+103755,0,240386.3642,0,15.6
+103756,0,239807.7762,0,15.6
+103757,0,205758.9096,0,15.6
+103758,0,204614.0147,0,15.6
+103759,0,301042.2523,0,15.6
+103760,0,221751.1011,0,15.6
+103761,0,226418.3783,0,15.6
+103762,0,239849.9241,0,15.6
+103763,0,232525.3926,0,15.6
+103764,0,232233.3718,0,15.6
+103765,340417.7535,231622.5201,0,15.6
+103766,0,230216.4488,0,15.6
+103767,0,230226.8144,0,15.6
+103768,0,228747.9288,0,15.6
+103769,0,228296.7569,0,15.6
+103770,0,227657.9308,0,15.6
+103771,0,31864.7217,0,15.6
+103772,0,31810.26084,0,15.6
+103773,0,31693.41961,0,15.6
+103774,0,668270.2757,0,15.6
+103775,0,94748.19145,0,15.6
+103776,0,155373.5717,0,15.6
+103777,0,277671.3957,0,15.6
+103778,0,212644.7706,0,15.6
+103779,0,220416.2715,0,15.6
+103780,0,219491.4816,0,15.6
+103781,0,218714.2929,0,15.6
+103782,0,217626.0827,0,15.6
+103783,0,217215.7115,0,15.6
+103784,0,216165.85,0,15.6
+103785,0,215205.1545,0,15.6
+103786,0,214291.538,876928.6154,15.6
+103787,0,214149.8234,0,15.6
+103788,0,212233.7166,0,15.6
+103789,0,182425.54,0,15.6
+103790,0,180582.5077,0,15.6
+103791,0,268183.9406,0,15.6
+103792,0,192697.04,0,15.6
+103793,0,203356.4634,0,15.6
+103794,0,212524.7034,0,15.6
+103795,0,206735.2647,0,15.6
+103796,0,206241.9736,0,15.6
+103797,0,205378.8756,0,15.6
+103798,0,204866.4943,0,15.6
+103799,0,203553.8937,0,15.6
+103800,0,202816.7548,0,15.6
+103801,0,205328.439,0,15.6
+103802,340417.4263,206861.0638,0,15.6
+103803,0,209196.5808,0,15.6
+103804,0,30025.6827,0,15.6
+103805,0,30262.08402,0,15.6
+103806,0,30473.97492,0,15.6
+103807,0,636416.3218,0,15.6
+103808,0,74723.12564,0,15.6
+103809,0,182806.6646,0,15.6
+103810,0,266503.3891,0,15.6
+103811,0,220448.4985,0,15.6
+103812,0,228743.1337,0,15.6
+103813,0,230876.3441,0,15.6
+103814,0,233041.8733,0,15.6
+103815,0,235105.0728,0,15.6
+103816,0,237239.4992,0,15.6
+103817,0,239326.4796,0,15.6
+103818,0,241423.5889,0,15.6
+103819,0,243504.0766,0,15.6
+103820,0,245546.4389,0,15.6
+103821,0,213933.532,860337.2206,15.6
+103822,0,215883.1426,0,15.6
+103823,0,317464.1782,0,15.6
+103824,0,239206.9665,0,15.6
+103825,0,247991.9573,0,15.6
+103826,0,264883.4101,0,15.6
+103827,0,260180.9884,0,15.6
+103828,0,263214.6977,0,15.6
+103829,0,264697.86,0,15.6
+103830,0,267380.2623,0,15.6
+103831,0,269489.3819,0,15.6
+103832,0,272068.9167,0,15.6
+103833,0,273503.4345,0,15.6
+103834,0,276470.2283,0,15.6
+103835,0,278630.8993,0,15.6
+103836,0,280133.3408,0,15.6
+103837,0,37561.11936,0,15.6
+103838,0,37913.59054,0,15.6
+103839,0,38086.1373,0,15.6
+103840,340417.6323,891461.9107,0,15.6
+103841,0,208226.7678,0,15.6
+103842,0,134026.781,0,15.6
+103843,0,392939.771,0,15.6
+103844,0,287820.4289,0,15.6
+103845,0,299860.6324,0,15.6
+103846,0,303979.8108,0,15.6
+103847,0,305341.0962,0,15.6
+103848,0,308467.0654,0,15.6
+103849,0,309818.3604,0,15.6
+103850,0,312860.0711,0,15.6
+103851,0,314542.5497,0,15.6
+103852,0,317219.0198,0,15.6
+103853,0,277718.422,0,15.6
+103854,0,280222.81,0,15.6
+103855,0,395086.2505,0,15.6
+103856,0,312687.9905,844484.6544,15.6
+103857,0,329246.1167,0,15.6
+103858,0,330497.4997,0,15.6
+103859,0,334785.2878,0,15.6
+103860,0,336119.1816,0,15.6
+103861,0,1421386.657,0,15.6
+103862,0,1270773.255,0,15.6
+103863,0,266549.574,0,15.6
+103864,0,717474.8327,0,15.6
+103865,0,706439.6375,0,15.6
+103866,0,645057.8268,0,15.6
+103867,0,642644.6902,0,15.6
+103868,0,589713.4499,0,15.6
+103869,0,622359.4638,0,15.6
+103870,0,105417.4685,0,15.6
+103871,0,104800.3216,0,15.6
+103872,0,1189250.311,0,15.6
+103873,0,589201.3131,0,15.6
+103874,0,568627.604,0,15.6
+103875,0,683492.5288,0,15.6
+103876,0,611841.0431,0,15.6
+103877,0,589169.1445,0,15.6
+103878,340417.3746,608557.2528,0,15.6
+103879,0,600488.2796,0,15.6
+103880,0,598497.9177,0,15.6
+103881,0,596882.7824,0,15.6
+103882,0,595599.5418,0,15.6
+103883,0,594579.4507,0,15.6
+103884,0,594039.6285,0,15.6
+103885,0,506461.2817,0,15.6
+103886,0,634975.8273,0,15.6
+103887,0,583636.7517,0,15.6
+103888,0,587801.309,0,15.6
+103889,0,592302.7752,0,15.6
+103890,0,588057.1318,829172.4389,15.6
+103891,0,572649.1898,0,15.6
+103892,0,569155.9827,0,15.6
+103893,0,568318.8223,0,15.6
+103894,0,567829.631,0,15.6
+103895,0,617928.0181,0,15.6
+103896,0,565516.0199,0,15.6
+103897,0,578468.5754,0,15.6
+103898,0,583961.1737,0,15.6
+103899,0,580603.4102,0,15.6
+103900,0,578930.8805,0,15.6
+103901,0,578851.204,0,15.6
+103902,0,100213.7466,0,15.6
+103903,0,100058.0645,0,15.6
+103904,0,1184237.33,0,15.6
+103905,0,508768.1653,0,15.6
+103906,0,584642.6697,0,15.6
+103907,0,650408.1491,0,15.6
+103908,0,535602.0744,0,15.6
+103909,0,594027.2871,0,15.6
+103910,0,574087.5854,0,15.6
+103911,0,573381.3182,0,15.6
+103912,0,572803.1019,0,15.6
+103913,340417.3462,571807.0025,0,15.6
+103914,0,571143.5235,0,15.6
+103915,0,570650.522,0,15.6
+103916,0,487703.6285,0,15.6
+103917,0,488260.4877,0,15.6
+103918,0,980527.247,0,15.6
+103919,0,598066.2021,0,15.6
+103920,0,545406.4871,0,17.8
+103921,83839.25962,2605769.643,0,17.8
+103922,10765.70092,2614703.034,0,17.8
+103923,11141.00649,1227655.112,0,17.8
+103924,25140.38342,917130.8598,816457.2308,17.8
+103925,20964.71156,1245387.804,0,17.8
+103926,20684.77342,1097534.937,0,17.8
+103927,20590.19915,1173979.257,0,17.8
+103928,20684.7927,1103291.276,0,17.8
+103929,20773.36451,1102573.491,0,17.8
+103930,20745.86703,1105166.111,0,17.8
+103931,19411.83566,1102552.145,0,17.8
+103932,19390.09958,1097769.844,0,17.8
+103933,19438.4051,1093144.721,0,17.8
+103934,19405.8181,181630.8767,0,17.8
+103935,19497.53536,1385468.726,0,17.8
+103936,19413.53916,1168932.85,0,17.8
+103937,19517.98599,991552.7307,0,17.8
+103938,19497.56446,1115167.752,0,17.8
+103939,19513.23727,1080912.707,0,17.8
+103940,19513.2471,1077320.688,0,17.8
+103941,19596.93164,1075745.506,0,17.8
+103942,19513.26693,1074147.92,0,17.8
+103943,19596.95179,1070461.685,0,17.8
+103944,19652.76356,1070600.761,0,17.8
+103945,19596.97226,1067160.513,0,17.8
+103946,19677.32389,1066116.284,0,17.8
+103947,19695.96569,1064377.034,0,17.8
+103948,360094.7812,926551.0481,0,17.8
+103949,19736.21327,1123797.323,0,17.8
+103950,19743.44257,1068379.896,0,17.8
+103951,0,1050967.563,0,17.8
+103952,0,1057585.789,0,17.8
+103953,0,1057108.809,0,17.8
+103954,0,1054352.067,0,17.8
+103955,0,1050606.254,0,17.8
+103956,0,1051961.674,0,17.8
+103957,0,1013310.766,0,17.8
+103958,66428.17384,1010300.391,804657.0693,17.8
+103959,2472.011006,1098306.327,0,17.8
+103960,15580.86136,1034529.002,0,17.8
+103961,25636.06735,1411184.562,0,17.8
+103962,19016.99274,1046232.927,0,17.8
+103963,20112.07756,1042213.075,0,17.8
+103964,20189.25621,1040831.379,0,17.8
+103965,20115.53921,168453.7592,0,17.8
+103966,20245.30026,1340450.62,0,17.8
+103967,20204.67235,1056967.983,0,17.8
+103968,20245.32716,977367.8008,0,17.8
+103969,20275.98867,1060662.629,0,17.8
+103970,20269.40016,1034346.118,0,17.8
+103971,20325.27239,1036142.139,0,17.8
+103972,20416.13956,1033773.131,0,17.8
+103973,22377.36346,1032900.495,0,17.8
+103974,21166.19281,1031499.467,0,17.8
+103975,22316.75778,1032629.885,0,17.8
+103976,25193.41443,1298772.505,0,17.8
+103977,23439.61761,1030129.267,0,17.8
+103978,24195.73018,1029093.223,0,17.8
+103979,24271.38052,897595.5594,0,17.8
+103980,24346.41864,1088793.813,0,20
+103981,1300095.003,2609812.625,6120.656369,20
+103982,247937.6583,2190401.368,7508.563894,20
+103983,106433.1811,723271.9328,8379.256151,20
+103984,248387.8835,1203901.833,39174.52684,20
+103985,216748.9198,1272928.681,55663.65034,20
+103986,235901.2311,1165102.454,57108.08981,20
+103987,216028.7019,1166874.794,52390.70442,20
+103988,220695.5108,1436169.378,56670.6605,20
+103989,221255.4928,1160560.686,66460.25046,20
+103990,220337.8374,1159780.416,69587.2333,20
+103991,220758.1536,1154316.015,66564.353,20
+103992,220492.0301,1152496.831,69245.59448,20
+103993,220106.2482,1151392.235,69632.97736,20
+103994,220249.014,1144783.422,70698.43615,20
+103995,219806.6341,1146103.136,71061.99804,20
+103996,219869.6059,1142465.566,72032.51747,20
+103997,220040.8788,1139069.527,72441.59271,20
+103998,219369.1125,1138543.925,73346.62443,20
+103999,219734.651,1135079.671,73570.43936,20
+104000,219426.1052,1404144.88,74854.6169,20
+104001,219401.2877,1130867.446,74887.41934,20
+104002,219648.6808,1128782.761,75895.84252,20
+104003,219206.2967,1128320.788,76558.89767,20
+104004,219400.9807,1125509.956,76931.81951,20
+104005,219323.2871,1122057.7,77736.75193,20
+104006,219333.4587,1123421.997,78362.03394,20
+104007,219169.6601,1119369.852,79014.3355,20
+104008,219087.0845,1118389.329,79355.31914,20
+104009,219363.8815,1117705.107,80337.43911,20
+104010,219249.7942,1115566.885,80736.78568,20
+104011,219034.5023,1115171.254,81309.15376,20
+104012,219158.3275,1383742.401,82203.93095,20
+104013,219295.4677,1111505.811,82482.98785,20
+104014,219011.3947,1111450.944,83158.29914,20
+104015,219176.7605,1109566.939,83592.73226,20
+104016,219456.503,1107318.267,84376.65418,20
+104017,218851.0672,1107400.142,85068.92919,20
+104018,219277.3679,1104222.438,85191.47196,20
+104019,219131.3254,1104608.764,86180.44288,20
+104020,219517.7918,1103036.361,86731.47315,20
+104021,218548.5704,1101892.869,87204.32108,20
+104022,220048.7033,1099528.521,87610.67183,20
+104023,218771.4143,1100971.231,88404.4279,20
+104024,219502.9657,1365344.905,88991.2866,20
+104025,219297.5657,1098564.365,88996.9085,20
+104026,219247.5188,1095358.051,90335.24937,20
+104027,219396.1207,1094450.139,90350.07021,20
+104028,219323.0136,1093453.534,91287.86154,20
+104029,219801.6861,1093528.371,91377.10319,20
+104030,218828.4114,1091361.515,94363.49454,20
+104031,220024.4891,1090038.713,94268.30681,20
+104032,219169.2959,1089991.924,95107.65378,20
+104033,219530.1612,1087923.255,95995.44954,20
+104034,219683.6208,1089117.179,96709.19725,20
+104035,219583.5507,1084820.091,97615.56197,20
+104036,219750.4003,1355690.152,97927.86299,20
+104037,219267.2748,1084865.204,99225.53623,20
+104038,220104.3219,1083882.143,99592.2883,20
+104039,221588.0758,1082898.036,100476.9599,20
+104040,231872.9199,1082152.8,101235.5946,21
+104041,209756.0337,2087324.698,89711.98141,21
+104042,208954.4973,2075980.881,88571.93118,21
+104043,208576.747,2074937.785,88847.21245,21
+104044,208133.337,2364975.309,89033.3761,21
+104045,208372.3958,2069298.162,89417.90267,21
+104046,208061.8773,2069627.308,89645.62618,21
+104047,207741.1842,2065762.024,89716.43836,21
+104048,207280.7756,2065839.338,90159.86759,21
+104049,207936.7463,2061933.267,90572.68579,21
+104050,207278.528,2061775.641,90752.01434,21
+104051,207277.356,2058663.849,91237.69936,21
+104052,207134.5455,2057820.116,91207.92955,21
+104053,206852.6436,2055923.717,91761.60976,21
+104054,206786.5275,2053470.449,92119.01265,21
+104055,206947.1825,2053323.63,92098.34197,21
+104056,206397.4817,2050506.45,92648.6953,21
+104057,206764.3837,2048313.781,93138.81826,21
+104058,206167.7926,2048200.026,92907.87508,21
+104059,206614.9667,2045971.49,93950.03783,21
+104060,205826.6668,2043997.207,93472.13787,21
+104061,206269.2317,2043056.73,94240.38706,21
+104062,205962.6581,2041753.45,94601.60957,21
+104063,205955.6137,2040826.128,94442.17762,21
+104064,205725.4396,2037084.287,95060.09687,21
+104065,205719.3532,2037240.297,95241.21707,21
+104066,205561.3499,2037205.289,95719.12789,21
+104067,205493.0753,2033786.514,95898.97975,21
+104068,205535.044,2031938.977,96032.4347,21
+104069,205368.1342,2032026.133,96623.80981,21
+104070,204911.1584,2030106.581,96426.31068,21
+104071,205548.1512,2029280.523,97276.83798,21
+104072,204902.4235,2025909.091,97005.78129,21
+104073,204863.9083,2028134.775,97683.83714,21
+104074,205200.7929,2024018.395,97837.52458,21
+104075,200107.1488,2023961.066,98137.83385,21
+104076,199114.1086,2021970.089,98223.96091,21
+104077,198165.1322,2022341.035,98867.57206,21
+104078,197897.9781,2018418.721,98655.86275,21
+104079,196997.9562,2019928.497,99226.39404,21
+104080,195956.2722,2016677.092,99410.50583,21
+104081,195678.6189,2017659.611,99440.5435,21
+104082,194832.1245,2013820.836,99721.68221,21
+104083,198359.1488,2013932.257,100031.9589,21
+104084,196062.0706,2011638.319,100222.9086,21
+104085,196527.68,2013445.946,100304.277,21
+104086,195662.0523,2009359.502,100973.2368,21
+104087,195636.1583,2010273.041,100702.6402,21
+104088,194236.8877,2006213.551,101420.2765,21
+104089,194890.2468,2008116.726,101374.954,21
+104090,194183.6115,2005025.42,101774.4365,21
+104091,193497.3666,2005100.902,101634.8589,21
+104092,193205.5195,2003699.476,102508.7739,21
+104093,192427.7167,2002574.675,102242.6505,21
+104094,191996.7684,2000806.556,102571.8656,21
+104095,191281.3938,2001005.584,91857.24703,21
+104096,191066.717,1997301.926,89513.527,21
+104097,190336.7164,1999854.047,88697.06148,21
+104098,189621.8364,1995180.138,88108.21308,21
+104099,188675.6799,1997241.523,86854.16699,21
+104100,188752.994,1993499.886,86783.98639,21
+104101,98460.81339,1766041.635,11641.83585,21
+104102,92661.58045,1747377.214,8256.496848,21
+104103,91247.9479,1745868.419,6962.958394,21
+104104,89073.26919,1739833.311,6268.542619,21
+104105,88113.71295,1736719.342,5516.614771,21
+104106,86147.76545,1733536.7,5428.835871,21
+104107,85001.37941,1730690.049,4946.253259,21
+104108,83190.94225,1726190.757,4810.282565,21
+104109,82118.20989,1724813.25,4684.794112,21
+104110,80371.50475,1720975.308,4539.934125,21
+104111,79102.1123,1719124.059,4471.300517,21
+104112,77513.35717,1716338.11,4288.440459,21
+104113,76117.48712,1712738.601,4170.562482,21
+104114,74741.03517,1710554.279,4048.943336,21
+104115,73210.45416,1707371.986,3914.539617,21
+104116,71813.32898,1705413.532,3754.196547,21
+104117,70252.96792,1703362.725,3652.261265,21
+104118,69067.23078,1700142.167,3532.378569,21
+104119,67319.32246,1697903.918,3368.3508,21
+104120,66034.50776,1696038.851,3274.382781,21
+104121,64637.57986,1692917.694,3171.191117,21
+104122,62866.2296,1691869.69,3068.658419,21
+104123,61778.1005,1687954.218,2991.222954,21
+104124,60346.96969,1687429.566,2927.293763,21
+104125,58425.5148,1663521.08,2874.255478,21
+104126,57508.40007,1659062.623,2842.353942,21
+104127,55663.64419,1653039.882,2831.799244,21
+104128,54339.88899,1650562.015,2789.156457,21
+104129,52638.08909,1645179.378,2743.780347,21
+104130,51609.47868,1642793.767,2717.04629,21
+104131,50677.52718,1638492.6,2690.244376,21
+104132,49917.40368,1633663.764,2644.698032,21
+104133,48945.89707,1631494.293,2617.789777,21
+104134,48289.19498,1627250.643,2545.008773,21
+104135,47450.44807,1622768.986,2561.221321,21
+104136,46601.0828,1620155.2,2472.06174,21
+104137,45725.68645,1616410.048,2461.03273,21
+104138,45115.65526,1612868.314,2444.933344,21
+104139,43981.82613,1609969.886,2357.815328,21
+104140,43491.52673,1605079.821,2357.884061,21
+104141,42462.03303,1602763.245,2300.426288,21
+104142,41654.55089,1598839.946,2270.430876,21
+104143,40922.93186,1595038.126,2242.82685,21
+104144,40018.53317,1591560.148,2182.55813,21
+104145,39339.24091,1587985.476,2154.780383,21
+104146,38343.96814,1584303.885,2138.515539,21
+104147,37706.03466,1579846.062,2094.302737,21
+104148,36712.49209,1576911.922,2066.341288,21
+104149,35942.64899,1572568.946,2038.285221,21
+104150,35220.49196,1569122.012,1989.171288,21
+104151,34408.46598,1566203.705,1949.120655,21
+104152,33222.43435,1561323.903,1916.323775,21
+104153,32881.2974,1558741.891,1887.961239,21
+104154,31897.11602,1553977.368,1843.034553,21
+104155,30897.59504,1550787.914,1797.971891,21
+104156,30363.42266,1548205.092,1783.655702,21
+104157,29190.5252,1542515.209,1721.866066,21
+104158,28540.78593,1540827.898,1707.455318,21
+104159,27881.8414,1536103.628,1630.834189,21
+104160,26698.31402,1821222.539,1647.439083,21
+104161,26362.17102,1528517.211,1539.145701,21
+104162,25726.6555,1523643.478,1524.445091,21
+104163,25674.37403,1518547.014,1431.818035,21
+104164,25349.14347,1514212.648,1383.483559,21
+104165,25093.72833,1509610.161,1338.33733,21
+104166,24817.49904,1504456.061,1274.442252,21
+104167,24699.58303,1501716.561,1226.98318,21
+104168,24370.06454,1494988.748,1163.505393,21
+104169,24147.73901,1492685.386,1114.028595,21
+104170,23905.09397,1486546.326,1023.514011,21
+104171,23816.98622,1483225.385,1031.924082,21
+104172,23404.36272,1477303.951,981.0840365,21
+104173,23298.06564,1474416.645,947.0556272,21
+104174,23041.32152,1468750.445,964.1012905,21
+104175,22772.58484,1464698.284,912.9234333,21
+104176,22715.17333,1460519.661,895.8127517,21
+104177,22237.44791,1456285.361,878.6719478,21
+104178,22366.09537,1451418.651,844.2892071,21
+104179,21697.03074,1448361.805,844.298168,21
+104180,21806.39608,1443146.359,792.4848334,21
+104181,21576.76856,1438826.949,792.4927477,21
+104182,21030.61426,1435477.601,757.7910498,21
+104183,21243.7732,1430748.725,740.3935207,21
+104184,20767.34113,1425994.738,722.9615355,21
+104185,20908.88657,1421984.869,687.9856546,21
+104186,20365.74967,1418209.268,670.4467766,21
+104187,20379.972,1414275.817,652.8708767,21
+104188,20082.00237,1408983.685,617.6000939,21
+104189,19838.21039,1404727.518,599.9087598,21
+104190,19538.27889,1401316.824,582.1772458,21
+104191,19485.12861,1395750.496,564.4046441,21
+104192,19121.47532,1392804.292,510.8233698,21
+104193,18827.66012,1388223.724,510.8267047,21
+104194,18677.74741,1382593.882,474.882906,21
+104195,18459.77725,1381237.645,438.7478999,21
+104196,18198.49156,1374279.422,456.8439592,21
+104197,18012.10126,1371713.219,384.1609269,21
+104198,17803.29516,1366327.819,402.4138632,21
+104199,17550.73585,1362908.103,347.4915044,21
+104200,17426.25087,1358708.132,347.4930619,21
+104201,17195.68111,1353574.593,329.0675754,21
+104202,16937.43185,1350873.224,273.3927962,21
+104203,16769.25742,1345513.494,292.0216001,21
+104204,16500.2649,1341849.565,235.9123445,21
+104205,16372.21391,1337134.14,235.9130675,21
+104206,16003.40402,1332589.853,198.0957569,21
+104207,15983.0711,1329122.236,179.0457143,21
+104208,15509.77789,1324611.725,159.8903082,21
+104209,15591.5674,1320797.088,140.6190461,21
+104210,15098.14536,1316243.997,101.6717083,21
+104211,15014.94503,1312781.655,101.671844,21
+104212,14876.89266,1307566.266,62.03327773,21
+104213,14441.47696,1303526.671,41.85125581,21
+104214,14599.18608,1299429.246,21.30037737,21
+104215,14135.81027,1295287.903,0,21
+104216,14214.93509,1290864.818,0,21
+104217,13863.08195,1288676.526,0,21
+104218,13930.86383,1285293.508,0,21
+104219,13554.5171,1280298.493,0,21
+104220,13325.65322,1276563.888,0,21
+104221,12760.33604,1270318.259,0,21
+104222,12748.57866,1264997.214,0,21
+104223,12341.90613,1258992.33,0,21
+104224,12237.27556,1254055.208,0,21
+104225,12061.28357,1248606.457,0,21
+104226,11896.50118,1242741.731,0,21
+104227,11568.5019,1237284.605,0,21
+104228,11471.99491,1232306.261,0,21
+104229,11365.90356,1226663.216,0,21
+104230,10974.55576,1220353.053,0,21
+104231,10819.03393,1215840.584,0,21
+104232,10781.1479,1209249.112,0,21
+104233,10493.78452,1205022.033,0,21
+104234,10253.53145,1198897.752,0,21
+104235,10227.5764,1193076.277,0,21
+104236,10163.94275,1188744.192,0,21
+104237,9897.587214,1182221.205,0,21
+104238,9629.905263,1177736.959,0,21
+104239,9487.053504,1170771.348,0,21
+104240,9308.333649,1166513.661,0,21
+104241,9046.721881,1161166.433,0,21
+104242,9006.73,1155046.181,0,21
+104243,8652.998182,1149967.876,0,21
+104244,8542.82685,1145169.546,0,21
+104245,8493.192873,1140438.499,0,21
+104246,8161.162386,1135198.999,0,21
+104247,8136.218645,1130402.076,0,21
+104248,7888.539301,1125679.658,0,21
+104249,7751.699038,1121022.873,0,21
+104250,7527.433641,1115420.886,0,21
+104251,7489.595043,1111317.648,0,21
+104252,7251.556728,1106541.855,0,21
+104253,7113.055506,1102223.391,0,21
+104254,6974.171868,1097861.041,0,21
+104255,6746.454868,1093830.279,0,21
+104256,6580.91812,1089082.132,0,21
+104257,6466.290767,1084732.438,0,21
+104258,6210.327396,1080434.663,0,21
+104259,6197.416549,1076694.639,0,21
+104260,5810.734301,1071303.387,0,21
+104261,5810.734347,1068218.891,0,21
+104262,5551.088391,1063091.376,0,21
+104263,5407.602834,1059397.42,0,21
+104264,5145.542327,1054837.899,0,21
+104265,5145.542213,1050518.222,0,21
+104266,4736.062569,1046541.121,0,21
+104267,4736.062584,1041852.497,0,21
+104268,4469.617831,1037640.716,0,21
+104269,4322.347267,1033474.778,0,21
+104270,4066.346416,1029181.765,0,21
+104271,4026.076441,1024797.224,0,21
+104272,3658.368374,1020991.713,0,21
+104273,3617.847099,1016491.543,0,21
+104274,3356.406345,1011996.348,0,21
+104275,3065.242487,1008144.459,0,21
+104276,2925.428415,1003470.939,0,21
+104277,2501.398851,999697.3191,0,21
+104278,2487.595637,994719.6696,0,21
+104279,2330.658056,991130.868,0,21
+104280,1909.2245,986724.8667,0,21
+104281,2330.657972,985089.8258,0,21
+104282,1881.266509,982698.2737,0,21
+104283,1881.266568,979318.374,0,21
+104284,1719.661684,976393.2269,0,21
+104285,1434.09125,973669.4254,0,21
+104286,1253.053878,970252.7998,0,21
+104287,1253.058666,967807.1517,0,21
+104288,938.9158878,964517.5045,0,21
+104289,758.3901881,961422.4307,0,21
+104290,729.5818339,959100.2394,0,21
+104291,729.5818234,955334.2813,0,21
+104292,686.076173,953835.9623,0,21
+104293,671.4935184,951739.5226,0,21
+104294,642.2039292,949868.3264,0,21
+104295,627.4952043,948253.6288,0,21
+104296,612.7429627,946693.4639,0,21
+104297,568.2166267,944784.127,0,21
+104298,553.2817461,942957.8675,0,21
+104299,538.2988775,941224.6189,0,21
+104300,508.1849735,939603.4512,0,21
+104301,493.052047,937882.879,0,21
+104302,462.6271735,936111.8485,0,21
+104303,431.9816913,934008.3178,0,21
+104304,416.5383701,932853.5823,0,21
+104305,401.1182425,930677.8081,0,21
+104306,369.9703526,929061.7128,0,21
+104307,338.5858973,927066.7138,0,21
+104308,322.786838,925710.3386,0,21
+104309,306.9141035,923798.0564,0,21
+104310,274.9354005,922288.1516,0,21
+104311,242.6208944,920486.6058,0,21
+104312,242.6209109,919016.4978,0,21
+104313,193.4357593,917206.9831,0,21
+104314,193.4357459,915566.3515,0,21
+104315,160.0938165,914274.479,0,21
+104316,143.2302339,912224.6899,0,21
+104317,109.0511545,910973.889,0,21
+104318,91.69738411,909108.8507,0,21
+104319,74.1305988,907414.6177,0,21
+104320,56.30757748,905982.4532,0,21
+104321,19.54799089,904271.8163,0,21
+104322,0,902526.3673,0,21
+104323,0,901430.9857,0,21
+104324,0,899170.2541,0,21
+104325,0,898381.4957,0,21
+104326,0,896326.2509,0,21
+104327,0,895176.779,0,21
+104328,0,893376.5273,0,21
+104329,0,892025.0676,0,21
+104330,0,890406.6136,0,21
+104331,0,888705.511,0,21
+104332,0,887361.403,0,21
+104333,0,885987.6496,0,21
+104334,0,884233.2411,0,21
+104335,0,882935.2686,0,21
+104336,0,881043.2807,0,21
+104337,0,879586.4574,0,21
+104338,0,878432.3796,0,21
+104339,0,876611.8456,0,21
+104340,0,875157.723,0,21
+104341,0,890269.9552,0,21
+104342,0,888754.2346,0,21
+104343,0,902548.429,0,21
+104344,0,893544.1549,0,21
+104345,0,895587.5982,0,21
+104346,0,895092.3584,0,21
+104347,0,894427.5187,0,21
+104348,0,894128.3881,0,21
+104349,0,893693.1759,0,21
+104350,0,893383.9109,0,21
+104351,0,892677.9316,0,21
+104352,0,892400.001,0,21
+104353,0,891868.2786,0,21
+104354,0,892178.9357,0,21
+104355,0,891774.5028,0,21
+104356,0,891580.8354,0,21
+104357,0,890792.6742,0,21
+104358,0,890372.5954,0,21
+104359,0,890189.011,0,21
+104360,0,889242.085,0,21
+104361,0,888874.3614,0,21
+104362,0,888691.1017,0,21
+104363,0,887489.2816,0,21
+104364,0,887398.322,0,21
+104365,0,886811.5593,0,21
+104366,0,885890.386,0,21
+104367,0,885363.8813,0,21
+104368,0,885424.5689,0,21
+104369,0,883996.6475,0,21
+104370,0,883973.2481,0,21
+104371,0,882785.0033,0,21
+104372,0,882640.1183,0,21
+104373,0,881789.848,0,21
+104374,0,881008.9285,0,21
+104375,0,880615.224,0,21
+104376,0,880200.9609,0,21
+104377,0,879697.648,0,21
+104378,0,878592.8181,0,21
+104379,0,878606.7235,0,21
+104380,0,877145.7543,0,21
+104381,0,877198.6827,0,21
+104382,0,876099.1103,0,21
+104383,0,875405.2928,0,21
+104384,0,874796.2454,0,21
+104385,0,873899.6627,0,21
+104386,0,873056.1707,0,21
+104387,0,872812.5527,0,21
+104388,0,871431.0651,0,21
+104389,0,871084.5795,0,21
+104390,0,870063.0355,0,21
+104391,0,869307.2979,0,21
+104392,0,868316.4508,0,21
+104393,0,867725.0539,0,21
+104394,0,866419.8178,0,21
+104395,0,865219.8554,0,21
+104396,0,864789.7821,0,21
+104397,0,863473.2549,0,21
+104398,0,862557.2883,0,21
+104399,0,861508.159,0,21
+104400,0,860473.272,0,21
+104401,0,835183.6308,0,21
+104402,0,832996.4249,0,21
+104403,0,832002.0959,0,21
+104404,0,830176.7265,0,21
+104405,0,828917.3304,0,21
+104406,0,827568.5438,0,21
+104407,0,825690.513,0,21
+104408,0,824629.7483,0,21
+104409,0,822537.8871,0,21
+104410,0,821516.523,0,21
+104411,0,819397.2172,0,21
+104412,0,818317.4175,0,21
+104413,0,816956.244,0,21
+104414,0,814801.2805,0,21
+104415,0,813874.0794,0,21
+104416,0,811936.8351,0,21
+104417,0,810584.9247,0,21
+104418,0,808989.7519,0,21
+104419,0,807209.8843,0,21
+104420,0,800875.4794,0,21
+104421,0,800492.3385,0,21
+104422,0,798040.5732,0,21
+104423,0,795754.0351,0,21
+104424,0,793440.85,0,21
+104425,0,791271.1594,0,21
+104426,0,788891.0969,0,21
+104427,0,787167.3965,0,21
+104428,0,784732.3138,0,21
+104429,0,782294.8514,0,21
+104430,0,780483.4645,0,21
+104431,0,778542.5171,0,21
+104432,0,776362.6671,0,21
+104433,0,774448.4528,0,21
+104434,0,772429.3627,0,21
+104435,0,770394.3456,0,21
+104436,0,768494.4642,0,21
+104437,0,766762.9501,0,21
+104438,0,764449.0736,0,21
+104439,0,762520.6366,0,21
+104440,0,761201.1982,0,21
+104441,0,758853.4621,0,21
+104442,0,757210.8185,0,21
+104443,0,755343.6744,0,21
+104444,0,753229.675,0,21
+104445,0,751735.5804,0,21
+104446,0,749734.0923,0,21
+104447,0,747870.5288,0,21
+104448,0,745543.6697,0,21
+104449,0,744665.7495,0,21
+104450,0,741866.8749,0,21
+104451,0,740808.2494,0,21
+104452,0,738416.4069,0,21
+104453,0,736879.0991,0,21
+104454,0,735144.0977,0,21
+104455,0,733620.3802,0,21
+104456,0,731164.7338,0,21
+104457,0,730132.557,0,21
+104458,0,727991.3468,0,21
+104459,0,726321.7587,0,21
+104460,0,724765.5252,0,21
+104461,0,728820.2126,0,21
+104462,0,728629.7474,0,21
+104463,0,728703.5151,0,21
+104464,0,727891.1098,0,21
+104465,0,728039.0482,0,21
+104466,0,727352.8063,0,21
+104467,0,727570.5761,0,21
+104468,0,726743.985,0,21
+104469,0,726961.0665,0,21
+104470,0,726449.5293,0,21
+104471,0,726437.3719,0,21
+104472,0,725440.9557,0,21
+104473,0,726216.112,0,21
+104474,0,725397.2456,0,21
+104475,0,725394.5304,0,21
+104476,0,725195.2281,0,21
+104477,0,724948.4193,0,21
+104478,0,724547.5497,0,21
+104479,0,724888.6172,0,21
+104480,0,724214.8853,0,21
+104481,0,724282.5154,0,21
+104482,0,724244.4377,0,21
+104483,0,724078.6188,0,21
+104484,0,724117.2744,0,21
+104485,0,723560.425,0,21
+104486,0,723840.5576,0,21
+104487,0,723840.3458,0,21
+104488,0,723690.2234,0,21
+104489,0,723472.0299,0,21
+104490,0,723734.4643,0,21
+104491,0,723561.6151,0,21
+104492,0,723594.8729,0,21
+104493,0,723977.6961,0,21
+104494,0,724117.4482,0,21
+104495,0,724105.1256,0,21
+104496,0,724425.933,0,21
+104497,0,724617.951,0,21
+104498,0,724512.1802,0,21
+104499,0,725098.1504,0,21
+104500,0,724912.7516,0,21
+104501,0,725508.1806,0,21
+104502,0,725701.4998,0,21
+104503,0,725588.5087,0,21
+104504,0,726053.5745,0,21
+104505,0,726475.8981,0,21
+104506,0,726629.618,0,21
+104507,0,726507.7202,0,21
+104508,0,727344.937,0,21
+104509,0,727244.84,0,21
+104510,0,727443.9999,0,21
+104511,0,727752.4835,0,21
+104512,0,728244.7336,0,21
+104513,0,728295.3406,0,21
+104514,0,728593.1661,0,21
+104515,0,728589.9703,0,21
+104516,0,729332.5624,0,21
+104517,0,729269.3292,0,21
+104518,0,729670.1288,0,21
+104519,0,729546.0712,0,21
+104520,0,730305.9875,0,21
+104521,0,725216.1164,0,21
+104522,0,726175.9577,0,21
+104523,0,725959.2524,0,21
+104524,0,726552.0757,0,21
+104525,0,726967.9275,0,21
+104526,0,727196.8885,0,21
+104527,0,727553.6412,0,21
+104528,0,727944.4858,0,21
+104529,0,728142.3619,0,21
+104530,0,728874.4187,0,21
+104531,0,728545.8763,0,21
+104532,0,729584.8263,0,21
+104533,0,729336.5346,0,21
+104534,0,729734.9171,0,21
+104535,0,730287.4938,0,21
+104536,0,730363.5878,0,21
+104537,0,730596.0753,0,21
+104538,0,730800.0569,0,21
+104539,0,731254.6993,0,21
+104540,0,731272.8377,0,21
+104541,0,732226.168,0,21
+104542,0,731563.7405,0,21
+104543,0,732450.8937,0,21
+104544,0,732270.868,0,21
+104545,0,733026.5623,0,21
+104546,0,732815.0907,0,21
+104547,0,733435.4417,0,21
+104548,0,733189.8637,0,21
+104549,0,734021.7069,0,21
+104550,0,735527.2347,0,21
+104551,0,736081.3683,0,21
+104552,0,736676.7096,0,21
+104553,0,737358.2212,0,21
+104554,0,737862.3327,0,21
+104555,0,738573.3991,0,21
+104556,0,738802.4158,0,21
+104557,0,739662.2854,0,21
+104558,0,740051.0217,0,21
+104559,0,740907.9127,0,21
+104560,0,741383.3415,0,21
+104561,0,741811.7873,0,21
+104562,0,742627.7466,0,21
+104563,0,743309.21,0,21
+104564,0,743517.0205,0,21
+104565,0,744692.8781,0,21
+104566,0,744775.4583,0,21
+104567,0,745579.9627,0,21
+104568,0,746261.133,0,21
+104569,0,746684.8074,0,21
+104570,0,747367.1249,0,21
+104571,0,747944.1461,0,21
+104572,0,748268.9209,0,21
+104573,0,749573.3744,0,21
+104574,0,749586.7561,0,21
+104575,0,750411.6156,0,21
+104576,0,751092.6234,0,21
+104577,0,751768.1709,0,21
+104578,0,752372.5311,0,21
+104579,0,752981.2641,0,21
+104580,0,753800.013,0,21
+104581,0,754519.0715,0,21
+104582,0,755020.0168,0,21
+104583,0,755667.1943,0,21
+104584,0,756474.9658,0,21
+104585,0,756330.1317,0,21
+104586,0,756545.4604,0,21
+104587,0,756430.6961,0,21
+104588,0,756831.2474,0,21
+104589,0,756860.8352,0,21
+104590,0,756454.6583,0,21
+104591,0,757007.9811,0,21
+104592,0,756518.3915,0,21
+104593,0,757140.61,0,21
+104594,0,756640.2591,0,21
+104595,0,757009.8772,0,21
+104596,0,757216.6707,0,21
+104597,0,757092.5126,0,21
+104598,0,757060.8491,0,21
+104599,0,757214.6587,0,21
+104600,0,757443.1557,0,21
+104601,0,757685.443,0,21
+104602,0,757369.8289,0,21
+104603,0,757986.5519,0,21
+104604,0,758070.2566,0,21
+104605,0,758232.9294,0,21
+104606,0,758567.8915,0,21
+104607,0,759055.8061,0,21
+104608,0,759068.4179,0,21
+104609,0,759095.5619,0,21
+104610,0,759877.7282,0,21
+104611,0,759735.0696,0,21
+104612,0,760544.7703,0,21
+104613,0,760553.9725,0,21
+104614,0,761059.6541,0,21
+104615,0,761293.6005,0,21
+104616,0,762016.2921,0,21
+104617,0,762138.3347,0,21
+104618,0,762587.9878,0,21
+104619,0,763147.0119,0,21
+104620,0,763192.1372,0,21
+104621,0,764182.8289,0,21
+104622,0,764070.8133,0,21
+104623,0,765105.4099,0,21
+104624,0,765041.2656,0,21
+104625,0,765791.6811,0,21
+104626,0,766314.39,0,21
+104627,0,766667.1913,0,21
+104628,0,767450.6953,0,21
+104629,0,767711.5567,0,21
+104630,0,768168.6395,0,21
+104631,0,768954.308,0,21
+104632,0,769337.3541,0,21
+104633,0,770121.3762,0,21
+104634,0,771373.782,0,21
+104635,0,773130.7029,0,21
+104636,0,772793.3829,0,21
+104637,0,774294.7171,0,21
+104638,0,774558.2226,0,21
+104639,0,775343.5413,0,21
+104640,0,776202.787,0,21
+104641,0,816469.837,0,21
+104642,0,820492.7002,0,21
+104643,0,822552.7146,0,21
+104644,0,824798.654,0,21
+104645,0,827262.3968,0,21
+104646,0,829171.406,0,21
+104647,0,842490.3799,0,21
+104648,0,839037.5687,0,21
+104649,0,842684.0475,0,21
+104650,0,845502.5027,0,21
+104651,0,847976.0912,0,21
+104652,0,850559.57,0,21
+104653,0,852239.3332,0,21
+104654,0,855582.5576,0,21
+104655,0,857505.9478,0,21
+104656,0,859943.0878,0,21
+104657,0,861985.7439,0,21
+104658,0,864804.52,0,21
+104659,0,866723.1134,0,21
+104660,0,869523.0501,0,21
+104661,0,871005.6805,0,21
+104662,0,874394.2489,0,21
+104663,0,875432.1749,0,21
+104664,0,878629.7474,0,21
+104665,0,880420.7379,0,21
+104666,0,882860.0313,0,21
+104667,0,884819.6582,0,21
+104668,0,887547.3066,0,21
+104669,0,890121.2269,0,21
+104670,0,892650.2747,0,21
+104671,0,895050.372,0,21
+104672,0,897045.3998,0,21
+104673,0,899268.2347,0,21
+104674,0,901840.3552,0,21
+104675,0,903970.4057,0,21
+104676,0,905681.2212,0,21
+104677,0,908900.9487,0,21
+104678,0,909987.8347,0,21
+104679,0,925471.6104,0,21
+104680,0,921188.0765,0,21
+104681,0,925979.5971,0,21
+104682,0,937004.5086,0,21
+104683,0,939062.9182,0,21
+104684,0,943141.5632,0,21
+104685,0,948342.5047,0,21
+104686,0,951558.0437,0,21
+104687,0,955928.9533,0,21
+104688,0,959446.9196,0,21
+104689,0,963957.4089,0,21
+104690,0,967993.6944,0,21
+104691,0,971390.867,0,21
+104692,0,975985.0441,0,21
+104693,0,980513.1525,0,21
+104694,0,983176.0469,0,21
+104695,0,988909.563,0,21
+104696,0,990479.3067,0,21
+104697,0,996243.3116,0,21
+104698,0,999063.6147,0,21
+104699,0,1002922.155,0,21
+104700,0,1008608.489,0,21
+104701,0,1071457.719,0,21
+104702,0,1082747.86,0,21
+104703,0,1084898.725,0,21
+104704,0,1091508.024,0,21
+104705,0,1094942.003,0,21
+104706,0,1099064.644,0,21
+104707,0,1103899.949,0,21
+104708,0,1107415,0,21
+104709,0,1112588.284,0,21
+104710,0,1116669.921,0,21
+104711,0,1119988.433,0,21
+104712,0,1124534.389,0,21
+104713,0,1127609.119,0,21
+104714,0,1133683.284,0,21
+104715,0,1136034.913,0,21
+104716,0,1139996.312,0,21
+104717,0,1144545.457,0,21
+104718,0,1147874.287,0,21
+104719,0,1152537.205,0,21
+104720,0,1153109.522,0,21
+104721,0,1157688.775,0,21
+104722,0,1160966.057,0,21
+104723,0,1164734.246,0,21
+104724,0,1168628.742,0,21
+104725,0,1172618.164,0,21
+104726,0,1176644.663,0,21
+104727,0,1178875.682,0,21
+104728,0,1184001.015,0,21
+104729,0,1186757.701,0,21
+104730,0,1190982.233,0,21
+104731,0,1193821.562,0,21
+104732,0,1196492.737,0,21
+104733,0,1201333.181,0,21
+104734,0,1203536.028,0,21
+104735,0,1206246.095,0,21
+104736,0,1211647.555,0,21
+104737,0,1212232.867,0,21
+104738,0,1216478.933,0,21
+104739,0,1219796.653,0,21
+104740,0,1222466.787,0,21
+104741,0,1225911.698,0,21
+104742,0,1228352.896,0,21
+104743,0,1231367.166,0,21
+104744,0,1235408.344,0,21
+104745,0,1237152.239,0,21
+104746,0,1240674.34,0,21
+104747,0,1243607.516,0,21
+104748,0,1246545.041,0,21
+104749,0,1250064.946,0,21
+104750,0,1251946.943,0,21
+104751,0,1255407.445,0,21
+104752,0,1258025.185,0,21
+104753,0,1260862.345,0,21
+104754,0,1264087.037,0,21
+104755,0,1266909.982,0,21
+104756,0,1269668.429,0,21
+104757,0,1271734.943,0,21
+104758,0,1276056.781,0,21
+104759,0,1278396.172,0,21
+104760,0,1280709.167,0,21
+104761,0,1283948.394,0,21
+104762,0,1287961.93,0,21
+104763,0,1290375.86,0,21
+104764,0,1293527.411,0,21
+104765,0,1296158.915,0,21
+104766,0,1298545.929,0,21
+104767,0,1302183.012,0,21
+104768,1387.088885,1304624.431,0,21
+104769,1387.088858,1307755.072,0,21
+104770,1387.088809,1310572.067,0,21
+104771,1775.625912,1312536.449,0,21
+104772,1903.544682,1316676.738,0,21
+104773,2283.136656,1318476.853,0,21
+104774,2657.155213,1321281.072,0,21
+104775,2903.738822,1325103.282,0,21
+104776,3148.29584,1326477.319,0,21
+104777,3390.955402,1330512.522,0,21
+104778,3511.608697,1332471.559,0,21
+104779,3631.827829,1335653.21,0,21
+104780,3989.992426,1337339.303,0,21
+104781,3989.99219,1342151.557,0,21
+104782,4226.79079,1342409.551,0,21
+104783,4344.623596,1346801.475,0,21
+104784,4579.196814,1349191.837,0,21
+104785,4812.361751,1351673.096,0,21
+104786,4812.361397,1353638.472,0,21
+104787,5159.583773,1357915.526,0,21
+104788,5159.583361,1358980.678,0,21
+104789,5503.915957,1363848.081,0,21
+104790,5503.915481,1364117.369,0,21
+104791,5731.934661,1367601.176,0,21
+104792,5845.497516,1370915.41,0,21
+104793,6071.752716,1371834.552,0,21
+104794,6184.452757,1376704.691,0,21
+104795,6296.873195,1376667.976,0,21
+104796,6520.89089,1380405.785,0,21
+104797,6632.494619,1382999.197,0,21
+104798,6854.910222,1384901.609,0,21
+104799,6854.909441,1388424.982,0,21
+104800,7076.289586,1388911.462,0,21
+104801,7296.658532,1393939.438,0,21
+104802,7296.657631,1393612.017,0,21
+104803,7625.364837,1397143.008,0,21
+104804,7625.36384,1400687.199,0,21
+104805,7843.30132,1401033.111,0,21
+104806,7951.916895,1404518.201,0,21
+104807,8060.300519,1407059.352,0,21
+104808,8277.932449,1409359.693,0,21
+104809,8652.250348,1411186.028,0,21
+104810,8527.853212,1414518.292,0,21
+104811,8883.327255,1415398.407,0,21
+104812,9023.348486,1418252.461,0,21
+104813,9039.782103,1421827.246,0,21
+104814,9383.429079,1422817.633,0,21
+104815,9407.68288,1425445.123,0,21
+104816,9529.715665,1428055.122,0,21
+104817,9862.371186,1431069.961,0,21
+104818,9788.739316,1430195.013,0,21
+104819,10119.94449,1436329.531,0,21
+104820,10030.67316,1436734.07,0,21
+104821,11566.97906,1446647.315,0,21
+104822,13714.11805,1449920.606,0,21
+104823,13283.82879,1451689.1,0,21
+104824,14027.53915,1453022.761,0,21
+104825,14384.78406,1456193.325,0,21
+104826,14956.89877,1457309.752,0,21
+104827,15326.2222,1459343.025,0,21
+104828,15650.9407,1461800.894,0,21
+104829,16208.37597,1462859.104,0,21
+104830,16506.0547,1465112.359,0,21
+104831,16887.80962,1466687.392,0,21
+104832,17384.3683,1468167.952,0,21
+104833,17732.39677,1470711.093,0,21
+104834,18037.73237,1471770.544,0,21
+104835,18597.65423,1474416.08,0,21
+104836,18671.92156,1474480.787,0,21
+104837,19242.6692,1478277.763,0,21
+104838,19485.61044,1478696.373,0,21
+104839,19897.95109,1480648.754,0,21
+104840,20321.74976,1481574.522,0,21
+104841,20602.86933,1485213.634,0,21
+104842,20856.36056,1484417.115,0,21
+104843,21330.71058,1488317.579,0,21
+104844,21557.36546,1489105.956,0,21
+104845,21947.24334,1490486.817,0,21
+104846,22279.29918,1493064.644,0,21
+104847,22539.50248,1493016.16,0,21
+104848,22887.33383,1496986.416,0,21
+104849,23356.20017,1495759.554,0,21
+104850,23478.26465,1500137.497,0,21
+104851,23735.39855,1499983.251,0,21
+104852,24312.15848,1502277.028,0,21
+104853,24298.48109,1504053.133,0,21
+104854,24904.84533,1505117.639,0,21
+104855,25006.75646,1507119.433,0,21
+104856,25379.62502,1508056.173,0,21
+104857,25679.14802,1510449.976,0,21
+104858,25866.17923,1511633.872,0,21
+104859,26269.64527,1513617.05,0,21
+104860,26546.7339,1514197.814,0,21
+104861,26752.87877,1518029.367,0,21
+104862,26988.52144,1517159.756,0,21
+104863,27442.12463,1519497.694,0,21
+104864,27585.89849,1521536.414,0,21
+104865,27880.90897,1522011.482,0,21
+104866,28153.76849,1524927.952,0,21
+104867,28461.00098,1524692.679,0,21
+104868,28616.54455,1527786.097,0,21
+104869,29025.1495,1528919.622,808.593151,21
+104870,29282.05698,1529555.479,1726.411196,21
+104871,29484.92712,1532116.047,1424.10516,21
+104872,29727.79018,1533416.622,1726.481678,21
+104873,29956.10449,1535362.495,2026.039301,21
+104874,30374.41361,1535958.087,2323.137359,21
+104875,30412.584,1537337.578,2470.888773,21
+104876,30842.444,1539778.725,2618.128188,21
+104877,30881.18119,1540646.527,2911.065453,21
+104878,31256.71322,1542844.955,3202.191362,21
+104879,31534.77745,1543046.906,3347.189252,21
+104880,31747.94096,1545884.472,3491.793885,21
+104881,31934.88079,1546234.75,3801.365807,21
+104882,32297.99843,1548338.018,4344.004643,21
+104883,32297.99274,1549921.221,4391.012203,21
+104884,32647.42158,1550558.042,4893.941345,21
+104885,33018.9716,1550934.746,4913.23945,21
+104886,33094.16939,1553737.321,5383.721136,21
+104887,33280.30191,1553634.333,5552.586861,21
+104888,33515.01559,1554576.724,5870.179136,21
+104889,33738.13994,1555844.946,6047.185194,21
+104890,34132.03146,1556601.295,6483.175856,21
+104891,34169.64502,1557568.714,6538.649976,21
+104892,34421.6486,1559574.665,6972.235798,21
+104893,34660.07024,1558363.387,7146.927734,21
+104894,34984.70708,1561961.533,7458.556053,21
+104895,35195.88184,1562115.782,7769.147626,21
+104896,35339.81341,1562982.966,7924.450759,21
+104897,35361.53456,1563619.574,8251.371151,21
+104898,36064.86532,1565183.552,8541.746655,21
+104899,35809.96395,1564888.231,8578.061437,21
+104900,36325.76013,1567290.715,9146.535956,21
+104901,36253.81859,1567398.03,9191.508355,21
+104902,36851.76833,1569416.74,9613.815194,21
+104903,36708.44065,1569239.332,9784.090252,21
+104904,37112.68782,1571269.192,9954.098729,21
+104905,37238.11379,1571165.898,10390.95665,21
+104906,37546.72837,1573252.534,10776.39391,21
+104907,37392.02687,1573573.068,11193.42205,21
+104908,38175.73435,1574637.037,11192.1733,21
+104909,37821.88644,1575115.536,11644.36843,21
+104910,38434.0994,1576029.009,11982.76108,21
+104911,38449.31472,1578190.323,12222.38394,21
+104912,38867.42961,1578353.721,12522.7461,21
+104913,38722.61627,1579916.599,12857.50354,21
+104914,39277.59047,1579031.274,13096.29097,21
+104915,39346.22193,1581513.283,13377.0684,21
+104916,39534.04881,1582974.122,13911.42082,21
+104917,39681.438,1582073.838,14383.93183,21
+104918,40159.22445,1584503.78,14472.78674,21
+104919,40319.26068,1585376.215,14990.44739,21
+104920,40396.08923,1585942.848,15233.98361,21
+104921,40657.63865,1586056.186,15625.3787,21
+104922,40942.40215,1588244.405,15865.54595,21
+104923,41130.32004,1588751.212,16335.25491,21
+104924,41308.1457,1589285.123,16513.68486,21
+104925,41398.4907,1590791.028,16819.02849,21
+104926,41975.99026,1591652.167,17347.96968,21
+104927,41662.87293,1590983.608,17474.40696,21
+104928,42245.88989,1594480.748,17926.22404,21
+104929,42327.38027,1593590.76,18082.95236,21
+104930,42496.82885,1595511.271,19304.65686,21
+104931,42604.81597,1595251.429,21811.63019,21
+104932,42970.05378,1596746.513,21206.84934,21
+104933,43210.21679,1598105.168,22184.06222,21
+104934,43282.54895,1597871.89,22870.01156,21
+104935,43281.07092,1600109.369,23602.96552,21
+104936,43900.46188,1599971.512,24139.58093,21
+104937,43776.4676,1602069.775,24770.7958,21
+104938,44142.32787,1600508.439,25544.1928,21
+104939,44213.87721,1603556.146,25877.75183,21
+104940,44609.96857,1604196.303,29463.70588,21
+104941,0,0,0,21
+104942,0,0,0,21
+104943,0,0,0,21
+104944,0,3.474504409,0,21
+104945,0,0,1195440.27,21
+104946,336122.6226,110.4199991,0,21
+104947,0,0,0,21
+104948,0,0,0,21
+104949,0,0,0,21
+104950,0,0,0,21
+104951,0,295.2349252,0,21
+104952,0,0,0,21
+104953,0,0,0,21
+104954,0,0,0,21
+104955,0,0,0,21
+104956,0,0,0,21
+104957,0,0,0,21
+104958,0,3.595202921,0,21
+104959,0,0,0,21
+104960,0,32409.80087,0,21
+104961,0,3452.196035,0,21
+104962,0,4569.075789,0,21
+104963,0,14081.17384,0,21
+104964,0,10082.45795,0,21
+104965,0,11539.97378,0,21
+104966,0,12991.94415,0,21
+104967,0,12387.40804,0,21
+104968,0,12918.08497,0,21
+104969,0,13220.63401,0,21
+104970,0,13448.79976,0,21
+104971,0,13663.4811,0,21
+104972,0,13906.31755,0,21
+104973,0,14089.93641,0,21
+104974,0,14317.53766,0,21
+104975,0,14510.76454,0,21
+104976,0,14677.23063,0,21
+104977,0,14928.80105,0,21
+104978,0,15065.0195,0,21
+104979,0,15295.81341,1150313.763,21
+104980,0,15404.94923,0,21
+104981,337181.2126,15618.33856,0,21
+104982,0,15731.82506,0,21
+104983,0,15962.42556,0,21
+104984,0,16077.16296,0,21
+104985,0,16287.2413,0,21
+104986,0,16348.03493,0,21
+104987,0,16552.89759,0,21
+104988,0,16945.05913,0,21
+104989,0,16799.43856,0,21
+104990,0,0,0,21
+104991,0,0,0,21
+104992,0,0,0,21
+104993,0,53770.23735,0,21
+104994,0,1643.99569,0,21
+104995,0,17154.74226,0,21
+104996,0,20298.07606,0,21
+104997,0,17477.08393,0,21
+104998,0,17944.38072,0,21
+104999,0,18097.97818,0,21
+105000,0,18161.89735,0,15.6
+105001,0,18440.77883,0,15.6
+105002,0,18568.65311,0,15.6
+105003,0,18785.21851,0,15.6
+105004,0,18803.8382,0,15.6
+105005,0,19037.44888,0,15.6
+105006,0,19120.52933,0,15.6
+105007,0,19285.86974,0,15.6
+105008,0,19354.02085,0,15.6
+105009,0,19540.22234,0,15.6
+105010,0,286438.2334,0,15.6
+105011,0,20409.49037,0,15.6
+105012,0,63022.28344,0,15.6
+105013,0,91487.34518,1109156.201,15.6
+105014,0,103630.2418,0,15.6
+105015,0,86659.61022,0,15.6
+105016,337803.5299,92567.1969,0,15.6
+105017,0,93430.07976,0,15.6
+105018,0,94133.11519,0,15.6
+105019,0,359146.9322,0,15.6
+105020,0,95656.80561,0,15.6
+105021,0,96083.8472,0,15.6
+105022,0,96870.38458,0,15.6
+105023,0,76696.47932,0,15.6
+105024,0,76990.08421,0,15.6
+105025,0,77634.20831,0,15.6
+105026,0,148634.7806,0,15.6
+105027,0,88890.10911,0,15.6
+105028,0,99156.04958,0,15.6
+105029,0,375746.4176,0,15.6
+105030,0,106446.7645,0,15.6
+105031,0,108855.9785,0,15.6
+105032,0,109679.1955,0,15.6
+105033,0,110866.0578,0,15.6
+105034,0,111867.3712,0,15.6
+105035,0,113247.9582,0,15.6
+105036,0,114191.2328,0,15.6
+105037,0,115448.3323,0,15.6
+105038,0,380061.562,0,15.6
+105039,0,117596.9176,0,15.6
+105040,0,22651.84913,0,15.6
+105041,0,22658.78268,0,15.6
+105042,0,22801.78198,0,15.6
+105043,0,22827.6747,0,15.6
+105044,0,22917.0806,0,15.6
+105045,0,23011.22901,0,15.6
+105046,0,373030.7505,0,15.6
+105047,0,26821.12472,0,15.6
+105048,0,63725.12375,1071579.475,15.6
+105049,0,437775.1106,0,15.6
+105050,0,121500.4501,0,15.6
+105051,338135.3504,126530.8287,0,15.6
+105052,0,129695.1632,0,15.6
+105053,0,130375.4711,0,15.6
+105054,0,131378.5821,0,15.6
+105055,0,131666.603,0,15.6
+105056,0,109159.8118,0,15.6
+105057,0,109759.3497,0,15.6
+105058,0,110399.5526,0,15.6
+105059,0,191927.1237,0,15.6
+105060,0,387094.0969,0,15.6
+105061,0,128082.9689,0,15.6
+105062,0,149189.6354,0,15.6
+105063,0,141905.0352,0,15.6
+105064,0,144259.8114,0,15.6
+105065,0,145576.5555,0,15.6
+105066,0,147449.9672,0,15.6
+105067,0,148695.3426,0,15.6
+105068,0,150269.3886,0,15.6
+105069,0,416025.4759,0,15.6
+105070,0,153539.629,0,15.6
+105071,0,154722.0771,0,15.6
+105072,0,156124.4086,0,15.6
+105073,0,158034.0128,0,15.6
+105074,0,159177.4538,0,15.6
+105075,0,160504.8028,0,15.6
+105076,0,26535.45328,0,15.6
+105077,0,26689.46049,0,15.6
+105078,0,26807.96761,0,15.6
+105079,0,291456.922,0,15.6
+105080,0,474251.0607,0,15.6
+105081,0,52684.09924,0,15.6
+105082,0,149166.1927,0,15.6
+105083,0,202654.2595,1102129.23,15.6
+105084,0,170139.9414,0,15.6
+105085,0,175278.9094,0,15.6
+105086,0,177145.1978,0,15.6
+105087,338363.0648,178339.6745,0,15.6
+105088,0,179481.3626,0,15.6
+105089,0,152605.9553,0,15.6
+105090,0,418758.6224,0,15.6
+105091,0,235701.7918,0,15.6
+105092,0,167268.6823,0,15.6
+105093,0,183920.2104,0,15.6
+105094,0,190923.987,0,15.6
+105095,0,188598.6037,0,15.6
+105096,0,190198.8222,0,15.6
+105097,0,191706.8411,0,15.6
+105098,0,192951.9008,0,15.6
+105099,0,458414.4581,0,15.6
+105100,0,195198.8115,0,15.6
+105101,0,197251.6038,0,15.6
+105102,0,197752.2595,0,15.6
+105103,0,199412.1708,0,15.6
+105104,0,200775.285,0,15.6
+105105,0,201785.825,0,15.6
+105106,0,203180.7259,0,15.6
+105107,0,204517.0224,0,15.6
+105108,0,205681.4991,0,15.6
+105109,0,207086.0969,0,15.6
+105110,0,295857.9075,0,15.6
+105111,0,31263.00409,0,15.6
+105112,0,31317.64535,0,15.6
+105113,0,597341.0829,0,15.6
+105114,0,75817.75576,0,15.6
+105115,0,186111.2041,0,15.6
+105116,0,251252.3435,0,15.6
+105117,0,212859.2062,0,15.6
+105118,0,218194.0188,1061835.49,15.6
+105119,0,483994.8681,0,15.6
+105120,0,221522.3174,0,15.6
+105121,0,187866.9084,0,15.6
+105122,0,189685.5556,0,15.6
+105123,338606.8763,282781.8841,0,15.6
+105124,0,209076.2529,0,15.6
+105125,0,217933.4081,0,15.6
+105126,0,230997.0644,0,15.6
+105127,0,226224.5533,0,15.6
+105128,0,227646.8447,0,15.6
+105129,0,228846.0949,0,15.6
+105130,0,494432.5276,0,15.6
+105131,0,230821.0014,0,15.6
+105132,0,231557.7949,0,15.6
+105133,0,232700.4715,0,15.6
+105134,0,233575.0843,0,15.6
+105135,0,234428.6358,0,15.6
+105136,0,235775.2589,0,15.6
+105137,0,236228.431,0,15.6
+105138,0,237499.8906,0,15.6
+105139,0,502992.8113,0,15.6
+105140,0,238977.9345,0,15.6
+105141,0,240943.8897,0,15.6
+105142,0,240805.0138,0,15.6
+105143,0,34573.2525,0,15.6
+105144,0,34595.50086,0,15.6
+105145,0,34775.71715,0,15.6
+105146,0,715945.6593,0,15.6
+105147,0,129416.9156,0,15.6
+105148,0,163591.72,0,15.6
+105149,0,311041.7714,0,15.6
+105150,0,505298.7135,0,15.6
+105151,0,250679.2805,0,15.6
+105152,0,251494.7737,0,15.6
+105153,0,216859.0245,1025248.677,15.6
+105154,0,217620.9377,0,15.6
+105155,0,319146.3414,0,15.6
+105156,0,241781.2997,0,15.6
+105157,0,248179.7041,0,15.6
+105158,0,261993.4425,0,15.6
+105159,338767.5412,521621.7354,0,15.6
+105160,0,258511.8181,0,15.6
+105161,0,259048.6758,0,15.6
+105162,0,260211.4344,0,15.6
+105163,0,260866.7873,0,15.6
+105164,0,262203.2659,0,15.6
+105165,0,262221.499,0,15.6
+105166,0,263805.5933,0,15.6
+105167,0,264126.3513,0,15.6
+105168,0,530078.9354,0,15.6
+105169,0,265920.2939,0,15.6
+105170,0,267131.7978,0,15.6
+105171,0,267600.7227,0,15.6
+105172,0,268921.6663,0,15.6
+105173,0,269489.8504,0,15.6
+105174,0,270459.4379,0,15.6
+105175,0,271037.0467,0,15.6
+105176,0,37657.66314,0,15.6
+105177,0,301990.2928,0,15.6
+105178,0,37782.6874,0,15.6
+105179,0,825052.237,0,15.6
+105180,0,180118.6143,0,15.6
+105181,0,138862.2601,0,15.6
+105182,0,363607.7648,0,15.6
+105183,0,260234.5526,0,15.6
+105184,0,272339.7705,0,15.6
+105185,0,234370.9431,0,15.6
+105186,0,497719.0261,0,15.6
+105187,0,338144.9837,0,15.6
+105188,0,255264.7339,992135.5661,15.6
+105189,0,262550.456,0,15.6
+105190,0,270977.5376,0,15.6
+105191,0,266726.9559,0,15.6
+105192,0,265542.3799,0,15.6
+105193,0,264610.0634,0,15.6
+105194,0,263727.117,0,15.6
+105195,338830.0359,527583.2495,0,15.6
+105196,0,261652.1885,0,15.6
+105197,0,261303.2719,0,15.6
+105198,0,260236.7816,0,15.6
+105199,0,258971.053,0,15.6
+105200,0,258701.8166,0,15.6
+105201,0,257355.6347,0,15.6
+105202,0,256282.4467,0,15.6
+105203,0,256067.0399,0,15.6
+105204,0,518919.5069,0,15.6
+105205,0,253725.4824,0,15.6
+105206,0,252540.5707,0,15.6
+105207,0,252278.6261,0,15.6
+105208,0,250766.3875,0,15.6
+105209,0,34940.6913,0,15.6
+105210,0,34799.51037,0,15.6
+105211,0,34744.29005,0,15.6
+105212,0,748912.169,0,15.6
+105213,0,394057.3179,0,15.6
+105214,0,141788.7055,0,15.6
+105215,0,319449.4921,0,15.6
+105216,0,232768.5001,0,15.6
+105217,0,209132.7107,0,15.6
+105218,0,208201.8724,0,15.6
+105219,0,306933.6834,0,15.6
+105220,0,225733.2451,0,15.6
+105221,0,230043.7806,0,15.6
+105222,0,509057.6466,0,15.6
+105223,0,236462.6342,962130.748,15.6
+105224,0,236209.3509,0,15.6
+105225,0,234669.4349,0,15.6
+105226,0,234300.6783,0,15.6
+105227,0,232834.8872,0,15.6
+105228,0,232085.0419,0,15.6
+105229,0,230815.5347,0,15.6
+105230,0,229748.5559,0,15.6
+105231,338918.5562,493359.685,0,15.6
+105232,0,227908.8816,0,15.6
+105233,0,226638.2495,0,15.6
+105234,0,225922.7677,0,15.6
+105235,0,224520.7704,0,15.6
+105236,0,223587.6194,0,15.6
+105237,0,222815.1855,0,15.6
+105238,0,221363.9291,0,15.6
+105239,0,220590.0756,0,15.6
+105240,0,483803.8921,0,15.6
+105241,0,219817.7567,0,15.6
+105242,0,31335.07702,0,15.6
+105243,0,31369.78754,0,15.6
+105244,0,31428.82164,0,15.6
+105245,0,658840.9414,0,15.6
+105246,0,78172.98487,0,15.6
+105247,0,168318.6253,0,15.6
+105248,0,272028.4152,0,15.6
+105249,0,447495.3077,0,15.6
+105250,0,190729.0234,0,15.6
+105251,0,283460.6545,0,15.6
+105252,0,206699.8364,0,15.6
+105253,0,216508.7576,0,15.6
+105254,0,229085.261,0,15.6
+105255,0,222807.0957,0,15.6
+105256,0,223857.6496,0,15.6
+105257,0,224140.4873,0,15.6
+105258,0,489034.0092,934964.0582,15.6
+105259,0,224478.7156,0,15.6
+105260,0,226443.6825,0,15.6
+105261,0,226223.9922,0,15.6
+105262,0,227366.544,0,15.6
+105263,0,226984.6453,0,15.6
+105264,0,227713.7795,0,15.6
+105265,0,227263.6366,0,15.6
+105266,0,228152.3906,0,15.6
+105267,339016.9934,492568.8642,0,15.6
+105268,0,228484.6439,0,15.6
+105269,0,228699.9672,0,15.6
+105270,0,229022.5901,0,15.6
+105271,0,229153.2356,0,15.6
+105272,0,229387.1859,0,15.6
+105273,0,229832.796,0,15.6
+105274,0,229404.3044,0,15.6
+105275,0,32396.91073,0,15.6
+105276,0,296919.201,0,15.6
+105277,0,32396.90725,0,15.6
+105278,0,701571.9235,0,15.6
+105279,0,91430.77047,0,15.6
+105280,0,159679.607,0,15.6
+105281,0,259460.5151,0,15.6
+105282,0,191482.2687,0,15.6
+105283,0,295370.2502,0,15.6
+105284,0,217121.8795,0,15.6
+105285,0,489961.9274,0,15.6
+105286,0,239583.6591,0,15.6
+105287,0,232910.4626,0,15.6
+105288,0,233746.9719,0,15.6
+105289,0,234247.1482,0,15.6
+105290,0,233771.9836,0,15.6
+105291,0,235107.3048,0,15.6
+105292,0,234081.3927,0,15.6
+105293,0,234962.1734,910364.9964,15.6
+105294,0,499695.6029,0,15.6
+105295,0,235174.7719,0,15.6
+105296,0,235826.6065,0,15.6
+105297,0,235002.0743,0,15.6
+105298,0,236470.62,0,15.6
+105299,0,235908.4062,0,15.6
+105300,0,235982.8655,0,15.6
+105301,0,1394107.982,0,15.6
+105302,0,1126073.668,0,15.6
+105303,339044.6182,489927.5594,0,15.6
+105304,0,564838.6142,0,15.6
+105305,0,624789.7155,0,15.6
+105306,0,455129.5147,0,15.6
+105307,0,510353.0288,0,15.6
+105308,0,87962.34551,0,15.6
+105309,0,86416.37924,0,15.6
+105310,0,1146557.573,0,15.6
+105311,0,301165.4433,0,15.6
+105312,0,834166.8017,0,15.6
+105313,0,388022.3625,0,15.6
+105314,0,435259.6923,0,15.6
+105315,0,532344.2971,0,15.6
+105316,0,505366.5438,0,15.6
+105317,0,474431.5027,0,15.6
+105318,0,496447.3112,0,15.6
+105319,0,483982.263,0,15.6
+105320,0,485045.0491,0,15.6
+105321,0,748976.3039,0,15.6
+105322,0,484204.4142,0,15.6
+105323,0,482880.6826,0,15.6
+105324,0,482878.3685,0,15.6
+105325,0,480638.488,0,15.6
+105326,0,480175.9579,0,15.6
+105327,0,479891.4994,888108.0984,15.6
+105328,0,479745.575,0,15.6
+105329,0,478820.7724,0,15.6
+105330,0,743726.2342,0,15.6
+105331,0,465132.5524,0,15.6
+105332,0,464937.3199,0,15.6
+105333,0,465258.9904,0,15.6
+105334,0,463768.0417,0,15.6
+105335,0,464955.6571,0,15.6
+105336,0,463326.4578,0,15.6
+105337,0,831678.4138,0,15.6
+105338,339027.5333,504285.9183,0,15.6
+105339,0,728461.1133,0,15.6
+105340,0,80897.95527,0,15.6
+105341,0,87270.93852,0,15.6
+105342,0,1112526.436,0,15.6
+105343,0,287383.8111,0,15.6
+105344,0,537436.6608,0,15.6
+105345,0,384811.618,0,15.6
+105346,0,420026.8882,0,15.6
+105347,0,522033.9537,0,15.6
+105348,0,753790.7466,0,15.6
+105349,0,467462.1193,0,15.6
+105350,0,484665.4055,0,15.6
+105351,0,471163.0539,0,15.6
+105352,0,477448.2414,0,15.6
+105353,0,474995.1475,0,15.6
+105354,0,475114.2216,0,15.6
+105355,0,474906.8338,0,15.6
+105356,0,474898.6897,0,15.6
+105357,0,739199.9451,0,15.6
+105358,0,474802.9507,0,15.6
+105359,0,473996.2967,0,15.6
+105360,0,475382.2826,0,17.8
+105361,0,2599492.737,1022887.882,17.8
+105362,0,2573148.873,115456.6616,17.8
+105363,0,895123.5457,62343.6085,17.8
+105364,0,823373.8107,85996.72788,17.8
+105365,0,847787.5864,82336.46198,17.8
+105366,0,1463850.005,79062.25635,17.8
+105367,0,969513.2737,78683.99348,17.8
+105368,0,961585.5989,78317.79592,17.8
+105369,0,966337.0417,77905.04899,17.8
+105370,0,1048320.999,77653.83825,17.8
+105371,0,984939.0021,77265.65298,17.8
+105372,0,167529.1333,76941.75633,17.8
+105373,339093.4257,1283229.065,76621.93615,17.8
+105374,0,957671.2751,76334.17904,17.8
+105375,0,1226494.343,76072.75518,17.8
+105376,0,998899.6577,75747.1931,17.8
+105377,0,853818.1991,75494.51916,17.8
+105378,0,1416681.557,75187.09185,17.8
+105379,0,982328.915,74976.31065,17.8
+105380,0,968918.8821,74696.25878,17.8
+105381,0,981291.3311,74355.3137,17.8
+105382,0,977256.5776,74203.02167,17.8
+105383,0,972731.8221,73896.37851,17.8
+105384,0,1237898.634,73670.31943,17.8
+105385,0,971134.4933,73494.98652,17.8
+105386,0,970515.9992,73150.81196,17.8
+105387,0,967819.6064,72991.8184,17.8
+105388,0,968710.7961,72722.14838,17.8
+105389,0,964954.1058,72478.88629,17.8
+105390,0,965581.4843,73087.13095,17.8
+105391,0,963976.5678,40150.15303,17.8
+105392,0,961965.2034,39880.72894,17.8
+105393,0,1226667.509,39555.02928,17.8
+105394,0,960568.6978,39210.95052,17.8
+105395,0,960333.7995,888516.5073,17.8
+105396,0,958271.8467,49973.22561,17.8
+105397,0,958427.2057,66127.14489,17.8
+105398,0,956404.883,76080.3809,17.8
+105399,0,957864.7339,69002.12235,17.8
+105400,0,919213.5359,69601.20887,17.8
+105401,0,919454.1298,69384.8249,17.8
+105402,0,1002995.017,69226.38074,17.8
+105403,0,143670.8033,69066.31916,17.8
+105404,0,158123.7751,68876.87226,17.8
+105405,0,1243459.79,404516.6298,17.8
+105406,0,1103013.416,130317.0615,17.8
+105407,0,820077.4901,226821.2246,17.8
+105408,339086.4115,870872.8,237856.8781,17.8
+105409,0,1015877.827,214483.8887,17.8
+105410,0,949351.8128,221694.8316,17.8
+105411,0,940231.9745,223162.5599,17.8
+105412,0,952733.5545,224620.69,17.8
+105413,0,1213187.514,225684.1015,17.8
+105414,0,947840.7813,227772.2126,17.8
+105415,0,945658.3925,228468.2329,17.8
+105416,0,947766.5921,230109.922,17.8
+105417,0,945007.2506,231593.604,17.8
+105418,0,946791.5355,232651.5943,17.8
+105419,0,1312243.568,234390.2183,17.8
+105420,0,945371.6633,235455.4194,20
+105421,25787.38197,2871750.953,1651422.151,20
+105422,8103.595224,2179485.388,635693.8276,20
+105423,42379.47203,729888.9191,106438.9406,20
+105424,61749.15819,1040423.669,239109.0831,20
+105425,78372.77787,1292654.218,383291.6947,20
+105426,60517.32982,1108985.867,268272.9151,20
+105427,69863.62851,1124801.547,286156.6044,20
+105428,85746.64614,1122738.552,288885.3724,20
+105429,76032.28114,1384927.55,289157.182,20
+105430,79428.28656,1119155.107,291331.4672,20
+105431,79731.64752,1115135.667,292636.544,20
+105432,80431.48486,1116217.155,293171.8149,20
+105433,80222.95029,1111228.068,294991.9371,20
+105434,80848.37015,1110726.18,295593.0512,20
+105435,86084.10959,1108079.415,297002.7593,20
+105436,85453.0666,1108246.715,297842.1011,20
+105437,85707.70873,1368146.167,299173.2802,20
+105438,86563.48393,1103270.34,300977.3953,20
+105439,87048.29766,1101004.102,301101.6249,20
+105440,87535.82218,1100491.436,303153.3831,20
+105441,88041.54669,1099204.46,303849.9998,20
+105442,88532.71329,1096868.679,304636.2756,20
+105443,88816.02701,1095539.221,306227.8131,20
+105444,89452.3407,1095813.456,307131.5779,20
+105445,89807.43396,1356108.586,308499.709,20
+105446,90482.39175,1092814.059,309071.2202,20
+105447,90536.41895,1090399.992,310599.5694,20
+105448,91120.67025,1091501.035,311595.1475,20
+105449,91683.70327,1087736.885,312272.2247,20
+105450,91898.99483,1087614.309,313272.1592,20
+105451,92438.66546,1086104.305,315154.1201,20
+105452,93173.88883,1087138.073,315089.5899,20
+105453,92855.6232,1347431.95,316809.5397,20
+105454,93813.80108,1083779.434,317337.2109,20
+105455,94018.29603,1082217.426,318657.9944,20
+105456,94514.95677,1083278.89,319756.5132,20
+105457,94621.80084,1081461.052,321037.8683,20
+105458,95292.08429,1079447.51,322424.5554,20
+105459,95597.35462,1080496.487,323488.4357,20
+105460,95962.51726,1078983.444,324063.5539,20
+105461,96134.22756,1341743.524,325235.1463,20
+105462,96889.96895,1076706.778,326435.4156,20
+105463,96930.05413,1077658.185,326898.4835,20
+105464,97323.11859,1076419.38,329048.7432,20
+105465,97812.70002,1075764.43,328793.6031,20
+105466,97951.45979,1073725.546,330689.4331,20
+105467,98319.99728,1075544.95,331473.5725,20
+105468,98805.62175,1073550.571,332087.5428,20
+105469,99223.80783,1336564.877,333997.0523,20
+105470,99123.41502,1071530.573,333804.9361,20
+105471,99874.98071,1074263.369,335385.0022,20
+105472,99901.21811,1069855.779,336571.8616,20
+105473,100318.3273,1070615.952,336392.2519,20
+105474,100755.0168,1072150.572,338414.8911,20
+105475,100981.3276,1069315.265,338790.803,20
+105476,101131.7788,1070020.483,339878.0011,20
+105477,101479.3672,1332321.191,340866.6685,20
+105478,101847.1782,1068741.93,340851.4211,20
+105479,102319.205,1067491.508,342720.9959,20
+105480,102258.3131,1069226.791,342993.5054,21
+105481,94386.91691,2398879.234,329272.4556,21
+105482,93442.78826,2395276.366,326815.3217,21
+105483,93559.19191,2392748.577,327538.7365,21
+105484,93597.25999,2682959.77,328386.1288,21
+105485,93671.90071,2390761.804,328228.481,21
+105486,93567.49383,2385121.625,328781.2924,21
+105487,93627.17388,2387870.288,329413.2118,21
+105488,94027.08208,2383861.044,329870.7823,21
+105489,93751.45984,2382288.552,330665.5736,21
+105490,94119.34147,2382569.932,330325.2317,21
+105491,94088.5394,2380647.003,331843.4604,21
+105492,94070.07978,2378530.676,332019.8418,21
+105493,94471.94396,2378243.772,332171.1222,21
+105494,94214.35786,2376886.832,333067.5242,21
+105495,94453.17367,2374466.726,333536.1683,21
+105496,94563.31986,2375686.353,333774.0979,21
+105497,94755.4045,2373147.346,334577.8024,21
+105498,94419.9402,2371706.723,334854.3149,21
+105499,95233.41641,2370678.491,335564.1095,21
+105500,94818.62265,2370226.461,336154.2372,21
+105501,94930.21442,2368995.742,336107.1667,21
+105502,95285.51182,2367627.842,337481.0938,21
+105503,95258.06912,2366667.217,337128.5355,21
+105504,95235.93756,2366332.283,338825.9924,21
+105505,95246.50568,2364489.069,339300.4622,21
+105506,95618.11928,2364635.272,340773.4651,21
+105507,95580.12851,2362878.974,340767.2237,21
+105508,95720.02696,2361519.91,342664.1615,21
+105509,95894.08844,2361852.488,342974.6851,21
+105510,95630.84046,2361851.38,343493.2839,21
+105511,96063.35622,2361446.664,345217.1666,21
+105512,96137.53609,2360546.911,345705.9889,21
+105513,95904.18946,2358911.086,346879.1607,21
+105514,94388.42685,2359681.877,348071.2495,21
+105515,93530.67792,2358431.612,348291.8997,21
+105516,93585.20324,2356421.248,349457.2909,21
+105517,92942.79324,2357516.331,351244.0781,21
+105518,92222.51119,2356144.727,350941.1605,21
+105519,92400.3229,2355178.151,352912.2907,21
+105520,91895.89845,2354294.334,353054.0169,21
+105521,91579.2489,2354481.769,355117.3119,21
+105522,91375.69343,2352736.221,354614.2161,21
+105523,90763.60203,2353166.752,357167.755,21
+105524,90775.90097,2351717.538,356861.5292,21
+105525,90491.6557,2350992.45,358833.1067,21
+105526,89948.08329,2350480.518,359267.5964,21
+105527,89749.97822,2349775.573,360187.5258,21
+105528,89320.5674,2350835.688,361488.9439,21
+105529,89230.44714,2347176.908,362237.0835,21
+105530,88730.78658,2348522.109,363179.7889,21
+105531,88344.87212,2347251.472,364532.3523,21
+105532,88216.27323,2346458.833,365130.6889,21
+105533,87661.22079,2346342.524,366690.456,21
+105534,87463.21171,2345612.825,355538.8874,21
+105535,86942.02566,2344499.857,354544.779,21
+105536,86857.35125,2343922.286,354793.1146,21
+105537,86250.45524,2343715.373,355248.3689,21
+105538,86141.11245,2343718.774,354588.5471,21
+105539,85608.79816,2341339.354,355477.7506,21
+105540,85386.29056,2343356.076,355329.104,21
+105541,33509.00992,2113410.675,239382.4786,21
+105542,31866.22534,2090256.276,230926.5922,21
+105543,30943.75464,2084990.521,228446.9869,21
+105544,30503.83301,2081048.674,225445.8063,21
+105545,29866.86037,2074073.226,222941.7381,21
+105546,29349.79739,2071173.795,220657.5119,21
+105547,28823.09183,2065614.188,218132.608,21
+105548,28577.01532,2060874.68,216071.2698,21
+105549,27779.54938,2056401.113,212392.547,21
+105550,27544.96893,2052812.003,210146.3231,21
+105551,26918.46312,2048999.415,207296.9344,21
+105552,26675.9772,2042941.179,205607.9642,21
+105553,26093.24291,2040388.41,202573.7079,21
+105554,25622.02195,2036372.653,200191.5312,21
+105555,25395.59492,2030823.787,197979.2852,21
+105556,24850.95975,2028685.916,195544.9229,21
+105557,24410.54087,2023250.288,192920.7056,21
+105558,23924.35316,2020218.739,190940.7007,21
+105559,23624.38018,2015848.771,188539.3977,21
+105560,23122.30638,2012823.526,186601.7048,21
+105561,22736.06528,2008764.084,184389.5797,21
+105562,22327.99176,1969140.111,182127.0007,21
+105563,21832.93674,1960814.126,180254.7274,21
+105564,21509.90926,1951790.466,178221.454,21
+105565,21133.80906,1946777.046,175786.4135,21
+105566,20605.12252,1940255.703,174136.1141,21
+105567,20317.96185,1932575.612,171769.7356,21
+105568,19785.62112,1927148.068,170028.4574,21
+105569,19504.58849,1920359.451,168232.551,21
+105570,18995.50918,1915653.742,166941.2196,21
+105571,18547.84983,1908014.054,164766.6178,21
+105572,17760.82308,1902331.505,163093.2415,21
+105573,17226.44682,1897283.464,161138.5579,21
+105574,16504.9952,1891803.719,159291.1467,21
+105575,15843.29266,1885335.475,157360.8614,21
+105576,14406.98642,1879994.08,155556.9878,21
+105577,13302.89641,1875245.386,154243.5394,21
+105578,12556.98743,1869549.824,152138.4423,21
+105579,11742.69554,1863882.63,150836.4072,21
+105580,11222.64068,1858930.242,148927.9374,21
+105581,11138.43558,1852975.281,147145.5357,21
+105582,10802.1223,1847805.184,145925.0497,21
+105583,10472.58804,1842938.293,143835.2297,21
+105584,10478.15741,1837475.789,142498.3232,21
+105585,10075.81561,1834108.4,140262.1291,21
+105586,9956.516782,1826895.617,139180.0427,21
+105587,9759.12356,1822278.628,137135.611,21
+105588,9550.157662,1818277.345,135337.5398,21
+105589,9208.48159,1812362.845,134009.3474,21
+105590,9128.943354,1807252.282,132968.6091,21
+105591,8781.301311,1801932.659,131313.2588,21
+105592,8708.433112,1798578.525,130247.1761,21
+105593,8318.653394,1792052.934,129366.2175,21
+105594,8169.168625,1788157.22,127449.4761,21
+105595,7937.82628,1782139.324,126919.6239,21
+105596,7813.561593,1778234.398,125492.8036,21
+105597,7689.00157,1773244.894,123956.0336,21
+105598,7451.313304,1767257.713,122266.0187,21
+105599,7313.507629,1764198.2,120498.8555,21
+105600,7301.131881,1757929.716,119706.2973,21
+105601,7061.623425,1750767.063,118790.9318,21
+105602,6922.761198,2030370.191,117448.0053,21
+105603,6693.824625,1735119.214,116498.2898,21
+105604,6528.914491,1728973.414,115354.0561,21
+105605,6438.677194,1720686.65,114289.0546,21
+105606,6272.941282,1713662.047,113165.8678,21
+105607,6028.150101,1705325.136,112254.9463,21
+105608,5898.916656,1699650.419,110890.2242,21
+105609,5756.647801,1690680.685,110279.0014,21
+105610,5639.304198,1683375.256,109005.2668,21
+105611,5365.384304,1676601.26,107634.4151,21
+105612,5234.14717,1668765.437,107089.7659,21
+105613,5102.48559,1660896.914,105773.4425,21
+105614,4850.660713,1654552.658,104725.461,21
+105615,4812.143217,1932600.414,103554.8673,21
+105616,4571.367083,1636797.053,102739.2584,21
+105617,4424.495187,1630563.771,101830.335,21
+105618,4290.007467,1622481.233,100744.0609,21
+105619,4019.456841,1615822.199,99678.70214,21
+105620,3870.324619,1607353.057,98730.24512,21
+105621,3870.324862,1599770.474,97835.23595,21
+105622,3471.482843,1593573.835,96646.77508,21
+105623,3445.245064,1586380.058,95766.18339,21
+105624,3193.649125,1579730.107,94824.69595,21
+105625,3154.100876,1572728.755,93673.9376,21
+105626,2886.44589,1567413.076,93106.95787,21
+105627,2744.803771,1559846.973,91571.13105,21
+105628,2602.279949,1839078.025,91137.58621,21
+105629,2300.929639,1547179.599,90030.40461,21
+105630,2300.929787,1538867.553,88958.13257,21
+105631,2141.836342,1533914.688,88393.92874,21
+105632,1859.95395,1525812.836,87103.17911,21
+105633,1832.969554,1520945.348,86367.54482,21
+105634,1544.35492,1514010.641,85438.20888,21
+105635,1530.791575,1508617.604,84421.68788,21
+105636,1217.935165,1501841.763,83777.546,21
+105637,1204.284243,1496620.76,82451.01943,21
+105638,1038.736477,1489839.394,81840.10455,21
+105639,1011.28472,1483993.856,80936.81746,21
+105640,997.5131353,1477345.109,79822.52594,21
+105641,983.7106417,1756653.008,78498.86023,21
+105642,956.0115806,1465257.696,77533.66643,21
+105643,942.1144479,1459536.618,76820.32166,21
+105644,928.1850986,1452841.894,76018.14957,21
+105645,900.2282607,1446755.901,75088.33431,21
+105646,886.200115,1440895.504,74546.99738,21
+105647,872.1382829,1434435.95,73467.63844,21
+105648,843.9118942,1428531.859,72736.49328,21
+105649,843.9119591,1421617.866,72186.04307,21
+105650,815.5458963,1415650.123,70969.56177,21
+105651,787.036601,1409713.471,70490.35662,21
+105652,787.0366566,1402617.83,69682.97358,21
+105653,758.3803053,1396446.793,68747.18287,21
+105654,743.9957389,1674151.14,68000.63797,21
+105655,729.5728436,1383999.008,67293.77985,21
+105656,700.6097454,1377117.586,66493.46305,21
+105657,700.6097883,1371330.17,65589.67207,21
+105658,656.8627993,1363885.146,65047.39859,21
+105659,656.8628366,1358387.4,64082.47402,21
+105660,642.1972805,1351288.481,63459.97573,21
+105661,568.211433,1346087.079,62259.5671,21
+105662,583.0990453,1341355.127,61644.55928,21
+105663,523.2627671,1338029.226,61024.47417,21
+105664,538.294337,1333735.204,60313.90779,21
+105665,493.0482821,1329551.638,59910.47332,21
+105666,477.8629654,1325550.384,59078.56229,21
+105667,462.6238939,1321977.529,58560.17031,21
+105668,431.9788501,1317137.497,57941.6869,21
+105669,416.5698234,1313930.067,57417.66731,21
+105670,385.5702313,1309323.432,56892.87479,21
+105671,385.5702357,1305486.238,56411.81734,21
+105672,338.587218,1301386.262,55821.98451,21
+105673,338.5872207,1297282.747,55297.72052,21
+105674,322.7880668,1293061.075,54889.92023,21
+105675,274.9366975,1289106.653,54236.03265,21
+105676,274.9366985,1285260.675,53794.77688,21
+105677,242.622095,1564292.545,53214.08864,21
+105678,209.9347573,1276770.484,52859.21016,21
+105679,209.9347573,1272766.975,52190.62745,21
+105680,168.4764428,1268859.325,51741.17366,21
+105681,160.0948311,1264553.939,51258.75261,21
+105682,117.6586073,1260532.668,50745.73318,21
+105683,109.0519421,1256720.065,50255.28068,21
+105684,74.13117608,1252517.765,49723.38961,21
+105685,65.2551314,1248432.61,49264.54953,21
+105686,28.92489085,1244334.919,48689.69772,21
+105687,9.970949434,1240565.2,48270.73279,21
+105688,0,1236523.153,47792.52145,21
+105689,0,1232390.388,47155.07018,21
+105690,0,1228747.106,8736.138883,21
+105691,0,1225028.015,8308.175642,21
+105692,0,1220491.151,8175.073633,21
+105693,0,1217267.828,8006.95842,21
+105694,0,1212803.499,7827.74025,21
+105695,0,1209311.197,7658.47993,21
+105696,0,1205763.515,7383.837732,21
+105697,0,1200967.42,7226.82754,21
+105698,0,1197879.386,7157.987206,21
+105699,0,1193838.329,6754.771056,21
+105700,0,1189309.82,6711.317192,21
+105701,0,1186295.608,6513.676689,21
+105702,0,1181726.162,6400.132738,21
+105703,0,1178378.709,6047.40323,21
+105704,0,1173925.472,5932.537746,21
+105705,0,1170759.505,5839.862932,21
+105706,0,1166127.893,5555.284134,21
+105707,0,1162709.493,5402.928662,21
+105708,0,1158713.025,5224.999499,21
+105709,0,1154930.973,5021.276219,21
+105710,0,1150988.302,4892.014666,21
+105711,0,1147026.553,4685.490861,21
+105712,0,1143527.816,4542.379462,21
+105713,0,1139334.53,4335.43986,21
+105714,0,1135683.181,4054.192175,21
+105715,0,1131653.193,4106.072364,21
+105716,0,1127899.638,3708.203094,21
+105717,0,1124610.205,3625.05711,21
+105718,0,1121874.678,3487.606414,21
+105719,0,1119459.615,3274.668596,21
+105720,0,1116892.602,3111.770711,21
+105721,0,1116833.335,3390.386339,21
+105722,0,1115151.724,3112.276421,21
+105723,0,1113615.226,3153.352246,21
+105724,0,1111940.897,2743.988585,21
+105725,0,1110991.337,2811.451976,21
+105726,0,1108895.352,2500.302722,21
+105727,0,1107506.016,2331.190269,21
+105728,0,1106219.566,2255.677584,21
+105729,0,1104270.003,1945.425741,21
+105730,0,1102989.361,1894.655476,21
+105731,0,1101285.718,1700.633006,21
+105732,0,1099973.341,1662.476217,21
+105733,0,1096624.388,1571.87242,21
+105734,0,1095499.688,1585.544364,21
+105735,0,1093441.862,1481.146301,21
+105736,0,1092639.893,1454.875151,21
+105737,0,1090517.823,1415.278248,21
+105738,0,1089438.593,1348.426424,21
+105739,0,1087835.222,1294.21927,21
+105740,0,1086553.255,1265.522501,21
+105741,0,1085295.121,1225.361482,21
+105742,0,1083658.806,1211.956836,21
+105743,0,1082332.506,1198.529801,21
+105744,0,1081057.558,1171.572919,21
+105745,0,1079434.831,1158.078233,21
+105746,0,1078252.006,1130.987024,21
+105747,0,1076824.17,1103.804808,21
+105748,0,1075111.309,1103.835492,21
+105749,0,1074236.566,1076.559961,21
+105750,0,1072552.99,1049.190395,21
+105751,0,1071461.664,1035.483391,21
+105752,0,1069664.083,1021.7517,21
+105753,0,1068721.09,980.3572353,21
+105754,0,1067107.768,980.3813213,21
+105755,0,1065846.264,952.668051,21
+105756,0,1064384.643,938.7843527,21
+105757,0,1063272.792,896.9333832,21
+105758,0,1061725.341,896.9534735,21
+105759,0,1060404.863,868.9267844,21
+105760,0,1060219.858,854.8819818,21
+105761,0,1058576.514,826.6908694,21
+105762,0,1057152.662,812.561534,21
+105763,0,1056387.194,784.2001591,21
+105764,0,1054498.039,769.9832616,21
+105765,0,1053273.607,741.4451492,21
+105766,0,1052126.061,727.1373158,21
+105767,0,1050870.438,698.4152387,21
+105768,0,1049571.626,669.5662468,21
+105769,0,1047983.385,655.098298,21
+105770,0,1046878.961,640.5967582,21
+105771,0,1045362.523,611.4813085,21
+105772,0,1044291.768,596.8759049,21
+105773,0,1042922.561,567.5486287,21
+105774,0,1041576.27,567.5565416,21
+105775,0,1040173.417,523.2826554,21
+105776,0,1039374.313,508.4517778,21
+105777,0,1037484.63,493.580523,21
+105778,0,1036603.554,478.6679883,21
+105779,0,1034852.141,448.7101136,21
+105780,0,1033829.187,433.667911,21
+105781,0,1049114.456,869.2399713,21
+105782,0,1048524.401,855.189699,21
+105783,0,1047983.471,855.2079382,21
+105784,0,1047596.557,812.8533514,21
+105785,0,1047257.601,812.8697967,21
+105786,0,1046498.103,798.7057236,21
+105787,0,1045920.178,756.0072007,21
+105788,0,1045142.648,756.0213856,21
+105789,0,1044903.214,741.7382623,21
+105790,0,1044273.517,698.677494,21
+105791,0,1043914.391,698.6895732,21
+105792,0,1043996.002,684.2809317,21
+105793,0,1043200.814,640.8365892,21
+105794,0,1042931.897,640.84672,21
+105795,0,1042458.59,626.3049585,21
+105796,0,1041749.252,597.1077852,21
+105797,0,1041890.099,567.7683032,21
+105798,0,1040879.112,567.7762226,21
+105799,0,1040666.914,538.2885809,21
+105800,0,1040267.47,523.4909189,21
+105801,0,1039519.24,508.6537309,21
+105802,0,1039408.659,478.8515495,21
+105803,0,1044479.053,463.8906568,21
+105804,0,1044756.288,448.8865035,21
+105805,0,1044064.671,418.7395684,21
+105806,0,1045779,418.7438346,21
+105807,0,1045626.52,373.1685959,21
+105808,0,1046592.225,373.1719724,21
+105809,0,1046764.786,357.8825888,21
+105810,0,1047145.656,311.6849726,21
+105811,0,1048052.691,327.143299,21
+105812,0,1048026.725,296.1751233,21
+105813,0,1044641.661,280.6014682,21
+105814,0,1042551.556,264.9637448,21
+105815,0,1043208.677,264.9654306,21
+105816,0,1042366.994,233.4836628,21
+105817,0,1041637.452,217.6339368,21
+105818,0,1040837.113,217.6350681,21
+105819,0,1040274.09,185.6930592,21
+105820,0,1040104.52,185.6938794,21
+105821,0,1038642.189,169.5915148,21
+105822,0,1038444.329,153.39223,21
+105823,0,1037977.248,137.0836562,21
+105824,0,1037271.302,120.6681084,21
+105825,0,1036938.142,104.1163294,21
+105826,0,1036115.626,104.1168415,21
+105827,0,1035783.829,79.01027437,21
+105828,0,1034805.315,70.55397455,21
+105829,0,1033965.208,53.48270371,21
+105830,0,1033952.848,70.55417849,21
+105831,0,1032604.173,70.55429716,21
+105832,0,1031912.409,53.48294539,21
+105833,0,1031589.49,36.15108063,21
+105834,0,1030286.335,18.45031051,21
+105835,0,1029768.6,18.45031804,21
+105836,0,1029159.658,0,21
+105837,0,1027922.477,0,21
+105838,0,1026855.889,0,21
+105839,0,1025901.684,0,21
+105840,0,1025223.302,0,21
+105841,0,994762.5638,0,21
+105842,0,992558.8527,0,21
+105843,0,990821.6782,0,21
+105844,0,989420.5914,0,21
+105845,0,987519.1711,0,21
+105846,0,985584.1735,0,21
+105847,0,984163.2645,0,21
+105848,0,982226.495,0,21
+105849,0,980326.2176,0,21
+105850,0,979023.1975,0,21
+105851,0,976806.0594,0,21
+105852,0,975148.1165,0,21
+105853,0,973629.5817,0,21
+105854,0,971399.1141,0,21
+105855,0,969936.1,0,21
+105856,0,968369.1201,0,21
+105857,0,966216.7765,0,21
+105858,0,964627.8,0,21
+105859,0,963063.6219,0,21
+105860,0,961280.1996,0,21
+105861,0,959154.1993,0,21
+105862,0,957943.6025,0,21
+105863,0,955937.0287,0,21
+105864,0,954538.6654,0,21
+105865,0,952550.099,0,21
+105866,0,951078.386,0,21
+105867,0,949049.6466,0,21
+105868,0,947549.491,0,21
+105869,0,945976.9123,0,21
+105870,0,944315.3269,0,21
+105871,0,942301.4297,0,21
+105872,0,941349.1444,0,21
+105873,0,939729.8786,0,21
+105874,0,937738.134,0,21
+105875,0,936742.8034,0,21
+105876,0,934811.2177,0,21
+105877,0,933498.4404,0,21
+105878,0,932234.5975,0,21
+105879,0,930364.0205,0,21
+105880,0,929162.643,0,21
+105881,0,927742.6586,0,21
+105882,0,926471.4181,0,21
+105883,0,924644.2115,0,21
+105884,0,923718.7889,0,21
+105885,0,922178.4028,0,21
+105886,0,920778.6911,0,21
+105887,0,919779.2297,0,21
+105888,0,918038.0034,0,21
+105889,0,917153.4681,0,21
+105890,0,915231.6928,0,21
+105891,0,914670.6348,0,21
+105892,0,913242.2416,0,21
+105893,0,911507.9736,0,21
+105894,0,911006.8247,0,21
+105895,0,909180.4353,0,21
+105896,0,908527.5309,0,21
+105897,0,907050.0656,0,21
+105898,0,905799.5705,0,21
+105899,0,905129.2567,0,21
+105900,0,904522.0642,0,21
+105901,0,907964.8383,0,21
+105902,0,905743.3413,0,21
+105903,0,903819.9185,0,21
+105904,0,901510.8235,0,21
+105905,0,900199.8127,0,21
+105906,0,897305.7681,0,21
+105907,0,896254.1017,0,21
+105908,0,893263.572,0,21
+105909,0,892219.7525,0,21
+105910,0,889145.5012,0,21
+105911,0,887933.9228,0,21
+105912,0,885778.6645,0,21
+105913,0,883373.8367,0,21
+105914,0,882149.5448,0,21
+105915,0,879464.129,0,21
+105916,0,877921.0245,0,21
+105917,0,875916.0488,0,21
+105918,0,874041.9105,0,21
+105919,0,872188.8156,0,21
+105920,0,870250.7821,0,21
+105921,0,868004.7371,0,21
+105922,0,866813.9087,0,21
+105923,0,864524.4705,0,21
+105924,0,862707.3162,0,21
+105925,0,861095.8015,0,21
+105926,0,858928.2183,0,21
+105927,0,857627.388,0,21
+105928,0,855376.94,0,21
+105929,0,854067.8125,0,21
+105930,0,851890.8367,0,21
+105931,0,850432.1205,0,21
+105932,0,849092.7428,0,21
+105933,0,846674.685,0,21
+105934,0,845703.0409,0,21
+105935,0,844032.9386,0,21
+105936,0,842036.0631,0,21
+105937,0,841098.8624,0,21
+105938,0,839033.7442,0,21
+105939,0,837713.5056,0,21
+105940,0,836112.0092,0,21
+105941,0,834480.32,0,21
+105942,0,832720.2486,0,21
+105943,0,831807.3356,0,21
+105944,0,829463.1466,0,21
+105945,0,828762.872,0,21
+105946,0,826630.4741,0,21
+105947,0,825353.8666,0,21
+105948,0,823678.0498,0,21
+105949,0,822257.3376,0,21
+105950,0,820744.3014,0,21
+105951,0,819098.8216,0,21
+105952,0,817773.4877,0,21
+105953,0,815981.257,0,21
+105954,0,814548.811,0,21
+105955,0,812953.2055,0,21
+105956,0,811553.1572,0,21
+105957,0,809710.3583,0,21
+105958,0,808650.7171,0,21
+105959,0,806634.8936,0,21
+105960,0,805290.0326,0,21
+105961,0,799611.4004,0,21
+105962,0,799034.4297,0,21
+105963,0,798240.4934,0,21
+105964,0,797830.6861,0,21
+105965,0,796895.3361,0,21
+105966,0,796461.9202,0,21
+105967,0,795730.9439,0,21
+105968,0,795003.7135,0,21
+105969,0,794153.0873,0,21
+105970,0,794070.6387,0,21
+105971,0,792740.5085,0,21
+105972,0,792297.5614,0,21
+105973,0,791548.9506,0,21
+105974,0,790872.4711,0,21
+105975,0,789812.1681,0,21
+105976,0,789687.3476,0,21
+105977,0,788168.2744,0,21
+105978,0,788041.0982,0,21
+105979,0,786859.3479,0,21
+105980,0,786467.1293,0,21
+105981,0,785378.6223,0,21
+105982,0,784677.6791,0,21
+105983,0,783747.0904,0,21
+105984,0,782939.8535,0,21
+105985,0,781989.1128,0,21
+105986,0,781509.0979,0,21
+105987,0,780407.3792,0,21
+105988,0,779473.3454,0,21
+105989,0,778632.8759,0,21
+105990,0,777851.097,0,21
+105991,0,777253.5393,0,21
+105992,0,776449.235,0,21
+105993,0,775282.2632,0,21
+105994,0,775059.3077,0,21
+105995,0,773899.0834,0,21
+105996,0,773281.6451,0,21
+105997,0,772717.5075,0,21
+105998,0,771451.2773,0,21
+105999,0,771008.1671,0,21
+106000,0,770092.3754,0,21
+106001,0,769389.5192,0,21
+106002,0,768539.9973,0,21
+106003,0,767785.9131,0,21
+106004,0,766742.1458,0,21
+106005,0,766247.8981,0,21
+106006,0,765120.4963,0,21
+106007,0,764629.2766,0,21
+106008,0,763527.2687,0,21
+106009,0,762990.2227,0,21
+106010,0,762106.4816,0,21
+106011,0,760997.0316,0,21
+106012,0,760664.6957,0,21
+106013,0,759305.6693,0,21
+106014,0,759188.6491,0,21
+106015,0,757646.751,0,21
+106016,0,757334.9828,0,21
+106017,0,756352.7424,0,21
+106018,0,755637.3156,0,21
+106019,0,754668.615,0,21
+106020,0,753863.6158,0,21
+106021,0,752802.6948,0,21
+106022,0,752730.7427,0,21
+106023,0,752425.6473,0,21
+106024,0,752303.5402,0,21
+106025,0,751871.3637,0,21
+106026,0,751883.4203,0,21
+106027,0,751691.5647,0,21
+106028,0,751425.0874,0,21
+106029,0,751141.7904,0,21
+106030,0,751435.9398,0,21
+106031,0,750665.0559,0,21
+106032,0,751158.898,0,21
+106033,0,750630.8905,0,21
+106034,0,750564.7986,0,21
+106035,0,750567.9393,0,21
+106036,0,750635.2135,0,21
+106037,0,750049.5617,0,21
+106038,0,750522.1506,0,21
+106039,0,750088.6169,0,21
+106040,0,750427.4514,0,21
+106041,0,750273.5405,0,21
+106042,0,750389.5398,0,21
+106043,0,750217.5342,0,21
+106044,0,750628.3188,0,21
+106045,0,751080.2483,0,21
+106046,0,751033.5836,0,21
+106047,0,752368.2629,0,21
+106048,0,752903.8349,0,21
+106049,0,753922.1049,0,21
+106050,0,754519.7871,0,21
+106051,0,755642.2492,0,21
+106052,0,757106.3357,0,21
+106053,0,757629.7732,0,21
+106054,0,759291.8983,0,21
+106055,0,760104.2072,0,21
+106056,0,761530.1939,0,21
+106057,0,762738.5782,0,21
+106058,0,763888.1135,0,21
+106059,0,765358.8455,0,21
+106060,0,766305.43,0,21
+106061,0,767600.5676,0,21
+106062,0,768811.8018,0,21
+106063,0,770254.9997,0,21
+106064,0,771438.9825,0,21
+106065,0,772686.1063,0,21
+106066,0,773941.0372,0,21
+106067,0,775615.0665,0,21
+106068,0,776794.2167,0,21
+106069,0,778002.975,0,21
+106070,0,779229.5378,0,21
+106071,0,780904.0776,0,21
+106072,0,782260.6941,0,21
+106073,0,782989.0294,0,21
+106074,0,784919.654,0,21
+106075,0,785461.7749,0,21
+106076,0,787527.1929,0,21
+106077,0,788775.6477,0,21
+106078,0,789971.4701,0,21
+106079,0,791558.3114,0,21
+106080,0,792829.8,0,21
+106081,0,837385.8033,0,21
+106082,0,842203.7953,0,21
+106083,0,846454.8732,0,21
+106084,0,848222.6095,0,21
+106085,0,850125.0629,0,21
+106086,0,851786.4444,0,21
+106087,0,853528.3911,0,21
+106088,0,855637.8448,0,21
+106089,0,858528.4077,0,21
+106090,0,866520.252,0,21
+106091,0,864017.0616,0,21
+106092,0,867702.181,0,21
+106093,0,869168.6745,0,21
+106094,0,871411.532,0,21
+106095,0,872503.1887,0,21
+106096,0,875102.8536,0,21
+106097,0,876533.4017,0,21
+106098,0,878318.9979,0,21
+106099,0,879820.4848,0,21
+106100,0,882314.371,0,21
+106101,0,883074.7372,0,21
+106102,0,885631.2268,0,21
+106103,0,886832.7438,0,21
+106104,0,888534.6126,0,21
+106105,0,890571.3101,0,21
+106106,0,892175.2425,0,21
+106107,0,894335.5596,0,21
+106108,0,895388.4952,0,21
+106109,0,897220.1665,0,21
+106110,0,899001.6845,0,21
+106111,0,900614.6261,0,21
+106112,0,902282.6934,0,21
+106113,0,904308.3087,0,21
+106114,0,905008.7392,0,21
+106115,0,907783.221,0,21
+106116,0,908853.9872,0,21
+106117,0,910557.3887,0,21
+106118,0,912645.0433,0,21
+106119,0,913727.1514,0,21
+106120,0,915687.8305,0,21
+106121,0,917532.7355,0,21
+106122,0,918811.0574,0,21
+106123,0,922550.7019,0,21
+106124,0,923479.8422,0,21
+106125,0,925601.9542,0,21
+106126,0,927556.6834,0,21
+106127,0,929687.0276,0,21
+106128,0,931504.9846,0,21
+106129,0,933567.5317,0,21
+106130,0,935278.4928,0,21
+106131,0,937507.4835,0,21
+106132,0,939553.192,0,21
+106133,0,941239.5225,0,21
+106134,0,943639.5508,0,21
+106135,0,945206.2297,0,21
+106136,0,947527.9441,0,21
+106137,0,949657.3385,0,21
+106138,0,951327.4728,0,21
+106139,0,953729.6779,0,21
+106140,0,955574.4227,0,21
+106141,0,972959.0658,0,21
+106142,0,975653.4238,0,21
+106143,0,977096.4673,0,21
+106144,0,978766.547,0,21
+106145,0,980357.1153,0,21
+106146,0,982012.429,0,21
+106147,0,983256.2866,0,21
+106148,0,985227.5537,0,21
+106149,0,1021293.909,0,21
+106150,0,1006334.753,0,21
+106151,0,1014578.392,0,21
+106152,0,1017108.773,0,21
+106153,0,1020861.621,0,21
+106154,0,1022901.708,0,21
+106155,0,1025496.657,0,21
+106156,0,1029188.344,0,21
+106157,0,1030784.189,0,21
+106158,0,1034286.314,0,21
+106159,0,1036666.707,0,21
+106160,0,1039746.324,0,21
+106161,0,1041157.619,0,21
+106162,0,1045077.572,0,21
+106163,0,1054296.888,0,21
+106164,0,1059655.661,0,21
+106165,0,1063216.339,0,21
+106166,0,1066142.056,0,21
+106167,0,1071426.491,0,21
+106168,0,1074449.021,0,21
+106169,0,1078601.235,0,21
+106170,0,1082642.56,0,21
+106171,0,1085896.158,0,21
+106172,0,1089674.383,0,21
+106173,0,1093410.904,0,21
+106174,0,1096076.859,0,21
+106175,0,1099897.507,0,21
+106176,0,1103027.321,0,21
+106177,0,1106176.532,0,21
+106178,0,1109354.062,0,21
+106179,0,1113135.554,0,21
+106180,0,1114978.568,0,21
+106181,0,1119278.881,0,21
+106182,0,1121972.021,0,21
+106183,0,1124667.612,0,21
+106184,0,1127901.328,0,21
+106185,0,1130603.077,0,21
+106186,0,1133848.798,0,21
+106187,0,1137008.442,0,21
+106188,0,1139014.933,0,21
+106189,0,1143262.424,0,21
+106190,0,1144990.706,0,21
+106191,0,1147454.306,0,21
+106192,0,1151362.393,0,21
+106193,0,1152807.135,0,21
+106194,0,1156777.876,0,21
+106195,0,1158600.067,0,21
+106196,0,1161890.878,0,21
+106197,0,1165164.727,0,21
+106198,0,1166265.04,0,21
+106199,0,1170589.656,0,21
+106200,0,1172609.765,0,21
+106201,0,1177782.22,0,21
+106202,0,1185038.488,0,21
+106203,0,1188864.168,0,21
+106204,0,1196583.979,0,21
+106205,0,1200503.058,0,21
+106206,0,1206677.485,0,21
+106207,0,1213473.084,0,21
+106208,0,1217686.595,0,21
+106209,0,1224630.58,0,21
+106210,0,1228957.198,0,21
+106211,0,1235375.032,0,21
+106212,0,1240029.007,0,21
+106213,0,1246451.139,0,21
+106214,0,1249626.98,0,21
+106215,0,1256133.136,0,21
+106216,0,1261183.986,0,21
+106217,0,1265665.145,0,21
+106218,0,1272785.652,0,21
+106219,0,1276767.432,0,21
+106220,0,1282712.052,0,21
+106221,0,1287270.983,0,21
+106222,0,1293519.452,0,21
+106223,0,1298323.987,0,21
+106224,0,1303985.348,0,21
+106225,0,1308235.565,0,21
+106226,0,1314663.242,0,21
+106227,0,1319672.528,0,21
+106228,0,1324849.5,0,21
+106229,0,1330434.632,0,21
+106230,0,1334985.409,0,21
+106231,0,1340344.543,0,21
+106232,0,1344648.364,0,21
+106233,0,1350798.019,0,21
+106234,0,1354225.591,0,21
+106235,0,1359246.34,0,21
+106236,0,1364733.922,0,21
+106237,0,1369622.847,0,21
+106238,0,1375822.888,0,21
+106239,0,1379406.341,0,21
+106240,0,1384590.112,0,21
+106241,0,1389770.381,0,21
+106242,0,1393197.81,0,21
+106243,0,1399403.29,0,21
+106244,0,1400047.828,0,21
+106245,0,1406739.469,1348.967172,21
+106246,0,1410991.278,1477.13571,21
+106247,0,1414159.147,1349.057388,21
+106248,0,1420724.473,1731.429318,21
+106249,0,1422967.646,1983.224067,21
+106250,0,1429133.071,1983.318133,21
+106251,0,1432949.307,2232.944588,21
+106252,0,1438596.322,2357.072838,21
+106253,0,1441217.003,2603.818233,21
+106254,0,1446513.202,2726.622847,21
+106255,0,1451786.401,2849.025517,21
+106256,0,1454777.807,2971.042103,21
+106257,0,1459694.209,3213.733763,21
+106258,0,1464990.575,3334.666272,21
+106259,0,1467833.982,3455.265392,21
+106260,0,1473050.261,3575.542182,21
+106261,0,1484489.051,4406.6736,21
+106262,0,1486724.998,4524.627934,21
+106263,0,1489009.472,4759.262841,21
+106264,0,1493428.912,4876.482584,21
+106265,0,1494351.291,5109.6193,21
+106266,0,1496745.941,5226.15747,21
+106267,0,1500703.836,5529.712478,21
+106268,0,1502780.864,5696.22322,21
+106269,0,1503872.044,5976.870484,21
+106270,0,1507983.503,6157.233906,21
+106271,0,1509206.83,6166.195731,21
+106272,0,1511972.675,6549.207227,21
+106273,0,1514220.123,6695.507362,21
+106274,0,1516199.033,6704.473805,21
+106275,0,1519480.992,7084.38432,21
+106276,0,1520677.669,7108.926393,21
+106277,0,1522718.338,7358.833735,21
+106278,0,1526237.527,7503.36621,21
+106279,990.0022961,1528019.135,7744.376327,21
+106280,719.15523,1529917.451,7776.337746,21
+106281,990.0022834,1532662.774,8016.608187,21
+106282,990.0022771,1534224.929,8175.013739,21
+106283,1255.782673,1537127.595,8288.012579,21
+106284,1255.782663,1538705.072,8541.898648,21
+106285,1387.08571,1541087.254,8573.546351,21
+106286,1646.940726,1543772.11,8937.095228,21
+106287,1517.44858,1544324.581,8828.534462,21
+106288,1903.538432,1548249.836,9205.851112,21
+106289,1775.620581,1549670.605,9332.661658,21
+106290,1903.538381,1551256.174,9349.472065,21
+106291,2157.255997,1555308.146,9615.086308,21
+106292,2157.255963,1554778.404,9836.332953,21
+106293,2283.127303,1558988.803,9867.784207,21
+106294,2283.127265,1559775.62,10008.42262,21
+106295,2533.044986,1562329.988,10243.44168,21
+106296,2533.044938,1564058.215,10383.64836,21
+106297,2657.142159,1566568.969,10400.64075,21
+106298,2780.694883,1568234.362,10757.63652,21
+106299,2780.694824,1571161.338,10666.30302,21
+106300,2903.722968,1571587.946,11116.24076,21
+106301,3026.244772,1574244.143,10945.67911,21
+106302,3148.276987,1577074.11,11272.74363,21
+106303,3148.276908,1577987.446,11495.94129,21
+106304,3269.834977,1581771.04,11747.28733,21
+106305,3390.933205,1581282.964,11851.33874,21
+106306,3390.933112,1584402.264,12213.49253,21
+106307,3511.584762,1586425.243,12109.82741,21
+106308,3631.802199,1589213.001,12526.85526,21
+106309,3631.80209,1589675.128,12670.5015,21
+106310,3870.979834,1592644.891,14817.62858,21
+106311,3751.596723,1593598.144,13967.19382,21
+106312,3870.979582,1597081.529,14732.03274,21
+106313,4108.549687,1597258.708,14974.32493,21
+106314,3989.960546,1599852.78,15383.86604,21
+106315,4108.549398,1601568.22,15685.38829,21
+106316,4226.754978,1605671.686,16197.62299,21
+106317,4226.754823,1604239.675,16319.93278,21
+106318,4344.585582,1607790.965,16783.23919,21
+106319,4462.049533,1610279.058,17233.49965,21
+106320,4462.049358,1610506.623,17211.09552,21
+106321,4579.15466,1611261.606,17945.33101,21
+106322,4812.315307,1612522.623,18207.34869,21
+106323,4695.907673,1611883.165,18570.43688,21
+106324,5044.12095,1611551.264,19127.54129,21
+106325,5044.121014,1612119.936,19383.95681,21
+106326,5044.121075,1611419.293,19830.80563,21
+106327,5389.393407,1892770.695,20090.14611,21
+106328,5274.620075,1610921.937,20636.64905,21
+106329,5618.014078,1610610.771,21015.34101,21
+106330,5613.334433,1611421.316,21315.16622,21
+106331,5954.909565,1609860.768,21713.69955,21
+106332,5841.34895,1610226.637,22155.34174,21
+106333,6102.471984,1609825.004,22572.80985,21
+106334,6345.067612,1609779.99,22864.8918,21
+106335,6249.151444,1608603.759,23307.41641,21
+106336,6490.925184,1610368.972,23630.12181,21
+106337,6619.610147,1608209.031,24013.03191,21
+106338,6747.915344,1609238.4,24626.01435,21
+106339,6875.850734,1608033.219,24503.22884,21
+106340,6892.089075,1610050.017,25421.83707,21
+106341,7257.523901,1608686.97,25416.93715,21
+106342,7130.647292,1608627.908,26001.29913,21
+106343,7399.962376,1609126.204,26397.48342,21
+106344,7687.095696,1607873.721,26613.4512,21
+106345,7745.202287,1608091.311,26976.92933,21
+106346,7802.981357,1607501.45,27526.2163,21
+106347,8063.783451,1889007.898,27836.70676,21
+106348,8213.111065,1607406.052,28145.38963,21
+106349,8346.458533,1606526.228,28527.34372,21
+106350,8394.628258,1606860.288,29003.89113,21
+106351,8642.869266,1605494.818,29105.4473,21
+106352,8675.183892,1606816.987,29948.79932,21
+106353,8923.047821,1605077.013,30325.27104,21
+106354,8954.240934,1605020.842,30454.5033,21
+106355,9109.025179,1605468.679,31093.04396,21
+106356,9231.857843,1604887.578,31408.16537,21
+106357,9493.057803,1603906.733,31672.66904,21
+106358,10644.4726,1603595.633,32360.18323,21
+106359,10642.24544,1604180.081,32617.54155,21
+106360,11018.34016,1602229.219,32829.28382,21
+106361,11325.30577,1603989.13,33556.32555,21
+106362,11446.52607,1601158.522,33570.35478,21
+106363,11976.34473,1602842.306,34344.79968,21
+106364,12231.21473,1601658.968,34417.6419,21
+106365,12501.73689,1602024.185,35077.06478,21
+106366,12768.41478,1600390.825,35204.50793,21
+106367,13162.91843,1600607.223,35799.20676,21
+106368,13287.14462,1600508.608,36063.33371,21
+106369,13787.91855,1598641.17,36568.83193,21
+106370,13831.66589,1600670.464,36880.58705,21
+106371,14299.9737,1598130.054,37339.00052,21
+106372,14704.9634,1880121.021,37643.2197,21
+106373,14808.9267,1598745.808,37903.23018,21
+106374,15107.57647,1596857.78,38559.56556,21
+106375,15447.13353,1597542.716,38858.077,21
+106376,15716.21006,1597004.003,39146.52644,21
+106377,16097.2552,1596760.563,39406.14758,21
+106378,16319.72499,1595149.757,40251.5116,21
+106379,16597.28442,1596305.957,40223.8078,21
+106380,16948.13002,1594472.314,40760.94792,21
+106381,0,0,0,21
+106382,0,0,0,21
+106383,0,0,0,21
+106384,0,0,0,21
+106385,0,80.87888873,877841.7136,21
+106386,335911.7734,0,0,21
+106387,0,0,0,21
+106388,0,0,0,21
+106389,0,122.756959,0,21
+106390,0,0,0,21
+106391,0,0,0,21
+106392,0,0,0,21
+106393,0,68.72339499,0,21
+106394,0,0,0,21
+106395,0,0,0,21
+106396,0,0,0,21
+106397,0,0,0,21
+106398,0,333.068451,0,21
+106399,0,0,0,21
+106400,0,0,0,21
+106401,0,0,0,21
+106402,0,0,0,21
+106403,0,0,0,21
+106404,0,0,0,21
+106405,0,0,0,21
+106406,0,0,0,21
+106407,0,0,0,21
+106408,0,0,0,21
+106409,0,27053.18808,0,21
+106410,0,0,0,21
+106411,0,3103.92666,0,21
+106412,0,8068.116672,0,21
+106413,0,9452.399714,0,21
+106414,0,7351.180325,0,21
+106415,0,8214.877929,0,21
+106416,0,8397.509685,0,21
+106417,0,8510.232253,0,21
+106418,0,8682.575666,0,21
+106419,0,8787.554979,860345.0516,21
+106420,0,8927.019817,0,21
+106421,337445.0537,9071.776914,0,21
+106422,0,9172.930441,0,21
+106423,0,9334.747654,0,21
+106424,0,9414.187937,0,21
+106425,0,9562.405746,0,21
+106426,0,10220.36199,0,21
+106427,0,10383.84602,0,21
+106428,0,10493.92117,0,21
+106429,0,10729.63967,0,21
+106430,0,10938.40382,0,21
+106431,0,11103.62853,0,21
+106432,0,11301.22273,0,21
+106433,0,11442.3203,0,21
+106434,0,11659.11413,0,21
+106435,0,11759.83794,0,21
+106436,0,11966.53282,0,21
+106437,0,12121.81655,0,21
+106438,0,12278.37328,0,21
+106439,0,0,0,21
+106440,0,0,0,15.6
+106441,0,0,0,15.6
+106442,0,0,0,15.6
+106443,0,41343.03279,0,15.6
+106444,0,519.4237575,0,15.6
+106445,0,12272.87503,0,15.6
+106446,0,16684.22,0,15.6
+106447,0,13394.19404,0,15.6
+106448,0,14147.97518,0,15.6
+106449,0,14314.35971,0,15.6
+106450,0,14509.7133,0,15.6
+106451,0,14598.87975,0,15.6
+106452,0,14797.74397,0,15.6
+106453,0,14929.73783,844361.8542,15.6
+106454,0,15078.35079,0,15.6
+106455,0,15203.90042,0,15.6
+106456,338132.3438,15405.12521,0,15.6
+106457,0,15520.01183,0,15.6
+106458,0,15637.81918,0,15.6
+106459,0,15829.53693,0,15.6
+106460,0,15950.00033,0,15.6
+106461,0,16072.23049,0,15.6
+106462,0,16190.97642,0,15.6
+106463,0,16344.26982,0,15.6
+106464,0,16505.83942,0,15.6
+106465,0,16574.85415,0,15.6
+106466,0,16774.37833,0,15.6
+106467,0,16844.62555,0,15.6
+106468,0,16997.92009,0,15.6
+106469,0,17113.20789,0,15.6
+106470,0,17262.59795,0,15.6
+106471,0,17309.78565,0,15.6
+106472,0,17531.00919,0,15.6
+106473,0,0,0,15.6
+106474,0,0,0,15.6
+106475,0,0,0,15.6
+106476,0,55633.39766,0,15.6
+106477,0,4229.748455,0,15.6
+106478,0,15781.46935,0,15.6
+106479,0,21589.94208,0,15.6
+106480,0,18025.34255,0,15.6
+106481,0,18501.8592,0,15.6
+106482,0,18698.2496,0,15.6
+106483,0,18781.37568,0,15.6
+106484,0,18866.95663,0,15.6
+106485,0,264347.4903,0,15.6
+106486,0,19097.03069,0,15.6
+106487,0,42786.17239,0,15.6
+106488,0,64943.15642,829766.7795,15.6
+106489,0,87536.25648,0,15.6
+106490,0,80741.82139,0,15.6
+106491,335253.1622,77661.10103,0,15.6
+106492,0,81275.29442,0,15.6
+106493,0,81954.99393,0,15.6
+106494,0,82878.35221,0,15.6
+106495,0,83344.52741,0,15.6
+106496,0,83980.21257,0,15.6
+106497,0,84787.79318,0,15.6
+106498,0,85479.00782,0,15.6
+106499,0,86146.18451,0,15.6
+106500,0,86665.0599,0,15.6
+106501,0,89460.99824,0,15.6
+106502,0,90799.4381,0,15.6
+106503,0,91708.59894,0,15.6
+106504,0,93082.51801,0,15.6
+106505,0,94071.78229,0,15.6
+106506,0,73579.53025,0,15.6
+106507,0,74645.47609,0,15.6
+106508,0,75734.98567,0,15.6
+106509,0,147928.0431,0,15.6
+106510,0,87031.30669,0,15.6
+106511,0,92624.72014,0,15.6
+106512,0,108228.5747,0,15.6
+106513,0,102155.0281,0,15.6
+106514,0,104086.6978,0,15.6
+106515,0,23027.63846,0,15.6
+106516,0,23106.20996,0,15.6
+106517,0,23327.34268,0,15.6
+106518,0,23419.75032,0,15.6
+106519,0,23589.93753,0,15.6
+106520,0,23773.25509,0,15.6
+106521,0,344104.5149,0,15.6
+106522,0,39796.62377,0,15.6
+106523,0,79311.66334,816436.9812,15.6
+106524,0,147400.1387,0,15.6
+106525,0,111284.539,0,15.6
+106526,336862.3884,117294.4578,0,15.6
+106527,0,130433.3974,0,15.6
+106528,0,127565.0204,0,15.6
+106529,0,129373.4963,0,15.6
+106530,0,132990.2084,0,15.6
+106531,0,134427.1711,0,15.6
+106532,0,136228.1411,0,15.6
+106533,0,137269.7081,0,15.6
+106534,0,139400.2389,0,15.6
+106535,0,140946.3575,0,15.6
+106536,0,142106.6651,0,15.6
+106537,0,144183.0968,0,15.6
+106538,0,145347.2184,0,15.6
+106539,0,120612.9802,0,15.6
+106540,0,121794.8679,0,15.6
+106541,0,197909.2802,0,15.6
+106542,0,134822.5863,0,15.6
+106543,0,151969.7113,0,15.6
+106544,0,157129.5994,0,15.6
+106545,0,156004.9807,0,15.6
+106546,0,157593.6255,0,15.6
+106547,0,159357.2189,0,15.6
+106548,0,160427.1475,0,15.6
+106549,0,161958.1795,0,15.6
+106550,0,163781.1851,0,15.6
+106551,0,28145.09827,0,15.6
+106552,0,28289.45231,0,15.6
+106553,0,28431.30749,0,15.6
+106554,0,28498.18447,0,15.6
+106555,0,460243.4939,0,15.6
+106556,0,91697.63757,0,15.6
+106557,0,130294.8112,0,15.6
+106558,0,211890.3577,804268.3496,15.6
+106559,0,172283.5542,0,15.6
+106560,0,178574.7469,0,15.6
+106561,337849.4819,177317.9883,0,15.6
+106562,0,175580.2109,0,15.6
+106563,0,174261.498,0,15.6
+106564,0,172088.7995,0,15.6
+106565,0,171475.5242,0,15.6
+106566,0,168964.79,0,15.6
+106567,0,167799.2122,0,15.6
+106568,0,166026.9925,0,15.6
+106569,0,164494.3095,0,15.6
+106570,0,162717.8785,0,15.6
+106571,0,134339.6269,0,15.6
+106572,0,132160.1981,0,15.6
+106573,0,208023.9819,0,15.6
+106574,0,139324.1491,0,15.6
+106575,0,152405.2511,0,15.6
+106576,0,156090.5769,0,15.6
+106577,0,150807.824,0,15.6
+106578,0,149698.2233,0,15.6
+106579,0,147910.8266,0,15.6
+106580,0,146103.6005,0,15.6
+106581,0,144448.4596,0,15.6
+106582,0,142698.2273,0,15.6
+106583,0,140760.4417,0,15.6
+106584,0,139304.7594,0,15.6
+106585,0,24364.63621,0,15.6
+106586,0,24136.74962,0,15.6
+106587,0,23936.82967,0,15.6
+106588,0,23726.38655,0,15.6
+106589,0,23508.04201,0,15.6
+106590,0,375009.5671,0,15.6
+106591,0,25785.86655,0,15.6
+106592,0,87536.42546,0,15.6
+106593,0,162226.5189,793175.3299,15.6
+106594,0,112716.8843,0,15.6
+106595,0,119183.8638,0,15.6
+106596,338339.9371,117052.8441,0,15.6
+106597,0,114927.073,0,15.6
+106598,0,113607.864,0,15.6
+106599,0,110990.7895,0,15.6
+106600,0,109347.9715,0,15.6
+106601,0,107163.4497,0,15.6
+106602,0,105278.1549,0,15.6
+106603,0,82924.85103,0,15.6
+106604,0,81101.13662,0,15.6
+106605,0,79273.65821,0,15.6
+106606,0,145316.1303,0,15.6
+106607,0,79593.90138,0,15.6
+106608,0,85939.83745,0,15.6
+106609,0,97207.91864,0,15.6
+106610,0,87545.00935,0,15.6
+106611,0,86500.7172,0,15.6
+106612,0,84287.19713,0,15.6
+106613,0,82049.25952,0,15.6
+106614,0,79928.69106,0,15.6
+106615,0,77498.83098,0,15.6
+106616,0,75235.35638,0,15.6
+106617,0,73025.66779,0,15.6
+106618,0,69970.78912,0,15.6
+106619,0,67565.15976,0,15.6
+106620,0,15776.73636,0,15.6
+106621,0,16332.79826,0,15.6
+106622,0,16810.8237,0,15.6
+106623,0,17257.08345,0,15.6
+106624,0,17642.5361,0,15.6
+106625,0,18041.37645,0,15.6
+106626,0,18449.46888,0,15.6
+106627,0,18890.95364,0,15.6
+106628,0,19311.98673,783060.7563,15.6
+106629,0,19613.71097,0,15.6
+106630,0,20084.15539,0,15.6
+106631,0,20482.47754,0,15.6
+106632,334445.3356,20852.12437,0,15.6
+106633,0,21206.20255,0,15.6
+106634,0,320326.9364,0,15.6
+106635,0,49071.40252,0,15.6
+106636,0,26422.16654,0,15.6
+106637,0,145384.4269,0,15.6
+106638,0,108629.1052,0,15.6
+106639,0,188499.9108,0,15.6
+106640,0,125853.9437,0,15.6
+106641,0,133336.5439,0,15.6
+106642,0,154676.1143,0,15.6
+106643,0,149884.9842,0,15.6
+106644,0,154237.299,0,15.6
+106645,0,158433.7288,0,15.6
+106646,0,161479.8079,0,15.6
+106647,0,165231.9635,0,15.6
+106648,0,169270.8458,0,15.6
+106649,0,172329.2744,0,15.6
+106650,0,175881.9806,0,15.6
+106651,0,180117.5814,0,15.6
+106652,0,183112.2323,0,15.6
+106653,0,186980.7772,0,15.6
+106654,0,190731.7114,0,15.6
+106655,0,194008.4629,0,15.6
+106656,0,197606.78,0,15.6
+106657,0,201614.7912,0,15.6
+106658,0,204597.3174,0,15.6
+106659,0,208793.3226,0,15.6
+106660,0,212021.7705,0,15.6
+106661,0,215924.8036,0,15.6
+106662,0,218809.5926,0,15.6
+106663,0,223350.5612,773820.9791,15.6
+106664,0,33207.58281,0,15.6
+106665,0,33795.34688,0,15.6
+106666,0,34062.21663,0,15.6
+106667,0,674083.3866,0,15.6
+106668,337499.1724,122792.8648,0,15.6
+106669,0,145172.864,0,15.6
+106670,0,263839.9095,0,15.6
+106671,0,310999.7721,0,15.6
+106672,0,241105.0071,0,15.6
+106673,0,252907.4906,0,15.6
+106674,0,266606.0535,0,15.6
+106675,0,266006.2365,0,15.6
+106676,0,269078.4079,0,15.6
+106677,0,273115.2735,0,15.6
+106678,0,276407.4299,0,15.6
+106679,0,279794.5079,0,15.6
+106680,0,283460.3804,0,15.6
+106681,0,283258.3198,0,15.6
+106682,0,282970.8553,0,15.6
+106683,0,283273.9131,0,15.6
+106684,0,282635.7956,0,15.6
+106685,0,283094.2686,0,15.6
+106686,0,282154.9328,0,15.6
+106687,0,282607.4368,0,15.6
+106688,0,282335.5927,0,15.6
+106689,0,281686.1088,0,15.6
+106690,0,282552.0617,0,15.6
+106691,0,281377.2821,0,15.6
+106692,0,281971.2896,0,15.6
+106693,0,281165.4584,0,15.6
+106694,0,281304.9702,0,15.6
+106695,0,281307.6889,0,15.6
+106696,0,280717.1442,0,15.6
+106697,0,39155.72568,0,15.6
+106698,0,39003.33042,805060.9076,15.6
+106699,0,39131.63326,0,15.6
+106700,0,849651.1306,0,15.6
+106701,0,166642.1769,0,15.6
+106702,0,87280.33257,0,15.6
+106703,0,441155.028,0,15.6
+106704,338225.429,257146.8484,0,15.6
+106705,0,274679.5797,0,15.6
+106706,0,282446.2221,0,15.6
+106707,0,280508.7735,0,15.6
+106708,0,279273.1758,0,15.6
+106709,0,279593.3868,0,15.6
+106710,0,278445.7161,0,15.6
+106711,0,278943.9588,0,15.6
+106712,0,278074.8991,0,15.6
+106713,0,278033.618,0,15.6
+106714,0,278012.7049,0,15.6
+106715,0,277233.8721,0,15.6
+106716,0,277180.1941,0,15.6
+106717,0,277447.8918,0,15.6
+106718,0,276110.0441,0,15.6
+106719,0,276949.2736,0,15.6
+106720,0,275897.0013,0,15.6
+106721,0,275925.7118,0,15.6
+106722,0,275582.5264,0,15.6
+106723,0,275352.2035,0,15.6
+106724,0,274847.3389,0,15.6
+106725,0,275020.118,0,15.6
+106726,0,274356.9396,0,15.6
+106727,0,274167.2615,0,15.6
+106728,0,273820.3928,0,15.6
+106729,0,273785.9102,0,15.6
+106730,0,38020.32706,0,15.6
+106731,0,38143.15762,0,15.6
+106732,0,37898.91307,0,15.6
+106733,0,793591.8202,792901.9807,15.6
+106734,0,149888.6731,0,15.6
+106735,0,193407.3392,0,15.6
+106736,0,350175.5234,0,15.6
+106737,0,253413.3931,0,15.6
+106738,0,274863.136,0,15.6
+106739,0,270902.2172,0,15.6
+106740,334454.1389,270317.7512,0,15.6
+106741,0,1415289.952,0,15.6
+106742,0,1188470.019,0,15.6
+106743,0,237759.1307,388959.9016,15.6
+106744,0,595353.9355,0,15.6
+106745,0,687015.096,0,15.6
+106746,0,505706.1116,0,15.6
+106747,0,530653.2038,0,15.6
+106748,0,537804.5475,0,15.6
+106749,0,527410.851,0,15.6
+106750,0,523640.0524,0,15.6
+106751,0,522892.2034,0,15.6
+106752,0,519796.9115,0,15.6
+106753,0,518520.5688,0,15.6
+106754,0,516602.8959,0,15.6
+106755,0,515085.7728,0,15.6
+106756,0,512375.9863,0,15.6
+106757,0,511791.5405,0,15.6
+106758,0,508933.342,0,15.6
+106759,0,508730.918,0,15.6
+106760,0,505906.1823,0,15.6
+106761,0,505475.9379,0,15.6
+106762,0,502718.708,0,15.6
+106763,0,90142.86495,0,15.6
+106764,0,89817.93083,0,15.6
+106765,0,1075181.604,0,15.6
+106766,0,239710.4726,0,15.6
+106767,0,632853.1152,799325.518,15.6
+106768,0,480747.0962,0,15.6
+106769,0,501673.3288,0,15.6
+106770,0,504617.5926,0,15.6
+106771,0,480450.8579,0,15.6
+106772,0,473469.2861,0,15.6
+106773,0,476057.4251,0,15.6
+106774,336778.6572,473899.5495,0,15.6
+106775,0,471584.0393,0,15.6
+106776,0,516901.9378,0,15.6
+106777,0,469751.587,0,15.6
+106778,0,478823.7992,391064.2296,15.6
+106779,0,485979.8057,0,15.6
+106780,0,479285.8134,0,15.6
+106781,0,480391.1817,0,15.6
+106782,0,479126.3454,0,15.6
+106783,0,478023.284,0,15.6
+106784,0,845360.977,0,15.6
+106785,0,475102.8402,0,15.6
+106786,0,474828.5441,0,15.6
+106787,0,473289.8209,0,15.6
+106788,0,472558.9436,0,15.6
+106789,0,470943.6875,0,15.6
+106790,0,470521.9435,0,15.6
+106791,0,468650.4389,0,15.6
+106792,0,468037.1219,0,15.6
+106793,0,466578.9637,0,15.6
+106794,0,465906.5,0,15.6
+106795,0,85028.55302,0,15.6
+106796,0,85144.98568,0,15.6
+106797,0,1008602.131,0,15.6
+106798,0,206785.0898,0,15.6
+106799,0,561534.0001,0,15.6
+106800,0,455285.8782,0,17.8
+106801,0,2612713.336,847789.3401,17.8
+106802,0,1509467.008,49480.24823,17.8
+106803,0,824197.1805,59820.15639,17.8
+106804,0,1053143.314,68069.43817,17.8
+106805,0,980269.0283,62389.41552,17.8
+106806,0,936203.6588,195775.2368,17.8
+106807,0,918408.3063,20725.93049,17.8
+106808,338060.2593,999756.5332,181783.2756,17.8
+106809,0,939809.9167,61038.71583,17.8
+106810,0,942740.6389,184064.395,17.8
+106811,0,944336.3582,20786.97098,17.8
+106812,0,939536.3442,169001.9038,17.8
+106813,0,937288.3046,37044.49801,17.8
+106814,0,936161.2778,42650.92573,17.8
+106815,0,931482.7613,73626.9428,17.8
+106816,0,932080.8165,61556.34292,17.8
+106817,0,929047.4891,177219.3517,17.8
+106818,0,927476.7467,21268.28184,17.8
+106819,0,924983.2411,156945.4234,17.8
+106820,0,924867.0202,89545.89015,17.8
+106821,0,921603.5432,121915.9774,17.8
+106822,0,920868.6298,21568.51427,17.8
+106823,0,920147.4956,146378.9201,17.8
+106824,0,916488.1965,36309.6426,17.8
+106825,0,917129.0883,52456.55698,17.8
+106826,0,913210.1881,51224.12381,17.8
+106827,0,161520.2079,50597.10501,17.8
+106828,0,161186.9809,50196.55236,17.8
+106829,0,1119303.384,385636.3934,17.8
+106830,0,1367936.21,25685.46587,17.8
+106831,0,780763.7319,80511.12328,17.8
+106832,0,966079.2339,118139.262,17.8
+106833,0,902406.2182,398.5249097,17.8
+106834,0,905890.3999,114171.4464,17.8
+106835,0,905761.8485,642890.8095,17.8
+106836,0,903725.6917,39279.67683,17.8
+106837,0,902917.6406,127584.1842,17.8
+106838,0,868325.7306,472.2109909,17.8
+106839,0,866264.4571,172197.2258,17.8
+106840,0,948486.2437,61641.3205,17.8
+106841,0,885400.3454,129264.3835,17.8
+106842,334971.01,899666.8346,26289.67722,17.8
+106843,0,899140.2893,123003.7309,17.8
+106844,0,896613.7558,37471.53562,17.8
+106845,0,889192.3234,49842.37234,17.8
+106846,0,892956.3653,61385.7743,17.8
+106847,0,890221.7723,131801.7182,17.8
+106848,0,888708.5874,24156.65601,17.8
+106849,494.1734725,888334.9443,116982.9646,17.8
+106850,267.7612541,887814.0924,66717.91119,17.8
+106851,386.6318276,885789.9259,118330.8869,17.8
+106852,448.4406876,885181.5326,24351.49077,17.8
+106853,737.8090388,884437.4336,121625.9729,17.8
+106854,3286.383781,883522.6186,113151.9944,17.8
+106855,4176.820174,883309.459,100904.5171,17.8
+106856,3933.368686,880814.882,97390.00987,17.8
+106857,3751.599842,881617.8732,108262.0452,17.8
+106858,4108.553738,880601.6073,123736.9783,17.8
+106859,4579.16056,154382.857,114282.141,17.8
+106860,4928.391079,34496.82804,119785.8169,20
+106861,429437.2197,2930419.199,1279442.191,20
+106862,1923.424241,2270091.651,706029.7652,20
+106863,6236.57247,905204.3153,59064.60331,20
+106864,9012.619562,690131.8651,245373.9221,20
+106865,79004.97483,1420509.727,270536.4466,20
+106866,49047.18638,1049691.26,266783.5313,20
+106867,47365.002,1094842.87,254116.0447,20
+106868,53233.07663,1093062.706,277303.9925,20
+106869,53587.24196,1091913.395,198094.7326,20
+106870,53336.18801,1089113.627,330276.3528,20
+106871,53934.14621,1084653.239,285974.754,20
+106872,54383.84245,1086842.077,200318.9208,20
+106873,54504.84417,1080812.194,298829.0433,20
+106874,54926.80373,1081748.906,263511.7872,20
+106875,55178.37516,1079870.805,292495.8031,20
+106876,55490.66071,1078303.931,203984.9282,20
+106877,55861.50691,1076044.32,349148.9688,20
+106878,56169.40853,1073917.326,294100.0624,20
+106879,56410.25519,1074476.515,205855.5895,20
+106880,56684.06092,1072668.345,310414.524,20
+106881,57130.75473,1069408.143,272256.8,20
+106882,57334.64258,1071448.353,304825.4165,20
+106883,57663.22238,1066441.012,209167.2569,20
+106884,58029.4346,1067675.032,367108.6586,20
+106885,58169.49746,1065784.121,304382.6182,20
+106886,60000.39407,1065469.49,211175.4225,20
+106887,60692.44677,1063782.781,320079.8999,20
+106888,60846.83077,1063209.579,280796.315,20
+106889,61637.42151,1061616.478,399680.7542,20
+106890,62101.73465,1062335.759,213329.3982,20
+106891,62642.81055,1058704.68,376148.7072,20
+106892,63122.55195,1059979.772,298816.7943,20
+106893,63860.41044,1058424.154,387929.3459,20
+106894,64197.53127,1057384.717,215055.9581,20
+106895,64643.48574,1057043.913,378417.4291,20
+106896,65531.28052,1055122.364,296539.4218,20
+106897,65580.73863,1056385.771,359139.438,20
+106898,66407.3567,1055471.235,217236.5275,20
+106899,66719.76884,1052959.151,382915.329,20
+106900,67261.33482,1054375.27,300836.7886,20
+106901,68536.32135,1052913.589,361271.4373,20
+106902,70789.50667,1051691.848,219407.6489,20
+106903,70329.50688,1052667.945,386788.0912,20
+106904,71444.40623,1050726.645,229968.1168,20
+106905,72244.52706,1051386.579,276140.1569,20
+106906,72818.69943,1048399.368,407291.158,20
+106907,73577.00169,1051455.349,222512.3756,20
+106908,74313.94372,1048486.682,393970.5148,20
+106909,75074.68867,1048751.909,310443.201,20
+106910,75694.46858,1047558.536,373103.9645,20
+106911,76289.85297,1048752.378,224485.567,20
+106912,77280.05095,1047334.832,397565.3355,20
+106913,77786.4903,1046341.463,236046.3335,20
+106914,78509.0718,1045878.74,262190.3941,20
+106915,79235.08238,1046223.933,262169.1647,20
+106916,79926.92693,1046113.026,262370.0951,20
+106917,80461.02943,1045071.842,263783.4681,20
+106918,81175.71851,1044047.124,645107.2891,20
+106919,82125.46445,1045390.434,239290.0678,20
+106920,82453.64873,1043206.952,370166.8964,21
+106921,74688.21485,2369865.175,417043.6889,21
+106922,74151.51021,2360111.333,219420.6372,21
+106923,74491.53637,2355319.209,404198.9955,21
+106924,74528.14803,2352094.022,232456.4276,21
+106925,75382.46272,2344426.181,263182.6097,21
+106926,75209.41397,2337399.775,261777.9657,21
+106927,76118.61845,2334759.655,260351.3082,21
+106928,76154.88419,2328392.926,260955.717,21
+106929,76826.81824,2325566.869,261142.3493,21
+106930,77037.29124,2317610.978,262389.4034,21
+106931,77346.6033,2314743.202,263089.9458,21
+106932,77996.16472,2310183.693,264310.6234,21
+106933,78237.22137,2305150.527,264412.8976,21
+106934,78622.63912,2299614.796,265622.7355,21
+106935,79254.51252,2295372.615,266047.225,21
+106936,79408.15012,2290623.906,267260.2268,21
+106937,79886.07793,2286075.761,267919.746,21
+106938,80199.30388,2281344.537,268762.4054,21
+106939,80810.47063,2277409.208,269601.5408,21
+106940,80912.23127,2270849.115,270373.3277,21
+106941,81581.2758,2268418.039,270706.5881,21
+106942,81832.39269,2261857.316,271836.4936,21
+106943,82210.1933,2259566.737,272570.5021,21
+106944,82836.31538,2252276.059,273242.0892,21
+106945,83147.36724,2249459.892,274221.4824,21
+106946,83309.12448,2245073.675,274981.4856,21
+106947,83993.85676,2239238.514,275763.72,21
+106948,84113.9003,2236581.773,276743.8105,21
+106949,84862.61018,2229791.247,277123.9647,21
+106950,84882.42998,2227440.969,278061.4058,21
+106951,85624.92605,2221670.935,278874.5799,21
+106952,79556.89232,2217720.959,279163.682,21
+106953,78821.23264,2212772.775,280905.1981,21
+106954,78391.31842,2208505.676,280848.1174,21
+106955,78373.05085,2205039.819,281868.1499,21
+106956,78866.00969,2198541.12,282663.7119,21
+106957,78644.23999,2195680.531,283255.8957,21
+106958,78714.03886,2190842.218,284277.1658,21
+106959,79695.93793,2186683.523,284277.6607,21
+106960,79522.77131,2180933.107,285495.0845,21
+106961,80078.72776,2179185.158,286106.3487,21
+106962,79818.4412,2171184.439,286530.5976,21
+106963,79807.67991,2169599.468,287069.9767,21
+106964,80207.94442,2164536.45,288086.5937,21
+106965,80353.09278,2159685.685,288755.8041,21
+106966,80039.89038,2156023.671,289306.0526,21
+106967,80492.5546,2151094.086,289869.4643,21
+106968,80496.56397,2146473.011,290454.9413,21
+106969,80597.12994,2143096.587,291009.0306,21
+106970,80706.43931,2136171.907,291761.1744,21
+106971,80956.47628,2135030.904,292214.989,21
+106972,80908.49831,2129818.733,292966.7327,21
+106973,81064.46164,2125109.189,288883.8006,21
+106974,81032.67271,2120128.865,288793.3457,21
+106975,81452.19947,2116498.213,289232.6801,21
+106976,81373.49553,2111753.635,289583.817,21
+106977,81324.86411,2108709.38,289776.9475,21
+106978,81738.79066,2102440.761,290109.5874,21
+106979,81716.47428,2099343.574,290645.2378,21
+106980,81926.47666,2096319.358,290603.7519,21
+106981,33180.21362,1868251.703,183135.8222,21
+106982,31390.12033,1846750.336,175735.1282,21
+106983,30514.51093,1845810.707,175003.9998,21
+106984,30452.41848,1842584.837,172616.9512,21
+106985,30171.03802,1840913.373,172347.0572,21
+106986,29533.67808,1836397.576,170712.5494,21
+106987,29450.27668,1836393.622,169991.7279,21
+106988,29010.49622,1833428.825,168951.4719,21
+106989,28963.27796,1832032.758,167873.5974,21
+106990,28284.36185,1830444.778,167364.0981,21
+106991,28474.74905,1827878.736,166262.9596,21
+106992,27881.31627,1827576.041,165399.8704,21
+106993,27857.62692,1824756.277,164747.7896,21
+106994,27388.93343,1824523.364,163688.7287,21
+106995,27261.26966,1822533.413,163099.9792,21
+106996,27085.02252,1821272.036,162147.0999,21
+106997,26648.61042,1820184.831,161367.5719,21
+106998,26589.54528,1795343.243,160588.8428,21
+106999,26254.10057,1789249.956,159759.8503,21
+107000,25990.28719,1785333.852,159376.546,21
+107001,25854.56273,1782805.949,158251.7375,21
+107002,25585.69668,1779968.787,157679.0701,21
+107003,25234.94592,1777061.921,157314.2586,21
+107004,25220.72017,1773467.103,155944.7045,21
+107005,24951.86316,1770996.276,155686.7341,21
+107006,24739.04864,1769024.006,154901.6536,21
+107007,24393.82205,1765144.115,153971.4442,21
+107008,24254.17695,1763492.776,153712.8083,21
+107009,24266.15819,1760436.006,152481.2917,21
+107010,23815.62369,1758498.228,152112.0079,21
+107011,23685.54558,1755500.759,151194.4507,21
+107012,23138.8214,1753651.84,150610.4176,21
+107013,22762.9886,1750696.186,149483.746,21
+107014,22222.06725,1748005.06,149136.9135,21
+107015,22053.24534,1746053.141,147918.6254,21
+107016,21403.92847,1742223.039,147544.0803,21
+107017,20422.18224,1740095.451,146147.4478,21
+107018,19507.11612,1738234.696,145921.4003,21
+107019,19327.04352,1734766.829,144857.8374,21
+107020,18668.62198,1732466.12,144003.8442,21
+107021,18116.44844,1729500.259,143534.1576,21
+107022,17677.25595,1728063.231,142577.7798,21
+107023,17048.04787,1723962.829,141957.7261,21
+107024,16765.98171,1722992.475,140830.1966,21
+107025,16049.13076,1719005.052,140419.0064,21
+107026,15536.82428,1718841.663,139372.1903,21
+107027,15150.29079,1714774.109,138824.3574,21
+107028,14379.60863,1713033.363,137952.8343,21
+107029,14118.47799,1711476.737,137491.9276,21
+107030,13458.12108,1708000.895,136195.4186,21
+107031,12818.59072,1706249.185,135891.3637,21
+107032,12626.42491,1708194.087,134773.4971,21
+107033,11722.10284,1708000.742,134345.4138,21
+107034,11428.91913,1705730.224,133374.0665,21
+107035,10602.29826,1703451.007,132673.6435,21
+107036,10420.57032,1702135.251,132228.6779,21
+107037,9798.464417,1699809.755,131070.8721,21
+107038,9647.174852,1698967.015,130696.6271,21
+107039,9386.223207,1696492.393,130168.1018,21
+107040,9246.827562,1694355.376,129383.474,21
+107041,8958.424292,1689158.636,128621.7746,21
+107042,8906.544881,1682573.721,127588.6504,21
+107043,8628.576804,1677178.6,126827.4017,21
+107044,8578.595722,1671657.177,126008.1013,21
+107045,8502.185236,1666650.029,125054.5373,21
+107046,8143.965737,1660749.744,124336.9421,21
+107047,8200.665482,1656240.929,123672.9227,21
+107048,7911.533338,1650129.299,122649.5789,21
+107049,7812.759339,1644801.694,122110.0919,21
+107050,7787.380192,1639326.595,121070.3419,21
+107051,7563.668764,1633200.6,120263.2721,21
+107052,7550.945422,1628343.506,119687.822,21
+107053,7425.932819,1622092.537,118610.0532,21
+107054,7287.825777,1616922.184,117925.7453,21
+107055,7187.790109,1611210.55,117076.7003,21
+107056,7162.182161,1605602.836,116561.1416,21
+107057,6922.819584,1600228.45,115250.8313,21
+107058,6809.115465,1594705.648,115126.6255,21
+107059,6796.253138,1589116.659,113596.6286,21
+107060,6669.361291,1583332.151,113460.0096,21
+107061,6529.205081,1577772.587,112416.1741,21
+107062,6427.51513,1572095.164,111601.3313,21
+107063,6273.69919,1566318.069,110683.4309,21
+107064,6184.375129,1560850.463,110213.0634,21
+107065,6132.396539,1554989.184,109017.2388,21
+107066,5913.904166,1549502.149,108758.3733,21
+107067,5900.872933,1543385.012,107484.024,21
+107068,5758.463478,1538035.551,107014.7666,21
+107069,5641.841799,1531855.688,106490.4978,21
+107070,5511.756858,1525874.436,105149.0937,21
+107071,5381.281715,1520694.914,104973.1156,21
+107072,5368.124889,1514768.646,103690.2157,21
+107073,5119.126204,1509408.602,102970.5378,21
+107074,5105.917876,1503281.552,102235.425,21
+107075,4855.300708,1497929.191,101177.6428,21
+107076,4855.300839,1492461.653,100546.2282,21
+107077,4709.448787,1486341.276,99535.6478,21
+107078,4576.407283,1480744.913,98686.49067,21
+107079,4442.903194,1475456.84,97923.26547,21
+107080,4442.903301,1470008.209,96807.02344,21
+107081,4174.45295,1463717.404,96308.25056,21
+107082,4052.899372,1458506.402,95176.02408,21
+107083,4026.026943,1452736.983,94431.54737,21
+107084,3903.978557,1447278.231,93541.03981,21
+107085,3767.939288,1441902.17,92629.36288,21
+107086,3617.804653,1435876.181,91722.92547,21
+107087,3494.156794,1429946.735,91123.59691,21
+107088,3480.593519,1425462.393,89838.02347,21
+107089,3217.945029,1418457.767,89285.69337,21
+107090,3204.323626,1413884.137,88231.09764,21
+107091,3051.527762,1407911.439,87486.1888,21
+107092,2939.07695,1402871.475,86565.45891,21
+107093,2925.396347,1398322.408,85758.32841,21
+107094,2771.108464,1393031.236,84819.31564,21
+107095,2643.524494,1387167.119,83965.03533,21
+107096,2487.56914,1382609.901,83248.90224,21
+107097,2487.569439,1377275.241,82148.83738,21
+107098,2214.338829,1371886.719,81536.38803,21
+107099,2200.472656,1366705.152,80431.06708,21
+107100,2041.479189,1362149.466,79813.14725,21
+107101,1626.80976,1355205.244,85718.06722,21
+107102,1584.725184,1351211.894,85387.12223,21
+107103,1309.645371,1346044.455,84564.27083,21
+107104,1154.511146,1342253.018,83789.39163,21
+107105,1140.380861,1337807.135,83074.94189,21
+107106,981.6114845,1332663.044,82226.3555,21
+107107,893.0043588,1328566.563,81500.32301,21
+107108,801.307334,1324261.02,80761.16671,21
+107109,787.035155,1319228.496,80073.80345,21
+107110,772.7257702,1315012.359,79228.94494,21
+107111,758.3791148,1310378.817,78297.02595,21
+107112,743.9946664,1305653.299,77872.36373,21
+107113,729.5718827,1301499.234,76790.24965,21
+107114,715.1102002,1296755.604,76229.9903,21
+107115,700.6090324,1292094.597,75320.00199,21
+107116,686.0677688,1287851.844,74703.64535,21
+107117,671.485773,1282537.6,73695.66618,21
+107118,671.4858685,1278890.837,73205.47351,21
+107119,627.4885213,1274169.812,72574.16228,21
+107120,642.1969869,1269123.737,71627.11009,21
+107121,612.7386071,1264971.564,71391.9783,21
+107122,583.09966,1260252.072,70385.05538,21
+107123,583.0997201,1255891.567,69776.5122,21
+107124,568.2118954,1251199.967,69233.75145,21
+107125,553.2774487,1246696.778,68376.69145,21
+107126,523.2633777,1242747.624,68026.22053,21
+107127,538.2950538,1238044.625,67050.74618,21
+107128,493.0489339,1233333.453,66444.44419,21
+107129,493.0489878,1229201.557,66054.01161,21
+107130,477.863667,1224385.842,65078.72232,21
+107131,462.6245869,1220124.663,64531.69188,21
+107132,462.6246286,1215494.532,64299.86617,21
+107133,447.3304033,1211367.489,63435.81341,21
+107134,431.9795583,1206431.134,63112.35676,21
+107135,447.3304797,1202744.745,62535.73319,21
+107136,416.5705434,1198073.196,62023.71552,21
+107137,416.5705764,1193978.765,61479.82379,21
+107138,401.1016207,1189759.972,60954.33927,21
+107139,416.5706425,1185338.912,60443.52956,21
+107140,385.5709593,1180961.008,60013.6363,21
+107141,385.5709876,1177224.036,59505.39389,21
+107142,385.571016,1172633.811,58981.5862,21
+107143,369.9766073,1167928.001,58451.29879,21
+107144,369.9766334,1164414.66,58039.05684,21
+107145,369.9766596,1159974.528,57409.33046,21
+107146,338.5880977,1155951.364,57115.21521,21
+107147,369.976921,1151210.728,56551.53656,21
+107148,338.5878401,1147356.634,56066.93921,21
+107149,338.5879738,1143266.549,55495.01552,21
+107150,322.7887701,1138743.758,55070.82194,21
+107151,338.5880178,1135271.882,54728.6339,21
+107152,322.7888099,1130323.991,54197.85291,21
+107153,306.9160648,1126564.772,53927.91461,21
+107154,322.7888499,1122479.009,53586.44207,21
+107155,306.9161008,1118325.028,52904.27197,21
+107156,306.9161189,1114356.197,52813.23245,21
+107157,290.9667448,1109974.377,52297.73477,21
+107158,306.9161551,1105945.734,51996.79974,21
+107159,274.9373401,1101904.041,51496.41453,21
+107160,306.9161915,1097759.481,16731.85798,21
+107161,290.9667566,1095031.144,8992.432044,21
+107162,322.7889358,1091026.262,8881.250216,21
+107163,322.788941,1086324.534,8495.880663,21
+107164,290.9667691,1082510.4,8571.541878,21
+107165,322.7889512,1077984.647,8216.823475,21
+107166,306.9161759,1073609.272,8069.054117,21
+107167,306.9161804,1069448.511,8010.440283,21
+107168,322.7889662,1066013.282,7786.92707,21
+107169,306.9161892,1062752.376,7538.281833,21
+107170,306.9161936,1059617.113,7552.901257,21
+107171,306.9161978,1056523.079,7269.304132,21
+107172,322.7889854,1053358.08,7194.412554,21
+107173,306.9162063,1050254.231,6886.310771,21
+107174,306.9162104,1047053.983,6956.754975,21
+107175,322.7889992,1043949.801,6645.542416,21
+107176,306.9162185,1040970.778,6557.957226,21
+107177,322.7890081,1037891.834,6299.522887,21
+107178,322.7890125,1034269.258,6344.237127,21
+107179,306.9162302,1031838.251,6064.661205,21
+107180,338.5882761,1028469.182,6018.083938,21
+107181,306.9162377,1025261.992,5861.307473,21
+107182,338.5882853,1022101.405,5691.001256,21
+107183,322.7890333,1019192.367,5618.412052,21
+107184,338.5882942,1015870.832,5483.974826,21
+107185,322.7890412,1013092.642,5300.733334,21
+107186,338.5883028,1009711.729,5262.964939,21
+107187,338.588307,1006572.901,5067.46504,21
+107188,354.3168363,1003757.962,4929.059611,21
+107189,338.5883151,1000516.797,4881.192228,21
+107190,338.5883191,997131.7909,4682.067633,21
+107191,354.3168494,994370.9667,4530.347788,21
+107192,338.5883268,991403.2947,4328.984267,21
+107193,338.5883306,988082.1828,4149.094266,21
+107194,338.5883342,985029.5042,3946.351475,21
+107195,338.5883379,982490.1728,3775.262075,21
+107196,322.7890798,978926.6831,3555.906938,21
+107197,322.7890829,976308.5296,3395.368573,21
+107198,306.9162922,973257.9438,3168.960551,21
+107199,322.789089,970220.5576,2972.883255,21
+107200,306.9162975,967514.4618,2937.709068,21
+107201,290.9668877,964516.1411,2834.645086,21
+107202,306.9163026,961239.441,2785.757924,21
+107203,290.9668922,958497.3542,2760.634689,21
+107204,290.9668943,955686.6206,2670.03945,21
+107205,274.9374431,952601.9631,2593.658165,21
+107206,274.9374449,950113.8512,2595.060645,21
+107207,274.9374467,946793.3584,2477.836006,21
+107208,258.824136,944120.43,2426.304977,21
+107209,258.8241375,940904.1711,2374.547692,21
+107210,258.824139,938428.1261,2308.986771,21
+107211,242.6226792,935146.2543,2256.720446,21
+107212,242.6226804,932446.5604,2190.539712,21
+107213,226.3282149,929438.5963,2137.629129,21
+107214,226.3282159,926661.8945,2056.99893,21
+107215,226.3282169,923513.0874,2016.958344,21
+107216,209.9351969,920786.9303,1935.195003,21
+107217,209.9351977,917974.3208,1893.826063,21
+107218,209.9351985,914740.2286,1824.253922,21
+107219,193.4372204,912218.8911,1796.647791,21
+107220,176.8268045,909006.1482,1769.014374,21
+107221,568.2150723,922671.8728,3086.574913,21
+107222,538.2975288,919501.9677,3309.503442,21
+107223,553.2802711,916946.2811,9543.207272,21
+107224,553.2802623,913953.0853,9198.740258,21
+107225,523.2657643,911706.2239,7415.569724,21
+107226,523.2657548,908356.9518,8185.280102,21
+107227,523.2657448,909893.7524,7780.266291,21
+107228,523.2657343,909663.7864,7858.209313,21
+107229,493.0508663,905695.2734,7554.370376,21
+107230,493.0508562,904657.0254,7530.5693,21
+107231,493.0508457,902314.4816,7339.222153,21
+107232,477.8653454,901057.5485,7175.325787,21
+107233,477.865335,899391.0357,7033.832237,21
+107234,462.6260885,897117.0828,6841.97111,21
+107235,462.6260781,894911.844,6791.714562,21
+107236,431.9807249,893406.6699,6506.460866,21
+107237,447.3316914,890669.645,6443.297385,21
+107238,431.980706,888609.1846,6183.405896,21
+107239,416.5715278,887191.7691,6104.90622,21
+107240,416.5715186,884170.6804,5948.990313,21
+107241,401.1024476,882593.0531,5777.852287,21
+107242,401.1024388,880009.1162,5712.846566,21
+107243,385.5717954,878309.0043,5435.488437,21
+107244,369.9771826,875610.6922,5262.495311,21
+107245,369.9770725,873809.6691,5209.706453,21
+107246,369.9769673,871317.4726,5035.728988,21
+107247,338.588262,869260.2513,4861.055673,21
+107248,354.3167764,866656.4409,4678.157159,21
+107249,322.7889948,865161.5045,4536.392497,21
+107250,322.7889887,862229.4801,4495.10211,21
+107251,306.916198,859932.0217,4360.150908,21
+107252,306.9161925,858315.8839,4482.182203,21
+107253,290.9667854,855262.8245,4319.17648,21
+107254,274.9373389,853416.1557,4469.222391,21
+107255,258.8240345,850934.3791,4455.742485,21
+107256,258.8240305,848500.4252,4414.197556,21
+107257,242.6225787,846467.5152,4577.949483,21
+107258,242.6225752,843641.6219,4415.18496,21
+107259,209.9351114,841739.9982,4536.924286,21
+107260,209.9351088,839244.907,4672.28568,21
+107261,193.437141,836757.0561,4523.924154,21
+107262,193.4371388,834966.3234,4631.232068,21
+107263,160.0950301,831982.9764,4780.382215,21
+107264,160.0950286,830131.5757,4646.369148,21
+107265,160.0950271,827250.7537,4753.381998,21
+107266,126.2225446,824987.8981,4859.98241,21
+107267,126.2225436,822724.9888,4888.740758,21
+107268,109.0520326,819923.1046,4861.168692,21
+107269,91.69813535,817935.6366,4995.635153,21
+107270,91.69813485,814811.2487,4982.203025,21
+107271,65.25516593,812804.2849,5102.218742,21
+107272,56.3080596,809910.0687,5117.089369,21
+107273,56.30805941,807752.1206,5208.504492,21
+107274,19.54816378,805224.3372,5237.52921,21
+107275,19.54816376,803525.9405,5209.987185,21
+107276,19.54816373,800606.5234,5476.185814,21
+107277,0,797865.3775,5344.430965,21
+107278,0,795947.4906,5463.471531,21
+107279,0,792868.1556,5582.722537,21
+107280,0,790386.7005,5583.25706,21
+107281,0,765555.4779,779.2347756,21
+107282,0,764624.1471,717.7389898,21
+107283,0,763257.8198,748.7003871,21
+107284,0,762366.0168,717.7648769,21
+107285,0,760977.9457,717.7775539,21
+107286,0,760367.8985,733.2959582,21
+107287,0,758567.8544,717.8031759,21
+107288,0,757997.1874,702.5890294,21
+107289,0,756664.1205,725.4239284,21
+107290,0,755366.322,702.6136767,21
+107291,0,754324.0994,709.8785513,21
+107292,0,753370.2417,702.6380573,21
+107293,0,751830.6494,717.8784478,21
+107294,0,751064.9995,702.3193936,21
+107295,0,750390.0539,717.9035311,21
+107296,0,749776.972,694.735374,21
+107297,0,748431.2238,717.9284849,21
+107298,0,747550.0623,702.3683039,21
+107299,0,746519.146,717.9535665,21
+107300,0,745355.522,717.9662417,21
+107301,0,744320.7207,702.4052105,21
+107302,0,743407.339,733.1746416,21
+107303,0,742059.1508,718.0042528,21
+107304,0,741605.4044,718.016927,21
+107305,0,740060.2479,733.2137966,21
+107306,0,739340.768,733.2270225,21
+107307,0,738246.9219,718.0554604,21
+107308,0,737220.1682,756.3403014,21
+107309,0,736293.6168,733.2668404,21
+107310,0,735030.8305,748.7926423,21
+107311,0,734583.1239,733.2935629,21
+107312,0,733313.3815,733.3067868,21
+107313,0,732355.8365,718.1334378,21
+107314,0,731765.2199,702.5686403,21
+107315,0,730486.3935,718.1585098,21
+107316,0,730117.3638,671.7133861,21
+107317,0,728499.2649,687.3695306,21
+107318,0,728135.5257,640.7359003,21
+107319,0,727031.1253,664.1102416,21
+107320,0,726271.854,648.8112896,21
+107321,0,725673.1113,609.6408158,21
+107322,0,724590.0381,625.4405762,21
+107323,0,723763.4776,609.659225,21
+107324,0,722758.9458,594.2805604,21
+107325,0,722358.7812,562.9779455,21
+107326,0,721110.4368,578.4272201,21
+107327,0,720101.3183,562.9936104,21
+107328,0,719829.2591,531.5500049,21
+107329,0,718325.4463,515.5127929,21
+107330,0,717467.8281,531.5635613,21
+107331,0,717297.4337,499.971222,21
+107332,0,715342.9959,483.8358757,21
+107333,0,715554.6418,484.3690005,21
+107334,0,713749.0489,451.9858293,21
+107335,0,713502.2867,444.4522531,21
+107336,0,712473.1843,451.9956662,21
+107337,0,711392.5028,404.2208321,21
+107338,0,710687.2531,404.2247846,21
+107339,0,709737.5726,404.228737,21
+107340,0,708916.256,371.9324973,21
+107341,0,712688.4621,306.6592103,21
+107342,0,712519.9855,273.6193604,21
+107343,0,710817.4829,298.6594014,21
+107344,0,710229.7504,265.0231141,21
+107345,0,709146.3522,257.5148189,21
+107346,0,707798.3747,256.3514854,21
+107347,0,707090.1497,232.155427,21
+107348,0,705809.2457,240.2441568,21
+107349,0,705015.1649,2940.0876,21
+107350,0,703772.5118,1301.36652,21
+107351,0,702842.7711,1678.708268,21
+107352,0,701639.0525,1662.482413,21
+107353,0,700530.0945,1779.298502,21
+107354,0,699584.6907,1653.577977,21
+107355,0,698472.0848,1763.100803,21
+107356,0,697368.5743,1627.959592,21
+107357,0,696344.9297,1644.420535,21
+107358,0,695139.1537,1738.59544,21
+107359,0,694162.7657,1500.427253,21
+107360,0,693119.3363,1738.731039,21
+107361,0,691640.8928,1475.735684,21
+107362,0,690959.8363,1611.829809,21
+107363,0,689791.1782,1595.262029,21
+107364,0,688600.8003,1467.56969,21
+107365,0,687386.369,1587.014614,21
+107366,0,686363.8352,1459.311823,21
+107367,0,685587.0192,1450.962211,21
+107368,0,683897.2962,1451.012527,21
+107369,0,683360.9849,1434.145013,21
+107370,0,682110.1635,1305.648847,21
+107371,0,680892.9834,1434.238989,21
+107372,0,680194.63,1288.639505,21
+107373,0,679291.738,1159.289389,21
+107374,0,678241.5377,1288.714742,21
+107375,0,677379.486,1142.050589,21
+107376,0,676302.8633,1003.017004,21
+107377,0,675614.9923,1133.360203,21
+107378,0,674546.1641,994.2421805,21
+107379,0,673867.8906,844.9671333,21
+107380,0,672630.3699,985.3676818,21
+107381,0,671926.2629,835.8055454,21
+107382,0,671255.1747,703.3086327,21
+107383,0,670056.2689,826.3170179,21
+107384,0,669302.3317,559.9498606,21
+107385,0,668303.1362,693.8239572,21
+107386,0,667740.9007,559.9662507,21
+107387,0,666444.9418,424.4812932,21
+107388,0,666012.7824,559.9791762,21
+107389,0,665027.7251,424.4909871,21
+107390,0,664133.6099,286.9331206,21
+107391,0,663300.323,286.9350213,21
+107392,0,662631.4507,286.936922,21
+107393,0,661601.8547,146.446671,21
+107394,0,660824.5614,146.4471604,21
+107395,0,660622.6845,146.4476499,21
+107396,0,659720.9145,0,21
+107397,0,658447.5531,0,21
+107398,0,658683.3531,0,21
+107399,0,657057.4638,0,21
+107400,0,657003.5764,0,21
+107401,0,650608.2616,0,21
+107402,0,650197.3492,0,21
+107403,0,649431.6581,0,21
+107404,0,648946.3609,0,21
+107405,0,648195.1909,0,21
+107406,0,647554.3469,0,21
+107407,0,646691.2959,0,21
+107408,0,646625.8027,0,21
+107409,0,645825.9952,0,21
+107410,0,645426.5836,0,21
+107411,0,645495.6886,0,21
+107412,0,644571.6194,0,21
+107413,0,644338.9228,0,21
+107414,0,643376.9216,0,21
+107415,0,643502.0715,0,21
+107416,0,642429.9285,0,21
+107417,0,641861.0686,0,21
+107418,0,641690.7373,0,21
+107419,0,641042.3543,0,21
+107420,0,640488.9,0,21
+107421,0,639894.8116,0,21
+107422,0,641728.2983,0,21
+107423,0,646172.6334,0,21
+107424,0,643602.9484,0,21
+107425,0,645191.275,0,21
+107426,0,645294.4798,0,21
+107427,0,646294.2271,0,21
+107428,0,646051.2815,0,21
+107429,0,646463.7479,0,21
+107430,0,647096.0024,0,21
+107431,0,647026.9,0,21
+107432,0,646371.4807,0,21
+107433,0,647116.7078,0,21
+107434,0,645913.2553,0,21
+107435,0,646498.6869,0,21
+107436,0,645599.2965,0,21
+107437,0,645568.7879,0,21
+107438,0,645470.5679,0,21
+107439,0,644775.9661,0,21
+107440,0,644677.5926,0,21
+107441,0,644479.4703,0,21
+107442,0,643956.9608,0,21
+107443,0,643570.2175,0,21
+107444,0,643223.1713,0,21
+107445,0,643043.2321,0,21
+107446,0,642502.2283,0,21
+107447,0,642071.6937,0,21
+107448,0,641665.6296,0,21
+107449,0,640952.4773,0,21
+107450,0,641171.6686,0,21
+107451,0,640500.3577,0,21
+107452,0,639896.5173,0,21
+107453,0,639903.3886,0,21
+107454,0,639196.6101,0,21
+107455,0,638518.1058,0,21
+107456,0,638663.056,0,21
+107457,0,637563.0967,0,21
+107458,0,637243.0613,0,21
+107459,0,636982.471,0,21
+107460,0,636305.3226,0,21
+107461,0,637300.4902,0,21
+107462,0,637781.9063,0,21
+107463,0,639018.0619,0,21
+107464,0,639823.9006,0,21
+107465,0,640476.2927,0,21
+107466,0,641348.5675,0,21
+107467,0,642135.1207,0,21
+107468,0,643501.6693,0,21
+107469,0,643153.1381,0,21
+107470,0,645023.0868,0,21
+107471,0,645585.4584,0,21
+107472,0,645919.9317,0,21
+107473,0,647166.172,0,21
+107474,0,647730.2481,0,21
+107475,0,648568.066,0,21
+107476,0,649596.6788,0,21
+107477,0,649984.9376,0,21
+107478,0,650907.5007,0,21
+107479,0,651680.103,0,21
+107480,0,652423.5808,0,21
+107481,0,653125.573,0,21
+107482,0,654098.4035,0,21
+107483,0,654542.3371,0,21
+107484,0,655577.6413,0,21
+107485,0,656000.3202,0,21
+107486,0,656898.1002,0,21
+107487,0,657686.0035,0,21
+107488,0,658393.2589,0,21
+107489,0,659012.5243,0,21
+107490,0,659881.8759,0,21
+107491,0,660618.7442,0,21
+107492,0,661511.7658,0,21
+107493,0,662251.7412,0,21
+107494,0,663287.0329,0,21
+107495,0,664067.2469,0,21
+107496,0,664765.6207,0,21
+107497,0,666002.7999,0,21
+107498,0,666216.0208,0,21
+107499,0,667676.3988,0,21
+107500,0,668116.6625,0,21
+107501,0,669303.8787,0,21
+107502,0,670252.6788,0,21
+107503,0,670289.4822,0,21
+107504,0,672038.7036,0,21
+107505,0,672395.4949,0,21
+107506,0,673615.9912,0,21
+107507,0,674392.627,0,21
+107508,0,674939.0712,0,21
+107509,0,675955.6542,0,21
+107510,0,676836.1297,0,21
+107511,0,677765.1436,0,21
+107512,0,678692.7509,0,21
+107513,0,679134.3577,0,21
+107514,0,680654.1719,0,21
+107515,0,680792.0963,0,21
+107516,0,682061.3656,0,21
+107517,0,683102.081,0,21
+107518,0,683156.1702,0,21
+107519,0,685310.917,0,21
+107520,0,684838.2714,0,21
+107521,0,744094.4106,0,21
+107522,0,747336.749,0,21
+107523,0,755980.5331,0,21
+107524,0,764970.9729,879.0315168,21
+107525,0,760066.0053,822.1768701,21
+107526,0,764280.4853,663.2294718,21
+107527,0,765192.6963,779.236218,21
+107528,0,767572.5187,807.9302061,21
+107529,0,768957.5307,836.5043597,21
+107530,0,771250.7329,822.2577218,21
+107531,0,771839.0925,879.156177,21
+107532,0,774578.1546,3216.808249,21
+107533,0,775453.0638,3675.712245,21
+107534,0,777566.7092,3538.430821,21
+107535,0,778733.5443,3901.447961,21
+107536,0,780645.2542,4239.00528,21
+107537,0,781724.1014,4404.109439,21
+107538,0,783815.7475,4659.0381,21
+107539,0,784999.205,4944.061492,21
+107540,0,786035.8394,5093.276393,21
+107541,0,788599.1628,5360.548348,21
+107542,0,789059.6228,5640.464227,21
+107543,0,790944.2186,5656.694694,21
+107544,0,792161.1097,6052.339517,21
+107545,0,793564.534,6199.098831,21
+107546,0,794820.0171,6331.793645,21
+107547,0,796615.0049,6621.445045,21
+107548,0,797649.2322,6870.275377,21
+107549,0,799109.4365,6897.437096,21
+107550,0,800304.3525,7288.887412,21
+107551,0,801658.6679,7317.524191,21
+107552,0,803179.7287,7562.717155,21
+107553,0,804170.1868,7834.312787,21
+107554,0,805548.9512,7992.929322,21
+107555,0,806777.0867,8121.53717,21
+107556,0,808466.1205,8392.726143,21
+107557,2657.140344,808952.1606,8646.999349,21
+107558,1478.7828,810717.0889,8678.412855,21
+107559,2367.188603,811575.6968,8918.520279,21
+107560,2693.136998,813412.5937,9200.829408,21
+107561,2883.466442,814422.9802,9231.02349,21
+107562,3285.063718,814872.7367,9484.469483,21
+107563,3665.864129,817207.9603,9722.649315,21
+107564,3818.493459,817825.7715,9782.091922,21
+107565,4209.5586,819081.9604,10130.38979,21
+107566,4478.515558,820313.9061,10174.11598,21
+107567,4863.138681,821575.6745,10412.05545,21
+107568,5298.275667,822465.2361,10580.43393,21
+107569,5585.117392,823707.846,10816.3971,21
+107570,5848.042284,825176.6954,10846.95082,21
+107571,6724.279035,826199.6311,11207.33077,21
+107572,8669.185107,827229.3301,11264.44128,21
+107573,8240.153042,828671.151,11376.86237,21
+107574,9260.125538,829354.6348,11763.0521,21
+107575,9909.5711,830815.8167,11778.54561,21
+107576,10325.45479,831933.5294,11932.31606,21
+107577,11073.94705,832905.0957,12181.21681,21
+107578,11487.32234,833843,12426.45731,21
+107579,12115.28975,836118.2403,12459.63485,21
+107580,12737.65613,835435.9073,12732.75458,21
+107581,19797.37029,858995.8664,17511.42995,21
+107582,21013.2101,860615.7482,18262.53443,21
+107583,21190.1286,861478.0822,18295.69877,21
+107584,21961.20777,862551.1405,19262.12181,21
+107585,22230.88966,894313.7675,19501.36599,21
+107586,22794.72099,899270.8068,19750.8186,21
+107587,23142.46192,893030.057,19955.44067,21
+107588,23821.86269,897822.0486,21284.21475,21
+107589,23862.14368,900821.8142,23540.47892,21
+107590,24510.79416,902917.8841,22568.10517,21
+107591,24966.2719,903148.6682,23770.72643,21
+107592,25222.96005,906263.7644,23955.9213,21
+107593,25766.23381,906975.0831,24708.24829,21
+107594,26009.19158,908432.3218,24952.66578,21
+107595,26477.61898,910631.6917,25740.53559,21
+107596,26997.9797,912098.4579,25997.22667,21
+107597,27140.55733,912867.8106,27026.99848,21
+107598,27708.31424,914716.0485,27364.49465,21
+107599,27902.7689,917036.3329,27871.628,21
+107600,28595.25101,917594.1926,28210.87389,21
+107601,28595.55089,918300.8105,29005.66648,21
+107602,29247.5208,920916.7061,29342.92981,21
+107603,29393.31492,920651.9037,29692.818,21
+107604,29908.19882,924200.0732,30471.37876,21
+107605,30351.78423,923947.6506,30693.07823,21
+107606,30389.35565,925504.9968,31342.40383,21
+107607,31208.91855,926964.697,31830.7312,21
+107608,31259.01553,927608.2227,32273.39653,21
+107609,31483.763,928837.6815,32803.50214,21
+107610,32303.95734,931185.0316,33372.97257,21
+107611,32235.07987,931094.5342,33755.90088,21
+107612,32559.22941,932993.5287,34232.15082,21
+107613,32957.2611,932593.5576,34621.06048,21
+107614,33031.41705,935211.1164,35269.02709,21
+107615,33390.94992,935609.1544,35368.86554,21
+107616,33639.2453,936774.2095,36245.78245,21
+107617,33860.18129,937530.7426,36267.40443,21
+107618,34070.84529,938604.7274,37047.21965,21
+107619,34286.15223,940546.7592,37218.9097,21
+107620,34513.44805,939544.6716,37815.05607,21
+107621,34739.19456,941967.9016,38228.34266,21
+107622,35070.70106,941732.0548,38687.95777,21
+107623,35133.32332,943364.7462,39000.97286,21
+107624,35474.0126,944724.1425,39380.49598,21
+107625,35615.53264,945008.3745,40973.00237,21
+107626,35730.2894,945320.1689,42868.15191,21
+107627,35946.90029,947720.924,42629.76474,21
+107628,36195.46989,946581.7022,43678.5468,21
+107629,36180.11439,948966.8924,44072.97537,21
+107630,36633.82454,949585.3876,45068.81736,21
+107631,36469.40443,949550.7176,45907.86933,21
+107632,37062.45834,951981.3095,46445.72974,21
+107633,36918.92326,950290.9918,47147.029,21
+107634,37506.86687,953327.3988,47630.22873,21
+107635,37349.13991,952833.0034,48861.56569,21
+107636,37793.25985,954205.1282,48893.37908,21
+107637,37804.31102,954472.1261,50046.94165,21
+107638,38197.20489,955057.0946,50763.89771,21
+107639,38246.0266,957404.4177,51078.3564,21
+107640,38563.48284,955711.2247,52193.79036,21
+107641,38883.8829,959464.313,52872.87651,21
+107642,38923.93974,959344.4338,53522.13205,21
+107643,39532.18887,960749.476,54471.01394,21
+107644,39670.72583,961813.3792,55231.49894,21
+107645,39801.21369,963671.1246,55841.67564,21
+107646,40409.1705,963905.9029,56816.98366,21
+107647,40638.5828,963529.7676,57527.76284,21
+107648,40675.72573,967263.7115,58148.50167,21
+107649,41254.73623,966928.3849,59052.03427,21
+107650,41435.73382,967609.8462,59744.16511,21
+107651,41614.29819,969416.69,60654.95513,21
+107652,42131.90402,970263.9105,61197.6924,21
+107653,42168.63225,970710.8062,62183.74463,21
+107654,42594.8815,972341.9217,62762.10783,21
+107655,42967.59738,972062.2625,63742.34794,21
+107656,43052.00277,974539.7766,64299.05771,21
+107657,46466.22017,974885.7743,64887.8789,21
+107658,47092.02761,975910.1683,66254.87253,21
+107659,47703.73897,976404.1743,66676.18798,21
+107660,47920.02987,977714.2437,67700.3769,21
+107661,48672.29297,978974.9158,68630.05817,21
+107662,48558.30983,979542.8831,69395.54942,21
+107663,49205.73622,981063.3364,70502.61626,21
+107664,49909.15595,980953.2081,71054.13585,21
+107665,50162.37297,982933.4973,72445.58276,21
+107666,50520.45293,982038.358,72877.9937,21
+107667,51085.28592,985087.5516,74122.57361,21
+107668,51533.61448,984922.1118,74966.80424,21
+107669,51713.26444,986405.9279,75944.28931,21
+107670,52304.23332,986255.058,76795.5913,21
+107671,52470.73204,987703.673,77323.35493,21
+107672,53035.9728,988768.6055,78283.90844,21
+107673,53030.48857,990527.8658,78912.30142,21
+107674,53902.60764,989059.9803,78850.63349,21
+107675,53760.05191,991876.3731,80101.41977,21
+107676,54309.94684,991786.7101,80360.86345,21
+107677,54621.86728,992802.7611,80800.16164,21
+107678,54840.77845,994038.2502,81541.06097,21
+107679,55330.59331,994143.1785,83924.13354,21
+107680,55564.47061,995799.9278,84866.66429,21
+107681,55978.0806,995430.9248,84807.10583,21
+107682,56139.78137,997563.5199,92535.44141,21
+107683,56340.06955,997480.6185,94257.14999,21
+107684,56974.90554,998259.0077,95316.4595,21
+107685,57027.97678,999523.6043,96336.42127,21
+107686,57328.58622,999733.1957,97749.39255,21
+107687,57726.96789,1000905.326,98348.43586,21
+107688,58153.61738,1001071.12,99857.81499,21
+107689,57919.71249,1003053.831,100658.509,21
+107690,58820.43807,1003223.517,101723.6268,21
+107691,58615.43718,1003610.661,102558.9073,21
+107692,59321.81007,1004204.375,103598.9364,21
+107693,59236.23693,1006358.749,105028.5804,21
+107694,59693.70792,1005330.169,105070.7321,21
+107695,59888.47116,1007956.888,106969.6413,21
+107696,60198.82676,1006430.198,107530.1072,21
+107697,60556.41972,1008859.88,108380.8247,21
+107698,60486.98573,1009124.859,109742.9801,21
+107699,61251.64635,1010109.869,110315.5143,21
+107700,61141.53067,1010291.548,111068.8001,21
+107701,62442.10529,1018661.813,115909.2966,21
+107702,62831.64282,1019895.564,117189.3342,21
+107703,62914.13309,1019637.189,118170.6092,21
+107704,63153.35207,1019249.754,119030.6386,21
+107705,63333.65021,1020959.885,119919.3314,21
+107706,63418.83136,1020304.715,120729.5506,21
+107707,63603.19719,1019653.606,121863.2921,21
+107708,63843.34604,1021190.061,122256.0727,21
+107709,63674.27089,1019443.759,123580.0337,21
+107710,64304.80005,1020674.264,124075.2846,21
+107711,64088.05665,1019720.226,124934.0241,21
+107712,64206.18117,1021044.755,125538.4063,21
+107713,64548.65573,1019343.42,126791.7213,21
+107714,64588.797,1020109.184,127456.7244,21
+107715,66251.13904,1021008.053,128096.5194,21
+107716,65966.12727,1019184.696,128861.1679,21
+107717,66064.83286,1019789.243,129658.7445,21
+107718,66583.6037,1019617.187,130593.4138,21
+107719,66892.04841,1019907.813,131029.0706,21
+107720,67167.61114,1019523.462,132271.7127,21
+107721,67300.08694,1019851.023,132373.9016,21
+107722,67538.54881,1019042.66,133824.565,21
+107723,67564.33444,1018800.575,134084.5088,21
+107724,68412.04579,1020109.459,134777.8677,21
+107725,68115.60527,1017946.943,136020.959,21
+107726,68494.58346,1019428.295,136282.0385,21
+107727,68642.07668,1017879.86,136915.2316,21
+107728,69785.91385,1019492.518,138202.8227,21
+107729,69899.5563,1018311.985,138299.6872,21
+107730,70502.10606,1018100.2,140295.359,21
+107731,70544.98173,1017154.642,140662.3982,21
+107732,70953.69814,1018910.76,142421.7281,21
+107733,71283.80339,1016439.664,141867.2702,21
+107734,71553.75769,1017921.234,143321.4091,21
+107735,71987.99904,1017544.623,143804.1111,21
+107736,71957.67477,1016631.904,144292.3761,21
+107737,72673.50735,1016841.667,145377.2036,21
+107738,72668.59223,1016727.465,145556.1294,21
+107739,73056.93119,1015614.742,147197.3287,21
+107740,73231.90373,1016814.876,146922.5247,21
+107741,73833.38415,1016608.554,148054.6693,21
+107742,73655.08345,1014741.399,148316.175,21
+107743,74159.20411,1015556.259,149379.3343,21
+107744,74374.22609,1015550.244,150036.1496,21
+107745,74765.51828,1014719.161,150348.9449,21
+107746,74705.5418,1014772.152,151456.7043,21
+107747,75188.67515,1014516.345,151804.8817,21
+107748,75367.79728,1014007.284,152585.3092,21
+107749,75738.9675,1013716.051,153248.4923,21
+107750,75774.27463,1014260.13,153652.1359,21
+107751,76057.71306,1013298.597,154569.95,21
+107752,76409.63625,1012933.151,155022.1736,21
+107753,76506.90431,1012919.804,155760.8956,21
+107754,76676.92374,1013023.802,156500.6484,21
+107755,77178.99505,1012225.918,156703.6531,21
+107756,76901.35164,1012764.38,157678.8246,21
+107757,77753.60153,1010718.67,158427.0469,21
+107758,77238.94911,1012098.334,158594.5575,21
+107759,78071.01685,1011019.447,159546.1473,21
+107760,77796.58236,1011324.593,159963.0956,21
+107761,78331.70824,1011343.841,160877.4837,21
+107762,78462.44713,1013795.788,161775.5056,21
+107763,78543.56279,1015263.747,162231.0501,21
+107764,78974.5207,1015735.541,163358.7286,21
+107765,78937.88623,1016478.224,163865.6668,21
+107766,79083.69528,1017274.681,165496.9646,21
+107767,79776.54787,1018574.388,165111.7541,21
+107768,79254.63721,1019578.408,166863.7853,21
+107769,79908.20617,1019847.804,167229.7678,21
+107770,79980.86203,1021181.473,168388.6506,21
+107771,80129.03952,1022795.352,168766.3424,21
+107772,80133.13665,1023026.712,169937.928,21
+107773,80615.04041,1022995.682,170564.0306,21
+107774,80654.39528,1026100.393,171554.5011,21
+107775,80685.97976,1024795.869,172143.8201,21
+107776,80866.62551,1027073.458,173096.33,21
+107777,81599.66539,1027547.111,174025.2948,21
+107778,80887.01154,1028820.411,174219.1908,21
+107779,81673.5135,1029156.165,176037.4599,21
+107780,81617.44699,1030500.95,175857.6879,21
+107781,81614.05702,1030603.164,177568.5114,21
+107782,81947.59534,1032795.686,177240.1172,21
+107783,82175.94936,1032834.833,179162.6073,21
+107784,82126.3882,1034289.065,179290.8721,21
+107785,82341.03037,1034814.195,180155.6593,21
+107786,82450.61259,1036123.273,181612.5955,21
+107787,82756.09628,1036070.001,181347.1237,21
+107788,82722.55667,1037996.35,183249.7176,21
+107789,83034.46122,1038278.072,183138.8314,21
+107790,82950.6634,1040214.332,184433.5714,21
+107791,83318.64956,1040029.674,263647.0563,21
+107792,83160.1706,1041165.876,263378.9347,21
+107793,83515.48285,1041581.651,263516.3243,21
+107794,83543.82536,1043322.64,263044.6287,21
+107795,83728.57847,1044388.003,263868.4492,21
+107796,83829.32912,1044910.366,262422.1171,21
+107797,83985.91346,1045311.257,263620.4475,21
+107798,84076.5013,1046441.785,262901.9614,21
+107799,84178.82696,1048608.886,263191.7091,21
+107800,84076.50868,1047924.469,263062.6196,21
+107801,84777.0927,1048863.294,262706.4738,21
+107802,84216.37182,1050925.977,263180.067,21
+107803,84892.99523,1051056.938,262809.3978,21
+107804,84379.9444,1051033.322,262830.2458,21
+107805,85137.83887,1054045.578,262670.6623,21
+107806,84774.2775,1053186.132,263110.5061,21
+107807,85160.41715,1055219.885,262510.5835,21
+107808,85036.35323,1055516.698,263115.2471,21
+107809,85450.84863,1056442.013,262669.2248,21
+107810,85232.36754,1056740.973,263167.6777,21
+107811,85498.20489,1058862.942,262879.924,21
+107812,85816.39709,1058628.897,263007.2678,21
+107813,85197.65611,1060639.535,263111.8194,21
+107814,86021.4576,1060349.253,262905.0429,21
+107815,85818.76833,1062163.766,263277.3692,21
+107816,86021.6557,1062304.622,262958.2985,21
+107817,85789.91387,1063948.369,263327.9317,21
+107818,86369.93568,1064177.526,263145.6785,21
+107819,86134.29653,1064643.517,263340.2156,21
+107820,86420.63215,1066694.048,263669.1451,21
+107821,0,0,0,21
+107822,0,0,0,21
+107823,0,233.7612686,0,21
+107824,0,0,0,21
+107825,0,0,1335732.851,21
+107826,340420.8377,0,0,21
+107827,0,0,0,21
+107828,0,0,0,21
+107829,0,0,0,21
+107830,0,0,0,21
+107831,0,0,0,21
+107832,0,0,0,21
+107833,0,0,0,21
+107834,0,0,0,21
+107835,0,0,0,21
+107836,0,0,0,21
+107837,0,0,0,21
+107838,0,0,0,21
+107839,0,0,0,21
+107840,0,0,0,21
+107841,0,0,0,21
+107842,0,0,0,21
+107843,0,0,0,21
+107844,0,0,0,21
+107845,0,0,0,21
+107846,0,0,0,21
+107847,0,0,0,21
+107848,0,0,0,21
+107849,0,0,0,21
+107850,0,0,0,21
+107851,0,0,0,21
+107852,0,0,0,21
+107853,0,0,0,21
+107854,0,0,0,21
+107855,0,0,0,21
+107856,0,0,0,21
+107857,0,0,0,21
+107858,0,0,0,21
+107859,0,0,1273088.283,21
+107860,0,0,0,21
+107861,340421.5997,0,0,21
+107862,0,0,0,21
+107863,0,0,0,21
+107864,0,0,0,21
+107865,0,0,0,21
+107866,0,0,0,21
+107867,0,0,0,21
+107868,0,0,0,21
+107869,0,0,0,21
+107870,0,0,0,21
+107871,0,0,0,21
+107872,0,0,0,21
+107873,0,0,0,21
+107874,0,0,0,21
+107875,0,0,0,21
+107876,0,0,0,21
+107877,0,0,0,21
+107878,0,0,0,21
+107879,0,0,0,21
+107880,0,0,0,15.6
+107881,0,0,0,15.6
+107882,0,0,0,15.6
+107883,0,0,489573.9378,15.6
+107884,0,0,0,15.6
+107885,0,0,0,15.6
+107886,0,0,0,15.6
+107887,0,0,0,15.6
+107888,0,0,0,15.6
+107889,0,0,0,15.6
+107890,0,0,0,15.6
+107891,0,0,0,15.6
+107892,0,0,0,15.6
+107893,0,0,0,15.6
+107894,0,0,1327926.497,15.6
+107895,0,0,0,15.6
+107896,340430.3336,0,0,15.6
+107897,0,0,0,15.6
+107898,0,0,0,15.6
+107899,0,0,0,15.6
+107900,0,0,0,15.6
+107901,0,0,0,15.6
+107902,0,0,0,15.6
+107903,0,0,0,15.6
+107904,0,0,0,15.6
+107905,0,0,0,15.6
+107906,0,0,0,15.6
+107907,0,0,0,15.6
+107908,0,0,0,15.6
+107909,0,0,0,15.6
+107910,0,0,0,15.6
+107911,0,0,0,15.6
+107912,0,0,0,15.6
+107913,0,0,0,15.6
+107914,0,0,0,15.6
+107915,0,0,0,15.6
+107916,0,0,0,15.6
+107917,0,0,0,15.6
+107918,0,0,0,15.6
+107919,0,0,0,15.6
+107920,0,0,0,15.6
+107921,0,0,0,15.6
+107922,0,0,0,15.6
+107923,0,0,478167.5473,15.6
+107924,0,0,0,15.6
+107925,0,0,0,15.6
+107926,0,0,0,15.6
+107927,0,0,0,15.6
+107928,0,0,0,15.6
+107929,0,0,1270843.821,15.6
+107930,0,0,0,15.6
+107931,340422.3061,0,0,15.6
+107932,0,0,0,15.6
+107933,0,0,0,15.6
+107934,0,0,0,15.6
+107935,0,0,0,15.6
+107936,0,0,0,15.6
+107937,0,0,0,15.6
+107938,0,0,0,15.6
+107939,0,0,0,15.6
+107940,0,0,0,15.6
+107941,0,0,0,15.6
+107942,0,0,0,15.6
+107943,0,0,0,15.6
+107944,0,0,0,15.6
+107945,0,0,0,15.6
+107946,0,0,0,15.6
+107947,0,0,0,15.6
+107948,0,0,0,15.6
+107949,0,0,0,15.6
+107950,0,0,0,15.6
+107951,0,0,0,15.6
+107952,0,0,0,15.6
+107953,0,0,0,15.6
+107954,0,0,0,15.6
+107955,0,0,0,15.6
+107956,0,0,0,15.6
+107957,0,0,0,15.6
+107958,0,0,0,15.6
+107959,0,0,0,15.6
+107960,0,0,0,15.6
+107961,0,0,0,15.6
+107962,0,0,0,15.6
+107963,0,0,0,15.6
+107964,0,0,1114572.567,15.6
+107965,0,0,0,15.6
+107966,340423.6171,0,457524.4607,15.6
+107967,0,0,0,15.6
+107968,0,0,0,15.6
+107969,0,0,0,15.6
+107970,0,0,0,15.6
+107971,0,0,0,15.6
+107972,0,0,0,15.6
+107973,0,0,0,15.6
+107974,0,0,0,15.6
+107975,0,0,0,15.6
+107976,0,0,0,15.6
+107977,0,0,0,15.6
+107978,0,0,0,15.6
+107979,0,0,0,15.6
+107980,0,0,0,15.6
+107981,0,0,0,15.6
+107982,0,0,0,15.6
+107983,0,0,0,15.6
+107984,0,0,0,15.6
+107985,0,0,0,15.6
+107986,0,0,0,15.6
+107987,0,0,0,15.6
+107988,0,0,0,15.6
+107989,0,0,0,15.6
+107990,0,0,0,15.6
+107991,0,0,0,15.6
+107992,0,0,0,15.6
+107993,0,0,0,15.6
+107994,0,0,0,15.6
+107995,0,0,0,15.6
+107996,0,0,0,15.6
+107997,0,26763.93893,0,15.6
+107998,0,467.6455864,0,15.6
+107999,0,7566.386774,1024613.849,15.6
+108000,0,7675.696196,0,15.6
+108001,340426.3755,11106.38021,0,15.6
+108002,0,8527.899608,0,15.6
+108003,0,9307.167392,0,15.6
+108004,0,9468.081698,0,15.6
+108005,0,9500.447532,0,15.6
+108006,0,9628.226757,0,15.6
+108007,0,9675.741143,0,15.6
+108008,0,9791.963402,0,15.6
+108009,0,9838.134523,0,15.6
+108010,0,9962.575326,0,15.6
+108011,0,10022.91083,0,15.6
+108012,0,10129.22856,0,15.6
+108013,0,10149.9425,453353.1867,15.6
+108014,0,10335.21422,0,15.6
+108015,0,10326.5695,0,15.6
+108016,0,10464.3183,0,15.6
+108017,0,10509.81313,0,15.6
+108018,0,10624.40986,0,15.6
+108019,0,10679.16199,0,15.6
+108020,0,10784.71676,0,15.6
+108021,0,10865.0687,0,15.6
+108022,0,10921.62527,0,15.6
+108023,0,11057.43504,0,15.6
+108024,0,11098.78092,0,15.6
+108025,0,11172.16144,0,15.6
+108026,0,11263.52594,0,15.6
+108027,0,0,0,15.6
+108028,0,0,0,15.6
+108029,0,0,0,15.6
+108030,0,0,0,15.6
+108031,0,0,0,15.6
+108032,0,0,0,15.6
+108033,0,0,0,15.6
+108034,0,45056.81475,1008424.19,15.6
+108035,0,720.841321,0,15.6
+108036,0,7488.875498,0,15.6
+108037,340427.2487,13959.63208,0,15.6
+108038,0,13364.61509,0,15.6
+108039,0,11878.20949,0,15.6
+108040,0,12441.84405,0,15.6
+108041,0,12531.0736,0,15.6
+108042,0,12644.37798,0,15.6
+108043,0,12688.0991,0,15.6
+108044,0,12790.81312,0,15.6
+108045,0,12887.02741,0,15.6
+108046,0,12995.3433,0,15.6
+108047,0,13057.08798,0,15.6
+108048,0,13157.39262,0,15.6
+108049,0,13169.63999,0,15.6
+108050,0,13307.02032,0,15.6
+108051,0,13376.02789,0,15.6
+108052,0,13405.81369,0,15.6
+108053,0,13536.90861,0,15.6
+108054,0,13562.17292,0,15.6
+108055,0,13676.73022,0,15.6
+108056,0,13705.00315,0,15.6
+108057,0,13838.85961,0,15.6
+108058,0,13881.07263,0,15.6
+108059,0,13941.33159,0,15.6
+108060,0,14058.72536,0,15.6
+108061,0,14088.61264,0,15.6
+108062,0,14138.22185,0,15.6
+108063,0,14209.90853,451734.1792,15.6
+108064,0,0,0,15.6
+108065,0,0,0,15.6
+108066,0,0,0,15.6
+108067,0,0,0,15.6
+108068,0,0,0,15.6
+108069,0,57771.68777,1127384.15,15.6
+108070,0,0,0,15.6
+108071,0,6235.783256,0,15.6
+108072,0,21501.02621,0,15.6
+108073,340428.1207,13875.92849,0,15.6
+108074,0,14755.04553,0,15.6
+108075,0,14974.47405,0,15.6
+108076,0,15013.6377,0,15.6
+108077,0,15072.61733,0,15.6
+108078,0,15119.42523,0,15.6
+108079,0,15190.6553,0,15.6
+108080,0,15214.02623,0,15.6
+108081,0,15296.92641,0,15.6
+108082,0,15295.89796,0,15.6
+108083,0,15420.77973,0,15.6
+108084,0,15391.01897,0,15.6
+108085,0,15525.35337,0,15.6
+108086,0,15483.33525,0,15.6
+108087,0,15624.68224,0,15.6
+108088,0,15578.5624,0,15.6
+108089,0,15706.68456,0,15.6
+108090,0,15710.48925,0,15.6
+108091,0,15759.68695,0,15.6
+108092,0,15874.01868,0,15.6
+108093,0,15827.99162,0,15.6
+108094,0,15943.25694,0,15.6
+108095,0,15943.60142,0,15.6
+108096,0,16026.67078,0,15.6
+108097,0,16044.59316,0,15.6
+108098,0,16118.8253,0,15.6
+108099,0,0,0,15.6
+108100,0,0,0,15.6
+108101,0,0,0,15.6
+108102,0,0,0,15.6
+108103,0,62647.60067,0,15.6
+108104,0,0,1199590.002,15.6
+108105,0,8089.066737,0,15.6
+108106,0,24078.21186,0,15.6
+108107,0,15110.38033,0,15.6
+108108,0,16694.62175,0,15.6
+108109,340428.9808,16628.16429,0,15.6
+108110,0,16831.50119,0,15.6
+108111,0,16756.16001,0,15.6
+108112,0,16853.98969,0,15.6
+108113,0,16905.18048,0,15.6
+108114,0,16883.67955,0,15.6
+108115,0,17002.62245,0,15.6
+108116,0,16981.19381,0,15.6
+108117,0,17054.55355,0,15.6
+108118,0,17092.21772,432230.4579,15.6
+108119,0,17130.19951,0,15.6
+108120,0,17165.34903,0,15.6
+108121,0,17032.20331,0,15.6
+108122,0,16936.72692,0,15.6
+108123,0,16843.84067,0,15.6
+108124,0,16672.25108,0,15.6
+108125,0,16612.06489,0,15.6
+108126,0,16440.8755,0,15.6
+108127,0,16345.16926,0,15.6
+108128,0,16239.10278,0,15.6
+108129,0,16100.71432,0,15.6
+108130,0,16010.04861,0,15.6
+108131,0,15826.67121,0,15.6
+108132,0,15778.76392,0,15.6
+108133,0,0,0,15.6
+108134,0,0,0,15.6
+108135,0,0,0,15.6
+108136,0,0,0,15.6
+108137,0,59376.89036,0,15.6
+108138,0,0,0,15.6
+108139,0,6203.130233,991047.6369,15.6
+108140,0,20818.7343,0,15.6
+108141,0,14173.76988,0,15.6
+108142,0,14242.42629,0,15.6
+108143,0,14383.13656,0,15.6
+108144,0,14289.99447,0,15.6
+108145,340431.2072,14179.53909,0,15.6
+108146,0,14030.58058,0,15.6
+108147,0,13899.86815,0,15.6
+108148,0,13764.45422,0,15.6
+108149,0,13660.97445,0,15.6
+108150,0,13481.48541,0,15.6
+108151,0,13409.80524,0,15.6
+108152,0,13255.26954,0,15.6
+108153,0,13091.06037,0,15.6
+108154,0,13000.3996,0,15.6
+108155,0,12862.19567,0,15.6
+108156,0,12703.74703,0,15.6
+108157,0,12571.27014,0,15.6
+108158,0,12464.64406,0,15.6
+108159,0,12312.01686,0,15.6
+108160,0,12139.03065,0,15.6
+108161,0,12075.57587,0,15.6
+108162,0,11889.94057,429483.9157,15.6
+108163,0,11751.48615,0,15.6
+108164,0,11625.02482,0,15.6
+108165,0,11453.72697,0,15.6
+108166,0,11375.34056,0,15.6
+108167,0,0,0,15.6
+108168,0,0,0,15.6
+108169,0,0,0,15.6
+108170,0,0,0,15.6
+108171,0,0,0,15.6
+108172,0,0,0,15.6
+108173,0,0,0,15.6
+108174,0,0,950435.5017,15.6
+108175,0,0,0,15.6
+108176,0,0,0,15.6
+108177,0,40771.06621,0,15.6
+108178,0,1010.709402,0,15.6
+108179,0,4207.070366,0,15.6
+108180,0,8647.304649,0,15.6
+108181,340432.1274,929354.9504,0,15.6
+108182,0,239798.5209,0,15.6
+108183,0,31567.3174,0,15.6
+108184,0,192957.6916,0,15.6
+108185,0,236180.2671,0,15.6
+108186,0,194030.8505,0,15.6
+108187,0,191688.1804,0,15.6
+108188,0,195606.3702,0,15.6
+108189,0,195447.4438,0,15.6
+108190,0,194322.8995,0,15.6
+108191,0,194311.0884,0,15.6
+108192,0,193356.6976,0,15.6
+108193,0,193497.9007,0,15.6
+108194,0,192532.3583,0,15.6
+108195,0,192661.3922,0,15.6
+108196,0,192028.5398,0,15.6
+108197,0,191728.7248,0,15.6
+108198,0,191423.5778,0,15.6
+108199,0,191183.9094,0,15.6
+108200,0,190832.8008,0,15.6
+108201,0,190569.3623,0,15.6
+108202,0,190181.2662,0,15.6
+108203,0,190315.792,0,15.6
+108204,0,189856.0458,0,15.6
+108205,0,189628.2016,0,15.6
+108206,0,189655.1084,0,15.6
+108207,0,160099.6439,0,15.6
+108208,0,160620.0265,921878.0317,15.6
+108209,0,160205.798,0,15.6
+108210,0,246587.919,0,15.6
+108211,0,8711.959664,0,15.6
+108212,0,392712.173,0,15.6
+108213,0,33385.54159,0,15.6
+108214,0,27872.44157,0,15.6
+108215,0,28401.79788,0,15.6
+108216,0,28351.08453,0,15.6
+108217,340404.6089,28353.98806,0,15.6
+108218,0,28232.10537,0,15.6
+108219,0,28282.77477,0,15.6
+108220,0,542146.3774,0,15.6
+108221,0,40867.79336,0,15.6
+108222,0,164018.4889,0,15.6
+108223,0,225306.3629,0,15.6
+108224,0,180969.2997,0,15.6
+108225,0,188277.2651,0,15.6
+108226,0,188401.4611,0,15.6
+108227,0,188224.9767,0,15.6
+108228,0,187913.9356,0,15.6
+108229,0,187915.3317,0,15.6
+108230,0,188263.1863,0,15.6
+108231,0,187474.8291,0,15.6
+108232,0,188001.1418,0,15.6
+108233,0,187430.2607,0,15.6
+108234,0,187795.9467,0,15.6
+108235,0,187309.1213,0,15.6
+108236,0,187695.7477,0,15.6
+108237,0,187504.6967,0,15.6
+108238,0,187553.4073,0,15.6
+108239,0,186906.399,0,15.6
+108240,0,158158.9325,0,17.8
+108241,4597.204547,1382158.804,216250.6855,17.8
+108242,0,1193489.572,1013577.369,17.8
+108243,0,368468.3142,72508.25986,17.8
+108244,178.6432217,540637.5506,74501.5742,17.8
+108245,1266.761207,501858.665,96296.76224,17.8
+108246,516.824713,498032.9562,82072.02856,17.8
+108247,700.7708241,476700.7176,82516.26833,17.8
+108248,715.7491008,474615.7836,82061.73181,17.8
+108249,730.6776921,471281.7772,81590.08883,17.8
+108250,730.6776872,107599.6502,81117.0294,17.8
+108251,341132.9611,474937.7641,80671.54302,17.8
+108252,745.5573527,106530.6036,80325.10654,17.8
+108253,760.3888369,1112492.557,79799.92296,17.8
+108254,0,294912.697,79449.42934,17.8
+108255,0,463077.0709,79092.53483,17.8
+108256,0,479189.3811,78675.71439,17.8
+108257,0,462461.1321,78310.23478,17.8
+108258,0,457542.3428,77920.22272,17.8
+108259,0,456606.5421,77534.91598,17.8
+108260,0,455346.5009,77246.07221,17.8
+108261,0,453475.4342,76875.70165,17.8
+108262,0,452457.1369,75490.13024,17.8
+108263,0,451418.2613,75155.0524,17.8
+108264,0,449397.65,74839.06155,17.8
+108265,0,448658.2998,74447.6899,17.8
+108266,0,447905.7828,74175.70835,17.8
+108267,0,445985.3644,73799.64981,17.8
+108268,0,445784.2741,73535.32614,17.8
+108269,0,444467.3788,73114.34993,17.8
+108270,0,443630.275,72865.80463,17.8
+108271,0,342755.7062,0,17.8
+108272,0,346865.3157,0,17.8
+108273,0,531142.6587,0,17.8
+108274,0,409193.0421,0,17.8
+108275,0,440090.615,165083.5434,17.8
+108276,0,435272.3454,800916.1684,17.8
+108277,0,436548.1828,71353.43476,17.8
+108278,0,435289.4796,74491.11287,17.8
+108279,0,434746.8624,70109.38968,17.8
+108280,0,434994.58,70051.91535,17.8
+108281,0,435054.7438,69799.02868,17.8
+108282,0,434867.2957,69543.72682,17.8
+108283,0,80738.20935,69198.58333,17.8
+108284,501.1120199,80592.32022,68879.2644,17.8
+108285,341235.8103,80447.14884,68681.01671,17.8
+108286,555.8306129,991759.7804,68391.03472,17.8
+108287,685.7419722,254978.1589,68082.29989,17.8
+108288,715.7490059,400752.7591,67923.02084,17.8
+108289,715.7490025,442291.6295,67543.52837,17.8
+108290,738.1234948,782046.7444,67417.21441,17.8
+108291,745.5572585,412721.1779,67043.91875,17.8
+108292,760.3887401,412904.6122,66894.64832,17.8
+108293,775.1727415,411572.61,68159.19648,17.8
+108294,789.9099412,411380.5374,66853.39796,17.8
+108295,789.9099373,410626.0138,66964.30567,17.8
+108296,811.9294085,445831.1082,66813.17719,17.8
+108297,819.2465215,412837.0702,66512.5377,17.8
+108298,819.2465175,457110.0423,66344.66608,17.8
+108299,848.4034386,445106.8977,66120.53868,17.8
+108300,848.4034344,444798.1549,65887.78713,20
+108301,422941.6359,2614514.167,1686395.333,20
+108302,87733.5006,1655235.699,454788.4256,20
+108303,167259.2889,599930.9832,71970.6346,20
+108304,163476.9091,570997.2349,353671.0918,20
+108305,169802.8298,649819.161,336012.7558,20
+108306,160670.8414,960839.6377,287683.0394,20
+108307,163590.8687,708030.9902,298851.6968,20
+108308,163114.6548,764469.1753,300745.4484,20
+108309,163181.3949,765353.0931,302634.6439,20
+108310,163499.1157,762603.3056,304568.7431,20
+108311,163318.8338,761120.0475,305752.7936,20
+108312,163299.6473,760003.2695,307923.06,20
+108313,163734.5705,757359.2714,310071.2781,20
+108314,163294.674,756883.5985,311326.5051,20
+108315,163957.3167,755348.1197,313187.0172,20
+108316,163528.3522,752909.1234,314634.0425,20
+108317,164334.1897,752848.113,316823.9444,20
+108318,164093.7086,751681.7664,318275.5007,20
+108319,164026.3758,749355.3542,320067.1219,20
+108320,164747.9492,750109.6279,321703.2872,20
+108321,164461.0704,747688.5664,323064.0368,20
+108322,164692.3449,747430.2666,325113.602,20
+108323,164978.6523,746405.0297,326073.1913,20
+108324,165144.9479,745682.1935,328209.3883,20
+108325,165235.4082,743876.0876,329797.6768,20
+108326,165395.4257,742797.1414,331499.3113,20
+108327,165782.8177,744760.9631,332233.4265,20
+108328,165811.4417,740100.3258,335187.7184,20
+108329,166002.7985,743706.3029,335415.3336,20
+108330,166267.8126,739410.5415,337648.4932,20
+108331,166321.2832,740623.9485,338766.4709,20
+108332,166865.7969,739407.4348,340380.9105,20
+108333,166619.9641,737885.0508,341445.18,20
+108334,167262.5239,739410.9329,343544.1545,20
+108335,167314.9778,736339.3775,344400.7761,20
+108336,167158.5195,738868.8945,345629.7433,20
+108337,167982.1798,735156.4136,347372.3817,20
+108338,167948.7824,736327.5494,349175.3462,20
+108339,167780.7947,736882.2636,349777.6395,20
+108340,168731.8833,733907.1283,351390.3793,20
+108341,168517.6048,735659.9966,352916.2365,20
+108342,168669.3075,734483.1604,354003.555,20
+108343,168970.7561,733228.3901,355524.555,20
+108344,169466.0545,734574.5667,356753.8678,20
+108345,168991.6024,733030.789,357339.4916,20
+108346,170282.6359,732739.3497,359715.8426,20
+108347,169498.8788,732806.127,360304.1788,20
+108348,170207.3667,731928.6403,361594.0625,20
+108349,170171.973,732075.007,362642.0842,20
+108350,170868.5487,731723.6377,364217.4792,20
+108351,170485.3098,731922.0578,365177.321,20
+108352,171258.5354,730267.2153,366315.6499,20
+108353,172451.1154,731241.8488,367447.5809,20
+108354,172221.994,731297.0266,368651.0477,20
+108355,172877.5725,729850.3496,369769.3617,20
+108356,173127.2508,730799.131,370906.4308,20
+108357,173166.9975,729361.4831,371823.0485,20
+108358,173790.1114,730312.1468,373097.0423,20
+108359,173929.4179,728786.1053,374170.2717,20
+108360,174449.2554,730528.5119,375165.3197,21
+108361,164656.3744,1259540.216,358961.5797,21
+108362,164122.7272,1251802.853,358048.1566,21
+108363,163786.8385,1250569.817,357864.1604,21
+108364,163850.0331,1246773.052,358363.3398,21
+108365,164033.4364,1244516.041,357800.2265,21
+108366,163706.5198,1243030.094,359292.6206,21
+108367,164254.48,1238488.243,358432.2487,21
+108368,164012.0502,1238566.973,359220.9373,21
+108369,164146.4948,1234702.592,358983.6669,21
+108370,164173.0257,1233170.136,359915.4508,21
+108371,164360.5147,1230950.482,359910.5252,21
+108372,164279.0952,1226964.954,359557.6238,21
+108373,164337.9171,1227373.524,360665.3636,21
+108374,164636.9119,1222680.186,359921.2461,21
+108375,164867.0568,1221829.509,361339.7389,21
+108376,164394.559,1220122.362,360727.8849,21
+108377,165245.5908,1217386.468,361153.2472,21
+108378,164563.7489,1213876.491,361874.4815,21
+108379,165316.0317,1213588.538,361155.3277,21
+108380,165686.1454,1211402.553,362032.3596,21
+108381,165415.6736,1207425.188,361824.5125,21
+108382,165848.2111,1205487.603,361909.9028,21
+108383,166164.9717,1203350.477,362481.4055,21
+108384,165781.7834,1202846.896,362729.4371,21
+108385,166538.5469,1198988.216,362757.9725,21
+108386,166306.9204,1197461.36,362538.7667,21
+108387,166583.0604,1196305.984,362824.728,21
+108388,166746.4513,1192725.782,363291.1702,21
+108389,167215.8765,1191973.24,363180.1289,21
+108390,165952.3481,1188963.662,363350.1034,21
+108391,165748.4246,1187822.12,364159.8017,21
+108392,165844.3683,1185165.317,363361.3755,21
+108393,165940.1766,1183553.69,363887.0993,21
+108394,165675.921,1181866.699,364296.6844,21
+108395,165793.6204,1178688.76,364001.6911,21
+108396,165805.2172,1178285.33,364100.1072,21
+108397,166027.5276,1176374.764,364389.106,21
+108398,165627.5537,1172858.293,364796.8567,21
+108399,166151.3637,1171755.743,364072.1132,21
+108400,165700.0316,1170837.968,365102.2283,21
+108401,166195.8659,1167247.549,364482.5274,21
+108402,166113.0643,1165901.164,365085.2521,21
+108403,166007.6555,1164200.867,364876.3284,21
+108404,166119.4259,1162731.98,365043.0101,21
+108405,166002.26,1159919.151,365223.6332,21
+108406,166363.2117,1159066.071,364758.1908,21
+108407,166143.4148,1156375.304,365841.2616,21
+108408,165813.9161,1154687.239,365048.2109,21
+108409,166714.3269,1152885.028,365377.4518,21
+108410,166199.9657,1150950.887,365481.4302,21
+108411,166327.2381,1149148.135,362245.4768,21
+108412,166328.5945,1148032.255,356204.4175,21
+108413,166460.7657,1144102.103,355642.5461,21
+108414,166308.0608,1144673.849,355850.9712,21
+108415,166360.8318,1141955.531,354950.9072,21
+108416,166837.0655,1139278.142,354319.1417,21
+108417,166185.2299,1138251.59,354749.2539,21
+108418,166618.1836,1137063.479,353910.6818,21
+108419,166687.1607,1133381.392,353263.8921,21
+108420,166684.4178,1133998.994,353452.1395,21
+108421,96948.89779,897628.5321,227468.9661,21
+108422,92657.51629,887868.1849,219704.4546,21
+108423,91884.47632,886450.4356,217527.6329,21
+108424,90647.44289,884257.1032,216154.7918,21
+108425,90095.65428,882325.3465,214232.3678,21
+108426,88950.63317,878905.8489,212990.2977,21
+108427,88557.26176,878704.0242,211192.4879,21
+108428,87460.08267,876305.1883,209640.325,21
+108429,87063.60649,874247.945,208521.3049,21
+108430,86316.64627,872713.9333,206895.6615,21
+108431,85705.36625,870927.8615,206051.6504,21
+108432,84878.56527,868857.8773,204082.506,21
+108433,84416.7098,867734.6546,203585.3328,21
+108434,83827.05507,861833.7344,201530.602,21
+108435,83093.17835,860316.3968,200922.9041,21
+108436,82573.71251,841400.3463,199063.9884,21
+108437,81919.85835,836979.3813,198363.4151,21
+108438,81392.36665,834195.5952,197509.4214,21
+108439,80779.53788,832320.4926,195929.0272,21
+108440,79982.90844,829763.1259,195233.834,21
+108441,79857.80468,827481.7777,193963.3682,21
+108442,78771.30021,825120.5027,193227.0128,21
+108443,78660.21627,822955.3439,191669.3192,21
+108444,77865.18179,820990.8051,190866.1049,21
+108445,77206.54024,818697.1392,189672.1606,21
+108446,76691.26669,816821.9639,188917.9914,21
+108447,76346.87127,814843.7505,187639.5838,21
+108448,75734.69569,813256.884,186874.5126,21
+108449,75065.57842,810913.0219,185728.1018,21
+108450,74538.40303,809385.7035,184432.0304,21
+108451,74312.38562,807227.7984,183591.5803,21
+108452,73384.25964,806584.4225,181675.9284,21
+108453,72924.49616,803752.4677,180752.749,21
+108454,72350.81658,803327.7139,179020.1797,21
+108455,71867.95426,801200.8428,176326.2855,21
+108456,71186.92292,799567.302,174584.6295,21
+108457,70833.78765,798296.9644,173496.8827,21
+108458,70030.74822,796757.6142,171605.7495,21
+108459,69780.97583,794811.4113,170586.0517,21
+108460,68815.98657,794020.1488,168354.1543,21
+108461,68835.5167,792934.1162,168094.3629,21
+108462,67626.6137,790600.7545,165460.1882,21
+108463,67868.01203,789375.5192,164948.5566,21
+108464,66673.87344,787885.071,163051.4842,21
+108465,66375.14079,787619.2894,161727.2919,21
+108466,65861.84883,784653.4438,160501.299,21
+108467,65404.33824,784949.6327,159031.1895,21
+108468,64648.95981,781722.9789,157903.7026,21
+108469,64384.86471,781802.5912,155760.0116,21
+108470,63844.67797,780250.8079,155078.1212,21
+108471,63169.31361,778471.9769,153524.4371,21
+108472,63302.6606,777586.0521,152037.1793,21
+108473,62397.64876,775943.5675,150537.1006,21
+108474,62360.33574,775525.0501,149622.9845,21
+108475,61735.9683,772940.2147,147935.7904,21
+108476,61633.69269,772714.01,147068.5402,21
+108477,61013.47088,770932.2548,145334.0526,21
+108478,60764.56457,769972.029,144442.8938,21
+108479,60314.83583,768331.0957,142844.0795,21
+108480,59939.39975,767495.0413,141395.2825,21
+108481,59690.39352,766025.6908,140374.5866,21
+108482,59385.26838,764219.9855,137867.7005,21
+108483,58982.92521,763216.6057,136775.2994,21
+108484,58548.90134,761575.9023,134888.5706,21
+108485,58527.33615,760362.9142,133172.9167,21
+108486,58013.83892,759519.8166,131656.4109,21
+108487,57695.33952,758087.84,130147.4833,21
+108488,57263.36585,756215.5288,128124.2413,21
+108489,57262.7837,755750.9876,126634.2812,21
+108490,56763.87621,753714.2053,125147.0593,21
+108491,56355.04388,752927.9989,123176.022,21
+108492,56436.6128,751781.4207,121744.0673,21
+108493,55391.55725,749835.3414,119894.0967,21
+108494,55852.56058,748971.0464,118436.1479,21
+108495,55052.08939,747498.1815,116751.3124,21
+108496,54914.91178,746370.1245,114893.331,21
+108497,54581.8936,745078.1688,113499.6386,21
+108498,54285.86216,743540.421,111780.1008,21
+108499,53989.43362,742842.5075,110551.0781,21
+108500,53623.80612,740788.6989,109070.6336,21
+108501,53413.1023,740056.6348,107972.7025,21
+108502,52903.46321,738789.2726,106629.3479,21
+108503,52924.15307,736765.6638,105532.4731,21
+108504,52234.15482,736125.665,104089.1991,21
+108505,52318.30525,734834.884,102746.5033,21
+108506,51695.60956,733256.9507,101761.8968,21
+108507,51459.10794,732187.7947,100577.875,21
+108508,51381.78756,730973.1,99365.78072,21
+108509,50788.45277,729081.7791,98197.37902,21
+108510,50689.63277,728870.1483,97019.04765,21
+108511,50344.10268,726087.4877,96079.86795,21
+108512,49965.52524,725473.5571,94925.72206,21
+108513,49948.9162,723642.4826,93912.18679,21
+108514,49704.54832,722293.6081,93005.54038,21
+108515,49513.36805,720217.1229,91719.32748,21
+108516,49272.54996,719201.3284,90798.28511,21
+108517,49226.87542,717193.6886,89775.99199,21
+108518,49006.5496,716048.6609,88737.24945,21
+108519,48786.07064,714899.14,87585.64668,21
+108520,48737.73544,712206.441,86677.83674,21
+108521,48529.53344,711227.8673,85353.05908,21
+108522,48291.9187,709667.4655,84696.38041,21
+108523,48253.80126,708352.6527,83428.45868,21
+108524,47934.57546,706133.8328,82512.7625,21
+108525,48005.12055,705256.8273,81371.4048,21
+108526,47558.0491,702961.2394,80478.676,21
+108527,47746.55436,701659.6893,79478.69938,21
+108528,47137.13859,700699.219,78680.02051,21
+108529,47439.87432,698388.435,78090.20041,21
+108530,46876.8561,697872.5514,77020.06463,21
+108531,47019.85385,694922.5713,76612.69862,21
+108532,46678.11816,694392.5939,75602.0678,21
+108533,46568.31372,691800.215,74726.92381,21
+108534,46446.96453,690867.6457,74106.55452,21
+108535,46205.54341,688965.9606,73574.53604,21
+108536,46076.4187,686930.8312,72845.46419,21
+108537,46198.50415,685778.538,72189.60498,21
+108538,45475.97401,683223.8057,71708.96956,21
+108539,45908.64666,682193.9622,71012.13009,21
+108540,45378.27629,678474.5139,21771.61077,21
+108541,51164.5873,682404.2467,21245.09818,21
+108542,50886.04919,679494.9663,20729.72566,21
+108543,51076.69188,677528.2983,20600.90497,21
+108544,50642.07227,674898.4242,20535.60197,21
+108545,50643.98775,672204.6462,20217.07567,21
+108546,50404.21791,669957.1296,19884.31645,21
+108547,50560.21273,667284.7004,19788.25363,21
+108548,49975.78335,664950.9346,19685.05857,21
+108549,50284.98031,662576.5673,19268.72186,21
+108550,49730.53761,659507.4217,19151.0802,21
+108551,49701.32612,656978.9194,18930.48463,21
+108552,49641.70256,655045.6694,18641.11617,21
+108553,49630.72169,651794.1234,18492.28359,21
+108554,49195.04621,649969.4898,18160.59479,21
+108555,49112.50804,646464.9998,18111.8528,21
+108556,48974.56881,644727.013,17809.85313,21
+108557,48908.19798,641649.4225,17537.93621,21
+108558,48556.93803,639262.6552,17291.25065,21
+108559,48563.13953,636844.839,17183.01387,21
+108560,48460.48103,633680.298,16845.34807,21
+108561,48160.60349,631625.2484,16751.23204,21
+108562,48010.99791,629172.6686,16362.17826,21
+108563,48006.52192,625735.7884,16300.74547,21
+108564,47757.93444,623807.2787,15957.08896,21
+108565,47529.55468,621264.6921,15713.67944,21
+108566,47556.23848,618090.8887,15468.735,21
+108567,47265.417,615888.6637,15373.84638,21
+108568,47276.12253,613303.5421,15057.34893,21
+108569,46854.68299,610335.5979,14764.51999,21
+108570,46895.9818,608267.8065,14564.48564,21
+108571,46386.80713,605046.6433,14504.22632,21
+108572,45571.19964,602759.2497,14212.24238,21
+108573,44454.79451,599990.6855,14137.15993,21
+108574,43617.79887,597770.095,13979.77763,21
+108575,43065.11998,594889.3684,13828.7109,21
+108576,42254.5939,592198.1275,13739.88311,21
+108577,41465.63843,590022.3487,13587.62969,21
+108578,41017.98755,587144.5015,13404.06272,21
+108579,40075.37317,584515.9684,13265.93041,21
+108580,38753.20432,581878.9515,13168.39378,21
+108581,37659.73282,579517.1294,13058.9084,21
+108582,37027.65995,576474.1479,12866.49821,21
+108583,36185.46258,574703.8873,12703.14759,21
+108584,35511.72199,571252.1167,12621.54536,21
+108585,34538.27975,569138.3293,12633.67232,21
+108586,34102.75857,566356.242,12322.52928,21
+108587,33072.23269,563996.1809,12266.89804,21
+108588,32619.90328,560994.982,12119.9314,21
+108589,31541.36946,558595.2519,11956.42362,21
+108590,31122.88458,555974.043,11890.6926,21
+108591,30121.62272,553307.1743,11871.58724,21
+108592,28785.10199,550681.7989,11573.00678,21
+108593,27774.14168,547929.4762,11549.68526,21
+108594,27148.01094,545953.4704,11390.31632,21
+108595,26263.71008,542366.6363,11326.96274,21
+108596,25707.06487,540427.1097,11173.61422,21
+108597,25222.83158,537961.0911,11045.9313,21
+108598,24176.79333,534916.1036,10939.9857,21
+108599,23947.86093,532404.1445,10849.44159,21
+108600,23020.10917,530074.8906,10793.20535,21
+108601,17956.31743,524244.7803,11140.72718,21
+108602,17635.58207,522961.0076,11041.57202,21
+108603,17412.67804,521073.9236,11091.2916,21
+108604,17275.83652,519966.8241,10684.46583,21
+108605,17123.10004,518672.7088,10779.6575,21
+108606,16740.9165,517059.9483,10923.42833,21
+108607,16771.06547,516015.6018,10606.21938,21
+108608,16375.98779,514404.0195,10654.29555,21
+108609,16294.64644,513111.2166,10434.78696,21
+108610,16030.5444,511869.871,10479.89489,21
+108611,15744.20784,510252.7511,10263.2595,21
+108612,15580.00987,509105.2532,10279.96054,21
+108613,15294.33269,507532.7551,9990.591988,21
+108614,15006.12774,506507.4259,10131.05485,21
+108615,14808.39766,504587.9181,9912.730918,21
+108616,14658.97882,503595.1589,9818.939752,21
+108617,14344.44101,502619.4704,9776.468457,21
+108618,14307.52688,500631.3691,9641.041597,21
+108619,13983.7756,499120.1377,9610.279177,21
+108620,13736.84175,498536.1621,9452.762734,21
+108621,13646.91299,496125.8967,9444.287857,21
+108622,13264.59633,495509.8063,9300.729928,21
+108623,13208.76575,494039.6391,9278.13213,21
+108624,12928.75045,492570.5461,9148.302614,21
+108625,12764.23857,491029.329,9099.849954,21
+108626,12532.62036,490025.3759,8995.551433,21
+108627,12470.70183,488006.7105,8975.392265,21
+108628,12238.03894,487246.7596,8838.777189,21
+108629,11966.43061,485486.5881,8818.991007,21
+108630,11818.41089,484203.6591,8698.472378,21
+108631,11693.23789,482939.2864,8494.184914,21
+108632,11619.10767,481917.5263,8475.020745,21
+108633,11418.23695,480689.9552,8242.121407,21
+108634,11143.68729,479744.056,8107.312756,21
+108635,11328.65411,478122.2332,7889.159573,21
+108636,10863.60488,477224.5264,7798.37272,21
+108637,10957.92083,476166.6679,7559.437114,21
+108638,10828.22329,475347.4505,7414.509767,21
+108639,10603.58289,473714.3357,7273.423723,21
+108640,10591.73379,472891.0848,7226.126929,21
+108641,10579.86626,471835.4758,6845.318169,21
+108642,10247.17347,470482.4501,6837.027584,21
+108643,10330.49755,469604.2135,6468.096445,21
+108644,10230.74342,468678.5249,6574.091484,21
+108645,10166.50655,467242.384,6221.609774,21
+108646,10252.76194,466366.2579,6021.909685,21
+108647,10034.80925,465469.3341,5970.659792,21
+108648,9951.546382,464103.2244,5782.37169,21
+108649,10047.54394,463178.554,5545.159574,21
+108650,9831.656325,462112.6629,5396.469908,21
+108651,9723.165125,460995.2667,5289.051263,21
+108652,9723.280157,460341.2232,4979.839826,21
+108653,9622.62028,458792.5671,5044.655479,21
+108654,9606.375123,458053.8086,4557.713512,21
+108655,9371.882624,456779.8135,4649.304765,21
+108656,9412.224428,455850.0646,4295.117416,21
+108657,9371.37447,454962.3413,4266.191642,21
+108658,9160.209567,453749.8489,4073.861948,21
+108659,9269.881393,452886.1512,4018.135967,21
+108660,9029.29582,451434.8694,3725.713484,21
+108661,13494.2727,480675.7594,10516.7381,21
+108662,13494.26988,479033.5988,11392.25897,21
+108663,13485.23972,478407.9524,10837.20827,21
+108664,13293.83104,476791.6921,10862.73526,21
+108665,13358.89534,476023.1622,10814.50272,21
+108666,13092.42798,474532.1917,10804.91912,21
+108667,13186.44991,473563.2509,10646.75521,21
+108668,12955.87247,472618.9703,14831.74365,21
+108669,13551.46219,471170.32,12128.73531,21
+108670,15878.36615,469921.6686,12967.13967,21
+108671,14477.65129,469392.2628,12755.83785,21
+108672,14777.60599,467726.0398,12876.63673,21
+108673,14893.8822,466702.7093,12600.75978,21
+108674,14980.9994,465567.162,12807.12981,21
+108675,15039.49408,464156.8114,12510.14992,21
+108676,14872.89242,463474.434,12501.51267,21
+108677,15008.9828,462158.976,12437.60917,21
+108678,14996.98297,460648.0851,12423.3463,21
+108679,15297.07829,459786.4909,12254.70229,21
+108680,15299.39635,458757.5121,12105.48936,21
+108681,15394.50084,457238.3126,12163.81037,21
+108682,15291.08184,456256.3198,12040.45964,21
+108683,15425.88665,454918.4584,11857.45426,21
+108684,15161.39242,453950.7358,11915.65266,21
+108685,15390.1229,452340.6555,11677.19836,21
+108686,15284.43991,451545.0964,11609.40026,21
+108687,15182.08852,450338.7069,11563.53416,21
+108688,15422.37456,448800.2323,11438.86611,21
+108689,15408.25164,448220.3542,11205.44391,21
+108690,15170.99903,446241.9284,11365.25454,21
+108691,15289.58329,445826.6113,10860.38234,21
+108692,15158.33684,443537.6914,10758.83569,21
+108693,15421.90192,443088.6957,10191.59997,21
+108694,14905.48646,441496.6488,9867.024045,21
+108695,15408.48152,439840.6497,9953.06391,21
+108696,15141.51348,439072.0523,9520.243083,21
+108697,15169.78876,437639.1844,9345.123774,21
+108698,15153.42742,435937.0217,9077.209076,21
+108699,15141.07071,435360.9098,8963.171867,21
+108700,15258.17052,433494.1226,8588.51469,21
+108701,15033.47939,431986.8392,8500.379148,21
+108702,15134.75002,431216.9637,8345.917187,21
+108703,15125.80584,429562.1171,7747.499935,21
+108704,15134.74512,428190.5422,7711.084543,21
+108705,14918.45072,427162.8086,7656.297731,21
+108706,15226.2902,425279.2445,7093.738738,21
+108707,14879.43375,424399.5085,7172.091966,21
+108708,15024.11373,423221.9133,6724.624706,21
+108709,15086.96005,421338.7487,6815.489745,21
+108710,14889.04139,420404.1288,6526.0269,21
+108711,14992.62446,418805.2616,6177.965721,21
+108712,14869.74513,417785.3783,6152.738456,21
+108713,14858.87487,415851.1629,5977.344757,21
+108714,14999.63096,415335.147,5641.920495,21
+108715,14723.21426,413266.1188,5478.631228,21
+108716,14865.64751,412252.3995,5500.934882,21
+108717,14845.1593,410948.7762,5099.77252,21
+108718,14731.34099,409602.9619,4929.996605,21
+108719,14729.74895,408047.972,4882.304708,21
+108720,14737.31271,406918.6233,4563.266731,21
+108721,5157.822592,375274.1985,1592.501369,21
+108722,4917.934577,373554.5192,1573.357715,21
+108723,5038.096125,371897.4888,1528.57241,21
+108724,4917.93411,370463.1854,1494.246777,21
+108725,4891.281081,369174.585,1464.286345,21
+108726,4917.933641,367712.6299,1447.037126,21
+108727,4778.32752,366000.7963,1393.227286,21
+108728,4891.280392,364739.2603,1369.465908,21
+108729,4799.309935,363204.8391,1343.309739,21
+108730,4770.669277,361470.2837,1297.878279,21
+108731,4772.602823,360293.9564,1280.34353,21
+108732,4785.969419,358815.7867,1241.124011,21
+108733,4785.969194,356893.2006,1208.194328,21
+108734,4630.491284,356034.9166,1159.831445,21
+108735,4785.968742,354185.5402,1159.855739,21
+108736,4787.844988,352570.9052,1095.891924,21
+108737,4516.581738,351699.3664,1062.468393,21
+108738,4785.968063,349402.6455,1062.488775,21
+108739,4653.376576,348461.9511,979.6231871,21
+108740,4653.37636,346901.4936,973.2975419,21
+108741,4638.132839,345692.7498,945.6408465,21
+108742,4653.375926,343865.1527,898.9157167,21
+108743,4653.37571,342654.2903,845.6145252,21
+108744,4531.823575,340997.6995,839.4821956,21
+108745,4774.448873,340036.8881,779.1899016,21
+108746,4533.588972,338045.9065,753.541715,21
+108747,4518.401373,337020.4628,727.5400623,21
+108748,4653.374623,335805.3078,695.8623203,21
+108749,4520.139058,334154.8286,664.0496695,21
+108750,4531.822308,332424.5912,664.0576262,21
+108751,4520.138644,332179.5297,632.1049674,21
+108752,4504.951054,329765.501,616.0781613,21
+108753,4260.344497,328951.0302,600.0142063,21
+108754,4491.47342,327612.9644,600.0207001,21
+108755,4246.866889,326354.7271,567.7720685,21
+108756,4246.866698,325076.2447,551.5921562,21
+108757,4218.117821,323834.9979,535.3719466,21
+108758,4110.268735,322521.2596,535.3771141,21
+108759,4081.491441,321464.9345,502.8070966,21
+108760,4081.491262,319641.5903,502.8116533,21
+108761,3957.844712,319384.9492,470.0694097,21
+108762,3944.282032,317124.6372,470.073391,21
+108763,3804.756855,316305.6375,453.6367436,21
+108764,3806.465833,315124.832,437.1533984,21
+108765,3783.492846,313648.7058,420.6220108,21
+108766,3652.71536,312536.5043,404.0411318,21
+108767,3527.252212,311183.8787,387.4091946,21
+108768,3637.35567,310176.2156,370.7244998,21
+108769,3373.791747,308727.9468,353.9851967,21
+108770,3496.472596,307758.473,337.1892622,21
+108771,3360.081614,306026.1071,320.3344747,21
+108772,3216.177086,305150.7233,303.4183822,21
+108773,3343.012026,303983.4509,286.4382644,21
+108774,3076.563715,302482.0526,269.391084,21
+108775,3045.661896,301487.6958,243.6864217,21
+108776,3061.143681,300338.0491,235.0813915,21
+108777,3061.143556,298971.1619,217.8106287,21
+108778,2752.708335,297583.8666,200.4559973,21
+108779,2903.510365,296458.6268,183.0115324,21
+108780,2760.472935,295432.6093,165.4701644,21
+108781,2278.440081,299686.096,112.1682155,21
+108782,2294.120808,299764.7703,75.92137977,21
+108783,6459.772768,299010.0081,57.50825071,21
+108784,6943.237918,299299.1104,38.8346153,21
+108785,5343.270629,298606.9647,0,21
+108786,5819.725067,298414.3585,0,21
+108787,5934.382358,297685.8129,0,21
+108788,5637.354322,298351.1901,0,21
+108789,5656.90159,297074.6697,0,21
+108790,5482.255236,297150.5782,0,21
+108791,5452.260612,297003.0933,0,21
+108792,5325.303493,296246.4926,0,21
+108793,5188.678783,296610.2888,0,21
+108794,5069.999543,295392.4811,0,21
+108795,4992.539041,296116.9619,0,21
+108796,4976.478085,294904.9806,0,21
+108797,4850.939379,295025.8082,0,21
+108798,4828.662609,294988.84,0,21
+108799,4917.623124,294044.4813,0,21
+108800,4692.723545,294431.1169,0,21
+108801,4783.934545,293592.993,0,21
+108802,4647.904751,293648.2823,0,21
+108803,4633.558699,293055.6417,0,21
+108804,4619.17485,293099.9848,0,21
+108805,4617.225266,292534.5444,0,21
+108806,4453.743385,292198.6323,0,21
+108807,4460.000271,292073.3766,0,21
+108808,4437.308803,291814.5014,0,21
+108809,4422.808214,291385.3085,0,21
+108810,4293.902085,291070.6975,0,21
+108811,4271.076361,291165.5945,0,21
+108812,4408.267631,290472.9924,0,21
+108813,4391.725403,290978.4738,0,21
+108814,4391.725456,290507.1294,0,21
+108815,4393.686307,290533.0785,0,21
+108816,4511.940214,290170.2262,0,21
+108817,4497.358784,290170.0872,0,21
+108818,4528.482606,290592.7033,0,21
+108819,4497.358892,289884.4861,0,21
+108820,4633.693132,289973.1784,0,21
+108821,4617.150906,289788.5791,0,21
+108822,4753.07319,290254.2047,0,21
+108823,4633.693301,289519.096,0,21
+108824,4870.090627,289887.3809,0,21
+108825,4754.885175,289799.1462,0,21
+108826,4878.375784,289366.8711,0,21
+108827,4990.637413,289923.4457,0,21
+108828,4888.486366,289340.8393,0,21
+108829,4990.637541,289622.8481,0,21
+108830,5139.856264,289660.6723,0,21
+108831,5117.070512,289370.7714,0,21
+108832,5139.856399,289353.6551,0,21
+108833,5243.102566,289353.7152,0,21
+108834,5383.323902,289633.1045,0,21
+108835,5265.863257,289328.3916,0,21
+108836,5500.425468,289391.9468,0,21
+108837,5508.580053,289186.6272,0,21
+108838,5508.580129,289675.0814,0,21
+108839,5648.000917,289480.5024,0,21
+108840,5625.329603,289113.2439,0,21
+108841,1051.839998,285060.0908,0,21
+108842,1066.223703,284744.0993,0,21
+108843,1112.292757,284396.7269,0,21
+108844,1142.3519,285388.6618,0,21
+108845,1170.859493,285024.2977,0,21
+108846,1217.697028,285454.2668,0,21
+108847,1252.426124,285125.7549,0,21
+108848,2404.386599,285770.2306,0,21
+108849,2286.206228,285762.581,0,21
+108850,2491.223417,285516.3025,0,21
+108851,2767.792371,286345.1697,0,21
+108852,3069.68885,285916.7739,0,21
+108853,3238.960354,286465.9223,0,21
+108854,4118.366027,286455.9172,0,21
+108855,4827.326334,286793.8253,0,21
+108856,4972.729084,286709.9786,0,21
+108857,5658.825009,287464.1804,0,21
+108858,5715.670879,287256.6655,0,21
+108859,6606.120023,287248.2988,0,21
+108860,6802.987816,287845.2851,0,21
+108861,7460.869676,287429.5097,0,21
+108862,7733.021586,288115.994,0,21
+108863,8262.663488,288002.4394,0,21
+108864,8815.039389,288511.5575,0,21
+108865,9083.054058,288408.0756,0,21
+108866,9719.280172,288803.6925,0,21
+108867,10131.82821,289114.0731,0,21
+108868,10759.96176,288894.1158,0,21
+108869,11168.21741,289334.3789,0,21
+108870,11569.72402,289626.7555,0,21
+108871,12059.74647,289683.1431,0,21
+108872,12318.5282,290037.0382,0,21
+108873,12575.71085,290331.7583,0,21
+108874,12988.68175,290201.6794,0,21
+108875,13199.97061,290415.9257,0,21
+108876,13614.47194,290802.3433,0,21
+108877,13962.52061,291031.0915,0,21
+108878,13993.29623,291141.5583,0,21
+108879,14595.25655,291285.5214,0,21
+108880,14749.71118,291591.7928,0,21
+108881,14987.81798,291738.6196,0,21
+108882,15474.36871,292148.5059,0,21
+108883,15513.31745,292212.7699,0,21
+108884,15972.10051,292280.7185,0,21
+108885,16233.49344,292723.7313,0,21
+108886,16593.02882,293103.8499,0,21
+108887,16631.64845,292718.8252,0,21
+108888,17111.49685,293377.1706,0,21
+108889,17451.69433,293431.2565,0,21
+108890,17481.19745,293755.0406,0,21
+108891,18076.7932,293980.9527,0,21
+108892,17995.50753,294154.3069,0,21
+108893,18550.44049,294386.4651,0,21
+108894,18820.92213,294322.7018,0,21
+108895,18833.97201,295379.9225,0,21
+108896,19420.60246,295054.6648,0,21
+108897,19546.71463,295323.2514,0,21
+108898,19702.11782,295294.3766,0,21
+108899,20326.63284,294372.1706,0,21
+108900,20788.30902,294847.6823,0,21
+108901,20590.18136,294836.9813,0,21
+108902,21052.04585,295862.0748,0,21
+108903,20888.58175,296454.5278,0,21
+108904,20836.7236,296736.9804,0,21
+108905,20950.71609,297453.612,0,21
+108906,21107.71073,298095.5916,0,21
+108907,20983.91289,298406.7533,0,21
+108908,21153.27137,299350.1843,0,21
+108909,21002.75866,299285.5691,0,21
+108910,21209.77743,300667.4194,0,21
+108911,21152.22134,300848.0123,0,21
+108912,21026.23252,301502.5348,0,21
+108913,21301.18274,301777.6943,0,21
+108914,21161.42451,302807.3196,0,21
+108915,21235.49639,303411.0782,0,21
+108916,21081.0446,303587.6128,0,21
+108917,21250.07566,304690.6406,0,21
+108918,21240.0623,304821.9381,0,21
+108919,21073.1718,305769.1644,0,21
+108920,21240.41561,306582.1125,0,21
+108921,21217.80871,306719.0832,0,21
+108922,21049.33902,307403.067,0,21
+108923,21133.21409,308645.5158,0,21
+108924,21072.4635,308331.779,0,21
+108925,21155.98073,309880.2543,0,21
+108926,20985.72195,309595.3227,0,21
+108927,21069.12695,311019.7557,0,21
+108928,20897.47618,311223.5055,0,21
+108929,20967.78761,312132.1791,0,21
+108930,21026.10968,312638.9024,0,21
+108931,20767.52459,313240.9024,0,21
+108932,20825.34443,313735.9489,0,21
+108933,21086.78029,313888.7063,0,21
+108934,21572.28306,314584.0495,0,21
+108935,22171.49822,315154.8646,0,21
+108936,22838.77888,315309.068,0,21
+108937,23474.12286,315889.9168,0,21
+108938,24019.87557,316553.5234,0,21
+108939,24624.03686,316764.9018,0,21
+108940,25219.57809,317176.6368,0,21
+108941,25896.37645,316987.5753,0,21
+108942,25497.83784,317674.4876,0,21
+108943,25701.3972,317693.0399,0,21
+108944,26479.2631,318223.6155,0,21
+108945,26843.75764,318953.7877,0,21
+108946,27420.25141,319047.5652,0,21
+108947,27967.37968,319789.544,0,21
+108948,28647.24601,319629.8269,0,21
+108949,29005.12079,320502.9101,0,21
+108950,29652.81194,320963.9915,0,21
+108951,30237.63929,320915.8475,0,21
+108952,30561.56109,321475.3542,0,21
+108953,31465.2875,322103.9333,0,21
+108954,31802.73063,322215.9802,0,21
+108955,32374.70417,322910.3917,0,21
+108956,33007.53575,323294.6791,0,21
+108957,33610.26295,322933.5518,0,21
+108958,34138.50573,324474.1253,0,21
+108959,34701.32876,323983.7265,0,21
+108960,35142.32589,325022.7727,0,21
+108961,56579.86583,378720.7711,0,21
+108962,57632.07353,380708.6426,0,21
+108963,58035.34443,380430.0237,0,21
+108964,59291.81271,380330.953,0,21
+108965,59620.48938,379572.503,0,21
+108966,59545.43604,379686.6603,0,21
+108967,60221.21061,378848.2938,0,21
+108968,60396.30475,381744.7993,0,21
+108969,60883.55184,385904.4194,0,21
+108970,61159.15663,382441.894,0,21
+108971,61955.09853,382914.4149,0,21
+108972,62235.83242,382881.9762,0,21
+108973,62618.7823,382726.2026,0,21
+108974,62932.37896,382505.3389,0,21
+108975,63266.25293,382021.3733,0,21
+108976,62607.68524,381496.4079,0,21
+108977,62766.59338,381468.1037,0,21
+108978,62751.54227,380637.1029,0,21
+108979,63185.77292,380938.2946,0,21
+108980,63327.42507,380044.4546,0,21
+108981,63569.62764,380582.8746,0,21
+108982,63862.02826,379193.1518,0,21
+108983,63915.36459,379456.9573,0,21
+108984,64045.56941,378171.7282,0,21
+108985,64281.5702,378020.5643,0,21
+108986,64462.34342,377563.2812,0,21
+108987,64589.92264,376564.8899,0,21
+108988,64776.66527,376103.1246,0,21
+108989,64767.77787,375923.8038,0,21
+108990,65124.52403,374886.4104,0,21
+108991,65114.34323,374465.2201,0,21
+108992,65729.41104,374467.8419,0,21
+108993,65643.04239,374057.2197,0,21
+108994,65971.99115,373727.811,0,21
+108995,66439.70206,373385.3023,0,21
+108996,66564.99535,373267.7026,0,21
+108997,66667.16161,372942.2361,0,21
+108998,67182.29265,372692.1915,0,21
+108999,67228.34865,372182.4537,0,21
+109000,67742.57026,372527.7531,0,21
+109001,67747.55976,371447.379,0,21
+109002,68310.7721,371901.5385,0,21
+109003,68305.05811,370690.6554,0,21
+109004,68630.57996,371179.7234,0,21
+109005,69003.85608,370906.0334,0,21
+109006,69040.3925,370308.9333,0,21
+109007,69643.23167,370090.0416,0,21
+109008,69664.45344,369550.8484,0,21
+109009,69886.50162,369966.0676,0,21
+109010,70445.62116,369013.0826,0,21
+109011,70262.84432,368970.6646,0,21
+109012,71077.71971,368756.8403,0,21
+109013,70877.09505,368194.8507,0,21
+109014,71305.6429,368212.4815,0,21
+109015,71782.96706,368065.8687,1316.10547,21
+109016,71643.47206,367642.4146,1034.44431,21
+109017,72352.76364,366859.1942,1034.46342,21
+109018,72553.5023,366965.9128,1455.748053,21
+109019,75505.7191,367091.3174,1594.58847,21
+109020,74530.29732,365723.9838,1594.633997,21
+109021,88471.33204,391357.6373,6044.611424,21
+109022,90235.07499,395845.7323,6740.249501,21
+109023,90770.19644,398912.1835,7517.215886,21
+109024,91651.08246,401728.6192,7560.866193,21
+109025,92592.69727,406022.3529,7695.522353,21
+109026,93159.48389,408012.049,8221.952301,21
+109027,93982.26654,411857.8126,8362.181946,21
+109028,96566.9457,415034.8998,8640.782081,21
+109029,101114.9527,418304.4519,8796.714537,21
+109030,99574.56642,421440.1993,9300.617972,21
+109031,100582.5451,424879.9277,9334.504577,21
+109032,101063.2087,427705.7725,9610.356033,21
+109033,102128.9307,430959.5822,9989.879887,21
+109034,103407.7106,434245.2603,10143.93341,21
+109035,104494.9626,438037.2884,10417.69526,21
+109036,105318.3616,439631.7476,10555.308,21
+109037,106551.6674,444714.0755,10947.3811,21
+109038,107645.1969,446620.6071,11100.23889,21
+109039,108490.7758,449860.5223,11356.02272,21
+109040,109648.6334,453200.5889,11626.95954,21
+109041,110748.5289,456383.6497,11897.29633,21
+109042,111638.1688,458786.8076,12033.52122,21
+109043,112671.9243,462928.2534,12303.01781,21
+109044,113866.7974,465511.9554,12571.95297,21
+109045,114423.2277,468146.4578,12824.88704,21
+109046,115797.0209,471488.3079,13092.78799,21
+109047,116927.9998,475055.8117,13111.21913,21
+109048,117565.186,477081.2259,13626.98626,21
+109049,118918.8819,490596.2465,13645.56592,21
+109050,119671.6319,491672.755,14012.76455,21
+109051,120715.2462,494966.2372,14177.91422,21
+109052,121686.9696,500125.4081,14428.18671,21
+109053,122869.2593,501819.6693,14678.05883,21
+109054,123682.9519,507567.2239,14972.88643,21
+109055,124411.4048,510363.5627,15076.80564,21
+109056,125818.2107,513155.3823,15485.62148,21
+109057,126732.5726,517968.0633,15489.79586,21
+109058,127443.6444,521323.8391,15996.79901,21
+109059,128750.8657,523978.9963,16016.19601,21
+109060,129602.7937,527499.2433,16293.66078,21
+109061,130448.5703,531384.6645,16526.0756,21
+109062,131612.9228,535415.4264,16802.7537,21
+109063,132309.1132,537630.7265,17049.38668,21
+109064,133661.3664,541262.5669,17310.49472,21
+109065,134190.3263,545657.579,17345.16924,21
+109066,135400.476,548256.6849,17831.60088,21
+109067,136315.5052,551321.4231,17851.74459,21
+109068,137244.7035,555987.6529,18238.96986,21
+109069,138315.6583,557206.1905,18357.05149,21
+109070,139031.585,562200.7873,18645.73164,21
+109071,140208.316,565704.4712,18875.76605,21
+109072,141256.1016,567554.8709,19134.65895,21
+109073,142262.5125,571535.3952,19184.41868,21
+109074,143748.6328,574907.5911,19651.50034,21
+109075,144442.8074,578229.428,19686.95188,21
+109076,146001.8404,580437.9623,20041.74261,21
+109077,146635.7489,585926.424,20202.81501,21
+109078,148057.4719,586813.0222,20445.96929,21
+109079,149207.7877,591287.7693,21005.41879,21
+109080,150319.3929,594530.0056,21027.72426,21
+109081,152690.4119,594076.6744,21781.63221,21
+109082,155058.9532,594557.2137,21747.97148,21
+109083,157429.4108,594949.0617,22182.76739,21
+109084,159658.4192,594525.337,22450.84388,21
+109085,162462.0647,595139.9048,22652.31966,21
+109086,164448.5137,594057.7429,22946.21901,21
+109087,166969.0608,594479.3453,23119.03322,21
+109088,169415.9382,594427.2762,23537.59977,21
+109089,171735.561,593017.1184,23722.04482,21
+109090,174078.7167,594708.57,23893.34102,21
+109091,176489.9867,593265.6194,24310.53773,21
+109092,178962.3075,593470.9053,24373.89358,21
+109093,181139.6441,593021.9775,24773.88236,21
+109094,183800.3623,594008.2841,24986.55067,21
+109095,185905.2577,591523.3841,25239.14871,21
+109096,188201.8202,593784.7312,25436.28215,21
+109097,196235.9306,591211.5512,25851.10527,21
+109098,201014.6902,593526.163,28391.22378,21
+109099,203817.4412,591023.3932,28251.96074,21
+109100,206720.8361,591914.1762,28979.96734,21
+109101,208581.4441,591485.1151,29501.14721,21
+109102,211523.856,590573.7021,30072.10328,21
+109103,213654.8933,591249.2532,30845.58766,21
+109104,215696.871,590338.9835,30985.43363,21
+109105,218107.9774,589268.8683,32036.40473,21
+109106,220353.3734,591349.1044,32227.80478,21
+109107,222592.4022,588738.4056,33022.67543,21
+109108,224619.6314,588991.9857,33449.27253,21
+109109,226769.8756,588973.325,34131.14383,21
+109110,228942.4336,589313.6483,34855.88299,21
+109111,231098.6129,587359.7727,35031.30235,21
+109112,233081.6561,588469.8183,35830.72337,21
+109113,235341.0889,587393.4881,36131.43386,21
+109114,237078.069,586350.0411,36816.20179,21
+109115,239330.9336,587404.7629,37326.35979,21
+109116,241359.0809,586104.1019,37787.27096,21
+109117,243290.9818,585787.0179,38422.05639,21
+109118,245309.655,585829.9596,38893.74282,21
+109119,247368.1585,585065.15,39261.69077,21
+109120,249324.5222,584728.6016,40154.03524,21
+109121,251279.4074,584024.1589,40428.6293,21
+109122,253242.4138,582069.4714,41093.85534,21
+109123,255516.9192,583804.1965,43000.99302,21
+109124,257011.6234,582897.7274,43934.74696,21
+109125,259532.5589,580543.5778,44326.67561,21
+109126,261139.1395,582230.6715,44952.56805,21
+109127,263100.3461,580914.3219,45236.60684,21
+109128,264956.0318,580981.0511,46158.2327,21
+109129,267198.9151,579381.4492,46257.74939,21
+109130,268808.8817,579885.258,46929.29808,21
+109131,270776.2335,579185.7259,47461.02328,21
+109132,272628.0126,579095.552,47728.296,21
+109133,274635.572,577708.091,48479.4625,21
+109134,276509.123,578163.7482,48727.12381,21
+109135,278332.445,577120.3331,49439.81806,21
+109136,280443.0424,576620.513,49765.43156,21
+109137,281823.0889,576586.9704,50222.9214,21
+109138,283958.5816,574882.9466,50752.32631,21
+109139,285830.2732,575586.992,51013.76808,21
+109140,287460.0406,574392.5668,51741.83039,21
+109141,290130.993,584716.4399,54067.63548,21
+109142,290400.1851,587338.5084,54993.54853,21
+109143,290474.9527,589467.6481,55874.2407,21
+109144,290368.6104,592498.0621,56262.87089,21
+109145,290938.4285,592934.6341,57131.77823,21
+109146,290192.8883,596580.5084,57697.13909,21
+109147,290829.3885,598128.1359,58548.2931,21
+109148,290751.2298,600016.2083,59135.74773,21
+109149,290477.7518,602876.6449,59424.04129,21
+109150,290868.181,604599.1917,60504.2685,21
+109151,290397.7102,606318.928,61068.61244,21
+109152,290619.1459,608826.9508,61579.24916,21
+109153,290728.2519,611007.8531,62295.45918,21
+109154,290354.6338,611882.5247,62973.40301,21
+109155,290579.6696,614509.6384,63570.29314,21
+109156,290427.7509,616637.8734,64211.43024,21
+109157,290428.407,617664.575,64772.53856,21
+109158,290244.9015,621308.142,65669.18269,21
+109159,290280.013,621198.2817,65995.54094,21
+109160,290240.899,624488.8903,66889.10024,21
+109161,289799.7711,626644.869,67246.88107,21
+109162,290068.5981,627465.9375,68265.67423,21
+109163,289967.8625,630565.762,69211.61289,21
+109164,289969.0132,631850.6851,69793.39559,21
+109165,289628.3697,633526.5621,70398.26363,21
+109166,289970.269,635263.4732,71197.84631,21
+109167,289541.4449,637732.498,71816.27307,21
+109168,289345.8018,639051.7511,72739.12907,21
+109169,289673.577,640925.3145,72992.40241,21
+109170,289366.1897,642893.8323,74138.96877,21
+109171,289031.0771,644780.1668,75066.55246,21
+109172,288980.9068,646292.4451,76032.66747,21
+109173,289113.568,648677.6253,76187.9304,21
+109174,288771.9706,650506.4761,77384.51979,21
+109175,288689.8188,651912.6348,78067.56506,21
+109176,288617.1626,654551.2862,78952.7009,21
+109177,288414.9236,655442.4614,79296.32786,21
+109178,288146.4103,657402.9137,80648.56727,21
+109179,288385.1575,660295.3953,80831.76437,21
+109180,287951.9961,661040.5977,82091.40337,21
+109181,287438.3412,663384.777,82575.63831,21
+109182,288025.7713,665317.6909,83373.2092,21
+109183,287138.5561,667033.514,84035.5105,21
+109184,287301.6944,668242.0747,85079.57456,21
+109185,287288.1248,671264.5609,85540.69113,21
+109186,286916.2396,671299.8511,86542.95923,21
+109187,286436.1619,675024.5387,87043.69476,21
+109188,286835.9226,675544.9028,88033.31661,21
+109189,286437.478,678052.7044,88681.7728,21
+109190,285803.2666,679696.3111,89417.25018,21
+109191,286113.0588,681077.2939,90308.1101,21
+109192,285770.7248,683349.7413,90673.7441,21
+109193,285383.4242,685172.8092,92000.05876,21
+109194,285428.6899,686615.7461,92216.04684,21
+109195,285430.5382,689048.3879,93495.6305,21
+109196,284655.4866,690572.8663,93823.19386,21
+109197,284836.4448,692312.9088,94816.0118,21
+109198,284387.8696,693286.9931,95300.15127,21
+109199,284267.5458,696315.7964,96743.26835,21
+109200,284258.2545,697363.2641,96734.81266,21
+109201,284022.2051,698795.4665,97604.61964,21
+109202,284901.0059,701172.2874,98216.02365,21
+109203,284624.5007,702765.4058,99188.43408,21
+109204,285380.3189,704143.8812,102116.0867,21
+109205,285534.004,705198.2793,103047.1035,21
+109206,285835.2104,705982.7875,103218.3229,21
+109207,286102.2272,708494.4563,105000.7907,21
+109208,286360.7326,709301.5324,105617.7665,21
+109209,286891.3072,709591.903,106929.9749,21
+109210,286595.9861,712665.9205,107724.0378,21
+109211,287823.4101,712513.9365,108765.7889,21
+109212,287086.3648,714724.396,109836.5084,21
+109213,287898.172,715682.5367,110976.0864,21
+109214,288398.295,716361.5041,111447.7265,21
+109215,288192.0641,718705.5626,112951.1009,21
+109216,288378.0262,719032.7777,113681.8189,21
+109217,289179.95,720949.3696,114689.8425,21
+109218,289049.5273,722256.9706,115707.7896,21
+109219,290716.2173,722797.2882,116933.8011,21
+109220,289966.1273,725243.0448,117045.2542,21
+109221,291601.4609,725203.1169,120354.314,21
+109222,290998.0857,726884.4575,122721.5176,21
+109223,291444.8436,729188.113,123020.9999,21
+109224,292005.6048,729162.0162,124383.7949,21
+109225,292164.0169,731316.7931,126272.4157,21
+109226,292603.6834,732115.5437,126894.0645,21
+109227,293102.1323,733110.053,129065.9034,21
+109228,293241.1471,735353.8808,129802.3927,21
+109229,293445.381,735239.022,130983.9382,21
+109230,294121.6514,737385.0701,132795.2188,21
+109231,294042.1555,739119.109,133918.8119,21
+109232,294845.8339,739291.5399,134978.8607,21
+109233,294885.724,741379.1713,136778.8708,21
+109234,294923.77,742025.7568,137149.7761,21
+109235,295946.2041,743223.7173,139443.7189,21
+109236,295612.695,744625.4589,140175.1478,21
+109237,296087.7202,746443.3609,141757.8202,21
+109238,296710.9684,746551.7683,142533.5159,21
+109239,296408.7319,749060.2814,144360.9407,21
+109240,297225.7243,749529.0844,145380.763,21
+109241,297304.8647,752122.2812,146591.5614,21
+109242,297740.8815,752514.7331,148038.2436,21
+109243,297859.9042,753710.322,149034.6325,21
+109244,298190.4945,755048.2682,150630.2138,21
+109245,298596.1029,757072.4993,151582.4121,21
+109246,298822.0414,757577.3431,152898.9398,21
+109247,298786.0276,758337.3286,154520.8445,21
+109248,299835.0255,760873.9851,155181.0513,21
+109249,299342.3579,760656.0919,156567.1052,21
+109250,300124.4919,763170.1661,158216.7071,21
+109251,300154.6252,763650.5179,159285.1738,21
+109252,300534.8994,765182.6449,160012.1783,21
+109253,300698.5579,766039.9986,162075.6797,21
+109254,301137.588,767726.1254,162652.9891,21
+109255,301119.5812,769196.4157,164239.0347,21
+109256,301838.7706,768903.8674,165108.4264,21
+109257,301818.0475,771782.8956,167027.4248,21
+109258,301801.538,772066.9563,167663.4397,21
+109259,302317.0455,774048.1614,168720.9224,21
+109260,302827.0085,773859.573,170909.2548,21
+109261,0,0,0,21
+109262,0,0,0,21
+109263,265232.0521,0,0,21
+109264,0,0,0,21
+109265,0,337.8610625,1727296.505,21
+109266,339720.2913,0,0,21
+109267,0,0,0,21
+109268,0,0,0,21
+109269,0,0,0,21
+109270,0,0,0,21
+109271,0,0,0,21
+109272,0,0,0,21
+109273,0,0,0,21
+109274,0,0,0,21
+109275,0,0,0,21
+109276,0,368341.5602,0,21
+109277,0,0,0,21
+109278,0,0,0,21
+109279,0,0,0,21
+109280,0,0,0,21
+109281,0,0,0,21
+109282,0,0,0,21
+109283,0,0,0,21
+109284,0,0,0,21
+109285,0,0,0,21
+109286,0,0,0,21
+109287,0,0,0,21
+109288,0,0,0,21
+109289,0,0,0,21
+109290,0,0,0,21
+109291,0,0,0,21
+109292,0,0,0,21
+109293,0,0,0,21
+109294,0,0,0,21
+109295,0,0,0,21
+109296,0,0,0,21
+109297,0,0,0,21
+109298,0,0,0,21
+109299,0,0,1600340.467,21
+109300,0,0,0,21
+109301,339717.6935,0,0,21
+109302,0,0,0,21
+109303,0,0,0,21
+109304,0,0,0,21
+109305,0,0,0,21
+109306,0,0,0,21
+109307,0,0,0,21
+109308,0,0,0,21
+109309,0,0,0,21
+109310,0,0,0,21
+109311,0,0,0,21
+109312,0,0,0,21
+109313,0,0,0,21
+109314,0,0,0,21
+109315,0,368327.2191,0,21
+109316,0,0,0,21
+109317,0,0,0,21
+109318,0,0,0,21
+109319,0,0,0,21
+109320,0,0,0,15.6
+109321,0,0,0,15.6
+109322,0,0,0,15.6
+109323,0,0,0,15.6
+109324,0,0,0,15.6
+109325,0,0,0,15.6
+109326,0,0,0,15.6
+109327,0,0,0,15.6
+109328,0,0,0,15.6
+109329,0,0,0,15.6
+109330,0,0,0,15.6
+109331,0,0,0,15.6
+109332,0,0,0,15.6
+109333,0,0,0,15.6
+109334,0,0,1486052.256,15.6
+109335,0,0,0,15.6
+109336,339722.3659,0,0,15.6
+109337,0,0,0,15.6
+109338,0,0,0,15.6
+109339,0,0,0,15.6
+109340,0,0,0,15.6
+109341,0,0,0,15.6
+109342,0,0,0,15.6
+109343,0,0,0,15.6
+109344,0,0,0,15.6
+109345,0,0,0,15.6
+109346,0,0,0,15.6
+109347,0,0,0,15.6
+109348,0,0,0,15.6
+109349,0,0,0,15.6
+109350,0,0,0,15.6
+109351,0,0,0,15.6
+109352,0,0,0,15.6
+109353,0,0,0,15.6
+109354,0,368328.3214,0,15.6
+109355,0,0,0,15.6
+109356,0,0,0,15.6
+109357,0,0,0,15.6
+109358,0,0,0,15.6
+109359,0,0,0,15.6
+109360,0,0,0,15.6
+109361,0,0,0,15.6
+109362,0,0,0,15.6
+109363,0,0,0,15.6
+109364,0,0,0,15.6
+109365,0,0,0,15.6
+109366,0,0,0,15.6
+109367,0,0,0,15.6
+109368,0,0,0,15.6
+109369,0,0,1385308.863,15.6
+109370,0,0,0,15.6
+109371,339735.1189,0,0,15.6
+109372,0,0,0,15.6
+109373,0,0,0,15.6
+109374,0,0,0,15.6
+109375,0,0,0,15.6
+109376,0,0,0,15.6
+109377,0,0,0,15.6
+109378,0,0,0,15.6
+109379,0,0,0,15.6
+109380,0,0,0,15.6
+109381,0,0,0,15.6
+109382,0,0,0,15.6
+109383,0,0,0,15.6
+109384,0,0,0,15.6
+109385,0,0,0,15.6
+109386,0,0,0,15.6
+109387,0,0,0,15.6
+109388,0,0,0,15.6
+109389,0,0,0,15.6
+109390,0,0,0,15.6
+109391,0,0,0,15.6
+109392,0,0,0,15.6
+109393,0,0,0,15.6
+109394,0,368328.6087,0,15.6
+109395,0,0,0,15.6
+109396,0,0,0,15.6
+109397,0,0,0,15.6
+109398,0,0,0,15.6
+109399,0,0,0,15.6
+109400,0,0,0,15.6
+109401,0,0,0,15.6
+109402,0,0,0,15.6
+109403,0,0,0,15.6
+109404,0,0,1297487.529,15.6
+109405,0,0,0,15.6
+109406,0,0,0,15.6
+109407,339729.8058,0,0,15.6
+109408,0,0,0,15.6
+109409,0,0,0,15.6
+109410,0,0,0,15.6
+109411,0,0,0,15.6
+109412,0,0,0,15.6
+109413,0,0,0,15.6
+109414,0,0,0,15.6
+109415,0,0,0,15.6
+109416,0,0,0,15.6
+109417,0,0,0,15.6
+109418,0,0,0,15.6
+109419,0,0,0,15.6
+109420,0,0,0,15.6
+109421,0,0,0,15.6
+109422,0,0,0,15.6
+109423,0,0,0,15.6
+109424,0,0,0,15.6
+109425,0,0,0,15.6
+109426,0,0,0,15.6
+109427,0,0,0,15.6
+109428,0,0,0,15.6
+109429,0,0,0,15.6
+109430,0,0,0,15.6
+109431,0,0,451335.3036,15.6
+109432,0,0,0,15.6
+109433,0,0,0,15.6
+109434,0,368316.1267,0,15.6
+109435,0,0,0,15.6
+109436,0,0,0,15.6
+109437,0,0,0,15.6
+109438,0,0,0,15.6
+109439,0,0,1051274.566,15.6
+109440,0,0,0,15.6
+109441,0,0,0,15.6
+109442,0,0,0,15.6
+109443,339716.7652,0,63019.14506,15.6
+109444,0,0,62279.98449,15.6
+109445,0,0,61561.80277,15.6
+109446,0,0,60857.57159,15.6
+109447,0,0,60074.71017,15.6
+109448,0,0,0,15.6
+109449,0,0,0,15.6
+109450,0,0,59090.56593,15.6
+109451,0,0,0,15.6
+109452,0,0,0,15.6
+109453,0,0,0,15.6
+109454,0,0,0,15.6
+109455,0,0,58487.41219,15.6
+109456,0,0,0,15.6
+109457,0,0,0,15.6
+109458,0,0,58195.79986,15.6
+109459,0,0,0,15.6
+109460,0,0,0,15.6
+109461,0,0,0,15.6
+109462,0,0,0,15.6
+109463,0,0,0,15.6
+109464,0,0,0,15.6
+109465,0,0,0,15.6
+109466,0,0,57738.12895,15.6
+109467,0,0,0,15.6
+109468,0,0,0,15.6
+109469,0,0,0,15.6
+109470,0,0,0,15.6
+109471,0,0,57065.64907,15.6
+109472,0,0,0,15.6
+109473,0,0,0,15.6
+109474,0,368301.8559,953048.9503,15.6
+109475,0,0,53975.00385,15.6
+109476,0,0,53580.1468,15.6
+109477,0,0,53198.97777,15.6
+109478,0,0,52811.80144,15.6
+109479,339702.4987,0,52436.93029,15.6
+109480,0,0,52317.23338,15.6
+109481,0,0,51453.9067,15.6
+109482,0,0,58893.90893,15.6
+109483,0,0,222166.756,15.6
+109484,0,0,1116.720338,15.6
+109485,0,0,200582.1491,15.6
+109486,0,0,97217.67036,15.6
+109487,0,0,188506.3054,15.6
+109488,0,0,1448.725897,15.6
+109489,0,0,182133.9735,15.6
+109490,0,0,82232.36988,15.6
+109491,0,0,141036.7892,15.6
+109492,0,0,1712.091124,15.6
+109493,0,0,168009.5441,15.6
+109494,0,0,21685.61209,15.6
+109495,0,0,49637.49861,15.6
+109496,0,0,159472.7163,15.6
+109497,0,0,1979.733016,15.6
+109498,0,0,152645.6508,15.6
+109499,0,0,71014.36402,15.6
+109500,0,0,117739.9893,15.6
+109501,0,0,0,15.6
+109502,0,0,0,15.6
+109503,0,0,0,15.6
+109504,0,0,0,15.6
+109505,0,0,0,15.6
+109506,0,0,0,15.6
+109507,0,0,0,15.6
+109508,0,0,0,15.6
+109509,0,0,678716.2711,15.6
+109510,0,0,0,15.6
+109511,0,0,0,15.6
+109512,0,0,0,15.6
+109513,0,0,0,15.6
+109514,0,368289.3192,0,15.6
+109515,339692.411,0,0,15.6
+109516,0,0,0,15.6
+109517,0,0,0,15.6
+109518,0,0,0,15.6
+109519,0,0,0,15.6
+109520,0,0,0,15.6
+109521,0,0,0,15.6
+109522,0,0,0,15.6
+109523,0,0,0,15.6
+109524,0,0,0,15.6
+109525,0,0,0,15.6
+109526,0,0,0,15.6
+109527,0,0,0,15.6
+109528,0,0,116258.785,15.6
+109529,0,0,3038.900081,15.6
+109530,0,0,137269.8292,15.6
+109531,0,0,63502.45682,15.6
+109532,0,0,107626.2892,15.6
+109533,0,0,3650.092133,15.6
+109534,0,0,126732.741,15.6
+109535,0,0,18904.74892,15.6
+109536,0,0,34356.62002,15.6
+109537,0,0,33082.22021,15.6
+109538,0,0,32142.54078,15.6
+109539,0,0,31883.01418,15.6
+109540,0,0,31750.94827,15.6
+109541,0,0,31638.44219,15.6
+109542,0,0,31525.89063,15.6
+109543,0,0,367092.7796,15.6
+109544,0,0,642857.4715,15.6
+109545,0,0,82160.80042,15.6
+109546,0,0,112537.1736,15.6
+109547,0,0,5543.025804,15.6
+109548,0,0,112677.2544,15.6
+109549,0,0,58386.44572,15.6
+109550,0,0,107951.0318,15.6
+109551,339690.0161,0,5888.447724,15.6
+109552,0,0,105651.6966,15.6
+109553,0,0,21318.73758,15.6
+109554,0,368281.6631,32312.12054,15.6
+109555,0,0,80434.91527,15.6
+109556,0,0,0,15.6
+109557,0,0,0,15.6
+109558,0,0,0,15.6
+109559,41211.98791,0,0,15.6
+109560,1801.58368,0,0,15.6
+109561,1898.944386,0,0,15.6
+109562,15125.01264,0,0,15.6
+109563,10334.18209,0,0,15.6
+109564,10056.42012,0,0,15.6
+109565,10481.15242,0,354226.9423,15.6
+109566,10450.77435,0,0,15.6
+109567,10523.26895,0,0,15.6
+109568,10539.99392,0,0,15.6
+109569,10539.99573,0,0,15.6
+109570,10613.68221,0,0,15.6
+109571,10613.65651,0,0,15.6
+109572,10618.24978,0,0,15.6
+109573,10654.20162,0,0,15.6
+109574,10718.84644,0,0,15.6
+109575,10715.70853,0,0,15.6
+109576,10724.73888,0,0,15.6
+109577,10775.64805,0,0,15.6
+109578,10815.93293,0,0,15.6
+109579,10802.5131,0,708617.4225,15.6
+109580,10838.29094,0,0,15.6
+109581,10880.25278,0,0,15.6
+109582,10881.4225,0,0,15.6
+109583,10926.25233,0,105205.9507,15.6
+109584,10920.23369,0,21691.16805,15.6
+109585,10969.44262,0,32579.36733,15.6
+109586,10997.50173,0,110815.8112,15.6
+109587,350679.8268,0,7800.045272,15.6
+109588,11041.90242,0,104142.5699,15.6
+109589,0,0,56003.77399,15.6
+109590,0,0,95787.09683,15.6
+109591,0,0,8419.314279,15.6
+109592,0,0,95229.14274,15.6
+109593,0,0,19652.61381,15.6
+109594,0,368278.9479,29844.5278,15.6
+109595,0,0,23662.63797,15.6
+109596,0,0,35211.25252,15.6
+109597,51572.96554,0,32098.86631,15.6
+109598,0,0,100780.5509,15.6
+109599,2756.721712,0,9511.119469,15.6
+109600,15112.75275,0,88345.41847,15.6
+109601,12423.24246,0,17943.19609,15.6
+109602,10782.96774,0,37222.19473,15.6
+109603,11509.18334,0,89389.93413,15.6
+109604,11507.6983,0,10032.30823,15.6
+109605,11556.92666,0,80826.63375,15.6
+109606,11529.82773,0,40337.24095,15.6
+109607,11568.55372,0,81572.43446,15.6
+109608,11561.55402,0,10383.83218,15.6
+109609,11580.30072,0,77693.68864,15.6
+109610,11561.55264,0,18322.7602,15.6
+109611,11611.95482,0,26715.56867,15.6
+109612,11600.94496,0,0,15.6
+109613,11595.97013,0,0,15.6
+109614,11632.59895,0,524721.0815,15.6
+109615,11632.73797,0,0,15.6
+109616,11650.89444,0,0,15.6
+109617,11616.78682,0,339819.5329,15.6
+109618,11691.8287,0,0,15.6
+109619,11655.76443,0,0,15.6
+109620,11669.91788,0,0,15.6
+109621,761077.4658,114337.033,129962.3777,15.6
+109622,84368.99999,41381.35487,161175.923,15.6
+109623,79179.23636,9375.32108,71623.60501,15.6
+109624,601758.2606,27537.39923,122826.9259,15.6
+109625,172164.6491,30095.7237,57194.29741,15.6
+109626,182107.0054,25167.82649,121603.3237,15.6
+109627,147656.4533,25630.20329,58547.29269,15.6
+109628,147550.2892,25655.24756,67024.27564,15.6
+109629,232365.1821,25563.49353,127803.1633,15.6
+109630,176881.9891,25510.13595,49883.89909,15.6
+109631,172514.869,25517.18567,126136.6244,15.6
+109632,183880.374,25409.04752,92146.70255,15.6
+109633,179837.2699,25376.87789,113320.9911,15.6
+109634,179683.6988,393651.9149,49713.3553,15.6
+109635,179292.9889,25300.57407,122517.4002,15.6
+109636,179120.031,25333.82572,83512.81228,15.6
+109637,179313.6551,25287.66164,119148.4568,15.6
+109638,178783.2364,25259.32811,49741.88926,15.6
+109639,178312.4142,25264.22723,122419.3895,15.6
+109640,178939.5627,25235.89276,56310.25018,15.6
+109641,178230.1521,25226.53644,65601.04244,15.6
+109642,178456.2053,25212.37276,66619.20675,15.6
+109643,177994.0531,25199.97106,80866.52049,15.6
+109644,178183.3242,25217.101,83477.69543,15.6
+109645,178037.1523,25199.96511,150360.6512,15.6
+109646,177751.6457,25174.67334,61940.15596,15.6
+109647,178032.7839,25152.84267,136360.1484,15.6
+109648,177588.9939,25194.41651,641476.0229,15.6
+109649,177655.4836,25204.76726,132789.3104,15.6
+109650,177929.4018,25170.80883,63252.9531,15.6
+109651,32331.18959,0,94033.88858,15.6
+109652,32263.63332,0,22461.23689,15.6
+109653,32188.82792,0,31866.20159,15.6
+109654,32143.63181,75335.92764,137653.2566,15.6
+109655,32096.4382,1833.422423,68319.80633,15.6
+109656,32096.44239,26826.26151,77159.54335,15.6
+109657,31974.34336,27656.53658,82119.2407,15.6
+109658,31955.89251,24943.2161,416005.1185,15.6
+109659,551206.6295,25292.43219,68569.06955,15.6
+109660,339699.7612,25267.60914,129522.8284,15.6
+109661,152487.6781,25288.61005,151976.6552,15.6
+109662,240806.2462,25294.18333,66763.62018,15.6
+109663,157795.1446,25285.57019,150309.9649,15.6
+109664,180455.8039,25340.31257,111546.1698,15.6
+109665,177952.9107,25313.82712,154931.8287,15.6
+109666,177254.7188,25331.75831,66987.03365,15.6
+109667,177236.4793,25313.81587,150403.6935,15.6
+109668,177260.9296,25411.52268,75058.76047,15.6
+109669,176666.4221,25331.74133,90120.61542,15.6
+109670,177104.0728,393711.879,169911.8336,15.6
+109671,176631.6858,25483.347,53651.41958,15.6
+109672,176647.6346,25471.27592,141940.6225,15.6
+109673,176419.6031,25455.32376,100133.6417,15.6
+109674,176301.624,25490.92472,139219.329,15.6
+109675,176421.8945,25552.59964,53654.91688,15.6
+109676,176063.3451,25490.91283,137896.3659,15.6
+109677,176132.2055,25570.44223,92902.02894,15.6
+109678,175857.1532,25530.0881,134396.9737,15.6
+109679,175963.7144,25602.09339,53597.72489,15.6
+109680,175818.5956,25581.29172,136948.2551,17.8
+109681,1089142.864,1400065,1371062.253,17.8
+109682,1013613.484,1229702.807,1894602.601,17.8
+109683,496345.6523,278361.0223,964324.0855,17.8
+109684,604962.7803,387266.2086,569350.6852,17.8
+109685,409885.4572,513933.0815,728884.0722,17.8
+109686,468944.0014,434850.4848,791509.2301,17.8
+109687,449655.9938,436513.4237,732018.2452,17.8
+109688,438038.228,425187.0324,827304.4521,17.8
+109689,89687.101,425711.334,688133.8572,17.8
+109690,88533.46713,422902.3093,788377.1187,17.8
+109691,817393.5413,420861.304,779876.1229,17.8
+109692,406204.6185,418416.5896,864894.2226,17.8
+109693,368648.3718,415699.5754,711048.5831,17.8
+109694,495565.6353,414128.6338,827131.4717,17.8
+109695,774579.9367,411852.1062,726921.9316,17.8
+109696,443208.2475,411138.4376,738787.5656,17.8
+109697,431609.4939,408210.2567,746603.8244,17.8
+109698,432861.2532,407272.1333,754145.454,17.8
+109699,433375.6554,405160.669,812765.365,17.8
+109700,431831.0605,403692.0974,999154.9681,17.8
+109701,431551.9721,402666.3488,767739.3926,17.8
+109702,431232.1565,400077.5451,906362.5614,17.8
+109703,430294.9641,399381.3053,916786.0933,17.8
+109704,430664.5698,397989.9181,1019889.146,17.8
+109705,429771.3492,396268.1923,806295.5087,17.8
+109706,429531.8032,763061.2608,936115.4699,17.8
+109707,416257.8083,393193.3541,819759.3131,17.8
+109708,417342.3331,392570.3165,866618.1265,17.8
+109709,415773.9834,390682.4913,1034291.171,17.8
+109710,415497.6888,389126.3201,831133.3435,17.8
+109711,415808.9527,71236.28323,413093.4549,17.8
+109712,415419.4083,70863.38105,278671.8655,17.8
+109713,414939.738,70579.93622,389667.821,17.8
+109714,415092.4127,850918.4113,1923224.351,17.8
+109715,414769.4656,97869.36556,918880.6272,17.8
+109716,414497.923,318483.407,1520291.425,17.8
+109717,414167.0423,445011.7787,1211802.919,17.8
+109718,414225.9562,349133.8309,829395.1063,17.8
+109719,414434.7526,362604.9589,901359.3168,17.8
+109720,413568.6941,365674.2765,907719.7258,17.8
+109721,71824.86171,361560.5146,1030239.547,17.8
+109722,71786.159,360148.0041,809820.2061,17.8
+109723,796744.5099,359572.3972,937902.5703,17.8
+109724,374556.649,357849.2868,824539.1675,17.8
+109725,347208.8893,357178.4716,841045.9283,17.8
+109726,475294.2742,356019.2609,840452.1282,17.8
+109727,417660.8464,354704.7187,849179.0854,17.8
+109728,419047.1788,353201.706,929382.6633,17.8
+109729,409795.0926,353039.9271,1166122.224,17.8
+109730,756088.5917,350487.0454,853467.157,17.8
+109731,414145.7196,350986.8777,990456.2496,17.8
+109732,413704.4228,348762.304,1000162.395,17.8
+109733,413450.6402,348220.471,1064588.925,17.8
+109734,414005.2269,346701.1531,827425.533,17.8
+109735,413128.0679,346758.0329,969298.4924,17.8
+109736,446005.2361,344206.5231,833578.5952,17.8
+109737,414156.5601,343653.8749,878102.1643,17.8
+109738,424847.2148,342840.7644,1059381.363,17.8
+109739,426499.3774,340958.6974,941342.4283,17.8
+109740,424162.4191,339301.7683,844187.1381,20
+109741,1115682.825,2949406.142,2634669.398,20
+109742,700847.4457,851438.6167,1860066.857,20
+109743,277592.1856,432766.7788,744709.4128,20
+109744,395750.337,507864.9568,914403.3065,20
+109745,457739.2876,707039.2198,1008908.995,20
+109746,402223.7568,634808.3504,980763.8755,20
+109747,406267.0524,603912.9909,1078080.309,20
+109748,405497.7786,616411.9756,844251.6582,20
+109749,404070.3877,613008.4243,974096.686,20
+109750,402687.7597,614335.9414,972702.1484,20
+109751,402223.4465,611540.1514,1090773.362,20
+109752,401269.0909,611471.3579,846232.605,20
+109753,399841.8324,610176.2423,981364.8214,20
+109754,399134.4874,608207.075,979056.4789,20
+109755,398583.1754,608789.2124,1098128.476,20
+109756,397837.4575,607222.6464,849103.4356,20
+109757,396457.5957,607155.9358,986231.275,20
+109758,396039.1965,605632.6963,984577.8146,20
+109759,395913.6,604749.6358,1105236.71,20
+109760,394369.3337,605036.3467,853218.2735,20
+109761,394347.604,604548.9612,989406.4114,20
+109762,393252.2641,603685.5284,990108.3018,20
+109763,393013.1463,602694.195,1111554.528,20
+109764,392243.3832,602644.3978,855927.5429,20
+109765,391826.8869,602176.8606,993132.6261,20
+109766,391384.5411,602241.0272,993779.5388,20
+109767,390781.4952,600959.1467,1117920.246,20
+109768,390099.1522,601066.2812,857614.5463,20
+109769,389897.5798,601610.6963,997399.7706,20
+109770,389228.2583,600500.9138,997149.2954,20
+109771,388781.3578,599702.5354,1123618.513,20
+109772,388418.8929,599666.6651,860203.5044,20
+109773,388101.6727,600827.7204,999298.2472,20
+109774,387367.8734,599091.2412,1001336.748,20
+109775,387669.4521,599276.5274,1127241.855,20
+109776,386557.8734,599642.6907,862753.1492,20
+109777,386682.167,598631.0728,1002138.484,20
+109778,385770.4696,599633.1452,1003516.703,20
+109779,385909.0938,597724.2515,1132102.522,20
+109780,385582.7655,600481.1797,865268.3675,20
+109781,384926.2328,597603.1359,1003653.72,20
+109782,384834.4088,598703.5722,1006472.625,20
+109783,384541.3167,598922.1321,1136234.37,20
+109784,384360.7774,598042.8001,868250.0897,20
+109785,383801.0041,598310.8024,1004264.96,20
+109786,383357.9379,599351.0894,1010671.165,20
+109787,383884.8039,597079.7299,1139218.485,20
+109788,382734.3011,599003.0032,870346.4857,20
+109789,383260.9083,598769.2414,1006581.618,20
+109790,382566.2142,598207.5236,1012669.976,20
+109791,382593.3786,598687.7878,1143746.335,20
+109792,381806.4266,598497.933,872109.3375,20
+109793,382652.4813,598648.7393,1008203.212,20
+109794,381439.478,598367.7891,1015719.729,20
+109795,381120.5836,598451.8509,1146345.683,20
+109796,381972.0851,598444.3021,875304.9446,20
+109797,381077.9408,600166.4351,1009002.189,20
+109798,380923.0281,597667.4847,1019793.945,20
+109799,381089.336,599948.7034,1149086.414,20
+109800,380531.5284,599196.8749,877303.6251,21
+109801,604413.701,1006709.524,1012527.935,21
+109802,604924.7561,1004742.716,1021429.556,21
+109803,607952.2962,1002391.525,1156149.852,21
+109804,607585.2273,1001304.249,883650.3183,21
+109805,609628.6834,999647.7485,1015650.831,21
+109806,609620.3924,998350.1359,892173.2202,21
+109807,609840.5145,996267.6422,924705.1296,21
+109808,611362.1735,995130.3489,1055696.371,21
+109809,611634.0496,993009.7662,1106022.866,21
+109810,612747.0649,991496.742,904278.8396,21
+109811,612187.7234,990957.9138,1035391.438,21
+109812,613932.4742,988733.4477,1082288.96,21
+109813,614980.5625,987588.6994,1193360.472,21
+109814,613967.2542,985269.238,906469.3937,21
+109815,616545.4362,984000.5319,1033939.775,21
+109816,616535.6281,982208.3252,915335.4359,21
+109817,616687.1112,982369.5872,1006844.74,21
+109818,617666.0686,977802.5936,1259025.347,21
+109819,619393.1491,979533.3269,916998.5581,21
+109820,618136.9325,975421.8332,1046205.92,21
+109821,620229.3125,975728.8201,926496.9664,21
+109822,620106.4392,972306.3704,933153.0803,21
+109823,621673.4178,972484.2581,939414.124,21
+109824,621516.1581,970578.9428,946733.6139,21
+109825,622030.2385,968052.9133,952114.1324,21
+109826,623885.3834,968034.1075,959637.1334,21
+109827,623807.2725,965793.1467,964547.5315,21
+109828,623043.7462,964371.8412,971571.1292,21
+109829,623526.203,962616.8995,975656.6038,21
+109830,624639.6769,961356.8345,982567.4141,21
+109831,623776.3328,959069.9529,986675.9454,21
+109832,624254.0726,959415.3512,992566.9756,21
+109833,624454.2286,956384.499,996689.2849,21
+109834,625022.4491,954999.9918,1002569.927,21
+109835,625519.7744,954157.8598,1006716.219,21
+109836,625567.1488,951880.4809,1011489.889,21
+109837,625741.5917,951064.2284,1015903.569,21
+109838,626447.285,950096.3437,1020096.796,21
+109839,626979.3716,946334.4395,1024342.836,21
+109840,628622.1088,947537.2285,1028334.802,21
+109841,628724.1822,944458.9777,1032107.477,21
+109842,629710.7107,943306.5478,1037121.606,21
+109843,629689.1485,941686.2447,1040080.957,21
+109844,630003.7706,940565.6746,1043562.962,21
+109845,631155.5653,939029.4061,1046881.965,21
+109846,630501.8955,937739.8597,1051818.578,21
+109847,630910.73,936058.4411,1054116.853,21
+109848,632243.6754,934170.2264,1057526.262,21
+109849,631190.492,934223.4701,1061556.571,21
+109850,633257.2012,930533.4912,1058814.138,21
+109851,632355.2889,931099.1368,1062413.6,21
+109852,632247.1516,927305.382,1035858.496,21
+109853,634688.7236,928365.6535,1036103.924,21
+109854,632021.6576,925481.8059,1036759.856,21
+109855,635008.1531,924793.6558,1036718.303,21
+109856,634555.3263,922538.6397,1037743.204,21
+109857,634775.9983,921260.2648,1038495.483,21
+109858,634810.7689,919595.5996,1037898.61,21
+109859,636225.709,918776.9472,1039725.866,21
+109860,635362.9778,917947.6264,1039492.015,21
+109861,588913.1055,857840.5319,986432.7572,21
+109862,586475.5278,851458.5355,979899.7777,21
+109863,585355.3451,851269.6889,979323.7992,21
+109864,584094.5422,850519.7811,975346.4148,21
+109865,582887.3338,848431.0836,972092.2681,21
+109866,582071.9022,847364.8817,971082.8687,21
+109867,580548.3417,847162.7066,967511.449,21
+109868,580033.7772,845474.756,965105.5756,21
+109869,578414.2214,844252.5923,962007.2198,21
+109870,577517.861,845355.2483,961359.5893,21
+109871,576827.9994,838101.7219,956467.5292,21
+109872,574990.6406,838686.7194,955126.1905,21
+109873,574492.1622,835942.2292,953252.9932,21
+109874,573311.4031,835701.4381,949246.5955,21
+109875,572380.7497,835303.2291,948043.8618,21
+109876,571326.9368,819031.9535,945776.0596,21
+109877,570005.3812,817902.3539,942299.178,21
+109878,569565.6687,814162.2514,940707.5962,21
+109879,568000.3589,815434.18,937442.1634,21
+109880,567560.866,811201.2579,935156.4958,21
+109881,565756.6323,810799.0869,932211.4594,21
+109882,565507.6185,809726.7717,930170.6422,21
+109883,563908.4118,808119.9656,927060.9071,21
+109884,563589.4409,806217.0537,924522.7255,21
+109885,561953.7064,804571.3435,921237.8926,21
+109886,561561.3586,804140.9498,919650.8125,21
+109887,560022.6358,802951.8336,915716.7259,21
+109888,559380.2839,801092.4469,913574.2978,21
+109889,558270.2937,799933.7939,911498.2984,21
+109890,557493.8294,799625.1586,906193.2684,21
+109891,554696.2006,796630.7569,906646.7273,21
+109892,553619.0494,795951.6253,901767.9145,21
+109893,552759.1868,794376.2453,900377.5929,21
+109894,551961.2684,792253.3564,897412.8734,21
+109895,550580.989,790762.6736,894802.2942,21
+109896,550041.4893,789635.4136,892558.4733,21
+109897,548984.1862,787351.4388,889599.5429,21
+109898,547799.4862,785905.6254,886751.193,21
+109899,547058.4388,784723.5166,884886.7589,21
+109900,546279.9729,783044.0575,882060.1549,21
+109901,544810.212,781299.4064,878954.7789,21
+109902,544311.9795,779144.1146,876218.868,21
+109903,542956.5649,778205.583,875224.1422,21
+109904,542478.3579,776058.2154,870223.3932,21
+109905,541133.6194,774911.652,869581.2984,21
+109906,540423.5136,772274.19,865664.069,21
+109907,539371.5852,772039.0301,863045.2378,21
+109908,538657.9174,769844.2171,860528.8589,21
+109909,537398.2937,767615.087,857277.7235,21
+109910,536662.3903,767212.5705,854970.0034,21
+109911,535597.1593,764241.0961,852018.2336,21
+109912,534810.6218,763147.6325,848719.0674,21
+109913,533942.8442,761539.244,846521.3755,21
+109914,532811.4801,759366.7196,843480.8535,21
+109915,531697.4159,758130.9053,839732.9837,21
+109916,531081.8109,756449.3747,838912.7788,21
+109917,529942.2875,754081.7936,834293.8644,21
+109918,529553.8783,751856.8768,832480.9249,21
+109919,527994.2066,751243.4466,831800.6112,21
+109920,527134.1847,749085.1857,827798.4854,21
+109921,528129.4912,747199.3052,827367.4795,21
+109922,528187.9201,746190.9621,822711.9669,21
+109923,528805.1881,745611.0742,821184.3061,21
+109924,529297.0171,743243.5529,818045.245,21
+109925,529695.6806,742878.6036,814670.7349,21
+109926,530777.107,742653.1328,812532.9212,21
+109927,531265.5623,741104.919,809178.9477,21
+109928,531029.4502,739405.8105,807430.2282,21
+109929,532234.3442,739423.7817,803638.1966,21
+109930,532969.0876,738049.3237,800840.403,21
+109931,532893.4807,737105.1455,798088.957,21
+109932,533767.0196,736143.7446,795589.4187,21
+109933,534665.2023,735117.0932,792381.4685,21
+109934,534819.5394,734999.1779,789857.6816,21
+109935,535407.0851,731843.2574,785793.7695,21
+109936,535899.2334,733527.5453,784027.3472,21
+109937,536897.4034,731813.7724,780583.4711,21
+109938,536825.9703,729889.0793,778228.3351,21
+109939,538017.0539,730832.9705,774897.6308,21
+109940,538134.6153,727202.4147,771983.707,21
+109941,538899.3493,729605.5019,768537.8064,21
+109942,539310.7455,725935.2293,766141.1365,21
+109943,540092.997,726617.1007,763478.3908,21
+109944,540470.0333,724670.8577,759629.3978,21
+109945,541170.1533,724330.8893,756987.9243,21
+109946,541687.5659,724573.6517,753935.9623,21
+109947,542287.6176,722042.3844,751319.074,21
+109948,542781.7764,721762.416,748207.095,21
+109949,543722.2139,720349.5007,744598.4334,21
+109950,543784.9794,720974.0861,741999.8706,21
+109951,544653.0781,719173.9258,738833.2497,21
+109952,545250.2537,718737.193,735721.8419,21
+109953,546238.5562,718532.6184,733704.3893,21
+109954,545912.8573,715949.0337,729606.9198,21
+109955,547482.14,718541.2524,727752.0793,21
+109956,548128.789,715239.1721,724098.5497,21
+109957,547894.4702,716446.5133,720872.3391,21
+109958,549630.219,714045.8202,719143.0516,21
+109959,549450.9863,715519.1092,715323.4185,21
+109960,550516.8592,713273.6724,713531.3289,21
+109961,550862.4124,713951.3669,709670.3565,21
+109962,551807.0891,712323.3356,706452.9908,21
+109963,552477.1765,712488.2966,705014.7054,21
+109964,552645.458,711961.0767,700962.8593,21
+109965,553937.5427,710199.6536,698833.6577,21
+109966,554049.073,711290.1825,695330.2237,21
+109967,555198.4479,710170.0545,692255.6269,21
+109968,555260.5675,709080.5325,690363.9527,21
+109969,556867.5738,709279.4459,685756.3006,21
+109970,556531.4145,708451.9814,684494.4905,21
+109971,557882.3163,708216.7453,680540.1827,21
+109972,558094.7572,706653.4689,677577.6799,21
+109973,558992.3689,707870.3628,675334.8304,21
+109974,559861.3456,705872.2062,671714.6037,21
+109975,559874.2246,705228.629,669490.567,21
+109976,561286.9917,705415.475,665642.0076,21
+109977,561677.6314,704998.7966,663148.9139,21
+109978,562206.1719,704277.9958,660627.263,21
+109979,563323.1699,702832.5959,656477.3668,21
+109980,563293.6549,704367.612,654721.0364,21
+109981,565773.5418,701710.1676,649012.3796,21
+109982,566147.5515,701152.0427,645706.9409,21
+109983,566706.5739,699911.1662,643018.9653,21
+109984,567469.6013,698610.0966,638151.2682,21
+109985,567691.7701,696323.7471,635545.5786,21
+109986,568612.0044,695862.8488,631457.0446,21
+109987,569099.863,694538.3713,627890.0629,21
+109988,569356.9938,692693.844,625121.5435,21
+109989,570441.4877,691568.9424,620482.542,21
+109990,570448.6483,690334.9552,617864.1916,21
+109991,571412.1706,689154.4129,613948.6278,21
+109992,571668.9826,686873.8824,610332.7841,21
+109993,572701.4888,687302.9407,607621.2579,21
+109994,572738.7376,684073.995,603342.4267,21
+109995,573456.6797,683864.1085,599920.5686,21
+109996,574158.3312,682261.5684,596701.305,21
+109997,574657.5848,680462.1479,593214.4069,21
+109998,574872.6284,680297.506,589826.0418,21
+109999,576393.1876,677942.6034,586108.9121,21
+110000,575865.459,676567.9428,582576.0904,21
+110001,577050.8142,675217.3495,579722.806,21
+110002,577384.1646,674588.713,575286.8302,21
+110003,578104.7943,672316.7695,572397.9903,21
+110004,578688.601,672045.9328,568831.8854,21
+110005,579069.4802,669923.8304,565648.4829,21
+110006,579736.0882,668675.2376,561024.5274,21
+110007,580309.4808,668576.075,558973.5384,21
+110008,580982.6222,665518.8394,554911.8435,21
+110009,581532.2721,664839.3871,550550.4615,21
+110010,581897.154,664480.753,548296.4212,21
+110011,582825.4077,662214.9237,544630.3536,21
+110012,582805.5671,661359.1761,540502.2302,21
+110013,584011.7282,660212.7007,537970.5601,21
+110014,584311.1114,659617.4075,533688.0835,21
+110015,584436.9203,657772.1864,531211.5291,21
+110016,585243.6941,657620.2234,527331.0518,21
+110017,585910.9406,655945.27,523722.5161,21
+110018,586245.5327,655379.0939,520790.4681,21
+110019,586714.3103,654049.9984,516987.4363,21
+110020,587475.9544,653370.2699,513733.0917,21
+110021,587946.7,652349.1913,510094.3042,21
+110022,588040.2325,650750.3835,507106.3557,21
+110023,589357.2375,650560.6378,503884.2706,21
+110024,588785.8429,648205.6252,499680.657,21
+110025,592152.7993,648239.8378,497143.8509,21
+110026,592543.1211,647055.3155,493518.9071,21
+110027,592607.7608,646083.2278,489898.6977,21
+110028,593780.6834,644470.8234,486791.6529,21
+110029,594085.2681,644170.608,483331.642,21
+110030,594171.7511,642942.2891,479984.0137,21
+110031,595291.3823,641699.3132,476393.6393,21
+110032,595715.4155,640965.5705,473842.7925,21
+110033,595962.583,640442.09,469282.1384,21
+110034,596881.8793,638758.6455,466881.7438,21
+110035,597057.2753,638240.0478,463545.8275,21
+110036,597776.2275,636747.7547,459487.6304,21
+110037,598039.585,636307.155,456687.1936,21
+110038,599337.496,636107.0614,453474.6699,21
+110039,598854.172,632987.0753,449525.3046,21
+110040,600321.2892,633225.4227,447602.5866,21
+110041,596915.0761,631800.2143,443538.2396,21
+110042,595740.2566,629215.4233,439661.7119,21
+110043,594170.7217,627797.3922,435686.1249,21
+110044,593483.3588,627772.6523,431587.6381,21
+110045,590903.2069,624956.5123,428838.6937,21
+110046,590602.2844,623634.7479,425611.1986,21
+110047,588691.087,622151.8681,422227.2694,21
+110048,587389.5994,620956.9826,418864.8668,21
+110049,585982.0626,620391.1702,415554.8933,21
+110050,584556.4136,617948.2289,412832.8062,21
+110051,581514.4656,616567.7205,411149.6889,21
+110052,579605.9377,615636.9582,408420.2984,21
+110053,578814.3646,613470.1366,407224.9625,21
+110054,576739.5506,612609.0084,405170.2198,21
+110055,575960.2489,610620.6052,403526.9216,21
+110056,573950.6095,610109.7281,401095.9598,21
+110057,572945.6591,608745.469,399593.0318,21
+110058,571542.1664,605823.8878,397973.265,21
+110059,569758.5578,606316.7675,395809.6633,21
+110060,568744.5412,604179.263,393299.5149,21
+110061,566944.042,602600.5969,391888.23,21
+110062,566094.5749,600904.1909,389834.8109,21
+110063,564059.9191,599799.5603,387320.7734,21
+110064,562939.9816,598178.6531,385593.2332,21
+110065,561528.0906,597308.1465,383380.1489,21
+110066,560092.476,595407.3492,381453.5684,21
+110067,558871.1379,594117.6626,379293.5311,21
+110068,556982.0726,593548.8162,376812.2093,21
+110069,555968.1234,590838.1933,375668.6979,21
+110070,554559.7795,590527.4047,372716.7107,21
+110071,553119.3526,588506.9789,371106.0545,21
+110072,551675.8032,586389.0642,368619.2714,21
+110073,550580.9575,585496.9048,366676.1395,21
+110074,549151.7366,583159.9379,364529.5579,21
+110075,547589.3336,581600.2376,362029.849,21
+110076,546809.9376,580004.2563,359937.2348,21
+110077,545022.0783,578217.4098,358163.6966,21
+110078,543771.935,576786.5727,355792.6452,21
+110079,542500.0517,575113.5843,353666.2473,21
+110080,541530.7745,574005.9079,350957.5597,21
+110081,539614.3642,570587.1605,349799.7874,21
+110082,538857.8937,570686.3777,346918.7337,21
+110083,537306.0871,568288.8278,344726.4838,21
+110084,535759.7371,566279.5043,342119.5526,21
+110085,535119.3584,564431.9656,340472.8181,21
+110086,532946.6037,563349.7142,337929.4293,21
+110087,533776.7815,560685.9233,336260.292,21
+110088,532212.1463,559519.9649,333636.0817,21
+110089,529633.6206,557618.8452,331419.8833,21
+110090,530004.1053,556083.5816,328604.2493,21
+110091,528582.2533,553761.8247,327165.9214,21
+110092,526783.6149,552963.1398,324087.4389,21
+110093,526060.5735,550217.2002,323010.8022,21
+110094,524033.8613,549284.877,320134.3767,21
+110095,524646.6922,546755.3104,317724.888,21
+110096,521673.4801,545723.4694,316228.2453,21
+110097,521408.1187,543521.218,313490.6391,21
+110098,519962.4735,541744.4425,311168.3332,21
+110099,518479.3798,540055.2946,309114.7036,21
+110100,517315.8553,538244.1877,306285.3635,21
+110101,581883.7988,602118.0718,330778.2111,21
+110102,585486.1322,606245.3931,400767.3065,21
+110103,585394.8282,607107.6403,739517.5597,21
+110104,586433.8164,606349.7653,260681.7456,21
+110105,586783.7317,609107.9536,654167.2414,21
+110106,586865.5302,607839.8773,461372.191,21
+110107,586377.4768,608864.6419,599540.0779,21
+110108,588514.4711,609373.1182,247249.4978,21
+110109,586942.5744,610118.8387,614894.5599,21
+110110,587325.9996,609808.7213,255944.8774,21
+110111,587766.5057,610687.289,304650.2107,21
+110112,588147.163,610513.2125,288954.4106,21
+110113,587795.882,611503.0806,307512.9942,21
+110114,587657.7579,611477.5705,333336.0646,21
+110115,588250.0444,611683.3908,667979.5391,21
+110116,588045.4288,612710.3361,228204.3044,21
+110117,587590.7574,611787.5137,575375.0598,21
+110118,588316.4696,612359.5758,408343.575,21
+110119,587905.0027,613023.8548,571222.7754,21
+110120,588030.314,612702.2556,215481.5319,21
+110121,588167.6225,613640.57,538342.0691,21
+110122,588302.6151,612552.122,365922.9049,21
+110123,587706.24,615089.3133,497455.3258,21
+110124,588510.2045,612965.1844,205809.9195,21
+110125,588107.9885,614589.4704,511680.5061,21
+110126,587838.9735,613731.7741,349821.21,21
+110127,587370.6917,614950.6854,465228.3149,21
+110128,588206.7636,614422.2005,196139.7498,21
+110129,587610.1859,614753.1594,485907.8528,21
+110130,587513.381,614868.2155,332685.0417,21
+110131,587879.2423,615602.0772,441708.9198,21
+110132,586436.9271,614786.5681,186942.9416,21
+110133,588444.9093,616805.5458,463027.9792,21
+110134,585660.6343,615671.0295,315910.7773,21
+110135,587396.7607,616535.4132,419943.0737,21
+110136,586626.9595,617165.2157,179194.8012,21
+110137,585417.5884,617316.7405,441141.8351,21
+110138,586523.8858,617593.2318,301011.102,21
+110139,586242.4593,617438.3568,399889.5515,21
+110140,584698.6811,619762.0424,171298.0229,21
+110141,586378.5584,618316.0132,421809.9862,21
+110142,583325.9878,618225.1294,286721.1355,21
+110143,585666.356,620509.9288,381462.9585,21
+110144,584549.0247,619242.2286,163936.9052,21
+110145,583185.7411,620702.2409,403432.7323,21
+110146,584696.7767,620348.048,274392.0889,21
+110147,583038.304,621281.1044,363945.0466,21
+110148,583764.3129,621157.803,157147.7976,21
+110149,581817.8634,621229.6248,386326.5868,21
+110150,583632.8593,622707.2938,262266.3612,21
+110151,582327.9463,622282.6167,347787.9998,21
+110152,581269.809,622737.1519,155133.895,21
+110153,581972.6651,622805.9435,373616.2411,21
+110154,581509.2831,624157.8198,255954.2237,21
+110155,580667.5252,623683.8521,344801.4829,21
+110156,580536.4258,623866.4151,154661.4039,21
+110157,580600.8474,625513.4767,365467.5455,21
+110158,578240.5612,624173.1726,253064.4771,21
+110159,578422.7331,625613.0373,334981.9405,21
+110160,577749.4077,625484.7836,153062.8828,21
+110161,578298.2769,624816.3685,355502.6438,21
+110162,577306.3168,623469.2377,249126.1923,21
+110163,577357.7206,621807.0294,327185.2258,21
+110164,576922.7738,620493.3155,153729.2211,21
+110165,577518.3581,619361.1946,350005.0235,21
+110166,575919.6209,618858.3546,247938.8218,21
+110167,577606.2067,616652.692,321470.9887,21
+110168,575545.9275,614896.3344,156249.1313,21
+110169,576561.3064,615585.7614,345022.153,21
+110170,575734.8009,612851.2333,245774.0435,21
+110171,576020.1379,611117.4176,319632.5842,21
+110172,575536.9128,611233.5794,155170.0121,21
+110173,574637.5863,609552.5361,341958.5285,21
+110174,575848.8629,607792.2656,244418.6064,21
+110175,574385.3156,606587.5467,316053.5954,21
+110176,574183.73,606159.9583,155923.8116,21
+110177,574792.38,603964.787,338262.9886,21
+110178,574423.4585,603353.0643,243533.6348,21
+110179,573817.5421,602186.4713,313201.0526,21
+110180,573469.0522,599652.5505,158693.7968,21
+110181,573350.3581,599737.8501,333933.6247,21
+110182,573687.838,597649.952,244642.292,21
+110183,572506.0938,596862.8016,310849.0025,21
+110184,573832.395,595295.4853,158877.6031,21
+110185,571487.5728,594006.9031,332915.4764,21
+110186,572813.8009,593286.7965,242503.5246,21
+110187,571945.6843,591323.0592,310090.6514,21
+110188,570710.2174,589875.3068,160237.8818,21
+110189,571944.4136,590221.3417,329925.668,21
+110190,571186.3941,587431.5171,243210.167,21
+110191,568847.7411,585719.3684,308127.4579,21
+110192,570156.9597,586663.8338,160922.5781,21
+110193,567416.0525,583191.236,329594.2068,21
+110194,566538.6131,584055.9116,241659.2046,21
+110195,564695.1163,581368.0303,306897.6139,21
+110196,562582.5972,581158.7838,162005.2675,21
+110197,562667.53,579624.7751,327460.3765,21
+110198,559929.1339,579208.805,241502.9293,21
+110199,559821.5104,576288.7879,307092.0061,21
+110200,558147.6831,577152.0044,161256.7701,21
+110201,556295.2458,575139.6307,326921.7236,21
+110202,556242.4652,573827.9403,241996.6596,21
+110203,554467.2937,573182.437,162574.8547,21
+110204,552460.4964,570895.5027,270093.2665,21
+110205,551925.9796,571183.1128,178745.0152,21
+110206,548531.4798,569819.8515,196847.6122,21
+110207,548425.7076,568607.376,198088.4046,21
+110208,546931.5215,566840.4449,196862.2168,21
+110209,545426.0159,566062.7411,199036.9577,21
+110210,544278.9079,564783.1986,198415.2143,21
+110211,542693.7348,564665.6749,284051.3086,21
+110212,541678.0214,562109.0276,167991.2294,21
+110213,540276.099,562214.1719,275597.0735,21
+110214,538934.8156,560215.8627,185718.0549,21
+110215,536860.5807,560463.4702,205121.5022,21
+110216,537411.8917,557799.6495,204820.008,21
+110217,533946.7233,557322.6698,204530.9099,21
+110218,533989.7564,556476.5174,206217.4917,21
+110219,530788.3019,554661.2645,206140.698,21
+110220,528207.5415,555091.4974,296396.7324,21
+110221,527445.1554,555577.6891,174217.8122,21
+110222,524918.967,559108.7502,288242.8386,21
+110223,523371.2794,559059.2335,191900.9674,21
+110224,522083.4662,562680.5669,213229.6994,21
+110225,518844.2977,562286.1192,212406.4484,21
+110226,517624.3963,564641.8881,211879.3202,21
+110227,515036.7304,566005.7377,212733.7247,21
+110228,513091.8331,566665.4835,214237.8267,21
+110229,512953.2241,568593.0693,308834.3636,21
+110230,511751.7194,570324.7699,180240.1944,21
+110231,511057.2071,571210.3559,298279.2166,21
+110232,510222.9776,573906.9671,197848.3612,21
+110233,509411.3273,574574.1397,218528.9887,21
+110234,510007.9111,575280.0029,218088.5232,21
+110235,507682.9005,577770.5172,217036.0453,21
+110236,507336.423,578748.7696,218457.9702,21
+110237,507544.4103,580445.1547,218463.907,21
+110238,506327.6802,581406.4314,320399.3288,21
+110239,504347.8296,583577.2577,182203.3357,21
+110240,504886.3158,584343.1122,307586.0699,21
+110241,503082.3034,586106.6402,201255.0905,21
+110242,502875.3029,587301.271,222395.4773,21
+110243,501960.396,589299.9003,221558.9238,21
+110244,500908.6263,589766.5396,220726.8831,21
+110245,500050.9595,592802.124,221720.1792,21
+110246,499365.6119,592272.2085,222952.3431,21
+110247,498034.5818,595073.3794,326804.1647,21
+110248,498478.5642,596466.5913,184184.3592,21
+110249,496339.4163,597266.6123,314336.1694,21
+110250,495705.6281,599508.8089,202416.6631,21
+110251,495549.8257,600599.4198,225607.5818,21
+110252,494450.2202,601226.1126,222891.436,21
+110253,492805.8023,603885.0144,224057.4097,21
+110254,492648.9486,604195.1866,221976.9537,21
+110255,490715.2142,606556.5643,224439.8233,21
+110256,491569.4586,607534.3521,333102.658,21
+110257,488270.1652,610016.4613,185213.1613,21
+110258,488716.241,611538.2464,317136.8551,21
+110259,487439.5396,612215.6443,203835.9264,21
+110260,486392.7555,614500.3241,225281.4887,21
+110261,485136.1343,615061.6385,224634.5688,21
+110262,484091.2761,617371.1581,222982.8275,21
+110263,483446.5196,617984.6673,223957.8769,21
+110264,481368.5174,620648.6395,223502.5302,21
+110265,480884.1469,620680.7028,337099.8458,21
+110266,479785.459,622561.8882,182813.0513,21
+110267,479348.8,624398.7169,319733.9363,21
+110268,477721.3313,623415.3118,202532.6004,21
+110269,476970.5482,626834.4606,224792.7285,21
+110270,475453.8665,627375.3069,223233.7118,21
+110271,475780.6374,629213.7784,221881.6262,21
+110272,473162.9008,629147.6665,222386.0918,21
+110273,473199.7251,633055.9744,221530.8625,21
+110274,471198.7383,632436.9713,338843.8802,21
+110275,470813.1606,635142.4483,179878.4191,21
+110276,469696.9342,635846.5021,320700.512,21
+110277,467516.0078,637552.3992,199090.385,21
+110278,468409.8101,638200.8058,222611.9224,21
+110279,465302.7714,639928.6521,220329.163,21
+110280,465211.4392,642424.6145,180005.8506,21
+110281,464759.0706,639655.299,177475.7193,21
+110282,463460.3329,638530.0138,180095.506,21
+110283,463237.7363,637943.4123,178635.0662,21
+110284,463063.562,634451.4492,179428.4597,21
+110285,461942.3626,634738.8684,179719.722,21
+110286,461502.8317,632161.992,178340.9699,21
+110287,460832.3031,631035.3784,178985.088,21
+110288,459854.4516,628666.1261,179935.9476,21
+110289,459593.0894,628447.2963,178333.53,21
+110290,458688.1833,625850.013,179501.997,21
+110291,459416.1968,624243.6489,177496.0419,21
+110292,457757.0357,622583.9552,179342.6346,21
+110293,456725.2933,621525.9116,178810.0183,21
+110294,457827.6809,620491.5593,178770.6916,21
+110295,456591.9859,618376.5494,177959.0274,21
+110296,455425.1377,617363.4166,178762.8383,21
+110297,455679.7242,615399.813,178429.9323,21
+110298,455058.7576,614460.5517,177840.2852,21
+110299,455659.1247,611769.612,178512.5927,21
+110300,454954.97,610778.1018,177103.9321,21
+110301,454805.768,608446.0796,177046.2545,21
+110302,455081.2219,608472.995,177820.1974,21
+110303,453893.2365,605284.8088,176173.0938,21
+110304,453189.8825,602833.1488,177133.3289,21
+110305,453860.1152,602433.8223,176442.9421,21
+110306,453357.9716,599438.3744,174885.8347,21
+110307,452114.286,597548.0829,175466.6353,21
+110308,452589.1124,597745.713,176422.5141,21
+110309,452123.7363,594498.6452,173986.2038,21
+110310,452141.3759,593703.8305,173866.3762,21
+110311,451280.51,592095.7901,174514.9552,21
+110312,452206.9382,589911.3754,173772.0725,21
+110313,450763.0645,588838.6672,173730.4483,21
+110314,450654.1712,586216.8952,172362.3693,21
+110315,451050.8291,585742.2075,172624.2294,21
+110316,450199.2433,584050.5514,172746.4533,21
+110317,450308.8642,581075.9247,171332.9546,21
+110318,450612.6779,581926.9289,171534.9073,21
+110319,449951.3065,578008.6963,171561.3525,21
+110320,450011.067,577734.3437,170213.6633,21
+110321,449611.7979,575123.2357,170490.4519,21
+110322,450171.7961,574091.8127,169082.1722,21
+110323,448380.3422,572695.7,170148.7739,21
+110324,451162.8041,570964.4201,168593.3388,21
+110325,448590.96,568204.0058,169803.8011,21
+110326,449582.6028,567787.7906,170177.6116,21
+110327,449659.9945,565382.276,170403.3753,21
+110328,449259.4573,564772.5508,170302.0138,21
+110329,449056.8966,562339.8714,172409.4641,21
+110330,449162.1489,561432.1717,170645.9888,21
+110331,448846.357,559605.2558,172779.6295,21
+110332,449870.9612,557032.9496,170948.7457,21
+110333,449649.2829,556085.5983,174792.3369,21
+110334,448661.3646,554866.4177,171235.1065,21
+110335,449662.0345,552656.3594,175343.1137,21
+110336,449256.5278,551063.6327,173593.9954,21
+110337,449571.3564,549550.1181,173934.5066,21
+110338,450006.66,547977.9212,175734.4172,21
+110339,449432.364,544953.6076,176076.786,21
+110340,451416.9817,544673.749,175967.403,21
+110341,451780.8513,544207.0837,177000.0186,21
+110342,451017.9376,545542.8328,176378.8879,21
+110343,452507.4113,548738.191,177073.6733,21
+110344,452722.3494,548334.0064,179259.6738,21
+110345,452145.2864,549756.8425,177415.5217,21
+110346,454363.1958,552706.4341,178134.4642,21
+110347,454229.2486,552418.1572,179952.8595,21
+110348,454859.8813,555555.6833,179916.3967,21
+110349,462216.8178,555503.9861,180780.7614,21
+110350,458986.4738,557949.1068,180693.7377,21
+110351,461929.8209,558405.0445,180938.3108,21
+110352,462833.3073,560865.2869,183028.2322,21
+110353,464466.3655,560901.5346,181740.1236,21
+110354,465100.8301,564200.2231,183473.2204,21
+110355,466370.308,565084.3787,183767.0031,21
+110356,468345.6381,565148.8762,184082.9994,21
+110357,468361.8862,568363.951,184723.1379,21
+110358,470625.0218,569319.7949,184601.0553,21
+110359,471800.2751,570326.9562,186486.9562,21
+110360,472299.015,572692.7662,185584.6866,21
+110361,474116.2136,572821.9415,187017.4216,21
+110362,474632.5606,575173.6044,186072.3131,21
+110363,477017.4811,577318.8702,189359.1896,21
+110364,477073.7959,576858.8107,186622.9464,21
+110365,479169.0768,579761.1388,190115.4,21
+110366,479920.9081,580925.307,188476.6945,21
+110367,481306.3893,582765.1804,190781.6496,21
+110368,482411.4298,583672.6349,189650.0273,21
+110369,483617.7287,585309.4062,190802.8235,21
+110370,485287.3464,586833.7015,192016.0862,21
+110371,484962.3805,588416.5317,191497.5733,21
+110372,485984.5445,589905.7907,192203.8118,21
+110373,486045.7238,591041.9195,194310.5256,21
+110374,485363.5541,594306.9724,192624.7544,21
+110375,487139.7198,594154.5491,193182.5174,21
+110376,486907.4059,596169.7485,196664.4711,21
+110377,486293.4523,598418.9377,193797.7272,21
+110378,487930.7434,598872.5774,195652.0991,21
+110379,487766.3678,602433.1023,195859.5302,21
+110380,487100.4837,601454.4749,196578.7634,21
+110381,488771.2746,605453.4713,198088.8773,21
+110382,487351.2118,605333.7688,197064.8961,21
+110383,489015.4889,607233.5217,199108.6554,21
+110384,488377.0273,610156.5332,197439.6243,21
+110385,489159.7164,610104.9385,201357.894,21
+110386,486376.9198,613361.0252,198169.2466,21
+110387,487099.2349,613437.8939,201692.3311,21
+110388,486766.8219,616551.919,200658.5682,21
+110389,486913.514,616529.2009,200821.8787,21
+110390,487127.437,619873.2324,203030.5599,21
+110391,487566.1097,619716.1942,202987.6826,21
+110392,486798.0177,622812.6402,201935.983,21
+110393,487777.9244,624510.769,205373.524,21
+110394,487040.9393,624536.7308,202254.772,21
+110395,487934.0817,628008.3126,206461.3857,21
+110396,487823.45,629172.1026,204514.957,21
+110397,488429.4527,631226.691,206836.4733,21
+110398,488583.5181,631433.8342,205577.0154,21
+110399,487766.3077,634896.1259,207307.1671,21
+110400,488671.0681,635248.0651,208059.4259,21
+110401,199578.8799,214023.0233,0,21
+110402,199606.9747,214029.4475,0,21
+110403,199688.8422,214172.5075,0,21
+110404,199870.7052,214571.0532,0,21
+110405,200169.8709,215266.8982,0,21
+110406,200564.3426,216208.256,0,21
+110407,201017.9653,217307.963,0,21
+110408,201498.1898,218483.9194,0,21
+110409,201982.3131,219677.0617,0,21
+110410,202456.0566,220850.4797,0,21
+110411,202910.9687,221982.6275,0,21
+110412,203342.4491,223061.3286,0,21
+110413,203748.3591,224079.9014,0,21
+110414,204128.0492,225035.1994,0,21
+110415,204481.814,225926.6852,0,21
+110416,204810.5083,226755.6929,0,21
+110417,205115.3439,227524.8887,0,21
+110418,205397.75,228237.8014,0,21
+110419,205659.2767,228898.4317,0,21
+110420,205901.5078,229510.9199,0,21
+110421,206126.0244,230079.3875,0,21
+110422,206334.3448,230607.7869,0,21
+110423,206527.8987,231099.8498,0,21
+110424,206708.0193,231559.0669,0,21
+110425,206875.9427,231988.6716,0,21
+110426,207032.8051,232391.6252,0,21
+110427,207179.6506,232770.6533,0,21
+110428,207317.4208,233128.218,0,21
+110429,207446.9554,233466.5097,0,21
+110430,207568.4991,233787.4726,0,21
+110431,207684.2488,234092.8408,0,21
+110432,207792.8569,234384.172,0,21
+110433,207896.3779,234662.8861,0,21
+110434,207995.4016,234930.2614,0,21
+110435,208090.8091,235187.4316,0,21
+110436,208183.4258,235435.3972,0,21
+110437,208273.9129,235675.0486,0,21
+110438,208362.7646,235907.1928,0,21
+110439,208450.8885,236132.5604,0,21
+110440,208537.0226,236351.789,0,21
+110441,208623.2904,236565.4247,0,21
+110442,208707.9559,236773.9342,0,21
+110443,208793.1256,236977.7354,0,21
+110444,208877.3814,237177.2163,0,21
+110445,208961.3042,237372.7368,0,21
+110446,209044.9553,237564.6202,0,21
+110447,209128.3881,237753.1495,0,21
+110448,209211.6466,237938.5703,0,21
+110449,209294.7675,238121.1053,0,21
+110450,209377.7807,238300.9712,0,21
+110451,209460.7098,238478.3734,0,21
+110452,209543.576,238653.4883,0,21
+110453,209626.4016,238826.4613,0,21
+110454,209709.2061,238997.4081,0,21
+110455,209792.0067,239166.4367,0,21
+110456,209874.8164,239333.6577,0,21
+110457,209957.6442,239499.1822,0,21
+110458,210040.4872,239663.113,0,21
+110459,210123.3367,239825.541,0,21
+110460,210206.1885,239986.5426,0,21
+110461,0,0,0,21
+110462,0,0,0,21
+110463,271039.1468,0,0,21
+110464,0,0,0,21
+110465,0,0,0,21
+110466,0,0,0,21
+110467,0,0,0,21
+110468,0,0,1454424.127,21
+110469,0,0,0,21
+110470,0,0,0,21
+110471,0,0,0,21
+110472,0,0,0,21
+110473,0,0,0,21
+110474,0,0,0,21
+110475,0,0,0,21
+110476,0,0,0,21
+110477,0,0,0,21
+110478,0,0,0,21
+110479,0,0,0,21
+110480,0,0,0,21
+110481,339649.9644,0,0,21
+110482,0,0,0,21
+110483,0,0,0,21
+110484,0,0,0,21
+110485,0,0,0,21
+110486,0,0,0,21
+110487,0,0,0,21
+110488,0,0,0,21
+110489,0,0,0,21
+110490,0,0,0,21
+110491,0,0,0,21
+110492,0,0,0,21
+110493,0,0,0,21
+110494,0,0,0,21
+110495,0,0,0,21
+110496,0,0,0,21
+110497,0,0,0,21
+110498,0,0,0,21
+110499,0,0,0,21
+110500,0,0,0,21
+110501,0,0,0,21
+110502,0,0,0,21
+110503,0,0,0,21
+110504,0,0,0,21
+110505,0,0,1386682.743,21
+110506,0,0,0,21
+110507,0,0,0,21
+110508,0,0,0,21
+110509,0,0,0,21
+110510,0,0,0,21
+110511,0,0,0,21
+110512,0,0,0,21
+110513,0,0,0,21
+110514,0,0,0,21
+110515,0,0,0,21
+110516,0,0,0,21
+110517,0,0,0,21
+110518,0,0,0,21
+110519,0,0,0,21
+110520,0,0,0,21
+110521,0,0,0,21
+110522,0,269824.2381,0,21
+110523,0,0,0,21
+110524,339602.2048,0,0,21
+110525,0,0,0,21
+110526,0,0,0,21
+110527,0,0,0,21
+110528,0,0,0,21
+110529,0,0,0,21
+110530,0,266194.0774,0,21
+110531,0,0,0,21
+110532,0,0,0,21
+110533,0,0,0,21
+110534,0,0,0,21
+110535,0,0,0,21
+110536,0,0,0,21
+110537,0,0,0,21
+110538,0,266089.1914,0,21
+110539,0,0,0,21
+110540,0,0,0,21
+110541,0,0,0,21
+110542,0,0,1324823.574,21
+110543,0,0,0,21
+110544,0,0,0,21
+110545,0,0,0,21
+110546,0,266068.1417,0,21
+110547,0,0,0,21
+110548,0,0,0,21
+110549,0,0,0,21
+110550,0,0,0,21
+110551,0,0,0,21
+110552,0,0,0,21
+110553,0,0,0,21
+110554,0,266055.6357,0,21
+110555,0,0,0,21
+110556,0,0,0,21
+110557,0,0,0,21
+110558,0,0,0,21
+110559,0,0,0,21
+110560,0,0,0,21
+110561,0,0,0,21
+110562,0,266022.4908,0,21
+110563,0,0,0,21
+110564,0,0,0,21
+110565,0,0,0,21
+110566,0,0,0,21
+110567,0,0,0,21
+110568,339559.9854,0,0,21
+110569,0,0,0,21
+110570,0,265976.6652,0,21
+110571,0,0,0,21
+110572,0,0,0,21
+110573,0,0,0,21
+110574,0,0,0,21
+110575,0,0,0,21
+110576,0,0,0,21
+110577,0,0,0,21
+110578,0,265957.2665,0,21
+110579,25057.22802,0,1356529.175,21
+110580,0,0,0,21
+110581,0,0,0,21
+110582,7771.745643,0,0,21
+110583,5482.517908,0,0,21
+110584,4954.153664,0,0,21
+110585,5990.71643,0,0,21
+110586,5976.974877,265930.5466,0,21
+110587,5868.23509,0,0,21
+110588,6028.747006,0,0,21
+110589,6024.841804,0,0,21
+110590,6109.02638,0,0,21
+110591,6125.985463,0,0,21
+110592,6193.896479,0,0,21
+110593,6182.632671,0,0,21
+110594,6266.353144,265903.1111,0,21
+110595,6277.942171,0,0,21
+110596,6327.322347,0,0,21
+110597,6350.190076,0,0,21
+110598,6399.428729,0,0,21
+110599,6443.289463,0,0,21
+110600,6443.288308,0,0,21
+110601,6503.639568,0,0,21
+110602,6531.236761,265876.6314,0,21
+110603,6568.219525,0,0,21
+110604,6574.419309,0,0,21
+110605,6644.65779,0,0,21
+110606,6644.710107,0,0,21
+110607,6687.340844,0,0,21
+110608,6714.643745,0,0,21
+110609,0,0,0,21
+110610,0,0,0,21
+110611,0,268667.951,0,21
+110612,339524.9904,0,0,21
+110613,0,0,0,21
+110614,0,0,0,21
+110615,0,0,0,21
+110616,0,0,1291819.771,21
+110617,0,0,0,21
+110618,29114.60294,0,0,21
+110619,1691.229139,265810.1352,0,21
+110620,1386.670184,368452.3438,83743.88657,21
+110621,9241.814887,0,0,21
+110622,7820.904686,0,0,21
+110623,6767.025407,0,0,21
+110624,7189.11009,0,0,21
+110625,7237.807611,0,0,21
+110626,7215.25342,0,0,21
+110627,7262.388516,265725.3187,0,21
+110628,7272.014982,0,0,21
+110629,7272.013089,0,0,21
+110630,7308.45076,0,0,21
+110631,7275.759824,0,0,21
+110632,7338.511218,0,0,21
+110633,7322.183921,0,0,21
+110634,7348.500481,0,0,21
+110635,7341.558373,265689.6673,0,21
+110636,7388.329228,0,0,21
+110637,7352.113445,0,0,21
+110638,7387.02474,0,0,21
+110639,7402.374446,0,0,21
+110640,7396.916707,0,0,21
+110641,7474.486369,0,0,21
+110642,7463.942003,0,0,21
+110643,7550.335796,265656.3346,0,21
+110644,7560.109713,0,0,21
+110645,7612.004502,0,0,21
+110646,7652.470281,0,0,21
+110647,7677.515038,0,0,21
+110648,0,0,0,21
+110649,0,0,0,21
+110650,0,0,0,21
+110651,0,0,0,21
+110652,0,0,0,21
+110653,0,268929.3881,1225194.906,21
+110654,0,0,0,21
+110655,35302.14235,0,0,21
+110656,339506.0138,0,0,21
+110657,2162.024934,0,77983.57007,21
+110658,11084.97295,0,0,21
+110659,8575.793321,0,0,21
+110660,7833.186466,0,0,21
+110661,8252.289946,0,0,21
+110662,8529.226098,268374.8561,486935.6029,21
+110663,8818.851495,0,0,21
+110664,8680.065785,0,0,21
+110665,8795.05071,0,0,21
+110666,8841.436565,0,0,21
+110667,8914.138192,0,0,21
+110668,8921.1794,0,0,21
+110669,9032.453553,0,0,21
+110670,9003.683983,0,0,21
+110671,9111.358062,268348.3691,0,21
+110672,9105.766004,0,0,21
+110673,9190.400857,0,0,21
+110674,9222.711951,0,0,21
+110675,9256.324099,0,0,21
+110676,9301.23545,0,0,21
+110677,9357.024322,0,0,21
+110678,9382.055884,0,0,21
+110679,9459.843908,0,0,21
+110680,9449.632666,268287.1488,0,21
+110681,9529.834869,0,0,21
+110682,9550.241116,0,0,21
+110683,9591.854334,0,0,21
+110684,9611.252909,368446.0893,0,21
+110685,0,0,0,21
+110686,0,0,0,21
+110687,0,0,0,21
+110688,0,0,0,21
+110689,0,268225.5613,0,21
+110690,0,0,1239285.971,21
+110691,42087.35318,0,0,21
+110692,0,0,0,21
+110693,846.2282389,0,0,21
+110694,14857.12669,0,0,21
+110695,10116.93878,0,0,21
+110696,9655.86587,0,0,21
+110697,10114.48992,265431.9848,0,21
+110698,10189.58386,0,0,21
+110699,10251.34758,0,0,21
+110700,349733.3062,0,0,21
+110701,10262.30501,0,0,21
+110702,10299.77405,0,0,21
+110703,10291.12766,0,0,21
+110704,10327.28371,0,0,21
+110705,10353.12172,0,0,21
+110706,10373.29861,268184.2233,0,21
+110707,10351.75088,0,0,21
+110708,10432.85976,0,0,21
+110709,10402.79116,0,0,21
+110710,10439.89511,0,0,21
+110711,10448.63893,0,0,21
+110712,10462.22987,0,0,21
+110713,10501.30263,0,478414.1038,21
+110714,10492.92944,0,0,21
+110715,10521.48148,268214.2944,0,21
+110716,10538.38086,0,0,21
+110717,10569.14438,0,0,21
+110718,10565.56235,0,0,21
+110719,10558.83559,0,0,21
+110720,10633.21124,0,0,21
+110721,0,0,0,21
+110722,0,0,0,21
+110723,0,0,0,21
+110724,0,268184.8138,0,21
+110725,0,0,0,21
+110726,0,0,0,21
+110727,46741.60088,0,0,21
+110728,160.1331267,0,1211967.155,21
+110729,2113.582125,0,0,21
+110730,14739.24765,0,0,21
+110731,11473.42404,0,0,21
+110732,10203.74844,0,0,21
+110733,10861.14059,268166.122,0,21
+110734,10833.94046,0,0,21
+110735,10887.58226,0,0,21
+110736,10900.92232,0,0,21
+110737,10857.47316,0,0,21
+110738,10910.51767,0,0,21
+110739,10897.50495,0,0,21
+110740,10927.31792,0,0,21
+110741,10927.42184,0,75269.87978,21
+110742,10926.75849,636555.6202,72551.05521,21
+110743,10944.1483,0,70013.39809,21
+110744,350512.7207,0,69196.72212,21
+110745,10935.36408,0,68712.77787,21
+110746,10985.3096,0,68288.39869,21
+110747,10966.74836,0,463936.0202,21
+110748,10993.16359,0,8816.744844,21
+110749,10966.75452,0,177744.4008,21
+110750,11028.13656,0,236713.4673,21
+110751,10976.41539,0,3927.915448,21
+110752,11026.34805,268621.8019,244106.5521,21
+110753,11006.13385,0,119979.1545,21
+110754,11009.5721,0,228934.3156,21
+110755,11065.6018,0,4751.944278,21
+110756,11002.46307,0,228087.6521,21
+110757,0,0,41447.32991,21
+110758,0,0,64314.09296,21
+110759,0,0,253280.616,21
+110760,0,0,5643.85525,15.6
+110761,0,268137.6817,215247.5807,15.6
+110762,0,0,104808.6176,15.6
+110763,49095.88752,0,197662.3155,15.6
+110764,1814.247899,0,6399.573019,15.6
+110765,1488.379263,0,197804.7275,15.6
+110766,15378.86511,0,880720.9343,15.6
+110767,12379.552,0,184283.0194,15.6
+110768,10855.67702,0,7049.389633,15.6
+110769,11574.95445,0,0,15.6
+110770,11635.0251,268068.5242,0,15.6
+110771,11681.93189,0,0,15.6
+110772,11711.04996,0,0,15.6
+110773,11803.01217,0,0,15.6
+110774,11797.46752,0,0,15.6
+110775,11880.42446,0,0,15.6
+110776,11918.02397,0,0,15.6
+110777,11937.75604,0,0,15.6
+110778,12027.36225,0,0,15.6
+110779,12052.13999,268063.6748,0,15.6
+110780,12116.67568,0,0,15.6
+110781,12130.47251,0,0,15.6
+110782,12217.92378,0,0,15.6
+110783,12219.50619,0,0,15.6
+110784,12292.43047,0,0,15.6
+110785,12339.77749,0,0,15.6
+110786,12382.51779,0,0,15.6
+110787,12422.80094,0,0,15.6
+110788,352086.7898,267976.0208,0,15.6
+110789,12530.35368,0,0,15.6
+110790,12552.67504,0,0,15.6
+110791,12621.2198,0,406345.1659,15.6
+110792,12673.83396,0,0,15.6
+110793,0,0,0,15.6
+110794,0,0,0,15.6
+110795,0,0,0,15.6
+110796,0,368361.1368,0,15.6
+110797,0,268095.973,0,15.6
+110798,56096.19323,0,0,15.6
+110799,1147.749359,0,0,15.6
+110800,2101.832882,0,0,15.6
+110801,20208.61311,0,0,15.6
+110802,12484.36008,0,0,15.6
+110803,12970.67848,0,0,15.6
+110804,13296.5799,0,0,15.6
+110805,13342.97352,0,946696.3994,15.6
+110806,13388.8926,0,0,15.6
+110807,13455.33495,0,0,15.6
+110808,13458.23493,0,0,15.6
+110809,13555.34559,268428.4626,0,15.6
+110810,13555.16843,0,0,15.6
+110811,13597.21457,0,0,15.6
+110812,13642.9746,0,0,15.6
+110813,13708.55718,0,0,15.6
+110814,13742.32698,0,0,15.6
+110815,13795.86172,0,0,15.6
+110816,13806.04542,0,0,15.6
+110817,13881.29894,0,0,15.6
+110818,13909.42428,0,0,15.6
+110819,13956.40168,0,0,15.6
+110820,14026.55759,19.40077596,0,15.6
+110821,13914.11859,0,0,15.6
+110822,13924.99751,0,0,15.6
+110823,13867.11282,0,0,15.6
+110824,13792.62765,0,0,15.6
+110825,13760.27078,0,0,15.6
+110826,13704.2408,0,0,15.6
+110827,13669.68291,0,0,15.6
+110828,0,0,0,15.6
+110829,0,0,0,15.6
+110830,0,0,0,15.6
+110831,0,0,0,15.6
+110832,395298.6266,0,0,15.6
+110833,715.3439429,0,0,15.6
+110834,2687.334987,0,0,15.6
+110835,20585.59746,0,0,15.6
+110836,12225.63824,0,0,15.6
+110837,12989.5559,0,0,15.6
+110838,13146.30135,0,0,15.6
+110839,13089.1934,0,0,15.6
+110840,13049.33946,0,0,15.6
+110841,13001.48129,0,0,15.6
+110842,12952.8676,0,0,15.6
+110843,12890.03549,0,0,15.6
+110844,12868.08916,0,0,15.6
+110845,12797.55508,0,755630.2644,15.6
+110846,12716.48909,0,0,15.6
+110847,12729.78838,368320.3023,0,15.6
+110848,12639.72584,0,0,15.6
+110849,12604.95001,0,0,15.6
+110850,12549.7784,0,0,15.6
+110851,12488.14215,0,0,15.6
+110852,12471.56423,0,0,15.6
+110853,12369.85464,0,0,15.6
+110854,12344.27768,0,0,15.6
+110855,12315.42848,0,0,15.6
+110856,12225.31952,0,0,15.6
+110857,12200.96334,0,0,15.6
+110858,12150.77752,0,0,15.6
+110859,12065.56682,0,0,15.6
+110860,12057.84487,0,0,15.6
+110861,12000.46599,0,0,15.6
+110862,0,0,0,15.6
+110863,0,0,0,15.6
+110864,0,0,0,15.6
+110865,0,0,0,15.6
+110866,0,0,0,15.6
+110867,51252.13348,0,0,15.6
+110868,1201.223333,0,0,15.6
+110869,1886.795387,0,0,15.6
+110870,15419.70266,0,0,15.6
+110871,12463.17358,0,82541.32679,15.6
+110872,10733.86874,0,158484.7659,15.6
+110873,11396.98981,0,12195.31589,15.6
+110874,11330.45329,0,169666.9874,15.6
+110875,11301.44514,0,81250.3585,15.6
+110876,350852.7565,0,146803.0136,15.6
+110877,11173.96852,0,12209.62308,15.6
+110878,11125.69199,0,157192.2122,15.6
+110879,11103.13405,0,75850.84179,15.6
+110880,11013.79952,0,136293.4203,15.6
+110881,11080.3445,0,12333.7723,15.6
+110882,11187.55694,0,145925.0857,15.6
+110883,11218.02847,0,29584.2791,15.6
+110884,11311.18854,0,44527.60865,15.6
+110885,11375.41882,0,688936.7436,15.6
+110886,11421.84494,0,52944.92497,15.6
+110887,11518.68277,0,45148.67174,15.6
+110888,11565.78135,0,47257.7254,15.6
+110889,11661.08791,0,152140.5846,15.6
+110890,11716.02074,0,13043.85196,15.6
+110891,11783.70001,0,132896.7703,15.6
+110892,11865.42377,0,70377.44354,15.6
+110893,11924.7752,0,114071.2612,15.6
+110894,11971.26708,0,13165.33548,15.6
+110895,12088.86204,0,123182.2333,15.6
+110896,12098.87361,0,60838.92038,15.6
+110897,0,368287.393,118693.2384,15.6
+110898,0,0,13247.1716,15.6
+110899,0,0,115289.1468,15.6
+110900,0,0,0,15.6
+110901,0,0,0,15.6
+110902,55644.54948,0,0,15.6
+110903,900.5196242,0,0,15.6
+110904,2288.04099,0,0,15.6
+110905,17762.72749,0,0,15.6
+110906,13317.753,0,0,15.6
+110907,12376.98053,0,0,15.6
+110908,12965.16946,0,0,15.6
+110909,13056.13087,0,0,15.6
+110910,13168.35166,0,0,15.6
+110911,13176.02421,0,0,15.6
+110912,13258.72186,0,0,15.6
+110913,13336.75869,0,0,15.6
+110914,13399.17588,0,0,15.6
+110915,13467.16602,0,0,15.6
+110916,13532.22378,0,0,15.6
+110917,13589.62995,0,0,15.6
+110918,13658.38787,0,0,15.6
+110919,13731.36518,0,0,15.6
+110920,353429.4203,0,0,15.6
+110921,13845.08389,0,0,15.6
+110922,13955.24732,0,0,15.6
+110923,13976.31941,0,0,15.6
+110924,14064.98283,0,0,15.6
+110925,14141.94436,0,591061.4427,15.6
+110926,14196.28298,0,0,15.6
+110927,14252.90152,0,0,15.6
+110928,14334.86441,0,0,15.6
+110929,14376.89612,41205.71379,0,15.6
+110930,14488.48856,0,0,15.6
+110931,14486.9299,3215.369976,0,15.6
+110932,0,11061.50684,0,15.6
+110933,0,12894.27064,0,15.6
+110934,0,9725.761723,0,15.6
+110935,0,10813.29467,0,15.6
+110936,62730.49397,10972.95119,0,15.6
+110937,0,11112.9762,0,15.6
+110938,4976.372979,11167.81562,0,15.6
+110939,22714.00603,11344.27615,0,15.6
+110940,14007.66441,11412.76378,0,15.6
+110941,14993.54927,11444.50212,0,15.6
+110942,15038.0086,11328.99016,0,15.6
+110943,15013.90394,11425.95445,0,15.6
+110944,14930.19425,11343.52619,0,15.6
+110945,14889.13476,11312.20054,0,15.6
+110946,14807.09701,379590.7325,0,15.6
+110947,14765.52688,11284.99827,0,15.6
+110948,14673.89274,11273.47123,0,15.6
+110949,14637.90069,11260.80606,0,15.6
+110950,14560.76574,11228.0884,0,15.6
+110951,14512.57755,11223.2174,0,15.6
+110952,14423.36836,11162.01062,0,15.6
+110953,14388.33437,11157.73007,0,15.6
+110954,14307.45847,11164.42846,0,15.6
+110955,14263.48493,11073.17472,0,15.6
+110956,14182.21467,11109.76315,0,15.6
+110957,14122.99746,11081.72797,0,15.6
+110958,14068.90319,11006.20976,0,15.6
+110959,14001.68378,0,0,15.6
+110960,13934.15556,0,0,15.6
+110961,13874.10714,0,0,15.6
+110962,13815.09981,0,0,15.6
+110963,13755.96655,0,0,15.6
+110964,353323.8902,0,0,15.6
+110965,13623.51676,0,0,15.6
+110966,0,0,698781.1,15.6
+110967,0,0,0,15.6
+110968,0,45128.44303,0,15.6
+110969,0,1699.745895,0,15.6
+110970,0,2847.290478,0,15.6
+110971,62064.51981,12756.97977,0,15.6
+110972,0,12441.55492,0,15.6
+110973,2713.201473,9912.018421,0,15.6
+110974,18024.60564,10697.30708,0,15.6
+110975,13758.88092,10657.76656,0,15.6
+110976,12342.9077,10630.18546,0,15.6
+110977,12941.30661,10604.24249,0,15.6
+110978,12891.29445,10578.55627,0,15.6
+110979,12809.5872,10524.99387,0,15.6
+110980,12765.66038,10470.50711,0,15.6
+110981,12639.02793,10477.89846,0,15.6
+110982,12662.77237,10404.69151,0,15.6
+110983,12525.04293,10390.82809,0,15.6
+110984,12491.23989,10357.42937,0,15.6
+110985,12411.25699,10264.33231,0,15.6
+110986,12375.72855,10295.27825,0,15.6
+110987,12248.28057,10231.61405,0,15.6
+110988,12236.57521,10183.2907,0,15.6
+110989,12127.86568,10198.82526,0,15.6
+110990,12096.70541,10082.28792,0,15.6
+110991,12007.75629,10097.07665,0,15.6
+110992,11944.99634,10042.60021,0,15.6
+110993,11866.79941,9980.208572,0,15.6
+110994,11839.05281,378160.6052,0,15.6
+110995,11725.10772,9899.200749,0,15.6
+110996,11677.46474,9813.057608,0,15.6
+110997,11611.64165,9859.208063,0,15.6
+110998,11534.82963,0,0,15.6
+110999,11491.42123,0,0,15.6
+111000,11396.80103,0,0,15.6
+111001,0,0,0,15.6
+111002,0,0,0,15.6
+111003,0,0,56586.70854,15.6
+111004,0,0,113619.9831,15.6
+111005,0,0,15726.52362,15.6
+111006,0,0,111457.4226,15.6
+111007,55602.08799,0,635550.2184,15.6
+111008,340644.9047,0,110182.9977,15.6
+111009,2078.261996,0,16010.35283,15.6
+111010,12422.94682,47391.15157,108193.8272,15.6
+111011,14663.95277,1869.723184,56497.36791,15.6
+111012,10454.65932,3193.141575,103556.3881,15.6
+111013,11697.21211,14164.06057,16204.32773,15.6
+111014,11750.13995,13746.18717,101715.692,15.6
+111015,11733.56443,11373.40624,53784.14264,15.6
+111016,11744.76233,12361.6407,97513.23647,15.6
+111017,11812.80256,12575.09481,16332.55705,15.6
+111018,11771.92834,12696.61846,95814.20866,15.6
+111019,11825.62472,12823.13802,51272.20457,15.6
+111020,11860.26828,13055.74905,91973.66824,15.6
+111021,11912.09386,13163.37653,16393.75954,15.6
+111022,11861.03329,13335.49867,90427.96427,15.6
+111023,11936.21869,13512.50729,48939.47565,15.6
+111024,11927.08662,13633.42009,86901.43849,15.6
+111025,11951.93858,13844.77992,16405.00436,15.6
+111026,11966.92805,13927.22028,85513.90398,15.6
+111027,11999.19634,14167.62262,46783.00461,15.6
+111028,11981.88664,14294.04939,82282.34429,15.6
+111029,12022.31296,14426.93235,16383.62096,15.6
+111030,12012.22068,14654.53022,81035.49234,15.6
+111031,12049.26511,14747.2551,44807.35964,15.6
+111032,12092.60855,14951.47761,0,15.6
+111033,12037.27487,15058.584,0,15.6
+111034,12162.67671,15298.80275,0,15.6
+111035,12072.43596,15376.53529,0,15.6
+111036,12142.50248,15582.17285,0,15.6
+111037,0,15763.52492,0,15.6
+111038,0,15897.56955,0,15.6
+111039,0,16075.38496,0,15.6
+111040,0,0,0,15.6
+111041,0,368188.56,0,15.6
+111042,56354.7826,0,0,15.6
+111043,612.9563297,0,0,15.6
+111044,2379.508724,66399.7451,0,15.6
+111045,15042.78493,0,0,15.6
+111046,14136.44243,7235.15232,0,15.6
+111047,11442.12082,26040.86509,0,15.6
+111048,12326.97903,15912.88362,567221.058,15.6
+111049,12386.59193,17760.86269,0,15.6
+111050,12394.50321,17929.24373,0,15.6
+111051,12423.91476,18138.06093,0,15.6
+111052,352107.9884,18287.63834,0,15.6
+111053,12455.86528,18436.61323,0,15.6
+111054,12441.16747,18623.42936,0,15.6
+111055,12486.56695,18794.6878,0,15.6
+111056,12499.54708,18915.27918,0,15.6
+111057,12501.23843,19135.24309,0,15.6
+111058,12530.24871,19296.39795,0,15.6
+111059,12559.55526,19422.75779,0,15.6
+111060,12518.42668,19716.45135,0,15.6
+111061,12569.20613,19659.37146,0,15.6
+111062,12620.91709,19715.36797,0,15.6
+111063,12599.02358,19759.55849,0,15.6
+111064,12709.45361,19796.13808,0,15.6
+111065,12717.27651,19890.44911,0,15.6
+111066,12799.76542,19878.93036,0,15.6
+111067,12790.40708,19993.90459,0,15.6
+111068,12871.36159,20003.30511,0,15.6
+111069,12923.69718,20049.40031,0,15.6
+111070,12930.25937,20100.75712,0,15.6
+111071,13045.99845,20211.46725,0,15.6
+111072,0,20156.17049,0,15.6
+111073,0,20258.85621,0,15.6
+111074,0,0,0,15.6
+111075,0,0,0,15.6
+111076,0,0,0,15.6
+111077,62525.00533,74130.71068,0,15.6
+111078,143.3136867,433.1852533,0,15.6
+111079,2756.671396,14671.92303,0,15.6
+111080,18007.06112,26866.76353,0,15.6
+111081,14481.47364,19659.69343,0,15.6
+111082,12818.46022,20649.81989,0,15.6
+111083,13610.50191,20750.72485,0,15.6
+111084,13606.76006,20859.52646,582298.1031,15.6
+111085,13754.71963,20851.6692,0,15.6
+111086,13697.82992,20943.12372,0,15.6
+111087,13805.43558,389083.843,0,15.6
+111088,13820.60852,21021.02874,0,15.6
+111089,13881.3566,21017.77007,0,15.6
+111090,13938.5657,21181.9921,0,15.6
+111091,13960.69714,21178.77146,0,15.6
+111092,13985.93572,21229.96178,0,15.6
+111093,14100.84992,21310.07747,0,15.6
+111094,14093.09464,21318.05574,19937.12087,15.6
+111095,353820.0232,21389.38442,0,15.6
+111096,14204.5288,21395.07229,0,15.6
+111097,14278.86749,21457.20235,0,15.6
+111098,14240.83466,21547.90485,0,15.6
+111099,14362.49604,21455.6608,0,15.6
+111100,14384.83216,21550.801,0,15.6
+111101,14440.50748,21565.96206,0,15.6
+111102,14467.47852,21624.79997,0,15.6
+111103,14533.46781,21644.29081,0,15.6
+111104,14575.21427,21714.69968,0,15.6
+111105,14596.91886,21787.54102,0,15.6
+111106,14660.16933,21756.86114,0,15.6
+111107,0,0,0,15.6
+111108,0,0,0,15.6
+111109,0,0,0,15.6
+111110,0,80759.62339,0,15.6
+111111,65368.36914,3570.242351,0,15.6
+111112,0,12674.53301,0,15.6
+111113,4539.876059,30170.90606,347922.2017,15.6
+111114,21909.02837,20811.13748,0,15.6
+111115,14660.41512,22260.32439,0,15.6
+111116,14849.6723,22288.7724,0,15.6
+111117,15239.88202,22348.07692,0,15.6
+111118,15320.79725,22382.98818,0,15.6
+111119,15346.71439,22455.73267,0,15.6
+111120,15478.76631,22472.85394,701768.278,17.8
+111121,15491.56069,22332.66739,40701.51649,17.8
+111122,15504.33017,290500.475,113940.693,17.8
+111123,15513.49643,22094.63055,51467.73576,17.8
+111124,15562.63596,390013.5544,71162.40341,17.8
+111125,15552.62823,21823.6941,123474.2721,17.8
+111126,15584.57153,21599.52978,44000.69585,17.8
+111127,15584.57224,21446.37397,116665.6053,17.8
+111128,15628.28842,21403.97647,79267.4861,17.8
+111129,15633.5562,21164.11444,93354.48861,17.8
+111130,15640.95932,21101.86342,43432.02482,17.8
+111131,15658.97066,288575.0439,116673.7344,17.8
+111132,355382.48,20794.48386,84135.45206,17.8
+111133,15702.58878,20650.16334,111512.7022,17.8
+111134,15716.9531,20501.8014,42792.03923,17.8
+111135,15742.65769,20361.54213,112262.7487,17.8
+111136,15747.854,20194.89452,74340.28878,17.8
+111137,15776.62933,20076.44407,114690.6716,17.8
+111138,15787.8755,19961.88623,42226.797,17.8
+111139,15821.79397,19798.50888,110325.7425,17.8
+111140,15834.84607,267645.6286,73843.38792,17.8
+111141,0,0,111869.1351,17.8
+111142,0,0,58297.64306,17.8
+111143,0,71200.73854,126306.2872,17.8
+111144,0,0,94052.20053,17.8
+111145,68365.36728,11683.14914,131722.6283,17.8
+111146,446.1424989,25880.44301,62447.17424,17.8
+111147,6805.779245,17430.46164,126155.2734,17.8
+111148,23409.32566,18524.67882,93951.19613,17.8
+111149,14928.48373,286251.1256,131756.2724,17.8
+111150,16033.6703,18279.74136,21186.55305,17.8
+111151,16099.75422,18154.29296,89876.13844,17.8
+111152,16157.47624,18011.21093,51506.26579,17.8
+111153,16127.05261,17901.74515,87037.01739,17.8
+111154,16173.41131,17713.48336,21218.16201,17.8
+111155,16183.99238,17617.9691,85967.92707,17.8
+111156,16195.48275,17430.60633,560291.5294,17.8
+111157,16230.30368,17363.41392,89498.58846,17.8
+111158,16205.56806,17170.40399,21432.11665,17.8
+111159,16254.94511,17013.29655,88311.82854,17.8
+111160,16274.69658,16877.56792,50910.51183,17.8
+111161,16251.82062,653084.0397,85547.96078,17.8
+111162,16317.2661,16591.01495,21314.15377,17.8
+111163,16302.88026,16470.98474,84464.76742,17.8
+111164,16317.26598,16331.52478,49146.05076,17.8
+111165,16368.63507,16190.87286,81905.76247,17.8
+111166,16341.81317,16047.13445,21157.70011,17.8
+111167,16368.63481,15913.59087,80927.42859,17.8
+111168,16389.65173,15747.44075,47498.31973,17.8
+111169,356089.7589,15659.79349,78550.56253,17.8
+111170,16407.5338,15499.9451,20978.22805,17.8
+111171,16483.19089,15353.29142,0,17.8
+111172,16433.75968,15312.2143,0,17.8
+111173,16456.96402,0,0,17.8
+111174,16523.63981,0,0,17.8
+111175,0,268100.9932,0,17.8
+111176,0,0,0,17.8
+111177,0,0,0,17.8
+111178,0,64405.2179,0,17.8
+111179,69999.60957,0,0,17.8
+111180,1804.862129,2252.374177,0,20
+111181,7535.387889,19749.13698,0,20
+111182,23317.77691,14608.58452,0,20
+111183,15617.75046,13554.65408,0,20
+111184,16363.56774,14282.73042,0,20
+111185,16517.98954,14460.45772,0,20
+111186,16479.66593,282596.678,0,20
+111187,16569.39576,14624.00891,0,20
+111188,16461.78311,14749.60366,0,20
+111189,16548.01609,14868.51543,0,20
+111190,16569.41416,14892.02087,0,20
+111191,16551.57461,15107.26854,0,20
+111192,16558.7156,15104.02054,0,20
+111193,16569.40609,15264.57233,0,20
+111194,16595.43994,15330.51258,0,20
+111195,16593.66985,15470.85998,0,20
+111196,16595.43459,15562.527,0,20
+111197,16658.83573,15653.13229,551322.2948,20
+111198,16594.56885,15750.99099,0,20
+111199,16637.48717,15869.47068,0,20
+111200,16654.01927,15924.78589,0,20
+111201,16648.16066,16072.37416,0,20
+111202,16684.77786,16130.70324,0,20
+111203,16649.58968,16302.49638,0,20
+111204,16706.05867,16328.15553,0,20
+111205,16705.35041,16448.32242,0,20
+111206,16653.14416,384716.577,0,20
+111207,16791.53789,16632.29389,0,20
+111208,16657.74335,3.903301835,0,20
+111209,0,0,0,20
+111210,0,3.758274411,0,20
+111211,0,0,0,20
+111212,339668.5496,69287.2482,0,20
+111213,70409.05331,0,0,20
+111214,1985.195255,6269.017191,0,20
+111215,8055.932957,26811.44544,0,20
+111216,23664.04131,15794.20204,0,20
+111217,16036.06941,17710.70049,0,20
+111218,16800.32147,17850.21891,0,20
+111219,16917.93657,17935.7673,0,20
+111220,16906.93607,18095.62333,0,20
+111221,16929.9231,18154.45458,0,20
+111222,16877.33786,18286.91208,0,20
+111223,16971.44053,18318.25431,0,20
+111224,16912.26639,18452.71236,0,20
+111225,16971.44029,18527.3107,0,20
+111226,16932.59902,18608.49189,0,20
+111227,16951.09512,18744.38182,0,20
+111228,16956.41486,18837.11126,0,20
+111229,16994.27819,18920.07303,0,20
+111230,16932.59814,19047.05595,0,20
+111231,17029.22523,19085.36519,0,20
+111232,16955.49273,19231.24422,0,20
+111233,16995.25454,19617.32402,0,20
+111234,16997.00961,19408.97938,0,20
+111235,17012.48941,19534.86127,0,20
+111236,17014.57625,19604.58205,0,20
+111237,17003.21276,19710.98414,0,20
+111238,17018.18068,19849.91643,0,20
+111239,17038.39109,19884.29955,568959.8726,20
+111240,17024.38407,20026.20385,0,21
+111241,17085.0433,19996.09638,0,21
+111242,17046.30275,0,0,21
+111243,0,0,0,21
+111244,0,0,0,21
+111245,0,71804.83451,0,21
+111246,65543.80667,0,0,21
+111247,0,12483.91223,0,21
+111248,9604.587422,26558.52763,0,21
+111249,24314.2634,18076.28841,0,21
+111250,15903.2318,19382.99113,0,21
+111251,17260.27293,387434.1089,0,21
+111252,17361.62995,19285.30899,0,21
+111253,17309.03143,19136.95026,0,21
+111254,17406.88202,19122.94455,0,21
+111255,357049.7494,19012.33786,0,21
+111256,17353.49749,18995.62197,0,21
+111257,17479.19962,18882.0992,0,21
+111258,17419.4275,18803.66886,17749.2493,21
+111259,17506.0894,18777.75647,87231.09963,21
+111260,17479.19686,18677.53413,50736.70269,21
+111261,17506.08747,18622.78139,84434.20779,21
+111262,17523.43472,18536.55931,22313.52203,21
+111263,17548.37663,18474.48371,84042.54655,21
+111264,17571.57949,18438.35157,49652.31724,21
+111265,17586.57443,18308.61417,81651.29777,21
+111266,17596.4324,18269.94589,22763.56001,21
+111267,17597.31558,18195.03732,81321.24823,21
+111268,17531.02268,18115.24953,48737.94264,21
+111269,17613.73375,18047.1753,79182.82823,21
+111270,17609.77233,18001.16513,23159.42603,21
+111271,17530.10287,17857.59506,78888.19462,21
+111272,17485.74332,17910.82141,47895.72553,21
+111273,17505.2451,17732.80623,76964.17597,21
+111274,17531.40346,17683.81637,23478.62107,21
+111275,17470.41536,0,76694.79317,21
+111276,0,0,47115.05412,21
+111277,0,0,74951.03899,21
+111278,0,0,99237.51868,21
+111279,67046.543,71322.72712,602929.3106,21
+111280,0,0,92878.95795,21
+111281,9740.044019,5017.347583,128354.9846,21
+111282,24602.95012,27059.79878,71805.18416,21
+111283,16112.22916,15215.24088,126036.5725,21
+111284,17449.18898,17000.3183,99060.36746,21
+111285,17448.45268,16994.82822,132680.0614,21
+111286,17479.08149,16907.19553,71303.89068,21
+111287,17483.62824,16794.2198,106591.2235,21
+111288,17482.39522,16769.1789,74503.10935,21
+111289,17469.93023,16677.95537,107792.2307,21
+111290,17440.05667,16602.32014,46303.31392,21
+111291,17455.0725,16488.39256,105358.682,21
+111292,17437.45902,16465.84558,72795.84559,21
+111293,17401.59937,16342.66116,105526.8381,21
+111294,17449.82844,16294.69791,44950.61948,21
+111295,17366.23834,384325.5708,102922.623,21
+111296,17425.05706,16125.33937,71911.83061,21
+111297,17366.23466,16013.15277,104187.0307,21
+111298,357028.741,15922.81113,44737.42105,21
+111299,17402.0887,15849.21804,101728.3209,21
+111300,17321.78349,15677.32525,71294.50211,21
+111301,17410.53049,15722.55007,102966.8018,21
+111302,17327.58421,15684.16813,44309.81587,21
+111303,17435.29435,15726.04183,100421.6486,21
+111304,17366.22138,15732.67646,48524.93124,21
+111305,17414.45012,15754.79604,61033.66948,21
+111306,17405.16939,15719.96374,106125.5371,21
+111307,17435.28638,15563.69328,43553.72865,21
+111308,17396.69796,15478.54952,0,21
+111309,0,0,0,21
+111310,0,0,0,21
+111311,0,0,0,21
+111312,0,0,0,21
+111313,71631.83636,0,0,21
+111314,3633.194012,67484.06804,0,21
+111315,9445.735766,0,0,21
+111316,23597.80881,2305.686539,0,21
+111317,17030.81884,17595.43614,0,21
+111318,17510.52257,12308.38159,0,21
+111319,17599.70393,11810.05488,558248.6791,21
+111320,17595.92454,11872.14395,66529.12826,21
+111321,17624.12183,11801.33326,102963.2693,21
+111322,17595.91936,11709.95506,45403.73363,21
+111323,17644.84859,11531.06143,57767.27867,21
+111324,17586.75208,11396.3012,119789.1467,21
+111325,17665.52166,11265.33791,40387.59375,21
+111326,17557.43132,11220.98884,102398.0411,21
+111327,17644.83838,11186.96744,70619.57563,21
+111328,17643.53069,11082.11727,100652.7281,21
+111329,17584.87287,11129.3558,40285.92696,21
+111330,17620.40742,11011.19941,99913.95541,21
+111331,17667.94594,11014.70799,45707.89225,21
+111332,17623.33427,10973.25734,58030.34428,21
+111333,17685.64149,10888.91851,111841.292,21
+111334,17688.6159,10922.14967,39546.63535,21
+111335,17709.97414,10821.00753,98522.71225,21
+111336,17744.59208,10799.39541,67934.90746,21
+111337,17733.00144,10782.72526,97031.73631,21
+111338,357400.1507,10746.83483,38686.33604,21
+111339,17794.27834,378842.3768,96407.3644,21
+111340,17828.35099,10691.63717,43802.0849,21
+111341,17794.27234,10607.53099,55449.99878,21
+111342,17875.5476,278929.5449,107544.2303,21
+111343,0,10568.78425,37704.24103,21
+111344,0,0,94954.37741,21
+111345,0,0,65137.51048,21
+111346,67475.66702,0,93862.0143,21
+111347,44.63314296,0,36788.96673,21
+111348,12831.20525,0,92912.18358,21
+111349,23578.737,42706.98402,61772.9242,21
+111350,17119.80694,0,0,21
+111351,18068.29852,272200.3143,0,21
+111352,18103.12107,12689.50434,0,21
+111353,18125.81506,11030.08263,0,21
+111354,18127.03418,9751.605305,0,21
+111355,18189.6912,10162.9081,0,21
+111356,18164.84085,10213.80138,0,21
+111357,18210.14995,10123.31611,0,21
+111358,18251.28922,10130.83109,617693.7393,21
+111359,18228.67058,10106.27616,29603.2447,21
+111360,18273.81481,277804.5309,93308.61358,21
+111361,18312.71305,10210.06817,60809.06005,21
+111362,18268.54206,10280.41952,98229.744,21
+111363,18335.24423,10356.48394,33675.56798,21
+111364,18329.92923,10399.46958,93771.24241,21
+111365,18314.82907,10495.40242,68365.53294,21
+111366,18352.46062,10534.68715,104975.4139,21
+111367,18350.28871,10626.55495,44379.18664,21
+111368,18395.34799,10672.61637,102197.0488,21
+111369,18350.28753,278432.1498,70765.74494,21
+111370,18415.76053,10867.78903,103012.0809,21
+111371,18369.63372,10945.76158,43135.58835,21
+111372,18437.26449,11049.20055,100478.0248,21
+111373,18409.21748,11062.05762,69310.1649,21
+111374,18437.26386,11126.66065,101118.0317,21
+111375,18432.89219,11210.2611,41973.1516,21
+111376,0,11527.24615,98706.07365,21
+111377,0,11938.36908,67737.0603,21
+111378,339629.6382,279537.5209,99175.63947,21
+111379,69020.15239,0,40687.76765,21
+111380,931.3406094,368177.0998,96865.28058,21
+111381,13463.3363,0,66054.56566,21
+111382,23895.88879,0,97086.13331,21
+111383,17707.04764,45017.58288,39363.05675,21
+111384,18560.13723,0,94840.18052,21
+111385,18596.17249,5918.240583,64314.23108,21
+111386,18577.18674,17086.5257,94859.57916,21
+111387,18639.91729,280588.4829,37943.25654,21
+111388,18594.19485,12639.12558,67051.03332,21
+111389,18579.16812,13187.22435,33963.96065,21
+111390,18654.85389,13274.88566,62804.21263,21
+111391,18556.88088,13352.74339,9012.340016,21
+111392,18633.45281,13430.19058,62435.92502,21
+111393,18577.19293,13513.8242,31661.06121,21
+111394,18597.32526,13594.12695,0,21
+111395,18570.68835,13630.86583,0,21
+111396,18595.2923,281395.875,530564.4932,21
+111397,18677.11582,13815.41579,0,21
+111398,18549.33009,13839.37962,104535.0392,21
+111399,18634.67376,13919.34643,21689.99611,21
+111400,18571.78457,13961.57406,76136.56125,21
+111401,18637.82641,14038.12368,46517.83289,21
+111402,18505.53542,14083.34106,80796.75877,21
+111403,18595.3041,14156.08835,24227.34817,21
+111404,18548.19755,14219.75394,82933.40595,21
+111405,18532.29393,281899.5373,53967.60875,21
+111406,18505.54337,14325.60812,81853.26654,21
+111407,18515.20712,14342.94715,29742.36949,21
+111408,18481.87244,14405.86046,80209.93079,21
+111409,0,14478.31729,51878.03279,21
+111410,0,14463.37294,78997.58304,21
+111411,0,14576.17938,28227.45087,21
+111412,69382.96453,14561.52742,77534.15666,21
+111413,808.6058398,0,49806.84985,21
+111414,13220.16129,267739.8621,76181.51453,21
+111415,23835.64101,0,26779.78501,21
+111416,17554.49423,0,74841.45177,21
+111417,18382.34806,51563.9142,47744.70204,21
+111418,358010.7472,1640.061954,73389.46162,21
+111419,18362.0443,10062.79109,25447.68354,21
+111420,18317.63239,387237.7379,72185.11359,21
+111421,18301.59161,13717.7053,45856.30551,21
+111422,18190.39629,14251.13467,70782.74661,21
+111423,18150.32926,281889.0573,24285.31404,21
+111424,18062.04566,13982.96945,69784.93975,21
+111425,18003.84882,13840.09366,44153.16138,21
+111426,17933.53486,13740.3879,68348.5033,21
+111427,17916.1939,13556.39854,23203.98394,21
+111428,17806.4951,13463.43876,49682.07917,21
+111429,17720.78278,13270.36132,23333.18713,21
+111430,17701.21253,13135.35651,45918.66477,21
+111431,17589.85316,13020.50508,3758.212763,21
+111432,17590.67512,280549.6032,45600.56885,21
+111433,17459.1279,12660.50534,469780.7239,21
+111434,17420.79171,12605.12631,0,21
+111435,17344.2753,12462.64562,0,21
+111436,17313.13876,12278.95451,0,21
+111437,17193.49724,12111.91337,0,21
+111438,17176.92292,12053.75669,0,21
+111439,17089.21426,11796.39835,0,21
+111440,17005.88788,11765.08815,0,21
+111441,16985.46151,279234.7627,23260.54203,21
+111442,0,11478.92342,48103.68646,21
+111443,0,11219.9797,2024.352647,21
+111444,0,11140.96139,47678.9751,21
+111445,0,10942.82245,21185.13336,21
+111446,70719.99293,10850.37927,43731.60503,21
+111447,1599.791978,0,1667.398918,21
+111448,8441.27383,0,43377.98654,21
+111449,22657.42645,0,19184.44669,21
+111450,15799.97422,267698.7279,37234.76996,21
+111451,16246.741,0,1364.616053,21
+111452,16300.35342,35930.69461,39505.60639,21
+111453,16250.11798,640.8415848,17362.64304,21
+111454,16140.25434,5526.477926,33799.45659,21
+111455,16110.48099,12535.78198,1050.098142,21
+111456,16067.42701,8961.097879,35879.47254,21
+111457,15917.77148,9056.212107,15629.94899,21
+111458,355661.5424,9019.49738,30578.7039,21
+111459,15831.63651,276618.879,713.4598723,21
+111460,15773.91384,377293.1332,32468.35806,21
+111461,15724.2053,8881.678993,13975.11226,21
+111462,15663.03185,8710.144098,27542.12205,21
+111463,15581.17822,8642.830872,358.0150425,21
+111464,15517.71326,8522.191279,29253.21498,21
+111465,15483.02309,8391.135549,12397.94581,21
+111466,15384.99866,8273.128107,24674.4691,21
+111467,15344.00774,8172.986662,0,21
+111468,15269.45618,275642.5749,0,21
+111469,15219.21158,7904.256464,0,21
+111470,15132.01311,7826.946791,444487.4721,21
+111471,15089.36857,7718.183408,0,21
+111472,15019.41637,7585.572486,0,21
+111473,14975.80781,7520.800402,0,21
+111474,14886.38933,7410.734495,0,21
+111475,14804.37782,7318.190044,0,21
+111476,0,7202.859877,0,21
+111477,0,274703.8235,0,21
+111478,0,6987.354606,0,21
+111479,0,6911.469042,0,21
+111480,65161.43539,6807.984195,0,21
+111481,0,6774.317496,0,21
+111482,3366.945803,0,0,21
+111483,21223.7061,0,0,21
+111484,14285.47989,0,0,21
+111485,14177.25838,0,0,21
+111486,14596.79952,267674.3757,0,21
+111487,14656.79012,0,0,21
+111488,14645.85299,0,0,21
+111489,14701.41684,25369.74835,0,21
+111490,14692.32864,770.3763502,0,21
+111491,14728.18084,2305.709577,0,21
+111492,14741.72373,3310.722732,0,21
+111493,14772.22801,9964.023747,0,21
+111494,14782.79711,5131.262017,0,21
+111495,14796.11212,6328.777976,0,21
+111496,14864.89155,6249.748144,0,21
+111497,14842.83874,6249.749504,0,21
+111498,14891.44186,274367.3738,0,21
+111499,14883.9484,6185.223951,0,21
+111500,14967.40146,6100.010076,0,21
+111501,354653.0901,6118.382797,0,21
+111502,15006.42691,6047.739693,0,21
+111503,14985.89,374329.8246,0,21
+111504,15013.87891,5995.099438,0,21
+111505,15035.37629,5940.666995,0,21
+111506,15094.81545,5869.020361,0,21
+111507,15059.21534,273510.6674,0,21
+111508,15135.63992,5801.348087,454354.4826,21
+111509,15172.53227,5806.791467,0,21
+111510,0,5728.314067,0,21
+111511,0,5711.084584,0,21
+111512,0,5618.896126,0,21
+111513,0,5567.775419,0,21
+111514,66576.8739,5539.821361,0,21
+111515,0,5426.481252,0,21
+111516,5304.668727,272945.2721,0,21
+111517,22930.10297,5321.072345,0,21
+111518,14281.67914,5280.334953,0,21
+111519,15281.36547,0,0,21
+111520,15461.97891,0,0,21
+111521,15413.28735,0,0,21
+111522,15528.20781,0,0,21
+111523,15485.95082,0,0,21
+111524,15541.08673,0,0,21
+111525,15546.91267,267630.5332,0,21
+111526,15586.59868,21508.83853,0,21
+111527,15599.44777,1613.466068,0,21
+111528,15639.72925,1770.600168,0,21
+111529,15621.09103,3195.074859,0,21
+111530,15689.02341,7215.461963,0,21
+111531,15700.85053,4156.215654,0,21
+111532,15692.07323,4866.467061,0,21
+111533,15789.62561,4856.475665,0,21
+111534,15718.69628,272409.2838,0,21
+111535,15824.44653,4837.797127,0,21
+111536,15806.77239,4790.296822,0,21
+111537,15832.4276,4804.698634,0,21
+111538,15881.64079,4752.713988,0,21
+111539,15873.37375,4757.100458,0,21
+111540,15924.27967,4723.831471,0,21
+111541,15828.36803,4671.586109,0,21
+111542,15755.86507,4604.593705,0,21
+111543,15673.47332,272112.7791,0,21
+111544,339750.8257,4465.136918,0,21
+111545,0,372747.874,0,21
+111546,0,4333.64033,502440.1686,21
+111547,0,4299.428977,0,21
+111548,67257.51589,4196.325191,0,21
+111549,0,4161.800452,0,21
+111550,5340.661727,4092.5109,0,21
+111551,22384.24984,4003.032501,0,21
+111552,14031.58724,271525.5735,0,21
+111553,14834.19154,3872.663614,0,21
+111554,14804.36022,3827.310456,0,21
+111555,14837.23256,3776.661139,0,21
+111556,14676.23233,0,0,21
+111557,14656.98879,0,0,21
+111558,14514.19642,0,0,21
+111559,14478.39185,0,0,21
+111560,14417.57135,0,0,21
+111561,14284.56572,267513.0226,0,21
+111562,14245.75026,0,0,21
+111563,14133.81697,0,0,21
+111564,14111.96397,0,0,21
+111565,13966.33491,0,0,21
+111566,13923.74167,0,0,21
+111567,13853.43845,0,0,21
+111568,13732.2106,0,0,21
+111569,13722.97004,0,0,21
+111570,13570.55377,267516.272,0,21
+111571,13560.75705,0,0,21
+111572,13447.66048,0,0,21
+111573,13360.91664,0,0,21
+111574,13341.07673,0,0,21
+111575,13217.21773,0,0,21
+111576,13159.58338,0,0,21
+111577,13110.07941,0,0,21
+111578,0,0,0,21
+111579,0,267495.9724,0,21
+111580,0,0,0,21
+111581,0,0,0,21
+111582,0,0,0,21
+111583,61169.82068,0,0,21
+111584,56.33813992,0,471961.3043,21
+111585,2647.670214,0,0,21
+111586,14479.46433,0,0,21
+111587,354456.5207,368383.7682,0,21
+111588,11301.30296,267455.4504,0,21
+111589,12229.96433,0,0,21
+111590,12166.91463,0,0,21
+111591,12128.58259,0,0,21
+111592,12010.82563,0,0,21
+111593,11977.44382,0,0,21
+111594,11866.54066,0,0,21
+111595,11819.87281,0,0,21
+111596,11729.15953,0,0,21
+111597,11638.14269,267412.7895,0,21
+111598,11622.45842,0,0,21
+111599,11484.21252,0,0,21
+111600,11439.04591,0,0,21
+111601,11440.87925,0,0,21
+111602,11381.95094,0,0,21
+111603,11391.99454,0,0,21
+111604,11352.21387,0,0,21
+111605,11350.223,0,0,21
+111606,11326.2911,267378.9341,0,21
+111607,11315.38539,0,0,21
+111608,11289.46908,0,0,21
+111609,11263.00128,0,0,21
+111610,11265.03438,0,0,21
+111611,11231.56135,0,0,21
+111612,11215.88791,0,0,21
+111613,0,0,0,21
+111614,0,0,0,21
+111615,0,267380.5696,0,21
+111616,0,0,0,21
+111617,0,0,0,21
+111618,0,0,0,21
+111619,54093.53812,0,0,21
+111620,1052.729689,0,0,21
+111621,1983.188515,0,0,21
+111622,10243.40027,0,0,21
+111623,14880.61165,0,489780.9582,21
+111624,9679.99858,0,0,21
+111625,11116.07279,0,0,21
+111626,11060.48109,0,0,21
+111627,11056.69422,0,0,21
+111628,11047.50659,0,0,21
+111629,11020.03281,368400.6122,0,21
+111630,350786.4597,0,0,21
+111631,10979.19944,0,0,21
+111632,10950.64003,0,0,21
+111633,10963.64015,0,0,21
+111634,10922.0268,0,0,21
+111635,10948.04586,0,0,21
+111636,10884.57212,0,0,21
+111637,10891.46177,0,0,21
+111638,10869.01268,0,0,21
+111639,10878.46028,0,0,21
+111640,10816.52192,0,0,21
+111641,10849.77,0,0,21
+111642,10800.23227,0,0,21
+111643,10800.48349,0,0,21
+111644,10793.41644,0,0,21
+111645,10775.38715,0,0,21
+111646,10757.9035,0,0,21
+111647,10743.39422,0,0,21
+111648,10702.75731,0,0,21
+111649,0,0,0,21
+111650,0,0,0,21
+111651,0,0,0,21
+111652,0,0,0,21
+111653,0,0,0,21
+111654,0,0,0,21
+111655,0,0,0,21
+111656,52536.87955,0,0,21
+111657,1514.519566,0,0,21
+111658,1690.361498,0,0,21
+111659,8844.124024,0,0,21
+111660,14847.97154,0,0,21
+111661,8961.704413,0,506039.2106,21
+111662,10525.3959,0,0,21
+111663,10460.54773,0,0,21
+111664,10473.82894,0,0,21
+111665,10493.01179,0,0,21
+111666,10414.05315,0,0,21
+111667,10448.01078,0,0,21
+111668,10419.98648,0,0,21
+111669,10408.0742,0,0,21
+111670,10398.21213,368382.3006,0,21
+111671,10397.37313,0,0,21
+111672,10346.41677,0,0,21
+111673,350149.8604,0,0,21
+111674,10347.48772,0,0,21
+111675,10323.72982,0,0,21
+111676,10331.60748,0,0,21
+111677,10313.0124,0,0,21
+111678,10285.51682,0,0,21
+111679,10286.35965,0,0,21
+111680,10369.61398,0,0,21
+111681,10311.13935,0,0,21
+111682,10353.03867,0,0,21
+111683,10318.88792,0,0,21
+111684,10295.18743,0,0,21
+111685,10302.93477,0,0,21
+111686,0,0,0,21
+111687,0,0,0,21
+111688,0,0,0,21
+111689,0,0,0,21
+111690,0,0,0,21
+111691,0,0,0,21
+111692,0,0,0,21
+111693,0,0,0,21
+111694,52334.29219,0,0,21
+111695,1959.976986,0,0,21
+111696,1424.126959,0,0,21
+111697,7429.368126,0,0,21
+111698,15212.21471,0,0,21
+111699,8521.970481,0,0,21
+111700,10159.44122,0,520883.1152,21
+111701,10165.32817,0,0,21
+111702,10182.94974,0,0,21
+111703,10135.89988,0,0,21
+111704,10132.57891,0,0,21
+111705,10119.17842,0,0,21
+111706,10116.47832,0,0,21
+111707,10119.18077,0,0,21
+111708,10087.01304,0,0,21
+111709,10052.59511,0,0,21
+111710,10103.11828,0,0,21
+111711,10046.67097,368383.4723,0,21
+111712,10048.60426,0,0,21
+111713,10045.32194,0,0,21
+111714,10019.04186,0,0,21
+111715,10006.91083,0,0,21
+111716,349797.2798,268858.9496,0,21
+111717,10006.91293,0,0,21
+111718,9990.116054,0,0,21
+111719,9952.220729,0,0,21
+111720,9988.139595,0,0,21
+111721,9853.932252,0,0,21
+111722,9850.002377,0,0,21
+111723,9830.236501,0,0,21
+111724,0,0,0,21
+111725,0,268122.2997,0,21
+111726,0,0,0,21
+111727,0,0,0,21
+111728,0,0,0,21
+111729,0,0,0,21
+111730,0,0,0,21
+111731,0,0,0,21
+111732,47917.91316,0,0,21
+111733,1715.696976,0,0,21
+111734,1488.429243,268064.8991,0,21
+111735,7436.827015,0,0,21
+111736,14088.87852,0,0,21
+111737,8099.01548,0,534434.447,21
+111738,9588.973098,0,0,21
+111739,9604.329328,0,0,21
+111740,9588.974677,0,0,21
+111741,9522.919676,0,0,21
+111742,9582.941927,0,0,21
+111743,9506.320772,268055.7579,0,21
+111744,9501.46349,0,0,21
+111745,9506.322138,0,0,21
+111746,9467.762756,0,0,21
+111747,9450.662715,0,0,21
+111748,9441.730865,0,0,21
+111749,9439.678365,0,0,21
+111750,9390.812562,0,0,21
+111751,9385.964201,0,0,21
+111752,9374.094358,636423.3565,0,21
+111753,9368.826039,0,0,21
+111754,9321.875392,0,0,21
+111755,9352.107775,0,0,21
+111756,9292.038413,0,0,21
+111757,9299.820216,0,0,21
+111758,9258.022649,0,0,21
+111759,349095.829,0,0,21
+111760,9235.966857,0,0,21
+111761,9258.024206,267962.1907,0,21
+111762,0,0,0,21
+111763,0,0,0,21
+111764,0,0,0,21
+111765,0,0,0,21
+111766,0,0,0,21
+111767,0,0,0,21
+111768,0,0,0,21
+111769,0,0,0,21
+111770,0,267931.2358,0,21
+111771,0,0,0,21
+111772,48023.89505,0,0,21
+111773,19.55367424,0,0,21
+111774,2311.109554,0,546802.7274,21
+111775,4888.153203,0,0,21
+111776,14523.57305,0,0,21
+111777,7290.796388,0,0,21
+111778,9027.036735,0,0,21
+111779,9028.580543,0,0,21
+111780,9032.311588,0,0,21
+111781,9053.476631,0,0,21
+111782,9015.350001,268509.6987,0,21
+111783,9079.802235,0,0,21
+111784,9093.00884,0,0,21
+111785,9079.803234,0,0,21
+111786,9115.135709,0,0,21
+111787,9127.186848,0,0,21
+111788,9149.313215,0,0,21
+111789,9151.439633,0,0,21
+111790,9196.590955,0,0,21
+111791,9166.570975,267890.5048,0,21
+111792,9293.344736,0,0,21
+111793,9315.97936,368414.4068,0,21
+111794,9280.191066,0,0,21
+111795,9349.798423,0,0,21
+111796,9349.221109,0,0,21
+111797,9338.779451,0,0,21
+111798,9407.093193,0,0,21
+111799,349179.8557,0,0,21
+111800,9435.21914,267820.7965,0,21
+111801,9413.231183,0,0,21
+111802,0,0,0,21
+111803,0,0,0,21
+111804,0,0,0,21
+111805,0,0,0,21
+111806,0,0,0,21
+111807,0,0,0,21
+111808,0,0,0,21
+111809,0,267766.7059,0,21
+111810,0,0,0,21
+111811,50115.05905,0,558095.95,21
+111812,598.1213284,0,0,21
+111813,2078.336143,0,0,21
+111814,6129.68573,0,0,21
+111815,15041.90725,0,0,21
+111816,8061.663854,0,0,21
+111817,9765.321115,0,0,21
+111818,9781.537107,267735.6924,0,21
+111819,9844.019111,0,0,21
+111820,9846.140614,0,0,21
+111821,9879.229363,0,0,21
+111822,9917.023048,0,0,21
+111823,9938.08254,0,0,21
+111824,9957.629889,0,0,21
+111825,10005.55849,0,0,21
+111826,10003.47696,0,0,21
+111827,10062.08539,267727.6942,0,21
+111828,10088.9004,0,0,21
+111829,10089.63263,0,0,21
+111830,10158.07336,0,0,21
+111831,10161.98492,0,0,21
+111832,10202.23847,0,0,21
+111833,10227.06402,0,0,21
+111834,10250.76572,368441.8459,0,21
+111835,10311.21795,0,0,21
+111836,10313.66299,267695.3337,0,21
+111837,10355.7426,0,0,21
+111838,10404.71042,0,0,21
+111839,350194.8637,0,0,21
+111840,10467.9834,0,0,21
+111841,0,0,0,21
+111842,0,0,0,21
+111843,0,0,0,21
+111844,0,0,0,21
+111845,0,267623.3567,0,21
+111846,0,0,0,21
+111847,52965.85616,0,0,21
+111848,1666.052151,0,568409.5789,21
+111849,1850.419787,0,0,21
+111850,13020.29377,0,0,21
+111851,14622.88253,0,0,21
+111852,10957.57812,0,0,21
+111853,12230.61651,0,0,21
+111854,12369.83733,267595.6622,0,21
+111855,12507.79412,0,0,21
+111856,12668.33904,0,0,21
+111857,12762.88709,0,0,21
+111858,12967.3179,0,0,21
+111859,13065.35481,0,0,21
+111860,13225.65865,0,0,21
+111861,13333.75404,0,0,21
+111862,13534.85581,0,0,21
+111863,13619.15369,0,0,21
+111864,13815.40497,0,0,21
+111865,13930.57939,0,0,21
+111866,14070.25477,268174.4246,0,21
+111867,14238.5511,0,0,21
+111868,14381.69302,0,0,21
+111869,14513.9348,0,0,21
+111870,14670.77502,0,0,21
+111871,14823.9214,0,0,21
+111872,14934.60599,0,0,21
+111873,15112.06866,0,0,21
+111874,15218.04572,368450.3303,0,21
+111875,15412.30014,267577.6058,0,21
+111876,15505.47048,0,0,21
+111877,0,0,0,21
+111878,339773.5976,0,0,21
+111879,0,0,0,21
+111880,0,0,0,21
+111881,68184.57221,0,0,21
+111882,1459.463068,0,0,21
+111883,7907.850514,0,0,21
+111884,23663.10251,267531.848,0,21
+111885,15845.52544,0,577826.1174,21
+111886,16985.83256,0,0,21
+111887,17185.39361,0,0,21
+111888,17315.57055,0,0,21
+111889,17473.79047,0,0,21
+111890,17639.0896,0,0,21
+111891,17749.68459,0,0,21
+111892,17937.98344,0,0,21
+111893,18092.20268,267516.0247,0,21
+111894,18238.58958,0,0,21
+111895,18371.8462,0,0,21
+111896,18552.86161,0,0,21
+111897,18708.04903,0,0,21
+111898,18844.68314,0,0,21
+111899,19016.57609,0,0,21
+111900,19135.02222,0,0,21
+111901,19462.69673,0,0,21
+111902,19443.06761,267584.8816,0,21
+111903,19520.10813,0,0,21
+111904,19542.91837,0,0,21
+111905,19604.38104,0,0,21
+111906,19680.00209,0,0,21
+111907,19666.33184,0,0,21
+111908,19760.45526,0,0,21
+111909,19783.03727,0,0,21
+111910,19823.34462,0,0,21
+111911,0,267481.7631,0,21
+111912,0,0,0,21
+111913,0,0,0,21
+111914,72541.56537,0,0,21
+111915,6423.562262,368444.8677,0,21
+111916,13101.16071,0,0,21
+111917,25740.99595,0,0,21
+111918,359363.0163,0,0,21
+111919,20262.40759,0,0,21
+111920,20334.03029,0,0,21
+111921,20372.54864,267871.9424,0,21
+111922,20450.02048,0,586419.3345,21
+111923,20433.88578,0,0,21
+111924,20507.74252,0,0,21
+111925,20565.29425,0,0,21
+111926,20566.62979,0,0,21
+111927,20644.30375,0,0,21
+111928,20640.05576,0,0,21
+111929,20740.41181,0,0,21
+111930,20734.83313,0,0,21
+111931,20816.74861,0,0,21
+111932,20814.71287,0,0,21
+111933,20908.5221,267942.255,0,21
+111934,20968.76961,0,0,21
+111935,21000.15463,0,0,21
+111936,21044.20825,0,0,21
+111937,21100.28483,0,0,21
+111938,21150.75333,0,0,21
+111939,21231.30808,0,0,21
+111940,21231.30118,0,0,21
+111941,21321.33442,0,0,21
+111942,21380.36448,0,0,21
+111943,21416.84825,0,0,21
+111944,0,19.02473842,0,21
+111945,0,0,0,21
+111946,0,0,0,21
+111947,75391.25771,267861.5329,0,21
+111948,12952.73244,0,0,21
+111949,10647.53333,0,0,21
+111950,28777.8289,0,0,21
+111951,21123.5411,0,0,21
+111952,21915.18529,0,0,21
+111953,21981.43283,0,0,21
+111954,21984.17182,368421.5752,0,21
+111955,22129.3196,0,0,21
+111956,22145.4888,0,0,21
+111957,22182.48095,0,0,21
+111958,361986.7871,122.60563,0,21
+111959,22341.61329,0,594260.9708,21
+111960,22362.67267,0,0,21
+111961,22470.5588,267760.8229,0,21
+111962,22609.94976,0,0,21
+111963,22667.42875,0,0,21
+111964,22766.42798,0,0,21
+111965,22858.62725,0,0,21
+111966,22983.97866,0,0,21
+111967,23098.58607,0,0,21
+111968,23138.5385,0,0,21
+111969,23273.33644,0,0,21
+111970,23396.44555,18462.45259,0,21
+111971,23448.8203,0,0,21
+111972,23581.75152,2684.054719,0,21
+111973,23649.58219,1211.051019,0,21
+111974,23806.16034,7037.879098,0,21
+111975,23838.67485,3455.589948,0,21
+111976,24002.15839,4339.997331,0,21
+111977,0,4374.423325,0,21
+111978,0,4443.037675,0,21
+111979,0,4472.252295,0,21
+111980,80679.88788,4511.342661,0,21
+111981,24180.6059,4554.952006,0,21
+111982,8747.415422,5110.411821,0,21
+111983,33546.84324,5034.859089,0,21
+111984,24671.39263,5091.144523,0,21
+111985,25391.77486,5203.872642,0,21
+111986,25516.12976,5273.937292,0,21
+111987,25647.60731,5358.744238,0,21
+111988,25723.03897,5437.586356,0,21
+111989,25798.9441,5490.487547,0,21
+111990,25955.26462,5571.466505,0,21
+111991,26019.66761,5618.707073,0,21
+111992,26124.84732,5673.281129,0,21
+111993,26218.19026,374170.9865,0,21
+111994,26337.64827,5816.972982,0,21
+111995,26414.60519,5899.120341,0,21
+111996,26537.27915,5976.012712,601417.3658,21
+111997,26577.42971,6045.934346,0,21
+111998,366469.5977,6106.102098,0,21
+111999,26778.00232,6173.223981,0,21
+112000,26950.45282,0,0,21
+112001,27010.80635,0,0,21
+112002,27101.51721,0,0,21
+112003,27214.5829,0,0,21
+112004,27320.80392,0,0,21
+112005,27389.28784,0,0,21
+112006,27505.62327,0,0,21
+112007,27621.74594,27434.31085,0,21
+112008,27704.25948,0,0,21
+112009,27767.52818,2311.839674,0,21
+112010,0,6725.670528,0,21
+112011,0,8846.327723,0,21
+112012,78132.08741,6321.935397,0,21
+112013,19580.80553,7112.424776,0,21
+112014,20877.63032,7220.861295,0,21
+112015,32964.70077,7269.001098,0,21
+112016,28240.1446,7339.063555,0,21
+112017,28638.25166,7406.942558,0,21
+112018,28716.89884,7480.97315,0,21
+112019,28815.45545,7522.288628,0,21
+112020,28930.98981,7617.648418,0,21
+112021,28884.12572,7628.289504,0,21
+112022,28891.26696,7660.585873,0,21
+112023,28879.55092,7718.929418,0,21
+112024,28831.07239,7675.464721,0,21
+112025,381130.2254,7759.811152,0,21
+112026,28786.46524,7763.389047,0,21
+112027,29628.58694,7809.211567,0,21
+112028,132303.8041,8066.815881,0,21
+112029,119047.6586,8242.969402,0,21
+112030,100024.5774,8159.680599,0,21
+112031,107534.8552,8299.006186,0,21
+112032,107930.4407,376772.4155,0,21
+112033,107479.4726,8429.735217,607948.086,21
+112034,107749.097,8470.413222,0,21
+112035,107822.7254,8612.169277,0,21
+112036,107784.8106,8597.577261,0,21
+112037,107972.7962,0,0,21
+112038,447722.4871,0,0,21
+112039,108125.1702,0,0,21
+112040,108327.4214,0,0,21
+112041,108457.8889,0,0,21
+112042,79563.30059,31242.17993,0,21
+112043,80200.3039,2226.370664,0,21
+112044,158956.0006,3077.207744,0,21
+112045,101098.9954,9250.792113,0,21
+112046,100066.1652,9504.111878,0,21
+112047,114007.3088,9388.700167,0,21
+112048,108526.0442,9041.654832,0,21
+112049,108793.8258,9323.236176,0,21
+112050,109284.9515,9461.321468,0,21
+112051,108752.6087,9448.534581,0,21
+112052,109428.1485,9550.218786,0,21
+112053,109131.6352,9570.329889,0,21
+112054,109178.4105,9658.870742,0,21
+112055,28301.9778,9671.343054,0,21
+112056,28208.02803,9779.425956,0,21
+112057,28237.80957,9792.069977,0,21
+112058,28135.47901,9841.85497,0,21
+112059,28166.69554,9911.865823,0,21
+112060,28125.14368,9933.457786,0,21
+112061,28120.63865,10014.74499,0,21
+112062,28028.06762,10027.89584,0,21
+112063,28069.71438,10105.16071,0,21
+112064,28007.36914,10132.97663,0,21
+112065,27999.05326,10193.16142,0,21
+112066,27900.21746,10250.97411,0,21
+112067,27965.56559,10297.6005,0,21
+112068,27904.64449,10313.435,0,21
+112069,27837.34366,10375.1292,0,21
+112070,411670.8552,10431.44368,613905.7698,21
+112071,36429.66041,378873.9335,0,21
+112072,45568.23206,0,0,21
+112073,110956.5419,0,0,21
+112074,106677.894,0,0,21
+112075,72547.45009,0,0,21
+112076,159376.829,0,0,21
+112077,100305.9207,35601.58283,0,21
+112078,442004.2461,1378.455781,0,21
+112079,113676.3044,5950.148193,0,21
+112080,108709.8036,14059.2054,0,21
+112081,109947.0412,10764.56569,0,21
+112082,110759.9465,278005.1444,0,21
+112083,111388.8466,10814.76651,0,21
+112084,112285.9726,10763.44427,0,21
+112085,113036.2625,10753.51162,0,21
+112086,114338.9707,10692.6459,0,21
+112087,114574.7111,10683.87164,0,21
+112088,115737.2306,10651.77611,0,21
+112089,116485.0009,10601.82023,0,21
+112090,117528.7887,10580.34769,0,21
+112091,118027.5139,10526.06469,0,21
+112092,119160.5248,10521.44784,0,21
+112093,120045.8895,10423.29528,0,21
+112094,121693.1772,277851.8293,0,21
+112095,122331.5609,10393.66633,0,21
+112096,123024.2932,10370.31199,0,21
+112097,124212.3399,10282.47273,0,21
+112098,124858.1927,10326.41151,0,21
+112099,125841.2531,10229.08305,0,21
+112100,30075.9989,10177.2177,0,21
+112101,30160.67818,10192.56501,0,21
+112102,30262.06324,274278.7257,0,21
+112103,30428.28523,10055.57182,0,21
+112104,30474.64442,10066.33054,0,21
+112105,30639.55907,9979.420222,0,21
+112106,0,9970.137296,0,21
+112107,0,0,0,21
+112108,559346.6426,0,0,21
+112109,32713.15949,0,619344.9198,21
+112110,41077.00915,0,0,21
+112111,168489.7093,0,0,21
+112112,150239.3235,368361.2852,0,21
+112113,129780.132,33005.60357,0,21
+112114,137997.3241,269242.2465,0,21
+112115,139997.5511,4772.179982,0,21
+112116,141710.5548,9916.040471,0,21
+112117,141295.9038,11108.27506,0,21
+112118,142866.9968,8724.666889,0,21
+112119,143675.6891,9370.081725,0,21
+112120,143971.7862,9366.557725,0,21
+112121,145425.2933,9320.967496,0,21
+112122,485556.8522,273367.7366,0,21
+112123,146641.4531,9168.854895,0,21
+112124,147659.7723,9180.002019,0,21
+112125,148128.6575,9086.440847,0,21
+112126,149286.1302,9058.710663,0,21
+112127,150161.3083,8977.306526,0,21
+112128,150673.8289,8924.103448,0,21
+112129,151273.4055,8897.845116,0,21
+112130,152780.2068,8822.129588,0,21
+112131,153218.1809,8743.801176,0,21
+112132,154051.1154,8725.165097,0,21
+112133,154800.908,8592.851352,0,21
+112134,155961.6215,275805.3548,0,21
+112135,156269.5238,8489.735772,0,21
+112136,157451.8058,8457.52661,0,21
+112137,158212.0657,8376.50957,0,21
+112138,0,8314.842567,0,21
+112139,0,8225.114365,0,21
+112140,83417.23882,8114.093819,0,21
+112141,32301.36881,8107.177615,0,21
+112142,20161.83276,8180.247194,0,21
+112143,592082.2033,0,0,21
+112144,33251.18828,0,0,21
+112145,70692.04891,0,0,21
+112146,225003.1031,267172.9896,0,21
+112147,155266.9503,0,624312.3413,21
+112148,159715.1656,0,0,21
+112149,162217.5922,0,0,21
+112150,162004.0804,0,0,21
+112151,162055.3992,27779.45811,0,21
+112152,162097.9367,0,0,21
+112153,162336.5042,371871.3073,0,21
+112154,161888.5885,9267.516801,0,21
+112155,162353.8233,9871.327748,0,21
+112156,162235.0258,7840.78303,0,21
+112157,162224.1711,8548.237042,0,21
+112158,162226.7027,275781.2411,0,21
+112159,162295.2238,8605.782166,0,21
+112160,162296.9336,8666.397505,0,21
+112161,162374.6003,8663.197791,0,21
+112162,162387.7477,8704.800216,0,21
+112163,162099.0723,8738.526228,0,21
+112164,162925.3361,8723.706073,0,21
+112165,501684.9124,8804.337092,0,21
+112166,162510.0429,8788.657266,0,21
+112167,162589.9878,8819.127194,0,21
+112168,162553.2442,8842.524571,0,21
+112169,162698.6079,8869.154775,0,21
+112170,127291.8325,276031.6052,0,21
+112171,127010.7701,8898.011789,0,21
+112172,210794.884,8953.803212,0,21
+112173,31728.79789,8959.580091,0,21
+112174,20007.84411,8995.813523,0,21
+112175,40810.50068,8987.350454,0,21
+112176,36510.80075,9057.302481,0,21
+112177,34772.28507,9027.865134,0,21
+112178,600807.9365,9104.938265,0,21
+112179,35544.53564,9093.708145,0,21
+112180,71310.53703,9122.269415,0,21
+112181,224512.0491,0,0,21
+112182,159430.179,267165.6261,0,21
+112183,160834.0518,0,0,21
+112184,163997.4066,0,628847.9352,21
+112185,163733.0568,0,0,21
+112186,163701.1424,0,0,21
+112187,163792.1712,0,0,21
+112188,163803.2408,0,0,21
+112189,163418.1777,31276.27196,0,21
+112190,163595.9471,2803.854555,0,21
+112191,163527.8194,5028.50309,0,21
+112192,163658.4814,8743.100972,0,21
+112193,163446.0645,11651.54129,0,21
+112194,163350.9274,644179.1486,0,21
+112195,163647.2455,9526.467577,0,21
+112196,163177.6718,9552.000603,0,21
+112197,163754.7199,9564.031111,0,21
+112198,163143.43,9596.744193,0,21
+112199,163240.701,9601.22045,0,21
+112200,163359.6215,9619.415055,0,15.6
+112201,163422.3396,9867.129727,0,15.6
+112202,127626.9907,10000.57311,0,15.6
+112203,127886.6939,10102.334,0,15.6
+112204,210058.5787,10287.04417,0,15.6
+112205,498027.8926,10388.90712,0,15.6
+112206,149118.2154,277744.5144,0,15.6
+112207,172186.8462,10648.10795,0,15.6
+112208,34641.67375,10848.37884,0,15.6
+112209,35932.89281,10944.2715,0,15.6
+112210,35980.52853,11134.43936,0,15.6
+112211,35981.66439,11225.26687,0,15.6
+112212,36009.66911,11365.45597,0,15.6
+112213,606251.2068,11516.53004,0,15.6
+112214,36129.44721,11661.50812,0,15.6
+112215,71439.52682,11758.84891,0,15.6
+112216,224481.1328,11921.79534,0,15.6
+112217,161264.2191,12047.04458,0,15.6
+112218,161707.2524,279289.3406,0,15.6
+112219,165203.1768,0,0,15.6
+112220,164823.3301,0,0,15.6
+112221,165079.9417,0,632990.356,15.6
+112222,164854.8159,0,0,15.6
+112223,165141.9102,0,0,15.6
+112224,164751.2336,47182.49146,0,15.6
+112225,164869.4651,1255.383783,0,15.6
+112226,164781.8423,7310.581182,0,15.6
+112227,164849.6053,18094.72845,0,15.6
+112228,164843.3301,13043.36259,0,15.6
+112229,164773.7459,13587.31469,0,15.6
+112230,164656.667,280911.2115,0,15.6
+112231,164972.8446,14010.17437,0,15.6
+112232,164673.1307,14109.05767,0,15.6
+112233,164693.4917,382587.696,0,15.6
+112234,128480.1178,14397.37855,0,15.6
+112235,128406.1124,14507.81311,0,15.6
+112236,211005.9707,14720.77266,0,15.6
+112237,158563.7754,14790.6678,0,15.6
+112238,154050.7852,14918.63298,0,15.6
+112239,171407.9257,15087.50335,0,15.6
+112240,164140.2443,15246.57228,0,15.6
+112241,164849.2055,15305.0719,0,15.6
+112242,164816.685,282494.0253,0,15.6
+112243,36419.12354,15641.97471,0,15.6
+112244,36565.44535,15719.24528,0,15.6
+112245,375875.9893,15907.16384,0,15.6
+112246,36518.08332,16041.0048,0,15.6
+112247,36418.99071,16135.27594,0,15.6
+112248,611793.4686,16293.27814,0,15.6
+112249,36425.85718,16471.03284,0,15.6
+112250,72202.23869,16524.16346,0,15.6
+112251,223721.1668,16698.06948,0,15.6
+112252,162990.1817,16880.75696,0,15.6
+112253,161649.5253,16952.93287,0,15.6
+112254,165439.0894,266945.6676,0,15.6
+112255,165225.3927,0,0,15.6
+112256,165186.2471,0,0,15.6
+112257,165075.4151,58846.60364,0,15.6
+112258,165286.1984,0,636775.3772,15.6
+112259,165058.1484,15435.88494,0,15.6
+112260,165172.2263,21946.36181,0,15.6
+112261,165669.2295,17237.88089,0,15.6
+112262,167009.9287,18023.72628,0,15.6
+112263,167163.1799,18023.25656,0,15.6
+112264,168701.4018,18099.70039,0,15.6
+112265,168881.7662,18109.92449,0,15.6
+112266,132674.2392,285171.4115,0,15.6
+112267,133583.5808,18194.87307,0,15.6
+112268,216859.5001,18227.67482,0,15.6
+112269,166730.6015,386638.4698,0,15.6
+112270,165785.7122,18285.13752,0,15.6
+112271,178086.8725,18406.86945,0,15.6
+112272,174938.2083,18404.42162,0,15.6
+112273,175913.5934,18425.91663,0,15.6
+112274,176462.5388,18490.34641,0,15.6
+112275,177354.5404,18547.44539,0,15.6
+112276,178177.6835,18571.14663,0,15.6
+112277,179089.898,18597.27459,0,15.6
+112278,38420.36772,285625.2852,0,15.6
+112279,38587.43362,18654.21624,0,15.6
+112280,38610.3259,18752.50371,0,15.6
+112281,38840.05337,18760.67866,0,15.6
+112282,973867.4495,18810.18943,0,15.6
+112283,38990.45288,18860.98343,0,15.6
+112284,105610.9324,18845.72102,0,15.6
+112285,250103.2547,18949.1525,0,15.6
+112286,178035.6539,18977.35832,0,15.6
+112287,186236.5801,0,0,15.6
+112288,188677.6638,0,0,15.6
+112289,189201.3883,0,0,15.6
+112290,190257.3848,332584.1367,0,15.6
+112291,190711.264,1232.608384,0,15.6
+112292,191988.7434,15534.66745,0,15.6
+112293,192497.4118,23916.29141,0,15.6
+112294,193395.277,18543.89254,668902.8576,15.6
+112295,194274.0153,19374.21059,0,15.6
+112296,194858.089,19350.87959,0,15.6
+112297,195846.5768,19455.27294,0,15.6
+112298,156278.15,19453.26097,0,15.6
+112299,156941.7421,19536.09581,0,15.6
+112300,242626.766,19559.35782,0,15.6
+112301,202375.0882,19559.35445,370132.3682,15.6
+112302,189130.1213,286591.8756,0,15.6
+112303,205231.2546,19639.93897,0,15.6
+112304,202129.5881,19722.8167,0,15.6
+112305,202362.675,387994.8924,0,15.6
+112306,203509.8991,19778.07329,0,15.6
+112307,204144.6107,19826.11975,0,15.6
+112308,205372.1128,19787.24804,0,15.6
+112309,205680.4055,19929.13014,0,15.6
+112310,206879.9051,19901.80075,0,15.6
+112311,207730.8611,19953.84964,0,15.6
+112312,42004.97501,20002.8214,0,15.6
+112313,42024.51881,20033.45392,0,15.6
+112314,42122.8498,287005.5667,0,15.6
+112315,42269.70321,20086.66419,0,15.6
+112316,705682.7623,20179.27561,0,15.6
+112317,95190.63267,20145.5137,0,15.6
+112318,127115.864,20233.90611,0,15.6
+112319,620377.9296,20256.80529,0,15.6
+112320,207409.8268,0,0,15.6
+112321,209845.4546,0,0,15.6
+112322,209408.7968,0,0,15.6
+112323,209096.2494,69013.70244,0,15.6
+112324,209058.268,2402.399428,0,15.6
+112325,208322.0375,13872.03177,0,15.6
+112326,208116.5876,292411.3758,0,15.6
+112327,208127.8324,18709.355,0,15.6
+112328,207553.6624,19584.68778,0,15.6
+112329,207206.8678,19624.28051,0,15.6
+112330,166567.7484,19580.2834,717257.0376,15.6
+112331,165749.0667,19555.0075,0,15.6
+112332,251242.2389,19510.89626,0,15.6
+112333,208587.2505,19462.51968,0,15.6
+112334,196681.9611,19450.84634,0,15.6
+112335,209702.6921,19450.84426,0,15.6
+112336,205639.3975,19381.15831,0,15.6
+112337,205835.863,19381.15637,0,15.6
+112338,204960.4007,286166.6158,0,15.6
+112339,205038.1662,19299.93788,0,15.6
+112340,204703.2552,19250.83605,0,15.6
+112341,204341.3062,387563.9887,0,15.6
+112342,204121.9684,19213.33951,0,15.6
+112343,203872.4975,19169.27903,0,15.6
+112344,203893.336,19122.18661,0,15.6
+112345,203047.4009,19183.14658,0,15.6
+112346,40731.89666,19035.44723,0,15.6
+112347,40655.35573,19075.34682,0,15.6
+112348,40646.36838,19051.0058,0,15.6
+112349,40654.35617,19004.7182,0,15.6
+112350,689157.7473,285747.0291,0,15.6
+112351,75969.52557,18978.68263,0,15.6
+112352,115898.0413,18908.66539,0,15.6
+112353,269428.2326,0,0,15.6
+112354,191918.4668,0,0,15.6
+112355,201155.2763,0,0,15.6
+112356,540631.235,65190.06173,0,15.6
+112357,200892.4683,128.5393647,0,15.6
+112358,200833.0453,15348.90899,0,15.6
+112359,200219.3827,23399.614,0,15.6
+112360,199960.9906,17889.09702,0,15.6
+112361,199829.9163,18681.25696,0,15.6
+112362,159172.4233,285455.6502,0,15.6
+112363,158961.4593,18550.57572,0,15.6
+112364,243598.3162,18660.04032,0,15.6
+112365,200941.7151,18526.67613,0,15.6
+112366,187728.9326,18537.27233,711770.0587,15.6
+112367,203086.432,18526.67423,0,15.6
+112368,198062.8472,18419.4188,0,15.6
+112369,197603.8083,18465.37306,0,15.6
+112370,197479.6611,18406.06658,0,15.6
+112371,197478.9035,18392.68993,0,15.6
+112372,196868.0276,18344.48255,0,15.6
+112373,196714.0465,18311.84155,0,15.6
+112374,196645.6787,285018.9887,0,15.6
+112375,196108.6383,18285.01232,0,15.6
+112376,196052.6744,18209.61463,0,15.6
+112377,195651.3792,386472.3216,0,15.6
+112378,195612.8643,18164.02863,0,15.6
+112379,195140.5335,18149.98124,0,15.6
+112380,39942.11212,18104.765,0,15.6
+112381,39976.49435,18162.03383,0,15.6
+112382,39976.70892,18185.51375,0,15.6
+112383,40069.436,18212.54424,0,15.6
+112384,671479.5081,18272.07635,0,15.6
+112385,61616.93424,18328.36517,0,15.6
+112386,110949.5212,266749.3241,0,15.6
+112387,265655.2319,0,0,15.6
+112388,184922.0581,0,0,15.6
+112389,196440.3213,63889.58331,0,15.6
+112390,196448.0347,0,0,15.6
+112391,196612.6386,15121.03273,0,15.6
+112392,196715.4506,23379.88592,0,15.6
+112393,536306.7146,17823.21376,0,15.6
+112394,156797.7278,282543.4979,0,15.6
+112395,156677.3824,18784.49866,0,15.6
+112396,241230.1029,18823.38212,0,15.6
+112397,200519.9727,18861.32369,0,15.6
+112398,185272.6921,18902.55752,0,15.6
+112399,202731.2076,18939.88078,0,15.6
+112400,197428.7957,19008.39943,0,15.6
+112401,197499.9885,19045.59492,0,15.6
+112402,197917.4021,282923.7103,707866.3749,15.6
+112403,198030.2663,19151.00003,0,15.6
+112404,197699.7376,19149.08816,0,15.6
+112405,198166.3149,19174.63483,0,15.6
+112406,198225.8275,19302.82226,0,15.6
+112407,198419.5728,19221.50642,0,15.6
+112408,198099.7935,19347.22814,0,15.6
+112409,198914.6303,19386.62753,0,15.6
+112410,198291.5498,283328.8527,0,15.6
+112411,199077.368,19441.0741,0,15.6
+112412,198748.4094,19514.46801,0,15.6
+112413,199033.2468,387802.5867,0,15.6
+112414,40451.71252,19615.83612,0,15.6
+112415,40688.04242,19641.29247,0,15.6
+112416,40490.98615,19661.96566,0,15.6
+112417,40563.39816,19685.35121,0,15.6
+112418,682233.3358,283711.1839,0,15.6
+112419,69930.64606,0,0,15.6
+112420,115402.229,0,0,15.6
+112421,268227.9465,0,0,15.6
+112422,190409.1953,69870.22628,0,15.6
+112423,200976.0163,1934.345076,0,15.6
+112424,200672.665,14543.083,0,15.6
+112425,201432.6845,25808.79955,0,15.6
+112426,160109.9442,283138.9855,0,15.6
+112427,160623.9723,20203.53896,0,15.6
+112428,245059.7163,20251.40246,0,15.6
+112429,206304.9457,20292.07907,0,15.6
+112430,528405.8363,20407.24619,0,15.6
+112431,206668.1113,20350.47752,0,15.6
+112432,201967.4652,20454.80636,0,15.6
+112433,201589.6982,20472.25838,0,15.6
+112434,201919.348,284505.1622,0,15.6
+112435,202000.8853,20553.32479,0,15.6
+112436,201872.8665,20611.19786,0,15.6
+112437,202480.6666,20688.10856,0,15.6
+112438,202063.1629,20732.13043,704419.0568,15.6
+112439,202491.6276,20779.22319,0,15.6
+112440,202357.3579,20779.21914,0,15.6
+112441,202316.6992,20899.57687,0,15.6
+112442,202521.805,284692.1013,0,15.6
+112443,202028.2761,20899.56905,0,15.6
+112444,202136.8489,20836.64561,0,15.6
+112445,201945.2267,20899.56115,0,15.6
+112446,202101.0989,20899.55718,0,15.6
+112447,201539.8158,20889.94471,0,15.6
+112448,40939.10217,20946.3545,0,15.6
+112449,40916.05077,389168.7748,0,15.6
+112450,41009.62525,20966.31057,0,15.6
+112451,40870.22514,20989.96847,0,15.6
+112452,687913.3617,0,0,15.6
+112453,74680.28758,0,0,15.6
+112454,115592.797,0,0,15.6
+112455,268846.3037,74422.55237,0,15.6
+112456,191562.4103,3968.03009,0,15.6
+112457,201563.8332,13078.74903,0,15.6
+112458,159989.0122,28026.71705,0,15.6
+112459,160659.2231,20019.05736,0,15.6
+112460,244573.0397,21133.46609,0,15.6
+112461,207111.672,21100.3845,0,15.6
+112462,187489.157,21179.94677,0,15.6
+112463,206357.3817,21219.62496,0,15.6
+112464,200843.1781,21166.4387,0,15.6
+112465,200485.0465,21223.48019,0,15.6
+112466,200455.8276,21195.84555,0,15.6
+112467,539955.4705,21236.59703,0,15.6
+112468,200582.7859,21252.59401,0,15.6
+112469,199989.4722,21252.58958,375047.8426,15.6
+112470,199847.9953,21279.11566,0,15.6
+112471,200465.0116,21285.48783,0,15.6
+112472,199579.075,21276.25762,0,15.6
+112473,199928.4147,21331.82638,0,15.6
+112474,199808.1169,21276.24874,785008.3305,15.6
+112475,199473.671,21384.40876,0,15.6
+112476,199410.5547,21298.90595,0,15.6
+112477,199603.294,21407.99706,0,15.6
+112478,199194.2178,21331.80401,0,15.6
+112479,199284.8096,21427.70791,0,15.6
+112480,198971.584,21364.6179,0,15.6
+112481,199068.8701,21394.87588,0,15.6
+112482,40784.0112,21463.32143,0,15.6
+112483,40719.7487,21407.96973,0,15.6
+112484,40763.11207,21451.19872,0,15.6
+112485,40670.79863,368240.6569,0,15.6
+112486,681229.6166,0,0,15.6
+112487,69386.43351,0,0,15.6
+112488,113055.1916,76234.86611,0,15.6
+112489,266867.8918,4676.85104,0,15.6
+112490,147545.2096,12770.55639,377809.7612,15.6
+112491,157716.292,28934.64828,0,15.6
+112492,242056.3938,20402.3085,88119.71646,15.6
+112493,204592.1819,21572.96469,115096.6981,15.6
+112494,184167.7861,21680.36127,263.0447909,15.6
+112495,203893.6243,21628.15931,121219.8889,15.6
+112496,197817.6937,21657.80051,57647.45855,15.6
+112497,198165.7749,21693.53059,116275.2159,15.6
+112498,197558.738,21690.28051,679.4533935,15.6
+112499,197908.2034,21670.25468,112979.6975,15.6
+112500,197332.0716,21736.08608,0,15.6
+112501,1058298.395,1223562.537,197507.443,15.6
+112502,1042154.469,461163.556,44585.87115,15.6
+112503,577184.3002,315740.8019,128319.5973,15.6
+112504,1009238.063,300429.7901,76120.02625,15.6
+112505,425581.6977,291902.6828,134509.7571,15.6
+112506,502874.8556,331284.0006,29633.62537,15.6
+112507,488982.5622,293810.7921,129994.4731,15.6
+112508,471558.2021,298818.4402,74318.95997,15.6
+112509,470538.189,297087.6194,122297.9286,15.6
+112510,468270.5115,296800.2408,613779.9002,15.6
+112511,467877.2861,295289.795,128822.8192,15.6
+112512,464070.766,294973.0214,41950.91246,15.6
+112513,463447.2903,293786.3747,53036.23078,15.6
+112514,463169.2448,292923.9799,77365.74765,15.6
+112515,461219.6589,292828.6014,133844.3952,15.6
+112516,109931.886,291398.6472,29930.42239,15.6
+112517,109736.484,291130.1352,117254.107,15.6
+112518,914838.2549,213199.1516,62007.00063,15.6
+112519,515144.6885,213461.5485,124094.595,15.6
+112520,399530.3728,396663.9658,29829.1486,15.6
+112521,465645.5344,619172.1922,118701.1016,15.6
+112522,366711.9558,297536.2625,69320.58826,15.6
+112523,354310.4198,286772.5645,104002.3225,15.6
+112524,563039.521,288895.6998,29839.1526,15.6
+112525,436764.8634,287150.8532,113371.4067,15.6
+112526,459018.4674,286532.4812,67652.25494,15.6
+112527,463993.4076,285996.7104,101838.8341,15.6
+112528,455792.312,285848.848,29869.22842,15.6
+112529,454793.6247,285154.9878,109129.3579,15.6
+112530,455323.4839,284675.8161,65414.08018,15.6
+112531,446206.2991,73697.95808,0,15.6
+112532,447688.5197,73549.22022,0,15.6
+112533,446039.1678,73202.03448,0,15.6
+112534,446481.3122,72935.5288,0,15.6
+112535,445523.7823,701937.6109,138342.4967,15.6
+112536,445043.1173,134873.8509,17820.67272,15.6
+112537,445238.5454,258609.6975,106251.1616,15.6
+112538,444428.2857,316063.2763,66491.34601,15.6
+112539,444614.7577,278135.2249,96262.80526,15.6
+112540,443844.891,281369.2764,30360.17222,15.6
+112541,783154.2582,281312.6778,102930.3403,15.6
+112542,443753.6118,280650.9216,62919.79632,15.6
+112543,443313.2625,280739.7173,93745.96073,15.6
+112544,443166.316,279898.142,30405.67627,15.6
+112545,442665.7869,279973.24,99918.36202,15.6
+112546,443158.4281,279519.0403,580526.6017,15.6
+112547,442246.521,279372.0652,96752.80499,15.6
+112548,96076.89436,278731.1514,30815.65968,15.6
+112549,95779.61346,278764.3947,103074.9287,15.6
+112550,898380.8702,208583.6541,63296.62121,15.6
+112551,519313.8273,208000.9946,94099.69808,15.6
+112552,381105.8244,373370.0479,30911.01126,15.6
+112553,456624.5161,244041.2094,100238.8989,15.6
+112554,364705.0843,282350.8578,62062.58283,15.6
+112555,353315.0825,278570.4806,91779.60734,15.6
+112556,544769.2374,277680.0185,31020.87702,15.6
+112557,431571.6864,644739.8686,97631.83784,15.6
+112558,454136.9183,276798.5132,61062.77894,15.6
+112559,459173.6967,276170.2791,89666.22289,15.6
+112560,446062.4509,276242.1104,31137.74567,17.8
+112561,2305997.667,1506807.348,1056862.596,17.8
+112562,2258538.414,1304382.695,744103.3787,17.8
+112563,1047486.232,396811.3,502195.565,17.8
+112564,766521.361,704004.9711,301684.5691,17.8
+112565,905957.5669,214545.5512,381493.2518,17.8
+112566,1225479.663,128212.3485,267856.6048,17.8
+112567,962962.8639,1255767.199,472191.9166,17.8
+112568,997504.8005,392234.6459,372640.8358,17.8
+112569,1006478.467,669360.1711,400960.4544,17.8
+112570,1000909.292,538097.6436,419938.6949,17.8
+112571,998525.505,588962.9674,543818.3138,17.8
+112572,995236.2704,563317.2357,390340.1527,17.8
+112573,995883.3765,560558.6053,517893.5521,17.8
+112574,983195.368,555621.5297,474469.2081,17.8
+112575,980684.0233,553149.0021,542117.186,17.8
+112576,978823.6683,549883.8826,409728.6421,17.8
+112577,976939.1191,580793.7142,545921.3958,17.8
+112578,1312111.859,564812.5806,420953.1505,17.8
+112579,972111.0123,563217.7081,455569.8527,17.8
+112580,180204.4667,563868.6352,579175.0932,17.8
+112581,1010777.944,559773.8718,433856.5816,17.8
+112582,1021503.147,429146.0282,1398668.281,17.8
+112583,903683.9582,426959.0831,523542.6839,17.8
+112584,1022998.221,660994.9145,629578.2205,17.8
+112585,982289.2646,607545.2134,446156.3491,17.8
+112586,814507.0688,503059.8889,599609.6797,17.8
+112587,1011505.291,569799.6528,456284.8919,17.8
+112588,991121.3721,550795.1579,517351.1049,17.8
+112589,936546.332,546008.9175,701547.2172,17.8
+112590,958897.4945,544020.7348,466331.8441,17.8
+112591,953398.6712,526587.8952,324451.0303,17.8
+112592,952324.0703,524545.4071,219691.0861,17.8
+112593,950253.0239,891310.3442,303780.7163,17.8
+112594,947611.265,520658.7989,119392.2594,17.8
+112595,949122.3555,519406.9642,310440.0808,17.8
+112596,945623.5691,517671.9112,1083393.999,17.8
+112597,945931.1358,121425.0969,296747.6886,17.8
+112598,944075.1888,120794.6583,489444.6436,17.8
+112599,943107.9387,120069.3489,612303.7769,17.8
+112600,941828.7375,1132833.111,642099.2327,17.8
+112601,941610.3146,315174.145,565033.4361,17.8
+112602,940396.2517,516176.1625,699272.7443,17.8
+112603,939490.1213,489544.9439,489336.2919,17.8
+112604,938511.2613,492250.1661,635938.1431,17.8
+112605,937865.6075,482380.8429,481775.0971,17.8
+112606,935887.7861,482433.7201,550580.6215,17.8
+112607,937092.6491,478877.2985,749659.2279,17.8
+112608,934264.4695,477484.1553,490899.4483,17.8
+112609,934538.841,527769.4659,662894.5528,17.8
+112610,934301.1756,503817.9045,609981.0679,17.8
+112611,168528.0578,505795.7267,713985.7436,17.8
+112612,1001202.203,505627.0943,503136.2105,17.8
+112613,1005924.342,505128.6343,675178.5195,17.8
+112614,887674.221,389654.4874,509872.9081,17.8
+112615,1278018.509,389441.6066,565432.8588,17.8
+112616,919800.0343,623567.6659,803756.0563,17.8
+112617,806633.2186,500785.1843,520386.874,17.8
+112618,1007428.7,483596.3256,1639990.696,17.8
+112619,927403.2942,501448.8007,649691.272,17.8
+112620,922995.827,493837.4169,746218.3867,20
+112621,2314019.508,2616681.568,3790207.682,20
+112622,2184690.713,1737868.643,1585552.766,20
+112623,728894.5223,699995.9842,477920.8696,20
+112624,928138.8351,602577.9024,941465.9357,20
+112625,1305164.067,709122.7839,778159.1991,20
+112626,1013421.925,1002403.843,896195.2704,20
+112627,1059481.789,756704.5387,802734.081,20
+112628,1056455.558,811239.2116,799984.6256,20
+112629,1048455.612,810239.8744,975052.2974,20
+112630,1046225.036,807407.6371,792975.3006,20
+112631,1042440.813,806883.1799,918904.9921,20
+112632,1039865.472,804405.5571,813491.3321,20
+112633,1037535.74,801310.1969,904497.5593,20
+112634,1027604.671,800314.8663,1101672.587,20
+112635,1021856.269,799002.525,806213.6612,20
+112636,1020284.755,797833.146,965482.4464,20
+112637,1018034.761,796235.6659,812777.1313,20
+112638,1012918.635,793544.5382,900053.5729,20
+112639,1010140.984,793919.3012,1124513.945,20
+112640,1007134.746,790990.9629,817002.3756,20
+112641,1002943.337,790954.1187,988694.7583,20
+112642,1002180.954,789603.9806,825019.99,20
+112643,996153.8046,789113.0303,843349.4251,20
+112644,997775.6287,787609.5698,837526.1213,20
+112645,990609.8733,786060.8315,841973.2709,20
+112646,990935.1826,785970.2044,935753.0362,20
+112647,988469.8999,785153.3742,1194696.571,20
+112648,984189.7613,784169.8709,841590.0686,20
+112649,983003.0694,782382.5542,1025309.869,20
+112650,980877.5179,783889.0869,847937.3922,20
+112651,976901.0637,779412.7058,850533.709,20
+112652,976418.9158,782218.9656,857651.5948,20
+112653,973143.0477,778703.2569,861696.607,20
+112654,971391.991,778817.9694,868268.7264,20
+112655,969028.1,778919.1073,871399.6014,20
+112656,967045.4461,777096.3961,877931.1224,20
+112657,966100.8329,777132.6495,1406845.103,20
+112658,961259.0974,777090.5944,896158.8954,20
+112659,962492.2765,776029.6009,1127411.223,20
+112660,958008.832,775833.2439,887697.402,20
+112661,958248.5601,774658.9312,996413.8753,20
+112662,954077.9287,775562.0898,891843.0124,20
+112663,953611.1361,773365.2118,893567.7524,20
+112664,952596.6803,773560.2674,900776.2301,20
+112665,949233.3249,773122.0411,902475.4762,20
+112666,948544.4299,773848.8247,905856.7192,20
+112667,945549.2518,772526.7667,910634.4631,20
+112668,944855.3493,771150.4815,912900.5186,20
+112669,943477.1431,772099.6215,916423.462,20
+112670,940823.2699,771984.2761,920066.7474,20
+112671,939588.7023,770657.6601,922662.5179,20
+112672,936300.4872,771632.1601,926592.5329,20
+112673,937369.5055,770234.2367,928326.5192,20
+112674,933407.4973,769778.0398,931752.848,20
+112675,933230.652,771363.6284,933537.3932,20
+112676,930621.3,768311.768,937043.6218,20
+112677,929412.1061,771304.879,939472.5861,20
+112678,927992.0493,768360.3257,940637.8136,20
+112679,925924.1234,769508.9459,944912.0121,20
+112680,924807.1991,769402.1714,946297.0188,21
+112681,1334996.746,1251088.513,889929.8599,21
+112682,1330042.167,1245444.748,884550.5902,21
+112683,1326878.41,1241630.267,883019.2759,21
+112684,1326357.979,1240001.59,884830.6402,21
+112685,1323309.201,1237983.393,884066.9486,21
+112686,1322423.587,1235591.695,886424.013,21
+112687,1321867.174,1233616.525,884805.8419,21
+112688,1318832.652,1230872.313,887579.4249,21
+112689,1318081.828,1229584.906,885611.288,21
+112690,1316972.218,1226321.035,889745.9825,21
+112691,1314634.761,1226438.639,887911.4744,21
+112692,1314434.944,1222229.814,890455.8928,21
+112693,1312852.38,1221188.896,889316.5898,21
+112694,1310770.457,1218668.685,891727.851,21
+112695,1311093.3,1218280.27,891097.0382,21
+112696,1308621.421,1213796.156,891004.9858,21
+112697,1307230.808,1213653.417,893595.3354,21
+112698,1307249.029,1212063.373,892612.2878,21
+112699,1304986.339,1208743.987,894565.0307,21
+112700,1305972.81,1207958.063,893882.2402,21
+112701,1302199.026,1205853.055,895850.0905,21
+112702,1302398.052,1203229.756,896252.0561,21
+112703,1300921.474,1202877.246,894701.2356,21
+112704,1301036.342,1200480.752,897488.7492,21
+112705,1296809.01,1197948.328,897434.1694,21
+112706,1296110.294,1197278.835,897747.107,21
+112707,1295048.799,1194255.906,897411.9825,21
+112708,1292596.664,1193020.402,899886.9551,21
+112709,1293388.157,1190793.803,897818.559,21
+112710,1289943.717,1190661.514,901578.5212,21
+112711,1290484.114,1188335.908,899340.3675,21
+112712,1286780.316,1187927.371,900879.7466,21
+112713,1286936.05,1183236.714,900173.7747,21
+112714,1284784.201,1184300.801,903659.1646,21
+112715,1284292.011,1180642.694,900590.4391,21
+112716,1282909.857,1180090.588,903541.9658,21
+112717,1280950.796,1178956.013,902280.176,21
+112718,1279332.199,1175327.14,903239.3707,21
+112719,1278616.291,1175653.536,903790.5336,21
+112720,1277301.181,1172099.387,904999.1125,21
+112721,1276463.361,1172184.517,908110.3811,21
+112722,1274725.357,1169519.56,904733.4354,21
+112723,1273002.511,1167371.107,908148.3385,21
+112724,1272900.758,1167538.734,908024.3547,21
+112725,1271277.131,1163563.789,906565.8193,21
+112726,1270553.967,1163253.68,909306.6778,21
+112727,1267396.558,1161228.924,901984.8426,21
+112728,1269073.989,1160000.921,901243.487,21
+112729,1264999.335,1157804.828,902145.9936,21
+112730,1265684.833,1156706.453,901439.6487,21
+112731,1264175.154,1154972.546,902205.6475,21
+112732,1263171.784,1151826.022,883283.377,21
+112733,1260175.776,1151914.272,883415.2139,21
+112734,1262169.16,1150275.575,880581.5048,21
+112735,1258540.818,1147484.263,881413.9201,21
+112736,1259802.765,1146957.591,879445.0519,21
+112737,1256280.312,1144086.431,878732.454,21
+112738,1256901.242,1142685.736,878397.7275,21
+112739,1254903.296,1141056.893,876302.536,21
+112740,1254437.683,1137590.908,876867.3129,21
+112741,1027077.741,903880.0346,583184.6298,21
+112742,1012210.114,885212.9885,571576.9101,21
+112743,1006859.384,877540.7938,567972.0627,21
+112744,1003801.167,873393.1126,562275.3683,21
+112745,999139.2404,870195.1514,558865.3233,21
+112746,995832.8482,866220.2522,554664.3468,21
+112747,993227.6497,864287.4979,550501.7912,21
+112748,988379.7667,859717.1707,546794.6037,21
+112749,987048.0415,857369.8508,542719.7437,21
+112750,982337.2553,854350.9748,538973.9534,21
+112751,979929.0808,850920.0681,535159.2475,21
+112752,977964.5248,847852.114,531896.3544,21
+112753,972323.1512,845087.2794,528090.1608,21
+112754,972085.7893,841559.9233,524844.4581,21
+112755,968212.2666,839295.9001,522377.2575,21
+112756,965246.4638,810357.0534,517895.5291,21
+112757,962356.6263,804109.3596,515434.4923,21
+112758,959639.3096,798957.1304,511900.636,21
+112759,957987.2117,794803.0022,508834.1581,21
+112760,953532.9582,791284.838,505453.8463,21
+112761,953273.2134,785859.843,502510.1281,21
+112762,948861.0497,783039.0997,499191.2236,21
+112763,945940.8064,777887.1455,496521.5728,21
+112764,945668.5107,774520.5793,493274.5934,21
+112765,940332.274,769939.0907,487690.0723,21
+112766,940648.4295,766393.3831,484732.3871,21
+112767,935930.0404,762259.0671,482183.1323,21
+112768,934938.6667,758856.1928,478587.2205,21
+112769,932698.7162,754355.7453,475675.5981,21
+112770,929822.6935,750992.6507,473170.188,21
+112771,927005.2403,746999.1138,469698.6056,21
+112772,925411.567,743756.5765,466764.4621,21
+112773,922953.7996,740079.3147,463052.2638,21
+112774,920444.4124,736199.3424,460439.4431,21
+112775,917467.0012,732765.9259,457537.062,21
+112776,916083.6223,729566.0306,453767.2929,21
+112777,913777.7564,725032.4427,451201.24,21
+112778,911954.4603,721824.9165,447292.7843,21
+112779,908469.3964,718451.7302,445111.7423,21
+112780,906790.957,714475.3674,440959.5377,21
+112781,905641.9922,710928.6934,438230.6534,21
+112782,902907.8977,707110.7598,435863.9143,21
+112783,900285.1736,703522.2734,431301.2437,21
+112784,897995.143,700309.276,429260.6657,21
+112785,897500.3097,696328.4689,425030.9299,21
+112786,892627.2155,692684.1309,422911.4116,21
+112787,892928.2007,689135.8621,419243.0885,21
+112788,889888.3874,685335.1271,416447.6878,21
+112789,887123.1418,682125.0733,412031.8883,21
+112790,885993.6437,678376.1604,410377.018,21
+112791,883809.949,674915.4111,405899.7299,21
+112792,881760.1576,671110.9428,403668.3122,21
+112793,879495.3608,668881.1011,399432.6797,21
+112794,877008.2762,664340.6118,397462.5051,21
+112795,877400.8998,662213.6185,390457.141,21
+112796,872355.0091,658252.1247,387791.4356,21
+112797,872278.1543,655362.6376,383505.7021,21
+112798,868856.0808,651607.4533,381393.3384,21
+112799,868026.054,648752.5591,377917.0843,21
+112800,865176.8886,645285.4105,376656.0444,21
+112801,863729.2088,639649.268,371747.9211,21
+112802,860744.4873,634570.1525,368332.3398,21
+112803,858877.6726,629883.1314,363475.0634,21
+112804,856466.5578,624446.4097,360289.2771,21
+112805,853118.1396,619811.8677,355626.6454,21
+112806,851991.4259,614420.0513,351277.8984,21
+112807,849012.0925,609519.449,347292.3662,21
+112808,847050.0038,604866.4471,344526.9857,21
+112809,845968.0186,600016.3169,339451.3132,21
+112810,841094.2335,596086.8642,336881.6316,21
+112811,841718.5034,591841.8725,332705.917,21
+112812,838184.9575,587799.0845,329291.3363,21
+112813,835823.7395,582224.6963,324817.6716,21
+112814,834097.585,579720.629,321915.9533,21
+112815,830773.4124,574130.3241,317327.8092,21
+112816,830281.6729,570278.9397,314275.7169,21
+112817,826298.7592,566169.8788,309893.3259,21
+112818,826391.4426,561380.5164,306165.35,21
+112819,822296.0483,556640.8806,302029.0781,21
+112820,820655.0986,552806.3731,298748.4769,21
+112821,818640.2266,548500.3879,292782.9755,21
+112822,816910.8445,543199.9293,289526.2966,21
+112823,813762.9185,539401.6121,284875.138,21
+112824,812393.7282,534576.3228,281153.3728,21
+112825,810432.1178,532002.0312,276779.5618,21
+112826,807111.9373,527160.0644,273232.8906,21
+112827,806363.5361,522991.4435,268162.3604,21
+112828,803018.0422,518531.8067,265325.0428,21
+112829,801869.9986,514005.3753,260019.911,21
+112830,799419.2591,509465.982,256733.4098,21
+112831,797170.281,504364.2882,252215.1705,21
+112832,795750.4684,500491.6989,772610.0786,21
+112833,793694.3008,495533.5857,182513.1732,21
+112834,790519.9728,491709.4672,480571.5352,21
+112835,789355.0349,484862.8626,161290.3819,21
+112836,786956.7077,480301.0625,459637.871,21
+112837,784902.1049,476471.2299,351839.5341,21
+112838,782578.1833,470749.3158,415447.5217,21
+112839,780432.8721,467002.661,137065.9273,21
+112840,780208.9115,461895.5875,549627.1257,21
+112841,776335.3453,457720.9979,385808.5416,21
+112842,774735.2954,452748.0648,120699.3521,21
+112843,773154.6425,448356.2535,407822.1214,21
+112844,770096.0733,444042.6962,285547.9373,21
+112845,769519.1794,438870.0179,358285.611,21
+112846,766212.5921,434696.9068,100314.4237,21
+112847,764555.4219,429849.3523,487850.8828,21
+112848,763413.2714,425264.3765,313483.1423,21
+112849,760550.9237,420580.7069,167473.2413,21
+112850,759181.4303,416157.1808,212018.8671,21
+112851,756594.0491,410837.8853,239833.9807,21
+112852,755067.4751,406915.8196,141256.0147,21
+112853,752596.0436,401672.1976,166574.9141,21
+112854,751681.2721,397122.4878,160011.5907,21
+112855,748449.7582,392543.7602,157631.8212,21
+112856,746599.0512,387979.6288,155516.4725,21
+112857,745378.9855,383128.2107,154471.1001,21
+112858,743713.5492,378165.9909,152725.1091,21
+112859,740825.7451,373890.0517,151593.7511,21
+112860,739874.2069,368762.0855,149991.2553,21
+112861,742727.3767,364213.7305,146976.0779,21
+112862,741269.2773,360950.9907,578859.3764,21
+112863,739684.8465,358181.9253,75498.85498,21
+112864,738884.059,354570.3203,295633.4621,21
+112865,736943.9947,351751.1497,65568.09424,21
+112866,735448.3207,348767.9953,305926.3626,21
+112867,734590.6139,345851.0305,210080.2667,21
+112868,732762.0896,342461.0953,260891.3444,21
+112869,730934.9595,339979.9352,64890.61046,21
+112870,730131.9835,336541.1513,380018.0422,21
+112871,728581.4517,333786.177,249137.047,21
+112872,726825.0715,330709.7739,56591.76245,21
+112873,725388.8975,327693.4377,278507.8366,21
+112874,724239.5424,325072.5737,95054.3747,21
+112875,722515.6216,321690.7191,128983.4194,21
+112876,721827.5134,318683.5211,122796.0317,21
+112877,719545.0097,315802.3109,120752.7695,21
+112878,718994.4081,313128.4886,119116.3648,21
+112879,716355.8227,309929.7701,116934.9954,21
+112880,715900.2482,306887.2238,115681.4098,21
+112881,714265.1631,304135.4959,114511.7568,21
+112882,712401.5927,300955.4545,113050.8607,21
+112883,711788.3138,298306.0568,112246.3547,21
+112884,709418.2319,295033.9572,110769.7487,21
+112885,709411.5444,292459.7599,110058.9695,21
+112886,706884.5631,289281.7518,108855.1023,21
+112887,705615.2906,286034.9012,108003.5428,21
+112888,704476.3215,283766.1698,106917.697,21
+112889,702381.4778,280717.1155,105861.0925,21
+112890,701871.6964,277466.8158,42799.40329,21
+112891,700158.0361,275617.7683,42274.12941,21
+112892,698483.1278,272339.7611,41988.68407,21
+112893,697246.7689,269668.1034,41194.99119,21
+112894,696528.2304,267513.7272,40738.21558,21
+112895,694437.2581,264440.9136,40343.73161,21
+112896,692931.4391,262085.4456,39656.88518,21
+112897,691647.5203,259523.7172,39224.52006,21
+112898,690684.4838,256826.113,38816.92299,21
+112899,688589.318,254444.3164,38199.08708,21
+112900,687750.9213,251939.1193,37614.83162,21
+112901,686057.3885,248905.0566,37002.22201,21
+112902,685075.5154,247320.6562,36695.68209,21
+112903,683512.6957,244015.9471,36135.47727,21
+112904,681964.2659,242107.1829,35529.1188,21
+112905,680824.8391,239941.9631,35197.56601,21
+112906,679152.0771,238192.5245,34399.77038,21
+112907,677923.0809,236187.48,34510.51392,21
+112908,676761.5902,234480.0205,33427.63446,21
+112909,675022.2014,232765.4251,33583.71875,21
+112910,673729.2886,230581.4256,32709.76306,21
+112911,672607.0475,228964.8476,32390.12847,21
+112912,671768.0218,226894.6415,31980.79192,21
+112913,669444.3121,225211.0883,31568.4959,21
+112914,668437.2459,223502.1575,30867.67685,21
+112915,667142.8075,221239.5569,30672.97341,21
+112916,665694.8992,219798.1452,30106.24882,21
+112917,664394.7802,217761.3452,29714.34883,21
+112918,662813.0316,215914.6567,29007.52265,21
+112919,662114.8892,214166.3419,28993.05798,21
+112920,660244.5636,212018.0172,28159.84698,21
+112921,655244.3594,211204.5265,28948.45106,21
+112922,654553.69,208622.8167,28644.56796,21
+112923,653029.5876,207369.8708,28248.85204,21
+112924,652834.7314,204821.2273,27576.13123,21
+112925,651638.0285,202836.945,27270.89374,21
+112926,651224.6166,200912.6522,26746.2181,21
+112927,650114.6634,198628.0124,26533.83538,21
+112928,649470.7799,196872.7983,25881.90975,21
+112929,648894.2672,194625.5956,25402.20368,21
+112930,647833.1652,193137.5656,24492.16892,21
+112931,647274.9348,191210.0753,23905.06435,21
+112932,646497.8804,189026.5688,23440.42501,21
+112933,645299.7513,187471.7633,22949.45915,21
+112934,645341.0876,184951.8706,22529.73254,21
+112935,644115.7834,183362.4401,21958.95145,21
+112936,643596.2627,181152.9332,21640.53426,21
+112937,642461.3868,179328.4344,21190.24274,21
+112938,642165.9759,177423.4142,20565.89004,21
+112939,641605.8735,175161.9696,20164.24843,21
+112940,640329.1293,173579.4733,19782.39968,21
+112941,640109.4444,171296.0707,19286.98786,21
+112942,638935.089,169407.4068,18745.4176,21
+112943,638593.8015,167479.1403,18276.94709,21
+112944,637838.6503,165545.1323,17880.38888,21
+112945,636760.6655,163688.5836,17553.15555,21
+112946,636528.7729,161459.3006,16874.47,21
+112947,635701.0989,159855.994,16558.26574,21
+112948,635016.402,157749.8672,15920.15547,21
+112949,634351.7156,155777.3736,15779.2157,21
+112950,633338.4507,153935.7182,14981.6242,21
+112951,633266.7329,151847.2018,14853.88157,21
+112952,632414.8656,150127.8886,14059.04401,21
+112953,631503.9554,147970.6128,13798.6454,21
+112954,631418.2242,146001.5471,13214.93804,21
+112955,630539.0044,144180.4402,12975.30874,21
+112956,629932.4202,141983.7843,12306.44142,21
+112957,629049.528,140363.372,11886.6564,21
+112958,629210.4966,138099.1305,11471.00626,21
+112959,627943.576,136210.3699,11038.68177,21
+112960,627671.341,134384.7577,10493.54734,21
+112961,626744.0387,132382.4794,10100.55123,21
+112962,626921.1508,130284.9787,9617.115094,21
+112963,625627.4263,128382.7182,9121.036494,21
+112964,624976.4466,126595.4997,8753.605627,21
+112965,625010.2338,124369.647,8387.196055,21
+112966,623768.6772,122495.0537,7762.873282,21
+112967,623710.1962,120605.4767,7330.135027,21
+112968,622565.5706,118475.0486,6984.104771,21
+112969,622761.5135,116659.1124,6936.544946,21
+112970,621258.434,114963.8333,6913.036151,21
+112971,621585.3748,112729.5686,6835.076075,21
+112972,620411.9466,110965.7656,6504.709065,21
+112973,619901.808,108954.0016,6302.452141,21
+112974,619950.4115,106999.0038,6233.081263,21
+112975,618541.0795,105024.8015,5789.369217,21
+112976,618281.5123,103343.8765,5820.205371,21
+112977,617905.3974,101184.4645,5360.709069,21
+112978,617223.2091,99076.2974,5444.456206,21
+112979,616619.8247,97776.29618,4953.434437,21
+112980,616211.0343,95541.59801,4898.213075,21
+112981,644676.6569,111732.0612,11217.50443,21
+112982,644218.4114,112454.8281,11378.74585,21
+112983,643137.7632,113143.1358,13645.85019,21
+112984,641940.8681,113262.8297,17293.26675,21
+112985,641790.9316,114064.1205,13656.87551,21
+112986,640767.4912,114743.7725,14019.97141,21
+112987,640013.9902,115335.9372,13820.32276,21
+112988,639071.3417,116305.4637,13309.77403,21
+112989,638107.7283,116543.6811,13038.49074,21
+112990,636831.7339,117554.5147,12714.21443,21
+112991,636640.3539,117976.4651,12071.9331,21
+112992,635296.6874,118951.2199,11781.77837,21
+112993,634539.5477,119370.4696,11194.03072,21
+112994,633501.6309,120255.8045,10664.07436,21
+112995,632564.3764,120573.1915,10327.39283,21
+112996,632425.5938,121720.3685,10074.05925,21
+112997,631058.8503,121810.884,9367.53358,21
+112998,629718.6422,122780.7849,9209.321525,21
+112999,629392.4441,123546.1486,8781.910958,21
+113000,628075.3448,123777.1207,8323.784136,21
+113001,627414.0601,124696.4268,7886.746885,21
+113002,626387.1989,125085.8236,7497.916375,21
+113003,625586.7461,126043.2367,7252.27503,21
+113004,624921.1741,126295.448,6839.214882,21
+113005,623941.5034,127138.8943,6621.121464,21
+113006,622735.8018,128069.7482,6302.753973,21
+113007,621989.1737,131141.0654,6234.378769,21
+113008,621244.2748,130677.4998,5907.496935,21
+113009,620242.505,131880.5896,5845.308326,21
+113010,619228.5789,133120.9761,5490.956854,21
+113011,618595.9757,133812.4176,5447.187297,21
+113012,617462.0355,134555.0002,5253.481775,21
+113013,617357.2598,135782.8029,5043.290404,21
+113014,616330.8006,136231.9016,4832.329942,21
+113015,615394.4072,137641.2587,4791.019159,21
+113016,614525.8641,138068.1541,4452.802286,21
+113017,613836.3332,139228.8667,4366.35389,21
+113018,612806.2139,140061.2313,4197.765265,21
+113019,612715.6203,141097.6856,3983.380135,21
+113020,611197.1458,141432.7446,3768.034048,21
+113021,610441.5723,142731.3613,3741.952078,21
+113022,610066.6994,143748.1017,3363.591128,21
+113023,609444.3428,144090.5994,3307.885746,21
+113024,608077.1092,145378.3066,2984.286088,21
+113025,607605.4453,146044.292,3049.213407,21
+113026,606875.1919,145987.5151,2704.143254,21
+113027,605720.9051,146534.1729,2500.465969,21
+113028,605303.2619,147634.0009,2411.108355,21
+113029,604663.9925,148183.2398,2092.238787,21
+113030,603364.3396,149203.4869,2005.176949,21
+113031,602740.3137,149520.9468,1897.309034,21
+113032,602717.0593,150602.8852,1582.187605,21
+113033,600967.4959,151450.1541,1524.432054,21
+113034,600783.0045,151788.6464,1463.709335,21
+113035,599679.1114,152995.4036,1419.392419,21
+113036,598890.2683,153491.2142,1344.307867,21
+113037,598472.8311,154209.0181,1313.64652,21
+113038,597385.1073,154988.038,1240.650754,21
+113039,596751.9354,155858.4029,1192.990154,21
+113040,595875.9256,156285.683,1133.52775,21
+113041,566561.4885,133513.9048,230.333153,21
+113042,565347.5898,132620.3055,211.9294449,21
+113043,564154.1372,131746.2751,174.8585796,21
+113044,564228.9604,131247.3349,174.8638803,21
+113045,562874.518,130544.3404,137.3639474,21
+113046,562724.8343,129668.4769,137.3648628,21
+113047,561459.4183,129296.7501,89.74456146,21
+113048,561370.4868,128376.8267,99.34764195,21
+113049,560647.1213,127332.6743,60.6388835,21
+113050,560086.8328,127022.6311,40.92170116,21
+113051,559287.0346,125891.6753,30.93572167,21
+113052,558480.0086,125506.3008,10.57524733,21
+113053,557829.8998,124337.0484,0,21
+113054,557140.5684,123870.144,0,21
+113055,556490.1919,122784.8245,0,21
+113056,555891.9782,122550.8755,0,21
+113057,555360.8446,121321.107,0,21
+113058,554579.2032,120668.4237,0,21
+113059,554554.6197,119979.6176,0,21
+113060,553386.7756,118015.4846,0,21
+113061,552766.5562,117718.2292,0,21
+113062,552029.6846,116298.071,0,21
+113063,551745.2846,115909.2385,0,21
+113064,550837.4155,114631.9162,0,21
+113065,550288.2915,113108.2127,0,21
+113066,549725.4411,111967.2499,0,21
+113067,548943.5718,111181.1067,0,21
+113068,548923.638,110140.8668,0,21
+113069,547659.2393,109099.4381,0,21
+113070,547499.9919,108536.799,0,21
+113071,546316.1444,107669.8909,0,21
+113072,546345.4583,107073.9822,0,21
+113073,545046.8213,106400.6154,0,21
+113074,545190.4574,98596.28145,0,21
+113075,544142.7206,96785.59853,0,21
+113076,543807.3412,96246.75418,0,21
+113077,543426.3249,93504.19778,0,21
+113078,542769.578,92016.6623,0,21
+113079,541858.7921,89923.95756,0,21
+113080,541625.1874,88386.21059,0,21
+113081,540671.4036,86720.79659,0,21
+113082,540447.0303,84846.57488,0,21
+113083,539965.4508,83297.47443,0,21
+113084,539295.9035,81518.68741,0,21
+113085,538510.8011,79946.53604,0,21
+113086,539039.8637,78386.64472,0,21
+113087,537543.7659,76788.9434,0,21
+113088,537027.3905,75036.77222,0,21
+113089,536565.7078,73621.28155,0,21
+113090,536277.5039,72160.54891,0,21
+113091,535316.5264,70428.22561,0,21
+113092,535353.0978,68926.34825,0,21
+113093,534386.8355,67509.00891,0,21
+113094,534049.8839,65942.78257,0,21
+113095,533900.3629,64576.03982,0,21
+113096,533028.8186,62456.96935,0,21
+113097,532689.9442,61050.87119,0,21
+113098,531769.9231,59055.07374,0,21
+113099,531765.2929,58161.98418,0,21
+113100,530784.4554,56071.25599,0,21
+113101,534665.7643,57787.99136,0,21
+113102,533931.3941,55531.92937,0,21
+113103,533583.9612,52481.8105,0,21
+113104,532598.987,49451.94504,0,21
+113105,531536.4247,48624.64897,0,21
+113106,531284.0495,47420.27234,0,21
+113107,529424.7994,47628.04543,0,21
+113108,529273.7889,46537.18837,0,21
+113109,528425.583,46727.24929,0,21
+113110,527215.2295,45748.34373,0,21
+113111,527078.24,45711.20247,0,21
+113112,525144.1308,45335.82028,0,21
+113113,525803.5905,45205.68696,0,21
+113114,523932.955,45194.45188,0,21
+113115,523438.3563,44704.95456,0,21
+113116,522370.5712,44677.41955,0,21
+113117,521763.8891,44336.83394,0,21
+113118,520683.5631,44500.08849,0,21
+113119,520118.3149,43940.09959,0,21
+113120,519002.7658,43940.04653,0,21
+113121,518611.4237,43500.15154,0,21
+113122,517567.7527,43796.14326,0,21
+113123,516810.5821,43349.17883,0,21
+113124,515713.3184,43150.74492,0,21
+113125,515159.2665,42974.60271,0,21
+113126,514026.6197,42980.81415,0,21
+113127,513529.7144,42741.66663,0,21
+113128,512414.6954,42315.33231,0,21
+113129,511739.0048,42591.10528,0,21
+113130,510853.6055,42287.86508,0,21
+113131,510635.5876,41934.8356,0,21
+113132,508924.3254,42028.15862,0,21
+113133,508759.8655,41527.02521,0,21
+113134,507102.1951,41617.30299,0,21
+113135,507172.0999,41296.97796,0,21
+113136,505230.8288,41123.39171,0,21
+113137,505370.4129,41052.34003,0,21
+113138,503790.7831,40458.58643,0,21
+113139,503259.749,40905.45069,0,21
+113140,502790.0118,40168.39428,0,21
+113141,501643.8521,40251.0726,0,21
+113142,500492.646,39858.37926,0,21
+113143,499824.9876,39737.54713,0,21
+113144,499199.6806,39696.62864,0,21
+113145,497710.8556,39173.13497,0,21
+113146,497361.0615,39038.30974,0,21
+113147,496252.724,39019.38749,0,21
+113148,495601.5714,38605.74469,0,21
+113149,495039.3492,38326.37303,0,21
+113150,493922.1594,38207.68582,0,21
+113151,492648.1577,37898.20209,0,21
+113152,492155.8227,37512.88779,0,21
+113153,491446.1755,37356.52098,0,21
+113154,490292.5696,37204.66187,0,21
+113155,489389.8929,37067.65013,0,21
+113156,488911.7437,36659.25356,0,21
+113157,487506.0343,36641.81948,0,21
+113158,487500.7626,36355.68047,0,21
+113159,486132.6023,36123.58227,0,21
+113160,485298.2707,35806.31738,0,21
+113161,479824.5015,30608.15711,0,21
+113162,479236.5738,30514.13139,0,21
+113163,478811.8934,30800.59082,0,21
+113164,477928.7454,31783.97543,0,21
+113165,477069.0296,31643.67738,0,21
+113166,476624.3914,31711.13314,0,21
+113167,476355.0336,32205.39406,0,21
+113168,475020.2785,32274.5753,0,21
+113169,474540.0461,32396.98359,0,21
+113170,473766.0345,32570.3527,0,21
+113171,473393.7117,32819.01792,0,21
+113172,472522.3437,32986.83766,0,21
+113173,471446.6055,32877.80157,0,21
+113174,471458.1456,33256.08979,0,21
+113175,470327.7832,33300.8438,0,21
+113176,470052.3579,33305.44508,0,21
+113177,469491.0212,33533.97785,0,21
+113178,468100.5172,33589.05678,0,21
+113179,467933.4311,33538.08387,0,21
+113180,467067.7878,33810.80175,0,21
+113181,466514.476,33624.64806,0,21
+113182,465660.1205,33932.29256,0,21
+113183,465061.3036,33762.18514,0,21
+113184,464461.6925,34079.57815,0,21
+113185,464226.7995,33969.60014,0,21
+113186,462973.3832,33862.78019,0,21
+113187,462469.3115,34194.6132,0,21
+113188,461648.1525,33958.22185,0,21
+113189,461199.1454,34193.06379,0,21
+113190,460190.5845,33951.4325,0,21
+113191,459903.7126,34386.2397,0,21
+113192,459142.8025,34072.42982,0,21
+113193,458898.3867,34383.93389,0,21
+113194,458734.1334,34229.88004,0,21
+113195,457734.7661,34493.21823,0,21
+113196,457446.2542,34569.73682,0,21
+113197,456669.4901,34334.9012,0,21
+113198,456458.0507,34652.42669,0,21
+113199,455881.7344,34635.52873,0,21
+113200,455653.2543,34625.89645,0,21
+113201,454750.6851,34224.30803,0,21
+113202,455097.2808,34065.62225,0,21
+113203,454326.1201,34313.62804,0,21
+113204,454060.4098,34386.49249,0,21
+113205,453311.5995,34335.85501,0,21
+113206,453064.6284,34344.97947,0,21
+113207,452763.7733,34534.57122,0,21
+113208,452176.5182,34607.61785,0,21
+113209,452053.6191,34573.02511,0,21
+113210,451269.5388,34779.28117,0,21
+113211,451312.6239,34762.22734,0,21
+113212,450982.4352,34943.97865,0,21
+113213,450507.7607,34773.82375,0,21
+113214,450133.4818,35246.55756,0,21
+113215,449477.5475,35167.14089,0,21
+113216,449500.1446,35270.94291,0,21
+113217,448905.536,35309.81134,0,21
+113218,448482.322,35667.77514,0,21
+113219,448412.2755,35354.70993,0,21
+113220,447867.6096,35934.84559,0,21
+113221,447773.5589,35350.2568,0,21
+113222,446638.9027,35539.96343,0,21
+113223,446158.9308,35358.74781,0,21
+113224,445456.5098,35131.29066,0,21
+113225,444824.8868,35083.8361,0,21
+113226,444679.3501,34848.3449,0,21
+113227,443333.196,34862.94709,0,21
+113228,443591.752,34602.80354,0,21
+113229,442565.3955,34614.26413,0,21
+113230,442094.4205,34512.3305,0,21
+113231,441568.0136,34480.7282,0,21
+113232,440794.0879,34363.15134,0,21
+113233,440091.7569,34175.26565,0,21
+113234,439968.3533,34307.04572,0,21
+113235,438730.6827,34215.7282,0,21
+113236,438734.5561,34420.56341,0,21
+113237,437794.786,34454.52046,0,21
+113238,437667.7234,34841.51183,0,21
+113239,436907.8921,35064.08655,0,21
+113240,436359.2733,35421.25731,0,21
+113241,435828.0421,35527.76168,0,21
+113242,434958.177,35765.12723,0,21
+113243,434535.67,35973.95315,0,21
+113244,434022.4562,35881.35152,0,21
+113245,433488.2883,36349.3265,0,21
+113246,432668.4626,36565.22734,0,21
+113247,432520.747,36481.32645,0,21
+113248,432270.34,36886.40515,0,21
+113249,431228.3399,36960.97815,0,21
+113250,430757.3006,307485.4251,0,21
+113251,430140.1956,37399.83357,0,21
+113252,429544.1819,37574.46255,0,21
+113253,429354.7363,37505.4627,0,21
+113254,428353.0701,38023.876,0,21
+113255,428383.8798,37714.2784,0,21
+113256,427550.6042,38368.18842,0,21
+113257,427484.4809,38031.54353,0,21
+113258,426628.8982,38680.8463,0,21
+113259,426098.7182,38368.58866,0,21
+113260,425577.8609,39012.0281,0,21
+113261,424897.0601,38895.81151,0,21
+113262,424772.904,39014.72426,0,21
+113263,423978.3702,39226.12673,0,21
+113264,423719.8343,39452.07816,0,21
+113265,423013.271,39530.28071,0,21
+113266,422980.2074,39669.53199,0,21
+113267,422070.8375,39858.02254,0,21
+113268,421841.2301,40217.7204,0,21
+113269,420960.6522,310285.3856,0,21
+113270,420772.1335,40341.57944,0,21
+113271,420103.6931,40598.32876,0,21
+113272,420043.5471,40756.42292,0,21
+113273,419023.7711,40817.95852,0,21
+113274,418826.4629,40965.39303,0,21
+113275,418727.0781,40840.64847,0,21
+113276,417819.5583,40925.94745,0,21
+113277,417528.4511,41263.5269,0,21
+113278,416693.6016,40985.43708,0,21
+113279,416653.8215,41575.46402,0,21
+113280,415941.6844,41332.26118,0,21
+113281,469176.7711,69336.1054,0,21
+113282,471622.3213,70654.28125,0,21
+113283,473128.4477,72238.66614,0,21
+113284,489115.7174,72955.27096,0,21
+113285,479098.2411,78628.94803,0,21
+113286,483548.0196,77144.95771,0,21
+113287,483314.5943,78353.42799,0,21
+113288,484036.9761,79348.45181,0,21
+113289,484710.8354,80046.62344,0,21
+113290,484545.6581,80746.38989,0,21
+113291,485520.9191,82918.26227,0,21
+113292,485362.7773,88002.41753,0,21
+113293,486150.4633,86563.29448,0,21
+113294,486248.1221,87504.13314,0,21
+113295,486695.7125,89183.97653,0,21
+113296,487241.6472,89378.59323,0,21
+113297,487507.7257,90376.5516,0,21
+113298,487448.1975,91546.77846,0,21
+113299,488542.8515,91762.26213,0,21
+113300,488049.2753,92958.66394,0,21
+113301,488588.1793,93431.42948,0,21
+113302,489297.8747,93961.40692,0,21
+113303,488851.5397,95048.40917,0,21
+113304,489986.9293,95559.9318,0,21
+113305,489592.4208,96233.36889,0,21
+113306,490144.5767,96677.93364,0,21
+113307,489963.585,97663.66168,0,21
+113308,490192.0627,97980.8441,0,21
+113309,490745.6126,98685.66649,0,21
+113310,492294.9589,99498.68129,0,21
+113311,492285.98,99965.77437,0,21
+113312,492760.1891,101056.1692,0,21
+113313,493557.8755,101828.7684,0,21
+113314,492386.2906,102478.6705,0,21
+113315,493726.4092,103215.6064,0,21
+113316,492932.0717,103986.546,0,21
+113317,493747.9113,105127.9677,0,21
+113318,492973.729,105353.1977,0,21
+113319,494142.4983,106338.1493,0,21
+113320,493635.1242,106940.6651,0,21
+113321,493575.1522,108007.9396,0,21
+113322,494546.023,108777.7207,0,21
+113323,494170.0368,109779.9895,0,21
+113324,495423.7159,110176.8505,0,21
+113325,502903.114,111544.5019,0,21
+113326,499172.0345,112131.6605,0,21
+113327,500967.1684,112776.922,0,21
+113328,502639.333,114038.8251,0,21
+113329,502537.2767,114500.8035,0,21
+113330,502417.7071,115604.0542,0,21
+113331,504614.0813,116453.4665,0,21
+113332,505134.2323,116979.8765,0,21
+113333,503822.7786,118324.7158,0,21
+113334,505463.1208,118991.2515,0,21
+113335,506468.4595,119772.352,0,21
+113336,505586.3993,120656.1636,0,21
+113337,507697.1198,121869.3169,0,21
+113338,506867.4975,122411.3171,0,21
+113339,507733.5896,123570.0889,0,21
+113340,509720.6509,124181.0491,0,21
+113341,568203.9945,142185.988,0,21
+113342,573483.2729,144790.318,0,21
+113343,574731.1122,146904.8137,0,21
+113344,576177.7095,148793.7492,0,21
+113345,577101.6284,151460.33,0,21
+113346,578482.4451,152551.8336,0,21
+113347,578431.1719,155751.4469,0,21
+113348,580679.4965,157883.5663,0,21
+113349,580040.8019,159786.8869,0,21
+113350,582816.7403,162436.4502,0,21
+113351,581983.5988,164194.2744,0,21
+113352,583170.2316,166424.6207,0,21
+113353,583945.5725,168838.6646,0,21
+113354,584628.1644,170605.5162,0,21
+113355,585910.0499,173164.9461,0,21
+113356,585545.8954,175139.481,0,21
+113357,587391.1339,177259.2409,0,21
+113358,587186.0136,179367.2481,0,21
+113359,587856.4664,181815.108,0,21
+113360,588259.8014,183500.7414,0,21
+113361,589470.7868,186019.0024,0,21
+113362,589474.0757,187979.3086,0,21
+113363,590531.5876,190010.886,0,21
+113364,590586.8164,192387.4154,0,21
+113365,591598.7051,194402.3026,0,21
+113366,591061.6342,196609.2968,0,21
+113367,593118.001,198578.5183,0,21
+113368,592493.0764,200835.7807,0,21
+113369,593549.3591,203008.5163,0,21
+113370,594551.9944,209150.9095,0,21
+113371,591976.8705,212880.3507,0,21
+113372,593425.1977,214640.3835,0,21
+113373,593672.7822,217875.4776,0,21
+113374,593670.2356,220740.5043,0,21
+113375,594960.85,223151.7258,0,21
+113376,594120.6717,226230.4292,0,21
+113377,594534.3339,228699.83,0,21
+113378,595068.5909,231410.361,0,21
+113379,595056.7317,234056.5738,0,21
+113380,595913.3379,236982.9615,0,21
+113381,595624.4804,239070.4496,0,21
+113382,596437.5031,241712.865,0,21
+113383,596071.5882,244785.7661,0,21
+113384,596270.2042,246681.3102,0,21
+113385,596940.313,249522.6954,0,21
+113386,596418.8559,252145.6869,0,21
+113387,597654.8876,254856.0843,0,21
+113388,596110.5454,256957.3502,0,21
+113389,597957.0538,259604.5337,0,21
+113390,596968.4533,262108.5139,0,21
+113391,597203.9072,264833.7736,0,21
+113392,598788.368,267163.3602,0,21
+113393,596427.3948,269853.113,0,21
+113394,599420.8689,272178.4027,0,21
+113395,597099.0835,274758.3631,0,21
+113396,598343.78,276714.8214,0,21
+113397,598019.5372,279909.656,0,21
+113398,598323.3763,281756.5782,0,21
+113399,599551.4881,284251.7628,636.9907765,21
+113400,597530.1143,286743.9673,1832.135759,21
+113401,600056.2298,289378.4847,1390.845283,21
+113402,601063.6132,291678.3145,1832.220744,21
+113403,602801.3606,294135.8804,1978.002463,21
+113404,603516.4996,297024.2891,2411.693383,21
+113405,604895.2486,298962.8387,2411.776222,21
+113406,605068.6869,302085.3419,2698.289155,21
+113407,606852.4169,303791.3241,3124.498782,21
+113408,608002.4186,306786.4344,3124.637301,21
+113409,608274.5782,309185.3681,3406.710887,21
+113410,610848.1409,311491.693,3687.231048,21
+113411,609488.7478,314115.3348,3827.042129,21
+113412,613784.6168,316529.4954,4105.422958,21
+113413,614006.2341,319194.5779,4244.235791,21
+113414,615415.1399,321208.9245,4658.262998,21
+113415,616374.7574,324179.9113,4658.568309,21
+113416,616572.6055,326454.0846,4933.188515,21
+113417,621155.4535,328971.3115,5206.671134,21
+113418,620721.4794,331271.6711,5343.199646,21
+113419,622158.7156,333706.7316,8188.66734,21
+113420,624365.0555,336489.8661,7669.580157,21
+113421,623278.3199,338453.441,8146.040431,21
+113422,627786.1364,341298.4976,8865.741208,21
+113423,628103.2293,343557.4135,9411.531339,21
+113424,629842.5481,351026.4704,9911.894222,21
+113425,629844.1374,354302.4096,10506.87079,21
+113426,631996.2332,356095.5094,10811.97717,21
+113427,632531.8056,359280.9869,11535.36882,21
+113428,632579.1899,363618.5347,11942.50597,21
+113429,635299.5691,364759.4314,12552.02091,21
+113430,634759.465,369309.9702,12920.03847,21
+113431,636665.5523,370672.6307,13454.75858,21
+113432,637305.2081,373639.824,13826.7956,21
+113433,638018.7476,376378.1253,14162.09663,21
+113434,639816.9675,379081.265,14593.13281,21
+113435,640011.2673,381144.7169,14939.53535,21
+113436,641245.6241,385006.9221,15338.56635,21
+113437,640295.1534,385226.6474,15748.26315,21
+113438,640912.2513,389278.3917,16337.0769,21
+113439,643823.3918,391814.0292,16573.97192,21
+113440,642475.496,393432.4081,17092.18139,21
+113441,644768.4918,395262.2659,17296.37341,21
+113442,644502.3872,399623.3995,17919.76614,21
+113443,646559.1742,400315.9507,18082.03653,21
+113444,646453.6333,403018.7323,18504.78155,21
+113445,647569.0926,405011.9937,19514.00489,21
+113446,648052.7276,408027.3792,19882.93848,21
+113447,649875.7081,409654.2845,20095.90834,21
+113448,650200.4043,411815.9264,20798.69145,21
+113449,650023.4533,414460.5612,20780.28273,21
+113450,652397.5228,416521.8481,21375.3979,21
+113451,653023.4405,418353.8007,21779.63568,21
+113452,653001.861,421035.1241,21957.83828,21
+113453,654234.4989,423600.8388,22214.11791,21
+113454,654858.5334,425167.2885,22851.40852,21
+113455,656656.8829,426882.6737,22806.01097,21
+113456,656026.6479,430166.063,23530.99132,21
+113457,657731.5827,431347.5216,23544.09099,21
+113458,658167.639,434727.4086,24002.37756,21
+113459,658920.2313,435621.9497,24451.22819,21
+113460,660281.8837,438351.9397,24422.28557,21
+113461,667942.7596,449783.4569,26810.87935,21
+113462,670230.4258,453978.1105,27496.90397,21
+113463,669419.0337,457463.8588,27753.77061,21
+113464,672159.6987,460244.1262,28378.94545,21
+113465,671746.4758,463623.5953,28665.27369,21
+113466,671463.5486,466554.6283,28840.19667,21
+113467,673452.7181,469833.0432,29632.29079,21
+113468,673687.9268,473110.35,29766.64675,21
+113469,672801.248,475249.4927,30300.87383,21
+113470,675161.2992,478962.6828,30508.81745,21
+113471,675469.2921,480494.8401,31026.59342,21
+113472,674998.1834,485748.5787,31263.4188,21
+113473,676291.5341,487420.4937,31796.95187,21
+113474,676689.0638,490149.6474,32096.29922,21
+113475,677374.6499,493987.472,32286.57835,21
+113476,677936.5357,497327.0869,32992.90821,21
+113477,677450.6448,498556.5158,33353.27304,21
+113478,678956.8328,502842.68,33698.54736,21
+113479,678715.5227,505099.1833,33925.81262,21
+113480,679879.9805,508939.6784,34665.73496,21
+113481,679221.5256,510600.4353,35034.47658,21
+113482,681446.5936,514151.6652,35031.02276,21
+113483,680334.84,516400.3727,35731.45111,21
+113484,682646.8317,519847.503,36144.972,21
+113485,682990.5746,523658.2056,36200.43443,21
+113486,683205.2472,524590.3224,37005.04698,21
+113487,683841.3454,528431.718,37054.37102,21
+113488,684493.6292,531683.1545,37358.26835,21
+113489,684610.6702,534257.4569,38106.53741,21
+113490,685254.7315,535852.8874,38005.12167,21
+113491,685281.8486,540761.1812,38715.99708,21
+113492,685700.6676,542211.9563,39023.13002,21
+113493,686885.2406,546014.7032,39362.49773,21
+113494,686720.4088,549525.6045,39592.08361,21
+113495,686870.4317,550039.3015,40007.1999,21
+113496,687691.7486,554855.3463,40423.71385,21
+113497,687506.5282,556569.6195,40788.66313,21
+113498,688834.3692,560582.5983,40874.3172,21
+113499,688298.2008,560859.2549,41577.81826,21
+113500,688689.6573,565314.5392,42467.06704,21
+113501,689305.8051,566604.6511,44061.91694,21
+113502,689767.6604,570386.0149,43853.21605,21
+113503,689559.9133,572230.8231,44829.90377,21
+113504,690471.8417,576032.3655,44928.70061,21
+113505,690947.9238,578068.2261,46078.92518,21
+113506,690985.3891,580495.5059,46136.35047,21
+113507,690512.9008,583943.3622,46987.35777,21
+113508,692628.0735,585774.9207,47382.112,21
+113509,690502.0506,589752.7269,48014.11665,21
+113510,690493.0441,590699.8153,48450.24766,21
+113511,691186.3099,594363.6509,49257.37199,21
+113512,691749.2573,597288.2013,49483.13868,21
+113513,691145.1906,598817.7258,50155.42888,21
+113514,693040.4418,603007.685,50882.32972,21
+113515,692574.635,604483.0474,50943.99625,21
+113516,692047.6618,607683.4215,51866.95094,21
+113517,693357.2534,610138.3875,52339.98085,21
+113518,693179.7524,613046.7174,52671.77585,21
+113519,693815.0785,615008.0649,53433.25996,21
+113520,692997.0714,618691.9695,53911.74423,21
+113521,695299.3791,618665.4367,54269.29553,21
+113522,697854.2435,621948.6866,54900.7402,21
+113523,697232.4724,622381.5516,55153.05658,21
+113524,701665.7011,624771.451,55825.94022,21
+113525,700368.2486,623788.6771,56359.52844,21
+113526,702133.1037,627046.7307,56517.73756,21
+113527,704374.1554,627353.3152,57438.09653,21
+113528,704644.5622,628101.1922,57289.91408,21
+113529,705230.6098,630015.9831,58308.41749,21
+113530,708842.2901,630118.0191,58328.33628,21
+113531,707241.1152,632193.6298,59324.78266,21
+113532,710491.4486,633161.2916,59117.9879,21
+113533,710235.3226,633878.4983,60074.39547,21
+113534,713498.9127,635313.3218,60633.54981,21
+113535,712912.934,636630.7279,60480.18786,21
+113536,714785.1133,637370.7972,61385.58236,21
+113537,715817.2686,637751.4257,61722.72462,21
+113538,716815.2573,640920.4674,61928.80792,21
+113539,718104.3422,639486.322,62924.68831,21
+113540,720063.0855,642546.8405,62860.77485,21
+113541,720528.9972,643247.5863,63607.31131,21
+113542,721247.7565,642595.8,63807.90577,21
+113543,724118.4306,646134.3698,64371.08374,21
+113544,723409.407,645388.9881,64965.53327,21
+113545,726120.0226,647258.1573,65135.34808,21
+113546,726930.2962,648878.5555,65400.30877,21
+113547,727668.9415,648106.3714,66222.01807,21
+113548,728773.0461,651411.5523,66657.46025,21
+113549,730753.8819,650436.1377,66714.77723,21
+113550,731231.2367,652894.259,67329.15895,21
+113551,733303.9116,653115.1429,67957.25832,21
+113552,733467.2525,654407.2767,68008.05094,21
+113553,735053.4516,655525.2279,68839.2402,21
+113554,736376.0131,657304.7888,69008.32303,21
+113555,737978.5688,656377.06,69370.8163,21
+113556,738748.0082,659184.2582,69908.32352,21
+113557,739728.9786,658840.543,70239.12247,21
+113558,741091.2281,661558.5661,70600.97856,21
+113559,742196.2829,660502.0274,71207.59606,21
+113560,743530.6576,663795.9517,71479.81516,21
+113561,744446.6042,663287.2551,71768.24492,21
+113562,745847.0582,664109.1586,72591.89905,21
+113563,746915.4407,665460.2825,72538.96985,21
+113564,747679.1555,666780.4901,73302.79574,21
+113565,749891.8456,668103.6522,73488.30532,21
+113566,750013.4105,668055.3102,73917.9651,21
+113567,752674.4056,669525.4178,74429.4883,21
+113568,751988.7195,670524.0338,74589.17685,21
+113569,754784.9481,672118.105,75210.00914,21
+113570,754274.0806,671854.4975,75903.2109,21
+113571,756664.5854,673501.3425,75532.56027,21
+113572,757876.7537,674368.7165,76781.05064,21
+113573,758266.4173,675867.2106,76644.42874,21
+113574,760515.474,675850.0858,77238.19348,21
+113575,760730.5886,677008.5887,77330.49619,21
+113576,762172.9785,678822.4498,78194.96484,21
+113577,763170.5826,679297.1638,78160.38855,21
+113578,765175.6919,679321.6477,78836.80101,21
+113579,765312.5272,681633.9102,78949.80215,21
+113580,768464.4286,681564.9525,79913.10053,21
+113581,269894.8331,0,0,21
+113582,0,0,0,21
+113583,0,0,0,21
+113584,0,83.02358401,0,21
+113585,0,0,0,21
+113586,0,0,1299015.267,21
+113587,0,0,0,21
+113588,0,117.1538748,0,21
+113589,0,0,0,21
+113590,0,368320.2648,0,21
+113591,0,0,0,21
+113592,0,73.87337797,0,21
+113593,0,0,0,21
+113594,339563.5829,0,0,21
+113595,0,0,0,21
+113596,0,0,0,21
+113597,0,340.3771579,0,21
+113598,0,0,0,21
+113599,0,0,0,21
+113600,0,0,0,21
+113601,0,0,0,21
+113602,0,0,0,21
+113603,0,0,0,21
+113604,0,0,0,21
+113605,0,0,0,21
+113606,0,0,0,21
+113607,0,0,0,21
+113608,0,0,0,21
+113609,0,0,0,21
+113610,0,0,0,21
+113611,0,0,0,21
+113612,0,0,0,21
+113613,0,0,0,21
+113614,0,0,0,21
+113615,0,0,0,21
+113616,0,0,0,21
+113617,0,0,0,21
+113618,0,0,0,21
+113619,0,0,0,21
+113620,0,0,0,21
+113621,0,0,1244858.448,21
+113622,0,0,0,21
+113623,0,0,0,21
+113624,0,0,0,21
+113625,0,0,0,21
+113626,0,368305.526,0,21
+113627,0,0,0,21
+113628,0,0,0,21
+113629,0,0,0,21
+113630,0,0,0,21
+113631,0,0,0,21
+113632,0,0,0,21
+113633,339553.3465,0,0,21
+113634,0,0,0,21
+113635,0,0,0,21
+113636,0,0,0,21
+113637,0,0,0,21
+113638,0,0,0,21
+113639,0,0,0,21
+113640,0,0,0,15.6
+113641,0,0,0,15.6
+113642,0,0,0,15.6
+113643,0,0,0,15.6
+113644,0,0,0,15.6
+113645,0,0,0,15.6
+113646,0,0,0,15.6
+113647,0,0,0,15.6
+113648,0,0,0,15.6
+113649,0,0,0,15.6
+113650,0,0,0,15.6
+113651,0,0,0,15.6
+113652,0,0,0,15.6
+113653,0,0,0,15.6
+113654,0,0,0,15.6
+113655,0,0,0,15.6
+113656,0,0,1195406.648,15.6
+113657,0,0,0,15.6
+113658,0,0,0,15.6
+113659,0,0,0,15.6
+113660,0,0,0,15.6
+113661,0,0,0,15.6
+113662,0,368291.8008,0,15.6
+113663,0,0,0,15.6
+113664,0,0,0,15.6
+113665,0,0,0,15.6
+113666,0,0,0,15.6
+113667,0,0,0,15.6
+113668,0,0,0,15.6
+113669,0,0,0,15.6
+113670,0,0,0,15.6
+113671,0,0,0,15.6
+113672,339548.2973,0,0,15.6
+113673,0,0,0,15.6
+113674,0,0,0,15.6
+113675,0,0,0,15.6
+113676,0,0,0,15.6
+113677,0,0,0,15.6
+113678,0,0,0,15.6
+113679,0,0,0,15.6
+113680,0,0,0,15.6
+113681,0,0,0,15.6
+113682,0,0,0,15.6
+113683,0,0,0,15.6
+113684,0,0,0,15.6
+113685,0,0,0,15.6
+113686,0,0,0,15.6
+113687,0,0,0,15.6
+113688,0,0,0,15.6
+113689,0,0,0,15.6
+113690,0,0,0,15.6
+113691,0,0,1150251.395,15.6
+113692,0,0,0,15.6
+113693,0,0,0,15.6
+113694,0,0,0,15.6
+113695,0,0,0,15.6
+113696,0,0,0,15.6
+113697,0,0,0,15.6
+113698,0,368279.45,0,15.6
+113699,0,0,0,15.6
+113700,0,0,0,15.6
+113701,0,0,0,15.6
+113702,47117.6111,0,0,15.6
+113703,2380.026461,0,0,15.6
+113704,1602.653977,0,0,15.6
+113705,12361.59597,0,0,15.6
+113706,12867.25428,0,0,15.6
+113707,9826.045749,0,0,15.6
+113708,10853.84309,0,0,15.6
+113709,10935.20782,0,0,15.6
+113710,10968.58709,0,0,15.6
+113711,11040.07043,0,0,15.6
+113712,350619.6147,0,0,15.6
+113713,11165.46561,0,0,15.6
+113714,11173.14966,0,0,15.6
+113715,11249.57381,0,0,15.6
+113716,11297.97837,0,0,15.6
+113717,11367.40957,0,0,15.6
+113718,11380.21348,0,0,15.6
+113719,11461.35264,0,0,15.6
+113720,11513.6743,0,0,15.6
+113721,11532.64682,0,0,15.6
+113722,11620.90826,0,0,15.6
+113723,11644.57574,0,0,15.6
+113724,11691.82236,0,0,15.6
+113725,11746.54801,0,0,15.6
+113726,11792.78822,0,1109054.653,15.6
+113727,11837.81077,0,0,15.6
+113728,11888.64976,0,0,15.6
+113729,11916.2629,0,0,15.6
+113730,11994.47347,0,0,15.6
+113731,12008.36412,0,0,15.6
+113732,0,0,0,15.6
+113733,0,0,0,15.6
+113734,0,0,0,15.6
+113735,0,368262.9764,0,15.6
+113736,0,0,0,15.6
+113737,0,0,0,15.6
+113738,56681.37721,0,0,15.6
+113739,0,0,0,15.6
+113740,2821.301666,0,0,15.6
+113741,16606.24312,0,0,15.6
+113742,13437.37796,0,0,15.6
+113743,11798.89095,0,0,15.6
+113744,12617.05325,0,0,15.6
+113745,12584.19913,0,0,15.6
+113746,12670.00388,0,0,15.6
+113747,12672.78807,0,0,15.6
+113748,12720.23136,0,0,15.6
+113749,12735.49896,0,0,15.6
+113750,12813.28403,0,0,15.6
+113751,12772.98755,0,0,15.6
+113752,352395.9126,0,0,15.6
+113753,12869.74729,0,0,15.6
+113754,12910.29279,0,0,15.6
+113755,12911.43806,0,0,15.6
+113756,13013.02471,0,0,15.6
+113757,12960.67196,0,0,15.6
+113758,13065.24394,0,0,15.6
+113759,13028.10375,0,0,15.6
+113760,13088.9949,0,0,15.6
+113761,13144.25178,0,0,15.6
+113762,13172.31163,0,1071441.294,15.6
+113763,13245.52489,0,0,15.6
+113764,13246.06921,0,0,15.6
+113765,13317.20338,0,0,15.6
+113766,13378.04451,0,0,15.6
+113767,13412.88307,0,0,15.6
+113768,0,0,0,15.6
+113769,0,0,0,15.6
+113770,0,0,0,15.6
+113771,0,0,0,15.6
+113772,0,368244.767,0,15.6
+113773,61951.09062,0,0,15.6
+113774,0,0,0,15.6
+113775,2469.819503,0,0,15.6
+113776,20368.28072,0,0,15.6
+113777,13805.88658,0,0,15.6
+113778,13484.33319,0,0,15.6
+113779,14028.98692,0,0,15.6
+113780,14064.17411,0,0,15.6
+113781,14113.26153,0,0,15.6
+113782,14147.81256,0,0,15.6
+113783,14189.20726,0,0,15.6
+113784,14219.92044,0,0,15.6
+113785,14245.52282,0,0,15.6
+113786,14286.80345,0,0,15.6
+113787,14317.89987,0,0,15.6
+113788,14362.19444,0,0,15.6
+113789,14414.53998,0,0,15.6
+113790,14412.52916,0,0,15.6
+113791,14461.74255,0,0,15.6
+113792,353990.964,0,0,15.6
+113793,14558.38875,0,0,15.6
+113794,14523.0007,0,0,15.6
+113795,14627.52011,0,0,15.6
+113796,14613.81372,0,0,15.6
+113797,14701.98377,0,0,15.6
+113798,14668.77807,0,1037103.881,15.6
+113799,14764.71383,0,0,15.6
+113800,14764.70992,0,0,15.6
+113801,14778.71147,0,0,15.6
+113802,14838.74177,0,0,15.6
+113803,0,0,0,15.6
+113804,0,0,0,15.6
+113805,0,0,0,15.6
+113806,0,0,0,15.6
+113807,63954.80853,0,0,15.6
+113808,0,0,0,15.6
+113809,3377.701221,368221.9035,0,15.6
+113810,23909.62229,0,0,15.6
+113811,13618.29832,0,0,15.6
+113812,15060.41247,0,0,15.6
+113813,15213.01738,0,0,15.6
+113814,15225.72901,0,0,15.6
+113815,15296.41012,0,0,15.6
+113816,15279.65993,0,0,15.6
+113817,15347.18528,0,0,15.6
+113818,15352.21987,0,0,15.6
+113819,15408.39225,0,0,15.6
+113820,15432.71045,0,0,15.6
+113821,15480.64487,0,0,15.6
+113822,15573.81723,0,0,15.6
+113823,15645.01894,0,0,15.6
+113824,15759.7316,0,0,15.6
+113825,15750.51556,0,0,15.6
+113826,15896.77315,0,0,15.6
+113827,15955.66403,0,0,15.6
+113828,16006.5154,0,0,15.6
+113829,16125.85411,0,0,15.6
+113830,16157.43032,0,0,15.6
+113831,16253.50781,0,0,15.6
+113832,355805.887,0,0,15.6
+113833,16403.626,0,0,15.6
+113834,16441.18163,0,1005763.611,15.6
+113835,16550.46389,0,0,15.6
+113836,16638.98248,0,0,15.6
+113837,0,0,0,15.6
+113838,0,0,0,15.6
+113839,0,0,0,15.6
+113840,0,0,0,15.6
+113841,70660.62144,0,0,15.6
+113842,127.8408286,0,0,15.6
+113843,8973.272721,0,0,15.6
+113844,24619.08646,0,0,15.6
+113845,16115.1984,0,0,15.6
+113846,17403.48226,368203.7139,0,15.6
+113847,17506.85793,0,0,15.6
+113848,17597.01551,0,0,15.6
+113849,17639.51133,0,0,15.6
+113850,17728.05396,0,0,15.6
+113851,17798.5033,0,0,15.6
+113852,17859.47738,0,0,15.6
+113853,17940.31518,0,0,15.6
+113854,17982.28753,0,0,15.6
+113855,18097.41243,0,0,15.6
+113856,18131.00631,0,0,15.6
+113857,18243.39993,0,0,15.6
+113858,18282.54361,0,0,15.6
+113859,18348.08255,0,0,15.6
+113860,18434.39188,0,0,15.6
+113861,18491.63391,0,0,15.6
+113862,18584.67337,0,0,15.6
+113863,18618.49849,0,0,15.6
+113864,18704.50727,0,0,15.6
+113865,18793.76359,0,0,15.6
+113866,18846.17925,0,0,15.6
+113867,18938.97855,0,0,15.6
+113868,18952.0142,0,0,15.6
+113869,19102.75587,0,0,15.6
+113870,19096.40118,0,977178.605,15.6
+113871,0,0,0,15.6
+113872,339465.1954,0,0,15.6
+113873,0,0,0,15.6
+113874,71377.68753,0,0,15.6
+113875,1459.360957,0,0,15.6
+113876,14723.80622,28327.33567,0,15.6
+113877,24969.11315,0,0,15.6
+113878,18904.76579,598.7515421,0,15.6
+113879,19794.37218,5494.569278,0,15.6
+113880,19993.89422,10542.53735,0,15.6
+113881,20017.9819,7430.649774,0,15.6
+113882,20119.86305,7861.266411,0,15.6
+113883,20130.48951,376388.3854,0,15.6
+113884,20217.99288,8261.175432,0,15.6
+113885,20255.84285,8317.067143,0,15.6
+113886,20309.19016,8366.205914,0,15.6
+113887,20394.37524,8380.249555,0,15.6
+113888,20372.31011,8431.585946,0,15.6
+113889,20527.33423,8503.697677,0,15.6
+113890,20527.32545,8518.278881,0,15.6
+113891,20591.3258,8542.623151,0,15.6
+113892,20639.41094,8600.551407,0,15.6
+113893,20704.62819,8660.885662,0,15.6
+113894,20723.30758,8647.817945,0,15.6
+113895,20876.2567,8727.640349,0,15.6
+113896,20781.23455,8698.790777,0,15.6
+113897,20952.38585,8729.310892,0,15.6
+113898,20975.15029,8786.875485,0,15.6
+113899,21009.78111,8801.968133,0,15.6
+113900,21048.06285,8848.609102,0,15.6
+113901,21163.85743,8863.670324,0,15.6
+113902,21164.67652,8931.942881,0,15.6
+113903,21239.95653,8940.139636,0,15.6
+113904,0,8955.137104,0,15.6
+113905,0,9033.372591,0,15.6
+113906,0,0,951099.0692,15.6
+113907,75521.02981,0,0,15.6
+113908,8226.593012,0,0,15.6
+113909,13434.20544,0,0,15.6
+113910,27833.29922,0,0,15.6
+113911,20984.7063,0,0,15.6
+113912,361186.7727,0,0,15.6
+113913,21818.96113,0,0,15.6
+113914,21860.03022,0,0,15.6
+113915,21965.5369,0,0,15.6
+113916,21916.86232,31281.53569,0,15.6
+113917,22036.83206,2241.916283,0,15.6
+113918,22081.48101,5208.666674,0,15.6
+113919,22093.25813,9428.775221,0,15.6
+113920,22190.63462,379470.2768,0,15.6
+113921,22204.81945,8829.219088,0,15.6
+113922,22259.94901,9545.49829,0,15.6
+113923,22352.73075,9618.167047,0,15.6
+113924,22333.71512,9602.576268,0,15.6
+113925,22422.77464,9672.197624,0,15.6
+113926,22477.34444,9666.324912,0,15.6
+113927,22496.17465,9705.311186,0,15.6
+113928,22552.22687,9725.847944,0,15.6
+113929,22638.84706,9736.87518,0,15.6
+113930,22638.83443,9798.029569,0,15.6
+113931,22711.5196,9775.713593,0,15.6
+113932,22745.95341,9810.869769,0,15.6
+113933,22800.42317,9874.049443,0,15.6
+113934,22873.72598,9827.237278,0,15.6
+113935,22904.1617,9896.234645,0,15.6
+113936,22941.64408,9897.400221,0,15.6
+113937,0,9925.443663,0,15.6
+113938,0,9947.587179,0,15.6
+113939,0,9987.772916,0,15.6
+113940,79273.91779,9962.149373,0,15.6
+113941,918208.9816,515731.531,0,15.6
+113942,886420.1989,194143.8518,927293.2124,15.6
+113943,455013.2409,108410.6075,0,15.6
+113944,464137.6063,214977.9876,0,15.6
+113945,330111.6293,191667.3845,0,15.6
+113946,360655.3424,153471.8776,0,15.6
+113947,357513.7056,154187.2486,0,15.6
+113948,343745.475,232675.1351,0,15.6
+113949,343507.0092,170233.6756,0,15.6
+113950,341839.1526,188299.8399,0,15.6
+113951,340604.6029,189737.1708,0,15.6
+113952,340007.095,188545.3636,0,15.6
+113953,678640.0402,189046.7725,0,15.6
+113954,337961.5874,189767.5246,0,15.6
+113955,337553.4447,190137.2366,0,15.6
+113956,336460.7281,190707.6884,0,15.6
+113957,336138.1941,559519.0611,0,15.6
+113958,334997.3333,192126.8897,0,15.6
+113959,334684.5559,192181.9691,0,15.6
+113960,333659.8058,193310.6856,0,15.6
+113961,331137.7641,193465.3343,0,15.6
+113962,329862.9657,194300.426,0,15.6
+113963,329916.439,195175.8769,0,15.6
+113964,328953.3946,195289.4903,0,15.6
+113965,328413.0825,196065.5595,0,15.6
+113966,328408.2299,196872.3562,0,15.6
+113967,327064.3199,197090.9453,0,15.6
+113968,327474.9743,198373.8026,0,15.6
+113969,326135.4269,198701.8375,0,15.6
+113970,278510.4495,199091.572,0,15.6
+113971,0,31945.67125,0,15.6
+113972,90188.96362,32011.49702,0,15.6
+113973,54420.42114,31991.86003,0,15.6
+113974,842519.1456,32084.22463,0,15.6
+113975,378684.3338,32025.50152,0,15.6
+113976,187381.8876,32155.0537,905559.3891,15.6
+113977,383235.2803,499723.6009,0,15.6
+113978,324036.6901,46191.04571,0,15.6
+113979,323003.7176,171849.7693,0,15.6
+113980,322615.6072,195575.487,0,15.6
+113981,322264.6763,273730.0357,0,15.6
+113982,322301.7625,193996.3775,0,15.6
+113983,321241.5379,198177.2304,0,15.6
+113984,321668.6773,217037.98,0,15.6
+113985,320673.0555,209331.6341,0,15.6
+113986,320249.9644,210700.7958,0,15.6
+113987,320761.707,210696.062,0,15.6
+113988,319885.2372,212255.4131,0,15.6
+113989,658921.9441,211475.1622,0,15.6
+113990,319265.0494,212640.0163,0,15.6
+113991,318781.4135,212689.6121,0,15.6
+113992,319433.4849,582010.371,0,15.6
+113993,317881.995,214210.6622,0,15.6
+113994,318345.9865,214332.545,0,15.6
+113995,318047.7818,216054.6406,0,15.6
+113996,317406.5577,215676.0921,0,15.6
+113997,317475.2593,216880.2863,0,15.6
+113998,316893.306,217385.704,0,15.6
+113999,317115.8079,217957.9216,0,15.6
+114000,316347.7736,218451.8789,0,17.8
+114001,1381402.817,1445366.543,0,17.8
+114002,875245.799,1267711.671,0,17.8
+114003,840105.8753,399755.9824,0,17.8
+114004,228285.3803,494837.7111,0,17.8
+114005,954091.5083,540827.4204,0,17.8
+114006,627572.4099,508739.2099,0,17.8
+114007,749365.0011,99325.53013,0,17.8
+114008,730141.2164,109212.6533,0,17.8
+114009,641456.6922,971344.1728,0,17.8
+114010,679688.814,358689.155,885723.6952,17.8
+114011,669540.6141,380363.2929,0,17.8
+114012,671720.0183,394958.6171,0,17.8
+114013,663942.5412,542292.0207,0,17.8
+114014,664551.5857,456984.1234,0,17.8
+114015,661804.1996,461016.288,0,17.8
+114016,661822.9009,462753.6029,0,17.8
+114017,659118.0419,452814.1934,0,17.8
+114018,656649.3422,453086.4422,0,17.8
+114019,655246.9083,449868.089,0,17.8
+114020,654064.9134,446687.6986,0,17.8
+114021,652729.6739,443951.7815,0,17.8
+114022,651409.3246,441883.1143,0,17.8
+114023,649959.0001,437963.1267,0,17.8
+114024,649729.244,436591.1248,0,17.8
+114025,986676.5236,434063.3892,0,17.8
+114026,646922.3828,431071.1274,0,17.8
+114027,646072.8846,796575.0385,0,17.8
+114028,644972.636,426421.5775,0,17.8
+114029,644101.0617,423796.813,0,17.8
+114030,643222.7709,421265.8208,0,17.8
+114031,621044.1714,419477.1599,0,17.8
+114032,621258.2577,416067.2595,0,17.8
+114033,514717.2011,398525.0979,0,17.8
+114034,662002.9338,396847.8179,0,17.8
+114035,152928.4441,393494.1279,0,17.8
+114036,116929.2135,392425.5394,0,17.8
+114037,938629.1876,389323.9262,0,17.8
+114038,729682.1522,387703.3632,0,17.8
+114039,635538.8524,75564.63499,0,17.8
+114040,637518.2349,75203.22302,0,17.8
+114041,562146.9082,74995.1031,0,17.8
+114042,613609.9205,861730.3216,0,17.8
+114043,650246.2748,134386.3306,0,17.8
+114044,636261.6919,300408.0592,867647.856,17.8
+114045,630107.0698,464927.9949,0,17.8
+114046,635446.0059,353125.059,0,17.8
+114047,633957.747,372230.9523,0,17.8
+114048,634501.9169,367072.8722,0,17.8
+114049,633274.3845,366322.5866,0,17.8
+114050,632954.8651,362338.6909,0,17.8
+114051,631330.0518,361413.5234,0,17.8
+114052,632183.084,358135.1703,0,17.8
+114053,630796.1617,357241.217,0,17.8
+114054,630961.96,354074.6432,0,17.8
+114055,630959.8009,352598.0991,0,17.8
+114056,629251.8608,349820.6786,0,17.8
+114057,629305.6534,348069.4223,0,17.8
+114058,630515.6529,345486.5853,0,17.8
+114059,627473.4185,343722.0547,0,17.8
+114060,629443.4429,340711.6733,0,20
+114061,2624674.902,2948593.087,512150.377,20
+114062,2040156.998,702525.6983,54790.8708,20
+114063,632620.834,466318.7503,95103.99995,20
+114064,679644.3827,550642.3147,190424.7134,20
+114065,712608.9479,756385.6785,160662.6966,20
+114066,1008130.123,601995.3946,152725.2725,20
+114067,776205.6847,622986.2698,158401.7538,20
+114068,825679.1931,622234.4407,159721.1148,20
+114069,820518.5967,619168.1334,161027.4371,20
+114070,819050.9738,618827.961,161369.9112,20
+114071,814919.1661,616482.1201,162664.0107,20
+114072,811934.3526,614391.9357,163329.9557,20
+114073,808657.031,613795.792,164142.0631,20
+114074,806731.2202,610919.4708,165194.0441,20
+114075,804297.3572,611123.6663,165998.6528,20
+114076,801484.564,608208.2097,166898.3269,20
+114077,797522.5812,608205.1486,167836.5283,20
+114078,798581.4147,606132.4856,168714.3229,20
+114079,793549.607,605561.9259,169787.6618,20
+114080,793302.863,603549.3153,170519.6907,20
+114081,789055.7703,603816.1847,171707.3722,20
+114082,788346.0558,601498.3702,172272.0115,20
+114083,787106.1936,600362.7084,173289.5195,20
+114084,784695.4284,600904.5825,174373.8818,20
+114085,781834.9455,598869.639,175446.0973,20
+114086,780686.6771,597631.5437,175896.8281,20
+114087,779680.5529,597417.8042,177258.3752,20
+114088,775466.7853,596086.6779,178197.6846,20
+114089,777100.2768,595245.2188,178733.562,20
+114090,773325.7372,595040.4211,180027.7248,20
+114091,772837.4981,593808.579,181002.0824,20
+114092,769700.6046,592840.6996,181670.2332,20
+114093,770043.6014,592537.0452,182747.8792,20
+114094,767154.9732,592125.4203,183750.3723,20
+114095,765821.135,590040.243,185191.5098,20
+114096,765109.695,591407.8223,188298.6537,20
+114097,764126.2191,588483.0901,187837.9531,20
+114098,760582.6804,589941.373,189560.8442,20
+114099,760912.3968,588380.7252,190695.9199,20
+114100,759857.6035,587681.4814,191373.1009,20
+114101,757648.2952,587272.6881,192808.1834,20
+114102,757814.8776,586657.2999,193819.5185,20
+114103,754681.0691,586074.808,194870.6719,20
+114104,754363.3378,586249.0804,195652.6916,20
+114105,753010.9673,585108.8768,197472.9213,20
+114106,752151.0679,583400.7088,197959.3475,20
+114107,750898.3694,585542.5172,199331.777,20
+114108,750103.8496,582682.4436,199936.7579,20
+114109,748609.3507,583447.0589,201310.2834,20
+114110,746255.487,583204.9421,202447.0703,20
+114111,748562.983,581255.8978,203371.2344,20
+114112,743554.1963,582487.0849,204596.643,20
+114113,745719.5955,581061.6531,205539.1139,20
+114114,742814.293,581117.2204,206405.1356,20
+114115,742524.5737,580620.2794,208112.9609,20
+114116,741921.838,580049.1287,208146.0001,20
+114117,740029.4687,579618.7291,209824.3219,20
+114118,740806.6511,579361.8282,210969.6513,20
+114119,737696.5458,578739.7253,211791.8808,20
+114120,739315.8318,578031.3119,213229.1129,21
+114121,1135338.014,982227.452,196798.5977,21
+114122,1129946.175,977148.4709,195931.0896,21
+114123,1126871.61,975933.7395,196358.6876,21
+114124,1125108.679,975853.8559,196886.7076,21
+114125,1123349.953,975120.1256,197682.959,21
+114126,1119664.03,974819.1293,198390.7243,21
+114127,1120250.492,974269.189,198954.7148,21
+114128,1114717.887,975117.7683,199770.1979,21
+114129,1115571.451,972087.6034,200739.2411,21
+114130,1111761.747,974718.6948,201274.9329,21
+114131,1111548.758,972852.3997,201781.7827,21
+114132,1108434.807,972527.5694,202955.9647,21
+114133,1106537.298,972976.3067,203777.4222,21
+114134,1105149.925,971437.7064,204321.7173,21
+114135,1102418.761,971836.423,204901.8193,21
+114136,1101797.908,971998.9373,206024.2746,21
+114137,1098956.094,971485.9233,206639.1256,21
+114138,1098173.755,970268.5968,207385.056,21
+114139,1095198.067,971799.0367,207952.5689,21
+114140,1095000.324,971151.14,209438.4052,21
+114141,1091210.996,969455.7168,209273.4939,21
+114142,1091351.585,971320.5849,210982.2679,21
+114143,1085832.966,970733.7797,210904.6713,21
+114144,1084676.059,970024.2804,212323.8331,21
+114145,1081773.116,969776.5461,212649.3808,21
+114146,1080596.63,971007.3157,213521.8468,21
+114147,1078400.791,969576.0478,214467.3215,21
+114148,1077269.428,969980.8086,214992.9989,21
+114149,1074428.496,969647.672,216187.3302,21
+114150,1073655.791,970409.7907,216458.7837,21
+114151,1058808.657,969029.6942,217993.1381,21
+114152,1055277.46,969739.6922,217727.6231,21
+114153,1050971.108,970419.5713,219353.3463,21
+114154,1048221.458,969419.6253,219738.2858,21
+114155,1045087.809,969429.2965,220807.8492,21
+114156,1041810.914,969769.6638,221363.843,21
+114157,1040076.171,969814.9817,221970.2729,21
+114158,1034757.826,968679.5804,223147.7111,21
+114159,1033092.806,970357.0661,223703.4002,21
+114160,1029801.616,969772.5768,224241.1937,21
+114161,1026761.541,969675.3578,225600.5894,21
+114162,1023400.374,969679.2129,225938.3583,21
+114163,1019946.181,969434.4829,226564.7174,21
+114164,1017950.068,969737.6942,227678.1196,21
+114165,1013703.795,969797.7339,228326.6863,21
+114166,1011840.473,970372.3697,227575.065,21
+114167,1007422.419,968909.1785,228186.6246,21
+114168,1005097.481,970559.1544,228746.6111,21
+114169,1001445.782,970109.7708,229380.2568,21
+114170,998608.1487,969454.8345,229842.1184,21
+114171,995618.982,970186.3525,230679.3181,21
+114172,993110.6753,970857.3043,231452.2706,21
+114173,989277.6367,969550.9171,231568.1538,21
+114174,986745.1827,971081.9399,232377.0879,21
+114175,983269.003,969428.9325,233071.3627,21
+114176,982459.8162,970883.582,233885.8332,21
+114177,975917.3023,970852.0695,234559.426,21
+114178,976536.1885,970397.0208,234797.4376,21
+114179,971235.0461,971520.3307,235394.7173,21
+114180,969448.1555,966900.2815,236216.8161,21
+114181,731703.8722,776502.3941,108606.3827,21
+114182,713437.1399,769593.6696,101290.1108,21
+114183,704264.5293,767728.1005,100286.4938,21
+114184,700167.9816,764852.5015,98555.64361,21
+114185,695771.9643,762367.9636,97847.66251,21
+114186,691035.3029,761246.0032,96387.95889,21
+114187,687627.4981,758179.702,95715.5196,21
+114188,682779.0136,756407.8189,94823.06074,21
+114189,679416.9337,754506.144,93711.66963,21
+114190,675003.8528,752488.3647,93209.24495,21
+114191,671570.1765,749754.0804,92310.06779,21
+114192,667759.4465,749293.4756,91763.56397,21
+114193,663710.1744,746005.4877,90344.94681,21
+114194,659913.0598,745046.6269,90623.96251,21
+114195,656066.6879,742218.6533,88810.73686,21
+114196,652186.7271,717216.5605,88925.56602,21
+114197,648911.207,712099.8283,87823.52332,21
+114198,644301.3531,709308.1453,87375.46241,21
+114199,641472.7782,706856.2954,86661.49501,21
+114200,636846.4107,704214.6147,86011.38084,21
+114201,634050.5222,701077.3371,85412.91588,21
+114202,629805.3108,699814.7599,84588.11417,21
+114203,625571.4124,696081.0347,83995.5965,21
+114204,622329.8109,694395.6629,83541.36721,21
+114205,618084.9557,691528.3844,82997.05168,21
+114206,614365.1057,689539.7315,82250.65981,21
+114207,610325.0721,687064.1979,81597.22099,21
+114208,606931.4444,684775.5951,81369.96252,21
+114209,602652.1108,682435.9286,80729.44221,21
+114210,599399.7138,680297.8628,80314.75577,21
+114211,595347.4106,677782.4562,80074.88307,21
+114212,591608.1445,675674.1524,79260.48162,21
+114213,589053.3821,673022.6408,78858.96945,21
+114214,586474.2076,671670.6048,78486.10432,21
+114215,583975.1271,668797.9403,78171.3991,21
+114216,581751.1944,664719.6095,77195.20322,21
+114217,578500.8789,661689.4711,77280.49276,21
+114218,576872.3982,659573.2073,76508.24696,21
+114219,574025.5055,657631.1814,75801.02453,21
+114220,571688.7565,655112.2807,76030.68644,21
+114221,568870.6032,653393.3138,74768.14067,21
+114222,566411.5277,650838.3577,75341.36338,21
+114223,564055.2767,649009.3432,73950.79486,21
+114224,561123.516,646637.822,74063.22848,21
+114225,559078.1665,644667.0805,73159.04652,21
+114226,556273.0767,642968.308,73481.19243,21
+114227,553783.6141,640782.3845,72145.85677,21
+114228,551922.4652,638996.4808,72082.52018,21
+114229,548350.6712,638136.1926,71909.53709,21
+114230,546631.9381,636188.9366,71162.31542,21
+114231,543903.4304,634844.6877,70800.15646,21
+114232,541191.0047,634009.3956,70758.92065,21
+114233,539347.2174,632086.3102,69663.79766,21
+114234,536176.6636,630733.39,69759.08616,21
+114235,534024.8261,629847.912,69345.10848,21
+114236,531831.9081,627538.7644,68658.20214,21
+114237,529533.607,627592.5738,68326.52154,21
+114238,526513.5181,625241.0402,68157.31968,21
+114239,524059.0189,624493.9217,67276.04847,21
+114240,521864.8932,623604.7143,67460.32464,21
+114241,519013.7008,621350.2551,66685.68913,21
+114242,517833.9963,619340.9011,66396.21233,21
+114243,515201.3277,618137.858,66309.36622,21
+114244,513958.8038,615834.4398,65769.39045,21
+114245,511995.4953,614632.5094,65509.53289,21
+114246,509794.3504,612556.1784,64874.20282,21
+114247,508064.5604,611293.8048,65304.41539,21
+114248,505688.6125,609182.65,63936.41401,21
+114249,503887.3428,607912.8143,64752.32459,21
+114250,501867.835,605917.782,63494.03753,21
+114251,500057.5102,604597.5155,63473.73958,21
+114252,497571.8232,602879.6302,63436.71755,21
+114253,496201.7724,601251.576,62767.67837,21
+114254,493468.976,599723.3848,62664.28369,21
+114255,490975.9539,597750.8714,62227.71537,21
+114256,489168.7314,596537.4345,61954.87686,21
+114257,487118.2279,594769.6561,61707.8966,21
+114258,484021.5949,592895.0548,61344.63111,21
+114259,482903.6157,591912.576,60978.08366,21
+114260,480038.1486,589470.5661,60816.41159,21
+114261,478282.2625,588445.6641,60275.72102,21
+114262,475522.4489,586638.9112,60252.85062,21
+114263,473542.9642,584791.5261,59654.75085,21
+114264,471217.8778,583337.9297,59548.64333,21
+114265,468558.2915,581705.3274,59251.53872,21
+114266,466700.6048,580037.6657,58665.41457,21
+114267,464095.5834,578806.0089,58676.40363,21
+114268,462005.5666,576577.0549,58501.67793,21
+114269,459741.765,575248.1122,57656.45095,21
+114270,456927.6759,573812.502,57665.60588,21
+114271,455048.286,572019.0303,57358.22624,21
+114272,452286.5326,570397.5558,57169.95595,21
+114273,450212.4773,568799.9894,56830.00929,21
+114274,447603.3683,567182.6984,56420.12185,21
+114275,445601.2975,565823.6319,55872.4701,21
+114276,443243.5158,564220.4213,56206.93949,21
+114277,440952.5655,565802.8011,55585.01677,21
+114278,438338.0377,565233.3249,55300.8258,21
+114279,435887.5412,563841.8618,54839.5072,21
+114280,433399.5168,562629.5326,54688.24082,21
+114281,431327.822,560930.8154,54665.28028,21
+114282,428701.1869,560218.6741,53697.4246,21
+114283,426086.2311,557862.3287,54050.07439,21
+114284,423784.0679,557230.7975,53493.73994,21
+114285,422060.6523,555438.9985,53314.18366,21
+114286,418574.3409,553991.8396,52923.28703,21
+114287,417138.961,552965.4253,52862.32552,21
+114288,414210.5546,550904.5191,51980.58222,21
+114289,411720.8464,549928.9612,52429.58498,21
+114290,409600.8996,548283.7014,51646.70504,21
+114291,407410.5805,547080.2839,51691.68204,21
+114292,404513.7879,545246.6447,51317.30118,21
+114293,402709.0287,544296.3163,50899.66515,21
+114294,399837.1975,542406.7898,50654.99775,21
+114295,397736.8896,541331.0102,50504.80116,21
+114296,395034.1314,539545.1665,50181.57105,21
+114297,392745.2153,538330.9055,49770.22635,21
+114298,390600.4845,536492.776,49660.65402,21
+114299,387844.4624,535843.1548,49390.03108,21
+114300,385611.0084,533426.5599,48836.75862,21
+114301,382203.0831,536192.0054,58799.57863,21
+114302,379158.6572,534027.2011,59052.27101,21
+114303,377214.8951,531583.3017,57938.79088,21
+114304,375134.9087,530088.9411,57790.40437,21
+114305,372892.5436,527079.8757,57519.4199,21
+114306,370587.8734,524972.297,57112.96084,21
+114307,368565.7289,523279.2398,56707.25009,21
+114308,366584.1113,520892.713,56331.89567,21
+114309,363929.1181,518558.4727,55646.66011,21
+114310,362303.0087,516048.9538,55777.1281,21
+114311,359575.219,514462.1333,54952.2932,21
+114312,357594.521,511510.6392,54827.94389,21
+114313,355272.2942,510052.3979,54143.57219,21
+114314,353209.6285,507363.3537,54426.14976,21
+114315,350823.9246,505424.4183,53766.27185,21
+114316,348784.3973,502827.1372,53849.35115,21
+114317,346443.6974,501340.2141,53413.53372,21
+114318,343942.1867,498591.7324,53026.40788,21
+114319,341869.7102,496287.8434,53255.03263,21
+114320,339894.7406,495109.3609,52357.91496,21
+114321,337717.1882,492898.3084,52580.82723,21
+114322,337132.3223,490470.418,52121.87377,21
+114323,335749.8842,488635.0688,51910.21916,21
+114324,334193.2814,486172.4053,51841.59403,21
+114325,333561.2304,483976.7157,50941.86205,21
+114326,331778.9395,482003.3829,51574.52216,21
+114327,330819.491,479850.9874,50401.70664,21
+114328,329633.7581,477106.0585,51037.53915,21
+114329,328278.8913,475568.0639,50144.14888,21
+114330,326965.3915,472752.0911,50176.82638,21
+114331,325936.0092,470775.335,49764.56908,21
+114332,324736.0593,467971.1384,49427.55741,21
+114333,323192.0674,465788.2222,48496.74982,21
+114334,322253.4463,463224.3466,48395.23837,21
+114335,320836.8472,461229.3171,47724.45419,21
+114336,319994.3827,458156.2193,47150.18973,21
+114337,318336.239,456311.8496,46942.94365,21
+114338,317285.6027,453775.3608,46121.02688,21
+114339,316191.0133,451225.9295,45519.20039,21
+114340,314735.07,448670.5083,45143.44739,21
+114341,313934.1134,446029.7104,44604.6162,21
+114342,312166.7515,444283.768,43777.69745,21
+114343,311822.9464,441088.6203,43919.23321,21
+114344,310042.337,439021.059,42384.99878,21
+114345,309367.992,436178.0219,42825.64151,21
+114346,307985.5081,434298.5745,41362.48872,21
+114347,306913.9305,431276.3266,41305.51362,21
+114348,306058.4749,429344.9855,40711.9706,21
+114349,304838.7665,425858.7442,40029.88072,21
+114350,303804.3177,424293.3358,39461.6941,21
+114351,302365.0092,421134.6369,39011.82549,21
+114352,301569.7418,419354.0465,38174.47666,21
+114353,300415.4435,415809.4584,37896.08994,21
+114354,299290.5768,414453.6727,37040.98424,21
+114355,298254.3911,410960.8238,36615.41049,21
+114356,297056.5884,408817.9366,36024.67668,21
+114357,296099.1731,406557.5522,35313.72851,21
+114358,294893.1683,403466.2814,34735.96383,21
+114359,293930.2647,401124.1123,34289.92425,21
+114360,292580.1681,398776.9581,33616.64869,21
+114361,293646.9341,391920.6193,22282.3933,21
+114362,292350.5923,390629.8391,21884.12655,21
+114363,291807.9191,388150.8036,20807.59151,21
+114364,291372.2841,387009.9358,20383.84106,21
+114365,290450.0731,384404.9167,19687.14417,21
+114366,289933.8098,383430.5064,19165.33932,21
+114367,289305.133,380955.2473,18518.54524,21
+114368,288562.7531,379022.5571,17863.69851,21
+114369,287847.8782,377850.1725,17287.18705,21
+114370,287228.0737,375198.2413,16478.6373,21
+114371,286596.8653,374257.2265,16070.15413,21
+114372,285781.7755,371616.771,15360.04466,21
+114373,285022.9436,370241.8804,14946.72097,21
+114374,284562.3054,367940.3957,13987.80869,21
+114375,283769.6804,366806.0456,13674.80435,21
+114376,283411.2244,360484.8612,12847.40681,21
+114377,282749.9575,357899.2306,12411.24345,21
+114378,282020.121,356275.306,11551.6632,21
+114379,281607.8058,353820.9856,11141.2585,21
+114380,281094.7399,351740.132,10451.22116,21
+114381,279955.5527,350334.7814,10203.62459,21
+114382,279096.3695,347386.3022,9748.514162,21
+114383,278444.2402,345923.763,9356.801954,21
+114384,278037.6246,344095.3371,9101.138973,21
+114385,277124.0976,341487.0944,8481.547979,21
+114386,276556.6872,339669.8354,8376.450232,21
+114387,276088.3842,337742.9077,7971.027841,21
+114388,275151.352,335576.1243,7327.666108,21
+114389,274757.9847,333685.6019,7276.194406,21
+114390,274288.9866,331572.7099,6789.130244,21
+114391,273372.1619,330401.6052,6592.173962,21
+114392,272623.6225,328223.2936,6307.623621,21
+114393,272344.9195,327420.2128,6087.434764,21
+114394,271377.9322,325795.2442,6013.456359,21
+114395,270872.7634,324479.4131,5617.873212,21
+114396,270382.5812,323311.8891,5526.644427,21
+114397,269495.1012,321751.7659,5125.664423,21
+114398,269115.7525,320716.9396,5207.334345,21
+114399,268371.1211,319323.6614,4825.934135,21
+114400,268059.459,318147.7293,4731.629652,21
+114401,267375.5029,316627.0012,4309.501606,21
+114402,266389.0394,315874.6257,4447.109195,21
+114403,265898.6822,314237.0079,4020.151684,21
+114404,265524.241,313180.3084,3927.032542,21
+114405,264548.3755,312117.1239,3711.482382,21
+114406,264417.6666,310750.3635,3636.937116,21
+114407,263314.706,313435.6602,3399.961478,21
+114408,262926.7016,312880.4522,3142.151486,21
+114409,262214.1221,311946.1624,3084.743394,21
+114410,262232.2602,311137.9145,2841.202112,21
+114411,260889.5526,309950.0341,2610.95951,21
+114412,260464.7057,309155.7742,2782.517589,21
+114413,252245.7849,307904.7458,2532.268506,21
+114414,254372.236,307240.9368,2512.845136,21
+114415,252272.5492,306489.2312,2453.515633,21
+114416,250848.3094,304967.2729,2453.715053,21
+114417,249357.3784,304612.2124,2394.411708,21
+114418,248025.8577,303228.2254,2354.867127,21
+114419,247014.3907,302481.0795,2335.166627,21
+114420,245060.6808,301833.7762,2275.605223,21
+114421,259023.8206,328362.4443,10164.89688,21
+114422,257981.8728,329297.5223,17522.03864,21
+114423,256825.7805,327723.0395,14794.43997,21
+114424,255371.2381,327878.3114,14717.72718,21
+114425,254277.7137,326145.2871,14914.34647,21
+114426,253482.6523,325985.8408,14412.25933,21
+114427,252053.9476,324849.9821,14482.46391,21
+114428,251020.6884,324657.2141,14251.64683,21
+114429,249833.6235,324011.9107,13855.02232,21
+114430,248532.3293,322940.4718,13953.97095,21
+114431,247946.5681,322472.6958,13590.23687,21
+114432,246561.8812,321861.1907,13482.15753,21
+114433,245963.0669,320763.6897,13251.90405,21
+114434,244346.1551,319570.1274,13042.48403,21
+114435,243458.8743,319258.0468,12968.07553,21
+114436,242484.5637,318387.3237,12740.55982,21
+114437,241081.4192,317545.149,12351.71828,21
+114438,240378.8871,317342.5244,12435.1146,21
+114439,238817.9883,315978.6296,12221.8986,21
+114440,237976.7625,315667.8434,11814.29544,21
+114441,240570.3993,314869.3727,11913.71514,21
+114442,238644.7827,313995.078,11560.74176,21
+114443,238253.2401,313716.8014,11502.80367,21
+114444,236737.465,312289.4019,11325.82243,21
+114445,236231.3018,312089.5782,11129.22432,21
+114446,235630.9268,311171.7836,11051.08648,21
+114447,234399.2237,310218.3133,10913.06613,21
+114448,233776.0951,310165.0319,10656.42697,21
+114449,232603.3489,308504.8131,10498.22273,21
+114450,232020.5647,308503.1538,10439.33672,21
+114451,230932.8973,307242.6691,10420.16402,21
+114452,229922.0315,306806.249,10062.61834,21
+114453,229207.5459,305539.7188,10361.78986,21
+114454,228253.7207,305000.0722,10003.99368,21
+114455,226951.601,303781.6187,10004.66643,21
+114456,226296.7769,302941.6674,9945.337337,21
+114457,225196.4105,302406.8068,9945.975264,21
+114458,224238.2134,301012.3904,9766.767469,21
+114459,223404.7835,300448.6084,9867.068121,21
+114460,222286.4015,299405.9575,9547.98558,21
+114461,221505.542,298432.2352,9848.119328,21
+114462,220170.6837,297474.4507,9488.78255,21
+114463,219444.8444,296825.6739,9649.380021,21
+114464,218397.6882,295505.7764,9449.722156,21
+114465,217568.1442,295133.4513,9409.963816,21
+114466,216218.2573,293667.6067,9430.63365,21
+114467,215463.235,293123.6446,9370.685346,21
+114468,214366.4143,291938.3956,9210.910816,21
+114469,213646.2094,291245.5602,9351.452811,21
+114470,212558.3456,290022.7963,9151.28418,21
+114471,211430.7614,289072.3462,9131.532353,21
+114472,210770.2358,288392.8861,9152.223719,21
+114473,209531.6597,287108.6106,9071.622331,21
+114474,208705.7385,286420.3687,8931.881222,21
+114475,207872.6506,285601.529,9052.246236,21
+114476,206821.0928,284337.0286,8892.173877,21
+114477,206080.0969,283582.6082,9032.811322,21
+114478,204789.3811,282743.4188,8832.017217,21
+114479,204240.0017,281703.9287,8832.442062,21
+114480,203399.5784,280523.7791,8792.102035,21
+114481,179441.1206,253337.423,456.4517808,21
+114482,177452.4461,252765.3214,389.9191515,21
+114483,176773.1179,251795.9531,411.8571624,21
+114484,175460.0112,251344.9348,367.897158,21
+114485,174263.7789,250813.5598,389.9221588,21
+114486,173472.6328,250262.1706,367.3811957,21
+114487,172181.2106,249895.4336,367.8998893,21
+114488,170943.0329,248991.1555,344.6362957,21
+114489,170243.817,248024.4044,367.9016218,21
+114490,168863.2881,248436.6123,322.6135451,21
+114491,167994.3492,247003.61,345.3610795,21
+114492,166827.0172,246834.4804,322.6149769,21
+114493,166089.8388,245912.7099,334.0175131,21
+114494,164846.889,245820.4226,322.6163847,21
+114495,163851.1491,244693.2091,311.5702794,21
+114496,163007.1298,244590.3248,322.6177477,21
+114497,161883.7164,243597.9013,300.5006366,21
+114498,160964.6298,243320.3838,299.6114901,21
+114499,160107.2475,242737.5152,311.5728386,21
+114500,159008.6312,242116.5944,300.5024584,21
+114501,157762.9624,241693.138,299.6133152,21
+114502,157272.0379,241061.4135,277.4958771,21
+114503,156038.0788,240322.9236,311.5753096,21
+114504,154866.2296,240215.9438,277.4969676,21
+114505,153926.2917,239326.97,288.568622,21
+114506,152812.8312,238928.9004,277.4980145,21
+114507,151777.3623,238553.4501,288.5697129,21
+114508,150628.0465,237809.0719,277.4990615,21
+114509,149400.2962,237597.6553,277.4995762,21
+114510,148506.3581,236849.8923,288.5713402,21
+114511,147266.0851,236619.7661,277.5006231,21
+114512,146201.1003,236117.7771,265.8696633,21
+114513,145177.5157,236487.0027,277.5016298,21
+114514,144300.0565,235416.2838,231.9061725,21
+114515,143039.0691,236115.1592,254.1254187,21
+114516,141989.4848,235273.5557,243.6525665,21
+114517,141208.278,235329.226,231.9073046,21
+114518,140022.3575,234813.2135,231.1242578,21
+114519,139049.9024,235075.4811,231.9080207,21
+114520,138154.2377,235646.6475,185.4534992,21
+114521,137090.2669,234727.4854,231.9086689,21
+114522,136210.6345,235550.0091,196.632318,21
+114523,135131.7237,234368.3928,185.4542608,21
+114524,134337.3403,235027.4014,196.6328203,21
+114525,133452.8557,234862.5835,185.4547334,21
+114526,132562.0948,234384.6554,185.4549635,21
+114527,131528.7444,234566.0099,174.2469408,21
+114528,130913.3872,234343.1973,185.4554114,21
+114529,130256.1312,234112.1199,163.0076246,21
+114530,129273.204,234140.034,163.0078039,21
+114531,128684.1591,234265.9263,174.247745,21
+114532,127703.3645,233887.2297,163.0081736,21
+114533,127337.0376,233868.1142,151.7353278,21
+114534,126160.5882,233907.5548,163.0085212,21
+114535,125941.8901,233694.5974,140.4273303,21
+114536,124890.0069,233971.466,163.0088574,21
+114537,124441.7123,233248.3739,129.081661,21
+114538,123654.0647,233933.5112,140.4277428,21
+114539,122995.6912,233521.2419,140.4278772,21
+114540,122560.057,233903.7359,140.4280115,21
+114541,126593.6547,239100.697,71.67107059,21
+114542,125996.6583,240383.3905,94.78854059,21
+114543,125335.5621,241731.6642,71.67115346,21
+114544,124482.8205,243301.0937,83.25902918,21
+114545,123760.3679,244314.0666,8145.598179,21
+114546,123084.7637,245670.6698,3912.694508,21
+114547,122270.3548,246868.4338,4743.46416,21
+114548,121668.7056,248321.3537,5073.331977,21
+114549,120788.4107,249737.7446,5237.849642,21
+114550,120059.7541,250767.4822,5226.35571,21
+114551,119267.2289,252130.549,5226.516963,21
+114552,118730.2919,253534.6466,5238.334854,21
+114553,117829.8724,254891.5788,5379.165703,21
+114554,117278.8623,256137.868,5227.004669,21
+114555,116396.4874,257338.6066,5543.253014,21
+114556,115693.0147,258820.2124,5391.410504,21
+114557,115126.3274,260277.4635,5379.846131,21
+114558,113852.633,261344.3232,5543.783658,21
+114559,113696.7434,262692.6902,5543.963201,21
+114560,112646.8404,264272.2072,5532.314632,21
+114561,111853.8649,265317.3185,5544.321716,21
+114562,111184.4107,267093.8816,5532.67238,21
+114563,110373.8653,268055.9988,5708.163889,21
+114564,109617.6211,269471.5087,5521.088224,21
+114565,108556.7256,270981.1675,5708.537157,21
+114566,108015.2518,272326.4297,5684.949439,21
+114567,107215.7181,273592.794,5521.630632,21
+114568,106237.1032,274799.3666,5872.305539,21
+114569,105185.6083,276840.6068,5673.401546,21
+114570,104657.8081,277519.9253,5685.699758,21
+114571,103733.8447,278836.4056,5861.059863,21
+114572,102758.532,279919.7929,5673.966939,21
+114573,101926.5012,281499.6237,5849.501709,21
+114574,100830.2974,281689.5495,5849.699116,21
+114575,100161.9699,283666.2956,5837.782959,21
+114576,99307.63028,283887.7292,5850.093273,21
+114577,98028.02205,285679.7094,5838.176312,21
+114578,97402.81221,286291.4092,5838.372661,21
+114579,96115.18747,287291.2275,6001.540805,21
+114580,95313.13515,288691.9926,5838.769644,21
+114581,94166.55169,289625.9542,6001.949375,21
+114582,93207.48375,291471.7205,5826.729758,21
+114583,92264.14949,292393.7239,6177.176599,21
+114584,90971.83646,293973.998,5827.130001,21
+114585,90046.73991,294355.7357,6153.046669,21
+114586,88910.85041,295932.3905,5839.967181,21
+114587,87632.18533,296372.7877,6153.469653,21
+114588,86843.11169,297947.3763,5990.952968,21
+114589,85569.05345,298821.8368,6153.896473,21
+114590,84131.55917,299530.272,5991.367858,21
+114591,83121.5355,300865.385,6154.323145,21
+114592,82263.59663,301674.2467,6154.53871,21
+114593,80557.53397,302831.019,5991.992146,21
+114594,79708.30985,303818.4657,6154.96516,21
+114595,78419.22661,303947.9551,6155.180613,21
+114596,77254.96645,304487.1363,6155.396029,21
+114597,75923.1527,306055.975,6318.110935,21
+114598,74634.86608,306966.8038,6155.831261,21
+114599,73723.84188,307388.3361,6156.046563,21
+114600,72320.77949,309017.4288,6318.779423,21
+114601,66348.45091,304263.4059,0,21
+114602,65556.48648,304913.4798,24.56634835,21
+114603,65051.34905,305124.694,24.56635274,21
+114604,63956.28163,305513.5498,24.56635712,21
+114605,63532.05127,305960.883,0,21
+114606,62565.21112,306516.1638,12.44347222,21
+114607,61867.81963,307199.1477,0,21
+114608,61014.47699,307146.0736,0,21
+114609,60166.53071,307793.0334,0,21
+114610,59741.43543,308072.1117,0,21
+114611,58625.30055,308773.2782,0,21
+114612,57880.78448,309186.837,0,21
+114613,57356.93199,309244.9621,0,21
+114614,56286.0738,310240.4995,0,21
+114615,55812.22483,310251.6973,0,21
+114616,54470.45139,310893.9811,0,21
+114617,54317.37974,310782.3596,0,21
+114618,53218.79075,311965.7253,0,21
+114619,52612.20815,311633.226,0,21
+114620,52362.71755,312593.0957,0,21
+114621,52282.94134,313147.011,0,21
+114622,52730.43406,313024.8833,0,21
+114623,53061.4728,313732.7211,0,21
+114624,53314.63928,314139.9977,0,21
+114625,53688.83403,314221.0058,0,21
+114626,53932.3658,315302.4879,0,21
+114627,54164.11488,314851.0348,0,21
+114628,54600.9585,316029.4586,0,21
+114629,54922.92063,315888.8964,0,21
+114630,55268.0761,316485.6967,0,21
+114631,55459.05192,316927.7647,0,21
+114632,55982.66317,317585.71,0,21
+114633,56231.04699,317630.5611,0,21
+114634,56818.21113,318542.4631,0,21
+114635,56960.86775,318500.3654,0,21
+114636,57501.081,319683.4899,0,21
+114637,57788.76659,319352.3942,0,21
+114638,58228.99605,320550.946,0,21
+114639,58487.52529,320388.194,0,21
+114640,59092.51995,321147.6455,0,21
+114641,59504.27771,321966.8891,0,21
+114642,59839.96558,321765.6446,0,21
+114643,60340.18826,322806.3482,0,21
+114644,60819.62586,323115.5481,0,21
+114645,61350.27083,323499.4306,0,21
+114646,61803.38524,323832.0802,0,21
+114647,62174.9485,324630.9931,0,21
+114648,62792.93509,324972.1425,0,21
+114649,63431.25248,325463.0792,0,21
+114650,63839.92044,326032.3542,0,21
+114651,64289.44932,326422.3412,0,21
+114652,65023.79662,326889.8977,0,21
+114653,65308.66246,327417.4442,0,21
+114654,66185.73115,327763.9143,0,21
+114655,66609.35329,328825.0211,0,21
+114656,67157.35685,328404.0732,0,21
+114657,67750.84856,329704.6303,0,21
+114658,68359.82717,329964.1697,0,21
+114659,69102.22701,330110.4942,0,21
+114660,69523.09691,331603.4528,0,21
+114661,70532.85805,330559.5928,0,21
+114662,71479.11474,331030.7596,0,21
+114663,72499.27485,330619.8973,0,21
+114664,73501.6867,330702.5291,0,21
+114665,74298.9662,330573.1115,0,21
+114666,75672.44576,330751.5768,0,21
+114667,76327.0289,330214.3559,0,21
+114668,77435.17178,330752.5572,0,21
+114669,78586.96843,330141.4385,0,21
+114670,79456.03786,330455.097,0,21
+114671,80630.0124,330233.5718,0,21
+114672,81700.27377,330306.9606,0,21
+114673,82385.62119,330285.876,0,21
+114674,83918.26426,330205.1367,0,21
+114675,84512.83674,329756.5787,0,21
+114676,85852.50743,330472.1073,0,21
+114677,86950.598,329697.2693,0,21
+114678,87680.74571,330080.3353,0,21
+114679,89160.0967,329862.4568,0,21
+114680,90094.03387,329779.9198,0,21
+114681,91069.6823,329743.9754,0,21
+114682,92383.16299,329935.6595,0,21
+114683,93126.47284,329399.7967,0,21
+114684,94649.71395,329902.4875,0,21
+114685,95511.81866,329520.3132,60.11965954,21
+114686,96609.96006,329656.0437,71.79401359,21
+114687,97961.56299,329394.7235,48.36876253,21
+114688,98687.69525,329562.7731,94.95250608,21
+114689,100368.5295,329568.0692,94.95256828,21
+114690,100819.0103,328937.1508,94.95263048,21
+114691,102640.1783,329476.5252,117.9010547,21
+114692,103542.3069,329065.0867,129.3080372,21
+114693,104691.4583,329355.6472,129.3081505,21
+114694,106090.4236,328792.2847,140.6748283,21
+114695,107258.0087,329194.6206,163.2976204,21
+114696,108500.2132,328660.1046,163.2977985,21
+114697,109748.1964,329010.863,174.5584616,21
+114698,110899.579,328876.2559,185.787709,21
+114699,112283.8934,328501.8803,185.7879376,21
+114700,113423.531,328783.0337,219.3015882,21
+114701,114703.6064,328232.4269,208.1583807,21
+114702,116108.7625,328733.1544,230.4196623,21
+114703,117087.5175,328282.9453,230.4200084,21
+114704,118668.4565,328027.5116,252.5811353,21
+114705,119739.1941,328329.3703,252.5815481,21
+114706,121364.8442,327994.5577,274.6497521,21
+114707,122491.7304,327980.5866,274.6502368,21
+114708,123789.8079,327880.0936,296.6316254,21
+114709,125436.8672,328086.846,296.6321869,21
+114710,126382.0757,327274.4847,318.5319917,21
+114711,128058.7092,328076.1109,318.5326351,21
+114712,129312.9311,327688.5023,387.9427797,21
+114713,130708.7355,327061.9509,410.9939266,21
+114714,131886.6337,327682.3038,455.5338268,21
+114715,133228.8733,327166.0311,432.7452509,21
+114716,131191.926,327226.379,499.8011208,21
+114717,134072.0895,327142.3553,499.8027084,21
+114718,134540.2815,326983.2441,521.4171551,21
+114719,135650.7719,326915.1797,566.103618,21
+114720,136560.1098,326873.8609,565.3855306,21
+114721,180452.0395,382539.8183,3980.025842,21
+114722,182774.8728,385550.9132,30254.0022,21
+114723,183678.7025,386650.3789,18578.53429,21
+114724,185286.9264,387413.9369,21106.90878,21
+114725,186047.5829,387763.0979,21744.20015,21
+114726,187091.5956,389640.4089,22212.02783,21
+114727,187740.2363,390198.1399,27249.9833,21
+114728,189095.815,390866.025,29969.26603,21
+114729,189677.569,392249.7774,28559.07178,21
+114730,190914.3493,392843.6346,29873.64097,21
+114731,191681.8296,393773.7298,30702.66061,21
+114732,192672.0115,398707.2091,31218.98223,21
+114733,193488.2531,399237.2843,31769.24857,21
+114734,194568.7654,399449.8571,32522.03502,21
+114735,195241.7299,401020.9685,32766.70268,21
+114736,196310.9687,401765.4449,33710.43353,21
+114737,197058.5706,402593.0551,33780.24071,21
+114738,197890.2372,403692.7051,34739.58961,21
+114739,198673.389,404337.6212,35074.96797,21
+114740,199798.8421,405270.4808,35601.65163,21
+114741,200317.7133,405964.1264,36303.04399,21
+114742,201157.2485,406538.1295,36796.5351,21
+114743,201877.2781,407834.9823,37864.10517,21
+114744,202082.8552,408015.1838,37690.85319,21
+114745,201673.8796,408910.656,38855.74653,21
+114746,202743.4938,409764.9648,39094.51363,21
+114747,203208.9336,410121.5014,39496.66369,21
+114748,203250.5564,410764.5213,40188.70034,21
+114749,204247.1102,411961.5814,40859.1637,21
+114750,204562.0061,412634.3901,40817.77543,21
+114751,205056.4237,413512.508,41931.31219,21
+114752,205630.2821,414014.525,42079.0657,21
+114753,206270.3929,414802.434,43282.67699,21
+114754,206874.281,415912.5929,43464.74426,21
+114755,207535.1239,416213.9189,44301.94409,21
+114756,208099.1442,416769.2869,44580.78204,21
+114757,209020.2714,417356.4635,45689.95182,21
+114758,209257.1411,418198.6739,45730.1242,21
+114759,210032.3102,419024.1572,46683.55978,21
+114760,210700.5775,419281.0626,46945.43378,21
+114761,211237.5932,420397.7657,47685.18008,21
+114762,211983.1883,420648.2279,48280.76182,21
+114763,212517.1241,421196.5921,48685.54602,21
+114764,213348.0971,422073.6435,49414.16838,21
+114765,213888.9343,422566.0263,49707.18049,21
+114766,214531.4694,423511.1892,50737.57249,21
+114767,215296.0904,423491.1212,50878.18389,21
+114768,215933.2494,424269.5293,51572.59271,21
+114769,216720.4394,425289.4388,52013.97418,21
+114770,217346.6858,425399.3924,52742.02891,21
+114771,218160.3343,426111.7307,53165.41187,21
+114772,218672.1551,426752.6449,53853.14664,21
+114773,219626.0096,427782.4546,54037.38609,21
+114774,220136.9742,427305.4826,55014.96809,21
+114775,220856.5942,428561.3455,55328.34776,21
+114776,221887.852,429260.8073,55848.8482,21
+114777,222378.9883,429069.9465,56608.69422,21
+114778,223208.7653,430412.6536,56677.63002,21
+114779,224065.1818,430639.9252,57614.70751,21
+114780,224692.2378,430953.0857,58138.83282,21
+114781,236898.817,453610.4689,77692.59528,21
+114782,238552.2479,455772.6233,89534.3403,21
+114783,239600.3896,457387.7703,85393.02729,21
+114784,240585.3537,457935.794,88150.47597,21
+114785,242151.0415,459713.6444,89744.13659,21
+114786,242791.3904,460970.9152,90332.30875,21
+114787,244070.4021,461611.357,91854.01338,21
+114788,244680.0594,463641.741,92740.67093,21
+114789,246125.1351,463817.4719,93720.17386,21
+114790,246902.1718,465286.2266,95222.07239,21
+114791,248050.7504,466830.8292,96279.64746,21
+114792,248722.508,467492.7699,96824.9597,21
+114793,249668.3396,468780.7381,98577.14273,21
+114794,250885.9235,469467.7048,99284.79644,21
+114795,251139.3944,470689.2429,100473.5028,21
+114796,252471.713,471681.6406,101395.2617,21
+114797,253009.0467,471822.9555,102547.714,21
+114798,254081.5395,473533.5851,103307.1079,21
+114799,254951.1444,474403.5602,109390.2938,21
+114800,255380.6611,475459.563,108662.4102,21
+114801,256673.8326,476443.0245,110517.6642,21
+114802,257319.0841,477061.5289,112493.7503,21
+114803,258076.3262,478930.3059,113599.6092,21
+114804,258907.8188,478924.9896,115047.4507,21
+114805,259892.0728,480636.843,117060.1419,21
+114806,260294.1399,481244.1463,117665.7182,21
+114807,261322.9149,482419.3137,120247.9821,21
+114808,262124.6716,483186.3052,120572.7452,21
+114809,262915.9091,483986.7843,122618.4287,21
+114810,263571.5566,485146.1005,123841.0413,21
+114811,264486.924,485922.2735,125405.8871,21
+114812,265217.4602,487074.0253,126324.1074,21
+114813,266178.2306,487671.1451,128007.8089,21
+114814,266882.6912,488771.4814,129353.3534,21
+114815,267658.0447,489520.3617,130655.1836,21
+114816,268490.1134,490183.9836,131454.6562,21
+114817,269327.3642,491254.3843,133239.9145,21
+114818,269987.4641,491887.7998,134550.7351,21
+114819,271187.3659,492933.2978,135294.1332,21
+114820,271664.6753,493327.8265,136881.3954,21
+114821,272429.5462,494694.8875,138168.1692,21
+114822,273506.2808,494922.1782,138854.406,21
+114823,273994.9404,496520.313,141060.3707,21
+114824,275026.0023,496491.9292,141263.5286,21
+114825,275848.6551,497854.1172,143194.6626,21
+114826,276410.1575,498484.6699,144050.9312,21
+114827,277503.574,498995.0607,145253.453,21
+114828,278136.866,500332.961,146551.2599,21
+114829,278919.827,500548.4239,147651.0342,21
+114830,280090.9413,501793.342,149037.1657,21
+114831,280459.2535,501869.3183,149959.8036,21
+114832,281630.0112,503276.0954,150937.1131,21
+114833,282346.2163,504061.9111,152267.0043,21
+114834,283070.8457,504417.9205,153773.4527,21
+114835,284010.6547,505307.0323,154340.9671,21
+114836,284647.6761,506024.8132,155796.1172,21
+114837,285534.8887,507132.9563,156993.4053,21
+114838,286486.4792,507134.1289,157829.8078,21
+114839,287020.3692,508838.904,159272.8414,21
+114840,287993.3826,508857.8653,159944.3825,21
+114841,289356.389,508937.1278,161581.4311,21
+114842,290595.8621,509361.5732,161922.4535,21
+114843,291894.9394,510027.4729,163063.1369,21
+114844,293267.3315,509514.1919,164009.3239,21
+114845,294167.8121,509616.5171,165314.7493,21
+114846,295696.8759,510447.4741,165526.8172,21
+114847,296578.0032,509837.8545,167048.9785,21
+114848,298381.0496,510545.7236,167815.2393,21
+114849,304255.1608,510014.8511,168882.0983,21
+114850,306335.4075,510701.4967,169201.2666,21
+114851,307544.2468,510151.8256,170489.3428,21
+114852,309677.829,511375.2275,171976.2093,21
+114853,311025.3949,510171.7792,172168.5729,21
+114854,313778.0517,511160.7246,173259.2803,21
+114855,314718.0098,511101.5491,174175.2051,21
+114856,317013.2957,511057.0852,175227.5932,21
+114857,318904.2057,511549.1831,175939.4718,21
+114858,320442.7119,511702.5709,176751.6806,21
+114859,322080.3182,512156.2539,177884.5085,21
+114860,329931.8205,511944.9491,178499.4417,21
+114861,330513.7828,512374.7729,179149.8234,21
+114862,331789.7781,512332.126,180481.7666,21
+114863,338076.8374,512205.3267,180889.9669,21
+114864,338926.4197,512428.2435,182673.3178,21
+114865,341858.3711,512387.583,182468.3654,21
+114866,343605.5346,512082.6295,183863.0194,21
+114867,346815.1277,511995.2043,184691.2308,21
+114868,348349.9639,511575.0923,185385.8923,21
+114869,351697.0728,512397.4314,186805.0955,21
+114870,353117.3597,512160.3476,186521.8859,21
+114871,356052.6266,512008.8276,188476.5718,21
+114872,358792.9949,511937.3596,188380.5068,21
+114873,360358.0707,512235.9405,189446.0207,21
+114874,363957.8784,512493.3297,189886.4555,21
+114875,365185.7098,511792.8055,190613.6832,21
+114876,367577.1807,511955.6505,191246.2739,21
+114877,370151.2559,512112.8007,191773.5374,21
+114878,372525.9376,511826.7859,192496.059,21
+114879,374622.1247,511927.2185,193155.8993,21
+114880,383902.8542,512016.0618,193605.9266,21
+114881,383394.7222,511690.993,194104.2654,21
+114882,386990.7853,512266.5817,195694.6457,21
+114883,390570.1926,511350.1109,197227.9912,21
+114884,391939.4314,517253.5107,196840.8008,21
+114885,396294.6199,516712.0052,198004.7289,21
+114886,398972.2446,515816.6972,201731.4526,21
+114887,401129.8496,517055.5503,202528.4639,21
+114888,403192.4238,518270.137,202469.9646,21
+114889,407369.1642,517302.9925,204007.1383,21
+114890,409144.0012,518105.5694,204310.1974,21
+114891,412161.137,519505.2959,205040.4621,21
+114892,414329.5173,518468.9346,205732.29,21
+114893,417058.8541,520322.0102,206090.5226,21
+114894,420004.2297,519545.9684,206711.9112,21
+114895,421748.4808,519990.6556,208023.2986,21
+114896,425105.5626,520026.3076,207625.7669,21
+114897,427126.2076,521847.5276,208925.8334,21
+114898,429068.7381,520815.7446,209298.6707,21
+114899,432140.9055,520936.2665,209619.4058,21
+114900,434243.1586,520659.6846,210343.4276,21
+114901,444760.1397,531412.0868,216573.3098,21
+114902,445918.7323,532542.7327,217460.4615,21
+114903,449481.6244,535435.1541,219254.0133,21
+114904,449429.1504,536150.8266,219673.7597,21
+114905,452606.7895,538262.5887,220672.594,21
+114906,452258.6137,538061.9386,221616.4944,21
+114907,455563.299,540015.5929,222831.5964,21
+114908,456349.0105,541340.7083,223296.8454,21
+114909,457312.4889,543130.6552,224332.0899,21
+114910,459500.8103,543319.4052,224826.7892,21
+114911,460126.5607,545464.4662,226306.4651,21
+114912,462020.3735,545596.0205,226676.6375,21
+114913,462909.4577,548103.5266,227925.8116,21
+114914,464927.8919,548373.8805,228027.8765,21
+114915,465717.6456,548950.4018,229500.4737,21
+114916,466238.4305,551878.3299,230095.2577,21
+114917,469035.1539,551301.4268,230670.0328,21
+114918,469114.433,553087.5257,231974.2327,21
+114919,471181.2618,554086.5408,232069.3909,21
+114920,471353.1729,555263.5343,233635.8594,21
+114921,473874.7535,556199.9996,233245.8429,21
+114922,474235.5851,557354.1037,235229.7448,21
+114923,474884.587,558605.8082,235325.2674,21
+114924,476828.047,560119.3062,236184.8184,21
+114925,478450.0796,559374.7157,236953.1388,21
+114926,478040.7431,562431.5782,238276.7556,21
+114927,480151.9397,563218.9764,237313.6843,21
+114928,480583.8643,563382.6055,240397.2084,21
+114929,482359.4657,564925.1656,239189.3363,21
+114930,482481.4357,565926.4735,240778.7326,21
+114931,484223.26,566150.2105,241806.3999,21
+114932,484885.1579,567975.3184,241358.9299,21
+114933,485753.7451,568861.462,243007.3589,21
+114934,487314.4288,570280.878,243559.2546,21
+114935,487513.5877,570116.8468,243611.6178,21
+114936,488596.3647,571899.7856,245275.2118,21
+114937,490474.7114,572937.7797,245359.0791,21
+114938,490699.8065,575489.7758,245957.4116,21
+114939,490874.2976,574558.2531,247258.5941,21
+114940,492756.1716,576772.6507,247198.6836,21
+114941,493401.2665,577363.4447,248339.0699,21
+114942,494001.6793,578834.3352,248778.3517,21
+114943,494771.079,578231.5501,249739.9648,21
+114944,495848.9578,580394.7716,250074.5183,21
+114945,498000.3791,582267.7245,250770.9495,21
+114946,497371.7829,581102.803,251470.0615,21
+114947,499798.0909,582090.719,252040.0077,21
+114948,499173.3816,583300.8545,253187.0228,21
+114949,500973.225,584216.3734,253214.7895,21
+114950,501296.2423,584632.1899,253786.5971,21
+114951,502381.2123,586101.8078,255029.9009,21
+114952,502829.68,587358.2217,255094.6963,21
+114953,503840.4945,587098.8831,256226.7679,21
+114954,504927.9771,588808.0763,256297.7079,21
+114955,504301.3964,589860.1096,257236.2334,21
+114956,507052.5859,590111.1595,258134.9835,21
+114957,505961.3928,591412.0737,257979.258,21
+114958,508085.107,592552.6474,259031.9828,21
+114959,508029.8269,592471.5101,259878.0273,21
+114960,508421.4285,594078.8592,260134.384,21
+114961,509970.3345,594869.9251,260220.1537,21
+114962,511820.3747,595489.3532,261745.1289,21
+114963,512097.0923,596305.2832,260989.6686,21
+114964,512472.855,597481.4616,262206.7206,21
+114965,515117.0897,596516.0956,262277.5674,21
+114966,513718.9925,599053.7098,262554.7128,21
+114967,515843.7235,596811.5839,263067.8472,21
+114968,516507.8458,599988.3663,263498.2314,21
+114969,515902.9922,597720.6567,264053.2368,21
+114970,518363.0555,600372.2672,264638.9906,21
+114971,518853.1226,599559.844,263792.7072,21
+114972,518035.0533,600206.8729,265578.36,21
+114973,520485.0278,601706.05,265627.4223,21
+114974,520328.6059,600258.4879,265627.6384,21
+114975,521601.4697,601480.0079,266568.6745,21
+114976,521586.0565,601981.4352,266360.5787,21
+114977,522616.2782,602491.2495,266725.8009,21
+114978,523328.035,602305.4613,267792.6069,21
+114979,523167.0931,603554.4641,267455.9293,21
+114980,525725.1727,603222.2454,267927.3064,21
+114981,524819.4961,603982.7371,267886.8355,21
+114982,525141.3807,604543.1252,269431.5463,21
+114983,527741.6766,603484.258,268546.623,21
+114984,525896.3402,606153.0324,269628.7071,21
+114985,528435.1259,604940.9006,270245.3397,21
+114986,528827.7066,605177.1741,269748.1576,21
+114987,528184.6526,606017.9875,270678.037,21
+114988,530596.1075,606371.0081,270690.3992,21
+114989,529600.0311,606641.9515,271331.97,21
+114990,531603.9926,607652.1065,271315.8944,21
+114991,530491.5806,606885.8202,272395.3193,21
+114992,531308.0696,607868.2041,271453.8043,21
+114993,532315.0623,608693.5374,272984.6211,21
+114994,532155.0275,608404.0617,272548.3959,21
+114995,534204.8204,608682.0396,273074.1673,21
+114996,532086.7171,609365.868,273703.3788,21
+114997,535374.4628,608890.73,273377.2682,21
+114998,534767.7076,610413.1782,275127.3698,21
+114999,535646.1192,608918.8903,273554.0171,21
+115000,535476.7199,611617.975,275301.032,21
+115001,536326.0622,610258.651,274742.5284,21
+115002,537421.6665,611572.7432,275379.9766,21
+115003,537560.4239,611205.0775,275977.0927,21
+115004,537849.6746,611524.6634,275694.7823,21
+115005,539416.3817,611874.5518,276401.9867,21
+115006,538768.888,613292.8554,276522.9515,21
+115007,539473.6212,611620.9742,277195.4476,21
+115008,540564.8894,614444.2645,276892.571,21
+115009,541071.5179,613262.3073,277843.4324,21
+115010,540946.6222,614505.8648,277440.2403,21
+115011,541917.354,614258.0169,277874.9614,21
+115012,542116.7948,614776.8818,279051.6541,21
+115013,542509.3505,614923.5627,277609.1394,21
+115014,543871.9485,616207.4221,280251.9659,21
+115015,543021.2521,614846.5711,277983.2859,21
+115016,545363.4764,616280.4249,280216.5608,21
+115017,543473.4187,616129.0937,279653.2458,21
+115018,545752.3021,617114.0698,279888.7449,21
+115019,546090.4319,616999.2296,280808.9085,21
+115020,545616.9704,616336.8061,280316.3799,21
+115021,0,0,0,21
+115022,0,0,0,21
+115023,267819.4504,0,0,21
+115024,0,82.46521266,0,21
+115025,0,0,0,21
+115026,0,0,1712061.026,21
+115027,0,0,0,21
+115028,339579.6413,95.6933488,0,21
+115029,0,368557.0131,0,21
+115030,0,0,0,21
+115031,0,0,0,21
+115032,0,0,0,21
+115033,0,328.3519416,0,21
+115034,0,0,0,21
+115035,0,0,0,21
+115036,0,0,0,21
+115037,0,0,0,21
+115038,0,0,0,21
+115039,0,0,0,21
+115040,0,0,0,21
+115041,0,0,0,21
+115042,0,0,0,21
+115043,0,0,0,21
+115044,0,0,0,21
+115045,0,0,0,21
+115046,0,0,0,21
+115047,0,0,0,21
+115048,0,0,0,21
+115049,0,0,0,21
+115050,0,0,0,21
+115051,0,0,0,21
+115052,0,0,0,21
+115053,0,0,0,21
+115054,0,0,0,21
+115055,0,0,0,21
+115056,0,0,0,21
+115057,0,0,0,21
+115058,0,0,0,21
+115059,0,0,0,21
+115060,0,0,0,21
+115061,0,0,1621975.179,21
+115062,0,0,0,21
+115063,0,0,0,21
+115064,339567.8497,0,0,21
+115065,0,368540.5274,0,21
+115066,0,0,0,21
+115067,0,0,0,21
+115068,0,0,0,21
+115069,0,0,0,21
+115070,0,0,0,21
+115071,0,0,0,21
+115072,0,0,0,21
+115073,0,0,0,21
+115074,0,0,0,21
+115075,0,0,0,21
+115076,0,0,0,21
+115077,0,0,0,21
+115078,0,0,0,21
+115079,0,0,0,21
+115080,0,0,0,15.6
+115081,0,0,0,15.6
+115082,0,0,0,15.6
+115083,0,0,0,15.6
+115084,0,0,0,15.6
+115085,0,0,0,15.6
+115086,0,0,0,15.6
+115087,0,0,0,15.6
+115088,0,0,0,15.6
+115089,0,0,0,15.6
+115090,0,0,0,15.6
+115091,0,0,0,15.6
+115092,0,0,0,15.6
+115093,0,0,0,15.6
+115094,0,0,0,15.6
+115095,0,0,0,15.6
+115096,0,0,1539754.043,15.6
+115097,0,0,0,15.6
+115098,0,0,0,15.6
+115099,0,0,0,15.6
+115100,339556.4002,0,0,15.6
+115101,0,368523.0187,0,15.6
+115102,0,0,0,15.6
+115103,0,0,0,15.6
+115104,0,0,0,15.6
+115105,0,0,0,15.6
+115106,0,0,0,15.6
+115107,0,0,0,15.6
+115108,0,0,0,15.6
+115109,0,0,0,15.6
+115110,0,0,0,15.6
+115111,0,0,0,15.6
+115112,0,0,0,15.6
+115113,0,0,0,15.6
+115114,0,0,0,15.6
+115115,0,0,0,15.6
+115116,0,0,0,15.6
+115117,0,0,0,15.6
+115118,0,0,0,15.6
+115119,0,0,0,15.6
+115120,0,0,0,15.6
+115121,0,0,0,15.6
+115122,0,0,0,15.6
+115123,0,0,0,15.6
+115124,0,0,0,15.6
+115125,0,0,0,15.6
+115126,0,0,0,15.6
+115127,0,0,0,15.6
+115128,0,0,0,15.6
+115129,0,0,0,15.6
+115130,0,0,0,15.6
+115131,0,0,1576621.514,15.6
+115132,0,0,0,15.6
+115133,0,0,0,15.6
+115134,0,0,0,15.6
+115135,0,0,0,15.6
+115136,0,0,0,15.6
+115137,339545.6888,368504.5186,0,15.6
+115138,0,0,0,15.6
+115139,0,0,0,15.6
+115140,0,0,0,15.6
+115141,0,0,0,15.6
+115142,0,0,0,15.6
+115143,0,0,0,15.6
+115144,0,0,0,15.6
+115145,0,0,0,15.6
+115146,0,0,0,15.6
+115147,0,0,0,15.6
+115148,0,0,0,15.6
+115149,0,0,0,15.6
+115150,0,0,0,15.6
+115151,0,0,0,15.6
+115152,0,0,0,15.6
+115153,0,0,0,15.6
+115154,0,0,0,15.6
+115155,0,0,0,15.6
+115156,0,0,0,15.6
+115157,0,0,0,15.6
+115158,0,0,0,15.6
+115159,0,0,0,15.6
+115160,0,0,0,15.6
+115161,0,0,0,15.6
+115162,0,0,0,15.6
+115163,0,0,0,15.6
+115164,0,0,0,15.6
+115165,0,0,0,15.6
+115166,0,0,1489697.023,15.6
+115167,0,0,0,15.6
+115168,0,0,0,15.6
+115169,0,0,0,15.6
+115170,0,0,0,15.6
+115171,0,0,0,15.6
+115172,0,0,0,15.6
+115173,0,0,0,15.6
+115174,339555.7841,368482.9514,0,15.6
+115175,0,0,0,15.6
+115176,0,0,0,15.6
+115177,0,0,0,15.6
+115178,0,0,0,15.6
+115179,0,0,0,15.6
+115180,0,0,0,15.6
+115181,0,0,0,15.6
+115182,0,0,0,15.6
+115183,0,0,0,15.6
+115184,0,0,0,15.6
+115185,0,0,0,15.6
+115186,0,0,0,15.6
+115187,0,0,0,15.6
+115188,0,0,0,15.6
+115189,0,0,0,15.6
+115190,0,0,0,15.6
+115191,0,0,0,15.6
+115192,0,0,0,15.6
+115193,0,0,0,15.6
+115194,0,0,0,15.6
+115195,0,0,0,15.6
+115196,0,0,0,15.6
+115197,0,0,0,15.6
+115198,0,0,0,15.6
+115199,0,0,0,15.6
+115200,0,0,0,15.6
+115201,0,0,1410640.015,15.6
+115202,0,0,0,15.6
+115203,0,0,0,15.6
+115204,0,0,0,15.6
+115205,0,0,0,15.6
+115206,0,0,0,15.6
+115207,0,0,0,15.6
+115208,0,0,0,15.6
+115209,0,0,0,15.6
+115210,0,0,0,15.6
+115211,339557.8769,368465.2721,0,15.6
+115212,0,0,0,15.6
+115213,0,0,0,15.6
+115214,0,0,0,15.6
+115215,0,0,0,15.6
+115216,0,0,0,15.6
+115217,0,0,0,15.6
+115218,0,0,0,15.6
+115219,0,0,0,15.6
+115220,0,0,0,15.6
+115221,0,0,0,15.6
+115222,0,0,0,15.6
+115223,0,0,0,15.6
+115224,0,0,0,15.6
+115225,0,0,0,15.6
+115226,0,0,0,15.6
+115227,0,0,0,15.6
+115228,0,0,0,15.6
+115229,0,0,0,15.6
+115230,0,0,0,15.6
+115231,0,0,0,15.6
+115232,0,0,0,15.6
+115233,0,0,0,15.6
+115234,0,0,0,15.6
+115235,0,0,0,15.6
+115236,0,0,1337874.707,15.6
+115237,0,0,0,15.6
+115238,0,0,0,15.6
+115239,0,0,0,15.6
+115240,0,0,0,15.6
+115241,0,0,0,15.6
+115242,0,0,0,15.6
+115243,0,0,0,15.6
+115244,0,0,0,15.6
+115245,0,0,0,15.6
+115246,0,0,0,15.6
+115247,0,0,0,15.6
+115248,339520.0596,368457.596,0,15.6
+115249,0,0,0,15.6
+115250,0,0,0,15.6
+115251,0,0,0,15.6
+115252,0,0,0,15.6
+115253,0,0,0,15.6
+115254,0,0,0,15.6
+115255,0,0,0,15.6
+115256,0,0,0,15.6
+115257,0,0,0,15.6
+115258,0,0,0,15.6
+115259,0,0,0,15.6
+115260,0,0,0,15.6
+115261,0,0,0,15.6
+115262,0,0,0,15.6
+115263,0,0,0,15.6
+115264,0,0,0,15.6
+115265,0,0,0,15.6
+115266,0,0,0,15.6
+115267,0,0,0,15.6
+115268,0,0,0,15.6
+115269,0,0,0,15.6
+115270,0,0,0,15.6
+115271,0,0,1271712.657,15.6
+115272,0,0,0,15.6
+115273,0,0,0,15.6
+115274,0,0,0,15.6
+115275,0,0,0,15.6
+115276,0,0,0,15.6
+115277,0,0,0,15.6
+115278,0,0,0,15.6
+115279,0,0,0,15.6
+115280,0,0,0,15.6
+115281,0,0,0,15.6
+115282,0,0,0,15.6
+115283,0,0,0,15.6
+115284,0,0,0,15.6
+115285,339512.4194,368446.3798,0,15.6
+115286,0,0,0,15.6
+115287,0,0,0,15.6
+115288,0,0,0,15.6
+115289,0,0,0,15.6
+115290,0,0,0,15.6
+115291,0,0,0,15.6
+115292,0,0,0,15.6
+115293,0,0,0,15.6
+115294,0,0,0,15.6
+115295,0,0,0,15.6
+115296,0,0,0,15.6
+115297,0,0,0,15.6
+115298,0,0,0,15.6
+115299,0,0,0,15.6
+115300,0,0,0,15.6
+115301,0,0,0,15.6
+115302,0,0,0,15.6
+115303,0,0,0,15.6
+115304,0,0,0,15.6
+115305,0,0,0,15.6
+115306,0,0,1212842.03,15.6
+115307,0,0,0,15.6
+115308,0,0,0,15.6
+115309,0,0,0,15.6
+115310,0,0,0,15.6
+115311,0,0,0,15.6
+115312,0,0,0,15.6
+115313,0,0,0,15.6
+115314,0,0,0,15.6
+115315,0,0,0,15.6
+115316,0,0,0,15.6
+115317,0,0,0,15.6
+115318,0,0,0,15.6
+115319,0,0,0,15.6
+115320,0,0,0,15.6
+115321,0,0,0,15.6
+115322,339527.8652,368432.8529,483387.6646,15.6
+115323,0,0,0,15.6
+115324,0,0,0,15.6
+115325,0,0,0,15.6
+115326,0,0,0,15.6
+115327,0,0,0,15.6
+115328,0,0,0,15.6
+115329,0,0,0,15.6
+115330,0,0,0,15.6
+115331,0,0,0,15.6
+115332,0,0,0,15.6
+115333,0,0,0,15.6
+115334,0,0,0,15.6
+115335,0,0,0,15.6
+115336,0,0,0,15.6
+115337,0,0,0,15.6
+115338,0,0,0,15.6
+115339,0,0,0,15.6
+115340,0,0,0,15.6
+115341,0,0,1393312.454,15.6
+115342,0,0,0,15.6
+115343,0,0,0,15.6
+115344,0,0,0,15.6
+115345,0,0,0,15.6
+115346,0,0,0,15.6
+115347,0,0,0,15.6
+115348,0,0,0,15.6
+115349,0,0,0,15.6
+115350,0,0,0,15.6
+115351,0,0,0,15.6
+115352,0,0,0,15.6
+115353,0,0,0,15.6
+115354,0,0,0,15.6
+115355,0,0,0,15.6
+115356,0,0,0,15.6
+115357,0,0,0,15.6
+115358,0,0,0,15.6
+115359,0,368426.8538,0,15.6
+115360,339562.9998,0,0,15.6
+115361,0,0,0,15.6
+115362,0,0,0,15.6
+115363,0,0,0,15.6
+115364,0,0,0,15.6
+115365,0,0,0,15.6
+115366,0,0,0,15.6
+115367,0,0,0,15.6
+115368,0,0,0,15.6
+115369,0,0,0,15.6
+115370,0,0,143219.4437,15.6
+115371,0,0,281894.4331,15.6
+115372,0,0,280.3588778,15.6
+115373,0,0,271866.3763,15.6
+115374,0,0,38328.81552,15.6
+115375,0,0,71075.53103,15.6
+115376,0,0,74590.73338,15.6
+115377,0,0,1229371.146,15.6
+115378,0,0,782.9924415,15.6
+115379,0,0,238258.453,15.6
+115380,0,0,114602.6851,15.6
+115381,46879.61386,114328.9598,188096.5846,15.6
+115382,10765.60939,36334.0818,274485.9157,15.6
+115383,6240.404874,6318.189109,54501.62848,15.6
+115384,10801.49121,28080.19141,100004.6473,15.6
+115385,16507.38822,27816.55749,106406.9056,15.6
+115386,11905.11222,23565.69021,95715.47633,15.6
+115387,13047.80201,23982.61184,96012.30669,15.6
+115388,13189.87911,23833.19468,95563.45887,15.6
+115389,13274.77845,23703.79963,472980.3392,15.6
+115390,13393.19581,23635.32199,54082.42234,15.6
+115391,13469.56595,23402.63523,188240.1023,15.6
+115392,13615.59575,23371.67398,48923.18829,15.6
+115393,13682.09552,23213.04347,195842.7076,15.6
+115394,13834.1999,23086.46895,75655.2257,15.6
+115395,13891.23609,22951.16258,100484.51,15.6
+115396,14030.88091,391255.8414,97310.94774,15.6
+115397,14131.69033,22751.72178,96252.54093,15.6
+115398,353816.975,22631.50254,95693.25874,15.6
+115399,14358.78882,22501.46174,95265.41081,15.6
+115400,14465.90563,22393.90881,94875.0172,15.6
+115401,14588.23742,22338.62583,94540.93952,15.6
+115402,14676.14714,22170.07669,94197.37456,15.6
+115403,14797.54631,22096.19034,93907.4962,15.6
+115404,14934.82417,21974.99692,93475.85154,15.6
+115405,15026.95624,21918.66559,93307.77296,15.6
+115406,15136.5702,21763.53473,92836.79962,15.6
+115407,15266.11389,21700.86575,92599.56872,15.6
+115408,15405.1957,21550.71439,92342.37161,15.6
+115409,15476.02396,21487.53987,91967.87034,15.6
+115410,15627.03725,21402.90551,91783.56161,15.6
+115411,0,0,857425.3963,15.6
+115412,0,0,0,15.6
+115413,0,0,47856.92618,15.6
+115414,0,0,191642.2898,15.6
+115415,0,0,71993.49955,15.6
+115416,51422.86411,72824.57692,83541.10421,15.6
+115417,3621.863767,0,95064.34817,15.6
+115418,14084.94688,16076.00811,88949.25849,15.6
+115419,20254.81052,26586.20336,88937.38856,15.6
+115420,16435.50743,19446.74299,88835.24679,15.6
+115421,17020.80885,20356.83374,88722.99539,15.6
+115422,17182.75103,20342.1647,88632.91712,15.6
+115423,17285.96079,20196.26839,88441.56279,15.6
+115424,17460.35621,20150.41208,88402.94305,15.6
+115425,17500.51919,20025.05073,88227.10497,15.6
+115426,17682.37697,19943.47448,88116.83713,15.6
+115427,17716.42672,19857.26497,88058.12445,15.6
+115428,17854.64615,19745.14501,87908.91614,15.6
+115429,17949.42927,19632.06795,87819.46458,15.6
+115430,18087.95254,19592.54624,87703.72618,15.6
+115431,18196.99316,387808.0054,87621.18496,15.6
+115432,18345.72216,19380.75835,87479.94421,15.6
+115433,358061.5078,19262.8387,87411.29808,15.6
+115434,18543.95003,19177.70355,87339.97895,15.6
+115435,18724.03046,19087.03414,87176.43761,15.6
+115436,18826.62417,18970.48021,87114.93733,15.6
+115437,18906.28128,18882.45403,87055.85733,15.6
+115438,19095.87445,18754.88472,86916.40521,15.6
+115439,19179.60915,18666.40761,86924.52659,15.6
+115440,19338.23939,18484.87951,86746.24374,17.8
+115441,1028454.931,1408199.124,1553967.34,17.8
+115442,779663.5467,580322.7215,1663894.598,17.8
+115443,315391.1927,188174.694,1172385.354,17.8
+115444,359495.9295,345467.2381,796174.7085,17.8
+115445,292076.7729,391574.0382,1350116.872,17.8
+115446,279313.1838,273536.1386,801556.2506,17.8
+115447,256329.6634,274824.6672,673523.7872,17.8
+115448,359007.9038,379849.2116,646696.7927,17.8
+115449,321376.6531,322319.2279,670601.8811,17.8
+115450,309468.7925,327883.2889,674171.159,17.8
+115451,311478.8986,332526.3676,679215.5522,17.8
+115452,312960.0439,331413.9786,688498.8776,17.8
+115453,309697.8461,330854.472,696388.7905,17.8
+115454,308969.0209,331743.5651,700744.3749,17.8
+115455,308144.4967,331931.7578,708422.6607,17.8
+115456,306876.4929,332029.2697,714171.7649,17.8
+115457,306629.8631,332916.8381,720181.4477,17.8
+115458,305487.1846,333687.5543,726453.2662,17.8
+115459,305101.3858,333193.231,731148.0637,17.8
+115460,303804.4895,334503.1026,737810.4575,17.8
+115461,303899.706,335056.3789,741379.9438,17.8
+115462,302297.147,335206.7242,749055.5626,17.8
+115463,302247.4507,336218.0792,752754.9484,17.8
+115464,301387.3749,336316.433,756514.0566,17.8
+115465,300694.8221,337383.2739,763325.4416,17.8
+115466,300531.0083,706078.7717,766996.7479,17.8
+115467,299307.5783,338773.1931,771851.8451,17.8
+115468,638624.2074,338896.8846,776908.4861,17.8
+115469,298359.7913,340210.3755,779359.7368,17.8
+115470,297700.4008,339988.6433,784722.6792,17.8
+115471,55518.38667,65279.27904,191352.6014,17.8
+115472,55191.80476,65324.4527,177092.6573,17.8
+115473,55087.72157,65279.21067,176169.2869,17.8
+115474,55020.66865,65248.3744,1931936.791,17.8
+115475,771789.9549,855813.2015,1126746.183,17.8
+115476,231691.8709,137480.436,378472.0717,17.8
+115477,228827.9144,352524.515,921584.4003,17.8
+115478,287632.1342,306572.3709,834854.8048,17.8
+115479,239635.2596,279938.4244,1752518.82,17.8
+115480,327594.2614,399005.8732,726801.1697,17.8
+115481,304781.8778,338581.3102,757785.4555,17.8
+115482,290799.2398,347099.4687,751954.4573,17.8
+115483,299754.6857,353468.8061,760516.8944,17.8
+115484,297515.562,350729.0389,768086.6638,17.8
+115485,296324.2116,351987.1442,771932.4357,17.8
+115486,296245.0097,352993.7695,774662.1451,17.8
+115487,295464.8359,353462.8469,780256.7174,17.8
+115488,295317.0318,354358.1933,784782.7148,17.8
+115489,294506.8054,355178.4716,787667.5357,17.8
+115490,294314.4659,355670.1721,794103.3996,17.8
+115491,293713.7922,356747.4481,795160.1466,17.8
+115492,293442.4093,357851.1457,801484.4931,17.8
+115493,292794.1024,358339.1945,802362.2057,17.8
+115494,292499.9264,359082.1437,809378.1493,17.8
+115495,292067.1711,360361.387,809664.9467,17.8
+115496,291806.3382,360817.9438,814853.0649,17.8
+115497,290992.9667,361724.5458,819013.2133,17.8
+115498,290916.7063,362733.9919,819886.0014,17.8
+115499,290243.4182,378325.7052,824912.6184,17.8
+115500,290111.8173,372041.278,827789.4055,20
+115501,2613727.949,2735736.424,2619408.957,20
+115502,664150.9798,444216.8799,1622363.27,20
+115503,218800.8667,410378.7479,348445.3715,20
+115504,344036.4887,480358.5741,794959.5213,20
+115505,527790.0181,495104.2862,753027.1654,20
+115506,496677.8572,528752.9191,730749.968,20
+115507,442102.6887,565407.8245,710619.1156,20
+115508,462504.1756,520497.3554,716989.9766,20
+115509,461312.3449,536448.2186,720204.1583,20
+115510,461637.0318,535494.8234,721667.6495,20
+115511,458635.1567,535139.7511,723524.0448,20
+115512,459037.4714,534460.2341,725317.3816,20
+115513,458312.7051,532494.9445,727537.9751,20
+115514,456619.6021,533628.4002,728733.7511,20
+115515,456821.9276,530794.3767,731446.3643,20
+115516,455326.8799,531718.8559,733523.8883,20
+115517,455216.7783,529540.5948,734580.3691,20
+115518,454098.9378,531052.7521,737594.2528,20
+115519,453694.4767,527999.0486,739167.6488,20
+115520,453761.8714,528517.9047,740740.5324,20
+115521,451702.1282,528385.1885,743114.8847,20
+115522,452357.0337,527385.2204,744357.5818,20
+115523,452034.6901,526945.8323,746631.743,20
+115524,450485.8628,526162.0303,748755.3188,20
+115525,450623.9337,526528.6278,749436.3903,20
+115526,450028.1177,525364.5089,752234.0682,20
+115527,449732.0897,524718.0994,753715.054,20
+115528,449141.7463,524731.0368,755024.6394,20
+115529,448335.6316,524624.0445,757115.437,20
+115530,448759.8843,523102.4849,758706.1237,20
+115531,447059.3103,523954.3355,756745.7061,20
+115532,447962.9694,522516.7334,758137.7568,20
+115533,447264.3495,522715.5272,759693.5276,20
+115534,446510.7867,522384.8617,761956.6554,20
+115535,446122.2288,521225.864,762509.0966,20
+115536,446594.7364,522678.631,764355.0089,20
+115537,445404.1054,520019.5583,766347.0072,20
+115538,445453.0669,521195.8373,766765.7594,20
+115539,445145.6028,520859.7295,768711.9508,20
+115540,444679.7911,519858.1978,770008.1956,20
+115541,444151.7538,519566.6639,771706.8986,20
+115542,444826.0885,519297.6259,772809.5327,20
+115543,443753.6143,519512.4246,774356.542,20
+115544,443163.6458,519098.2996,775057.5921,20
+115545,444652.5292,517861.7118,776348.8196,20
+115546,443240.4736,518203.8566,778722.2954,20
+115547,443119.0184,518375.4467,778896.6493,20
+115548,443436.4345,517249.5684,780144.1944,20
+115549,442777.1821,517884.0705,782432.7622,20
+115550,442983.0178,515610.3204,782308.4969,20
+115551,441943.1501,517379.7435,785194.2887,20
+115552,442008.7915,515946.7561,783957.6086,20
+115553,442387.0215,515953.4301,787555.5461,20
+115554,441406.3366,516152.7755,786916.1088,20
+115555,440947.4022,515379.6892,789750.5993,20
+115556,441750.276,514948.87,788389.4803,20
+115557,440749.0577,513636.2041,792038.8851,20
+115558,441218.9317,514646.4519,792054.1409,20
+115559,440030.6737,513482.3369,793116.5385,20
+115560,441306.2886,512924.0995,794699.3799,21
+115561,433511.2369,863383.5257,768546.1422,21
+115562,428635.7718,860367.0996,767605.9156,21
+115563,427853.0346,858729.9882,767785.3358,21
+115564,426558.7121,858124.1035,766381.0243,21
+115565,425085.249,858204.262,769873.3413,21
+115566,423939.2949,858721.7644,768426.5473,21
+115567,423253.9829,857098.2492,769560.9557,21
+115568,422622.5409,858351.7381,770616.9624,21
+115569,420664.8364,857731.726,770625.5401,21
+115570,420669.7283,857314.5382,771454.0401,21
+115571,419785.1007,857459.697,771560.3393,21
+115572,418397.4746,858407.7419,772339.9133,21
+115573,417756.3922,857593.5975,774133.236,21
+115574,417032.6337,857002.7604,773136.4279,21
+115575,416435.1545,858647.0811,774983.7317,21
+115576,415146.5826,857251.7905,774887.2902,21
+115577,414336.6799,857733.9166,775095.6249,21
+115578,414860.523,858176.2731,777252.4746,21
+115579,412828.7512,857872.3904,776474.0525,21
+115580,412202.3354,858767.6713,777111.5402,21
+115581,410361.1392,857949.9597,779084.4645,21
+115582,409149.277,858398.775,778197.9213,21
+115583,408031.0264,858365.3645,779569.768,21
+115584,407736.8222,859025.044,780931.4173,21
+115585,407636.9784,859140.3412,780187.3574,21
+115586,404621.2952,859104.0777,781552.4802,21
+115587,406133.035,859519.8128,782383.0677,21
+115588,404449.5488,859782.394,783061.7032,21
+115589,403501.4304,859338.4345,782927.9309,21
+115590,402645.084,860188.1091,784639.5123,21
+115591,400740.0058,859615.3947,784635.5686,21
+115592,399906.877,861524.7284,785372.1987,21
+115593,396822.0283,860019.0557,786293.8832,21
+115594,397558.4786,861329.0569,786713.8105,21
+115595,394242.7829,860803.1835,787023.3255,21
+115596,393239.3856,861660.326,788778.554,21
+115597,392522.9795,861817.5892,787217.981,21
+115598,389920.7792,862149.6071,791764.5133,21
+115599,388940.0503,862366.1927,788413.9676,21
+115600,388181.2873,862329.6268,790619.7609,21
+115601,386117.0006,862711.9626,791490.1629,21
+115602,385359.0181,863855.8548,792341.539,21
+115603,382127.5993,863075.1201,791839.0106,21
+115604,381311.7004,863449.7634,789611.0357,21
+115605,379079.3589,864208.8746,788103.7642,21
+115606,378033.2827,864854.3912,788981.9418,21
+115607,375444.8925,864117.5968,789139.231,21
+115608,375378.5346,865540.5808,789939.8874,21
+115609,373504.8048,864715.4516,789195.6165,21
+115610,372923.2916,866213.8718,790321.399,21
+115611,371990.0647,865707.8517,790264.2199,21
+115612,370069.5646,866497.2127,786620.3818,21
+115613,369521.3049,866755.1373,785607.1285,21
+115614,367388.6495,866378.1499,787158.649,21
+115615,367912.7456,867904.2232,785946.0651,21
+115616,366156.9262,863800.7527,786887.4171,21
+115617,364522.9868,861724.3,787220.9807,21
+115618,364106.7986,863854.1665,787000.7394,21
+115619,361885.9536,861772.9634,787442.9056,21
+115620,362269.5364,863466.0763,786984.8902,21
+115621,190382.3019,705239.8231,595526.48,21
+115622,184860.1575,700281.6127,585284.3017,21
+115623,182845.8995,699604.2468,584173.3472,21
+115624,180729.9371,697653.4391,581827.3003,21
+115625,178765.6027,696829.4414,580586.2033,21
+115626,177185.5541,695677.2108,578066.2796,21
+115627,175078.726,694087.2525,576890.2192,21
+115628,173843.5594,693252.9557,574608.0996,21
+115629,170453.6918,691945.3469,573401.5777,21
+115630,169412.9946,691172.1939,571700.2611,21
+115631,167274.5711,690051.7323,569410.8419,21
+115632,165948.9445,688429.3198,568718.4354,21
+115633,164318.0501,688403.6712,565930.7433,21
+115634,162618.0944,686838.2171,565867.8994,21
+115635,161321.6138,685782.8653,563134.8018,21
+115636,159477.6303,668929.6888,561756.5147,21
+115637,158414.4877,665174.9165,561246.4081,21
+115638,156066.1034,662025.2363,558858.0977,21
+115639,155166.614,659769.9557,557981.3216,21
+115640,153439.8027,657779.8407,556421.6876,21
+115641,151753.4364,655186.3906,554226.7993,21
+115642,150189.3259,652641.6983,554433.3671,21
+115643,148664.8756,651082.0764,552206.9249,21
+115644,146955.5155,648612.1258,551124.2463,21
+115645,145504.0643,646707.2548,549488.2894,21
+115646,143694.7065,644775.5939,548936.6564,21
+115647,142380.9947,642677.7225,547481.4052,21
+115648,140276.1634,641206.5637,545774.0912,21
+115649,139266.2592,639094.9553,545106.0723,21
+115650,137412.8818,637901.2729,543934.6041,21
+115651,136135.2409,635185.5774,542300.0502,21
+115652,134068.7994,634856.7305,542324.1786,21
+115653,133539.1923,632619.9221,540157.9423,21
+115654,131503.9353,631410.0281,540056.4283,21
+115655,130151.4131,629442.1433,539096.0631,21
+115656,129035.8398,628280.6796,537157.8503,21
+115657,127205.9317,627038.1828,537460.2311,21
+115658,126305.4524,625257.0331,536037.7438,21
+115659,124428.8767,623893.9072,534488.3287,21
+115660,123245.4339,622404.8547,534712.0051,21
+115661,122212.9602,620922.0652,532897.9784,21
+115662,120372.6626,619599.0536,532536.8313,21
+115663,119174.5599,618066.9714,531514.0474,21
+115664,118076.495,616872.6435,530381.3161,21
+115665,116704.1031,615574.6448,530154.0778,21
+115666,114983.4303,613975.6433,528921.8621,21
+115667,114812.7068,613464.3163,527817.2379,21
+115668,113611.477,611223.5333,527382.9947,21
+115669,113386.2151,610789.0996,525919.5391,21
+115670,112223.7848,608733.6524,525802.8375,21
+115671,111930.6359,603440.3703,524960.9021,21
+115672,110879.8749,602329.4022,523823.4945,21
+115673,110409.493,601750.5949,523540.4412,21
+115674,109520.9226,601062.0913,521988.2634,21
+115675,108718.7297,600663.2874,521328.4283,21
+115676,108259.3556,599676.6016,521134.9524,21
+115677,107317.4789,599595.5883,519649.5586,21
+115678,106657.565,598435.0691,519335.0547,21
+115679,105711.3558,597803.5848,518060.5208,21
+115680,105457.4939,597309.6064,517354.3802,21
+115681,104046.5163,594665.3019,517849.7952,21
+115682,103072.6195,591146.77,519330.7848,21
+115683,102269.7344,589355.9891,519326.7543,21
+115684,101046.7381,585504.6411,520049.5732,21
+115685,100021.504,583318.3235,520399.1187,21
+115686,99104.31559,579982.9997,521576.9539,21
+115687,97937.45471,577507.0877,522238.8423,21
+115688,97243.28794,574733.6404,523238.5232,21
+115689,96156.32028,571797.9185,523177.8976,21
+115690,95157.38958,569104.3796,524511.0166,21
+115691,94414.36982,566014.0629,524265.911,21
+115692,93632.28564,563274.5589,526408.5076,21
+115693,92527.84405,560837.9315,526075.7275,21
+115694,91502.01621,557167.5116,527180.8124,21
+115695,90705.91646,555060.3897,527773.9718,21
+115696,89694.757,551729.3427,528393.4132,21
+115697,88996.01453,549020.1515,529589.0306,21
+115698,87699.68644,546500.3523,530126.5577,21
+115699,87019.59059,542926.4576,530148.8356,21
+115700,86095.45619,540435.4425,531928.6563,21
+115701,85123.84622,537674.8528,531965.5538,21
+115702,84349.99931,533866.2375,533432.1489,21
+115703,83361.39152,531741.3173,532894.5307,21
+115704,82439.07676,528657.275,535393.2475,21
+115705,81668.15683,525207.5025,534155.6036,21
+115706,80707.89858,522267.6858,536994.5823,21
+115707,79753.46718,519505.4453,535955.6951,21
+115708,78916.70684,515979.2533,537568.5541,21
+115709,77758.906,513111.76,538098.9779,21
+115710,76941.4811,510089.8889,538796.5946,21
+115711,76024.62309,506542.8811,540383.0296,21
+115712,75069.2426,504138.6732,539363.8445,21
+115713,74054.99032,500925.034,541093.773,21
+115714,73432.26512,497660.068,541364.7543,21
+115715,72146.95921,495043.1843,542081.0377,21
+115716,71575.48546,491040.8026,542326.6003,21
+115717,70287.17132,489146.3551,543737.6643,21
+115718,69863.71338,485425.6541,543139.8165,21
+115719,68390.47551,482432.9727,545048.137,21
+115720,67764.33443,479384.0575,544675.82,21
+115721,66949.11091,476189.5286,545475.1162,21
+115722,65771.46132,473243.4443,546531.7535,21
+115723,65347.01857,469727.4124,546823.8315,21
+115724,63967.81625,467177.6008,547106.5816,21
+115725,63435.90728,463690.1699,547641.0614,21
+115726,62336.66918,460529.0722,549285.0663,21
+115727,61560.94371,457564.73,548724.7816,21
+115728,60830.92546,454463.9319,549229.9978,21
+115729,59890.78733,450881.6322,550465.2582,21
+115730,59032.43536,448204.6855,550408.0897,21
+115731,59199.36824,444874.7671,551505.9033,21
+115732,58584.86376,441487.4239,551355.2374,21
+115733,58000.41714,438346.7949,552392.0511,21
+115734,56876.00965,435267.5933,553219.9795,21
+115735,56458.38585,432128.4016,552766.1061,21
+115736,55544.92482,428674.0221,554469.5603,21
+115737,55029.0277,426133.3815,554150.9199,21
+115738,54826.61118,422077.376,555023.8472,21
+115739,54314.87892,419413.2211,555236.4206,21
+115740,54049.60306,416130.2593,555995.3539,21
+115741,52693.68372,410478.5284,566406.9578,21
+115742,52492.86745,406162.9087,565628.8402,21
+115743,52068.00968,402237.7056,564541.1001,21
+115744,51737.35285,398315.3093,563718.0661,21
+115745,51271.81061,393885.483,562718.8983,21
+115746,51125.83519,390113.2093,561849.4667,21
+115747,50616.15271,385762.6851,560567.3891,21
+115748,50305.29729,381835.6019,560487.8783,21
+115749,50033.79488,377614.9525,558512.7049,21
+115750,49538.47378,373412.0917,558063.7869,21
+115751,49445.75816,369480.2345,557075.3095,21
+115752,48912.50223,364903.1114,556191.4635,21
+115753,48615.33333,361316.7869,554723.6268,21
+115754,48313.97389,357046.3185,554412.8848,21
+115755,48009.0813,352694.3939,552982.0376,21
+115756,47686.65257,348789.9918,552485.0352,21
+115757,47512.25706,344211.7277,551272.6389,21
+115758,47251.38412,340419.021,550161.1587,21
+115759,46930.34762,336170.6853,549701.1862,21
+115760,46808.56502,332195.9628,548143.5146,21
+115761,46144.43814,327407.2902,547714.7948,21
+115762,46237.18518,323856.0857,546558.6008,21
+115763,45795.71414,319433.8782,545501.0101,21
+115764,45487.05479,315322.2465,544724.9433,21
+115765,45105.01828,311706.6021,543559.2604,21
+115766,45156.86649,308539.3376,542726.3849,21
+115767,44456.3908,305346.9415,541613.125,21
+115768,44479.64792,302266.1775,540943.0117,21
+115769,44095.18222,299344.5542,540234.5984,21
+115770,43817.36015,295898.8875,538579.9537,21
+115771,43497.83966,293015.4081,538188.5098,21
+115772,43067.60402,289770.0246,537160.4243,21
+115773,42590.56437,287059.0876,536597.7833,21
+115774,42445.50988,283687.5676,535633.7925,21
+115775,41972.35787,280924.7542,534294.7179,21
+115776,41338.76804,277731.211,534649.5116,21
+115777,41356.59722,274726.3572,533009.2445,21
+115778,40637.4991,271777.3264,532308.3892,21
+115779,40237.84449,268646.4361,531619.6881,21
+115780,40003.08109,265488.4154,530350.7758,21
+115781,39421.14942,262581.2783,530683.4565,21
+115782,39152.36686,259697.8726,529023.0267,21
+115783,38756.00315,256192.9432,528568.8062,21
+115784,38452.08401,253682.811,527189.8846,21
+115785,38081.22633,250336.8337,527436.0704,21
+115786,37776.0012,247347.6805,525891.6803,21
+115787,37345.61658,244281.3331,525452.1133,21
+115788,37119.67157,241214.0971,524208.5608,21
+115789,36871.1852,238329.1881,523798.6062,21
+115790,36366.81175,234977.2944,523369.3134,21
+115791,36329.41763,232576.3281,522071.3974,21
+115792,36129.18116,229237.9936,521473.0874,21
+115793,35592.44144,226585.1807,520697.7438,21
+115794,35563.18569,223436.7783,520108.5127,21
+115795,35286.9359,220547.1858,519343.3002,21
+115796,34926.11577,217650.1132,518327.8304,21
+115797,34699.53563,214730.8285,517505.745,21
+115798,34439.0165,211726.3846,517235.1457,21
+115799,34234.86893,208926.0628,515862.2667,21
+115800,33935.40191,205715.8266,515654.7455,21
+115801,34577.24792,206121.9831,503234.4677,21
+115802,34075.81923,205195.4538,503739.5071,21
+115803,33791.72152,203878.5279,501553.9002,21
+115804,33556.55641,202642.0877,502036.3937,21
+115805,33060.49292,201789.0028,500685.0293,21
+115806,32971.80138,200808.5327,500498.8819,21
+115807,32639.79318,199105.963,499699.0912,21
+115808,32491.45545,198602.3296,499487.0874,21
+115809,32142.8765,197265.6305,497892.6912,21
+115810,31910.30074,196267.4214,498292.9224,21
+115811,31467.89824,195293.2915,497259.3184,21
+115812,31667.69195,194123.8199,496604.2838,21
+115813,30899.2783,193169.4186,495975.405,21
+115814,30902.22939,191945.4142,495458.478,21
+115815,30666.02023,191173.287,494862.5272,21
+115816,30199.4232,189967.9681,494194.1928,21
+115817,30092.45029,188846.2958,493922.3245,21
+115818,29875.82137,187976.2931,492655.5195,21
+115819,29474.37342,186657.9199,492864.3914,21
+115820,29279.8478,185854.4674,491390.7861,21
+115821,29147.9814,184853.0623,491324.319,21
+115822,28092.28846,183492.8043,490843.1204,21
+115823,28237.60622,182756.416,489649.001,21
+115824,27464.31103,181474.6927,489948.4576,21
+115825,27609.91884,180601.7701,488350.2666,21
+115826,26948.8337,179682.5662,488478.6892,21
+115827,26905.88631,178367.1701,487768.4265,21
+115828,26589.86751,177475.2956,486931.1471,21
+115829,26181.60033,176455.3169,486529.9914,21
+115830,26074.23437,175348.2426,485882.6205,21
+115831,25728.43221,174541.3796,485217.8643,21
+115832,25031.19361,173054.1982,484806.8638,21
+115833,25092.73763,172262.1006,483975.7381,21
+115834,24480.14463,171460.5872,483907.395,21
+115835,24150.09887,169951.7796,482709.3763,21
+115836,23828.3997,169080.1403,482776.4718,21
+115837,23372.44969,168186.5335,481966.1354,21
+115838,23167.77684,166865.7601,481505.361,21
+115839,22609.86936,166236.8797,480426.4485,21
+115840,22292.84665,164708.1087,480926.5679,21
+115841,21861.33811,164210.8204,479241.38,21
+115842,21596.43463,162686.6435,479550.4909,21
+115843,21150.13799,162042.766,478863.6743,21
+115844,20721.79008,160747.6855,477792.1144,21
+115845,20805.99422,159938.9613,477776.7379,21
+115846,20564.94657,158841.2177,477268.8333,21
+115847,20239.55058,157418.2398,476241.7055,21
+115848,19855.87148,156899.1902,476201.1679,21
+115849,19523.01835,154786.7845,475550.2969,21
+115850,19089.6533,154303.2759,474935.8517,21
+115851,18717.74127,152769.3107,474607.7317,21
+115852,18523.19986,151949.9763,473532.3146,21
+115853,18297.89167,150454.7512,473464.7216,21
+115854,18137.48642,149720.2234,473037.441,21
+115855,18030.67428,148543.3655,472142.4056,21
+115856,17642.44496,147478.0735,471433.7632,21
+115857,17728.92454,146408.7974,471839.9015,21
+115858,17296.35611,144941.1793,470343.0635,21
+115859,17425.68411,144413.0555,470037.5773,21
+115860,16991.57351,142916.6931,473115.544,21
+115861,21505.08423,153071.6247,522019.2545,21
+115862,23840.90262,152556.4518,523214.5455,21
+115863,26833.78864,152076.1049,522720.6535,21
+115864,23681.50241,151191.7527,522098.5585,21
+115865,24226.40168,150756.1019,522655.4564,21
+115866,23786.78358,150149.3333,521423.1919,21
+115867,23366.44599,149539.3809,522259.9536,21
+115868,22931.60137,148787.2847,521116.8907,21
+115869,22696.44935,148484.045,521279.2514,21
+115870,22246.65861,147591.7507,521232.3966,21
+115871,21720.41041,147447.1446,520365.5496,21
+115872,21665.76461,146323.8469,520594.7222,21
+115873,20832.73516,146680.713,520374.8275,21
+115874,20876.91103,145612.6927,520005.3702,21
+115875,20131.63891,145315.8893,519518.3488,21
+115876,19976.74193,144665.1984,519847.5644,21
+115877,19459.76804,144191.8288,519056.4654,21
+115878,19157.94736,143355.6337,519005.3936,21
+115879,18813.46418,142910.8379,518322.7599,21
+115880,18149.39401,142522.7661,518720.4325,21
+115881,18096.13913,141424.4988,517937.9281,21
+115882,17634.79608,141235.6591,517953.1022,21
+115883,17556.52663,140263.1747,516713.7021,21
+115884,17255.4887,139822.8504,517480.55,21
+115885,17199.32853,139152.2781,516554.7631,21
+115886,17045.88623,138640.6862,516803.2848,21
+115887,16622.38967,137823.9765,515899.8215,21
+115888,16760.76793,137326.1967,515593.7689,21
+115889,16312.77243,134564.9152,515335.9547,21
+115890,16289.70372,130594.5155,514929.6799,21
+115891,16111.76188,129794.591,514177.5216,21
+115892,15804.47882,127817.3433,512663.2317,21
+115893,15711.86392,126417.3106,512150.7374,21
+115894,15514.24835,125368.9319,510182.6359,21
+115895,15432.30785,123854.3247,509465.9267,21
+115896,15111.76523,122584.8373,507662.6928,21
+115897,14941.09683,121589.1085,506952.8227,21
+115898,14905.68047,120095.2405,506367.6753,21
+115899,14570.59541,118916.5857,503418.3931,21
+115900,14410.70601,117849.3641,503645.4876,21
+115901,14362.48478,116589.2288,501420.2169,21
+115902,14013.01581,115332.794,500598.4222,21
+115903,13988.71666,114286.8095,499109.3962,21
+115904,13701.58522,113080.3969,497822.6234,21
+115905,13588.3117,112046.6725,496573.4487,21
+115906,13324.00849,110649.2163,494866.0845,21
+115907,13274.47304,109847.887,494113.9252,21
+115908,13046.23252,108428.5267,492078.7573,21
+115909,12766.95895,107462.9154,491421.6813,21
+115910,12741.82718,106495.9686,489350.8468,21
+115911,12601.5594,105224.1025,488166.3215,21
+115912,12217.1524,104167.7946,486826.5371,21
+115913,12191.44238,103219.4172,485480.8019,21
+115914,12049.76301,102198.5428,483998.5017,21
+115915,11661.51152,100904.4395,482671.489,21
+115916,11634.84511,100051.02,481087.8067,21
+115917,11374.28472,99102.10712,479802.857,21
+115918,11328.03477,97801.50882,477957.1129,21
+115919,10966.96636,97108.62441,477140.2285,21
+115920,11037.2606,95803.1563,475097.6991,21
+115921,6468.767071,78865.78262,425403.0747,21
+115922,6468.970774,76594.93878,421971.1642,21
+115923,6300.068041,74187.17526,420744.5638,21
+115924,6099.525259,72358.68875,418097.6062,21
+115925,5929.446903,70638.04236,416305.9394,21
+115926,5814.550066,68906.54031,414026.1915,21
+115927,5671.385948,67313.93274,411614.5886,21
+115928,5555.836398,65511.12415,409970.3986,21
+115929,5411.873594,63820.35155,406935.4379,21
+115930,5150.852916,62536.25381,405696.941,21
+115931,5164.977454,60613.81703,402925.6366,21
+115932,5005.564768,59174.98451,400720.2238,21
+115933,4756.359558,57648.5968,399092.702,21
+115934,4756.36028,56041.57651,396061.4599,21
+115935,4358.129405,54447.79467,394393.6705,21
+115936,4343.726224,52938.09684,392176.6794,21
+115937,4090.353612,51538.69926,390036.5265,21
+115938,4075.89822,49901.12257,387609.3637,21
+115939,3820.709963,48495.30065,385519.363,21
+115940,3670.565265,46921.36303,383655.7604,21
+115941,3670.56567,45546.82651,380994.3635,21
+115942,3397.768577,44216.32383,379276.3135,21
+115943,3275.248138,42397.34306,377039.5429,21
+115944,3231.009594,41297.4119,374854.6439,21
+115945,2999.139242,39742.0342,372717.0813,21
+115946,2705.655692,38428.51551,370801.934,21
+115947,2690.727076,36910.84761,368890.1181,21
+115948,2550.326027,35502.5253,367474.393,21
+115949,2282.411912,34211.78342,365959.9838,21
+115950,2139.791601,32803.0002,364337.7734,21
+115951,1981.140668,31419.31747,363074.8263,21
+115952,1851.943169,30199.49209,362478.2954,21
+115953,1821.421316,29068.10992,361360.9527,21
+115954,1427.935035,27566.34956,360240.7476,21
+115955,1529.423315,26567.65359,359467.356,21
+115956,1248.257611,25210.74981,358485.487,21
+115957,1248.251135,24060.37275,357840.5276,21
+115958,945.7399335,22775.66953,356515.452,21
+115959,945.7399591,21615.7259,356060.7118,21
+115960,775.8755863,20724.82409,354897.1418,21
+115961,634.8761318,20520.2578,354183.5772,21
+115962,619.0823903,20392.10886,353485.5026,21
+115963,384.2632678,19894.37604,352514.8616,21
+115964,290.87851,19858.07316,351308.7495,21
+115965,290.8785121,19489.80344,351361.8539,21
+115966,258.746555,19326.68309,349699.4871,21
+115967,258.7465582,18957.77407,349352.9145,21
+115968,242.5504546,18841.64598,348187.106,21
+115969,242.5504573,18583.52347,347780.6758,21
+115970,209.8735623,18531.26087,346206.7219,21
+115971,209.8733858,18518.49545,345948.5101,21
+115972,193.3806905,18349.30546,344941.1149,21
+115973,193.3807016,18350.56733,344410.0824,21
+115974,160.0490364,18167.45238,343419.7961,21
+115975,176.7755492,17906.65179,342241.3938,21
+115976,143.1905431,17880.70909,342011.8002,21
+115977,143.1905476,17696.93975,340911.5719,21
+115978,126.1868957,17538.98455,340303.5238,21
+115979,126.1868968,17276.78426,339300.6903,21
+115980,109.0215102,16946.09673,338811.659,21
+115981,74.1108827,16641.05812,348784.9477,21
+115982,56.29279826,16229.00145,348877.3457,21
+115983,74.11088287,16334.59291,348293.9781,21
+115984,38.14869757,16068.49246,348421.2626,21
+115985,56.29279837,15800.92554,347860.6412,21
+115986,28.91724659,15879.86921,347961.2687,21
+115987,38.14869758,15611.99539,347186.2692,21
+115988,19.54305234,15491.56233,347454.1132,21
+115989,19.54305234,15329.29009,346786.2003,21
+115990,9.968390207,15152.90767,347022.0509,21
+115991,0,14924.48918,346027.7657,21
+115992,0,14976.02405,346823.8047,21
+115993,0,14611.43439,345855.7385,21
+115994,0,14583.45341,345796.2726,21
+115995,0,14311.22075,345696.9106,21
+115996,0,14268.95116,345650.085,21
+115997,0,14132.45702,344970.1208,21
+115998,0,13844.49937,345459.3692,21
+115999,0,13830.31159,344738.4464,21
+116000,0,13678.77554,344625.9638,21
+116001,0,13403.39418,344724.8522,21
+116002,0,13374.84036,344476.3522,21
+116003,0,13098.3001,344222.965,21
+116004,0,13193.65909,344115.4765,21
+116005,0,12806.42573,343911.7247,21
+116006,0,12763.14795,343747.6232,21
+116007,0,12755.85072,343826.7124,21
+116008,0,12344.55177,343631.6382,21
+116009,0,12455.30453,343201.0002,21
+116010,0,12146.11435,343508.0011,21
+116011,0,12049.65021,343126.8977,21
+116012,0,12109.18892,342989.2696,21
+116013,0,11724.15689,342908.8967,21
+116014,0,11850.00001,342675.544,21
+116015,0,11672.46702,342465.9787,21
+116016,0,11553.07922,342523.7376,21
+116017,0,11523.295,342130.3916,21
+116018,0,11254.91358,342254.9186,21
+116019,0,11478.71303,342091.7139,21
+116020,0,10962.50885,341772.3568,21
+116021,0,11194.89038,341618.9852,21
+116022,0,10925.36851,341962.4647,21
+116023,0,10894.21151,341291.9436,21
+116024,0,10895.1056,341380.8061,21
+116025,0,10608.77779,341516.2213,21
+116026,0,10600.90782,340771.6153,21
+116027,0,10578.14486,341435.6745,21
+116028,0,10290.32014,340581.1667,21
+116029,0,10291.43655,341240.6877,21
+116030,0,10130.26951,340202.9669,21
+116031,0,9986.154038,340992.3116,21
+116032,0,9956.257398,340368.5077,21
+116033,0,9695.354871,340448.0856,21
+116034,0,9665.397136,340457.0235,21
+116035,0,9511.783583,340239.1962,21
+116036,0,9372.655009,339928.7522,21
+116037,0,9211.825729,340331.3763,21
+116038,0,9065.74846,339652.0793,21
+116039,0,8787.721846,340215.9921,21
+116040,0,8787.733897,339853.2708,21
+116041,0,8919.336847,327339.0445,21
+116042,0,8757.326135,326153.3027,21
+116043,0,8493.192708,324488.694,21
+116044,0,8477.950793,323072.6468,21
+116045,0,8048.70252,322054.1527,21
+116046,0,8033.360263,320053.1447,21
+116047,0,7884.413306,319308.6197,21
+116048,0,7450.817671,317427.9363,21
+116049,0,7300.359078,316305.0687,21
+116050,0,7133.957619,314858.8194,21
+116051,0,6846.577996,313406.9237,21
+116052,0,6081.640325,312476.8881,21
+116053,0,5788.417373,310322.8833,21
+116054,0,5321.188877,309752.4924,21
+116055,0,5148.385751,307907.6101,21
+116056,0,4548.008252,306887.1628,21
+116057,0,4531.852946,305166.8343,21
+116058,0,3889.764874,304146.2836,21
+116059,19.5430528,3727.594696,302924.7891,21
+116060,38.14869873,3253.271327,301422.7474,21
+116061,38.14869877,2755.331711,300183.3614,21
+116062,38.14869471,2570.834999,299140.8432,21
+116063,56.29279471,1922.548994,297474.7591,21
+116064,56.29279484,1556.934066,297028.8654,21
+116065,56.29279497,1201.242738,294745.1178,21
+116066,74.11087942,647.2659186,294326.7662,21
+116067,74.11087964,432.742417,292830.5243,21
+116068,91.67270896,397.652092,291585.1483,21
+116069,91.6727093,370.1966063,290261.4518,21
+116070,91.67270965,323.5393798,289080.8463,21
+116071,109.0215045,297.6307628,288132.4966,21
+116072,91.67271036,242.0623582,286724.49,21
+116073,109.0215055,233.7244485,285474.7183,21
+116074,109.021506,167.2969454,284478.372,21
+116075,109.0215065,157.472697,283287.2129,21
+116076,117.6256282,96.60280898,282101.9062,21
+116077,109.0215074,84.86101814,281240.3115,21
+116078,126.1868973,84.86122245,279496.4251,21
+116079,109.0215084,84.86106994,278842.6104,21
+116080,126.1868985,104.9782386,277739.214,21
+116081,117.625631,104.9780433,276241.6361,21
+116082,126.1868998,104.9782557,275548.7395,21
+116083,126.1869004,124.8511131,274064.5348,21
+116084,117.6256327,124.8513877,273056.1509,21
+116085,126.1869017,124.8511695,272059.3744,21
+116086,126.1869023,144.5141286,270733.6767,21
+116087,126.186903,144.5138717,269867.9787,21
+116088,143.1905614,144.5141453,268434.5772,21
+116089,109.0215134,163.9907371,267703.6788,21
+116090,143.190563,154.2745727,266279.1123,21
+116091,126.1869055,183.3006108,265426.8058,21
+116092,143.1905646,163.9910914,264275.2975,21
+116093,126.1869068,183.3006334,263565.895,21
+116094,126.1869074,202.4586607,262999.7815,21
+116095,143.1905669,183.3006523,262483.7354,21
+116096,126.1869086,221.4763784,261930.124,21
+116097,143.1905684,202.4583869,261520.2258,21
+116098,126.1869099,221.4764015,260999.5323,21
+116099,143.19057,221.4760553,260249.1599,21
+116100,126.1869111,240.3641169,259725.0944,21
+116101,143.1905811,240.36375,259348.8923,21
+116102,126.1869216,240.3641614,258718.6244,21
+116103,126.186923,259.1300068,258152.5328,21
+116104,126.1869245,259.130405,257579.7157,21
+116105,109.0215309,277.7820164,256967.8745,21
+116106,126.1869276,268.4702871,256376.4626,21
+116107,109.0215332,296.3261222,255881.447,21
+116108,109.0215344,277.7824731,255189.1968,21
+116109,109.0215356,314.7678965,254539.3742,21
+116110,91.67273447,296.326607,254236.4613,21
+116111,109.0215379,314.7679213,253038.119,21
+116112,91.67273614,333.1125847,252737.5843,21
+116113,91.67273696,323.9519513,252188.2245,21
+116114,74.11090054,333.1126265,251416.295,21
+116115,91.67273859,351.3632726,250724.2036,21
+116116,74.11090162,351.3637242,250305.0271,21
+116117,74.11090216,369.5250933,249483.2289,21
+116118,56.29281042,369.5255544,249108.0281,21
+116119,74.11090322,369.5251148,248151.2049,21
+116120,56.29281105,396.6085613,247816.3012,21
+116121,47.26759651,387.6012357,246988.2083,21
+116122,56.29281166,405.595208,246510.4208,21
+116123,38.14870456,414.5614688,245763.0333,21
+116124,38.14870471,423.5090882,245193.7133,21
+116125,28.91725123,609.1720686,244412.6531,21
+116126,19.54305496,1312.886899,243905.8471,21
+116127,28.91725139,976.3876879,243035.6857,21
+116128,9.968391294,1247.39869,242630.1878,21
+116129,0,1330.648094,241841.8356,21
+116130,9.968391319,1504.545767,241240.6287,21
+116131,0,1694.339951,240528.1822,21
+116132,0,1856.128077,239896.9588,21
+116133,0,1873.673361,239455.7976,21
+116134,9.968391368,2025.345804,238575.0564,21
+116135,9.96839138,2210.796581,237868.2233,21
+116136,9.968391392,2210.797958,237296.1124,21
+116137,19.54305538,2368.858394,236766.33,21
+116138,9.968391417,2386.280545,235936.8578,21
+116139,19.54305545,2543.286761,235305.177,21
+116140,38.14870678,2560.645705,234583.6399,21
+116141,19.54305553,2871.768398,234172.0283,21
+116142,38.14870704,2733.965314,233232.657,21
+116143,38.14870718,2871.768497,232773.291,21
+116144,38.14870731,3060.530346,232022.412,21
+116145,56.29281807,3060.528593,231303.8917,21
+116146,47.26760149,3213.934179,230532.2284,21
+116147,56.29281864,3383.727487,230149.0061,21
+116148,74.11091731,3231.110545,229280.9611,21
+116149,56.29281922,3552.715912,228616.2997,21
+116150,82.92075623,3544.16563,227998.7302,21
+116151,74.11091881,3720.931039,227303.0772,21
+116152,91.67276643,3703.867236,226580.7592,21
+116153,91.67276721,3737.933949,226009.168,21
+116154,109.0215841,4038.204745,225214.1514,21
+116155,91.67276878,4038.203303,224395.0329,21
+116156,126.1870004,4038.204824,223967.6555,21
+116157,109.0215875,4221.221107,223311.3466,21
+116158,143.1906885,4204.323807,222371.3779,21
+116159,126.1870049,4369.772617,221983.5392,21
+116160,143.1906925,4517.730461,221018.6264,21
+116161,1133.455361,15957.82543,261486.845,21
+116162,11812.36553,18138.90019,266576.1571,21
+116163,20027.57462,17642.54441,298973.4605,21
+116164,19939.37491,18080.80858,277567.4253,21
+116165,18918.6081,18323.9417,284353.8945,21
+116166,20230.36021,18640.7101,285158.8011,21
+116167,21021.45086,18640.70666,286924.4395,21
+116168,21407.73347,19056.69812,287192.9228,21
+116169,21941.42819,19199.74186,288479.2814,21
+116170,22532.5262,19225.27672,293805.9928,21
+116171,23001.32819,19755.17556,296376.4023,21
+116172,23336.42546,19527.41585,296504.6992,21
+116173,24011.06448,20044.23815,298195.6471,21
+116174,24461.58118,20199.68719,300013.2843,21
+116175,24714.8711,20213.68965,300806.2796,21
+116176,25473.57346,21546.53959,302020.5479,21
+116177,25725.20626,24303.29911,303977.139,21
+116178,26456.67362,22945.37434,304769.8802,21
+116179,26615.87352,24040.31825,306418.9009,21
+116180,27367.78803,24157.99923,307829.7666,21
+116181,27607.44346,24686.74159,309029.4103,21
+116182,28254.04522,25170.29877,310720.4087,21
+116183,28695.84143,25673.0083,311801.997,21
+116184,28928.45473,25816.03522,312810.0493,21
+116185,29570.60156,26533.8999,314543.9133,21
+116186,30006.11376,26555.92322,315662.3412,21
+116187,30444.71718,27034.41105,316712.8101,21
+116188,30878.24124,27294.16279,318268.313,21
+116189,31411.72936,27784.60457,319514.762,21
+116190,31948.23579,28152.17723,320907.7797,21
+116191,31973.6079,28262.39577,321971.7364,21
+116192,32783.07618,28904.02078,323064.5393,21
+116193,32942.89596,29113.84191,324496.9403,21
+116194,33351.51603,29623.51536,325630.9337,21
+116195,33948.1535,29851.57939,326549.6534,21
+116196,34026.72158,30425.96593,328550.563,21
+116197,34499.96647,30953.04567,328557.9058,21
+116198,35119.49733,30963.90416,330446.6496,21
+116199,35427.90224,31906.96814,331710.299,21
+116200,36004.4839,32183.93636,332750.9351,21
+116201,36243.97707,32681.46606,334191.2502,21
+116202,36694.178,32783.16665,334766.1387,21
+116203,37156.7269,33773.46132,336563.6055,21
+116204,37614.70692,33593.09664,337694.0957,21
+116205,37828.31237,34491.40181,337822.2623,21
+116206,38399.52968,34633.5149,340458.4756,21
+116207,38716.79467,35197.60752,340222.6174,21
+116208,39008.07783,35705.56418,341825.6633,21
+116209,39575.81924,35883.9849,343545.4562,21
+116210,39865.34948,36429.59867,343718.0786,21
+116211,40122.19757,36813.48008,345792.9628,21
+116212,40890.03755,37210.65411,346297.8812,21
+116213,40698.05194,37748.25757,347615.26,21
+116214,41590.63982,37935.9581,349166.0182,21
+116215,41646.82308,41931.29503,349427.6171,21
+116216,42251.31961,40793.51609,350702.1457,21
+116217,42514.26575,42224.39953,352701.3252,21
+116218,42751.40869,43027.56123,352667.8009,21
+116219,43375.05967,43789.69372,354497.9517,21
+116220,46375.0081,44924.8863,355631.6714,21
+116221,57467.81715,58738.18882,388864.1377,21
+116222,59436.52221,61077.96882,392902.9592,21
+116223,59729.81783,62701.83723,394769.9083,21
+116224,60781.68296,63929.68038,396369.3644,21
+116225,61123.09363,66726.28545,397404.6512,21
+116226,61754.66735,69814.57441,399581.7697,21
+116227,62411.42045,73281.68882,401010.6289,21
+116228,63060.19874,76787.95999,401730.6359,21
+116229,63605.39111,80101.06139,404707.9606,21
+116230,63866.29828,83860.43567,405142.9638,21
+116231,64875.62079,87062.49961,407095.885,21
+116232,65019.9447,90575.35815,407983.6807,21
+116233,65765.62375,95096.58701,409569.3815,21
+116234,66338.09868,98624.74576,411248.2871,21
+116235,67033.73339,102255.3566,412171.2087,21
+116236,67170.31365,105693.9807,413718.4158,21
+116237,67851.01716,109293.108,415061.5634,21
+116238,68767.76819,112948.3075,416457.4169,21
+116239,68667.98025,116704.6974,417950.1824,21
+116240,69554.03907,120049.6179,419545.2461,21
+116241,69948.14222,123853.0838,420230.9061,21
+116242,70293.63394,127678.5159,421967.4096,21
+116243,71074.41632,130807.098,422955.7781,21
+116244,71339.44573,134774.2013,424860.3564,21
+116245,71960.1681,138265.4037,426135.4884,21
+116246,72383.86033,141972.065,426727.8472,21
+116247,72719.42111,145332.4085,428732.0369,21
+116248,73286.71264,149219.6197,429960.2396,21
+116249,73856.68209,153779.1052,430725.0001,21
+116250,74010.23807,156716.4086,432778.1329,21
+116251,74914.36366,160572.5614,433461.0293,21
+116252,74954.12491,163594.9672,435049.5925,21
+116253,75559.09368,167280.5159,435833.3928,21
+116254,76026.0603,170619.02,437754.5587,21
+116255,76081.38985,173689.5388,438359.1532,21
+116256,77060.02289,177235.7983,440625.5863,21
+116257,76965.81047,180689.373,440677.0737,21
+116258,77491.39486,183615.5289,442738.9162,21
+116259,77999.95417,187019.3485,443904.3464,21
+116260,78418.5786,190335.1961,444441.8846,21
+116261,78548.34764,193014.4704,446543.4464,21
+116262,79287.40766,197990.9447,446951.6265,21
+116263,79392.40857,201430.1096,448780.7301,21
+116264,80325.20044,210798.4966,450075.1186,21
+116265,80442.72952,211676.8597,450727.7152,21
+116266,80813.31962,216946.3036,452070.7002,21
+116267,81417.92311,220806.024,453755.1281,21
+116268,81631.69171,225153.7808,454384.4927,21
+116269,81948.05753,229071.0637,455184.4936,21
+116270,82568.98447,233081.9685,457712.0028,21
+116271,82637.33672,237010.8928,457500.8714,21
+116272,83351.08869,241062.8522,459997.0037,21
+116273,83559.93874,244934.6418,459174.4771,21
+116274,83635.97995,248939.5378,462384.4598,21
+116275,84476.96928,253141.0973,462417.6357,21
+116276,84575.64036,256387.8831,463809.1502,21
+116277,84840.25967,260804.4494,464965.558,21
+116278,85472.779,264317.8986,465970.6681,21
+116279,85720.86469,268403.5858,467354.5795,21
+116280,86053.91739,272491.9363,468978.8737,21
+116281,86631.92,272267.5285,469420.361,21
+116282,87033.10293,273557.7532,470505.5596,21
+116283,87549.49333,273887.6038,472452.042,21
+116284,88108.42362,273961.5247,473427.3589,21
+116285,88509.27237,274547.981,474622.4576,21
+116286,89043.6376,274864.8079,476366.9437,21
+116287,89406.24955,275478.3544,476992.1265,21
+116288,89985.95479,275367.3843,478517.7244,21
+116289,90463.73382,275860.7398,479047.9818,21
+116290,90892.9751,276418.9618,481861.0165,21
+116291,91449.89269,276391.3178,481123.2454,21
+116292,91936.8888,276725.1491,484171.8676,21
+116293,92314.44395,277099.9173,483774.7054,21
+116294,92754.15058,277146.3156,485212.1142,21
+116295,93347.38743,277431.5622,487887.9232,21
+116296,93682.90013,277819.8896,487590.7672,21
+116297,95543.62363,277720.6241,489535.2902,21
+116298,98823.20652,278426.1439,490369.2403,21
+116299,98265.64486,278276.4256,491447.4192,21
+116300,99387.36703,278564.5736,492478.522,21
+116301,100178.8028,278830.913,494200.5833,21
+116302,101132.4457,278837.563,494667.3916,21
+116303,101670.0768,278776.2096,496675.6541,21
+116304,104206.4438,279362.905,497909.1702,21
+116305,104652.1812,279188.3099,499365.4255,21
+116306,105679.7602,279474.5629,500407.2388,21
+116307,106527.6556,279679.242,501920.6817,21
+116308,106581.5524,279393.5899,504185.545,21
+116309,108155.38,279760.5518,504066.0792,21
+116310,108064.6836,279741.901,506340.5316,21
+116311,109012.3227,280120.7942,507623.8904,21
+116312,109821.2139,279569.2378,508509.9281,21
+116313,110092.6676,280018.9603,508854.8884,21
+116314,111063.7188,280042.7518,510141.3604,21
+116315,111400.1277,279234.2298,510917.3806,21
+116316,112135.2458,280390.7773,511798.9417,21
+116317,112663.8805,279355.8849,512122.1545,21
+116318,113385.2642,280096.2253,514071.4955,21
+116319,113808.8459,279463.0376,513731.0819,21
+116320,114337.0767,280020.7446,515262.2083,21
+116321,115189.3499,279243.365,515675.6619,21
+116322,115306.1918,279630.0862,522229.6423,21
+116323,116427.4698,279142.747,523433.6147,21
+116324,116564.9515,279504.4684,524553.0377,21
+116325,117251.7092,279097.7964,526257.1559,21
+116326,117649.9415,278806.5172,531909.9854,21
+116327,118473.8207,279396.5195,532915.3272,21
+116328,118701.4656,278631.6334,535278.1756,21
+116329,119199.7074,278939.4257,535203.9827,21
+116330,120198.3044,278299.2314,536503.1973,21
+116331,120073.9357,278492.0533,537148.3693,21
+116332,121136.0775,278311.1425,538961.7172,21
+116333,121126.5959,278198.2987,538505.5256,21
+116334,122017.7705,277698.218,540766.4448,21
+116335,122333.299,278017.1337,541336.9835,21
+116336,122871.6664,277446.6412,541471.9204,21
+116337,123355.4449,277447.7984,543235.7733,21
+116338,123829.2658,276980.9726,543122.3293,21
+116339,124324.8304,277049.9099,545244.0497,21
+116340,124833.2401,276755.9164,548123.2238,21
+116341,127503.4339,281281.5054,550730.4899,21
+116342,128657.0515,283993.4236,554726.5006,21
+116343,129404.3584,284673.2269,556902.1609,21
+116344,130029.307,287466.9021,556579.7535,21
+116345,130399.668,288238.1332,557821.8726,21
+116346,131349.2378,289967.2497,560151.335,21
+116347,131787.1162,292058.0951,559083.1509,21
+116348,132283.4929,293187.3209,561607.4918,21
+116349,133224.776,294970.3409,561772.2752,21
+116350,133546.1828,296376.956,563481.24,21
+116351,134012.5076,298124.7885,563369.1392,21
+116352,134798.6288,299734.2929,565126.0315,21
+116353,135164.8507,301121.547,565641.0298,21
+116354,136003.956,302576.2368,566018.4737,21
+116355,136232.9802,304428.4404,568610.2359,21
+116356,137008.7661,305705.8031,567848.4585,21
+116357,137429.0086,307252.229,568907.1863,21
+116358,138068.9554,308625.8292,570191.0399,21
+116359,138686.1903,310471.4258,570256.8059,21
+116360,139021.5037,312189.7947,572395.3743,21
+116361,139475.1898,313178.1281,571192.6858,21
+116362,140359.9399,314809.0628,574206.5209,21
+116363,140417.9528,316300.1074,573282.3319,21
+116364,141270.0163,317783.2876,574792.9624,21
+116365,141631.1251,319245.8604,575133.5337,21
+116366,142206.4692,320857.552,576396.8034,21
+116367,142541.0539,322227.7304,577363.3818,21
+116368,143286.4288,323656.0873,576669.6236,21
+116369,143720.6807,325222.7535,578670.5516,21
+116370,144174.4243,326669.5537,579629.6131,21
+116371,144415.8899,327634.7735,578819.6724,21
+116372,145822.3043,330032.9366,580918.1361,21
+116373,146677.9703,330941.1945,581028.1537,21
+116374,146579.8468,332169.2495,581152.8403,21
+116375,147701.1724,333959.4549,583557.4938,21
+116376,148052.69,335089.5966,582079.6461,21
+116377,148256.0685,336822.5024,583480.2433,21
+116378,149498.0094,338114.6846,585488.9946,21
+116379,149703.8633,339260.694,584156.7134,21
+116380,150079.6424,341184.061,585668.0392,21
+116381,150732.156,342226.057,586579.5005,21
+116382,151255.5184,343430.5747,586722.2578,21
+116383,151771.4824,345462.9433,587641.8203,21
+116384,152388.0529,346473.1629,587724.6572,21
+116385,152599.5643,347500.7958,588971.0989,21
+116386,153596.6577,349653.8226,588948.045,21
+116387,153537.9575,350527.2328,590156.6982,21
+116388,154502.6554,352070.1483,589793.3343,21
+116389,154609.2149,353307.2705,591596.2135,21
+116390,159667.9874,355056.5867,591501.5481,21
+116391,160778.9064,355760.2878,591518.5922,21
+116392,160372.4863,357929.3419,593154.2715,21
+116393,162315.7435,358699.0467,593198.5755,21
+116394,163438.2216,360430.213,593531.4348,21
+116395,163833.5165,361104.0367,594974.975,21
+116396,165260.3472,363415.8875,593851.5771,21
+116397,166638.4559,364011.4393,595920.0145,21
+116398,165927.8946,365804.5371,596200.7482,21
+116399,169080.3105,366960.6256,596539.2698,21
+116400,168200.4349,368438.5638,596413.7495,21
+116401,169839.1927,369168.096,597974.2505,21
+116402,171998.3392,370749.8325,597907.0739,21
+116403,172541.3305,371644.5036,598427.0467,21
+116404,173402.3923,372555.2139,598672.8668,21
+116405,174747.3821,373656.8355,598661.0222,21
+116406,175391.6449,374864.0957,600157.6165,21
+116407,175944.5747,375902.5524,599179.7161,21
+116408,177037.9557,376563.8725,600755.8196,21
+116409,177852.7506,378188.5162,600225.2568,21
+116410,178981.7168,378337.1248,600767.7268,21
+116411,178944.7397,380460.1105,601630.0891,21
+116412,180932.0421,380974.3789,600984.2939,21
+116413,180797.9293,381751.7536,602636.2922,21
+116414,181865.6753,383370.8753,601612.9732,21
+116415,183197.6423,383907.0448,603571.2052,21
+116416,183463.1385,385323.6929,602189.3368,21
+116417,184756.5898,385991.1297,602942.2096,21
+116418,185468.5023,387027.476,604498.2358,21
+116419,186190.0808,388500.4875,603062.0286,21
+116420,186287.4927,388850.5228,604383.0245,21
+116421,188259.6349,390497.4962,605682.0618,21
+116422,188210.0268,391247.6815,603680.2324,21
+116423,189363.5289,391939.3834,606120.2181,21
+116424,190459.3787,393430.0108,604858.3725,21
+116425,190428.0268,394466.4846,606167.2036,21
+116426,192275.0061,394999.4263,605753.0775,21
+116427,191599.6114,395948.7574,606868.3196,21
+116428,193509.4237,397734.9826,606585.9884,21
+116429,193828.2008,397804.0222,607033.313,21
+116430,194998.3272,399764.4645,607422.923,21
+116431,195184.3391,399536.1477,606872.5485,21
+116432,196036.5411,401950.7026,609256.0722,21
+116433,197109.3445,401803.5997,607391.7908,21
+116434,197738.5277,403233.6585,608360.8921,21
+116435,198328.8366,404059.0121,609400.6331,21
+116436,199589.8769,405481.4984,608772.6674,21
+116437,199069.0279,405852.5315,609324.5431,21
+116438,201604.9584,407454.4723,609909.673,21
+116439,200906.158,407591.7451,609011.1405,21
+116440,201710.2562,415280.9225,611058.2603,21
+116441,202716.1055,413552.1091,610667.0242,21
+116442,203945.1738,415211.8469,609909.3595,21
+116443,203810.7368,417538.8401,611190.738,21
+116444,205236.3489,418044.3394,612006.1374,21
+116445,205131.9879,420376.0611,610636.6779,21
+116446,206913.2138,420486.5577,611383.7484,21
+116447,206251.4364,423976.0905,612863.3525,21
+116448,208692.0755,422744.2363,611502.7038,21
+116449,207163.246,427058.9285,613259.2857,21
+116450,209699.7968,426043.023,612136.769,21
+116451,209715.1519,428610.0721,612862.5204,21
+116452,210032.4723,429346.9502,614123.4842,21
+116453,211790.1308,430963.8062,612329.3557,21
+116454,210951.1088,432493.0791,614018.3103,21
+116455,213271.5567,433367.3388,614576.2567,21
+116456,212415.3607,435526.2145,613736.0661,21
+116457,214006.9844,436003.1719,614312.32,21
+116458,214494.844,437807.6789,614918.0925,21
+116459,214769.9947,438887.0206,614986.5796,21
+116460,215942.708,440548.1646,617401.3049,21
+116461,0,0,0,21
+116462,0,0,0,21
+116463,0,0,0,21
+116464,0,0,0,21
+116465,0,0,0,21
+116466,339838.1751,368428.0353,1679344.1,21
+116467,0,0,0,21
+116468,0,0,0,21
+116469,0,0,0,21
+116470,0,260467.4423,0,21
+116471,0,0,0,21
+116472,0,0,0,21
+116473,0,0,0,21
+116474,0,0,0,21
+116475,0,0,0,21
+116476,0,0,0,21
+116477,0,0,0,21
+116478,0,0,0,21
+116479,0,0,0,21
+116480,0,0,0,21
+116481,0,0,0,21
+116482,0,0,0,21
+116483,0,0,117767.1706,21
+116484,0,0,120311.3683,21
+116485,0,0,119303.8534,21
+116486,0,0,118350.9719,21
+116487,0,0,117428.193,21
+116488,0,0,116521.246,21
+116489,0,0,115624.183,21
+116490,0,0,114734.9795,21
+116491,0,0,113852.8791,21
+116492,0,0,112977.4585,21
+116493,0,0,112108.173,21
+116494,0,0,111244.4505,21
+116495,0,0,110386.0625,21
+116496,0,0,109532.6625,21
+116497,0,0,108684.1659,21
+116498,0,0,107840.7,21
+116499,0,0,107002.3081,21
+116500,0,0,106169.0241,21
+116501,339914.1177,368440.739,1412081.306,21
+116502,0,0,98818.8684,21
+116503,0,0,98052.96908,21
+116504,0,0,97292.22713,21
+116505,0,0,96536.74969,21
+116506,0,0,95786.45584,21
+116507,0,0,95041.58758,21
+116508,0,0,94302.20538,21
+116509,0,0,93568.45621,21
+116510,0,0,92840.51613,21
+116511,0,0,92118.45305,21
+116512,0,0,0,21
+116513,0,0,0,21
+116514,0,0,0,21
+116515,0,0,0,21
+116516,0,0,0,21
+116517,0,0,0,21
+116518,0,0,0,21
+116519,0,0,0,21
+116520,0,0,0,15.6
+116521,0,0,0,15.6
+116522,0,0,0,15.6
+116523,0,0,0,15.6
+116524,0,0,0,15.6
+116525,0,0,0,15.6
+116526,0,0,0,15.6
+116527,0,0,0,15.6
+116528,0,0,0,15.6
+116529,0,0,0,15.6
+116530,0,0,0,15.6
+116531,0,0,0,15.6
+116532,0,0,0,15.6
+116533,0,0,0,15.6
+116534,0,0,0,15.6
+116535,0,0,86974.04301,15.6
+116536,0,368438.8995,1254031.15,15.6
+116537,339956.1048,0,84638.77162,15.6
+116538,0,0,83997.13576,15.6
+116539,0,0,83382.83853,15.6
+116540,0,0,82781.4758,15.6
+116541,0,0,82186.62727,15.6
+116542,0,0,81597.44897,15.6
+116543,0,0,81011.96625,15.6
+116544,0,0,80431.08439,15.6
+116545,0,0,79853.19536,15.6
+116546,0,0,79279.1266,15.6
+116547,0,0,78707.31496,15.6
+116548,0,0,78138.82708,15.6
+116549,0,0,77572.57615,15.6
+116550,0,0,77008.87264,15.6
+116551,0,0,76447.79127,15.6
+116552,0,0,75889.42777,15.6
+116553,0,0,75333.92694,15.6
+116554,0,0,74781.41318,15.6
+116555,0,0,74232.04034,15.6
+116556,0,0,73685.9292,15.6
+116557,0,0,73143.21857,15.6
+116558,0,0,72604.00325,15.6
+116559,0,0,72068.40225,15.6
+116560,0,0,71536.49262,15.6
+116561,0,0,71008.37105,15.6
+116562,0,0,70484.09289,15.6
+116563,0,0,69963.73486,15.6
+116564,0,0,0,15.6
+116565,0,0,0,15.6
+116566,0,0,0,15.6
+116567,0,0,0,15.6
+116568,0,0,0,15.6
+116569,0,0,0,15.6
+116570,0,0,0,15.6
+116571,0,0,1023740.432,15.6
+116572,0,368415.9792,0,15.6
+116573,339961.5292,0,0,15.6
+116574,0,0,0,15.6
+116575,0,0,0,15.6
+116576,0,0,0,15.6
+116577,0,0,0,15.6
+116578,0,0,0,15.6
+116579,0,0,0,15.6
+116580,0,0,0,15.6
+116581,0,0,0,15.6
+116582,0,0,0,15.6
+116583,0,0,0,15.6
+116584,0,0,0,15.6
+116585,0,0,0,15.6
+116586,0,0,0,15.6
+116587,0,0,0,15.6
+116588,0,0,62034.92669,15.6
+116589,0,0,65124.39221,15.6
+116590,0,0,64659.0306,15.6
+116591,0,0,64243.98984,15.6
+116592,0,0,63854.70973,15.6
+116593,0,0,63476.90292,15.6
+116594,0,0,63104.66348,15.6
+116595,0,0,62736.04406,15.6
+116596,0,0,62370.37868,15.6
+116597,0,0,62007.23464,15.6
+116598,0,0,61646.17829,15.6
+116599,0,0,61286.8128,15.6
+116600,0,0,60928.90646,15.6
+116601,0,0,60572.23118,15.6
+116602,0,0,60216.73714,15.6
+116603,0,0,59862.48678,15.6
+116604,0,0,59509.54073,15.6
+116605,0,0,59158.0534,15.6
+116606,0,0,910252.7302,15.6
+116607,0,0,56877.93916,15.6
+116608,0,368411.9014,56545.83538,15.6
+116609,340031.3646,0,56215.61896,15.6
+116610,0,0,55887.43475,15.6
+116611,0,0,55561.35138,15.6
+116612,0,0,55237.50176,15.6
+116613,0,0,54916.02829,15.6
+116614,0,0,54597.06854,15.6
+116615,0,0,54280.77368,15.6
+116616,0,0,53967.16458,15.6
+116617,0,0,0,15.6
+116618,0,0,0,15.6
+116619,0,0,0,15.6
+116620,0,0,0,15.6
+116621,0,0,0,15.6
+116622,0,0,0,15.6
+116623,0,0,0,15.6
+116624,0,0,0,15.6
+116625,0,0,0,15.6
+116626,0,0,0,15.6
+116627,0,0,0,15.6
+116628,0,0,0,15.6
+116629,0,0,0,15.6
+116630,0,0,0,15.6
+116631,0,0,0,15.6
+116632,0,0,0,15.6
+116633,0,0,0,15.6
+116634,0,0,0,15.6
+116635,0,0,0,15.6
+116636,0,0,0,15.6
+116637,0,0,0,15.6
+116638,0,0,0,15.6
+116639,0,0,0,15.6
+116640,0,0,0,15.6
+116641,0,0,842392.4739,15.6
+116642,0,0,0,15.6
+116643,0,0,0,15.6
+116644,0,368413.37,48384.81051,15.6
+116645,340108.1398,0,51594.03553,15.6
+116646,0,0,51247.59611,15.6
+116647,0,0,50949.62139,15.6
+116648,0,0,50675.92334,15.6
+116649,0,0,50411.76522,15.6
+116650,0,0,50151.27999,15.6
+116651,0,0,49892.63776,15.6
+116652,0,0,49635.27088,15.6
+116653,0,0,49378.95508,15.6
+116654,0,0,49122.67835,15.6
+116655,0,0,48866.73099,15.6
+116656,0,0,48610.17103,15.6
+116657,0,0,48353.56042,15.6
+116658,0,0,48096.17072,15.6
+116659,0,0,47838.74742,15.6
+116660,0,0,47580.70038,15.6
+116661,0,0,47322.88397,15.6
+116662,0,0,47064.74731,15.6
+116663,0,0,46807.15569,15.6
+116664,0,0,46549.56451,15.6
+116665,0,0,46292.85099,15.6
+116666,0,0,46036.63646,15.6
+116667,0,0,45781.25731,15.6
+116668,0,0,45526.83909,15.6
+116669,0,0,45273.51612,15.6
+116670,0,0,45021.38969,15.6
+116671,0,0,44770.57181,15.6
+116672,0,0,44521.14228,15.6
+116673,0,0,0,15.6
+116674,0,0,0,15.6
+116675,0,0,0,15.6
+116676,0,0,734476.0975,15.6
+116677,0,0,0,15.6
+116678,0,0,0,15.6
+116679,0,0,0,15.6
+116680,0,368390.7541,0,15.6
+116681,340113.0587,0,0,15.6
+116682,0,0,0,15.6
+116683,0,0,0,15.6
+116684,0,0,0,15.6
+116685,0,0,0,15.6
+116686,0,0,0,15.6
+116687,0,0,0,15.6
+116688,0,0,0,15.6
+116689,0,0,0,15.6
+116690,0,0,0,15.6
+116691,0,0,0,15.6
+116692,0,0,0,15.6
+116693,0,0,0,15.6
+116694,0,0,0,15.6
+116695,0,0,0,15.6
+116696,0,0,0,15.6
+116697,0,0,0,15.6
+116698,0,0,0,15.6
+116699,0,0,0,15.6
+116700,0,0,0,15.6
+116701,0,0,39031.97032,15.6
+116702,0,0,42327.46353,15.6
+116703,0,0,42064.82918,15.6
+116704,0,0,41849.93229,15.6
+116705,0,0,41658.15045,15.6
+116706,0,0,41475.88992,15.6
+116707,0,0,41296.6412,15.6
+116708,0,0,41119.05869,15.6
+116709,0,0,40941.84293,15.6
+116710,0,0,40765.05317,15.6
+116711,0,0,710236.8979,15.6
+116712,0,0,40482.82257,15.6
+116713,0,0,40303.34729,15.6
+116714,0,0,40122.48698,15.6
+116715,0,0,39940.59462,15.6
+116716,0,368359.5547,39757.63535,15.6
+116717,340098.4887,0,39573.70335,15.6
+116718,0,0,39388.9365,15.6
+116719,0,0,39203.52372,15.6
+116720,0,0,39017.65852,15.6
+116721,0,0,38831.54079,15.6
+116722,0,0,38645.34247,15.6
+116723,0,0,38459.37059,15.6
+116724,0,0,38273.36704,15.6
+116725,0,0,38087.97073,15.6
+116726,0,0,37902.79878,15.6
+116727,0,0,37718.47283,15.6
+116728,0,0,37534.57342,15.6
+116729,0,0,37351.72207,15.6
+116730,0,0,0,15.6
+116731,0,0,0,15.6
+116732,0,0,0,15.6
+116733,0,0,0,15.6
+116734,0,0,0,15.6
+116735,0,0,0,15.6
+116736,0,0,0,15.6
+116737,0,0,0,15.6
+116738,0,0,0,15.6
+116739,0,0,0,15.6
+116740,0,0,0,15.6
+116741,0,0,0,15.6
+116742,0,0,0,15.6
+116743,0,0,0,15.6
+116744,0,0,0,15.6
+116745,0,0,0,15.6
+116746,0,0,0,15.6
+116747,0,0,660059.829,15.6
+116748,0,0,0,15.6
+116749,0,0,0,15.6
+116750,0,0,0,15.6
+116751,0,0,0,15.6
+116752,0,368318.0624,0,15.6
+116753,340062.9074,0,0,15.6
+116754,0,0,0,15.6
+116755,0,0,0,15.6
+116756,0,0,0,15.6
+116757,0,0,0,15.6
+116758,0,0,0,15.6
+116759,0,0,0,15.6
+116760,0,0,32587.04464,15.6
+116761,0,0,35942.28924,15.6
+116762,0,0,375476.0169,15.6
+116763,0,0,11406.21897,15.6
+116764,0,0,88439.09092,15.6
+116765,0,0,8902.756241,15.6
+116766,0,0,94206.05517,15.6
+116767,0,0,60185.57077,15.6
+116768,0,0,78334.64008,15.6
+116769,0,0,11946.64422,15.6
+116770,0,0,119566.3525,15.6
+116771,0,0,75111.64173,15.6
+116772,0,0,9308.14666,15.6
+116773,0,0,86858.89152,15.6
+116774,0,0,53875.41652,15.6
+116775,0,0,73612.97443,15.6
+116776,0,0,11183.75523,15.6
+116777,0,0,108608.7691,15.6
+116778,0,0,64939.25831,15.6
+116779,0,0,32840.49179,15.6
+116780,0,0,39829.43681,15.6
+116781,0,0,55925.68952,15.6
+116782,0,0,25804.52763,15.6
+116783,0,0,610160.9283,15.6
+116784,0,0,33052.29737,15.6
+116785,0,0,32498.8211,15.6
+116786,0,0,32230.1345,15.6
+116787,0,0,32038.65295,15.6
+116788,0,368298.1421,31868.90758,15.6
+116789,0,0,0,15.6
+116790,339990.1636,0,0,15.6
+116791,0,0,0,15.6
+116792,0,0,0,15.6
+116793,0,0,0,15.6
+116794,0,0,0,15.6
+116795,0,0,0,15.6
+116796,0,0,0,15.6
+116797,0,0,0,15.6
+116798,0,0,0,15.6
+116799,0,0,0,15.6
+116800,0,0,0,15.6
+116801,0,0,0,15.6
+116802,0,0,0,15.6
+116803,0,0,0,15.6
+116804,0,0,353327.8477,15.6
+116805,0,0,0,15.6
+116806,0,0,0,15.6
+116807,0,0,0,15.6
+116808,0,0,0,15.6
+116809,0,0,0,15.6
+116810,0,0,0,15.6
+116811,0,0,0,15.6
+116812,0,0,0,15.6
+116813,0,0,0,15.6
+116814,0,0,0,15.6
+116815,0,0,0,15.6
+116816,0,0,0,15.6
+116817,0,0,0,15.6
+116818,0,0,0,15.6
+116819,0,0,693861.8762,15.6
+116820,0,0,60795.73216,15.6
+116821,69541.24748,114341.5727,145477.0406,15.6
+116822,4515.772851,50931.51054,60861.51044,15.6
+116823,3595.153733,26997.02814,80954.58962,15.6
+116824,20846.26088,390565.7348,66238.46825,15.6
+116825,16107.53776,32181.22322,67001.68601,15.6
+116826,14936.07425,28773.8557,65729.83595,15.6
+116827,355495.9324,27474.93756,65576.02455,15.6
+116828,15726.39201,27743.78601,65486.34782,15.6
+116829,15800.87349,27660.42946,65495.06809,15.6
+116830,15867.02016,27643.07652,65495.9404,15.6
+116831,16001.55368,27625.33726,65532.02113,15.6
+116832,16103.40633,27595.77277,65576.3078,15.6
+116833,16135.80143,27539.77592,65619.5438,15.6
+116834,16302.01535,27604.27171,65603.76659,15.6
+116835,16401.76622,27486.04931,65727.75659,15.6
+116836,16447.98999,27584.56153,65643.72417,15.6
+116837,16629.80965,27494.41305,65696.81508,15.6
+116838,16661.74486,27564.78284,65674.90158,15.6
+116839,16804.16928,27494.41134,65736.68959,15.6
+116840,16900.2781,27558.83718,65695.26006,15.6
+116841,17035.3642,27534.94481,65799.88294,15.6
+116842,17104.05846,27540.67447,65730.7043,15.6
+116843,17239.58797,27538.98293,65807.37892,15.6
+116844,17326.62283,27582.85314,65847.82498,15.6
+116845,17471.64015,27566.98528,65860.91382,15.6
+116846,17547.30925,27600.99792,65939.54894,15.6
+116847,17701.89818,27614.76542,65915.51853,15.6
+116848,17778.18357,27609.02536,65983.06932,15.6
+116849,17902.44294,27676.6556,57698.25212,15.6
+116850,18024.1482,27650.93903,57632.72994,15.6
+116851,0,0,0,15.6
+116852,0,0,0,15.6
+116853,0,0,637215.2214,15.6
+116854,0,84366.28954,0,15.6
+116855,0,8714.260937,0,15.6
+116856,68148.78337,23695.67215,0,15.6
+116857,1232.470379,32761.88964,0,15.6
+116858,13815.29665,27348.71003,0,15.6
+116859,24903.19521,396233.5788,0,15.6
+116860,18231.78522,28006.04037,0,15.6
+116861,19343.01344,27980.29838,0,15.6
+116862,359333.4948,28077.90554,0,15.6
+116863,19588.83123,28088.99041,0,15.6
+116864,19721.42626,28106.49299,0,15.6
+116865,19838.34837,28169.50849,0,15.6
+116866,19943.81215,28190.76583,0,15.6
+116867,20078.34131,28204.86434,0,15.6
+116868,20190.00049,28261.59555,0,15.6
+116869,20332.19734,28279.4324,0,15.6
+116870,20410.9607,28331.70072,0,15.6
+116871,20589.01617,28371.14599,0,15.6
+116872,20690.77157,28386.74596,0,15.6
+116873,20784.24027,28451.02076,0,15.6
+116874,20936.17256,28514.01848,0,15.6
+116875,21044.26306,28468.76998,0,15.6
+116876,21205.26139,28548.38626,0,15.6
+116877,21293.94246,365827.848,0,15.6
+116878,21400.85464,84624.48127,0,15.6
+116879,21596.16242,152165.2083,0,15.6
+116880,21647.10328,197055.1414,0,17.8
+116881,1007419.26,1439135.779,1168114.536,17.8
+116882,874043.2993,1256235.675,296116.0919,17.8
+116883,426319.1416,219524.3233,376046.8164,17.8
+116884,357686.6262,379453.9451,418185.8819,17.8
+116885,336478.9164,533230.3316,376366.0498,17.8
+116886,318609.7063,417780.1371,390119.9989,17.8
+116887,294680.7864,467617.2431,1119213.451,17.8
+116888,384063.7145,430170.2444,393183.246,17.8
+116889,348144.7756,438310.7975,412022.4218,17.8
+116890,334491.6064,437951.9622,405331.0465,17.8
+116891,339434.1617,435204.4986,412194.1682,17.8
+116892,349525.1568,435276.5559,416257.4937,17.8
+116893,340486.9462,434327.0583,420528.503,17.8
+116894,342682.3501,786787.5111,423353.4107,17.8
+116895,341919.58,417990.9242,427355.9599,17.8
+116896,341879.2311,417323.8733,431134.276,17.8
+116897,681514.4988,416761.1061,433807.4885,17.8
+116898,341529.2437,416095.8837,438165.0009,17.8
+116899,341227.9495,415547.0088,440200.183,17.8
+116900,341488.3843,414537.7223,444279.3361,17.8
+116901,340533.5804,414601.234,446609.0425,17.8
+116902,340969.5201,414070.8361,450127.8705,17.8
+116903,341124.8297,413155.6717,452545.3473,17.8
+116904,343977.0133,413467.4968,455505.3635,17.8
+116905,345004.1647,412046.911,457884.9904,17.8
+116906,347301.4253,412335.1201,460517.448,17.8
+116907,345301.64,71217.85485,463068.2915,17.8
+116908,345420.0613,70965.41226,465623.4491,17.8
+116909,346143.4602,70977.69728,467623.5108,17.8
+116910,346827.9155,1036569.704,469891.2273,17.8
+116911,56894.52263,260417.0517,0,17.8
+116912,56750.39611,383653.2686,0,17.8
+116913,56953.1883,442959.8438,0,17.8
+116914,856353.4399,410017.6117,266609.0591,17.8
+116915,344450.2025,339487.2453,140473.3993,17.8
+116916,250384.7425,339395.8949,118563.7638,17.8
+116917,393512.5828,453453.5985,167138.1466,17.8
+116918,295416.6015,411471.8593,144510.1111,17.8
+116919,296311.7162,410905.5595,144698.8474,17.8
+116920,387125.2825,406006.6701,145365.1443,17.8
+116921,346952.0454,410188.4657,2542739.631,17.8
+116922,330187.2381,407051.5817,224241.1973,17.8
+116923,355099.6358,407743.8098,341011.28,17.8
+116924,346688.4957,405974.507,545289.0004,17.8
+116925,346952.7206,407528.1061,417621.8425,17.8
+116926,347198.5738,406303.7053,439225.1209,17.8
+116927,347526.5313,406016.5387,441289.9162,17.8
+116928,347473.4832,406619.5465,444706.432,17.8
+116929,347829.4582,773903.4448,446706.0904,17.8
+116930,348035.9185,405573.4883,449075.5157,17.8
+116931,347595.5123,406317.2968,450099.801,17.8
+116932,688152.2829,405144.6602,452654.1166,17.8
+116933,340317.5692,405857.6288,454616.987,17.8
+116934,341180.0393,404986.6189,457478.8969,17.8
+116935,340850.0611,421581.7315,458373.3678,17.8
+116936,340911.0205,411675.5111,461228.1424,17.8
+116937,341307.8367,419026.6449,462845.6717,17.8
+116938,340833.5364,418521.3357,465011.192,17.8
+116939,341797.9958,417003.6401,467312.0063,17.8
+116940,341262.9525,81172.39574,467820.8111,20
+116941,1724715.229,1452680.725,2624145.684,20
+116942,639337.6552,602019.3609,1597946.409,20
+116943,203214.8507,445170.7869,283853.955,20
+116944,368675.1212,497861.1654,617180.7335,20
+116945,387070.6969,558376.367,738439.2172,20
+116946,422536.3766,503106.8746,623868.5703,20
+116947,422949.3298,508680.0126,624783.0603,20
+116948,403143.8215,506035.8666,631347.4484,20
+116949,413740.977,507202.9945,633029.9487,20
+116950,412681.3343,506144.9185,633922.8585,20
+116951,413887.822,505487.9183,636853.8258,20
+116952,412889.2517,503720.0758,638728.795,20
+116953,413012.4809,504250.0563,639380.924,20
+116954,413257.7769,503617.3486,642225.3971,20
+116955,413114.088,502797.9651,642289.8445,20
+116956,413568.982,502433.638,644608.5962,20
+116957,412935.457,502202.9094,646881.824,20
+116958,414313.9328,501917.3644,646882.3084,20
+116959,412878.7055,500329.2868,649171.255,20
+116960,413846.3506,503341.406,649999.0898,20
+116961,415141.4165,500745.4662,652217.2457,20
+116962,413650.5518,501083.4605,652740.0339,20
+116963,414430.3622,502287.7623,654411.9893,20
+116964,414869.6082,499876.9988,656090.8757,20
+116965,415315.0244,500454.8509,656676.2638,20
+116966,415113.9596,500691.3555,659205.3048,20
+116967,415166.0945,500408.455,659030.8746,20
+116968,415797.8875,499222.325,660470.8828,20
+116969,416670.5232,500512.13,662636.2714,20
+116970,416445.5333,499894.0486,662507.8038,20
+116971,416205.6972,499154.0449,664081.4296,20
+116972,417676.9291,498502.5614,665101.4967,20
+116973,417197.4139,500432.1496,666341.3941,20
+116974,419084.7012,498632.7393,667795.1737,20
+116975,416842.9426,498795.1235,667274.5598,20
+116976,419928.2036,498669.8153,669595.6479,20
+116977,418209.9941,498932.6565,670683.4961,20
+116978,419870.1888,498569.8268,671209.1283,20
+116979,419074.5444,498501.2494,671579.5194,20
+116980,421600.5063,499138.6525,672811.9247,20
+116981,420150.1266,497103.7486,674281.6578,20
+116982,421105.6637,499748.8285,674512.4652,20
+116983,421710.6075,497341.8089,675288.7958,20
+116984,422329.8765,498476.908,676498.5334,20
+116985,421794.4886,498362.4934,676561.4504,20
+116986,423422.8018,497818.5734,677807.0655,20
+116987,423022.5662,498697.8899,679199.3393,20
+116988,424105.1771,497641.2796,678231.0284,20
+116989,423347.7099,499028.6316,680305.0578,20
+116990,425971.8533,496888.4104,681489.9003,20
+116991,425240.858,499268.2808,681075.7685,20
+116992,425133.4377,496910.4833,681759.3813,20
+116993,426803.7505,499375.2403,682693.8953,20
+116994,425651.6503,497403.5016,683076.0949,20
+116995,427903.4485,497346.0902,684142.0529,20
+116996,427127.0821,498421.7983,684524.324,20
+116997,429269.9476,498306.5265,685237.1152,20
+116998,427164.4535,497672.0475,692562.08,20
+116999,430013.4493,498719.1757,696013.6387,20
+117000,429424.2011,497898.9084,696790.4709,21
+117001,586325.3319,847033.0818,664711.7515,21
+117002,580691.8146,842675.6761,663538.082,21
+117003,579464.734,841552.5933,662154.4008,21
+117004,579311.931,842749.9631,662843.2407,21
+117005,578763.2465,841295.5552,662160.7077,21
+117006,578222.6612,841604.6857,662449.3359,21
+117007,577828.7394,841085.837,662970.6583,21
+117008,576838.2288,841160.7171,663414.0585,21
+117009,577163.095,841908.4529,662332.4679,21
+117010,575022.9036,841494.2344,663351.4887,21
+117011,577039.3231,841131.3195,663140.1501,21
+117012,574709.7103,841886.4536,663165.1464,21
+117013,576024.6672,842448.3473,662960.4187,21
+117014,574633.7756,840752.6709,663304.6809,21
+117015,574083.8005,843091.3411,663843.8739,21
+117016,574022.2966,840957.93,663177.3285,21
+117017,574475.5723,843657.1828,663981.7394,21
+117018,573051.0962,841012.7049,663205.1202,21
+117019,572862.9279,843382.9776,664713.8044,21
+117020,571736.8056,842810.5791,663674.1497,21
+117021,571059.9454,842988.988,663856.6705,21
+117022,569580.7163,843009.1905,664662.0002,21
+117023,571101.0117,844433.158,664026.3908,21
+117024,569332.1483,843438.6894,664542.9916,21
+117025,569351.8958,843290.0132,664397.2052,21
+117026,568870.4416,844736.9342,664345.2634,21
+117027,568561.7861,844367.1151,664718.2026,21
+117028,568698.0673,845694.1348,665721.9578,21
+117029,567544.594,844251.0272,664652.0054,21
+117030,568087.0087,845807.986,664712.4479,21
+117031,567040.6951,845172.6272,665386.09,21
+117032,565600.9081,846172.8138,665238.2203,21
+117033,567061.2871,846064.4426,665797.853,21
+117034,565194.6905,847001.3334,665548.0329,21
+117035,565234.549,846838.6683,665199.614,21
+117036,563925.4287,847144.3169,666074.082,21
+117037,564821.5777,847751.1344,665410.5775,21
+117038,563327.3042,848005.6948,665753.4253,21
+117039,563346.4762,848351.081,665887.6875,21
+117040,563271.9782,848764.024,665385.4444,21
+117041,562244.653,849103.3682,665532.2829,21
+117042,561954.136,848562.3253,666216.9718,21
+117043,561516.0549,850451.6557,661734.49,21
+117044,561690.5163,849745.7641,661056.6869,21
+117045,560448.1113,850312.1769,661808.1621,21
+117046,560553.3667,851270.1253,659926.2761,21
+117047,559590.8295,851214.6385,659918.6051,21
+117048,559749.7641,852162.3446,660642.1392,21
+117049,559269.988,851502.1789,658528.0437,21
+117050,558349.5564,852334.6098,659791.9331,21
+117051,558144.0735,852236.6622,659422.2045,21
+117052,558576.9372,851179.8598,654501.8845,21
+117053,557088.3688,849813.4235,655160.4341,21
+117054,557311.9431,849018.8008,653776.5558,21
+117055,557269.3761,851246.3861,654235.7427,21
+117056,554928.2786,849160.8837,653326.9502,21
+117057,557219.3077,850780.4908,653251.511,21
+117058,555129.9683,850859.4083,652648.0824,21
+117059,554857.1615,850317.7198,652249.3753,21
+117060,554502.1681,850699.3231,652591.9292,21
+117061,418533.2556,718775.6515,472795.0138,21
+117062,416362.299,714089.8406,462600.5386,21
+117063,418113.2572,711925.4067,460270.4859,21
+117064,419685.5609,710626.6737,458740.2863,21
+117065,421316.0844,709415.0222,454458.3205,21
+117066,423716.6633,707455.7506,453509.7076,21
+117067,425418.9901,706876.2027,450683.9298,21
+117068,427427.3371,705100.1506,449285.3295,21
+117069,430790.8686,703885.9579,446532.0796,21
+117070,433344.2278,702719.0467,444766.8237,21
+117071,434730.917,701467.3037,442929.2825,21
+117072,437333.7486,700734.7739,440871.4265,21
+117073,439247.8438,698642.1874,438400.5316,21
+117074,441215.61,698207.3795,437263.3867,21
+117075,443493.885,697274.2469,434498.8939,21
+117076,445646.0623,675007.4224,433114.7284,21
+117077,447789.1207,671451.9243,430717.6588,21
+117078,449943.3201,669744.6607,429078.4751,21
+117079,452206.9141,667460.7649,426955.5294,21
+117080,454228.6953,665074.2874,424922.8996,21
+117081,456850.7079,663831.4046,423114.0224,21
+117082,458931.1368,660819.2061,421738.0401,21
+117083,460912.4082,659732.2705,419354.1606,21
+117084,463763.3085,657267.888,418477.8564,21
+117085,465300.9878,655145.3778,415582.9131,21
+117086,466471.4698,653276.5889,414483.0858,21
+117087,468713.6922,651766.9613,412100.6712,21
+117088,470713.0874,649615.3915,410565.9184,21
+117089,473787.5846,647827.8663,408921.5066,21
+117090,475038.8855,645807.2536,407055.6997,21
+117091,478341.9747,644648.9622,404607.3235,21
+117092,480089.5933,643499.5589,403394.4475,21
+117093,482381.7376,641132.9882,400893.3001,21
+117094,484630.4244,640778.0699,398990.5833,21
+117095,487038.6808,638560.1808,397569.9747,21
+117096,489108.6858,638114.4163,395063.9561,21
+117097,491506.4586,635772.1969,393146.4097,21
+117098,493846.2516,635192.3381,391702.9813,21
+117099,496173.0587,633905.0788,388962.1868,21
+117100,498452.3456,632591.0124,387589.2574,21
+117101,500769.7575,631180.1798,386150.3681,21
+117102,502849.5641,629676.1312,383205.9787,21
+117103,505292.9638,629728.013,382185.811,21
+117104,507755.5382,628281.4675,379719.588,21
+117105,510041.1022,628549.8885,377775.9244,21
+117106,512538.1614,626987.3629,376140.3921,21
+117107,514756.868,626924.3891,374905.1044,21
+117108,517196.5561,626479.9942,372418.0878,21
+117109,519703.5706,625034.9404,370813.3191,21
+117110,522049.0508,624899.4352,369148.1407,21
+117111,524584.4674,624522.4847,366999.2548,21
+117112,526465.1966,623566.6102,365762.1806,21
+117113,529436.9864,623219.8021,363556.8454,21
+117114,531721.9052,622457.5129,362366.1287,21
+117115,533873.0232,621910.6476,359960.765,21
+117116,536536.7126,621852.3799,358076.6914,21
+117117,538997.1904,620922.3177,357131.8093,21
+117118,541380.1702,620493.291,355170.5931,21
+117119,543608.1586,619690.4907,352796.6725,21
+117120,546387.8051,619783.4581,351759.225,21
+117121,546163.2819,617795.4697,348801.8723,21
+117122,546830.1273,616522.313,345639.966,21
+117123,546748.3579,615081.8737,343426.2114,21
+117124,546728.2295,613635.6589,340659.1104,21
+117125,547158.6291,612195.8941,337685.3997,21
+117126,547130.8722,610963.5118,335057.4245,21
+117127,547639.9895,608801.6788,331993.8976,21
+117128,547416.0983,608012.3835,329865.2838,21
+117129,547747.4023,606365.5917,326568.8663,21
+117130,547926.7642,604546.8745,323464.5768,21
+117131,548205.0647,603768.6244,321538.4198,21
+117132,548308.8942,601883.5739,318049.4265,21
+117133,548022.1752,600315.8176,315902.9472,21
+117134,549186.9843,598744.7348,312635.1539,21
+117135,548219.2614,597741.0848,309782.7308,21
+117136,548941.4445,595874.076,307334.1295,21
+117137,549423.194,594718.6578,304600.081,21
+117138,548848.2323,592980.7982,301491.2134,21
+117139,549736.9851,591891.4803,299504.4813,21
+117140,548908.8094,590175.6238,296123.3354,21
+117141,550663.203,588339.7971,293580.8778,21
+117142,549423.774,587823.2722,290767.3538,21
+117143,550161.9099,585602.1227,288495.9533,21
+117144,550257.9985,584292.281,285598.4076,21
+117145,550653.3085,582960.652,282701.0277,21
+117146,550529.5607,581257.4622,280198.2196,21
+117147,551020.7176,580316.8746,276985.3257,21
+117148,550937.9416,578470.4311,274404.4314,21
+117149,551573.3151,577216.7868,272169.3208,21
+117150,551344.3797,575408.0626,268802.4455,21
+117151,551937.0807,574595.8733,266176.9505,21
+117152,551803.5034,572300.1554,263896.303,21
+117153,552670.9972,570578.1328,260378.3206,21
+117154,552045.4874,569030.2759,258421.8301,21
+117155,553325.7035,567179.831,254909.6369,21
+117156,552711.5426,565680.1775,252311.6324,21
+117157,553313.2741,563610.1895,249556.1314,21
+117158,553876.9618,561695.2339,247191.5447,21
+117159,553758.6916,560411.2331,243377.2315,21
+117160,553877.0352,558211.5786,241582.3657,21
+117161,554403.9474,556656.3575,237151.0844,21
+117162,554751.0991,554521.6341,235880.4763,21
+117163,554670.0033,553458.8473,233789.0195,21
+117164,555150.8518,550898.6097,232266.4655,21
+117165,555362.0456,549536.5291,229618.6616,21
+117166,555419.2161,547361.7807,228566.0363,21
+117167,555978.6339,545692.6734,226272.74,21
+117168,556066.512,543892.6764,224391.4527,21
+117169,556334.3878,542198.9423,223326.0311,21
+117170,556722.9886,543606.3201,220184.1306,21
+117171,556539.7606,542504.3856,219524.5908,21
+117172,557413.7863,540866.9042,216993.3857,21
+117173,556868.7182,539539.4172,215422.7748,21
+117174,558063.162,537358.908,213747.444,21
+117175,557317.8168,535907.8468,211612.7523,21
+117176,558469.1921,534073.1725,210152.2739,21
+117177,558090.2296,532353.7079,208339.5134,21
+117178,558712.6541,531124.2808,206183.0885,21
+117179,558404.3093,528767.3843,204905.9521,21
+117180,559327.7096,528119.4533,202543.403,21
+117181,562384.7537,531498.3884,210293.1864,21
+117182,561660.5478,530743.9076,207973.8499,21
+117183,559619.1505,529244.4062,206747.7081,21
+117184,559105.3867,528565.6179,205412.1679,21
+117185,557342.6929,527424.8805,203752.5793,21
+117186,555962.0857,526459.8484,201978.7793,21
+117187,554982.7037,525398.0792,200264.9931,21
+117188,553645.7881,524017.5341,199051.2145,21
+117189,552214.407,523255.5671,197544.6631,21
+117190,550975.4344,522288.5756,196022.735,21
+117191,549762.3422,520766.1596,194166.7535,21
+117192,548463.3706,519916.7292,192841.9166,21
+117193,547092.5952,518953.4567,191273.6307,21
+117194,545354.218,517681.7815,189473.4317,21
+117195,544916.993,516640.4405,188411.7014,21
+117196,543150.8255,515283.0449,186721.739,21
+117197,541610.3472,514924.5871,185000.3204,21
+117198,540836.5559,513045.8708,183934.4661,21
+117199,539208.9672,512066.5735,181915.0913,21
+117200,537935.7933,511334.2974,180463.114,21
+117201,536671.9274,509702.8412,179204.2797,21
+117202,535709.8494,508740.6848,177379.2309,21
+117203,533645.6527,507230.2253,176070.008,21
+117204,532962.9115,506574.5547,174501.8606,21
+117205,531314.7746,504937.7509,173389.6599,21
+117206,530428.3789,504399.7909,171749.1433,21
+117207,528464.1677,502950.3903,170088.0877,21
+117208,527539.6116,501389.3027,169122.0783,21
+117209,526400.4688,501354.8115,168141.3349,21
+117210,524874.2354,499071.7078,166196.709,21
+117211,523394.309,498773.7967,164746.7009,21
+117212,522321.5846,496986.662,162710.9428,21
+117213,520877.0977,496381.9734,158832.5395,21
+117214,519857.4044,494609.2151,156802.1879,21
+117215,518075.4442,493937.7143,154522.7107,21
+117216,516795.3611,492370.6329,152641.1574,21
+117217,516007.0623,491673.3285,150696.3791,21
+117218,514031.9671,490085.7759,148568.8159,21
+117219,512952.6073,489217.3607,144463.7037,21
+117220,511723.2511,487790.221,142414.3749,21
+117221,510105.2787,486715.4532,140210.8322,21
+117222,509310.6908,485658.117,138373.6335,21
+117223,507712.6981,484939.0302,136676.5157,21
+117224,504588.5481,483121.7877,135425.2706,21
+117225,503313.0893,482090.7436,133186.7969,21
+117226,501435.9504,481220.4485,131861.7491,21
+117227,500684.8467,479751.223,130014.7327,21
+117228,498711.0783,478865.5415,127465.4828,21
+117229,498082.8039,477554.3999,125505.7331,21
+117230,496003.0729,476773.6052,123791.3476,21
+117231,495007.9968,475090.4159,121997.6209,21
+117232,493306.0594,474114.1977,120490.7609,21
+117233,492621.0249,473355.3822,118403.7476,21
+117234,490549.392,471760.626,117108.5521,21
+117235,489457.8183,470916.7152,115149.1472,21
+117236,488153.4334,469288.5048,113646.8218,21
+117237,486615.605,468738.7422,111911.8815,21
+117238,485600.6776,467135.8038,110535.0881,21
+117239,483829.5474,466442.9967,109066.4488,21
+117240,482796.8559,464747.9397,43328.02895,21
+117241,476766.791,458224.8983,38715.28589,21
+117242,476235.1633,456390.4443,38076.37269,21
+117243,474856.8991,455395.7251,37418.8657,21
+117244,474517.0939,454424.7334,36564.02945,21
+117245,473081.0666,452882.0119,36275.99447,21
+117246,472647.9529,451670.7521,35529.19478,21
+117247,471474.1474,450689.527,34844.33234,21
+117248,470597.6733,449236.4033,34004.18199,21
+117249,469999.7331,448001.0673,33768.06209,21
+117250,468564.0562,446734.8596,32923.47545,21
+117251,468362.7814,446082.0585,32192.3143,21
+117252,467145.4074,443952.2005,31810.40439,21
+117253,464679.2162,443470.1071,30892.1433,21
+117254,463086.09,441914.1989,30459.33356,21
+117255,462153.532,440749.9632,29758.79308,21
+117256,461466.7888,439266.5982,28536.4223,21
+117257,460370.6338,438512.2413,28177.02291,21
+117258,459142.5912,436764.1925,27317.98715,21
+117259,459027.9845,435871.7668,26672.61854,21
+117260,457292.9346,434447.7392,26364.83955,21
+117261,456970.0791,433360.4898,25943.40648,21
+117262,455428.0172,431855.6099,25242.84554,21
+117263,455003.3301,431005.3626,25198.48503,21
+117264,454236.5662,429137.8101,24220.2237,21
+117265,453087.4416,428505.462,24233.07375,21
+117266,452783.6217,427193.7519,23523.53926,21
+117267,451232.7118,425485.7533,23098.01746,21
+117268,450716.1234,424669.1438,22754.61706,21
+117269,449631.7218,423218.8359,22279.70931,21
+117270,448834.0551,422027.0132,21629.00096,21
+117271,447210.0284,421094.4575,21350.95133,21
+117272,445578.234,420766.6255,20557.00859,21
+117273,443875.4298,419794.68,20126.70699,21
+117274,442403.6651,419437.2314,19485.31923,21
+117275,438580.8176,418553.127,18704.60338,21
+117276,436584.0543,418121.8569,18701.24813,21
+117277,434893.138,417589.6971,18323.35801,21
+117278,432587.8605,416873.1374,17982.4136,21
+117279,431229.3632,416475.3507,17663.73397,21
+117280,428892.0844,416069.9246,17376.44201,21
+117281,428616.9379,415477.5058,17305.58119,21
+117282,427733.287,415086.6957,16700.9418,21
+117283,427178.4888,414337.3228,16667.05473,21
+117284,426533.9251,414254.3021,16091.38542,21
+117285,426227.2575,413663.5195,16000.50034,21
+117286,424278.7114,413052.0544,15708.07966,21
+117287,424100.6146,412892.6976,15357.91296,21
+117288,423074.2735,412530.4633,15063.45797,21
+117289,422985.1417,411699.9492,14859.64614,21
+117290,422422.1904,411604.2493,14353.47465,21
+117291,421354.5553,411140.1351,14221.39835,21
+117292,421197.0249,410789.9433,13935.59983,21
+117293,420337.9815,410281.1066,13607.71237,21
+117294,420115.7949,410313.4452,13249.81165,21
+117295,419426.2177,409407.7386,13173.53275,21
+117296,418925.514,409428.8612,12642.18271,21
+117297,418294.887,409002.4256,12494.57788,21
+117298,418412.9566,408463.9973,12217.94199,21
+117299,417529.3783,408479.4565,11854.69702,21
+117300,417534.2633,407814.6216,11675.44149,21
+117301,433629.5096,432405.1983,18245.63642,21
+117302,433150.0434,433163.2187,18104.37235,21
+117303,431345.691,433033.3908,18084.85952,21
+117304,429232.9745,433729.7671,17711.69511,21
+117305,428211.9451,433697.9922,17585.86118,21
+117306,426580.1077,434232.7743,17374.20645,21
+117307,425537.0742,434429.705,17108.44097,21
+117308,423628.4806,434550.9636,17006.52599,21
+117309,422656.2512,435237.9707,16591.92526,21
+117310,420868.6383,435480.8019,16554.70655,21
+117311,419504.8149,435597.9017,16192.12049,21
+117312,418228.4322,436615.9825,16159.82008,21
+117313,416719.0374,436173.4373,15922.28574,21
+117314,415238.7769,436959.479,15760.16694,21
+117315,413870.5274,437027.1136,15448.40759,21
+117316,412467.8283,437484.2938,15123.25679,21
+117317,410926.6388,438237.2083,15101.50425,21
+117318,409350.2788,437876.3264,14883.6899,21
+117319,407736.5826,438677.0288,14443.37587,21
+117320,406458.4315,439079.9161,14408.59014,21
+117321,404510.7044,439305.2387,14218.43292,21
+117322,403188.6141,439483.8926,13884.74012,21
+117323,401588.5618,440232.671,13558.2908,21
+117324,398763.4217,440257.3796,13362.12894,21
+117325,397629.3225,440470.4429,13046.56149,21
+117326,395336.3393,441235.6432,12721.72999,21
+117327,393684.2671,441453.1656,12659.69855,21
+117328,391459.494,441296.5001,12376.306,21
+117329,389983.3824,442231.5038,12142.77146,21
+117330,387376.9331,442437.0625,11971.46657,21
+117331,385837.6177,442819.7715,11650.94211,21
+117332,384340.997,442885.887,11594.65165,21
+117333,382403.5073,443731.5848,11285.80711,21
+117334,381234.0576,443828.2154,10983.23385,21
+117335,378936.6496,444736.8976,11149.73702,21
+117336,376991.4499,444603.479,10602.02879,21
+117337,375467.0589,445365.5494,10577.02759,21
+117338,373530.8387,445748.2904,10190.30202,21
+117339,371533.3047,446253.1624,10322.26379,21
+117340,370479.9298,446510.689,9875.900691,21
+117341,367805.5529,447092.5688,9777.541566,21
+117342,366628.0512,447379.8972,9516.095992,21
+117343,365177.9227,448215.5297,9417.148841,21
+117344,362969.7302,448232.8697,9259.382025,21
+117345,360981.4655,448859.3781,8936.557613,21
+117346,359715.4326,449493.6928,8882.826328,21
+117347,357570.5131,449954.8663,8706.79592,21
+117348,355963.3761,450187.0546,8355.89209,21
+117349,354277.5057,450775.2313,8356.836328,21
+117350,352770.1898,451368.7681,7973.238609,21
+117351,350927.5902,451670.9088,7991.191151,21
+117352,349490.0807,452291.7482,7560.35939,21
+117353,347741.7169,452777.9496,7114.736164,21
+117354,345798.6076,453023.1962,7069.848221,21
+117355,344400.8506,453711.7236,6877.947799,21
+117356,342711.2395,454028.4341,6680.236561,21
+117357,340738.3052,454954.3596,6502.786602,21
+117358,339801.3509,454609.9402,6305.342621,21
+117359,337594.1873,455866.7219,6140.097057,21
+117360,336367.6161,455930.0774,5927.7869,21
+117361,318680.7798,431672.2405,963.9592842,21
+117362,318285.181,430513.0659,963.9717936,21
+117363,319424.3493,430894.8433,930.5781734,21
+117364,319192.144,430113.3873,897.0697219,21
+117365,320460.9887,430292.8482,897.0805816,21
+117366,320565.4696,430000.8549,880.2874223,21
+117367,321587.501,429884.0644,846.6003674,21
+117368,321941.5588,429260.3069,829.7157161,21
+117369,323052.3765,429409.1605,829.725029,21
+117370,323175.0455,429074.7128,778.8631454,21
+117371,323727.267,428770.2239,795.8602615,21
+117372,324774.2543,429568.4919,761.8583548,21
+117373,325085.5768,429394.6845,727.7239939,21
+117374,326197.8803,429330.7208,710.6092251,21
+117375,326449.3659,428623.1585,676.2674537,21
+117376,327343.8274,428895.298,659.0457107,21
+117377,328472.1823,428469.6073,641.7869179,21
+117378,328754.5015,428264.4446,624.4903491,21
+117379,329201.9108,428232.464,607.1552387,21
+117380,330237.6186,428027.4297,572.3615094,21
+117381,330555.3771,428014.4552,589.7853992,21
+117382,331403.2477,427440.1439,537.4084005,21
+117383,331869.1207,427605.4724,537.4123527,21
+117384,332726.7847,427529.4356,519.871395,21
+117385,333594.0019,426385.326,502.2862404,21
+117386,333752.1789,426395.4401,466.9754824,21
+117387,334413.4658,425854.6513,484.6588325,21
+117388,334939.3824,426181.1122,431.4762946,21
+117389,335416.3817,425678.6549,395.7705757,21
+117390,336073.4514,425720.5649,341.7976594,21
+117391,336622.9263,425652.487,341.7992715,21
+117392,337520.4645,424910.8316,359.8505217,21
+117393,338418.8626,424580.4498,377.8435267,21
+117394,338739.9032,424287.9762,341.8043444,21
+117395,339116.171,424023.7763,341.8059565,21
+117396,340276.3213,423730.7792,305.5218745,21
+117397,340337.9884,423046.0397,323.6979499,21
+117398,341675.4681,422939.0696,287.2828896,21
+117399,341873.6228,422226.9824,268.972123,21
+117400,342674.6259,422363.4534,268.9731247,21
+117401,344061.7677,421347.6681,250.5879969,21
+117402,344084.9803,421338.839,250.5888671,21
+117403,344998.1424,420835.2893,213.576551,21
+117404,345640.3974,420401.0125,213.5771843,21
+117405,346110.036,420107.7839,213.5778176,21
+117406,347361.8847,419478.5848,176.2053614,21
+117407,348174.8171,419397.4343,176.2057933,21
+117408,348570.1546,418633.3325,157.3659985,21
+117409,350482.8362,418211.1992,119.3253065,21
+117410,350185.5074,418178.5825,138.4105627,21
+117411,351373.9976,417444.2314,100.0942923,21
+117412,351684.2741,416979.1638,100.0944322,21
+117413,352906.3698,416632.8459,119.3260701,21
+117414,353479.5565,416323.1098,61.08697232,21
+117415,354273.5252,415801.5593,80.69323233,21
+117416,354703.1217,415343.641,51.19119025,21
+117417,356755.1111,415156.961,41.22047461,21
+117418,356249.3567,414020.677,10.6499269,21
+117419,357318.1625,414486.9692,0,21
+117420,358175.0271,413404.0809,0,21
+117421,363551.5713,418183.0013,0,21
+117422,364122.8792,417731.2283,0,21
+117423,364202.9315,417945.4485,0,21
+117424,364662.829,416836.9038,0,21
+117425,365090.7111,417341.4966,0,21
+117426,365312.0107,416299.0096,0,21
+117427,365613.8774,416219.4228,0,21
+117428,365561.3115,415780.1985,0,21
+117429,365988.9192,415517.5433,0,21
+117430,366102.8326,415229.9838,0,21
+117431,366486.6467,414494.1044,0,21
+117432,366620.6156,414451.0083,0,21
+117433,366742.4667,414183.4144,0,21
+117434,367259.887,413372.2537,0,21
+117435,367788.2809,413181.1739,0,21
+117436,367404.9012,413031.1512,0,21
+117437,367913.2472,412156.4196,0,21
+117438,367744.5443,412095.8991,0,21
+117439,368361.187,411573.3759,0,21
+117440,368552.2371,411382.124,0,21
+117441,368708.296,410802.9336,0,21
+117442,369102.042,410428.1481,0,21
+117443,369283.0373,410087.3438,0,21
+117444,370005.4693,409328.3708,0,21
+117445,369687.4085,409479.196,0,21
+117446,370027.8738,408643.2616,0,21
+117447,370494.5375,408539.3364,0,21
+117448,370451.3483,407792.8673,0,21
+117449,370600.7487,407650.3208,0,21
+117450,371582.2174,407043.934,0,21
+117451,371162.5238,407070.42,0,21
+117452,371354.7315,406244.7174,0,21
+117453,371792.31,406549.5882,0,21
+117454,371431.9736,406231.0542,0,21
+117455,371495.871,405760.9717,0,21
+117456,371489.0002,405800.3299,0,21
+117457,371739.1715,405366.9647,0,21
+117458,371573.8837,405440.2476,0,21
+117459,371634.0385,405112.9912,0,21
+117460,371951.1404,404663.6919,0,21
+117461,371387.9454,404594.7436,0,21
+117462,372393.4225,404734.4693,0,21
+117463,371621.8103,404278.6881,0,21
+117464,371884.7929,404184.4057,0,21
+117465,371507.4009,403545.3622,0,21
+117466,371753.5375,404066.2943,0,21
+117467,371699.4338,403588.4289,0,21
+117468,371386.8913,403522.7983,0,21
+117469,371505.8767,403106.4184,0,21
+117470,371572.5431,403186.1113,0,21
+117471,371925.9786,402746.6237,0,21
+117472,371255.1638,403653.4391,0,21
+117473,371257.1784,403165.839,0,21
+117474,371073.2688,403280.6566,0,21
+117475,370978.8201,403126.1815,0,21
+117476,371057.3941,402748.6956,0,21
+117477,370652.2219,402778.8253,0,21
+117478,370717.4042,402606.0945,0,21
+117479,370632.7611,402645.8941,0,21
+117480,370626.8972,402432.0887,0,21
+117481,365057.4715,397524.0086,0,21
+117482,364077.6252,398054.8818,0,21
+117483,364187.1856,398009.0595,0,21
+117484,363655.5782,398456.5716,0,21
+117485,363459.9141,398913.085,0,21
+117486,363003.4683,398705.1505,0,21
+117487,362905.9491,399394.8901,0,21
+117488,362279.6122,399754.1479,0,21
+117489,362036.7466,399743.7492,0,21
+117490,362048.7193,400307.36,0,21
+117491,361356.9725,400572.1514,0,21
+117492,361152.7326,400847.3867,0,21
+117493,360823.3167,401230.7939,0,21
+117494,360410.7688,401312.0026,0,21
+117495,360079.8583,402129.8457,0,21
+117496,359599.836,401881.7305,0,21
+117497,359652.1961,402696.0919,0,21
+117498,358815.0836,402907.4881,0,21
+117499,358644.3554,403103.8233,0,21
+117500,358208.4598,403620.0873,0,21
+117501,357732.6226,402887.8669,0,21
+117502,357495.4642,403512.5469,0,21
+117503,356943.304,403759.0619,0,21
+117504,357298.3565,404166.3746,0,21
+117505,356022.4717,404296.2786,0,21
+117506,355785.4394,405020.6479,0,21
+117507,355419.0582,404945.7548,0,21
+117508,355028.8389,405677.5221,0,21
+117509,354289.9647,405674.215,0,21
+117510,354094.1308,406338.4279,0,21
+117511,353665.7692,406326.1428,0,21
+117512,353444.3069,407139.0039,0,21
+117513,352884.2253,407029.4556,0,21
+117514,352807.5638,407979.7941,0,21
+117515,352089.4819,407892.1704,0,21
+117516,352151.4787,408619.5448,0,21
+117517,351449.2273,408990.545,0,21
+117518,351509.5282,409243.6634,0,21
+117519,350749.7236,409710.3924,0,21
+117520,350528.0708,410275.8878,0,21
+117521,350286.8406,410574.0789,0,21
+117522,350000.8333,410984.9434,0,21
+117523,349263.66,411484.3494,0,21
+117524,349322.343,411612.47,0,21
+117525,348589.6079,412682.4942,0,21
+117526,348459.4589,412381.9299,0,21
+117527,348155.0803,413143.4717,0,21
+117528,347736.1143,413879.9956,0,21
+117529,347197.9466,413820.1886,0,21
+117530,346964.6082,414533.7509,0,21
+117531,346691.536,414711.989,0,21
+117532,346196.26,415388.0658,0,21
+117533,345768.3803,415923.1137,0,21
+117534,344568.1141,416154.0784,0,21
+117535,343965.8239,416773.5423,0,21
+117536,343831.9274,417152.9038,0,21
+117537,342911.8411,417345.4652,0,21
+117538,342602.5882,418338.1436,0,21
+117539,342255.4198,418373.3704,0,21
+117540,341899.2655,418843.7052,0,21
+117541,341299.4842,419373.3221,0,21
+117542,340752.099,418964.3037,0,21
+117543,340265.1998,419608.1655,0,21
+117544,339793.1691,419347.5364,0,21
+117545,339245.7889,419593.5332,0,21
+117546,338842.7176,419913.7417,0,21
+117547,337994.3357,419988.1171,0,21
+117548,338063.5508,420139.173,0,21
+117549,337292.8307,420225.8186,0,21
+117550,336543.7678,420552.6697,0,21
+117551,336137.419,420331.983,0,21
+117552,335613.4159,421030.9976,0,21
+117553,335259.2304,420794.6948,0,21
+117554,334329.3601,420823.1106,0,21
+117555,334231.7883,421396.7965,0,21
+117556,333375.3406,421292.9334,0,21
+117557,333555.5728,421391.531,0,21
+117558,332810.9913,421585.229,0,21
+117559,332409.4131,421593.9928,0,21
+117560,332523.105,422141.6745,0,21
+117561,332443.3303,422016.5063,0,21
+117562,332317.653,422273.1757,0,21
+117563,332475.1077,422394.9315,0,21
+117564,332321.0632,422449.437,0,21
+117565,332141.5907,422748.3125,0,21
+117566,332880.6515,422916.1992,0,21
+117567,331967.8309,422816.3591,0,21
+117568,332214.8478,423393.6239,0,21
+117569,332060.1232,423401.6098,0,21
+117570,331935.8941,423371.7527,0,21
+117571,332081.506,423852.1964,0,21
+117572,332068.2993,423776.0938,0,21
+117573,331893.3301,424051.1154,0,21
+117574,332031.7352,424265.1371,0,21
+117575,332613.3218,424216.2137,0,21
+117576,332171.7689,424647.4781,0,21
+117577,331829.0913,424918.5242,0,21
+117578,332218.8942,424652.7309,0,21
+117579,332032.2666,424994.7365,0,21
+117580,332318.4101,425617.1289,0,21
+117581,332084.1714,425170.4704,0,21
+117582,332243.0055,425759.1025,0,21
+117583,332181.903,425832.9774,0,21
+117584,332415.6334,425794.8459,0,21
+117585,332316.8159,426686.7114,0,21
+117586,332496.1969,426096.4474,0,21
+117587,332242.8153,426764.0806,0,21
+117588,332753.7282,426725.5022,0,21
+117589,332466.2908,426752.4014,0,21
+117590,332579.0318,427325.0389,0,21
+117591,332683.3965,427280.5147,0,21
+117592,332744.2031,427438.5436,0,21
+117593,332934.9215,428069.4463,0,21
+117594,332831.3738,427449.7174,0,21
+117595,333117.4262,428321.044,0,21
+117596,332936.8635,428353.8102,0,21
+117597,333111.6094,428434.5848,0,21
+117598,333377.0351,428821.7387,0,21
+117599,333239.3468,428946.0567,0,21
+117600,333665.3711,429212.1528,0,21
+117601,362935.5761,485800.6167,0,21
+117602,366086.6367,488658.3462,0,21
+117603,367302.2887,490227.9768,0,21
+117604,368869.8278,491471.1582,0,21
+117605,370301.1847,492413.7244,0,21
+117606,372352.3647,492710.5643,0,21
+117607,373495.7362,495081.9989,0,21
+117608,375434.8574,495027.3201,0,21
+117609,376895.7099,496336.6519,0,21
+117610,379921.7435,498395.2283,0,21
+117611,380865.9075,498656.3999,0,21
+117612,383491.6112,500099.7634,0,21
+117613,386754.919,501083.377,0,21
+117614,387533.3598,502310.3775,0,21
+117615,389840.9009,502859.7452,0,21
+117616,391519.9587,503978.5327,0,21
+117617,393530.4465,505442.2659,0,21
+117618,395371.5391,506150.2525,0,21
+117619,396956.697,507011.0312,0,21
+117620,398914.1286,507945.6272,0,21
+117621,400672.2749,508783.3077,0,21
+117622,402300.0623,509892.2651,0,21
+117623,404396.232,510531.0287,0,21
+117624,405732.2292,511579.1512,0,21
+117625,407882.0512,512274.1214,0,21
+117626,409073.2798,512986.8098,0,21
+117627,411201.213,514340.6187,0,21
+117628,412670.8374,514463.5169,0,21
+117629,414447.7063,515440.8229,0,21
+117630,416265.4848,516576.1735,0,21
+117631,417793.915,517299.2725,0,21
+117632,419773.9324,519479.8218,0,21
+117633,421032.2801,518875.9169,0,21
+117634,423155.0537,520524.2803,0,21
+117635,424757.6985,520887.9376,0,21
+117636,426389.555,522010.4443,0,21
+117637,428038.9657,522526.1408,0,21
+117638,430061.4719,523078.3917,0,21
+117639,431378.7101,523912.1609,0,21
+117640,433417.5895,524574.0192,0,21
+117641,434904.3819,525480.7135,0,21
+117642,436593.7461,525674.8012,0,21
+117643,438418.3391,527136.8755,0,21
+117644,443415.8861,526738.9375,0,21
+117645,447038.2958,528015.2996,0,21
+117646,447742.9987,528629.2185,0,21
+117647,451107.13,528953.9223,0,21
+117648,453492.054,530065.2505,0,21
+117649,455597.4564,530392.9561,0,21
+117650,458201.0937,531084.9205,0,21
+117651,460762.1853,531387.1658,0,21
+117652,462773.1408,532568.7268,0,21
+117653,465125.5346,532366.4985,0,21
+117654,467814.1553,533361.946,0,21
+117655,469939.0159,534068.1803,0,21
+117656,472277.4649,534380.7495,0,21
+117657,474562.9327,535073.0488,0,21
+117658,476996.0137,535508.9633,0,21
+117659,479316.4531,536252.0208,0,21
+117660,481418.8276,536731.2456,0,21
+117661,500673.5509,558557.4444,0,21
+117662,502841.617,560989.2191,0,21
+117663,503954.568,561914.1728,0,21
+117664,505698.1182,561741.2533,0,21
+117665,506591.1111,563089.0948,3996.770678,21
+117666,507896.6444,563128.5251,3574.705583,21
+117667,509163.7878,564076.4772,3433.356381,21
+117668,510503.1364,564317.3363,3856.966271,21
+117669,511616.8594,564811.5076,4277.369556,21
+117670,512825.1812,565960.6596,4417.01261,21
+117671,513725.6984,565606.448,4695.110868,21
+117672,515508.4796,566605.3606,4972.014727,21
+117673,516368.811,567004.4496,5110.211562,21
+117674,517345.2007,567491.4532,5522.449663,21
+117675,519229.2694,567878.3005,5522.862397,21
+117676,519495.2144,568206.0511,5796.520931,21
+117677,521186.5905,568912.1359,6340.358717,21
+117678,521832.3728,568916.2347,6205.424795,21
+117679,523618.4966,569913.9937,6746.416721,21
+117680,524034.2242,569746.7829,6747.027925,21
+117681,525416.1424,570134.3073,7016.488357,21
+117682,526337.8353,571028.2862,7285.101397,21
+117683,527457.909,571051.288,7552.8945,21
+117684,528403.139,571134.8429,7827.727793,21
+117685,530099.7392,572217.2611,8151.886845,21
+117686,530552.0212,571547.9613,8266.33306,21
+117687,531757.8468,572596.2125,8569.904532,21
+117688,532878.373,572587.5548,8872.391881,21
+117689,533971.9055,573154.6106,9042.410136,21
+117690,534844.0828,572941.1948,9306.236638,21
+117691,536047.1931,573985.7379,9624.848438,21
+117692,536885.182,573123.3773,9626.072233,21
+117693,537663.7225,574442.3679,10064.78592,21
+117694,538836.0385,574065.4712,10205.45189,21
+117695,539162.8922,574374.6333,10503.07179,21
+117696,541189.787,574494.8058,10540.63085,21
+117697,541503.3443,574800.082,10930.76808,21
+117698,542580.8853,574857.2685,11097.48245,21
+117699,543435.2292,575149.1813,11392.81396,21
+117700,544419.9321,575152.7285,11412.30973,21
+117701,545011.6215,575542.6648,11945.8869,21
+117702,546145.9215,575401.9755,11726.37115,21
+117703,547099.7863,575729.3637,12386.60232,21
+117704,547764.9159,575894.0731,12295.89734,21
+117705,548866.7229,575771.7953,12681.01612,21
+117706,549757.9774,575851.5466,12862.99396,21
+117707,550178.5246,576186.0063,12882.54924,21
+117708,551647.8547,576173.1315,13410.40645,21
+117709,552033.7532,576336.1308,13430.07251,21
+117710,552906.096,576851.8845,13610.9998,21
+117711,554046.5,576193.773,13866.46503,21
+117712,554497.5255,576917.6843,14155.88769,21
+117713,555667.3743,576731.2504,14301.68593,21
+117714,556404.1263,576718.7001,14338.5345,21
+117715,556872.9735,576555.7155,14861.27376,21
+117716,558284.9519,576445.6162,14881.12779,21
+117717,558529.2296,576751.5921,14917.95117,21
+117718,559539.4762,576194.0676,15455.74505,21
+117719,560540.0195,576308.2272,15458.76358,21
+117720,561421.3916,574950.6935,15745.38304,21
+117721,564513.8068,578173.33,15906.91881,21
+117722,565018.4217,580895.8176,16192.77769,21
+117723,566872.1058,581782.8441,16320.43562,21
+117724,568204.397,583997.5466,16746.35942,21
+117725,569781.6878,586146.827,16890.43781,21
+117726,571249.788,587457.651,17051.08192,21
+117727,572703.2253,589869.2229,17441.9845,21
+117728,574511.9159,591348.1904,17495.46416,21
+117729,575248.288,593153.3764,17745.84368,21
+117730,577966.1956,595389.4035,18028.90044,21
+117731,579229.1696,596784.8665,18311.53897,21
+117732,580820.5068,598972.8695,18593.76784,21
+117733,582134.1965,600247.5469,18614.40775,21
+117734,583511.5147,602967.9559,18896.2628,21
+117735,585051.3599,603836.4925,19405.38072,21
+117736,586708.6645,606041.1741,19214.81762,21
+117737,591108.7818,608161.6194,19707.02161,21
+117738,593819.5503,609556.4248,20003.63619,21
+117739,595017.4979,611396.3489,20024.67838,21
+117740,596369.8432,613407.5767,20304.71722,21
+117741,598017.1552,615102.3632,20689.33748,21
+117742,598756.3386,616698.3439,20863.75677,21
+117743,600700.8486,618914.1022,21126.70994,21
+117744,601446.1852,620241.9678,21164.12772,21
+117745,604421.3726,622843.7665,21667.72774,21
+117746,606448.8208,623831.4012,21841.5534,21
+117747,607719.782,626093.1177,21967.46187,21
+117748,608589.9141,627387.372,22391.97426,21
+117749,609946.4159,629675.418,26050.20814,21
+117750,613475.5191,630951.5909,24734.99157,21
+117751,613623.668,633251.8243,25560.72543,21
+117752,615516.0964,634491.5763,26689.60257,21
+117753,616523.6824,636006.1703,26964.20204,21
+117754,617254.0904,638449.4349,27510.91842,21
+117755,618631.2285,640390.5785,28182.65237,21
+117756,619466.2118,642307.6721,28601.79933,21
+117757,620776.2132,644232.9188,29114.26495,21
+117758,621767.6631,645545.7376,29908.72559,21
+117759,622635.5184,647675.1981,30165.90283,21
+117760,623835.005,648886.3669,30926.61469,21
+117761,624762.2481,651177.0331,31262.50853,21
+117762,625815.7713,652471.7051,31737.07953,21
+117763,626616.2022,653276.9204,32759.18114,21
+117764,627695.4328,655324.8844,32797.90385,21
+117765,628638.2857,656618.9644,33329.34121,21
+117766,629717.8635,658313.8741,34301.97685,21
+117767,631037.0501,660159.0641,35728.672,21
+117768,630954.012,661630.1593,36936.62893,21
+117769,632520.1024,663156.8132,37100.16072,21
+117770,634028.5709,665434.2013,37632.16818,21
+117771,633726.0251,666463.5266,38358.0641,21
+117772,635368.7775,668150.439,38655.06178,21
+117773,636534.1294,670220.6991,39170.56011,21
+117774,636734.6865,671342.2492,39687.68141,21
+117775,638191.2792,673564.5926,40308.92472,21
+117776,638762.5891,674762.0273,40691.42751,21
+117777,639647.1697,676500.9356,41119.39419,21
+117778,640392.5907,678135.4527,41516.93738,21
+117779,641551.8689,680003.1249,42223.90219,21
+117780,642368.8999,681512.3626,42533.57518,21
+117781,645758.7014,684236.3556,44469.03749,21
+117782,647827.7649,685917.6755,45663.14564,21
+117783,648869.9116,685870.6723,45713.76906,21
+117784,649758.7586,687021.4469,46253.40691,21
+117785,651413.0679,687395.7024,46609.76502,21
+117786,652254.2532,688280.7416,46785.19228,21
+117787,653626.0881,688515.0866,47532.60136,21
+117788,654353.4219,689475.8005,47567.69745,21
+117789,655864.9342,689987.3262,48298.2812,21
+117790,657066.4062,689969.3182,48143.03437,21
+117791,657734.445,691506.5868,48862.6373,21
+117792,659417.7113,691493.0644,49124.16941,21
+117793,659971.6473,692325.9572,49583.9074,21
+117794,661352.9625,692536.127,49754.27783,21
+117795,662583.6983,693642.4978,50122.50271,21
+117796,663701.6638,693960.7277,50751.91264,21
+117797,664394.4835,694184.4968,50479.64451,21
+117798,666080.9832,694956.994,51398.61958,21
+117799,666478.924,695825.6569,51244.64336,21
+117800,668218.0747,696113.663,51733.85203,21
+117801,668515.0507,696424.2929,52079.36705,21
+117802,670564.7652,697387.9304,52309.36866,21
+117803,670312.3318,697541.6358,52833.75413,21
+117804,672718.4422,698475.3825,52700.68605,21
+117805,673072.5525,698593.1404,53427.65882,21
+117806,674102.3723,699044.9786,53505.97102,21
+117807,675340.5746,700185.9719,53954.156,21
+117808,676122.6798,700045.4464,54258.95366,21
+117809,677345.722,701002.0725,55000.99877,21
+117810,678429.4969,701275.6074,54758.26793,21
+117811,677519.1753,701803.2318,55481.14251,21
+117812,678496.7501,702565.4918,55651.54808,21
+117813,679657.3115,702256.7324,56155.01746,21
+117814,680620.2362,703956.6021,56065.19386,21
+117815,681494.6357,703692.4148,56817.44804,21
+117816,682477.2974,704073.5874,56723.90844,21
+117817,683869.5043,704973.2064,57458.26008,21
+117818,683948.7312,705211.4993,57354.90718,21
+117819,685864.3624,705958.1078,57716.50382,21
+117820,686378.2432,707331.6096,58200.938,21
+117821,687409.0762,707557.7503,58559.53496,21
+117822,688351.5707,708762.5048,58413.40697,21
+117823,689397.0584,708667.9553,58989.53661,21
+117824,690279.4244,709383.111,59492.22477,21
+117825,691617.7593,709497.9485,59187.42202,21
+117826,692097.9274,710599.5483,60148.06952,21
+117827,693265.404,710660.4752,59793.42009,21
+117828,693975.215,711142.351,60336.02327,21
+117829,695222.9139,712015.6809,60664.22598,21
+117830,696394.3955,711717.6642,60996.0062,21
+117831,696432.3639,712738.4391,61050.81349,21
+117832,698315.3953,713231.7589,61629.33597,21
+117833,699005.8574,713615.3077,61464.66094,21
+117834,699478.7175,714060.8928,62174.12422,21
+117835,700831.7696,714078.6824,62425.18562,21
+117836,701950.2214,715534.4508,62849.19384,21
+117837,702249.0735,715560.2899,62869.879,21
+117838,703881.3912,715265.3342,63133.43977,21
+117839,704321.3852,716906.1954,64179.35729,21
+117840,705496.4028,716686.7398,65817.22844,21
+117841,706069.0107,717061.8028,65679.87928,21
+117842,706790.8581,718037.2694,66270.80586,21
+117843,708743.6754,717964.1302,67111.91493,21
+117844,716159.2275,721818.7222,67424.41075,21
+117845,712876.3732,725095.7364,67997.10401,21
+117846,716141.5896,725159.854,68767.10387,21
+117847,715278.4251,725053.0535,69155.08994,21
+117848,718861.2017,727388.752,69473.30349,21
+117849,718700.6518,727308.8179,70546.9766,21
+117850,719688.2644,728576.3755,70506.07918,21
+117851,720899.2701,730101.7068,71071.3306,21
+117852,722664.8361,730207.2378,72052.19511,21
+117853,722428.9381,731818.3062,72208.74623,21
+117854,725474.4252,732313.931,72773.39779,21
+117855,724006.8612,732102.4622,73291.82261,21
+117856,727062.6931,735170.6453,73721.03445,21
+117857,727487.8537,733558.7647,74437.16906,21
+117858,728534.1324,736397.5239,74801.11346,21
+117859,728637.7953,736057.2875,75094.87514,21
+117860,732598.164,737632.3107,75845.60801,21
+117861,733818.6061,737473.6427,76443.65096,21
+117862,733394.0951,739887.025,76277.33256,21
+117863,735938.381,739683.3548,77608.28379,21
+117864,736090.3489,740326.836,77330.80543,21
+117865,738128.8063,742047.1526,78351.60944,21
+117866,737062.1771,741918.8985,78530.04775,21
+117867,739946.3185,742522.4711,79174.85523,21
+117868,740206.9264,743830.3195,79510.63342,21
+117869,740940.7619,744731.3875,79908.529,21
+117870,742805.4527,745785.5421,80567.03841,21
+117871,742447.6401,744363.7557,80860.09152,21
+117872,745047.4606,745862.806,81332.14642,21
+117873,743956.721,746767.5123,81976.67112,21
+117874,746675.6117,747082.3648,81957.51087,21
+117875,746606.7984,747610.2541,82753.26535,21
+117876,748465.5791,749590.1179,83369.92685,21
+117877,748298.3123,749172.5735,83418.09775,21
+117878,749923.1548,750133.4047,83998.79718,21
+117879,750737.0278,751142.1739,84456.64764,21
+117880,751544.0524,751773.3754,84726.99878,21
+117881,752377.7285,752339.5196,85502.38519,21
+117882,753963.3039,753875.4104,85768.10456,21
+117883,754422.2198,753635.5589,85981.57403,21
+117884,755154.9558,754191.2211,86631.57027,21
+117885,756091.6223,755567.1522,86993.36766,21
+117886,756934.2978,756155.6232,87375.98514,21
+117887,758125.5779,756652.5871,88029.33477,21
+117888,758566.0877,757836.9873,87896.44199,21
+117889,760079.2526,758224.9,88833.50233,21
+117890,760485.4229,758550.5022,88988.72366,21
+117891,761355.1121,759401.8261,89589.54589,21
+117892,762685.2281,760898.2892,89529.11994,21
+117893,762667.6533,759870.9719,90516.89988,21
+117894,763743.132,761995.4515,90439.85545,21
+117895,765526.2911,762800.6587,91040.4928,21
+117896,765978.2703,762586.7204,91643.0644,21
+117897,766311.0991,763968.3131,91640.08762,21
+117898,767171.5421,764331.9349,92429.60747,21
+117899,768584.4323,764639.3362,92451.22766,21
+117900,768799.5187,766082.5742,92924.81614,21
+117901,0,0,0,21
+117902,0,0,0,21
+117903,0,146.704077,0,21
+117904,0,0,0,21
+117905,0,0,0,21
+117906,0,0,1365290.338,21
+117907,0,0,0,21
+117908,0,0,0,21
+117909,0,65.53066426,0,21
+117910,339302.1459,368195.3245,0,21
+117911,0,0,0,21
+117912,0,421.0940935,0,21
+117913,0,0,0,21
+117914,0,0,0,21
+117915,0,0,0,21
+117916,0,0,0,21
+117917,0,0,0,21
+117918,0,0,0,21
+117919,0,0,0,21
+117920,0,0,0,21
+117921,0,0,0,21
+117922,0,0,0,21
+117923,0,0,0,21
+117924,0,0,0,21
+117925,0,0,0,21
+117926,0,0,0,21
+117927,0,0,0,21
+117928,0,0,0,21
+117929,0,0,0,21
+117930,0,0,0,21
+117931,0,0,0,21
+117932,0,0,0,21
+117933,0,0,0,21
+117934,0,0,0,21
+117935,0,0,0,21
+117936,0,0,0,21
+117937,0,0,0,21
+117938,0,0,0,21
+117939,0,0,0,21
+117940,0,0,0,21
+117941,0,0,1305442.281,21
+117942,0,0,0,21
+117943,0,0,0,21
+117944,0,0,0,21
+117945,0,0,0,21
+117946,339302.2394,368190.7984,0,21
+117947,0,0,0,21
+117948,0,0,0,21
+117949,0,0,0,21
+117950,0,0,0,21
+117951,0,0,0,21
+117952,0,0,0,21
+117953,0,0,0,21
+117954,0,0,0,21
+117955,0,0,0,21
+117956,0,0,0,21
+117957,0,0,0,21
+117958,0,0,0,21
+117959,0,0,0,21
+117960,0,0,0,15.6
+117961,0,0,0,15.6
+117962,0,0,0,15.6
+117963,0,0,0,15.6
+117964,0,0,0,15.6
+117965,0,0,0,15.6
+117966,0,0,0,15.6
+117967,0,0,0,15.6
+117968,0,0,0,15.6
+117969,0,0,0,15.6
+117970,0,0,0,15.6
+117971,0,0,0,15.6
+117972,0,0,0,15.6
+117973,0,0,0,15.6
+117974,0,0,0,15.6
+117975,0,0,0,15.6
+117976,0,0,1250799.626,15.6
+117977,0,0,0,15.6
+117978,0,0,0,15.6
+117979,0,0,0,15.6
+117980,0,0,0,15.6
+117981,0,0,0,15.6
+117982,339305.3129,368186.7692,0,15.6
+117983,0,0,0,15.6
+117984,0,0,0,15.6
+117985,0,0,0,15.6
+117986,0,0,0,15.6
+117987,0,0,0,15.6
+117988,0,0,0,15.6
+117989,0,0,0,15.6
+117990,0,0,0,15.6
+117991,0,0,0,15.6
+117992,0,0,0,15.6
+117993,0,0,0,15.6
+117994,0,0,0,15.6
+117995,0,0,0,15.6
+117996,0,0,0,15.6
+117997,0,0,0,15.6
+117998,0,0,0,15.6
+117999,0,0,0,15.6
+118000,0,0,0,15.6
+118001,0,0,0,15.6
+118002,0,0,0,15.6
+118003,0,0,0,15.6
+118004,0,0,0,15.6
+118005,0,0,0,15.6
+118006,0,0,0,15.6
+118007,0,0,0,15.6
+118008,0,0,0,15.6
+118009,0,0,0,15.6
+118010,0,0,0,15.6
+118011,0,0,1200911.678,15.6
+118012,0,0,0,15.6
+118013,0,0,0,15.6
+118014,0,0,0,15.6
+118015,0,0,0,15.6
+118016,0,0,0,15.6
+118017,0,0,0,15.6
+118018,339311.0718,368182.9504,0,15.6
+118019,0,0,0,15.6
+118020,30569.24846,0,0,15.6
+118021,639.2103208,0,0,15.6
+118022,3799.186491,0,0,15.6
+118023,8451.0858,0,0,15.6
+118024,10253.17903,0,0,15.6
+118025,7772.132549,0,0,15.6
+118026,8672.041862,0,0,15.6
+118027,8732.132739,0,0,15.6
+118028,8829.40914,0,0,15.6
+118029,8919.598425,0,0,15.6
+118030,9002.32583,0,0,15.6
+118031,9098.802977,0,0,15.6
+118032,9175.403556,0,0,15.6
+118033,9261.150731,0,0,15.6
+118034,9348.931489,0,0,15.6
+118035,9422.709217,0,0,15.6
+118036,9508.826267,0,0,15.6
+118037,9597.713357,0,0,15.6
+118038,9656.236409,0,0,15.6
+118039,9779.116563,0,0,15.6
+118040,9809.723605,0,0,15.6
+118041,9932.639327,0,0,15.6
+118042,9977.38058,51073.48163,0,15.6
+118043,10103.43265,432.8485228,0,15.6
+118044,10130.86052,4661.717154,0,15.6
+118045,10223.14692,16217.54557,0,15.6
+118046,10305.66564,13348.20293,1155364.02,15.6
+118047,10414.71394,12080.51412,0,15.6
+118048,10430.23988,12768.42154,0,15.6
+118049,10557.21425,12882.2437,0,15.6
+118050,0,12920.40728,0,15.6
+118051,0,13040.67139,0,15.6
+118052,0,13109.00111,0,15.6
+118053,0,13216.31821,0,15.6
+118054,0,381410.1877,0,15.6
+118055,339317.9764,13385.61889,0,15.6
+118056,0,13465.54802,0,15.6
+118057,47472.67645,13483.25077,0,15.6
+118058,553.3772745,13653.38332,0,15.6
+118059,3449.876891,13668.24302,0,15.6
+118060,16567.04846,13794.28167,0,15.6
+118061,11228.44714,13836.19075,0,15.6
+118062,11358.30633,13958.89674,0,15.6
+118063,11671.93787,14022.1944,0,15.6
+118064,11813.7779,14098.49377,0,15.6
+118065,11784.73228,14210.55244,0,15.6
+118066,11943.44368,14228.494,0,15.6
+118067,11934.39916,14379.07458,0,15.6
+118068,12051.94591,14391.7607,0,15.6
+118069,12066.66324,14519.5061,0,15.6
+118070,12157.51871,14559.27144,0,15.6
+118071,12203.27077,14677.01472,0,15.6
+118072,12291.21356,0,0,15.6
+118073,12345.15214,0,0,15.6
+118074,12389.89108,0,0,15.6
+118075,12472.49585,0,0,15.6
+118076,12510.9622,0,0,15.6
+118077,12570.44145,0,0,15.6
+118078,12657.38381,65436.70943,0,15.6
+118079,12727.23398,0,0,15.6
+118080,12850.06989,3827.579502,0,15.6
+118081,12891.48958,23310.30842,1107496.019,15.6
+118082,12951.7375,14933.76825,0,15.6
+118083,13023.97294,15288.14153,0,15.6
+118084,13128.19211,15726.64048,0,15.6
+118085,13221.97482,15823.36547,0,15.6
+118086,13292.30844,15879.12855,0,15.6
+118087,0,15936.00815,0,15.6
+118088,0,15996.86606,0,15.6
+118089,0,16069.71421,0,15.6
+118090,0,16122.91642,0,15.6
+118091,0,384372.7465,0,15.6
+118092,397777.6248,16225.974,0,15.6
+118093,0,16358.63461,0,15.6
+118094,5259.386488,16358.03253,0,15.6
+118095,21363.72506,16431.14682,0,15.6
+118096,13023.59815,16514.96616,0,15.6
+118097,14244.57659,16562.47396,0,15.6
+118098,14448.93457,16643.46303,0,15.6
+118099,14471.02096,16672.55147,0,15.6
+118100,14608.02148,16750.00719,0,15.6
+118101,14664.22459,16796.76348,0,15.6
+118102,14766.44787,16904.71802,0,15.6
+118103,14822.04684,16885.88751,0,15.6
+118104,14928.33365,16999.97426,0,15.6
+118105,14985.28404,17050.47149,0,15.6
+118106,15107.72972,17111.13236,0,15.6
+118107,15162.56445,17147.27833,0,15.6
+118108,15241.93241,0,0,15.6
+118109,15317.79584,0,0,15.6
+118110,15448.221,0,0,15.6
+118111,15468.22287,0,0,15.6
+118112,15553.83298,68609.01768,0,15.6
+118113,15685.0663,0,0,15.6
+118114,15709.31974,6699.698074,0,15.6
+118115,15816.38561,27044.42157,0,15.6
+118116,15870.02554,15841.94106,1070219.037,15.6
+118117,15997.98107,17805.78651,0,15.6
+118118,16032.92528,17843.03781,0,15.6
+118119,16130.13319,17976.25975,0,15.6
+118120,16215.5579,17952.87158,0,15.6
+118121,16279.85037,18040.30988,0,15.6
+118122,0,18085.69648,0,15.6
+118123,0,18133.32875,0,15.6
+118124,0,18172.79884,0,15.6
+118125,0,18257.11821,0,15.6
+118126,68158.2438,18243.60448,0,15.6
+118127,2349.476168,18333.14835,0,15.6
+118128,6267.683412,386547.2415,0,15.6
+118129,364499.7758,18396.4516,0,15.6
+118130,15665.76752,18497.0755,0,15.6
+118131,17050.96301,18497.07393,0,15.6
+118132,17186.47877,18583.16402,0,15.6
+118133,17276.83069,18593.67363,0,15.6
+118134,17339.01391,18678.88308,0,15.6
+118135,17413.74127,18701.24207,0,15.6
+118136,17513.11811,18764.53037,0,15.6
+118137,17540.36224,18775.07289,0,15.6
+118138,17651.48423,18853.105,0,15.6
+118139,17743.78853,18910.9577,0,15.6
+118140,17739.82768,18926.58663,0,15.6
+118141,17754.96724,18915.41473,0,15.6
+118142,17739.81637,0,0,15.6
+118143,17651.47494,0,0,15.6
+118144,17631.478,0,0,15.6
+118145,17604.68439,0,0,15.6
+118146,17505.19823,75924.63225,0,15.6
+118147,17565.03094,0,0,15.6
+118148,17418.30076,7633.160385,0,15.6
+118149,17455.87353,28269.50935,0,15.6
+118150,17353.64418,16915.50756,0,15.6
+118151,17346.19492,18724.23965,1036372.873,15.6
+118152,17331.13077,18644.6349,0,15.6
+118153,17223.5921,18661.51688,0,15.6
+118154,17211.35972,18656.36332,0,15.6
+118155,17203.39478,18604.90326,0,15.6
+118156,0,18564.30833,0,15.6
+118157,0,18515.07824,0,15.6
+118158,0,18530.71445,0,15.6
+118159,0,18479.43318,0,15.6
+118160,71275.849,18462.53995,0,15.6
+118161,3201.587415,18422.61111,0,15.6
+118162,4972.813848,18385.95265,0,15.6
+118163,24908.42967,18339.48702,0,15.6
+118164,15960.58728,18337.38384,0,15.6
+118165,16644.74731,386450.1272,0,15.6
+118166,356115.0558,18242.23231,0,15.6
+118167,16738.08048,18217.27756,0,15.6
+118168,16714.80876,18224.39215,0,15.6
+118169,16593.53424,18145.20611,0,15.6
+118170,16625.35269,18130.28611,0,15.6
+118171,16524.25442,18081.39104,0,15.6
+118172,16491.4515,18054.90571,0,15.6
+118173,16448.17018,18044.346,0,15.6
+118174,16375.90059,17963.47507,0,15.6
+118175,16348.16008,17968.78506,0,15.6
+118176,16266.79099,0,0,15.6
+118177,16261.5264,0,0,15.6
+118178,16166.54423,0,0,15.6
+118179,16152.41066,0,0,15.6
+118180,16083.5813,72140.93377,0,15.6
+118181,16007.80139,0,0,15.6
+118182,15992.03567,5732.052295,0,15.6
+118183,15912.76064,27622.61963,0,15.6
+118184,15900.18706,15770.98848,0,15.6
+118185,15789.68867,17557.95022,0,15.6
+118186,15781.95219,17636.91907,1006056.954,15.6
+118187,15711.53623,17573.40439,0,15.6
+118188,15643.85608,17541.35117,0,15.6
+118189,15604.3641,17484.89023,0,15.6
+118190,0,17453.98315,0,15.6
+118191,0,17438.63184,0,15.6
+118192,0,17361.64673,0,15.6
+118193,0,17327.15632,0,15.6
+118194,64505.13578,17327.25385,0,15.6
+118195,0,17222.31018,0,15.6
+118196,6235.275331,17227.37138,0,15.6
+118197,22154.00977,17165.14972,0,15.6
+118198,14229.40049,17172.42349,0,15.6
+118199,14930.57915,17042.6418,0,15.6
+118200,15051.81908,17064.98456,0,15.6
+118201,15131.81911,17098.30482,0,15.6
+118202,15255.50158,385286.327,0,15.6
+118203,354645.9285,17194.96407,0,15.6
+118204,15414.1686,17215.32734,0,15.6
+118205,15515.44939,17284.39758,0,15.6
+118206,15571.47001,17327.14405,0,15.6
+118207,15687.04356,17361.6325,0,15.6
+118208,15746.90538,17399.46798,0,15.6
+118209,15860.99884,17450.58919,0,15.6
+118210,15945.48792,0,0,15.6
+118211,16026.36435,0,0,15.6
+118212,16111.89392,0,0,15.6
+118213,16208.86536,0,0,15.6
+118214,16299.66751,71535.08048,0,15.6
+118215,16390.17307,0,0,15.6
+118216,16459.76441,5749.315557,0,15.6
+118217,16584.11838,27843.9681,0,15.6
+118218,16639.41396,15914.67755,0,15.6
+118219,16760.95469,17967.41711,0,15.6
+118220,16797.44232,18001.36075,0,15.6
+118221,16950.26114,18088.71326,978664.6395,15.6
+118222,16993.76796,18076.91994,0,15.6
+118223,17083.48894,18186.17013,0,15.6
+118224,0,18186.09208,0,15.6
+118225,0,18219.85795,0,15.6
+118226,0,18283.34269,0,15.6
+118227,0,18294.9333,0,15.6
+118228,72905.36284,18328.6109,0,15.6
+118229,4058.280651,18429.94946,0,15.6
+118230,4919.443912,18413.77445,0,15.6
+118231,27327.80494,18489.80561,0,15.6
+118232,16354.60065,18521.93612,0,15.6
+118233,18040.86445,18489.80367,0,15.6
+118234,18147.26068,18644.45413,0,15.6
+118235,18240.39111,18631.14097,0,15.6
+118236,18316.1125,18659.1036,0,15.6
+118237,18430.1872,18727.037,0,15.6
+118238,18509.38761,18763.43757,0,15.6
+118239,18577.67007,386946.4331,0,15.6
+118240,18672.03642,18825.80039,0,15.6
+118241,358151.1221,18908.09819,0,15.6
+118242,18864.44637,18918.19679,0,15.6
+118243,18928.24923,18958.73726,0,15.6
+118244,19028.81177,0,0,15.6
+118245,19118.62287,0,0,15.6
+118246,19211.40865,0,0,15.6
+118247,19302.08106,0,0,15.6
+118248,19379.0589,78904.68198,0,15.6
+118249,19463.74128,0,0,15.6
+118250,19560.75634,7677.475186,0,15.6
+118251,19644.75265,29049.70649,0,15.6
+118252,19701.88939,17564.03868,0,15.6
+118253,19847.243,19397.07423,0,15.6
+118254,19881.26833,19432.6435,0,15.6
+118255,20023.13948,19516.40687,0,15.6
+118256,20063.19674,19486.69648,953335.6656,15.6
+118257,20183.9664,19621.23688,0,15.6
+118258,0,19560.38738,0,15.6
+118259,0,19680.49125,0,15.6
+118260,0,19665.10401,0,15.6
+118261,903436.6927,1203810.862,0,15.6
+118262,750573.2859,473174.6173,0,15.6
+118263,282044.4993,185191.8484,0,15.6
+118264,269339.5695,323000.9096,0,15.6
+118265,326193.5716,335428.4651,0,15.6
+118266,294581.2609,302676.0429,0,15.6
+118267,286955.4678,302359.0644,0,15.6
+118268,283913.2977,301659.0964,0,15.6
+118269,282424.8171,301726.4921,0,15.6
+118270,281116.9055,301232.8171,0,15.6
+118271,280216.8688,301010.0806,0,15.6
+118272,279045.9938,300923.6243,0,15.6
+118273,277431.3464,300699.3845,0,15.6
+118274,278272.8513,300594.4302,0,15.6
+118275,276582.135,300566.6059,0,15.6
+118276,276356.9421,668901.3773,0,15.6
+118277,274765.6803,300541.8743,0,15.6
+118278,274181.4538,258776.1151,0,15.6
+118279,612606.7519,259578.8497,0,15.6
+118280,272720.2282,370110.7015,0,15.6
+118281,271836.3597,284483.3314,0,15.6
+118282,270856.8966,298787.5133,0,15.6
+118283,270463.8275,304056.044,0,15.6
+118284,269706.7783,302083.7552,0,15.6
+118285,268636.1615,301372.4964,0,15.6
+118286,268245.2948,301732.8125,0,15.6
+118287,267449.1303,302415.7536,0,15.6
+118288,266718.7179,302049.4578,0,15.6
+118289,266217.6559,302748.2109,0,15.6
+118290,265666.1109,302390.5297,929411.8762,15.6
+118291,991.5088996,41687.08002,0,15.6
+118292,1019.666717,41602.33184,0,15.6
+118293,89395.20342,41661.42617,0,15.6
+118294,752654.8232,851372.9707,0,15.6
+118295,139249.0438,110282.865,0,15.6
+118296,206776.6755,268094.2614,0,15.6
+118297,307343.9566,352034.8,0,15.6
+118298,255861.7796,298486.8638,0,15.6
+118299,258839.1583,305539.3966,0,15.6
+118300,258520.9686,305517.4098,0,15.6
+118301,257795.2534,306311.8813,0,15.6
+118302,257575.7891,306088.9282,0,15.6
+118303,256512.4357,307588.3305,0,15.6
+118304,256137.413,310890.4302,0,15.6
+118305,255056.0831,309108.047,0,15.6
+118306,254982.6592,310339.559,0,15.6
+118307,254260.0412,311700.7399,0,15.6
+118308,253588.5743,311714.7424,0,15.6
+118309,252929.8695,312076.6496,0,15.6
+118310,252624.3992,270274.2975,0,15.6
+118311,251794.3911,639022.2033,0,15.6
+118312,251235.7678,382904.7283,0,15.6
+118313,250357.4558,297634.2583,0,15.6
+118314,589728.6847,311906.9268,0,15.6
+118315,249199.184,316753.5084,0,15.6
+118316,249224.9466,315680.5061,0,15.6
+118317,248317.4252,314814.4907,0,15.6
+118318,247768.1891,316005.8468,0,15.6
+118319,247029.3179,315874.5037,0,15.6
+118320,247003.1856,316787.455,0,17.8
+118321,1094431.155,1449897.67,95792.58336,17.8
+118322,1086987.286,1434367.648,5885.572885,17.8
+118323,517173.624,434416.4289,17610.89578,17.8
+118324,224966.791,88013.71439,935868.1819,17.8
+118325,861965.3189,1208285.228,20458.63671,17.8
+118326,598920.6903,487274.1074,21417.76447,17.8
+118327,577792.0269,718625.7954,21531.19139,17.8
+118328,577111.2098,600232.0648,21508.93337,17.8
+118329,506263.3299,603273.1904,21605.64492,17.8
+118330,541648.3981,593463.303,21605.48384,17.8
+118331,524325.4877,580505.0334,21659.60631,17.8
+118332,522308.9723,577638.518,21679.92036,17.8
+118333,519017.9682,576739.8584,21720.86234,17.8
+118334,517095.535,636620.5601,21776.73798,17.8
+118335,515223.1223,576560.5288,21868.02383,17.8
+118336,512992.2568,595699.118,21879.28355,17.8
+118337,510827.8306,595661.4969,21987.46402,17.8
+118338,509176.0195,589698.8595,21963.25146,17.8
+118339,505726.2892,590412.3234,22049.00177,17.8
+118340,504428.8888,587703.7372,22092.00702,17.8
+118341,502958.3558,586043.3009,22225.82715,17.8
+118342,500941.5132,485185.7947,22408.83813,17.8
+118343,499127.1951,483852.5356,22403.42642,17.8
+118344,497580.0292,648710.1487,22460.70782,17.8
+118345,495507.3903,604172.5948,22567.91179,17.8
+118346,494839.831,928598.8545,22579.34937,17.8
+118347,492696.3043,590389.687,22695.82713,17.8
+118348,490815.7762,581222.4723,22735.70501,17.8
+118349,829435.4421,579279.3792,22749.07544,17.8
+118350,488343.7746,574099.8925,22831.8939,17.8
+118351,468814.2614,575277.2846,327.2910209,17.8
+118352,467891.7816,573616.8034,316.9925806,17.8
+118353,465604.3241,573185.687,0,17.8
+118354,375384.4798,571145.2336,0,17.8
+118355,0,119976.5427,0,17.8
+118356,197034.002,119911.7377,0,17.8
+118357,910875.3462,1206554.855,0,17.8
+118358,538470.3927,437821.9606,909294.0381,17.8
+118359,462122.2279,619374.7047,0,17.8
+118360,472872.1756,547601.5593,0,17.8
+118361,499236.2883,585473.4715,0,17.8
+118362,474245.7696,566384.1056,98604.8919,17.8
+118363,475737.374,565707.0903,5506.290432,17.8
+118364,473791.4006,541181.6835,18514.90622,17.8
+118365,473067.9643,541538.3656,29401.54216,17.8
+118366,471226.6811,540046.4072,21853.52339,17.8
+118367,471063.6141,539299.4851,23008.43064,17.8
+118368,469233.0418,593461.6614,23055.32723,17.8
+118369,468764.5732,542092.2109,23107.45457,17.8
+118370,467015.4907,562884.8961,23108.76576,17.8
+118371,466726.0302,560266.1034,23235.8042,17.8
+118372,465620.6486,558001.5898,23191.60914,17.8
+118373,464427.3914,557572.1377,23278.26483,17.8
+118374,463651.1446,463390.4324,23325.45783,17.8
+118375,462537.3656,463264.71,23361.43072,17.8
+118376,461377.2708,618841.8023,23373.49997,17.8
+118377,461502.5073,570598.1341,23436.93316,17.8
+118378,459604.1402,541552.1949,23522.00687,17.8
+118379,458618.7863,564955.3837,23509.11284,17.8
+118380,458383.0668,554348.951,23543.04361,20
+118381,2617916.852,2949412.175,1304610.032,20
+118382,855689.6141,673064.5911,118152.5705,20
+118383,544671.3244,596220.1847,90807.20672,20
+118384,694648.2242,701900.0904,291690.5243,20
+118385,722958.64,800973.4713,205140.5836,20
+118386,668864.2119,693459.2308,220690.7342,20
+118387,663921.7913,705767.2523,214379.515,20
+118388,662783.547,704143.2419,217571.903,20
+118389,659466.5022,703025.1578,218932.8791,20
+118390,655690.9416,699807.4717,219596.1158,20
+118391,653393.6394,699675.4878,220646.9535,20
+118392,653081.1283,695863.4561,221573.8213,20
+118393,648470.3473,695506.8066,222276.7709,20
+118394,648560.1935,694513.1914,223440.7489,20
+118395,645914.3768,691745.638,225417.7847,20
+118396,644505.5632,691248.341,224861.2198,20
+118397,640886.1983,689979.4605,227016.0897,20
+118398,641839.6573,687636.5591,227522.8818,20
+118399,638610.6475,688122.6739,228688.7117,20
+118400,637439.4079,684900.2896,230715.6365,20
+118401,636275.1893,686517.8231,231571.0318,20
+118402,634640.8406,682919.0438,232463.5303,20
+118403,632588.8498,683544.8684,233877.3718,20
+118404,632391.8994,681674.068,234926.9072,20
+118405,629721.8783,681171.4924,235965.2659,20
+118406,628802.025,679666.4756,236883.7519,20
+118407,628558.8928,679681.4324,238214.2386,20
+118408,625845.4789,677431.2227,239050.8354,20
+118409,626345.7748,677652.3856,240491.6176,20
+118410,623050.5788,677133.8911,241117.7818,20
+118411,624191.7573,676301.4634,242811.5471,20
+118412,621463.2848,674309.2136,243410.4494,20
+118413,621221.2884,675339.9498,244060.8162,20
+118414,619697.7192,673777.399,246162.029,20
+118415,619381.3931,673488.2738,246834.1967,20
+118416,617304.3569,671719.1351,247673.6736,20
+118417,618540.1735,672594.2095,249044.7291,20
+118418,614682.6752,671489.5122,249580.1907,20
+118419,615696.8796,670831.9652,251554.2865,20
+118420,613786.0304,670236.057,251781.5487,20
+118421,614150.3807,669821.7259,253106.6426,20
+118422,612025.8555,669163.8128,254448.9108,20
+118423,611344.1114,669114.7021,254946.7187,20
+118424,610996.3157,667803.2397,256552.0288,20
+118425,610723.8023,667540.3691,257009.66,20
+118426,608881.3422,668247.3896,258826.9086,20
+118427,609435.5377,666179.7193,259332.6207,20
+118428,607412.4341,667055.5271,260190.4448,20
+118429,607582.5249,665870.0815,261767.7057,20
+118430,605859.4744,665681.5711,262496.9936,20
+118431,606603.0308,665666.0433,263273.0577,20
+118432,605134.8684,664901.5066,265000.5263,20
+118433,605188.7893,664598.9051,265454.1932,20
+118434,604088.8119,664384.399,266781.0032,20
+118435,603399.5131,664078.9559,267373.0149,20
+118436,602908.1081,662906.6799,268853.1696,20
+118437,602938.0481,663804.638,269694.486,20
+118438,601590.3353,662941.922,270340.8967,20
+118439,601225.7837,663161.3359,271733.4983,20
+118440,600736.292,661222.702,272468.0249,21
+118441,1110495.471,1299418.007,255594.944,21
+118442,1105154.142,1292333.833,253922.7546,21
+118443,1105438.515,1291115.425,254494.7232,21
+118444,1103139.604,1290537.896,254781.5102,21
+118445,1104821.284,1288648.786,255944.2707,21
+118446,1104101.966,1287669.065,256061.2684,21
+118447,1102578.164,1286886.733,256415.4463,21
+118448,1104273.573,1285633.467,257878.6106,21
+118449,1103172.728,1285286.773,257475.9106,21
+118450,1102140.054,1282443.901,259679.837,21
+118451,1104013.581,1284454.02,258475.1671,21
+118452,1102853.133,1281345.255,260388.8112,21
+118453,1102822.977,1280797.858,260938.7992,21
+118454,1103413.387,1279953.91,260956.6931,21
+118455,1103157.434,1280008.972,262191.6001,21
+118456,1103452.545,1279371.522,262590.8203,21
+118457,1103949.927,1276949.708,263661.3615,21
+118458,1100189.847,1276438.703,264165.8933,21
+118459,1101167.056,1277734.053,264177.4199,21
+118460,1099491.079,1275193.059,265950.2135,21
+118461,1101391.826,1274148.721,266115.754,21
+118462,1100045.779,1275316.511,266236.1671,21
+118463,1099744.751,1272222.097,267994.0248,21
+118464,1101090.411,1273519.265,268328.4475,21
+118465,1100025.627,1271362.869,268485.6111,21
+118466,1100269.251,1271913.955,269147.1217,21
+118467,1099856.902,1270149.169,271186.1405,21
+118468,1100390.269,1270721.299,270044.6084,21
+118469,1100441.876,1268987.171,271580.6761,21
+118470,1101507.446,1269647.144,272698.1152,21
+118471,1097275.965,1267787.758,272809.437,21
+118472,1097084.988,1266825.917,273187.8426,21
+118473,1097535.326,1267646.757,274652.7019,21
+118474,1095182.615,1266754.212,274511.9271,21
+118475,1096089.59,1265065.297,276467.7998,21
+118476,1095036.721,1266102.974,275558.9561,21
+118477,1095505.057,1264032.131,277367.2458,21
+118478,1094747.767,1264073.511,277399.3939,21
+118479,1094752.738,1264224.671,279064.9293,21
+118480,1093858.663,1263113.718,278235.902,21
+118481,1094222.382,1261337.557,278986.4294,21
+118482,1092472.309,1263406.474,275681.5114,21
+118483,1094686.689,1260272.302,275764.9295,21
+118484,1091560.374,1262273.951,276180.6485,21
+118485,1093868.545,1259026.681,276557.0316,21
+118486,1091605.569,1260387.688,276596.1747,21
+118487,1092626.516,1259048.43,277439.8116,21
+118488,1093277.92,1259331.244,276601.298,21
+118489,1093728.455,1254490.38,278115.8742,21
+118490,1092549.368,1253019.642,278198.7585,21
+118491,1093600.742,1252016.975,278174.8016,21
+118492,1092983.918,1252393.374,261915.7128,21
+118493,1092537.522,1249117.028,259779.8657,21
+118494,1093170.144,1250491.039,257748.4118,21
+118495,1092679.093,1248086.076,257986.4955,21
+118496,1092200.451,1248440.139,255456.5091,21
+118497,1092848.358,1246570.564,255149.1743,21
+118498,1092107.066,1247137.973,253697.8183,21
+118499,1092382.466,1244476.588,252937.4227,21
+118500,1091856.819,1244775.52,251635.0567,21
+118501,916631.9771,1072056.346,113698.3844,21
+118502,908686.8346,1066135.72,104441.9071,21
+118503,905337.6887,1063611.216,102219.598,21
+118504,901999.8333,1062655.114,99360.3651,21
+118505,898869.9498,1059522.369,96291.88919,21
+118506,896359.9897,1058894.139,94238.01081,21
+118507,892743.2468,1056136.52,91781.02697,21
+118508,890457.9695,1055348.749,89429.13307,21
+118509,887259.6473,1053233.32,87638.7255,21
+118510,884630.0691,1052089.264,85196.18703,21
+118511,881687.8442,1050302.011,83497.61482,21
+118512,879243.7692,1048511.817,80801.428,21
+118513,876202.9639,1047799.452,79251.14356,21
+118514,873440.1262,1045473.947,76870.25744,21
+118515,871021.0042,1045012.761,74161.73541,21
+118516,867935.6409,1021863.655,72667.07974,21
+118517,865910.84,1017375.766,72021.1015,21
+118518,863267.8989,1015599.966,71062.04661,21
+118519,860132.5598,1013945.111,69762.04246,21
+118520,858104.5086,1010941.866,68894.57644,21
+118521,854988.4794,1009921.719,67758.45626,21
+118522,852736.8682,1007307.584,67083.77415,21
+118523,850013.2522,1006072.85,65727.09958,21
+118524,847971.591,1003516.925,64842.31659,21
+118525,844972.5053,1001798.089,64045.64763,21
+118526,842919.5305,1000246.702,62609.30523,21
+118527,840613.1238,998259.9576,61941.00522,21
+118528,838050.1766,997053.6756,60636.90937,21
+118529,835324.6033,994585.1819,60160.32863,21
+118530,833136.3086,993736.9089,58485.29202,21
+118531,830728.3236,991738.7996,58331.05812,21
+118532,828372.6956,990172.1925,56315.83501,21
+118533,826462.8251,988953.2032,55929.91049,21
+118534,824154.9844,987315.0188,54654.08254,21
+118535,821893.9719,985816.081,53580.02574,21
+118536,820181.586,984286.7788,52837.01625,21
+118537,817863.5624,983264.0358,51327.0426,21
+118538,815202.0534,982619.8026,50830.02604,21
+118539,813101.7382,981462.7843,49840.47534,21
+118540,811447.2343,980207.4983,48488.75177,21
+118541,809247.9423,980082.6614,48023.69873,21
+118542,806905.0287,978242.7422,46737.53387,21
+118543,804645.1949,978073.7335,46162.4974,21
+118544,803188.9072,976522.0915,44983.56259,21
+118545,801396.8039,976110.9322,44848.10096,21
+118546,798630.6805,975259.4666,44015.52884,21
+118547,796723.0707,974452.9288,43416.74531,21
+118548,795348.308,973384.5858,43016.83234,21
+118549,792428.8925,972882.5616,42258.38253,21
+118550,790982.6633,971799.2903,41856.88917,21
+118551,788866.0682,970956.3524,41178.51079,21
+118552,786868.7458,970298.1005,40716.35365,21
+118553,785151.2076,969992.2577,39863.76254,21
+118554,783520.6656,968307.7847,39536.45641,21
+118555,780628.8114,968481.1941,38925.09831,21
+118556,779348.4712,967070.5748,38505.80449,21
+118557,777284.0688,966497.7397,37462.94269,21
+118558,775211.5129,965561.4129,37502.04586,21
+118559,773425.0776,965452.0838,36432.025,21
+118560,771336.055,964373.4204,36253.96933,21
+118561,769289.2697,962878.909,35559.46813,21
+118562,767599.9868,962518.6494,34715.69448,21
+118563,767140.4304,960672.255,34457.63445,21
+118564,764910.3437,959633.352,33541.08465,21
+118565,764116.3336,959166.1781,33146.36266,21
+118566,762377.8959,957488.3477,32552.17857,21
+118567,761704.9993,956338.4713,31516.01663,21
+118568,759492.4558,955405.806,31557.13358,21
+118569,760511.2698,954538.5086,30371.35702,21
+118570,759347.3636,953155.8604,30142.96193,21
+118571,758363.2816,951952.6232,29338.60562,21
+118572,756688.4519,951392.5892,28777.31342,21
+118573,756293.6354,949585.67,28007.1991,21
+118574,753762.2885,948832.0042,27616.25589,21
+118575,753503.0372,948014.9824,26986.62517,21
+118576,752037.1681,946854.1721,26128.14317,21
+118577,751181.0028,944996.8234,25780.68504,21
+118578,749620.4245,945086.5135,24934.77427,21
+118579,748497.8436,943240.7984,24364.25859,21
+118580,748013.3546,942696.4657,23963.89084,21
+118581,745826.7518,941176.6559,23120.49308,21
+118582,745557.2518,940121.3323,22588.82303,21
+118583,743856.4266,939476.6793,21922.37092,21
+118584,742829.2702,937938.805,21316.06464,21
+118585,741935.5623,936951.5707,20625.94863,21
+118586,740196.1348,936287.5515,20364.95709,21
+118587,739772.389,935139.9326,19919.51694,21
+118588,738507.4969,933748.3995,19614.82758,21
+118589,736942.5469,932929.5472,19332.87093,21
+118590,736196.8878,931895.2041,18917.81763,21
+118591,734860.0243,930700.5532,18591.74201,21
+118592,733787.7323,929739.8794,18365.14374,21
+118593,732544.4438,928307.2543,18193.6819,21
+118594,731365.2129,927469.3554,17633.72994,21
+118595,730255.1341,926144.784,17486.97034,21
+118596,729878.006,925352.934,17234.02938,21
+118597,727828.2154,923768.3525,16733.2266,21
+118598,726698.0067,922633.5568,16645.19708,21
+118599,725725.4996,921422.2068,16373.02481,21
+118600,724516.2923,920556.6779,15914.21234,21
+118601,723370.9486,919354.0068,15644.8585,21
+118602,722125.3136,918092.1448,15460.84471,21
+118603,721165.8261,917332.599,15059.98863,21
+118604,720184.4577,915475.5938,14940.71481,21
+118605,719043.7399,915000.5745,14442.79383,21
+118606,717252.6544,913450.6248,14203.56963,21
+118607,716522.0597,912265.6014,13885.41275,21
+118608,715721.1471,911237.2535,13761.45741,21
+118609,713673.2005,910387.3329,13295.92044,21
+118610,713197.0482,908928.0606,12857.72112,21
+118611,711900.4497,907736.2763,12897.15262,21
+118612,709668.1442,906763.7554,12407.47367,21
+118613,708195.1079,905569.279,12242.23945,21
+118614,706372.378,904813.72,12007.07704,21
+118615,705573.6302,902859.2811,11759.90891,21
+118616,704380.5727,902228.8378,11731.67268,21
+118617,703348.1759,901278.3774,11166.30417,21
+118618,701778.7269,899741.3139,11299.69687,21
+118619,700514.179,898289.7146,10888.84266,21
+118620,699983.9004,899304.8449,10653.95101,21
+118621,702724.7228,901267.347,9872.660596,21
+118622,702024.8118,900371.4671,9600.263467,21
+118623,700807.488,897426.1375,9347.776537,21
+118624,700045.5615,896830.342,9015.713378,21
+118625,698859.3949,895007.8432,8906.272399,21
+118626,697905.0621,892862.8767,8696.939333,21
+118627,696761.9869,891707.7762,8282.09298,21
+118628,695970.0336,889781.434,8041.338478,21
+118629,696269.1046,887540.9448,7850.731387,21
+118630,694430.4564,886602.6385,7719.279557,21
+118631,694425.7299,884423.4903,7351.181537,21
+118632,692487.5475,882987.4816,6960.596328,21
+118633,691854.9775,881131.8994,7041.910453,21
+118634,690882.2872,879338.7634,6473.921678,21
+118635,690107.5994,877753.6463,6568.42439,21
+118636,688178.4149,875861.0616,5999.575892,21
+118637,688226.0035,874030.5569,5963.731509,21
+118638,686823.3936,872044.1622,5651.724626,21
+118639,685647.0437,870892.8786,5486.132416,21
+118640,684793.1836,868936.3313,5020.541138,21
+118641,683659.7632,866997.5485,4989.432595,21
+118642,682583.8715,865510.5019,4717.620104,21
+118643,681697.4493,863982.4427,4486.148585,21
+118644,680873.7858,861404.5952,4078.048204,21
+118645,679280.8416,860204.2507,4164.648486,21
+118646,677609.2869,858625.7613,3617.628908,21
+118647,676638.2951,856512.8775,3653.551577,21
+118648,675705.564,855091.4197,3097.267101,21
+118649,673923.0398,852960.3579,3170.47884,21
+118650,673556.0681,851418.8681,2782.061157,21
+118651,671877.0224,849694.5957,2492.714168,21
+118652,671638.3795,848576.6589,2661.800306,21
+118653,669804.5073,846283.446,2374.033957,21
+118654,669300.1898,845790.081,2336.993729,21
+118655,667780.3494,843609.4341,2271.032665,21
+118656,667561.9863,842349.9715,2217.324083,21
+118657,665867.646,840896.4774,2184.062703,21
+118658,664772.7406,839579.2732,2094.761894,21
+118659,664023.3778,837704.4813,2025.606845,21
+118660,662506.2791,836734.7247,2025.630593,21
+118661,661521.0168,835021.6868,1920.18289,21
+118662,660862.178,833520.042,1882.730042,21
+118663,659555.9713,832415.4328,1849.771681,21
+118664,658511.1293,830408.7911,1776.087548,21
+118665,657820.5592,829480.1875,1704.498147,21
+118666,656073.532,827744.3659,1685.682648,21
+118667,655791.8295,826654.0085,1631.511389,21
+118668,654028.5923,824787.3813,1574.899756,21
+118669,653714.5815,823581.1175,1575.025186,21
+118670,652048.9486,822254.5768,1518.280356,21
+118671,651177.8748,821140.3612,1518.293528,21
+118672,650335.1336,819082.7735,1518.306699,21
+118673,648901.5123,818101.781,1480.36832,21
+118674,648793.5489,816685.169,1480.380908,21
+118675,646850.2178,815206.8647,1442.350451,21
+118676,646398.545,813510.6289,1423.306211,21
+118677,644822.8933,813034.3085,1423.317941,21
+118678,644415.9991,810645.6362,1385.146302,21
+118679,642994.7728,809640.2982,1385.157471,21
+118680,642125.816,808388.5549,1346.889541,21
+118681,635900.1978,801923.6304,1404.28302,21
+118682,634079.3184,801117.954,1385.190099,21
+118683,632755.3451,799828.0399,1385.200999,21
+118684,630719.7373,799123.5934,1366.083724,21
+118685,628791.9784,798332.9924,1366.094353,21
+118686,627016.3825,797309.4169,1346.952499,21
+118687,625263.837,796261.4569,1366.115493,21
+118688,623611.8509,795684.2764,1327.796303,21
+118689,621740.1576,794520.8556,1327.806396,21
+118690,619837.3444,794235.0954,1327.816488,21
+118691,618442.29,792473.1684,1327.826577,21
+118692,617340.1182,792399.4948,1308.634557,21
+118693,614580.7092,790833.5491,1308.644382,21
+118694,615032.4723,790921.9422,1289.42707,21
+118695,612766.2236,788880.1501,1308.663918,21
+118696,611578.6397,789134.0866,1270.193886,21
+118697,609388.8703,787406.144,1308.683335,21
+118698,607953.0788,787284.5946,1270.212707,21
+118699,606139.6701,785689.0048,1270.222007,21
+118700,604434.3642,785556.4431,1270.231306,21
+118701,603074.2044,784121.9339,1270.240604,21
+118702,601157.5476,783800.6389,1250.97135,21
+118703,598961.6238,782266.8098,1270.259084,21
+118704,595954.9537,782388.5489,1231.685175,21
+118705,594554.2615,780611.4485,1231.693961,21
+118706,592188.3253,780185.314,1231.702746,21
+118707,590830.6158,779415.4336,1231.711529,21
+118708,589316.7511,778503.5277,1231.72031,21
+118709,587254.4938,777579.4662,1212.398214,21
+118710,586019.7459,776754.613,1212.406744,21
+118711,583493.6128,776382.7827,1231.74643,21
+118712,580933.0021,774957.3029,1193.066514,21
+118713,578633.4584,774286.4959,1173.690878,21
+118714,576126.9866,773928.3866,1193.082967,21
+118715,574055.9995,772614.0549,1173.707052,21
+118716,571479.785,772079.8684,1193.099414,21
+118717,569075.4871,771331.2812,1154.312056,21
+118718,566564.3199,770254.9274,1154.319845,21
+118719,563355.0587,769664.4509,1154.327633,21
+118720,559537.7099,768834.5087,1134.896841,21
+118721,557429.6317,768070.8247,1134.904389,21
+118722,555181.2012,767602.102,1115.445752,21
+118723,552251.7978,766244.2969,1095.959074,21
+118724,550133.2987,765689.9152,1115.460271,21
+118725,547314.7387,764999.8118,1076.451053,21
+118726,545206.6999,764202.9738,1076.4579,21
+118727,542323.1419,763669.2691,1076.464745,21
+118728,540349.9766,762308.8031,1037.340741,21
+118729,537159.0197,761844.4695,1056.927063,21
+118730,535069.7996,761179.2165,1037.353625,21
+118731,530886.769,760398.9882,1017.750692,21
+118732,528654.9387,759219.9859,998.1178676,21
+118733,527248.6296,758842.6153,1017.762936,21
+118734,525845.2033,758092.2508,978.4607584,21
+118735,524729.7268,756915.4207,978.4664981,21
+118736,524344.307,756690.7244,958.772398,21
+118737,523033.9783,755714.7294,958.7779263,21
+118738,521732.0107,754629.8773,919.2902932,21
+118739,520381.1966,753829.2513,939.0577474,21
+118740,518898.8176,753757.5467,899.5063173,21
+118741,538822.1393,782472.6906,1538.005647,21
+118742,540729.5576,782998.9751,1538.018975,21
+118743,538804.7825,782798.813,1538.032312,21
+118744,537516.2152,782812.9586,1500.118814,21
+118745,536600.2361,782038.0205,1519.106327,21
+118746,536811.4219,782304.2606,1481.147029,21
+118747,533464.6856,781998.8688,2883.258298,21
+118748,532923.3742,782036.1821,2694.556265,21
+118749,532075.9995,781486.2452,2352.010347,21
+118750,529950.0072,781791.1866,2485.797514,21
+118751,529439.8543,781213.1279,2485.837709,21
+118752,527996.8368,781413.7188,2140.826617,21
+118753,527030.2515,781054.9817,2428.56536,21
+118754,526180.1476,780894.3075,1927.912222,21
+118755,525331.2937,780911.8443,2256.757627,21
+118756,523893.34,780259.4754,1712.867838,21
+118757,522379.9378,780325.5292,1832.041326,21
+118758,521789.0385,780373.2256,1290.117183,21
+118759,520754.7455,780109.5424,1456.355425,21
+118760,519553.5154,779896.3091,1232.273,21
+118761,518539.5125,779307.5343,1251.59609,21
+118762,517565.2554,779748.7438,1193.584686,21
+118763,516675.7928,779005.3509,1193.593123,21
+118764,515978.3064,779222.6504,1193.60156,21
+118765,514502.1903,778433.3463,1135.350524,21
+118766,513082.6151,778738.3089,1135.358226,21
+118767,512478.7565,778147.4667,1115.891577,21
+118768,510781.3664,777987.9632,1096.396874,21
+118769,510031.3587,777960.8842,1076.873772,21
+118770,508841.0732,777589.5804,1057.321915,21
+118771,507556.417,777356.1937,1037.740935,21
+118772,506474.4025,777168.067,998.4838788,21
+118773,505555.2505,776499.5062,1018.13666,21
+118774,504149.0563,776771.208,978.8193543,21
+118775,502666.3794,775840.6518,959.1179076,21
+118776,501838.5664,776148.7216,959.1235589,21
+118777,500486.6464,775599.5798,919.6210793,21
+118778,499494.4019,775421.3529,899.8246618,21
+118779,498023.2549,774666.09,899.8296845,21
+118780,497206.2844,774953.3434,880.0005161,21
+118781,495661.1817,774362.0828,840.2376456,21
+118782,494905.7003,773813.4689,840.2420688,21
+118783,493206.9168,774104.9951,800.342438,21
+118784,492472.2868,773410.2686,820.3159012,21
+118785,491078.0393,773029.4007,760.3052275,21
+118786,490191.1925,772717.8545,760.3088991,21
+118787,488708.4392,772612.9131,740.2351587,21
+118788,489036.4697,771899.1987,720.1238211,21
+118789,488299.4205,772007.344,699.9741155,21
+118790,486574.1892,771434.0952,679.7852275,21
+118791,486145.6137,771054.1865,659.556296,21
+118792,484594.9721,771149.5516,659.5591092,21
+118793,483848.1097,770104.5095,618.9746633,21
+118794,482302.0087,770280.6663,598.6198923,21
+118795,481608.667,769849.7718,598.6222362,21
+118796,480708.701,769367.8005,557.7770733,21
+118797,479647.7537,769335.5269,557.7791244,21
+118798,478810.9158,768784.4926,516.7482006,21
+118799,477702.2025,768448.2299,516.7499755,21
+118800,476961.8212,769042.0227,496.1622174,21
+118801,458508.184,737573.8862,0,21
+118802,457290.4298,736465.3571,0,21
+118803,456895.415,735042.0737,0,21
+118804,456641.4187,734923.7695,0,21
+118805,455744.6778,733500.1795,0,21
+118806,455457.4726,733382.555,0,21
+118807,454534.7616,731880.7865,0,21
+118808,454243.5675,731492.9874,0,21
+118809,453734.8732,730515.2921,0,21
+118810,453137.9483,730016.5478,0,21
+118811,452212.8191,728824.6393,0,21
+118812,452373.0718,728144.8977,0,21
+118813,451411.6772,727619.5748,0,21
+118814,451004.3063,726206.6261,0,21
+118815,450507.3421,725907.0402,0,21
+118816,450088.6856,725156.9992,0,21
+118817,449484.8989,724136.1466,0,21
+118818,449497.6487,723352.0749,0,21
+118819,448170.55,722854.5472,0,21
+118820,448483.5667,721757.2318,0,21
+118821,447442.998,721271.3481,0,21
+118822,447350.1115,720551.5777,0,21
+118823,446557.997,719359.7898,0,21
+118824,446213.8065,719279.3346,0,21
+118825,445277.9072,717980.1854,0,21
+118826,445156.1747,717413.8749,0,21
+118827,444272.7281,716725.5136,0,21
+118828,444060.6252,716161.9958,0,21
+118829,442823.9419,714768.5727,0,21
+118830,442754.9609,714926.8491,0,21
+118831,442160.2935,713547.3885,0,21
+118832,441781.7767,713082.7947,0,21
+118833,440911.9578,713072.5422,0,21
+118834,440812.3349,711761.2306,0,21
+118835,440268.2378,711530.3748,0,21
+118836,439859.6405,711144.6519,0,21
+118837,439322.5802,710175.7324,0,21
+118838,438922.8114,710017.3056,0,21
+118839,438387.9952,709088.6468,0,21
+118840,437987.3209,708794.8792,0,21
+118841,437315.2759,707792.5713,0,21
+118842,436760.7541,708176.3941,0,21
+118843,436350.7474,706814.5532,0,21
+118844,435854.9367,706680.3909,0,21
+118845,435750.2109,706200.5638,0,21
+118846,435206.2507,705097.2885,0,21
+118847,434753.8675,705336.8702,0,21
+118848,434481.7126,704520.9138,0,21
+118849,433981.8494,704048.2847,0,21
+118850,433430.4687,703334.4693,0,21
+118851,433708.5477,702965.5355,0,21
+118852,432566.2203,702547.0231,0,21
+118853,432828.9188,702139.0628,0,21
+118854,432592.894,701300.2373,0,21
+118855,431786.3169,700882.0706,0,21
+118856,431597.8676,700956.97,0,21
+118857,431350.2653,699464.7296,0,21
+118858,430895.8597,700033.1021,0,21
+118859,430651.81,698999.6192,0,21
+118860,430312.1529,698427.9882,0,21
+118861,435766.6648,702945.3704,0,21
+118862,435767.3745,702169.5107,0,21
+118863,435697.0529,701523.7946,0,21
+118864,435782.5367,701194.8226,0,21
+118865,435994.6555,700428.2936,0,21
+118866,435456.9566,699918.4389,0,21
+118867,435989.038,698943.3567,0,21
+118868,435875.1711,699141.8294,0,21
+118869,435660.4251,698050.4703,0,21
+118870,435889.496,697330.338,0,21
+118871,435980.248,697088.601,0,21
+118872,435719.7919,696275.5877,0,21
+118873,436142.4658,695735.1349,0,21
+118874,435743.433,695085.1431,0,21
+118875,435817.1213,694642.3826,0,21
+118876,436189.2444,694230.4068,0,21
+118877,435845.9657,693278.312,0,21
+118878,436064.0318,692653.5865,0,21
+118879,435981.3067,692643.7652,0,21
+118880,436075.1643,691572.8605,0,21
+118881,436014.1422,691052.2884,0,21
+118882,436223.185,690443.9144,0,21
+118883,436167.6306,689995.829,0,21
+118884,436063.32,689699.0118,0,21
+118885,436368.3574,688207.6138,0,21
+118886,436225.7554,688424.2453,0,21
+118887,436239.1983,687617.8674,0,21
+118888,436148.9503,687040.1924,0,21
+118889,436254.9803,686662.2101,0,21
+118890,436151.3975,685581.2921,0,21
+118891,436329.3511,685633.0886,0,21
+118892,436293.3301,684816.9305,0,21
+118893,436590.4074,684542.601,0,21
+118894,436389.863,683788.1197,0,21
+118895,436249.3763,683472.4861,0,21
+118896,436426.3542,683195.7948,0,21
+118897,436000.6797,682571.0836,0,21
+118898,436089.8921,682310.1715,0,21
+118899,436080.9605,681771.8015,0,21
+118900,435807.0276,681158.1029,0,21
+118901,435932.563,681094.0555,0,21
+118902,435645.0666,680163.2336,0,21
+118903,435427.767,680220.8146,0,21
+118904,434842.1745,679301.2404,0,21
+118905,435097.983,679478.0615,0,21
+118906,434654.7452,678585.1642,0,21
+118907,434480.6054,678439.3884,0,21
+118908,434600.3064,677675.1828,0,21
+118909,433983.8838,677539.4376,0,21
+118910,433925.0814,677477.9772,0,21
+118911,433785.0746,676342.3439,0,21
+118912,433406.8635,676386.4451,0,21
+118913,433126.059,675945.7283,0,21
+118914,433003.9677,675734.3385,0,21
+118915,432750.3272,674842.7796,0,21
+118916,432181.8061,675009.9279,0,21
+118917,432303.8744,673969.4388,0,21
+118918,431495.132,674303.388,0,21
+118919,431463.3426,673443.83,0,21
+118920,430956.8939,673402.9247,0,21
+118921,424310.8261,668256.9612,0,21
+118922,423588.031,668277.7669,0,21
+118923,422631.7484,668534.8797,0,21
+118924,421597.4348,668052.7031,0,21
+118925,420858.5771,668798.5576,0,21
+118926,419637.4535,667883.4197,0,21
+118927,419067.9821,668703.019,0,21
+118928,417796.5636,668279.4502,0,21
+118929,416980.1553,668533.3468,0,21
+118930,416127.3054,668515.1901,0,21
+118931,414836.2618,668357.9531,0,21
+118932,413827.3374,668673.926,0,21
+118933,412965.7547,668741.81,0,21
+118934,411634.1788,668488.0156,0,21
+118935,410920.9804,668945.125,0,21
+118936,409586.4335,668311.3587,0,21
+118937,408550.8558,669032.5178,0,21
+118938,407913.0802,668798.7239,0,21
+118939,406402.6867,669168.6774,0,21
+118940,405123.1944,668631.5164,0,21
+118941,403973.549,669397.884,0,21
+118942,402766.8207,668893.3673,0,21
+118943,401521.3586,669396.9869,0,21
+118944,400577.0925,668892.3081,0,21
+118945,399196.7163,669498.2206,0,21
+118946,397033.2355,669520.9692,0,21
+118947,395823.754,668842.1241,0,21
+118948,394295.981,670051.172,0,21
+118949,393217.1808,669290.7389,0,21
+118950,391359.2815,669959.8506,0,21
+118951,390611.3794,669540.6194,0,21
+118952,389100.8499,669923.1463,0,21
+118953,387993.9768,670510.9391,0,21
+118954,386947.3754,669618.2412,0,21
+118955,385489.2566,670989.8578,0,21
+118956,384708.366,670508.5349,0,21
+118957,383382.9747,670616.2813,0,21
+118958,381688.2379,670995.3277,0,21
+118959,380747.7148,671175.5695,0,21
+118960,379527.0279,671280.4659,0,21
+118961,378090.4895,671666.9635,0,21
+118962,377146.199,671507.736,0,21
+118963,375671.2624,672129.6005,0,21
+118964,374701.7479,672177.4958,0,21
+118965,373868.533,672498.0524,0,21
+118966,372042.4496,672506.6694,0,21
+118967,370924.4627,673022.9708,0,21
+118968,370102.7228,672521.5675,0,21
+118969,369260.5784,673818.9783,0,21
+118970,369025.31,672909.6418,0,21
+118971,368174.9726,673986.0022,0,21
+118972,367641.3944,674049.1097,0,21
+118973,367095.1564,674089.1116,0,21
+118974,367064.7846,674548.1195,0,21
+118975,365898.88,674506.7433,0,21
+118976,365447.3956,675087.1502,0,21
+118977,364769.583,674909.6054,0,21
+118978,364119.4943,675718.2394,0,21
+118979,363618.8912,675612.7195,0,21
+118980,363023.9482,675785.4144,0,21
+118981,362426.699,676107.3004,0,21
+118982,362191.2721,676785.7871,0,21
+118983,361851.7029,676804.6678,0,21
+118984,360976.6193,677354.2128,0,21
+118985,360395.4861,677677.2859,0,21
+118986,360257.9168,677861.1025,0,21
+118987,359470.8486,678386.9896,0,21
+118988,359110.4379,678563.1614,0,21
+118989,358639.3719,678979.0392,0,21
+118990,358479.5446,679697.2254,0,21
+118991,357519.3411,679514.4494,0,21
+118992,358195.0586,680343.1874,0,21
+118993,356558.8414,680493.6272,0,21
+118994,356701.3535,680817.5773,0,21
+118995,356037.4255,681086.2726,0,21
+118996,355601.5764,681883.029,0,21
+118997,355076.494,681754.1963,0,21
+118998,354779.4482,682652.2755,0,21
+118999,354285.1981,682537.9199,0,21
+119000,353816.7595,683196.2347,0,21
+119001,352099.1114,683366.3562,0,21
+119002,351342.3235,684117.9824,0,21
+119003,351038.8571,684303.2207,0,21
+119004,350370.242,684660.5248,0,21
+119005,349946.2101,685136.3728,0,21
+119006,349725.4632,685284.78,0,21
+119007,349129.6869,686238.444,0,21
+119008,348786.9223,686052.9963,0,21
+119009,348177.5704,686940.2989,0,21
+119010,347994.8109,686935.4492,0,21
+119011,347378.7046,687469.4433,0,21
+119012,346903.9145,687972.023,0,21
+119013,346748.6951,688024.2534,0,21
+119014,346245.0516,688478.3238,0,21
+119015,345683.6608,688445.0944,0,21
+119016,345482.3141,689460.1454,0,21
+119017,345168.4687,689296.9004,0,21
+119018,344314.3862,689843.3342,0,21
+119019,344307.3479,690028.9232,0,21
+119020,343737.7972,690309.9294,0,21
+119021,343264.0996,690754.9202,0,21
+119022,342760.7743,691113.1416,0,21
+119023,342581.7964,691367.6477,0,21
+119024,342117.3234,691835.2836,0,21
+119025,341626.7974,691808.485,0,21
+119026,341213.4013,692397.6006,0,21
+119027,341132.397,692731.7413,0,21
+119028,340726.1967,692979.3384,0,21
+119029,340072.1921,693171.761,0,21
+119030,339928.5882,694104.6891,0,21
+119031,339475.3344,693398.1931,0,21
+119032,339178.7481,694636.7324,0,21
+119033,338748.9045,694456.5859,0,21
+119034,338439.7833,695174.6289,0,21
+119035,338194.9423,694848.6557,0,21
+119036,337691.9226,696298.9444,0,21
+119037,337800.1919,695089.1054,0,21
+119038,336991.4244,696800.5472,0,21
+119039,336754.7919,696474.9952,0,21
+119040,336617.5897,696762.595,0,21
+119041,365831.9076,754368.6075,0,21
+119042,368495.644,758017.6751,0,21
+119043,370323.8169,759707.0987,0,21
+119044,372092.4332,761114.9227,0,21
+119045,373865.0017,762942.1222,0,21
+119046,375747.5328,764041.9152,0,21
+119047,377571.2115,766807.9402,0,21
+119048,379284.5308,778078.1058,0,21
+119049,381221.9362,773231.8017,0,21
+119050,383011.3924,777082.9656,0,21
+119051,385531.7057,778796.6775,0,21
+119052,387636.4247,780019.5055,0,21
+119053,389048.8519,782091.9178,0,21
+119054,391594.2167,783319.0074,0,21
+119055,393006.9719,785215.292,0,21
+119056,395539.3037,786541.2581,0,21
+119057,396903.8377,787719.7171,0,21
+119058,399122.3771,789549.7646,0,21
+119059,400539.8364,791357.8759,0,21
+119060,402618.1746,792041.9676,0,21
+119061,404741.7975,793934.104,0,21
+119062,406179.8896,795176.4425,0,21
+119063,408108.3857,796536.6013,0,21
+119064,410079.0619,798495.4792,0,21
+119065,411539.4675,798553.6305,0,21
+119066,413933.6928,801209.324,0,21
+119067,415186.3494,801487.7051,0,21
+119068,417200.8678,803395.8056,0,21
+119069,418762.2491,804327.1884,0,21
+119070,420550.8797,806180.9012,0,21
+119071,422319.237,806604.9367,0,21
+119072,424221.5436,808909.0988,0,21
+119073,425641.741,809324.2883,0,21
+119074,427919.791,811745.0877,0,21
+119075,429438.7861,811835.6178,0,21
+119076,431474.8523,813908.2395,0,21
+119077,433018.6612,815284.8128,0,21
+119078,434910.5107,816355.3474,0,21
+119079,436379.6523,817361.5785,0,21
+119080,438220.0757,818833.6403,0,21
+119081,440098.2901,820288.8652,0,21
+119082,441456.2701,821932.7479,0,21
+119083,443349.1513,822126.3845,0,21
+119084,445349.4914,824582.1297,0,21
+119085,446802.563,825278.6327,0,21
+119086,448619.0623,826331.9457,0,21
+119087,455876.8688,827885.1964,0,21
+119088,456040.403,829253.4271,0,21
+119089,458734.8822,830224.4898,0,21
+119090,460961.7493,831271.3236,0,21
+119091,463519.518,833144.8937,0,21
+119092,465798.0029,833884.6036,0,21
+119093,467958.5195,835255.2805,0,21
+119094,470352.9663,836658.7093,0,21
+119095,472793.8203,837563.1531,0,21
+119096,474779.8985,838930.2677,0,21
+119097,476978.7293,840101.1791,0,21
+119098,479297.2938,841250.0958,0,21
+119099,481470.2501,843054.4215,0,21
+119100,483466.0563,842910.8179,0,21
+119101,499586.4557,867801.9291,0,21
+119102,501460.7208,869240.0132,0,21
+119103,503254.7892,871530.5407,0,21
+119104,504384.66,872417.6597,0,21
+119105,506314.0863,874055.5061,0,21
+119106,507361.9846,876167.6588,0,21
+119107,509347.3976,876782.0987,0,21
+119108,511238.4957,878992.0746,0,21
+119109,516008.8334,879492.0581,0,21
+119110,515140.1626,881885.0526,0,21
+119111,517985.2541,883233.2067,0,21
+119112,519039.0109,884836.0782,0,21
+119113,521024.1057,885562.5563,0,21
+119114,522428.6387,887552.6287,0,21
+119115,524047.7068,889116.2149,0,21
+119116,525378.2547,890439.1634,0,21
+119117,527299.4813,891129.7537,0,21
+119118,528529.1577,893407.6813,0,21
+119119,530393.2885,894343.8559,0,21
+119120,531945.564,895846.9761,0,21
+119121,533002.7552,896885.6784,0,21
+119122,535082.8953,898706.0146,0,21
+119123,536233.0383,899344.8086,0,21
+119124,537924.8399,901414.9696,0,21
+119125,539172.9094,901811.0534,0,21
+119126,540748.0473,904254.1049,0,21
+119127,541958.841,904331.9064,0,21
+119128,543747.3361,906439.2214,0,21
+119129,544771.6069,907263.6374,0,21
+119130,546616.904,908633.5693,0,21
+119131,547626.0769,909874.1548,0,21
+119132,549177.3398,911029.3719,0,21
+119133,550306.1694,911639.1987,0,21
+119134,552239.819,913548.6358,0,21
+119135,552806.0885,914499.2598,0,21
+119136,554395.2369,915334.8507,0,21
+119137,556036.7641,915771.8673,0,21
+119138,557262.2008,918223.7349,0,21
+119139,558295.3589,918279.1148,0,21
+119140,559977.3061,919486.3282,0,21
+119141,560919.9787,920837.3412,0,21
+119142,562457.0862,921542.2607,0,21
+119143,563499.0214,922514.8486,0,21
+119144,565094.6314,924142.0419,0,21
+119145,566263.954,924516.3818,0,21
+119146,567339.7432,925869.8085,0,21
+119147,568884.9338,926790.4465,0,21
+119148,570175.8356,927841.7833,0,21
+119149,571260.8799,928858.8372,0,21
+119150,572679.5679,929726.3971,0,21
+119151,573634.052,930529.8083,0,21
+119152,575374.6579,932024.1693,0,21
+119153,578734.7665,932689.7558,0,21
+119154,581430.3689,933799.7376,0,21
+119155,582724.4975,934745.4833,0,21
+119156,584653.0539,935672.4294,0,21
+119157,586605.5376,936215.3098,0,21
+119158,588717.7818,938510.2525,0,21
+119159,590245.88,937657.9662,0,21
+119160,592573.6955,939968.6351,0,21
+119161,594375.565,940159.1496,0,21
+119162,597414.092,940577.8216,0,21
+119163,599459.0143,940459.3921,0,21
+119164,601483.1912,941063.6554,0,21
+119165,603361.1423,941837.3871,0,21
+119166,605068.4092,941672.7169,0,21
+119167,606995.4469,942257.5835,0,21
+119168,608929.808,943118.7855,0,21
+119169,610532.2957,942471.4922,0,21
+119170,612959.9164,943849.9255,0,21
+119171,614239.7887,943210.2596,0,21
+119172,616265.4366,944824.6589,0,21
+119173,618220.4421,944224.7144,0,21
+119174,619931.4618,944936.6281,0,21
+119175,621933.8466,945125.7798,0,21
+119176,623430.0615,945360.4998,0,21
+119177,631794.4807,946391.1999,0,21
+119178,634333.3382,946280.5175,0,21
+119179,636444.7323,946188.54,0,21
+119180,638010.9016,947140.1734,1083.128578,21
+119181,639622.1974,947595.5634,2283.866476,21
+119182,641499.7255,947154.5352,1774.082447,21
+119183,643055.7052,948292.3315,2283.932407,21
+119184,644276.7972,948251.3904,2788.198275,21
+119185,646679.516,948811.7771,2788.252042,21
+119186,648988.678,948657.0176,3287.803013,21
+119187,651264.3526,949416.4794,3453.431863,21
+119188,652403.3181,949810.3474,3783.319168,21
+119189,653819.9067,949478.4018,4111.582287,21
+119190,655322.3141,950924.2938,4275.19842,21
+119191,656259.8146,950402.5006,4601.224985,21
+119192,657978.5507,950865.6176,4925.866386,21
+119193,659035.5625,951054.799,4926.024971,21
+119194,660328.0737,951143.2643,5410.47522,21
+119195,661442.2325,952230.4196,5571.467233,21
+119196,663228.0608,951495.944,5892.37635,21
+119197,663960.1668,952292.2472,6052.517607,21
+119198,665318.8687,952754.4074,6371.748527,21
+119199,666394.9523,952478.333,6531.094614,21
+119200,667917.4468,952837.6462,6690.188942,21
+119201,668310.408,953747.9118,7165.390605,21
+119202,670240.8354,952928.557,7439.597176,21
+119203,671001.5395,953632.6575,7594.145813,21
+119204,672331.5731,954649.2138,8157.928091,21
+119205,672803.1349,953487.4851,8234.563758,21
+119206,674874.331,954519.6234,8423.948343,21
+119207,675965.4221,954581.048,8914.386301,21
+119208,676305.1214,954930.7542,9663.888519,21
+119209,678041.7296,955010.752,9974.024313,21
+119210,678826.6444,955496.7351,10346.27157,21
+119211,680312.2685,955498.1091,10675.74856,21
+119212,680650.7494,956012.067,10707.61283,21
+119213,682488.3081,955553.189,11046.61397,21
+119214,682864.239,956256.6309,11405.40207,21
+119215,684124.4933,956702.9714,11416.44286,21
+119216,685046.7461,956776.0048,11916.6199,21
+119217,686405.0593,956583.2205,11958.3099,21
+119218,687311.5869,957200.1034,12284.22526,21
+119219,688008.9477,956974.355,12457.52663,21
+119220,689461.2904,957417.85,12822.89514,21
+119221,692363.0606,961169.037,13950.15032,21
+119222,693618.803,961650.0215,19493.32097,21
+119223,694638.9976,963450.2562,17377.65001,21
+119224,695585.1092,963614.8688,18840.48031,21
+119225,695770.0804,965148.2151,19871.33294,21
+119226,696611.2079,971463.2936,20720.10405,21
+119227,697237.7682,977952.0519,21439.2256,21
+119228,698480.5757,974976.9319,21812.39135,21
+119229,698571.8346,977239.007,22877.61123,21
+119230,699581.8709,980667.5349,23481.25059,21
+119231,699282.9667,979917.611,24232.88218,21
+119232,701289.1298,983653.0984,24751.92227,21
+119233,701024.5539,983597.3123,25632.50026,21
+119234,701978.0111,985079.5576,26081.57615,21
+119235,701926.9481,988147.2338,27140.22965,21
+119236,704027.9716,987255.629,27333.70141,21
+119237,702741.0991,990442.2025,28206.53999,21
+119238,704961.11,990464.5074,28955.3049,21
+119239,704581.6081,992525.834,29561.95925,21
+119240,705537.8706,994431.0513,30221.52185,21
+119241,705439.387,995036.9725,30760.54486,21
+119242,715712.497,996662.2817,31544.7514,21
+119243,711901.3093,997474.9504,32245.95781,21
+119244,713969.2634,999713.7222,32642.1184,21
+119245,715302.1111,1000965.858,33592.29101,21
+119246,716368.4376,1001163.781,33926.38351,21
+119247,717298.978,1003877.784,34684.19092,21
+119248,718955.3941,1004330.189,35430.96534,21
+119249,718908.7178,1006146.435,35884.12225,21
+119250,720971.2262,1007090.764,36466.86267,21
+119251,721854.3932,1007837.892,37366.66479,21
+119252,722217.0133,1009778.918,37761.79698,21
+119253,724190.6349,1011682.262,38424.07493,21
+119254,723997.5465,1011036.526,39120.67544,21
+119255,726103.8828,1014284.031,39464.0386,21
+119256,726939.4588,1013924.198,40559.31112,21
+119257,727497.6961,1015600.249,40664.25092,21
+119258,727982.5677,1018054.822,42182.1542,21
+119259,730302.0872,1017932.698,42091.01889,21
+119260,730515.9595,1019769.23,43234.12886,21
+119261,731054.808,1020351.851,43710.1433,21
+119262,732060.7898,1022260.585,44355.83839,21
+119263,733177.1702,1023137.866,45271.20713,21
+119264,734413.4956,1024581.208,45375.81921,21
+119265,734475.5654,1025047.642,46565.27416,21
+119266,735650.716,1026796.198,46852.13846,21
+119267,736695.6567,1027963.98,47860.48009,21
+119268,736956.4114,1029138.649,48192.12365,21
+119269,739160.4626,1029900.008,48803.54084,21
+119270,738615.7148,1031897.756,49463.40685,21
+119271,739375.7591,1031838.238,50128.15878,21
+119272,741065.9031,1034691.858,50958.747,21
+119273,741558.4835,1034354.205,51361.3844,21
+119274,742693.8001,1036144.449,51977.29917,21
+119275,742458.8963,1036969.89,52871.77559,21
+119276,744245.9765,1038489.959,52968.73762,21
+119277,744882.0758,1039152.963,54112.67838,21
+119278,744778.0286,1041175.697,54541.69995,21
+119279,747041.3783,1041133.513,55044.85758,21
+119280,745635.0789,1043027.832,55781.37136,21
+119281,749603.5446,1043771.077,57239.66435,21
+119282,749189.818,1046211.033,59643.46375,21
+119283,751863.4471,1046205.701,59144.64254,21
+119284,752096.8165,1049237.107,60165.11303,21
+119285,753447.1553,1048720.384,61383.39778,21
+119286,754732.9661,1049698.066,61759.12437,21
+119287,755146.2789,1051595.303,62783.28057,21
+119288,757347.3653,1051832.216,63391.2694,21
+119289,756504.6989,1052718.258,64348.54136,21
+119290,759510.1257,1054613.966,64922.76571,21
+119291,758676.1536,1054856.284,65486.1075,21
+119292,761873.5117,1056669.764,66618.74436,21
+119293,761176.5176,1056431.105,67161.34941,21
+119294,762779.2173,1058936.894,67901.50454,21
+119295,763787.9922,1058713.197,68597.97491,21
+119296,764630.9927,1060131.56,69245.1811,21
+119297,766197.6596,1060927.081,69960.43739,21
+119298,765583.5006,1062250.872,70798.70571,21
+119299,768261.6039,1063084.311,71579.43493,21
+119300,768530.5284,1063818.995,71793.63777,21
+119301,769586.0747,1065203.757,72740.65839,21
+119302,770544.3499,1065988.256,73741.48387,21
+119303,771638.1929,1067101.445,73817.06475,21
+119304,772673.7968,1066971.999,74853.77296,21
+119305,773095.7737,1070351.814,75622.70371,21
+119306,774922.7789,1068367.734,76166.54449,21
+119307,773988.7042,1071233.492,76548.6333,21
+119308,777313.4543,1072178.769,77570.42615,21
+119309,776505.9074,1072084.083,77963.53181,21
+119310,778026.0798,1073266.138,78743.69218,21
+119311,779191.0027,1076076.96,79235.62778,21
+119312,780088.7879,1073909.709,79869.8442,21
+119313,780324.5532,1077189.724,80950.23492,21
+119314,782425.4732,1077546.244,80966.64526,21
+119315,781438.4912,1077566.786,82359.17587,21
+119316,784003.7389,1079337.198,82795.12996,21
+119317,784203.6643,1080944.722,83196.97545,21
+119318,785030.1384,1080779.75,84392.87622,21
+119319,786319.3272,1082069.544,84875.25127,21
+119320,786815.3941,1083163.307,85456.35545,21
+119321,787472.7957,1082841.595,86204.80975,21
+119322,789269.279,1085790.541,86902.3032,21
+119323,788914.9254,1085202.994,87409.32483,21
+119324,790876.2308,1086362.766,87999.05317,21
+119325,791368.9725,1087771.367,88689.35332,21
+119326,790988.1011,1089035.674,89583.91207,21
+119327,794098.6347,1088403.761,89824.7232,21
+119328,792358.4581,1091303.877,90710.07454,21
+119329,795379.7265,1090795.531,91478.09654,21
+119330,795204.1097,1091425.412,91883.86724,21
+119331,796459.9214,1094140.6,92474.84871,21
+119332,796830.4577,1092341.38,93214.51211,21
+119333,798020.0106,1096015.906,93652.71861,21
+119334,799142.6426,1094886.211,94531.77317,21
+119335,798910.6535,1097287.459,94961.38559,21
+119336,799946.1394,1096700.859,95709.81399,21
+119337,802004.6183,1098723.437,95969.75375,21
+119338,801365.8503,1099178.352,97074.60386,21
+119339,802791.7501,1099765.341,97397.11576,21
+119340,803628.6012,1101998.19,97792.70996,21
+119341,0,0,0,21
+119342,0,0,0,21
+119343,0,241.2577917,0,21
+119344,0,0,0,21
+119345,0,0,1615521.164,21
+119346,0,0,0,21
+119347,0,0,0,21
+119348,0,0,0,21
+119349,0,0,0,21
+119350,0,0,0,21
+119351,0,0,0,21
+119352,0,0,0,21
+119353,339351.8814,0,0,21
+119354,0,0,0,21
+119355,0,0,0,21
+119356,0,0,0,21
+119357,0,0,0,21
+119358,0,0,0,21
+119359,0,368125.6894,0,21
+119360,0,0,0,21
+119361,0,0,0,21
+119362,0,0,0,21
+119363,0,0,0,21
+119364,0,0,0,21
+119365,0,0,0,21
+119366,0,0,0,21
+119367,0,0,0,21
+119368,0,0,0,21
+119369,0,0,0,21
+119370,0,0,0,21
+119371,0,0,0,21
+119372,0,0,0,21
+119373,0,0,0,21
+119374,0,0,0,21
+119375,0,0,0,21
+119376,0,0,0,21
+119377,0,0,0,21
+119378,0,0,0,21
+119379,0,0,1533729.239,21
+119380,0,0,0,21
+119381,0,0,0,21
+119382,0,0,0,21
+119383,0,0,0,21
+119384,0,0,0,21
+119385,0,0,0,21
+119386,0,0,0,21
+119387,0,0,0,21
+119388,0,0,0,21
+119389,0,0,0,21
+119390,339361.7412,0,0,21
+119391,0,0,0,21
+119392,0,0,0,21
+119393,0,0,0,21
+119394,0,0,0,21
+119395,0,0,0,21
+119396,0,0,0,21
+119397,0,0,0,21
+119398,0,368122.5382,0,21
+119399,0,0,0,21
+119400,0,0,0,15.6
+119401,0,0,0,15.6
+119402,0,0,0,15.6
+119403,0,0,0,15.6
+119404,0,0,0,15.6
+119405,0,0,0,15.6
+119406,0,0,0,15.6
+119407,0,0,0,15.6
+119408,0,0,0,15.6
+119409,0,54646.60268,0,15.6
+119410,0,102.8677299,0,15.6
+119411,0,4336.310703,0,15.6
+119412,0,18614.3903,0,15.6
+119413,0,13649.17714,0,15.6
+119414,0,13180.75853,1459123.288,15.6
+119415,0,13825.65126,0,15.6
+119416,0,13953.42066,0,15.6
+119417,0,14052.40766,0,15.6
+119418,0,14223.40569,0,15.6
+119419,0,14350.83094,0,15.6
+119420,0,14466.12964,0,15.6
+119421,0,14586.8822,0,15.6
+119422,0,14730.19454,0,15.6
+119423,0,14839.70339,0,15.6
+119424,0,15019.4648,0,15.6
+119425,0,15063.5349,0,15.6
+119426,0,15256.97888,0,15.6
+119427,339362.2119,15332.1958,0,15.6
+119428,0,15461.50402,0,15.6
+119429,0,15590.95137,0,15.6
+119430,0,15713.77903,0,15.6
+119431,0,15836.01321,0,15.6
+119432,0,15917.80639,0,15.6
+119433,0,16085.74059,0,15.6
+119434,0,16199.94897,0,15.6
+119435,0,16253.15715,0,15.6
+119436,0,16418.31033,0,15.6
+119437,0,384660.7041,0,15.6
+119438,0,16600.18435,0,15.6
+119439,0,0,0,15.6
+119440,0,0,0,15.6
+119441,0,0,0,15.6
+119442,0,0,0,15.6
+119443,0,0,0,15.6
+119444,0,72875.97126,0,15.6
+119445,0,0,0,15.6
+119446,0,4443.622721,0,15.6
+119447,0,28490.22887,0,15.6
+119448,0,15726.56074,0,15.6
+119449,0,17897.20697,1391028.08,15.6
+119450,0,18115.15428,0,15.6
+119451,0,18169.65938,0,15.6
+119452,0,18258.02541,0,15.6
+119453,0,18387.17373,0,15.6
+119454,0,18441.48589,0,15.6
+119455,0,18561.33961,0,15.6
+119456,0,18639.88885,0,15.6
+119457,0,18743.22656,0,15.6
+119458,0,18850.43841,0,15.6
+119459,0,18879.65034,0,15.6
+119460,0,19063.90587,0,15.6
+119461,0,19250.44818,0,15.6
+119462,0,19413.27541,0,15.6
+119463,0,19461.45697,0,15.6
+119464,0,19529.81361,0,15.6
+119465,339357.0725,19620.49261,0,15.6
+119466,0,19702.65444,0,15.6
+119467,0,19785.84637,0,15.6
+119468,0,19857.45766,0,15.6
+119469,0,19933.35811,0,15.6
+119470,0,20006.40776,0,15.6
+119471,0,20087.11142,0,15.6
+119472,0,20145.97458,0,15.6
+119473,0,20249.00676,0,15.6
+119474,0,0,0,15.6
+119475,0,0,0,15.6
+119476,0,0,0,15.6
+119477,0,441640.2044,0,15.6
+119478,0,0,0,15.6
+119479,0,14196.45264,0,15.6
+119480,0,27711.0556,0,15.6
+119481,0,19481.4297,0,15.6
+119482,0,20866.05706,0,15.6
+119483,0,20990.01242,0,15.6
+119484,0,21077.3476,1328843.75,15.6
+119485,0,21079.51823,0,15.6
+119486,0,21192.25905,0,15.6
+119487,0,21268.08986,0,15.6
+119488,0,21302.96582,0,15.6
+119489,0,21373.84284,0,15.6
+119490,0,21498.62126,0,15.6
+119491,0,21483.88409,0,15.6
+119492,0,21555.97053,0,15.6
+119493,0,21713.07767,0,15.6
+119494,0,21649.91893,0,15.6
+119495,0,21811.61167,0,15.6
+119496,0,21847.02865,0,15.6
+119497,0,21919.43852,0,15.6
+119498,0,21914.25906,0,15.6
+119499,0,22064.33085,0,15.6
+119500,0,22106.58936,0,15.6
+119501,0,22131.11608,0,15.6
+119502,0,22216.7279,0,15.6
+119503,339348.456,22284.50732,0,15.6
+119504,26632.72709,22335.02528,0,15.6
+119505,2189.895387,22380.14602,0,15.6
+119506,1345.003831,22487.45006,0,15.6
+119507,6750.69393,0,0,15.6
+119508,8190.089441,0,0,15.6
+119509,6097.399567,0,0,15.6
+119510,7802.350353,82195.45136,0,15.6
+119511,7223.769998,1768.239196,0,15.6
+119512,7480.960303,15357.13721,0,15.6
+119513,7582.834276,30366.20262,0,15.6
+119514,7616.845564,21648.77044,0,15.6
+119515,7719.988242,23059.81019,0,15.6
+119516,7737.73588,23126.52973,0,15.6
+119517,7804.520166,391249.1471,0,15.6
+119518,7889.063881,23274.07718,0,15.6
+119519,7909.297583,23269.76594,1358948.06,15.6
+119520,8011.663071,23319.07685,0,15.6
+119521,8445.891541,23810.6505,0,15.6
+119522,8606.240562,23813.82633,0,15.6
+119523,8679.912432,23791.44627,0,15.6
+119524,8774.142324,23809.29629,0,15.6
+119525,8906.057335,23844.57432,0,15.6
+119526,8969.181639,23800.24608,0,15.6
+119527,9072.044428,23800.40268,0,15.6
+119528,9186.32496,23853.44362,0,15.6
+119529,9253.142923,23770.93024,0,15.6
+119530,9384.836188,23840.07837,0,15.6
+119531,9432.361241,23760.58434,0,15.6
+119532,9550.86077,23863.74199,0,15.6
+119533,9652.656718,23776.62261,0,15.6
+119534,0,23823.88564,0,15.6
+119535,0,23776.61466,0,15.6
+119536,0,23813.76986,0,15.6
+119537,0,23797.09847,0,15.6
+119538,0,23759.1663,0,15.6
+119539,0,23820.84648,0,15.6
+119540,0,0,0,15.6
+119541,383522.0136,0,0,15.6
+119542,2195.820694,0,0,15.6
+119543,1565.686364,87069.80018,0,15.6
+119544,14251.81939,4168.810998,0,15.6
+119545,11674.7816,13307.67725,0,15.6
+119546,10248.82535,32607.59234,0,15.6
+119547,10980.75826,22256.26814,0,15.6
+119548,11098.09422,23731.07831,0,15.6
+119549,11161.87253,23747.10026,0,15.6
+119550,11244.1015,23793.17919,0,15.6
+119551,11326.91062,23727.84997,0,15.6
+119552,11440.28415,23697.01443,0,15.6
+119553,11486.51132,23779.76415,0,15.6
+119554,11588.98968,23677.76461,1294314.383,15.6
+119555,11684.33258,23726.53651,0,15.6
+119556,11727.17031,23677.75702,0,15.6
+119557,11848.21752,391809.9504,0,15.6
+119558,11899.09353,23657.16104,0,15.6
+119559,12029.11625,23677.74578,0,15.6
+119560,12059.84838,23662.84669,0,15.6
+119561,12165.06942,23677.73835,0,15.6
+119562,12211.75374,23612.66851,0,15.6
+119563,12343.99474,23677.73093,0,15.6
+119564,12390.38297,23563.76937,0,15.6
+119565,12478.39102,23633.29466,0,15.6
+119566,12578.35554,23614.00254,0,15.6
+119567,12617.53264,23559.12117,0,15.6
+119568,12733.38182,23593.35808,0,15.6
+119569,12766.34597,23554.71499,0,15.6
+119570,12918.27872,23548.73904,0,15.6
+119571,0,23510.14495,0,15.6
+119572,0,23569.4179,0,15.6
+119573,0,0,0,15.6
+119574,0,0,0,15.6
+119575,0,0,0,15.6
+119576,58222.60799,86479.79223,0,15.6
+119577,291.0861581,3815.333082,0,15.6
+119578,3474.684754,13054.74712,0,15.6
+119579,359907.1217,32314.66377,0,15.6
+119580,12972.10957,21975.16565,0,15.6
+119581,13490.92578,23534.04011,0,15.6
+119582,13789.36937,23646.68617,496020.1776,15.6
+119583,13778.19575,23791.62135,0,15.6
+119584,13817.91904,23779.65356,0,15.6
+119585,13806.77988,23909.2966,0,15.6
+119586,13812.34404,23988.50484,0,15.6
+119587,13827.43969,24058.84893,0,15.6
+119588,13850.38455,24143.5135,0,15.6
+119589,13835.30237,24194.57124,1288081.332,15.6
+119590,13867.41293,24306.57243,0,15.6
+119591,13850.38423,24380.30016,0,15.6
+119592,13873.27508,24460.07419,0,15.6
+119593,13895.87498,24520.65183,0,15.6
+119594,13873.27491,24602.79013,0,15.6
+119595,13922.33344,24724.67268,0,15.6
+119596,13873.27475,24733.32657,0,15.6
+119597,13922.33329,392956.4861,0,15.6
+119598,13926.17166,24917.35183,0,15.6
+119599,13907.31155,24984.67531,0,15.6
+119600,13939.5551,25106.47707,0,15.6
+119601,13937.32456,25145.01302,0,15.6
+119602,13937.55818,25264.7495,0,15.6
+119603,13986.88839,25296.83688,0,15.6
+119604,13929.75937,25411.69865,0,15.6
+119605,13971.5348,25485.88446,0,15.6
+119606,0,0,0,15.6
+119607,0,0,0,15.6
+119608,0,0,0,15.6
+119609,0,95152.84576,0,15.6
+119610,57992.32294,8068.108484,0,15.6
+119611,38.17419269,11642.49736,0,15.6
+119612,3642.50973,36751.45317,0,15.6
+119613,22241.49468,24385.30109,0,15.6
+119614,12484.54782,26159.04545,0,15.6
+119615,13977.30369,26286.00986,0,15.6
+119616,14069.82681,26417.71155,0,15.6
+119617,353400.6612,26438.61363,0,15.6
+119618,14109.39565,517158.4554,0,15.6
+119619,14035.45547,26601.62845,0,15.6
+119620,14110.93806,54122.27172,0,15.6
+119621,14035.45546,187053.2317,0,15.6
+119622,14106.84645,144780.9042,40725.23329,15.6
+119623,14077.13134,137226.6563,111871.7104,15.6
+119624,14084.15587,143119.4077,1372336.597,15.6
+119625,14088.45198,143696.5359,460.8562019,15.6
+119626,14087.8613,144335.7792,290675.534,15.6
+119627,14070.79926,145245.5786,38168.62314,15.6
+119628,14099.75627,145500.5648,73109.2049,15.6
+119629,14066.62746,146746.1825,0,15.6
+119630,14103.32449,147056.0734,0,15.6
+119631,14074.50481,147948.5359,0,15.6
+119632,14093.4901,148837.6911,0,15.6
+119633,14087.8616,149400.3875,0,15.6
+119634,14061.12139,150285.0453,0,15.6
+119635,14093.49026,150760.6849,0,15.6
+119636,14055.46876,152298.8227,0,15.6
+119637,14080.10681,520423.1267,0,15.6
+119638,14099.1825,153428.8716,458957.3649,15.6
+119639,14043.48819,126197.6401,0,15.6
+119640,0,126599.1402,0,15.6
+119641,0,213288.0744,0,15.6
+119642,0,134695.0356,0,15.6
+119643,0,157911.2175,0,15.6
+119644,59403.43469,163609.0463,0,15.6
+119645,0,160659.3365,0,15.6
+119646,4162.282247,162771.0821,0,15.6
+119647,22844.61884,163930.9724,0,15.6
+119648,13042.16429,29262.03492,0,15.6
+119649,14633.22746,29400.85325,0,15.6
+119650,14772.24609,29506.27817,0,15.6
+119651,14835.29628,29697.7866,0,15.6
+119652,14890.55757,29712.75514,0,15.6
+119653,14956.38209,29887.88756,299872.7079,15.6
+119654,15031.95549,638686.1276,1011.810317,15.6
+119655,15039.11793,30124.32781,267638.8316,15.6
+119656,354526.8049,67045.85609,133511.4515,15.6
+119657,15191.39588,251033.996,211025.3348,15.6
+119658,15275.21114,171747.6497,1576.112306,15.6
+119659,15292.85062,176312.8191,1162396.424,15.6
+119660,15437.18814,181226.708,106658.2238,15.6
+119661,15380.87282,182286.8103,228848.1496,15.6
+119662,15544.32907,183867.4377,2106.54007,15.6
+119663,15540.87613,184563.3332,216772.367,15.6
+119664,15654.34788,186059.1925,30215.7203,15.6
+119665,15669.27584,186971.522,56635.18991,15.6
+119666,15734.36151,188128.0594,59779.0821,15.6
+119667,15786.63568,189392.0986,222774.6157,15.6
+119668,15895.30583,191009.1825,2763.453021,15.6
+119669,15906.08363,191285.4645,197832.7639,15.6
+119670,15982.7492,193606.2363,24826.77459,15.6
+119671,16037.2466,161930.7051,57799.21552,15.6
+119672,16119.35395,163448.2851,203862.5399,15.6
+119673,16140.69188,261084.77,3161.737137,15.6
+119674,0,177706.2498,181465.1165,15.6
+119675,0,194313.6849,28187.81835,15.6
+119676,0,205521.6868,123876.3502,15.6
+119677,0,568958.4739,170961.0019,15.6
+119678,69208.68078,202972.741,3465.480024,15.6
+119679,1018.977973,204319.4233,151897.972,15.6
+119680,6551.481593,205343.858,54105.60993,15.6
+119681,24531.48824,206607.7118,0,15.6
+119682,15603.84078,207702.0936,0,15.6
+119683,16747.30379,209220.1399,0,15.6
+119684,16900.60316,33651.85728,0,15.6
+119685,16935.28494,33801.44249,0,15.6
+119686,17038.64429,33906.56809,0,15.6
+119687,17073.80025,33997.35631,0,15.6
+119688,17126.56644,743028.1985,0,15.6
+119689,17166.61783,34305.7313,0,15.6
+119690,17217.47358,131429.4005,0,15.6
+119691,17304.03999,299034.0197,0,15.6
+119692,17350.50471,205899.3519,0,15.6
+119693,17373.69237,221670.9974,0,15.6
+119694,17460.54129,223096.3157,830549.2146,15.6
+119695,356854.301,224441.0934,0,15.6
+119696,17570.13503,225424.8395,0,15.6
+119697,17595.51104,226870.1115,0,15.6
+119698,17694.16412,227618.653,0,15.6
+119699,17706.83435,229570.0971,0,15.6
+119700,17782.32145,229652.7399,0,15.6
+119701,905408.82,1302416.052,0,15.6
+119702,585639.4375,1149720.919,382458.8441,15.6
+119703,164445.069,189342.1253,0,15.6
+119704,187407.3226,558303.2773,0,15.6
+119705,312847.2695,564809.96,0,15.6
+119706,246712.4879,450839.8729,0,15.6
+119707,247184.8955,492891.3918,0,15.6
+119708,207606.8438,489195.68,78274.49482,15.6
+119709,207813.522,476967.9717,145590.6129,15.6
+119710,294677.3122,480587.8539,3492.352479,15.6
+119711,255983.5325,479062.2607,141924.9082,15.6
+119712,236526.9861,479244.0328,67756.75147,15.6
+119713,247700.326,477576.0408,137949.5429,15.6
+119714,246336.4029,477451.6495,3964.123004,15.6
+119715,245086.9392,477065.2511,131756.8749,15.6
+119716,244422.4687,476175.8312,23277.85337,15.6
+119717,244927.8569,843950.3111,37935.28148,15.6
+119718,244103.5937,88619.98577,35109.6164,15.6
+119719,243842.9932,70612.97221,127879.936,15.6
+119720,244485.0042,1156309.546,4587.491093,15.6
+119721,246364.2395,313268.3823,125740.857,15.6
+119722,244889.0244,525647.3938,45315.52804,15.6
+119723,245292.2707,468880.8771,131864.7757,15.6
+119724,245196.3218,496275.2826,4876.420846,15.6
+119725,245341.8301,482337.5052,112751.915,15.6
+119726,245156.068,482089.9364,20148.66663,15.6
+119727,245332.3857,482580.3783,32353.95604,15.6
+119728,245029.8687,482365.579,657981.436,15.6
+119729,245540.3367,481465.7069,118502.2043,15.6
+119730,245155.1084,481942.1109,5237.128815,15.6
+119731,379619.6663,481347.4383,101309.7122,15.6
+119732,40232.03932,481431.5771,23980.3868,15.6
+119733,40319.37645,481553.6482,33655.70827,15.6
+119734,691078.54,413966.4639,110255.5917,15.6
+119735,93511.81063,414355.8478,5452.873138,15.6
+119736,225103.8729,527903.3584,0,15.6
+119737,277380.0676,493486.4517,0,15.6
+119738,242431.0487,462030.2487,0,15.6
+119739,245843.6069,499175.7876,0,15.6
+119740,205686.0951,474174.8411,0,15.6
+119741,205431.2391,483133.1118,0,15.6
+119742,291694.1983,481257.4621,0,15.6
+119743,249720.0155,480655.367,0,15.6
+119744,233213.6477,481188.8078,0,15.6
+119745,246448.184,481017.9061,0,15.6
+119746,244386.7459,480811.5305,0,15.6
+119747,243944.2892,481190.5135,0,15.6
+119748,248901.8564,471415.0965,0,15.6
+119749,245382.4022,470849.3365,0,15.6
+119750,247242.7282,67327.44067,0,15.6
+119751,246789.5382,67462.46185,0,15.6
+119752,246873.597,1147446.304,0,15.6
+119753,247324.6281,664212.7271,0,15.6
+119754,247004.0853,513082.2799,0,15.6
+119755,247491.143,459887.8416,0,15.6
+119756,247432.5837,484769.2183,0,15.6
+119757,247849.1326,471760.2445,0,15.6
+119758,247145.3121,472039.8381,0,15.6
+119759,248277.952,471195.563,0,15.6
+119760,248656.6467,499304.5772,0,17.8
+119761,1093128.289,1448851.65,133627.1125,17.8
+119762,1080455.961,1428085.648,757752.2975,17.8
+119763,711673.6949,939287.0798,82139.70701,17.8
+119764,171979.4085,812662.2028,122077.2195,17.8
+119765,813398.245,871806.1875,59237.99486,17.8
+119766,643898.7762,721963.2767,141288.404,17.8
+119767,936690.527,946026.4268,58585.7095,17.8
+119768,553289.8679,848607.8799,72231.24418,17.8
+119769,527410.5505,849885.6408,71855.04846,17.8
+119770,549851.3764,847368.0585,71032.61672,17.8
+119771,537281.6326,849688.6392,71371.33153,17.8
+119772,427184.7451,847280.3382,407185.2798,17.8
+119773,580860.1906,844375.5857,56048.28507,17.8
+119774,523731.2084,845224.7368,122614.6346,17.8
+119775,532406.8744,842165.3278,149813.1358,17.8
+119776,534244.339,842518.5901,54165.61144,17.8
+119777,529016.1929,841920.4037,148158.9302,17.8
+119778,526722.9169,839436.8903,103938.5618,17.8
+119779,526860.4199,840469.4667,149856.3122,17.8
+119780,526467.2896,837438.6415,54543.50682,17.8
+119781,524210.4834,834406.2183,146318.5867,17.8
+119782,524105.9474,159443.8575,65496.79999,17.8
+119783,523291.2244,159089.0628,77121.79296,17.8
+119784,522602.1982,1244416.729,118288.6331,17.8
+119785,521796.0501,1109931.866,157700.9985,17.8
+119786,520109.5235,562685.0973,55445.37583,17.8
+119787,519998.3886,880462.6317,141144.8556,17.8
+119788,519582.7514,806966.4855,90907.94372,17.8
+119789,518403.7316,1170532.812,154403.0659,17.8
+119790,517901.854,768920.4122,55898.47959,17.8
+119791,498805.9836,769993.2527,101332.0171,17.8
+119792,497080.7779,820742.1638,0,17.8
+119793,497819.5936,877633.5669,0,17.8
+119794,496526.569,817294.5394,0,17.8
+119795,152863.4581,824974.034,208278.8623,17.8
+119796,104348.0653,822052.2425,612021.3529,17.8
+119797,931813.4097,700108.7678,65040.46052,17.8
+119798,605672.3767,875026.8205,99841.96698,17.8
+119799,530718.6615,836226.2935,147343.2786,17.8
+119800,480699.2762,805045.2629,47946.81946,17.8
+119801,542965.4391,826007.8269,133492.8357,17.8
+119802,515620.2746,819986.6779,60674.79107,17.8
+119803,755663.8686,818221.589,73822.94022,17.8
+119804,416294.1182,818042.3856,146980.0281,17.8
+119805,578876.2035,817475.8562,48092.67423,17.8
+119806,510930.333,817097.7721,135180.5045,17.8
+119807,515844.1291,817346.5828,91231.90574,17.8
+119808,520388.9161,815228.6371,133955.6584,17.8
+119809,516976.8275,816524.6691,48280.26513,17.8
+119810,512656.3587,816112.5557,131774.0636,17.8
+119811,515261.2943,814381.9472,87093.43899,17.8
+119812,513847.4297,814665.9926,121491.0863,17.8
+119813,511311.8988,815199.5108,48508.9042,17.8
+119814,512483.105,151707.4025,129848.3161,17.8
+119815,511979.0492,151548.3953,86787.69592,17.8
+119816,511867.511,1237112.899,459083.4773,17.8
+119817,511608.9167,1022511.426,288550.8339,17.8
+119818,511298.2435,568764.2093,337380.5267,17.8
+119819,511390.0812,856505.1934,449803.662,17.8
+119820,510929.8939,787132.641,319686.2153,20
+119821,2305758.704,2975653.053,1614801.429,20
+119822,1360970.942,1851759.198,750760.8252,20
+119823,605814.9931,665313.3657,216472.5782,20
+119824,589028.7774,813856.4347,398725.5735,20
+119825,736769.4613,851116.0033,537472.6509,20
+119826,792370.6941,1108606.21,421397.196,20
+119827,688795.9891,862332.559,446382.9614,20
+119828,711154.1718,931771.7903,857144.8745,20
+119829,707278.3499,921347.3709,466562.1079,20
+119830,706767.3016,919562.8387,592142.8955,20
+119831,703738.8484,915291.7127,645278.6227,20
+119832,700324.2358,912149.5097,472358.1391,20
+119833,699528.7631,910256.4866,606616.5532,20
+119834,695824.9586,907716.4116,578846.5634,20
+119835,694235.1344,904176.8634,676703.1785,20
+119836,692861.8536,904216.7134,484490.2778,20
+119837,690239.4005,898239.7958,627886.8924,20
+119838,688879.2839,899718.1819,491339.7854,20
+119839,686675.6286,894619.0667,531027.5336,20
+119840,686297.1245,893197.9347,702756.5762,20
+119841,682570.7115,893066.8025,502002.9258,20
+119842,683923.1753,888682.9307,646276.1796,20
+119843,680262.8996,889369.842,629515.1753,20
+119844,679377.6098,884597.1094,737301.6623,20
+119845,678088.7277,884590.9195,510949.8027,20
+119846,677356.6861,882457.8112,673777.7561,20
+119847,675179.7712,880046.7982,627575.0749,20
+119848,673705.0589,879235.1014,744385.7249,20
+119849,674085.0743,876881.2518,519339.7778,20
+119850,671218.5572,875860.1899,688732.4947,20
+119851,670381.5545,874487.689,525502.2743,20
+119852,667898.9374,872059.7108,557388.3412,20
+119853,668567.0242,871568.227,681256.4133,20
+119854,666389.6973,870035.2086,679046.5591,20
+119855,665450.393,868150.8753,626231.8185,20
+119856,664902.8373,866680.2953,540718.9126,20
+119857,663660.7772,866473.1359,609416.0202,20
+119858,663452.3165,864336.938,664132.0973,20
+119859,660713.7658,863332.5696,822308.1771,20
+119860,661973.829,862136.4971,548798.2074,20
+119861,660663.7049,861811.3749,733928.8571,20
+119862,657724.689,859534.2912,554279.039,20
+119863,660008.3126,859428.0661,572133.9592,20
+119864,657502.2784,857958.7175,563059.6603,20
+119865,656623.1547,856089.4544,567561.0747,20
+119866,656856.8414,855924.5951,654576.8182,20
+119867,656052.8331,855729.9043,906334.795,20
+119868,653922.4286,852229.5,570634.8986,20
+119869,655041.1835,853933.4827,768766.9018,20
+119870,653188.2677,851499.5075,722215.5527,20
+119871,653550.3165,851354.6116,822291.9826,20
+119872,652383.2353,850163.5289,573959.2543,20
+119873,651380.6931,849137.452,766901.1318,20
+119874,651302.599,848525.6124,709660.7562,20
+119875,649909.3849,848063.803,838475.4626,20
+119876,650454.1962,845676.3051,576743.1991,20
+119877,649763.4616,846404.0144,771124.321,20
+119878,648222.8311,845208.9268,715155.6229,20
+119879,649162.1741,844916.7425,836054.9137,20
+119880,646803.7822,843043.6476,580574.1627,21
+119881,1213760.872,1631303.53,771923.9416,21
+119882,1210710.318,1627535.354,581543.7506,21
+119883,1211914.334,1630586.625,592146.6987,21
+119884,1208805.374,1625779.336,683989.5125,21
+119885,1208369.847,1628042.401,877207.6396,21
+119886,1209486.697,1625724.636,580920.5418,21
+119887,1206510.156,1624607.294,776602.5448,21
+119888,1207633.865,1626470.991,719231.0686,21
+119889,1204437.477,1622937.751,844882.5319,21
+119890,1204950.443,1623263.487,574650.0718,21
+119891,1205320.95,1622767.191,775406.8361,21
+119892,1201439.863,1622323.361,709905.7453,21
+119893,1203719.317,1620755.161,832715.5151,21
+119894,1200109.053,1620617.812,569991.6377,21
+119895,1202120.325,1620580.826,771157.5872,21
+119896,1196649.986,1618916.718,704931.7383,21
+119897,1197567.54,1618013.882,824219.756,21
+119898,1194295.185,1618695.897,564129.7652,21
+119899,1194881.026,1616876.269,766719.5618,21
+119900,1193050.009,1617409.741,698272.2631,21
+119901,1192033.229,1616596.899,818114.2097,21
+119902,1191665.222,1614859.65,558446.6067,21
+119903,1190169.279,1615865.527,762490.159,21
+119904,1189621.701,1614218.329,693055.7493,21
+119905,1189234.282,1613540.602,810203.2602,21
+119906,1187077.52,1612958.563,554010.5158,21
+119907,1186866.865,1614514.521,757680.0814,21
+119908,1186223.09,1611022.614,687018.5274,21
+119909,1184610.597,1612138.851,804336.7681,21
+119910,1183860.831,1610617.353,547963.4466,21
+119911,1174962.196,1611218.429,754165.4255,21
+119912,1173418.303,1609605.412,681144.1848,21
+119913,1169500.268,1610102.817,797156.4152,21
+119914,1169646.678,1608558.733,543121.0478,21
+119915,1165732.319,1608809.19,750166.8015,21
+119916,1165173.465,1608384.088,674525.2422,21
+119917,1162538.775,1607406.352,792119.9701,21
+119918,1162010.312,1607650.143,536966.8559,21
+119919,1159209.783,1606806.926,746350.4464,21
+119920,1157270.012,1604665.16,666343.212,21
+119921,1156153.406,1607917.05,780946.5325,21
+119922,1152823.386,1602961.944,528268.2477,21
+119923,1149613.583,1605970.006,738293.8452,21
+119924,1149311.755,1604410.217,657937.9446,21
+119925,1147465.987,1599698.704,774652.4907,21
+119926,1144565.178,1599088.447,521438.3255,21
+119927,1143469.226,1598888.554,732388.9861,21
+119928,1141455.595,1595950.782,651058.2478,21
+119929,1140614.672,1597493.718,766301.924,21
+119930,1137016.996,1596360.333,515129.7163,21
+119931,1136834.596,1594026.878,727215.7624,21
+119932,1134252.783,1593916.546,625792.2338,21
+119933,1133541.835,1593151.161,736941.7521,21
+119934,1129934.89,1592273.848,486748.5017,21
+119935,1129424.491,1590834.381,698238.0113,21
+119936,1127262.054,1591053.713,612158.3437,21
+119937,1126285.059,1589064.146,723514.8061,21
+119938,1122339.594,1589366.155,474372.2376,21
+119939,1122857.257,1586517.034,687356.4094,21
+119940,1120308.917,1588182.158,598430.7345,21
+119941,1057143.901,1524982.435,670758.3141,21
+119942,1050839.717,1522699.526,419796.2498,21
+119943,1047432.33,1517771.084,633304.1866,21
+119944,1043415.43,1518574.779,538439.6025,21
+119945,1042196.993,1515473.758,643616.8001,21
+119946,1037345.636,1515809.548,399766.2498,21
+119947,1034828.294,1512446.863,614818.7612,21
+119948,1032837.922,1512915.288,517135.258,21
+119949,1028686.964,1510918.977,620926.9907,21
+119950,1026355.701,1510098.896,379348.959,21
+119951,1024595.215,1508759.4,596637.2062,21
+119952,1019884.094,1508222.453,495787.0238,21
+119953,1019401.263,1505079.089,597614.1008,21
+119954,1014607.462,1506655.614,360252.1094,21
+119955,1012464.228,1503901.634,577706.0596,21
+119956,1010142.398,1463446.517,474513.5967,21
+119957,1007201.291,1458171.41,574602.6191,21
+119958,1004521.488,1453241.937,340671.6791,21
+119959,1001769.766,1451945.964,558506.5285,21
+119960,1000460.737,1450717.083,452979.0266,21
+119961,997576.2312,1445703.322,551671.1007,21
+119962,996120.7777,1444274.707,321202.2181,21
+119963,991104.2042,1441978.918,539172.2934,21
+119964,990511.313,1439517.208,431699.2198,21
+119965,987227.4441,1436890.337,528237.8047,21
+119966,983728.7352,1434472.891,301717.3986,21
+119967,982796.9657,1432893.963,519613.993,21
+119968,978675.8025,1429948.256,410219.3855,21
+119969,977374.4614,1428286.156,504616.9654,21
+119970,974687.8816,1425723.762,282899.1587,21
+119971,971722.2936,1422842.685,500156.1143,21
+119972,968612.799,1422549.46,389290.2973,21
+119973,967663.1629,1420869.671,481416.2336,21
+119974,963681.4811,1419174.449,264480.5122,21
+119975,962555.4001,1419838.594,481612.3034,21
+119976,959664.9839,1417559.767,368363.3384,21
+119977,956495.3625,1417303.413,460742.3353,21
+119978,955510.1048,1416520.797,248352.4067,21
+119979,953027.0144,1416331.568,464745.8158,21
+119980,949948.7481,1414094.239,351800.8725,21
+119981,946875.0688,1414168.401,440784.1078,21
+119982,945583.3382,1414063.927,234931.8715,21
+119983,943036.1793,1412768.508,447733.1512,21
+119984,941151.7619,1412135.909,335762.1978,21
+119985,936211.6177,1411503.349,422049.9434,21
+119986,934959.4428,1410476.658,220966.8941,21
+119987,931243.5692,1410296.138,430869.783,21
+119988,930856.99,1410205.739,319049.5942,21
+119989,926928.8749,1408497.041,403315.3518,21
+119990,924901.8266,1407948.78,207355.7249,21
+119991,922649.812,1408654.45,414481.2612,21
+119992,919059.7361,1406985.998,303318.3071,21
+119993,917941.5171,1406801.969,384680.7918,21
+119994,915154.6592,1405995.833,194498.4068,21
+119995,912286.2733,1406360.045,397927.1323,21
+119996,910075.9721,1403245.129,287347.1152,21
+119997,908319.3712,1406019.971,366957.0663,21
+119998,904898.0451,1403057.918,181737.1193,21
+119999,903052.3034,1403535.433,383279.4797,21
+120000,900131.5836,1403227.356,275652.6066,21
+120001,895127.2961,1402457.12,354497.5107,21
+120002,891843.4229,1401711.069,176310.7244,21
+120003,886562.6728,1400594.002,371754.2015,21
+120004,884375.9498,1401900.053,267714.4638,21
+120005,879313.765,1399933.586,344347.1906,21
+120006,878011.5148,1399457.465,170340.9264,21
+120007,872274.8263,1399215.415,361957.3645,21
+120008,868655.4436,1400690.762,260211.4125,21
+120009,865894.9939,1397790.606,334317.5476,21
+120010,861117.3164,1399006.013,165293.4352,21
+120011,858296.023,1398127.704,352205.4525,21
+120012,853741.3208,1398402.543,252300.4842,21
+120013,850744.3288,1397376.294,325398.9772,21
+120014,847089.6112,1396895.964,159797.3234,21
+120015,843802.5658,1397745.731,342960.3528,21
+120016,838664.2797,1395964.557,245056.2469,21
+120017,836082.9817,1396692.23,315603.1223,21
+120018,831158.4358,1395485.362,154800.4858,21
+120019,829034.7158,1396447.903,333825.2332,21
+120020,822726.8036,1395694.184,238125.5859,21
+120021,821314.6788,1394532.807,306626.461,21
+120022,817012.2439,1394843.265,149625.8757,21
+120023,812219.1607,1394929.806,324980.4794,21
+120024,810143.2392,1394495.778,230751.4719,21
+120025,803873.9707,1393590.196,298300.1529,21
+120026,802433.0941,1394112.169,144211.3667,21
+120027,796494.6215,1393067.375,315990.7717,21
+120028,793713.1554,1394132.176,224082.0007,21
+120029,789353.4407,1391711.958,289144.3183,21
+120030,786976.7589,1393369.133,139188.3626,21
+120031,782982.3856,1391553.784,307278.651,21
+120032,780621.4711,1392375.013,216999.2583,21
+120033,776286.7573,1391458.107,280675.1014,21
+120034,773330.7153,1390302.334,134446.3629,21
+120035,770148.0206,1391293.195,298482.5696,21
+120036,765046.7847,1389522.578,210241.94,21
+120037,763770.8293,1390495.583,272255.4629,21
+120038,759602.2085,1389766.712,129280.5901,21
+120039,755543.5883,1388379.479,290166.9855,21
+120040,753007.2875,1388669.082,203620.6991,21
+120041,748790.083,1387758.555,264480.9462,21
+120042,746388.2646,1387482.173,124656.3585,21
+120043,742578.8632,1387825.394,282572.0624,21
+120044,738858.5581,1387553.493,197822.5721,21
+120045,734362.705,1384955.029,257105.6774,21
+120046,733094.5621,1387320.266,120287.4421,21
+120047,727573.9711,1385279.991,274623.1821,21
+120048,725088.2138,1385528.632,133462.3284,21
+120049,721573.4758,1384771.432,151957.4616,21
+120050,718229.6739,1384296.266,151183.543,21
+120051,713686.9778,1384502.2,148697.1304,21
+120052,711107.4396,1383760.106,148335.4067,21
+120053,707639.1885,1382384.987,214915.1463,21
+120054,703900.2293,1382960.713,113367.8905,21
+120055,699182.7534,1381585.074,210142.1049,21
+120056,697216.2292,1383127.175,131626.3007,21
+120057,693078.59,1380783.603,146626.3791,21
+120058,689744.4681,1381177.459,144053.8791,21
+120059,684966.2442,1380919.195,211695.6216,21
+120060,683290.5041,1381088.159,107884.8191,21
+120061,678593.6052,1378080.864,107065.678,21
+120062,676945.5237,1379126.994,106278.8152,21
+120063,673797.8463,1376572.954,105785.4829,21
+120064,673497.072,1375368.871,105163.6697,21
+120065,669962.3469,1374398.386,104681.2845,21
+120066,668127.1975,1372289.601,104233.0012,21
+120067,666680.9097,1371884.521,103338.2781,21
+120068,664224.8548,1370244.843,102868.4415,21
+120069,662497.1148,1369119.525,102504.3132,21
+120070,660037.2149,1366700.293,101538.9311,21
+120071,657832.8108,1366377.85,100956.1567,21
+120072,654821.6684,1364306.764,100434.6465,21
+120073,654557.8939,1363152.414,99717.61831,21
+120074,650982.6257,1362280.509,99457.58845,21
+120075,650290.8519,1360236.22,98168.5779,21
+120076,646807.1208,1358868.445,98028.48865,21
+120077,645222.1832,1357644.489,96535.52431,21
+120078,643387.775,1356138.466,96525.23506,21
+120079,641216.836,1355148.528,96348.50856,21
+120080,638927.515,1353630.564,96111.16213,21
+120081,637281.8212,1352013.015,95861.74028,21
+120082,635194.957,1350554.784,95767.98033,21
+120083,631792.2372,1349300.291,95709.66441,21
+120084,632190.6054,1348133.511,95087.67284,21
+120085,627367.1923,1347181.058,95383.28515,21
+120086,626961.9363,1345049.102,94796.57167,21
+120087,624696.882,1344035.212,94784.70578,21
+120088,621587.3832,1343480.847,94768.43136,21
+120089,620467.4403,1340979.412,93991.48513,21
+120090,618472.3821,1339572.311,94529.06811,21
+120091,615693.1623,1338995.562,93785.58089,21
+120092,614045.4567,1337673.32,93941.3875,21
+120093,612819.4752,1336001.1,93443.86236,21
+120094,609043.0442,1335827.914,93474.29978,21
+120095,608410.6129,1334055.132,92861.60071,21
+120096,605274.8886,1332701.507,93043.01223,21
+120097,603991.3723,1332890.263,92968.60399,21
+120098,600918.5244,1331117.375,92285.26497,21
+120099,599379.657,1329132.688,92427.48234,21
+120100,597434.0419,1329132.945,92142.00095,21
+120101,595317.0279,1328368.145,91775.00697,21
+120102,592405.8895,1326438.642,91591.65803,21
+120103,590515.5553,1326106.47,91502.2131,21
+120104,588457.2158,1323525.905,91052.34472,21
+120105,587022.6457,1323908.99,90926.38372,21
+120106,584236.626,1322623.564,90883.54919,21
+120107,582492.148,1321287.227,90257.65266,21
+120108,580055.8298,1320533.097,90255.70773,21
+120109,578430.3455,1318970.691,90186.2389,21
+120110,575783.2474,1318086.493,89581.92716,21
+120111,573891.394,1317872.438,89537.72033,21
+120112,572082.5191,1315844.726,89246.63718,21
+120113,569917.2867,1315362.472,88992.12651,21
+120114,567515.2503,1314042.799,88448.45465,21
+120115,565849.5863,1313376.013,88700.15337,21
+120116,564059.2327,1312058.237,88060.59596,21
+120117,561652.8593,1310649.17,88068.91712,21
+120118,558544.1843,1310626.299,87276.87819,21
+120119,557700.5225,1309083.597,87687.12271,21
+120120,555394.2836,1308154.782,87062.67058,21
+120121,554826.8013,1307182.661,87436.56369,21
+120122,554323.2998,1306466.015,86804.36467,21
+120123,552056.5675,1306368.002,86884.68699,21
+120124,551204.2517,1306531.194,86221.5937,21
+120125,550540.03,1304925.348,86094.40381,21
+120126,550801.9681,1306602.607,85628.38183,21
+120127,549171.8169,1304985.549,85480.93319,21
+120128,548651.5896,1304669.804,84979.81475,21
+120129,548576.5665,1304316.158,84868.38562,21
+120130,548068.6606,1304842.681,84411.73877,21
+120131,547481.844,1303934.375,84246.32456,21
+120132,547044.7415,1303837.598,84072.99042,21
+120133,547346.2417,1303148.281,83514.63853,21
+120134,546168.1927,1303330.137,83688.56626,21
+120135,544959.12,1303073.764,83163.46162,21
+120136,546575.6365,1302648.289,82870.22122,21
+120137,544181.3773,1303009.849,82833.61823,21
+120138,544538.7426,1301578.544,82471.28097,21
+120139,544380.9318,1302104.909,82019.68274,21
+120140,542864.7083,1301879.498,82064.65495,21
+120141,543726.077,1301526.596,81640.67215,21
+120142,543165.2162,1299911.015,81375.14544,21
+120143,541763.504,1302391.388,81050.3403,21
+120144,546633.0409,1299401.01,80872.18047,21
+120145,545383.0404,1300622.766,80679.92281,21
+120146,546132.0175,1300953.033,80353.35159,21
+120147,545950.2445,1298613.25,80099.4513,21
+120148,547421.6223,1300592.239,79635.92336,21
+120149,546747.0674,1298894.523,79564.58395,21
+120150,547276.2631,1299937.322,79257.78544,21
+120151,548841.0548,1298008.043,79195.66637,21
+120152,548171.738,1299639.832,78475.79685,21
+120153,549597.1415,1297176.183,78505.21627,21
+120154,548925.6459,1298911.39,78283.64452,21
+120155,549638.0522,1297872.587,77988.26242,21
+120156,549779.4221,1297911.519,77647.81819,21
+120157,551331.7115,1297393.149,77380.06833,21
+120158,549758.8813,1298120.868,77179.61498,21
+120159,552269.1715,1296776.701,76963.48484,21
+120160,551080.55,1296812.601,76528.91449,21
+120161,553214.9835,1297470.049,76261.76373,21
+120162,551979.5149,1296915.517,76357.76895,21
+120163,554159.8421,1295401.937,75833.0647,21
+120164,552754.44,1296972.99,75381.98463,21
+120165,555418.9211,1295564.021,75606.3967,21
+120166,553575.1675,1295558.126,74772.2294,21
+120167,555508.6706,1296312.326,74895.0282,21
+120168,555729.1457,1295234.448,74462.87826,21
+120169,556367.6373,1295262.477,74347.28675,21
+120170,555817.5672,1294903.32,74180.97468,21
+120171,557620.1136,1295516.935,73824.06262,21
+120172,557239.0344,1294796.775,73869.31642,21
+120173,558409.9232,1294890.415,73513.18789,21
+120174,559084.3985,1293502.919,73557.22633,21
+120175,558460.6421,1294979.749,73002.03463,21
+120176,560265.9524,1293103.938,73241.17549,21
+120177,559236.3872,1294203.514,72684.77356,21
+120178,560693.0296,1293230.637,72529.93935,21
+120179,561072.3121,1294084.391,72722.0871,21
+120180,560646.642,1293390.47,72012.3474,21
+120181,620707.2075,1356113.414,86954.38834,21
+120182,622649.9575,1357682.416,92368.50096,21
+120183,625098.6622,1357960.889,93238.87161,21
+120184,625189.8909,1357752.495,92101.89463,21
+120185,626114.8671,1355195.752,91887.76225,21
+120186,626972.8803,1355602.212,92345.67032,21
+120187,628274.417,1355177.319,92227.40677,21
+120188,627633.6692,1352499.525,91737.79108,21
+120189,629109.6366,1352977.37,91921.90486,21
+120190,629754.688,1351751.27,91837.89177,21
+120191,629413.027,1349264.298,91477.75636,21
+120192,630368.7654,1350073.304,91499.96878,21
+120193,630532.6783,1348294.77,91259.15521,21
+120194,630907.5165,1346696.14,91259.19585,21
+120195,631448.3008,1347597.455,91010.30671,21
+120196,630824.7817,1343752.161,91046.54997,21
+120197,632823.7345,1344578.211,90756.93219,21
+120198,630775.1523,1342343.876,90495.42926,21
+120199,632805.4761,1341398.179,90491.10485,21
+120200,632501.0543,1340656.416,90279.28484,21
+120201,631819.1749,1339348.501,90216.38375,21
+120202,632172.1536,1337816.697,89592.53577,21
+120203,632625.7827,1337538.078,90229.62505,21
+120204,632150.9797,1335171.289,89523.52831,21
+120205,633244.3133,1334847.351,89319.7933,21
+120206,631734.7697,1333257.235,89452.81971,21
+120207,632773.213,1332335.885,88878.85131,21
+120208,632528.3624,1331642.241,89043.78018,21
+120209,631958.1114,1327971.864,88737.38944,21
+120210,632432.0737,1329645.24,88511.14413,21
+120211,632560.6792,1326959.603,88281.19264,21
+120212,630776.7507,1325601.242,88429.92339,21
+120213,631858.597,1324465.444,87998.2048,21
+120214,631917.4344,1323296.401,87794.78785,21
+120215,631660.4034,1321720.127,87778.09179,21
+120216,630281.6002,1321558.427,87660.77829,21
+120217,630988.6538,1319142.06,87000.24262,21
+120218,630454.5911,1317871.492,87675.77741,21
+120219,631408.1181,1316849.962,86665.29093,21
+120220,629699.5587,1318343.148,86986.14392,21
+120221,629812.5137,1314971.043,86606.88893,21
+120222,629956.875,1315492.279,86303.08459,21
+120223,629039.1434,1313671.144,86419.93841,21
+120224,628896.5406,1311937.616,85843.80713,21
+120225,628672.6403,1310768.014,85910.13066,21
+120226,627558.2251,1309663.414,85914.0334,21
+120227,628741.3181,1308237.785,85268.88392,21
+120228,626547.526,1306711.446,85378.83342,21
+120229,626843.0588,1305613.926,85169.6619,21
+120230,627761.495,1304548.902,84799.12081,21
+120231,625289.8538,1302408.907,84988.69734,21
+120232,626693.031,1301665.439,84402.77441,21
+120233,625631.5509,1300126.508,84380.60456,21
+120234,624975.6448,1299661.514,84168.66164,21
+120235,626121.6862,1296481.855,83897.9943,21
+120236,623889.2606,1296924.185,83978.87242,21
+120237,625164.3386,1293887.556,83561.1305,21
+120238,624459.6272,1293510.126,83181.74822,21
+120239,623820.6464,1291681.418,83524.35088,21
+120240,623440.4651,1290472.993,82746.88716,21
+120241,623158.7385,1290844.432,82986.2175,21
+120242,622379.6201,1290447.992,83182.33921,21
+120243,622845.7706,1291008.034,82200.52336,21
+120244,621416.3225,1291665.356,82904.088,21
+120245,620923.4923,1290976.472,81991.32368,21
+120246,621328.5015,1291856.096,82315.89118,21
+120247,619893.5538,1290739.315,81726.95752,21
+120248,620818.8205,1293128.734,82065.65509,21
+120249,619884.3533,1290832.062,81244.94918,21
+120250,618664.3069,1291947.699,81497.5724,21
+120251,619358.4213,1292723.008,81264.01856,21
+120252,618665.8374,1291414.605,80800.79783,21
+120253,617677.3069,1293513.671,81021.64429,21
+120254,618880.9509,1291934.344,80539.59511,21
+120255,616761.7811,1293324.645,80492.67681,21
+120256,617279.6373,1293436.778,80017.85541,21
+120257,614326.2122,1291966.372,80271.14972,21
+120258,611937.9243,1294104.432,79744.07723,21
+120259,611422.6848,1293517.733,79488.3904,21
+120260,611909.5561,1294312.517,79749.30133,21
+120261,609002.2724,1293188.757,79309.22905,21
+120262,609981.783,1294172.723,78620.69358,21
+120263,606907.7725,1294445.577,79340.58249,21
+120264,608016.8668,1294062.1,78414.26394,21
+120265,604719.1207,1294260.345,78697.21419,21
+120266,605788.6072,1293901.171,77941.66376,21
+120267,604004.5152,1296162.865,78488.17675,21
+120268,602008.3665,1294066.469,77607.37252,21
+120269,601907.5616,1295682.795,77774.67444,21
+120270,601256.3276,1294785.507,77416.96722,21
+120271,598357.875,1295972.745,77221.88462,21
+120272,599042.0841,1295336.599,77071.50639,21
+120273,597399.0586,1297072.989,77108.89586,21
+120274,596198.4459,1295808.577,76820.18485,21
+120275,596405.8915,1297367.608,76473.81935,21
+120276,593191.8901,1296487.073,76751.29487,21
+120277,594715.0819,1299091.22,76163.30857,21
+120278,592003.1266,1296925.714,75859.18794,21
+120279,592721.0067,1297821.103,76211.83655,21
+120280,589521.134,1299581.028,75755.36018,21
+120281,590626.1514,1298303.299,75611.78359,21
+120282,589889.6033,1300484.852,75381.85009,21
+120283,587692.4104,1298996.081,75666.07695,21
+120284,587155.7478,1300782.882,75177.14734,21
+120285,587191.0432,1301630.423,75077.41124,21
+120286,586192.507,1300121.587,75090.00514,21
+120287,583859.0397,1301772.903,74817.06303,21
+120288,585421.7163,1302496.094,74689.53708,21
+120289,582170.2487,1301387.783,74741.58008,21
+120290,583485.3352,1303046.316,74212.65102,21
+120291,582241.5418,1303493.993,74047.53699,21
+120292,580743.9407,1304133.171,73560.0046,21
+120293,581280.7148,1302347.573,73620.03427,21
+120294,579367.482,1307065.438,73435.57743,21
+120295,579779.5,1302449.687,73661.90469,21
+120296,577797.9349,1307058.606,73269.80319,21
+120297,578705.0684,1305469.054,73100.26043,21
+120298,577452.3077,1305971.497,73530.33214,21
+120299,576466.2161,1307001.659,72927.73161,21
+120300,576366.3921,1306650.071,73151.81458,21
+120301,576512.0689,1305503.817,72495.4863,21
+120302,574630.1693,1304573.181,72791.92324,21
+120303,575639.7268,1305363.467,72531.6894,21
+120304,574325.9112,1306313.218,72323.22572,21
+120305,573866.4385,1304403.127,72762.83198,21
+120306,573847.3963,1305963.412,72611.02588,21
+120307,571520.3585,1304831.702,72273.63276,21
+120308,572535.6548,1304459.271,72270.06286,21
+120309,571431.2633,1306015.19,72118.54763,21
+120310,571477.0856,1304178.573,71563.11257,21
+120311,570103.356,1306063.504,71905.93964,21
+120312,570040.8016,1304055.042,71436.4428,21
+120313,569567.3278,1305544.807,71184.3356,21
+120314,568552.6478,1304219.929,70987.99209,21
+120315,568322.568,1305133.546,70759.67217,21
+120316,567628.852,1304974.18,70485.82781,21
+120317,566756.8389,1304844.264,70022.19704,21
+120318,566447.6352,1303830.676,70016.01341,21
+120319,566503.4368,1304987.723,69530.05594,21
+120320,565006.037,1304929.966,69322.44724,21
+120321,564619.3026,1303675.342,68825.20624,21
+120322,563349.4019,1304939.201,72353.53499,21
+120323,562999.2023,1304915.884,72852.51813,21
+120324,563286.7232,1304701.44,72391.28774,21
+120325,561850.2874,1303304.619,72616.34344,21
+120326,560825.5782,1305202.804,73647.09783,21
+120327,560420.7213,1304175.547,71649.49712,21
+120328,560197.6534,1304561.848,74349.71194,21
+120329,559098.4053,1304575.2,72986.85369,21
+120330,557750.7255,1303954.38,72421.15921,21
+120331,558466.3712,1304586.629,74264.90328,21
+120332,556712.5385,1304199.525,73496.61899,21
+120333,555807.618,1304703.5,72310.25586,21
+120334,556193.9636,1303495.126,73821.33855,21
+120335,554187.3768,1304981.526,72420.70844,21
+120336,554993.2731,1304195.935,74054.24728,21
+120337,552516.4913,1304276.253,73041.37294,21
+120338,553265.1487,1304225.331,72979.07461,21
+120339,550875.9718,1305715.773,72587.9909,21
+120340,552197.1104,1303377.055,72626.09205,21
+120341,549752.4288,1304737.998,73320.66429,21
+120342,548681.9998,1304491.276,71750.12769,21
+120343,549355.1367,1304912.146,72201.27651,21
+120344,546674.0452,1304782.983,73171.28277,21
+120345,547024.7505,1303751.065,71463.41679,21
+120346,544859.791,1306389.202,72020.43627,21
+120347,545782.588,1303325.588,72074.39001,21
+120348,542996.0684,1306399.487,70952.32726,21
+120349,542805.8913,1304052.455,70888.39798,21
+120350,541728.7814,1305868.871,71421.0986,21
+120351,541117.9803,1304126.401,70708.47286,21
+120352,538666.79,1306229.912,70703.10539,21
+120353,539764.6906,1304968.282,69731.91103,21
+120354,536324.58,1306243.424,71306.05926,21
+120355,537812.7124,1304372.578,68655.75749,21
+120356,534082.0273,1305639.51,69598.81517,21
+120357,535347.3849,1305993.584,68911.91284,21
+120358,533301.4901,1304873.52,68466.14469,21
+120359,531508.9742,1305618.943,67395.50549,21
+120360,530952.4058,1306492.89,68706.13303,21
+120361,530969.436,1306549.334,66618.89151,21
+120362,530945.476,1306930.523,66407.11614,21
+120363,530572.3011,1308846.321,67386.22156,21
+120364,530584.2824,1308779.578,66563.15529,21
+120365,530211.4099,1310224.376,65408.11215,21
+120366,530553.7659,1310670.691,66036.0284,21
+120367,529968.4075,1310570.31,64524.86052,21
+120368,529937.553,1313163.868,65784.94692,21
+120369,530749.3262,1312287.538,63946.60918,21
+120370,530077.6559,1314849.937,64123.6201,21
+120371,529710.1543,1313519.846,63313.24173,21
+120372,529432.4758,1316374.862,63650.30859,21
+120373,530705.8788,1315430.993,61913.13035,21
+120374,529415.9934,1317265.28,62860.9352,21
+120375,529393.1394,1317276.454,62063.453,21
+120376,530126.9084,1319037.3,61349.25521,21
+120377,529339.2369,1320284.969,60778.14656,21
+120378,529823.9582,1319211.295,62404.09042,21
+120379,529425.6627,1321617.069,60943.50748,21
+120380,529514.4475,1322163.3,62283.48806,21
+120381,529195.5125,1321565.838,62680.59617,21
+120382,529563.3835,1324482.47,62839.17134,21
+120383,529855.2786,1324211.468,64404.06191,21
+120384,528801.674,1325306.746,62866.80292,21
+120385,530283.6709,1326026.264,64743.49357,21
+120386,529060.4492,1326858.31,64825.04942,21
+120387,529110.5924,1327350.288,64800.83796,21
+120388,529548.9337,1328455.421,64956.9132,21
+120389,529390.5995,1329882.264,66928.95486,21
+120390,529397.9955,1331806.425,64788.69224,21
+120391,529388.2563,1333491.771,67125.89857,21
+120392,529588.3658,1333644.543,66905.61486,21
+120393,529855.9587,1335557.249,67313.36291,21
+120394,528822.4429,1335600.397,67134.48096,21
+120395,530160.4751,1336406.682,69060.69705,21
+120396,529738.8564,1338372.076,68197.97323,21
+120397,530336.4219,1337910.18,69050.68118,21
+120398,529783.3568,1339042.853,69673.8364,21
+120399,530899.8785,1340853.541,69258.15728,21
+120400,529438.7416,1340693.255,69464.22707,21
+120401,531384.7933,1341443.665,71405.7329,21
+120402,529868.2853,1343621.912,70389.48999,21
+120403,531560.4098,1343417.349,71589.95136,21
+120404,530209.0737,1343858.95,71629.5731,21
+120405,531839.9802,1346070.503,71431.67393,21
+120406,531580.4121,1345812.612,71825.74752,21
+120407,532274.0033,1347641.513,73769.95892,21
+120408,531095.588,1347613.354,71845.80998,21
+120409,533767.5073,1349310.213,73599.40923,21
+120410,531652.2169,1350181.397,74173.07939,21
+120411,533387.8455,1350631.012,73610.76283,21
+120412,533863.2264,1350866.678,75136.61481,21
+120413,533992.7762,1353197.541,74112.43633,21
+120414,534279.4126,1353793.121,75840.23673,21
+120415,534415.0988,1353819.633,75950.9383,21
+120416,534530.4786,1355683.623,75499.29678,21
+120417,536613.4454,1356459.307,76014.81335,21
+120418,535444.8445,1355770.27,78102.91323,21
+120419,537272.9621,1358906.388,76404.64119,21
+120420,535761.244,1358679.549,77314.92281,21
+120421,536069.0941,1358902.424,78146.77482,21
+120422,534396.7411,1358347.655,77503.55429,21
+120423,534826.5916,1358881.641,78181.20332,21
+120424,534580.5754,1359524.676,78195.48393,21
+120425,533109.4693,1358996.536,80320.10449,21
+120426,534338.6971,1359506.62,78265.13948,21
+120427,532275.7477,1358887.517,78310.50286,21
+120428,532399.4209,1359636.175,80931.74651,21
+120429,532574.2962,1359387.177,80533.39065,21
+120430,531528.2307,1360047.205,79090.0907,21
+120431,531182.7728,1359897.994,81984.33862,21
+120432,530999.825,1359390.824,80401.49376,21
+120433,530314.54,1360451.293,80392.06452,21
+120434,530888.397,1359627.201,81997.03093,21
+120435,528728.1158,1360568.427,82530.85857,21
+120436,529913.4496,1359418.636,82331.74195,21
+120437,529717.3679,1362078.686,82365.49558,21
+120438,527578.7844,1359256.751,83679.09725,21
+120439,529595.1098,1361465.211,82372.79886,21
+120440,528161.1895,1359147.765,84161.39771,21
+120441,528315.3371,1362084.531,84542.91226,21
+120442,527566.2448,1359522.495,83304.0344,21
+120443,526452.1497,1362053.537,84580.66765,21
+120444,527099.5753,1360098.315,84606.83859,21
+120445,526379.5122,1361696.281,86173.19121,21
+120446,526180.1323,1360947.419,84629.91189,21
+120447,525642.835,1361342.331,86162.28421,21
+120448,525434.8485,1361510.264,84682.02911,21
+120449,526487.6431,1360752.378,87445.91593,21
+120450,524290.0777,1362297.619,86298.45819,21
+120451,524282.112,1360869.672,86646.21015,21
+120452,524849.0804,1363043.281,86637.95302,21
+120453,523209.0187,1360944.946,88435.17133,21
+120454,524175.0258,1363046.469,87399.55655,21
+120455,522453.6761,1361817.275,88863.28525,21
+120456,523220.0532,1362977.324,88446.99552,21
+120457,522924.0491,1361339.823,88735.30109,21
+120458,522058.1197,1363223.064,88517.26541,21
+120459,522735.9121,1362815.22,90863.99885,21
+120460,521123.1193,1362950.986,88628.76575,21
+120461,522164.9275,1363061.365,90863.8539,21
+120462,519978.5491,1363498.514,89040.76526,21
+120463,521307.2476,1363614.846,92540.06251,21
+120464,520318.7724,1363683.817,90055.41113,21
+120465,520068.5166,1363674.578,91049.77438,21
+120466,520250.1674,1363595.796,92779.55769,21
+120467,519580.7634,1365984.215,91069.52309,21
+120468,519604.8108,1362514.428,93165.40214,21
+120469,518569.4546,1365622.309,92913.39115,21
+120470,518815.228,1363552.484,93255.07892,21
+120471,518692.9861,1366513.692,93092.85301,21
+120472,518027.4686,1364146.074,93517.91014,21
+120473,518141.7818,1365219.029,95076.0095,21
+120474,516961.803,1366172.308,93370.46834,21
+120475,517122.297,1364746.303,95340.60782,21
+120476,517160.8653,1366833.019,95376.86083,21
+120477,517139.5942,1365569.506,94858.98899,21
+120478,515744.2439,1366821.259,95488.15514,21
+120479,515545.5322,1366191.106,97333.25631,21
+120480,516787.3939,1366697.761,94124.06347,21
+120481,228338.1248,770490.4498,0,21
+120482,228692.3639,770490.3273,0,21
+120483,229088.2143,770663.0907,0,21
+120484,229586.9682,771197.5167,0,21
+120485,230204.7848,772139.7412,0,21
+120486,231416.7657,773416.0044,0,21
+120487,231710.1876,774903.1137,0,21
+120488,232534.584,776486.4229,0,21
+120489,233373.2668,778083.2523,0,21
+120490,234211.0629,779642.4591,0,21
+120491,235038.6914,781135.2453,0,21
+120492,235850.3541,782546.4096,0,21
+120493,236642.3551,783868.6143,0,21
+120494,237413.0649,785099.3585,0,21
+120495,238657.0277,786239.557,0,21
+120496,238885.5853,787292.4215,0,21
+120497,239587.2704,788262.7758,0,21
+120498,240266.8232,789156.4189,0,21
+120499,240925.2821,789979.5652,0,21
+120500,241564.3801,790738.4539,0,21
+120501,242185.1498,791439.1762,0,21
+120502,242788.7695,792087.4721,0,21
+120503,243376.6058,792688.6574,0,21
+120504,244447.9411,793247.6134,0,21
+120505,244509.9491,793768.7902,0,21
+120506,245058.2327,794256.2027,0,21
+120507,245595.599,794713.4766,0,21
+120508,246122.9297,795143.8319,0,21
+120509,246641.1522,795550.104,0,21
+120510,247151.08,795934.7943,0,21
+120511,247663.8266,796300.1247,0,21
+120512,248172.6692,796648.0743,0,21
+120513,249130.4734,796980.4087,0,21
+120514,249116.076,797298.6758,0,21
+120515,249607.3957,797604.2052,0,21
+120516,250094.9877,797898.1523,0,21
+120517,250579.1614,798181.546,0,21
+120518,251060.3643,798455.3369,0,21
+120519,251538.8129,798720.3988,0,21
+120520,252014.7924,798977.4975,0,21
+120521,252488.6408,799227.2899,0,21
+120522,253462.5555,799470.3432,0,21
+120523,253430.7681,799707.1677,0,21
+120524,253900.3635,799938.2418,0,21
+120525,254368.936,800164.0083,0,21
+120526,254836.3483,800384.8855,0,21
+120527,255302.7608,800601.2487,0,21
+120528,255769.0969,800813.4105,0,21
+120529,256232.9586,801021.6502,0,21
+120530,256698.5733,801226.2274,0,21
+120531,257667.0265,801427.3689,0,21
+120532,257626.8909,801625.2702,0,21
+120533,258090.3483,801820.0968,0,21
+120534,258553.418,802011.9914,0,21
+120535,259016.1227,802201.0968,0,21
+120536,259479.2509,802387.5627,0,21
+120537,259942.4047,802571.5388,0,21
+120538,260405.3736,802753.1625,0,21
+120539,260868.2406,802932.5538,0,21
+120540,261836.9424,803109.8219,0,21
+120541,0,0,0,21
+120542,0,0,0,21
+120543,0,0,0,21
+120544,0,0,0,21
+120545,0,0,0,21
+120546,271639.0772,0,0,21
+120547,0,0,1585969.505,21
+120548,0,0,0,21
+120549,0,266747.0256,0,21
+120550,0,0,0,21
+120551,0,0,0,21
+120552,0,0,0,21
+120553,0,0,0,21
+120554,0,0,0,21
+120555,0,0,0,21
+120556,0,0,0,21
+120557,0,0,0,21
+120558,0,266422.786,0,21
+120559,0,0,0,21
+120560,0,0,0,21
+120561,0,0,0,21
+120562,0,0,0,21
+120563,0,0,0,21
+120564,0,36244.03988,0,21
+120565,0,3419.586397,0,21
+120566,0,272363.6189,0,21
+120567,0,12367.1948,0,21
+120568,0,12878.15713,0,21
+120569,0,11238.10651,0,21
+120570,0,11920.3473,0,21
+120571,0,12046.53675,0,21
+120572,0,12237.39916,0,21
+120573,0,12250.15895,0,21
+120574,0,277516.2133,0,21
+120575,0,12519.16888,0,21
+120576,0,12697.24057,0,21
+120577,0,12804.36699,0,21
+120578,0,12917.46525,0,21
+120579,0,13057.73914,0,21
+120580,0,13118.4552,0,21
+120581,0,13152.58083,0,21
+120582,0,278206.2479,0,21
+120583,0,13376.65698,1506744.046,21
+120584,339402.5063,13431.68765,0,21
+120585,0,13526.63752,0,21
+120586,0,13716.99135,0,21
+120587,0,13759.95557,0,21
+120588,0,13848.7055,0,21
+120589,0,13991.74612,0,21
+120590,0,279051.9307,0,21
+120591,0,14139.25024,0,21
+120592,0,14293.83677,0,21
+120593,0,14374.71703,0,21
+120594,0,0,0,21
+120595,0,0,0,21
+120596,0,0,0,21
+120597,0,0,0,21
+120598,0,264953.7714,0,21
+120599,0,59291.05949,0,21
+120600,0,0,0,21
+120601,0,6983.845759,0,21
+120602,0,21781.07781,0,21
+120603,0,15324.62293,0,21
+120604,0,15794.10818,0,21
+120605,0,16215.13567,0,21
+120606,0,281485.5015,0,21
+120607,0,16581.26264,0,21
+120608,0,16822.26096,0,21
+120609,0,16982.87015,0,21
+120610,0,17209.30145,0,21
+120611,0,17355.78522,0,21
+120612,0,17557.32584,0,21
+120613,0,17740.73048,0,21
+120614,0,282952.257,0,21
+120615,0,18045.71308,0,21
+120616,0,18315.09899,0,21
+120617,0,18479.27098,0,21
+120618,0,18637.03473,0,21
+120619,0,18821.30571,0,21
+120620,0,19015.91465,1434514.597,21
+120621,0,19208.88655,0,21
+120622,0,284336.2179,0,21
+120623,0,19518.10692,0,21
+120624,0,19754.06557,0,21
+120625,0,19920.69284,0,21
+120626,0,20037.33169,0,21
+120627,0,20274.30596,0,21
+120628,0,20426.371,0,21
+120629,0,0,0,21
+120630,0,264988.7464,0,21
+120631,0,0,0,21
+120632,0,73816.64394,0,21
+120633,0,637.2840203,0,21
+120634,0,17146.35052,0,21
+120635,0,27187.32479,0,21
+120636,0,20883.99984,0,21
+120637,0,21975.55849,0,21
+120638,0,287161.7543,0,21
+120639,0,22322.33733,0,21
+120640,0,22461.21612,0,21
+120641,0,22654.69773,0,21
+120642,0,22768.51441,0,21
+120643,0,22924.63914,0,21
+120644,0,23127.18458,0,21
+120645,0,23227.81976,0,21
+120646,25100.63324,288363.206,0,21
+120647,0,23582.75193,0,21
+120648,2429.694871,23691.55067,0,21
+120649,5454.844176,23833.31927,0,21
+120650,6988.579926,23972.56538,0,21
+120651,5138.882201,24201.11967,0,21
+120652,5720.020776,24249.82084,0,21
+120653,345232.6483,24455.42664,0,21
+120654,5888.933088,289615.5417,0,21
+120655,5911.373361,24725.50436,0,21
+120656,6004.12484,24878.99927,0,21
+120657,6041.114829,25037.87718,1368562.173,21
+120658,6144.021725,25175.84066,0,21
+120659,6195.185793,25365.56663,0,21
+120660,6260.604839,25462.68364,0,21
+120661,6296.937528,25552.01059,0,21
+120662,6344.070699,265013.5091,0,21
+120663,6412.196057,429842.3601,0,21
+120664,6383.63678,3554.071093,0,21
+120665,6484.000703,164102.9606,0,21
+120666,6523.123599,138693.0464,0,21
+120667,6533.907461,135815.8572,0,21
+120668,6583.62937,145621.124,0,21
+120669,6633.169218,139382.8816,0,21
+120670,6654.556763,406940.9459,0,21
+120671,6721.054669,142795.2741,0,21
+120672,6731.709038,143714.3592,0,21
+120673,6801.904829,143718.89,0,21
+120674,6815.734152,145608.7209,0,21
+120675,6843.306441,145578.3051,0,21
+120676,0,146421.6149,0,21
+120677,0,147224.8719,0,21
+120678,0,412949.5675,0,21
+120679,0,148958.3414,0,21
+120680,0,149346.3164,0,21
+120681,30799.07493,150232.0962,0,21
+120682,0,151166.0455,0,21
+120683,2036.456421,151823.2763,0,21
+120684,11490.87822,152381.836,0,21
+120685,6462.883568,153317.4178,0,21
+120686,7308.272143,418823.1521,0,21
+120687,7342.021703,155106.191,0,21
+120688,7378.634293,155154.1414,0,21
+120689,7422.411789,156797.5349,0,21
+120690,7415.128524,156455.5928,0,21
+120691,7489.264864,157779.0557,0,21
+120692,7495.088696,158794.9817,0,21
+120693,7541.387013,27641.17255,0,21
+120694,7561.619136,292648.8976,1308349.338,21
+120695,7574.585889,0,0,21
+120696,7653.622114,0,0,21
+120697,7620.616658,0,0,21
+120698,7699.387233,101686.8995,0,21
+120699,7699.388054,13446.8035,0,21
+120700,7724.991627,582425.4109,0,21
+120701,7790.446779,40568.1409,0,21
+120702,7777.708496,67940.08149,0,21
+120703,7815.851955,514576.3436,0,21
+120704,7855.581023,151925.1769,0,21
+120705,7873.666114,168471.9752,0,21
+120706,7900.668732,168825.7517,0,21
+120707,7938.443464,169499.1008,0,21
+120708,7970.713195,170164.1222,0,21
+120709,7970.713777,170393.1821,0,21
+120710,8015.399077,171402.623,0,21
+120711,0,436709.4473,0,21
+120712,0,171910.9158,0,21
+120713,0,173031.2742,0,21
+120714,0,173090.2232,0,21
+120715,32782.64518,174055.3146,0,21
+120716,0,174341.2731,0,21
+120717,5023.606938,175241.6054,0,21
+120718,11359.0552,175519.7992,0,21
+120719,347227.2313,440959.2675,0,21
+120720,8324.028547,176929.0021,0,21
+120721,8348.289472,176888.7889,0,21
+120722,8324.031487,177059.1087,0,21
+120723,8324.032845,177610.9249,0,21
+120724,8348.293589,177830.8228,0,21
+120725,8778.751427,177788.4079,0,21
+120726,8614.463676,178304.5872,0,21
+120727,8680.098355,178481.2628,0,21
+120728,8734.832877,415378.7117,0,21
+120729,8747.145365,149676.6828,0,21
+120730,8790.927667,86840.17774,0,21
+120731,8820.274638,8475.015786,1253375.674,21
+120732,8820.033835,27017.39099,0,21
+120733,8875.211401,33227.00101,0,21
+120734,8904.123372,28928.70134,0,21
+120735,8879.016997,637848.6548,0,21
+120736,8982.383079,294265.4915,0,21
+120737,8937.756237,91271.17347,0,21
+120738,8973.869233,259980.9397,0,21
+120739,9020.282756,167669.3729,0,21
+120740,9026.625262,181625.7087,0,21
+120741,9042.622969,182216.213,0,21
+120742,9064.723031,182779.3421,0,21
+120743,9088.355773,182216.2171,0,21
+120744,9118.094732,448128.1004,0,21
+120745,0,182524.5825,0,21
+120746,0,182830.8847,0,21
+120747,0,183476.5718,0,21
+120748,0,183219.1489,0,21
+120749,33608.02893,183265.0036,0,21
+120750,0,183459.9287,0,21
+120751,6696.846287,183783.0093,0,21
+120752,12156.61643,448660.0756,0,21
+120753,8778.600052,183809.0283,0,21
+120754,9261.311081,184260.7744,0,21
+120755,9321.418743,184247.4501,0,21
+120756,9294.065259,184277.4209,0,21
+120757,9331.982409,184601.7941,0,21
+120758,9338.977431,184828.5194,0,21
+120759,9348.279525,184531.9995,0,21
+120760,9350.538697,420348.183,0,21
+120761,9361.290836,155464.0415,0,21
+120762,9377.311392,243652.924,0,21
+120763,9382.741571,164752.4025,0,21
+120764,9400.701083,182601.3126,0,21
+120765,9390.057494,33779.43614,0,21
+120766,9421.942396,29113.88416,0,21
+120767,9397.122238,29648.40764,0,21
+120768,9423.765108,294535.4363,1203182.454,21
+120769,9426.951623,29648.40984,0,21
+120770,9494.180017,672189.676,0,21
+120771,9603.66689,29606.30153,0,21
+120772,9563.362556,92525.91274,0,21
+120773,9592.842981,268745.0275,0,21
+120774,9624.428793,173050.9526,0,21
+120775,9672.325081,187170.209,0,21
+120776,9617.497313,452866.6068,0,21
+120777,9742.287968,188444.1304,0,21
+120778,9656.468418,187601.0115,0,21
+120779,0,188142.7827,0,21
+120780,0,188256.0236,0,21
+120781,339466.3989,188012.7952,0,21
+120782,0,188102.8787,0,21
+120783,34972.55458,187969.3647,0,21
+120784,1448.933232,453290.603,0,21
+120785,6279.005553,188297.5767,0,21
+120786,13210.48224,188515.0075,0,21
+120787,9422.225453,188150.707,0,21
+120788,10612.61994,188427.5656,0,21
+120789,10620.433,188581.0187,0,21
+120790,10682.88754,188746.9866,0,21
+120791,10792.54471,188505.2778,0,21
+120792,10892.38062,423951.4403,0,21
+120793,10977.58185,158953.3592,0,21
+120794,11069.2437,248003.7084,0,21
+120795,11155.9485,168418.7964,0,21
+120796,11242.51029,185629.7396,0,21
+120797,11318.8546,193498.009,0,21
+120798,11442.62434,188254.7627,0,21
+120799,11499.65514,189714.3712,0,21
+120800,11570.18706,29631.95013,0,21
+120801,11688.41713,295590.5844,0,21
+120802,11758.35111,29665.20576,0,21
+120803,11837.93888,29648.29101,0,21
+120804,11921.94541,29579.13781,0,21
+120805,12005.20819,693135.6497,1157354.029,21
+120806,12093.52278,29630.45249,0,21
+120807,12162.21785,91828.51535,0,21
+120808,12249.8447,274705.8864,0,21
+120809,12350.47898,174955.2314,0,21
+120810,12391.79608,456809.5018,0,21
+120811,12512.16816,190751.317,0,21
+120812,12541.72151,190997.887,0,21
+120813,0,191223.5324,0,21
+120814,0,190828.3841,0,21
+120815,0,190755.5808,0,21
+120816,0,191034.4333,0,21
+120817,44499.81693,190486.7871,0,21
+120818,4051.759771,190961.0107,0,21
+120819,7947.981226,456453.7765,0,21
+120820,17574.07013,190848.8849,0,21
+120821,12649.49017,190802.9572,0,21
+120822,13434.01327,190435.2596,0,21
+120823,13494.41306,190667.7383,0,21
+120824,13600.76702,161191.3034,0,21
+120825,13637.81437,161130.5818,0,21
+120826,13735.00346,250406.19,0,21
+120827,13785.40357,170259.9017,0,21
+120828,13889.95694,452928.9016,0,21
+120829,13923.74074,194977.4607,0,21
+120830,14035.24593,190327.8527,0,21
+120831,14042.87321,190654.4737,0,21
+120832,14168.16398,190982.6219,0,21
+120833,14226.70735,189980.4758,0,21
+120834,14257.01096,191171.7513,0,21
+120835,14404.15437,29380.40366,0,21
+120836,14383.69066,29405.61691,0,21
+120837,14501.21999,295258.9018,0,21
+120838,14560.11768,29406.1438,0,21
+120839,14605.16332,29336.45995,0,21
+120840,14706.70086,705508.9356,0,15.6
+120841,14735.29098,31426.11031,0,15.6
+120842,354207.213,86232.4546,1115538.279,15.6
+120843,14776.15525,279823.0083,0,15.6
+120844,14866.61758,176372.3711,0,15.6
+120845,14847.28363,192010.7427,0,15.6
+120846,14907.18071,458841.14,0,15.6
+120847,0,193069.8634,0,15.6
+120848,0,193209.8223,0,15.6
+120849,0,193625.5219,0,15.6
+120850,48929.74515,194039.2499,0,15.6
+120851,3742.651951,193937.6838,0,15.6
+120852,11281.11991,194123.8216,0,15.6
+120853,18881.33725,194635.1302,0,15.6
+120854,14639.87679,194725.484,0,15.6
+120855,15191.69896,461156.3118,0,15.6
+120856,15247.71137,165467.0817,0,15.6
+120857,15285.90394,166206.0884,0,15.6
+120858,15307.02397,255799.1254,0,15.6
+120859,15358.66328,176353.5896,0,15.6
+120860,15343.01485,192188.8413,0,15.6
+120861,15422.97602,201545.7662,0,15.6
+120862,15419.36571,196176.6783,0,15.6
+120863,15479.79975,197392.7934,0,15.6
+120864,15474.39189,463637.7531,0,15.6
+120865,15507.25545,197436.0748,0,15.6
+120866,15567.60447,198177.2612,0,15.6
+120867,15562.01487,198381.3599,0,15.6
+120868,15645.07406,198813.6227,0,15.6
+120869,15604.71217,198709.1723,0,15.6
+120870,15678.58646,30058.78259,0,15.6
+120871,15675.89185,30085.62559,0,15.6
+120872,15748.17125,30075.211,0,15.6
+120873,15709.27862,296085.8699,0,15.6
+120874,15780.91315,691404.2715,0,15.6
+120875,15801.66907,30143.67715,0,15.6
+120876,15840.42728,121766.107,0,15.6
+120877,15823.17008,274751.7045,0,15.6
+120878,15911.47268,188401.5209,0,15.6
+120879,15899.98167,201551.0215,1147496.437,15.6
+120880,0,202124.5333,0,15.6
+120881,0,202751.3915,0,15.6
+120882,0,468539.0254,0,15.6
+120883,53628.26114,202767.6733,0,15.6
+120884,4067.759682,203373.3536,0,15.6
+120885,11136.40883,203219.063,0,15.6
+120886,20640.6653,203764.8741,0,15.6
+120887,15473.3945,203883.0175,0,15.6
+120888,16198.69475,173253.8398,0,15.6
+120889,16236.55512,174112.4934,0,15.6
+120890,16295.20802,266435.6392,0,15.6
+120891,16251.42983,450974.9488,0,15.6
+120892,16350.16839,200546.8981,0,15.6
+120893,16324.8688,209760.3706,0,15.6
+120894,16364.98416,205694.7544,0,15.6
+120895,16362.68366,205490.4329,0,15.6
+120896,16419.77537,206056.1214,0,15.6
+120897,16415.12879,206601.3711,0,15.6
+120898,16449.26034,206275.6469,0,15.6
+120899,16426.5838,207092.2879,0,15.6
+120900,16522.13107,473006.2433,0,15.6
+120901,356006.3846,207435.6949,0,15.6
+120902,16689.70439,208259.768,0,15.6
+120903,16721.3335,208689.6217,0,15.6
+120904,16841.78183,30969.53126,0,15.6
+120905,16913.3335,31027.70842,0,15.6
+120906,17024.40228,31077.21436,0,15.6
+120907,17078.47612,31148.58681,0,15.6
+120908,17175.11238,738127.4433,0,15.6
+120909,17250.92728,314305.9707,0,15.6
+120910,17366.42422,111526.1691,0,15.6
+120911,17436.65097,298158.3767,0,15.6
+120912,17542.98174,198814.4311,0,15.6
+120913,0,214583.2474,0,15.6
+120914,0,215116.8256,0,15.6
+120915,0,215452.3548,0,15.6
+120916,61267.09529,216630.2188,1102750.198,15.6
+120917,5990.231995,216579.7434,0,15.6
+120918,10872.28999,482622.4071,0,15.6
+120919,23890.73466,217894.7822,0,15.6
+120920,17361.24603,185955.7287,0,15.6
+120921,18309.88532,186838.0017,0,15.6
+120922,18434.12709,282838.5729,0,15.6
+120923,18512.22316,200892.9803,0,15.6
+120924,18590.04198,213702.9331,0,15.6
+120925,18643.67051,226041.1121,0,15.6
+120926,18798.32337,220487.7808,0,15.6
+120927,18835.42917,487321.2336,0,15.6
+120928,18920.4874,222087.4206,0,15.6
+120929,19033.97349,222472.7697,0,15.6
+120930,19089.05271,223420.3883,0,15.6
+120931,19181.02433,222962.6022,0,15.6
+120932,19259.76491,224747.8018,0,15.6
+120933,19365.93372,224104.295,0,15.6
+120934,19400.40147,225492.2952,0,15.6
+120935,19547.68352,225362.4087,0,15.6
+120936,19597.09349,491776.1846,0,15.6
+120937,19668.78292,227209.364,0,15.6
+120938,19781.9029,32810.22545,0,15.6
+120939,19833.02663,32793.62871,0,15.6
+120940,19924.72655,32857.00923,0,15.6
+120941,20036.73988,32899.94421,0,15.6
+120942,20066.7162,818532.4854,0,15.6
+120943,20213.265,84755.1285,0,15.6
+120944,20258.20101,84387.46336,0,15.6
+120945,20316.76856,603712.8861,0,15.6
+120946,0,213322.3319,0,15.6
+120947,0,231983.2761,0,15.6
+120948,0,232675.8304,0,15.6
+120949,330547.1863,233406.6672,0,15.6
+120950,10368.43577,233721.788,0,15.6
+120951,15433.17955,234224.5136,0,15.6
+120952,89377.04086,201457.4196,0,15.6
+120953,79848.61602,201176.9822,1062227.459,15.6
+120954,66859.64988,568789.6092,0,15.6
+120955,71787.62943,217540.4918,0,15.6
+120956,72126.52118,229800.5454,0,15.6
+120957,72524.79689,243040.7725,0,15.6
+120958,72817.96139,236988.3098,0,15.6
+120959,412539.7258,238448.8492,0,15.6
+120960,73409.95088,238435.0003,0,15.6
+120961,73303.56265,239068.7349,0,15.6
+120962,73135.00205,238260.4592,0,15.6
+120963,72948.47342,239124.4927,0,15.6
+120964,72660.78867,238843.6995,0,15.6
+120965,72879.21131,238463.2735,0,15.6
+120966,72426.6577,239281.6866,0,15.6
+120967,72537.74712,238708.06,0,15.6
+120968,72113.93766,239310.2586,0,15.6
+120969,72527.59934,238662.5003,0,15.6
+120970,71813.3742,239083.0609,0,15.6
+120971,72055.60141,239295.4267,0,15.6
+120972,71901.68229,33986.41864,0,15.6
+120973,71756.63099,34013.57707,0,15.6
+120974,71556.0087,33957.00543,0,15.6
+120975,71619.91991,762297.1243,0,15.6
+120976,71372.42041,68026.11092,0,15.6
+120977,71463.15702,161471.2203,0,15.6
+120978,71213.65436,308966.5542,0,15.6
+120979,0,228106.0292,0,15.6
+120980,0,239228.7721,0,15.6
+120981,0,239537.0716,0,15.6
+120982,74198.24019,240112.5707,0,15.6
+120983,10993.16579,239712.2865,0,15.6
+120984,9628.69116,205722.4078,0,15.6
+120985,28782.57907,205881.8522,0,15.6
+120986,20056.94846,306741.7428,0,15.6
+120987,21039.87375,221730.3945,0,15.6
+120988,21086.97649,232543.7361,0,15.6
+120989,20977.08249,245665.2308,0,15.6
+120990,21029.31909,239421.6947,1025459.959,15.6
+120991,20975.29298,239425.8564,0,15.6
+120992,20924.74607,240177.4574,0,15.6
+120993,292560.0045,239642.8726,0,15.6
+120994,20871.19446,239999.1916,0,15.6
+120995,20885.91241,239636.8047,0,15.6
+120996,84858.80329,239802.5559,0,15.6
+120997,79716.71961,240271.187,0,15.6
+120998,65490.09509,239802.4744,0,15.6
+120999,70038.62831,240051.1683,0,15.6
+121000,69818.79143,240030.4827,0,15.6
+121001,69419.68961,239772.7436,0,15.6
+121002,69489.95211,239831.5912,0,15.6
+121003,69225.13341,240077.8675,0,15.6
+121004,69089.25098,240044.019,0,15.6
+121005,68835.61236,34160.09352,0,15.6
+121006,68899.42498,34036.66431,0,15.6
+121007,68426.26886,34163.66999,0,15.6
+121008,68409.47719,768215.8813,0,15.6
+121009,68375.32264,69770.65968,0,15.6
+121010,67929.64512,157974.432,0,15.6
+121011,68215.77507,312034.1239,0,15.6
+121012,47298.3858,228205.9561,0,15.6
+121013,47174.01939,240158.4938,0,15.6
+121014,47347.13907,240207.5184,0,15.6
+121015,459126.5909,240503.7394,0,15.6
+121016,56224.56854,205914.9517,0,15.6
+121017,56059.43081,206323.4543,0,15.6
+121018,74824.93854,307578.8077,0,15.6
+121019,65710.66576,221829.8758,0,15.6
+121020,66892.95032,233431.9326,0,15.6
+121021,67164.38736,244357.8764,0,15.6
+121022,67111.58077,236498.3819,0,15.6
+121023,20442.51904,235324.0911,0,15.6
+121024,20461.92176,233626.4763,0,15.6
+121025,20499.89341,232229.2949,0,15.6
+121026,20501.89627,230447.7907,0,15.6
+121027,20565.23342,228838.8917,992206.9043,15.6
+121028,20594.54581,227541.2594,0,15.6
+121029,20626.63693,225591.086,0,15.6
+121030,20673.83224,223708.8299,0,15.6
+121031,20683.24154,222373.3175,0,15.6
+121032,20771.91692,220459.9368,0,15.6
+121033,20740.76203,219101.7871,0,15.6
+121034,20834.13246,217257.4136,0,15.6
+121035,20817.2057,215333.0814,0,15.6
+121036,20871.62834,214356.4632,0,15.6
+121037,20916.69704,211820.0773,0,15.6
+121038,297228.0795,30964.15413,0,15.6
+121039,20949.77339,30703.507,0,15.6
+121040,21033.35779,30714.07743,0,15.6
+121041,85987.87858,30464.36288,0,15.6
+121042,81867.47375,740700.4424,0,15.6
+121043,67368.82388,47424.74462,0,15.6
+121044,72285.04135,84077.24877,0,15.6
+121045,51254.25535,292573.9903,0,15.6
+121046,51324.93565,181665.5793,0,15.6
+121047,51422.62431,195873.9637,0,15.6
+121048,126106.2414,165815.3568,0,15.6
+121049,62391.39822,162925.891,0,15.6
+121050,62757.73481,247165.6714,0,15.6
+121051,83948.52735,167550.1689,0,15.6
+121052,74550.80815,183549.9065,0,15.6
+121053,76352.3721,188636.1731,0,15.6
+121054,76975.38797,182253.8844,0,15.6
+121055,76932.27716,180739.7907,0,15.6
+121056,77934.47986,179155.5419,0,15.6
+121057,77986.99099,177271.9065,0,15.6
+121058,80130.19697,175316.4086,0,15.6
+121059,80197.30228,173575.4073,0,15.6
+121060,80536.28471,171507.9697,0,15.6
+121061,81471.8411,169625.9405,0,15.6
+121062,82030.10813,167903.6937,0,15.6
+121063,82504.52158,165906.0428,0,15.6
+121064,83221.61306,164048.3537,962176.1913,15.6
+121065,83940.47527,161953.6045,0,15.6
+121066,84174.86432,160150.1453,0,15.6
+121067,85049.97851,158342.9262,0,15.6
+121068,22069.82523,156029.0416,0,15.6
+121069,22073.91694,154449.4135,0,15.6
+121070,361711.6806,152656.8533,0,15.6
+121071,22125.61221,149624.9764,0,15.6
+121072,22197.11558,24211.62598,0,15.6
+121073,22238.18628,23926.53396,0,15.6
+121074,22270.23353,23756.5218,0,15.6
+121075,22273.8026,23513.46346,0,15.6
+121076,22365.53872,23311.53546,0,15.6
+121077,311411.6975,23059.08246,0,15.6
+121078,0,22836.46177,0,15.6
+121079,786.4482716,22565.26075,0,15.6
+121080,103904.8305,0,0,15.6
+121081,140483.2478,543887.2536,0,15.6
+121082,77558.65261,0,0,15.6
+121083,82642.3536,103851.9078,0,15.6
+121084,100238.4819,139282.8323,0,15.6
+121085,92771.25691,156556.3056,0,15.6
+121086,93953.25717,140410.2556,0,15.6
+121087,94515.2029,144065.9632,0,15.6
+121088,94679.02206,146734.6832,0,15.6
+121089,95264.04892,149021.678,0,15.6
+121090,95566.94663,150414.6994,0,15.6
+121091,95709.38709,152382.9635,0,15.6
+121092,96245.69059,154099.9418,0,15.6
+121093,96672.22796,155611.8045,0,15.6
+121094,96753.17813,157597.8354,0,15.6
+121095,97288.05724,159157.1686,0,15.6
+121096,97732.66607,161044.9085,0,15.6
+121097,97800.32853,162963.0892,0,15.6
+121098,98233.34174,164462.0008,0,15.6
+121099,98784.32703,166243.1758,0,15.6
+121100,98930.12815,168027.221,0,15.6
+121101,99473.73759,169755.037,0,15.6
+121102,99564.13515,171859.2623,934959.4207,15.6
+121103,100116.4092,173046.7252,0,15.6
+121104,100314.655,175204.9945,0,15.6
+121105,100681.0721,176664.4583,0,15.6
+121106,101034.5733,178560.1397,0,15.6
+121107,23088.44104,180435.5589,0,15.6
+121108,23148.76021,182331.0285,0,15.6
+121109,23121.49958,184508.4224,0,15.6
+121110,23178.01375,186904.097,0,15.6
+121111,0,28774.403,0,15.6
+121112,0,28905.37972,0,15.6
+121113,0,0,0,15.6
+121114,78847.0817,0,0,15.6
+121115,333678.493,737087.1459,0,15.6
+121116,20176.40888,8611.111227,0,15.6
+121117,49154.92809,113602.4972,0,15.6
+121118,142983.7151,278130.962,0,15.6
+121119,103388.4556,187294.3304,0,15.6
+121120,103072.9536,203754.8114,0,15.6
+121121,106062.6363,204681.5954,0,15.6
+121122,106245.0081,207911.3206,0,15.6
+121123,106681.237,208362.1198,0,15.6
+121124,446235.2436,210558.9491,0,15.6
+121125,107231.394,212638.6913,0,15.6
+121126,107310.7154,213757.2107,0,15.6
+121127,107491.7315,215797.1332,0,15.6
+121128,107925.4056,217721.2036,0,15.6
+121129,108220.8113,219084.6296,0,15.6
+121130,108529.6846,221217.0748,0,15.6
+121131,108711.1781,222903.7031,0,15.6
+121132,108907.4993,224274.8259,0,15.6
+121133,109406.7158,226693.5919,0,15.6
+121134,109611.778,227612.0339,0,15.6
+121135,109943.5713,230367.9307,0,15.6
+121136,110136.1686,231433.3161,0,15.6
+121137,110382.6105,233509.1026,910319.8751,15.6
+121138,111053.8666,235259.7958,0,15.6
+121139,110652.2988,236821.7865,0,15.6
+121140,111588.5645,239650.2866,0,15.6
+121141,111251.0489,237213.5418,0,15.6
+121142,111790.2267,236651.8448,0,15.6
+121143,111460.0514,234752.1587,0,15.6
+121144,87884.05994,233891.0924,0,15.6
+121145,0,0,0,15.6
+121146,0,0,0,15.6
+121147,79558.71843,99533.32477,0,15.6
+121148,19560.33428,730414.1467,0,15.6
+121149,9822.627909,49517.54738,0,15.6
+121150,31700.91461,149857.6995,0,15.6
+121151,23139.39442,296943.207,0,15.6
+121152,374350.6343,212066.8331,0,15.6
+121153,23894.79409,222689.8311,0,15.6
+121154,62589.51511,222074.4804,0,15.6
+121155,154181.7427,220786.1412,0,15.6
+121156,107741.2748,219267.0003,0,15.6
+121157,112399.7025,218047.8655,0,15.6
+121158,113365.628,217142.8014,0,15.6
+121159,113765.2795,215259.3284,0,15.6
+121160,113373.9595,214261.0779,0,15.6
+121161,113785.5174,212955.1235,0,15.6
+121162,113610.5634,211619.8967,0,15.6
+121163,113696.1447,210053.923,0,15.6
+121164,113636.774,209274.5588,0,15.6
+121165,113850.2672,208699.7762,0,15.6
+121166,113924.4948,207377.3694,0,15.6
+121167,113924.1689,205707.1578,0,15.6
+121168,453481.2733,204808.5883,0,15.6
+121169,114031.266,203488.1268,0,15.6
+121170,114289.1481,202188.4798,0,15.6
+121171,113943.5963,200534.3147,0,15.6
+121172,114362.5743,198444.3316,888021.3346,15.6
+121173,114301.6997,197199.299,0,15.6
+121174,114347.3467,195567.5684,0,15.6
+121175,114296.8662,194512.8036,0,15.6
+121176,114704.5895,193239.8257,0,15.6
+121177,90488.907,161704.1397,0,15.6
+121178,90910.32525,0,0,15.6
+121179,90800.85426,86938.01056,0,15.6
+121180,170667.015,8677.963197,0,15.6
+121181,110803.1702,26370.32577,0,15.6
+121182,9529.579841,672430.236,0,15.6
+121183,31807.48492,28312.84763,0,15.6
+121184,23165.66228,75878.08179,0,15.6
+121185,23822.36955,267018.0339,0,15.6
+121186,23870.16,162729.8274,0,15.6
+121187,23892.36953,177746.1394,0,15.6
+121188,23803.82045,176302.2918,0,15.6
+121189,389730.6885,175310.1577,0,15.6
+121190,29443.18171,173821.1711,0,15.6
+121191,57155.14982,171883.0509,0,15.6
+121192,161251.6233,170611.0934,0,15.6
+121193,109182.9109,169457.2099,0,15.6
+121194,115597.8945,167304.6632,0,15.6
+121195,116106.4689,166053.5096,0,15.6
+121196,116420.7184,164333.6609,0,15.6
+121197,116161.492,163357.2538,0,15.6
+121198,116344.4457,161092.9978,0,15.6
+121199,116275.9615,159558.2529,0,15.6
+121200,116238.677,156722.8249,0,17.8
+121201,117019.5674,157196.8665,0,17.8
+121202,117580.8945,157044.5972,0,17.8
+121203,118974.4432,157220.2372,0,17.8
+121204,119071.6868,157514.2937,0,17.8
+121205,120291.9329,157092.5156,0,17.8
+121206,460528.8275,157740.2441,0,17.8
+121207,122039.7867,157748.6597,867865.9027,17.8
+121208,122317.1373,157651.8825,0,17.8
+121209,123618.786,131794.1901,0,17.8
+121210,99552.77273,131665.5203,0,17.8
+121211,100330.5538,131992.36,0,17.8
+121212,101276.6299,94418.30866,0,17.8
+121213,182624.6933,9917.565149,0,17.8
+121214,126000.4085,11386.43204,0,17.8
+121215,113185.6699,37088.46931,0,17.8
+121216,137089.5138,24604.23294,0,17.8
+121217,129567.9234,26295.52129,0,17.8
+121218,130991.3437,637575.5993,0,17.8
+121219,25463.56457,26388.68,0,17.8
+121220,25516.64209,45056.47715,0,17.8
+121221,25607.95349,221093.1209,0,17.8
+121222,25682.38919,160590.5271,0,17.8
+121223,25750.56132,154491.152,0,17.8
+121224,25825.37245,159607.0848,0,17.8
+121225,469563.7191,160104.4315,0,17.8
+121226,41250.01002,159776.904,0,17.8
+121227,76582.86909,159909.2841,0,17.8
+121228,187672.7607,160112.0155,0,17.8
+121229,134710.3138,160189.841,0,17.8
+121230,140491.0787,160095.9898,0,17.8
+121231,142153.9355,160497.0232,0,17.8
+121232,143125.8146,160317.6431,0,17.8
+121233,144009.0208,160450.4985,0,17.8
+121234,144509.512,161912.1603,0,17.8
+121235,145432.8923,161133.0165,0,17.8
+121236,146149.4528,161679.0808,0,17.8
+121237,146814.2906,161840.9535,0,17.8
+121238,147770.6491,161630.3172,0,17.8
+121239,148145.0461,162390.6173,0,17.8
+121240,149433.278,162253.7077,0,17.8
+121241,149879.815,162278.646,0,17.8
+121242,150837.209,134735.4295,849696.3255,17.8
+121243,124131.4234,134702.3237,0,17.8
+121244,464411.6048,134735.4131,0,17.8
+121245,203031.4918,231598.1877,0,17.8
+121246,144109.3432,146044.5627,0,17.8
+121247,148272.2178,146279.8169,0,17.8
+121248,159883.8627,38218.14192,0,17.8
+121249,155726.0767,25245.2466,0,17.8
+121250,157264.2531,27026.55692,0,17.8
+121251,158189.2803,27031.8013,0,17.8
+121252,158389.3028,27066.72522,0,17.8
+121253,159636.2023,27093.11183,0,17.8
+121254,160409.8348,665538.902,0,17.8
+121255,28392.95507,28474.38714,0,17.8
+121256,28408.55515,45254.9394,0,17.8
+121257,28504.3607,234008.6477,0,17.8
+121258,28605.81762,164233.1441,0,17.8
+121259,542511.8967,160905.018,0,17.8
+121260,45208.70356,165669.9837,0,20
+121261,100737.7178,163462.7141,0,20
+121262,217085.5558,163316.5123,0,20
+121263,151939.2916,163374.9088,0,20
+121264,161433.234,164125.5191,46776.4306,20
+121265,160797.336,163748.1237,46410.19557,20
+121266,160137.3839,164361.0484,46090.26706,20
+121267,160046.2601,164529.0786,45795.05695,20
+121268,159590.4987,164770.5002,45511.54152,20
+121269,158809.2883,164751.7652,45233.71612,20
+121270,158600.5586,165290.8644,44959.29794,20
+121271,157848.4698,165390.7929,44687.33228,20
+121272,157826.2985,165581.8104,44417.09859,20
+121273,157144.1398,165947.5494,44147.95918,20
+121274,156475.0927,166037.0549,43879.49352,20
+121275,128468.7898,137036.791,43611.32979,20
+121276,128223.0429,136980.735,43343.25994,20
+121277,205718.953,137173.2233,43075.30231,20
+121278,145343.4821,236228.2497,42807.4011,20
+121279,147458.4417,149959.5102,775819.6825,20
+121280,158561.9264,148131.695,41755.73445,20
+121281,153329.2078,177457.7017,41493.32758,20
+121282,153273.5051,163741.8447,41231.41843,20
+121283,152574.686,165938.9479,40970.21097,20
+121284,152363.3051,30396.90999,40709.86713,20
+121285,151713.4282,30605.68077,40450.53471,20
+121286,151619.2847,29942.44638,40192.44158,20
+121287,150935.9217,30435.5235,39935.77269,20
+121288,150313.049,30617.87415,39680.65654,20
+121289,26950.04837,642375.0518,39427.26479,20
+121290,26923.93239,30749.50858,39175.70087,20
+121291,26830.81231,50759.69159,38926.03506,20
+121292,26804.58606,253383.6601,0,20
+121293,26778.03752,160145.7001,0,20
+121294,528735.6207,169030.7128,0,20
+121295,373344.3057,171452.3546,0,20
+121296,82104.39667,172122.3607,0,20
+121297,194954.7873,172026.9267,0,20
+121298,142415.1373,172132.0255,0,20
+121299,144722.113,172467.2297,0,20
+121300,145380.9414,173215.9844,0,20
+121301,145205.0988,172355.4434,0,20
+121302,144582.7463,173679.8602,0,20
+121303,143999.5527,173340.3235,0,20
+121304,143397.6839,173808.4632,0,20
+121305,143385.6029,174093.7008,0,20
+121306,142384.1551,174061.3706,0,20
+121307,116196.4685,174360.0528,0,20
+121308,115818.5808,143197.0552,0,20
+121309,190350.6936,142766.8521,0,20
+121310,127431.5877,226829.7706,0,20
+121311,136200.1653,150162.5888,0,20
+121312,143338.0254,171254.9802,0,20
+121313,139106.6408,178544.0875,0,20
+121314,138906.3258,177201.9243,0,20
+121315,138363.6739,176277.0852,0,20
+121316,137844.9185,176397.4463,0,20
+121317,137596.4668,177448.557,724116.9374,20
+121318,137061.7774,177042.8124,0,20
+121319,136494.112,32614.98713,0,20
+121320,136091.3374,32672.16294,0,21
+121321,136437.4784,33127.75793,0,21
+121322,136659.1364,33342.11562,0,21
+121323,137124.8116,33689.63596,0,21
+121324,25390.10855,701482.1298,0,21
+121325,25402.81965,34086.2906,0,21
+121326,25467.96169,78857.05813,0,21
+121327,25466.36607,278414.8476,0,21
+121328,25503.91808,181572.1929,0,21
+121329,25529.51742,196088.5269,0,21
+121330,513156.2892,198927.8017,0,21
+121331,32166.01846,200650.7583,0,21
+121332,73462.97149,202421.6357,0,21
+121333,183454.7315,203794.8059,0,21
+121334,138523.1769,206560.1497,0,21
+121335,135921.6289,207505.7078,0,21
+121336,138680.8065,209534.3761,0,21
+121337,138676.4458,211216.0539,0,21
+121338,138674.5382,213126.1712,0,21
+121339,113560.8639,214728.7581,0,21
+121340,113155.09,178750.1304,0,21
+121341,113764.3296,180584.876,0,21
+121342,195358.923,278565.7072,0,21
+121343,140108.7047,198161.6603,0,21
+121344,122366.1438,216550.53,0,21
+121345,487037.5346,232698.1786,0,21
+121346,138781.4028,225207.326,0,21
+121347,139711.5243,228885.1284,0,21
+121348,139457.1066,229820.3058,0,21
+121349,139589.1485,232396.6031,35212.8827,21
+121350,139931.6735,233574.0238,38528.75395,21
+121351,136418.9469,235669.6235,38282.09291,21
+121352,136192.2727,236815.6903,38081.30222,21
+121353,135868.8488,239118.3013,711675.7744,21
+121354,136043.7988,40967.56926,37768.35655,21
+121355,135860.4641,41130.83429,37605.00966,21
+121356,136231.5425,41318.59422,37444.08594,21
+121357,135747.0509,780034.6644,37284.10393,21
+121358,136017.4138,84370.39641,37124.76901,21
+121359,136076.7635,156951.9392,36965.39204,21
+121360,25472.40217,325901.9458,36805.45202,21
+121361,25455.69764,237723.2905,36644.63502,21
+121362,25495.96389,251218.029,36482.75031,21
+121363,25497.79081,253064.1866,36319.78045,21
+121364,25536.21951,254511.2147,36155.94448,21
+121365,25489.55934,255568.2575,35990.95807,21
+121366,494709.8465,257209.1331,35825.49649,21
+121367,29756.71578,258165.1329,35659.3818,21
+121368,78236.98324,259684.8006,35492.8696,21
+121369,180138.501,261403.4227,35326.09274,21
+121370,135798.7215,261960.603,35159.28096,21
+121371,136120.4136,264095.5658,34992.5804,21
+121372,112300.3872,220556.9528,34826.13813,21
+121373,112807.568,222345.4269,34660.13513,21
+121374,112300.343,334464.7019,34494.49402,21
+121375,195360.2838,247423.1912,34329.06707,21
+121376,140833.1912,268381.6035,34163.88632,21
+121377,119799.6875,275543.4821,33999.06845,21
+121378,147323.1,272634.6329,0,21
+121379,138550.0029,274793.4217,0,21
+121380,138615.9593,275598.6343,0,21
+121381,138917.5988,274907.5064,0,21
+121382,139042.4534,274993.9709,0,21
+121383,139169.4858,274594.2103,0,21
+121384,139464.2125,273382.3666,0,21
+121385,140248.7555,273863.8554,0,21
+121386,139867.2398,272934.0253,0,21
+121387,479991.3661,45380.86702,0,21
+121388,140222.5459,45341.16201,0,21
+121389,140293.4559,45426.46869,645091.0024,21
+121390,140764.358,883886.951,0,21
+121391,140598.3,138209.1581,0,21
+121392,140679.1139,117870.5063,0,21
+121393,141088.5398,372601.9977,0,21
+121394,140828.0255,251664.3293,0,21
+121395,141208.1686,267541.4193,0,21
+121396,26006.0614,246110.3392,0,21
+121397,25958.61445,239900.7843,0,21
+121398,26023.21727,238342.3299,0,21
+121399,25977.90099,236216.0512,0,21
+121400,26162.06412,234731.1174,0,21
+121401,26089.43255,233361.2612,0,21
+121402,530259.3802,230858.0887,0,21
+121403,31510.79386,229530.2262,0,21
+121404,80294.22748,187019.4779,0,21
+121405,158331.8717,184794.3752,0,21
+121406,118934.7952,281911.5351,0,21
+121407,190015.9375,208695.0062,0,21
+121408,131929.8956,215077.1143,0,21
+121409,139963.1485,226323.0318,0,21
+121410,148029.5407,219176.8211,0,21
+121411,143791.9873,218396.6416,0,21
+121412,144248.9122,217428.1334,0,21
+121413,143475.8925,215775.394,0,21
+121414,143419.759,214672.7435,0,21
+121415,143166.3244,213016.6522,0,21
+121416,142526.6164,212010.1123,0,21
+121417,141670.6115,210280.0288,0,21
+121418,141243.2061,209263.3877,0,21
+121419,140446.133,207930.8052,0,21
+121420,140210.2126,39137.6813,0,21
+121421,139766.1895,39073.85978,0,21
+121422,139448.3217,38795.06268,0,21
+121423,138840.7467,587742.7017,0,21
+121424,138242.7519,99423.89563,0,21
+121425,138302.1318,117008.1709,648008.9346,21
+121426,137261.7965,254716.1491,0,21
+121427,137181.3065,191297.1562,0,21
+121428,136354.2946,196765.4029,0,21
+121429,475699.8933,196216.205,0,21
+121430,135538.0499,194829.4112,0,21
+121431,135002.4348,193542.7656,0,21
+121432,25445.16636,191813.8944,0,21
+121433,25322.108,190748.6348,0,21
+121434,25369.91655,189526.1506,0,21
+121435,25292.58509,187386.7089,0,21
+121436,25244.96869,150204.2863,0,21
+121437,0,149207.7234,0,21
+121438,438572.3698,231525.9616,0,21
+121439,2757.23711,169863.2074,0,21
+121440,140881.0088,180119.9251,0,21
+121441,164763.257,187568.0587,0,21
+121442,109766.73,182749.4301,0,21
+121443,134578.7528,183259.826,0,21
+121444,127146.1044,182504.1543,0,21
+121445,127573.6399,182419.4764,0,21
+121446,127576.8488,181651.9794,0,21
+121447,127286.8752,182193.9034,0,21
+121448,127206.8637,180990.0189,0,21
+121449,127278.2175,181239.6633,0,21
+121450,127063.6776,180066.0909,0,21
+121451,126950.8391,180405.2086,0,21
+121452,126803.9833,179501.3499,0,21
+121453,126648.9554,34926.7886,0,21
+121454,126471.9591,34635.06876,0,21
+121455,126645.4416,34643.31448,0,21
+121456,126413.0698,518459.411,0,21
+121457,126136.1435,72842.20114,0,21
+121458,126169.5104,134664.1232,0,21
+121459,125813.5055,214093.8991,0,21
+121460,126177.074,171016.618,0,21
+121461,125487.2695,175547.2433,650662.3873,21
+121462,125752.2661,175011.2987,0,21
+121463,125344.7409,174085.89,0,21
+121464,125307.6856,173794.1664,0,21
+121465,125508.2571,173130.6847,0,21
+121466,124775.8167,172494.07,0,21
+121467,124851.7757,171727.3039,0,21
+121468,25119.07239,138523.0678,0,21
+121469,25135.5184,137603.6942,0,21
+121470,0,207573.3239,0,21
+121471,339533.3814,155065.5751,0,21
+121472,70131.14927,166229.6349,0,21
+121473,352868.5919,171690.5318,0,21
+121474,38838.05692,167212.9986,0,21
+121475,102882.2564,167637.3654,0,21
+121476,152928.085,166611.2547,0,21
+121477,121539.5466,166564.4149,0,21
+121478,125558.9505,166225.6581,0,21
+121479,125969.1677,164980.4645,0,21
+121480,125690.9674,165700.8055,0,21
+121481,125845.8679,164308.0924,0,21
+121482,126083.7727,164026.0098,0,21
+121483,126053.5864,164115.6318,0,21
+121484,126341.4734,163066.299,0,21
+121485,126220.6798,162612.4541,0,21
+121486,126399.7767,31221.80194,0,21
+121487,126706.6641,31323.89323,0,21
+121488,126681.6376,31052.92453,0,21
+121489,126670.2522,440723.852,0,21
+121490,127120.8422,65498.76654,0,21
+121491,127193.2968,143499.3496,0,21
+121492,126973.3425,181699.0024,0,21
+121493,127625.1255,157080.823,0,21
+121494,127503.7363,159386.6114,0,21
+121495,127592.0411,158559.2762,0,21
+121496,127669.8181,158374.8014,0,21
+121497,128228.8941,157406.4692,653076.71,21
+121498,127887.1177,157603.2135,0,21
+121499,128697.9285,156700.1679,0,21
+121500,128707.779,125750.1597,0,21
+121501,128499.114,124329.6311,0,21
+121502,103441.5643,186405.26,0,21
+121503,0,137611.8218,0,21
+121504,70954.63922,139689.9179,0,21
+121505,17421.6387,151784.3348,0,21
+121506,20320.32553,141944.7843,0,21
+121507,357847.239,141143.1278,0,21
+121508,45894.38504,138966.9866,0,21
+121509,116849.9171,136760.2757,0,21
+121510,151189.6709,134284.0582,0,21
+121511,128537.2469,132613.932,0,21
+121512,131373.3372,130162.9731,0,21
+121513,471030.1393,128154.77,0,21
+121514,131755.5509,125790.3263,0,21
+121515,131745.1174,124068.2951,0,21
+121516,132132.7791,121463.5057,0,21
+121517,132064.6423,119482.9311,0,21
+121518,132389.2171,117387.7293,0,21
+121519,132211.4706,25186.12719,0,21
+121520,132696.5325,24835.8613,0,21
+121521,132584.6197,24662.3857,0,21
+121522,133029.4426,24345.65513,0,21
+121523,133034.9161,295220.1781,0,21
+121524,133244.7126,23867.8327,0,21
+121525,133097.2852,83256.24578,0,21
+121526,133605.6323,124845.8866,0,21
+121527,133808.4246,93288.54429,0,21
+121528,133662.7665,95967.09168,0,21
+121529,134129.088,94015.80826,0,21
+121530,134057.8071,91878.11588,0,21
+121531,134214.9946,89886.8596,0,21
+121532,134430.7376,65873.16067,0,21
+121533,134245.7781,64391.22191,627886.5753,21
+121534,107506.0992,62593.30727,0,21
+121535,107999.0344,112695.5849,0,21
+121536,180263.2045,68732.35163,0,21
+121537,19235.80107,65693.43114,0,21
+121538,20339.80574,77806.32805,0,21
+121539,30482.64792,75704.82793,0,21
+121540,26519.17093,70865.19094,0,21
+121541,344057.7311,70824.61166,0,21
+121542,83982.33198,69836.88035,0,21
+121543,104973.5175,68863.70516,0,21
+121544,157713.2745,67208.9221,0,21
+121545,132400.3276,66671.23536,0,21
+121546,134526.3698,64810.547,0,21
+121547,132741.1973,64098.43043,0,21
+121548,131944.1539,62716.57516,0,21
+121549,131963.4039,61598.17175,0,21
+121550,131853.7295,60397.10144,0,21
+121551,131590.2429,59238.59607,0,21
+121552,131732.7124,58353.05766,0,21
+121553,131546.4422,16699.51776,0,21
+121554,131243.4736,16487.45749,0,21
+121555,470785.3143,16233.65901,0,21
+121556,131309.3907,16067.26404,0,21
+121557,131288.9401,15723.20989,0,21
+121558,130959.0525,15616.40382,0,21
+121559,131010.2992,15290.18345,0,21
+121560,131192.2484,14972.13147,0,21
+121561,129302.1709,14937.96376,0,21
+121562,127078.3117,14897.99893,0,21
+121563,125799.1045,14779.71545,0,21
+121564,123830.6689,14735.30248,0,21
+121565,122061.4337,0,0,21
+121566,94810.43477,0,0,21
+121567,93162.1865,0,0,21
+121568,161670.1639,0,0,21
+121569,107959.0859,33467.7767,0,21
+121570,105633.9248,3053.618973,632180.4907,21
+121571,29284.32877,9212.341487,0,21
+121572,23989.24524,12749.79306,0,21
+121573,24234.26652,10562.93076,0,21
+121574,24051.34999,16637.21739,0,21
+121575,277865.6958,13478.19567,0,21
+121576,48218.94689,14158.03793,0,21
+121577,87928.42066,14197.67255,0,21
+121578,118083.507,14214.38329,0,21
+121579,99672.43315,14200.99486,0,21
+121580,99813.87374,14583.57936,0,21
+121581,99477.52233,14278.98784,0,21
+121582,98282.20994,14396.29556,0,21
+121583,97588.62531,14379.17031,0,21
+121584,96390.19356,14368.15582,0,21
+121585,95864.63043,14408.51996,0,21
+121586,94732.67628,14315.67337,0,21
+121587,94113.30057,14393.42689,0,21
+121588,92870.00905,14274.74808,0,21
+121589,92474.02002,14402.14026,0,21
+121590,91260.20736,14240.60866,0,21
+121591,90653.06232,14290.6565,0,21
+121592,89836.92147,14120.94438,0,21
+121593,88669.54911,14003.73959,0,21
+121594,88260.29083,13942.6743,0,21
+121595,87163.43235,13851.64294,0,21
+121596,86695.74708,13730.70017,0,21
+121597,85723.12854,13632.94243,0,21
+121598,65731.34174,13436.36752,0,21
+121599,64988.89058,0,0,21
+121600,115229.5755,0,0,21
+121601,74204.01194,0,0,21
+121602,418257.9874,0,0,21
+121603,82973.2164,30281.43909,0,21
+121604,80032.33793,0,0,21
+121605,17823.18641,4717.192604,0,21
+121606,17646.38175,12621.02928,0,21
+121607,17396.42665,7682.619212,636098.4796,21
+121608,17145.12551,9896.421409,0,21
+121609,17047.52419,13708.0034,0,21
+121610,16702.08433,10929.13414,0,21
+121611,230899.3922,11570.0444,0,21
+121612,19083.91851,11526.17382,0,21
+121613,45748.26942,11393.92944,0,21
+121614,91223.25408,11265.94352,0,21
+121615,74694.06265,11137.73654,0,21
+121616,71018.20941,10937.92418,0,21
+121617,72789.51932,10827.1703,0,21
+121618,72157.79976,10833.52618,0,21
+121619,71682.76453,10692.05166,0,21
+121620,71635.31696,10616.96532,0,21
+121621,71228.71611,10709.28354,0,21
+121622,71632.57453,10591.3891,0,21
+121623,72146.66365,10594.36624,0,21
+121624,72217.40338,10467.77058,0,21
+121625,72718.19135,10570.67485,0,21
+121626,73049.07198,10429.258,0,21
+121627,73493.8797,10453.37625,0,21
+121628,73909.33413,10277.74113,0,21
+121629,74166.53744,10253.20031,0,21
+121630,59507.98215,10210.84794,0,21
+121631,59524.64779,10214.21471,0,21
+121632,59946.35494,10076.89599,0,21
+121633,108656.6356,0,0,21
+121634,74357.63197,0,0,21
+121635,66703.30063,0,0,21
+121636,82183.70186,0,0,21
+121637,76493.12684,0,0,21
+121638,77453.76568,29072.77974,0,21
+121639,77884.88467,0,0,21
+121640,78000.02491,2292.259484,0,21
+121641,15540.39221,10272.66273,0,21
+121642,15488.52897,6061.941052,0,21
+121643,15574.4749,6625.650407,0,21
+121644,15523.14907,6625.650537,639665.6448,21
+121645,15524.27155,8299.115406,0,21
+121646,15540.64021,10922.55157,0,21
+121647,15473.26105,8813.594317,0,21
+121648,563025.07,9563.871441,0,21
+121649,40930.54844,9382.465645,0,21
+121650,49919.10303,9522.260346,0,21
+121651,104643.9145,9380.05307,0,21
+121652,75825.51934,9418.598832,0,21
+121653,80553.40768,9377.065494,0,21
+121654,79841.84719,9288.482447,0,21
+121655,80208.51639,9403.524286,0,21
+121656,79841.77443,9280.189094,0,21
+121657,80154.23802,9302.418172,0,21
+121658,79775.47883,9161.622247,0,21
+121659,79756.22481,9293.103323,0,21
+121660,79688.93559,9165.336454,0,21
+121661,79737.80869,9198.907074,0,21
+121662,79687.34099,9097.862159,0,21
+121663,64195.05394,9202.015054,0,21
+121664,64423.21519,8998.729069,0,21
+121665,64009.73679,9063.032468,0,21
+121666,112641.9172,9059.098047,0,21
+121667,76447.33836,9003.817641,0,21
+121668,70268.89189,0,0,21
+121669,84296.34297,0,0,21
+121670,78918.18989,0,0,21
+121671,79070.10244,0,0,21
+121672,79390.25176,0,0,21
+121673,79020.60713,25994.88948,0,21
+121674,79295.21842,290.5308814,0,21
+121675,79158.67346,2840.065282,0,21
+121676,79323.3456,7899.408148,0,21
+121677,79348.76946,7928.345076,0,21
+121678,15067.79243,6426.853501,0,21
+121679,15016.12429,6909.158714,0,21
+121680,15067.76442,6895.537063,0,21
+121681,15052.62016,6879.591076,642901.4004,21
+121682,15067.15066,6876.723278,0,21
+121683,15122.12573,6849.412409,0,21
+121684,15102.92151,7986.178528,0,21
+121685,234067.1731,8863.512184,0,21
+121686,36816.51524,7957.278342,0,21
+121687,62922.32956,8256.76507,0,21
+121688,102337.4218,8276.288442,0,21
+121689,81412.92692,8135.229464,0,21
+121690,84036.17729,8201.044623,0,21
+121691,84658.00462,8123.544959,0,21
+121692,84919.56677,8139.225057,0,21
+121693,85119.54035,8001.015462,0,21
+121694,425206.5757,8141.133712,0,21
+121695,85985.08906,7924.657437,0,21
+121696,71265.26453,8004.773316,0,21
+121697,71055.39226,7846.101643,0,21
+121698,71998.50858,8006.563805,0,21
+121699,121342.6727,7786.750358,0,21
+121700,84963.85115,7849.741331,0,21
+121701,79083.87514,7728.79568,0,21
+121702,94113.46878,7845.86552,0,21
+121703,88384.29709,0,0,21
+121704,89266.1583,0,0,21
+121705,89408.30233,0,0,21
+121706,89597.41339,0,0,21
+121707,89808.1653,0,0,21
+121708,89979.59815,0,0,21
+121709,90077.6925,25083.88073,0,21
+121710,90212.21598,1047.787573,0,21
+121711,90574.36353,4374.355759,0,21
+121712,90568.01045,5298.002061,0,21
+121713,90799.56992,8920.769238,0,21
+121714,91218.49447,6060.641685,0,21
+121715,15764.6735,6803.712782,0,21
+121716,15794.50239,6816.666142,0,21
+121717,15794.48766,6820.506415,0,21
+121718,15824.94471,6830.541707,0,21
+121719,15842.6209,6851.064664,645860.5583,21
+121720,15841.50381,6833.326644,0,21
+121721,285072.846,6880.19313,0,21
+121722,22489.98237,6866.295006,0,21
+121723,90209.139,6896.656059,0,21
+121724,106447.1094,6894.049985,0,21
+121725,93672.73819,6943.385213,0,21
+121726,94571.43268,6926.88917,0,21
+121727,94946.69044,6956.994788,0,21
+121728,94939.73566,6956.995156,0,21
+121729,79531.38254,6989.699161,0,21
+121730,79604.4491,6926.394597,0,21
+121731,80069.40778,6937.536809,0,21
+121732,131428.7096,6941.369997,0,21
+121733,94482.52219,6971.227581,0,21
+121734,86217.08651,6986.11092,0,21
+121735,102519.8359,10130.86305,0,21
+121736,96370.83064,11253.51983,0,21
+121737,97646.67497,10146.53377,0,21
+121738,97777.02134,10849.28493,0,21
+121739,437285.9701,3899.591285,0,21
+121740,98849.7136,4012.638447,0,21
+121741,98145.81171,4237.733292,0,21
+121742,98410.47038,4237.73343,0,21
+121743,97407.68929,4349.794401,0,21
+121744,97771.60608,4572.973548,0,21
+121745,97382.70714,30530.99679,0,21
+121746,97171.81055,7461.107303,0,21
+121747,96840.8281,8748.162402,0,21
+121748,96782.57928,11048.02986,0,21
+121749,96472.03409,14368.54537,0,21
+121750,96255.41895,11846.31804,0,21
+121751,15824.54256,12504.24026,0,21
+121752,15822.27825,12725.7818,0,21
+121753,15755.23273,12971.28704,0,21
+121754,15740.97772,12943.12738,0,21
+121755,15671.78515,13097.35311,0,21
+121756,294586.5516,7192.378397,0,21
+121757,22279.77365,7195.505867,648562.7145,21
+121758,79992.44521,7224.380139,0,21
+121759,114108.7265,7195.840042,0,21
+121760,91540.24076,7132.052213,0,21
+121761,93716.62595,7192.686413,0,21
+121762,78114.85924,7210.264518,0,21
+121763,77751.21442,7178.544947,0,21
+121764,77355.83491,16680.68753,0,21
+121765,126510.5563,13939.58425,0,21
+121766,87970.09104,13495.5002,0,21
+121767,82895.49182,14404.69559,0,21
+121768,96265.68267,14482.50666,0,21
+121769,90314.91534,14646.11107,0,21
+121770,90156.6699,14853.52901,0,21
+121771,89941.93698,14886.84104,0,21
+121772,89206.03038,15030.42436,0,21
+121773,88755.33844,14929.31997,0,21
+121774,88162.04171,15227.17333,0,21
+121775,87393.68304,7688.434595,0,21
+121776,87250.67807,7999.538084,0,21
+121777,85948.28843,7792.345405,0,21
+121778,85846.48488,8102.824962,0,21
+121779,84631.89485,7999.53888,0,21
+121780,84350.80409,7999.539141,0,21
+121781,83325.23789,35424.66284,0,21
+121782,82791.08359,10345.61709,0,21
+121783,421212.7278,12383.01452,0,21
+121784,80818.61247,15308.69592,0,21
+121785,80424.10739,17241.28388,0,21
+121786,13775.82658,15223.37143,0,21
+121787,13693.80322,15795.97394,0,21
+121788,13593.07464,15753.46221,0,21
+121789,13493.28504,15799.40613,0,21
+121790,13415.88943,15940.68678,0,21
+121791,13289.36023,7356.348445,0,21
+121792,13164.44128,7342.139716,0,21
+121793,254628.7247,7356.349507,0,21
+121794,12933.08848,7296.343087,0,21
+121795,27912.50272,12794.11228,651014.2903,21
+121796,79214.91067,19842.66979,0,21
+121797,51019.29322,14762.17507,0,21
+121798,93168.36196,16000.51104,0,21
+121799,61992.34829,16045.46268,0,21
+121800,60851.55655,16059.67279,0,21
+121801,69392.98329,16045.3778,0,21
+121802,65447.21955,16086.45642,0,21
+121803,65843.02713,15984.75861,0,21
+121804,65821.44037,15959.05646,0,21
+121805,65671.52989,16025.55938,0,21
+121806,65605.8911,15985.09204,0,21
+121807,65695.97776,15865.7764,0,21
+121808,65208.69098,15926.56441,0,21
+121809,65424.54774,15894.24428,0,21
+121810,65314.01602,15849.96401,0,21
+121811,65330.40415,8921.908105,0,21
+121812,64924.35751,8921.908224,0,21
+121813,65335.97034,9023.41504,0,21
+121814,64718.21511,8820.210243,0,21
+121815,65128.12243,9023.415265,0,21
+121816,64715.03863,8921.908664,0,21
+121817,64925.01972,34341.12377,0,21
+121818,64531.22404,9606.196151,0,21
+121819,64887.40322,12666.59648,0,21
+121820,64328.86491,14359.26868,0,21
+121821,64714.32381,17341.18744,0,21
+121822,64521.73064,14559.78238,0,21
+121823,10320.67664,15297.6796,0,21
+121824,10359.08881,6207.692575,0,21
+121825,10357.60421,6125.367593,0,21
+121826,10320.6696,6093.116202,0,21
+121827,349636.6228,16419.69303,0,21
+121828,0,15352.43386,0,21
+121829,0,14132.51155,0,21
+121830,242158.9696,14383.79914,0,21
+121831,34845.67165,14280.44528,653252.5284,21
+121832,26949.62917,14240.11047,0,21
+121833,89456.72501,14049.24391,0,21
+121834,63478.02894,14064.93766,0,21
+121835,64781.53447,13993.08322,0,21
+121836,65350.65124,13869.6456,0,21
+121837,65155.10416,13851.74031,0,21
+121838,65261.27011,13913.32062,0,21
+121839,65259.67199,13936.07243,0,21
+121840,65224.32474,13749.25376,0,21
+121841,65131.54111,13830.04013,0,21
+121842,65242.00377,13833.78971,0,21
+121843,65178.38754,13731.31032,0,21
+121844,65203.31643,13830.04022,0,21
+121845,65024.15001,13713.32529,0,21
+121846,65268.0169,13815.80472,0,21
+121847,65158.99015,8411.473728,0,21
+121848,65376.81563,8411.473728,0,21
+121849,64963.04153,8411.473724,0,21
+121850,65158.96864,8411.473718,0,21
+121851,65530.43771,8411.473708,0,21
+121852,64940.2928,8430.481505,0,21
+121853,65337.84405,32361.69959,0,21
+121854,65113.35689,9043.599132,0,21
+121855,65510.90791,10574.06484,0,21
+121856,65093.90776,4174.04804,0,21
+121857,65957.11671,7260.246376,0,21
+121858,65929.8926,4599.970671,0,21
+121859,66109.85576,5384.197391,0,21
+121860,10334.86804,8731.567657,0,21
+121861,0,18391.56565,0,21
+121862,0,12019.5591,0,21
+121863,0,13556.44077,0,21
+121864,35099.4143,13701.7478,0,21
+121865,5787.654421,13705.6756,0,21
+121866,5514.109933,13669.41243,0,21
+121867,264971.2482,13705.67628,655301.3329,21
+121868,9974.08418,13687.56596,0,21
+121869,369172.811,13818.38616,0,21
+121870,97098.34777,13807.16486,0,21
+121871,61231.10204,13920.66861,0,21
+121872,66413.80273,13701.75041,0,21
+121873,66413.80088,13920.66923,0,21
+121874,66394.16606,13818.38771,0,21
+121875,66194.75936,13920.66984,0,21
+121876,66205.20553,13920.67014,0,21
+121877,66237.11678,13934.80187,0,21
+121878,65968.49412,13934.80217,0,21
+121879,65957.22064,14036.88826,0,21
+121880,66030.98709,13948.90851,0,21
+121881,65919.84695,14264.58117,0,21
+121882,65701.18459,14069.10558,0,21
+121883,65748.53422,8718.323527,0,21
+121884,65852.21995,8820.214965,0,21
+121885,65512.22247,8820.215097,0,21
+121886,65661.44084,8820.215229,0,21
+121887,65681.34143,8921.913695,0,21
+121888,65461.8449,8820.215493,0,21
+121889,65534.1454,24437.31839,0,21
+121890,65441.93946,423.6162014,0,21
+121891,65441.93795,2378.471207,0,21
+121892,65575.19166,4532.520616,0,21
+121893,65349.47611,7289.303144,0,21
+121894,55282.03404,9773.52246,0,21
+121895,55342.84449,18913.13386,0,21
+121896,55452.90565,13231.35805,0,21
+121897,35071.30731,14779.76365,0,21
+121898,4865.033073,14880.51912,0,21
+121899,5865.022541,14898.54633,0,21
+121900,13165.29894,14995.02005,0,21
+121901,9855.115027,14912.47675,0,21
+121902,10177.49949,15109.31307,0,21
+121903,10195.05799,15143.07838,657172.0091,21
+121904,266591.293,15127.34069,0,21
+121905,10195.05777,15141.22149,0,21
+121906,21386.66531,15127.3415,0,21
+121907,102301.987,15255.28358,0,21
+121908,59603.79192,15241.42802,0,21
+121909,405685.3515,15373.29415,0,21
+121910,66357.51651,15255.28478,0,21
+121911,66155.53703,15400.93406,0,21
+121912,66337.47936,15455.15539,0,21
+121913,66454.51671,15400.93487,0,21
+121914,66135.50071,15719.1093,0,21
+121915,66304.65701,15514.56423,0,21
+121916,66265.39343,15600.44818,0,21
+121917,66322.12905,15745.42485,0,21
+121918,66197.12211,15600.449,0,21
+121919,66339.55722,10227.0704,0,21
+121920,66473.39334,10127.75668,0,21
+121921,66342.16892,10227.07128,0,21
+121922,66823.87219,10127.75702,0,21
+121923,66956.00345,0,0,21
+121924,67357.37493,368098.3019,0,21
+121925,67379.77079,26891.1939,0,21
+121926,67688.31851,0,0,21
+121927,57627.55243,2351.803984,0,21
+121928,57844.55907,4854.602015,0,21
+121929,58011.20831,7567.560258,0,21
+121930,94459.62896,4952.055992,0,21
+121931,63987.99663,16406.89509,0,21
+121932,64386.84373,17323.58315,0,21
+121933,72716.64728,14999.29054,0,21
+121934,10195.43976,15782.29316,0,21
+121935,10579.06391,15786.57271,0,21
+121936,10596.06183,15682.80421,0,21
+121937,10632.32165,15913.19362,0,21
+121938,10670.73469,15682.8053,0,21
+121939,10666.10893,15682.80586,658878.593,21
+121940,282258.3558,15809.55549,0,21
+121941,10723.63188,15700.75073,0,21
+121942,30426.40768,15710.06671,0,21
+121943,107268.4343,15710.06732,0,21
+121944,66664.8873,15795.94007,0,21
+121945,73161.50814,15728.01228,0,21
+121946,73426.85312,15774.31151,0,21
+121947,73601.46286,15728.01356,0,21
+121948,73866.04454,15723.66515,0,21
+121949,413419.3801,15723.66579,0,21
+121950,74200.59082,15841.1002,0,21
+121951,74807.31082,15737.23864,0,21
+121952,74743.41958,15737.23929,0,21
+121953,75198.7991,16455.87728,0,21
+121954,75484.79921,16873.30509,0,21
+121955,75595.34262,10832.26374,0,21
+121956,76195.69993,11164.34763,0,21
+121957,76169.45367,11164.3481,0,21
+121958,76607.35803,11426.98021,0,21
+121959,76959.64265,11588.77925,0,21
+121960,66010.70535,0,0,21
+121961,66168.08543,27767.26399,0,21
+121962,66368.56738,0,0,21
+121963,105428.9408,1855.817377,0,21
+121964,76038.3635,5631.169684,0,21
+121965,71533.38821,7511.240196,0,21
+121966,83151.95721,5165.857349,0,21
+121967,79140.02478,5814.86411,0,21
+121968,79656.81171,5848.002457,0,21
+121969,80175.35322,5812.321282,0,21
+121970,11621.88918,5843.6179,0,21
+121971,11707.51268,5861.438622,0,21
+121972,11690.1347,5843.618726,0,21
+121973,11756.27725,5843.61914,0,21
+121974,11756.27696,5874.85238,0,21
+121975,307850.4207,5874.852798,660367.0336,21
+121976,17428.61157,5888.243387,0,21
+121977,51184.56473,5874.853631,0,21
+121978,111717.215,5906.023748,0,21
+121979,79920.9502,5888.244634,0,21
+121980,84302.20494,5919.392512,0,21
+121981,85647.8631,6109.228751,0,21
+121982,85952.81741,6183.752764,0,21
+121983,85828.20256,6231.647012,0,21
+121984,86351.54227,6305.601578,0,21
+121985,86196.84281,6353.101411,0,21
+121986,86715.86669,6460.604533,0,21
+121987,86564.30915,6473.607639,0,21
+121988,86911.64996,6550.432697,0,21
+121989,426348.0585,6622.929293,0,21
+121990,87160.22515,6686.134425,0,21
+121991,87408.75763,0,0,21
+121992,87655.32339,0,0,21
+121993,75514.29087,0,0,21
+121994,75697.05238,0,0,21
+121995,75697.04896,0,0,21
+121996,117382.7337,32453.42697,0,21
+121997,89193.127,0,0,21
+121998,78553.54107,1124.00348,0,21
+121999,94292.12966,11131.2788,0,21
+122000,88549.16477,7019.603967,0,21
+122001,90040.64344,7207.489206,0,21
+122002,90061.09418,7459.412457,0,21
+122003,90589.71546,7524.577192,0,21
+122004,90797.94508,7580.501168,0,21
+122005,13345.7128,7642.717218,0,21
+122006,13445.32895,7703.951457,0,21
+122007,13541.82001,375857.2295,0,21
+122008,13598.10765,7835.966869,0,21
+122009,321456.4797,7887.635663,0,21
+122010,31784.61712,7969.462634,0,21
+122011,56021.68827,8026.8051,661698.1974,21
+122012,122605.2384,8080.894969,0,21
+122013,89216.2316,8158.702951,0,21
+122014,93493.3014,8218.181934,0,21
+122015,93832.97025,8280.589211,0,21
+122016,94101.17318,8348.500403,0,21
+122017,94142.03875,8430.668558,0,21
+122018,94385.63621,8483.328771,0,21
+122019,95101.30066,8559.242201,0,21
+122020,94679.28018,8602.491441,0,21
+122021,95383.82011,8692.158082,0,21
+122022,95319.91519,8758.136817,0,21
+122023,95968.24307,8823.799721,0,21
+122024,95801.691,8875.096369,0,21
+122025,96262.96477,8949.199,0,21
+122026,81662.22129,0,0,21
+122027,81632.61261,0,0,21
+122028,81945.76135,0,0,21
+122029,129453.6494,184750.4279,0,21
+122030,438719.0676,37406.00957,0,21
+122031,87741.79104,14611.87355,0,21
+122032,103136.8489,26944.88349,0,21
+122033,98499.60583,78582.839,0,21
+122034,98869.22185,43327.87336,0,21
+122035,99165.44155,52683.80656,0,21
+122036,99514.77011,53255.04369,0,21
+122037,99619.97432,53908.67719,0,21
+122038,100153.9607,54779.44428,0,21
+122039,15905.08189,55149.12145,0,21
+122040,16034.45225,55792.83767,0,21
+122041,15990.66656,56685.69615,0,21
+122042,16010.71161,57018.19635,0,21
+122043,343669.4368,57995.33696,0,21
+122044,60871.0843,58586.12182,0,21
+122045,41046.92612,59297.13574,0,21
+122046,138454.7584,59879.65544,0,21
+122047,95139.10488,60584.63763,663026.8044,21
+122048,99743.82797,61307.45045,0,21
+122049,99729.51392,62116.61464,0,21
+122050,99581.06124,62719.87761,0,21
+122051,99275.12682,63291.56383,0,21
+122052,99459.65729,64252.96282,0,21
+122053,98799.54383,64637.45793,0,21
+122054,99125.05016,65683.67231,0,21
+122055,98537.55437,434201.9865,0,21
+122056,98648.57718,67167.90408,0,21
+122057,98355.87949,67434.42341,0,21
+122058,98371.46514,68544.13079,0,21
+122059,81774.03455,11383.13987,0,21
+122060,82086.88162,0,0,21
+122061,81601.928,0,0,21
+122062,134471.0801,0,0,21
+122063,97126.88812,40025.99862,0,21
+122064,86001.38636,7400.516272,0,21
+122065,102742.7123,261572.0838,0,21
+122066,96733.34815,15839.72365,0,21
+122067,96765.12321,54685.24213,0,21
+122068,96765.11392,97062.4946,0,21
+122069,97267.12273,73712.97583,0,21
+122070,97191.26723,77574.45222,0,21
+122071,436496.6189,78189.02849,0,21
+122072,96589.71589,78573.02254,0,21
+122073,16220.11205,79541.38415,0,21
+122074,16221.03084,80363.63142,0,21
+122075,16221.02964,80443.25964,0,21
+122076,16205.31538,81609.40527,0,21
+122077,334559.9743,82174.41664,0,21
+122078,45099.32307,82434.95211,0,21
+122079,46224.3223,83662.73617,0,21
+122080,130410.3028,84124.11601,0,21
+122081,90424.96027,84457.17174,0,21
+122082,95177.07676,86497.92455,0,21
+122083,94665.23804,87319.66894,0,21
+122084,94854.40524,87613.02438,664308.2764,21
+122085,94810.28658,89044.90162,0,21
+122086,94273.33914,90203.27549,0,21
+122087,94131.42568,90944.17533,0,21
+122088,93896.18997,91665.0322,0,21
+122089,93635.73602,92779.81539,0,21
+122090,93437.76327,94529.72728,0,21
+122091,93071.88538,94816.21727,0,21
+122092,76101.79987,95951.94854,0,21
+122093,76393.90741,79031.41112,0,21
+122094,75625.02331,79031.40249,0,21
+122095,130131.9136,39633.76567,0,21
+122096,88167.02077,9873.507165,0,21
+122097,78577.14351,16182.01642,0,21
+122098,98548.96967,19393.80186,0,21
+122099,89998.27716,323583.2143,0,21
+122100,91430.55355,56458.78369,0,21
+122101,91393.80867,66244.18202,0,21
+122102,92011.55452,131626.3131,0,21
+122103,91756.57136,102269.205,0,21
+122104,92495.60622,473529.7014,0,21
+122105,92119.58641,106401.2101,0,21
+122106,92520.48506,106503.2875,0,21
+122107,17270.57341,107374.4145,0,21
+122108,17400.52679,107496.323,0,21
+122109,17425.82031,108189.7715,0,21
+122110,17557.43796,108803.1584,0,21
+122111,327900.9699,108906.4126,0,21
+122112,366340.5779,109549.9519,0,21
+122113,57711.82122,110293.9813,0,21
+122114,124145.2344,110322.503,0,21
+122115,89936.71485,111238.4692,0,21
+122116,94321.79652,111645.822,0,21
+122117,94379.42413,111782.0391,0,21
+122118,94832.17153,112662.852,0,21
+122119,94728.45202,112815.2791,0,21
+122120,94904.07109,113575.4921,0,21
+122121,95061.83579,113710.4437,665399.7985,21
+122122,95223.60805,114304.5423,0,21
+122123,95291.10029,114580.2449,0,21
+122124,95573.80011,115373.0733,0,21
+122125,76974.37925,89422.34544,0,21
+122126,76974.3815,90188.63118,0,21
+122127,77118.72975,144476.5682,0,21
+122128,138176.7975,106849.447,0,21
+122129,92720.55541,18053.83422,0,21
+122130,83506.15569,30813.19309,0,21
+122131,103794.3686,27392.55713,0,21
+122132,95805.4308,339850.4423,0,21
+122133,96692.22425,64746.17643,0,21
+122134,96912.74865,90203.16892,0,21
+122135,96953.11194,142645.1162,0,21
+122136,97072.38629,118653.294,0,21
+122137,97373.26312,120748.0647,0,21
+122138,97356.55297,121347.8021,0,21
+122139,97333.97859,121951.5746,0,21
+122140,97760.20599,122246.6484,0,21
+122141,19695.87874,122537.2874,0,21
+122142,19757.34563,122897.3059,0,21
+122143,19835.01735,123602.3529,0,21
+122144,19875.39475,123490.7012,0,21
+122145,339069.105,124411.1688,0,21
+122146,41818.51386,124550.0862,0,21
+122147,52343.13014,124865.9708,0,21
+122148,132859.6319,125481.3246,0,21
+122149,94158.47606,125471.0825,0,21
+122150,98960.65295,126239.7684,0,21
+122151,99006.97608,126339.5355,0,21
+122152,99203.41206,126982.0688,0,21
+122153,438583.6726,495167.1266,0,21
+122154,99423.38589,131401.9736,0,21
+122155,99415.13693,130288.9511,0,21
+122156,99522.98078,131558.5621,0,21
+122157,99657.94155,100772.4223,0,21
+122158,79244.93258,101767.0218,666395.2936,21
+122159,79065.84383,168172.5522,0,21
+122160,79387.16257,121568.1079,0,21
+122161,147417.179,133225.6555,0,21
+122162,94986.14546,35520.7267,0,21
+122163,85840.27055,31915.77251,0,21
+122164,107080.8894,32757.55695,0,21
+122165,97944.50386,368586.8009,0,21
+122166,98683.9322,103484.3888,0,21
+122167,99471.60462,81606.56526,0,21
+122168,99584.78148,178836.7713,0,21
+122169,98950.08919,141485.5415,0,21
+122170,99236.95254,144870.3575,0,21
+122171,98642.19847,146978.2341,0,21
+122172,99058.70512,147944.0642,0,21
+122173,98586.56066,149139.1579,0,21
+122174,98523.72187,150214.9503,0,21
+122175,20566.47991,151250.4904,0,21
+122176,20544.55249,152112.352,0,21
+122177,20518.62748,153652.5389,0,21
+122178,20525.16933,154185.0403,0,21
+122179,335129.9596,155687.3446,0,21
+122180,32024.67501,156461.0053,0,21
+122181,54097.14364,157555.92,0,21
+122182,127636.9702,158495.5601,0,21
+122183,90672.02458,159901.9942,0,21
+122184,94427.15215,160689.853,0,21
+122185,94776.83526,161727.1799,0,21
+122186,94746.68436,162959.5217,0,21
+122187,97555.56167,163666.2778,0,21
+122188,95538.22457,166595.1849,0,21
+122189,95568.48302,134136.8443,0,21
+122190,95701.05119,133281.9768,0,21
+122191,75022.45306,216837.9303,0,21
+122192,75121.51289,165337.3192,0,21
+122193,74635.48655,172925.4299,0,21
+122194,143027.367,182409.6965,0,21
+122195,87792.80761,38863.35147,0,21
+122196,80571.96928,39017.57669,667305.4237,21
+122197,102441.6983,39221.75316,0,21
+122198,92289.52665,440751.8212,0,21
+122199,93569.689,186496.4896,0,21
+122200,93238.26106,84660.3079,0,21
+122201,432288.0194,244813.2843,0,21
+122202,92693.70594,186580.1553,0,21
+122203,92390.38356,193177.7019,0,21
+122204,92360.76063,196158.2272,0,21
+122205,92024.03684,197366.6075,0,21
+122206,91536.74248,199425.6507,0,21
+122207,91713.5973,200732.1904,0,21
+122208,90959.41708,202256.1314,0,21
+122209,19527.88308,204187.7586,0,21
+122210,19577.96149,205693.075,0,21
+122211,19479.83583,206824.3164,0,21
+122212,19505.07632,209142.4404,0,21
+122213,19380.79196,210052.3679,0,21
+122214,333206.7647,212269.1137,0,21
+122215,20848.60611,213408.5657,0,21
+122216,47877.57431,215347.6399,0,21
+122217,111518.7335,216326.4905,0,21
+122218,85467.08373,218307.1559,0,21
+122219,84155.7667,220041.6412,0,21
+122220,85312.4033,221438.068,0,21
+122221,90266.38015,178621.2753,0,21
+122222,90559.17546,179161.3498,0,21
+122223,92124.66632,272236.9757,0,21
+122224,73798.15381,216000.7702,0,21
+122225,75480.7668,222953.0159,0,21
+122226,76239.33901,226392.5028,0,21
+122227,151446.8142,226876.2293,0,21
+122228,95041.68564,44238.80606,0,21
+122229,91768.57812,44198.61077,0,21
+122230,116005.5678,44326.73543,0,21
+122231,108444.2125,559310.1339,0,21
+122232,111442.5025,248158.4595,0,21
+122233,113579.3074,128019.1321,668137.0278,21
+122234,115637.1916,266022.7232,0,21
+122235,116943.1415,236928.115,0,21
+122236,119598.0727,229032.6672,0,21
+122237,120861.7371,232320.718,0,21
+122238,123431.9955,232401.9857,0,21
+122239,124829.475,233524.6474,0,21
+122240,126620.7783,233903.1837,0,21
+122241,128964.1968,233622.8758,0,21
+122242,130342.9216,235743.0001,0,21
+122243,132621.0844,234933.6423,0,21
+122244,25747.59834,235741.1767,0,21
+122245,25153.86689,236411.6921,0,21
+122246,364851.6772,237296.861,0,21
+122247,25959.88266,236733.7448,0,21
+122248,412836.9446,238444.1875,0,21
+122249,95165.02333,238347.9428,0,21
+122250,82768.42895,238844.8788,0,21
+122251,188470.1204,239533.1307,0,21
+122252,144654.6842,239678.6851,0,21
+122253,151080.4381,194903.3308,0,21
+122254,153455.4719,194935.826,0,21
+122255,154666.6268,296883.9772,0,21
+122256,157224.637,232137.9721,0,21
+122257,130046.6809,240802.6529,0,21
+122258,132027.4787,243708.0889,0,21
+122259,208840.9889,244735.9733,0,21
+122260,151948.4889,243737.4018,0,21
+122261,159078.4102,46407.32633,0,21
+122262,169159.6348,46468.43434,0,21
+122263,167147.6905,46517.99442,0,21
+122264,169367.7361,637368.9861,0,21
+122265,174216.5937,242819.4538,0,21
+122266,174002.0953,141724.7692,0,21
+122267,176245.2489,287982.4654,0,21
+122268,178039.2941,253406.9164,0,21
+122269,180076.318,245732.7921,0,21
+122270,181414.1536,616877.112,668898.2988,21
+122271,183194.0679,249090.0857,0,21
+122272,185082.4729,249442.3904,0,21
+122273,186640.18,250421.217,0,21
+122274,188524.6514,250292.8726,0,21
+122275,190009.1762,250694.7601,0,21
+122276,191912.3439,251222.912,0,21
+122277,193573.8405,251546.4013,0,21
+122278,33260.65091,252106.6384,0,21
+122279,33374.27881,252551.9829,0,21
+122280,33540.24087,252241.2317,0,15.6
+122281,575341.8663,251714.1336,0,15.6
+122282,146910.6909,249440.5084,0,15.6
+122283,97920.46048,247986.6717,0,15.6
+122284,261246.9213,246154.5648,0,15.6
+122285,190859.8914,198286.0205,0,15.6
+122286,199364.2078,196901.6078,0,15.6
+122287,199663.1126,300567.314,0,15.6
+122288,538722.3382,228958.7486,0,15.6
+122289,166156.4788,234838.912,0,15.6
+122290,165594.3913,238681.9883,0,15.6
+122291,245769.3238,235541.1781,0,15.6
+122292,194628.5899,233088.3998,0,15.6
+122293,188433.963,231682.8012,0,15.6
+122294,202662.2171,45052.12763,0,15.6
+122295,201911.4877,44817.10981,0,15.6
+122296,199521.7406,44509.3373,0,15.6
+122297,199857.3098,591598.862,0,15.6
+122298,200220.718,184713.4443,0,15.6
+122299,200348.3596,129926.6621,0,15.6
+122300,199911.9097,268841.5962,0,15.6
+122301,200360.6761,214912.2909,0,15.6
+122302,200428.7978,214390.1556,0,15.6
+122303,200250.4736,214400.201,0,15.6
+122304,200335.1809,212298.1826,0,15.6
+122305,200339.3699,210034.8237,0,15.6
+122306,200546.0173,208660.0624,0,15.6
+122307,200456.3679,206547.7388,669600.9231,15.6
+122308,200385.4783,204462.0541,0,15.6
+122309,200409.2613,203240.1798,0,15.6
+122310,200518.904,200825.3523,0,15.6
+122311,34692.07656,198972.2817,0,15.6
+122312,34850.17441,197004.8431,0,15.6
+122313,34904.89753,195341.238,0,15.6
+122314,595427.7765,193271.9445,0,15.6
+122315,139840.3196,191380.0144,0,15.6
+122316,97996.0831,189198.4324,0,15.6
+122317,265174.9882,515866.607,0,15.6
+122318,191768.6943,145100.1172,0,15.6
+122319,200649.5597,235069.5807,0,15.6
+122320,200918.0932,169400.9299,0,15.6
+122321,165729.3387,174305.6267,0,15.6
+122322,165447.9707,182716.3659,0,15.6
+122323,246392.635,175880.1454,0,15.6
+122324,193720.9398,174089.3463,0,15.6
+122325,191391.7387,172021.123,0,15.6
+122326,206640.6759,169890.9191,0,15.6
+122327,200164.702,37977.33605,0,15.6
+122328,200723.996,37664.80524,0,15.6
+122329,200830.3677,37545.98491,0,15.6
+122330,540116.4922,37191.70254,0,15.6
+122331,200644.7117,412653.618,0,15.6
+122332,200512.6782,115557.7882,0,15.6
+122333,200801.1325,91476.82934,0,15.6
+122334,200984.0295,191841.3278,0,15.6
+122335,200426.88,146346.505,0,15.6
+122336,200643.5,147953.6761,0,15.6
+122337,200681.6663,145488.1614,0,15.6
+122338,200251.5951,143393.2733,0,15.6
+122339,200768.6254,140552.8294,0,15.6
+122340,200544.325,136681.8326,0,15.6
+122341,200319.3696,140550.9962,0,15.6
+122342,200133.04,143386.0008,0,15.6
+122343,200487.2065,145497.856,0,15.6
+122344,35697.89772,148433.5054,670250.2514,15.6
+122345,35705.90505,150552.8271,0,15.6
+122346,35644.28459,153196.9958,0,15.6
+122347,599475.5739,155261.1141,0,15.6
+122348,129424.2652,157807.9069,0,15.6
+122349,102237.8554,123442.393,0,15.6
+122350,263091.3025,125242.4124,0,15.6
+122351,190403.4646,211392.4765,0,15.6
+122352,199612.939,151280.0811,0,15.6
+122353,163869.7271,168156.775,0,15.6
+122354,163910.5975,174553.0625,0,15.6
+122355,243674.9967,542405.6459,0,15.6
+122356,191414.551,176844.2442,0,15.6
+122357,194259.9615,178952.6732,0,15.6
+122358,202008.3096,181823.1446,0,15.6
+122359,198634.5338,183616.6895,0,15.6
+122360,198624.5881,186060.2286,0,15.6
+122361,198588.9004,40214.99011,0,15.6
+122362,198250.9787,40443.62897,0,15.6
+122363,198051.9586,40673.87574,0,15.6
+122364,198388.8248,491473.7381,0,15.6
+122365,197289.495,106267.2982,0,15.6
+122366,198382.0541,169104.5901,0,15.6
+122367,197160.9768,231846.1802,0,15.6
+122368,537013.2874,201341.0935,0,15.6
+122369,197015.3987,207480.6944,0,15.6
+122370,197306.2834,209877.2066,0,15.6
+122371,196928.1604,212201.885,0,15.6
+122372,196788.571,214335.6502,0,15.6
+122373,196864.9579,216782.6066,0,15.6
+122374,196491.2146,219191.4581,0,15.6
+122375,196374.4434,221220.1958,0,15.6
+122376,196091.3907,223699.8106,0,15.6
+122377,35907.64868,226320.8106,0,15.6
+122378,35993.24322,228475.3712,0,15.6
+122379,35924.65302,230576.2644,670840.5022,15.6
+122380,590150.6387,233413.9904,0,15.6
+122381,114355.7156,189867.878,0,15.6
+122382,107200.7057,192226.8666,0,15.6
+122383,255489.8349,302015.8823,0,15.6
+122384,185991.5526,228075.123,0,15.6
+122385,158863.4892,240854.8106,0,15.6
+122386,158969.5731,251088.8021,0,15.6
+122387,238893.737,249837.6348,0,15.6
+122388,188555.4394,252191.5206,0,15.6
+122389,187737.9224,254600.1373,0,15.6
+122390,197881.5135,256718.5614,0,15.6
+122391,193989.6675,259414.1173,0,15.6
+122392,193750.9916,261474.263,0,15.6
+122393,193548.694,631946.4435,0,15.6
+122394,193585.4637,49190.16707,0,15.6
+122395,193126.821,49474.39116,0,15.6
+122396,193218.6571,49672.89291,0,15.6
+122397,192725.151,770409.4017,0,15.6
+122398,193055.6334,227300.6502,0,15.6
+122399,192445.7024,149956.9832,0,15.6
+122400,192216.1293,346468.4042,0,15.6
+122401,186213.5262,273652.659,0,15.6
+122402,185883.2764,274371.4393,0,15.6
+122403,185540.6143,276768.5421,0,15.6
+122404,185191.2989,277915.4084,0,15.6
+122405,185332.531,278423.7266,0,15.6
+122406,524027.8091,279196.4284,0,15.6
+122407,184785.8606,280230.9801,0,15.6
+122408,184477.5882,280467.5858,0,15.6
+122409,184205.0815,281371.8096,0,15.6
+122410,34258.64167,282360.9664,0,15.6
+122411,34335.57072,283041.2023,0,15.6
+122412,34221.95492,283522.9977,0,15.6
+122413,552968.459,234026.3852,0,15.6
+122414,86151.97849,234707.1964,671375.6128,15.6
+122415,115827.8456,353722.3445,0,15.6
+122416,234095.516,273232.8733,0,15.6
+122417,141149.8769,286698.5564,0,15.6
+122418,148202.0939,288592.321,0,15.6
+122419,227714.7875,290341.7947,0,15.6
+122420,171667.4808,289642.4331,0,15.6
+122421,177278.724,290413.8402,0,15.6
+122422,186135.8741,290873.0112,0,15.6
+122423,181176.2165,291974.1443,0,15.6
+122424,181721.7819,292059.6523,0,15.6
+122425,181460.536,293342.3298,0,15.6
+122426,180983.8283,293895.7589,0,15.6
+122427,180924.2592,51831.19343,0,15.6
+122428,180801.8592,51967.32366,0,15.6
+122429,180362.0692,714846.6756,0,15.6
+122430,180283.8653,176686.958,0,15.6
+122431,179792.6794,636872.1552,0,15.6
+122432,179993.3587,325557.9932,0,15.6
+122433,179260.1739,297504.1773,0,15.6
+122434,179408.7097,299528.5531,0,15.6
+122435,179188.8323,300283.1197,0,15.6
+122436,178701.9842,300734.0226,0,15.6
+122437,178666.5593,301776.9663,0,15.6
+122438,178472.0257,301978.201,0,15.6
+122439,178081.4132,303288.6182,0,15.6
+122440,178075.579,303119.0759,0,15.6
+122441,177684.4303,304723.748,0,15.6
+122442,177162.6079,304702.8726,0,15.6
+122443,34111.43623,305585.6457,0,15.6
+122444,373362.7963,306055.9778,0,15.6
+122445,34020.91827,253493.4863,0,15.6
+122446,34010.96866,253774.39,0,15.6
+122447,599153.7436,382073.9683,0,15.6
+122448,108191.7212,294174.6558,0,15.6
+122449,29911.62886,310784.143,0,15.6
+122450,203178.1115,309844.3602,671860.4958,15.6
+122451,215861.6324,312758.1818,0,15.6
+122452,163129.4198,311606.0404,0,15.6
+122453,170168.0729,312347.27,0,15.6
+122454,178472.2186,312333.0714,0,15.6
+122455,174044.3117,313839.7529,0,15.6
+122456,174808.7045,314150.9189,0,15.6
+122457,173782.7692,314770.9827,0,15.6
+122458,173636.8619,315178.0419,0,15.6
+122459,173857.0148,54868.92404,0,15.6
+122460,173034.9711,54765.11095,0,15.6
+122461,173547.1365,773328.1831,0,15.6
+122462,173480.326,205471.7626,0,15.6
+122463,173773.8225,267962.1234,0,15.6
+122464,173663.4581,354096.9345,0,15.6
+122465,173972.079,315299.3403,0,15.6
+122466,174064.75,317542.013,0,15.6
+122467,174077.5901,318068.1444,0,15.6
+122468,174397.2674,318640.7644,0,15.6
+122469,174428.5694,686408.6844,0,15.6
+122470,174477.6907,319131.5458,0,15.6
+122471,174850.2815,319604.8187,0,15.6
+122472,174680.7954,319214.8024,0,15.6
+122473,174931.7928,319790.4477,0,15.6
+122474,175193.9464,319608.3586,0,15.6
+122475,174928.0797,320484.5965,0,15.6
+122476,175343.7874,320463.1743,0,15.6
+122477,34404.13902,265375.3927,0,15.6
+122478,34537.3573,265638.0676,0,15.6
+122479,34365.18996,397428.0116,0,15.6
+122480,34614.19149,305990.5375,0,15.6
+122481,561910.033,326027.0236,0,15.6
+122482,404194.4035,320221.8725,0,15.6
+122483,112283.741,325020.0357,0,15.6
+122484,231768.2981,322420.6418,0,15.6
+122485,165599.6479,323224.7513,0,15.6
+122486,178961.8285,323280.8603,672301.5577,15.6
+122487,176729.3458,323837.1275,0,15.6
+122488,177438.2572,323771.1056,0,15.6
+122489,177031.6634,324226.9602,0,15.6
+122490,177266.644,324154.2551,0,15.6
+122491,177556.9211,55941.47198,0,15.6
+122492,177663.3077,56146.27087,0,15.6
+122493,177378.8641,798672.781,0,15.6
+122494,178158.8957,215473.8912,0,15.6
+122495,177378.8565,271083.9928,0,15.6
+122496,178361.9174,366203.2291,0,15.6
+122497,177763.1138,323224.4795,0,15.6
+122498,178248.7675,326703.195,0,15.6
+122499,178378.9701,326620.2908,0,15.6
+122500,178357.5502,327053.5433,0,15.6
+122501,178231.7674,327246.1848,0,15.6
+122502,178887.142,327856.4877,0,15.6
+122503,178785.435,327264.8544,0,15.6
+122504,178223.1681,328174.1572,0,15.6
+122505,179435.1994,328065.2663,0,15.6
+122506,178563.1963,328772.6917,0,15.6
+122507,179435.1947,696019.3327,0,15.6
+122508,178916.6327,329252.7558,0,15.6
+122509,179547.5343,272796.1737,0,15.6
+122510,180594.5581,272690.3812,0,15.6
+122511,35418.78884,406771.66,0,15.6
+122512,35640.0595,314244.3369,0,15.6
+122513,0,335465.6117,0,15.6
+122514,0,328206.5499,0,15.6
+122515,668271.4464,332693.7934,0,15.6
+122516,97049.43424,331443.9151,0,15.6
+122517,60288.90475,331150.4373,0,15.6
+122518,248721.7042,331564.0536,0,15.6
+122519,179051.1845,331404.5853,0,15.6
+122520,518805.3562,331972.8569,0,15.6
+122521,182808.1083,331227.3456,0,15.6
+122522,182183.0918,329977.3669,672704.3161,15.6
+122523,182736.2214,56641.31556,0,15.6
+122524,183049.458,56690.75562,0,15.6
+122525,182328.5219,812270.6449,0,15.6
+122526,182927.0168,215279.5297,0,15.6
+122527,182828.2964,264495.4589,0,15.6
+122528,182957.5383,368437.9439,0,15.6
+122529,182806.3884,319783.6076,0,15.6
+122530,183030.1364,321907.5849,0,15.6
+122531,183281.6063,321699.2337,0,15.6
+122532,182852.8359,320772.2178,0,15.6
+122533,183141.568,318967.7159,0,15.6
+122534,183478.0579,318946.6691,0,15.6
+122535,183371.0741,317817.573,0,15.6
+122536,183354.1719,316470.8801,0,15.6
+122537,183115.4759,315568.4095,0,15.6
+122538,183766.4364,314455.0883,0,15.6
+122539,183455.2726,313770.6582,0,15.6
+122540,183466.2695,312933.0499,0,15.6
+122541,184040.0584,256557.7109,0,15.6
+122542,183548.7918,256022.3254,0,15.6
+122543,183789.6307,389061.3736,0,15.6
+122544,183985.4477,291401.4122,0,15.6
+122545,0,676608.46,0,15.6
+122546,0,307518.0257,0,15.6
+122547,81820.21282,306856.0502,0,15.6
+122548,30334.37948,305185.8691,0,15.6
+122549,633170.9375,304305.0938,0,15.6
+122550,108569.6935,302382.1488,0,15.6
+122551,67167.06177,302101.2679,0,15.6
+122552,246813.8888,301092.2588,0,15.6
+122553,183311.1792,299801.3084,0,15.6
+122554,181834.8914,298774.763,0,15.6
+122555,184654.1978,53467.31697,0,15.6
+122556,185104.9962,53372.74279,0,15.6
+122557,184759.0881,53404.37375,0,15.6
+122558,524629.2547,886662.3849,673071.5845,15.6
+122559,184721.4224,241134.9974,0,15.6
+122560,185245.3654,119230.3876,0,15.6
+122561,185230.3933,378655.2248,0,15.6
+122562,185214.6737,288191.9841,0,15.6
+122563,185281.8138,287008.4697,0,15.6
+122564,185294.3387,289234.1416,0,15.6
+122565,185402.6941,288722.2982,0,15.6
+122566,185483.7709,287220.945,0,15.6
+122567,185583.8095,285926.3385,0,15.6
+122568,185462.779,285060.076,0,15.6
+122569,185884.0932,284248.276,0,15.6
+122570,185241.5476,282568.641,0,15.6
+122571,186026.9575,282069.4201,0,15.6
+122572,185623.7855,281160.3781,0,15.6
+122573,185782.3339,227795.9694,0,15.6
+122574,186324.8167,227563.5702,0,15.6
+122575,185737.4487,354290.7334,0,15.6
+122576,185895.5739,258284.4881,0,15.6
+122577,149476.871,273511.5979,0,15.6
+122578,149235.4988,277240.0706,0,15.6
+122579,83442.89482,274142.908,0,15.6
+122580,30657.2495,272543.1883,0,15.6
+122581,1050082.816,2245290.267,0,15.6
+122582,1042958.636,1252279.886,0,15.6
+122583,693326.0375,728179.268,0,15.6
+122584,681239.5438,729183.8092,0,15.6
+122585,506669.4501,666136.1124,0,15.6
+122586,555999.1888,644684.0918,0,15.6
+122587,500429.7933,677282.0476,0,15.6
+122588,514046.8705,138255.0411,0,15.6
+122589,499779.2494,137271.5546,0,15.6
+122590,498453.4194,1208965.629,0,15.6
+122591,495627.5862,410195.0605,0,15.6
+122592,493954.4968,655749.8992,0,15.6
+122593,491458.3401,642293.0751,0,15.6
+122594,490477.0231,650632.1136,673407.4314,15.6
+122595,488758.789,635382.2886,0,15.6
+122596,826267.3099,636455.5407,0,15.6
+122597,485021.8022,632979.2591,0,15.6
+122598,484652.7354,633565.6783,0,15.6
+122599,482103.5677,630782.4737,0,15.6
+122600,481388.2327,629177.6957,0,15.6
+122601,480105.5911,629727.5137,0,15.6
+122602,476801.6558,626133.4396,0,15.6
+122603,477390.0445,626826.8982,0,15.6
+122604,475145.6951,623425.9074,0,15.6
+122605,475399.5101,511013.3145,0,15.6
+122606,473652.9889,508492.3391,0,15.6
+122607,473055.0037,741999.0467,0,15.6
+122608,471676.4779,631746.2391,0,15.6
+122609,377646.3313,594079.4681,0,15.6
+122610,376298.0682,633439.9215,0,15.6
+122611,208964.4646,608133.4491,0,15.6
+122612,73106.21914,604904.3763,0,15.6
+122613,868398.4093,605521.5043,0,15.6
+122614,447924.6764,602977.2636,0,15.6
+122615,397108.523,601205.2651,0,15.6
+122616,428269.5155,602453.332,0,15.6
+122617,441030.0126,653358.5311,0,15.6
+122618,476182.9437,599946.8659,0,15.6
+122619,466508.114,607536.8058,0,15.6
+122620,458709.3083,131257.2391,0,15.6
+122621,464448.5215,123346.1807,0,15.6
+122622,463343.3429,1542291.748,0,15.6
+122623,462904.2715,379875.4892,0,15.6
+122624,461998.6282,644787.1284,0,15.6
+122625,461855.8,559128.6919,0,15.6
+122626,461414.5838,647601.8087,0,15.6
+122627,460782.2498,605584.1961,0,15.6
+122628,459997.927,609915.7571,0,15.6
+122629,460052.1879,611283.8377,0,15.6
+122630,459449.6886,610981.0116,673716.8534,15.6
+122631,458424.1945,610733.0769,0,15.6
+122632,459557.7123,609695.518,0,15.6
+122633,457549.0006,610758.9214,0,15.6
+122634,797155.7813,609474.1897,0,15.6
+122635,457843.934,609426.3327,0,15.6
+122636,456534.4316,609517.3092,0,15.6
+122637,456743.0528,502215.397,0,15.6
+122638,456913.7642,501833.7071,0,15.6
+122639,455981.2621,736397.1397,0,15.6
+122640,455199.8894,597221.1297,0,17.8
+122641,2071134.75,2613395.984,489554.062,17.8
+122642,2263859.696,2622875.252,73145.0597,17.8
+122643,247882.0334,2178644.374,132429.933,17.8
+122644,2196138.645,1838521.687,150807.1745,17.8
+122645,1814247.649,1023494.197,35005.17933,17.8
+122646,826706.7798,1348695.277,157576.186,17.8
+122647,1275625.822,1406077.844,45372.96708,17.8
+122648,1270608.573,1226499.726,63728.51436,17.8
+122649,1138693.441,1337342.544,61896.96848,17.8
+122650,1174982.551,1280049.432,60258.16844,17.8
+122651,1158896.535,1273304.215,59595.76062,17.8
+122652,1124716.749,219058.1882,59234.54126,17.8
+122653,1129751.946,1831123.113,68286.08038,17.8
+122654,1125519.379,1181340.264,65756.78308,17.8
+122655,1118365.869,1220874.427,64948.99015,17.8
+122656,1113992.527,1286047.849,65615.72311,17.8
+122657,1109182.611,1258239.316,65573.85351,17.8
+122658,1105682.918,1251085.658,65542.1295,17.8
+122659,1102855.461,1249680.195,65397.00966,17.8
+122660,1097199.329,1614909.222,65399.31793,17.8
+122661,1096139.407,1243716.535,65279.3975,17.8
+122662,1090086.496,1241800.321,65199.46125,17.8
+122663,1088261.97,1237603.945,65235.39555,17.8
+122664,1083850.958,1238505.84,65041.00309,17.8
+122665,1081517.222,1231943.118,714881.5229,17.8
+122666,1078462.693,1231944.017,65253.32922,17.8
+122667,1076346.704,1229939.584,65382.29562,17.8
+122668,1072015.607,1226975.124,65359.3969,17.8
+122669,1071530.213,1057767.268,65662.21794,17.8
+122670,1066745.948,1289806.581,66136.24835,17.8
+122671,1042646.927,1287085.951,30957.18215,17.8
+122672,1234289.185,1183478.385,30823.67377,17.8
+122673,1100467.139,1227954.084,30564.83213,17.8
+122674,226059.6157,1219245.282,30323.93611,17.8
+122675,1361144.534,1216008.295,116461.92,17.8
+122676,998998.4737,1214400.818,44671.17287,17.8
+122677,1097184.056,1213510.22,52239.5107,17.8
+122678,1042351.01,1211637.981,60818.37041,17.8
+122679,1046909.428,1172658.168,58554.77525,17.8
+122680,1052751.859,1173714.813,71347.55291,17.8
+122681,1042773.79,1256590.371,62385.48371,17.8
+122682,1043474.196,1197830.788,65099.576,17.8
+122683,1039880.263,197701.6383,65326.55506,17.8
+122684,1040132.403,1714193.463,65361.75325,17.8
+122685,1036822.134,1121634.573,65252.51549,17.8
+122686,1034450.636,1168001.794,65535.02259,17.8
+122687,1034743.468,1225385.325,65443.424,17.8
+122688,1031977.253,1201907.728,65563.14892,17.8
+122689,1030299.355,1199497.74,64816.4439,17.8
+122690,1027544.958,1200780.06,64858.04903,17.8
+122691,1027926.392,1196839.34,64984.00847,17.8
+122692,1023502.465,1198390.804,64884.52078,17.8
+122693,1023121.504,1197208.585,65104.79976,17.8
+122694,1016194.801,1196076.559,64978.30819,17.8
+122695,1018581.805,1195713.472,65217.20599,17.8
+122696,1014076.231,1195747.36,65147.21266,17.8
+122697,1012448.44,1194300.328,65224.75127,17.8
+122698,1011730.756,1560539.997,65322.94257,17.8
+122699,1009163.244,1193762.587,65361.54898,17.8
+122700,1009521.317,1033630.174,694224.3929,20
+122701,2301417.933,2607978.173,1094247.145,20
+122702,2204721.756,2324415.843,655972.1668,20
+122703,1259630.912,1460712.025,166158.6009,20
+122704,1205385.195,1300224.907,281172.276,20
+122705,1406864.005,1577671.747,311958.9575,20
+122706,1293603.978,1453949.109,309240.2814,20
+122707,1281081.147,1403833.866,291802.1722,20
+122708,1263260.435,1425252.512,299347.9923,20
+122709,1267440.205,1409082.061,301601.5846,20
+122710,1259979.907,1403023.167,303513.9193,20
+122711,1253478.504,1399971.3,305400.2578,20
+122712,1252444.916,1393148.167,307406.9738,20
+122713,1245369.932,1391572.846,309044.1273,20
+122714,1245305.527,1384510.075,311090.9663,20
+122715,1237908.185,1380632.828,312678.2256,20
+122716,1237848.637,1379026.653,315255.6526,20
+122717,1234672.496,1372560.139,315767.5444,20
+122718,1230044.709,1369733.087,318376.0521,20
+122719,1227206.697,1365725.677,319892.1195,20
+122720,1224063.521,1362693.952,321208.9746,20
+122721,1223068.705,1358858.396,323412.345,20
+122722,1218193.008,1354721.549,324860.2973,20
+122723,1216676.676,1353472.016,326047.0644,20
+122724,1214291.38,1348073.506,327868.749,20
+122725,1210330.923,1345752.472,329639.9976,20
+122726,1209166.589,1343194.439,330618.4581,20
+122727,1207540.167,1338721.527,332770.6489,20
+122728,1205481.945,1336666.342,333359.5578,20
+122729,1201032.304,1334943.008,335056.8451,20
+122730,1201389.948,1329415.108,337132.8243,20
+122731,1197346.818,1328627.782,338395.9093,20
+122732,1195607.166,1325091.434,339259.6897,20
+122733,1194464.655,1322174.926,341033.0829,20
+122734,1193988.558,1319100.683,342032.6149,20
+122735,1188203.286,1317048.398,343446.6086,20
+122736,1189059.218,1315452.595,344881.5293,20
+122737,1185240.543,1311116.602,345136.3965,20
+122738,1184991.762,1310070.123,347733.006,20
+122739,1182469.117,1306709.588,347289.0552,20
+122740,1181693.304,1304199.253,350443.5443,20
+122741,1177193.085,1302817.592,349796.7086,20
+122742,1178628.874,1299621.313,352303.065,20
+122743,1175348.257,1296105.738,356486.1371,20
+122744,1174882.887,1295914.726,368757.9218,20
+122745,1171165.465,1291659.477,363455.9106,20
+122746,1172027.668,1291381.715,368084.0772,20
+122747,1169347.506,1287170.889,370775.3059,20
+122748,1167363.269,1285236.118,372534.4971,20
+122749,1166201.412,1283697.554,374780.3256,20
+122750,1165937.373,1280052.312,376925.7011,20
+122751,1163882.114,1279584.269,379857.7242,20
+122752,1160511.453,1278828.457,380057.9333,20
+122753,1162238.987,1273609.292,382963.6846,20
+122754,1158227.89,1272143.659,386249.9477,20
+122755,1158543.363,1271612.947,386875.4504,20
+122756,1156088.228,1267326.385,389584.1651,20
+122757,1155764.415,1266834.276,390391.8284,20
+122758,1154133.974,1263221.842,393478.1788,20
+122759,1151476.378,1261223.67,394633.5871,20
+122760,1153602.374,1257170.799,353699.7108,21
+122761,1699485.117,2483009.742,364296.1774,21
+122762,1696243.958,2474378.311,357685.4068,21
+122763,1690099.477,2471093.088,787122.6747,21
+122764,1689518.919,2467473.016,315426.5176,21
+122765,1687535.455,2461732.275,509658.8711,21
+122766,1682402.649,2461146.215,596409.1705,21
+122767,1679272.391,2456693.641,306101.8754,21
+122768,1676224.91,2452539.782,574669.8349,21
+122769,1675099.203,2450382.081,451736.4279,21
+122770,1670854.857,2445781.385,586379.5312,21
+122771,1670403.399,2444356.812,301104.4171,21
+122772,1662774.618,2440953.566,563554.8569,21
+122773,1662907.747,2435748.716,431682.3504,21
+122774,1657436.403,2436096.965,580459.0557,21
+122775,1656592.885,2724207.513,298196.322,21
+122776,1653557.154,2428645.514,551856.2381,21
+122777,1651561.928,2425390.527,319872.6562,21
+122778,1647442.904,2421963.74,352708.2951,21
+122779,1647061.707,2419760.504,358944.1141,21
+122780,1643938.404,2416320.712,469778.2602,21
+122781,1641394.609,2412679.299,301359.1786,21
+122782,1638543.374,2412169.762,570123.0204,21
+122783,1638376.612,2406255.633,429823.7266,21
+122784,1633139.319,2406959.99,549842.6688,21
+122785,1633045.913,2401430.222,299991.9963,21
+122786,1630168.097,2400428.42,545921.5043,21
+122787,1628810.954,2395158.676,318679.2033,21
+122788,1624987.84,2395242.622,349615.6247,21
+122789,1623356.05,2392079.041,540601.5403,21
+122790,1622662.972,2387883.294,385110.494,21
+122791,1610300.709,2384520.233,376654.1958,21
+122792,1607858.464,2380876.02,427048.9142,21
+122793,1605058.101,2379499.025,323673.852,21
+122794,1600434.245,2374593.643,353973.2946,21
+122795,1597842.18,2372387.616,350652.258,21
+122796,1595975.662,2368868.466,349947.9984,21
+122797,1590897.602,2368250.877,350660.5385,21
+122798,1589936.309,2359000.042,350090.6702,21
+122799,1585743.85,2358166.055,350498.7042,21
+122800,1582946.081,2354007.962,775372.0419,21
+122801,1580102.414,2348176.193,316004.7239,21
+122802,1578200.565,2349346.159,497119.0924,21
+122803,1573524.872,2344107.479,577133.2333,21
+122804,1572357.314,2339411.631,307360.1291,21
+122805,1568374.596,2339347.222,556385.2699,21
+122806,1567301.892,2334674.739,444961.4336,21
+122807,1563115.256,2330138.926,570340.0664,21
+122808,1559682.54,2330109.052,305512.1218,21
+122809,1558995.606,2324725.494,546885.4237,21
+122810,1554339.436,2320974.019,430454.9742,21
+122811,1552986.54,2320682.318,566726.3703,21
+122812,1549521.581,2315326.189,292676.1743,21
+122813,1546988.019,2312456.296,527460.8367,21
+122814,1543505.047,2310096.153,308980.0612,21
+122815,1542345.25,2307696.756,336645.6493,21
+122816,1537001.371,2303034.593,459634.568,21
+122817,1537843.959,2300657.414,565482.5743,21
+122818,1531330.363,2299522.863,285603.3729,21
+122819,1531166.048,2292914.801,511063.428,21
+122820,1526988.656,2292503.934,313497.5272,21
+122821,1287661.999,2051396.16,211174.7164,21
+122822,1266762.629,2026214.615,402247.211,21
+122823,1259002.017,2017717.335,123082.4563,21
+122824,1251712.104,2007246.588,362716.3909,21
+122825,1246511.412,1999399.431,238495.35,21
+122826,1238367.114,1991296.105,115671.3235,21
+122827,1232977.402,1982587.344,269671.1975,21
+122828,1228308.319,1974513.004,205849.0503,21
+122829,1219959.827,1965147.082,376370.2183,21
+122830,1217098.279,1959079.259,105590.7426,21
+122831,1211146.031,1950260.604,329961.3801,21
+122832,1204498.913,1942912.562,215765.0774,21
+122833,1201119.274,1935075.378,174895.0263,21
+122834,1194715.107,1928062.943,134340.6951,21
+122835,1188478.073,1920478.823,227143.8546,21
+122836,1183377.234,1870132.198,116947.4262,21
+122837,1177804.8,1855414.857,141151.6733,21
+122838,1172462.301,1844299.418,135400.9723,21
+122839,1167756.928,1835299.515,133487.8993,21
+122840,1163769.065,1822309.628,131928.2593,21
+122841,1158055.249,1812975.863,130282.0672,21
+122842,1154125.257,1803150.359,129074.0785,21
+122843,1148340.568,1791702.244,509814.6772,21
+122844,1144910.583,1783709.119,86967.32191,21
+122845,1139322.691,1773400.676,226321.6247,21
+122846,1136453.775,1762206.767,78911.52036,21
+122847,1129267.725,1755022.754,228973.9652,21
+122848,1127384.205,1743924.076,171090.3218,21
+122849,1121406.584,1736670.054,204325.3266,21
+122850,1117718.245,1726862.837,72738.53581,21
+122851,1112620.57,1718375.594,278657.7471,21
+122852,1109067.25,1710451.282,197364.0089,21
+122853,1103732.072,1701593.67,67197.38497,21
+122854,1100693.566,1693128.097,210971.676,21
+122855,1095560.968,1684906.42,149974.3501,21
+122856,1091304.03,1676283.626,186241.6392,21
+122857,1087931.856,1668581.488,61245.2418,21
+122858,1083009.067,1659727.443,254252.338,21
+122859,1078998.096,1652433.437,58060.73764,21
+122860,1075597.875,1644183.712,56766.83434,21
+122861,1070846.27,1635924.499,56292.12153,21
+122862,1067231.458,1627385.558,55401.06829,21
+122863,1062106.5,1620638.024,54508.30251,21
+122864,1060101.908,1611564.698,54034.34775,21
+122865,1054482.16,1604346.934,53004.55734,21
+122866,1051733.282,1596082.334,52378.32373,21
+122867,1047278.021,1589476.598,51461.91357,21
+122868,1043611.505,1580717.836,50875.06343,21
+122869,1039762.907,1573252.666,49722.90821,21
+122870,1036271.435,1565262.272,49088.66409,21
+122871,1032454.227,1557746.261,48356.86606,21
+122872,1028091.95,1550296.459,47461.04525,21
+122873,1024990.296,1542915.406,46742.0204,21
+122874,1021667.22,1534477.608,46252.30856,21
+122875,1016351.239,1527178.354,45737.49012,21
+122876,1013940.88,1519842.583,45003.87066,21
+122877,1009119.662,1511505.418,44864.21263,21
+122878,1006083.473,1504823.678,44055.76918,21
+122879,1001209.455,1496183.398,43727.93557,21
+122880,998748.0884,1491668.917,43203.2911,21
+122881,995385.7264,1484372.032,42214.04396,21
+122882,990553.2899,1481233.666,42207.88558,21
+122883,988565.8347,1475013.442,41209.72219,21
+122884,984480.8906,1471237.359,40840.96483,21
+122885,981880.6921,1466116.705,39931.78432,21
+122886,979547.3157,1460710.543,39647.73235,21
+122887,976109.0913,1456818.692,38820.33558,21
+122888,973973.7717,1451783.454,38348.53984,21
+122889,971082.4845,1446122.827,37750.57397,21
+122890,967813.8524,1442017.967,37088.54674,21
+122891,965965.7482,1436084.438,36498.27394,21
+122892,962166.0085,1432642.002,35677.42626,21
+122893,960115.0417,1427144.53,35470.61954,21
+122894,957310.7745,1422019.699,34446.4953,21
+122895,953554.5264,1417399.917,33985.24433,21
+122896,952341.1662,1412412.382,33471.71902,21
+122897,949327.4791,1407422.123,32659.00674,21
+122898,945309.3947,1402619.309,32172.47865,21
+122899,944809.2535,1398154.839,31799.89854,21
+122900,939761.8123,1392753.677,30803.19393,21
+122901,937773.4242,1388779.807,30514.14322,21
+122902,935365.2893,1382253.007,29886.60517,21
+122903,931994.1736,1378334.517,29350.4473,21
+122904,930040.3897,1373751.227,28669.42459,21
+122905,925995.6155,1367956.837,28303.51609,21
+122906,924062.7454,1363917.028,27328.86828,21
+122907,921442.7912,1358560.189,27187.46726,21
+122908,916800.0489,1353869.529,26286.78689,21
+122909,916401.6472,1348387.486,25945.90788,21
+122910,911642.1601,1343630.109,25263.26365,21
+122911,909162.5185,1338899.931,24518.62355,21
+122912,907863.4491,1333012.95,24309.38476,21
+122913,904732.0808,1328230.231,23573.30821,21
+122914,903421.0113,1323241.795,23095.7022,21
+122915,899192.0774,1318995.263,22552.7329,21
+122916,898821.4487,1312147.58,21575.05601,21
+122917,896060.3201,1308542.445,21186.40732,21
+122918,893281.4746,1302044.954,20606.02273,21
+122919,891255.8321,1297513.886,19829.01996,21
+122920,890118.5292,1292070.446,19603.98864,21
+122921,886153.7847,1287030.014,18845.38898,21
+122922,885647.7151,1281443.429,18235.52783,21
+122923,883394.9614,1276600.87,17921.97486,21
+122924,881547.7465,1271646.954,17302.42914,21
+122925,879299.6562,1265833.377,16622.27381,21
+122926,878615.5612,1261052.021,16234.9666,21
+122927,874702.5778,1254514.303,15661.75062,21
+122928,874725.0622,1250212.552,15039.01487,21
+122929,871934.6954,1244410.013,14706.85294,21
+122930,870873.4635,1239341.004,13982.42746,21
+122931,869359.4661,1233136.186,13410.01331,21
+122932,867194.4148,1229094.567,13175.70308,21
+122933,865351.3859,1221614.991,12308.49032,21
+122934,864841.411,1217686.77,11879.31249,21
+122935,861989.6883,1211704.978,11396.07508,21
+122936,861149.8817,1206256.174,10863.10882,21
+122937,859561.3701,1200527.937,10286.74753,21
+122938,859052.1472,1195618.595,9695.420838,21
+122939,855994.9156,1189529.369,9376.657226,21
+122940,858485.4074,1185268.867,8659.556321,21
+122941,858695.2363,1173489.772,7079.477858,21
+122942,856927.6579,1170316.729,6776.567601,21
+122943,857499.455,1164874.866,6576.344508,21
+122944,855677.0978,1160563.384,6291.410559,21
+122945,854352.7971,1155622.31,5907.372433,21
+122946,855016.487,1150934.688,5804.434073,21
+122947,852825.7788,1147625.012,5396.884817,21
+122948,852971.7705,1141374.129,5294.271405,21
+122949,852179.3185,1137115.395,4910.201345,21
+122950,851063.6292,1133767.047,4738.721768,21
+122951,850631.0986,1127643.704,4526.46124,21
+122952,849471.2855,1124423.871,4296.967097,21
+122953,848845.7645,1118925.724,4261.768345,21
+122954,849100.5484,1115966.996,4204.599593,21
+122955,847041.8589,1109290.03,4127.900106,21
+122956,849533.757,1107124.693,4084.196625,21
+122957,848856.7806,1100983.222,4034.797187,21
+122958,848613.1254,1097734.584,3985.28272,21
+122959,847880.9056,1092089.467,3924.559522,21
+122960,846982.4592,1088698.855,3863.665894,21
+122961,847384.9071,1084061.907,3791.433177,21
+122962,846634.7207,1079840.164,3755.354565,21
+122963,845756.9354,1075951.189,3705.197539,21
+122964,846399.5742,1070758.711,3618.358079,21
+122965,846048.5375,1067588.005,3573.468436,21
+122966,844977.2747,1062775.227,3508.773808,21
+122967,845144.9985,1058265.495,3472.187464,21
+122968,844949.6952,1055045.965,3361.584657,21
+122969,845654.4648,1050601.596,3347.587499,21
+122970,846486.9299,1045963.913,3250.587632,21
+122971,845204.5163,1041705.844,3222.241606,21
+122972,843973.9177,1037521.783,3124.642787,21
+122973,842473.1308,1033228.8,3101.666724,21
+122974,839967.9775,1030155.087,3009.55413,21
+122975,837173.084,1023764.272,2945.932441,21
+122976,837771.8899,1021310.359,2899.319058,21
+122977,834102.4095,1016484.638,2847.084047,21
+122978,833425.111,1011530.299,2742.055559,21
+122979,832096.1802,1008890.603,2709.435063,21
+122980,831036.0902,1003410.152,2642.114592,21
+122981,828597.756,999508.8159,2577.281177,21
+122982,829254.4522,994539.8205,2512.228133,21
+122983,825236.4584,992165.0936,2437.609943,21
+122984,824877.4811,985976.1303,2381.447991,21
+122985,822988.2119,982743.373,2333.18594,21
+122986,822355.3785,978687.2868,2225.402545,21
+122987,819694.5315,974089.1842,2201.086849,21
+122988,817752.3148,970272.6951,2122.394653,21
+122989,817744.9835,965928.8207,2068.009637,21
+122990,816111.5447,963579.2465,1988.7063,21
+122991,813275.8469,959189.4302,1909.012053,21
+122992,811910.4279,955784.8828,1881.542949,21
+122993,811314.055,951624.4824,1788.738506,21
+122994,808703.4635,947348.9817,1733.295554,21
+122995,807002.6925,942407.757,1680.193617,21
+122996,805961.4555,940741.6508,1583.60596,21
+122997,804830.3057,936657.6065,1558.04791,21
+122998,802480.5307,935206.5147,1473.566984,21
+122999,801554.2653,931787.3929,1391.048891,21
+123000,799972.9818,928870.9636,1365.02882,21
+123001,795629.4843,932069.973,1349.639142,21
+123002,791922.5489,930079.5414,1321.150776,21
+123003,790990.0148,926462.2646,1239.915502,21
+123004,786167.4563,926918.8649,1180.076169,21
+123005,782115.9165,922729.5566,1111.167117,21
+123006,780339.2136,921894.7473,1055.175925,21
+123007,776245.7636,919771.9603,967.3677519,21
+123008,773757.5551,918124.033,924.2333156,21
+123009,771014.4641,916687.2789,866.9793752,21
+123010,768779.844,914208.6491,793.2881381,21
+123011,765111.6497,912857.3838,718.7704748,21
+123012,763639.8457,910126.2038,672.3874048,21
+123013,759866.0834,909259.3824,613.1527709,21
+123014,756722.8176,906473.8804,533.1554334,21
+123015,755258.643,906270.8633,533.1606108,21
+123016,751159.5886,902908.1085,500.7330499,21
+123017,749285.1557,901909.6986,468.1336492,21
+123018,745418.3875,901169.6208,451.7686006,21
+123019,744942.3535,898258.1779,418.8938106,21
+123020,740063.3012,896420.4126,385.8217792,21
+123021,738338.6604,894751.474,369.2090392,21
+123022,735244.2303,893945.5362,335.815624,21
+123023,731836.6244,890993.8802,302.1872661,21
+123024,729968.8681,890394.3683,285.2794117,21
+123025,726074.1883,888534.6917,251.2579419,21
+123026,724245.2891,886806.9808,234.1383486,21
+123027,721998.9901,884778.3639,199.6570427,21
+123028,717815.9125,882386.4736,164.8157573,21
+123029,716284.534,882215.5848,147.2415963,21
+123030,711691.1508,879657.082,129.5515392,21
+123031,711100.3778,877887.3767,75.6305632,21
+123032,708115.3778,877187.379,75.63066559,21
+123033,707086.3616,874242.0793,38.68917999,21
+123034,703991.4774,873662.6839,19.71935067,21
+123035,703446.7847,871562.5644,0,21
+123036,700995.8751,869042.0654,0,21
+123037,698773.6461,868951.2045,0,21
+123038,697101.424,865560.8684,0,21
+123039,694582.1127,865166.7678,0,21
+123040,693172.2279,863005.6781,0,21
+123041,691941.0844,860733.5397,0,21
+123042,689289.2808,860321.2056,0,21
+123043,688280.6089,857658.7051,0,21
+123044,685487.0872,855941.6776,0,21
+123045,684935.4365,855281.3492,0,21
+123046,681396.5066,852457.9076,0,21
+123047,681194.8689,850960.2354,0,21
+123048,677715.8642,849924.7917,0,21
+123049,677211.6473,848354.7786,0,21
+123050,674574.4828,846243.5716,0,21
+123051,674059.182,843925.241,0,21
+123052,670683.9506,843585.7445,0,21
+123053,670931.051,840581.3345,0,21
+123054,668426.3662,839865.7603,0,21
+123055,668688.2157,837175.2109,0,21
+123056,665331.3879,835953.1956,0,21
+123057,664447.6525,833805.035,0,21
+123058,662899.6614,832127.0607,0,21
+123059,661730.0137,829951.3569,0,21
+123060,658695.1445,828729.9233,0,21
+123061,733986.5222,886685.4572,0,21
+123062,731295.5913,886008.623,0,21
+123063,731603.4334,882776.7378,0,21
+123064,728716.9062,882176.0713,0,21
+123065,728980.6493,881221.3391,0,21
+123066,727097.7375,878699.2798,0,21
+123067,727287.1144,877980.3905,0,21
+123068,725945.5653,875207.1903,0,21
+123069,723966.1244,874708.6889,0,21
+123070,723346.9518,872887.3181,0,21
+123071,722107.3845,871214.5803,0,21
+123072,720406.9083,870383.79,0,21
+123073,720041.0261,867948.0811,0,21
+123074,718558.4983,866996.7504,0,21
+123075,717652.7431,864791.4322,0,21
+123076,717036.28,863547.1155,0,21
+123077,715331.7339,862196.6636,0,21
+123078,714392.2511,860347.101,0,21
+123079,712449.7188,858776.3839,0,21
+123080,712831.1713,857646.0718,0,21
+123081,711781.0156,856945.6593,0,21
+123082,710870.4459,854119.3052,0,21
+123083,710683.3635,853847.326,0,21
+123084,709600.0687,851923.3103,0,21
+123085,707927.8498,849861.714,0,21
+123086,708286.6336,848552.4683,0,21
+123087,705787.8464,847426.7955,0,21
+123088,705341.0523,845446.8577,0,21
+123089,703046.9253,844615.9222,0,21
+123090,703907.3916,842423.5962,0,21
+123091,701330.8879,841196.5815,0,21
+123092,699699.9814,839521.8088,0,21
+123093,699136.2428,837791.8676,0,21
+123094,697206.3463,836132.5329,0,21
+123095,696891.3743,833888.6524,0,21
+123096,693567.6232,834216.4671,0,21
+123097,693866.6467,830782.1563,0,21
+123098,690659.7243,829142.3721,0,21
+123099,690407.6084,829230.6574,0,21
+123100,689421.1184,826103.6289,0,21
+123101,686171.4522,824532.2803,0,21
+123102,685638.1431,823261.5749,0,21
+123103,685067.1209,820962.3539,0,21
+123104,681924.5503,819738.8846,0,21
+123105,681580.1779,817421.4034,0,21
+123106,680300.8602,815847.4865,0,21
+123107,677971.3776,814763.7402,0,21
+123108,676976.7737,811408.7281,0,21
+123109,675871.5099,810223.4173,0,21
+123110,673169.9565,808758.2022,0,21
+123111,672356.423,806210.4186,0,21
+123112,670257.651,803521.2607,0,21
+123113,670389.7523,803128.2997,0,21
+123114,667586.4395,799486.6031,0,21
+123115,666571.3043,798821.8721,0,21
+123116,664666.1134,796346.9445,0,21
+123117,663677.1734,794038.7995,0,21
+123118,661135.9551,792737.6918,0,21
+123119,660672.8595,790619.6361,0,21
+123120,658412.0373,788236.3797,0,21
+123121,583278.7271,712467.602,0,21
+123122,582000.3907,708472.2182,0,21
+123123,580846.1489,706285.4862,0,21
+123124,580597.7106,704065.5368,0,21
+123125,578955.4221,700812.1645,0,21
+123126,578704.8379,698898.1272,0,21
+123127,577101.7594,696980.509,0,21
+123128,577452.7199,692824.6993,0,21
+123129,575940.601,691475.5128,0,21
+123130,574940.2274,688469.827,0,21
+123131,573494.374,686292.8712,0,21
+123132,572932.7434,683534.0449,0,21
+123133,571579.2917,681159.9951,0,21
+123134,571442.4329,678697.3424,0,21
+123135,569826.7571,677075.0127,0,21
+123136,569442.6599,674783.0069,0,21
+123137,569412.0457,673231.392,0,21
+123138,567802.8381,670696.5512,0,21
+123139,568213.0312,669052.1468,0,21
+123140,566772.591,667155.5589,0,21
+123141,566085.5544,664909.3548,0,21
+123142,564999.5164,662942.5688,0,21
+123143,564917.8212,660961.524,0,21
+123144,562976.2374,659280.3008,0,21
+123145,563297.0695,656724.4541,0,21
+123146,562303.0378,655399.7666,0,21
+123147,561313.0337,653046.5815,0,21
+123148,561525.7703,650916.5372,0,21
+123149,559654.0581,649536.4824,0,21
+123150,558474.9376,648471.2321,0,21
+123151,559670.8827,647002.5095,0,21
+123152,557239.1565,644764.2157,0,21
+123153,558997.3642,643198.0648,0,21
+123154,557741.8815,641083.5425,0,21
+123155,557425.4236,639458.4193,0,21
+123156,557817.137,637614.186,0,21
+123157,558308.8157,635795.2543,0,21
+123158,556890.1428,633978.8851,0,21
+123159,556564.3764,632152.935,0,21
+123160,556918.8004,630475.3128,0,21
+123161,557236.4242,628783.3079,0,21
+123162,556410.1294,626888.1122,0,21
+123163,556521.429,625064.6462,0,21
+123164,555873.1041,623682.8806,0,21
+123165,558204.3884,622141.6213,0,21
+123166,557029.0675,619765.7124,0,21
+123167,558112.2403,618547.4415,0,21
+123168,557361.074,616807.4093,0,21
+123169,557633.1337,615331.3891,0,21
+123170,558031.9433,613667.7656,0,21
+123171,557816.8185,611761.6522,0,21
+123172,557801.0079,610521.1549,0,21
+123173,557279.8555,608677.7345,0,21
+123174,558376.488,607161.3535,0,21
+123175,557927.0998,605426.6719,0,21
+123176,557652.648,604022.851,0,21
+123177,558428.4229,602168.0979,0,21
+123178,558270.6957,600892.6534,0,21
+123179,558769.2989,599201.9968,0,21
+123180,559900.6708,597303.9481,0,21
+123181,562345.734,600986.7538,0,21
+123182,564844.5645,599374.3829,0,21
+123183,566517.9052,598477.2655,0,21
+123184,566961.5304,596632.1477,0,21
+123185,567260.4351,595554.737,0,21
+123186,568651.2714,594348.8173,0,21
+123187,568733.6393,592450.2441,0,21
+123188,569656.5293,591587.5363,0,21
+123189,570827.2276,589931.0135,0,21
+123190,571759.8594,588517.9194,0,21
+123191,572882.8436,587436.7517,0,21
+123192,573511.7581,585846.0192,0,21
+123193,575666.623,584750.7279,0,21
+123194,575956.5397,583374.0904,0,21
+123195,576563.344,582095.0006,0,21
+123196,578207.557,580729.4059,0,21
+123197,578924.6599,579778.8945,0,21
+123198,579888.6129,577928.6167,0,21
+123199,580974.4945,577295.6594,0,21
+123200,582378.1883,575653.6481,0,21
+123201,583250.8846,574504.0345,0,21
+123202,584495.0033,573398.0549,0,21
+123203,586384.3674,572345.7639,0,21
+123204,587265.1318,570823.4292,0,21
+123205,588312.8683,569994.8135,0,21
+123206,589534.0874,568745.5026,0,21
+123207,590576.7049,567515.9504,0,21
+123208,591776.2983,566767.473,0,21
+123209,592512.084,565348.2624,0,21
+123210,594142.3706,564418.3446,0,21
+123211,593245.1998,563286.8186,0,21
+123212,593342.4455,562283.2971,0,21
+123213,594286.0421,561291.3705,0,21
+123214,594372.9467,560550.4962,0,21
+123215,595280.6551,559247.0271,0,21
+123216,595940.4492,558330.1364,0,21
+123217,596161.1516,557594.4662,0,21
+123218,597056.737,556612.0097,0,21
+123219,597374.0604,555486.7854,0,21
+123220,598491.8221,555177.8599,0,21
+123221,598552.3965,553560.9846,0,21
+123222,599121.9044,552956.7667,0,21
+123223,599664.4128,552266.4294,0,21
+123224,600095.1882,550883.6782,0,21
+123225,600562.6169,550437.1284,0,21
+123226,600990.585,549660.7036,0,21
+123227,601878.6732,548628.4407,0,21
+123228,601991.715,547424.0917,0,21
+123229,603093.5622,546983.7331,0,21
+123230,603215.573,545792.9231,0,21
+123231,603839.6157,545096.2185,0,21
+123232,603848.7715,544352.961,0,21
+123233,604658.848,543147.4635,0,21
+123234,604890.7218,542297.8295,0,21
+123235,605513.1196,541744.3952,0,21
+123236,605640.2138,540515.063,0,21
+123237,606589.1267,539848.148,0,21
+123238,607265.6806,538702.5245,0,21
+123239,607246.7637,538078.8796,0,21
+123240,607768.6638,536846.059,0,21
+123241,603144.4344,530793.7498,0,21
+123242,602763.3475,530332.7467,0,21
+123243,602949.4274,530237.5355,0,21
+123244,602803.9594,529821.5908,0,21
+123245,602323.1831,529467.7721,0,21
+123246,602572.087,528753.1749,0,21
+123247,602120.5666,528857.7693,0,21
+123248,602064.4367,528026.957,0,21
+123249,602274.5156,527938.863,0,21
+123250,601745.9889,527392.1206,0,21
+123251,601507.345,526992.0963,0,21
+123252,601572.381,526683.0677,0,21
+123253,601158.155,526132.6405,0,21
+123254,601366.3591,525892.7817,0,21
+123255,601146.5584,525194.5949,0,21
+123256,600663.3972,524785.6832,0,21
+123257,600531.7377,524722.5651,0,21
+123258,600633.4243,523496.1628,0,21
+123259,600206.9663,523511.1123,0,21
+123260,600171.6942,523182.3045,0,21
+123261,599753.749,522150.3479,0,21
+123262,599620.4496,521807.9125,0,21
+123263,599608.109,521566.6003,0,21
+123264,599040.2906,520491.9317,0,21
+123265,599301.1317,520374.4675,0,21
+123266,598756.9816,519872.4164,0,21
+123267,598534.6109,518595.1741,0,21
+123268,598509.4135,518612.0703,0,21
+123269,598294.1596,517736.0826,0,21
+123270,597804.5346,517267.887,0,21
+123271,596941.3524,516515.4578,0,21
+123272,595392.7224,516011.0333,0,21
+123273,593502.3154,515568.904,0,21
+123274,592982.1654,514864.482,0,21
+123275,591536.664,514622.1967,0,21
+123276,590715.958,513524.9375,0,21
+123277,589844.2663,513472.9254,0,21
+123278,588433.3373,512376.2493,0,21
+123279,585747.3681,512249.6198,0,21
+123280,584443.4287,511227.0819,0,21
+123281,583051.5012,511114.1251,0,21
+123282,581711.3268,510313.9868,0,21
+123283,580694.6901,510164.8673,0,21
+123284,579169.6847,508948.423,0,21
+123285,578118.2663,509049.5216,0,21
+123286,576619.9696,508008.4349,0,21
+123287,575572.379,507449.5573,0,21
+123288,573879.6148,507238.0392,0,21
+123289,572851.0431,506504.612,0,21
+123290,571359.0377,505812.204,0,21
+123291,568363.0731,505329.5993,0,21
+123292,566636.4539,505007.2887,0,21
+123293,565275.7121,503899.2705,0,21
+123294,563765.6196,503768.2407,0,21
+123295,562519.908,503255.4279,0,21
+123296,560633.3065,502275.3262,0,21
+123297,559410.7578,502158.8791,0,21
+123298,557886.6316,501610.4547,0,21
+123299,556338.2502,500414.7709,0,21
+123300,555112.9507,500725.6757,0,21
+123301,552529.8154,499172.8207,0,21
+123302,550585.6544,498494.4578,0,21
+123303,548061.7741,497511.2316,0,21
+123304,545468.8066,496660.5992,0,21
+123305,543321.6493,495818.8438,0,21
+123306,540790.9011,494738.0122,0,21
+123307,538562.0035,493939.9782,0,21
+123308,533985.4081,492960.0017,0,21
+123309,530979.8711,492220.8335,0,21
+123310,528728.2281,491546.7741,0,21
+123311,526423.3008,489965.6508,0,21
+123312,523962.4614,489950.1065,0,21
+123313,521108.0184,489126.5555,0,21
+123314,518998.1915,489156.239,0,21
+123315,516168.8375,489510.2648,0,21
+123316,513913.8944,489523.1159,0,21
+123317,511577.6893,489231.0596,0,21
+123318,508880.8616,489604.3803,0,21
+123319,506430.0026,489920.8799,0,21
+123320,504436.0598,489775.456,0,21
+123321,501770.662,490306.6682,0,21
+123322,499059.6832,490014.0605,0,21
+123323,496827.4396,490492.7422,0,21
+123324,494489.3317,490630.1361,0,21
+123325,492042.8162,490879.9768,0,21
+123326,489536.0636,490598.9063,0,21
+123327,488071.1903,491436.9813,0,21
+123328,486739.5544,490995.0357,0,21
+123329,485988.9049,491523.6951,0,21
+123330,484249.3637,491610.5997,0,21
+123331,483783.2865,492062.7508,0,21
+123332,483055.1144,491787.2324,0,21
+123333,482930.4126,492665.7903,0,21
+123334,482477.5722,492765.3372,0,21
+123335,481795.3596,493131.4842,0,21
+123336,481625.6604,493156.111,0,21
+123337,481252.6061,493781.0428,0,21
+123338,481019.7927,493846.7113,0,21
+123339,480498.0953,494408.9324,0,21
+123340,479954.0085,494738.0707,0,21
+123341,479266.4289,494919.7671,0,21
+123342,479533.045,495183.5678,0,21
+123343,478738.9055,495830.8653,0,21
+123344,478361.1708,495936.3693,0,21
+123345,478041.9463,496484.6518,0,21
+123346,477823.1174,496467.3727,0,21
+123347,477664.2799,497184.733,0,21
+123348,477210.4779,497402.0403,0,21
+123349,476435.0766,497586.3591,0,21
+123350,476226.1442,498312.6541,0,21
+123351,475823.4949,498541.0567,0,21
+123352,475655.1123,498896.9337,0,21
+123353,474988.688,499294.6157,0,21
+123354,475857.4364,499941.5632,0,21
+123355,475627.0745,500077.1059,0,21
+123356,476323.5432,500653.5778,0,21
+123357,474824.3146,501354.7395,0,21
+123358,474818.0914,501457.5936,0,21
+123359,474592.4408,501843.0586,0,21
+123360,473983.4907,503618.5171,0,21
+123361,519011.2397,547872.1321,0,21
+123362,527751.8487,552336.4312,0,21
+123363,537920.5155,554951.9764,0,21
+123364,549116.5423,574395.6452,0,21
+123365,614872.5202,565302.3113,0,21
+123366,644165.2876,571412.287,0,21
+123367,613893.9233,573483.4806,0,21
+123368,630918.3858,576068.9738,0,21
+123369,632208.5693,578626.9738,0,21
+123370,636657.8949,595547.9916,0,21
+123371,638427.5245,645488.5341,0,21
+123372,639698.895,617063.2946,0,21
+123373,644752.6182,629419.9355,0,21
+123374,648024.0126,633777.7196,0,21
+123375,649200.2636,636377.3857,0,21
+123376,653391.4715,640135.3121,0,21
+123377,652793.9778,641520.2104,0,21
+123378,656530.2783,646412.224,0,21
+123379,658332.82,647625.9637,0,21
+123380,661557.8924,650629.4867,0,21
+123381,661235.2061,653553.7828,0,21
+123382,664684.4062,656607.6773,0,21
+123383,667109.1265,658746.4519,0,21
+123384,668756.1213,660993.3904,0,21
+123385,669601.5817,661361.9064,0,21
+123386,673207.6685,663955.5914,0,21
+123387,674554.1896,665051.5033,0,21
+123388,679368.305,665918.2624,0,21
+123389,679439.2038,666740.6738,0,21
+123390,681846.7186,669670.034,0,21
+123391,683513.0216,669254.1126,0,21
+123392,684127.9996,671064.6773,0,21
+123393,685928.7498,672820.4328,0,21
+123394,684723.3843,673543.6634,0,21
+123395,685145.4103,675337.8526,0,21
+123396,685488.6557,675010.606,0,21
+123397,687234.5637,678019.6085,0,21
+123398,687577.4085,678562.4239,0,21
+123399,688601.3087,679186.7434,0,21
+123400,689111.5742,680440.3464,0,21
+123401,689597.5258,682720.6193,0,21
+123402,690688.1411,682457.1691,0,21
+123403,692248.3259,684667.0243,0,21
+123404,691254.64,684966.166,0,21
+123405,692951.7434,687248.115,0,21
+123406,691273.4416,686498.9738,0,21
+123407,692245.9924,689697.0321,0,21
+123408,691118.5874,689061.1959,0,21
+123409,693718.6693,691061.3002,0,21
+123410,693076.4716,691944.736,0,21
+123411,693797.3348,693515.5456,0,21
+123412,694409.0373,694365.289,0,21
+123413,694881.6442,695068.6239,0,21
+123414,695010.1932,696074.7818,0,21
+123415,695422.2506,698371.7289,0,21
+123416,696616.8399,698018.7029,0,21
+123417,695699.7242,699820.5483,0,21
+123418,697253.495,701268.3893,0,21
+123419,697247.3357,701646.5121,0,21
+123420,696281.76,702784.9906,0,21
+123421,754023.95,756100.7771,0,21
+123422,758668.1555,761986.9479,0,21
+123423,758158.4708,764817.1898,0,21
+123424,760623.6548,766586.1674,0,21
+123425,758671.6229,770585.781,0,21
+123426,760037.478,771868.1879,0,21
+123427,760354.9548,775666.8146,0,21
+123428,759600.6695,777112.8065,0,21
+123429,761491.6965,779482.6121,0,21
+123430,759697.1157,782919.3574,0,21
+123431,760807.8128,783643.684,0,21
+123432,760522.0568,788157.092,0,21
+123433,759754.0419,788403.2029,0,21
+123434,761698.2537,792772.2898,0,21
+123435,758659.8607,793649.9477,0,21
+123436,759941.6251,796717.635,0,21
+123437,759435.0968,798551.0038,0,21
+123438,759088.0927,801226.5155,0,21
+123439,759399.8433,802683.5434,0,21
+123440,758211.5545,805701.1026,0,21
+123441,758924.5523,807936.3166,0,21
+123442,758616.3954,810423.9285,0,21
+123443,760825.3678,811261.4654,0,21
+123444,759287.2722,815559.1065,0,21
+123445,760566.3693,816574.0663,0,21
+123446,761222.2504,818302.3996,0,21
+123447,761527.7222,821817.4898,0,21
+123448,761775.6721,823325.2403,0,21
+123449,761399.9107,825406.9857,0,21
+123450,763958.5627,826908.6613,0,21
+123451,761853.7948,830525.4603,0,21
+123452,763542.7855,832400.4013,0,21
+123453,763920.2845,833843.3465,0,21
+123454,763576.7109,835892.9975,0,21
+123455,763635.9675,840633.5748,0,21
+123456,764551.0689,839913.1228,0,21
+123457,765227.9403,845581.005,0,21
+123458,763749.2667,845110.4956,0,21
+123459,765540.2916,849219.1298,0,21
+123460,763860.9877,849372.646,0,21
+123461,766227.5649,854173.3508,0,21
+123462,765905.4791,855004.408,0,21
+123463,765440.9854,856901.4498,0,21
+123464,765748.479,870602.7909,0,21
+123465,767085.6092,868429.877,0,21
+123466,765701.3214,873904.8918,0,21
+123467,767682.5661,877650.8515,0,21
+123468,766915.3444,879704.014,0,21
+123469,767376.8017,885496.4723,0,21
+123470,767094.3162,886601.0911,0,21
+123471,767940.0134,891455.0145,0,21
+123472,768022.9469,893804.5188,0,21
+123473,767843.2198,899187.8195,0,21
+123474,769825.4032,900726.6229,0,21
+123475,768185.1911,905227.7876,0,21
+123476,769548.3927,908112.7696,0,21
+123477,769351.0209,911066.2655,0,21
+123478,769657.543,914171.9731,0,21
+123479,770459.0527,918551.0807,0,21
+123480,770113.8267,919748.9124,0,21
+123481,773747.8021,925343.7636,0,21
+123482,776466.0089,930201.4771,0,21
+123483,778498.8662,932602.9021,0,21
+123484,778710.9405,937941.7185,0,21
+123485,781592.868,941063.9908,0,21
+123486,782254.234,945187.1274,0,21
+123487,784647.6071,949101.1287,0,21
+123488,785229.3944,952870.6617,0,21
+123489,787687.1515,956258.6955,0,21
+123490,789272.1626,960652.5329,0,21
+123491,790818.2949,963579.9377,0,21
+123492,793132.1029,970375.417,0,21
+123493,793910.2041,978862.5461,0,21
+123494,796859.9327,981768.1589,0,21
+123495,797022.1749,985505.3501,0,21
+123496,800637.3509,991865.4365,0,21
+123497,814321.2627,996597.8061,0,21
+123498,819888.4351,1000998.094,0,21
+123499,820816.0448,1005508.417,0,21
+123500,823691.2053,1010435.764,0,21
+123501,826960.121,1015459.458,0,21
+123502,826280.9869,1020178.394,0,21
+123503,829769.7929,1023395.784,0,21
+123504,830490.1645,1031289.643,0,21
+123505,832172.3641,1031916.604,0,21
+123506,833629.2057,1039840.234,0,21
+123507,835010.1544,1042609.716,0,21
+123508,837233.4752,1047703.068,0,21
+123509,837260.9,1053006.909,0,21
+123510,841952.1815,1056034.826,0,21
+123511,842236.5703,1062066.381,0,21
+123512,844679.541,1065524.611,0,21
+123513,844411.5736,1069167.704,0,21
+123514,847531.0171,1073189.616,0,21
+123515,846305.1142,1078364.955,0,21
+123516,849480.2291,1080933.278,0,21
+123517,850340.373,1086405.682,0,21
+123518,850935.9251,1088741.958,0,21
+123519,852415.2489,1093711.064,0,21
+123520,853342.6774,1097132.416,0,21
+123521,855271.9792,1101538.332,0,21
+123522,855507.6998,1104316.359,0,21
+123523,856086.7967,1108979.692,0,21
+123524,858144.5369,1112577.941,0,21
+123525,858462.4983,1121613.764,0,21
+123526,859877.4751,1125369.11,0,21
+123527,859821.8104,1130603.852,0,21
+123528,862233.8824,1134462.85,0,21
+123529,862082.5916,1137522.04,0,21
+123530,864521.2913,1141608.107,0,21
+123531,863955.9945,1145902.981,0,21
+123532,865699.4945,1148325.34,0,21
+123533,866255.3057,1154010.409,0,21
+123534,867010.5139,1156099.36,0,21
+123535,868368.687,1160789.976,0,21
+123536,869312.0573,1163496.983,216.9444961,21
+123537,869955.1333,1167165.847,120.6604447,21
+123538,869879.0997,1171852.347,164.819354,21
+123539,872518.6697,1174933.352,182.2897312,21
+123540,872637.7448,1178316.147,199.6635911,21
+123541,880881.8703,1189446.532,285.2945807,21
+123542,883981.5032,1192299.366,319.0536972,21
+123543,885346.9898,1195272.585,352.5692439,21
+123544,886332.3347,1197742.148,369.2429536,21
+123545,887144.163,1200984.079,402.4277323,21
+123546,888817.6194,1202861.585,418.9451322,21
+123547,891129.3491,1205175.615,435.4138437,21
+123548,890637.8987,1208567.98,484.5339177,21
+123549,893482.1806,1209919.905,1655.73311,21
+123550,894606.8468,1213480.008,1811.892135,21
+123551,895071.6767,1215922.57,1860.553768,21
+123552,897019.8629,1216789.016,2137.860411,21
+123553,896928.5542,1219965.377,2428.482354,21
+123554,898791.0657,1222388.844,4169.50216,21
+123555,900874.0661,1225607.552,3759.607853,21
+123556,900133.0102,1225346.017,4186.260554,21
+123557,903105.6626,1229627.177,4760.066277,21
+123558,902218.6463,1231747.325,4775.525929,21
+123559,904867.4559,1233498.701,5461.767372,21
+123560,906617.4528,1237103.572,5493.893252,21
+123561,906393.8249,1237570.211,6025.516416,21
+123562,907773.0493,1239250.183,6073.321974,21
+123563,908601.431,1242977.285,6717.039728,21
+123564,910099.4199,1244846.56,6764.85543,21
+123565,910724.9835,1246642.189,7421.002582,21
+123566,913015.3737,1248263.338,7601.597443,21
+123567,911646.0377,1250983.713,7844.885302,21
+123568,915422.8851,1253637.823,8343.867869,21
+123569,914184.5496,1253910.832,8588.44763,21
+123570,917584.3896,1256956.351,8791.542129,21
+123571,916347.2929,1259410.586,9196.263521,21
+123572,918169.5508,1261032.178,9505.0334,21
+123573,918987.2445,1262636.155,9665.390825,21
+123574,920116.5148,1264412.565,10203.90471,21
+123575,920553.1026,1267612.517,10262.20067,21
+123576,922717.0704,1267929.469,10805.22012,21
+123577,922069.6747,1271641.237,10831.13009,21
+123578,924695.6633,1272245.892,11112.33118,21
+123579,924473.0864,1274511.326,11565.29896,21
+123580,926454.625,1275633.279,11812.61349,21
+123581,926155.2559,1279418.032,11863.00608,21
+123582,928504.7175,1280057.288,12431.96364,21
+123583,927366.6927,1282037.123,12420.28321,21
+123584,930575.2996,1283966.581,12877.76105,21
+123585,930441.0506,1285305.32,13115.91397,21
+123586,930958.1793,1288323.17,13322.7129,21
+123587,931777.548,1289054.945,13574.82617,21
+123588,933294.6065,1292104.56,13861.11654,21
+123589,934403.398,1291846.673,14174.94545,21
+123590,935102.5646,1296008.611,14287.47063,21
+123591,935335.1841,1296059.264,14602.17254,21
+123592,937516.8737,1298746.64,14900.13182,21
+123593,936975.479,1300263.734,14998.29494,21
+123594,937509.8373,1301728.502,15465.19987,21
+123595,940127.8719,1304092.566,15347.55216,21
+123596,939175.8242,1305108.667,15998.05723,21
+123597,941141.0131,1308069.032,15912.13124,21
+123598,942579.6426,1308056.519,16300.50568,21
+123599,941032.5761,1311829.226,16490.50789,21
+123600,944304.0307,1312455.275,16740.96725,21
+123601,944045.0599,1313818.826,16915.21239,21
+123602,945998.0164,1316933.617,17303.10567,21
+123603,944696.9282,1319131.739,17324.39658,21
+123604,946652.9292,1321244.764,17772.61272,21
+123605,946896.7617,1321187.308,17764.05236,21
+123606,945568.35,1324654.4,18302.62454,21
+123607,949089.8621,1325638.372,18202.85365,21
+123608,945911.6835,1327412.748,18605.28631,21
+123609,948532.4108,1328743.974,18884.62832,21
+123610,948685.2982,1330916.065,19211.03916,21
+123611,948819.0663,1332344.208,19254.98328,21
+123612,949165.1173,1334361.429,19857.04175,21
+123613,948855.9688,1334909.71,19801.72901,21
+123614,950810.2458,1338278.786,20230.27437,21
+123615,949284.6764,1337798.439,20402.73872,21
+123616,950875.3951,1341216.977,20710.5465,21
+123617,950751.7998,1342152.983,20853.00437,21
+123618,951839.9329,1343652.101,21160.91407,21
+123619,951049.1967,1345147.435,21480.65154,21
+123620,952534.232,1347028.112,21505.37744,21
+123621,951520.2086,1348358.187,22051.69263,21
+123622,953399.0804,1349977.229,21878.23351,21
+123623,952563.484,1353475.165,22486.46428,21
+123624,953759.138,1351321.703,22597.55004,21
+123625,952393.1417,1356289.679,22859.54154,21
+123626,955239.4895,1355674.324,23033.94077,21
+123627,953550.329,1358742.454,23229.76721,21
+123628,954758.3702,1358675.673,23470.22261,21
+123629,955135.1076,1361554.973,25415.66734,21
+123630,955298.6865,1361795.599,24802.2749,21
+123631,954882.0051,1365043.997,25294.24162,21
+123632,955495.8205,1365879.837,25710.01577,21
+123633,956944.2253,1366608.921,26330.91843,21
+123634,956114.1058,1368418.795,26280.40187,21
+123635,956691.8403,1370232.539,27029.66321,21
+123636,956580.3755,1371622.679,27062.28476,21
+123637,957490.3406,1373719.253,27596.69419,21
+123638,957246.7361,1373800.109,27866.66269,21
+123639,958391.6775,1377280.111,28377.91787,21
+123640,957254.7938,1376517.982,28578.79269,21
+123641,959990.8507,1380155.566,28928.06596,21
+123642,957882.6977,1380125.705,29464.38912,21
+123643,959124.3473,1382621.758,29637.61832,21
+123644,959170.6032,1382674.535,30016.35482,21
+123645,959608.6789,1385269.372,30294.52329,21
+123646,960377.4958,1386642.323,30817.87232,21
+123647,959161.0282,1387286.048,30861.52545,21
+123648,961115.8707,1389688.774,31634.41073,21
+123649,960452.1523,1391410.311,31755.67827,21
+123650,961540.7933,1391155.319,31935.05725,21
+123651,959409.3484,1393616.779,32584.98145,21
+123652,962983.2083,1395025.945,32710.75281,21
+123653,961389.4178,1396837.659,33241.62396,21
+123654,961943.1757,1397721.156,33407.10044,21
+123655,962559.627,1398488.337,33808.71985,21
+123656,962380.1781,1402388.129,33959.86514,21
+123657,962234.8084,1401108.022,34716.72629,21
+123658,963011.0165,1402621.915,34747.5583,21
+123659,964037.2728,1405588.951,35047.11252,21
+123660,963391.6653,1405740.765,35656.58726,21
+123661,0,0,0,21
+123662,0,0,0,21
+123663,0,264.4947858,0,21
+123664,0,0,0,21
+123665,0,0,0,21
+123666,0,0,1024599.209,21
+123667,0,0,0,21
+123668,0,0,0,21
+123669,0,0,0,21
+123670,0,0,0,21
+123671,0,0,0,21
+123672,0,0,0,21
+123673,0,0,0,21
+123674,0,0,0,21
+123675,0,0,0,21
+123676,0,0,0,21
+123677,0,0,0,21
+123678,0,0,0,21
+123679,0,0,0,21
+123680,339433.4606,0,0,21
+123681,0,0,0,21
+123682,0,0,0,21
+123683,0,0,0,21
+123684,0,0,0,21
+123685,0,0,0,21
+123686,0,0,0,21
+123687,0,0,0,21
+123688,0,0,0,21
+123689,0,0,0,21
+123690,0,0,0,21
+123691,0,0,0,21
+123692,0,0,0,21
+123693,0,0,0,21
+123694,0,0,0,21
+123695,0,0,0,21
+123696,0,0,0,21
+123697,0,0,0,21
+123698,0,0,0,21
+123699,0,0,0,21
+123700,0,0,0,21
+123701,0,0,994817.6151,21
+123702,0,0,0,21
+123703,0,0,0,21
+123704,0,0,0,21
+123705,0,0,0,21
+123706,0,0,0,21
+123707,0,25679.28103,0,21
+123708,0,459.2267403,0,21
+123709,0,2931.622502,0,21
+123710,0,6792.942681,0,21
+123711,0,7494.742087,0,21
+123712,0,6053.865013,0,21
+123713,0,6635.612773,0,21
+123714,0,6744.997206,0,21
+123715,0,7563.004794,0,21
+123716,0,375649.6422,0,21
+123717,0,7824.457783,0,21
+123718,0,7987.346775,0,21
+123719,0,8263.759372,0,21
+123720,0,8359.134939,0,15.6
+123721,339428.113,8630.99155,0,15.6
+123722,0,8724.286286,0,15.6
+123723,0,8866.427152,0,15.6
+123724,0,8991.611331,0,15.6
+123725,0,9141.632299,0,15.6
+123726,0,9223.109725,0,15.6
+123727,0,9362.102819,0,15.6
+123728,0,9490.832388,0,15.6
+123729,0,10132.27114,0,15.6
+123730,0,10248.4826,0,15.6
+123731,0,10406.88596,0,15.6
+123732,0,10656.41569,0,15.6
+123733,0,10704.34101,0,15.6
+123734,0,10958.75959,0,15.6
+123735,0,11077.86561,0,15.6
+123736,0,11305.68361,967519.2114,15.6
+123737,0,0,0,15.6
+123738,0,0,0,15.6
+123739,0,0,0,15.6
+123740,0,0,0,15.6
+123741,0,36786.04987,0,15.6
+123742,0,1869.780871,0,15.6
+123743,0,8864.361121,0,15.6
+123744,0,16606.01045,0,15.6
+123745,0,11990.81977,0,15.6
+123746,0,12978.67843,0,15.6
+123747,0,13149.67755,0,15.6
+123748,0,13288.88518,0,15.6
+123749,0,13507.54048,0,15.6
+123750,0,13595.97455,0,15.6
+123751,0,13730.91972,0,15.6
+123752,0,13908.67482,0,15.6
+123753,0,14011.06048,0,15.6
+123754,0,14213.79095,0,15.6
+123755,0,14298.18708,0,15.6
+123756,0,14467.29713,0,15.6
+123757,0,14560.30358,0,15.6
+123758,0,14728.10337,0,15.6
+123759,0,14833.51428,0,15.6
+123760,0,15012.7988,0,15.6
+123761,0,15052.4936,0,15.6
+123762,339413.6332,15282.39399,0,15.6
+123763,0,15326.0571,0,15.6
+123764,0,15476.84128,0,15.6
+123765,0,15618.28119,0,15.6
+123766,0,15717.37301,0,15.6
+123767,0,15802.4857,0,15.6
+123768,0,15981.27129,0,15.6
+123769,0,16074.07544,0,15.6
+123770,0,16163.45115,0,15.6
+123771,0,0,942451.1488,15.6
+123772,0,367927.9849,0,15.6
+123773,0,0,0,15.6
+123774,0,280711.3375,0,15.6
+123775,0,7640.628417,0,15.6
+123776,0,41202.56333,0,15.6
+123777,0,62305.57994,0,15.6
+123778,0,84135.23868,0,15.6
+123779,0,62533.50471,0,15.6
+123780,0,68766.32417,0,15.6
+123781,0,70413.95813,0,15.6
+123782,0,70878.83346,0,15.6
+123783,0,71807.87241,0,15.6
+123784,0,71942.81093,0,15.6
+123785,0,72708.39031,0,15.6
+123786,0,73183.57954,0,15.6
+123787,0,74804.86718,0,15.6
+123788,0,78557.2231,0,15.6
+123789,0,77287.6876,0,15.6
+123790,40014.60756,79172.3065,0,15.6
+123791,0,79743.39317,0,15.6
+123792,697.4228853,80937.70908,0,15.6
+123793,9914.809176,81717.43322,0,15.6
+123794,10952.13433,82628.19596,0,15.6
+123795,8629.222564,83378.54147,0,15.6
+123796,9277.639435,84436.2103,0,15.6
+123797,9559.047792,85124.5977,0,15.6
+123798,9645.621657,85958.8436,0,15.6
+123799,9782.605347,86809.33208,0,15.6
+123800,9858.345025,87817.52414,0,15.6
+123801,10027.16134,88369.33476,0,15.6
+123802,10061.39161,89505.28892,0,15.6
+123803,10202.5323,90161.75677,0,15.6
+123804,349718.3231,0,0,15.6
+123805,10424.06525,0,0,15.6
+123806,10505.40852,0,919426.4687,15.6
+123807,10637.83466,64842.81159,0,15.6
+123808,10711.64059,8116.895808,0,15.6
+123809,10847.41484,15089.65031,0,15.6
+123810,10923.22762,309208.6851,0,15.6
+123811,11045.18021,20383.73406,0,15.6
+123812,11113.64591,43921.52956,0,15.6
+123813,11231.14478,143629.3931,0,15.6
+123814,11355.41044,88689.06053,0,15.6
+123815,11405.34625,99244.35145,0,15.6
+123816,11534.90696,100086.816,0,15.6
+123817,11630.13537,100922.5165,0,15.6
+123818,11723.23625,101525.2811,0,15.6
+123819,11806.36034,101966.3947,0,15.6
+123820,0,103098.0075,0,15.6
+123821,0,109469.824,0,15.6
+123822,0,108426.3657,0,15.6
+123823,0,109991.5879,0,15.6
+123824,0,111122.3347,0,15.6
+123825,0,112709.0146,0,15.6
+123826,55027.17167,113465.7543,0,15.6
+123827,1214.680922,114830.4262,0,15.6
+123828,2583.880966,115537.9943,0,15.6
+123829,19053.10644,485156.926,0,15.6
+123830,12562.74203,118246.9903,0,15.6
+123831,12681.88827,118930.5498,0,15.6
+123832,13121.91722,120583.2134,0,15.6
+123833,13182.30989,121034.9453,0,15.6
+123834,13299.82485,122413.2014,0,15.6
+123835,13335.34909,123579.1015,0,15.6
+123836,13498.47063,124727.7104,0,15.6
+123837,13511.9338,102061.2313,0,15.6
+123838,13634.97581,103677.3952,0,15.6
+123839,13725.52592,103649.2628,0,15.6
+123840,13790.26172,77202.52304,0,15.6
+123841,13852.31673,12744.57135,898211.2566,15.6
+123842,13862.33129,11969.3933,0,15.6
+123843,13926.73289,31404.79602,0,15.6
+123844,13978.60096,22529.58974,0,15.6
+123845,13973.91295,349515.6041,0,15.6
+123846,353438.0195,47102.78099,0,15.6
+123847,14063.39509,92856.07747,0,15.6
+123848,14122.64184,167765.0622,0,15.6
+123849,14156.3806,123862.7765,0,15.6
+123850,14192.52524,131056.6665,0,15.6
+123851,14231.57331,132023.2406,0,15.6
+123852,14265.20346,131820.657,0,15.6
+123853,14291.08463,131838.6918,0,15.6
+123854,14354.46776,132134.3649,0,15.6
+123855,14375.18398,132625.8502,0,15.6
+123856,0,132169.4836,0,15.6
+123857,0,132743.5742,0,15.6
+123858,0,133063.9606,0,15.6
+123859,0,132748.0183,0,15.6
+123860,59496.92561,133330.3197,0,15.6
+123861,126.2793929,132989.1937,0,15.6
+123862,5619.925404,133533.007,0,15.6
+123863,21996.79382,133916.0149,0,15.6
+123864,13539.62751,133294.3097,0,15.6
+123865,14682.26966,134005.4687,0,15.6
+123866,14834.43045,133964.0029,0,15.6
+123867,14874.01095,134067.9105,0,15.6
+123868,14894.21092,133832.4238,0,15.6
+123869,14929.44074,134403.7117,0,15.6
+123870,14956.18023,110846.9527,0,15.6
+123871,15011.44503,110977.7802,0,15.6
+123872,14982.86535,111153.604,0,15.6
+123873,15065.27821,189918.8527,0,15.6
+123874,15058.5186,122990.8996,0,15.6
+123875,15111.93261,11199.61052,0,15.6
+123876,15112.32817,31813.64027,878800.0634,15.6
+123877,15157.47446,22267.49525,0,15.6
+123878,15212.55406,23501.04742,0,15.6
+123879,15168.61218,23421.24009,0,15.6
+123880,15237.65533,360886.3275,0,15.6
+123881,15276.31826,50096.56867,0,15.6
+123882,15306.28893,114800.1721,0,15.6
+123883,15297.23683,528998.0693,0,15.6
+123884,15333.89352,131596.1707,0,15.6
+123885,15399.71321,135751.3844,0,15.6
+123886,15378.17929,135509.2124,0,15.6
+123887,15438.38756,135631.8536,0,15.6
+123888,354787.2975,135590.8865,0,15.6
+123889,15474.23666,135539.4363,0,15.6
+123890,0,135108.1044,0,15.6
+123891,0,135877.6363,0,15.6
+123892,0,135229.4757,0,15.6
+123893,0,135422.1627,0,15.6
+123894,65093.07526,135300.5185,0,15.6
+123895,0,135188.8186,0,15.6
+123896,7240.073966,135529.4485,0,15.6
+123897,22227.73769,135088.7347,0,15.6
+123898,14965.44209,135082.1401,0,15.6
+123899,15587.13926,135186.4634,0,15.6
+123900,15789.96732,134993.0352,0,15.6
+123901,15841.08348,137031.8011,0,15.6
+123902,15901.42759,138884.187,0,15.6
+123903,15917.05008,116434.3692,0,15.6
+123904,15980.68004,118703.4315,0,15.6
+123905,15984.08155,119891.8104,0,15.6
+123906,16096.12138,203071.2065,0,15.6
+123907,16075.25472,136117.1606,0,15.6
+123908,16144.50327,136654.7305,0,15.6
+123909,16221.85593,160109.1441,0,15.6
+123910,16204.82149,23748.11999,0,15.6
+123911,16277.41242,25187.3556,861017.2465,15.6
+123912,16312.17376,25374.01357,0,15.6
+123913,16349.46316,25573.50345,0,15.6
+123914,16397.37887,430801.0281,0,15.6
+123915,16433.63698,63491.25486,0,15.6
+123916,16475.24833,143821.2988,0,15.6
+123917,16505.28734,191705.1976,0,15.6
+123918,16555.30149,164192.9507,0,15.6
+123919,16616.09376,169346.4172,0,15.6
+123920,16641.20263,171039.8764,0,15.6
+123921,16663.48763,173170.6506,0,15.6
+123922,16712.24202,173751.4921,0,15.6
+123923,16772.82674,176429.7513,0,15.6
+123924,0,177793.0752,0,15.6
+123925,0,179397.5243,0,15.6
+123926,0,181061.4875,0,15.6
+123927,0,182870.0024,0,15.6
+123928,69213.75386,183936.0818,0,15.6
+123929,2242.308133,186313.7924,0,15.6
+123930,347241.1005,187999.4631,0,15.6
+123931,24653.31467,189011.0025,0,15.6
+123932,15938.56977,190893.6793,0,15.6
+123933,17226.10187,193059.7598,0,15.6
+123934,17237.25996,194058.7204,0,15.6
+123935,17330.95982,196007.1271,0,15.6
+123936,17289.00988,535833.7283,0,15.6
+123937,17391.5827,170032.6779,0,15.6
+123938,17396.86428,254971.2511,0,15.6
+123939,17439.70696,187368.5671,0,15.6
+123940,17483.44466,200526.427,0,15.6
+123941,17513.61082,211132.4966,0,15.6
+123942,17569.7529,207889.4387,0,15.6
+123943,17568.72505,210315.9424,0,15.6
+123944,17613.21103,31163.79179,0,15.6
+123945,17698.23327,31336.65761,0,15.6
+123946,17637.24704,31508.42282,0,15.6
+123947,17764.07436,603709.0785,844707.7194,15.6
+123948,17761.26363,96976.75383,0,15.6
+123949,17788.90891,181059.631,0,15.6
+123950,17829.28618,259308.7077,0,15.6
+123951,17891.6685,218838.2321,0,15.6
+123952,17869.22654,224647.7229,0,15.6
+123953,17983.88721,226599.5283,0,15.6
+123954,17954.32956,228058.5865,0,15.6
+123955,18021.83077,229329.3384,0,15.6
+123956,18001.26,231036.1095,0,15.6
+123957,18106.44967,232519.9759,0,15.6
+123958,0,234404.441,0,15.6
+123959,0,235448.8385,0,15.6
+123960,0,237242.7523,0,15.6
+123961,67703.03814,237867.3426,0,15.6
+123962,975.2630404,237883.6318,0,15.6
+123963,12249.83091,238937.9356,0,15.6
+123964,24453.82805,239222.481,0,15.6
+123965,17396.55423,240213.9728,0,15.6
+123966,18510.07769,240101.5245,0,15.6
+123967,18551.18997,240767.9879,0,15.6
+123968,18634.15316,207464.6862,0,15.6
+123969,18651.19082,207710.6178,0,15.6
+123970,18661.08749,305521.6556,0,15.6
+123971,18772.38107,231179.407,0,15.6
+123972,358061.2445,234451.6062,0,15.6
+123973,18836.36768,250155.5798,0,15.6
+123974,18844.45864,244026.9683,0,15.6
+123975,18881.51304,245217.3223,0,15.6
+123976,18905.09038,245757.8865,0,15.6
+123977,18986.96899,34636.83741,0,15.6
+123978,18984.8032,34753.64095,0,15.6
+123979,19030.38118,34797.69551,0,15.6
+123980,19089.85581,723106.7519,0,15.6
+123981,19106.68534,148218.3719,0,15.6
+123982,19153.03813,150347.9484,0,15.6
+123983,19211.21203,317877.3327,829824.0116,15.6
+123984,19252.22232,241225.3664,0,15.6
+123985,19231.10324,251044.6408,0,15.6
+123986,19339.39331,251902.6893,0,15.6
+123987,19349.74625,619480.5322,0,15.6
+123988,19359.18564,252768.3046,0,15.6
+123989,19453.30798,252952.6155,0,15.6
+123990,19436.63344,253456.5113,0,15.6
+123991,0,253519.3841,0,15.6
+123992,0,254542.5547,0,15.6
+123993,0,254926.4192,0,15.6
+123994,70946.33489,254622.4832,0,15.6
+123995,3613.723328,256547.6889,0,15.6
+123996,14039.35597,255577.9499,0,15.6
+123997,25123.62139,256874.7549,0,15.6
+123998,19081.02352,257339.9509,0,15.6
+123999,19862.13902,257186.5863,0,15.6
+124000,19895.11206,222563.254,0,15.6
+124001,19920.64078,222661.9612,0,15.6
+124002,19957.5666,324766.0324,0,15.6
+124003,20016.80024,246414.0922,0,15.6
+124004,20035.28274,253505.3935,0,15.6
+124005,20059.45482,264954.1071,0,15.6
+124006,20113.76604,260937.1003,0,15.6
+124007,20157.23377,261403.8189,0,15.6
+124008,20192.94804,261931.4943,0,15.6
+124009,20215.13944,262372.122,0,15.6
+124010,20250.76756,36330.16238,0,15.6
+124011,20299.59521,36330.83395,0,15.6
+124012,20306.48607,36411.1996,0,15.6
+124013,20376.47041,787313.034,0,15.6
+124014,359733.9044,175184.0106,0,15.6
+124015,20432.00411,137260.6571,0,15.6
+124016,20448.23307,349386.7071,0,15.6
+124017,425970.5288,254717.0478,0,15.6
+124018,20563.46905,266853.1361,0,15.6
+124019,20551.01901,267146.195,816267.7825,15.6
+124020,98512.16236,267705.0406,0,15.6
+124021,973181.9472,1344820.4,0,15.6
+124022,894286.1942,1169738.047,0,15.6
+124023,422080.4131,226701.1427,0,15.6
+124024,300491.9033,576520.7339,0,15.6
+124025,357095.6192,670132.2747,0,15.6
+124026,356317.1802,498718.1708,0,15.6
+124027,326055.6165,513690.6572,0,15.6
+124028,326515.0889,526562.9321,0,15.6
+124029,332752.9309,513717.398,0,15.6
+124030,326219.9474,514063.6249,0,15.6
+124031,326239.5503,512900.2955,0,15.6
+124032,325787.1525,435066.3461,0,15.6
+124033,327038.5902,435686.581,0,15.6
+124034,326031.4358,547421.1647,0,15.6
+124035,325522.8431,528578.7281,0,15.6
+124036,324444.1306,491119.6783,0,15.6
+124037,324965.36,514138.205,0,15.6
+124038,323581.0105,876319.3568,0,15.6
+124039,323626.684,502843.3381,0,15.6
+124040,323081.5659,502258.9626,0,15.6
+124041,322749.3355,501471.0665,0,15.6
+124042,322068.2701,500594.4931,0,15.6
+124043,322418.259,73286.10355,0,15.6
+124044,321465.0382,73194.15948,0,15.6
+124045,321484.7177,1155524.126,0,15.6
+124046,321096.7705,318174.4738,0,15.6
+124047,49268.43897,593305.4131,0,15.6
+124048,48945.54721,471300.0917,0,15.6
+124049,49251.97384,506866.4862,0,15.6
+124050,1165165.749,499541.5283,0,15.6
+124051,370892.4186,493463.2242,0,15.6
+124052,183336.6577,492991.8744,0,15.6
+124053,378950.1775,491569.9436,803960.1512,15.6
+124054,319866.5924,491291.2279,0,15.6
+124055,272859.3547,490549.271,0,15.6
+124056,270035.681,489820.3265,0,15.6
+124057,359161.4627,488540.5591,0,15.6
+124058,320810.4342,488973.2235,0,15.6
+124059,304821.4361,516476.7574,0,15.6
+124060,320101.5781,488690.9991,0,15.6
+124061,317834.7983,496848.6657,0,15.6
+124062,316119.9134,498174.596,0,15.6
+124063,316442.0188,495417.4195,0,15.6
+124064,315695.1712,424686.3588,0,15.6
+124065,316509.4083,423254.7526,0,15.6
+124066,315378.864,537199.2429,0,15.6
+124067,315772.8484,507478.8677,0,15.6
+124068,315687.5536,483209.2148,0,15.6
+124069,315404.5038,772473.6369,0,15.6
+124070,315552.1851,491837.8369,0,15.6
+124071,315348.6712,490320.9561,0,15.6
+124072,315227.208,492437.022,0,15.6
+124073,315012.9492,490217.1998,0,15.6
+124074,315144.5094,489683.7862,0,15.6
+124075,314946.4011,449451.6555,0,15.6
+124076,314788.1158,81345.71639,0,15.6
+124077,315048.458,1138463.708,0,15.6
+124078,314643.7669,304022.6898,0,15.6
+124079,314763.1714,582437.0887,0,15.6
+124080,47442.36076,449566.4434,0,17.8
+124081,2087516.092,2881874.969,0,17.8
+124082,1088351.817,2314153.536,0,17.8
+124083,918072.2919,877049.9227,0,17.8
+124084,666049.4118,826573.6616,0,17.8
+124085,738975.7992,957791.7067,0,17.8
+124086,1267363.962,1171072.648,0,17.8
+124087,635739.6996,971920.6418,792755.4941,17.8
+124088,815787.591,1009866.05,0,17.8
+124089,765706.9514,975869.0895,0,17.8
+124090,740355.7275,972408.2902,0,17.8
+124091,740787.8222,970138.7391,0,17.8
+124092,741271.0776,1051972.07,0,17.8
+124093,734309.4509,1262101.981,0,17.8
+124094,732496.7504,990283.6451,0,17.8
+124095,728078.4769,995741.8064,0,17.8
+124096,725296.4221,862366.4526,0,17.8
+124097,722357.5543,1054317.752,0,17.8
+124098,719284.8283,991822.654,0,17.8
+124099,717837.7557,977343.1355,0,17.8
+124100,715033.0446,987756.0145,0,17.8
+124101,712198.1474,983378.3315,0,17.8
+124102,710570.603,981986.3895,0,17.8
+124103,708653.0572,978926.1468,0,17.8
+124104,706339.7753,979065.8459,0,17.8
+124105,705549.3085,1245560.242,0,17.8
+124106,701371.0188,975613.4504,0,17.8
+124107,701325.997,158207.0006,0,17.8
+124108,699197.942,1274355.389,0,17.8
+124109,697121.5152,914631.6135,0,17.8
+124110,695434.138,958025.6433,0,17.8
+124111,104021.2498,981275.2485,0,17.8
+124112,103825.4011,1334445.249,0,17.8
+124113,915459.0331,968735.7914,0,17.8
+124114,680127.3921,965598.1855,0,17.8
+124115,672846.2059,965067.0839,0,17.8
+124116,794906.3849,964534.6368,0,17.8
+124117,641575.5784,1233222.25,0,17.8
+124118,594072.6018,960819.2254,0,17.8
+124119,585791.0845,963047.5868,0,17.8
+124120,750883.9786,960485.4608,0,17.8
+124121,673240.1962,959444.2092,782530.2448,17.8
+124122,1020381.654,927515.4455,0,17.8
+124123,683993.4871,925940.8645,0,17.8
+124124,681897.665,926309.8938,0,17.8
+124125,673673.9109,1007880.113,0,17.8
+124126,675629.4743,947412.2739,0,17.8
+124127,674219.1237,828120.6103,0,17.8
+124128,672737.3245,1018391.421,0,17.8
+124129,668804.8537,1225830.759,0,17.8
+124130,668971.1666,942675.8803,0,17.8
+124131,667678.0382,957533.9531,0,17.8
+124132,667049.0347,953108.6852,0,17.8
+124133,664536.3131,950489.7495,0,17.8
+124134,664463.9538,951408.9555,0,17.8
+124135,662660.0474,949588.8707,0,17.8
+124136,662523.2057,949563.0918,0,17.8
+124137,660148.5009,949712.7633,0,17.8
+124138,660657.5203,151349.6575,0,17.8
+124139,658231.9275,1244523.191,0,17.8
+124140,658545.0461,870494.3095,0,20
+124141,2301758.405,2877112.464,526.5704849,20
+124142,2079690.215,2096936.689,461.5535011,20
+124143,639800.8245,691022.683,367.0815922,20
+124144,698187.3999,1008691.114,10494.0127,20
+124145,999967.6837,1252542.194,8890.826664,20
+124146,914465.9091,1069097.841,7282.049656,20
+124147,865517.278,1086648.172,24738.76062,20
+124148,875050.7525,1085599.767,26232.39728,20
+124149,870981.5275,1080235.557,41318.38574,20
+124150,868394.6868,1080107.344,32589.1653,20
+124151,864853.7466,1075712.38,36767.01049,20
+124152,860625.1017,1072560.563,36960.56662,20
+124153,856243.2688,1342305.1,44081.7977,20
+124154,857515.0871,1067312.364,44848.33603,20
+124155,849976.6414,1068148.203,44364.68187,20
+124156,850727.0011,1063847.575,45757.69743,20
+124157,845919.0896,1062442.365,46264.2918,20
+124158,843922.0328,1061125.971,47090.04595,20
+124159,841739.874,1059024.772,47775.21611,20
+124160,838560.3183,1055105.165,48382.97686,20
+124161,836846.4389,1052315.475,48841.63785,20
+124162,834627.1717,1046433.475,49743.1822,20
+124163,831906.7759,1046996.969,49960.65234,20
+124164,829489.2195,1043127.083,51062.54574,20
+124165,828098.3684,1040004.039,51427.77242,20
+124166,825486.0841,1307802.821,51899.82067,20
+124167,824137.7895,1036768.022,52669.69778,20
+124168,820924.7383,1032904.602,53196.37425,20
+124169,819792.211,1032861.263,53660.33975,20
+124170,818662.1149,1029412.487,54412.03184,20
+124171,814237.2238,1027913.205,54915.4864,20
+124172,815706.2237,1026705.205,55254.2175,20
+124173,810284.8983,1023420.149,56012.52961,20
+124174,811825.9023,1023200.761,56623.41255,20
+124175,808036.889,1020335.881,56906.95684,20
+124176,808508.0162,1019243.821,57674.97458,20
+124177,803755.014,1016098.752,57984.58144,20
+124178,804101.3662,1285515.162,58697.3626,20
+124179,802723.4627,1012709.707,58921.07442,20
+124180,800134.8932,1013094.47,59572.44182,20
+124181,798209.9929,1009719.329,60159.81075,20
+124182,799007.416,1009771.239,60484.67691,20
+124183,794786.6881,1006989.325,61178.00118,20
+124184,794317.7239,1006642.653,61476.99142,20
+124185,794239.9953,1003562.75,62222.49341,20
+124186,790321.8063,1003037.169,62296.54764,20
+124187,791543.135,1002600.462,63160.10644,20
+124188,788233.3827,1000095.864,63324.00315,20
+124189,788006.3587,997788.0789,64016.21806,20
+124190,785324.8499,1267664.381,64225.62461,20
+124191,783939.4344,994792.678,65083.92419,20
+124192,785684.8196,995730.5519,64971.05997,20
+124193,779064.1725,993511.757,66112.5513,20
+124194,783640.4863,990657.6983,65838.11987,20
+124195,778348.3657,992699.5344,66969.31107,20
+124196,779271.8306,989182.4185,66665.82999,20
+124197,776851.6938,987883.511,67562.25653,20
+124198,776581.2653,987619.6874,67917.3796,20
+124199,774496.3549,986349.3791,68454.74264,20
+124200,775352.2708,984370.1131,68510.97257,21
+124201,1175605.729,1892985.039,60832.71585,21
+124202,1172145.139,1886784.776,60133.96538,21
+124203,1170096.249,1883840.408,60475.83454,21
+124204,1168004.178,1881549.14,60523.72013,21
+124205,1166101.732,1878781.52,60639.56755,21
+124206,1164435.713,1875808.506,61370.23665,21
+124207,1163327.306,1873467.514,61286.96205,21
+124208,1162576.888,1869970.913,61767.78468,21
+124209,1158977.335,1869898.321,61959.77064,21
+124210,1161327.762,1864855.776,62379.02306,21
+124211,1153906.305,1864900.339,62480.15909,21
+124212,1154207.011,1860489.728,62859.71513,21
+124213,1151344.831,1859882.712,63312.97812,21
+124214,1151802.172,1857098.121,63546.55749,21
+124215,1147930.406,1854600.501,63940.84111,21
+124216,1149112.256,1851910.768,64186.67717,21
+124217,1146128.235,1850586.357,64297.17426,21
+124218,1143487.674,1849096.244,64924.79032,21
+124219,1145504.793,1845763.164,65143.73695,21
+124220,1141613.415,1843618.051,65395.87745,21
+124221,1140570.591,1841964.567,65856.23303,21
+124222,1139625.79,1840311.548,66262.67957,21
+124223,1138653.502,1837688.915,66355.6822,21
+124224,1136112.082,1836184.768,66452.48976,21
+124225,1136911.857,1832742.654,67327.33828,21
+124226,1133996.261,1832785.444,67486.91802,21
+124227,1132772.211,1829525.927,67386.15595,21
+124228,1132703.441,1827343.608,68232.33321,21
+124229,1130297.191,1825987.565,68598.67973,21
+124230,1129906.385,1824850.564,69995.54405,21
+124231,1124900.531,1820078.159,69829.27445,21
+124232,1124042.644,1822458.514,70099.07535,21
+124233,1120229.149,1815411.422,71256.961,21
+124234,1118309.275,1812617.074,71226.18235,21
+124235,1115244.992,1808463.888,71815.17432,21
+124236,1114703.457,1806523.035,70879.27121,21
+124237,1113402.811,1804039.033,70984.77192,21
+124238,1109762.111,1801863.666,71462.48401,21
+124239,1107990.928,1799193.04,71566.9927,21
+124240,1106787.91,1798369.597,71673.17822,21
+124241,1104733.403,1794340.632,72177.53234,21
+124242,1103645.599,1793348.157,72046.65428,21
+124243,1100609.788,1790571.321,72937.02543,21
+124244,1099811.101,1788316.738,72355.20826,21
+124245,1095319.263,1786802.616,73207.5191,21
+124246,1093590.817,1784645.289,73041.50127,21
+124247,1092528.627,1783234.332,73422.65444,21
+124248,1089619.674,1779884.72,73861.47373,21
+124249,1088618.789,1779569.93,73637.634,21
+124250,1084803.773,1775172.153,74149.6955,21
+124251,1085088.891,1775097.861,74514.59855,21
+124252,1083201.59,1771698.041,73494.07433,21
+124253,1079778.802,1769144.295,73962.40586,21
+124254,1078244.714,1769117.997,73802.94698,21
+124255,1076449.285,1765127.007,74067.05155,21
+124256,1075153.68,1763213.462,74395.20458,21
+124257,1072848.612,1761715.894,74268.74804,21
+124258,1071381.935,1757960.772,74377.35879,21
+124259,1068357.517,1759092.785,74775.99482,21
+124260,1067483.124,1752704.347,74872.03833,21
+124261,835121.7425,1528381.247,12801.89555,21
+124262,814100.5625,1509268.956,10537.54836,21
+124263,808507.8361,1503700.953,9603.582891,21
+124264,802262.82,1499399.693,9106.29355,21
+124265,795771.5949,1494553.118,8604.947653,21
+124266,789422.7161,1490287.551,7975.197605,21
+124267,784723.9764,1486689.662,7618.042687,21
+124268,778238.4795,1482522.684,7288.71869,21
+124269,773475.9175,1478703.922,6764.79311,21
+124270,767955.7502,1473308.378,6469.660883,21
+124271,762829.3262,1471935.752,6074.125336,21
+124272,757454.0635,1465839.316,5594.735602,21
+124273,752381.7032,1463592.312,5393.974848,21
+124274,747250.9778,1458794.293,4900.876797,21
+124275,741804.8338,1456673.257,4823.792682,21
+124276,736706.5996,1419406.102,4505.704258,21
+124277,732948.0061,1412914.154,4282.098162,21
+124278,725733.1197,1404422.666,4266.693734,21
+124279,719449.8206,1398795.677,3894.453255,21
+124280,716468.2554,1392753.61,3731.978308,21
+124281,709193.1824,1387350.117,3550.665862,21
+124282,706492.768,1379777.496,3369.842359,21
+124283,700694.7483,1375961.368,3187.007384,21
+124284,695732.5947,1369507.778,3170.977569,21
+124285,691378.0815,1363387.23,2815.819325,21
+124286,687547.4122,1360145.138,2609.892135,21
+124287,681275.3545,1353145.515,2626.254885,21
+124288,677869.4126,1347882.981,2397.94917,21
+124289,672617.5917,1344258.724,2366.639662,21
+124290,668523.7705,1337441.969,2366.082448,21
+124291,663988.075,1334048.06,2302.596149,21
+124292,659589.6555,1328704.993,2302.02135,21
+124293,655685.6414,1324934.581,2237.670052,21
+124294,650716.841,1319037.517,2205.450258,21
+124295,647938.925,1315048.143,2173.174767,21
+124296,641170.8818,1310395.958,2156.687963,21
+124297,638975.2344,1307074.704,2108.455029,21
+124298,633930.7499,1301711.4,2059.358537,21
+124299,629797.2807,1297375.905,2042.737612,21
+124300,625345.6643,1294066.293,2010.942743,21
+124301,621628.6189,1288785.222,1960.75277,21
+124302,617904.1637,1284626.958,1928.85608,21
+124303,613506.9392,1281568.183,1912.09284,21
+124304,608824.0836,1276245.183,1846.353811,21
+124305,605042.3995,1272982.794,1846.403992,21
+124306,600425.9572,1267714.153,1779.508079,21
+124307,597040.5089,1264326.064,1780.463109,21
+124308,593326.6198,1260439.876,1730.360907,21
+124309,590136.0911,1255723.231,1680.076799,21
+124310,586690.5559,1251907.953,1663.951194,21
+124311,583886.7434,1247544.141,1613.450917,21
+124312,579939.9551,1243528.789,1596.253762,21
+124313,576348.2316,1239942.834,1563.82284,21
+124314,572685.8557,1235092.061,1495.61823,21
+124315,569821.5955,1231560.057,1513.017295,21
+124316,565882.4884,1227710.942,1428.181404,21
+124317,562295.3228,1223239.818,1428.21154,21
+124318,559329.1393,1220435.132,1394.376103,21
+124319,555996.8861,1214947.537,1326.439022,21
+124320,551884.2501,1210819.023,1342.882356,21
+124321,549268.5898,1206776.721,1275.910658,21
+124322,546033.8343,1200913.765,1256.933554,21
+124323,543445.2002,1195803.733,1223.973005,21
+124324,540450.774,1192133.287,1180.69946,21
+124325,537217.7619,1187654.357,1171.770881,21
+124326,534729.4248,1184073.221,1119.268202,21
+124327,531454.3367,1178980.539,1102.686085,21
+124328,528956.5811,1175312.112,1067.995239,21
+124329,526098.8676,1171489.409,1033.200665,21
+124330,522507.279,1167440.61,1005.858281,21
+124331,519675.3894,1162571.574,963.2840313,21
+124332,516899.4749,1159192.4,944.918632,21
+124333,513774.9926,1154070.454,909.6989761,21
+124334,511005.7125,1150464.096,883.6421443,21
+124335,507582.1095,1146442.815,855.7015125,21
+124336,505147.0431,1140888.313,812.6321145,21
+124337,502450.4318,1138984.56,776.904331,21
+124338,498981.1336,1132779.749,774.8689157,21
+124339,497184.0252,1129037.241,714.5059799,21
+124340,494408.4564,1126062.131,685.6886861,21
+124341,492101.7227,1120273.625,675.9974901,21
+124342,489678.232,1116789.577,632.1642671,21
+124343,487436.6188,1111750.06,602.5351026,21
+124344,484699.2654,1107756.209,568.2877341,21
+124345,482396.8702,1103627.545,544.2684158,21
+124346,480331.0494,1099601.282,503.3452468,21
+124347,477639.5113,1094866.979,509.9386759,21
+124348,474509.8486,1090223.425,475.4288949,21
+124349,472534.29,1086462.452,475.4322538,21
+124350,469755.7593,1082332.026,458.1097988,21
+124351,467526.9819,1077654.126,440.7393785,21
+124352,464749.7938,1072684.64,423.319543,21
+124353,462205.6279,1069636.578,405.8487211,21
+124354,459783.4011,1064354.863,405.8511721,21
+124355,458130.4114,1060720.695,370.7472611,21
+124356,454362.3842,1055192.448,353.1126516,21
+124357,452538.2747,1051654.919,353.1145106,21
+124358,449502.3544,1046556.72,335.4210173,21
+124359,447078.388,1043156.183,317.6662857,21
+124360,446345.0178,1039442.588,299.8475955,21
+124361,443410.8958,1035431.769,281.9619065,21
+124362,441459.6871,1031567.252,264.0058042,21
+124363,438340.8892,1027744.099,264.006846,21
+124364,436338.6186,1023910.61,227.8663875,21
+124365,433733.4942,1019849.131,227.8671642,21
+124366,431010.1442,1016191.911,200.5441377,21
+124367,428805.7281,1011819.751,191.3914263,21
+124368,426137.9436,1008428.748,173.0118377,21
+124369,423931.2692,1004344.449,154.5268779,21
+124370,421424.6147,1000155.842,154.5272359,21
+124371,418854.2534,996165.9613,117.1961487,21
+124372,416965.4268,992219.4081,117.1963548,21
+124373,414040.211,988418.538,98.31994168,21
+124374,411967.5789,983661.1758,69.6761435,21
+124375,409427.5738,980526.8881,69.6762164,21
+124376,406679.0397,975555.1437,40.51054087,21
+124377,404568.5256,972020.8502,40.51056566,21
+124378,402213.9239,967508.7196,20.63003192,21
+124379,399749.5943,962822.5974,0,21
+124380,397204.7706,958015.6826,0,21
+124381,393382.6447,955609.2042,0,21
+124382,391376.002,953951.6265,0,21
+124383,388722.0263,952220.2335,0,21
+124384,386549.2273,950995.0433,0,21
+124385,383849.3838,948435.6799,0,21
+124386,381638.8531,947751.0081,0,21
+124387,379916.7412,945395.6154,0,21
+124388,377182.9638,943820.8774,0,21
+124389,375058.932,942397.7471,0,21
+124390,373130.6832,940133.0349,0,21
+124391,370779.1076,938764.5827,0,21
+124392,368243.0107,936516.1314,0,21
+124393,366523.6034,935097.8572,0,21
+124394,363838.5084,933192.5473,0,21
+124395,361688.7162,931280.7542,0,21
+124396,357878.1866,929789.2847,0,21
+124397,355670.8193,927758.691,0,21
+124398,353745.5954,926311.2821,0,21
+124399,351270.7412,924189.6971,0,21
+124400,348801.5709,922737.6974,0,21
+124401,346537.2292,920831.3662,0,21
+124402,344645.9896,919135.8595,0,21
+124403,341937.0209,917137.7336,0,21
+124404,340095.8826,915394.7658,0,21
+124405,337804.0095,913762.372,0,21
+124406,335722.0676,912124.7866,0,21
+124407,333200.8564,909986.5933,0,21
+124408,331173.6333,908261.6967,0,21
+124409,328671.4409,908152.912,0,21
+124410,326441.4334,906052.2209,0,21
+124411,324198.5203,904410.7403,0,21
+124412,322032.2111,902966.3385,0,21
+124413,319608.9404,901353.4243,0,21
+124414,317878.1005,899521.2292,0,21
+124415,314793.4092,898232.8748,0,21
+124416,312471.8851,895200.5183,0,21
+124417,310654.0837,893763.3406,0,21
+124418,308086.5866,892159.0585,0,21
+124419,307072.5587,891173.9603,0,21
+124420,305342.3082,889649.2844,0,21
+124421,304382.716,888024.2945,0,21
+124422,302830.1228,886503.5705,0,21
+124423,301290.0362,885378.4508,0,21
+124424,299663.9695,883763.4967,0,21
+124425,298292.6756,881649.4789,0,21
+124426,296742.2154,880818.3851,0,21
+124427,295482.5477,879654.3675,0,21
+124428,294078.314,877487.0862,0,21
+124429,292108.4256,876648.6953,0,21
+124430,291614.7885,874896.6022,0,21
+124431,289688.4342,873361.9253,0,21
+124432,287935.4163,872613.1261,0,21
+124433,286738.8951,870400.0633,0,21
+124434,285180.4345,869985.2291,0,21
+124435,283774.2504,868009.1493,0,21
+124436,282242.1143,866833.7087,0,21
+124437,281043.6705,865594.1813,0,21
+124438,279930.8218,864139.4199,0,21
+124439,278030.4719,863125.6406,0,21
+124440,277080.839,862305.4501,0,21
+124441,276109.6025,861126.6382,0,21
+124442,274286.5515,858402.4191,0,21
+124443,272952.6711,856081.4761,0,21
+124444,270959.2663,853540.7301,0,21
+124445,269331.329,850749.6233,0,21
+124446,267347.6357,848447.1878,0,21
+124447,266253.5126,845734.526,0,21
+124448,264280.1761,843233.0068,0,21
+124449,262273.5631,841030.4091,0,21
+124450,260505.1857,837710.4646,0,21
+124451,259161.6194,835663.5815,0,21
+124452,257077.3497,833255.0978,0,21
+124453,255504.7042,830180.4512,0,21
+124454,253960.193,828116.6172,0,21
+124455,251888.6082,825252.7442,0,21
+124456,250816.0635,822549.0649,0,21
+124457,248752.2968,820412.5035,0,21
+124458,246929.0818,817561.955,0,21
+124459,245409.5065,814926.1124,0,21
+124460,243376.116,812606.7929,0,21
+124461,242086.629,809858.9184,0,21
+124462,240138.8572,807600.7366,0,21
+124463,238682.2916,805155.188,0,21
+124464,236681.52,802488.6837,0,21
+124465,235518.8545,801272.2497,0,21
+124466,233453.3789,799041.567,0,21
+124467,232127.9245,796140.7918,0,21
+124468,230031.0415,793967.884,0,21
+124469,228831.637,791643.449,0,21
+124470,226988.0972,788518.1666,0,21
+124471,225563.9525,787046.6651,0,21
+124472,223714.4685,783725.4365,0,21
+124473,222753.7255,782032.5531,0,21
+124474,220841.5301,779129.5113,0,21
+124475,218986.0473,776746.6376,0,21
+124476,217774.5338,774606.5328,0,21
+124477,215954.9811,771983.2923,0,21
+124478,214516.8333,769602.9268,0,21
+124479,212939.4005,767150.5758,0,21
+124480,211332.2224,764566.4277,0,21
+124481,209794.9134,762597.0776,0,21
+124482,208414.4806,759744.8416,0,21
+124483,206291.5016,757423.7307,0,21
+124484,204237.4115,754988.6939,0,21
+124485,203151.4711,752498.8955,0,21
+124486,200990.9647,750027.6339,0,21
+124487,199784.5036,747738.8826,0,21
+124488,197990.6607,745203.078,0,21
+124489,196383.3806,742857.2652,0,21
+124490,194730.1466,740243.7756,0,21
+124491,193659.2743,737775.6688,0,21
+124492,191760.3942,735323.5886,0,21
+124493,189876.7094,732904.1265,0,21
+124494,188485.0889,730260.9433,0,21
+124495,187169.1248,728032.9996,0,21
+124496,185613.8526,725155.7074,0,21
+124497,183914.0199,722823.7538,0,21
+124498,182583.832,720344.7603,0,21
+124499,180770.9847,717354.0098,0,21
+124500,179931.0416,714413.2018,0,21
+124501,190461.1344,729280.1712,0,21
+124502,190485.5082,728836.8592,0,21
+124503,195256.8503,727947.756,0,21
+124504,200139.1274,727562.506,0,21
+124505,196671.1617,726299.164,0,21
+124506,198027.4594,726516.9221,0,21
+124507,198848.3417,725094.7824,0,21
+124508,198902.2354,724861.14,0,21
+124509,199349.5725,724246.9957,0,21
+124510,199486.621,723672.1724,0,21
+124511,200329.7636,722926.2522,0,21
+124512,199967.4054,722335.4975,0,21
+124513,200705.2201,722051.4546,0,21
+124514,200898.7432,721001.0649,0,21
+124515,200901.0295,720596.5157,0,21
+124516,201577.0286,719977.4012,0,21
+124517,201361.3252,719120.4543,0,21
+124518,200822.6655,718978.1106,0,21
+124519,201032.807,717645.5508,0,21
+124520,200999.4201,717646.8741,0,21
+124521,201276.0736,716735.2701,0,21
+124522,201237.2076,715956.9693,0,21
+124523,201916.2892,715602.0372,0,21
+124524,201183.0521,714860.6038,0,21
+124525,202089.7437,713888.1321,0,21
+124526,201633.7885,713808.2644,0,21
+124527,201910.2577,712560.3716,0,21
+124528,202080.1758,712226.3885,0,21
+124529,201785.9054,711686.8112,0,21
+124530,202465.9831,710760.0546,0,21
+124531,201900.2753,710744.0312,0,21
+124532,202096.9966,709903.0525,0,21
+124533,202309.7321,709347.3946,0,21
+124534,202021.294,708417.0879,0,21
+124535,202201.7825,707400.3222,0,21
+124536,201860.6338,707349.4864,0,21
+124537,202382.9315,706248.9116,0,21
+124538,201711.0335,707175.393,0,21
+124539,202243.9362,709645.2002,0,21
+124540,201711.5872,707583.4656,0,21
+124541,201939.6529,708427.4331,0,21
+124542,201788.1507,707868.6932,0,21
+124543,201629.1195,708220.0399,0,21
+124544,201849.5363,707522.4906,0,21
+124545,201384.9038,707834.5346,0,21
+124546,201794.7343,707553.6099,0,21
+124547,198024.2852,707284.529,0,21
+124548,196360.5786,706958.4687,0,21
+124549,196884.33,706968.711,0,21
+124550,195533.4808,706805.2574,0,21
+124551,195241.5436,706282.3009,0,21
+124552,194086.6795,706165.2662,0,21
+124553,193503.7882,706078.2811,0,21
+124554,192595.1862,705313.1359,0,21
+124555,192152.7289,705654.9663,0,21
+124556,191435.4291,704688.8115,0,21
+124557,190560.7014,704951.0525,0,21
+124558,190066.768,704346.267,0,21
+124559,188969.6241,704210.2092,0,21
+124560,189030.5732,703451.8949,0,21
+124561,164417.5599,679783.8716,0,21
+124562,162991.6306,678154.264,0,21
+124563,160302.3988,671761.6652,0,21
+124564,158171.4768,667459.9349,0,21
+124565,156971.6156,667976.7453,0,21
+124566,154900.0229,665499.1079,0,21
+124567,153296.1336,663404.372,0,21
+124568,151371.8663,661458.2369,0,21
+124569,149878.6317,659660.713,0,21
+124570,147789.5142,657807.5027,0,21
+124571,146433.1646,656002.6744,0,21
+124572,144696.2009,653994.0389,0,21
+124573,142817.81,652388.6695,0,21
+124574,141244.4354,650526.2808,0,21
+124575,139852.8584,648687.0832,0,21
+124576,138177.2482,647021.841,0,21
+124577,136758.9455,644661.9969,0,21
+124578,135039.3992,642943.9788,0,21
+124579,133575.8259,640794.8776,0,21
+124580,132000.2949,639329.287,0,21
+124581,130434.736,637299.9813,0,21
+124582,128856.561,635220.7227,0,21
+124583,127307.343,633915.1894,0,21
+124584,125470.3102,631644.8479,0,21
+124585,123908.4288,629862.2749,0,21
+124586,122164.3299,628298.247,0,21
+124587,120458.0978,626176.4359,0,21
+124588,118725.7298,624653.2289,0,21
+124589,117038.0666,622653.1319,0,21
+124590,115403.9673,620748.8377,0,21
+124591,113654.0986,619400.8944,0,21
+124592,112018.0257,617373.7921,0,21
+124593,110482.0292,615936.9147,0,21
+124594,108952.5003,613783.6122,0,21
+124595,107557.7913,612478.4925,0,21
+124596,105418.84,610834.3295,0,21
+124597,104440.8351,609064.5565,0,21
+124598,102702.4527,607119.4456,0,21
+124599,101002.139,606327.6442,0,21
+124600,99720.60139,603765.5538,0,21
+124601,98044.21677,602651.6147,0,21
+124602,96495.01932,601015.8914,0,21
+124603,95210.74095,599125.9914,0,21
+124604,93433.86315,597770.2162,0,21
+124605,92139.91485,596442.3229,0,21
+124606,90494.09161,594444.7337,0,21
+124607,89267.58478,593105.4721,0,21
+124608,87717.71692,591447.971,0,21
+124609,86288.15821,590091.2942,0,21
+124610,84863.17494,588515.3903,0,21
+124611,83408.66292,586801.8217,0,21
+124612,82140.90511,585679.2756,0,21
+124613,80789.01447,583860.8395,0,21
+124614,79350.91063,582394.221,0,21
+124615,78030.74656,581089.881,0,21
+124616,76958.0246,579507.0268,0,21
+124617,75583.16918,577762.9493,0,21
+124618,74509.91646,576680.1769,0,21
+124619,73364.28923,574891.3765,0,21
+124620,72278.37163,573423.6277,0,21
+124621,76366.22149,579403.1481,0,21
+124622,75680.29807,579298.4842,0,21
+124623,75251.07886,579359.2604,0,21
+124624,73984.16232,579010.061,0,21
+124625,73556.41122,578852.4665,0,21
+124626,73294.01917,578635.7514,0,21
+124627,73455.5459,578499.3016,0,21
+124628,73323.7773,578555.2667,0,21
+124629,73274.65801,577916.3299,0,21
+124630,73295.99943,578030.9129,0,21
+124631,73271.42236,577884.5457,0,21
+124632,73274.85175,577070.8345,0,21
+124633,73109.07964,577779.0001,0,21
+124634,73407.96228,577060.113,0,21
+124635,72922.59509,576748.2883,0,21
+124636,73407.07661,577176.6918,0,21
+124637,72750.69634,576330.6454,0,21
+124638,72874.4822,576443.8735,0,21
+124639,72392.29384,576469.6759,0,21
+124640,72591.56552,575793.1499,0,21
+124641,72232.19905,576126.1892,0,21
+124642,72295.34384,575860.5881,0,21
+124643,72011.56984,575727.222,0,21
+124644,71821.23892,575797.9409,0,21
+124645,71802.77251,575251.7267,0,21
+124646,71446.6128,575534.2994,0,21
+124647,71578.42441,575402.4289,0,21
+124648,71078.11296,575105.7647,0,21
+124649,70717.00577,576727.1935,0,21
+124650,70789.98043,576525.4054,0,21
+124651,70328.30005,576560.9939,0,21
+124652,70155.43037,576609.7564,0,21
+124653,69509.51918,576336.8438,0,21
+124654,69599.59538,576358.0611,0,21
+124655,69018.69499,576000.7091,0,21
+124656,68689.04032,575276.9689,0,21
+124657,68127.15831,575258.9151,0,21
+124658,68099.85621,574837.0442,0,21
+124659,67362.39991,575216.6453,0,21
+124660,66977.33214,574846.856,0,21
+124661,66452.81813,574625.2551,0,21
+124662,66161.24377,574854.5331,0,21
+124663,65330.97719,574278.3405,0,21
+124664,65203.81194,574786.8612,0,21
+124665,64550.43985,574112.0023,0,21
+124666,63967.98267,574564.4094,0,21
+124667,63464.27165,573889.7195,0,21
+124668,62818.1915,574301.9875,0,21
+124669,62129.61506,573913.3273,0,21
+124670,61451.26158,573940.3772,0,21
+124671,61048.63721,573554.1315,0,21
+124672,59895.70924,573778.2194,0,21
+124673,59587.34183,573731.2061,0,21
+124674,58432.55774,573275.6392,0,21
+124675,58178.84123,573387.8091,0,21
+124676,57184.80626,573176.1896,0,21
+124677,56406.72044,573082.9787,0,21
+124678,55615.08975,573031.7592,0,21
+124679,54859.78312,572805.8729,0,21
+124680,54001.70983,573505.1402,0,21
+124681,47770.18807,566042.9648,0,21
+124682,46655.38474,565044.8397,0,21
+124683,46032.75611,563275.6044,0,21
+124684,45091.88627,561961.7759,0,21
+124685,44137.94899,560601.1386,0,21
+124686,43253.28518,559127.4612,0,21
+124687,42337.6756,557578.6588,0,21
+124688,41308.55836,556101.6924,0,21
+124689,40759.35362,554704.8346,0,21
+124690,39454.23054,553397.3128,0,21
+124691,38619.01361,551754.694,0,21
+124692,37634.88646,550241.221,0,21
+124693,36839.16921,548784.0254,0,21
+124694,35737.08956,547043.5408,0,21
+124695,34997.20262,545971.7699,0,21
+124696,34379.30541,544042.2623,0,21
+124697,34741.87935,542472.5394,0,21
+124698,34218.48499,541371.8214,0,21
+124699,34568.0544,539349.8453,0,21
+124700,34310.56656,536760.9466,0,21
+124701,34297.608,534882.5854,0,21
+124702,34222.02128,533288.7379,0,21
+124703,34375.93781,531468.8891,0,21
+124704,34050.0528,529969.4421,0,21
+124705,34105.22074,528177.0482,0,21
+124706,34224.4736,526301.9118,0,21
+124707,33843.95753,524789.251,0,21
+124708,34121.84523,523063.6558,0,21
+124709,33776.3977,521157.3525,0,21
+124710,34104.59898,519625.2675,0,21
+124711,33683.97502,518071.2803,0,21
+124712,33769.02155,516856.0153,0,21
+124713,33573.88909,515282.2789,0,21
+124714,33487.05601,514297.3324,0,21
+124715,33508.28435,512680.412,0,21
+124716,33310.49966,511806.427,0,21
+124717,33125.5807,510178.1365,0,21
+124718,33149.07427,508803.1598,0,21
+124719,32948.07957,508104.8724,0,21
+124720,32940.02552,506402.5088,0,21
+124721,32597.9396,505228.4078,0,21
+124722,33302.18382,504122.5213,0,21
+124723,33145.81784,502784.6394,0,21
+124724,33150.74025,501440.0244,0,21
+124725,32762.03975,500546.9053,0,21
+124726,33064.98702,499031.363,0,21
+124727,32764.4854,497924.5032,0,21
+124728,32695.64696,496809.5383,0,21
+124729,32773.19735,495478.8593,0,21
+124730,32422.60308,494597.0435,0,21
+124731,32335.68674,493116.7726,0,21
+124732,32401.24236,492131.7573,0,21
+124733,32250.50526,490959.4417,0,21
+124734,32065.75367,489685.2849,0,21
+124735,32044.30197,488827.9015,0,21
+124736,31863.92041,487358.2924,0,21
+124737,31720.02719,486369.591,0,21
+124738,31842.32996,485398.6063,0,21
+124739,31527.92963,484133.9299,0,21
+124740,31321.00242,482871.1862,0,21
+124741,31517.10902,482623.629,0,21
+124742,31337.52147,481670.3511,0,21
+124743,31234.08186,480879.0744,0,21
+124744,31324.40761,480609.4175,0,21
+124745,31064.83289,480913.7693,0,21
+124746,31157.39042,480487.0299,0,21
+124747,31067.12375,480862.0432,0,21
+124748,30778.35961,480653.8582,0,21
+124749,31172.37895,481017.1194,0,21
+124750,30769.52519,481036.2626,0,21
+124751,30804.32097,481255.2369,0,21
+124752,30784.49277,481128.3744,0,21
+124753,30635.72925,481677.5745,0,21
+124754,30495.28657,481348.8103,0,21
+124755,30809.45072,481805.5677,0,21
+124756,30244.06475,482028.9625,0,21
+124757,30453.46179,481813.9881,0,21
+124758,30420.27302,482517.6431,0,21
+124759,30268.58756,482301.5591,0,21
+124760,30524.69956,482416.1017,0,21
+124761,30835.47231,482961.6643,0,21
+124762,30535.65903,482578.5122,0,21
+124763,31060.66749,483375.9421,0,21
+124764,32213.61396,483057.7008,0,21
+124765,33325.35206,483354.1716,0,21
+124766,34599.42911,483663.3709,0,21
+124767,35907.34046,483684.511,0,21
+124768,36877.37519,483835.8109,0,21
+124769,38297.34288,484253.9485,0,21
+124770,39345.81358,484396.3105,0,21
+124771,40636.43898,484682.8647,0,21
+124772,41869.42422,484749.8664,0,21
+124773,43074.41676,485600.9459,0,21
+124774,44299.3704,485548.8293,0,21
+124775,45613.49729,486237.2073,0,21
+124776,47035.2813,486323.9151,0,21
+124777,48395.31641,486731.5884,0,21
+124778,49693.75629,487178.2929,0,21
+124779,51385.42644,487775.8942,0,21
+124780,52563.87219,488084.2314,0,21
+124781,54142.12733,488497.019,0,21
+124782,55578.46961,488667.6117,0,21
+124783,57034.18583,489592.5922,0,21
+124784,58260.62873,489636.259,0,21
+124785,60171.02024,490426.1622,0,21
+124786,61147.44625,490610.7955,0,21
+124787,63119.50923,491439.5209,0,21
+124788,64225.31004,491639.9034,0,21
+124789,65913.60548,492447.9107,0,21
+124790,67126.2395,492521.8295,0,21
+124791,68992.96875,493348.5577,0,21
+124792,70105.95453,493801.2925,0,21
+124793,71914.96392,494637.0369,0,21
+124794,73089.27343,494566.922,0,21
+124795,74838.169,495761.8881,0,21
+124796,76344.69796,495946.3334,0,21
+124797,76934.87563,496686.1347,0,21
+124798,78049.88582,497122.7383,0,21
+124799,79782.28482,497987.3332,0,21
+124800,81271.27023,498280.7396,0,21
+124801,110909.9316,541958.505,0,21
+124802,112923.6124,545710.9865,0,21
+124803,112949.7414,547568.1814,0,21
+124804,113758.6773,549812.6979,0,21
+124805,113879.8672,551467.8403,0,21
+124806,115062.5714,553225.7451,0,21
+124807,115641.1729,556526.8282,0,21
+124808,115776.6712,557787.515,0,21
+124809,116653.0708,559825.7396,0,21
+124810,117116.9191,560901.9436,0,21
+124811,117597.1327,561718.4536,0,21
+124812,118149.1302,563133.7613,0,21
+124813,118863.5349,563463.0224,0,21
+124814,118935.0071,564646.9936,0,21
+124815,120006.8828,565867.5577,0,21
+124816,119802.52,566161.5646,0,21
+124817,120999.8232,567326.0079,0,21
+124818,120783.7656,568328.4262,0,21
+124819,121794.1444,568970.1059,0,21
+124820,121730.8404,570569.1963,0,21
+124821,122724.684,571340.8446,0,21
+124822,122604.0098,572337.0813,0,21
+124823,123317.7575,572891.6102,0,21
+124824,123749.9071,573630.456,0,21
+124825,123888.6485,574500.4173,0,21
+124826,124602.3192,575033.12,0,21
+124827,124708.722,576055.3288,0,21
+124828,125373.3318,577728.5444,0,21
+124829,125417.0321,578722.9526,0,21
+124830,126012.6032,579132.5973,0,21
+124831,126287.9064,580015.7879,0,21
+124832,126563.3668,580751.5842,0,21
+124833,126901.804,581770.1088,0,21
+124834,127150.0151,582104.6642,0,21
+124835,127384.3297,583163.9039,0,21
+124836,127885.3413,583832.0439,0,21
+124837,127991.4295,584299.5395,0,21
+124838,128314.6752,585373.6478,0,21
+124839,128579.1533,585830.8406,0,21
+124840,128911.1493,586677.9835,0,21
+124841,129130.7032,587264.4585,0,21
+124842,129358.9925,588263.9979,0,21
+124843,129601.475,588466.9991,0,21
+124844,130016.0668,589664.9904,0,21
+124845,129921.1103,589877.9321,0,21
+124846,130621.7759,590905.8419,0,21
+124847,130664.1773,591288.2653,0,21
+124848,130663.8704,592272.8852,0,21
+124849,131388.4328,592693.7998,0,21
+124850,131227.8665,593544.9309,0,21
+124851,131791.7774,593907.1707,0,21
+124852,131759.5373,594748.582,0,21
+124853,132217.0085,595418.2527,0,21
+124854,132440.1201,595877.3698,0,21
+124855,132366.3611,596623.7974,0,21
+124856,133102.7429,597394.5743,0,21
+124857,132945.2067,597963.5104,0,21
+124858,133214.5277,598452.5652,0,21
+124859,133623.4442,599008.124,0,21
+124860,133773.3031,598910.1677,0,21
+124861,143066.0657,614447.6359,0,21
+124862,144237.5856,617006.4194,0,21
+124863,144978.5716,618699.2901,0,21
+124864,145700.9807,621196.7822,0,21
+124865,146591.35,622942.26,0,21
+124866,147301.7161,624676.5726,0,21
+124867,147812.1871,627000.942,0,21
+124868,149080.4942,657975.1765,0,21
+124869,149465.984,653030.6636,0,21
+124870,150452.0443,655676.0672,0,21
+124871,151046.1646,660405.1629,0,21
+124872,152007.0265,662447.1785,0,21
+124873,152629.3558,666568.3548,0,21
+124874,166512.8964,669418.327,0,21
+124875,170759.5833,671426.0497,0,21
+124876,168407.4057,674242.9344,0,21
+124877,172310.186,677382.5918,0,21
+124878,173456.0858,680037.9502,0,21
+124879,175838.8398,683186.9312,0,21
+124880,177448.9381,684804.6859,0,21
+124881,177842.0274,689018.4204,0,21
+124882,181333.1134,690666.7727,0,21
+124883,181214.9195,693459.8915,0,21
+124884,183813.0943,695453.1991,0,21
+124885,184592.988,699536.0411,0,21
+124886,186538.2801,700629.6847,0,21
+124887,188531.5625,704364.8678,0,21
+124888,189028.3876,706638.1634,0,21
+124889,190947.2169,708403.4382,0,21
+124890,191577.7462,711496.6525,0,21
+124891,194436.777,713510.6338,0,21
+124892,194736.6012,715262.2587,0,21
+124893,196209.6336,719844.6387,0,21
+124894,198077.1257,721559.8927,0,21
+124895,200143.7652,724729.9848,0,21
+124896,199488.5218,726037.469,0,21
+124897,202852.2904,730382.6938,0,21
+124898,203367.9449,731567.5085,0,21
+124899,205368.8477,734550.0454,0,21
+124900,205747.9118,737385.6246,0,21
+124901,207864.8508,747984.8658,0,21
+124902,208580.5626,750902.7833,0,21
+124903,210985.6112,753529.7536,0,21
+124904,211175.676,759308.5419,0,21
+124905,212163.4914,761950.6176,0,21
+124906,215068.1606,766458.8191,0,21
+124907,214967.5405,769310.7855,0,21
+124908,217219.3473,774399.3886,0,21
+124909,217557.29,776983.3616,0,21
+124910,219362.8603,782395.8477,0,21
+124911,220800.0931,785035.0786,0,21
+124912,221968.5704,794363.328,0,21
+124913,222691.1072,797107.7396,0,21
+124914,224152.2776,801769.247,0,21
+124915,225747.8624,807612.0687,0,21
+124916,227022.7267,810928.9076,0,21
+124917,228298.0819,814986.2633,0,21
+124918,229654.5963,820880.8512,0,21
+124919,230557.5882,824098.8895,0,21
+124920,231435.4488,828280.0377,0,21
+124921,234177.2535,833942.732,0,21
+124922,234924.3364,838148.6388,0,21
+124923,237591.641,843701.5488,0,21
+124924,239126.8487,846209.7243,0,21
+124925,240122.263,852174.7294,0,21
+124926,242692.1176,855374.7353,0,21
+124927,243868.3651,860021.2309,0,21
+124928,245168.593,864342.8477,0,21
+124929,247064.07,869091.3588,0,21
+124930,248675.1728,871849.4526,0,21
+124931,250766.6704,877572.3758,0,21
+124932,251783.0277,881210.656,0,21
+124933,253231.7287,885311.4583,0,21
+124934,255072.9751,889265.1425,0,21
+124935,256526.909,894090.0313,0,21
+124936,258768.802,897506.9388,0,21
+124937,262865.009,902115.0614,0,21
+124938,265031.3012,905660.701,0,21
+124939,268163.288,910663.6107,0,21
+124940,269473.859,914346.8782,0,21
+124941,271261.3495,917861.3365,0,21
+124942,275584.303,922214.5474,0,21
+124943,274622.5149,926614.4736,0,21
+124944,278945.2325,930197.5072,0,21
+124945,280410.6827,935185.6109,0,21
+124946,282052.7323,937425.7021,0,21
+124947,285200.6505,942892.8354,0,21
+124948,286701.0586,947162.629,0,21
+124949,288318.2099,949900.149,0,21
+124950,291918.9474,954598.9816,0,21
+124951,294720.6739,958631.0212,0,21
+124952,296790.7342,961703.9933,0,21
+124953,299667.7644,965391.6223,0,21
+124954,301063.388,968459.1954,0,21
+124955,311339.9627,972780.624,0,21
+124956,309385.1153,974919.9903,0,21
+124957,314437.365,979536.8598,0,21
+124958,315767.2841,983608.4876,0,21
+124959,319691.0839,985168.0806,0,21
+124960,321184.1654,989389.5343,0,21
+124961,325114.8743,992500.6406,0,21
+124962,325742.9192,995639.4962,0,21
+124963,330479.055,999943.5579,0,21
+124964,331375.6931,1001585.875,0,21
+124965,334403.5584,1009220.304,0,21
+124966,336634.6069,1012239.729,0,21
+124967,339550.0251,1014498.793,0,21
+124968,341501.6396,1019673.169,0,21
+124969,344074.3403,1021720.005,0,21
+124970,345233.2056,1026814.095,0,21
+124971,348904.4719,1028633.813,0,21
+124972,351240.6156,1032536.17,0,21
+124973,351781.5282,1035578.176,0,21
+124974,356154.9709,1038137.807,0,21
+124975,356094.3039,1041835.051,0,21
+124976,360208.7121,1045198.422,0,21
+124977,360915.1768,1048207.363,0,21
+124978,364780.4128,1050538.701,0,21
+124979,364185.6966,1054095.222,0,21
+124980,369798.648,1058050.615,0,21
+124981,376576.0749,1068350.334,0,21
+124982,382397.4098,1071437.63,0,21
+124983,383902.6851,1073288.65,0,21
+124984,386314.7679,1076099.756,0,21
+124985,389951.7151,1077845.724,0,21
+124986,389696.5107,1078883.819,0,21
+124987,394525.4699,1082617.413,0,21
+124988,395635.9147,1083476.128,0,21
+124989,398158.425,1085863.26,0,21
+124990,400206.9637,1087222.698,0,21
+124991,402378.6631,1090486.204,0,21
+124992,403852.4133,1090796.605,0,21
+124993,407042.4404,1093534.559,0,21
+124994,408826.3135,1094997.216,0,21
+124995,410996.1235,1096687.317,0,21
+124996,412062.6905,1098582.956,0,21
+124997,415212.286,1100277.592,0,21
+124998,417598.7534,1102348.791,0,21
+124999,418523.5001,1104305.428,0,21
+125000,420621.4544,1105795.914,0,21
+125001,423930.5085,1107317.378,0,21
+125002,424150.9181,1109125.161,0,21
+125003,427231.0992,1111047.976,0,21
+125004,428959.38,1112651.814,0,21
+125005,430156.9585,1113907.983,0,21
+125006,433820.6973,1116136.967,0,21
+125007,434121.115,1117190.604,0,21
+125008,436551.1423,1119788.397,0,21
+125009,438274.971,1119712.412,0,21
+125010,441051.0751,1122485.163,0,21
+125011,441055.2735,1123749.374,0,21
+125012,444838.4743,1124921.276,0,21
+125013,445095.8405,1126936.52,0,21
+125014,448608.0146,1128685.754,0,21
+125015,448451.584,1129589.508,0,21
+125016,452420.0418,1131508.47,0,21
+125017,452099.658,1132949.347,0,21
+125018,456512.5409,1134079.74,0,21
+125019,455215.6111,1136211.093,0,21
+125020,459070.7539,1137169.662,0,21
+125021,460584.071,1138716.203,0,21
+125022,461770.9636,1140344.244,0,21
+125023,464659.4894,1141792.78,0,21
+125024,464588.1364,1142845.853,0,21
+125025,468387.3569,1144077.573,0,21
+125026,468402.6843,1146725.041,0,21
+125027,470544.5522,1146216.251,0,21
+125028,473367.7192,1149344.632,0,21
+125029,472845.519,1150134.146,0,21
+125030,476561.4727,1150346.007,0,21
+125031,477622.7132,1153203.985,0,21
+125032,478175.4205,1153853.843,0,21
+125033,481763.6337,1156563.068,0,21
+125034,481671.7248,1154975.376,0,21
+125035,484418.4546,1159388.507,0,21
+125036,485567.6579,1159047.879,0,21
+125037,487185.8071,1161219.058,0,21
+125038,489664.6881,1161412.241,0,21
+125039,490772.232,1163817.36,0,21
+125040,491887.1041,1163888.737,0,21
+125041,492995.634,1167381.09,0,21
+125042,495000.8735,1168370.858,0,21
+125043,495573.7209,1171317.72,0,21
+125044,497115.1473,1173537.737,0,21
+125045,496506.609,1173474.832,0,21
+125046,498024.9605,1176906.069,0,21
+125047,498331.4963,1177961.309,0,21
+125048,498964.5854,1180182.202,0,21
+125049,500001.994,1180703.098,0,21
+125050,499931.1716,1183764.541,0,21
+125051,501966.2063,1184902.699,0,21
+125052,500705.6731,1186085.348,0,21
+125053,502706.0109,1189037.718,0,21
+125054,503617.0339,1189384.07,0,21
+125055,503359.2359,1191629.391,0,21
+125056,504393.806,1194014.816,0,21
+125057,504827.8322,1194576.54,0,21
+125058,507028.0878,1197050.001,0,21
+125059,505277.3328,1197446.522,0,21
+125060,506775.3762,1200799.862,0,21
+125061,508350.4083,1202213.665,0,21
+125062,507175.4452,1202530.08,0,21
+125063,509373.3909,1205061.437,0,21
+125064,509176.1202,1206946.382,0,21
+125065,509738.5136,1208478.929,0,21
+125066,511210.7752,1209448.599,0,21
+125067,510282.0854,1211698.374,0,21
+125068,513038.5392,1213254.612,0,21
+125069,511119.1332,1215046.001,0,21
+125070,513589.7879,1216115.963,0,21
+125071,512793.9563,1218253.731,0,21
+125072,514461.629,1219452.455,0,21
+125073,514322.9468,1220971.416,0,21
+125074,514878.5887,1222763.059,0,21
+125075,516430.5884,1225589.695,0,21
+125076,515505.6134,1224842.398,0,21
+125077,517072.155,1227918.245,0,21
+125078,517212.8341,1229186.68,0,21
+125079,517679.9711,1230779.958,0,21
+125080,518689.3723,1232695.443,0,21
+125081,518355.9823,1233812.32,0,21
+125082,519381.4537,1235239.113,0,21
+125083,520233.4816,1236369.047,0,21
+125084,519768.4424,1240160.975,0,21
+125085,521462.1113,1239079.717,0,21
+125086,521105.0498,1241795.557,0,21
+125087,521638.4016,1243024.837,0,21
+125088,522509.8314,1245568.262,0,21
+125089,522444.3785,1245228.453,0,21
+125090,524126.6987,1248440.11,0,21
+125091,523240.2779,1249099.07,0,21
+125092,524300.0086,1251936.216,0,21
+125093,524959.6378,1251857.325,0,21
+125094,524797.03,1253214.306,0,21
+125095,525623.5935,1256892.191,164.0583498,21
+125096,526343.7075,1255623.97,1229.042206,21
+125097,526201.5398,1259343.027,781.9582299,21
+125098,527951.1367,1259680.089,932.1168296,21
+125099,526459.7855,1261654.836,1229.096841,21
+125100,528593.3278,1263165.557,1376.180925,21
+125101,0,0,0,21
+125102,0,0,0,21
+125103,0,265.2759839,0,21
+125104,0,0,0,21
+125105,0,0,1066318.778,21
+125106,0,0,0,21
+125107,0,0,0,21
+125108,339346.8564,0,0,21
+125109,0,0,0,21
+125110,0,0,0,21
+125111,0,0,0,21
+125112,0,0,0,21
+125113,0,0,0,21
+125114,0,0,0,21
+125115,0,0,0,21
+125116,0,0,0,21
+125117,0,0,0,21
+125118,0,0,0,21
+125119,0,0,0,21
+125120,0,0,0,21
+125121,0,0,0,21
+125122,0,0,0,21
+125123,0,0,0,21
+125124,0,0,0,21
+125125,0,0,0,21
+125126,0,0,0,21
+125127,0,0,0,21
+125128,0,0,0,21
+125129,0,0,0,21
+125130,0,0,0,21
+125131,0,0,0,21
+125132,0,367930.1518,0,21
+125133,0,0,0,21
+125134,0,0,0,21
+125135,0,0,0,21
+125136,0,0,0,21
+125137,0,0,0,21
+125138,0,0,0,21
+125139,0,0,1033208.037,21
+125140,0,0,0,21
+125141,0,0,0,21
+125142,0,0,0,21
+125143,0,0,0,21
+125144,339356.527,0,0,21
+125145,0,0,0,21
+125146,0,0,0,21
+125147,0,0,0,21
+125148,0,0,0,21
+125149,0,0,0,21
+125150,0,0,0,21
+125151,0,0,0,21
+125152,0,0,0,21
+125153,0,0,0,21
+125154,0,0,0,21
+125155,0,0,0,21
+125156,0,0,0,21
+125157,0,0,0,21
+125158,0,0,0,21
+125159,0,0,0,21
+125160,0,0,0,15.6
+125161,0,0,0,15.6
+125162,0,0,0,15.6
+125163,0,0,0,15.6
+125164,0,0,0,15.6
+125165,0,0,0,15.6
+125166,0,0,0,15.6
+125167,0,0,0,15.6
+125168,0,0,0,15.6
+125169,0,25379.48096,0,15.6
+125170,0,64.46697431,0,15.6
+125171,0,3103.969408,0,15.6
+125172,0,6639.351143,0,15.6
+125173,0,7353.871889,0,15.6
+125174,0,7239.498834,1002583.302,15.6
+125175,0,7597.281248,0,15.6
+125176,0,7720.601309,0,15.6
+125177,0,375913.6762,0,15.6
+125178,0,8218.566293,0,15.6
+125179,0,8344.517666,0,15.6
+125180,0,8566.140199,0,15.6
+125181,339369.6297,8768.422804,0,15.6
+125182,0,8884.032648,0,15.6
+125183,0,9928.472556,0,15.6
+125184,0,10083.21081,0,15.6
+125185,0,10250.79979,0,15.6
+125186,0,10673.7592,0,15.6
+125187,0,10894.72242,0,15.6
+125188,0,11217.71694,0,15.6
+125189,0,11468.21427,0,15.6
+125190,0,11767.54104,0,15.6
+125191,0,12001.79657,0,15.6
+125192,0,12335.87092,0,15.6
+125193,0,12602.59049,0,15.6
+125194,0,12841.96749,0,15.6
+125195,0,13068.80773,0,15.6
+125196,0,13440.92517,0,15.6
+125197,0,13615.08422,0,15.6
+125198,0,13908.09605,0,15.6
+125199,0,0,0,15.6
+125200,0,0,0,15.6
+125201,0,0,0,15.6
+125202,0,0,0,15.6
+125203,0,46064.01408,0,15.6
+125204,0,5285.629912,0,15.6
+125205,0,12667.58886,0,15.6
+125206,0,19258.26611,0,15.6
+125207,0,15903.77781,0,15.6
+125208,0,16522.15226,0,15.6
+125209,0,16838.72214,972589.8055,15.6
+125210,0,17037.50605,0,15.6
+125211,0,17328.01502,0,15.6
+125212,0,17503.61802,0,15.6
+125213,0,17778.71149,0,15.6
+125214,0,18027.94498,0,15.6
+125215,0,18223.52945,0,15.6
+125216,0,18501.05852,0,15.6
+125217,0,18674.30574,0,15.6
+125218,339386.2369,18948.21495,0,15.6
+125219,0,19223.94445,0,15.6
+125220,0,19327.89924,0,15.6
+125221,0,387727.2184,0,15.6
+125222,0,19848.09992,0,15.6
+125223,0,20030.39168,0,15.6
+125224,0,20154.30162,0,15.6
+125225,0,20294.1775,0,15.6
+125226,0,20394.86898,0,15.6
+125227,0,20559.08068,0,15.6
+125228,0,20718.30021,0,15.6
+125229,0,20737.48993,0,15.6
+125230,0,20977.13908,0,15.6
+125231,0,271443.4942,0,15.6
+125232,0,21174.51165,0,15.6
+125233,0,24700.18862,0,15.6
+125234,0,56730.80527,0,15.6
+125235,0,67275.81026,0,15.6
+125236,0,130798.2961,0,15.6
+125237,0,72844.32964,0,15.6
+125238,0,79624.82716,0,15.6
+125239,0,93694.92943,0,15.6
+125240,0,88670.89109,0,15.6
+125241,0,90127.58134,0,15.6
+125242,0,91168.81622,0,15.6
+125243,0,92393.15119,0,15.6
+125244,0,92957.97736,946896.9665,15.6
+125245,0,94210.17982,0,15.6
+125246,0,94988.63863,0,15.6
+125247,0,96028.99916,0,15.6
+125248,0,97092.02688,0,15.6
+125249,0,97756.65096,0,15.6
+125250,0,98956.84712,0,15.6
+125251,0,99818.67685,0,15.6
+125252,0,100763.9226,0,15.6
+125253,0,101626.1113,0,15.6
+125254,0,107132.4262,0,15.6
+125255,339389.5418,106984.9011,0,15.6
+125256,0,109060.6732,0,15.6
+125257,0,110419.3752,0,15.6
+125258,0,111908.5982,0,15.6
+125259,0,113953.2635,0,15.6
+125260,0,114818.4349,0,15.6
+125261,0,24562.89108,0,15.6
+125262,0,24684.85922,0,15.6
+125263,0,24792.30124,0,15.6
+125264,0,24899.34171,0,15.6
+125265,0,25002.7277,0,15.6
+125266,0,367914.5317,0,15.6
+125267,0,321392.0625,0,15.6
+125268,0,87092.17313,0,15.6
+125269,0,65336.20313,0,15.6
+125270,0,153862.9152,0,15.6
+125271,0,134682.9302,0,15.6
+125272,0,127997.5325,0,15.6
+125273,0,132678.6025,0,15.6
+125274,0,134302.3321,0,15.6
+125275,0,135242.6009,0,15.6
+125276,0,136503.7457,0,15.6
+125277,0,137919.297,0,15.6
+125278,0,139042.6651,0,15.6
+125279,0,140348.8579,923919.2353,15.6
+125280,0,141493.5303,0,15.6
+125281,0,142303.1051,0,15.6
+125282,0,142634.3125,0,15.6
+125283,0,143958.3993,0,15.6
+125284,0,144299.6519,0,15.6
+125285,0,145141.7256,0,15.6
+125286,0,145680.6254,0,15.6
+125287,0,146446.8154,0,15.6
+125288,0,147227.9172,0,15.6
+125289,0,147832.2016,0,15.6
+125290,0,148503.8686,0,15.6
+125291,0,149024.9109,0,15.6
+125292,339385.8187,149954.2587,0,15.6
+125293,0,150416.1823,0,15.6
+125294,0,151002.9114,0,15.6
+125295,0,151662.8246,0,15.6
+125296,0,152350.8346,0,15.6
+125297,0,27285.37084,0,15.6
+125298,0,0,0,15.6
+125299,0,0,0,15.6
+125300,0,76818.64756,0,15.6
+125301,0,390053.1402,0,15.6
+125302,0,57638.24218,0,15.6
+125303,0,142166.8649,0,15.6
+125304,0,181979.9804,0,15.6
+125305,0,154697.8452,0,15.6
+125306,0,158439.4261,0,15.6
+125307,0,158899.0528,0,15.6
+125308,0,159772.2467,0,15.6
+125309,0,159940.0472,0,15.6
+125310,0,160417.3283,0,15.6
+125311,0,529016.2125,0,15.6
+125312,0,161190.7848,0,15.6
+125313,0,162204.8245,0,15.6
+125314,0,162156.0385,902519.2594,15.6
+125315,0,162888.794,0,15.6
+125316,0,163148.2471,0,15.6
+125317,0,163825.6426,0,15.6
+125318,0,164172.2133,0,15.6
+125319,0,164686.3178,0,15.6
+125320,0,164966.5383,0,15.6
+125321,0,165778.112,0,15.6
+125322,0,165589.1253,0,15.6
+125323,0,166861.6946,0,15.6
+125324,0,166529.7515,0,15.6
+125325,0,167457.6182,0,15.6
+125326,0,167291.2594,0,15.6
+125327,0,168543.9812,0,15.6
+125328,0,168367.6796,0,15.6
+125329,339368.093,168979.2093,0,15.6
+125330,0,141208.462,0,15.6
+125331,0,0,0,15.6
+125332,0,80173.38044,0,15.6
+125333,0,11445.10436,0,15.6
+125334,0,25669.41653,0,15.6
+125335,0,489951.3346,0,15.6
+125336,0,57303.23988,0,15.6
+125337,0,147975.8004,0,15.6
+125338,0,203998.2484,0,15.6
+125339,0,169517.6861,0,15.6
+125340,0,173913.7622,0,15.6
+125341,0,173696.7261,0,15.6
+125342,0,173703.8123,0,15.6
+125343,0,173180.3023,0,15.6
+125344,0,172913.0959,0,15.6
+125345,0,172438.127,0,15.6
+125346,0,172602.1441,0,15.6
+125347,0,171725.1514,0,15.6
+125348,0,171751.0126,0,15.6
+125349,0,171225.7398,881076.3224,15.6
+125350,0,170801.9652,0,15.6
+125351,0,170769.4452,0,15.6
+125352,0,170122.5944,0,15.6
+125353,0,170121.1749,0,15.6
+125354,0,169613.3905,0,15.6
+125355,0,169314.375,0,15.6
+125356,0,536853.6401,0,15.6
+125357,0,168808.287,0,15.6
+125358,0,168209.599,0,15.6
+125359,0,168113.4684,0,15.6
+125360,0,167692.3107,0,15.6
+125361,0,167212.8509,0,15.6
+125362,0,139234.8481,0,15.6
+125363,0,139629.0224,0,15.6
+125364,0,217002.353,0,15.6
+125365,0,9832.204068,0,15.6
+125366,0,25175.94908,0,15.6
+125367,339363.3816,30509.35142,0,15.6
+125368,0,26979.48479,0,15.6
+125369,0,477672.0486,0,15.6
+125370,0,37557.06813,0,15.6
+125371,0,147671.3705,0,15.6
+125372,0,192374.6656,0,15.6
+125373,0,158988.3667,0,15.6
+125374,0,162710.121,0,15.6
+125375,0,162473.8837,0,15.6
+125376,0,161900.9671,0,15.6
+125377,0,161346.4499,0,15.6
+125378,0,161290.1211,0,15.6
+125379,0,160583.0737,0,15.6
+125380,0,160363.2734,0,15.6
+125381,0,159506.9298,0,15.6
+125382,0,159446.178,0,15.6
+125383,0,158893.2552,0,15.6
+125384,0,158662.2626,863252.9525,15.6
+125385,0,157888.1651,0,15.6
+125386,0,157394.7958,0,15.6
+125387,0,157386.3218,0,15.6
+125388,0,156655.7028,0,15.6
+125389,0,156118.0216,0,15.6
+125390,0,156064.9947,0,15.6
+125391,0,155240.5569,0,15.6
+125392,0,154943.2816,0,15.6
+125393,0,154679.4114,0,15.6
+125394,0,128189.9777,0,15.6
+125395,0,127829.0435,0,15.6
+125396,0,127546.0182,0,15.6
+125397,0,217050.4066,0,15.6
+125398,0,140367.1196,0,15.6
+125399,0,8921.137792,0,15.6
+125400,0,36234.94146,0,15.6
+125401,0,391851.3725,0,15.6
+125402,0,25657.90607,0,15.6
+125403,0,25726.05947,0,15.6
+125404,0,467565.1953,0,15.6
+125405,339366.9759,37647.02232,0,15.6
+125406,0,131735.6925,0,15.6
+125407,0,193707.5478,0,15.6
+125408,0,155462.2633,0,15.6
+125409,0,160878.7873,0,15.6
+125410,0,163032.5212,0,15.6
+125411,0,163274.7339,0,15.6
+125412,0,164594.6916,0,15.6
+125413,0,165876.754,0,15.6
+125414,0,166453.3181,0,15.6
+125415,0,167888.0381,0,15.6
+125416,0,168482.1529,0,15.6
+125417,0,169693.8219,0,15.6
+125418,0,170729.1326,0,15.6
+125419,0,171835.3226,847019.6591,15.6
+125420,0,172993.5383,0,15.6
+125421,0,173518.4205,0,15.6
+125422,0,174977.3448,0,15.6
+125423,0,175879.0106,0,15.6
+125424,29047.41415,177065.8513,0,15.6
+125425,0,177826.367,0,15.6
+125426,0,179403.8455,0,15.6
+125427,3781.213958,151177.3807,0,15.6
+125428,7530.189697,153103.9242,0,15.6
+125429,4014.364153,235339.335,0,15.6
+125430,4922.489701,165595.7548,0,15.6
+125431,4956.199013,181134.7025,0,15.6
+125432,4962.056281,188894.3462,0,15.6
+125433,5415.171649,185957.0125,0,15.6
+125434,5511.237658,29069.27885,0,15.6
+125435,5414.277883,29203.94504,0,15.6
+125436,5538.648352,29318.31677,0,15.6
+125437,5894.318708,29391.24152,0,15.6
+125438,5833.274813,592619.8976,0,15.6
+125439,5885.169717,63913.08152,0,15.6
+125440,5969.576597,141239.4883,0,15.6
+125441,6008.204199,244549.9129,0,15.6
+125442,6075.794958,188957.1585,0,15.6
+125443,345480.9762,197438.1523,0,15.6
+125444,6169.963191,198024.4046,0,15.6
+125445,6229.989572,199572.8197,0,15.6
+125446,6263.831154,568086.3846,0,15.6
+125447,6328.6457,201475.5481,0,15.6
+125448,6346.2738,201828.498,0,15.6
+125449,6432.726259,203701.3508,0,15.6
+125450,6470.644065,203541.5758,0,15.6
+125451,6504.430894,205221.0671,0,15.6
+125452,6551.371451,206276.408,0,15.6
+125453,6622.474384,206901.0979,0,15.6
+125454,0,208089.15,831049.5289,15.6
+125455,0,208634.5316,0,15.6
+125456,0,210086.3503,0,15.6
+125457,0,211307.1802,0,15.6
+125458,0,211519.4713,0,15.6
+125459,0,181172.4854,0,15.6
+125460,0,182398.3675,0,15.6
+125461,526651.223,1249508.355,0,15.6
+125462,256895.9496,1084390.974,0,15.6
+125463,97917.77858,246009.037,0,15.6
+125464,150592.4992,498118.6604,0,15.6
+125465,195258.4552,578047.9907,0,15.6
+125466,159506.1135,423569.184,0,15.6
+125467,164900.1303,474607.6492,0,15.6
+125468,165301.4881,62588.29268,0,15.6
+125469,165295.8516,65036.03492,0,15.6
+125470,165319.6714,1096435.496,0,15.6
+125471,166249.4546,267771.1866,0,15.6
+125472,165821.6484,521550.1261,0,15.6
+125473,166582.162,429232.2808,0,15.6
+125474,166299.4918,468582.1179,0,15.6
+125475,167312.9671,452106.3421,0,15.6
+125476,167369.3883,450974.1815,0,15.6
+125477,167430.2816,449779.5744,0,15.6
+125478,168368.4065,450525.1937,0,15.6
+125479,168138.0932,448556.8893,0,15.6
+125480,168830.948,448941.1818,0,15.6
+125481,508389.812,448477.4846,0,15.6
+125482,169651.3687,447603.3803,0,15.6
+125483,169796.5143,447595.6243,0,15.6
+125484,170212.047,447174.9462,0,15.6
+125485,170866.1277,446451.2288,0,15.6
+125486,171160.8626,446225.468,0,15.6
+125487,171446.1638,446153.4117,0,15.6
+125488,171815.249,445456.1184,816100.0459,15.6
+125489,172471.4852,445203.7545,0,15.6
+125490,172667.5392,812890.7018,0,15.6
+125491,0,382388.6403,0,15.6
+125492,0,382008.7633,0,15.6
+125493,0,495424.8876,0,15.6
+125494,81240.21013,441315.0498,0,15.6
+125495,26181.78509,434634.9768,0,15.6
+125496,455576.8855,456682.7759,0,15.6
+125497,87935.7385,437737.074,0,15.6
+125498,148189.6466,445225.5585,0,15.6
+125499,206609.6071,443187.4746,0,15.6
+125500,173816.7296,62689.89588,0,15.6
+125501,177456.7713,62443.58834,0,15.6
+125502,178381.8032,1075202.806,0,15.6
+125503,178646.3644,255962.8743,0,15.6
+125504,178754.5131,496766.0069,0,15.6
+125505,179656.2197,426374.7934,0,15.6
+125506,179603.6412,454737.5319,0,15.6
+125507,180297.1841,442764.9035,0,15.6
+125508,180707.6936,441926.4477,0,15.6
+125509,180929.5622,442139.8753,0,15.6
+125510,181241.5098,442223.6192,0,15.6
+125511,182268.4671,441481.2134,0,15.6
+125512,181889.0016,441386.1823,0,15.6
+125513,182924.5902,441408.2148,0,15.6
+125514,182977.131,442101.0598,0,15.6
+125515,183358.394,440720.5642,0,15.6
+125516,523362.5279,441386.6897,0,15.6
+125517,184440.197,441126.0925,0,15.6
+125518,184634.0922,441453.106,0,15.6
+125519,185205.695,440911.9437,0,15.6
+125520,185497.0884,440405.4377,0,17.8
+125521,1102779.175,2591538.135,0,17.8
+125522,1093907.923,1663744.52,804031.0586,17.8
+125523,537192.3887,563104.2484,0,17.8
+125524,492643.3178,922080.4905,0,17.8
+125525,496711.7031,1170619.319,0,17.8
+125526,111288.2439,850361.3026,0,17.8
+125527,103257.8631,1304507.323,0,17.8
+125528,857661.3292,924480.5611,0,17.8
+125529,507046.9328,916054.3668,0,17.8
+125530,385193.1995,913983.5769,0,17.8
+125531,453168.9566,910246.7313,0,17.8
+125532,450661.4007,154144.4129,0,17.8
+125533,426087.5289,1231895.512,0,17.8
+125534,424809.7755,712822.9544,0,17.8
+125535,423149.4445,965448.2746,0,17.8
+125536,423345.0829,889901.5659,0,17.8
+125537,421430.2407,895894.9199,0,17.8
+125538,421733.0553,893740.3224,0,17.8
+125539,419844.2266,891246.6178,0,17.8
+125540,419617.7763,890183.3762,0,17.8
+125541,419056.1935,886414.5011,0,17.8
+125542,457338.777,886695.6923,0,17.8
+125543,417526.5934,882659.6637,0,17.8
+125544,429160.4686,882612.511,0,17.8
+125545,431189.7887,870518.1938,0,17.8
+125546,428349.3928,868785.3537,0,17.8
+125547,427615.4883,868042.5555,0,17.8
+125548,429882.1995,865838.8732,0,17.8
+125549,427726.3508,860327.4632,0,17.8
+125550,427715.405,860052.2059,0,17.8
+125551,767271.7159,828032.1167,0,17.8
+125552,426674.1688,825852.0172,0,17.8
+125553,427437.8131,823435.7726,0,17.8
+125554,425810.5722,782189.7969,0,17.8
+125555,351984.8726,892048.5714,0,17.8
+125556,351476.1494,838707.282,792857.3651,17.8
+125557,467248.8556,841384.6628,0,17.8
+125558,101226.4946,844665.9824,0,17.8
+125559,90197.85437,840200.4741,0,17.8
+125560,847398.4152,837281.1116,0,17.8
+125561,421075.3978,835457.1697,0,17.8
+125562,391756.3107,834860.6963,0,17.8
+125563,434656.2393,141141.3209,0,17.8
+125564,432105.3265,508939.9198,0,17.8
+125565,424753.138,1224907.766,0,17.8
+125566,424754.6022,755491.8695,0,17.8
+125567,424475.173,731015.1942,0,17.8
+125568,424154.6471,932405.4421,0,17.8
+125569,423673.87,826914.0053,0,17.8
+125570,424331.8283,845148.6086,0,17.8
+125571,423292.4835,815447.1669,0,17.8
+125572,409994.2231,818134.166,0,17.8
+125573,409173.6514,817730.5106,0,17.8
+125574,409820.2461,816425.0956,0,17.8
+125575,409269.8915,811407.0467,0,17.8
+125576,408990.5789,812571.6897,0,17.8
+125577,408990.1111,809020.9414,0,17.8
+125578,408816.6795,807523.0335,0,17.8
+125579,409013.4998,806774.4759,0,17.8
+125580,408882.4074,805279.4902,0,20
+125581,2283499.121,2613168.07,308326.7598,20
+125582,1719628.588,1992669.838,0,20
+125583,448836.9016,668359.112,0,20
+125584,487994.667,795890.587,0,20
+125585,530313.8023,1208719.718,14248.26497,20
+125586,855832.3798,992673.736,37216.99816,20
+125587,602230.4308,985415.2189,19916.85045,20
+125588,659175.1965,979756.0522,26048.83575,20
+125589,657793.3686,985201.3273,26063.86488,20
+125590,655494.2823,978118.8077,26759.12555,20
+125591,655348.6056,975593.9685,27233.93763,20
+125592,651885.1665,972093.1119,27427.02662,20
+125593,650907.6798,970827.161,27821.90888,20
+125594,649853.6812,965351.9798,28091.40906,20
+125595,648252.1342,965790.8735,28370.80024,20
+125596,646514.1978,961258.0552,29063.16711,20
+125597,647444.6815,959897.4972,28824.84573,20
+125598,643216.172,957284.2581,29421.23256,20
+125599,644635.175,955582.226,29656.11652,20
+125600,642018.0938,952311.557,29984.64742,20
+125601,642483.7114,952288.6523,30436.48385,20
+125602,641120.1416,946873.3138,30521.61591,20
+125603,639175.3716,946903.4289,31320.07682,20
+125604,640182.3507,945702.4107,31544.27017,20
+125605,637678.6758,940705.1414,32285.6692,20
+125606,638881.2145,942266.118,32173.19092,20
+125607,637155.5386,937719.3561,32754.31519,20
+125608,636851.1858,938784.2891,33070.42478,20
+125609,634786.9972,934354.8309,33303.24288,20
+125610,636217.2308,933375.8723,33736.49002,20
+125611,634855.7918,932958.4007,34067.43872,20
+125612,633905.6649,929500.5165,34260.68803,20
+125613,634935.0177,928840.8402,34734.70355,20
+125614,632943.1838,928078.0023,35000.22715,20
+125615,632773.7942,925388.6682,35252.40625,20
+125616,632862.6565,923991.2718,35560.69016,20
+125617,631473.4698,922278.5298,35988.13302,20
+125618,632398.992,922018.8513,36099.90615,20
+125619,630537.8885,919044.1924,36631.9725,20
+125620,631336.7058,918733.225,36840.86576,20
+125621,630352.9191,916719.3147,37041.72018,20
+125622,630955.4181,916405.438,37410.50217,20
+125623,630095.1861,913377.7995,37660.69889,20
+125624,629094.0317,913056.1439,38127.4385,20
+125625,629790.0705,912171.8396,38131.78318,20
+125626,629413.7842,910217.4874,38617.36459,20
+125627,629431.1023,908817.4469,38885.61793,20
+125628,628415.6937,908385.8261,39042.29404,20
+125629,628902.1859,905698.994,39598.9312,20
+125630,628653.3022,906974.6471,39381.59511,20
+125631,628239.1986,902270.0157,40229.27567,20
+125632,628834.5464,904468.9903,40099.81497,20
+125633,627299.1931,901837.1922,40559.21033,20
+125634,628392.8801,900590.7029,40928.89387,20
+125635,627126.2662,899832.4632,40744.94267,20
+125636,628281.3405,898182.115,41595.84245,20
+125637,627047.1008,898142.0584,41460.48193,20
+125638,628374.2741,895225.3916,41821.17364,20
+125639,626309.4464,897322.1842,42162.92841,20
+125640,627780.0614,892239.1308,42451.91122,21
+125641,1002659.371,1777537.193,37021.62603,21
+125642,995428.9712,1772830.795,37029.9113,21
+125643,996118.9349,1770487.951,36682.47797,21
+125644,991370.7439,1769162.519,36892.35308,21
+125645,992248.8915,1769162.505,37137.34588,21
+125646,990198.8554,1766627.22,36899.41587,21
+125647,987862.6927,1767185.888,37242.37761,21
+125648,987090.8744,1765293.414,37220.29416,21
+125649,983396.9331,1764359.665,37352.33168,21
+125650,981139.0807,1764249.783,37457.87917,21
+125651,979740.4336,1763545.331,37470.65116,21
+125652,977703.6422,1761556.752,37755.33398,21
+125653,977820.8178,1761613.714,37602.74028,21
+125654,974753.2658,1760844.146,37912.43102,21
+125655,973563.7425,1759765.168,38021.21502,21
+125656,971899.0882,1759763.009,38017.56405,21
+125657,970971.8396,1757578.932,38284.59253,21
+125658,968908.0043,1757810.04,37853.65939,21
+125659,968696.9741,1757726.782,38733.84819,21
+125660,965300.4969,1758067.631,38352.33311,21
+125661,966176.7219,1756259.511,38507.81148,21
+125662,963022.9233,1756446.694,38750.66291,21
+125663,962947.9786,1756002.123,38632.03062,21
+125664,960767.9551,1754993.741,39005.38495,21
+125665,959771.2653,1754459.058,38848.4417,21
+125666,958316.1235,1754097.759,39186.27885,21
+125667,957181.0702,1754265.434,38992.4474,21
+125668,956101.0906,1752527.08,39308.79768,21
+125669,954219.2447,1752892.476,39423.95059,21
+125670,953532.5574,1750861.499,39325.922,21
+125671,939811.3178,1749069.481,39615.81875,21
+125672,937693.8919,1747270.609,39783.90809,21
+125673,933801.8356,1745439.472,39591.82698,21
+125674,932917.3035,1745931.384,39905.43142,21
+125675,928790.8065,1744452.875,39117.77432,21
+125676,927158.8916,1744092.963,39129.81745,21
+125677,925754.0284,1742802.095,39126.63524,21
+125678,922685.4434,1740987.906,39000.77272,21
+125679,921300.4798,1740771.589,39104.8594,21
+125680,918552.7607,1740937.465,39035.3572,21
+125681,917422.4276,1738372.081,39048.08989,21
+125682,913629.3882,1738948.071,39090.92618,21
+125683,913606.083,1738163.733,39106.49191,21
+125684,908849.7064,1735875.486,38942.35015,21
+125685,909355.5544,1736722.716,39050.12497,21
+125686,905379.4648,1734958.464,38985.00405,21
+125687,905218.2184,1735100.44,38862.95696,21
+125688,901503.6026,1732424.11,39273.50084,21
+125689,899819.886,1733345.219,38584.95103,21
+125690,897472.7019,1731774.801,39097.71625,21
+125691,896361.7718,1732388.808,38860.07654,21
+125692,893418.8013,1729200.953,37577.7398,21
+125693,892093.5296,1731168.515,37497.28043,21
+125694,889217.2874,1727769.072,37357.63404,21
+125695,887566.7175,1729021.161,37159.71854,21
+125696,885214.3095,1727191.776,37184.69175,21
+125697,883672.58,1727574.006,37160.11169,21
+125698,881254.0411,1726248.816,36868.39457,21
+125699,879097.1986,1724985.323,36943.7648,21
+125700,876752.3409,1725040.807,36667.41761,21
+125701,657323.8878,1492462.079,1754.228347,21
+125702,649282.542,1475302.195,1264.512575,21
+125703,644983.3265,1468571.034,1199.89063,21
+125704,640790.5995,1464464.98,1150.297523,21
+125705,637020.6144,1460742.737,1108.933939,21
+125706,632671.2962,1455057.062,1068.231894,21
+125707,629238.1596,1450942.986,1018.088902,21
+125708,625646.1922,1448677.791,1018.106723,21
+125709,621072.4483,1442401.59,951.444329,21
+125710,618211.8466,1440874.365,935.1626258,21
+125711,613886.4598,1435221.965,884.4040451,21
+125712,610789.4927,1433642.37,884.417655,21
+125713,606870.4448,1427698.011,834.3230824,21
+125714,603174.8738,1425938.381,783.0448956,21
+125715,600316.209,1422044.106,783.0555654,21
+125716,596417.6378,1390781.895,749.0395357,21
+125717,593220.5481,1382280.225,698.3094374,21
+125718,589448.5595,1378615.283,697.2264258,21
+125719,586286.7942,1373652.394,638.4443758,21
+125720,583013.6934,1369285.291,628.377173,21
+125721,579346.9989,1366045.326,611.6976896,21
+125722,575968.8752,1362294.383,542.1443888,21
+125723,572580.8977,1356790.43,542.1494974,21
+125724,569577.7596,1354860.377,507.1221905,21
+125725,565945.0378,1348753.233,488.7998401,21
+125726,562580.1212,1347132.273,445.7418879,21
+125727,559106.3621,1343311.694,417.8335351,21
+125728,556244.7268,1338856.621,400.8281966,21
+125729,552035.9766,1336416.941,364.8980544,21
+125730,549230.4683,1331669.245,345.7701635,21
+125731,546109.7736,1329315.862,291.9311373,21
+125732,542474.0282,1325166.949,281.9571698,21
+125733,539378.7654,1320075.494,254.3918902,21
+125734,536757.3231,1318440.222,237.0482932,21
+125735,532559.2155,1312963.604,219.6259747,21
+125736,529708.0102,1310391.453,219.6268177,21
+125737,526849.9944,1306151.944,184.5239486,21
+125738,522796.4304,1302665.855,184.5245445,21
+125739,520173.0438,1300048.32,149.0330083,21
+125740,517230.349,1295681.177,166.8321221,21
+125741,513549.3664,1291345.515,131.1193253,21
+125742,510504.2922,1289000.211,113.0760823,21
+125743,507868.352,1284103.533,113.0762545,21
+125744,504202.9282,1280395.051,76.52656843,21
+125745,500943.3807,1277954.303,94.88666208,21
+125746,498542.6041,1273131.387,48.58707865,21
+125747,494437.5503,1269950.691,57.96221995,21
+125748,492115.9044,1266571.708,19.94334596,21
+125749,488526.7008,1262254.28,39.1372327,21
+125750,485722.2208,1258985.454,0,21
+125751,482558.5218,1255406.034,0,21
+125752,479670.4012,1250880.603,0,21
+125753,476469.3309,1248619.801,0,21
+125754,473615.0277,1243931.221,0,21
+125755,470041.7381,1241263.833,0,21
+125756,467125.3871,1238173.614,0,21
+125757,464193.3168,1235412.22,0,21
+125758,460681.5722,1232740.022,0,21
+125759,458150.6635,1229889.877,0,21
+125760,454425.0603,1226539.812,0,21
+125761,451580.3108,1222831.483,0,21
+125762,447802.4384,1218802.686,0,21
+125763,444678.7434,1214265.941,0,21
+125764,442548.9942,1210504.303,0,21
+125765,438776.005,1206198.162,0,21
+125766,436413.8043,1201484.123,0,21
+125767,433455.8724,1198069.814,0,21
+125768,430554.2098,1193538.576,0,21
+125769,427331.5685,1190570.386,0,21
+125770,425290.1244,1186847.671,0,21
+125771,421643.7883,1182591.436,0,21
+125772,419191.0693,1177684.782,0,21
+125773,415767.1622,1174194.213,0,21
+125774,412934.5802,1169026.58,0,21
+125775,410241.324,1165056.944,0,21
+125776,407057.8902,1160493.036,0,21
+125777,404234.0484,1156237.431,0,21
+125778,400892.9366,1151493.097,0,21
+125779,398881.7004,1147170.055,0,21
+125780,396036.7007,1142640.546,0,21
+125781,393770.0449,1137929.959,0,21
+125782,390105.918,1134018.565,0,21
+125783,387382.8558,1128433.082,0,21
+125784,384443.2969,1124380.373,0,21
+125785,381473.1236,1119582.206,0,21
+125786,378525.4198,1116035.411,0,21
+125787,375564.5363,1112233.215,0,21
+125788,373206.3637,1109085.835,0,21
+125789,369371.3006,1105603.178,0,21
+125790,367170.1417,1101808.222,0,21
+125791,363992.4568,1098488.607,0,21
+125792,360834.328,1095033.594,0,21
+125793,358407.7982,1091564.468,0,21
+125794,354949.8908,1087806.726,0,21
+125795,352595.6388,1084259.395,0,21
+125796,349363.0697,1080490.861,0,21
+125797,346656.1276,1077251.186,0,21
+125798,343720.2232,1073418.808,0,21
+125799,340478.5516,1069838.212,0,21
+125800,337852.6178,1066029.459,0,21
+125801,334498.7663,1062455.154,0,21
+125802,331920.3847,1058957.947,0,21
+125803,328682.855,1055423.944,0,21
+125804,325862.6296,1051723.564,0,21
+125805,322753.5309,1047811.361,0,21
+125806,320153.4649,1044492.45,0,21
+125807,316712.6458,1040473.559,0,21
+125808,313907.0534,1036581.609,0,21
+125809,311016.0092,1033892.753,0,21
+125810,307616.6955,1028887.051,0,21
+125811,304939.4794,1025961.645,0,21
+125812,301721.718,1021686.406,0,21
+125813,298798.7576,1018661.079,0,21
+125814,295868.6189,1013905.207,0,21
+125815,292817.101,1010480.35,0,21
+125816,289606.0295,1006905.468,0,21
+125817,286736.3251,1002815.676,0,21
+125818,283420.1673,998654.6906,0,21
+125819,280474.7588,995087.8909,0,21
+125820,277379.5536,989711.2519,0,21
+125821,272974.7164,985369.407,0,21
+125822,270679.6425,983426.8694,0,21
+125823,267594.763,979765.5915,0,21
+125824,265409.6691,978066.512,0,21
+125825,262779.9239,974971.1029,0,21
+125826,259592.5617,971830.6236,0,21
+125827,257311.6423,969874.496,0,21
+125828,254463.2089,966873.4782,0,21
+125829,252024.6772,963785.9524,0,21
+125830,249070.3886,961912.0695,0,21
+125831,246805.3948,958626.5728,0,21
+125832,244001.9093,956256.2453,0,21
+125833,243002.9155,953349.8933,0,21
+125834,240597.5703,950680.0909,0,21
+125835,239013.1151,948300.407,0,21
+125836,237266.739,945069.5701,0,21
+125837,235577.1796,943072.1614,0,21
+125838,233775.2316,940060.231,0,21
+125839,232096.6144,937499.1267,0,21
+125840,230149.3659,935294.3655,0,21
+125841,228656.0162,932176.5831,0,21
+125842,226921.3591,930253.8645,0,21
+125843,225165.797,927212.0584,0,21
+125844,223283.1899,924510.0904,0,21
+125845,221408.3652,922037.0484,0,21
+125846,219791.2376,919492.0765,0,21
+125847,218023.4565,917068.101,0,21
+125848,216291.859,914429.7149,0,21
+125849,214638.8848,911733.8773,0,21
+125850,212665.8413,909327.881,0,21
+125851,211487.3314,906551.3874,0,21
+125852,209264.3278,904380.3315,0,21
+125853,207580.6032,901218.0233,0,21
+125854,205907.3664,899277.6526,0,21
+125855,204178.8432,896249.8742,0,21
+125856,202371.5734,894300.9586,0,21
+125857,200770.3981,891077.3061,0,21
+125858,199051.9631,888723.0939,0,21
+125859,197255.2683,886027.2396,0,21
+125860,195926.8062,883714.9993,0,21
+125861,194179.2906,880427.6653,0,21
+125862,192475.7523,878500.4937,0,21
+125863,190709.9052,875795.0283,0,21
+125864,189251.4641,872914.5769,0,21
+125865,187508.4902,870474.7708,0,21
+125866,185890.0315,867941.4113,0,21
+125867,184310.8068,865115.7717,0,21
+125868,182797.2062,862738.6781,0,21
+125869,181059.7466,860045.8511,0,21
+125870,179722.1021,858490.4691,0,21
+125871,177569.7464,857213.1217,0,21
+125872,176099.4309,855601.7686,0,21
+125873,174628.6289,854332.3657,0,21
+125874,172743.047,852920.66,0,21
+125875,171546.5874,851642.2256,0,21
+125876,169514.6371,850319.7643,0,21
+125877,168060.2689,848751.3515,0,21
+125878,166881.2427,847449.0887,0,21
+125879,164785.1761,845937.1713,0,21
+125880,163057.111,844764.4785,0,21
+125881,161127.4199,844161.7224,0,21
+125882,159150.1008,842271.772,0,21
+125883,156508.4861,840128.7585,0,21
+125884,154360.1089,838822.2784,0,21
+125885,151836.8668,836509.3567,0,21
+125886,149559.1138,835080.0531,0,21
+125887,147646.8877,832990.4844,0,21
+125888,144625.2106,831843.6139,0,21
+125889,142695.0567,829678.7399,0,21
+125890,139963.7697,828165.3023,0,21
+125891,137589.7343,826312.7122,0,21
+125892,135496.6834,824877.3388,0,21
+125893,132938.1413,822920.3117,0,21
+125894,130531.2055,821308.924,0,21
+125895,128165.5413,819745.1161,0,21
+125896,126305.0919,817877.2157,0,21
+125897,123317.3094,816406.262,0,21
+125898,121146.7653,814460.3176,0,21
+125899,118698.3301,812908.9769,0,21
+125900,115702.3826,811103.6602,0,21
+125901,113368.5491,809665.0845,0,21
+125902,111152.5717,807633.0517,0,21
+125903,108365.6049,806130.7415,0,21
+125904,106031.0141,804467.2204,0,21
+125905,103954.8136,802687.8891,0,21
+125906,101638.4799,800997.1593,0,21
+125907,99431.29746,799353.5171,0,21
+125908,97023.60286,797691.9634,0,21
+125909,94956.08461,795893.777,0,21
+125910,92745.33282,794215.3563,0,21
+125911,90642.49205,792772.7242,0,21
+125912,88283.84481,790946.1026,0,21
+125913,86348.20974,789457.6346,0,21
+125914,84091.31291,787387.4752,0,21
+125915,81725.42118,786386.6178,0,21
+125916,79834.94215,784109.3965,0,21
+125917,77298.97861,782921.3366,0,21
+125918,75194.89829,781123.7022,0,21
+125919,73000.1495,779630.6032,0,21
+125920,70771.91951,777947.1327,0,21
+125921,68830.97229,776068.3621,0,21
+125922,66291.28282,774877.2071,0,21
+125923,64659.92819,772890.4166,0,21
+125924,61992.94556,771504.6762,0,21
+125925,60000.63946,769939.1181,0,21
+125926,57714.79046,768181.9968,0,21
+125927,55465.30733,766502.8815,0,21
+125928,53396.19402,765208.7975,0,21
+125929,51170.27609,763369.786,0,21
+125930,49118.03575,760974.6108,0,21
+125931,46627.97486,759705.8044,0,21
+125932,45482.14179,757679.483,0,21
+125933,44851.73777,756313.2454,0,21
+125934,44171.79481,754576.2009,0,21
+125935,43587.05662,752602.2156,0,21
+125936,43392.41651,750765.196,0,21
+125937,42705.55722,749223.2318,0,21
+125938,42472.94006,747220.8176,0,21
+125939,42326.6272,745821.2519,0,21
+125940,41678.20056,744045.2122,0,21
+125941,51274.20353,760341.9182,0,21
+125942,50848.75083,760367.9933,0,21
+125943,50629.92617,760459.0485,0,21
+125944,50635.20297,759793.104,0,21
+125945,50151.27344,759933.0958,0,21
+125946,49936.63254,759434.4965,0,21
+125947,49630.66236,759330.3092,0,21
+125948,49435.12592,759054.2503,0,21
+125949,49091.5282,759194.5138,0,21
+125950,49091.52888,758375.8361,0,21
+125951,48550.04627,758916.0469,0,21
+125952,48261.43917,757987.7992,0,21
+125953,48369.00866,758096.2411,0,21
+125954,47551.13377,757856.0227,0,21
+125955,47861.30329,757652.7467,0,21
+125956,47331.71632,757174.119,0,21
+125957,47003.48923,757193.7487,0,21
+125958,46892.43875,756605.8499,0,21
+125959,46490.8086,756801.58,0,21
+125960,46444.98241,756180.6079,0,21
+125961,46299.55173,756120.8623,0,21
+125962,45692.18896,755763.8821,0,21
+125963,45863.03948,755306.7774,0,21
+125964,45245.82631,755232.7064,0,21
+125965,45428.46207,754888.5476,0,21
+125966,44874.06358,746717.2505,0,21
+125967,44590.94957,748930.0844,0,21
+125968,44607.49466,746647.915,0,21
+125969,44176.53395,745282.2339,0,21
+125970,43973.21905,745578.4809,0,21
+125971,43645.78195,744905.4515,0,21
+125972,43473.24579,743967.1454,0,21
+125973,43100.76087,743084.7457,0,21
+125974,42893.91067,742073.3134,0,21
+125975,42580.87764,741584.6072,0,21
+125976,42209.61658,740376.3358,0,21
+125977,42085.44103,739565.5672,0,21
+125978,41753.01261,745185.4371,0,21
+125979,42328.88348,741397.0674,0,21
+125980,41957.44993,742421.3031,0,21
+125981,41631.09054,742523.3809,0,21
+125982,41874.65523,742419.3531,0,21
+125983,41606.93369,742544.7572,0,21
+125984,41449.8552,742654.388,0,21
+125985,41119.30698,742293.8998,0,21
+125986,41139.88859,742688.4235,0,21
+125987,40770.94044,742149.2365,0,21
+125988,40543.72842,742597.3562,0,21
+125989,40501.01676,742230.8067,0,21
+125990,40054.4455,742433.8882,0,21
+125991,40123.26135,742278.8451,0,21
+125992,39836.78656,741948.1975,0,21
+125993,39339.16834,741986.3625,0,21
+125994,39642.26203,741691.9979,0,21
+125995,39065.7038,741313.3471,0,21
+125996,39079.63143,741838.1453,0,21
+125997,38777.2329,741186.3133,0,21
+125998,38558.00774,740991.0843,0,21
+125999,38327.7858,740925.1801,0,21
+126000,38451.33952,741046.0088,0,21
+126001,24519.09926,712797.025,0,21
+126002,23960.77037,711927.3805,0,21
+126003,23978.36138,711036.7714,0,21
+126004,23288.57355,710097.048,0,21
+126005,23173.02399,709410.5184,0,21
+126006,23033.6302,708549.8758,0,21
+126007,22316.14344,707840.2926,0,21
+126008,22398.0999,706975.6284,0,21
+126009,21761.63337,706178.5365,0,21
+126010,21830.17772,705213.3367,0,21
+126011,21224.94915,704527.1093,0,21
+126012,21081.75254,703894.2594,0,21
+126013,20764.82567,702661.4996,0,21
+126014,20517.03301,702151.911,0,21
+126015,20105.81882,701352.6341,0,21
+126016,19966.86624,700667.7639,0,21
+126017,19522.23655,699489.9994,0,21
+126018,19295.09571,699097.2414,0,21
+126019,19045.34115,698184.8293,0,21
+126020,19524.80994,697668.6485,0,21
+126021,19381.98207,696584.5652,0,21
+126022,19043.36852,696370.0371,0,21
+126023,18662.44353,695039.4707,0,21
+126024,18289.99453,694831.1973,0,21
+126025,18139.15443,693700.3181,0,21
+126026,17509.1359,693557.7537,0,21
+126027,17167.24373,692799.2382,0,21
+126028,16984.16079,691995.6891,0,21
+126029,16369.86484,691596.0925,0,21
+126030,16200.57436,690850.3272,0,21
+126031,15726.53716,689845.4602,0,21
+126032,15511.9071,688873.4246,0,21
+126033,15226.40953,687538.8726,0,21
+126034,14913.39179,687153.8521,0,21
+126035,14769.1387,685359.3307,0,21
+126036,14236.14471,684510.35,0,21
+126037,14385.36233,683549.9071,0,21
+126038,13950.09102,682446.9347,0,21
+126039,13935.11864,680911.6862,0,21
+126040,13686.51708,680200.893,0,21
+126041,13444.40196,679138.0657,0,21
+126042,13444.40341,677884.1267,0,21
+126043,13179.73917,676773.5905,0,21
+126044,13165.93645,675785.5513,0,21
+126045,12926.11941,674538.4156,0,21
+126046,12811.09005,673543.3499,0,21
+126047,12658.54923,672671.8464,0,21
+126048,12654.94309,670975.8161,0,21
+126049,12416.03376,670570.3077,0,21
+126050,12387.04105,668991.6102,0,21
+126051,12171.86839,668034.6299,0,21
+126052,12242.60485,667188.1038,0,21
+126053,12005.39823,665810.6014,0,21
+126054,11881.96689,664535.789,0,21
+126055,11976.72432,664028.9745,0,21
+126056,11739.52227,662587.3482,0,21
+126057,11731.57303,661428.2562,0,21
+126058,11571.53633,660268.6648,0,21
+126059,11809.89236,659445.9755,0,21
+126060,11663.15407,657938.5228,0,21
+126061,14626.1795,660815.705,0,21
+126062,19503.78277,658830.0961,0,21
+126063,17177.087,656506.6629,0,21
+126064,17847.44897,654718.8284,0,21
+126065,17847.72452,652205.3278,0,21
+126066,18036.52522,650294.3931,0,21
+126067,18045.84405,648050.9713,0,21
+126068,18061.18857,645958.7315,0,21
+126069,18233.9955,643796.9575,0,21
+126070,18241.4726,641451.3294,0,21
+126071,18141.53439,639707.185,0,21
+126072,18447.35733,637155.2028,0,21
+126073,18452.16862,635059.6067,0,21
+126074,18347.47629,633069.266,0,21
+126075,18420.53215,630768.6887,0,21
+126076,18665.66844,628642.4648,0,21
+126077,18523.62942,626523.7544,0,21
+126078,18546.12945,624367.8875,0,21
+126079,18735.44018,622268.4907,0,21
+126080,18638.96588,619998.7306,0,21
+126081,18627.85248,618017.1626,0,21
+126082,18929.65372,616135.7678,0,21
+126083,18931.65778,613464.0324,0,21
+126084,18803.90742,611938.428,0,21
+126085,19044.94183,609438.8601,0,21
+126086,18890.31479,607425.7008,0,21
+126087,19156.96424,605618.8604,0,21
+126088,18884.48879,603195.3508,0,21
+126089,19121.95437,601170.7586,0,21
+126090,19222.8148,599416.0103,0,21
+126091,18995.35722,597153.3236,0,21
+126092,19092.24516,595524.0983,0,21
+126093,18991.25672,593752.5195,0,21
+126094,18949.92032,591379.6437,0,21
+126095,18956.9425,590249.0984,0,21
+126096,18830.3504,587901.637,0,21
+126097,18813.98486,586256.1328,0,21
+126098,18823.08515,584511.851,0,21
+126099,18686.49884,582555.9428,0,21
+126100,18580.96999,580688.3428,0,21
+126101,18562.59865,579058.0483,0,21
+126102,18352.14284,577172.0271,0,21
+126103,18423.63868,575514.8653,0,21
+126104,18448.76426,573665.852,0,21
+126105,17872.04677,571692.8618,0,21
+126106,18390.90774,570566.3475,0,21
+126107,17752.41413,567908.3312,0,21
+126108,18051.87949,566803.1529,0,21
+126109,17586.65785,564811.2674,0,21
+126110,17724.57993,562759.6491,0,21
+126111,17443.91215,561602.906,0,21
+126112,17350.01144,559236.0217,0,21
+126113,17305.43513,557762.6695,0,21
+126114,17195.96534,555982.4727,0,21
+126115,16853.06279,553992.3316,0,21
+126116,16807.37104,552538.1107,0,21
+126117,16703.23902,550447.0791,0,21
+126118,16444.59997,548623.9681,0,21
+126119,16319.55128,547079.421,0,21
+126120,16180.12557,545163.722,0,21
+126121,9922.288879,539719.5457,0,21
+126122,9909.306539,539237.4584,0,21
+126123,9411.406951,538570.4241,0,21
+126124,9301.986947,538046.3752,0,21
+126125,9022.018843,537895.6129,0,21
+126126,8668.342804,537293.6898,0,21
+126127,8657.216215,536523.7069,0,21
+126128,8246.125602,536665.7561,0,21
+126129,8135.7429,535593.9502,0,21
+126130,7745.965045,535323.7038,0,21
+126131,7487.842239,534781.9327,0,21
+126132,7441.053581,534211.1848,0,21
+126133,6965.872386,533731.1342,0,21
+126134,6919.467726,533116.7453,0,21
+126135,6402.687751,532717.2163,0,21
+126136,6379.895852,531952.9142,0,21
+126137,5965.203997,531686.8678,0,21
+126138,5828.16154,530659.4479,0,21
+126139,5402.588142,530637.3648,0,21
+126140,5236.764008,529452.9842,0,21
+126141,4965.293445,529248.8386,0,21
+126142,4636.548266,528612.9746,0,21
+126143,4475.334434,527917.7887,0,21
+126144,4298.322192,526994.1899,0,21
+126145,4280.905417,527045.8668,0,21
+126146,4255.69477,525748.2701,0,21
+126147,4211.898276,525217.4632,0,21
+126148,4210.992283,524764.8217,0,21
+126149,4166.19159,524028.841,0,21
+126150,4146.643731,523758.8417,0,21
+126151,4162.708374,522967.7608,0,21
+126152,4146.649281,522805.5861,0,21
+126153,4281.680715,522714.3291,0,21
+126154,4281.681041,522085.3513,0,21
+126155,4297.658706,522274.137,0,21
+126156,4400.259843,522019.4415,0,21
+126157,4416.237471,521746.5283,0,21
+126158,4416.237985,521690.5578,0,21
+126159,4550.33182,521498.8736,0,21
+126160,4534.431803,521203.0745,0,21
+126161,4550.323999,521312.6925,0,21
+126162,4676.064614,520853.7828,0,21
+126163,4668.143875,521281.3079,0,21
+126164,4801.419526,520496.017,0,21
+126165,4691.85062,520640.103,0,21
+126166,4918.512797,520851.3394,0,21
+126167,4934.262562,520436.7279,0,21
+126168,4934.26257,520323.223,0,21
+126169,4934.262578,520192.384,0,21
+126170,5183.078171,520574.1356,0,21
+126171,5066.682738,519794.1091,0,21
+126172,5183.078187,520406.2678,0,21
+126173,5198.689221,519839.5498,0,21
+126174,5314.745678,520314.2388,0,21
+126175,5314.745686,519756.0494,0,21
+126176,5446.014351,520194.0094,0,21
+126177,5446.014358,519926.2866,0,21
+126178,5461.495355,519978.7697,0,21
+126179,5676.48663,519856.7799,0,21
+126180,5621.235795,520122.3889,0,21
+126181,5888.577041,519559.897,0,21
+126182,6026.086997,519252.3243,0,21
+126183,6043.65447,518600.4318,0,21
+126184,6319.536349,518383.9959,0,21
+126185,6353.715759,517722.5088,0,21
+126186,6588.116571,517462.8803,0,21
+126187,6627.6986,517208.0571,0,21
+126188,6886.68904,517607.8678,0,21
+126189,6933.291702,517836.4382,0,21
+126190,7174.213987,518168.647,0,21
+126191,7205.483711,518514.5,0,21
+126192,7476.730129,518828.7002,0,21
+126193,7507.067327,519294.982,0,21
+126194,8858.681939,519622.0609,0,21
+126195,9177.651643,519987.6731,0,21
+126196,9418.352838,520225.3052,0,21
+126197,284912.4696,520881.6807,0,21
+126198,10257.02362,521170.0852,0,21
+126199,10759.34324,521515.2605,0,21
+126200,11146.21691,522054.3042,0,21
+126201,12132.8202,522447.2796,0,21
+126202,13098.40517,522895.9067,0,21
+126203,13275.03067,523242.723,0,21
+126204,13894.32948,523545.2456,0,21
+126205,14255.86555,524231.1436,0,21
+126206,14867.50358,524555.2977,0,21
+126207,15289.59467,524767.1726,0,21
+126208,15737.24597,525625.6583,0,21
+126209,16267.45436,525814.9829,0,21
+126210,16719.08466,526395.9886,0,21
+126211,17181.74621,526879.339,0,21
+126212,17353.50837,527207.4241,0,21
+126213,17671.70834,527955.3293,0,21
+126214,17973.96405,528034.3367,0,21
+126215,18200.62286,528832.8201,0,21
+126216,18467.21621,529270.3353,0,21
+126217,18713.44676,529704.5767,0,21
+126218,18978.85876,530177.2227,0,21
+126219,19210.12161,530955.7104,0,21
+126220,19369.59383,531100.5019,0,21
+126221,19822.90807,531957.9953,0,21
+126222,19890.02789,532320.7994,0,21
+126223,20197.73972,532893.2278,0,21
+126224,20471.88449,533354.2337,0,21
+126225,20526.56926,533999.6002,0,21
+126226,20848.4026,534517.7207,0,21
+126227,21221.11425,535195.3982,0,21
+126228,21242.73434,535551.0028,0,21
+126229,21488.03598,536364.7133,0,21
+126230,21752.15352,536740.7597,0,21
+126231,21986.67837,537624.0615,0,21
+126232,22142.23152,537798.3078,0,21
+126233,22443.97564,539041.8647,0,21
+126234,22650.54885,539099.2181,0,21
+126235,22726.92141,539985.1358,0,21
+126236,23015.91149,540524.3594,0,21
+126237,23246.28198,541097.578,0,21
+126238,23672.51648,542065.0635,0,21
+126239,23428.46665,542266.1855,0,21
+126240,23964.43414,543211.8761,0,21
+126241,47730.73356,587954.2502,0,21
+126242,71807.48446,593286.6557,0,21
+126243,61878.54199,597811.5416,0,21
+126244,64681.57571,600702.2391,0,21
+126245,65878.84193,603526.8692,0,21
+126246,66090.51576,606467.7948,0,21
+126247,66955.65599,609881.0119,0,21
+126248,67355.72324,612685.424,0,21
+126249,68202.02706,615611.9146,0,21
+126250,68392.72111,619007.3688,0,21
+126251,69259.70577,621870.5002,0,21
+126252,69621.42163,624985.1303,0,21
+126253,69997.25975,627678.3475,0,21
+126254,70699.81364,631057.0164,0,21
+126255,71146.65122,633510.503,0,21
+126256,71802.91634,635849.3123,0,21
+126257,72324.87625,637859.6271,0,21
+126258,72663.70187,639465.5482,0,21
+126259,74224.05455,641029.2465,0,21
+126260,74036.3369,643242.3751,0,21
+126261,74534.4038,644497.7634,0,21
+126262,75097.58215,646529.0933,0,21
+126263,75735.76703,648171.7868,0,21
+126264,76132.105,649614.0641,0,21
+126265,76905.14793,651922.957,0,21
+126266,78540.62318,653034.9947,0,21
+126267,79466.16934,654988.9972,0,21
+126268,80897.94291,656416.7804,0,21
+126269,82112.07109,658351.173,0,21
+126270,83592.54962,659902.4212,0,21
+126271,84741.56633,661853.7802,0,21
+126272,86389.64368,664650.1472,0,21
+126273,87267.67965,665615.4251,0,21
+126274,89106.98041,667852.7308,0,21
+126275,90258.13678,669084.0474,0,21
+126276,91613.15572,671101.0022,0,21
+126277,93251.54239,672906.8238,0,21
+126278,94309.37639,674561.1327,0,21
+126279,96006.63341,676061.2971,0,21
+126280,97389.21365,677742.1242,0,21
+126281,98417.35155,680040.9227,0,21
+126282,99861.67923,681144.9274,0,21
+126283,101313.4143,682838.0795,0,21
+126284,102691.1513,684994.1509,0,21
+126285,103808.0323,686042.6173,0,21
+126286,105428.2638,688296.7555,0,21
+126287,106709.3697,689685.8712,0,21
+126288,108352.5192,691690.4955,0,21
+126289,109351.446,692991.2552,0,21
+126290,110932.6319,694942.9058,0,21
+126291,111937.5508,696488.3172,0,21
+126292,113715.91,698334.7833,0,21
+126293,114644.3215,699901.5137,0,21
+126294,116304.0945,701633.5222,0,21
+126295,117406.5903,703134.9141,0,21
+126296,119136.9858,705231.3642,0,21
+126297,120432.14,706482.285,0,21
+126298,121464.2275,708312.4961,0,21
+126299,123090.787,710381.5544,0,21
+126300,124300.6385,712506.2129,0,21
+126301,137410.0109,726329.1848,0,21
+126302,139082.8802,727506.008,0,21
+126303,140423.0328,727679.9018,0,21
+126304,141560.5278,729468.1202,0,21
+126305,142591.0121,729209.4954,0,21
+126306,143782.1577,730385.6802,0,21
+126307,145116.6694,730685.5779,0,21
+126308,145848.1337,731565.9304,0,21
+126309,147002.8762,732509.2726,0,21
+126310,148392.2915,732694.9224,0,21
+126311,149520.5331,733770.2633,0,21
+126312,150271.2037,734553.7426,0,21
+126313,151811.9246,734692.5057,0,21
+126314,152722.1203,735981.6462,0,21
+126315,153863.7215,736377.3816,0,21
+126316,155780.147,737077.772,0,21
+126317,156526.8588,737764.2678,0,21
+126318,157517.3188,738305.7552,0,21
+126319,158536.7915,739065.3412,0,21
+126320,160153.2039,739478.3137,0,21
+126321,161011.1701,740445.6035,0,21
+126322,162283.7692,740593.861,0,21
+126323,163471.3959,741763.542,0,21
+126324,164416.1349,741635.727,0,21
+126325,165750.1564,743062.4689,0,21
+126326,167078.0014,743016.852,0,21
+126327,168040.4708,743823.0598,0,21
+126328,168930.9978,744562.5634,0,21
+126329,170432.4565,744687.284,0,21
+126330,171100.6278,746061.8999,0,21
+126331,172504.3976,747331.9501,0,21
+126332,173481.4486,747115.5659,0,21
+126333,174380.6838,748359.7282,0,21
+126334,175616.2323,749123.3979,0,21
+126335,176381.2409,749741.6084,0,21
+126336,177711.9725,750402.7231,0,21
+126337,178567.2362,755643.2465,0,21
+126338,179486.7789,762106.1659,0,21
+126339,185222.3173,759985.3238,0,21
+126340,183921.4121,762067.9625,0,21
+126341,185979.595,764255.584,0,21
+126342,187660.1351,766066.0974,0,21
+126343,188770.3952,766753.0338,0,21
+126344,190283.1986,773628.9976,0,21
+126345,191385.6108,777455.995,0,21
+126346,193330.3656,779218.5732,0,21
+126347,194123.9555,781526.2648,0,21
+126348,195487.8398,785163.1102,0,21
+126349,197230.0097,786638.5068,0,21
+126350,198254.6526,789538.8367,0,21
+126351,199504.0496,791908.4967,0,21
+126352,200878.205,795047.6146,0,21
+126353,202190.3988,795725.0534,0,21
+126354,203411.4146,800769.067,0,21
+126355,205022.8871,800449.1319,0,21
+126356,205923.9827,804711.5015,0,21
+126357,207314.0329,807426.095,0,21
+126358,208747.4407,814720.748,0,21
+126359,209747.1981,815273.8462,0,21
+126360,210985.4529,819476.7158,0,21
+126361,213264.7554,824198.72,0,21
+126362,214855.1565,829987.0512,0,21
+126363,217270.0921,834063.6881,0,21
+126364,218792.1766,838247.4582,0,21
+126365,221203.7633,842920.4834,0,21
+126366,223137.5603,847061.688,0,21
+126367,224689.3727,852562.4274,0,21
+126368,227202.1077,855976.7839,0,21
+126369,228787.2519,860050.2792,0,21
+126370,230801.7736,865444.4671,0,21
+126371,233076.2904,870001.5895,0,21
+126372,234956.9573,875457.2223,0,21
+126373,236850.1788,878722.8963,0,21
+126374,238700.8981,883788.8817,0,21
+126375,241002.145,887778.9826,0,21
+126376,242884.0615,892360.5077,0,21
+126377,245013.7765,897247.6587,0,21
+126378,247268.1676,900297.1607,0,21
+126379,248964.3674,905169.4857,0,21
+126380,250674.4319,909602.0162,0,21
+126381,253159.3748,912713.5622,0,21
+126382,254415.7512,918367.4526,0,21
+126383,257028.5937,921943.753,0,21
+126384,258613.6273,926696.5656,0,21
+126385,260337.7898,931615.0371,0,21
+126386,263070.4131,935354.2202,0,21
+126387,264233.6125,940863.4087,0,21
+126388,266192.4294,942909.6004,0,21
+126389,268248.1469,949822.7232,0,21
+126390,269927.7327,952082.7312,0,21
+126391,271747.8471,957863.4246,0,21
+126392,274398.6723,959976.7528,0,21
+126393,275884.85,963764.1944,0,21
+126394,277947.0117,967852.5825,0,21
+126395,279662.8502,972104.3876,0,21
+126396,281161.8786,973881.7504,0,21
+126397,283289.5958,979550.4451,0,21
+126398,284351.1917,980404.2923,0,21
+126399,286568.4817,986544.8056,0,21
+126400,289118.644,987730.9796,0,21
+126401,290427.8408,991705.65,0,21
+126402,295358.3411,996180.3224,0,21
+126403,300211.5419,997701.2696,0,21
+126404,299966.514,1002624.221,0,21
+126405,304082.1753,1006110.014,0,21
+126406,304657.7152,1009042.695,0,21
+126407,308658.5253,1013528.251,0,21
+126408,309338.0535,1016245.973,0,21
+126409,312493.4995,1019769.916,0,21
+126410,314615.9474,1022370.615,0,21
+126411,316873.0399,1026371.833,0,21
+126412,319202.2824,1028790.558,0,21
+126413,320227.0203,1032720.181,0,21
+126414,323752.3006,1035355.044,0,21
+126415,325226.2442,1038310.6,0,21
+126416,326316.8388,1042069.463,0,21
+126417,330723.1318,1044256.939,0,21
+126418,330938.5642,1048183.094,0,21
+126419,333548.9174,1051389.739,0,21
+126420,336829.8091,1053199.628,0,21
+126421,346558.1614,1064438.539,0,21
+126422,349586.737,1067540.918,0,21
+126423,351108.6936,1070016.199,0,21
+126424,352905.134,1072292.047,0,21
+126425,354283.714,1073883.649,0,21
+126426,355960.3875,1076630.555,0,21
+126427,357775.6261,1078705.98,0,21
+126428,359447.1587,1079834.156,0,21
+126429,360976.456,1083119.813,0,21
+126430,361899.2115,1084686.076,0,21
+126431,364618.0156,1086742.652,0,21
+126432,364737.5202,1087894.938,0,21
+126433,367249.2578,1090700.163,0,21
+126434,368350.3397,1092461.077,0,21
+126435,369459.152,1093900.734,0,21
+126436,371297.0172,1096143.218,0,21
+126437,372828.6024,1098083.609,0,21
+126438,374096.557,1099949.807,0,21
+126439,375371.9471,1101449.913,0,21
+126440,377575.5171,1103558.155,0,21
+126441,378385.9658,1105330.91,0,21
+126442,379760.6396,1106641.025,0,21
+126443,380868.4529,1109694.262,0,21
+126444,383126.4212,1109459.267,0,21
+126445,384092.4374,1113494.064,0,21
+126446,384930.8773,1113001.891,0,21
+126447,386977.7874,1116980.344,0,21
+126448,387677.8406,1116960.184,0,21
+126449,389891.2446,1118844.928,0,21
+126450,391013.1081,1120693.852,0,21
+126451,391630.0323,1122728.972,0,21
+126452,393099.4657,1123578.513,0,21
+126453,394865.7484,1125727.13,0,21
+126454,395517.4932,1126914.814,0,21
+126455,397196.5492,1128394.109,0,21
+126456,398525.8189,1130509.941,0,21
+126457,398992.1245,1131223.555,0,21
+126458,401595.6098,1134766.261,0,21
+126459,401846.1015,1133160.363,0,21
+126460,403792.2298,1137074.395,0,21
+126461,404533.1739,1138358.071,0,21
+126462,405944.3699,1138776.448,0,21
+126463,406249.9033,1140920.066,0,21
+126464,409481.5128,1142557.058,0,21
+126465,408746.1222,1143409.067,0,21
+126466,411359.8476,1145509.447,0,21
+126467,411782.4527,1146948.193,0,21
+126468,413073.0445,1147260.12,0,21
+126469,414647.2824,1149773.361,0,21
+126470,415512.1125,1150948.133,0,21
+126471,416044.3679,1152167.55,0,21
+126472,418706.614,1153555.896,0,21
+126473,418420.0729,1155592.132,0,21
+126474,419963.5602,1155866.998,0,21
+126475,422101.5627,1158153.827,0,21
+126476,421806.7834,1159110.193,0,21
+126477,424320.0437,1160408.435,0,21
+126478,424736.1432,1162220.59,0,21
+126479,426093.2697,1163160.349,0,21
+126480,426547.7234,1164484.838,0,21
+126481,426008.8624,1166839.573,0,21
+126482,427846.0927,1168593.021,0,21
+126483,427670.0758,1170348.966,0,21
+126484,428852.6036,1172449.132,0,21
+126485,427416.6858,1174279.18,0,21
+126486,429048.5407,1175090.407,0,21
+126487,428177.2854,1177367.89,0,21
+126488,429224.3136,1178841.266,0,21
+126489,429228.9444,1179812.471,0,21
+126490,429506.306,1181592.484,0,21
+126491,429138.8986,1183289.286,0,21
+126492,429684.9778,1185179.959,0,21
+126493,430228.7595,1187049.815,0,21
+126494,429603.6696,1187242.099,0,21
+126495,430483.269,1189656.606,0,21
+126496,431019.6477,1190941.489,0,21
+126497,430434.0219,1192891.023,0,21
+126498,430388.6611,1193882.041,0,21
+126499,431179.1038,1195844.662,0,21
+126500,431420.8029,1197513.622,0,21
+126501,431521.0905,1198574.81,0,21
+126502,431387.3636,1199632.542,0,21
+126503,432004.6322,1202535.456,0,21
+126504,431235.2466,1202724.259,0,21
+126505,432943.8763,1204771.717,0,21
+126506,431200.6428,1206248.426,0,21
+126507,432046.4691,1207704.414,0,21
+126508,432497.4719,1209463.411,0,21
+126509,433065.5921,1209899.631,0,21
+126510,433060.3119,1212724.248,0,21
+126511,431298.9686,1213440.892,0,21
+126512,433867.4611,1214485.396,0,21
+126513,432186.2666,1217503.724,0,21
+126514,433356.1563,1216627.013,0,21
+126515,433500.4436,1220110.223,0,21
+126516,433834.1783,1220074.453,0,21
+126517,432913.5873,1222661.564,0,21
+126518,433569.5396,1223408.607,0,21
+126519,433447.2588,1225482.11,0,21
+126520,434640.9425,1226102.249,0,21
+126521,433147.8569,1227878.784,0,21
+126522,434336.9907,1229691.437,0,21
+126523,433570.7756,1229914.121,0,21
+126524,433876.1331,1232304.302,0,21
+126525,434667.2095,1233863.854,0,21
+126526,434053.6846,1234573.323,0,21
+126527,434708.2086,1236172.126,0,21
+126528,433696.6261,1237748.551,0,21
+126529,435249.0799,1239613.085,0,21
+126530,433444.4319,1240370.804,0,21
+126531,435591.3617,1241465.168,0,21
+126532,434173.063,1243537.356,0,21
+126533,434527.2153,1244725.928,0,21
+126534,434790.3845,1245097.661,0,21
+126535,434975.4382,1248051.542,0,21
+126536,434572.4691,1248163.695,0,21
+126537,435319.1088,1250575.88,0,21
+126538,434227.0536,1251084.207,0,21
+126539,436252.635,1252915.06,0,21
+126540,433855.7633,1254323.827,0,21
+126541,0,0,0,21
+126542,0,0,0,21
+126543,0,264.6270005,0,21
+126544,0,0,0,21
+126545,269173.7456,0,968441.0549,21
+126546,0,0,0,21
+126547,339671.429,0,0,21
+126548,0,0,0,21
+126549,0,0,0,21
+126550,0,0,0,21
+126551,0,0,0,21
+126552,0,0,0,21
+126553,0,0,0,21
+126554,0,0,0,21
+126555,0,0,0,21
+126556,0,0,0,21
+126557,0,0,0,21
+126558,0,0,0,21
+126559,0,0,0,21
+126560,0,0,0,21
+126561,0,0,0,21
+126562,0,0,0,21
+126563,0,0,0,21
+126564,0,0,0,21
+126565,0,0,0,21
+126566,0,0,0,21
+126567,0,0,0,21
+126568,0,0,0,21
+126569,0,0,0,21
+126570,0,0,0,21
+126571,0,367910.6907,0,21
+126572,0,0,0,21
+126573,0,0,0,21
+126574,0,0,0,21
+126575,0,0,0,21
+126576,0,0,0,21
+126577,0,0,0,21
+126578,0,0,0,21
+126579,0,0,942381.5517,21
+126580,0,0,0,21
+126581,0,0,0,21
+126582,0,0,0,21
+126583,339671.3676,0,0,21
+126584,0,0,0,21
+126585,0,0,0,21
+126586,0,0,0,21
+126587,0,0,0,21
+126588,0,0,0,21
+126589,0,0,0,21
+126590,0,0,0,21
+126591,0,0,0,21
+126592,0,26412.04252,0,21
+126593,0,0,0,21
+126594,0,2793.613638,0,21
+126595,0,6788.185865,0,21
+126596,0,7303.840966,0,21
+126597,0,7089.165277,0,21
+126598,0,7350.739566,0,21
+126599,0,7468.384919,0,21
+126600,0,7686.668922,0,15.6
+126601,0,7864.645204,0,15.6
+126602,0,7987.799932,0,15.6
+126603,0,8057.726824,0,15.6
+126604,0,8195.30927,0,15.6
+126605,0,8253.128867,0,15.6
+126606,0,8353.894239,0,15.6
+126607,0,8456.699729,0,15.6
+126608,0,8531.788163,0,15.6
+126609,0,8646.126,0,15.6
+126610,0,8660.857166,0,15.6
+126611,0,8819.354387,0,15.6
+126612,0,9037.363784,0,15.6
+126613,0,9517.98046,919526.9203,15.6
+126614,0,9412.437053,0,15.6
+126615,0,377558.5857,0,15.6
+126616,0,9772.263813,0,15.6
+126617,0,9925.547463,0,15.6
+126618,0,10051.96342,0,15.6
+126619,339679.9829,10197.62143,0,15.6
+126620,0,10308.59379,0,15.6
+126621,0,10472.32274,0,15.6
+126622,0,0,0,15.6
+126623,0,0,0,15.6
+126624,0,0,0,15.6
+126625,0,0,0,15.6
+126626,0,0,0,15.6
+126627,0,37249.12324,0,15.6
+126628,0,1467.410757,0,15.6
+126629,0,4649.475037,0,15.6
+126630,0,16521.43655,0,15.6
+126631,0,10865.67666,0,15.6
+126632,0,11582.51304,0,15.6
+126633,0,11840.98506,0,15.6
+126634,0,11945.41576,0,15.6
+126635,0,12084.75017,0,15.6
+126636,0,12122.27304,0,15.6
+126637,0,12263.82497,0,15.6
+126638,0,12321.11734,0,15.6
+126639,0,12415.5688,0,15.6
+126640,0,12535.78616,0,15.6
+126641,0,12589.08044,0,15.6
+126642,0,12685.66285,0,15.6
+126643,0,12761.97538,0,15.6
+126644,0,12876.13373,0,15.6
+126645,0,12895.9394,0,15.6
+126646,0,13047.46846,0,15.6
+126647,0,13070.46533,897176.8456,15.6
+126648,0,13153.87152,0,15.6
+126649,0,13258.69425,0,15.6
+126650,0,13300.69365,0,15.6
+126651,0,13398.69287,0,15.6
+126652,0,13451.92959,0,15.6
+126653,0,13544.42046,0,15.6
+126654,0,13605.60849,0,15.6
+126655,339698.8327,13644.48157,0,15.6
+126656,0,13763.47436,0,15.6
+126657,0,0,0,15.6
+126658,0,0,0,15.6
+126659,0,367903.3985,0,15.6
+126660,0,0,0,15.6
+126661,0,44702.73767,0,15.6
+126662,0,3121.217858,0,15.6
+126663,0,11809.27976,0,15.6
+126664,0,18243.14424,0,15.6
+126665,0,14480.96415,0,15.6
+126666,0,15179.40798,0,15.6
+126667,0,15300.84561,0,15.6
+126668,0,15499.03664,0,15.6
+126669,0,15616.78958,0,15.6
+126670,0,15739.97507,0,15.6
+126671,0,15897.71951,0,15.6
+126672,0,16012.46612,0,15.6
+126673,0,16191.27683,0,15.6
+126674,0,16295.40299,0,15.6
+126675,0,16446.47887,0,15.6
+126676,0,16540.82806,0,15.6
+126677,0,16758.25571,0,15.6
+126678,0,16812.07232,0,15.6
+126679,0,16982.87943,0,15.6
+126680,0,17099.74842,0,15.6
+126681,0,17206.01135,0,15.6
+126682,0,17411.47491,878825.7141,15.6
+126683,0,17472.24973,0,15.6
+126684,0,17625.61722,0,15.6
+126685,0,17757.1054,0,15.6
+126686,0,17893.94016,0,15.6
+126687,0,18037.34568,0,15.6
+126688,0,18110.53142,0,15.6
+126689,0,18277.82437,0,15.6
+126690,0,18385.13601,0,15.6
+126691,0,0,0,15.6
+126692,339699.217,0,0,15.6
+126693,0,0,0,15.6
+126694,0,60199.78421,0,15.6
+126695,0,3630.078191,0,15.6
+126696,0,16843.48528,0,15.6
+126697,0,22748.55142,0,15.6
+126698,0,18988.4366,0,15.6
+126699,0,19549.25062,0,15.6
+126700,0,19676.10127,0,15.6
+126701,0,19836.32246,0,15.6
+126702,0,19904.62879,0,15.6
+126703,0,20064.40462,0,15.6
+126704,0,388043.2157,0,15.6
+126705,0,20290.52239,0,15.6
+126706,0,20392.27238,0,15.6
+126707,0,20574.65913,0,15.6
+126708,0,20574.6572,0,15.6
+126709,0,20794.84788,0,15.6
+126710,0,20853.36279,0,15.6
+126711,0,20997.29391,0,15.6
+126712,0,21096.64033,0,15.6
+126713,0,21253.44364,0,15.6
+126714,0,21291.77733,0,15.6
+126715,0,21472.09727,0,15.6
+126716,0,282728.7993,0,15.6
+126717,0,21653.86643,859736.8654,15.6
+126718,0,39820.78289,0,15.6
+126719,0,76027.82901,0,15.6
+126720,0,92630.92305,0,15.6
+126721,0,85057.8143,0,15.6
+126722,0,83224.00713,0,15.6
+126723,0,86942.36932,0,15.6
+126724,0,65039.50405,0,15.6
+126725,0,66113.95318,0,15.6
+126726,0,66526.49645,0,15.6
+126727,0,142833.9734,0,15.6
+126728,0,77292.70303,0,15.6
+126729,339703.217,82766.0525,0,15.6
+126730,0,99239.62132,0,15.6
+126731,0,92387.2512,0,15.6
+126732,0,94175.40267,0,15.6
+126733,0,94904.92913,0,15.6
+126734,0,95848.60826,0,15.6
+126735,0,96388.31201,0,15.6
+126736,0,97482.86653,0,15.6
+126737,0,98141.77198,0,15.6
+126738,0,98726.64027,0,15.6
+126739,0,99760.50069,0,15.6
+126740,0,100585.7854,0,15.6
+126741,0,102927.8819,0,15.6
+126742,0,106686.3913,0,15.6
+126743,0,106053.0183,0,15.6
+126744,0,108302.628,0,15.6
+126745,0,109594.666,0,15.6
+126746,0,24642.44089,0,15.6
+126747,0,24750.6747,0,15.6
+126748,0,24803.39838,0,15.6
+126749,0,392804.695,0,15.6
+126750,0,25046.95692,0,15.6
+126751,0,25057.00728,0,15.6
+126752,0,337966.6139,843743.907,15.6
+126753,0,43641.07373,0,15.6
+126754,0,60021.61731,0,15.6
+126755,0,154195.5689,0,15.6
+126756,0,114108.3111,0,15.6
+126757,0,101815.8603,0,15.6
+126758,0,97913.62005,0,15.6
+126759,0,173814.4462,0,15.6
+126760,0,110046.1024,0,15.6
+126761,0,129321.3248,0,15.6
+126762,0,133023.2482,0,15.6
+126763,0,131121.2075,0,15.6
+126764,0,132985.7207,0,15.6
+126765,0,133851.4045,0,15.6
+126766,339731.4391,134992.7281,0,15.6
+126767,0,136137.5633,0,15.6
+126768,0,137664.071,0,15.6
+126769,0,137929.34,0,15.6
+126770,0,139729.8186,0,15.6
+126771,0,140571.4534,0,15.6
+126772,0,141941.5837,0,15.6
+126773,0,142496.5705,0,15.6
+126774,0,144010.6363,0,15.6
+126775,0,145069.3898,0,15.6
+126776,0,146084.5822,0,15.6
+126777,0,147007.2535,0,15.6
+126778,0,148227.3676,0,15.6
+126779,0,149377.0016,0,15.6
+126780,0,150088.5303,0,15.6
+126781,0,151093.844,0,15.6
+126782,0,27686.17804,0,15.6
+126783,0,27700.03369,0,15.6
+126784,0,27745.99899,0,15.6
+126785,0,27686.16924,0,15.6
+126786,0,27778.80784,0,15.6
+126787,0,422083.9369,829900.5711,15.6
+126788,0,70541.3946,0,15.6
+126789,0,89836.51875,0,15.6
+126790,0,160690.5811,0,15.6
+126791,0,201474.8672,0,15.6
+126792,0,138158.434,0,15.6
+126793,0,521211.4304,0,15.6
+126794,0,159465.2644,0,15.6
+126795,0,156032.3842,0,15.6
+126796,0,156677.0758,0,15.6
+126797,0,156686.7705,0,15.6
+126798,0,157124.8569,0,15.6
+126799,0,157127.4038,0,15.6
+126800,0,157796.2941,0,15.6
+126801,0,157729.2094,0,15.6
+126802,0,157981.9984,0,15.6
+126803,339756.2607,158254.3042,0,15.6
+126804,0,158451.4425,0,15.6
+126805,0,158578.556,0,15.6
+126806,0,159125.017,0,15.6
+126807,0,159403.2762,0,15.6
+126808,0,159156.8704,0,15.6
+126809,0,159979.994,0,15.6
+126810,0,159716.9558,0,15.6
+126811,0,159970.5215,0,15.6
+126812,0,160605.1013,0,15.6
+126813,0,160486.9068,0,15.6
+126814,0,160575.2347,0,15.6
+126815,0,161440.7713,0,15.6
+126816,0,160891.6438,0,15.6
+126817,0,28045.80624,0,15.6
+126818,0,28028.42472,0,15.6
+126819,0,28126.66398,0,15.6
+126820,0,27980.24423,0,15.6
+126821,0,427522.1958,0,15.6
+126822,0,18319.86508,814981.5022,15.6
+126823,0,196844.2803,0,15.6
+126824,0,174305.303,0,15.6
+126825,0,155616.9413,0,15.6
+126826,0,167172.5747,0,15.6
+126827,0,163604.3698,0,15.6
+126828,0,163460.2308,0,15.6
+126829,0,163781.7592,0,15.6
+126830,0,163936.6974,0,15.6
+126831,0,164347.0736,0,15.6
+126832,0,163934.4634,0,15.6
+126833,0,164531.1831,0,15.6
+126834,0,164670.005,0,15.6
+126835,0,164347.0335,0,15.6
+126836,0,165326.8328,0,15.6
+126837,0,164362.5381,0,15.6
+126838,0,533429.8806,0,15.6
+126839,0,164841.1449,0,15.6
+126840,339778.2389,165542.6622,0,15.6
+126841,0,165865.793,0,15.6
+126842,0,167013.5962,0,15.6
+126843,0,167878.8663,0,15.6
+126844,0,168406.565,0,15.6
+126845,0,169569.665,0,15.6
+126846,0,170171.2577,0,15.6
+126847,0,171384.3822,0,15.6
+126848,0,171644.5983,0,15.6
+126849,0,172862.9311,0,15.6
+126850,0,173235.7531,0,15.6
+126851,0,29006.3415,0,15.6
+126852,0,29134.87118,0,15.6
+126853,0,0,0,15.6
+126854,0,0,0,15.6
+126855,0,577290.1087,0,15.6
+126856,0,35564.94607,0,15.6
+126857,0,146892.6428,803197.5964,15.6
+126858,0,220096.431,0,15.6
+126859,0,175507.6509,0,15.6
+126860,0,182189.807,0,15.6
+126861,0,182712.5013,0,15.6
+126862,0,183723.52,0,15.6
+126863,0,184183.4191,0,15.6
+126864,0,184990.0459,0,15.6
+126865,0,185675.2874,0,15.6
+126866,0,186609.855,0,15.6
+126867,0,187311.2783,0,15.6
+126868,0,187625.0947,0,15.6
+126869,0,189172.6891,0,15.6
+126870,0,189267.0752,0,15.6
+126871,0,190055.8247,0,15.6
+126872,0,191513.5931,0,15.6
+126873,0,191447.7198,0,15.6
+126874,0,192374.8726,0,15.6
+126875,0,193148.3938,0,15.6
+126876,0,194282.617,0,15.6
+126877,339779.9858,194906.2556,0,15.6
+126878,0,195107.7785,0,15.6
+126879,0,196445.3536,0,15.6
+126880,0,196875.3268,0,15.6
+126881,0,197949.3372,0,15.6
+126882,0,566076.8069,0,15.6
+126883,0,199550.2903,0,15.6
+126884,0,199728.2374,0,15.6
+126885,0,0,0,15.6
+126886,0,0,0,15.6
+126887,0,91640.19074,0,15.6
+126888,0,16055.41674,0,15.6
+126889,0,631114.3703,0,15.6
+126890,0,96885.41963,0,15.6
+126891,0,124369.2138,0,15.6
+126892,0,269605.6168,791395.8951,15.6
+126893,0,198166.6783,0,15.6
+126894,0,208615.4498,0,15.6
+126895,0,209111.3602,0,15.6
+126896,0,209822.2474,0,15.6
+126897,0,210935.382,0,15.6
+126898,0,211387.1395,0,15.6
+126899,0,211676.1718,0,15.6
+126900,0,212831.2325,0,15.6
+126901,85579.71397,1295891.774,0,15.6
+126902,33522.44649,1095087.232,0,15.6
+126903,916.8565055,218000.7027,0,15.6
+126904,27541.93439,506574.1683,0,15.6
+126905,21161.18408,581706.5546,0,15.6
+126906,20174.84407,427180.7819,0,15.6
+126907,20254.06416,475288.1589,0,15.6
+126908,20272.68791,463199.0345,0,15.6
+126909,20314.44855,461686.2772,0,15.6
+126910,20339.31477,461647.0696,0,15.6
+126911,20303.74034,460306.2488,0,15.6
+126912,20402.51732,461274.1908,0,15.6
+126913,20336.14396,460403.0632,0,15.6
+126914,360188.8483,460547.4952,0,15.6
+126915,20427.26331,460777.9658,0,15.6
+126916,20455.09672,460310.0397,0,15.6
+126917,20439.60355,396042.3723,0,15.6
+126918,20518.04272,395371.3209,0,15.6
+126919,20533.50783,113913.3998,0,15.6
+126920,20560.0952,68730.73886,0,15.6
+126921,20594.14834,1093871.284,0,15.6
+126922,20622.71773,293730.2186,0,15.6
+126923,20636.1142,536107.8819,0,15.6
+126924,20695.4077,433950.1011,0,15.6
+126925,20717.02783,481385.835,0,15.6
+126926,20737.08644,830911.1139,780565.6298,15.6
+126927,20812.07468,462921.6651,0,15.6
+126928,20819.30822,462687.2983,0,15.6
+126929,20855.69104,463837.9734,0,15.6
+126930,20910.45782,463388.9041,0,15.6
+126931,0,464549.6212,0,15.6
+126932,0,463473.7009,0,15.6
+126933,0,465220.2191,0,15.6
+126934,0,464188.0946,0,15.6
+126935,75223.55277,465885.5344,0,15.6
+126936,5771.918195,465185.2883,0,15.6
+126937,13324.05198,465981.5945,0,15.6
+126938,28018.744,466586.7345,0,15.6
+126939,20200.31642,466226.9538,0,15.6
+126940,21328.26164,467755.6393,0,15.6
+126941,21377.74269,467550.0393,0,15.6
+126942,21363.40204,467457.3237,0,15.6
+126943,21491.83356,468844.4453,0,15.6
+126944,21436.28708,468536.5336,0,15.6
+126945,21537.78677,469475.4067,0,15.6
+126946,21552.11336,470016.956,0,15.6
+126947,21625.22212,469820.794,0,15.6
+126948,21634.68644,470930.2664,0,15.6
+126949,361443.704,404501.4157,0,15.6
+126950,21729.93118,405023.4437,0,15.6
+126951,21774.85136,113912.7387,0,15.6
+126952,21807.15193,72505.89756,0,15.6
+126953,21812.72315,1124919.888,0,15.6
+126954,21936.17972,302855.9966,0,15.6
+126955,21906.69306,563129.9107,0,15.6
+126956,21958.91489,440406.8765,0,15.6
+126957,22039.87737,498652.4073,0,15.6
+126958,22047.69896,476861.4696,0,15.6
+126959,22094.19339,477434.3791,0,15.6
+126960,22140.69328,477751.7671,771643.8877,17.8
+126961,1061715.575,2466867.842,0,17.8
+126962,906611.6423,1434373.174,0,17.8
+126963,468681.6092,1259914.532,0,17.8
+126964,381214.9688,791706.3708,0,17.8
+126965,339579.3471,834667.5252,0,17.8
+126966,299328.9635,1000252.403,0,17.8
+126967,400730.2739,891421.1751,0,17.8
+126968,376463.8798,896651.4601,0,17.8
+126969,352979.3671,901138.5443,0,17.8
+126970,353492.6681,896439.4217,0,17.8
+126971,356752.1767,895611.2907,0,17.8
+126972,352457.0306,891114.6493,0,17.8
+126973,350871.3801,889447.7073,0,17.8
+126974,350313.8064,886518.1294,0,17.8
+126975,348971.1401,884678.6254,0,17.8
+126976,347574.1482,882412.6445,0,17.8
+126977,346732.2784,879526.2001,0,17.8
+126978,345652.3769,878040.7593,0,17.8
+126979,344651.077,874739.9747,0,17.8
+126980,343411.9533,873044.7589,0,17.8
+126981,343035.5852,749030.2358,0,17.8
+126982,341332.1057,927022.1382,0,17.8
+126983,340867.1673,160511.0083,0,17.8
+126984,680112.1494,1225655.453,0,17.8
+126985,338836.1813,622862.0905,0,17.8
+126986,330773.6452,892837.2491,0,17.8
+126987,329714.2402,887573.5645,0,17.8
+126988,329136.7109,846999.1524,0,17.8
+126989,328074.3992,856900.6231,0,17.8
+126990,327511.2257,856209.4962,0,17.8
+126991,54336.89287,821696.7087,0,17.8
+126992,54228.87701,823467.6246,0,17.8
+126993,54050.13174,818959.0791,0,17.8
+126994,808661.0512,900358.4058,761686.3875,17.8
+126995,256606.837,833462.3103,0,17.8
+126996,262792.5395,844095.9492,0,17.8
+126997,306415.6385,846004.8424,0,17.8
+126998,267359.3119,833716.1584,0,17.8
+126999,354750.5081,835269.8906,0,17.8
+127000,317177.3397,1199772.818,0,17.8
+127001,319793.0725,830610.3509,0,17.8
+127002,318809.1135,828020.0651,0,17.8
+127003,318819.8531,824427.9414,0,17.8
+127004,317701.0772,824662.5569,0,17.8
+127005,316358.5789,819772.7728,0,17.8
+127006,316573.5053,820927.0993,0,17.8
+127007,314825.5166,815813.8167,0,17.8
+127008,315485.0167,816729.4471,0,17.8
+127009,313578.957,811706.9718,0,17.8
+127010,313750.4112,811468.6377,0,17.8
+127011,312796.3052,810390.4565,0,17.8
+127012,312294.394,692518.4029,0,17.8
+127013,311417.8891,864075.5247,0,17.8
+127014,310760.4018,137720.5284,0,17.8
+127015,310767.3305,135797.9094,0,17.8
+127016,309357.4796,1229439.667,0,17.8
+127017,309094.4108,771052.7973,0,17.8
+127018,308602.6643,606519.1268,0,17.8
+127019,647461.6912,865866.5565,0,17.8
+127020,307122.5034,842192.8322,0,20
+127021,2277908.558,2613878.616,0,20
+127022,653431.282,2021517.759,0,20
+127023,222862.5303,673756.5605,0,20
+127024,366061.378,806356.9008,0,20
+127025,415850.1992,1067939.22,0,20
+127026,446363.7187,1068838.431,0,20
+127027,482539.0141,972299.8228,6765.133297,20
+127028,435144.4445,997760.875,19589.51322,20
+127029,454131.9538,981679.8083,10104.39786,20
+127030,452118.4013,978316.4401,13433.16253,20
+127031,452556.9178,977499.3468,13672.27032,20
+127032,450631.8339,975428.0691,13897.83757,20
+127033,451640.1164,970804.3227,13915.8944,20
+127034,448776.0271,970636.244,14154.33209,20
+127035,450804.1755,966566.1405,14739.99746,20
+127036,448202.519,964855.7687,14771.68314,20
+127037,449070.9192,964125.1842,14883.15552,20
+127038,447319.2096,960575.7798,14970.87376,20
+127039,448702.6096,959838.9086,15201.5912,20
+127040,446288.2106,957733.1571,15446.0859,20
+127041,447375.0419,955550.1861,15555.13559,20
+127042,445944.386,953778.8835,15656.5516,20
+127043,446874.1864,953381.2123,15652.03162,20
+127044,445431.112,950345.0689,16156.50927,20
+127045,445813.9175,950809.4073,15975.98936,20
+127046,444690.6822,946063.9909,16228.4148,20
+127047,445771.8586,947410.2815,16297.76184,20
+127048,444845.7155,944776.2728,16524.10813,20
+127049,444808.4544,944937.1092,16585.45932,20
+127050,443961.6282,940927.2606,16617.01439,20
+127051,444669.4992,942830.9627,16883.33883,20
+127052,443575.8791,938623.7866,17003.16281,20
+127053,443542.5223,938756.6252,17065.8876,20
+127054,444835.8231,938285.4391,17215.36817,20
+127055,443173.1253,936065.5014,17332.70691,20
+127056,443954.7372,935265.9754,17527.13445,20
+127057,442150.3352,934233.6597,17516.73413,20
+127058,443986.628,932824.3165,17593.46241,20
+127059,443397.5683,932815.7812,17927.88955,20
+127060,442775.9286,930007.0393,17866.93498,20
+127061,443609.6955,931547.7808,18010.09125,20
+127062,442532.2898,928445.3029,18148.03753,20
+127063,442607.434,928921.6655,18221.71095,20
+127064,443071.2564,926030.1099,18663.01007,20
+127065,442790.6961,928787.9695,18601.92667,20
+127066,442692.8898,923279.8757,18692.86904,20
+127067,442603.7721,925972.314,18967.81507,20
+127068,442665.6614,922611.0941,19012.39164,20
+127069,443189.2157,924528.042,19090.81788,20
+127070,442039.7681,920046.0363,19348.8856,20
+127071,442675.2137,921986.4144,19397.17394,20
+127072,442665.8258,921139.1416,19448.8388,20
+127073,442988.1512,918093.5608,19732.37517,20
+127074,441503.0308,919900.742,19657.11257,20
+127075,443370.8563,918626.1212,19838.63594,20
+127076,442768.978,916540.0775,20106.55728,20
+127077,442299.9716,916853.4538,20210.86903,20
+127078,443047.1355,917116.5748,20403.02047,20
+127079,442639.3742,914896.7828,20386.24432,20
+127080,442029.4561,914129.97,20856.26866,21
+127081,555212.3037,1885555.073,17863.90295,21
+127082,547903.6593,1877881.954,17376.2854,21
+127083,549729.9924,1877439.349,17579.62206,21
+127084,547838.4658,1874293.984,17565.39379,21
+127085,547952.1253,1873867.608,17645.50643,21
+127086,546638.4041,1871748.311,17579.97248,21
+127087,546330.9521,1871885.588,17742.73725,21
+127088,544731.9277,1867059.977,17750.07341,21
+127089,545453.2955,1869508.278,17785.89374,21
+127090,544149.3211,1865454.854,17921.88015,21
+127091,543980.8639,1865806.091,17864.67525,21
+127092,544177.2491,1862428.375,18081.68982,21
+127093,542700.3172,1863494.924,17949.98029,21
+127094,543807.1301,2149940.784,18258.58419,21
+127095,543023.214,1859737.056,18268.20163,21
+127096,542143.3347,1858974.229,18327.02117,21
+127097,542453.1895,1857260.419,18350.25334,21
+127098,543309.5536,1856183.639,18421.51621,21
+127099,541525.6587,1854886.214,18666.44053,21
+127100,541635.5405,1854682.334,18505.40587,21
+127101,541964.8813,1851046.45,18785.60802,21
+127102,542242.8821,1853657.138,18677.44661,21
+127103,540594.156,1849128.495,19001.76664,21
+127104,541427.628,1850450.721,19629.1358,21
+127105,541715.5864,1847553.114,19211.32384,21
+127106,540341.5827,1847387.618,19801.6188,21
+127107,540436.78,1843836.839,19848.42196,21
+127108,541675.3331,1841586.379,19896.98316,21
+127109,540549.1411,1839573.191,20157.03011,21
+127110,540463.4761,1839473.637,20113.94296,21
+127111,540358.3429,1836618.81,20529.53758,21
+127112,539624.097,1835654.89,20447.39107,21
+127113,541340.4916,1834333.226,20965.26549,21
+127114,538839.949,1831783.167,19787.94997,21
+127115,540151.9956,1831202.379,19992.96187,21
+127116,539354.9338,1829536.671,20032.32753,21
+127117,539671.714,1828978.48,19959.90983,21
+127118,538973.1176,1825144.228,20181.703,21
+127119,539391.1042,1826876.012,19873.58439,21
+127120,539607.748,1822576.466,19961.53467,21
+127121,538793.7285,1822769.696,20156.05533,21
+127122,538782.0764,1820666.652,20018.56546,21
+127123,538930.6751,1819880.803,19960.54992,21
+127124,538193.0189,1818326.017,20182.67345,21
+127125,539058.4153,1816793.502,20110.58182,21
+127126,537792.2755,1815810.394,19974.5986,21
+127127,538535.8651,1814209.412,20142.0211,21
+127128,538683.0239,1813769.378,20175.76368,21
+127129,538042.4246,1810975.954,20027.7001,21
+127130,537941.3871,1810465.589,20192.2499,21
+127131,538116.4033,1810065.092,19871.33209,21
+127132,537657.1652,1806756.824,10579.32503,21
+127133,537448.4075,1807761.233,8458.49668,21
+127134,538619.764,1805141.914,7237.859021,21
+127135,536949.8447,1805176.841,6258.767763,21
+127136,537443.0162,1802345.923,5491.572908,21
+127137,537526.7706,1802352.544,4315.358555,21
+127138,537069.66,1800723.056,4201.131067,21
+127139,537167.0541,1799773.542,4010.097098,21
+127140,537885.6177,1798507.58,4037.199034,21
+127141,374984.5547,1564754.637,0,21
+127142,369445.71,1544649.947,0,21
+127143,368245.6604,1540342.364,0,21
+127144,366288.6074,1533450.201,0,21
+127145,364780.6028,1530223.594,0,21
+127146,363452.3013,1523827.065,0,21
+127147,361887.2714,1520980.101,0,21
+127148,360564.871,1516418.15,0,21
+127149,359541.3972,1511270.865,0,21
+127150,357886.2456,1508490.672,0,21
+127151,356804.0508,1790533.327,0,21
+127152,355746.7617,1500628.655,0,21
+127153,353850.0083,1495720.688,0,21
+127154,353460.6689,1492331.436,0,21
+127155,351615.1311,1489202.521,0,21
+127156,351092.1025,1471014.543,0,21
+127157,349857.4288,1463941.96,0,21
+127158,348145.4177,1461119.554,0,21
+127159,348099.0977,1457649.028,0,21
+127160,345901.0972,1453317.438,0,21
+127161,345536.3852,1451111.123,0,21
+127162,344799.2296,1446325.452,0,21
+127163,343085.6549,1444565.246,0,21
+127164,342560.2625,1439924.955,0,21
+127165,341187.5966,1437463.438,0,21
+127166,340486.7585,1435651.034,0,21
+127167,339510.5359,1433432.372,0,21
+127168,339008.2466,1430481.07,0,21
+127169,337361.4955,1429158.904,0,21
+127170,336944.1732,1426286.888,0,21
+127171,335804.6886,1422626.111,0,21
+127172,334934.4954,1419726.83,0,21
+127173,334380.8498,1416742.353,0,21
+127174,333460.635,1414043.259,0,21
+127175,332155.8275,1411466.211,0,21
+127176,331722.4337,1408575.405,0,21
+127177,330555.9988,1405563.711,0,21
+127178,330250.7395,1402914.277,0,21
+127179,328849.5651,1400157.514,0,21
+127180,328298.5262,1397350.577,0,21
+127181,327569.8663,1391703.768,0,21
+127182,326417.4267,1388890.114,0,21
+127183,325838.8484,1385410.135,0,21
+127184,325290.1213,1382845.342,0,21
+127185,324083.8138,1379815.655,0,21
+127186,323700.6821,1377189.292,0,21
+127187,322790.1516,1374066.629,0,21
+127188,321800.6635,1370897.366,0,21
+127189,321177.8875,1368646.403,0,21
+127190,320796.5265,1365542.134,0,21
+127191,319441.4807,1362809.757,0,21
+127192,319033.5559,1359633.617,0,21
+127193,318524.0302,1357027.362,0,21
+127194,317516.8755,1354560.674,0,21
+127195,316668.9359,1351200.454,0,21
+127196,316106.8844,1348812.709,0,21
+127197,315675.5268,1345879.454,0,21
+127198,314415.4775,1343052.57,0,21
+127199,314346.6186,1340207.682,0,21
+127200,313005.323,1337650.098,0,21
+127201,312493.8029,1335897.214,0,21
+127202,310849.6358,1333962.791,0,21
+127203,309810.9443,1332754.097,0,21
+127204,308684.5171,1330556.223,0,21
+127205,307791.4878,1329462.843,0,21
+127206,306093.0772,1327670.422,0,21
+127207,305288.5631,1325640.968,0,21
+127208,304165.4074,1324435.839,0,21
+127209,302948.723,1322662.673,0,21
+127210,302055.5342,1321098.674,0,21
+127211,300516.5406,1318754.884,0,21
+127212,299726.1476,1318122.866,0,21
+127213,298453.0107,1316145.955,0,21
+127214,297367.6795,1314099.656,0,21
+127215,296223.4422,1312973.979,0,21
+127216,295139.4294,1310708.09,0,21
+127217,294147.6651,1310085.837,0,21
+127218,292701.4762,1307702.125,0,21
+127219,291846.8427,1306297.503,0,21
+127220,290492.849,1304542.343,0,21
+127221,289971.1912,1303241.165,0,21
+127222,288307.535,1301200.917,0,21
+127223,287724.3387,1299745.985,0,21
+127224,286176.8771,1297593.538,0,21
+127225,285468.4676,1296966.01,0,21
+127226,284543.6583,1294493.999,0,21
+127227,283123.4877,1293032.304,0,21
+127228,282383.5322,1293255.993,0,21
+127229,280960.2772,1292008.08,0,21
+127230,280428.263,1289742.8,0,21
+127231,278804.4893,1289205.571,0,21
+127232,278547.2251,1287421.509,0,21
+127233,276533.7616,1287164.61,0,21
+127234,276279.4797,1285352.637,0,21
+127235,274771.0953,1284556.822,0,21
+127236,273718.4599,1282302.78,0,21
+127237,272916.1,1279854.667,0,21
+127238,271683.0618,1277875.823,0,21
+127239,270749.8816,1277289.48,0,21
+127240,269704.6573,1275899.216,0,21
+127241,268576.9576,1274428.807,0,21
+127242,267532.3901,1273501.034,0,21
+127243,266469.1775,1272285.989,0,21
+127244,265801.0556,1271053.244,0,21
+127245,264491.81,1269682.024,0,21
+127246,263274.8941,1268878.894,0,21
+127247,262568.6715,1267567.077,0,21
+127248,261295.1198,1266038.878,0,21
+127249,260581.7637,1265346.774,0,21
+127250,259379.461,1263592.028,0,21
+127251,258057.6335,1262988.99,0,21
+127252,257504.0629,1261374.832,0,21
+127253,256438.7292,1260252.079,0,21
+127254,255108.2406,1258718.787,0,21
+127255,254251.8365,1257974.097,0,21
+127256,253360.251,1256658.796,0,21
+127257,252089.189,1255518.653,0,21
+127258,251224.4484,1253483.324,0,21
+127259,250347.231,1253314.656,0,21
+127260,248909.0029,1251437.179,0,21
+127261,253048.3025,1253319.509,0,21
+127262,251643.6957,1252117.198,0,21
+127263,249959.3657,1249312.032,0,21
+127264,249583.5383,1247356.131,0,21
+127265,247667.2437,1245171.562,0,21
+127266,246636.8246,1243254.947,0,21
+127267,245333.1218,1238761.662,0,21
+127268,244314.3266,1236231.979,0,21
+127269,242903.5049,1234214.3,0,21
+127270,241474.0561,1231263.739,0,21
+127271,240616.5021,1229720.902,0,21
+127272,239131.2082,1226635.919,0,21
+127273,237895.1679,1224509.63,0,21
+127274,236730.2586,1222390.222,0,21
+127275,235311.1853,1220037.541,0,21
+127276,234009.8722,1217663.522,0,21
+127277,233133.2823,1214975.369,0,21
+127278,231449.0344,1213661.977,0,21
+127279,230395.0803,1210163.843,0,21
+127280,229167.981,1208498.983,0,21
+127281,227821.7061,1205943.371,0,21
+127282,226710.7414,1203801.324,0,21
+127283,225396.1575,1201508.405,0,21
+127284,223856.369,1198978.661,0,21
+127285,222928.0545,1196669.154,0,21
+127286,221693.0292,1194525.031,0,21
+127287,220260.4606,1191992.358,0,21
+127288,219375.0076,1189880.552,0,21
+127289,217536.6457,1187597.13,0,21
+127290,216924.6033,1184872.424,0,21
+127291,214961.3058,1182292.204,0,21
+127292,214069.7528,1179679.889,0,21
+127293,213245.5911,1176028.023,0,21
+127294,211508.0739,1173525.928,0,21
+127295,210327.1801,1170093.652,0,21
+127296,209097.5407,1167119.889,0,21
+127297,207900.0716,1163789.954,0,21
+127298,206806.1287,1160723.039,0,21
+127299,205020.5833,1157186.973,0,21
+127300,205166.4473,1152132.211,0,21
+127301,203421.1387,1147602.425,0,21
+127302,202452.0847,1144338.634,0,21
+127303,201251.07,1141127.254,0,21
+127304,199879.9807,1137325.037,0,21
+127305,198664.258,1133849.874,0,21
+127306,197292.0042,1129927.653,0,21
+127307,196106.6853,1126383.852,0,21
+127308,194992.167,1123095.276,0,21
+127309,193657.5056,1118642.868,0,21
+127310,192411.8677,1115696.656,0,21
+127311,190975.7234,1111162.55,0,21
+127312,190069.829,1108149.218,0,21
+127313,188656.2266,1103899.07,0,21
+127314,187086.0229,1100512.831,0,21
+127315,186389.3567,1097075.921,0,21
+127316,184760.3799,1092956.04,0,21
+127317,183515.7865,1089791.158,0,21
+127318,182457.8414,1085490.926,0,21
+127319,181089.6397,1081879.93,0,21
+127320,179838.2265,1078492.619,0,21
+127321,174235.8204,1069578.905,0,21
+127322,174418.6255,1065274.176,0,21
+127323,173913.8269,1061518.745,0,21
+127324,173275.3592,1057240.311,0,21
+127325,173224.135,1053052.678,0,21
+127326,172397.8394,1049000.5,0,21
+127327,172635.2361,1044904.325,0,21
+127328,171738.052,1040787.702,0,21
+127329,171742.5589,1036551.026,0,21
+127330,171284.2443,1033177.547,0,21
+127331,170657.3994,1029626.752,0,21
+127332,170753.748,1025648.83,0,21
+127333,170109.2078,1022391.608,0,21
+127334,169727.4424,1018632.675,0,21
+127335,169541.3728,1015129.546,0,21
+127336,168943.7207,1011576.418,0,21
+127337,168861.9872,1007419.165,0,21
+127338,168223.6877,1005696.061,0,21
+127339,168105.3189,1003480.851,0,21
+127340,167655.9328,1001721.529,0,21
+127341,167115.7668,999677.4898,0,21
+127342,167245.3498,997965.0798,0,21
+127343,166392.8019,996193.7275,0,21
+127344,166239.5327,993274.0505,0,21
+127345,165924.5442,991411.4488,0,21
+127346,165366.8723,989411.4728,0,21
+127347,165527.4314,987525.9516,0,21
+127348,164512.104,985298.0512,0,21
+127349,164697.6444,983775.3717,0,21
+127350,163910.0928,981345.9881,0,21
+127351,163990.7519,979606.3313,0,21
+127352,163145.8042,978381.3942,0,21
+127353,163176.5789,976152.791,0,21
+127354,162938.5759,974701.1175,0,21
+127355,162184.5828,972717.3701,0,21
+127356,162350.1486,971795.5131,0,21
+127357,161531.1695,969369.4285,0,21
+127358,161452.8704,968214.0506,0,21
+127359,161146.1783,966408.1623,0,21
+127360,160487.7297,964851.2941,0,21
+127361,160593.4138,963452.03,0,21
+127362,159853.4354,961485.184,0,21
+127363,159598.9453,960028.1356,0,21
+127364,159566.8908,958637.4582,0,21
+127365,159088.5995,956847.8052,0,21
+127366,158485.2812,955525.2286,0,21
+127367,158574.3039,953553.4535,0,21
+127368,157988.7245,952338.7208,0,21
+127369,157399.1542,950806.2646,0,21
+127370,157793.8111,949106.5255,0,21
+127371,156683.7233,947672.8498,0,21
+127372,156897.142,945820.1184,0,21
+127373,156286.3403,944928.0429,0,21
+127374,155997.0614,942789.0688,0,21
+127375,155765.275,941878.3662,0,21
+127376,155236.8349,939791.9637,0,21
+127377,154927.2781,938628.8692,0,21
+127378,154976.6374,936831.0941,0,21
+127379,154032.4167,936009.4269,0,21
+127380,154177.7351,933608.5528,0,21
+127381,177500.0391,949114.7619,0,21
+127382,177063.9158,948003.3156,0,21
+127383,176324.1215,946632.0687,0,21
+127384,175353.9658,949150.2666,0,21
+127385,174809.6309,953643.0741,0,21
+127386,174189.067,949126.7689,0,21
+127387,173076.5045,950058.1857,0,21
+127388,172340.8241,949652.6846,0,21
+127389,171773.7086,949408.8627,0,21
+127390,170945.9842,948689.3384,0,21
+127391,169909.9673,948694.0747,0,21
+127392,169567.1763,947786.0456,0,21
+127393,168489.1738,947828.5992,0,21
+127394,167738.803,946904.168,0,21
+127395,167095.68,947124.4757,0,21
+127396,166371.7571,946131.4103,0,21
+127397,165386.4377,945759.5621,0,21
+127398,164763.661,945460.6839,0,21
+127399,163750.2008,944548.385,0,21
+127400,163069.0614,943655.3065,0,21
+127401,162404.0853,943604.5767,0,21
+127402,161435.3803,942679.3527,0,21
+127403,160665.2071,942249.7486,0,21
+127404,159917.6776,941328.826,0,21
+127405,159169.2537,941149.763,0,21
+127406,158060.7554,940308.5703,0,21
+127407,157496.3552,939738.065,0,21
+127408,156480.2072,939296.5918,0,21
+127409,156090.8145,938411.7071,0,21
+127410,154398.0092,937999.8003,0,21
+127411,154495.8959,937493.0311,0,21
+127412,153192.6599,936100.6661,0,21
+127413,152484.4807,935751.5262,0,21
+127414,152016.5387,934999.906,0,21
+127415,150788.4998,933948.3473,0,21
+127416,150345.685,933166.6395,0,21
+127417,149375.4817,932458.2215,0,21
+127418,148550.761,931735.0819,0,21
+127419,148035.4389,930718.2861,0,21
+127420,147126.2913,929458.1517,0,21
+127421,146362.2605,929395.0014,0,21
+127422,145499.6927,927706.4702,0,21
+127423,144992.4191,927600.6078,0,21
+127424,144135.9112,926521.5394,0,21
+127425,143413.5874,925556.1832,0,21
+127426,142567.5669,924739.5828,0,21
+127427,141911.0918,923705.0505,0,21
+127428,141315.7595,915655.7245,0,21
+127429,140166.775,915816.6353,0,21
+127430,139817.7885,913288.9594,0,21
+127431,138730.0303,911358.9165,0,21
+127432,138301.3533,909176.2257,0,21
+127433,137258.7925,906758.4909,0,21
+127434,136642.2897,904781.8582,0,21
+127435,136203.6386,903072.9087,0,21
+127436,134727.9703,900529.2664,0,21
+127437,134760.2139,898326.1146,0,21
+127438,133485.3361,896434.6423,0,21
+127439,132982.1512,894447.0252,0,21
+127440,132145.962,891989.4489,0,21
+127441,107455.452,861847.166,0,21
+127442,106687.8155,859224.6186,0,21
+127443,105960.3631,857062.1794,0,21
+127444,105725.8427,855058.9782,0,21
+127445,105479.1911,853104.1622,0,21
+127446,105027.358,851073.1651,0,21
+127447,104170.8565,848804.6346,0,21
+127448,104076.3601,846727.7084,0,21
+127449,103491.6377,843944.854,0,21
+127450,103229.065,841993.6424,0,21
+127451,102786.6221,839769.4424,0,21
+127452,102150.5909,837784.2145,0,21
+127453,101894.8485,835463.2504,0,21
+127454,101379.4957,833300.0614,0,21
+127455,100940.468,831285.0128,0,21
+127456,100778.3678,829053.045,0,21
+127457,99799.74812,827003.1253,0,21
+127458,99978.07563,824802.2654,0,21
+127459,99089.16979,822509.2855,0,21
+127460,99180.30414,821779.2957,0,21
+127461,98242.21669,819054.4977,0,21
+127462,98297.96541,817800.351,0,21
+127463,97710.56845,815377.5659,0,21
+127464,97407.93661,813262.1681,0,21
+127465,96726.96238,811436.3624,0,21
+127466,96733.03854,809447.0814,0,21
+127467,95855.36904,807343.4112,0,21
+127468,95902.07778,805663.1438,0,21
+127469,95398.50332,803174.3735,0,21
+127470,95206.14805,801386.2489,0,21
+127471,94414.172,800361.7333,0,21
+127472,94436.65666,798819.6145,0,21
+127473,94426.2604,797557.7561,0,21
+127474,93934.74467,796339.3554,0,21
+127475,93474.95308,795191.7971,0,21
+127476,93483.77559,794199.3432,0,21
+127477,93102.83267,793268.1412,0,21
+127478,93057.95127,792065.4932,0,21
+127479,92766.84994,790751.9936,0,21
+127480,92364.33068,790478.8289,0,21
+127481,92202.42416,789176.8391,0,21
+127482,92315.62922,787952.0773,0,21
+127483,91805.63713,787889.7164,0,21
+127484,91476.07138,786299.4499,0,21
+127485,91617.34755,785914.333,0,21
+127486,91181.99464,785011.9349,0,21
+127487,91024.21456,784062.8696,0,21
+127488,90982.86172,783489.5889,0,21
+127489,90360.59994,782815.0578,0,21
+127490,90720.94883,781988.1755,0,21
+127491,90320.63301,781560.2959,0,21
+127492,90100.52297,780762.4336,0,21
+127493,89880.22209,780164.8795,0,21
+127494,89911.28215,779427.142,0,21
+127495,89554.37618,779190.8542,0,21
+127496,89377.4508,778431.4123,0,21
+127497,89503.59146,777508.9372,0,21
+127498,89016.80866,777350.3925,0,21
+127499,88986.56852,776604.9852,0,21
+127500,89051.61892,775879.9481,0,21
+127501,92853.15135,780792.5563,0,21
+127502,92703.0789,780081.0301,0,21
+127503,91896.98787,780010.8273,0,21
+127504,91254.29217,779934.8365,0,21
+127505,90898.75353,779242.5437,0,21
+127506,90060.41481,779285.5947,0,21
+127507,89599.69732,778654.0859,0,21
+127508,89165.73793,778748.6589,0,21
+127509,88175.54641,778464.5311,0,21
+127510,88022.09277,777829.7317,0,21
+127511,86985.61492,778252.2146,0,21
+127512,86794.40597,777699.2281,0,21
+127513,85937.87098,777313.6806,0,21
+127514,85437.93395,777387.0091,0,21
+127515,84968.91475,777314.9308,0,21
+127516,84203.48025,776733.9558,0,21
+127517,83611.25351,777052.8895,0,21
+127518,83157.03951,776863.4525,0,21
+127519,82417.34766,776389.1216,0,21
+127520,82064.74493,776784.7538,0,21
+127521,81238.73619,776525.8549,0,21
+127522,80800.1165,776165.2993,0,21
+127523,80229.90792,776621.1211,0,21
+127524,79660.19664,776030.6722,0,21
+127525,79053.65912,776363.9086,0,21
+127526,78422.6451,776247.6368,0,21
+127527,77912.34367,776312.9115,0,21
+127528,77443.91508,776047.2207,0,21
+127529,76736.3403,776524.7629,0,21
+127530,76341.95131,776039.7492,0,21
+127531,75270.14028,776428.0224,0,21
+127532,74664.78112,776278.5968,0,21
+127533,73617.40517,776498.7303,0,21
+127534,72374.29691,776929.9832,0,21
+127535,71925.16743,776651.6085,0,21
+127536,70613.734,777110.7483,0,21
+127537,69522.78254,777199.2984,0,21
+127538,68831.46375,777195.455,0,21
+127539,68085.68759,777610.5963,0,21
+127540,67470.6995,777589.6409,0,21
+127541,66758.68814,778256.1459,0,21
+127542,66106.23307,778010.9659,0,21
+127543,65563.64945,778296.0514,0,21
+127544,64930.46041,778891.2373,0,21
+127545,63923.16892,778708.0417,0,21
+127546,63604.19141,779363.7,0,21
+127547,62774.2941,781750.0322,0,21
+127548,62047.73194,781996.947,0,21
+127549,61440.12681,782882.9394,0,21
+127550,60789.96531,783519.3611,0,21
+127551,59895.71365,783211.8703,0,21
+127552,59416.19071,784010.9871,0,21
+127553,58492.33344,784770.168,0,21
+127554,57945.36703,784811.6115,0,21
+127555,57270.74603,785108.0171,0,21
+127556,56441.4914,785907.2261,0,21
+127557,55686.97704,785968.6127,0,21
+127558,55235.49589,786725.8594,0,21
+127559,54074.58726,786638.2158,0,21
+127560,53815.506,788713.2065,0,21
+127561,46874.29372,782140.8608,0,21
+127562,46289.11687,782371.7767,0,21
+127563,45413.31403,782059.6838,0,21
+127564,44449.16107,782098.9946,0,21
+127565,44271.09252,782119.1266,0,21
+127566,43602.91527,781931.436,0,21
+127567,43314.31219,781847.9323,0,21
+127568,43002.9215,781904.7039,0,21
+127569,42307.70433,781347.1882,0,21
+127570,42208.57648,781446.3831,0,21
+127571,41713.68555,781404.7493,0,21
+127572,41218.21769,781286.8165,0,21
+127573,40900.76811,781102.0318,0,21
+127574,40402.48504,780993.6383,0,21
+127575,40108.40822,780830.5244,0,21
+127576,39582.2436,780698.1015,0,21
+127577,39067.67962,780687.4093,0,21
+127578,38794.87858,780451.483,0,21
+127579,38250.58448,780227.9199,0,21
+127580,37942.60449,780487.7022,0,21
+127581,37334.10186,779806.2607,0,21
+127582,37030.93475,780071.5063,0,21
+127583,36596.87353,779971.8391,0,21
+127584,36054.62713,779491.2323,0,21
+127585,35580.42284,779496.2637,0,21
+127586,35434.84333,779404.0508,0,21
+127587,34504.86879,778762.8155,0,21
+127588,34374.61155,777643.8323,0,21
+127589,33764.38727,776554.7393,0,21
+127590,33516.6102,775711.274,0,21
+127591,33066.62055,774654.4346,0,21
+127592,32960.65838,773632.783,0,21
+127593,32808.81367,772476.5835,0,21
+127594,32840.83569,771426.5425,0,21
+127595,32552.70546,770552.7187,0,21
+127596,32534.31376,769392.0821,0,21
+127597,32444.07313,768508.2693,0,21
+127598,32463.55205,766926.3519,0,21
+127599,32137.50348,766539.773,0,21
+127600,32380.14148,765011.7697,0,21
+127601,32005.21297,764421.0487,0,21
+127602,32363.58265,763043.8516,0,21
+127603,32109.27731,761917.6581,0,21
+127604,31929.56126,761160.8765,0,21
+127605,32244.59964,760098.731,0,21
+127606,31954.56669,758697.6524,0,21
+127607,32085.88685,758117.2909,0,21
+127608,32091.18773,756589.6061,0,21
+127609,31994.36851,755823.5005,0,21
+127610,32099.38547,754913.2053,0,21
+127611,32110.16078,753202.3362,0,21
+127612,32136.70946,753082.4625,0,21
+127613,32263.55135,751260.5519,0,21
+127614,32125.72209,750643.6801,0,21
+127615,32622.06374,749610.5677,0,21
+127616,32403.91933,748094.3442,0,21
+127617,32553.02699,747687.8922,0,21
+127618,32746.6171,746103.5344,0,21
+127619,32752.09792,745356.2915,0,21
+127620,32908.95071,744482.8984,0,21
+127621,33037.64237,743357.4943,0,21
+127622,33208.52563,743407.3721,0,21
+127623,32864.30576,742991.327,0,21
+127624,33528.55057,742139.1158,0,21
+127625,33173.40472,741774.8632,0,21
+127626,33507.71804,741166.3806,0,21
+127627,33400.32183,740727.1288,0,21
+127628,312330.5999,740642.6257,0,21
+127629,33800.23962,739721.1258,0,21
+127630,33847.44479,739486.6035,0,21
+127631,33873.02033,738864.2089,0,21
+127632,34246.88161,738453.4648,0,21
+127633,34109.67348,737895.4761,0,21
+127634,34371.70408,737753.1951,0,21
+127635,34507.57845,737101.2181,0,21
+127636,34532.04129,736571.2433,0,21
+127637,34941.28642,736288.4715,0,21
+127638,34743.94362,735642.4912,0,21
+127639,34988.69807,735325.3263,0,21
+127640,35362.34306,735160.0538,0,21
+127641,35320.85313,734226.5329,0,21
+127642,35411.03678,734100.0763,0,21
+127643,35864.00638,733889.4977,0,21
+127644,35642.85336,733205.426,0,21
+127645,36109.32121,733120.2541,0,21
+127646,36083.87302,732497.5588,0,21
+127647,36525.66123,732377.3225,0,21
+127648,36439.25724,731966.8238,0,21
+127649,36687.94085,731873.8555,0,21
+127650,36952.59735,731213.1973,0,21
+127651,37120.62071,730881.3534,0,21
+127652,36873.00458,730736.353,0,21
+127653,37108.74005,730247.9779,0,21
+127654,37310.22922,729885.1883,0,21
+127655,36999.79839,729573.0583,0,21
+127656,37412.8613,729759.3916,0,21
+127657,37194.83764,728491.2305,0,21
+127658,37412.8692,729012.0735,0,21
+127659,37219.25503,728349.3168,0,21
+127660,37607.43533,728007.4022,0,21
+127661,37219.2629,727933.9149,0,21
+127662,37619.30295,727313.6819,0,21
+127663,37401.90033,727405.3108,0,21
+127664,37643.1748,726599.243,0,21
+127665,37413.73938,726753.3172,0,21
+127666,37825.22186,726236.6727,0,21
+127667,37620.29856,725995.1482,0,21
+127668,37448.44265,725814.5259,0,21
+127669,37917.18491,725298.9445,0,21
+127670,37745.98491,725356.5347,0,21
+127671,37826.02805,724609.7144,0,21
+127672,37751.91638,724741.7893,0,21
+127673,37838.07221,724451.0341,0,21
+127674,37939.67174,723983.4795,0,21
+127675,37740.5138,724071.2638,0,21
+127676,38066.59343,723308.6194,0,21
+127677,37837.48619,723554.5337,0,21
+127678,38054.88038,722909.8806,0,21
+127679,37860.94524,722911.1656,0,21
+127680,38163.20787,722504.6335,0,21
+127681,62138.84694,762398.7334,0,21
+127682,63553.52932,764335.8156,0,21
+127683,65381.94724,765063.2196,0,21
+127684,64984.35553,766139.4032,0,21
+127685,87825.14007,766658.9834,0,21
+127686,84187.35356,767725.7591,0,21
+127687,82708.71038,768455.0056,0,21
+127688,85418.78902,769478.11,0,21
+127689,86437.09312,770268.1114,0,21
+127690,86921.68112,770897.9616,0,21
+127691,87845.92083,778389.482,0,21
+127692,88317.12823,776352.0649,0,21
+127693,89459.74821,777591.6926,0,21
+127694,89588.94402,778820.5138,0,21
+127695,90493.51632,779749.9167,0,21
+127696,91403.19525,780545.7764,0,21
+127697,91575.83724,781493.5484,0,21
+127698,372935.1818,782223.1394,0,21
+127699,93144.89661,782839.2725,0,21
+127700,93681.38336,784268.7258,0,21
+127701,94337.73831,784196.7271,0,21
+127702,95067.89434,785981.4072,0,21
+127703,95299.90457,786266.3236,0,21
+127704,96309.96133,787706.0594,0,21
+127705,96665.64558,788295.5965,0,21
+127706,97212.71188,788614.2508,0,21
+127707,98050.86503,790054.6712,0,21
+127708,98408.49052,790015.417,0,21
+127709,98927.43822,791559.0527,0,21
+127710,99609.33773,792013.0794,0,21
+127711,100068.1586,792423.9687,0,21
+127712,100448.0753,793740.3323,0,21
+127713,101443.8477,793794.9976,0,21
+127714,101248.2418,794830.2074,0,21
+127715,102351.9586,795408.6885,0,21
+127716,102690.559,796142.9535,0,21
+127717,102946.5494,796520.6031,0,21
+127718,103769.6713,797775.558,0,21
+127719,103819.4382,797701.846,0,21
+127720,104726.5955,798891.9345,0,21
+127721,105187.3971,798968.0264,0,21
+127722,105317.542,800254.9232,0,21
+127723,105935.1922,800397.4366,0,21
+127724,106334.0838,801147.4494,0,21
+127725,106940.6089,801900.3571,0,21
+127726,107510.3658,802195.2289,0,21
+127727,107696.045,803346.1206,0,21
+127728,108298.1298,803211.0112,0,21
+127729,108942.0556,804230.215,0,21
+127730,109140.565,806526.3038,0,21
+127731,109910.2377,806640.5187,0,21
+127732,110117.6738,812688.414,0,21
+127733,110831.5091,812813.801,0,21
+127734,111059.6364,814161.3503,0,21
+127735,111670.6115,816166.2621,0,21
+127736,112141.0502,816867.2928,0,21
+127737,112528.8658,819034.878,0,21
+127738,113027.7127,819734.7303,0,21
+127739,113450.485,821444.683,0,21
+127740,113956.5246,822983.4937,0,21
+127741,130990.3971,846094.8257,0,21
+127742,133236.7909,850440.8214,0,21
+127743,133339.7025,852726.1432,0,21
+127744,134394.1092,855521.6237,0,21
+127745,135000.6634,855377.5968,0,21
+127746,135793.3723,857196.5185,0,21
+127747,136306.2815,860495.6974,0,21
+127748,137158.1541,862386.8343,0,21
+127749,137840.6553,864912.3612,0,21
+127750,138424.7473,867526.1064,0,21
+127751,138826.4635,869640.2136,0,21
+127752,139675.2115,872557.68,0,21
+127753,140439.2831,874479.1924,0,21
+127754,140537.8996,876915.2858,0,21
+127755,141680.8137,880056.3182,0,21
+127756,142159.1351,881615.1832,0,21
+127757,142638.7193,884411.9776,0,21
+127758,143274.4188,886558.217,0,21
+127759,144006.9832,889393.5063,0,21
+127760,144323.7519,891061.0794,0,21
+127761,145226.6592,893470.7641,0,21
+127762,145559.6267,896427.8252,0,21
+127763,146262.3373,898216.7207,0,21
+127764,146658.3775,900786.4582,0,21
+127765,147348.5421,902977.8794,0,21
+127766,148213.8272,905093.831,0,21
+127767,148324.2642,907377.5198,0,21
+127768,148878.5623,910327.829,0,21
+127769,149615.3568,911365.9687,0,21
+127770,150369.6571,914915.6637,0,21
+127771,150523.9474,914520.0189,0,21
+127772,151132.401,917912.7464,0,21
+127773,151870.3629,919800.0631,0,21
+127774,151993.9385,921772.1466,0,21
+127775,152678.0261,924875.6234,0,21
+127776,153159.8058,926472.9497,0,21
+127777,153950.9467,940176.6729,0,21
+127778,154106.253,937532.4461,0,21
+127779,154852.2937,942501.8953,0,21
+127780,155161.7172,944547.9697,0,21
+127781,155923.4623,948866.2339,0,21
+127782,156225.5549,950685.4051,0,21
+127783,156685.1134,954860.9818,0,21
+127784,157192.7941,956622.3757,0,21
+127785,157815.5671,960952.5469,0,21
+127786,158112.4398,961999.4387,0,21
+127787,158651.2053,967212.1082,0,21
+127788,159605.6329,967721.4335,0,21
+127789,160875.2025,973299.1397,0,21
+127790,160503.397,973935.538,0,21
+127791,161767.8296,977963.6418,0,21
+127792,161899.148,980488.1284,0,21
+127793,162623.271,983040.6511,0,21
+127794,162954.2917,986044.5469,0,21
+127795,163951.4179,989369.7185,0,21
+127796,164323.7958,991223.7506,0,21
+127797,164827.5451,995065.3044,0,21
+127798,165179.734,996800.343,0,21
+127799,166176.4391,1000882.366,0,21
+127800,166015.1304,1002591.395,0,21
+127801,167332.1968,1004756.686,0,21
+127802,167465.5492,1008784.767,0,21
+127803,168466.1138,1010408.081,0,21
+127804,168727.0971,1013422.735,0,21
+127805,169408.3826,1015375.092,0,21
+127806,170367.5055,1017665.199,0,21
+127807,170234.2725,1019598.498,0,21
+127808,171505.2424,1021821.043,0,21
+127809,171742.5689,1024783.318,0,21
+127810,172632.6673,1026731.665,0,21
+127811,172850.6028,1029151.005,0,21
+127812,173556.4822,1031272.212,0,21
+127813,174296.5023,1033143.822,0,21
+127814,174639.0692,1035692.268,0,21
+127815,175304.8372,1038319.63,0,21
+127816,176039.911,1040797.411,0,21
+127817,176473.0989,1042149.279,0,21
+127818,177432.8567,1044492.429,0,21
+127819,177875.7911,1047322.729,0,21
+127820,178213.9717,1049452.57,0,21
+127821,179290.9466,1051675.685,0,21
+127822,179233.407,1053879.398,0,21
+127823,180323.263,1056282.754,0,21
+127824,180636.9183,1058742.198,0,21
+127825,181232.5754,1060128.715,0,21
+127826,181779.5372,1062932.123,0,21
+127827,182500.6875,1065175.49,0,21
+127828,182875.5926,1066918.983,0,21
+127829,183406.6537,1068403.421,0,21
+127830,184309.4568,1071644.613,0,21
+127831,184318.1149,1072778.028,0,21
+127832,185054.5445,1074732.872,0,21
+127833,186482.1373,1076361.694,0,21
+127834,187234.7672,1080308.398,0,21
+127835,188083.2673,1079473.278,0,21
+127836,188839.4538,1082351.128,0,21
+127837,189968.4069,1085406.187,0,21
+127838,190466.3784,1086185.825,0,21
+127839,191722.2201,1087609.045,0,21
+127840,192197.9815,1090419.891,0,21
+127841,193119.6952,1091984.015,0,21
+127842,194317.3687,1093852.025,0,21
+127843,194724.5235,1094556.319,0,21
+127844,195715.3527,1098516.66,0,21
+127845,196958.2899,1103064.382,0,21
+127846,196790.4927,1108135.851,0,21
+127847,198797.6972,1108176.947,0,21
+127848,198592.8419,1111404.79,0,21
+127849,200147.6083,1111861.327,0,21
+127850,200528.9299,1115070.014,0,21
+127851,201721.3846,1116624.474,0,21
+127852,201854.7614,1117896.816,0,21
+127853,203302.8748,1120138.835,0,21
+127854,203951.4674,1121634.578,0,21
+127855,204646.1126,1124345.393,0,21
+127856,205357.247,1124199.977,0,21
+127857,206433.9387,1128100.757,0,21
+127858,206789.2633,1127837.515,0,21
+127859,208145.0024,1130731.398,0,21
+127860,208938.4314,1131729.484,0,21
+127861,212181.6826,1144325.7,0,21
+127862,212661.3155,1148303.078,0,21
+127863,214053.822,1152187.631,0,21
+127864,214511.822,1155384.661,0,21
+127865,215172.5736,1161080.3,0,21
+127866,215927.2312,1162216.548,0,21
+127867,216523.8698,1166911.443,0,21
+127868,216876.4762,1170745.519,0,21
+127869,218144.6657,1173721.25,0,21
+127870,218410.6379,1177830.235,0,21
+127871,219140.019,1180737.976,0,21
+127872,219694.4725,1184824.069,0,21
+127873,220616.3406,1186701.18,0,21
+127874,220934.0867,1191737.396,0,21
+127875,221856.672,1194274.864,0,21
+127876,231825.1197,1197842.45,0,21
+127877,227612.7431,1201600.586,0,21
+127878,230042.7267,1204110.59,0,21
+127879,231966.8577,1208298.304,0,21
+127880,232405.265,1211470.167,0,21
+127881,233547.5409,1213620.268,0,21
+127882,235252.646,1218551.513,0,21
+127883,236624.8729,1221141.555,0,21
+127884,236851.3067,1223959.205,0,21
+127885,238399.8399,1227369.79,0,21
+127886,239971.0301,1231207.757,0,21
+127887,240547.8681,1234123.068,0,21
+127888,241402.2987,1237287.163,0,21
+127889,243466.2481,1240626.307,0,21
+127890,243660.0648,1243083.751,0,21
+127891,245164.4858,1246986.31,0,21
+127892,245995.9855,1249456.364,0,21
+127893,247651.1535,1253159.662,0,21
+127894,246769.5728,1256183.534,0,21
+127895,250207.9097,1258318.037,0,21
+127896,249668.1426,1262942.549,0,21
+127897,250885.7374,1264963.126,0,21
+127898,252669.3951,1269064.242,0,21
+127899,252731.2926,1269981.564,0,21
+127900,253701.5895,1275971.47,0,21
+127901,255503.2961,1276061.203,0,21
+127902,255881.3925,1281010.937,0,21
+127903,257143.3389,1284088.706,0,21
+127904,258091.1918,1285200.583,0,21
+127905,258545.4202,1290112.682,0,21
+127906,260655.1334,1292782.093,0,21
+127907,260173.6054,1295156.9,0,21
+127908,261685.5854,1298005.812,0,21
+127909,263363.7989,1301864.988,0,21
+127910,262819.4439,1304121.616,0,21
+127911,265281.2534,1306424.5,0,21
+127912,264357.2304,1310733.55,0,21
+127913,266865.5997,1312975.406,0,21
+127914,266516.0266,1316703.483,0,21
+127915,268568.0746,1317963.881,0,21
+127916,268726.6638,1322230.947,0,21
+127917,269823.8052,1325277.72,0,21
+127918,270572.5909,1326897.126,0,21
+127919,272110.18,1330160.852,0,21
+127920,271338.855,1334555.64,0,21
+127921,273575.7733,1334961.855,0,21
+127922,274114.8041,1338364.164,0,21
+127923,273859.4409,1340752.547,0,21
+127924,275098.6208,1343246.643,0,21
+127925,274733.0075,1344962.701,0,21
+127926,274950.1942,1347640.682,0,21
+127927,275986.9587,1349265.391,0,21
+127928,275282.8626,1350636.839,0,21
+127929,276647.5586,1353410.587,0,21
+127930,276381.2659,1356574.399,0,21
+127931,276105.1343,1356382.949,0,21
+127932,277053.4194,1361273.345,0,21
+127933,277516.7574,1360346.792,0,21
+127934,276291.579,1365323.684,0,21
+127935,278044.7594,1366979.555,0,21
+127936,277481.5003,1369115.282,0,21
+127937,278692.8941,1370633.054,0,21
+127938,278020.6846,1373561.487,0,21
+127939,277716.9801,1374978.675,0,21
+127940,278978.2502,1377114.467,0,21
+127941,279569.1781,1379548.855,0,21
+127942,278415.1889,1380280.512,0,21
+127943,279931.9628,1382995.352,0,21
+127944,279478.9831,1384851.359,0,21
+127945,279256.2804,1385481.751,0,21
+127946,280673.3283,1388431.987,0,21
+127947,279457.7688,1389731.732,0,21
+127948,280244.5607,1392586.68,0,21
+127949,281045.3173,1393564.408,0,21
+127950,280021.4873,1396000.479,0,21
+127951,281788.8643,1397444.301,0,21
+127952,280701.2724,1400333.594,0,21
+127953,280798.9384,1401199.96,0,21
+127954,282485.4094,1403795.796,0,21
+127955,280238.3024,1406134.098,0,21
+127956,282611.952,1406631.688,0,21
+127957,282040.4789,1410571.092,0,21
+127958,282300.2882,1410103.501,0,21
+127959,281658.491,1414063.161,0,21
+127960,283232.0327,1415018.445,0,21
+127961,281426.6411,1417197.292,0,21
+127962,283966.4355,1418777.398,0,21
+127963,282214.1529,1420653.601,0,21
+127964,283412.2212,1422016.086,0,21
+127965,282217.9698,1424988.971,0,21
+127966,284116.3737,1426217.036,0,21
+127967,282908.9795,1428144.662,0,21
+127968,283899.0237,1429739.173,0,21
+127969,283567.8267,1432856.237,0,21
+127970,283733.11,1432609.739,0,21
+127971,284431.9514,1435461.144,0,21
+127972,282889.3578,1437984.532,0,21
+127973,285775.9499,1438131.963,0,21
+127974,283643.4097,1441011.57,0,21
+127975,283851.895,1442015.352,0,21
+127976,284800.807,1444418.344,0,21
+127977,284587.5344,1446551.862,0,21
+127978,285251.9547,1446294.066,0,21
+127979,284589.5921,1449437.549,0,21
+127980,285152.6962,1449295.169,0,21
+127981,0,0,0,21
+127982,0,0,0,21
+127983,0,0,0,21
+127984,0,0,0,21
+127985,0,379.1658994,848200.7211,21
+127986,0,0,0,21
+127987,340048.8467,0,0,21
+127988,0,0,0,21
+127989,0,0,0,21
+127990,0,0,0,21
+127991,0,0,0,21
+127992,0,0,0,21
+127993,0,0,0,21
+127994,0,0,0,21
+127995,0,0,0,21
+127996,0,0,0,21
+127997,0,0,0,21
+127998,0,0,0,21
+127999,0,0,0,21
+128000,0,0,0,21
+128001,0,0,0,21
+128002,0,0,0,21
+128003,0,0,0,21
+128004,0,0,0,21
+128005,0,0,0,21
+128006,0,0,0,21
+128007,0,0,0,21
+128008,0,0,0,21
+128009,0,0,0,21
+128010,0,0,0,21
+128011,0,0,0,21
+128012,0,0,0,21
+128013,0,0,0,21
+128014,0,0,0,21
+128015,0,0,0,21
+128016,0,0,0,21
+128017,0,0,0,21
+128018,0,0,0,21
+128019,0,0,832688.1808,21
+128020,0,0,0,21
+128021,0,0,0,21
+128022,0,0,0,21
+128023,340027.2703,0,0,21
+128024,0,0,0,21
+128025,0,0,0,21
+128026,0,0,0,21
+128027,0,0,0,21
+128028,0,0,0,21
+128029,0,0,0,21
+128030,0,0,0,21
+128031,0,0,0,21
+128032,0,0,0,21
+128033,0,0,0,21
+128034,0,0,0,21
+128035,0,0,0,21
+128036,0,0,0,21
+128037,0,0,0,21
+128038,0,0,0,21
+128039,0,0,0,21
+128040,0,0,0,15.6
+128041,0,0,0,15.6
+128042,0,0,0,15.6
+128043,0,0,0,15.6
+128044,0,0,0,15.6
+128045,0,0,0,15.6
+128046,0,0,0,15.6
+128047,0,0,0,15.6
+128048,0,0,0,15.6
+128049,0,0,0,15.6
+128050,0,0,0,15.6
+128051,0,367902.2608,0,15.6
+128052,0,0,0,15.6
+128053,0,0,818583.3038,15.6
+128054,0,0,0,15.6
+128055,0,0,0,15.6
+128056,0,0,0,15.6
+128057,0,0,0,15.6
+128058,0,28941.73477,0,15.6
+128059,340015.1559,0,0,15.6
+128060,0,1371.209228,0,15.6
+128061,0,6773.078648,0,15.6
+128062,0,9477.076445,0,15.6
+128063,0,6342.897677,0,15.6
+128064,0,7375.708505,0,15.6
+128065,0,7936.065265,0,15.6
+128066,0,9012.058737,0,15.6
+128067,0,8512.185009,0,15.6
+128068,0,8895.128881,0,15.6
+128069,0,9050.772598,0,15.6
+128070,0,9185.925624,0,15.6
+128071,0,9392.686461,0,15.6
+128072,0,9478.677054,0,15.6
+128073,0,9634.514827,0,15.6
+128074,0,9778.965879,0,15.6
+128075,0,9908.462494,0,15.6
+128076,0,10017.85194,0,15.6
+128077,0,10204.57481,0,15.6
+128078,0,10283.61551,0,15.6
+128079,0,10445.00462,0,15.6
+128080,0,10549.92338,0,15.6
+128081,0,10643.23904,0,15.6
+128082,0,10840.20912,0,15.6
+128083,0,10903.77356,0,15.6
+128084,0,11049.85839,0,15.6
+128085,0,11125.19833,0,15.6
+128086,0,11256.68336,0,15.6
+128087,0,11396.66931,806913.4608,15.6
+128088,0,0,0,15.6
+128089,0,0,0,15.6
+128090,0,0,0,15.6
+128091,0,0,0,15.6
+128092,0,0,0,15.6
+128093,0,38820.97002,0,15.6
+128094,0,4315.733677,0,15.6
+128095,340012.3247,5709.25584,0,15.6
+128096,0,16184.30818,0,15.6
+128097,0,12331.56779,0,15.6
+128098,0,12257.50429,0,15.6
+128099,0,12689.88008,0,15.6
+128100,0,12809.21857,0,15.6
+128101,0,13065.63196,0,15.6
+128102,0,13153.44589,0,15.6
+128103,0,13277.48912,0,15.6
+128104,0,13364.67209,0,15.6
+128105,0,13471.94004,0,15.6
+128106,0,13597.69627,0,15.6
+128107,0,13652.79972,0,15.6
+128108,0,13754.39163,0,15.6
+128109,0,13912.35318,0,15.6
+128110,0,13941.30824,0,15.6
+128111,0,14080.90636,0,15.6
+128112,0,14141.85998,0,15.6
+128113,0,382147.1862,0,15.6
+128114,0,14352.60687,0,15.6
+128115,0,14393.70654,0,15.6
+128116,0,14551.63189,0,15.6
+128117,0,14597.39108,0,15.6
+128118,0,14681.61753,0,15.6
+128119,0,14799.02636,0,15.6
+128120,0,14866.70266,0,15.6
+128121,0,14942.854,794253.6559,15.6
+128122,0,15024.28061,0,15.6
+128123,0,0,0,15.6
+128124,0,0,0,15.6
+128125,0,0,0,15.6
+128126,0,0,0,15.6
+128127,0,54167.44112,0,15.6
+128128,0,248.0864797,0,15.6
+128129,0,12332.64157,0,15.6
+128130,0,20074.27101,0,15.6
+128131,0,15098.16921,0,15.6
+128132,340009.7532,15874.04322,0,15.6
+128133,0,16039.39582,0,15.6
+128134,0,16073.76479,0,15.6
+128135,0,16103.57422,0,15.6
+128136,0,16267.86188,0,15.6
+128137,0,16259.23998,0,15.6
+128138,0,16381.55518,0,15.6
+128139,0,16420.53054,0,15.6
+128140,0,16505.78366,0,15.6
+128141,0,16583.31376,0,15.6
+128142,0,16610.98969,0,15.6
+128143,0,16706.64429,0,15.6
+128144,0,16773.13863,0,15.6
+128145,0,16832.78582,0,15.6
+128146,0,16909.67906,0,15.6
+128147,0,16958.75171,0,15.6
+128148,0,17033.53337,0,15.6
+128149,0,17070.29132,0,15.6
+128150,0,17179.10053,0,15.6
+128151,0,17192.05942,0,15.6
+128152,0,17284.68716,0,15.6
+128153,0,17316.49702,0,15.6
+128154,0,17428.61314,0,15.6
+128155,0,17419.36699,784954.2729,15.6
+128156,0,17550.74971,0,15.6
+128157,0,0,0,15.6
+128158,0,0,0,15.6
+128159,0,0,0,15.6
+128160,0,58773.13546,0,15.6
+128161,0,0,0,15.6
+128162,0,16781.86964,0,15.6
+128163,0,21780.94656,0,15.6
+128164,0,17962.00229,0,15.6
+128165,0,18723.91314,0,15.6
+128166,0,18883.74268,0,15.6
+128167,0,19159.04225,0,15.6
+128168,0,19261.1896,0,15.6
+128169,340008.7079,19494.9324,0,15.6
+128170,0,19702.40165,0,15.6
+128171,0,19873.15221,0,15.6
+128172,0,387930.191,0,15.6
+128173,0,20228.90934,0,15.6
+128174,0,20440.49577,0,15.6
+128175,0,20603.1033,0,15.6
+128176,0,20809.98684,0,15.6
+128177,0,20958.49912,0,15.6
+128178,0,21212.43769,0,15.6
+128179,0,21322.18048,0,15.6
+128180,0,21573.34946,0,15.6
+128181,0,21715.06764,0,15.6
+128182,0,21932.94686,0,15.6
+128183,0,22082.5797,0,15.6
+128184,0,22285.51131,0,15.6
+128185,0,22510.80745,0,15.6
+128186,0,22646.35102,0,15.6
+128187,0,22857.69814,0,15.6
+128188,0,23034.50926,0,15.6
+128189,0,23233.63377,0,15.6
+128190,0,0,774461.998,15.6
+128191,0,0,0,15.6
+128192,0,0,0,15.6
+128193,0,82009.91287,0,15.6
+128194,0,303760.5052,0,15.6
+128195,0,12806.11912,0,15.6
+128196,0,42862.746,0,15.6
+128197,0,121397.8947,0,15.6
+128198,0,104708.2442,0,15.6
+128199,0,95110.52443,0,15.6
+128200,0,102160.1254,0,15.6
+128201,0,113084.6602,0,15.6
+128202,0,116998.04,0,15.6
+128203,0,116066.5816,0,15.6
+128204,0,119719.1133,0,15.6
+128205,0,121679.5819,0,15.6
+128206,340009.7955,124177.7819,0,15.6
+128207,0,126439.0876,0,15.6
+128208,0,128147.308,0,15.6
+128209,0,130592.5023,0,15.6
+128210,0,132822.5239,0,15.6
+128211,0,134769.6962,0,15.6
+128212,0,137068.8324,0,15.6
+128213,0,139179.4152,0,15.6
+128214,0,141048.0277,0,15.6
+128215,0,143555.5181,0,15.6
+128216,0,145443.758,0,15.6
+128217,0,147246.1994,0,15.6
+128218,0,150030.7697,0,15.6
+128219,0,151552.3062,0,15.6
+128220,0,153957.5805,0,15.6
+128221,0,153984.6946,0,15.6
+128222,0,154456.2198,0,15.6
+128223,0,125292.3596,0,15.6
+128224,0,0,0,15.6
+128225,0,83302.45683,766483.9336,15.6
+128226,0,11422.74738,0,15.6
+128227,0,393188.4923,0,15.6
+128228,0,32784.21576,0,15.6
+128229,0,450469.3014,0,15.6
+128230,0,50434.68054,0,15.6
+128231,0,125123.4181,0,15.6
+128232,0,190653.6305,0,15.6
+128233,0,151112.4887,0,15.6
+128234,0,156447.1292,0,15.6
+128235,0,155994.1418,0,15.6
+128236,0,156654.9382,0,15.6
+128237,0,156234.2651,0,15.6
+128238,0,156493.0196,0,15.6
+128239,0,156126.2772,0,15.6
+128240,0,156211.0565,0,15.6
+128241,0,156430.2423,0,15.6
+128242,0,155864.6689,0,15.6
+128243,340009.9484,156499.2532,0,15.6
+128244,0,155837.4305,0,15.6
+128245,0,156059.5879,0,15.6
+128246,0,156150.8604,0,15.6
+128247,0,155560.0524,0,15.6
+128248,0,156120.5642,0,15.6
+128249,0,155856.2608,0,15.6
+128250,0,155590.7014,0,15.6
+128251,0,155681.6756,0,15.6
+128252,0,155865.9633,0,15.6
+128253,0,154931.4769,0,15.6
+128254,0,155362.694,0,15.6
+128255,0,127616.0298,0,15.6
+128256,0,127030.3328,0,15.6
+128257,0,208793.8347,0,15.6
+128258,0,136559.9374,0,15.6
+128259,0,24970.07789,0,15.6
+128260,0,31582.13678,757412.7568,15.6
+128261,0,27316.06412,0,15.6
+128262,0,27747.84584,0,15.6
+128263,0,27670.84307,0,15.6
+128264,0,467686.8422,0,15.6
+128265,0,40466.54798,0,15.6
+128266,0,115612.5181,0,15.6
+128267,0,195115.9173,0,15.6
+128268,0,147215.9211,0,15.6
+128269,0,154078.9628,0,15.6
+128270,0,153557.7171,0,15.6
+128271,0,153902.0282,0,15.6
+128272,0,152996.8201,0,15.6
+128273,0,152905.1659,0,15.6
+128274,0,152650.3755,0,15.6
+128275,0,152568.0582,0,15.6
+128276,0,151930.4629,0,15.6
+128277,0,152160.0992,0,15.6
+128278,0,151544.6969,0,15.6
+128279,0,151176.1286,0,15.6
+128280,340009.5428,151121.823,0,15.6
+128281,0,152237.7269,0,15.6
+128282,0,521127.6443,0,15.6
+128283,0,154462.7217,0,15.6
+128284,0,155656.6016,0,15.6
+128285,0,156752.6228,0,15.6
+128286,0,157784.052,0,15.6
+128287,0,131652.0383,0,15.6
+128288,0,132271.7444,0,15.6
+128289,0,215085.1708,0,15.6
+128290,0,143488.8952,0,15.6
+128291,0,161325.4036,0,15.6
+128292,0,168233.7168,0,15.6
+128293,0,165574.9256,0,15.6
+128294,0,28396.72073,0,15.6
+128295,0,28498.74519,750160.1025,15.6
+128296,0,28641.992,0,15.6
+128297,0,28731.02156,0,15.6
+128298,0,28850.46386,0,15.6
+128299,0,553057.9911,0,15.6
+128300,0,43815.69809,0,15.6
+128301,0,130922.8166,0,15.6
+128302,0,222436.9833,0,15.6
+128303,0,171375.4631,0,15.6
+128304,0,178666.6055,0,15.6
+128305,0,180342.5623,0,15.6
+128306,0,181300.5081,0,15.6
+128307,0,182796.3951,0,15.6
+128308,0,183201.4109,0,15.6
+128309,0,184329.9745,0,15.6
+128310,0,185665.7309,0,15.6
+128311,0,186507.4555,0,15.6
+128312,0,187616.8621,0,15.6
+128313,0,188093.3013,0,15.6
+128314,0,190103.0199,0,15.6
+128315,0,190517.2101,0,15.6
+128316,0,191746.8256,0,15.6
+128317,339987.6662,192666.9218,0,15.6
+128318,0,193923.5588,0,15.6
+128319,0,164088.4488,0,15.6
+128320,0,164262.1903,0,15.6
+128321,0,257815.3962,0,15.6
+128322,0,180875.5795,0,15.6
+128323,0,193513.9953,0,15.6
+128324,0,205132.5094,0,15.6
+128325,0,201035.3068,0,15.6
+128326,0,202221.2596,0,15.6
+128327,0,203115.4544,0,15.6
+128328,0,204811.1432,0,15.6
+128329,0,32200.10844,0,15.6
+128330,0,32297.1206,743055.5657,15.6
+128331,0,32371.58712,0,15.6
+128332,0,32494.96728,0,15.6
+128333,0,678639.0912,0,15.6
+128334,0,91481.74747,0,15.6
+128335,0,115332.3856,0,15.6
+128336,0,654387.8731,0,15.6
+128337,0,202342.0301,0,15.6
+128338,0,215756.7647,0,15.6
+128339,0,215772.5678,0,15.6
+128340,0,217064.0471,0,15.6
+128341,0,1388193.927,0,15.6
+128342,0,1099434.794,0,15.6
+128343,0,229911.0765,0,15.6
+128344,0,514393.4804,0,15.6
+128345,0,588368.2277,0,15.6
+128346,0,449335.7289,0,15.6
+128347,0,487046.3712,0,15.6
+128348,0,477687.6094,0,15.6
+128349,0,476027.985,0,15.6
+128350,0,476358.3928,0,15.6
+128351,0,404619.831,0,15.6
+128352,0,405189.1861,0,15.6
+128353,0,518452.2621,0,15.6
+128354,339971.7605,485872.2022,0,15.6
+128355,0,468170.8691,0,15.6
+128356,0,484046.6328,0,15.6
+128357,0,477874.6275,0,15.6
+128358,0,474004.9836,0,15.6
+128359,0,477607.2154,0,15.6
+128360,0,476091.0966,0,15.6
+128361,0,476739.65,0,15.6
+128362,0,477052.8055,0,15.6
+128363,0,83943.66314,0,15.6
+128364,0,84222.37709,736726.1447,15.6
+128365,0,1117663.467,0,15.6
+128366,0,294248.5728,0,15.6
+128367,0,546494.578,0,15.6
+128368,0,455681.3642,0,15.6
+128369,0,496201.6954,0,15.6
+128370,0,480101.2885,0,15.6
+128371,0,466671.1725,0,15.6
+128372,0,467136.8264,0,15.6
+128373,0,466938.2441,0,15.6
+128374,0,467871.5469,0,15.6
+128375,0,835573.946,0,15.6
+128376,0,468139.546,0,15.6
+128377,38686.91065,468734.7891,0,15.6
+128378,597.943812,514908.5648,0,15.6
+128379,5749.966096,469415.2875,0,15.6
+128380,17602.30871,478179.0916,0,15.6
+128381,10770.18764,489503.2922,0,15.6
+128382,11903.02398,481938.3949,0,15.6
+128383,11932.37494,414081.0857,0,15.6
+128384,11971.14176,413357.8278,0,15.6
+128385,11919.08992,529208.8973,0,15.6
+128386,11951.45977,501734.1867,0,15.6
+128387,11886.64924,476980.2818,0,15.6
+128388,11941.53021,497322.8346,0,15.6
+128389,351852.2227,490331.3414,0,15.6
+128390,11886.64919,488075.2174,0,15.6
+128391,11873.1689,490013.0537,0,15.6
+128392,11883.05503,490855.1256,0,15.6
+128393,11837.04314,490455.0515,0,15.6
+128394,11834.39554,491650.0771,0,15.6
+128395,11856.83405,87577.05225,0,15.6
+128396,11805.98138,87754.91341,0,15.6
+128397,11856.83204,1149392.86,0,15.6
+128398,11782.01251,309756.2442,731700.9958,15.6
+128399,11800.82223,577603.5416,0,15.6
+128400,11788.19243,464274.7291,0,17.8
+128401,959626.1747,1891718.878,0,17.8
+128402,595523.1248,1453017.545,0,17.8
+128403,126025.1081,903066.6645,0,17.8
+128404,220346.4587,848538.2052,0,17.8
+128405,259778.5025,971563.7122,0,17.8
+128406,230802.1681,903285.6368,0,17.8
+128407,190652.7369,900877.9887,0,17.8
+128408,190245.8657,856175.2676,0,17.8
+128409,190027.7919,853562.4619,0,17.8
+128410,273036.5092,940308.2584,0,17.8
+128411,216667.909,874390.4236,0,17.8
+128412,212552.896,879913.2595,0,17.8
+128413,227474.895,1250165.273,0,17.8
+128414,231171.2237,877159.6756,0,17.8
+128415,221399.6897,743172.403,0,17.8
+128416,224172.7946,935713.9735,0,17.8
+128417,224036.9113,879551.8801,0,17.8
+128418,222919.9346,857884.8556,0,17.8
+128419,223646.6862,870111.3038,0,17.8
+128420,222642.4615,865483.5599,0,17.8
+128421,222596.492,862636.8066,0,17.8
+128422,222456.9787,860705.8022,0,17.8
+128423,222057.438,858403.2207,0,17.8
+128424,561889.2425,856691.6515,0,17.8
+128425,221503.2462,855529.0258,0,17.8
+128426,221534.4816,852295.5909,0,17.8
+128427,220986.3572,161303.4619,0,17.8
+128428,221092.1644,160551.1432,0,17.8
+128429,220752.7298,1244333.017,0,17.8
+128430,220369.5142,951999.9853,0,17.8
+128431,39493.92363,587904.6747,0,17.8
+128432,39307.47793,840569.8591,725290.9883,17.8
+128433,39358.92168,851615.8101,0,17.8
+128434,39360.63939,851656.5977,0,17.8
+128435,39226.61485,829221.495,0,17.8
+128436,39306.28588,837347.6406,0,17.8
+128437,39191.67364,836128.2572,0,17.8
+128438,641259.9583,834860.0135,0,17.8
+128439,57546.19665,834035.8714,0,17.8
+128440,145778.5446,798235.3465,0,17.8
+128441,226430.4707,784192.2527,0,17.8
+128442,170509.0996,786170.9912,0,17.8
+128443,258480.7561,873130.9415,0,17.8
+128444,195333.5177,811773.8917,0,17.8
+128445,205082.4246,805701.7091,0,17.8
+128446,223811.3544,696369.4191,0,17.8
+128447,218381.3354,870839.7251,0,17.8
+128448,216031.8052,806028.0299,0,17.8
+128449,217670.4523,796901.1245,0,17.8
+128450,216557.8235,808301.6251,0,17.8
+128451,217537.3055,1170194.061,0,17.8
+128452,216337.4044,799441.4103,0,17.8
+128453,216927.5387,798935.5969,0,17.8
+128454,219711.7894,796896.3957,0,17.8
+128455,218520.8023,793530.1173,0,17.8
+128456,217867.6747,793614.515,0,17.8
+128457,218594.2394,790480.6281,0,17.8
+128458,220130.8657,790220.8444,0,17.8
+128459,558516.5047,149864.9916,0,17.8
+128460,219546.3119,149735.16,0,20
+128461,1546090.598,2583296.094,0,20
+128462,568045.0013,1962102.479,0,20
+128463,133610.2256,711718.4645,0,20
+128464,301442.5654,871730.591,0,20
+128465,350551.7253,1240104.565,1772.042294,20
+128466,390920.8732,1006959.4,2161.529054,20
+128467,336273.9425,1035582.001,1468.534439,20
+128468,350281.8468,1030227.241,10345.32146,20
+128469,352980.272,1030459.568,16213.22349,20
+128470,351440.2589,1026647.289,10951.81074,20
+128471,352559.8705,1024611.921,13346.23888,20
+128472,352212.508,1022147.905,13518.81645,20
+128473,351658.9207,1019559.887,13720.04787,20
+128474,352160.3058,1018293.552,13817.47343,20
+128475,352350.5118,1013946.891,14759.52895,20
+128476,352001.807,1015420.33,14576.95466,20
+128477,352606.0834,1010404.821,14751.17672,20
+128478,351488.4659,1005633.86,15038.47876,20
+128479,353055.8323,998678.4169,15069.9813,20
+128480,352446.5155,999063.9422,15330.94239,20
+128481,352228.566,995101.0356,15502.04285,20
+128482,353107.1872,993265.7426,15660.78382,20
+128483,352177.7848,989947.431,15678.91413,20
+128484,353236.5031,987808.4419,15964.37464,20
+128485,353094.5874,985315.5462,16201.90664,20
+128486,353483.1179,982826.0961,16166.45428,20
+128487,352947.8423,981982.9427,16389.72085,20
+128488,354273.0284,977239.7395,16573.26743,20
+128489,352586.2792,977909.4452,16659.39127,20
+128490,354388.6292,974896.5433,16909.80596,20
+128491,354222.0787,971975.3258,16953.63697,20
+128492,353764.1271,971249.7076,17201.0028,20
+128493,354617.4784,967627.7662,17254.22113,20
+128494,354346.8641,966888.5475,17426.25332,20
+128495,355526.7601,965169.8141,17718.45351,20
+128496,353304.7628,961957.0453,17763.74501,20
+128497,356344.7757,961741.6133,19133.17682,20
+128498,354948.6095,958815.845,19171.56266,20
+128499,355402.1682,957721.8391,19453.17184,20
+128500,355867.7605,955724.3255,19587.47302,20
+128501,355072.3533,954225.7015,20187.34382,20
+128502,356619.1111,951916.4561,20168.07317,20
+128503,356199.3796,949626.1682,20666.71956,20
+128504,356417.7498,950227.6791,20783.04516,20
+128505,356865.0374,946218.1685,21245.03073,20
+128506,355957.3072,945613.2633,21360.88109,20
+128507,357914.0931,943702.645,21543.45932,20
+128508,357074.8183,942722.3391,21902.78186,20
+128509,357557.4623,939790.7534,22240.92148,20
+128510,357461.0659,940188.5596,22411.68758,20
+128511,357565.519,937985.0874,22560.15623,20
+128512,359213.909,935711.3422,22875.1253,20
+128513,357616.9453,935102.4642,23275.48737,20
+128514,358216.6775,932927.7523,23218.51531,20
+128515,358912.5735,932334.3067,23617.53313,20
+128516,358707.1425,928007.3819,23807.79953,20
+128517,359537.7764,929405.4101,24052.28455,20
+128518,359671.8671,925539.9436,24154.47935,20
+128519,359051.781,923928.3177,24560.22943,20
+128520,360287.7269,920615.4993,24576.84708,21
+128521,394927.4197,2265464.75,20097.47678,21
+128522,389336.6336,2255801.489,19359.29863,21
+128523,389472.724,2254136.341,19608.21627,21
+128524,388067.9763,2248775.087,19503.23147,21
+128525,387632.2718,2244605.518,19662.18868,21
+128526,386006.6527,2241929.01,19672.09009,21
+128527,386401.2262,2237650.559,19705.79003,21
+128528,385164.9829,2234072.068,19876.6415,21
+128529,385743.8633,2232011.183,19873.65401,21
+128530,384758.0407,2226301.568,19919.4582,21
+128531,385216.5506,2225316.203,20054.43066,21
+128532,383852.2432,2219740.215,20098.99485,21
+128533,384167.6332,2218492.195,20122.70603,21
+128534,384511.6053,2213870.958,20254.70904,21
+128535,382650.9269,2211145.525,20407.34227,21
+128536,384532.1899,2207225.553,20336.17283,21
+128537,382399.881,2204382.538,20456.57682,21
+128538,383564.9866,2201217.678,20503.83485,21
+128539,382538.1161,2197797.678,20632.38055,21
+128540,382492.4622,2194995.365,20682.04736,21
+128541,382517.0801,2191387.769,20695.23577,21
+128542,382364.9072,2188846.047,20938.07094,21
+128543,381471.0866,2180699.059,20767.9051,21
+128544,382389.6974,2179268.519,21013.46708,21
+128545,382050.0422,2174060.035,20919.16242,21
+128546,381320.2996,2170736.89,21273.794,21
+128547,381583.6446,2168184.415,20870.34376,21
+128548,381331.1268,2164223.437,21467.10791,21
+128549,380959.3919,2159852.069,21130.72917,21
+128550,381589.3964,2158052.552,21313.57952,21
+128551,380465.7636,2153128.999,21497.35207,21
+128552,381273.0386,2150770.7,20662.15627,21
+128553,380766.1668,2147299.876,20738.72423,21
+128554,379895.5102,2142979.091,20668.95985,21
+128555,380475.755,2140214.795,20615.28868,21
+128556,380334.7927,2136704.907,20533.48261,21
+128557,379583.1741,2133700.589,20553.23492,21
+128558,380397.9509,2129326.389,20527.66507,21
+128559,378961.2438,2127841.667,20172.87598,21
+128560,379713.9794,2122904.612,20546.82475,21
+128561,379576.8201,2120533.442,19936.04516,21
+128562,379186.021,2115522.568,20289.39282,21
+128563,378375.4555,2115096.321,19971.05283,21
+128564,379353.6057,2109169.664,20047.18088,21
+128565,378661.7963,2107711.162,19807.53332,21
+128566,378166.478,2103642.999,19836.88865,21
+128567,378778.7454,2100562.071,19799.88275,21
+128568,376908.0426,2097660.944,19465.16342,21
+128569,379645.9341,2092833.635,19680.36311,21
+128570,376405.6589,2091390.457,19422.99528,21
+128571,378535.3208,2087295.545,19344.10339,21
+128572,377492.1039,2084648.433,13868.85172,21
+128573,376568.7694,2081926.461,12046.74813,21
+128574,377854.8651,2077860.937,11544.37596,21
+128575,377220.4995,2074847.791,10970.38967,21
+128576,376440.7448,2072932.531,10163.4129,21
+128577,377261.3147,2067200.485,9602.962608,21
+128578,375899.5367,2066333.748,9158.432349,21
+128579,377189.5324,2063625.136,8650.770661,21
+128580,375623.5067,2059204.285,8831.941504,21
+128581,241240.5565,1822143.294,224.2381979,21
+128582,236797.3468,1803507.032,89.95723763,21
+128583,235073.993,1794757.119,89.95740849,21
+128584,234405.1187,1789697.588,46.1224771,21
+128585,232940.9748,1783841.626,37.16548981,21
+128586,231834.209,1777303.253,0,21
+128587,231176.4783,1772504.691,0,21
+128588,229769.3614,1767203.527,0,21
+128589,228859.0697,1762315.536,0,21
+128590,228192.5734,1756734.659,0,21
+128591,226622.8833,1752139.064,0,21
+128592,226315.6869,1747220.826,0,21
+128593,224991.968,1743345.923,0,21
+128594,224332.9055,1740154.827,0,21
+128595,222947.8031,1735511.953,0,21
+128596,222567.7316,1688956.93,0,21
+128597,221727.5714,1677994.958,0,21
+128598,220427.317,1671424.513,0,21
+128599,220080.5649,1663876.587,0,21
+128600,218927.1544,1657408.321,0,21
+128601,218286.6185,1652712.367,0,21
+128602,217553.1827,1646520.511,0,21
+128603,216776.2684,1640793.601,0,21
+128604,216012.5578,1634467.638,0,21
+128605,215183.5631,1629274.87,0,21
+128606,214772.463,1622987.509,0,21
+128607,213759.9932,1618625.932,0,21
+128608,213234.5234,1612496.043,0,21
+128609,212741.9758,1607871.533,0,21
+128610,211437.0536,1602667.368,0,21
+128611,211406.8556,1597916.9,0,21
+128612,210275.7825,1593027.847,0,21
+128613,209377.4783,1588205.441,0,21
+128614,208714.3578,1583806.458,0,21
+128615,207762.5441,1578801.047,0,21
+128616,206818.2633,1574193.988,0,21
+128617,206181.2698,1570002.829,0,21
+128618,205411.2491,1565456.119,0,21
+128619,204323.5036,1560796.108,0,21
+128620,204103.4056,1556490.339,0,21
+128621,202457.8747,1552040.936,0,21
+128622,202141.121,1547616.406,0,21
+128623,201486.8991,1542941.122,0,21
+128624,200099.5299,1538902.993,0,21
+128625,199861.7279,1534143.154,0,21
+128626,198761.8031,1530828.229,0,21
+128627,197710.9912,1527556.991,0,21
+128628,197402.9036,1524465.322,0,21
+128629,196283.8259,1521162.299,0,21
+128630,195719.889,1518081.766,0,21
+128631,194848.2363,1514866.091,0,21
+128632,194169.4818,1511607.037,0,21
+128633,193352.0399,1508174.356,0,21
+128634,192801.5852,1505427.694,0,21
+128635,192029.1467,1502174.145,0,21
+128636,191227.0816,1498618.995,0,21
+128637,190617.412,1495735.718,0,21
+128638,189814.7736,1492269.521,0,21
+128639,189332.4673,1488795.828,0,21
+128640,188347.7497,1485726.815,0,21
+128641,187190.5721,1482921.907,0,21
+128642,185856.9865,1478345.808,0,21
+128643,184772.0078,1476647.098,0,21
+128644,183415.5546,1471819.357,0,21
+128645,182093.3986,1469758.66,0,21
+128646,181137.14,1465707.554,0,21
+128647,179462.2418,1462551.51,0,21
+128648,178818.4893,1458862.175,0,21
+128649,176896.5345,1456308.72,0,21
+128650,175987.6665,1452274.426,0,21
+128651,174435.7803,1448707.829,0,21
+128652,173384.9934,1445914.377,0,21
+128653,171954.2343,1441629.344,0,21
+128654,170428.9398,1438992.18,0,21
+128655,169332.3058,1434601.069,0,21
+128656,168129.8499,1431830.103,0,21
+128657,166362.8145,1427809.344,0,21
+128658,165344.8825,1424634.348,0,21
+128659,163707.031,1420766.316,0,21
+128660,162557.51,1417213.913,0,21
+128661,161063.0567,1413558.888,0,21
+128662,159857.29,1409666.981,0,21
+128663,158261.2465,1406443.572,0,21
+128664,156890.369,1402476.339,0,21
+128665,155471.4092,1398730.806,0,21
+128666,154215.5829,1395252.486,0,21
+128667,152878.4986,1391442.853,0,21
+128668,151253.4506,1387609.128,0,21
+128669,149926.4066,1383714.244,0,21
+128670,148522.5977,1379920.397,0,21
+128671,147420.6828,1376108.777,0,21
+128672,145870.7579,1372111.056,0,21
+128673,144550.8295,1368073.201,0,21
+128674,143861.8143,1364402.521,0,21
+128675,142349.6442,1360362.654,0,21
+128676,140937.7497,1356044.213,0,21
+128677,139832.2378,1352628.947,0,21
+128678,138805.1993,1348067.986,0,21
+128679,137190.295,1344050.05,0,21
+128680,136242.4217,1340647.018,0,21
+128681,135143.3789,1336147.945,0,21
+128682,133774.1793,1331780.707,0,21
+128683,132823.4779,1328117.09,0,21
+128684,131283.889,1323455.768,0,21
+128685,130381.9789,1319961.883,0,21
+128686,129188.8837,1315060.205,0,21
+128687,128019.2096,1311747.244,0,21
+128688,126834.7448,1306814.578,0,21
+128689,125933.487,1302711.088,0,21
+128690,124574.7538,1299250.203,0,21
+128691,123297.5933,1293946.769,0,21
+128692,122478.6917,1290059.378,0,21
+128693,121044.6043,1285894.219,0,21
+128694,120091.6654,1281333.099,0,21
+128695,118851.7651,1277248.745,0,21
+128696,117878.1651,1272806.25,0,21
+128697,116540.2519,1268371.525,0,21
+128698,115328.493,1264040.666,0,21
+128699,114508.5469,1259724.261,0,21
+128700,113149.9971,1255723.809,0,21
+128701,116762.2897,1252028.388,0,21
+128702,116248.1189,1249445.278,0,21
+128703,114969.7131,1247174.124,0,21
+128704,113858.8765,1244495.16,0,21
+128705,113112.2609,1241113.895,0,21
+128706,111666.2719,1238820.336,0,21
+128707,110822.0903,1236147.429,0,21
+128708,109930.9898,1233399.11,0,21
+128709,108706.5098,1230290.871,0,21
+128710,107778.5158,1227975.437,0,21
+128711,106724.5031,1225070.344,0,21
+128712,105594.6202,1222121.507,0,21
+128713,104542.2164,1219692.338,0,21
+128714,103606.1225,1216201.555,0,21
+128715,102388.8366,1214012.751,0,21
+128716,101534.8604,1210657.982,0,21
+128717,100341.3019,1207776.313,0,21
+128718,99524.20745,1205030.101,0,21
+128719,98260.56668,1201904.473,0,21
+128720,97374.62983,1198806.14,0,21
+128721,96218.58212,1196596.974,0,21
+128722,95381.98039,1193344.193,0,21
+128723,94034.07027,1190379.544,0,21
+128724,93382.33267,1188016.426,0,21
+128725,91871.0484,1184715.034,0,21
+128726,91379.39537,1181794.615,0,21
+128727,89943.65466,1179264.304,0,21
+128728,89151.07906,1176050.843,0,21
+128729,88025.04347,1173334.154,0,21
+128730,87191.9489,1170483.703,0,21
+128731,86119.50996,1167420.821,0,21
+128732,85569.75992,1166513.481,0,21
+128733,85002.60795,1163739.849,0,21
+128734,83928.67402,1161088.852,0,21
+128735,83730.82326,1157641.24,0,21
+128736,83054.91304,1155795.19,0,21
+128737,82131.29062,1152317.093,0,21
+128738,81826.39273,1149811.112,0,21
+128739,80882.05396,1147164.35,0,21
+128740,80575.93542,1144127.771,0,21
+128741,79878.83363,1139847.033,0,21
+128742,79229.54351,1137236.487,0,21
+128743,78810.43349,1134127.079,0,21
+128744,78057.51666,1131532,0,21
+128745,77725.11782,1128850.652,0,21
+128746,77032.02759,1126267.289,0,21
+128747,76615.39668,1122932.378,0,21
+128748,75683.99735,1121778.586,0,21
+128749,75753.5588,1120151.141,0,21
+128750,74775.31672,1118487.049,0,21
+128751,74518.9941,1117586.037,0,21
+128752,74041.42692,1115679.833,0,21
+128753,73408.66519,1114068.818,0,21
+128754,72828.70047,1113148.786,0,21
+128755,72742.88654,1111149.44,0,21
+128756,71758.57374,1109919.905,0,21
+128757,71558.09892,1108250.871,0,21
+128758,71035.10384,1107119.318,0,21
+128759,70850.89621,1105001.55,0,21
+128760,69765.85465,1104112.483,0,21
+128761,65276.56525,1103725.343,0,21
+128762,64661.32105,1102266.854,0,21
+128763,64925.05997,1100474.097,0,21
+128764,64325.10065,1099247.161,0,21
+128765,64374.76895,1097441.555,0,21
+128766,64355.75122,1096214.405,0,21
+128767,64014.64026,1094421.23,0,21
+128768,64142.78656,1093359.719,0,21
+128769,63819.3969,1090997.073,0,21
+128770,63690.36523,1090410.848,0,21
+128771,63636.90755,1088536.248,0,21
+128772,63580.20341,1087048.417,0,21
+128773,63197.3782,1086006.214,0,21
+128774,63502.32819,1084468.186,0,21
+128775,63262.38033,1083163.418,0,21
+128776,63227.24343,1081425.82,0,21
+128777,62739.24781,1080579.718,0,21
+128778,63294.90858,1078732.339,0,21
+128779,62834.33424,1077611.874,0,21
+128780,62702.25245,1076241.891,0,21
+128781,62875.42504,1074749.628,0,21
+128782,62658.91402,1073511.427,0,21
+128783,62711.97366,1072093.584,0,21
+128784,62541.29778,1070496.379,0,21
+128785,62642.31483,1069246.826,0,21
+128786,62388.08824,1068097.425,0,21
+128787,62577.28216,1066298.306,0,21
+128788,62270.20477,1065371.551,0,21
+128789,62720.9139,1063833.953,0,21
+128790,62069.26684,1062520.538,0,21
+128791,62065.31647,1061176.304,0,21
+128792,61383.79785,1059814.468,0,21
+128793,60821.43077,1058046.246,0,21
+128794,60283.77631,1057426.001,0,21
+128795,59694.25764,1055511.965,0,21
+128796,59109.8615,1054510.664,0,21
+128797,58319.9479,1053131.018,0,21
+128798,57861.52149,1051765.35,0,21
+128799,57141.2912,1049968.02,0,21
+128800,56694.69592,1049423.475,0,21
+128801,55298.89748,1047343.649,0,21
+128802,55538.7784,1046206.844,0,21
+128803,54351.86948,1044903.203,0,21
+128804,53673.15646,1043361.663,0,21
+128805,52961.0716,1042076.415,0,21
+128806,52234.50291,1040925.304,0,21
+128807,52018.61597,1039330.104,0,21
+128808,51208.57894,1037866.766,0,21
+128809,50664.28627,1036829.343,0,21
+128810,50474.16755,1035302.684,0,21
+128811,49972.60248,1032965.487,0,21
+128812,49378.64556,1032212.81,0,21
+128813,49428.67767,1030340.042,0,21
+128814,48953.84876,1029247.153,0,21
+128815,48497.02174,1027410.511,0,21
+128816,48196.01865,1025910.137,0,21
+128817,47762.01801,1024962.662,0,21
+128818,47487.61727,1023222.001,0,21
+128819,46985.46318,1021642.556,0,21
+128820,46844.92299,1020469.785,0,21
+128821,58555.45922,1034331.303,0,21
+128822,58480.96561,1032020.194,0,21
+128823,63969.86071,1030049.743,0,21
+128824,61121.65037,1028000.108,0,21
+128825,61349.68725,1025639.235,0,21
+128826,62951.01926,1023296.756,0,21
+128827,60854.69384,1021611.79,0,21
+128828,60838.9762,1019104.563,0,21
+128829,59951.26495,1017083.164,0,21
+128830,59522.93176,1014931.307,0,21
+128831,58800.78692,1013141.551,0,21
+128832,58330.25582,1010448.327,0,21
+128833,57546.92745,1009053.122,0,21
+128834,57335.95692,997591.8356,0,21
+128835,56607.06607,997167.4185,0,21
+128836,56464.82698,993618.94,0,21
+128837,55909.99625,989240.2147,0,21
+128838,55237.24491,986197.6467,0,21
+128839,55235.18581,982579.0326,0,21
+128840,54371.69137,980193.6871,0,21
+128841,54151.3779,976678.0235,0,21
+128842,53342.28819,973253.7843,0,21
+128843,53539.26302,969568.7827,0,21
+128844,52473.19647,966257.0498,0,21
+128845,52288.107,962488.2629,0,21
+128846,51714.56356,959064.7915,0,21
+128847,51264.64313,955692.2955,0,21
+128848,50993.48182,952096.9877,0,21
+128849,50366.38887,947160.4601,0,21
+128850,50260.96868,943851.8468,0,21
+128851,50166.76256,939907.5501,0,21
+128852,49519.56989,936375.9843,0,21
+128853,49779.23792,933401.2039,0,21
+128854,49200.01405,929917.2243,0,21
+128855,49059.91335,925625.8137,0,21
+128856,48979.81415,922487.7108,0,21
+128857,48623.41311,918822.6732,0,21
+128858,48427.87945,915398.946,0,21
+128859,48344.66457,911790.6644,0,21
+128860,47873.71226,908219.1227,0,21
+128861,47821.97347,905030.936,0,21
+128862,47696.97236,901055.5566,0,21
+128863,47405.2345,897933.6999,0,21
+128864,47182.40552,894033.8429,0,21
+128865,46857.12155,890759.2909,0,21
+128866,46972.66741,887342.6162,0,21
+128867,46512.13702,883433.6494,0,21
+128868,46239.60805,880558.4308,0,21
+128869,46154.77237,876409.2187,0,21
+128870,46027.43518,873233.5785,0,21
+128871,45592.02297,869661.3089,0,21
+128872,45691.39144,868969.1283,0,21
+128873,45389.86258,867378.6274,0,21
+128874,45053.37694,862808.3412,0,21
+128875,45024.58397,860631.4999,0,21
+128876,44587.7662,857713.4135,0,21
+128877,44748.3806,854790.3289,0,21
+128878,44221.38523,851113.2487,0,21
+128879,44096.86615,848067.5374,0,21
+128880,44027.53584,844020.4892,0,21
+128881,31017.9387,815452.0447,0,21
+128882,30293.18055,814146.7694,0,21
+128883,30196.08252,813212.1347,0,21
+128884,29746.26914,811856.3577,0,21
+128885,29345.94881,810679.1617,0,21
+128886,29171.33827,809719.4458,0,21
+128887,28912.97627,808007.6564,0,21
+128888,28633.10234,807333.0609,0,21
+128889,28182.92076,805650.1718,0,21
+128890,28027.06473,804513.3259,0,21
+128891,27909.01246,803282.812,0,21
+128892,27427.47096,801622.3244,0,21
+128893,27390.91797,800947.5786,0,21
+128894,26924.27015,799105.7686,0,21
+128895,26776.39331,798051.843,0,21
+128896,26418.85169,796520.9838,0,21
+128897,26394.4887,795761.3294,0,21
+128898,25886.68124,794048.7519,0,21
+128899,25652.37533,792684.32,0,21
+128900,25748.91863,791984.7588,0,21
+128901,25116.01431,790546.9352,0,21
+128902,24902.84499,789446.8342,0,21
+128903,24745.69158,788293.849,0,21
+128904,24257.02441,786923.0484,0,21
+128905,24106.3476,786016.5276,0,21
+128906,23644.34813,784628.3484,0,21
+128907,23588.34166,783704.1616,0,21
+128908,302579.0989,782306.3995,0,21
+128909,22743.32337,783646.4899,0,21
+128910,22600.50448,782478.7366,0,21
+128911,22427.75601,781529.6494,0,21
+128912,21991.58514,780570.0168,0,21
+128913,21941.46095,779843.7565,0,21
+128914,21717.63346,778819.3929,0,21
+128915,21372.20255,777613.1303,0,21
+128916,21359.52492,775922.2645,0,21
+128917,20884.43152,774811.496,0,21
+128918,20981.35649,773917.5276,0,21
+128919,20639.20102,773145.2685,0,21
+128920,20394.63527,771808.5083,0,21
+128921,20369.36789,771600.544,0,21
+128922,20135.44773,770469.5128,0,21
+128923,19792.21205,769547.6546,0,21
+128924,19753.55586,768676.6181,0,21
+128925,19538.80065,768192.2641,0,21
+128926,19277.24522,766999.6364,0,21
+128927,19246.30299,766444.1512,0,21
+128928,18818.97162,765627.6871,0,21
+128929,19004.64023,764751.0179,0,21
+128930,18424.83057,764468.396,0,21
+128931,18532.81443,763238.2651,0,21
+128932,18373.38314,762558.109,0,21
+128933,17818.9402,762083.103,0,21
+128934,18124.77489,761319.3792,0,21
+128935,17657.83577,760337.1883,0,21
+128936,17648.71713,759769.1611,0,21
+128937,17395.50284,759433.2459,0,21
+128938,17149.20366,757942.9194,0,21
+128939,17149.20342,757713.9171,0,21
+128940,16889.95634,757988.8623,0,21
+128941,22577.98338,760793.1054,0,21
+128942,22871.29806,759856.1854,0,21
+128943,22538.32721,759234.7136,0,21
+128944,22482.79968,757977.0525,0,21
+128945,22620.61868,757038.7044,0,21
+128946,22265.64592,756225.1948,0,21
+128947,22339.45388,755170.1968,0,21
+128948,22226.24633,754407.8578,0,21
+128949,22100.11594,752964.9936,0,21
+128950,22095.76436,752411.2282,0,21
+128951,21965.42192,751630.5037,0,21
+128952,21716.07646,750124.2094,0,21
+128953,21951.88772,749659.0965,0,21
+128954,21675.89427,748641.07,0,21
+128955,21689.48553,747664.734,0,21
+128956,21435.3733,746887.8332,0,21
+128957,21662.83878,745798.4559,0,21
+128958,21207.33174,745220.3326,0,21
+128959,21398.75727,744127.9095,0,21
+128960,21180.56933,743649.0561,0,21
+128961,21239.01514,742101.1329,0,21
+128962,20927.83092,741948.5429,0,21
+128963,21021.31003,740907.1261,0,21
+128964,20900.9807,740379.1942,0,21
+128965,20767.68183,739410.374,0,21
+128966,20740.74591,738510.3769,0,21
+128967,20753.91033,737910.9964,0,21
+128968,20606.33298,737194.4357,0,21
+128969,20387.86942,736599.3369,0,21
+128970,20485.25872,735595.0041,0,21
+128971,20444.36811,735324.5325,0,21
+128972,20239.70932,734336.6182,0,21
+128973,20227.16959,734123.5345,0,21
+128974,20172.87385,733132.087,0,21
+128975,20009.33055,732882.9075,0,21
+128976,20023.58713,732233.8341,0,21
+128977,19845.72417,731604.3744,0,21
+128978,19927.7948,731178.5539,0,21
+128979,19681.42646,731189.7788,0,21
+128980,19805.23437,730528.8794,0,21
+128981,19640.8133,730726.4412,0,21
+128982,19544.50079,729694.5466,0,21
+128983,19434.72875,729603.8599,0,21
+128984,19503.10448,728683.8112,0,21
+128985,19378.87958,728543.9684,0,21
+128986,19297.74509,727862.5916,0,21
+128987,19212.48878,727771.9715,0,21
+128988,19159.42453,726977.7457,0,21
+128989,19199.12257,726610.1641,0,21
+128990,19006.30028,725921.1876,0,21
+128991,18868.24124,725889.4558,0,21
+128992,18949.35574,724836.8516,0,21
+128993,18853.27055,725066.46,0,21
+128994,18700.32022,724199.4576,0,21
+128995,18727.13932,723599.903,0,21
+128996,18671.81135,723249.256,0,21
+128997,18572.67252,722551.0444,0,21
+128998,18544.97525,722499.9325,0,21
+128999,18448.74241,721430.8801,0,21
+129000,295789.111,721214.953,0,21
+129001,12432.87398,715136.5581,0,21
+129002,12190.48878,713999.4626,0,21
+129003,12063.65361,713106.8115,0,21
+129004,11928.22718,711562.8767,0,21
+129005,11928.22716,710837.9984,0,21
+129006,11786.29805,709581.4751,0,21
+129007,11536.54476,708463.7513,0,21
+129008,11650.54116,707447.6421,0,21
+129009,11507.73852,706168.4789,0,21
+129010,11271.29434,705175.2474,0,21
+129011,11386.10776,703882.4394,0,21
+129012,11097.75043,702700.3525,0,21
+129013,11148.49667,701445.4942,0,21
+129014,11070.68819,700437.3535,0,21
+129015,10858.20845,698974.6297,0,21
+129016,10839.16471,698016.8942,0,21
+129017,10816.60545,696453.2229,0,21
+129018,10561.14128,695696.7865,0,21
+129019,10693.41657,694097.7929,0,21
+129020,10414.05084,693037.9472,0,21
+129021,10424.09896,691647.1568,0,21
+129022,10384.76292,690502.9425,0,21
+129023,10290.58619,689247.0136,0,21
+129024,10112.68592,687856.2658,0,21
+129025,10127.39372,686721.605,0,21
+129026,9988.856012,685246.2638,0,21
+129027,9962.491102,684087.9134,0,21
+129028,9879.538215,682672.7134,0,21
+129029,9780.745939,681189.9314,0,21
+129030,9742.9842,680856.4019,0,21
+129031,9515.788266,680050.8927,0,21
+129032,9700.874831,678178.1727,0,21
+129033,9515.78824,677153.1717,0,21
+129034,9391.583403,675634.0726,0,21
+129035,9406.470447,674825.4176,0,21
+129036,9362.944207,673285.4549,0,21
+129037,9233.274279,671865.1645,0,21
+129038,9253.384579,670765.2332,0,21
+129039,9066.473136,669335.6926,0,21
+129040,9093.798523,668060.7313,0,21
+129041,9204.602437,666835.1662,0,21
+129042,8803.358581,665475.5775,0,21
+129043,9037.753313,664209.6939,0,21
+129044,8803.35856,662689.7919,0,21
+129045,9007.641075,661655.9955,0,21
+129046,8789.587864,660108.784,0,21
+129047,8898.081452,659009.5972,0,21
+129048,8760.702734,657505.2792,0,21
+129049,8882.949029,656225.299,0,21
+129050,8760.702715,654874.3393,0,21
+129051,8744.189385,653673.7326,0,21
+129052,8855.374371,652162.4292,0,21
+129053,8744.189367,650974.7354,0,21
+129054,8730.385405,649800.2645,0,21
+129055,8730.385396,648054.1522,0,21
+129056,8715.146749,647133.4133,0,21
+129057,8715.146741,645520.6216,0,21
+129058,8701.30916,644529.3083,0,21
+129059,8589.801666,643051.0259,0,21
+129060,8701.309144,641513.1082,0,21
+129061,8670.665721,641824.512,0,21
+129062,8699.854117,640666.85,0,21
+129063,8686.016938,640558.3964,0,21
+129064,8670.666913,640545.6743,0,21
+129065,8699.85532,639727.0819,0,21
+129066,8641.387524,639614.474,0,21
+129067,8699.856133,639243.6183,0,21
+129068,8765.064055,639128.1982,0,21
+129069,8684.506528,638314.5456,0,21
+129070,8641.389148,638884.0289,0,21
+129071,8794.311556,639661.0375,0,21
+129072,8765.065746,640055.2445,0,21
+129073,8669.099549,640452.5133,0,21
+129074,8874.626363,641301.4607,0,21
+129075,8639.794233,641464.8364,0,21
+129076,8888.464854,642251.6563,0,21
+129077,8639.795078,642721.5514,0,21
+129078,8888.465754,643292.0677,0,21
+129079,8843.629729,643804.4448,0,21
+129080,8778.906833,644211.8634,0,21
+129081,8843.630634,644011.7145,0,21
+129082,8872.999012,644625.7256,0,21
+129083,8872.999471,645058.6726,0,21
+129084,8843.632003,646007.055,0,21
+129085,8857.470083,646149.6594,0,21
+129086,8857.470547,647044.7096,0,21
+129087,8982.319402,647684.9235,0,21
+129088,8841.877441,647963.3266,0,21
+129089,9075.868879,649020.3354,0,21
+129090,8857.472416,649283.6777,0,21
+129091,9060.27583,650201.1418,0,21
+129092,8980.595514,650851.7731,0,21
+129093,9075.870866,651555.4544,0,21
+129094,9089.675386,652126.6036,0,21
+129095,9214.048335,653037.2967,0,21
+129096,9103.447141,653664.673,0,21
+129097,9322.657169,654429.5561,0,21
+129098,9336.428454,655555.6638,0,21
+129099,9227.821171,656038.9194,0,21
+129100,9474.011751,656805.6544,0,21
+129101,9460.274499,658009.5078,0,21
+129102,9474.012868,658660.2312,0,21
+129103,9595.864785,659412.4959,0,21
+129104,9597.568838,660364.4917,0,21
+129105,9611.27461,661232.0567,0,21
+129106,9842.237818,662200.4875,0,21
+129107,9719.194521,663076.6602,0,21
+129108,9884.84665,664051.7677,0,21
+129109,9842.239655,664522.987,0,21
+129110,9992.318204,665997.4068,0,21
+129111,10114.80674,666871.285,0,21
+129112,9992.319477,667467.6442,0,21
+129113,10114.80805,668765.461,0,21
+129114,10371.0238,669688.0602,0,21
+129115,10129.99428,670335.5882,0,21
+129116,10371.02518,671785.8212,0,21
+129117,10492.75621,672403.024,0,21
+129118,10553.10731,673728.6059,0,21
+129119,11188.72339,674470.1798,0,21
+129120,10939.273,675831.5565,0,21
+129121,32606.56239,720573.7205,0,21
+129122,34027.38452,725545.2952,0,21
+129123,34610.52961,727232.9782,0,21
+129124,34902.1833,729699.593,0,21
+129125,35532.57255,731796.1421,0,21
+129126,35746.67632,733819.7506,0,21
+129127,36160.25832,736164.5227,0,21
+129128,36762.46636,738075.549,0,21
+129129,36808.45326,740419.7341,0,21
+129130,37571.28202,742848.795,0,21
+129131,37876.65803,744490.7968,0,21
+129132,38659.94378,746696.3341,0,21
+129133,38756.88839,748982.2617,0,21
+129134,39311.67173,750832.2759,0,21
+129135,39752.26197,752569.2879,0,21
+129136,39811.53607,754877.9601,0,21
+129137,40629.7107,758014.0274,0,21
+129138,40667.318,761453.1614,0,21
+129139,41101.71049,762512.2014,0,21
+129140,41949.57565,764361.3611,0,21
+129141,41888.9399,766723.3385,0,21
+129142,42478.85567,768234.5562,0,21
+129143,42837.84774,770190.3822,0,21
+129144,43514.41362,772398.8699,0,21
+129145,43824.35007,773172.3578,0,21
+129146,44405.02186,774804.1418,0,21
+129147,44786.94113,774721.0074,0,21
+129148,45032.7835,775708.7098,0,21
+129149,45689.34116,776088.6779,0,21
+129150,45975.90655,776444.8083,0,21
+129151,46290.24341,777411.2101,0,21
+129152,46732.45392,777588.6688,0,21
+129153,47181.64814,778529.7978,0,21
+129154,47472.76977,778705.4725,0,21
+129155,47756.29694,779517.2027,0,21
+129156,48340.58043,779645.3336,0,21
+129157,48505.89948,780903.1838,0,21
+129158,48900.65234,780818.7751,0,21
+129159,49215.7331,781382.7205,0,21
+129160,49788.67197,782311.5658,0,21
+129161,49752.31816,782546.5221,0,21
+129162,50426.79697,783153.4611,0,21
+129163,50617.01317,783664.3236,0,21
+129164,50911.30326,783978.355,0,21
+129165,51484.66463,785225.5968,0,21
+129166,51603.05193,784752.1317,0,21
+129167,51875.20287,786251.4457,0,21
+129168,52927.6756,786019.0459,0,21
+129169,55071.67344,786967.776,0,21
+129170,54749.41959,787459.0629,0,21
+129171,55244.59415,787797.4268,0,21
+129172,56254.01444,788583.0712,0,21
+129173,56398.95751,788624.4925,0,21
+129174,57275.4913,789829.7898,0,21
+129175,57817.84913,789874.7818,0,21
+129176,58359.65597,790494.295,0,21
+129177,58721.8338,791102.9107,0,21
+129178,59611.26518,791653.0822,0,21
+129179,59781.30223,792053.0514,0,21
+129180,60404.43811,792891.7971,0,21
+129181,73994.06468,805283.4592,0,21
+129182,75339.97098,806947.5303,0,21
+129183,85258.82491,807161.4609,0,21
+129184,81996.05843,807817.9334,0,21
+129185,83766.70782,807928.579,0,21
+129186,85038.42559,808270.0027,0,21
+129187,86087.45186,809181.566,0,21
+129188,87208.80277,809491.4821,0,21
+129189,88023.91601,809580.126,0,21
+129190,89324.79725,810247.3915,0,21
+129191,89648.40437,810544.8563,0,21
+129192,91330.68395,811304.3985,0,21
+129193,91888.04494,811263.6504,0,21
+129194,92834.13295,812273.076,0,21
+129195,94107.98937,812245.725,0,21
+129196,94712.50472,812615.9601,0,21
+129197,95602.92423,814379.464,0,21
+129198,96709.77259,815021.4473,0,21
+129199,97722.17921,814978.4826,0,21
+129200,98308.51211,815770.8797,0,21
+129201,99382.18475,815909.0097,0,21
+129202,100202.9105,816217.7323,0,21
+129203,101129.2386,816559.8978,0,21
+129204,101934.691,817061.5157,0,21
+129205,102963.8423,817425.1245,0,21
+129206,103651.356,817628.1684,0,21
+129207,104612.3636,817867.9045,0,21
+129208,105495.6024,818323.7838,0,21
+129209,106415.2951,818362.5091,0,21
+129210,107038.3499,818995.8921,0,21
+129211,108092.5337,819483.3063,0,21
+129212,108561.9034,820306.5102,0,21
+129213,109445.2382,820391.9242,0,21
+129214,110263.6804,820759.931,0,21
+129215,110968.8672,821584.087,0,21
+129216,111593.8966,821345.2581,0,21
+129217,112250.9728,822568.8094,0,21
+129218,113284.601,822235.7733,0,21
+129219,393507.8575,823078.7947,0,21
+129220,114412.4464,822906.5253,0,21
+129221,115295.338,823928.4693,0,21
+129222,116016.6372,823527.0884,0,21
+129223,116463.0754,824593.9302,0,21
+129224,117186.6666,824761.0999,0,21
+129225,118031.1624,824864.6884,0,21
+129226,118381.4148,825346.6801,0,21
+129227,119347.5967,825628.9268,0,21
+129228,119947.8116,826206.6396,0,21
+129229,120496.5833,826252.615,0,21
+129230,121262.5674,826560.9426,0,21
+129231,121762.8959,827094.0772,0,21
+129232,122528.4824,835120.7481,0,21
+129233,122929.5466,833868.5387,0,21
+129234,123926.5938,835476.795,0,21
+129235,124359.3211,836946.7003,0,21
+129236,124915.8848,838424.9295,0,21
+129237,125465.9667,839511.8177,0,21
+129238,126341.0883,840873.0426,0,21
+129239,126686.7036,842007.0632,0,21
+129240,127338.0123,843198.703,0,21
+129241,127747.5193,846738.9406,0,21
+129242,128716.2965,849733.0994,0,21
+129243,128908.958,853451.8564,0,21
+129244,129446.1392,856516.5462,0,21
+129245,130011.6297,859362.5369,0,21
+129246,130413.0152,862828.4008,0,21
+129247,131191.4423,865927.5458,0,21
+129248,131525.4441,868851.5476,0,21
+129249,132104.2896,872319.9129,0,21
+129250,132745.8401,875291.9048,0,21
+129251,133347.5078,878522.0351,0,21
+129252,133433.2831,881183.3162,0,21
+129253,134532.2623,884662.9905,0,21
+129254,134765.5503,887729.6606,0,21
+129255,135503.3632,890866.3032,0,21
+129256,135942.5,893826.9411,0,21
+129257,137431.0514,898536.7639,0,21
+129258,138668.3176,908659.0681,0,21
+129259,138929.2222,908872.3316,0,21
+129260,139725.222,914191.4373,0,21
+129261,140159.9305,918623.7405,0,21
+129262,140751.5552,922412.8964,0,21
+129263,141697.341,926903.5539,0,21
+129264,141622.2392,930974.9006,0,21
+129265,142866.1754,934513.9787,0,21
+129266,143177.8867,939555.3483,0,21
+129267,143891.1223,943008.4011,0,21
+129268,144394.83,947467.2604,0,21
+129269,144934.2395,951298.4851,0,21
+129270,145557.3216,955426.8003,0,21
+129271,146138.9011,959196.9504,0,21
+129272,146588.4282,968312.8288,0,21
+129273,146991.8054,972749.9876,0,21
+129274,149373.4764,976112.1942,0,21
+129275,149772.1334,979935.1171,0,21
+129276,150588.8762,985453.4002,0,21
+129277,150902.4001,988214.839,0,21
+129278,151552.5421,993174.2514,0,21
+129279,151726.9539,997001.6271,0,21
+129280,152543.7742,1001550.61,0,21
+129281,152914.006,1003958.71,0,21
+129282,153392.1194,1009302.93,0,21
+129283,153735.9526,1013350.947,0,21
+129284,154440.3333,1016863.803,0,21
+129285,154458.5332,1026380.815,0,21
+129286,155263.0498,1032058.85,0,21
+129287,155393.4311,1036701.516,0,21
+129288,156097.318,1039764.733,0,21
+129289,156306.7825,1045065.859,0,21
+129290,156777.1671,1047707.122,0,21
+129291,157143.4001,1053095.583,0,21
+129292,157551.1977,1054817.387,0,21
+129293,158089.1818,1060866.087,0,21
+129294,158236.9119,1063708.603,0,21
+129295,159021.3249,1067278.442,0,21
+129296,159021.6524,1071802.761,0,21
+129297,159627.357,1075285.916,0,21
+129298,159837.1631,1079623.006,0,21
+129299,160734.1965,1082067.323,0,21
+129300,160532.2316,1086480.758,0,21
+129301,163581.3934,1098556.986,0,21
+129302,164215.6842,1101382.755,0,21
+129303,164917.158,1104606.401,0,21
+129304,165284.89,1108429.293,0,21
+129305,167711.4449,1109908.388,0,21
+129306,167211.9114,1113678.856,0,21
+129307,167903.0015,1116551.349,295.5609157,21
+129308,168687.6084,1119119.352,2300.993265,21
+129309,168866.6364,1121596.885,1256.447617,21
+129310,169875.5994,1124123.145,2043.610256,21
+129311,169883.2268,1127405.465,2043.699867,21
+129312,170700.8423,1129508.835,2429.401315,21
+129313,171117.8548,1132334.927,2557.083207,21
+129314,171916.2322,1133794.129,2810.985582,21
+129315,172074.3763,1138821.907,3063.227083,21
+129316,172587.1262,1138859.165,3208.148761,21
+129317,173349.3252,1142135.532,3716.345903,21
+129318,173675.8627,1144987.273,3856.533774,21
+129319,174091.4881,1146570.025,4170.974546,21
+129320,174618.5689,1150177.385,4319.191754,21
+129321,175196.9282,1151468.883,4491.487689,21
+129322,175439.0906,1153873.768,4995.983201,21
+129323,176207.0376,1157318.358,4907.366913,21
+129324,176258.3421,1158505.923,5295.750673,21
+129325,177216.8506,1161286.211,5577.435395,21
+129326,177202.5244,1164063.436,5714.183305,21
+129327,178026.1385,1165601.121,5882.214981,21
+129328,178189.7282,1167710.729,6257.012565,21
+129329,178816.9291,1170019.609,6408.117351,21
+129330,179260.8508,1173668.873,6677.386027,21
+129331,179804.5774,1173342.624,6709.318671,21
+129332,179662.2031,1177766.014,7197.601986,21
+129333,180814.9072,1177943.257,7244.786251,21
+129334,180740.9645,1181034.065,7495.888548,21
+129335,181547.1921,1183912.728,7761.429893,21
+129336,181594.4155,1184846.335,7909.703275,21
+129337,182351.0512,1186928.726,8158.868006,21
+129338,182372.2135,1189356.097,8321.540542,21
+129339,183288.6317,1192353.846,8685.088719,21
+129340,182922.3985,1192296.234,8716.631317,21
+129341,184328.8445,1196447.535,9093.506616,21
+129342,184640.2576,1197443.817,9124.978488,21
+129343,185678.4542,1199102.752,9485.470767,21
+129344,186011.6002,1202020.209,9631.22525,21
+129345,187194.3438,1202841.318,9791.441262,21
+129346,188013.0345,1205913.052,10134.91819,21
+129347,188471.3006,1206645.78,10180.99571,21
+129348,189340.8627,1209752.024,10424.63821,21
+129349,190234.8402,1211376.066,10696.74426,21
+129350,190669.7385,1212706.943,10924.79914,21
+129351,191877.8261,1215510.958,10985.13322,21
+129352,192205.7153,1216337.365,11325.0374,21
+129353,193191.0141,1218858.858,11468.68815,21
+129354,193910.6103,1221186.545,11626.4795,21
+129355,194506.714,1221569.757,11964.54485,21
+129356,195179.1687,1225444.377,12010.3934,21
+129357,196274.5832,1225248.177,12250.48713,21
+129358,196735.1926,1228562.237,12518.44876,21
+129359,197568.1316,1229513.121,12632.73775,21
+129360,198219.2794,1231793.275,12899.94549,21
+129361,199351.1581,1233362.04,13042.17651,21
+129362,200607.5896,1235806.319,13266.51554,21
+129363,202151.7275,1238280.227,13312.34332,21
+129364,202559.3675,1240157.01,13550.35963,21
+129365,204151.1524,1241639.211,13801.92698,21
+129366,205373.1046,1243451.915,13806.00641,21
+129367,206165.1479,1245231.659,14194.41945,21
+129368,207468.9404,1245928.431,14198.72588,21
+129369,208777.2621,1249937.31,14340.09712,21
+129370,209411.9773,1250088.009,14685.69966,21
+129371,211218.1437,1251208.871,14717.89035,21
+129372,211915.6265,1254741.093,14858.95936,21
+129373,213210.229,1255070.558,15203.48971,21
+129374,214430.6938,1256566.099,15113.52042,21
+129375,215410.417,1259861.642,15593.20803,21
+129376,216662.9414,1259463.286,15381.66335,21
+129377,217422.6543,1262043.224,15847.00271,21
+129378,222044.8937,1264843.184,15879.55697,21
+129379,224859.3535,1264924.871,16127.95117,21
+129380,225061.4712,1267599.202,16133.43577,21
+129381,227162.6714,1268404.56,16489.15918,21
+129382,228996.1076,1270530.47,16521.9473,21
+129383,229939.2591,1271705.077,16662.22182,21
+129384,232012.4185,1274069.232,16990.01249,21
+129385,233941.7972,1274659.732,16915.7805,21
+129386,234413.7561,1277513.292,17377.05041,21
+129387,237115.3389,1278530.274,17196.17211,21
+129388,237922.9676,1279531.664,17630.08301,21
+129389,239212.9454,1281994.369,17823.8122,21
+129390,241635.7481,1282933.722,18047.92895,21
+129391,242439.6305,1284976.462,18261.1709,21
+129392,244741.9321,1286037.594,18457.45014,21
+129393,245276.7921,1287842.317,18491.147,21
+129394,247831.756,1289545.506,19014.9743,21
+129395,249466.7365,1291878.497,18839.54009,21
+129396,249785.4524,1291633.251,19332.72697,21
+129397,252688.824,1295256.87,19396.1118,21
+129398,253438.0574,1295007.395,19451.5222,21
+129399,255708.9798,1297653.65,20217.44383,21
+129400,256709.8221,1297792.857,20019.24075,21
+129401,257881.1597,1301290.959,20518.60834,21
+129402,260190.6001,1301017.592,20681.54232,21
+129403,261797.3987,1303522.709,20927.12308,21
+129404,262258.0225,1305666.905,21050.01005,21
+129405,264886.7016,1305271.833,21362.6546,21
+129406,266371.4947,1308513.516,21441.23675,21
+129407,267238.7916,1308367.546,21952.56697,21
+129408,269040.3108,1311616.781,21846.83872,21
+129409,270280.5014,1311801.465,22253.05845,21
+129410,272122.3247,1314503.609,22448.20977,21
+129411,273474.7499,1314551.931,22539.45645,21
+129412,275484.2973,1316329.552,23049.21296,21
+129413,276658.2068,1319456.987,22956.01412,21
+129414,277114.3303,1318922.964,23217.38443,21
+129415,280198.9318,1320833.385,23634.74939,21
+129416,281015.0129,1322556.237,23631.1241,21
+129417,281928.1881,1324584.587,23934.58258,21
+129418,284741.622,1324495.172,24216.73064,21
+129419,285020.4584,1327836.989,24307.83561,21
+129420,287191.8592,1326968.254,24608.0816,21
+129421,0,0,0,21
+129422,0,0,0,21
+129423,267844.9918,0,0,21
+129424,0,0,0,21
+129425,0,0,902090.1302,21
+129426,0,0,0,21
+129427,339976.7245,0,0,21
+129428,0,0,0,21
+129429,0,0,0,21
+129430,0,0,0,21
+129431,0,82.22114074,0,21
+129432,0,0,0,21
+129433,0,0,0,21
+129434,0,0,0,21
+129435,0,66.53969991,0,21
+129436,0,0,0,21
+129437,0,0,0,21
+129438,0,0,0,21
+129439,0,0,0,21
+129440,0,287.088492,0,21
+129441,0,0,0,21
+129442,0,0,0,21
+129443,0,0,0,21
+129444,0,0,0,21
+129445,0,0,0,21
+129446,0,0,0,21
+129447,0,0,0,21
+129448,0,0,0,21
+129449,0,0,0,21
+129450,0,0,0,21
+129451,0,0,0,21
+129452,0,0,0,21
+129453,0,0,0,21
+129454,0,0,0,21
+129455,0,3.146820444,0,21
+129456,0,0,0,21
+129457,0,0,0,21
+129458,0,295.5009183,0,21
+129459,0,0,882532.8957,21
+129460,0,0,0,21
+129461,0,0,0,21
+129462,0,0,0,21
+129463,339953.7801,0,0,21
+129464,0,0,0,21
+129465,0,0,0,21
+129466,0,0,0,21
+129467,0,0,0,21
+129468,0,0,0,21
+129469,0,0,0,21
+129470,0,0,0,21
+129471,0,0,0,21
+129472,0,23653.28573,0,21
+129473,0,948.8039159,0,21
+129474,0,2588.661458,0,21
+129475,0,5825.563001,0,21
+129476,0,7208.971302,0,21
+129477,0,5502.052013,0,21
+129478,0,6329.225729,0,21
+129479,0,7147.66498,0,21
+129480,0,6836.501078,0,15.6
+129481,0,7201.058788,0,15.6
+129482,0,7331.53355,0,15.6
+129483,0,7499.324745,0,15.6
+129484,0,7613.453604,0,15.6
+129485,0,7847.537433,0,15.6
+129486,0,7974.767829,0,15.6
+129487,0,8089.29528,0,15.6
+129488,0,8252.94131,0,15.6
+129489,0,8339.811719,0,15.6
+129490,0,8490.255848,0,15.6
+129491,0,8602.462881,0,15.6
+129492,0,8737.949617,0,15.6
+129493,0,9552.064249,864682.322,15.6
+129494,0,9311.898009,0,15.6
+129495,0,9629.458803,0,15.6
+129496,0,9827.703093,0,15.6
+129497,0,10058.18256,0,15.6
+129498,0,10209.86536,0,15.6
+129499,339939.9884,10374.45097,0,15.6
+129500,0,10653.97073,0,15.6
+129501,0,10750.56578,0,15.6
+129502,0,0,0,15.6
+129503,0,0,0,15.6
+129504,0,0,0,15.6
+129505,0,0,0,15.6
+129506,0,35724.40103,0,15.6
+129507,0,1511.533466,0,15.6
+129508,0,7030.359997,0,15.6
+129509,0,16996.71963,0,15.6
+129510,0,11236.4387,0,15.6
+129511,0,12519.40827,0,15.6
+129512,0,12708.08167,0,15.6
+129513,0,12847.12358,0,15.6
+129514,0,13055.03503,0,15.6
+129515,0,13134.26928,0,15.6
+129516,0,13316.56714,0,15.6
+129517,0,13513.87381,0,15.6
+129518,0,13599.64778,0,15.6
+129519,0,13781.37893,0,15.6
+129520,0,13915.83124,0,15.6
+129521,0,14059.75073,0,15.6
+129522,0,14180.52299,0,15.6
+129523,0,14485.53751,0,15.6
+129524,0,14636.18828,0,15.6
+129525,0,14710.16102,0,15.6
+129526,0,14899.4635,0,15.6
+129527,0,14990.68447,848373.6901,15.6
+129528,0,15168.98281,0,15.6
+129529,0,15294.72183,0,15.6
+129530,0,15392.92846,0,15.6
+129531,0,15570.61188,0,15.6
+129532,0,15544.20493,0,15.6
+129533,0,15652.2903,0,15.6
+129534,0,15818.382,0,15.6
+129535,339934.7431,15928.63147,0,15.6
+129536,0,0,0,15.6
+129537,0,0,0,15.6
+129538,0,0,0,15.6
+129539,0,48759.10044,0,15.6
+129540,0,3174.877292,0,15.6
+129541,0,16341.9584,0,15.6
+129542,0,19139.97114,0,15.6
+129543,0,16825.76425,0,15.6
+129544,0,17216.82643,0,15.6
+129545,0,17314.74624,0,15.6
+129546,0,17412.81364,0,15.6
+129547,0,17525.72927,0,15.6
+129548,0,17675.85868,0,15.6
+129549,0,17717.22336,0,15.6
+129550,0,17852.86364,0,15.6
+129551,0,17933.1965,0,15.6
+129552,0,18045.66588,0,15.6
+129553,0,18153.28068,0,15.6
+129554,0,18236.17383,0,15.6
+129555,0,18368.06866,0,15.6
+129556,0,18407.15224,0,15.6
+129557,0,18580.28643,0,15.6
+129558,0,18620.37503,0,15.6
+129559,0,18729.14021,0,15.6
+129560,0,18832.20056,0,15.6
+129561,0,18917.18486,833479.0613,15.6
+129562,0,19022.36958,0,15.6
+129563,0,19104.17025,0,15.6
+129564,0,19188.53509,0,15.6
+129565,0,19297.7257,0,15.6
+129566,0,19393.10614,0,15.6
+129567,0,19442.46679,0,15.6
+129568,0,19558.68274,0,15.6
+129569,0,0,0,15.6
+129570,0,0,0,15.6
+129571,339927.2842,0,0,15.6
+129572,0,63143.47075,0,15.6
+129573,0,6486.979113,0,15.6
+129574,0,15583.39843,0,15.6
+129575,0,24542.5111,0,15.6
+129576,0,19778.22415,0,15.6
+129577,0,20444.5678,0,15.6
+129578,0,20457.61923,0,15.6
+129579,0,20625.95451,0,15.6
+129580,0,20639.04425,0,15.6
+129581,0,20782.39443,0,15.6
+129582,0,20782.39436,0,15.6
+129583,0,20916.62949,0,15.6
+129584,0,20983.35209,0,15.6
+129585,0,21038.12679,0,15.6
+129586,0,21159.40532,0,15.6
+129587,0,21194.54782,0,15.6
+129588,0,21236.98157,0,15.6
+129589,0,21433.67575,0,15.6
+129590,0,21489.86659,0,15.6
+129591,0,21546.62842,0,15.6
+129592,0,21706.14259,0,15.6
+129593,0,21760.76807,0,15.6
+129594,0,21762.49697,0,15.6
+129595,0,21935.63959,0,15.6
+129596,0,247601.4542,819885.4685,15.6
+129597,0,27544.06862,0,15.6
+129598,0,46619.45927,0,15.6
+129599,0,60838.38989,0,15.6
+129600,0,89902.75453,0,15.6
+129601,0,68672.23001,0,15.6
+129602,0,62334.42208,0,15.6
+129603,0,59625.57678,0,15.6
+129604,0,60254.93619,0,15.6
+129605,0,137214.6598,0,15.6
+129606,0,73711.14969,0,15.6
+129607,339909.5979,74925.93242,0,15.6
+129608,0,94001.2431,0,15.6
+129609,0,85953.14833,0,15.6
+129610,0,87575.31342,0,15.6
+129611,0,88490.59964,0,15.6
+129612,0,88783.86312,0,15.6
+129613,0,89484.94528,0,15.6
+129614,0,90336.66597,0,15.6
+129615,0,90490.67977,0,15.6
+129616,0,91635.26005,0,15.6
+129617,0,91787.84945,0,15.6
+129618,0,92664.10001,0,15.6
+129619,0,93303.36863,0,15.6
+129620,0,93693.04479,0,15.6
+129621,0,94270.44914,0,15.6
+129622,0,95125.05764,0,15.6
+129623,0,95288.42129,0,15.6
+129624,0,96417.60763,0,15.6
+129625,0,96454.41105,0,15.6
+129626,0,24537.07315,0,15.6
+129627,0,24612.39325,0,15.6
+129628,0,24712.92172,0,15.6
+129629,0,24701.12585,0,15.6
+129630,0,24820.39091,0,15.6
+129631,0,24873.67782,807465.0496,15.6
+129632,0,24933.12029,0,15.6
+129633,0,304366.9703,0,15.6
+129634,0,37843.88521,0,15.6
+129635,0,33958.90005,0,15.6
+129636,0,113607.0214,0,15.6
+129637,0,72345.78652,0,15.6
+129638,0,164111.0407,0,15.6
+129639,0,94277.55925,0,15.6
+129640,0,96995.36635,0,15.6
+129641,0,122556.9601,0,15.6
+129642,0,111470.9684,0,15.6
+129643,0,113700.9529,0,15.6
+129644,339846.1534,115196.6837,0,15.6
+129645,0,115934.8067,0,15.6
+129646,0,116550.2724,0,15.6
+129647,0,117876.5918,0,15.6
+129648,0,118507.3833,0,15.6
+129649,0,118755.9076,0,15.6
+129650,0,120612.1846,0,15.6
+129651,0,120769.4587,0,15.6
+129652,0,121901.1139,0,15.6
+129653,0,122436.7923,0,15.6
+129654,0,123485.258,0,15.6
+129655,0,124174.4506,0,15.6
+129656,0,124977.4003,0,15.6
+129657,0,125942.8558,0,15.6
+129658,0,126142.5738,0,15.6
+129659,0,127791.9636,0,15.6
+129660,0,128063.7114,0,15.6
+129661,0,128588.2883,0,15.6
+129662,0,129930.925,0,15.6
+129663,0,26767.14345,0,15.6
+129664,0,26733.2998,0,15.6
+129665,0,26881.59417,0,15.6
+129666,0,26881.59408,796115.7982,15.6
+129667,0,26881.59399,0,15.6
+129668,0,329508.0978,0,15.6
+129669,0,10860.42279,0,15.6
+129670,0,156836.1831,0,15.6
+129671,0,152959.101,0,15.6
+129672,0,128121.7427,0,15.6
+129673,0,140559.3519,0,15.6
+129674,0,138501.4562,0,15.6
+129675,0,139123.2323,0,15.6
+129676,0,139809.9374,0,15.6
+129677,0,140426.0005,0,15.6
+129678,0,141118.9256,0,15.6
+129679,0,141751.8771,0,15.6
+129680,0,142230.7655,0,15.6
+129681,339809.4047,142627.2947,0,15.6
+129682,0,144097.2076,0,15.6
+129683,0,143652.3783,0,15.6
+129684,0,145100.874,0,15.6
+129685,0,145201.8928,0,15.6
+129686,0,146521.9224,0,15.6
+129687,0,146120.7622,0,15.6
+129688,0,147634.9672,0,15.6
+129689,0,147621.3559,0,15.6
+129690,0,148548.2329,0,15.6
+129691,0,149109.5854,0,15.6
+129692,0,149874.7434,0,15.6
+129693,0,150083.6175,0,15.6
+129694,0,150759.2312,0,15.6
+129695,0,151638.8217,0,15.6
+129696,0,152078.3903,0,15.6
+129697,0,152656.582,0,15.6
+129698,0,28379.02938,0,15.6
+129699,0,28407.21809,0,15.6
+129700,0,0,0,15.6
+129701,0,0,785788.0382,15.6
+129702,0,81316.77998,0,15.6
+129703,0,418808.3334,0,15.6
+129704,0,63265.05038,0,15.6
+129705,0,129567.2935,0,15.6
+129706,0,190192.5822,0,15.6
+129707,0,154841.2585,0,15.6
+129708,0,159833.5959,0,15.6
+129709,0,160291.012,0,15.6
+129710,0,160481.1984,0,15.6
+129711,0,161558.2477,0,15.6
+129712,0,161766.7254,0,15.6
+129713,0,162160.295,0,15.6
+129714,0,162780.2122,0,15.6
+129715,0,163056.3693,0,15.6
+129716,0,163972.7029,0,15.6
+129717,0,163609.4692,0,15.6
+129718,339797.2285,164902.3351,0,15.6
+129719,0,164805.574,0,15.6
+129720,0,165993.8867,0,15.6
+129721,0,165857.2763,0,15.6
+129722,0,166679.7982,0,15.6
+129723,0,167274.6429,0,15.6
+129724,0,167808.997,0,15.6
+129725,0,168077.7484,0,15.6
+129726,0,169300.5084,0,15.6
+129727,0,169009.0337,0,15.6
+129728,0,170108.598,0,15.6
+129729,0,170229.0727,0,15.6
+129730,0,171107.885,0,15.6
+129731,0,171407.7165,0,15.6
+129732,0,142332.3784,0,15.6
+129733,0,0,0,15.6
+129734,0,453665.0362,0,15.6
+129735,0,13920.03926,0,15.6
+129736,0,25231.77263,776376.1695,15.6
+129737,0,504983.1835,0,15.6
+129738,0,56341.44283,0,15.6
+129739,0,150661.0428,0,15.6
+129740,0,208671.8545,0,15.6
+129741,0,172991.4898,0,15.6
+129742,0,177095.3356,0,15.6
+129743,0,178294.2137,0,15.6
+129744,0,178605.1187,0,15.6
+129745,0,178544.1577,0,15.6
+129746,0,179818.5446,0,15.6
+129747,0,179776.3283,0,15.6
+129748,0,180082.6829,0,15.6
+129749,0,181042.1683,0,15.6
+129750,0,181432.8328,0,15.6
+129751,0,181415.3977,0,15.6
+129752,0,182402.7954,0,15.6
+129753,0,182789.409,0,15.6
+129754,0,183221.5472,0,15.6
+129755,339785.4839,183301.2242,0,15.6
+129756,0,184695.3222,0,15.6
+129757,0,184454.0229,0,15.6
+129758,0,184797.4776,0,15.6
+129759,0,185726.9199,0,15.6
+129760,0,186211.7219,0,15.6
+129761,0,186136.4215,0,15.6
+129762,0,187487.5762,0,15.6
+129763,0,187135.1928,0,15.6
+129764,0,156862.0414,0,15.6
+129765,0,157039.6776,0,15.6
+129766,0,247903.1051,0,15.6
+129767,0,16140.58035,0,15.6
+129768,0,25051.63873,0,15.6
+129769,0,36589.94888,0,15.6
+129770,0,30940.00308,0,15.6
+129771,0,576521.6444,767774.3639,15.6
+129772,0,73257.28527,0,15.6
+129773,0,140698.9936,0,15.6
+129774,0,240535.6125,0,15.6
+129775,0,186699.0754,0,15.6
+129776,0,194427.0572,0,15.6
+129777,0,194453.5878,0,15.6
+129778,0,194729.1555,0,15.6
+129779,0,195040.6559,0,15.6
+129780,0,196140.0294,0,15.6
+129781,70255.45853,1344912.431,0,15.6
+129782,5540.61993,1082587.024,0,15.6
+129783,4662.776641,217448.6052,0,15.6
+129784,21933.82966,482510.26,0,15.6
+129785,15526.77774,558461.3173,0,15.6
+129786,15260.19117,420393.2148,0,15.6
+129787,15596.86058,461926.1192,0,15.6
+129788,15571.78248,449576.1215,0,15.6
+129789,15615.38499,448416.9055,0,15.6
+129790,15592.20001,448229.0937,0,15.6
+129791,15590.35079,446037.109,0,15.6
+129792,355386.1938,447018.8579,0,15.6
+129793,15596.39969,445226.6809,0,15.6
+129794,15620.89898,444650.684,0,15.6
+129795,15625.09973,444635.9048,0,15.6
+129796,15634.36955,377350.1918,0,15.6
+129797,15627.75294,377025.5941,0,15.6
+129798,15658.9588,490978.2474,0,15.6
+129799,15683.31818,438907.2238,0,15.6
+129800,15645.44721,443178.179,0,15.6
+129801,15703.62304,441592.648,0,15.6
+129802,15701.01032,61775.20053,0,15.6
+129803,15710.3993,1065989.88,0,15.6
+129804,15700.99941,255106.4281,0,15.6
+129805,15723.86375,492627.2893,759911.5509,15.6
+129806,15814.57969,425536.8369,0,15.6
+129807,15718.59696,451382.2542,0,15.6
+129808,15802.88835,439468.4046,0,15.6
+129809,15763.21457,439002.8742,0,15.6
+129810,15865.63777,438568.8601,0,15.6
+129811,0,438536.439,0,15.6
+129812,0,438117.9085,0,15.6
+129813,0,437977.5239,0,15.6
+129814,0,437899.4892,0,15.6
+129815,0,436995.4693,0,15.6
+129816,0,437273.2289,0,15.6
+129817,59559.93179,437074.7503,0,15.6
+129818,1540.152876,436407.7222,0,15.6
+129819,6451.182385,436768.0107,0,15.6
+129820,24196.99187,436375.697,0,15.6
+129821,14404.56145,436046.5112,0,15.6
+129822,16082.48248,435800.5454,0,15.6
+129823,16098.63732,436236.3813,0,15.6
+129824,16143.03351,435083.2258,0,15.6
+129825,16194.93154,435856.3798,0,15.6
+129826,16153.38831,435240.7516,0,15.6
+129827,355955.2442,434861.717,0,15.6
+129828,16197.38614,370853.5823,0,15.6
+129829,16242.7444,369255.2794,0,15.6
+129830,16248.03764,484579.58,0,15.6
+129831,16245.15798,429904.4735,0,15.6
+129832,16306.49886,438250.4556,0,15.6
+129833,16278.23163,70304.79986,0,15.6
+129834,16334.21519,61837.72788,0,15.6
+129835,16308.89787,1048349.449,0,15.6
+129836,16381.06379,255517.3968,0,15.6
+129837,16369.60295,475462.6519,0,15.6
+129838,16367.21852,427415.4918,0,15.6
+129839,16427.80173,811668.9333,752722.5758,15.6
+129840,16482.74068,434990.1168,0,17.8
+129841,1060329.25,2281860.063,0,17.8
+129842,610880.2102,1430375.01,0,17.8
+129843,209203.4661,765764.0355,0,17.8
+129844,248472.8313,804382.7457,0,17.8
+129845,341700.9326,839703.4838,0,17.8
+129846,288642.4069,963988.58,0,17.8
+129847,235292.4708,849884.1844,0,17.8
+129848,236247.1459,871769.6511,0,17.8
+129849,321055.9591,872542.3847,0,17.8
+129850,289289.0434,868724.5576,0,17.8
+129851,285260.3158,868291.1105,0,17.8
+129852,291614.2065,865252.5987,0,17.8
+129853,290408.0533,865562.9674,0,17.8
+129854,290409.6067,861856.9247,0,17.8
+129855,290344.7604,863323.3474,0,17.8
+129856,291509.649,859991.2975,0,17.8
+129857,291339.3705,858632.4482,0,17.8
+129858,291861.5837,858709.7946,0,17.8
+129859,292389.2236,857985.8799,0,17.8
+129860,293234.7901,730443.9339,0,17.8
+129861,293441.3767,917898.7623,0,17.8
+129862,633808.7794,857269.9686,0,17.8
+129863,294512.2251,839558.8979,0,17.8
+129864,294794.6546,851300.0136,0,17.8
+129865,296052.6175,151638.7614,0,17.8
+129866,287935.7037,151459.1593,0,17.8
+129867,289386.911,1236266.018,0,17.8
+129868,289075.5581,882285.9439,0,17.8
+129869,290047.1871,594676.9605,0,17.8
+129870,290710.9693,915339.5311,0,17.8
+129871,52803.95715,840940.961,0,17.8
+129872,52834.00265,803424.4149,0,17.8
+129873,52822.592,818152.7299,746161.1898,17.8
+129874,52972.55508,892846.4637,0,17.8
+129875,784145.3356,831576.8005,0,17.8
+129876,201943.5031,844475.6257,0,17.8
+129877,233164.8138,1215181.437,0,17.8
+129878,339017.9881,836028.6114,0,17.8
+129879,239756.0226,836273.8576,0,17.8
+129880,243311.96,835357.6506,0,17.8
+129881,329085.809,835087.7255,0,17.8
+129882,300040.6185,833984.544,0,17.8
+129883,292436.6732,831958.937,0,17.8
+129884,301694.4207,833558.8743,0,17.8
+129885,299495.0726,831028.4493,0,17.8
+129886,300431.3743,831711.211,0,17.8
+129887,300745.1329,830348.0337,0,17.8
+129888,301186.6516,830235.7737,0,17.8
+129889,302213.0005,829407.7584,0,17.8
+129890,302675.3781,828458.4018,0,17.8
+129891,303368.1326,711621.1465,0,17.8
+129892,303977.0282,887426.1825,0,17.8
+129893,304698.2273,825807.0328,0,17.8
+129894,305188.3052,818487.7866,0,17.8
+129895,306071.7479,831381.3151,0,17.8
+129896,306421.4774,825462.5677,0,17.8
+129897,647091.1001,145354.3245,0,17.8
+129898,307996.5535,145245.2516,0,17.8
+129899,308597.0716,1230572.84,0,17.8
+129900,309379.4341,829022.3639,0,20
+129901,1735960.14,2611091.41,211291.1593,20
+129902,669532.3186,1811841.436,63610.92966,20
+129903,225834.8487,764938.4507,90119.49192,20
+129904,387316.2613,849276.043,137605.6621,20
+129905,426047.5673,959668.5838,138482.0628,20
+129906,379961.6586,1088902.575,122285.0879,20
+129907,432010.789,931733.6609,129976.8216,20
+129908,423892.9854,968825.6491,130065.4505,20
+129909,416458.4377,929065.2105,130601.091,20
+129910,422188.2709,949081.1319,130356.7038,20
+129911,423879.0971,939718.8281,131136.8677,20
+129912,421130.2328,935927.8224,130822.1289,20
+129913,422746.1256,933540.9591,131483.4272,20
+129914,422482.2126,930040.7946,131220.0987,20
+129915,421837.3635,930101.6347,131920.6777,20
+129916,422562.3259,923891.229,131747.4914,20
+129917,422038.1535,924659.796,132387.4081,20
+129918,421962.5648,922314.3483,132350.8047,20
+129919,422348.561,917349.1124,132431.0709,20
+129920,422598.6006,917976.4907,133139.2076,20
+129921,423031.414,914663.2945,132665.7099,20
+129922,422887.5666,912400.8957,133653.2983,20
+129923,422401.4286,911483.9431,133298.4842,20
+129924,423093.102,908800.0338,133659.6372,20
+129925,423132.3631,907482.1667,134025.971,20
+129926,424169.4737,905077.9138,134254.2434,20
+129927,422602.4457,903575.4752,134133.1828,20
+129928,423704.5678,901444.7829,134978.2904,20
+129929,424718.5466,901390.1264,134758.8404,20
+129930,424504.7316,897781.9335,134923.104,20
+129931,422922.3587,896428.9547,135201.5582,20
+129932,423178.3333,895909.3595,135753.0846,20
+129933,424845.2653,894015.9762,135661.5,20
+129934,423133.7564,891801.1309,135655.0757,20
+129935,425729.2653,890728.6885,136264.1102,20
+129936,423507.2851,889087.1222,136274.7933,20
+129937,425444.1284,887813.7265,136562.3497,20
+129938,424884.0819,886689.8249,136476.2109,20
+129939,426189.4444,885645.3558,137154.3234,20
+129940,425640.7412,881674.1925,136920.1062,20
+129941,426374.597,883123.6853,137011.4308,20
+129942,426175.2826,882142.0064,137518.453,20
+129943,427614.3384,878132.947,137441.5574,20
+129944,426060.3128,880349.3212,137822.0417,20
+129945,428546.1521,875730.3991,137848.1248,20
+129946,426950.4667,876906.0155,138099.3478,20
+129947,428570.4214,962762.6373,137992.1672,20
+129948,429172.5808,874372.2806,138289.5278,20
+129949,428378.484,871908.4844,138522.3831,20
+129950,429195.8747,872148.6168,138840.567,20
+129951,430110.1406,871151.5136,138381.4558,20
+129952,429795.1026,869213.0867,138571.7579,20
+129953,430205.2763,869825.7166,139102.5489,20
+129954,431290.0238,867054.4459,138763.8377,20
+129955,430475.3888,866154.756,139022.2748,20
+129956,431795.6592,867034.5817,139068.0738,20
+129957,432016.1926,864238.8635,139152.4098,20
+129958,431800.8132,864375.5553,138818.9688,20
+129959,432960.2115,862661.2697,138926.4311,20
+129960,433539.1399,861793.5124,138824.3866,21
+129961,755629.8694,1557315.711,138573.6443,21
+129962,755665.6747,1557679.445,139425.547,21
+129963,753911.6436,1557395.977,139744.7753,21
+129964,748016.301,1557627.794,140126.6019,21
+129965,745124.2329,1559714.892,140450.613,21
+129966,744397.9868,1558787.516,141074.7224,21
+129967,743878.8228,1560750.479,141539.1357,21
+129968,742902.6719,1559593.33,141662.5105,21
+129969,741104.4608,1561751.618,142207.9821,21
+129970,742279.0229,1560546.531,142806.3937,21
+129971,738395.8014,1562988.816,142734.4421,21
+129972,741121.2908,1562991.639,143700.4257,21
+129973,736991.4614,1562951.297,143738.3841,21
+129974,738717.2222,1564476.042,144163.2502,21
+129975,736303.9833,1564096.063,145053.505,21
+129976,735755.3983,1566141.297,144480.9538,21
+129977,735297.8331,1564896.875,145920.8284,21
+129978,733823.5181,1567200.143,145640.2709,21
+129979,733896.9511,1568090.998,146651.0071,21
+129980,732841.4051,1563811.421,146593.1204,21
+129981,731193.5505,1563509.355,146937.3812,21
+129982,730958.5236,1565180.735,147678.6042,21
+129983,730273.521,1563340.907,148074.0432,21
+129984,729367.648,1566401.254,148316.2288,21
+129985,728086.545,1564620.091,148823.1681,21
+129986,729463.0199,1566175.915,148855.8621,21
+129987,727186.9008,1567002.128,150079.8037,21
+129988,728109.0667,1566242.018,149824.3477,21
+129989,726083.283,1567354.659,150355.115,21
+129990,724946.1157,1568155.083,150677.979,21
+129991,724851.3873,1566946.755,149997.6374,21
+129992,722987.5732,1568700.158,149137.9312,21
+129993,721834.1076,1569077.898,150198.6825,21
+129994,721342.0472,1567412.169,149900.3958,21
+129995,719519.7746,1570080.624,150445.8643,21
+129996,719113.3587,1567918.343,150061.9758,21
+129997,717614.3856,1570236.683,150983.6589,21
+129998,715702.0126,1570201.42,151303.9944,21
+129999,714829.7355,1569790.573,150802.728,21
+130000,713072.3925,1571764.723,151574.7469,21
+130001,710939.7209,1568412.093,152067.6096,21
+130002,709226.5512,1569682.211,151388.3824,21
+130003,708038.7684,1571757.262,152706.5977,21
+130004,705977.923,1570103.66,152089.239,21
+130005,704704.6606,1570029.716,152733.8296,21
+130006,703048.4922,1571350.933,152868.8812,21
+130007,701281.6192,1570041.523,152977.8109,21
+130008,700822.12,1571715.294,153338.7075,21
+130009,699179.2398,1571921.002,153332.9027,21
+130010,697694.0387,1570272.133,153775.8955,21
+130011,696120.2975,1572510.008,153761.7701,21
+130012,695221.8968,1570867.21,154013.8867,21
+130013,692575.9234,1573565.043,154546.2541,21
+130014,692461.7766,1571450.106,154019.1179,21
+130015,690096.7267,1572665.207,154972.8069,21
+130016,688934.2505,1573752.833,154587.1648,21
+130017,687010.9294,1571531.211,155354.2007,21
+130018,686195.6678,1574177.681,155046.0723,21
+130019,683091.3672,1572436.76,155358.8667,21
+130020,683327.9764,1574244.286,155431.623,21
+130021,619316.2692,1511595.704,126727.3906,21
+130022,613116.9562,1502278.987,125581.4536,21
+130023,608859.3635,1501070.354,124286.8166,21
+130024,605186.0243,1494491.297,125573.6254,21
+130025,601665.3771,1491541.576,124297.078,21
+130026,598475.3012,1488163.158,125107.9772,21
+130027,594897.8639,1483108.954,124561.1876,21
+130028,590545.6168,1480953.386,124672.7308,21
+130029,586167.9804,1476095.165,125068.629,21
+130030,584196.5775,1472625.625,124395.1354,21
+130031,579021.4533,1469284.849,125341.9568,21
+130032,577213.5229,1464535.908,124705.5112,21
+130033,573090.5724,1463118.647,125270.8844,21
+130034,569485.6742,1457192.202,124743.5513,21
+130035,566804.4073,1455052.854,125261.3241,21
+130036,563043.0339,1451737.868,125239.5831,21
+130037,558888.1716,1446720.027,125302.77,21
+130038,556835.5662,1444204.835,125466.6048,21
+130039,552625.4361,1440658.187,125543.4367,21
+130040,551428.8096,1437436.439,125686.9287,21
+130041,547146.3571,1433100.447,125324.5674,21
+130042,544377.0835,1430979.665,126160.2363,21
+130043,541031.2457,1426139.874,125809.6392,21
+130044,537512.7422,1423366.002,125904.0616,21
+130045,534983.376,1420030.778,126251.2092,21
+130046,530249.1389,1416693.871,125916.4998,21
+130047,528691.8929,1412160.926,126761.2023,21
+130048,525290.2295,1410564.735,126322.1199,21
+130049,520818.6422,1405806.337,126555.2314,21
+130050,519312.855,1403887.46,126815.5071,21
+130051,514938.4111,1400923.754,126734.0361,21
+130052,512215.0247,1398127.277,126831.9873,21
+130053,510661.8221,1396204.539,125990.4209,21
+130054,506110.3146,1391474.043,126725.6248,21
+130055,503743.7354,1388651.041,125984.9035,21
+130056,501587.6759,1386248.603,126271.328,21
+130057,498444.4537,1383318.328,125975.3416,21
+130058,495261.5383,1378278.41,125627.9276,21
+130059,493017.0093,1376930.771,125631.2497,21
+130060,489389.463,1372107.52,125446.8282,21
+130061,486250.0751,1370443.648,125561.2071,21
+130062,483487.9317,1366729.554,125109.4204,21
+130063,480160.9963,1362912.061,124825.049,21
+130064,477911.0691,1360465.082,125050.0094,21
+130065,474971.4757,1356824.476,124388.1246,21
+130066,472333.4273,1352837.396,124634.6123,21
+130067,469058.2036,1351741.458,124036.645,21
+130068,467282.1291,1347052.229,123989.3771,21
+130069,464468.351,1344295.176,124099.9899,21
+130070,460861.9283,1341353.646,123586.3114,21
+130071,459141.9162,1338278.862,123275.681,21
+130072,456942.6575,1335007.896,123306.1088,21
+130073,452298.3231,1331079.428,123064.7989,21
+130074,451935.0946,1329556.663,122810.5577,21
+130075,447759.4625,1324015.9,122720.2889,21
+130076,446356.5455,1323767.385,122457.4823,21
+130077,442279.5294,1318231.373,122212.3296,21
+130078,440949.256,1316063.71,121819.083,21
+130079,438327.6526,1313318.061,121840.8353,21
+130080,434416.0317,1310036.841,121701.9854,21
+130081,433057.7348,1305816.439,122625.6777,21
+130082,429455.6123,1303880.738,122863.5113,21
+130083,425947.6591,1299724.345,122755.7613,21
+130084,424460.7843,1296956.887,123258.7264,21
+130085,421019.06,1295384.774,122584.1703,21
+130086,418258.7491,1290476.663,122919.7079,21
+130087,416623.4299,1288402.392,122965.6196,21
+130088,413529.469,1285463.191,122684.2316,21
+130089,412337.5969,1282183.39,121797.0065,21
+130090,409295.5454,1280213.24,122880.9604,21
+130091,408151.2713,1275984.541,121362.2267,21
+130092,405075.2179,1273126.153,121176.6985,21
+130093,402929.999,1271031.556,121056.8037,21
+130094,401394.2751,1267857.305,121048.2842,21
+130095,398541.1655,1264727.071,120430.9878,21
+130096,397486.8018,1261586.108,120074.6145,21
+130097,393635.99,1258816.617,120236.9404,21
+130098,392782.5367,1256644.85,119629.1166,21
+130099,390361.0708,1251705.623,118863.8201,21
+130100,387219.9325,1250957.01,119274.4967,21
+130101,386248.7899,1246720.876,118576.7545,21
+130102,383625.0581,1245597.3,118204.8919,21
+130103,381376.1385,1240593.295,117886.357,21
+130104,379460.1455,1238083.169,117633.1076,21
+130105,376845.2121,1235753.145,116970.0464,21
+130106,374856.4065,1232552.689,116649.3183,21
+130107,372392.6465,1229990.683,116356.6577,21
+130108,370285.9356,1227431.407,115783.4768,21
+130109,368600.3751,1223172.831,115486.5267,21
+130110,365278.536,1222009.758,115428.5127,21
+130111,364428.0014,1217035.571,114524.8169,21
+130112,361147.6759,1216665.868,115030.8769,21
+130113,360106.7499,1212815.758,114797.8891,21
+130114,356982.1467,1209877.305,114663.0832,21
+130115,354898.7653,1207837.637,114761.1187,21
+130116,353834.9139,1204672.022,114545.211,21
+130117,350734.0415,1202419.28,114540.8296,21
+130118,348712.359,1200460.846,114326.1838,21
+130119,346832.4642,1196160.395,114670.2031,21
+130120,344919.8645,1194347.924,113976.6317,21
+130121,341715.6668,1192659.92,114509.9928,21
+130122,340720.6846,1188044.151,114347.8421,21
+130123,338252.0004,1186712.273,113887.1251,21
+130124,335763.6827,1184007.654,114118.2171,21
+130125,333939.5666,1181798.62,114255.8073,21
+130126,331810.5979,1177463.769,113557.371,21
+130127,328176.4447,1177459.892,114011.0036,21
+130128,326420.6914,1173024.598,113642.0492,21
+130129,324443.5539,1170680.351,113666.334,21
+130130,321961.7947,1168262.31,113709.5865,21
+130131,319640.6321,1164980.114,113711.8425,21
+130132,317546.0274,1163905.938,112817.5249,21
+130133,315746.7517,1160134.476,113809.0426,21
+130134,312946.0811,1157880.259,112948.5178,21
+130135,311008.9179,1155022.985,113350.7603,21
+130136,309164.3978,1152486.937,112735.0826,21
+130137,306541.2786,1150185.379,113217.3668,21
+130138,304333.1828,1147517.387,112715.0222,21
+130139,302440.9468,1144827.277,113039.291,21
+130140,300322.8787,1141991.072,112190.4788,21
+130141,294969.946,1140100.682,115596.5542,21
+130142,293022.2402,1138281.284,115569.1838,21
+130143,288963.5369,1136588.384,114845.0818,21
+130144,287164.3887,1133416.793,115544.7973,21
+130145,282929.6097,1133327.65,114559.3907,21
+130146,280664.8326,1129924.83,114764.4849,21
+130147,276767.2647,1127960.964,114600.4054,21
+130148,274921.6282,1127970.345,114626.7866,21
+130149,270871.7766,1123609.181,113924.2527,21
+130150,268035.84,1122671.555,114198.7814,21
+130151,265499.9112,1121563.698,113814.349,21
+130152,260700.9008,1119091.614,114145.1289,21
+130153,259556.7251,1116562.768,113596.8379,21
+130154,255210.6629,1115359.401,113053.536,21
+130155,252578.8388,1114017.164,113514.4471,21
+130156,248633.918,1110719.059,113134.2646,21
+130157,246132.6121,1110559.543,113043.595,21
+130158,243280.9751,1106345.259,113003.5795,21
+130159,238673.5899,1107188.251,112273.6604,21
+130160,236839.4275,1102415.736,112677.8463,21
+130161,233094.7444,1103505.371,112761.217,21
+130162,229973.1303,1099395.072,111970.797,21
+130163,226503.2928,1098122.851,112290.0383,21
+130164,224032.8617,1096728.346,111780.0167,21
+130165,219941.3879,1094016.37,111717.9828,21
+130166,218525.7876,1092869.144,111980.9714,21
+130167,213447.9702,1090939.786,111360.2356,21
+130168,211914.8694,1088655.483,111760.9877,21
+130169,206667.0389,1087119.135,110814.142,21
+130170,204264.6941,1085352.361,112624.2306,21
+130171,201141.7772,1082715.207,111420.8197,21
+130172,196394.9817,1080712.523,111664.7984,21
+130173,193808.4083,1078037.048,111089.4563,21
+130174,189882.1536,1075388.6,111451.4213,21
+130175,186928.1072,1073525.155,110333.1079,21
+130176,183202.573,1070535.29,110401.91,21
+130177,180560.1115,1068875.42,110037.8954,21
+130178,176463.6141,1065185.86,109841.7757,21
+130179,174022.0282,1063972.24,109054.3514,21
+130180,170771.8432,1060577.187,109433.1226,21
+130181,166496.2674,1058060.525,108406.9981,21
+130182,164975.9321,1054444.394,108559.866,21
+130183,159731.044,1050026.796,108235.0006,21
+130184,157968.5896,1047695.098,107272.2857,21
+130185,154716.6015,1046264.288,107411.5339,21
+130186,150668.5439,1042023.351,107279.7548,21
+130187,148060.3008,1039874.941,106230.7473,21
+130188,143895.6758,1037841.924,106487.5156,21
+130189,141427.1025,1033879.709,105991.9358,21
+130190,138426.1505,1032920.641,105669.7619,21
+130191,133903.8543,1028885.196,104808.7773,21
+130192,132219.5801,1026315.805,105003.6794,21
+130193,128955.1186,1024870.057,104536.2106,21
+130194,128306.2499,1020535.429,103826.1894,21
+130195,126760.3173,1018345.871,103877.9955,21
+130196,124396.0642,1016299.807,103281.4213,21
+130197,124097.7956,1012378.499,103063.8531,21
+130198,120789.6677,1010841.537,102734.1899,21
+130199,120369.2747,1007288.498,102129.9622,21
+130200,118216.345,1004667.465,101952.4433,21
+130201,117370.6904,1002381.986,98357.21745,21
+130202,117686.6705,998427.6321,98062.40157,21
+130203,116004.0821,996055.7597,98405.06571,21
+130204,115593.3375,995237.7572,97416.80998,21
+130205,115209.6883,990268.3098,97416.21719,21
+130206,115780.1901,989276.185,97453.66564,21
+130207,114414.2007,986355.8188,96788.57357,21
+130208,114131.234,983832.6516,96867.30015,21
+130209,114663.5353,980337.9003,96713.35965,21
+130210,113235.5151,979382.9262,96043.87761,21
+130211,112968.7694,975903.053,95902.74057,21
+130212,112913.0876,972691.943,96313.91529,21
+130213,112063.3228,971862.4724,95201.50031,21
+130214,112849.6057,968364.8837,95776.79126,21
+130215,110654.0939,964718.0645,94703.46417,21
+130216,111409.7725,964445.7824,95220.31939,21
+130217,110587.3001,960316.4561,94788.13315,21
+130218,111265.5219,957832.0014,94044.11769,21
+130219,108994.4567,956821.5202,94442.64289,21
+130220,110519.8229,951480.2399,93787.70743,21
+130221,108987.9627,952683.172,93980.91743,21
+130222,108428.7365,946518.9089,93124.96581,21
+130223,109258.586,946314.9335,93461.4216,21
+130224,107884.5303,943196.236,92890.25162,21
+130225,107398.2592,940292.7502,92829.15427,21
+130226,108178.2429,937164.3451,92341.79701,21
+130227,106292.4787,935988.6096,92630.16157,21
+130228,107540.5982,932384.1316,91949.56168,21
+130229,106249.6871,929236.6688,91616.8299,21
+130230,105924.667,928234.938,91929.92683,21
+130231,106040.6002,924528.081,90628.27953,21
+130232,105134.5254,921190.8721,90411.43742,21
+130233,106124.2672,919675.9011,89530.40932,21
+130234,104457.4137,916291.4214,88992.4385,21
+130235,104274.2979,914065.0244,88124.19511,21
+130236,105026.3326,911785.2702,87466.08931,21
+130237,103331.0401,907947.1686,86716.44302,21
+130238,103883.3167,906890.3146,85589.87566,21
+130239,102650.7841,902814.6748,85314.07132,21
+130240,103698.5893,900710.2456,84708.52273,21
+130241,102120.2668,897543.8866,83015.73377,21
+130242,101750.0072,896083.5093,83187.83018,21
+130243,102599.8291,891677.366,81976.9088,21
+130244,101211.8356,890465.9752,81227.76479,21
+130245,100444.7484,887000.0466,80552.66893,21
+130246,101804.865,884330.9242,79387.39876,21
+130247,99774.45848,882117.2021,78755.61892,21
+130248,101040.8409,878962.2078,78086.22617,21
+130249,99329.60076,877042.2717,77067.05444,21
+130250,98981.57348,873524.1067,76438.60447,21
+130251,99802.7418,871406.5479,75191.42364,21
+130252,98309.97601,867570.2417,75050.45331,21
+130253,99015.99349,866632.0811,73576.74443,21
+130254,97726.00472,862237.1925,72853.79513,21
+130255,97227.13529,861143.193,72520.95508,21
+130256,97913.07918,856422.0202,71009.3445,21
+130257,96698.72382,855772.7236,70224.28876,21
+130258,97358.82657,851406.9515,69905.1326,21
+130259,95732.81052,849883.7885,68527.88521,21
+130260,96245.03688,846338.0279,68040.18931,21
+130261,149481.5499,909300.8426,101143.9949,21
+130262,155075.5558,913081.7751,101542.4277,21
+130263,153637.6208,911703.377,101910.3019,21
+130264,155677.4322,910768.5785,100227.2481,21
+130265,154942.2628,911330.9466,99554.21501,21
+130266,155585.0542,909410.8309,98948.1006,21
+130267,156567.2604,909844.2771,103099.9406,21
+130268,156728.565,908061.4504,99469.73427,21
+130269,156160.904,908331.7875,98683.32592,21
+130270,156734.2152,907226.3566,97637.21577,21
+130271,159721.2146,906234.351,96852.74619,21
+130272,159559.3737,905457.1177,95694.61707,21
+130273,161480.9879,905445.8859,94266.04993,21
+130274,159877.3235,903170.5783,94015.10168,21
+130275,161230.7814,903985.0194,91887.45141,21
+130276,162392.1138,901178.2585,91514.39082,21
+130277,161394.5816,902126.6262,90133.57181,21
+130278,162830.2462,900079.6824,89002.9189,21
+130279,162638.751,900192.5577,88070.55091,21
+130280,163605.6392,897690.0107,86632.80768,21
+130281,163220.6117,899701.2911,85790.78698,21
+130282,163806.9578,896414.6339,84771.96586,21
+130283,164080.5537,896177.1245,83349.89183,21
+130284,163977.2373,895395.9823,82141.30831,21
+130285,164100.7985,894830.9869,81279.10663,21
+130286,165058.3186,893754.157,80273.85559,21
+130287,165335.1704,892734.9847,78306.66203,21
+130288,165021.9762,891814.3926,77623.97621,21
+130289,165069.2185,891073.9027,76525.47728,21
+130290,166301.168,890461.3972,74992.46313,21
+130291,165173.551,889663.9066,74157.58436,21
+130292,166248.2188,889023.6035,73603.58168,21
+130293,166068.3849,888798.5439,72480.43913,21
+130294,166377.4462,888543.5323,71975.77533,21
+130295,166282.5165,888723.4468,70864.41761,21
+130296,167021.2155,888239.3597,70155.10387,21
+130297,166428.1938,887134.8132,69577.18425,21
+130298,166980.9925,889242.6551,68362.96278,21
+130299,167368.405,886026.0854,67930.83917,21
+130300,166952.1495,885685.1864,66862.44304,21
+130301,167318.1173,883761.0704,65886.81106,21
+130302,167994.6004,884337.6701,66508.61069,21
+130303,166991.7384,883528.9597,65483.46306,21
+130304,168332.5276,883002.7087,65190.65479,21
+130305,168019.9719,883927.711,63748.885,21
+130306,166957.8805,880678.7398,63655.09744,21
+130307,169077.7504,883801.3174,62670.70318,21
+130308,168332.5468,881611.4092,61926.48364,21
+130309,168058.1776,881100.9962,60938.96009,21
+130310,169014.1133,883156.874,60311.10227,21
+130311,168215.8582,880571.6306,59372.57924,21
+130312,169335.3574,880635.364,58775.30402,21
+130313,168894.3506,880333.1535,57894.72479,21
+130314,169469.3275,881690.2207,57191.37973,21
+130315,169214.1973,879444.4271,56144.06761,21
+130316,169279.7387,879829.7747,55733.63566,21
+130317,170381.0913,879414.7078,54678.90011,21
+130318,169397.2488,879940.0318,53650.18197,21
+130319,170407.7569,878547.9562,53260.48254,21
+130320,170423.0679,878695.2054,52316.62354,21
+130321,169460.4893,878589.4072,50744.56339,21
+130322,169480.1183,875181.119,49741.22642,21
+130323,171110.7622,875540.533,49872.88534,21
+130324,169125.135,871909.4039,48950.6113,21
+130325,170046.4027,873107.5449,48470.01301,21
+130326,170041.4216,869557.3205,47624.58987,21
+130327,169245.4098,869313.2495,47485.19069,21
+130328,169856.812,866908.8532,46464.41778,21
+130329,170374.4126,866069.9956,46092.65883,21
+130330,169250.2228,864405.9211,45757.58565,21
+130331,170028.8384,863281.6685,44923.51768,21
+130332,169210.4816,861233.6529,44463.17348,21
+130333,169513.6526,860414.7848,44060.03323,21
+130334,169854.1679,859370.9673,42990.57535,21
+130335,169591.2442,856395.1024,42757.20492,21
+130336,170274.9989,856484.5381,42290.15015,21
+130337,169247.0636,853643.7135,41509.41027,21
+130338,168921.3347,854704.2646,42254.56705,21
+130339,170521.753,851551.0305,41901.41405,21
+130340,169210.6396,852522.9857,41508.09036,21
+130341,167913.7685,850203.0558,40897.20734,21
+130342,168928.1977,850700.3851,40786.90917,21
+130343,168192.2277,848489.793,40182.61913,21
+130344,168076.6892,848726.9306,40010.2206,21
+130345,168976.3021,846654.4004,39740.83313,21
+130346,166346.3629,847690.4451,39102.56194,21
+130347,168214.7849,844810.0305,39074.45891,21
+130348,167493.0273,845295.3451,39017.02297,21
+130349,166271.0474,843514.6266,38204.86063,21
+130350,166582.7555,843557.2169,38234.23433,21
+130351,166840.6297,841388.4973,37979.04282,21
+130352,166909.0051,842103.9514,37895.2508,21
+130353,166466.1178,839566.4958,38185.39658,21
+130354,167778.5306,840186.4551,37626.53222,21
+130355,166707.8479,837795.1207,37981.34277,21
+130356,166723.804,836522.95,38272.84046,21
+130357,167887.9084,836188.6947,37703.60347,21
+130358,167848.5493,834449.8966,38068.40227,21
+130359,166734.313,834465.3784,38220.10159,21
+130360,169069.8129,832510.87,38157.27004,21
+130361,167102.1389,832595.5721,38149.60696,21
+130362,169014.552,830562.799,38318.73092,21
+130363,168238.9688,830146.2172,37904.45487,21
+130364,168475.3877,829412.8222,38330.39964,21
+130365,169433.4822,827183.8743,36604.91149,21
+130366,169639.5344,828470.0421,36800.31402,21
+130367,168719.9144,825225.1843,36722.81322,21
+130368,169943.8578,824963.3012,36674.19816,21
+130369,170244.8568,825664.4176,36220.7304,21
+130370,171029.0456,822770.0628,36762.66235,21
+130371,169502.8616,822119.3134,36209.89774,21
+130372,171553.5144,822718.9047,36370.77353,21
+130373,170779.0587,819924.2999,36503.28565,21
+130374,172003.1412,820745.1194,36160.8661,21
+130375,171966.6087,817856.514,36311.08597,21
+130376,171686.2489,818947.7108,36310.06333,21
+130377,173192.4918,816147.2596,36051.8066,21
+130378,172161.5571,816414.474,36304.13411,21
+130379,173691.9266,814288.6902,36251.38078,21
+130380,173379.5281,813988.7563,36156.50195,21
+130381,173800.13,813204.2692,37326.03177,21
+130382,175541.8878,813079.5965,37402.39725,21
+130383,175986.583,812640.4248,37013.7943,21
+130384,176185.4308,811507.8721,37267.37613,21
+130385,176427.4863,812433.5807,36989.87968,21
+130386,177127.1737,810857.0666,37069.66049,21
+130387,178346.3203,809787.9989,36770.70863,21
+130388,177589.4974,810017.3732,37050.65724,21
+130389,179350.9485,808859.1378,36724.4201,21
+130390,179350.0433,807861.8939,36831.26041,21
+130391,179039.5977,808005.9854,36496.53411,21
+130392,181375.0589,807543.5722,36818.76646,21
+130393,180870.1191,806802.6512,36599.73187,21
+130394,181221.7461,806326.6621,36421.14521,21
+130395,182891.3339,804479.3651,36760.90914,21
+130396,181980.9492,806009.5691,36559.55909,21
+130397,183539.6109,803971.2411,36524.4293,21
+130398,183768.7875,804507.6231,36548.29678,21
+130399,183946.4632,802173.2626,36346.67648,21
+130400,184402.8956,803241.9207,36821.41897,21
+130401,186223.3936,802507.9783,35925.22826,21
+130402,185233.12,800940.1514,35856.78418,21
+130403,186983.5399,801595.2243,35759.64228,21
+130404,187519.2212,799989.8476,36202.38047,21
+130405,186791.4062,800201.3035,35656.28703,21
+130406,189231.907,798951.78,36283.57451,21
+130407,189236.9365,798940.3621,36400.60355,21
+130408,190314.8375,797685.838,36309.6834,21
+130409,189970.8917,798684.8541,36552.39199,21
+130410,191400.4896,796436.9702,36548.81866,21
+130411,191854.9502,796359.5273,36374.54389,21
+130412,191548.66,797418.9647,36175.09061,21
+130413,192208.447,794526.7782,36283.35148,21
+130414,192790.1244,795217.4831,35586.21055,21
+130415,192348.8429,794360.9174,35643.56579,21
+130416,193134.9708,794185.017,35529.04023,21
+130417,193482.35,793234.4246,34979.18795,21
+130418,192674.0343,791884.4167,35099.03093,21
+130419,194066.8464,791833.9473,34546.53659,21
+130420,193945.8962,790638.6135,34508.80215,21
+130421,194578.5824,790734.4083,34189.17736,21
+130422,194230.9078,789658.0217,34072.07751,21
+130423,194753.1816,788966.7954,33571.16287,21
+130424,195158.9357,788684.8286,33484.61249,21
+130425,195228.6879,788153.7917,33279.6034,21
+130426,195987.4833,786458.0671,32947.93131,21
+130427,195206.6996,787018.1445,32665.02032,21
+130428,195404.5978,786612.3239,32344.63471,21
+130429,197115.1947,784525.1445,32281.89133,21
+130430,195508.8915,785483.8012,31708.73387,21
+130431,197108.0036,784663.68,31485.85492,21
+130432,195620.5226,782735.9935,31387.70814,21
+130433,196957.9205,782927.8483,30990.43912,21
+130434,197446.4307,782179.8502,30648.05535,21
+130435,196339.8386,780566.3584,30565.41592,21
+130436,197301.992,781701.8532,30080.65263,21
+130437,197422.8569,779052.8081,30081.51441,21
+130438,197262.1991,779041.4975,29541.32238,21
+130439,197097.7979,777573.1383,29358.22012,21
+130440,197366.559,779679.0537,28973.26892,21
+130441,198056.9164,775476.2297,27510.66331,21
+130442,198218.6528,777563.1876,27724.04669,21
+130443,199472.324,775588.8279,27285.52946,21
+130444,198938.6796,777167.9259,26949.96747,21
+130445,199957.4999,774565.5724,27096.59159,21
+130446,199702.3793,774934.9062,26529.0396,21
+130447,201348.1886,775374.7762,26428.91714,21
+130448,200096.2673,773600.4206,26324.59915,21
+130449,202143.3477,773375.9271,25860.83943,21
+130450,201289.5547,772606.8016,25796.5056,21
+130451,202047.4709,773033.6654,25301.76423,21
+130452,202957.8066,771792.8333,25223.25342,21
+130453,202193.3594,771032.4019,25208.38366,21
+130454,204608.2251,770420.4631,24676.32335,21
+130455,202884.2668,770097.6913,24586.06139,21
+130456,203924.1727,769469.4443,24244.19045,21
+130457,205382.4875,767946.0105,24027.34609,21
+130458,203422.7301,768008.1907,23970.14732,21
+130459,205820.3624,767717.653,23455.18303,21
+130460,206220.5672,765183.6732,23373.74842,21
+130461,205277.2447,765826.9624,23200.20706,21
+130462,206343.2615,765587.3087,22944.6022,21
+130463,207657.4659,763201.4299,22232.7854,21
+130464,209276.7137,762771.9617,22514.57319,21
+130465,208435.808,761137.4662,22139.9804,21
+130466,209834.7306,761555.8615,21761.73027,21
+130467,209708.8066,759082.9705,21496.97999,21
+130468,211627.0357,759916.4614,21537.55162,21
+130469,210791.1627,757405.4455,21281.72597,21
+130470,212424.5468,756807.8597,21073.95084,21
+130471,212954.7574,757008.4479,21292.11226,21
+130472,212661.5104,755443.1978,21261.81891,21
+130473,215382.0675,753604.7924,21248.39102,21
+130474,214234.6243,753768.3025,21189.7026,21
+130475,216995.5858,752648.7761,21569.79004,21
+130476,216743.3147,751918.3715,21192.45958,21
+130477,218218.4864,750465.409,21530.35267,21
+130478,218568.5073,749720.1574,21375.7785,21
+130479,219751.1791,748856.6116,21533.15422,21
+130480,220763.396,748073.6706,21555.69789,21
+130481,220912.8863,746271.419,21518.11651,21
+130482,223119.2268,746195.677,21680.63704,21
+130483,222586.0379,745381.3938,21856.99169,21
+130484,224469.2793,743503.3711,21561.31923,21
+130485,225106.6884,743211.4871,21984.15857,21
+130486,225857.0758,741220.4583,21921.35157,21
+130487,227081.8098,741244.8033,21805.80822,21
+130488,228443.1219,740793.6474,22102.00106,21
+130489,227916.7769,738189.0799,22008.90937,21
+130490,230086.8474,738779.8906,22282.64939,21
+130491,230630.7559,736341.3945,22274.96778,21
+130492,231602.8212,736772.3389,22264.45685,21
+130493,232342.868,734762.2923,22324.75765,21
+130494,234206.2675,734771.3611,22635.86094,21
+130495,233157.0332,733200.3029,22486.44202,21
+130496,235935.027,733139.7523,22752.0565,21
+130497,236644.7615,731819.7437,27848.56225,21
+130498,236846.9659,730092.965,26703.22029,21
+130499,238374.1569,730940.6018,27522.3089,21
+130500,239258.4944,728594.3774,27758.26693,21
+130501,239969.1179,728177.6348,29110.36051,21
+130502,240855.029,727966.7469,29422.43781,21
+130503,241157.4513,728844.675,30396.65372,21
+130504,241803.6108,725941.2399,31121.19214,21
+130505,242672.3518,728717.6862,30860.72333,21
+130506,244388.1967,725771.1086,32601.76854,21
+130507,243690.2015,726663.8349,32619.60618,21
+130508,245843.8548,726086.4902,33880.02226,21
+130509,245012.1054,726196.1725,34492.41276,21
+130510,247900.7928,725197.1946,34488.54394,21
+130511,246712.2468,725867.6281,35872.39494,21
+130512,249156.3805,724975.158,36229.30738,21
+130513,248002.6586,725242.9252,37232.69438,21
+130514,250287.1861,724960.184,38004.53141,21
+130515,250512.7334,724323.1265,37953.17508,21
+130516,251935.359,724081.778,40406.10515,21
+130517,251513.3948,724289.0403,38835.81031,21
+130518,253433.2699,723966.9613,40823.26974,21
+130519,253614.063,723894.1291,42731.25973,21
+130520,253904.8406,723388.2997,41391.53204,21
+130521,256196.4245,723451.6162,44288.21762,21
+130522,255023.6637,723413.3415,42611.83501,21
+130523,257737.1862,722866.5196,45860.62507,21
+130524,257227.6329,723068.6857,45332.76111,21
+130525,258160.5962,722591.4154,45719.56722,21
+130526,259757.4224,722980.1732,47958.35568,21
+130527,259504.2622,722964.6414,48416.8434,21
+130528,261025.9384,721741.0905,47990.98932,21
+130529,261794.6485,723316.3145,50144.49147,21
+130530,261687.8558,721633.5105,49424.57633,21
+130531,263932.5406,723425.602,51958.44131,21
+130532,263664.8075,721901.0341,52105.90274,21
+130533,264203.4148,722817.0467,52460.51816,21
+130534,264804.5328,720928.9514,52242.47176,21
+130535,266150.6471,723736.1165,54878.90119,21
+130536,265904.246,721493.3904,52875.50727,21
+130537,267270.2491,723084.2266,55545.61421,21
+130538,268170.0067,722856.7896,56086.30666,21
+130539,268604.3124,724142.8553,55967.61694,21
+130540,268825.7959,724645.9144,57472.33334,21
+130541,270888.5792,723539.9187,56247.42032,21
+130542,270777.7621,726180.2565,59236.00906,21
+130543,271523.3906,725999.8353,58123.87483,21
+130544,272026.1469,727265.5012,58994.19184,21
+130545,273860.1934,725873.1098,60529.45939,21
+130546,273387.0625,729008.2872,59279.43874,21
+130547,275221.8095,727916.0165,62252.29366,21
+130548,275572.8126,729174.46,61317.93491,21
+130549,275780.0787,729771.0725,61392.59785,21
+130550,277733.862,729061.6343,64278.15326,21
+130551,277035.0949,732467.7486,61654.67012,21
+130552,280079.1101,729856.2695,65418.59728,21
+130553,280953.8012,732025.0794,64578.22019,21
+130554,283489.7899,733037.6258,64478.77732,21
+130555,285500.2275,733478.558,66833.30402,21
+130556,287373.7074,733870.7738,65218.05751,21
+130557,289753.8317,734606.0032,68213.62746,21
+130558,292017.5575,735408.6284,67440.58022,21
+130559,292914.0228,735953.2054,67836.93605,21
+130560,295650.9833,735950.8672,69503.73958,21
+130561,15325.21711,382187.9097,0,21
+130562,16061.71048,382584.3598,0,21
+130563,16848.50174,383069.0747,0,21
+130564,17738.6674,383736.7647,0,21
+130565,18746.93931,384617.6369,0,21
+130566,19852.7234,385679.5325,0,21
+130567,21021.60091,386863.2918,0,21
+130568,22222.06077,388112.0763,0,21
+130569,23431.6433,389383.4752,0,21
+130570,24636.27725,390649.6347,0,21
+130571,25827.61048,391893.1746,0,21
+130572,27000.67667,393102.9892,0,21
+130573,28152.46465,394272.3507,0,21
+130574,29281.14921,395397.4925,0,21
+130575,30385.92607,396476.8484,0,21
+130576,31466.78809,397510.4562,0,21
+130577,32524.32909,398499.601,0,21
+130578,33587.43697,399446.4712,0,21
+130579,34672.87091,400353.7915,0,21
+130580,35738.67764,401224.4733,0,21
+130581,36785.79286,402061.4586,0,21
+130582,37815.72063,402867.5943,0,21
+130583,38829.85807,403645.5916,0,21
+130584,39829.5287,404398.0107,0,21
+130585,40815.98128,405127.2435,0,21
+130586,41790.38025,405835.4919,0,21
+130587,42753.8119,406524.7857,0,21
+130588,43707.26744,407196.9681,0,21
+130589,44651.64127,407853.7038,0,21
+130590,45587.74142,408496.4942,0,21
+130591,46516.30274,409126.6943,0,21
+130592,47437.99486,409745.5231,0,21
+130593,48353.47556,410354.1011,0,21
+130594,49263.39984,410953.4565,0,21
+130595,50168.3931,411544.4892,0,21
+130596,51069.01905,412127.8391,0,21
+130597,51965.76967,412704.962,0,21
+130598,52859.06701,413193.3972,0,21
+130599,53749.27656,413641.531,0,21
+130600,54636.71456,414236.7517,0,21
+130601,55521.65232,414742.0858,0,21
+130602,56404.32212,415262.6751,0,21
+130603,57284.93231,415780.6863,0,21
+130604,58163.66632,416295.9096,0,21
+130605,59040.69121,416808.1885,0,21
+130606,59916.15186,417317.5391,0,21
+130607,60790.17749,417824.2065,0,21
+130608,61662.87927,418328.3428,0,21
+130609,62534.36005,418830.0709,0,21
+130610,63404.7117,419330.1594,0,21
+130611,64274.02164,419828.3808,0,21
+130612,65142.36595,420325.0998,0,21
+130613,66009.81461,420819.5597,0,21
+130614,66876.42697,421312.2878,0,21
+130615,67742.25887,421803.3592,0,21
+130616,68607.36174,422293.3598,0,21
+130617,69471.78665,422782.0602,0,21
+130618,70335.57868,423269.3623,0,21
+130619,71198.77965,423755.3778,0,21
+130620,72061.42499,424240.1329,0,21
+130621,0,0,0,21
+130622,0,0,0,21
+130623,0,0,0,21
+130624,0,0,0,21
+130625,0,0,0,21
+130626,0,0,0,21
+130627,0,0,1770073.547,21
+130628,0,0,0,21
+130629,0,0,0,21
+130630,0,0,0,21
+130631,0,0,0,21
+130632,0,0,0,21
+130633,339857.3893,0,0,21
+130634,0,0,0,21
+130635,0,0,0,21
+130636,0,84461.51315,0,21
+130637,0,0,0,21
+130638,0,0,0,21
+130639,0,0,0,21
+130640,0,0,0,21
+130641,0,0,0,21
+130642,0,0,0,21
+130643,0,0,0,21
+130644,0,0,0,21
+130645,0,0,0,21
+130646,0,0,0,21
+130647,0,0,0,21
+130648,0,0,0,21
+130649,0,0,0,21
+130650,0,0,0,21
+130651,0,0,0,21
+130652,0,0,0,21
+130653,0,0,0,21
+130654,0,0,0,21
+130655,0,0,0,21
+130656,0,0,0,21
+130657,0,0,0,21
+130658,0,0,0,21
+130659,0,84266.27407,0,21
+130660,0,0,0,21
+130661,0,31472.76395,0,21
+130662,0,0,0,21
+130663,0,996.889985,1666106.489,21
+130664,0,9437.400188,0,21
+130665,0,7342.135571,0,21
+130666,0,6648.74611,0,21
+130667,0,7096.431443,0,21
+130668,0,7207.337972,0,21
+130669,0,7305.548267,0,21
+130670,0,7384.064666,0,21
+130671,0,7476.528621,0,21
+130672,0,7565.892712,0,21
+130673,339857.7041,7678.128445,0,21
+130674,0,7757.307047,0,21
+130675,0,7844.947804,0,21
+130676,0,7978.260838,0,21
+130677,0,8009.958033,0,21
+130678,0,8157.559522,0,21
+130679,0,8227.217863,0,21
+130680,0,8319.24955,0,21
+130681,0,8547.368128,0,21
+130682,0,8697.607285,0,21
+130683,0,8831.179924,0,21
+130684,0,8971.239159,0,21
+130685,0,9080.829165,0,21
+130686,0,9247.24227,0,21
+130687,0,9347.643742,0,21
+130688,0,9525.062161,0,21
+130689,0,9595.716399,0,21
+130690,0,9797.55891,0,21
+130691,0,0,0,21
+130692,0,0,0,21
+130693,0,0,0,21
+130694,0,0,0,21
+130695,0,40140.92067,0,21
+130696,0,1846.047352,0,21
+130697,0,6861.895882,0,21
+130698,0,14402.66329,0,21
+130699,0,10549.75148,0,21
+130700,0,11169.65707,1580292.733,21
+130701,0,11281.73051,0,21
+130702,0,11412.30535,0,21
+130703,0,11565.26793,0,21
+130704,0,11650.70199,0,21
+130705,0,11843.03417,0,21
+130706,0,11903.93119,0,21
+130707,0,12055.15384,0,21
+130708,0,12197.32067,0,21
+130709,0,12322.99741,0,21
+130710,0,12440.74655,0,21
+130711,0,12585.57632,0,21
+130712,0,12686.12278,0,21
+130713,339890.3187,326053.8558,0,21
+130714,0,12941.60612,0,21
+130715,0,18949.89794,0,21
+130716,0,118698.9938,0,21
+130717,0,81248.00173,0,21
+130718,0,82144.50919,0,21
+130719,0,85354.83493,0,21
+130720,0,87206.56108,0,21
+130721,0,87955.66621,0,21
+130722,0,89771.48923,0,21
+130723,0,90804.13789,0,21
+130724,0,92311.79952,0,21
+130725,0,77008.54595,0,21
+130726,0,78289.94494,0,21
+130727,0,120925.3894,0,21
+130728,0,90948.93025,0,21
+130729,0,97009.91034,0,21
+130730,0,102214.5635,0,21
+130731,0,101422.0343,0,21
+130732,0,103064.9581,0,21
+130733,0,104431.2536,0,21
+130734,0,105853.3063,0,21
+130735,0,107258.3856,0,21
+130736,0,108353.801,0,21
+130737,0,110111.4002,1501443.897,21
+130738,0,111022.427,0,21
+130739,0,112985.7987,0,21
+130740,0,113783.4708,0,21
+130741,0,114477.1428,0,21
+130742,0,114137.3643,0,21
+130743,0,20550.8165,0,21
+130744,0,20588.50173,0,21
+130745,0,20686.54245,0,21
+130746,0,20703.32462,0,21
+130747,0,379536.2085,0,21
+130748,0,51888.82606,0,21
+130749,0,68863.68426,0,21
+130750,0,152440.3224,0,21
+130751,0,111445.8826,0,21
+130752,0,116873.9624,0,21
+130753,339921.7911,116548.0324,0,21
+130754,0,117347.1608,0,21
+130755,0,116782.7716,0,21
+130756,0,117389.6679,0,21
+130757,0,95674.07549,0,21
+130758,0,96246.61038,0,21
+130759,0,151320.7044,0,21
+130760,0,110226.1989,0,21
+130761,0,112922.3559,0,21
+130762,0,120368.169,0,21
+130763,0,117524.3623,0,21
+130764,0,117437.6322,0,21
+130765,0,117645.7362,0,21
+130766,0,201370.7882,0,21
+130767,0,117681.5445,0,21
+130768,0,117724.1483,0,21
+130769,0,117766.3786,0,21
+130770,0,117729.7727,0,21
+130771,0,117853.5849,0,21
+130772,0,117569.6645,0,21
+130773,0,118466.2206,0,21
+130774,0,118160.507,1430334.957,21
+130775,0,118643.1472,0,21
+130776,0,118200.7222,0,21
+130777,0,21927.01099,0,21
+130778,0,21897.12197,0,21
+130779,0,21931.88238,0,21
+130780,0,21902.97849,0,21
+130781,0,387856.8429,0,21
+130782,0,65806.90037,0,21
+130783,0,60536.58782,0,21
+130784,0,158746.4299,0,21
+130785,0,196509.5537,0,21
+130786,0,118325.1365,0,21
+130787,0,117865.4967,0,21
+130788,0,118315.2125,0,21
+130789,0,95741.61932,0,21
+130790,0,95741.61483,0,21
+130791,0,154396.3907,0,21
+130792,0,113587.1673,0,21
+130793,339928.9367,115847.1502,0,21
+130794,0,124003.3168,0,21
+130795,0,120765.1031,0,21
+130796,0,121415.177,0,21
+130797,0,121627.5185,0,21
+130798,0,121878.8682,0,21
+130799,0,121716.7122,0,21
+130800,0,122122.7197,0,21
+130801,0,122806.3845,0,21
+130802,0,123962.607,0,21
+130803,0,123976.263,0,21
+130804,0,125412.8504,0,21
+130805,0,126276.2027,0,21
+130806,0,127408.228,0,21
+130807,0,127325.3749,0,21
+130808,0,128945.439,0,21
+130809,0,129470.4623,0,21
+130810,0,129901.806,0,21
+130811,0,23407.33791,1366053.859,21
+130812,0,23562.45786,0,21
+130813,0,23660.09433,0,21
+130814,0,23771.49029,0,21
+130815,0,391712.9567,0,21
+130816,0,75067.18624,0,21
+130817,0,63428.31468,0,21
+130818,0,187409.1461,0,21
+130819,0,127780.4116,0,21
+130820,0,136994.3595,0,21
+130821,0,113939.4773,0,21
+130822,0,113939.473,0,21
+130823,0,178003.5778,0,21
+130824,0,131169.6176,0,21
+130825,0,136292.7817,0,21
+130826,0,144006.9519,0,21
+130827,0,141784.9268,0,21
+130828,0,141856.3424,0,21
+130829,0,143069.0249,0,21
+130830,0,143097.547,0,21
+130831,0,144075.0066,0,21
+130832,0,144248.8144,0,21
+130833,339931.8369,145070.7935,0,21
+130834,0,145585.6935,0,21
+130835,0,146171.2678,0,21
+130836,0,146476.4588,0,21
+130837,0,147089.0375,0,21
+130838,0,147721.927,0,21
+130839,0,147986.5358,0,21
+130840,0,148804.1499,0,21
+130841,0,149229.9977,0,21
+130842,0,149678.0739,0,21
+130843,0,150086.8367,0,21
+130844,0,150741.594,0,21
+130845,0,26655.91554,0,21
+130846,0,26650.21022,0,21
+130847,0,26793.97431,0,21
+130848,0,391620.7008,1307121.916,21
+130849,0,90230.77011,0,21
+130850,0,118047.6637,0,21
+130851,0,182057.7054,0,21
+130852,0,151025.2673,0,21
+130853,0,127600.7369,0,21
+130854,0,128472.4854,0,21
+130855,0,200708.0941,0,21
+130856,0,146104.9716,0,21
+130857,0,151222.7412,0,21
+130858,0,160948.5199,0,21
+130859,0,157373.026,0,21
+130860,0,157448.7383,0,21
+130861,0,158124.191,0,21
+130862,0,158296.5611,0,21
+130863,0,158224.7251,0,21
+130864,0,158418.0425,0,21
+130865,0,158677.3612,0,21
+130866,0,158680.082,0,21
+130867,0,158941.7213,0,21
+130868,0,158817.4801,0,21
+130869,0,159552.8011,0,21
+130870,0,159174.5267,0,21
+130871,0,159065.1524,0,21
+130872,0,160127.6251,0,21
+130873,339933.3006,159261.0387,0,21
+130874,0,159799.4614,0,21
+130875,0,159970.4204,0,21
+130876,0,159967.6126,0,21
+130877,0,160246.7358,0,21
+130878,0,28082.70029,0,21
+130879,0,28088.18027,0,21
+130880,0,28185.34237,0,21
+130881,0,428440.9252,0,21
+130882,0,85355.03776,0,21
+130883,0,125639.5283,0,21
+130884,0,190723.2797,0,21
+130885,0,129259.581,1252823.951,21
+130886,0,133132.2437,0,21
+130887,0,209428.3253,0,21
+130888,0,149746.4404,0,21
+130889,0,156303.6165,0,21
+130890,0,165169.2719,0,21
+130891,0,161102.832,0,21
+130892,0,161753.2598,0,21
+130893,0,161540.3344,0,21
+130894,0,161425.8547,0,21
+130895,0,161741.8874,0,21
+130896,0,161585.8703,0,21
+130897,0,161740.7858,0,21
+130898,0,161783.2251,0,21
+130899,0,161734.4229,0,21
+130900,0,161729.478,0,21
+130901,0,161759.5999,0,21
+130902,0,161871.9153,0,21
+130903,0,161949.9254,0,21
+130904,0,161949.2322,0,21
+130905,0,162220.8708,0,21
+130906,0,163685.2807,0,21
+130907,0,163245.5611,0,21
+130908,0,163324.7695,0,21
+130909,0,164401.235,0,21
+130910,0,163243.685,0,21
+130911,0,28397.53794,0,21
+130912,0,28397.53675,0,21
+130913,0,28421.10554,0,21
+130914,339934.2185,442622.5558,0,21
+130915,0,73134.48883,0,21
+130916,0,133079.5428,0,21
+130917,0,161926.6299,0,21
+130918,0,130596.4454,0,21
+130919,0,213212.3674,0,21
+130920,0,155530.5328,0,15.6
+130921,0,160490.9647,0,15.6
+130922,0,170124.1853,1202734.404,15.6
+130923,0,165231.9857,0,15.6
+130924,0,165557.6776,0,15.6
+130925,0,164868.5405,0,15.6
+130926,0,164753.262,0,15.6
+130927,0,164272.2107,0,15.6
+130928,0,163888.8783,0,15.6
+130929,0,163961.0926,0,15.6
+130930,0,162922.2649,0,15.6
+130931,0,163118.8815,0,15.6
+130932,0,162767.6071,0,15.6
+130933,0,161623.0704,0,15.6
+130934,0,162081.8256,0,15.6
+130935,0,161498.522,0,15.6
+130936,0,160828.9025,0,15.6
+130937,0,160720.917,0,15.6
+130938,0,160168.9946,0,15.6
+130939,0,160022.4082,0,15.6
+130940,0,159244.9085,0,15.6
+130941,0,158961.939,0,15.6
+130942,0,158643.4581,0,15.6
+130943,0,158392.0839,0,15.6
+130944,0,26938.10939,0,15.6
+130945,0,27050.93732,0,15.6
+130946,0,26875.13513,0,15.6
+130947,0,26845.53729,0,15.6
+130948,0,453225.135,0,15.6
+130949,0,42832.58411,0,15.6
+130950,0,72964.45697,0,15.6
+130951,0,236484.6757,0,15.6
+130952,0,139087.1279,0,15.6
+130953,0,148400.0115,0,15.6
+130954,0,156867.3751,0,15.6
+130955,339932.512,152345.6739,0,15.6
+130956,0,152508.7358,0,15.6
+130957,0,151944.3333,0,15.6
+130958,0,151301.377,0,15.6
+130959,0,150954.11,1157054.741,15.6
+130960,0,150189.0159,0,15.6
+130961,0,149764.7411,0,15.6
+130962,0,149433.8246,0,15.6
+130963,0,148817.5179,0,15.6
+130964,0,147999.6545,0,15.6
+130965,0,148000.8637,0,15.6
+130966,0,147072.6849,0,15.6
+130967,0,146795.2222,0,15.6
+130968,0,146116.84,0,15.6
+130969,0,145285.0506,0,15.6
+130970,0,145528.7909,0,15.6
+130971,0,144537.0182,0,15.6
+130972,0,143864.9117,0,15.6
+130973,0,143429.2506,0,15.6
+130974,0,142808.7298,0,15.6
+130975,0,142476.8929,0,15.6
+130976,0,141960.1977,0,15.6
+130977,0,140979.7137,0,15.6
+130978,0,24684.10952,0,15.6
+130979,0,24623.74301,0,15.6
+130980,0,24516.56154,0,15.6
+130981,0,8.122720115,0,15.6
+130982,0,378548.0802,0,15.6
+130983,0,84356.51112,0,15.6
+130984,0,84364.08437,0,15.6
+130985,0,167951.8625,0,15.6
+130986,0,138128.6742,0,15.6
+130987,0,140946.1499,0,15.6
+130988,0,140010.7341,0,15.6
+130989,0,141356.2281,0,15.6
+130990,0,141656.7973,0,15.6
+130991,0,141449.6118,0,15.6
+130992,0,141920.3038,0,15.6
+130993,0,142325.3015,0,15.6
+130994,0,142342.6507,0,15.6
+130995,0,142471.5785,0,15.6
+130996,339930.5306,143093.7307,1115240.068,15.6
+130997,0,143084.0148,0,15.6
+130998,0,143097.624,0,15.6
+130999,0,143588.7627,0,15.6
+131000,0,143668.5258,0,15.6
+131001,0,144023.3839,0,15.6
+131002,0,144210.2222,0,15.6
+131003,0,144288.5527,0,15.6
+131004,0,144733.3206,0,15.6
+131005,0,144558.709,0,15.6
+131006,0,145344.7272,0,15.6
+131007,0,144925.8548,0,15.6
+131008,0,145582.4057,0,15.6
+131009,0,146008.9223,0,15.6
+131010,0,145708.692,0,15.6
+131011,0,146042.2199,0,15.6
+131012,0,24928.11346,0,15.6
+131013,0,0,0,15.6
+131014,0,121.7025333,0,15.6
+131015,0,70916.69061,0,15.6
+131016,0,409235.3369,0,15.6
+131017,0,32702.20328,0,15.6
+131018,0,112385.3434,0,15.6
+131019,0,188451.0214,0,15.6
+131020,0,139834.8334,0,15.6
+131021,0,148102.2632,0,15.6
+131022,0,148487.7696,0,15.6
+131023,0,148669.3791,0,15.6
+131024,0,148436.5464,0,15.6
+131025,0,149270.5698,0,15.6
+131026,0,148983.8027,0,15.6
+131027,0,149132.5667,0,15.6
+131028,0,149449.7133,0,15.6
+131029,0,149756.0398,0,15.6
+131030,0,149686.3883,0,15.6
+131031,0,150011.8805,0,15.6
+131032,0,149783.2012,0,15.6
+131033,0,150580.384,1076648.978,15.6
+131034,0,150536.8233,0,15.6
+131035,0,150191.4501,0,15.6
+131036,0,151035.0055,0,15.6
+131037,339931.1142,151158.4246,0,15.6
+131038,0,150802.6065,0,15.6
+131039,0,151681.5275,0,15.6
+131040,0,151219.7586,0,15.6
+131041,0,151296.2592,0,15.6
+131042,0,151605.7431,0,15.6
+131043,0,151569.4159,0,15.6
+131044,0,151019.1944,0,15.6
+131045,0,125971.2062,0,15.6
+131046,0,0,0,15.6
+131047,0,71742.06814,0,15.6
+131048,0,7740.302733,0,15.6
+131049,0,24093.80946,0,15.6
+131050,0,441488.0172,0,15.6
+131051,0,29000.61855,0,15.6
+131052,0,128476.4027,0,15.6
+131053,0,183860.4121,0,15.6
+131054,0,145133.0085,0,15.6
+131055,0,150954.7257,0,15.6
+131056,0,150958.1274,0,15.6
+131057,0,150665.4697,0,15.6
+131058,0,150824.8811,0,15.6
+131059,0,150054.438,0,15.6
+131060,0,150719.3224,0,15.6
+131061,0,149752.3288,0,15.6
+131062,0,150298.1804,0,15.6
+131063,0,149939.6008,0,15.6
+131064,0,149476.2809,0,15.6
+131065,0,149903.1845,0,15.6
+131066,0,148534.6673,0,15.6
+131067,0,148774.5982,0,15.6
+131068,0,148465.1931,0,15.6
+131069,0,148175.8103,0,15.6
+131070,0,148144.2276,1041621.706,15.6
+131071,0,148255.5166,0,15.6
+131072,0,147630.6857,0,15.6
+131073,0,148075.728,0,15.6
+131074,0,147611.3696,0,15.6
+131075,0,147232.1698,0,15.6
+131076,0,147451.869,0,15.6
+131077,0,122717.2168,0,15.6
+131078,339931.114,122373.2964,0,15.6
+131079,0,122552.6324,0,15.6
+131080,0,85409.87784,0,15.6
+131081,0,13219.12407,0,15.6
+131082,0,9174.834145,0,15.6
+131083,0,34362.60425,0,15.6
+131084,0,22894.85733,0,15.6
+131085,0,448217.5039,0,15.6
+131086,0,24465.24047,0,15.6
+131087,0,121468.3459,0,15.6
+131088,0,179430.9467,0,15.6
+131089,0,139997.1056,0,15.6
+131090,0,145506.0668,0,15.6
+131091,0,145374.1007,0,15.6
+131092,0,145000.6672,0,15.6
+131093,0,144745.0715,0,15.6
+131094,0,144854.8165,0,15.6
+131095,0,144050.5199,0,15.6
+131096,0,144357.5894,0,15.6
+131097,0,144028.4722,0,15.6
+131098,0,143841.019,0,15.6
+131099,0,143463.2403,0,15.6
+131100,0,143158.5473,0,15.6
+131101,0,145017.5514,0,15.6
+131102,0,146743.2346,0,15.6
+131103,0,147511.8794,0,15.6
+131104,0,149842.1342,0,15.6
+131105,0,151376.9318,0,15.6
+131106,0,152381.2967,0,15.6
+131107,0,154283.3,1009945.405,15.6
+131108,0,155998.3308,0,15.6
+131109,0,157429.7844,0,15.6
+131110,0,133285.8135,0,15.6
+131111,0,135166.6763,0,15.6
+131112,0,209957.217,0,15.6
+131113,0,145588.6008,0,15.6
+131114,0,164665.0551,0,15.6
+131115,0,29055.21169,0,15.6
+131116,0,26379.42263,0,15.6
+131117,0,26840.33558,0,15.6
+131118,0,26968.90358,0,15.6
+131119,339941.1543,510724.6463,0,15.6
+131120,0,62314.98977,0,15.6
+131121,0,136140.9169,0,15.6
+131122,0,218925.754,0,15.6
+131123,0,174159.6916,0,15.6
+131124,0,181748.8078,0,15.6
+131125,0,183786.229,0,15.6
+131126,0,185252.7605,0,15.6
+131127,0,186819.7644,0,15.6
+131128,0,188371.815,0,15.6
+131129,0,189863.0956,0,15.6
+131130,0,191457.1956,0,15.6
+131131,0,193217.6801,0,15.6
+131132,0,194461.3288,0,15.6
+131133,0,196320.2057,0,15.6
+131134,0,197906.4038,0,15.6
+131135,0,199415.4331,0,15.6
+131136,0,200794.0843,0,15.6
+131137,0,203104.4307,0,15.6
+131138,0,203738.6767,0,15.6
+131139,0,206017.8062,0,15.6
+131140,0,207512.6136,0,15.6
+131141,0,209059.9366,0,15.6
+131142,0,179495.1326,0,15.6
+131143,0,180984.2409,0,15.6
+131144,0,272861.7445,980946.7551,15.6
+131145,0,199801.1224,0,15.6
+131146,0,211221.579,0,15.6
+131147,0,223567.3361,0,15.6
+131148,0,221114.626,0,15.6
+131149,0,32380.59386,0,15.6
+131150,0,32655.14042,0,15.6
+131151,0,32782.97073,0,15.6
+131152,0,662075.8819,0,15.6
+131153,0,108019.834,0,15.6
+131154,0,166166.0582,0,15.6
+131155,0,285720.2111,0,15.6
+131156,0,227614.0295,0,15.6
+131157,0,236187.4103,0,15.6
+131158,0,237505.8844,0,15.6
+131159,0,240476.8006,0,15.6
+131160,339964.9277,240436.1911,0,15.6
+131161,0,241641.7011,0,15.6
+131162,90016.52794,241100.8262,0,15.6
+131163,0,241546.5895,0,15.6
+131164,0,241271.1444,0,15.6
+131165,0,241781.6186,0,15.6
+131166,0,241131.2777,0,15.6
+131167,0,242180.4244,0,15.6
+131168,0,241321.8012,0,15.6
+131169,0,241902.9027,0,15.6
+131170,0,241854.337,0,15.6
+131171,0,241877.9874,0,15.6
+131172,0,242006.6007,0,15.6
+131173,0,242063.7401,0,15.6
+131174,0,207552.642,0,15.6
+131175,0,207929.4443,0,15.6
+131176,0,306894.6892,0,15.6
+131177,0,228533.7573,0,15.6
+131178,0,233936.6913,0,15.6
+131179,0,248457.7039,0,15.6
+131180,0,241726.1394,0,15.6
+131181,0,243146.7649,954811.9664,15.6
+131182,0,34424.43038,0,15.6
+131183,0,34556.13566,0,15.6
+131184,0,34513.3658,0,15.6
+131185,0,727887.4516,0,15.6
+131186,0,130826.4912,0,15.6
+131187,0,145566.5245,0,15.6
+131188,0,313319.4998,0,15.6
+131189,0,233407.5574,0,15.6
+131190,0,243506.7012,0,15.6
+131191,0,243971.8607,0,15.6
+131192,0,244166.1525,0,15.6
+131193,0,244060.7069,0,15.6
+131194,0,243987.4681,0,15.6
+131195,0,243737.3868,0,15.6
+131196,0,244067.2446,0,15.6
+131197,0,243997.9144,0,15.6
+131198,0,243588.4368,0,15.6
+131199,0,244073.111,0,15.6
+131200,0,243993.6434,0,15.6
+131201,339946.3044,243772.3537,0,15.6
+131202,0,244220.5804,0,15.6
+131203,0,243826.8345,0,15.6
+131204,0,244060.5839,0,15.6
+131205,0,244015.4593,0,15.6
+131206,0,209504.479,0,15.6
+131207,0,209213.7296,0,15.6
+131208,0,309070.4027,0,15.6
+131209,0,230605.243,0,15.6
+131210,0,235434.2688,0,15.6
+131211,0,250372.8673,0,15.6
+131212,0,243166.0114,0,15.6
+131213,0,244664.2581,0,15.6
+131214,0,244023.1409,0,15.6
+131215,0,34608.4622,0,15.6
+131216,0,34661.96639,0,15.6
+131217,0,34617.5604,0,15.6
+131218,0,740533.4041,931208.4068,15.6
+131219,0,130583.14,0,15.6
+131220,0,141334.1321,0,15.6
+131221,0,318216.5298,0,15.6
+131222,0,234978.7396,0,15.6
+131223,0,246274.7704,0,15.6
+131224,0,246643.0813,0,15.6
+131225,0,248104.3635,0,15.6
+131226,0,247536.1428,0,15.6
+131227,0,248710.7391,0,15.6
+131228,0,249580.8294,0,15.6
+131229,0,249423.1955,0,15.6
+131230,0,250667.4293,0,15.6
+131231,0,250849.7018,0,15.6
+131232,0,251879.8384,0,15.6
+131233,0,252048.1418,0,15.6
+131234,0,252983.5068,0,15.6
+131235,0,253249.429,0,15.6
+131236,0,254081.9828,0,15.6
+131237,0,254348.5746,0,15.6
+131238,0,219429.5869,0,15.6
+131239,0,220330.0702,0,15.6
+131240,0,322750.007,0,15.6
+131241,0,243373.2411,0,15.6
+131242,339927.7517,250272.2948,0,15.6
+131243,0,263816.1391,0,15.6
+131244,0,258367.7096,0,15.6
+131245,0,259857.639,0,15.6
+131246,0,260141.5098,0,15.6
+131247,0,260558.1267,0,15.6
+131248,0,36551.102,0,15.6
+131249,0,36536.47489,0,15.6
+131250,0,36637.78116,0,15.6
+131251,0,809796.7786,0,15.6
+131252,0,163699.6476,0,15.6
+131253,0,130127.978,909229.8051,15.6
+131254,0,354252.486,0,15.6
+131255,0,253258.6927,0,15.6
+131256,0,266724.3943,0,15.6
+131257,0,268080.3182,0,15.6
+131258,0,267822.1133,0,15.6
+131259,0,269633.0839,0,15.6
+131260,0,269233.3924,0,15.6
+131261,0,270252.4577,0,15.6
+131262,0,270136.7655,0,15.6
+131263,0,271748.0162,0,15.6
+131264,0,639596.9221,0,15.6
+131265,0,272271.9097,0,15.6
+131266,0,273253.358,0,15.6
+131267,0,272666.5253,0,15.6
+131268,0,274892.1711,0,15.6
+131269,0,274177.5331,0,15.6
+131270,0,237682.201,0,15.6
+131271,0,237663.1107,0,15.6
+131272,0,345277.3953,0,15.6
+131273,0,263758.2034,0,15.6
+131274,0,271347.0716,0,15.6
+131275,0,282830.8391,0,15.6
+131276,0,278993.3688,0,15.6
+131277,0,279625.5128,0,15.6
+131278,339908.9434,280399.3068,0,15.6
+131279,0,280573.5749,0,15.6
+131280,0,281592.7493,0,17.8
+131281,0,38791.37307,0,17.8
+131282,0,38786.3379,0,17.8
+131283,0,38812.2766,0,17.8
+131284,0,887829.5717,0,17.8
+131285,0,201547.4914,0,17.8
+131286,0,118680.8042,0,17.8
+131287,0,381512.0717,0,17.8
+131288,0,274703.677,889121.7838,17.8
+131289,0,284152.8975,0,17.8
+131290,0,286164.0972,0,17.8
+131291,0,286294.9208,0,17.8
+131292,0,287065.0885,0,17.8
+131293,0,287010.1312,0,17.8
+131294,0,287556.8453,0,17.8
+131295,0,288090.8171,0,17.8
+131296,0,288225.6803,0,17.8
+131297,0,289234.7385,0,17.8
+131298,0,288702.2159,0,17.8
+131299,0,289924.7869,0,17.8
+131300,0,289765.112,0,17.8
+131301,0,291067.6227,0,17.8
+131302,0,250801.1407,0,17.8
+131303,0,251247.25,0,17.8
+131304,0,361436.8784,0,17.8
+131305,0,278892.7694,0,17.8
+131306,0,288204.4399,0,17.8
+131307,0,664034.2049,0,17.8
+131308,0,293451.0529,0,17.8
+131309,0,294305.3031,0,17.8
+131310,0,293508.1652,0,17.8
+131311,0,295244.6925,0,17.8
+131312,0,294907.1324,0,17.8
+131313,0,294931.4818,0,17.8
+131314,339920.6109,40467.89171,0,17.8
+131315,0,40628.54489,0,17.8
+131316,0,770485.1715,0,17.8
+131317,0,145747.8803,0,17.8
+131318,0,267570.2319,0,17.8
+131319,0,331153.731,0,17.8
+131320,0,295364.7995,0,17.8
+131321,0,298256.3247,0,17.8
+131322,0,299660.1281,0,17.8
+131323,0,299614.7395,870768.7164,17.8
+131324,0,300083.1279,0,17.8
+131325,0,299648.8731,0,17.8
+131326,0,301529.5934,0,17.8
+131327,0,300448.7762,0,17.8
+131328,0,301493.0153,0,17.8
+131329,0,302116.3293,0,17.8
+131330,0,301965.0689,0,17.8
+131331,0,302628.3293,0,17.8
+131332,0,302928.4398,0,17.8
+131333,0,303349.7075,0,17.8
+131334,0,262187.5588,0,17.8
+131335,0,262766.3876,0,17.8
+131336,0,374005.0516,0,17.8
+131337,0,291708.9408,0,17.8
+131338,0,305015.8136,0,17.8
+131339,0,305839.8213,0,17.8
+131340,0,307749.0935,0,20
+131341,0,304277.4598,0,20
+131342,0,303860.4639,0,20
+131343,0,304751.4701,0,20
+131344,0,305377.7723,0,20
+131345,0,304334.7544,0,20
+131346,0,41768.56801,0,20
+131347,0,42021.38145,0,20
+131348,0,798198.2693,0,20
+131349,0,159081.5888,0,20
+131350,0,267361.1937,0,20
+131351,0,344270.398,0,20
+131352,0,303292.2127,0,20
+131353,0,307603.0851,0,20
+131354,0,306789.1538,0,20
+131355,339932.2957,308311.9372,0,20
+131356,0,307705.5751,0,20
+131357,0,308640.2413,0,20
+131358,0,308049.7476,0,20
+131359,0,309144.6032,0,20
+131360,0,308451.1341,0,20
+131361,0,309255.8835,853796.0708,20
+131362,0,309382.8679,0,20
+131363,0,309448.1007,0,20
+131364,0,309859.8492,0,20
+131365,0,309891.396,0,20
+131366,0,267832.1512,0,20
+131367,0,268317.6508,0,20
+131368,0,380316.066,0,20
+131369,0,298748.2312,0,20
+131370,0,311239.2138,0,20
+131371,0,311526.1056,0,20
+131372,0,313250.7134,0,20
+131373,0,311663.3789,0,20
+131374,0,312471.5583,0,20
+131375,0,312485.8329,0,20
+131376,0,312320.6917,0,20
+131377,0,312971.3407,0,20
+131378,0,42772.22348,0,20
+131379,0,42826.9382,0,20
+131380,0,823057.1707,0,20
+131381,0,171061.4098,0,20
+131382,0,265787.8793,0,20
+131383,0,356769.4378,0,20
+131384,0,310113.2517,0,20
+131385,0,314367.9215,0,20
+131386,0,315540.0627,0,20
+131387,0,315247.4458,0,20
+131388,0,315186.214,0,20
+131389,0,316014.2246,0,20
+131390,0,315691.8225,0,20
+131391,0,316653.7284,0,20
+131392,0,315512.9156,0,20
+131393,0,317412.9006,0,20
+131394,0,315960.8439,0,20
+131395,0,317454.2388,0,20
+131396,339935.0045,316709.5577,0,20
+131397,0,317344.7135,0,20
+131398,0,274187.3791,0,20
+131399,0,274277.389,838204.9151,20
+131400,0,387879.3345,0,21
+131401,0,308953.6028,0,21
+131402,0,403739.2825,0,21
+131403,0,320483.1831,0,21
+131404,0,324375.0999,0,21
+131405,0,323335.4496,0,21
+131406,0,324229.6579,0,21
+131407,0,325298.5593,0,21
+131408,0,326510.9746,0,21
+131409,0,327616.2077,0,21
+131410,0,44664.47923,0,21
+131411,0,44760.72179,0,21
+131412,0,868656.2745,0,21
+131413,0,196762.6186,0,21
+131414,0,273714.4212,0,21
+131415,0,380669.7081,0,21
+131416,0,323528.5529,0,21
+131417,0,328380.5445,0,21
+131418,0,327880.7318,0,21
+131419,0,329323.231,0,21
+131420,0,328908.7945,0,21
+131421,0,329681.7911,0,21
+131422,0,330210.7314,0,21
+131423,0,330961.8978,0,21
+131424,0,331072.2781,0,21
+131425,0,415435.3691,0,21
+131426,0,332135.2501,0,21
+131427,0,332832.5618,0,21
+131428,0,333104.0818,0,21
+131429,0,333539.9803,0,21
+131430,0,288527.2557,0,21
+131431,0,289425.0475,0,21
+131432,0,405429.6684,0,21
+131433,0,323910.0728,0,21
+131434,0,340262.1739,0,21
+131435,0,332257.0521,824049.5679,21
+131436,0,338167.536,0,21
+131437,339936.6425,336550.853,0,21
+131438,0,335556.1366,0,21
+131439,0,336031.0715,0,21
+131440,0,336625.5858,0,21
+131441,0,335965.4698,0,21
+131442,0,46563.27582,0,21
+131443,0,47601.74382,0,21
+131444,0,860668.1993,0,21
+131445,0,236106.5254,0,21
+131446,0,265996.0022,0,21
+131447,0,387138.3923,0,21
+131448,0,418423.4977,0,21
+131449,0,338624.6291,0,21
+131450,0,338387.8697,0,21
+131451,0,338900.4263,0,21
+131452,0,338631.5415,0,21
+131453,0,338669.7279,0,21
+131454,0,338801.5072,0,21
+131455,0,338522.5892,0,21
+131456,0,338682.2079,0,21
+131457,0,339006.7293,0,21
+131458,0,338228.4125,0,21
+131459,0,338751.8015,0,21
+131460,0,338647.8759,0,21
+131461,0,336131.7152,0,21
+131462,0,286265.1111,0,21
+131463,0,284102.7823,0,21
+131464,0,397021.5244,0,21
+131465,0,316661.9892,0,21
+131466,0,326750.9812,0,21
+131467,0,320721.737,0,21
+131468,0,319470.1148,0,21
+131469,0,317440.0009,0,21
+131470,0,317287.4652,0,21
+131471,0,313809.3205,811111.5926,21
+131472,0,311278.8472,0,21
+131473,0,309487.0098,0,21
+131474,0,45519.50914,0,21
+131475,339929.704,45374.41279,0,21
+131476,0,738729.5938,0,21
+131477,0,236035.9195,0,21
+131478,0,221680.8345,0,21
+131479,0,341422.4971,0,21
+131480,0,288943.1844,0,21
+131481,0,290767.1462,0,21
+131482,0,288438.164,0,21
+131483,0,285061.6178,0,21
+131484,0,283350.3228,0,21
+131485,0,280773.4662,0,21
+131486,0,278391.9696,0,21
+131487,0,275663.1473,0,21
+131488,0,273748.2421,0,21
+131489,0,270861.409,0,21
+131490,0,268337.9621,0,21
+131491,0,266403.1138,0,21
+131492,0,264255.2336,0,21
+131493,0,261677.9195,0,21
+131494,0,218806.0114,0,21
+131495,0,216436.4471,0,21
+131496,0,314563.1149,0,21
+131497,0,240946.0662,0,21
+131498,0,253177.9035,0,21
+131499,0,247791.963,0,21
+131500,0,250561.1666,0,21
+131501,0,250895.644,0,21
+131502,0,247835.6192,0,21
+131503,0,246852.0226,0,21
+131504,0,246259.733,0,21
+131505,0,244530.6402,0,21
+131506,0,38763.34435,0,21
+131507,0,38500.32471,799098.9302,21
+131508,0,38334.43877,0,21
+131509,0,721993.7675,0,21
+131510,0,226705.9397,0,21
+131511,0,87439.2764,0,21
+131512,0,307292.746,0,21
+131513,339909.5731,234374.748,0,21
+131514,0,232106.355,0,21
+131515,0,233722.3508,0,21
+131516,0,232123.3489,0,21
+131517,0,231113.4117,0,21
+131518,0,229600.3515,0,21
+131519,0,228907.4111,0,21
+131520,0,226942.6274,0,21
+131521,0,227443.8986,0,21
+131522,0,226772.1244,0,21
+131523,0,226469.4992,0,21
+131524,0,226343.3643,0,21
+131525,0,226086.0438,0,21
+131526,0,190878.5339,0,21
+131527,0,189807.3272,0,21
+131528,0,276091.2404,0,21
+131529,0,214092.7734,0,21
+131530,0,218800.228,0,21
+131531,0,224264.7415,0,21
+131532,0,222424.9376,0,21
+131533,0,224094.193,0,21
+131534,0,223671.6925,0,21
+131535,0,223168.1054,0,21
+131536,0,222544.979,0,21
+131537,0,222666.938,0,21
+131538,0,222073.3692,0,21
+131539,0,34235.51128,0,21
+131540,0,34418.94037,0,21
+131541,0,34255.19448,0,21
+131542,0,652242.9663,0,21
+131543,0,186290.6497,787824.2711,21
+131544,0,92667.25969,0,21
+131545,0,288343.843,0,21
+131546,0,212809.2749,0,21
+131547,0,217654.2465,0,21
+131548,0,217872.5093,0,21
+131549,0,217647.1713,0,21
+131550,0,216676.9316,0,21
+131551,339919.3363,216603.5567,0,21
+131552,0,215691.5692,0,21
+131553,0,215122.5675,0,21
+131554,0,214914.702,0,21
+131555,0,213664.3965,0,21
+131556,0,213600.9063,0,21
+131557,0,213178.2674,0,21
+131558,0,179516.1376,0,21
+131559,0,179014.334,0,21
+131560,0,260559.4877,0,21
+131561,0,200410.21,0,21
+131562,0,200752.6529,0,21
+131563,0,210347.891,0,21
+131564,0,206023.5938,0,21
+131565,0,205936.3705,0,21
+131566,0,207248.8656,0,21
+131567,0,205810.6534,0,21
+131568,0,204519.015,0,21
+131569,0,572421.8849,0,21
+131570,0,203342.4843,0,21
+131571,0,202571.1236,0,21
+131572,0,31160.48423,0,21
+131573,0,31030.26092,0,21
+131574,0,30966.2852,0,21
+131575,0,558363.6525,0,21
+131576,0,167730.7449,0,21
+131577,0,180323.8037,0,21
+131578,0,254925.2851,0,21
+131579,0,189294.7392,777169.6535,21
+131580,0,194892.4955,0,21
+131581,0,194004.6015,0,21
+131582,0,192686.9809,0,21
+131583,0,191342.8494,0,21
+131584,0,190142.1787,0,21
+131585,0,188898.9276,0,21
+131586,0,187599.8365,0,21
+131587,0,186247.4269,0,21
+131588,0,184820.2854,0,21
+131589,339934.2626,183617.341,0,21
+131590,0,153142.9215,0,21
+131591,0,152070.9508,0,21
+131592,0,223419.6366,0,21
+131593,0,171929.338,0,21
+131594,0,166993.511,0,21
+131595,0,178308.8993,0,21
+131596,0,171237.0891,0,21
+131597,0,170111.1729,0,21
+131598,0,168745.3615,0,21
+131599,0,169849.449,0,21
+131600,0,166684.7063,0,21
+131601,0,166238.9658,0,21
+131602,0,164378.5703,0,21
+131603,0,162903.6216,0,21
+131604,0,161448.105,0,21
+131605,0,26929.50501,0,21
+131606,0,26744.71977,0,21
+131607,0,26628.75165,0,21
+131608,0,369549.5648,0,21
+131609,0,156717.9595,0,21
+131610,0,85621.31613,0,21
+131611,0,184063.263,0,21
+131612,0,147192.1794,0,21
+131613,0,147967.2885,0,21
+131614,0,146206.3783,0,21
+131615,0,144556.005,767504.9687,21
+131616,0,143048.2677,0,21
+131617,0,141723.8392,0,21
+131618,0,139385.3472,0,21
+131619,0,138262.3009,0,21
+131620,0,136577.5543,0,21
+131621,0,134865.8549,0,21
+131622,0,108768.9005,0,21
+131623,0,107811.2795,0,21
+131624,0,162642.46,0,21
+131625,0,125920.9141,0,21
+131626,0,485851.8211,0,21
+131627,339935.0749,128172.622,0,21
+131628,0,123979.4036,0,21
+131629,0,124103.2066,0,21
+131630,0,122951.4168,0,21
+131631,0,123457.9313,0,21
+131632,0,122985.0125,0,21
+131633,0,124422.9798,0,21
+131634,0,122899.7762,0,21
+131635,0,122843.0653,0,21
+131636,0,122637.1742,0,21
+131637,0,122164.4067,0,21
+131638,0,21469.02581,0,21
+131639,0,21414.59846,0,21
+131640,0,21148.25246,0,21
+131641,0,327366.5733,0,21
+131642,0,110811.228,0,21
+131643,0,71586.62945,0,21
+131644,0,150133.7363,0,21
+131645,0,122318.1152,0,21
+131646,0,124560.1591,0,21
+131647,0,124388.9081,0,21
+131648,0,125660.6293,0,21
+131649,0,125901.0666,0,21
+131650,0,126112.6882,0,21
+131651,0,126306.2936,0,21
+131652,0,126676.6304,758612.9919,21
+131653,0,126943.3104,0,21
+131654,0,107264.8751,0,21
+131655,0,107379.9304,0,21
+131656,0,151611.3742,0,21
+131657,0,133151.3688,0,21
+131658,0,120045.3383,0,21
+131659,0,132660.0528,0,21
+131660,0,129418.4474,0,21
+131661,0,130207.9843,0,21
+131662,0,130592.6336,0,21
+131663,0,131104.9086,0,21
+131664,0,131381.3464,0,21
+131665,0,132305.3128,0,21
+131666,0,132237.5679,0,21
+131667,0,133250.7035,0,21
+131668,339949.6981,133524.2541,0,21
+131669,0,133783.6293,0,21
+131670,0,135444.77,0,21
+131671,0,19550.38015,0,21
+131672,0,19776.82179,0,21
+131673,0,19698.06293,0,21
+131674,0,357203.7221,0,21
+131675,0,174879.1048,0,21
+131676,0,50305.58674,0,21
+131677,0,177203.7823,0,21
+131678,0,137513.6015,0,21
+131679,0,139541.4598,0,21
+131680,0,140199.8298,0,21
+131681,0,140681.5573,0,21
+131682,0,141231.7968,0,21
+131683,0,142444.2199,0,21
+131684,0,142603.524,0,21
+131685,0,143482.1189,0,21
+131686,0,123291.4419,0,21
+131687,0,124253.4505,0,21
+131688,0,170825.4705,0,21
+131689,0,147396.3759,750171.1706,21
+131690,0,144127.1978,0,21
+131691,0,146969.3933,0,21
+131692,0,148870.9656,0,21
+131693,0,148193.8071,0,21
+131694,0,149299.6847,0,21
+131695,0,149905.3582,0,21
+131696,0,150402.1487,0,21
+131697,0,151421.1345,0,21
+131698,0,151687.8086,0,21
+131699,0,152836.9663,0,21
+131700,0,153433.0128,0,21
+131701,0,153451.0299,0,21
+131702,0,154372.4312,0,21
+131703,0,154148.0101,0,21
+131704,0,22825.99011,0,21
+131705,0,22958.07606,0,21
+131706,0,348747.3224,0,21
+131707,0,157529.1864,0,21
+131708,0,107699.212,0,21
+131709,339964.2781,175821.5665,0,21
+131710,0,155181.1574,0,21
+131711,0,154833.2372,0,21
+131712,0,155541.8318,0,21
+131713,0,155330.8524,0,21
+131714,0,523335.4113,0,21
+131715,0,155501.5102,0,21
+131716,0,155822.6994,0,21
+131717,0,155347.4659,0,21
+131718,0,132058.6711,0,21
+131719,0,131691.0501,0,21
+131720,0,188710.0719,0,21
+131721,0,154886.6391,0,21
+131722,0,156447.3293,0,21
+131723,0,154409.3937,0,21
+131724,0,158025.3051,0,21
+131725,0,155953.2359,0,21
+131726,0,156765.5348,742519.1314,21
+131727,0,156295.8121,0,21
+131728,0,156512.1972,0,21
+131729,0,156554.2148,0,21
+131730,0,156662.5381,0,21
+131731,0,156887.9411,0,21
+131732,0,156765.5959,0,21
+131733,0,156801.8887,0,21
+131734,0,159904.2289,0,21
+131735,0,162285.3298,0,21
+131736,0,25076.92182,0,21
+131737,0,25096.77683,0,21
+131738,0,350883.3557,0,21
+131739,0,163855.4849,0,21
+131740,0,110891.9844,0,21
+131741,0,194120.3789,0,21
+131742,0,165005.196,0,21
+131743,0,168137.7169,0,21
+131744,0,168740.7917,0,21
+131745,0,169510.1601,0,21
+131746,0,170292.7326,0,21
+131747,0,171057.277,0,21
+131748,0,171491.1516,0,21
+131749,0,172343.2561,0,21
+131750,339944.2199,146927.11,0,21
+131751,0,147572.4591,0,21
+131752,0,212268.8051,0,21
+131753,0,170943.8475,0,21
+131754,0,175974.8918,0,21
+131755,0,174224.9678,0,21
+131756,0,177750.8612,0,21
+131757,0,176972.5304,0,21
+131758,0,177175.6371,0,21
+131759,0,177715.4032,0,21
+131760,0,178395.1978,0,21
+131761,0,177569.691,0,21
+131762,0,177579.9034,0,21
+131763,0,176357.7357,735588.7792,21
+131764,0,176292.2946,0,21
+131765,0,175588.2733,0,21
+131766,0,174884.3036,0,21
+131767,0,174216.8516,0,21
+131768,0,393361.8649,0,21
+131769,0,25280.75656,0,21
+131770,0,370846.1214,0,21
+131771,0,161924.739,0,21
+131772,0,130529.3271,0,21
+131773,0,190250.334,0,21
+131774,0,170049.4448,0,21
+131775,0,169571.9135,0,21
+131776,0,168666.1682,0,21
+131777,0,168534.9588,0,21
+131778,0,167472.9066,0,21
+131779,0,166798.0157,0,21
+131780,0,166023.5745,0,21
+131781,0,165856.1858,0,21
+131782,0,140468.2689,0,21
+131783,0,140365.5784,0,21
+131784,0,200440.8327,0,21
+131785,0,161452.0522,0,21
+131786,0,156937.8267,0,21
+131787,0,163788.3634,0,21
+131788,0,160974.4704,0,21
+131789,0,160485.0446,0,21
+131790,0,159416.4715,0,21
+131791,339925.6168,159055.0844,0,21
+131792,0,158221.3948,0,21
+131793,0,157708.4096,0,21
+131794,0,156936.1201,0,21
+131795,0,156475.1167,0,21
+131796,0,154872.589,0,21
+131797,0,154108.6059,0,21
+131798,0,153708.4401,0,21
+131799,0,152747.1733,0,21
+131800,0,22494.24947,0,21
+131801,0,22444.59845,729396.1777,21
+131802,0,22287.53069,0,21
+131803,0,372744.7903,0,21
+131804,0,153682.4786,0,21
+131805,0,81799.17691,0,21
+131806,0,181633.5582,0,21
+131807,0,146348.3213,0,21
+131808,0,147238.6913,0,21
+131809,0,146817.7791,0,21
+131810,0,146477.7632,0,21
+131811,0,145010.7756,0,21
+131812,0,144711.6359,0,21
+131813,0,144231.7002,0,21
+131814,0,121809.1564,0,21
+131815,0,121356.6212,0,21
+131816,0,175798.9668,0,21
+131817,0,138285.9788,0,21
+131818,0,500667.4208,0,21
+131819,0,142835.0541,0,21
+131820,0,138065.2382,0,21
+131821,0,138308.4665,0,21
+131822,0,138011.6823,0,21
+131823,0,137859.787,0,21
+131824,0,137794.8498,0,21
+131825,0,137384.4723,0,21
+131826,0,137775.7424,0,21
+131827,0,136995.5084,0,21
+131828,0,137206.4356,0,21
+131829,0,137215.3506,0,21
+131830,0,136439.9407,0,21
+131831,0,137185.6984,0,21
+131832,339906.8626,136257.1277,0,21
+131833,0,20393.35989,0,21
+131834,0,20356.87232,0,21
+131835,0,20320.67121,0,21
+131836,0,343650.446,0,21
+131837,0,102577.9132,0,21
+131838,0,103614.5279,0,21
+131839,0,155991.2591,721191.3606,21
+131840,0,135249.1611,0,21
+131841,0,135761.8994,0,21
+131842,0,135437.061,0,21
+131843,0,135763.3583,0,21
+131844,0,135161.4821,0,21
+131845,0,135434.879,0,21
+131846,0,114958.1726,0,21
+131847,0,114861.8549,0,21
+131848,0,168143.3393,0,21
+131849,0,129984.8786,0,21
+131850,0,129292.8065,0,21
+131851,0,137638.0594,0,21
+131852,0,134021.4732,0,21
+131853,0,134061.8576,0,21
+131854,0,134045.9253,0,21
+131855,0,133693.6438,0,21
+131856,0,133302.9254,0,21
+131857,0,133365.7837,0,21
+131858,0,132842.8172,0,21
+131859,0,132960.0351,0,21
+131860,0,132528.2622,0,21
+131861,0,132803.6169,0,21
+131862,0,132465.0459,0,21
+131863,0,132722.3862,0,21
+131864,0,132020.9014,0,21
+131865,0,132175.9452,0,21
+131866,0,387515.1885,0,21
+131867,0,19578.29757,0,21
+131868,0,19559.19848,0,21
+131869,0,333733.3399,0,21
+131870,0,81494.33334,0,21
+131871,0,112647.4304,0,21
+131872,0,144219.5287,0,21
+131873,339881.0981,129576.7807,0,21
+131874,0,129653.6632,0,21
+131875,0,128726.0627,0,21
+131876,0,128429.0366,0,21
+131877,0,128165.4154,716704.6902,21
+131878,0,108268.0943,0,21
+131879,0,108268.0988,0,21
+131880,0,158625.5881,0,21
+131881,0,120835.1426,0,21
+131882,0,121438.3608,0,21
+131883,0,128173.3565,0,21
+131884,0,125047.8964,0,21
+131885,0,124713.9361,0,21
+131886,0,124457.572,0,21
+131887,0,124020.1869,0,21
+131888,0,123778.428,0,21
+131889,0,123272.891,0,21
+131890,0,122676.3131,0,21
+131891,0,123378.3441,0,21
+131892,0,123235.9286,0,21
+131893,0,122590.5774,0,21
+131894,0,122545.8312,0,21
+131895,0,121952.6004,0,21
+131896,0,121912.686,0,21
+131897,0,121256.8576,0,21
+131898,0,121051.5973,0,21
+131899,0,18403.01047,0,21
+131900,0,18343.59647,0,21
+131901,0,18307.53917,0,21
+131902,0,290206.4132,0,21
+131903,0,80010.10476,0,21
+131904,0,103254.0002,0,21
+131905,0,130508.2855,0,21
+131906,0,118351.7739,0,21
+131907,0,117860.4942,0,21
+131908,0,117586.6229,0,21
+131909,0,116781.082,0,21
+131910,0,98804.72113,0,21
+131911,0,98544.38233,0,21
+131912,0,144257.9049,0,21
+131913,0,478882.4631,711886.8873,21
+131914,339886.4645,110692.4071,0,21
+131915,0,116708.1828,0,21
+131916,0,113834.7409,0,21
+131917,0,113293.2604,0,21
+131918,0,112799.8978,0,21
+131919,0,112524.2107,0,21
+131920,0,111500.1745,0,21
+131921,0,111264.8496,0,21
+131922,0,110456.6035,0,21
+131923,0,110053.4649,0,21
+131924,0,109455.9562,0,21
+131925,0,108598.1434,0,21
+131926,0,108321.1851,0,21
+131927,0,107298.2687,0,21
+131928,0,106783.8148,0,21
+131929,0,106232.3991,0,21
+131930,0,105295.4437,0,21
+131931,0,104787.8861,0,21
+131932,0,16868.34107,0,21
+131933,0,16785.03281,0,21
+131934,0,16679.40641,0,21
+131935,0,278921.8669,0,21
+131936,0,62622.26184,0,21
+131937,0,84791.17581,0,21
+131938,0,115109.144,0,21
+131939,0,102257.2001,0,21
+131940,0,102530.2161,0,21
+131941,0,102322.8632,0,21
+131942,0,86599.20079,0,21
+131943,0,86784.30412,0,21
+131944,0,125564.3235,0,21
+131945,0,101491.2731,0,21
+131946,0,97967.45271,0,21
+131947,0,105136.1857,0,21
+131948,0,103092.0747,0,21
+131949,0,103043.5227,707162.5389,21
+131950,0,103227.7368,0,21
+131951,0,103349.5742,0,21
+131952,339903.2274,103398.6626,0,21
+131953,0,103386.6431,0,21
+131954,0,103675.4933,0,21
+131955,0,103562.5101,0,21
+131956,0,103750.5704,0,21
+131957,0,103759.2658,0,21
+131958,0,104141.3604,0,21
+131959,0,103836.214,0,21
+131960,0,472327.3179,0,21
+131961,0,104195.5381,0,21
+131962,0,104790.1723,0,21
+131963,0,104639.0621,0,21
+131964,0,105183.6837,0,21
+131965,0,14781.7623,0,21
+131966,0,14781.76202,0,21
+131967,0,14847.58016,0,21
+131968,0,294808.8221,0,21
+131969,0,72486.87063,0,21
+131970,0,78177.43883,0,21
+131971,0,123584.7845,0,21
+131972,0,105623.5923,0,21
+131973,0,106077.1307,0,21
+131974,0,91579.43728,0,21
+131975,0,91566.49671,0,21
+131976,0,131235.2345,0,21
+131977,0,105660.2474,0,21
+131978,0,101034.4925,0,21
+131979,0,109770.557,0,21
+131980,0,106786.6393,0,21
+131981,0,107270.015,0,21
+131982,0,107282.1871,0,21
+131983,0,107305.2559,0,21
+131984,0,107472.858,0,21
+131985,0,107912.7072,703666.2443,21
+131986,0,107508.0985,0,21
+131987,0,107895.1454,0,21
+131988,0,108677.3063,0,21
+131989,0,108517.5493,0,21
+131990,339925.3421,108871.9512,0,21
+131991,0,109137.2478,0,21
+131992,0,109043.3519,0,21
+131993,0,109360.4532,0,21
+131994,0,109455.4197,0,21
+131995,0,109695.6278,0,21
+131996,0,109690.2625,0,21
+131997,0,109712.9497,0,21
+131998,0,15177.18063,0,21
+131999,0,15177.18036,0,21
+132000,0,15211.78899,0,21
+132001,0,311171.5132,0,21
+132002,0,82890.76862,0,21
+132003,0,157828.167,0,21
+132004,0,134308.426,0,21
+132005,0,111524.5152,0,21
+132006,0,465529.2335,0,21
+132007,0,98138.05976,0,21
+132008,0,139262.1104,0,21
+132009,0,114219.3649,0,21
+132010,0,108237.2841,0,21
+132011,0,117992.275,0,21
+132012,0,115273.3929,0,21
+132013,0,115798.4586,0,21
+132014,0,116146.6661,0,21
+132015,0,116596.3781,0,21
+132016,0,116781.5496,0,21
+132017,0,117315.6428,0,21
+132018,0,117559.739,0,21
+132019,0,118261.6633,0,21
+132020,0,118306.5918,0,21
+132021,0,118868.6808,700738.9915,21
+132022,0,201948.0978,0,21
+132023,0,119771.2232,0,21
+132024,0,119814.9113,0,21
+132025,0,120591.8012,0,21
+132026,0,120549.7428,0,21
+132027,0,121290.455,0,21
+132028,339921.0654,121365.0371,0,21
+132029,0,122208.6569,0,21
+132030,0,122234.4943,0,21
+132031,0,16435.16679,0,21
+132032,0,16492.69627,0,21
+132033,0,16518.11291,0,21
+132034,0,343499.1302,0,21
+132035,0,121547.2724,0,21
+132036,0,60491.37318,0,21
+132037,0,158646.4351,0,21
+132038,0,106970.9897,0,21
+132039,0,109450.438,0,21
+132040,0,153748.2092,0,21
+132041,0,212435.5656,0,21
+132042,0,119478.8369,0,21
+132043,0,131833.7912,0,21
+132044,0,128268.0897,0,21
+132045,0,129203.6454,0,21
+132046,0,129446.1945,0,21
+132047,0,129912.6895,0,21
+132048,0,130355.3778,0,21
+132049,0,130815.2466,0,21
+132050,0,131173.8735,0,21
+132051,0,131691.0167,0,21
+132052,0,500141.9728,0,21
+132053,0,132665.4015,0,21
+132054,0,132935.6402,0,21
+132055,0,133715.1325,0,21
+132056,0,133609.9266,0,21
+132057,0,134829.3624,697019.3629,21
+132058,0,134821.5968,0,21
+132059,0,135367.6454,0,21
+132060,0,218298.6584,0,21
+132061,0,137202.0801,0,21
+132062,0,137494.5901,0,21
+132063,0,138070.7821,0,21
+132064,0,18832.23512,0,21
+132065,0,18898.73087,0,21
+132066,0,19005.77516,0,21
+132067,339907.8578,382681.6473,0,21
+132068,0,171750.1022,0,21
+132069,0,46569.48439,0,21
+132070,0,165933.2894,0,21
+132071,0,119661.7531,0,21
+132072,0,168977.5103,0,21
+132073,0,146939.4898,0,21
+132074,0,135441.8936,0,21
+132075,0,147265.0742,0,21
+132076,0,144567.9727,0,21
+132077,0,145063.5526,0,21
+132078,0,145022.2959,0,21
+132079,0,145644.149,0,21
+132080,0,146020.4491,0,21
+132081,0,146228.1148,0,21
+132082,0,146822.5684,0,21
+132083,0,147322.106,0,21
+132084,0,147264.3205,0,21
+132085,0,147866.164,0,21
+132086,0,148369.8963,0,21
+132087,0,148512.5684,0,21
+132088,0,149318.3416,0,21
+132089,0,149193.3429,0,21
+132090,0,149708.0357,0,21
+132091,0,150233.7705,0,21
+132092,0,150644.9173,0,21
+132093,0,150793.9947,693492.8044,21
+132094,0,151362.1684,0,21
+132095,0,519458.3552,0,21
+132096,0,152071.8588,0,21
+132097,0,23281.27595,0,21
+132098,0,23430.37067,0,21
+132099,0,23533.35624,0,21
+132100,0,413565.7721,0,21
+132101,0,208432.9675,0,21
+132102,0,24705.26527,0,21
+132103,0,168061.4556,0,21
+132104,0,192493.6608,0,21
+132105,0,153427.5756,0,21
+132106,339903.6757,151968.3569,0,21
+132107,0,157563.0815,0,21
+132108,0,157001.9422,0,21
+132109,0,157338.4609,0,21
+132110,0,156904.1281,0,21
+132111,0,158058.5286,0,21
+132112,0,157848.2974,0,21
+132113,0,158247.143,0,21
+132114,0,158878.8255,0,21
+132115,0,159035.4732,0,21
+132116,0,159396.5551,0,21
+132117,0,159938.3203,0,21
+132118,0,160001.5901,0,21
+132119,0,160352.2573,0,21
+132120,0,160901.5137,0,21
+132121,0,161386.0905,0,21
+132122,0,161949.9712,0,21
+132123,0,163151.9779,0,21
+132124,0,163476.0212,0,21
+132125,0,164384.7709,0,21
+132126,0,165206.1476,0,21
+132127,0,165051.3112,0,21
+132128,0,166864.1033,0,21
+132129,0,166320.9919,691627.8053,21
+132130,0,27820.40645,0,21
+132131,0,110058.4149,0,21
+132132,0,391357.6678,0,21
+132133,0,168529.4941,0,21
+132134,0,86661.27374,0,21
+132135,0,169133.914,0,21
+132136,0,224682.8984,0,21
+132137,0,543794.4436,0,21
+132138,0,182679.3044,0,21
+132139,0,183431.593,0,21
+132140,0,186960.1098,0,21
+132141,0,187357.2749,0,21
+132142,0,189060.3299,0,21
+132143,0,190284.7771,0,21
+132144,0,191606.5218,0,21
+132145,339891.7247,194718.7472,0,21
+132146,0,196310.8242,0,21
+132147,0,197420.336,0,21
+132148,0,199242.6706,0,21
+132149,0,200279.3692,0,21
+132150,0,284208.0428,0,21
+132151,0,203388.6269,0,21
+132152,0,205160.2069,0,21
+132153,0,206383.723,0,21
+132154,0,208066.6981,0,21
+132155,0,210016.8771,0,21
+132156,0,210781.1579,0,21
+132157,0,212777.7803,0,21
+132158,0,213597.5676,0,21
+132159,0,215672.1925,0,21
+132160,0,216558.6035,0,21
+132161,0,218104.56,0,21
+132162,0,33030.75454,0,21
+132163,0,33413.69384,0,21
+132164,0,476120.8359,0,21
+132165,0,243933.4642,0,21
+132166,0,117683.0621,688936.6491,21
+132167,0,224826.8161,0,21
+132168,0,268754.9378,0,21
+132169,0,223179.6419,0,21
+132170,0,231320.8481,0,21
+132171,0,226264.4697,0,21
+132172,0,232806.2809,0,21
+132173,0,316880.4498,0,21
+132174,0,236113.8822,0,21
+132175,0,236497.8024,0,21
+132176,0,238501.062,0,21
+132177,0,239390.1129,0,21
+132178,0,241221.4128,0,21
+132179,0,610018.6897,0,21
+132180,0,243582.9956,0,21
+132181,0,244462.9034,0,21
+132182,0,245955.2072,0,21
+132183,0,246527.0581,0,21
+132184,339870.6195,247684.2017,0,21
+132185,0,248895.0373,0,21
+132186,0,249778.8448,0,21
+132187,0,250943.0485,0,21
+132188,0,251711.0892,0,21
+132189,0,252867.7644,0,21
+132190,0,253997.2291,0,21
+132191,0,255223.1598,0,21
+132192,0,255802.0652,0,21
+132193,0,257412.3796,0,21
+132194,0,39165.08484,0,21
+132195,0,39291.91423,0,21
+132196,0,584780.3537,0,21
+132197,0,238144.6657,0,21
+132198,0,196479.1101,0,21
+132199,0,233694.3778,0,21
+132200,0,313681.6526,0,21
+132201,0,259869.5814,0,21
+132202,0,268621.5089,0,21
+132203,0,266671.9556,688103.2586,21
+132204,0,273279.117,0,21
+132205,0,270929.086,0,21
+132206,0,272325.2741,0,21
+132207,0,273690.679,0,21
+132208,0,274716.5766,0,21
+132209,0,276068.4756,0,21
+132210,0,276719.9231,0,21
+132211,0,277752.1829,0,21
+132212,0,278915.3786,0,21
+132213,0,280097.8553,0,21
+132214,0,280699.8352,0,21
+132215,0,281407.3555,0,21
+132216,0,284434.867,0,21
+132217,0,284524.9661,0,21
+132218,0,286493.4504,0,21
+132219,26817.37773,287110.2498,0,21
+132220,0,288366.8501,0,21
+132221,0,289387.9965,0,21
+132222,5712.224001,658067.6417,0,21
+132223,346323.0272,293742.5397,0,21
+132224,4435.345634,302496.0459,0,21
+132225,5066.993494,300272.8757,0,21
+132226,5071.742586,48311.38776,0,21
+132227,5084.122671,48495.23655,0,21
+132228,5774.745513,677065.889,0,21
+132229,5498.243921,245082.6918,0,21
+132230,5590.181197,279315.9548,0,21
+132231,5638.40307,252648.7714,0,21
+132232,5708.379299,378768.3733,0,21
+132233,5703.219748,302316.9998,0,21
+132234,5789.387225,325636.6655,0,21
+132235,5808.005659,323858.311,0,21
+132236,5836.215514,319739.2852,0,21
+132237,5883.178771,325219.1297,0,21
+132238,5921.420693,325919.2511,0,21
+132239,5929.29296,326851.8986,686870.8339,21
+132240,6012.769396,328924.0954,0,21
+132241,6036.530486,329384.105,0,21
+132242,6136.399118,329611.6635,0,21
+132243,6159.69078,330384.3488,0,21
+132244,6248.185353,330732.8359,0,21
+132245,6309.410428,331303.8095,0,21
+132246,6381.089691,331521.2246,0,21
+132247,6413.672897,332190.0118,0,21
+132248,6507.26585,332643.187,0,21
+132249,0,333125.5239,0,21
+132250,0,332895.0858,0,21
+132251,0,333887.3144,0,21
+132252,0,333966.731,0,21
+132253,0,334281.059,0,21
+132254,0,334689.1616,0,21
+132255,0,334967.145,0,21
+132256,0,335254.3178,0,21
+132257,0,335019.1313,0,21
+132258,30587.91836,52636.04611,0,21
+132259,1906.711869,52431.43545,0,21
+132260,1345.1191,773413.7094,0,21
+132261,8519.681544,252102.4776,0,21
+132262,8687.798855,295922.6818,0,21
+132263,6780.403888,277740.228,0,21
+132264,7483.911632,402348.8449,0,21
+132265,7514.627521,328904.157,0,21
+132266,347403.0378,342375.6584,0,21
+132267,7612.823969,340986.8044,0,21
+132268,7693.724702,336480.789,0,21
+132269,7709.465172,339145.5007,0,21
+132270,7764.89758,338584.0372,0,21
+132271,7821.178757,706245.722,0,21
+132272,7896.982609,338899.3046,0,21
+132273,7891.812321,338040.2787,0,21
+132274,7961.530366,339045.0781,0,21
+132275,8023.084302,338290.5753,0,21
+132276,8061.95405,338968.8686,0,21
+132277,8112.267459,338540.6692,685444.717,21
+132278,8136.76155,338924.5638,0,21
+132279,8202.296277,338810.1957,0,21
+132280,8261.244892,338433.7144,0,21
+132281,8275.11773,339124.5135,0,21
+132282,8335.292528,338616.1671,0,21
+132283,8394.397501,338487.6912,0,21
+132284,8438.034887,338828.8645,0,21
+132285,8438.034389,338446.5701,0,21
+132286,8550.579017,338611.128,0,21
+132287,8560.511966,338420.7289,0,21
+132288,0,337852.3835,0,21
+132289,0,338946.499,0,21
+132290,0,53518.68078,0,21
+132291,0,53635.28819,0,21
+132292,0,796607.745,0,21
+132293,0,248821.4076,0,21
+132294,40995.27778,275872.142,0,21
+132295,0,290706.7697,0,21
+132296,1750.525143,402276.3592,0,21
+132297,12122.34635,331656.6097,0,21
+132298,9758.150752,340743.3906,0,21
+132299,8579.99828,339160.1718,0,21
+132300,9125.86917,337430.7405,0,21
+132301,9173.430328,339951.8852,0,21
+132302,9211.451367,338930.6168,0,21
+132303,9206.117338,338685.1404,0,21
+132304,9229.360566,339539.6426,0,21
+132305,9251.936585,338722.1425,0,21
+132306,9276.666167,339580.3211,0,21
+132307,9297.572805,339597.8745,0,21
+132308,9294.49076,339789.9008,0,21
+132309,349196.104,339669.3483,0,21
+132310,9330.016179,339885.7114,0,21
+132311,9397.041149,339716.8855,0,21
+132312,9365.375275,340033.154,0,21
+132313,9449.264281,340543.5908,0,21
+132314,9397.664091,340043.7755,683958.8031,21
+132315,9484.458693,340275.9923,0,21
+132316,9449.892338,340408.2805,0,21
+132317,9496.616447,340900.6656,0,21
+132318,9504.879462,340170.4504,0,21
+132319,9534.0665,340714.7252,0,21
+132320,9531.565925,340589.4954,0,21
+132321,9571.420457,708630.6543,0,21
+132322,9566.355902,54472.1809,0,21
+132323,9617.898489,54516.06942,0,21
+132324,0,817604.1121,0,21
+132325,0,246276.356,0,21
+132326,0,262571.3463,0,21
+132327,0,303862.2322,0,21
+132328,0,408511.5743,0,21
+132329,44643.76228,332892.6175,0,21
+132330,0,345564.2864,0,21
+132331,891.2665753,341694.3766,0,21
+132332,14570.05455,341681.3433,0,21
+132333,9819.901784,342648.776,0,21
+132334,9392.118771,341615.7481,0,21
+132335,9821.643559,341444.9664,0,21
+132336,9836.067106,341351.3726,0,21
+132337,9836.066,342241.1394,0,21
+132338,9853.090016,341042.9388,0,21
+132339,9904.259517,341790.2183,0,21
+132340,9884.469179,341635.2555,0,21
+132341,9870.073892,341200.8889,0,21
+132342,9952.480768,341612.0943,0,21
+132343,9921.204462,341174.51,0,21
+132344,9932.689444,341809.8975,0,21
+132345,9954.987526,341335.0339,0,21
+132346,9983.684175,341074.3664,0,21
+132347,9986.185783,341587.1966,0,21
+132348,349829.9527,340834.8648,0,21
+132349,9986.183756,341524.3539,0,21
+132350,10053.81203,340943.1507,0,21
+132351,10031.61819,340968.2915,682317.7215,21
+132352,10034.07559,341104.8654,0,21
+132353,10070.53411,340914.8008,0,21
+132354,10079.37596,54825.58037,0,21
+132355,10070.53209,54916.6018,0,21
+132356,10132.44851,827379.2026,0,21
+132357,10101.52206,244980.5805,0,21
+132358,10112.7121,247378.7584,0,21
+132359,0,312392.5998,0,21
+132360,0,409728.9245,0,15.6
+132361,0,330260.5165,0,15.6
+132362,0,345378.9592,0,15.6
+132363,0,339457.8806,0,15.6
+132364,47333.54418,341233.4444,0,15.6
+132365,0,341260.1809,0,15.6
+132366,0,339876.9233,0,15.6
+132367,14694.80989,340648.0054,0,15.6
+132368,9776.01487,707292.2813,0,15.6
+132369,9104.811685,339644.3083,0,15.6
+132370,9509.128684,339596.6455,0,15.6
+132371,9404.772179,339812.6113,0,15.6
+132372,9337.473871,338813.2667,0,15.6
+132373,9290.303372,339145.9383,0,15.6
+132374,9182.620634,338858.3722,0,15.6
+132375,9127.120822,338942.0589,0,15.6
+132376,9056.670847,337945.2002,0,15.6
+132377,8983.272221,338827.1393,0,15.6
+132378,8891.709277,338108.224,0,15.6
+132379,8843.448452,337924.7916,0,15.6
+132380,8746.264767,337639.7187,0,15.6
+132381,8687.214553,337636.2634,0,15.6
+132382,8607.108696,337695.7491,0,15.6
+132383,8511.940884,336739.5132,0,15.6
+132384,8475.317526,337207.2627,0,15.6
+132385,8371.21532,336822.0535,0,15.6
+132386,8316.329047,54640.2921,0,15.6
+132387,348043.7297,54731.31193,0,15.6
+132388,8140.133295,822155.553,680875.9366,15.6
+132389,8082.481622,243402.207,0,15.6
+132390,8016.019883,226465.1511,0,15.6
+132391,7911.952617,317667.7122,0,15.6
+132392,7851.27437,404276.0821,0,15.6
+132393,7759.41754,322731.0283,0,15.6
+132394,0,341674.4315,0,15.6
+132395,0,331655.5263,0,15.6
+132396,0,337232.7496,0,15.6
+132397,0,334583.3274,0,15.6
+132398,0,334783.0119,0,15.6
+132399,0,334046.6659,0,15.6
+132400,0,334029.9543,0,15.6
+132401,0,332429.7736,0,15.6
+132402,0,332592.9375,0,15.6
+132403,37250.21096,332244.0099,0,15.6
+132404,0,331988.4185,0,15.6
+132405,310.8838383,331747.6991,0,15.6
+132406,6667.009467,331303.553,0,15.6
+132407,9287.390027,331509.9401,0,15.6
+132408,5676.456752,330718.6926,0,15.6
+132409,6599.807553,330769.5628,0,15.6
+132410,6460.93066,330325.8621,0,15.6
+132411,6460.929885,330494.3624,0,15.6
+132412,6305.594166,697574.9019,0,15.6
+132413,6265.866632,329595.1284,0,15.6
+132414,6140.508276,329625.6386,0,15.6
+132415,6109.073058,328800.6797,0,15.6
+132416,5966.918716,328810.8584,0,15.6
+132417,5912.734631,328873.4257,0,15.6
+132418,5830.984442,53929.73461,0,15.6
+132419,5719.019522,54081.80229,0,15.6
+132420,5650.279494,803400.3659,0,15.6
+132421,5678.869577,238502.0874,0,15.6
+132422,5739.427599,209864.2072,0,15.6
+132423,5751.029858,320775.6676,0,15.6
+132424,5801.213925,401730.9785,679784.3027,15.6
+132425,345658.1389,318269.8234,0,15.6
+132426,5869.426717,341996.0605,0,15.6
+132427,5942.968884,333275.3066,0,15.6
+132428,5967.611594,340045.9406,0,15.6
+132429,6002.693439,339431.8043,0,15.6
+132430,6068.223639,340022.0011,0,15.6
+132431,6090.204996,340734.9844,0,15.6
+132432,6108.171991,343700.5201,0,15.6
+132433,0,342779.089,0,15.6
+132434,0,345582.446,0,15.6
+132435,0,345349.842,0,15.6
+132436,0,348029.8728,0,15.6
+132437,0,348181.8698,0,15.6
+132438,0,349530.5404,0,15.6
+132439,0,351417.7973,0,15.6
+132440,0,352026.0483,0,15.6
+132441,0,353072.446,0,15.6
+132442,0,354792.5871,0,15.6
+132443,0,355875.8282,0,15.6
+132444,0,356611.0519,0,15.6
+132445,0,358315.8904,0,15.6
+132446,0,359145.6361,0,15.6
+132447,36158.40509,360895.88,0,15.6
+132448,0,361678.5515,0,15.6
+132449,1111.415491,363161.6967,0,15.6
+132450,6229.583021,426425.6913,0,15.6
+132451,9765.624696,58658.96691,0,15.6
+132452,6092.894788,908993.274,0,15.6
+132453,7107.699488,247728.5407,0,15.6
+132454,7159.778337,278851.4879,0,15.6
+132455,7176.781819,336717.5085,0,15.6
+132456,7259.20218,448487.4017,0,15.6
+132457,7253.316346,362389.7786,0,15.6
+132458,7352.272928,376678.2032,0,15.6
+132459,7335.431221,378307.3269,678598.7007,15.6
+132460,7392.836611,376822.62,0,15.6
+132461,7454.17445,378635.4996,0,15.6
+132462,347246.1214,380179.3905,0,15.6
+132463,7531.423831,380395.2273,0,15.6
+132464,7555.561385,381945.6706,0,15.6
+132465,7595.761982,383523.633,0,15.6
+132466,7647.305871,384489.0808,0,15.6
+132467,7703.911477,385641.0783,0,15.6
+132468,7703.910427,386526.2029,0,15.6
+132469,7785.811278,388260.2327,0,15.6
+132470,7811.463541,389390.8616,0,15.6
+132471,7858.506646,390169.0225,0,15.6
+132472,7946.878893,391865.6181,0,15.6
+132473,7952.492758,393390.8378,0,15.6
+132474,8036.980754,393911.3261,0,15.6
+132475,8054.890307,395361.0211,0,15.6
+132476,8103.650156,396627.5983,0,15.6
+132477,0,398027.8909,0,15.6
+132478,0,398937.7692,0,15.6
+132479,0,400482.5351,0,15.6
+132480,0,401506.432,0,15.6
+132481,0,395073.8026,0,15.6
+132482,0,61529.76217,0,15.6
+132483,0,61616.79067,0,15.6
+132484,41407.10621,990823.3376,0,15.6
+132485,0,250180.3308,0,15.6
+132486,0,323124.6133,0,15.6
+132487,9287.040902,343938.3112,0,15.6
+132488,10050.81271,837359.0062,0,15.6
+132489,7115.536927,386137.3486,0,15.6
+132490,8000.719986,391153.8942,0,15.6
+132491,8009.91182,396301.4203,0,15.6
+132492,8033.413669,387684.0413,0,15.6
+132493,7979.192952,390925.0705,0,15.6
+132494,8001.10305,389655.7418,677413.1457,15.6
+132495,7968.404253,388227.6495,0,15.6
+132496,8011.885146,388152.367,0,15.6
+132497,7991.835046,387870.2891,0,15.6
+132498,7995.552455,387653.8067,0,15.6
+132499,347763.1896,385786.4632,0,15.6
+132500,8029.746761,386641.1785,0,15.6
+132501,7991.828593,385634.3431,0,15.6
+132502,8013.414112,385139.8862,0,15.6
+132503,8008.154754,384691.5669,0,15.6
+132504,8031.23673,384261.2264,0,15.6
+132505,8002.623891,383790.8206,0,15.6
+132506,8036.777476,383018.4703,0,15.6
+132507,8031.231828,382899.3357,0,15.6
+132508,8009.643111,382026.4818,0,15.6
+132509,8047.55788,381976.6667,0,15.6
+132510,8009.639841,381519.1713,0,15.6
+132511,8047.554569,382011.2254,0,15.6
+132512,8027.420353,381386.263,0,15.6
+132513,8047.551247,380726.5599,0,15.6
+132514,0,60214.02831,0,15.6
+132515,0,60397.83147,0,15.6
+132516,0,955380.3152,0,15.6
+132517,0,248973.9937,0,15.6
+132518,0,284461.0516,0,15.6
+132519,0,344987.1168,0,15.6
+132520,0,453854.9673,0,15.6
+132521,0,368895.4456,0,15.6
+132522,44984.19108,378313.8043,0,15.6
+132523,0,378663.3405,0,15.6
+132524,0,375157.0852,0,15.6
+132525,7387.992981,375769.5646,0,15.6
+132526,11559.65102,743077.0058,0,15.6
+132527,6842.243337,373796.8043,0,15.6
+132528,8100.76019,373842.6993,0,15.6
+132529,8123.923018,373032.5516,676392.8766,15.6
+132530,8117.04738,372727.7039,0,15.6
+132531,8118.41332,371600.4285,0,15.6
+132532,8117.043637,371434.4119,0,15.6
+132533,8134.700744,371593.3315,0,15.6
+132534,8080.491811,369804.6294,0,15.6
+132535,8226.394777,370278.192,0,15.6
+132536,348059.9278,369097.2762,0,15.6
+132537,8206.708095,368814.343,0,15.6
+132538,8311.516504,368517.7624,0,15.6
+132539,8240.57643,367474.8097,0,15.6
+132540,8301.046685,367371.5298,0,15.6
+132541,8281.952788,366618.553,0,15.6
+132542,8239.886083,365666.0299,0,15.6
+132543,8209.941232,365691.041,0,15.6
+132544,8218.229821,364014.1204,0,15.6
+132545,8149.936014,364481.4657,0,15.6
+132546,8178.898943,58665.64825,0,15.6
+132547,8116.839431,58745.56175,0,15.6
+132548,8106.440793,914513.4006,0,15.6
+132549,8110.440969,247253.9724,0,15.6
+132550,8039.073214,238029.634,0,15.6
+132551,8046.069283,344759.0889,0,15.6
+132552,0,433442.7583,0,15.6
+132553,0,345794.959,0,15.6
+132554,0,361902.617,0,15.6
+132555,0,355331.377,0,15.6
+132556,0,358137.2968,0,15.6
+132557,0,356313.5922,0,15.6
+132558,0,354872.6352,0,15.6
+132559,0,354284.525,0,15.6
+132560,0,353978.567,0,15.6
+132561,44828.7358,352550.9209,0,15.6
+132562,0,352478.2354,0,15.6
+132563,0,351684.1254,0,15.6
+132564,5156.378516,718952.5659,673139.1711,15.6
+132565,11940.44322,349970.8041,0,15.6
+132566,6015.933499,349531.6824,0,15.6
+132567,7464.908334,348966.8054,0,15.6
+132568,7472.093251,347786.1987,0,15.6
+132569,7414.838442,347681.4337,0,15.6
+132570,7427.886074,346477.1425,0,15.6
+132571,7351.687836,346103.6041,0,15.6
+132572,7361.342894,345300.0158,0,15.6
+132573,347174.0316,344240.0504,0,15.6
+132574,7465.424085,344164.0631,0,15.6
+132575,7338.359906,343330.0205,0,15.6
+132576,7396.140764,342054.8661,0,15.6
+132577,7314.475001,341640.1003,0,15.6
+132578,7321.232266,56749.49114,0,15.6
+132579,7261.810585,56443.78245,0,15.6
+132580,7234.971902,856377.7506,0,15.6
+132581,7231.736521,231838.4053,0,15.6
+132582,7152.231907,208628.8865,0,15.6
+132583,7160.753881,331677.9971,0,15.6
+132584,7100.910734,409195.9716,0,15.6
+132585,7076.501974,319969.7832,0,15.6
+132586,7046.196753,340535.4271,0,15.6
+132587,7010.641392,332126.6866,0,15.6
+132588,6981.345933,336118.3926,0,15.6
+132589,6923.134022,333714.3394,0,15.6
+132590,6945.57131,332383.7073,0,15.6
+132591,0,331833.4913,0,15.6
+132592,0,330872.8133,0,15.6
+132593,0,330173.3679,0,15.6
+132594,0,329697.4768,0,15.6
+132595,0,328393.3962,0,15.6
+132596,0,327815.5515,0,15.6
+132597,0,327130.4481,0,15.6
+132598,0,326427.6066,0,15.6
+132599,0,325411.3186,672989.7347,15.6
+132600,0,325044.6345,0,15.6
+132601,0,325915.0982,0,15.6
+132602,0,694488.2117,0,15.6
+132603,0,328900.7517,0,15.6
+132604,0,329477.7976,0,15.6
+132605,38971.5638,330719.4283,0,15.6
+132606,0,332127.2415,0,15.6
+132607,0,333476.1149,0,15.6
+132608,4867.571567,334090.0087,0,15.6
+132609,9879.345082,336099.1527,0,15.6
+132610,345376.7024,56353.34014,0,15.6
+132611,6626.430057,56469.63035,0,15.6
+132612,6707.68198,853686.965,0,15.6
+132613,6742.687021,227418.9108,0,15.6
+132614,6744.0936,218171.2476,0,15.6
+132615,6767.948294,334113.5755,0,15.6
+132616,6799.129554,417028.1581,0,15.6
+132617,6803.107758,331424.4638,0,15.6
+132618,6781.568241,351394.9501,0,15.6
+132619,6880.627732,346217.9756,0,15.6
+132620,7039.0827,352017.7784,0,15.6
+132621,7046.147732,351160.1897,0,15.6
+132622,7048.037503,352344.2245,0,15.6
+132623,7109.177101,353648.8527,0,15.6
+132624,7115.344625,355084.6392,0,15.6
+132625,7188.862381,355556.9479,0,15.6
+132626,7163.614349,357892.5544,0,15.6
+132627,7230.06274,358242.8364,0,15.6
+132628,7236.410454,360195.8062,0,15.6
+132629,7304.590094,361017.5546,0,15.6
+132630,7304.588804,362482.3135,0,15.6
+132631,7320.616247,363603.1875,0,15.6
+132632,7394.819924,365211.5567,0,15.6
+132633,7372.340892,366363.3399,0,15.6
+132634,7424.421816,367702.2988,672949.0386,15.6
+132635,0,368596.567,0,15.6
+132636,0,370660.6319,0,15.6
+132637,0,371017.5396,0,15.6
+132638,0,373262.0924,0,15.6
+132639,0,373669.1658,0,15.6
+132640,0,743455.6417,0,15.6
+132641,0,377062.9755,0,15.6
+132642,0,61246.87718,0,15.6
+132643,0,61674.68775,0,15.6
+132644,0,968483.0214,0,15.6
+132645,43013.3782,250628.4185,0,15.6
+132646,0,275344.0947,0,15.6
+132647,339636.4462,358366.6592,0,15.6
+132648,5575.314194,464819.308,0,15.6
+132649,11480.38215,378267.2224,0,15.6
+132650,6141.461659,391628.0447,0,15.6
+132651,7512.108295,393165.2322,0,15.6
+132652,7637.523755,391979.9913,0,15.6
+132653,8324.908532,393925.7408,0,15.6
+132654,7964.530755,395055.8124,0,15.6
+132655,8070.07706,396092.1981,0,15.6
+132656,8153.687729,397159.6179,0,15.6
+132657,8152.018845,399052.4075,0,15.6
+132658,8195.967184,399758.6846,0,15.6
+132659,8223.749729,401847.6683,0,15.6
+132660,8244.551941,403955.754,0,15.6
+132661,214549.1698,2563096.798,0,15.6
+132662,79730.3886,1716025.64,0,15.6
+132663,40721.74564,570296.9022,0,15.6
+132664,13199.12765,851774.732,0,15.6
+132665,54936.6245,931856.0106,0,15.6
+132666,44076.90352,909639.2068,0,15.6
+132667,39504.21295,860187.0927,0,15.6
+132668,41066.32254,866082.5067,0,15.6
+132669,40845.49274,866119.1923,672670.3565,15.6
+132670,40845.42878,860357.2305,0,15.6
+132671,40547.21118,860137.248,0,15.6
+132672,40485.69534,856758.4052,0,15.6
+132673,40249.20856,852623.9979,0,15.6
+132674,40174.79078,148450.6185,0,15.6
+132675,0,148158.3158,0,15.6
+132676,0,1229276.349,0,15.6
+132677,0,896784.8827,0,15.6
+132678,77361.93263,970722.4546,0,15.6
+132679,36104.81921,976148.9689,0,15.6
+132680,34039.63512,823324.9023,0,15.6
+132681,296490.5505,833943.7548,0,15.6
+132682,60587.61506,839736.8908,0,15.6
+132683,66324.55378,834414.3877,0,15.6
+132684,486847.3169,832072.6036,0,15.6
+132685,114473.3493,818395.9806,0,15.6
+132686,114531.1267,812271.0605,0,15.6
+132687,116872.2468,815794.0217,0,15.6
+132688,116492.6977,809323.1543,0,15.6
+132689,116463.1206,808085.9605,0,15.6
+132690,116715.0053,805260.0972,0,15.6
+132691,116388.1135,784926.4578,0,15.6
+132692,116791.5776,782888.1682,0,15.6
+132693,121629.1501,781138.5907,0,15.6
+132694,121099.7107,778585.8089,0,15.6
+132695,120674.5817,841895.8242,0,15.6
+132696,122089.2015,774986.0289,0,15.6
+132697,121510.3367,783501.1871,0,15.6
+132698,122411.5669,794590.0794,0,15.6
+132699,122398.3117,784302.1356,0,15.6
+132700,122980.862,784405.6883,0,15.6
+132701,123091.065,781128.8957,0,15.6
+132702,123377.8676,779715.7583,0,15.6
+132703,123606.8622,779340.1369,0,15.6
+132704,124024.4122,775259.4213,670007.8473,15.6
+132705,124306.6359,774455.8619,0,15.6
+132706,124418.2459,135631.2929,0,15.6
+132707,124773.4629,135319.3059,0,15.6
+132708,86998.49848,1219016.5,0,15.6
+132709,87108.24423,569002.9158,0,15.6
+132710,87461.81466,858356.122,0,15.6
+132711,76395.46833,790225.558,0,15.6
+132712,27658.98571,791898.0279,0,15.6
+132713,35843.17132,772657.3391,0,15.6
+132714,40661.9783,753979.6774,0,15.6
+132715,38173.0524,764729.717,0,15.6
+132716,38050.13019,1126887.034,0,15.6
+132717,38180.90749,756316.9033,0,15.6
+132718,38078.65939,754811.5795,0,15.6
+132719,38091.84327,751931.726,0,15.6
+132720,38108.49437,752387.2521,0,17.8
+132721,1422740.562,2600926.388,0,17.8
+132722,893278.2052,2594499.471,0,17.8
+132723,634079.7947,2499705.391,0,17.8
+132724,549977.4728,2015751.489,0,17.8
+132725,350664.834,1258118.422,0,17.8
+132726,433920.1588,1511316.889,0,17.8
+132727,419539.3139,1566545.573,0,17.8
+132728,397453.4528,1435834.375,0,17.8
+132729,400488.9711,1412664.402,0,17.8
+132730,398162.2096,1423652.543,0,17.8
+132731,397668.027,1412653.466,0,17.8
+132732,396133.3083,1402364.524,0,17.8
+132733,396098.3125,1398457.429,0,17.8
+132734,395274.8182,1390430.523,0,17.8
+132735,394716.6217,1388633.882,0,17.8
+132736,394632.0054,1380783.681,0,17.8
+132737,393639.1929,1375564.412,0,17.8
+132738,394181.5886,217888.4018,0,17.8
+132739,392893.1072,1975936.967,669861.9965,17.8
+132740,393636.9447,1175528.317,0,17.8
+132741,296008.3287,1330662.149,0,17.8
+132742,296653.4993,1463575.359,0,17.8
+132743,501005.8846,1339626.817,0,17.8
+132744,369951.5885,1343759.412,0,17.8
+132745,409234.2127,1350314.884,0,17.8
+132746,394571.4074,1342565.408,0,17.8
+132747,393589.7662,1336070.214,0,17.8
+132748,394371.4588,1336628.421,0,17.8
+132749,394412.0365,1328469.213,0,17.8
+132750,394900.4598,1329480.638,0,17.8
+132751,94581.18834,1324156.546,0,17.8
+132752,94263.24975,1321372.854,0,17.8
+132753,93938.27758,1318799.415,0,17.8
+132754,802864.6231,1683919.837,0,17.8
+132755,432031.4955,1312422.109,0,17.8
+132756,292513.9105,1310604.411,0,17.8
+132757,420854.9032,1270792.919,0,17.8
+132758,727980.2707,1269290.399,0,17.8
+132759,385790.765,1349702.908,0,17.8
+132760,385216.6694,1295764.325,0,17.8
+132761,386213.7912,1293233.972,0,17.8
+132762,385809.8772,1299762.352,0,17.8
+132763,386409.7664,1294670.408,0,17.8
+132764,386976.977,1291323.586,0,17.8
+132765,420077.595,1289742.623,0,17.8
+132766,387292.0827,1287196.848,0,17.8
+132767,399534.5972,1285079.299,0,17.8
+132768,401377.7266,1285196.319,0,17.8
+132769,399237.2075,199962.7642,0,17.8
+132770,400411.2671,1852917.411,0,17.8
+132771,400963.1304,1047187.307,0,17.8
+132772,401242.4799,1294704.012,0,17.8
+132773,310375.1484,1348387.166,0,17.8
+132774,312120.0191,1246941.958,670357.689,17.8
+132775,492777.9444,1275222.5,0,17.8
+132776,387546.6438,1274232.375,0,17.8
+132777,418925.3707,1265714.343,0,17.8
+132778,405292.4964,1268180.972,0,17.8
+132779,404521.1249,1263484.601,0,17.8
+132780,408370.2716,1263738.785,0,20
+132781,2296808.194,2609291.914,0,20
+132782,1285142.138,2361976.573,0,20
+132783,550579.6542,1713139.351,0,20
+132784,469059.6611,1283641.113,1570.27528,20
+132785,755686.5224,1692358.513,701.7670143,20
+132786,709701.2748,1500011.342,933.9703311,20
+132787,646572.251,1508737.454,966.4568567,20
+132788,663242.9016,1501674.369,982.6535535,20
+132789,657578.5626,1492550.834,998.8111561,20
+132790,659073.2574,1488278.72,998.8403777,20
+132791,655207.0902,1483842.708,1100.826001,20
+132792,653660.4787,1478071.618,2115.82541,20
+132793,650793.7606,1472880.143,1499.273073,20
+132794,651226.3453,1471484.356,4029.892154,20
+132795,648473.7233,1465906.38,8123.114038,20
+132796,647094.8171,1460754.183,5516.101415,20
+132797,644989.1976,1460122.695,6882.709864,20
+132798,644507.8389,1453039.135,7342.442414,20
+132799,642513.4726,1451752.514,8092.744484,20
+132800,640289.5132,1447998.159,8086.957359,20
+132801,641087.0512,1443884.743,8547.530716,20
+132802,638485.6694,1439485.142,8974.764858,20
+132803,637391.6886,1439319.341,9125.884851,20
+132804,636557.1966,1434870.14,9644.54332,20
+132805,634422.9159,1432940.071,9944.709585,20
+132806,634706.1882,1428606.91,10097.46021,20
+132807,632491.6979,1425691.083,10615.2215,20
+132808,631621.4422,1425677.76,10786.48697,20
+132809,632218.6024,1419685.773,11161.2065,20
+132810,629436.3634,1417847.634,11472.57769,20
+132811,628525.0669,1416990.148,11711.58038,20
+132812,628137.2743,1413627.656,12127.26859,20
+132813,627603.9411,1411040.572,12274.43638,20
+132814,626504.6956,1407533.337,12657.56311,20
+132815,624809.9277,1408698.863,12950.4366,20
+132816,625067.2738,1402439.174,13203.51214,20
+132817,623847.6764,1403090.807,14887.21072,20
+132818,623243.7168,1398978.921,15648.0845,20
+132819,620944.7274,1396897.252,15808.07606,20
+132820,622416.3207,1396215.131,16400.1712,20
+132821,620384.6736,1393693.169,17067.99489,20
+132822,619946.4735,1389866.908,17427.59191,20
+132823,619503.3428,1389145.142,18054.30728,20
+132824,617780.3487,1388995.646,18547.65247,20
+132825,618547.0779,1383812.091,19221.90451,20
+132826,617193.3108,1383121.074,19806.67277,20
+132827,616560.4143,1381951.124,20402.36938,20
+132828,615929.4608,1379367.747,21136.87445,20
+132829,614438.405,1377936.046,21431.95957,20
+132830,615678.1866,1374488.023,22240.04076,20
+132831,613528.9688,1375169.72,22572.49847,20
+132832,614330.0487,1370980.891,23270.88929,20
+132833,612084.0666,1371384.021,23680.05815,20
+132834,612874.6937,1368768.833,24162.51682,20
+132835,611558.355,1367546.904,24998.40602,20
+132836,611385.9943,1364619.973,24957.21703,20
+132837,610631.6717,1364297.052,26011.94307,20
+132838,609391.4795,1362209.664,26150.56689,20
+132839,610656.0444,1360879.7,26910.97137,20
+132840,598135.9603,1357890.036,27148.38922,21
+132841,1015395.577,2548322.844,22976.6384,21
+132842,1007551.503,2540765.143,22440.20114,21
+132843,1005955.17,2536342.579,22686.20971,21
+132844,1003535.11,2533953.074,23091.73903,21
+132845,1001494.194,2528428.258,23150.19493,21
+132846,1000297.411,2527173.466,23312.11341,21
+132847,997836.9525,2524419.111,23753.63928,21
+132848,996320.0235,2520389.534,23887.36335,21
+132849,993833.5439,2517096.157,24086.17068,21
+132850,994011.65,2514960.903,24355.88563,21
+132851,990756.7461,2511923.306,24760.67789,21
+132852,990055.2252,2507980.796,24742.96442,21
+132853,987734.596,2502302.638,25212.15415,21
+132854,987111.7622,2499781.309,25506.58958,21
+132855,984156.8509,2499186.851,25386.26842,21
+132856,984507.8372,2492727.573,25978.46548,21
+132857,980892.8914,2491605.587,26007.44101,21
+132858,980471.3174,2487216.509,26368.32379,21
+132859,978567.8205,2486354.513,26499.20692,21
+132860,977458.2787,2481886.863,26921.00384,21
+132861,976076.2406,2480946.123,26930.21883,21
+132862,973643.0406,2475288.677,27164.10548,21
+132863,973823.6352,2476199.79,27652.92976,21
+132864,970634.8343,2469418.45,27527.88448,21
+132865,970823.2856,2471453.99,28032.13836,21
+132866,968081.9211,2464549.512,28122.40996,21
+132867,966478.734,2463916.879,28479.93808,21
+132868,966867.8023,2460519.787,27552.86378,21
+132869,964074.0222,2457846.308,27905.15215,21
+132870,962956.2353,2457529.686,27963.04196,21
+132871,961989.4053,2450893.789,28263.53028,21
+132872,961342.3802,2451360.34,28375.98323,21
+132873,958625.0699,2445811.947,28383.65252,21
+132874,957909.0323,2445686.246,28599.94043,21
+132875,955971.2889,2440020.289,28900.38247,21
+132876,954920.163,2439544.126,28961.49744,21
+132877,954590.1481,2434107.962,28940.00214,21
+132878,950831.0012,2432501.416,29337.4801,21
+132879,951671.7649,2430094.745,29286.31635,21
+132880,950576.5406,2425566.368,29542.27529,21
+132881,949611.2332,2424598.393,29719.73181,21
+132882,946938.7911,2420939.637,29866.1866,21
+132883,946430.6913,2417618.388,29921.46834,21
+132884,943349.7796,2414639.711,30184.9473,21
+132885,942724.6377,2412947.43,30238.18029,21
+132886,941146.0634,2409361.705,30326.77951,21
+132887,939631.7632,2405096.289,30621.44747,21
+132888,937409.618,2404290.332,30528.99844,21
+132889,937358.2826,2399922.602,30877.22315,21
+132890,934968.4453,2396118.604,30903.604,21
+132891,933341.0445,2393911.88,30967.78821,21
+132892,932741.5518,2389342.392,31044.93036,21
+132893,930926.0074,2388462.605,31458.08816,21
+132894,928605.5811,2382171.192,31153.47029,21
+132895,928699.6116,2383413.725,31552.64022,21
+132896,926444.8773,2377232.581,31661.37526,21
+132897,924796.4447,2375105.811,31549.4716,21
+132898,923435.9756,2371887.277,31863.2507,21
+132899,920404.2094,2369619.773,31969.22067,21
+132900,920700.8757,2366191.599,32046.04432,21
+132901,716791.4206,2143325.201,1401.280213,21
+132902,708327.2766,2121410.176,812.2866488,21
+132903,702606.6372,2114410.046,765.5010524,21
+132904,698227.5617,2079972.197,733.9624016,21
+132905,693338.0289,2086870.153,702.3040026,21
+132906,688843.4804,2075490.525,702.315123,21
+132907,684501.0977,2067566.844,670.5310109,21
+132908,679134.8532,2059954.855,654.9566961,21
+132909,675608.2868,2052702.172,638.6249412,21
+132910,670427.8905,2045173.275,638.6341154,21
+132911,665939.8203,2036964.815,607.3292144,21
+132912,661824.6645,2031816.659,606.5874526,21
+132913,656774.0226,2023841.071,590.9138389,21
+132914,652525.2092,2017172.608,575.1894051,21
+132915,648362.132,2011084.25,574.400275,21
+132916,643179.0269,2004013.018,559.4200448,21
+132917,639086.5772,1997748.879,534.1616789,21
+132918,634609.3254,1991917.448,542.9041498,21
+132919,630074.2385,1983934.254,527.072107,21
+132920,625510.6902,1979971.361,510.4429288,21
+132921,621189.673,1973019.782,510.4489906,21
+132922,616219.8977,1966030.584,494.5609091,21
+132923,612532.086,1960175.99,477.8148128,21
+132924,608358.0792,1954945.277,478.6204281,21
+132925,605232.6896,1948976.869,477.8250357,21
+132926,601632.6228,1941839.747,445.8679167,21
+132927,598779.5675,1937243.035,453.8852694,21
+132928,595214.7511,1931065.802,428.995434,21
+132929,592508.9636,1924837.199,437.8527152,21
+132930,588464.7882,1919466.014,412.9311123,21
+132931,585699.0813,1912922.394,412.9349079,21
+132932,582883.909,1908760.315,396.8019316,21
+132933,579202.4013,1901431.244,379.7768977,21
+132934,576456.4847,1897871.708,396.8087878,21
+132935,573266.554,1891051.007,330.1071463,21
+132936,570278.2072,1885299.611,372.1163335,21
+132937,567215.4661,1879240.309,330.1121845,21
+132938,563828.3406,1876457.705,313.767397,21
+132939,561403.895,1868573.089,330.1170738,21
+132940,557844.9981,1863679.384,297.3473125,21
+132941,554905.0225,1858909.31,279.944996,21
+132942,552167.6833,1852137.166,288.6772514,21
+132943,548969.0698,1848712.205,263.4417419,21
+132944,546243.9502,1841772.106,245.7783764,21
+132945,543023.7334,1837846.702,255.1589639,21
+132946,540063.4426,1831711.538,229.1870674,21
+132947,537427.7372,1825834.878,212.5010469,21
+132948,534019.8072,1823144.496,194.4679773,21
+132949,531787.8229,1814987.277,212.5029427,21
+132950,528346.3556,1811660.805,177.6820268,21
+132951,526211.7174,1805682.805,160.7859853,21
+132952,522795.8849,1800820.669,169.2491791,21
+132953,520120.7955,1796329.772,133.510728,21
+132954,517171.3595,1790365.799,134.5364857,21
+132955,513891.2528,1784788.052,124.987462,21
+132956,511338.6867,1780580.308,107.8379379,21
+132957,508392.8758,1775751.858,107.8381856,21
+132958,505878.8671,1769681.114,90.53766448,21
+132959,502747.1017,1765669.73,90.53788101,21
+132960,500349.0923,1760023.864,73.06227461,21
+132961,496754.6028,1754629.41,73.06238292,21
+132962,493925.8166,1747704.991,55.37655241,21
+132963,490421.7257,1739451.874,37.42379715,21
+132964,487578.6957,1734096.285,19.09391438,21
+132965,484329.7962,1727354.062,19.09392208,21
+132966,481055.5479,1721591.888,0,21
+132967,477756.586,1715122.694,0,21
+132968,475217.1829,1710375.897,0,21
+132969,471228.4376,1703154.694,0,21
+132970,468033.847,1697880.53,0,21
+132971,465177.0263,1692222.533,0,21
+132972,462873.6563,1686372.511,0,21
+132973,459833.2195,1679774.195,0,21
+132974,456178.0796,1675189.028,0,21
+132975,453521.7145,1667924.178,0,21
+132976,450022.7575,1662546.574,0,21
+132977,446805.7484,1656811.668,0,21
+132978,443990.9823,1650563.671,0,21
+132979,440126.4735,1645256.138,0,21
+132980,437660.729,1639288.584,0,21
+132981,433950.8447,1632998.993,0,21
+132982,431126.8051,1628275.699,0,21
+132983,427608.912,1620133.348,0,21
+132984,424496.6503,1616676.285,0,21
+132985,421185.2631,1608938.714,0,21
+132986,418275.8318,1604805.338,0,21
+132987,414801.2651,1597685.844,0,21
+132988,411571.0227,1593080.306,0,21
+132989,408649.9268,1585546.022,0,21
+132990,404748.3843,1582021.329,0,21
+132991,402164.2421,1573523.495,0,21
+132992,398708.2653,1570131.414,0,21
+132993,395767.4834,1562876.879,0,21
+132994,392073.1148,1557220.962,0,21
+132995,389240.8915,1551668.333,0,21
+132996,386198.9347,1546745.552,0,21
+132997,381329.9822,1540154.2,0,21
+132998,378367.2428,1534985.418,0,21
+132999,375155.9925,1528139.162,0,21
+133000,371733.214,1523541.953,0,21
+133001,368510.127,1516899.927,0,21
+133002,365702.4562,1511958.762,0,21
+133003,361546.6178,1506083.321,0,21
+133004,359472.2602,1500669.493,0,21
+133005,355214.7618,1494500.905,0,21
+133006,352646.1215,1488293.988,0,21
+133007,348681.7587,1483557.628,0,21
+133008,346209.346,1477004.158,0,21
+133009,342330.5597,1471642.623,0,21
+133010,339161.1265,1466397.89,0,21
+133011,335959.6846,1460441.265,0,21
+133012,333075.5991,1454270.18,0,21
+133013,328879.6222,1449563.325,0,21
+133014,326324.7523,1443351.959,0,21
+133015,322734.5899,1437132.214,0,21
+133016,319477.4268,1432745.747,0,21
+133017,315884.1776,1426458.332,0,21
+133018,312707.7741,1419823.731,0,21
+133019,309292.876,1416453.047,0,21
+133020,306073.1771,1408777.771,0,21
+133021,300860.0466,1406816.854,0,21
+133022,297842.2761,1403853.275,0,21
+133023,294707.9156,1398635.475,0,21
+133024,291464.9988,1396806.351,0,21
+133025,288270.2086,1392988.862,0,21
+133026,285026.5476,1388118.412,0,21
+133027,281997.3106,1386160.733,0,21
+133028,278567.9893,1382082.71,0,21
+133029,275629.1528,1377267.874,0,21
+133030,272310.6679,1376166.929,0,21
+133031,269479.8587,1369879.693,0,21
+133032,265791.4278,1368172.932,0,21
+133033,263078.2147,1362751.327,0,21
+133034,259687.4398,1361226.448,0,21
+133035,256312.0127,1356402.529,0,21
+133036,253614.5538,1352373.874,0,21
+133037,250051.4045,1350071.065,0,21
+133038,246936.2757,1344587.011,0,21
+133039,243756.2418,1341704.044,0,21
+133040,240580.2473,1337885.489,0,21
+133041,237431.2091,1334672.658,0,21
+133042,233751.1667,1330160.584,0,21
+133043,230814.0423,1326408.825,0,21
+133044,227836.0812,1324359.174,0,21
+133045,224217.2244,1318396.007,0,21
+133046,220924.9604,1315592.962,0,21
+133047,218012.1323,1311684.912,0,21
+133048,214328.7851,1307643.282,0,21
+133049,211090.6564,1305361.511,0,21
+133050,208208.9306,1299473.073,0,21
+133051,204305.9548,1298059.338,0,21
+133052,201105.3,1293993.055,0,21
+133053,197725.3179,1289916.939,0,21
+133054,194036.4768,1287178.968,0,21
+133055,190332.5909,1284007.68,0,21
+133056,187555.4567,1280455.906,0,21
+133057,183463.1441,1277700.619,0,21
+133058,180083.0891,1274015.014,0,21
+133059,176708.6198,1270489.052,0,21
+133060,173209.7185,1267802.415,0,21
+133061,169354.2806,1264090.539,0,21
+133062,166135.1437,1260443.476,0,21
+133063,162684.011,1258236.058,0,21
+133064,158676.1421,1253595.661,0,21
+133065,155799.7535,1252673.792,0,21
+133066,151719.4868,1247062.981,0,21
+133067,148182.6992,1245438.842,0,21
+133068,145079.2643,1240862.132,0,21
+133069,140932.8321,1239238.268,0,21
+133070,137735.694,1234506.163,0,21
+133071,134799.6494,1232787.398,0,21
+133072,132137.7457,1228259.489,0,21
+133073,129225.0698,1225719.402,0,21
+133074,126571.8713,1223383.539,0,21
+133075,123775.1889,1219298.89,0,21
+133076,121540.8318,1216214.458,0,21
+133077,118799.8943,1214251.894,0,21
+133078,115987.3436,1209174.566,0,21
+133079,113473.4733,1208502.128,0,21
+133080,110539.9013,1204138.421,0,21
+133081,110052.1775,1199744.012,0,21
+133082,108169.3093,1195672.986,0,21
+133083,106101.2505,1193773.119,0,21
+133084,104754.9837,1187561.568,0,21
+133085,102358.5548,1187548.964,0,21
+133086,101056.1686,1182050.358,0,21
+133087,99054.18691,1179037.046,0,21
+133088,97060.61568,1176808.939,0,21
+133089,95446.3936,1172958.621,0,21
+133090,93615.66681,1170051.745,0,21
+133091,91738.48905,1166542.17,0,21
+133092,90091.2195,1164404.686,0,21
+133093,88199.00921,1159933.186,0,21
+133094,86816.03977,1157081.272,0,21
+133095,84874.37962,1154628.066,0,21
+133096,83300.3124,1151429.02,0,21
+133097,81658.63382,1147881.878,0,21
+133098,79941.24065,1146220.679,0,21
+133099,78326.12118,1141264.873,0,21
+133100,76905.40374,1139388.51,0,21
+133101,75234.59612,1134983.708,0,21
+133102,73548.27489,1133204.158,0,21
+133103,72163.59111,1129852.963,0,21
+133104,70680.4824,1127449.959,0,21
+133105,68924.44769,1123695.83,0,21
+133106,67865.96971,1120110.593,0,21
+133107,65882.00738,1119055.979,0,21
+133108,64365.18632,1114898.83,0,21
+133109,63043.99981,1112080.14,0,21
+133110,61506.49807,1109158.408,0,21
+133111,59866.70514,1105356.802,0,21
+133112,58496.09939,1102765.571,0,21
+133113,57040.01667,1099642.067,0,21
+133114,55649.74919,1096706.662,0,21
+133115,54311.46444,1091488.877,0,21
+133116,52501.12245,1089298.919,0,21
+133117,51484.91488,1085651.912,0,21
+133118,49976.71636,1082996.042,0,21
+133119,48472.0337,1078977.902,0,21
+133120,47798.22576,1076297.184,0,21
+133121,46643.00579,1071738.988,0,21
+133122,45053.98072,1069312.281,0,21
+133123,44045.90222,1066207.942,0,21
+133124,43624.88371,1062123.943,0,21
+133125,43280.7694,1059433.555,0,21
+133126,43085.29584,1055039.409,0,21
+133127,42508.93766,1053778.135,0,21
+133128,42128.01814,1048979.101,0,21
+133129,42066.66002,1045503.991,0,21
+133130,41375.60321,1043548.473,0,21
+133131,41221.65767,1038684.918,0,21
+133132,40800.21035,1036214.307,0,21
+133133,40452.6593,1032031.548,0,21
+133134,40161.97468,1029520.522,0,21
+133135,40066.79006,1025461.214,0,21
+133136,39700.70078,1023281.624,0,21
+133137,39429.93506,1018357.692,0,21
+133138,39314.61676,1017198.972,0,21
+133139,39122.43196,1010935.441,0,21
+133140,38771.55789,1010211.803,0,21
+133141,48954.58098,1079602.994,0,21
+133142,48934.96559,1076373.666,0,21
+133143,48613.83175,1072046.47,0,21
+133144,48741.58558,1067797.045,0,21
+133145,48232.92819,1065326.146,0,21
+133146,48272.96524,1059688.825,0,21
+133147,48018.75805,1057733.109,0,21
+133148,47910.84741,1051708.179,0,21
+133149,47547.79211,1047808.922,0,21
+133150,47512.10105,1045859.787,0,21
+133151,143222.0477,1042648.368,0,21
+133152,46850.76504,1039662.225,0,21
+133153,47155.64782,1037651.236,0,21
+133154,46339.72024,1034674.842,0,21
+133155,46472.75207,1031258.478,0,21
+133156,46331.0039,1029286.923,0,21
+133157,45916.447,1025602.919,0,21
+133158,45817.41008,1022875.43,0,21
+133159,45754.29627,1020615.028,0,21
+133160,45428.78649,1017672.647,0,21
+133161,45258.95155,1013922.922,0,21
+133162,45055.31572,1012875.12,0,21
+133163,45075.46458,1009491.281,0,21
+133164,44631.0618,1006253.667,0,21
+133165,44631.05579,1004375.715,0,21
+133166,44366.20753,1000109.805,0,21
+133167,44186.917,999472.4398,0,21
+133168,44014.1043,994534.58,0,21
+133169,43999.81532,992458.107,0,21
+133170,43642.92234,990753.8401,0,21
+133171,43322.0109,987306.7079,0,21
+133172,43365.18613,983789.7236,0,21
+133173,42624.30904,982460.9076,0,21
+133174,42764.25703,979144.4812,0,21
+133175,42075.81039,975735.2464,0,21
+133176,42063.73127,973027.8991,0,21
+133177,41718.63519,971765.5796,0,21
+133178,41355.89274,967052.517,0,21
+133179,40996.00047,965263.9441,0,21
+133180,135585.7507,962910.6605,0,21
+133181,39863.27599,959065.3841,0,21
+133182,39495.64757,957017.4365,0,21
+133183,39351.0263,954008.9884,0,21
+133184,38900.98173,950347.0658,0,21
+133185,38616.56151,948171.5458,0,21
+133186,38252.39039,944821.1549,0,21
+133187,37909.78942,942690.3433,0,21
+133188,37711.01998,939935.5177,0,21
+133189,37041.82157,936322.7002,0,21
+133190,37000.47061,933704.3891,0,21
+133191,36652.57131,930430.049,0,21
+133192,36150.93311,928827.7742,0,21
+133193,35929.13533,924346.3334,0,21
+133194,35580.5825,922151.7012,0,21
+133195,35041.57512,918956.5135,0,21
+133196,34968.41787,916389.8173,0,21
+133197,34474.40483,913365.5433,0,21
+133198,34146.3999,910499.671,0,21
+133199,33667.43699,906842.1549,0,21
+133200,33564.46954,905429.9036,0,21
+133201,22259.86888,833915.6752,0,21
+133202,21632.12608,831175.3105,0,21
+133203,21065.35167,830818.8969,0,21
+133204,20546.82993,827709.9215,0,21
+133205,19990.10275,826870.5299,0,21
+133206,19446.26566,824847.0992,0,21
+133207,18901.43405,823600.008,0,21
+133208,18319.32021,821860.8483,0,21
+133209,112457.7768,819830.1317,0,21
+133210,17189.80032,818588.4343,0,21
+133211,16716.82626,816208.6813,0,21
+133212,16231.56027,815532.1895,0,21
+133213,16076.69637,812796.5496,0,21
+133214,15734.94522,813065.4578,0,21
+133215,15568.67899,809819.0008,0,21
+133216,15225.8973,809392.0896,0,21
+133217,15157.83695,806752.863,0,21
+133218,14711.92508,806135.3131,0,21
+133219,14644.63175,804346.5247,0,21
+133220,14193.03455,801935.5218,0,21
+133221,13922.09687,800951.875,0,21
+133222,13751.47618,799906.6019,0,21
+133223,13410.66451,797852.3632,0,21
+133224,13007.772,796585.1131,0,21
+133225,12870.10148,795785.328,0,21
+133226,12374.0906,793451.0269,0,21
+133227,12338.67238,791221.0076,0,21
+133228,11814.22574,791489.5506,0,21
+133229,11591.90439,788166.658,0,21
+133230,11285.67163,788436.3717,0,21
+133231,10932.18539,785987.7398,0,21
+133232,10752.86285,784192.2042,0,21
+133233,10490.55124,783883.955,0,21
+133234,10121.07423,782492.2026,0,21
+133235,9951.114761,779652.4333,0,21
+133236,9686.418149,779327.341,0,21
+133237,9407.880386,777339.9913,0,21
+133238,9139.877033,775747.9549,0,21
+133239,8870.683028,775294.948,0,21
+133240,8601.066063,773950.5539,0,21
+133241,8414.911652,770844.5183,0,21
+133242,8193.06289,771956.6549,0,21
+133243,7918.696333,767778.698,0,21
+133244,7756.292977,768998.2653,0,21
+133245,7720.154521,765928.0859,0,21
+133246,7581.736259,764797.6767,0,21
+133247,7305.619223,764021.0893,0,21
+133248,7102.455546,761749.2253,0,21
+133249,6760.917042,761160.8047,0,21
+133250,6568.815368,759431.9845,0,21
+133251,6408.282731,758161.1591,0,21
+133252,6131.834071,756666.7287,0,21
+133253,5846.951422,755001.544,0,21
+133254,5793.80213,753459.938,0,21
+133255,5402.781312,753161.4266,0,21
+133256,5335.052235,750418.5721,0,21
+133257,4939.402895,749242.248,0,21
+133258,4764.913501,748519.9423,0,21
+133259,4470.531219,746171.2489,0,21
+133260,4066.109784,744100.8439,0,21
+133261,3795.193777,746730.0154,0,21
+133262,3917.236226,747265.7014,0,21
+133263,3795.193785,748618.0709,0,21
+133264,3917.236233,746950.4912,0,21
+133265,3645.191859,747565.8652,0,21
+133266,3917.236239,746752.7682,0,21
+133267,3631.422858,746250.8584,0,21
+133268,3658.930236,746525.717,0,21
+133269,3753.978386,745491.7326,0,21
+133270,3617.622917,745705.9684,0,21
+133271,3508.334561,744773.5288,0,21
+133272,3617.622919,744944.4319,0,21
+133273,3080.256649,745083.6082,0,21
+133274,3329.303273,743713.0636,0,21
+133275,3066.329725,743708.4704,0,21
+133276,2926.910278,743652.1604,0,21
+133277,3052.370201,742838.2988,0,21
+133278,2772.764606,742845.4445,0,21
+133279,2772.764606,742966.6271,0,21
+133280,2490.198589,740972.2703,0,21
+133281,2603.621527,742144.4027,0,21
+133282,2218.442468,741964.5521,0,21
+133283,2175.87091,741179.4766,0,21
+133284,1900.260616,740698.7649,0,21
+133285,1591.446457,740461.998,0,21
+133286,1456.529984,739713.4553,0,21
+133287,1138.073146,740503.0973,0,21
+133288,967.9161364,738939.492,0,21
+133289,656.8247116,739137.0072,0,21
+133290,612.7039802,739744.7375,0,21
+133291,583.0694183,737896.3266,0,21
+133292,553.2503567,739981.1565,0,21
+133293,493.0274836,737079.9901,0,21
+133294,477.8434918,737531.5274,0,21
+133295,431.9631155,738083.5582,0,21
+133296,385.5578591,736671.6844,0,21
+133297,354.3052896,737589.3744,0,21
+133298,306.9077449,736461.4225,0,21
+133299,242.6174687,736526.0406,0,21
+133300,226.3237171,736030.4722,0,21
+133301,160.0929305,735586.7157,0,21
+133302,109.051112,736041.499,0,21
+133303,74.13081842,734932.5677,0,21
+133304,0,734787.8202,0,21
+133305,0,734540.4363,0,21
+133306,0,734273.4338,0,21
+133307,0,734136.4584,0,21
+133308,0,733912.1317,0,21
+133309,0,732967.3235,0,21
+133310,0,732516.9641,0,21
+133311,0,733108.982,0,21
+133312,0,731933.02,0,21
+133313,0,732085.3021,0,21
+133314,0,731644.1059,0,21
+133315,0,730855.4455,0,21
+133316,0,731583.672,0,21
+133317,0,729052.3907,0,21
+133318,0,731280.6963,0,21
+133319,0,728946.5503,0,21
+133320,0,729185.3912,0,21
+133321,0,726025.8696,0,21
+133322,0,725761.9128,0,21
+133323,0,723668.1323,0,21
+133324,0,722400.4163,0,21
+133325,0,721722.3879,0,21
+133326,0,719358.3064,0,21
+133327,0,718053.4485,0,21
+133328,0,718210.0116,0,21
+133329,0,716473.9331,0,21
+133330,0,714808.7219,0,21
+133331,0,714707.3203,0,21
+133332,0,712075.0666,0,21
+133333,0,711117.5916,0,21
+133334,0,709713.9893,0,21
+133335,0,708561.2597,0,21
+133336,0,707279.0307,0,21
+133337,0,705451.0928,0,21
+133338,0,703990.7959,0,21
+133339,0,703340.019,0,21
+133340,0,701620.72,0,21
+133341,0,700175.4468,0,21
+133342,0,698923.5225,0,21
+133343,0,697679.3575,0,21
+133344,0,695763.0938,0,21
+133345,0,694185.0044,0,21
+133346,0,694049.5891,0,21
+133347,0,690407.351,0,21
+133348,0,690830.6455,0,21
+133349,0,689938.8378,0,21
+133350,0,686743.2348,0,21
+133351,0,686503.5674,0,21
+133352,0,683981.7284,0,21
+133353,0,683641.8184,0,21
+133354,0,681327.299,0,21
+133355,0,679950.8643,0,21
+133356,0,678992.3028,0,21
+133357,0,677616.7077,0,21
+133358,0,676427.8208,0,21
+133359,0,675442.3238,0,21
+133360,0,674130.6886,0,21
+133361,0,671314.8428,0,21
+133362,0,670408.7563,0,21
+133363,0,669005.8144,0,21
+133364,0,667880.2112,0,21
+133365,0,666710.558,0,21
+133366,0,665438.5599,0,21
+133367,0,664445.4911,0,21
+133368,0,663160.6468,0,21
+133369,0,661657.3542,0,21
+133370,0,660853.106,0,21
+133371,0,659462.0846,0,21
+133372,0,658241.3353,0,21
+133373,0,657114.8881,0,21
+133374,0,655792.9976,0,21
+133375,0,654981.098,0,21
+133376,0,653396.3575,0,21
+133377,0,652320.2773,0,21
+133378,0,651009.946,0,21
+133379,0,649861.0859,0,21
+133380,0,648708.8667,0,21
+133381,0,647662.248,0,21
+133382,0,646535.9004,0,21
+133383,0,645125.7576,0,21
+133384,0,644193.7923,0,21
+133385,0,643508.8962,0,21
+133386,0,641851.4852,0,21
+133387,0,642367.3795,0,21
+133388,0,641223.0268,0,21
+133389,0,640484.8848,0,21
+133390,0,639805.8176,0,21
+133391,0,639671.5121,0,21
+133392,0,638379.64,0,21
+133393,0,637590.4986,0,21
+133394,0,636160.4439,0,21
+133395,0,635947.3961,0,21
+133396,0,634332.6911,0,21
+133397,0,633523.9737,0,21
+133398,0,632832.9748,0,21
+133399,0,631445.5085,0,21
+133400,0,630820.0473,0,21
+133401,0,629578.6215,0,21
+133402,0,628713.2738,0,21
+133403,0,627896.1196,0,21
+133404,0,626813.3187,0,21
+133405,0,625862.9978,0,21
+133406,0,624764.3002,0,21
+133407,0,624076.3795,0,21
+133408,0,622624.6477,0,21
+133409,0,622376.7052,0,21
+133410,0,620830.4867,0,21
+133411,0,619983.887,0,21
+133412,0,619414.8846,0,21
+133413,0,618315.5539,0,21
+133414,0,617680.3129,0,21
+133415,0,616443.2204,0,21
+133416,0,615773.4581,0,21
+133417,0,615222.2788,0,21
+133418,0,613834.0338,0,21
+133419,0,613457.9419,0,21
+133420,0,612580.7535,0,21
+133421,0,611544.5765,0,21
+133422,0,611094.7481,0,21
+133423,0,609995.5639,0,21
+133424,0,609139.8114,0,21
+133425,0,608948.5794,0,21
+133426,0,607656.5254,0,21
+133427,0,607178.381,0,21
+133428,0,606256.9182,0,21
+133429,0,605667.3188,0,21
+133430,0,604775.8635,0,21
+133431,0,604295.2973,0,21
+133432,0,603461.1082,0,21
+133433,0,602689.0113,0,21
+133434,0,601641.6698,0,21
+133435,0,601861.561,0,21
+133436,0,600145.984,0,21
+133437,0,599840.2162,0,21
+133438,0,599220.0558,0,21
+133439,0,598328.23,0,21
+133440,0,597873.3616,0,21
+133441,4705.315336,639305.3566,0,21
+133442,14963.05449,652126.0613,0,21
+133443,10678.05294,768361.8076,0,21
+133444,11764.68988,762756.5705,0,21
+133445,12304.8678,740253.53,0,21
+133446,12433.88116,753952.1141,0,21
+133447,12858.52638,755301.0638,0,21
+133448,13978.31147,756388.0717,0,21
+133449,13616.87882,758216.1732,0,21
+133450,14230.65399,759622.7922,0,21
+133451,14294.95898,760368.938,0,21
+133452,14751.6309,761604.0458,0,21
+133453,15012.41929,763347.0467,0,21
+133454,15257.43056,764148.6301,0,21
+133455,15415.88126,765438.0376,0,21
+133456,15759.63533,766076.2847,0,21
+133457,19961.25683,768520.7105,0,21
+133458,19141.17402,767797.9628,0,21
+133459,19601.86373,770578.2577,0,21
+133460,20423.06736,770325.2611,0,21
+133461,21122.94133,771590.5389,0,21
+133462,21372.27239,773170.2154,0,21
+133463,22168.00879,773515.197,0,21
+133464,22504.54388,774700.7367,0,21
+133465,23109.28554,777213.8275,0,21
+133466,23534.88785,776203.1409,0,21
+133467,24318.18088,779107.1002,0,21
+133468,24553.03187,778980.0642,0,21
+133469,25041.78673,780089.3076,0,21
+133470,25763.6646,781311.5425,0,21
+133471,26045.58116,782150.9673,0,21
+133472,26645.66694,784377.1335,0,21
+133473,26967.93216,784117.8831,0,21
+133474,27730.19147,787255.7054,0,21
+133475,27942.61346,796369.9542,0,21
+133476,28442.89207,794334.4702,0,21
+133477,28923.07053,797341.2665,0,21
+133478,29310.74217,799471.9057,0,21
+133479,29999.01633,802788.142,0,21
+133480,30278.04643,804200.933,0,21
+133481,30703.28092,806782.2913,0,21
+133482,31138.61548,809606.7164,0,21
+133483,31649.7354,811747.5805,0,21
+133484,32029.18295,812473.3981,0,21
+133485,32408.17409,816604.8311,0,21
+133486,32975.27703,817521.7962,0,21
+133487,33441.75328,820599.7412,0,21
+133488,33746.62363,821662.9146,0,21
+133489,34117.20546,825214.3525,0,21
+133490,34681.35273,825420.6117,0,21
+133491,35056.45938,829403.2287,0,21
+133492,35518.31403,831176.3034,0,21
+133493,35805.47367,832655.1798,0,21
+133494,36359.3913,835562.4045,0,21
+133495,36716.08581,837565.2712,0,21
+133496,37128.18049,838512.667,0,21
+133497,37440.82867,841193.3257,0,21
+133498,38029.62878,846751.1166,0,21
+133499,38377.92714,847171.1235,0,21
+133500,38758.01644,850823.8923,0,21
+133501,47828.43576,913773.4872,0,21
+133502,49194.21753,916599.0462,0,21
+133503,49797.9121,922637.0642,0,21
+133504,50512.41591,923437.281,0,21
+133505,50984.83802,928446.9156,0,21
+133506,52239.25979,928112.0027,0,21
+133507,52371.48507,932855.2854,0,21
+133508,53396.53058,933409.7552,0,21
+133509,53634.73672,936864.719,0,21
+133510,54446.58009,937900.2569,0,21
+133511,55255.00232,941972.8845,0,21
+133512,55319.69467,942825.0109,0,21
+133513,56609.74857,945658.7014,0,21
+133514,56623.19898,948544.3811,0,21
+133515,57617.80859,949072.7583,0,21
+133516,57920.10707,953572.2934,0,21
+133517,58602.33908,952845.9011,0,21
+133518,59388.96508,957603.7558,0,21
+133519,59599.61552,958261.4297,0,21
+133520,60589.78372,960471.7067,0,21
+133521,61517.04816,962911.9881,0,21
+133522,61868.88948,964422.9902,0,21
+133523,62758.92906,966336.1513,0,21
+133524,63165.01466,970026.906,0,21
+133525,64200.34564,969543.3393,0,21
+133526,65103.22595,973359.0922,0,21
+133527,65512.91857,974801.9596,0,21
+133528,66459.6602,976535.7081,0,21
+133529,67057.35291,979734.8764,0,21
+133530,67901.11768,979813.712,0,21
+133531,70801.85312,982739.0285,0,21
+133532,74675.60451,982652.9309,0,21
+133533,73837.83224,986398.2783,0,21
+133534,75781.50636,986427.7179,0,21
+133535,76732.11483,987987.2243,0,21
+133536,77981.22131,988936.2259,0,21
+133537,79173.15941,991604.1304,0,21
+133538,80501.92253,991859.463,0,21
+133539,81294.70465,993814.2525,0,21
+133540,82494.93603,995184.9251,0,21
+133541,83688.64739,996669.4326,0,21
+133542,84598.55744,997578.2482,0,21
+133543,85865.30421,999032.5897,0,21
+133544,86859.07847,999849.8508,0,21
+133545,87894.43143,1002442.761,0,21
+133546,89069.64222,1001936.868,0,21
+133547,90593.04734,1004171.813,0,21
+133548,91394.86227,1005767.844,0,21
+133549,93200.95028,1006057.528,0,21
+133550,99162.48576,1007996.121,0,21
+133551,98267.86769,1008539.679,0,21
+133552,100527.4058,1009534.157,0,21
+133553,102303.7749,1011944.533,0,21
+133554,104127.7909,1012017.311,0,21
+133555,105579.5638,1013728.326,0,21
+133556,108868.1045,1013697.654,0,21
+133557,112118.9713,1015956.636,0,21
+133558,114862.3187,1017730.33,0,21
+133559,119138.0032,1017389.137,0,21
+133560,121742.3212,1019613.18,0,21
+133561,123316.8406,1020285.208,0,21
+133562,124655.2232,1024123.097,0,21
+133563,126004.1837,1025712.899,0,21
+133564,127128.9003,1025876.591,0,21
+133565,128606.064,1030125.593,0,21
+133566,129803.146,1030410.124,0,21
+133567,131066.0891,1032173.139,0,21
+133568,132278.2154,1035311.882,0,21
+133569,133528.8454,1036221.903,0,21
+133570,134694.0777,1036913.29,0,21
+133571,136346.2368,1041025.814,0,21
+133572,136738.6126,1040035.661,0,21
+133573,139169.9899,1044150.191,0,21
+133574,139432.3941,1044255.517,0,21
+133575,141210.7474,1047340.72,0,21
+133576,142459.6924,1048818.938,0,21
+133577,143609.3336,1048596.915,0,21
+133578,144757.4573,1053545.809,0,21
+133579,146152.6792,1052447.336,0,21
+133580,147334.3754,1054935.303,0,21
+133581,149609.1325,1058919.855,0,21
+133582,150728.12,1057699.237,0,21
+133583,151875.4286,1060402.926,0,21
+133584,153463.6378,1062366.052,0,21
+133585,154628.4,1063075.395,0,21
+133586,155841.303,1066402.606,0,21
+133587,157688.1375,1066401.704,0,21
+133588,158167.4442,1068859.639,0,21
+133589,160135.4463,1070848.884,844.0172673,21
+133590,160868.4971,1070883.335,1375.556068,21
+133591,162455.5521,1074051.464,1244.048655,21
+133592,163238.5296,1075580.277,1506.425505,21
+133593,164272.4877,1077404.211,1765.990671,21
+133594,165388.2995,1080476.954,1894.874102,21
+133595,166196.8892,1082331.394,2023.1902,21
+133596,167218.8128,1083419.676,2278.134844,21
+133597,168126.5909,1086379.463,2404.920124,21
+133598,173843.6517,1088456.499,2531.246337,21
+133599,176054.7201,1089282.121,2782.436299,21
+133600,176851.773,1090570.108,2907.494087,21
+133601,178731.4618,1094210.797,3032.165223,21
+133602,179177.5354,1093662.826,3280.171955,21
+133603,180333.4749,1097574.941,3403.757445,21
+133604,181542.5379,1097525.73,3527.008829,21
+133605,182663.5688,1100573.337,3649.937135,21
+133606,183966.5997,1100877.223,4016.188252,21
+133607,184693.5666,1104123.834,3894.885772,21
+133608,186263.0306,1105797.836,4259.31164,21
+133609,186804.6043,1106445.042,4380.47638,21
+133610,188426.4493,1108552.179,4380.909599,21
+133611,189093.8881,1111179.982,4741.92076,21
+133612,189983.0606,1111859.635,4742.428997,21
+133613,191375.3267,1114366.651,4981.964888,21
+133614,192165.0125,1115863.269,5101.646457,21
+133615,193306.2017,1117116.312,5784.71907,21
+133616,194115.0684,1119935.783,6297.515895,21
+133617,195494.3382,1120858.254,6106.68236,21
+133618,195875.136,1123548.115,6524.748907,21
+133619,197301.0307,1124715.538,6642.222621,21
+133620,198087.9819,1127490.868,6800.373115,21
+133621,202222.3911,1135222.741,7452.262268,21
+133622,204318.9236,1139343.669,7944.368834,21
+133623,206285.1199,1142519.027,8091.707177,21
+133624,207244.7952,1143183.846,8223.035127,21
+133625,209261.8385,1145256.462,8499.182734,21
+133626,210510.4694,1148533.257,8727.768134,21
+133627,212572.5768,1151317.517,8889.278243,21
+133628,213562.1497,1151172.566,8891.070816,21
+133629,215759.7161,1155694.979,9390.300581,21
+133630,216886.8444,1155234.741,9407.625345,21
+133631,218491.2076,1160545.272,9537.331686,21
+133632,220108.2572,1160109.703,9921.30444,21
+133633,221745.2247,1163173.983,9923.534126,21
+133634,222995.0532,1165412.159,10067.82602,21
+133635,224668.4008,1167015.986,10434.70741,21
+133636,226418.412,1169382.366,10452.19011,21
+133637,227390.6648,1172149.538,10706.85711,21
+133638,229224.7745,1172234.267,10724.37544,21
+133639,238928.81,1176818.616,11199.523,21
+133640,236756.8698,1177078.089,10996.0657,21
+133641,239854.9791,1180025.429,11470.13599,21
+133642,242084.8057,1181198.272,11487.85994,21
+133643,244571.3499,1183982.605,11740.32291,21
+133644,245232.1038,1185242.602,11758.1039,21
+133645,248982.68,1188791.341,12104.98653,21
+133646,249889.8867,1189500.919,12152.08695,21
+133647,251784.7537,1192888.22,12374.19054,21
+133648,254480.799,1193255.825,12515.914,21
+133649,255775.1558,1196077.213,12657.50076,21
+133650,258304.8611,1199081.798,12784.52349,21
+133651,260243.6545,1199094.309,13020.20116,21
+133652,261576.7022,1203654.831,13161.40634,21
+133653,264237.3384,1201668.546,13288.14716,21
+133654,265781.4857,1206734.199,13537.40795,21
+133655,268113.0549,1206194.758,13555.79878,21
+133656,269152.8641,1209190.65,13804.66499,21
+133657,271481.7162,1209573.521,13931.08984,21
+133658,273192.0718,1213523.382,14057.46807,21
+133659,274508.5027,1214173.606,14305.58427,21
+133660,277255.0792,1217094.49,14338.42349,21
+133661,278790.3708,1218885.689,14557.93576,21
+133662,280784.3726,1220231.158,14698.16809,21
+133663,281520.4395,1222355.253,14838.31087,21
+133664,284896.7168,1223580.584,15071.33835,21
+133665,285923.0925,1225312.725,15090.38032,21
+133666,287705.6958,1226577.894,15337.14968,21
+133667,288841.8686,1228775.728,15356.30313,21
+133668,291573.8942,1230478.27,15709.27249,21
+133669,293552.2674,1231607.645,15608.154,21
+133670,294075.5125,1232926.542,16080.77549,21
+133671,296665.8615,1234895.514,16063.16683,21
+133672,299059.2457,1235445.487,16527.00704,21
+133673,299234.2695,1238483.899,16362.20847,21
+133674,302036.61,1239967.1,16871.76181,21
+133675,303362.2164,1238836.231,16908.00568,21
+133676,305439.019,1243519.876,17066.1586,21
+133677,306385.2494,1244536.741,17251.55896,21
+133678,308465.9277,1244757.054,17487.42337,21
+133679,310939.0521,1245840.005,17580.5586,21
+133680,310764.7994,1248998.056,17816.02427,21
+133681,313302.6023,1250613.79,18000.56213,21
+133682,314625.1569,1253163.263,18035.3942,21
+133683,315298.5712,1256892.438,18271.4125,21
+133684,316477.5698,1257125.598,18489.20125,21
+133685,316852.0269,1261135.748,18561.55381,21
+133686,318170.4934,1261226.542,18650.63697,21
+133687,318330.831,1265191.323,18975.74483,21
+133688,320014.2871,1267039.656,18957.02502,21
+133689,320016.3565,1267938.801,19208.68764,21
+133690,321235.2084,1271273.846,19250.73682,21
+133691,322204.2746,1273685.683,19554.18082,21
+133692,322192.0817,1275446.774,19573.04561,21
+133693,323831.7706,1277755.521,19639.82393,21
+133694,323886.657,1279756.61,19895.07962,21
+133695,325116.8143,1281357.497,20168.10148,21
+133696,325694.2372,1284737.897,20019.94681,21
+133697,326181.2165,1285494.657,20252.58431,21
+133698,327569.204,1288670.971,20537.31487,21
+133699,327977.4231,1291528.35,20599.76182,21
+133700,327791.6893,1290793.094,20636.85566,21
+133701,329875.8532,1295736.796,20879.83353,21
+133702,329996.2983,1296484.136,20966.09485,21
+133703,331032.9628,1299903.162,21205.66671,21
+133704,331198.2979,1300851.248,21051.06761,21
+133705,332139.7093,1303573.298,21534.63429,21
+133706,333069.5772,1305229.039,21557.60927,21
+133707,333756.3719,1308699.725,21631.7292,21
+133708,333209.1632,1308780.864,21671.01887,21
+133709,336208.9337,1312289.313,21925.47995,21
+133710,335106.7341,1313214.982,22197.78068,21
+133711,336453.0653,1316313.967,22025.82644,21
+133712,336631.8891,1318675.097,22308.56992,21
+133713,337865.6594,1320842.949,23664.18905,21
+133714,337593.8065,1320915.111,23598.25935,21
+133715,339637.4696,1326467.066,23789.44269,21
+133716,339643.2241,1325567.874,24423.87115,21
+133717,339748.2357,1328551.977,24472.73237,21
+133718,340739.3022,1330629.792,24920.52874,21
+133719,342348.3912,1333145.43,25062.1929,21
+133720,341249.4864,1334873.268,25488.87787,21
+133721,343588.3907,1336820.449,25867.293,21
+133722,342618.0046,1340151.79,25866.94985,21
+133723,344910.2394,1340249.262,26437.13825,21
+133724,344105.2394,1343502.724,26420.38151,21
+133725,345144.6421,1345947.15,26927.23709,21
+133726,346420.9141,1346818.508,27387.0635,21
+133727,346013.986,1350701.488,27704.87908,21
+133728,346837.008,1350359.875,28235.70887,21
+133729,347871.1994,1354828.64,28270.49491,21
+133730,348465.1298,1354972.446,28859.72719,21
+133731,348852.5934,1358681.295,28926.26823,21
+133732,349728.4573,1359247.628,29629.15007,21
+133733,349413.4,1362035.081,29507.07771,21
+133734,350647.8945,1364793.444,30058.52369,21
+133735,351935.1105,1365461.254,30420.2766,21
+133736,351292.1684,1368671.104,30741.17246,21
+133737,352707.1214,1369337.23,30948.43182,21
+133738,352903.8048,1373289.139,31288.02032,21
+133739,353131.1801,1374493.72,31618.12846,21
+133740,355964.6556,1375870.21,31971.88316,21
+133741,83250.34451,0,0,21
+133742,0,0,0,21
+133743,0,0,0,21
+133744,0,67.68935644,0,21
+133745,0,0,0,21
+133746,0,0,909599.4747,21
+133747,339583.728,0,0,21
+133748,0,0,0,21
+133749,0,359.4555546,0,21
+133750,0,0,0,21
+133751,0,0,0,21
+133752,0,0,0,21
+133753,0,2.682554094,0,21
+133754,0,0,0,21
+133755,0,106.0750187,0,21
+133756,0,0,0,21
+133757,0,0,0,21
+133758,0,0,0,21
+133759,0,7.531224569,0,21
+133760,0,0,0,21
+133761,0,100.8680543,0,21
+133762,0,0,0,21
+133763,0,0,0,21
+133764,0,0,0,21
+133765,0,2.581867723,0,21
+133766,0,0,0,21
+133767,0,0,0,21
+133768,0,212.0785829,0,21
+133769,0,0,0,21
+133770,0,0,0,21
+133771,0,29552.36029,0,21
+133772,0,0,0,21
+133773,0,2784.030033,0,21
+133774,0,10566.54034,0,21
+133775,0,11278.13521,0,21
+133776,0,11012.68879,0,21
+133777,0,11195.9042,0,21
+133778,0,11957.18052,0,21
+133779,0,12310.23624,0,21
+133780,0,12710.79589,0,21
+133781,0,13108.5475,889807.8979,21
+133782,0,13427.05471,0,21
+133783,339583.8223,13815.90346,0,21
+133784,0,14172.84002,0,21
+133785,0,14516.789,0,21
+133786,0,14831.98676,0,21
+133787,0,15231.63705,0,21
+133788,0,383475.7836,0,21
+133789,0,15858.232,0,21
+133790,0,16229.35376,0,21
+133791,0,16533.73732,0,21
+133792,0,16844.62052,0,21
+133793,0,17158.50802,0,21
+133794,0,17493.33333,0,21
+133795,0,17796.13062,0,21
+133796,0,18106.73188,0,21
+133797,0,18404.83256,0,21
+133798,0,18759.73099,0,21
+133799,0,18962.55697,0,21
+133800,0,19358.19705,0,15.6
+133801,0,268730.6751,0,15.6
+133802,0,0,0,15.6
+133803,0,21433.94934,0,15.6
+133804,0,143859.3248,0,15.6
+133805,0,73002.58615,0,15.6
+133806,0,88584.32001,0,15.6
+133807,0,92376.40032,0,15.6
+133808,0,101201.3173,0,15.6
+133809,0,100067.4152,0,15.6
+133810,0,100650.1442,0,15.6
+133811,0,102471.8361,0,15.6
+133812,0,103290.734,0,15.6
+133813,0,104234.8939,0,15.6
+133814,0,105007.4242,0,15.6
+133815,0,106068.0709,0,15.6
+133816,0,106583.7596,871632.2117,15.6
+133817,0,107161.9101,0,15.6
+133818,0,108428.9643,0,15.6
+133819,0,108860.9511,0,15.6
+133820,339592.2768,109376.6109,0,15.6
+133821,0,110357.0889,0,15.6
+133822,0,110777.0765,0,15.6
+133823,0,111406.3027,0,15.6
+133824,0,112116.4672,0,15.6
+133825,0,112634.0965,0,15.6
+133826,0,113289.9661,0,15.6
+133827,0,113788.9055,0,15.6
+133828,0,114030.761,0,15.6
+133829,0,114725.8713,0,15.6
+133830,0,116144.2352,0,15.6
+133831,0,20996.44992,0,15.6
+133832,0,21057.34394,0,15.6
+133833,0,21031.4927,0,15.6
+133834,0,0,0,15.6
+133835,0,0,0,15.6
+133836,0,0,0,15.6
+133837,0,69210.76242,0,15.6
+133838,0,311496.5267,0,15.6
+133839,0,32301.60726,0,15.6
+133840,0,450792.3573,0,15.6
+133841,0,160004.5006,0,15.6
+133842,0,112334.4098,0,15.6
+133843,0,120597.5407,0,15.6
+133844,0,121311.1038,0,15.6
+133845,0,121466.7976,0,15.6
+133846,0,121395.7131,0,15.6
+133847,0,121704.4639,0,15.6
+133848,0,121662.9129,0,15.6
+133849,0,121725.9283,0,15.6
+133850,0,121658.2944,0,15.6
+133851,0,122218.6857,854140.7874,15.6
+133852,0,121697.3522,0,15.6
+133853,0,122136.3962,0,15.6
+133854,0,122059.9477,0,15.6
+133855,0,121923.3736,0,15.6
+133856,0,122175.4867,0,15.6
+133857,339609.6279,121718.7303,0,15.6
+133858,0,122506.2216,0,15.6
+133859,0,121653.8037,0,15.6
+133860,0,122314.2189,0,15.6
+133861,0,126329.9933,0,15.6
+133862,0,127880.7419,0,15.6
+133863,0,130618.5367,0,15.6
+133864,0,131869.5108,0,15.6
+133865,0,134239.31,0,15.6
+133866,0,136216.0109,0,15.6
+133867,0,115604.1231,0,15.6
+133868,0,0,0,15.6
+133869,0,0,0,15.6
+133870,0,76868.86704,0,15.6
+133871,0,8675.846595,0,15.6
+133872,0,14825.70813,0,15.6
+133873,0,423392.8908,0,15.6
+133874,0,53604.58061,0,15.6
+133875,0,123144.8029,0,15.6
+133876,0,188381.2367,0,15.6
+133877,0,152051.9996,0,15.6
+133878,0,159237.0219,0,15.6
+133879,0,161078.5746,0,15.6
+133880,0,163044.4981,0,15.6
+133881,0,164524.6006,0,15.6
+133882,0,166522.4815,0,15.6
+133883,0,168339.604,0,15.6
+133884,0,169707.1933,0,15.6
+133885,0,171926.5419,0,15.6
+133886,0,173275.308,838767.1918,15.6
+133887,0,175191.9973,0,15.6
+133888,0,177005.2107,0,15.6
+133889,0,178529.6042,0,15.6
+133890,0,180435.2135,0,15.6
+133891,0,181899.1842,0,15.6
+133892,0,184008.2686,0,15.6
+133893,0,553616.7093,0,15.6
+133894,339699.767,186987.4487,0,15.6
+133895,0,189371.9488,0,15.6
+133896,0,190179.0284,0,15.6
+133897,0,192571.6978,0,15.6
+133898,0,194382.9179,0,15.6
+133899,0,195635.5768,0,15.6
+133900,0,169056.7548,0,15.6
+133901,0,170286.1557,0,15.6
+133902,0,253763.2294,0,15.6
+133903,0,11238.45299,0,15.6
+133904,0,27031.85043,0,15.6
+133905,0,32897.79995,0,15.6
+133906,0,581319.567,0,15.6
+133907,0,64719.75489,0,15.6
+133908,0,195858.1485,0,15.6
+133909,0,241953.8595,0,15.6
+133910,0,211307.7654,0,15.6
+133911,0,216107.347,0,15.6
+133912,0,218364.2568,0,15.6
+133913,0,219414.8836,0,15.6
+133914,0,221399.6297,0,15.6
+133915,0,222774.0334,0,15.6
+133916,0,224614.4064,0,15.6
+133917,0,226019.7181,0,15.6
+133918,0,227882.6018,0,15.6
+133919,0,229496.5869,0,15.6
+133920,0,230796.3579,0,15.6
+133921,0,231220.8075,0,15.6
+133922,0,231871.5944,824628.5945,15.6
+133923,0,231905.1607,0,15.6
+133924,0,232484.8638,0,15.6
+133925,0,232626.5668,0,15.6
+133926,0,232818.7415,0,15.6
+133927,0,233785.959,0,15.6
+133928,0,233353.65,0,15.6
+133929,0,234267.1639,0,15.6
+133930,0,234161.9592,0,15.6
+133931,339794.8702,234740.4952,0,15.6
+133932,0,202462.675,0,15.6
+133933,0,202967.9212,0,15.6
+133934,0,295965.7202,0,15.6
+133935,0,220320.3239,0,15.6
+133936,0,26424.02692,0,15.6
+133937,0,37742.87659,0,15.6
+133938,0,32187.5353,0,15.6
+133939,0,694801.4048,0,15.6
+133940,0,112287.0658,0,15.6
+133941,0,166155.3601,0,15.6
+133942,0,296585.3684,0,15.6
+133943,0,230715.3219,0,15.6
+133944,0,607779.1211,0,15.6
+133945,0,239773.7323,0,15.6
+133946,0,240570.238,0,15.6
+133947,0,240015.608,0,15.6
+133948,0,241209.6781,0,15.6
+133949,0,240495.9642,0,15.6
+133950,0,241201.7408,0,15.6
+133951,0,241288.6439,0,15.6
+133952,0,241427.9708,0,15.6
+133953,0,241533.5562,0,15.6
+133954,0,241907.4075,0,15.6
+133955,0,241786.6726,0,15.6
+133956,0,242515.5347,0,15.6
+133957,0,242000.2173,0,15.6
+133958,0,242699.3474,811371.6645,15.6
+133959,0,243017.1788,0,15.6
+133960,0,242619.5433,0,15.6
+133961,0,243629.6823,0,15.6
+133962,0,243115.9914,0,15.6
+133963,0,243700.0897,0,15.6
+133964,0,210542.9262,0,15.6
+133965,0,210832.0249,0,15.6
+133966,0,306415.0464,0,15.6
+133967,0,229147.4037,0,15.6
+133968,339902.3991,237443.9132,0,15.6
+133969,0,38821.46146,0,15.6
+133970,0,32764.40753,0,15.6
+133971,0,33415.66182,0,15.6
+133972,0,729811.2883,0,15.6
+133973,0,122698.5357,0,15.6
+133974,0,158394.3833,0,15.6
+133975,0,312088.3981,0,15.6
+133976,0,237157.0851,0,15.6
+133977,0,246344.8355,0,15.6
+133978,0,246566.7524,0,15.6
+133979,0,247187.3393,0,15.6
+133980,0,246886.5214,0,15.6
+133981,0,246332.2567,0,15.6
+133982,0,246488.9131,0,15.6
+133983,0,245647.6764,0,15.6
+133984,0,245334.9044,0,15.6
+133985,0,245175.2177,0,15.6
+133986,0,244837.0093,0,15.6
+133987,0,244178.748,0,15.6
+133988,0,243773.852,0,15.6
+133989,0,243422.0849,0,15.6
+133990,0,243133.6905,0,15.6
+133991,0,242830.9149,0,15.6
+133992,0,242372.9039,0,15.6
+133993,0,242128.6928,0,15.6
+133994,0,608977.3625,798893.7331,15.6
+133995,0,241590.7937,0,15.6
+133996,0,208152.7534,0,15.6
+133997,0,207597.692,0,15.6
+133998,0,301637.8655,0,15.6
+133999,0,224385.1172,0,15.6
+134000,0,231635.9037,0,15.6
+134001,0,244853.0733,0,15.6
+134002,0,31883.21818,0,15.6
+134003,0,32427.33478,0,15.6
+134004,0,32403.813,0,15.6
+134005,339982.5486,712190.7834,0,15.6
+134006,0,106120.7476,0,15.6
+134007,0,158218.0771,0,15.6
+134008,0,299377.5574,0,15.6
+134009,0,227393.2031,0,15.6
+134010,0,235940.7519,0,15.6
+134011,0,236186.824,0,15.6
+134012,0,235607.811,0,15.6
+134013,0,234980.4672,0,15.6
+134014,0,235086.8342,0,15.6
+134015,0,233854.0054,0,15.6
+134016,0,233793.9876,0,15.6
+134017,0,233385.1533,0,15.6
+134018,0,232912.8546,0,15.6
+134019,0,232204.8244,0,15.6
+134020,0,231811.1043,0,15.6
+134021,0,231616.1679,0,15.6
+134022,0,230703.9198,0,15.6
+134023,0,230539.8835,0,15.6
+134024,0,230522.5141,0,15.6
+134025,0,228947.3572,0,15.6
+134026,0,229693.3963,0,15.6
+134027,0,228588.5062,0,15.6
+134028,0,197285.6034,0,15.6
+134029,0,196602.7696,0,15.6
+134030,0,286816.0219,788320.9149,15.6
+134031,0,210336.5088,0,15.6
+134032,0,220602.7712,0,15.6
+134033,0,231565.4973,0,15.6
+134034,0,225267.845,0,15.6
+134035,0,30861.37546,0,15.6
+134036,0,30861.37504,0,15.6
+134037,0,30825.50924,0,15.6
+134038,0,673118.3497,0,15.6
+134039,0,80206.69232,0,15.6
+134040,0,165048.0612,0,15.6
+134041,0,276646.7539,0,15.6
+134042,340043.7648,216207.0778,0,15.6
+134043,0,592223.7415,0,15.6
+134044,0,224264.8456,0,15.6
+134045,0,225050.4753,0,15.6
+134046,0,225201.1261,0,15.6
+134047,0,225149.5076,0,15.6
+134048,0,225941.9492,0,15.6
+134049,0,225897.6698,0,15.6
+134050,0,225992.7004,0,15.6
+134051,0,226335.1471,0,15.6
+134052,0,226924.6609,0,15.6
+134053,0,226951.8915,0,15.6
+134054,0,227388.4316,0,15.6
+134055,0,227321.7397,0,15.6
+134056,0,227935.9325,0,15.6
+134057,0,228074.4728,0,15.6
+134058,0,228263.2148,0,15.6
+134059,0,228921.1164,0,15.6
+134060,0,197420.1801,0,15.6
+134061,0,198193.5247,0,15.6
+134062,0,288798.3926,0,15.6
+134063,0,213070.9346,0,15.6
+134064,0,224328.1223,0,15.6
+134065,0,234885.1244,0,15.6
+134066,0,230427.5707,778470.126,15.6
+134067,0,230838.4987,0,15.6
+134068,0,31405.69981,0,15.6
+134069,0,31501.61085,0,15.6
+134070,0,31464.82487,0,15.6
+134071,0,701111.6214,0,15.6
+134072,0,91021.69839,0,15.6
+134073,0,164121.3429,0,15.6
+134074,0,291669.9822,0,15.6
+134075,0,225118.1288,0,15.6
+134076,0,233973.5399,0,15.6
+134077,0,234403.3624,0,15.6
+134078,0,234736.9044,0,15.6
+134079,0,235311.988,0,15.6
+134080,340096.5854,234941.3418,0,15.6
+134081,0,235727.2027,0,15.6
+134082,0,235322.6562,0,15.6
+134083,0,235785.8183,0,15.6
+134084,0,236298.4024,0,15.6
+134085,0,235965.8394,0,15.6
+134086,0,236528.2412,0,15.6
+134087,0,236732.6468,0,15.6
+134088,0,236949.8822,0,15.6
+134089,0,237061.1703,0,15.6
+134090,0,237685.221,0,15.6
+134091,0,605241.2082,0,15.6
+134092,0,205879.129,0,15.6
+134093,0,206130.5086,0,15.6
+134094,0,300025.4078,0,15.6
+134095,0,222140.4869,0,15.6
+134096,0,232123.9193,0,15.6
+134097,0,244633.4469,0,15.6
+134098,0,238855.4405,0,15.6
+134099,0,238902.8059,0,15.6
+134100,0,240464.8185,0,15.6
+134101,64550.06136,240033.995,0,15.6
+134102,10834.84777,1199183.637,768140.1226,15.6
+134103,2691.688189,1111532.281,0,15.6
+134104,15512.88198,262238.5404,0,15.6
+134105,17628.44623,531378.5614,0,15.6
+134106,13136.0805,654066.6572,0,15.6
+134107,14156.98724,431604.1759,0,15.6
+134108,14130.94501,501501.8073,0,15.6
+134109,14017.19988,487577.0922,0,15.6
+134110,13934.92875,483120.0486,0,15.6
+134111,13891.7622,480699.2233,0,15.6
+134112,13745.46292,480366.5381,0,15.6
+134113,13756.37051,478840.5081,0,15.6
+134114,13585.72476,477390.1665,0,15.6
+134115,13593.65482,476984.4576,0,15.6
+134116,13467.74856,475033.5866,0,15.6
+134117,13380.8412,474690.8404,0,15.6
+134118,353513.1795,474497.6396,0,15.6
+134119,13212.71939,472879.7207,0,15.6
+134120,13220.51798,471763.6022,0,15.6
+134121,13118.46324,471555.9673,0,15.6
+134122,13032.16065,470665.6127,0,15.6
+134123,12998.47889,470621.3188,0,15.6
+134124,12898.69665,402604.5175,0,15.6
+134125,12830.94841,402604.546,0,15.6
+134126,12835.82547,515817.4111,0,15.6
+134127,12769.70519,468977.2668,0,15.6
+134128,12669.41355,467504.8206,0,15.6
+134129,12620.32256,471140.9183,0,15.6
+134130,12565.38462,463727.0784,0,15.6
+134131,0,467111.1619,0,15.6
+134132,0,65924.44698,0,15.6
+134133,0,65983.60837,0,15.6
+134134,0,1114198.715,0,15.6
+134135,0,275303.7608,0,15.6
+134136,0,528830.7595,759493.7509,15.6
+134137,0,441872.9489,0,15.6
+134138,0,478939.9775,0,15.6
+134139,0,830656.3758,0,15.6
+134140,0,462041.1519,0,15.6
+134141,0,461548.6605,0,15.6
+134142,0,460949.9914,0,15.6
+134143,0,460884.4434,0,15.6
+134144,0,460099.3188,0,15.6
+134145,0,460069.3084,0,15.6
+134146,0,459330.1609,0,15.6
+134147,37930.43359,459403.3138,0,15.6
+134148,0,458493.3424,0,15.6
+134149,8625.395315,458598.3971,0,15.6
+134150,12259.11839,458071.5875,0,15.6
+134151,12306.28235,458099.951,0,15.6
+134152,10711.30177,457161.195,0,15.6
+134153,351307.0538,457333.3328,0,15.6
+134154,11128.40875,456797.2002,0,15.6
+134155,11005.30129,456492.2722,0,15.6
+134156,10992.45011,391478.8148,0,15.6
+134157,10918.25403,391279.7771,0,15.6
+134158,10855.80369,505121.6127,0,15.6
+134159,10771.01956,453565.5008,0,15.6
+134160,10755.03028,457674.6988,0,17.8
+134161,874954.6451,2568487.874,0,17.8
+134162,274772.9143,2556632.704,0,17.8
+134163,138968.7574,1256807.761,0,17.8
+134164,185941.819,187902.2961,0,17.8
+134165,266417.2879,1204863.303,0,17.8
+134166,211795.7786,989716.3823,0,17.8
+134167,217705.0246,1091085.662,0,17.8
+134168,219292.7776,1009851.328,0,17.8
+134169,219603.3823,1021629.836,0,17.8
+134170,220295.3818,1018978.475,752112.0678,17.8
+134171,220526.9803,1013926.682,0,17.8
+134172,220841.9981,1008616.995,0,17.8
+134173,221106.6703,1006718.194,0,17.8
+134174,221439.4976,1002687.055,0,17.8
+134175,221866.81,997312.3357,0,17.8
+134176,222271.2461,1360440.94,0,17.8
+134177,179018.349,988523.5811,0,17.8
+134178,179500.1085,987560.403,0,17.8
+134179,180141.3847,984320.674,0,17.8
+134180,261491.6158,979472.6723,0,17.8
+134181,205233.1846,977919.2341,0,17.8
+134182,216389.323,974772.4466,0,17.8
+134183,232768.1472,968216.5393,0,17.8
+134184,223335.6165,956036.1511,0,17.8
+134185,225152.766,958070.0588,0,17.8
+134186,227089.7123,950218.0145,0,17.8
+134187,229954.7314,947694.1875,0,17.8
+134188,568567.7127,826046.2764,0,17.8
+134189,229654.8756,1005153.704,0,17.8
+134190,229973.2061,922504.4618,0,17.8
+134191,45460.14371,902947.7943,0,17.8
+134192,45454.16348,904528.4147,0,17.8
+134193,45537.5471,899705.0821,0,17.8
+134194,46420.36389,960362.395,0,17.8
+134195,46281.93752,115306.4373,0,17.8
+134196,46207.9912,144930.9044,0,17.8
+134197,619459.9543,1260362.707,0,17.8
+134198,97242.95015,1041397.752,0,17.8
+134199,212150.1395,797471.553,0,17.8
+134200,271646.275,973320.2525,0,17.8
+134201,231516.1123,927772.1884,0,17.8
+134202,237668.2002,911505.1758,0,17.8
+134203,238668.3518,876802.1889,0,17.8
+134204,238347.4659,895427.5265,744932.3693,17.8
+134205,239693.6976,885595.4504,0,17.8
+134206,239605.7773,880363.9882,0,17.8
+134207,240469.2423,876448.3888,0,17.8
+134208,241320.3625,873947.0589,0,17.8
+134209,241040.1532,867852.9166,0,17.8
+134210,198356.9868,867700.6141,0,17.8
+134211,198696.9474,861746.8266,2581.68861,17.8
+134212,199116.7922,859390.9948,6419.08499,17.8
+134213,278569.0548,1223661.501,3898.058902,17.8
+134214,223374.8101,853198.0937,5175.250289,17.8
+134215,234371.0483,848045.7978,5404.583283,17.8
+134216,250501.7627,846686.1538,5746.502627,17.8
+134217,240981.7453,841158.0157,6086.438379,17.8
+134218,243828.8894,839917.1641,6199.973727,17.8
+134219,243718.3709,732178.9637,6537.452479,17.8
+134220,245065.8538,731204.827,6761.832769,20
+134221,1999582.463,2590640.456,1083710.238,20
+134222,551588.975,2012111.157,5553.983471,20
+134223,140617.821,732469.475,3784.339013,20
+134224,327174.8169,1120723.827,70924.29446,20
+134225,345526.3424,1176963.763,52659.41745,20
+134226,395730.0562,1092530.996,82080.92975,20
+134227,361157.2653,1055802.113,89168.2055,20
+134228,362586.8575,1068450.156,75351.17516,20
+134229,365476.7633,1061658.5,82505.28217,20
+134230,367495.6793,1055969.161,83415.40474,20
+134231,365561.899,1053471.236,83925.55361,20
+134232,367695.5688,1048458.958,84163.24098,20
+134233,366236.8708,1043806.355,85146.17093,20
+134234,365990.2085,1041898.073,85293.34439,20
+134235,365610.7359,1039600.423,86393.93048,20
+134236,366971.5356,1035402.37,86780.46764,20
+134237,365775.3644,1032746.797,87167.21182,20
+134238,366291.4715,1031106.949,87924.17073,20
+134239,366029.0381,1027457.039,88502.31412,20
+134240,366419.6185,1025391.64,89047.63392,20
+134241,365026.3064,1023412.911,89838.27708,20
+134242,366870.1048,1019820.86,90237.79845,20
+134243,366546.1024,1019754.596,90903.74493,20
+134244,366145.9975,1014237.961,91560.57267,20
+134245,366689.1451,1015051.217,91976.48272,20
+134246,366811.7945,1011775.521,92719.53543,20
+134247,366322.6705,1010246.951,93147.92057,20
+134248,366633.2956,1008796.969,94097.26429,20
+134249,367266.5589,1005231.025,94311.82517,20
+134250,367264.2265,1004534.957,94888.9864,20
+134251,366320.2232,1002320.238,95897.27575,20
+134252,367936.5198,1002166.296,96066.61984,20
+134253,367901.4378,998311.617,96860.35663,20
+134254,366296.129,998104.1239,97463.64088,20
+134255,368557.9247,994634.1593,97867.85425,20
+134256,367760.8959,996110.9815,98696.13866,20
+134257,368465.3349,992254.4498,99036.22487,20
+134258,367599.969,991328.1318,99862.9998,20
+134259,369478.9165,989706.416,100074.4341,20
+134260,367532.0655,988809.8164,101256.0941,20
+134261,369500.5279,986623.1856,101113.3039,20
+134262,368679.7019,985718.1252,102478.0255,20
+134263,369137.0273,984468.1276,102274.6906,20
+134264,369547.8101,982721.3279,103525.9201,20
+134265,369822.5311,982000.5291,103708.3183,20
+134266,369170.0026,980895.8955,104438.6244,20
+134267,370461.2558,978777.1836,105082.103,20
+134268,369900.9268,978988.6247,105609.2736,20
+134269,370288.8202,974786.4093,105739.201,20
+134270,370772.6246,977133.4478,107033.6404,20
+134271,370511.7345,975142.0345,107151.8678,20
+134272,371019.9665,972248.895,107813.4437,20
+134273,371415.2292,973492.0601,108443.6598,20
+134274,371372.9466,970503.8302,109253.8246,20
+134275,372019.6728,969517.6874,109280.1925,20
+134276,371340.8749,970516.9294,110086.2194,20
+134277,371996.8378,967493.1682,110733.8114,20
+134278,370622.158,967382.6789,111549.531,20
+134279,368657.1016,966678.9874,111390.8635,20
+134280,369700.0185,965398.8222,112779.0647,21
+134281,343762.8153,1691627.207,100239.494,21
+134282,338072.7352,1685624.758,99489.90752,21
+134283,338326.3891,1680410.7,99108.2572,21
+134284,338372.6121,1677761.346,99379.41566,21
+134285,337194.828,1676082.838,98981.43903,21
+134286,337626.3654,1671599.381,99158.3842,21
+134287,337158.1566,1669700.86,99069.64751,21
+134288,338310.6426,1666341.178,99336.18051,21
+134289,336522.2934,1661565.241,99175.37827,21
+134290,338417.7728,1657623.346,99521.68172,21
+134291,336609.0111,1655932.657,99076.30031,21
+134292,338370.1319,1652557.294,99218.03007,21
+134293,336945.6196,1649548.964,99592.04827,21
+134294,338206.1173,1648165.989,99117.94266,21
+134295,337169.908,1642835.058,99866.07056,21
+134296,338254.919,1643515.378,99371.93621,21
+134297,338548.1679,1638099.163,99619.48531,21
+134298,336999.5928,1637272.987,99236.75383,21
+134299,339979.5477,1633813.946,100244.8591,21
+134300,337410.3081,1631092.735,99357.82999,21
+134301,339126.4768,1628997.959,99713.90996,21
+134302,339283.512,1626230.001,100040.6412,21
+134303,338283.3612,1624327.637,99396.59746,21
+134304,340338.2417,1620996.319,99903.0689,21
+134305,338875.4834,1619467.143,99861.26958,21
+134306,339769.6037,1616058.783,99992.04853,21
+134307,340104.6408,1613931.962,93912.17758,21
+134308,341224.0448,1612019.339,93384.46012,21
+134309,342206.4607,1610012.553,92887.62894,21
+134310,342858.6336,1606180.634,92972.92924,21
+134311,344157.7713,1605310.147,92345.79716,21
+134312,345505.4203,1601252.965,92165.26868,21
+134313,345963.3661,1600600.483,90697.74747,21
+134314,347400.2886,1595749.76,90752.56333,21
+134315,347630.3248,1596016.503,89916.88459,21
+134316,348565.7769,1591996.392,89117.28632,21
+134317,350418.101,1589329.868,88896.79027,21
+134318,350073.494,1587025.965,87690.9468,21
+134319,351668.2045,1585347.888,87706.72775,21
+134320,353080.4223,1581973.794,86754.41354,21
+134321,353157.8292,1580324.485,85955.56987,21
+134322,353319.7681,1577199.467,85581.27541,21
+134323,356182.433,1574979.553,84665.80901,21
+134324,355755.6905,1573400.112,84325.76961,21
+134325,356801.8322,1570145.414,83683.35023,21
+134326,358360.1504,1567830.428,82677.99921,21
+134327,358351.5903,1565987.404,82313.83946,21
+134328,360152.5391,1562500.787,81660.0326,21
+134329,359689.4157,1561623.809,80980.24141,21
+134330,361428.5476,1558224.904,80511.4255,21
+134331,362700.4595,1555355.435,79458.51905,21
+134332,363125.7349,1553259.581,79348.63912,21
+134333,363991.8078,1552591.427,79123.86929,21
+134334,364839.8807,1548779.185,78338.81943,21
+134335,366670.7011,1546476.557,77918.42471,21
+134336,366512.8205,1542349.315,77262.98126,21
+134337,367497.8731,1542420.362,77216.67244,21
+134338,368652.5774,1536919.94,76508.6028,21
+134339,370391.4282,1537411.235,75812.32699,21
+134340,369479.3812,1533671.583,75847.78002,21
+134341,232496.7368,1302061.807,9906.620583,21
+134342,228397.646,1287048.124,7101.657301,21
+134343,226946.5162,1281131.304,6358.040339,21
+134344,226784.3465,1277202.04,5464.697214,21
+134345,226200.1665,1270954.518,5144.455859,21
+134346,225123.3512,1267187.281,4553.851758,21
+134347,224705.9984,1263335.126,4169.108963,21
+134348,223832.0576,1259260.728,3719.640609,21
+134349,223489.4672,1255623.91,3419.452714,21
+134350,222809.0836,1250815.204,2892.86212,21
+134351,222018.9374,1248137.619,2673.282405,21
+134352,221579.906,1244048.16,2562.523167,21
+134353,220904.4957,1240534.828,2514.58577,21
+134354,220215.8308,1237440.652,2398.997902,21
+134355,219915.1766,1234264.395,2318.876077,21
+134356,219080.5139,1231157.306,2235.451974,21
+134357,219017.1087,1226634.84,2200.8082,21
+134358,218148.3337,1223579.713,2100.218127,21
+134359,217655.9014,1220908.022,2099.463145,21
+134360,217359.3276,1217620.29,1998.384869,21
+134361,216613.8113,1214096.486,2014.188649,21
+134362,216290.1393,1210404.567,1895.141961,21
+134363,215785.379,1208713.404,1877.589518,21
+134364,215428.1714,1203985.343,1826.589509,21
+134365,214637.7156,1201570.797,1756.754253,21
+134366,214701.6679,1198475.955,1731.134917,21
+134367,213935.8246,1195955.19,1652.95433,21
+134368,213634.4325,1191585.68,1635.073988,21
+134369,213414.1029,1190381.237,1548.524331,21
+134370,212719.5931,1186487.423,1521.465747,21
+134371,212724.5644,1183673.936,1459.180147,21
+134372,212609.9109,1180904.994,1380.87005,21
+134373,212585.7794,1177989.075,1352.007083,21
+134374,212420.1373,1175517.22,1245.345382,21
+134375,212586.2278,1172868.026,1209.619935,21
+134376,212432.1608,1169506.515,1134.364912,21
+134377,212256.0865,1167382.894,1082.892472,21
+134378,212416.0551,1163683.634,996.6228594,21
+134379,212510.6214,1162316.96,950.1730646,21
+134380,212112.0195,1160269.739,876.1761128,21
+134381,212638.8459,1155100.577,808.4999722,21
+134382,212557.291,1154801.997,738.4495894,21
+134383,212374.6929,1150228.662,721.0661734,21
+134384,212636.0448,1149116.455,703.6475861,21
+134385,212499.0925,1145984.411,668.6970989,21
+134386,212872.946,1144009.398,651.1696659,21
+134387,212612.1417,1140662.511,633.6046013,21
+134388,212952.9235,1140626.173,616.0009186,21
+134389,212873.0736,1136507.539,580.6704716,21
+134390,213039.7665,1134470.613,580.6747333,21
+134391,212886.5213,1132588.465,527.367556,21
+134392,213523.4202,1130437.926,527.3710736,21
+134393,213174.6852,1127477.827,509.5177714,21
+134394,213625.267,1124026.436,455.6749285,21
+134395,213469.6734,1124111.382,473.6736192,21
+134396,213741.1067,1119576.99,419.5394207,21
+134397,214033.6842,1118268.035,419.541688,21
+134398,215016.4835,1115444.923,383.1930554,21
+134399,216066.0267,1113497.953,346.6185256,21
+134400,215898.9628,1110756.047,346.6200798,21
+134401,216251.6625,1107358.337,309.8008176,21
+134402,215757.9521,1105957.961,291.2929339,21
+134403,216071.6334,1101888.26,254.0612628,21
+134404,215718.5084,1099557.029,216.514544,21
+134405,216205.2734,1097072.644,216.5151557,21
+134406,215844.3807,1094564.431,159.5012526,21
+134407,215937.4101,1091508.873,159.501584,21
+134408,215948.5883,1088191.868,120.9268882,21
+134409,215916.6639,1087290.443,101.4287195,21
+134410,215883.3325,1083443.115,81.76041099,21
+134411,215944.619,1081404.575,41.75400287,21
+134412,215773.5138,1077875.085,21.25175179,21
+134413,216167.403,1076073.095,0,21
+134414,215809.0147,1073007.678,0,21
+134415,216120.113,1070736.483,0,21
+134416,215506.2895,1068068.56,0,21
+134417,216037.2126,1065824.911,0,21
+134418,216162.0735,1062008.253,0,21
+134419,215493.6956,1060850.949,0,21
+134420,216200.3448,1057986.365,0,21
+134421,215984.4527,1054882.458,0,21
+134422,215801.3533,1051536.164,0,21
+134423,215728.1971,1050766.822,0,21
+134424,216204.8231,1047677.502,0,21
+134425,215723.9018,1044632.159,0,21
+134426,216108.4349,1042437.23,0,21
+134427,215826.2626,1039721.328,0,21
+134428,215812.8937,1037026.851,0,21
+134429,216286.6109,1035042.218,0,21
+134430,215837.8763,1032039.003,0,21
+134431,215679.2445,1029799.623,0,21
+134432,216364.6135,1026836.695,0,21
+134433,215732.6523,1025655.033,0,21
+134434,216022.4041,1021088.391,0,21
+134435,216122.7635,1020228.397,0,21
+134436,215803.4242,1017328.984,0,21
+134437,216082.8257,1013890.278,0,21
+134438,215872.5736,1013308.375,0,21
+134439,216141.6644,1008769.895,0,21
+134440,216155.3573,1007508.149,0,21
+134441,215908.2908,1004525.707,0,21
+134442,216213.3879,1002174.183,0,21
+134443,216180.8538,1000001.975,0,21
+134444,215861.8996,996630.4637,0,21
+134445,216350.418,995047.0418,0,21
+134446,216098.4522,991963.7519,0,21
+134447,216222.2161,989341.9712,0,21
+134448,216234.1244,988119.8046,0,21
+134449,216327.8453,983668.1215,0,21
+134450,216255.4546,984101.8512,0,21
+134451,216291.891,978400.5146,0,21
+134452,216376.5977,978038.4247,0,21
+134453,216409.8984,975429.724,0,21
+134454,216401.7014,971805.4727,0,21
+134455,216700.4486,970893.7393,0,21
+134456,216345.4654,967710.7642,0,21
+134457,216548.4535,964634.9619,0,21
+134458,216786.6531,963516.7155,0,21
+134459,216400.4335,960190.7165,0,21
+134460,216885.3168,958790.1032,0,21
+134461,221315.9991,956019.6903,0,21
+134462,221223.6601,955884.9428,0,21
+134463,221222.5716,953381.7461,0,21
+134464,221180.559,952095.0968,0,21
+134465,220665.9045,949569.0797,0,21
+134466,221107.2131,948114.9477,0,21
+134467,220177.13,946541.1346,0,21
+134468,220861.0605,944850.6375,0,21
+134469,220250.6269,942726.593,0,21
+134470,220086.6203,940550.8107,0,21
+134471,220148.0028,939207.8612,0,21
+134472,220175.7149,938237.0594,0,21
+134473,219482.911,934952.0544,0,21
+134474,219660.9067,935056.8269,0,21
+134475,219885.287,931646.8493,0,21
+134476,219151.3727,930794.8591,0,21
+134477,219382.7063,928741.9079,0,21
+134478,219096.5209,927580.4723,0,21
+134479,219025.1593,924681.461,0,21
+134480,219035.9556,923857.1908,0,21
+134481,218523.8996,921105.1716,0,21
+134482,218824.3689,921461.2245,0,21
+134483,218351.7403,917457.9183,0,21
+134484,218740.1926,916725.9714,0,21
+134485,217887.3735,915307.0124,0,21
+134486,218401.5504,913187.0612,0,21
+134487,217809.5906,911433.7168,0,21
+134488,218074.3303,909250.072,0,21
+134489,217737.8286,909213.6016,0,21
+134490,217608.8611,905182.4002,0,21
+134491,217394.4244,905078.899,0,21
+134492,217190.6031,903381.1566,0,21
+134493,216595.3922,899712.2655,0,21
+134494,216548.7598,899238.4086,0,21
+134495,216181.5039,897440.113,0,21
+134496,215313.4261,894909.1477,0,21
+134497,215650.176,893450.8142,0,21
+134498,215040.5692,891979.5936,0,21
+134499,214703.1792,889870.8246,0,21
+134500,214192.7433,887512.6603,0,21
+134501,213886.3803,886542.3999,0,21
+134502,213382.0489,883341.3799,0,21
+134503,213318.6853,882225.612,0,21
+134504,212536.6869,881186.5079,0,21
+134505,212517.1335,877791.0958,0,21
+134506,211777.6052,876923.9787,0,21
+134507,211543.5658,875374.1139,0,21
+134508,210945.1246,872521.3004,0,21
+134509,210666.131,870759.8292,0,21
+134510,210433.8993,869454.3223,0,21
+134511,209678.7272,867095.3412,0,21
+134512,209591.9783,865290.7377,0,21
+134513,209057.5791,864609.7274,0,21
+134514,208418.1,861201.771,0,21
+134515,208357.2362,859602.7978,0,21
+134516,207495.0362,858663.4634,0,21
+134517,207208.1111,856084.782,0,21
+134518,206855.0671,853486.9202,0,21
+134519,206169.7289,852961.0163,0,21
+134520,206060.519,850662.5863,0,21
+134521,199702.4388,846344.5033,0,21
+134522,198041.547,841868.132,0,21
+134523,197367.8402,840044.1557,0,21
+134524,195243.3157,835700.046,0,21
+134525,194555.6812,833698.6987,0,21
+134526,192827.9358,829517.1084,0,21
+134527,191568.2352,827604.5528,0,21
+134528,190192.2588,823800.3085,0,21
+134529,188747.9737,820913.8844,0,21
+134530,187728.474,818511.715,0,21
+134531,186169.8251,814471.5906,0,21
+134532,184726.0564,811080.5984,0,21
+134533,183476.1072,809513.4936,0,21
+134534,182189.1699,804442.3911,0,21
+134535,180733.7649,803763.235,0,21
+134536,179273.7197,798473.7801,0,21
+134537,178057.9426,797195.2399,0,21
+134538,176483.9868,792803.6182,0,21
+134539,175310.9085,790571.4404,0,21
+134540,173739.729,786862.3467,0,21
+134541,172700.8364,784347.9238,0,21
+134542,170986.3995,781129.3411,0,21
+134543,169723.4266,777230.5969,0,21
+134544,168186.4856,775302.9179,0,21
+134545,167031.5232,771984.4276,0,21
+134546,165435.5818,768434.7073,0,21
+134547,164212.958,765643.1758,0,21
+134548,162526.7563,762875.4755,0,21
+134549,161445.4673,758604.4117,0,21
+134550,159878.1221,757991.8424,0,21
+134551,158945.8238,752918.9431,0,21
+134552,157670.6451,750579.7463,0,21
+134553,156982.2389,747416.4067,0,21
+134554,156201.3785,744580.1813,0,21
+134555,154995.6919,741766.599,0,21
+134556,154554.4468,739574.1701,0,21
+134557,153348.6984,736748.9789,0,21
+134558,152542.8305,734017.0022,0,21
+134559,151959.4989,731255.9545,0,21
+134560,150960.2223,727810.5855,0,21
+134561,150082.5439,725748.4174,0,21
+134562,149524.3819,721726.9322,0,21
+134563,148349.2212,719893.8032,0,21
+134564,147980.2813,715994.8411,0,21
+134565,147126.6194,713944.5577,0,21
+134566,146346.5101,710747.627,0,21
+134567,145366.2536,707520.7583,0,21
+134568,145150.548,705268.1034,0,21
+134569,143903.559,701692.0169,0,21
+134570,143434.4102,699636.236,0,21
+134571,142664.5114,695602.2114,0,21
+134572,142150.4749,693713.6609,0,21
+134573,141265.535,690568.5967,0,21
+134574,140632.1534,686912.6126,0,21
+134575,139982.2265,684753.4916,0,21
+134576,139207.7106,681998.1883,0,21
+134577,138775.9302,678362.4064,0,21
+134578,137843.1418,675692.1644,0,21
+134579,137239.8057,671616.2924,0,21
+134580,136827.123,667054.9616,0,21
+134581,161847.8089,695454.5052,0,21
+134582,163503.0216,694430.4549,0,21
+134583,164403.4609,754552.9009,0,21
+134584,165631.7174,715082.1685,0,21
+134585,167001.0562,721030.4264,0,21
+134586,167960.4183,719290.8336,0,21
+134587,169493.4912,717726.6992,0,21
+134588,170608.8398,714438.8623,0,21
+134589,171817.6467,712589.6676,0,21
+134590,173038.3157,710049.4479,0,21
+134591,174333.4649,707758.8939,0,21
+134592,175703.0519,705684.7085,0,21
+134593,176576.9599,704174.0781,0,21
+134594,178185.1237,699855.6473,0,21
+134595,179450.7966,698682.0944,0,21
+134596,180502.3191,696232.3748,0,21
+134597,181854.5412,694169.194,0,21
+134598,183200.2394,690568.5824,0,21
+134599,184209.6291,689086.8243,0,21
+134600,185937.3904,686784.6894,0,21
+134601,186668.5397,684378.4256,0,21
+134602,188404.2617,682035.0533,0,21
+134603,189296.8305,679051.1813,0,21
+134604,190841.6895,677399.7041,0,21
+134605,191930.1955,674599.3228,0,21
+134606,193348.7157,671646.2135,0,21
+134607,194569.273,670328.6619,0,21
+134608,195812.066,667213.7409,0,21
+134609,197111.1941,664845.7004,0,21
+134610,198493.504,663063.7843,0,21
+134611,199705.4445,659952.9031,0,21
+134612,200763.2108,656761.1939,0,21
+134613,201950.5428,652855.7133,0,21
+134614,203324.8471,651121.8085,0,21
+134615,204205.5175,647047.8461,0,21
+134616,205809.2001,643491.5746,0,21
+134617,206517.9006,639108.2159,0,21
+134618,208132.745,635484.718,0,21
+134619,209169.1921,631199.2177,0,21
+134620,210165.6935,629362.4761,0,21
+134621,211619.1382,624156.1039,0,21
+134622,212659.8156,622055.2048,0,21
+134623,213621.0143,616604.0916,0,21
+134624,215450.1875,615403.0012,0,21
+134625,215818.8858,610599.8503,0,21
+134626,217517.1615,607425.1039,0,21
+134627,218721.2845,603001.1262,0,21
+134628,219603.0588,601471.3116,0,21
+134629,220966.405,596592.1742,0,21
+134630,222125.0714,593745.2676,0,21
+134631,223347.298,590124.573,0,21
+134632,224535.6814,586321.7522,0,21
+134633,225714.5555,582694.0893,0,21
+134634,226744.2508,577272.0426,0,21
+134635,228097.7003,574154.7622,0,21
+134636,229299.9875,568534.4154,0,21
+134637,230460.8137,565968.1079,0,21
+134638,231548.9017,562353.1881,0,21
+134639,232955.4088,558646.7639,0,21
+134640,234069.4459,554092.9139,0,21
+134641,209033.5027,501814.958,0,21
+134642,208235.5955,496884.2026,0,21
+134643,207529.6904,494118.6208,0,21
+134644,207035.136,489675.7396,0,21
+134645,206500.6535,486522.8285,0,21
+134646,205855.7301,482926.7217,0,21
+134647,205550.7891,478832.3045,0,21
+134648,204676.9446,475360.1317,0,21
+134649,204114.6308,471294.8741,0,21
+134650,203668.1436,468087.6652,0,21
+134651,203089.162,463550.9791,0,21
+134652,202427.3834,460439.4187,0,21
+134653,201824.2638,458149.5671,0,21
+134654,201539.162,456177.8465,0,21
+134655,200555.4283,454196.1909,0,21
+134656,200495.875,452172.9413,0,21
+134657,199361.1351,450084.5612,0,21
+134658,199267.6882,447732.2875,0,21
+134659,198476.1628,445819.263,0,21
+134660,198009.8037,443907.1214,0,21
+134661,197455.7453,442088.3266,0,21
+134662,196906.6079,439693.8486,0,21
+134663,196360.5995,438015.8004,0,21
+134664,195779.307,435615.2413,0,21
+134665,195298.4307,434112.4702,0,21
+134666,194733.8287,432279.0253,0,21
+134667,194230.0083,429632.378,0,21
+134668,193631.1813,428477.1143,0,21
+134669,193288.5718,426201.8304,0,21
+134670,192490.2519,424235.5256,0,21
+134671,192316.031,421870.9317,0,21
+134672,191443.0517,419954.2914,0,21
+134673,190810.1623,418194.7176,0,21
+134674,190314.4343,416232.6514,0,21
+134675,189766.4733,414502.1714,0,21
+134676,189090.8205,412761.0235,0,21
+134677,188436.3395,411033.6497,0,21
+134678,188126.379,409002.5014,0,21
+134679,187136.234,407395.5994,0,21
+134680,186788.3072,405699.2449,0,21
+134681,186105.1901,403724.006,0,21
+134682,185610.7383,402204.0471,0,21
+134683,184957.0717,400292.9651,0,21
+134684,184287.3445,398834.6117,0,21
+134685,183827.9812,396701.1233,0,21
+134686,183117.7178,395210.4419,0,21
+134687,182557.8317,393753.2809,0,21
+134688,181892.5512,391509.731,0,21
+134689,181482.1112,390269.8076,0,21
+134690,180689.1549,388307.5337,0,21
+134691,180221.7704,386678.3201,0,21
+134692,179528.5841,384931.6514,0,21
+134693,179068.8074,383202.3858,0,21
+134694,178360.2487,381555.7438,0,21
+134695,177832.835,379952.6311,0,21
+134696,177230.1042,377904.1364,0,21
+134697,176545.6327,376159.134,0,21
+134698,175903.066,374295.1003,0,21
+134699,175440.2972,372562.2719,0,21
+134700,174856.2461,370442.5102,0,21
+134701,179813.7043,374145.7922,0,21
+134702,180274.3774,372178.5476,0,21
+134703,180409.3742,370733.5211,0,21
+134704,180753.6057,368996.5588,0,21
+134705,180550.2316,367133.7998,0,21
+134706,181280.1851,365896.1718,0,21
+134707,181439.3271,363668.8702,0,21
+134708,181284.1521,362302.4627,0,21
+134709,181899.8207,360552.7968,0,21
+134710,181970.2352,358896.5038,0,21
+134711,182236.5506,357126.1396,0,21
+134712,182483.878,355279.3846,0,21
+134713,182594.3001,354230.4855,0,21
+134714,183147.994,352154.5438,0,21
+134715,183046.0401,350518.6168,0,21
+134716,183351.9733,349254.9215,0,21
+134717,183696.3865,346931.4003,0,21
+134718,183740.1479,345688.375,0,21
+134719,184409.0663,344207.2466,0,21
+134720,184039.9961,342470.5596,0,21
+134721,184789.3629,340603.4712,0,21
+134722,184775.8401,339289.5809,0,21
+134723,185007.8788,337553.4116,0,21
+134724,185322.8602,336093.2332,0,21
+134725,185746.7238,334013.7793,0,21
+134726,185626.2414,333001.6097,0,21
+134727,186204.6693,330827.1798,0,21
+134728,186166.6488,329784.8722,0,21
+134729,186398.0029,327677.2293,0,21
+134730,186859.4539,326423.2949,0,21
+134731,186857.0731,324450.6041,0,21
+134732,187188.7324,323294.2442,0,21
+134733,187480.1297,321312.1315,0,21
+134734,187465.5382,319470.0054,0,21
+134735,187953.2916,318184.074,0,21
+134736,187695.7351,316497.0237,0,21
+134737,188419.988,314603.506,0,21
+134738,188030.8061,312971.1502,0,21
+134739,188743.4854,311446.0826,0,21
+134740,188652.1269,309762.6538,0,21
+134741,189179.1435,308079.2472,0,21
+134742,188783.8748,306351.9212,0,21
+134743,189678.7705,304464.5809,0,21
+134744,189295.3079,303198.1447,0,21
+134745,189545.4212,301037.6586,0,21
+134746,190059.8319,299729.7986,0,21
+134747,190144.8143,297591.3746,0,21
+134748,190081.6281,296438.3557,0,21
+134749,190580.5627,294292.2588,0,21
+134750,190452.8303,292445.2549,0,21
+134751,190842.9461,290997.4347,0,21
+134752,190946.9562,289216.4356,0,21
+134753,191220.9804,287342.236,0,21
+134754,191536.7926,285546.0996,0,21
+134755,191320.3944,284055.0018,0,21
+134756,191823.5584,281726.0226,0,21
+134757,191665.6682,280244.5441,0,21
+134758,192334.4747,278720.1582,0,21
+134759,192195.1791,276243.4893,0,21
+134760,192432.1525,274927.8185,0,21
+134761,188050.9981,266084.9406,0,21
+134762,188565.6,262733.5089,0,21
+134763,188962.1947,259052.7444,0,21
+134764,189548.2913,255729.722,0,21
+134765,190183.0906,252147.317,0,21
+134766,190624.3241,249193.0692,0,21
+134767,190963.9782,245259.3054,0,21
+134768,191659.9065,241916.3338,0,21
+134769,192367.9897,238562.6239,0,21
+134770,192366.5602,235067.7909,0,21
+134771,193383.8484,231441.117,0,21
+134772,193874.6417,228026.0416,0,21
+134773,194065.9753,224670.5254,0,21
+134774,194905.0546,220980.7957,0,21
+134775,195340.6769,217485.1814,0,21
+134776,195923.8225,213976.0162,0,21
+134777,196244.2802,211311.9296,0,21
+134778,197019.0539,207951.7867,0,21
+134779,197488.8787,204504.6706,0,21
+134780,197878.5037,200785.5692,0,21
+134781,198571.0482,197520.1292,0,21
+134782,198893.8536,193910.587,0,21
+134783,199782.6076,190321.4136,0,21
+134784,200072.1845,186861.5995,0,21
+134785,200495.8611,183478.4818,0,21
+134786,201113.8903,179619.8188,0,21
+134787,201735.8927,176390.0974,0,21
+134788,202151.4,172704.9482,0,21
+134789,202857.4293,169138.5035,0,21
+134790,203171.8571,165407.1371,0,21
+134791,203591.0339,162593.3113,0,21
+134792,204733.0669,158500.7795,0,21
+134793,204771.7665,155309.9037,0,21
+134794,205571.3532,152130.1166,0,21
+134795,206097.5,148669.8398,0,21
+134796,206655.7143,144966.0049,0,21
+134797,207203.8077,142014.0513,0,21
+134798,207716.5312,138547.893,0,21
+134799,208389.318,135031.3142,0,21
+134800,208767.0918,131668.4119,0,21
+134801,209899.8592,128691.5783,0,21
+134802,209818.1831,124980.765,0,21
+134803,210713.4099,121772.8959,0,21
+134804,211047.3166,118439.2786,0,21
+134805,212076.2908,115469.3366,0,21
+134806,212223.9974,112168.6067,0,21
+134807,213008.3964,109256.8118,0,21
+134808,213589.1486,105772.7591,0,21
+134809,214122.9388,103146.0999,0,21
+134810,214622.0781,99719.65132,0,21
+134811,215327.4905,96546.27406,0,21
+134812,215937.6537,93791.72522,0,21
+134813,216393.4738,90550.80338,0,21
+134814,217107.0663,87670.96568,0,21
+134815,217765.9549,85118.82925,0,21
+134816,218127.9633,82034.99468,0,21
+134817,218851.027,79015.34091,0,21
+134818,219297.2702,76753.1915,0,21
+134819,220092.8615,73527.30787,0,21
+134820,220469.0491,71372.20666,0,21
+134821,220894.2602,71512.2268,0,21
+134822,220873.3233,72242.19475,0,21
+134823,221306.5309,72786.29201,0,21
+134824,221170.7613,73502.6766,0,21
+134825,221668.59,74261.13446,0,21
+134826,221725.5801,74844.93453,0,21
+134827,221701.3669,75751.78617,0,21
+134828,221899.4199,76216.51653,0,21
+134829,222314.6311,77111.30786,0,21
+134830,222330.2922,77812.93892,0,21
+134831,222318.6992,78573.83847,0,21
+134832,222817.3078,79214.01864,0,21
+134833,222718.3679,79966.4921,0,21
+134834,223083.8552,80680.13042,0,21
+134835,223173.5662,81569.88339,0,21
+134836,223250.1002,82065.66932,0,21
+134837,223557.275,83064.3433,0,21
+134838,223543.9076,83662.69031,0,21
+134839,223846.8901,84269.40736,0,21
+134840,224094.0582,85358.06672,0,21
+134841,224134.6174,85966.29905,0,21
+134842,224079.846,86570.22391,0,21
+134843,224601.0439,87712.32208,0,21
+134844,224445.3828,88772.06779,0,21
+134845,224795.2819,89239.48405,0,21
+134846,224919.8628,90171.32562,0,21
+134847,225179.508,91146.41158,0,21
+134848,225216.8021,91974.54105,0,21
+134849,225377.4713,92952.4935,0,21
+134850,225530.3975,93731.01628,0,21
+134851,225816.9397,94551.69758,0,21
+134852,226148.693,95525.80627,0,21
+134853,226183.0838,96349.59846,0,21
+134854,226748.2729,97239.74343,0,21
+134855,226995.3469,98234.27377,0,21
+134856,227064.2548,98928.04,0,21
+134857,227528.4405,99864.93743,0,21
+134858,227793.4552,100888.6811,0,21
+134859,227863.4708,101689.4851,0,21
+134860,228645.7077,102925.2629,0,21
+134861,228435.6205,103629.4833,0,21
+134862,229249.1287,104600.2286,0,21
+134863,229108.0164,105737.7784,0,21
+134864,229633.138,106648.9254,0,21
+134865,230024.0112,107496.2855,0,21
+134866,230201.7305,108587.4343,0,21
+134867,230512.2726,109458.5233,0,21
+134868,230919.9306,110407.1115,0,21
+134869,231192.9064,111600.3395,0,21
+134870,231543.2583,112176.7923,0,21
+134871,231847.0444,113432.1673,0,21
+134872,232220.3897,114512.934,0,21
+134873,232354.7005,115011.3988,0,21
+134874,233116.9683,116538.2246,0,21
+134875,233008.3816,117143.1197,0,21
+134876,233663.4302,118428.6551,0,21
+134877,233837.7322,119148.9273,0,21
+134878,234483.3351,120103.8942,0,21
+134879,234141.3917,121320.6352,0,21
+134880,235310.1244,122024.435,0,21
+134881,290407.238,150716.6433,0,21
+134882,295359.2036,152791.0509,0,21
+134883,297345.5335,154149.0078,0,21
+134884,299147.1431,156126.1541,0,21
+134885,301658.7123,166149.2764,0,21
+134886,303668.6719,162790.9646,0,21
+134887,305880.8524,165348.4942,0,21
+134888,307765.1071,167852.3288,0,21
+134889,310308.571,169388.0147,0,21
+134890,312021.7104,170940.644,0,21
+134891,314013.8471,172825.7425,0,21
+134892,316832.9003,174638.6869,0,21
+134893,318308.2992,176309.1832,0,21
+134894,320547.137,177665.1463,0,21
+134895,322951.7717,179907.1345,0,21
+134896,324465.4066,181151.3631,0,21
+134897,327030.0373,182694.658,0,21
+134898,328550.7933,184849.9269,0,21
+134899,330964.926,185897.1123,0,21
+134900,332876.8812,189514.6765,0,21
+134901,334773.785,214967.4805,0,21
+134902,336713.2932,201922.1127,0,21
+134903,338905.3896,211705.3082,0,21
+134904,340735.7564,212589.4481,0,21
+134905,342665.3784,215208.0326,0,21
+134906,344641.5916,217468.8678,0,21
+134907,346518.9127,220834.8858,0,21
+134908,348296.2099,221769.3141,0,21
+134909,350575.6217,225610.7271,0,21
+134910,352028.6928,227935.0896,0,21
+134911,354298.4661,229305.9903,0,21
+134912,355757.9323,232486.7176,0,21
+134913,357949.3896,233993.7707,0,21
+134914,359189.2331,235399.2191,0,21
+134915,361548.0711,237588.351,0,21
+134916,362937.8543,238610.7054,0,21
+134917,365000.0047,241814.985,0,21
+134918,366631.4974,242224.93,0,21
+134919,368772.7878,245499.941,0,21
+134920,370355.6946,245720.7724,0,21
+134921,372055.3974,248260.413,0,21
+134922,373894.2374,250172.8742,0,21
+134923,375766.1075,251020.7017,0,21
+134924,377194.6651,252738.5108,0,21
+134925,379130.5065,254306.1456,0,21
+134926,381139.9701,257030.9666,0,21
+134927,382235.5941,258185.8048,0,21
+134928,384472.0808,258895.1816,0,21
+134929,386004.2687,261535.6746,0,21
+134930,387683.7313,263626.4145,0,21
+134931,389486.6544,262934.014,0,21
+134932,391374.6532,271992.8783,0,21
+134933,392826.3554,270158.43,0,21
+134934,394322.9711,274500.9724,0,21
+134935,396489.2865,275135.8672,0,21
+134936,398043.8324,278392.036,0,21
+134937,399772.4901,280115.7851,0,21
+134938,401415.1483,282602.3578,0,21
+134939,402976.4211,284898.3857,0,21
+134940,404505.4974,286258.7396,0,21
+134941,423289.045,347761.4402,0,21
+134942,424351.6016,355778.9356,0,21
+134943,425354.8399,357023.5606,0,21
+134944,425768.1723,360037.0367,0,21
+134945,427100.0098,362574.1912,0,21
+134946,427453.9736,364834.4558,0,21
+134947,428351.7246,367876.4963,0,21
+134948,428984.0553,369106.3077,0,21
+134949,429597.6124,372242.3391,0,21
+134950,430587.3194,374612.0059,0,21
+134951,431063.8198,376341.288,0,21
+134952,431618.1363,378026.7263,0,21
+134953,432361.6913,381573.555,0,21
+134954,433274.7343,382064.4609,0,21
+134955,433679.0501,385025.7817,0,21
+134956,434341.0767,386684.952,0,21
+134957,434786.9156,388153.9346,0,21
+134958,435616.485,391322.8095,0,21
+134959,436155.2579,392668.4845,0,21
+134960,436781.9604,394083.1726,0,21
+134961,437109.2214,396369.3175,0,21
+134962,438014.6358,398561.0861,0,21
+134963,438369.7885,398990.401,0,21
+134964,439504.9265,403084.1873,0,21
+134965,441175.673,402362.4964,0,21
+134966,440866.4613,404078.725,0,21
+134967,442134.8311,405210.0267,0,21
+134968,442424.928,406115.5151,0,21
+134969,443245.1122,408943.0764,0,21
+134970,443992.4583,409711.9642,0,21
+134971,444348.2627,412085.9002,0,21
+134972,445228.4151,413097.2426,0,21
+134973,445856.7891,416686.7113,0,21
+134974,446718.1231,418367.5376,0,21
+134975,447449.8053,419686.658,0,21
+134976,447826.8396,422078.8922,0,21
+134977,449037.4619,424484.0802,0,21
+134978,448922.2534,426373.928,0,21
+134979,450278.426,429193.968,0,21
+134980,450665.5278,432803.2353,0,21
+134981,451466.1257,433397.6799,0,21
+134982,451920.5688,437485.0686,0,21
+134983,452769.7316,437152.7286,0,21
+134984,452900.5021,441227.8994,0,21
+134985,454137.9574,442916.2084,0,21
+134986,454511.0928,443867.6208,0,21
+134987,455091.8568,447314.1659,0,21
+134988,455812.4135,449380.9117,0,21
+134989,456551.5971,450779.1343,0,21
+134990,456873.1372,452721.8595,0,21
+134991,458031.706,455489.3185,0,21
+134992,457934.5657,457105.8432,0,21
+134993,459020.081,459623.2648,0,21
+134994,459408.2975,460921.1751,0,21
+134995,460048.5167,464226.9237,0,21
+134996,460788.4857,465171.7415,0,21
+134997,461187.6974,468102.0095,0,21
+134998,461652.3963,469606.3446,0,21
+134999,462585.1391,471468.4621,0,21
+135000,462794.5003,474997.4467,0,21
+135001,464285.0829,476038.7091,0,21
+135002,465231.0138,479580.4955,0,21
+135003,466079.4075,482828.9611,0,21
+135004,467593.0712,484095.7814,0,21
+135005,468470.3217,488120.4264,0,21
+135006,470102.1762,488480.4847,0,21
+135007,470442.3578,493484.3731,0,21
+135008,472123.2996,494266.3234,0,21
+135009,472948.5159,497054.8936,0,21
+135010,474267.9191,500399.5893,0,21
+135011,475351.5151,501933.524,0,21
+135012,476439.2807,505172.928,0,21
+135013,477357.9917,507704.3277,0,21
+135014,479064.9819,509921.9509,0,21
+135015,479792.8514,512149.6469,0,21
+135016,481220.7714,515549.2419,0,21
+135017,482196.8843,517270.1647,0,21
+135018,483696.5996,519412.6915,0,21
+135019,484232.8221,523398.6446,0,21
+135020,486090.3389,524398.3394,0,21
+135021,487193.9735,528177.6047,0,21
+135022,488244.4089,530095.2824,0,21
+135023,489105.3208,533087.7005,0,21
+135024,490942.7559,535141.2226,0,21
+135025,491875.4655,537298.3386,0,21
+135026,492592.194,540609.7058,0,21
+135027,494338.2704,541997.2555,0,21
+135028,495271.2244,546220.5505,0,21
+135029,496663.509,547536.9319,0,21
+135030,497884.4289,551102.0218,0,21
+135031,498718.3086,552613.3688,0,21
+135032,500173.2637,555326.4646,0,21
+135033,500465.4766,557369.2789,0,21
+135034,501916.0415,560296.2794,0,21
+135035,502682.6251,564281.6638,0,21
+135036,503835.1646,564450.9373,0,21
+135037,504449.9569,568295.1464,0,21
+135038,505350.1,570119.3407,0,21
+135039,509787.6383,572837.271,0,21
+135040,510560.3451,575178.2418,0,21
+135041,512154.4801,577239.7062,0,21
+135042,512821.2141,579458.4477,0,21
+135043,514258.8369,582695.277,0,21
+135044,514899.188,583930.6365,0,21
+135045,516467.5178,587782.0733,0,21
+135046,516918.5917,588331.5079,0,21
+135047,518456.6182,591996.943,0,21
+135048,518949.3418,594117.1808,0,21
+135049,520276.1821,595849.7313,0,21
+135050,521490.2796,598389.279,0,21
+135051,521910.2752,601973.7753,0,21
+135052,523425.833,602484.1098,0,21
+135053,524054.0433,606477.6967,0,21
+135054,525333.7584,606679.8815,0,21
+135055,525930.8509,611471.712,0,21
+135056,527637.8009,612756.9383,0,21
+135057,527722.3061,615795.3991,0,21
+135058,529508.0782,617159.8652,0,21
+135059,529460.0625,620807.7605,0,21
+135060,531381.115,622459.9196,0,21
+135061,533448.9482,632774.5549,0,21
+135062,533923.3361,636891.3,0,21
+135063,534036.3935,638567.811,0,21
+135064,533862.3223,640920.0461,0,21
+135065,534481.6561,645134.225,0,21
+135066,533442.8422,644897.1366,0,21
+135067,534319.5057,649780.13,0,21
+135068,533741.7587,650683.4368,0,21
+135069,534184.8816,653646.1723,0,21
+135070,533484.7757,655983.0399,0,21
+135071,534260.275,658886.7726,0,21
+135072,533475.6245,660487.0391,0,21
+135073,533529.5601,663452.0892,0,21
+135074,533855.6837,665427.4884,0,21
+135075,533693.6086,667604.3586,0,21
+135076,533213.4614,670175.1533,0,21
+135077,533747.4694,673444.1386,0,21
+135078,533274.6586,673760.8039,0,21
+135079,533151.6829,677909.9983,0,21
+135080,533262.9143,679773.368,0,21
+135081,533261.797,682363.8987,0,21
+135082,532775.9924,684081.1945,0,21
+135083,532645.1082,686817.4365,0,21
+135084,533057.1708,688483.0228,0,21
+135085,532471.632,692189.8091,0,21
+135086,532754.3781,693856.6421,0,21
+135087,532382.5405,694684.9822,0,21
+135088,531929.6275,700112.5298,0,21
+135089,532251.3774,699797.9377,0,21
+135090,532367.0484,702246.72,0,21
+135091,531704.1991,705902.1271,0,21
+135092,531628.6427,706612.1966,0,21
+135093,532077.6573,709376.2795,0,21
+135094,531274.1594,709262.1345,0,21
+135095,531497.0126,714463.651,0,21
+135096,531292.8081,714297.1698,0,21
+135097,531153.175,716009.4894,0,21
+135098,530816.334,719727.9,0,21
+135099,531050.4687,719580.2629,0,21
+135100,531911.3599,722117.6687,0,21
+135101,532424.2978,724491.6008,0,21
+135102,531874.5041,729254.0575,0,21
+135103,531589.2316,729296.187,0,21
+135104,538697.8732,733472.9406,0,21
+135105,534980.0362,734990.3528,0,21
+135106,536747.8093,736251.2068,0,21
+135107,536505.696,737620.2632,0,21
+135108,537968.9891,741668.7757,0,21
+135109,537892.1008,741783.7164,0,21
+135110,536994.6725,743546.8182,0,21
+135111,538952.7943,745933.908,0,21
+135112,538806.0624,747771.26,0,21
+135113,538955.9034,749161.0888,0,21
+135114,539500.3127,751569.2529,0,21
+135115,540216.406,752422.8932,0,21
+135116,538773.3934,755162.777,0,21
+135117,541584.6768,756102.9057,0,21
+135118,539525.4014,758927.8484,0,21
+135119,541057.1507,758946.9908,0,21
+135120,541495.0718,762946.4073,0,21
+135121,541911.1989,763532.2611,0,21
+135122,543095.2809,766499.6464,0,21
+135123,544592.1839,768599.0893,0,21
+135124,544791.6891,768752.4683,0,21
+135125,545484.1754,771169.1301,0,21
+135126,547122.6654,772938.0394,0,21
+135127,545953.3895,773948.8687,0,21
+135128,548757.9101,775530.2249,0,21
+135129,547383.744,777041.4415,0,21
+135130,549347.218,779870.7631,0,21
+135131,549224.9843,779526.0451,0,21
+135132,550778.9855,780990.4783,0,21
+135133,550177.9899,783915.9639,0,21
+135134,551851.1,785423.4582,0,21
+135135,551962.3929,784293.5548,0,21
+135136,552849.1067,789644.0943,0,21
+135137,552986.8338,787752.5368,0,21
+135138,554151.6429,790438.6562,0,21
+135139,554593.3681,793098.031,0,21
+135140,554623.1253,792316.4072,0,21
+135141,556017.9944,794932.4929,0,21
+135142,556655.6751,797013.4633,0,21
+135143,556462.6569,796937.9241,0,21
+135144,557821.9163,799425.9085,0,21
+135145,558287.3044,800549.8005,0,21
+135146,558049.9249,802402.4503,0,21
+135147,559855.7138,802529.8862,0,21
+135148,559884.1548,804939.0614,0,21
+135149,560019.6558,806267.3585,0,21
+135150,561369.6926,806782.3456,0,21
+135151,561621.2465,808679.9181,0,21
+135152,561609.9602,811526.9543,0,21
+135153,562837.7777,810684.5106,0,21
+135154,563246.6924,811941.4011,0,21
+135155,563363.1359,815457.9189,0,21
+135156,565068.8311,814600.2094,0,21
+135157,563594.756,817416.9622,0,21
+135158,566571.9498,818291.7007,0,21
+135159,565421.7526,819430.9096,0,21
+135160,566518.0721,820759.2572,0,21
+135161,567342.7638,822473.4256,0,21
+135162,566805.6945,823232.6052,0,21
+135163,568570.3881,824565.3236,0,21
+135164,568660.6707,826624.7027,0,21
+135165,568502.9539,827276.6291,0,21
+135166,570719.2452,829340.703,0,21
+135167,568962.8543,829406.0498,0,21
+135168,571126.1459,831202.6845,0,21
+135169,571612.4475,832961.7453,0,21
+135170,570762.8722,833173.5292,0,21
+135171,573429.67,835565.3078,0,21
+135172,572111.8464,836529.2367,0,21
+135173,572512.5003,837953.8865,0,21
+135174,574994.831,839010.1922,0,21
+135175,572629.9883,840237.5945,0,21
+135176,575561.4369,841255.8259,0,21
+135177,575234.1922,842326.2548,0,21
+135178,575613.7509,844569.4052,0,21
+135179,575721.5055,844501.6293,0,21
+135180,577231.5516,847548.2729,0,21
+135181,0,0,0,21
+135182,0,0,0,21
+135183,0,0,0,21
+135184,0,106.5297182,0,21
+135185,0,0,1154286.748,21
+135186,0,0,0,21
+135187,339720.7085,0,0,21
+135188,0,133.4389684,0,21
+135189,0,0,0,21
+135190,0,0,0,21
+135191,0,0,0,21
+135192,0,98.95594185,0,21
+135193,0,368153.1692,0,21
+135194,0,0,0,21
+135195,0,0,0,21
+135196,0,72.87611556,0,21
+135197,0,0,0,21
+135198,0,0,0,21
+135199,0,0,0,21
+135200,0,0,0,21
+135201,0,381.1960169,0,21
+135202,0,0,0,21
+135203,0,0,0,21
+135204,0,0,0,21
+135205,0,0,0,21
+135206,0,7.175118986,0,21
+135207,0,0,0,21
+135208,0,126.0474856,0,21
+135209,0,0,0,21
+135210,0,0,0,21
+135211,0,0,0,21
+135212,0,0,0,21
+135213,0,215.8898558,0,21
+135214,0,0,0,21
+135215,0,0,0,21
+135216,0,0,0,21
+135217,0,0,0,21
+135218,0,0,0,21
+135219,0,0,1113712.066,21
+135220,0,122.3843659,0,21
+135221,0,0,0,21
+135222,0,0,0,21
+135223,339726.061,0,0,21
+135224,0,0,0,21
+135225,0,199.4489278,0,21
+135226,0,0,0,21
+135227,0,0,0,21
+135228,0,0,0,21
+135229,0,0,0,21
+135230,0,368152.1734,0,21
+135231,0,0,0,21
+135232,0,0,0,21
+135233,0,0,0,21
+135234,0,0,0,21
+135235,0,0,0,21
+135236,0,0,0,21
+135237,0,0,0,21
+135238,0,0,0,21
+135239,0,0,0,21
+135240,0,0,0,15.6
+135241,0,0,0,15.6
+135242,0,422.3418335,0,15.6
+135243,0,0,0,15.6
+135244,0,0,0,15.6
+135245,0,0,0,15.6
+135246,0,0,0,15.6
+135247,0,0,0,15.6
+135248,0,0,0,15.6
+135249,0,0,0,15.6
+135250,0,0,0,15.6
+135251,0,0,0,15.6
+135252,0,0,0,15.6
+135253,0,0,0,15.6
+135254,0,0,1074247.604,15.6
+135255,0,0,0,15.6
+135256,0,0,0,15.6
+135257,0,0,0,15.6
+135258,0,0,0,15.6
+135259,339729.0565,0,0,15.6
+135260,0,0,0,15.6
+135261,0,0,0,15.6
+135262,0,0,0,15.6
+135263,0,0,0,15.6
+135264,0,0,0,15.6
+135265,0,0,0,15.6
+135266,0,0,0,15.6
+135267,0,0,0,15.6
+135268,0,368159.0472,0,15.6
+135269,0,0,0,15.6
+135270,0,0,0,15.6
+135271,0,0,0,15.6
+135272,0,0,0,15.6
+135273,0,0,0,15.6
+135274,0,0,0,15.6
+135275,0,0,0,15.6
+135276,0,0,0,15.6
+135277,0,0,0,15.6
+135278,0,0,0,15.6
+135279,0,0,0,15.6
+135280,0,0,0,15.6
+135281,0,0,0,15.6
+135282,0,0,0,15.6
+135283,0,0,0,15.6
+135284,0,0,0,15.6
+135285,0,0,0,15.6
+135286,0,0,0,15.6
+135287,0,0,0,15.6
+135288,0,0,0,15.6
+135289,0,0,1040300.884,15.6
+135290,0,0,0,15.6
+135291,0,0,0,15.6
+135292,0,0,0,15.6
+135293,0,0,0,15.6
+135294,0,0,0,15.6
+135295,339727.5177,0,0,15.6
+135296,0,0,0,15.6
+135297,0,0,0,15.6
+135298,0,0,0,15.6
+135299,0,0,0,15.6
+135300,0,0,0,15.6
+135301,0,0,0,15.6
+135302,0,0,0,15.6
+135303,0,0,0,15.6
+135304,0,0,0,15.6
+135305,0,0,0,15.6
+135306,0,368162.2605,0,15.6
+135307,0,0,0,15.6
+135308,0,0,0,15.6
+135309,0,0,0,15.6
+135310,0,0,0,15.6
+135311,0,0,0,15.6
+135312,0,0,0,15.6
+135313,0,0,0,15.6
+135314,0,0,0,15.6
+135315,0,0,0,15.6
+135316,0,0,0,15.6
+135317,0,0,0,15.6
+135318,0,0,0,15.6
+135319,0,0,0,15.6
+135320,0,0,0,15.6
+135321,0,0,0,15.6
+135322,0,0,0,15.6
+135323,0,0,0,15.6
+135324,0,0,1008328.276,15.6
+135325,0,0,0,15.6
+135326,0,0,0,15.6
+135327,0,0,0,15.6
+135328,0,0,0,15.6
+135329,47107.86163,0,0,15.6
+135330,1106.966253,0,0,15.6
+135331,2054.63875,0,0,15.6
+135332,351806.235,0,0,15.6
+135333,12229.91034,0,0,15.6
+135334,9375.704805,0,0,15.6
+135335,10325.17141,0,0,15.6
+135336,10294.48027,0,0,15.6
+135337,10370.39007,0,0,15.6
+135338,10365.94239,0,0,15.6
+135339,10390.06795,0,0,15.6
+135340,10382.48936,0,0,15.6
+135341,10451.67361,0,0,15.6
+135342,10461.27257,0,0,15.6
+135343,10451.67824,0,0,15.6
+135344,10518.27151,368142.4116,0,15.6
+135345,10506.28621,0,0,15.6
+135346,10519.45171,0,0,15.6
+135347,10567.58568,0,0,15.6
+135348,10580.30361,0,0,15.6
+135349,10607.92473,0,0,15.6
+135350,10629.54411,0,0,15.6
+135351,10624.25597,0,0,15.6
+135352,10680.57548,0,0,15.6
+135353,10690.56244,0,0,15.6
+135354,10686.13777,0,0,15.6
+135355,10745.8889,0,0,15.6
+135356,10725.11739,0,0,15.6
+135357,10801.10716,0,0,15.6
+135358,10769.71031,0,0,15.6
+135359,0,0,979419.6018,15.6
+135360,0,0,0,15.6
+135361,0,0,0,15.6
+135362,0,0,0,15.6
+135363,0,0,0,15.6
+135364,0,0,0,15.6
+135365,0,0,0,15.6
+135366,0,0,0,15.6
+135367,0,0,0,15.6
+135368,54010.41208,0,0,15.6
+135369,339795.9597,0,0,15.6
+135370,2735.061438,26041.54756,0,15.6
+135371,14318.67443,0,0,15.6
+135372,13343.77239,0,0,15.6
+135373,10859.56143,9886.008004,0,15.6
+135374,11739.27732,8155.513237,0,15.6
+135375,11887.34863,6843.196548,0,15.6
+135376,11848.55795,8493.590269,0,15.6
+135377,11941.49753,8442.400183,0,15.6
+135378,11954.64957,8500.303657,0,15.6
+135379,12047.25408,8719.265878,0,15.6
+135380,12060.34576,8829.341746,0,15.6
+135381,12078.10329,8916.301077,0,15.6
+135382,12188.61333,377221.7023,0,15.6
+135383,12192.56937,9175.42121,0,15.6
+135384,12261.37299,9313.243746,0,15.6
+135385,12293.45981,9410.924569,0,15.6
+135386,12354.50353,9563.628589,0,15.6
+135387,12377.33247,9644.614916,0,15.6
+135388,12464.1464,9729.501596,0,15.6
+135389,12458.70628,9876.543757,0,15.6
+135390,12543.65019,9998.442574,0,15.6
+135391,12562.52758,10097.31641,0,15.6
+135392,12635.86306,10168.47897,0,15.6
+135393,12665.97016,10307.68073,0,15.6
+135394,12703.71968,10442.74082,953634.6086,15.6
+135395,12804.24952,10464.06041,0,15.6
+135396,12769.03655,10650.86512,0,15.6
+135397,12871.72992,10684.06126,0,15.6
+135398,0,10848.29206,0,15.6
+135399,0,10908.68115,0,15.6
+135400,0,0,0,15.6
+135401,0,0,0,15.6
+135402,0,0,0,15.6
+135403,0,0,0,15.6
+135404,62056.74361,0,0,15.6
+135405,0,0,0,15.6
+135406,342051.3586,38747.81836,0,15.6
+135407,18365.53033,3343.1161,0,15.6
+135408,14359.90826,5392.822155,0,15.6
+135409,12759.70842,15763.60178,0,15.6
+135410,13558.22487,11995.79208,0,15.6
+135411,13601.50691,11850.14383,0,15.6
+135412,13669.12129,12214.41123,0,15.6
+135413,13672.38582,12331.07802,0,15.6
+135414,13747.67871,12412.01424,0,15.6
+135415,13757.59264,12516.89834,0,15.6
+135416,13800.52131,12579.05879,0,15.6
+135417,13836.96476,12678.30938,0,15.6
+135418,13904.81871,12751.9477,0,15.6
+135419,13901.89229,12838.97731,0,15.6
+135420,13981.52342,381030.0957,0,15.6
+135421,13957.70601,12981.58467,0,15.6
+135422,14074.56541,13376.6865,0,15.6
+135423,14064.94621,13023.4945,0,15.6
+135424,14124.7262,13112.08825,0,15.6
+135425,14146.54009,13117.76555,0,15.6
+135426,14199.71003,13125.98385,0,15.6
+135427,14233.70187,99680.88915,0,15.6
+135428,14258.24125,13236.78886,0,15.6
+135429,14325.69552,13270.63607,929347.7903,15.6
+135430,14355.62794,13273.61976,0,15.6
+135431,14381.7096,13338.36029,0,15.6
+135432,14438.87354,13364.26149,0,15.6
+135433,14450.50582,13391.89863,0,15.6
+135434,0,13411.86346,0,15.6
+135435,0,13498.95166,0,15.6
+135436,0,0,0,15.6
+135437,0,0,0,15.6
+135438,0,0,0,15.6
+135439,66691.51229,0,0,15.6
+135440,0,45756.73777,0,15.6
+135441,2454.052474,1166.196039,0,15.6
+135442,23378.84747,8430.491097,0,15.6
+135443,353681.4994,18694.44298,0,15.6
+135444,14727.24455,12850.52854,0,15.6
+135445,15066.8925,13759.10814,0,15.6
+135446,15101.59829,100347.2835,0,15.6
+135447,15134.48528,13861.92049,0,15.6
+135448,15175.17362,13898.13828,0,15.6
+135449,15188.20586,13884.70868,0,15.6
+135450,15255.79612,13937.4842,0,15.6
+135451,15263.68231,13931.34406,0,15.6
+135452,15282.39172,13981.08558,0,15.6
+135453,15342.16751,13970.56144,0,15.6
+135454,15365.15515,14020.18223,0,15.6
+135455,15414.34908,14011.09324,0,15.6
+135456,15424.49241,14036.70188,0,15.6
+135457,15437.69761,14072.91987,0,15.6
+135458,15528.87668,382185.5337,0,15.6
+135459,15509.98414,14063.65401,0,15.6
+135460,15576.85019,14125.36286,0,15.6
+135461,15589.63426,14119.119,0,15.6
+135462,15616.49639,14129.50055,0,15.6
+135463,15682.46882,14197.15932,0,15.6
+135464,15695.8625,14129.49626,907707.1659,15.6
+135465,15741.36813,14347.18067,0,15.6
+135466,15742.83443,14198.24586,0,15.6
+135467,15833.69824,14226.95651,0,15.6
+135468,15814.25871,14234.35378,0,15.6
+135469,0,14243.80199,0,15.6
+135470,0,0,0,15.6
+135471,0,114.364294,0,15.6
+135472,0,0,0,15.6
+135473,67506.50519,0,0,15.6
+135474,0,51001.25172,0,15.6
+135475,4937.400084,773.7694537,0,15.6
+135476,25108.21083,7874.823924,0,15.6
+135477,14517.54177,19794.4782,0,15.6
+135478,16081.73649,13545.13493,0,15.6
+135479,16277.05929,100835.293,0,15.6
+135480,355948.2726,14354.85676,0,15.6
+135481,16290.09732,14419.98082,0,15.6
+135482,16258.50807,14428.99071,0,15.6
+135483,16269.79522,14419.97643,0,15.6
+135484,16279.18224,14419.9743,0,15.6
+135485,16269.40645,14452.05361,0,15.6
+135486,16297.72148,14461.84904,0,15.6
+135487,16277.0388,14435.63235,0,15.6
+135488,16316.21184,14468.87139,0,15.6
+135489,16245.43232,14458.35803,0,15.6
+135490,16316.20562,14462.15904,0,15.6
+135491,16341.52055,14493.92492,0,15.6
+135492,16264.32715,14484.88474,0,15.6
+135493,16323.01761,14487.17609,0,15.6
+135494,16342.23229,14501.29781,0,15.6
+135495,16269.37484,14523.15775,0,15.6
+135496,16369.67327,382534.1198,0,15.6
+135497,16295.50219,14523.15376,0,15.6
+135498,16336.03163,14516.83914,0,15.6
+135499,16316.17446,14523.1498,888186.7643,15.6
+135500,16346.84881,14513.65335,0,15.6
+135501,16330.96803,14431.85016,0,15.6
+135502,16334.19427,14473.86336,0,15.6
+135503,0,14458.29601,0,15.6
+135504,0,0,0,15.6
+135505,0,0,0,15.6
+135506,0,0,0,15.6
+135507,68643.18071,0,0,15.6
+135508,0,52656.13412,0,15.6
+135509,6184.452352,484.9667258,0,15.6
+135510,24998.52314,7645.294558,0,15.6
+135511,14825.32125,20152.22563,0,15.6
+135512,16394.83089,13669.54138,0,15.6
+135513,16430.26896,14350.61167,0,15.6
+135514,16451.42399,14496.44513,0,15.6
+135515,16411.85943,14502.26829,0,15.6
+135516,16431.75481,14479.98867,0,15.6
+135517,356137.0794,14483.22454,0,15.6
+135518,16406.52493,14498.42779,0,15.6
+135519,16449.63209,14463.48609,0,15.6
+135520,16367.44087,14476.36837,0,15.6
+135521,16457.67434,14479.97921,0,15.6
+135522,16392.64998,14517.41771,0,15.6
+135523,16411.81796,14462.8188,0,15.6
+135524,16431.71283,14427.28947,0,15.6
+135525,16393.02047,14440.50218,0,15.6
+135526,16424.06007,14459.42903,0,15.6
+135527,16388.029,14398.38459,0,15.6
+135528,16416.33016,14494.90306,0,15.6
+135529,16388.01759,14438.97689,0,15.6
+135530,16411.0528,14375.87921,0,15.6
+135531,16393.32508,14397.65263,0,15.6
+135532,16392.59342,14359.3215,0,15.6
+135533,16385.81558,14371.14515,0,15.6
+135534,16392.96812,14439.45234,869979.791,15.6
+135535,16385.8034,382385.5661,0,15.6
+135536,16392.56899,14357.90493,0,15.6
+135537,0,14318.19788,0,15.6
+135538,0,3.536213947,0,15.6
+135539,0,0,0,15.6
+135540,0,0,0,15.6
+135541,905538.8257,1175917.549,0,15.6
+135542,577365.4091,405912.3093,0,15.6
+135543,226739.0707,185227.4029,0,15.6
+135544,233212.5495,263301.88,0,15.6
+135545,310107.245,300844.6329,0,15.6
+135546,264695.9987,279302.5664,0,15.6
+135547,263958.7455,266862.6949,0,15.6
+135548,261936.4172,358267.8712,0,15.6
+135549,261169.4299,270036.8986,0,15.6
+135550,260182.7361,270233.3516,0,15.6
+135551,259262.4374,269640.6571,0,15.6
+135552,258676.4434,268945.0905,0,15.6
+135553,257769.9876,268680.1569,0,15.6
+135554,597333.547,268431.6303,0,15.6
+135555,256631.8909,267962.9655,0,15.6
+135556,256011.8323,267952.7071,0,15.6
+135557,255605.7846,267174.0752,0,15.6
+135558,255212.0442,267786.274,0,15.6
+135559,254245.5003,267582.1794,0,15.6
+135560,254409.8893,267320.9558,0,15.6
+135561,253327.9165,267089.3426,0,15.6
+135562,253429.9765,266884.159,0,15.6
+135563,252680.7016,266710.5958,0,15.6
+135564,252297.205,266626.8972,0,15.6
+135565,251847.4474,266103.1721,0,15.6
+135566,251883.6845,265623.4969,0,15.6
+135567,251029.0632,265730.234,0,15.6
+135568,250909.8073,264798.9991,853442.4042,15.6
+135569,250496.3168,265512.3166,0,15.6
+135570,250053.7941,262491.7118,0,15.6
+135571,0,78.85936081,0,15.6
+135572,0,368040.4713,0,15.6
+135573,86208.43739,90147.74128,0,15.6
+135574,38444.7842,663347.3714,0,15.6
+135575,740886.8472,164559.436,0,15.6
+135576,170425.934,274146.9744,0,15.6
+135577,151994.9028,281663.3235,0,15.6
+135578,312291.5157,259452.2183,0,15.6
+135579,241507.9866,261541.8763,0,15.6
+135580,247879.4611,261792.0786,0,15.6
+135581,247223.8237,261239.2006,0,15.6
+135582,247655.4577,261492.1052,0,15.6
+135583,246743.4273,261305.8445,0,15.6
+135584,246743.4715,260949.6687,0,15.6
+135585,246347.3901,260902.564,0,15.6
+135586,246355.6297,261136.5026,0,15.6
+135587,245956.2318,261113.757,0,15.6
+135588,245674.9818,260678.8021,0,15.6
+135589,585264.8292,260771.9226,0,15.6
+135590,245142.3144,260768.2874,0,15.6
+135591,245238.182,260442.9847,0,15.6
+135592,244465.9859,260881.5498,0,15.6
+135593,244807.5577,260330.9994,0,15.6
+135594,244298.4217,260865.0777,0,15.6
+135595,244004.5645,260252.4829,0,15.6
+135596,244419.247,261599.7791,0,15.6
+135597,243390.384,261292.0341,0,15.6
+135598,243616.2699,261179.771,0,15.6
+135599,243798.6793,261319.1201,0,15.6
+135600,242929.9747,261167.3229,0,17.8
+135601,1109409.093,1896195.222,0,17.8
+135602,1092448.605,1318636.211,838533.4618,17.8
+135603,501622.5278,202068.9737,0,17.8
+135604,701385.6793,226149.2075,0,17.8
+135605,72726.70172,1028342.846,0,17.8
+135606,107337.0499,480641.7775,0,17.8
+135607,914299.6619,1043174.234,0,17.8
+135608,637431.0022,533304.1922,0,17.8
+135609,528740.4077,593894.3523,0,17.8
+135610,529717.3423,646842.2322,0,17.8
+135611,509298.7328,602972.6504,0,17.8
+135612,521886.0626,612454.5008,0,17.8
+135613,514240.5263,612695.3518,0,17.8
+135614,508524.5871,610923.4092,0,17.8
+135615,510173.2803,611576.4595,0,17.8
+135616,506746.7,612647.1308,0,17.8
+135617,506552.5308,610200.7086,0,17.8
+135618,504708.9641,612971.7709,0,17.8
+135619,503901.2029,611796.1641,0,17.8
+135620,503554.7834,610807.9368,0,17.8
+135621,503481.9767,612579.5502,0,17.8
+135622,501856.6561,613033.0266,0,17.8
+135623,500922.1131,612078.0507,0,17.8
+135624,840238.3183,613478.5982,0,17.8
+135625,499260.3051,614114.1014,0,17.8
+135626,498209.3617,614448.4836,0,17.8
+135627,498218.6329,613934.8794,0,17.8
+135628,496541.0226,616022.6328,0,17.8
+135629,496649.8799,614281.9515,19298.77505,17.8
+135630,495590.3212,617428.1904,12475.68359,17.8
+135631,494943.7363,596693.7666,13229.52033,17.8
+135632,493961.4217,597257.2461,18817.75127,17.8
+135633,494236.3994,597118.994,26134.46992,17.8
+135634,407217.3638,506726.0273,21797.3459,17.8
+135635,407336.0046,51054.87716,24486.77854,17.8
+135636,529514.492,165614.1924,857144.5368,17.8
+135637,116362.2977,1181226.579,25961.46385,17.8
+135638,97262.11791,411990.1337,26502.63704,17.8
+135639,926104.2277,672811.5549,27579.38052,17.8
+135640,558269.4163,530209.5671,28016.75589,17.8
+135641,486405.4359,593284.6084,28764.54642,17.8
+135642,444038.1332,1020005.601,29624.1544,17.8
+135643,502765.5262,623894.0851,30161.03954,17.8
+135644,475685.6096,623646.8882,31011.10707,17.8
+135645,474029.584,628566.8942,31658.61828,17.8
+135646,474393.3767,631573.2459,32293.93513,17.8
+135647,513275.7412,632037.8641,32939.79155,17.8
+135648,475592.3468,631541.3989,33573.87048,17.8
+135649,486453.6329,634312.395,34218.27891,17.8
+135650,487208.9587,634422.7738,35060.28324,17.8
+135651,487191.1713,634406.5937,40359.5354,17.8
+135652,486962.2573,637134.4673,39058.89672,17.8
+135653,486938.9373,637111.0437,0,17.8
+135654,485626.1232,639070.3958,0,17.8
+135655,486078.8918,638473.136,0,17.8
+135656,485694.78,641293.6404,0,17.8
+135657,485876.524,640956.6335,0,17.8
+135658,484971.0214,642599.6538,0,17.8
+135659,825096.4113,643348.1045,0,17.8
+135660,484717.5218,645279.9243,0,20
+135661,2309829.888,2600436.492,1012964.105,20
+135662,782343.3715,1843587.399,0,20
+135663,492591.4434,617916.4719,33997.72552,20
+135664,631124.3708,810665.8233,171735.8536,20
+135665,696630.1279,813918.8232,166374.7377,20
+135666,614433.6392,998106.3093,131091.482,20
+135667,619376.993,823490.2834,140936.7527,20
+135668,616596.1021,863459.3138,142413.6395,20
+135669,614529.8642,861247.5841,142693.4552,20
+135670,612974.8513,858079.6983,143509.2753,20
+135671,610917.514,857554.7536,143833.935,20
+135672,610265.8169,855008.1639,144197.6988,20
+135673,607405.7553,854025.2814,144909.5224,20
+135674,607035.0222,851766.9822,145492.4832,20
+135675,603991.2179,852601.4218,145914.2043,20
+135676,604331.3751,850810.0698,146650.9859,20
+135677,602512.4588,848637.2961,147092.5225,20
+135678,601415.6284,849626.6584,147676.4661,20
+135679,600026.1871,846271.6309,148650.1751,20
+135680,598669.1931,845745.2407,148822.6658,20
+135681,597470.8578,844236.7175,149932.2944,20
+135682,597461.4928,928365.0041,150229.6971,20
+135683,595004.9957,841609.7998,151303.8264,20
+135684,595852.9646,837317.9312,151745.9837,20
+135685,592821.0848,839083.4081,152426.7237,20
+135686,593422.0824,838011.0992,153180.0748,20
+135687,591976.6737,834826.9789,153749.3824,20
+135688,591459.5089,837237.4324,154687.8586,20
+135689,590680.7491,834409.5709,155671.9051,20
+135690,589072.5449,834171.4357,155626.8041,20
+135691,589978.0134,833672.9882,156929.6228,20
+135692,588045.0576,832105.9965,157320.6206,20
+135693,587337.1593,832790.7462,158587.6187,20
+135694,588136.5676,830043.8556,158762.1745,20
+135695,585895.1103,832236.9677,159889.2935,20
+135696,585577.2829,829413.8188,160454.9325,20
+135697,585144.8334,829519.3316,161288.1936,20
+135698,584596.5488,829836.702,161992.4817,20
+135699,584504.2969,828615.6251,162790.6771,20
+135700,583712.9819,916250.1848,163537.7095,20
+135701,582361.4999,827746.2349,164388.5716,20
+135702,583631.0207,826494.3894,164971.0653,20
+135703,581743.4055,828572.4207,165815.2331,20
+135704,581168.4394,826660.18,166532.3388,20
+135705,581689.0029,824836.1477,167475.3,20
+135706,580664.1589,829123.9753,167887.0993,20
+135707,580786.2457,826241.1938,169050.5616,20
+135708,579067.9513,827009.7334,169428.0077,20
+135709,581641.15,825436.9215,170553.7949,20
+135710,577519.7501,827023.3309,170985.9215,20
+135711,579908.6877,825031.3107,172298.0279,20
+135712,578490.0371,826138.3811,172513.4051,20
+135713,577956.1737,824518.0617,173462.3754,20
+135714,578184.8424,824714.4671,174385.2206,20
+135715,577384.94,822397.7753,174671.1085,20
+135716,577039.2181,826262.7583,175916.7058,20
+135717,568020.6712,822500.3143,176596.6091,20
+135718,563089.3765,910259.1496,177037.8617,20
+135719,563976.0758,824257.9395,178289.7726,20
+135720,560031.3838,823161.142,178776.6647,21
+135721,812904.4008,1636638.603,176000.4333,21
+135722,805543.3475,1630128.095,175615.8627,21
+135723,802151.3423,1627533.116,175135.0655,21
+135724,800961.1887,1623050.651,175997.4413,21
+135725,797238.5025,1619092.164,175755.956,21
+135726,795245.5589,1612603.038,176671.5263,21
+135727,792956.8272,1611311.705,177235.9818,21
+135728,790207.1472,1609726.128,176670.1572,21
+135729,787576.2625,1605714.336,178568.3664,21
+135730,786208.4201,1604706.576,178008.6498,21
+135731,783580.7138,1599872.244,178514.8006,21
+135732,780705.025,1598813.263,179605.6687,21
+135733,779422.5825,1595794.484,179674.5815,21
+135734,776611.4775,1592398.873,180469.4169,21
+135735,773722.7562,1590016.178,180076.2733,21
+135736,772246.4172,1585530.326,181700.5637,21
+135737,770444.2031,1584122.58,181529.2406,21
+135738,767672.853,1581420.103,182213.5596,21
+135739,765189.9362,1578145.868,182833.579,21
+135740,763838.917,1576882.033,183089.3853,21
+135741,761304.8814,1573712.996,183546.903,21
+135742,758705.2395,1570349.86,184280.1287,21
+135743,757191.7496,1569335.437,184662.5557,21
+135744,755020.4633,1566494.61,185267.7581,21
+135745,752728.8547,1562040.767,185754.0036,21
+135746,750995.0534,1563217.731,178322.7595,21
+135747,749549.2012,1557377.511,177839.0645,21
+135748,747531.6611,1556427.896,178549.771,21
+135749,744644.5695,1553612.63,178205.9421,21
+135750,743520.0797,1551350.063,179627.0789,21
+135751,741864.1535,1549834.976,179219.0759,21
+135752,738550.6382,1544846.686,179999.1949,21
+135753,738701.5973,1544780.371,180298.9342,21
+135754,733984.14,1540425.44,180464.9595,21
+135755,732829.8002,1538421.135,180426.9468,21
+135756,730184.5673,1536184.971,180305.0921,21
+135757,729135.9873,1533872.404,180296.6513,21
+135758,726244.0936,1529310.408,180596.349,21
+135759,724261.8856,1531400.8,180496.9436,21
+135760,722492.1443,1526196.738,180682.3772,21
+135761,719463.8728,1526025.643,180285.4367,21
+135762,718699.3332,1521014.403,181079.6122,21
+135763,716800.2412,1519489.316,180652.1929,21
+135764,713503.8963,1518343.426,180721.869,21
+135765,712080.101,1513113.624,180738.1163,21
+135766,710073.2032,1511247.562,181139.8405,21
+135767,708003.0132,1507544.163,180721.0284,21
+135768,706154.6625,1505679.067,181078.2181,21
+135769,703616.2482,1502201.706,181539.8182,21
+135770,702383.8074,1500478.332,180868.9286,21
+135771,699344.9527,1497252.904,181951.8449,21
+135772,697645.3122,1495692.349,181830.5025,21
+135773,696789.389,1492596.46,182248.4553,21
+135774,692649.9927,1489634.746,182498.1782,21
+135775,692273.9813,1488622.869,182515.8839,21
+135776,689926.7857,1484951.919,182799.8277,21
+135777,687294.3448,1483627.96,183169.4545,21
+135778,686277.3786,1479779.245,183200.4423,21
+135779,682843.9914,1479580.286,183515.605,21
+135780,681176.0279,1477751.073,184175.4002,21
+135781,508667.8719,1244929.896,77781.161,21
+135782,500101.7459,1228890.227,71251.58956,21
+135783,496321.6209,1224915.225,70463.38872,21
+135784,491296.0392,1222294.305,69187.60782,21
+135785,487490.7583,1220579.661,68189.54551,21
+135786,483444.143,1217600.442,67724.49988,21
+135787,479392.7313,1215656.37,66670.55381,21
+135788,475091.5461,1213593.278,66362.70148,21
+135789,471446.8822,1211583.309,65463.59852,21
+135790,467165.7359,1210396.71,64922.39886,21
+135791,463096.1311,1209178.568,64545.16923,21
+135792,459279.533,1207879.356,64010.70453,21
+135793,455547.5412,1205832.88,63673.32329,21
+135794,451324.779,1206826.414,63075.00933,21
+135795,449708.8085,1204655.764,62568.66586,21
+135796,446389.9964,1205520.308,62325.76368,21
+135797,443597.9226,1204797.2,61871.41048,21
+135798,441501.8916,1203211.641,61364.3781,21
+135799,438249.4763,1202773.612,60891.40717,21
+135800,436062.0785,1202573.77,60821.89029,21
+135801,431882.7927,1202751.922,60077.81349,21
+135802,429014.2701,1201829.505,59729.26561,21
+135803,426897.7725,1202107.501,59461.81858,21
+135804,423766.9198,1201418.152,58837.90471,21
+135805,421833.4385,1201405.803,58542.01732,21
+135806,418731.062,1201338.792,58265.68237,21
+135807,416436.3989,1200930.631,57730.43359,21
+135808,414086.7521,1201331.404,57352.44705,21
+135809,411427.1199,1200163.943,57022.35689,21
+135810,408926.8721,1200823.22,56533.75809,21
+135811,406756.0089,1200102.387,54718.11834,21
+135812,404244.6521,1199614.969,53489.56906,21
+135813,402254.6562,1198084.984,52440.90894,21
+135814,399527.6207,1197068.921,51682.98658,21
+135815,396999.6814,1196787.105,50879.57263,21
+135816,394887.5054,1195917.594,50122.20893,21
+135817,392692.9021,1195956.927,48144.29846,21
+135818,390333.1349,1195438.809,47349.89417,21
+135819,388352.3421,1194560.126,46402.34044,21
+135820,385875.6887,1194283.991,45531.37716,21
+135821,384143.1531,1193497.488,44563.43112,21
+135822,381389.6835,1193534.789,43757.16703,21
+135823,379990.0696,1193966.698,42889.90048,21
+135824,377368.1909,1194349.881,42875.65434,21
+135825,375579.5859,1192735.445,42298.53907,21
+135826,373392.134,1193503.548,41988.16111,21
+135827,371412.4164,1191776.259,41686.98625,21
+135828,368874.9792,1191269.728,41325.90456,21
+135829,367815.6525,1188903.687,41135.77071,21
+135830,364675.2405,1187621.112,41010.47191,21
+135831,363303.9364,1187210.519,40525.90673,21
+135832,361394.0054,1186244.478,40402.29652,21
+135833,358401.3761,1186010.482,40131.45378,21
+135834,356726.8059,1185685.117,39853.82755,21
+135835,354806.1859,1184948.935,39675.34527,21
+135836,352881.3881,1184506.663,39353.26277,21
+135837,350563.5584,1183829.11,39166.78268,21
+135838,348571.387,1183813.399,39050.13396,21
+135839,346780.6368,1183066.278,38774.01905,21
+135840,344752.1826,1182758.092,38456.88118,21
+135841,342359.8277,1176068.821,38334.99868,21
+135842,340436.4967,1170825.519,38177.70867,21
+135843,338155.5195,1164658.666,37973.80277,21
+135844,336085.1085,1158162.674,37802.87116,21
+135845,334340.8114,1153220.564,37752.31471,21
+135846,331816.1703,1146548.031,37422.50568,21
+135847,329714.3293,1140658.78,37407.48744,21
+135848,327924.7938,1134809.964,37228.40415,21
+135849,325735.058,1128854.106,36995.23055,21
+135850,323765.6042,1122494.691,36871.81035,21
+135851,321422.0603,1118535.387,36709.0377,21
+135852,319880.6346,1112699.061,36655.51442,21
+135853,317231.7893,1105484.373,36259.60831,21
+135854,315510.2404,1101130.415,36252.27227,21
+135855,313292.9466,1094007.416,36144.41716,21
+135856,311310.391,1086746.646,35869.85785,21
+135857,309484.9613,1080468.839,35775.58312,21
+135858,306888.8827,1072395.832,35489.39676,21
+135859,305253.1392,1067188.946,35548.11538,21
+135860,303153.2871,1060553.918,35125.03032,21
+135861,301027.4006,1054213.377,35147.88146,21
+135862,299012.2959,1049123.146,34929.17571,21
+135863,296626.8337,1041762.633,34626.75548,21
+135864,295125.8687,1036163.857,34320.60718,21
+135865,292442.931,1030511.14,34253.61686,21
+135866,290787.6498,1023354.764,34029.00822,21
+135867,288497.3378,1018321.458,33861.96238,21
+135868,286339.6729,1010933.297,33739.12465,21
+135869,284641.2924,1005787.632,33560.43395,21
+135870,281950.1957,999255.9658,33324.84384,21
+135871,280208.8402,993039.8522,33167.05168,21
+135872,277845.5867,987320.8864,33029.50577,21
+135873,275899.2134,981876.4401,32841.29669,21
+135874,273736.3033,975233.9654,32637.93215,21
+135875,271579.596,969856.2486,32439.23786,21
+135876,269659.8094,964017.8398,32234.83711,21
+135877,267302.9061,957868.7527,32386.22676,21
+135878,265505.8486,951952.858,32085.52847,21
+135879,262772.0206,946232.3501,31880.91118,21
+135880,261155.5645,940019.0894,31897.1334,21
+135881,258819.7272,934408.7388,31580.39501,21
+135882,256416.3892,928387.8789,31362.91155,21
+135883,254869.7798,923488.6763,31288.3268,21
+135884,252046.3199,917957.4257,31049.99298,21
+135885,250155.1841,911550.9314,30954.26481,21
+135886,247998.9857,905823.0328,30658.24619,21
+135887,245571.5915,900200.9202,30555.6206,21
+135888,243746.2748,894038.2471,30424.19277,21
+135889,241203.6844,888468.6735,30144.40439,21
+135890,238950.24,881186.3751,30016.48781,21
+135891,237136.9643,876001.9608,29813.7647,21
+135892,234067.2742,869497.1868,29611.42296,21
+135893,230502.7804,863973.8802,29481.68871,21
+135894,228698.3581,857590.114,29412.36727,21
+135895,225993.7472,852142.978,29055.48429,21
+135896,223687.2263,845979.1692,28976.14129,21
+135897,220961.1965,840223.4373,28665.12558,21
+135898,218277.2284,833944.6203,28734.98979,21
+135899,216390.2888,828332.4724,28394.97392,21
+135900,213470.5032,822497.5523,6040.172201,21
+135901,212665.6663,824150.596,5591.213064,21
+135902,210358.3146,822357.6382,5576.145693,21
+135903,207701.0126,819969.8372,5264.642779,21
+135904,205562.2185,817900.231,5576.925175,21
+135905,202629.0394,815362.5105,5234.312676,21
+135906,200253.8011,812869.8267,5265.733035,21
+135907,197655.5912,810884.5946,5093.936185,21
+135908,195117.0249,808532.6538,5078.709012,21
+135909,192450.0113,806504.6217,4921.946732,21
+135910,190021.2516,803526.137,4922.258809,21
+135911,186754.8979,801810.2689,4922.570836,21
+135912,183903.5118,799476.7118,4591.645397,21
+135913,181166.0286,797322.8679,4749.976416,21
+135914,178481.0203,794528.2833,4576.543338,21
+135915,175709.1801,792708.7529,4592.468568,21
+135916,172851.8508,791583.3496,4259.40516,21
+135917,170293.5947,789832.1463,4577.334884,21
+135918,167175.6235,786750.2298,4084.524072,21
+135919,164590.733,785247.425,4403.53681,21
+135920,161900.6134,782693.2252,3940.493836,21
+135921,158885.7775,780303.0938,4229.125041,21
+135922,156264.4472,778448.8483,3909.388197,21
+135923,153463.43,775511.9706,3764.520061,21
+135924,150807.5649,773910.6017,3909.774239,21
+135925,148021.9104,770004.9151,3733.293745,21
+135926,145364.7506,767863.4879,3587.786544,21
+135927,142835.6996,765462.2336,3556.277052,21
+135928,140158.2546,762960.1176,3588.116587,21
+135929,137424.6919,761246.007,3378.504014,21
+135930,134638.2249,758163.4672,3263.365089,21
+135931,132301.9658,757455.2829,3378.792191,21
+135932,129454.3036,755210.8655,3084.092053,21
+135933,126960.4269,753267.5299,3052.38,21
+135934,124479.2701,754673.4718,2887.938835,21
+135935,121623.5408,753035.4682,2738.535602,21
+135936,119650.0778,752175.105,2722.66491,21
+135937,117166.0757,750021.0116,2540.252778,21
+135938,114545.4242,748895.6148,2540.33548,21
+135939,111971.4697,747658.3881,2219.773201,21
+135940,109581.145,745737.9489,2203.7888,21
+135941,106934.5572,744943.9216,2203.850773,21
+135942,104240.4874,742864.6096,1844.509336,21
+135943,101609.5868,741541.3605,2017.242721,21
+135944,98657.84002,740866.8699,1669.022454,21
+135945,96164.14904,738921.9533,1669.057478,21
+135946,93225.28433,737551.9394,1471.485549,21
+135947,91416.25968,736263.4029,1471.512453,21
+135948,89750.03613,735431.2497,1471.539355,21
+135949,87220.98023,733535.3421,1422.924647,21
+135950,85788.06728,732813.6268,1422.949851,21
+135951,83709.91967,731199.0434,1422.975054,21
+135952,81682.14293,730809.5604,1390.464686,21
+135953,79799.1079,729816.2234,1374.188396,21
+135954,78013.70075,728503.4436,1374.211944,21
+135955,75831.57892,726991.1368,1341.568039,21
+135956,73915.59076,728579.5355,1341.59051,21
+135957,72012.93698,727957.57,1325.245561,21
+135958,70109.67255,726670.6547,1308.877469,21
+135959,68183.63208,726162.004,1292.48605,21
+135960,66142.99613,724501.3263,1276.071114,21
+135961,65652.70529,719087.9524,1325.33195,21
+135962,63939.93949,719049.5749,1292.549046,21
+135963,62846.99255,718525.7131,1308.983961,21
+135964,62588.63938,718934.6409,1292.591136,21
+135965,62039.97883,718634.9774,1292.612063,21
+135966,61538.3589,719235.6527,1276.195429,21
+135967,60974.82561,718828.57,1276.215839,21
+135968,60734.64975,719057.8268,1259.775207,21
+135969,59935.22124,719018.8328,1276.256426,21
+135970,59968.74611,718996.0764,1243.330499,21
+135971,59318.66856,719419.5997,1243.349891,21
+135972,59072.29716,718871.7258,1243.369281,21
+135973,58600.7153,719728.2614,24771.88762,21
+135974,58286.45727,719365.5316,24729.64656,21
+135975,57734.15431,719570.7677,24643.79511,21
+135976,57809.87114,720213.0105,24596.19539,21
+135977,57208.91353,721601.0668,24543.30643,21
+135978,57159.29577,722690.6438,24485.09763,21
+135979,56727.64986,723103.969,24404.94683,21
+135980,56690.82841,722555.2279,24379.71821,21
+135981,56350.31602,723778.1967,24283.42659,21
+135982,55886.36848,723638.1449,24263.68067,21
+135983,56011.6132,723944.2784,24178.61211,21
+135984,55381.88121,724057.9362,24126.34266,21
+135985,55515.14728,724633.5548,24074.1345,21
+135986,54891.27278,725031.6856,24022.06469,21
+135987,54693.47685,724923.7003,23953.72033,21
+135988,54677.44837,725224.1651,23890.68914,21
+135989,54211.20394,726234.4555,23850.00406,21
+135990,53923.48178,725443.8217,23782.00898,21
+135991,53850.61379,726301.2879,23730.41304,21
+135992,53363.07704,726682.5969,23667.84983,21
+135993,53465.23171,726298.4146,23643.86026,21
+135994,52848.58285,726961.9507,23565.13402,21
+135995,52829.7112,727470.1573,23525.028,21
+135996,52329.35872,726670.1687,23473.93042,21
+135997,52460.46037,728079.0779,23411.77009,21
+135998,51843.39563,727958.8559,23371.93426,21
+135999,51784.96735,727822.6879,23321.11144,21
+136000,51452.46569,728589.0855,23259.2147,21
+136001,51435.90364,728625.1142,23251.99882,21
+136002,50957.22172,729411.3636,23185.34348,21
+136003,50755.40345,729056.847,23134.84854,21
+136004,50449.79788,729857.3411,23100.59649,21
+136005,50227.75014,730109.4883,23039.25526,21
+136006,50090.87027,730388.7637,23011.12891,21
+136007,49884.96858,730939.237,22933.93236,21
+136008,49311.39191,731081.6692,22911.05562,21
+136009,49429.47911,731561.6649,22839.0436,21
+136010,49047.57143,732214.9814,22816.28314,21
+136011,48677.23632,731947.7384,22766.57014,21
+136012,48572.21694,732903.2823,22700.90567,21
+136013,48335.88258,733062.2464,22667.34458,21
+136014,47954.32179,733663.4595,22617.90832,21
+136015,47954.31828,733567.5861,22568.54295,21
+136016,47452.01909,734309.3614,22546.19021,21
+136017,47219.83816,735128.8728,22578.49598,21
+136018,47104.75365,735258.9439,22693.93758,21
+136019,46772.54292,735743.8116,22793.77339,21
+136020,46544.7039,736211.9638,22894.24231,21
+136021,56766.30777,763891.7692,23195.97469,21
+136022,57076.75233,762181.0937,28454.09753,21
+136023,56544.51272,760402.2532,25656.1004,21
+136024,57041.87965,756195.3613,25880.63082,21
+136025,56715.34989,753506.7709,25795.68098,21
+136026,56731.42591,751717.3533,25736.4269,21
+136027,56547.76231,749878.966,25451.93806,21
+136028,56715.38279,747560.8758,25397.36734,21
+136029,56369.10778,745908.9473,25232.51229,21
+136030,56823.53499,744329.0934,25147.63613,21
+136031,56352.98812,741734.2187,24876.16449,21
+136032,56352.99738,740533.179,24831.98642,21
+136033,56290.44731,738014.247,24635.5783,21
+136034,56336.83876,736351.5542,24565.77005,21
+136035,56301.58264,734344.2676,24302.60344,21
+136036,56119.22715,732512.7772,24221.94233,21
+136037,56144.29787,730257.05,24167.35919,21
+136038,56255.14112,728847.0683,23902.66326,21
+136039,55937.95695,726550.997,23914.97633,21
+136040,56086.71745,724664.2841,23649.54298,21
+136041,56070.61257,722699.6937,23579.53294,21
+136042,55758.07977,721028.6954,23400.40555,21
+136043,56046.34321,719693.5332,23231.47876,21
+136044,55872.14373,717975.442,23072.83439,21
+136045,55733.96971,716034.4922,22965.51506,21
+136046,55858.62232,714387.0862,22837.3705,21
+136047,55820.11363,711719.7317,22620.51881,21
+136048,55717.58655,710088.6751,22464.86821,21
+136049,55651.21212,708185.3425,22383.52206,21
+136050,55662.64163,706559.1466,22211.90085,21
+136051,55634.74416,702587.0068,21937.0425,21
+136052,55646.17363,701342.9258,21953.27275,21
+136053,55443.25863,699045.1829,21677.19226,21
+136054,55629.6666,697027.1446,21606.46802,21
+136055,55579.54806,694576.94,21420.86039,21
+136056,55305.08286,692958.2825,21245.5057,21
+136057,55715.47466,690868.2847,21053.51866,21
+136058,55269.16156,688713.2189,20986.97498,21
+136059,55563.0154,686579.4532,20702.47767,21
+136060,55233.15375,684127.9513,20738.52712,21
+136061,55510.36898,682573.3664,20319.3683,21
+136062,55269.18855,680104.8783,20373.34485,21
+136063,55474.23473,678212.9824,20185.34571,21
+136064,55197.07254,675613.7751,20007.01606,21
+136065,55357.59922,674244.562,19826.51691,21
+136066,54206.44136,671062.5129,19619.73354,21
+136067,54450.36941,669601.5313,19633.95771,21
+136068,54225.97155,667105.6566,19362.72557,21
+136069,54189.4995,665196.6274,19295.01184,21
+136070,54189.50609,662747.5948,19227.41348,21
+136071,54332.63939,660496.8311,19148.1135,21
+136072,53856.34922,658234.9595,19080.67572,21
+136073,54244.13049,656230.1236,19013.35723,21
+136074,54135.92055,653878.9004,18934.16991,21
+136075,54135.92719,654140.5342,18866.99538,21
+136076,53891.50242,652127.3953,18799.96259,21
+136077,54118.85457,650253.2455,18720.87289,21
+136078,54116.33418,647952.8358,18653.92645,21
+136079,53929.00425,645395.438,18587.1144,21
+136080,53938.65379,642761.0174,457.2923815,21
+136081,43726.12548,611674.0206,0,21
+136082,43209.80009,610296.279,0,21
+136083,43099.49665,607971.088,0,21
+136084,43007.30833,606418.4471,0,21
+136085,42981.78407,604264.446,0,21
+136086,42799.92867,602697.8359,0,21
+136087,42720.29794,600495.9667,0,21
+136088,42680.72804,598653.4785,0,21
+136089,42661.83523,596502.1012,0,21
+136090,42358.3817,594454.9198,0,21
+136091,42452.35953,592409.5583,0,21
+136092,42137.27839,590642.9121,0,21
+136093,42461.87436,588402.4937,0,21
+136094,41917.65042,586935.2955,0,21
+136095,42099.19858,584318.4649,0,21
+136096,41898.55593,582556.9366,0,21
+136097,42059.26049,580984.6202,0,21
+136098,41534.43324,578673.8753,0,21
+136099,41776.18209,578530.9959,0,21
+136100,41331.05914,577748.5905,0,21
+136101,41229.26368,575113.9008,0,21
+136102,41208.21087,574030.9112,0,21
+136103,40840.26209,571458.4342,0,21
+136104,40759.34834,569989.597,0,21
+136105,40554.50398,568277.7339,0,21
+136106,40186.94974,566164.0186,0,21
+136107,40182.17263,564208.2988,0,21
+136108,39981.12874,562647.0169,0,21
+136109,39782.52399,560222.4551,0,21
+136110,39597.31485,559175.2078,0,21
+136111,39339.96616,556166.7456,0,21
+136112,39297.00027,555072.0274,0,21
+136113,39029.37437,552429.5981,0,21
+136114,39089.23544,550430.7323,0,21
+136115,38830.97027,548852.2264,0,21
+136116,38550.54057,546048.6136,0,21
+136117,38779.86394,544124.8572,0,21
+136118,38281.00503,542298.6656,0,21
+136119,38741.04024,540285.1351,0,21
+136120,39133.35585,537744.6608,0,21
+136121,40134.5205,536051.7373,0,21
+136122,40821.28033,533846.0545,0,21
+136123,41598.2829,531867.6588,0,21
+136124,42341.34823,529768.5062,0,21
+136125,43207.64236,527424.7764,0,21
+136126,44194.29436,525244.9954,0,21
+136127,44927.09696,523724.1556,0,21
+136128,45762.97947,520844.2443,0,21
+136129,46669.65577,519345.9169,0,21
+136130,47548.3927,516762.5725,0,21
+136131,48623.29414,514805.099,0,21
+136132,49362.74798,512886.1817,0,21
+136133,50425.91147,510523.0419,0,21
+136134,51281.45946,508498.2339,0,21
+136135,52278.62512,506124.0875,0,21
+136136,53398.77268,504770.6825,0,21
+136137,54107.97531,501505.9334,0,21
+136138,55462.96877,500006.8357,0,21
+136139,56086.03986,497687.8164,0,21
+136140,57405.10105,495235.8124,0,21
+136141,55197.46811,499106.8672,0,21
+136142,53927.77981,497676.2311,0,21
+136143,54920.08237,495858.1983,0,21
+136144,59465.90261,495928.8715,0,21
+136145,54453.11436,494152.1289,0,21
+136146,54691.73187,492821.4173,0,21
+136147,54133.36735,491491.5109,0,21
+136148,53110.89582,490247.4138,0,21
+136149,52072.628,488300.9682,0,21
+136150,51281.03598,487173.2221,0,21
+136151,50491.33102,485930.1135,0,21
+136152,49604.58631,483060.4702,0,21
+136153,48425.62589,482337.302,0,21
+136154,47771.50629,480709.8958,0,21
+136155,46668.30817,478720.9453,0,21
+136156,45963.02101,477975.5883,0,21
+136157,44873.13031,476088.5456,0,21
+136158,44119.0559,474985.8549,0,21
+136159,43230.68568,473017.9193,0,21
+136160,42278.23688,472001.6136,0,21
+136161,41247.99326,470602.0386,0,21
+136162,40594.3551,468934.4089,0,21
+136163,39242.7287,467652.3637,0,21
+136164,39028.3036,465834.9762,0,21
+136165,38673.49425,464728.0238,0,21
+136166,38269.19751,463056.623,0,21
+136167,38022.36342,461608.7012,0,21
+136168,37579.77646,460475.8603,0,21
+136169,37075.52125,458322.1567,0,21
+136170,36796.91759,457729.7879,0,21
+136171,36294.1653,454648.2996,0,21
+136172,35848.66206,452828.8885,0,21
+136173,35160.41327,449684.1383,0,21
+136174,34870.87891,447903.6904,0,21
+136175,34178.75785,442983.2829,0,21
+136176,33760.09861,440029.4743,0,21
+136177,33070.2934,437979.0324,0,21
+136178,32525.10039,435411.2742,0,21
+136179,31827.73433,433223.0097,0,21
+136180,31188.24522,430112.6905,0,21
+136181,30676.25503,428240.777,0,21
+136182,29818.65182,425192.6979,0,21
+136183,29069.63681,422482.9225,0,21
+136184,28332.91908,419590.4928,0,21
+136185,27860.43758,415775.3202,0,21
+136186,26684.9717,410709.3934,0,21
+136187,26113.6543,408649.1275,0,21
+136188,25335.44894,405710.4386,0,21
+136189,24290.05807,402887.179,0,21
+136190,23645.91829,399845.2918,0,21
+136191,22561.87045,397290.6497,0,21
+136192,21967.14699,394446.6683,0,21
+136193,20978.91022,391288.614,0,21
+136194,19724.4529,388521.0218,0,21
+136195,19178.11843,385334.1088,0,21
+136196,18108.51835,382940.9333,0,21
+136197,17056.48433,379739.5125,0,21
+136198,16174.79,376631.0879,0,21
+136199,15147.93749,373911.3523,0,21
+136200,14087.65379,370826.4262,0,21
+136201,7892.457253,357928.8821,0,21
+136202,7426.851887,350305.6102,0,21
+136203,7507.642781,342234.4025,0,21
+136204,7569.403069,335013.9949,0,21
+136205,7444.515869,327457.304,0,21
+136206,7638.523845,320363.5258,0,21
+136207,7493.46566,312531.0607,0,21
+136208,7790.878384,305193.121,0,21
+136209,7490.55446,297521.3279,0,21
+136210,7818.297667,290473.4809,0,21
+136211,7722.376225,282697.9003,0,21
+136212,7742.815144,276034.0163,0,21
+136213,7966.920554,268773.6142,0,21
+136214,7634.774671,261329.314,0,21
+136215,8085.371779,253323.3345,0,21
+136216,7876.096962,246283.6491,0,21
+136217,8118.742491,238728.2072,0,21
+136218,7912.823055,230790.4189,0,21
+136219,8115.44972,223443.9541,0,21
+136220,8151.230099,216100.0475,0,21
+136221,8139.355098,207914.9451,0,21
+136222,8276.482885,200836.3513,0,21
+136223,8154.035811,192755.2646,0,21
+136224,8413.053234,185085.6059,0,21
+136225,8270.362665,177440.2327,0,21
+136226,8426.899203,169853.8588,0,21
+136227,8402.991806,161928.2296,0,21
+136228,8558.642989,154162.6441,0,21
+136229,8530.31033,146248.1494,0,21
+136230,8563.330772,137823.1962,0,21
+136231,8669.528807,129646.088,0,21
+136232,9062.014582,122105.5524,0,21
+136233,9895.612687,114327.1722,0,21
+136234,10538.54633,106552.3768,0,21
+136235,11480.38437,98900.60359,0,21
+136236,12320.23641,91054.91084,0,21
+136237,12953.7498,83530.24068,0,21
+136238,13808.09296,76459.15443,0,21
+136239,14642.22263,68805.29059,0,21
+136240,15400.36508,61974.71513,0,21
+136241,16269.42018,54536.36557,0,21
+136242,16989.94026,47501.88702,0,21
+136243,17955.92716,40351.26066,0,21
+136244,18274.18621,34686.49596,0,21
+136245,18972.58629,33721.50124,0,21
+136246,19371.3206,32409.06364,0,21
+136247,20069.49499,31889.66398,0,21
+136248,20326.13071,31411.04945,0,21
+136249,20688.96218,30829.06946,0,21
+136250,20986.00513,30451.99421,0,21
+136251,21320.2517,122245.7241,0,21
+136252,21791.16992,29530.24525,0,21
+136253,22079.00023,29043.48827,0,21
+136254,22324.17746,28746.16963,0,21
+136255,22697.3585,28494.8206,0,21
+136256,23184.22128,28144.51161,0,21
+136257,23321.30893,27710.10195,0,21
+136258,23911.89048,27475.73084,0,21
+136259,24091.23494,26849.97134,0,21
+136260,24504.64738,27145.83812,0,21
+136261,24967.92686,26695.67872,0,21
+136262,25320.51168,26939.60158,0,21
+136263,26032.5606,26456.45582,0,21
+136264,26359.3951,26441.28721,0,21
+136265,26747.28157,26385.36831,0,21
+136266,27315.90568,26647.4616,0,21
+136267,27787.3655,26410.44278,0,21
+136268,28045.27349,26978.96292,0,21
+136269,28843.53774,26529.20916,0,21
+136270,29088.01468,26920.13587,0,21
+136271,29571.15393,27015.65256,0,21
+136272,30054.61946,26836.10554,0,21
+136273,30523.28794,27121.35265,0,21
+136274,31100.15525,27217.07821,0,21
+136275,31363.76599,27238.24086,0,21
+136276,31961.92735,27433.12385,0,21
+136277,32412.39136,27462.94895,0,21
+136278,32902.4714,27476.32304,0,21
+136279,33370.07628,27791.79895,0,21
+136280,33776.41636,27803.45555,0,21
+136281,34316.09395,27946.20824,0,21
+136282,34813.2411,27907.84187,0,21
+136283,35196.20351,28283.52184,0,21
+136284,35773.55156,28161.97113,0,21
+136285,36169.59425,28398.75885,0,21
+136286,36720.43207,28511.93357,0,21
+136287,37224.1212,28749.71001,0,21
+136288,37496.73212,28515.32971,0,21
+136289,38184.63188,29200.39936,0,21
+136290,38661.89677,28833.63383,0,21
+136291,39054.37399,29188.77521,0,21
+136292,39609.31538,29216.50664,0,21
+136293,40125.91509,29213.74421,0,21
+136294,40496.17084,29312.93286,0,21
+136295,41170.36978,29454.19458,0,21
+136296,41492.58065,29512.36672,0,21
+136297,42140.65457,29562.28782,0,21
+136298,42559.53463,29430.92321,0,21
+136299,43561.09783,29869.90782,0,21
+136300,44190.14512,29665.69249,0,21
+136301,44737.98249,29973.00917,0,21
+136302,45188.6658,29664.07309,0,21
+136303,45858.34404,30099.03958,0,21
+136304,46257.94742,30206.55023,0,21
+136305,46952.32879,29765.48723,0,21
+136306,47281.2348,30442.43662,0,21
+136307,48070.25756,30099.06097,0,21
+136308,48369.76465,30652.88623,0,21
+136309,49086.67538,30112.35406,0,21
+136310,49506.87856,30664.56919,0,21
+136311,50197.2369,30543.18033,0,21
+136312,50608.28201,30789.90642,0,21
+136313,51208.15154,30267.88079,0,21
+136314,51661.36856,30292.89598,0,21
+136315,52444.05898,30886.71891,0,21
+136316,52742.76992,31121.40402,0,21
+136317,53389.77597,31286.55798,0,21
+136318,54008.5069,31284.74045,0,21
+136319,54400.86969,31384.80509,0,21
+136320,55047.73073,31530.71049,0,21
+136321,82177.37004,59202.74383,0,21
+136322,83845.96748,60701.93008,0,21
+136323,84583.25973,60884.12399,0,21
+136324,85274.23434,61440.02464,0,21
+136325,85470.67309,61708.5367,0,21
+136326,86142.90661,61774.43711,0,21
+136327,86772.65946,62278.15656,0,21
+136328,87366.41146,62278.16621,0,21
+136329,87804.55918,62517.33564,0,21
+136330,88594.25743,63085.02626,0,21
+136331,88903.33351,63112.33358,0,21
+136332,89690.95675,63573.85946,0,21
+136333,90266.83701,63714.71837,0,21
+136334,90592.04052,64072.68639,0,21
+136335,91169.02341,63922.94468,0,21
+136336,91907.18825,156093.8448,0,21
+136337,92197.89126,64649.18636,0,21
+136338,92734.32548,64567.81317,0,21
+136339,93303.43136,65268.47841,0,21
+136340,94255.46483,64916.5761,0,21
+136341,94479.42115,65497.35669,0,21
+136342,95256.66413,65717.92698,0,21
+136343,95690.91563,65712.70022,0,21
+136344,96360.23114,66273.41097,0,21
+136345,96959.84898,65946.57155,0,21
+136346,97176.3932,66682.71351,0,21
+136347,97988.48542,66743.04271,0,21
+136348,98151.32947,67072.38355,0,21
+136349,98654.55208,67232.28255,0,21
+136350,99184.08622,68279.07203,0,21
+136351,99732.66037,69050.21956,0,21
+136352,99781.82495,68980.3918,0,21
+136353,100461.8009,70378.14461,0,21
+136354,100985.9548,72277.57271,0,21
+136355,101038.0048,75860.33158,0,21
+136356,101664.8032,74312.38386,0,21
+136357,102181.8676,75573.26419,0,21
+136358,102378.6288,75976.02428,0,21
+136359,102687.3073,75969.26731,0,21
+136360,103462.4787,75740.70017,0,21
+136361,103204.741,76588.22484,0,21
+136362,104218.6285,76638.72017,0,21
+136363,104101.9351,77072.67237,0,21
+136364,104569.1762,81995.98559,0,21
+136365,104986.8129,81096.96526,0,21
+136366,105261.0497,81984.22893,0,21
+136367,105592.4957,83168.72262,0,21
+136368,105828.306,84884.87393,0,21
+136369,106143.9394,85029.94567,0,21
+136370,106672.6434,86119.61034,0,21
+136371,106688.3955,86635.04795,0,21
+136372,107217.5708,87413.26883,0,21
+136373,107353.404,88407.83169,0,21
+136374,107733.4025,88197.14151,0,21
+136375,107866.1533,89760.04421,0,21
+136376,108273.9169,89910.97076,0,21
+136377,108505.9311,90629.12747,0,21
+136378,108898.009,90784.64009,0,21
+136379,108717.5223,91583.08393,0,21
+136380,109214.6853,91855.63307,0,21
+136381,118909.0892,113974.2943,21838.48278,21
+136382,120977.4061,116215.5569,22504.97706,21
+136383,121896.2598,116925.2623,22585.85847,21
+136384,123465.5983,118111.9236,22739.62657,21
+136385,124555.6253,118235.1466,23077.17268,21
+136386,125981.8097,119399.5654,23139.29169,21
+136387,127389.2029,120138.0306,23382.7476,21
+136388,128370.2902,120574.6667,23534.96544,21
+136389,130108.2162,121315.7382,23686.81081,21
+136390,131082.0469,121993.7709,23927.35969,21
+136391,132390.4398,122176.3216,23989.49877,21
+136392,133762.4552,122974.9435,24245.01482,21
+136393,134753.9308,123589.2846,24444.36032,21
+136394,136198.5296,123678.4375,24746.84888,21
+136395,137349.6682,124418.2443,24721.60971,21
+136396,138698.7128,124867.1052,25443.49685,21
+136397,139864.1263,124875.578,25499.6837,21
+136398,141175.7907,125836.1903,25759.94272,21
+136399,142278.8365,125799.0761,25985.70826,21
+136400,143512.8197,126251.6074,26236.62687,21
+136401,144723.1022,133221.0667,26461.2194,21
+136402,145946.7695,139188.6319,26801.26908,21
+136403,147469.2909,136514.3901,26940.42576,21
+136404,148867.0834,138886.0641,27265.89273,21
+136405,149806.3558,140023.1928,27416.91948,21
+136406,151262.3354,141461.9512,27817.44031,21
+136407,152358.5393,142632.3551,27865.0465,21
+136408,153755.7909,143046.2524,28283.37235,21
+136409,154972.1627,144383.3507,28401.44089,21
+136410,156110.9035,145856.1077,28727.28659,21
+136411,157478.8098,145671.2227,28833.28868,21
+136412,158556.3037,147753.0378,29193.51719,21
+136413,160197.104,148468.8128,29428.02137,21
+136414,161258.1735,151226.0897,29666.0938,21
+136415,162457.0256,152148.8097,29984.14434,21
+136416,163909.149,152820.6603,30120.75408,21
+136417,165070.1085,155216.5932,30533.48612,21
+136418,166355.5404,156409.5981,30594.10857,21
+136419,170425.6402,157156.4573,31650.89892,21
+136420,172602.2105,159203.2128,33888.52696,21
+136421,173483.2288,160715.8065,33213.61476,21
+136422,175552.8559,161144.6346,34226.95883,21
+136423,177114.4899,163546.4738,34686.8161,21
+136424,179105.3718,164243.9864,35252.00777,21
+136425,180621.541,166177.872,35908.81006,21
+136426,182125.499,166706.9307,36269.62524,21
+136427,184093.6855,168746.1754,37105.08967,21
+136428,185468.4754,170385.5566,37413.54547,21
+136429,187318.0505,170555.1142,38483.7677,21
+136430,189034.55,172829.501,38803.35066,21
+136431,190377.9181,173841.696,39304.74829,21
+136432,192286.09,176059.8339,40222.21721,21
+136433,193842.0413,175158.6837,40529.72132,21
+136434,195749.1912,178427.9849,41245.73463,21
+136435,196729.2697,179099.1123,41876.57217,21
+136436,198749.288,180808.3866,42351.86609,21
+136437,200317.796,180770.7465,43180.20261,21
+136438,201789.7598,183184.3204,43536.88164,21
+136439,203208.2314,184464.6697,44472.24935,21
+136440,205061.1101,185109.5516,45085.04072,21
+136441,206138.4295,186922.2075,45753.00278,21
+136442,207889.6942,189167.8565,46227.55538,21
+136443,209308.3043,190304.9813,46904.8189,21
+136444,210265.014,191973.4272,47688.63147,21
+136445,212204.4634,192531.0451,47992.84598,21
+136446,213189.4043,194347.0995,48866.57282,21
+136447,215143.2589,194985.2601,49456.0165,21
+136448,216003.0107,197842.7702,49762.52097,21
+136449,217736.1633,198255.5973,50411.91847,21
+136450,218834.4534,199350.9187,50827.62129,21
+136451,220685.8855,202099.7468,51507.78874,21
+136452,221412.3746,201021.7337,52317.05899,21
+136453,223636.9198,205003.2919,52614.32805,21
+136454,225000.1962,204706.4847,53355.78924,21
+136455,226057.9788,205663.4763,53767.10383,21
+136456,227769.3565,208754.7653,54569.79946,21
+136457,229087.1838,208073.9448,55005.59014,21
+136458,230514.1639,210218.6442,55894.63703,21
+136459,231743.1907,211329.4053,56152.65541,21
+136460,233206.36,213057.4472,57132.98259,21
+136461,234923.9661,213489.9503,57141.68696,21
+136462,235669.4635,214895.2127,58221.1681,21
+136463,237457.6207,216220.4605,58494.23454,21
+136464,238751.4073,216573.5766,59282.49576,21
+136465,240184.7213,218668.7083,59742.99545,21
+136466,241536.6235,219465.2477,60248.22039,21
+136467,243084.0445,220750.7183,61271.42978,21
+136468,244317.0452,222063.4916,61541.3389,21
+136469,246030.0786,223225.6036,61975.10699,21
+136470,247999.5465,225097.4923,62992.40297,21
+136471,249301.5739,227677.0292,63121.44246,21
+136472,250309.3227,228564.7376,63763.07566,21
+136473,252520.1662,230144.401,64472.35152,21
+136474,253045.9822,230018.8414,64973.54519,21
+136475,254773.196,233585.9373,65056.97154,21
+136476,256148.7826,232708.6303,66268.36079,21
+136477,257645.5022,234887.5698,66245.57441,21
+136478,258770.4601,236684.0162,67164.00999,21
+136479,260254.6211,236318.7301,67761.8565,21
+136480,263942.458,237961.1684,68272.61641,21
+136481,278638.9385,239285.4895,68851.7674,21
+136482,275578.5784,240210.5362,69568.98078,21
+136483,278436.4275,242202.0394,70024.03149,21
+136484,280751.3394,241719.2951,70874.55879,21
+136485,282847.8967,244047.5063,71274.2542,21
+136486,284975.4094,243911.0733,71877.34712,21
+136487,286698.1222,246442.4948,72755.07294,21
+136488,288750.5059,246277.8661,73000.42431,21
+136489,290498.0276,248962.9062,73934.14756,21
+136490,292546.951,247739.0345,74393.99951,21
+136491,294318.2158,250615.1186,75017.43463,21
+136492,295976.8101,250821.3876,75913.84219,21
+136493,297872.1561,252159.8483,76598.2279,21
+136494,299328.935,253456.3081,77033.5707,21
+136495,301348.0657,254454.4064,78167.21149,21
+136496,302890.1523,253882.1739,78308.77004,21
+136497,304436.7148,254657.0172,81004.02535,21
+136498,306195.0512,255991.88,81688.81337,21
+136499,307833.5169,256882.7006,82602.85496,21
+136500,309662.0957,257755.7557,83078.81936,21
+136501,312896.8655,268630.9758,85615.40534,21
+136502,315435.2867,269127.8092,87048.09404,21
+136503,317005.924,271463.3685,87636.3371,21
+136504,318059.0493,273428.8185,88627.27312,21
+136505,320170.6159,274281.5854,89541.35017,21
+136506,321371.6562,275250.2041,90207.59398,21
+136507,323417.8951,277875.9502,90899.94685,21
+136508,324259.3762,277091.8595,92082.71292,21
+136509,326142.1138,280803.3035,92382.49994,21
+136510,327380.8934,280801.7847,93798.12762,21
+136511,329121.9257,282308.9632,95984.85378,21
+136512,330399.0182,284022.8994,97723.59291,21
+136513,331893.1565,285051.8754,100261.002,21
+136514,333772.9224,286815.0099,102414.117,21
+136515,334812.2478,287072.3112,104441.5187,21
+136516,336402.1021,289430.0728,106891.9942,21
+136517,337633.3492,290020.5402,108795.6629,21
+136518,339173.2765,292284.6274,111029.0345,21
+136519,340794.9823,292106.3825,115633.1934,21
+136520,341709.7865,294796.836,117724.5952,21
+136521,343403.4829,294803.1353,119696.5644,21
+136522,345266.3581,297818.5125,122688.4426,21
+136523,347285.68,297707.2024,124681.8913,21
+136524,348309.3669,299605.8851,127993.1555,21
+136525,350264.0527,300657.5384,130567.7573,21
+136526,351315.1898,301225.8289,133700.3094,21
+136527,352929.7105,304322.0308,137857.4897,21
+136528,354254.2715,302943.3646,142227.1311,21
+136529,355683.5015,306214.282,148772.9684,21
+136530,356951.9538,306907.6331,151421.9636,21
+136531,358451.2493,307110.6766,155791.2779,21
+136532,360038.6156,309669.1662,160063.1511,21
+136533,361215.6453,308451.9646,164339.199,21
+136534,362361.8796,311277.9706,168392.5687,21
+136535,364172.7041,310954.1834,172423.6141,21
+136536,365156.4123,312558.3828,177108.2914,21
+136537,366613.4456,314166.3738,180749.0882,21
+136538,368141.6042,313744.775,185548.3916,21
+136539,369123.9945,315536.4147,189253.6514,21
+136540,370440.2844,316913.5937,193604.0623,21
+136541,372028.813,319873.7202,197978.2911,21
+136542,373077.0101,321211.0159,202496.7677,21
+136543,374539.2482,322492.4899,206285.9678,21
+136544,375718.4005,324846.5605,210913.4289,21
+136545,376880.0718,328760.9314,215170.2071,21
+136546,378443.9065,329959.8555,219366.2616,21
+136547,379361.3692,333012.7006,223646.0192,21
+136548,380894.4678,334037.7733,228350.1165,21
+136549,381905.2156,335875.9305,232505.1624,21
+136550,383316.9918,338519.6652,236740.0978,21
+136551,384449.1097,341172.0921,241272.7184,21
+136552,385534.4118,342016.4551,245758.4675,21
+136553,387072.2136,344456.3941,250096.2976,21
+136554,387996.0866,345653.0217,254711.3265,21
+136555,389827.8658,348435.0876,258689.1138,21
+136556,389906.9623,349852.682,263751.0808,21
+136557,395046.5487,352311.267,267773.1157,21
+136558,398278.863,352986.4696,272645.6015,21
+136559,398205.4396,355206.3253,276949.5085,21
+136560,400455.0891,358220.8989,282772.9642,21
+136561,402061.3755,358314.83,287065.1026,21
+136562,404960.9367,365075.3252,291097.4349,21
+136563,405981.6262,365878.5473,295925.1201,21
+136564,407324.7727,368486.3269,299098.4042,21
+136565,409285.0787,371921.8159,304468.8372,21
+136566,409771.7787,374296.3121,308228.1558,21
+136567,412278.8041,376851.5118,312885.7568,21
+136568,411831.0658,379778.4279,317012.8273,21
+136569,415627.8247,382287.34,321428.443,21
+136570,414861.0901,383968.999,325925.4625,21
+136571,417088.6768,387926.0842,330172.7795,21
+136572,418560.5108,390848.5979,334717.6822,21
+136573,419429.0079,393472.2397,338746.4092,21
+136574,420900.5838,395799.8721,343466.1751,21
+136575,422532.9591,398532.11,347949.1205,21
+136576,423426.2826,401292.7423,351983.5277,21
+136577,424724.3627,404994.9541,356689.6896,21
+136578,425528.5193,406282.7825,360867.4573,21
+136579,427687.8703,410469.2064,365628.0165,21
+136580,428699.3871,411770.1574,369948.7372,21
+136581,429312.3622,415236.6039,374573.6638,21
+136582,431092.2097,417959.0621,378903.0305,21
+136583,432493.3725,420859.9397,383260.7308,21
+136584,433645.4285,423223.8218,387767.5505,21
+136585,434722.3513,426630.762,392265.9301,21
+136586,435870.618,428113.5754,396997.2772,21
+136587,437339.3907,432167.8176,401175.9944,21
+136588,437845.7704,434022.2923,405896.3845,21
+136589,439718.0176,437574.4024,410177.9447,21
+136590,440598.2068,439608.1009,414875.118,21
+136591,442082.1763,441392.2738,419285.5277,21
+136592,442489.6056,446172.3601,423395.9266,21
+136593,444732.5397,447239.963,429012.7937,21
+136594,445492.4956,451003.2363,432153.9071,21
+136595,446159.0068,452680.5868,437767.9526,21
+136596,447674.6985,455774.8196,441647.6057,21
+136597,448912.5024,459118.442,446361.7172,21
+136598,449792.5284,460888.2657,451020.1187,21
+136599,451547.5747,463554.8318,455571.4237,21
+136600,451065.3481,466906.822,460026.3396,21
+136601,454534.2764,468947.5443,464076.8838,21
+136602,454007.7598,472435.5134,469370.6961,21
+136603,455538.7025,473326.4336,473166.2665,21
+136604,456673.3459,477732.8807,478462.5035,21
+136605,457199.022,480299.7,482088.0505,21
+136606,459209.4028,481653.3764,487179.0418,21
+136607,460071.9754,486253.7342,491694.1028,21
+136608,460413.5691,487020.5947,496099.9316,21
+136609,462762.7964,489897.1337,500427.3242,21
+136610,463266.3674,494683.9776,505492.7124,21
+136611,463909.8996,494524.4178,509376.005,21
+136612,465756.0247,499189.2387,513868.9759,21
+136613,465698.8192,499649.844,518704.4221,21
+136614,467982.9422,505160.1999,523628.5699,21
+136615,468485.9742,505401.8675,526839.2368,21
+136616,469574.8526,508879.8207,532311.1658,21
+136617,470526.7565,512438.5855,536629.4104,21
+136618,471544.7374,513392.5865,540912.5067,21
+136619,473319.0767,517456.1737,545353.4189,21
+136620,472656.0836,519027.9467,550063.1376,21
+136621,0,0,0,21
+136622,0,0,0,21
+136623,83149.20238,0,0,21
+136624,0,98.90870204,0,21
+136625,0,0,1489684.642,21
+136626,339706.2185,0,0,21
+136627,0,0,0,21
+136628,0,368515.5773,0,21
+136629,0,0,0,21
+136630,0,0,0,21
+136631,0,0,0,21
+136632,0,77.51430364,0,21
+136633,0,0,0,21
+136634,0,0,39605.57022,21
+136635,0,0,43195.32875,21
+136636,0,84465.6743,43189.30651,21
+136637,0,0,43213.52188,21
+136638,0,0,43251.77898,21
+136639,0,0,43294.04945,21
+136640,0,0,43335.85225,21
+136641,0,0,43375.58961,21
+136642,0,0,43412.84382,21
+136643,0,0,43447.31198,21
+136644,0,0,43478.84354,21
+136645,0,0,43507.25681,21
+136646,0,0,43532.65706,21
+136647,0,0,43555.00229,21
+136648,0,0,43574.38049,21
+136649,0,0,43591.08484,21
+136650,0,0,43605.27814,21
+136651,0,0,43617.11418,21
+136652,0,0,43626.95073,21
+136653,0,0,43634.89113,21
+136654,0,0,43641.10237,21
+136655,0,84511.91669,43645.88152,21
+136656,0,0,43649.36169,21
+136657,0,0,43651.60024,21
+136658,0,0,43652.8482,21
+136659,0,0,1381802.814,21
+136660,0,0,41804.84619,21
+136661,339697.6054,0,41808.50507,21
+136662,0,0,41811.50126,21
+136663,0,0,0,21
+136664,0,368399.1188,0,21
+136665,0,0,0,21
+136666,0,0,0,21
+136667,0,0,0,21
+136668,0,0,0,21
+136669,0,0,0,21
+136670,0,0,0,21
+136671,0,0,0,21
+136672,0,84541.81172,0,21
+136673,0,0,0,21
+136674,0,0,0,21
+136675,0,0,0,21
+136676,0,0,0,21
+136677,0,0,37907.74334,21
+136678,0,0,41503.98308,21
+136679,0,0,41507.37688,21
+136680,0,0,41542.34624,15.6
+136681,0,0,41651.66485,15.6
+136682,0,0,41817.83411,15.6
+136683,0,0,41938.91281,15.6
+136684,0,0,42052.98966,15.6
+136685,0,0,42165.02424,15.6
+136686,0,0,42274.92669,15.6
+136687,0,0,42382.33852,15.6
+136688,0,0,42487.11093,15.6
+136689,0,0,42589.02267,15.6
+136690,0,0,42688.15796,15.6
+136691,0,82.64166309,42784.57109,15.6
+136692,0,0,42878.35,15.6
+136693,0,0,42969.80319,15.6
+136694,0,0,1292517.637,15.6
+136695,0,84767.94371,41529.21416,15.6
+136696,0,0,41618.70236,15.6
+136697,339691.8532,0,41706.48484,15.6
+136698,0,0,41792.73719,15.6
+136699,0,0,41877.65927,15.6
+136700,0,368392.3848,41961.3264,15.6
+136701,0,0,42043.93568,15.6
+136702,0,0,42125.68415,15.6
+136703,0,0,42206.82382,15.6
+136704,0,0,42287.46791,15.6
+136705,0,0,42367.68657,15.6
+136706,0,0,0,15.6
+136707,0,0,0,15.6
+136708,0,0,0,15.6
+136709,0,0,0,15.6
+136710,0,0,0,15.6
+136711,0,0,0,15.6
+136712,0,0,0,15.6
+136713,0,0,0,15.6
+136714,0,0,0,15.6
+136715,0,7.942966438,0,15.6
+136716,0,0,0,15.6
+136717,0,108.4612093,0,15.6
+136718,0,0,0,15.6
+136719,0,0,0,15.6
+136720,0,0,0,15.6
+136721,0,0,39459.71733,15.6
+136722,0,181.1781811,43138.77959,15.6
+136723,0,0,43226.3969,15.6
+136724,0,0,43345.83479,15.6
+136725,0,0,43479.43904,15.6
+136726,0,3.43392628,43616.77543,15.6
+136727,0,84805.13142,43753.415,15.6
+136728,0,0,43888.03762,15.6
+136729,0,0,1222425.709,15.6
+136730,0,0,42718.14732,15.6
+136731,0,0,42848.40942,15.6
+136732,0,0,42975.57013,15.6
+136733,339688.557,0,43099.52487,15.6
+136734,0,0,43220.31282,15.6
+136735,0,0,43338.02544,15.6
+136736,0,368379.5597,43452.86253,15.6
+136737,0,0,43565.11287,15.6
+136738,0,0,43675.10326,15.6
+136739,0,0,43783.07561,15.6
+136740,0,0,43889.22891,15.6
+136741,0,0,43896.86165,15.6
+136742,0,0,43901.63096,15.6
+136743,0,0,43905.77944,15.6
+136744,0,0,43907.1406,15.6
+136745,0,2.663776958,43908.34136,15.6
+136746,0,0,43908.17297,15.6
+136747,0,82.8709332,43907.03859,15.6
+136748,0,0,43905.05543,15.6
+136749,0,0,43902.2384,15.6
+136750,0,0,0,15.6
+136751,0,68.34983265,0,15.6
+136752,0,0,0,15.6
+136753,0,0,0,15.6
+136754,0,0,0,15.6
+136755,0,74.07754839,0,15.6
+136756,0,0,0,15.6
+136757,0,0,0,15.6
+136758,0,0,0,15.6
+136759,0,72.26736629,0,15.6
+136760,0,0,0,15.6
+136761,0,0,0,15.6
+136762,0,0,0,15.6
+136763,0,68.38241153,0,15.6
+136764,0,0,1145505.362,15.6
+136765,0,0,0,15.6
+136766,0,0,38034.07392,15.6
+136767,0,0,41631.89492,15.6
+136768,0,389.9120018,41638.95157,15.6
+136769,339684.7648,0,41677.05901,15.6
+136770,0,0,41728.90981,15.6
+136771,0,0,41783.022,15.6
+136772,0,0,41835.85553,15.6
+136773,0,368381.8333,41885.97087,15.6
+136774,0,0,41933.33846,15.6
+136775,0,0,41977.09684,15.6
+136776,0,0,42018.05649,15.6
+136777,0,0,42055.06415,15.6
+136778,0,0,42089.17907,15.6
+136779,0,0,42119.59721,15.6
+136780,0,0,42146.66251,15.6
+136781,0,0,42170.63567,15.6
+136782,0,0,42191.71199,15.6
+136783,0,0,42210.08503,15.6
+136784,0,0,42226.04132,15.6
+136785,0,0,42239.75685,15.6
+136786,0,0,42251.42294,15.6
+136787,0,0,42261.30341,15.6
+136788,0,0,42269.52793,15.6
+136789,0,0,42276.22666,15.6
+136790,0,0,42281.64491,15.6
+136791,0,0,42285.87247,15.6
+136792,0,0,42288.99766,15.6
+136793,0,0,42291.1815,15.6
+136794,0,0,42292.52606,15.6
+136795,0,0,0,15.6
+136796,0,0,0,15.6
+136797,0,0,0,15.6
+136798,0,0,0,15.6
+136799,0,0,1088667.206,15.6
+136800,0,0,0,15.6
+136801,0,0,0,15.6
+136802,0,0,0,15.6
+136803,0,0,0,15.6
+136804,0,0,0,15.6
+136805,339682.0629,0,0,15.6
+136806,0,0,0,15.6
+136807,0,0,0,15.6
+136808,0,0,0,15.6
+136809,0,0,0,15.6
+136810,0,368380.4095,0,15.6
+136811,0,0,0,15.6
+136812,0,0,36168.63699,15.6
+136813,0,0,39740.60345,15.6
+136814,0,0,39723.26328,15.6
+136815,0,0,39737.71398,15.6
+136816,0,0,39765.45401,15.6
+136817,0,0,39795.82183,15.6
+136818,0,0,39824.43404,15.6
+136819,0,0,39850.04513,15.6
+136820,0,0,39872.34058,15.6
+136821,0,0,39891.27927,15.6
+136822,0,0,39906.66255,15.6
+136823,0,0,39918.37256,15.6
+136824,0,0,39926.3724,15.6
+136825,0,0,39930.69445,15.6
+136826,0,0,39931.47297,15.6
+136827,0,0,39928.91983,15.6
+136828,0,0,39923.2754,15.6
+136829,0,0,39914.76099,15.6
+136830,0,0,39903.25727,15.6
+136831,0,0,39890.2248,15.6
+136832,0,0,39874.38522,15.6
+136833,0,0,39856.74915,15.6
+136834,0,0,1060637.599,15.6
+136835,0,0,38825.36399,15.6
+136836,0,0,38805.66738,15.6
+136837,0,0,38784.63482,15.6
+136838,0,0,38762.38494,15.6
+136839,0,0,38738.97015,15.6
+136840,0,0,38714.35604,15.6
+136841,339681.4801,0,0,15.6
+136842,0,0,0,15.6
+136843,0,0,0,15.6
+136844,0,0,0,15.6
+136845,0,0,0,15.6
+136846,0,0,0,15.6
+136847,0,368359.7449,0,15.6
+136848,0,0,0,15.6
+136849,0,0,0,15.6
+136850,0,0,0,15.6
+136851,0,0,0,15.6
+136852,0,0,0,15.6
+136853,0,0,0,15.6
+136854,0,0,0,15.6
+136855,0,0,0,15.6
+136856,0,0,0,15.6
+136857,0,0,0,15.6
+136858,0,0,0,15.6
+136859,0,0,33566.32244,15.6
+136860,0,0,37136.80571,15.6
+136861,0,0,37181.5956,15.6
+136862,0,0,37259.37274,15.6
+136863,0,0,37350.57683,15.6
+136864,0,0,37444.15418,15.6
+136865,0,0,37535.72693,15.6
+136866,0,0,37624.12717,15.6
+136867,0,0,37709.13004,15.6
+136868,0,0,37790.84386,15.6
+136869,0,0,1022199.068,15.6
+136870,0,0,37055.75066,15.6
+136871,0,0,37128.98262,15.6
+136872,0,0,37198.56658,15.6
+136873,0,0,37264.65111,15.6
+136874,0,0,37327.36819,15.6
+136875,0,0,37386.97333,15.6
+136876,0,0,37443.75734,15.6
+136877,339686.124,0,37498.02231,15.6
+136878,0,0,37550.04163,15.6
+136879,0,0,37600.11591,15.6
+136880,0,0,37648.39838,15.6
+136881,0,0,37695.08164,15.6
+136882,0,0,37740.35877,15.6
+136883,0,0,37784.35805,15.6
+136884,0,368347.4681,37827.21282,15.6
+136885,0,0,37869.03689,15.6
+136886,0,0,37909.92983,15.6
+136887,0,0,37949.99029,15.6
+136888,0,0,0,15.6
+136889,0,0,0,15.6
+136890,0,0,0,15.6
+136891,0,0,0,15.6
+136892,0,0,0,15.6
+136893,0,0,0,15.6
+136894,0,0,0,15.6
+136895,0,0,0,15.6
+136896,0,0,0,15.6
+136897,0,0,0,15.6
+136898,0,0,0,15.6
+136899,0,0,0,15.6
+136900,0,0,0,15.6
+136901,0,0,0,15.6
+136902,0,0,0,15.6
+136903,0,0,0,15.6
+136904,0,0,0,15.6
+136905,0,0,972448.0421,15.6
+136906,0,0,0,15.6
+136907,0,0,33100.80357,15.6
+136908,0,0,36740.16318,15.6
+136909,0,0,36794.33788,15.6
+136910,0,0,36882.22598,15.6
+136911,0,0,36983.54478,15.6
+136912,0,0,37087.10277,15.6
+136913,0,0,37188.50106,15.6
+136914,339697.7779,0,37286.67111,15.6
+136915,0,0,37381.4687,15.6
+136916,0,0,37472.88691,15.6
+136917,0,0,37560.78975,15.6
+136918,0,0,37645.07223,15.6
+136919,0,0,37725.72881,15.6
+136920,0,0,37802.79297,15.6
+136921,0,368340.342,37912.81301,15.6
+136922,0,0,38019.60395,15.6
+136923,0,0,38123.29167,15.6
+136924,0,0,38224.10797,15.6
+136925,0,0,38322.36924,15.6
+136926,0,0,38418.25321,15.6
+136927,0,0,38512.05773,15.6
+136928,0,0,38604.02167,15.6
+136929,0,0,38694.30409,15.6
+136930,0,0,38783.0858,15.6
+136931,0,0,38870.57342,15.6
+136932,0,0,38956.87642,15.6
+136933,0,0,39042.17074,15.6
+136934,0,0,39126.5426,15.6
+136935,0,0,39210.13615,15.6
+136936,0,0,0,15.6
+136937,0,0,0,15.6
+136938,0,0,0,15.6
+136939,0,0,0,15.6
+136940,0,0,0,15.6
+136941,0,0,944481.0843,15.6
+136942,0,0,0,15.6
+136943,0,0,0,15.6
+136944,0,0,0,15.6
+136945,0,0,0,15.6
+136946,0,0,0,15.6
+136947,0,0,0,15.6
+136948,0,0,0,15.6
+136949,0,0,0,15.6
+136950,0,0,0,15.6
+136951,339699.6201,0,0,15.6
+136952,0,0,0,15.6
+136953,0,0,0,15.6
+136954,0,0,0,15.6
+136955,0,0,0,15.6
+136956,0,0,35175.75751,15.6
+136957,0,0,38861.78459,15.6
+136958,0,368324.9985,38963.48831,15.6
+136959,0,0,39099.19044,15.6
+136960,0,0,39248.41371,15.6
+136961,0,0,39399.75188,15.6
+136962,0,0,39548.88107,15.6
+136963,0,0,39694.61959,15.6
+136964,0,0,39836.79112,15.6
+136965,0,0,39975.41591,15.6
+136966,0,0,40110.33138,15.6
+136967,0,0,40241.53521,15.6
+136968,0,0,40368.98149,15.6
+136969,0,0,40492.84823,15.6
+136970,0,0,40613.27154,15.6
+136971,0,0,40730.47986,15.6
+136972,0,0,40844.62994,15.6
+136973,0,0,40955.97679,15.6
+136974,0,0,41064.71449,15.6
+136975,0,0,41171.13878,15.6
+136976,0,0,41275.435,15.6
+136977,0,0,41377.84196,15.6
+136978,0,0,949594.4962,15.6
+136979,0,0,40897.12565,15.6
+136980,0,0,40996.72338,15.6
+136981,90497.20685,106097.3012,247496.5602,15.6
+136982,64552.1063,29099.74598,156052.112,15.6
+136983,30814.59647,6526.628869,95363.60738,15.6
+136984,14387.32947,33160.84153,123524.321,15.6
+136985,32719.45198,24847.98076,90298.37545,15.6
+136986,25875.87649,24444.2034,82127.23832,15.6
+136987,25454.32719,24454.40998,83116.62376,15.6
+136988,365126.2136,24368.2847,83023.68541,15.6
+136989,25363.41431,24427.58805,82928.84585,15.6
+136990,25243.31026,24371.71794,82880.8037,15.6
+136991,25180.28324,24365.66754,82771.00149,15.6
+136992,25162.56874,24362.91125,82763.28678,15.6
+136993,25083.37307,24306.06799,82742.64342,15.6
+136994,25001.73308,24339.47733,82693.68178,15.6
+136995,24989.96634,392647.5324,82716.90457,15.6
+136996,24943.0424,24339.4751,82689.00372,15.6
+136997,24887.49498,24375.5557,82708.49531,15.6
+136998,24848.14335,24315.95275,82710.03554,15.6
+136999,24828.48558,24345.35434,82742.86219,15.6
+137000,24760.72014,24378.07122,82722.75639,15.6
+137001,24799.26723,24292.3407,82777.84736,15.6
+137002,24716.76583,24365.88756,82793.13888,15.6
+137003,24682.90776,24336.47786,82736.4399,15.6
+137004,24749.45212,24360.33846,82897.07013,15.6
+137005,24585.57527,24365.8717,82847.88563,15.6
+137006,24652.74974,24386.36313,109987.7402,15.6
+137007,24635.46068,24342.25874,116605.7038,15.6
+137008,24605.44541,24362.74968,116648.4847,15.6
+137009,24553.05778,24415.67972,116871.212,15.6
+137010,24625.24597,24380.79834,117092.5128,15.6
+137011,0,0,41132.14424,15.6
+137012,0,0,983007.247,15.6
+137013,0,0,40451.90542,15.6
+137014,75693.52095,71311.57375,40498.25314,15.6
+137015,11633.36713,3188.440098,224454.004,15.6
+137016,19673.02274,25979.08684,92095.35827,15.6
+137017,28705.54741,26692.15195,109473.7045,15.6
+137018,24275.91597,24247.31775,125714.8758,15.6
+137019,24581.21568,24547.67175,115073.7686,15.6
+137020,24556.76437,24551.01121,116476.1266,15.6
+137021,24528.90469,24576.85311,116693.1914,15.6
+137022,24576.55908,24594.86506,116700.2645,15.6
+137023,364259.7517,24594.85677,116971.4145,15.6
+137024,24548.69996,24605.9587,116890.214,15.6
+137025,24524.04508,24615.14626,117060.3411,15.6
+137026,24548.70121,24612.27048,117243.2159,15.6
+137027,24592.88078,24597.90436,117253.0277,15.6
+137028,24496.1854,24650.63385,117453.8991,15.6
+137029,24576.56301,24623.93765,117472.6109,15.6
+137030,24546.24178,392955.5299,117665.9155,15.6
+137031,24546.31105,24712.33357,117692.6634,15.6
+137032,24612.55895,24656.0556,117818.8879,15.6
+137033,24515.97742,24714.68517,117942.3952,15.6
+137034,24592.88036,24723.36572,118045.0344,15.6
+137035,24585.64096,24732.60555,83196.98275,15.6
+137036,24576.43888,24757.64882,83301.64574,15.6
+137037,24568.43047,24732.58846,83251.16572,15.6
+137038,24615.83812,24834.11201,83419.72979,15.6
+137039,24576.43684,24813.84482,83355.63,15.6
+137040,24632.27704,24813.83617,83408.2774,17.8
+137041,1029260.904,1328564.348,1952842.182,17.8
+137042,966687.9232,1099499.226,1740399.157,17.8
+137043,477423.0276,234383.358,874524.4197,17.8
+137044,377180.7819,443960.8077,785381.9997,17.8
+137045,437749.4928,495262.6073,901948.8474,17.8
+137046,354987.1457,386671.6444,1726675.225,17.8
+137047,411031.4143,446355.7697,1004259.844,17.8
+137048,374735.2337,414666.1982,949836.9384,17.8
+137049,374239.9526,417568.3185,887682.445,17.8
+137050,377238.8029,416944.915,931869.4409,17.8
+137051,373489.2868,415176.7885,937566.3219,17.8
+137052,373140.9832,414114.7358,943324.0784,17.8
+137053,372409.8883,412462.6464,953357.7701,17.8
+137054,371061.802,412289.3218,961629.8502,17.8
+137055,370575.4418,410814.444,970359.336,17.8
+137056,370068.9543,409727.9829,978634.3743,17.8
+137057,368999.94,409244.6048,987235.2453,17.8
+137058,708265.0877,407897.0168,995084.4887,17.8
+137059,368138.2971,407546.5205,1002227.239,17.8
+137060,367167.6463,406523.8674,1010183.235,17.8
+137061,367351.299,405347.3371,1016694.008,17.8
+137062,366004.7414,405333.241,1024653.527,17.8
+137063,366118.3826,403855.8694,1029838.886,17.8
+137064,365675.5105,403908.9469,1037932.316,17.8
+137065,364876.4211,770946.5636,1043683.283,17.8
+137066,364665.9276,402017.088,1051303.131,17.8
+137067,364827.8729,401624.387,1058355.828,17.8
+137068,363794.6371,401138.7724,1062069.019,17.8
+137069,363754.1176,399910.6408,1069358.485,17.8
+137070,363286.5778,400219.3099,1074465.143,17.8
+137071,73526.75197,77796.32029,152354.1121,17.8
+137072,73399.10784,77360.14666,152499.4981,17.8
+137073,73268.15737,65311.40597,152668.9519,17.8
+137074,841827.0455,929590.1171,152904.6595,17.8
+137075,298648.1689,155476.3316,2415400.348,17.8
+137076,211814.0805,308560.3223,882249.8076,17.8
+137077,418048.9715,455424.4119,770398.48,17.8
+137078,373488.2227,379035.7997,944330.3901,17.8
+137079,354199.058,380902.4855,1151425.322,17.8
+137080,347632.114,384406.2798,2199965.606,17.8
+137081,356115.4224,382227.6689,972143.5364,17.8
+137082,352167.4965,382358.8638,1018276.86,17.8
+137083,352381.9461,381096.5859,1016092.553,17.8
+137084,351695.3034,380938.6752,1019723.451,17.8
+137085,351700.1747,380313.037,1025383.986,17.8
+137086,351510.7208,380030.1706,1032033.983,17.8
+137087,351463.93,379105.8001,1041576.191,17.8
+137088,351511.0506,379374.2094,1046838.78,17.8
+137089,350561.0715,378108.4546,1052624.86,17.8
+137090,351261.9232,378487.4983,1057172.491,17.8
+137091,351122.2238,377543.1926,1063792.489,17.8
+137092,350492.0221,377047.9196,1067819.82,17.8
+137093,690573.2005,377026.9237,1075359.049,17.8
+137094,350595.2575,376463.293,1120829.321,17.8
+137095,350287.7428,375838.202,1134769.708,17.8
+137096,350922.6133,375699.9774,1142767.983,17.8
+137097,350098.705,375024.5195,1145638.974,17.8
+137098,350537.7952,374526.338,1153518.374,17.8
+137099,350168.5228,374745.1236,1158401.158,17.8
+137100,350179.5463,742005.4689,1162432.154,20
+137101,1754535.52,2581981.716,3204931.461,20
+137102,701945.3018,494751.9317,2209448.855,20
+137103,325042.4948,445636.9397,827365.4991,20
+137104,403740.3442,610930.4006,1282411.269,20
+137105,467858.6227,670231.7285,1250313.653,20
+137106,470578.1587,586652.5007,1225041.783,20
+137107,491358.0888,595829.0243,1197563.399,20
+137108,462108.4352,596354.6203,1207172.248,20
+137109,473062.3017,593756.2057,1206348.21,20
+137110,472438.6428,594710.4114,1207226.882,20
+137111,471692.8422,592237.0956,1208475.924,20
+137112,471287.2528,590846.8019,1207406.771,20
+137113,470112.2545,592018.9929,1207759.92,20
+137114,470088.4874,588739.0029,1209504.165,20
+137115,468865.0658,589417.7285,1206887.442,20
+137116,468918.9908,588517.009,1209468.17,20
+137117,468867.5815,587070.6182,1207007.793,20
+137118,467169.1825,587358.0862,1208619.435,20
+137119,467613.3977,586783.0663,1207648.853,20
+137120,467928.4492,585480.6277,1206311.973,20
+137121,465179.4457,585642.3772,1208224.7,20
+137122,468515.4809,584143.453,1204636.373,20
+137123,464677.2271,584100.833,1206826.586,20
+137124,466591.6913,584468.9449,1204974.747,20
+137125,464547.5366,582861.6207,1204562.369,20
+137126,466418.3155,583079.0564,1203065.829,20
+137127,464560.1166,582222.4899,1204267.594,20
+137128,465036.8853,582105.9635,1201743.044,20
+137129,465012.6486,582748.7958,1200933.873,20
+137130,464082.0509,581026.8064,1201352.117,20
+137131,464044.5533,580464.6326,1198637.817,20
+137132,464508.8794,668056.06,1198855.764,20
+137133,463520.315,580089.9144,1197740.126,20
+137134,464843.8454,580788.1634,1196671.032,20
+137135,462382.7931,579962.5503,1195669.466,20
+137136,465031.2668,580515.7655,1193929.712,20
+137137,462091.384,578687.1035,1194132.043,20
+137138,464205.2527,579967.0727,1191119.517,20
+137139,463555.48,579407.2693,1191623.996,20
+137140,463220.8969,579571.7247,1189884.29,20
+137141,462521.5619,579300.5607,1187983.303,20
+137142,463124.0561,579407.2462,1187223.794,20
+137143,462912.8303,578665.256,1186717.821,20
+137144,463630.6449,579935.1299,1183976.797,20
+137145,461956.3193,577610.5265,1184374.598,20
+137146,463307.301,580139.3337,1181096.818,20
+137147,462650.4604,577777.3655,1181794.842,20
+137148,463027.0189,579369.8182,1179330.404,20
+137149,462469.5356,577339.674,1177164.745,20
+137150,463255.03,579941.9707,1178292.759,20
+137151,461796.8091,577581.8083,1174617.152,20
+137152,463796.6059,578543.5053,1174551.684,20
+137153,462117.4401,578002.75,1172371.646,20
+137154,462656.665,578499.3389,1171450.208,20
+137155,456386.2987,577704.9017,1169976.845,20
+137156,455412.5517,578400.2138,1168498.173,20
+137157,453264.7371,577200.687,1167253.764,20
+137158,454357.3711,579377.9556,1165680.826,20
+137159,452111.2305,576656.4732,1163962.818,20
+137160,452356.5156,577858.4167,1162850.302,21
+137161,700302.2802,953739.894,1136905.859,21
+137162,694796.5108,946396.755,1133879.446,21
+137163,692815.9769,946484.8072,1131086.355,21
+137164,691588.057,946854.7247,1132059.052,21
+137165,688237.1298,944306.2406,1129308.333,21
+137166,689148.5856,945718.8352,1130137.304,21
+137167,685278.4265,944879.8266,1127504.771,21
+137168,685923.0687,944064.7004,1127978.393,21
+137169,682695.0857,945002.6412,1125378.435,21
+137170,681992.0338,943366.8918,1126166.391,21
+137171,681007.3214,944532.5456,1124009.832,21
+137172,679028.8648,944362.3783,1124019.047,21
+137173,677329.9554,943555.348,1121909.68,21
+137174,676923.5133,943815.349,1121960.115,21
+137175,674975.9769,943280.7624,1119855.659,21
+137176,674278.3067,945348.6561,1120800.779,21
+137177,671966.68,942563.5183,1117850.175,21
+137178,671562.5219,944127.3365,1118302.392,21
+137179,669148.0068,943830.0019,1116683.248,21
+137180,669095.8,944483.9849,1115846.321,21
+137181,666267.381,942654.7565,1115006.221,21
+137182,666513.3974,943617.732,1114229.065,21
+137183,664976.8261,943366.4499,1112511.584,21
+137184,662383.9368,942149.4067,1092747.609,21
+137185,663963.3736,944927.1302,1090132.411,21
+137186,660284.5102,941949.0307,1087170.492,21
+137187,660428.6905,944327.2912,1087356.291,21
+137188,659052.1507,943636.9519,1083285.662,21
+137189,657939.321,942890.5942,1083607.061,21
+137190,656716.3818,944423.5654,1081314.421,21
+137191,656213.1553,943075.4798,1078575.339,21
+137192,652855.2074,944665.214,1076686.586,21
+137193,653293.7099,942625.4406,1073236.788,21
+137194,650868.949,943907.4682,1070812.098,21
+137195,650362.1401,942269.3831,1067211.928,21
+137196,647763.4217,943403.1791,1065373.489,21
+137197,647679.7492,942509.2937,1061920.005,21
+137198,644828.2938,943202.3961,1060380.304,21
+137199,644075.4441,941937.8587,1056811.088,21
+137200,642918.4091,943231.4867,1055725.174,21
+137201,641204.9307,941838.1125,1050560.12,21
+137202,638589.2773,941449.896,1050059.848,21
+137203,639157.7835,943116.1703,1046907.964,21
+137204,635577.1643,941183.9268,1044108.808,21
+137205,634637.5986,941470.6759,1040783.089,21
+137206,630521.8122,941714.493,1040097.663,21
+137207,631214.7491,941963.2406,1035442.822,21
+137208,628702.6459,939943.3863,1034114.343,21
+137209,626315.0691,942314.0495,1031329.855,21
+137210,626505.9435,940213.7225,1029132.903,21
+137211,623532.6264,941643.833,1027289.395,21
+137212,621622.9511,940672.8682,1024027.645,21
+137213,621250.7692,940644.3477,1021948.336,21
+137214,618463.2729,941257.9996,1021090.059,21
+137215,617843.4291,941195.9995,1015482.866,21
+137216,614890.982,940471.1355,1014530.734,21
+137217,614403.508,940764.1996,1010857.72,21
+137218,611267.5928,941637.4709,1008947.26,21
+137219,610837.5019,940148.3441,1006724.376,21
+137220,608525.8761,941130.213,1007123.223,21
+137221,468116.4038,750262.9683,820557.3311,21
+137222,459284.7733,740915.9501,803771.371,21
+137223,454215.7477,736680.4806,794333.2659,21
+137224,449128.0503,731066.1105,785214.2617,21
+137225,444434.5637,726748.4057,776426.1601,21
+137226,439312.6199,722036.3773,767564.7956,21
+137227,435120.4699,717239.8543,758795.3148,21
+137228,429596.5916,713005.638,749780.2483,21
+137229,425249.7696,708040.3896,741778.4302,21
+137230,420607.5915,703255.2805,732434.3123,21
+137231,415715.5592,698863.5149,724123.2808,21
+137232,411131.5694,694213.0734,715498.2862,21
+137233,406129.9302,689311.7552,706598.9746,21
+137234,401937.1492,685964.9541,697887.7688,21
+137235,397078.1487,680730.1218,688940.6855,21
+137236,392080.4599,676916.1973,681012.9516,21
+137237,387811.5005,671674.7598,672578.8109,21
+137238,383041.9615,667396.2206,663172.2582,21
+137239,378243.6455,662515.3618,655243.003,21
+137240,373765.3532,658197.3632,646434.9263,21
+137241,368941.4339,653646.3537,638264.9931,21
+137242,364266.1329,649040.1081,629801.1005,21
+137243,359797.5645,644277.0392,621262.9623,21
+137244,355027.7156,640414.6154,612934.2892,21
+137245,351189.7614,635260.807,606504.7119,21
+137246,347762.6429,631333.9398,599558.499,21
+137247,344284.2736,626308.2382,592417.9378,21
+137248,340618.7665,621787.4477,585901.0063,21
+137249,337809.077,617308.6602,578682.4513,21
+137250,333585.3682,613021.2124,572233.7255,21
+137251,330802.5912,608987.6054,565192.4094,21
+137252,327564.2007,604102.4533,558891.0201,21
+137253,323687.8267,600050.793,552177.2272,21
+137254,321088.6762,595708.9139,545802.1582,21
+137255,317319.0574,591778.1012,538547.4285,21
+137256,314370.1943,586945.1165,532883.7658,21
+137257,310934.8707,583125.238,525173.6399,21
+137258,307683.3837,578715.6956,518934.871,21
+137259,304849.0516,574870.8928,512221.243,21
+137260,301164.7239,569879.8583,505678.2365,21
+137261,298217.8958,566685.4385,497075.2223,21
+137262,295064.0254,561826.925,490467.7209,21
+137263,291935.7346,557572.5818,484001.6597,21
+137264,288530.4575,553912.4074,477860.8973,21
+137265,285225.8747,549397.2288,471307.0888,21
+137266,281675.3922,545573.1406,464942.3274,21
+137267,278692.2196,540898.4625,458613.3738,21
+137268,275780.9041,537400.4047,451800.434,21
+137269,272407.7586,533042.8449,445834.6018,21
+137270,269803.4126,528892.2413,439646.4745,21
+137271,266705.6243,524883.0509,433328.3128,21
+137272,263516.2109,520617.1303,426385.6284,21
+137273,260544.0772,517099.9637,421168.9227,21
+137274,257806.7287,512320.527,413996.3129,21
+137275,254699.5428,508996.569,408406.9725,21
+137276,251377.1539,504359.9315,402005.732,21
+137277,248885.0612,501006.6892,395920.7508,21
+137278,245725.6984,496119.1876,389886.0139,21
+137279,242432.456,492584.2713,383344.6979,21
+137280,240080.5038,488640.9972,377734.4245,21
+137281,238096.4288,485243.1291,373522.1378,21
+137282,236533.3479,482116.8938,368871.4227,21
+137283,234626.9857,478487.21,365528.6241,21
+137284,233275.372,475626.3437,360617.6712,21
+137285,231705.399,472589.0139,357145.1013,21
+137286,229801.2107,468979.2731,352199.7932,21
+137287,228020.3873,465806.192,349081.4646,21
+137288,226965.8497,462445.9995,344213.4583,21
+137289,224925.215,460074.3251,340495.7288,21
+137290,223280.8552,457261.1057,335866.9215,21
+137291,221887.9424,454749.8842,332245.9858,21
+137292,220197.5913,451644.3526,327562.2716,21
+137293,218443.3774,449689.5309,323973.981,21
+137294,217033.9671,446590.4151,319443.0701,21
+137295,214932.0964,443770.5921,315387.2669,21
+137296,213959.2526,441781.8145,311039.6872,21
+137297,211516.3146,438447.9479,306865.3388,21
+137298,210218.0452,435702.3062,303008.4852,21
+137299,208462.6015,433663.0219,298239.7254,21
+137300,207002.3615,430185.3747,294752.3622,21
+137301,205123.3358,428301.9335,289554.0012,21
+137302,203728.3057,424940.1069,286572.0438,21
+137303,201870.2308,422642.4742,280277.9259,21
+137304,200288.728,419863.2139,276481.4545,21
+137305,198792.7884,417180.4286,271477.2961,21
+137306,196899.8438,414236.1215,267006.486,21
+137307,195838.9553,411392.2422,262644.5308,21
+137308,193776.4425,409347.5519,258807.0473,21
+137309,191839.2255,405746.3146,253843.1463,21
+137310,190492.0455,403496.4192,249703.6432,21
+137311,188477.5953,400243.2489,245248.6437,21
+137312,187066.5456,397897.6465,241068.1872,21
+137313,185708.591,395436.6993,237025.5662,21
+137314,183590.5079,392141.6779,232496.9685,21
+137315,182251.4687,389588.5382,228171.0683,21
+137316,180542.0838,387355.738,224252.5934,21
+137317,178875.2724,383024.1207,219599.3967,21
+137318,177256.1696,380767.7621,215604.503,21
+137319,175370.622,377610.4691,211507.3246,21
+137320,174145.5532,374502.8817,206832.4084,21
+137321,172111.2112,372271.8608,202806.1211,21
+137322,170631.9039,369009.9836,198862.7473,21
+137323,168993.6448,366168.3244,194231.167,21
+137324,167094.3409,363261.1116,190505.6286,21
+137325,165457.1377,360666.8595,186842.5983,21
+137326,163971.0989,357266.032,182314.6174,21
+137327,161919.0036,354760.8026,178770.7825,21
+137328,160285.8373,351672.6193,174659.8607,21
+137329,158655.1575,348774.6646,170779.1728,21
+137330,157166.5246,346070.2638,166816.0765,21
+137331,154837.1108,343140.4741,162701.8844,21
+137332,153596.6257,339775.5652,159167.3781,21
+137333,151632.5123,337610.8575,154891.2024,21
+137334,150031.6797,333564.4798,151820.699,21
+137335,147961.7101,331086.904,149463.9961,21
+137336,147228.2924,328301.579,146484.3624,21
+137337,144978.8313,324695.7678,144593.6051,21
+137338,143621.2877,321994.9294,141259.6943,21
+137339,141685.4941,318753.533,139093.1881,21
+137340,139713.2207,315045.5759,136328.0167,21
+137341,136121.6144,313927.4933,130724.5944,21
+137342,132976.332,312664.4199,127267.0129,21
+137343,130718.8175,312722.3383,124276.0401,21
+137344,127742.8751,312141.9155,120442.4791,21
+137345,124904.6087,311421.9892,117563.0117,21
+137346,122457.361,310962.8736,115489.2879,21
+137347,119314.0617,310558.4121,114178.534,21
+137348,116284.5032,309798.9872,112015.5509,21
+137349,113846.9918,309586.6795,111132.5443,21
+137350,111099.7407,308866.3334,109296.0755,21
+137351,108390.4362,308306.6574,107903.1634,21
+137352,105707.3962,308026.5361,106310.7148,21
+137353,103084.0809,307050.8886,104876.1509,21
+137354,100544.7132,306913.776,103370.675,21
+137355,97764.48775,305997.7041,102063.5669,21
+137356,95308.16304,305545.5363,100489.5835,21
+137357,92344.71335,304944.2418,98666.54443,21
+137358,89706.12686,304532.8965,97589.4517,21
+137359,86978.44439,303881.507,95742.79017,21
+137360,84455.56538,302998.3411,94577.82323,21
+137361,82027.5937,303072.242,92981.22108,21
+137362,80033.10761,302351.2813,91302.87889,21
+137363,77976.90582,301523.3964,89971.50522,21
+137364,75981.2846,301340.3389,88495.29576,21
+137365,74068.22023,300471.1236,87388.17187,21
+137366,71657.74087,299932.4319,86039.37995,21
+137367,70009.36168,299789.5348,85323.50482,21
+137368,67790.94117,298583.2653,83960.36398,21
+137369,65678.45971,298330.4602,83067.07077,21
+137370,63602.63994,297970.9554,81572.46207,21
+137371,61670.32154,297030.0593,81045.10061,21
+137372,59657.49032,296301.0573,80085.58946,21
+137373,57272.32035,296324.5689,78860.78048,21
+137374,55560.65391,295118.7368,78379.71938,21
+137375,53380.70363,294925.8,77482.87301,21
+137376,51177.60907,293920.7912,76327.90905,21
+137377,49237.28457,294570.2864,75719.73176,21
+137378,47026.53349,293504.8789,74710.12239,21
+137379,45278.76425,293311.9026,73945.31356,21
+137380,42670.71745,292577.5972,73149.41636,21
+137381,41119.80293,291900.6172,72464.42886,21
+137382,38714.84906,291582.61,71576.22655,21
+137383,37733.90735,290704.7462,70813.14893,21
+137384,37153.51227,290151.8786,69867.8547,21
+137385,36108.99713,289864.1629,69246.61606,21
+137386,35551.73941,288879.4656,68803.47274,21
+137387,34924.11505,287710.3661,67781.23728,21
+137388,34109.10509,287406.7307,67135.79438,21
+137389,33515.70281,286596.2201,66627.08086,21
+137390,32961.07033,286137.2268,65569.57715,21
+137391,32206.65476,285235.6802,65350.98788,21
+137392,31607.95794,285063.4106,64137.55532,21
+137393,30890.728,284124.5502,63827.70761,21
+137394,30461.45962,283696.1542,62867.56185,21
+137395,29740.48911,283074.9505,62100.5571,21
+137396,29205.943,283301.1085,61738.20592,21
+137397,28689.05398,283247.3582,60623.58542,21
+137398,28256.88517,283469.6225,60226.20722,21
+137399,27471.16522,283723.6616,59558.45559,21
+137400,26896.2087,283458.8635,31920.08521,21
+137401,27220.31225,279080.0556,33161.55965,21
+137402,26811.3007,273000.1084,32819.67117,21
+137403,26769.35313,267524.8492,32060.22625,21
+137404,25983.82316,261407.4156,31832.4789,21
+137405,26008.00587,256126.8614,31118.24784,21
+137406,25513.09963,249980.6992,30938.17916,21
+137407,25014.45269,244209.2195,30200.12431,21
+137408,24933.98301,238700.286,29891.01806,21
+137409,24360.39167,232572.2528,29423.68404,21
+137410,23996.98476,227085.8971,29092.88657,21
+137411,23782.93207,220964.4957,28224.19831,21
+137412,23435.83085,215425.7754,28167.43028,21
+137413,23003.90227,209489.8099,27444.40181,21
+137414,22653.46501,204473.5391,27214.71391,21
+137415,22248.46627,198588.7948,26550.90328,21
+137416,22160.20986,192721.7064,26099.75736,21
+137417,21537.65064,186890.6987,25793.23062,21
+137418,21198.6465,181230.4,25145.95927,21
+137419,21023.10413,175501.2662,24799.39153,21
+137420,20579.9956,169708.0661,24534.40922,21
+137421,20506.15437,164165.2343,23537.60524,21
+137422,20121.58968,158176.6204,22710.24194,21
+137423,20232.89074,152547.7072,22296.79051,21
+137424,19836.77478,146940.5344,21727.93509,21
+137425,19782.81607,141003.0429,21630.39548,21
+137426,19550.73278,135391.6376,21322.89909,21
+137427,19506.94692,129447.7897,21230.79347,21
+137428,19063.30149,123942.3315,20916.67556,21
+137429,19242.16995,117995.3899,20829.96434,21
+137430,18784.8187,112370.6143,20464.58156,21
+137431,18869.91503,106612.6723,20422.18858,21
+137432,18517.44396,100706.0472,20223.57396,21
+137433,18472.75801,95101.15364,19985.18943,21
+137434,18225.85284,89257.6194,19668.50696,21
+137435,18023.19383,83569.10742,19726.13207,21
+137436,18052.09225,78364.50482,19257.39028,21
+137437,17706.273,72865.24417,19320.63678,21
+137438,17685.28503,67626.46166,18962.94267,21
+137439,17349.05301,62206.94286,18762.09458,21
+137440,17389.34483,56895.13021,18701.64979,21
+137441,16967.64127,51560.41083,18348.15977,21
+137442,17104.29731,46117.853,18293.04047,21
+137443,16680.68014,43764.58183,18226.59806,21
+137444,16622.85652,43299.47469,17588.82414,21
+137445,16599.96137,42857.9872,17782.16249,21
+137446,16150.61631,41911.40523,17466.42251,21
+137447,16287.5448,41946.65788,17387.85928,21
+137448,15883.64332,132603.0153,17048.44336,21
+137449,15911.27075,40531.19781,16972.30303,21
+137450,15592.15673,40296.31178,16600.15916,21
+137451,15520.61383,39535.91406,16720.71306,21
+137452,15385.99484,39036.46294,16196.78268,21
+137453,15164.08609,38600.63496,16271.02745,21
+137454,14992.3322,37935.85923,15940.92337,21
+137455,14956.01785,37454.38844,15854.49797,21
+137456,14732.72158,36963.76273,15506.11386,21
+137457,14459.75441,36306.66351,15609.68077,21
+137458,14435.06148,36036.43648,15069.80229,21
+137459,14173.15271,35099.59619,15190.92952,21
+137460,14135.81435,35004.97071,14811.35306,21
+137461,18548.65931,44652.74408,22721.87192,21
+137462,18502.77075,44563.20637,22839.41837,21
+137463,18278.46365,44404.15524,22459.84116,21
+137464,18041.66695,43884.83811,22594.43137,21
+137465,18186.43485,43786.54214,22059.47021,21
+137466,17662.31657,43182.86092,21999.54017,21
+137467,17699.92376,43103.84989,21973.68949,21
+137468,17496.67917,42516.86747,21597.6744,21
+137469,17306.43855,42440.87681,21376.29682,21
+137470,17198.57314,42031.23813,21160.24156,21
+137471,16958.5871,41458.18211,21148.31227,21
+137472,16693.62154,41383.24765,20750.19571,21
+137473,16863.14747,41127.35343,20694.87172,21
+137474,16233.18236,40507.36832,20344.57157,21
+137475,16355.36575,40258.77804,20283.33714,21
+137476,16136.47429,40229.36103,19903.06596,21
+137477,16002.51846,39352.46309,19876.1434,21
+137478,15733.57338,39438.38385,19651.96495,21
+137479,15610.97031,38877.04917,19432.94062,21
+137480,15549.15461,38835.67005,19109.07467,21
+137481,15105.94254,38192.65938,19151.32535,21
+137482,15166.97247,38126.41509,18698.41414,21
+137483,14931.80759,37608.76998,18717.54862,21
+137484,14769.79939,37205.65616,18286.41142,21
+137485,14520.03383,37001.15089,18317.47569,21
+137486,14500.85596,36742.98406,17984.6714,21
+137487,14118.73063,36271.36951,17772.27883,21
+137488,14105.42562,35932.65083,17711.75624,21
+137489,13925.92777,35768.87658,17339.6092,21
+137490,13600.03151,35327.48057,17311.33924,21
+137491,13658.23489,35068.25654,16902.81634,21
+137492,13289.31538,34716.12635,16892.00313,21
+137493,13160.32182,34366.21347,16810.36503,21
+137494,13147.55757,34089.58804,16175.41623,21
+137495,12919.70954,33870.64756,16371.53181,21
+137496,12703.94293,33391.97358,16049.26591,21
+137497,12678.20227,33227.7601,15982.12507,21
+137498,12461.67204,32893.38144,15625.82143,21
+137499,12435.78826,32534.78034,15576.23827,21
+137500,12218.4823,32478.20253,15198.45167,21
+137501,11987.41139,31922.45589,15133.21003,21
+137502,11987.41322,31755.1727,15088.24713,21
+137503,11729.28919,31410.09968,14590.69186,21
+137504,11742.36994,31124.39991,14676.83156,21
+137505,11496.48026,30899.48514,14296.51791,21
+137506,11289.23447,30391.00111,14264.09834,21
+137507,11262.7899,30289.42229,13882.62877,21
+137508,11132.34628,30105.03116,13868.08201,21
+137509,10910.66289,29413.66384,13601.9457,21
+137510,10792.85178,29502.49886,13418.80332,21
+137511,10766.09647,29215.03008,13372.42579,21
+137512,10438.07829,28631.40968,12983.68798,21
+137513,10424.63236,28607.6548,12973.34884,21
+137514,10292.39175,28099.54078,12567.54702,21
+137515,10054.16949,27970.26798,12536.4732,21
+137516,10054.17153,27686.25706,12468.78503,21
+137517,9815.015822,27434.49085,11930.10558,21
+137518,9588.588093,27075.75659,12066.54587,21
+137519,9681.406672,26778.35803,11694.57989,21
+137520,9320.068211,26428.9348,11628.19719,21
+137521,5299.267042,19683.8559,4120.098429,21
+137522,5008.156978,19185.33731,3791.061713,21
+137523,4906.386232,19147.09655,3568.243276,21
+137524,4627.420479,19092.75266,3549.111654,21
+137525,4744.75641,18605.25845,3383.173437,21
+137526,4494.730203,18782.77377,3178.074923,21
+137527,4346.528052,18552.18133,3139.531894,21
+137528,4228.045042,18238.73919,2991.555603,21
+137529,4197.729443,18342.17392,2765.474988,21
+137530,3944.309124,17952.30187,2765.526256,21
+137531,3929.016085,18029.11223,2557.833686,21
+137532,3809.294942,17637.21748,2388.062782,21
+137533,3642.91224,17583.05487,2349.169049,21
+137534,3537.774137,17071.73196,2158.88429,21
+137535,3491.183268,17280.29339,2139.379636,21
+137536,3264.159363,16753.20824,1947.897634,21
+137537,3217.179161,16976.34893,1755.065398,21
+137538,2972.580284,16566.17955,1735.462886,21
+137539,2948.855438,16524.98029,1540.979134,21
+137540,2554.008614,16378.52023,1501.598146,21
+137541,2521.867524,16232.10377,1344.454794,21
+137542,2129.252963,16056.88226,1285.231548,21
+137543,2096.56684,16029.22057,1105.504104,21
+137544,1697.278023,15762.19273,880.2920249,21
+137545,1534.703238,15600.27714,1065.86873,21
+137546,1387.682166,15423.77012,860.4293698,21
+137547,1090.06487,15423.74559,820.5853088,21
+137548,921.6331981,15367.01168,820.5895744,21
+137549,650.1629496,14841.93788,780.6062569,21
+137550,466.432664,15069.15262,780.6101431,21
+137551,171.4148312,14770.08391,760.5665098,21
+137552,77.46043861,14755.59345,720.3644279,21
+137553,0,14590.88228,720.3677718,21
+137554,0,14455.20659,700.2112433,21
+137555,0,14396.78206,659.7768056,21
+137556,0,14153.13625,680.0184377,21
+137557,0,14230.94672,619.1816292,21
+137558,0,14064.53036,619.1841448,21
+137559,0,13820.37462,598.8224465,21
+137560,0,13897.38872,598.8248082,21
+137561,0,13745.15008,537.4661836,21
+137562,0,13455.27307,557.9677104,21
+137563,0,13713.69376,537.470095,21
+137564,0,13140.10552,496.3281115,21
+137565,0,13529.81307,516.9263458,21
+137566,0,13092.11721,454.9843984,21
+137567,0,13098.03849,475.6856087,21
+137568,0,13068.60152,454.9872579,21
+137569,0,12806.9903,434.2344511,21
+137570,0,13068.60033,413.4251579,21
+137571,0,12529.5965,413.4263263,21
+137572,0,12792.19846,371.6280121,21
+137573,0,12638.75527,392.5592653,21
+137574,0,12514.74482,350.6358646,21
+137575,0,12375.64598,329.5757714,21
+137576,0,12345.79911,329.5765284,21
+137577,0,11831.36226,308.4460168,21
+137578,0,11660.85426,287.2412628,21
+137579,0,11660.86648,287.241844,21
+137580,0,11378.96865,244.5906655,21
+137581,0,10842.17357,179.9202095,21
+137582,0,11080.72505,179.9204442,21
+137583,0,10826.99128,136.2412266,21
+137584,0,10669.19014,136.2413633,21
+137585,0,10684.47723,91.97009677,21
+137586,0,10526.34324,80.78583817,21
+137587,0,10526.34378,46.85894843,21
+137588,0,10510.99232,35.38865255,21
+137589,0,10255.12556,0,21
+137590,0,10367.80885,0,21
+137591,0,10224.31804,0,21
+137592,0,10224.31869,0,21
+137593,0,9967.351861,0,21
+137594,0,10208.86474,0,21
+137595,0,9936.407205,0,21
+137596,0,9936.407819,0,21
+137597,0,9936.408388,0,21
+137598,0,9920.88275,0,21
+137599,0,9791.979879,0,21
+137600,0,9920.884725,0,21
+137601,0,9741.910553,0,21
+137602,0,11457.74122,0,21
+137603,0,10632.35416,0,21
+137604,0,11169.3579,0,21
+137605,0,11138.12628,0,21
+137606,0,11457.93695,0,21
+137607,0,11612.39294,0,21
+137608,0,11638.94179,0,21
+137609,0,11768.41756,0,21
+137610,0,12215.47087,0,21
+137611,0,11948.28134,0,21
+137612,0,12222.92439,0,21
+137613,0,12260.73582,0,21
+137614,0,12525.94298,0,21
+137615,0,12380.43317,0,21
+137616,0,12550.63833,0,21
+137617,0,12684.0183,0,21
+137618,0,12553.66467,0,21
+137619,0,12834.34375,0,21
+137620,0,12703.6885,0,21
+137621,0,12819.30339,0,21
+137622,0,12851.06123,0,21
+137623,0,12702.64485,0,21
+137624,0,12979.9725,0,21
+137625,0,12816.39005,0,21
+137626,0,12858.25836,0,21
+137627,0,12677.52663,0,21
+137628,0,12965.52964,0,21
+137629,0,12539.54329,0,21
+137630,0,12819.70582,0,21
+137631,0,12510.46526,0,21
+137632,0,12526.86585,0,21
+137633,0,12359.21808,0,21
+137634,0,12349.43559,0,21
+137635,0,12049.75937,0,21
+137636,0,12174.30303,0,21
+137637,0,11883.58619,0,21
+137638,0,11700.16916,0,21
+137639,0,11561.22765,0,21
+137640,0,11371.25373,0,21
+137641,0,5116.417049,0,21
+137642,0,4518.195023,0,21
+137643,0,4324.374601,0,21
+137644,0,3859.517031,0,21
+137645,0,3242.621424,0,21
+137646,0,2885.749347,0,21
+137647,0,2560.913591,0,21
+137648,0,1727.662495,0,21
+137649,0,1553.893161,0,21
+137650,0,842.6701984,0,21
+137651,0,473.2429249,0,21
+137652,0,83.13278005,0,21
+137653,0,0,0,21
+137654,0,0,0,21
+137655,0,185.6623762,0,21
+137656,0,0,0,21
+137657,0,185.6623931,0,21
+137658,0,0,0,21
+137659,0,185.662409,0,21
+137660,0,185.6624295,0,21
+137661,0,94.67789566,0,21
+137662,0,185.6624491,0,21
+137663,0,185.6624852,0,21
+137664,0,185.662438,0,21
+137665,0,185.6625001,0,21
+137666,0,185.6624646,0,21
+137667,0,274.7628984,0,21
+137668,0,185.6624833,0,21
+137669,0,535.0416738,0,21
+137670,0,535.039746,0,21
+137671,0,535.0428568,0,21
+137672,0,620.1047577,0,21
+137673,0,535.0437944,0,21
+137674,0,704.4977107,0,21
+137675,0,704.4977492,0,21
+137676,0,704.4977799,0,21
+137677,0,704.49778,0,21
+137678,0,704.4980069,0,21
+137679,0,704.4980711,0,21
+137680,0,871.5429017,0,21
+137681,0,704.498076,0,21
+137682,0,871.5410944,0,21
+137683,0,871.5429011,0,21
+137684,0,871.5413368,0,21
+137685,0,871.5431349,0,21
+137686,0,871.5414374,0,21
+137687,0,871.5431071,0,21
+137688,0,1036.583921,0,21
+137689,0,871.5430588,0,21
+137690,0,1036.584127,0,21
+137691,0,1036.585981,0,21
+137692,0,871.5417117,0,21
+137693,0,1199.90566,0,21
+137694,0,1036.584211,0,21
+137695,0,1036.585831,0,21
+137696,0,1036.584349,0,21
+137697,0,1199.905692,0,21
+137698,0,1036.584371,0,21
+137699,0,1361.724025,0,21
+137700,0,1199.907709,0,21
+137701,0,1361.705496,0,21
+137702,0,1522.144312,0,21
+137703,0,1361.705831,0,21
+137704,0,1681.343812,0,21
+137705,0,1522.143899,0,21
+137706,0,1681.343484,0,21
+137707,0,1681.343298,0,21
+137708,0,1839.404902,0,21
+137709,0,1839.404719,0,21
+137710,0,1996.411743,0,21
+137711,0,1839.40438,0,21
+137712,0,2152.434528,0,21
+137713,0,1996.411135,0,21
+137714,0,2230.095945,0,21
+137715,0,2152.433942,0,21
+137716,0,2307.533196,0,21
+137717,0,2329.897455,0,21
+137718,0,2505.431091,0,21
+137719,0,2505.454448,0,21
+137720,0,2832.239245,0,21
+137721,0,2679.615553,0,21
+137722,0,2842.478401,0,21
+137723,0,3004.510728,0,21
+137724,0,3004.510466,0,21
+137725,0,3024.627188,0,21
+137726,0,3175.778235,0,21
+137727,0,3175.77787,0,21
+137728,0,3355.970185,0,21
+137729,0,3346.113888,0,21
+137730,0,3505.771599,0,21
+137731,0,3515.57161,0,21
+137732,0,3684.211067,0,21
+137733,0,3842.43452,0,21
+137734,0,4000.022929,0,21
+137735,0,4019.18023,0,21
+137736,0,4166.55705,0,21
+137737,0,4332.392009,0,21
+137738,0,4497.553644,0,21
+137739,0,4662.065327,0,21
+137740,0,4662.065061,0,21
+137741,0,4970.677979,0,21
+137742,0,4989.219625,0,21
+137743,0,5133.459707,0,21
+137744,0,5314.007544,0,21
+137745,0,5457.299984,0,21
+137746,0,5609.24856,0,21
+137747,0,5636.52368,0,21
+137748,0,5920.868607,0,21
+137749,0,6098.461498,0,21
+137750,0,6098.461253,0,21
+137751,0,6257.477882,0,21
+137752,0,6556.289208,0,21
+137753,0,6565.179004,0,21
+137754,0,6871.120966,0,21
+137755,0,6871.120645,0,21
+137756,0,7045.400201,0,21
+137757,0,7322.488218,0,21
+137758,0,7339.97243,0,21
+137759,0,7495.382407,0,21
+137760,0,7787.640017,0,21
+137761,0,18535.77461,0,21
+137762,0,19415.95517,0,21
+137763,0,19692.81356,0,21
+137764,0,19939.64962,0,21
+137765,0,20347.52095,0,21
+137766,0,21903.5996,0,21
+137767,0,21532.76022,0,21
+137768,0,21860.179,0,21
+137769,0,22257.09969,0,21
+137770,0,22424.89956,0,21
+137771,0,22970.22446,0,21
+137772,0,23011.05934,0,21
+137773,0,23274.40222,0,21
+137774,0,23817.93867,0,21
+137775,0,25759.85508,0,21
+137776,0,28716.64989,0,21
+137777,0,27612.08204,0,21
+137778,0,28595.53083,0,21
+137779,0,29563.56886,0,21
+137780,0,29799.24772,0,21
+137781,0,30675.58226,0,21
+137782,0,31017.17041,0,21
+137783,0,31881.4926,0,21
+137784,0,32234.00703,0,21
+137785,0,33041.91806,0,21
+137786,0,33722.03801,0,21
+137787,0,34406.62359,0,21
+137788,0,35930.74704,0,21
+137789,0,39134.55501,0,21
+137790,0,38690.77645,0,21
+137791,0,40132.67964,0,21
+137792,0,40238.53355,0,21
+137793,0,41559.95465,0,21
+137794,0,41670.07684,0,21
+137795,0,131868.9517,0,21
+137796,0,43104.52649,0,21
+137797,0,43539.20958,0,21
+137798,0,43971.06898,0,21
+137799,0,44324.70188,0,21
+137800,0,44993.23602,0,21
+137801,0,45718.21851,0,21
+137802,0,46076.63104,0,21
+137803,0,46323.05769,0,21
+137804,0,47292.18226,0,21
+137805,0,47341.01183,0,21
+137806,0,47924.32373,0,21
+137807,0,48667.95629,0,21
+137808,0,48716.69159,0,21
+137809,0,49391.30895,0,21
+137810,0,49594.66334,0,21
+137811,0,50230.7314,0,21
+137812,0,50568.60266,0,21
+137813,0,50838.80908,0,21
+137814,0,51329.99198,0,21
+137815,0,51699.77789,0,21
+137816,0,52109.22161,0,21
+137817,0,52445.61742,0,21
+137818,0,52515.17192,0,21
+137819,0,53336.37155,0,21
+137820,0,53452.74568,0,21
+137821,0,65981.2907,0,21
+137822,0,67340.94274,0,21
+137823,6296.512595,67351.85471,0,21
+137824,3631.7124,68385.71265,0,21
+137825,4344.455864,68156.95082,0,21
+137826,5043.942668,69054.35392,0,21
+137827,5274.423755,69006.51051,0,21
+137828,5617.789542,69600.51668,0,21
+137829,5958.446021,69640.46475,0,21
+137830,6184.104204,70693.09467,0,21
+137831,6632.092343,70566.88869,0,21
+137832,6965.282873,71137.25361,0,21
+137833,7186.12472,71305.73072,0,21
+137834,7515.518633,71639.1652,0,21
+137835,7951.334486,71951.27078,0,21
+137836,8167.839945,70917.78002,0,21
+137837,8383.434989,70970.62113,0,21
+137838,8918.550795,71108.60099,0,21
+137839,9024.925677,71322.95989,0,21
+137840,9448.327863,71334.84814,0,21
+137841,9658.793717,71248.35246,0,21
+137842,10077.3206,71060.69435,0,21
+137843,10285.40544,71693.14365,0,21
+137844,10492.72009,71231.94086,0,21
+137845,11164.75476,71762.72133,0,21
+137846,11353.58539,71872.81051,0,21
+137847,11793.931,71915.38832,0,21
+137848,12060.60271,72173.38562,0,21
+137849,12395.08636,71848.20971,0,21
+137850,12743.22935,72644.0889,0,21
+137851,13188.9511,72435.64845,0,21
+137852,13418.20645,72865.20044,0,21
+137853,13676.59149,72830.25426,0,21
+137854,14282.18194,73093.618,0,21
+137855,14341.40093,73571.92848,0,21
+137856,14775.9661,73485.20254,731.418603,21
+137857,15193.09334,74004.11691,2453.44739,21
+137858,15429.60117,75594.71189,1774.755793,21
+137859,15857.10489,76086.70509,2453.520973,21
+137860,16076.93595,76661.76512,2621.696117,21
+137861,16514.41494,76860.31185,4208.426588,21
+137862,16732.07906,77136.45378,6127.356309,21
+137863,17165.29966,77537.2314,5672.375611,21
+137864,20479.61289,77887.33154,6493.255519,21
+137865,21548.73618,78112.07952,7340.965686,21
+137866,21411.29666,78364.57738,7830.988424,21
+137867,22668.82456,78874.04333,8474.349747,21
+137868,23343.21221,79131.08934,8927.397837,21
+137869,24130.02368,79150.76683,9794.810235,21
+137870,24882.81742,80035.45393,10175.87168,21
+137871,25838.90108,79936.96322,10784.80394,21
+137872,26618.69729,81926.20821,11449.38336,21
+137873,27519.45721,83646.90529,12020.28387,21
+137874,28556.69192,83529.9009,12714.3228,21
+137875,28964.44447,85379.85255,12998.70783,21
+137876,30017.58107,85460.54319,13937.33954,21
+137877,30723.12925,86606.40415,14589.39863,21
+137878,31568.49091,87122.06373,15090.11805,21
+137879,32376.55608,87701.16322,15750.3058,21
+137880,33046.96513,88441.50283,16398.46816,21
+137881,33780.96776,88915.28565,17637.56387,21
+137882,33935.1198,89793.56854,17876.85292,21
+137883,34559.93347,90138.30082,19029.8818,21
+137884,35047.34385,90636.61104,19366.52832,21
+137885,35276.35495,91752.97177,20525.7798,21
+137886,36147.48068,92934.61392,20910.71085,21
+137887,36522.1574,93995.70225,21797.94429,21
+137888,36734.83562,94226.63896,22400.16399,21
+137889,37578.13577,94886.33222,23209.76199,21
+137890,37728.86547,95747.01656,23796.51145,21
+137891,38457.10375,95691.34009,24535.94694,21
+137892,38596.55999,96627.62831,25166.47169,21
+137893,39280.50217,97921.39183,25824.96253,21
+137894,39459.77321,98418.27955,26669.56602,21
+137895,40373.20584,99056.12906,27284.94586,21
+137896,40277.23239,99471.39253,27935.11574,21
+137897,41056.3665,100063.8067,28664.16395,21
+137898,41468.77879,100456.9413,29156.35308,21
+137899,41913.11107,100893.4553,29982.68275,21
+137900,42231.72938,101957.1313,30659.06427,21
+137901,42860.90693,101676.4378,31120.95774,21
+137902,43413.49598,102793.9731,32105.43544,21
+137903,43786.57097,102701.2294,32335.1753,21
+137904,44175.79649,103497.3909,33231.48829,21
+137905,44880.77633,103587.9229,34340.01647,21
+137906,45071.53187,104159.2547,34743.39179,21
+137907,45481.07018,104665.8593,35804.57757,21
+137908,46143.31436,104854.3968,36211.16475,21
+137909,46368.35437,106487.5866,36661.12742,21
+137910,46919.16782,107452.7943,37674.24119,21
+137911,47091.79421,108192.2172,38107.94254,21
+137912,47631.66563,109150.9167,38527.59271,21
+137913,47993.08137,109381.2553,39565.41357,21
+137914,48184.54227,110551.7631,39949.9243,21
+137915,48735.92273,111266.0703,40435.27747,21
+137916,48910.95077,111907.4003,41644.84616,21
+137917,49567.18774,112820.9381,41493.61994,21
+137918,49507.04219,113274.0851,42850.60443,21
+137919,49981.29183,114308.2153,42942.03909,21
+137920,50342.93748,114430.3173,44019.23829,21
+137921,51734.10528,115386.0479,44160.09586,21
+137922,52527.65105,116264.5399,45234.99536,21
+137923,52722.73137,116566.2781,45856.60223,21
+137924,53256.10768,117577.2073,46274.47878,21
+137925,53247.18367,117863.3471,46905.46777,21
+137926,53943.57332,119086.4955,47768.85907,21
+137927,54127.1417,119840.245,48185.70743,21
+137928,54310.46259,120207.5169,49326.43577,21
+137929,54953.47749,121491.9474,49134.79763,21
+137930,54861.01397,122446.4505,50755.19502,21
+137931,55465.89632,124019.756,50564.51993,21
+137932,55682.69416,125219.4001,51671.94175,21
+137933,56170.70821,126822.1326,52385.23818,21
+137934,55909.07586,127925.1581,52569.17283,21
+137935,56821.80777,129762.8646,53728.20355,21
+137936,56731.22618,130597.4535,54117.12287,21
+137937,57231.4811,132219.1304,56767.37327,21
+137938,57737.09442,133212.8432,57800.24099,21
+137939,58038.06974,134341.0612,58409.16803,21
+137940,58444.25994,135529.3899,58991.26545,21
+137941,59918.42139,140965.2288,61921.33784,21
+137942,60764.8998,144059.5033,62517.7313,21
+137943,64907.44051,147138.5625,63209.76859,21
+137944,65225.96563,149667.336,63945.49718,21
+137945,66448.25968,152297.3641,64206.03166,21
+137946,67470.16326,155132.4809,65044.83208,21
+137947,68723.72128,157953.4835,65106.97018,21
+137948,69614.68653,160556.0938,66206.52667,21
+137949,70686.49074,163813.003,66286.83194,21
+137950,71591.34697,166165.9735,66780.555,21
+137951,72651.62548,169380.13,67644.59484,21
+137952,73485.01305,171907.6151,68295.95425,21
+137953,74582.71626,174529.1968,68659.79439,21
+137954,75522.43891,177459.4761,69278.24982,21
+137955,76228.84611,180317.443,69955.80222,21
+137956,77352.2079,183066.1065,70057.37685,21
+137957,78171.69403,186138.1018,70940.25152,21
+137958,79185.6513,188996.9872,71561.19206,21
+137959,82488.13856,191686.0596,71666.58365,21
+137960,83465.87672,194520.5167,72050.98233,21
+137961,84618.70339,197724.5035,72925.85486,21
+137962,85850.26714,201134.4931,73232.55009,21
+137963,87103.74459,202877.1424,73656.5442,21
+137964,88139.91758,206890.2833,74291.64831,21
+137965,89716.66968,209189.6427,74540.17723,21
+137966,90453.30304,212186.5602,75120.79724,21
+137967,92005.07668,215134.2249,75704.69186,21
+137968,93001.93079,218079.8702,76096.51658,21
+137969,93872.02829,220925.9748,76623.32922,21
+137970,96191.76897,223477.8367,76918.98622,21
+137971,96899.3559,226379.6959,77622.5316,21
+137972,98145.24406,229131.7958,77618.47783,21
+137973,99359.88858,232943.3017,78464.48601,21
+137974,100294.3023,240617.3916,78794.13977,21
+137975,101507.2444,240811.3416,79249.09428,21
+137976,102393.256,245863.9395,79547.32133,21
+137977,103919.4778,246929.5573,79908.21127,21
+137978,104503.016,251934.0897,80820.53371,21
+137979,105645.1039,253929.6652,80673.45101,21
+137980,107126.345,257300.3429,81054.20919,21
+137981,107551.4518,260373.9215,82107.11527,21
+137982,108997.7612,263109.2669,81776.53947,21
+137983,109937.2161,266582.7155,82434.31633,21
+137984,110847.8871,269419.7543,82985.57947,21
+137985,111926.5641,272060.0218,83121.61348,21
+137986,113129.3372,275331.1669,83901.50949,21
+137987,113894.6952,278228.8837,83673.94497,21
+137988,114878.2864,282044.5582,84631.88673,21
+137989,115962.7547,287344.6472,84825.74737,21
+137990,116979.5752,287584.0858,84878.77875,21
+137991,118072.2663,292525.2456,85568.66288,21
+137992,118699.2296,294576.5424,85877.16179,21
+137993,120025.0035,298046.1395,86194.55832,21
+137994,120550.8945,300999.3112,86837.8848,21
+137995,121867.918,302624.0162,86697.9973,21
+137996,122621.5897,307172.6095,87071.51625,21
+137997,123844.1602,308886.4904,87932.17906,21
+137998,124515.7344,312725.6097,87692.65426,21
+137999,125422.7366,315074.982,88593.79674,21
+138000,126692.4186,317232.3568,88425.08005,21
+138001,126946.5178,321431.4517,93028.73762,21
+138002,128084.6836,324766.6444,91662.62374,21
+138003,128417.8819,327357.2003,93263.87456,21
+138004,129541.0751,329993.5903,94422.76067,21
+138005,130204.3645,331986.5138,95401.99506,21
+138006,130826.522,335128.2945,96377.12996,21
+138007,131708.5047,337311.2485,97117.74902,21
+138008,132011.7169,339590.6134,98500.5992,21
+138009,133494.2747,343009.6314,99414.65888,21
+138010,133577.9248,344577.7051,100443.2137,21
+138011,134377.7777,347838.9066,101110.9172,21
+138012,135341.0741,349760.02,102465.3695,21
+138013,135877.5628,352196.032,103279.1286,21
+138014,136674.3892,354777.2648,103970.0793,21
+138015,137112.9836,357075.6139,105285.1229,21
+138016,138252.0811,359693.0389,106529.1621,21
+138017,138417.4239,362109.9379,106586.9205,21
+138018,139476.6088,364926.7569,108678.1897,21
+138019,140021.1328,366182.6582,108817.7822,21
+138020,140652.7917,369746.4742,109901.8587,21
+138021,141308.2665,371463.5014,111406.5754,21
+138022,142238.5493,373697.7364,111546.3851,21
+138023,142518.5516,376838.4283,112993.2817,21
+138024,143324.5747,378571.0246,114217.9659,21
+138025,143834.8962,381523.0834,114149.8427,21
+138026,144859.4283,383947.0197,116164.2942,21
+138027,145018.9012,386098.9492,116825.0066,21
+138028,145790.8526,387698.6909,117367.3951,21
+138029,146814.1563,391743.3975,118649.868,21
+138030,147007.2157,393574.4173,119526.6821,21
+138031,147665.473,396582.5861,120604.7975,21
+138032,148672.2276,397155.0888,121338.5433,21
+138033,148854.7067,401812.4224,122319.9489,21
+138034,149611.5532,402350.1599,123144.2002,21
+138035,150399.624,405697.474,124084.4583,21
+138036,150705.3742,407032.6169,126382.9076,21
+138037,151506.2483,408987.1376,129221.4951,21
+138038,152143.4106,412075.4726,129424.3632,21
+138039,152570.2353,414048.8068,131386.4602,21
+138040,153239.1491,417111.7001,132021.6477,21
+138041,153940.1168,417815.2945,134243.6592,21
+138042,154476.1305,421032.7201,134909.8743,21
+138043,154940.5918,423966.7894,136694.6865,21
+138044,155695.1749,424628.8914,137921.2384,21
+138045,156204.6238,428107.7613,155654.702,21
+138046,156539.8971,431016.6437,157299.2618,21
+138047,157525.1136,431799.1426,157806.2718,21
+138048,158076.7889,434555.2784,159048.1161,21
+138049,158353.2838,436773.3768,160201.719,21
+138050,158926.5045,439658.9037,161011.2672,21
+138051,159834.6583,441604.7391,162268.0485,21
+138052,160385.6227,443357.7918,163281.0356,21
+138053,161789.7723,445490.604,164053.3155,21
+138054,162847.1894,448518.5574,165298.8106,21
+138055,164190.0223,450031.8758,165848.5712,21
+138056,165358.4568,453312.4478,167473.5387,21
+138057,166594.3719,454372.8666,168036.9414,21
+138058,167883.5411,457119.5422,169380.1093,21
+138059,168817.1252,459755.8723,169866.9993,21
+138060,170473.0042,461714.1892,171801.8296,21
+138061,0,0,0,21
+138062,0,0,0,21
+138063,82903.78009,0,0,21
+138064,0,75.32938983,0,21
+138065,0,0,0,21
+138066,339677.6294,368182.2696,1672054.023,21
+138067,0,79821.28061,0,21
+138068,0,0,0,21
+138069,0,0,0,21
+138070,0,0,0,21
+138071,0,0,0,21
+138072,0,0,0,21
+138073,0,0,0,21
+138074,0,0,0,21
+138075,0,0,0,21
+138076,0,0,0,21
+138077,0,0,0,21
+138078,0,0,0,21
+138079,0,0,0,21
+138080,0,0,0,21
+138081,0,0,0,21
+138082,0,0,0,21
+138083,0,0,0,21
+138084,0,3.503473132,0,21
+138085,0,79892.70151,0,21
+138086,0,0,0,21
+138087,0,0,0,21
+138088,0,0,0,21
+138089,0,0,0,21
+138090,0,0,0,21
+138091,0,0,0,21
+138092,0,0,0,21
+138093,0,0,0,21
+138094,0,0,0,21
+138095,0,0,0,21
+138096,0,0,0,21
+138097,0,0,0,21
+138098,0,0,0,21
+138099,0,0,0,21
+138100,0,0,0,21
+138101,339665.7707,368229.4796,1583415.802,21
+138102,0,3.144280028,0,21
+138103,0,0,0,21
+138104,0,78.52921636,0,21
+138105,0,0,0,21
+138106,0,0,0,21
+138107,0,79933.4054,0,21
+138108,0,0,0,21
+138109,0,0,0,21
+138110,0,0,0,21
+138111,0,0,0,21
+138112,0,0,0,21
+138113,0,0,0,21
+138114,0,0,0,21
+138115,0,0,0,21
+138116,0,0,0,21
+138117,0,0,0,21
+138118,0,0,0,21
+138119,0,0,35387.12975,21
+138120,0,0,35463.91649,15.6
+138121,0,0,35446.97954,15.6
+138122,0,0,35507.46431,15.6
+138123,0,149.668597,35522.39461,15.6
+138124,0,0,35528.16704,15.6
+138125,0,0,35533.9977,15.6
+138126,0,0,35538.22426,15.6
+138127,0,0,35540.49633,15.6
+138128,0,0,35540.64218,15.6
+138129,0,0,35538.164,15.6
+138130,0,109.1222055,35532.87855,15.6
+138131,0,0,35524.81432,15.6
+138132,0,0,35513.95792,15.6
+138133,0,0,35500.39116,15.6
+138134,0,79.92761256,35484.33896,15.6
+138135,0,0,35465.96955,15.6
+138136,339665.0184,368233.4129,1452502.94,15.6
+138137,0,80202.87087,33368.19779,15.6
+138138,0,0,33349.2113,15.6
+138139,0,0,33328.54831,15.6
+138140,0,0,33306.43393,15.6
+138141,0,0,33282.97202,15.6
+138142,0,0,33258.26182,15.6
+138143,0,0,33232.50472,15.6
+138144,0,0,33205.88986,15.6
+138145,0,0,33178.62453,15.6
+138146,0,0,33150.88217,15.6
+138147,0,0,0,15.6
+138148,0,0,0,15.6
+138149,0,0,0,15.6
+138150,0,0,0,15.6
+138151,0,0,0,15.6
+138152,0,0,0,15.6
+138153,0,0,0,15.6
+138154,0,3.965262592,0,15.6
+138155,0,0,0,15.6
+138156,0,122.2881467,0,15.6
+138157,0,0,0,15.6
+138158,0,0,0,15.6
+138159,0,0,0,15.6
+138160,0,73.17448238,0,15.6
+138161,0,0,0,15.6
+138162,0,0,0,15.6
+138163,0,80274.56089,0,15.6
+138164,0,0,32953.28124,15.6
+138165,0,0,32914.35477,15.6
+138166,0,0,32910.76664,15.6
+138167,0,0,32924.40169,15.6
+138168,0,0,32944.09439,15.6
+138169,0,0,32964.6152,15.6
+138170,0,0,32984.37501,15.6
+138171,0,368168.6426,1339591.204,15.6
+138172,339678.2959,0,31258.51513,15.6
+138173,0,0,31276.95219,15.6
+138174,0,0,31292.71489,15.6
+138175,0,0,31305.59214,15.6
+138176,0,0,31315.59334,15.6
+138177,0,0,31322.62994,15.6
+138178,0,0,31326.86752,15.6
+138179,0,0,31328.60717,15.6
+138180,0,0,31328.08292,15.6
+138181,0,0,31354.52511,15.6
+138182,0,0,31380.57331,15.6
+138183,0,378.1632687,31404.14314,15.6
+138184,0,0,31427.82956,15.6
+138185,0,0,31450.22052,15.6
+138186,0,0,31471.68826,15.6
+138187,0,0,31492.3897,15.6
+138188,0,80341.88592,31512.23374,15.6
+138189,0,0,31531.45854,15.6
+138190,0,0,31550.00753,15.6
+138191,0,0,31568.06615,15.6
+138192,0,0,0,15.6
+138193,0,0,0,15.6
+138194,0,0,0,15.6
+138195,0,0,0,15.6
+138196,0,0,0,15.6
+138197,0,0,0,15.6
+138198,0,0,0,15.6
+138199,0,0,0,15.6
+138200,0,0,0,15.6
+138201,0,0,0,15.6
+138202,0,0,0,15.6
+138203,0,0,0,15.6
+138204,0,0,0,15.6
+138205,0,3.704350808,0,15.6
+138206,0,368146.0387,1233430.082,15.6
+138207,0,115.3994689,0,15.6
+138208,339681.346,0,0,15.6
+138209,0,0,0,15.6
+138210,0,0,26753.27564,15.6
+138211,0,0,30355.93552,15.6
+138212,0,179.593943,30371.62422,15.6
+138213,0,0,30423.39149,15.6
+138214,0,0,30492.39052,15.6
+138215,0,0,30567.29648,15.6
+138216,0,0,30643.01477,15.6
+138217,0,0,30717.78853,15.6
+138218,0,0,30791.02603,15.6
+138219,0,107.5928751,30862.18266,15.6
+138220,0,0,30930.93687,15.6
+138221,0,0,30996.91221,15.6
+138222,0,0,31059.96941,15.6
+138223,0,97.15313533,31120.03736,15.6
+138224,0,0,31177.19349,15.6
+138225,0,0,31231.47634,15.6
+138226,0,0,31283.14773,15.6
+138227,0,101.0517278,31332.29177,15.6
+138228,0,0,31379.19591,15.6
+138229,0,0,31424.03841,15.6
+138230,0,0,31467.02179,15.6
+138231,0,96.37726629,31508.38877,15.6
+138232,0,0,31548.20839,15.6
+138233,0,0,31586.73748,15.6
+138234,0,0,31624.0826,15.6
+138235,0,83.04156602,31660.42312,15.6
+138236,0,0,31695.83428,15.6
+138237,0,0,31730.50722,15.6
+138238,0,80442.16563,31764.47529,15.6
+138239,0,0,0,15.6
+138240,0,0,0,15.6
+138241,0,0,1132411.2,15.6
+138242,0,368159.7705,0,15.6
+138243,0,0,0,15.6
+138244,339680.1681,0,0,15.6
+138245,0,0,0,15.6
+138246,0,0,0,15.6
+138247,0,0,0,15.6
+138248,0,0,0,15.6
+138249,0,0,0,15.6
+138250,0,0,0,15.6
+138251,0,0,0,15.6
+138252,0,0,0,15.6
+138253,0,0,0,15.6
+138254,0,0,0,15.6
+138255,0,0,0,15.6
+138256,0,80411.17743,0,15.6
+138257,0,0,27221.12762,15.6
+138258,0,0,30843.87065,15.6
+138259,0,0,30879.60044,15.6
+138260,0,0,30950.8672,15.6
+138261,0,0,31038.60513,15.6
+138262,0,0,31131.41553,15.6
+138263,0,0,31224.4722,15.6
+138264,0,0,31316.05418,15.6
+138265,0,0,31405.7013,15.6
+138266,0,0,31493.1086,15.6
+138267,0,0,31577.95192,15.6
+138268,0,0,31659.81468,15.6
+138269,0,0,31738.71619,15.6
+138270,0,0,31814.48247,15.6
+138271,0,0,31887.20723,15.6
+138272,0,0,31957.06868,15.6
+138273,0,3.264773021,32024.23847,15.6
+138274,0,80372.8811,32088.84564,15.6
+138275,0,0,32151.23975,15.6
+138276,0,0,1076336.518,15.6
+138277,0,0,31219.37197,15.6
+138278,0,368235.8948,31278.73441,15.6
+138279,0,0,31336.56193,15.6
+138280,339666.4368,0,31392.92394,15.6
+138281,0,0,31448.07042,15.6
+138282,0,0,31502.03799,15.6
+138283,0,0,31555.0382,15.6
+138284,0,0,31607.22199,15.6
+138285,0,0,31658.78513,15.6
+138286,0,0,0,15.6
+138287,0,0,0,15.6
+138288,0,0,0,15.6
+138289,0,0,0,15.6
+138290,0,0,0,15.6
+138291,0,0,0,15.6
+138292,0,80338.69463,0,15.6
+138293,0,0,0,15.6
+138294,0,0,0,15.6
+138295,0,0,0,15.6
+138296,0,0,0,15.6
+138297,0,0,0,15.6
+138298,0,0,0,15.6
+138299,0,0,0,15.6
+138300,0,0,0,15.6
+138301,0,0,0,15.6
+138302,0,0,0,15.6
+138303,0,0,0,15.6
+138304,0,0,0,15.6
+138305,0,0,28121.89682,15.6
+138306,0,0,31689.42344,15.6
+138307,0,0,31671.75379,15.6
+138308,0,0,31689.83412,15.6
+138309,0,0,31723.76857,15.6
+138310,0,2.431320097,31762.00003,15.6
+138311,0,0,1027724.622,15.6
+138312,0,74.79825499,30916.93288,15.6
+138313,0,0,30952.56402,15.6
+138314,0,368275.7081,30985.40623,15.6
+138315,0,0,31015.27617,15.6
+138316,339661.5182,0,31041.8184,15.6
+138317,0,208.3138023,31064.90916,15.6
+138318,0,0,31084.56379,15.6
+138319,0,0,31100.89737,15.6
+138320,0,0,31114.09511,15.6
+138321,0,0,31124.38031,15.6
+138322,0,0,31131.96459,15.6
+138323,0,0,31137.06641,15.6
+138324,0,0,31139.88175,15.6
+138325,0,0,31140.61277,15.6
+138326,0,0,31139.43075,15.6
+138327,0,0,31136.51996,15.6
+138328,0,0,31132.03673,15.6
+138329,0,0,31126.14496,15.6
+138330,0,0,31118.97812,15.6
+138331,0,0,31110.67616,15.6
+138332,0,0,31101.34772,15.6
+138333,0,0,31091.10814,15.6
+138334,0,0,0,15.6
+138335,0,0,0,15.6
+138336,0,0,0,15.6
+138337,0,0,0,15.6
+138338,0,0,0,15.6
+138339,0,0,0,15.6
+138340,0,0,0,15.6
+138341,0,0,0,15.6
+138342,0,0,0,15.6
+138343,0,0,0,15.6
+138344,0,0,0,15.6
+138345,0,0,0,15.6
+138346,0,0,969173.0563,15.6
+138347,0,0,0,15.6
+138348,0,0,0,15.6
+138349,0,0,0,15.6
+138350,0,368285.9327,0,15.6
+138351,0,0,0,15.6
+138352,339672.5388,0,0,15.6
+138353,0,0,0,15.6
+138354,0,0,25613.38021,15.6
+138355,0,0,29188.30987,15.6
+138356,0,0,29178.23583,15.6
+138357,0,0,29203.96733,15.6
+138358,0,0,29245.65335,15.6
+138359,0,0,29291.71209,15.6
+138360,0,0,29337.27419,15.6
+138361,0,0,29349.74349,15.6
+138362,0,80630.16918,29360.14967,15.6
+138363,0,0,29366.93038,15.6
+138364,0,0,166733.7569,15.6
+138365,0,0,15964.74587,15.6
+138366,0,0,61664.26794,15.6
+138367,0,0,15995.67769,15.6
+138368,0,0,60008.48382,15.6
+138369,0,29602.4778,23055.88362,15.6
+138370,0,344.5111344,31440.76729,15.6
+138371,0,5629.950409,30423.8616,15.6
+138372,0,11540.29233,30063.45124,15.6
+138373,0,10640.90779,29876.67755,15.6
+138374,0,9675.390968,29734.12797,15.6
+138375,0,10277.01378,29603.13984,15.6
+138376,0,10433.17734,29439.12492,15.6
+138377,0,10595.0295,29357.84199,15.6
+138378,0,10724.82988,29220.10804,15.6
+138379,0,10803.57316,29207.59956,15.6
+138380,0,11012.45278,29161.77397,15.6
+138381,0,11206.91299,1078255.205,15.6
+138382,0,11251.68718,15657.20118,15.6
+138383,0,11375.56501,0,15.6
+138384,0,11530.80954,0,15.6
+138385,0,11598.62932,0,15.6
+138386,0,380325.0178,0,15.6
+138387,0,11857.79489,0,15.6
+138388,339677.2174,12073.63073,0,15.6
+138389,0,12116.50375,0,15.6
+138390,0,12329.36844,0,15.6
+138391,0,12400.57785,0,15.6
+138392,0,12566.435,0,15.6
+138393,0,12742.51538,0,15.6
+138394,0,12818.71419,0,15.6
+138395,0,12935.08579,0,15.6
+138396,0,13069.23211,0,15.6
+138397,0,13197.99824,0,15.6
+138398,0,13480.80447,0,15.6
+138399,0,0,0,15.6
+138400,0,0,149257.1668,15.6
+138401,0,0,0,15.6
+138402,0,0,0,15.6
+138403,0,0,0,15.6
+138404,0,51144.89958,52881.13983,15.6
+138405,0,281.4095038,20772.59555,15.6
+138406,0,9281.038714,28837.52781,15.6
+138407,0,18847.47891,27871.57506,15.6
+138408,0,14309.24626,27557.45829,15.6
+138409,0,14696.51473,27417.17934,15.6
+138410,0,14879.93813,27322.44558,15.6
+138411,0,15099.54656,27238.4453,15.6
+138412,0,95832.40331,27105.15789,15.6
+138413,0,15298.32175,27095.23419,15.6
+138414,0,15411.44882,26961.43055,15.6
+138415,0,15513.00819,26993.09428,15.6
+138416,0,15644.64666,26979.41275,15.6
+138417,0,15723.09732,915374.7531,15.6
+138418,0,15886.30537,160608.8407,15.6
+138419,0,15992.36848,13314.53717,15.6
+138420,0,16106.59573,55182.81138,15.6
+138421,37628.48975,1111939.528,13399.5129,15.6
+138422,1407.733914,671947.7172,54529.7515,15.6
+138423,7282.341721,128801.235,20726.71919,15.6
+138424,356737.7006,364695.7175,28460.93745,15.6
+138425,11321.3898,290908.316,27584.73736,15.6
+138426,12324.92909,286050.6885,27310.65452,15.6
+138427,12349.13072,285595.7181,27195.99625,15.6
+138428,12467.78697,286551.0281,27123.48326,15.6
+138429,12389.04044,285991.6671,27061.90072,15.6
+138430,12478.74449,286330.7248,26968.54661,15.6
+138431,12462.51474,286651.9248,26955.48592,15.6
+138432,12487.78804,286319.1415,26870.77583,15.6
+138433,12510.61861,286853.6923,0,15.6
+138434,12518.97364,246650.4835,0,15.6
+138435,12569.3418,246686.4127,0,15.6
+138436,12544.10697,355459.2002,0,15.6
+138437,12581.29142,271899.0059,0,15.6
+138438,12625.45062,367222.4802,0,15.6
+138439,12617.17826,290213.2603,0,15.6
+138440,12617.57817,289778.6745,0,15.6
+138441,12687.52897,288479.3732,0,15.6
+138442,12664.73413,288982.4234,0,15.6
+138443,12695.76932,289574.8814,0,15.6
+138444,12749.30175,289710.9745,0,15.6
+138445,12697.9261,290885.4202,0,15.6
+138446,12807.48896,290226.1837,0,15.6
+138447,12765.84419,291601.7341,0,15.6
+138448,12793.09904,290931.6887,0,15.6
+138449,12821.31755,292766.5433,0,15.6
+138450,12835.22072,292060.4013,0,15.6
+138451,0,40571.64709,880505.5018,15.6
+138452,0,40693.7859,0,15.6
+138453,0,40633.65755,0,15.6
+138454,0,754063.802,0,15.6
+138455,0,121891.1952,22296.98472,15.6
+138456,0,658298.5276,25914.58895,15.6
+138457,0,321856.7015,25945.55773,15.6
+138458,0,295001.8163,26012.03818,15.6
+138459,339680.6116,297226.4862,26094.65745,15.6
+138460,0,297249.01,26182.03293,15.6
+138461,0,298427.0827,26269.21302,15.6
+138462,41995.02792,379184.017,26354.52494,15.6
+138463,2822.068966,298873.9593,26437.38505,15.6
+138464,8016.775086,299519.0303,26517.43058,15.6
+138465,17192.43218,299377.0138,26594.33646,15.6
+138466,12842.3805,259834.4848,26667.79468,15.6
+138467,13041.7248,259790.4423,26737.749,15.6
+138468,13254.45368,370364.8757,26804.15935,15.6
+138469,13298.65752,286061.9213,26867.0704,15.6
+138470,13257.59699,300821.7469,26926.70931,15.6
+138471,13332.03871,304915.2778,26983.23428,15.6
+138472,13314.74193,303782.3108,27036.84924,15.6
+138473,13352.84952,304136.3901,27087.82893,15.6
+138474,13317.85731,304236.1579,27136.29071,15.6
+138475,13397.19844,304848.7775,27182.43834,15.6
+138476,13374.84463,305524.6835,27226.49991,15.6
+138477,13368.86555,306023.3751,27268.67503,15.6
+138478,13457.1108,306594.3212,27309.09975,15.6
+138479,13409.75158,306433.4523,27348.04545,15.6
+138480,13416.2344,309467.1603,114587.906,17.8
+138481,831960.3181,1431857.873,1165711.03,17.8
+138482,385001.5191,1389829.354,441228.2196,17.8
+138483,167751.8379,288373.3076,426466.5832,17.8
+138484,258043.2469,78050.50545,527493.6931,17.8
+138485,262875.4667,1148718.755,1349576.365,17.8
+138486,244547.1974,465992.4909,475317.7214,17.8
+138487,243278.0443,680404.978,477548.1344,17.8
+138488,242680.715,621529.4436,481606.302,17.8
+138489,243002.38,549112.5158,487379.8199,17.8
+138490,242141.2968,962075.8916,491450.5607,17.8
+138491,242149.059,573716.4523,496287.5209,17.8
+138492,203957.1141,571733.7221,500998.1793,17.8
+138493,203367.8968,567963.1236,505568.3815,17.8
+138494,543031.4226,565897.8404,509954.7851,17.8
+138495,288069.3376,563643.0659,513875.1127,17.8
+138496,240976.8604,560927.2899,518884.0599,17.8
+138497,225625.2605,559366.2466,522561.2483,17.8
+138498,242333.8247,470824.8377,526769.636,17.8
+138499,239878.7295,469739.6262,530891.0504,17.8
+138500,237799.1648,584571.5726,534410.0186,17.8
+138501,242189.7552,580702.4305,538580.2409,17.8
+138502,244399.7709,529808.7654,542338.4353,17.8
+138503,241708.2505,556107.027,545524.2204,17.8
+138504,242905.5736,529530.6239,550073.6471,17.8
+138505,242465.5805,523068.714,552491.4186,17.8
+138506,242841.9526,522099.9111,568434.9797,17.8
+138507,243000.181,519983.7033,578431.4441,17.8
+138508,242842.9955,518336.7458,582365.1543,17.8
+138509,242709.5367,516402.5396,590069.0564,17.8
+138510,242218.0414,513968.2214,498587.7823,17.8
+138511,41047.88082,512908.4877,40541.20752,17.8
+138512,41135.39586,552659.2691,40614.13349,17.8
+138513,41115.012,510889.0172,257368.837,17.8
+138514,41071.97199,525315.6691,118315.9916,17.8
+138515,41090.0747,97411.88084,98864.33181,17.8
+138516,649137.2797,95724.86392,125561.1151,17.8
+138517,113790.8102,1155832.353,114791.2581,17.8
+138518,206385.9359,343142.3389,114826.7948,17.8
+138519,279937.9858,582674.6524,1268650.641,17.8
+138520,235578.2558,493378.7322,112572.1341,17.8
+138521,240320.5598,528867.8762,112752.666,17.8
+138522,240094.54,512177.8394,112890.4266,17.8
+138523,240204.0977,511212.5955,1317857.849,17.8
+138524,239537.8783,876575.1738,408354.2222,17.8
+138525,201385.1563,507388.5945,584092.8689,17.8
+138526,197987.7573,505675.7145,611394.6296,17.8
+138527,198280.0263,504042.2333,582636.637,17.8
+138528,280198.2703,501803.5746,589005.8452,17.8
+138529,566939.0175,500972.8952,594113.3232,17.8
+138530,219862.7917,422247.5349,596498.3252,17.8
+138531,232345.3536,420939.4164,601062.7766,17.8
+138532,227842.2959,533887.0115,603907.5971,17.8
+138533,236487.0599,510390.1776,607629.0576,17.8
+138534,232860.7353,486757.1309,611265.7646,17.8
+138535,232780.8976,496016.0357,587744.7895,17.8
+138536,232731.6441,487393.4032,590913.2973,17.8
+138537,232081.4291,489937.7308,593468.2391,17.8
+138538,232153.6107,486623.6576,596250.8793,17.8
+138539,231815.4624,484612.866,599496.493,17.8
+138540,231229.1425,483805.518,601890.8791,20
+138541,1052267.722,2601662.613,2972721.366,20
+138542,500638.2473,494034.8166,1712929.943,20
+138543,128496.48,471227.0044,435185.3076,20
+138544,254098.6466,568629.1395,733001.4853,20
+138545,318689.4481,715848.7842,928064.7054,20
+138546,280742.7439,586456.3549,784601.98,20
+138547,272824.3804,606754.3515,783131.9038,20
+138548,276625.4365,606571.7788,793483.0261,20
+138549,275453.4918,604008.7811,799203.5636,20
+138550,275257.8073,604476.877,800792.4649,20
+138551,274392.4479,602587.2395,805459.9256,20
+138552,273621.1074,601713.4689,808454.5496,20
+138553,273411.7171,600785.1974,812311.0217,20
+138554,272402.1979,599824.8826,817525.8301,20
+138555,272046.7424,598765.0369,820410.6153,20
+138556,271255.8198,598623.8137,824197.7767,20
+138557,271151.516,596691.7876,827165.9619,20
+138558,270034.0704,597860.6724,831382.3969,20
+138559,269802.0916,596148.2355,833614.2906,20
+138560,269646.1509,596022.9226,837333.2151,20
+138561,268579.3877,594754.3291,840910.6011,20
+138562,268438.415,595353.1302,843633.5105,20
+138563,267967.8381,594562.1508,846991.7709,20
+138564,267603.3088,594047.5672,849227.3507,20
+138565,267032.5158,593325.9309,853421.9308,20
+138566,266778.1822,593507.9626,855732.3832,20
+138567,265969.6616,592474.5244,857034.9531,20
+138568,266117.9389,593050.7571,859320.2492,20
+138569,265120.9462,592219.0954,862123.3195,20
+138570,273850.784,592850.3075,866152.1551,20
+138571,269700.8999,591375.3278,867276.5914,20
+138572,270782.4912,592833.3644,870778.7049,20
+138573,271105.0251,590911.3447,873651.4263,20
+138574,271769.1413,592537.2114,875753.2186,20
+138575,271763.3403,590671.9699,878547.9206,20
+138576,272380.0283,592305.6896,880892.967,20
+138577,271982.2089,590928.3293,883368.2261,20
+138578,273404.4881,591038.0453,885278.9661,20
+138579,272897.7573,591521.758,888667.7882,20
+138580,273110.4365,591376.7515,890660.2089,20
+138581,273999.0173,591415.309,892683.5409,20
+138582,273926.8989,591536.205,895486.585,20
+138583,274171.808,591436.5412,897138.9436,20
+138584,274448.5619,590600.1803,899859.1567,20
+138585,274794.7311,591531.3684,901562.1148,20
+138586,275229.3749,591158.2166,904837.246,20
+138587,274936.2282,591859.9815,906073.0838,20
+138588,276087.4443,591175.3778,908342.5111,20
+138589,275766.7012,592117.2734,910460.8113,20
+138590,275635.9556,591262.1974,912965.7926,20
+138591,276917.0486,592916.1965,914293.2067,20
+138592,275978.119,591722.5671,917740.8626,20
+138593,270340.5797,591855.0599,918572.8291,20
+138594,269102.0746,593171.9425,920571.1883,20
+138595,267938.718,591632.9178,922778.3509,20
+138596,267727.955,593280.786,925402.5897,20
+138597,266221.4069,593312.3904,926693.6082,20
+138598,268079.8977,587729.9379,928264.0122,20
+138599,265678.0363,587575.2542,930901.8935,20
+138600,265872.9983,587358.8458,932324.0961,21
+138601,235502.8085,1036324.281,908892.0421,21
+138602,231265.5407,1030835.53,907418.2964,21
+138603,229664.0242,1030869.191,905951.0397,21
+138604,228338.8681,1028053.519,906729.6755,21
+138605,227335.4506,1029099.799,906185.5535,21
+138606,226382.801,1025772.007,906568.0092,21
+138607,225106.1326,1027342.003,906191.969,21
+138608,224751.9754,1024844.489,906050.5618,21
+138609,223056.723,1024254.993,906740.5702,21
+138610,222984.0536,1024048.975,905385.8705,21
+138611,221463.4039,1023806.076,905934.8428,21
+138612,221163.108,1022029.643,906768.4606,21
+138613,219161.127,1022493.776,904976.9279,21
+138614,220181.3328,1021172.079,906738.7435,21
+138615,217202.0683,1020738.994,905200.8808,21
+138616,217625.9968,1019398.752,905721.4093,21
+138617,216374.7698,1020336.346,906481.551,21
+138618,215329.746,1018458.364,905221.6043,21
+138619,214086.8278,1019068.609,905439.7982,21
+138620,213738.9222,1017077.186,905437.5935,21
+138621,212033.5096,1018119.631,905805.5398,21
+138622,213044.6532,1016687.012,905523.6857,21
+138623,210338.7694,1016569.382,883125.4994,21
+138624,209844.4546,1015992.134,880653.3661,21
+138625,210467.2022,1015302.34,879095.0824,21
+138626,207768.9858,1015420.324,876976.8181,21
+138627,208727.6219,1014518.068,875481.0955,21
+138628,206526.1559,1013661.315,873704.4253,21
+138629,206817.3715,1014777.04,872246.7281,21
+138630,205137.2195,1013439.629,871257.6042,21
+138631,204677.3851,1012500.883,868432.9662,21
+138632,204288.3961,1012369.052,868404.3059,21
+138633,203984.4519,1011873.854,865376.3089,21
+138634,202537.7072,1011006.073,863927.2712,21
+138635,202040.9048,1011189.174,862329.9244,21
+138636,201459.4188,1010654.645,860739.5621,21
+138637,201098.966,1009053.965,859086.4614,21
+138638,200391.1831,1009119.738,857582.2364,21
+138639,199055.5222,1007670.025,855007.209,21
+138640,199573.2445,1006649.078,855063.094,21
+138641,199408.6226,1005763.399,852087.0004,21
+138642,199017.3105,1006254.737,851053.4431,21
+138643,198407.2461,1005021.67,848851.1537,21
+138644,197583.4901,1005274.754,847110.0144,21
+138645,198017.0998,1002981.214,846383.3278,21
+138646,196247.4269,1004022.437,843489.6808,21
+138647,197042.3318,1002902.516,842483.388,21
+138648,195246.4603,1003437.568,840419.3092,21
+138649,195718.0748,1001193.82,839201.0852,21
+138650,195113.8106,1001993.98,837803.2295,21
+138651,193766.2407,1000675.184,835856.4499,21
+138652,193663.902,1000784.851,835553.3459,21
+138653,193380.9825,1000456.298,832559.2624,21
+138654,192847.7268,999517.4657,832362.065,21
+138655,191827.2976,999603.9147,829944.4533,21
+138656,192403.8706,998357.3431,829719.3548,21
+138657,190524.5311,998479.7622,826413.544,21
+138658,190945.0111,997401.1972,826503.5241,21
+138659,189633.2482,997596.8753,824624.5032,21
+138660,189462.7081,997438.2545,823405.5496,21
+138661,102360.5585,828378.9758,644416.2416,21
+138662,96980.38485,824170.8135,627497.4407,21
+138663,95104.58661,822024.446,617158.7726,21
+138664,93518.38303,821109.9108,606006.2281,21
+138665,91869.70386,818930.5647,594663.2369,21
+138666,90150.98602,818392.5516,585024.1878,21
+138667,89066.35122,817036.7048,572913.4867,21
+138668,87304.51884,814804.0181,563539.4106,21
+138669,85931.89384,814793.3648,552838.3805,21
+138670,84605.81725,813135.9721,543552.4574,21
+138671,83310.32826,810270.3311,534665.5773,21
+138672,81642.63767,809311.8403,525141.3302,21
+138673,80548.95747,807983.2942,516374.3506,21
+138674,78942.59828,807049.2088,506909.4541,21
+138675,77838.00705,804845.5368,497390.0213,21
+138676,76345.67939,804800.3033,488213.213,21
+138677,75592.0598,803198.2216,479363.8827,21
+138678,74562.91928,801977.2523,470528.1053,21
+138679,73805.63681,801360.8246,461785.2976,21
+138680,72597.75136,799553.2071,452818.2901,21
+138681,71925.06686,799228.1267,444367.8654,21
+138682,71039.39038,797246.1985,435529.2893,21
+138683,69939.48481,797229.7125,427124.4055,21
+138684,69237.9239,795639.3563,418979.69,21
+138685,68173.9111,795236.5573,409657.4562,21
+138686,67133.72348,793534.9362,401682.7117,21
+138687,66351.43834,793028.6617,393046.0646,21
+138688,65788.07354,792108.4957,384646.8636,21
+138689,64413.98635,790919.3642,376479.9588,21
+138690,63724.59292,790044.4385,368165.1151,21
+138691,62571.23721,789420.2373,359440.0959,21
+138692,61985.36861,789059.3481,351225.1856,21
+138693,61047.22186,788541.5327,343481.0225,21
+138694,59635.71811,787956.3794,335622.9603,21
+138695,59384.23144,787885.6081,326765.0784,21
+138696,58095.26262,787389.6626,319175.9237,21
+138697,57145.90083,787221.0369,310055.5516,21
+138698,56598.5557,786770.0762,302428.5148,21
+138699,55202.4328,786553.7964,293984.7427,21
+138700,54491.58488,786989.1726,286129.9183,21
+138701,53757.59985,785520.4927,277957.4285,21
+138702,52795.41384,787481.9678,270153.4608,21
+138703,51639.81836,787703.1323,262067.1082,21
+138704,50937.34878,787525.584,253990.6762,21
+138705,50261.63897,787661.3537,246351.0563,21
+138706,48774.35156,787504.7986,238103.1474,21
+138707,48499.44378,787019.7546,230267.776,21
+138708,47320.81589,788176.8891,222613.7691,21
+138709,46482.65134,787009.906,214727.8592,21
+138710,45535.56774,788220.1959,206520.2094,21
+138711,44749.74003,787238.8914,199199.0559,21
+138712,43670.54838,787307.8429,191404.6527,21
+138713,43035.8746,788688.4467,183515.8049,21
+138714,42105.07543,787251.2004,176887.3766,21
+138715,41166.13665,787707.6833,169725.4466,21
+138716,40435.3513,788300.7356,162189.4592,21
+138717,39604.26157,788020.5939,154964.4614,21
+138718,38655.21258,788770.3741,148311.3604,21
+138719,37813.8932,787834.7473,144039.6138,21
+138720,37143.41055,788945.4303,139438.2993,21
+138721,36096.51136,789080.7709,134922.5392,21
+138722,35405.82155,790125.9152,130597.836,21
+138723,34506.09879,790129.9097,125632.6,21
+138724,34023.24706,791079.9829,121479.7836,21
+138725,32540.3005,792192.4161,118783.767,21
+138726,32380.02249,791955.4709,117542.5402,21
+138727,31141.2909,793405.4939,114923.9325,21
+138728,30521.91846,793997.4913,113651.8397,21
+138729,29702.21872,795846.4993,111306.8182,21
+138730,29046.78427,796881.9507,109581.843,21
+138731,28936.31945,798156.6157,107820.521,21
+138732,28121.47864,798329.3897,105577.0736,21
+138733,27636.89491,799637.2181,104310.9568,21
+138734,27153.19245,799970.0074,101441.4095,21
+138735,26695.29837,801361.3906,100308.3251,21
+138736,26113.90349,801632.4127,98326.31517,21
+138737,25402.49879,803218.2904,96163.91818,21
+138738,25268.60967,803164.2066,94918.00193,21
+138739,24538.86835,804567.2864,92787.21283,21
+138740,23915.05702,805724.2687,91430.2266,21
+138741,23457.67246,805880.5528,89885.02923,21
+138742,23023.8739,806900.39,88992.05302,21
+138743,22426.26276,808088.8485,86875.30733,21
+138744,22266.31934,808843.9101,85590.61147,21
+138745,21767.95154,810182.1284,83622.23095,21
+138746,21728.08544,811640.845,82486.91218,21
+138747,21427.85034,812750.9914,80983.01631,21
+138748,21147.04402,812692.0692,79760.95275,21
+138749,20924.93993,815118.1825,77921.1028,21
+138750,20579.19709,814692.0417,77127.10122,21
+138751,20338.52044,816008.4804,76007.22358,21
+138752,20265.39485,816009.1616,74721.83197,21
+138753,19745.37008,816667.6285,73915.80487,21
+138754,19715.40475,817088.3577,72543.50871,21
+138755,19396.75483,817583.7013,70952.13291,21
+138756,19118.04795,817413.5475,69722.86376,21
+138757,18830.29298,818420.7475,68736.59179,21
+138758,18547.91068,818475.208,42682.46092,21
+138759,18477.29834,818536.2488,41895.04212,21
+138760,17953.8917,819329.0211,41271.30561,21
+138761,17991.24786,819333.5661,40365.42045,21
+138762,17597.55671,819549.2292,39794.93523,21
+138763,17290.87902,820010.5932,38560.89255,21
+138764,16995.82342,820035.324,38336.78089,21
+138765,16930.87223,820751.9892,37597.12892,21
+138766,16510.74031,820668.2207,36423.59167,21
+138767,16323.56816,821208.7943,36040.11489,21
+138768,16033.37309,820983.0152,35365.46683,21
+138769,15710.24468,821335.6321,34423.81203,21
+138770,15644.53012,821573.6909,33851.55257,21
+138771,15205.54988,821897.3886,32314.42618,21
+138772,15058.14033,822069.6574,31934.57339,21
+138773,14708.47732,823337.6427,30845.48524,21
+138774,14411.51972,822039.8421,30336.64393,21
+138775,14343.38927,821574.3553,29433.00175,21
+138776,13896.50658,820823.5872,28999.91799,21
+138777,13712.45784,821152.2904,27942.43095,21
+138778,13422.9387,821264.2594,27525.15384,21
+138779,13272.40371,820435.4653,26788.66612,21
+138780,12805.31999,821668.6762,25888.5512,21
+138781,12358.6876,823785.236,24151.33226,21
+138782,12086.64324,821415.6541,23556.78924,21
+138783,11860.58056,820765.1075,23379.05079,21
+138784,11703.19628,817642.7793,22549.73037,21
+138785,11380.88648,816770.2904,22351.00738,21
+138786,11315.83552,814511.2554,21612.24911,21
+138787,10987.3509,812535.235,21574.61336,21
+138788,10816.93855,810841.8822,20861.35641,21
+138789,10698.80729,809272.0994,20905.42361,21
+138790,10388.74024,806477.7473,20552.44655,21
+138791,10377.68454,805630.6997,19840.55398,21
+138792,10101.53314,803036.7088,19814.71225,21
+138793,10066.336,801260.1053,19344.66574,21
+138794,9813.20099,799396.0525,19257.86712,21
+138795,9534.226293,797766.4614,18841.21224,21
+138796,9596.688903,795122.43,18608.4437,21
+138797,9243.000818,793755.1734,18493.68582,21
+138798,9182.769616,791619.1637,18057.55473,21
+138799,8925.697554,789131.6284,17959.65286,21
+138800,8877.167876,788304.6711,17544.44187,21
+138801,8618.552429,784833.0256,17269.32798,21
+138802,8569.616396,784365.7982,16945.43494,21
+138803,8309.585843,781503.363,16339.48535,21
+138804,8023.532279,779247.6496,16068.32284,21
+138805,8123.297631,777812.0819,15937.50977,21
+138806,7823.710639,775174.1903,15544.43936,21
+138807,7685.823894,774173.0776,15194.83345,21
+138808,7420.985142,770640.4697,15094.44847,21
+138809,7458.765446,769819.5417,14624.3246,21
+138810,7104.07563,767152.898,14344.3176,21
+138811,7053.43862,765739.9865,14080.1741,21
+138812,6784.655432,763447.2592,13735.47207,21
+138813,6732.543585,762386.3575,13435.4541,21
+138814,6578.762824,760429.5359,13000.72455,21
+138815,6421.790028,759014.9662,12821.75483,21
+138816,6150.771438,757013.1567,12399.13201,21
+138817,6096.175048,755468.9589,12061.52948,21
+138818,5964.528938,753816.0604,11779.17662,21
+138819,5822.451397,752345.9373,11281.29161,21
+138820,5562.588522,750362.509,11138.95426,21
+138821,5562.588672,749018.5303,10640.55215,21
+138822,5419.230478,747342.3515,10384.79773,21
+138823,5275.395837,745666.4926,10025.42298,21
+138824,5156.912209,743608.0075,9709.121381,21
+138825,5012.188812,742336.0059,9226.73304,21
+138826,4879.935936,741070.4868,9073.205729,21
+138827,4747.234998,738748.1667,8576.042958,21
+138828,4601.045106,735676.4814,8267.515877,21
+138829,4454.306974,732750.7965,7915.645159,21
+138830,4467.385355,731420.8933,7620.733185,21
+138831,4185.456881,729688.4337,7086.658291,21
+138832,4172.302769,727976.0572,6950.064151,21
+138833,3914.523249,725950.8119,6428.309309,21
+138834,3888.085791,724300.5783,6312.560161,21
+138835,3764.996751,722819.3845,5572.943025,21
+138836,3490.5891,721031.2044,5644.587369,21
+138837,3601.499725,718923.4436,4980.145423,21
+138838,3339.113707,717992.2642,4920.249996,21
+138839,3186.895723,715941.2724,4615.401558,21
+138840,3047.347901,713667.2163,4216.389311,21
+138841,3312.357199,708378.8189,4773.384731,21
+138842,3033.901303,705750.2993,4326.737812,21
+138843,3020.425976,704986.6138,4071.573851,21
+138844,2752.508367,702132.9451,3825.698428,21
+138845,2583.446827,701505.0475,3728.43782,21
+138846,2440.593803,698877.6197,3427.490002,21
+138847,2310.435737,698043.7111,3378.579897,21
+138848,2124.496318,695603.1326,3280.435767,21
+138849,2005.961159,694795.7428,3212.995943,21
+138850,1831.140984,692597.4961,3098.688219,21
+138851,1682.392001,691466.1562,3030.843086,21
+138852,1531.97566,689026.3478,2947.157619,21
+138853,1365.628701,688615.4094,2847.448704,21
+138854,1196.63819,685882.7405,2763.182923,21
+138855,1052.034549,682960.9158,2697.132167,21
+138856,872.0815103,680221.5347,2609.789421,21
+138857,843.8590166,678856.8147,2511.213189,21
+138858,843.8591501,676843.3664,2439.405413,21
+138859,801.2621043,675639.9932,2358.606281,21
+138860,801.2622254,673786.3944,2251.487418,21
+138861,758.338323,672226.7983,2202.501818,21
+138862,758.3384873,670618.8389,2078.27488,21
+138863,729.5343318,668748.8531,2028.686905,21
+138864,715.0741984,667249.8183,1941.152042,21
+138865,686.034686,665724.2134,1869.971735,21
+138866,671.4541538,664159.852,1745.696233,21
+138867,642.1679478,662142.8887,1711.587974,21
+138868,627.4610294,660980.5367,1603.01779,21
+138869,612.7105068,659249.4453,1531.579115,21
+138870,583.0753615,657455.4654,1438.870546,21
+138871,568.1890956,655704.0559,1383.806847,21
+138872,538.2744153,653226.8201,1326.424497,21
+138873,538.2744716,651143.5024,1307.254876,21
+138874,493.0318283,648922.7417,1268.830171,21
+138875,493.0318756,646513.1284,1230.303565,21
+138876,477.8476474,643954.7002,1211.0058,21
+138877,431.9665088,642286.2546,1172.322042,21
+138878,447.3164319,639361.0119,1133.530651,21
+138879,401.090405,637424.8731,1114.097608,21
+138880,385.5606143,634947.8493,1075.139783,21
+138881,369.9670752,632692.9252,1036.067608,21
+138882,354.3076431,630718.1096,1016.49092,21
+138883,322.7815277,627915.2069,996.8843136,21
+138884,322.7815482,625936.4969,937.8695042,21
+138885,274.9320806,623413.0712,918.1391942,21
+138886,290.9608656,620844.7681,898.3767371,21
+138887,242.618582,618866.2591,858.748591,21
+138888,226.3246881,616495.2909,818.9861628,21
+138889,226.3246982,613903.4525,818.9904404,21
+138890,176.8247264,611687.1433,759.0823239,21
+138891,185.1442994,608917.4732,739.042874,21
+138892,143.2300765,607104.8646,718.9658132,21
+138893,143.2300804,604309.8343,658.4951388,21
+138894,109.0513326,601501.0372,658.4979805,21
+138895,91.69765558,599678.0927,617.9823218,21
+138896,91.69765717,597212.7377,597.6619389,21
+138897,38.15881834,594431.4944,536.4275584,21
+138898,47.28020117,592425.2448,536.4294871,21
+138899,19.54814858,589578.7558,495.3705394,21
+138900,0,586983.8458,474.7664615,21
+138901,338.5804486,609703.9703,1055.725768,21
+138902,354.3082038,606897.2385,1036.17651,21
+138903,322.7819944,604776.1132,1036.18321,21
+138904,306.9099426,602255.2048,996.9891088,21
+138905,306.9099629,599680.6689,957.6743637,21
+138906,274.932438,598873.0417,937.9734723,21
+138907,258.8197447,597170.4798,918.2409098,21
+138908,242.6188618,594059.3162,898.4761945,21
+138909,242.6188736,591881.4464,858.8434615,21
+138910,201.6972064,589101.6225,819.0764376,21
+138911,201.6972144,586807.8605,819.0807651,21
+138912,176.8248833,584455.2292,779.1744925,21
+138913,168.4750012,581810.9113,759.1695307,21
+138914,143.2301803,579289.5217,719.0447593,21
+138915,143.2301857,576632.7453,698.9270177,21
+138916,109.0513958,573931.3314,678.7700772,21
+138917,91.69770172,571405.182,638.3323241,21
+138918,91.69770322,569101.9765,618.0525042,21
+138919,65.25496392,566162.4709,597.7297127,21
+138920,56.30791535,563622.0834,556.9485868,21
+138921,19.54815269,561122.4945,556.9506806,21
+138922,38.15882978,558612.899,495.4263132,21
+138923,0,555532.7198,495.4279898,21
+138924,0,553602.4329,454.1607747,21
+138925,0,552053.9622,433.4472321,21
+138926,0,550495.7533,412.6772108,21
+138927,0,549185.8616,370.9576009,21
+138928,0,547661.7387,370.9585536,21
+138929,0,546054.1394,307.8914907,21
+138930,0,544831.7096,307.8921658,21
+138931,0,543110.6842,286.7269067,21
+138932,0,542166.0013,244.1548297,21
+138933,0,540996.1908,222.7374999,21
+138934,0,539423.4049,211.9930955,21
+138935,0,538535.9356,179.6036716,21
+138936,0,537108.8687,136.0035784,21
+138937,0,535620.6487,136.0037172,21
+138938,0,534609.5777,113.9927677,21
+138939,0,533315.878,69.42589796,21
+138940,0,532064.0179,46.77968964,21
+138941,0,530833.6731,46.77970682,21
+138942,0,529416.078,0,21
+138943,0,528134.9544,0,21
+138944,0,527157.4146,0,21
+138945,0,524868.2015,0,21
+138946,0,523567.6189,0,21
+138947,0,522168.2071,0,21
+138948,0,521119.7396,0,21
+138949,0,519882.0465,0,21
+138950,0,518687.4769,0,21
+138951,0,517300.7904,0,21
+138952,0,516438.8112,0,21
+138953,0,515246.6651,0,21
+138954,0,513798.3389,0,21
+138955,0,512532.4942,0,21
+138956,0,511975.4796,0,21
+138957,0,510273.6964,0,21
+138958,0,509231.8533,0,21
+138959,0,508268.565,0,21
+138960,0,506754.0199,0,21
+138961,0,488452.9877,0,21
+138962,0,488213.6003,0,21
+138963,0,487996.0363,0,21
+138964,0,487405.7467,0,21
+138965,0,487664.4443,0,21
+138966,0,486991.0016,0,21
+138967,0,486872.0607,0,21
+138968,0,486605.727,0,21
+138969,0,486483.3821,0,21
+138970,0,485752.4975,0,21
+138971,0,486055.632,0,21
+138972,0,485276.7661,0,21
+138973,0,485557.9252,0,21
+138974,0,484646.6809,0,21
+138975,0,484927.509,0,21
+138976,0,484308.2695,0,21
+138977,0,484316.9185,0,21
+138978,0,483968.5615,0,21
+138979,0,484086.2332,0,21
+138980,0,483221.5272,0,21
+138981,0,483552.0128,0,21
+138982,0,483174.811,0,21
+138983,0,483011.4406,0,21
+138984,0,482800.9502,0,21
+138985,0,482689.5244,0,21
+138986,0,482478.8691,0,21
+138987,0,482187.8023,0,21
+138988,0,482532.2371,0,21
+138989,0,481664.6805,0,21
+138990,0,482036.3313,0,21
+138991,0,480945.3463,0,21
+138992,0,481157.1123,0,21
+138993,0,480669.3221,0,21
+138994,0,480675.2236,0,21
+138995,0,480452.7791,0,21
+138996,0,480289.6764,0,21
+138997,0,479968.8686,0,21
+138998,0,479725.0843,0,21
+138999,0,479862.3979,0,21
+139000,0,479631.4544,0,21
+139001,0,479150.8343,0,21
+139002,0,479347.0564,0,21
+139003,0,479190.537,0,21
+139004,0,478890.5654,0,21
+139005,0,478761.4858,0,21
+139006,0,478785.9154,0,21
+139007,0,478489.7967,0,21
+139008,0,478568.9973,0,21
+139009,0,478119.5015,0,21
+139010,0,478495.4092,0,21
+139011,0,477972.736,0,21
+139012,0,477892.7401,0,21
+139013,0,478100.7682,0,21
+139014,0,477452.3349,0,21
+139015,0,477495.8552,0,21
+139016,0,477163.3286,0,21
+139017,0,477245.87,0,21
+139018,0,476414.4099,0,21
+139019,0,476772.598,0,21
+139020,0,476139.232,0,21
+139021,0,480398.2259,0,21
+139022,0,479312.4754,0,21
+139023,0,477715.8551,0,21
+139024,0,476494.6242,0,21
+139025,0,475720.138,0,21
+139026,0,473693.1742,0,21
+139027,0,472740.548,0,21
+139028,0,471499.8258,0,21
+139029,0,470098.5577,0,21
+139030,0,468800.3479,0,21
+139031,0,467465.1658,0,21
+139032,0,466310.133,0,21
+139033,0,464819.2656,0,21
+139034,0,463880.9438,0,21
+139035,0,462196.0595,0,21
+139036,0,461048.7987,0,21
+139037,0,459836.3078,0,21
+139038,0,458413.5504,0,21
+139039,0,457109.4503,0,21
+139040,0,456141.2729,0,21
+139041,0,454375.8466,0,21
+139042,0,453369.2549,0,21
+139043,0,448428.1512,0,21
+139044,0,448264.4317,0,21
+139045,0,446075.3317,0,21
+139046,0,444383.9445,0,21
+139047,0,442783.2449,0,21
+139048,0,440684.9873,0,21
+139049,0,439132.8107,0,21
+139050,0,437568.4837,0,21
+139051,0,435582.0589,0,21
+139052,0,433306.5908,0,21
+139053,0,431357.312,0,21
+139054,0,429322.5168,0,21
+139055,0,427370.6982,0,21
+139056,0,425183.062,0,21
+139057,0,423189.0164,0,21
+139058,0,421015.6384,0,21
+139059,0,419015.9184,0,21
+139060,0,416846.1162,0,21
+139061,0,415034.7384,0,21
+139062,0,412868.2089,0,21
+139063,0,410568.1722,0,21
+139064,0,408729.768,0,21
+139065,0,406685.8297,0,21
+139066,0,404321.6543,0,21
+139067,0,402390.452,0,21
+139068,0,400541.1747,0,21
+139069,0,397846.5297,0,21
+139070,0,394802.5497,0,21
+139071,0,392156.1346,0,21
+139072,0,389484.0517,0,21
+139073,0,387858.6642,0,21
+139074,0,385448.9332,0,21
+139075,0,382951.5438,0,21
+139076,0,380819.3323,0,21
+139077,0,378287.2788,0,21
+139078,0,375655.632,0,21
+139079,0,373686.8704,0,21
+139080,0,371821.311,0,21
+139081,0,365698.1516,0,21
+139082,0,363434.8907,0,21
+139083,0,362083.7249,0,21
+139084,0,360027.5608,0,21
+139085,0,358626.7014,0,21
+139086,0,357006.2624,0,21
+139087,0,354830.3283,0,21
+139088,0,353521.7634,0,21
+139089,0,351666.8737,0,21
+139090,0,350178.8374,0,21
+139091,0,348041.4392,0,21
+139092,0,346352.3163,0,21
+139093,0,345070.0541,0,21
+139094,0,342887.4956,0,21
+139095,0,341052.5629,0,21
+139096,0,339527.7405,0,21
+139097,0,337600.0971,0,21
+139098,0,335953.25,0,21
+139099,0,333795.9384,0,21
+139100,0,332236.8901,0,21
+139101,0,330323.5786,0,21
+139102,0,328521.0602,0,21
+139103,0,326726.0893,0,21
+139104,0,324610.8486,0,21
+139105,0,323047.5101,0,21
+139106,0,321081.7673,0,21
+139107,0,319234.6038,0,21
+139108,0,317075.4268,0,21
+139109,0,315604.4094,0,21
+139110,0,313388.0375,0,21
+139111,0,311882.7072,0,21
+139112,0,310802.1894,0,21
+139113,0,309416.9068,0,21
+139114,0,308037.6909,0,21
+139115,0,306840.9089,0,21
+139116,0,305235.6612,0,21
+139117,0,304312.6728,0,21
+139118,0,302977.1741,0,21
+139119,0,301686.5169,0,21
+139120,0,300311.2879,0,21
+139121,0,299379.0936,0,21
+139122,0,297753.3963,0,21
+139123,0,297364.1957,0,21
+139124,0,297095.8996,0,21
+139125,0,296532.9915,0,21
+139126,0,296401.9178,0,21
+139127,0,295853.306,0,21
+139128,0,295514.6995,0,21
+139129,0,295236.9478,0,21
+139130,0,295066.0802,0,21
+139131,0,294607.1683,0,21
+139132,0,294354.6199,0,21
+139133,0,294223.4788,0,21
+139134,0,293942.6707,0,21
+139135,0,293915.3862,0,21
+139136,0,293705.1769,0,21
+139137,0,293390.1657,0,21
+139138,0,293436.4552,0,21
+139139,0,293346.5261,0,21
+139140,0,293086.5965,0,21
+139141,0,293268.4373,0,21
+139142,0,293246.209,0,21
+139143,0,293436.6796,0,21
+139144,0,293376.7888,0,21
+139145,0,293667.3579,0,21
+139146,0,293750.0203,0,21
+139147,0,293638.3447,0,21
+139148,0,294030.7799,0,21
+139149,0,294041.519,0,21
+139150,0,294205.9601,0,21
+139151,0,294253.5881,0,21
+139152,0,294217.51,0,21
+139153,0,294012.5447,0,21
+139154,0,294414.8164,0,21
+139155,0,294295.144,0,21
+139156,0,294433.193,0,21
+139157,0,294605.8144,0,21
+139158,0,294755.1756,0,21
+139159,0,294780.2184,0,21
+139160,0,295206.39,0,21
+139161,0,294137.6914,0,21
+139162,0,294589.6029,0,21
+139163,0,294683.2139,0,21
+139164,0,294930.7445,0,21
+139165,0,294900.8414,0,21
+139166,0,295303.1335,0,21
+139167,0,295633.875,0,21
+139168,0,295573.6814,0,21
+139169,0,296022.465,0,21
+139170,0,296518.6337,0,21
+139171,0,296798.137,0,21
+139172,0,297950.4599,0,21
+139173,0,298710.1381,0,21
+139174,0,299637.2328,0,21
+139175,0,300632.5684,0,21
+139176,0,301450.9548,0,21
+139177,0,302418.2331,0,21
+139178,0,303219.6677,0,21
+139179,0,304135.0946,0,21
+139180,0,305199.9266,0,21
+139181,0,306157.9957,0,21
+139182,0,307032.6165,0,21
+139183,0,308185.7496,0,21
+139184,0,309072.3114,0,21
+139185,0,310116.9186,0,21
+139186,0,311230.5422,0,21
+139187,0,312035.3475,0,21
+139188,0,314785.348,0,21
+139189,0,315495.7915,0,21
+139190,0,317292.3319,0,21
+139191,0,317929.2244,0,21
+139192,0,318914.6864,0,21
+139193,0,320106.3813,0,21
+139194,0,320963.6298,0,21
+139195,0,322053.4525,0,21
+139196,0,323009.9153,0,21
+139197,0,323889.7164,0,21
+139198,0,324933.5796,0,21
+139199,0,325892.4363,0,21
+139200,0,326843.7658,0,21
+139201,0,361009.7819,0,21
+139202,0,362557.9193,0,21
+139203,0,363772.7665,0,21
+139204,0,364639.8018,0,21
+139205,0,365284.4045,0,21
+139206,0,366337.1482,0,21
+139207,0,367576.2548,0,21
+139208,0,368962.3609,0,21
+139209,0,369626.1109,0,21
+139210,0,370962.3588,0,21
+139211,0,371825.557,0,21
+139212,0,373027.9244,0,21
+139213,0,373850.4146,0,21
+139214,0,375055.5942,0,21
+139215,0,376000.0698,0,21
+139216,0,376707.724,0,21
+139217,0,378182.5473,0,21
+139218,0,378635.297,0,21
+139219,0,379903.0835,0,21
+139220,0,380740.948,0,21
+139221,0,381388.0456,0,21
+139222,0,382626.5086,0,21
+139223,0,383110.0236,0,21
+139224,0,384304.8553,0,21
+139225,0,385546.3714,0,21
+139226,0,386168.9465,0,21
+139227,0,387144.1192,0,21
+139228,0,387639.7582,0,21
+139229,0,388807.5915,0,21
+139230,0,389463.627,0,21
+139231,0,390259.2235,0,21
+139232,0,391377.9844,0,21
+139233,0,392276.7838,0,21
+139234,0,392851.4068,0,21
+139235,0,394368.3831,0,21
+139236,0,394648.9597,0,21
+139237,0,395913.0177,0,21
+139238,0,396732.8177,0,21
+139239,0,397661.1017,0,21
+139240,0,398568.121,0,21
+139241,0,399208.1897,0,21
+139242,0,400415.1763,0,21
+139243,0,401020.0953,0,21
+139244,0,401915.629,0,21
+139245,0,402793.166,0,21
+139246,0,402851.1853,0,21
+139247,0,404375.2591,0,21
+139248,0,404626.5578,0,21
+139249,0,405824.6586,0,21
+139250,0,406475.8117,0,21
+139251,0,407240.0385,0,21
+139252,0,408213.9868,0,21
+139253,0,408905.1237,0,21
+139254,0,409805.7533,0,21
+139255,0,410536.6511,0,21
+139256,0,411321.8161,0,21
+139257,0,412093.6932,0,21
+139258,0,412934.5471,0,21
+139259,0,413812.9741,0,21
+139260,0,414385.7216,0,21
+139261,0,423468.2965,0,21
+139262,0,424670.3143,0,21
+139263,0,424711.728,0,21
+139264,0,425593.2043,0,21
+139265,0,425841.1375,0,21
+139266,0,426510.7869,0,21
+139267,0,426584.0439,0,21
+139268,0,427490.2472,0,21
+139269,0,427549.412,0,21
+139270,0,428197.0291,0,21
+139271,0,428749.5455,0,21
+139272,2408.34435,428924.9008,0,21
+139273,1646.924006,429483.1261,0,21
+139274,1903.51571,430127.6862,0,21
+139275,2408.344169,429920.1782,0,21
+139276,2408.344108,430672.0308,0,21
+139277,2903.667857,430425.5909,0,21
+139278,2903.667766,431283.1211,0,21
+139279,3269.764218,434271.7344,0,21
+139280,3390.856749,433656.7311,0,21
+139281,3631.713968,434314.8744,0,21
+139282,3870.878931,435071.9649,0,21
+139283,4108.435466,435643.8274,0,21
+139284,4226.633946,436006.5478,0,21
+139285,4579.01136,436995.2662,0,21
+139286,4579.011117,437082.0613,0,21
+139287,5043.944329,437810.9864,0,21
+139288,5043.944028,438118.991,0,21
+139289,5274.425026,438903.3522,0,21
+139290,5503.642695,439283.1055,0,21
+139291,5731.637503,439532.9815,0,21
+139292,6028.107902,440328.08,0,21
+139293,7968.031995,440729.2451,0,21
+139294,7654.885515,441371.3929,0,21
+139295,8071.969924,441480.4547,0,21
+139296,8726.708194,442138.2245,0,21
+139297,8871.187815,442900.4166,0,21
+139298,9611.084794,442990.6817,0,21
+139299,9801.022025,445590.1484,0,21
+139300,10263.34486,449671.4491,0,21
+139301,10694.88062,448958.4326,0,21
+139302,11064.92777,450725.0002,0,21
+139303,11381.36638,451891.1323,0,21
+139304,11709.29941,453436.5759,0,21
+139305,12151.53864,453908.1017,0,21
+139306,12506.16047,455400.8907,0,21
+139307,12779.31655,456554.5966,0,21
+139308,13167.36871,457557.3332,0,21
+139309,13656.91172,458658.0132,0,21
+139310,13586.1874,459877.0023,0,21
+139311,14403.45574,461036.6227,0,21
+139312,14340.56147,461603.0084,0,21
+139313,14816.29422,463020.4606,0,21
+139314,15059.50119,464164.0871,0,21
+139315,15469.51258,464752.5691,0,21
+139316,15810.75855,466344.9873,0,21
+139317,16059.46675,466771.3493,0,21
+139318,16330.33695,468226.3727,0,21
+139319,16585.38314,469345.5083,0,21
+139320,16908.01935,471198.3159,0,21
+139321,17205.95648,471811.3517,0,21
+139322,17704.03713,473654.3712,0,21
+139323,17912.50998,475154.1418,0,21
+139324,18407.29059,477350.0764,0,21
+139325,18672.35415,479422.3303,0,21
+139326,19134.95356,481493.2965,0,21
+139327,19266.81369,482283.9858,0,21
+139328,19762.89003,484556.799,0,21
+139329,20200.47449,486021.0809,0,21
+139330,20263.42195,487601.2962,0,21
+139331,20706.91282,489216.7802,0,21
+139332,21168.86135,491085.1992,0,21
+139333,21426.12654,492256.5392,0,21
+139334,21671.39266,494073.4688,0,21
+139335,22020.38252,495628.3731,0,21
+139336,22364.92759,497092.6354,0,21
+139337,22726.08593,498638.4613,0,21
+139338,22968.75045,500622.3118,0,21
+139339,23308.24396,502083.15,0,21
+139340,23568.87461,503229.6847,0,21
+139341,23887.96291,505165.5702,0,21
+139342,24252.44073,506375.0965,0,21
+139343,24370.75695,508732.6359,0,21
+139344,24827.85598,509379.8845,0,21
+139345,25063.37779,511091.9276,0,21
+139346,25288.16975,512967.6878,0,21
+139347,25648.79665,514219.7544,0,21
+139348,25765.54064,515906.7804,0,21
+139349,26302.65562,517277.2893,0,21
+139350,26339.34351,518782.6046,0,21
+139351,26784.57908,520107.4326,0,21
+139352,26892.40429,522026.9712,0,21
+139353,27238.27456,523284.9306,0,21
+139354,27153.9522,524840.0532,0,21
+139355,27792.67368,526780.931,0,21
+139356,27716.68911,528251.5713,0,21
+139357,28127.99726,529718.018,0,21
+139358,28167.1924,531256.6683,0,21
+139359,28399.59378,532330.59,0,21
+139360,28603.22642,534525.9507,0,21
+139361,28834.89726,535305.9055,0,21
+139362,30155.00567,537133.6027,0,21
+139363,30380.97162,538587.4988,0,21
+139364,30835.3759,539563.2421,0,21
+139365,31237.26043,541338.3445,0,21
+139366,31262.96891,542857.1538,0,21
+139367,31701.86259,543530.9686,0,21
+139368,31714.26591,545618.2002,0,21
+139369,32237.98313,546507.4444,0,21
+139370,32275.61096,548394.5968,0,21
+139371,32575.50798,549476.4647,0,21
+139372,32822.12652,550939.5511,0,21
+139373,33035.22372,551927.3066,0,21
+139374,33324.86062,553525.1371,0,21
+139375,33676.38634,555058.8543,0,21
+139376,33591.23268,555868.4621,0,21
+139377,34095.24258,557688.6065,0,21
+139378,34132.44539,558802.697,0,21
+139379,34343.77587,560008.931,0,21
+139380,34755.89831,564663.0386,0,21
+139381,35615.64104,568895.3903,0,21
+139382,36208.46483,571371.1828,0,21
+139383,36269.51688,573691.4814,0,21
+139384,36620.13736,576126.0686,0,21
+139385,36693.13119,577997.8476,0,21
+139386,37066.95588,580308.5906,0,21
+139387,37103.452,582703.408,0,21
+139388,37302.01659,584894.1909,0,21
+139389,37512.47515,586981.9082,0,21
+139390,37738.30649,589046.9336,0,21
+139391,37742.95267,591174.0567,0,21
+139392,38145.54877,593558.129,0,21
+139393,38339.31133,595786.2211,0,21
+139394,38386.60261,597683.3382,0,21
+139395,38736.35984,599967.0989,0,21
+139396,39046.01052,601664.5631,0,21
+139397,38904.85514,604314.8821,0,21
+139398,39261.67522,606451.5408,0,21
+139399,39430.36043,607854.0292,0,21
+139400,39715.89949,610616.8935,0,21
+139401,39696.65631,612428.4516,0,21
+139402,39952.61274,614779.1227,0,21
+139403,40149.21464,616474.8565,0,21
+139404,40229.5495,619156.1602,0,21
+139405,40595.5665,620289.4327,0,21
+139406,40457.70424,623058.4784,0,21
+139407,40692.3052,625275.7703,0,21
+139408,41069.03498,626832.7181,0,21
+139409,40943.58716,628811.0683,0,21
+139410,41516.79935,630906.4599,0,21
+139411,41397.49629,633165.8508,0,21
+139412,41641.00625,634604.9886,0,21
+139413,42028.13611,636863.6928,0,21
+139414,41700.09691,638210.5231,0,21
+139415,42314.34252,640523.9237,0,21
+139416,42120.46289,641967.6577,0,21
+139417,42560.05035,644155.465,0,21
+139418,42419.90323,645813.3913,0,21
+139419,42954.24838,647386.1488,0,21
+139420,42674.94708,649379.5188,0,21
+139421,42971.30275,651070.0855,0,21
+139422,43157.23401,652944.8273,0,21
+139423,43330.7479,654748.3121,0,21
+139424,43147.6117,656344.9619,372.0162377,21
+139425,43755.00505,658120.0036,2950.842127,21
+139426,43554.06302,659765.3903,1771.610163,21
+139427,43821.70523,661526.1312,2449.121873,21
+139428,43824.32061,663382.3776,2950.992485,21
+139429,44044.12069,665151.4516,3283.059049,21
+139430,44076.10316,666585.8231,3448.439792,21
+139431,44272.26319,672738.1951,3777.830835,21
+139432,44500.56196,676128.0662,4268.848982,21
+139433,44349.86793,677335.8735,4431.852835,21
+139434,44748.24235,683759.3502,4918.504643,21
+139435,44566.46472,686669.9544,5080.161493,21
+139436,44969.22171,686825.8785,5402.364208,21
+139437,45020.40921,691106.0954,5883.299929,21
+139438,44918.6721,691681.5345,6043.185392,21
+139439,45247.64969,694982.6852,6361.903585,21
+139440,45250.02232,696636.7012,6679.556343,21
+139441,45496.44643,698748.7844,6996.184048,21
+139442,45671.05338,700905.3071,6996.492378,21
+139443,45572.87055,703271.7349,7469.445856,21
+139444,46153.53431,703905.0996,7312.487634,21
+139445,46161.9964,706234.7574,8056.551346,21
+139446,46381.07505,707404.3979,8075.928482,21
+139447,46445.43361,709567.7096,8324.285033,21
+139448,46824.26884,709419.5019,8691.037008,21
+139449,46863.43548,712859.5858,8734.518634,21
+139450,47896.24748,713014.8475,9078.26407,21
+139451,48472.37086,715809.9018,9255.342831,21
+139452,48047.81918,716280.2776,9319.349325,21
+139453,48914.73662,717817.2944,9784.504061,21
+139454,49062.90608,718712.1602,9827.11039,21
+139455,49245.47901,721388.3466,10178.24756,21
+139456,49792.30005,721832.0067,10189.28907,21
+139457,50024.86412,723128.7738,10549.79956,21
+139458,50188.29735,724896.7538,10724.84242,21
+139459,50650.70404,726618.6113,10899.67381,21
+139460,50808.22962,726916.8157,11094.84891,21
+139461,51556.50759,730012.2269,11269.22745,21
+139462,51445.10546,729180.8495,11616.6075,21
+139463,52021.75992,731613.8122,11637.78483,21
+139464,52287.63839,733078.6901,11831.84712,21
+139465,52672.09335,734432.1609,12157.62326,21
+139466,52765.72204,735063.4522,12178.71754,21
+139467,53452.94823,736446.6103,12523.95157,21
+139468,53223.32467,738461.5407,12544.98658,21
+139469,54209.63821,739006.4569,12889.39415,21
+139470,53896.26938,740723.4659,13041.7598,21
+139471,54476.48416,741312.2564,13253.98785,21
+139472,54566.989,743414.8107,13254.98399,21
+139473,54827.53058,744550.7904,13597.87005,21
+139474,55302.7257,744797.2805,16066.78822,21
+139475,55784.5634,747222.9463,15214.00528,21
+139476,55480.64217,747488.256,15901.42063,21
+139477,56328.57316,749256.6874,16377.61064,21
+139478,56424.32623,749940.466,16642.76372,21
+139479,56631.93779,751589.8142,17479.75138,21
+139480,57203.39721,753063.1158,17610.77168,21
+139481,57171.72332,753211.0214,18163.95051,21
+139482,57791.46037,755494.682,18481.66074,21
+139483,57741.71062,755223.3928,18962.37458,21
+139484,58301.41532,757561.89,19314.50801,21
+139485,58484.03278,758692.8111,19905.56321,21
+139486,58846.72369,758717.3555,19811.07985,21
+139487,59006.30403,760750.622,20716.4856,21
+139488,59694.84935,762360.3018,20915.03195,21
+139489,59368.29469,761575.0605,20953.20373,21
+139490,60142.25327,765050.5938,21981.47657,21
+139491,60268.21132,764700.9422,21884.25772,21
+139492,60394.80467,765668.4685,22381.46981,21
+139493,60995.5922,767326.2785,22798.55058,21
+139494,61050.55048,768369.2128,23165.34553,21
+139495,61584.62422,769245.6141,23474.51676,21
+139496,61579.91362,770188.8363,23821.47098,21
+139497,62049.71983,771621.2562,24232.45417,21
+139498,62309.43547,772966.1752,24620.81837,21
+139499,62477.07326,773433.0922,24867.29588,21
+139500,62922.40531,774831.0462,25254.92375,21
+139501,0,0,0,21
+139502,0,0,0,21
+139503,0,1144.890337,0,21
+139504,0,0,0,21
+139505,0,0,1541161.552,21
+139506,339142.717,0,0,21
+139507,0,0,0,21
+139508,0,0,0,21
+139509,0,0,0,21
+139510,0,368132.2907,0,21
+139511,0,0,0,21
+139512,0,0,0,21
+139513,0,0,0,21
+139514,0,0,0,21
+139515,0,0,0,21
+139516,0,0,0,21
+139517,0,0,0,21
+139518,0,0,0,21
+139519,0,0,0,21
+139520,0,2.790596859,0,21
+139521,0,0,0,21
+139522,0,86.97250124,0,21
+139523,0,0,0,21
+139524,0,0,0,21
+139525,0,0,0,21
+139526,0,68.71855475,0,21
+139527,0,0,0,21
+139528,0,0,0,21
+139529,0,0,0,21
+139530,0,76.2647837,0,21
+139531,0,0,0,21
+139532,0,0,0,21
+139533,0,0,0,21
+139534,0,78.55826943,0,21
+139535,0,0,0,21
+139536,0,0,0,21
+139537,0,0,0,21
+139538,0,83.92512169,0,21
+139539,0,0,0,21
+139540,0,0,1466007.253,21
+139541,339909.9684,0,0,21
+139542,0,96.77583927,0,21
+139543,0,0,0,21
+139544,0,0,0,21
+139545,0,368130.5746,0,21
+139546,0,84.41430653,0,21
+139547,0,0,0,21
+139548,0,0,0,21
+139549,0,0,0,21
+139550,0,77.77705497,0,21
+139551,0,0,0,21
+139552,0,0,0,21
+139553,0,0,0,21
+139554,0,86.2987351,0,21
+139555,0,0,0,21
+139556,0,0,0,21
+139557,0,0,0,21
+139558,0,113.6689541,0,21
+139559,0,0,0,21
+139560,0,0,0,15.6
+139561,0,0,0,15.6
+139562,0,444.6974359,0,15.6
+139563,0,0,0,15.6
+139564,0,0,0,15.6
+139565,0,0,0,15.6
+139566,0,0,0,15.6
+139567,0,0,0,15.6
+139568,0,0,0,15.6
+139569,0,0,0,15.6
+139570,0,0,0,15.6
+139571,0,0,0,15.6
+139572,0,0,0,15.6
+139573,0,0,0,15.6
+139574,0,0,0,15.6
+139575,0,0,1390872.581,15.6
+139576,339916.8733,0,0,15.6
+139577,0,370.1086318,0,15.6
+139578,0,0,0,15.6
+139579,0,0,0,15.6
+139580,0,0,0,15.6
+139581,0,368135.0098,0,15.6
+139582,0,0,0,15.6
+139583,0,121.2206648,0,15.6
+139584,0,0,0,15.6
+139585,0,0,0,15.6
+139586,0,0,0,15.6
+139587,0,0,0,15.6
+139588,0,366.4075545,0,15.6
+139589,0,0,0,15.6
+139590,0,0,0,15.6
+139591,0,0,0,15.6
+139592,0,2.982601453,0,15.6
+139593,0,0,0,15.6
+139594,0,141.5931731,0,15.6
+139595,0,0,0,15.6
+139596,0,0,0,15.6
+139597,0,0,0,15.6
+139598,0,102.5217304,0,15.6
+139599,0,0,0,15.6
+139600,0,0,0,15.6
+139601,0,0,0,15.6
+139602,0,117.9654326,0,15.6
+139603,0,0,0,15.6
+139604,0,0,0,15.6
+139605,0,0,0,15.6
+139606,0,119.5067843,0,15.6
+139607,0,0,0,15.6
+139608,0,0,0,15.6
+139609,0,0,0,15.6
+139610,0,122.4937705,1329969.255,15.6
+139611,339923.7763,0,0,15.6
+139612,0,0,0,15.6
+139613,0,0,0,15.6
+139614,0,122.7904083,0,15.6
+139615,0,0,0,15.6
+139616,0,0,0,15.6
+139617,0,368137.8852,0,15.6
+139618,0,115.2064337,0,15.6
+139619,0,0,0,15.6
+139620,0,0,0,15.6
+139621,0,0,0,15.6
+139622,0,103.3900495,0,15.6
+139623,0,0,0,15.6
+139624,0,0,0,15.6
+139625,0,0,0,15.6
+139626,0,86.37295082,0,15.6
+139627,0,0,0,15.6
+139628,0,0,0,15.6
+139629,0,76492.8777,0,15.6
+139630,0,0,0,15.6
+139631,0,0,0,15.6
+139632,0,0,0,15.6
+139633,0,0,0,15.6
+139634,0,0,0,15.6
+139635,0,0,0,15.6
+139636,0,0,0,15.6
+139637,0,0,0,15.6
+139638,0,0,0,15.6
+139639,0,0,0,15.6
+139640,0,0,0,15.6
+139641,0,0,0,15.6
+139642,0,0,0,15.6
+139643,0,0,0,15.6
+139644,0,0,0,15.6
+139645,0,0,1274014.577,15.6
+139646,339925.6464,0,0,15.6
+139647,0,0,0,15.6
+139648,0,0,0,15.6
+139649,0,0,0,15.6
+139650,0,0,0,15.6
+139651,0,0,0,15.6
+139652,0,0,0,15.6
+139653,0,368130.5422,0,15.6
+139654,0,0,0,15.6
+139655,0,0,0,15.6
+139656,0,0,0,15.6
+139657,0,0,0,15.6
+139658,0,0,0,15.6
+139659,0,0,0,15.6
+139660,0,0,0,15.6
+139661,0,0,0,15.6
+139662,0,0,0,15.6
+139663,0,0,0,15.6
+139664,0,0,0,15.6
+139665,0,0,0,15.6
+139666,0,0,0,15.6
+139667,0,0,0,15.6
+139668,0,0,0,15.6
+139669,0,0,0,15.6
+139670,0,0,0,15.6
+139671,0,0,0,15.6
+139672,0,0,0,15.6
+139673,0,0,0,15.6
+139674,0,0,0,15.6
+139675,0,0,0,15.6
+139676,0,0,0,15.6
+139677,0,0,0,15.6
+139678,0,0,0,15.6
+139679,0,0,0,15.6
+139680,0,0,1220839.469,15.6
+139681,0,0,0,15.6
+139682,339925.6749,0,0,15.6
+139683,0,0,0,15.6
+139684,0,0,0,15.6
+139685,0,0,0,15.6
+139686,0,0,0,15.6
+139687,0,0,0,15.6
+139688,0,0,0,15.6
+139689,0,368121.4592,0,15.6
+139690,0,0,0,15.6
+139691,0,0,0,15.6
+139692,0,0,0,15.6
+139693,0,0,0,15.6
+139694,0,0,0,15.6
+139695,0,0,0,15.6
+139696,0,0,0,15.6
+139697,0,0,0,15.6
+139698,0,0,0,15.6
+139699,0,0,0,15.6
+139700,0,0,0,15.6
+139701,0,0,0,15.6
+139702,0,0,0,15.6
+139703,0,0,0,15.6
+139704,0,0,0,15.6
+139705,0,0,0,15.6
+139706,0,0,0,15.6
+139707,0,0,0,15.6
+139708,0,0,0,15.6
+139709,0,0,0,15.6
+139710,0,0,0,15.6
+139711,0,0,0,15.6
+139712,0,0,0,15.6
+139713,0,0,0,15.6
+139714,0,0,0,15.6
+139715,0,0,1173936.42,15.6
+139716,0,0,0,15.6
+139717,0,0,0,15.6
+139718,339925.8773,0,0,15.6
+139719,0,0,0,15.6
+139720,0,0,0,15.6
+139721,0,0,0,15.6
+139722,0,0,0,15.6
+139723,0,0,0,15.6
+139724,0,0,0,15.6
+139725,0,368112.2675,0,15.6
+139726,0,0,0,15.6
+139727,0,0,0,15.6
+139728,0,0,0,15.6
+139729,0,0,0,15.6
+139730,0,0,0,15.6
+139731,0,0,0,15.6
+139732,0,0,0,15.6
+139733,0,0,0,15.6
+139734,0,0,0,15.6
+139735,0,0,0,15.6
+139736,0,0,0,15.6
+139737,0,0,0,15.6
+139738,0,0,0,15.6
+139739,0,0,0,15.6
+139740,0,0,0,15.6
+139741,0,0,0,15.6
+139742,0,0,0,15.6
+139743,0,0,0,15.6
+139744,0,0,0,15.6
+139745,0,0,0,15.6
+139746,0,0,0,15.6
+139747,0,0,0,15.6
+139748,0,0,0,15.6
+139749,0,0,0,15.6
+139750,0,0,1131154.448,15.6
+139751,0,0,0,15.6
+139752,0,0,0,15.6
+139753,0,0,0,15.6
+139754,339925.8773,0,0,15.6
+139755,0,0,0,15.6
+139756,0,0,0,15.6
+139757,0,0,0,15.6
+139758,0,0,0,15.6
+139759,0,0,0,15.6
+139760,0,0,0,15.6
+139761,0,368105.9337,0,15.6
+139762,0,0,0,15.6
+139763,0,0,0,15.6
+139764,0,0,0,15.6
+139765,0,0,0,15.6
+139766,0,0,0,15.6
+139767,0,0,0,15.6
+139768,0,0,0,15.6
+139769,0,0,0,15.6
+139770,0,0,0,15.6
+139771,0,0,0,15.6
+139772,0,0,0,15.6
+139773,0,0,0,15.6
+139774,0,0,0,15.6
+139775,0,0,0,15.6
+139776,0,0,0,15.6
+139777,0,0,0,15.6
+139778,0,0,0,15.6
+139779,0,0,0,15.6
+139780,0,0,0,15.6
+139781,0,0,0,15.6
+139782,0,0,0,15.6
+139783,0,0,0,15.6
+139784,0,0,0,15.6
+139785,0,0,1091687.863,15.6
+139786,0,0,0,15.6
+139787,0,0,0,15.6
+139788,0,0,0,15.6
+139789,0,0,0,15.6
+139790,339925.6821,0,0,15.6
+139791,0,0,0,15.6
+139792,0,0,0,15.6
+139793,0,31069.41147,0,15.6
+139794,0,0,0,15.6
+139795,0,0,0,15.6
+139796,0,13145.38469,0,15.6
+139797,0,377077.0176,0,15.6
+139798,0,8986.287638,0,15.6
+139799,0,11090.72872,0,15.6
+139800,0,10495.15615,0,15.6
+139801,0,10686.08341,0,15.6
+139802,0,10622.96833,0,15.6
+139803,0,10488.74321,0,15.6
+139804,0,10434.62374,0,15.6
+139805,0,10291.81261,0,15.6
+139806,0,10225.02561,0,15.6
+139807,0,10111.43568,0,15.6
+139808,0,10010.40717,0,15.6
+139809,0,9927.298046,0,15.6
+139810,0,9790.305737,0,15.6
+139811,0,9710.352072,0,15.6
+139812,0,9606.777577,0,15.6
+139813,0,9469.423622,0,15.6
+139814,0,9428.489988,0,15.6
+139815,0,9220.162304,0,15.6
+139816,0,9185.365175,0,15.6
+139817,0,9052.106608,0,15.6
+139818,0,8927.510056,0,15.6
+139819,0,8812.270604,0,15.6
+139820,0,8735.036751,1055096.603,15.6
+139821,0,8554.413844,0,15.6
+139822,0,8496.009724,0,15.6
+139823,0,0,0,15.6
+139824,0,0,0,15.6
+139825,0,0,0,15.6
+139826,339925.8773,0,0,15.6
+139827,0,0,0,15.6
+139828,0,0,0,15.6
+139829,0,0,0,15.6
+139830,0,0,0,15.6
+139831,0,0,0,15.6
+139832,0,0,0,15.6
+139833,0,368109.67,0,15.6
+139834,0,0,0,15.6
+139835,0,0,0,15.6
+139836,0,0,0,15.6
+139837,0,0,0,15.6
+139838,0,0,0,15.6
+139839,0,0,0,15.6
+139840,0,0,0,15.6
+139841,0,0,0,15.6
+139842,0,0,0,15.6
+139843,0,0,0,15.6
+139844,0,0,0,15.6
+139845,0,0,0,15.6
+139846,0,0,0,15.6
+139847,0,0,0,15.6
+139848,0,0,0,15.6
+139849,0,0,0,15.6
+139850,0,0,0,15.6
+139851,0,0,0,15.6
+139852,0,0,0,15.6
+139853,0,0,0,15.6
+139854,0,0,0,15.6
+139855,0,0,1020907.893,15.6
+139856,0,0,0,15.6
+139857,0,0,0,15.6
+139858,0,0,0,15.6
+139859,0,0,0,15.6
+139860,0,0,0,15.6
+139861,0,113556.8825,0,15.6
+139862,339925.8773,43198.40095,0,15.6
+139863,0,22263.15489,0,15.6
+139864,0,17213.44005,0,15.6
+139865,0,30436.58165,0,15.6
+139866,0,26290.79684,0,15.6
+139867,0,24845.34448,0,15.6
+139868,0,25396.85626,0,15.6
+139869,0,25415.60411,0,15.6
+139870,0,393616.9568,0,15.6
+139871,0,25550.36719,0,15.6
+139872,0,25570.6677,0,15.6
+139873,0,25659.28944,0,15.6
+139874,0,25720.43845,0,15.6
+139875,0,25746.09176,0,15.6
+139876,0,25878.17468,0,15.6
+139877,0,25903.74881,0,15.6
+139878,0,26019.01956,0,15.6
+139879,0,26072.81196,0,15.6
+139880,0,26146.41918,0,15.6
+139881,0,26290.55847,0,15.6
+139882,0,26322.73778,0,15.6
+139883,0,26397.13489,0,15.6
+139884,0,26568.37715,0,15.6
+139885,0,26599.4403,0,15.6
+139886,0,26682.19337,0,15.6
+139887,0,26838.41335,0,15.6
+139888,0,26888.12114,0,15.6
+139889,0,27007.36419,989727.0046,15.6
+139890,0,27192.85362,0,15.6
+139891,0,0,0,15.6
+139892,0,0,0,15.6
+139893,0,0,0,15.6
+139894,0,82417.98028,0,15.6
+139895,0,8875.030351,0,15.6
+139896,0,24677.44397,0,15.6
+139897,339925.6556,32318.51066,0,15.6
+139898,0,27516.86796,0,15.6
+139899,0,28153.76198,0,15.6
+139900,0,28276.22498,0,15.6
+139901,0,28362.54068,0,15.6
+139902,0,28526.92291,0,15.6
+139903,0,351574.5405,0,15.6
+139904,0,38713.36673,0,15.6
+139905,0,499841.9157,0,15.6
+139906,0,198211.3978,0,15.6
+139907,0,164959.6443,0,15.6
+139908,0,167298.5726,0,15.6
+139909,0,171717.2839,0,15.6
+139910,0,174099.0256,0,15.6
+139911,0,174729.835,0,15.6
+139912,0,176740.7968,0,15.6
+139913,0,178241.7106,0,15.6
+139914,0,179372.0133,0,15.6
+139915,0,181583.6557,0,15.6
+139916,0,182168.4672,0,15.6
+139917,0,184350.1308,0,15.6
+139918,0,185903.6877,0,15.6
+139919,0,186800.1506,0,15.6
+139920,0,188540.8146,0,17.8
+139921,70860.50489,1425462.64,0,17.8
+139922,4049.257125,1288998.502,0,17.8
+139923,14007.34584,299543.4149,961483.3928,17.8
+139924,26477.05997,412968.1904,0,17.8
+139925,19240.59326,573538.6311,0,17.8
+139926,20283.09965,465180.5745,0,17.8
+139927,20314.47231,497993.7316,0,17.8
+139928,20385.45258,483830.3132,0,17.8
+139929,20470.35662,480758.5037,0,17.8
+139930,20469.09981,484325.5205,0,17.8
+139931,20512.39379,486247.1271,0,17.8
+139932,360756.4978,486379.7696,0,17.8
+139933,20582.73891,105591.2677,0,17.8
+139934,20646.65155,105771.7347,0,17.8
+139935,20697.99983,1019880.552,0,17.8
+139936,20730.74692,359365.0422,0,17.8
+139937,20803.2821,500360.6222,0,17.8
+139938,20789.70412,505366.204,0,17.8
+139939,20883.27927,501065.4287,0,17.8
+139940,19950.89222,867583.0011,0,17.8
+139941,19987.48143,500539.9584,0,17.8
+139942,19992.97716,502641.5522,0,17.8
+139943,20065.275,504279.3836,0,17.8
+139944,20100.23592,506271.3229,0,17.8
+139945,20105.99407,508246.2149,0,17.8
+139946,20180.73439,509451.2856,0,17.8
+139947,20202.94475,511706.4114,0,17.8
+139948,20228.08575,513923.2148,0,17.8
+139949,20284.21416,514906.415,0,17.8
+139950,20339.89312,517787.1426,0,17.8
+139951,0,499820.776,0,17.8
+139952,0,502317.1969,0,17.8
+139953,0,503758.9449,0,17.8
+139954,0,505768.7108,0,17.8
+139955,0,418353.3925,0,17.8
+139956,0,468327.9019,0,17.8
+139957,0,567009.1128,935870.6928,17.8
+139958,66193.10314,551246.3421,0,17.8
+139959,1619.44018,521472.7022,0,17.8
+139960,20185.16424,548663.5042,0,17.8
+139961,24314.6541,543146.8845,0,17.8
+139962,20314.10949,541146.319,0,17.8
+139963,20931.32326,544541.0886,0,17.8
+139964,20995.5416,546895.7212,0,17.8
+139965,21018.0147,112097.6485,0,17.8
+139966,21064.60005,112520.6868,0,17.8
+139967,361270.2526,1180326.114,0,17.8
+139968,21118.63917,403262.698,0,17.8
+139969,21213.24727,646092.8687,0,17.8
+139970,21195.39525,526646.0289,0,17.8
+139971,21237.18514,585630.9919,0,17.8
+139972,22072.93605,567005.1692,0,17.8
+139973,22561.56551,568291.2069,0,17.8
+139974,22179.2071,570845.8439,0,17.8
+139975,22380.74529,941813.0496,0,17.8
+139976,22508.34306,575180.0076,0,17.8
+139977,22516.21336,578707.0853,0,17.8
+139978,22597.72949,580251.807,0,17.8
+139979,22673.02208,582619.9969,0,17.8
+139980,22647.42494,586201.1219,0,20
+139981,963828.3305,2606285.319,291870.8789,20
+139982,123520.3065,589392.6704,109329.0373,20
+139983,80853.41064,549242.8216,122530.811,20
+139984,216968.4969,564373.7714,140316.0451,20
+139985,201971.2275,593391.643,158159.8465,20
+139986,177304.9926,733399.1581,154153.1323,20
+139987,193289.1962,606851.5664,150788.0314,20
+139988,188635.456,639009.7293,155259.6192,20
+139989,188725.2255,638044.9282,156345.8353,20
+139990,189009.6693,636710.3365,157324.565,20
+139991,189152.1908,634831.6372,158664.9491,20
+139992,188792.7465,634718.0108,159397.8445,20
+139993,188534.7644,631719.8346,160818.7663,20
+139994,188618.0341,631775.632,161902.6652,20
+139995,188531.1014,630635.0811,162802.2368,20
+139996,188503.4142,629220.1144,163774.0184,20
+139997,187909.505,628744.8896,165335.8769,20
+139998,188718.6747,627172.7202,166243.4083,20
+139999,188030.1641,627130.2166,167371.1214,20
+140000,188363.6167,625282.3182,169034.3584,20
+140001,187981.5546,625388.569,169306.4314,20
+140002,188298.2061,623897.5127,171095.2592,20
+140003,187995.6198,624080.7733,171983.7307,20
+140004,188192.5535,621729.6899,173703.3463,20
+140005,188173.4809,623790.1995,174176.5406,20
+140006,188351.9397,620601.1003,175738.7448,20
+140007,188024.5015,621377.6457,177009.3985,20
+140008,188348.746,619515.8485,178085.8782,20
+140009,188283.2459,620257.8951,179126.3361,20
+140010,188084.4972,619852.0993,180908.007,20
+140011,188537.4091,617916.0383,181489.5161,20
+140012,188043.8482,618083.0784,183121.0167,20
+140013,188609.2496,619292.3667,184079.2035,20
+140014,188611.3457,616366.9664,185722.0685,20
+140015,188460.8925,617260.801,186697.1804,20
+140016,188563.1566,615928.2757,188057.4402,20
+140017,188567.0314,616980.7392,189052.1125,20
+140018,188508.2478,615387.928,190433.0248,20
+140019,189100.8276,615610.066,191929.5457,20
+140020,188512.9107,615221.6236,193076.4893,20
+140021,189292.8593,614264.6246,194608.9248,20
+140022,188612.5309,614517.3483,195809.7414,20
+140023,189031.7219,614381.8628,197112.7914,20
+140024,189390.914,614551.8662,198427.8866,20
+140025,188892.9924,611668.8271,206701.9829,20
+140026,189474.71,614984.2811,207809.634,20
+140027,189018.6603,611940.1255,209218.9143,20
+140028,189557.1022,613871.5138,210565.6149,20
+140029,189619.0412,612390.6208,211343.4901,20
+140030,189086.8611,610901.5353,213036.7986,20
+140031,189885.2861,613742.7043,214397.0957,20
+140032,183825.0861,610901.6563,215502.8834,20
+140033,181745.2337,612176.8853,216715.2854,20
+140034,181289.2151,606988.9991,218081.6749,20
+140035,180993.3971,606333.9299,218961.0497,20
+140036,179768.7076,604734.2235,220732.2386,20
+140037,179697.6498,604924.3659,221648.3,20
+140038,178441.8818,603835.3519,223246.3279,20
+140039,178400.0187,602382.6788,224307.7887,20
+140040,177174.8595,604026.5545,225844.4784,21
+140041,176296.6836,1172874.802,226084.857,21
+140042,175271.9864,1174385.84,227243.8191,21
+140043,174568.1493,1174316.187,228253.2002,21
+140044,173929.5867,1174720.714,228200.7455,21
+140045,172902.2293,1174708.64,229746.041,21
+140046,172364.0889,1175921.166,230168.098,21
+140047,171300.1942,1175544.954,231076.0215,21
+140048,170462.2687,1175589.57,231684.9601,21
+140049,169974.9071,1176780.525,232309.8922,21
+140050,168649.1446,1176830.866,233059.5989,21
+140051,168301.1291,1176987.748,234454.2615,21
+140052,167082.8998,1177589.463,236092.9967,21
+140053,166450.2912,1177441.225,235938.089,21
+140054,165713.7792,1179235.373,237227.1244,21
+140055,164625.7582,1177695.835,237757.2926,21
+140056,163564.9737,1180439.66,238925.7455,21
+140057,163059.9922,1178049.78,239328.3089,21
+140058,162094.7536,1181075.224,240174.5638,21
+140059,161151.2395,1179694.723,241185.212,21
+140060,160860.8076,1180791.011,241792.6319,21
+140061,159357.5007,1181332.373,242824.3515,21
+140062,159247.4258,1181898.156,226127.0667,21
+140063,158222.1756,1181729.812,223925.2029,21
+140064,158015.6972,1181881.256,222809.2076,21
+140065,156498.8103,1185490.277,222473.973,21
+140066,156322.2419,1182820.929,221134.7467,21
+140067,155713.0861,1183479.403,221003.685,21
+140068,154374.8144,1185105.716,219886.5547,21
+140069,154339.107,1183609.201,219166.4118,21
+140070,153185.6525,1186663.311,219208.6706,21
+140071,152552.5352,1183464.058,217138.8142,21
+140072,152008.0454,1184135.008,216776.0848,21
+140073,150611.0007,1184871.186,216096.8911,21
+140074,150021.9869,1184002.221,214678.4222,21
+140075,149572.6832,1184500.701,214443.6117,21
+140076,148052.4816,1183958.757,213014.4541,21
+140077,147560.9005,1184691.393,212720.0189,21
+140078,146389.5375,1183206.477,211078.2586,21
+140079,145678.9429,1182346.687,210934.5428,21
+140080,144552.1498,1182632.657,208921.1131,21
+140081,143712.8118,1181875.365,208395.5695,21
+140082,142455.207,1182786.254,207473.28,21
+140083,141952.7152,1181911.89,206287.684,21
+140084,140394.3619,1182281.493,205237.1431,21
+140085,139723.41,1181242.877,203855.2905,21
+140086,138373.3392,1182267.428,203594.3812,21
+140087,137362.7658,1181388.888,201939.0801,21
+140088,136158.542,1182031.597,201333.3252,21
+140089,135288.955,1181196.52,200122.6685,21
+140090,134061.191,1178761.779,199912.9089,21
+140091,132723.1401,1180455.224,198470.0573,21
+140092,131709.7465,1178427.167,197942.9107,21
+140093,130577.5308,1178610.407,197402.3232,21
+140094,128300.0774,1179344.37,196346.4673,21
+140095,126764.1269,1177603.146,195934.0527,21
+140096,125769.7653,1178448.168,195330.3561,21
+140097,125215.8858,1176766.64,194389.7271,21
+140098,124875.1457,1177752.267,194126.7558,21
+140099,124252.4613,1177378.118,192530.1765,21
+140100,123996.9698,1176385.203,180635.7616,21
+140101,105906.9062,1115780.869,145793.8077,21
+140102,104041.6847,1108413.511,142499.679,21
+140103,103221.8637,1108928.916,141276.053,21
+140104,102426.2632,1104824.791,140549.9633,21
+140105,101839.2098,1103359.114,139493.7124,21
+140106,100794.3368,1102128.192,137722.4145,21
+140107,100210.8079,1099303.599,137208.1084,21
+140108,99554.24729,1098153.728,136568.6088,21
+140109,98814.14434,1095273.194,134739.9665,21
+140110,98367.24132,1095457.753,133966.2789,21
+140111,97381.05153,1091950.903,133090.0668,21
+140112,97324.71996,1090822.867,131878.2775,21
+140113,96092.30785,1088717.205,130496.0681,21
+140114,95728.5366,1087652.623,130168.4647,21
+140115,95024.37102,1085471.241,128449.5662,21
+140116,94453.79845,1082528.237,127290.2761,21
+140117,93690.74657,1082094.148,127187.9554,21
+140118,93225.69051,1078098.802,125217.8364,21
+140119,92432.7563,1077455.045,124766.3097,21
+140120,91996.81632,1076217.568,124127.1093,21
+140121,91280.60112,1071674.95,122268.5011,21
+140122,90372.09038,1072998.91,122282.8123,21
+140123,89998.87418,1068476.135,120450.2326,21
+140124,89330.8662,1068028.92,119736.0179,21
+140125,88667.752,1065551.916,118696.2405,21
+140126,88091.09941,1063094.428,117806.225,21
+140127,87278.77705,1061009.63,116602.3117,21
+140128,86748.41403,1060359.652,115553.3371,21
+140129,86172.11821,1057475.355,114575.9317,21
+140130,85450.68051,1055711.637,113404.151,21
+140131,84751.11541,1054656.265,112608.503,21
+140132,84491.24255,1052917.534,111462.67,21
+140133,83569.59468,1051216.99,110541.8687,21
+140134,82970.66986,1049255.483,109493.5663,21
+140135,82630.70926,1048761.406,108327.7911,21
+140136,81820.05724,1047129.049,107645.4407,21
+140137,81287.49262,1045788.149,105184.3635,21
+140138,80773.33278,1044067.816,104689.4414,21
+140139,80019.32584,1042346.719,102860.8656,21
+140140,79571.03519,1041847.521,103295.2758,21
+140141,78960.77781,1040432.612,101476.1619,21
+140142,78580.94685,1039254.852,100536.6163,21
+140143,77626.35526,1037239.116,99640.95015,21
+140144,77495.03457,1036017.004,98636.23914,21
+140145,76659.38894,1036582.068,97484.07389,21
+140146,76071.96073,1032797.273,96408.39513,21
+140147,75801.26123,1034077.016,95562.76785,21
+140148,74984.49419,1030475.824,94486.33214,21
+140149,74479.68709,1030698.117,93263.59176,21
+140150,73981.39986,1029880.964,92524.17705,21
+140151,73507.34931,1027996.145,91251.07839,21
+140152,72795.27217,1026979.734,90127.04317,21
+140153,72262.59738,1026167.268,89320.93938,21
+140154,71887.31362,1025400.896,88206.26372,21
+140155,71281.01373,1023747.168,86977.75798,21
+140156,70714.87435,1023721.357,86275.90325,21
+140157,70080.06312,1020999.616,85090.06639,21
+140158,69782.96137,1021974.025,84012.81898,21
+140159,68940.14724,1019246.216,82873.0339,21
+140160,68683.8814,1018630.764,82269.18783,21
+140161,68099.40847,1018041.032,81179.34982,21
+140162,67494.72015,1014168.723,80373.82602,21
+140163,67225.15515,1012867.659,79903.13707,21
+140164,66539.54678,1010606.573,79127.30514,21
+140165,66290.1193,1010708.948,78540.11103,21
+140166,65570.24932,1006496.679,77681.54604,21
+140167,65402.05563,1007650.684,76587.32591,21
+140168,64477.59673,1002993.521,76660.04008,21
+140169,64481.65539,1004033.51,75406.37521,21
+140170,63649.70754,1000638.967,74813.30484,21
+140171,63449.07898,998998.5493,74184.09714,21
+140172,62569.43749,998681.4385,73374.61238,21
+140173,62442.81471,995646.7172,72610.34849,21
+140174,61725.38332,994134.2862,71944.61988,21
+140175,61412.6732,992601.8798,71202.43624,21
+140176,60549.22002,991836.4911,70856.04489,21
+140177,60304.12416,989898.3752,69586.90856,21
+140178,59840.23834,989715.0711,68768.29637,21
+140179,59102.82545,987652.8295,68782.3002,21
+140180,58703.98828,987823.6071,67220.42801,21
+140181,58026.04279,985236.905,66710.38792,21
+140182,57839.65688,984745.6059,66038.96324,21
+140183,56692.84935,984202.4229,64971.18458,21
+140184,56558.36136,982461.8965,64429.2008,21
+140185,55900.53061,981041.064,63698.676,21
+140186,55266.97748,979628.6696,62726.27232,21
+140187,54774.51014,979510.2256,62252.35245,21
+140188,54014.45503,976922.5934,61243.38184,21
+140189,53515.41431,976972.0684,60555.60738,21
+140190,52958.3474,974751.2261,60134.17078,21
+140191,52065.85402,974126.7771,58662.02632,21
+140192,51309.89695,971433.5083,58628.46565,21
+140193,50479.65927,971987.4624,57548.41269,21
+140194,49559.00261,967966.0712,56641.02961,21
+140195,48750.05505,968606.0136,56211.23463,21
+140196,47809.65198,966443.7667,55232.04669,21
+140197,47107.35358,964313.2156,54499.62735,21
+140198,46125.60828,963235.8499,53781.72581,21
+140199,45132.38734,961174.827,52813.461,21
+140200,44295.56012,960427.7992,52402.30731,21
+140201,43481.7858,958258.271,51126.47422,21
+140202,42337.55538,956672.4188,50946.63723,21
+140203,41642.942,955059.2532,49835.90767,21
+140204,40560.71915,954420.7084,48879.87248,21
+140205,39557.44686,950484.9544,48463.74646,21
+140206,38795.98245,951045.8001,47316.87311,21
+140207,37552.24058,948292.7444,46768.47783,21
+140208,36949.06179,947748.6239,45834.14561,21
+140209,36054.19927,945092.5533,44999.98687,21
+140210,35621.17924,942854.2408,44511.10362,21
+140211,35761.81621,942709.7594,43405.10576,21
+140212,34630.27395,939696.876,42496.03207,21
+140213,34555.67837,937899.4256,41990.32913,21
+140214,33907.25492,937043.6931,41013.28788,21
+140215,33414.53272,935814.8542,40220.87775,21
+140216,32935.71579,933210.6846,39272.58929,21
+140217,32454.98165,933357.981,38505.95098,21
+140218,31786.55572,930136.0437,37806.05771,21
+140219,31373.07681,929650.5748,37215.55289,21
+140220,31131.87551,926851.7542,36525.62646,21
+140221,30152.42794,923964.1951,35980.31338,21
+140222,29638.50606,920603.7747,34655.1026,21
+140223,29394.95042,917710.3025,34643.86469,21
+140224,28897.48685,915616.3176,33883.71622,21
+140225,28430.49884,913469.7309,33236.1006,21
+140226,27971.06803,910499.6496,32622.6018,21
+140227,27754.49483,907089.8782,32042.21994,21
+140228,27199.29557,906541.3689,31471.88437,21
+140229,26825.74463,901937.3456,30982.24437,21
+140230,26333.34143,900375.8216,30381.78057,21
+140231,26019.64531,897224.3022,29770.44387,21
+140232,25668.41378,895383.0416,29073.54272,21
+140233,25072.38981,892354.0929,28651.42012,21
+140234,24718.88194,889500.1334,28161.33997,21
+140235,24749.05436,886724.8086,27312.20366,21
+140236,23899.7161,885285.1258,27050.16171,21
+140237,23884.64011,881279.6333,26367.55543,21
+140238,23484.99131,878669.3813,25723.81487,21
+140239,23204.40362,875451.5369,25294.0525,21
+140240,22975.60145,874673.4413,24729.20154,21
+140241,22851.13464,869918.4861,24078.42652,21
+140242,22599.05207,868806.4825,23782.07197,21
+140243,22325.51278,864880.8319,22988.63715,21
+140244,22253.31552,862901.5799,22528.15622,21
+140245,21761.69309,859410.2776,22060.04941,21
+140246,21905.50635,857602.2714,21423.79842,21
+140247,21419.1962,854606.1888,20772.6311,21
+140248,21358.66644,851305.3217,20305.31215,21
+140249,21098.86344,850038.5086,19535.34631,21
+140250,21018.10558,845510.6305,19178.97137,21
+140251,20626.36104,843731.9814,18672.77751,21
+140252,20768.26717,841078.9375,17804.54418,21
+140253,20374.81822,838656.5824,17501.4104,21
+140254,20473.79949,835635.495,16661.85553,21
+140255,20133.62719,833011.8599,16397.87245,21
+140256,20035.11082,830572.8727,15779.194,21
+140257,19847.69992,827609.103,14921.0124,21
+140258,19803.57982,826218.4723,14626.67901,21
+140259,19549.60204,821206.0986,14050.64325,21
+140260,19560.499,821028.7766,13309.81553,21
+140261,19305.67914,817173.4061,12854.00413,21
+140262,19082.9857,815404.6487,12526.42345,21
+140263,19238.9355,812049.0347,12087.26711,21
+140264,18731.55214,810363.8431,11921.68993,21
+140265,18781.50807,806613.4635,11449.2282,21
+140266,18664.24469,803716.3673,11296.33392,21
+140267,18428.59344,802699.455,10679.5534,21
+140268,18321.97686,799277.3065,10769.0345,21
+140269,18242.17367,796276.3099,10342.31313,21
+140270,18062.68499,794412.1227,9999.568695,21
+140271,17802.06724,792033.1986,9850.725462,21
+140272,17779.27331,788077.8286,9679.106621,21
+140273,17575.49388,787200.7408,9266.957126,21
+140274,17494.61831,783824.205,9011.41648,21
+140275,17290.16299,780595.3738,8959.499562,21
+140276,17267.01069,779952.0449,8563.305527,21
+140277,17026.8963,775340.5457,8302.888548,21
+140278,16797.79642,773836.0951,8097.763094,21
+140279,16762.61261,771153.3164,7836.181287,21
+140280,16739.1547,768167.721,7626.97447,21
+140281,16411.60839,768510.6709,7558.59499,21
+140282,16497.28324,764141.5,7386.324817,21
+140283,16242.856,761190.6934,7283.25199,21
+140284,16133.05871,759785.3472,7054.038984,21
+140285,15987.39944,757011.6795,6685.030827,21
+140286,15766.81346,753264.5717,6792.884972,21
+140287,15694.9988,751502.8561,6369.128944,21
+140288,15509.55185,748142.1943,6353.42373,21
+140289,15437.37117,746455.7343,6089.844311,21
+140290,15215.041,743303.9073,5889.811336,21
+140291,14992.35075,740340.6431,5806.585185,21
+140292,14930.9944,738233.7043,5592.666934,21
+140293,14807.01309,734846.3659,5195.482754,21
+140294,14670.73348,732814.7554,5291.264905,21
+140295,14333.01813,730680.1464,5092.336762,21
+140296,14396.09374,726702.3808,4659.782821,21
+140297,14157.96308,725108.9107,4786.086562,21
+140298,13931.92743,722835.5668,4390.309513,21
+140299,13868.34628,719086.9948,4318.588448,21
+140300,13642.29909,717077.5263,4117.050232,21
+140301,13614.66576,714939.2378,4047.433555,21
+140302,13362.1756,711075.1985,3641.966411,21
+140303,13119.71589,709512.7689,3569.219972,21
+140304,13188.27131,707037.2264,3517.869325,21
+140305,12837.34329,703623.0675,3126.132139,21
+140306,12808.66158,701674.1827,3091.44601,21
+140307,12564.76351,699100.0124,2791.662377,21
+140308,12422.08199,695825.4316,2813.040365,21
+140309,12319.45807,694236.3833,2528.891805,21
+140310,12191.71431,691306.5228,2321.045893,21
+140311,12063.70312,687810.7073,2281.717123,21
+140312,11869.70342,686196.2836,2110.137952,21
+140313,11832.06906,683129.6313,1878.154951,21
+140314,11728.53022,679629.1552,1897.969957,21
+140315,11599.60477,677626.5979,1644.596551,21
+140316,11378.95246,674231.2812,1488.846385,21
+140317,11366.29811,671952.2197,1449.070742,21
+140318,11353.62134,671461.0025,1409.164804,21
+140319,11027.4529,667467.9761,1050.975701,21
+140320,11106.66872,667916.7702,1010.928771,21
+140321,10792.02963,665390.636,990.8566479,21
+140322,10871.54704,663040.8895,784.3820385,21
+140323,10661.19481,662214.9163,764.2358227,21
+140324,10530.06545,660706.5252,723.8288144,21
+140325,10411.5251,657802.0219,723.832048,21
+140326,10398.64037,657189.0569,662.9310065,21
+140327,10173.75835,654161.6263,683.2747456,21
+140328,10160.82581,653933.5564,642.5547804,21
+140329,9922.082381,651853.57,601.667593,21
+140330,9922.083063,649329.6047,601.6699724,21
+140331,9909.077653,648509.1434,581.1619903,21
+140332,9562.191639,645685.689,540.0073037,21
+140333,9669.34081,645426.9431,519.3599352,21
+140334,9428.640659,643154.9367,498.6632856,21
+140335,9321.055043,640581.9289,477.9157781,21
+140336,9186.960217,638948.8974,457.1157138,21
+140337,9173.77886,638139.2988,436.2612236,21
+140338,9065.746748,636629.1106,394.3795846,21
+140339,8931.04636,633550.7257,394.380609,21
+140340,8931.046908,632146.9683,352.2543483,21
+140341,12513.92199,688215.8276,904.6136773,21
+140342,12398.9984,689667.0559,884.6720539,21
+140343,12603.35924,690206.0469,5600.333163,21
+140344,12501.26744,692477.0578,4431.45774,21
+140345,12501.26771,690172.9895,3941.718339,21
+140346,12373.62133,698705.1552,4085.537982,21
+140347,12590.6824,696446.1048,4228.889486,21
+140348,12271.17528,697234.4071,3881.883438,21
+140349,12360.89901,699973.1736,4025.608431,21
+140350,12360.8992,698849.59,3841.807315,21
+140351,12348.15362,702229.9336,3841.903795,21
+140352,12143.08173,701046.9186,3801.575446,21
+140353,12335.38525,703134.3285,3452.459525,21
+140354,12130.31333,703419.0056,3781.486909,21
+140355,12117.52169,704385.4244,3246.733705,21
+140356,12117.52182,705388.7658,3412.03818,21
+140357,12091.86858,706277.3091,3371.291335,21
+140358,12014.71614,705965.2002,3206.124541,21
+140359,11976.20101,708631.3088,3019.934684,21
+140360,11989.06299,707466.4772,2999.474984,21
+140361,11860.32813,709664.4379,2978.969081,21
+140362,11886.07564,709604.4298,2771.396992,21
+140363,11834.48568,709787.2491,2792.109513,21
+140364,11873.21394,712395.6503,2583.824973,21
+140365,11627.96065,711145.2028,2563.108861,21
+140366,11847.41924,713209.6738,2374.72726,21
+140367,11627.9608,711886.419,2542.380544,21
+140368,11615.00346,713574.4384,1995.660202,21
+140369,11498.48151,712930.8144,2333.044466,21
+140370,11264.80171,714699.0695,1953.689437,21
+140371,11264.80177,714792.9703,1953.715817,21
+140372,11160.69631,715429.7809,1932.632458,21
+140373,11134.56043,716174.1847,1741.613557,21
+140374,11134.56049,717138.2336,1720.387433,21
+140375,10912.66856,717272.6152,1528.323859,21
+140376,10912.66861,719210.8108,1528.340266,21
+140377,10899.53783,719784.0986,1313.711715,21
+140378,10781.69763,719336.9146,1313.723949,21
+140379,10663.63589,721827.049,1292.16196,21
+140380,10676.81789,721304.2091,725.8348984,21
+140381,10650.42817,721678.5264,1075.838193,21
+140382,10532.11706,723030.8641,504.1203092,21
+140383,10440.0745,722712.598,857.7263251,21
+140384,10413.58064,723915.4845,301.2823615,21
+140385,10413.58068,724355.2103,637.4329339,21
+140386,10189.13725,723807.4192,278.9463599,21
+140387,10189.13729,725167.4729,233.601039,21
+140388,10162.48424,725185.4479,47.09350052,21
+140389,10175.82424,726767.3882,210.4294894,21
+140390,9937.143256,725951.2883,0,21
+140391,9950.510303,726696.677,0,21
+140392,11389.32817,727364.6324,0,21
+140393,14554.47427,727087.6452,0,21
+140394,12773.47323,728362.0661,0,21
+140395,13772.33224,727223.7196,0,21
+140396,14541.02487,729755.9885,0,21
+140397,13665.39926,728140.8808,0,21
+140398,15063.38061,729064.8252,0,21
+140399,14956.44761,729601.5898,0,21
+140400,16038.67182,730489.8094,0,21
+140401,15580.11874,728450.4543,0,21
+140402,16666.71561,728449.3479,0,21
+140403,16531.97481,727882.716,0,21
+140404,17169.49161,727227.6744,0,21
+140405,17048.06229,726469.4447,0,21
+140406,18298.34765,726240.89,0,21
+140407,16804.43969,725234.4333,0,21
+140408,18695.24328,723953.2228,0,21
+140409,17946.17675,724406.4112,0,21
+140410,18559.30429,722311.0091,0,21
+140411,19074.30426,723038.9715,0,21
+140412,18204.86702,720767.7838,0,21
+140413,19060.53321,722125.9126,0,21
+140414,19820.40944,719577.3296,0,21
+140415,18828.58686,719251.1807,0,21
+140416,20421.68619,718947.8626,0,21
+140417,19806.51278,718933.1088,0,21
+140418,19572.5032,716263.0555,0,21
+140419,20786.28855,717208.3674,0,21
+140420,20551.21032,715389.7941,0,21
+140421,20315.07026,716202.3417,0,21
+140422,21008.1781,713361.0082,0,21
+140423,20673.82354,713612.1695,0,21
+140424,21267.3719,713124.7185,0,21
+140425,21000.518,712498.6219,0,21
+140426,20902.21097,710884.9506,0,21
+140427,21366.24226,710895.4105,0,21
+140428,21714.20105,710015.4587,0,21
+140429,20391.99999,709717.7478,0,21
+140430,22657.5476,708264.4565,0,21
+140431,21343.37852,707996.3226,0,21
+140432,21084.85466,707166.3733,0,21
+140433,22284.71342,706412.9178,0,21
+140434,22140.32808,705623.7262,0,21
+140435,21894.18505,706251.3141,0,21
+140436,22491.04231,704089.6525,0,21
+140437,22228.77891,703617.193,0,21
+140438,22823.66821,704140.2864,0,21
+140439,22097.05024,702249.3458,0,21
+140440,22427.24537,702039.0009,0,21
+140441,23743.89307,699849.106,0,21
+140442,22160.8375,700636.076,0,21
+140443,23478.35197,699584.1034,0,21
+140444,22619.9411,698024.5441,0,21
+140445,23211.05573,699310.7264,0,21
+140446,23546.29726,696821.6799,0,21
+140447,23061.6404,696713.3278,0,21
+140448,23998.58759,695903.127,0,21
+140449,23847.65901,694816.0446,0,21
+140450,23260.125,695011.266,0,21
+140451,23711.34601,694424.476,0,21
+140452,24881.2783,693357.1412,0,21
+140453,23437.10188,692554.1705,0,21
+140454,24607.03414,692810.8471,0,21
+140455,24607.03399,689875.0363,0,21
+140456,24330.50387,690868.848,0,21
+140457,24469.06493,688985.6858,0,21
+140458,24773.80321,688774.0773,0,21
+140459,24773.80301,686329.6424,0,21
+140460,25339.07472,687264.0675,0,21
+140461,24051.51144,687577.8071,0,21
+140462,25214.8554,680869.2239,0,21
+140463,26340.50267,681806.5866,0,21
+140464,24509.16191,681862.3349,0,21
+140465,26340.50493,678925.128,0,21
+140466,26215.67668,680289.6452,0,21
+140467,24933.17959,677883.9788,0,21
+140468,27366.65825,678218.6758,0,21
+140469,25622.13585,675934.1763,0,21
+140470,27225.39839,676409.9969,0,21
+140471,26074.42001,674523.8554,0,21
+140472,27083.39773,674643.1395,0,21
+140473,26634.78183,674094.0499,0,21
+140474,27067.4511,672273.8833,0,21
+140475,27067.45235,672197.1135,0,21
+140476,28085.77208,671628.3295,0,21
+140477,26636.3119,670134.8207,0,21
+140478,26360.62284,670453.2637,0,21
+140479,28059.84403,669348.6653,0,21
+140480,26786.35768,667975.8961,0,21
+140481,27209.4482,668021.0481,0,21
+140482,27192.83933,667689.6313,0,21
+140483,27478.13636,665979.1041,0,21
+140484,26890.81569,666048.2095,0,21
+140485,27755.2762,665372.6745,0,21
+140486,27152.01908,664899.5926,0,21
+140487,27562.70705,663080.1324,0,21
+140488,27266.23663,663751.7766,0,21
+140489,27221.82137,662386.9681,0,21
+140490,27212.70165,661881.6328,0,21
+140491,28328.20418,660555.0623,0,21
+140492,27174.54533,661377.4702,0,21
+140493,28308.66024,660892.8069,0,21
+140494,28308.66213,661047.8116,0,21
+140495,28308.66221,660306.8627,0,21
+140496,28308.66553,660331.3355,0,21
+140497,28308.6668,660127.6972,0,21
+140498,29437.53129,658775.2607,0,21
+140499,28308.66906,659997.4175,0,21
+140500,29437.53629,659235.8856,0,21
+140501,29437.5382,659484.2719,0,21
+140502,28873.75396,659198.9218,0,21
+140503,29437.54204,658645.8202,0,21
+140504,30000.05839,658904.0843,0,21
+140505,29437.5459,658450.0194,0,21
+140506,30561.32422,658462.7137,0,21
+140507,29437.54978,658173.2332,0,21
+140508,30561.32844,657969.3631,0,21
+140509,30561.33056,657762.6369,0,21
+140510,30561.33268,657800.5526,0,21
+140511,30561.33481,658178.2875,0,21
+140512,30561.33695,657014.1719,0,21
+140513,31680.17831,657378.1454,0,21
+140514,30561.34124,656450.4377,0,21
+140515,31680.18493,656818.7163,0,21
+140516,31680.18528,656859.9988,0,21
+140517,31680.18762,656114.3159,0,21
+140518,31680.18997,656088.2189,0,21
+140519,31680.19231,655369.2511,0,21
+140520,32794.23601,656398.5058,0,21
+140521,32794.2293,653734.2467,0,21
+140522,32794.22906,655022.5449,0,21
+140523,32794.22884,651855.7331,0,21
+140524,33903.60021,653137.4439,0,21
+140525,33903.59997,650971.6169,0,21
+140526,32794.22817,650884.4782,0,21
+140527,35008.4225,648380.349,0,21
+140528,32794.22765,648933.2082,0,21
+140529,35008.42187,648032.0383,0,21
+140530,33903.59853,644967.1133,0,21
+140531,35008.42117,646187.0362,0,21
+140532,33903.59785,644909.9946,0,21
+140533,35008.42042,643083.3143,0,21
+140534,35008.42003,642819.4899,0,21
+140535,35559.16107,640836.3786,0,21
+140536,35008.41922,640885.6573,0,21
+140537,35559.16021,639691.8669,0,21
+140538,36108.80596,637815.888,0,21
+140539,35008.41793,637744.6073,0,21
+140540,36108.80501,636733.7184,0,21
+140541,36108.80452,634501.128,0,21
+140542,37204.86255,634591.6758,0,21
+140543,35008.41606,633240.9151,0,21
+140544,37751.29879,632518.6083,0,21
+140545,36108.80243,631164.6337,0,21
+140546,37204.86027,629882.9315,0,21
+140547,37204.85967,628974.4183,0,21
+140548,37204.85905,628042.2645,0,21
+140549,37204.85842,626721.7197,0,21
+140550,38296.68702,625643.4201,0,21
+140551,37204.85711,624426.8152,0,21
+140552,38296.68559,623461.0512,0,21
+140553,38296.68485,623459.6081,0,21
+140554,37751.29217,620883.2824,0,21
+140555,38296.68333,620323.7134,0,21
+140556,39384.37669,619828.4584,0,21
+140557,38296.68175,618287.8809,0,21
+140558,38296.68093,616654.6798,0,21
+140559,39384.3741,616613.2247,0,21
+140560,39384.3732,614658.6956,0,21
+140561,39384.37229,614780.4777,0,21
+140562,39384.37136,612127.5898,0,21
+140563,39384.37042,612233.4105,0,21
+140564,40468.01725,610365.296,0,21
+140565,39384.36848,610940.0541,0,21
+140566,40468.01517,607798.4591,0,21
+140567,40468.01411,608312.7812,0,21
+140568,40468.01303,605987.1148,0,21
+140569,40468.01193,606538.7905,0,21
+140570,41547.6964,603807.4204,0,21
+140571,40468.00969,604540.0729,0,21
+140572,41547.69401,601678.7453,0,21
+140573,41547.69279,602607.9173,0,21
+140574,41008.33904,599453.5205,0,21
+140575,42086.07229,600507.3293,0,21
+140576,41547.68903,598317.3855,0,21
+140577,42623.49068,598352.9819,0,21
+140578,41547.68646,595732.1626,0,21
+140579,42623.48793,596268.1063,0,21
+140580,42623.48653,595177.7711,0,21
+140581,43159.96361,593986.6108,0,21
+140582,42623.4961,593945.518,0,21
+140583,42623.498,594075.5004,0,21
+140584,43695.49657,593013.0272,0,21
+140585,43695.49854,593738.0468,0,21
+140586,42623.5036,592275.7303,0,21
+140587,44763.76471,593206.4335,0,21
+140588,43159.97704,591797.1157,0,21
+140589,44230.09998,592490.6489,0,21
+140590,44763.77073,592260.027,0,21
+140591,43695.51002,591983.1614,0,21
+140592,44763.77177,591061.9881,0,21
+140593,44763.77379,592167.1148,0,21
+140594,45063.00452,591273.5463,0,21
+140595,47345.81936,593396.8434,0,21
+140596,45753.78056,593207.7788,0,21
+140597,47345.82358,593872.6303,0,21
+140598,47345.82568,594280.6914,0,21
+140599,47731.91531,595226.7649,0,21
+140600,47731.91739,596714.644,0,21
+140601,49172.50198,596347.9046,0,21
+140602,48236.76085,597189.0588,0,21
+140603,49422.42198,598819.2813,0,21
+140604,49670.07189,598365.5114,0,21
+140605,49793.10105,600110.0333,0,21
+140606,51095.11279,600266.7973,0,21
+140607,50280.31071,602467.8207,0,21
+140608,51337.77107,601864.4706,0,21
+140609,50760.35629,603220.9658,0,21
+140610,52752.41443,603882.7965,0,21
+140611,52055.3862,605246.4022,0,21
+140612,52230.13177,605876.8086,0,21
+140613,53371.34514,606638.6793,0,21
+140614,52535.59552,607952.7194,0,21
+140615,53723.74483,609326.8039,0,21
+140616,54266.36644,608738.8671,0,21
+140617,54115.01528,611571.262,0,21
+140618,54007.26431,612320.5463,0,21
+140619,55314.39884,612099.5516,0,21
+140620,55438.0137,614521.2516,0,21
+140621,55569.43687,613959.1416,0,21
+140622,55585.67748,616029.4878,0,21
+140623,55839.10099,616973.1953,0,21
+140624,57008.46907,616991.7526,0,21
+140625,57016.47107,618794.5383,0,21
+140626,56107.0171,619812.4617,0,21
+140627,58440.73372,620131.4343,0,21
+140628,57396.8616,620325.4923,0,21
+140629,57541.27428,620496.6076,0,21
+140630,58697.84742,620469.5001,0,21
+140631,58713.46386,621729.0414,0,21
+140632,57925.17563,620877.1997,0,21
+140633,59994.18105,620897.1561,3072.485319,21
+140634,59207.94311,622280.1361,2069.822683,21
+140635,60152.31613,621261.1423,4064.170786,21
+140636,59445.71354,621870.795,3072.69371,21
+140637,60294.46501,621985.6889,4064.384374,21
+140638,60738.24336,621677.3636,4064.504874,21
+140639,60532.06362,623105.5526,4064.625363,21
+140640,60753.43632,621402.4568,6023.446479,21
+140641,0,364631.2691,0,21
+140642,0,364609.7479,0,21
+140643,0,364645.3845,0,21
+140644,0,364812.9978,0,21
+140645,0,365135.3549,0,21
+140646,0,365587.4551,0,21
+140647,0,366125.707,0,21
+140648,0,366710.3054,0,21
+140649,0,367311.1693,0,21
+140650,0,367909.5409,0,21
+140651,0,368492.4911,0,21
+140652,0,369053.369,0,21
+140653,0,369587.7389,0,21
+140654,0,370093.7756,0,21
+140655,0,370583.8112,0,21
+140656,0,371050.363,0,21
+140657,0,371486.8541,0,21
+140658,0,371894.0468,0,21
+140659,0,372273.9062,0,21
+140660,0,372629.5493,0,21
+140661,0,372962.3574,0,21
+140662,0,373273.955,0,21
+140663,0,373566.2182,0,21
+140664,0,373840.8323,0,21
+140665,0,374099.346,0,21
+140666,0,374344.0259,0,21
+140667,0,374575.7645,0,21
+140668,0,374795.5307,0,21
+140669,0,375004.5168,0,21
+140670,0,375203.7233,0,21
+140671,0,375398.3013,0,21
+140672,0,375586.6191,0,21
+140673,0,375768.0704,0,21
+140674,0,375943.1795,0,21
+140675,0,376112.679,0,21
+140676,0,376277.1431,0,21
+140677,0,376437.0254,0,21
+140678,0,376593.4852,0,21
+140679,0,376746.5062,0,21
+140680,0,376896.1832,0,21
+140681,0,377042.8707,0,21
+140682,0,377186.8222,0,21
+140683,0,377328.2289,0,21
+140684,0,377467.8615,0,21
+140685,0,377605.5609,0,21
+140686,0,377741.3063,0,21
+140687,0,377875.2866,0,21
+140688,0,378007.6088,0,21
+140689,0,378138.3514,0,21
+140690,0,378268.1301,0,21
+140691,0,378396.7367,0,21
+140692,0,378524.0814,0,21
+140693,0,378650.2869,0,21
+140694,0,378776.177,0,21
+140695,0,378899.4635,0,21
+140696,0,379023.7088,0,21
+140697,0,379146.4537,0,21
+140698,0,379234.0549,0,21
+140699,0,379344.8398,0,21
+140700,0,379463.6229,0,21
+140701,0,0,0,21
+140702,0,0,0,21
+140703,0,157.8665151,0,21
+140704,0,0,0,21
+140705,0,0,0,21
+140706,0,0,0,21
+140707,0,0,1545558.159,21
+140708,333730.668,0,0,21
+140709,0,0,0,21
+140710,0,0,0,21
+140711,0,0,0,21
+140712,0,0,0,21
+140713,0,0,0,21
+140714,0,0,0,21
+140715,0,0,0,21
+140716,0,0,0,21
+140717,0,0,0,21
+140718,0,0,0,21
+140719,0,0,0,21
+140720,0,0,0,21
+140721,0,0,0,21
+140722,0,0,0,21
+140723,0,0,0,21
+140724,0,0,0,21
+140725,0,0,0,21
+140726,0,0,0,21
+140727,0,0,0,21
+140728,0,0,0,21
+140729,0,0,0,21
+140730,0,0,0,21
+140731,0,0,0,21
+140732,0,0,0,21
+140733,0,368067.7479,0,21
+140734,0,0,0,21
+140735,0,0,0,21
+140736,0,0,0,21
+140737,0,0,0,21
+140738,0,0,0,21
+140739,0,0,0,21
+140740,0,0,0,21
+140741,0,0,0,21
+140742,0,0,0,21
+140743,0,0,1469694.22,21
+140744,0,0,0,21
+140745,0,0,0,21
+140746,335850.2918,0,0,21
+140747,0,0,0,21
+140748,0,0,0,21
+140749,0,0,0,21
+140750,0,0,0,21
+140751,0,0,0,21
+140752,0,0,0,21
+140753,0,0,0,21
+140754,0,0,0,21
+140755,0,0,0,21
+140756,0,0,0,21
+140757,0,0,0,21
+140758,0,0,0,21
+140759,0,0,0,21
+140760,0,0,0,21
+140761,0,0,0,21
+140762,0,0,0,21
+140763,0,0,0,21
+140764,0,0,0,21
+140765,0,0,0,21
+140766,0,0,0,21
+140767,0,0,0,21
+140768,0,0,0,21
+140769,0,0,0,21
+140770,0,0,0,21
+140771,0,0,0,21
+140772,0,0,0,21
+140773,0,0,0,21
+140774,0,0,0,21
+140775,0,0,0,21
+140776,0,0,0,21
+140777,0,0,0,21
+140778,0,0,0,21
+140779,0,0,0,21
+140780,0,0,1400407.948,21
+140781,0,368073.4425,0,21
+140782,0,0,0,21
+140783,0,0,0,21
+140784,337099.8031,0,0,21
+140785,0,0,0,21
+140786,0,0,0,21
+140787,0,0,0,21
+140788,0,0,0,21
+140789,0,0,0,21
+140790,0,0,0,21
+140791,0,0,0,21
+140792,0,0,0,21
+140793,0,0,0,21
+140794,0,0,0,21
+140795,0,0,0,21
+140796,0,0,0,21
+140797,0,0,0,21
+140798,0,0,0,21
+140799,0,3.731736442,0,21
+140800,0,0,0,21
+140801,0,0,0,21
+140802,0,195.6006947,0,21
+140803,0,0,0,21
+140804,0,0,0,21
+140805,0,0,0,21
+140806,0,0,0,21
+140807,0,0,0,21
+140808,0,0,0,21
+140809,0,0,0,21
+140810,0,0,0,21
+140811,0,0,0,21
+140812,0,0,0,21
+140813,0,0,0,21
+140814,0,0,0,21
+140815,0,0,0,21
+140816,0,0,0,21
+140817,0,0,1337715.724,21
+140818,0,0,0,21
+140819,0,2.541460797,0,21
+140820,0,0,0,21
+140821,0,0,0,21
+140822,337628.3145,0,0,21
+140823,0,0,0,21
+140824,0,0,0,21
+140825,0,2.632641705,0,21
+140826,0,76454.64745,0,21
+140827,0,0,0,21
+140828,0,0,0,21
+140829,0,368069.0025,0,21
+140830,0,0,0,21
+140831,0,0,0,21
+140832,0,0,0,21
+140833,0,0,0,21
+140834,0,0,0,21
+140835,0,0,0,21
+140836,0,0,0,21
+140837,0,0,0,21
+140838,0,0,0,21
+140839,0,76420.91642,0,21
+140840,0,0,0,21
+140841,0,0,0,21
+140842,0,0,0,21
+140843,0,0,0,21
+140844,0,0,0,21
+140845,0,0,0,21
+140846,0,0,0,21
+140847,0,0,0,21
+140848,0,0,0,21
+140849,0,0,0,21
+140850,0,0,0,21
+140851,0,0,0,21
+140852,0,0,0,21
+140853,0,0,0,21
+140854,0,0,1280510.472,21
+140855,0,0,0,21
+140856,0,0,0,21
+140857,0,0,0,21
+140858,0,0,0,21
+140859,0,0,0,21
+140860,337880.9387,0,0,21
+140861,0,0,0,21
+140862,0,0,0,21
+140863,0,0,0,21
+140864,0,0,0,21
+140865,0,0,0,21
+140866,0,0,0,21
+140867,0,0,0,21
+140868,0,0,0,21
+140869,0,0,0,21
+140870,0,0,0,21
+140871,0,0,0,21
+140872,0,0,0,21
+140873,0,0,0,21
+140874,0,0,0,21
+140875,0,0,0,21
+140876,0,0,0,21
+140877,0,368184.7423,0,21
+140878,0,0,0,21
+140879,0,0,0,21
+140880,0,0,0,21
+140881,0,0,0,21
+140882,0,2.825842691,0,21
+140883,0,0,0,21
+140884,0,0,0,21
+140885,0,186.0028832,0,21
+140886,0,0,0,21
+140887,0,0,0,21
+140888,0,0,0,21
+140889,0,0,0,21
+140890,0,0,0,21
+140891,0,0,1228530.907,21
+140892,0,0,0,21
+140893,0,0,0,21
+140894,0,0,0,21
+140895,0,0,0,21
+140896,0,0,0,21
+140897,0,0,0,21
+140898,337948.9271,0,0,21
+140899,0,0,0,21
+140900,0,0,0,21
+140901,0,0,0,21
+140902,0,0,0,21
+140903,0,0,0,21
+140904,0,0,0,21
+140905,0,0,0,21
+140906,0,0,0,21
+140907,0,0,0,21
+140908,0,0,0,21
+140909,0,0,0,21
+140910,0,0,0,21
+140911,0,0,0,21
+140912,0,0,0,21
+140913,0,0,0,21
+140914,0,0,0,21
+140915,0,0,0,21
+140916,0,0,0,21
+140917,0,0,0,21
+140918,0,0,0,21
+140919,0,0,0,21
+140920,0,0,0,21
+140921,0,0,0,21
+140922,0,0,0,21
+140923,0,0,0,21
+140924,0,0,0,21
+140925,0,368012.5509,0,21
+140926,0,0,0,21
+140927,0,0,0,21
+140928,0,0,1180465.872,21
+140929,0,0,0,21
+140930,0,0,0,21
+140931,0,0,0,21
+140932,0,0,0,21
+140933,0,25550.26802,0,21
+140934,0,0,0,21
+140935,0,2066.29821,0,21
+140936,337882.4195,4460.60467,0,21
+140937,0,7241.017966,0,21
+140938,0,4648.688173,0,21
+140939,0,5376.402825,0,21
+140940,0,5430.099403,0,21
+140941,0,5491.860842,0,21
+140942,0,5550.641357,0,21
+140943,0,5619.725402,0,21
+140944,0,5696.519298,0,21
+140945,0,5791.268171,0,21
+140946,0,5854.111514,0,21
+140947,0,5947.898047,0,21
+140948,0,6010.106553,0,21
+140949,0,6089.96803,0,21
+140950,0,6177.458551,0,21
+140951,0,6230.677629,0,21
+140952,0,6360.634276,0,21
+140953,0,6395.67255,0,21
+140954,0,6473.473951,0,21
+140955,0,6584.264547,0,21
+140956,0,6610.640714,0,21
+140957,0,6754.689064,0,21
+140958,0,6779.760199,0,21
+140959,0,6906.187277,0,21
+140960,0,6931.106558,0,21
+140961,0,7047.605043,0,21
+140962,0,7122.082874,0,21
+140963,0,0,0,21
+140964,0,0,0,21
+140965,0,0,1136592.361,21
+140966,0,0,0,21
+140967,0,0,0,21
+140968,0,33964.39696,0,21
+140969,0,0,0,21
+140970,0,1401.531383,0,21
+140971,0,12548.63525,0,21
+140972,0,7204.334243,0,21
+140973,0,375962.4973,0,21
+140974,338011.9326,8104.226688,0,21
+140975,0,8173.515435,0,21
+140976,0,8280.89073,0,21
+140977,0,8311.055441,0,21
+140978,0,8443.309193,0,21
+140979,0,8606.339564,0,21
+140980,0,9518.094575,0,21
+140981,0,9209.754925,0,21
+140982,0,9577.44013,0,21
+140983,0,9705.785913,0,21
+140984,0,9816.006503,0,21
+140985,0,10041.90452,0,21
+140986,0,10154.92671,0,21
+140987,0,10332.04125,0,21
+140988,0,10482.3707,0,21
+140989,0,10657.01291,0,21
+140990,0,10808.34308,0,21
+140991,0,10977.31073,0,21
+140992,0,11104.60654,0,21
+140993,0,11296.61951,0,21
+140994,0,11440.47009,0,21
+140995,0,11586.77218,0,21
+140996,0,11753.7372,0,21
+140997,0,11894.76325,0,21
+140998,0,0,0,21
+140999,0,0,0,21
+141000,0,0,0,15.6
+141001,0,37127.12711,0,15.6
+141002,0,3422.41679,1096568.894,15.6
+141003,0,10864.08915,0,15.6
+141004,0,14836.30143,0,15.6
+141005,0,12386.37245,0,15.6
+141006,0,12754.25772,0,15.6
+141007,0,12844.17208,0,15.6
+141008,0,12867.2852,0,15.6
+141009,0,12910.34228,0,15.6
+141010,0,13001.68293,0,15.6
+141011,0,13022.66909,0,15.6
+141012,338086.4023,13067.11523,0,15.6
+141013,0,13156.21453,0,15.6
+141014,0,13153.17686,0,15.6
+141015,0,13246.52065,0,15.6
+141016,0,13264.27659,0,15.6
+141017,0,13311.12301,0,15.6
+141018,0,13396.26347,0,15.6
+141019,0,13421.51949,0,15.6
+141020,0,13513.87615,0,15.6
+141021,0,381579.0342,0,15.6
+141022,0,13636.02075,0,15.6
+141023,0,13678.2973,0,15.6
+141024,0,13698.91185,0,15.6
+141025,0,13808.10442,0,15.6
+141026,0,13789.8906,0,15.6
+141027,0,13870.50865,0,15.6
+141028,0,13903.22549,0,15.6
+141029,0,13978.74952,0,15.6
+141030,0,14029.25044,0,15.6
+141031,0,0,0,15.6
+141032,0,0,0,15.6
+141033,0,0,0,15.6
+141034,0,45100.95571,0,15.6
+141035,0,4066.610205,0,15.6
+141036,0,11314.7513,0,15.6
+141037,0,17335.40239,0,15.6
+141038,0,13992.97985,0,15.6
+141039,0,14360.9933,1060030.731,15.6
+141040,0,14450.75264,0,15.6
+141041,0,14891.66128,0,15.6
+141042,0,14918.03167,0,15.6
+141043,0,14934.48764,0,15.6
+141044,0,15026.54307,0,15.6
+141045,0,15144.75242,0,15.6
+141046,0,15159.02685,0,15.6
+141047,0,15257.94576,0,15.6
+141048,0,15307.58907,0,15.6
+141049,0,15412.9775,0,15.6
+141050,0,15439.47449,0,15.6
+141051,338042.3953,15519.85991,0,15.6
+141052,0,15576.88199,0,15.6
+141053,0,15670.17424,0,15.6
+141054,0,15701.91816,0,15.6
+141055,0,15763.05817,0,15.6
+141056,0,15830.82232,0,15.6
+141057,0,15911.40973,0,15.6
+141058,0,15966.81624,0,15.6
+141059,0,15999.06494,0,15.6
+141060,0,16070.24403,0,15.6
+141061,0,16209.12556,0,15.6
+141062,0,16259.96767,0,15.6
+141063,0,16394.68479,0,15.6
+141064,0,0,0,15.6
+141065,0,0,0,15.6
+141066,0,0,0,15.6
+141067,0,51179.55579,0,15.6
+141068,0,372931.0016,0,15.6
+141069,0,14071.5877,0,15.6
+141070,0,20401.45062,0,15.6
+141071,0,16818.53854,0,15.6
+141072,0,17327.08421,0,15.6
+141073,0,17457.20307,0,15.6
+141074,0,17566.4465,0,15.6
+141075,0,17623.94378,0,15.6
+141076,0,17766.84595,1026670.04,15.6
+141077,0,17811.65267,0,15.6
+141078,0,17999.93817,0,15.6
+141079,0,18029.17718,0,15.6
+141080,0,18103.43988,0,15.6
+141081,0,18203.57801,0,15.6
+141082,0,18296.72495,0,15.6
+141083,0,18404.15843,0,15.6
+141084,0,18450.45272,0,15.6
+141085,0,18595.75047,0,15.6
+141086,0,18613.13453,0,15.6
+141087,0,18770.15742,0,15.6
+141088,0,18854.04644,0,15.6
+141089,0,18895.09208,0,15.6
+141090,338092.6995,19045.97915,0,15.6
+141091,0,19064.98598,0,15.6
+141092,0,19219.80639,0,15.6
+141093,0,19255.72713,0,15.6
+141094,0,19374.07371,0,15.6
+141095,0,19478.11199,0,15.6
+141096,0,19513.5306,0,15.6
+141097,0,0,0,15.6
+141098,0,0,0,15.6
+141099,0,0,0,15.6
+141100,0,62207.52522,0,15.6
+141101,0,295209.1989,0,15.6
+141102,0,12254.35744,0,15.6
+141103,0,31038.19757,0,15.6
+141104,0,75869.81669,0,15.6
+141105,0,90180.53269,0,15.6
+141106,0,67539.26418,0,15.6
+141107,0,73891.84225,0,15.6
+141108,0,74716.67007,0,15.6
+141109,0,74722.74274,0,15.6
+141110,0,75023.1733,0,15.6
+141111,0,75619.51558,0,15.6
+141112,0,75569.4501,0,15.6
+141113,0,76278.64932,996204.4061,15.6
+141114,0,76372.67862,0,15.6
+141115,0,444875.2955,0,15.6
+141116,0,77078.17268,0,15.6
+141117,0,77776.75104,0,15.6
+141118,0,77854.2735,0,15.6
+141119,0,78264.27593,0,15.6
+141120,0,79024.74181,0,15.6
+141121,0,78505.13996,0,15.6
+141122,0,156130.7438,0,15.6
+141123,0,78877.40141,0,15.6
+141124,0,79293.68882,0,15.6
+141125,0,79143.69327,0,15.6
+141126,0,79319.25467,0,15.6
+141127,0,79347.3428,0,15.6
+141128,0,79703.29178,0,15.6
+141129,340430.1139,79372.90616,0,15.6
+141130,0,58304.23039,0,15.6
+141131,0,0,0,15.6
+141132,0,0,0,15.6
+141133,0,71232.16656,0,15.6
+141134,0,12105.86243,0,15.6
+141135,0,11280.6343,0,15.6
+141136,0,29034.90342,0,15.6
+141137,0,20962.38771,0,15.6
+141138,0,21952.48608,0,15.6
+141139,0,21975.9646,0,15.6
+141140,0,326257.1901,0,15.6
+141141,0,22047.11924,0,15.6
+141142,0,23373.30223,0,15.6
+141143,0,108382.5347,0,15.6
+141144,0,85617.98607,0,15.6
+141145,0,78317.21491,0,15.6
+141146,0,81822.17848,0,15.6
+141147,0,81854.6415,0,15.6
+141148,0,81829.43037,0,15.6
+141149,0,81862.48957,0,15.6
+141150,0,81859.66301,968387.2542,15.6
+141151,0,81842.3876,0,15.6
+141152,0,81956.59403,0,15.6
+141153,0,81686.31118,0,15.6
+141154,0,82085.90558,0,15.6
+141155,0,81900.0029,0,15.6
+141156,0,85781.53839,0,15.6
+141157,0,83975.32111,0,15.6
+141158,0,84969.0739,0,15.6
+141159,0,85048.79068,0,15.6
+141160,0,85833.93647,0,15.6
+141161,0,453541.7657,0,15.6
+141162,0,86545.86223,0,15.6
+141163,0,64129.89965,0,15.6
+141164,0,64725.9679,0,15.6
+141165,0,64810.06668,0,15.6
+141166,0,138845.675,0,15.6
+141167,0,77473.62764,0,15.6
+141168,340421.7141,76415.3919,0,15.6
+141169,0,95855.82135,0,15.6
+141170,0,21265.29377,0,15.6
+141171,0,22201.73669,0,15.6
+141172,0,22303.23947,0,15.6
+141173,0,22201.73079,0,15.6
+141174,0,22297.65094,0,15.6
+141175,0,22277.36302,0,15.6
+141176,0,22238.8547,0,15.6
+141177,0,22289.65165,0,15.6
+141178,0,331815.0511,0,15.6
+141179,0,22296.21269,0,15.6
+141180,0,22243.14421,0,15.6
+141181,0,114525.5093,0,15.6
+141182,0,85431.45639,0,15.6
+141183,0,84314.58252,0,15.6
+141184,0,96500.09843,0,15.6
+141185,0,90908.61005,0,15.6
+141186,0,93059.02288,0,15.6
+141187,0,94091.26317,943006.8556,15.6
+141188,0,94492.09409,0,15.6
+141189,0,94957.37411,0,15.6
+141190,0,95300.68429,0,15.6
+141191,0,95853.77708,0,15.6
+141192,0,96525.10042,0,15.6
+141193,0,96947.13279,0,15.6
+141194,0,97459.10887,0,15.6
+141195,0,97758.92126,0,15.6
+141196,0,75598.32014,0,15.6
+141197,0,75741.8706,0,15.6
+141198,0,76479.56138,0,15.6
+141199,0,155361.7758,0,15.6
+141200,0,89870.02543,0,15.6
+141201,0,88080.19072,0,15.6
+141202,0,109975.1332,0,15.6
+141203,0,100701.1469,0,15.6
+141204,0,102652.7351,0,15.6
+141205,0,102865.2087,0,15.6
+141206,0,103460.3795,0,15.6
+141207,340410.2374,472066.0053,0,15.6
+141208,0,23657.69974,0,15.6
+141209,0,23706.74332,0,15.6
+141210,0,23743.91519,0,15.6
+141211,0,23769.00105,0,15.6
+141212,0,23870.93271,0,15.6
+141213,0,23854.99958,0,15.6
+141214,0,340175.1072,0,15.6
+141215,0,23995.12684,0,15.6
+141216,0,47680.55067,0,15.6
+141217,0,157338.2555,0,15.6
+141218,0,99963.1238,0,15.6
+141219,0,108792.9855,0,15.6
+141220,0,110143.7914,0,15.6
+141221,0,110676.3243,0,15.6
+141222,0,110892.3218,0,15.6
+141223,0,111410.8204,0,15.6
+141224,0,111581.6838,919838.0035,15.6
+141225,0,112475.3718,0,15.6
+141226,0,112536.4668,0,15.6
+141227,0,112903.55,0,15.6
+141228,0,113702.5475,0,15.6
+141229,0,89067.66756,0,15.6
+141230,0,89698.19562,0,15.6
+141231,0,90086.55888,0,15.6
+141232,0,176082.6628,0,15.6
+141233,0,105986.5487,0,15.6
+141234,0,100229.8999,0,15.6
+141235,0,126259.1098,0,15.6
+141236,0,117320.3813,0,15.6
+141237,0,118497.6779,0,15.6
+141238,0,119214.9698,0,15.6
+141239,0,120061.1307,0,15.6
+141240,0,120655.8379,0,15.6
+141241,0,121264.2541,0,15.6
+141242,0,121352.4924,0,15.6
+141243,0,122036.0554,0,15.6
+141244,0,25345.67136,0,15.6
+141245,0,25228.931,0,15.6
+141246,340373.8855,25346.82726,0,15.6
+141247,0,25328.53096,0,15.6
+141248,0,25350.78748,0,15.6
+141249,0,358968.8244,0,15.6
+141250,0,53111.08742,0,15.6
+141251,0,63133.00716,0,15.6
+141252,0,166910.3773,0,15.6
+141253,0,481272.2136,0,15.6
+141254,0,121790.5904,0,15.6
+141255,0,127005.1618,0,15.6
+141256,0,126563.4524,0,15.6
+141257,0,126424.6537,0,15.6
+141258,0,127176.4795,0,15.6
+141259,0,127177.9886,0,15.6
+141260,0,127818.1085,0,15.6
+141261,0,128117.456,0,15.6
+141262,0,102535.0281,898682.7543,15.6
+141263,0,103344.4352,0,15.6
+141264,0,176686.9034,0,15.6
+141265,0,111526.9574,0,15.6
+141266,0,128654.1291,0,15.6
+141267,0,132514.972,0,15.6
+141268,0,130066.1898,0,15.6
+141269,0,130694.5766,0,15.6
+141270,0,130726.1576,0,15.6
+141271,0,131158.6408,0,15.6
+141272,0,131416.7286,0,15.6
+141273,0,131844.1686,0,15.6
+141274,0,132269.7457,0,15.6
+141275,0,132030.7688,0,15.6
+141276,0,132831.436,0,15.6
+141277,0,132846.4296,0,15.6
+141278,0,133078.2939,0,15.6
+141279,0,25958.60203,0,15.6
+141280,0,25807.72351,0,15.6
+141281,0,25906.59136,0,15.6
+141282,0,25911.12675,0,15.6
+141283,0,25906.58622,0,15.6
+141284,0,396382.7428,0,15.6
+141285,340373.6671,42460.63329,0,15.6
+141286,0,78638.33628,0,15.6
+141287,0,177181.7336,0,15.6
+141288,0,130755.2362,0,15.6
+141289,0,135166.6098,0,15.6
+141290,0,136432.3003,0,15.6
+141291,0,136658.0309,0,15.6
+141292,0,136864.1499,0,15.6
+141293,0,137622.463,0,15.6
+141294,0,111074.8307,0,15.6
+141295,0,111738.2039,0,15.6
+141296,0,186669.7246,0,15.6
+141297,0,120086.7924,0,15.6
+141298,0,504756.4986,879361.9221,15.6
+141299,0,141785.5051,0,15.6
+141300,0,138214.3118,0,15.6
+141301,0,139472.9396,0,15.6
+141302,0,139605.3926,0,15.6
+141303,0,140098.4794,0,15.6
+141304,0,140573.8249,0,15.6
+141305,0,140937.2674,0,15.6
+141306,0,142003.6052,0,15.6
+141307,0,141403.9298,0,15.6
+141308,0,143153.7117,0,15.6
+141309,0,142511.6495,0,15.6
+141310,0,143087.8848,0,15.6
+141311,0,144103.6289,0,15.6
+141312,0,143910.1178,0,15.6
+141313,0,144846.2494,0,15.6
+141314,0,26671.34774,0,15.6
+141315,0,26747.3207,0,15.6
+141316,0,26780.65248,0,15.6
+141317,0,26789.73703,0,15.6
+141318,0,26814.73097,0,15.6
+141319,0,437943.077,0,15.6
+141320,0,32100.03294,0,15.6
+141321,0,119739.307,0,15.6
+141322,340374.6521,183114.4117,0,15.6
+141323,0,142325.0366,0,15.6
+141324,0,149117.2036,0,15.6
+141325,0,149335.2878,0,15.6
+141326,0,123078.5918,0,15.6
+141327,0,123318.308,0,15.6
+141328,0,201159.8308,0,15.6
+141329,0,133657.8664,0,15.6
+141330,0,148882.4598,0,15.6
+141331,0,155277.4144,0,15.6
+141332,0,151891.6983,0,15.6
+141333,0,152544.5796,877166.0691,15.6
+141334,0,152990.8338,0,15.6
+141335,0,153259.4166,0,15.6
+141336,0,153710.0516,0,15.6
+141337,0,154196.8934,0,15.6
+141338,0,522612.7615,0,15.6
+141339,0,154621.507,0,15.6
+141340,0,155641.5183,0,15.6
+141341,0,155330.3584,0,15.6
+141342,0,156412.0409,0,15.6
+141343,0,156443.0887,0,15.6
+141344,0,156699.3597,0,15.6
+141345,0,157651.9971,0,15.6
+141346,0,157240.5235,0,15.6
+141347,0,158204.2695,0,15.6
+141348,0,158446.3924,0,15.6
+141349,0,27849.63048,0,15.6
+141350,0,27882.02169,0,15.6
+141351,0,27935.59481,0,15.6
+141352,0,27935.59243,0,15.6
+141353,0,457745.6632,0,15.6
+141354,0,47331.75257,0,15.6
+141355,0,134349.0219,0,15.6
+141356,0,194358.6085,0,15.6
+141357,0,157219.6927,0,15.6
+141358,340375.6157,133809.3791,0,15.6
+141359,0,135029.8102,0,15.6
+141360,0,215997.5195,0,17.8
+141361,0,146739.7168,0,17.8
+141362,0,161286.8197,0,17.8
+141363,0,168669.2092,0,17.8
+141364,0,166006.8631,0,17.8
+141365,0,166245.4077,0,17.8
+141366,0,167464.6491,0,17.8
+141367,0,167884.0529,0,17.8
+141368,0,168784.612,859344.9193,17.8
+141369,0,169425.3897,0,17.8
+141370,0,170094.2007,0,17.8
+141371,0,170803.3762,0,17.8
+141372,0,171214.5936,0,17.8
+141373,0,172619.1458,0,17.8
+141374,0,172753.052,0,17.8
+141375,0,541501.1402,0,17.8
+141376,0,174492.4685,0,17.8
+141377,0,174849.4007,0,17.8
+141378,0,175527.6947,0,17.8
+141379,0,176784.3957,0,17.8
+141380,0,176723.555,0,17.8
+141381,0,178439.7379,0,17.8
+141382,0,177943.3381,0,17.8
+141383,0,29831.36846,0,17.8
+141384,0,29950.08768,0,17.8
+141385,0,30044.97569,0,17.8
+141386,0,30052.17279,0,17.8
+141387,0,550415.6207,0,17.8
+141388,0,73409.92599,0,17.8
+141389,0,125521.0481,0,17.8
+141390,0,203587.6406,0,17.8
+141391,0,147316.6381,0,17.8
+141392,0,243627.2913,0,17.8
+141393,0,170916.3986,0,17.8
+141394,340349.5451,181292.9419,0,17.8
+141395,0,193013.2532,0,17.8
+141396,0,188401.5526,0,17.8
+141397,0,188912.8115,0,17.8
+141398,0,190007.2391,0,17.8
+141399,0,191104.4867,0,17.8
+141400,0,190721.1276,0,17.8
+141401,0,192201.2239,0,17.8
+141402,0,192912.6514,0,17.8
+141403,0,192970.6699,843056.0407,17.8
+141404,0,194418.6794,0,17.8
+141405,0,194331.9601,0,17.8
+141406,0,195514.8737,0,17.8
+141407,0,196348.1502,0,17.8
+141408,0,196147.4515,0,17.8
+141409,0,197793.0102,0,17.8
+141410,0,197928.7247,0,17.8
+141411,0,199032.8769,0,17.8
+141412,0,567072.7703,0,17.8
+141413,0,200432.9128,0,17.8
+141414,0,200824.8668,0,17.8
+141415,0,201342.8895,0,17.8
+141416,0,202305.237,0,17.8
+141417,0,32359.49938,0,17.8
+141418,0,32304.36517,0,17.8
+141419,0,32446.9712,0,17.8
+141420,0,585348.3729,0,20
+141421,0,69374.98646,0,20
+141422,0,136789.8898,0,20
+141423,0,212247.7288,0,20
+141424,0,262667.8803,0,20
+141425,0,192785.0224,0,20
+141426,0,201544.4009,0,20
+141427,0,215455.2755,0,20
+141428,0,209974.6068,0,20
+141429,0,211965.4169,0,20
+141430,0,212678.6656,0,20
+141431,0,213525.066,0,20
+141432,0,214895.6202,0,20
+141433,340328.8096,215467.2794,0,20
+141434,0,216712.5192,0,20
+141435,0,217204.573,0,20
+141436,0,218728.2625,0,20
+141437,0,219314.3092,0,20
+141438,0,220562.511,0,20
+141439,0,221564.1531,0,20
+141440,0,222518.0009,0,20
+141441,0,223282.7728,828242.1517,20
+141442,0,224419.9852,0,20
+141443,0,225351.6823,0,20
+141444,0,226437.7247,0,20
+141445,0,227254.0733,0,20
+141446,0,228212.4717,0,20
+141447,0,229833.228,0,20
+141448,0,229687.3964,0,20
+141449,0,231525.3412,0,20
+141450,0,35503.68514,0,20
+141451,0,35614.431,0,20
+141452,0,35620.4693,0,20
+141453,0,693376.588,0,20
+141454,0,77659.31196,0,20
+141455,0,125540.1044,0,20
+141456,0,731439.9151,0,20
+141457,0,218078.2917,0,20
+141458,0,232918.5167,0,20
+141459,0,246563.9161,14881.90718,20
+141460,0,242053.3605,14962.20679,20
+141461,0,243690.0608,15039.60304,20
+141462,0,244279.4768,15113.33805,20
+141463,0,245350.531,15183.75264,20
+141464,0,246375.2736,15251.0798,20
+141465,0,247137.1675,15315.6213,20
+141466,0,248507.8629,15377.55553,20
+141467,0,248981.5083,15437.22391,20
+141468,0,250251.4078,15494.78187,20
+141469,0,250824.5424,15550.47534,20
+141470,0,245870.0877,15604.51244,20
+141471,0,244846.1143,15657.10554,20
+141472,340327.9068,244294.6195,15708.33627,20
+141473,0,245780.6148,15758.48216,20
+141474,0,244771.9687,15807.58434,20
+141475,0,245366.5389,0,20
+141476,0,245994.799,0,20
+141477,0,245910.7731,0,20
+141478,0,245818.283,0,20
+141479,0,246718.9076,794859.2109,20
+141480,0,246151.9867,0,21
+141481,0,245896.7862,0,21
+141482,0,244851.9921,0,21
+141483,0,37153.89116,0,21
+141484,0,37064.59382,0,21
+141485,0,37033.08777,0,21
+141486,0,666095.2333,0,21
+141487,0,110528.1979,0,21
+141488,0,206667.2208,0,21
+141489,0,294324.2116,0,21
+141490,0,222958.081,0,21
+141491,0,243091.8093,0,21
+141492,0,237038.3373,0,21
+141493,0,237007.1207,0,21
+141494,0,235467.6516,0,21
+141495,0,234946.3122,0,21
+141496,0,233956.2092,0,21
+141497,0,232851.017,0,21
+141498,0,232315.9481,0,21
+141499,0,230974.8742,0,21
+141500,0,598270.1351,0,21
+141501,0,229104.3649,0,21
+141502,0,228507.4943,0,21
+141503,0,227539.8955,0,21
+141504,0,226428.6613,0,21
+141505,0,225198.1508,0,21
+141506,0,224699.0281,0,21
+141507,0,223352.8746,0,21
+141508,0,223182.4577,0,21
+141509,0,221075.5863,0,21
+141510,0,221265.187,0,21
+141511,340327.6048,219220.7827,0,21
+141512,0,218758.7959,0,21
+141513,0,217669.6758,0,21
+141514,0,216574.8381,0,21
+141515,0,215248.5644,784148.8846,21
+141516,0,34697.14196,0,21
+141517,0,34590.13607,0,21
+141518,0,0,0,21
+141519,0,536941.9616,0,21
+141520,0,197371.925,0,21
+141521,0,125442.3831,0,21
+141522,0,250153.6942,0,21
+141523,0,207155.6561,0,21
+141524,0,206574.8345,0,21
+141525,0,205742.9915,0,21
+141526,0,204966.9211,0,21
+141527,0,203893.6613,0,21
+141528,0,202759.6847,0,21
+141529,0,201987.4888,0,21
+141530,0,200906.0584,0,21
+141531,0,199866.7635,0,21
+141532,0,198906.0575,0,21
+141533,0,197755.0426,0,21
+141534,0,196993.0333,0,21
+141535,0,195731.5077,0,21
+141536,0,195014.8824,0,21
+141537,0,193883.6093,0,21
+141538,0,192731.0916,0,21
+141539,0,191903.2127,0,21
+141540,0,191036.6305,0,21
+141541,0,189479.9059,0,21
+141542,0,188512.9916,0,21
+141543,0,187342.6306,0,21
+141544,0,554631.0357,0,21
+141545,0,185699.5979,0,21
+141546,0,184405.7265,0,21
+141547,0,183809.3876,0,21
+141548,340327.0289,182599.065,0,21
+141549,0,31142.30076,0,21
+141550,0,0,0,21
+141551,0,0,774399.4238,21
+141552,0,563571.3075,0,21
+141553,0,83146.60189,0,21
+141554,0,116382.2126,0,21
+141555,0,220598.9409,0,21
+141556,0,169473.5687,0,21
+141557,0,173293.9734,0,21
+141558,0,172230.7126,0,21
+141559,0,171468.1387,0,21
+141560,0,169858.095,0,21
+141561,0,169423.8211,0,21
+141562,0,167264.6233,0,21
+141563,0,167054.9069,0,21
+141564,0,165652.3507,0,21
+141565,0,164470.2149,0,21
+141566,0,163264.9585,0,21
+141567,0,162211.1892,0,21
+141568,0,161249.1278,0,21
+141569,0,159953.0301,0,21
+141570,0,158635.2061,0,21
+141571,0,158163.4824,0,21
+141572,0,156638.5026,0,21
+141573,0,155723.0811,0,21
+141574,0,154350.2039,0,21
+141575,0,154023.5463,0,21
+141576,0,152094.715,0,21
+141577,0,151683.1417,0,21
+141578,0,150211.7904,0,21
+141579,0,149666.7407,0,21
+141580,0,148057.1292,0,21
+141581,0,147514.7137,0,21
+141582,0,0,0,21
+141583,0,0,0,21
+141584,0,68637.71518,0,21
+141585,340323.9573,14793.1277,0,21
+141586,0,434260.1333,0,21
+141587,0,52640.42761,753295.511,21
+141588,0,474641.9464,0,21
+141589,0,172927.4346,0,21
+141590,0,134741.738,0,21
+141591,0,138544.0944,0,21
+141592,0,137227.1452,0,21
+141593,0,136125.8459,0,21
+141594,0,135737.0654,0,21
+141595,0,134330.0742,0,21
+141596,0,133274.5188,0,21
+141597,0,132650.9764,0,21
+141598,0,131478.933,0,21
+141599,0,130686.7323,0,21
+141600,0,129181.5184,0,21
+141601,0,129509.1454,0,21
+141602,0,128753.7898,0,21
+141603,0,128720.1314,0,21
+141604,0,128052.285,0,21
+141605,0,127624.1782,0,21
+141606,0,127191.3637,0,21
+141607,0,127112.2226,0,21
+141608,0,126380.3166,0,21
+141609,0,126061.8681,0,21
+141610,0,125660.7793,0,21
+141611,0,125181.8758,0,21
+141612,0,124699.1048,0,21
+141613,0,124175.8092,0,21
+141614,0,101467.5961,0,21
+141615,0,101035.9314,0,21
+141616,0,63164.89598,0,21
+141617,0,9858.996258,0,21
+141618,0,18983.03833,0,21
+141619,0,25255.48393,0,21
+141620,0,21747.84328,0,21
+141621,0,369505.4399,0,21
+141622,336786.0782,27004.10693,0,21
+141623,0,100832.5156,746646.5946,21
+141624,0,143080.9794,0,21
+141625,0,114362.9032,0,21
+141626,0,117051.6883,0,21
+141627,0,116297.5064,0,21
+141628,0,483329.2093,0,21
+141629,0,114891.2152,0,21
+141630,0,113634.2368,0,21
+141631,0,113313.5778,0,21
+141632,0,111942.1911,0,21
+141633,0,111893.1043,0,21
+141634,0,109924.8147,0,21
+141635,0,109850.0316,0,21
+141636,0,108546.1251,0,21
+141637,0,107717.8666,0,21
+141638,0,106640.9156,0,21
+141639,0,105991.1561,0,21
+141640,0,105190.6533,0,21
+141641,0,103709.8366,0,21
+141642,0,102739.2758,0,21
+141643,0,101943.0412,0,21
+141644,0,100701.2347,0,21
+141645,0,99743.18828,0,21
+141646,0,78407.86489,0,21
+141647,0,77860.91453,0,21
+141648,0,76689.84473,0,21
+141649,0,141760.3198,0,21
+141650,0,88517.81391,0,21
+141651,0,5719.926136,0,21
+141652,0,27533.26152,0,21
+141653,0,18311.91134,0,21
+141654,0,19156.63878,0,21
+141655,0,19064.62384,0,21
+141656,0,18970.09659,0,21
+141657,0,228279.7879,0,21
+141658,0,30436.62461,0,21
+141659,337103.3675,46959.60687,740569.0204,21
+141660,0,108617.0568,0,21
+141661,0,75315.75284,0,21
+141662,0,76272.40195,0,21
+141663,0,74228.98327,0,21
+141664,0,72594.193,0,21
+141665,0,69751.23085,0,21
+141666,0,67585.07205,0,21
+141667,0,64944.47497,0,21
+141668,0,430772.4906,0,21
+141669,0,61579.63033,0,21
+141670,0,60630.95701,0,21
+141671,0,59458.89754,0,21
+141672,0,58587.05282,0,21
+141673,0,57353.78874,0,21
+141674,0,56732.68359,0,21
+141675,0,55497.69593,0,21
+141676,0,54586.27207,0,21
+141677,0,53526.44315,0,21
+141678,0,52457.15265,0,21
+141679,0,37687.31959,0,21
+141680,0,36818.20786,0,21
+141681,0,36134.68641,0,21
+141682,0,75325.94006,0,21
+141683,0,40430.77418,0,21
+141684,0,43882.59001,0,21
+141685,0,48011.62875,0,21
+141686,0,44475.85136,0,21
+141687,0,11970.32898,0,21
+141688,0,11762.67364,0,21
+141689,0,11501.58519,0,21
+141690,0,11242.39108,0,21
+141691,0,10976.43661,0,21
+141692,0,10756.91507,0,21
+141693,0,10499.02212,0,21
+141694,0,10235.79235,0,21
+141695,0,10008.51146,735015.3488,21
+141696,337259.7869,9711.990102,0,21
+141697,0,9490.456269,0,21
+141698,0,9277.463687,0,21
+141699,0,8977.378103,0,21
+141700,0,8730.253725,0,21
+141701,0,8511.517914,0,21
+141702,0,8297.101842,0,21
+141703,0,8270.754881,0,21
+141704,0,8150.808472,0,21
+141705,0,8056.65266,0,21
+141706,0,7986.981023,0,21
+141707,0,7907.975827,0,21
+141708,0,375761.1391,0,21
+141709,0,7743.226425,0,21
+141710,0,7644.420701,0,21
+141711,0,7534.107299,0,21
+141712,0,0,0,21
+141713,0,0,0,21
+141714,0,0,0,21
+141715,0,0,0,21
+141716,0,28403.45557,0,21
+141717,0,0,0,21
+141718,0,3794.004218,0,21
+141719,0,9822.616648,0,21
+141720,0,6338.288457,0,21
+141721,0,6803.381989,0,21
+141722,0,6807.607346,0,21
+141723,0,6776.852941,0,21
+141724,0,6853.675375,0,21
+141725,0,6747.759562,0,21
+141726,0,6713.462333,0,21
+141727,0,6702.746984,0,21
+141728,0,6700.167432,0,21
+141729,0,6661.124934,0,21
+141730,0,6670.919561,0,21
+141731,0,6687.596386,0,21
+141732,0,6612.25734,729940.9586,21
+141733,0,6598.876846,0,21
+141734,0,6566.7772,0,21
+141735,337385.3176,6569.442643,0,21
+141736,0,6537.274819,0,21
+141737,0,6510.405595,0,21
+141738,0,6507.71669,0,21
+141739,0,6478.101643,0,21
+141740,0,6467.306583,0,21
+141741,0,6445.649887,0,21
+141742,0,6407.888714,0,21
+141743,0,6418.694134,0,21
+141744,0,6388.909506,0,21
+141745,0,6375.376961,0,21
+141746,0,0,0,21
+141747,0,0,0,21
+141748,0,0,0,21
+141749,0,0,0,21
+141750,0,367975.9475,0,21
+141751,0,25904.43688,0,21
+141752,0,638.0090609,0,21
+141753,0,2419.387951,0,21
+141754,0,8962.422306,0,21
+141755,0,5778.64505,0,21
+141756,0,6257.100748,0,21
+141757,0,6107.362869,0,21
+141758,0,6074.141865,0,21
+141759,0,6046.556696,0,21
+141760,0,6074.143005,0,21
+141761,0,5985.512303,0,21
+141762,0,6013.191919,0,21
+141763,0,5971.638573,0,21
+141764,0,6123.175509,0,21
+141765,0,5941.003247,0,21
+141766,0,5907.417963,0,21
+141767,0,5924.229781,0,21
+141768,0,5848.73196,0,21
+141769,0,5862.702769,725315.1624,21
+141770,0,5862.703286,0,21
+141771,0,5803.834997,0,21
+141772,0,5800.931832,0,21
+141773,0,5776.529332,0,21
+141774,337592.4313,5772.870851,0,21
+141775,0,5738.914282,0,21
+141776,0,5920.508661,0,21
+141777,0,5693.720103,0,21
+141778,0,5682.495901,0,21
+141779,0,5676.648402,0,21
+141780,0,5620.029219,0,21
+141781,0,83.47477331,0,21
+141782,0,0,0,21
+141783,0,0,0,21
+141784,0,0,0,21
+141785,0,0,0,21
+141786,0,23256.84223,0,21
+141787,0,1671.193413,0,21
+141788,0,1742.101527,0,21
+141789,0,5390.171565,0,21
+141790,0,6977.600251,0,21
+141791,0,4958.930872,0,21
+141792,0,373457.5106,0,21
+141793,0,5587.666153,0,21
+141794,0,5451.300889,0,21
+141795,0,5448.411562,0,21
+141796,0,5451.302843,0,21
+141797,0,5402.33722,0,21
+141798,0,5451.304822,0,21
+141799,0,5356.11749,0,21
+141800,0,5419.642792,0,21
+141801,0,5356.119448,0,21
+141802,0,5373.461924,0,21
+141803,0,5356.121441,0,21
+141804,0,5309.753844,0,21
+141805,0,5344.476864,0,21
+141806,0,5306.843838,721092.2901,21
+141807,0,5280.659514,0,21
+141808,0,5309.757932,0,21
+141809,0,5263.241901,0,21
+141810,0,5280.662643,0,21
+141811,0,5231.194867,0,21
+141812,0,5248.654946,0,21
+141813,337786.6007,5216.579007,0,21
+141814,0,5216.580079,0,21
+141815,0,5201.935137,0,21
+141816,0,0,0,21
+141817,0,0,0,21
+141818,0,0,0,21
+141819,0,0,0,21
+141820,0,0,0,21
+141821,0,0,0,21
+141822,0,21818.76522,0,21
+141823,0,1685.550017,0,21
+141824,0,1598.494788,0,21
+141825,0,4747.659593,0,21
+141826,0,6674.075268,0,21
+141827,0,4562.604803,0,21
+141828,0,5110.791963,0,21
+141829,0,5108.044161,0,21
+141830,0,5093.256211,0,21
+141831,0,5095.977325,0,21
+141832,0,5060.862161,0,21
+141833,0,373087.6516,0,21
+141834,0,5060.864687,0,21
+141835,0,5048.718563,0,21
+141836,0,5013.523562,0,21
+141837,0,5031.14297,0,21
+141838,0,4998.618588,0,21
+141839,0,4998.619875,0,21
+141840,0,4983.683507,0,21
+141841,0,4966.025898,0,21
+141842,0,4918.361425,0,21
+141843,0,4900.623146,717231.8652,21
+141844,0,4885.594442,0,21
+141845,0,4819.842499,0,21
+141846,0,4817.073711,0,21
+141847,0,4804.720494,0,21
+141848,0,4735.857725,0,21
+141849,0,4735.85847,0,21
+141850,0,4687.466167,0,21
+141851,0,4687.4669,0,21
+141852,338029.9313,0,0,21
+141853,0,0,0,21
+141854,0,0,0,21
+141855,0,0,0,21
+141856,0,0,0,21
+141857,0,0,0,21
+141858,0,0,0,21
+141859,0,20811.75152,0,21
+141860,0,0,0,21
+141861,0,720.8525394,0,21
+141862,0,3158.013808,0,21
+141863,0,6442.563395,0,21
+141864,0,3529.868714,0,21
+141865,0,4248.850297,0,21
+141866,0,4251.685246,0,21
+141867,0,4198.812611,0,21
+141868,0,4180.182701,0,21
+141869,0,4164.40003,0,21
+141870,0,4095.323402,0,21
+141871,0,4092.419711,0,21
+141872,0,4060.659569,0,21
+141873,0,4041.850035,0,21
+141874,0,372045.6355,0,21
+141875,0,3972.174246,0,21
+141876,0,3953.227777,0,21
+141877,0,3937.206971,0,21
+141878,0,3883.11244,0,21
+141879,0,3883.112843,0,21
+141880,0,3847.922721,0,21
+141881,0,3834.597796,713716.1351,21
+141882,0,3793.464088,0,21
+141883,0,3777.2739,0,21
+141884,0,3738.773357,0,21
+141885,0,3725.534583,0,21
+141886,0,3703.217781,0,21
+141887,0,3670.615135,0,21
+141888,0,3631.827725,0,21
+141889,0,0,0,21
+141890,0,0,0,21
+141891,331920.0405,0,0,21
+141892,0,0,0,21
+141893,0,0,0,21
+141894,0,0,0,21
+141895,0,0,0,21
+141896,0,0,0,21
+141897,0,0,0,21
+141898,0,0,0,21
+141899,0,0,0,21
+141900,0,0,0,21
+141901,0,0,0,21
+141902,0,18749.19387,0,21
+141903,0,0,0,21
+141904,0,0,0,21
+141905,0,391.0759783,0,21
+141906,0,5390.68298,0,21
+141907,0,1933.442215,0,21
+141908,0,3034.634874,0,21
+141909,0,3418.414379,0,21
+141910,0,3115.326813,0,21
+141911,0,3231.451353,0,21
+141912,0,3231.451797,0,21
+141913,0,3211.739945,0,21
+141914,0,3221.602748,0,21
+141915,0,371261.3125,0,21
+141916,0,3174.611536,0,21
+141917,0,3174.611945,0,21
+141918,0,3157.175636,0,21
+141919,0,3164.712802,710443.0541,21
+141920,0,3157.176441,0,21
+141921,0,3165.903994,0,21
+141922,0,3157.177239,0,21
+141923,0,3154.801836,0,21
+141924,0,3176.940341,0,21
+141925,0,3154.802617,0,21
+141926,0,3167.066243,0,21
+141927,0,3174.615936,0,21
+141928,0,3157.179611,0,21
+141929,0,3174.616725,0,21
+141930,331828.3304,3157.180398,0,21
+141931,0,3194.379864,0,21
+141932,0,0,0,21
+141933,0,0,0,21
+141934,0,0,0,21
+141935,0,0,0,21
+141936,0,0,0,21
+141937,0,0,0,21
+141938,0,0,0,21
+141939,0,13642.43378,0,21
+141940,0,0,0,21
+141941,0,0,0,21
+141942,0,3603.094063,0,21
+141943,0,3204.093778,0,21
+141944,0,2503.684468,0,21
+141945,0,2783.584752,0,21
+141946,0,3176.948382,0,21
+141947,0,3064.200042,0,21
+141948,0,3054.362869,0,21
+141949,0,3054.363295,0,21
+141950,0,3074.026549,0,21
+141951,0,3084.558849,0,21
+141952,0,3057.159962,0,21
+141953,0,3057.1604,0,21
+141954,0,3020.238111,0,21
+141955,0,3039.802827,0,21
+141956,0,371048.0644,707244.212,21
+141957,0,2963.884141,0,21
+141958,0,2964.358522,0,21
+141959,0,2945.088326,0,21
+141960,0,2905.901773,0,21
+141961,0,2796.348736,0,21
+141962,0,2744.215989,0,21
+141963,0,2684.777643,0,21
+141964,0,2644.898771,0,21
+141965,0,2604.814604,0,21
+141966,0,2544.298327,0,21
+141967,0,2524.021139,0,21
+141968,0,2462.869552,0,21
+141969,331723.3702,0,0,21
+141970,0,0,0,21
+141971,0,0,0,21
+141972,0,0,0,21
+141973,0,0,0,21
+141974,0,0,0,21
+141975,0,0,0,21
+141976,0,9144.708866,0,21
+141977,0,0,0,21
+141978,0,0,0,21
+141979,0,3351.573985,0,21
+141980,0,1811.858593,0,21
+141981,0,1867.373634,0,21
+141982,0,1889.46474,0,21
+141983,0,1822.994781,0,21
+141984,0,1800.705905,0,21
+141985,0,1755.926485,0,21
+141986,0,1699.568195,0,21
+141987,0,1665.544828,0,21
+141988,0,1619.932805,0,21
+141989,0,1597.019237,0,21
+141990,0,1527.840019,0,21
+141991,0,1504.631708,0,21
+141992,0,1446.278722,704388.6046,21
+141993,0,1411.035105,0,21
+141994,0,1375.614133,0,21
+141995,0,1328.105064,0,21
+141996,0,1280.267776,0,21
+141997,0,369305.6926,0,21
+141998,0,1207.878599,0,21
+141999,0,1159.184108,0,21
+142000,0,1122.428039,0,21
+142001,0,1073.098009,0,21
+142002,0,1035.854147,0,21
+142003,0,998.3908691,0,21
+142004,0,948.0915976,0,21
+142005,0,922.788599,0,21
+142006,0,0,0,21
+142007,0,0,0,21
+142008,331962.7641,0,0,21
+142009,0,0,0,21
+142010,0,0,0,21
+142011,0,0,0,21
+142012,0,0,0,21
+142013,0,3.619754335,0,21
+142014,0,262.5276363,0,21
+142015,0,820.5101426,0,21
+142016,0,291.4937365,0,21
+142017,0,405.0974305,0,21
+142018,0,362.8878854,0,21
+142019,0,320.2181677,0,21
+142020,0,269.792861,0,21
+142021,0,277.0420807,0,21
+142022,0,291.4937404,0,21
+142023,0,305.8850393,0,21
+142024,0,291.4937421,0,21
+142025,0,320.2181793,0,21
+142026,0,305.8850421,0,21
+142027,0,327.3635748,0,21
+142028,0,320.2181823,701858.6393,21
+142029,0,334.4951699,0,21
+142030,0,348.7178464,0,21
+142031,0,334.4951721,0,21
+142032,0,348.7178487,0,21
+142033,0,362.8879077,0,21
+142034,0,362.887909,0,21
+142035,0,362.8879102,0,21
+142036,0,377.0069161,0,21
+142037,0,377.0069174,0,21
+142038,0,368433.8735,0,21
+142039,0,398.0928444,0,21
+142040,0,391.0763223,0,21
+142041,0,0,0,21
+142042,0,0,0,21
+142043,0,0,0,21
+142044,0,0,0,21
+142045,332385.7307,0,0,21
+142046,0,0,0,21
+142047,0,0,0,21
+142048,0,0,0,21
+142049,0,0,0,21
+142050,0,0,0,21
+142051,0,0,0,21
+142052,0,0,0,21
+142053,0,501.9903885,0,21
+142054,0,515.6646929,0,21
+142055,0,405.0974906,0,21
+142056,0,474.5206098,0,21
+142057,0,501.9904007,0,21
+142058,0,488.2759799,0,21
+142059,0,515.6647088,0,21
+142060,0,529.2996694,0,21
+142061,0,515.664715,0,21
+142062,0,556.4544708,0,21
+142063,0,542.8960298,0,21
+142064,0,569.9756846,699329.9105,21
+142065,0,569.9756883,0,21
+142066,0,583.4602976,0,21
+142067,0,596.9089137,0,21
+142068,0,610.3221177,0,21
+142069,0,610.3221221,0,21
+142070,0,637.0444909,0,21
+142071,0,637.0444952,0,21
+142072,0,650.3547357,0,21
+142073,0,663.6316555,0,21
+142074,0,676.8757258,0,21
+142075,0,690.0873997,0,21
+142076,0,703.2671137,0,21
+142077,0,0,0,21
+142078,0,368062.5123,0,21
+142079,0,0,0,21
+142080,0,0,0,21
+142081,0,0,0,21
+142082,332581.1052,0,0,21
+142083,0,0,0,21
+142084,0,0,0,21
+142085,0,0,0,21
+142086,0,0,0,21
+142087,0,0,0,21
+142088,0,0,0,21
+142089,0,0,0,21
+142090,0,0,0,21
+142091,0,0,0,21
+142092,0,0,0,21
+142093,0,0,0,21
+142094,0,0,0,21
+142095,0,0,0,21
+142096,0,0,0,21
+142097,0,0,0,21
+142098,0,0,0,21
+142099,0,0,0,21
+142100,0,0,697011.967,21
+142101,0,0,0,21
+142102,0,0,0,21
+142103,0,0,0,21
+142104,0,0,0,21
+142105,0,0,0,21
+142106,0,0,0,21
+142107,0,0,0,21
+142108,0,0,0,21
+142109,0,0,0,21
+142110,0,0,0,21
+142111,0,0,0,21
+142112,0,0,0,21
+142113,0,0,0,21
+142114,0,0,0,21
+142115,0,0,0,21
+142116,0,0,0,21
+142117,0,0,0,21
+142118,0,368058.0359,0,21
+142119,332843.7582,0,0,21
+142120,0,0,0,21
+142121,0,0,0,21
+142122,0,0,0,21
+142123,0,0,0,21
+142124,0,0,0,21
+142125,0,0,0,21
+142126,0,0,0,21
+142127,0,0,0,21
+142128,0,0,0,21
+142129,0,0,0,21
+142130,0,0,0,21
+142131,0,0,0,21
+142132,0,0,0,21
+142133,0,0,0,21
+142134,0,0,0,21
+142135,0,0,0,21
+142136,0,0,694960.918,21
+142137,0,0,0,21
+142138,0,0,0,21
+142139,0,0,0,21
+142140,0,0,0,21
+142141,0,0,0,21
+142142,0,86.61707723,0,21
+142143,0,0,0,21
+142144,0,0,0,21
+142145,0,0,0,21
+142146,0,0,0,21
+142147,0,0,0,21
+142148,0,0,0,21
+142149,0,0,0,21
+142150,0,0,0,21
+142151,0,0,0,21
+142152,0,0,0,21
+142153,0,0,0,21
+142154,0,0,0,21
+142155,0,0,0,21
+142156,0,0,0,21
+142157,340211.8838,0,0,21
+142158,0,0,0,21
+142159,0,368053.8817,0,21
+142160,0,0,0,21
+142161,0,0,0,21
+142162,0,0,0,21
+142163,0,0,0,21
+142164,0,0,0,21
+142165,0,0,0,21
+142166,0,0,0,21
+142167,0,0,0,21
+142168,0,0,0,21
+142169,0,0,0,21
+142170,0,0,0,21
+142171,0,0,0,21
+142172,0,0,0,21
+142173,0,0,693329.5143,21
+142174,0,0,0,21
+142175,0,0,0,21
+142176,0,0,0,21
+142177,0,0,0,21
+142178,0,0,0,21
+142179,0,0,0,21
+142180,0,0,0,21
+142181,0,0,0,21
+142182,0,0,0,21
+142183,0,0,0,21
+142184,0,0,0,21
+142185,0,0,0,21
+142186,0,0,0,21
+142187,0,0,0,21
+142188,0,0,0,21
+142189,0,0,0,21
+142190,0,0,0,21
+142191,0,0,0,21
+142192,0,0,0,21
+142193,0,0,0,21
+142194,0,0,0,21
+142195,340230.4047,0,0,21
+142196,0,0,0,21
+142197,0,0,0,21
+142198,0,368052.0472,0,21
+142199,0,0,0,21
+142200,0,0,0,21
+142201,0,0,0,21
+142202,0,0,0,21
+142203,0,0,0,21
+142204,0,0,0,21
+142205,0,0,0,21
+142206,0,19226.6907,0,21
+142207,0,0,0,21
+142208,0,0,0,21
+142209,0,1710.874205,0,21
+142210,0,5221.632097,692237.0138,21
+142211,0,3475.795408,0,21
+142212,0,4134.050289,0,21
+142213,0,4057.013466,0,21
+142214,0,4238.13573,0,21
+142215,0,4325.513309,0,21
+142216,0,4409.928519,0,21
+142217,0,4475.58689,0,21
+142218,0,4543.419771,0,21
+142219,0,4644.578068,0,21
+142220,0,4691.080779,0,21
+142221,0,4796.659739,0,21
+142222,0,4857.621487,0,21
+142223,0,4964.480052,0,21
+142224,0,5004.648573,0,21
+142225,0,5102.712267,0,21
+142226,0,5358.132701,0,21
+142227,0,5229.933837,0,21
+142228,0,5311.755707,0,21
+142229,0,5405.322483,0,21
+142230,0,5454.414022,0,21
+142231,0,5532.533651,0,21
+142232,0,5624.725878,0,21
+142233,340207.587,5683.450319,0,21
+142234,0,5781.328753,0,21
+142235,0,5812.456888,0,21
+142236,0,196.9180906,0,21
+142237,0,368046.4536,0,21
+142238,0,0,0,21
+142239,0,0,0,21
+142240,0,0,0,21
+142241,0,25551.79423,0,21
+142242,0,900.1789091,0,21
+142243,0,2421.363052,0,21
+142244,0,8280.957347,0,21
+142245,0,6928.175186,0,21
+142246,0,6349.738437,0,21
+142247,0,6734.154656,691472.5109,21
+142248,0,6785.527836,0,21
+142249,0,6857.202068,0,21
+142250,0,7100.950429,0,21
+142251,0,6999.560654,0,21
+142252,0,7061.523856,0,21
+142253,0,7140.621396,0,21
+142254,0,7217.360056,0,21
+142255,0,7284.920001,0,21
+142256,0,7341.360952,0,21
+142257,0,7423.457804,0,21
+142258,0,7483.667986,0,21
+142259,0,7594.021787,0,21
+142260,0,7605.606338,0,21
+142261,0,7701.173723,0,21
+142262,0,7926.972734,0,21
+142263,0,7781.420284,0,21
+142264,0,7810.864234,0,21
+142265,0,7877.999976,0,21
+142266,0,7903.109376,0,21
+142267,0,7973.939149,0,21
+142268,0,8011.403552,0,21
+142269,0,8038.357146,0,21
+142270,0,8118.934655,0,21
+142271,340195.5895,0,0,21
+142272,0,0,0,21
+142273,0,0,0,21
+142274,0,0,0,21
+142275,0,31998.34986,0,21
+142276,0,368039.7169,0,21
+142277,0,7287.654679,0,21
+142278,0,10336.43061,0,21
+142279,0,8382.870641,0,21
+142280,0,8577.8242,0,21
+142281,0,8657.492581,0,21
+142282,0,8695.309181,0,21
+142283,0,8733.02981,0,21
+142284,0,8784.412975,690257.276,21
+142285,0,8835.621866,0,21
+142286,0,8867.127857,0,21
+142287,0,8910.293866,0,21
+142288,0,8988.213153,0,21
+142289,0,9352.762548,0,21
+142290,0,9050.460813,0,21
+142291,0,9089.087052,0,21
+142292,0,9135.761025,0,21
+142293,0,9165.984282,0,21
+142294,0,9238.885823,0,21
+142295,0,9239.138826,0,21
+142296,0,9311.933765,0,21
+142297,0,9361.390558,0,21
+142298,0,9361.389596,0,21
+142299,0,9459.815635,0,21
+142300,0,9446.719436,0,21
+142301,0,9508.784742,0,21
+142302,0,9557.594425,0,21
+142303,0,9580.321913,0,21
+142304,0,9641.834939,0,21
+142305,0,0,0,21
+142306,0,0,0,21
+142307,0,0,0,21
+142308,0,34427.75031,0,21
+142309,340217.3802,1458.481682,0,21
+142310,0,8396.792458,0,21
+142311,0,11812.90854,0,21
+142312,0,9787.465488,0,21
+142313,0,9964.637668,0,21
+142314,0,10034.10257,0,21
+142315,0,378115.1239,0,21
+142316,0,10103.2374,0,21
+142317,0,10224.56883,0,21
+142318,0,10317.43465,0,21
+142319,0,10317.43329,0,21
+142320,0,10385.35729,0,21
+142321,0,10388.00081,689133.7022,21
+142322,0,10409.7111,0,21
+142323,0,10409.70974,0,21
+142324,0,10431.36285,0,21
+142325,0,10455.63035,0,21
+142326,0,10455.629,0,21
+142327,0,10455.62767,0,21
+142328,0,10477.2239,0,21
+142329,0,10501.40426,0,21
+142330,0,10477.22128,0,21
+142331,0,10522.94256,0,21
+142332,0,10522.94126,0,21
+142333,0,10547.03493,0,21
+142334,0,10522.93867,0,21
+142335,0,10544.42194,0,21
+142336,0,10568.5156,0,21
+142337,0,10568.51432,0,21
+142338,0,0,0,21
+142339,0,184634.4871,0,21
+142340,0,0,0,21
+142341,0,36811.50063,0,21
+142342,0,11812.41455,0,21
+142343,0,56735.30888,0,21
+142344,0,34390.83695,0,21
+142345,0,47275.52746,0,21
+142346,0,42124.97157,0,21
+142347,0,43964.10917,0,21
+142348,0,44855.05363,0,21
+142349,340229.4932,45213.85648,0,21
+142350,0,45327.42075,0,21
+142351,0,45560.12249,0,21
+142352,0,45635.48467,0,21
+142353,0,46226.49737,0,21
+142354,0,46118.25699,0,21
+142355,0,46627.63182,0,21
+142356,0,46488.40643,0,21
+142357,0,415122.9952,0,21
+142358,0,47126.08562,0,21
+142359,0,47182.66349,688105.701,21
+142360,0,47780.36882,0,21
+142361,0,47704.47105,0,21
+142362,0,47965.35372,0,21
+142363,0,48353.6803,0,21
+142364,0,48328.77479,0,21
+142365,0,48638.6994,0,21
+142366,0,49040.93976,0,21
+142367,0,48949.93828,0,21
+142368,0,49221.79284,0,21
+142369,0,12060.1661,0,21
+142370,0,12130.69988,0,21
+142371,0,0,0,21
+142372,0,0,0,21
+142373,0,0,0,21
+142374,0,37573.63515,0,21
+142375,0,5298.246209,0,21
+142376,0,8272.562457,0,21
+142377,0,15629.87072,0,21
+142378,0,12314.5287,0,21
+142379,0,12439.99316,0,21
+142380,0,12514.35084,0,21
+142381,0,12776.26594,0,21
+142382,0,197709.0251,0,21
+142383,0,13087.5328,0,21
+142384,0,21999.33891,0,21
+142385,0,46415.98993,0,21
+142386,0,70516.56555,0,21
+142387,0,47865.62112,0,21
+142388,0,54532.18317,0,21
+142389,340228.4706,54780.96516,0,21
+142390,0,55111.90537,0,21
+142391,0,55514.2975,0,21
+142392,0,55659.02234,0,21
+142393,0,56117.24959,0,21
+142394,0,56489.01779,0,21
+142395,0,56387.53114,0,21
+142396,0,57422.13034,687170.7231,21
+142397,0,57213.03774,0,21
+142398,0,57529.36212,0,21
+142399,0,426041.6814,0,21
+142400,0,58247.7101,0,21
+142401,0,58484.13848,0,21
+142402,0,59028.31261,0,21
+142403,0,59033.22963,0,21
+142404,0,44497.32828,0,21
+142405,0,44764.37712,0,21
+142406,0,44885.81844,0,21
+142407,0,86895.40944,0,21
+142408,0,55118.942,0,21
+142409,0,56095.55102,0,21
+142410,0,64779.38338,0,21
+142411,0,61233.22418,0,21
+142412,0,15669.96884,0,21
+142413,0,15712.67928,0,21
+142414,0,15842.12152,0,21
+142415,0,15874.19559,0,21
+142416,0,15957.13453,0,21
+142417,0,16061.15502,0,21
+142418,0,16213.34484,0,21
+142419,0,16218.59197,0,21
+142420,0,213715.7961,0,21
+142421,0,33548.07239,0,21
+142422,0,33230.45309,0,21
+142423,0,69102.95089,0,21
+142424,0,75271.60637,0,21
+142425,0,61954.96684,0,21
+142426,0,65967.93676,0,21
+142427,340200.4547,66257.79133,0,21
+142428,0,66503.23643,0,21
+142429,0,66897.19035,0,21
+142430,0,66966.94914,0,21
+142431,0,67046.58705,0,21
+142432,0,67623.83705,0,21
+142433,0,67674.36248,686330.5549,21
+142434,0,67988.92911,0,21
+142435,0,68149.01629,0,21
+142436,0,68663.90522,0,21
+142437,0,51139.61096,0,21
+142438,0,51509.55199,0,21
+142439,0,51648.37507,0,21
+142440,0,102528.6401,0,15.6
+142441,0,432068.3781,0,15.6
+142442,0,62891.46424,0,15.6
+142443,0,74768.22863,0,15.6
+142444,0,69840.61988,0,15.6
+142445,0,70821.91164,0,15.6
+142446,0,70655.99259,0,15.6
+142447,0,71307.77797,0,15.6
+142448,0,71493.00705,0,15.6
+142449,0,71587.29718,0,15.6
+142450,0,18229.11693,0,15.6
+142451,0,18321.27669,0,15.6
+142452,0,18370.82411,0,15.6
+142453,0,18408.62254,0,15.6
+142454,0,18489.56828,0,15.6
+142455,0,18548.08085,0,15.6
+142456,0,18549.31833,0,15.6
+142457,0,249670.8104,0,15.6
+142458,0,21744.89158,0,15.6
+142459,0,44865.62684,0,15.6
+142460,0,98985.94198,0,15.6
+142461,0,71359.43473,0,15.6
+142462,0,74577.10077,0,15.6
+142463,0,75166.98329,0,15.6
+142464,0,75067.80683,0,15.6
+142465,340190.4436,75638.78949,0,15.6
+142466,0,75396.27634,0,15.6
+142467,0,75869.04724,0,15.6
+142468,0,76142.12305,0,15.6
+142469,0,76045.91327,0,15.6
+142470,0,57035.49532,685556.4696,15.6
+142471,0,57431.43715,0,15.6
+142472,0,57477.75133,0,15.6
+142473,0,116639.0157,0,15.6
+142474,0,69786.71747,0,15.6
+142475,0,69649.7543,0,15.6
+142476,0,82530.73307,0,15.6
+142477,0,77503.17494,0,15.6
+142478,0,77853.6007,0,15.6
+142479,0,78441.48476,0,15.6
+142480,0,78293.49154,0,15.6
+142481,0,446873.6821,0,15.6
+142482,0,78859.80531,0,15.6
+142483,0,79065.10085,0,15.6
+142484,0,79243.84031,0,15.6
+142485,0,79504.61701,0,15.6
+142486,0,79543.03248,0,15.6
+142487,0,20230.59758,0,15.6
+142488,0,20276.04558,0,15.6
+142489,0,20318.11925,0,15.6
+142490,0,20332.745,0,15.6
+142491,0,20418.97785,0,15.6
+142492,0,20438.93377,0,15.6
+142493,0,274288.0128,0,15.6
+142494,0,20559.26491,0,15.6
+142495,0,55904.17579,0,15.6
+142496,0,106900.9362,0,15.6
+142497,0,78060.92387,0,15.6
+142498,0,82458.21655,0,15.6
+142499,0,82385.32203,0,15.6
+142500,0,82554.01101,0,15.6
+142501,0,82859.1109,0,15.6
+142502,0,82982.11225,0,15.6
+142503,340190.1181,62224.12362,0,15.6
+142504,0,62654.05787,0,15.6
+142505,0,62566.14451,0,15.6
+142506,0,129809.4969,684834.2621,15.6
+142507,0,76184.32207,0,15.6
+142508,0,74569.19087,0,15.6
+142509,0,91050.2737,0,15.6
+142510,0,84326.94999,0,15.6
+142511,0,85096.82354,0,15.6
+142512,0,85354.72017,0,15.6
+142513,0,85978.59253,0,15.6
+142514,0,85697.69647,0,15.6
+142515,0,86328.82287,0,15.6
+142516,0,86283.64761,0,15.6
+142517,0,454874.5263,0,15.6
+142518,0,86859.76943,0,15.6
+142519,0,87213.22411,0,15.6
+142520,0,87421.17089,0,15.6
+142521,0,87816.48647,0,15.6
+142522,0,87882.1647,0,15.6
+142523,0,22096.0257,0,15.6
+142524,0,22178.55122,0,15.6
+142525,0,22261.10944,0,15.6
+142526,0,22263.54457,0,15.6
+142527,0,22326.25443,0,15.6
+142528,0,294817.1612,0,15.6
+142529,0,22435.8246,0,15.6
+142530,0,67834.15233,0,15.6
+142531,0,113860.336,0,15.6
+142532,0,87208.87507,0,15.6
+142533,0,91040.39649,0,15.6
+142534,0,90868.682,0,15.6
+142535,0,91381.92585,0,15.6
+142536,0,68833.2213,0,15.6
+142537,0,68708.48315,0,15.6
+142538,0,69157.2899,0,15.6
+142539,340189.5479,143960.7992,0,15.6
+142540,0,84650.9438,0,15.6
+142541,0,79663.17858,0,15.6
+142542,0,101141.3777,684158.6423,15.6
+142543,0,92108.46054,0,15.6
+142544,0,93413.65029,0,15.6
+142545,0,93529.34889,0,15.6
+142546,0,93984.16558,0,15.6
+142547,0,93953.17665,0,15.6
+142548,0,94330.41468,0,15.6
+142549,0,94570.42852,0,15.6
+142550,0,94682.14338,0,15.6
+142551,0,94999.41242,0,15.6
+142552,0,95317.82101,0,15.6
+142553,0,468070.5387,0,15.6
+142554,0,98946.4725,0,15.6
+142555,0,100005.2397,0,15.6
+142556,0,101284.7856,0,15.6
+142557,0,101734.1608,0,15.6
+142558,0,24007.32236,0,15.6
+142559,0,24078.35814,0,15.6
+142560,0,24080.59796,0,15.6
+142561,0,23746.86729,0,15.6
+142562,0,23792.73853,0,15.6
+142563,0,315974.7994,0,15.6
+142564,0,33482.54044,0,15.6
+142565,0,69484.71695,0,15.6
+142566,0,120304.2229,0,15.6
+142567,0,93807.19387,0,15.6
+142568,0,97077.60908,0,15.6
+142569,0,72776.96892,0,15.6
+142570,0,86384.57163,0,15.6
+142571,0,148103.8544,0,15.6
+142572,0,92652.85736,0,15.6
+142573,0,107734.8156,0,15.6
+142574,0,111907.0028,0,15.6
+142575,340179.7053,110190.3008,0,15.6
+142576,0,111127.3549,0,15.6
+142577,0,112153.5793,0,15.6
+142578,0,112911.3365,683533.6635,15.6
+142579,0,113513.1838,0,15.6
+142580,0,114263.0654,0,15.6
+142581,0,115338.0179,0,15.6
+142582,0,116044.7987,0,15.6
+142583,0,116481.1178,0,15.6
+142584,0,117741.5691,0,15.6
+142585,0,118158.7931,0,15.6
+142586,0,119123.6302,0,15.6
+142587,0,119452.0572,0,15.6
+142588,0,120923.4408,0,15.6
+142589,0,489450.3145,0,15.6
+142590,0,122010.0055,0,15.6
+142591,0,122821.3247,0,15.6
+142592,0,123554.0592,0,15.6
+142593,0,25713.26941,0,15.6
+142594,0,25713.94929,0,15.6
+142595,0,25768.41149,0,15.6
+142596,0,25847.62031,0,15.6
+142597,0,326256.8685,0,15.6
+142598,0,36900.60396,0,15.6
+142599,0,95225.83851,0,15.6
+142600,0,165424.6489,0,15.6
+142601,0,95583.67673,0,15.6
+142602,0,104650.1305,0,15.6
+142603,0,177868.4346,0,15.6
+142604,0,117624.9428,0,15.6
+142605,0,130807.4661,0,15.6
+142606,0,137153.8762,0,15.6
+142607,0,134079.4575,0,15.6
+142608,0,135938.3482,0,15.6
+142609,0,135590.3425,0,15.6
+142610,0,136718.3026,0,15.6
+142611,340154.0505,137641.22,0,15.6
+142612,0,138206.4308,0,15.6
+142613,0,138539.8214,0,15.6
+142614,0,139886.5194,682968.3035,15.6
+142615,0,140029.8265,0,15.6
+142616,0,140987.5685,0,15.6
+142617,0,141667.2318,0,15.6
+142618,0,142525.3593,0,15.6
+142619,0,142976.1043,0,15.6
+142620,0,143828.4046,0,15.6
+142621,0,143935.4164,0,15.6
+142622,0,144752.4871,0,15.6
+142623,0,144544.9941,0,15.6
+142624,0,145296.5908,0,15.6
+142625,0,513719.7122,0,15.6
+142626,0,145861.3178,0,15.6
+142627,0,27468.21022,0,15.6
+142628,0,27588.11009,0,15.6
+142629,0,27557.57884,0,15.6
+142630,0,27588.84462,0,15.6
+142631,0,351382.7446,0,15.6
+142632,0,105061.6636,0,15.6
+142633,0,79099.75761,0,15.6
+142634,0,150762.4665,0,15.6
+142635,0,194862.2151,0,15.6
+142636,0,134715.2135,0,15.6
+142637,0,146383.2651,0,15.6
+142638,0,153755.2181,0,15.6
+142639,0,150512.1857,0,15.6
+142640,0,150642.9975,0,15.6
+142641,0,151440.0175,0,15.6
+142642,0,151577.7148,0,15.6
+142643,0,151658.969,0,15.6
+142644,0,152360.1926,0,15.6
+142645,0,152466.47,0,15.6
+142646,0,153134.126,0,15.6
+142647,340005.9069,153158.4776,0,15.6
+142648,0,153142.3319,0,15.6
+142649,0,154288.1792,0,15.6
+142650,0,153600.1402,682459.3828,15.6
+142651,0,154922.6613,0,15.6
+142652,0,154733.0017,0,15.6
+142653,0,155156.173,0,15.6
+142654,0,155267.8664,0,15.6
+142655,0,156001.388,0,15.6
+142656,0,156079.6387,0,15.6
+142657,0,156514.7637,0,15.6
+142658,0,156457.2249,0,15.6
+142659,0,157267.1003,0,15.6
+142660,0,156913.0096,0,15.6
+142661,0,396402.6904,0,15.6
+142662,0,28303.37876,0,15.6
+142663,0,28394.15287,0,15.6
+142664,0,28381.87367,0,15.6
+142665,0,374579.5954,0,15.6
+142666,0,79644.54141,0,15.6
+142667,0,162763.0533,0,15.6
+142668,0,178322.1728,0,15.6
+142669,0,153026.8082,0,15.6
+142670,0,164443.0382,0,15.6
+142671,0,160525.7564,0,15.6
+142672,0,161640.6576,0,15.6
+142673,0,161460.9675,0,15.6
+142674,0,161460.6466,0,15.6
+142675,0,162293.5217,0,15.6
+142676,0,162321.018,0,15.6
+142677,0,162415.1324,0,15.6
+142678,0,163518.7314,0,15.6
+142679,0,162731.5164,0,15.6
+142680,0,163830.7318,0,15.6
+142681,0,163562.2459,0,15.6
+142682,0,164859.5238,0,15.6
+142683,339870.5933,165305.4641,0,15.6
+142684,0,165410.6144,0,15.6
+142685,0,166575.3858,0,15.6
+142686,0,166705.1986,682000.0975,15.6
+142687,0,167383.2146,0,15.6
+142688,0,167907.0444,0,15.6
+142689,0,168667.251,0,15.6
+142690,0,169479.5209,0,15.6
+142691,0,169583.6949,0,15.6
+142692,0,170241.0206,0,15.6
+142693,0,170822.9092,0,15.6
+142694,0,171573.4605,0,15.6
+142695,0,29524.88095,0,15.6
+142696,0,29607.45958,0,15.6
+142697,0,368009.6555,0,15.6
+142698,0,0,0,15.6
+142699,0,528773.4948,0,15.6
+142700,0,94073.18085,0,15.6
+142701,0,115414.6989,0,15.6
+142702,0,220495.1516,0,15.6
+142703,0,172165.7338,0,15.6
+142704,0,178093.5968,0,15.6
+142705,0,178021.2344,0,15.6
+142706,0,179090.5657,0,15.6
+142707,0,179508.116,0,15.6
+142708,0,179764.4924,0,15.6
+142709,0,180828.8433,0,15.6
+142710,0,180668.1323,0,15.6
+142711,0,181862.4798,0,15.6
+142712,0,181983.047,0,15.6
+142713,0,182569.4549,0,15.6
+142714,0,183147.1693,0,15.6
+142715,0,183606.6041,0,15.6
+142716,0,184690.381,0,15.6
+142717,0,185497.8388,0,15.6
+142718,0,185932.4627,0,15.6
+142719,339863.726,186345.5724,0,15.6
+142720,0,187635.1006,0,15.6
+142721,0,187043.7586,0,15.6
+142722,0,188659.3987,681578.5688,15.6
+142723,0,188697.4175,0,15.6
+142724,0,189006.0346,0,15.6
+142725,0,190430.4096,0,15.6
+142726,0,190585.7812,0,15.6
+142727,0,191004.537,0,15.6
+142728,0,191435.823,0,15.6
+142729,0,0,0,15.6
+142730,0,193.3959772,0,15.6
+142731,0,88942.89482,0,15.6
+142732,0,497071.882,0,15.6
+142733,0,449281.5946,0,15.6
+142734,0,174502.79,0,15.6
+142735,0,221810.6956,0,15.6
+142736,0,192301.1359,0,15.6
+142737,0,195882.1626,0,15.6
+142738,0,196310.0822,0,15.6
+142739,0,197034.8114,0,15.6
+142740,0,199769.2463,0,15.6
+142741,66638.45112,1345919.647,0,15.6
+142742,18084.828,1178739.002,0,15.6
+142743,8014.507234,346385.7198,0,15.6
+142744,18524.80868,511131.3086,0,15.6
+142745,19559.01389,581450.2312,0,15.6
+142746,16538.69966,453828.0756,0,15.6
+142747,17097.54266,493773.6306,0,15.6
+142748,17124.04867,472310.3239,0,15.6
+142749,17009.11959,472536.2878,0,15.6
+142750,17051.65112,469268.2386,0,15.6
+142751,17030.42119,468376.1583,0,15.6
+142752,16967.55825,466802.6772,0,15.6
+142753,16939.39815,464620.083,0,15.6
+142754,16965.08593,463364.4335,0,15.6
+142755,356728.9727,462288.1593,0,15.6
+142756,16910.97684,460802.9445,0,15.6
+142757,16852.34111,459631.5646,0,15.6
+142758,16856.70899,458345.3391,681198.4038,15.6
+142759,16823.57859,456332.1278,0,15.6
+142760,16788.60659,456372.5138,0,15.6
+142761,16803.93352,363058.0474,0,15.6
+142762,16764.58624,0,0,15.6
+142763,16747.6904,199704.1525,0,15.6
+142764,16758.25232,985542.5685,0,15.6
+142765,16699.38382,286089.5961,0,15.6
+142766,16700.33182,508070.9207,0,15.6
+142767,16706.63041,432661.4943,0,15.6
+142768,16651.84032,460381.7416,0,15.6
+142769,16672.8698,815658.8646,0,15.6
+142770,16634.85085,446040.5363,0,15.6
+142771,0,445986.2833,0,15.6
+142772,0,444139.7503,0,15.6
+142773,0,443668.4203,0,15.6
+142774,0,442128.1013,0,15.6
+142775,0,442335.2725,0,15.6
+142776,55492.61919,440623.6798,0,15.6
+142777,2801.306956,439562.4581,0,15.6
+142778,11387.44089,439467.79,0,15.6
+142779,21762.87019,438066.4012,0,15.6
+142780,15575.44872,438088.9648,0,15.6
+142781,16482.67341,436136.5043,0,15.6
+142782,16493.79395,436258.4937,0,15.6
+142783,16470.3371,434959.9227,0,15.6
+142784,16482.92272,434480.1866,0,15.6
+142785,16434.26892,434004.9095,0,15.6
+142786,16448.08942,432568.0767,0,15.6
+142787,16392.3165,432214.5968,0,15.6
+142788,16427.14737,431707.0053,0,15.6
+142789,16392.29789,430478.7544,0,15.6
+142790,16336.36156,430085.3911,0,15.6
+142791,356224.2356,429519.1604,0,15.6
+142792,16322.46095,428764.5945,0,15.6
+142793,16325.24949,344489.1617,0,15.6
+142794,16313.7253,0,691204.6122,15.6
+142795,16280.22382,184596.9408,0,15.6
+142796,16258.87636,927158.5575,0,15.6
+142797,16267.69923,286555.4749,0,15.6
+142798,16244.94963,444922.998,0,15.6
+142799,16195.35031,426169.1612,0,15.6
+142800,16248.30874,431789.7975,0,17.8
+142801,927623.2421,2574046.414,69587.47138,17.8
+142802,548020.3347,2514682.163,19876.00579,17.8
+142803,187816.087,1840963.6,26408.38356,17.8
+142804,218374.9571,821286.3706,28818.09845,17.8
+142805,308415.4687,1244734.857,29093.3305,17.8
+142806,214115.8912,1288563.662,30867.6392,17.8
+142807,219817.4884,1004344.082,29027.26964,17.8
+142808,300366.6715,1045257.778,29718.19956,17.8
+142809,259357.5954,1039650.164,29703.0928,17.8
+142810,246039.4331,1033870.844,29756.45185,17.8
+142811,266972.3724,1031109.945,29772.61623,17.8
+142812,262989.4956,1026341.294,29798.38599,17.8
+142813,259556.5799,1022165.208,29116.67097,17.8
+142814,260762.5321,1019309.436,29105.00545,17.8
+142815,259680.3604,1015081.814,29166.75951,17.8
+142816,259295.7196,1012846.239,29183.75148,17.8
+142817,259267.5987,1006737.617,29197.18794,17.8
+142818,258596.5542,1007567.199,29294.79456,17.8
+142819,258136.2546,991190.7622,29260.20293,17.8
+142820,257710.2262,992063.4279,29355.55692,17.8
+142821,257582.1026,985287.7124,29341.17577,17.8
+142822,257027.1776,984211.8937,29423.9938,17.8
+142823,256894.0611,978323.6751,29413.4951,17.8
+142824,256220.2772,974251.2831,29485.82794,17.8
+142825,256351.2927,828978.8702,29562.57678,17.8
+142826,255407.3455,254887.2433,29515.90839,17.8
+142827,595454.2946,155054.1944,29609.24406,17.8
+142828,254947.4468,1431882.53,29661.62014,17.8
+142829,254967.9085,966146.201,29671.28791,17.8
+142830,254368.421,890548.0646,715415.4388,17.8
+142831,43354.12103,989109.7145,0,17.8
+142832,43317.27587,950134.3996,0,17.8
+142833,43238.48753,945481.9798,0,17.8
+142834,43260.53392,944578.9113,0,17.8
+142835,659901.6374,906432.5558,0,17.8
+142836,115227.9593,988295.9281,0,17.8
+142837,240912.4935,915913.6112,0,17.8
+142838,240974.1784,929784.5167,0,17.8
+142839,208681.8777,931686.0701,0,17.8
+142840,214162.7201,925263.5787,0,17.8
+142841,298325.8583,1290695.179,0,17.8
+142842,252777.2207,921223.8645,0,17.8
+142843,234748.7493,918065.4105,0,17.8
+142844,256854.9376,915219.3653,69822.55812,17.8
+142845,261279.4632,914163.6297,15112.21245,17.8
+142846,253268.9674,908920.1878,28503.03867,17.8
+142847,255617.5309,909037.8443,34621.29356,17.8
+142848,255109.3582,905319.6674,29740.25144,17.8
+142849,255377.1299,902350.2427,30348.2888,17.8
+142850,254587.2846,901377.2695,30538.44721,17.8
+142851,254512.5673,896361.284,31579.50871,17.8
+142852,254791.8314,897152.3205,30977.8851,17.8
+142853,254032.5478,892029.2634,31186.09015,17.8
+142854,254186.1322,891190.7476,31237.1617,17.8
+142855,253803.4759,888942.1266,31260.31285,17.8
+142856,254222.267,756748.466,31324.75142,17.8
+142857,253455.0372,754409.2079,31311.79156,17.8
+142858,253349.365,253948.884,31469.67498,17.8
+142859,253236.1462,186051.87,31423.57124,17.8
+142860,253162.1271,1327367.044,31508.75422,20
+142861,1444844.652,2587708.48,1520078.734,20
+142862,560401.2778,1721324.379,187793.6945,20
+142863,136917.4065,1115251.694,135575.9482,20
+142864,297564.7428,1080167.884,197836.9131,20
+142865,343565.8791,1220328.262,212661.9584,20
+142866,309230.3045,1144177.704,211869.415,20
+142867,301124.4223,1134829.161,217807.6786,20
+142868,305157.8389,1131279.046,213876.1349,20
+142869,303483.1292,1110739.057,218368.9214,20
+142870,303666.7143,1097687.614,220071.4295,20
+142871,302372.4607,1102890.425,221828.5299,20
+142872,302332.9547,1093719.746,223308.2926,20
+142873,300941.9041,1091630.004,224861.2053,20
+142874,301170.046,1085044.071,225806.2179,20
+142875,300468.2145,1086121.747,228453.1002,20
+142876,299332.8382,1077381.334,229183.8598,20
+142877,299351.4877,1077182.96,231034.3284,20
+142878,298946.8416,1072493.157,232285.0731,20
+142879,297723.419,1071041.524,234028.551,20
+142880,298133.4354,1066313.811,235561.8576,20
+142881,297043.2895,1064967.41,236777.2067,20
+142882,297015.5493,1059618.165,238396.2116,20
+142883,296239.367,1058596.599,239863.0492,20
+142884,295887.1587,1056252.289,241361.2029,20
+142885,295601.2743,1051819.059,243175.4242,20
+142886,295183.0175,1049884.978,244698.3822,20
+142887,294669.2704,1047554.126,245714.4273,20
+142888,294042.1329,1045113.483,247394.3772,20
+142889,294028.2617,1041574.924,248638.3062,20
+142890,293596.6077,1040875.3,250603.3115,20
+142891,293260.2241,1036499.436,251658.2392,20
+142892,292616.9732,1035510.584,253140.3859,20
+142893,292635.6313,1033525.317,254969.0723,20
+142894,294096.5873,1030600.665,255542.1181,20
+142895,299804.903,1030086.47,257758.1227,20
+142896,295563.8087,1025939.364,258573.056,20
+142897,298304.7275,1024835.419,260057.1646,20
+142898,297265.6927,1022083.533,261900.5905,20
+142899,297846.4591,1021594.539,263331.6411,20
+142900,298765.5914,1019015.04,264578.5179,20
+142901,298020.0835,1016603.803,265595.0566,20
+142902,300002.8728,1014855.894,267482.7441,20
+142903,298894.8496,1013655.231,268567.3351,20
+142904,299121.3483,1011002.566,269896.031,20
+142905,299657.9491,1009376.134,271661.1595,20
+142906,300471.8918,1009303.954,272291.0846,20
+142907,299912.9196,1002292.55,274357.5641,20
+142908,300034.036,1000265.852,275015.8072,20
+142909,299596.9049,998517.0085,276910.6334,20
+142910,299899.9316,994753.9515,277704.6619,20
+142911,299850.7503,995256.9888,279822.8182,20
+142912,299963.3061,990895.519,280414.2382,20
+142913,300186.2172,990756.0003,281657.2238,20
+142914,300661.7637,987114.6956,282978.1154,20
+142915,300658.9282,986070.8341,284136.7159,20
+142916,300596.9312,984431.1478,285590.7198,20
+142917,301196.8864,980444.8026,286850.9694,20
+142918,301254.4656,981580.9927,288279.0819,20
+142919,302005.4566,977250.0817,289263.8626,20
+142920,300735.9945,976730.0496,290639.1035,21
+142921,402632.6116,1509687.751,274879.428,21
+142922,400855.718,1501156.46,274212.6866,21
+142923,399515.9839,1494952.177,275063.603,21
+142924,399431.223,1493832.387,276353.3482,21
+142925,398708.3166,1485381.565,276534.0779,21
+142926,398311.5121,1483174.9,277352.5403,21
+142927,397546.1267,1478961.929,279055.3069,21
+142928,397334.4367,1475747.566,278853.3249,21
+142929,396355.6015,1469494.907,280329.8538,21
+142930,396320.2834,1466629.408,281354.2149,21
+142931,396082.5462,1463753.888,282041.8614,21
+142932,394846.446,1457126.373,282986.791,21
+142933,394330.308,1455865.831,283728.7159,21
+142934,393686.7712,1449462.192,284701.6352,21
+142935,393064.5908,1447568.294,285580.5932,21
+142936,392746.3169,1443375.177,286775.9226,21
+142937,392372.2952,1438824.818,287201.8728,21
+142938,391892.6555,1434163.341,288105.7558,21
+142939,391248.7468,1432698.544,276590.6604,21
+142940,390785.5221,1427022.243,275797.1904,21
+142941,391072.3825,1425293.701,277015.6256,21
+142942,389846.3542,1419662.985,275428.7015,21
+142943,389480.0792,1416496.134,277656.656,21
+142944,389412.1534,1412078.131,276336.4151,21
+142945,389029.7131,1410590.503,278221.622,21
+142946,388163.9239,1404829.057,277871.0113,21
+142947,387967.0412,1401638.928,278042.32,21
+142948,387840.7122,1397993.323,279384.3006,21
+142949,387165.0645,1395869.274,278889.8464,21
+142950,387558.0391,1390027.975,279986.8616,21
+142951,388321.0792,1387139.836,278825.8201,21
+142952,387312.2366,1384122.772,279346.5397,21
+142953,387362.1865,1378738.886,277017.2183,21
+142954,387388.3145,1376784.591,276520.1218,21
+142955,386236.7753,1371120.158,277544.7786,21
+142956,385993.4332,1368826.233,275829.7525,21
+142957,385754.7078,1365061.36,276017.9348,21
+142958,385902.8544,1359943.311,274946.164,21
+142959,384999.675,1358760.6,274974.7963,21
+142960,384566.2077,1352052.225,273716.0199,21
+142961,384866.4997,1350522.072,273496.0694,21
+142962,383757.2293,1345543.056,272525.2787,21
+142963,383598.8588,1340749.091,271012.7573,21
+142964,383582.4408,1336491.918,270640.2194,21
+142965,382855.9731,1334536.451,270520.7117,21
+142966,382780.1214,1329014.584,269951.6299,21
+142967,381616.9962,1326564.373,269112.5208,21
+142968,381494.5989,1322826.124,266862.8174,21
+142969,381695.8822,1317459.165,264857.2065,21
+142970,380417.1269,1315660.988,265435.0718,21
+142971,381030.0878,1312194.957,263989.8834,21
+142972,379631.2774,1306723.497,264204.9429,21
+142973,380019.6787,1305308.349,262838.7655,21
+142974,378891.8785,1299503.212,262581.6209,21
+142975,379235.761,1296703.287,261365.4977,21
+142976,377694.8099,1294124.92,261494.1119,21
+142977,378369.2335,1288760.683,260469.1024,21
+142978,377260.5769,1287103.037,259840.7124,21
+142979,377153.8972,1281328.788,259198.9543,21
+142980,376356.6387,1279061.672,258213.2279,21
+142981,285722.2438,1044332.17,119599.4471,21
+142982,281679.1605,1026553.547,111805.9998,21
+142983,280970.0818,1020638.191,108655.0734,21
+142984,280301.2798,1013726.748,105408.983,21
+142985,279580.657,1008952.095,102812.6286,21
+142986,279350.9964,1003059.758,100560.7315,21
+142987,277948.6938,998313.7065,98750.4595,21
+142988,278004.135,993826.1407,96815.24228,21
+142989,277137.4111,987823.9542,95044.80384,21
+142990,276651.2387,984078.3832,93064.20262,21
+142991,276169.093,978930.3604,91206.29026,21
+142992,275175.0878,975077.3654,90002.75425,21
+142993,275146.1996,968864.3174,88183.96264,21
+142994,274436.5396,966725.8048,86581.45903,21
+142995,273643.6127,960429.2168,85165.55957,21
+142996,273715.0865,957735.5451,83156.92902,21
+142997,272978.6346,952615.8677,82146.64823,21
+142998,272686.4355,949269.6584,80963.64881,21
+142999,272287.7407,944119.3068,79567.89642,21
+143000,271826.8974,940950.8382,58376.41927,21
+143001,271820.6341,936256.5417,56366.13853,21
+143002,271193.1452,931951.5001,55041.05541,21
+143003,270489.0504,926389.2806,53466.37018,21
+143004,270878.1469,923017.7687,51866.47673,21
+143005,270295.9052,919329.3619,50482.81623,21
+143006,269941.5488,914926.5311,48195.58288,21
+143007,269819.226,911149.6179,46960.83144,21
+143008,269447.0816,907692.3373,45420.79346,21
+143009,269204.297,903005.1989,43869.55693,21
+143010,269197.9089,900151.4149,42661.34217,21
+143011,268722.6379,894708.7105,41579.6638,21
+143012,268693.2478,892935.1255,39667.33147,21
+143013,268347.709,887867.5242,38682.78956,21
+143014,268450.7062,883994.2225,37150.39992,21
+143015,268000.103,881003.8432,35141.61836,21
+143016,268191.3585,876716.4258,33518.3961,21
+143017,268094.8677,873151.2463,32282.05839,21
+143018,267835.8676,870117.9417,31777.31731,21
+143019,268039.9851,866085.375,30507.15826,21
+143020,267726.8071,862013.2582,29990.90229,21
+143021,267660.4611,859380.6155,28542.55586,21
+143022,267981.7277,855642.7279,28334.04337,21
+143023,267599.287,851374.0821,26899.82932,21
+143024,267889.9876,849036.0887,26364.19622,21
+143025,267429.4422,845358.2289,25268.51691,21
+143026,267530.6565,841123.6511,24490.61047,21
+143027,267640.6531,838154.8354,23787.84806,21
+143028,267431.5053,834784.7743,22449.34063,21
+143029,267370.0222,832499.2897,22045.35391,21
+143030,267519.9556,827201.7009,20939.45509,21
+143031,267227.5124,824764.9529,20388.1239,21
+143032,267437.8376,821454.4229,19006.615,21
+143033,267216.8924,816692.4354,18578.18567,21
+143034,267265.6864,816098.9975,17609.54901,21
+143035,267420.4261,810957.1128,16639.42349,21
+143036,266930.0499,807897.9444,15889.44626,21
+143037,267267.0533,804476.5816,15061.28311,21
+143038,267052.8301,801618.9171,14153.02369,21
+143039,267027.0155,797574.4005,13531.84242,21
+143040,267301.9911,795422.9133,12682.64504,21
+143041,265709.3346,790249.9807,12497.52506,21
+143042,264843.7544,787786.755,12173.57977,21
+143043,263613.3831,783697.8483,11872.11457,21
+143044,262357.8513,781236.0506,11482.92918,21
+143045,261123.8977,777211.416,11044.95171,21
+143046,260230.8488,773472.3795,10711.64766,21
+143047,258983.8973,770599.4262,10214.48943,21
+143048,257775.134,766724.7594,9999.057149,21
+143049,256655.8115,763322.9472,9363.423397,21
+143050,255313.496,760884.5429,9310.243714,21
+143051,254663.7244,755980.8038,8496.158363,21
+143052,253007.1731,754204.1774,8435.693074,21
+143053,252212.8247,748601.6318,8210.29377,21
+143054,250653.19,746401.6483,8086.570525,21
+143055,249803.9719,742683.6711,7964.709798,21
+143056,248720.8837,739645.0971,7958.470473,21
+143057,247334.4384,735287.0261,7796.471104,21
+143058,246200.8303,732080.2062,7694.568868,21
+143059,245358.8974,729357.4202,7640.783782,21
+143060,243736.1212,725564.1112,7498.22241,21
+143061,243082.6299,721112.1012,7436.685526,21
+143062,241542.7598,719034.3392,7293.567638,21
+143063,240586.279,714573.9389,7225.789602,21
+143064,239339.3472,710626.8,7088.068508,21
+143065,238432.1128,709169.091,6978.651881,21
+143066,237012.8141,703068.7277,6902.882752,21
+143067,236050.1397,701708.8709,6771.845111,21
+143068,234867.8212,697431.8174,6699.539403,21
+143069,233462.6546,693370.8175,6526.161471,21
+143070,232782.6021,691122.5623,6491.537237,21
+143071,231418.3926,685870.0146,6307.474448,21
+143072,230439.1106,684741.213,6244.404455,21
+143073,229614.8702,678883.7556,6097.780129,21
+143074,228495.0507,678664.8706,5995.90798,21
+143075,227447.2517,672484.9632,5919.953466,21
+143076,226547.4322,670569.1006,5831.105695,21
+143077,225489.9873,667002.2124,5637.703652,21
+143078,224708.2966,663318.1944,5563.609761,21
+143079,223476.0548,660047.7519,5460.498637,21
+143080,222659.5043,656937.5846,5279.051558,21
+143081,221928.8502,653597.2464,5194.091625,21
+143082,220328.4951,649623.8259,5082.456112,21
+143083,220198.3769,646055.9606,4893.474046,21
+143084,218479.1064,643373.0454,4785.45359,21
+143085,218090.3719,640207.61,4637.119925,21
+143086,216764.621,635192.8002,4510.438445,21
+143087,216157.1907,633923.8573,4408.893636,21
+143088,214943.721,628526.7492,4251.580578,21
+143089,214162.1112,626165.6794,4131.882191,21
+143090,213146.3619,622859.3792,3990.847151,21
+143091,212400.1845,619113.3528,3884.805551,21
+143092,211409.6899,615237.9955,3696.24002,21
+143093,210346.3406,613478.1235,3621.298403,21
+143094,209519.8511,607594.3498,3446.739451,21
+143095,208670.4983,606693.3901,3337.24796,21
+143096,207688.1596,601910.9853,3179.567988,21
+143097,206802.1857,597888.1285,3036.861445,21
+143098,205656.5967,596116.3841,2942.864272,21
+143099,205218.5561,591887.8985,2763.178676,21
+143100,204742.3558,588503.4976,2636.568294,21
+143101,208205.5748,584391.2924,2310.394029,21
+143102,206004.5373,579827.0232,2194.17951,21
+143103,204646.1857,576298.1943,2059.411718,21
+143104,202387.2417,569558.2338,1943.229362,21
+143105,200747.9512,567089.886,1894.043141,21
+143106,198840.8991,561574.5638,1795.303753,21
+143107,197007.3684,556578.5482,1745.77201,21
+143108,195430.6282,552379.7697,1646.321067,21
+143109,192997.6542,547632.1819,1577.438616,21
+143110,191609.9467,543818.2433,1496.180368,21
+143111,189621.4035,537376.1008,1426.816219,21
+143112,187647.2407,534520.7705,1344.816129,21
+143113,186168.0151,528187.1106,1274.886472,21
+143114,183864.1445,525072.6927,1188.763442,21
+143115,182371.465,520033.9151,1140.774984,21
+143116,180311.6001,514826.891,1034.504635,21
+143117,178566.9661,510730.8403,966.4030336,21
+143118,176648.5702,506011.8831,894.8015833,21
+143119,175029.9576,500538.7062,825.8153329,21
+143120,172940.863,496787.6113,739.3580024,21
+143121,171225.9731,491371.8261,663.5352868,21
+143122,169347.6024,486750.8335,612.0298254,21
+143123,167515.7181,483243.463,499.2770246,21
+143124,165613.0555,476789.1546,499.2790565,21
+143125,164009.8223,472585.0793,459.5073698,21
+143126,161752.245,468239.4792,419.5255386,21
+143127,160311.9681,463480.7269,399.45172,21
+143128,158212.7026,456723.4753,379.3191734,21
+143129,156530.5003,451547.0615,318.5413586,21
+143130,154552.7044,447583.6574,338.8676993,21
+143131,153003.6111,441742.5587,257.1291703,21
+143132,150936.004,438636.9207,277.6781713,21
+143133,149565.2355,434236.1262,215.776489,21
+143134,147565.5516,428379.6184,215.7768893,21
+143135,146089.9561,425136.0242,174.0349663,21
+143136,144247.3823,420618.7458,131.8270531,21
+143137,142488.4067,416087.7872,131.8272054,21
+143138,140865.1518,411339.3377,89.02727979,21
+143139,139214.2354,407451.7794,67.33763438,21
+143140,137199.6748,402312.9899,45.38751386,21
+143141,135961.1333,397870.9492,0,21
+143142,133887.1829,394786.0997,0,21
+143143,132607.5107,387727.9652,0,21
+143144,130499.3584,385411.2654,0,21
+143145,128936.6813,380140.616,0,21
+143146,127623.8758,375912.9398,0,21
+143147,125469.4979,371447.9934,0,21
+143148,124167.3614,366717.9331,0,21
+143149,122163.0942,362514.9992,0,21
+143150,120588.5765,358068.4576,0,21
+143151,118913.6813,352820.0042,0,21
+143152,117454.2612,349732.7254,0,21
+143153,115549.7164,343693.3317,0,21
+143154,114075.7898,340381.6319,0,21
+143155,112208.5263,335183.0619,0,21
+143156,110834.9624,330536.9619,0,21
+143157,108963.2558,326671.2529,0,21
+143158,107384.1099,321378.4894,0,21
+143159,105751.9532,317473.0681,0,21
+143160,104259.3963,312975.1527,0,21
+143161,97590.92018,314363.0736,0,21
+143162,96514.35627,310643.4669,0,21
+143163,94939.62302,307609.5296,0,21
+143164,93709.44684,304583.2645,0,21
+143165,92069.06565,301388.3004,0,21
+143166,91000.79907,297526.6791,0,21
+143167,89499.30905,294825.0587,0,21
+143168,88071.26414,292165.1598,0,21
+143169,86804.32703,288338.4344,0,21
+143170,85467.9212,285723.4415,0,21
+143171,84024.28175,282536.6353,0,21
+143172,83048.07365,279609.8643,0,21
+143173,81622.23833,276524.8774,0,21
+143174,80361.03731,276319.9931,0,21
+143175,79205.19623,271937.1676,0,21
+143176,77774.32058,271740.5116,0,21
+143177,76928.5879,268164.1811,0,21
+143178,75198.76899,266994.1129,0,21
+143179,74217.54643,264424.2215,0,21
+143180,72815.21308,261803.9762,0,21
+143181,71983.73667,260241.4334,0,21
+143182,70109.36246,258032.8598,0,21
+143183,69314.86612,254984.0973,0,21
+143184,68022.28603,254167.9158,0,21
+143185,66664.4826,251576.9867,0,21
+143186,65414.55511,248848.1537,0,21
+143187,64245.02338,247224.6424,0,21
+143188,62939.94881,245327.8611,0,21
+143189,62005.76331,242471.4576,0,21
+143190,60251.59354,240334.4477,0,21
+143191,59181.76118,238802.9847,0,21
+143192,58311.53203,236430.3083,0,21
+143193,56223.82126,235160.8775,0,21
+143194,55858.50633,232118.8584,0,21
+143195,55086.15185,230492.6129,0,21
+143196,55024.91375,228615.6603,0,21
+143197,54713.54702,226418.1872,0,21
+143198,54474.49975,224414.8567,0,21
+143199,53846.94024,222878.3177,0,21
+143200,53983.57743,220247.1556,0,21
+143201,53512.61824,218807.8575,0,21
+143202,53012.69829,215858.3252,0,21
+143203,53138.23903,215198.0316,0,21
+143204,52492.09647,212625.1093,0,21
+143205,52238.19188,211195.0691,0,21
+143206,51790.29986,209647.8708,0,21
+143207,51952.78682,208452.8016,0,21
+143208,51204.57879,206543.6235,0,21
+143209,50880.93195,205068.2962,0,21
+143210,50961.15607,203726.6213,0,21
+143211,50585.69612,202143.7287,0,21
+143212,50098.85658,200569.82,0,21
+143213,50229.22528,199054.0107,0,21
+143214,49700.02554,197468.3963,0,21
+143215,49410.89164,195913.9914,0,21
+143216,49426.08721,194503.2199,0,21
+143217,48803.11749,192966.8808,0,21
+143218,48784.47856,191535.9976,0,21
+143219,48628.63656,189789.013,0,21
+143220,48322.93204,188232.4963,0,21
+143221,67392.98642,202550.891,0,21
+143222,74827.32906,235065.0661,0,21
+143223,71467.04505,249550.2555,0,21
+143224,72119.67888,232127.1266,0,21
+143225,71734.62648,237307.2865,0,21
+143226,71960.21552,235319.9826,0,21
+143227,71961.49723,235035.9008,0,21
+143228,71401.52181,234524.0189,0,21
+143229,71485.52104,232899.2481,0,21
+143230,71584.17442,234517.9991,0,21
+143231,71285.69991,236517.7574,0,21
+143232,71133.64596,234964.8252,0,21
+143233,70938.31225,234111.503,0,21
+143234,71010.89647,234456.2085,0,21
+143235,70829.75671,234415.1062,0,21
+143236,70596.43189,233133.1703,0,21
+143237,70502.31361,233438.2248,0,21
+143238,70644.95579,232739.8059,0,21
+143239,70199.86177,232196.0175,0,21
+143240,70262.87402,231693.8551,0,21
+143241,70119.40152,232140.3584,0,21
+143242,69978.41506,230647.7817,0,21
+143243,69828.94619,231675.9731,0,21
+143244,69895.51781,229592.1383,0,21
+143245,69446.22973,230258.3725,0,21
+143246,69495.33351,229181.9509,0,21
+143247,69471.64379,229301.1363,0,21
+143248,69289.68784,227978.3015,0,21
+143249,68986.82829,228616.1848,0,21
+143250,69025.96778,226824.9734,0,21
+143251,68955.04917,227251.0697,0,21
+143252,69005.95746,226808.8587,0,21
+143253,68552.78876,224199.2137,0,21
+143254,68688.85157,225685.8961,0,21
+143255,68617.59851,223383.391,0,21
+143256,68292.77703,223795.1672,0,21
+143257,68667.92371,223138.4334,0,21
+143258,68253.04134,221849.2886,0,21
+143259,67989.78541,221457.8106,0,21
+143260,68501.75101,221306.4484,0,21
+143261,67852.78095,219463.3934,0,21
+143262,68020.80138,220126.5409,0,21
+143263,68150.75927,218272.4301,0,21
+143264,67544.34439,217592.408,0,21
+143265,67957.45437,218271.3553,0,21
+143266,67824.66807,215431.7152,0,21
+143267,67423.90707,215733.3,0,21
+143268,67810.46505,214937.6519,0,21
+143269,67235.18985,214209.3256,0,21
+143270,67689.89158,214048.0327,0,21
+143271,67070.79004,212011.6261,0,21
+143272,67442.76853,211608.5597,0,21
+143273,67192.48845,211267.6951,0,21
+143274,67065.37543,209843.5724,0,21
+143275,67093.06063,208690.2765,0,21
+143276,67030.93255,208760.3135,0,21
+143277,66930.21188,207453.2144,0,21
+143278,66995.99713,206648.341,0,21
+143279,66729.67325,206217.6371,0,21
+143280,66895.14084,204992.1809,0,21
+143281,46133.55335,164196.9805,0,21
+143282,45909.31987,162958.633,0,21
+143283,45719.55838,161323.8387,0,21
+143284,45407.09072,160352.5184,0,21
+143285,45550.04183,158960.3409,0,21
+143286,44929.07446,157509.2051,0,21
+143287,45397.29433,156231.8071,0,21
+143288,44714.51131,154973.8967,0,21
+143289,44789.6502,153756.7649,0,21
+143290,44658.18124,151888.2835,0,21
+143291,44600.33525,151092.0037,0,21
+143292,44130.06214,149669.4561,0,21
+143293,44284.88261,142826.7537,0,21
+143294,44183.75229,142232.3717,0,21
+143295,43778.83992,139906.6553,0,21
+143296,43905.22235,137556.4104,0,21
+143297,43658.4076,135520.158,0,21
+143298,43687.14641,133402.5753,0,21
+143299,43341.55162,131140.6628,0,21
+143300,43416.15665,129027.0794,0,21
+143301,43397.46527,127049.9979,0,21
+143302,43080.87532,124824.0145,0,21
+143303,43115.322,122893.0618,0,21
+143304,42947.31552,120577.3984,0,21
+143305,42881.62724,118940.0743,0,21
+143306,42695.4854,116544.5246,0,21
+143307,42834.31298,114600.9939,0,21
+143308,42218.39879,112354.1643,0,21
+143309,42614.10659,110312.0372,0,21
+143310,42273.9903,107874.3358,0,21
+143311,42148.79805,106017.532,0,21
+143312,42244.61853,103879.8112,0,21
+143313,42077.30465,101991.552,0,21
+143314,41703.1736,99825.39759,0,21
+143315,41824.14979,98116.08621,0,21
+143316,41758.29255,96128.08337,0,21
+143317,41571.11163,94032.29104,0,21
+143318,41509.2848,92575.00586,0,21
+143319,41326.1129,90632.18598,0,21
+143320,41234.81199,88968.12482,0,21
+143321,41306.1034,87190.81256,0,21
+143322,40867.99985,85637.25597,0,21
+143323,41061.48529,83775.80998,0,21
+143324,40825.54776,81831.49311,0,21
+143325,40613.59868,80745.59126,0,21
+143326,40772.78245,78279.25088,0,21
+143327,40551.34902,77235.70401,0,21
+143328,40344.66008,75090.10326,0,21
+143329,40336.9443,73579.85789,0,21
+143330,40465.86316,72032.96085,0,21
+143331,39884.97948,71367.04572,0,21
+143332,40263.35962,71050.58291,0,21
+143333,39714.15697,70667.6527,0,21
+143334,39995.05221,70276.54294,0,21
+143335,39617.54488,69866.1602,0,21
+143336,39835.52679,69225.51582,0,21
+143337,39348.45544,69016.46104,0,21
+143338,39555.68906,68320.12523,0,21
+143339,39339.84553,68115.13247,0,21
+143340,39215.34788,67126.96353,0,21
+143341,45054.76481,72456.29991,0,21
+143342,45283.57155,72522.14266,0,21
+143343,45211.20607,72008.68259,0,21
+143344,45263.14128,71741.58544,0,21
+143345,45606.47041,71729.08443,0,21
+143346,45034.90969,71367.97851,0,21
+143347,44969.08759,70982.24865,0,21
+143348,44672.08769,70995.03222,0,21
+143349,44572.17286,70684.1008,0,21
+143350,44840.58239,70216.7725,0,21
+143351,44996.17169,70308.82298,0,21
+143352,45059.62054,69839.28006,0,21
+143353,45476.569,69644.92257,0,21
+143354,45290.7629,69507.71713,0,21
+143355,45859.66491,68990.73088,0,21
+143356,45799.06526,69183.10713,0,21
+143357,46106.98622,68302.76125,0,21
+143358,46237.71518,68759.12459,0,21
+143359,46626.06165,68290.69822,0,21
+143360,46593.34688,67941.52356,0,21
+143361,46896.20547,67741.32117,0,21
+143362,47074.85033,67414.02664,0,21
+143363,47447.54681,67181.10345,0,21
+143364,47377.94891,67382.43557,0,21
+143365,47533.08081,66500.60957,0,21
+143366,48097.52705,66700.68263,0,21
+143367,48041.96644,66298.56739,0,21
+143368,48183.41678,66351.48803,0,21
+143369,48672.85093,65587.0274,0,21
+143370,49912.70183,65712.41577,0,21
+143371,52001.8741,65323.33118,0,21
+143372,53577.18158,65142.40122,0,21
+143373,55330.82672,64894.72031,0,21
+143374,57436.1043,64873.35082,0,21
+143375,58792.57025,64205.59476,0,21
+143376,60962.95154,64659.49758,0,21
+143377,62543.95413,63619.62966,0,21
+143378,64414.56143,64051.09833,0,21
+143379,66179.81772,63283.96091,0,21
+143380,68067.15464,63487.93113,0,21
+143381,69665.20831,62910.84411,0,21
+143382,71661.24365,62776.87973,0,21
+143383,73328.7827,62547.87885,0,21
+143384,75244.15841,61991.39521,0,21
+143385,76834.30324,62061.70264,0,21
+143386,78906.60134,61602.40451,0,21
+143387,80998.16296,61475.23014,0,21
+143388,82743.05447,60796.16063,0,21
+143389,84800.48248,60756.1309,0,21
+143390,86715.39374,60291.2053,0,21
+143391,88635.94451,60162.79278,0,21
+143392,90691.69939,59682.35804,0,21
+143393,92472.72716,59189.90518,0,21
+143394,94817.32043,58973.50806,0,21
+143395,96477.12185,58698.21108,0,21
+143396,98652.92606,58321.44277,0,21
+143397,100568.0688,57745.27193,0,21
+143398,102458.8361,57472.38862,0,21
+143399,104572.2485,56986.07363,0,21
+143400,106376.2842,56604.80092,0,21
+143401,101966.0588,50898.60172,0,21
+143402,102971.533,50510.62886,0,21
+143403,104462.9839,49922.61026,0,21
+143404,105584.3738,49736.3177,0,21
+143405,106809.5782,49391.4413,0,21
+143406,108315.7412,48878.91034,0,21
+143407,109416.9685,48361.94544,0,21
+143408,110852.3958,48233.0588,0,21
+143409,111987.2265,47687.35779,0,21
+143410,113466.3553,47100.50478,0,21
+143411,114560.271,46895.1414,0,21
+143412,116155.1646,46513.45847,0,21
+143413,117251.3058,45540.54187,0,21
+143414,118692.8477,45785.62133,0,21
+143415,119845.2668,44826.23576,0,21
+143416,121289.1134,44382.34019,0,21
+143417,122322.3609,43960.63461,0,21
+143418,123676.3509,43344.01043,0,21
+143419,125049.5694,43067.54063,0,21
+143420,126391.6953,42235.15163,0,21
+143421,127613.3125,41878.90418,0,21
+143422,129025.3946,41181.5316,0,21
+143423,130265.8242,40759.72741,0,21
+143424,131457.1867,40155.16005,0,21
+143425,133109.1341,39491.01128,0,21
+143426,133897.8539,39085.00831,0,21
+143427,135908.2867,38316.3901,0,21
+143428,136466.0164,37907.31147,0,21
+143429,138369.8205,37104.98835,0,21
+143430,139382.8913,36570.82748,0,21
+143431,140819.6456,36065.97786,0,21
+143432,142130.4793,35129.38436,0,21
+143433,143460.5707,35166.73669,0,21
+143434,144894.5636,34074.20659,0,21
+143435,146144.9792,33522.45487,0,21
+143436,147712.5286,33125.90884,0,21
+143437,148764.3249,32444.16545,0,21
+143438,150405.2449,32181.26712,0,21
+143439,151616.3467,32031.45928,0,21
+143440,153025.0719,32334.11972,0,21
+143441,154318.8313,31808.13439,0,21
+143442,155708.7745,32344.0622,0,21
+143443,157117.6949,31921.82202,0,21
+143444,158391.9216,32244.74713,0,21
+143445,159900.1383,32016.87082,0,21
+143446,161202.6764,31931.78257,0,21
+143447,162659.2462,32332.61766,0,21
+143448,163732.0877,31936.18311,0,21
+143449,165479.6143,32151.14292,0,21
+143450,166736.5916,32021.48618,0,21
+143451,168009.7117,32040.02802,0,21
+143452,169595.0481,32155.20893,0,21
+143453,170705.0376,32040.02827,0,21
+143454,172434.3812,32158.08491,0,21
+143455,173536.5252,32043.86084,0,21
+143456,174955.3171,32046.75323,0,21
+143457,177469.2704,32158.83555,0,21
+143458,178593.1779,32064.50983,0,21
+143459,180272.6621,32147.35133,0,21
+143460,181861.1761,31964.30005,0,21
+143461,182152.9773,32050.17636,0,21
+143462,182887.3875,31826.51881,0,21
+143463,183511.5431,31814.96395,0,21
+143464,184146.8015,31700.04801,0,21
+143465,184639.5767,31616.34419,0,21
+143466,185021.6055,31449.16473,0,21
+143467,186090.8341,31489.51837,0,21
+143468,186304.9556,31350.80031,0,21
+143469,187078.3511,31237.8036,0,21
+143470,187436.8485,31136.29482,0,21
+143471,188001.1457,31112.96047,0,21
+143472,188814.3315,30896.28773,0,21
+143473,189292.7829,30894.97042,0,21
+143474,189734.0777,30772.06861,0,21
+143475,190565.6854,30769.47265,0,21
+143476,190788.9076,30427.92255,0,21
+143477,191658.8089,30885.1672,0,21
+143478,192294.028,30658.09875,0,21
+143479,192565.6477,30658.0307,0,21
+143480,193266.2899,30544.09538,0,21
+143481,194061.5813,30426.73708,0,21
+143482,194199.0513,30646.89174,0,21
+143483,195207.863,30082.14184,0,21
+143484,195493.7371,30532.1613,0,21
+143485,196158.7448,30058.24141,0,21
+143486,196999.1244,30081.99635,0,21
+143487,197077.5884,30186.60783,0,21
+143488,197971.2879,29824.71887,0,21
+143489,198536.128,29841.57544,0,21
+143490,199091.839,30056.62593,0,21
+143491,199695.926,29592.81382,0,21
+143492,200249.6193,29609.59205,0,21
+143493,200892.8883,29705.92299,0,21
+143494,201398.8377,29362.3422,0,21
+143495,202098.7628,29466.88018,0,21
+143496,202624.3624,29252.97426,0,21
+143497,203368.3025,29233.481,0,21
+143498,203784.8198,29228.89193,0,21
+143499,204447.4548,28996.79149,0,21
+143500,205477.1669,29125.98715,0,21
+143501,205994.7535,28761.48779,0,21
+143502,206978.4309,28879.27426,0,21
+143503,207320.3552,28872.87391,0,21
+143504,208247.0225,28528.47019,0,21
+143505,208825.9622,28619.10942,0,21
+143506,209659.6205,28648.22684,0,21
+143507,210063.7153,28277.22699,0,21
+143508,211010.6717,28275.57667,0,21
+143509,211414.1623,28517.22723,0,21
+143510,212235.9563,27924.20986,0,21
+143511,213081.5828,28266.55545,0,21
+143512,213470.4891,28034.98453,0,21
+143513,214423.2278,27915.3754,0,21
+143514,215097.4952,27905.18162,0,21
+143515,215367.6003,27673.23876,0,21
+143516,216619.6591,27797.61934,0,21
+143517,216825.5692,27542.56171,0,21
+143518,217878.6133,27554.84631,0,21
+143519,218448.501,27419.69112,0,21
+143520,218894.6959,27436.17607,0,21
+143521,274839.3518,54244.17906,0,21
+143522,278278.7216,55516.01197,0,21
+143523,279879.0668,55997.03171,0,21
+143524,281156.2477,56391.74303,0,21
+143525,282760.1903,56562.32493,0,21
+143526,284177.1652,56752.91428,0,21
+143527,285242.6139,57118.04276,0,21
+143528,286896.6948,57370.09557,0,21
+143529,288324.0825,57527.3191,0,21
+143530,289427.831,57559.72846,0,21
+143531,290961.4915,58134.25661,0,21
+143532,292366.773,58038.02983,0,21
+143533,293891.9758,58563.28686,0,21
+143534,294972.3536,58719.99969,0,21
+143535,296073.7462,58645.79983,0,21
+143536,297790.9254,59150.13301,0,21
+143537,298545.4482,59399.17833,0,21
+143538,300456.7211,59179.66217,0,21
+143539,301310.9638,59824.28079,0,21
+143540,302401.7055,62347.68988,0,21
+143541,304015.1427,61193.24406,0,21
+143542,304878.2812,61861.46719,0,21
+143543,306008.6184,62327.41217,0,21
+143544,307522.068,62223.54518,0,21
+143545,308404.2346,62697.48154,0,21
+143546,309602.972,62878.41714,0,21
+143547,310580.8092,63020.44993,0,21
+143548,311912.6105,73491.98014,0,21
+143549,313065.1993,74837.6862,0,21
+143550,314074.3705,72913.52192,0,21
+143551,315026.1441,75021.44744,0,21
+143552,316362.1412,76335.83538,0,21
+143553,317289.1195,77031.68297,0,21
+143554,318465.6424,78642.27332,0,21
+143555,319806.8858,78563.21474,0,21
+143556,320401.2993,80354.10879,0,21
+143557,322041.0138,81006.96588,0,21
+143558,322888.9559,82035.15877,0,21
+143559,323776.0081,82049.8215,0,21
+143560,324862.767,83503.15023,0,21
+143561,326351.1189,84032.63037,0,21
+143562,326871.808,85069.49345,0,21
+143563,328547.0473,85604.35608,0,21
+143564,329046.227,86967.85939,0,21
+143565,330270.1639,86970.25269,0,21
+143566,331459.9337,88636.95257,0,21
+143567,332527.9048,88194.06475,0,21
+143568,333210.2059,90330.30076,0,21
+143569,334545.0441,89205.66391,0,21
+143570,335451.9864,91885.7102,0,21
+143571,336523.3384,90972.45926,0,21
+143572,337713.8622,92230.96917,0,21
+143573,338348.2993,93213.84816,0,21
+143574,339657.6933,94130.62086,0,21
+143575,340754.2844,93834.23687,0,21
+143576,341734.3495,94747.71425,0,21
+143577,342452.1325,95784.6344,0,21
+143578,343968.4413,95960.01507,0,21
+143579,344259.1865,97385.96,0,21
+143580,345773.2733,96648.62685,0,21
+143581,363507.8061,149782.0826,0,21
+143582,365921.4431,153640.5714,0,21
+143583,366221.0432,155145.7776,0,21
+143584,367353.2686,156326.6679,0,21
+143585,368080.0331,158995.0331,0,21
+143586,368714.1202,158072.1052,0,21
+143587,369593.3132,160667.7138,0,21
+143588,370425.5771,161617.7878,0,21
+143589,370813.0305,162407.9567,0,21
+143590,371998.7507,162284.1227,0,21
+143591,372397.2563,164842.0764,0,21
+143592,373579.4139,166072.1372,0,21
+143593,373701.5644,165457.3035,0,21
+143594,374740.6072,167557.5429,0,21
+143595,375194.6565,168157.6603,0,21
+143596,376383.5181,169175.401,0,21
+143597,376782.9485,170563.3236,0,21
+143598,377269.837,169835.3753,0,21
+143599,378011.1259,172319.8674,0,21
+143600,378711.3027,172355.5746,0,21
+143601,379656.406,173534.3847,0,21
+143602,379919.8392,174249.5668,0,21
+143603,380893.4459,174154.0049,0,21
+143604,381231.1223,176542.7217,0,21
+143605,382131.8934,176881.9853,0,21
+143606,382461.2418,177157.036,0,21
+143607,383273.4532,178363.0534,0,21
+143608,383784.0438,178614.6453,0,21
+143609,384697.409,179906.7795,0,21
+143610,384721.3185,180336.2503,0,21
+143611,385771.0435,181459.3778,0,21
+143612,385862.4773,181434.8803,0,21
+143613,387118.0067,182484.0095,0,21
+143614,387269.1408,183780.1078,0,21
+143615,387623.2727,183679.0238,0,21
+143616,388467.8255,183852.6619,0,21
+143617,388867.8477,185559.3211,0,21
+143618,389444.7728,186521.0722,0,21
+143619,389939.5956,186332.9486,0,21
+143620,390383.262,186709.9527,0,21
+143621,391173.5568,188955.9994,0,21
+143622,391302.8681,188121.7661,0,21
+143623,391987.5647,189239.4425,0,21
+143624,392572.5756,189813.216,0,21
+143625,392735.8385,189798.4689,0,21
+143626,393644.3053,191278.3786,0,21
+143627,393767.0239,191994.8932,0,21
+143628,394658.1578,191856.493,0,21
+143629,395038.3188,192979.2765,0,21
+143630,395053.4173,193397.0987,0,21
+143631,396809.0681,196620.4275,0,21
+143632,397353.5578,195162.1192,0,21
+143633,397526.3135,197849.3573,0,21
+143634,398824.2592,198423.5946,0,21
+143635,398954.9971,199326.5919,0,21
+143636,399687.6443,200007.7161,0,21
+143637,400173.3074,201513.116,0,21
+143638,400804.2586,206930.0842,0,21
+143639,401248.947,206745.6951,0,21
+143640,402005.6438,209216.4303,0,21
+143641,402331.8733,211229.6139,0,21
+143642,403164.5263,213596.1521,0,21
+143643,403926.037,216776.6634,0,21
+143644,403969.5147,217994.0187,0,21
+143645,405053.2249,220032.5889,0,21
+143646,405153.9069,221553.3284,0,21
+143647,406102.2248,224515.2802,0,21
+143648,406617.6964,225669.433,0,21
+143649,406817.5795,227801.5635,0,21
+143650,407540.2557,230362.4588,0,21
+143651,408170.7238,231675.1814,0,21
+143652,408770.4657,233506.9108,0,21
+143653,408774.5919,235473.9631,0,21
+143654,410008.3041,237605.032,0,21
+143655,410282.4458,239740.936,0,21
+143656,410551.6141,240831.0704,0,21
+143657,411455.7005,244089.2086,0,21
+143658,411864.9099,243839.3305,0,21
+143659,412174.3483,248401.3271,0,21
+143660,412872.1159,248862.7295,0,21
+143661,413453.291,250365.6922,0,21
+143662,413958.3934,254027.8562,0,21
+143663,414170.34,254060.4364,0,21
+143664,414900.2788,257101.8686,0,21
+143665,415686.3079,259424.9821,0,21
+143666,415994.8391,259662.966,0,21
+143667,416255.1054,263717.1042,0,21
+143668,416957.4278,264333.5547,0,21
+143669,417600.0473,266409.3512,0,21
+143670,417978.2359,269268.8778,0,21
+143671,418344.9166,269941.7176,0,21
+143672,418721.1968,272633.7977,0,21
+143673,419070.7773,273910.5424,0,21
+143674,419796.2279,276212.7222,0,21
+143675,419813.5908,278417.8791,0,21
+143676,420308.2074,279139.815,0,21
+143677,420555.4762,281566.1418,0,21
+143678,420949.7441,284504.2071,0,21
+143679,421459.4568,284392.634,0,21
+143680,421510.7909,287430.3705,0,21
+143681,421981.2866,287886.0497,0,21
+143682,422562.4734,291422.9825,0,21
+143683,422473.7862,291533.6949,0,21
+143684,422716.7149,293790.0309,0,21
+143685,423765.984,296516.0168,0,21
+143686,424548.8195,296854.1102,0,21
+143687,426174.6023,298420.9756,0,21
+143688,426037.3314,301768.1305,0,21
+143689,426575.5343,301506.2728,0,21
+143690,427098.0303,304850.7428,0,21
+143691,427457.7783,305327.0446,0,21
+143692,427336.0804,308514.702,0,21
+143693,428160.8435,309837.1165,0,21
+143694,428324.9951,311467.8704,0,21
+143695,428627.3628,312856.0573,0,21
+143696,429160.6809,315996.699,0,21
+143697,429232.7452,316005.0558,0,21
+143698,429444.3281,320043.5193,0,21
+143699,430394.9485,322322.4135,0,21
+143700,429852.497,326627.925,0,21
+143701,433633.5448,338139.4223,0,21
+143702,433935.2431,341511.645,0,21
+143703,434684.2077,347724.4695,0,21
+143704,435149.9928,349619.6658,0,21
+143705,435302.7648,354165.1235,0,21
+143706,435920.1348,358558.7673,0,21
+143707,436129.6823,361028.7207,0,21
+143708,436682.729,366463.4592,0,21
+143709,436591.2058,368136.534,0,21
+143710,437557.3541,373352.7734,0,21
+143711,437524.0369,376529.2627,0,21
+143712,438092.4144,380589.3684,0,21
+143713,438072.2074,383231.9533,0,21
+143714,438900.0742,388413.0752,0,21
+143715,438788.9973,391153.4919,0,21
+143716,439616.6075,395651.3641,0,21
+143717,439321.5926,398547.8022,0,21
+143718,440267.0051,402751.4796,0,21
+143719,440314.2268,406584.7487,0,21
+143720,440272.9277,410325.6726,0,21
+143721,441276.7157,413286.6761,0,21
+143722,441147.1195,417318.5202,0,21
+143723,441536.5326,421507.3037,0,21
+143724,441892.2634,424605.552,0,21
+143725,442115.4448,428287.8849,0,21
+143726,442439.6712,431789.958,0,21
+143727,442503.0039,436659.3544,0,21
+143728,443090.0681,438570.127,0,21
+143729,443408.2722,443498.8421,0,21
+143730,443487.3308,446369.4359,0,21
+143731,443660.5986,450017.5339,0,21
+143732,444089.844,453734.3197,0,21
+143733,444370.4809,456479.3008,0,21
+143734,444758.8916,460687.5093,0,21
+143735,444710.5681,462680.1717,0,21
+143736,445186.6688,467788.3465,0,21
+143737,445413.4832,469321.7902,0,21
+143738,445659.4511,473731.3226,0,21
+143739,445885.851,477313.7996,0,21
+143740,446180.569,479185.686,0,21
+143741,446292.1311,483421.6163,0,21
+143742,446746.384,486771.9882,0,21
+143743,446568.7846,489821.0562,0,21
+143744,447557.9735,492943.9948,0,21
+143745,447154.5502,496385.0039,0,21
+143746,447623.6582,499335.9984,0,21
+143747,447571.7737,503454.6779,0,21
+143748,448041.3729,505434.5655,0,21
+143749,448376.6243,509003.7603,0,21
+143750,448237.7736,512525.8122,0,21
+143751,448888.1679,515740.7348,0,21
+143752,448675.67,519773.8137,0,21
+143753,449276.0905,521826.4783,0,21
+143754,449317.3733,525594.1815,0,21
+143755,449444.9479,529567.2773,0,21
+143756,450093.6557,530756.0057,0,21
+143757,449317.3188,535593.3272,0,21
+143758,450596.109,538194.2147,0,21
+143759,450280.0234,540881.5837,0,21
+143760,450543.0155,547767.2572,0,21
+143761,451008.1717,550890.7657,0,21
+143762,451914.1264,555182.6732,0,21
+143763,452291.4794,558152.6516,0,21
+143764,453027.0221,561016.5416,0,21
+143765,452921.1567,563566.2065,0,21
+143766,454616.0581,566647.1365,0,21
+143767,454090.8154,570779.4304,0,21
+143768,455186.5533,572262.233,0,21
+143769,455809.0251,575327.3431,0,21
+143770,456158.4,579308.9155,0,21
+143771,456858.1769,579846.7989,0,21
+143772,457042.5449,585620.1781,0,21
+143773,458069.3294,586053.9559,0,21
+143774,458435.3033,589980.1549,0,21
+143775,458816.2056,592466.9737,0,21
+143776,459446.3972,595755.0278,0,21
+143777,460343.5769,598023.0364,0,21
+143778,460341.2672,601144.709,0,21
+143779,461264.24,603966.3399,0,21
+143780,461593.387,606423.3767,0,21
+143781,462437.3932,609477.4709,0,21
+143782,462511.494,611835.2657,0,21
+143783,463321.9474,615057.27,0,21
+143784,463851.1043,617465.0413,0,21
+143785,464337.0008,620448.7661,0,21
+143786,465223.2277,622645.82,0,21
+143787,464927.6632,625559.9982,0,21
+143788,466494.9299,629891.7616,0,21
+143789,466337.3587,629662.4124,0,21
+143790,467015.657,634744.1281,0,21
+143791,467660.5167,636156.9824,0,21
+143792,467934.272,639862.3928,0,21
+143793,468763.6774,641837.251,0,21
+143794,469191.4846,644872.8063,0,21
+143795,469722.2862,647002.137,0,21
+143796,470102.5869,649971.6959,0,21
+143797,470996.5015,652832.5405,0,21
+143798,470972.4721,655343.9187,183.4500465,21
+143799,472310.4418,658423.4042,1716.22067,21
+143800,471763.6421,660551.5861,878.9125415,21
+143801,473150.2499,663683.7482,1384.199961,21
+143802,473348.347,665364.0774,1550.664184,21
+143803,474024.4285,669536.5691,1881.158194,21
+143804,474383.5337,671121.6011,1716.33084,21
+143805,474852.0062,674187.6945,2208.861952,21
+143806,475866.9276,676665.9682,2208.903262,21
+143807,475716.2236,678796.642,2371.824737,21
+143808,476470.1503,682692.2969,2695.918359,21
+143809,477384.3542,684058.9637,2695.979172,21
+143810,477320.9649,687511.8797,2857.268276,21
+143811,478562.2047,689097.2809,3178.317757,21
+143812,477890.7662,693531.3784,3178.401369,21
+143813,479775.3481,694290.8711,3497.640832,21
+143814,479430.394,697700.6879,3497.741402,21
+143815,479927.106,700863.4126,3656.781752,21
+143816,480934.5452,701665.5628,3973.55956,21
+143817,481155.2212,706708.4031,3973.688104,21
+143818,481828.3326,708110.5117,4288.963409,21
+143819,482126.549,709899.5943,4289.11224,21
+143820,482850.9515,713558.4161,4446.295824,21
+143821,0,0,0,21
+143822,0,0,0,21
+143823,84352.68138,0,0,21
+143824,0,111.3132344,0,21
+143825,0,0,0,21
+143826,0,0,1417830.471,21
+143827,0,0,0,21
+143828,339753.9315,368249.3741,0,21
+143829,0,0,0,21
+143830,0,0,0,21
+143831,0,0,0,21
+143832,0,105.7243315,0,21
+143833,0,0,0,21
+143834,0,0,0,21
+143835,0,0,0,21
+143836,0,84.13662953,0,21
+143837,0,0,0,21
+143838,0,0,0,21
+143839,0,0,0,21
+143840,0,111.0409577,0,21
+143841,0,0,0,21
+143842,0,0,0,21
+143843,0,0,0,21
+143844,0,99.91001842,0,21
+143845,0,0,0,21
+143846,0,0,0,21
+143847,0,0,0,21
+143848,0,97.60932328,0,21
+143849,0,0,0,21
+143850,0,0,0,21
+143851,0,0,0,21
+143852,0,83.99793089,0,21
+143853,0,0,0,21
+143854,0,0,0,21
+143855,0,0,0,21
+143856,0,96.49871435,0,21
+143857,0,0,0,21
+143858,0,0,0,21
+143859,0,0,0,21
+143860,0,79.49690255,0,21
+143861,0,0,1354955.734,21
+143862,0,0,0,21
+143863,0,0,0,21
+143864,339748.8125,368195.5461,0,21
+143865,0,0,0,21
+143866,0,0,0,21
+143867,0,0,0,21
+143868,0,68.4588841,0,21
+143869,0,0,0,21
+143870,0,0,0,21
+143871,0,0,0,21
+143872,0,75.03596555,0,21
+143873,0,0,0,21
+143874,0,0,0,21
+143875,0,0,0,21
+143876,0,104.4415556,0,21
+143877,0,0,0,21
+143878,0,0,0,21
+143879,0,0,0,21
+143880,0,106.242646,0,15.6
+143881,0,0,0,15.6
+143882,0,0,0,15.6
+143883,0,0,0,15.6
+143884,0,152.2817373,0,15.6
+143885,0,0,0,15.6
+143886,0,0,0,15.6
+143887,0,0,0,15.6
+143888,0,129.9069608,0,15.6
+143889,0,0,0,15.6
+143890,0,0,0,15.6
+143891,0,0,0,15.6
+143892,0,127.2623444,0,15.6
+143893,0,0,0,15.6
+143894,0,0,0,15.6
+143895,0,0,0,15.6
+143896,0,119.9473103,1296998.932,15.6
+143897,0,0,0,15.6
+143898,0,0,0,15.6
+143899,0,0,0,15.6
+143900,0,368204.4543,0,15.6
+143901,339753.0403,0,0,15.6
+143902,0,0,0,15.6
+143903,0,0,0,15.6
+143904,0,81.67965126,0,15.6
+143905,0,0,0,15.6
+143906,0,0,0,15.6
+143907,0,0,0,15.6
+143908,0,78.29563407,0,15.6
+143909,0,0,0,15.6
+143910,0,0,0,15.6
+143911,0,0,0,15.6
+143912,0,99.65548708,0,15.6
+143913,0,0,0,15.6
+143914,0,0,0,15.6
+143915,0,0,0,15.6
+143916,0,97.2935158,0,15.6
+143917,0,0,0,15.6
+143918,0,0,0,15.6
+143919,0,0,0,15.6
+143920,0,102.8077281,0,15.6
+143921,0,0,0,15.6
+143922,0,0,0,15.6
+143923,0,0,0,15.6
+143924,0,105.861794,0,15.6
+143925,0,0,0,15.6
+143926,0,0,0,15.6
+143927,0,0,0,15.6
+143928,0,109.4784689,0,15.6
+143929,0,0,0,15.6
+143930,0,0,0,15.6
+143931,0,0,1243496.287,15.6
+143932,0,112.5782014,0,15.6
+143933,0,0,0,15.6
+143934,0,0,0,15.6
+143935,0,0,0,15.6
+143936,0,368204.9449,0,15.6
+143937,0,0,0,15.6
+143938,339766.4308,0,0,15.6
+143939,0,0,0,15.6
+143940,0,100.0676385,0,15.6
+143941,0,0,0,15.6
+143942,0,0,0,15.6
+143943,0,0,0,15.6
+143944,0,95.70186246,0,15.6
+143945,0,0,0,15.6
+143946,0,0,0,15.6
+143947,0,0,0,15.6
+143948,0,112.7282339,0,15.6
+143949,0,0,0,15.6
+143950,0,0,0,15.6
+143951,0,0,0,15.6
+143952,0,113.3350471,0,15.6
+143953,0,0,0,15.6
+143954,0,0,0,15.6
+143955,0,0,0,15.6
+143956,0,110.7071503,0,15.6
+143957,0,0,0,15.6
+143958,0,0,0,15.6
+143959,0,0,0,15.6
+143960,0,105.7273297,0,15.6
+143961,0,0,0,15.6
+143962,0,0,0,15.6
+143963,0,0,0,15.6
+143964,0,100.8360356,0,15.6
+143965,0,0,0,15.6
+143966,0,0,1194177.362,15.6
+143967,0,0,0,15.6
+143968,0,96.03836856,0,15.6
+143969,0,0,0,15.6
+143970,0,0,0,15.6
+143971,0,0,0,15.6
+143972,0,368170.4442,0,15.6
+143973,0,0,0,15.6
+143974,0,0,0,15.6
+143975,339766.3165,0,0,15.6
+143976,0,74.43116402,0,15.6
+143977,0,0,0,15.6
+143978,0,0,0,15.6
+143979,0,0,0,15.6
+143980,0,69.756404,0,15.6
+143981,0,0,0,15.6
+143982,0,0,0,15.6
+143983,0,0,0,15.6
+143984,0,98.43211898,0,15.6
+143985,0,0,0,15.6
+143986,0,0,0,15.6
+143987,0,0,0,15.6
+143988,0,101.7372652,0,15.6
+143989,0,0,0,15.6
+143990,0,0,0,15.6
+143991,0,0,0,15.6
+143992,0,108.5927773,0,15.6
+143993,0,0,0,15.6
+143994,0,0,0,15.6
+143995,0,0,0,15.6
+143996,0,112.5843118,0,15.6
+143997,0,0,0,15.6
+143998,0,0,0,15.6
+143999,0,0,0,15.6
+144000,0,114.6069202,0,15.6
+144001,0,0,0,15.6
+144002,0,0,1148895.572,15.6
+144003,0,0,0,15.6
+144004,0,115.5259573,0,15.6
+144005,0,0,0,15.6
+144006,0,0,0,15.6
+144007,0,0,0,15.6
+144008,0,368195.7398,0,15.6
+144009,0,0,0,15.6
+144010,0,0,0,15.6
+144011,0,0,0,15.6
+144012,339765.6249,85.59367978,0,15.6
+144013,0,0,0,15.6
+144014,0,0,0,15.6
+144015,0,0,0,15.6
+144016,0,83.40810932,0,15.6
+144017,0,0,0,15.6
+144018,0,0,0,15.6
+144019,0,0,0,15.6
+144020,0,29429.40632,0,15.6
+144021,0,0,0,15.6
+144022,0,667.1059013,0,15.6
+144023,0,6713.048606,0,15.6
+144024,0,7323.734393,0,15.6
+144025,0,5262.551831,0,15.6
+144026,0,5913.191388,0,15.6
+144027,0,7594.269776,0,15.6
+144028,0,7640.287343,0,15.6
+144029,0,7490.807288,0,15.6
+144030,0,7742.606709,0,15.6
+144031,0,7839.851918,0,15.6
+144032,0,8109.205445,0,15.6
+144033,0,8125.04582,0,15.6
+144034,0,8213.83987,0,15.6
+144035,0,8339.744285,0,15.6
+144036,0,8542.75252,0,15.6
+144037,0,8564.705018,0,15.6
+144038,0,8665.620517,1107495.911,15.6
+144039,0,8837.011728,0,15.6
+144040,0,8933.256138,0,15.6
+144041,0,9069.378428,0,15.6
+144042,0,9099.563563,0,15.6
+144043,0,9208.225509,0,15.6
+144044,0,9462.611502,0,15.6
+144045,0,377528.5741,0,15.6
+144046,0,9531.393024,0,15.6
+144047,0,9668.545978,0,15.6
+144048,0,9826.538909,0,15.6
+144049,339766.0452,9885.28453,0,15.6
+144050,0,0,0,15.6
+144051,0,0,0,15.6
+144052,0,67.83337541,0,15.6
+144053,0,0,0,15.6
+144054,0,0,0,15.6
+144055,0,0,0,15.6
+144056,0,33599.43524,0,15.6
+144057,0,2657.717095,0,15.6
+144058,0,5691.709553,0,15.6
+144059,0,13504.6397,0,15.6
+144060,0,11411.08292,0,15.6
+144061,0,10727.65586,0,15.6
+144062,0,11053.55316,0,15.6
+144063,0,11117.55016,0,15.6
+144064,0,11289.64187,0,15.6
+144065,0,11111.02667,0,15.6
+144066,0,11191.59752,0,15.6
+144067,0,11221.16473,0,15.6
+144068,0,11263.42919,0,15.6
+144069,0,11255.9798,0,15.6
+144070,0,11272.7561,0,15.6
+144071,0,11231.92847,0,15.6
+144072,0,11387.3812,0,15.6
+144073,0,11307.41411,0,15.6
+144074,0,11290.7061,1069474.806,15.6
+144075,0,11349.23908,0,15.6
+144076,0,11413.27535,0,15.6
+144077,0,11354.32213,0,15.6
+144078,0,11378.55399,0,15.6
+144079,0,11354.32076,0,15.6
+144080,0,11499.89179,0,15.6
+144081,0,11390.83187,0,15.6
+144082,0,379514.4385,0,15.6
+144083,0,11381.37099,0,15.6
+144084,0,11529.53091,0,15.6
+144085,0,11439.59894,0,15.6
+144086,42466.9902,0,0,15.6
+144087,341676.9535,0,0,15.6
+144088,1526.726112,0,0,15.6
+144089,10005.24659,398.8516844,0,15.6
+144090,11656.80285,0,0,15.6
+144091,8266.018367,0,0,15.6
+144092,9267.662244,39395.25084,0,15.6
+144093,9225.41741,4164.281214,0,15.6
+144094,9224.910436,4605.900702,0,15.6
+144095,9221.826448,14647.91062,0,15.6
+144096,9209.284974,12108.23471,0,15.6
+144097,9181.036837,11167.46492,0,15.6
+144098,9221.830471,11596.27112,0,15.6
+144099,9133.564601,11634.77436,0,15.6
+144100,9164.801417,11613.15714,0,15.6
+144101,9193.583919,11617.84823,0,15.6
+144102,9106.198979,11615.33396,0,15.6
+144103,9158.675616,11632.25797,0,15.6
+144104,9123.938084,11612.79781,0,15.6
+144105,9136.481588,11622.37572,0,15.6
+144106,9088.945078,11610.19761,0,15.6
+144107,9118.744654,11612.70832,0,15.6
+144108,9119.226634,11617.2935,0,15.6
+144109,9066.680967,11614.63208,0,15.6
+144110,9101.489371,11617.29223,1034746.83,15.6
+144111,9088.946617,11573.40313,0,15.6
+144112,9061.929003,11621.71319,0,15.6
+144113,9079.224714,11587.80245,0,15.6
+144114,9071.651456,11614.00689,0,15.6
+144115,9032.987199,11534.86654,0,15.6
+144116,0,11652.09447,0,15.6
+144117,0,11556.3246,0,15.6
+144118,0,11555.58563,0,15.6
+144119,0,379676.3942,0,15.6
+144120,0,11547.67426,0,15.6
+144121,0,11690.51114,0,15.6
+144122,0,0,0,15.6
+144123,0,0,0,15.6
+144124,0,0,0,15.6
+144125,339764.7957,0,0,15.6
+144126,0,0,0,15.6
+144127,0,0,0,15.6
+144128,0,44110.60029,0,15.6
+144129,0,2743.437266,0,15.6
+144130,0,5907.889674,0,15.6
+144131,0,16613.50317,0,15.6
+144132,0,12868.10863,0,15.6
+144133,45735.85391,12561.63091,0,15.6
+144134,1372.483237,12980.04868,0,15.6
+144135,1862.58297,13132.01466,0,15.6
+144136,10597.30539,13183.01821,0,15.6
+144137,12411.49882,13270.0558,0,15.6
+144138,8851.224783,13393.84022,0,15.6
+144139,9958.932145,13487.47279,0,15.6
+144140,9995.864605,13542.46064,0,15.6
+144141,9989.687112,13656.06775,0,15.6
+144142,10034.23387,13766.87487,0,15.6
+144143,10075.67601,13835.26581,0,15.6
+144144,10080.08097,13940.64122,0,15.6
+144145,10075.67596,14019.92529,0,15.6
+144146,10171.84133,14127.71205,1002868.896,15.6
+144147,10120.08696,14167.54906,0,15.6
+144148,10217.45393,14369.04713,0,15.6
+144149,10188.76258,14352.68163,0,15.6
+144150,10217.45375,14489.1102,0,15.6
+144151,10301.39646,14632.67505,0,15.6
+144152,10246.46393,14601.51959,0,15.6
+144153,10339.38746,14805.15772,0,15.6
+144154,10337.27984,14863.47953,0,15.6
+144155,10380.3875,14916.56116,0,15.6
+144156,10402.82859,383132.0598,0,15.6
+144157,10413.22046,15136.49392,0,15.6
+144158,10471.10236,0,0,15.6
+144159,10470.46596,0,0,15.6
+144160,10525.32067,0,0,15.6
+144161,10555.2861,0,0,15.6
+144162,10541.64863,55944.21387,0,15.6
+144163,339765.3105,344.5546749,0,15.6
+144164,0,10450.96109,0,15.6
+144165,0,21463.68718,0,15.6
+144166,0,14954.45647,0,15.6
+144167,0,16078.92545,0,15.6
+144168,0,16170.86385,0,15.6
+144169,0,16288.75311,0,15.6
+144170,0,16377.16349,0,15.6
+144171,0,16461.85376,0,15.6
+144172,52853.10436,16553.86677,0,15.6
+144173,275.0102744,16653.84352,0,15.6
+144174,2514.791003,16731.04213,0,15.6
+144175,12515.07259,16829.26204,0,15.6
+144176,13507.34279,16908.6993,0,15.6
+144177,10076.36951,17006.66726,0,15.6
+144178,11137.50846,17078.19716,0,15.6
+144179,11186.6244,17250.86854,0,15.6
+144180,11208.18915,17211.13385,0,15.6
+144181,777179.9904,1185861.869,0,15.6
+144182,110919.8769,415831.6617,972167.8309,15.6
+144183,121274.6441,211498.3377,0,15.6
+144184,230454.8234,324266.3159,0,15.6
+144185,192676.6623,319834.997,0,15.6
+144186,186443.6858,297254.9601,0,15.6
+144187,187419.9839,294303.0743,0,15.6
+144188,187050.5316,294487.0347,0,15.6
+144189,186958.6505,293344.5175,0,15.6
+144190,186279.8367,293115.0988,0,15.6
+144191,186729.5437,292559.0812,0,15.6
+144192,185963.1282,252846.9975,0,15.6
+144193,185923.6808,620300.9624,0,15.6
+144194,186206.3969,355070.2425,0,15.6
+144195,185600.251,275598.0797,0,15.6
+144196,185782.3561,287870.4585,0,15.6
+144197,185769.8628,293014.4963,0,15.6
+144198,185885.7319,289222.9992,0,15.6
+144199,185171.4566,288559.4863,0,15.6
+144200,185764.4155,288575.274,0,15.6
+144201,525312.3468,288504.7091,0,15.6
+144202,153856.0143,287212.6906,0,15.6
+144203,154105.0656,288280.9183,0,15.6
+144204,235037.5528,286878.6352,0,15.6
+144205,176480.5515,287458.053,0,15.6
+144206,181274.2965,286663.4868,0,15.6
+144207,188376.3533,286771.3573,0,15.6
+144208,186354.0361,286550.2687,0,15.6
+144209,185774.6737,286184.2336,0,15.6
+144210,186046.5737,285971.0059,0,15.6
+144211,31424.96386,37999.25799,0,15.6
+144212,31422.80293,37945.55914,0,15.6
+144213,31374.6671,37988.41959,0,15.6
+144214,31324.15444,734828.7838,0,15.6
+144215,31350.47366,146894.8072,0,15.6
+144216,31275.78522,255797.3917,945136.425,15.6
+144217,31273.97924,318198.3023,0,15.6
+144218,642852.1417,281841.1463,0,15.6
+144219,31201.04351,285143.7658,0,15.6
+144220,111613.7859,284454.679,0,15.6
+144221,260147.9902,284531.082,0,15.6
+144222,173964.3432,284513.4871,0,15.6
+144223,188242.997,283595.0816,0,15.6
+144224,187983.9296,246322.4326,0,15.6
+144225,188639.2039,246709.9887,0,15.6
+144226,188357.8794,345584.209,0,15.6
+144227,188239.1525,266279.8392,0,15.6
+144228,188928.4757,281830.2082,0,15.6
+144229,188074.5088,653768.8524,0,15.6
+144230,188764.2016,283733.4625,0,15.6
+144231,188856.2576,282124.2506,0,15.6
+144232,188211.1607,283433.927,0,15.6
+144233,189196.1555,283058.0215,0,15.6
+144234,157933.4013,282115.2999,0,15.6
+144235,158001.9022,282665.336,0,15.6
+144236,577655.8486,282656.989,0,15.6
+144237,178572.7243,282025.2856,0,15.6
+144238,185658.5547,282257.8115,0,15.6
+144239,192297.5376,282312.7893,0,15.6
+144240,189551.4896,281826.2907,0,17.8
+144241,1104735.49,1629264.063,0,17.8
+144242,1083023.133,1342149.097,0,17.8
+144243,500149.44,389267.2522,0,17.8
+144244,609687.3179,89466.64811,0,17.8
+144245,415599.155,1043758.411,0,17.8
+144246,467446.8833,490927.1377,0,17.8
+144247,451001.2841,664431.715,0,17.8
+144248,79740.19484,583212.818,0,17.8
+144249,81863.61847,550945.3748,0,17.8
+144250,886807.113,580377.0045,921170.0764,17.8
+144251,500047.1058,587508.137,0,17.8
+144252,348608.8996,602937.5035,0,17.8
+144253,462331.144,584145.2502,0,17.8
+144254,436272.6033,590867.0453,0,17.8
+144255,431522.5691,587397.4606,0,17.8
+144256,429756.572,493245.5723,0,17.8
+144257,429633.9496,491800.6467,0,17.8
+144258,461766.432,655150.8193,0,17.8
+144259,428116.1941,589862.6956,0,17.8
+144260,437198.4108,572791.6995,0,17.8
+144261,440634.7276,593571.2639,0,17.8
+144262,436387.0723,584657.6325,0,17.8
+144263,436452.5307,578999.005,0,17.8
+144264,436067.8273,949755.9817,0,17.8
+144265,435246.2413,578234.1378,0,17.8
+144266,359650.131,579277.7654,0,17.8
+144267,359403.8637,576774.5081,0,17.8
+144268,462187.2941,578333.9807,0,17.8
+144269,456999.5466,575790.984,0,17.8
+144270,435481.8645,576323.28,0,17.8
+144271,781104.805,557295.6078,0,17.8
+144272,429066.9261,558185.3733,0,17.8
+144273,435550.4502,556821.2023,0,17.8
+144274,433221.1217,556848.9207,0,17.8
+144275,432951.7187,89668.79672,0,17.8
+144276,432357.1003,89542.0766,0,17.8
+144277,432068.1293,1102023.216,0,17.8
+144278,431766.5409,357126.0374,0,17.8
+144279,431637.1851,635413.4195,0,17.8
+144280,86709.1618,485415.6524,0,17.8
+144281,86378.56573,550840.1112,0,17.8
+144282,880774.5735,528925.2795,0,17.8
+144283,475788.7832,544394.0339,0,17.8
+144284,343295.6129,589045.9518,898686.2012,17.8
+144285,465146.6257,555283.24,0,17.8
+144286,432076.7551,568875.5748,0,17.8
+144287,430611.986,566318.7178,0,17.8
+144288,417593.7906,479683.5358,0,17.8
+144289,417936.2254,479633.1853,0,17.8
+144290,417691.8043,631678.1516,0,17.8
+144291,417436.9283,566945.6051,0,17.8
+144292,417309.1401,562447.3287,0,17.8
+144293,417074.6941,573819.0973,0,17.8
+144294,416756.6386,561856.6188,0,17.8
+144295,416968.8084,566315.6586,0,17.8
+144296,416331.614,565534.7607,0,17.8
+144297,416794.4516,563657.2048,0,17.8
+144298,343362.3864,565108.2146,0,17.8
+144299,343664.9995,931184.3027,0,17.8
+144300,442622.9007,564933.2806,0,20
+144301,1856326.996,2597651.513,119335.7418,20
+144302,728767.7019,1742690.411,47270.33345,20
+144303,344644.7884,582265.8455,114309.2415,20
+144304,441966.7085,575655.5853,76782.43988,20
+144305,474375.2582,738146.0285,88114.45478,20
+144306,485232.5507,912771.3965,98943.98838,20
+144307,518273.9098,728272.5543,135753.1368,20
+144308,479251.738,770562.769,110238.9951,20
+144309,491957.2104,770009.0527,120085.4056,20
+144310,490270.7718,767925.9744,120733.8537,20
+144311,489371.3233,764683.4465,122318.2405,20
+144312,488048.7161,764521.2327,122538.1325,20
+144313,487130.5906,760752.9812,123554.0902,20
+144314,485290.2453,759424.6367,124805.0368,20
+144315,485570.1537,758271.9482,125293.1027,20
+144316,483626.662,756349.3533,126350.7211,20
+144317,482190.7629,754763.4222,126973.4115,20
+144318,482834.2757,753984.6549,128123.3862,20
+144319,480836.9536,749861.6813,128998.6318,20
+144320,480036.8,752741.5311,129489.1074,20
+144321,480025.3906,748284.1455,130431.4831,20
+144322,477884.0512,748216.6113,131566.1005,20
+144323,478845.0951,746661.7805,132307.199,20
+144324,476438.3736,747061.6216,132750.4619,20
+144325,477306.6494,743293.3524,134260.0734,20
+144326,475532.5913,743876.7582,134884.9778,20
+144327,475273.1155,742856.3928,135372.8363,20
+144328,475380.0072,741563.0977,136538.9418,20
+144329,472688.0517,740820.4135,137268.5387,20
+144330,474699.238,739427.331,138447.9652,20
+144331,472145.9621,739234.3704,138582.7289,20
+144332,473043.2407,737858.8559,139923.636,20
+144333,472087.1535,736411.0389,140342.9827,20
+144334,471678.2467,737326.7476,141734.3185,20
+144335,470497.2823,733524.1786,142067.6235,20
+144336,471008.3277,736337.7022,143178.6741,20
+144337,469824.6179,733034.4763,143609.1517,20
+144338,470615.5286,733765.7088,144829.0596,20
+144339,467761.5406,731454.936,145356.0375,20
+144340,469953.6495,733128.9938,146418.5291,20
+144341,468855.501,730584.0853,146811.6069,20
+144342,467446.3409,730234.0838,147949.6209,20
+144343,468638.4326,726494.25,148625.0989,20
+144344,467426.008,724084.3126,149532.2831,20
+144345,466239.7796,721587.3105,149899.3627,20
+144346,467427.8636,722569.4401,151094.6756,20
+144347,461625.3236,719888.9212,151925.2065,20
+144348,460086.0689,718571.4842,152101.9051,20
+144349,459984.1917,718938.3736,153679.1569,20
+144350,458216.9159,716622.4411,153774.2513,20
+144351,458271.5156,714721.6259,154890.7829,20
+144352,458531.6005,716370.1057,155250.7009,20
+144353,456011.8539,713006.6713,156588.8011,20
+144354,457723.9735,711420.604,156920.3492,20
+144355,455519.6748,712403.9476,157896.4064,20
+144356,454747.4437,710151.6402,158269.0236,20
+144357,456008.8779,708862.8587,159455.7727,20
+144358,453980.7597,708223.8079,159728.5789,20
+144359,453942.9803,707495.5504,160747.7676,20
+144360,452537.5172,706461.0015,161540.0092,21
+144361,607492.3374,1189781.575,147985.4028,21
+144362,601038.7284,1182149.836,147244.829,21
+144363,600700.4658,1179219.477,146456.0199,21
+144364,599273.4862,1175623.149,147227.1169,21
+144365,597508.4874,1172187.985,147148.7832,21
+144366,597716.5603,1170037.329,146660.4485,21
+144367,595757.6811,1165642.03,146939.0531,21
+144368,595204.4757,1164726.45,146584.2092,21
+144369,594409.8719,1158932.586,146922.0466,21
+144370,593507.5533,1158133.268,147174.5787,21
+144371,592861.0605,1155315.307,147057.5366,21
+144372,592372.8357,1150891.35,147190.9493,21
+144373,591229.8667,1149146.947,147416.6795,21
+144374,590395.0175,1146250.792,147528.5025,21
+144375,590525.5302,1141692.763,147596.8255,21
+144376,587833.9376,1142021.491,147831.4174,21
+144377,590668.0863,1136401.855,147822.8677,21
+144378,586825.9829,1134818.337,132318.0908,21
+144379,587758.1239,1132129.356,129658.5175,21
+144380,587172.6782,1129709.803,128464.1465,21
+144381,586343.5787,1125382.212,127028.5778,21
+144382,586115.5635,1124689.444,126193.4289,21
+144383,585433.1193,1120049.472,124885.3552,21
+144384,584002.3639,1118385.501,123501.9895,21
+144385,584561.2827,1114752.859,123043.2101,21
+144386,583776.8865,1112652.832,121319.7603,21
+144387,583221.4878,1109541.518,121205.7621,21
+144388,582902.2437,1107799.383,119491.6358,21
+144389,582315.2242,1103917.725,118889.3319,21
+144390,581517.9739,1101630.003,117599.8349,21
+144391,582083.3777,1099454.829,116633.5384,21
+144392,579846.8842,1095257.893,115656.0945,21
+144393,580778.4836,1094767.61,114005.208,21
+144394,579012.8786,1089498.062,112991.306,21
+144395,579691.7509,1088369.485,111258.4074,21
+144396,578064.4095,1085097.79,110490.8832,21
+144397,578180.3631,1083003.784,108114.0426,21
+144398,577116.2761,1079875.918,106575.5929,21
+144399,577148.5322,1077485.079,105198.046,21
+144400,576618.9063,1073670.19,103623.0123,21
+144401,575906.3372,1072858.12,101793.315,21
+144402,575833.0495,1068739.604,100456.6567,21
+144403,574639.0809,1066291.92,99029.73575,21
+144404,574423.1341,1063351.955,97704.53867,21
+144405,574032.8097,1061563.611,96089.18947,21
+144406,572796.0416,1058818.603,94943.46587,21
+144407,573741.5337,1052679.352,93460.47861,21
+144408,571929.1731,1052628.412,91775.70594,21
+144409,571567.5028,1047314.934,91669.06027,21
+144410,571815.6004,1046352.285,90757.06775,21
+144411,571491.444,1042443.455,90533.10411,21
+144412,569436.1914,1040318.581,90377.71237,21
+144413,570564.7428,1037295.306,89514.79095,21
+144414,569580.4638,1034395.877,89504.70035,21
+144415,568988.2495,1032007.079,88540.62324,21
+144416,568211.0352,1028645.445,88853.59948,21
+144417,568583.8722,1027920.527,87745.08664,21
+144418,566968.2093,1022419.266,87409.97979,21
+144419,566750.4988,1021492.328,86852.97853,21
+144420,567208.5305,1018392.24,86136.18459,21
+144421,431770.2894,783195.107,10896.78519,21
+144422,425871.76,763424.0208,9091.422556,21
+144423,423843.2376,759618.4533,8242.305977,21
+144424,421503.4537,755706.5698,7990.802375,21
+144425,419605.2392,751895.2245,7559.86219,21
+144426,417903.0234,749115.3939,7122.130838,21
+144427,415731.352,744603.1291,6701.618556,21
+144428,414256.2856,741510.2835,6451.971606,21
+144429,412113.3103,737992.876,5978.794786,21
+144430,410533.4018,734590.3387,5737.170757,21
+144431,408485.204,731236.8635,5590.143423,21
+144432,406971.1942,727422.5043,5522.451578,21
+144433,405157.1347,724933.988,5379.507087,21
+144434,403743.1159,720951.6761,5292.426378,21
+144435,401522.9489,717386.6151,5209.878334,21
+144436,400524.1564,714975.1491,5033.151605,21
+144437,398563.084,710620.0082,4964.750075,21
+144438,397032.1969,707889.4281,4861.252824,21
+144439,395607.9968,704205.5766,4748.298557,21
+144440,393923.5316,701145.8435,4599.859047,21
+144441,392450.1685,697524.9031,4516.378506,21
+144442,390918.3819,694315.0386,4409.868499,21
+144443,389773.3836,690885.5437,4279.987236,21
+144444,387650.0228,687680.6775,4164.797582,21
+144445,386866.7698,684719.6945,4056.952045,21
+144446,384756.9061,680437.3574,3929.009696,21
+144447,383949.2307,677862.8178,3775.246394,21
+144448,382242.8632,674535.9945,3597.323973,21
+144449,380666.6311,671528.8425,3539.598973,21
+144450,379431.4515,667740.8646,3355.60621,21
+144451,378099.3303,664519.8838,3282.535231,21
+144452,376459.0679,662255.3521,3145.458934,21
+144453,375036.5596,658273.8915,3008.854761,21
+144454,373926.7934,655693.6591,2931.959168,21
+144455,372071.684,652356.1851,2779.145174,21
+144456,370900.2655,648980.5261,2654.167352,21
+144457,369750.1212,646309.9654,2547.283725,21
+144458,367894.0257,643106.5319,2387.925496,21
+144459,366713.3611,640158.7725,2298.045525,21
+144460,365423.7073,637155.8312,2167.509155,21
+144461,363986.9712,634116.0331,2041.926155,21
+144462,362554.7813,630975.2901,1912.63491,21
+144463,361173.2619,628537.3934,1800.99685,21
+144464,360056.2328,624472.3268,1683.073381,21
+144465,358539.3464,622461.9099,1619.342172,21
+144466,357334.0013,619058.0029,1521.982442,21
+144467,355632.3622,616801.1721,1457.341746,21
+144468,354823.3271,613280.2857,1372.463457,21
+144469,353286.9369,610316.2772,1308.777841,21
+144470,351575.786,607646.615,1222.929152,21
+144471,350982.5118,604485.1945,1139.434599,21
+144472,349051.7404,601720.966,1051.918558,21
+144473,348535.7022,598706.9532,1017.15694,21
+144474,346071.1448,595954.9045,962.9750534,21
+144475,345958.5288,593134.7886,944.8620601,21
+144476,344256.7316,590016.1706,890.3255299,21
+144477,342692.7357,587314.6597,890.3335035,21
+144478,341775.4713,584110.0811,835.5173276,21
+144479,340385.6369,582429.4959,817.1853798,21
+144480,339360.1081,580201.8034,780.415066,21
+144481,337084.9281,577280.306,743.5079412,21
+144482,335890.1938,575951.74,743.5133305,21
+144483,333563.6676,572986.4326,687.8825679,21
+144484,331945.5032,571142.9934,687.8872069,21
+144485,329978.7498,568848.7,631.918863,21
+144486,328569.7709,566502.6125,631.9178128,21
+144487,326217.2126,564657.2543,594.4054284,21
+144488,324757.7481,561982.0778,575.6014224,21
+144489,323131.3378,559966.9541,537.8314109,21
+144490,321006.754,557878.2231,518.8852128,21
+144491,319404.6697,555039.3102,499.8910484,21
+144492,317462.2523,553480.28,461.7552914,21
+144493,315851.5415,550548.0308,442.6130053,21
+144494,314074.3419,548543.0863,404.1669804,21
+144495,312159.3936,546601.0781,384.8611491,21
+144496,310807.3767,543688.8173,365.4965401,21
+144497,308532.5241,541651.3045,326.5799288,21
+144498,307189.7775,539412.7453,326.5810076,21
+144499,305012.6793,536210.2975,267.6944063,21
+144500,303585.1779,534409.0779,267.6951436,21
+144501,302043.6691,531590.821,228.0509716,21
+144502,299719.3293,529694.4721,188.0469454,21
+144503,298736.3303,526872.6585,188.0473096,21
+144504,296287.6959,525230.3803,147.6200397,21
+144505,294833.7281,522330.3196,127.2195333,21
+144506,292848.2295,520188.186,106.6725985,21
+144507,291384.7547,517748.0683,75.52302364,21
+144508,289185.9903,515310.744,43.85158666,21
+144509,287580.7815,512977.0683,43.85160664,21
+144510,286159.9064,510729.7927,0,21
+144511,283746.4366,507775.2688,0,21
+144512,282592.5148,505779.3929,0,21
+144513,280457.2193,503227.4728,0,21
+144514,278856.693,500605.278,0,21
+144515,277300.4638,498815.5677,0,21
+144516,275312.7745,495311.8771,0,21
+144517,273943.2712,493477.9607,0,21
+144518,271895.0045,490849.1109,0,21
+144519,270371.6305,488252.843,0,21
+144520,268598.202,485743.0473,0,21
+144521,266780.6916,483552.7239,0,21
+144522,265174.7174,480745.1053,0,21
+144523,263385.0555,478154.7607,0,21
+144524,261804.7568,475571.5058,0,21
+144525,260002.1512,472465.3233,0,21
+144526,258146.5929,469294.7673,0,21
+144527,256751.3164,466664.6352,0,21
+144528,254626.0379,463762.9243,0,21
+144529,253275.5707,461502.9025,0,21
+144530,251323.3378,458379.7517,0,21
+144531,249591.6258,455683.6954,0,21
+144532,247593.4633,453066.3528,0,21
+144533,246504.0894,450172.04,0,21
+144534,244076.3041,447284.699,0,21
+144535,243008.1646,444492.1849,0,21
+144536,240710.9113,441633.3975,0,21
+144537,239267.4939,438878.6099,0,21
+144538,237590.2894,435953.2056,0,21
+144539,235916.077,432750.8729,0,21
+144540,235534.433,431074.0704,0,21
+144541,238253.3218,425430.409,0,21
+144542,237703.1946,421919.9748,0,21
+144543,237431.5982,418222.3146,0,21
+144544,236403.558,414834.3796,0,21
+144545,235841.3784,410841.5778,0,21
+144546,235284.8067,407548.1025,0,21
+144547,234670.0311,403311.2206,0,21
+144548,233854.6065,400346.1554,0,21
+144549,233459.6178,396346.1361,0,21
+144550,232463.4011,392643.2678,0,21
+144551,232031.8842,389223.8958,0,21
+144552,231585.8811,385466.2889,0,21
+144553,230628.7563,381680.292,0,21
+144554,230018.6594,378295.2924,0,21
+144555,229427.5751,374404.1886,0,21
+144556,228941.6349,370569.6965,0,21
+144557,228140.6379,367243.4918,0,21
+144558,227410.4926,363090.4696,0,21
+144559,226958.8939,359605.158,0,21
+144560,226350.4374,355868.2495,0,21
+144561,225312.6141,351739.6993,0,21
+144562,225199.3204,348463.5597,0,21
+144563,224085.0488,344245.496,0,21
+144564,223828.4482,340693.6097,0,21
+144565,222905.868,336817.8116,0,21
+144566,222342.1211,332901.4838,0,21
+144567,221681.3385,329320.2274,0,21
+144568,221012.839,324996.8539,0,21
+144569,220481.9337,321636.7035,0,21
+144570,219936.5905,317584.1229,0,21
+144571,219273.7972,313932.8943,0,21
+144572,218489.5052,309727.6349,0,21
+144573,217880.3201,306343.9799,0,21
+144574,217591.0864,302320.708,0,21
+144575,216717.7518,298513.3878,0,21
+144576,216191.9403,294861.4374,0,21
+144577,215834.8671,290974.3826,0,21
+144578,214961.9303,286854.1192,0,21
+144579,214644.015,283467.9143,0,21
+144580,213743.4611,279243.9112,0,21
+144581,213570.2814,275985.0645,0,21
+144582,212549.5001,271543.8277,0,21
+144583,212343.7382,268395.6001,0,21
+144584,211831.3386,265792.1111,0,21
+144585,210924.8715,263222.2576,0,21
+144586,210454.0449,260415.7573,0,21
+144587,210185.8933,258103.7001,0,21
+144588,209136.0073,254981.5715,0,21
+144589,208828.1413,252922.1012,0,21
+144590,208442.8637,249858.7651,0,21
+144591,207606.1585,247359.9068,0,21
+144592,207345.4675,244864.2799,0,21
+144593,206230.152,241949.5935,0,21
+144594,206265.4374,239335.3881,0,21
+144595,205445.2086,237140.0608,0,21
+144596,204880.6733,233688.9116,0,21
+144597,204228.8192,231727.1129,0,21
+144598,204026.2462,228878.8844,0,21
+144599,203166.3493,226153.6113,0,21
+144600,202594.7375,223695.9761,0,21
+144601,196389.361,223187.4421,0,21
+144602,194550.3513,221532.9308,0,21
+144603,193050.587,219600.1037,0,21
+144604,191404.1371,218022.4424,0,21
+144605,189985.2359,216178.6481,0,21
+144606,188272.2628,214455.0393,0,21
+144607,186621.2775,213069.7257,0,21
+144608,185475.6938,210914.2436,0,21
+144609,183403.6892,209615.5196,0,21
+144610,182104.6258,207640.4815,0,21
+144611,180589.7923,206035.2483,0,21
+144612,178700.5534,204201.4513,0,21
+144613,177650.5901,202718.2787,0,21
+144614,175403.8068,200851.1497,0,21
+144615,174584.2031,199342.0263,0,21
+144616,172602.3372,197362.8842,0,21
+144617,171150.1244,195927.0783,0,21
+144618,169274.8015,194155.2618,0,21
+144619,168207.8263,192459.0967,0,21
+144620,166456.5339,190845.7138,0,21
+144621,164711.4418,189020.7667,0,21
+144622,163269.3945,187196.3859,0,21
+144623,161898.5921,185325.0948,0,21
+144624,160115.3361,184335.1341,0,21
+144625,158799.0182,182258.685,0,21
+144626,156963.5589,180828.3061,0,21
+144627,155648.0277,179174.0401,0,21
+144628,153736.8332,177680.6099,0,21
+144629,152680.4949,175957.7917,0,21
+144630,150779.9412,174237.1739,0,21
+144631,148939.1794,172896.7921,0,21
+144632,147127.2159,171004.9859,0,21
+144633,144266.8265,169845.5886,0,21
+144634,142014.4319,167590.5637,0,21
+144635,140361.5903,166643.3192,0,21
+144636,138207.4703,164631.083,0,21
+144637,136090.0564,163366.546,0,21
+144638,134547.8533,161425.1108,0,21
+144639,132377.1059,159898.6239,0,21
+144640,129266.7054,158304.8324,0,21
+144641,127022.965,156561.6987,0,21
+144642,124825.0326,155047.2126,0,21
+144643,123992.8965,153535.1908,0,21
+144644,122558.2999,151706.9065,0,21
+144645,121386.6238,150155.5293,0,21
+144646,119902.574,148522.6634,0,21
+144647,118717.2397,146592.9597,0,21
+144648,117731.8443,144631.3358,0,21
+144649,116063.9702,142912.808,0,21
+144650,114817.5575,141171.4163,0,21
+144651,113887.8617,139498.3033,0,21
+144652,112475.0867,137830.6823,0,21
+144653,111207.6541,135955.5084,0,21
+144654,110194.8141,134345.3926,0,21
+144655,108961.2211,132542.8578,0,21
+144656,107582.3425,130830.968,0,21
+144657,106570.3123,129260.765,0,21
+144658,105324.7651,127278.6733,0,21
+144659,104243.0062,125784.0306,0,21
+144660,102719.0236,124091.8074,0,21
+144661,120699.3373,133538.8544,0,21
+144662,120002.919,132760.7057,0,21
+144663,119396.1497,131580.5715,0,21
+144664,119045.4566,130475.2472,0,21
+144665,118369.0097,129708.0373,0,21
+144666,117776.8992,128308.881,0,21
+144667,116991.8898,127527.0051,0,21
+144668,116989.6782,126565.2637,0,21
+144669,115936.4342,125451.81,0,21
+144670,115565.9511,124891.6229,0,21
+144671,114890.7199,123826.9398,0,21
+144672,114463.1561,123134.3421,0,21
+144673,113733.3889,122056.4307,0,21
+144674,113395.667,121525.7128,0,21
+144675,112825.8676,120421.0873,0,21
+144676,112367.4097,119723.7907,0,21
+144677,111760.0416,118756.8562,0,21
+144678,111272.8903,117693.6744,0,21
+144679,110669.1086,117216.8223,0,21
+144680,110191.6714,116002.1445,0,21
+144681,109399.6873,115261.5847,0,21
+144682,109056.9387,114305.0049,0,21
+144683,108422.55,111668.0602,0,21
+144684,107617.0194,104996.2478,0,21
+144685,107444.2661,105852.9344,0,21
+144686,106123.9491,103481.5584,0,21
+144687,106106.8607,101263.2121,0,21
+144688,105453.1837,99576.42894,0,21
+144689,104286.2487,97395.07121,0,21
+144690,104261.9231,95956.06325,0,21
+144691,103105.9299,93534.13535,0,21
+144692,102990.5857,92156.53826,0,21
+144693,102009.9182,90156.47046,0,21
+144694,101508.9787,88226.83683,0,21
+144695,100870.2382,86558.98973,0,21
+144696,100483.734,84894.32259,0,21
+144697,99874.4154,82650.70499,0,21
+144698,98925.14881,81366.86244,0,21
+144699,98701.02858,79120.28857,0,21
+144700,97931.63845,76884.25044,0,21
+144701,97616.09463,75271.01005,0,21
+144702,96502.3516,73303.1674,0,21
+144703,96464.87026,71319.67537,0,21
+144704,95693.04858,69405.64037,0,21
+144705,95189.99365,68298.95671,0,21
+144706,94698.51582,66178.07556,0,21
+144707,94064.47858,64301.7972,0,21
+144708,93650.24187,62735.53707,0,21
+144709,92953.28487,60775.9282,0,21
+144710,92589.60374,59073.67543,0,21
+144711,92086.49357,57554.07136,0,21
+144712,91564.01454,55948.95038,0,21
+144713,91198.5748,54353.37379,0,21
+144714,90558.66484,52658.46106,0,21
+144715,90223.97491,52376.4325,0,21
+144716,89786.42115,52329.91689,0,21
+144717,89285.2298,52174.97788,0,21
+144718,88916.93453,52155.53217,0,21
+144719,88368.56201,51913.1752,0,21
+144720,88054.34136,51738.32769,0,21
+144721,69526.12024,41138.25814,0,21
+144722,67883.30944,40693.09162,0,21
+144723,67406.59797,40558.99253,0,21
+144724,66100.8533,40110.3351,0,21
+144725,65490.20256,39998.49805,0,21
+144726,64282.02283,39560.39547,0,21
+144727,63367.14633,39500.29257,0,21
+144728,62626.03423,39303.34657,0,21
+144729,61497.78638,38652.08228,0,21
+144730,60582.32958,38802.66196,0,21
+144731,59762.84162,38393.24143,0,21
+144732,58553.90687,37936.14404,0,21
+144733,57819.49627,38122.57918,0,21
+144734,56756.68782,37455.78651,0,21
+144735,55783.90765,37444.82295,0,21
+144736,54693.12218,37091.74408,0,21
+144737,53924.85286,36768.95685,0,21
+144738,52478.67224,36721.99126,0,21
+144739,51788.84509,36481.77652,0,21
+144740,50256.3529,35831.60408,0,21
+144741,49582.10194,36019.81947,0,21
+144742,47971.98674,35565.98383,0,21
+144743,47185.16298,35543.70068,0,21
+144744,46572.43336,34972.84927,0,21
+144745,46068.94288,34936.26333,0,21
+144746,45843.27969,34741.16576,0,21
+144747,45240.19599,34327.90968,0,21
+144748,45075.64066,34153.51078,0,21
+144749,44472.61097,33859.53236,0,21
+144750,44066.38697,33752.47524,0,21
+144751,43965.88864,33293.78568,0,21
+144752,43515.96141,33469.57366,0,21
+144753,43180.17341,32807.8888,0,21
+144754,42976.08292,32675.45975,0,21
+144755,42637.30861,32522.55522,0,21
+144756,42583.32949,32401.02904,0,21
+144757,42054.7898,31950.17493,0,21
+144758,41909.71584,31685.64541,0,21
+144759,41978.68443,31660.45385,0,21
+144760,41374.5444,31434.55413,0,21
+144761,41687.4752,30964.55944,0,21
+144762,41137.02055,31009.60422,0,21
+144763,41254.1057,30495.55166,0,21
+144764,40843.5844,30635.8159,0,21
+144765,41108.26797,30104.68799,0,21
+144766,40593.10104,30152.36074,0,21
+144767,40673.44777,29605.86004,0,21
+144768,40423.78408,29543.0456,0,21
+144769,40265.93458,29445.00669,0,21
+144770,39862.28854,29043.16927,0,21
+144771,39806.40378,28843.11441,0,21
+144772,39807.75817,28660.62517,0,21
+144773,39658.47447,28427.52955,0,21
+144774,39440.06174,28163.42539,0,21
+144775,39500.37006,27933.45643,0,21
+144776,39291.21203,27550.9774,0,21
+144777,39246.99621,27284.54585,0,21
+144778,39225.46625,27041.16236,0,21
+144779,39005.31045,26900.0773,0,21
+144780,39180.86699,26303.59771,0,21
+144781,44497.08669,25377.87033,0,21
+144782,44826.31386,25014.32656,0,21
+144783,44592.80885,24752.48612,0,21
+144784,44565.97849,24241.82483,0,21
+144785,44355.63882,24102.99517,0,21
+144786,44204.23761,23728.16191,0,21
+144787,44275.98511,24155.07255,0,21
+144788,43871.44936,26542.727,0,21
+144789,43795.0605,24374.07957,0,21
+144790,43814.46853,24978.6114,0,21
+144791,43544.53082,24881.12433,0,21
+144792,43150.0646,24368.0021,0,21
+144793,43308.89629,24583.89613,0,21
+144794,43045.51604,24129.93153,0,21
+144795,42835.30255,24240.65332,0,21
+144796,42412.37704,23756.12428,0,21
+144797,42475.91958,23892.02264,0,21
+144798,42141.85591,23466.73883,0,21
+144799,41876.55529,23372.8076,0,21
+144800,41576.20101,23187.41389,0,21
+144801,41432.3126,23026.62119,0,21
+144802,40973.61877,22781.8952,0,21
+144803,40766.18652,22664.36795,0,21
+144804,40488.43536,22521.62568,0,21
+144805,39865.12005,22526.43172,0,21
+144806,39802.61339,22484.00016,0,21
+144807,39165.27585,22212.3258,0,21
+144808,39090.2477,22373.85223,0,21
+144809,38370.80587,22216.56063,0,21
+144810,38097.08977,22188.04313,0,21
+144811,37530.81709,21942.58882,0,21
+144812,37254.02101,22031.02656,0,21
+144813,36509.31262,21782.75564,0,21
+144814,36010.04991,21769.23281,0,21
+144815,35532.78182,21739.08551,0,21
+144816,34934.51225,21489.65921,0,21
+144817,34251.02867,21196.79854,0,21
+144818,33631.17076,21430.74332,0,21
+144819,33040.6056,21218.2267,0,21
+144820,32492.52905,20856.223,0,21
+144821,31607.1546,21037.76868,0,21
+144822,31220.96926,20584.15229,0,21
+144823,30146.57889,20487.14323,0,21
+144824,29690.09223,20414.951,0,21
+144825,28813.10011,20039.22396,0,21
+144826,27974.96982,20017.33721,0,21
+144827,27214.42174,19716.14841,0,21
+144828,26478.09114,19586.35153,0,21
+144829,25758.15958,19297.31308,0,21
+144830,24574.27375,18993.47425,0,21
+144831,23950.27876,18841.07812,0,21
+144832,23378.2746,18708.98115,0,21
+144833,23312.11295,18009.33065,0,21
+144834,22994.32419,18106.96253,0,21
+144835,22916.70145,17827.18765,0,21
+144836,22969.50648,17123.24168,0,21
+144837,22549.85087,17216.77881,0,21
+144838,22691.08953,16680.91502,0,21
+144839,22496.40081,16346.20424,0,21
+144840,22454.55709,16225.59119,0,21
+144841,16298.80885,10106.32403,0,21
+144842,16044.70814,9695.402229,0,21
+144843,16051.96645,9373.290014,0,21
+144844,15815.96993,8820.090085,0,21
+144845,15795.51286,8524.073844,0,21
+144846,15795.51358,8197.130982,0,21
+144847,15685.72771,7615.994022,0,21
+144848,15588.45588,7331.452002,0,21
+144849,15563.05005,6845.06559,0,21
+144850,15575.76665,6403.464809,0,21
+144851,15355.3035,5981.082132,0,21
+144852,15563.05232,5977.745667,0,21
+144853,15134.12014,5034.639605,0,21
+144854,15342.54011,5082.059508,0,21
+144855,15342.54088,4762.144566,0,21
+144856,15121.30616,4718.272275,0,21
+144857,15121.30679,4287.448042,0,21
+144858,15108.46532,3810.100277,0,21
+144859,14912.21152,3238.910066,0,21
+144860,15095.59911,2963.483527,0,21
+144861,14886.45156,2282.765738,0,21
+144862,14886.45225,1886.851843,0,21
+144863,14676.64532,1405.735004,0,21
+144864,14873.53358,1279.996563,0,21
+144865,14663.70029,1588.305364,0,21
+144866,14663.70138,1411.857803,0,21
+144867,14650.72937,1580.327853,0,21
+144868,14637.73065,1564.200381,0,21
+144869,14440.20381,1723.399082,0,21
+144870,14427.17825,1715.232624,0,21
+144871,14526.02484,1715.22892,0,21
+144872,14414.12909,2030.294513,0,21
+144873,14215.95547,1865.032898,0,21
+144874,14401.04988,2013.683974,0,21
+144875,14202.87613,2030.290195,0,21
+144876,14176.63339,2152.418131,0,21
+144877,14202.87718,2178.059936,0,21
+144878,14163.47158,2316.297772,0,21
+144879,13977.80735,2380.743916,0,21
+144880,14163.47275,2484.107806,0,21
+144881,13951.45381,2524.633025,0,21
+144882,13964.64563,2669.258764,0,21
+144883,13938.23528,2679.589942,0,21
+144884,13938.23617,2679.596201,0,21
+144885,13725.4995,3004.482151,0,21
+144886,13938.23725,2852.622137,0,21
+144887,13712.22384,3004.482656,0,21
+144888,13712.22433,3024.605837,0,21
+144889,13712.22474,3316.186087,0,21
+144890,13598.92512,3034.57065,0,21
+144891,13698.91323,3485.976824,0,21
+144892,13485.40563,3346.091545,0,21
+144893,13585.569,3495.885401,0,21
+144894,13472.04268,3515.555117,0,21
+144895,13472.04319,3664.711282,0,21
+144896,13472.0437,3346.071337,0,21
+144897,13244.39324,3645.042821,0,21
+144898,13472.04473,3365.754349,0,21
+144899,13230.9408,3813.258631,0,21
+144900,13445.22887,3515.555173,0,21
+144901,13143.7213,3813.25595,0,21
+144902,13431.7751,3664.708825,0,21
+144903,13244.39446,3832.740671,0,21
+144904,13331.44309,3664.709191,0,21
+144905,13344.89655,3813.264417,0,21
+144906,13431.77512,3832.733881,0,21
+144907,13244.3945,3813.264817,0,21
+144908,13418.29137,3980.686985,0,21
+144909,13445.22865,3813.265527,0,21
+144910,13331.44321,3980.687564,0,21
+144911,13431.77526,3832.742636,0,21
+144912,13445.22876,3961.219419,0,21
+144913,13418.29154,4128.071887,0,21
+144914,13445.22884,3832.743461,0,21
+144915,13531.93836,4128.072627,0,21
+144916,13431.77548,3980.696697,0,21
+144917,13531.4712,4128.073111,0,21
+144918,13532.12667,4128.073364,0,21
+144919,13545.27173,4128.073596,0,21
+144920,13518.39473,4128.074069,0,21
+144921,13645.33012,4294.200916,0,21
+144922,13531.83839,4128.074641,0,21
+144923,13631.89222,4274.891803,0,21
+144924,13631.86618,4147.384818,0,21
+144925,13645.32376,4421.165929,0,21
+144926,13631.87187,4294.202504,0,21
+144927,13731.69943,4274.893186,0,21
+144928,13645.32551,4440.476764,0,21
+144929,13831.36043,4294.203605,0,21
+144930,13645.32587,4421.16797,0,21
+144931,13831.36408,4450.080792,0,21
+144932,13844.81907,4430.850688,0,21
+144933,13844.81943,4586.231448,0,21
+144934,13844.81952,4440.486176,0,21
+144935,13844.81964,4440.486402,0,21
+144936,13944.31556,4586.232169,0,21
+144937,13957.73885,4586.232327,0,21
+144938,14043.64796,4586.23304,0,21
+144939,13858.24424,4605.390917,0,21
+144940,14156.23969,4721.829654,0,21
+144941,14043.64836,4595.830685,0,21
+144942,14070.46521,4731.464992,0,21
+144943,14156.23973,4605.391539,0,21
+144944,14169.63401,4876.195399,0,21
+144945,14255.24629,4595.831812,0,21
+144946,14169.63427,4895.35338,0,21
+144947,14268.63982,4731.466241,0,21
+144948,14268.63985,4895.353656,0,21
+144949,14479.53058,4741.063437,0,21
+144950,14268.64048,4895.354267,0,21
+144951,14492.86606,4876.196891,0,21
+144952,14367.48455,4904.880152,0,21
+144953,14492.86608,5039.595124,0,21
+144954,14479.53156,4885.794122,0,21
+144955,14689.75316,5039.595208,0,21
+144956,14492.8667,4895.355123,0,21
+144957,14703.05945,5183.358536,0,21
+144958,14591.39001,4904.880805,0,21
+144959,14703.05949,5183.358474,0,21
+144960,14801.26529,5364.559334,0,21
+144961,25329.69233,15881.35457,0,21
+144962,26059.82374,16547.94758,0,21
+144963,26250.02274,16668.50092,0,21
+144964,26428.48317,17614.43734,0,21
+144965,26617.8169,18086.96532,0,21
+144966,27992.39242,17911.61796,0,21
+144967,28061.62866,18107.90431,0,21
+144968,28194.00468,22470.51178,0,21
+144969,28381.41549,24355.41313,0,21
+144970,28618.8336,22634.90316,0,21
+144971,31153.30758,23403.48779,0,21
+144972,34028.41894,23995.51129,0,21
+144973,32629.54217,24403.68489,0,21
+144974,33467.4067,24976.18446,0,21
+144975,33963.93512,24898.1174,0,21
+144976,34419.90271,25350.49728,0,21
+144977,34742.43265,25378.15446,0,21
+144978,35157.21762,25485.97526,0,21
+144979,35537.53807,25843.82414,0,21
+144980,35844.43021,25961.14237,0,21
+144981,36236.41873,25871.38647,0,21
+144982,36620.63721,26320.25243,0,21
+144983,37017.75326,26345.12433,0,21
+144984,37329.83085,26452.19923,0,21
+144985,37589.26684,26941.20445,0,21
+144986,37935.94757,27062.27117,0,21
+144987,38383.13014,27174.1808,0,21
+144988,38651.16342,27074.69552,0,21
+144989,38917.80615,27544.82181,0,21
+144990,39430.64962,27413.47064,0,21
+144991,39638.22753,27675.44406,0,21
+144992,39950.53705,27675.43722,0,21
+144993,40306.03046,27899.37351,0,21
+144994,40620.31569,27934.20513,0,21
+144995,40905.85404,28016.99042,0,21
+144996,41411.70671,28288.07208,0,21
+144997,41968.6754,28054.64977,0,21
+144998,42479.8084,28498.5598,0,21
+144999,42852.26497,28415.46516,0,21
+145000,43011.39945,28525.72946,0,21
+145001,43591.58521,28665.36704,0,21
+145002,43635.13395,28743.42602,0,21
+145003,44200.50331,28912.4663,0,21
+145004,44504.90198,28885.36526,0,21
+145005,44605.47615,29014.69011,0,21
+145006,45249.84182,29041.75199,0,21
+145007,45139.75139,29248.79816,0,21
+145008,45826.06358,29363.06973,0,21
+145009,46024.7101,29170.83031,0,21
+145010,46211.69661,29504.20357,0,21
+145011,46607.66216,29497.09217,0,21
+145012,46926.43241,29527.75061,0,21
+145013,47227.20192,29737.5094,0,21
+145014,47311.71723,29634.92872,0,21
+145015,48011.68249,29874.65878,0,21
+145016,47809.5811,29766.61519,0,21
+145017,48555.60534,30118.01416,0,21
+145018,48423.88488,29889.18112,0,21
+145019,49127.16105,29903.70694,0,21
+145020,49269.15716,30105.57166,0,21
+145021,58174.31128,39093.72121,0,21
+145022,59255.70729,40402.09757,0,21
+145023,59469.18285,40761.9329,0,21
+145024,59800.00617,41402.69837,0,21
+145025,60258.51619,41984.44486,0,21
+145026,60450.15199,42505.76989,0,21
+145027,60650.8558,43092.41526,0,21
+145028,61113.48551,43715.72749,0,21
+145029,61422.09156,44481.79805,0,21
+145030,61613.94816,44614.03439,0,21
+145031,61801.79849,45433.59856,0,21
+145032,62095.03352,45874.3348,0,21
+145033,62584.05311,46612.86118,0,21
+145034,62733.41484,46667.38213,0,21
+145035,62795.21835,47559.06925,0,21
+145036,63388.42988,47767.82328,0,21
+145037,63281.27939,48627.61669,0,21
+145038,63863.10771,48696.80891,0,21
+145039,63945.70999,49442.9005,0,21
+145040,64198.79701,49973.2714,0,21
+145041,64406.08916,50231.7749,0,21
+145042,64712.90525,50862.47721,0,21
+145043,65027.85331,51306.22303,0,21
+145044,65053.0033,51759.08722,0,21
+145045,65520.16691,52374.22941,0,21
+145046,65666.39156,52629.93236,0,21
+145047,65706.44266,53345.42542,0,21
+145048,66174.35598,53521.358,0,21
+145049,66445.40889,54299.55734,0,21
+145050,66509.5228,54552.95471,0,21
+145051,67124.37446,54761.96776,0,21
+145052,67452.01757,55538.10973,0,21
+145053,67876.84169,55533.29396,0,21
+145054,68038.60506,56198.39461,0,21
+145055,68118.31046,56852.88922,0,21
+145056,68690.75315,57065.70764,0,21
+145057,68684.03072,57686.88996,0,21
+145058,69039.68,58116.39249,0,21
+145059,69435.78277,58521.50853,0,21
+145060,69248.21231,58952.14066,0,21
+145061,69915.04638,59459.02643,0,21
+145062,69984.83118,59978.30003,0,21
+145063,69970.21795,60392.33957,0,21
+145064,70381.12115,60782.92899,0,21
+145065,70997.65334,61234.54214,0,21
+145066,71304.97447,61798.74611,0,21
+145067,71571.43853,62056.43721,0,21
+145068,72066.75991,62796.00035,0,21
+145069,72080.70572,62900.74431,0,21
+145070,72808.89008,63757.40681,0,21
+145071,72836.44472,64137.24321,0,21
+145072,73425.34257,64784.07501,0,21
+145073,73423.02607,65271.18426,0,21
+145074,73990.94781,65455.9883,0,21
+145075,74231.79919,66207.90035,0,21
+145076,74680.26027,66452.88461,0,21
+145077,74937.053,67207.21019,0,21
+145078,75198.00541,67435.08029,0,21
+145079,75622.23798,68018.85349,0,21
+145080,75803.84828,68408.1039,0,21
+145081,76576.82248,68408.11921,0,21
+145082,77861.83949,69165.49116,0,21
+145083,79784.4932,69057.35553,0,21
+145084,81603.57484,69392.08522,0,21
+145085,83468.33482,69755.57653,0,21
+145086,85521.83199,69648.0907,0,21
+145087,87047.07523,70208.19412,0,21
+145088,89369.16269,70386.73526,0,21
+145089,90938.25274,70572.97491,0,21
+145090,92942.54925,70812.61395,0,21
+145091,94944.66252,71168.32089,0,21
+145092,99054.39364,71058.35322,0,21
+145093,101463.5531,71898.51309,0,21
+145094,103819.412,71484.17033,0,21
+145095,106206.9909,72121.02086,0,21
+145096,108572.581,72343.71284,0,21
+145097,110631.812,72222.51865,0,21
+145098,113330.4252,73298.95624,0,21
+145099,115298.2073,73939.38365,0,21
+145100,117565.7798,74040.25704,0,21
+145101,119990.8702,74267.92384,0,21
+145102,122446.1404,74722.78292,0,21
+145103,124550.9252,75009.71997,0,21
+145104,127091.7016,75384.52452,0,21
+145105,129498.272,75418.82931,0,21
+145106,131904.7094,76064.1264,0,21
+145107,134383.0403,76314.58883,0,21
+145108,136710.53,76349.45185,0,21
+145109,139149.6918,76960.93635,0,21
+145110,141705.9844,77142.73507,0,21
+145111,143949.3984,77467.44113,0,21
+145112,146489.914,77873.13048,0,21
+145113,148664.2277,78051.55007,0,21
+145114,151082.4795,78853.03368,0,21
+145115,153157.0241,79230.86586,0,21
+145116,156007.4604,79426.38287,0,21
+145117,157608.5072,80110.84933,0,21
+145118,160451.5038,80200.29956,0,21
+145119,162515.398,87416.55499,0,21
+145120,164742.3257,84875.40698,0,21
+145121,167228.4992,86612.51375,0,21
+145122,169345.396,87213.63468,0,21
+145123,171641.3941,88944.56827,0,21
+145124,173900.8071,93083.84658,0,21
+145125,176060.2457,93949.76611,0,21
+145126,178446.4899,94526.36923,0,21
+145127,182399.5676,97128.90849,0,21
+145128,185023.4795,97238.00367,0,21
+145129,187288.8033,99969.69949,0,21
+145130,189429.232,100338.9782,0,21
+145131,191810.4043,102277.9278,0,21
+145132,194261.9,103730.5141,0,21
+145133,196043.5908,104655.6013,0,21
+145134,198784.0214,105383.6293,0,21
+145135,200683.549,108005.939,0,21
+145136,203053.9958,108495.3973,0,21
+145137,205111.334,109848.1835,0,21
+145138,207429.6009,111458.2268,0,21
+145139,209616.3326,111698.1694,0,21
+145140,212092.7165,114457.2691,0,21
+145141,214594.4075,123060.4755,0,21
+145142,215417.0934,125814.2944,0,21
+145143,216486.1619,128100.829,0,21
+145144,216474.4019,130507.5225,0,21
+145145,217512.4422,131280.9819,0,21
+145146,218150.3244,133576.2121,0,21
+145147,218526.27,135237.4504,0,21
+145148,219188.2776,137572.4371,0,21
+145149,219757.6183,138096.6039,0,21
+145150,220303.6421,140754.5456,0,21
+145151,221013.4876,141795.1336,0,21
+145152,221184.9522,143888.5425,0,21
+145153,222359.8951,145247.0501,0,21
+145154,222151.4319,147270.6982,0,21
+145155,227803.921,148288.7065,0,21
+145156,225940.7638,150965.4297,0,21
+145157,228149.0617,153898.2469,0,21
+145158,228956.5508,156582.0361,0,21
+145159,230092.2325,161764.8261,0,21
+145160,231526.2146,164079.9185,0,21
+145161,232483.4094,167899.1213,0,21
+145162,233464.3858,171542.4643,0,21
+145163,234377.592,175341.3659,0,21
+145164,235191.6418,178472.5907,0,21
+145165,236127.0822,182861.4404,0,21
+145166,236921.1909,186216.2702,0,21
+145167,238002.1444,190694.4178,0,21
+145168,238560.5322,192210.3223,0,21
+145169,239663.6146,197579.3342,0,21
+145170,240008.4901,200777.2426,0,21
+145171,241395.5161,207477.547,0,21
+145172,241616.4985,212436.2199,0,21
+145173,242713.014,216809.9463,0,21
+145174,243405.3399,219977.2164,0,21
+145175,244177.3927,223609.7311,0,21
+145176,244721.3126,229318.9234,0,21
+145177,245567.2839,232176.1446,0,21
+145178,247669.2094,237763.2725,0,21
+145179,247851.4971,240560.3253,0,21
+145180,248634.4376,245584.8452,0,21
+145181,249304.8424,249137.8076,0,21
+145182,249638.5221,254088.7551,0,21
+145183,250952.2789,256986.9627,0,21
+145184,251322.5438,262228.6091,0,21
+145185,252395.6501,266092.5285,0,21
+145186,252746.7573,269304.7403,0,21
+145187,253864.2806,274731.955,0,21
+145188,254290.4699,277004.854,0,21
+145189,255335.5178,283094.0834,0,21
+145190,255591.7126,285169.6529,0,21
+145191,256553.0973,290502.5675,0,21
+145192,257267.2165,294477.5662,0,21
+145193,258135.4763,297686.5645,0,21
+145194,258256.7449,301580.8139,0,21
+145195,259246.0325,307158.1696,0,21
+145196,260143.2066,308620.355,0,21
+145197,260401.7851,315186.9445,0,21
+145198,261162.4504,317143.6087,0,21
+145199,261824.8839,322124.69,0,21
+145200,262512.8253,325626.7699,0,21
+145201,263012.7656,328879.2624,0,21
+145202,263824.3232,331249.8039,0,21
+145203,264511.7034,339921.3567,0,21
+145204,265197.1944,340928.5857,0,21
+145205,265842.8467,344719.9392,0,21
+145206,266610.1385,348232.6473,0,21
+145207,267025.2102,349599.8448,0,21
+145208,267656.3144,352624.0971,0,21
+145209,268450.8923,355129.9429,0,21
+145210,268990.4278,358627.5985,0,21
+145211,269305.5809,360863.4954,0,21
+145212,270357.2362,363167.4978,0,21
+145213,270658.5677,366064.4526,0,21
+145214,271361.826,367915.0639,0,21
+145215,271938.6261,372020.7257,0,21
+145216,272477.6004,372719.6427,0,21
+145217,273055.684,376112.5461,0,21
+145218,273925.0819,379556.0687,0,21
+145219,273797.3319,380595.6196,0,21
+145220,274875.8693,383644.2245,0,21
+145221,275679.7789,385979.6697,0,21
+145222,275473.981,388644.2266,0,21
+145223,276610.886,390337.7033,0,21
+145224,276669.3275,394246.1069,0,21
+145225,277593.6207,395451.814,0,21
+145226,277894.7882,398011.654,0,21
+145227,278646.3642,400683.7359,0,21
+145228,278817.4047,402451.6304,0,21
+145229,279772.1436,405401.495,0,21
+145230,279957.8522,407582.15,0,21
+145231,280275.8816,409909.9901,0,21
+145232,281487.7894,412173.8185,0,21
+145233,281184.5845,413890.1433,0,21
+145234,282263.6213,417803.8225,0,21
+145235,282404.1593,418187.7825,0,21
+145236,283065.7583,421817.9315,0,21
+145237,283313.1715,423672.2084,0,21
+145238,284088.9818,425519.1803,0,21
+145239,284304.1184,428725.7948,0,21
+145240,284725.2817,430069.9831,0,21
+145241,285579.263,432833.8361,0,21
+145242,285710.5284,435294.9795,0,21
+145243,286244.0265,436047.7744,0,21
+145244,286413.1353,440506.146,0,21
+145245,287373.3924,441081.717,0,21
+145246,287339.7669,443204.9084,0,21
+145247,288137.0189,446644.6734,0,21
+145248,288546.4447,447133.0015,0,21
+145249,288577.2631,450490.1772,0,21
+145250,289341.9998,452826.6864,0,21
+145251,289883.416,454409.164,0,21
+145252,289931.701,456395.2058,0,21
+145253,290561.2884,458472.5242,0,21
+145254,290810.3706,461914.7132,0,21
+145255,291476.1459,462465.8005,0,21
+145256,291604.0308,465343.2977,0,21
+145257,292391.5669,466976.4551,0,21
+145258,292301.7516,469351.8389,0,21
+145259,292980.222,471514.7697,0,21
+145260,293138.1482,474090.6309,0,21
+145261,0,0,0,21
+145262,0,0,0,21
+145263,83076.53314,0,0,21
+145264,0,122.4485343,0,21
+145265,0,0,1306762.534,21
+145266,0,368129.6486,0,21
+145267,339740.7697,0,0,21
+145268,0,144.021148,0,21
+145269,0,0,0,21
+145270,0,0,0,21
+145271,0,0,0,21
+145272,0,104.4440453,0,21
+145273,0,0,0,21
+145274,0,0,0,21
+145275,0,0,0,21
+145276,0,115.6002945,0,21
+145277,0,0,0,21
+145278,0,0,0,21
+145279,0,0,0,21
+145280,0,117.8950056,0,21
+145281,0,0,0,21
+145282,0,0,0,21
+145283,0,0,0,21
+145284,0,113.6827063,0,21
+145285,0,0,0,21
+145286,0,0,0,21
+145287,0,0,0,21
+145288,0,108.6476025,0,21
+145289,0,0,0,21
+145290,0,0,0,21
+145291,0,0,0,21
+145292,0,106.9219675,0,21
+145293,0,0,0,21
+145294,0,0,0,21
+145295,0,0,0,21
+145296,0,107.2285505,0,21
+145297,0,0,0,21
+145298,0,0,0,21
+145299,0,0,1253132.731,21
+145300,0,108.8083904,0,21
+145301,0,368135.2668,0,21
+145302,0,0,0,21
+145303,339744.3181,0,0,21
+145304,0,100.6670938,0,21
+145305,0,0,0,21
+145306,0,0,0,21
+145307,0,0,0,21
+145308,0,77.87642799,0,21
+145309,0,0,0,21
+145310,0,0,0,21
+145311,0,0,0,21
+145312,0,116.3080351,0,21
+145313,0,0,0,21
+145314,0,0,0,21
+145315,0,0,0,21
+145316,0,116.5840985,0,21
+145317,0,0,0,21
+145318,0,0,0,21
+145319,0,0,0,21
+145320,0,121.1811268,0,15.6
+145321,0,0,0,15.6
+145322,0,0,0,15.6
+145323,0,0,0,15.6
+145324,0,156.80646,0,15.6
+145325,0,0,0,15.6
+145326,0,0,0,15.6
+145327,0,0,0,15.6
+145328,0,133.050609,0,15.6
+145329,0,0,0,15.6
+145330,0,0,0,15.6
+145331,0,0,0,15.6
+145332,0,126.5935763,0,15.6
+145333,0,0,0,15.6
+145334,0,0,1204111.155,15.6
+145335,0,0,0,15.6
+145336,0,368251.0271,0,15.6
+145337,0,0,0,15.6
+145338,0,0,0,15.6
+145339,339751.741,0,0,15.6
+145340,0,96.33357742,0,15.6
+145341,0,0,0,15.6
+145342,0,0,0,15.6
+145343,0,0,0,15.6
+145344,0,81.122978,0,15.6
+145345,0,0,0,15.6
+145346,0,0,0,15.6
+145347,0,0,0,15.6
+145348,0,116.8242131,0,15.6
+145349,0,0,0,15.6
+145350,0,0,0,15.6
+145351,0,0,0,15.6
+145352,0,115.8158859,0,15.6
+145353,0,0,0,15.6
+145354,0,0,0,15.6
+145355,0,0,0,15.6
+145356,0,122.2985661,0,15.6
+145357,0,0,0,15.6
+145358,0,0,0,15.6
+145359,0,0,0,15.6
+145360,0,124.5537798,0,15.6
+145361,0,0,0,15.6
+145362,0,0,0,15.6
+145363,0,0,0,15.6
+145364,0,127.1577435,0,15.6
+145365,0,0,0,15.6
+145366,0,0,0,15.6
+145367,0,0,0,15.6
+145368,0,127.8777263,0,15.6
+145369,0,0,1160654.29,15.6
+145370,0,0,0,15.6
+145371,0,368125.2149,0,15.6
+145372,0,122.3700727,0,15.6
+145373,0,0,0,15.6
+145374,0,0,0,15.6
+145375,339761.6628,0,0,15.6
+145376,0,97.97571763,0,15.6
+145377,0,0,0,15.6
+145378,0,0,0,15.6
+145379,0,0,0,15.6
+145380,0,99.64449179,0,15.6
+145381,0,0,0,15.6
+145382,0,0,0,15.6
+145383,0,0,0,15.6
+145384,0,109.4366268,0,15.6
+145385,0,0,0,15.6
+145386,0,0,0,15.6
+145387,0,0,0,15.6
+145388,0,108.7186339,0,15.6
+145389,0,0,0,15.6
+145390,0,0,0,15.6
+145391,0,0,0,15.6
+145392,0,107.8812314,0,15.6
+145393,0,0,0,15.6
+145394,0,0,0,15.6
+145395,0,0,0,15.6
+145396,0,108.5979352,0,15.6
+145397,0,0,0,15.6
+145398,0,0,0,15.6
+145399,0,0,0,15.6
+145400,0,111.6553165,0,15.6
+145401,0,0,0,15.6
+145402,0,0,0,15.6
+145403,0,0,0,15.6
+145404,0,113.9643312,1118079.898,15.6
+145405,0,0,0,15.6
+145406,0,368118.7377,0,15.6
+145407,0,0,0,15.6
+145408,0,110.4539274,0,15.6
+145409,0,0,0,15.6
+145410,0,0,0,15.6
+145411,339763.1588,0,0,15.6
+145412,0,84.56625385,0,15.6
+145413,0,0,0,15.6
+145414,0,0,0,15.6
+145415,0,0,0,15.6
+145416,0,118.318002,0,15.6
+145417,0,0,0,15.6
+145418,0,0,0,15.6
+145419,0,0,0,15.6
+145420,0,120.4622796,0,15.6
+145421,0,0,0,15.6
+145422,0,0,0,15.6
+145423,0,0,0,15.6
+145424,0,123.5264141,0,15.6
+145425,0,0,0,15.6
+145426,0,0,0,15.6
+145427,0,0,0,15.6
+145428,0,119.6773326,0,15.6
+145429,0,0,0,15.6
+145430,0,0,0,15.6
+145431,0,0,0,15.6
+145432,0,114.7844931,0,15.6
+145433,0,0,0,15.6
+145434,0,0,0,15.6
+145435,0,0,0,15.6
+145436,0,109.5127941,0,15.6
+145437,0,0,0,15.6
+145438,0,0,0,15.6
+145439,0,0,1080425.637,15.6
+145440,0,102.7592337,0,15.6
+145441,0,368114.6401,0,15.6
+145442,0,0,0,15.6
+145443,0,0,0,15.6
+145444,0,81.5684496,0,15.6
+145445,0,0,0,15.6
+145446,0,0,0,15.6
+145447,339765.8056,0,0,15.6
+145448,0,73.12800047,0,15.6
+145449,0,0,0,15.6
+145450,0,0,0,15.6
+145451,0,0,0,15.6
+145452,0,100.2144926,0,15.6
+145453,0,0,0,15.6
+145454,0,0,0,15.6
+145455,0,0,0,15.6
+145456,0,103.8832478,0,15.6
+145457,0,0,0,15.6
+145458,0,0,0,15.6
+145459,0,0,0,15.6
+145460,0,111.0933207,0,15.6
+145461,0,0,0,15.6
+145462,0,0,0,15.6
+145463,0,0,0,15.6
+145464,0,115.0752432,0,15.6
+145465,0,0,0,15.6
+145466,0,0,0,15.6
+145467,0,0,0,15.6
+145468,0,117.4299854,0,15.6
+145469,0,0,0,15.6
+145470,0,0,0,15.6
+145471,0,0,0,15.6
+145472,0,119.4077965,0,15.6
+145473,0,0,0,15.6
+145474,0,0,1045311.325,15.6
+145475,0,0,0,15.6
+145476,0,117.1135076,0,15.6
+145477,0,368106.8954,0,15.6
+145478,0,0,0,15.6
+145479,0,0,0,15.6
+145480,0,102.8618008,0,15.6
+145481,0,0,0,15.6
+145482,0,0,0,15.6
+145483,0,0,0,15.6
+145484,339780.6495,75.49454185,0,15.6
+145485,0,0,0,15.6
+145486,0,0,0,15.6
+145487,0,0,0,15.6
+145488,0,106.0396168,0,15.6
+145489,0,0,0,15.6
+145490,0,0,0,15.6
+145491,0,0,0,15.6
+145492,0,100.0477251,0,15.6
+145493,0,0,0,15.6
+145494,0,0,0,15.6
+145495,0,0,0,15.6
+145496,0,99.56307898,0,15.6
+145497,0,0,0,15.6
+145498,0,0,0,15.6
+145499,0,0,0,15.6
+145500,0,97.84804135,0,15.6
+145501,0,0,0,15.6
+145502,0,0,0,15.6
+145503,0,0,0,15.6
+145504,0,98.47994322,0,15.6
+145505,0,0,0,15.6
+145506,0,0,0,15.6
+145507,0,0,0,15.6
+145508,0,101.8130068,0,15.6
+145509,0,0,1013075.613,15.6
+145510,0,0,0,15.6
+145511,0,0,0,15.6
+145512,0,102.8054118,0,15.6
+145513,0,368101.5455,0,15.6
+145514,0,0,0,15.6
+145515,0,0,0,15.6
+145516,0,95.49388706,0,15.6
+145517,0,0,0,15.6
+145518,0,0,0,15.6
+145519,0,0,0,15.6
+145520,0,75.36170461,0,15.6
+145521,339797.1819,0,0,15.6
+145522,0,0,0,15.6
+145523,0,0,0,15.6
+145524,0,113.4387035,0,15.6
+145525,0,0,0,15.6
+145526,0,0,0,15.6
+145527,0,0,0,15.6
+145528,0,114.1318977,0,15.6
+145529,0,0,0,15.6
+145530,0,0,0,15.6
+145531,0,0,0,15.6
+145532,0,117.3936571,0,15.6
+145533,0,0,0,15.6
+145534,0,0,0,15.6
+145535,0,0,0,15.6
+145536,0,114.3293566,0,15.6
+145537,0,0,0,15.6
+145538,0,0,0,15.6
+145539,0,0,0,15.6
+145540,0,109.7764753,0,15.6
+145541,0,0,0,15.6
+145542,0,0,0,15.6
+145543,0,0,0,15.6
+145544,0,104.0945174,984312.1101,15.6
+145545,0,0,0,15.6
+145546,0,0,0,15.6
+145547,0,0,0,15.6
+145548,0,97.63977479,0,15.6
+145549,0,368100.9778,0,15.6
+145550,0,0,0,15.6
+145551,0,0,0,15.6
+145552,0,73.87935601,0,15.6
+145553,0,0,0,15.6
+145554,0,0,0,15.6
+145555,0,0,0,15.6
+145556,0,0,0,15.6
+145557,0,227.1261632,0,15.6
+145558,339814.8242,0,0,15.6
+145559,0,0,0,15.6
+145560,0,0,0,15.6
+145561,0,0,0,15.6
+145562,0,0,0,15.6
+145563,0,0,0,15.6
+145564,0,155.2646307,0,15.6
+145565,0,0,0,15.6
+145566,0,0,0,15.6
+145567,0,0,0,15.6
+145568,0,79.5084733,0,15.6
+145569,0,0,0,15.6
+145570,0,0,0,15.6
+145571,0,0,0,15.6
+145572,0,113.4956011,0,15.6
+145573,0,0,0,15.6
+145574,0,0,0,15.6
+145575,0,0,0,15.6
+145576,0,105.6279335,0,15.6
+145577,0,0,0,15.6
+145578,0,0,0,15.6
+145579,0,0,956187.5814,15.6
+145580,0,110.3881549,0,15.6
+145581,0,0,0,15.6
+145582,0,0,0,15.6
+145583,0,0,0,15.6
+145584,0,109.8163852,0,15.6
+145585,0,368100.0029,0,15.6
+145586,0,0,0,15.6
+145587,0,0,0,15.6
+145588,0,98.74329337,0,15.6
+145589,0,0,0,15.6
+145590,0,0,0,15.6
+145591,0,0,0,15.6
+145592,0,73.55804743,0,15.6
+145593,0,0,0,15.6
+145594,0,0,0,15.6
+145595,339819.3904,0,0,15.6
+145596,0,103.6003545,0,15.6
+145597,0,0,0,15.6
+145598,0,0,0,15.6
+145599,0,0,0,15.6
+145600,0,98.0063417,0,15.6
+145601,0,0,0,15.6
+145602,0,0,0,15.6
+145603,0,0,0,15.6
+145604,0,97.15339604,0,15.6
+145605,0,0,0,15.6
+145606,0,0,0,15.6
+145607,0,0,0,15.6
+145608,0,84.56758418,0,15.6
+145609,0,0,0,15.6
+145610,0,0,0,15.6
+145611,0,0,0,15.6
+145612,0,95.59505348,0,15.6
+145613,0,0,0,15.6
+145614,0,0,931727.282,15.6
+145615,0,0,0,15.6
+145616,0,77.09278993,0,15.6
+145617,0,0,0,15.6
+145618,0,0,0,15.6
+145619,0,0,0,15.6
+145620,0,84.19668082,0,15.6
+145621,47021.08158,840924.5222,0,15.6
+145622,73.12815589,118277.1488,0,15.6
+145623,4853.484312,146975.8314,0,15.6
+145624,14741.44111,206121.2895,0,15.6
+145625,13078.02693,173197.65,0,15.6
+145626,11701.16456,178286.6674,0,15.6
+145627,12180.38863,177817.854,0,15.6
+145628,12234.66675,178861.4628,0,15.6
+145629,12243.23995,179495.2325,0,15.6
+145630,12224.84601,179832.383,0,15.6
+145631,12221.05739,180346.9323,0,15.6
+145632,352066.9682,181309.1322,0,15.6
+145633,12200.48881,181230.1723,0,15.6
+145634,12196.60862,183035.3287,0,15.6
+145635,12192.38723,182741.5943,0,15.6
+145636,12088.7044,183960.8233,0,15.6
+145637,12113.25173,184334.6579,0,15.6
+145638,12100.86397,185068.8889,0,15.6
+145639,12075.63627,186253.6201,0,15.6
+145640,12063.40554,186455.7697,0,15.6
+145641,12059.06936,187205.8658,0,15.6
+145642,12087.58817,188418.4927,0,15.6
+145643,12025.67028,188366.451,0,15.6
+145644,12018.94682,190193.8607,0,15.6
+145645,12066.52283,190258.7677,0,15.6
+145646,12000.26407,191328.0965,0,15.6
+145647,12013.87333,191578.53,0,15.6
+145648,12014.37123,192582.4903,909649.0119,15.6
+145649,11978.53902,193538.6695,0,15.6
+145650,11996.91688,193686.5425,0,15.6
+145651,0,0,0,15.6
+145652,0,0,0,15.6
+145653,0,0,0,15.6
+145654,0,92826.24214,0,15.6
+145655,0,384958.5892,0,15.6
+145656,0,21255.53,0,15.6
+145657,0,456878.9437,0,15.6
+145658,0,117401.5475,0,15.6
+145659,0,180081.3118,0,15.6
+145660,0,226940.094,0,15.6
+145661,38036.76465,200292.5653,0,15.6
+145662,59.01288399,203549.7419,0,15.6
+145663,4998.626127,204872.8157,0,15.6
+145664,17630.94809,205091.0099,0,15.6
+145665,10698.45149,206356.931,0,15.6
+145666,11716.35773,206396.9669,0,15.6
+145667,351699.9367,207668.4817,0,15.6
+145668,11831.30526,208247.3653,0,15.6
+145669,11849.58138,208672.2052,0,15.6
+145670,11781.46931,209620.6645,0,15.6
+145671,11813.31935,210301.6219,0,15.6
+145672,11779.9118,210961.4519,0,15.6
+145673,11778.4865,211811.702,0,15.6
+145674,11759.49657,212548.6524,0,15.6
+145675,11742.77716,212659.7951,0,15.6
+145676,11754.9525,214309.4108,0,15.6
+145677,11741.20382,214351.4442,0,15.6
+145678,11691.76244,215455.1908,0,15.6
+145679,11717.59319,216379.3943,0,15.6
+145680,11688.68688,216823.4412,0,17.8
+145681,802534.777,1426293.695,0,17.8
+145682,351254.116,1318542.463,887405.5353,17.8
+145683,143563.5529,224750.9019,0,17.8
+145684,197132.5228,440090.804,0,17.8
+145685,256390.9387,626853.7328,0,17.8
+145686,224212.1636,421900.8485,0,17.8
+145687,225581.4671,116280.4989,0,17.8
+145688,225568.7294,92825.32596,0,17.8
+145689,226329.206,1371536.916,0,17.8
+145690,226687.8183,341653.1179,0,17.8
+145691,186652.2983,515397.27,0,17.8
+145692,186299.8998,464887.6455,0,17.8
+145693,187497.6056,484119.003,0,17.8
+145694,267840.9853,473248.2959,0,17.8
+145695,222032.0841,471993.2987,0,17.8
+145696,209651.3251,471242.4093,0,17.8
+145697,221201.4855,455804.6812,0,17.8
+145698,232126.0328,454477.4735,0,17.8
+145699,223451.5067,453456.7534,0,17.8
+145700,226043.842,452387.6283,0,17.8
+145701,226476.3148,529420.2923,0,17.8
+145702,566794.4836,449916.0071,0,17.8
+145703,227418.1797,449481.6433,0,17.8
+145704,228132.6415,447993.3496,0,17.8
+145705,227845.3654,447871.1899,0,17.8
+145706,228918.7505,446001.4178,0,17.8
+145707,228948.6183,446698.0804,0,17.8
+145708,229889.1693,444452.4714,0,17.8
+145709,229699.361,444606.4065,0,17.8
+145710,230809.5189,443498.2171,0,17.8
+145711,40796.63729,443040.1504,0,17.8
+145712,40960.7749,441212.8706,0,17.8
+145713,40881.84836,442259.2213,0,17.8
+145714,40921.53914,440347.2923,0,17.8
+145715,41062.26948,367297.2355,0,17.8
+145716,604522.8623,366767.4942,868049.229,17.8
+145717,106131.8812,483360.3953,0,17.8
+145718,210296.868,440631.1984,0,17.8
+145719,268323.037,75656.97406,0,17.8
+145720,230183.1316,70839.6502,0,17.8
+145721,235845.862,73299.21221,0,17.8
+145722,236803.7101,1125866.199,0,17.8
+145723,236420.6308,658289.7411,0,17.8
+145724,196168.8017,470868.1465,0,17.8
+145725,196149.9335,449578.7701,0,17.8
+145726,197023.3145,457413.1624,0,17.8
+145727,278719.6561,446868.3319,0,17.8
+145728,236734.1447,446851.4589,0,17.8
+145729,222008.162,445149.6372,0,17.8
+145730,244700.677,446173.3107,0,17.8
+145731,248172.184,444390.9782,0,17.8
+145732,241719.6502,443896.398,0,17.8
+145733,246362.8799,444114.431,0,17.8
+145734,246132.9016,442426.7557,0,17.8
+145735,246835.5424,442702.3375,0,17.8
+145736,247247.8792,519849.0069,0,17.8
+145737,587619.1135,441798.4628,0,17.8
+145738,248816.1312,440806.8403,0,17.8
+145739,248509.2346,440807.8035,0,17.8
+145740,249774.4619,439992.4314,0,20
+145741,1100737.463,2593942.113,13940.16823,20
+145742,559817.7551,707856.0495,0,20
+145743,133033.8254,492673.9663,0,20
+145744,297725.2286,527967.1398,4019.602773,20
+145745,340744.5137,775511.7753,10590.99861,20
+145746,307919.3003,603694.6566,43743.22931,20
+145747,300157.2897,628558.0892,25507.7068,20
+145748,303453.6932,625814.5239,30251.24629,20
+145749,302781.2044,627294.322,31465.09707,20
+145750,302876.5487,623916.7404,46026.75379,20
+145751,301515.6515,623460.6152,42051.9763,20
+145752,301877.9633,621602.1701,41959.38384,20
+145753,301258.9243,620520.029,46379.23438,20
+145754,300426.897,618920.788,51980.15513,20
+145755,300377.4179,618246.7826,48319.58513,20
+145756,299966.8835,617681.1113,50808.8976,20
+145757,299435.3811,616522.6982,51225.53104,20
+145758,299424.9359,614596.9965,51780.9894,20
+145759,298594.7728,615526.488,52479.00059,20
+145760,298799.172,612263.0904,53006.34952,20
+145761,298215.2292,613622.9373,53394.33541,20
+145762,297981.6706,611716.4068,54291.69201,20
+145763,297657.9333,611636.5745,54450.54894,20
+145764,297378.4785,610280.6602,55304.60183,20
+145765,298175.1795,610130.4311,55620.67918,20
+145766,305880.669,610560.9536,56319.36443,20
+145767,301645.6625,606840.0325,56906.82276,20
+145768,303507.6956,608802.4314,56869.0732,20
+145769,303933.226,608834.2401,57942.98746,20
+145770,304927.7403,605502.3279,58220.56718,20
+145771,305153.7507,607465.3751,58603.04201,20
+145772,304705.3691,605690.3585,59242.41266,20
+145773,306215.9838,606321.6624,59676.76281,20
+145774,306647.0226,604658.3335,60017.54694,20
+145775,305789.9518,604591.4566,60507.3761,20
+145776,307698.5483,605269.4657,61042.6542,20
+145777,307852.1075,603201.2568,62304.70088,20
+145778,307674.6544,604469.9439,63850.00229,20
+145779,308674.8568,603267.1994,63489.77046,20
+145780,308980.7852,597131.0405,64610.09817,20
+145781,309268.7794,596727.1423,65065.22068,20
+145782,309836.9433,595062.4329,65760.98962,20
+145783,310210.5808,593012.1953,66293.7915,20
+145784,309824.43,594182.0964,66714.16515,20
+145785,311057.0328,590822.2301,67956.50547,20
+145786,309943.9275,590662.0926,67754.69201,20
+145787,310881.6993,590591.2075,68625.25848,20
+145788,310816.5426,587961.3804,69293.49625,20
+145789,311837.7521,587848.1395,69849.35033,20
+145790,311278.9483,587422.0663,70007.98577,20
+145791,312103.033,585237.3065,71106.22897,20
+145792,312219.6375,585573.4698,71078.12707,20
+145793,312314.6495,583208.4844,72026.23867,20
+145794,312573.4573,583922.6812,72350.07481,20
+145795,313838.5062,581903.8297,72488.02647,20
+145796,313035.8556,581066.8907,73751.66455,20
+145797,313288.9724,580444.2216,73414.17025,20
+145798,314354.0397,579020.1642,74639.33634,20
+145799,314182.6274,579662.5562,74584.49235,20
+145800,314365.2935,577006.3312,74995.93329,21
+145801,319180.5062,1072677.113,63338.30667,21
+145802,311977.1811,1064601.378,62490.02337,21
+145803,311748.2001,1062087.107,62603.4546,21
+145804,309265.3249,1058083.745,62382.48787,21
+145805,307557.5438,1056016.068,62846.15545,21
+145806,306323.9281,1051331.436,62736.40706,21
+145807,304451.7873,1049440.882,62959.90601,21
+145808,302316.6788,1046694.555,62915.91446,21
+145809,302275.0469,1043694.113,63455.4758,21
+145810,299923.113,1039748.042,62975.73084,21
+145811,298361.3499,1038087.689,64045.68433,21
+145812,296946.0179,1034316.336,63213.03859,21
+145813,295780.9995,1030996.74,63813.01949,21
+145814,294171.2212,1029049.848,63774.54606,21
+145815,293348.7865,1025889.757,63934.82408,21
+145816,290681.0051,1023856.654,64185.07579,21
+145817,290521.9921,1018261.331,53820.5793,21
+145818,288138.9523,1018257.841,52289.0129,21
+145819,287686.5636,1014871.235,52163.18482,21
+145820,285225.1266,1010760.272,51572.48106,21
+145821,285054.1899,1009483.813,51252.46213,21
+145822,283172.8153,1005990.801,51038.9909,21
+145823,281727.7051,1002872.734,50626.92631,21
+145824,280520.3628,1001021.723,50390.76118,21
+145825,278486.6246,997456.877,49956.30619,21
+145826,278274.2319,994946.2989,49834.73585,21
+145827,276509.1531,991873.7218,49489.32309,21
+145828,274727.9919,990102.4949,48948.44908,21
+145829,274958.2819,986194.1807,49089.85309,21
+145830,273731.7714,984111.9945,48654.30389,21
+145831,275369.4584,981334.4094,47813.12535,21
+145832,272660.9809,979358.8063,47462.376,21
+145833,273515.9289,976268.3707,46508.67092,21
+145834,272553.7743,973704.2531,45781.20669,21
+145835,272014.5287,971238.136,45046.47234,21
+145836,273225.4583,969073.456,44857.17541,21
+145837,271139.2174,965529.9493,43616.30184,21
+145838,271144.9102,964085.5211,42942.01068,21
+145839,271398.066,960793.7297,42551.3549,21
+145840,270557.0349,958230.1194,41341.31369,21
+145841,270026.7535,956539.5765,40773.92058,21
+145842,269438.629,953049.8633,40419.57794,21
+145843,270397.2241,950455.9274,37957.27438,21
+145844,268249.7141,948992.8091,37599.78954,21
+145845,269850.2526,945584.9582,36373.71617,21
+145846,267583.2084,944003.6944,36284.83069,21
+145847,267950.4204,941079.9878,34912.99985,21
+145848,268492.5071,937571.2082,34766.73326,21
+145849,266594.1307,936986.6907,33779.61619,21
+145850,267108.1892,933268.0107,32980.92227,21
+145851,266935.8077,931778.8682,32713.42157,21
+145852,265916.4639,928023.5301,31514.27191,21
+145853,266148.1636,925887.466,31008.91203,21
+145854,265488.6415,925120.1622,30107.01814,21
+145855,265168.8212,920206.5844,29516.37144,21
+145856,264846.9816,918877.051,28829.61027,21
+145857,264426.431,916844.7628,27882.03938,21
+145858,263708.5409,913598.3269,27121.47155,21
+145859,264569.9005,912045.6316,26532.21739,21
+145860,262853.643,909102.0608,25548.61302,21
+145861,165259.7654,725027.5396,999.54093,21
+145862,161761.694,716938.897,819.0492079,21
+145863,159378.1053,712353.305,802.3653406,21
+145864,158366.9025,708225.7354,768.8927328,21
+145865,157418.854,703366.3383,718.4341584,21
+145866,155835.2069,700062.1188,718.4416095,21
+145867,155200.8821,695407.981,684.6346581,21
+145868,153719.2237,691052.3587,650.6858016,21
+145869,153171.5755,687506.0446,616.5896135,21
+145870,151877.049,682967.1389,616.5951197,21
+145871,151141.1578,678792.5109,582.345259,21
+145872,149823.4779,674895.4808,565.1631064,21
+145873,149339.9209,670817.5019,530.6702386,21
+145874,148341.7914,666118.9306,513.3618933,21
+145875,147458.2312,662946.2348,513.3657231,21
+145876,146491.9319,658186.8456,443.6683452,21
+145877,145816.4173,654433.1196,478.6146202,21
+145878,144718.2653,650287.2113,408.5341846,21
+145879,144365.2519,646044.6303,408.5366182,21
+145880,143184.6301,642165.7284,390.8910739,21
+145881,142363.9486,638120.7711,355.4323802,21
+145882,141824.4946,634388.6349,355.4342255,21
+145883,140861.7606,630199.8153,319.7404779,21
+145884,140262.4268,625861.9567,283.7910319,21
+145885,139353.221,622919.7416,301.8011434,21
+145886,138492.333,617817.7215,247.5609624,21
+145887,138190.1649,614605.6096,229.3299918,21
+145888,136850.3454,610685.7629,229.3307631,21
+145889,136654.7799,606536.8991,192.6106626,21
+145890,135500.8915,602593.7198,174.1092134,21
+145891,134966.8919,598934.5343,155.5023795,21
+145892,133970.134,595133.5155,117.9275932,21
+145893,133112.0658,591237.4953,127.3709473,21
+145894,228720.2846,587485.1779,79.76099091,21
+145895,131428.1972,583407.8593,79.76108462,21
+145896,131454.0033,580220.5546,40.75437027,21
+145897,130299.4533,575725.716,40.75439475,21
+145898,129946.1979,572400.3174,10.53340664,21
+145899,128731.4772,569059.5631,0,21
+145900,128842.2368,565295.2025,0,21
+145901,127443.3729,563023.0975,0,21
+145902,127270.0767,559646.8254,0,21
+145903,126422.5339,556843.7268,0,21
+145904,125913.8057,553985.2053,0,21
+145905,125293.8553,550695.3723,0,21
+145906,124604.1162,547947.8921,0,21
+145907,123919.0246,545541.7646,0,21
+145908,123182.7133,541708.989,0,21
+145909,122876.818,539639.7088,0,21
+145910,121877.4317,536186.1174,0,21
+145911,121540.9868,533448.1343,0,21
+145912,120676.7451,530874.1583,0,21
+145913,120149.7565,527441.9445,0,21
+145914,119293.5709,524695.2175,0,21
+145915,118800.5504,522184.7644,0,21
+145916,118149.4277,518590.0928,0,21
+145917,117474.6074,516120.7385,0,21
+145918,116925.0338,512814.4254,0,21
+145919,116013.156,510249.1611,0,21
+145920,115585.5934,507161.7722,0,21
+145921,114831.3727,505620.5927,0,21
+145922,114264.4621,504313.2136,0,21
+145923,113802.8895,502491.2157,0,21
+145924,113250.7434,501024.6806,0,21
+145925,112452.3748,499651.3497,0,21
+145926,112070.8622,497750.0942,0,21
+145927,206478.6963,496756.9369,0,21
+145928,110578.0364,494664.351,0,21
+145929,110392.7291,493728.7253,0,21
+145930,109420.2922,491709.2738,0,21
+145931,109233.8044,490578.8562,0,21
+145932,108168.3713,488942.1216,0,21
+145933,107993.8768,487449.7684,0,21
+145934,107148.1757,485491.4199,0,21
+145935,106477.4784,484666.4919,0,21
+145936,106423.824,482444.2876,0,21
+145937,105104.7213,481296.6654,0,21
+145938,104929.8868,479669.384,0,21
+145939,104212.487,477884.7524,0,21
+145940,103512.9219,476274.9934,0,21
+145941,103192.5895,474624.3249,0,21
+145942,102146.3352,473329.8738,0,21
+145943,101861.1137,471087.9921,0,21
+145944,101119.5546,470105.8081,0,21
+145945,100492.5423,466971.4951,0,21
+145946,99944.91292,465334.4533,0,21
+145947,99204.55197,463857.3817,0,21
+145948,98955.95864,461408.7348,0,21
+145949,97959.25235,460203.8943,0,21
+145950,97250.77982,458048.0592,0,21
+145951,96932.76023,456249.4922,0,21
+145952,95785.78581,454428.6742,0,21
+145953,95352.826,452630.2875,0,21
+145954,94405.11405,450576.1664,0,21
+145955,93712.73053,449001.8318,0,21
+145956,92797.90692,446809.3491,0,21
+145957,92388.92178,445288.6097,0,21
+145958,91059.94007,442994.5993,0,21
+145959,90723.5272,441193.8483,0,21
+145960,89635.6075,439572.5945,0,21
+145961,88874.61691,437251.2909,0,21
+145962,88269.18912,435356.2002,0,21
+145963,87376.35577,433267.1346,0,21
+145964,86398.5664,431492.8579,0,21
+145965,85760.85504,429010.0205,0,21
+145966,84818.68879,427419.241,0,21
+145967,84178.92331,425009.4296,0,21
+145968,83172.7569,422883.1422,0,21
+145969,82290.83798,420724.1139,0,21
+145970,81643.82485,418634.0733,0,21
+145971,80559.2674,416561.1337,0,21
+145972,80161.39619,414287.6993,0,21
+145973,78738.79066,412031.1749,0,21
+145974,78164.06428,410098.5386,0,21
+145975,77409.7229,407993.3789,0,21
+145976,76288.95119,405305.8113,0,21
+145977,75710.45017,403561.7027,0,21
+145978,74666.13574,401135.8961,0,21
+145979,73823.33179,398610.4589,0,21
+145980,72875.40046,397114.4362,0,21
+145981,77222.66978,391458.2006,0,21
+145982,76506.36501,388747.3551,0,21
+145983,75449.64629,384848.3793,0,21
+145984,74881.10829,382295.6831,0,21
+145985,73900.40929,378287.7297,0,21
+145986,73279.28768,375066.6382,0,21
+145987,72505.82321,371905.0221,0,21
+145988,71728.78431,369286.1696,0,21
+145989,70668.7995,366001.0854,0,21
+145990,70101.28467,362538.6892,0,21
+145991,69444.40065,359145.818,0,21
+145992,68086.95892,355813.8699,0,21
+145993,67836.51657,352684.3712,0,21
+145994,66730.48703,348877.6205,0,21
+145995,65977.91024,345530.3456,0,21
+145996,65071.36562,341350.4573,0,21
+145997,64468.19982,338270.0329,0,21
+145998,63457.98248,334816.9651,0,21
+145999,62556.5976,331558.9845,0,21
+146000,61913.79867,327920.2895,0,21
+146001,61148.37521,324401.8552,0,21
+146002,59940.27148,320960.9811,0,21
+146003,59359.04838,317665.2748,0,21
+146004,58532.42554,314012.2206,0,21
+146005,57534.63518,310728.856,0,21
+146006,56952.11752,306830.6384,0,21
+146007,55869.56245,303688.17,0,21
+146008,55130.83118,300169.452,0,21
+146009,54386.22788,296405.6006,0,21
+146010,53495.45432,293155.4693,0,21
+146011,52977.32426,289441.0725,0,21
+146012,52365.78952,285987.4881,0,21
+146013,52503.43061,283005.1835,0,21
+146014,51611.95177,279196.9015,0,21
+146015,51707.10173,275934.7152,0,21
+146016,51295.83855,273659.0891,0,21
+146017,51042.51854,271438.1984,0,21
+146018,51202.19394,269123.6535,0,21
+146019,50427.16925,267503.182,0,21
+146020,50888.9458,265041.3558,0,21
+146021,50193.29435,262972.4763,0,21
+146022,50256.70305,260688.3966,0,21
+146023,50061.061,258419.7168,0,21
+146024,49837.3719,256088.4772,0,21
+146025,49766.64553,254037.0912,0,21
+146026,49421.41996,251586.3738,0,21
+146027,49470.27254,249382.2187,0,21
+146028,49126.50281,247200.5082,0,21
+146029,49034.53466,244859.058,0,21
+146030,48854.22867,242768.0656,0,21
+146031,48849.90318,240284.1865,0,21
+146032,48385.97489,238006.4126,0,21
+146033,48509.09298,235933.8929,0,21
+146034,48210.16722,233862.0895,0,21
+146035,48237.64982,231505.7409,0,21
+146036,47815.62793,229350.0583,0,21
+146037,47984.1251,227451.4222,0,21
+146038,47483.45772,224983.0501,0,21
+146039,47677.67931,223140.3316,0,21
+146040,48058.19424,221012.0021,0,21
+146041,42081.39624,221330.3982,0,21
+146042,41886.48781,221213.0768,0,21
+146043,41426.12326,220868.8387,0,21
+146044,41546.622,220753.6748,0,21
+146045,41150.19628,220246.0445,0,21
+146046,41117.66925,220103.0169,0,21
+146047,40812.13416,219965.5723,0,21
+146048,40619.08868,219501.334,0,21
+146049,40550.52673,219224.5985,0,21
+146050,40229.60138,219254.5275,0,21
+146051,40170.40638,218532.5354,0,21
+146052,39807.77106,218616.8062,0,21
+146053,39990.35442,218323.2395,0,21
+146054,39344.96245,217896.3113,0,21
+146055,39678.67333,217912.0749,0,21
+146056,39073.20137,217423.3321,0,21
+146057,39183.63545,217293.7164,0,21
+146058,38778.51411,217131.2748,0,21
+146059,38902.90708,216743.1703,0,21
+146060,38392.33789,216593.7874,0,21
+146061,38598.19083,216372.9229,0,21
+146062,38007.95969,216244.6054,0,21
+146063,38333.45223,215772.5384,0,21
+146064,37804.63012,215760.979,0,21
+146065,37662.05099,215496.2212,0,21
+146066,37600.09621,215114.7215,0,21
+146067,37599.76651,215017.0607,0,21
+146068,37090.79552,214918.6574,0,21
+146069,37198.64755,214574.6384,0,21
+146070,37039.4845,214188.9569,0,21
+146071,36595.08064,214296.8307,0,21
+146072,36750.85077,213819.3564,0,21
+146073,36491.73652,213921.6769,0,21
+146074,36288.16296,213473.7028,0,21
+146075,35987.2653,213101.9363,0,21
+146076,36161.45077,213186.2872,0,21
+146077,35545.41812,212856.7787,0,21
+146078,35667.22935,212728.0194,0,21
+146079,35417.00505,212521.5275,0,21
+146080,35407.74581,212185.766,0,21
+146081,35117.23344,211972.2763,0,21
+146082,34898.19958,211896.7422,0,21
+146083,34856.99239,211521.54,0,21
+146084,34409.37556,211387.2522,0,21
+146085,34657.80641,210868.5063,0,21
+146086,34303.68745,210174.7655,0,21
+146087,33989.52322,209954.4858,0,21
+146088,34000.84443,209331.218,0,21
+146089,33904.60491,209040.5829,0,21
+146090,33537.41353,209041.9793,0,21
+146091,33475.90172,208179.1258,0,21
+146092,33439.71427,208181.4423,0,21
+146093,33003.9102,207718.1361,0,21
+146094,33060.62026,207230.6141,0,21
+146095,32799.95623,206975.4265,0,21
+146096,32767.14976,206663.376,0,21
+146097,32417.04505,206411.0516,0,21
+146098,32504.32772,205834.1713,0,21
+146099,31908.38101,205579.4848,0,21
+146100,32298.41042,205077.0917,0,21
+146101,44608.31245,215369.8574,0,21
+146102,44878.8683,215034.0932,0,21
+146103,44974.7097,213883.5282,0,21
+146104,44987.05524,213594.0366,0,21
+146105,45137.38734,212947.8064,0,21
+146106,44914.28737,212156.6165,0,21
+146107,44967.34441,211848.6851,0,21
+146108,45075.52587,210982.3838,0,21
+146109,44914.38973,210641.5679,0,21
+146110,45067.50437,209908.0636,0,21
+146111,44852.39908,209495.0007,0,21
+146112,45088.0093,208648.7474,0,21
+146113,45079.62814,208396.5866,0,21
+146114,44865.86158,207470.6218,0,21
+146115,44994.63106,207104.9078,0,21
+146116,45113.08276,203040.3904,0,21
+146117,44962.88166,196739.3119,0,21
+146118,45082.79466,197933.271,0,21
+146119,44952.90958,195144.8734,0,21
+146120,45140.20845,193200.9716,0,21
+146121,44943.01147,191248.7506,0,21
+146122,45091.77518,189282.4205,0,21
+146123,45131.24025,187495.8297,0,21
+146124,44889.71983,185552.1307,0,21
+146125,45280.45778,183442.8832,0,21
+146126,44902.24245,181786.9709,0,21
+146127,45206.35334,179673.501,0,21
+146128,45011.22726,177837.0043,0,21
+146129,45196.65037,175981.444,0,21
+146130,45072.90354,173975.6275,0,21
+146131,44420.03005,172432.1938,0,21
+146132,44463.07648,170568.9018,0,21
+146133,44654.26857,168183.4513,0,21
+146134,44204.55176,166405.6281,0,21
+146135,44741.96186,165001.5919,0,21
+146136,44379.28276,163010.989,0,21
+146137,44247.26104,161152.5702,0,21
+146138,44735.5352,159763.6953,0,21
+146139,44224.94596,157728.7856,0,21
+146140,44446.8195,155966.5922,0,21
+146141,44572.79587,154580.0742,0,21
+146142,44326.75985,152399.4092,0,21
+146143,44381.71752,151157.987,0,21
+146144,44487.61743,149077.8077,0,21
+146145,44361.561,147689.3053,0,21
+146146,44316.70111,145911.5382,0,21
+146147,44468.67496,144223.4302,0,21
+146148,44426.86419,142450.3454,0,21
+146149,44490.02056,141016.4413,0,21
+146150,44265.18294,139199.1812,0,21
+146151,44385.90593,137678.3034,0,21
+146152,44458.68698,135993.8651,0,21
+146153,44363.99334,134302.6768,0,21
+146154,44438.47532,132860.5078,0,21
+146155,44430.17138,131091.154,0,21
+146156,44438.49243,129622.7339,0,21
+146157,44234.89311,127767.4336,0,21
+146158,44580.84493,126532.8413,0,21
+146159,44257.39629,124819.051,0,21
+146160,44570.70614,123192.6512,0,21
+146161,31557.95585,105086.6058,0,21
+146162,30958.31102,102301.2152,0,21
+146163,31265.62557,99930.18423,0,21
+146164,30797.7432,97925.04783,0,21
+146165,30751.38241,95492.41115,0,21
+146166,30658.86532,93594.78328,0,21
+146167,30491.52074,91081.4606,0,21
+146168,30386.55777,89253.64792,0,21
+146169,30108.80533,86974.85488,0,21
+146170,30125.30769,84602.70611,0,21
+146171,29977.88857,82909.14985,0,21
+146172,29835.94529,80319.05295,0,21
+146173,29596.08472,78533.12174,0,21
+146174,29672.62114,76082.10496,0,21
+146175,29328.34988,74329.34959,0,21
+146176,29515.84958,72110.81721,0,21
+146177,28970.70117,70057.34567,0,21
+146178,29235.70258,67984.78064,0,21
+146179,28795.90908,65930.10464,0,21
+146180,28776.89115,63897.5632,0,21
+146181,28737.98937,61973.32161,0,21
+146182,28401.8334,59875.05441,0,21
+146183,28449.40984,57848.91363,0,21
+146184,28249.45365,56049.94796,0,21
+146185,28078.04803,53901.12932,0,21
+146186,27960.11631,52091.4412,0,21
+146187,27818.89494,49853.23973,0,21
+146188,27696.86154,48284.74211,0,21
+146189,27540.40938,45955.59773,0,21
+146190,27422.05801,44520.6428,0,21
+146191,27386.39179,42318.63669,0,21
+146192,27059.4073,40719.74486,0,21
+146193,27220.2735,39047.93872,0,21
+146194,27012.32106,37573.58132,0,21
+146195,26869.12359,35607.63652,0,21
+146196,26743.59654,34279.84581,0,21
+146197,26833.49924,32626.17905,0,21
+146198,26556.16495,32297.98074,0,21
+146199,26588.7891,31938.96251,0,21
+146200,26338.31985,31818.74633,0,21
+146201,26492.65059,31796.5275,0,21
+146202,26104.56896,31326.56,0,21
+146203,26242.22084,31276.11523,0,21
+146204,26032.37273,31075.68238,0,21
+146205,26008.26951,30805.52263,0,21
+146206,25888.3608,30675.50598,0,21
+146207,25852.76625,30429.52722,0,21
+146208,25724.29298,30191.40105,0,21
+146209,25732.71291,30043.07983,0,21
+146210,25473.26264,29795.13169,0,21
+146211,25436.68931,29664.42779,0,21
+146212,25473.3604,29408.27897,0,21
+146213,25375.69273,29282.71161,0,21
+146214,25213.89241,28917.18148,0,21
+146215,25134.03784,28879.92574,0,21
+146216,25152.83958,28298.37649,0,21
+146217,24923.43853,28157.11097,0,21
+146218,25082.75533,28030.04114,0,21
+146219,24762.11224,27632.32637,0,21
+146220,24862.63962,27398.95988,0,21
+146221,30540.49078,26367.07254,0,21
+146222,30743.86789,26148.13809,0,21
+146223,30405.99848,25991.41554,0,21
+146224,30730.66469,25746.88339,0,21
+146225,30403.41401,25602.73135,0,21
+146226,30633.92111,25239.21904,0,21
+146227,30281.30699,25049.58216,0,21
+146228,30462.78758,25070.42173,0,21
+146229,30364.44703,24598.47988,0,21
+146230,30328.69911,24454.08295,0,21
+146231,30333.24608,24428.91844,0,21
+146232,30296.19778,24061.66882,0,21
+146233,30180.11058,24046.85671,0,21
+146234,30071.68105,23790.60141,0,21
+146235,30346.97139,23639.63101,0,21
+146236,30046.3672,23406.24797,0,21
+146237,30005.66804,23209.02764,0,21
+146238,30021.53812,23727.91236,0,21
+146239,29980.52729,24619.40857,0,21
+146240,30187.9453,23758.97255,0,21
+146241,29730.9549,24123.04837,0,21
+146242,29865.00729,24352.59305,0,21
+146243,29912.19315,23894.58012,0,21
+146244,29723.12998,24169.04321,0,21
+146245,29892.33162,24300.84988,0,21
+146246,29795.11259,24078.69538,0,21
+146247,29671.94568,24028.27592,0,21
+146248,29763.77038,24236.62572,0,21
+146249,29535.69494,24234.58801,0,21
+146250,29633.54468,24461.4501,0,21
+146251,29614.5597,24573.17955,0,21
+146252,29496.65049,24501.42384,0,21
+146253,29570.43566,24691.64947,0,21
+146254,29152.95767,24330.17196,0,21
+146255,29433.33134,24644.34947,0,21
+146256,29204.7418,24573.77475,0,21
+146257,29200.07547,24318.97709,0,21
+146258,29081.05916,24640.70925,0,21
+146259,29021.59402,24136.65022,0,21
+146260,29056.84334,24489.80754,0,21
+146261,28775.00461,24159.96662,0,21
+146262,28819.61574,24093.56927,0,21
+146263,28734.84029,24237.33428,0,21
+146264,28571.70683,23760.32746,0,21
+146265,28807.26644,24019.90282,0,21
+146266,28344.78536,23689.18654,0,21
+146267,28584.23182,23607.10052,0,21
+146268,28292.84211,23356.65847,0,21
+146269,28279.13106,23213.93512,0,21
+146270,28436.46001,23369.9644,0,21
+146271,28057.96588,22963.03704,0,21
+146272,28019.89001,22846.26489,0,21
+146273,28200.42352,22722.71024,0,21
+146274,27810.61153,22570.37072,0,21
+146275,28064.04179,22332.97253,0,21
+146276,27672.94472,21942.5379,0,21
+146277,27828.82669,21892.54637,0,21
+146278,27548.45665,21663.93673,0,21
+146279,27625.74608,21246.73934,0,21
+146280,27482.82647,21089.57004,0,21
+146281,21680.18276,14800.57744,0,21
+146282,21463.40113,14375.12944,0,21
+146283,21354.36427,13957.7784,0,21
+146284,21224.05682,13690.3304,0,21
+146285,21451.90247,13191.88445,0,21
+146286,20984.59458,12705.81043,0,21
+146287,21099.93454,12444.47496,0,21
+146288,21195.75664,11890.56904,0,21
+146289,20949.68565,11544.36933,0,21
+146290,20867.97769,10876.99732,0,21
+146291,20833.71375,10476.93376,0,21
+146292,20830.78984,10014.31516,0,21
+146293,20806.50043,9414.758984,0,21
+146294,20717.35044,8991.634118,0,21
+146295,20589.76142,8386.137197,0,21
+146296,20565.56414,7590.386266,0,21
+146297,20562.70724,7297.548738,0,21
+146298,20450.73278,6518.939843,0,21
+146299,20328.09612,5982.674193,0,21
+146300,20537.8999,5227.00437,0,21
+146301,20080.46087,4650.9223,0,21
+146302,20308.00407,3967.644025,0,21
+146303,20195.75334,3362.515096,0,21
+146304,20183.45088,3126.584084,0,21
+146305,20055.35624,3217.788439,0,21
+146306,20081.02098,3317.586304,0,21
+146307,20055.37965,3220.211795,0,21
+146308,19930.51138,3256.449728,0,21
+146309,19840.72346,3393.472676,0,21
+146310,19827.89639,3367.14396,0,21
+146311,19917.68351,3398.401572,0,21
+146312,19827.91849,3539.449728,0,21
+146313,19815.56912,3679.639874,0,21
+146314,19927.62131,3544.231243,0,21
+146315,19702.76467,3832.257323,0,21
+146316,20030.28141,3680.078332,0,21
+146317,19815.61209,3837.006374,0,21
+146318,19915.30386,3984.564052,0,21
+146319,19827.99365,3841.643403,0,21
+146320,20005.58053,4100.093837,0,21
+146321,19940.55787,4011.348352,0,21
+146322,19915.34576,4104.628997,0,21
+146323,20133.31364,4286.307946,0,21
+146324,19915.36638,4104.629764,0,21
+146325,20040.50324,4440.494012,0,21
+146326,20120.48306,4259.516548,0,21
+146327,20040.5237,4409.318748,0,21
+146328,20143.17387,4576.245652,0,21
+146329,20120.51403,4400.146998,0,21
+146330,20152.54393,4711.346614,0,21
+146331,20357.65152,4567.002312,0,21
+146332,20030.94949,4697.862106,0,21
+146333,20456.52877,4849.984462,0,21
+146334,20255.22471,4710.849069,0,21
+146335,20357.69234,4983.803574,0,21
+146336,20357.70244,4854.046222,0,21
+146337,20357.70811,4979.026195,0,21
+146338,20593.73835,5148.24271,0,21
+146339,20357.74853,4982.976471,0,21
+146340,20580.94012,5121.011012,0,21
+146341,20699.05236,5284.837616,0,21
+146342,20593.76938,5271.163619,0,21
+146343,20934.50338,5271.164065,0,21
+146344,20946.83894,5420.681095,0,21
+146345,21147.34158,5257.449887,0,21
+146346,21095.63788,5565.914108,0,21
+146347,21261.4111,5552.158616,0,21
+146348,21520.38812,5393.129524,0,21
+146349,21409.97265,5714.310891,0,21
+146350,21705.99756,5669.253279,0,21
+146351,21801.8952,5700.514067,0,21
+146352,21942.5474,5686.674166,0,21
+146353,22027.47472,5978.153198,0,21
+146354,22093.20806,5672.791331,0,21
+146355,22293.28524,5978.154611,0,21
+146356,22338.81139,5964.226317,0,21
+146357,22666.39446,6107.523953,0,21
+146358,22553.30951,5950.252614,0,21
+146359,22592.83387,6110.84547,0,21
+146360,23050.03121,6253.687024,0,21
+146361,23050.03433,6096.825368,0,21
+146362,23076.9551,6382.060158,0,21
+146363,23306.35334,6225.597103,0,21
+146364,23315.2127,6385.226232,0,21
+146365,23774.89201,6385.226621,0,21
+146366,23470.83822,6513.064088,0,21
+146367,23892.21298,6364.029988,0,21
+146368,23838.50887,6671.767906,0,21
+146369,24063.36757,6484.672453,0,21
+146370,24279.71319,6674.717194,0,21
+146371,24088.5284,6774.426928,0,21
+146372,24649.69716,6660.49853,0,21
+146373,24429.30349,6787.32772,0,21
+146374,24793.91014,6925.180277,0,21
+146375,24931.20158,6790.056775,0,21
+146376,24793.91688,7068.309512,0,21
+146377,25274.24764,6930.750572,0,21
+146378,25281.49294,7053.977439,0,21
+146379,25318.51562,7073.654338,0,21
+146380,25624.05645,7210.929224,0,21
+146381,25462.52778,7190.595905,0,21
+146382,25964.60991,7353.042137,0,21
+146383,25947.01406,7199.092859,0,21
+146384,26024.93009,7477.703907,0,21
+146385,26362.23155,7355.543821,0,21
+146386,26346.50934,7480.141863,0,21
+146387,26670.47291,7618.875807,0,21
+146388,26750.54349,7480.142454,0,21
+146389,26733.40352,7759.555435,0,21
+146390,27216.68388,7635.775769,0,21
+146391,26999.33803,7744.908007,0,21
+146392,27389.32967,7759.556879,0,21
+146393,27586.26414,7899.748136,0,21
+146394,27543.73005,7899.748191,0,21
+146395,27955.40421,7899.747991,0,21
+146396,27906.90612,8167.305234,0,21
+146397,28140.44179,7901.82181,0,21
+146398,28275.20728,8176.729235,0,21
+146399,28384.4829,8176.407907,0,21
+146400,28569.75741,8178.754379,0,21
+146401,52862.44411,20249.57174,0,21
+146402,54474.12969,20843.31818,0,21
+146403,54649.99863,21128.8844,0,21
+146404,55442.54434,39494.34145,0,21
+146405,55510.94693,29371.96593,0,21
+146406,56301.07404,31984.5663,0,21
+146407,57112.42516,32665.69801,0,21
+146408,56855.60825,33115.83484,0,21
+146409,57619.44976,33253.29334,0,21
+146410,57679.91373,33570.87661,0,21
+146411,58239.88107,33824.27059,0,21
+146412,59857.95149,34373.09628,0,21
+146413,64085.55261,34276.33645,0,21
+146414,61845.2327,34743.37997,0,21
+146415,63782.1402,35075.64423,0,21
+146416,63931.24939,35089.88601,0,21
+146417,64677.02177,35635.45054,0,21
+146418,65280.66391,35656.83039,0,21
+146419,65697.64864,36220.86416,0,21
+146420,68589.62037,36015.97552,0,21
+146421,69290.28066,36769.8877,0,21
+146422,69629.22493,36497.85386,0,21
+146423,70874.3937,37129.34314,0,21
+146424,71341.78299,37260.217,0,21
+146425,72197.23135,37380.01847,0,21
+146426,73114.79867,37719.81296,0,21
+146427,73821.29556,37843.76037,0,21
+146428,74356.45431,38375.03891,0,21
+146429,75193.32359,38189.99558,0,21
+146430,76917.03429,38529.48094,0,21
+146431,77403.94643,38968.23532,0,21
+146432,78053.03447,38968.22287,0,21
+146433,78046.48212,39225.54967,0,21
+146434,78979.57842,39520.95649,0,21
+146435,79053.00331,39683.7048,0,21
+146436,79823.81697,39873.78201,0,21
+146437,79724.91701,40116.06328,0,21
+146438,80418.9259,40450.93767,0,21
+146439,79885.1725,40560.96499,0,21
+146440,79889.42318,40681.23176,0,21
+146441,80511.568,41015.22476,0,21
+146442,80577.00283,41258.3573,0,21
+146443,81019.79798,41238.53147,0,21
+146444,80973.40284,41699.97627,0,21
+146445,81613.80117,41909.15051,0,21
+146446,81516.24515,41827.25816,0,21
+146447,81889.383,42256.66454,0,21
+146448,82150.32654,42576.62229,0,21
+146449,82218.84785,42396.75132,0,21
+146450,82612.63491,42933.10228,0,21
+146451,82755.17019,43048.90872,0,21
+146452,82759.09679,43062.20498,0,21
+146453,83293.22397,43474.91202,0,21
+146454,83030.64723,43745.58534,0,21
+146455,83681.02243,43681.61883,0,21
+146456,83648.55727,43986.80931,0,21
+146457,83564.11081,44408.29372,0,21
+146458,84172.31374,44403.98677,0,21
+146459,83916.88168,44688.36712,0,21
+146460,84291.29305,44821.176,0,21
+146461,102203.0877,54174.13637,0,21
+146462,102994.9763,54773.42296,0,21
+146463,103096.8348,55626.33957,0,21
+146464,104273.052,55733.40802,0,21
+146465,104852.8479,56105.96307,0,21
+146466,105257.6948,56675.33116,0,21
+146467,106422.7209,56718.1302,0,21
+146468,106815.9969,57353.57281,0,21
+146469,107394.0091,57748.93915,0,21
+146470,108174.3418,57785.6198,0,21
+146471,107715.4665,58291.78559,0,21
+146472,108013.6346,59304.85544,0,21
+146473,109076.5694,59769.58595,0,21
+146474,109558.9223,60615.45357,0,21
+146475,110162.0143,61272.55281,0,21
+146476,110452.4104,62273.95915,0,21
+146477,111496.4934,62750.87653,0,21
+146478,111797.0348,63822.1601,0,21
+146479,112461.8161,64235.88269,0,21
+146480,113123.1123,65255.76437,0,21
+146481,113568.7214,65781.85092,0,21
+146482,114054.9548,66576.56656,0,21
+146483,115041.9097,67566.19382,0,21
+146484,115038.4672,68101.44873,0,21
+146485,115912.4122,68796.47359,0,21
+146486,116642.6802,69795.71987,0,21
+146487,116930.2982,70490.17389,0,21
+146488,117591.4039,71203.04529,0,21
+146489,118209.8972,71833.61154,0,21
+146490,118769.8303,72697.70482,0,21
+146491,119524.7174,73849.66671,0,21
+146492,120570.1388,74212.18008,0,21
+146493,121493.5041,75354.08088,0,21
+146494,122692.0566,76144.13108,0,21
+146495,123482.9342,77124.16026,0,21
+146496,124777.8427,77734.02816,0,21
+146497,125482.2006,79068.4284,0,21
+146498,127233.4986,79490.57401,0,21
+146499,127833.714,80859.18987,0,21
+146500,129403.285,81456.44916,0,21
+146501,130514.7899,82635.32729,0,21
+146502,131743.4328,83599.13626,0,21
+146503,132802.4707,84635.20901,0,21
+146504,134171.8803,85347.45662,0,21
+146505,135658.1737,86665.85923,0,21
+146506,136513.3485,87565.10006,0,21
+146507,138073.8287,88513.39439,0,21
+146508,139155.3206,89629.79706,0,21
+146509,140395.1554,90723.3422,0,21
+146510,141827.6929,91535.8876,0,21
+146511,142812.6218,92824.49224,0,21
+146512,144472.4201,93617.17298,0,21
+146513,145432.809,94943.96547,0,21
+146514,147104.9427,95877.08638,0,21
+146515,148030.8466,96761.37659,0,21
+146516,149484.4204,98156.16754,0,21
+146517,151001.5576,99055.64829,0,21
+146518,151944.8776,100030.0317,0,21
+146519,153938.4732,101197.8701,0,21
+146520,156348.074,102361.9329,0,21
+146521,159086.9324,102903.7406,0,21
+146522,162363.3052,103569.188,0,21
+146523,164629.6466,104101.7135,0,21
+146524,167679.3064,104737.2126,0,21
+146525,170550.7917,105487.3089,0,21
+146526,173140.8491,106238.212,0,21
+146527,176153.4546,106346.3603,0,21
+146528,178792.0374,107664.3551,0,21
+146529,181825.1002,107726.7917,0,21
+146530,184518.2135,108862.6226,0,21
+146531,187404.8799,109140.9448,0,21
+146532,190138.4871,109943.256,0,21
+146533,193481.4901,110720.152,0,21
+146534,196017.6879,111168.9997,0,21
+146535,198774.3682,112047.221,0,21
+146536,203112.3817,112573.6741,0,21
+146537,206002.6317,113233.514,0,21
+146538,209385.5722,113949.1263,0,21
+146539,211943.4388,114656.6028,0,21
+146540,215720.7649,115206.8949,0,21
+146541,218690.9828,115968.9354,0,21
+146542,221209.7785,116661.2878,0,21
+146543,225197.3377,117440.4208,0,21
+146544,227326.8544,117816.2215,0,21
+146545,231377.8387,118900.5811,0,21
+146546,233679.901,119260.5297,0,21
+146547,237398.2565,120046.3956,0,21
+146548,239928.0612,120643.1043,0,21
+146549,243570.2071,121364.1695,0,21
+146550,246435.5978,121766.2615,0,21
+146551,249255.671,122626.4523,0,21
+146552,252053.4715,123208.8041,0,21
+146553,254900.7484,124868.5808,0,21
+146554,257545.7201,125745.2307,0,21
+146555,260205.3832,126913.9466,0,21
+146556,263090.6571,127208.6076,0,21
+146557,265473.373,128339.7889,0,21
+146558,268644.7317,129111.9648,0,21
+146559,271026.6121,129764.7979,0,21
+146560,273571.7486,130352.507,0,21
+146561,276590.4095,130655.1703,0,21
+146562,278909.7883,131202.1246,0,21
+146563,281669.9426,131196.7676,0,21
+146564,284269.5161,131949.4191,0,21
+146565,286838.7664,131996.9618,0,21
+146566,290839.635,132387.5215,0,21
+146567,292517.6862,132877.4208,0,21
+146568,296403.0017,133411.4991,0,21
+146569,299999.9495,138281.1843,0,21
+146570,302052.3617,136958.9509,0,21
+146571,305345.4818,138535.1207,0,21
+146572,307857.5459,139119.2328,0,21
+146573,310060.7235,140242.1709,0,21
+146574,313552.6613,141240.49,0,21
+146575,315375.7113,142012.7037,0,21
+146576,318625.9757,142808.3754,0,21
+146577,321055.231,144653.9601,0,21
+146578,323541.4467,145564.3702,0,21
+146579,326455.2993,145852.9199,0,21
+146580,328689.4451,147503.2431,0,21
+146581,332624.5695,149960.0324,0,21
+146582,332697.1184,150874.7588,0,21
+146583,334019.6732,151161.7477,0,21
+146584,334463.2023,152044.044,0,21
+146585,334947.943,152141.6491,0,21
+146586,335753.1508,152405.4253,0,21
+146587,335949.0336,153052.3237,0,21
+146588,337067.4134,153456.8179,0,21
+146589,337238.7672,153528.8415,0,21
+146590,337553.4146,154401.344,0,21
+146591,338595.9306,154272.5895,0,21
+146592,339068.0334,154737.8604,0,21
+146593,339211.6499,155307.1378,0,21
+146594,339815.6034,155246.3096,0,21
+146595,340463.624,155708.2751,0,21
+146596,340957.2059,155932.2801,0,21
+146597,341596.0621,156683.3356,0,21
+146598,341947.8279,156385.6707,0,21
+146599,342487.8462,157203.0682,0,21
+146600,342864.5984,157276.9385,0,21
+146601,343660.0376,157622.9446,0,21
+146602,343847.2649,158632.1248,0,21
+146603,344451.5695,158696.2206,0,21
+146604,344773.4525,159369.2643,0,21
+146605,345201.5001,159371.9602,0,21
+146606,345893.8828,159756.6676,0,21
+146607,345884.3808,160140.7675,0,21
+146608,347027.277,160538.3928,0,21
+146609,346965.4253,160474.8599,0,21
+146610,347182.8496,160800.6297,0,21
+146611,348282.3705,160492.7611,0,21
+146612,347903.9775,160622.5691,0,21
+146613,348843.2118,161124.8788,0,21
+146614,349351.8057,160568.3075,0,21
+146615,349461.7673,161698.8398,0,21
+146616,349688.912,161142.7796,0,21
+146617,350480.3959,161654.1841,0,21
+146618,350604.587,161675.4375,0,21
+146619,351091.7097,161994.3301,0,21
+146620,351501.8154,161908.2822,0,21
+146621,351794.8141,162143.5062,0,21
+146622,352305.9427,162347.2545,0,21
+146623,352598.371,162105.5898,0,21
+146624,352948.2898,162859.3461,0,21
+146625,353257.3296,162378.3002,0,21
+146626,353546.4571,162988.7959,0,21
+146627,354270.7228,162813.6635,0,21
+146628,354353.8974,163374.0888,0,21
+146629,354785.3541,162931.8942,0,21
+146630,355035.4905,163377.4007,0,21
+146631,355433.3351,163277.1032,0,21
+146632,355742.7628,163667.1517,0,21
+146633,356232.1621,163643.0926,0,21
+146634,356425.1642,163943.5349,0,21
+146635,356921.5314,163853.8153,0,21
+146636,356866.8692,164498.1413,0,21
+146637,357690.1978,163925.9145,0,21
+146638,357998.4062,164570.2315,0,21
+146639,357934.9018,164326.4522,0,21
+146640,358710.8578,165173.5422,0,21
+146641,358385.5336,167109.8881,0,21
+146642,359454.0315,170330.7657,0,21
+146643,359471.7082,172443.5814,0,21
+146644,359410.5399,175897.7135,0,21
+146645,360330.0649,178457.2703,0,21
+146646,359907.3958,183087.5616,0,21
+146647,360575.2003,186021.7325,0,21
+146648,360779.2977,189635.6162,0,21
+146649,360956.0029,191820.5107,0,21
+146650,361171.913,195267.4173,0,21
+146651,361604.2358,198057.0706,0,21
+146652,361741.3909,200961.8228,0,21
+146653,362015.1269,203906.8637,0,21
+146654,362303.3635,206704.591,0,21
+146655,362342.2956,209995.1702,0,21
+146656,362846.9947,213058.5476,0,21
+146657,362858.8988,216057.7814,0,21
+146658,363313.0812,219012.0655,0,21
+146659,363452.1374,221757.8998,0,21
+146660,363505.4616,224884.7125,0,21
+146661,364116.268,227633.816,0,21
+146662,363667.0955,237281.8281,0,21
+146663,364631.2451,235958.1457,0,21
+146664,364837.7445,242621.7384,0,21
+146665,364462.2998,244613.889,0,21
+146666,365226.2117,247324.1583,0,21
+146667,364817.0887,252639.862,0,21
+146668,365915.8733,259878.9221,0,21
+146669,365323.8336,261895.1332,0,21
+146670,366066.8146,265975.0907,0,21
+146671,365951.8662,270840.402,0,21
+146672,366224.3528,273324.5033,0,21
+146673,366298.4822,278497.7295,0,21
+146674,366871.7012,281862.08,0,21
+146675,366713.1035,285547.6062,0,21
+146676,367226.8966,288789.7257,0,21
+146677,366897.6386,293938.791,0,21
+146678,367797.9594,296408.3494,0,21
+146679,367412.5845,300980.9938,0,21
+146680,368243.988,303840.1422,0,21
+146681,367282.2685,308568.1531,0,21
+146682,368863.663,310578.2832,0,21
+146683,367943.5829,316657.7915,0,21
+146684,368740.383,318232.6829,0,21
+146685,368483.1456,322531.0935,0,21
+146686,369100.4444,325788.9561,0,21
+146687,369127.8861,330332.4783,0,21
+146688,369289.4769,333214.9316,0,21
+146689,369472.5899,336419.3628,0,21
+146690,369469.7424,340845.8462,0,21
+146691,369853.5015,343815.4454,0,21
+146692,369547.5958,347169.0261,0,21
+146693,370771.9919,351641.8941,0,21
+146694,369871.0574,353801.3581,0,21
+146695,370668.4568,357963.003,0,21
+146696,370467.1235,361121.1475,0,21
+146697,370764.6518,365244.3326,0,21
+146698,370897.1918,367598.6117,0,21
+146699,371257.4619,371584.8488,0,21
+146700,371127.1207,377036.6198,0,21
+146701,0,0,0,21
+146702,0,0,0,21
+146703,0,1083.672293,0,21
+146704,0,0,0,21
+146705,0,0,1087901.315,21
+146706,339864.3339,368155.0204,0,21
+146707,0,0,0,21
+146708,0,0,0,21
+146709,0,0,0,21
+146710,0,0,0,21
+146711,0,0,0,21
+146712,0,0,0,21
+146713,0,0,0,21
+146714,0,0,0,21
+146715,0,0,0,21
+146716,0,0,0,21
+146717,0,0,0,21
+146718,0,0,0,21
+146719,0,0,0,21
+146720,0,0,0,21
+146721,0,0,0,21
+146722,0,0,0,21
+146723,0,0,0,21
+146724,0,0,0,21
+146725,0,7.871523066,0,21
+146726,0,0,0,21
+146727,0,148.5157559,0,21
+146728,0,0,0,21
+146729,0,0,0,21
+146730,0,0,0,21
+146731,0,71.37525057,0,21
+146732,0,0,0,21
+146733,0,0,0,21
+146734,0,0,0,21
+146735,0,108.9004243,0,21
+146736,0,0,0,21
+146737,0,0,0,21
+146738,0,0,0,21
+146739,0,103.2111392,1053584.719,21
+146740,0,0,0,21
+146741,0,368146.9738,0,21
+146742,339839.8036,0,0,21
+146743,0,103.7613001,0,21
+146744,0,0,0,21
+146745,0,0,0,21
+146746,0,0,0,21
+146747,0,77.83366553,0,21
+146748,0,0,0,21
+146749,0,0,0,21
+146750,0,0,0,21
+146751,0,113.1250236,0,21
+146752,0,0,0,21
+146753,0,0,0,21
+146754,0,0,0,21
+146755,0,117.4816224,0,21
+146756,0,0,0,21
+146757,0,0,0,21
+146758,0,0,0,21
+146759,0,120.875379,0,21
+146760,0,0,0,15.6
+146761,0,506.0792104,0,15.6
+146762,0,0,0,15.6
+146763,0,0,0,15.6
+146764,0,0,0,15.6
+146765,0,0,0,15.6
+146766,0,0,0,15.6
+146767,0,0,0,15.6
+146768,0,0,0,15.6
+146769,0,0,0,15.6
+146770,0,0,0,15.6
+146771,0,0,0,15.6
+146772,0,0,0,15.6
+146773,0,0,1021275.224,15.6
+146774,0,0,0,15.6
+146775,0,0,0,15.6
+146776,0,368143.7243,0,15.6
+146777,0,0,0,15.6
+146778,339817.5365,0,0,15.6
+146779,0,0,0,15.6
+146780,0,0,0,15.6
+146781,0,0,0,15.6
+146782,0,0,0,15.6
+146783,0,0,0,15.6
+146784,0,0,0,15.6
+146785,0,0,0,15.6
+146786,0,0,0,15.6
+146787,0,0,0,15.6
+146788,0,0,0,15.6
+146789,0,0,0,15.6
+146790,0,0,0,15.6
+146791,0,0,0,15.6
+146792,0,0,0,15.6
+146793,0,0,0,15.6
+146794,0,0,0,15.6
+146795,0,0,0,15.6
+146796,0,0,0,15.6
+146797,0,0,0,15.6
+146798,0,0,0,15.6
+146799,0,0,0,15.6
+146800,0,0,0,15.6
+146801,0,0,0,15.6
+146802,0,0,0,15.6
+146803,0,0,0,15.6
+146804,0,0,0,15.6
+146805,0,0,0,15.6
+146806,0,0,0,15.6
+146807,0,0,990356.0053,15.6
+146808,0,0,0,15.6
+146809,0,0,0,15.6
+146810,0,0,0,15.6
+146811,0,368143.1077,0,15.6
+146812,0,0,0,15.6
+146813,0,0,0,15.6
+146814,339796.134,0,0,15.6
+146815,0,0,0,15.6
+146816,0,0,0,15.6
+146817,0,0,0,15.6
+146818,0,0,0,15.6
+146819,0,0,0,15.6
+146820,0,0,0,15.6
+146821,0,0,0,15.6
+146822,0,0,0,15.6
+146823,0,0,0,15.6
+146824,0,0,0,15.6
+146825,0,0,0,15.6
+146826,0,0,0,15.6
+146827,0,0,0,15.6
+146828,0,0,0,15.6
+146829,0,0,0,15.6
+146830,0,0,0,15.6
+146831,0,0,0,15.6
+146832,0,0,0,15.6
+146833,0,0,0,15.6
+146834,0,0,0,15.6
+146835,0,0,0,15.6
+146836,0,0,0,15.6
+146837,0,0,0,15.6
+146838,0,0,0,15.6
+146839,0,0,0,15.6
+146840,0,0,0,15.6
+146841,0,0,0,15.6
+146842,0,0,962011.7179,15.6
+146843,0,0,0,15.6
+146844,0,0,0,15.6
+146845,0,0,0,15.6
+146846,0,368145.0369,0,15.6
+146847,0,0,0,15.6
+146848,0,0,0,15.6
+146849,0,0,0,15.6
+146850,339783.2654,0,0,15.6
+146851,0,0,0,15.6
+146852,0,0,0,15.6
+146853,0,0,0,15.6
+146854,0,0,0,15.6
+146855,0,0,0,15.6
+146856,0,0,0,15.6
+146857,0,0,0,15.6
+146858,0,0,0,15.6
+146859,0,0,0,15.6
+146860,0,0,0,15.6
+146861,0,0,0,15.6
+146862,0,0,0,15.6
+146863,0,0,0,15.6
+146864,0,0,0,15.6
+146865,0,0,0,15.6
+146866,0,0,0,15.6
+146867,0,0,0,15.6
+146868,0,0,0,15.6
+146869,0,0,0,15.6
+146870,0,0,0,15.6
+146871,0,0,0,15.6
+146872,0,0,0,15.6
+146873,0,0,0,15.6
+146874,0,0,0,15.6
+146875,0,0,0,15.6
+146876,0,0,0,15.6
+146877,0,0,936995.1567,15.6
+146878,0,0,0,15.6
+146879,0,0,0,15.6
+146880,0,0,0,15.6
+146881,0,368149.0426,0,15.6
+146882,0,0,0,15.6
+146883,0,0,0,15.6
+146884,0,0,0,15.6
+146885,0,0,0,15.6
+146886,339777.6045,0,0,15.6
+146887,0,0,0,15.6
+146888,0,0,0,15.6
+146889,0,0,0,15.6
+146890,0,0,0,15.6
+146891,0,0,0,15.6
+146892,0,0,0,15.6
+146893,0,0,0,15.6
+146894,0,0,0,15.6
+146895,0,0,0,15.6
+146896,0,0,0,15.6
+146897,0,0,0,15.6
+146898,0,0,0,15.6
+146899,0,0,0,15.6
+146900,0,0,0,15.6
+146901,0,0,0,15.6
+146902,0,0,0,15.6
+146903,0,0,0,15.6
+146904,0,0,0,15.6
+146905,0,0,0,15.6
+146906,0,0,0,15.6
+146907,0,0,0,15.6
+146908,0,0,0,15.6
+146909,0,0,0,15.6
+146910,0,0,0,15.6
+146911,0,0,0,15.6
+146912,0,0,912780.2266,15.6
+146913,0,0,0,15.6
+146914,0,0,0,15.6
+146915,0,0,0,15.6
+146916,0,368148.213,0,15.6
+146917,0,0,0,15.6
+146918,0,0,0,15.6
+146919,0,0,0,15.6
+146920,0,0,0,15.6
+146921,0,0,0,15.6
+146922,339790.8674,0,0,15.6
+146923,0,0,0,15.6
+146924,0,0,0,15.6
+146925,0,0,0,15.6
+146926,0,0,0,15.6
+146927,0,0,0,15.6
+146928,0,0,0,15.6
+146929,0,0,0,15.6
+146930,0,0,0,15.6
+146931,0,0,0,15.6
+146932,0,0,0,15.6
+146933,0,0,0,15.6
+146934,0,0,0,15.6
+146935,0,0,0,15.6
+146936,0,0,0,15.6
+146937,0,0,0,15.6
+146938,0,0,0,15.6
+146939,0,0,0,15.6
+146940,0,0,0,15.6
+146941,0,0,0,15.6
+146942,0,0,0,15.6
+146943,0,0,0,15.6
+146944,0,0,0,15.6
+146945,0,0,0,15.6
+146946,0,0,0,15.6
+146947,0,0,893499.6278,15.6
+146948,0,0,0,15.6
+146949,0,0,0,15.6
+146950,0,0,0,15.6
+146951,0,368147.2054,0,15.6
+146952,0,0,0,15.6
+146953,0,0,0,15.6
+146954,0,0,0,15.6
+146955,0,0,0,15.6
+146956,0,0,0,15.6
+146957,0,0,0,15.6
+146958,339799.4794,0,0,15.6
+146959,0,0,0,15.6
+146960,0,0,0,15.6
+146961,0,0,0,15.6
+146962,0,0,0,15.6
+146963,0,0,0,15.6
+146964,0,0,0,15.6
+146965,0,0,0,15.6
+146966,0,0,0,15.6
+146967,0,0,0,15.6
+146968,0,0,0,15.6
+146969,0,0,0,15.6
+146970,0,0,0,15.6
+146971,0,0,0,15.6
+146972,0,0,0,15.6
+146973,0,0,0,15.6
+146974,0,0,0,15.6
+146975,0,0,0,15.6
+146976,0,0,0,15.6
+146977,0,0,0,15.6
+146978,0,0,0,15.6
+146979,0,0,0,15.6
+146980,0,0,0,15.6
+146981,0,0,0,15.6
+146982,0,0,873121.0788,15.6
+146983,0,0,0,15.6
+146984,0,0,0,15.6
+146985,0,0,0,15.6
+146986,0,368146.5762,0,15.6
+146987,0,0,0,15.6
+146988,0,0,0,15.6
+146989,0,0,0,15.6
+146990,0,0,0,15.6
+146991,0,0,0,15.6
+146992,0,0,0,15.6
+146993,0,0,0,15.6
+146994,0,0,0,15.6
+146995,339800.4733,0,0,15.6
+146996,0,0,0,15.6
+146997,0,0,0,15.6
+146998,0,0,0,15.6
+146999,0,0,0,15.6
+147000,0,0,0,15.6
+147001,0,0,0,15.6
+147002,0,0,0,15.6
+147003,0,0,0,15.6
+147004,0,0,0,15.6
+147005,0,0,0,15.6
+147006,0,0,0,15.6
+147007,0,0,0,15.6
+147008,0,0,0,15.6
+147009,0,0,0,15.6
+147010,0,0,0,15.6
+147011,0,0,0,15.6
+147012,0,0,0,15.6
+147013,0,0,0,15.6
+147014,0,0,0,15.6
+147015,0,0,0,15.6
+147016,0,0,0,15.6
+147017,0,0,857545.4028,15.6
+147018,0,0,0,15.6
+147019,0,0,0,15.6
+147020,0,0,0,15.6
+147021,0,0,0,15.6
+147022,0,368142.9663,0,15.6
+147023,0,0,0,15.6
+147024,0,0,0,15.6
+147025,0,0,0,15.6
+147026,0,0,0,15.6
+147027,0,0,0,15.6
+147028,0,0,0,15.6
+147029,0,0,0,15.6
+147030,0,0,0,15.6
+147031,0,0,0,15.6
+147032,339801.4102,0,0,15.6
+147033,0,0,0,15.6
+147034,0,0,0,15.6
+147035,0,0,0,15.6
+147036,0,0,0,15.6
+147037,0,0,0,15.6
+147038,0,0,0,15.6
+147039,0,0,0,15.6
+147040,0,0,0,15.6
+147041,0,0,0,15.6
+147042,0,0,0,15.6
+147043,0,0,0,15.6
+147044,0,0,0,15.6
+147045,0,0,0,15.6
+147046,0,0,0,15.6
+147047,0,0,0,15.6
+147048,0,0,0,15.6
+147049,0,0,0,15.6
+147050,0,0,0,15.6
+147051,0,0,0,15.6
+147052,0,0,841010.9277,15.6
+147053,0,0,0,15.6
+147054,0,0,0,15.6
+147055,0,0,0,15.6
+147056,0,0,0,15.6
+147057,0,0,0,15.6
+147058,0,368135.748,0,15.6
+147059,0,0,0,15.6
+147060,0,0,0,15.6
+147061,90559.63899,74826.36799,0,15.6
+147062,60440.91145,30887.77222,0,15.6
+147063,23687.76582,13578.5463,0,15.6
+147064,11486.8993,24409.50732,0,15.6
+147065,33442.85933,23786.42303,0,15.6
+147066,23681.59515,22160.59263,0,15.6
+147067,24232.85127,22243.88026,0,15.6
+147068,24252.18535,22227.5399,0,15.6
+147069,364047.4571,22277.30665,0,15.6
+147070,24214.8838,22327.3162,0,15.6
+147071,24246.71539,22374.32643,0,15.6
+147072,24167.91508,22298.20241,0,15.6
+147073,24246.75755,22476.08072,0,15.6
+147074,24177.10063,22404.01471,0,15.6
+147075,24218.67848,22467.77352,0,15.6
+147076,24228.28863,22545.91584,0,15.6
+147077,24237.15561,22522.95843,0,15.6
+147078,24263.26186,22618.91514,0,15.6
+147079,24265.2835,22582.84332,0,15.6
+147080,24335.10499,22668.89112,0,15.6
+147081,24297.35638,22710.4432,0,15.6
+147082,24319.09748,22750.99912,0,15.6
+147083,24401.83037,22823.53594,0,15.6
+147084,24367.91451,22783.02107,0,15.6
+147085,24450.02994,22940.96073,0,15.6
+147086,24441.29059,22891.66657,827341.3576,15.6
+147087,24497.14439,22995.18858,0,15.6
+147088,24523.9127,22995.18706,0,15.6
+147089,24584.50281,23080.80488,0,15.6
+147090,24574.37599,23103.18745,0,15.6
+147091,0,0,0,15.6
+147092,0,368132.9155,0,15.6
+147093,0,0,0,15.6
+147094,77427.34287,62935.04801,0,15.6
+147095,11374.13616,7877.887258,0,15.6
+147096,19687.34677,23170.30216,0,15.6
+147097,29328.52278,25664.38682,0,15.6
+147098,24655.63765,23328.17606,0,15.6
+147099,25018.57668,23575.57301,0,15.6
+147100,25124.1068,23637.62073,0,15.6
+147101,25103.99254,23642.04634,0,15.6
+147102,25216.4218,23734.55337,0,15.6
+147103,25235.89911,23769.96669,0,15.6
+147104,365052.8295,23805.03915,0,15.6
+147105,25345.7687,23897.2917,0,15.6
+147106,25365.12748,23879.90608,0,15.6
+147107,25478.71538,24002.25905,0,15.6
+147108,25480.12401,23980.37976,0,15.6
+147109,25558.01452,24059.27452,0,15.6
+147110,25594.53183,24111.58787,0,15.6
+147111,25652.93398,24155.00089,0,15.6
+147112,25721.86054,24203.03071,0,15.6
+147113,25752.62132,24246.29324,0,15.6
+147114,25817.88355,24294.23288,0,15.6
+147115,25879.60906,24371.73693,0,15.6
+147116,25957.37253,24385.19279,0,15.6
+147117,25995.53224,24410.73975,0,15.6
+147118,26065.54861,24549.04318,0,15.6
+147119,26086.75424,24510.14187,0,15.6
+147120,26212.91031,24621.9435,813828.9076,17.8
+147121,1072614.64,1353720.816,0,17.8
+147122,990865.8377,704267.2505,0,17.8
+147123,495563.4567,303025.5687,0,17.8
+147124,485030.2233,455843.9616,0,17.8
+147125,352811.9552,416906.2383,0,17.8
+147126,424397.5558,755774.6844,0,17.8
+147127,411883.8937,408997.9883,0,17.8
+147128,379951.5341,387591.1122,0,17.8
+147129,385465.5478,392693.3887,0,17.8
+147130,384255.4003,390298.4337,0,17.8
+147131,381739.0336,390408.1106,0,17.8
+147132,380340.1065,388445.862,0,17.8
+147133,378849.4749,388790.7435,0,17.8
+147134,377760.0162,387522.5636,0,17.8
+147135,376472.8247,387460.5492,0,17.8
+147136,375506.4774,387010.6693,0,17.8
+147137,374090.8137,385936.8759,0,17.8
+147138,373569.6562,386238.2493,0,17.8
+147139,711704.1006,385345.6516,0,17.8
+147140,371508.8609,384527.7463,0,17.8
+147141,370110.7476,385214.057,0,17.8
+147142,369319.322,384548.8902,0,17.8
+147143,368429.1538,383945.507,0,17.8
+147144,359170.1556,383894.3708,0,17.8
+147145,357526.5507,383236.4729,0,17.8
+147146,357742.6141,383690.2985,0,17.8
+147147,356429.0477,383041.4188,0,17.8
+147148,355649.2687,382772.7269,0,17.8
+147149,354629.711,382572.3581,0,17.8
+147150,354343.1338,382288.5336,0,17.8
+147151,61690.61361,63005.4796,0,17.8
+147152,61591.27989,62699.91885,0,17.8
+147153,61371.33174,62861.22968,0,17.8
+147154,848266.0805,836437.7313,801336.3415,17.8
+147155,290289.0171,187882.2754,0,17.8
+147156,192826.4346,282583.1059,0,17.8
+147157,425383.6924,439090.1379,0,17.8
+147158,361035.5721,356473.8033,0,17.8
+147159,351497.1689,375203.5637,0,17.8
+147160,342397.6006,734662.2991,0,17.8
+147161,350601.6813,369853.1114,0,17.8
+147162,345865.0265,368645.8245,0,17.8
+147163,345966.6871,368227.2117,0,17.8
+147164,344459.0145,368001.8033,0,17.8
+147165,344667.8954,368334.1824,0,17.8
+147166,343479.0606,367808.4511,0,17.8
+147167,343509.9996,367872.9372,0,17.8
+147168,341992.4338,367868.2243,0,17.8
+147169,342161.4254,367582.8823,0,17.8
+147170,341264.9537,367709.0776,0,17.8
+147171,340516.1894,367401.5203,0,17.8
+147172,340215.2501,367315.5406,0,17.8
+147173,339517.0236,367608.5768,0,17.8
+147174,678620.7609,366619.555,0,17.8
+147175,347372.7668,367722.8934,0,17.8
+147176,343220.3693,366563.6095,0,17.8
+147177,345007.5756,367488.8387,0,17.8
+147178,343453.4556,366661.1138,0,17.8
+147179,343028.7272,378010.3505,0,17.8
+147180,342644.8497,376198.8897,0,20
+147181,1217680.232,1680297.585,0,20
+147182,684491.5737,414644.2223,0,20
+147183,253961.6327,410645.5381,0,20
+147184,385805.402,437369.0462,0,20
+147185,449891.3138,488013.4615,0,20
+147186,411455.9466,483959.3084,2011.167334,20
+147187,402770.935,467169.5117,17907.29755,20
+147188,408013.3806,471607.315,20408.8083,20
+147189,408280.1324,471504.5749,16743.14139,20
+147190,406379.7785,473329.9683,21971.93167,20
+147191,408011.7247,471351.064,21951.80722,20
+147192,407699.5899,472834.2251,21784.05271,20
+147193,407400.9893,472594.3086,22544.80498,20
+147194,407904.6029,472553.9341,23871.69095,20
+147195,407857.2895,472469.7588,23599.67136,20
+147196,408166.326,474319.3617,24035.82462,20
+147197,408144.766,472387.2377,26693.66528,20
+147198,408274.9525,473768.9307,28968.84682,20
+147199,408759.5963,473685.789,27861.52396,20
+147200,409330.3736,473609.5427,29065.30782,20
+147201,408536.1253,475000.5356,29480.65655,20
+147202,410066.0762,473451.0982,34030.69896,20
+147203,409103.1757,475024.0919,32942.94266,20
+147204,410026.5284,475100.5741,33892.25853,20
+147205,410808.8959,475767.9354,34715.08694,20
+147206,410388.0758,475326.5139,35431.04333,20
+147207,410618.5795,476680.2882,36107.97679,20
+147208,412250.9753,475333.3386,36691.60872,20
+147209,411693.3311,477280.2061,37345.72363,20
+147210,411806.8721,477153.135,38053.85656,20
+147211,412431.1457,476555.9269,38845.5388,20
+147212,414224.4978,479022.5528,38918.10132,20
+147213,412282.4211,477636.1016,40128.98988,20
+147214,414138.7879,478313.9947,40307.50042,20
+147215,414090.5153,480126.1638,41053.68849,20
+147216,415379.3895,470239.5227,41699.7944,20
+147217,414544.1056,469261.0635,42252.56084,20
+147218,415762.3856,468160.257,42646.49643,20
+147219,416631.9107,469017.721,43331.87093,20
+147220,415490.6046,465438.4817,43989.61444,20
+147221,417969.5157,468070.0739,44202.63059,20
+147222,417046.6346,464673.9276,44959.82227,20
+147223,409827.8205,466502.6938,45559.71094,20
+147224,408407.7997,463878.004,46124.36703,20
+147225,407602.3528,464798.6413,46302.00681,20
+147226,405975.6839,463700.1843,47247.18981,20
+147227,407122.8846,464050.8133,47502.00985,20
+147228,405059.3638,462250.3027,48104.87541,20
+147229,405662.0468,462895.8598,48589.45474,20
+147230,404183.8804,461039.2812,49155.3176,20
+147231,403255.7102,461301.9463,49238.2374,20
+147232,403884.5555,460697.1804,50229.0379,20
+147233,402662.6062,459543.1751,50598.92384,20
+147234,401492.5783,459234.7068,50928.86167,20
+147235,401572.0211,457643.6562,51397.43865,20
+147236,400168.8071,458651.2631,51984.20496,20
+147237,400371.7958,456771.014,52456.48662,20
+147238,399232.5023,456299.8737,52738.70367,20
+147239,398493.276,455832.9615,53522.98663,20
+147240,398279.0896,454721.0769,53540.4128,21
+147241,596086.7161,1013833.105,46022.25648,21
+147242,589525.6912,1006718.707,45270.01615,21
+147243,586011.896,1001562.327,45485.71742,21
+147244,585228.5225,998995.4692,45892.55339,21
+147245,582071.0585,995198.9653,45829.91049,21
+147246,580515.1809,991934.3086,46352.20596,21
+147247,578249.1944,989206.1308,46865.95396,21
+147248,576854.093,985530.3898,46766.1231,21
+147249,574087.9457,982027.9647,47557.95482,21
+147250,571579.0725,978272.5558,47486.28448,21
+147251,571305.0746,975493.8212,47964.31687,21
+147252,568020.7084,970503.7901,48298.97451,21
+147253,567109.4654,969462.6746,48819.52488,21
+147254,564771.791,964366.8385,48685.44563,21
+147255,563391.1391,962461.0751,39262.10917,21
+147256,561722.313,958253.7404,37590.68775,21
+147257,559541.3943,956104.7066,37119.35688,21
+147258,558127.4362,951953.352,36767.94986,21
+147259,556254.3618,949243.8678,36316.35647,21
+147260,555180.7512,946136.064,36048.90013,21
+147261,552898.4243,941726.5258,35486.79846,21
+147262,550826.2158,940374.3806,35092.22905,21
+147263,550265.2466,935409.1249,34841.20446,21
+147264,547705.3464,933556.8486,34334.12884,21
+147265,546712.4674,928626.9261,33944.38586,21
+147266,544260.6731,926780.639,33891.91418,21
+147267,543480.3237,922779.8723,33384.90443,21
+147268,540330.3145,919154.7779,32740.93612,21
+147269,540288.3948,917355.4775,33094.01431,21
+147270,537770.2796,912755.9722,32260.11341,21
+147271,536016.7279,911083.0775,31603.16308,21
+147272,534085.1756,906541.1386,31352.33739,21
+147273,533181.2342,904477.3366,30263.90618,21
+147274,531673.0433,900394.1674,29525.03112,21
+147275,529669.1454,898534.2068,28918.58375,21
+147276,528761.0168,893742.6175,28063.32349,21
+147277,526390.9011,892779.5094,27287.51219,21
+147278,525392.7032,887713.9019,26602.67999,21
+147279,524335.8879,886965.6077,25299.94694,21
+147280,522399.1739,881440.1382,25471.28958,21
+147281,520220.4116,880475.8573,25022.13319,21
+147282,519310.2931,875894.9626,25383.71147,21
+147283,517386.1009,874544.8001,25273.07949,21
+147284,516438.3404,869907.1508,25184.53579,21
+147285,514103.6622,868167.6892,25352.09797,21
+147286,512660.8605,865367.3366,25205.95336,21
+147287,511501.9792,861260.1373,25454.62913,21
+147288,508932.3836,859027.5249,25135.45028,21
+147289,508728.7881,855507.8447,25496.59486,21
+147290,505857.3085,853206.5368,25238.34806,21
+147291,504719.0962,849719.983,25308.94039,21
+147292,503316.7163,847693.9215,25390.33009,21
+147293,500967.0846,843286.8337,25189.29803,21
+147294,500393.9087,841531.1906,25306.67837,21
+147295,497186.5128,837331.1327,25291.24311,21
+147296,498053.2143,835730.4145,25414.02456,21
+147297,493844.834,832851.1515,25384.17014,21
+147298,492576.3867,828777.1386,25423.20428,21
+147299,491949.4472,826940.9407,25514.32522,21
+147300,489345.1513,823604.3274,25516.3276,21
+147301,388147.496,714677.9406,1032.063504,21
+147302,382917.9057,707680.7757,939.0701434,21
+147303,380073.6064,704081.6603,892.2182674,21
+147304,377862.1861,700339.2221,876.5539682,21
+147305,375697.8954,697271.3975,845.1248537,21
+147306,373307.5453,693865.3527,813.5777152,21
+147307,371397.7284,689287.0417,797.7645394,21
+147308,368728.9432,686419.6357,766.0339958,21
+147309,366766.2418,682284.5879,750.1264954,21
+147310,364467.2155,678880.6012,718.204399,21
+147311,361891.5503,675176.5757,718.2134807,21
+147312,360361.8919,671345.045,686.1583397,21
+147313,357603.5743,668156.6299,670.0836544,21
+147314,355654.7476,664265.4468,653.9738122,21
+147315,353508.1989,660879.0667,637.8281912,21
+147316,351226.2761,657136.3933,605.4203498,21
+147317,349323.4922,653676.1303,605.4268056,21
+147318,347303.1065,650422.0045,572.8682432,21
+147319,345344.7915,647086.4823,572.8740237,21
+147320,342990.2935,643928.6742,523.7371506,21
+147321,341658.4483,639732.5609,540.1634121,21
+147322,339346.782,637097.8541,490.7777307,21
+147323,337465.8236,633757.3983,507.2880882,21
+147324,335688.8503,630242.3944,457.6412034,21
+147325,333728.0823,627131.5254,441.0034315,21
+147326,331976.4389,623966.5749,441.0068564,21
+147327,329941.6397,620631.0485,407.5825152,21
+147328,328515.5897,617160.6403,390.7962394,21
+147329,326204.1214,614398.5922,373.9572373,21
+147330,324707.654,610914.3542,357.0636585,21
+147331,322978.1955,608090.9914,340.1134801,21
+147332,321144.5941,604281.663,306.032475,21
+147333,319292.8067,601772.3753,306.0341224,21
+147334,317761.3949,598282.4314,254.4243472,21
+147335,315971.2688,595421.2904,271.698418,21
+147336,314116.0254,592293.7369,219.6540136,21
+147337,312985.5709,589198.8031,219.654861,21
+147338,310792.2925,586498.2177,184.5473871,21
+147339,309498.3874,582780.7563,166.8522734,21
+147340,307242.6074,580284.2981,149.0517686,21
+147341,305834.8802,576854.6746,131.135383,21
+147342,304207.4629,574375.8192,113.0898641,21
+147343,302350.2769,570504.5537,94.89789445,21
+147344,301177.4368,567458.146,85.74000479,21
+147345,299242.9255,564725.0755,57.96901467,21
+147346,297948.9966,561390.4674,57.9690732,21
+147347,296017.685,558128.3906,19.94563601,21
+147348,294785.395,555529.3952,0,21
+147349,293103.2972,551837.3428,0,21
+147350,291466.9007,549501.2272,0,21
+147351,290164.1789,545902.3659,0,21
+147352,288366.6439,543005.999,0,21
+147353,286790.9357,540171.5049,0,21
+147354,285657.9705,536875.1935,0,21
+147355,283898.8893,534060.0891,0,21
+147356,282219.3176,530845.0831,0,21
+147357,280908.9364,527586.0099,0,21
+147358,279400.1611,525345.9888,0,21
+147359,277961.6335,521687.8551,0,21
+147360,276049.4053,518730.5535,0,21
+147361,276356.2262,516915.6551,0,21
+147362,276272.8589,514856.7013,0,21
+147363,275848.8243,512636.9547,0,21
+147364,276151.6775,510751.0521,0,21
+147365,276076.6536,508570.7452,0,21
+147366,276034.6665,506715.2715,0,21
+147367,276377.0598,504214.1376,0,21
+147368,275560.9626,502679.0698,0,21
+147369,276448.4732,500460.118,0,21
+147370,275941.8839,498085.1342,0,21
+147371,276238.7297,496377.9084,0,21
+147372,276237.5419,493960.2535,0,21
+147373,276392.7355,492179.6678,0,21
+147374,275974.2459,489938.8668,0,21
+147375,276477.8425,487399.7024,0,21
+147376,276147.4594,485970.3642,0,21
+147377,276630.5507,483006.6424,0,21
+147378,276354.3587,481607.822,0,21
+147379,276431.6879,473861.226,0,21
+147380,276423.1853,473273.1505,0,21
+147381,276995.0403,469810.7525,0,21
+147382,276412.6828,466967.1974,0,21
+147383,276915.5574,464035.9634,0,21
+147384,276705.0527,460888.6427,0,21
+147385,277038.2097,458381.6155,0,21
+147386,276713.0364,454871.6003,0,21
+147387,276901.8199,452512.2105,0,21
+147388,276724.0933,449182.2722,0,21
+147389,277181.8259,446128.7559,0,21
+147390,276593.319,443575.5942,0,21
+147391,277072.3053,440371.0583,0,21
+147392,276884.9615,437403.1025,0,21
+147393,276477.6911,434585.2467,0,21
+147394,277053.0744,431386.0066,0,21
+147395,276433.3401,428781.1038,0,21
+147396,276431.3036,425795.2484,0,21
+147397,276610.4437,422573.0166,0,21
+147398,276235.8718,420017.2699,0,21
+147399,276228.5874,416422.5575,0,21
+147400,276325.648,414252.8741,0,21
+147401,275829.9372,410769.6784,0,21
+147402,275934.6228,408012.5848,0,21
+147403,275870.367,405077.2502,0,21
+147404,275525.9649,402024.3536,0,21
+147405,275622.6722,399185.2287,0,21
+147406,275372.6196,396155.5238,0,21
+147407,275079.8363,393300.5831,0,21
+147408,275343.0573,390053.8731,0,21
+147409,274791.303,387231.6646,0,21
+147410,274779.3769,383985.0247,0,21
+147411,274637.6532,381022.8221,0,21
+147412,274525.9427,378388.438,0,21
+147413,274047.3113,374745.1468,0,21
+147414,274190.2993,371767.2576,0,21
+147415,273907.1109,368612.4747,0,21
+147416,273503.2833,365781.0326,0,21
+147417,273599.0205,362330.9677,0,21
+147418,273174.3251,359721.0274,0,21
+147419,273156.9527,356348.262,0,21
+147420,272872.1383,353307.3333,0,21
+147421,270142.303,354368.4364,0,21
+147422,268803.7424,352374.1559,0,21
+147423,267653.9562,349966.0208,0,21
+147424,266311.8207,347504.8389,0,21
+147425,264568.194,345100.1642,0,21
+147426,263691.6372,343198.6922,0,21
+147427,262288.7008,340277.8172,0,21
+147428,261382.1053,337958.8804,0,21
+147429,260400.4197,335540.2981,0,21
+147430,258976.6226,333211.8895,0,21
+147431,257729.528,330753.9475,0,21
+147432,256519.3335,328188.0885,0,21
+147433,255034.0793,325547.6339,0,21
+147434,253512.1596,323517.3728,0,21
+147435,252432.7452,320760.4589,0,21
+147436,251041.3346,318031.1658,0,21
+147437,249402.3583,316148.6337,0,21
+147438,248296.3934,313083.7006,0,21
+147439,246758.1432,310729.5955,0,21
+147440,245645.8612,309170.7037,0,21
+147441,243965.8297,306662.8126,0,21
+147442,242843.128,304664.2712,0,21
+147443,241283.2536,302874.7295,0,21
+147444,239896.0192,302149.4646,0,21
+147445,238607.1663,301008.489,0,21
+147446,237155.0707,299674.5465,0,21
+147447,235711.768,298688.2431,0,21
+147448,234308.5279,297461.5669,0,21
+147449,232936.5043,296379.4314,0,21
+147450,231613.2392,295091.654,0,21
+147451,230055.4067,293925.2769,0,21
+147452,228674.1998,292905.6501,0,21
+147453,227234.5415,292256.1641,0,21
+147454,225986.0957,291055.1731,0,21
+147455,224109.291,290705.2939,0,21
+147456,223135.6263,289518.1489,0,21
+147457,221222.3695,288885.6725,0,21
+147458,220328.568,287702.8582,0,21
+147459,218211.2805,287155.1381,0,21
+147460,217240.9989,286193.75,0,21
+147461,215442.8565,285386.1831,0,21
+147462,214200.7038,284597.4679,0,21
+147463,212334.4374,284112.2262,0,21
+147464,211118.6447,283112.6213,0,21
+147465,209562.5551,282662.0278,0,21
+147466,207871.707,282062.0459,0,21
+147467,206677.442,281067.3745,0,21
+147468,204819.5304,280628.8281,0,21
+147469,203948.3553,280029.7624,0,21
+147470,203350.5815,279129.1305,0,21
+147471,202200.2434,278654.4463,0,21
+147472,201338.7494,278064.9314,0,21
+147473,200688.1169,277280.5773,0,21
+147474,199580.3062,276786.131,0,21
+147475,198779.6877,276138.8805,0,21
+147476,197944.1399,275573.6829,0,21
+147477,196674.2563,274823.4628,0,21
+147478,195949.588,274289.7326,0,21
+147479,194944.3987,273923.5796,0,21
+147480,193996.197,273034.5337,0,21
+147481,193739.1221,267544.4335,0,21
+147482,192195.4746,265738.8337,0,21
+147483,191225.3665,264158.8136,0,21
+147484,189664.6006,262546.6046,0,21
+147485,188522.3816,260961.4383,0,21
+147486,186980.2074,259630.5914,0,21
+147487,185976.3463,257738.8046,0,21
+147488,184552.7597,256547.9112,0,21
+147489,183119.8969,254776.2387,0,21
+147490,181825.1064,253496.0714,0,21
+147491,180700.4664,251866.5756,0,21
+147492,179252.6945,250498.1222,0,21
+147493,178111.8802,249047.7833,0,21
+147494,176540.8869,247428.565,0,21
+147495,175524.9151,246228.5069,0,21
+147496,173946.5557,244431.7391,0,21
+147497,172719.0134,243438.4987,0,21
+147498,171503.3961,241939.7093,0,21
+147499,170246.6259,240208.6489,0,21
+147500,168800.9069,239326.0891,0,21
+147501,167834.5676,237683.2502,0,21
+147502,166466.8142,236255.7388,0,21
+147503,165246.4755,235641.6825,0,21
+147504,164223.4878,234198.1294,0,21
+147505,162750.9612,231660.4942,0,21
+147506,161626.1473,230654.1446,0,21
+147507,160409.4555,229191.2965,0,21
+147508,159282.4083,227802.3394,0,21
+147509,157819.6892,226288.8152,0,21
+147510,156937.047,224901.2666,0,21
+147511,155709.7039,223298.3419,0,21
+147512,154425.1728,222110.9221,0,21
+147513,153392.0127,220422.3553,0,21
+147514,152216.0914,219170.4178,0,21
+147515,151074.3781,217913.7979,0,21
+147516,150217.188,216499.4981,0,21
+147517,148781.0418,215294.0453,0,21
+147518,147979.9153,213676.2984,0,21
+147519,146586.4307,212857.5917,0,21
+147520,145721.9598,211172.2163,0,21
+147521,144594.7809,210132.3191,0,21
+147522,143299.7328,200963.8667,0,21
+147523,142496.8098,197512.4078,0,21
+147524,141290.5753,196681.1906,0,21
+147525,140141.523,192876.1444,0,21
+147526,139048.1098,190443.5913,0,21
+147527,138314.6292,187555.7705,0,21
+147528,136690.953,184947.2078,0,21
+147529,136154.9124,182221.8148,0,21
+147530,134762.8965,179596.0311,0,21
+147531,133817.308,176999.2778,0,21
+147532,132689.692,174503.241,0,21
+147533,131638.9107,171827.6832,0,21
+147534,130760.2864,169242.3572,0,21
+147535,129401.827,166652.3123,0,21
+147536,128583.0533,164243.0894,0,21
+147537,127384.9915,161393.8581,0,21
+147538,126431.7236,158661.3144,0,21
+147539,125290.4065,154937.0258,0,21
+147540,124433.9976,152056.0188,0,21
+147541,133624.1118,172856.176,0,21
+147542,132764.5209,170652.6744,0,21
+147543,132171.7567,168032.9593,0,21
+147544,131076.6028,165212.1225,0,21
+147545,130295.5521,162636.1232,0,21
+147546,129207.4714,159835.4466,0,21
+147547,128412.8411,157136.0313,0,21
+147548,127852.452,154434.3611,0,21
+147549,126759.0654,151784.1686,0,21
+147550,125875.5598,148925.6066,0,21
+147551,125253.4853,146522.4141,0,21
+147552,124129.9053,143716.9895,0,21
+147553,123525.0167,140900.2353,0,21
+147554,122690.2121,138479.067,0,21
+147555,121639.5371,135622.9093,0,21
+147556,121061.0412,133097.0801,0,21
+147557,120016.0738,130313.2058,0,21
+147558,118641.0734,127708.1084,0,21
+147559,118007.8965,125105.6254,0,21
+147560,116912.6742,122149.7858,0,21
+147561,115954.1432,119713.7285,0,21
+147562,115006.1045,117177.0399,0,21
+147563,113676.8098,114154.6828,0,21
+147564,113244.1886,111792.4022,0,21
+147565,111866.2172,109010.0118,0,21
+147566,111252.7002,106442.7859,0,21
+147567,110167.5907,103652.3605,0,21
+147568,109150.4492,100994.8723,0,21
+147569,108298.2544,98555.36594,0,21
+147570,107402.9415,95639.89284,0,21
+147571,106295.9789,93276.7475,0,21
+147572,105305.7169,90652.73272,0,21
+147573,104244.9435,88054.96083,0,21
+147574,103368.6323,85465.42228,0,21
+147575,102061.6757,84248.04581,0,21
+147576,101362.932,82052.27326,0,21
+147577,99998.38507,79299.97087,0,21
+147578,99174.01748,77094.32035,0,21
+147579,98472.19818,74740.48174,0,21
+147580,97518.16012,72555.481,0,21
+147581,96591.07579,70094.97199,0,21
+147582,95401.50376,67997.98072,0,21
+147583,94392.25588,64802.35075,0,21
+147584,93525.74074,63036.18987,0,21
+147585,92275.22792,60300.69019,0,21
+147586,91486.51995,58304.95059,0,21
+147587,90135.01529,55930.30844,0,21
+147588,89289.27231,53706.59126,0,21
+147589,88256.67533,51117.38578,0,21
+147590,87414.55298,49487.21999,0,21
+147591,85892.10209,46556.83207,0,21
+147592,85265.35537,44819.59226,0,21
+147593,84328.06121,42243.056,0,21
+147594,83140.6136,40095.08538,0,21
+147595,82449.53603,38029.22237,0,21
+147596,81341.23341,37866.25632,0,21
+147597,80387.17891,37436.48175,0,21
+147598,79311.53279,37306.22026,0,21
+147599,78573.47873,37373.37885,0,21
+147600,78537.08735,37285.82606,0,21
+147601,66186.0967,26340.4377,0,21
+147602,64888.68161,26658.05784,0,21
+147603,63862.00602,25837.66238,0,21
+147604,62540.20599,26168.24513,0,21
+147605,61734.05174,26038.52903,0,21
+147606,60373.48139,25538.46537,0,21
+147607,59420.21118,25521.301,0,21
+147608,58108.01389,25627.93532,0,21
+147609,57157.76329,25168.20898,0,21
+147610,55847.97364,25330.78658,0,21
+147611,54957.91911,24877.9925,0,21
+147612,53603.10396,24978.85975,0,21
+147613,52546.49797,24833.70295,0,21
+147614,51322.1286,24467.05243,0,21
+147615,50351.60278,24575.60025,0,21
+147616,49294.48296,24533.78391,0,21
+147617,48262.79932,24061.84726,0,21
+147618,47223.54928,24154.566,0,21
+147619,46377.16021,23916.54529,0,21
+147620,44964.42508,23984.23885,0,21
+147621,44314.82564,23646.47621,0,21
+147622,42894.8087,23614.22187,0,21
+147623,42060.88429,23465.15968,0,21
+147624,41015.41123,23339.57395,0,21
+147625,39835.23834,23205.88013,0,21
+147626,38815.83727,23070.043,0,21
+147627,37947.16268,22906.22028,0,21
+147628,36609.47348,22983.33005,0,21
+147629,35917.09068,22531.52094,0,21
+147630,34580.21946,22734.82168,0,21
+147631,33799.37579,22369.00861,0,21
+147632,32648.01337,22357.45558,0,21
+147633,31684.2798,22345.88054,0,21
+147634,30521.99956,21950.1565,0,21
+147635,29676.91533,22157.30798,0,21
+147636,28480.58261,21813.34055,0,21
+147637,27684.12839,21660.12304,0,21
+147638,26464.49253,21877.21745,0,21
+147639,25670.08676,21478.73808,0,21
+147640,24473.27239,21364.95746,0,21
+147641,23630.50483,21467.03109,0,21
+147642,22483.35985,21067.38433,0,21
+147643,21632.99289,21283.37472,0,21
+147644,20662.56249,20793.21168,0,21
+147645,18612.84276,20976.05015,0,21
+147646,17835.0083,20715.00584,0,21
+147647,16772.99762,20870.45234,0,21
+147648,16626.23859,20474.74434,0,21
+147649,16166.12295,20677.99354,0,21
+147650,15879.96908,20437.69239,0,21
+147651,15830.75413,20412.44411,0,21
+147652,15622.37536,20540.11324,0,21
+147653,15253.01483,20260.74382,0,21
+147654,15129.44788,20375.22746,0,21
+147655,14881.62781,20132.68206,0,21
+147656,14868.7417,20083.34816,0,21
+147657,14383.15287,19852.03923,0,21
+147658,14170.41222,19828.03714,0,21
+147659,14305.45006,19801.07819,0,21
+147660,13864.88517,19558.47266,0,21
+147661,13572.43868,18980.38217,0,21
+147662,13342.19844,19082.97268,0,21
+147663,13317.17729,18683.91124,0,21
+147664,12986.22403,18683.91423,0,21
+147665,13059.66077,18383.4414,0,21
+147666,12640.49956,18398.59649,0,21
+147667,12831.52389,18241.8716,0,21
+147668,12398.26995,18072.52209,0,21
+147669,12398.26949,17837.47319,0,21
+147670,12270.46098,17785.17445,0,21
+147671,11962.07513,17667.36073,0,21
+147672,11910.94747,17510.71575,0,21
+147673,11795.70652,17496.86525,0,21
+147674,12336.3767,17221.47795,0,21
+147675,12826.41503,17207.58065,0,21
+147676,13387.93079,17063.97939,0,21
+147677,13756.98775,16904.77016,0,21
+147678,14321.60043,16904.77265,0,21
+147679,14793.08414,16879.62454,0,21
+147680,15357.52366,16600.83851,0,21
+147681,15722.67518,16600.8411,0,21
+147682,16379.35902,16547.47504,0,21
+147683,16649.11798,16323.82877,0,21
+147684,17198.7644,16520.71966,0,21
+147685,17559.27979,16016.39197,0,21
+147686,18229.38257,16375.85522,0,21
+147687,18466.11576,15976.7352,0,21
+147688,19040.83567,15935.64961,0,21
+147689,19369.54444,15963.91422,0,21
+147690,20312.95409,15908.63212,0,21
+147691,20283.06588,15656.3373,0,21
+147692,20967.52883,15627.97989,0,21
+147693,21443.85667,15615.04414,0,21
+147694,21864.95645,15346.33423,0,21
+147695,22353.49335,15439.96405,0,21
+147696,23025.53866,15184.98772,0,21
+147697,23359.42922,15022.06746,0,21
+147698,23932.56979,15130.28407,0,21
+147699,24505.92765,14751.41391,0,21
+147700,24836.73394,14710.8016,0,21
+147701,25524.88965,14682.02781,0,21
+147702,25983.44875,14316.72039,0,21
+147703,26310.96636,14246.98162,0,21
+147704,27000.78214,14123.12306,0,21
+147705,27326.10974,13836.16364,0,21
+147706,28017.02319,13561.46739,0,21
+147707,28221.12299,13532.31428,0,21
+147708,28913.17145,13243.18763,0,21
+147709,29352.46724,12840.40123,0,21
+147710,29804.928,12797.55437,0,21
+147711,30241.63072,12393.68965,0,21
+147712,30691.28696,12084.06449,0,21
+147713,31248.37392,11816.48704,0,21
+147714,31556.24481,11505.82445,0,21
+147715,32266.63862,11206.03369,0,21
+147716,32412.50344,10664.53796,0,21
+147717,33138.84006,10605.53037,0,21
+147718,33272.32482,9912.475829,0,21
+147719,35372.00266,9739.444829,0,21
+147720,34968.43101,9153.494935,0,21
+147721,34591.79852,9194.570788,0,21
+147722,34748.7179,8620.417769,0,21
+147723,34616.03664,8424.891309,0,21
+147724,34737.6133,7872.954571,0,21
+147725,35055.12791,7403.925903,0,21
+147726,35308.61464,6795.909085,0,21
+147727,35623.70776,6488.16244,0,21
+147728,35890.66887,5866.973339,0,21
+147729,36172.76655,5256.576,0,21
+147730,36470.51632,4762.462688,0,21
+147731,36735.01232,4116.651571,0,21
+147732,37031.83341,3493.114676,0,21
+147733,37311.46172,2960.976473,0,21
+147734,37590.34276,2294.952356,0,21
+147735,37868.36098,1589.262024,0,21
+147736,38163.39224,928.42764,0,21
+147737,38439.43105,769.2616281,0,21
+147738,38732.63637,714.6903428,0,21
+147739,39045.34013,621.4113874,0,21
+147740,39357.9827,559.4997491,0,21
+147741,39670.55579,493.1502977,0,21
+147742,39983.06173,446.8896481,0,21
+147743,40295.51516,446.8896896,0,21
+147744,40607.93955,433.0057968,0,21
+147745,40920.36063,446.8897744,0,21
+147746,41232.80008,433.0059216,0,21
+147747,41545.26939,433.0059724,0,21
+147748,41857.76597,433.0060166,0,21
+147749,42170.28058,419.0773872,0,21
+147750,42482.81187,433.0061015,0,21
+147751,42795.37309,419.0776298,0,21
+147752,43107.9897,419.0777522,0,21
+147753,43420.65074,419.0778012,0,21
+147754,43733.28838,405.1033419,0,21
+147755,44045.80239,419.077885,0,21
+147756,44358.0913,405.103422,0,21
+147757,44670.06525,405.1034543,0,21
+147758,44981.65153,405.1035435,0,21
+147759,45292.80289,405.1035921,0,21
+147760,45650.97553,398.0988291,0,21
+147761,45961.22006,405.1036686,0,21
+147762,46280.08193,391.0821994,0,21
+147763,46589.44772,391.0822297,0,21
+147764,46916.29256,391.0823121,0,21
+147765,47224.85748,391.0823575,0,21
+147766,47541.88923,391.0823959,0,21
+147767,47858.48022,377.0126628,0,21
+147768,48165.89636,391.0824702,0,21
+147769,48496.25281,377.0127299,0,21
+147770,48813.82752,377.0128076,0,21
+147771,49148.85199,377.0128507,0,21
+147772,49447.67806,377.0128878,0,21
+147773,49793.64245,377.0129209,0,21
+147774,50093.24338,362.8935842,0,21
+147775,50410.83872,377.012989,0,21
+147776,50740.62886,362.8936863,0,21
+147777,51038.95617,362.8937277,0,21
+147778,51388.53585,377.0131471,0,21
+147779,51687.13184,348.7233674,0,21
+147780,52028.12472,362.8938325,0,21
+147781,52287.74309,362.8935066,0,21
+147782,52674.98903,334.5001407,0,21
+147783,53036.50673,348.7232063,0,21
+147784,53413.67851,320.2228759,0,21
+147785,53797.95034,334.5002342,0,21
+147786,54147.99621,305.8894563,0,21
+147787,54538.31922,320.2229545,0,21
+147788,54894.77164,291.4979068,0,21
+147789,55275.19218,291.497937,0,21
+147790,55622.19769,291.4979635,0,21
+147791,56017.97316,277.0460045,0,21
+147792,56364.29572,277.0460303,0,21
+147793,56726.63672,262.5312916,0,21
+147794,57121.24922,262.531341,0,21
+147795,57450.43544,247.951149,0,21
+147796,57844.49992,247.9511711,0,21
+147797,58197.66488,233.3025236,0,21
+147798,58566.86777,225.9515125,0,21
+147799,58927.82548,218.5820952,0,21
+147800,59374.9324,218.5821365,0,21
+147801,60107.08927,203.7861058,0,21
+147802,60317.2345,203.7861234,0,21
+147803,60685.54578,188.9101844,0,21
+147804,61343.63703,188.910201,0,21
+147805,61547.3905,181.4407497,0,21
+147806,62070.57703,173.9494208,0,21
+147807,62421.69452,158.8979516,0,21
+147808,62926.41487,158.8979646,0,21
+147809,63224.46637,158.8979901,0,21
+147810,63779.82682,128.4943306,0,21
+147811,64017.94801,143.7490843,0,21
+147812,64646.8899,128.4944203,0,21
+147813,64878.10021,128.4944313,0,21
+147814,65504.25946,113.1239675,0,21
+147815,65744.84393,113.1239741,0,21
+147816,66369.17046,105.3915069,0,21
+147817,66595.83028,97.62509128,0,21
+147818,67103.33673,89.82256222,0,21
+147819,67594.54556,81.9813606,0,21
+147820,67954.96108,81.98136509,0,21
+147821,68461.93356,74.09851103,0,21
+147822,68823.40693,66.17043208,0,21
+147823,69314.9144,58.19275746,0,21
+147824,69693.08672,50.1600263,0,21
+147825,70184.83198,50.16002959,0,21
+147826,70563.9169,42.0651556,0,21
+147827,71048.0392,33.89591492,0,21
+147828,71420.20325,33.89931479,0,21
+147829,71927.71013,17.2875471,0,21
+147830,72419.50709,17.28759973,0,21
+147831,72658.72696,17.28764084,0,21
+147832,73292.67355,0,0,21
+147833,73659.22761,0,0,21
+147834,74166.7567,0,0,21
+147835,74401.08654,0,0,21
+147836,75157.97293,0,0,21
+147837,75284.77577,0,0,21
+147838,75901.78196,0,0,21
+147839,76393.9617,0,0,21
+147840,76654.664,0,0,21
+147841,89438.89522,1256.608999,0,21
+147842,90637.76697,4316.517006,0,21
+147843,90548.67354,16674.62156,0,21
+147844,89653.75531,8963.335849,0,21
+147845,89227.19028,11383.59162,0,21
+147846,88911.40648,11571.80438,0,21
+147847,88586.59524,11985.19243,0,21
+147848,88334.14208,21568.65564,0,21
+147849,93797.30328,16334.47746,0,21
+147850,92311.23259,18269.11786,0,21
+147851,91955.56549,18751.02109,0,21
+147852,92043.2178,19169.15838,0,21
+147853,91987.33776,19529.67868,0,21
+147854,91999.8081,19926.96068,0,21
+147855,91600.16398,20162.71682,0,21
+147856,91586.5042,20451.91513,0,21
+147857,91287.26215,21060.31086,0,21
+147858,91065.16346,21057.67224,0,21
+147859,90924.08347,21617.95236,0,21
+147860,90567.41654,21937.79103,0,21
+147861,90435.80462,21975.78457,0,21
+147862,89954.70548,22602.86851,0,21
+147863,89757.78189,22827.13437,0,21
+147864,89481.76703,22991.08173,0,21
+147865,89079.1133,23366.79814,0,21
+147866,88848.18625,23731.82871,0,21
+147867,88357.70964,23851.50981,0,21
+147868,88008.26451,24392.41811,0,21
+147869,87770.00418,24235.30137,0,21
+147870,87339.20188,24987.46202,0,21
+147871,86777.49625,25006.48892,0,21
+147872,86617.70301,25255.29308,0,21
+147873,86082.41363,25725.95893,0,21
+147874,85787.94429,25795.16551,0,21
+147875,85240.44803,26202.16665,0,21
+147876,84937.90836,26286.1643,0,21
+147877,84485.75276,26738.37645,0,21
+147878,84070.63673,26862.05095,0,21
+147879,83700.84776,27135.68855,0,21
+147880,83115.30742,27618.16074,0,21
+147881,82805.69886,27607.11704,0,21
+147882,82147.41703,27884.56088,0,21
+147883,82000.58092,28219.78639,0,21
+147884,81329.36736,28499.72719,0,21
+147885,80926.22295,28485.0741,0,21
+147886,80592.05028,29086.63416,0,21
+147887,80020.59064,28992.16584,0,21
+147888,79393.55506,29582.08125,0,21
+147889,79273.57361,29371.93023,0,21
+147890,78493.41645,30074.15568,0,21
+147891,78234.57656,29846.80623,0,21
+147892,77567.98082,30550.34562,0,21
+147893,77213.21166,30476.37405,0,21
+147894,76793.36017,30696.61815,0,21
+147895,76130.10071,31058.40475,0,21
+147896,75661.38078,31200.86511,0,21
+147897,75359.03519,31424.50511,0,21
+147898,74633.64043,31780.08461,0,21
+147899,74301.56538,31808.61565,0,21
+147900,73794.4965,32064.73577,0,21
+147901,83928.32437,41075.03475,0,21
+147902,85655.15282,41547.08928,0,21
+147903,87126.90439,42311.20678,0,21
+147904,88239.66423,42199.90714,0,21
+147905,89913.27788,42760.32939,0,21
+147906,91314.05683,42807.40772,0,21
+147907,92556.88482,43230.69542,0,21
+147908,94143.99171,43910.3543,0,21
+147909,95466.54413,43602.60043,0,21
+147910,96929.61745,44308.65827,0,21
+147911,98116.50624,44223.90346,0,21
+147912,99726.7032,44678.21626,0,21
+147913,101163.9777,45024.01978,0,21
+147914,102181.0365,45068.64612,0,21
+147915,103911.6794,45414.65289,0,21
+147916,104916.5288,45536.38132,0,21
+147917,106539.3519,45954.41658,0,21
+147918,108007.3806,46064.507,0,21
+147919,109593.8523,46322.19883,0,21
+147920,110799.814,46595.56709,0,21
+147921,112344.1413,46726.50122,0,21
+147922,113679.1801,47144.51042,0,21
+147923,114994.9519,47213.38225,0,21
+147924,116416.0038,47413.95099,0,21
+147925,117901.1612,47652.91567,0,21
+147926,119030.4734,47919.89249,0,21
+147927,120466.3301,48222.98122,0,21
+147928,121905.3407,48260.23343,0,21
+147929,123186.7027,48605.06818,0,21
+147930,124478.7481,48803.53653,0,21
+147931,125922.795,48583.60582,0,21
+147932,127103.9569,48603.17947,0,21
+147933,128603.2708,49234.16511,0,21
+147934,129851.1893,49049.96544,0,21
+147935,131261.0123,49492.83701,0,21
+147936,132694.1444,49644.45385,0,21
+147937,134106.4953,49727.34964,0,21
+147938,135473.871,50205.06753,0,21
+147939,136640.7675,50181.26087,0,21
+147940,138116.3841,50451.16487,0,21
+147941,139128.9223,50636.30188,0,21
+147942,140794.9374,50907.60753,0,21
+147943,141751.2184,50933.14545,0,21
+147944,143146.9521,51422.80739,0,21
+147945,144557.7727,51369.05557,0,21
+147946,145620.694,51479.46075,0,21
+147947,146991.9935,52038.26779,0,21
+147948,148288.3845,51842.02075,0,21
+147949,149614.7161,52250.00941,0,21
+147950,150729.7599,52498.62973,0,21
+147951,154973.281,52535.06229,0,21
+147952,156390.5828,52722.34412,0,21
+147953,157589.163,52962.1229,0,21
+147954,159611.5428,53213.90248,0,21
+147955,161056.159,53392.6382,0,21
+147956,162948.6759,53438.81039,0,21
+147957,164660.0834,53855.5626,0,21
+147958,165934.9752,53678.31252,0,21
+147959,167831.8082,54285.74201,0,21
+147960,169614.3359,54132.80069,0,21
+147961,171131.7566,54556.43843,0,21
+147962,173181.6628,54953.45736,0,21
+147963,174375.2094,55102.24083,0,21
+147964,176502.8698,55432.83242,0,21
+147965,177753.4666,55635.82025,0,21
+147966,179590.043,55971.91403,0,21
+147967,181082.1277,56263.1937,0,21
+147968,182975.5771,56543.98694,0,21
+147969,184127.8668,56726.4902,0,21
+147970,186342.5397,57327.80715,0,21
+147971,187489.7904,57190.46298,0,21
+147972,189233.6696,57777.9506,0,21
+147973,190913.5418,57810.44728,0,21
+147974,192381.309,58236.97856,0,21
+147975,194366.6002,58618.9862,0,21
+147976,195519.9821,58684.59106,0,21
+147977,197347.6776,59065.65877,0,21
+147978,198947.3064,59316.50878,0,21
+147979,200434.8045,59703.21609,0,21
+147980,203512.6776,59718.91203,0,21
+147981,207083.6139,60154.54218,0,21
+147982,208752.8859,60544.60656,0,21
+147983,210896.2299,60585.13664,0,21
+147984,213076.5342,61166.09577,0,21
+147985,215492.7352,61036.38947,0,21
+147986,217712.8348,61596.11153,0,21
+147987,220239.9489,61809.59706,0,21
+147988,222162.9976,62247.71985,0,21
+147989,224525.3686,62229.63993,0,21
+147990,226870.1191,62666.70781,0,21
+147991,228616.07,62845.23865,0,21
+147992,230884.7978,63292.31468,0,21
+147993,232165.2352,63311.97584,0,21
+147994,234590.2307,63856.69113,0,21
+147995,236056.4898,64124.20869,0,21
+147996,237857.345,64094.68991,0,21
+147997,239949.6039,64726.81443,0,21
+147998,241431.1009,64563.98585,0,21
+147999,243308.8138,65121.89379,0,21
+148000,245036.161,65194.41793,0,21
+148001,246849.9168,65569.22106,0,21
+148002,248215.4709,65800.38057,0,21
+148003,250344.9816,66197.16639,0,21
+148004,251871.285,66443.60619,0,21
+148005,253054.6102,66606.47714,0,21
+148006,255543.4565,66871.26836,0,21
+148007,256700.7925,67049.7348,0,21
+148008,258367.1178,67458.3638,0,21
+148009,266498.0791,67317.78143,0,21
+148010,269746.2974,68054.85956,0,21
+148011,271544.1646,67922.17219,0,21
+148012,273755.3217,68303.69887,0,21
+148013,275206.1199,68344.5778,0,21
+148014,277305.1232,68707.84893,0,21
+148015,278774.4531,68979.32137,0,21
+148016,280793.0578,69283.55003,0,21
+148017,282318.1616,69207.99145,0,21
+148018,284388.4607,70421.13654,0,21
+148019,285484.3033,70026.30441,0,21
+148020,287473.0619,70711.37653,0,21
+148021,290774.4787,71920.80165,0,21
+148022,292761.1211,72700.24142,0,21
+148023,293653.4177,72813.36871,0,21
+148024,295437.4297,73383.02759,0,21
+148025,296290.8507,73046.88924,0,21
+148026,297821.5136,74141.24546,0,21
+148027,298802.1033,73858.06611,0,21
+148028,300152.0921,74440.22532,0,21
+148029,301421.1294,74969.15143,0,21
+148030,302363.8184,74903.03643,0,21
+148031,303513.8646,75213.77139,0,21
+148032,305134.1465,75717.84077,0,21
+148033,305872.5579,76000.97306,0,21
+148034,307026.0757,76117.78956,0,21
+148035,308326.6087,76619.33961,0,21
+148036,309265.965,76727.47769,0,21
+148037,310727.0178,77226.56299,0,21
+148038,311651.9793,77159.55836,0,21
+148039,312622.0264,78609.0002,0,21
+148040,314079.2359,81719.55115,0,21
+148041,314760.7365,81159.29749,0,21
+148042,316151.7227,82081.70623,0,21
+148043,316946.6359,82980.63068,0,21
+148044,318207.2971,84156.97686,0,21
+148045,318948.2482,84683.74556,0,21
+148046,320366.7484,85180.68436,0,21
+148047,320983.2251,86050.03393,0,21
+148048,322316.3784,86687.77229,0,21
+148049,323467.6484,87348.5848,0,21
+148050,324267.701,88806.25624,0,21
+148051,325397.8518,89677.26701,0,21
+148052,326235.5618,91040.47823,0,21
+148053,327609.9689,93155.31528,0,21
+148054,328087.5398,93545.6621,0,21
+148055,329424.4742,94135.75474,0,21
+148056,330387.3952,94960.63259,0,21
+148057,331695.2935,94836.93392,0,21
+148058,333711.1073,95450.94018,0,21
+148059,334001.4651,95864.99946,0,21
+148060,335179.0459,96313.95259,0,21
+148061,336624.1385,96232.75342,0,21
+148062,337197.6805,97192.69703,0,21
+148063,338499.3488,97489.13531,0,21
+148064,339391.4558,98511.66911,0,21
+148065,340444.8643,98697.82603,0,21
+148066,341623.0583,99729.97314,0,21
+148067,342293.0709,100172.1009,0,21
+148068,343776.6329,100461.174,0,21
+148069,344397.4132,101526.1263,0,21
+148070,345376.1552,101505.6042,0,21
+148071,346400.7626,102783.7127,0,21
+148072,347372.6301,102906.5983,0,21
+148073,348540.5159,103619.678,0,21
+148074,349377.7756,104005.9448,0,21
+148075,350049.8341,104563.9509,0,21
+148076,351496.3481,105633.1471,0,21
+148077,352015.1428,105332.9405,0,21
+148078,353227.5435,106516.4096,0,21
+148079,354145.1382,106810.2676,0,21
+148080,354913.3501,107132.8699,0,21
+148081,355964.52,108961.5083,0,21
+148082,356322.0089,111164.9143,0,21
+148083,357985.9768,116055.0022,0,21
+148084,358218.7078,120627.6593,0,21
+148085,359402.0427,125062.5895,0,21
+148086,359593.6304,130062.46,0,21
+148087,361233.0854,134293.4122,0,21
+148088,361030.4916,139395.1742,0,21
+148089,362716.5666,145051.4333,0,21
+148090,362905.9848,150956.9361,0,21
+148091,364122.0747,155923.495,0,21
+148092,364601.4526,160871.241,0,21
+148093,365343.4167,166398.814,0,21
+148094,366389.1757,171203.0419,0,21
+148095,366907.6794,176675.8829,0,21
+148096,367966.389,181434.129,0,21
+148097,368519.6673,186801.1754,0,21
+148098,368951.1324,191878.0469,0,21
+148099,370161.3277,197279.1121,0,21
+148100,370797.6898,202099.5596,0,21
+148101,371301.8345,207253.6414,0,21
+148102,372417.3382,212589.4679,0,21
+148103,372854.074,217486.7947,0,21
+148104,373535.6452,222638.0976,0,21
+148105,374692.6098,227960.4949,0,21
+148106,374969.6236,232386.1794,0,21
+148107,375542.3449,238207.3229,0,21
+148108,376960.8478,242424.0101,0,21
+148109,377107.5737,248293.3532,0,21
+148110,377794.7725,252554.4811,0,21
+148111,378526.9071,258122.0591,0,21
+148112,379636.3753,262981.578,0,21
+148113,379684.9564,267859.8861,0,21
+148114,380761.5275,272773.3269,0,21
+148115,381770.9298,278007.4552,0,21
+148116,381680.6087,282805.3389,0,21
+148117,383045.916,287894.1358,0,21
+148118,383254.4266,293082.0128,0,21
+148119,384089.2228,297628.0791,0,21
+148120,384834.7369,302367.9707,0,21
+148121,385266.3257,308276.188,0,21
+148122,386134.1183,312022.8557,0,21
+148123,387088.4342,317789.0677,0,21
+148124,387101.619,322878.861,0,21
+148125,388263.2794,327632.6923,0,21
+148126,388734.4394,333274.9431,0,21
+148127,389370.1464,337689.238,0,21
+148128,389877.9931,342844.0578,0,21
+148129,390901.1331,348390.524,0,21
+148130,391206.2037,352368.9855,0,21
+148131,391902.6493,358055.3862,0,21
+148132,392375.6001,362718.0591,0,21
+148133,393623.243,368066.5941,0,21
+148134,393487.1292,372516.7882,0,21
+148135,394645.4046,377674.6037,0,21
+148136,395089.0477,382557.8925,0,21
+148137,395619.6264,387548.3799,0,21
+148138,396665.2295,392455.107,0,21
+148139,396474.0154,397068.7158,0,21
+148140,398462.9485,402365.1189,0,21
+148141,0,0,0,21
+148142,0,0,0,21
+148143,0,0,0,21
+148144,0,125.6968919,0,21
+148145,0,0,971761.4928,21
+148146,339669.5401,368237.1303,0,21
+148147,0,0,0,21
+148148,0,144.3729562,0,21
+148149,0,0,0,21
+148150,0,0,0,21
+148151,0,0,0,21
+148152,0,105.6677982,0,21
+148153,0,0,0,21
+148154,0,0,0,21
+148155,0,0,0,21
+148156,0,117.6433892,0,21
+148157,0,0,0,21
+148158,0,0,0,21
+148159,0,0,0,21
+148160,0,122.8688341,0,21
+148161,0,0,0,21
+148162,0,0,0,21
+148163,0,0,0,21
+148164,0,123.1954553,0,21
+148165,0,0,0,21
+148166,0,0,0,21
+148167,0,0,0,21
+148168,0,124.4378104,0,21
+148169,0,0,0,21
+148170,0,0,0,21
+148171,0,0,0,21
+148172,0,124.9173864,0,21
+148173,0,0,0,21
+148174,0,0,0,21
+148175,0,0,0,21
+148176,0,126.6214897,0,21
+148177,0,0,0,21
+148178,0,0,0,21
+148179,0,0,946515.4872,21
+148180,0,126.4303089,0,21
+148181,339675.6374,368237.4272,0,21
+148182,0,0,0,21
+148183,0,0,0,21
+148184,0,116.8001043,0,21
+148185,0,0,0,21
+148186,0,0,0,21
+148187,0,0,0,21
+148188,0,98.19965887,0,21
+148189,0,0,0,21
+148190,0,0,0,21
+148191,0,0,0,21
+148192,0,119.5753147,0,21
+148193,0,0,0,21
+148194,0,0,0,21
+148195,0,0,0,21
+148196,0,0,0,21
+148197,0,138.429494,0,21
+148198,0,0,0,21
+148199,0,0,0,21
+148200,0,0,0,15.6
+148201,0,0,0,15.6
+148202,0,0,0,15.6
+148203,0,0,0,15.6
+148204,0,0,0,15.6
+148205,0,0,0,15.6
+148206,0,0,0,15.6
+148207,0,0,0,15.6
+148208,0,0,0,15.6
+148209,0,0,0,15.6
+148210,0,0,0,15.6
+148211,0,0,0,15.6
+148212,0,0,0,15.6
+148213,0,0,923172.8369,15.6
+148214,0,0,0,15.6
+148215,0,0,0,15.6
+148216,339680.0311,368233.9818,0,15.6
+148217,0,0,0,15.6
+148218,0,0,0,15.6
+148219,0,0,0,15.6
+148220,0,0,0,15.6
+148221,0,0,0,15.6
+148222,0,0,0,15.6
+148223,0,0,0,15.6
+148224,0,0,0,15.6
+148225,0,0,0,15.6
+148226,0,0,0,15.6
+148227,0,0,0,15.6
+148228,0,0,0,15.6
+148229,0,0,0,15.6
+148230,0,0,0,15.6
+148231,0,0,0,15.6
+148232,0,0,0,15.6
+148233,0,0,0,15.6
+148234,0,0,0,15.6
+148235,0,0,0,15.6
+148236,0,0,0,15.6
+148237,0,0,0,15.6
+148238,0,0,0,15.6
+148239,0,0,0,15.6
+148240,0,0,0,15.6
+148241,0,0,0,15.6
+148242,0,0,0,15.6
+148243,0,0,0,15.6
+148244,0,0,0,15.6
+148245,0,0,0,15.6
+148246,0,0,0,15.6
+148247,0,0,900088.872,15.6
+148248,0,0,0,15.6
+148249,0,0,0,15.6
+148250,0,0,0,15.6
+148251,0,368224.5299,0,15.6
+148252,339680.4795,0,0,15.6
+148253,0,0,0,15.6
+148254,0,0,0,15.6
+148255,0,0,0,15.6
+148256,0,0,0,15.6
+148257,0,0,0,15.6
+148258,0,0,0,15.6
+148259,0,0,0,15.6
+148260,0,0,0,15.6
+148261,0,0,0,15.6
+148262,0,0,0,15.6
+148263,0,0,0,15.6
+148264,0,0,0,15.6
+148265,0,0,0,15.6
+148266,0,0,0,15.6
+148267,0,0,0,15.6
+148268,0,0,0,15.6
+148269,0,0,0,15.6
+148270,0,0,0,15.6
+148271,0,0,0,15.6
+148272,0,0,0,15.6
+148273,0,0,0,15.6
+148274,0,0,0,15.6
+148275,0,0,0,15.6
+148276,0,0,0,15.6
+148277,0,0,0,15.6
+148278,0,0,0,15.6
+148279,0,0,0,15.6
+148280,0,0,0,15.6
+148281,0,0,0,15.6
+148282,0,0,880823.2363,15.6
+148283,0,0,0,15.6
+148284,0,0,0,15.6
+148285,0,0,0,15.6
+148286,0,368216.0538,0,15.6
+148287,0,0,0,15.6
+148288,339663.641,0,0,15.6
+148289,0,0,0,15.6
+148290,0,0,0,15.6
+148291,0,0,0,15.6
+148292,0,0,0,15.6
+148293,0,0,0,15.6
+148294,0,0,0,15.6
+148295,0,0,0,15.6
+148296,0,0,0,15.6
+148297,0,0,0,15.6
+148298,0,0,0,15.6
+148299,0,0,0,15.6
+148300,0,0,0,15.6
+148301,0,0,0,15.6
+148302,0,0,0,15.6
+148303,0,0,0,15.6
+148304,0,0,0,15.6
+148305,0,0,0,15.6
+148306,0,0,0,15.6
+148307,0,0,0,15.6
+148308,0,0,0,15.6
+148309,0,0,0,15.6
+148310,0,0,0,15.6
+148311,0,0,0,15.6
+148312,0,0,0,15.6
+148313,0,0,0,15.6
+148314,0,0,0,15.6
+148315,0,0,0,15.6
+148316,0,0,0,15.6
+148317,0,0,862699.3945,15.6
+148318,0,0,0,15.6
+148319,0,0,0,15.6
+148320,0,0,0,15.6
+148321,0,368209.3259,0,15.6
+148322,0,0,0,15.6
+148323,0,0,0,15.6
+148324,339641.6657,0,0,15.6
+148325,0,0,0,15.6
+148326,0,0,0,15.6
+148327,0,0,0,15.6
+148328,0,0,0,15.6
+148329,0,0,0,15.6
+148330,0,0,0,15.6
+148331,0,0,0,15.6
+148332,0,0,0,15.6
+148333,0,0,0,15.6
+148334,0,0,0,15.6
+148335,0,0,0,15.6
+148336,0,0,0,15.6
+148337,0,0,0,15.6
+148338,0,0,0,15.6
+148339,0,0,0,15.6
+148340,0,0,0,15.6
+148341,0,0,0,15.6
+148342,0,0,0,15.6
+148343,0,0,0,15.6
+148344,0,0,0,15.6
+148345,0,0,0,15.6
+148346,0,0,0,15.6
+148347,0,0,0,15.6
+148348,0,0,0,15.6
+148349,0,0,0,15.6
+148350,0,0,0,15.6
+148351,0,0,0,15.6
+148352,0,0,846709.157,15.6
+148353,0,0,0,15.6
+148354,0,0,0,15.6
+148355,0,0,0,15.6
+148356,0,368206.9735,0,15.6
+148357,0,0,0,15.6
+148358,0,0,0,15.6
+148359,0,0,0,15.6
+148360,339647.3794,0,0,15.6
+148361,0,0,0,15.6
+148362,0,0,0,15.6
+148363,0,0,0,15.6
+148364,0,0,0,15.6
+148365,0,0,0,15.6
+148366,0,0,0,15.6
+148367,0,0,0,15.6
+148368,0,0,0,15.6
+148369,0,0,0,15.6
+148370,0,0,0,15.6
+148371,0,0,0,15.6
+148372,0,0,0,15.6
+148373,0,0,0,15.6
+148374,0,0,0,15.6
+148375,0,0,0,15.6
+148376,0,0,0,15.6
+148377,0,0,0,15.6
+148378,0,0,0,15.6
+148379,0,0,0,15.6
+148380,0,0,0,15.6
+148381,0,0,0,15.6
+148382,0,0,0,15.6
+148383,0,0,0,15.6
+148384,0,0,0,15.6
+148385,0,0,0,15.6
+148386,0,0,0,15.6
+148387,0,0,830830.7779,15.6
+148388,0,0,0,15.6
+148389,0,0,0,15.6
+148390,0,0,0,15.6
+148391,0,368201.4591,0,15.6
+148392,0,0,0,15.6
+148393,0,0,0,15.6
+148394,0,0,0,15.6
+148395,0,0,0,15.6
+148396,339647.3536,0,0,15.6
+148397,0,0,0,15.6
+148398,0,0,0,15.6
+148399,0,0,0,15.6
+148400,0,0,0,15.6
+148401,0,0,0,15.6
+148402,0,0,0,15.6
+148403,0,0,0,15.6
+148404,0,0,0,15.6
+148405,0,0,0,15.6
+148406,0,0,0,15.6
+148407,0,0,0,15.6
+148408,0,0,0,15.6
+148409,0,0,0,15.6
+148410,0,0,0,15.6
+148411,0,0,0,15.6
+148412,0,0,0,15.6
+148413,0,0,0,15.6
+148414,0,0,0,15.6
+148415,0,0,0,15.6
+148416,0,0,0,15.6
+148417,0,0,0,15.6
+148418,0,0,0,15.6
+148419,0,0,0,15.6
+148420,0,0,0,15.6
+148421,0,0,0,15.6
+148422,0,0,816962.2971,15.6
+148423,0,0,0,15.6
+148424,0,0,0,15.6
+148425,0,0,0,15.6
+148426,0,368186.9905,0,15.6
+148427,0,0,0,15.6
+148428,0,0,0,15.6
+148429,0,0,0,15.6
+148430,0,0,0,15.6
+148431,0,0,0,15.6
+148432,339635.7572,0,0,15.6
+148433,0,0,0,15.6
+148434,0,0,0,15.6
+148435,0,0,0,15.6
+148436,0,0,0,15.6
+148437,0,0,0,15.6
+148438,0,0,0,15.6
+148439,0,0,0,15.6
+148440,0,0,0,15.6
+148441,0,0,0,15.6
+148442,0,0,0,15.6
+148443,0,0,0,15.6
+148444,0,0,0,15.6
+148445,0,0,0,15.6
+148446,0,0,0,15.6
+148447,0,0,0,15.6
+148448,0,0,0,15.6
+148449,0,0,0,15.6
+148450,0,0,0,15.6
+148451,0,0,0,15.6
+148452,0,0,0,15.6
+148453,0,0,0,15.6
+148454,0,0,0,15.6
+148455,0,0,0,15.6
+148456,0,0,0,15.6
+148457,0,0,803673.5246,15.6
+148458,0,0,0,15.6
+148459,0,0,0,15.6
+148460,0,0,0,15.6
+148461,0,368177.8084,0,15.6
+148462,0,0,0,15.6
+148463,0,0,0,15.6
+148464,0,0,0,15.6
+148465,0,0,0,15.6
+148466,0,0,0,15.6
+148467,0,0,0,15.6
+148468,339631.0683,0,0,15.6
+148469,0,0,0,15.6
+148470,0,0,0,15.6
+148471,0,0,0,15.6
+148472,0,0,0,15.6
+148473,0,0,0,15.6
+148474,0,0,0,15.6
+148475,0,0,0,15.6
+148476,0,0,0,15.6
+148477,0,84.65029959,0,15.6
+148478,0,0,0,15.6
+148479,0,0,0,15.6
+148480,0,0,0,15.6
+148481,0,0,0,15.6
+148482,0,2.834921642,0,15.6
+148483,0,0,0,15.6
+148484,0,0,0,15.6
+148485,0,357.2313489,0,15.6
+148486,0,0,0,15.6
+148487,0,0,0,15.6
+148488,0,0,0,15.6
+148489,0,0,0,15.6
+148490,0,8.219029524,0,15.6
+148491,0,0,0,15.6
+148492,0,124.7665368,791794.8338,15.6
+148493,0,0,0,15.6
+148494,0,0,0,15.6
+148495,0,0,0,15.6
+148496,0,368180.8213,0,15.6
+148497,0,0,0,15.6
+148498,0,115.4587571,0,15.6
+148499,0,0,0,15.6
+148500,0,0,0,15.6
+148501,90447.65992,62511.0041,0,15.6
+148502,60816.23023,22613.0228,0,15.6
+148503,23689.62013,13469.84354,0,15.6
+148504,17408.0697,21309.07415,0,15.6
+148505,369723.0705,20188.02221,0,15.6
+148506,26230.97637,19289.55298,0,15.6
+148507,24895.00366,19300.16942,0,15.6
+148508,25132.33378,19350.8242,0,15.6
+148509,25145.98406,19725.72975,0,15.6
+148510,25109.44176,19436.59528,0,15.6
+148511,25114.1453,19440.44499,0,15.6
+148512,25082.63258,19477.59301,0,15.6
+148513,25090.17886,19525.72631,0,15.6
+148514,25023.79179,19617.79337,0,15.6
+148515,25074.8884,19591.27884,0,15.6
+148516,25082.67852,19791.87592,0,15.6
+148517,25067.55501,19729.36103,0,15.6
+148518,25066.48279,19754.3282,0,15.6
+148519,25075.52762,19798.70378,0,15.6
+148520,25062.51535,19863.44768,0,15.6
+148521,25072.06141,20065.1137,0,15.6
+148522,25141.24346,19897.48215,0,15.6
+148523,25075.29238,19969.96401,0,15.6
+148524,25094.86308,19969.81668,0,15.6
+148525,25208.27839,20078.34117,0,15.6
+148526,25108.4589,20106.40532,781159.259,15.6
+148527,25189.3408,20149.13736,0,15.6
+148528,25178.62082,20383.36203,0,15.6
+148529,25208.6937,20214.32054,0,15.6
+148530,25240.16189,20374.44193,0,15.6
+148531,0,368164.9569,0,15.6
+148532,86166.3074,66.42020747,0,15.6
+148533,0,0,0,15.6
+148534,78066.31548,0,0,15.6
+148535,14701.80467,56262.96683,0,15.6
+148536,18309.64674,8846.579832,0,15.6
+148537,30476.17082,18304.06716,0,15.6
+148538,25032.61309,23790.16278,0,15.6
+148539,25531.37841,20549.69674,0,15.6
+148540,365187.3534,20986.86789,0,15.6
+148541,25582.00858,20974.98798,0,15.6
+148542,25532.49235,21003.84523,0,15.6
+148543,25658.54865,21123.04978,0,15.6
+148544,25646.32001,21178.64285,0,15.6
+148545,25662.16622,21241.42804,0,15.6
+148546,25703.96466,21249.54928,0,15.6
+148547,25754.29044,21309.69807,0,15.6
+148548,25746.21857,21425.25899,0,15.6
+148549,25830.24644,21453.03745,0,15.6
+148550,25819.83979,21495.3541,0,15.6
+148551,25867.30554,21495.34929,0,15.6
+148552,25914.14633,21708.70819,0,15.6
+148553,25914.14816,21661.79428,0,15.6
+148554,25992.50085,21649.65967,0,15.6
+148555,25992.71305,21845.65094,0,15.6
+148556,26028.04736,21829.70084,0,15.6
+148557,26050.46013,21919.55505,0,15.6
+148558,26152.60471,21901.39338,0,15.6
+148559,26117.47451,22045.15862,0,15.6
+148560,26178.95742,22070.45092,770272.4533,17.8
+148561,1086029.617,1242197.537,0,17.8
+148562,931160.8391,478622.5756,0,17.8
+148563,485894.0207,295235.7242,0,17.8
+148564,376688.0865,412207.9279,0,17.8
+148565,454574.5187,635620.0775,0,17.8
+148566,363350.9042,298448.2582,0,17.8
+148567,401626.7725,393012.3394,0,17.8
+148568,377493.1046,336751.7077,0,17.8
+148569,371225.3079,345572.1415,0,17.8
+148570,374135.8727,342213.2323,0,17.8
+148571,371562.1503,343083.6281,0,17.8
+148572,370344.6444,341433.6496,0,17.8
+148573,369471.2247,341269.4737,0,17.8
+148574,368620.4419,339339.8991,0,17.8
+148575,707641.5565,340066.3747,0,17.8
+148576,366974.2171,338635.4311,0,17.8
+148577,366591.0028,338355.1707,0,17.8
+148578,365532.4128,337300.9463,0,17.8
+148579,364956.9282,337896.3865,0,17.8
+148580,364634.8051,336181.014,0,17.8
+148581,363186.7501,336352.6713,0,17.8
+148582,363238.3955,335622.7394,0,17.8
+148583,362613.7544,335267.5743,0,17.8
+148584,362167.9852,325014.4546,0,17.8
+148585,361407.0834,324462.6105,0,17.8
+148586,360997.0677,324064.5035,0,17.8
+148587,360333.3594,323411.992,0,17.8
+148588,360185.3097,323470.1925,0,17.8
+148589,359608.3428,322640.7564,0,17.8
+148590,359211.6409,322535.8407,0,17.8
+148591,61568.77538,57745.51611,0,17.8
+148592,61417.40091,57686.34809,0,17.8
+148593,69411.74707,57527.26944,0,17.8
+148594,854128.6479,57524.88856,761941.5392,17.8
+148595,324438.9835,714549.8365,0,17.8
+148596,221910.0698,216265.3592,0,17.8
+148597,428579.3176,232096.5776,0,17.8
+148598,376263.3765,292342.1247,0,17.8
+148599,373464.726,723959.8342,0,17.8
+148600,358394.9684,301410.0139,0,17.8
+148601,366907.3338,325047.6102,0,17.8
+148602,364173.9518,317973.3622,0,17.8
+148603,363441.8176,318607.38,0,17.8
+148604,362754.9853,317322.8238,0,17.8
+148605,363196.5946,318094.4414,0,17.8
+148606,362468.0059,316865.25,0,17.8
+148607,362237.2341,317595.9354,0,17.8
+148608,361715.5812,316084.6351,0,17.8
+148609,361763.765,318894.7558,0,17.8
+148610,700617.1056,319883.4392,0,17.8
+148611,361229.9871,326653.3632,0,17.8
+148612,360780.6999,322823.386,0,17.8
+148613,360303.2733,322626.8567,0,17.8
+148614,360517.8368,325802.7807,0,17.8
+148615,359860.2549,322992.7404,0,17.8
+148616,359681.963,324225.4754,0,17.8
+148617,359479.9638,322981.4773,0,17.8
+148618,359315.8818,323197.36,0,17.8
+148619,359271.4458,322857.9696,0,17.8
+148620,359356.4661,322695.3752,0,20
+148621,1115452.362,1436142.7,301140.1927,20
+148622,669268.4398,374392.5243,1761.567436,20
+148623,238365.0695,322030.0367,2251.150868,20
+148624,372707.8717,422122.7824,8737.245153,20
+148625,430683.0989,443825.1298,31791.48624,20
+148626,376292.7152,403558.2283,35628.54254,20
+148627,379989.2821,407571.5947,25890.83893,20
+148628,379043.7342,408225.4124,32078.97105,20
+148629,378559.3642,407540.3749,36594.71965,20
+148630,377126.4981,407919.0104,35605.94481,20
+148631,376122.8865,406977.0244,39003.7487,20
+148632,375569.384,407220.7095,38816.22905,20
+148633,374523.5924,407864.5978,39785.93957,20
+148634,373673.4166,407191.2403,41102.2489,20
+148635,374367.007,407197.5482,41406.6158,20
+148636,380135.4519,407473.4376,42461.53121,20
+148637,375615.0522,406542.1684,43159.6084,20
+148638,377946.9684,407100.8999,43971.86696,20
+148639,377330.3938,406979.493,44893.89635,20
+148640,376770.4034,407145.9963,45385.83999,20
+148641,378450.7633,406449.9149,46470.11645,20
+148642,376791.0862,407460.1583,47070.19972,20
+148643,377275.0043,406598.8146,47774.4122,20
+148644,377948.939,407146.7345,48679.07612,20
+148645,377666.8704,407166.013,49471.606,20
+148646,377136.5763,406872.0381,49946.77912,20
+148647,378748.9669,407206.1965,50844.06855,20
+148648,376890.3017,407257.3813,51666.8828,20
+148649,378754.9647,407533.8641,52287.16381,20
+148650,377557.6534,407505.6432,53106.3709,20
+148651,378611.2493,407679.7893,53811.31075,20
+148652,378112.3598,406600.6071,54404.76302,20
+148653,378947.6278,406908.1574,55446.41665,20
+148654,377455.4477,406190.9361,55739.15763,20
+148655,379690.3607,406200.52,56761.74816,20
+148656,378952.6712,405940.9714,57434.92142,20
+148657,378870.5167,405102.1745,58032.5363,20
+148658,379419.5379,404939.3971,58739.00189,20
+148659,379312.832,405035.1647,59762.17544,20
+148660,379487.7723,405194.0671,60253.85193,20
+148661,379950.1392,403249.3637,63968.79497,20
+148662,379253.7573,405350.5966,63055.07083,20
+148663,378768.4802,403726.0585,64818.68963,20
+148664,378080.9127,403788.4734,65216.10102,20
+148665,380327.6913,404013.3789,66786.7773,20
+148666,378420.9346,403481.118,67349.50958,20
+148667,379242.1296,403331.9629,68435.34124,20
+148668,378860.0458,403100.3295,69398.85522,20
+148669,379877.0922,403237.4479,70378.71281,20
+148670,378915.5948,402424.9597,71192.96505,20
+148671,379963.4709,403198.6106,72513.80334,20
+148672,378976.6362,402264.3205,73148.79782,20
+148673,380449.9013,402483.6803,74072.6978,20
+148674,378640.8334,401838.4302,75529.31735,20
+148675,380689.1581,402463.8934,76063.8799,20
+148676,379380.7877,401441.9834,77289.4626,20
+148677,381223.3313,402106.9478,78221.4853,20
+148678,378957.7218,401164.8148,79146.86699,20
+148679,380685.0933,401956.8855,80042.25705,20
+148680,379801.8013,400367.1334,81094.45612,21
+148681,554528.4,902089.0424,69911.52587,21
+148682,547337.307,898189.5335,69003.99662,21
+148683,549081.6388,895754.8821,69572.16792,21
+148684,548056.8779,894037.3134,69489.36693,21
+148685,546776.8334,891472.8523,70300.45718,21
+148686,547817.0235,889574.4749,70168.22561,21
+148687,547407.8354,887613.6386,71059.52583,21
+148688,546018.4456,885413.3379,71085.25668,21
+148689,547968.569,882707.5585,71644.16134,21
+148690,546545.2967,881296.9428,71920.61765,21
+148691,546828.4246,878550.7138,72372.76358,21
+148692,546527.492,876562.286,72789.71079,21
+148693,547714.0641,874963.1594,73330.02026,21
+148694,546059.5311,872707.1017,58798.5915,21
+148695,547032.9217,869987.3028,56999.1023,21
+148696,546901.0639,868677.6199,55667.80016,21
+148697,547347.6191,865837.2548,54849.15315,21
+148698,546523.7016,864378.9214,54480.62437,21
+148699,547630.5463,861960.8493,53270.26336,21
+148700,546519.1277,859948.6184,52741.68542,21
+148701,547821.1541,857637.0191,51859.27046,21
+148702,547195.5226,856263.7321,50751.08491,21
+148703,547759.9982,853825.1107,50019.82554,21
+148704,547335.2449,852342.8055,49166.09545,21
+148705,547346.0563,849595.2126,48071.81116,21
+148706,548858.7295,848434.7619,47572.50184,21
+148707,547093.0343,846124.5169,46448.43612,21
+148708,548778.1369,843809.3854,45632.82013,21
+148709,548043.4121,843002.7253,44688.44067,21
+148710,549980.0256,839585.0393,44179.13557,21
+148711,549310.4149,838683.5624,42689.11893,21
+148712,551081.7845,836227.0522,42391.59456,21
+148713,549437.6067,833401.0184,42413.22994,21
+148714,550705.1476,832047.5136,41954.7821,21
+148715,550678.0784,829171.9929,42408.14809,21
+148716,550684.6775,827334.1838,41852.41886,21
+148717,551529.5732,825620.5639,42189.33498,21
+148718,550643.2622,822350.4389,42157.87842,21
+148719,551598.5897,821286.1646,41883.14698,21
+148720,551453.0876,818248.932,42213.04432,21
+148721,551572.8193,816521.381,41776.29125,21
+148722,551711.985,814234.6089,42302.97714,21
+148723,552555.9859,812352.0261,41956.09976,21
+148724,551364.5004,809573.2678,42417.42171,21
+148725,552575.2069,808124.0894,41922.04513,21
+148726,552440.455,805286.1607,42298.84808,21
+148727,553065.4169,803460.9807,42505.67266,21
+148728,552359.8865,801627.3736,42378.68625,21
+148729,553730.5015,798677.5035,42602.40672,21
+148730,552999.1741,797318.9765,42534.22863,21
+148731,553411.6247,794861.213,42492.50989,21
+148732,553665.8074,792994.2657,42949.09994,21
+148733,553880.3328,790312.3049,42090.47667,21
+148734,553526.9447,788387.3869,42458.37537,21
+148735,554569.2077,786699.9908,42397.54988,21
+148736,554556.1435,784528.29,42069.40028,21
+148737,554884.7004,781884.8874,42589.58091,21
+148738,554250.7988,780548.5356,42152.11155,21
+148739,555566.397,777770.0525,42323.02154,21
+148740,554507.0799,776206.419,42329.84212,21
+148741,451887.4691,690006.3226,2766.809641,21
+148742,445973.2968,683568.595,2282.263943,21
+148743,445379.7131,679659.8748,2155.776922,21
+148744,443922.8793,677349.334,2056.660977,21
+148745,442912.5503,673895.7238,1929.238746,21
+148746,441279.8398,670636.2332,1843.807773,21
+148747,440526.0672,668436.288,1714.46247,21
+148748,439430.402,664301.2093,1640.442391,21
+148749,437905.9731,661715.5687,1524.430051,21
+148750,437754.8126,658647.5376,1449.927507,21
+148751,435782.7412,655613.9889,1360.387803,21
+148752,435405.3146,652125.871,1299.093187,21
+148753,433733.7139,649018.2719,1210.316051,21
+148754,433536.4416,646258.6887,1194.62792,21
+148755,431903.2213,643080.5831,1102.747595,21
+148756,431454.2243,639646.9924,1071.388192,21
+148757,430277.335,637342.9917,1039.507739,21
+148758,429584.6607,633288.8725,1007.823692,21
+148759,428756.2523,630834.4346,991.950056,21
+148760,427783.9136,628030.5382,960.1059292,21
+148761,426789.2952,624361.2446,960.1207715,21
+148762,426401.9552,622063.2736,912.1406774,21
+148763,425189.9962,618539.0375,912.1540845,21
+148764,424815.2998,616372.5803,880.0303131,21
+148765,424035.8003,612512.5119,847.7901009,21
+148766,422954.5141,610230.7986,847.8016953,21
+148767,422512.6055,607185.8965,815.4414527,21
+148768,422136.9815,604635.3738,782.958307,21
+148769,420641.1058,601328.6786,782.9682062,21
+148770,420887.8803,598567.0171,733.9998773,21
+148771,419488.6564,596399.5962,734.0085836,21
+148772,419199.652,593824.1628,701.2009816,21
+148773,418383.11,591741.8027,684.7499187,21
+148774,417759.7588,589553.568,668.2637223,21
+148775,417386.8503,587036.9021,635.176723,21
+148776,416396.3717,585100.3258,618.5814506,21
+148777,416133.2973,583032.0013,585.2709829,21
+148778,415415.7892,580326.2415,585.2765297,21
+148779,414486.6298,578928.531,551.8090686,21
+148780,414439.8376,576227.4383,518.1778555,21
+148781,413503.02,574341.3291,518.1822067,21
+148782,413099.7615,572230.77,467.4082241,21
+148783,412254.8711,570207.1343,484.3826104,21
+148784,412014.0913,568555.1931,416.2194173,21
+148785,411445.4806,565662.0519,433.3362747,21
+148786,410812.1834,564323.9828,381.8431197,21
+148787,410207.6145,562244.0454,381.8454862,21
+148788,409797.0285,559930.6833,329.8617728,21
+148789,409364.9856,558152.0224,294.8995785,21
+148790,408475.8555,556521.4622,294.9064377,21
+148791,408173.4621,552509.7775,259.680851,21
+148792,407905.3702,550992.4213,224.1578962,21
+148793,407109.442,548489.151,224.158999,21
+148794,406512.2943,546595.362,170.2298245,21
+148795,406623.7506,544553.2166,170.2302924,21
+148796,405673.6723,543001.4799,142.9236308,21
+148797,405125.4296,540327.3179,115.3415856,21
+148798,404990.7016,538866.5428,96.77432108,21
+148799,404552.3868,536496.7801,59.09478093,21
+148800,403776.6831,535026.3002,49.53096963,21
+148801,403192.2867,530218.1582,20.32088145,21
+148802,402700.6353,526407.9616,0,21
+148803,401773.2272,521694.4841,0,21
+148804,401526.9266,517413.2698,0,21
+148805,400197.3491,513469.4904,0,21
+148806,400412.6015,509119.7942,0,21
+148807,398940.8225,504392.6152,0,21
+148808,398609.9377,501054.1038,0,21
+148809,397872.4759,495702.4137,0,21
+148810,397242.65,492538.4724,0,21
+148811,396695.2115,487229.3354,0,21
+148812,396031.1294,484074.392,0,21
+148813,395215.0527,478594.2589,0,21
+148814,394796.4308,475746.1417,0,21
+148815,393846.4061,470186.9727,0,21
+148816,393527.9693,466786.9673,0,21
+148817,392476.5336,462603.2933,0,21
+148818,392603.9654,457950.0542,0,21
+148819,391156.2901,453918.2428,0,21
+148820,391100.8886,449784.9584,0,21
+148821,389963.5393,445376.5887,0,21
+148822,389763.3871,441309.6195,0,21
+148823,388839.3446,436908.8263,0,21
+148824,388327.3858,433183.9404,0,21
+148825,387991.0454,428181.5135,0,21
+148826,386766.9195,424751.446,0,21
+148827,386554.7171,420123.9712,0,21
+148828,385999.7152,416271.2036,0,21
+148829,385224.1181,411496.8375,0,21
+148830,384495.671,407758.3306,0,21
+148831,382690.7269,402874.2088,0,21
+148832,381566.9898,398356.3597,0,21
+148833,380415.3788,391253.5289,0,21
+148834,379759.6784,385854.4991,0,21
+148835,378932.543,381059.3246,0,21
+148836,377871.1075,375894.8983,0,21
+148837,377087.2243,370856.1474,0,21
+148838,376209.5691,365627.9372,0,21
+148839,374948.2182,360643.9856,0,21
+148840,374309.5201,355608.3964,0,21
+148841,373345.4714,350269.3302,0,21
+148842,372289.7675,344794.3317,0,21
+148843,371563.3336,339816.8325,0,21
+148844,370542.376,334638.9633,0,21
+148845,369454.8273,329095.0091,0,21
+148846,368646.4897,323937.1606,0,21
+148847,367446.3419,318278.1362,0,21
+148848,366944.4966,313952.0017,0,21
+148849,365559.3569,308027.8706,0,21
+148850,364672.5525,303285.7284,0,21
+148851,363615.6215,298040.2181,0,21
+148852,363038.5222,293469.6792,0,21
+148853,361576.6005,288812.9241,0,21
+148854,360788.2539,284024.6374,0,21
+148855,359988.5311,279245.1036,0,21
+148856,358897.4441,274406.5524,0,21
+148857,357397.3001,269793.9276,0,21
+148858,357304.6848,265137.8481,0,21
+148859,355406.9556,259877.2504,0,21
+148860,354725.21,255439.1655,0,21
+148861,358972.4095,251389.0221,0,21
+148862,357420.9131,248754.5502,0,21
+148863,357163.2178,246290.81,0,21
+148864,355850.871,243604.9967,0,21
+148865,354790.2571,241185.177,0,21
+148866,354102.2789,238324.2784,0,21
+148867,352944.0656,235939.9011,0,21
+148868,351944.3507,233122.2504,0,21
+148869,351261.9851,230594.3811,0,21
+148870,349727.5579,227741.0118,0,21
+148871,349009.0586,225246.8561,0,21
+148872,347854.3371,222198.9087,0,21
+148873,347307.2089,219324.4796,0,21
+148874,345456.4885,216336.474,0,21
+148875,345031.5497,213636.088,0,21
+148876,343710.9122,210805.3362,0,21
+148877,342753.6095,207989.4996,0,21
+148878,341953.3592,205310.7916,0,21
+148879,340084.5447,202563.686,0,21
+148880,340038.4798,199567.5663,0,21
+148881,338150.2425,196654.6475,0,21
+148882,337358.2436,194080.1566,0,21
+148883,336251.1791,190961.6071,0,21
+148884,335145.9672,188186.4566,0,21
+148885,334176.7367,185096.692,0,21
+148886,332831.4108,182499.3527,0,21
+148887,332100.8858,179329.9197,0,21
+148888,330469.2389,176193.0094,0,21
+148889,329750.8337,173367.5768,0,21
+148890,328509.0122,170340.7421,0,21
+148891,327868.8857,167800.0273,0,21
+148892,327320.7421,165000.6528,0,21
+148893,326989.1149,162744.4286,0,21
+148894,326485.3687,160531.9975,0,21
+148895,326066.5509,159206.9269,0,21
+148896,325658.7879,157130.1502,0,21
+148897,325495.9524,155536.3245,0,21
+148898,324902.7905,153774.6292,0,21
+148899,324659.7492,152130.864,0,21
+148900,324437.9977,150289.6829,0,21
+148901,324092.3932,148787.4044,0,21
+148902,323751.7577,146958.0058,0,21
+148903,323374.5563,145438.8659,0,21
+148904,323467.9422,143383.6209,0,21
+148905,323108.084,142062.2325,0,21
+148906,322466.2076,140221.5721,0,21
+148907,323020.4339,138420.4951,0,21
+148908,322317.1573,136980.9406,0,21
+148909,322066.1792,135252.8561,0,21
+148910,322192.2621,133476.8837,0,21
+148911,321776.8532,131927.3455,0,21
+148912,321814.0203,130159.6487,0,21
+148913,321626.9596,128613.8601,0,21
+148914,321441.4936,126737.0284,0,21
+148915,321094.7116,125262.8951,0,21
+148916,321358.4118,123444.0212,0,21
+148917,321251.4321,122016.84,0,21
+148918,320686.1378,120046.9314,0,21
+148919,321303.3117,118764.7968,0,21
+148920,320736.5282,116772.0791,0,21
+148921,315349.3182,117787.4374,0,21
+148922,315436.8333,117437.5185,0,21
+148923,314558.2704,117635.7227,0,21
+148924,314491.7377,117462.2996,0,21
+148925,313970.2976,117390.3591,0,21
+148926,313718.9199,117335.165,0,21
+148927,313493.8398,117179.7038,0,21
+148928,312937.216,117171.6586,0,21
+148929,312760.1529,116922.1798,0,21
+148930,312340.3558,117205.3297,0,21
+148931,312112.9722,116772.004,0,21
+148932,311930.0951,117061.414,0,21
+148933,311204.7968,116574.6719,0,21
+148934,311477.7073,116851.5952,0,21
+148935,311039.429,116800.5937,0,21
+148936,310584.7953,116633.0609,0,21
+148937,310315.8735,116667.9371,0,21
+148938,310398.1271,116649.6908,0,21
+148939,309722.3681,116808.003,0,21
+148940,309837.7966,116437.5472,0,21
+148941,309257.4881,116664.438,0,21
+148942,309249.1352,116666.061,0,21
+148943,309141.7104,116672.1068,0,21
+148944,308347.6464,116684.2235,0,21
+148945,308950.7046,116866.6548,0,21
+148946,308097.0505,116753.1084,0,21
+148947,308257.449,116829.5353,0,21
+148948,307925.2286,116354.6311,0,21
+148949,307502.1195,116161.9647,0,21
+148950,307655.8862,116391.645,0,21
+148951,306905.8543,116411.2614,0,21
+148952,305858.804,116064.8419,0,21
+148953,305176.3118,116268.8727,0,21
+148954,303896.0501,115848.4822,0,21
+148955,303119.0248,116143.9846,0,21
+148956,302296.4963,115692.5443,0,21
+148957,300837.1473,115798.5404,0,21
+148958,300476.9142,115779.3189,0,21
+148959,298871.1822,115640.6394,0,21
+148960,298002.3691,115921.9974,0,21
+148961,297158.7912,116138.2583,0,21
+148962,295721.7198,115954.9173,0,21
+148963,295017.6887,116410.1073,0,21
+148964,293362.2567,116302.2037,0,21
+148965,292691.1079,116465.2767,0,21
+148966,291507.0526,116688.1533,0,21
+148967,290056.1113,116723.3158,0,21
+148968,289312.719,116981.4581,0,21
+148969,287851.078,116871.2923,0,21
+148970,286822.3119,117213.1351,0,21
+148971,285338.8239,117157.5609,0,21
+148972,284413.2427,117487.7204,0,21
+148973,283285.2062,117299.4015,0,21
+148974,281750.8603,117732.8819,0,21
+148975,280837.9579,117676.2255,0,21
+148976,279222.5904,117759.544,0,21
+148977,278259.5792,118034.8133,0,21
+148978,277126.0004,118034.3479,0,21
+148979,275549.5511,118271.8634,0,21
+148980,274356.9792,118280.0154,0,21
+148981,297396.8055,121477.256,0,21
+148982,296883.4315,120233.9484,0,21
+148983,295428.5835,118960.2236,0,21
+148984,294346.9199,117527.7006,0,21
+148985,293153.0775,116121.6353,0,21
+148986,291828.9449,114946.9454,0,21
+148987,290666.3704,113835.6202,0,21
+148988,289366.6851,112255.2401,0,21
+148989,288224.5878,111770.624,0,21
+148990,286996.5922,110423.808,0,21
+148991,285860.7432,109214.6535,0,21
+148992,284255.7891,107846.4679,0,21
+148993,283369.8083,106709.145,0,21
+148994,281835.4095,105365.9864,0,21
+148995,280861.3515,103976.8082,0,21
+148996,279170.8505,102991.5201,0,21
+148997,278172.3551,101438.7849,0,21
+148998,276716.2431,100328.7398,0,21
+148999,275539.1485,98919.12618,0,21
+149000,273998.4379,97764.32128,0,21
+149001,272925.7175,96366.66859,0,21
+149002,271340.403,95169.85495,0,21
+149003,269973.2075,93651.24916,0,21
+149004,268701.5265,92555.08313,0,21
+149005,267482.9634,91053.82447,0,21
+149006,265872.3897,89832.02052,0,21
+149007,264384.5313,88493.18934,0,21
+149008,263459.8483,87062.57275,0,21
+149009,261511.8021,85826.78303,0,21
+149010,260529.8117,84421.89038,0,21
+149011,259290.9848,83040.70553,0,21
+149012,259151.1666,81886.03158,0,21
+149013,258538.3249,80550.97901,0,21
+149014,257795.009,79199.26145,0,21
+149015,257672.6056,77878.96385,0,21
+149016,257098.668,76693.29904,0,21
+149017,256609.7358,75326.75068,0,21
+149018,256196.5128,74006.1858,0,21
+149019,255931.3865,72812.35433,0,21
+149020,255511.5877,71339.21659,0,21
+149021,255252.8319,70251.82719,0,21
+149022,254844.7342,69224.76327,0,21
+149023,254553.5067,67592.10616,0,21
+149024,254260.4042,66226.26908,0,21
+149025,254076.7369,65048.45801,0,21
+149026,253754.7773,63562.49132,0,21
+149027,253668.2075,62486.52787,0,21
+149028,253277.9439,61154.15018,0,21
+149029,253334.5669,59702.26361,0,21
+149030,252565.0924,58590.4234,0,21
+149031,253119.6611,57261.74595,0,21
+149032,252312.8142,55813.53653,0,21
+149033,252771.204,54845.49637,0,21
+149034,252191.2247,53263.15815,0,21
+149035,252420.0447,52170.28807,0,21
+149036,251673.3545,50723.23686,0,21
+149037,252170.5891,49619.03155,0,21
+149038,252067.6732,48310.07242,0,21
+149039,251666.5711,46845.71522,0,21
+149040,251550.7166,46189.4259,0,21
+149041,227220.0518,40283.32842,0,21
+149042,226086.5409,39527.47487,0,21
+149043,225845.9321,39009.83409,0,21
+149044,225554.7897,38366.29391,0,21
+149045,225289.2566,37925.05547,0,21
+149046,224792.0064,37051.12459,0,21
+149047,224639.2258,36557.10049,0,21
+149048,224086.9503,35827.92099,0,21
+149049,224138.2336,35206.56724,0,21
+149050,223515.0826,34521.60122,0,21
+149051,223291.0284,34149.97798,0,21
+149052,223394.2345,33249.52241,0,21
+149053,222623.5161,32843.08298,0,21
+149054,222640.8273,32176.26602,0,21
+149055,222298.9757,31637.5489,0,21
+149056,221855.3915,31087.014,0,21
+149057,222189.6488,30566.52713,0,21
+149058,221463.5033,29753.01683,0,21
+149059,221345.1323,29555.74771,0,21
+149060,221471.2324,28735.28431,0,21
+149061,221018.3381,28376.96952,0,21
+149062,220779.5305,27760.23032,0,21
+149063,220797.8491,27247.41267,0,21
+149064,220417.4205,26772.64589,0,21
+149065,220554.4172,26146.61458,0,21
+149066,220186.8177,25816.64949,0,21
+149067,220254.0551,25074.41845,0,21
+149068,220077.0343,24857.74021,0,21
+149069,219803.4352,24133.89776,0,21
+149070,220144.8453,23677.16379,0,21
+149071,218995.4454,23198.38083,0,21
+149072,218769.2906,22761.46268,0,21
+149073,217726.7577,22287.86405,0,21
+149074,216900.5486,21718.03307,0,21
+149075,216202.2552,21398.38752,0,21
+149076,215187.499,20653.08621,0,21
+149077,214427.8904,20340.35879,0,21
+149078,213797.7972,19917.79027,0,21
+149079,212395.3189,19302.30397,0,21
+149080,211955.8963,18863.43628,0,21
+149081,210644.4938,18403.5638,0,21
+149082,210148.7688,17952.24982,0,21
+149083,208779.2729,17345.68475,0,21
+149084,208089.827,16921.46517,0,21
+149085,207114.8476,16562.85004,0,21
+149086,205947.795,15857.93424,0,21
+149087,205312.6904,15545.47714,0,21
+149088,204192.217,15093.44166,0,21
+149089,202905.3057,14623.22509,0,21
+149090,202277.2317,14044.80331,0,21
+149091,200986.8428,13554.82873,0,21
+149092,200079.0962,13248.31578,0,21
+149093,198917.456,12486.40421,0,21
+149094,198135.2088,11996.51997,0,21
+149095,196969.8313,11393.3923,0,21
+149096,195967.8281,10887.84632,0,21
+149097,194752.5795,10287.373,0,21
+149098,193912.6518,9691.538383,0,21
+149099,192453.9448,9259.978862,0,21
+149100,191724.3641,8728.13172,0,21
+149101,194884.8615,8491.086181,0,21
+149102,192913.303,8737.428761,0,21
+149103,191530.8939,8741.31911,0,21
+149104,189481.8113,9021.98774,0,21
+149105,188086.9377,9174.810751,0,21
+149106,186187.1151,9298.998779,0,21
+149107,184436.9219,9598.327299,0,21
+149108,182640.7481,9610.102965,0,21
+149109,180938.1978,12342.54258,0,21
+149110,179106.8216,11561.81551,0,21
+149111,177432.0609,12051.55709,0,21
+149112,175661.0194,12496.76986,0,21
+149113,173530.9606,12472.90646,0,21
+149114,172217.4542,13250.08615,0,21
+149115,170242.9593,13066.08444,0,21
+149116,168511.5018,13671.57515,0,21
+149117,167173.1385,13800.94484,0,21
+149118,165423.4427,13728.0688,0,21
+149119,163868.2675,13866.72049,0,21
+149120,162468.0443,13987.40137,0,21
+149121,160920.9526,14400.77642,0,21
+149122,159123.4658,14502.94662,0,21
+149123,157812.3739,14798.76981,0,21
+149124,156273.6835,14845.14929,0,21
+149125,154492.7499,15311.31893,0,21
+149126,153036.0079,9637.539264,0,21
+149127,151471.7354,7892.943472,0,21
+149128,149857.4137,8211.632159,0,21
+149129,148404.6644,6621.05535,0,21
+149130,146706.4297,5806.772111,0,21
+149131,145438.9093,5560.346863,0,21
+149132,144298.2352,6454.562586,0,21
+149133,142913.5904,6712.030935,0,21
+149134,141780.2936,7462.716352,0,21
+149135,140643.6986,7951.317335,0,21
+149136,139466.3873,8574.98446,0,21
+149137,138211.4643,9502.842716,0,21
+149138,137118.3311,9926.611266,0,21
+149139,135752.2711,10828.68621,0,21
+149140,134956.0696,11751.97621,0,21
+149141,133411.2856,12458.57506,0,21
+149142,132687.1888,13361.98265,0,21
+149143,131338.8138,14254.75503,0,21
+149144,130202.229,15268.6569,0,21
+149145,129411.1802,16032.79609,0,21
+149146,128036.9955,17186.58261,0,21
+149147,126791.9047,18176.5414,0,21
+149148,126023.3813,19067.80325,0,21
+149149,124813.771,20215.35978,0,21
+149150,123899.1343,21316.99983,0,21
+149151,122711.2661,22247.83106,0,21
+149152,121863.0791,23637.38637,0,21
+149153,120948.3423,24440.34178,0,21
+149154,119693.4198,25854.30667,0,21
+149155,118893.6588,26804.54283,0,21
+149156,117850.1458,27873.77063,0,21
+149157,117099.6113,28427.39381,0,21
+149158,115793.1013,29074.1594,0,21
+149159,115067.3128,29583.23855,0,21
+149160,113990.7824,30089.09234,0,21
+149161,107319.4783,22742.63566,0,21
+149162,106360.6977,21753.46743,0,21
+149163,105667.4038,20588.13757,0,21
+149164,104625.6126,19508.64152,0,21
+149165,103661.083,18560.44071,0,21
+149166,103346.7779,18132.90023,0,21
+149167,101967.4178,16832.49862,0,21
+149168,101393.9527,16077.67147,0,21
+149169,100515.1324,14768.35932,0,21
+149170,99748.88368,14179.19029,0,21
+149171,98892.56647,13189.14418,0,21
+149172,98107.70481,12162.94337,0,21
+149173,97096.68811,11426.06744,0,21
+149174,96866.55089,10527.00264,0,21
+149175,95466.1002,9499.00456,0,21
+149176,94849.52468,8843.019299,0,21
+149177,94268.00482,7863.653729,0,21
+149178,93286.9996,7024.412651,0,21
+149179,92474.28812,6182.383795,0,21
+149180,91886.89058,5206.940412,0,21
+149181,90836.63397,5540.03855,0,21
+149182,90180.00508,5473.798331,0,21
+149183,89629.85212,5789.135778,0,21
+149184,88563.63349,5953.189543,0,21
+149185,87791.99051,5968.914125,0,21
+149186,87286.88372,6443.815918,0,21
+149187,86272.6993,6445.15317,0,21
+149188,85598.41793,6799.288147,0,21
+149189,84919.80173,6945.77431,0,21
+149190,84196.09467,7092.049307,0,21
+149191,83141.38669,7124.237369,0,21
+149192,82563.94548,6721.875412,0,21
+149193,81704.36836,6389.782482,0,21
+149194,80690.97548,6040.445779,0,21
+149195,80073.68552,5973.263553,0,21
+149196,79218.42234,5777.663307,0,21
+149197,78605.47759,5760.8957,0,21
+149198,77710.80756,5727.197579,0,21
+149199,76972.85968,5660.23746,0,21
+149200,76187.46283,5348.931677,0,21
+149201,75478.4138,5591.419764,0,21
+149202,74719.95235,5246.391322,0,21
+149203,73808.61053,5211.300077,0,21
+149204,73401.91679,5159.83478,0,21
+149205,72321.34993,4974.225265,0,21
+149206,71567.58454,4905.769475,0,21
+149207,71008.56337,4711.279519,0,21
+149208,70062.76469,4664.57696,0,21
+149209,69434.78202,4610.4072,0,21
+149210,68570.0113,4252.98262,0,21
+149211,67881.23417,4346.23569,0,21
+149212,67086.54907,4153.656941,0,21
+149213,66372.38684,3986.958389,0,21
+149214,65601.88098,3986.958306,0,21
+149215,64880.35085,3819.528916,0,21
+149216,63949.44102,3803.206926,0,21
+149217,63389.9475,3667.660875,0,21
+149218,62471.64099,3482.355781,0,21
+149219,61891.46079,3482.355708,0,21
+149220,60981.88591,3312.542622,0,21
+149221,60238.82169,3465.944307,0,21
+149222,59258.73277,3174.725661,0,21
+149223,58749.0986,3296.085549,0,21
+149224,57936.96718,2814.234283,0,21
+149225,56833.42556,2797.684785,0,21
+149226,56249.6773,2640.678429,0,21
+149227,55263.26742,2797.684539,0,21
+149228,54675.23673,2624.081328,0,21
+149229,53665.95737,2482.617429,0,21
+149230,52920.13748,2624.081093,0,21
+149231,52275.7914,2449.375251,0,21
+149232,51131.65993,2466.020226,0,21
+149233,50570.80307,2306.821538,0,21
+149234,49638.46809,2353.229625,0,21
+149235,49021.59581,2290.176237,0,21
+149236,47729.12143,2129.738979,0,21
+149237,47527.52206,2113.044805,0,21
+149238,46392.35461,2096.30084,0,21
+149239,45458.25156,2113.044593,0,21
+149240,45690.24246,1771.182805,0,21
+149241,45295.74359,2096.300527,0,21
+149242,45422.36574,1672.098131,0,21
+149243,44924.39246,1771.182515,0,21
+149244,45282.30592,1737.541979,0,21
+149245,44751.07623,1589.34661,0,21
+149246,44729.52798,1564.057977,0,21
+149247,44631.52109,1489.250597,0,21
+149248,44534.69931,1388.558696,0,21
+149249,44280.88201,1388.558611,0,21
+149250,44373.12468,1202.1544,0,21
+149251,43924.88871,1388.558438,0,21
+149252,43926.51256,1202.154239,0,21
+149253,43709.02051,1202.154157,0,21
+149254,43484.35271,1388.55817,0,21
+149255,43165.07157,1202.15399,0,21
+149256,43090.01685,1371.606275,0,21
+149257,42977.0921,1388.557893,0,21
+149258,42543.15038,1287.213961,0,21
+149259,42605.86476,1388.557703,0,21
+149260,42077.88062,1371.605913,0,21
+149261,42248.31161,1472.350925,0,21
+149262,41585.90813,1388.557411,0,21
+149263,41769.36954,1538.648877,0,21
+149264,41336.3634,1489.248919,0,21
+149265,41289.44401,1538.648676,0,21
+149266,40946.17326,1572.498528,0,21
+149267,40717.94273,1538.64847,0,21
+149268,40687.11216,1737.539427,0,21
+149269,40166.48427,1555.599912,0,21
+149270,40261.38551,1819.399495,0,21
+149271,39797.091,1720.640798,0,21
+149272,39630.4544,1737.538936,0,21
+149273,39413.93858,1900.856911,0,21
+149274,39212.15547,1900.856777,0,21
+149275,39042.31435,1900.856643,0,21
+149276,38749.82354,1900.856507,0,21
+149277,38575.55495,2449.368338,0,21
+149278,38143.28841,2573.990824,0,21
+149279,38119.81397,2449.367957,0,21
+149280,37263.41336,2764.433648,0,21
+149281,60790.59884,13306.35024,0,21
+149282,63126.82571,14153.00936,0,21
+149283,172762.416,14529.95415,0,21
+149284,79370.15158,14558.5069,0,21
+149285,87113.40703,14837.08554,0,21
+149286,81422.87787,15749.93952,0,21
+149287,83959.59881,15895.15934,0,21
+149288,84434.54904,16234.8282,0,21
+149289,84309.51175,16106.62458,0,21
+149290,84502.96832,16681.98859,0,21
+149291,84913.81658,16790.87087,0,21
+149292,84936.57493,16993.49306,0,21
+149293,84885.32288,17252.30162,0,21
+149294,85291.89759,17318.7975,0,21
+149295,85181.56932,17548.79448,0,21
+149296,85231.07043,17872.01532,0,21
+149297,85508.03044,17884.73091,0,21
+149298,85346.89773,18288.28031,0,21
+149299,85615.32524,18326.19539,0,21
+149300,85625.60736,18487.05453,0,21
+149301,85488.7398,18458.11494,0,21
+149302,85849.3831,18376.39002,0,21
+149303,85651.0737,18790.26762,0,21
+149304,85849.81166,18816.49009,0,21
+149305,85793.93634,19094.90868,0,21
+149306,85782.12899,19239.24733,0,21
+149307,85992.14044,19386.12653,0,21
+149308,85512.48349,19687.2355,0,21
+149309,85954.61681,19700.89945,0,21
+149310,85745.4695,19976.47429,0,21
+149311,85951.2128,20251.16759,0,21
+149312,86061.54237,20264.76147,0,21
+149313,86341.93357,20562.73279,0,21
+149314,86160.00939,20564.20442,0,21
+149315,86475.53184,20849.10589,0,21
+149316,86611.99422,21005.42777,0,21
+149317,86704.7417,21133.04512,0,21
+149318,86763.16685,21419.09648,0,21
+149319,87150.06927,21429.49456,0,21
+149320,87124.20403,21598.21103,0,21
+149321,87107.07625,21842.70685,0,21
+149322,87462.47857,21994.23118,0,21
+149323,87537.93237,22046.05893,0,21
+149324,87708.02809,22277.60593,0,21
+149325,87903.2444,22568.69952,0,21
+149326,87528.92907,22466.64836,0,21
+149327,88594.54407,22837.05683,0,21
+149328,87680.5871,22898.46528,0,21
+149329,88573.6527,23114.67699,0,21
+149330,88529.20397,23189.04586,0,21
+149331,88446.85836,23417.78005,0,21
+149332,88785.12312,23465.5487,0,21
+149333,88801.37252,23706.72567,0,21
+149334,88976.8677,23767.37548,0,21
+149335,89135.91724,24108.16848,0,21
+149336,89252.63602,24029.02819,0,21
+149337,89193.99806,24307.86003,0,21
+149338,89484.59038,24530.6174,0,21
+149339,89625.22005,24579.34653,0,21
+149340,90573.32596,24627.92286,0,21
+149341,107810.5366,28943.51107,0,21
+149342,109552.7293,29261.45233,0,21
+149343,110110.7775,29532.50959,0,21
+149344,111435.546,29788.5146,0,21
+149345,111678.8277,30070.63228,0,21
+149346,112776.1867,30575.16942,0,21
+149347,112798.9597,30574.00012,0,21
+149348,113297.5367,32183.23504,0,21
+149349,113775.1338,35731.40438,0,21
+149350,114161.018,33856.45024,0,21
+149351,114609.5436,35481.64573,0,21
+149352,114923.7641,35794.31356,0,21
+149353,115332.3526,36264.25575,0,21
+149354,114948.9545,36528.67609,0,21
+149355,115512.1851,37482.81962,0,21
+149356,115813.6777,37811.59142,0,21
+149357,115830.7749,38240.43274,0,21
+149358,116657.233,38950.62035,0,21
+149359,116639.9695,39699.81558,0,21
+149360,117149.2351,39932.69534,0,21
+149361,117305.5664,40228.44182,0,21
+149362,117782.6616,40846.77978,0,21
+149363,118001.9513,41499.65771,0,21
+149364,118279.4933,42044.34947,0,21
+149365,118614.8518,42271.28153,0,21
+149366,118933.4447,43021.98996,0,21
+149367,118971.0321,43438.83271,0,21
+149368,119448.6379,43871.8691,0,21
+149369,119748.069,44669.95753,0,21
+149370,119933.9552,44730.78238,0,21
+149371,120279.1736,45414.88993,0,21
+149372,120130.9177,46181.79442,0,21
+149373,120816.0961,46384.13983,0,21
+149374,120492.8632,47006.66916,0,21
+149375,121195.6131,47659.6888,0,21
+149376,120907.7612,47934.13491,0,21
+149377,121223.2783,48785.76661,0,21
+149378,121551.6108,48973.39269,0,21
+149379,121258.5408,49632.11839,0,21
+149380,121843.4331,50690.65252,0,21
+149381,121578.2416,51092.07357,0,21
+149382,121989.8447,51816.08529,0,21
+149383,122194.685,52326.10568,0,21
+149384,121747.0832,52814.73808,0,21
+149385,122488.1439,53660.44222,0,21
+149386,122331.7991,53928.48424,0,21
+149387,123302.2251,54702.55975,0,21
+149388,123201.1287,55076.34341,0,21
+149389,123549.9377,55623.64322,0,21
+149390,123159.643,56274.70211,0,21
+149391,124135.9837,56483.63551,0,21
+149392,123747.1295,57297.57988,0,21
+149393,123889.9273,62018.85334,0,21
+149394,124339.5219,61970.89291,0,21
+149395,123992.0769,63027.35948,0,21
+149396,124729.4568,64413.82721,0,21
+149397,124115.7337,65544.51094,0,21
+149398,124876.1821,67076.36567,0,21
+149399,124722.2835,67861.28018,0,21
+149400,125208.3681,69605.8099,0,21
+149401,125294.2778,70441.80804,0,21
+149402,125960.6334,71029.84331,0,21
+149403,125965.2788,72624.40296,0,21
+149404,126271.8461,73294.16508,0,21
+149405,126802.3412,74400.11625,0,21
+149406,126775.9417,75552.96804,0,21
+149407,127017.63,76642.59031,0,21
+149408,127679.8638,77466.65488,0,21
+149409,127513.0531,78179.91128,0,21
+149410,128076.8103,79785.84797,0,21
+149411,128192.0265,80387.56347,0,21
+149412,128401.1022,81388.39797,0,21
+149413,128645.6779,82573.38318,0,21
+149414,129075.7976,83546.718,0,21
+149415,129094.4193,84258.81744,0,21
+149416,129824.1424,85552.95212,0,21
+149417,129654.6926,86224.27153,0,21
+149418,130069.4143,87290.8864,0,21
+149419,130182.4778,88451.3051,0,21
+149420,130780.3626,89245.44994,0,21
+149421,130595.7585,90107.82497,0,21
+149422,131213.2196,91155.1034,0,21
+149423,131263.3795,92115.40781,0,21
+149424,131670.9092,93730.70164,0,21
+149425,131709.2815,98205.04217,0,21
+149426,132444.5716,98633.66233,0,21
+149427,132196.6493,100890.9268,0,21
+149428,132703.743,102005.0658,0,21
+149429,133089.1242,104269.5003,0,21
+149430,133155.4833,105247.8872,0,21
+149431,133577.9228,107020.2219,0,21
+149432,133530.1775,108539.1434,0,21
+149433,133879.0471,109535.2136,0,21
+149434,133762.5565,110984.8648,0,21
+149435,134185.6262,112370.7722,0,21
+149436,134505.9509,114044.1136,0,21
+149437,134302.0866,116366.1263,0,21
+149438,134896.6896,117816.3511,0,21
+149439,134648.517,120143.2658,0,21
+149440,134675.2235,121681.91,0,21
+149441,135177.1212,123617.7438,0,21
+149442,134797.209,125501.4932,0,21
+149443,134791.4048,127855.4419,0,21
+149444,135328.0005,129045.6489,0,21
+149445,135314.2086,130888.5678,0,21
+149446,135130.1538,133205.931,0,21
+149447,135861.4881,134627.354,0,21
+149448,135525.7416,136528.6405,0,21
+149449,135685.2209,138785.108,0,21
+149450,138076.4345,140192.7525,0,21
+149451,138990.0963,142426.9299,0,21
+149452,138653.4995,143683.8347,0,21
+149453,139114.2404,145621.8432,0,21
+149454,139492.4847,148056.2262,0,21
+149455,139280.5205,148812.9916,0,21
+149456,139734.9097,151557.0432,0,21
+149457,139824.5416,152569.6621,0,21
+149458,140019.3843,154616.7205,0,21
+149459,140331.5974,156367.2961,0,21
+149460,140046.4771,158304.1801,0,21
+149461,143669.8855,163459.7909,0,21
+149462,144259.753,166280.9558,0,21
+149463,144371.2133,168217.1406,0,21
+149464,145089.2885,171142.5314,0,21
+149465,145459.0958,173215.9375,0,21
+149466,145862.37,174986.5878,0,21
+149467,145909.3533,178115.8375,0,21
+149468,146699.8837,179825.5111,0,21
+149469,146696.8947,182599.2623,0,21
+149470,147084.9825,184724.9755,0,21
+149471,147669.8917,187506.3188,0,21
+149472,147644.1629,189193.048,0,21
+149473,148038.643,191785.455,0,21
+149474,148602.5579,194309.6414,0,21
+149475,148360.4571,196568.2892,0,21
+149476,149133.3111,198294.1049,0,21
+149477,149548.7648,201585.3199,0,21
+149478,149401.9692,203281.3822,0,21
+149479,150166.6837,205516.2608,0,21
+149480,150008.0723,208402.3931,0,21
+149481,150463.1913,210243.348,0,21
+149482,151002.3654,212448.5849,0,21
+149483,150913.1954,215242.5196,0,21
+149484,151282.6565,216754.184,0,21
+149485,151826.6018,220099.9035,0,21
+149486,151694.8724,221722.5722,0,21
+149487,152223.983,224546.9686,0,21
+149488,152586.6604,226608.1844,0,21
+149489,152530.7298,229291.4957,0,21
+149490,153331.3409,231538.1193,0,21
+149491,153720.6318,233707.8196,0,21
+149492,153593.3104,235549.0098,0,21
+149493,154179.6896,238674.9122,0,21
+149494,154101.6266,240124.0501,0,21
+149495,154931.1999,242934.1141,0,21
+149496,154560.707,244607.2677,0,21
+149497,155189.064,247475.0231,0,21
+149498,155341.0813,249169.6346,0,21
+149499,155574.5323,251673.3631,0,21
+149500,155886.6343,253867.7397,0,21
+149501,155857.8727,255957.7895,0,21
+149502,156650.5942,258260.5621,0,21
+149503,156587.14,260064.0637,0,21
+149504,156696.3154,262885.9411,0,21
+149505,157238.8599,264823.9096,0,21
+149506,157384.2189,266951.8637,0,21
+149507,157462.119,268904.5038,0,21
+149508,157830.7264,271437.142,0,21
+149509,158206.2068,273390.3981,0,21
+149510,158273.2005,275886.4369,0,21
+149511,158626.3859,277641.6846,0,21
+149512,158822.5276,280188.4448,0,21
+149513,158985.8987,282258.0264,0,21
+149514,159154.4162,284432.3787,0,21
+149515,159400.4804,286310.7522,0,21
+149516,159798.2162,288604.0471,0,21
+149517,159916.5167,291071.068,0,21
+149518,160207.899,292852.3667,0,21
+149519,160202.5909,294927.4762,0,21
+149520,160671.1047,297484.9564,0,21
+149521,161372.6671,299067.5633,0,21
+149522,162347.7282,300392.4378,0,21
+149523,163117.4528,302395.2102,0,21
+149524,164039.1416,303881.8451,0,21
+149525,164753.8908,305533.0232,0,21
+149526,165549.6299,307542.5877,0,21
+149527,166525.047,308490.9909,0,21
+149528,167073.4548,310556.9376,0,21
+149529,168333.0054,312057.1229,0,21
+149530,168752.8432,313657.4379,0,21
+149531,170140.9302,315552.3011,0,21
+149532,170237.5146,319132.4343,0,21
+149533,171963.6127,322016.9512,0,21
+149534,172197.8307,322809.0634,0,21
+149535,173441.9786,325013.7642,0,21
+149536,173610.4261,326236.3782,0,21
+149537,174834.2947,328227.1646,0,21
+149538,175198.2608,329112.6008,0,21
+149539,176603.215,330803.5094,0,21
+149540,177109.1311,332732.322,0,21
+149541,178318.7122,333336.1184,0,21
+149542,179026.7227,335691.7031,0,21
+149543,179703.3568,336706.7573,0,21
+149544,181251.7285,338132.0892,0,21
+149545,181662.1115,339690.8352,0,21
+149546,182708.5174,341011.6883,0,21
+149547,183474.8712,342414.1661,0,21
+149548,184196.3783,343898.7271,0,21
+149549,185971.2001,345380.6125,0,21
+149550,186174.629,346423.123,0,21
+149551,187212.42,348122.638,0,21
+149552,188400.3296,349039.0377,0,21
+149553,189048.38,350748.1276,0,21
+149554,189942.7372,352349.3379,0,21
+149555,191233.8027,353152.1372,0,21
+149556,191985.0007,354788.9961,0,21
+149557,193021.075,356026.9282,0,21
+149558,194076.3753,357602.3362,0,21
+149559,194824.489,358502.1608,0,21
+149560,195838.7179,359952.2819,0,21
+149561,196752.9042,361389.9424,0,21
+149562,198058.3725,362592.2751,0,21
+149563,198467.5295,364151.2467,0,21
+149564,200062.1093,364819.0398,0,21
+149565,200686.6506,366578.979,0,21
+149566,201723.4949,367802.1628,0,21
+149567,202996.8371,369054.5214,0,21
+149568,203394.6367,370090.2132,0,21
+149569,205050.6409,371923.0832,0,21
+149570,205784.063,372944.5278,0,21
+149571,206315.1898,373962.8472,0,21
+149572,208388.8704,375205.2547,0,21
+149573,208524.5259,377047.7739,0,21
+149574,209874.9222,377801.8086,0,21
+149575,211094.7512,379247.9591,0,21
+149576,211777.2847,380563.3426,0,21
+149577,213136.1142,381343.0282,0,21
+149578,213951.1456,383340.6066,0,21
+149579,217930.0657,383967.8656,0,21
+149580,220100.7359,385355.407,0,21
+149581,0,0,0,21
+149582,0,0,0,21
+149583,0,0,0,21
+149584,0,128.1902651,0,21
+149585,0,0,1022724.965,21
+149586,340284.8694,368168.359,0,21
+149587,0,0,0,21
+149588,0,141.0175911,0,21
+149589,0,0,0,21
+149590,0,0,0,21
+149591,0,0,0,21
+149592,0,101.7122562,0,21
+149593,0,0,0,21
+149594,0,0,0,21
+149595,0,0,0,21
+149596,0,113.4693182,0,21
+149597,0,0,0,21
+149598,0,0,0,21
+149599,0,0,0,21
+149600,0,115.8988232,0,21
+149601,0,0,0,21
+149602,0,0,0,21
+149603,0,0,0,21
+149604,0,112.011169,0,21
+149605,0,0,0,21
+149606,0,0,0,21
+149607,0,0,0,21
+149608,0,109.3962375,0,21
+149609,0,0,0,21
+149610,0,0,0,21
+149611,0,0,0,21
+149612,0,109.0831355,0,21
+149613,0,0,0,21
+149614,0,0,0,21
+149615,0,0,0,21
+149616,0,109.7528468,0,21
+149617,0,0,0,21
+149618,0,0,0,21
+149619,0,0,992905.8531,21
+149620,0,111.58663,0,21
+149621,340213.6725,368154.9987,0,21
+149622,0,0,0,21
+149623,0,0,0,21
+149624,0,102.7608195,0,21
+149625,0,0,0,21
+149626,0,0,0,21
+149627,0,0,0,21
+149628,0,79.15876607,0,21
+149629,0,0,0,21
+149630,0,0,0,21
+149631,0,0,0,21
+149632,0,117.1121603,0,21
+149633,0,0,0,21
+149634,0,0,0,21
+149635,0,0,0,21
+149636,0,116.7744937,0,21
+149637,0,0,0,21
+149638,0,0,0,21
+149639,0,0,0,21
+149640,0,119.1875728,0,15.6
+149641,0,0,0,15.6
+149642,0,0,0,15.6
+149643,0,0,0,15.6
+149644,0,154.8098302,0,15.6
+149645,0,0,0,15.6
+149646,0,0,0,15.6
+149647,0,0,0,15.6
+149648,0,131.0831414,0,15.6
+149649,0,0,0,15.6
+149650,0,0,0,15.6
+149651,0,0,0,15.6
+149652,0,125.2266033,0,15.6
+149653,0,0,966479.9215,15.6
+149654,0,0,0,15.6
+149655,0,0,0,15.6
+149656,0,368261.6828,0,15.6
+149657,340122.3135,0,0,15.6
+149658,0,0,0,15.6
+149659,0,0,0,15.6
+149660,0,102.3761475,0,15.6
+149661,0,0,0,15.6
+149662,0,0,0,15.6
+149663,0,0,0,15.6
+149664,0,97.16616895,0,15.6
+149665,0,0,0,15.6
+149666,0,0,0,15.6
+149667,0,0,0,15.6
+149668,0,119.0617007,0,15.6
+149669,0,0,0,15.6
+149670,0,0,0,15.6
+149671,0,0,0,15.6
+149672,0,126.1804494,0,15.6
+149673,0,0,0,15.6
+149674,0,0,0,15.6
+149675,0,0,0,15.6
+149676,0,130.5238851,0,15.6
+149677,0,0,0,15.6
+149678,0,0,0,15.6
+149679,0,0,0,15.6
+149680,0,131.945141,0,15.6
+149681,0,0,0,15.6
+149682,0,0,0,15.6
+149683,0,0,0,15.6
+149684,0,131.375849,0,15.6
+149685,0,0,0,15.6
+149686,0,0,0,15.6
+149687,0,0,939520.9287,15.6
+149688,0,127.8302066,0,15.6
+149689,0,0,0,15.6
+149690,0,0,0,15.6
+149691,0,368131.9866,0,15.6
+149692,0,119.3248207,0,15.6
+149693,340014.7974,0,0,15.6
+149694,0,0,0,15.6
+149695,0,0,0,15.6
+149696,0,84.4755884,0,15.6
+149697,0,0,0,15.6
+149698,0,0,0,15.6
+149699,0,77889.11353,0,15.6
+149700,0,0,0,15.6
+149701,0,0,0,15.6
+149702,0,0,0,15.6
+149703,0,0,0,15.6
+149704,0,0,0,15.6
+149705,0,0,0,15.6
+149706,0,0,0,15.6
+149707,0,0,0,15.6
+149708,0,0,0,15.6
+149709,0,0,0,15.6
+149710,0,0,0,15.6
+149711,0,0,0,15.6
+149712,0,0,0,15.6
+149713,0,0,0,15.6
+149714,0,0,0,15.6
+149715,0,0,0,15.6
+149716,0,0,0,15.6
+149717,0,0,0,15.6
+149718,0,0,0,15.6
+149719,0,0,0,15.6
+149720,0,0,0,15.6
+149721,0,0,916974.3347,15.6
+149722,0,0,0,15.6
+149723,0,0,0,15.6
+149724,0,0,0,15.6
+149725,0,0,0,15.6
+149726,0,368124.2086,0,15.6
+149727,0,0,0,15.6
+149728,0,0,0,15.6
+149729,339913.8475,0,0,15.6
+149730,0,0,0,15.6
+149731,0,0,0,15.6
+149732,0,0,0,15.6
+149733,0,0,0,15.6
+149734,0,0,0,15.6
+149735,0,0,0,15.6
+149736,0,0,0,15.6
+149737,0,0,0,15.6
+149738,0,0,0,15.6
+149739,0,0,0,15.6
+149740,0,0,0,15.6
+149741,0,0,0,15.6
+149742,0,0,0,15.6
+149743,0,0,0,15.6
+149744,0,0,0,15.6
+149745,0,0,0,15.6
+149746,0,115.4544747,0,15.6
+149747,0,0,0,15.6
+149748,0,0,0,15.6
+149749,0,0,0,15.6
+149750,0,2.952272359,0,15.6
+149751,0,0,0,15.6
+149752,0,0,0,15.6
+149753,0,0,0,15.6
+149754,0,0,0,15.6
+149755,0,0,0,15.6
+149756,0,0,892863.4253,15.6
+149757,0,0,0,15.6
+149758,0,75.7590665,0,15.6
+149759,0,0,0,15.6
+149760,0,0,0,15.6
+149761,0,368119.1825,0,15.6
+149762,0,0,0,15.6
+149763,0,0,0,15.6
+149764,0,0,0,15.6
+149765,339830.1693,0,0,15.6
+149766,0,0,0,15.6
+149767,0,0,0,15.6
+149768,0,0,0,15.6
+149769,0,0,0,15.6
+149770,0,0,0,15.6
+149771,0,0,0,15.6
+149772,0,0,0,15.6
+149773,0,0,0,15.6
+149774,0,0,0,15.6
+149775,0,0,0,15.6
+149776,0,0,0,15.6
+149777,0,0,0,15.6
+149778,0,0,0,15.6
+149779,0,0,0,15.6
+149780,0,0,0,15.6
+149781,0,0,0,15.6
+149782,0,0,0,15.6
+149783,0,0,0,15.6
+149784,0,0,0,15.6
+149785,0,0,0,15.6
+149786,0,0,0,15.6
+149787,0,0,0,15.6
+149788,0,0,0,15.6
+149789,0,0,0,15.6
+149790,0,0,0,15.6
+149791,0,0,872923.3023,15.6
+149792,0,0,0,15.6
+149793,0,0,0,15.6
+149794,0,0,0,15.6
+149795,0,0,0,15.6
+149796,0,368112.9389,0,15.6
+149797,0,0,0,15.6
+149798,0,0,0,15.6
+149799,0,0,0,15.6
+149800,0,0,0,15.6
+149801,339824.2793,0,0,15.6
+149802,0,0,0,15.6
+149803,0,0,0,15.6
+149804,0,0,0,15.6
+149805,0,0,0,15.6
+149806,0,0,0,15.6
+149807,0,0,0,15.6
+149808,0,0,0,15.6
+149809,0,0,0,15.6
+149810,0,0,0,15.6
+149811,0,0,0,15.6
+149812,0,0,0,15.6
+149813,0,0,0,15.6
+149814,0,0,0,15.6
+149815,0,0,0,15.6
+149816,0,0,0,15.6
+149817,0,0,0,15.6
+149818,0,0,0,15.6
+149819,0,0,0,15.6
+149820,0,0,0,15.6
+149821,0,144.4317071,0,15.6
+149822,0,0,0,15.6
+149823,0,0,0,15.6
+149824,0,0,0,15.6
+149825,0,96.61335616,0,15.6
+149826,0,0,854044.6596,15.6
+149827,0,0,0,15.6
+149828,0,0,0,15.6
+149829,0,109.2453778,0,15.6
+149830,0,0,0,15.6
+149831,0,368109.2365,0,15.6
+149832,0,0,0,15.6
+149833,0,103.4324814,0,15.6
+149834,0,0,0,15.6
+149835,0,0,0,15.6
+149836,0,0,0,15.6
+149837,339814.0174,75.954748,0,15.6
+149838,0,0,0,15.6
+149839,0,0,0,15.6
+149840,0,0,0,15.6
+149841,0,104.1509809,0,15.6
+149842,0,0,0,15.6
+149843,0,0,0,15.6
+149844,0,0,0,15.6
+149845,0,102.0597214,0,15.6
+149846,0,0,0,15.6
+149847,0,0,0,15.6
+149848,0,0,0,15.6
+149849,0,101.7692947,0,15.6
+149850,0,0,0,15.6
+149851,0,0,0,15.6
+149852,0,0,0,15.6
+149853,0,98.25076935,0,15.6
+149854,0,31499.08612,0,15.6
+149855,0,1111.826009,0,15.6
+149856,0,3585.597441,0,15.6
+149857,0,12162.02701,0,15.6
+149858,0,10771.6898,0,15.6
+149859,0,9445.316085,0,15.6
+149860,0,10239.78018,0,15.6
+149861,0,10394.98885,844935.942,15.6
+149862,0,10481.33894,0,15.6
+149863,0,10570.25291,0,15.6
+149864,0,10686.03531,0,15.6
+149865,0,10885.26755,0,15.6
+149866,0,379046.9657,0,15.6
+149867,0,11072.15818,0,15.6
+149868,0,11144.14019,0,15.6
+149869,0,11353.36882,0,15.6
+149870,0,11433.34636,0,15.6
+149871,0,11507.69241,0,15.6
+149872,0,11628.90679,0,15.6
+149873,0,11755.53788,0,15.6
+149874,339793.4542,12259.86453,0,15.6
+149875,0,11961.35845,0,15.6
+149876,0,12124.86911,0,15.6
+149877,0,12214.96461,0,15.6
+149878,0,12311.34405,0,15.6
+149879,0,12437.2559,0,15.6
+149880,0,12562.51494,0,15.6
+149881,0,12605.2599,0,15.6
+149882,0,12668.45031,0,15.6
+149883,0,12648.27641,0,15.6
+149884,0,0,0,15.6
+149885,0,0,0,15.6
+149886,0,0,0,15.6
+149887,0,0,0,15.6
+149888,0,0,0,15.6
+149889,0,0,0,15.6
+149890,0,49010.27408,0,15.6
+149891,0,1104.583791,0,15.6
+149892,0,6821.504025,0,15.6
+149893,0,16884.48877,0,15.6
+149894,0,13491.88634,0,15.6
+149895,0,12879.73451,0,15.6
+149896,0,13257.92116,830352.3657,15.6
+149897,0,13365.50302,0,15.6
+149898,0,13348.84763,0,15.6
+149899,0,13395.66239,0,15.6
+149900,0,13395.66164,0,15.6
+149901,0,381636.7498,0,15.6
+149902,0,13429.23708,0,15.6
+149903,0,13536.19188,0,15.6
+149904,0,13562.51797,0,15.6
+149905,0,13569.6063,0,15.6
+149906,0,13625.91973,0,15.6
+149907,0,13652.76634,0,15.6
+149908,0,13669.09694,0,15.6
+149909,0,13689.02804,0,15.6
+149910,0,13745.76008,0,15.6
+149911,339796.5781,13765.37308,0,15.6
+149912,0,13815.15574,0,15.6
+149913,0,13798.77204,0,15.6
+149914,0,13842.97489,0,15.6
+149915,0,13881.40521,0,15.6
+149916,0,13946.95387,0,15.6
+149917,0,13881.40291,0,15.6
+149918,0,14003.34782,0,15.6
+149919,0,13976.3141,0,15.6
+149920,0,0,0,15.6
+149921,0,0,0,15.6
+149922,0,0,0,15.6
+149923,0,0,0,15.6
+149924,0,0,0,15.6
+149925,0,54022.59876,0,15.6
+149926,0,397.785592,0,15.6
+149927,0,7228.912817,0,15.6
+149928,0,19316.27765,0,15.6
+149929,0,14066.99379,0,15.6
+149930,0,14050.97735,0,15.6
+149931,0,14373.33904,817033.2095,15.6
+149932,0,14444.3264,0,15.6
+149933,0,14366.42877,0,15.6
+149934,0,14493.67466,0,15.6
+149935,0,14440.60385,0,15.6
+149936,0,14506.82544,0,15.6
+149937,0,382596.2197,0,15.6
+149938,0,14512.99786,0,15.6
+149939,0,14567.70654,0,15.6
+149940,0,14532.29434,0,15.6
+149941,90571.10832,850696.16,0,15.6
+149942,71751.72206,230447.768,0,15.6
+149943,39188.90944,108814.1972,0,15.6
+149944,8935.783127,272622.9904,0,15.6
+149945,34931.41084,254355.2353,0,15.6
+149946,28863.1402,227973.8,0,15.6
+149947,26756.88295,234225.6559,0,15.6
+149948,367035.5613,234026.4786,0,15.6
+149949,27235.32073,234428.0633,0,15.6
+149950,27234.11984,233786.1788,0,15.6
+149951,27171.55863,234208.7595,0,15.6
+149952,27239.67018,233878.419,0,15.6
+149953,27170.20362,234237.4856,0,15.6
+149954,27250.56903,234017.2434,0,15.6
+149955,27175.86681,197929.4657,0,15.6
+149956,27249.27394,196490.5068,0,15.6
+149957,27191.434,298244.7701,0,15.6
+149958,27321.50334,215919.7501,0,15.6
+149959,27239.89715,233871.969,0,15.6
+149960,27309.025,238236.8037,0,15.6
+149961,27290.98116,235198.4693,0,15.6
+149962,27388.05041,236093.0346,0,15.6
+149963,27357.22804,235896.7599,0,15.6
+149964,27384.04966,236446.0393,0,15.6
+149965,27505.99205,236757.0191,804870.3113,15.6
+149966,500127.1214,236658.8844,0,15.6
+149967,47834.59491,237394.0054,0,15.6
+149968,76761.34687,237231.3928,0,15.6
+149969,224897.5121,237875.5189,0,15.6
+149970,148694.4905,238601.3853,0,15.6
+149971,132070.6942,36916.71644,0,15.6
+149972,133793.0823,405140.9899,0,15.6
+149973,134554.0782,36887.23475,0,15.6
+149974,218504.2335,36968.43966,0,15.6
+149975,158158.6098,613563.7866,0,15.6
+149976,153138.7171,66432.18837,0,15.6
+149977,170641.6289,253048.688,0,15.6
+149978,165144.0817,259899.0708,0,15.6
+149979,165767.3374,239098.5422,0,15.6
+149980,167051.1164,241651.53,0,15.6
+149981,167320.7577,241909.5493,0,15.6
+149982,168214.8835,241578.9542,0,15.6
+149983,508427.7368,243156.5421,0,15.6
+149984,169902.5371,242364.9441,0,15.6
+149985,170038.8924,243054.4516,0,15.6
+149986,171141.1388,243595.5153,0,15.6
+149987,172074.6841,206635.8233,0,15.6
+149988,172447.3336,206924.7896,0,15.6
+149989,173344.7064,307366.2054,0,15.6
+149990,174125.6017,225245.1367,0,15.6
+149991,174828.704,244662.1525,0,15.6
+149992,175685.4213,247830.002,0,15.6
+149993,176314.0073,246139.696,0,15.6
+149994,177159.8819,245775.9002,0,15.6
+149995,178113.2053,247151.3472,0,15.6
+149996,29017.88461,246937.4907,0,15.6
+149997,29077.18574,247494.6313,0,15.6
+149998,29184.78723,247430.4032,0,15.6
+149999,29130.93008,248544.3463,793763.9524,15.6
+150000,29320.85791,248031.4504,0,17.8
+150001,1065524.816,1433553.216,0,17.8
+150002,1004777.559,1388255.038,0,17.8
+150003,566508.0766,240770.0647,0,17.8
+150004,515484.8808,600891.0875,0,17.8
+150005,546291.5031,109003.8857,0,17.8
+150006,389818.4633,461988.7565,0,17.8
+150007,498218.3758,1180933.836,0,17.8
+150008,442474.0732,420924.4952,0,17.8
+150009,440918.8628,573478.1292,0,17.8
+150010,440730.4045,509420.7506,0,17.8
+150011,441383.5935,550068.9313,0,17.8
+150012,439859.8365,529866.5024,0,17.8
+150013,439389.5774,529059.633,0,17.8
+150014,438637.3643,528655.2515,0,17.8
+150015,438855.1866,527657.1023,0,17.8
+150016,437698.9491,527458.6418,0,17.8
+150017,438043.9848,527176.7208,0,17.8
+150018,776963.9439,526938.081,0,17.8
+150019,437419.5365,437766.0241,566.1201371,17.8
+150020,436304.0713,438023.3128,3486.397825,17.8
+150021,437540.8826,573060.1848,1875.08447,17.8
+150022,436167.6714,545713.0373,2752.160975,17.8
+150023,436513.5514,510873.3515,2875.778438,17.8
+150024,436331.5054,535088.0915,3243.904604,17.8
+150025,436092.3568,528598.5916,3366.041813,17.8
+150026,435896.3758,521786.7726,3609.030475,17.8
+150027,436627.1417,526144.7388,3850.706114,17.8
+150028,435452.8428,524607.5588,3971.257058,17.8
+150029,436355.339,524213.6258,4330.386766,17.8
+150030,435807.3639,524364.9734,4330.828391,17.8
+150031,72081.66021,523823.3317,0,17.8
+150032,71979.98462,524376.0687,0,17.8
+150033,870898.4698,523974.5361,785733.257,17.8
+150034,482274.2069,524042.5989,0,17.8
+150035,274375.3062,524062.1002,0,17.8
+150036,379202.0557,524007.5501,0,17.8
+150037,450379.2626,103574.1104,0,17.8
+150038,450711.0693,85956.23709,0,17.8
+150039,427439.2703,1133020.759,0,17.8
+150040,428615.3484,708294.1296,0,17.8
+150041,422055.4713,562571.0369,0,17.8
+150042,428337.6259,488763.5302,0,17.8
+150043,425505.3862,521310.1331,0,17.8
+150044,425567.6806,506708.4391,0,17.8
+150045,425846.9306,547005.986,0,17.8
+150046,425929.7555,509070.2904,0,17.8
+150047,426000.7345,526425.2899,0,17.8
+150048,426618.2899,523774.7582,0,17.8
+150049,426073.8888,523098.336,0,17.8
+150050,426295.8351,526468.0741,0,17.8
+150051,427131.7193,439029.6716,0,17.8
+150052,426350.6685,440257.6234,0,17.8
+150053,766879.9438,570521.8602,0,17.8
+150054,427313.0409,546150.707,0,17.8
+150055,426968.3144,513142.442,0,17.8
+150056,427976.3458,536144.2738,0,17.8
+150057,427425.1963,526992.5936,0,17.8
+150058,428246.4689,526187.6257,0,17.8
+150059,461994.4679,527402.8918,0,17.8
+150060,428304.5645,527430.7867,0,20
+150061,2287754.933,2277948.124,28026.86734,20
+150062,719958.3955,491930.5392,7763.850384,20
+150063,323157.0291,469782.8811,22713.52712,20
+150064,399062.825,495186.0925,55128.87243,20
+150065,479147.629,538694.0086,38583.82371,20
+150066,424521.8891,498109.5324,66264.9144,20
+150067,560932.3613,562533.3262,51006.06496,20
+150068,464967.7916,551417.7522,59049.65305,20
+150069,491396.2628,541145.271,72984.46406,20
+150070,490611.1482,546956.8061,63875.36808,20
+150071,489244.3803,545044.2715,67568.60131,20
+150072,486967.5429,544566.7789,67829.07636,20
+150073,486843.1811,542951.0843,68383.69926,20
+150074,484323.1116,542960.2338,75700.52354,20
+150075,484756.8079,540272.3478,72377.9475,20
+150076,482400.3513,540700.378,73970.99213,20
+150077,481040.4369,540036.6368,74396.33812,20
+150078,481742.3198,538558.245,75109.64773,20
+150079,478711.3213,538138.0086,75816.89676,20
+150080,478488.1057,536662.0242,76017.32296,20
+150081,478433.873,536803.4474,76782.36975,20
+150082,476650.8669,536261.5102,77300.94234,20
+150083,476484.4171,534794.7959,77595.64742,20
+150084,474323.1336,535410.1713,78572.41551,20
+150085,475263.957,533861.8639,78515.00431,20
+150086,472657.9746,533479.1805,79237.26919,20
+150087,474040.7435,533552.5445,80015.15711,20
+150088,471680.6705,532149.2948,80158.43111,20
+150089,471407.4362,532235.3932,80880.84113,20
+150090,471003.5142,530788.4456,81362.79508,20
+150091,470739.9174,531066.3551,81845.56526,20
+150092,468673.4346,530178.4092,82396.10965,20
+150093,470350.6133,529761.2607,82644.20828,20
+150094,466865.4269,529512.739,83633.20156,20
+150095,469081.8748,528654.4947,83665.48414,20
+150096,466478.8422,528810.9339,84381.51459,20
+150097,468048.4886,527687.3058,84523.63791,20
+150098,464825.6083,528087.8692,85493.75745,20
+150099,467100.5097,526870.5275,85479.24079,20
+150100,461175.8338,527031.5109,86411.39949,20
+150101,461306.2657,527288.499,86413.39253,20
+150102,460148.2174,525636.0574,87303.24514,20
+150103,459633.5925,526402.4991,87461.59603,20
+150104,458212.5958,526393.1811,88024.22335,20
+150105,458204.5855,524622.1005,88290.01053,20
+150106,457434.0027,525569.31,89044.97059,20
+150107,456685.7267,524000.6156,89001.11211,20
+150108,456016.7128,525867.5401,90143.12404,20
+150109,455669.1388,523671.6362,90017.79302,20
+150110,455148.489,523887.7354,91114.14011,20
+150111,454734.3858,523683.7913,91029.08941,20
+150112,453610.6855,524311.5931,91428.03218,20
+150113,453546.7222,522656.8341,92031.50453,20
+150114,453343.5683,524269.6687,92289.53593,20
+150115,450818.9809,521688.8535,92794.56455,20
+150116,452934.2264,523462.0389,93082.68136,20
+150117,450614.3687,523102.4951,93236.09215,20
+150118,451239.6549,521222.2389,93958.19008,20
+150119,450609.504,523212.6103,93966.32696,20
+150120,451513.194,521537.495,94188.94581,21
+150121,586512.8816,945228.5609,94697.87966,21
+150122,585812.4084,945228.4267,95737.88221,21
+150123,585501.8631,945432.7256,95742.02921,21
+150124,584071.9514,946165.7705,96808.43075,21
+150125,584582.9726,945672.0621,97010.44629,21
+150126,582391.3189,947379.4355,97204.45574,21
+150127,582465.2105,946348.3033,97913.87772,21
+150128,580828.8431,947609.0213,98427.49524,21
+150129,581711.2502,947435.1369,98945.25871,21
+150130,579719.6891,948023.0614,99166.03962,21
+150131,579017.4066,948478.3623,99885.1572,21
+150132,578873.3679,948144.773,100134.6412,21
+150133,577179.3807,950219.1053,89065.22639,21
+150134,578315.1735,947927.869,87410.54396,21
+150135,575265.5251,950852.695,87823.92294,21
+150136,576613.4955,950524.3185,87555.27521,21
+150137,574425.3487,950673.7564,87737.64,21
+150138,574717.6105,951043.619,87572.10739,21
+150139,573832.1249,950928.6171,87778.96115,21
+150140,573081.0196,952486.915,88601.22459,21
+150141,571963.5215,952032.3569,87776.38217,21
+150142,571996.4143,952815.824,88197.60306,21
+150143,570633.592,953317.874,88093.91274,21
+150144,570066.1774,953430.4524,87285.52404,21
+150145,569997.8182,953599.0614,87928.92902,21
+150146,568323.8297,954699.3378,87547.02423,21
+150147,567940.6813,955411.0422,87663.26,21
+150148,567981.3483,954252.553,87417.50153,21
+150149,567160.4892,956178.1683,87870.57044,21
+150150,565276.6812,956127.2848,87283.06762,21
+150151,566232.8059,957094.4538,86893.5162,21
+150152,563532.5241,956072.0241,86530.50329,21
+150153,562638.5696,957733.7724,85311.34308,21
+150154,561022.5842,957506.9101,85490.30681,21
+150155,559808.3522,957711.6276,84210.66111,21
+150156,558609.2531,959108.6218,83651.84593,21
+150157,556914.8362,957826.4129,83198.95269,21
+150158,556076.7387,960500.6466,82438.57831,21
+150159,554902.0669,958633.0262,81957.77169,21
+150160,554166.2374,960262.6086,81953.01516,21
+150161,551200.8817,961000.9459,79331.84806,21
+150162,552549.6643,961198.3735,79510.52299,21
+150163,549495.0056,960208.7383,78178.32622,21
+150164,548041.3562,961872.479,77926.55442,21
+150165,548457.9348,962405.8018,77007.9195,21
+150166,545735.1684,962399.8991,76822.91471,21
+150167,545183.8908,963095.4946,75719.00328,21
+150168,543806.4431,962335.2412,74998.85624,21
+150169,541605.8141,964426.8013,74512.93338,21
+150170,541742.5996,964200.2425,73745.56546,21
+150171,539186.045,964328.9581,72831.48568,21
+150172,538492.5919,964955.1783,71599.4169,21
+150173,537198.5878,965429.5957,71484.33383,21
+150174,535957.5791,965190.746,70163.17531,21
+150175,534080.4815,967057.3134,69377.76969,21
+150176,533799.0101,965589.0482,68839.76006,21
+150177,531042.7254,967222.6231,67499.01815,21
+150178,531056.8176,968045.5619,67254.48539,21
+150179,528366.1183,966848.3243,65858.20654,21
+150180,529418.984,968851.3471,64793.75037,21
+150181,467144.3823,907703.5348,39362.98685,21
+150182,462284.9435,902602.6518,36585.84574,21
+150183,460688.8636,901685.4557,36036.77306,21
+150184,456802.9685,900827.2809,35176.69726,21
+150185,456632.0087,899873.5143,34316.52897,21
+150186,453757.7213,898327.9198,33444.28128,21
+150187,452427.2707,898575.0058,32910.32433,21
+150188,451207.7295,896174.9212,30916.67173,21
+150189,448003.7691,897601.7382,30452.29114,21
+150190,448137.0314,895145.1805,29704.65432,21
+150191,445533.8765,894974.228,28617.10819,21
+150192,443266.1841,895186.519,28148.72796,21
+150193,442679.6016,893906.5648,27960.3358,21
+150194,439978.5135,892640.5604,26737.29763,21
+150195,439999.5664,893194.0542,26846.38769,21
+150196,436818.353,892406.8407,25814.53607,21
+150197,436059.4378,890400.2091,25625.81567,21
+150198,434165.3906,891969.2629,24988.56902,21
+150199,432867.236,889741.2697,24506.56058,21
+150200,431261.2128,890209.5393,24120.2032,21
+150201,427935.6841,889102.6093,23724.34278,21
+150202,426958.4728,889831.7826,22914.55483,21
+150203,424516.7336,887631.9018,22758.53472,21
+150204,423478.3117,887804.5665,21958.86436,21
+150205,421372.7714,887712.0828,21830.22874,21
+150206,420255.1784,887533.7871,21092.35072,21
+150207,418355.9212,885886.9464,20718.19393,21
+150208,417319.9492,886911.3429,20295.78661,21
+150209,415168.7529,885358.4867,19463.83321,21
+150210,414726.8115,885432.0248,19547.96123,21
+150211,411449.8813,884879.0133,18464.52369,21
+150212,412747.1958,884035.0773,18439.05808,21
+150213,409851.2185,884721.9571,17877.29437,21
+150214,410616.6724,883535.3502,17319.13635,21
+150215,408025.1289,882691.3214,16828.90291,21
+150216,408913.291,883101.9184,16408.9035,21
+150217,406092.0888,881823.4728,15839.25993,21
+150218,406183.7472,883127.2944,15383.59455,21
+150219,405417.7307,880614.4722,15041.79148,21
+150220,403690.3826,881260.252,14470.53856,21
+150221,403752.4403,881509.8684,14255.08853,21
+150222,402553.4512,879801.9591,13386.02617,21
+150223,401735.8288,880793.5472,13426.54861,21
+150224,401414.7201,879404.4276,12955.21601,21
+150225,399923.541,879782.545,12725.83632,21
+150226,399474.0871,878361.2244,12629.28725,21
+150227,398728.7654,879466.175,12276.67893,21
+150228,398352.1945,877932.9088,12198.70378,21
+150229,396515.8467,878431.7202,11686.77595,21
+150230,397021.8892,876861.412,11746.78779,21
+150231,395973.028,877793.7155,11251.78848,21
+150232,395130.4532,876922.492,11153.42517,21
+150233,395033.6769,877240.0085,10904.30136,21
+150234,393236.3781,875115.1208,10606.2819,21
+150235,393589.1573,877362.6785,10445.78631,21
+150236,392886.7986,874846.7554,10102.83708,21
+150237,391594.1116,875679.0586,9878.819777,21
+150238,391805.6668,874560.8893,9637.097548,21
+150239,391043.9995,875392.0078,9531.270803,21
+150240,389598.4218,873772.4016,9207.04624,21
+150241,389625.4965,874504.3052,8932.28137,21
+150242,388340.7721,874350.5122,8907.785159,21
+150243,388838.3194,873886.4634,8641.990834,21
+150244,388781.4905,875294.376,8463.370417,21
+150245,389152.4976,873258.5412,8196.370787,21
+150246,389167.7168,875192.1828,8155.655271,21
+150247,389593.1116,875462.2561,7921.380316,21
+150248,389514.4045,874773.6247,7719.92347,21
+150249,390388.5847,874968.9909,7468.359799,21
+150250,389831.0149,875671.7154,7414.376043,21
+150251,391778.1361,875610.0273,7012.440245,21
+150252,391750.8322,875762.1267,6973.682107,21
+150253,393571.5449,876400.172,6716.919119,21
+150254,391814.224,876394.2978,6664.503076,21
+150255,393875.5903,876526.6131,6271.283037,21
+150256,393697.3498,876715.3111,6024.399353,21
+150257,393371.9201,876733.0733,6121.2754,21
+150258,395111.1118,877476.5253,5585.998744,21
+150259,394145.9661,877057.5059,5519.850486,21
+150260,394871.5809,878465.6649,5392.287082,21
+150261,395905.6596,876757.3108,5060.495557,21
+150262,395257.6573,879010.2263,4921.338442,21
+150263,396977.1367,878214.1413,4737.459829,21
+150264,395667.3073,878020.6072,4455.342748,21
+150265,397734.7583,879453.2505,4242.906916,21
+150266,397659.7795,878940.7676,4143.080103,21
+150267,397000.3517,878281.0759,3813.518863,21
+150268,398466.8998,880675.9978,3646.946775,21
+150269,398801.0322,879823.6297,3472.34824,21
+150270,399167.2157,879474.6045,3362.546406,21
+150271,398323.0213,880104.0613,3272.210661,21
+150272,400981.7548,880358.9151,3200.5346,21
+150273,398666.1608,881105.6268,3075.081282,21
+150274,400973.8983,880422.4739,2996.02922,21
+150275,399329.1485,880750.2669,2929.980402,21
+150276,401307.4509,882033.6291,2794.420788,21
+150277,400816.8307,881672.1584,2723.289042,21
+150278,400735.2917,882252.0159,2619.098867,21
+150279,401358.087,881246.1235,2514.935972,21
+150280,401825.6204,883053.8474,2442.685787,21
+150281,401343.3582,882521.8789,2322.878882,21
+150282,401880.8077,883274.6371,2230.982972,21
+150283,402496.5285,882959.0154,2158.679447,21
+150284,401641.8878,883357.5202,2035.382088,21
+150285,403546.2024,883830.5908,1943.534383,21
+150286,402046.3289,883719.4112,1852.039301,21
+150287,403314.941,884890.5274,1742.45029,21
+150288,402992.6335,884117.3064,1678.504358,21
+150289,403214.047,884572.451,1586.071631,21
+150290,404226.2672,885300.5064,1554.514623,21
+150291,403176.4198,885259.6431,1491.169603,21
+150292,404680.7268,885526.3272,1414.07466,21
+150293,404181.4388,886391.5174,1380.464911,21
+150294,403510.7597,885045.0809,1319.232232,21
+150295,406049.8692,886542.6314,1253.128364,21
+150296,403550.9022,886558.9555,1206.147079,21
+150297,407426.1418,887373.6789,1140.363365,21
+150298,406079.2927,886943.0553,1073.71458,21
+150299,408173.8268,887118.6047,1056.769191,21
+150300,407082.2699,887613.658,1022.687803,21
+150301,408022.5672,886617.7388,971.3544042,21
+150302,407250.2935,886210.0709,971.3657011,21
+150303,409459.8414,883343.0392,919.7774454,21
+150304,407554.954,883885.1185,919.7875999,21
+150305,408634.1546,881059.9612,885.2521231,21
+150306,408441.1953,880897.2166,850.5956423,21
+150307,408666.6356,878635.9456,833.2251673,21
+150308,409072.7456,878452.3225,815.8228449,21
+150309,408203.3174,875890.3962,780.9132839,21
+150310,408977.2756,875085.1645,763.4085006,21
+150311,409020.3138,874307.2373,728.2985808,21
+150312,408655.6279,872375.3331,710.7002049,21
+150313,409136.4647,871112.8281,693.0573012,21
+150314,409149.3531,870169.7827,639.9084869,21
+150315,408878.2198,869330.9717,657.6692176,21
+150316,409448.8766,866060.0071,586.4190973,21
+150317,409139.9938,864502.4532,604.2960998,21
+150318,409154.1071,864773.552,550.5586662,21
+150319,409295.9026,861381.4894,532.5642219,21
+150320,408890.1713,862044.1417,514.5256153,21
+150321,410137.4991,858903.8572,478.3081713,21
+150322,409950.7285,858785.3926,460.1297705,21
+150323,410373.7651,857339.3143,423.6208944,21
+150324,411612.8127,855404.8334,423.6231096,21
+150325,410222.773,855497.1949,368.4595867,21
+150326,411095.492,851478.4505,368.461277,21
+150327,410891.1656,853679.0277,331.3962224,21
+150328,411475.6736,850296.2358,294.0754921,21
+150329,411360.5664,849391.1176,294.0765693,21
+150330,410701.9635,847657.7189,256.4740092,21
+150331,411624.0575,846422.9654,218.5563396,21
+150332,410993.9925,844923.9625,218.5569531,21
+150333,410257.7703,841889.3819,180.2792257,21
+150334,410736.4815,841285.1455,160.9868312,21
+150335,410667.8184,838419.7595,122.0409534,21
+150336,409755.466,837964.0067,122.0411424,21
+150337,410162.912,834019.3301,82.50322827,21
+150338,409796.6905,834107.9496,62.44459729,21
+150339,409613.719,830769.971,42.12548762,21
+150340,409191.8812,829913.2191,0,21
+150341,408822.0905,827285.983,0,21
+150342,408751.4167,825834.229,0,21
+150343,408280.1947,823435.7911,0,21
+150344,407921.3355,821601.4104,0,21
+150345,407965.4562,820354.1877,0,21
+150346,408366.744,816864.9113,0,21
+150347,407139.9917,816047.8612,0,21
+150348,406706.8242,813191.8754,0,21
+150349,406888.3444,811819.0338,0,21
+150350,406007.1939,810053.4294,0,21
+150351,406688.9856,806211.305,0,21
+150352,405606.7853,806295.7815,0,21
+150353,404838.3122,803667.5175,0,21
+150354,405549.0991,800433.8906,0,21
+150355,404219.8894,800228.3483,0,21
+150356,405128.046,796552.7104,0,21
+150357,403481.0361,794944.2232,0,21
+150358,403926.8325,792933.8905,0,21
+150359,402646.2995,790252.8469,0,21
+150360,403340.0026,788190.3311,0,21
+150361,402309.8746,786763.1417,0,21
+150362,400607.5221,780850.9687,0,21
+150363,399842.6342,780322.7223,0,21
+150364,400157.2513,776248.3322,0,21
+150365,398454.9468,774215.0116,0,21
+150366,397790.1328,773334.4056,0,21
+150367,398192.914,769770.1872,0,21
+150368,396029.1151,768414.7579,0,21
+150369,397055.2562,765563.6538,0,21
+150370,395027.693,764212.1082,0,21
+150371,394489.9255,760677.7993,0,21
+150372,394496.386,759361.9091,0,21
+150373,393659.8553,756361.168,0,21
+150374,392587.9642,754572.4506,0,21
+150375,393001.7796,751699.5667,0,21
+150376,390588.1065,750265.2843,0,21
+150377,391591.8937,746658.0246,0,21
+150378,389774.092,744941.8272,0,21
+150379,389961.3983,742350.2253,0,21
+150380,388120.427,740779.834,0,21
+150381,388174.1474,737221.6432,0,21
+150382,386852.8386,734825.7532,0,21
+150383,386521.4875,732997.6854,0,21
+150384,386419.2548,729885.1467,0,21
+150385,384409.7035,728041.0674,0,21
+150386,384337.8667,724762.9505,0,21
+150387,384095.8005,722875.981,0,21
+150388,382447.8423,719647.5546,0,21
+150389,382004.974,717943.4633,0,21
+150390,381870.9967,714387.4217,0,21
+150391,379821.5286,713886.9867,0,21
+150392,381334.5777,710018.0676,0,21
+150393,379200.4731,710404.1035,0,21
+150394,380095.716,706695.7286,0,21
+150395,379689.6128,704737.4034,0,21
+150396,379587.5824,704660.1253,0,21
+150397,378232.1306,701276.0952,0,21
+150398,378580.7041,699583.6921,0,21
+150399,379208.048,699045.7687,0,21
+150400,378203.8635,696036.2867,0,21
+150401,378396.4266,694648.9026,0,21
+150402,377001.501,693744.1302,0,21
+150403,379089.015,691142.8891,0,21
+150404,376322.217,688659.2215,0,21
+150405,377809.4918,688370.6103,0,21
+150406,377146.2047,686904.2711,0,21
+150407,377029.7019,683172.6456,0,21
+150408,377375.1188,683430.1547,0,21
+150409,375849.7314,681268.3982,0,21
+150410,376883.2327,679226.1598,0,21
+150411,376495.3336,677782.1459,0,21
+150412,376561.2402,677244.719,0,21
+150413,376375.6691,673237.0523,0,21
+150414,375817.6048,674249.7313,0,21
+150415,376066.5766,670648.7945,0,21
+150416,376275.2134,669583.2954,0,21
+150417,375572.9077,668425.1814,0,21
+150418,375801.7009,666370.6904,0,21
+150419,375808.6332,664739.7283,0,21
+150420,375539.7396,663834.3629,0,21
+150421,439613.1635,727108.0227,0,21
+150422,443451.4614,731089.6418,0,21
+150423,443725.6965,728205.6039,0,21
+150424,445407.9131,731170.6671,0,21
+150425,445182.3952,728864.7525,0,21
+150426,446769.4939,728151.2564,0,21
+150427,446582.1213,728621.4967,0,21
+150428,446939.3575,726950.2137,0,21
+150429,447904.8305,727463.5755,0,21
+150430,449096.394,726227.7952,0,21
+150431,448561.0188,726399.3888,0,21
+150432,449413.547,724197.6517,0,21
+150433,449821.2865,725963.36,0,21
+150434,450910.5991,723209.6836,0,21
+150435,449915.5265,724425.9071,0,21
+150436,452259.1788,721889.5037,0,21
+150437,451391.5407,722696.9724,0,21
+150438,451424.0314,721520.0461,0,21
+150439,453865.4396,720236.1496,0,21
+150440,451284.8014,720800.5241,0,21
+150441,454238.2192,719659.9898,0,21
+150442,454423.9026,717919.7977,0,21
+150443,453664.1148,718858.1511,0,21
+150444,454819.7355,716988.625,0,21
+150445,454613.1539,717261.8199,0,21
+150446,456303.8605,715559.9981,0,21
+150447,455257.928,716958.9861,0,21
+150448,456916.5355,712679.4536,0,21
+150449,456428.9191,715536.6556,0,21
+150450,456140.4981,712722.5057,0,21
+150451,457600.1511,712864.0686,0,21
+150452,457089.1375,712920.8905,0,21
+150453,458128.1848,713607.0135,0,21
+150454,457124.5323,712448.5055,0,21
+150455,456969.2824,713802.0024,0,21
+150456,458693.7605,712734.7785,0,21
+150457,456681.8914,713403.7497,0,21
+150458,458543.0549,713984.1788,0,21
+150459,458331.4139,712857.7631,0,21
+150460,457111.7382,713991.6764,0,21
+150461,458220.8097,713639.6905,0,21
+150462,457693.4304,714279.6379,0,21
+150463,458639.6574,713381.6334,0,21
+150464,457643.7119,714303.5397,0,21
+150465,457286.2212,714455.3689,0,21
+150466,459251.5365,714970.1604,0,21
+150467,456562.7365,714202.1858,0,21
+150468,459299.5396,715762.9925,0,21
+150469,456356.6158,714979.1358,0,21
+150470,459128.8403,715944.5864,0,21
+150471,457375.3382,715358.2125,0,21
+150472,457856.2568,716462.2367,0,21
+150473,457950.9564,715863.4844,0,21
+150474,457227.0226,717212.6694,0,21
+150475,458785.3339,716990.8533,0,21
+150476,456877.3634,716947.6831,0,21
+150477,457954.2706,717849.6083,0,21
+150478,457526.609,717177.5313,0,21
+150479,457429.9681,719407.7944,0,21
+150480,457430.9044,718119.5395,0,21
+150481,456782.1711,719453.462,0,21
+150482,455675.968,719025.9388,0,21
+150483,456129.6856,719679.9229,0,21
+150484,454906.2629,720618.7954,0,21
+150485,454167.4673,719752.397,0,21
+150486,454115.5233,722503.9235,0,21
+150487,452948.4474,720162.114,0,21
+150488,453474.8093,722725.1852,0,21
+150489,451328.2966,721397.7685,0,21
+150490,452276.5993,722848.3196,0,21
+150491,450493.2714,723135.4874,0,21
+150492,450065.0486,723411.3163,0,21
+150493,449939.288,726214.2136,0,21
+150494,449226.5814,726639.0811,0,21
+150495,448626.3158,727587.9745,0,21
+150496,446976.4124,727513.7112,0,21
+150497,447595.6667,728745.5718,0,21
+150498,446472.1613,729412.6489,0,21
+150499,445519.5646,729909.2284,0,21
+150500,444318.1076,728947.212,0,21
+150501,445827.8464,731324.7574,0,21
+150502,442285.4006,731259.6729,0,21
+150503,443871.0149,731994.6567,0,21
+150504,441625.1506,732146.0818,0,21
+150505,442509.8025,732581.5519,0,21
+150506,440958.7974,733064.7617,0,21
+150507,439817.3365,735231.4295,0,21
+150508,440236.575,733907.0303,0,21
+150509,438307.6471,734826.5389,0,21
+150510,438367.391,735760.013,0,21
+150511,437927.6214,736375.1079,0,21
+150512,436932.7455,735144.5397,0,21
+150513,436724.1975,736259.165,0,21
+150514,435068.4542,735961.4195,0,21
+150515,435499.56,735863.953,0,21
+150516,434471.16,735120.2932,0,21
+150517,434152.357,736282.744,0,21
+150518,433246.916,735654.3121,0,21
+150519,433301.9922,736259.2437,0,21
+150520,432186.3196,734679.8479,0,21
+150521,432189.8965,736776.7087,0,21
+150522,430079.3237,734243.5123,0,21
+150523,431439.4549,736233.6936,0,21
+150524,429940.8677,734497.2855,0,21
+150525,430292.4295,736307.8511,0,21
+150526,428233.0671,734861.9474,0,21
+150527,428870.6258,734510.692,0,21
+150528,427342.0102,734359.2677,0,21
+150529,427213.6914,735101.3613,0,21
+150530,426991.7399,734842.42,0,21
+150531,425959.9682,734139.8866,0,21
+150532,425713.3342,734320.9206,0,21
+150533,424725.9084,733870.768,0,21
+150534,423941.4908,734225.3533,0,21
+150535,423938.5894,733293.447,0,21
+150536,423382.3732,733424.0084,0,21
+150537,422555.7608,733459.1907,0,21
+150538,422316.1355,732863.2427,0,21
+150539,420649.7044,733830.2646,0,21
+150540,422525.4111,732923.3387,0,21
+150541,421666.8881,732660.4544,0,21
+150542,424453.7141,733905.5075,0,21
+150543,426387.5809,732030.1406,0,21
+150544,426336.172,733357.8496,0,21
+150545,428659.6686,732067.6284,0,21
+150546,430685.2063,731955.1706,0,21
+150547,430582.8535,732653.6616,0,21
+150548,433333.6741,731974.2523,0,21
+150549,433168.9754,731564.2949,0,21
+150550,435990.0651,731977.9312,0,21
+150551,436869.6943,730917.6117,0,21
+150552,438457.3033,731875.9827,0,21
+150553,439641.7851,730822.6432,0,21
+150554,441184.2473,730525.9783,0,21
+150555,442963.4049,730917.7954,0,21
+150556,444092.8395,730673.7763,0,21
+150557,444975.2763,729928.0227,0,21
+150558,448219.6923,730679.1701,0,21
+150559,447448.1968,729401.4006,0,21
+150560,449757.2284,729737.6314,0,21
+150561,451657.3517,729054.2912,0,21
+150562,452093.3059,729204.7253,0,21
+150563,455231.736,728600.2049,0,21
+150564,454165.6935,728553.9042,0,21
+150565,458113.6769,729148.4151,0,21
+150566,458884.6803,727733.5561,0,21
+150567,458817.6726,727741.2461,0,21
+150568,462580.0835,728705.2326,0,21
+150569,462521.8059,726398.4966,0,21
+150570,464623.7447,727618.3595,0,21
+150571,464802.2268,727503.8584,0,21
+150572,467650.8526,725978.5231,0,21
+150573,468372.3581,726643.8282,0,21
+150574,470019.0598,727155.0999,0,21
+150575,471227.0474,725009.5545,0,21
+150576,472676.2604,726522.2795,0,21
+150577,474824.8501,725523.1351,0,21
+150578,475279.8294,725299.1498,0,21
+150579,476580.4734,724915.5611,0,21
+150580,478870.0156,725129.6952,0,21
+150581,480216.9983,724784.5628,0,21
+150582,480573.1238,723873.421,0,21
+150583,483800.1043,724578.3812,0,21
+150584,483115.2708,724238.327,0,21
+150585,486813.3643,722760.0039,0,21
+150586,485776.4112,724121.6897,0,21
+150587,489260.1429,723502.9879,0,21
+150588,489507.0864,722543.9394,0,21
+150589,491867.1436,723097.4412,0,21
+150590,492059.9794,722297.9778,0,21
+150591,494550.0425,722590.6926,0,21
+150592,494777.2983,721908.5253,0,21
+150593,497529.5543,721736.8963,0,21
+150594,498225.1806,721727.1303,0,21
+150595,499929.054,721111.6843,0,21
+150596,500397.1683,720334.9764,0,21
+150597,503198.409,721766.5326,0,21
+150598,503945.9222,719783.82,0,21
+150599,505375.8047,720828.8712,0,21
+150600,506133.57,718886.4382,0,21
+150601,507390.2371,721873.8781,0,21
+150602,506901.6202,721389.4645,0,21
+150603,507669.797,722283.9886,0,21
+150604,506424.9622,723781.6119,0,21
+150605,507640.4502,724243.4263,0,21
+150606,507826.4842,724790.3299,0,21
+150607,506884.1357,725214.7299,0,21
+150608,507901.6306,727068.2642,0,21
+150609,507751.3546,726808.5435,0,21
+150610,506880.1939,728515.326,0,21
+150611,508373.8045,728566.2105,0,21
+150612,507293.5884,729937.3934,0,21
+150613,508207.2797,730410.0119,0,21
+150614,507521.6594,731092.6692,0,21
+150615,507813.9843,732677.8244,0,21
+150616,507481.9559,731568.4885,0,21
+150617,508603.0588,734070.1335,0,21
+150618,507537.8853,734902.0588,0,21
+150619,508206.6635,735087.2722,0,21
+150620,507489.8337,735854.1614,0,21
+150621,509298.1888,736532.4555,0,21
+150622,507369.9034,737614.3195,0,21
+150623,508258.0417,738976.8223,0,21
+150624,508414.188,738962.459,0,21
+150625,507912.3534,739375.4045,0,21
+150626,508556.1429,741626.2986,0,21
+150627,508097.9736,740383.968,0,21
+150628,507923.1006,742757.9439,0,21
+150629,509211.5993,743351.2039,0,21
+150630,507862.8735,744300.1476,0,21
+150631,509278.4132,744341.7302,0,21
+150632,508689.0153,746089.6958,0,21
+150633,510129.4499,745941.275,0,21
+150634,510931.4609,747168.8526,0,21
+150635,509946.2373,748413.8507,0,21
+150636,511759.3732,748774.1334,0,21
+150637,512477.9542,749440.8106,0,21
+150638,512484.2013,750769.1881,0,21
+150639,513402.8604,751129.0798,0,21
+150640,513901.2964,752542.1917,0,21
+150641,515657.2833,752512.8115,0,21
+150642,515126.4733,753732.0969,0,21
+150643,515804.4902,755018.3736,0,21
+150644,517150.8316,754977.4949,0,21
+150645,517197.9271,756468.5075,0,21
+150646,519640.1771,756883.5473,0,21
+150647,518491.3905,758621.9853,0,21
+150648,519733.558,757907.1507,0,21
+150649,521197.7469,760632.8686,0,21
+150650,521182.7917,758999.3037,0,21
+150651,522199.2726,762240.2663,0,21
+150652,522869.2637,762414.5523,0,21
+150653,523772.8929,761915.2522,0,21
+150654,525096.3905,764612.2427,0,21
+150655,525283.8098,764439.0282,0,21
+150656,525775.8221,764986.5569,0,21
+150657,527413.1802,766781.9842,0,21
+150658,528585.0036,767039.7361,0,21
+150659,528072.9536,767752.5905,0,21
+150660,529962.6326,770185.9999,0,21
+150661,530550.2132,769661.2639,0,21
+150662,531292.2732,769841.4509,0,21
+150663,531667.4324,769970.204,0,21
+150664,532948.8193,770219.2425,0,21
+150665,533054.1348,770311.8882,0,21
+150666,535132.803,770179.4214,0,21
+150667,534912.7856,771473.5178,0,21
+150668,535147.2913,769915.1781,0,21
+150669,537956.7525,771873.7752,0,21
+150670,536982.0536,770160.0893,0,21
+150671,537392.6989,771740.1873,0,21
+150672,539964.9868,772103.5806,0,21
+150673,540213.993,770071.65,0,21
+150674,540436.3262,773004.3437,0,21
+150675,541631.3742,771148.6829,0,21
+150676,543045.3995,772556.7229,0,21
+150677,542921.0542,771603.5734,0,21
+150678,544646.3091,772961.9522,0,21
+150679,544202.7134,771752.2716,0,21
+150680,546349.5161,772727.2091,0,21
+150681,546922.8951,772946.6616,0,21
+150682,547443.3092,772665.6685,0,21
+150683,548837.6371,772239.9447,0,21
+150684,548739.3407,774381.2188,0,21
+150685,550181.1106,772741.935,0,21
+150686,551811.1336,772371.3115,0,21
+150687,551138.0178,774603.7492,0,21
+150688,553644.2127,772712.528,0,21
+150689,553178.2431,774602.3261,0,21
+150690,555402.2248,773762.8999,0,21
+150691,555170.3349,774344.6638,0,21
+150692,555312.7859,773615.3017,0,21
+150693,557286.5303,775110.4189,0,21
+150694,556044.7901,774106.1706,0,21
+150695,557657.2321,775262.9174,0,21
+150696,558671.7386,774435.258,0,21
+150697,557725.5465,775601.3566,0,21
+150698,559369.0386,774807.4464,0,21
+150699,559422.7019,775489.3217,0,21
+150700,560022.1698,775344.4882,0,21
+150701,560492.8035,776202.4255,0,21
+150702,560631.2966,775600.0902,0,21
+150703,561733.7045,775389.6155,0,21
+150704,561625.2196,777616.2019,0,21
+150705,562469.9848,775492.6539,0,21
+150706,562521.7367,776212.8471,0,21
+150707,562935.7972,777633.4542,0,21
+150708,563938.2428,775782.5748,0,21
+150709,563835.6039,777939.2608,0,21
+150710,564271.0411,777090.6004,0,21
+150711,564786.3986,776879.8337,0,21
+150712,565837.5889,778563.4156,0,21
+150713,565484.2082,776795.7023,0,21
+150714,566308.647,778422.9389,0,21
+150715,565719.9279,778336.6549,0,21
+150716,567644.3256,778292.2421,0,21
+150717,567152.4866,777672.9599,0,21
+150718,567859.2251,779878.7225,0,21
+150719,568119.7299,778418.1351,0,21
+150720,568087.5745,778964.1834,0,21
+150721,183790.9905,330054.8436,0,21
+150722,183806.8577,330059.1861,0,21
+150723,183905.0644,330316.4439,0,21
+150724,184146.6124,330635.0796,0,21
+150725,184556.8025,331378.8072,0,21
+150726,185104.6893,332373.7689,0,21
+150727,185739.5589,333594.7865,0,21
+150728,186415.2797,334725.348,0,21
+150729,187099.2944,335930.9672,0,21
+150730,187771.603,337100.0719,0,21
+150731,188420.746,338291.3532,0,21
+150732,189040.2977,339262.1467,0,21
+150733,189626.7541,340241.9739,0,21
+150734,190178.4454,341152.3708,0,21
+150735,190695.0573,342068.3206,0,21
+150736,191177.2583,342772.4061,0,21
+150737,191626.434,343489.0581,0,21
+150738,192044.4256,344149.3964,0,21
+150739,192433.3247,344830.5134,0,21
+150740,192795.3037,345320.2154,0,21
+150741,193132.5512,345839.9308,0,21
+150742,193447.1843,346321.5792,0,21
+150743,193741.2099,346840.1701,0,21
+150744,194016.5084,347185.8795,0,21
+150745,194274.8297,347575.3064,0,21
+150746,194517.7854,347940.2346,0,21
+150747,194746.8613,348354.5245,0,21
+150748,194963.4022,348606.7958,0,21
+150749,195168.6123,348912.8017,0,21
+150750,195363.5721,349203.1092,0,21
+150751,195549.2571,349550.0484,0,21
+150752,195726.55,349742.8665,0,21
+150753,195896.2524,349995.0359,0,21
+150754,196059.0785,350236.9723,0,21
+150755,196215.6563,350540.4415,0,21
+150756,196366.5403,350694.0152,0,21
+150757,196512.2281,350910.7698,0,21
+150758,196653.1715,351120.6334,0,21
+150759,196789.7817,351395.2806,0,21
+150760,196922.4243,351522.1204,0,21
+150761,197051.4189,351714.7725,0,21
+150762,197177.0452,351902.6044,0,21
+150763,197299.5563,352156.633,0,21
+150764,197419.186,352265.2691,0,21
+150765,197536.1499,352440.7623,0,21
+150766,197650.641,352612.7502,0,21
+150767,197762.8273,352852.8326,0,21
+150768,197872.8551,352947.1492,0,21
+150769,197980.8585,353109.9648,0,21
+150770,198086.9654,353270.1063,0,21
+150771,198191.2959,353498.4144,0,21
+150772,198293.9584,353583.0464,0,21
+150773,198395.0469,353736.1355,0,21
+150774,198494.6426,353887.1311,0,21
+150775,198592.8212,354107.5846,0,21
+150776,198689.6579,354183.2748,0,21
+150777,198785.2247,354328.6349,0,21
+150778,198879.587,354472.3159,0,21
+150779,198972.8015,354685.7216,0,21
+150780,199064.9159,354754.9508,0,21
+150781,0,0,0,21
+150782,0,0,0,21
+150783,87148.96929,0,0,21
+150784,0,0,0,21
+150785,0,3.678345925,0,21
+150786,0,0,0,21
+150787,0,109.8796512,1188264.292,21
+150788,0,0,0,21
+150789,0,0,0,21
+150790,0,0,0,21
+150791,0,4.22626781,0,21
+150792,0,0,0,21
+150793,0,83.08208072,0,21
+150794,0,0,0,21
+150795,0,0,0,21
+150796,0,0,0,21
+150797,0,3.647637133,0,21
+150798,339792.2783,0,0,21
+150799,0,7.764418198,0,21
+150800,0,0,0,21
+150801,0,0,0,21
+150802,0,203.293987,0,21
+150803,0,0,0,21
+150804,0,0,0,21
+150805,0,368303.9533,0,21
+150806,0,0,0,21
+150807,0,0,0,21
+150808,0,0,0,21
+150809,0,3.55935762,0,21
+150810,0,0,0,21
+150811,0,2.531004794,0,21
+150812,0,0,0,21
+150813,0,0,0,21
+150814,0,0,0,21
+150815,0,0,0,21
+150816,0,0,0,21
+150817,0,0,0,21
+150818,0,0,0,21
+150819,0,0,0,21
+150820,0,0,0,21
+150821,0,0,0,21
+150822,0,0,0,21
+150823,0,0,1144634.717,21
+150824,0,0,0,21
+150825,0,2.713522254,0,21
+150826,0,0,0,21
+150827,0,7.873374501,0,21
+150828,0,0,0,21
+150829,0,0,0,21
+150830,0,186.9668923,0,21
+150831,0,0,0,21
+150832,0,0,0,21
+150833,0,0,0,21
+150834,0,0,0,21
+150835,0,0,0,21
+150836,0,0,0,21
+150837,0,8.045064773,0,21
+150838,0,0,0,21
+150839,339780.904,0,0,21
+150840,0,181.5353514,0,21
+150841,0,0,0,21
+150842,0,0,0,21
+150843,0,0,0,21
+150844,0,0,0,21
+150845,0,0,0,21
+150846,0,111.1660541,0,21
+150847,0,0,0,21
+150848,0,0,0,21
+150849,0,368285.2963,0,21
+150850,0,0,0,21
+150851,0,0,0,21
+150852,0,0,0,21
+150853,0,0,0,21
+150854,0,22.44657953,0,21
+150855,0,0,0,21
+150856,0,0,0,21
+150857,0,0,0,21
+150858,0,0,0,21
+150859,0,0,1092107.63,21
+150860,0,0,0,21
+150861,0,0,0,21
+150862,0,164.7389267,0,21
+150863,0,0,0,21
+150864,0,0,0,21
+150865,0,0,0,21
+150866,0,0,0,21
+150867,0,0,0,21
+150868,0,147.3382917,0,21
+150869,0,0,0,21
+150870,0,0,0,21
+150871,0,0,0,21
+150872,0,0,0,21
+150873,0,0,0,21
+150874,0,0,0,21
+150875,0,0,0,21
+150876,0,119.572671,0,21
+150877,0,0,0,21
+150878,0,0,0,21
+150879,0,0,0,21
+150880,0,0,0,21
+150881,339763.7821,0,0,21
+150882,0,147.4288989,0,21
+150883,0,0,0,21
+150884,0,0,0,21
+150885,0,0,0,21
+150886,0,0,0,21
+150887,0,0,0,21
+150888,0,0,0,21
+150889,0,0,0,21
+150890,0,83.25640973,0,21
+150891,0,0,0,21
+150892,0,0,0,21
+150893,0,368278.4439,0,21
+150894,0,0,0,21
+150895,0,0,1056329.313,21
+150896,0,0,0,21
+150897,0,67.7247531,0,21
+150898,0,0,0,21
+150899,0,0,0,21
+150900,0,0,0,21
+150901,0,0,0,21
+150902,0,0,0,21
+150903,0,0,0,21
+150904,0,0,0,21
+150905,0,0,0,21
+150906,0,0,0,21
+150907,0,0,0,21
+150908,0,0,0,21
+150909,0,0,0,21
+150910,0,3.063580555,0,21
+150911,0,0,0,21
+150912,0,8.190268072,0,21
+150913,0,0,0,21
+150914,0,66.42068422,0,21
+150915,0,0,0,21
+150916,0,0,0,21
+150917,0,0,0,21
+150918,0,0,0,21
+150919,0,2.679124999,0,21
+150920,0,0,0,21
+150921,0,7.639450165,0,21
+150922,0,0,0,21
+150923,339754.4398,0,0,21
+150924,0,206.3461266,0,21
+150925,0,0,0,21
+150926,0,0,0,21
+150927,0,0,0,21
+150928,0,0,0,21
+150929,0,0,0,21
+150930,0,0,0,21
+150931,0,7.69858775,1023379.482,21
+150932,49641.76274,0,0,21
+150933,1514.398552,0,0,21
+150934,2054.652396,144.2942984,0,21
+150935,14433.89847,0,0,21
+150936,12818.2558,368266.5657,0,21
+150937,10810.32897,0,0,21
+150938,11687.57443,0,0,21
+150939,11814.84556,0,0,21
+150940,11910.80203,0,0,21
+150941,12065.46344,2.910536374,0,21
+150942,12132.05956,0,0,21
+150943,12265.54815,34304.41378,0,21
+150944,12356.70193,1460.375476,0,21
+150945,12495.50942,5723.481446,0,21
+150946,12592.94899,12292.81263,0,21
+150947,12705.91828,11310.4104,0,21
+150948,12799.16592,10211.1911,0,21
+150949,12911.26449,10771.04615,0,21
+150950,13070.93452,10856.61777,0,21
+150951,13100.39954,10993.57185,0,21
+150952,13265.71359,11103.52186,0,21
+150953,13374.58716,11147.69013,0,21
+150954,13458.37247,11249.93037,0,21
+150955,13604.023,11379.16139,0,21
+150956,13667.0404,11633.0667,0,21
+150957,13817.23016,11536.83327,0,21
+150958,13916.22863,11655.00905,0,21
+150959,14000.56174,11712.13236,0,21
+150960,14141.10476,11844.03254,0,21
+150961,14174.84802,11896.52124,0,21
+150962,0,12005.59367,0,21
+150963,0,12077.94576,0,21
+150964,0,12273.97586,0,21
+150965,339754.316,12284.48007,0,21
+150966,0,12296.67459,0,21
+150967,63912.06581,12444.40805,994387.216,21
+150968,0,12513.78752,0,21
+150969,2989.675891,12565.54853,0,21
+150970,22094.45128,12692.49221,0,21
+150971,14066.60875,12747.70372,0,21
+150972,14310.31998,12848.56674,0,21
+150973,14799.21474,0,0,21
+150974,14769.47567,204.1768932,0,21
+150975,14859.54939,0,0,21
+150976,14865.08801,0,0,21
+150977,14873.13495,0,0,21
+150978,14900.27811,0,0,21
+150979,14941.28132,421253.8382,0,21
+150980,14987.46247,570.5601001,0,21
+150981,14962.80246,5972.239788,0,21
+150982,15049.80093,18745.50379,0,21
+150983,15022.65607,13817.69704,0,21
+150984,15068.84874,13605.08236,0,21
+150985,15111.95375,14087.67759,0,21
+150986,15103.78538,14145.5837,0,21
+150987,15131.00166,14222.38886,0,21
+150988,15179.27133,14290.3454,0,21
+150989,15203.97807,14380.81914,0,21
+150990,15219.61328,14428.07925,0,21
+150991,15230.89266,14512.87193,0,21
+150992,15273.48805,14710.65927,0,21
+150993,15306.08053,14628.70596,0,21
+150994,15286.83,14738.65273,0,21
+150995,15332.91845,14736.84216,0,21
+150996,15386.28235,14868.75126,0,21
+150997,0,14916.80527,0,21
+150998,0,14970.54363,0,21
+150999,0,15024.16834,0,21
+151000,0,15259.93936,0,21
+151001,64563.35743,15185.55081,0,21
+151002,0,15246.52977,0,21
+151003,3881.505327,15315.33498,964180.0212,21
+151004,24845.46347,15395.58819,0,21
+151005,13784.10366,15436.15109,0,21
+151006,15513.99876,15507.18226,0,21
+151007,355394.4149,15596.79078,0,21
+151008,15636.95326,15743.4999,0,21
+151009,15639.2334,0,0,21
+151010,15673.84387,0,0,21
+151011,15665.97124,0,0,21
+151012,15726.59808,0,0,21
+151013,15679.29691,60405.70954,0,21
+151014,15779.48385,0,0,21
+151015,15718.82773,7962.621881,0,21
+151016,15766.41537,23164.66585,0,21
+151017,15811.23926,15162.27524,0,21
+151018,15766.42532,16122.69136,0,21
+151019,15811.23919,16409.97108,0,21
+151020,15837.65644,16414.25663,0,21
+151021,15800.49601,16535.0984,0,21
+151022,15777.13008,384863.9411,0,21
+151023,15753.17489,16657.24376,0,21
+151024,15766.42183,16808.82965,0,21
+151025,15686.7989,16883.36552,0,21
+151026,15692.60751,16952.07042,0,21
+151027,15673.86391,17093.01081,0,21
+151028,15626.14403,17106.84694,0,21
+151029,15615.30852,17255.16277,0,21
+151030,15599.80279,17288.06488,0,21
+151031,0,17407.41135,0,21
+151032,0,17514.24533,0,21
+151033,0,17564.25558,0,21
+151034,0,17639.61028,0,21
+151035,65442.5163,17795.57316,0,21
+151036,0,17856.36875,0,21
+151037,3656.66208,17898.39022,0,21
+151038,24475.74161,18017.28204,0,21
+151039,13810.80549,18311.25165,940430.6472,21
+151040,15304.99207,18165.84297,0,21
+151041,15300.55974,18282.74161,0,21
+151042,15388.67343,18348.40676,0,21
+151043,15265.84928,0,0,21
+151044,15294.83457,0,0,21
+151045,15206.44926,0,0,21
+151046,15187.26087,0,0,21
+151047,15193.02982,74117.76463,0,21
+151048,15106.20893,0,0,21
+151049,354883.9622,10330.60613,0,21
+151050,15079.23425,27094.77362,0,21
+151051,14989.95785,17727.19398,0,21
+151052,15011.65116,19232.32349,0,21
+151053,14954.322,19364.49839,0,21
+151054,14916.44566,19439.61324,0,21
+151055,14867.59375,19490.25759,0,21
+151056,14869.91226,19608.79058,0,21
+151057,14820.8712,19699.2031,0,21
+151058,14758.29529,19743.56546,0,21
+151059,14760.51425,19982.03514,0,21
+151060,14676.05894,19940.00807,0,21
+151061,14678.39034,19991.31286,0,21
+151062,14615.27372,20066.17707,0,21
+151063,14601.49521,20143.96818,0,21
+151064,14554.42704,20226.32563,0,21
+151065,0,388532.5868,0,21
+151066,0,20405.52298,0,21
+151067,0,20451.12341,0,21
+151068,0,20547.03518,0,21
+151069,0,20648.47391,0,21
+151070,66047.37438,20686.92263,0,21
+151071,0,20857.07486,0,21
+151072,2054.660681,20853.47515,0,21
+151073,21600.59127,20957.24831,0,21
+151074,13935.0757,21009.49906,0,21
+151075,13749.61003,21050.43349,916805.3269,21
+151076,14185.22194,21209.69332,0,21
+151077,14115.506,0,0,21
+151078,14117.81741,0,0,21
+151079,14036.91958,0,0,21
+151080,13976.98072,76572.2008,0,15.6
+151081,14045.66488,1505.386844,0,15.6
+151082,14137.33225,15261.4561,0,15.6
+151083,14165.70003,28089.5354,0,15.6
+151084,14268.7686,20418.04759,0,15.6
+151085,14291.38371,21782.8745,0,15.6
+151086,14310.89899,21637.24349,0,15.6
+151087,14471.67996,21634.85968,0,15.6
+151088,14477.01085,21671.18984,0,15.6
+151089,14532.78596,21644.85217,0,15.6
+151090,14595.89934,21747.54443,0,15.6
+151091,354464.497,21656.93337,0,15.6
+151092,14711.50008,21735.64632,0,15.6
+151093,14787.95786,21888.53023,0,15.6
+151094,14867.56875,21767.24086,0,15.6
+151095,14916.50506,21755.30032,0,15.6
+151096,14967.99038,21760.52646,0,15.6
+151097,15038.70475,21840.40841,0,15.6
+151098,15079.20221,21780.18606,0,15.6
+151099,15173.95048,21845.6291,0,15.6
+151100,0,21821.78374,0,15.6
+151101,0,22027.47198,0,15.6
+151102,0,21865.28329,0,15.6
+151103,0,21853.37302,0,15.6
+151104,65746.82435,21936.73648,0,15.6
+151105,0,21884.88955,0,15.6
+151106,3771.244159,21963.07617,0,15.6
+151107,24631.35053,21956.34266,0,15.6
+151108,14183.52234,390104.8748,0,15.6
+151109,15659.70835,22009.65794,0,15.6
+151110,15871.64617,0,0,15.6
+151111,15910.96943,0,0,15.6
+151112,15976.79381,0,895190.7329,15.6
+151113,16068.02201,79152.5901,0,15.6
+151114,16047.44038,2706.254375,0,15.6
+151115,16206.08818,14050.72719,0,15.6
+151116,16164.45594,29358.11411,0,15.6
+151117,16307.3647,20790.21401,0,15.6
+151118,16322.73047,22026.32902,0,15.6
+151119,16389.77851,22072.68798,0,15.6
+151120,16482.61923,22085.42312,0,15.6
+151121,16456.94874,22072.67697,0,15.6
+151122,16616.01568,22131.14158,0,15.6
+151123,16616.01332,22106.59268,0,15.6
+151124,16666.61997,22114.09971,0,15.6
+151125,16756.88729,22495.87273,0,15.6
+151126,16801.31908,22116.77513,0,15.6
+151127,16863.27601,22179.28241,0,15.6
+151128,16908.29414,22103.93564,0,15.6
+151129,16996.99291,22245.02834,0,15.6
+151130,17021.89991,22106.89526,0,15.6
+151131,17077.33729,22245.01823,0,15.6
+151132,17160.6322,22128.36942,0,15.6
+151133,356956.9787,22242.35694,0,15.6
+151134,0,22203.6129,0,15.6
+151135,0,22201.01047,0,15.6
+151136,0,22244.99316,0,15.6
+151137,0,22225.36607,0,15.6
+151138,71370.02157,22251.75886,0,15.6
+151139,322.5662533,22249.63403,0,15.6
+151140,10837.62474,22273.46326,0,15.6
+151141,24075.6758,22247.47863,0,15.6
+151142,16485.73174,22253.83232,0,15.6
+151143,17470.39478,2.415544875,0,15.6
+151144,17283.04316,0,0,15.6
+151145,17292.16704,0,0,15.6
+151146,17170.53067,80655.21395,0,15.6
+151147,17104.54453,3462.641306,0,15.6
+151148,16994.38978,13462.64356,0,15.6
+151149,16903.03797,30099.6321,876065.6963,15.6
+151150,16862.9436,20990.52457,0,15.6
+151151,16776.33485,390540.6361,0,15.6
+151152,16641.43715,22288.77801,0,15.6
+151153,16582.54751,22408.29862,0,15.6
+151154,16507.86834,22322.04929,0,15.6
+151155,16410.78187,22372.6836,0,15.6
+151156,16327.43748,22355.58104,0,15.6
+151157,16229.66125,22374.76084,0,15.6
+151158,16166.67065,22355.57185,0,15.6
+151159,16047.35418,22372.66521,0,15.6
+151160,16002.62292,22353.08658,0,15.6
+151161,15871.70254,22377.27252,0,15.6
+151162,15818.82632,22372.65177,0,15.6
+151163,15700.24338,22355.54943,0,15.6
+151164,15633.81212,22374.72944,0,15.6
+151165,15535.57998,22381.91326,0,15.6
+151166,15468.79672,22377.25034,0,15.6
+151167,15346.26866,22353.05562,0,15.6
+151168,0,22353.05126,0,15.6
+151169,0,22427.80016,0,15.6
+151170,0,22389.90802,0,15.6
+151171,0,22483.69913,0,15.6
+151172,65509.77195,22409.33121,0,15.6
+151173,0,22466.78826,0,15.6
+151174,2651.720726,22431.03672,0,15.6
+151175,362289.2394,22462.02127,0,15.6
+151176,13807.16432,0,0,15.6
+151177,14217.97758,0,0,15.6
+151178,14407.96893,0,0,15.6
+151179,14374.58507,81620.06439,0,15.6
+151180,14235.83572,3676.050834,0,15.6
+151181,14163.20788,13156.71527,0,15.6
+151182,14076.07396,30510.07287,0,15.6
+151183,13969.15349,21165.93234,0,15.6
+151184,13856.14796,22431.0023,0,15.6
+151185,13799.9313,22541.19311,0,15.6
+151186,13671.93847,22461.98193,858143.7654,15.6
+151187,13557.72086,22507.8282,0,15.6
+151188,13523.29063,22492.8867,0,15.6
+151189,13371.5666,22486.15939,0,15.6
+151190,13293.16578,22461.96537,0,15.6
+151191,13226.78984,22517.06459,0,15.6
+151192,13070.30151,22483.61799,0,15.6
+151193,13008.91587,390647.0685,0,15.6
+151194,12916.1409,22507.80021,0,15.6
+151195,12826.90333,22437.66893,0,15.6
+151196,12680.90606,22517.04526,0,15.6
+151197,12615.42449,22437.66141,0,15.6
+151198,12532.36313,22497.60605,0,15.6
+151199,12416.9795,22437.65397,0,15.6
+151200,12394.34215,22492.84038,0,15.6
+151201,12622.4006,22486.1127,0,15.6
+151202,0,22566.93716,0,15.6
+151203,0,22610.6806,0,15.6
+151204,0,22656.16013,0,15.6
+151205,0,22684.70247,0,15.6
+151206,0,22735.28763,0,15.6
+151207,62490.73746,22820.99032,0,15.6
+151208,0,22847.40312,0,15.6
+151209,3005.501521,0,0,15.6
+151210,20935.70768,70.10327725,0,15.6
+151211,14670.35541,0,0,15.6
+151212,14439.12459,83916.15042,0,15.6
+151213,15192.11782,4723.610553,0,15.6
+151214,15346.96109,12787.33627,0,15.6
+151215,15580.02292,31720.02158,0,15.6
+151216,15795.94991,21816.1387,0,15.6
+151217,355721.4985,23241.57052,0,15.6
+151218,16175.3904,23578.36191,0,15.6
+151219,16356.69828,23347.62467,0,15.6
+151220,16587.43021,23488.4584,0,15.6
+151221,16766.02904,23467.26382,0,15.6
+151222,16956.10227,23534.72638,0,15.6
+151223,17187.18681,23592.89645,841493.6931,15.6
+151224,17367.9651,23616.67671,0,15.6
+151225,17454.16897,23687.88703,0,15.6
+151226,17668.34327,23840.59262,0,15.6
+151227,17870.86719,23790.65292,0,15.6
+151228,18071.25645,23792.46798,0,15.6
+151229,18257.92505,23864.37499,0,15.6
+151230,18452.90093,23884.95107,0,15.6
+151231,18656.57461,23935.75029,0,15.6
+151232,18849.50209,24016.82658,0,15.6
+151233,19055.53852,24017.1208,0,15.6
+151234,19236.89422,24091.72352,0,15.6
+151235,19407.2857,392284.471,0,15.6
+151236,19662.81468,24308.97344,0,15.6
+151237,0,24233.8342,0,15.6
+151238,0,24274.82748,0,15.6
+151239,0,24254.61031,0,15.6
+151240,72940.25397,24395.48587,0,15.6
+151241,3771.950694,24366.01283,0,15.6
+151242,16066.77026,0,0,15.6
+151243,25924.38252,0,0,15.6
+151244,20597.22682,0,0,15.6
+151245,21398.26879,90239.71473,0,15.6
+151246,21627.50638,7821.599973,0,15.6
+151247,21789.77843,10948.87882,0,15.6
+151248,22016.91638,34915.79434,0,15.6
+151249,22175.74919,23068.70331,0,15.6
+151250,22375.51779,24870.62363,0,15.6
+151251,22577.94679,24890.31961,0,15.6
+151252,22773.07106,24962.4071,0,15.6
+151253,22967.19307,24999.27931,0,15.6
+151254,23127.94815,312394.6051,0,15.6
+151255,23336.60545,48876.76529,0,15.6
+151256,23542.91247,77671.36488,0,15.6
+151257,23699.62723,130135.4136,0,15.6
+151258,23903.54008,125260.6205,0,15.6
+151259,363873.3267,113427.239,0,15.6
+151260,24289.56958,118503.2841,826200.4478,15.6
+151261,24394.38664,118408.5714,0,15.6
+151262,24523.08835,118631.8275,0,15.6
+151263,24623.90989,118423.4913,0,15.6
+151264,24739.55574,118642.5018,0,15.6
+151265,24884.38121,118731.6156,0,15.6
+151266,24953.36843,118773.915,0,15.6
+151267,25081.35293,118853.1726,0,15.6
+151268,25243.15382,118961.4578,0,15.6
+151269,25320.49101,119056.549,0,15.6
+151270,0,119232.6268,0,15.6
+151271,0,119262.3606,0,15.6
+151272,0,119358.7856,0,15.6
+151273,83614.24708,119894.6783,0,15.6
+151274,24201.1414,119527.6215,0,15.6
+151275,9624.332344,94739.4876,0,15.6
+151276,34903.74501,94720.00074,0,15.6
+151277,25623.03341,463226.6697,0,15.6
+151278,26487.69736,187807.9484,0,15.6
+151279,26644.55991,104955.1722,0,15.6
+151280,487688.2058,104588.8376,0,15.6
+151281,36892.35713,131604.6885,0,15.6
+151282,48169.37093,118981.5179,0,15.6
+151283,149811.9567,120721.0586,0,15.6
+151284,148247.0609,25130.052,0,15.6
+151285,123584.1849,25140.74164,0,15.6
+151286,133259.9611,25182.56857,0,15.6
+151287,134829.6366,25069.85467,0,15.6
+151288,135454.5385,25140.72371,0,15.6
+151289,137491.0577,25090.24041,0,15.6
+151290,137939.7174,25111.79097,0,15.6
+151291,139815.1213,25121.7554,0,15.6
+151292,140677.5556,25040.83753,0,15.6
+151293,142016.1217,25109.08201,0,15.6
+151294,143457.2551,25039.594,0,15.6
+151295,144877.3683,25141.99943,0,15.6
+151296,146022.8774,24982.60758,0,15.6
+151297,147311.0999,382312.7477,812529.1746,15.6
+151298,148731.6412,42318.48661,0,15.6
+151299,150047.8415,77526.58633,0,15.6
+151300,151646.5999,138182.9662,0,15.6
+151301,491999.4115,133915.2608,0,15.6
+151302,154446.9363,118400.0927,0,15.6
+151303,125885.6825,123710.8247,0,15.6
+151304,127323.2726,123447.8564,0,15.6
+151305,209765.5715,123864.936,0,15.6
+151306,153316.0125,123506.7223,0,15.6
+151307,151579.7148,123656.1818,0,15.6
+151308,167725.7129,98601.6461,0,15.6
+151309,163219.3811,99043.37442,0,15.6
+151310,30438.73068,98517.69166,0,15.6
+151311,30509.98892,191503.4159,0,15.6
+151312,30683.44144,107553.6734,0,15.6
+151313,30774.48898,108355.4346,0,15.6
+151314,30931.50106,134592.1706,0,15.6
+151315,635074.8697,122142.4042,0,15.6
+151316,31179.63866,123588.6705,0,15.6
+151317,82310.2499,124061.9717,0,15.6
+151318,254099.2059,123898.7605,0,15.6
+151319,165454.2312,492156.1827,0,15.6
+151320,178999.4047,124101.6076,0,15.6
+151321,180731.1581,123987.1392,0,15.6
+151322,181010.7684,125056.6928,0,15.6
+151323,181116.5281,125088.8068,0,15.6
+151324,181304.3865,124477.3066,0,15.6
+151325,181685.9519,125910.2392,0,15.6
+151326,181896.4042,125456.4018,0,15.6
+151327,182166.4721,24979.05159,0,15.6
+151328,182443.8692,24968.25819,0,15.6
+151329,182703.379,25022.37305,0,15.6
+151330,182791.8451,24997.30337,0,15.6
+151331,183260.2779,25079.25205,0,15.6
+151332,183516.0822,25047.98373,0,15.6
+151333,183611.0671,25061.01658,0,15.6
+151334,184139.0005,25087.82721,800560.0981,15.6
+151335,152661.2952,25079.23105,0,15.6
+151336,152351.9873,25137.13442,0,15.6
+151337,237437.535,25118.95879,0,15.6
+151338,184305.5969,430102.2679,0,15.6
+151339,173372.2124,37310.52035,0,15.6
+151340,191120.3849,73517.81253,0,15.6
+151341,185922.1671,127173.7248,0,15.6
+151342,185817.3717,114210.5855,0,15.6
+151343,526350.4557,100367.3716,0,15.6
+151344,186671.4295,199082.0266,0,15.6
+151345,31926.17115,115445.1036,0,15.6
+151346,31953.89063,115021.0466,0,15.6
+151347,31996.78693,142784.6285,0,15.6
+151348,31953.81466,129601.1439,0,15.6
+151349,655558.4961,131836.2167,0,15.6
+151350,36776.8543,131823.7036,0,15.6
+151351,120081.2767,132319.5266,0,15.6
+151352,252207.5494,132207.7824,0,15.6
+151353,178436.4335,132648.7633,0,15.6
+151354,188905.5658,132460.4612,0,15.6
+151355,189560.0832,133198.9107,0,15.6
+151356,189542.6536,133391.2823,0,15.6
+151357,189369.6046,133039.629,0,15.6
+151358,189934.6349,134113.9496,0,15.6
+151359,190019.7417,133528.7297,0,15.6
+151360,189937.9244,134481.0627,0,15.6
+151361,190340.7645,502122.5116,0,15.6
+151362,190428.6357,134853.9998,0,15.6
+151363,190406.1332,134441.1948,0,15.6
+151364,190862.779,135407.0972,0,15.6
+151365,190923.4903,135054.9014,0,15.6
+151366,190862.4693,135878.7083,0,15.6
+151367,159532.2453,135420.4272,0,15.6
+151368,159067.2711,25647.80678,0,15.6
+151369,244121.3233,25748.27489,789404.7812,15.6
+151370,191815.5078,25632.9538,0,15.6
+151371,179514.3391,25794.6116,0,15.6
+151372,197614.2204,25679.46299,0,15.6
+151373,192116.9253,25787.05508,0,15.6
+151374,192079.3273,0,0,15.6
+151375,192577.9774,0,0,15.6
+151376,192329.1503,444550.9362,0,15.6
+151377,192722.8253,102073.5345,0,15.6
+151378,192851.9706,59191.07391,0,15.6
+151379,32087.54393,156970.8716,0,15.6
+151380,31995.55385,154739.8167,0,15.6
+151381,32161.80992,133211.5204,0,15.6
+151382,32181.02409,138025.4271,0,15.6
+151383,673403.3358,138113.8886,0,15.6
+151384,53800.98495,137212.5244,0,15.6
+151385,468816.6106,136450.0009,0,15.6
+151386,259310.7602,136152.5967,0,15.6
+151387,190172.7348,135519.5482,0,15.6
+151388,199934.1601,134639.9318,0,15.6
+151389,200874.604,134528.7406,0,15.6
+151390,201553.052,133545.127,0,15.6
+151391,202430.2246,133096.4168,0,15.6
+151392,202996.8009,132406.1709,0,15.6
+151393,203806.6536,132090.9276,0,15.6
+151394,204435.005,131406.4372,0,15.6
+151395,205292.2163,130636.6627,0,15.6
+151396,206037.636,130772.0028,0,15.6
+151397,206720.4947,129076.8582,0,15.6
+151398,207348.0346,129470.3966,0,15.6
+151399,174844.5136,128471.7251,0,15.6
+151400,175571.9833,128079.74,0,15.6
+151401,262137.1842,127447.9252,0,15.6
+151402,215670.2081,126955.8491,0,15.6
+151403,196751.2979,494535.3691,0,15.6
+151404,218404.7942,126065.1579,778871.3359,15.6
+151405,212702.7542,124783.447,0,15.6
+151406,213813.8776,24221.17313,0,15.6
+151407,214375.5617,0,0,15.6
+151408,215016.3141,7.775650506,0,15.6
+151409,216471.7091,0,0,15.6
+151410,216386.5098,88910.77465,0,15.6
+151411,217451.0016,6928.914604,0,15.6
+151412,218657.797,10225.34317,0,15.6
+151413,34478.04403,33925.82905,0,15.6
+151414,34571.3125,22045.10639,0,15.6
+151415,34671.71987,23551.59146,0,15.6
+151416,685585.5952,23566.29411,0,15.6
+151417,77482.36016,23505.31242,0,15.6
+151418,177579.3321,23402.54374,0,15.6
+151419,269024.4792,23358.31633,0,15.6
+151420,219671.2177,23296.56123,0,15.6
+151421,565012.3897,392961.6156,0,15.6
+151422,226779.6323,40232.7776,0,15.6
+151423,226998.6679,61726.74938,0,15.6
+151424,228393.8149,125573.8557,0,15.6
+151425,228544.5458,131282.1137,0,15.6
+151426,229403.5692,107029.5312,0,15.6
+151427,230427.5478,113672.7242,0,15.6
+151428,230947.8451,113023.5181,0,15.6
+151429,231812.9711,112109.5326,0,15.6
+151430,232231.3294,111596.2727,0,15.6
+151431,197817.5717,110745.6549,0,15.6
+151432,197779.7279,110717.7616,0,15.6
+151433,286943.7252,109420.3786,0,15.6
+151434,244904.3438,109247.1896,0,15.6
+151435,222399.5629,108816.4073,0,15.6
+151436,242021.9498,107405.4611,0,15.6
+151437,238345.5851,107402.7414,0,15.6
+151438,238956.0037,106642.2332,0,15.6
+151439,239439.4656,474406.5688,768943.8867,15.6
+151440,240041.8669,83730.01238,0,17.8
+151441,240170.1404,83808.78971,0,17.8
+151442,238898.0791,84576.44377,0,17.8
+151443,239124.2957,165120.6574,0,17.8
+151444,237974.4214,87922.21693,0,17.8
+151445,238245.5015,98828.5941,0,17.8
+151446,36290.3814,115371.0813,0,17.8
+151447,36163.15124,107156.5475,0,17.8
+151448,36093.22093,108383.9934,0,17.8
+151449,718114.4844,109160.0826,0,17.8
+151450,132685.0875,109345.4141,0,17.8
+151451,150077.5455,22411.30382,0,17.8
+151452,294423.5611,22378.79395,0,17.8
+151453,227227.9362,22430.68251,0,17.8
+151454,233546.5492,22480.56853,0,17.8
+151455,232967.3013,22507.58755,0,17.8
+151456,232577.2046,22568.88379,0,17.8
+151457,571658.3603,22737.68633,0,17.8
+151458,231306.6445,22664.76093,0,17.8
+151459,230742.7108,22603.60874,0,17.8
+151460,230369.486,22732.15975,0,17.8
+151461,229492.1526,22684.04433,0,17.8
+151462,229373.2857,22777.84994,0,17.8
+151463,193325.5664,22803.62762,0,17.8
+151464,193023.4721,22794.8737,0,17.8
+151465,279594.9824,23009.05755,0,17.8
+151466,234657.4298,22887.60944,0,17.8
+151467,212492.2179,22957.56962,0,17.8
+151468,230940.8726,22933.10697,0,17.8
+151469,225619.2739,23047.81762,0,17.8
+151470,224981.9625,23060.34814,0,17.8
+151471,224134.6268,23017.56793,0,17.8
+151472,223814.8559,380415.375,0,17.8
+151473,223094.7429,22870.59111,0,17.8
+151474,222559.2346,41171.34245,759758.5649,17.8
+151475,222370.5408,478137.9762,0,17.8
+151476,220980.0153,194842.2848,0,17.8
+151477,221469.6976,96160.64056,0,17.8
+151478,220008.1011,108980.4773,0,17.8
+151479,34226.59386,130075.0644,0,17.8
+151480,34170.77691,119763.403,0,17.8
+151481,34075.43544,120983.6142,0,17.8
+151482,684702.4116,122081.0928,0,17.8
+151483,76378.0164,121704.0994,0,17.8
+151484,166436.6842,122759.385,0,17.8
+151485,264369.2513,122416.2389,0,17.8
+151486,210185.9613,122779.6489,0,17.8
+151487,215591.2791,123723.537,0,17.8
+151488,215312.8774,123457.8711,0,17.8
+151489,214432.5987,124103.2873,0,17.8
+151490,214191.0541,124283.1887,0,17.8
+151491,213532.0686,124832.1735,0,17.8
+151492,212666.3138,124793.186,0,17.8
+151493,551944.551,126082.7604,0,17.8
+151494,211575.3625,125602.4684,0,17.8
+151495,177892.4368,126295.0245,0,17.8
+151496,177330.6959,126683.752,0,17.8
+151497,262581.4516,127022.3201,0,17.8
+151498,212553.9833,126990.4783,0,17.8
+151499,194556.9754,127912.7765,0,17.8
+151500,214327.4791,127906.0348,0,20
+151501,205414.4733,126025.4934,0,20
+151502,205563.2683,23978.45958,0,20
+151503,204938.6379,23955.76284,0,20
+151504,205060.8587,24038.33915,0,20
+151505,204236.3802,23955.75911,0,20
+151506,204516.7995,0,0,20
+151507,203689.3605,0,0,20
+151508,203805.9183,0,0,20
+151509,203429.5069,88076.31177,0,20
+151510,202978.2297,6678.763181,0,20
+151511,203064.6645,11129.5887,751226.7306,20
+151512,32227.67828,33873.86323,0,20
+151513,32150.48008,437057.3622,0,20
+151514,32181.24002,36154.74675,0,20
+151515,32063.72504,63403.01134,0,20
+151516,697882.6985,518454.6268,0,20
+151517,84615.32072,138139.1821,0,20
+151518,111739.5435,121988.0815,0,20
+151519,268658.1993,127665.3336,0,20
+151520,191802.125,127907.1269,0,20
+151521,200391.5904,127709.5637,0,20
+151522,200284.8136,127736.0612,0,20
+151523,199818.2845,127829.2377,0,20
+151524,199583.769,127529.1416,0,20
+151525,199248.7657,127514.8785,0,20
+151526,198659.1575,126536.0416,0,20
+151527,167053.5287,127496.2608,0,20
+151528,166513.863,126513.42,0,20
+151529,250356.1951,127153.5933,0,20
+151530,196750.4857,126806.5223,0,20
+151531,184642.8627,127080.345,0,20
+151532,202824.4549,126564.1314,0,20
+151533,196268.3513,127061.6834,0,20
+151534,196213.7623,126384.8081,0,20
+151535,535510.5172,126742.999,0,20
+151536,195260.0762,126705.962,0,20
+151537,195642.2665,126605.075,0,20
+151538,193131.228,126297.2138,0,20
+151539,192270.4365,102772.6739,0,20
+151540,188965.0842,102460.515,0,20
+151541,187404.861,102289.6795,0,20
+151542,186549.2605,190102.3901,0,20
+151543,186063.1645,6467.013915,0,20
+151544,184984.3626,11389.21152,0,20
+151545,184222.5838,33631.79311,0,20
+151546,30177.98074,22467.97968,0,20
+151547,30097.3227,23917.21227,0,20
+151548,30026.93572,24069.15911,743568.3118,20
+151549,29900.43658,23957.20343,0,20
+151550,634279.799,24053.47149,0,20
+151551,39367.97218,23979.81968,0,20
+151552,113205.0703,23975.85982,0,20
+151553,237427.2529,23984.10379,0,20
+151554,168534.4206,435951.8647,0,20
+151555,176908.7762,36565.34153,0,20
+151556,175971.8196,61346.87337,0,20
+151557,175590.696,517154.9805,0,20
+151558,174296.5734,137210.1397,0,20
+151559,144426.4556,119529.5423,0,20
+151560,143733.9449,126265.6303,0,21
+151561,224214.6821,125658.3995,0,21
+151562,169800.0048,125664.3226,0,21
+151563,165998.5198,125907.5407,0,21
+151564,182365.801,125479.6625,0,21
+151565,177814.2112,125803.9898,0,21
+151566,179294.1839,125672.4364,0,21
+151567,180620.1562,125292.4884,0,21
+151568,181813.3702,125886.2854,0,21
+151569,183295.8699,125336.2088,0,21
+151570,184104.77,125292.5085,0,21
+151571,185765.8648,125706.0623,0,21
+151572,186928.4204,101746.7195,0,21
+151573,187902.6923,101219.997,0,21
+151574,189523.8167,101973.081,0,21
+151575,190780.9069,188881.0299,0,21
+151576,191810.9213,107885.3696,0,21
+151577,532794.6716,113157.5221,0,21
+151578,194402.0468,135113.5189,0,21
+151579,195885.1258,123710.9238,0,21
+151580,31852.14937,125939.8687,0,21
+151581,32015.83006,125193.256,0,21
+151582,32128.39975,125806.8198,0,21
+151583,32285.03951,125546.6923,0,21
+151584,658903.63,23935.95874,737113.5789,21
+151585,111682.885,23942.80126,0,21
+151586,118963.3768,23962.81129,0,21
+151587,266428.4275,23957.25712,0,21
+151588,201256.4824,23940.12137,0,21
+151589,208357.4599,23935.97089,0,21
+151590,210621.0811,23972.27912,0,21
+151591,177936.202,23903.68406,0,21
+151592,179277.9002,23972.2843,0,21
+151593,267112.1109,23913.28637,0,21
+151594,220641.0436,23891.94599,0,21
+151595,201320.7482,23944.17862,0,21
+151596,224941.083,443391.9922,0,21
+151597,219475.4299,36839.73194,0,21
+151598,221110.0179,426729.1727,0,21
+151599,222160.3009,147051.0128,0,21
+151600,224051.2406,138648.8134,0,21
+151601,225029.9232,119072.5398,0,21
+151602,226290.5747,125884.8986,0,21
+151603,228186.8524,125220.8648,0,21
+151604,229007.5921,125803.4882,0,21
+151605,230813.7778,101220.192,0,21
+151606,232265.1523,101317.0505,0,21
+151607,233150.2111,101381.6861,0,21
+151608,234978.6602,188315.525,0,21
+151609,236390.3503,107280.6361,0,21
+151610,237319.2149,112450.7311,0,21
+151611,239350.1181,134327.4292,0,21
+151612,240291.9122,122838.3618,0,21
+151613,241669.2084,125054.6154,0,21
+151614,36977.53438,123955.6352,0,21
+151615,37063.38953,124834.271,0,21
+151616,376689.0691,124005.7287,0,21
+151617,705731.5847,124822.403,0,21
+151618,204870.4146,123965.9597,0,21
+151619,136787.9668,124403.8518,0,21
+151620,317318.7668,123873.941,732275.5087,21
+151621,245063.0111,123676.04,0,21
+151622,249530.8351,123028.7883,0,21
+151623,211092.3274,122240.1629,0,21
+151624,209683.1171,121746.75,0,21
+151625,298295.599,121350.978,0,21
+151626,252412.0533,23483.31959,0,21
+151627,233793.5722,23353.48563,0,21
+151628,243839.5312,23287.03234,0,21
+151629,241763.7158,23176.39044,0,21
+151630,239259.4051,23176.39273,0,21
+151631,238061.9024,23066.71482,0,21
+151632,236732.7196,23036.61573,0,21
+151633,235205.4783,22906.55181,0,21
+151634,234084.9158,22922.60474,0,21
+151635,232771.3585,22822.88538,0,21
+151636,231193.9682,22910.25981,0,21
+151637,230409.8628,22655.80511,0,21
+151638,228565.7955,0,0,21
+151639,227852.3008,368147.4768,0,21
+151640,225771.1657,0,0,21
+151641,225029.994,82285.60742,0,21
+151642,223676.0685,3587.944704,0,21
+151643,222294.6433,12399.88093,0,21
+151644,221092.9476,30642.53823,0,21
+151645,219564.9822,20780.22792,0,21
+151646,218472.14,22127.61796,0,21
+151647,34205.14378,22096.83051,0,21
+151648,34014.0458,22025.18014,0,21
+151649,33925.41655,21943.85871,0,21
+151650,643991.5717,21907.85926,0,21
+151651,96655.05536,21747.87473,0,21
+151652,158134.9208,21720.24076,0,21
+151653,252914.7656,21553.38556,0,21
+151654,204048.4843,21833.29965,0,21
+151655,513256.8889,21345.05228,0,21
+151656,172742.9994,21264.14735,725741.5865,21
+151657,257249.3577,21089.93271,0,21
+151658,207727.3445,21040.96968,0,21
+151659,185321.6608,20905.27498,0,21
+151660,207525.4672,20744.30817,0,21
+151661,198746.2465,20677.09706,0,21
+151662,197745.5134,20523.0812,0,21
+151663,196254.7674,20403.78891,0,21
+151664,195185.7225,20300.23926,0,21
+151665,193787.238,20151.67165,0,21
+151666,191968.95,20056.23631,0,21
+151667,191378.1849,19926.27506,0,21
+151668,189530.6319,19774.56891,0,21
+151669,188438.3894,19676.34272,0,21
+151670,186994.8265,19523.19003,0,21
+151671,185685.5943,0,0,21
+151672,184140.8102,145.7259342,0,21
+151673,183391.1599,0,0,21
+151674,181538.1885,69074.32992,0,21
+151675,180363.4429,0,0,21
+151676,179184.8642,11727.69473,0,21
+151677,177534.2384,25541.77996,0,21
+151678,176491.8303,17208.14794,0,21
+151679,176077.0302,386461.4298,0,21
+151680,29617.00311,18288.44223,0,21
+151681,29695.30849,18110.61003,0,21
+151682,29699.71739,17993.01143,0,21
+151683,29692.66509,17869.26333,0,21
+151684,601485.1719,17713.46223,0,21
+151685,40985.08114,17651.5912,0,21
+151686,115614.2668,17456.86355,0,21
+151687,202657.3158,17383.66396,0,21
+151688,137510.1262,17208.98526,0,21
+151689,227699.6709,17115.19822,0,21
+151690,174010.639,16937.65485,0,21
+151691,165676.7179,16879.25564,0,21
+151692,182694.184,16678.04939,719575.241,21
+151693,177002.0365,16590.29353,0,21
+151694,516698.7556,16426.81158,0,21
+151695,177377.4658,16375.21513,0,21
+151696,177588.0848,16126.37472,0,21
+151697,177544.4082,16109.42016,0,21
+151698,177790.408,15908.45627,0,21
+151699,177902.9371,15803.32589,0,21
+151700,178078.6526,15654.6096,0,21
+151701,177768.2661,15558.25042,0,21
+151702,178489.0169,15362.41671,0,21
+151703,178231.0933,15237.77527,0,21
+151704,178433.331,0,0,21
+151705,178655.9978,0,0,21
+151706,178444.8752,0,0,21
+151707,178932.7316,0,0,21
+151708,179026.1032,57148.45018,0,21
+151709,179104.7943,0,0,21
+151710,178959.1979,5724.943951,0,21
+151711,179355.8649,20593.32665,0,21
+151712,178472.0124,13124.13275,0,21
+151713,178470.2956,13594.90897,0,21
+151714,30033.70732,13664.94823,0,21
+151715,29870.01763,13607.42526,0,21
+151716,29819.39949,13532.98208,0,21
+151717,29859.36381,13421.4189,0,21
+151718,601969.7791,381459.7629,0,21
+151719,16271.29407,13255.59156,0,21
+151720,77462.59434,13140.43745,0,21
+151721,284228.9826,13036.90416,0,21
+151722,162890.9552,12980.31275,0,21
+151723,162216.2422,12842.89767,0,21
+151724,179708.1793,12774.11282,0,21
+151725,172653.1194,12690.56352,0,21
+151726,172928.6322,12587.97607,0,21
+151727,172189.4825,12543.71973,0,21
+151728,172004.4863,12417.51836,713910.905,21
+151729,171092.7453,12304.7304,0,21
+151730,170881.1454,12260.71745,0,21
+151731,170418.7726,12124.46494,0,21
+151732,169580.1432,12069.10081,0,21
+151733,509027.2148,11983.31039,0,21
+151734,168561.4862,11874.10472,0,21
+151735,166843.8068,11786.13863,0,21
+151736,165524.9678,11712.34731,0,21
+151737,165144.8042,11606.67435,0,21
+151738,164573.3022,0,0,21
+151739,163750.3202,0,0,21
+151740,163569.1879,0,0,21
+151741,161755.7998,0,0,21
+151742,161063.3826,0,0,21
+151743,159260.562,39026.2078,0,21
+151744,158403.9425,160.7288829,0,21
+151745,156731.2829,6347.90406,0,21
+151746,155545.3242,11416.98872,0,21
+151747,154336.9789,11381.69508,0,21
+151748,28049.50759,9459.134215,0,21
+151749,27965.43777,9889.350172,0,21
+151750,27792.20955,9779.143089,0,21
+151751,0,9574.921007,0,21
+151752,0,9562.394898,0,21
+151753,554769.7011,9333.931768,0,21
+151754,53803.89761,9176.690568,0,21
+151755,68416.99812,9009.005565,0,21
+151756,182188.8292,8898.972838,0,21
+151757,145830.9139,376906.1001,0,21
+151758,137194.7997,8586.545807,0,21
+151759,139490.6259,8441.908853,0,21
+151760,137780.9935,8312.901904,0,21
+151761,136950.2983,8138.913029,0,21
+151762,135221.4346,7985.025464,0,21
+151763,133528.1148,7878.21642,0,21
+151764,132506.6183,7490.287845,709032.1629,21
+151765,130858.1613,7377.293711,0,21
+151766,129405.5,7214.252227,0,21
+151767,128199.064,7150.531951,0,21
+151768,126562.3468,7007.115334,0,21
+151769,125266.2792,6897.291186,0,21
+151770,123698.0892,6785.000386,0,21
+151771,122760.2704,6654.877861,0,21
+151772,461392.5697,6537.637645,0,21
+151773,121002.3422,0,0,21
+151774,120095.7858,0,0,21
+151775,119391.1339,0,0,21
+151776,118638.5839,0,0,21
+151777,117482.521,0,0,21
+151778,116885.2796,0,0,21
+151779,116148.4468,0,0,21
+151780,115242.8079,0,0,21
+151781,114464.2478,0,0,21
+151782,114017.7992,0,0,21
+151783,0,0,0,21
+151784,0,18703.66249,0,21
+151785,67935.74774,553.5279216,0,21
+151786,12711.16787,2090.317915,0,21
+151787,20692.13252,1057.524088,0,21
+151788,26512.43707,5186.066495,0,21
+151789,366485.404,3528.280276,0,21
+151790,23627.70791,3699.483669,0,21
+151791,49846.22771,3780.916239,0,21
+151792,147062.9868,3502.22426,0,21
+151793,94578.20543,3443.832128,0,21
+151794,108803.4288,3358.175107,0,21
+151795,103523.8231,3295.504965,0,21
+151796,104379.56,371422.7121,0,21
+151797,103862.5655,3200.433613,0,21
+151798,102940.8514,3121.482431,0,21
+151799,102519.4726,3062.613225,0,21
+151800,101925.5044,2987.751212,704949.6817,21
+151801,101269.8454,3036.09529,0,21
+151802,101254.4883,3036.095469,0,21
+151803,100854.4989,3046.943084,0,21
+151804,100919.8868,3068.591704,0,21
+151805,100350.7769,3046.943443,0,21
+151806,100493.5836,3063.685149,0,21
+151807,99820.55077,3052.884215,0,21
+151808,100084.3129,3052.884399,0,21
+151809,99517.61255,3074.471496,0,21
+151810,99532.19077,3058.72605,0,21
+151811,99338.88661,3085.242392,0,21
+151812,98925.87021,3085.242583,0,21
+151813,99085.62523,3080.25244,0,21
+151814,438178.8754,0,0,21
+151815,76114.72219,0,0,21
+151816,76051.31035,0,0,21
+151817,76135.79139,0,0,21
+151818,149483.4841,0,0,21
+151819,17495.0633,0,0,21
+151820,10282.42024,0,0,21
+151821,28720.24583,0,0,21
+151822,21956.4741,0,0,21
+151823,22161.6929,0,0,21
+151824,22194.78663,0,0,21
+151825,22208.11846,3.118699622,0,21
+151826,22150.75054,0,0,21
+151827,277128.0093,0,0,21
+151828,31396.71385,0,0,21
+151829,58490.06734,0,0,21
+151830,131648.2809,3.097065029,0,21
+151831,89627.45424,0,0,21
+151832,96223.06319,2.66618817,0,21
+151833,96856.9609,0,0,21
+151834,95918.22677,2.856892349,0,21
+151835,96305.37074,0,0,21
+151836,95953.99987,3.700267764,699858.9789,21
+151837,95964.16671,368210.1447,0,21
+151838,95909.74105,0,0,21
+151839,95640.62942,0,0,21
+151840,95538.3431,0,0,21
+151841,95598.6353,0,0,21
+151842,95231.35782,0,0,21
+151843,95332.01498,0,0,21
+151844,95209.58742,0,0,21
+151845,94891.77586,0,0,21
+151846,95095.57037,0,0,21
+151847,94773.7165,0,0,21
+151848,73205.93337,0,0,21
+151849,73120.3777,0,0,21
+151850,72936.37382,0,0,21
+151851,147953.5873,0,0,21
+151852,86887.18992,0,0,21
+151853,80448.59329,0,0,21
+151854,103121.7996,0,0,21
+151855,92950.73255,0,0,21
+151856,433709.9943,0,0,21
+151857,21475.16484,0,0,21
+151858,21533.88169,0,0,21
+151859,21377.4757,0,0,21
+151860,21467.93817,0,0,21
+151861,21411.95085,0,0,21
+151862,21320.93447,0,0,21
+151863,21386.03412,0,0,21
+151864,21288.8522,0,0,21
+151865,263468.6816,0,0,21
+151866,36491.87412,0,0,21
+151867,55315.30703,0,0,21
+151868,111453.3131,0,0,21
+151869,95286.66877,0,0,21
+151870,89424.92368,0,0,21
+151871,92339.10621,0,0,21
+151872,91919.4925,0,694977.4184,21
+151873,91692.90504,0,0,21
+151874,91641.78761,0,0,21
+151875,91593.04618,0,0,21
+151876,90896.26598,0,0,21
+151877,91235.47283,368219.228,0,21
+151878,90673.40146,0,0,21
+151879,90681.96485,0,0,21
+151880,90615.88714,0,0,21
+151881,69408.37215,3.256470021,0,21
+151882,69507.33007,0,0,21
+151883,68928.54584,0,0,21
+151884,141560.7396,0,0,21
+151885,81179.82473,0,0,21
+151886,75957.10498,0,0,21
+151887,98278.4486,0,0,21
+151888,87919.45343,0,0,21
+151889,89301.85071,0,0,21
+151890,88966.39864,0,0,21
+151891,88704.80851,0,0,21
+151892,88574.06832,0,0,21
+151893,88026.53285,2.565547833,0,21
+151894,87408.8272,0,0,21
+151895,20466.2415,0,0,21
+151896,20431.39299,0,0,21
+151897,20362.73437,0,0,21
+151898,359758.7039,0,0,21
+151899,20291.47114,0,0,21
+151900,20250.36763,0,0,21
+151901,20172.70839,0,0,21
+151902,20165.82026,0,0,21
+151903,20086.79918,0,0,21
+151904,20059.63911,0,0,21
+151905,269532.1827,0,0,21
+151906,27676.97571,0,0,21
+151907,60742.30941,0,0,21
+151908,94093.60766,0,692200.8957,21
+151909,89740.29419,0,0,21
+151910,81308.54212,0,0,21
+151911,84070.52234,0,0,21
+151912,83524.40322,0,0,21
+151913,83741.11362,0,0,21
+151914,63970.65341,0,0,21
+151915,63735.57188,0,0,21
+151916,64580.19166,0,0,21
+151917,130654.7226,368241.0974,0,21
+151918,75348.46166,0,0,21
+151919,72606.79342,0,0,21
+151920,91452.51197,0,0,21
+151921,82452.50516,0,0,21
+151922,83187.5374,0,0,21
+151923,82775.12314,0,0,21
+151924,82654.59774,0,0,21
+151925,81826.18641,0,0,21
+151926,81862.91609,0,0,21
+151927,81464.43421,0,0,21
+151928,80882.72001,0,0,21
+151929,80704.10975,0,0,21
+151930,80440.91251,0,0,21
+151931,79863.46294,0,0,21
+151932,79581.74313,0,0,21
+151933,79319.83175,0,0,21
+151934,79010.87227,0,0,21
+151935,17833.66063,0,0,21
+151936,17745.0104,0,0,21
+151937,17658.71086,0,0,21
+151938,17536.19083,0,0,21
+151939,17410.42735,0,0,21
+151940,17322.63352,0,0,21
+151941,356666.4469,0,0,21
+151942,17089.31556,0,0,21
+151943,16979.4728,0,0,21
+151944,16888.50232,0,0,21
+151945,16744.0962,0,687391.5624,21
+151946,16668.30877,0,0,21
+151947,0,0,0,21
+151948,0,0,0,21
+151949,0,0,0,21
+151950,52805.14615,0,0,21
+151951,6616.973297,0,0,21
+151952,10283.89721,0,0,21
+151953,20282.39448,0,0,21
+151954,15206.52196,0,0,21
+151955,15632.60942,0,0,21
+151956,15534.74332,0,0,21
+151957,15398.83034,368272.2548,0,21
+151958,15301.67967,0,0,21
+151959,15100.54487,0,0,21
+151960,14938.90645,0,0,21
+151961,14817.94126,0,0,21
+151962,14728.65726,0,0,21
+151963,14565.88965,0,0,21
+151964,14472.16914,0,0,21
+151965,14339.75914,0,0,21
+151966,14184.53481,0,0,21
+151967,14111.40583,0,0,21
+151968,13963.09305,0,0,21
+151969,13829.65844,0,0,21
+151970,13717.79378,0,0,21
+151971,13615.05645,0,0,21
+151972,13444.38297,0,0,21
+151973,13352.84839,0,0,21
+151974,13245.27831,0,0,21
+151975,13104.21639,0,0,21
+151976,12982.34015,0,0,21
+151977,12878.27902,0,0,21
+151978,12749.33566,0,0,21
+151979,12620.93804,0,0,21
+151980,0,0,0,21
+151981,0,0,0,21
+151982,0,0,683474.5,21
+151983,41526.15841,0,0,21
+151984,341385.5582,0,0,21
+151985,10428.46718,0,0,21
+151986,14861.72332,0,0,21
+151987,12049.63763,0,0,21
+151988,12372.57505,0,0,21
+151989,12372.1431,0,0,21
+151990,12391.03079,0,0,21
+151991,12351.09944,0,0,21
+151992,12369.93148,0,0,21
+151993,12391.05211,0,0,21
+151994,12327.27968,0,0,21
+151995,12391.37376,0,0,21
+151996,12327.29434,0,0,21
+151997,12367.38671,368296.6693,0,21
+151998,12306.08312,0,0,21
+151999,12346.119,0,0,21
+152000,12324.7061,0,0,21
+152001,12303.37368,0,0,21
+152002,12303.40463,0,0,21
+152003,12281.99185,0,0,21
+152004,12278.7973,0,0,21
+152005,12260.55251,0,0,21
+152006,12235.61011,0,0,21
+152007,12257.24993,0,0,21
+152008,12152.41897,0,0,21
+152009,12232.24342,0,0,21
+152010,12148.52248,0,0,21
+152011,12148.53126,0,0,21
+152012,12144.90711,0,0,21
+152013,0,0,0,21
+152014,0,0,0,21
+152015,0,0,0,21
+152016,39752.33375,0,0,21
+152017,2465.993373,0,0,21
+152018,10117.33307,0,0,21
+152019,14428.82502,0,691858.6878,21
+152020,11706.44725,0,0,21
+152021,12006.70112,0,0,21
+152022,11975.56249,0,0,21
+152023,11949.78219,0,0,21
+152024,11966.13092,0,0,21
+152025,11902.04178,0,0,21
+152026,351406.3882,0,0,21
+152027,11894.95556,0,0,21
+152028,11825.04433,0,0,21
+152029,11843.11826,0,0,21
+152030,11796.15797,0,0,21
+152031,11769.88141,0,0,21
+152032,11764.16805,0,0,21
+152033,11740.36329,0,0,21
+152034,11692.51694,0,0,21
+152035,11683.23693,0,0,21
+152036,11665.27721,368301.1552,0,21
+152037,11628.35423,0,0,21
+152038,11649.19396,0,0,21
+152039,11557.73018,0,0,21
+152040,11593.54597,0,0,21
+152041,11615.93314,0,0,21
+152042,11671.72794,0,0,21
+152043,11496.55371,0,0,21
+152044,11537.24182,0,0,21
+152045,11447.46797,0,0,21
+152046,0,0,0,21
+152047,0,0,0,21
+152048,0,0,0,21
+152049,34576.90452,0,0,21
+152050,3975.005359,0,0,21
+152051,8137.211799,0,0,21
+152052,13322.80284,0,0,21
+152053,11275.46367,0,0,21
+152054,11193.7108,0,0,21
+152055,11198.54089,0,690158.7468,21
+152056,11189.97322,0,0,21
+152057,11182.53919,0,0,21
+152058,11107.60838,0,0,21
+152059,11085.97108,0,0,21
+152060,11057.73632,0,0,21
+152061,11048.76798,0,0,21
+152062,10986.72854,0,0,21
+152063,10948.7937,0,0,21
+152064,10947.41371,0,0,21
+152065,10923.3587,0,0,21
+152066,10829.39049,0,0,21
+152067,10886.02068,0,0,21
+152068,350351.0349,0,0,21
+152069,10821.0347,0,0,21
+152070,10777.11839,0,0,21
+152071,10714.23597,0,0,21
+152072,10721.4676,0,0,21
+152073,10701.56862,0,0,21
+152074,10634.04697,0,0,21
+152075,10628.2378,368318.3198,0,21
+152076,10567.34603,0,0,21
+152077,10590.99811,0,0,21
+152078,10509.61295,0,0,21
+152079,0,0,0,21
+152080,0,0,0,21
+152081,0,0,0,21
+152082,0,0,0,21
+152083,35701.38182,0,0,21
+152084,5024.944059,0,0,21
+152085,5087.934415,7.786494244,0,21
+152086,14082.36636,0,0,21
+152087,9894.337235,7.667507367,0,21
+152088,10424.50522,0,0,21
+152089,10418.9961,3.347153806,0,21
+152090,10455.94138,0,0,21
+152091,10419.64499,0,688996.8745,21
+152092,10485.56243,0,0,21
+152093,10471.47392,0,0,21
+152094,10504.40396,0,0,21
+152095,10481.67996,0,0,21
+152096,10504.37452,0,0,21
+152097,10541.09876,0,0,21
+152098,10554.26404,0,0,21
+152099,10511.69494,0,0,21
+152100,10612.06242,0,0,21
+152101,10562.23482,0,0,21
+152102,10559.48951,0,0,21
+152103,10579.54652,0,0,21
+152104,10599.54681,0,0,21
+152105,10567.94356,0,0,21
+152106,10616.43559,0,0,21
+152107,350135.368,0,0,21
+152108,10623.13615,0,0,21
+152109,10592.30225,0,0,21
+152110,10615.41479,0,0,21
+152111,10608.38904,0,0,21
+152112,10627.95159,0,0,21
+152113,0,0,0,21
+152114,0,368332.0712,0,21
+152115,0,0,0,21
+152116,0,0,0,21
+152117,38969.31744,0,0,21
+152118,2521.925347,0,0,21
+152119,6712.111783,0,0,21
+152120,14119.15759,0,0,21
+152121,10243.57789,0,0,21
+152122,10684.73389,0,0,21
+152123,10713.08981,0,0,21
+152124,10732.09101,0,0,21
+152125,10708.66055,0,0,21
+152126,10685.03922,0,0,21
+152127,10746.42687,0,678402.1986,21
+152128,10741.59506,0,0,21
+152129,10717.86592,0,0,21
+152130,10741.46315,0,0,21
+152131,10755.34127,0,0,21
+152132,10712.36937,0,0,21
+152133,10762.10988,0,0,21
+152134,10749.55865,0,0,21
+152135,10726.02133,0,0,21
+152136,10744.18144,0,0,21
+152137,10762.66041,0,0,21
+152138,10720.18677,0,0,21
+152139,10757.10118,0,0,21
+152140,10756.49977,0,0,21
+152141,10714.02653,0,0,21
+152142,10788.04825,0,0,21
+152143,10713.37134,0,0,21
+152144,10763.13764,0,0,21
+152145,10744.87945,0,0,21
+152146,350279.5922,0,0,21
+152147,0,0,0,21
+152148,0,0,0,21
+152149,0,0,0,21
+152150,0,0,0,21
+152151,41298.30225,0,0,21
+152152,127.786837,0,0,21
+152153,7616.661365,368335.6074,0,21
+152154,14184.90253,0,0,21
+152155,10261.02249,0,0,21
+152156,10723.37658,87430.36887,0,21
+152157,10821.99811,0,0,21
+152158,10716.8214,0,0,21
+152159,10753.91071,0,0,21
+152160,10796.35562,0,0,21
+152161,10740.362,0,0,21
+152162,10868.90665,0,0,21
+152163,10911.08919,0,676203.4681,21
+152164,10935.6098,0,0,21
+152165,11007.44294,0,0,21
+152166,11061.53359,0,0,21
+152167,11061.52949,0,0,21
+152168,11181.25221,0,0,21
+152169,11174.44834,0,0,21
+152170,11258.91407,0,0,21
+152171,11288.21167,0,0,21
+152172,11370.66434,0,0,21
+152173,11389.44671,0,0,21
+152174,11452.69408,0,0,21
+152175,11500.38504,0,0,21
+152176,11559.85941,0,0,21
+152177,11617.42564,0,0,21
+152178,11610.56895,0,0,21
+152179,11728.76897,0,0,21
+152180,11769.0648,87417.68095,0,21
+152181,0,0,0,21
+152182,0,0,0,21
+152183,0,0,0,21
+152184,0,0,0,21
+152185,386663.1112,0,0,21
+152186,2150.765951,0,0,21
+152187,5991.052473,0,0,21
+152188,17243.59219,0,0,21
+152189,11460.34023,0,0,21
+152190,12325.37918,0,0,21
+152191,12419.4563,0,0,21
+152192,12428.80543,368323.1021,0,21
+152193,12510.53153,0,0,21
+152194,12558.46519,0,0,21
+152195,12633.06029,0,0,21
+152196,12628.69882,0,0,21
+152197,12777.23139,0,0,21
+152198,12734.63192,0,0,21
+152199,12869.0062,0,674533.5425,21
+152200,12880.24493,0,0,21
+152201,12949.27386,0,0,21
+152202,13026.94406,0,0,21
+152203,13053.54785,0,0,21
+152204,13113.12986,0,0,21
+152205,13216.61221,0,0,21
+152206,13231.90427,0,0,21
+152207,13253.78124,0,0,21
+152208,13304.30271,0,0,21
+152209,13375.84234,0,0,21
+152210,13426.15135,0,0,21
+152211,13458.77754,0,0,21
+152212,13568.65543,0,0,21
+152213,13594.58276,0,0,21
+152214,13702.1514,0,0,21
+152215,0,0,0,21
+152216,0,0,0,21
+152217,0,0,0,21
+152218,50228.19293,0,0,21
+152219,2541.705437,0,0,21
+152220,9151.231482,0,0,21
+152221,18660.40067,0,0,21
+152222,267107.4552,0,0,21
+152223,14237.49427,0,0,21
+152224,361894.9994,0,0,21
+152225,70527.23591,0,0,21
+152226,73468.0229,0,0,21
+152227,57825.4461,0,0,21
+152228,62656.16877,0,0,21
+152229,62589.30953,0,0,21
+152230,62412.27956,0,0,21
+152231,62617.65278,0,0,21
+152232,62311.54396,368309.0962,0,21
+152233,62523.82119,0,0,21
+152234,62363.62268,0,0,21
+152235,62544.40242,0,673880.2851,21
+152236,62429.61492,0,0,21
+152237,62572.41513,0,0,21
+152238,62593.30244,0,0,21
+152239,62617.36456,0,0,21
+152240,62685.65841,0,0,21
+152241,62645.16198,0,0,21
+152242,62839.14594,0,0,21
+152243,62842.72636,0,0,21
+152244,62845.93735,0,0,21
+152245,63073.69892,0,0,21
+152246,62723.3386,0,0,21
+152247,62600.51822,0,0,21
+152248,48211.56893,0,0,21
+152249,48261.38627,0,0,21
+152250,48506.77341,0,0,21
+152251,102498.7051,0,0,21
+152252,3185.424614,0,0,21
+152253,7910.218581,0,0,21
+152254,20060.79303,0,0,21
+152255,13679.86885,0,0,21
+152256,14631.69281,0,0,21
+152257,14606.71353,0,0,21
+152258,14650.81189,0,0,21
+152259,14585.5825,0,0,21
+152260,14647.31125,0,0,21
+152261,14612.67305,0,0,21
+152262,14656.67102,0,0,21
+152263,14656.66576,0,0,21
+152264,354074.434,0,0,21
+152265,14618.45846,0,0,21
+152266,14662.35657,0,0,21
+152267,291531.143,0,0,21
+152268,14662.34639,0,0,21
+152269,14581.30513,0,0,21
+152270,74732.51785,368326.5652,0,21
+152271,75892.94909,0,674130.126,21
+152272,58623.95843,0,0,21
+152273,63602.88157,0,0,21
+152274,63797.66465,0,0,21
+152275,63307.62528,0,0,21
+152276,63531.14542,87463.37327,0,21
+152277,63328.56986,0,0,21
+152278,63393.92622,0,0,21
+152279,63226.57606,0,0,21
+152280,63231.1687,0,0,21
+152281,48793.9685,0,0,21
+152282,49425.33885,0,0,21
+152283,49503.50914,0,0,21
+152284,106387.0125,0,0,21
+152285,53133.97699,0,0,21
+152286,58391.09263,0,0,21
+152287,73172.29067,0,0,21
+152288,68740.32138,0,0,21
+152289,69291.36062,0,0,21
+152290,70736.23013,0,0,21
+152291,71524.17452,0,0,21
+152292,72169.78301,0,0,21
+152293,73054.62775,0,0,21
+152294,74239.0763,0,0,21
+152295,74662.13723,0,0,21
+152296,75724.16116,0,0,21
+152297,15724.96739,0,0,21
+152298,15774.56523,0,0,21
+152299,15847.6664,0,0,21
+152300,15929.29349,0,0,21
+152301,15997.82691,0,0,21
+152302,16054.6674,0,0,21
+152303,16094.8359,0,0,21
+152304,355674.0572,0,0,21
+152305,16286.06971,0,0,21
+152306,319277.6171,0,0,21
+152307,16448.32096,0,676496.7784,21
+152308,29163.60573,368319.3977,0,21
+152309,124891.5702,0,0,21
+152310,84889.98057,0,0,21
+152311,87342.71011,0,0,21
+152312,89668.45977,0,0,21
+152313,90404.78999,0,0,21
+152314,74463.23949,87462.84855,0,21
+152315,74948.50299,0,0,21
+152316,75683.16182,0,0,21
+152317,138904.9356,0,0,21
+152318,85441.45178,0,0,21
+152319,86398.36988,0,0,21
+152320,101501.3074,0,0,21
+152321,95613.6659,0,0,21
+152322,97371.10441,0,0,21
+152323,97763.62879,0,0,21
+152324,98923.26434,0,0,21
+152325,99353.62175,0,0,21
+152326,100193.4558,0,0,21
+152327,100877.8967,0,0,21
+152328,101650.3583,0,0,21
+152329,102483.7151,0,0,21
+152330,103057.8119,0,0,21
+152331,103944.6699,0,0,21
+152332,104575.7575,0,0,21
+152333,107142.0308,0,0,21
+152334,108787.3915,0,0,21
+152335,109999.6727,0,0,21
+152336,19366.45537,0,0,21
+152337,19691.90125,0,0,21
+152338,19890.95322,0,0,21
+152339,19978.11693,0,0,21
+152340,20195.66682,0,0,21
+152341,410356.441,0,0,21
+152342,25541.34879,0,0,21
+152343,66131.92063,0,676836.4702,21
+152344,493909.5695,0,0,21
+152345,108770.1108,186.4042477,0,21
+152346,113689.2677,368305.0624,0,21
+152347,94027.59752,0,0,21
+152348,93879.10143,0,0,21
+152349,93548.14657,0,0,21
+152350,158913.8514,0,0,21
+152351,112166.9645,0,0,21
+152352,100585.4495,2.165109163,0,21
+152353,120284.2066,0,0,21
+152354,112438.6299,0,0,21
+152355,113118.6126,0,0,21
+152356,112792.7116,0,0,21
+152357,112834.7678,0,0,21
+152358,112149.7453,0,0,21
+152359,112586.8241,0,0,21
+152360,111883.6493,0,0,21
+152361,111942.8978,0,0,21
+152362,111668.2984,0,0,21
+152363,111327.2445,0,0,21
+152364,111331.8204,0,0,21
+152365,110918.7715,7.642689854,0,21
+152366,110865.4659,0,0,21
+152367,110556.6681,0,0,21
+152368,110210.7282,356.2302014,0,21
+152369,110303.7708,0,0,21
+152370,109683.3097,0,0,21
+152371,20385.94717,0,0,21
+152372,20303.32649,0,0,21
+152373,20357.72746,2.849571964,0,21
+152374,20280.5175,0,0,21
+152375,20288.66626,0,0,21
+152376,399674.3904,0,0,21
+152377,20238.68917,0,0,21
+152378,48694.20246,0,0,21
+152379,156273.9935,0,675128.9544,21
+152380,78448.18197,0,0,21
+152381,86939.16792,0,0,21
+152382,86247.64108,0,0,21
+152383,154391.9009,0,0,21
+152384,438701.7216,368291.726,0,21
+152385,95883.60069,3.02376182,0,21
+152386,111463.8144,0,0,21
+152387,104508.5997,4.03504438,0,21
+152388,104764.3742,0,0,21
+152389,104511.3532,3.755592331,0,21
+152390,103971.4838,0,0,21
+152391,103972.4449,2.855165378,0,21
+152392,103138.391,0,0,21
+152393,103005.6198,0,0,21
+152394,102824.9075,0,0,21
+152395,102167.9855,0,0,21
+152396,101711.0172,0,0,21
+152397,101829.9054,0,0,21
+152398,101063.7865,0,0,21
+152399,100672.4168,0,0,21
+152400,100456.911,0,0,21
+152401,100919.944,0,0,21
+152402,101201.8146,0,0,21
+152403,101508.5849,0,0,21
+152404,102043.4013,0,0,21
+152405,102484.1471,0,0,21
+152406,19937.36752,0,0,21
+152407,20100.23275,0,0,21
+152408,20093.97883,0,0,21
+152409,20162.46984,0,0,21
+152410,20249.44228,0,0,21
+152411,20319.99592,0,0,21
+152412,404458.4122,0,0,21
+152413,0,0,0,21
+152414,22519.96817,0,0,21
+152415,133120.0122,0,0,21
+152416,149329.1052,0,677095.1647,21
+152417,98458.5118,0,0,21
+152418,98420.39919,0,0,21
+152419,114012.2842,0,0,21
+152420,107919.2513,0,0,21
+152421,108554.4141,0,0,21
+152422,109187.7204,0,0,21
+152423,109324.2362,0,0,21
+152424,109703.0629,368292.6401,0,21
+152425,110442.3706,0,0,21
+152426,109964.8605,0,0,21
+152427,111064.8044,0,0,21
+152428,111205.6913,87495.59994,0,21
+152429,450637.3585,0,0,21
+152430,111904.4433,0,0,21
+152431,112213.597,0,0,21
+152432,112521.588,0,0,21
+152433,112735.2582,0,0,21
+152434,113201.2097,0,0,21
+152435,113654.4374,0,0,21
+152436,113915.7084,0,0,21
+152437,114092.2315,0,0,21
+152438,114691.0903,0,0,21
+152439,115070.1316,0,0,21
+152440,115121.6554,0,0,21
+152441,115616.7915,0,0,21
+152442,22147.56073,0,0,21
+152443,22305.8434,0,0,21
+152444,22311.65797,0,0,21
+152445,22311.65462,0,0,21
+152446,0,0,0,21
+152447,419827.8228,0,0,21
+152448,0,0,0,21
+152449,106176.4564,0,0,21
+152450,166822.1073,3.141855187,0,21
+152451,97578.71477,0,0,21
+152452,126424.3613,0,0,21
+152453,119537.2779,0,674342.1216,21
+152454,120381.9574,0,0,21
+152455,120556.2079,0,0,21
+152456,120963.9708,0,0,21
+152457,124829.9857,0,0,21
+152458,123615.7567,0,0,21
+152459,124589.8676,0,0,21
+152460,125342.7976,0,0,21
+152461,125269.4238,0,0,21
+152462,125900.332,0,0,21
+152463,125523.8185,0,0,21
+152464,126499.5825,368298.2466,0,21
+152465,126179.2491,0,0,21
+152466,126806.14,0,0,21
+152467,126802.3708,0,0,21
+152468,127306.6765,0,0,21
+152469,126968.2548,0,0,21
+152470,127782.2563,0,0,21
+152471,127393.8095,0,0,21
+152472,128150.6922,0,0,21
+152473,128227.8156,0,0,21
+152474,467965.0722,0,0,21
+152475,128105.6679,0,0,21
+152476,129203.5781,0,0,21
+152477,23533.23258,21250.76734,0,21
+152478,23608.5831,1045.085839,0,21
+152479,0,2107.822173,0,21
+152480,0,2655.228243,0,21
+152481,0,7163.408118,0,21
+152482,529295.1149,3969.125099,0,21
+152483,33433.88401,4791.861432,0,21
+152484,36642.26583,4811.38203,0,21
+152485,178878.5569,4864.281545,0,21
+152486,132066.8073,4872.798584,0,21
+152487,127362.0415,4911.595297,0,21
+152488,131405.6482,4958.765664,0,21
+152489,131168.6407,4972.645989,677509.6484,21
+152490,131612.9382,5052.653395,0,21
+152491,131856.5816,5080.19816,0,21
+152492,131837.269,5099.389158,0,21
+152493,132055.3344,5145.97409,0,21
+152494,132154.5119,5178.754664,0,21
+152495,132399.481,5211.465159,0,21
+152496,132564.2714,5244.105911,0,21
+152497,132803.8472,5290.273809,0,21
+152498,134011.7939,5290.274291,0,21
+152499,133676.6758,5355.163457,0,21
+152500,134371.6428,5387.505614,0,21
+152501,133805.3212,5401.010685,0,21
+152502,134869.122,5451.986175,0,21
+152503,134598.4482,5478.882745,0,21
+152504,134910.0736,373804.8933,0,21
+152505,135060.9651,5543.003946,0,21
+152506,135114.7397,5593.510831,0,21
+152507,135618.096,0,0,21
+152508,135398.0981,0,0,21
+152509,136020.927,0,0,21
+152510,136100.72,0,0,21
+152511,135767.8196,0,0,21
+152512,0,0,0,21
+152513,0,0,0,21
+152514,339369.6101,28274.35664,0,21
+152515,77202.70049,0,0,21
+152516,23329.74068,1551.193095,0,21
+152517,476960.0973,6459.618366,0,21
+152518,46822.50925,7387.853143,0,21
+152519,57175.95993,5463.717763,0,21
+152520,183666.9285,6072.60619,0,15.6
+152521,134622.1601,6218.837469,0,15.6
+152522,135749.2462,7271.773087,0,15.6
+152523,139022.1399,6756.224801,0,15.6
+152524,138701.7563,6996.09158,0,15.6
+152525,138800.7519,7154.491632,678208.0916,15.6
+152526,139527.5027,7162.531853,0,15.6
+152527,138974.8645,7319.243391,0,15.6
+152528,139540.395,7344.866394,0,15.6
+152529,139749.4444,7482.460292,0,15.6
+152530,139394.8622,7525.433489,0,15.6
+152531,140263.1484,7644.3923,0,15.6
+152532,139747.9165,7729.718725,0,15.6
+152533,140394.8711,7779.920093,0,15.6
+152534,140196.8835,7906.957267,0,15.6
+152535,140386.4711,7914.584367,0,15.6
+152536,140860.0175,8107.83678,0,15.6
+152537,140724.9702,8073.008951,0,15.6
+152538,140914.643,8240.627706,0,15.6
+152539,140986.3122,8289.380298,0,15.6
+152540,141137.4878,8447.504335,0,15.6
+152541,141481.5785,8687.455687,0,15.6
+152542,141501.2924,377021.6342,0,15.6
+152543,141642.2915,8862.327265,0,15.6
+152544,141767.7379,0,0,15.6
+152545,114398.6742,0,0,15.6
+152546,114779.1574,0,0,15.6
+152547,0,87364.73823,0,15.6
+152548,77988.15351,0,0,15.6
+152549,24433.56418,33615.22301,0,15.6
+152550,9402.163901,306.288925,0,15.6
+152551,32533.39906,4457.969351,0,15.6
+152552,506004.5715,11927.7712,0,15.6
+152553,54014.38614,9654.259945,0,15.6
+152554,407707.0195,9592.672116,0,15.6
+152555,182841.2672,10299.58972,0,15.6
+152556,146679.8221,10132.77298,0,15.6
+152557,140334.4502,10380.64579,0,15.6
+152558,144428.9792,10436.59073,0,15.6
+152559,144372.4351,10572.6724,0,15.6
+152560,144396.8713,10677.15862,0,15.6
+152561,144643.0275,10766.00309,678188.0749,15.6
+152562,144569.7501,10885.23421,0,15.6
+152563,144620.3032,10976.21438,0,15.6
+152564,144842.065,11064.17705,0,15.6
+152565,144790.9383,11198.52117,0,15.6
+152566,145204.5591,11256.28267,0,15.6
+152567,145034.7335,11411.13149,0,15.6
+152568,144983.748,11441.11996,0,15.6
+152569,145401.3448,11604.27325,0,15.6
+152570,145376.5157,11663.88524,0,15.6
+152571,145590.6835,11784.04157,0,15.6
+152572,145432.4969,11875.89319,0,15.6
+152573,145700.5632,11996.69887,0,15.6
+152574,145865.0952,12041.67685,0,15.6
+152575,145905.865,12146.3836,0,15.6
+152576,145840.6171,12297.35637,0,15.6
+152577,146172.1058,12326.0666,0,15.6
+152578,117593.2738,12476.2608,0,15.6
+152579,117241.3712,0,0,15.6
+152580,117593.2488,368267.5375,0,15.6
+152581,195979.2182,0,0,15.6
+152582,25173.6211,0,0,15.6
+152583,9407.786023,41295.33003,0,15.6
+152584,36650.74587,2057.444728,0,15.6
+152585,29947.48912,8435.35643,0,15.6
+152586,28367.88947,17298.42356,0,15.6
+152587,516643.0211,12164.18193,0,15.6
+152588,65333.87248,13069.75876,0,15.6
+152589,64816.43212,13086.81558,0,15.6
+152590,182894.0214,13164.09542,0,15.6
+152591,490709.7891,13208.87563,0,15.6
+152592,141321.5303,13216.68327,0,15.6
+152593,145716.3387,13288.04142,0,15.6
+152594,145460.7239,13388.5338,0,15.6
+152595,145630.6889,13317.59029,0,15.6
+152596,144969.5172,13452.32419,678068.8699,15.6
+152597,145123.2369,13440.983,0,15.6
+152598,144997.249,13531.98058,0,15.6
+152599,144495.4961,13517.08826,0,15.6
+152600,144634.2569,13604.74439,0,15.6
+152601,144540.4685,13624.9306,0,15.6
+152602,144078.06,13689.60839,0,15.6
+152603,144054.4672,13689.31206,0,15.6
+152604,143880.8223,13767.62198,0,15.6
+152605,143937.9598,13796.61108,0,15.6
+152606,143578.7591,13816.93345,0,15.6
+152607,143296.8018,13866.79557,0,15.6
+152608,143321.3396,13903.17624,0,15.6
+152609,143195.2028,13950.9006,0,15.6
+152610,142823.8917,14010.21297,0,15.6
+152611,113618.5269,14027.95566,0,15.6
+152612,113288.0848,14057.04457,0,15.6
+152613,113365.6843,0,0,15.6
+152614,191119.7658,0,0,15.6
+152615,135941.6452,0,0,15.6
+152616,124362.6146,368254.2485,0,15.6
+152617,40374.04099,47868.44736,0,15.6
+152618,27572.45483,1905.928227,0,15.6
+152619,29453.48641,10864.40257,0,15.6
+152620,29529.26756,18280.51985,0,15.6
+152621,29310.11833,13824.99153,0,15.6
+152622,498239.43,14457.78894,0,15.6
+152623,49818.25166,101872.7547,0,15.6
+152624,70917.86435,14562.28302,0,15.6
+152625,176261.4995,14639.24753,0,15.6
+152626,144662.4175,14605.45216,0,15.6
+152627,136802.4445,14691.81685,0,15.6
+152628,480079.7007,14710.43803,0,15.6
+152629,140152.5643,14740.08816,0,15.6
+152630,140235.2218,14763.43965,0,15.6
+152631,139504.6656,14810.57948,678172.1049,15.6
+152632,140075.3097,14831.23397,0,15.6
+152633,139535.4575,14867.48354,0,15.6
+152634,139316.8923,14913.88573,0,15.6
+152635,138843.6124,14912.77583,0,15.6
+152636,139348.827,14962.43728,0,15.6
+152637,138473.6431,15009.7488,0,15.6
+152638,138824.9584,15038.62049,0,15.6
+152639,138174.1747,15023.59764,0,15.6
+152640,139248.8179,15105.28304,0,15.6
+152641,132256.9854,14678.2333,0,15.6
+152642,132811.5966,14630.43255,0,15.6
+152643,133081.7067,14760.68989,0,15.6
+152644,105246.4983,14718.03454,0,15.6
+152645,105427.2931,14706.14747,0,15.6
+152646,105958.2974,102050.1405,0,15.6
+152647,183662.7362,0,0,15.6
+152648,126048.4769,0,0,15.6
+152649,115956.8148,0,0,15.6
+152650,147422.3164,0,0,15.6
+152651,133814.153,51924.86442,0,15.6
+152652,28438.71348,369592.2098,0,15.6
+152653,28639.28683,10892.03758,0,15.6
+152654,28653.12142,19281.13897,0,15.6
+152655,28798.91775,14256.03493,0,15.6
+152656,28783.2422,14983.8298,0,15.6
+152657,481470.487,14978.60335,0,15.6
+152658,48284.35939,15047.91223,0,15.6
+152659,59610.10624,15006.18933,0,15.6
+152660,185256.4508,15044.9941,0,15.6
+152661,138009.0875,15109.38807,0,15.6
+152662,136742.2808,15052.67078,0,15.6
+152663,140193.5516,15120.1546,0,15.6
+152664,140011.9733,15128.74305,0,15.6
+152665,480404.5277,102339.0156,0,15.6
+152666,140631.4832,15175.47511,678368.6511,15.6
+152667,141589.0502,15194.77418,0,15.6
+152668,141199.5887,15181.08185,0,15.6
+152669,142228.3501,15230.68377,0,15.6
+152670,142007.8984,15233.28388,0,15.6
+152671,142622.5696,15222.08379,0,15.6
+152672,142738.3923,15282.83943,0,15.6
+152673,143477.3745,15261.51494,0,15.6
+152674,143204.1556,15334.85816,0,15.6
+152675,144175.4627,15311.02553,0,15.6
+152676,143867.7236,15312.61235,0,15.6
+152677,114790.3363,15358.37476,0,15.6
+152678,115080.8541,15348.45472,0,15.6
+152679,115183.9698,15415.8395,0,15.6
+152680,194300.6608,15362.03138,0,15.6
+152681,140049.0428,0,0,15.6
+152682,129624.9489,0,0,15.6
+152683,156949.7939,0,0,15.6
+152684,145382.075,0,0,15.6
+152685,147276.231,55987.09496,0,15.6
+152686,147502.7653,1052.635441,0,15.6
+152687,30522.2455,11008.65112,0,15.6
+152688,30458.87196,475665.3596,0,15.6
+152689,30596.91621,14883.81684,0,15.6
+152690,30644.04887,15538.50259,0,15.6
+152691,30647.21232,15646.49246,0,15.6
+152692,543690.6176,15624.36698,0,15.6
+152693,54147.73795,15648.83904,0,15.6
+152694,74192.23426,15652.26317,0,15.6
+152695,184461.5658,15703.35948,0,15.6
+152696,158508.5687,15689.17854,0,15.6
+152697,147112.4924,15676.75482,0,15.6
+152698,151792.5675,15727.00698,0,15.6
+152699,152241.4099,15725.75057,0,15.6
+152700,152884.5949,15727.00496,0,15.6
+152701,152205.0858,15842.5084,678538.0256,15.6
+152702,492455.4963,15819.18188,0,15.6
+152703,152791.7827,15957.64219,0,15.6
+152704,152853.7265,15957.64115,0,15.6
+152705,153023.1835,16059.11118,0,15.6
+152706,153410.3447,16114.22013,0,15.6
+152707,153137.1325,16137.35632,0,15.6
+152708,153357.4908,16215.23447,0,15.6
+152709,153849.3766,16286.659,0,15.6
+152710,121772.3718,16307.27645,0,15.6
+152711,122581.6427,16417.11963,0,15.6
+152712,122366.5713,16443.88782,0,15.6
+152713,202229.7626,16535.35458,0,15.6
+152714,150245.5792,16534.18182,0,15.6
+152715,141232.2937,0,0,15.6
+152716,161822.6579,174.1804132,0,15.6
+152717,154134.9641,0,0,15.6
+152718,154482.6424,56110.69094,0,15.6
+152719,155123.2095,770.3775313,0,15.6
+152720,154968.3953,13723.46467,0,15.6
+152721,155197.3767,21231.57855,0,15.6
+152722,31889.52988,16297.2768,0,15.6
+152723,32009.67113,17118.06673,0,15.6
+152724,31982.50304,385405.0465,0,15.6
+152725,32009.66401,17242.80759,0,15.6
+152726,32009.49027,17461.09285,0,15.6
+152727,579452.1933,17365.92708,0,15.6
+152728,62002.90659,17407.70588,0,15.6
+152729,73307.65803,17491.08006,0,15.6
+152730,186224.1321,17491.07892,0,15.6
+152731,168779.3788,17658.23842,0,15.6
+152732,150697.6733,17619.01778,0,15.6
+152733,156614.1892,17687.51288,0,15.6
+152734,157122.9571,17773.32284,0,15.6
+152735,157165.8653,17859.76526,0,15.6
+152736,157045.8656,17858.99684,678527.1602,15.6
+152737,157468.9975,17951.61221,0,15.6
+152738,157029.3532,18012.28495,0,15.6
+152739,496950.0491,18024.26611,0,15.6
+152740,157405.888,18308.19402,0,15.6
+152741,157660.0626,18145.87551,0,15.6
+152742,157703.3241,18243.07606,0,15.6
+152743,125415.2244,18289.20307,0,15.6
+152744,125462.945,18315.52528,0,15.6
+152745,198955.3453,18422.99545,0,15.6
+152746,145440.5725,18458.14307,0,15.6
+152747,155597.9209,18558.65114,0,15.6
+152748,161506.313,0,0,15.6
+152749,158241.2793,0,0,15.6
+152750,158364.3408,151.7847637,0,15.6
+152751,158743.6641,63904.63691,0,15.6
+152752,159064.7058,1407.681748,0,15.6
+152753,158870.1636,15648.21298,0,15.6
+152754,159026.8423,23251.73126,0,15.6
+152755,159118.5483,18334.6471,0,15.6
+152756,159265.1965,19075.12714,0,15.6
+152757,32748.86646,19119.91646,0,15.6
+152758,32909.04423,19226.38297,0,15.6
+152759,32758.86249,19214.10695,0,15.6
+152760,32974.32126,387657.7463,0,15.6
+152761,32988.82939,19297.53121,0,15.6
+152762,602122.5528,19285.27682,0,15.6
+152763,65863.84153,19331.1578,0,15.6
+152764,73200.14037,19318.91697,0,15.6
+152765,195573.5861,19310.63812,0,15.6
+152766,171290.3911,19305.79343,0,15.6
+152767,155994.5093,19331.15583,0,15.6
+152768,161333.4477,19344.94498,0,15.6
+152769,161290.2208,19279.67256,0,15.6
+152770,161664.715,19344.94415,0,15.6
+152771,161354.432,19347.76284,678476.3523,15.6
+152772,161506.405,19285.27231,0,15.6
+152773,161421.7574,19355.58277,0,15.6
+152774,161501.8736,19331.92936,0,15.6
+152775,128365.524,19389.89037,0,15.6
+152776,467978.5298,19305.78969,0,15.6
+152777,201694.7946,19323.43782,0,15.6
+152778,152029.8194,19340.0974,0,15.6
+152779,157491.4403,19306.34527,0,15.6
+152780,164833.3295,19357.16434,0,15.6
+152781,161734.2699,0,0,15.6
+152782,161748.6583,0,0,15.6
+152783,161790.6605,0,0,15.6
+152784,162069.0451,66669.72811,0,15.6
+152785,161876.8437,1981.642303,0,15.6
+152786,161894.1431,14970.79308,0,15.6
+152787,162031.0239,24293.89283,0,15.6
+152788,162016.0114,18614.02334,0,15.6
+152789,162249.7554,19319.57852,0,15.6
+152790,161853.5541,19582.99056,0,15.6
+152791,162299.9028,19344.9411,0,15.6
+152792,33459.02946,19411.25633,0,15.6
+152793,33555.34089,19318.55104,0,15.6
+152794,33473.46952,19378.22474,0,15.6
+152795,33581.71614,19352.76832,0,15.6
+152796,33555.32942,387620.9347,0,15.6
+152797,608603.1517,19356.55918,0,15.6
+152798,65303.75711,19348.85783,0,15.6
+152799,74456.69448,19356.55936,0,15.6
+152800,204073.6624,19352.7687,0,15.6
+152801,168937.2965,19306.64775,0,15.6
+152802,158659.2489,19377.13022,0,15.6
+152803,163242.1329,19335.07414,0,15.6
+152804,162867.2027,19327.21869,0,15.6
+152805,163138.9065,19352.96421,0,15.6
+152806,163364.6109,19450.6011,678104.2432,15.6
+152807,128995.0326,19360.06479,0,15.6
+152808,129482.9586,19332.2037,0,15.6
+152809,203433.8392,19281.00941,0,15.6
+152810,155209.7438,19331.01751,0,15.6
+152811,157593.5868,19340.78455,0,15.6
+152812,166908.7479,19281.01407,0,15.6
+152813,502379.0127,19331.02215,0,15.6
+152814,163290.4297,0,0,15.6
+152815,163353.8538,0,0,15.6
+152816,163355.6412,0,0,15.6
+152817,163364.5961,66881.46578,0,15.6
+152818,163214.7208,1388.064211,0,15.6
+152819,163597.261,15122.52752,0,15.6
+152820,163312.9254,24233.14257,0,15.6
+152821,1038143.557,1037096.851,0,15.6
+152822,1028757.668,450344.6867,0,15.6
+152823,553287.3689,231169.7283,0,15.6
+152824,555000.6755,276583.3847,0,15.6
+152825,398069.4362,296326.168,0,15.6
+152826,459061.9579,288525.29,0,15.6
+152827,101701.2052,274714.2394,0,15.6
+152828,98911.79662,275544.0412,0,15.6
+152829,843811.5682,274740.6025,0,15.6
+152830,429472.8073,273863.0259,0,15.6
+152831,358212.4891,273533.6839,0,15.6
+152832,422647.7344,640240.9865,0,15.6
+152833,413926.9437,271843.4834,0,15.6
+152834,402819.0005,270877.7528,0,15.6
+152835,400142.7384,270700.6649,0,15.6
+152836,397652.9928,269485.8583,0,15.6
+152837,395088.21,269205.7564,0,15.6
+152838,392494.828,268786.8575,0,15.6
+152839,298698.2381,268094.1664,0,15.6
+152840,297003.2725,267618.4187,0,15.6
+152841,504371.818,266852.8997,677229.2152,15.6
+152842,360671.2708,267032.1498,0,15.6
+152843,392633.0292,265867.9345,0,15.6
+152844,378251.1128,265639.3427,0,15.6
+152845,377075.5356,265590.0791,0,15.6
+152846,375972.3932,264704.1888,0,15.6
+152847,372668.4598,200330.0668,0,15.6
+152848,370063.8375,200060.9838,0,15.6
+152849,368603.4328,342758.6939,0,15.6
+152850,705547.0736,238016.4237,0,15.6
+152851,364442.8413,66018.43313,0,15.6
+152852,362235.7498,65036.21226,0,15.6
+152853,360722.1797,63979.91503,0,15.6
+152854,358270.6461,63339.26663,0,15.6
+152855,356443.4421,619125.3964,0,15.6
+152856,355000.6067,142316.6981,0,15.6
+152857,352586.18,236879.9694,0,15.6
+152858,351137.859,290870.3513,0,15.6
+152859,81973.73422,257411.76,0,15.6
+152860,81694.0508,260213.5472,0,15.6
+152861,81326.4557,260207.6463,0,15.6
+152862,814850.1421,259474.5829,0,15.6
+152863,366945.7222,259325.9964,0,15.6
+152864,218868.549,258924.3783,0,15.6
+152865,395361.8795,258934.9997,0,15.6
+152866,336683.0288,258204.6509,0,15.6
+152867,336010.1333,257870.2841,0,15.6
+152868,333803.0137,626408.1034,0,15.6
+152869,332347.3526,257044.3412,0,15.6
+152870,330441.7664,257472.0546,0,15.6
+152871,250818.3168,256902.275,0,15.6
+152872,249902.2437,256335.2246,0,15.6
+152873,437181.8264,256924.9274,0,15.6
+152874,298522.339,255798.9755,0,15.6
+152875,323642.2932,255872.1635,0,15.6
+152876,320930.0326,255755.2943,675792.7847,15.6
+152877,319810.1044,254911.9298,0,15.6
+152878,316889.2562,255622.3041,0,15.6
+152879,314187.414,194716.2287,0,15.6
+152880,311863.4007,194446.7304,0,17.8
+152881,2268137.335,1880320.058,0,17.8
+152882,2207790.176,1238776.162,0,17.8
+152883,1991893.611,413107.1262,0,17.8
+152884,1262722.938,672863.5481,0,17.8
+152885,839317.2784,164796.8731,0,17.8
+152886,1254343.077,137613.5004,0,17.8
+152887,1321180.887,1191815.891,0,17.8
+152888,1019353.732,383048.0856,0,17.8
+152889,993458.304,641114.4834,0,17.8
+152890,960931.0044,526428.5384,0,17.8
+152891,971701.1899,572286.4256,0,17.8
+152892,162145.2015,551454.3999,0,17.8
+152893,162475.0057,616713.6338,0,17.8
+152894,1424538.296,589036.1583,0,17.8
+152895,955301.7358,590220.04,0,17.8
+152896,998581.4225,591450.5997,0,17.8
+152897,967412.8224,592059.3852,0,17.8
+152898,957706.496,590504.7383,0,17.8
+152899,908691.1863,589662.0039,0,17.8
+152900,933904.6782,588926.8159,0,17.8
+152901,916345.2924,587909.7162,0,17.8
+152902,913051.216,587641.8156,0,17.8
+152903,769672.4694,586523.6646,0,17.8
+152904,973780.436,955089.8781,0,17.8
+152905,926020.5001,585910.8094,0,17.8
+152906,879593.4544,584825.0152,0,17.8
+152907,903801.3508,585149.6425,0,17.8
+152908,889812.7833,584048.9817,0,17.8
+152909,888772.9076,584210.402,0,17.8
+152910,884943.5617,583291.3265,0,17.8
+152911,868915.2255,449636.6448,674397.4658,17.8
+152912,862986.8546,449427.3825,0,17.8
+152913,860128.5808,683980.466,0,17.8
+152914,859615.663,581220.9407,0,17.8
+152915,890890.0604,543187.6447,0,17.8
+152916,859324.8743,582648.7343,0,17.8
+152917,862969.3618,121470.9853,0,17.8
+152918,863310.9809,116579.6365,0,17.8
+152919,858646.4604,1027512.405,0,17.8
+152920,855958.2304,372579.4285,0,17.8
+152921,855082.7697,547479.0725,0,17.8
+152922,851114.7292,501518.2057,0,17.8
+152923,848435.8711,553076.9077,0,17.8
+152924,481773.0428,602008.9187,0,17.8
+152925,142779.3253,573658.7866,0,17.8
+152926,1281787.796,579240.4192,0,17.8
+152927,874994.7956,581261.3151,0,17.8
+152928,909647.1499,581873.8944,0,17.8
+152929,827378.6719,581147.3751,0,17.8
+152930,838784.3784,581231.813,0,17.8
+152931,846423.5134,582072.5342,0,17.8
+152932,833571.6853,581231.3634,0,17.8
+152933,831617.8228,581589.9955,0,17.8
+152934,706732.6581,581463.054,0,17.8
+152935,703331.5937,581917.4949,0,17.8
+152936,911783.8787,581172.0306,0,17.8
+152937,899835.2486,582304.3265,0,17.8
+152938,783489.6478,581498.6374,0,17.8
+152939,844784.4709,581991.4412,0,17.8
+152940,819195.6476,950840.4285,0,20
+152941,2297301.035,2597204.872,29085.08805,20
+152942,2131322.758,1713004.794,4645.304337,20
+152943,1049208.575,693865.0047,7844.684396,20
+152944,1200048.548,549700.0098,9301.716215,20
+152945,1292641.992,827612.0647,12761.74462,20
+152946,1170077.139,921432.2121,14396.6396,20
+152947,1192263.67,768760.7925,35567.76661,20
+152948,1178001.786,802132.6686,21784.11607,20
+152949,1172083.988,804115.3383,41195.93412,20
+152950,1170030.486,798328.0886,35242.43344,20
+152951,1164119.08,797138.542,36890.51062,20
+152952,1157584.395,794618.8667,37953.69032,20
+152953,1146277.53,791697.951,38719.30219,20
+152954,1149697.66,790925.1894,44086.2291,20
+152955,1141778.121,787560.214,44381.50322,20
+152956,1139248.472,785641.7089,44811.45295,20
+152957,1135076.828,785256.7867,46025.84853,20
+152958,1132270.882,781691.3986,46875.26741,20
+152959,1130587.034,781604.8129,47692.15945,20
+152960,1124652.118,778688.1292,48764.30474,20
+152961,1121370.99,776288.1583,49232.32167,20
+152962,1122877.248,774862.1196,50485.43657,20
+152963,1114846.487,772640.6644,51082.87751,20
+152964,1115805.496,770703.8079,51810.54104,20
+152965,1111375.284,768448.7927,52689.72276,20
+152966,1109881.404,767095.2768,53695.07138,20
+152967,1106738.946,768256.6785,54192.67799,20
+152968,1103767.884,758314.4768,55215.64609,20
+152969,1104609.027,758502.5572,55912.06235,20
+152970,1101872.533,756332.196,56552.82913,20
+152971,1097493.03,752828.1437,57792.39878,20
+152972,1097919.007,752019.2236,57959.56188,20
+152973,1094996.335,749275.0059,59247.73984,20
+152974,1093869.322,748084.4999,59777.51442,20
+152975,1090141.277,744229.3554,60578.2178,20
+152976,1087907.133,743533.0269,61288.41875,20
+152977,1082435.691,742672.2125,62225.76138,20
+152978,1080678.359,737622.9703,62743.21101,20
+152979,1077877.093,738450.1315,63768.70925,20
+152980,1068802.582,734587.9743,64199.52264,20
+152981,1064121.381,735198.2141,66725.93962,20
+152982,1061120.887,731005.9454,68382.59991,20
+152983,1060244.41,732212.7902,68448.89065,20
+152984,1054771.959,726252.767,70151.32347,20
+152985,1052407.663,728608.7773,70629.3684,20
+152986,1050314.498,723477.092,72324.596,20
+152987,1046897.589,723935.4367,72878.36999,20
+152988,1044331.729,721421.869,73998.81204,20
+152989,1041625.745,717608.0116,74995.43419,20
+152990,1038751.8,718463.618,76081.14431,20
+152991,1035459.651,715946.7337,77141.11152,20
+152992,1034254.378,713898.1065,77801.16493,20
+152993,1029207.376,710921.5887,79135.53135,20
+152994,1029505.082,711265.449,80006.82743,20
+152995,1024473.607,707358.4357,80859.98385,20
+152996,1022600.692,708320.683,82068.52731,20
+152997,1019300.693,703139.8219,83133.73278,20
+152998,1017831.365,704644.858,83656.44518,20
+152999,1012062.721,700117.9909,85305.56427,20
+153000,1011616.476,700324.6844,85741.88542,21
+153001,1493340.644,988618.5694,75362.6706,21
+153002,1482273.061,980314.4021,73803.82189,21
+153003,1480813.344,974677.9711,74326.06784,21
+153004,1473198.801,970512.3102,74280.98842,21
+153005,1470086.859,966182.8111,74442.23493,21
+153006,1465628.981,960390.5983,75156.59409,21
+153007,1461666.409,956541.9811,74722.99028,21
+153008,1459246.231,952352.9208,75279.6933,21
+153009,1452715.016,946486.6859,75410.86196,21
+153010,1450603.479,943569.6947,73057.71181,21
+153011,1446035.709,938775.5864,72355.65068,21
+153012,1442554.689,934192.4478,72911.16789,21
+153013,1438884.075,929406.5427,62890.27856,21
+153014,1435339.95,924938.5413,61225.29679,21
+153015,1430751.225,921109.3963,59909.44735,21
+153016,1428540.018,917943.4539,59396.74328,21
+153017,1424126.097,912049.1167,58439.76657,21
+153018,1419280.573,910206.9825,57629.56091,21
+153019,1417729.387,904220.494,56753.32345,21
+153020,1413614.636,900396.232,56019.62211,21
+153021,1408541.763,898097.603,55314.40876,21
+153022,1407279.007,891425.5483,54306.61226,21
+153023,1401947.473,890568.3807,53839.07865,21
+153024,1400040.792,883319.7461,52760.78182,21
+153025,1394937.366,882662.5048,52249.71155,21
+153026,1391992.955,876563.2723,51282.97073,21
+153027,1389189.841,873431.5162,50782.4448,21
+153028,1384574.041,869402.9373,49965.23043,21
+153029,1382227.868,866352.8394,49030.97998,21
+153030,1378416.688,861196.8116,48475.84551,21
+153031,1374872.21,858562.7164,47502.69675,21
+153032,1371144.713,855987.5686,46064.1568,21
+153033,1369624.006,851541.4774,45475.7454,21
+153034,1364438.31,848397.3333,44373.84535,21
+153035,1361315.508,846812.096,43227.22482,21
+153036,1359062.104,842386.447,43363.20689,21
+153037,1355488.871,838685.4383,43094.07094,21
+153038,1351288.674,836720.1002,42764.59986,21
+153039,1348961.811,833398.6441,42809.45177,21
+153040,1346733.996,830804.2496,42321.59212,21
+153041,1341172.643,826578.1955,42687.51593,21
+153042,1339772.301,823940.5657,41811.25584,21
+153043,1336159.537,821915.6065,41642.01348,21
+153044,1331203.615,817574.0796,41047.38399,21
+153045,1331118.239,817798.8269,40774.34085,21
+153046,1326407.448,812963.0257,40916.9743,21
+153047,1322164.377,811919.2336,40210.23056,21
+153048,1320653.916,806278.914,40126.64876,21
+153049,1316704.291,806947.7876,39923.69608,21
+153050,1312910.596,800335.3152,39614.57709,21
+153051,1310995.831,800251.4291,39299.40842,21
+153052,1308222.053,796546.7243,39072.80535,21
+153053,1304043.114,793255.5783,38909.21354,21
+153054,1300838.394,790135.8503,38693.78718,21
+153055,1298465.297,789022.3453,38510.66281,21
+153056,1295039.526,783885.1889,38370.00075,21
+153057,1291764.102,783644.3516,38120.3115,21
+153058,1288898.816,778275.3369,37860.41473,21
+153059,1286204.956,777259.8014,37710.74304,21
+153060,1282344.785,774220.1255,37322.85113,21
+153061,1044917.681,540717.2668,3040.926291,21
+153062,1027083.482,522008.5449,2557.400996,21
+153063,1017833.521,518318.8626,2465.689235,21
+153064,1010669.479,513180.1256,2325.655607,21
+153065,1003401.037,509177.4881,2176.734791,21
+153066,999080.1726,505502.9696,2135.687471,21
+153067,990933.9342,501327.5056,1966.479275,21
+153068,985083.5138,498212.2107,1882.983289,21
+153069,980064.7023,496726.1846,1798.644867,21
+153070,973183.6052,493949.0014,1695.9074,21
+153071,968995.1621,492084.3365,1627.425512,21
+153072,961340.6103,489930.1605,1585.418983,21
+153073,957358.9712,487815.7464,1514.475393,21
+153074,951608.0263,486006.0883,1443.113579,21
+153075,945538.5684,483548.5,1400.406459,21
+153076,941489.3178,481815.0415,1343.628815,21
+153077,935338.6832,479759.1896,1241.535994,21
+153078,930134.1544,477770.8741,1241.562684,21
+153079,925660.4468,475925.8849,1139.303687,21
+153080,919890.5196,473967.407,1079.197514,21
+153081,915522.3583,471556.772,1034.048332,21
+153082,910145.7378,470688.1817,988.1115375,21
+153083,905189.8759,467756.1997,925.491866,21
+153084,901338.3843,466389.1373,925.5067011,21
+153085,895037.6124,464430.0764,894.1753779,21
+153086,891117.1669,463001.5242,878.4740333,21
+153087,886557.5152,460978.2511,846.970988,21
+153088,881554.7759,459239.7067,815.3499314,21
+153089,877337.9984,457236.439,815.3614482,21
+153090,871375.492,455763.7292,783.6186719,21
+153091,868065.2687,453723.1353,751.7511756,21
+153092,863908.1897,451123.4005,735.7742272,21
+153093,857728.1983,449068.0748,719.7643452,21
+153094,855284.2676,446410.7159,687.6353189,21
+153095,849501.4016,444629.7131,671.523647,21
+153096,846141.9315,441854.5696,655.3768243,21
+153097,840309.9315,439567.5323,622.968321,21
+153098,837055.8032,437317.5584,606.7123771,21
+153099,832868.9316,434909.8867,574.0803519,21
+153100,827614.5369,432642.5684,574.0860603,21
+153101,824574.9061,430443.9464,524.8390449,21
+153102,820320.8424,427769.8702,524.8438154,21
+153103,815241.5619,425255.949,491.8059935,21
+153104,811346.096,423061.1755,475.2235752,21
+153105,807913.1647,420850.0728,458.5957435,21
+153106,803090.9147,418196.5363,425.1955005,21
+153107,800175.0724,416083.8404,408.4236751,21
+153108,795333.2494,413794.2501,374.7227208,21
+153109,791262.7358,410809.8645,340.803967,21
+153110,787885.5889,409000.6331,323.7586343,21
+153111,783299.8569,406326.7322,306.6520302,21
+153112,779079.075,403760.6579,272.2424514,21
+153113,775980.1435,401547.9662,272.2437318,21
+153114,772222.4347,399012.1784,220.0903273,21
+153115,768891.4751,396535.0271,220.0911633,21
+153116,766166.62,394480.5969,184.911008,21
+153117,761469.8071,391568.3456,167.1795136,21
+153118,759047.254,389216.5022,149.3401945,21
+153119,755201.6919,387022.9058,113.3073646,21
+153120,752227.0878,384867.2459,113.3081454,21
+153121,748096.1906,380650.0983,76.68077022,21
+153122,746876.7148,378206.2865,58.0778508,21
+153123,742316.716,373591.3257,39.21431655,21
+153124,740010.8904,371305.0133,19.98191144,21
+153125,737004.0109,367429.6952,0,21
+153126,734289.7119,364010.9472,0,21
+153127,731544.6134,360569.7446,0,21
+153128,728635.2847,357259.639,0,21
+153129,724821.9425,353535.5628,0,21
+153130,723550.491,350200.5405,0,21
+153131,719952.5312,347088.0117,0,21
+153132,716844.03,342948.3975,0,21
+153133,715734.2898,339841.9925,0,21
+153134,711010.2715,335156.118,0,21
+153135,709222.5936,331032.7061,0,21
+153136,706084.8138,327806.9639,0,21
+153137,703136.0425,323710.9425,0,21
+153138,701475,320693.1801,0,21
+153139,696860.1185,316469.6218,0,21
+153140,695995.4228,313412.4864,0,21
+153141,692623.6396,310028.2206,0,21
+153142,690310.6207,305590.4826,0,21
+153143,686963.0633,302573.5428,0,21
+153144,684742.5084,298846.9265,0,21
+153145,681900.2766,294702.922,0,21
+153146,679121.6461,292047.3981,0,21
+153147,676588.7817,287196.8546,0,21
+153148,673676.7507,284678.7595,0,21
+153149,670858.4559,280427.7069,0,21
+153150,669312.932,276766.8153,0,21
+153151,665763.3318,273502.4353,0,21
+153152,664539.7351,269740.2737,0,21
+153153,661589.0865,266773.397,0,21
+153154,658451.1776,262888.2158,0,21
+153155,656584.3848,259414.6756,0,21
+153156,655665.3323,256174.6089,0,21
+153157,650733.7091,252777.1011,0,21
+153158,651383.5997,248654.893,0,21
+153159,646921.1961,245659.3097,0,21
+153160,646166.5501,241882.6653,0,21
+153161,641622.203,238467.183,0,21
+153162,639957.8243,234503.8892,0,21
+153163,637094.3537,231682.9726,0,21
+153164,634716.4639,227447.6229,0,21
+153165,632066.4744,224266.2411,0,21
+153166,630922.6714,220293.6165,0,21
+153167,627094.6991,217032.0366,0,21
+153168,625891.353,213094.8542,0,21
+153169,623454.6818,209697.7158,0,21
+153170,620934.4943,203957.7436,0,21
+153171,618158.9181,200004.4693,0,21
+153172,615315.7541,196537.207,0,21
+153173,614180.9926,192458.5604,0,21
+153174,611262.9156,188873.2448,0,21
+153175,609061.888,185523.1996,0,21
+153176,606163.6376,181255.7389,0,21
+153177,604247.7179,178150.1194,0,21
+153178,600821.1366,173768.771,0,21
+153179,599314.3538,170202.1983,0,21
+153180,596827.8639,166257.4128,0,21
+153181,588208.8644,168240.8351,0,21
+153182,586056.1392,165416.9984,0,21
+153183,584184.4165,162509.3605,0,21
+153184,580660.7283,159547.4243,0,21
+153185,579388.5858,157271.3853,0,21
+153186,575385.0914,153721.5124,0,21
+153187,574013.5951,151398.368,0,21
+153188,571396.6326,148080.3166,0,21
+153189,567288.5512,145051.9597,0,21
+153190,566334.9857,142705.7802,0,21
+153191,562637.4434,139427.7409,0,21
+153192,560984.1508,137843.8626,0,21
+153193,557282.7078,134847.7331,0,21
+153194,554411.5464,133486.9159,0,21
+153195,551965.3598,130570.5418,0,21
+153196,548899.4741,128639.2198,0,21
+153197,546942.6419,126163.5239,0,21
+153198,543022.6713,122950.2332,0,21
+153199,541302.9473,120274.7392,0,21
+153200,537986.9105,117870.2071,0,21
+153201,535906.6592,115288.4294,0,21
+153202,532601.5917,112891.0185,0,21
+153203,530061.2422,111092.8209,0,21
+153204,526797.8838,107945.2732,0,21
+153205,524680.3143,106230.0286,0,21
+153206,522212.6844,103225.7632,0,21
+153207,517475.4581,101300.7275,0,21
+153208,516648.3087,99916.95267,0,21
+153209,513198.237,97874.5706,0,21
+153210,510722.4147,96264.36159,0,21
+153211,507521.6283,94423.55638,0,21
+153212,505093.9493,93273.54388,0,21
+153213,501616.8628,91242.003,0,21
+153214,499462.0799,89552.55928,0,21
+153215,496643.1271,88143.69988,0,21
+153216,493422.1135,86498.79277,0,21
+153217,490926.5658,84956.02154,0,21
+153218,487738.584,83414.10945,0,21
+153219,485614.6373,81635.10198,0,21
+153220,482048.0896,80197.41452,0,21
+153221,480079.2547,78678.82634,0,21
+153222,476229.8871,76663.29558,0,21
+153223,473911.1385,75726.51643,0,21
+153224,471981.7324,73553.20619,0,21
+153225,468360.8379,72523.64958,0,21
+153226,464777.4742,71473.54897,0,21
+153227,463518.6872,71110.5079,0,21
+153228,460435.1949,70757.92375,0,21
+153229,456635.7707,70254.75136,0,21
+153230,454302.4765,69454.01961,0,21
+153231,450963.0957,69403.17043,0,21
+153232,449259.1497,68927.2243,0,21
+153233,445579.607,68143.92727,0,21
+153234,442718.6763,68029.31097,0,21
+153235,440461.3422,67516.45658,0,21
+153236,438141.444,66866.0518,0,21
+153237,433518.6698,66080.16185,0,21
+153238,432477.7743,65499.45524,0,21
+153239,428410.2067,64985.42771,0,21
+153240,427063.109,64539.35127,0,21
+153241,428374.513,65088.9068,0,21
+153242,426817.742,64544.64135,0,21
+153243,423759.0616,64018.59257,0,21
+153244,422429.5536,63447.32412,0,21
+153245,419942.4832,62830.67921,0,21
+153246,417350.4022,62439.90507,0,21
+153247,416425.0238,154888.4266,0,21
+153248,413102.4597,61488.2996,0,21
+153249,411777.0779,61276.52237,0,21
+153250,409407.1604,60828.602,0,21
+153251,407600.5883,60250.91395,0,21
+153252,405108.2344,60024.67313,0,21
+153253,403208.5685,59436.11994,0,21
+153254,401589.3502,59183.89765,0,21
+153255,397675.9159,58699.58784,0,21
+153256,397359.5488,58346.576,0,21
+153257,394607.1949,57974.23272,0,21
+153258,392546.5796,57305.9004,0,21
+153259,390158.4249,57231.51099,0,21
+153260,388403.1114,56601.90954,0,21
+153261,386228.4833,56237.10639,0,21
+153262,383816.4856,55775.37779,0,21
+153263,381809.726,55528.43726,0,21
+153264,380480.9301,55016.4558,0,21
+153265,377371.5353,54573.88621,0,21
+153266,376120.2871,54277.09766,0,21
+153267,372757.0187,53715.25085,0,21
+153268,372305.5579,53617.40914,0,21
+153269,369775.7383,52764.89449,0,21
+153270,368589.8583,52779.46501,0,21
+153271,367722.2238,51996.87568,0,21
+153272,366866.8021,51785.67518,0,21
+153273,364452.568,51155.32368,0,21
+153274,363576.5771,50612.18737,0,21
+153275,362901.1565,50476.72859,0,21
+153276,360890.5277,49534.51886,0,21
+153277,359586.9322,49578.90848,0,21
+153278,357967.679,48544.72395,0,21
+153279,357691.9955,48514.18893,0,21
+153280,354989.6887,47868.04134,0,21
+153281,355662.3915,47495.46974,0,21
+153282,352569.8782,46772.28124,0,21
+153283,352757.2115,46397.87407,0,21
+153284,350545.7153,45875.10878,0,21
+153285,349901.3462,45479.03041,0,21
+153286,347853.9378,44868.77034,0,21
+153287,347706.3381,44263.14159,0,21
+153288,346229.3337,44063.25768,0,21
+153289,344628.887,43135.2036,0,21
+153290,343201.6703,43028.13219,0,21
+153291,343452.7944,42146.6655,0,21
+153292,342425.0355,41956.76954,0,21
+153293,339251.9942,41121.76774,0,21
+153294,340103.6547,40940.36804,0,21
+153295,337841.9315,40169.50664,0,21
+153296,337180.0579,39703.82315,0,21
+153297,338800.1949,39319.27472,0,21
+153298,338887.9786,38651.83505,0,21
+153299,337910.6638,38178.82649,0,21
+153300,336831.6321,37585.00024,0,21
+153301,405156.0404,52051.55343,0,21
+153302,403439.5789,51607.73279,0,21
+153303,404696.1364,51396.43204,0,21
+153304,403250.8042,50714.08818,0,21
+153305,403539.7995,50436.41297,0,21
+153306,403384.7875,49849.58964,0,21
+153307,403042.3428,49753.07973,0,21
+153308,402504.6441,48993.23582,0,21
+153309,401696.1039,48645.66357,0,21
+153310,402133.3938,48213.59415,0,21
+153311,400331.8259,47878.66287,0,21
+153312,400703.2525,47196.39952,0,21
+153313,401082.0976,46891.42694,0,21
+153314,399152.0101,46531.54714,0,21
+153315,399632.4054,45884.86341,0,21
+153316,397434.6998,45526.63548,0,21
+153317,399187.0713,45109.86119,0,21
+153318,395635.5561,44411.04895,0,21
+153319,397603.0906,44307.23386,0,21
+153320,396080.8851,43729.04992,0,21
+153321,394843.1343,43184.3536,0,21
+153322,395115.8256,42817.93813,0,21
+153323,394148.8407,42267.73181,0,21
+153324,392545.6074,42001.8133,0,21
+153325,392957.8807,41372.41907,0,21
+153326,391631.1866,40985.78966,0,21
+153327,390164.7425,40441.9988,0,21
+153328,390932.9055,39984.65468,0,21
+153329,388894.0415,39608.89571,0,21
+153330,389132.1856,39276.69226,0,21
+153331,388087.4032,38482.27508,0,21
+153332,386773.3791,38553.38078,0,21
+153333,386381.8063,37901.48238,0,21
+153334,384527.997,37424.97242,0,21
+153335,385370.2725,37308.97293,0,21
+153336,383822.492,36584.96531,0,21
+153337,382367.3799,36366.42356,0,21
+153338,382526.8323,35914.34548,0,21
+153339,381387.6106,35630.37966,0,21
+153340,380940.0638,35303.99121,0,21
+153341,378973.6356,34702.73763,0,21
+153342,378940.557,34473.94495,0,21
+153343,378042.2481,34087.70666,0,21
+153344,376741.7243,33640.59057,0,21
+153345,377529.3653,33302.33956,0,21
+153346,375320.7521,32804.78877,0,21
+153347,375212.0447,32642.34942,0,21
+153348,374089.9275,32062.92985,0,21
+153349,372826.3131,31800.13803,0,21
+153350,373070.7902,31343.16436,0,21
+153351,371740.2463,31177.45276,0,21
+153352,371116.0453,30588.06196,0,21
+153353,370710.8486,30287.74776,0,21
+153354,369626.2186,30070.29629,0,21
+153355,368995.9391,29600.63189,0,21
+153356,368416.812,29111.71973,0,21
+153357,367455.967,28843.35631,0,21
+153358,366689.4375,28529.23985,0,21
+153359,366699.423,28232.20157,0,21
+153360,365210.147,27843.93405,0,21
+153361,297613.8701,16851.61574,0,21
+153362,295811.157,16853.77649,0,21
+153363,293651.1044,16787.53065,0,21
+153364,293097.3409,16403.67994,0,21
+153365,291137.571,16483.28305,0,21
+153366,290274.5294,16230.87022,0,21
+153367,288615.5367,16165.25367,0,21
+153368,287405.3942,15911.9066,0,21
+153369,286134.4548,15871.34506,0,21
+153370,284518.0675,15845.88515,0,21
+153371,283633.5212,15563.61633,0,21
+153372,281525.0522,15523.9735,0,21
+153373,280678.4508,15511.12176,0,21
+153374,279023.5602,15214.8319,0,21
+153375,277851.9727,15187.80139,0,21
+153376,276146.6351,14931.5806,0,21
+153377,274787.4341,14999.03296,0,21
+153378,273142.2301,14851.15498,0,21
+153379,271510.8346,14578.65706,0,21
+153380,270381.458,14661.3932,0,21
+153381,268293.4618,14524.99685,0,21
+153382,266927.3405,14224.99656,0,21
+153383,265434.3283,14348.61952,0,21
+153384,263636.6327,14156.44839,0,21
+153385,262537.2108,13911.45876,0,21
+153386,260275.9978,14100.93685,0,21
+153387,259179.8529,13595.58878,0,21
+153388,257286.8323,13800.14802,0,21
+153389,255896.7702,13539.73505,0,21
+153390,254246.2501,13483.62138,0,21
+153391,252811.9361,13469.98871,0,21
+153392,250936.8359,13165.74631,0,21
+153393,249745.0154,13151.95162,0,21
+153394,247995.1771,12846.3881,0,21
+153395,246330.7918,12832.46213,0,21
+153396,245075.7174,12775.25744,0,21
+153397,243285.4075,12482.71603,0,21
+153398,241984.1983,12357.49973,0,21
+153399,240504.7708,12285.45191,0,21
+153400,238639.9419,12130.91963,0,21
+153401,237531.9113,11983.59406,0,21
+153402,235762.9635,11791.50544,0,21
+153403,234665.8716,11777.09885,0,21
+153404,232706.1186,11480.00751,0,21
+153405,231742.209,11450.3348,0,21
+153406,230137.4411,11263.80023,0,21
+153407,228523.2628,11121.86131,0,21
+153408,227261.5994,11076.49059,0,21
+153409,225854.4759,10775.82551,0,21
+153410,224264.9214,10752.99538,0,21
+153411,222986.2705,10442.39856,0,21
+153412,221740.0336,10555.3803,0,21
+153413,219913.9818,10233.67595,0,21
+153414,218897.5649,10089.89455,0,21
+153415,217437.1231,9930.57846,0,21
+153416,215958.9791,9786.136233,0,21
+153417,214688.5425,9496.284723,0,21
+153418,212921.3909,9220.511822,0,21
+153419,212129.5582,9205.124671,0,21
+153420,210296.6541,8897.119635,0,21
+153421,214207.1759,8339.072363,0,21
+153422,213086.5101,8323.491403,0,21
+153423,211226.1627,8026.767158,0,21
+153424,209957.9385,7877.850955,0,21
+153425,208302.6347,7728.558288,0,21
+153426,206928.4347,7428.821041,0,21
+153427,205126.7864,7412.959753,0,21
+153428,203821.0722,7143.41112,0,21
+153429,202257.0563,6960.266528,0,21
+153430,200413.5305,6808.550001,0,21
+153431,199362.5027,6536.015443,0,21
+153432,196956.4227,6503.846735,0,21
+153433,196100.61,6197.397829,0,21
+153434,194223.5826,6043.499601,0,21
+153435,192366.215,5750.630636,0,21
+153436,191033.2225,5734.306225,0,21
+153437,189337.5538,5423.185806,0,21
+153438,187448.0639,5283.34143,0,21
+153439,185992.0812,5250.363954,0,21
+153440,184289.5867,4952.70055,0,21
+153441,182218.9277,4653.020513,0,21
+153442,180940.1942,4778.144764,0,21
+153443,178744.8692,4317.72999,0,21
+153444,177433.0584,4317.730371,0,21
+153445,174997.2412,4140.640881,0,21
+153446,173905.3984,3835.198161,0,21
+153447,171589.2552,3835.198529,0,21
+153448,169816.5829,3638.889436,0,21
+153449,168081.9869,3346.64513,0,21
+153450,165960.9432,3182.335284,0,21
+153451,164223.568,2999.942274,0,21
+153452,162479.4787,2999.942672,0,21
+153453,160248.7183,2667.128063,0,21
+153454,158227.8648,2499.382759,0,21
+153455,156524.756,2330.676943,0,21
+153456,154630.047,2160.949742,0,21
+153457,152581.1391,1835.954608,0,21
+153458,150687.7326,1800.227808,0,21
+153459,148321.2455,1818.145265,0,21
+153460,146016.3726,1635.876834,0,21
+153461,144081.8001,1461.154667,0,21
+153462,142351.0445,1115.969405,0,21
+153463,139875.5261,1097.676703,0,21
+153464,138111.9304,753.491179,0,21
+153465,136020.5416,549.3128664,0,21
+153466,133889.5164,179.6094036,0,21
+153467,131884.3341,160.6808324,0,21
+153468,129597.2485,122.3196887,0,21
+153469,127666.567,93.02083664,0,21
+153470,125054.8246,73.17362243,0,21
+153471,123243.6716,42.77657043,0,21
+153472,120612.6393,0,0,21
+153473,118666.2008,0,0,21
+153474,116346.3402,0,0,21
+153475,113922.5612,0,0,21
+153476,111757.0085,0,0,21
+153477,109546.4841,0,0,21
+153478,107057.841,0,0,21
+153479,104986.3407,0,0,21
+153480,102377.0334,0,0,21
+153481,96312.54757,0,0,21
+153482,94955.89937,0,0,21
+153483,93878.64066,0,0,21
+153484,93132.23911,0,0,21
+153485,91855.17617,0,0,21
+153486,90863.43407,0,0,21
+153487,89852.7377,0,0,21
+153488,88871.91617,0,0,21
+153489,87803.74547,0,0,21
+153490,87044.12655,0,0,21
+153491,85932.42314,0,0,21
+153492,85116.38046,0,0,21
+153493,84602.23292,0,0,21
+153494,84430.78645,0,0,21
+153495,84554.61215,0,0,21
+153496,84086.77386,0,0,21
+153497,84164.20147,0,0,21
+153498,84569.17822,0,0,21
+153499,84336.03494,0,0,21
+153500,84457.84605,0,0,21
+153501,84240.77743,0,0,21
+153502,84235.62524,0,0,21
+153503,83878.26658,0,0,21
+153504,84130.66488,0,0,21
+153505,83659.82326,0,0,21
+153506,83873.90314,0,0,21
+153507,83423.82271,0,0,21
+153508,83518.79805,0,0,21
+153509,83289.58707,0,0,21
+153510,83291.78512,0,0,21
+153511,83029.77654,0,0,21
+153512,83048.8636,0,0,21
+153513,82796.82088,0,0,21
+153514,82782.16507,0,0,21
+153515,82417.77837,0,0,21
+153516,82536.02063,0,0,21
+153517,82301.72175,0,0,21
+153518,82116.66502,0,0,21
+153519,82096.23345,0,0,21
+153520,81889.49803,0,0,21
+153521,81667.90116,0,0,21
+153522,81822.38801,0,0,21
+153523,81446.4331,0,0,21
+153524,81384.85815,0,0,21
+153525,81142.35757,0,0,21
+153526,81158.77306,0,0,21
+153527,80840.63449,0,0,21
+153528,80932.71912,0,0,21
+153529,80747.09438,0,0,21
+153530,80554.64166,0,0,21
+153531,80559.18694,0,0,21
+153532,80681.32753,0,0,21
+153533,80469.12901,0,0,21
+153534,80293.34994,0,0,21
+153535,80307.58595,0,0,21
+153536,80068.26352,0,0,21
+153537,80059.662,0,0,21
+153538,80053.46528,0,0,21
+153539,79711.1251,0,0,21
+153540,79678.10294,0,0,21
+153541,80540.16623,0,0,21
+153542,80894.00103,0,0,21
+153543,81782.13373,0,0,21
+153544,82294.48039,0,0,21
+153545,83149.72908,0,0,21
+153546,83628.92598,0,0,21
+153547,84409.78841,0,0,21
+153548,85092.62183,0,0,21
+153549,85637.45281,0,0,21
+153550,86355.89685,0,0,21
+153551,87190.40869,0,0,21
+153552,87600.82305,0,0,21
+153553,88287.41105,0,0,21
+153554,89244.21855,0,0,21
+153555,89777.57192,0,0,21
+153556,90438.14743,0,0,21
+153557,91116.70393,0,0,21
+153558,91834.49472,0,0,21
+153559,92556.4986,0,0,21
+153560,93121.31219,0,0,21
+153561,93991.89733,0,0,21
+153562,94533.81114,0,0,21
+153563,95259.64595,0,0,21
+153564,95984.1057,0,0,21
+153565,96724.20402,0,0,21
+153566,97231.44072,0,0,21
+153567,98243.2247,0,0,21
+153568,98701.00499,0,0,21
+153569,99532.71421,0,0,21
+153570,100366.3489,0,0,21
+153571,101066.7866,0,0,21
+153572,102121.4014,0,0,21
+153573,102862.9063,0,0,21
+153574,103548.8495,0,0,21
+153575,104320.7717,0,0,21
+153576,105231.9765,0,0,21
+153577,106173.5765,0,0,21
+153578,106956.1647,0,0,21
+153579,107684.7028,0,0,21
+153580,108634.1142,0,0,21
+153581,109495.3401,0,0,21
+153582,110221.3647,0,0,21
+153583,111077.5755,0,0,21
+153584,112144.3986,0,0,21
+153585,112690.6163,0,0,21
+153586,113834.8543,0,0,21
+153587,114420.8962,0,0,21
+153588,115501.9836,0,0,21
+153589,116106.0187,0,0,21
+153590,117069.6144,0,0,21
+153591,118121.8564,0,0,21
+153592,118590.4573,0,0,21
+153593,119757.6359,0,0,21
+153594,120501.2657,0,0,21
+153595,121419.9287,0,0,21
+153596,122188.3452,0,0,21
+153597,123149.0225,0,0,21
+153598,123983.8512,0,0,21
+153599,124760.0207,0,0,21
+153600,125716.6511,0,0,21
+153601,153235.5109,0,0,21
+153602,154532.393,3221.232211,0,21
+153603,155087.165,12822.0088,0,21
+153604,155398.8167,7518.419516,0,21
+153605,155825.9538,8750.767932,0,21
+153606,156243.7744,9102.325895,0,21
+153607,156754.9393,9244.786943,0,21
+153608,157232.9726,9278.637136,0,21
+153609,157906.2205,9528.744442,0,21
+153610,157986.5367,9429.138583,0,21
+153611,202553.7321,9695.536481,0,21
+153612,200779.154,9712.330768,0,21
+153613,194787.4643,9845.079464,0,21
+153614,200781.5203,10010.97054,0,21
+153615,201119.0018,9994.275979,0,21
+153616,204243.1774,10143.13039,0,21
+153617,204253.5837,10159.77515,0,21
+153618,205503.2354,10308.24267,0,21
+153619,207359.7564,10291.64527,0,21
+153620,207443.0423,10456.3755,0,21
+153621,209895.9732,10587.67547,0,21
+153622,209658.0749,10456.37453,0,21
+153623,210055.4052,10735.1965,0,21
+153624,211380.5497,10735.19598,0,21
+153625,212547.4874,10768.06305,0,21
+153626,213086.197,10865.93594,0,21
+153627,214127.7232,10915.1692,0,21
+153628,214529.6144,11012.85666,0,21
+153629,215875.2048,11045.63338,0,21
+153630,216972.5015,11045.63283,0,21
+153631,216269.489,11322.0678,0,21
+153632,218622.797,11192.14577,0,21
+153633,217695.2079,11467.9982,0,21
+153634,220157.1838,11484.23282,0,21
+153635,219213.3702,11613.61966,0,21
+153636,220526.3046,11775.08624,0,21
+153637,221920.3125,11758.93503,0,21
+153638,220731.3078,12048.66054,0,21
+153639,223455.3065,11920.05619,0,21
+153640,222389.9427,12321.16642,0,21
+153641,223739.1785,12209.10102,0,21
+153642,224320.9818,12465.03215,0,21
+153643,225241.2935,12481.01883,0,21
+153644,224322.8964,12496.96586,0,21
+153645,226590.3926,12767.80292,0,21
+153646,226677.1368,12894.89592,0,21
+153647,226081.1907,12910.76487,0,21
+153648,228146.3072,13037.61308,0,21
+153649,227579.377,13195.84277,0,21
+153650,228393.1011,13322.20697,0,21
+153651,229031.2953,13337.96185,0,21
+153652,229864.9321,13589.97474,0,21
+153653,229413.4905,13621.37377,0,21
+153654,231471.2805,13621.37308,0,21
+153655,229601.6277,13872.44257,0,21
+153656,232958.1018,14028.88095,0,21
+153657,231057.301,14028.88023,0,21
+153658,232189.1779,14169.40698,0,21
+153659,232560.5737,14434.16652,0,21
+153660,233739.8189,14449.66787,0,21
+153661,280638.7191,17929.0992,0,21
+153662,285959.743,18432.9093,0,21
+153663,286368.0575,18589.21763,0,21
+153664,291086.5866,19520.62918,0,21
+153665,299004.2597,19283.10245,0,21
+153666,298039.265,19714.85604,0,21
+153667,300195.5901,19742.24421,0,21
+153668,302852.7914,20032.31612,0,21
+153669,303970.6913,20306.91208,0,21
+153670,307491.1579,20334.87613,0,21
+153671,311585.9882,20622.89907,0,21
+153672,312377.858,20881.18538,0,21
+153673,313973.0292,20923.26387,0,21
+153674,316882.6854,21180.63646,0,21
+153675,318092.5428,22403.24416,0,21
+153676,319755.1213,23110.9133,0,21
+153677,322655.1427,23052.37336,0,21
+153678,324423.4724,23454.20922,0,21
+153679,324702.1102,23691.39612,0,21
+153680,329232.0233,24045.45501,0,21
+153681,328447.2318,24358.51137,0,21
+153682,331789.2361,24515.11274,0,21
+153683,333234.1329,24911.69815,0,21
+153684,334647.7949,25208.32982,0,21
+153685,336740.7871,25332.14482,0,21
+153686,337457.7997,25813.51466,0,21
+153687,340541.7373,25950.38351,0,21
+153688,341754.9048,26244.18896,0,21
+153689,343176.8429,26592.53825,0,21
+153690,344531.1688,26926.68692,0,21
+153691,347742.8494,27021.73722,0,21
+153692,347050.0544,28314.34607,0,21
+153693,350232.977,29338.84698,0,21
+153694,351761.7243,29555.6389,0,21
+153695,352309.1842,29767.01322,0,21
+153696,355352.4711,30230.20434,0,21
+153697,355951.2182,30906.20532,0,21
+153698,357275.3502,31092.91372,0,21
+153699,359655.029,31545.77442,0,21
+153700,359939.5227,31828.18567,0,21
+153701,362696.7317,32351.28541,0,21
+153702,363476.0874,32771.11895,0,21
+153703,364234.2135,33045.71359,0,21
+153704,367221.1956,33378.84369,0,21
+153705,367129.1494,33990.57067,0,21
+153706,369673.7453,34002.53945,0,21
+153707,371235.5045,34688.95209,0,21
+153708,372190.2582,34852.40239,0,21
+153709,373548.0877,35305.90788,0,21
+153710,375571.4064,35658.24853,0,21
+153711,376967.8254,35915.84484,0,21
+153712,377661.8966,36377.59411,0,21
+153713,380029.9704,36772.01666,0,21
+153714,380180.6956,36873.16341,0,21
+153715,382365.9964,37187.77753,0,21
+153716,383628.8343,37511.05887,0,21
+153717,384720.048,37847.8073,0,21
+153718,386824.494,38236.101,0,21
+153719,386926.716,38582.87714,0,21
+153720,390188.2371,38941.18691,0,21
+153721,390868.7312,39308.97663,0,21
+153722,394917.7256,40070.61398,0,21
+153723,396855.5691,40703.51921,0,21
+153724,398890.934,41118.06547,0,21
+153725,401497.3392,41609.35623,0,21
+153726,403225.6842,42425.32467,0,21
+153727,405843.7292,42611.77486,0,21
+153728,406397.2712,43420.85676,0,21
+153729,410899.5187,43931.57954,0,21
+153730,412142.2231,44316.442,0,21
+153731,413817.3787,45158.43562,0,21
+153732,415832.0869,45277.95565,0,21
+153733,419014.9591,46431.9306,0,21
+153734,419834.5389,46324.18393,0,21
+153735,423388.5296,47399.53983,0,21
+153736,423848.6013,47579.14753,0,21
+153737,427730.3499,48512.73282,0,21
+153738,428094.1614,50198.0523,0,21
+153739,432729.2273,50246.29531,0,21
+153740,434141.3358,51342.0864,0,21
+153741,444863.8032,51994.76863,0,21
+153742,444840.2974,52763.41006,0,21
+153743,449487.9735,53470.9304,0,21
+153744,451844.2062,54138.46739,0,21
+153745,456699.8191,54997.71198,0,21
+153746,458066.1873,55813.3061,0,21
+153747,463055.7044,56470.0522,0,21
+153748,466106.4239,57263.81511,0,21
+153749,471065.8156,64150.16061,0,21
+153750,473410.7871,62854.01439,0,21
+153751,476313.2961,64458.80428,0,21
+153752,479292.6812,66440.94448,0,21
+153753,481732.9039,67486.01935,0,21
+153754,484987.337,69408.96228,0,21
+153755,486955.9262,69985.64218,0,21
+153756,491039.1236,71425.78094,0,21
+153757,491281.6031,73292.04778,0,21
+153758,496209.5675,73829.52438,0,21
+153759,496561.9954,75973.63565,0,21
+153760,500409.1902,76276.41576,0,21
+153761,502952.1326,78780.65084,0,21
+153762,505685.3969,78823.74296,0,21
+153763,507260.1414,80426.85464,0,21
+153764,509914.2323,82104.3644,0,21
+153765,512330.4577,85798.45141,0,21
+153766,515010.765,88425.60636,0,21
+153767,516714.7474,89076.23973,0,21
+153768,520500.6176,91163.70852,0,21
+153769,521045.3568,93446.93575,0,21
+153770,524690.4059,94858.17779,0,21
+153771,526208.603,96533.70484,0,21
+153772,530994.2361,98592.95259,0,21
+153773,532743.0162,100271.3239,0,21
+153774,537346.9481,102279.2323,0,21
+153775,539550.9183,104105.2212,0,21
+153776,542311.1736,105060.8246,0,21
+153777,545160.1131,107885.5476,0,21
+153778,546219.7302,108851.6702,0,21
+153779,549669.5222,111598.5165,0,21
+153780,550413.9119,111607.8232,0,21
+153781,561113.0879,123249.8676,0,21
+153782,560517.8106,125123.588,0,21
+153783,562010.2059,127381.518,0,21
+153784,563229.3987,129591.8663,0,21
+153785,563657.0964,130566.9842,0,21
+153786,564048.5893,132663.8094,0,21
+153787,565058.3917,133834.1546,0,21
+153788,565655.9219,136236.2624,0,21
+153789,566012.9336,137393.3448,0,21
+153790,566085.4651,139551.6968,0,21
+153791,567968.3331,140302.3174,0,21
+153792,566781.3713,142761.2163,0,21
+153793,568652.9912,143947.7552,0,21
+153794,568789.6513,144892.1069,0,21
+153795,568240.5996,148022.7135,0,21
+153796,569503.0637,147956.9144,0,21
+153797,570078.2973,149834.5804,0,21
+153798,570090.9688,151368.7744,0,21
+153799,571446.5881,152860.9781,0,21
+153800,570126.6003,154522.8108,0,21
+153801,571990.3065,156028.0668,0,21
+153802,570282.4438,156153.3945,0,21
+153803,573227.0194,158987.1202,0,21
+153804,572348.8816,161606.1443,0,21
+153805,571669.801,162705.5643,0,21
+153806,573492.2698,163537.8701,0,21
+153807,572797.7447,166966.584,0,21
+153808,574405.6493,166721.8206,0,21
+153809,573008.5174,169226.8891,0,21
+153810,574690.1817,169307.0294,0,21
+153811,572983.9997,171060.8904,0,21
+153812,576024.061,174038.6709,0,21
+153813,574039.4368,174099.5546,0,21
+153814,574938.9481,174866.6472,0,21
+153815,575126.3195,178767.7388,0,21
+153816,575931.0782,178407.1077,0,21
+153817,575310.6312,179841.8094,0,21
+153818,576124.4459,182468.4781,0,21
+153819,575162.9264,183157.0762,0,21
+153820,576779.7434,185335.2875,0,21
+153821,575531.1909,186152.3046,0,21
+153822,576873.9598,188423.1189,0,21
+153823,577373.7091,188482.9217,0,21
+153824,575786.4539,191792.0701,0,21
+153825,577359.0179,192106.5835,0,21
+153826,577013.9938,193582.8697,0,21
+153827,577010.8589,196849.1984,0,21
+153828,577987.5258,196016.8647,0,21
+153829,576766.908,198235.9957,0,21
+153830,578080.8581,199990.0921,0,21
+153831,576964.23,201763.9005,0,21
+153832,578466.3177,202914.913,0,21
+153833,577962.3156,203875.306,0,21
+153834,577480.2669,205589.1525,0,21
+153835,578476.7556,208597.5037,0,21
+153836,577983.8333,207701.9441,0,21
+153837,578079.4074,211171.7817,0,21
+153838,578319.0182,211899.6121,0,21
+153839,578682.4103,213592.2428,0,21
+153840,577749.1209,215739.2083,0,21
+153841,578127.7782,216030.1073,0,21
+153842,580457.5249,219671.9413,0,21
+153843,579842.5551,310239.2331,0,21
+153844,579795.2814,222044.0183,0,21
+153845,580305.5721,222510.1265,0,21
+153846,580318.7174,223868.3403,0,21
+153847,579723.3503,225553.63,0,21
+153848,581157.7982,226594.696,0,21
+153849,579751.5671,227405.0479,0,21
+153850,582199.0156,230184.8043,0,21
+153851,579602.6081,230144.5717,0,21
+153852,581105.5884,231422.6809,0,21
+153853,581541.1962,232265.6752,0,21
+153854,580051.8037,235585.8592,0,21
+153855,581611.5157,234437.2433,0,21
+153856,581630.3643,238995.8286,0,21
+153857,580803.9725,239083.7562,0,21
+153858,581548.5034,242145.3429,0,21
+153859,581542.5303,240755.7593,0,21
+153860,581694.1407,244190.5243,0,21
+153861,580776.9193,244583.5164,0,21
+153862,582076.0503,246980.2537,0,21
+153863,581085.8685,247550.6405,0,21
+153864,582945.218,249655.7935,0,21
+153865,580159.7346,250528.4916,0,21
+153866,583247.4596,250845.7829,0,21
+153867,580768.8611,253155.9767,0,21
+153868,581834.4026,253389.1582,0,21
+153869,581867.6601,253756.4839,0,21
+153870,581787.5068,255753.9342,0,21
+153871,582289.736,256928.4013,0,21
+153872,580749.0894,257444.6078,0,21
+153873,582536.9845,258187.086,0,21
+153874,581898.2047,258741.235,0,21
+153875,582426.9686,261687.712,0,21
+153876,581028.3355,260257.7851,0,21
+153877,582087.0275,262375.3265,0,21
+153878,581632.0696,262954.9315,0,21
+153879,582061.0115,263824.4446,0,21
+153880,581418.7618,264685.4885,0,21
+153881,581709.6418,266582.3245,0,21
+153882,582170.3321,265899.8904,0,21
+153883,581302.2689,268507.1323,0,21
+153884,582305.7529,267366.2482,0,21
+153885,581013.4673,269453.9455,0,21
+153886,582677.4863,270345.8408,0,21
+153887,580559.9218,270999.386,0,21
+153888,581920.9902,271425.785,0,21
+153889,581232.9449,273148.9412,0,21
+153890,582372.8661,272623.6772,0,21
+153891,580424.9563,274989.2698,0,21
+153892,581538.8804,274691.5836,0,21
+153893,580950.3476,275721.7337,0,21
+153894,581894.8905,276476.6511,0,21
+153895,580540.4458,277496.1235,0,21
+153896,581278.5205,278898.9853,0,21
+153897,581250.1636,278382.6131,0,21
+153898,580904.7269,279764.4997,0,21
+153899,581040.8613,280555.869,0,21
+153900,580608.4089,281024.5516,0,21
+153901,0,0,0,21
+153902,0,0,0,21
+153903,0,0,0,21
+153904,0,0,0,21
+153905,0,0,0,21
+153906,0,368365.891,978635.628,21
+153907,0,0,0,21
+153908,339346.8037,0,0,21
+153909,0,0,0,21
+153910,0,0,0,21
+153911,0,0,0,21
+153912,0,0,0,21
+153913,0,0,0,21
+153914,0,0,0,21
+153915,0,0,0,21
+153916,0,0,0,21
+153917,0,0,0,21
+153918,0,0,0,21
+153919,0,0,0,21
+153920,0,0,0,21
+153921,0,0,0,21
+153922,0,0,0,21
+153923,0,0,0,21
+153924,0,0,0,21
+153925,0,0,0,21
+153926,0,0,0,21
+153927,0,0,0,21
+153928,0,0,0,21
+153929,0,0,0,21
+153930,0,0,0,21
+153931,0,0,0,21
+153932,0,0,0,21
+153933,0,0,0,21
+153934,0,0,0,21
+153935,0,0,0,21
+153936,0,0,0,21
+153937,0,0,0,21
+153938,0,0,0,21
+153939,0,0,0,21
+153940,0,0,0,21
+153941,0,368363.1789,951994.4673,21
+153942,0,0,0,21
+153943,0,0,0,21
+153944,0,0,0,21
+153945,339332.9833,0,0,21
+153946,0,0,0,21
+153947,0,0,0,21
+153948,0,0,0,21
+153949,0,0,0,21
+153950,0,0,0,21
+153951,0,0,0,21
+153952,0,0,0,21
+153953,0,0,0,21
+153954,0,0,0,21
+153955,0,0,0,21
+153956,0,0,0,21
+153957,0,0,0,21
+153958,0,0,0,21
+153959,0,0,0,21
+153960,0,0,0,15.6
+153961,0,0,0,15.6
+153962,0,0,0,15.6
+153963,0,0,0,15.6
+153964,0,0,0,15.6
+153965,0,0,0,15.6
+153966,0,0,0,15.6
+153967,0,0,0,15.6
+153968,0,0,0,15.6
+153969,0,0,0,15.6
+153970,0,0,0,15.6
+153971,0,0,0,15.6
+153972,0,0,0,15.6
+153973,0,0,0,15.6
+153974,0,0,0,15.6
+153975,0,0,0,15.6
+153976,0,368367.5812,927900.8605,15.6
+153977,0,0,0,15.6
+153978,0,0,0,15.6
+153979,0,0,0,15.6
+153980,0,0,0,15.6
+153981,0,0,0,15.6
+153982,339342.2769,0,0,15.6
+153983,0,0,0,15.6
+153984,0,0,0,15.6
+153985,0,0,0,15.6
+153986,0,0,0,15.6
+153987,0,0,0,15.6
+153988,0,0,0,15.6
+153989,0,0,0,15.6
+153990,0,0,0,15.6
+153991,0,0,0,15.6
+153992,0,0,0,15.6
+153993,0,0,0,15.6
+153994,0,0,0,15.6
+153995,0,0,0,15.6
+153996,0,0,0,15.6
+153997,0,0,0,15.6
+153998,0,0,0,15.6
+153999,0,0,0,15.6
+154000,0,0,0,15.6
+154001,0,0,0,15.6
+154002,0,0,0,15.6
+154003,0,0,0,15.6
+154004,0,0,0,15.6
+154005,0,0,0,15.6
+154006,0,0,0,15.6
+154007,0,0,0,15.6
+154008,0,0,0,15.6
+154009,0,0,0,15.6
+154010,0,0,0,15.6
+154011,0,368381.3331,906587.6603,15.6
+154012,0,0,0,15.6
+154013,0,0,0,15.6
+154014,0,0,0,15.6
+154015,0,0,0,15.6
+154016,0,0,0,15.6
+154017,0,0,0,15.6
+154018,0,0,0,15.6
+154019,339371.4164,0,0,15.6
+154020,0,0,0,15.6
+154021,0,0,0,15.6
+154022,0,0,0,15.6
+154023,0,0,0,15.6
+154024,0,0,0,15.6
+154025,0,0,0,15.6
+154026,0,0,0,15.6
+154027,0,0,0,15.6
+154028,0,0,0,15.6
+154029,0,0,0,15.6
+154030,0,0,0,15.6
+154031,0,0,0,15.6
+154032,0,0,0,15.6
+154033,0,0,0,15.6
+154034,0,0,0,15.6
+154035,0,0,0,15.6
+154036,0,0,0,15.6
+154037,0,0,0,15.6
+154038,0,0,0,15.6
+154039,0,0,0,15.6
+154040,0,0,0,15.6
+154041,0,0,0,15.6
+154042,0,0,0,15.6
+154043,0,0,0,15.6
+154044,0,0,0,15.6
+154045,0,0,0,15.6
+154046,0,0,886029.2777,15.6
+154047,0,368384.3247,0,15.6
+154048,0,0,0,15.6
+154049,0,0,0,15.6
+154050,0,0,0,15.6
+154051,0,0,0,15.6
+154052,0,0,0,15.6
+154053,0,0,0,15.6
+154054,0,0,0,15.6
+154055,0,0,0,15.6
+154056,339386.5424,0,0,15.6
+154057,0,0,0,15.6
+154058,0,0,0,15.6
+154059,0,0,0,15.6
+154060,0,0,0,15.6
+154061,0,0,0,15.6
+154062,0,0,0,15.6
+154063,0,0,0,15.6
+154064,0,0,0,15.6
+154065,0,0,0,15.6
+154066,0,0,0,15.6
+154067,0,0,0,15.6
+154068,0,0,0,15.6
+154069,0,0,0,15.6
+154070,0,0,0,15.6
+154071,0,0,0,15.6
+154072,0,0,0,15.6
+154073,0,0,0,15.6
+154074,0,0,0,15.6
+154075,0,0,0,15.6
+154076,0,0,0,15.6
+154077,0,0,0,15.6
+154078,0,0,0,15.6
+154079,0,0,0,15.6
+154080,0,0,0,15.6
+154081,0,0,868466.7601,15.6
+154082,0,0,0,15.6
+154083,0,368383.9167,0,15.6
+154084,0,0,0,15.6
+154085,0,0,0,15.6
+154086,0,0,0,15.6
+154087,0,0,0,15.6
+154088,0,0,0,15.6
+154089,0,0,0,15.6
+154090,0,0,0,15.6
+154091,0,0,0,15.6
+154092,0,0,0,15.6
+154093,0,0,0,15.6
+154094,339403.1574,0,0,15.6
+154095,0,0,0,15.6
+154096,0,0,0,15.6
+154097,0,0,0,15.6
+154098,0,0,0,15.6
+154099,0,0,0,15.6
+154100,0,0,0,15.6
+154101,0,0,0,15.6
+154102,0,0,0,15.6
+154103,0,0,0,15.6
+154104,0,0,0,15.6
+154105,0,0,0,15.6
+154106,0,0,0,15.6
+154107,0,0,0,15.6
+154108,0,0,0,15.6
+154109,0,0,0,15.6
+154110,0,0,0,15.6
+154111,0,0,0,15.6
+154112,0,0,0,15.6
+154113,0,0,0,15.6
+154114,0,0,0,15.6
+154115,0,0,0,15.6
+154116,0,0,852199.0289,15.6
+154117,0,0,0,15.6
+154118,0,0,0,15.6
+154119,0,368397.2622,0,15.6
+154120,0,0,0,15.6
+154121,0,0,0,15.6
+154122,0,0,0,15.6
+154123,0,0,0,15.6
+154124,0,0,0,15.6
+154125,0,0,0,15.6
+154126,0,0,0,15.6
+154127,0,0,0,15.6
+154128,0,0,0,15.6
+154129,0,0,0,15.6
+154130,0,0,0,15.6
+154131,0,0,0,15.6
+154132,339424.0152,0,0,15.6
+154133,0,0,0,15.6
+154134,0,0,0,15.6
+154135,0,0,0,15.6
+154136,0,0,0,15.6
+154137,0,0,0,15.6
+154138,0,0,0,15.6
+154139,0,0,0,15.6
+154140,0,0,0,15.6
+154141,0,0,0,15.6
+154142,0,0,0,15.6
+154143,0,0,0,15.6
+154144,0,0,0,15.6
+154145,0,0,0,15.6
+154146,0,0,0,15.6
+154147,0,0,0,15.6
+154148,0,0,0,15.6
+154149,0,0,0,15.6
+154150,0,0,0,15.6
+154151,0,0,836124.2483,15.6
+154152,0,0,0,15.6
+154153,0,0,0,15.6
+154154,0,0,0,15.6
+154155,0,368397.5237,0,15.6
+154156,0,0,0,15.6
+154157,0,0,0,15.6
+154158,0,0,0,15.6
+154159,0,0,0,15.6
+154160,0,0,0,15.6
+154161,0,0,0,15.6
+154162,0,0,0,15.6
+154163,0,0,0,15.6
+154164,0,0,0,15.6
+154165,0,0,0,15.6
+154166,0,0,0,15.6
+154167,0,0,0,15.6
+154168,0,0,0,15.6
+154169,0,0,0,15.6
+154170,339516.9237,0,0,15.6
+154171,0,0,0,15.6
+154172,0,0,0,15.6
+154173,0,0,0,15.6
+154174,0,0,0,15.6
+154175,0,0,0,15.6
+154176,0,0,0,15.6
+154177,0,0,0,15.6
+154178,0,0,0,15.6
+154179,0,0,0,15.6
+154180,0,0,0,15.6
+154181,0,0,0,15.6
+154182,0,0,0,15.6
+154183,0,0,0,15.6
+154184,0,0,0,15.6
+154185,0,0,0,15.6
+154186,0,0,822267.7413,15.6
+154187,0,0,0,15.6
+154188,0,0,0,15.6
+154189,0,0,0,15.6
+154190,0,0,0,15.6
+154191,0,368386.0036,0,15.6
+154192,0,0,0,15.6
+154193,0,0,0,15.6
+154194,0,0,0,15.6
+154195,0,0,0,15.6
+154196,0,0,0,15.6
+154197,0,0,0,15.6
+154198,0,0,0,15.6
+154199,0,0,0,15.6
+154200,0,0,0,15.6
+154201,0,0,0,15.6
+154202,0,0,0,15.6
+154203,0,0,0,15.6
+154204,0,0,0,15.6
+154205,0,0,0,15.6
+154206,0,0,0,15.6
+154207,0,0,0,15.6
+154208,339624.6964,0,0,15.6
+154209,0,0,0,15.6
+154210,0,0,0,15.6
+154211,0,0,0,15.6
+154212,0,0,0,15.6
+154213,0,0,0,15.6
+154214,0,0,0,15.6
+154215,0,0,0,15.6
+154216,0,0,0,15.6
+154217,0,0,0,15.6
+154218,0,0,0,15.6
+154219,0,0,0,15.6
+154220,0,0,0,15.6
+154221,0,0,809840.9701,15.6
+154222,0,0,0,15.6
+154223,0,0,0,15.6
+154224,0,0,0,15.6
+154225,0,0,0,15.6
+154226,0,0,0,15.6
+154227,0,368381.0011,0,15.6
+154228,0,0,0,15.6
+154229,0,78.63293571,0,15.6
+154230,0,0,0,15.6
+154231,0,0,0,15.6
+154232,0,0,0,15.6
+154233,0,0,0,15.6
+154234,0,0,0,15.6
+154235,0,0,0,15.6
+154236,0,0,0,15.6
+154237,0,0,0,15.6
+154238,0,7.340681801,0,15.6
+154239,0,0,0,15.6
+154240,0,74.75529508,0,15.6
+154241,0,0,0,15.6
+154242,0,0,0,15.6
+154243,0,0,0,15.6
+154244,0,3.551469736,0,15.6
+154245,0,0,0,15.6
+154246,339704.995,72.89481378,0,15.6
+154247,0,0,0,15.6
+154248,0,0,0,15.6
+154249,0,0,0,15.6
+154250,0,3.775134852,0,15.6
+154251,0,0,0,15.6
+154252,0,72.65519557,0,15.6
+154253,0,0,0,15.6
+154254,0,0,0,15.6
+154255,0,0,0,15.6
+154256,0,0,797437.0588,15.6
+154257,0,0,0,15.6
+154258,0,0,0,15.6
+154259,0,0,0,15.6
+154260,0,0,0,15.6
+154261,703175.3527,66435.51004,0,15.6
+154262,224708.0918,15008.04251,0,15.6
+154263,64431.42454,379181.0371,0,15.6
+154264,156202.3979,20471.58238,0,15.6
+154265,215005.2595,104357.4193,0,15.6
+154266,159273.3539,18460.13969,0,15.6
+154267,169247.4278,19193.1292,0,15.6
+154268,169230.8777,19170.46925,0,15.6
+154269,169227.4023,19205.72467,0,15.6
+154270,169033.2166,19185.44407,0,15.6
+154271,168363.4152,19198.04799,0,15.6
+154272,168723.043,19198.03557,0,15.6
+154273,168041.3118,19170.28612,0,15.6
+154274,168094.9693,19199.20547,0,15.6
+154275,168071.0576,19213.13533,0,15.6
+154276,167761.751,19220.31652,0,15.6
+154277,167910.2323,19228.0837,0,15.6
+154278,167426.4273,19242.98992,0,15.6
+154279,167804.5761,19305.83407,0,15.6
+154280,167242.1557,19235.17371,0,15.6
+154281,167908.6471,19300.56824,0,15.6
+154282,167132.9267,19326.78142,0,15.6
+154283,167463.7466,19315.32414,0,15.6
+154284,507000.2753,19312.83079,0,15.6
+154285,167597.4575,19391.7909,0,15.6
+154286,167171.6511,19392.76854,0,15.6
+154287,167452.521,19472.09587,0,15.6
+154288,167326.5184,19432.77838,0,15.6
+154289,167317.1475,19413.47097,0,15.6
+154290,167571.9196,19455.33112,786912.5969,15.6
+154291,0,7.707931501,0,15.6
+154292,0,0,0,15.6
+154293,0,115.2912907,0,15.6
+154294,75658.52737,0,0,15.6
+154295,11802.89571,0,0,15.6
+154296,19496.0483,58000.25676,0,15.6
+154297,499692.4646,2846.775378,0,15.6
+154298,50368.74407,19351.96609,0,15.6
+154299,133041.629,390880.1956,0,15.6
+154300,207736.8578,19323.93526,0,15.6
+154301,161908.0004,19672.28476,0,15.6
+154302,168465.1396,19742.14166,0,15.6
+154303,168537.1242,19752.31238,0,15.6
+154304,168739.6141,19740.13673,0,15.6
+154305,168687.1259,19784.83981,0,15.6
+154306,168714.8217,19993.71427,0,15.6
+154307,168706.5638,19796.64665,0,15.6
+154308,168594.196,19895.24366,0,15.6
+154309,169221.7249,19824.31056,0,15.6
+154310,168611.1152,19839.13712,0,15.6
+154311,168797.3948,19912.75712,0,15.6
+154312,168881.7301,19920.77185,0,15.6
+154313,169279.1281,19954.62333,0,15.6
+154314,168769.7312,19988.36898,0,15.6
+154315,169123.7927,19945.28162,0,15.6
+154316,169399.3799,102862.2411,0,15.6
+154317,168943.4273,19931.43473,0,15.6
+154318,169634.0038,20058.19936,0,15.6
+154319,508967.5551,20032.84362,0,15.6
+154320,169455.1602,20032.88035,0,17.8
+154321,1554583.249,1389716.875,0,17.8
+154322,1130744.343,475357.4952,0,17.8
+154323,460014.9538,336382.6419,0,17.8
+154324,478331.1963,346039.9153,777732.7027,17.8
+154325,435820.6043,390093.5736,0,17.8
+154326,525625.3452,302172.339,0,17.8
+154327,76155.83352,295275.0775,0,17.8
+154328,74624.50131,393605.5201,0,17.8
+154329,832053.2412,332558.6793,0,17.8
+154330,423059.6101,362303.1402,0,17.8
+154331,377421.681,350395.9707,0,17.8
+154332,416644.7685,352867.9666,0,17.8
+154333,418394.4641,720151.2953,0,17.8
+154334,435194.3953,351940.4013,0,17.8
+154335,487060.177,351679.188,0,17.8
+154336,446965.7949,350673.4127,0,17.8
+154337,459049.3527,351826.6282,0,17.8
+154338,460063.0594,341510.8563,0,17.8
+154339,459937.694,342092.3147,0,17.8
+154340,459085.4933,341726.4106,0,17.8
+154341,466529.881,341799.8196,0,17.8
+154342,465666.5204,424186.1891,0,17.8
+154343,466776.5004,341905.8599,0,17.8
+154344,464998.2126,341720.2924,0,17.8
+154345,470134.8609,341489.0151,0,17.8
+154346,467116.7132,341853.1653,0,17.8
+154347,467144.2034,341175.4229,0,17.8
+154348,469005.2192,341880.5277,0,17.8
+154349,467930.1341,341189.0125,0,17.8
+154350,468574.3998,341515.0158,0,17.8
+154351,468269.2182,56814.50144,0,17.8
+154352,468657.8899,56943.21658,0,17.8
+154353,469928.3379,56804.13782,0,17.8
+154354,808286.9358,56857.10184,0,17.8
+154355,401579.7795,852686.386,0,17.8
+154356,402550.0645,183051.6766,0,17.8
+154357,507407.9606,317679.1366,0,17.8
+154358,483594.9213,317651.6289,768400.3842,17.8
+154359,78899.11469,283262.4114,0,17.8
+154360,72499.1627,379588.9229,0,17.8
+154361,78956.5096,321292.8396,0,17.8
+154362,891683.0756,347131.0385,0,17.8
+154363,504050.177,341038.7498,0,17.8
+154364,353788.9933,341826.2568,0,17.8
+154365,414059.0011,340702.8897,0,17.8
+154366,427853.4135,342044.9681,0,17.8
+154367,414537.5794,340717.2798,0,17.8
+154368,522233.1434,793353.0007,0,17.8
+154369,453022.2288,346360.7118,0,17.8
+154370,473269.5393,350704.6155,0,17.8
+154371,466023.0607,350183.8,0,17.8
+154372,465743.7003,349645.5254,0,17.8
+154373,466770.2784,349963.4019,0,17.8
+154374,467553.7907,349960.8669,0,17.8
+154375,467361.667,349957.2547,0,17.8
+154376,467573.9453,350848.6907,0,17.8
+154377,467649.7865,351243.18,0,17.8
+154378,469373.0349,351426.2615,0,17.8
+154379,468939.5382,351029.4411,0,17.8
+154380,469477.1547,352634.7025,0,20
+154381,2273903.257,2358531.77,2096.689445,20
+154382,1916690.304,369863.4145,0,20
+154383,426788.7626,344871.0178,0,20
+154384,419195.8773,421694.5205,402.1162464,20
+154385,669145.98,449716.0333,3039.094201,20
+154386,812926.2124,564365.6661,1310.419401,20
+154387,625433.7342,509071.5185,1780.767789,20
+154388,673721.1442,471078.1055,3276.615757,20
+154389,669173.3997,486876.956,2652.837785,20
+154390,669335.9209,485584.5937,13586.48938,20
+154391,665528.1999,486081.8371,11325.32982,20
+154392,664413.5379,484824.3088,11897.20246,20
+154393,662382.1582,483700.9088,12390.5291,20
+154394,660967.0561,484939.5049,12988.13273,20
+154395,657608.066,483059.7037,13293.13171,20
+154396,658802.0862,483010.3828,13607.76062,20
+154397,654744.8207,483719.6197,13881.69418,20
+154398,655048.1156,481740.8374,14203.78673,20
+154399,650822.0004,480532.0492,14524.01199,20
+154400,652923.3695,481098.0149,14802.48932,20
+154401,649269.6196,479972.5589,14972.51694,20
+154402,648104.4201,480291.0302,15431.80111,20
+154403,647644.4997,478867.0785,15951.16757,20
+154404,646156.2821,562393.8545,16151.40904,20
+154405,644417.9102,478863.9522,16484.61304,20
+154406,644046.8746,479354.3261,16867.41668,20
+154407,642526.6484,477886.993,17051.44367,20
+154408,640448.5535,476523.2985,17385.77925,20
+154409,641118.3734,477248.7755,17748.3921,20
+154410,638522.1436,474944.3356,17999.52134,20
+154411,638185.2188,475460.6134,18288.96822,20
+154412,637264.2914,475563.8063,18577.0834,20
+154413,635283.281,473711.1664,18933.96173,20
+154414,635756.6897,473974.4737,19104.91127,20
+154415,632199.5879,473088.6679,19472.00651,20
+154416,632276.4171,472490.291,19748.50803,20
+154417,630260.3855,472763.082,19910.39733,20
+154418,630204.9066,471237.4276,20363.02093,20
+154419,627118.6227,471930.5777,20561.55937,20
+154420,627034.9308,470587.9249,21787.04268,20
+154421,625250.8895,471173.0418,22885.3829,20
+154422,623912.7244,551803.5322,22824.80835,20
+154423,623328.0397,470843.0307,23552.73091,20
+154424,622623.4637,468841.3276,23993.99905,20
+154425,620831.0481,467865.6784,24700.73867,20
+154426,620911.8128,468400.5029,24778.72026,20
+154427,618048.7543,468205.4148,25698.74259,20
+154428,617793.2367,466835.5046,25813.68215,20
+154429,617309.9275,466603.5509,27766.26002,20
+154430,615917.3169,465065.2225,28822.53281,20
+154431,614889.15,464992.5553,29249.17372,20
+154432,612786.2874,464496.5301,29948.54206,20
+154433,614234.8119,463896.3634,30843.87268,20
+154434,610854.6962,463417.0132,31332.98371,20
+154435,612115.9704,462846.82,32182.18011,20
+154436,609457.356,462697.4024,32780.30134,20
+154437,608449.8371,460859.7815,33675.2008,20
+154438,609611.336,461109.7037,33942.12537,20
+154439,605881.7417,461594.1533,34968.43257,20
+154440,607444.0034,541775.0243,35542.02795,21
+154441,703781.3667,736725.5136,27972.0871,21
+154442,698814.2812,729436.7723,27492.92981,21
+154443,696748.2202,724595.9445,27623.5214,21
+154444,694053.2177,721944.1184,28126.74721,21
+154445,694797.4688,719380.41,28228.62885,21
+154446,690908.8322,715104.0876,28649.60918,21
+154447,691178.6147,712098.121,28987.64319,21
+154448,690990.7208,709791.4197,29239.23786,21
+154449,687635.1801,705682.3989,27756.78188,21
+154450,687801.4979,702020.9535,28000.34174,21
+154451,685630.3267,701014.7241,27684.19436,21
+154452,685754.0289,696903.2838,28438.11772,21
+154453,683491.3999,693049.1978,25084.68075,21
+154454,683269.5066,692311.4779,24721.8231,21
+154455,681931.2528,686416.7402,25008.01102,21
+154456,681213.9499,686178.3916,25178.67088,21
+154457,678668.6254,681566.7273,25287.32628,21
+154458,679774.9674,679445.3643,25839.3164,21
+154459,676776.9658,676042.4284,25827.13524,21
+154460,677804.8816,673393.9039,26035.37892,21
+154461,675474.168,670157.6965,26382.32033,21
+154462,675395.9972,668004.8311,26655.36358,21
+154463,672881.6831,664303.7896,26717.27948,21
+154464,673437.0906,661471.3683,27091.82336,21
+154465,671733.8109,658934.8419,27343.39771,21
+154466,672361.5181,657189.2789,27530.47831,21
+154467,668318.1801,652080.1132,27765.27873,21
+154468,670895.7631,650628.2197,28063.60341,21
+154469,667389.8534,646875.2869,28103.80287,21
+154470,667754.6617,645269.6347,28450.36706,21
+154471,666657.7089,641181.0745,28419.54697,21
+154472,665685.2822,638873.2167,28369.42693,21
+154473,664538.3107,635907.1667,28248.16458,21
+154474,664141.3178,634099.8725,27896.07033,21
+154475,662918.7277,629829.4989,28223.48431,21
+154476,661971.6897,627667.9693,27782.61741,21
+154477,659281.2722,624859.4431,28066.67509,21
+154478,661508.8413,621749.8164,27989.78311,21
+154479,658313.5657,619003.6101,27645.12701,21
+154480,658919.5258,616620.7649,27990.40436,21
+154481,656842.4243,613400.7685,27466.43546,21
+154482,655702.1757,610833.2917,27742.86127,21
+154483,655769.7183,607433.7228,27610.995,21
+154484,654888.244,605329.0717,27313.55673,21
+154485,653003.319,602246.1426,27599.13678,21
+154486,653313.4527,599135.2416,27235.2687,21
+154487,651296.7241,596483.8908,27245.93211,21
+154488,650893.5183,591853.621,27088.22059,21
+154489,651110.5092,589653.9508,27071.37668,21
+154490,648397.247,587787.9674,26990.41113,21
+154491,647760.4373,583817.477,26926.54751,21
+154492,648153.0778,580512.2069,26796.93966,21
+154493,646185.9688,579051.139,26825.40309,21
+154494,645825.6281,575409.3183,26350.57678,21
+154495,645024.2175,572736.166,26614.29251,21
+154496,643527.4994,570715.3366,26527.91356,21
+154497,643291.3414,566543.2343,26246.60858,21
+154498,641550.1426,564551.9117,26326.14785,21
+154499,641851.3488,561524.4779,25942.32399,21
+154500,640217.9166,558528.9268,26077.94494,21
+154501,408660.1311,408525.2517,923.3620568,21
+154502,390939.0121,403656.9058,678.1817808,21
+154503,385103.5399,401161.1529,595.5189732,21
+154504,381821.2044,399641.9148,511.1889811,21
+154505,376150.284,397199.9096,443.3352306,21
+154506,372283.5555,395828.3898,282.9576366,21
+154507,368307.1453,393070.8155,212.8999522,21
+154508,365162.8279,391972.7532,212.9008433,21
+154509,359346.2345,389813.0598,161.7862082,21
+154510,358006.0167,388678.8933,135.8869052,21
+154511,352448.8179,386898.9122,109.7122123,21
+154512,350195.7192,384668.8268,92.08318544,21
+154513,346039.5017,383327.0628,38.01576918,21
+154514,342180.8955,381443.2442,38.01579674,21
+154515,340590.71,379253.559,0,21
+154516,337812.1734,378144.4668,0,21
+154517,335603.4927,376084.3471,0,21
+154518,333623.7295,374263.6979,0,21
+154519,330969.1266,372374.0164,0,21
+154520,329013.4609,370966.0169,0,21
+154521,326747.4917,368565.4458,0,21
+154522,324642.9007,366534.7256,0,21
+154523,321962.2582,364989.0866,0,21
+154524,320721.228,363470.1872,0,21
+154525,317875.817,361532.8199,0,21
+154526,315956.7265,360424.2535,0,21
+154527,313822.2565,358380.506,0,21
+154528,311807.0035,356511.5944,0,21
+154529,309901.0784,355332.9943,0,21
+154530,307515.0472,353738.266,0,21
+154531,305276.2775,351806.3501,0,21
+154532,303192.381,350716.9537,0,21
+154533,301537.2624,349509.303,0,21
+154534,298443.3164,347840.6456,0,21
+154535,297286.7371,346846.2495,0,21
+154536,293120.6474,345384.3807,0,21
+154537,291293.6673,344241.6129,0,21
+154538,288486.2476,342855.0671,0,21
+154539,286465.5021,341303.4758,0,21
+154540,284243.6634,340661.1212,0,21
+154541,282330.5829,340365.6601,0,21
+154542,279471.8977,339972.0794,0,21
+154543,277817.4486,338713.772,0,21
+154544,275525.0015,337319.5319,0,21
+154545,273225.2613,336619.0479,0,21
+154546,270601.3077,335831.7148,0,21
+154547,269238.6965,334298.5239,0,21
+154548,266662.5703,333260.6748,0,21
+154549,264262.8127,332605.4023,0,21
+154550,262364.237,331122.1856,0,21
+154551,260275.5381,330577.1392,0,21
+154552,258039.1599,329383.7521,0,21
+154553,255923.3646,328197.8589,0,21
+154554,254031.9247,327791.4204,0,21
+154555,251773.8901,326392.8449,0,21
+154556,249961.5105,326401.4621,0,21
+154557,247693.6466,325228.7111,0,21
+154558,245771.2087,323613.3344,0,21
+154559,243391.7838,323370.4985,0,21
+154560,241457.8677,322202.7638,0,21
+154561,240769.1604,322743.6424,0,21
+154562,239999.8466,323706.345,0,21
+154563,238720.9504,323912.1591,0,21
+154564,238337.6752,325440.8245,0,21
+154565,237454.8296,325635.045,0,21
+154566,236713.402,326180.8593,0,21
+154567,235648.8589,327362.044,0,21
+154568,235210.5815,327859.4855,0,21
+154569,234042.6252,328567.7417,0,21
+154570,233724.8722,329165.7996,0,21
+154571,232567.5371,330574.4581,0,21
+154572,231849.7043,330576.4046,0,21
+154573,229965.9034,331643.7186,0,21
+154574,228735.6716,332248.2645,0,21
+154575,227951.894,333203.6582,0,21
+154576,227124.283,334035.9379,0,21
+154577,226294.6796,334475.4265,0,21
+154578,225748.8453,335634.81,0,21
+154579,224783.7181,336367.8624,0,21
+154580,224032.0708,337149.5455,0,21
+154581,223020.633,336717.0104,0,21
+154582,222415.4058,338293.0898,0,21
+154583,221809.9547,338744.2792,0,21
+154584,220562.6766,339247.9379,0,21
+154585,220067.2317,340350.7435,0,21
+154586,219353.7634,341424.1906,0,21
+154587,217930.0371,341443.2519,0,21
+154588,217841.009,343173.6786,0,21
+154589,216590.1276,343359.638,0,21
+154590,215932.0547,344274.9119,0,21
+154591,215784.5788,344781.9191,0,21
+154592,215199.7789,345403.06,0,21
+154593,215102.2153,345574.3941,0,21
+154594,214456.987,345908.5154,0,21
+154595,214714.1867,346461.7452,0,21
+154596,214117.3931,346781.6947,0,21
+154597,213859.2113,347157.3988,0,21
+154598,213831.3685,347671.8741,0,21
+154599,213571.3199,347569.3087,0,21
+154600,213469.0802,348057.932,0,21
+154601,212925.7642,348276.8388,0,21
+154602,213383.8813,348911.5948,0,21
+154603,213651.8468,348729.7136,0,21
+154604,214672.0027,349383.898,0,21
+154605,214031.2162,349100.1196,0,21
+154606,214174.4398,349680.94,0,21
+154607,214204.4545,350163.5471,0,21
+154608,213886.7577,350088.1355,0,21
+154609,214205.0254,350250.9585,0,21
+154610,213802.6534,350494.0856,0,21
+154611,213890.0873,350686.3306,0,21
+154612,213915.9338,350803.8445,0,21
+154613,213809.7666,350930.6981,0,21
+154614,214139.5272,351314.4554,0,21
+154615,213682.5582,351002.0385,0,21
+154616,214235.7584,351659.4176,0,21
+154617,214180.8683,351401.0204,0,21
+154618,213979.507,351893.2906,0,21
+154619,214428.4152,351882.7158,0,21
+154620,214349.1296,352263.7487,0,21
+154621,217867.0252,354946.0525,0,21
+154622,216198.3458,353074.1592,0,21
+154623,214979.3736,350809.6739,0,21
+154624,213292.4512,349282.2415,0,21
+154625,211821.7659,346840.4336,0,21
+154626,210251.334,344923.9867,0,21
+154627,209015.47,342806.9641,0,21
+154628,207206.8577,340854.3887,0,21
+154629,205560.8766,338676.0524,0,21
+154630,205990.7458,336963.0696,0,21
+154631,204204.1343,334117.3416,0,21
+154632,203244.234,332457.8089,0,21
+154633,201395.409,329990.2645,0,21
+154634,200071.6321,328382.3679,0,21
+154635,198758.4071,325815.0437,0,21
+154636,197050.248,323842.9221,0,21
+154637,195835.691,321462.8101,0,21
+154638,194406.1756,319139.326,0,21
+154639,192808.0395,317314.9531,0,21
+154640,191410.2467,314997.8641,0,21
+154641,190084.1656,312655.4768,0,21
+154642,188405.2136,310671.5344,0,21
+154643,187216.0353,308578.4561,0,21
+154644,185811.3632,306027.4825,0,21
+154645,184009.0967,304280.977,0,21
+154646,183952.2919,301636.1931,0,21
+154647,182539.2816,299650.7101,0,21
+154648,181054.7999,297437.9516,0,21
+154649,179726.9357,295101.2698,0,21
+154650,178557.5025,292805.6312,0,21
+154651,176813.6974,291162.2274,0,21
+154652,175268.1507,289170.8045,0,21
+154653,173537.8906,287697.3871,0,21
+154654,172150.6296,285955.7804,0,21
+154655,170615.0792,284058.9315,0,21
+154656,169085.6436,282420.529,0,21
+154657,167686.2068,280432.4351,0,21
+154658,166145.8931,279097.0038,0,21
+154659,164589.9219,277300.6888,0,21
+154660,163177.9666,275668.3535,0,21
+154661,161677.6146,273778.3295,0,21
+154662,160229.2671,272337.6358,0,21
+154663,158423.3321,270637.6958,0,21
+154664,157424.0589,268954.0527,0,21
+154665,155607.2533,267029.5273,0,21
+154666,154214.8116,266079.7873,0,21
+154667,152490.9322,263601.1062,0,21
+154668,151233.5092,262669.9115,0,21
+154669,149834.8806,260578.0153,0,21
+154670,148008.3841,259129.6244,0,21
+154671,146570.3909,257589.1662,0,21
+154672,145302.1581,255703.5879,0,21
+154673,143631.7615,254835.0597,0,21
+154674,141912.2559,252391.2852,0,21
+154675,140820.6391,251228.8369,0,21
+154676,138926.5672,249836.8689,0,21
+154677,137679.5738,247880.2248,0,21
+154678,135837.8834,246426.7368,0,21
+154679,134561.3067,245029.176,0,21
+154680,132990.0987,243393.8008,0,21
+154681,127747.0546,236780.9351,0,21
+154682,127028.274,235437.7908,0,21
+154683,126876.3155,233462.1872,0,21
+154684,126293.057,232313.3199,0,21
+154685,126257.8851,230627.8381,0,21
+154686,125134.9305,229109.3668,0,21
+154687,125520.1402,227217.2279,0,21
+154688,124414.0279,226217.1538,0,21
+154689,124664.3655,224396.1592,0,21
+154690,123792.8403,223061.579,0,21
+154691,123461.6374,221389.2603,0,21
+154692,123117.8504,220218.4407,0,21
+154693,122861.637,218359.6908,0,21
+154694,122356.4331,217303.5629,0,21
+154695,121827.9536,215233.2664,0,21
+154696,121469.7356,214526.5699,0,21
+154697,121237.2408,212404.1645,0,21
+154698,120554.7472,211370.3754,0,21
+154699,120503.8163,209837.9972,0,21
+154700,119988.4246,208446.3783,0,21
+154701,119307.4913,206778.6097,0,21
+154702,119197.7858,205545.9594,0,21
+154703,118862.4924,204296.3557,0,21
+154704,118143.5903,202347.7036,0,21
+154705,117960.5361,201524.4545,0,21
+154706,117736.5398,199680.4095,0,21
+154707,116998.8929,198505.0587,0,21
+154708,116686.9216,197234.1754,0,21
+154709,116423.3017,195621.4469,0,21
+154710,116089.9689,194420.6437,0,21
+154711,115040.562,192530.0752,0,21
+154712,114915.6234,190944.26,0,21
+154713,114075.4125,188754.9546,0,21
+154714,113009.2514,187505.1626,0,21
+154715,112622.8657,185124.4942,0,21
+154716,111903.7701,183791.3857,0,21
+154717,111090.0027,181618.1899,0,21
+154718,109411.6644,180228.1623,0,21
+154719,109096.4452,177634.3423,0,21
+154720,108029.1842,176850.7052,0,21
+154721,106944.128,175376.6752,0,21
+154722,106758.5996,174149.865,0,21
+154723,105667.6284,173074.7027,0,21
+154724,104891.9765,171678.7196,0,21
+154725,103999.4961,170507.7106,0,21
+154726,103316.3376,169276.9425,0,21
+154727,102393.7943,168181.7648,0,21
+154728,101494.0418,166839.0326,0,21
+154729,101144.2788,165682.8613,0,21
+154730,99542.55955,164370.5128,0,21
+154731,99142.19733,163583.9337,0,21
+154732,98447.65439,161556.6605,0,21
+154733,97103.02833,161125.6926,0,21
+154734,96544.84567,159646.3824,0,21
+154735,95747.4742,158177.7362,0,21
+154736,94747.63187,157356.5589,0,21
+154737,93791.45078,155880.6027,0,21
+154738,92910.90599,154985.3523,0,21
+154739,92333.18621,153449.3517,0,21
+154740,90965.76685,153023.5183,0,21
+154741,113911.5421,170063.8586,0,21
+154742,112604.0282,168922.0091,0,21
+154743,110885.1099,167412.6645,0,21
+154744,109773.2713,166167.6353,0,21
+154745,108183.8978,164391.3919,0,21
+154746,106357.597,163657.8911,0,21
+154747,105360.3788,161556.1317,0,21
+154748,103575.6807,160653.6801,0,21
+154749,102003.6745,159120.0763,0,21
+154750,100668.9388,157964.8688,0,21
+154751,99046.19866,156354.7772,0,21
+154752,97548.53837,155149.475,0,21
+154753,95998.91934,153811.0344,0,21
+154754,94412.62644,151525.6051,0,21
+154755,92908.68095,149966.8172,0,21
+154756,91379.62427,148493.3979,0,21
+154757,89732.76647,147477.8183,0,21
+154758,88335.37162,145802.6301,0,21
+154759,86598.16998,144611.7681,0,21
+154760,84871.59304,143269.6728,0,21
+154761,83445.62954,141980.7254,0,21
+154762,81686.33726,140474.5353,0,21
+154763,80203.12385,139320.3069,0,21
+154764,78583.0599,137549.5053,0,21
+154765,76822.2391,136577.3068,0,21
+154766,75323.58379,134990.4652,0,21
+154767,73746.4485,133500.6262,0,21
+154768,71536.83734,132350.5941,0,21
+154769,70905.28937,130782.2874,0,21
+154770,70221.97505,129572.4654,0,21
+154771,69768.41755,128046.0297,0,21
+154772,69550.19063,126486.3468,0,21
+154773,69247.54841,125474.1229,0,21
+154774,68903.37131,123837.2418,0,21
+154775,68562.09277,122564.3975,0,21
+154776,68439.84528,121054.3958,0,21
+154777,68158.18659,119883.7938,0,21
+154778,67731.53031,118333.4163,0,21
+154779,67724.51402,116863.0464,0,21
+154780,67344.5692,115631.5364,0,21
+154781,67134.92911,114374.3409,0,21
+154782,67109.47113,112684.2831,0,21
+154783,67218.08495,111315.1264,0,21
+154784,66530.03574,110031.4754,0,21
+154785,66787.5133,108474.5696,0,21
+154786,66535.52861,107279.3353,0,21
+154787,66387.68467,105636.6276,0,21
+154788,66305.52825,104273.3991,0,21
+154789,66288.89982,103087.0342,0,21
+154790,65982.90504,101192.2272,0,21
+154791,65993.88809,100168.1751,0,21
+154792,66049.46435,98535.41316,0,21
+154793,65532.73464,97157.03521,0,21
+154794,65901.78707,95524.39265,0,21
+154795,65466.04324,94324.96957,0,21
+154796,65841.70883,92744.40868,0,21
+154797,65224.70453,91280.66541,0,21
+154798,65536.92497,89819.45327,0,21
+154799,65326.75941,88350.78037,0,21
+154800,65309.85933,86851.09454,0,21
+154801,46864.10202,71781.06072,0,21
+154802,46700.87262,69946.91217,0,21
+154803,46511.2037,68240.76155,0,21
+154804,46395.76902,67026.59469,0,21
+154805,46500.93899,64936.39182,0,21
+154806,46155.65181,63407.66476,0,21
+154807,46287.93251,61872.2445,0,21
+154808,46225.18772,60101.76526,0,21
+154809,46163.17557,58690.13581,0,21
+154810,45929.74575,57014.60136,0,21
+154811,46210.23714,55743.64671,0,21
+154812,45932.35625,53698.36841,0,21
+154813,45976.23716,52663.89592,0,21
+154814,46095.35612,50652.58785,0,21
+154815,45693.60255,49367.87911,0,21
+154816,46221.93995,47728.10108,0,21
+154817,45473.71021,46093.20932,0,21
+154818,45948.89224,44694.32712,0,21
+154819,45532.48891,43195.91644,0,21
+154820,45684.0665,41563.6051,0,21
+154821,45452.55329,40097.12895,0,21
+154822,45377.86954,38577.05673,0,21
+154823,45384.92513,36975.88457,0,21
+154824,45200.7284,35613.51788,0,21
+154825,45344.9885,26614.07464,0,21
+154826,45164.05606,23101.14062,0,21
+154827,45124.88332,22765.00351,0,21
+154828,45147.84025,22551.21039,0,21
+154829,44752.90208,22270.32169,0,21
+154830,45068.24691,22232.50826,0,21
+154831,44742.06772,22108.44254,0,21
+154832,44362.34689,21937.20998,0,21
+154833,44082.17347,21893.9093,0,21
+154834,43662.19992,21787.37984,0,21
+154835,43592.83362,21876.85126,0,21
+154836,42849.0598,21571.77341,0,21
+154837,42779.29404,21724.56267,0,21
+154838,42389.34759,21526.35979,0,21
+154839,41950.40767,21428.27763,0,21
+154840,42342.63365,21507.66144,0,21
+154841,42145.99137,21366.93658,0,21
+154842,41742.61053,21369.06971,0,21
+154843,41579.37044,21332.40584,0,21
+154844,40795.32738,21318.40957,0,21
+154845,40934.49088,21312.87386,0,21
+154846,40241.1624,21163.06721,0,21
+154847,39892.8143,21141.77582,0,21
+154848,39782.94381,21373.04599,0,21
+154849,39221.02818,20991.65814,0,21
+154850,38719.08126,21102.16165,0,21
+154851,38558.0572,21186.17295,0,21
+154852,38053.37282,20800.0587,0,21
+154853,37488.58469,20897.93582,0,21
+154854,37561.13511,20838.46099,0,21
+154855,36731.69453,20456.81729,0,21
+154856,36265.09038,20392.65766,0,21
+154857,36346.60789,20260.70618,0,21
+154858,35659.43523,20103.53435,0,21
+154859,35120.70806,19923.33164,0,21
+154860,34997.46381,19891.25267,0,21
+154861,40632.98054,25401.74538,0,21
+154862,40230.76869,25859.74746,0,21
+154863,134125.4379,25467.57093,0,21
+154864,39963.40705,25704.19002,0,21
+154865,39475.01557,25438.06329,0,21
+154866,39510.40619,25547.95788,0,21
+154867,38921.93871,25626.73287,0,21
+154868,38847.39809,25258.79917,0,21
+154869,38452.61529,25469.31539,0,21
+154870,38316.45567,25469.58665,0,21
+154871,37920.30987,25183.3785,0,21
+154872,37559.44906,25548.15299,0,21
+154873,37396.70296,25165.93725,0,21
+154874,36998.17736,25262.42886,0,21
+154875,36507.8569,24977.95753,0,21
+154876,36055.26017,24691.2911,0,21
+154877,35827.15685,24676.465,0,21
+154878,35356.06068,24677.80488,0,21
+154879,35103.33783,24672.39167,0,21
+154880,34569.30051,24623.21603,0,21
+154881,34221.56005,24673.69584,0,21
+154882,33902.8022,24608.28023,0,21
+154883,127123.5812,24488.91009,0,21
+154884,32826.92782,24609.46435,0,21
+154885,32536.18479,24597.57357,0,21
+154886,32250.47257,24583.79956,0,21
+154887,31616.40554,24582.61048,0,21
+154888,31053.53306,24568.77246,0,21
+154889,30665.18201,24539.88212,0,21
+154890,30244.70942,24439.29944,0,21
+154891,29744.30186,24509.73693,0,21
+154892,29402.3722,24525.93572,0,21
+154893,29033.02117,24249.3286,0,21
+154894,28644.76316,24488.54176,0,21
+154895,28108.16754,24088.3921,0,21
+154896,27811.60279,24180.9701,0,21
+154897,27110.32446,24187.91514,0,21
+154898,26955.64337,23927.96539,0,21
+154899,26352.60147,23863.11497,0,21
+154900,26036.15032,23895.50219,0,21
+154901,25347.47681,23700.54534,0,21
+154902,24933.91578,23584.56446,0,21
+154903,24532.67024,23288.29771,0,21
+154904,23792.45752,23512.08027,0,21
+154905,23353.73812,22990.60386,0,21
+154906,23019.31998,23219.26808,0,21
+154907,22217.37374,22675.79194,0,21
+154908,21744.80989,22754.22846,0,21
+154909,21174.71565,22619.23227,0,21
+154910,20714.31971,22195.03241,0,21
+154911,20314.99037,22133.00655,0,21
+154912,20266.46363,21876.34402,0,21
+154913,20008.48299,21674.85965,0,21
+154914,20165.02453,21537.73439,0,21
+154915,20088.66811,21057.66506,0,21
+154916,19957.40414,21056.64398,0,21
+154917,19971.14249,20465.13179,0,21
+154918,19957.40738,20519.10681,0,21
+154919,19762.96159,19970.1754,0,21
+154920,19943.64096,19777.80347,0,21
+154921,13495.74569,13538.50471,0,21
+154922,13295.58694,12914.49778,0,21
+154923,13167.61576,12755.89355,0,21
+154924,13053.24346,12276.70572,0,21
+154925,12837.81897,11929.33702,0,21
+154926,12823.8811,11440.61055,0,21
+154927,12607.6941,11078.28301,0,21
+154928,12593.68561,10594.36646,0,21
+154929,12362.64352,10157.27582,0,21
+154930,12362.64524,9654.054295,0,21
+154931,12144.90246,9433.635962,0,21
+154932,12116.55366,9530.167158,0,21
+154933,11897.97866,9493.453379,0,21
+154934,11897.98032,9421.335563,0,21
+154935,11664.32798,9264.899062,0,21
+154936,11649.9799,9455.333838,0,21
+154937,11429.78001,9284.488346,0,21
+154938,11415.35083,9257.924764,0,21
+154939,11194.32005,9241.714107,0,21
+154940,11179.80738,9257.927091,0,21
+154941,10943.33235,9375.992511,0,21
+154942,10957.93415,9257.928982,0,21
+154943,10810.05406,9375.995166,0,21
+154944,10705.9138,9257.929762,0,21
+154945,10586.84338,9375.99693,0,21
+154946,10467.52969,9392.208397,0,21
+154947,10452.70276,9375.999422,0,21
+154948,10228.16301,9392.210306,0,21
+154949,10213.23883,9376.001224,0,21
+154950,10093.13084,9376.019575,0,21
+154951,9972.768653,9526.155583,0,21
+154952,9957.691082,9376.020146,0,21
+154953,9746.402985,9526.157794,0,21
+154954,9716.085093,9376.022058,0,21
+154955,9716.086411,9659.814814,0,21
+154956,9473.422892,9392.215369,0,21
+154957,9488.724312,9643.62439,0,21
+154958,9229.678706,9526.181241,0,21
+154959,9458.067972,9659.819602,0,21
+154960,9000.369894,9526.183222,0,21
+154961,9214.20138,9776.977888,0,21
+154962,8969.216221,9542.335551,0,21
+154963,8977.031821,9776.979878,0,21
+154964,8738.833044,9675.993686,0,21
+154965,8830.548307,9793.174078,0,21
+154966,8723.085809,9793.194572,0,21
+154967,8491.663966,9793.195329,0,21
+154968,8575.699796,9809.346871,0,21
+154969,8475.767514,9793.197273,0,21
+154970,8335.589499,9942.396395,0,21
+154971,8227.255085,9793.200058,0,21
+154972,8319.462868,10075.14668,0,21
+154973,8094.3834,9809.352581,0,21
+154974,8086.25404,10075.1488,0,21
+154975,7952.880226,10075.14976,0,21
+154976,7961.085369,9942.403346,0,21
+154977,7928.109646,10075.15269,0,21
+154978,7709.723347,10075.1538,0,21
+154979,7709.72437,10223.71631,0,21
+154980,7676.286901,10075.15597,0,21
+154981,7693.067168,10207.60125,0,21
+154982,7676.285868,10091.26055,0,21
+154983,7566.730363,10191.45443,0,21
+154984,7785.599423,10091.26372,0,21
+154985,7558.289913,10059.00216,0,21
+154986,7777.158988,10207.60832,0,21
+154987,7659.369759,10059.00488,0,21
+154988,7667.84541,10075.15652,0,21
+154989,7659.369783,10191.45929,0,21
+154990,7760.170807,10059.00751,0,21
+154991,7659.369821,10059.00816,0,21
+154992,7860.693634,10059.00891,0,21
+154993,7659.369864,10059.00951,0,21
+154994,7751.619409,10175.27084,0,21
+154995,7860.693703,10059.01169,0,21
+154996,7642.305851,10042.81986,0,21
+154997,7860.693743,10059.01309,0,21
+154998,7852.101177,10042.82128,0,21
+154999,7860.693785,10042.82188,0,21
+155000,7734.387368,10042.82327,0,21
+155001,7969.445809,10042.82411,0,21
+155002,7843.271778,10026.58971,0,21
+155003,7843.541287,10042.82551,0,21
+155004,8069.467346,10042.82626,0,21
+155005,7843.427161,10026.59172,0,21
+155006,7952.265038,10026.59312,0,21
+155007,8060.867606,10042.8291,0,21
+155008,7952.264934,10010.31643,0,21
+155009,8060.867349,10042.83097,0,21
+155010,8052.184538,10010.31849,0,21
+155011,8060.876904,10042.8434,0,21
+155012,8052.196192,10010.33383,0,21
+155013,8160.567008,10026.61274,0,21
+155014,8043.464028,10010.33508,0,21
+155015,8052.196747,10026.61386,0,21
+155016,8151.834972,10010.33612,0,21
+155017,8043.464408,10026.61474,0,21
+155018,8143.049368,10010.33809,0,21
+155019,8043.465416,10010.33879,0,21
+155020,8134.204662,10010.3392,0,21
+155021,8151.836218,10010.33954,0,21
+155022,8025.834169,10142.79287,0,21
+155023,8242.345684,10010.34015,0,21
+155024,8025.834743,10010.34151,0,21
+155025,8134.205576,9994.020081,0,21
+155026,8125.295995,10142.79527,0,21
+155027,8025.834992,10010.34254,0,21
+155028,8224.455367,9994.020873,0,21
+155029,8025.834974,10142.79583,0,21
+155030,8224.455802,9994.022081,0,21
+155031,8007.944388,10010.34437,0,21
+155032,8224.455917,10126.47552,0,21
+155033,8016.92595,10126.47554,0,21
+155034,8215.392742,10010.22261,0,21
+155035,8116.314932,10126.17709,0,21
+155036,8107.25219,9994.139864,0,21
+155037,8116.315409,10258.52561,0,21
+155038,8206.235257,9993.968871,0,21
+155039,8007.944708,10126.40889,0,21
+155040,8206.235177,10126.38771,0,21
+155041,18710.92521,20938.08676,0,21
+155042,19327.64845,21562.60126,0,21
+155043,19509.79615,21818.05061,0,21
+155044,19718.48549,22048.1563,0,21
+155045,19718.48848,22072.79585,0,21
+155046,19913.132,22538.04614,0,21
+155047,20107.24737,22326.5696,0,21
+155048,20120.64589,23494.05623,0,21
+155049,20300.84288,23279.12208,0,21
+155050,20314.21181,23544.52492,0,21
+155051,20507.25278,23626.37243,0,21
+155052,20507.25717,23988.5614,0,21
+155053,20699.78111,24029.23408,0,21
+155054,20713.06301,24154.32198,0,21
+155055,20891.79646,24430.22815,0,21
+155056,21083.29733,24443.50635,0,21
+155057,20918.27358,24816.25289,0,21
+155058,21274.3144,24732.61321,0,21
+155059,21109.74713,25089.99901,0,21
+155060,21477.98043,25240.50232,0,21
+155061,21300.68752,24787.86386,0,21
+155062,21667.94574,25142.931,0,21
+155063,21504.23348,25291.9266,0,21
+155064,21857.41563,25319.2194,0,21
+155065,21694.14483,25551.73608,0,21
+155066,21883.55847,25604.70111,0,21
+155067,22059.45178,25822.81456,0,21
+155068,21896.59294,25889.1041,0,21
+155069,22247.91331,26110.84512,0,21
+155070,22273.89109,26350.76688,0,21
+155071,22273.88426,26172.70586,0,21
+155072,22461.80003,26633.80765,0,21
+155073,22461.80403,26672.54154,0,21
+155074,22662.13433,26685.16102,0,21
+155075,22836.19504,27157.08927,0,21
+155076,22861.9114,26966.22369,0,21
+155077,22861.91572,27212.28598,0,21
+155078,23208.68363,27449.29673,0,21
+155079,23073.90729,27570.18063,0,21
+155080,23234.30284,27703.99222,0,21
+155081,23432.5276,27862.65815,0,21
+155082,25115.80676,28076.52475,0,21
+155083,24660.43059,28191.39812,0,21
+155084,25004.53378,28379.20042,0,21
+155085,25541.40513,28471.8967,0,21
+155086,25427.49631,28705.49285,0,21
+155087,26110.13637,28744.04172,0,21
+155088,26039.11535,29006.37507,0,21
+155089,26579.2387,29018.6198,0,21
+155090,26643.4695,30373.52894,0,21
+155091,26971.57006,30847.77272,0,21
+155092,27119.51175,30685.68611,0,21
+155093,27665.43828,31393.93324,0,21
+155094,27665.44504,31550.85063,0,21
+155095,28052.01685,31901.29303,0,21
+155096,28350.89701,32209.72618,0,21
+155097,28350.90403,32694.04302,0,21
+155098,28902.45448,33158.58181,0,21
+155099,29090.98676,33870.4387,0,21
+155100,29209.52163,34255.81347,0,21
+155101,37829.06026,43445.35272,0,21
+155102,38947.08567,44493.87313,0,21
+155103,39466.39435,44854.1345,0,21
+155104,40513.20782,45214.52796,0,21
+155105,40596.88851,45756.18749,0,21
+155106,41981.81752,46017.65599,0,21
+155107,42297.54567,46654.92693,0,21
+155108,42878.35616,46594.40339,0,21
+155109,43599.66525,47372.80474,0,21
+155110,44046.45889,47485.82477,0,21
+155111,44701.61927,48032.52455,0,21
+155112,45413.4991,48078.13723,0,21
+155113,45735.06057,48611.04869,0,21
+155114,46476.17321,48985.27811,0,21
+155115,47008.55678,49264.5465,0,21
+155116,47582.35006,49547.1975,0,21
+155117,48133.84567,49862.80392,0,21
+155118,48684.71078,50292.84544,0,21
+155119,49361.63864,50552.89876,0,21
+155120,49806.70491,50854.00372,0,21
+155121,50454.19003,51228.47515,0,21
+155122,51093.19708,51410.20707,0,21
+155123,51507.46082,52086.40245,0,21
+155124,52155.20183,51996.16582,0,21
+155125,52861.23445,52328.69312,0,21
+155126,53042.5295,52944.55318,0,21
+155127,54122.55235,53092.8683,0,21
+155128,54329.71361,53197.99138,0,21
+155129,55140.27821,53757.04511,0,21
+155130,55583.93543,53854.17023,0,21
+155131,62263.57364,54494.03155,0,21
+155132,65479.10825,54304.14509,0,21
+155133,64734.67679,54774.81859,0,21
+155134,66460.95406,55321.58561,0,21
+155135,67776.58634,55424.989,0,21
+155136,69372.529,55610.69114,0,21
+155137,71106.46247,56036.73949,0,21
+155138,70991.95208,56237.33491,0,21
+155139,73472.44268,56689.11136,0,21
+155140,73666.39343,56689.12383,0,21
+155141,74586.31541,57229.9388,0,21
+155142,77109.11509,57339.91449,0,21
+155143,77652.4992,57751.34896,0,21
+155144,84199.66234,57782.8967,0,21
+155145,81855.6695,58398.18573,0,21
+155146,85675.40792,58589.89821,0,21
+155147,85851.24384,58641.62356,0,21
+155148,88739.19669,59052.37123,0,21
+155149,89029.72454,59271.30808,0,21
+155150,91792.84731,59557.54067,0,21
+155151,92912.67456,59927.56833,0,21
+155152,94216.70191,60084.11127,0,21
+155153,96662.38201,60324.3449,0,21
+155154,97435.05682,60621.70694,0,21
+155155,99801.01695,60954.07884,0,21
+155156,100596.4151,61173.35661,0,21
+155157,102274.5923,61370.19482,0,21
+155158,105081.9782,61781.14288,0,21
+155159,105510.7922,61801.94183,0,21
+155160,107761.2351,62223.82304,0,21
+155161,108314.3625,62397.53633,0,21
+155162,111578.8321,62233.13704,0,21
+155163,111113.0205,62633.85515,0,21
+155164,114229.7962,62340.40739,0,21
+155165,114008.0646,62835.86089,0,21
+155166,115578.9049,62870.13469,0,21
+155167,117789.4901,62653.11062,0,21
+155168,117875.841,63090.76943,0,21
+155169,119219.8669,63062.68279,0,21
+155170,121064.1016,63265.40912,0,21
+155171,121949.8901,63091.20781,0,21
+155172,123059.8393,63508.46939,0,21
+155173,124509.9776,63288.25972,0,21
+155174,125200.4059,63614.85793,0,21
+155175,126498.5218,63617.83486,0,21
+155176,127830.0041,63721.07742,0,21
+155177,128528.9149,63724.1001,0,21
+155178,130483.3177,63944.32094,0,21
+155179,131006.1231,63830.19658,0,21
+155180,132461.0444,64322.42207,0,21
+155181,133666.8366,63790.036,0,21
+155182,134383.1885,64354.86166,0,21
+155183,135601.9392,64337.72207,0,21
+155184,136734.8778,64392.3551,0,21
+155185,137794.9884,64966.54745,0,21
+155186,139465.4055,64614.87911,0,21
+155187,139975.1452,64976.1871,0,21
+155188,140978.152,65125.14847,0,21
+155189,142537.8618,65495.98758,0,21
+155190,143420.6705,65329.36616,0,21
+155191,144157.2927,65868.60498,0,21
+155192,145817.7658,65810.00168,0,21
+155193,146977.3906,65994.47601,0,21
+155194,148435.4837,66064.74081,0,21
+155195,149256.8218,66192.2064,0,21
+155196,149767.2867,66237.93948,0,21
+155197,151782.85,66425.14896,0,21
+155198,151608.3376,66489.09959,0,21
+155199,153555.5478,66530.32489,0,21
+155200,154825.0333,66770.19242,0,21
+155201,154589.5996,66852.71541,0,21
+155202,156612.672,66701.92342,0,21
+155203,156817.2336,66947.10455,0,21
+155204,158744.571,67179.19761,0,21
+155205,159384.4665,66977.52706,0,21
+155206,160237.5674,67276.80968,0,21
+155207,161758.4356,67255.95746,0,21
+155208,161090.2813,67410.02278,0,21
+155209,164363.9586,69804.42872,0,21
+155210,163409.4319,70243.67598,0,21
+155211,165326.2549,70516.57173,0,21
+155212,165974.7703,70952.58612,0,21
+155213,167998.6835,71957.73624,0,21
+155214,167203.7613,71670.01266,0,21
+155215,170426.5521,72818.50879,0,21
+155216,172792.3153,72984.4502,0,21
+155217,172220.7603,73509.80192,0,21
+155218,174242.2693,73971.529,0,21
+155219,176326.1046,74442.24311,0,21
+155220,175533.413,75136.02021,0,21
+155221,184522.4403,77776.90833,0,21
+155222,186331.1859,79171.99121,0,21
+155223,187889.7305,81590.49636,0,21
+155224,188379.732,81628.04711,0,21
+155225,190243.891,82821.94934,0,21
+155226,190412.2399,84301.7369,0,21
+155227,191359.9563,84642.3995,0,21
+155228,193815.9568,85615.84499,0,21
+155229,192907.2714,86425.92676,0,21
+155230,195361.6449,87066.79803,0,21
+155231,196372.7656,88316.08163,0,21
+155232,198795.0035,88909.04333,0,21
+155233,199748.8825,89802.67232,0,21
+155234,201948.287,90663.98358,0,21
+155235,203278.9489,91717.48273,0,21
+155236,204928.4524,92101.2612,0,21
+155237,207062.5267,93398.53086,0,21
+155238,208946.348,94181.39567,0,21
+155239,209299.4851,95412.17668,0,21
+155240,211900.1606,95711.9243,0,21
+155241,212456.6242,96665.10136,0,21
+155242,216825.6968,97153.72652,0,21
+155243,220427.473,98349.62869,0,21
+155244,220623.676,98773.16243,0,21
+155245,223724.6993,99803.90917,0,21
+155246,225670.8165,100922.8898,0,21
+155247,228017.8753,100984.8701,0,21
+155248,228945.8714,102426.336,0,21
+155249,232168.7282,102777.3109,0,21
+155250,233398.6561,103948.2971,0,21
+155251,235178.8377,105016.2729,0,21
+155252,238313.8175,105413.7958,0,21
+155253,238832.8515,106493.0987,0,21
+155254,240981.3663,107076.2553,0,21
+155255,242915.0548,107762.3911,0,21
+155256,245251.0187,108681.8029,0,21
+155257,246601.6297,109089.0742,0,21
+155258,249697.3132,110471.034,0,21
+155259,251636.7757,110298.5212,0,21
+155260,252255.818,111287.1756,0,21
+155261,256007.8359,111759.683,0,21
+155262,256137.7172,112928.8265,0,21
+155263,258737.2965,113157.9594,0,21
+155264,260711.3452,114131.3389,0,21
+155265,262651.5689,115054.6916,0,21
+155266,263315.266,115354.7753,0,21
+155267,266203.5592,116597.1403,0,21
+155268,268107.7136,116595.1926,0,21
+155269,268959.24,118037.4276,0,21
+155270,271346.5917,118125.8276,0,21
+155271,273637.4749,119156.3695,0,21
+155272,274210.3681,119863.7348,0,21
+155273,276431.0118,120590.0627,0,21
+155274,278246.7082,121342.3808,0,21
+155275,279839.6592,122234.012,0,21
+155276,281264.1296,122731.8867,0,21
+155277,282883.0789,123758.4009,0,21
+155278,285423.6909,123940.5837,0,21
+155279,286090.5025,125482.0744,0,21
+155280,287936.5785,125572.9354,0,21
+155281,289137.9096,126486.7602,0,21
+155282,291216.0661,127553.7253,0,21
+155283,293321.4704,127983.9318,0,21
+155284,293663.7447,128835.7429,0,21
+155285,295577.2944,129709.714,0,21
+155286,296724.912,130297.9704,0,21
+155287,297242.1715,131266.6048,0,21
+155288,298429.0972,131995.0693,0,21
+155289,301437.5366,132553.0892,0,21
+155290,300115.0924,133406.7163,0,21
+155291,302893.9298,134059.2267,0,21
+155292,303741.6251,135157.5909,0,21
+155293,304506.8845,135623.4228,0,21
+155294,306530.2754,136535.512,0,21
+155295,306547.9851,137423.4768,0,21
+155296,309155.2748,138117.0547,0,21
+155297,309089.2382,139967.3407,0,21
+155298,310383.2547,140565.2649,0,21
+155299,311836.4354,141638.8523,0,21
+155300,312916.9153,143817.5495,0,21
+155301,314949.3843,143745.4743,0,21
+155302,314570.5592,145053.0207,0,21
+155303,316467.5131,146401.129,0,21
+155304,317700.8836,147159.7199,0,21
+155305,318071.0723,149010.0312,0,21
+155306,319384.4916,151168.8903,0,21
+155307,321557.5885,154104.7056,0,21
+155308,321269.306,156383.5459,0,21
+155309,322129.0415,158155.1691,0,21
+155310,324793,161971.5475,0,21
+155311,324405.7463,168645.4081,0,21
+155312,325908.8694,168716.8457,0,21
+155313,326965.8193,172779.3478,0,21
+155314,328590.3147,175410.7645,0,21
+155315,328699.7608,178730.557,0,21
+155316,330043.596,180822.3706,0,21
+155317,331236.1799,184452.0691,0,21
+155318,331942.7196,186799.9146,0,21
+155319,332449.5637,189470.0315,0,21
+155320,334573.8259,192330.195,0,21
+155321,335017.3136,195378.004,0,21
+155322,336382.4945,197411.2457,0,21
+155323,336304.7088,201063.0356,0,21
+155324,338494.1443,202945.5557,0,21
+155325,338510.3957,206031.1322,0,21
+155326,339825.9878,208550.2572,0,21
+155327,341698.0932,211360.8849,0,21
+155328,340493.4833,213947.2743,0,21
+155329,342975.2461,217039.727,0,21
+155330,344258.7551,219642.9425,0,21
+155331,344399.5771,223886.9087,0,21
+155332,345565.832,230577.602,0,21
+155333,345935.1332,231253.7847,0,21
+155334,347798.8826,234888.7963,0,21
+155335,347596.9144,238323.6401,0,21
+155336,350211.8423,241761.6052,0,21
+155337,348842.7445,245019.2116,0,21
+155338,351588.3103,247177.3447,0,21
+155339,352191.3521,250432.2093,0,21
+155340,352281.8275,254055.0076,0,21
+155341,0,0,0,21
+155342,0,0,0,21
+155343,83474.28321,0,0,21
+155344,0,97.16567697,0,21
+155345,0,0,889819.9432,21
+155346,0,368262.8935,0,21
+155347,339779.1948,0,0,21
+155348,0,118.0061525,0,21
+155349,0,0,0,21
+155350,0,0,0,21
+155351,0,0,0,21
+155352,0,71.486018,0,21
+155353,0,0,0,21
+155354,0,0,0,21
+155355,0,76180.48892,0,21
+155356,0,0,0,21
+155357,0,0,0,21
+155358,0,0,0,21
+155359,0,0,0,21
+155360,0,0,0,21
+155361,0,0,0,21
+155362,0,0,0,21
+155363,0,0,0,21
+155364,0,0,0,21
+155365,0,0,0,21
+155366,0,0,0,21
+155367,0,0,0,21
+155368,0,0,0,21
+155369,0,0,0,21
+155370,0,0,0,21
+155371,0,0,0,21
+155372,0,0,0,21
+155373,0,0,0,21
+155374,0,0,0,21
+155375,0,0,0,21
+155376,0,0,0,21
+155377,0,0,0,21
+155378,0,0,0,21
+155379,0,0,872522.6311,21
+155380,0,0,0,21
+155381,0,368259.8476,0,21
+155382,0,0,0,21
+155383,339810.6753,0,0,21
+155384,0,0,0,21
+155385,0,0,0,21
+155386,0,0,0,21
+155387,0,0,0,21
+155388,0,0,0,21
+155389,0,0,0,21
+155390,0,0,0,21
+155391,0,0,0,21
+155392,0,0,0,21
+155393,0,0,0,21
+155394,0,0,0,21
+155395,0,0,0,21
+155396,0,0,0,21
+155397,0,0,0,21
+155398,0,0,0,21
+155399,0,0,0,21
+155400,0,0,0,15.6
+155401,0,0,0,15.6
+155402,0,0,0,15.6
+155403,0,0,0,15.6
+155404,0,0,0,15.6
+155405,0,0,0,15.6
+155406,0,0,0,15.6
+155407,0,0,0,15.6
+155408,0,0,0,15.6
+155409,0,0,0,15.6
+155410,0,7.640931994,0,15.6
+155411,0,0,0,15.6
+155412,0,116.5131461,0,15.6
+155413,0,0,854784.3553,15.6
+155414,0,0,0,15.6
+155415,0,0,0,15.6
+155416,0,368264.5759,0,15.6
+155417,0,0,0,15.6
+155418,0,122.6948879,0,15.6
+155419,339825.8746,0,0,15.6
+155420,0,0,0,15.6
+155421,0,0,0,15.6
+155422,0,4.095365485,0,15.6
+155423,0,0,0,15.6
+155424,0,109.9859262,0,15.6
+155425,0,0,0,15.6
+155426,0,0,0,15.6
+155427,0,0,0,15.6
+155428,0,69.57933238,0,15.6
+155429,0,0,0,15.6
+155430,0,0,0,15.6
+155431,0,0,0,15.6
+155432,0,104.73166,0,15.6
+155433,0,0,0,15.6
+155434,0,0,0,15.6
+155435,0,0,0,15.6
+155436,0,101.2196175,0,15.6
+155437,0,0,0,15.6
+155438,0,0,0,15.6
+155439,0,0,0,15.6
+155440,0,105.9305828,0,15.6
+155441,0,0,0,15.6
+155442,0,0,0,15.6
+155443,0,0,0,15.6
+155444,0,103.7032391,0,15.6
+155445,0,0,0,15.6
+155446,0,0,0,15.6
+155447,0,0,0,15.6
+155448,0,99.53664804,839980.2602,15.6
+155449,0,0,0,15.6
+155450,0,0,0,15.6
+155451,0,368251.9555,0,15.6
+155452,0,82.92002858,0,15.6
+155453,0,0,0,15.6
+155454,0,0,0,15.6
+155455,339821.4776,0,0,15.6
+155456,0,0,0,15.6
+155457,0,389.3949537,0,15.6
+155458,0,0,0,15.6
+155459,0,0,0,15.6
+155460,0,0,0,15.6
+155461,0,0,0,15.6
+155462,0,0,0,15.6
+155463,0,0,0,15.6
+155464,0,0,0,15.6
+155465,0,0,0,15.6
+155466,0,0,0,15.6
+155467,0,0,0,15.6
+155468,0,0,0,15.6
+155469,0,0,0,15.6
+155470,0,0,0,15.6
+155471,0,0,0,15.6
+155472,0,0,0,15.6
+155473,0,0,0,15.6
+155474,0,0,0,15.6
+155475,0,0,0,15.6
+155476,0,0,0,15.6
+155477,0,0,0,15.6
+155478,0,0,0,15.6
+155479,0,0,0,15.6
+155480,0,0,0,15.6
+155481,0,0,0,15.6
+155482,0,0,0,15.6
+155483,0,0,824942.5795,15.6
+155484,0,0,0,15.6
+155485,0,0,0,15.6
+155486,0,368249.1693,0,15.6
+155487,0,0,0,15.6
+155488,0,0,0,15.6
+155489,0,0,0,15.6
+155490,0,0,0,15.6
+155491,339808.2827,0,0,15.6
+155492,0,0,0,15.6
+155493,0,0,0,15.6
+155494,0,0,0,15.6
+155495,0,0,0,15.6
+155496,0,0,0,15.6
+155497,0,0,0,15.6
+155498,0,0,0,15.6
+155499,0,0,0,15.6
+155500,0,0,0,15.6
+155501,0,0,0,15.6
+155502,0,0,0,15.6
+155503,0,0,0,15.6
+155504,0,0,0,15.6
+155505,0,0,0,15.6
+155506,0,0,0,15.6
+155507,0,0,0,15.6
+155508,0,0,0,15.6
+155509,0,0,0,15.6
+155510,0,0,0,15.6
+155511,0,0,0,15.6
+155512,0,0,0,15.6
+155513,0,0,0,15.6
+155514,0,0,0,15.6
+155515,0,0,0,15.6
+155516,0,0,0,15.6
+155517,0,0,0,15.6
+155518,0,0,812607.8125,15.6
+155519,0,0,0,15.6
+155520,0,0,0,15.6
+155521,0,368247.749,0,15.6
+155522,0,0,0,15.6
+155523,0,0,0,15.6
+155524,0,0,0,15.6
+155525,0,0,0,15.6
+155526,0,0,0,15.6
+155527,0,0,0,15.6
+155528,339798.4172,0,0,15.6
+155529,0,0,0,15.6
+155530,0,0,0,15.6
+155531,0,0,0,15.6
+155532,0,0,0,15.6
+155533,0,0,0,15.6
+155534,0,0,0,15.6
+155535,0,0,0,15.6
+155536,0,0,0,15.6
+155537,0,0,0,15.6
+155538,0,0,0,15.6
+155539,0,0,0,15.6
+155540,0,0,0,15.6
+155541,0,0,0,15.6
+155542,0,0,0,15.6
+155543,0,0,0,15.6
+155544,0,0,0,15.6
+155545,0,0,0,15.6
+155546,0,0,0,15.6
+155547,0,0,0,15.6
+155548,0,0,0,15.6
+155549,0,0,0,15.6
+155550,0,0,0,15.6
+155551,0,0,0,15.6
+155552,0,0,0,15.6
+155553,0,0,799749.8612,15.6
+155554,0,0,0,15.6
+155555,0,0,0,15.6
+155556,0,368258.5328,0,15.6
+155557,0,0,0,15.6
+155558,0,0,0,15.6
+155559,0,0,0,15.6
+155560,0,0,0,15.6
+155561,0,0,0,15.6
+155562,0,0,0,15.6
+155563,0,0,0,15.6
+155564,0,0,0,15.6
+155565,339810.9145,0,0,15.6
+155566,0,0,0,15.6
+155567,0,0,0,15.6
+155568,0,0,0,15.6
+155569,0,0,0,15.6
+155570,0,0,0,15.6
+155571,0,0,0,15.6
+155572,0,0,0,15.6
+155573,0,0,0,15.6
+155574,0,0,0,15.6
+155575,0,0,0,15.6
+155576,0,0,0,15.6
+155577,0,0,0,15.6
+155578,0,0,0,15.6
+155579,0,0,0,15.6
+155580,0,0,0,15.6
+155581,0,77.99834251,0,15.6
+155582,0,0,0,15.6
+155583,0,0,0,15.6
+155584,0,77821.76283,0,15.6
+155585,0,0,0,15.6
+155586,0,0,0,15.6
+155587,0,0,0,15.6
+155588,0,0,789318.1711,15.6
+155589,0,0,0,15.6
+155590,0,0,0,15.6
+155591,0,368272.3004,0,15.6
+155592,0,0,0,15.6
+155593,0,0,0,15.6
+155594,0,0,0,15.6
+155595,0,0,0,15.6
+155596,0,0,0,15.6
+155597,0,0,0,15.6
+155598,0,0,0,15.6
+155599,0,0,0,15.6
+155600,0,0,0,15.6
+155601,0,2.688562328,0,15.6
+155602,339810.9266,0,0,15.6
+155603,0,115.1221624,0,15.6
+155604,0,0,0,15.6
+155605,0,0,0,15.6
+155606,0,0,0,15.6
+155607,0,0,0,15.6
+155608,0,218.2733979,0,15.6
+155609,0,0,0,15.6
+155610,0,0,0,15.6
+155611,0,0,0,15.6
+155612,0,0,0,15.6
+155613,0,0,0,15.6
+155614,0,0,0,15.6
+155615,0,83.99780686,0,15.6
+155616,0,0,0,15.6
+155617,0,0,0,15.6
+155618,0,0,0,15.6
+155619,0,0,0,15.6
+155620,0,207.2721284,0,15.6
+155621,0,0,0,15.6
+155622,0,0,0,15.6
+155623,0,0,778192.7402,15.6
+155624,0,0,0,15.6
+155625,0,0,0,15.6
+155626,0,368293.0452,0,15.6
+155627,0,85.82951326,0,15.6
+155628,0,0,0,15.6
+155629,0,0,0,15.6
+155630,0,77909.77986,0,15.6
+155631,0,0,0,15.6
+155632,0,0,0,15.6
+155633,0,0,0,15.6
+155634,0,0,0,15.6
+155635,0,0,0,15.6
+155636,0,0,0,15.6
+155637,0,0,0,15.6
+155638,0,0,0,15.6
+155639,339799.8684,0,0,15.6
+155640,0,0,0,15.6
+155641,0,0,0,15.6
+155642,0,0,0,15.6
+155643,0,0,0,15.6
+155644,0,0,0,15.6
+155645,0,0,0,15.6
+155646,0,0,0,15.6
+155647,0,0,0,15.6
+155648,0,0,0,15.6
+155649,0,0,0,15.6
+155650,0,0,0,15.6
+155651,0,0,0,15.6
+155652,0,0,0,15.6
+155653,0,0,0,15.6
+155654,0,0,0,15.6
+155655,0,0,0,15.6
+155656,0,0,0,15.6
+155657,0,0,0,15.6
+155658,0,0,769545.085,15.6
+155659,0,0,0,15.6
+155660,0,0,0,15.6
+155661,0,0,0,15.6
+155662,0,368298.6502,0,15.6
+155663,0,0,0,15.6
+155664,0,0,0,15.6
+155665,0,0,0,15.6
+155666,0,0,0,15.6
+155667,0,0,0,15.6
+155668,0,0,0,15.6
+155669,0,0,0,15.6
+155670,0,0,0,15.6
+155671,0,0,0,15.6
+155672,0,0,0,15.6
+155673,0,0,0,15.6
+155674,0,0,0,15.6
+155675,0,0,0,15.6
+155676,339768.7192,0,0,15.6
+155677,0,0,0,15.6
+155678,0,0,0,15.6
+155679,0,0,0,15.6
+155680,0,0,0,15.6
+155681,0,0,0,15.6
+155682,0,0,0,15.6
+155683,0,0,0,15.6
+155684,0,0,0,15.6
+155685,0,0,0,15.6
+155686,0,0,0,15.6
+155687,0,0,0,15.6
+155688,0,0,0,15.6
+155689,0,0,0,15.6
+155690,0,0,0,15.6
+155691,0,0,0,15.6
+155692,0,0,0,15.6
+155693,0,0,760326.2594,15.6
+155694,0,0,0,15.6
+155695,0,0,0,15.6
+155696,0,0,0,15.6
+155697,0,0,0,15.6
+155698,0,368292.4494,0,15.6
+155699,0,0,0,15.6
+155700,0,0,0,15.6
+155701,61249.94286,52293.27672,0,15.6
+155702,648.2906632,12278.93622,0,15.6
+155703,2828.845907,5003.855558,0,15.6
+155704,16869.37752,22254.40495,0,15.6
+155705,15527.51522,17348.13238,0,15.6
+155706,12667.1041,16535.98279,0,15.6
+155707,13732.64026,17104.39089,0,15.6
+155708,13756.76627,17069.78293,0,15.6
+155709,13821.55674,17229.89217,0,15.6
+155710,13852.58081,17159.25041,0,15.6
+155711,13890.25522,17227.50616,0,15.6
+155712,13887.28192,17235.06479,0,15.6
+155713,353701.9219,17250.469,0,15.6
+155714,13952.73384,17310.59131,0,15.6
+155715,14008.0605,17281.60514,0,15.6
+155716,14043.48525,17369.93674,0,15.6
+155717,14043.48633,17372.72247,0,15.6
+155718,14101.64138,17361.31775,0,15.6
+155719,14120.0786,17418.7522,0,15.6
+155720,14165.33484,17459.35082,0,15.6
+155721,14191.79754,17493.49227,0,15.6
+155722,14229.87731,17450.63935,0,15.6
+155723,14241.52399,17555.00094,0,15.6
+155724,14309.8631,17545.35495,0,15.6
+155725,14307.81075,17547.74474,0,15.6
+155726,14362.41371,17606.70615,0,15.6
+155727,14390.67118,17642.14681,753047.6297,15.6
+155728,14444.05329,17621.93413,0,15.6
+155729,14427.35512,17667.88281,0,15.6
+155730,14534.86912,17743.39304,0,15.6
+155731,0,0,0,15.6
+155732,0,0,0,15.6
+155733,0,368291.6829,0,15.6
+155734,0,0,0,15.6
+155735,0,0,0,15.6
+155736,0,48384.68768,0,15.6
+155737,50787.87327,5757.773035,0,15.6
+155738,2007.79657,14378.45347,0,15.6
+155739,6634.287507,22030.46649,0,15.6
+155740,21859.81327,17197.89439,0,15.6
+155741,13508.37164,17930.14613,0,15.6
+155742,14938.20074,18109.34753,0,15.6
+155743,15020.19916,18010.64616,0,15.6
+155744,15071.17869,18025.44292,0,15.6
+155745,15104.25073,18154.66878,0,15.6
+155746,15135.26967,18050.65083,0,15.6
+155747,15155.16534,18189.4404,0,15.6
+155748,355053.7803,18088.32582,0,15.6
+155749,15232.97887,18249.25356,0,15.6
+155750,15313.22661,18135.71324,0,15.6
+155751,15380.08225,18214.5744,0,15.6
+155752,15349.46349,18279.19218,0,15.6
+155753,15429.38424,18203.15159,0,15.6
+155754,15443.44758,18279.19134,0,15.6
+155755,15495.96634,18299.30415,0,15.6
+155756,15506.61883,18289.68572,0,15.6
+155757,15559.05049,18338.6943,0,15.6
+155758,15580.92512,18358.807,0,15.6
+155759,15613.11666,18363.54078,0,15.6
+155760,15661.10703,18433.13703,0,17.8
+155761,983603.045,1089651.452,745687.1063,17.8
+155762,676850.9818,415447.1977,0,17.8
+155763,358167.3553,240176.565,0,17.8
+155764,179456.9829,320506.5834,0,17.8
+155765,367821.8378,339594.9654,0,17.8
+155766,296530.2252,257621.0573,0,17.8
+155767,245621.8573,625969.441,0,17.8
+155768,245372.9907,351029.4294,0,17.8
+155769,326169.1315,289509.2417,0,17.8
+155770,286945.1714,325336.599,0,17.8
+155771,291664.0075,316974.6035,0,17.8
+155772,297374.2661,323800.3685,0,17.8
+155773,294276.3453,322785.6644,0,17.8
+155774,294131.8941,322554.2068,0,17.8
+155775,294883.4398,323516.8259,0,17.8
+155776,294387.5827,323752.2008,0,17.8
+155777,294912.642,324404.5068,0,17.8
+155778,294955.6679,324513.3371,0,17.8
+155779,294909.3595,325339.1314,0,17.8
+155780,295652.4146,327113.1676,0,17.8
+155781,294761.8413,326146.9124,0,17.8
+155782,296279.6859,327605.6306,0,17.8
+155783,635183.2459,327904.9929,0,17.8
+155784,296113.5544,328718.1806,0,17.8
+155785,296487.4062,328838.9724,0,17.8
+155786,296395.5579,329851.4194,0,17.8
+155787,297174.4657,329674.3673,0,17.8
+155788,290823.839,331277.6486,0,17.8
+155789,290815.5736,331285.9259,0,17.8
+155790,291742.751,332054.0461,0,17.8
+155791,48785.41107,64478.77059,0,17.8
+155792,48745.01931,64620.70191,0,17.8
+155793,48788.92012,64561.52527,0,17.8
+155794,705535.1966,64724.47216,0,17.8
+155795,182803.48,775241.6579,739232.8567,17.8
+155796,273505.8057,203276.8127,0,17.8
+155797,316505.2688,311976.266,0,17.8
+155798,293805.083,313064.7441,0,17.8
+155799,245760.3069,280097.0945,0,17.8
+155800,245615.3171,369630.0256,0,17.8
+155801,327333.5787,671032.1609,0,17.8
+155802,283675.7443,339563.0724,0,17.8
+155803,297525.7783,329514.5908,0,17.8
+155804,296936.922,331008.461,0,17.8
+155805,296559.84,331805.7824,0,17.8
+155806,296750.5273,332391.5323,0,17.8
+155807,297422.163,332745.1895,0,17.8
+155808,297519.386,333960.1979,0,17.8
+155809,298245.1103,333900.2656,0,17.8
+155810,298215.5081,335272.3696,0,17.8
+155811,298874.0224,335122.3929,0,17.8
+155812,299247.2295,336380.8374,0,17.8
+155813,299209.5054,336665.4703,0,17.8
+155814,300426.2953,337587.2022,0,17.8
+155815,299988.9157,337783.0619,0,17.8
+155816,300742.4967,338810.0886,0,17.8
+155817,301173.1072,339752.9312,0,17.8
+155818,641215.7561,339900.738,0,17.8
+155819,303317.1574,340762.3712,0,17.8
+155820,306886.7628,341070.6012,0,20
+155821,2270000.493,1409018.448,0,20
+155822,673566.8509,365084.1809,0,20
+155823,234386.064,308605.2334,0,20
+155824,397098.1871,426217.7035,2805.409018,20
+155825,632304.3888,422538.5766,4618.270708,20
+155826,456007.0249,401032.4112,2567.717619,20
+155827,482813.595,405228.2918,3348.951118,20
+155828,484424.0482,404111.64,3399.916862,20
+155829,484973.5159,404524.4675,3387.523293,20
+155830,481937.0512,404961.0708,3463.510627,20
+155831,482870.4306,405194.507,3438.597552,20
+155832,481549.5565,405097.508,14121.4532,20
+155833,480759.1792,404726.3189,8440.479399,20
+155834,479789.0898,403705.7228,10287.31486,20
+155835,479010.158,403789.4701,10524.45518,20
+155836,479614.1431,403225.6266,10994.01634,20
+155837,477937.3712,402783.2832,11034.68391,20
+155838,478289.1774,403490.2894,11257.57088,20
+155839,476546.1736,403204.932,11736.33647,20
+155840,476959.6736,402158.4804,12100.16534,20
+155841,477408.9068,403293.1064,12196.47963,20
+155842,474387.034,404062.3239,12840.10363,20
+155843,477056.6664,400852.5077,15319.10925,20
+155844,473999.0764,403869.3581,14791.31884,20
+155845,475286.4276,402270.8181,15695.78835,20
+155846,474398.921,403235.3176,15763.83609,20
+155847,474776.1151,402149.0212,16659.33355,20
+155848,473344.6321,393565.6606,16809.44238,20
+155849,474102.4966,390985.112,17378.57573,20
+155850,473452.8715,390230.3145,17659.17039,20
+155851,472250.0934,388587.893,18046.64933,20
+155852,473976.9771,388529.3053,18612.53604,20
+155853,470564.0762,387491.0166,18866.47829,20
+155854,470146.0701,386063.5983,19311.35087,20
+155855,469368.0759,385400.2382,19686.86718,20
+155856,469908.4304,384066.9016,20103.16527,20
+155857,468228.1829,383425.298,20291.5698,20
+155858,470094.4053,382411.2209,20965.16175,20
+155859,467165.1911,381754.9833,21042.61626,20
+155860,460031.8128,379918.9936,21637.11479,20
+155861,455055.9204,379619.3881,21985.59511,20
+155862,455432.2509,378394.295,22155.47179,20
+155863,454003.5078,377706.8635,22665.19479,20
+155864,451795.209,376767.6056,22969.54056,20
+155865,451459.7456,375881.4994,23244.4882,20
+155866,449302.3104,374364.6228,23668.63715,20
+155867,448235.7837,374979.0571,23973.94051,20
+155868,447172.9004,374091.7937,24263.40175,20
+155869,444767.3948,371253.3618,24548.17744,20
+155870,443725.2398,372709.4387,24977.33385,20
+155871,442456.4675,370157.2704,25236.44738,20
+155872,440962.8025,369670.816,25539.90002,20
+155873,438918.708,368549.6247,25960.43916,20
+155874,437655.3423,368264.5937,26125.44219,20
+155875,436372.1206,365203.2185,26429.51997,20
+155876,434927.9254,366754.3136,26934.41998,20
+155877,433195.0259,364324.2905,27012.5691,20
+155878,431612.015,363314.9403,27407.51818,20
+155879,430796.7164,363064.9296,27709.10026,20
+155880,427807.1303,360834.265,27909.03995,21
+155881,654752.0746,657752.6402,23369.12782,21
+155882,644530.3852,651133.2253,22742.98303,21
+155883,641881.7094,648521.2573,22947.71999,21
+155884,638802.2243,646320.1802,23139.4907,21
+155885,634064.1886,644719.1781,23163.90069,21
+155886,630711.1194,641521.1797,23175.72688,21
+155887,627459.4993,640383.6201,23457.9751,21
+155888,624719.7309,638539.2132,22649.02994,21
+155889,619790.9719,635836.5393,22555.78493,21
+155890,617279.948,634320.4793,22763.06631,21
+155891,613964.0108,632359.8071,22734.03371,21
+155892,610697.6206,630257.3274,22812.7075,21
+155893,606934.0085,627632.0345,21665.73547,21
+155894,603479.0248,626148.1618,21420.93071,21
+155895,600780.6613,623669.828,21789.71433,21
+155896,596604.0264,622307.1528,21588.0113,21
+155897,594176.6315,619603.4086,21848.07619,21
+155898,590386.93,617936.293,21748.53744,21
+155899,587303.3585,616771.8505,22131.72778,21
+155900,583894.6024,613688.0262,21928.06209,21
+155901,580935.829,613146.0245,22286.85896,21
+155902,577542.4338,609699.0225,22188.0103,21
+155903,574514.3002,608540.1626,22357.41143,21
+155904,570118.4949,606946.2972,22581.99996,21
+155905,568692.5673,604263.7689,22415.54302,21
+155906,564134.9296,603806.8999,22737.74375,21
+155907,561411.124,600040.4529,22689.23783,21
+155908,557839.319,600213.4633,22810.26717,21
+155909,554443.9103,597505.8288,23081.89404,21
+155910,551886.6278,596084.8559,22846.75795,21
+155911,548294.4363,592774.9686,23104.65325,21
+155912,545558.5767,593519.0877,22784.40004,21
+155913,541723.0038,589830.9664,23072.43946,21
+155914,539750.3319,588950.4568,22569.31774,21
+155915,535060.6605,587167.5027,22798.2419,21
+155916,533799.065,585120.2999,22546.64304,21
+155917,529092.0548,583842.8422,22662.14902,21
+155918,527376.5025,581501.7141,22483.43718,21
+155919,524259.9441,580625.7272,22432.42795,21
+155920,520341.924,577933.007,22357.7848,21
+155921,517635.7179,578131.6975,22331.08521,21
+155922,515031.8574,574057.2686,22244.10875,21
+155923,511444.1625,574223.4594,22129.55282,21
+155924,508974.1288,570957.7628,22101.06909,21
+155925,504424.1437,570098.3931,22013.87842,21
+155926,503622.4321,568801.078,21896.90865,21
+155927,498529.8339,565749.6816,21869.99383,21
+155928,496470.3835,565626.0101,21681.01189,21
+155929,492670.6533,562853.4688,21767.09581,21
+155930,490542.0882,561883.0473,21533.74018,21
+155931,486923.8365,558633.7852,21424.39462,21
+155932,483649.1105,558191.159,21529.99657,21
+155933,481236.4289,556771.5004,21300.9632,21
+155934,477133.1534,554610.2437,21299.87491,21
+155935,475032.7019,552120.7048,21055.17925,21
+155936,472290.2674,551279.3227,21164.96927,21
+155937,467723.616,549615.7185,20937.10005,21
+155938,467847.1959,547099.0113,20800.55446,21
+155939,463643.3977,546245.6757,20917.19683,21
+155940,462441.2509,544050.9722,20580.04729,21
+155941,305739.9801,460091.1576,811.2703093,21
+155942,299359.0504,453794.3372,633.8567771,21
+155943,295994.4956,450719.9503,542.7078911,21
+155944,292291.5515,448468.9342,502.0868922,21
+155945,289591.9971,444960.8212,435.2441212,21
+155946,285467.4733,442032.269,383.9139538,21
+155947,282756.0957,439757.2519,358.7442845,21
+155948,279077.9677,436137.2472,299.0152834,21
+155949,275799.8182,433697.3248,245.5755604,21
+155950,272688.7583,430262.0558,228.9913814,21
+155951,269459.2813,427844.9341,176.1445563,21
+155952,266115.2222,424439.8305,176.1451966,21
+155953,262713.3107,422110.1532,142.3295646,21
+155954,259896.6109,418419.4751,125.2534559,21
+155955,256283.4011,415953.631,108.0482114,21
+155956,253441.3866,412994.3909,90.69651524,21
+155957,250005.4947,409828.6283,73.17468584,21
+155958,247006.5553,407249.0446,55.44817183,21
+155959,243726.73,404386.2646,37.46118977,21
+155960,240764.1352,401165.3162,9.710100975,21
+155961,237495.4652,399124.2281,0,21
+155962,234378.3954,395562.6523,0,21
+155963,231544.0483,393101.6693,0,21
+155964,228345.3894,390115.109,0,21
+155965,225224.197,387697.705,0,21
+155966,222358.4275,384774.5207,0,21
+155967,219330.9709,382117.0907,0,21
+155968,216320.4928,379464.4365,0,21
+155969,212877.0983,376706.1821,0,21
+155970,210078.3666,374297.6707,0,21
+155971,206620.8842,371374.6274,0,21
+155972,204157.829,368592.7691,0,21
+155973,200856.4912,365961.9437,0,21
+155974,198415.3037,363297.0145,0,21
+155975,194827.8812,360714.8927,0,21
+155976,192535.1385,357806.4938,0,21
+155977,189217.3676,355592.5119,0,21
+155978,186679.4103,352771.0267,0,21
+155979,183770.736,349934.9489,0,21
+155980,180442.921,348120.1485,0,21
+155981,177655.1752,345635.5668,0,21
+155982,174900.8805,343042.5387,0,21
+155983,172116.1783,340896.453,0,21
+155984,169299.8147,338059.2763,0,21
+155985,166903.7221,335140.136,0,21
+155986,164228.2646,332772.7435,0,21
+155987,162066.6564,330092.1125,0,21
+155988,159388.6492,327492.678,0,21
+155989,157178.0575,324853.6549,0,21
+155990,154489.0541,322634.0118,0,21
+155991,151973.0918,319831.2476,0,21
+155992,149848.0721,316694.3498,0,21
+155993,147292.0383,315035.4233,0,21
+155994,144943.4157,312028.1134,0,21
+155995,142286.9311,309453.0221,0,21
+155996,140122.0501,306938.9782,0,21
+155997,137630.1936,304366.6258,0,21
+155998,135263.5516,301997.3324,0,21
+155999,132946.9923,298967.5212,0,21
+156000,130520.7072,296870.003,0,21
+156001,128837.2688,294518.6849,0,21
+156002,127509.0789,292325.5054,0,21
+156003,125823.5173,289985.2563,0,21
+156004,124300.7322,287704.9813,0,21
+156005,122611.5748,285086.5987,0,21
+156006,121239.7255,283059.0644,0,21
+156007,119793.4121,280728.6315,0,21
+156008,115364.069,277542.6,0,21
+156009,112007.2288,275869.4512,0,21
+156010,111332.4889,273494.8549,0,21
+156011,108190.6589,271182.3403,0,21
+156012,106529.3119,268316.3329,0,21
+156013,103674.4173,266460.5745,0,21
+156014,102341.6239,264232.4385,0,21
+156015,99781.06052,261247.4902,0,21
+156016,98206.22518,259535.8852,0,21
+156017,96093.14288,256753.195,0,21
+156018,94469.92195,255353.1969,0,21
+156019,94178.08028,253023.726,0,21
+156020,93295.22106,251133.4445,0,21
+156021,93122.58028,248469.9589,0,21
+156022,92375.31962,246094.6064,0,21
+156023,91613.80769,243849.6085,0,21
+156024,91386.15272,241341.1757,0,21
+156025,90705.5026,239140.5673,0,21
+156026,89533.88473,236554.5446,0,21
+156027,89066.64335,234017.505,0,21
+156028,88204.27189,231690.2882,0,21
+156029,87882.16767,229541.3211,0,21
+156030,86966.14313,226729.291,0,21
+156031,86519.1649,224271.7106,0,21
+156032,85501.81851,221821.3445,0,21
+156033,85319.04624,219168.9471,0,21
+156034,83908.67588,217093.3634,0,21
+156035,83742.0688,214606.7507,0,21
+156036,82568.29737,211665.3037,0,21
+156037,82029.60127,209877.5532,0,21
+156038,81235.02893,206723.9503,0,21
+156039,80484.08921,204800.6674,0,21
+156040,79775.35959,202066.4649,0,21
+156041,78930.63951,199501.0226,0,21
+156042,78186.41895,196950.3041,0,21
+156043,77356.04839,193480.7406,0,21
+156044,76800.74494,190427.8502,0,21
+156045,75509.89868,188034.0344,0,21
+156046,75197.78895,185105.1263,0,21
+156047,74562.73936,182575.9156,0,21
+156048,73557.17486,179658.8304,0,21
+156049,73526.77221,177235.0861,0,21
+156050,71970.53235,174584.6909,0,21
+156051,71886.7313,171440.406,0,21
+156052,70951.48277,169022.1087,0,21
+156053,70270.4045,166076.5824,0,21
+156054,69578.39299,163431.2216,0,21
+156055,68601.34644,160320.7891,0,21
+156056,67951.68299,157803.9485,0,21
+156057,67391.1532,154775.3147,0,21
+156058,66337.50608,151980.7074,0,21
+156059,65737.93497,149204.0618,0,21
+156060,64866.92459,146207.494,0,21
+156061,62636.52895,141584.3378,0,21
+156062,61762.18576,138281.9121,0,21
+156063,60804.45401,135208.087,0,21
+156064,59751.5413,131717.6795,0,21
+156065,58916.11107,128434.911,0,21
+156066,57867.38054,125058.3496,0,21
+156067,56856.68245,121778.3825,0,21
+156068,56031.53572,118413.6217,0,21
+156069,54856.10403,114857.9525,0,21
+156070,53809.85939,111622.8761,0,21
+156071,53139.57963,107884.9551,0,21
+156072,51597.73796,104977.772,0,21
+156073,50973.8005,100928.1711,0,21
+156074,49646.93375,97722.4962,0,21
+156075,48745.60168,94275.4171,0,21
+156076,47702.76467,91095.18038,0,21
+156077,46396.92991,89009.46084,0,21
+156078,45670.17398,86618.39331,0,21
+156079,44202.06136,84279.49414,0,21
+156080,43134.27684,82328.71189,0,21
+156081,42426.79435,80013.61105,0,21
+156082,40660.39716,77982.47226,0,21
+156083,40130.53641,72687.45915,0,21
+156084,39119.46311,69775.95216,0,21
+156085,39039.72356,67445.72141,0,21
+156086,38275.90067,64314.44719,0,21
+156087,37949.49283,61589.60886,0,21
+156088,37639.24855,58657.27848,0,21
+156089,36910.73715,55773.1075,0,21
+156090,36678.10535,53471.39039,0,21
+156091,36263.7689,50769.58905,0,21
+156092,35489.46911,48252.6936,0,21
+156093,35278.53321,46052.04534,0,21
+156094,34832.17502,43566.25358,0,21
+156095,34445.59196,41218.57335,0,21
+156096,33833.25218,38728.45088,0,21
+156097,33398.16308,36984.10154,0,21
+156098,33152.78899,34819.68589,0,21
+156099,32419.48384,32635.2676,0,21
+156100,32193.38786,30075.92604,0,21
+156101,31621.01854,27788.82137,0,21
+156102,31396.86442,25576.92627,0,21
+156103,30784.44258,23694.14502,0,21
+156104,30577.01835,23205.59518,0,21
+156105,30263.06766,22992.03223,0,21
+156106,29795.04749,22491.21759,0,21
+156107,29425.33094,22019.33366,0,21
+156108,29267.50917,21779.51058,0,21
+156109,28693.83476,21273.86316,0,21
+156110,28353.36744,21044.68113,0,21
+156111,28089.68827,20564.8376,0,21
+156112,27682.16515,20197.65737,0,21
+156113,27280.1396,19967.46633,0,21
+156114,27028.04893,19663.84852,0,21
+156115,26644.84592,19652.63251,0,21
+156116,26209.34361,19347.84308,0,21
+156117,25984.54417,19322.34196,0,21
+156118,25361.741,19030.56023,0,21
+156119,25329.15351,18732.08896,0,21
+156120,24723.50312,18568.09171,0,21
+156121,25380.23321,18720.15387,0,21
+156122,24914.73117,18684.9441,0,21
+156123,24636.33889,18660.6159,0,21
+156124,24240.31525,18389.47813,0,21
+156125,23990.02016,18363.67314,0,21
+156126,23570.03531,18103.15417,0,21
+156127,23341.55729,18303.10866,0,21
+156128,22981.49815,17792.62692,0,21
+156129,22488.49248,18004.88404,0,21
+156130,22421.67859,17731.64533,0,21
+156131,21791.90124,17705.60429,0,21
+156132,21659.16056,17562.74642,0,21
+156133,21307.03846,17393.48929,0,21
+156134,20877.25258,17393.48645,0,21
+156135,20626.23011,17320.0123,0,21
+156136,20276.30496,17103.83003,0,21
+156137,19816.49116,17018.20551,0,21
+156138,19879.18747,16789.42148,0,21
+156139,19139.93222,16993.10341,0,21
+156140,18832.91733,16594.634,0,21
+156141,18727.01235,16664.84374,0,21
+156142,18455.29024,16423.30576,0,21
+156143,18219.00359,16399.22325,0,21
+156144,17970.58778,16347.3068,0,21
+156145,18043.04264,16215.30729,0,21
+156146,17709.75779,16041.89832,0,21
+156147,17639.32602,16030.89713,0,21
+156148,17412.39404,15882.66893,0,21
+156149,17185.0133,15710.86068,0,21
+156150,17113.46703,15698.58127,0,21
+156151,17101.84431,15671.75541,0,21
+156152,16655.60625,15377.19993,0,21
+156153,16595.50545,15364.83719,0,21
+156154,16571.406,15338.97137,0,21
+156155,16328.86306,15190.66523,0,21
+156156,16085.50739,15003.59119,0,21
+156157,16036.54265,15016.08474,0,21
+156158,15804.23805,14843.12457,0,21
+156159,15754.78848,14691.86975,0,21
+156160,15521.83936,14667.70357,0,21
+156161,15361.14541,14640.48178,0,21
+156162,15237.35707,14353.75092,0,21
+156163,15088.43287,14315.82662,0,21
+156164,14939.03856,14315.40492,0,21
+156165,14715.16833,14138.74559,0,21
+156166,14638.72634,14001.94126,0,21
+156167,14438.63262,13948.78271,0,21
+156168,14348.72711,13962.52321,0,21
+156169,14134.71911,13633.71988,0,21
+156170,13895.90754,13633.70294,0,21
+156171,14026.75871,13620.75868,0,21
+156172,13598.90548,13429.24393,0,21
+156173,13586.20985,13303.46871,0,21
+156174,13359.86458,13264.18002,0,21
+156175,13334.31233,13250.3002,0,21
+156176,13233.62117,12932.17956,0,21
+156177,13107.11619,12945.37786,0,21
+156178,12879.14985,12891.43276,0,21
+156179,12879.15061,12864.50491,0,21
+156180,12637.56933,12598.59395,0,21
+156181,16557.98908,17181.9825,0,21
+156182,16749.71993,17166.0255,0,21
+156183,17003.30865,17299.91201,0,21
+156184,16684.16803,17153.81282,0,21
+156185,16549.46375,17141.61652,0,21
+156186,16537.05304,17128.12895,0,21
+156187,16402.86021,17129.38121,0,21
+156188,16261.24604,17090.14981,0,21
+156189,16022.99759,16970.75167,0,21
+156190,16106.51342,17077.86945,0,21
+156191,15763.76386,16825.34175,0,21
+156192,15930.60138,17038.51724,0,21
+156193,15490.35947,16800.71753,0,21
+156194,15657.0434,17026.19161,0,21
+156195,15233.13166,16747.6978,0,21
+156196,15380.95924,16762.44501,0,21
+156197,15144.90086,16735.32563,0,21
+156198,14961.82322,16735.30335,0,21
+156199,15021.42535,16683.28809,0,21
+156200,14726.65771,16590.66926,0,21
+156201,14898.10708,16670.84575,0,21
+156202,14491.42495,16430.96972,0,21
+156203,14675.66987,16644.73148,0,21
+156204,14366.96403,16404.85455,0,21
+156205,14354.037,16366.20542,0,21
+156206,14229.1951,16486.20957,0,21
+156207,14216.19535,16366.20295,0,21
+156208,14004.87226,16326.23193,0,21
+156209,13905.46604,16193.45488,0,21
+156210,13866.21595,16327.56785,0,21
+156211,13766.73487,16032.95437,0,21
+156212,13553.99682,16168.27526,0,21
+156213,13627.54659,15981.26594,0,21
+156214,13427.64554,15873.24364,0,21
+156215,13301.01634,15955.85509,0,21
+156216,13287.76205,15699.37718,0,21
+156217,13174.11966,15675.00059,0,21
+156218,13073.59533,15486.70353,0,21
+156219,12932.89386,15474.87285,0,21
+156220,12832.03438,15326.75579,0,21
+156221,12818.64571,15312.88307,0,21
+156222,12704.19895,15138.50826,0,21
+156223,12576.08041,15015.84808,0,21
+156224,12474.71168,15111.53301,0,21
+156225,12359.66819,14827.75389,0,21
+156226,12332.58022,14704.63529,0,21
+156227,12230.86558,14909.44666,0,21
+156228,12101.77074,14392.18683,0,21
+156229,11999.70615,14610.85216,0,21
+156230,11870.14168,14365.79424,0,21
+156231,11870.14382,14596.70739,0,21
+156232,11842.70197,14501.61336,0,21
+156233,11521.13408,14570.25568,0,21
+156234,11623.91668,14324.40971,0,21
+156235,11390.54707,14297.82168,0,21
+156236,11376.68804,14133.36072,0,21
+156237,11376.69003,14119.98158,0,21
+156238,11038.88306,13983.48637,0,21
+156239,11142.40003,13941.67343,0,21
+156240,11010.93754,13804.87683,0,21
+156241,6880.742199,9039.134575,0,21
+156242,6642.771678,8878.08853,0,21
+156243,6500.499809,8731.196198,0,21
+156244,6612.463522,8583.948128,0,21
+156245,6260.507748,8568.887511,0,21
+156246,6357.734878,8303.473127,0,21
+156247,6229.869781,8258.09948,0,21
+156248,6117.069144,8155.176109,0,21
+156249,6086.19841,8094.485992,0,21
+156250,5859.729736,7857.461855,0,21
+156251,5957.582822,7811.798929,0,21
+156252,5828.61173,7677.560985,0,21
+156253,5714.934765,7662.274797,0,21
+156254,5569.575206,7362.054604,0,21
+156255,5683.553492,7377.409174,0,21
+156256,5324.897973,7211.347717,0,21
+156257,5537.910339,7195.926549,0,21
+156258,5062.931433,6924.160193,0,21
+156259,5162.14293,7029.286339,0,21
+156260,4907.141703,6756.754707,0,21
+156261,4774.995507,6604.375662,0,21
+156262,4517.609097,6588.814163,0,21
+156263,4501.11466,6435.9622,0,21
+156264,4132.549735,6420.328335,0,21
+156265,4098.961375,6144.584476,0,21
+156266,3726.55569,6113.205813,0,21
+156267,3828.253807,6113.206545,0,21
+156268,3315.360076,5804.226883,0,21
+156269,3435.496731,5820.011581,0,21
+156270,3037.760625,5633.155491,0,21
+156271,2897.626554,5649.023413,0,21
+156272,2878.082088,5477.419356,0,21
+156273,2633.525896,5196.318505,0,21
+156274,2386.837556,5461.480029,0,21
+156275,2510.458836,5007.094216,0,21
+156276,2137.834552,5023.116973,0,21
+156277,2137.834561,4991.031841,0,21
+156278,2012.396908,4690.83561,0,21
+156279,1886.291966,4833.141872,0,21
+156280,1759.482211,4531.848496,0,21
+156281,1759.482235,4372.266122,0,21
+156282,1631.924729,4499.423004,0,21
+156283,1503.569856,4195.791389,0,21
+156284,1503.569958,4195.792394,0,21
+156285,1374.359807,4034.918456,0,21
+156286,1374.359838,3873.388513,0,21
+156287,1374.359863,3856.971572,0,21
+156288,1113.084798,3694.714341,0,21
+156289,1374.359911,3694.714672,0,21
+156290,1113.084899,3384.612377,0,21
+156291,1113.084937,3515.189344,0,21
+156292,1244.2259,3203.582796,0,21
+156293,1113.084991,3038.311082,0,21
+156294,1113.085021,3021.596804,0,21
+156295,1113.08504,2705.191324,0,21
+156296,1113.085121,2688.370465,0,21
+156297,1113.08516,2351.368766,0,21
+156298,1113.085189,2198.287054,0,21
+156299,980.8356279,2164.24741,0,21
+156300,1244.226183,1680.916615,0,21
+156301,712.4541341,1646.515235,0,21
+156302,712.4560699,1488.371875,0,21
+156303,712.4561304,1132.170861,0,21
+156304,712.4561286,1114.733759,0,21
+156305,575.9282112,950.6798929,0,21
+156306,712.4561788,559.7112765,0,21
+156307,437.4292409,577.3702632,0,21
+156308,437.4292745,344.4344363,0,21
+156309,437.4292934,344.4344567,0,21
+156310,296.4174722,326.5279703,0,21
+156311,151.8400889,290.4418014,0,21
+156312,151.8400951,290.4418229,0,21
+156313,0,253.9604176,0,21
+156314,0,253.9604561,0,21
+156315,0,217.0372715,0,21
+156316,0,217.0372875,0,21
+156317,0,179.6100795,0,21
+156318,0,179.610093,0,21
+156319,0,141.5909514,0,21
+156320,0,141.5909736,0,21
+156321,0,102.845145,0,21
+156322,0,102.8451526,0,21
+156323,0,73.17393902,0,21
+156324,0,63.13591613,0,21
+156325,0,32.42037587,0,21
+156326,0,21.9058859,0,21
+156327,0,0,0,21
+156328,0,0,0,21
+156329,0,0,0,21
+156330,0,0,0,21
+156331,0,0,0,21
+156332,0,0,0,21
+156333,0,0,0,21
+156334,0,0,0,21
+156335,0,0,0,21
+156336,0,0,0,21
+156337,0,0,0,21
+156338,0,0,0,21
+156339,0,0,0,21
+156340,0,0,0,21
+156341,0,0,0,21
+156342,0,0,0,21
+156343,0,0,0,21
+156344,0,0,0,21
+156345,0,0,0,21
+156346,0,0,0,21
+156347,0,0,0,21
+156348,0,0,0,21
+156349,0,0,0,21
+156350,0,0,0,21
+156351,0,0,0,21
+156352,0,0,0,21
+156353,0,0,0,21
+156354,0,0,0,21
+156355,0,0,0,21
+156356,0,0,0,21
+156357,0,0,0,21
+156358,0,0,0,21
+156359,0,0,0,21
+156360,0,0,0,21
+156361,0,0,0,21
+156362,0,0,0,21
+156363,0,0,0,21
+156364,0,0,0,21
+156365,0,0,0,21
+156366,0,0,0,21
+156367,0,0,0,21
+156368,0,0,0,21
+156369,0,0,0,21
+156370,0,0,0,21
+156371,0,0,0,21
+156372,0,0,0,21
+156373,0,0,0,21
+156374,0,0,0,21
+156375,0,0,0,21
+156376,0,0,0,21
+156377,0,0,0,21
+156378,0,0,0,21
+156379,0,0,0,21
+156380,0,0,0,21
+156381,0,0,0,21
+156382,0,0,0,21
+156383,0,0,0,21
+156384,0,0,0,21
+156385,0,0,0,21
+156386,0,0,0,21
+156387,0,0,0,21
+156388,0,0,0,21
+156389,0,0,0,21
+156390,0,0,0,21
+156391,0,0,0,21
+156392,0,0,0,21
+156393,0,0,0,21
+156394,0,0,0,21
+156395,0,0,0,21
+156396,0,0,0,21
+156397,0,0,0,21
+156398,0,0,0,21
+156399,0,0,0,21
+156400,0,0,0,21
+156401,0,0,0,21
+156402,0,0,0,21
+156403,0,0,0,21
+156404,0,0,0,21
+156405,0,0,0,21
+156406,0,0,0,21
+156407,0,0,0,21
+156408,0,0,0,21
+156409,0,0,0,21
+156410,0,0,0,21
+156411,0,0,0,21
+156412,0,0,0,21
+156413,0,0,0,21
+156414,0,0,0,21
+156415,0,0,0,21
+156416,0,0,0,21
+156417,0,0,0,21
+156418,0,0,0,21
+156419,0,0,0,21
+156420,0,0,0,21
+156421,0,0,0,21
+156422,0,0,0,21
+156423,0,0,0,21
+156424,0,0,0,21
+156425,0,0,0,21
+156426,0,0,0,21
+156427,0,0,0,21
+156428,0,0,0,21
+156429,0,0,0,21
+156430,0,0,0,21
+156431,0,0,0,21
+156432,0,0,0,21
+156433,0,0,0,21
+156434,0,0,0,21
+156435,0,0,0,21
+156436,0,0,0,21
+156437,0,0,0,21
+156438,0,0,0,21
+156439,0,0,0,21
+156440,0,0,0,21
+156441,0,0,0,21
+156442,0,0,0,21
+156443,0,0,0,21
+156444,0,0,0,21
+156445,0,0,0,21
+156446,0,0,0,21
+156447,0,0,0,21
+156448,0,0,0,21
+156449,0,0,0,21
+156450,0,0,0,21
+156451,0,0,0,21
+156452,0,0,0,21
+156453,0,0,0,21
+156454,0,0,0,21
+156455,0,0,0,21
+156456,0,0,0,21
+156457,0,0,0,21
+156458,0,0,0,21
+156459,0,0,0,21
+156460,0,0,0,21
+156461,0,0,0,21
+156462,0,0,0,21
+156463,0,0,0,21
+156464,0,0,0,21
+156465,0,0,0,21
+156466,0,0,0,21
+156467,0,0,0,21
+156468,0,0,0,21
+156469,0,0,0,21
+156470,0,0,0,21
+156471,0,0,0,21
+156472,0,0,0,21
+156473,0,0,0,21
+156474,0,0,0,21
+156475,0,0,0,21
+156476,0,0,0,21
+156477,0,0,0,21
+156478,0,0,0,21
+156479,0,0,0,21
+156480,0,0,0,21
+156481,0,0,0,21
+156482,0,0,0,21
+156483,0,0,0,21
+156484,0,0,0,21
+156485,0,0,0,21
+156486,0,0,0,21
+156487,0,0,0,21
+156488,0,0,0,21
+156489,0,0,0,21
+156490,0,0,0,21
+156491,0,0,0,21
+156492,0,0,0,21
+156493,0,0,0,21
+156494,0,0,0,21
+156495,0,0,0,21
+156496,0,0,0,21
+156497,0,0,0,21
+156498,0,0,0,21
+156499,0,0,0,21
+156500,0,0,0,21
+156501,0,0,0,21
+156502,0,0,0,21
+156503,0,0,0,21
+156504,0,0,0,21
+156505,0,0,0,21
+156506,0,0,0,21
+156507,0,0,0,21
+156508,0,0,0,21
+156509,0,0,0,21
+156510,0,0,0,21
+156511,0,0,0,21
+156512,0,0,0,21
+156513,0,0,0,21
+156514,0,0,0,21
+156515,0,0,0,21
+156516,0,0,0,21
+156517,0,0,0,21
+156518,0,0,0,21
+156519,0,0,0,21
+156520,0,0,0,21
+156521,0,0,0,21
+156522,0,0,0,21
+156523,0,0,0,21
+156524,0,0,0,21
+156525,0,0,0,21
+156526,0,0,0,21
+156527,0,185.663835,0,21
+156528,0,1522.144381,0,21
+156529,0,1036.584571,0,21
+156530,0,1361.705533,0,21
+156531,0,1522.14415,0,21
+156532,0,1839.406702,0,21
+156533,0,1839.406505,0,21
+156534,0,2152.43828,0,21
+156535,0,2307.538736,0,21
+156536,0,2461.767836,0,21
+156537,0,2615.171633,0,21
+156538,0,2767.790146,0,21
+156539,0,3070.812825,0,21
+156540,0,3070.797466,0,21
+156541,0,6921.295039,0,21
+156542,0,7287.429103,0,21
+156543,5730.54174,7682.631035,0,21
+156544,3147.620038,7735.491553,0,21
+156545,3870.147466,8145.234108,0,21
+156546,4343.634465,8333.397528,0,21
+156547,4461.068684,8468.965238,0,21
+156548,4811.24296,8773.652156,0,21
+156549,5042.987155,8925.423769,0,21
+156550,5273.424228,9210.78836,0,21
+156551,5388.166945,9378.513443,0,21
+156552,5844.078675,9511.865725,0,21
+156553,5844.079587,9960.818164,0,21
+156554,6182.932084,9828.362766,0,21
+156555,6407.428662,10373.23466,0,21
+156556,6630.835871,10275.08652,0,21
+156557,6853.181289,10685.64115,0,21
+156558,7074.490892,10702.2389,0,21
+156559,7294.788723,11126.6953,0,21
+156560,7514.098059,11126.6951,0,21
+156561,7732.439622,11419.14259,0,21
+156562,7841.254872,11564.89817,0,21
+156563,8166.299992,11710.34619,0,21
+156564,8381.856132,12000.33098,0,21
+156565,8489.299336,12128.67983,0,21
+156566,8810.306544,12289.11826,0,21
+156567,8916.877402,12560.66062,0,21
+156568,9341.070014,12704.07144,0,21
+156569,9446.568356,12833.22165,0,21
+156570,9866.611519,13306.53792,0,21
+156571,9866.611293,13387.46044,0,21
+156572,10179.56228,13479.66043,0,21
+156573,10283.49075,13888.04125,0,21
+156574,10697.28883,13918.63126,0,21
+156575,10697.29216,14089.17728,0,21
+156576,11005.67236,14510.03219,0,21
+156577,11108.09984,14399.8187,0,21
+156578,11515.99085,14957.47065,0,21
+156579,11515.99465,14739.05362,0,21
+156580,11820.04701,15264.62391,0,21
+156581,11921.05084,15308.51981,0,21
+156582,12323.33364,15353.53973,0,21
+156583,12323.33804,15859.83891,0,21
+156584,12523.46401,15795.86779,0,21
+156585,12921.71372,16055.04537,0,21
+156586,12822.40472,16237.12537,0,21
+156587,13317.35456,16493.4701,0,21
+156588,13218.69404,16552.92029,0,21
+156589,13612.40637,16809.76693,0,21
+156590,13710.43799,16852.24469,0,21
+156591,13906.03662,17138.38089,0,21
+156592,14198.27335,17393.42255,0,21
+156593,14369.80098,17437.05381,0,21
+156594,15514.47745,17612.84684,0,21
+156595,16866.1335,17854.6794,0,21
+156596,16526.729,18029.59965,0,21
+156597,17341.22905,18057.82605,0,21
+156598,17564.81762,18444.30942,0,21
+156599,18103.66254,18367.99037,0,21
+156600,18592.74551,18870.19068,0,21
+156601,18918.86887,18675.38054,0,21
+156602,19335.95701,19190.51809,0,21
+156603,19840.11527,19362.43271,0,21
+156604,20234.05169,19524.2985,0,21
+156605,20563.53937,19770.81512,0,21
+156606,21047.52976,19812.93775,0,21
+156607,21357.87876,19840.38213,0,21
+156608,22038.47263,20348.82908,0,21
+156609,22252.69662,20246.55376,0,21
+156610,22651.10723,20416.12847,0,21
+156611,23124.44862,20650.84903,0,21
+156612,23533.9229,20819.6613,0,21
+156613,23912.81257,20962.77674,0,21
+156614,24394.49601,20989.78649,0,21
+156615,24616.2569,21262.6305,0,21
+156616,25247.92388,21491.75622,0,21
+156617,25649.14663,21444.38763,0,21
+156618,25853.63111,21802.39028,0,21
+156619,26311.94385,21829.11396,0,21
+156620,26962.32401,21868.22868,0,21
+156621,27090.91025,22240.48936,0,21
+156622,27616.41843,22150.82907,0,21
+156623,28022.70662,22634.15737,0,21
+156624,28372.75178,22432.53731,0,21
+156625,28847.84731,22713.36556,0,21
+156626,29031.2931,23009.35709,0,21
+156627,29751.29717,22974.59775,0,21
+156628,30052.65451,24371.75055,0,21
+156629,30471.094,24547.70779,0,21
+156630,30770.87078,24486.89545,0,21
+156631,31563.05455,25200.48704,0,21
+156632,31483.41539,25286.69472,0,21
+156633,32444.99367,25772.27512,0,21
+156634,32296.89286,25711.07587,0,21
+156635,33189.91639,26179.78765,0,21
+156636,33719.10202,26478.70737,0,21
+156637,33928.70694,26612.62446,0,21
+156638,34697.52293,26782.78457,0,21
+156639,34773.8258,27019.78804,0,21
+156640,35473.94958,27542.51462,0,21
+156641,35866.56351,27214.60096,0,21
+156642,36243.92897,27934.18341,0,21
+156643,36555.46046,27958.03569,0,21
+156644,37349.15931,28009.08754,0,21
+156645,37345.93025,28504.6948,0,21
+156646,38200.79687,28501.27599,0,21
+156647,38439.75986,28799.91696,0,21
+156648,38991.01998,29031.41966,0,21
+156649,39225.11378,29185.90957,0,21
+156650,39773.9722,29441.6751,0,21
+156651,40249.56504,29700.03566,0,21
+156652,40395.03275,29839.02914,0,21
+156653,40764.23694,29888.93451,0,21
+156654,41340.6655,30579.90062,0,21
+156655,41855.43113,30260.06128,0,21
+156656,42997.74487,30906.33599,0,21
+156657,44020.90421,30654.6441,0,21
+156658,44102.10278,31272.57998,0,21
+156659,44508.63946,31432.48809,0,21
+156660,45017.49554,31532.59463,0,21
+156661,46700.35404,32975.47235,0,21
+156662,46960.49298,33446.50888,0,21
+156663,47481.55209,33616.9598,0,21
+156664,47846.12267,33942.75197,0,21
+156665,48332.00561,34230.30998,0,21
+156666,48439.16783,34340.40618,0,21
+156667,49054.00521,34480.84552,0,21
+156668,49115.49407,34987.94226,0,21
+156669,49645.1291,34866.11833,0,21
+156670,49804.90946,35127.78161,0,21
+156671,50201.72007,35582.29585,0,21
+156672,50679.47106,35522.52915,0,21
+156673,50581.95647,35641.2976,0,21
+156674,51230.21316,36233.51162,0,21
+156675,51422.37398,35892.74034,0,21
+156676,51625.15295,36870.37947,0,21
+156677,52110.05207,36873.31578,0,21
+156678,52157.36776,37331.88382,0,21
+156679,52666.46265,37271.50438,0,21
+156680,52684.99943,37519.06288,0,21
+156681,53184.46312,37718.75003,0,21
+156682,53396.20692,37999.81594,0,21
+156683,53405.76888,37892.15946,0,21
+156684,54044.39398,38490.00569,0,21
+156685,54105.89775,38465.41595,0,21
+156686,54287.81551,38441.8062,0,21
+156687,54758.35794,38826.70049,0,21
+156688,54818.10931,39011.13773,0,21
+156689,55134.43332,39118.22897,0,21
+156690,55479.96397,39056.34854,0,21
+156691,55486.81733,39454.71047,0,21
+156692,55890.90107,39752.99666,0,21
+156693,56138.30025,39634.78135,0,21
+156694,56230.30124,40123.55801,0,21
+156695,56518.11062,39995.90307,0,21
+156696,56881.94415,40477.7076,0,21
+156697,56896.71947,40387.45018,0,21
+156698,57218.39319,40490.20738,0,21
+156699,57292.34706,40868.40465,0,21
+156700,57880.32916,40891.28049,0,21
+156701,57749.31182,41201.1817,0,21
+156702,57974.08738,41142.61579,0,21
+156703,58400.15324,41869.90333,0,21
+156704,58473.45178,41785.71624,0,21
+156705,58609.121,42014.81665,0,21
+156706,58973.32108,42328.28694,0,21
+156707,59117.26746,42378.66484,0,21
+156708,59170.76821,42794.05642,0,21
+156709,59614.6379,42735.72401,0,21
+156710,59664.17062,43022.003,0,21
+156711,59814.91388,43278.10751,0,21
+156712,60416.97688,43269.59498,0,21
+156713,60551.26353,43624.38415,0,21
+156714,60638.14214,43804.18757,0,21
+156715,60968.82723,43834.0733,0,21
+156716,61506.47979,44160.30224,0,21
+156717,63989.86673,44301.0314,0,21
+156718,62852.51491,44437.8739,0,21
+156719,64077.04576,44650.22779,0,21
+156720,64363.65644,44912.8381,0,21
+156721,64730.34216,45187.43481,0,21
+156722,65465.52601,45598.27235,0,21
+156723,65719.55061,45981.81827,0,21
+156724,66351.32293,46316.48188,0,21
+156725,66488.27528,46784.61728,0,21
+156726,67107.43832,46977.05826,0,21
+156727,67570.20574,48671.32883,0,21
+156728,67798.40187,51326.65816,0,21
+156729,68424.89163,50727.72201,0,21
+156730,68494.44962,51974.54656,0,21
+156731,70999.44171,52898.77882,0,21
+156732,71437.23304,53806.21553,0,21
+156733,72038.29799,54577.82328,0,21
+156734,72893.63736,55384.49706,0,21
+156735,73408.32762,56258.94612,0,21
+156736,74128.10652,58221.61438,0,21
+156737,74817.15322,59337.68453,0,21
+156738,75528.94651,60490.72945,0,21
+156739,76028.25933,61310.86615,0,21
+156740,76728.16084,62616.51418,0,21
+156741,77319.80559,63201.62703,0,21
+156742,78161.94722,64125.99803,0,21
+156743,78323.50473,65105.40392,0,21
+156744,79279.47676,66138.19344,0,21
+156745,79909.17371,66989.76492,0,21
+156746,82909.13058,67710.65062,0,21
+156747,86101.49198,68987.52615,0,21
+156748,85452.69951,70316.0774,0,21
+156749,87065.86314,70987.56104,0,21
+156750,88126.67237,72651.83336,0,21
+156751,88681.89964,72555.52483,0,21
+156752,90590.05763,73970.52096,0,21
+156753,91066.42387,74451.2365,0,21
+156754,91709.58444,75509.93221,0,21
+156755,93254.08703,76264.38369,0,21
+156756,93924.18621,76900.62342,0,21
+156757,95288.24235,77833.01173,0,21
+156758,95509.98235,78630.88095,0,21
+156759,96738.57784,79304.31576,0,21
+156760,98339.57201,81306.38962,0,21
+156761,97819.25841,81765.60263,0,21
+156762,100625.4462,82551.02948,0,21
+156763,100184.5544,83326.94703,0,21
+156764,100706.047,84103.41094,0,21
+156765,103125.7012,85205.53,0,21
+156766,102790.7168,85982.54342,0,21
+156767,104589.9419,86694.2417,0,21
+156768,104794.5943,87584.72373,0,21
+156769,105484.4851,88531.55486,0,21
+156770,107193.0124,88933.65437,0,21
+156771,107562.9225,90187.30773,0,21
+156772,107796.0797,90594.46069,0,21
+156773,109622.4229,91655.57504,0,21
+156774,110109.9928,92333.90416,0,21
+156775,110418.1695,93191.539,0,21
+156776,111587.5297,93560.20804,0,21
+156777,112366.1149,95163.46606,0,21
+156778,113059.6384,95186.13632,0,21
+156779,113925.8805,96154.62856,0,21
+156780,114800.7669,96934.87813,0,21
+156781,0,0,0,21
+156782,0,0,0,21
+156783,0,0,0,21
+156784,0,136.5688202,0,21
+156785,0,368400.7871,848417.2477,21
+156786,339869.3695,0,0,21
+156787,0,0,0,21
+156788,0,131.0609627,0,21
+156789,0,0,0,21
+156790,0,0,0,21
+156791,0,0,0,21
+156792,0,100.5226502,0,21
+156793,0,0,0,21
+156794,0,0,0,21
+156795,0,0,0,21
+156796,0,116.8997997,0,21
+156797,0,0,0,21
+156798,0,0,0,21
+156799,0,0,0,21
+156800,0,119.0158999,0,21
+156801,0,0,0,21
+156802,0,0,0,21
+156803,0,0,0,21
+156804,0,121.5184027,0,21
+156805,0,0,0,21
+156806,0,0,0,21
+156807,0,0,0,21
+156808,0,121.7534386,0,21
+156809,0,0,0,21
+156810,0,0,0,21
+156811,0,0,0,21
+156812,0,121.9776571,0,21
+156813,0,0,0,21
+156814,0,0,0,21
+156815,0,0,0,21
+156816,0,122.6261182,0,21
+156817,0,0,0,21
+156818,0,0,0,21
+156819,0,368421.422,833919.1799,21
+156820,0,120.9345284,0,21
+156821,339870.6025,0,0,21
+156822,0,0,0,21
+156823,0,0,0,21
+156824,0,0,0,21
+156825,0,108.4108744,0,21
+156826,0,0,0,21
+156827,0,0,0,21
+156828,0,0,0,21
+156829,0,105.1299294,0,21
+156830,0,0,0,21
+156831,0,0,0,21
+156832,0,0,0,21
+156833,0,115.1264339,0,21
+156834,0,0,0,21
+156835,0,0,0,21
+156836,0,0,0,21
+156837,0,114.7986422,0,21
+156838,0,0,0,21
+156839,0,0,0,21
+156840,0,0,0,15.6
+156841,0,0,0,15.6
+156842,0,0,0,15.6
+156843,0,0,0,15.6
+156844,0,0,0,15.6
+156845,0,0,0,15.6
+156846,0,0,0,15.6
+156847,0,0,0,15.6
+156848,0,0,0,15.6
+156849,0,0,0,15.6
+156850,0,0,0,15.6
+156851,0,0,0,15.6
+156852,0,0,0,15.6
+156853,0,0,819044.3289,15.6
+156854,0,368430.7458,0,15.6
+156855,0,0,0,15.6
+156856,339873.014,0,0,15.6
+156857,0,0,0,15.6
+156858,0,0,0,15.6
+156859,0,0,0,15.6
+156860,0,0,0,15.6
+156861,0,0,0,15.6
+156862,0,0,0,15.6
+156863,0,0,0,15.6
+156864,0,0,0,15.6
+156865,0,0,0,15.6
+156866,0,0,0,15.6
+156867,0,0,0,15.6
+156868,0,0,0,15.6
+156869,0,0,0,15.6
+156870,0,0,0,15.6
+156871,0,0,0,15.6
+156872,0,0,0,15.6
+156873,0,0,0,15.6
+156874,0,0,0,15.6
+156875,0,0,0,15.6
+156876,0,0,0,15.6
+156877,0,0,0,15.6
+156878,0,0,0,15.6
+156879,0,0,0,15.6
+156880,0,0,0,15.6
+156881,0,0,0,15.6
+156882,0,0,0,15.6
+156883,0,0,0,15.6
+156884,0,0,0,15.6
+156885,0,0,0,15.6
+156886,0,0,0,15.6
+156887,0,0,806720.4153,15.6
+156888,0,0,0,15.6
+156889,0,368427.3189,0,15.6
+156890,0,0,0,15.6
+156891,339876.8249,0,0,15.6
+156892,0,0,0,15.6
+156893,0,0,0,15.6
+156894,0,0,0,15.6
+156895,0,0,0,15.6
+156896,0,0,0,15.6
+156897,0,0,0,15.6
+156898,0,0,0,15.6
+156899,0,0,0,15.6
+156900,0,0,0,15.6
+156901,0,0,0,15.6
+156902,0,0,0,15.6
+156903,0,0,0,15.6
+156904,0,0,0,15.6
+156905,0,0,0,15.6
+156906,0,0,0,15.6
+156907,0,0,0,15.6
+156908,0,0,0,15.6
+156909,0,0,0,15.6
+156910,0,0,0,15.6
+156911,0,0,0,15.6
+156912,0,0,0,15.6
+156913,0,0,0,15.6
+156914,0,0,0,15.6
+156915,0,0,0,15.6
+156916,0,0,0,15.6
+156917,0,0,0,15.6
+156918,0,0,0,15.6
+156919,0,0,0,15.6
+156920,0,0,0,15.6
+156921,0,0,0,15.6
+156922,0,0,794983.9614,15.6
+156923,0,0,0,15.6
+156924,0,368431.0644,0,15.6
+156925,0,0,0,15.6
+156926,0,0,0,15.6
+156927,339863.6758,0,0,15.6
+156928,0,0,0,15.6
+156929,0,0,0,15.6
+156930,0,0,0,15.6
+156931,0,0,0,15.6
+156932,0,0,0,15.6
+156933,0,0,0,15.6
+156934,0,0,0,15.6
+156935,0,0,0,15.6
+156936,0,0,0,15.6
+156937,0,0,0,15.6
+156938,0,0,0,15.6
+156939,0,0,0,15.6
+156940,0,0,0,15.6
+156941,0,0,0,15.6
+156942,0,0,0,15.6
+156943,0,0,0,15.6
+156944,0,0,0,15.6
+156945,0,0,0,15.6
+156946,0,0,0,15.6
+156947,0,0,0,15.6
+156948,0,0,0,15.6
+156949,0,0,0,15.6
+156950,0,0,0,15.6
+156951,0,0,0,15.6
+156952,0,0,0,15.6
+156953,0,0,0,15.6
+156954,0,0,0,15.6
+156955,0,0,0,15.6
+156956,0,0,0,15.6
+156957,0,0,784136.8903,15.6
+156958,0,0,0,15.6
+156959,0,368433.0298,0,15.6
+156960,0,0,0,15.6
+156961,0,0,0,15.6
+156962,0,0,0,15.6
+156963,339845.7718,0,0,15.6
+156964,0,0,0,15.6
+156965,0,0,0,15.6
+156966,0,0,0,15.6
+156967,0,0,0,15.6
+156968,0,0,0,15.6
+156969,0,0,0,15.6
+156970,0,0,0,15.6
+156971,0,0,0,15.6
+156972,0,0,0,15.6
+156973,0,0,0,15.6
+156974,0,0,0,15.6
+156975,0,0,0,15.6
+156976,0,0,0,15.6
+156977,0,0,0,15.6
+156978,0,0,0,15.6
+156979,0,0,0,15.6
+156980,0,0,0,15.6
+156981,0,0,0,15.6
+156982,0,0,0,15.6
+156983,0,0,0,15.6
+156984,0,0,0,15.6
+156985,0,0,0,15.6
+156986,0,0,0,15.6
+156987,0,0,0,15.6
+156988,0,0,0,15.6
+156989,0,0,0,15.6
+156990,0,0,0,15.6
+156991,0,0,0,15.6
+156992,0,0,774454.2421,15.6
+156993,0,0,0,15.6
+156994,0,368417.7957,0,15.6
+156995,0,0,0,15.6
+156996,0,0,0,15.6
+156997,0,0,0,15.6
+156998,0,0,0,15.6
+156999,339849.6738,0,0,15.6
+157000,0,0,0,15.6
+157001,0,0,0,15.6
+157002,0,0,0,15.6
+157003,0,0,0,15.6
+157004,0,0,0,15.6
+157005,0,0,0,15.6
+157006,0,0,0,15.6
+157007,0,0,0,15.6
+157008,0,0,0,15.6
+157009,0,0,0,15.6
+157010,0,0,0,15.6
+157011,0,0,0,15.6
+157012,0,0,0,15.6
+157013,0,0,0,15.6
+157014,0,0,0,15.6
+157015,0,82.0489331,0,15.6
+157016,0,0,0,15.6
+157017,0,0,0,15.6
+157018,0,0,0,15.6
+157019,0,3.227845452,0,15.6
+157020,0,0,0,15.6
+157021,0,76078.48065,0,15.6
+157022,0,0,0,15.6
+157023,0,0,0,15.6
+157024,0,0,0,15.6
+157025,0,0,0,15.6
+157026,0,0,0,15.6
+157027,0,0,765388.9446,15.6
+157028,0,0,0,15.6
+157029,0,368406.9726,0,15.6
+157030,0,0,0,15.6
+157031,0,0,0,15.6
+157032,0,0,0,15.6
+157033,0,0,0,15.6
+157034,0,0,0,15.6
+157035,339868.2294,0,0,15.6
+157036,0,0,0,15.6
+157037,0,0,0,15.6
+157038,0,0,0,15.6
+157039,0,0,0,15.6
+157040,0,0,0,15.6
+157041,0,0,0,15.6
+157042,0,0,0,15.6
+157043,0,0,0,15.6
+157044,0,0,0,15.6
+157045,0,0,0,15.6
+157046,0,0,0,15.6
+157047,0,0,0,15.6
+157048,0,0,0,15.6
+157049,0,0,0,15.6
+157050,0,0,0,15.6
+157051,0,0,0,15.6
+157052,0,0,0,15.6
+157053,0,0,0,15.6
+157054,0,0,0,15.6
+157055,0,0,0,15.6
+157056,0,0,0,15.6
+157057,0,0,0,15.6
+157058,0,0,0,15.6
+157059,0,0,0,15.6
+157060,0,0,0,15.6
+157061,0,0,0,15.6
+157062,0,0,757368.3148,15.6
+157063,0,0,0,15.6
+157064,0,368420.6799,0,15.6
+157065,0,0,0,15.6
+157066,0,0,0,15.6
+157067,0,0,0,15.6
+157068,0,0,0,15.6
+157069,0,0,0,15.6
+157070,0,0,0,15.6
+157071,339907.8819,0,0,15.6
+157072,0,0,0,15.6
+157073,0,0,0,15.6
+157074,0,0,0,15.6
+157075,0,0,0,15.6
+157076,0,0,0,15.6
+157077,0,0,0,15.6
+157078,0,0,0,15.6
+157079,0,0,0,15.6
+157080,0,0,0,15.6
+157081,0,0,0,15.6
+157082,0,0,0,15.6
+157083,0,0,0,15.6
+157084,0,0,0,15.6
+157085,0,0,0,15.6
+157086,0,0,0,15.6
+157087,0,0,0,15.6
+157088,0,0,0,15.6
+157089,0,0,0,15.6
+157090,0,0,0,15.6
+157091,0,0,0,15.6
+157092,0,0,0,15.6
+157093,0,0,0,15.6
+157094,0,0,0,15.6
+157095,0,0,0,15.6
+157096,0,0,0,15.6
+157097,0,0,750337.4319,15.6
+157098,0,0,0,15.6
+157099,0,368422.1549,0,15.6
+157100,0,0,0,15.6
+157101,0,0,0,15.6
+157102,0,0,0,15.6
+157103,0,0,0,15.6
+157104,0,0,0,15.6
+157105,0,0,0,15.6
+157106,0,0,0,15.6
+157107,339918.6399,0,0,15.6
+157108,0,0,0,15.6
+157109,0,0,0,15.6
+157110,0,0,0,15.6
+157111,0,0,0,15.6
+157112,0,0,0,15.6
+157113,0,0,0,15.6
+157114,0,0,0,15.6
+157115,0,0,0,15.6
+157116,0,0,0,15.6
+157117,0,0,0,15.6
+157118,0,0,0,15.6
+157119,0,0,0,15.6
+157120,0,0,0,15.6
+157121,0,0,0,15.6
+157122,0,0,0,15.6
+157123,0,0,0,15.6
+157124,0,0,0,15.6
+157125,0,0,0,15.6
+157126,0,0,0,15.6
+157127,0,0,0,15.6
+157128,0,0,0,15.6
+157129,0,0,0,15.6
+157130,0,0,0,15.6
+157131,0,0,0,15.6
+157132,0,0,743731.2329,15.6
+157133,0,0,0,15.6
+157134,0,368408.8605,0,15.6
+157135,0,0,0,15.6
+157136,0,0,0,15.6
+157137,0,0,0,15.6
+157138,0,0,0,15.6
+157139,0,0,0,15.6
+157140,0,0,0,15.6
+157141,0,0,0,15.6
+157142,0,0,0,15.6
+157143,339919.6258,0,0,15.6
+157144,0,0,0,15.6
+157145,0,0,0,15.6
+157146,0,0,0,15.6
+157147,0,0,0,15.6
+157148,0,0,0,15.6
+157149,0,0,0,15.6
+157150,0,0,0,15.6
+157151,0,0,0,15.6
+157152,0,0,0,15.6
+157153,0,0,0,15.6
+157154,0,0,0,15.6
+157155,0,0,0,15.6
+157156,0,0,0,15.6
+157157,0,0,0,15.6
+157158,0,0,0,15.6
+157159,0,0,0,15.6
+157160,0,0,0,15.6
+157161,0,0,0,15.6
+157162,0,0,0,15.6
+157163,0,0,0,15.6
+157164,0,0,0,15.6
+157165,0,0,0,15.6
+157166,0,0,738352.1544,15.6
+157167,0,0,0,15.6
+157168,0,0,0,15.6
+157169,0,368404.9946,0,15.6
+157170,0,0,0,15.6
+157171,0,0,0,15.6
+157172,0,0,0,15.6
+157173,0,0,0,15.6
+157174,0,0,0,15.6
+157175,0,0,0,15.6
+157176,0,0,0,15.6
+157177,0,0,0,15.6
+157178,339921.6637,0,0,15.6
+157179,0,0,0,15.6
+157180,0,0,0,15.6
+157181,0,0,0,15.6
+157182,0,0,0,15.6
+157183,0,0,0,15.6
+157184,0,0,0,15.6
+157185,0,0,0,15.6
+157186,0,0,0,15.6
+157187,0,0,0,15.6
+157188,0,0,0,15.6
+157189,0,0,0,15.6
+157190,0,0,0,15.6
+157191,0,0,0,15.6
+157192,0,0,0,15.6
+157193,0,0,0,15.6
+157194,0,0,0,15.6
+157195,0,0,0,15.6
+157196,0,0,0,15.6
+157197,0,0,0,15.6
+157198,0,0,0,15.6
+157199,0,0,0,15.6
+157200,0,0,732540.9062,17.8
+157201,49884.56491,426019.6991,0,17.8
+157202,8267.876635,83106.83612,0,17.8
+157203,13773.68085,578115.8941,0,17.8
+157204,21333.77924,202293.8323,0,17.8
+157205,17067.15987,213658.4188,0,17.8
+157206,17550.96199,201047.5075,0,17.8
+157207,17505.28643,205484.1212,0,17.8
+157208,17487.0337,206445.8834,0,17.8
+157209,17417.93589,206925.971,0,17.8
+157210,17456.17375,206805.5438,0,17.8
+157211,17379.68206,209476.0551,0,17.8
+157212,17310.77273,212394.0976,0,17.8
+157213,357249.1364,210870.3556,0,17.8
+157214,17289.21358,212018.2055,0,17.8
+157215,17229.40839,215667.5129,0,17.8
+157216,17194.19643,214595.9994,0,17.8
+157217,17134.55262,215802.4758,0,17.8
+157218,17098.04648,216053.5636,0,17.8
+157219,17095.5909,216807.2461,0,17.8
+157220,17056.50635,217249.4714,0,17.8
+157221,16994.80413,217820.4494,0,17.8
+157222,17031.47274,218430.2335,0,17.8
+157223,16906.83895,218933.3159,0,17.8
+157224,16944.63989,219482.7537,0,17.8
+157225,16910.98563,220020.4375,0,17.8
+157226,16844.78754,220203.1583,0,17.8
+157227,16854.77735,221693.0181,0,17.8
+157228,16785.70324,221439.1823,0,17.8
+157229,16781.59689,221988.1036,0,17.8
+157230,16741.86132,223165.9432,0,17.8
+157231,0,5229.581829,0,17.8
+157232,0,5273.186703,0,17.8
+157233,1089.447232,5288.894367,0,17.8
+157234,548.0215281,79763.91388,727955.2257,17.8
+157235,655.4787445,19435.41417,0,17.8
+157236,730.6172176,36436.31023,0,17.8
+157237,700.714191,406048.1076,0,17.8
+157238,738.0620943,35867.70098,0,17.8
+157239,730.6171494,30590.84097,0,17.8
+157240,745.4948272,375968.4887,0,17.8
+157241,745.4948041,117924.5961,0,17.8
+157242,745.4947812,257745.5666,0,17.8
+157243,775.1062299,222257.6439,0,17.8
+157244,760.324223,224453.042,0,17.8
+157245,41628.51592,225186.2934,0,17.8
+157246,4315.219581,225715.3497,0,17.8
+157247,16985.31439,225589.4419,0,17.8
+157248,359255.6627,227017.6959,0,17.8
+157249,16446.7707,226306.0148,0,17.8
+157250,16961.82963,227612.1342,0,17.8
+157251,16933.20593,228251.9715,0,17.8
+157252,16905.37341,230820.1315,0,17.8
+157253,16860.29259,230103.1439,0,17.8
+157254,16042.53483,231314.9608,0,17.8
+157255,15966.78465,231042.6424,0,17.8
+157256,15981.56352,232525.9962,0,17.8
+157257,15886.94398,232236.0052,0,17.8
+157258,15877.54404,233626.8512,0,17.8
+157259,15846.8374,233677.8649,0,17.8
+157260,15797.45749,234150.4983,0,20
+157261,582295.0842,1359802.082,480401.3521,20
+157262,94108.90248,302830.6898,0,20
+157263,114226.734,118032.3146,0,20
+157264,213849.1627,377319.7367,2669.320943,20
+157265,178224.5293,320483.1339,33046.64606,20
+157266,179267.3549,319723.5849,44485.54517,20
+157267,179108.3432,309988.1716,28594.63589,20
+157268,180010.9893,313860.532,36380.06653,20
+157269,181054.2156,314001.226,38256.22594,20
+157270,180901.6992,312975.7723,39861.04139,20
+157271,182042.5156,311633.6968,39396.46818,20
+157272,182478.2506,311092.0936,40142.84901,20
+157273,183002.548,309600.0449,40802.79967,20
+157274,183626.713,310032.6497,41190.14559,20
+157275,183928.4377,309599.4552,41918.60252,20
+157276,184472.6102,308320.7803,42281.32161,20
+157277,185464.037,309398.3188,42814.69429,20
+157278,185521.9257,308432.6892,43367.70237,20
+157279,185929.418,307907.7342,43479.72129,20
+157280,187186.6945,307813.0264,44712.61367,20
+157281,186952.3537,307736.1938,44604.43392,20
+157282,188017.2034,307528.748,45188.99733,20
+157283,188663.5301,306983.7616,45708.36191,20
+157284,189132.7454,306887.2738,46446.46101,20
+157285,189702.9197,306869.2205,46386.15894,20
+157286,190224.9189,306031.0318,47247.41087,20
+157287,190829.7097,306497.3966,47787.15759,20
+157288,191758.2686,296074.7452,47941.39031,20
+157289,192002.3859,294126.8934,48423.44605,20
+157290,192855.627,292767.271,49056.69991,20
+157291,193781.5737,291530.7405,49470.82039,20
+157292,192933.7998,291234.1045,49980.06804,20
+157293,192746.6023,289372.5306,50154.96883,20
+157294,194030.4648,288557.3584,50913.79694,20
+157295,194054.7815,287928.3649,50954.77986,20
+157296,194492.2324,286646.6624,51877.07208,20
+157297,195548.6096,285620.0219,51990.1725,20
+157298,195095.2586,284714.3603,52634.65972,20
+157299,196865.4314,283598.5465,52827.88452,20
+157300,193896.8154,282523.907,53368.54627,20
+157301,194097.3643,281828.8586,53861.06075,20
+157302,193908.6325,280140.7912,54209.95868,20
+157303,194339.7293,279452.2307,54554.83386,20
+157304,194626.869,278791.1338,54823.20788,20
+157305,194548.4102,277314.6371,55578.91231,20
+157306,194895.8984,276201.3,55992.17065,20
+157307,195241.2606,275598.8334,56040.29219,20
+157308,194772.9772,274360.5437,56724.23618,20
+157309,196004.912,273286.4826,57251.20079,20
+157310,195195.3944,272314.123,57409.11955,20
+157311,196210.1821,271349.8624,59101.61772,20
+157312,195776.188,270064.1264,59428.81941,20
+157313,196240.1075,269209.6414,59874.82555,20
+157314,196423.0274,268106.0056,60493.18941,20
+157315,196590.6755,266683.1197,61074.1326,20
+157316,196693.1973,266051.2758,61439.49707,20
+157317,197028.5035,265321.6958,62375.45138,20
+157318,197119.371,263668.6737,62701.1964,20
+157319,197178.1423,262628.4709,63119.0337,20
+157320,197561.7921,261757.4358,63868.21427,21
+157321,187679.5275,464203.9687,53271.56044,21
+157322,186358.3032,460159.8725,52253.06115,21
+157323,185425.2356,455747.5052,52702.08383,21
+157324,184799.8788,452540.0322,52201.58349,21
+157325,183814.0067,448829.3792,52630.73922,21
+157326,183345.4719,444317.9755,52305.26765,21
+157327,182618.76,441535.6634,50690.24353,21
+157328,181652.6279,437702.5366,50197.27996,21
+157329,180341.8343,433694.0524,50415.87946,21
+157330,178951.3248,430538.6664,49992.43713,21
+157331,178261.2961,426136.4701,50037.65985,21
+157332,177858.8798,423345.7569,49929.103,21
+157333,176610.6732,418876.8357,47035.81061,21
+157334,176511.8108,415882.8966,46605.20194,21
+157335,175030.2808,412320.2892,46537.61513,21
+157336,174689.3779,408055.3438,46285.90755,21
+157337,173905.5328,405406.1591,46490.48579,21
+157338,173164.142,401247.625,46337.24813,21
+157339,172497.9144,397638.0983,46135.10823,21
+157340,171721.0056,394266.1975,46037.10307,21
+157341,171069.2936,390679.0007,46193.12939,21
+157342,170622.0184,387141.0237,46083.93025,21
+157343,169317.4289,383124.3049,45991.86882,21
+157344,169300.9765,380609.8184,45931.19046,21
+157345,168079.0455,375827.6633,45848.84754,21
+157346,167946.3994,373341.0275,45779.33726,21
+157347,166440.6097,368813.1937,45817.07572,21
+157348,166460.9717,365879.948,45747.679,21
+157349,165310.3323,362705.4031,45570.14393,21
+157350,164802.7807,358287.3916,45601.40412,21
+157351,163958.061,355390.9357,45258.30312,21
+157352,163504.3897,352066.7319,45103.35978,21
+157353,162374.8279,348744.5053,44735.18604,21
+157354,161841.6055,345453.3721,44420.07579,21
+157355,161234.9436,342561.0596,44357.59438,21
+157356,160313.6614,339564.0602,43889.21054,21
+157357,159778.8995,337307.2601,43662.73614,21
+157358,158818.7606,333281.5451,43457.36742,21
+157359,158065.1699,331066.9128,43231.89783,21
+157360,157600.7084,327286.9014,42939.19972,21
+157361,156191.3427,324706.3966,42439.76144,21
+157362,156385.9256,321647.4722,42327.24421,21
+157363,154920.8118,317934.1325,42165.00491,21
+157364,154475.4066,315795.1656,41647.75403,21
+157365,153765.5875,312371.6054,41341.8904,21
+157366,152492.879,309141.0811,41231.6456,21
+157367,152393.8292,306717.7056,40875.75375,21
+157368,151068.1783,303919.7225,40615.1404,21
+157369,150567.4103,300857.5774,40292.68781,21
+157370,149724.5647,298220.4127,40327.69323,21
+157371,149080.5554,294752.8169,40044.83428,21
+157372,148288.0214,292216.041,39758.83834,21
+157373,147601.4137,289236.9473,39426.07654,21
+157374,146666.9073,286582.6646,39161.41103,21
+157375,146022.7416,283318.7514,38777.85846,21
+157376,145361.2737,280460.755,38647.11641,21
+157377,144531.246,277902.076,38218.59149,21
+157378,143933.7759,276141.1821,37971.4829,21
+157379,143052.0749,273235.0778,37714.98456,21
+157380,142259.7076,270808.9376,37379.22403,21
+157381,69184.67674,190344.1143,2237.567508,21
+157382,160065.6066,184172.234,1689.39036,21
+157383,62723.81136,181493.3913,1625.789865,21
+157384,61118.4352,179102.339,1561.933975,21
+157385,59723.35187,176447.945,1497.815539,21
+157386,58097.18599,174365.1725,1465.674178,21
+157387,56608.75219,171419.1223,1417.296013,21
+157388,55370.90696,169064.069,1336.335154,21
+157389,53761.08945,166765.9242,1336.365989,21
+157390,52476.38813,163448.7194,1263.022752,21
+157391,51080.48697,161520.9823,1205.849678,21
+157392,50224.47893,158368.0442,1205.826115,21
+157393,49091.88013,155954.7978,1123.646436,21
+157394,48672.02813,153521.9298,1090.629993,21
+157395,47324.95063,150818.3845,1057.441635,21
+157396,46574.81688,148535.5354,991.0402219,21
+157397,45739.76076,145758.1305,974.2143142,21
+157398,44777.39651,143305.1033,924.2032787,21
+157399,43975.74488,141055.5867,873.6585406,21
+157400,42990.09278,138677.2506,840.0759542,21
+157401,42016.80577,136049.1203,789.0748999,21
+157402,41255.45012,134278.3237,755.2793327,21
+157403,40301.60846,131558.3401,704.0201276,21
+157404,39509.14556,129814.2714,669.7543371,21
+157405,38456.62836,127178.7163,635.3650492,21
+157406,37540.79619,124737.9005,583.4259905,21
+157407,36855.28948,122777.9648,540.0586052,21
+157408,36001.56843,120668.1663,513.8363119,21
+157409,34842.54343,117674.861,461.3565602,21
+157410,34383.72937,116199.1971,425.8259318,21
+157411,33040.86436,113765.7895,408.2846585,21
+157412,32472.84323,111933.0289,337.0144601,21
+157413,31583.29622,109764.1598,354.7473067,21
+157414,30933.39385,108367.5353,283.1168746,21
+157415,29696.52573,106036.8125,282.8371133,21
+157416,29163.59324,104062.6425,228.4387955,21
+157417,28395.13034,102892.8613,210.2121693,21
+157418,27359.08747,100463.8006,173.0031661,21
+157419,26542.21394,98256.98807,163.9759442,21
+157420,25720.0983,96496.94979,117.1015744,21
+157421,25080.77973,94683.90145,79.06961421,21
+157422,24315.97801,92488.95376,59.83813596,21
+157423,23894.26706,91129.65586,40.29163291,21
+157424,23375.73581,89136.29317,0,21
+157425,22861.92356,87282.47214,0,21
+157426,22231.8928,85524.43093,0,21
+157427,22003.15326,84002.46127,0,21
+157428,21095.68883,82024.22835,0,21
+157429,20813.41307,80022.24001,0,21
+157430,20233.85888,78790.34283,0,21
+157431,19734.03501,78372.45206,0,21
+157432,19118.78598,77375.93827,0,21
+157433,18502.6332,77046.66583,0,21
+157434,18323.41472,75929.75545,0,21
+157435,17907.29188,75977.9274,0,21
+157436,17739.71423,75041.94836,0,21
+157437,17444.02176,74116.50062,0,21
+157438,17171.85677,74252.2793,0,21
+157439,17066.06421,72951.88007,0,21
+157440,16599.98779,72966.03389,0,21
+157441,16495.69468,72166.31309,0,21
+157442,16184.92231,70928.958,0,21
+157443,15952.14547,70358.25145,0,21
+157444,15553.02621,69675.74217,0,21
+157445,15376.84379,69441.75415,0,21
+157446,14981.8208,68405.11789,0,21
+157447,14872.98354,68433.88854,0,21
+157448,14589.88416,67699.10258,0,21
+157449,14262.76921,67150.8701,0,21
+157450,13998.73952,66747.74481,0,21
+157451,13911.85822,66015.87481,0,21
+157452,13358.17284,65830.10176,0,21
+157453,13490.65058,65174.7459,0,21
+157454,12886.02169,64529.78532,0,21
+157455,12889.03822,64374.42642,0,21
+157456,12364.44354,63863.99552,0,21
+157457,12390.84161,63253.86259,0,21
+157458,11979.2573,62783.79313,0,21
+157459,11769.16779,62337.71661,0,21
+157460,11556.70357,61971.02865,0,21
+157461,11260.89832,61501.93737,0,21
+157462,10938.21964,61144.21787,0,21
+157463,10844.82137,60462.17058,0,21
+157464,10325.79522,60481.36249,0,21
+157465,10437.23257,58793.70904,0,21
+157466,9902.855002,58310.53613,0,21
+157467,9684.043017,58040.61948,0,21
+157468,9500.58252,57172.34042,0,21
+157469,9156.382916,57218.62335,0,21
+157470,9055.464176,56458.82558,0,21
+157471,8535.43366,55844.58091,0,21
+157472,8500.387667,55317.29451,0,21
+157473,8214.763803,54606.50704,0,21
+157474,7848.879337,54021.22193,0,21
+157475,7723.767476,53051.14369,0,21
+157476,7422.593303,52564.20247,0,21
+157477,7372.367335,51620.25849,0,21
+157478,6967.181387,50828.35352,0,21
+157479,6916.167212,50297.16646,0,21
+157480,6648.296347,49298.16352,0,21
+157481,6455.354557,48559.35951,0,21
+157482,6416.064933,47619.37887,0,21
+157483,5899.182007,46657.45224,0,21
+157484,6051.451318,45922.06879,0,21
+157485,5570.196853,44948.28142,0,21
+157486,5482.396509,43880.80402,0,21
+157487,5223.770894,42992.04999,0,21
+157488,5184.67876,41843.98793,0,21
+157489,4814.919234,41145.24609,0,21
+157490,4801.813676,39619.99556,0,21
+157491,4642.619569,37751.44704,0,21
+157492,4280.775478,36778.70533,0,21
+157493,4362.147021,35412.72166,0,21
+157494,3984.190214,34686.75878,0,21
+157495,3957.537287,33560.40151,0,21
+157496,3698.519275,32409.07441,0,21
+157497,3548.057682,31174.81793,0,21
+157498,3534.608216,30152.79439,0,21
+157499,3119.577175,28950.70399,0,21
+157500,3119.577061,27921.36795,0,21
+157501,2684.60602,25329.69563,0,21
+157502,2413.311713,24429.13575,0,21
+157503,2515.096241,22643.1253,0,21
+157504,2124.536887,21358.54794,0,21
+157505,2228.129805,20559.54462,0,21
+157506,1950.856792,20356.76531,0,21
+157507,1936.992172,20028.29136,0,21
+157508,1789.583958,19654.40297,0,21
+157509,1775.655822,19391.80749,0,21
+157510,1476.230194,19121.14621,0,21
+157511,1476.230129,18777.15778,0,21
+157512,1448.141497,18398.25384,0,21
+157513,1168.580322,18075.77679,0,21
+157514,1140.355337,17757.09645,0,21
+157515,995.7524776,17557.96843,0,21
+157516,967.3878034,16916.94885,0,21
+157517,801.2861192,16909.70357,0,21
+157518,787.0139899,16261.92535,0,21
+157519,772.7050974,16200.06571,0,21
+157520,758.358938,15563.20446,0,21
+157521,729.5527522,15433.31907,0,21
+157522,743.9750919,15069.80704,0,21
+157523,700.5910526,14695.81056,0,21
+157524,700.5907646,14546.13972,0,21
+157525,686.0500065,14359.86065,0,21
+157526,671.4685187,14199.3383,0,21
+157527,656.8456391,13873.75217,0,21
+157528,642.1806731,13848.31196,0,21
+157529,612.721574,13397.26849,0,21
+157530,583.0849562,13497.09639,0,21
+157531,597.9258078,13055.67072,0,21
+157532,553.2638474,13005.02735,0,21
+157533,568.1977166,12841.88095,0,21
+157534,553.2636498,12521.39202,0,21
+157535,553.2639449,12497.72496,0,21
+157536,553.263918,12010.7359,0,21
+157537,523.2506313,11700.50137,0,21
+157538,538.2815883,11636.57072,0,21
+157539,508.1695682,11340.12013,0,21
+157540,508.1695679,11300.27174,0,21
+157541,493.0373055,10976.18484,0,21
+157542,493.0373053,10805.11773,0,21
+157543,462.6140032,10622.69965,0,21
+157544,477.8525305,10452.23625,0,21
+157545,462.6139925,10386.70408,0,21
+157546,447.3203044,9950.837416,0,21
+157547,431.9699877,10044.05903,0,21
+157548,447.3202834,9739.182002,0,21
+157549,416.5614486,9672.705525,0,21
+157550,416.561437,9380.26862,0,21
+157551,401.0929977,9326.215823,0,21
+157552,401.092978,9125.056761,0,21
+157553,401.0929575,8843.194707,0,21
+157554,369.9688787,8775.467026,0,21
+157555,401.0929232,8450.291219,0,21
+157556,369.9688526,8410.556999,0,21
+157557,369.9688409,8082.4285,0,21
+157558,354.3090734,8055.703829,0,21
+157559,354.3090632,7699.687009,0,21
+157560,354.3090529,7519.926937,0,21
+157561,354.3091483,7864.299144,0,21
+157562,354.3091529,7822.101269,0,21
+157563,322.782481,7822.103463,0,21
+157564,338.5811996,7478.210633,0,21
+157565,290.9613186,7629.101855,0,21
+157566,306.9102255,7450.821749,0,21
+157567,274.9323607,7284.056543,0,21
+157568,274.9323634,7407.966759,0,21
+157569,258.8195233,7089.991174,0,21
+157570,242.6185146,7213.453934,0,21
+157571,226.3244801,7047.559737,0,21
+157572,226.3244819,6879.728299,0,21
+157573,193.4342841,7004.916911,0,21
+157574,193.4342854,6684.015982,0,21
+157575,176.8242396,6822.96059,0,21
+157576,176.8242407,6640.99473,0,21
+157577,143.2295091,6612.010603,0,21
+157578,143.2295098,6458.344537,0,21
+157579,126.2210074,6436.394481,0,21
+157580,109.0507744,6385.160615,0,21
+157581,126.2210085,6260.533712,0,21
+157582,109.0507752,6186.405351,0,21
+157583,91.69713562,6075.776423,0,21
+157584,91.6971359,6142.719538,0,21
+157585,65.25451603,5876.12728,0,21
+157586,65.25451616,5972.511208,0,21
+157587,47.27987181,5801.877763,0,21
+157588,38.15854424,5801.878191,0,21
+157589,28.92464842,5600.58114,0,21
+157590,9.970871867,5615.585766,0,21
+157591,0,5570.156403,0,21
+157592,0,5398.217754,0,21
+157593,0,5367.349268,0,21
+157594,0,5367.349651,0,21
+157595,0,5194.276539,0,21
+157596,0,5131.037608,0,21
+157597,0,5115.84883,0,21
+157598,0,4956.253434,0,21
+157599,0,4923.944632,0,21
+157600,0,4908.603694,0,21
+157601,0,4765.228018,0,21
+157602,0,4749.943214,0,21
+157603,0,4734.623237,0,21
+157604,0,4590.664435,0,21
+157605,0,4575.311162,0,21
+157606,0,4254.830367,0,21
+157607,0,4239.34702,0,21
+157608,0,4093.547117,0,21
+157609,0,4062.529021,0,21
+157610,0,4078.056907,0,21
+157611,0,3900.517284,0,21
+157612,0,3753.379311,0,21
+157613,0,3869.283749,0,21
+157614,0,3737.780681,0,21
+157615,0,3722.145753,0,21
+157616,0,3542.911825,0,21
+157617,0,3558.621045,0,21
+157618,0,3542.912951,0,21
+157619,0,3378.55864,0,21
+157620,0,3527.167543,0,21
+157621,0,7544.845716,0,21
+157622,0,7273.140971,0,21
+157623,0,7243.105264,0,21
+157624,0,7228.04358,0,21
+157625,0,7091.96136,0,21
+157626,0,7076.846034,0,21
+157627,0,7023.22676,0,21
+157628,0,6854.578414,0,21
+157629,0,6776.740961,0,21
+157630,0,6646.456559,0,21
+157631,0,6599.116894,0,21
+157632,0,6437.385871,0,21
+157633,0,6299.305478,0,21
+157634,0,6268.632014,0,21
+157635,0,6268.632149,0,21
+157636,0,5975.795682,0,21
+157637,0,5960.373891,0,21
+157638,0,5944.917563,0,21
+157639,0,5790.038561,0,21
+157640,0,5650.195386,0,21
+157641,0,5619.106698,0,21
+157642,0,5478.79626,0,21
+157643,0,5447.563548,0,21
+157644,0,5322.408943,0,21
+157645,0,5134.113933,0,21
+157646,0,5291.103415,0,21
+157647,0,4976.582934,0,21
+157648,0,4976.583016,0,21
+157649,0,4818.494437,0,21
+157650,0,4802.671968,0,21
+157651,0,4643.974914,0,21
+157652,0,4643.930023,0,21
+157653,0,4324.786606,0,21
+157654,0,4612.133733,0,21
+157655,0,4164.254829,0,21
+157656,0,4292.7818,0,21
+157657,0,4148.233369,0,21
+157658,0,3970.906119,0,21
+157659,0,3970.906326,0,21
+157660,0,3970.906522,0,21
+157661,0,3646.324863,0,21
+157662,0,3776.540495,0,21
+157663,0,3646.325158,0,21
+157664,0,3450.348809,0,21
+157665,0,3466.673805,0,21
+157666,0,3302.493852,0,21
+157667,0,3269.706312,0,21
+157668,0,3137.515509,0,21
+157669,0,3104.633636,0,21
+157670,0,2955.234392,0,21
+157671,0,2938.721817,0,21
+157672,0,2922.160134,0,21
+157673,0,2620.800837,0,21
+157674,0,2738.649102,0,21
+157675,0,2452.121807,0,21
+157676,0,2570.812419,0,21
+157677,0,2418.744986,0,21
+157678,0,2401.977564,0,21
+157679,0,2248.896606,0,21
+157680,0,2061.020556,0,21
+157681,0,217.0218669,0,21
+157682,0,198.3892802,0,21
+157683,0,198.3893163,0,21
+157684,0,179.608147,0,21
+157685,0,179.6081461,0,21
+157686,0,179.6081497,0,21
+157687,0,160.6797053,0,21
+157688,0,141.5894213,0,21
+157689,0,160.6797452,0,21
+157690,0,131.9780201,0,21
+157691,0,141.5894375,0,21
+157692,0,112.608767,0,21
+157693,0,122.3188677,0,21
+157694,0,102.8440313,0,21
+157695,0,102.844038,0,21
+157696,0,102.8440427,0,21
+157697,0,73.17314173,0,21
+157698,0,83.13210109,0,21
+157699,0,73.17314786,0,21
+157700,0,63.13523763,0,21
+157701,0,63.13524236,0,21
+157702,0,42.7763018,0,21
+157703,0,42.77630401,0,21
+157704,0,32.42003152,0,21
+157705,0,32.42003288,0,21
+157706,0,21.90565395,0,21
+157707,0,0,0,21
+157708,0,21.90565732,0,21
+157709,0,0,0,21
+157710,0,0,0,21
+157711,0,0,0,21
+157712,0,0,0,21
+157713,0,0,0,21
+157714,0,0,0,21
+157715,0,0,0,21
+157716,0,0,0,21
+157717,0,0,0,21
+157718,0,0,0,21
+157719,0,0,0,21
+157720,0,0,0,21
+157721,0,0,0,21
+157722,0,0,0,21
+157723,0,0,0,21
+157724,0,0,0,21
+157725,0,0,0,21
+157726,0,0,0,21
+157727,0,0,0,21
+157728,0,0,0,21
+157729,0,0,0,21
+157730,0,0,0,21
+157731,0,0,0,21
+157732,0,0,0,21
+157733,0,0,0,21
+157734,0,0,0,21
+157735,0,0,0,21
+157736,0,0,0,21
+157737,0,0,0,21
+157738,0,0,0,21
+157739,0,0,0,21
+157740,0,0,0,21
+157741,0,0,0,21
+157742,0,0,0,21
+157743,0,0,0,21
+157744,0,0,0,21
+157745,0,0,0,21
+157746,0,0,0,21
+157747,0,0,0,21
+157748,0,0,0,21
+157749,0,0,0,21
+157750,0,0,0,21
+157751,0,0,0,21
+157752,0,0,0,21
+157753,0,0,0,21
+157754,0,0,0,21
+157755,0,0,0,21
+157756,0,0,0,21
+157757,0,0,0,21
+157758,0,0,0,21
+157759,0,0,0,21
+157760,0,0,0,21
+157761,0,0,0,21
+157762,0,0,0,21
+157763,0,0,0,21
+157764,0,0,0,21
+157765,0,0,0,21
+157766,0,0,0,21
+157767,0,0,0,21
+157768,0,0,0,21
+157769,0,0,0,21
+157770,0,0,0,21
+157771,0,0,0,21
+157772,0,0,0,21
+157773,0,0,0,21
+157774,0,0,0,21
+157775,0,0,0,21
+157776,0,0,0,21
+157777,0,0,0,21
+157778,0,0,0,21
+157779,0,0,0,21
+157780,0,0,0,21
+157781,0,0,0,21
+157782,0,0,0,21
+157783,0,0,0,21
+157784,0,0,0,21
+157785,0,0,0,21
+157786,0,0,0,21
+157787,0,0,0,21
+157788,0,0,0,21
+157789,0,0,0,21
+157790,0,0,0,21
+157791,0,0,0,21
+157792,0,0,0,21
+157793,0,0,0,21
+157794,0,0,0,21
+157795,0,0,0,21
+157796,0,0,0,21
+157797,0,0,0,21
+157798,0,0,0,21
+157799,0,0,0,21
+157800,0,0,0,21
+157801,0,0,0,21
+157802,0,0,0,21
+157803,0,0,0,21
+157804,0,0,0,21
+157805,0,0,0,21
+157806,0,0,0,21
+157807,0,0,0,21
+157808,0,0,0,21
+157809,0,0,0,21
+157810,0,0,0,21
+157811,0,0,0,21
+157812,0,0,0,21
+157813,0,0,0,21
+157814,0,0,0,21
+157815,0,0,0,21
+157816,0,0,0,21
+157817,0,0,0,21
+157818,0,0,0,21
+157819,0,0,0,21
+157820,0,0,0,21
+157821,0,0,0,21
+157822,0,0,0,21
+157823,0,0,0,21
+157824,0,0,0,21
+157825,0,0,0,21
+157826,0,0,0,21
+157827,0,0,0,21
+157828,0,0,0,21
+157829,0,0,0,21
+157830,0,0,0,21
+157831,0,0,0,21
+157832,0,0,0,21
+157833,0,0,0,21
+157834,0,0,0,21
+157835,0,0,0,21
+157836,0,0,0,21
+157837,0,0,0,21
+157838,0,0,0,21
+157839,0,0,0,21
+157840,0,0,0,21
+157841,0,0,0,21
+157842,0,0,0,21
+157843,0,0,0,21
+157844,0,0,0,21
+157845,0,0,0,21
+157846,0,0,0,21
+157847,0,0,0,21
+157848,0,0,0,21
+157849,0,0,0,21
+157850,0,0,0,21
+157851,0,0,0,21
+157852,0,0,0,21
+157853,0,0,0,21
+157854,0,0,0,21
+157855,0,0,0,21
+157856,0,0,0,21
+157857,0,0,0,21
+157858,0,0,0,21
+157859,0,0,0,21
+157860,0,0,0,21
+157861,0,0,0,21
+157862,0,0,0,21
+157863,0,0,0,21
+157864,0,0,0,21
+157865,0,0,0,21
+157866,0,0,0,21
+157867,0,0,0,21
+157868,0,0,0,21
+157869,0,0,0,21
+157870,0,0,0,21
+157871,0,0,0,21
+157872,0,0,0,21
+157873,0,0,0,21
+157874,0,0,0,21
+157875,0,0,0,21
+157876,0,0,0,21
+157877,0,0,0,21
+157878,0,0,0,21
+157879,0,0,0,21
+157880,0,0,0,21
+157881,0,0,0,21
+157882,0,0,0,21
+157883,0,0,0,21
+157884,0,0,0,21
+157885,0,0,0,21
+157886,0,0,0,21
+157887,0,0,0,21
+157888,0,0,0,21
+157889,0,0,0,21
+157890,0,0,0,21
+157891,0,0,0,21
+157892,0,0,0,21
+157893,0,0,0,21
+157894,0,0,0,21
+157895,0,0,0,21
+157896,0,0,0,21
+157897,0,0,0,21
+157898,0,0,0,21
+157899,0,0,0,21
+157900,0,0,0,21
+157901,0,0,0,21
+157902,0,0,0,21
+157903,0,0,0,21
+157904,0,0,0,21
+157905,0,0,0,21
+157906,0,0,0,21
+157907,0,0,0,21
+157908,0,0,0,21
+157909,0,0,0,21
+157910,0,0,0,21
+157911,0,0,0,21
+157912,0,0,0,21
+157913,0,0,0,21
+157914,0,0,0,21
+157915,0,0,0,21
+157916,0,0,0,21
+157917,0,0,0,21
+157918,0,0,0,21
+157919,0,0,0,21
+157920,0,0,0,21
+157921,0,0,0,21
+157922,0,0,0,21
+157923,0,0,0,21
+157924,0,0,0,21
+157925,0,0,0,21
+157926,0,0,0,21
+157927,0,0,0,21
+157928,0,0,0,21
+157929,0,0,0,21
+157930,0,0,0,21
+157931,0,0,0,21
+157932,0,0,0,21
+157933,0,0,0,21
+157934,0,0,0,21
+157935,0,0,0,21
+157936,0,0,0,21
+157937,0,0,0,21
+157938,0,0,0,21
+157939,0,0,0,21
+157940,0,0,0,21
+157941,0,0,0,21
+157942,0,0,0,21
+157943,0,0,0,21
+157944,0,0,0,21
+157945,0,0,0,21
+157946,0,0,0,21
+157947,0,0,0,21
+157948,0,0,0,21
+157949,0,0,0,21
+157950,0,0,0,21
+157951,0,0,0,21
+157952,0,0,0,21
+157953,0,0,0,21
+157954,0,0,0,21
+157955,0,0,0,21
+157956,0,0,0,21
+157957,0,0,0,21
+157958,0,0,0,21
+157959,0,0,0,21
+157960,0,0,0,21
+157961,0,0,0,21
+157962,0,0,0,21
+157963,0,0,0,21
+157964,0,0,0,21
+157965,0,0,0,21
+157966,0,0,0,21
+157967,0,0,0,21
+157968,0,0,0,21
+157969,0,0,0,21
+157970,0,0,0,21
+157971,0,0,0,21
+157972,0,0,0,21
+157973,0,0,0,21
+157974,0,0,0,21
+157975,0,0,0,21
+157976,0,0,0,21
+157977,0,0,0,21
+157978,0,0,0,21
+157979,0,0,0,21
+157980,0,0,0,21
+157981,0,0,0,21
+157982,0,0,0,21
+157983,0,0,0,21
+157984,0,2615.168706,0,21
+157985,0,3520.233042,0,21
+157986,3148.235657,2767.772458,0,21
+157987,2533.013766,3371.034898,0,21
+157988,2657.108808,3668.747237,0,21
+157989,3148.235001,3816.700485,0,21
+157990,3511.535981,4110.894613,0,21
+157991,3631.750819,4402.914474,0,21
+157992,3870.923388,4402.914702,0,21
+157993,4344.519521,5058.590292,0,21
+157994,4344.51908,5125.392525,0,21
+157995,4695.832267,5326.63252,0,21
+157996,4812.236566,5630.882166,0,21
+157997,5159.442456,5952.015893,0,21
+157998,5274.527653,5970.667965,0,21
+157999,5731.764692,6411.29426,0,21
+158000,5731.763882,6448.080107,0,21
+158001,6184.257774,6745.714839,0,21
+158002,6184.256815,7041.719758,0,21
+158003,6632.27309,7207.161775,0,21
+158004,6743.604248,7372.054307,0,21
+158005,6965.484538,7664.795859,0,21
+158006,7296.393909,7819.48152,0,21
+158007,7406.197947,7991.367779,0,21
+158008,7734.156476,8281.052634,0,21
+158009,7951.606761,8434.103285,0,21
+158010,8168.128892,8739.030609,0,21
+158011,8276.046676,8739.034841,0,21
+158012,8598.460164,9193.574993,0,21
+158013,8812.302803,9184.995385,0,21
+158014,9025.284423,9494.759438,0,21
+158015,9237.419835,9644.812738,0,21
+158016,9448.723177,9926.964405,0,21
+158017,9554.065805,10076.02252,0,21
+158018,9868.887125,10241.53384,0,21
+158019,10077.77305,10373.11748,0,21
+158020,10181.92083,10685.51784,0,21
+158021,10493.21229,10946.72263,0,21
+158022,10699.78797,10979.80462,0,21
+158023,10699.78472,11531.9573,0,21
+158024,11212.97685,11564.75177,0,21
+158025,11110.70075,11822.73512,0,21
+158026,11679.39214,12096.00652,0,21
+158027,11915.76251,12144.71354,0,21
+158028,11915.75851,12400.64324,0,21
+158029,12368.84165,12544.38206,0,21
+158030,12401.22254,12703.89977,0,21
+158031,12818.31942,12973.86774,0,21
+158032,12866.01628,13116.46042,0,21
+158033,13280.12871,13274.68058,0,21
+158034,13326.96136,13526.69208,0,21
+158035,13532.90443,13699.83719,0,21
+158036,13965.87754,13809.46272,0,21
+158037,13996.41575,13981.91463,0,21
+158038,14223.01055,14247.27381,0,21
+158039,14531.33219,14371.77091,0,21
+158040,14673.69535,14527.29517,0,21
+158041,14882.75452,14682.45118,0,21
+158042,15120.97805,14929.87396,0,21
+158043,15328.86877,15084.22366,0,21
+158044,15550.71897,15207.38552,0,21
+158045,15771.80479,15499.2499,0,21
+158046,16102.02613,15499.24804,0,21
+158047,16211.72571,15774.6877,0,21
+158048,16525.50571,16018.65259,0,21
+158049,16648.71114,16064.34515,0,21
+158050,17068.7923,16292.27095,0,21
+158051,16974.56486,16337.76807,0,21
+158052,17500.26002,16700.90101,0,21
+158053,17514.15961,16731.07218,0,21
+158054,17728.794,16866.74782,0,21
+158055,18035.74269,17122.41715,0,21
+158056,18142.33367,17551.09907,0,21
+158057,18474.73646,17446.31944,0,21
+158058,18567.05977,17819.96672,0,21
+158059,18791.96071,17894.50491,0,21
+158060,19185.86641,18147.61526,0,21
+158061,19199.28615,18443.86446,0,21
+158062,19422.09044,18369.22586,0,21
+158063,19630.87431,18739.06977,0,21
+158064,20007.01431,18811.8302,0,21
+158065,20046.58639,19061.65586,0,21
+158066,20253.52523,19237.39442,0,21
+158067,20446.80508,19383.0967,0,21
+158068,20844.81859,19543.53368,0,21
+158069,20768.23521,19702.46056,0,21
+158070,21164.47325,19965.19096,0,21
+158071,21266.4054,20123.89093,0,21
+158072,21482.63281,20282.20455,0,21
+158073,21659.93147,20324.65147,0,21
+158074,21887.6764,20815.7253,0,21
+158075,22076.70162,20612.82847,0,21
+158076,22265.2364,21116.60956,0,21
+158077,22315.55895,20928.31257,0,21
+158078,22665.96378,21549.72305,0,21
+158079,22741.61943,21499.31569,0,21
+158080,23228.99971,21708.30193,0,21
+158081,23187.0362,21849.8752,0,21
+158082,23439.74489,22130.53859,0,21
+158083,23810.27213,22186.0314,0,21
+158084,23697.4278,22439.84234,0,21
+158085,24066.88604,22719.28015,0,21
+158086,24285.65106,22531.37669,0,21
+158087,24502.1176,23026.51383,0,21
+158088,24531.33659,23090.11738,0,21
+158089,24913.98275,23330.97717,0,21
+158090,24954.94158,23407.1274,0,21
+158091,25335.48316,23634.32561,0,21
+158092,25376.07037,23710.86539,0,21
+158093,25573.82228,24086.40856,0,21
+158094,25806.62799,24000.84623,0,21
+158095,25979.59117,24274.25275,0,21
+158096,26202.98801,24550.73139,0,21
+158097,26649.31149,24589.83442,0,21
+158098,27021.70759,24860.52174,0,21
+158099,27472.87815,24888.73519,0,21
+158100,31641.27626,25184.77113,0,21
+158101,31387.83125,25815.1871,0,21
+158102,32675.10782,26330.65173,0,21
+158103,33493.62945,26415.18339,0,21
+158104,33981.71415,26551.57879,0,21
+158105,34574.75886,26964.45703,0,21
+158106,35262.41472,26989.00646,0,21
+158107,35807.96094,27281.26371,0,21
+158108,36378.83561,27354.397,0,21
+158109,36903.25154,27811.35513,0,21
+158110,37413.48807,27765.92578,0,21
+158111,38175.1878,28159.38478,0,21
+158112,38390.5928,28186.67836,0,21
+158113,39174.00078,28485.26754,0,21
+158114,39659.30673,28519.90112,0,21
+158115,40131.48763,29024.00911,0,21
+158116,40751.29849,28831.34583,0,21
+158117,41102.70728,29331.75517,0,21
+158118,41778.93933,29400.43642,0,21
+158119,42106.8276,29628.69651,0,21
+158120,43002.54435,29710.24086,0,21
+158121,43709.45862,30169.67057,0,21
+158122,43937.79699,30957.91837,0,21
+158123,44612.93204,32403.87239,0,21
+158124,45202.49978,31897.41834,0,21
+158125,45621.48519,32968.23934,0,21
+158126,46317.42178,33031.38692,0,21
+158127,50164.01022,33653.33127,0,21
+158128,49664.90059,33783.88137,0,21
+158129,50825.39834,34541.51451,0,21
+158130,51829.59832,34597.14992,0,21
+158131,52825.24745,35144.04013,0,21
+158132,53626.0368,35279.81093,0,21
+158133,54596.70351,36132.48704,0,21
+158134,55956.50554,35886.5153,0,21
+158135,56743.31273,36703.11441,0,21
+158136,57365.21936,36833.76686,0,21
+158137,58676.34856,36996.84138,0,21
+158138,59562.43506,37696.72278,0,21
+158139,60181.09404,37835.26156,0,21
+158140,61136.08094,37887.06596,0,21
+158141,62225.76113,38668.37863,0,21
+158142,62906.83046,38416.11753,0,21
+158143,63884.53027,39284.39215,0,21
+158144,64699.13122,39232.02827,0,21
+158145,65634.51523,39685.86654,0,21
+158146,66276.4187,39757.15554,0,21
+158147,69521.97375,40153.35649,0,21
+158148,70768.58847,40371.92901,0,21
+158149,71611.37179,40555.89975,0,21
+158150,72719.85379,40716.41924,0,21
+158151,74054.69181,40963.91615,0,21
+158152,75304.69235,41287.4289,0,21
+158153,76287.21292,41349.89412,0,21
+158154,77266.9597,41844.31279,0,21
+158155,78820.70216,42145.46191,0,21
+158156,79589.48539,42386.19805,0,21
+158157,80972.10238,42755.80525,0,21
+158158,82230.69206,42840.13283,0,21
+158159,83507.04525,43236.66859,0,21
+158160,84567.6111,43518.86443,0,21
+158161,85735.48594,43608.74864,0,21
+158162,86367.27671,43999.74993,0,21
+158163,87556.12535,44122.81944,0,21
+158164,88076.81457,44497.75305,0,21
+158165,89286.41131,44641.84716,0,21
+158166,89789.75624,44890.48639,0,21
+158167,90708.36781,45137.18156,0,21
+158168,91732.34188,45351.09541,0,21
+158169,92309.70448,45500.74073,0,21
+158170,93231.0278,46029.35665,0,21
+158171,93991.57612,46098.96342,0,21
+158172,94869.99652,46268.49937,0,21
+158173,95617.65227,46564.85956,0,21
+158174,96372.35964,46877.54832,0,21
+158175,97039.32786,47199.15383,0,21
+158176,98125.15559,50502.04723,0,21
+158177,98422.94835,53394.2868,0,21
+158178,99712.36666,53745.43071,0,21
+158179,100225.3108,55211.01262,0,21
+158180,100628.7023,56174.19693,0,21
+158181,101903.6724,57468.28125,0,21
+158182,102404.3331,58528.32846,0,21
+158183,102940.1324,59275.77845,0,21
+158184,103992.3147,60851.17794,0,21
+158185,104456.2177,61507.25662,0,21
+158186,105377.6387,62575.27022,0,21
+158187,105777.513,63887.34909,0,21
+158188,106744.4815,64296.9803,0,21
+158189,107177.2581,65638.4763,0,21
+158190,108343.1873,66510.67853,0,21
+158191,108516.9487,68283.90706,0,21
+158192,109287.0293,69214.96656,0,21
+158193,110171.6815,70214.04035,0,21
+158194,110645.1555,70935.36478,0,21
+158195,111706.8861,71876.89545,0,21
+158196,113095.663,72907.72289,0,21
+158197,114576.1422,73561.42729,0,21
+158198,115561.5671,74683.10488,0,21
+158199,116831.7016,75015.73267,0,21
+158200,118618.3343,76342.59551,0,21
+158201,119566.948,76872.56813,0,21
+158202,120631.7823,77803.38017,0,21
+158203,122547.5816,78360.24815,0,21
+158204,123498.3191,79368.76093,0,21
+158205,124626.7022,80075.72383,0,21
+158206,126074.6641,80804.42449,0,21
+158207,127738.9265,81536.50405,0,21
+158208,128136.2914,82341.53686,0,21
+158209,130139.6413,83005.81603,0,21
+158210,131283.0342,83765.96555,0,21
+158211,132049.9807,84665.28438,0,21
+158212,133974.1983,84890.93394,0,21
+158213,134824.4401,86116.65738,0,21
+158214,136321.1716,86673.57605,0,21
+158215,137230.1773,87092.51054,0,21
+158216,138684.0864,88161.33167,0,21
+158217,140029.5587,88600.76476,0,21
+158218,140996.576,89358.65923,0,21
+158219,142446.9085,90042.86333,0,21
+158220,143639.6773,90624.96466,0,21
+158221,0,0,0,21
+158222,0,0,0,21
+158223,0,161.5240638,0,21
+158224,0,0,0,21
+158225,0,368411.9009,975988.2268,21
+158226,339949.2602,0,0,21
+158227,0,0,0,21
+158228,0,0,0,21
+158229,0,107.7321587,0,21
+158230,0,0,0,21
+158231,0,0,0,21
+158232,0,0,0,21
+158233,0,115.0116362,0,21
+158234,0,0,0,21
+158235,0,0,0,21
+158236,0,0,0,21
+158237,0,125.2697921,0,21
+158238,0,0,0,21
+158239,0,0,0,21
+158240,0,0,0,21
+158241,0,128.7584225,0,21
+158242,0,0,0,21
+158243,0,0,0,21
+158244,0,0,0,21
+158245,0,130.007329,0,21
+158246,0,0,0,21
+158247,0,0,0,21
+158248,0,0,0,21
+158249,0,130.9346724,0,21
+158250,0,0,0,21
+158251,0,0,0,21
+158252,0,0,0,21
+158253,0,131.0235529,0,21
+158254,0,0,0,21
+158255,0,0,0,21
+158256,0,0,0,21
+158257,0,131.8575494,0,21
+158258,0,0,0,21
+158259,0,368409.6325,950445.4542,21
+158260,0,0,0,21
+158261,339926.5407,0,0,21
+158262,0,141.0307086,0,21
+158263,0,0,0,21
+158264,0,0,0,21
+158265,0,0,0,21
+158266,0,96.96728652,0,21
+158267,0,0,0,21
+158268,0,0,0,21
+158269,0,0,0,21
+158270,0,120.5264787,0,21
+158271,0,0,0,21
+158272,0,0,0,21
+158273,0,0,0,21
+158274,0,124.3305971,0,21
+158275,0,0,0,21
+158276,0,0,0,21
+158277,0,0,0,21
+158278,0,127.312752,0,21
+158279,0,0,0,21
+158280,0,0,0,15.6
+158281,0,0,0,15.6
+158282,0,263.5648567,0,15.6
+158283,0,0,0,15.6
+158284,0,0,0,15.6
+158285,0,0,0,15.6
+158286,0,0,0,15.6
+158287,0,0,0,15.6
+158288,0,73663.38598,0,15.6
+158289,0,0,0,15.6
+158290,0,0,0,15.6
+158291,0,0,0,15.6
+158292,0,0,0,15.6
+158293,0,368410.0364,925222.7279,15.6
+158294,0,0,0,15.6
+158295,0,0,0,15.6
+158296,339858.3842,0,0,15.6
+158297,0,0,0,15.6
+158298,0,0,0,15.6
+158299,0,0,0,15.6
+158300,0,0,0,15.6
+158301,0,0,0,15.6
+158302,0,0,0,15.6
+158303,0,0,0,15.6
+158304,0,0,0,15.6
+158305,0,0,0,15.6
+158306,0,0,0,15.6
+158307,0,0,0,15.6
+158308,0,0,0,15.6
+158309,0,0,0,15.6
+158310,0,0,0,15.6
+158311,0,0,0,15.6
+158312,0,0,0,15.6
+158313,0,0,0,15.6
+158314,0,0,0,15.6
+158315,0,0,0,15.6
+158316,0,0,0,15.6
+158317,0,0,0,15.6
+158318,0,0,0,15.6
+158319,0,0,0,15.6
+158320,0,0,0,15.6
+158321,0,0,0,15.6
+158322,0,0,0,15.6
+158323,0,0,0,15.6
+158324,0,0,0,15.6
+158325,0,0,0,15.6
+158326,0,0,0,15.6
+158327,0,0,903675.9301,15.6
+158328,0,368409.2889,0,15.6
+158329,0,0,0,15.6
+158330,0,0,0,15.6
+158331,339723.1376,0,0,15.6
+158332,0,0,0,15.6
+158333,0,0,0,15.6
+158334,0,0,0,15.6
+158335,0,0,0,15.6
+158336,0,0,0,15.6
+158337,0,0,0,15.6
+158338,0,0,0,15.6
+158339,0,0,0,15.6
+158340,0,0,0,15.6
+158341,0,0,0,15.6
+158342,0,0,0,15.6
+158343,0,0,0,15.6
+158344,0,0,0,15.6
+158345,0,0,0,15.6
+158346,0,0,0,15.6
+158347,0,0,0,15.6
+158348,0,0,0,15.6
+158349,0,0,0,15.6
+158350,0,0,0,15.6
+158351,0,0,0,15.6
+158352,0,0,0,15.6
+158353,0,0,0,15.6
+158354,0,0,0,15.6
+158355,0,0,0,15.6
+158356,0,0,0,15.6
+158357,0,0,0,15.6
+158358,0,0,0,15.6
+158359,0,0,0,15.6
+158360,0,0,0,15.6
+158361,0,0,0,15.6
+158362,0,0,882940.9699,15.6
+158363,0,368398.3569,0,15.6
+158364,0,0,0,15.6
+158365,0,0,0,15.6
+158366,339667.698,0,0,15.6
+158367,0,0,0,15.6
+158368,0,0,0,15.6
+158369,0,0,0,15.6
+158370,0,0,0,15.6
+158371,0,0,0,15.6
+158372,0,0,0,15.6
+158373,0,0,0,15.6
+158374,0,0,0,15.6
+158375,0,0,0,15.6
+158376,0,0,0,15.6
+158377,0,0,0,15.6
+158378,0,0,0,15.6
+158379,0,0,0,15.6
+158380,0,0,0,15.6
+158381,0,0,0,15.6
+158382,0,0,0,15.6
+158383,0,0,0,15.6
+158384,0,0,0,15.6
+158385,0,0,0,15.6
+158386,0,0,0,15.6
+158387,0,0,0,15.6
+158388,0,144.8672934,0,15.6
+158389,0,0,0,15.6
+158390,0,0,0,15.6
+158391,0,0,0,15.6
+158392,0,115.2988266,0,15.6
+158393,0,0,0,15.6
+158394,0,0,0,15.6
+158395,0,0,0,15.6
+158396,0,114.4638088,0,15.6
+158397,0,0,864883.5569,15.6
+158398,0,368383.5797,0,15.6
+158399,0,0,0,15.6
+158400,0,106.3986433,0,15.6
+158401,0,0,0,15.6
+158402,339647.4689,0,0,15.6
+158403,0,0,0,15.6
+158404,0,77.10468827,0,15.6
+158405,0,0,0,15.6
+158406,0,0,0,15.6
+158407,0,0,0,15.6
+158408,0,112.4094818,0,15.6
+158409,0,0,0,15.6
+158410,0,0,0,15.6
+158411,0,0,0,15.6
+158412,0,116.8794779,0,15.6
+158413,0,0,0,15.6
+158414,0,0,0,15.6
+158415,0,0,0,15.6
+158416,0,124.1522982,0,15.6
+158417,0,0,0,15.6
+158418,0,0,0,15.6
+158419,0,0,0,15.6
+158420,0,127.6446329,0,15.6
+158421,0,0,0,15.6
+158422,0,0,0,15.6
+158423,0,0,0,15.6
+158424,0,128.7441389,0,15.6
+158425,0,0,0,15.6
+158426,0,0,0,15.6
+158427,0,0,0,15.6
+158428,0,127.5381838,0,15.6
+158429,0,0,0,15.6
+158430,0,0,0,15.6
+158431,0,0,0,15.6
+158432,0,122.4489442,847643.1588,15.6
+158433,0,368378.8472,0,15.6
+158434,0,0,0,15.6
+158435,0,0,0,15.6
+158436,0,106.7794624,0,15.6
+158437,0,0,0,15.6
+158438,339639.245,0,0,15.6
+158439,0,0,0,15.6
+158440,0,75.55509277,0,15.6
+158441,0,0,0,15.6
+158442,0,0,0,15.6
+158443,0,0,0,15.6
+158444,0,107.9941644,0,15.6
+158445,0,0,0,15.6
+158446,0,0,0,15.6
+158447,0,0,0,15.6
+158448,0,107.7033417,0,15.6
+158449,0,0,0,15.6
+158450,0,0,0,15.6
+158451,0,0,0,15.6
+158452,0,113.6736566,0,15.6
+158453,0,0,0,15.6
+158454,0,0,0,15.6
+158455,0,0,0,15.6
+158456,0,116.5395936,0,15.6
+158457,0,0,0,15.6
+158458,0,0,0,15.6
+158459,0,0,0,15.6
+158460,0,119.5616626,0,15.6
+158461,0,0,0,15.6
+158462,0,0,0,15.6
+158463,0,0,0,15.6
+158464,0,121.6950582,0,15.6
+158465,0,0,0,15.6
+158466,0,0,0,15.6
+158467,0,0,833117.3646,15.6
+158468,0,368497.2581,0,15.6
+158469,0,0,0,15.6
+158470,0,0,0,15.6
+158471,0,0,0,15.6
+158472,0,107.1107883,0,15.6
+158473,0,0,0,15.6
+158474,339640.157,0,0,15.6
+158475,0,0,0,15.6
+158476,0,98.88066817,0,15.6
+158477,0,0,0,15.6
+158478,0,0,0,15.6
+158479,0,0,0,15.6
+158480,0,114.75915,0,15.6
+158481,0,0,0,15.6
+158482,0,0,0,15.6
+158483,0,0,0,15.6
+158484,0,114.9518998,0,15.6
+158485,0,0,0,15.6
+158486,0,0,0,15.6
+158487,0,0,0,15.6
+158488,0,110.9534294,0,15.6
+158489,0,0,0,15.6
+158490,0,0,0,15.6
+158491,0,0,0,15.6
+158492,0,108.231896,0,15.6
+158493,0,0,0,15.6
+158494,0,0,0,15.6
+158495,0,0,0,15.6
+158496,0,107.9113907,0,15.6
+158497,0,0,0,15.6
+158498,0,0,0,15.6
+158499,0,0,0,15.6
+158500,0,109.4182941,0,15.6
+158501,0,0,0,15.6
+158502,0,0,818421.4757,15.6
+158503,0,368373.9131,0,15.6
+158504,0,108.405132,0,15.6
+158505,0,0,0,15.6
+158506,0,0,0,15.6
+158507,0,0,0,15.6
+158508,0,81.75941324,0,15.6
+158509,0,0,0,15.6
+158510,339648.38,0,0,15.6
+158511,0,0,0,15.6
+158512,0,106.4113332,0,15.6
+158513,0,0,0,15.6
+158514,0,0,0,15.6
+158515,0,0,0,15.6
+158516,0,115.8811153,0,15.6
+158517,0,0,0,15.6
+158518,0,0,0,15.6
+158519,0,0,0,15.6
+158520,0,122.0057003,0,15.6
+158521,0,0,0,15.6
+158522,0,0,0,15.6
+158523,0,0,0,15.6
+158524,0,121.6075253,0,15.6
+158525,0,0,0,15.6
+158526,0,0,0,15.6
+158527,0,0,0,15.6
+158528,0,117.5708323,0,15.6
+158529,0,0,0,15.6
+158530,0,0,0,15.6
+158531,0,0,0,15.6
+158532,0,112.4852649,0,15.6
+158533,0,0,0,15.6
+158534,0,0,0,15.6
+158535,0,0,0,15.6
+158536,0,105.6878594,0,15.6
+158537,0,0,806351.7038,15.6
+158538,0,368374.1563,0,15.6
+158539,0,0,0,15.6
+158540,0,86.53635899,0,15.6
+158541,0,0,0,15.6
+158542,0,0,0,15.6
+158543,0,0,0,15.6
+158544,0,72.54204603,0,15.6
+158545,0,0,0,15.6
+158546,339649.5409,0,0,15.6
+158547,0,0,0,15.6
+158548,0,86.81126373,0,15.6
+158549,0,0,0,15.6
+158550,0,0,0,15.6
+158551,0,0,0,15.6
+158552,0,109.5287572,0,15.6
+158553,0,0,0,15.6
+158554,0,0,0,15.6
+158555,0,0,0,15.6
+158556,0,108.4579981,0,15.6
+158557,0,0,0,15.6
+158558,0,0,0,15.6
+158559,0,0,0,15.6
+158560,0,113.8958329,0,15.6
+158561,0,0,0,15.6
+158562,0,0,0,15.6
+158563,0,0,0,15.6
+158564,0,115.9852452,0,15.6
+158565,0,0,0,15.6
+158566,0,0,0,15.6
+158567,0,0,0,15.6
+158568,0,117.6672333,0,15.6
+158569,0,0,0,15.6
+158570,0,0,0,15.6
+158571,0,0,0,15.6
+158572,0,116.0369807,794122.7613,15.6
+158573,0,368373.7937,0,15.6
+158574,0,0,0,15.6
+158575,0,0,0,15.6
+158576,0,102.2352835,0,15.6
+158577,0,0,0,15.6
+158578,0,0,0,15.6
+158579,0,0,0,15.6
+158580,0,72.5681498,0,15.6
+158581,0,0,0,15.6
+158582,339650.5269,0,0,15.6
+158583,0,0,0,15.6
+158584,0,101.0116982,0,15.6
+158585,0,0,0,15.6
+158586,0,0,0,15.6
+158587,0,0,0,15.6
+158588,0,86.5537939,0,15.6
+158589,0,0,0,15.6
+158590,0,0,0,15.6
+158591,0,0,0,15.6
+158592,0,103.7671494,0,15.6
+158593,0,0,0,15.6
+158594,0,0,0,15.6
+158595,0,0,0,15.6
+158596,0,95.90742039,0,15.6
+158597,0,0,0,15.6
+158598,0,0,0,15.6
+158599,0,0,0,15.6
+158600,0,100.2428286,0,15.6
+158601,0,0,0,15.6
+158602,0,0,0,15.6
+158603,0,0,0,15.6
+158604,0,102.7302958,0,15.6
+158605,0,0,0,15.6
+158606,0,0,783996.6049,15.6
+158607,0,0,0,15.6
+158608,0,368469.865,0,15.6
+158609,0,0,0,15.6
+158610,0,0,0,15.6
+158611,0,0,0,15.6
+158612,0,83.69888664,0,15.6
+158613,0,0,0,15.6
+158614,0,0,0,15.6
+158615,0,0,0,15.6
+158616,0,85.84926949,0,15.6
+158617,339663.4926,0,0,15.6
+158618,0,0,0,15.6
+158619,0,0,0,15.6
+158620,0,113.674384,0,15.6
+158621,0,0,0,15.6
+158622,0,0,0,15.6
+158623,0,0,0,15.6
+158624,0,109.1040044,0,15.6
+158625,0,0,0,15.6
+158626,0,0,0,15.6
+158627,0,0,0,15.6
+158628,0,108.8008948,0,15.6
+158629,0,0,0,15.6
+158630,0,0,0,15.6
+158631,0,0,0,15.6
+158632,0,103.554497,0,15.6
+158633,0,0,0,15.6
+158634,0,0,0,15.6
+158635,0,0,0,15.6
+158636,0,97.86399071,0,15.6
+158637,0,0,0,15.6
+158638,0,0,0,15.6
+158639,0,0,0,15.6
+158640,0,85.17914431,773865.0706,17.8
+158641,108856.278,475331.4452,0,17.8
+158642,64475.1307,449595.3665,0,17.8
+158643,31764.73712,223203.4702,0,17.8
+158644,401173.7658,195627.1852,0,17.8
+158645,83712.89326,229529.3361,0,17.8
+158646,175426.2579,208815.5067,0,17.8
+158647,213067.5489,213919.7628,0,17.8
+158648,180820.5744,215130.5221,0,17.8
+158649,188081.4121,215256.6933,0,17.8
+158650,185237.5451,216893.8146,0,17.8
+158651,525814.9899,216181.7428,0,17.8
+158652,185808.3041,217463.787,0,17.8
+158653,186956.2294,217768.6593,0,17.8
+158654,186623.8342,218464.5572,0,17.8
+158655,187464.1587,218943.4442,0,17.8
+158656,187749.9278,219440.3183,0,17.8
+158657,188099.7756,219324.8224,0,17.8
+158658,188904.6367,220916.2219,0,17.8
+158659,188602.7713,220453.9972,0,17.8
+158660,189673.934,221452.5119,0,17.8
+158661,189608.6075,221949.4699,0,17.8
+158662,190434.6259,216407.3781,0,17.8
+158663,190918.5261,216218.4297,0,17.8
+158664,190714.5682,217723.8096,0,17.8
+158665,191964.1522,217152.1166,0,17.8
+158666,191740.4162,218869.2137,0,17.8
+158667,192835.5009,218009.3412,0,17.8
+158668,192629.3568,219602.1743,0,17.8
+158669,193526.8619,219586.1919,0,17.8
+158670,193993.6969,219723.053,0,17.8
+158671,165984.048,0,0,17.8
+158672,167187.9718,97.28897684,0,17.8
+158673,167701.3564,0,0,17.8
+158674,81897.88031,82693.87524,764952.7687,17.8
+158675,16021.45098,17285.78481,0,17.8
+158676,28237.59727,399131.7807,0,17.8
+158677,33201.45817,35173.99809,0,17.8
+158678,30465.14879,32352.99773,0,17.8
+158679,30566.40657,32502.72541,0,17.8
+158680,30515.01855,397062.0656,0,17.8
+158681,30622.82763,121082.9632,0,17.8
+158682,30599.20389,232869.7362,0,17.8
+158683,516563.0205,239304.6856,0,17.8
+158684,70134.84045,221984.4317,0,17.8
+158685,196524.0883,232769.5668,0,17.8
+158686,570582.8812,228404.6484,0,17.8
+158687,200904.7976,233029.1966,0,17.8
+158688,205054.047,234072.5211,0,17.8
+158689,206175.2752,233404.9409,0,17.8
+158690,205990.5502,233766.1865,0,17.8
+158691,206963.0601,234742.2632,0,17.8
+158692,207203.2115,235374.1358,0,17.8
+158693,206979.923,237856.8108,0,17.8
+158694,208314.4194,237141.9227,0,17.8
+158695,208000.4018,237960.6611,0,17.8
+158696,208684.8348,238405.7962,0,17.8
+158697,209165.5993,238971.0858,0,17.8
+158698,209098.4816,239587.1412,0,17.8
+158699,210074.8744,239547.4447,0,17.8
+158700,210061.6429,241157.163,0,20
+158701,1105727.682,1430874.89,3636.08707,20
+158702,456387.6975,306631.9843,0,20
+158703,123695.7233,124066.3145,0,20
+158704,257043,379118.2498,0,20
+158705,334792.0578,331323.0571,3196.803622,20
+158706,266823.0613,324010.7628,22792.5795,20
+158707,275392.1493,313824.7361,17862.17925,20
+158708,276527.6539,317507.3368,16880.0782,20
+158709,276071.2202,316231.6467,18828.53233,20
+158710,275679.5412,316003.177,19225.06863,20
+158711,275693.1121,314623.1142,25907.06262,20
+158712,275998.1177,314454.3435,28877.28078,20
+158713,274951.5492,313152.9612,26680.31584,20
+158714,275385.9458,313339.8463,28314.72529,20
+158715,275156.2883,312201.7465,28836.07671,20
+158716,275144.1345,311407.8369,29218.32466,20
+158717,274989.8883,311032.0713,29897.35989,20
+158718,274886.867,310313.4911,30184.22849,20
+158719,274952.1571,309759.5066,30822.05685,20
+158720,274871.4762,309549.2276,31143.12808,20
+158721,274692.0508,308088.5495,31533.25624,20
+158722,275213.166,308263.4472,32210.93242,20
+158723,274370.9387,307406.9692,32335.79983,20
+158724,275071.9875,306876.3711,32838.51965,20
+158725,274322.0323,306140.6571,33379.04436,20
+158726,275196.3734,306108.1867,33621.10524,20
+158727,274577.3404,305275.4424,34205.44618,20
+158728,274811.8959,295897.1708,34369.19168,20
+158729,275045.3509,293695.3746,35098.13545,20
+158730,272952.4191,292268.0995,35182.52556,20
+158731,273349.7942,290643.2632,35720.29566,20
+158732,272630.2031,289673.855,36042.74199,20
+158733,273147.5811,288310.3847,36481.74758,20
+158734,272389.5282,286761.7626,36675.13437,20
+158735,272456.5861,285266.5578,37214.20428,20
+158736,272458.5696,285042.89,37536.9664,20
+158737,272351.3875,282431.7911,37823.34846,20
+158738,272161.7943,282132.2599,38501.18924,20
+158739,272114.4815,280032.3645,38463.29974,20
+158740,266900.2289,278922.0582,39045.93425,20
+158741,265259.3017,278292.2111,39308.77835,20
+158742,264732.2556,275659.1052,39650.58485,20
+158743,264125.0037,275118.565,39987.83608,20
+158744,263439.9289,273560.1664,40489.84344,20
+158745,262525.9556,272460.938,40604.58757,20
+158746,261944.8583,270797.1113,41132.74182,20
+158747,261238.7362,269428.0062,41226.60212,20
+158748,260761.0146,267956.3212,41773.21639,20
+158749,259441.8778,266723.7652,42083.1067,20
+158750,259315.1976,265160.6075,42280.61634,20
+158751,258079.2247,263603.741,43834.22935,20
+158752,257839.6994,262743.8007,44647.51766,20
+158753,256755.7734,260471.2668,44754.59843,20
+158754,256058.4134,259853.007,45417.79173,20
+158755,255891.8416,257216.5365,45816.65402,20
+158756,254447.5542,256611.4156,46532.8185,20
+158757,254134.8945,254816.1063,46879.21645,20
+158758,253228.3082,252948.7525,47491.76263,20
+158759,252562.3484,251502.5242,47820.98856,20
+158760,251953.9805,249598.8716,48542.76309,21
+158761,434588.0165,520064.6325,40326.86076,21
+158762,431650.7332,515963.2717,40362.32573,21
+158763,430601.053,514295.1774,40087.10579,21
+158764,428120.2887,510924.7963,40413.03568,21
+158765,426127.829,508796.8929,40386.20867,21
+158766,424867.8582,505977.3631,39578.87179,21
+158767,423759.1675,503678.977,39780.06265,21
+158768,421582.7303,501143.2066,39530.78585,21
+158769,421036.5888,498471.5877,39761.28246,21
+158770,419045.2807,496041.3532,39849.89937,21
+158771,417939.8324,493424.8614,39765.14835,21
+158772,415990.9462,490810.9103,40138.63825,21
+158773,415213.5386,488719.7709,39019.36127,21
+158774,413621.6129,485709.1983,39412.71784,21
+158775,411573.4561,483890.72,39354.31678,21
+158776,411043.9701,480669.802,39333.43846,21
+158777,409059.5893,478398.2684,39494.93728,21
+158778,407928.0348,476157.0858,39490.02216,21
+158779,406235.0069,473318.4391,39813.28215,21
+158780,404971.1547,471378.4155,39777.47298,21
+158781,403326.4797,468326.2936,39820.54339,21
+158782,402274.7531,466036.7233,40110.84405,21
+158783,400726.4679,463846.5608,39920.15262,21
+158784,399015.0281,461061.6099,40417.48542,21
+158785,397609.0501,458679.2222,40017.49519,21
+158786,396589.9768,456236.6764,40567.59024,21
+158787,394851.9006,453923.2283,40325.82832,21
+158788,393589.786,451313.4858,40626.00207,21
+158789,392181.4658,448598.7524,40695.47706,21
+158790,390779.416,446515.3176,41144.80555,21
+158791,389188.3492,444011.0537,40928.73267,21
+158792,388272.0909,441506.4642,40729.20887,21
+158793,386749.9059,439254.2538,40470.20469,21
+158794,385651.845,437105.4624,40468.81999,21
+158795,384033.4099,434750.1899,40246.81385,21
+158796,382912.458,431973.2963,40145.28205,21
+158797,381538.2372,430905.2493,39960.38024,21
+158798,380152.0158,427286.8553,39785.61933,21
+158799,378914.6033,425463.1673,39520.16709,21
+158800,377566.2223,423757.5542,39616.66566,21
+158801,376448.8402,420966.0658,39268.3561,21
+158802,374792.291,418759.9032,39258.03075,21
+158803,373857.9788,416726.6786,38984.02908,21
+158804,372060.9025,414127.0038,38713.32097,21
+158805,370806.5812,412281.9808,38810.28997,21
+158806,369821.7755,409700.6998,38413.72187,21
+158807,367736.5698,408047.212,38363.92458,21
+158808,367140.595,405323.6021,38177.02064,21
+158809,364876.8287,403222.3954,38177.81066,21
+158810,363923.9189,401054.989,37845.67092,21
+158811,362393.7942,398740.1133,37614.67387,21
+158812,361065.5463,397087.6395,37678.35985,21
+158813,359539.1907,394476.9769,37382.26419,21
+158814,358085.0126,393643.1717,37209.37212,21
+158815,356580.1578,391954.73,37099.18295,21
+158816,355019.1884,390195.5592,36972.12583,21
+158817,353569.6269,388171.2941,36653.99777,21
+158818,352593.4751,387112.3683,36532.7426,21
+158819,350118.4939,384829.2156,36515.47416,21
+158820,349489.926,383169.276,36200.35668,21
+158821,278455.5528,310753.1255,1968.047568,21
+158822,272710.117,303130.9327,1686.712145,21
+158823,268011.0243,299684.6043,1592.170583,21
+158824,263767.6962,296199.9467,1528.235068,21
+158825,259632.7723,292901.4461,1464.615424,21
+158826,255155.1717,289256.6084,1400.718695,21
+158827,250920.2758,284856.797,1352.263587,21
+158828,246708.5283,281942.8133,1287.846669,21
+158829,242267.4408,277410.8079,1238.94631,21
+158830,238173.274,275130.089,1189.825642,21
+158831,233718.4068,270598.7627,1124.58569,21
+158832,229757.0755,268046.3682,1083.409777,21
+158833,225170.4417,263644.4535,1009.081244,21
+158834,220301.0116,260816.8277,992.0369094,21
+158835,216119.2906,256831.5613,925.6525924,21
+158836,211728.4122,253608.8599,874.9886253,21
+158837,207581.8971,250310.1195,825.2916462,21
+158838,203207.0281,246402.702,772.6262523,21
+158839,199177.6511,243144.8494,740.1679078,21
+158840,194516.8774,240220.5639,670.3590372,21
+158841,190975.5647,236269.0899,635.9628331,21
+158842,186330.772,233220.6961,583.0382562,21
+158843,182337.733,229348.4382,531.6248962,21
+158844,178159.2774,226829.9659,503.4297934,21
+158845,173990.222,222780.7549,431.522573,21
+158846,169813.5059,220101.6442,404.6808042,21
+158847,165721.2561,216566.1926,388.0206119,21
+158848,161660.8963,212820.7633,371.3077044,21
+158849,157525.1307,210336.2748,354.5402246,21
+158850,153379.1562,206597.0336,337.716153,21
+158851,149535.7372,203684.5089,303.8873829,21
+158852,145233.7444,200328.3981,303.8890326,21
+158853,141382.4862,197185.5716,269.8043721,21
+158854,137253.8385,193805.5163,269.8056721,21
+158855,132894.2804,191001.0634,218.1397019,21
+158856,128582.5281,187315.1736,235.4400621,21
+158857,124869.2614,184935.2141,200.7582562,21
+158858,120520.8211,181005.864,183.2861049,21
+158859,116755.4978,178474.2157,165.7170928,21
+158860,112468.6507,174594.4664,148.0426957,21
+158861,108600.1844,172238.4622,130.252424,21
+158862,104840.6462,168749.3296,112.3330243,21
+158863,101166.6069,165413.5273,94.26718095,21
+158864,97669.62852,162795.0416,76.03121135,21
+158865,93810.89715,159160.9228,57.59056174,21
+158866,90317.65623,156549.6362,38.88944768,21
+158867,86454.97369,153245.3419,19.81947393,21
+158868,83107.58086,149990.5257,0,21
+158869,79149.63433,147018.0838,0,21
+158870,75916.66023,143999.742,0,21
+158871,71799.38512,140939.9393,0,21
+158872,68680.99165,137276.8352,0,21
+158873,64651.84704,134031.0421,0,21
+158874,61363.22069,131114.5719,0,21
+158875,57678.38222,127917.3283,0,21
+158876,54058.98389,123840.8896,0,21
+158877,52033.25785,120118.7394,0,21
+158878,50652.311,117116.3631,0,21
+158879,49593.68068,113651.1925,0,21
+158880,48274.03178,109754.9036,0,21
+158881,47498.97019,108504.7022,0,21
+158882,46583.28748,105336.1475,0,21
+158883,45594.85605,103379.0991,0,21
+158884,44618.92513,100951.6601,0,21
+158885,43910.1892,98225.62514,0,21
+158886,42884.28406,96567.49874,0,21
+158887,41832.82905,94020.87807,0,21
+158888,41165.34057,91786.12088,0,21
+158889,39995.02245,89646.92722,0,21
+158890,39363.92736,87466.55522,0,21
+158891,38124.51554,85074.40667,0,21
+158892,37507.5857,83155.16904,0,21
+158893,36213.15587,76057.21696,0,21
+158894,35598.73018,73114.51781,0,21
+158895,34702.37013,71002.27514,0,21
+158896,33561.04527,66706.22025,0,21
+158897,32686.09012,64115.57736,0,21
+158898,31721.6032,61013.50832,0,21
+158899,31000.66783,57566.54141,0,21
+158900,30189.96552,54325.97266,0,21
+158901,29359.39331,52620.6122,0,21
+158902,28712.22186,51487.84764,0,21
+158903,27666.13247,50666.01654,0,21
+158904,27413.54892,50048.39403,0,21
+158905,26517.52431,49135.21725,0,21
+158906,26315.76898,48122.99641,0,21
+158907,25898.48138,47685.75051,0,21
+158908,25784.0627,46540.10781,0,21
+158909,25546.08735,45380.30102,0,21
+158910,25260.30566,45077.0261,0,21
+158911,25009.71737,43597.04211,0,21
+158912,24916.35641,43400.03896,0,21
+158913,24451.49017,42017.52885,0,21
+158914,24375.51088,41432.3409,0,21
+158915,24188.06579,39977.10462,0,21
+158916,23840.81891,39445.57009,0,21
+158917,23726.75137,38163.61189,0,21
+158918,23359.03498,37217.40917,0,21
+158919,23187.56453,35953.43714,0,21
+158920,23128.34108,34936.03274,0,21
+158921,22703.15443,33665.53849,0,21
+158922,22535.60296,32426.66693,0,21
+158923,22318.46272,31122.11203,0,21
+158924,22009.33176,30108.615,0,21
+158925,21900.92517,29186.8571,0,21
+158926,21631.67583,27506.44335,0,21
+158927,21319.74483,26855.48807,0,21
+158928,21057.90569,25609.70336,0,21
+158929,20926.48754,24874.58379,0,21
+158930,20653.49859,23534.95336,0,21
+158931,20337.56563,22526.22631,0,21
+158932,20062.89959,21535.00865,0,21
+158933,19949.17519,20124.28074,0,21
+158934,19639.48029,20004.74759,0,21
+158935,19362.66244,19863.85518,0,21
+158936,19215.30503,19510.13763,0,21
+158937,18836.19354,19307.53345,0,21
+158938,18654.36142,19020.63412,0,21
+158939,18492.30781,18975.13512,0,21
+158940,18012.67164,18557.55791,0,21
+158941,17586.78152,17995.20405,0,21
+158942,17167.90247,17797.41299,0,21
+158943,16945.27858,17410.03398,0,21
+158944,16732.8227,17292.77694,0,21
+158945,16419.00577,16879.04762,0,21
+158946,16183.65275,16735.60046,0,21
+158947,15886.15807,16430.05917,0,21
+158948,15726.18761,16209.05241,0,21
+158949,15260.27172,16011.23738,0,21
+158950,15283.56729,15637.75891,0,21
+158951,14780.79499,15463.6799,0,21
+158952,14530.03832,15068.76334,0,21
+158953,14358.17464,14919.33574,0,21
+158954,14155.27501,14775.55849,0,21
+158955,13916.92568,14185.44429,0,21
+158956,13780.54626,14204.43814,0,21
+158957,13472.55921,13761.94457,0,21
+158958,13461.27168,13645.0546,0,21
+158959,13197.59928,13312.29127,0,21
+158960,12921.43716,13075.9314,0,21
+158961,12782.7417,12926.58593,0,21
+158962,12609.07397,12746.72971,0,21
+158963,12341.93323,12712.27964,0,21
+158964,12318.50797,12404.49176,0,21
+158965,11921.42983,12379.59755,0,21
+158966,11862.136,12201.96208,0,21
+158967,11627.49956,12035.52923,0,21
+158968,11461.98181,11880.38399,0,21
+158969,11165.90494,11818.38321,0,21
+158970,11165.33942,11533.85201,0,21
+158971,10843.68358,11495.11499,0,21
+158972,10629.24824,11315.1474,0,21
+158973,10543.47556,11301.61729,0,21
+158974,10266.75387,10991.15896,0,21
+158975,10146.40069,10950.4246,0,21
+158976,9962.651404,10928.10804,0,21
+158977,9696.742188,10624.75318,0,21
+158978,9644.877458,10573.3428,0,21
+158979,9362.79839,10430.29807,0,21
+158980,9240.200912,10232.07984,0,21
+158981,9040.021281,10245.80061,0,21
+158982,8792.256601,10155.79355,0,21
+158983,8724.925633,9889.043005,0,21
+158984,8492.429027,9718.319318,0,21
+158985,8357.088988,9798.47321,0,21
+158986,8246.429195,9531.821389,0,21
+158987,8085.38491,9453.088019,0,21
+158988,7862.765476,9319.925218,0,21
+158989,7824.940263,9118.317866,0,21
+158990,7588.597875,9119.725735,0,21
+158991,7476.34213,8917.460598,0,21
+158992,7425.505276,8770.531455,0,21
+158993,7074.279597,8715.906104,0,21
+158994,7174.596239,8704.566534,0,21
+158995,6808.748671,8391.249864,0,21
+158996,6795.889584,8324.766723,0,21
+158997,6528.868692,8202.012053,0,21
+158998,6528.868831,8010.857429,0,21
+158999,6273.386858,8108.18132,0,21
+159000,6132.097068,7682.234794,0,21
+159001,6375.155479,8244.806192,0,21
+159002,6247.351799,7791.947534,0,21
+159003,6105.966271,7767.159436,0,21
+159004,5848.226833,7738.739315,0,21
+159005,5835.072783,7547.153763,0,21
+159006,5705.628688,7227.978663,0,21
+159007,5562.577095,7368.044403,0,21
+159008,5301.727204,7146.391483,0,21
+159009,5301.727021,6853.849205,0,21
+159010,5157.367917,6952.591821,0,21
+159011,5012.518136,6630.192369,0,21
+159012,4761.728506,6603.254467,0,21
+159013,4734.805105,6420.93024,0,21
+159014,4721.30123,6237.055373,0,21
+159015,4348.590285,6209.74867,0,21
+159016,4321.439742,6025.14179,0,21
+159017,4187.214316,5855.285065,0,21
+159018,4159.887597,5655.504302,0,21
+159019,3795.225493,5633.900709,0,21
+159020,3876.052872,5598.932018,0,21
+159021,3631.476885,5268.130041,0,21
+159022,3589.965181,5080.553778,0,21
+159023,3343.232213,5210.884156,0,21
+159024,3329.336777,4863.00653,0,21
+159025,3038.407174,4833.797193,0,21
+159026,3163.234235,4644.184924,0,21
+159027,2772.791266,4483.154682,0,21
+159028,2856.637059,4423.783484,0,21
+159029,2617.803525,4099.276432,0,21
+159030,2447.730845,4202.287639,0,21
+159031,2433.495622,4039.367028,0,21
+159032,2161.610902,3696.189784,0,21
+159033,2132.957821,3799.903063,0,21
+159034,1857.25036,3635.004226,0,21
+159035,1828.368714,3438.905754,0,21
+159036,1562.581932,3407.084699,0,21
+159037,1518.96161,3232.710082,0,21
+159038,1384.042917,3177.522842,0,21
+159039,1064.97003,2870.308115,0,21
+159040,1064.970011,2977.626119,0,21
+159041,894.385969,2839.83241,0,21
+159042,734.9419342,2655.049872,0,21
+159043,553.2548565,2639.69575,0,21
+159044,553.2548551,2484.330003,0,21
+159045,508.1627263,2453.519859,0,21
+159046,508.1627241,2296.842711,0,21
+159047,477.8467708,2281.315739,0,21
+159048,462.6087615,2107.721808,0,21
+159049,431.9657507,2092.236086,0,21
+159050,431.9657493,1916.841484,0,21
+159051,385.5599182,1836.248527,0,21
+159052,385.5599172,1723.888978,0,21
+159053,354.3070025,1723.88887,0,21
+159054,338.5793748,1528.455916,0,21
+159055,322.7809724,1544.164232,0,21
+159056,290.9603616,1345.698211,0,21
+159057,290.9603614,1329.914094,0,21
+159058,242.6182158,1158.709858,0,21
+159059,242.6182157,1127.025684,0,21
+159060,226.3243577,1127.025704,0,21
+159061,568.1882659,5015.20561,0,21
+159062,568.1882808,5127.426182,0,21
+159063,568.1882966,4999.67519,0,21
+159064,538.2736718,4984.581496,0,21
+159065,2424.907571,4954.299398,0,21
+159066,1355.663852,4826.064594,0,21
+159067,1504.255589,4810.907494,0,21
+159068,1458.845796,4636.537191,0,21
+159069,1340.534289,4795.718796,0,21
+159070,1443.618961,4476.731989,0,21
+159071,1159.89708,4621.275632,0,21
+159072,1159.897578,4461.439292,0,21
+159073,1144.547816,4316.279644,0,21
+159074,838.5949334,4430.76516,0,21
+159075,992.5870561,4300.959363,0,21
+159076,807.4717963,4124.425264,0,21
+159077,823.0652491,4270.217317,0,21
+159078,650.775159,3962.551606,0,21
+159079,506.1719189,4108.98604,0,21
+159080,635.0476264,3931.58743,0,21
+159081,322.779617,3947.070367,0,21
+159082,306.9077057,3768.916231,0,21
+159083,290.9591352,3768.915731,0,21
+159084,290.9591372,3753.353137,0,21
+159085,266.8849495,3605.497955,0,21
+159086,258.8179442,3574.265186,0,21
+159087,242.6172038,3589.899225,0,21
+159088,226.3234116,3409.985772,0,21
+159089,226.3234133,3425.65653,0,21
+159090,209.9310247,3244.884608,0,21
+159091,193.4336239,3378.536305,0,21
+159092,176.8237612,3094.647063,0,21
+159093,176.8237657,3213.352299,0,21
+159094,160.0925521,3063.116588,0,21
+159095,143.229331,3047.293882,0,21
+159096,143.2293043,2880.310293,0,21
+159097,126.220933,2896.171314,0,21
+159098,126.2209175,2848.468592,0,21
+159099,91.69720651,2712.341974,0,21
+159100,109.0507822,2373.178978,0,21
+159101,74.13055562,2341.084261,0,21
+159102,74.13055629,2201.779126,0,21
+159103,74.13055645,2153.462439,0,21
+159104,47.27996051,2012.93403,0,21
+159105,38.1586269,2153.462324,0,21
+159106,38.15862695,1822.456331,0,21
+159107,19.5480522,1822.456076,0,21
+159108,19.54805224,1789.941602,0,21
+159109,0,1646.422435,0,21
+159110,0,1613.818427,0,21
+159111,0,1613.818289,0,21
+159112,0,1354.015893,0,21
+159113,0,1435.719417,0,21
+159114,0,1255.250396,0,21
+159115,0,1321.134141,0,21
+159116,0,1071.774842,0,21
+159117,0,1222.273146,0,21
+159118,0,867.4968851,0,21
+159119,0,1055.261976,0,21
+159120,0,834.2226833,0,21
+159121,0,308.5079871,0,21
+159122,0,253.9562346,0,21
+159123,0,272.2487746,0,21
+159124,0,253.9563721,0,21
+159125,0,235.553772,0,21
+159126,0,217.033844,0,21
+159127,0,226.3089635,0,21
+159128,0,198.3883042,0,21
+159129,0,198.3883087,0,21
+159130,0,179.6072922,0,21
+159131,0,179.6072922,0,21
+159132,0,160.6789725,0,21
+159133,0,160.6789712,0,21
+159134,0,141.5887879,0,21
+159135,0,122.3183278,0,21
+159136,0,141.5887981,0,21
+159137,0,102.8436145,0,21
+159138,0,102.8436425,0,21
+159139,0,93.01977992,0,21
+159140,0,83.13172518,0,21
+159141,0,73.17284262,0,21
+159142,0,63.13498307,0,21
+159143,0,42.77613954,0,21
+159144,0,63.13500718,0,21
+159145,0,21.90557598,0,21
+159146,0,21.90556286,0,21
+159147,0,21.905564,0,21
+159148,0,0,0,21
+159149,0,0,0,21
+159150,0,0,0,21
+159151,0,0,0,21
+159152,0,0,0,21
+159153,0,0,0,21
+159154,0,0,0,21
+159155,0,0,0,21
+159156,0,0,0,21
+159157,0,0,0,21
+159158,0,0,0,21
+159159,0,0,0,21
+159160,0,0,0,21
+159161,0,0,0,21
+159162,0,0,0,21
+159163,0,0,0,21
+159164,0,0,0,21
+159165,0,0,0,21
+159166,0,0,0,21
+159167,0,0,0,21
+159168,0,0,0,21
+159169,0,0,0,21
+159170,0,0,0,21
+159171,0,0,0,21
+159172,0,0,0,21
+159173,0,0,0,21
+159174,0,0,0,21
+159175,0,0,0,21
+159176,0,0,0,21
+159177,0,0,0,21
+159178,0,0,0,21
+159179,0,0,0,21
+159180,0,0,0,21
+159181,0,0,0,21
+159182,0,0,0,21
+159183,0,0,0,21
+159184,0,0,0,21
+159185,0,0,0,21
+159186,0,0,0,21
+159187,0,0,0,21
+159188,0,0,0,21
+159189,0,0,0,21
+159190,0,0,0,21
+159191,0,0,0,21
+159192,0,0,0,21
+159193,0,0,0,21
+159194,0,0,0,21
+159195,0,0,0,21
+159196,0,0,0,21
+159197,0,0,0,21
+159198,0,0,0,21
+159199,0,0,0,21
+159200,0,0,0,21
+159201,0,0,0,21
+159202,0,0,0,21
+159203,0,0,0,21
+159204,0,0,0,21
+159205,0,0,0,21
+159206,0,0,0,21
+159207,0,0,0,21
+159208,0,0,0,21
+159209,0,0,0,21
+159210,0,0,0,21
+159211,0,0,0,21
+159212,0,0,0,21
+159213,0,0,0,21
+159214,0,0,0,21
+159215,0,0,0,21
+159216,0,0,0,21
+159217,0,0,0,21
+159218,0,0,0,21
+159219,0,0,0,21
+159220,0,0,0,21
+159221,0,0,0,21
+159222,0,0,0,21
+159223,0,0,0,21
+159224,0,0,0,21
+159225,0,0,0,21
+159226,0,0,0,21
+159227,0,0,0,21
+159228,0,0,0,21
+159229,0,0,0,21
+159230,0,0,0,21
+159231,0,0,0,21
+159232,0,0,0,21
+159233,0,0,0,21
+159234,0,0,0,21
+159235,0,0,0,21
+159236,0,0,0,21
+159237,0,0,0,21
+159238,0,0,0,21
+159239,0,0,0,21
+159240,0,0,0,21
+159241,0,0,0,21
+159242,0,0,0,21
+159243,0,0,0,21
+159244,0,0,0,21
+159245,0,0,0,21
+159246,0,0,0,21
+159247,0,0,0,21
+159248,0,0,0,21
+159249,0,0,0,21
+159250,0,0,0,21
+159251,0,0,0,21
+159252,0,0,0,21
+159253,0,0,0,21
+159254,0,0,0,21
+159255,0,0,0,21
+159256,0,0,0,21
+159257,0,0,0,21
+159258,0,0,0,21
+159259,0,0,0,21
+159260,0,0,0,21
+159261,0,0,0,21
+159262,0,0,0,21
+159263,0,0,0,21
+159264,0,0,0,21
+159265,0,0,0,21
+159266,0,0,0,21
+159267,0,0,0,21
+159268,0,0,0,21
+159269,0,0,0,21
+159270,0,0,0,21
+159271,0,0,0,21
+159272,0,0,0,21
+159273,0,0,0,21
+159274,0,0,0,21
+159275,0,0,0,21
+159276,0,0,0,21
+159277,0,0,0,21
+159278,0,0,0,21
+159279,0,0,0,21
+159280,0,0,0,21
+159281,0,0,0,21
+159282,0,0,0,21
+159283,0,0,0,21
+159284,0,0,0,21
+159285,0,0,0,21
+159286,0,0,0,21
+159287,0,0,0,21
+159288,0,0,0,21
+159289,0,0,0,21
+159290,0,0,0,21
+159291,0,0,0,21
+159292,0,0,0,21
+159293,0,0,0,21
+159294,0,0,0,21
+159295,0,0,0,21
+159296,0,0,0,21
+159297,0,0,0,21
+159298,0,0,0,21
+159299,0,0,0,21
+159300,0,0,0,21
+159301,0,0,0,21
+159302,0,0,0,21
+159303,0,0,0,21
+159304,0,0,0,21
+159305,0,0,0,21
+159306,0,0,0,21
+159307,0,0,0,21
+159308,0,0,0,21
+159309,0,0,0,21
+159310,0,0,0,21
+159311,0,0,0,21
+159312,0,0,0,21
+159313,0,0,0,21
+159314,0,0,0,21
+159315,0,0,0,21
+159316,0,0,0,21
+159317,0,0,0,21
+159318,0,0,0,21
+159319,0,0,0,21
+159320,0,0,0,21
+159321,0,0,0,21
+159322,0,0,0,21
+159323,0,0,0,21
+159324,0,0,0,21
+159325,0,0,0,21
+159326,0,0,0,21
+159327,0,0,0,21
+159328,0,0,0,21
+159329,0,0,0,21
+159330,0,0,0,21
+159331,0,0,0,21
+159332,0,0,0,21
+159333,0,0,0,21
+159334,0,0,0,21
+159335,0,0,0,21
+159336,0,0,0,21
+159337,0,0,0,21
+159338,0,0,0,21
+159339,0,0,0,21
+159340,0,0,0,21
+159341,0,0,0,21
+159342,0,0,0,21
+159343,0,0,0,21
+159344,0,0,0,21
+159345,0,0,0,21
+159346,0,0,0,21
+159347,0,0,0,21
+159348,0,0,0,21
+159349,0,0,0,21
+159350,0,0,0,21
+159351,0,0,0,21
+159352,0,0,0,21
+159353,0,0,0,21
+159354,0,0,0,21
+159355,0,0,0,21
+159356,0,0,0,21
+159357,0,0,0,21
+159358,0,0,0,21
+159359,0,0,0,21
+159360,0,0,0,21
+159361,0,0,0,21
+159362,0,0,0,21
+159363,0,0,0,21
+159364,0,0,0,21
+159365,0,0,0,21
+159366,0,0,0,21
+159367,0,0,0,21
+159368,0,0,0,21
+159369,0,0,0,21
+159370,0,0,0,21
+159371,0,0,0,21
+159372,0,0,0,21
+159373,0,0,0,21
+159374,0,0,0,21
+159375,0,0,0,21
+159376,0,0,0,21
+159377,0,0,0,21
+159378,0,0,0,21
+159379,0,0,0,21
+159380,0,0,0,21
+159381,0,0,0,21
+159382,0,0,0,21
+159383,0,0,0,21
+159384,0,0,0,21
+159385,0,0,0,21
+159386,0,0,0,21
+159387,0,0,0,21
+159388,0,0,0,21
+159389,0,0,0,21
+159390,0,0,0,21
+159391,0,0,0,21
+159392,0,0,0,21
+159393,0,0,0,21
+159394,0,0,0,21
+159395,0,0,0,21
+159396,0,0,0,21
+159397,0,0,0,21
+159398,0,0,0,21
+159399,0,0,0,21
+159400,0,0,0,21
+159401,0,0,0,21
+159402,0,0,0,21
+159403,0,0,0,21
+159404,0,0,0,21
+159405,0,0,0,21
+159406,0,0,0,21
+159407,0,0,0,21
+159408,0,0,0,21
+159409,0,0,0,21
+159410,0,0,0,21
+159411,0,0,0,21
+159412,0,0,0,21
+159413,0,0,0,21
+159414,0,0,0,21
+159415,0,0,0,21
+159416,0,0,0,21
+159417,0,0,0,21
+159418,0,0,0,21
+159419,0,0,0,21
+159420,0,0,0,21
+159421,0,0,0,21
+159422,0,0,0,21
+159423,0,0,0,21
+159424,0,0,0,21
+159425,0,0,0,21
+159426,0,0,0,21
+159427,0,0,0,21
+159428,0,0,0,21
+159429,0,0,0,21
+159430,0,0,0,21
+159431,0,0,0,21
+159432,0,0,0,21
+159433,0,0,0,21
+159434,0,0,0,21
+159435,0,0,0,21
+159436,0,0,0,21
+159437,0,0,0,21
+159438,0,0,0,21
+159439,0,0,0,21
+159440,0,0,0,21
+159441,0,0,0,21
+159442,0,0,0,21
+159443,0,0,0,21
+159444,0,0,0,21
+159445,0,0,0,21
+159446,0,0,0,21
+159447,0,0,0,21
+159448,0,0,0,21
+159449,0,0,0,21
+159450,0,0,0,21
+159451,0,0,0,21
+159452,0,0,0,21
+159453,0,0,0,21
+159454,0,0,0,21
+159455,0,0,0,21
+159456,2408.336644,0,0,21
+159457,1387.071517,0,0,21
+159458,2157.220095,0,0,21
+159459,2408.33605,0,0,21
+159460,2532.968288,0,0,21
+159461,3026.162158,0,0,21
+159462,3148.18691,0,0,21
+159463,3511.471404,0,0,21
+159464,3751.46635,0,0,21
+159465,3989.811895,0,0,21
+159466,4344.407621,0,0,21
+159467,4461.860693,0,0,21
+159468,4812.09264,0,0,21
+159469,5043.873947,0,0,21
+159470,5389.10805,704.491872,0,21
+159471,5503.556948,1361.694534,0,21
+159472,5845.090084,1199.89509,0,21
+159473,6071.310394,1361.69468,0,21
+159474,6296.395232,1839.391167,0,21
+159475,6631.960908,1903.842355,0,21
+159476,6743.279205,2150.671216,0,21
+159477,7075.676409,2432.369214,0,21
+159478,7296.002872,2625.736097,0,21
+159479,7515.339606,2798.447588,0,21
+159480,7842.537201,2989.23961,0,21
+159481,7951.135414,3141.107622,0,21
+159482,8275.535125,3480.375469,0,21
+159483,8610.314962,3630.177178,0,21
+159484,8783.716569,3834.978963,0,21
+159485,9145.402995,4113.040083,0,21
+159486,9284.343869,4168.07649,0,21
+159487,9544.635171,4462.271944,0,21
+159488,9755.908765,4644.782464,0,21
+159489,10029.51432,4790.530362,0,21
+159490,10029.51575,5134.236209,0,21
+159491,10494.6551,5116.400092,0,21
+159492,10733.5057,5457.693083,0,21
+159493,10748.80687,5600.989825,0,21
+159494,11208.2122,5761.450073,0,21
+159495,11341.30787,6080.834275,0,21
+159496,11459.08818,6239.75589,0,21
+159497,11905.69091,6556.222308,0,21
+159498,11927.88098,6853.638219,0,21
+159499,12277.09175,6870.814442,0,21
+159500,12393.05299,7183.602768,0,21
+159501,12725.15655,7322.335341,0,21
+159502,12854.72478,7494.653275,0,21
+159503,13084.2823,7649.544894,0,21
+159504,13313.00449,7941.29645,0,21
+159505,13540.9033,7958.091219,0,21
+159506,13767.99017,8384.571621,0,21
+159507,13994.27603,8281.674659,0,21
+159508,14205.79756,8689.368333,0,21
+159509,14247.61609,8722.514246,0,21
+159510,14668.43066,9009.168328,0,21
+159511,14877.84491,9160.225828,0,21
+159512,14905.35137,9176.639809,0,21
+159513,15127.71706,9611.224042,0,21
+159514,15543.10766,9611.225401,0,21
+159515,15376.46236,9910.135951,0,21
+159516,15873.26853,9926.329435,0,21
+159517,15803.84774,10339.83986,0,21
+159518,16215.21027,10223.79128,0,21
+159519,16241.90911,10635.47221,0,21
+159520,16446.60724,10667.48765,0,21
+159521,16677.16166,10929.80573,0,21
+159522,16867.39972,10961.66248,0,21
+159523,17014.89971,11238.73644,0,21
+159524,17204.28447,11368.92892,0,21
+159525,17324.89836,11546.23046,0,21
+159526,17539.46444,11805.26912,0,21
+159527,18025.10503,11820.98828,0,21
+159528,18199.85049,12110.29911,0,21
+159529,18251.28536,12110.29988,0,21
+159530,18501.56163,12398.4307,0,21
+159531,18844.2753,12542.05986,0,21
+159532,18931.09358,12685.40088,0,21
+159533,19283.23767,12828.45652,0,21
+159534,19344.65215,12971.22888,0,21
+159535,19590.42055,13240.56784,0,21
+159536,19821.96115,13271.26407,0,21
+159537,21590.2727,13524.2335,0,21
+159538,23660.34477,13554.79519,0,21
+159539,23744.62117,13822.03808,0,21
+159540,24522.96811,14088.30488,0,21
+159541,26279.41844,14398.97422,0,21
+159542,27359.11352,14911.50254,0,21
+159543,27695.11878,15065.29871,0,21
+159544,28508.90608,15203.84518,0,21
+159545,29131.82613,15233.64549,0,21
+159546,29408.04098,15588.24575,0,21
+159547,30547.60154,15632.81062,0,21
+159548,30612.11713,15770.33413,0,21
+159549,31331.25993,16029.91174,0,21
+159550,31926.86391,16080.07219,0,21
+159551,32449.35591,16536.57824,0,21
+159552,33024.89595,16690.19068,0,21
+159553,33638.84752,16650.37402,0,21
+159554,33958.49807,17051.26756,0,21
+159555,34632.15045,17095.1453,0,21
+159556,35233.9169,17109.7947,0,21
+159557,35553.54811,17650.07099,0,21
+159558,36206.3153,17438.34123,0,21
+159559,36625.88638,17947.71018,0,21
+159560,37209.35142,17750.88682,0,21
+159561,38055.24115,18272.60808,0,21
+159562,38275.82079,18047.91213,0,21
+159563,39276.47045,18581.81833,0,21
+159564,39383.9172,18505.35769,0,21
+159565,40223.85163,18785.86504,0,21
+159566,40705.95795,19025.39708,0,21
+159567,41093.71465,19043.32791,0,21
+159568,41683.5465,19319.97831,0,21
+159569,42291.36074,19623.65722,0,21
+159570,42758.89646,19429.05986,0,21
+159571,43156.00844,19925.59376,0,21
+159572,43935.87183,20020.94785,0,21
+159573,45046.74901,20006.89284,0,21
+159574,48137.63358,20335.17499,0,21
+159575,47610.6591,20567.22607,0,21
+159576,48912.90713,20531.37431,0,21
+159577,49928.55956,20894.46779,0,21
+159578,51083.04062,20841.67792,0,21
+159579,51901.76295,21219.32508,0,21
+159580,53132.8813,21256.64517,0,21
+159581,53635.69015,21309.49445,0,21
+159582,54810.50759,21668.49527,0,21
+159583,55556.5711,21734.23799,0,21
+159584,56655.7928,21875.18308,0,21
+159585,57194.03035,22015.21252,0,21
+159586,58339.67417,22196.1418,0,21
+159587,59112.27873,22436.62525,0,21
+159588,60074.79363,22374.65578,0,21
+159589,60673.22362,22730.36151,0,21
+159590,61732.96181,22793.01177,0,21
+159591,62420.43121,22807.37357,0,21
+159592,63317.82739,23312.35574,0,21
+159593,64188.06203,23122.05933,0,21
+159594,64733.35743,23376.64628,0,21
+159595,65916.93304,23640.32782,0,21
+159596,66810.75205,23551.28801,0,21
+159597,67556.97861,23930.31237,0,21
+159598,68795.83703,23977.03012,0,21
+159599,69535.19566,24005.93484,0,21
+159600,70827.88306,24365.6562,0,21
+159601,71187.30618,24303.8928,0,21
+159602,71937.15284,24815.86685,0,21
+159603,72956.10347,24840.29217,0,21
+159604,73478.67897,24913.68406,0,21
+159605,74198.91962,25386.28781,0,21
+159606,75280.12828,25224.58935,0,21
+159607,78634.47123,25718.07415,0,21
+159608,78218.67533,25766.27291,0,21
+159609,79472.02411,26013.34486,0,21
+159610,80291.77496,26308.5956,0,21
+159611,81687.23084,26354.28344,0,21
+159612,82290.88325,26626.77801,0,21
+159613,83276.70979,26659.26442,0,21
+159614,84374.28207,27161.34145,0,21
+159615,85099.61648,27013.45906,0,21
+159616,86067.75915,27607.56827,0,21
+159617,87139.56262,27749.91614,0,21
+159618,87872.24637,28171.96717,0,21
+159619,88586.29652,28773.6495,0,21
+159620,89902.50143,28724.90071,0,21
+159621,90400.24128,29127.34581,0,21
+159622,91529.10205,29383.40051,0,21
+159623,92292.4509,29726.06344,0,21
+159624,93108.90072,29941.9698,0,21
+159625,94095.43535,30321.66771,0,21
+159626,94678.80744,30400.34957,0,21
+159627,95786.2452,31005.94682,0,21
+159628,96454.15015,30868.69344,0,21
+159629,97334.24162,31635.19525,0,21
+159630,98174.20842,31492.76957,0,21
+159631,98880.50348,31977.39798,0,21
+159632,99778.10978,32216.61221,0,21
+159633,100637.2176,32317.08726,0,21
+159634,101253.6577,32978.58243,0,21
+159635,102165.2444,33302.46062,0,21
+159636,103044.4376,33603.90485,0,21
+159637,103591.383,33745.12878,0,21
+159638,104624.3623,36687.52962,0,21
+159639,105112.4675,36907.71655,0,21
+159640,106046.4127,37208.52101,0,21
+159641,106937.3747,37880.9092,0,21
+159642,107995.4358,38592.45304,0,21
+159643,109435.3374,38969.62722,0,21
+159644,111330.4357,39594.40313,0,21
+159645,111949.1379,40160.77448,0,21
+159646,114157.0289,44231.14328,0,21
+159647,115017.0412,43680.40918,0,21
+159648,116781.9893,45054.1602,0,21
+159649,117991.5108,46020.32694,0,21
+159650,119527.1637,46786.29662,0,21
+159651,120699.9793,47895.77274,0,21
+159652,122269.1273,48962.37115,0,21
+159653,123679.451,49625.0699,0,21
+159654,124848.3903,50772.21826,0,21
+159655,126615.8826,51417.47988,0,21
+159656,127550.7882,52561.36268,0,21
+159657,129278.0706,53453.11235,0,21
+159658,130382.3387,53981.09768,0,21
+159659,131879.9429,55023.1179,0,21
+159660,133229.2638,55994.01524,0,21
+159661,0,0,0,21
+159662,0,0,0,21
+159663,81586.8414,162.6721855,0,21
+159664,0,0,0,21
+159665,0,368282.086,947984.312,21
+159666,339653.8774,0,0,21
+159667,0,0,0,21
+159668,0,0,0,21
+159669,0,0,0,21
+159670,0,228.9768069,0,21
+159671,0,0,0,21
+159672,0,0,0,21
+159673,0,0,0,21
+159674,0,0,0,21
+159675,0,0,0,21
+159676,0,0,0,21
+159677,0,0,0,21
+159678,0,0,0,21
+159679,0,0,0,21
+159680,0,0,0,21
+159681,0,0,0,21
+159682,0,0,0,21
+159683,0,151.404316,0,21
+159684,0,0,0,21
+159685,0,0,0,21
+159686,0,0,0,21
+159687,0,127.8292311,0,21
+159688,0,0,0,21
+159689,0,0,0,21
+159690,0,0,0,21
+159691,0,133.3730963,0,21
+159692,0,0,0,21
+159693,0,0,0,21
+159694,0,0,0,21
+159695,0,132.202085,0,21
+159696,0,0,0,21
+159697,0,0,0,21
+159698,0,0,0,21
+159699,0,368446.5432,925445.6215,21
+159700,0,0,0,21
+159701,339652.6358,0,0,21
+159702,0,0,0,21
+159703,0,116.374613,0,21
+159704,0,0,0,21
+159705,0,0,0,21
+159706,0,0,0,21
+159707,0,105.8321748,0,21
+159708,0,0,0,21
+159709,0,0,0,21
+159710,0,0,0,21
+159711,0,123.7707689,0,21
+159712,0,0,0,21
+159713,0,0,0,21
+159714,0,0,0,21
+159715,0,126.7191472,0,21
+159716,0,0,0,21
+159717,0,0,0,21
+159718,0,0,0,21
+159719,0,129.5019836,0,21
+159720,0,0,0,15.6
+159721,0,486.0577587,0,15.6
+159722,0,0,0,15.6
+159723,0,0,0,15.6
+159724,0,0,0,15.6
+159725,0,0,0,15.6
+159726,0,0,0,15.6
+159727,0,0,0,15.6
+159728,0,0,0,15.6
+159729,0,0,0,15.6
+159730,0,0,0,15.6
+159731,0,0,0,15.6
+159732,0,0,0,15.6
+159733,0,368331.2717,901610.1834,15.6
+159734,0,0,0,15.6
+159735,0,0,0,15.6
+159736,339665.6209,0,0,15.6
+159737,0,0,0,15.6
+159738,0,0,0,15.6
+159739,0,0,0,15.6
+159740,0,0,0,15.6
+159741,0,0,0,15.6
+159742,0,0,0,15.6
+159743,0,0,0,15.6
+159744,0,0,0,15.6
+159745,0,0,0,15.6
+159746,0,0,0,15.6
+159747,0,0,0,15.6
+159748,0,0,0,15.6
+159749,0,0,0,15.6
+159750,0,0,0,15.6
+159751,0,0,0,15.6
+159752,0,0,0,15.6
+159753,0,0,0,15.6
+159754,0,0,0,15.6
+159755,0,0,0,15.6
+159756,0,0,0,15.6
+159757,0,0,0,15.6
+159758,0,0,0,15.6
+159759,0,0,0,15.6
+159760,0,0,0,15.6
+159761,0,0,0,15.6
+159762,0,0,0,15.6
+159763,0,0,0,15.6
+159764,0,0,0,15.6
+159765,0,0,0,15.6
+159766,0,0,0,15.6
+159767,0,368340.6288,882806.2277,15.6
+159768,0,0,0,15.6
+159769,0,0,0,15.6
+159770,0,0,0,15.6
+159771,339696.8193,0,0,15.6
+159772,0,0,0,15.6
+159773,0,0,0,15.6
+159774,0,0,0,15.6
+159775,0,0,0,15.6
+159776,0,0,0,15.6
+159777,0,0,0,15.6
+159778,0,0,0,15.6
+159779,0,0,0,15.6
+159780,0,0,0,15.6
+159781,0,0,0,15.6
+159782,0,0,0,15.6
+159783,0,0,0,15.6
+159784,0,0,0,15.6
+159785,0,0,0,15.6
+159786,0,0,0,15.6
+159787,0,0,0,15.6
+159788,0,0,0,15.6
+159789,0,0,0,15.6
+159790,0,0,0,15.6
+159791,0,0,0,15.6
+159792,0,8.111790794,0,15.6
+159793,0,0,0,15.6
+159794,0,141.2918698,0,15.6
+159795,0,0,0,15.6
+159796,0,0,0,15.6
+159797,0,0,0,15.6
+159798,0,72.35025071,0,15.6
+159799,0,0,0,15.6
+159800,0,0,0,15.6
+159801,0,0,0,15.6
+159802,0,368462.6936,862730.2211,15.6
+159803,0,0,0,15.6
+159804,0,0,0,15.6
+159805,0,0,0,15.6
+159806,339704.1901,83.65705017,0,15.6
+159807,0,0,0,15.6
+159808,0,0,0,15.6
+159809,0,0,0,15.6
+159810,0,100.4490812,0,15.6
+159811,0,0,0,15.6
+159812,0,0,0,15.6
+159813,0,0,0,15.6
+159814,0,118.5869743,0,15.6
+159815,0,0,0,15.6
+159816,0,0,0,15.6
+159817,0,0,0,15.6
+159818,0,128.1643347,0,15.6
+159819,0,0,0,15.6
+159820,0,0,0,15.6
+159821,0,0,0,15.6
+159822,0,132.364004,0,15.6
+159823,0,0,0,15.6
+159824,0,0,0,15.6
+159825,0,0,0,15.6
+159826,0,130.3456007,0,15.6
+159827,0,0,0,15.6
+159828,0,0,0,15.6
+159829,0,0,0,15.6
+159830,0,125.9315552,0,15.6
+159831,0,0,0,15.6
+159832,0,0,0,15.6
+159833,0,0,0,15.6
+159834,0,120.5084567,0,15.6
+159835,0,0,0,15.6
+159836,0,0,0,15.6
+159837,0,368368.1615,847403.9031,15.6
+159838,0,111.0721485,0,15.6
+159839,0,0,0,15.6
+159840,0,0,0,15.6
+159841,339701.7254,0,0,15.6
+159842,0,81.67271024,0,15.6
+159843,0,0,0,15.6
+159844,0,0,0,15.6
+159845,0,0,0,15.6
+159846,0,103.7326236,0,15.6
+159847,0,0,0,15.6
+159848,0,0,0,15.6
+159849,0,0,0,15.6
+159850,0,115.8710822,0,15.6
+159851,0,0,0,15.6
+159852,0,0,0,15.6
+159853,0,0,0,15.6
+159854,0,123.3528961,0,15.6
+159855,0,0,0,15.6
+159856,0,0,0,15.6
+159857,0,0,0,15.6
+159858,0,127.4796972,0,15.6
+159859,0,0,0,15.6
+159860,0,0,0,15.6
+159861,0,0,0,15.6
+159862,0,130.3780887,0,15.6
+159863,0,0,0,15.6
+159864,0,0,0,15.6
+159865,0,0,0,15.6
+159866,0,131.2735981,0,15.6
+159867,0,0,0,15.6
+159868,0,0,0,15.6
+159869,0,0,0,15.6
+159870,0,130.2514433,0,15.6
+159871,0,0,0,15.6
+159872,0,368371.0246,830772.9019,15.6
+159873,0,0,0,15.6
+159874,0,118.907801,0,15.6
+159875,0,0,0,15.6
+159876,0,0,0,15.6
+159877,339702.3398,0,0,15.6
+159878,0,83.90555808,0,15.6
+159879,0,0,0,15.6
+159880,0,0,0,15.6
+159881,0,0,0,15.6
+159882,0,110.3876777,0,15.6
+159883,0,0,0,15.6
+159884,0,0,0,15.6
+159885,0,0,0,15.6
+159886,0,108.9159871,0,15.6
+159887,0,0,0,15.6
+159888,0,0,0,15.6
+159889,0,0,0,15.6
+159890,0,113.2459406,0,15.6
+159891,0,0,0,15.6
+159892,0,0,0,15.6
+159893,0,0,0,15.6
+159894,0,115.5130969,0,15.6
+159895,0,0,0,15.6
+159896,0,0,0,15.6
+159897,0,0,0,15.6
+159898,0,118.3318092,0,15.6
+159899,0,0,0,15.6
+159900,0,0,0,15.6
+159901,0,0,0,15.6
+159902,0,121.0306888,0,15.6
+159903,0,0,0,15.6
+159904,0,0,0,15.6
+159905,0,0,0,15.6
+159906,0,122.8947166,0,15.6
+159907,0,368371.5871,817930.1123,15.6
+159908,0,0,0,15.6
+159909,0,0,0,15.6
+159910,0,114.0911997,0,15.6
+159911,0,0,0,15.6
+159912,0,0,0,15.6
+159913,339703.1177,0,0,15.6
+159914,0,98.01627581,0,15.6
+159915,0,0,0,15.6
+159916,0,0,0,15.6
+159917,0,0,0,15.6
+159918,0,119.5724447,0,15.6
+159919,0,0,0,15.6
+159920,0,0,0,15.6
+159921,0,0,0,15.6
+159922,0,122.3080743,0,15.6
+159923,0,0,0,15.6
+159924,0,0,0,15.6
+159925,0,0,0,15.6
+159926,0,120.6513311,0,15.6
+159927,0,0,0,15.6
+159928,0,0,0,15.6
+159929,0,0,0,15.6
+159930,0,115.3164812,0,15.6
+159931,0,0,0,15.6
+159932,0,0,0,15.6
+159933,0,0,0,15.6
+159934,0,110.4637212,0,15.6
+159935,0,0,0,15.6
+159936,0,0,0,15.6
+159937,0,0,0,15.6
+159938,0,108.9362518,0,15.6
+159939,0,0,0,15.6
+159940,0,0,0,15.6
+159941,0,0,0,15.6
+159942,0,368481.0811,805158.2561,15.6
+159943,0,0,0,15.6
+159944,0,0,0,15.6
+159945,0,0,0,15.6
+159946,0,86.73011187,0,15.6
+159947,0,0,0,15.6
+159948,0,0,0,15.6
+159949,339703.198,0,0,15.6
+159950,0,98.21600243,0,15.6
+159951,0,0,0,15.6
+159952,0,0,0,15.6
+159953,0,0,0,15.6
+159954,0,112.1438317,0,15.6
+159955,0,0,0,15.6
+159956,0,0,0,15.6
+159957,0,0,0,15.6
+159958,0,121.6290662,0,15.6
+159959,0,0,0,15.6
+159960,0,0,0,15.6
+159961,0,0,0,15.6
+159962,0,125.5123678,0,15.6
+159963,0,0,0,15.6
+159964,0,0,0,15.6
+159965,0,0,0,15.6
+159966,0,125.8992325,0,15.6
+159967,0,0,0,15.6
+159968,0,0,0,15.6
+159969,0,0,0,15.6
+159970,0,122.6879209,0,15.6
+159971,0,0,0,15.6
+159972,0,0,0,15.6
+159973,0,0,0,15.6
+159974,0,118.1810884,0,15.6
+159975,0,0,0,15.6
+159976,0,0,0,15.6
+159977,0,368373.4488,793244.0172,15.6
+159978,0,108.478691,0,15.6
+159979,0,0,0,15.6
+159980,0,0,0,15.6
+159981,0,0,0,15.6
+159982,0,75.32854003,0,15.6
+159983,0,0,0,15.6
+159984,0,0,0,15.6
+159985,339704.6542,0,0,15.6
+159986,0,84.59412843,0,15.6
+159987,0,0,0,15.6
+159988,0,0,0,15.6
+159989,0,0,0,15.6
+159990,0,107.5721965,0,15.6
+159991,0,0,0,15.6
+159992,0,0,0,15.6
+159993,0,0,0,15.6
+159994,0,106.3159548,0,15.6
+159995,0,0,0,15.6
+159996,0,0,0,15.6
+159997,0,0,0,15.6
+159998,0,112.5827986,0,15.6
+159999,0,0,0,15.6
+160000,0,0,0,15.6
+160001,0,0,0,15.6
+160002,0,115.6197462,0,15.6
+160003,0,0,0,15.6
+160004,0,0,0,15.6
+160005,0,0,0,15.6
+160006,0,118.6708621,0,15.6
+160007,0,0,0,15.6
+160008,0,0,0,15.6
+160009,0,0,0,15.6
+160010,0,120.6083579,0,15.6
+160011,0,0,0,15.6
+160012,0,368372.415,783202.7474,15.6
+160013,0,0,0,15.6
+160014,0,115.3629619,0,15.6
+160015,0,0,0,15.6
+160016,0,0,0,15.6
+160017,0,0,0,15.6
+160018,0,84.20596051,0,15.6
+160019,0,0,0,15.6
+160020,0,0,0,15.6
+160021,339705.965,31641.32134,0,15.6
+160022,0,113.1886738,0,15.6
+160023,0,3916.354511,0,15.6
+160024,0,14292.18776,0,15.6
+160025,0,10664.79952,0,15.6
+160026,0,10293.10107,0,15.6
+160027,0,10725.81761,0,15.6
+160028,0,10803.18645,0,15.6
+160029,0,10926.55696,0,15.6
+160030,0,12021.0166,0,15.6
+160031,0,11368.94648,0,15.6
+160032,0,11589.37461,0,15.6
+160033,0,11649.55848,0,15.6
+160034,0,11861.05018,0,15.6
+160035,0,11756.47522,0,15.6
+160036,0,11814.23364,0,15.6
+160037,0,11862.54994,0,15.6
+160038,0,12021.15188,0,15.6
+160039,0,11974.7186,0,15.6
+160040,0,12009.11177,0,15.6
+160041,0,12081.94869,0,15.6
+160042,0,12165.34992,0,15.6
+160043,0,12225.38204,0,15.6
+160044,0,12132.97721,0,15.6
+160045,0,12284.21991,0,15.6
+160046,0,12376.75667,772650.4479,15.6
+160047,0,380707.4123,0,15.6
+160048,0,12384.84854,0,15.6
+160049,0,12383.59594,0,15.6
+160050,0,12570.53961,0,15.6
+160051,0,0,0,15.6
+160052,0,0,0,15.6
+160053,0,0,0,15.6
+160054,0,74.47928578,0,15.6
+160055,339705.4632,0,0,15.6
+160056,0,0,0,15.6
+160057,0,0,0,15.6
+160058,0,112.5855999,0,15.6
+160059,0,0,0,15.6
+160060,0,0,0,15.6
+160061,0,0,0,15.6
+160062,0,31818.84993,0,15.6
+160063,0,2191.588773,0,15.6
+160064,0,9126.280668,0,15.6
+160065,0,13752.66368,0,15.6
+160066,0,12666.6219,0,15.6
+160067,0,13253.3252,0,15.6
+160068,0,12683.95236,0,15.6
+160069,0,13050.25361,0,15.6
+160070,0,13224.24552,0,15.6
+160071,0,13080.67108,0,15.6
+160072,0,13127.0001,0,15.6
+160073,0,13172.54353,0,15.6
+160074,0,13311.82946,0,15.6
+160075,0,13216.91612,0,15.6
+160076,0,13233.8384,0,15.6
+160077,0,13282.70506,0,15.6
+160078,0,13391.19104,0,15.6
+160079,0,13317.10152,0,15.6
+160080,0,13352.48066,763190.7879,17.8
+160081,733487.5603,945937.9505,0,17.8
+160082,204605.7352,292298.1803,0,17.8
+160083,117169.7172,143107.3216,0,17.8
+160084,281131.5319,267966.1895,0,17.8
+160085,205779.6892,256337.1081,0,17.8
+160086,212284.6048,240960.8253,0,17.8
+160087,210832.7677,243158.4369,0,17.8
+160088,208882.8804,243981.2169,0,17.8
+160089,548165.9634,244002.7981,0,17.8
+160090,207131.5114,243702.3111,0,17.8
+160091,206824.597,244536.7469,0,17.8
+160092,204980.5939,205510.9999,0,17.8
+160093,204940.7548,206256.1495,0,17.8
+160094,204184.0325,206113.1875,0,17.8
+160095,203714.9085,299355.5635,0,17.8
+160096,202820.3066,225624.5594,0,17.8
+160097,201786.5107,237867.7751,0,17.8
+160098,198262.8388,243992.5126,0,17.8
+160099,196930.0364,240591.1461,0,17.8
+160100,196713.1103,240246.5853,0,17.8
+160101,195500.825,240564.5681,0,17.8
+160102,195093.6348,240332.6966,0,17.8
+160103,194059.1627,240925.8696,0,17.8
+160104,192678.9177,247086.19,0,17.8
+160105,192121.3217,243547.0941,0,17.8
+160106,191231.7937,244761.3114,0,17.8
+160107,190653.0832,244293.0293,0,17.8
+160108,189659.9988,246047.8064,0,17.8
+160109,188961.0308,245408.453,0,17.8
+160110,188465.8464,245841.2031,0,17.8
+160111,0,38467.58497,0,17.8
+160112,0,38603.79571,0,17.8
+160113,0,38485.12264,0,17.8
+160114,76749.31644,38906.54623,755871.7971,17.8
+160115,15064.52072,406904.2899,0,17.8
+160116,25138.99112,38811.63467,0,17.8
+160117,30487.45847,38718.16795,0,17.8
+160118,27483.28472,38880.53018,0,17.8
+160119,27432.35879,450493.4702,0,17.8
+160120,27290.57104,135572.3027,0,17.8
+160121,27181.17715,250947.9717,0,17.8
+160122,27080.51143,250334.7298,0,17.8
+160123,26927.95387,238119.1139,0,17.8
+160124,366596.2392,240152.6507,0,17.8
+160125,26683.99655,200658.0289,0,17.8
+160126,26620.73578,200870.5105,0,17.8
+160127,29118.03806,200877.4955,0,17.8
+160128,28695.24289,287993.3696,0,17.8
+160129,28044.73487,215774.963,0,17.8
+160130,28337.38745,232913.8554,0,17.8
+160131,28108.71294,236566.6467,0,17.8
+160132,30050.47862,233003.4273,0,17.8
+160133,29750.2148,233634.3743,0,17.8
+160134,29474.08102,244621.5589,0,17.8
+160135,29638.62631,237916.41,0,17.8
+160136,29659.46788,239945.4935,0,17.8
+160137,29692.04774,243356.4959,0,17.8
+160138,29493.69946,243561.8588,0,17.8
+160139,30070.52091,245455.0354,0,17.8
+160140,29748.37847,246410.076,0,20
+160141,1068631.134,1426192.314,0,20
+160142,548730.5277,297974.2485,0,20
+160143,128445.8914,119057.8604,0,20
+160144,236348.4582,378243.8887,0,20
+160145,306580.729,333387.7167,0,20
+160146,277195.4388,320666.227,0,20
+160147,263160.3006,314371.7454,1618.285705,20
+160148,267915.4605,317865.6487,1561.809462,20
+160149,267617.7052,317555.2262,11015.23648,20
+160150,267478.4282,317423.9744,14959.80104,20
+160151,266721.9615,316109.8753,10755.02521,20
+160152,267027.177,316211.6195,13025.64035,20
+160153,266216.7355,315747.7938,13173.39567,20
+160154,266490.4602,315294.5326,13443.03693,20
+160155,266109.3014,315069.3205,13699.19683,20
+160156,265946.3735,314653.7243,13964.66872,20
+160157,265821.7706,314487.8776,14019.68752,20
+160158,265769.4273,313739.0312,14356.50576,20
+160159,265740.1504,313996.8564,14529.32555,20
+160160,265516.4097,313280.8598,14843.32171,20
+160161,265547.9718,313079.9218,18648.90344,20
+160162,265410.7635,312961.7683,16790.80354,20
+160163,265304.1984,312335.6652,17784.94325,20
+160164,265614.5398,313340.9787,18398.53509,20
+160165,265197.0745,311186.2615,18692.41034,20
+160166,265656.0034,312657.9834,18915.01072,20
+160167,265185.823,311838.6757,19771.06631,20
+160168,265704.3867,299690.2676,19989.62149,20
+160169,263672.4772,295743.668,20404.69505,20
+160170,263689.0892,294698.0766,20990.80023,20
+160171,263692.7771,293066.516,21158.86775,20
+160172,263434.41,291699.1594,21450.55806,20
+160173,263341.9715,290407.3458,22089.47501,20
+160174,263438.7174,288668.1651,22232.23564,20
+160175,263252.8404,287742.3446,22685.79637,20
+160176,263223.8801,286138.2804,22941.9687,20
+160177,263173.6781,285114.2341,23477.80883,20
+160178,263353.3691,283620.5703,23642.2336,20
+160179,262694.2037,282247.4672,24046.32525,20
+160180,253229.8632,281576.3855,24429.81081,20
+160181,251353.5209,279017.5788,24619.08573,20
+160182,249968.7128,277764.9665,25238.2606,20
+160183,248654.5021,277318.8134,25543.6386,20
+160184,247533.5941,275143.3482,25850.99722,20
+160185,246489.6997,274221.8543,26204.17402,20
+160186,245583.2445,273382.1597,26556.70978,20
+160187,243953.4877,271182.2955,26895.54043,20
+160188,243127.5656,271040.068,27155.48821,20
+160189,241992.1838,269127.5244,27538.09843,20
+160190,240599.598,267971.5254,27868.91278,20
+160191,239521.383,266659.5575,28061.33535,20
+160192,238001.396,266026.9646,28579.79367,20
+160193,236733.3044,263881.7508,28770.3071,20
+160194,235658.0936,263237.2203,29102.01435,20
+160195,234193.2907,261605.2485,29295.47298,20
+160196,232440.3827,261277.664,29876.07671,20
+160197,231934.9011,259324.7864,29829.57722,20
+160198,230011.1713,258351.2726,30499.01075,20
+160199,229206.74,257580.1492,30527.8604,20
+160200,227783.4077,256036.1344,30889.25869,21
+160201,508248.2562,487531.0868,31228.72677,21
+160202,505249.1241,483179.731,31411.99329,21
+160203,502111.8408,480653.8822,31951.73917,21
+160204,499613.9396,476289.9064,31881.94281,21
+160205,495947.9054,473749.6743,31359.0552,21
+160206,493516.7826,470129.0885,31384.28831,21
+160207,490045.45,466417.1144,31342.87538,21
+160208,486862.9458,463667.4369,31942.15675,21
+160209,483797.5468,459428.5849,31796.8796,21
+160210,481234.3697,456785.3011,32071.28735,21
+160211,477422.7111,452540.8936,32245.74846,21
+160212,475225.4253,449642.5101,32423.1865,21
+160213,471551.9742,446214.6998,31045.83785,21
+160214,468946.1547,442212.927,30621.09736,21
+160215,465514.614,439166.3701,31125.02358,21
+160216,462602.5399,435827.2474,31168.33718,21
+160217,459421.0099,431879.0986,31129.41169,21
+160218,456513.7325,428230.3606,31519.79827,21
+160219,452800.4098,425256.8876,31797.37199,21
+160220,449995.8573,421175.7993,31682.49513,21
+160221,446603.1988,418479.1916,32020.82177,21
+160222,443414.9892,413792.6132,32204.87971,21
+160223,440509.1421,411498.2622,32486.80758,21
+160224,436463.7832,407515.7247,32359.21923,21
+160225,433916.0761,404881.1407,32815.65387,21
+160226,430462.1533,402098.0383,32907.75177,21
+160227,426668.2125,399952.625,33189.24393,21
+160228,424003.6602,396855.7498,33003.56559,21
+160229,421120.5743,394388.018,33530.73613,21
+160230,419297.7799,392241.7512,33563.28688,21
+160231,416847.5727,389204.4116,33781.8723,21
+160232,415075.2484,386936.2942,33868.07234,21
+160233,412384.5445,384080.7604,33738.97521,21
+160234,410650.8153,381685.226,33832.92309,21
+160235,408324.9794,378927.3905,34055.43644,21
+160236,406187.452,376378.3659,33933.32157,21
+160237,404037.2148,374066.3686,34067.91759,21
+160238,401877.8029,371381.262,34036.32713,21
+160239,399724.8299,368583.6125,34165.04083,21
+160240,397406.5402,366425.1499,34090.73123,21
+160241,395715.3127,363334.179,34227.72843,21
+160242,392790.3796,361206.1012,34269.82521,21
+160243,391493.2372,358446.3446,34200.58562,21
+160244,388675.5338,355861.6796,34447.75542,21
+160245,386985.6545,353342.505,34120.00844,21
+160246,384171.8625,350885.232,34528.17864,21
+160247,382458.5359,348397.8242,34233.83757,21
+160248,380358.9951,345595.9754,34435.26261,21
+160249,377836.3621,343091.4515,34399.63609,21
+160250,375863.9858,340671.4626,34505.99729,21
+160251,373499.12,338543.432,34337.18271,21
+160252,371463.8469,335303.334,34508.8473,21
+160253,369139.4254,333413.6528,34460.76844,21
+160254,366974.9067,331030.4108,34436.62668,21
+160255,365089.6893,328189.5706,34664.67851,21
+160256,362548.0876,326562.5724,34258.87837,21
+160257,360587.3074,322739.9094,34723.72729,21
+160258,358486.7969,321950.2404,34268.80061,21
+160259,356208.4258,318475.2726,34701.37137,21
+160260,354607.4469,316306.2992,34427.14793,21
+160261,334845.876,296663.543,24107.09347,21
+160262,331328.5773,293149.6479,23093.92188,21
+160263,328582.6596,291246.5672,22850.1717,21
+160264,326042.3406,288942.661,22719.94292,21
+160265,323573.2247,286459.2009,22425.29395,21
+160266,321008.9616,284508.3446,22177.95415,21
+160267,317980.6254,282088.5903,22157.43871,21
+160268,315991.2713,279455.1113,21768.81631,21
+160269,312977.5285,278117.8746,21637.1667,21
+160270,310404.7948,274809.116,21485.94241,21
+160271,307611.7965,273241.5339,21236.57224,21
+160272,305598.4453,270624.6738,21220.32212,21
+160273,302336.0554,268633.3848,20815.3257,21
+160274,300052.8396,265900.8649,20796.36116,21
+160275,297215.681,264095.6039,20562.56317,21
+160276,294486.3225,261245.2941,20501.63624,21
+160277,292434.654,259132.7138,20032.03912,21
+160278,288797.2981,256961.9442,20103.31539,21
+160279,286111.3448,254144.6813,19822.93154,21
+160280,283940.841,252456.3073,19729.13481,21
+160281,280785.9526,249180.2506,19407.77681,21
+160282,278223.4853,247098.2589,19297.53036,21
+160283,275580.5253,244421.6158,19133.72388,21
+160284,272825.4302,242209.2358,19128.1578,21
+160285,270174.5516,239871.433,18714.17697,21
+160286,267693.6926,237281.1099,18700.17446,21
+160287,264652.0997,235024.0499,18555.45218,21
+160288,262428.7623,232688.1306,18147.83421,21
+160289,259490.292,230344.0015,18242.74276,21
+160290,257088.3516,227901.4261,17847.7386,21
+160291,254607.6332,225357.0683,17832.19511,21
+160292,251594.8553,223537.6341,17519.53938,21
+160293,249472.4455,220507.3412,17273.19817,21
+160294,246887.179,219063.9633,16992.27811,21
+160295,244085.421,216071.9439,16795.84921,21
+160296,241775.4726,214299.5112,16526.23436,21
+160297,239203.5969,211733.801,16357.25364,21
+160298,236481.0616,209216.8149,15839.03727,21
+160299,234586.4999,207516.8742,15900.11681,21
+160300,231475.6946,204912.7362,15424.57234,21
+160301,229090.7274,203090.742,15301.06061,21
+160302,226997.0431,200864.6496,14806.94799,21
+160303,224283.8739,198813.6913,14875.3912,21
+160304,221463.7159,196885.4796,14458.0776,21
+160305,219736.6878,194914.7,14075.89351,21
+160306,216744.1091,192826.0515,13887.1299,21
+160307,214500.1747,188382.8206,13624.68386,21
+160308,210996.0368,183326.2412,13455.90674,21
+160309,204895.9259,181992.1788,12910.38272,21
+160310,203607.0096,178668.3988,13016.22241,21
+160311,200285.7945,175889.168,12453.47179,21
+160312,197263.9531,172989.8981,12289.75682,21
+160313,194337.8333,170477.9687,12016.88773,21
+160314,191701.2386,167164.6473,11697.98607,21
+160315,189144.8592,164871.1489,11436.58413,21
+160316,186041.7238,162030.5998,11117.12119,21
+160317,183369.8327,159324.6638,10950.68184,21
+160318,180588.894,158812.1593,10672.24282,21
+160319,178037.2174,158084.0158,10224.58057,21
+160320,175221.2348,157176.7993,9920.202807,21
+160321,172152.3975,156990.943,9761.295537,21
+160322,169116.4693,155435.9257,9463.190977,21
+160323,166322.4979,155271.5587,9115.106171,21
+160324,163043.4074,154220.0434,8724.830297,21
+160325,160238.1104,153766.4297,8500.704676,21
+160326,157385.4361,152535.9951,8101.205202,21
+160327,153854.9761,152041.1479,8020.146834,21
+160328,151549.7865,151485.2164,7464.495214,21
+160329,148222.1736,149850.0548,7121.035904,21
+160330,145426.7236,149967.401,7077.16446,21
+160331,142550.9868,148336.0996,6371.750339,21
+160332,140342.7201,148085.3819,6438.227719,21
+160333,139836.6536,146976.181,5859.384583,21
+160334,138982.6239,146110.1589,5843.958025,21
+160335,138308.248,145109.2744,5105.514429,21
+160336,137203.0042,144295.6653,5224.05991,21
+160337,136663.0087,143137.352,4741.500672,21
+160338,135534.1942,142269.4291,4457.131384,21
+160339,135389.237,140961.6525,4290.536853,21
+160340,133774.6002,140320.1403,4108.979481,21
+160341,133757.8558,139705.4324,3925.979395,21
+160342,132137.7781,138581.7297,3650.617292,21
+160343,131955.6043,138052.7479,3589.203429,21
+160344,130752.6833,136729.3258,3280.012595,21
+160345,129943.1974,136522.8208,3123.868102,21
+160346,129301.4848,135164.7846,2936.510695,21
+160347,128254.6065,134588.655,2762.349324,21
+160348,127629.0315,133280.8226,2588.55753,21
+160349,126554.2834,132908.3852,2249.07375,21
+160350,125692.4206,131435.6798,2218.727386,21
+160351,125013.1863,130455.905,1902.503436,21
+160352,124053.506,129689.0303,1855.890057,21
+160353,123059.9406,128398.1343,1666.02842,21
+160354,121945.7359,127345.5866,1650.77032,21
+160355,121467.6536,126662.8305,1619.231494,21
+160356,120152.3075,125172.5446,1555.906205,21
+160357,119340.6586,124104.7812,1571.336404,21
+160358,118279.8056,122705.2207,1492.350263,21
+160359,117518.6297,122113.8362,1507.830955,21
+160360,116471.5912,120295.211,1428.507163,21
+160361,115299.1632,119699.7958,1444.039696,21
+160362,114815.8847,117933.7953,1379.918888,21
+160363,114135.5331,116948.7595,1364.400617,21
+160364,112834.5939,115643.3772,1331.109308,21
+160365,112865.2,113858.0659,1299.949114,21
+160366,111352.2251,113175.5362,1266.457904,21
+160367,111046.1231,111703.4564,1235.176611,21
+160368,109914.1764,109757.9562,1201.474112,21
+160369,109373.2509,109183.8143,1170.068668,21
+160370,108430.0618,107103.6254,1136.141571,21
+160371,107595.1141,105882.1619,1120.402311,21
+160372,106888.2938,104518.7475,1087.56677,21
+160373,105939.804,103004.5481,1021.588202,21
+160374,105138.6653,101637.0502,1037.465627,21
+160375,104153.1093,100208.1295,972.5519402,21
+160376,103510.2064,98936.1278,953.7674758,21
+160377,102383.1432,97107.67134,914.6133751,21
+160378,101661.0124,95879.34796,895.6660641,21
+160379,100837.2887,94350.00502,854.8649398,21
+160380,99651.91187,92871.8235,821.1646569,21
+160381,98386.04576,90895.07763,769.4925141,21
+160382,97349.23764,89292.62281,737.1839017,21
+160383,96120.4407,87480.22693,675.8719776,21
+160384,95372.59583,86613.50486,675.8798803,21
+160385,94320.00443,84343.68322,615.8580152,21
+160386,93171.55484,83156.15306,599.5246189,21
+160387,92143.72667,81194.11758,562.2615872,21
+160388,91097.57221,80214.41319,493.9774241,21
+160389,90129.6651,77920.81237,510.4542362,21
+160390,89033.17693,76688.66355,437.9352106,21
+160391,87732.08496,75027.97739,421.3720814,21
+160392,86962.03156,73241.61114,404.7593841,21
+160393,85377.01934,71688.77512,388.0958065,21
+160394,84686.97257,70017.2161,371.3794771,21
+160395,83197.52243,68408.53832,354.6085805,21
+160396,82230.92618,66504.8104,337.7810909,21
+160397,81172.71433,65518.68216,303.9456017,21
+160398,79875.52122,65111.01053,320.8965338,21
+160399,78622.9038,64841.20103,269.8556892,21
+160400,77581.01811,64326.64904,269.8570108,21
+160401,76539.4339,63769.84488,252.7080047,21
+160402,74941.4086,63643.65249,218.1817486,21
+160403,74034.12247,62879.23496,218.1825961,21
+160404,72741.76531,62764.6561,200.7967385,21
+160405,71432.12309,62185.06811,165.7480245,21
+160406,70277.83411,61840.13759,165.7485279,21
+160407,68910.62993,61409.53275,148.070638,21
+160408,67793.2277,60668.10362,112.3537232,21
+160409,66549.41761,60328.73573,112.3539475,21
+160410,65335.73424,59861.9625,94.28460664,21
+160411,63883.62903,59609.13255,76.04515937,21
+160412,62694.17216,58810.47418,57.60102262,21
+160413,61359.64076,58905.76509,38.89642177,21
+160414,60885.77858,58201.60474,29.41674541,21
+160415,60182.91765,57632.72537,19.82297087,21
+160416,59605.27846,57469.86151,0,21
+160417,59123.12087,57003.38484,0,21
+160418,58850.00357,56486.86807,0,21
+160419,58052.86358,56312.11387,0,21
+160420,57513.93413,56063.12205,0,21
+160421,57173.55645,55676.25975,0,21
+160422,56583.78021,55285.65121,0,21
+160423,55995.35414,55474.50584,0,21
+160424,55600.12443,54643.29209,0,21
+160425,54891.32547,54725.48384,0,21
+160426,54631.49842,54298.81183,0,21
+160427,53838.02218,53892.27412,0,21
+160428,53542.71786,53887.62713,0,21
+160429,52850.33395,53415.52185,0,21
+160430,52387.51829,53125.52727,0,21
+160431,51769.78493,53110.38306,0,21
+160432,51382.82884,52573.88029,0,21
+160433,50878.00262,52214.16088,0,21
+160434,50406.9838,52266.95201,0,21
+160435,49847.54477,51698.4145,0,21
+160436,49287.20464,51554.88864,0,21
+160437,48670.20165,51178.53014,0,21
+160438,48263.27116,51021.13008,0,21
+160439,47576.76753,50613.00703,0,21
+160440,46963.53375,50467.66415,0,21
+160441,47376.91612,50476.08936,0,21
+160442,47601.37325,50175.25444,0,21
+160443,47361.10611,49795.75852,0,21
+160444,47269.86407,49615.88035,0,21
+160445,47182.15679,49025.56979,0,21
+160446,47013.17989,49257.98012,0,21
+160447,47104.0397,48491.25795,0,21
+160448,46754.78079,48364.16292,0,21
+160449,46831.13214,48049.07228,0,21
+160450,46509.08722,48008.24391,0,21
+160451,46585.43144,47272.28316,0,21
+160452,46197.32172,47237.80465,0,21
+160453,46358.42361,46914.18207,0,21
+160454,46071.59053,46357.74307,0,21
+160455,46006.54914,46554.90131,0,21
+160456,45491.94425,45904.29421,0,21
+160457,45585.28437,45548.11299,0,21
+160458,45210.12171,45442.28526,0,21
+160459,45273.2299,45074.07944,0,21
+160460,45051.32866,44766.90503,0,21
+160461,45033.76352,44403.80975,0,21
+160462,44656.47073,44290.59121,0,21
+160463,44648.56842,43731.7745,0,21
+160464,44748.89907,43591.04358,0,21
+160465,44466.44399,43364.29141,0,21
+160466,44712.21503,42899.65098,0,21
+160467,44336.26685,42710.51178,0,21
+160468,44373.18905,42403.66619,0,21
+160469,44210.59088,41901.44149,0,21
+160470,44356.41809,41949.51698,0,21
+160471,44168.91921,41289.735,0,21
+160472,44153.69544,41396.09084,0,21
+160473,43982.9531,40577.77872,0,21
+160474,43945.98449,40815.28245,0,21
+160475,44022.96873,40203.67304,0,21
+160476,43779.68474,40006.22284,0,21
+160477,43891.94993,39849.99947,0,21
+160478,43588.2518,39389.39276,0,21
+160479,43688.48519,39042.25185,0,21
+160480,43891.86427,39055.00932,0,21
+160481,43330.19474,38414.83549,0,21
+160482,43513.79861,38356.87968,0,21
+160483,43577.2098,38055.30679,0,21
+160484,43309.80119,37606.79274,0,21
+160485,43275.64716,37387.57538,0,21
+160486,43442.24898,37244.42209,0,21
+160487,42933.43323,36853.66994,0,21
+160488,43238.07499,36549.39817,0,21
+160489,43160.71277,36056.47931,0,21
+160490,42878.64229,36249.45063,0,21
+160491,43183.19812,35578.13884,0,21
+160492,42723.37601,35554.14836,0,21
+160493,42957.88572,35058.36695,0,21
+160494,42688.85589,34778.1883,0,21
+160495,42880.49381,34714.22209,0,21
+160496,42463.10856,34308.83252,0,21
+160497,42768.36151,33987.31568,0,21
+160498,42442.48017,33719.84254,0,21
+160499,42562.93902,33456.85475,0,21
+160500,42407.70258,33236.74095,0,21
+160501,51186.59105,46152.94551,0,21
+160502,51545.18787,46799.13446,0,21
+160503,51489.2966,47083.78262,0,21
+160504,51332.60743,46689.40465,0,21
+160505,51453.13634,46755.89528,0,21
+160506,51137.6876,46969.13903,0,21
+160507,50860.86663,46505.79505,0,21
+160508,53653.3772,46736.70473,0,21
+160509,51700.84376,46468.96144,0,21
+160510,51838.36221,46597.56075,0,21
+160511,51946.31925,46083.08649,0,21
+160512,51768.78673,46410.65952,0,21
+160513,51447.38992,46140.10506,0,21
+160514,51369.73692,46012.79826,0,21
+160515,51102.05637,45996.21251,0,21
+160516,51247.23513,45868.82059,0,21
+160517,50703.93736,45558.29649,0,21
+160518,50615.89699,45837.26534,0,21
+160519,50703.09042,45426.15913,0,21
+160520,50144.22374,45382.3895,0,21
+160521,50089.50137,45286.06257,0,21
+160522,50142.23618,45362.86101,0,21
+160523,49633.48462,44943.91585,0,21
+160524,49561.9284,45123.49585,0,21
+160525,49433.44352,44797.29539,0,21
+160526,49232.81368,44785.86326,0,21
+160527,49049.46989,44677.51381,0,21
+160528,48794.2654,44551.90437,0,21
+160529,48865.74538,44428.90424,0,21
+160530,48262.16094,44403.50191,0,21
+160531,48371.04551,44207.67454,0,21
+160532,48167.69026,43945.33689,0,21
+160533,47818.67405,44090.99967,0,21
+160534,47891.58242,43799.3578,0,21
+160535,47394.5531,43729.15094,0,21
+160536,47484.31227,43803.68882,0,21
+160537,47125.78841,43587.50688,0,21
+160538,46828.91286,43552.87212,0,21
+160539,47038.11699,43356.37578,0,21
+160540,46388.204,43431.45651,0,21
+160541,46633.53195,42984.91003,0,21
+160542,45968.38028,43222.37652,0,21
+160543,46192.29392,42719.17316,0,21
+160544,45800.43813,42960.85285,0,21
+160545,45617.50268,42618.58894,0,21
+160546,45420.76435,42716.4336,0,21
+160547,45456.38245,42279.03804,0,21
+160548,44926.62447,42356.21122,0,21
+160549,45036.36518,42251.00971,0,21
+160550,44489.7712,42015.9993,0,21
+160551,44602.59497,41998.6471,0,21
+160552,44348.72871,41988.55207,0,21
+160553,43921.56535,41647.8391,0,21
+160554,43973.65304,41547.14028,0,21
+160555,43745.0342,41504.19339,0,21
+160556,43494.7308,41421.79005,0,21
+160557,43452.00157,41381.17187,0,21
+160558,42885.95035,40936.01553,0,21
+160559,43218.09311,41257.50803,0,21
+160560,42606.12371,40702.99857,0,21
+160561,42663.34635,40900.62662,0,21
+160562,42663.89847,40771.21741,0,21
+160563,42413.55032,40663.58702,0,21
+160564,42547.75902,40547.66125,0,21
+160565,42208.39464,40409.79697,0,21
+160566,42033.74148,40185.24091,0,21
+160567,42146.63594,40041.13842,0,21
+160568,41996.47893,39973.08683,0,21
+160569,41806.34171,39886.94786,0,21
+160570,41790.46094,39723.98336,0,21
+160571,41599.96365,39546.9189,0,21
+160572,41427.48381,39243.75953,0,21
+160573,41575.05153,39426.95284,0,21
+160574,41307.37744,39093.19592,0,21
+160575,41200.66768,38964.4653,0,21
+160576,41112.6318,38972.96464,0,21
+160577,40905.46052,38801.30258,0,21
+160578,40825.25898,38422.30194,0,21
+160579,40434.89106,38764.61429,0,21
+160580,40440.86581,38139.28551,0,21
+160581,40381.35417,38136.94355,0,21
+160582,39713.64838,38103.13674,0,21
+160583,39821.56172,37987.4115,0,21
+160584,39566.10221,37729.50616,0,21
+160585,39434.45423,37526.3628,0,21
+160586,38761.85245,37280.80442,0,21
+160587,39179.49239,37344.77567,0,21
+160588,38524.83898,37280.8078,0,21
+160589,38483.18171,36783.88054,0,21
+160590,38111.7209,36984.82986,0,21
+160591,37996.4803,36783.84955,0,21
+160592,37630.19459,36523.70461,0,21
+160593,40372.52311,36741.57893,0,21
+160594,39469.46702,36295.07469,0,21
+160595,39967.11615,36264.02618,0,21
+160596,40124.23202,36183.68901,0,21
+160597,40493.61072,36348.13816,0,21
+160598,39715.84146,35910.95661,0,21
+160599,40629.14485,35709.55834,0,21
+160600,39977.48707,36067.22097,0,21
+160601,41072.24933,35672.78575,0,21
+160602,40448.20507,35640.51727,0,21
+160603,41074.59245,35427.8087,0,21
+160604,40395.44203,35485.22565,0,21
+160605,41266.41851,35208.30566,0,21
+160606,41512.00302,35349.53971,0,21
+160607,40945.63246,35052.75989,0,21
+160608,41967.16842,35009.39918,0,21
+160609,41411.79466,34914.53719,0,21
+160610,41566.58877,34888.22513,0,21
+160611,42647.53816,34672.45243,0,21
+160612,41225.51911,34741.24298,0,21
+160613,43170.94455,34302.58685,0,21
+160614,42451.02862,34393.15268,0,21
+160615,42114.83715,34243.48418,0,21
+160616,43054.3576,34024.5168,0,21
+160617,43254.33529,33682.16012,0,21
+160618,42791.99934,33962.96886,0,21
+160619,43109.22218,33312.12085,0,21
+160620,43142.62317,33609.27865,0,21
+160621,43371.86552,32939.23019,0,21
+160622,43432.5853,33252.0959,0,21
+160623,43883.55694,32887.83035,0,21
+160624,43791.8482,32772.67445,0,21
+160625,43568.73958,32774.21485,0,21
+160626,44812.72344,32738.82277,0,21
+160627,43301.5857,32518.21881,0,21
+160628,44509.05382,32382.29581,0,21
+160629,44153.83038,32360.20224,0,21
+160630,44724.48399,32153.84695,0,21
+160631,43934.36047,32002.61987,0,21
+160632,44947.98535,32118.32661,0,21
+160633,43979.53082,31989.15098,0,21
+160634,44547.26179,31862.25528,0,21
+160635,44249.2732,31621.81746,0,21
+160636,44501.60667,31639.51917,0,21
+160637,43651.16599,31806.43567,0,21
+160638,44499.0006,31333.84176,0,21
+160639,44372.93009,31479.9261,0,21
+160640,43288.75124,31335.80016,0,21
+160641,43397.57936,31491.96942,0,21
+160642,44572.47444,31112.09432,0,21
+160643,42777.20156,31219.71533,0,21
+160644,43484.93771,31212.73984,0,21
+160645,42855.59116,30989.12926,0,21
+160646,42468.94506,30952.23617,0,21
+160647,43044.41451,30982.15712,0,21
+160648,41827.42675,30812.05832,0,21
+160649,42426.44463,30848.00927,0,21
+160650,41481.05579,30701.3264,0,21
+160651,41390.04281,30684.20896,0,21
+160652,41319.62397,30578.35474,0,21
+160653,40426.4879,30213.62374,0,21
+160654,41472.98565,30312.10639,0,21
+160655,39526.56969,30070.10339,0,21
+160656,40211.3402,30047.67764,0,21
+160657,39920.41832,29704.9213,0,21
+160658,39206.5447,29684.02576,0,21
+160659,39200.88876,29641.15084,0,21
+160660,37983.99566,29092.43994,0,21
+160661,38679.27348,29143.79052,0,21
+160662,37508.99566,29046.6826,0,21
+160663,37233.4842,28653.29385,0,21
+160664,36825.25476,28522.25999,0,21
+160665,36011.0417,28272.49689,0,21
+160666,36625.3418,28010.61713,0,21
+160667,34597.66556,27867.66667,0,21
+160668,35149.00249,27475.99418,0,21
+160669,34312.55871,27253.12678,0,21
+160670,33795.93421,26949.10916,0,21
+160671,32681.95657,26698.98991,0,21
+160672,33403.21759,26431.17895,0,21
+160673,31223.34798,26037.1333,0,21
+160674,31851.37712,25661.53333,0,21
+160675,30754.3885,25256.06025,0,21
+160676,30175.75134,25194.92271,0,21
+160677,29236.55162,24496.25625,0,21
+160678,30312.96813,24643.85722,0,21
+160679,29214.00399,24153.75813,0,21
+160680,30301.70757,23874.35389,0,21
+160681,30290.43029,23547.96515,0,21
+160682,31534.27288,23163.32446,0,21
+160683,30880.97358,22981.21428,0,21
+160684,31522.96384,22322.19921,0,21
+160685,31534.27531,22000.49092,0,21
+160686,31447.40387,21485.09193,0,21
+160687,32760.59115,21266.06257,0,21
+160688,31436.09551,20480.55545,0,21
+160689,32760.5941,20169.04516,0,21
+160690,32587.01433,19576.10317,0,21
+160691,32185.87957,19244.25384,0,21
+160692,33322.52037,18565.11907,0,21
+160693,32587.01562,18028.25749,0,21
+160694,33980.89735,17600.77621,0,21
+160695,32662.55541,16781.06354,0,21
+160696,34476.11068,16659.83272,0,21
+160697,33882.99349,15508.12001,0,21
+160698,33992.23363,15296.31569,0,21
+160699,33882.99389,14543.69214,0,21
+160700,35120.36792,13970.1279,0,21
+160701,34335.83047,13211.85493,0,21
+160702,36764.43768,12778.67822,0,21
+160703,35690.36937,11812.44308,0,21
+160704,36243.81745,11923.69766,0,21
+160705,36196.75167,11535.02991,0,21
+160706,37585.20774,11571.0997,0,21
+160707,36462.52845,11501.34221,0,21
+160708,37858.2267,11447.22577,0,21
+160709,37933.09363,11280.62382,0,21
+160710,38116.39122,11409.87708,0,21
+160711,38288.68228,11205.97322,0,21
+160712,39361.72963,11317.10328,0,21
+160713,38446.36487,11305.59973,0,21
+160714,39701.6626,11421.3461,0,21
+160715,39615.43605,11142.23008,0,21
+160716,39902.21163,11427.93848,0,21
+160717,39866.54925,11409.84161,0,21
+160718,39979.82387,11276.35422,0,21
+160719,41189.74206,11416.43425,0,21
+160720,40227.45979,11520.6771,0,21
+160721,41302.42335,11224.04455,0,21
+160722,41474.17033,11631.21814,0,21
+160723,41585.27616,11364.20015,0,21
+160724,41585.27597,11561.43187,0,21
+160725,42255.85163,11764.45887,0,21
+160726,41718.70672,11555.67303,0,21
+160727,43045.79901,11885.89241,0,21
+160728,42982.30324,11660.21576,0,21
+160729,43177.81095,11671.68296,0,21
+160730,43166.33164,12004.71911,0,21
+160731,43244.85208,11757.82942,0,21
+160732,43855.56126,12089.08888,0,21
+160733,44628.15907,11813.18479,0,21
+160734,43364.22285,12108.96533,0,21
+160735,44779.32291,11957.08636,0,21
+160736,44672.22663,12164.73173,0,21
+160737,44790.80479,12076.44709,0,21
+160738,45484.00321,12198.0335,0,21
+160739,44897.51527,12323.78571,0,21
+160740,46155.51496,12837.9283,0,21
+160741,45688.0016,14961.2325,0,21
+160742,46301.65563,13729.48321,0,21
+160743,46326.62043,14102.85014,0,21
+160744,46553.22173,15072.79643,0,21
+160745,46452.27087,14214.57902,0,21
+160746,46696.23247,14877.79817,0,21
+160747,47807.0757,15527.54181,0,21
+160748,46818.07839,15529.05692,0,21
+160749,48046.92897,15432.23517,0,21
+160750,47977.53935,16182.55185,0,21
+160751,48179.32313,15608.16059,0,21
+160752,48215.96737,17773.33339,0,21
+160753,48308.20396,16797.88199,0,21
+160754,49360.89104,17484.43072,0,21
+160755,48978.02001,18391.55753,0,21
+160756,50227.22079,17303.95555,0,21
+160757,49744.97907,19694.38549,0,21
+160758,50489.18242,17439.36264,0,21
+160759,50252.07525,20005.54856,0,21
+160760,51327.36363,18809.61666,0,21
+160761,50618.01835,20224.9256,0,21
+160762,51805.06896,19578.18747,0,21
+160763,50960.79429,20399.77207,0,21
+160764,52575.43106,20306.99435,0,21
+160765,52184.4759,20666.22548,0,21
+160766,52086.79226,21227.33306,0,21
+160767,52397.92228,21251.06689,0,21
+160768,53416.94697,21974.77276,0,21
+160769,52549.68781,20949.49091,0,21
+160770,53641.40573,23334.32395,0,21
+160771,53210.30254,21626.79356,0,21
+160772,53681.18138,22790.28024,0,21
+160773,54090.30878,22513.79911,0,21
+160774,54019.5063,23458.49432,0,21
+160775,55217.02061,23699.3227,0,21
+160776,54352.16838,23067.737,0,21
+160777,55342.25192,23996.62278,0,21
+160778,54477.0985,24735.78656,0,21
+160779,55603.22781,23465.02745,0,21
+160780,55670.09792,24916.62444,0,21
+160781,56475.87435,24812.74379,0,21
+160782,55922.20373,24952.78862,0,21
+160783,56491.2981,25434.96752,0,21
+160784,57253.01451,25117.98394,0,21
+160785,56165.53838,25458.55614,0,21
+160786,57488.78512,25891.10862,0,21
+160787,57480.0145,25952.68433,0,21
+160788,57623.0385,26745.28733,0,21
+160789,58783.49135,25996.49351,0,21
+160790,57751.82724,26783.63473,0,21
+160791,57938.62711,26617.31039,0,21
+160792,59060.34282,28218.64465,0,21
+160793,59258.4467,26533.6328,0,21
+160794,59247.09078,27630.48198,0,21
+160795,59329.73766,27996.72427,0,21
+160796,59583.36863,28041.86163,0,21
+160797,60491.33931,28247.6086,0,21
+160798,59747.22282,28031.71075,0,21
+160799,60815.46192,28891.65047,0,21
+160800,60300.40093,28748.03554,0,21
+160801,0,0,0,21
+160802,0,0,0,21
+160803,0,0,0,21
+160804,0,0,0,21
+160805,0,0,0,21
+160806,0,0,0,21
+160807,0,0,0,21
+160808,0,0,0,21
+160809,0,0,0,21
+160810,0,0,0,21
+160811,0,0,0,21
+160812,0,0,0,21
+160813,0,0,0,21
+160814,0,0,0,21
+160815,0,0,0,21
+160816,0,0,0,21
+160817,0,0,0,21
+160818,0,0,0,21
+160819,0,0,0,21
+160820,0,0,0,21
+160821,0,0,0,21
+160822,0,0,0,21
+160823,0,0,0,21
+160824,0,0,0,21
+160825,0,0,0,21
+160826,0,0,0,21
+160827,0,0,0,21
+160828,0,0,0,21
+160829,0,0,0,21
+160830,0,0,0,21
+160831,0,0,0,21
+160832,0,0,0,21
+160833,0,0,0,21
+160834,0,0,0,21
+160835,0,0,0,21
+160836,0,0,0,21
+160837,0,0,0,21
+160838,0,0,0,21
+160839,0,0,0,21
+160840,0,0,0,21
+160841,0,0,0,21
+160842,0,0,0,21
+160843,0,0,0,21
+160844,0,0,0,21
+160845,0,0,0,21
+160846,0,0,0,21
+160847,0,0,0,21
+160848,0,0,0,21
+160849,0,0,0,21
+160850,0,0,0,21
+160851,0,0,0,21
+160852,0,0,0,21
+160853,0,0,0,21
+160854,0,0,0,21
+160855,0,0,0,21
+160856,0,0,0,21
+160857,0,0,0,21
+160858,0,0,0,21
+160859,0,0,0,21
+160860,0,0,0,21
+160861,0,0,0,21
+160862,0,0,0,21
+160863,0,0,0,21
+160864,0,0,0,21
+160865,0,0,0,21
+160866,0,0,0,21
+160867,0,367947.0952,948442.9996,21
+160868,339328.5988,0,0,21
+160869,0,0,0,21
+160870,0,0,0,21
+160871,0,0,0,21
+160872,0,0,0,21
+160873,0,0,0,21
+160874,0,0,0,21
+160875,0,0,0,21
+160876,0,0,0,21
+160877,0,0,0,21
+160878,0,0,0,21
+160879,0,0,0,21
+160880,0,0,0,21
+160881,0,0,0,21
+160882,0,0,0,21
+160883,0,0,0,21
+160884,0,0,0,21
+160885,0,0,0,21
+160886,0,0,0,21
+160887,0,0,0,21
+160888,0,0,0,21
+160889,0,0,0,21
+160890,0,0,0,21
+160891,0,0,0,21
+160892,0,0,0,21
+160893,0,0,0,21
+160894,0,0,0,21
+160895,0,0,0,21
+160896,0,0,0,21
+160897,0,0,0,21
+160898,0,0,0,21
+160899,0,0,0,21
+160900,0,0,0,21
+160901,0,0,0,21
+160902,0,0,0,21
+160903,0,368420.4178,925279.4629,21
+160904,0,0,0,21
+160905,0,0,0,21
+160906,338432.0674,0,0,21
+160907,0,0,0,21
+160908,0,0,0,21
+160909,0,0,0,21
+160910,0,0,0,21
+160911,0,0,0,21
+160912,0,0,0,21
+160913,0,0,0,21
+160914,0,0,0,21
+160915,0,0,0,21
+160916,0,0,0,21
+160917,0,0,0,21
+160918,0,0,0,21
+160919,0,0,0,21
+160920,0,0,0,21
+160921,0,0,0,21
+160922,0,0,0,21
+160923,0,0,0,21
+160924,0,0,0,21
+160925,0,0,0,21
+160926,0,0,0,21
+160927,0,0,0,21
+160928,0,0,0,21
+160929,0,0,0,21
+160930,0,0,0,21
+160931,0,0,0,21
+160932,0,0,0,21
+160933,0,0,0,21
+160934,0,0,0,21
+160935,0,0,0,21
+160936,0,0,0,21
+160937,0,0,0,21
+160938,0,0,0,21
+160939,0,368380.2107,903721.8249,21
+160940,0,0,0,21
+160941,0,0,0,21
+160942,0,0,0,21
+160943,0,0,0,21
+160944,337884.3065,0,0,21
+160945,0,0,0,21
+160946,0,0,0,21
+160947,0,0,0,21
+160948,0,0,0,21
+160949,0,0,0,21
+160950,0,0,0,21
+160951,0,0,0,21
+160952,0,0,0,21
+160953,0,0,0,21
+160954,0,0,0,21
+160955,0,0,0,21
+160956,0,0,0,21
+160957,0,0,0,21
+160958,0,0,0,21
+160959,0,0,0,21
+160960,0,0,0,21
+160961,0,0,0,21
+160962,0,0,0,21
+160963,0,0,0,21
+160964,0,0,0,21
+160965,0,0,0,21
+160966,0,0,0,21
+160967,0,0,0,21
+160968,0,0,0,21
+160969,0,0,0,21
+160970,0,0,0,21
+160971,0,0,0,21
+160972,0,0,0,21
+160973,0,0,0,21
+160974,0,0,0,21
+160975,0,368377.1726,883655.6986,21
+160976,0,0,0,21
+160977,0,0,0,21
+160978,0,0,0,21
+160979,0,0,0,21
+160980,0,0,0,21
+160981,0,0,0,21
+160982,339489.403,0,0,21
+160983,0,0,0,21
+160984,0,0,0,21
+160985,0,0,0,21
+160986,0,0,0,21
+160987,0,0,0,21
+160988,0,0,0,21
+160989,0,0,0,21
+160990,0,0,0,21
+160991,0,0,0,21
+160992,0,0,0,21
+160993,0,0,0,21
+160994,0,0,0,21
+160995,0,0,0,21
+160996,0,0,0,21
+160997,0,0,0,21
+160998,0,0,0,21
+160999,0,0,0,21
+161000,0,0,0,21
+161001,0,0,0,21
+161002,0,0,0,21
+161003,0,0,0,21
+161004,0,0,0,21
+161005,0,0,0,21
+161006,0,0,0,21
+161007,0,0,0,21
+161008,0,0,0,21
+161009,0,0,0,21
+161010,0,0,0,21
+161011,0,368379.411,865320.4273,21
+161012,0,0,0,21
+161013,0,0,0,21
+161014,0,0,0,21
+161015,0,0,0,21
+161016,0,0,0,21
+161017,0,0,0,21
+161018,0,0,0,21
+161019,0,0,0,21
+161020,339434.7664,0,0,21
+161021,0,0,0,21
+161022,0,0,0,21
+161023,0,0,0,21
+161024,0,0,0,21
+161025,0,0,0,21
+161026,0,0,0,21
+161027,0,0,0,21
+161028,0,0,0,21
+161029,0,0,0,21
+161030,0,0,0,21
+161031,0,0,0,21
+161032,0,0,0,21
+161033,0,0,0,21
+161034,0,0,0,21
+161035,0,0,0,21
+161036,0,0,0,21
+161037,0,0,0,21
+161038,0,0,0,21
+161039,0,0,0,21
+161040,0,0,0,21
+161041,0,0,0,21
+161042,0,185.7666671,0,21
+161043,0,0,0,21
+161044,0,0,0,21
+161045,0,0,0,21
+161046,0,0,0,21
+161047,0,368377.4912,0,21
+161048,0,0,848471.0203,21
+161049,0,0,0,21
+161050,0,0,0,21
+161051,0,0,0,21
+161052,0,0,0,21
+161053,0,0,0,21
+161054,0,0,0,21
+161055,0,0,0,21
+161056,0,0,0,21
+161057,0,0,0,21
+161058,339425.9911,0,0,21
+161059,0,0,0,21
+161060,0,0,0,21
+161061,0,0,0,21
+161062,0,0,0,21
+161063,0,0,0,21
+161064,0,0,0,21
+161065,0,0,0,21
+161066,0,0,0,21
+161067,0,0,0,21
+161068,0,0,0,21
+161069,0,0,0,21
+161070,0,0,0,21
+161071,0,0,0,21
+161072,0,0,0,21
+161073,0,0,0,21
+161074,0,0,0,21
+161075,0,0,0,21
+161076,0,0,0,21
+161077,0,0,0,21
+161078,0,0,0,21
+161079,0,0,0,21
+161080,0,0,0,21
+161081,0,0,0,21
+161082,0,0,0,21
+161083,0,368366.4171,0,21
+161084,0,0,0,21
+161085,0,0,832980.2536,21
+161086,0,0,0,21
+161087,0,0,0,21
+161088,0,0,0,21
+161089,0,0,0,21
+161090,0,0,0,21
+161091,0,0,0,21
+161092,0,0,0,21
+161093,0,0,0,21
+161094,0,0,0,21
+161095,0,0,0,21
+161096,339452.3035,0,0,21
+161097,0,0,0,21
+161098,0,0,0,21
+161099,0,0,0,21
+161100,0,0,0,21
+161101,0,0,0,21
+161102,0,0,0,21
+161103,0,0,0,21
+161104,0,0,0,21
+161105,0,0,0,21
+161106,0,0,0,21
+161107,0,0,0,21
+161108,0,0,0,21
+161109,0,0,0,21
+161110,0,0,0,21
+161111,0,0,0,21
+161112,0,0,0,21
+161113,0,0,0,21
+161114,0,0,0,21
+161115,0,0,0,21
+161116,0,0,0,21
+161117,0,0,0,21
+161118,0,0,0,21
+161119,0,0,0,21
+161120,0,368360.9266,0,21
+161121,0,0,0,21
+161122,0,0,818780.1409,21
+161123,0,0,0,21
+161124,0,0,0,21
+161125,0,0,0,21
+161126,0,0,0,21
+161127,0,0,0,21
+161128,0,0,0,21
+161129,0,0,0,21
+161130,0,0,0,21
+161131,0,0,0,21
+161132,0,0,0,21
+161133,0,0,0,21
+161134,0,0,0,21
+161135,339453.6406,0,0,21
+161136,0,0,0,21
+161137,0,0,0,21
+161138,0,0,0,21
+161139,0,0,0,21
+161140,0,0,0,21
+161141,0,0,0,21
+161142,0,0,0,21
+161143,0,0,0,21
+161144,0,0,0,21
+161145,0,0,0,21
+161146,0,0,0,21
+161147,0,0,0,21
+161148,0,0,0,21
+161149,0,0,0,21
+161150,0,0,0,21
+161151,0,0,0,21
+161152,0,0,0,21
+161153,0,0,0,21
+161154,0,0,0,21
+161155,0,0,0,21
+161156,0,0,0,21
+161157,0,368357.4392,0,21
+161158,0,0,0,21
+161159,0,0,805711.2901,21
+161160,0,0,0,15.6
+161161,0,0,0,15.6
+161162,0,0,0,15.6
+161163,0,0,0,15.6
+161164,0,0,0,15.6
+161165,0,0,0,15.6
+161166,0,0,0,15.6
+161167,0,0,0,15.6
+161168,0,0,0,15.6
+161169,0,0,0,15.6
+161170,0,0,0,15.6
+161171,0,0,0,15.6
+161172,0,0,0,15.6
+161173,0,0,0,15.6
+161174,339453.9615,0,0,15.6
+161175,0,0,0,15.6
+161176,0,0,0,15.6
+161177,0,0,0,15.6
+161178,85938.79412,0,0,15.6
+161179,0,0,0,15.6
+161180,0,0,0,15.6
+161181,0,0,0,15.6
+161182,0,0,0,15.6
+161183,0,0,0,15.6
+161184,0,0,0,15.6
+161185,0,0,0,15.6
+161186,0,0,0,15.6
+161187,0,0,0,15.6
+161188,0,0,0,15.6
+161189,0,0,0,15.6
+161190,0,0,0,15.6
+161191,0,0,0,15.6
+161192,0,0,0,15.6
+161193,0,0,0,15.6
+161194,0,368352.9786,0,15.6
+161195,0,0,0,15.6
+161196,0,0,793644.7496,15.6
+161197,0,0,0,15.6
+161198,0,0,0,15.6
+161199,0,0,0,15.6
+161200,0,0,0,15.6
+161201,0,0,0,15.6
+161202,0,0,0,15.6
+161203,0,0,0,15.6
+161204,0,0,0,15.6
+161205,0,0,0,15.6
+161206,0,0,0,15.6
+161207,0,0,0,15.6
+161208,0,0,0,15.6
+161209,0,0,0,15.6
+161210,0,0,0,15.6
+161211,0,0,0,15.6
+161212,0,0,0,15.6
+161213,339457.4881,0,0,15.6
+161214,0,0,0,15.6
+161215,0,0,0,15.6
+161216,0,0,0,15.6
+161217,0,0,0,15.6
+161218,0,0,0,15.6
+161219,0,0,0,15.6
+161220,0,0,0,15.6
+161221,0,117.1283247,0,15.6
+161222,0,0,0,15.6
+161223,0,0,0,15.6
+161224,0,0,0,15.6
+161225,0,66.03318572,0,15.6
+161226,0,0,0,15.6
+161227,0,0,0,15.6
+161228,0,0,0,15.6
+161229,0,77.78722974,0,15.6
+161230,0,0,0,15.6
+161231,0,368347.2612,0,15.6
+161232,0,0,0,15.6
+161233,0,0,782573.2343,15.6
+161234,0,393.4625495,0,15.6
+161235,0,0,0,15.6
+161236,0,0,0,15.6
+161237,0,0,0,15.6
+161238,0,0,0,15.6
+161239,0,0,0,15.6
+161240,0,0,0,15.6
+161241,0,0,0,15.6
+161242,0,0,0,15.6
+161243,0,0,0,15.6
+161244,0,0,0,15.6
+161245,0,0,0,15.6
+161246,0,0,0,15.6
+161247,0,0,0,15.6
+161248,0,0,0,15.6
+161249,0,0,0,15.6
+161250,0,0,0,15.6
+161251,0,0,0,15.6
+161252,339485.1105,0,0,15.6
+161253,0,0,0,15.6
+161254,0,0,0,15.6
+161255,0,0,0,15.6
+161256,0,0,0,15.6
+161257,0,0,0,15.6
+161258,0,0,0,15.6
+161259,0,0,0,15.6
+161260,0,0,0,15.6
+161261,0,0,0,15.6
+161262,0,0,0,15.6
+161263,0,0,0,15.6
+161264,0,0,0,15.6
+161265,0,0,0,15.6
+161266,0,0,0,15.6
+161267,0,0,0,15.6
+161268,0,368337.5488,0,15.6
+161269,0,0,0,15.6
+161270,0,0,772611.1213,15.6
+161271,0,0,0,15.6
+161272,0,0,0,15.6
+161273,0,0,0,15.6
+161274,0,0,0,15.6
+161275,0,0,0,15.6
+161276,0,0,0,15.6
+161277,0,0,0,15.6
+161278,0,0,0,15.6
+161279,0,0,0,15.6
+161280,0,0,0,15.6
+161281,0,0,0,15.6
+161282,0,0,0,15.6
+161283,0,0,0,15.6
+161284,0,0,0,15.6
+161285,0,0,0,15.6
+161286,0,0,0,15.6
+161287,0,0,0,15.6
+161288,0,0,0,15.6
+161289,0,0,0,15.6
+161290,0,0,0,15.6
+161291,339513.8296,0,0,15.6
+161292,0,0,0,15.6
+161293,0,0,0,15.6
+161294,0,0,0,15.6
+161295,0,0,0,15.6
+161296,0,0,0,15.6
+161297,0,0,0,15.6
+161298,0,0,0,15.6
+161299,0,0,0,15.6
+161300,0,0,0,15.6
+161301,0,0,0,15.6
+161302,0,0,0,15.6
+161303,0,0,0,15.6
+161304,0,0,0,15.6
+161305,0,368332.5915,0,15.6
+161306,0,0,0,15.6
+161307,0,0,763496.4571,15.6
+161308,0,0,0,15.6
+161309,0,0,0,15.6
+161310,0,0,0,15.6
+161311,0,0,0,15.6
+161312,0,0,0,15.6
+161313,0,0,0,15.6
+161314,0,0,0,15.6
+161315,0,0,0,15.6
+161316,0,0,0,15.6
+161317,0,0,0,15.6
+161318,0,0,0,15.6
+161319,0,0,0,15.6
+161320,0,0,0,15.6
+161321,0,0,0,15.6
+161322,0,0,0,15.6
+161323,0,0,0,15.6
+161324,0,0,0,15.6
+161325,0,0,0,15.6
+161326,0,0,0,15.6
+161327,0,0,0,15.6
+161328,0,0,0,15.6
+161329,0,0,0,15.6
+161330,339525.5641,0,0,15.6
+161331,0,0,0,15.6
+161332,0,0,0,15.6
+161333,0,0,0,15.6
+161334,0,0,0,15.6
+161335,0,0,0,15.6
+161336,0,0,0,15.6
+161337,0,0,0,15.6
+161338,0,0,0,15.6
+161339,0,0,0,15.6
+161340,0,0,0,15.6
+161341,0,0,0,15.6
+161342,0,368330.2466,0,15.6
+161343,0,0,0,15.6
+161344,0,0,755024.0427,15.6
+161345,0,0,0,15.6
+161346,0,0,0,15.6
+161347,0,0,0,15.6
+161348,0,0,0,15.6
+161349,0,0,0,15.6
+161350,0,0,0,15.6
+161351,0,0,0,15.6
+161352,0,0,0,15.6
+161353,0,0,0,15.6
+161354,0,0,0,15.6
+161355,0,0,0,15.6
+161356,0,0,0,15.6
+161357,0,0,0,15.6
+161358,0,0,0,15.6
+161359,0,0,0,15.6
+161360,0,0,0,15.6
+161361,0,0,0,15.6
+161362,0,0,0,15.6
+161363,0,0,0,15.6
+161364,0,0,0,15.6
+161365,0,0,0,15.6
+161366,0,0,0,15.6
+161367,0,0,0,15.6
+161368,0,0,0,15.6
+161369,339505.9518,0,0,15.6
+161370,0,0,0,15.6
+161371,0,0,0,15.6
+161372,0,0,0,15.6
+161373,0,0,0,15.6
+161374,0,0,0,15.6
+161375,0,0,0,15.6
+161376,0,0,0,15.6
+161377,0,0,0,15.6
+161378,0,0,0,15.6
+161379,0,368314.2105,0,15.6
+161380,0,0,0,15.6
+161381,0,0,747515.5072,15.6
+161382,0,0,0,15.6
+161383,0,0,0,15.6
+161384,0,0,0,15.6
+161385,0,0,0,15.6
+161386,0,0,0,15.6
+161387,0,0,0,15.6
+161388,0,0,0,15.6
+161389,0,0,0,15.6
+161390,0,0,0,15.6
+161391,0,0,0,15.6
+161392,0,0,0,15.6
+161393,0,0,0,15.6
+161394,0,0,0,15.6
+161395,0,0,0,15.6
+161396,0,0,0,15.6
+161397,0,0,0,15.6
+161398,0,0,0,15.6
+161399,0,0,0,15.6
+161400,0,0,0,15.6
+161401,0,0,0,15.6
+161402,0,0,0,15.6
+161403,0,0,0,15.6
+161404,0,0,0,15.6
+161405,0,0,0,15.6
+161406,0,0,0,15.6
+161407,0,0,0,15.6
+161408,339488.3394,0,0,15.6
+161409,0,0,0,15.6
+161410,0,0,0,15.6
+161411,0,0,0,15.6
+161412,0,0,0,15.6
+161413,0,0,0,15.6
+161414,0,0,0,15.6
+161415,0,0,0,15.6
+161416,0,368299.876,0,15.6
+161417,0,0,0,15.6
+161418,0,0,740809.6464,15.6
+161419,0,0,0,15.6
+161420,0,0,0,15.6
+161421,0,0,0,15.6
+161422,0,0,0,15.6
+161423,0,0,0,15.6
+161424,0,0,0,15.6
+161425,0,0,0,15.6
+161426,0,0,0,15.6
+161427,0,0,0,15.6
+161428,0,0,0,15.6
+161429,0,0,0,15.6
+161430,0,0,0,15.6
+161431,0,0,0,15.6
+161432,0,0,0,15.6
+161433,0,0,0,15.6
+161434,0,0,0,15.6
+161435,0,0,0,15.6
+161436,0,0,0,15.6
+161437,0,0,0,15.6
+161438,0,0,0,15.6
+161439,0,0,0,15.6
+161440,0,0,0,15.6
+161441,0,0,0,15.6
+161442,0,0,0,15.6
+161443,0,0,0,15.6
+161444,0,0,0,15.6
+161445,0,0,0,15.6
+161446,0,0,0,15.6
+161447,339518.3795,0,0,15.6
+161448,0,0,0,15.6
+161449,0,0,0,15.6
+161450,0,0,0,15.6
+161451,0,0,0,15.6
+161452,0,0,0,15.6
+161453,0,368288.866,734748.7344,15.6
+161454,0,0,0,15.6
+161455,0,0,0,15.6
+161456,0,0,0,15.6
+161457,0,0,0,15.6
+161458,0,0,0,15.6
+161459,0,0,0,15.6
+161460,0,0,0,15.6
+161461,0,0,0,15.6
+161462,0,0,0,15.6
+161463,0,0,0,15.6
+161464,0,0,0,15.6
+161465,0,0,0,15.6
+161466,0,0,0,15.6
+161467,0,0,0,15.6
+161468,0,0,0,15.6
+161469,0,0,0,15.6
+161470,0,0,0,15.6
+161471,0,0,0,15.6
+161472,0,0,0,15.6
+161473,0,0,0,15.6
+161474,0,0,0,15.6
+161475,0,0,0,15.6
+161476,0,0,0,15.6
+161477,0,0,0,15.6
+161478,0,0,0,15.6
+161479,0,0,0,15.6
+161480,0,0,0,15.6
+161481,0,0,0,15.6
+161482,0,0,0,15.6
+161483,0,0,0,15.6
+161484,0,0,0,15.6
+161485,0,0,0,15.6
+161486,339531.0105,0,0,15.6
+161487,0,0,0,15.6
+161488,0,0,729174.7585,15.6
+161489,0,0,0,15.6
+161490,0,368273.5719,0,15.6
+161491,0,0,0,15.6
+161492,0,0,0,15.6
+161493,0,0,0,15.6
+161494,0,0,0,15.6
+161495,0,0,0,15.6
+161496,0,0,0,15.6
+161497,0,0,0,15.6
+161498,0,0,0,15.6
+161499,0,0,0,15.6
+161500,0,0,0,15.6
+161501,0,0,0,15.6
+161502,0,0,0,15.6
+161503,0,0,0,15.6
+161504,0,0,0,15.6
+161505,0,0,0,15.6
+161506,0,0,0,15.6
+161507,0,0,0,15.6
+161508,0,0,0,15.6
+161509,0,0,0,15.6
+161510,0,0,0,15.6
+161511,0,0,0,15.6
+161512,0,0,0,15.6
+161513,0,0,0,15.6
+161514,0,0,0,15.6
+161515,0,0,0,15.6
+161516,0,0,0,15.6
+161517,0,0,0,15.6
+161518,0,0,0,15.6
+161519,0,0,0,15.6
+161520,0,0,0,17.8
+161521,0,0,0,17.8
+161522,339533.3368,0,0,17.8
+161523,0,0,724029.2739,17.8
+161524,0,0,0,17.8
+161525,0,368260.3912,0,17.8
+161526,0,0,0,17.8
+161527,0,0,0,17.8
+161528,0,0,0,17.8
+161529,0,0,0,17.8
+161530,0,0,0,17.8
+161531,0,0,0,17.8
+161532,0,0,0,17.8
+161533,0,0,0,17.8
+161534,0,0,0,17.8
+161535,0,0,0,17.8
+161536,0,0,0,17.8
+161537,0,0,0,17.8
+161538,0,0,0,17.8
+161539,0,0,0,17.8
+161540,0,0,0,17.8
+161541,0,0,0,17.8
+161542,0,0,0,17.8
+161543,0,0,0,17.8
+161544,0,0,0,17.8
+161545,0,0,0,17.8
+161546,0,0,0,17.8
+161547,0,0,0,17.8
+161548,0,0,0,17.8
+161549,0,0,0,17.8
+161550,0,0,0,17.8
+161551,0,0,0,17.8
+161552,0,0,0,17.8
+161553,0,0,0,17.8
+161554,0,0,0,17.8
+161555,0,0,0,17.8
+161556,0,0,0,17.8
+161557,0,0,0,17.8
+161558,339525.0143,0,719305.1664,17.8
+161559,0,0,0,17.8
+161560,0,368268.7854,0,17.8
+161561,0,0,0,17.8
+161562,0,0,0,17.8
+161563,0,0,0,17.8
+161564,0,0,0,17.8
+161565,0,0,0,17.8
+161566,0,0,0,17.8
+161567,0,0,0,17.8
+161568,0,0,0,17.8
+161569,0,0,0,17.8
+161570,0,0,0,17.8
+161571,0,0,0,17.8
+161572,0,0,0,17.8
+161573,0,0,0,17.8
+161574,0,0,0,17.8
+161575,0,0,0,17.8
+161576,0,0,0,17.8
+161577,0,0,0,17.8
+161578,0,0,0,17.8
+161579,0,0,0,17.8
+161580,0,0,0,20
+161581,0,0,0,20
+161582,0,0,0,20
+161583,0,0,0,20
+161584,0,0,0,20
+161585,0,0,0,20
+161586,0,0,0,20
+161587,0,0,0,20
+161588,0,0,0,20
+161589,0,0,0,20
+161590,0,0,0,20
+161591,0,0,0,20
+161592,0,0,0,20
+161593,0,0,0,20
+161594,0,0,0,20
+161595,0,0,714984.623,20
+161596,0,0,0,20
+161597,339516.4538,368280.4538,0,20
+161598,0,0,0,20
+161599,0,0,0,20
+161600,0,0,0,20
+161601,0,0,0,20
+161602,0,0,0,20
+161603,0,0,0,20
+161604,0,0,0,20
+161605,0,0,0,20
+161606,0,0,0,20
+161607,0,0,0,20
+161608,0,0,0,20
+161609,0,0,0,20
+161610,0,0,0,20
+161611,0,0,0,20
+161612,0,0,0,20
+161613,0,0,0,20
+161614,0,0,0,20
+161615,0,0,0,20
+161616,0,0,0,20
+161617,0,0,0,20
+161618,0,0,0,20
+161619,0,0,0,20
+161620,0,0,0,20
+161621,0,0,0,20
+161622,0,0,0,20
+161623,0,0,0,20
+161624,0,0,0,20
+161625,0,0,0,20
+161626,0,0,0,20
+161627,0,0,0,20
+161628,0,0,0,20
+161629,0,0,0,20
+161630,0,0,0,20
+161631,0,0,0,20
+161632,0,0,708247.5968,20
+161633,0,0,0,20
+161634,0,368293.0697,0,20
+161635,0,0,0,20
+161636,339507.9273,0,0,20
+161637,0,0,0,20
+161638,0,0,0,20
+161639,0,0,0,20
+161640,0,0,0,21
+161641,0,0,0,21
+161642,0,0,0,21
+161643,0,0,0,21
+161644,0,0,0,21
+161645,0,0,0,21
+161646,0,0,0,21
+161647,0,0,0,21
+161648,0,0,0,21
+161649,0,0,0,21
+161650,0,0,0,21
+161651,0,0,0,21
+161652,0,0,0,21
+161653,0,0,0,21
+161654,0,0,0,21
+161655,0,0,0,21
+161656,0,0,0,21
+161657,0,0,0,21
+161658,0,0,0,21
+161659,0,0,0,21
+161660,0,0,0,21
+161661,0,0,0,21
+161662,0,0,0,21
+161663,0,0,0,21
+161664,0,0,0,21
+161665,0,0,0,21
+161666,0,0,0,21
+161667,0,0,0,21
+161668,0,0,705265.5878,21
+161669,0,0,0,21
+161670,0,0,0,21
+161671,0,368292.5132,0,21
+161672,0,0,0,21
+161673,0,0,0,21
+161674,0,0,0,21
+161675,0,0,0,21
+161676,339488.3891,0,0,21
+161677,0,0,0,21
+161678,0,0,0,21
+161679,0,0,0,21
+161680,0,0,0,21
+161681,0,0,0,21
+161682,0,0,0,21
+161683,0,0,0,21
+161684,0,0,0,21
+161685,0,0,0,21
+161686,0,0,0,21
+161687,0,0,0,21
+161688,0,0,0,21
+161689,0,0,0,21
+161690,0,0,0,21
+161691,0,0,0,21
+161692,0,0,0,21
+161693,0,0,0,21
+161694,0,0,0,21
+161695,0,0,0,21
+161696,0,0,0,21
+161697,0,0,0,21
+161698,0,0,0,21
+161699,0,0,0,21
+161700,0,0,0,21
+161701,0,0,0,21
+161702,0,0,0,21
+161703,0,0,0,21
+161704,0,0,702597.2761,21
+161705,0,0,0,21
+161706,0,0,0,21
+161707,0,0,0,21
+161708,0,368286.1056,0,21
+161709,0,0,0,21
+161710,0,0,0,21
+161711,0,0,0,21
+161712,0,0,0,21
+161713,339469.1265,0,0,21
+161714,0,0,0,21
+161715,0,0,0,21
+161716,0,0,0,21
+161717,0,0,0,21
+161718,0,0,0,21
+161719,0,0,0,21
+161720,0,0,0,21
+161721,0,0,0,21
+161722,0,0,0,21
+161723,0,0,0,21
+161724,0,0,0,21
+161725,0,0,0,21
+161726,0,0,0,21
+161727,0,0,0,21
+161728,0,0,0,21
+161729,0,0,0,21
+161730,0,0,0,21
+161731,0,0,0,21
+161732,0,0,0,21
+161733,0,0,0,21
+161734,0,0,0,21
+161735,0,0,0,21
+161736,0,0,0,21
+161737,0,0,0,21
+161738,0,0,0,21
+161739,0,0,0,21
+161740,0,0,699840.5782,21
+161741,0,0,0,21
+161742,0,0,0,21
+161743,0,0,0,21
+161744,0,0,0,21
+161745,0,0,0,21
+161746,0,368296.8851,0,21
+161747,0,0,0,21
+161748,0,0,0,21
+161749,0,0,0,21
+161750,339476.1842,0,0,21
+161751,0,0,0,21
+161752,0,0,0,21
+161753,0,0,0,21
+161754,0,0,0,21
+161755,0,0,0,21
+161756,0,0,0,21
+161757,0,0,0,21
+161758,0,0,0,21
+161759,0,0,0,21
+161760,0,0,0,21
+161761,0,0,0,21
+161762,0,0,0,21
+161763,0,0,0,21
+161764,0,0,0,21
+161765,0,0,0,21
+161766,0,0,0,21
+161767,0,0,0,21
+161768,0,0,0,21
+161769,0,0,0,21
+161770,0,0,0,21
+161771,0,0,0,21
+161772,0,0,0,21
+161773,0,0,0,21
+161774,0,0,0,21
+161775,0,0,0,21
+161776,0,0,697140.0402,21
+161777,0,0,0,21
+161778,0,0,0,21
+161779,0,0,0,21
+161780,0,0,0,21
+161781,0,0,0,21
+161782,0,0,0,21
+161783,0,368302.462,0,21
+161784,0,0,0,21
+161785,0,0,0,21
+161786,0,0,0,21
+161787,339478.1539,0,0,21
+161788,0,0,0,21
+161789,0,0,0,21
+161790,0,0,0,21
+161791,0,0,0,21
+161792,0,0,0,21
+161793,0,0,0,21
+161794,0,0,0,21
+161795,0,0,0,21
+161796,0,0,0,21
+161797,0,0,0,21
+161798,0,0,0,21
+161799,0,0,0,21
+161800,0,0,0,21
+161801,0,0,0,21
+161802,0,0,0,21
+161803,0,3.066787388,0,21
+161804,0,0,0,21
+161805,0,8.016768376,0,21
+161806,0,0,0,21
+161807,0,0,0,21
+161808,0,355.1446047,0,21
+161809,0,0,0,21
+161810,0,0,0,21
+161811,0,0,0,21
+161812,0,0,692010.9064,21
+161813,0,2.728116434,0,21
+161814,0,0,0,21
+161815,0,0,0,21
+161816,0,0,0,21
+161817,0,2.934125777,0,21
+161818,0,0,0,21
+161819,0,8.26720878,0,21
+161820,0,368302.1516,0,21
+161821,0,97.52143522,0,21
+161822,0,0,0,21
+161823,0,0,0,21
+161824,0,0,0,21
+161825,339478.3326,0,0,21
+161826,0,0,0,21
+161827,0,0,0,21
+161828,0,4.106091909,0,21
+161829,0,0,0,21
+161830,0,0,0,21
+161831,0,127.9232059,0,21
+161832,0,0,0,21
+161833,0,0,0,21
+161834,0,0,0,21
+161835,0,0,0,21
+161836,0,0,0,21
+161837,0,155.9652461,0,21
+161838,0,0,0,21
+161839,0,0,0,21
+161840,0,0,0,21
+161841,0,0,0,21
+161842,0,0,0,21
+161843,0,0,0,21
+161844,0,0,0,21
+161845,0,140.7660667,0,21
+161846,0,0,0,21
+161847,0,0,0,21
+161848,0,0,690691.4054,21
+161849,0,0,0,21
+161850,0,0,0,21
+161851,0,153.6121564,0,21
+161852,0,0,0,21
+161853,0,0,0,21
+161854,0,0,0,21
+161855,0,0,0,21
+161856,0,0,0,21
+161857,0,368316.1477,0,21
+161858,0,0,0,21
+161859,0,87.37192053,0,21
+161860,0,0,0,21
+161861,0,0,0,21
+161862,339202.4127,0,0,21
+161863,0,0,0,21
+161864,0,0,0,21
+161865,0,0,0,21
+161866,0,0,0,21
+161867,0,0,0,21
+161868,0,0,0,21
+161869,0,0,0,21
+161870,0,0,0,21
+161871,0,0,0,21
+161872,0,0,0,21
+161873,0,0,0,21
+161874,0,0,0,21
+161875,0,0,0,21
+161876,0,0,0,21
+161877,0,0,0,21
+161878,0,0,0,21
+161879,0,0,0,21
+161880,0,0,0,21
+161881,0,0,0,21
+161882,0,0,0,21
+161883,0,0,0,21
+161884,0,0,689190.852,21
+161885,0,0,0,21
+161886,0,3.334063838,0,21
+161887,0,0,0,21
+161888,0,0,0,21
+161889,0,0,0,21
+161890,0,0,0,21
+161891,0,0,0,21
+161892,0,0,0,21
+161893,0,0,0,21
+161894,0,0,0,21
+161895,0,368331.1129,0,21
+161896,0,0,0,21
+161897,0,0,0,21
+161898,0,0,0,21
+161899,0,0,0,21
+161900,0,0,0,21
+161901,338051.8902,0,0,21
+161902,0,0,0,21
+161903,0,0,0,21
+161904,0,0,0,21
+161905,0,0,0,21
+161906,0,0,0,21
+161907,0,0,0,21
+161908,0,0,0,21
+161909,0,0,0,21
+161910,0,0,0,21
+161911,0,0,0,21
+161912,0,0,0,21
+161913,0,0,0,21
+161914,0,0,0,21
+161915,0,0,0,21
+161916,0,0,0,21
+161917,0,0,0,21
+161918,0,0,0,21
+161919,0,0,0,21
+161920,0,0,0,21
+161921,0,0,685314.5397,21
+161922,0,0,0,21
+161923,0,0,0,21
+161924,0,0,0,21
+161925,0,0,0,21
+161926,0,0,0,21
+161927,0,0,0,21
+161928,0,0,0,21
+161929,0,0,0,21
+161930,0,0,0,21
+161931,0,0,0,21
+161932,0,0,0,21
+161933,0,368345.3945,0,21
+161934,0,0,0,21
+161935,0,85991.68276,0,21
+161936,0,0,0,21
+161937,0,0,0,21
+161938,0,0,0,21
+161939,0,0,0,21
+161940,338694.6793,0,0,21
+161941,0,0,0,21
+161942,0,0,0,21
+161943,0,0,0,21
+161944,0,0,0,21
+161945,0,0,0,21
+161946,0,0,0,21
+161947,0,0,0,21
+161948,0,0,0,21
+161949,0,0,0,21
+161950,0,0,0,21
+161951,0,0,0,21
+161952,0,0,0,21
+161953,0,0,0,21
+161954,0,0,0,21
+161955,0,0,0,21
+161956,0,0,0,21
+161957,0,0,0,21
+161958,0,0,683166.8348,21
+161959,0,0,0,21
+161960,0,0,0,21
+161961,0,0,0,21
+161962,0,0,0,21
+161963,0,0,0,21
+161964,0,0,0,21
+161965,0,0,0,21
+161966,0,0,0,21
+161967,0,0,0,21
+161968,0,0,0,21
+161969,0,0,0,21
+161970,0,368339.7178,0,21
+161971,0,0,0,21
+161972,0,0,0,21
+161973,0,0,0,21
+161974,0,0,0,21
+161975,0,0,0,21
+161976,0,0,0,21
+161977,0,0,0,21
+161978,0,0,0,21
+161979,339518.4729,0,0,21
+161980,0,0,0,21
+161981,0,0,0,21
+161982,0,0,0,21
+161983,0,0,0,21
+161984,0,0,0,21
+161985,0,0,0,21
+161986,0,0,0,21
+161987,0,0,0,21
+161988,0,0,0,21
+161989,0,0,0,21
+161990,0,0,0,21
+161991,0,0,0,21
+161992,0,0,0,21
+161993,0,0,0,21
+161994,0,0,0,21
+161995,0,0,681259.7619,21
+161996,0,0,0,21
+161997,0,0,0,21
+161998,0,0,0,21
+161999,0,0,0,21
+162000,0,0,0,21
+162001,0,0,0,21
+162002,0,0,0,21
+162003,0,0,0,21
+162004,0,0,0,21
+162005,0,0,0,21
+162006,0,0,0,21
+162007,0,368333.3831,0,21
+162008,0,0,0,21
+162009,0,0,0,21
+162010,0,0,0,21
+162011,0,0,0,21
+162012,0,0,0,21
+162013,0,0,0,21
+162014,0,0,0,21
+162015,0,0,0,21
+162016,0,0,0,21
+162017,0,0,0,21
+162018,338075.9296,0,0,21
+162019,0,0,0,21
+162020,0,0,0,21
+162021,0,0,0,21
+162022,0,0,0,21
+162023,0,0,0,21
+162024,0,0,0,21
+162025,0,0,0,21
+162026,0,0,0,21
+162027,0,0,0,21
+162028,0,0,0,21
+162029,0,0,0,21
+162030,0,0,0,21
+162031,0,0,0,21
+162032,0,0,0,21
+162033,0,0,679647.6382,21
+162034,0,0,0,21
+162035,0,0,0,21
+162036,0,0,0,21
+162037,0,0,0,21
+162038,0,0,0,21
+162039,0,0,0,21
+162040,0,0,0,21
+162041,0,0,0,21
+162042,0,0,0,21
+162043,0,0,0,21
+162044,0,368344.0366,0,21
+162045,0,0,0,21
+162046,0,0,0,21
+162047,0,0,0,21
+162048,0,0,0,21
+162049,0,0,0,21
+162050,0,0,0,21
+162051,0,0,0,21
+162052,0,0,0,21
+162053,0,0,0,21
+162054,0,0,0,21
+162055,0,0,0,21
+162056,0,0,0,21
+162057,338129.7663,0,0,21
+162058,0,0,0,21
+162059,0,0,0,21
+162060,0,0,0,21
+162061,0,0,0,21
+162062,0,0,0,21
+162063,0,0,0,21
+162064,0,0,0,21
+162065,0,0,0,21
+162066,0,0,0,21
+162067,0,0,0,21
+162068,0,0,0,21
+162069,0,0,0,21
+162070,0,0,0,21
+162071,0,0,678652.8969,21
+162072,0,0,0,21
+162073,0,0,0,21
+162074,0,0,0,21
+162075,0,0,0,21
+162076,0,0,0,21
+162077,0,0,0,21
+162078,0,0,0,21
+162079,0,0,0,21
+162080,0,0,0,21
+162081,0,368348.6478,0,21
+162082,0,0,0,21
+162083,0,0,0,21
+162084,0,0,0,21
+162085,0,0,0,21
+162086,0,0,0,21
+162087,0,0,0,21
+162088,0,0,0,21
+162089,0,0,0,21
+162090,0,0,0,21
+162091,0,0,0,21
+162092,0,0,0,21
+162093,0,0,0,21
+162094,0,0,0,21
+162095,0,0,0,21
+162096,338004.3198,0,0,21
+162097,0,0,0,21
+162098,0,0,0,21
+162099,0,0,0,21
+162100,0,0,0,21
+162101,0,0,0,21
+162102,0,0,0,21
+162103,0,0,0,21
+162104,0,0,0,21
+162105,0,0,0,21
+162106,0,0,0,21
+162107,0,0,0,21
+162108,0,0,677329.2131,21
+162109,0,0,0,21
+162110,0,0,0,21
+162111,0,0,0,21
+162112,0,0,0,21
+162113,0,0,0,21
+162114,0,0,0,21
+162115,0,0,0,21
+162116,0,0,0,21
+162117,0,0,0,21
+162118,0,368348.6478,0,21
+162119,0,0,0,21
+162120,0,0,0,21
+162121,0,0,0,21
+162122,0,0,0,21
+162123,0,0,0,21
+162124,0,0,0,21
+162125,0,0,0,21
+162126,0,0,0,21
+162127,0,0,0,21
+162128,0,0,0,21
+162129,0,0,0,21
+162130,0,0,0,21
+162131,0,0,0,21
+162132,0,0,0,21
+162133,0,0,0,21
+162134,0,0,0,21
+162135,337921.1422,0,0,21
+162136,0,0,0,21
+162137,0,0,0,21
+162138,0,0,0,21
+162139,0,0,0,21
+162140,0,0,0,21
+162141,0,0,0,21
+162142,0,0,0,21
+162143,0,0,0,21
+162144,0,0,675906.4558,21
+162145,0,0,0,21
+162146,0,0,0,21
+162147,0,0,0,21
+162148,0,0,0,21
+162149,0,0,0,21
+162150,0,0,0,21
+162151,0,0,0,21
+162152,0,0,0,21
+162153,0,0,0,21
+162154,0,0,0,21
+162155,0,368317.1118,0,21
+162156,0,0,0,21
+162157,0,0,0,21
+162158,0,0,0,21
+162159,0,0,0,21
+162160,0,0,0,21
+162161,0,0,0,21
+162162,0,0,0,21
+162163,0,0,0,21
+162164,0,0,0,21
+162165,0,0,0,21
+162166,0,0,0,21
+162167,0,0,0,21
+162168,0,0,0,21
+162169,0,0,0,21
+162170,0,0,0,21
+162171,0,0,0,21
+162172,0,0,0,21
+162173,338049.473,0,0,21
+162174,0,0,0,21
+162175,0,0,0,21
+162176,0,0,0,21
+162177,0,0,0,21
+162178,0,0,0,21
+162179,0,0,0,21
+162180,0,0,675054.035,21
+162181,0,0,0,21
+162182,0,0,0,21
+162183,0,0,0,21
+162184,0,0,0,21
+162185,0,0,0,21
+162186,0,0,0,21
+162187,0,0,0,21
+162188,0,0,0,21
+162189,0,0,0,21
+162190,0,0,0,21
+162191,0,0,0,21
+162192,0,368298.162,0,21
+162193,0,0,0,21
+162194,0,0,0,21
+162195,0,0,0,21
+162196,0,0,0,21
+162197,0,0,0,21
+162198,0,0,0,21
+162199,0,0,0,21
+162200,0,0,0,21
+162201,0,0,0,21
+162202,0,0,0,21
+162203,0,0,0,21
+162204,0,0,0,21
+162205,0,0,0,21
+162206,0,0,0,21
+162207,0,0,0,21
+162208,0,0,0,21
+162209,0,0,0,21
+162210,338265.077,0,0,21
+162211,0,0,0,21
+162212,0,0,0,21
+162213,0,0,0,21
+162214,0,0,0,21
+162215,0,0,0,21
+162216,0,0,674098.5319,21
+162217,0,0,0,21
+162218,0,0,0,21
+162219,0,0,0,21
+162220,0,0,0,21
+162221,0,0,0,21
+162222,0,0,0,21
+162223,0,0,0,21
+162224,0,0,0,21
+162225,0,0,0,21
+162226,0,0,0,21
+162227,0,0,0,21
+162228,0,0,0,21
+162229,0,368303.1255,0,21
+162230,0,0,0,21
+162231,0,0,0,21
+162232,0,0,0,21
+162233,0,0,0,21
+162234,0,0,0,21
+162235,0,0,0,21
+162236,0,0,0,21
+162237,0,0,0,21
+162238,0,0,0,21
+162239,0,0,0,21
+162240,0,0,0,21
+162241,0,0,0,21
+162242,0,0,0,21
+162243,0,0,0,21
+162244,0,0,0,21
+162245,0,0,0,21
+162246,0,0,0,21
+162247,339551.1738,0,0,21
+162248,0,0,0,21
+162249,0,0,0,21
+162250,0,0,0,21
+162251,0,0,0,21
+162252,0,0,673524.1698,21
+162253,0,0,0,21
+162254,0,0,0,21
+162255,0,0,0,21
+162256,0,0,0,21
+162257,0,0,0,21
+162258,0,0,0,21
+162259,0,0,0,21
+162260,0,0,0,21
+162261,0,0,0,21
+162262,0,0,0,21
+162263,0,0,0,21
+162264,0,0,0,21
+162265,0,0,0,21
+162266,0,368295.0542,0,21
+162267,0,0,0,21
+162268,0,0,0,21
+162269,0,0,0,21
+162270,0,0,0,21
+162271,0,0,0,21
+162272,0,0,0,21
+162273,0,0,0,21
+162274,0,0,0,21
+162275,0,0,0,21
+162276,0,0,0,21
+162277,0,0,0,21
+162278,0,0,0,21
+162279,0,0,0,21
+162280,0,0,0,21
+162281,0,0,0,21
+162282,0,0,0,21
+162283,0,0,0,21
+162284,339580.0516,0,0,21
+162285,0,0,0,21
+162286,0,0,0,21
+162287,0,0,0,21
+162288,0,0,672813.935,21
+162289,0,0,0,21
+162290,0,0,0,21
+162291,0,0,0,21
+162292,0,0,0,21
+162293,0,0,0,21
+162294,0,0,0,21
+162295,0,0,0,21
+162296,0,0,0,21
+162297,0,0,0,21
+162298,0,0,0,21
+162299,0,0,0,21
+162300,0,0,0,21
+162301,0,0,0,21
+162302,0,0,0,21
+162303,0,368280.9397,0,21
+162304,0,0,0,21
+162305,0,0,0,21
+162306,0,0,0,21
+162307,0,0,0,21
+162308,0,0,0,21
+162309,0,0,0,21
+162310,0,0,0,21
+162311,0,0,0,21
+162312,0,85299.8209,0,21
+162313,0,0,0,21
+162314,0,0,0,21
+162315,0,0,0,21
+162316,0,0,0,21
+162317,0,2.880970212,0,21
+162318,0,0,0,21
+162319,0,0,0,21
+162320,0,0,0,21
+162321,0,0,0,21
+162322,339583.554,0,0,21
+162323,0,0,0,21
+162324,0,0,672078.6994,21
+162325,0,0,0,21
+162326,0,0,0,21
+162327,0,0,0,21
+162328,0,0,0,21
+162329,0,0,0,21
+162330,0,0,0,21
+162331,0,0,0,21
+162332,0,0,0,21
+162333,0,0,0,21
+162334,0,0,0,21
+162335,0,0,0,21
+162336,0,0,0,21
+162337,0,0,0,21
+162338,0,0,0,21
+162339,0,0,0,21
+162340,0,368260.0065,0,21
+162341,0,0,0,21
+162342,0,85086.34126,0,21
+162343,0,0,0,21
+162344,0,0,0,21
+162345,0,0,0,21
+162346,0,0,0,21
+162347,0,0,0,21
+162348,0,0,0,21
+162349,0,0,0,21
+162350,0,0,0,21
+162351,0,0,0,21
+162352,0,0,0,21
+162353,0,0,0,21
+162354,0,0,0,21
+162355,0,0,0,21
+162356,0,0,0,21
+162357,0,0,0,21
+162358,0,0,0,21
+162359,0,0,0,21
+162360,339583.3552,0,671210.7905,21
+162361,0,0,0,21
+162362,0,0,0,21
+162363,0,0,0,21
+162364,0,0,0,21
+162365,0,0,0,21
+162366,0,0,0,21
+162367,0,0,0,21
+162368,0,0,0,21
+162369,0,0,0,21
+162370,0,0,0,21
+162371,0,0,0,21
+162372,0,0,0,21
+162373,0,0,0,21
+162374,0,0,0,21
+162375,0,0,0,21
+162376,0,0,0,21
+162377,0,368246.3127,0,21
+162378,0,0,0,21
+162379,0,0,0,21
+162380,0,0,0,21
+162381,0,0,0,21
+162382,0,0,0,21
+162383,0,0,0,21
+162384,0,0,0,21
+162385,0,0,0,21
+162386,0,0,0,21
+162387,0,0,0,21
+162388,0,0,0,21
+162389,0,0,0,21
+162390,0,0,0,21
+162391,0,0,0,21
+162392,0,0,0,21
+162393,0,0,0,21
+162394,0,0,0,21
+162395,0,0,0,21
+162396,0,0,670958.8703,21
+162397,0,0,0,21
+162398,339717.9599,0,0,21
+162399,0,0,0,21
+162400,0,0,0,21
+162401,0,0,0,21
+162402,0,0,0,21
+162403,0,0,0,21
+162404,0,0,0,21
+162405,0,0,0,21
+162406,0,0,0,21
+162407,0,0,0,21
+162408,0,0,0,21
+162409,0,0,0,21
+162410,0,0,0,21
+162411,0,0,0,21
+162412,0,0,0,21
+162413,0,0,0,21
+162414,0,368239.9606,0,21
+162415,0,0,0,21
+162416,0,0,0,21
+162417,0,0,0,21
+162418,0,0,0,21
+162419,0,0,0,21
+162420,0,0,0,21
+162421,0,0,0,21
+162422,0,0,0,21
+162423,0,0,0,21
+162424,0,0,0,21
+162425,0,0,0,21
+162426,0,0,0,21
+162427,0,0,0,21
+162428,0,0,0,21
+162429,0,0,0,21
+162430,0,0,0,21
+162431,0,2.472542889,0,21
+162432,0,0,670165.5922,21
+162433,0,0,0,21
+162434,0,0,0,21
+162435,0,0,0,21
+162436,339679.7741,0,0,21
+162437,0,0,0,21
+162438,0,0,0,21
+162439,0,0,0,21
+162440,0,0,0,21
+162441,0,0,0,21
+162442,0,4.040510215,0,21
+162443,0,0,0,21
+162444,0,0,0,21
+162445,0,197.5059148,0,21
+162446,0,0,0,21
+162447,0,0,0,21
+162448,0,0,0,21
+162449,0,0,0,21
+162450,0,3.665863774,0,21
+162451,0,368229.0902,0,21
+162452,0,0,0,21
+162453,0,0,0,21
+162454,0,0,0,21
+162455,0,0,0,21
+162456,0,0,0,21
+162457,0,0,0,21
+162458,0,0,0,21
+162459,0,0,0,21
+162460,0,0,0,21
+162461,0,0,0,21
+162462,0,3.221261172,0,21
+162463,0,0,0,21
+162464,0,7.679440427,0,21
+162465,0,0,0,21
+162466,0,73.86267001,0,21
+162467,0,0,0,21
+162468,0,0,669136.3733,21
+162469,0,0,0,21
+162470,0,0,0,21
+162471,0,0,0,21
+162472,0,0,0,21
+162473,0,0,0,21
+162474,339660.4538,0,0,21
+162475,0,0,0,21
+162476,0,0,0,21
+162477,0,0,0,21
+162478,0,0,0,21
+162479,0,0,0,21
+162480,0,0,0,21
+162481,0,0,0,21
+162482,0,0,0,21
+162483,0,0,0,21
+162484,0,0,0,21
+162485,0,0,0,21
+162486,0,0,0,21
+162487,0,0,0,21
+162488,0,0,0,21
+162489,0,368217.5166,0,21
+162490,0,0,0,21
+162491,0,0,0,21
+162492,0,0,0,21
+162493,0,0,0,21
+162494,0,2.740458268,0,21
+162495,0,0,0,21
+162496,0,4.146757698,0,21
+162497,0,0,0,21
+162498,0,0,0,21
+162499,0,181.7358432,0,21
+162500,0,0,0,21
+162501,0,0,0,21
+162502,0,0,0,21
+162503,0,0,0,21
+162504,0,0,0,21
+162505,0,0,669595.1451,21
+162506,0,0,0,21
+162507,0,0,0,21
+162508,0,0,0,21
+162509,0,0,0,21
+162510,0,0,0,21
+162511,0,0,0,21
+162512,0,0,0,21
+162513,0,0,0,21
+162514,339674.5634,0,0,21
+162515,0,0,0,21
+162516,0,0,0,21
+162517,0,0,0,21
+162518,0,0,0,21
+162519,0,0,0,21
+162520,0,0,0,21
+162521,0,0,0,21
+162522,0,0,0,21
+162523,0,0,0,21
+162524,0,0,0,21
+162525,0,0,0,21
+162526,0,0,0,21
+162527,0,368208.3786,0,21
+162528,0,0,0,21
+162529,0,0,0,21
+162530,0,0,0,21
+162531,0,0,0,21
+162532,0,0,0,21
+162533,0,0,0,21
+162534,0,2.862239647,0,21
+162535,0,0,0,21
+162536,0,8.295501894,0,21
+162537,0,0,0,21
+162538,0,74.62366581,0,21
+162539,0,0,0,21
+162540,0,0,0,21
+162541,0,0,0,21
+162542,0,3.147358218,669864.8753,21
+162543,0,0,0,21
+162544,0,74.0053101,0,21
+162545,0,0,0,21
+162546,0,0,0,21
+162547,0,85069.30916,0,21
+162548,0,0,0,21
+162549,0,0,0,21
+162550,0,0,0,21
+162551,0,0,0,21
+162552,0,0,0,21
+162553,0,0,0,21
+162554,339676.7531,0,0,21
+162555,0,0,0,21
+162556,0,0,0,21
+162557,0,0,0,21
+162558,0,0,0,21
+162559,0,0,0,21
+162560,0,0,0,21
+162561,0,0,0,21
+162562,0,0,0,21
+162563,0,0,0,21
+162564,0,0,0,21
+162565,0,368203.6704,0,21
+162566,0,0,0,21
+162567,0,66.36703767,0,21
+162568,0,0,0,21
+162569,0,0,0,21
+162570,0,85015.23679,0,21
+162571,0,0,0,21
+162572,0,0,0,21
+162573,0,0,0,21
+162574,0,0,0,21
+162575,0,0,0,21
+162576,0,0,0,21
+162577,0,18278.38959,0,21
+162578,0,0,670489.9039,21
+162579,0,0,0,21
+162580,0,2644.632422,0,21
+162581,0,5998.665429,0,21
+162582,0,3002.558356,0,21
+162583,0,3829.939236,0,21
+162584,0,3862.198902,0,21
+162585,0,3862.199883,0,21
+162586,0,3858.847204,0,21
+162587,0,3874.874877,0,21
+162588,0,3874.875571,0,21
+162589,0,3871.393513,0,21
+162590,0,3979.43563,0,21
+162591,0,3903.249483,0,21
+162592,339664.3062,3867.823913,0,21
+162593,0,3883.73212,0,21
+162594,0,3899.601452,0,21
+162595,0,3883.73265,0,21
+162596,0,3886.063582,0,21
+162597,0,3899.128266,0,21
+162598,0,3895.865774,0,21
+162599,0,3892.042297,0,21
+162600,0,4019.753703,0,15.6
+162601,0,3943.131103,0,15.6
+162602,0,4013.541228,0,15.6
+162603,0,372282.1281,0,15.6
+162604,0,4099.148461,0,15.6
+162605,0,4188.091655,0,15.6
+162606,0,4253.514595,0,15.6
+162607,0,0,0,15.6
+162608,0,74.90276834,0,15.6
+162609,0,0,0,15.6
+162610,0,0,0,15.6
+162611,0,0,0,15.6
+162612,0,0,0,15.6
+162613,0,0,0,15.6
+162614,0,0,671205.8556,15.6
+162615,0,0,0,15.6
+162616,0,0,0,15.6
+162617,0,19345.6447,0,15.6
+162618,0,2352.493398,0,15.6
+162619,0,1416.668836,0,15.6
+162620,0,4952.265665,0,15.6
+162621,0,6494.816147,0,15.6
+162622,0,4637.146713,0,15.6
+162623,0,5187.449547,0,15.6
+162624,0,5266.66002,0,15.6
+162625,0,5302.431405,0,15.6
+162626,0,5496.399077,0,15.6
+162627,0,5413.100997,0,15.6
+162628,0,5441.600556,0,15.6
+162629,0,5526.379932,0,15.6
+162630,339650.0226,5551.273086,0,15.6
+162631,0,5618.007133,0,15.6
+162632,0,5663.607641,0,15.6
+162633,0,5709.067698,0,15.6
+162634,0,5848.334149,0,15.6
+162635,0,5816.878273,0,15.6
+162636,0,5882.449396,0,15.6
+162637,0,5896.305992,0,15.6
+162638,0,5975.293371,0,15.6
+162639,0,6019.877901,0,15.6
+162640,0,374251.3483,0,15.6
+162641,0,6194.53814,0,15.6
+162642,0,6159.318279,0,15.6
+162643,0,6230.56478,0,15.6
+162644,0,6264.085976,0,15.6
+162645,0,6321.372784,0,15.6
+162646,0,6384.754852,0,15.6
+162647,0,0,0,15.6
+162648,0,3.066084767,0,15.6
+162649,0,0,0,15.6
+162650,0,3.93167866,671536.9377,15.6
+162651,0,0,0,15.6
+162652,0,28403.78095,0,15.6
+162653,0,0,0,15.6
+162654,0,2914.824949,0,15.6
+162655,0,8747.558742,0,15.6
+162656,0,7263.653822,0,15.6
+162657,0,6788.222909,0,15.6
+162658,0,7000.360889,0,15.6
+162659,0,7029.213801,0,15.6
+162660,0,7154.097666,0,15.6
+162661,0,7166.937523,0,15.6
+162662,0,7203.161529,0,15.6
+162663,0,7223.999696,0,15.6
+162664,0,7353.012529,0,15.6
+162665,0,7669.836215,0,15.6
+162666,0,7729.326185,0,15.6
+162667,339640.0574,7768.917563,0,15.6
+162668,0,7883.907602,0,15.6
+162669,0,7977.066468,0,15.6
+162670,0,8036.441429,0,15.6
+162671,0,8144.154244,0,15.6
+162672,0,8200.673902,0,15.6
+162673,0,8304.337759,0,15.6
+162674,0,8361.571979,0,15.6
+162675,0,376603.2061,0,15.6
+162676,0,8537.898044,0,15.6
+162677,0,8588.638665,0,15.6
+162678,0,8681.581925,0,15.6
+162679,0,8756.949252,0,15.6
+162680,0,8788.138171,0,15.6
+162681,0,8944.30933,0,15.6
+162682,0,0,0,15.6
+162683,0,0,0,15.6
+162684,0,0,0,15.6
+162685,0,0,671623.5138,15.6
+162686,0,31935.73849,0,15.6
+162687,0,0,0,15.6
+162688,0,4177.655961,0,15.6
+162689,0,14240.49657,0,15.6
+162690,0,8459.509446,0,15.6
+162691,0,9613.008906,0,15.6
+162692,0,9666.803779,0,15.6
+162693,0,9807.235445,0,15.6
+162694,0,9817.108914,0,15.6
+162695,0,9913.322049,0,15.6
+162696,0,9956.984996,0,15.6
+162697,0,10040.56955,0,15.6
+162698,0,10105.25999,0,15.6
+162699,0,10138.64625,0,15.6
+162700,0,10238.44845,0,15.6
+162701,0,10314.26622,0,15.6
+162702,0,10333.01323,0,15.6
+162703,339650.0036,10416.07399,0,15.6
+162704,0,10483.91873,0,15.6
+162705,0,10553.96411,0,15.6
+162706,0,10582.60576,0,15.6
+162707,0,10675.38604,0,15.6
+162708,0,10750.43897,0,15.6
+162709,0,10789.45176,0,15.6
+162710,0,379277.4318,0,15.6
+162711,0,11053.02456,0,15.6
+162712,0,11226.37897,0,15.6
+162713,0,11297.18698,0,15.6
+162714,0,11336.47284,0,15.6
+162715,0,11508.76773,0,15.6
+162716,0,0,0,15.6
+162717,0,2.718894672,0,15.6
+162718,0,0,0,15.6
+162719,0,0,0,15.6
+162720,0,36465.2937,671534.208,15.6
+162721,0,3328.136068,0,15.6
+162722,0,8337.620529,0,15.6
+162723,0,13905.99818,0,15.6
+162724,0,10886.67797,0,15.6
+162725,0,11768.76357,0,15.6
+162726,0,11782.87418,0,15.6
+162727,0,11792.86389,0,15.6
+162728,0,11836.24501,0,15.6
+162729,0,11988.12278,0,15.6
+162730,0,12050.85202,0,15.6
+162731,0,12344.14817,0,15.6
+162732,0,12076.80847,0,15.6
+162733,0,12168.06004,0,15.6
+162734,0,12208.17201,0,15.6
+162735,0,12233.76476,0,15.6
+162736,0,12322.19509,0,15.6
+162737,0,12338.80494,0,15.6
+162738,0,12428.08555,0,15.6
+162739,339642.0162,12415.22417,0,15.6
+162740,0,12537.40474,0,15.6
+162741,0,12558.69043,0,15.6
+162742,0,12603.2099,0,15.6
+162743,0,12618.0474,0,15.6
+162744,0,12745.79446,0,15.6
+162745,0,380894.9048,0,15.6
+162746,0,12760.48378,0,15.6
+162747,0,12881.24199,0,15.6
+162748,0,12872.83463,0,15.6
+162749,0,12918.6102,0,15.6
+162750,0,0,0,15.6
+162751,0,0,0,15.6
+162752,0,0,0,15.6
+162753,0,0,0,15.6
+162754,0,41139.49873,0,15.6
+162755,0,2993.028377,671579.0122,15.6
+162756,0,9926.362905,0,15.6
+162757,0,16820.80672,0,15.6
+162758,0,12804.95485,0,15.6
+162759,0,13352.41606,0,15.6
+162760,0,13477.62169,0,15.6
+162761,0,13484.27402,0,15.6
+162762,0,13571.25419,0,15.6
+162763,0,13564.17169,0,15.6
+162764,0,13638.52396,0,15.6
+162765,0,13664.12353,0,15.6
+162766,0,13712.63981,0,15.6
+162767,0,13758.9614,0,15.6
+162768,0,13746.86998,0,15.6
+162769,0,13882.65959,0,15.6
+162770,0,13834.0133,0,15.6
+162771,0,13939.16129,0,15.6
+162772,0,13919.81169,0,15.6
+162773,0,14005.37843,0,15.6
+162774,0,14019.05297,0,15.6
+162775,339616.8545,14090.29956,0,15.6
+162776,0,14076.66845,0,15.6
+162777,0,14170.1231,0,15.6
+162778,0,14170.12177,0,15.6
+162779,0,14217.74328,0,15.6
+162780,0,382416.749,0,15.6
+162781,0,14337.94042,0,15.6
+162782,0,14390.79256,0,15.6
+162783,0,14479.35144,0,15.6
+162784,0,0,0,15.6
+162785,0,0,0,15.6
+162786,0,0,0,15.6
+162787,0,42989.18586,0,15.6
+162788,0,3099.104115,0,15.6
+162789,0,13773.85823,0,15.6
+162790,0,17411.61001,671692.9853,15.6
+162791,0,14720.65297,0,15.6
+162792,0,15168.40561,0,15.6
+162793,0,15270.86746,0,15.6
+162794,0,15353.30318,0,15.6
+162795,0,15401.9011,0,15.6
+162796,0,15491.84866,0,15.6
+162797,0,15544.19123,0,15.6
+162798,0,15627.29699,0,15.6
+162799,0,15715.45472,0,15.6
+162800,0,15701.51827,0,15.6
+162801,0,15883.73542,0,15.6
+162802,0,15897.92674,0,15.6
+162803,0,15931.50967,0,15.6
+162804,0,16093.22819,0,15.6
+162805,0,16098.66633,0,15.6
+162806,0,16160.01355,0,15.6
+162807,0,16277.34149,0,15.6
+162808,0,16313.25584,0,15.6
+162809,0,16399.78537,0,15.6
+162810,0,16440.37275,0,15.6
+162811,339619.3538,16538.19298,0,15.6
+162812,0,16605.17745,0,15.6
+162813,0,16666.80036,0,15.6
+162814,0,16715.11019,0,15.6
+162815,0,384963.164,0,15.6
+162816,0,16892.27097,0,15.6
+162817,0,0,0,15.6
+162818,0,0,0,15.6
+162819,0,0,0,15.6
+162820,0,52668.65769,0,15.6
+162821,0,3827.295113,0,15.6
+162822,0,15482.202,0,15.6
+162823,0,20215.92676,0,15.6
+162824,0,17079.36859,0,15.6
+162825,0,17547.37997,671760.7826,15.6
+162826,0,17568.74989,0,15.6
+162827,0,17669.64254,0,15.6
+162828,0,17674.39738,0,15.6
+162829,0,17813.65491,0,15.6
+162830,0,17860.55043,0,15.6
+162831,0,17918.62277,0,15.6
+162832,0,17983.10494,0,15.6
+162833,0,18061.09853,0,15.6
+162834,0,18111.77548,0,15.6
+162835,0,18214.90982,0,15.6
+162836,0,18221.74789,0,15.6
+162837,0,18346.32924,0,15.6
+162838,0,18365.38119,0,15.6
+162839,0,18496.10513,0,15.6
+162840,0,18597.30362,0,15.6
+162841,0,18638.60715,0,15.6
+162842,0,18649.03413,0,15.6
+162843,0,18827.59097,0,15.6
+162844,0,18816.87679,0,15.6
+162845,0,19002.60864,0,15.6
+162846,0,18981.64881,0,15.6
+162847,339621.9799,19153.50614,0,15.6
+162848,0,19168.82565,0,15.6
+162849,0,19339.15091,0,15.6
+162850,0,368141.6678,0,15.6
+162851,0,0,0,15.6
+162852,0,0,0,15.6
+162853,0,62791.20793,0,15.6
+162854,0,6750.232252,0,15.6
+162855,0,14558.12965,0,15.6
+162856,0,24633.56354,0,15.6
+162857,0,19448.30164,0,15.6
+162858,0,20123.30859,0,15.6
+162859,0,20264.47638,0,15.6
+162860,0,20523.53835,671831.508,15.6
+162861,0,20387.92522,0,15.6
+162862,0,20547.9418,0,15.6
+162863,0,20555.13209,0,15.6
+162864,0,20648.42719,0,15.6
+162865,0,20771.2785,0,15.6
+162866,0,20811.73498,0,15.6
+162867,0,21010.43321,0,15.6
+162868,0,20969.90022,0,15.6
+162869,0,21088.52829,0,15.6
+162870,0,21143.84607,0,15.6
+162871,0,21245.46229,0,15.6
+162872,0,21500.82533,0,15.6
+162873,0,21439.44244,0,15.6
+162874,0,21463.59642,0,15.6
+162875,0,21582.7102,0,15.6
+162876,0,21654.20034,0,15.6
+162877,0,21758.53945,0,15.6
+162878,0,21829.76639,0,15.6
+162879,0,21914.5175,0,15.6
+162880,0,21971.41519,0,15.6
+162881,0,22121.6022,0,15.6
+162882,0,22107.57367,0,15.6
+162883,339593.2007,0,0,15.6
+162884,0,0,0,15.6
+162885,0,368132.4273,0,15.6
+162886,0,74335.92874,0,15.6
+162887,0,10833.87644,0,15.6
+162888,0,12729.70339,0,15.6
+162889,0,29819.98754,0,15.6
+162890,0,21950.58511,0,15.6
+162891,0,22924.84208,0,15.6
+162892,0,23054.21134,0,15.6
+162893,0,23083.50044,0,15.6
+162894,0,23292.85795,0,15.6
+162895,0,23224.18636,671940.4374,15.6
+162896,0,23564.60151,0,15.6
+162897,0,23441.8915,0,15.6
+162898,0,23540.57766,0,15.6
+162899,0,23632.83046,0,15.6
+162900,0,23724.84017,0,15.6
+162901,76816.7133,1174614.405,0,15.6
+162902,20662.85771,443870.517,0,15.6
+162903,14518.69886,240918.4807,0,15.6
+162904,18718.23809,434783.5464,0,15.6
+162905,20041.9013,271431.1679,0,15.6
+162906,18081.83747,341076.0413,0,15.6
+162907,17943.32428,320822.0569,0,15.6
+162908,17922.57449,316112.4053,0,15.6
+162909,17821.23028,317264.5327,0,15.6
+162910,17747.67095,316558.1998,0,15.6
+162911,17670.03691,315721.4958,0,15.6
+162912,17599.19787,315754.4285,0,15.6
+162913,17507.1967,314533.5658,0,15.6
+162914,17492.9533,314282.277,0,15.6
+162915,17342.78832,313964.8438,0,15.6
+162916,17325.18298,257851.3461,0,15.6
+162917,17252.94191,257690,0,15.6
+162918,17175.98819,368510.6004,0,15.6
+162919,356689.8742,289210.2784,0,15.6
+162920,17083.41071,692313.6408,0,15.6
+162921,16974.61799,307627.0554,0,15.6
+162922,16918.02267,313731.7437,0,15.6
+162923,16883.63936,311342.027,0,15.6
+162924,16800.42191,310820.1128,0,15.6
+162925,16731.51691,310886.4746,0,15.6
+162926,16696.26401,310307.7407,0,15.6
+162927,16619.06222,310307.9465,0,15.6
+162928,16560.28726,310391.0586,0,15.6
+162929,16526.06795,309561.6969,0,15.6
+162930,16447.02738,309942.1833,672226.0964,15.6
+162931,0,54379.76535,0,15.6
+162932,0,54522.76844,0,15.6
+162933,0,54373.09592,0,15.6
+162934,0,738860.6083,0,15.6
+162935,0,239671.0392,0,15.6
+162936,51334.01737,246026.1847,0,15.6
+162937,3234.452544,350103.9515,0,15.6
+162938,13275.79301,306330.3434,0,15.6
+162939,19522.49246,308520.2333,0,15.6
+162940,15430.67112,307693.745,0,15.6
+162941,15883.16345,308594.5703,0,15.6
+162942,15818.67951,307609.433,0,15.6
+162943,15785.2234,308270.6869,0,15.6
+162944,15688.66934,307290.5675,0,15.6
+162945,15663.01088,307216.8159,0,15.6
+162946,15576.8546,307791.514,0,15.6
+162947,15565.98498,306712.6165,0,15.6
+162948,15475.61972,253975.2856,0,15.6
+162949,15447.95525,253819.0703,0,15.6
+162950,15338.57505,363704.5822,0,15.6
+162951,15353.87717,281915.7001,0,15.6
+162952,15219.47375,317379.4442,0,15.6
+162953,15170.78707,304546.3953,0,15.6
+162954,15145.22223,307987.5271,0,15.6
+162955,354627.8266,307228.1612,0,15.6
+162956,15009.3504,674645.4238,0,15.6
+162957,14900.29871,306986.8094,0,15.6
+162958,14839.67008,306192.2933,0,15.6
+162959,14779.15268,307290.1488,0,15.6
+162960,14630.88935,306801.5712,0,17.8
+162961,967711.3445,1426687.35,0,17.8
+162962,387918.6718,1402259.67,0,17.8
+162963,227200.9937,396785.8337,0,17.8
+162964,223825.7362,154085.4648,0,17.8
+162965,248258.3288,1047052.907,672625.9076,17.8
+162966,188869.2378,517825.2178,0,17.8
+162967,189951.5284,665926.4903,0,17.8
+162968,304773.6633,640083.7711,0,17.8
+162969,231050.0401,564760.3493,0,17.8
+162970,247462.2471,587439.4135,0,17.8
+162971,243740.5177,585579.8292,0,17.8
+162972,245312.6779,579275.0016,0,17.8
+162973,243495.335,623951.0702,0,17.8
+162974,243277.2241,574466.496,0,17.8
+162975,243116.9764,591629.8687,0,17.8
+162976,242632.9315,588253.4156,0,17.8
+162977,242158.4792,585346.9777,0,17.8
+162978,242496.3925,582927.5976,0,17.8
+162979,241679.1028,581262.9088,0,17.8
+162980,242264.8576,467101.483,0,17.8
+162981,241310.2463,645005.9297,0,17.8
+162982,241162.8707,553583.6558,0,17.8
+162983,241475.1003,575994.7049,0,17.8
+162984,236107.3118,574375.2966,0,17.8
+162985,235619.703,571574.9245,0,17.8
+162986,236077.9632,569065.5096,0,17.8
+162987,235585.285,568210.9671,0,17.8
+162988,235124.5271,566865.6563,0,17.8
+162989,235801.0316,564822.063,0,17.8
+162990,234970.1452,563242.7151,0,17.8
+162991,393008.7351,928540.9685,0,17.8
+162992,53280.05968,559903.0206,0,17.8
+162993,53276.37196,558201.2493,0,17.8
+162994,53137.23005,556718.7343,0,17.8
+162995,53055.50272,123110.8903,0,17.8
+162996,52963.75057,122847.6276,0,17.8
+162997,548672.2846,1125600.026,0,17.8
+162998,65698.45002,393886.3871,0,17.8
+162999,177506.3171,658764.312,0,17.8
+163000,286115.5769,508041.0959,672809.803,17.8
+163001,232145.5413,569783.2912,0,17.8
+163002,229626.4624,547802.5563,0,17.8
+163003,237769.8478,529250.3502,0,17.8
+163004,234505.8853,527354.4923,0,17.8
+163005,234707.1544,526367.4928,0,17.8
+163006,234620.5493,525277.5142,0,17.8
+163007,234651.219,522838.975,0,17.8
+163008,234219.3848,522450.6064,0,17.8
+163009,234562.0586,521036.0425,0,17.8
+163010,234148.4491,519390.4625,0,17.8
+163011,234710.8365,457844.9621,0,17.8
+163012,234051.6661,417137.1972,0,17.8
+163013,234598.5668,624248.4259,0,17.8
+163014,233945.9022,522908.5221,0,17.8
+163015,234303.0137,522329.4507,0,17.8
+163016,234564.4249,537011.0132,0,17.8
+163017,233798.7678,528258.3767,0,17.8
+163018,234250.7255,524328.8414,0,17.8
+163019,234551.7539,520849.6964,0,17.8
+163020,234006.4339,521559.9119,0,20
+163021,1365065.048,2599367.929,555193.0312,20
+163022,583393.1509,1403506.08,0,20
+163023,218695.7949,613726.1785,3214.791431,20
+163024,345021.7151,526200.1454,2791.70478,20
+163025,400413.2586,628095.5527,44925.47941,20
+163026,403502.0445,889924.8355,24269.65651,20
+163027,369787.7264,666474.3595,30696.00209,20
+163028,380889.6102,715189.7443,33955.76626,20
+163029,379556.5594,716127.0487,39826.037,20
+163030,381436.9271,712476.5278,36729.83376,20
+163031,380886.5755,710639.0673,38921.0914,20
+163032,381364.1408,707491.3271,39612.20121,20
+163033,379657.8936,706662.1308,40244.59309,20
+163034,381660.471,704258.5387,40777.63583,20
+163035,380386.325,702158.8353,41600.78905,20
+163036,380351.9845,699863.7769,42081.5796,20
+163037,380768.1111,699631.5432,43021.9102,20
+163038,381314.2604,695514.689,43514.92802,20
+163039,380783.5782,695783.2925,43968.85146,20
+163040,380092.2156,694223.5868,44759.50555,20
+163041,380537.7935,691424.8741,45439.86172,20
+163042,381862.436,691589.8462,46194.26009,20
+163043,380123.0811,688233.0753,46495.8846,20
+163044,381579.9568,687780.8095,47408.57553,20
+163045,380181.8592,686765.1154,47854.57105,20
+163046,379873.7072,684541.238,48712.47403,20
+163047,379205.5962,684154.1955,49033.81699,20
+163048,378598.1449,670149.2211,49895.36717,20
+163049,379326.6435,667439.8501,50278.35114,20
+163050,378429.8638,663509.6335,51035.72243,20
+163051,379643.0324,661711.2186,52508.23658,20
+163052,378053.1869,660687.5181,54102.81014,20
+163053,379082.9621,658571.6836,54399.95016,20
+163054,378644.1245,656373.503,55165.85593,20
+163055,378047.4892,656402.8452,56307.71549,20
+163056,378510.4773,653565.3778,56964.37615,20
+163057,378132.9824,653445.699,57627.58586,20
+163058,378760.9665,651086.2964,58769.3551,20
+163059,378306.2161,650662.3646,59434.91841,20
+163060,365124.4758,649185.6333,60271.54763,20
+163061,363147.2331,648967.2739,61044.06018,20
+163062,362484.2559,645214.138,61728.87439,20
+163063,359734.619,647451.5784,62634.14596,20
+163064,358754.3597,644950.5575,63448.9842,20
+163065,358167.1249,643603.3828,63979.31794,20
+163066,355364.6315,642756.0033,65154.13892,20
+163067,355668.1963,642159.4652,65674.73627,20
+163068,353104.5373,641406.1564,66702.48979,20
+163069,351100.0195,640576.2387,67389.20013,20
+163070,351322.1755,638802.4577,67947.84292,20
+163071,349381.5951,639734.0474,69086.66584,20
+163072,346612.0805,637904.1365,69582.98749,20
+163073,346905.6675,637669.0505,70375.32227,20
+163074,344648.7037,637535.737,71209.10874,20
+163075,344136.6237,635476.9792,72084.2047,20
+163076,342068.6824,637196.4177,72604.59948,20
+163077,341145.265,633431.1163,73710.72361,20
+163078,339860.3087,636070.5547,74380.98495,20
+163079,338294.6087,634378.6736,74922.94651,20
+163080,336578.0055,631538.412,75665.84093,21
+163081,581497.9573,1037164.363,65414.57416,21
+163082,573578.2654,1027734.874,61879.60832,21
+163083,571356.6506,1026842.507,61668.90127,21
+163084,568198.151,1024426.486,61805.54837,21
+163085,566368.6697,1023461.981,62149.78565,21
+163086,562471.1996,1021187.654,62017.26441,21
+163087,560537.6661,1018838.187,62458.76986,21
+163088,557642.0027,1019678.454,62886.04205,21
+163089,554850.593,1016301.767,62642.23796,21
+163090,553197.7994,1013955.894,63046.28553,21
+163091,549766.5852,1014526.778,63314.64644,21
+163092,548281.8275,1011605.263,63600.62182,21
+163093,543586.135,1010822.692,56002.26117,21
+163094,543230.6852,1009175.782,55182.83914,21
+163095,538744.5223,1007160.365,54780.39622,21
+163096,537874.2236,1006630.162,54650.49667,21
+163097,533785.2286,1004420.375,54069.76583,21
+163098,531242.0547,1003626.982,54568.67451,21
+163099,528780.843,1002284.168,53996.91451,21
+163100,526284.9739,1001224.036,53743.75205,21
+163101,522326.9785,998421.9439,54147.28418,21
+163102,520023.8318,998546.6461,53560.85753,21
+163103,517043.6687,996376.183,53562.20243,21
+163104,513418.1854,996573.2883,53779.54493,21
+163105,511950.751,993612.0234,52966.86809,21
+163106,509007.0836,992623.9464,53832.73696,21
+163107,505257.9681,992122.2859,52859.57301,21
+163108,503029.7151,990023.6342,53589.90001,21
+163109,500210.6268,989781.0024,53506.45532,21
+163110,497670.6057,986934.2304,53230.15313,21
+163111,496678.1522,986905.949,53676.64752,21
+163112,494527.0325,984334.1478,52867.64143,21
+163113,493097.5338,983490.8751,52898.19901,21
+163114,491697.5897,981302.2659,52681.116,21
+163115,490209.3662,978709.7081,52299.84882,21
+163116,489024.4133,976880.3853,52160.64667,21
+163117,486662.1841,974633.9023,52034.9445,21
+163118,486057.8891,971421.3949,51477.83947,21
+163119,483215.7274,971386.9932,51788.60738,21
+163120,483067.3764,968027.9732,51116.72531,21
+163121,481823.6254,966325.0782,50932.14829,21
+163122,478709.5035,966271.1591,50669.63927,21
+163123,477992.6263,961361.5174,50815.09782,21
+163124,476986.7578,962539.9428,50242.6301,21
+163125,474816.2755,959192.2273,50058.96251,21
+163126,473477.4861,956110.323,49901.29126,21
+163127,471528.0927,956191.389,49495.93452,21
+163128,470767.4193,953649.783,49510.02393,21
+163129,469273.7135,950970.43,49129.85828,21
+163130,467177.0436,950691.9334,48851.86062,21
+163131,466218.9193,945045.5967,48780.97174,21
+163132,463659.1772,943527.5649,48492.22165,21
+163133,463518.4271,941621.7755,47929.05066,21
+163134,461050.9534,940272.6292,48026.08938,21
+163135,459669.0781,936746.4793,47813.9505,21
+163136,458597.4437,935943.8445,47231.76637,21
+163137,456508.6167,933269.2521,47118.38622,21
+163138,455941.3801,931998.997,46997.4411,21
+163139,452841.9219,928750.4557,46540.70948,21
+163140,452994.8329,928723.531,47957.97357,21
+163141,352828.1793,718035.8039,1393.072989,21
+163142,347034.7077,709602.6005,1145.209499,21
+163143,343910.4335,706512.6939,1071.249786,21
+163144,340526.1035,702249.4424,1025.583955,21
+163145,337299.9684,698410.2952,915.9946097,21
+163146,334341.7605,695208.178,871.5376619,21
+163147,331156.6077,690682.2529,826.1575231,21
+163148,326277.2051,687655.8285,768.1422696,21
+163149,324403.0937,683847.34,768.1524669,21
+163150,320570.0729,680017.6157,736.2006153,21
+163151,317344.805,676622.3575,720.1805574,21
+163152,314503.5157,673193.41,688.0312245,21
+163153,311157.9898,669228.2163,671.909414,21
+163154,307997.3705,665286.6655,639.552516,21
+163155,304527.7831,662590.7972,639.5595894,21
+163156,301591.067,657980.3572,590.7460024,21
+163157,297998.0873,654949.8503,590.7529388,21
+163158,294890.3615,650859.713,574.4105076,21
+163159,291866.1726,647651.5122,525.1334629,21
+163160,288813.645,643549.8812,541.6063102,21
+163161,285517.1248,640048.0785,492.0805502,21
+163162,282897.4724,636413.1466,475.488153,21
+163163,279438.7239,631670.5372,458.85036,21
+163164,276765.3056,628160.4951,442.1659115,21
+163165,273893.5127,624125.5314,425.4334734,21
+163166,270789.508,619784.4047,391.8159473,21
+163167,268006.2545,617084.9931,374.9304648,21
+163168,264960.466,612658.1609,357.9904239,21
+163169,262240.559,608962.2693,340.9937955,21
+163170,259496.0155,605716.6626,306.8199634,21
+163171,253006.1629,602220.949,289.6393915,21
+163172,246843.5407,600522.3977,289.6408331,21
+163173,245502.9121,598178.0747,237.6804931,21
+163174,240937.2271,595206.1193,255.0748997,21
+163175,237537.7071,593653.2629,202.6548613,21
+163176,233978.1995,590378.947,202.6555669,21
+163177,230156.6915,589363.3633,185.010917,21
+163178,226914.9935,585845.6673,149.4220962,21
+163179,223399.959,584265.9458,140.4561531,21
+163180,219768.5782,581379.7734,113.3675783,21
+163181,216598.9814,580183.5422,113.3677987,21
+163182,212951.0679,577179.8143,76.72092922,21
+163183,209597.9689,575958.639,58.10784767,21
+163184,206285.9161,573296.2473,39.2343036,21
+163185,202863.5072,572085.58,29.67015941,21
+163186,199608.5083,569534.0443,0,21
+163187,196365.8158,566926.0732,0,21
+163188,193091.7097,565650.3995,0,21
+163189,189872.078,562840.3944,0,21
+163190,186595.705,560915.9014,0,21
+163191,183347.3322,558744.5693,0,21
+163192,180288.0187,556333.041,0,21
+163193,176869.0166,554559.5999,0,21
+163194,173753.845,552213.7242,0,21
+163195,170911.0725,549655.114,0,21
+163196,167238.5591,548330.0909,0,21
+163197,164471.3823,545536.6459,0,21
+163198,161419.208,543692.456,0,21
+163199,157661.7035,541589.1236,0,21
+163200,156780.8402,539538.2195,0,21
+163201,152446.9285,536407.0498,0,21
+163202,151056.1665,534074.9517,0,21
+163203,148424.2093,531029.3501,0,21
+163204,146723.6928,528385.564,0,21
+163205,144505.7386,525628.9365,0,21
+163206,142922.6158,522734.6314,0,21
+163207,140956.1408,520500.3021,0,21
+163208,138886.737,516740.7243,0,21
+163209,137232.8394,515063.7741,0,21
+163210,135286.2559,511584.2537,0,21
+163211,133725.4523,508627.7044,0,21
+163212,131562.2521,506691.7522,0,21
+163213,129892.9236,503031.4605,0,21
+163214,128232.1624,500447.908,0,21
+163215,126965.299,497836.0184,0,21
+163216,125478.6571,494899.9867,0,21
+163217,123914.6534,491704.8448,0,21
+163218,122549.6524,488914.0231,0,21
+163219,121289.3002,486227.0126,0,21
+163220,119623.3118,483287.0833,0,21
+163221,118221.9122,480040.0833,0,21
+163222,116701.8621,477269.9385,0,21
+163223,115466.5661,474497.5019,0,21
+163224,113768.7689,471116.9198,0,21
+163225,112694.4281,468675.398,0,21
+163226,110732.9655,465363.1397,0,21
+163227,109946.9066,462275.8423,0,21
+163228,107841.5597,459373.4366,0,21
+163229,106765.4946,456563.8543,0,21
+163230,105122.77,453031.1315,0,21
+163231,103927.6994,450000.8157,0,21
+163232,102169.266,446907.0202,0,21
+163233,101078.8666,443803.6871,0,21
+163234,99561.69736,440903.8939,0,21
+163235,98421.60109,437221.8559,0,21
+163236,96509.60116,434537.3485,0,21
+163237,95598.29842,431212.8619,0,21
+163238,93718.07112,427966.4324,0,21
+163239,92763.5592,424476.941,0,21
+163240,91081.2834,421728.6128,0,21
+163241,89637.23008,418389.9651,0,21
+163242,88412.43927,415019.4738,0,21
+163243,86872.55658,411482.3018,0,21
+163244,85174.35632,408762.8583,0,21
+163245,84040.5054,405026.7336,0,21
+163246,82565.08401,401583.9084,0,21
+163247,81008.86342,398630.4482,0,21
+163248,79737.65097,394806.8761,0,21
+163249,77935.71431,391703.9995,0,21
+163250,76681.07917,388744.817,0,21
+163251,75304.17035,384291.7725,0,21
+163252,73791.28052,381781.3775,0,21
+163253,71926.91918,377737.1641,0,21
+163254,71399.7765,374446.0757,0,21
+163255,69931.53928,371236.9456,0,21
+163256,69749.35674,367181.0873,0,21
+163257,68427.58764,364110.8531,0,21
+163258,68088.35849,360193.4088,0,21
+163259,66917.46217,357327.1507,0,21
+163260,66126.48548,353138.0864,0,21
+163261,64064.68207,349517.4643,0,21
+163262,62709.83148,346548.4057,0,21
+163263,61961.64048,343698.2516,0,21
+163264,60982.85479,341124.2334,0,21
+163265,59875.68752,338703.7302,0,21
+163266,58781.94105,335548.3912,0,21
+163267,57986.65588,333518.5265,0,21
+163268,56660.27413,330083.8322,0,21
+163269,55792.89069,327850.2868,0,21
+163270,54763.52085,324883.1547,0,21
+163271,53441.54896,322019.2821,0,21
+163272,52725.76383,319295.9191,0,21
+163273,51497.14269,316719.5014,0,21
+163274,51336.6007,313488.4515,0,21
+163275,50722.5999,310978.5963,0,21
+163276,50246.93218,307833.849,0,21
+163277,49755.38163,305403.2625,0,21
+163278,49216.61225,302085.8745,0,21
+163279,48828.40011,299291.4539,0,21
+163280,48254.3818,296616.2257,0,21
+163281,47802.03507,293448.4158,0,21
+163282,47315.15707,290464.4506,0,21
+163283,46906.96555,287778.6344,0,21
+163284,46191.66239,284782.2465,0,21
+163285,45820.84752,281455.0704,0,21
+163286,45529.26643,278875.5467,0,21
+163287,44693.70351,275660.838,0,21
+163288,44450.49143,272745.3808,0,21
+163289,43942.39527,269666.4453,0,21
+163290,43538.84998,266747.0513,0,21
+163291,43158.38456,265664.7962,0,21
+163292,42458.66078,264563.7189,0,21
+163293,42295.99774,262813.9758,0,21
+163294,41557.41718,261581.9977,0,21
+163295,41227.07901,259807.0427,0,21
+163296,40816.75328,258797.6224,0,21
+163297,40240.85794,257047.6131,0,21
+163298,39676.39658,255649.7706,0,21
+163299,39510.24318,254422.9914,0,21
+163300,38758.36447,252776.1215,0,21
+163301,38536.67178,251545.1472,0,21
+163302,37859.27496,250205.9399,0,21
+163303,37506.61753,248553.9569,0,21
+163304,36985.71561,247382.0699,0,21
+163305,36688.65037,245844.8072,0,21
+163306,36320.00398,244676.7299,0,21
+163307,35797.84522,242963.7235,0,21
+163308,35678.87652,241897.4389,0,21
+163309,35140.24265,240391.4724,0,21
+163310,35085.12258,239021.7937,0,21
+163311,33963.86136,237640.183,0,21
+163312,33841.11699,236205.0864,0,21
+163313,33434.09339,235325.6016,0,21
+163314,33436.88724,233349.8097,0,21
+163315,32744.17648,232513.9498,0,21
+163316,32552.85697,230813.1545,0,21
+163317,32532.28834,229814.0823,0,21
+163318,31739.43915,228218.8492,0,21
+163319,31995.65501,227118.5176,0,21
+163320,31247.03102,225680.5271,0,21
+163321,31994.81911,226510.5962,0,21
+163322,31405.09582,226364.8383,0,21
+163323,31495.19107,226135.0675,0,21
+163324,30959.65979,225560.1228,0,21
+163325,30526.63965,225254.3652,0,21
+163326,30556.58831,224549.7201,0,21
+163327,30064.9214,224334.667,0,21
+163328,29777.45764,223905.5106,0,21
+163329,29358.26942,223197.2371,0,21
+163330,29156.08252,223050.4666,0,21
+163331,29021.58691,222633.5715,0,21
+163332,28401.21484,222097.919,0,21
+163333,28255.00797,221303.5291,0,21
+163334,27948.21135,220594.7658,0,21
+163335,27506.0251,220671.2395,0,21
+163336,27436.36832,219959.9916,0,21
+163337,26952.21885,219536.2611,0,21
+163338,26604.72505,219531.9103,0,21
+163339,26330.17833,218770.2579,0,21
+163340,26131.31235,218692.5719,0,21
+163341,25681.07325,218092.013,0,21
+163342,25417.15524,217895.5293,0,21
+163343,25104.92836,217495.6538,0,21
+163344,24854.85678,217382.8246,0,21
+163345,24360.41905,217154.5306,0,21
+163346,24393.2139,216737.1247,0,21
+163347,23704.54344,216489.7065,0,21
+163348,23553.05543,216048.4658,0,21
+163349,23285.4256,215997.7896,0,21
+163350,22897.19914,215696.3904,0,21
+163351,22546.81924,214973.3213,0,21
+163352,22389.03585,214869.7493,0,21
+163353,22067.29265,214108.0933,0,21
+163354,21532.81108,213765.3052,0,21
+163355,21455.29562,213256.3868,0,21
+163356,21138.42948,212826.5224,0,21
+163357,20687.00067,212149.2191,0,21
+163358,20506.92913,211750.7169,0,21
+163359,20202.09537,211325.3672,0,21
+163360,20116.15196,210499.1627,0,21
+163361,19717.17611,210153.9377,0,21
+163362,19865.47138,209736.1173,0,21
+163363,19643.01182,208788.845,0,21
+163364,19389.79531,208712.5597,0,21
+163365,19367.97676,207808.3961,0,21
+163366,19030.24582,207319.2028,0,21
+163367,19102.31476,206776.6155,0,21
+163368,18751.93641,206411.7384,0,21
+163369,18719.2691,205554.6643,0,21
+163370,18580.48704,205264.0804,0,21
+163371,18343.9656,204549.629,0,21
+163372,18108.52692,203142.7277,0,21
+163373,18278.77492,202704.1516,0,21
+163374,17815.77905,202193.1219,0,21
+163375,17828.25231,201468.4783,0,21
+163376,17532.59542,200860.1363,0,21
+163377,17523.23746,200540.0169,0,21
+163378,17295.34002,199746.9755,0,21
+163379,17249.79596,199170.5575,0,21
+163380,17422.49118,198588.7091,0,21
+163381,21520.92813,211794.2389,0,21
+163382,21467.92338,210094.1333,0,21
+163383,21467.92502,208479.3376,0,21
+163384,21414.71099,206899.065,0,21
+163385,21230.25456,205106.8175,0,21
+163386,24542.91374,203655.402,0,21
+163387,22184.46285,201950.9088,0,21
+163388,22529.48568,200539.2489,0,21
+163389,22530.58869,198541.4976,0,21
+163390,22177.06676,197321.5361,0,21
+163391,22179.15815,196452.7006,0,21
+163392,21907.31724,194603.1213,0,21
+163393,21734.00718,192970.7983,0,21
+163394,21563.62339,191755.4427,0,21
+163395,21252.21235,189665.0264,0,21
+163396,21126.38658,188280.2855,0,21
+163397,21069.52895,186349.2499,0,21
+163398,20779.18633,184963.2286,0,21
+163399,20498.12198,183103.7097,0,21
+163400,20607.10057,181568.7255,0,21
+163401,20157.93499,179610.3045,0,21
+163402,20126.60908,178297.8756,0,21
+163403,19794.37896,176091.4455,0,21
+163404,19861.70455,174816.3131,0,21
+163405,19316.10402,172769.6025,0,21
+163406,19482.7735,171137.0348,0,21
+163407,19179.47929,169480.4589,0,21
+163408,18874.5368,167327.5032,0,21
+163409,18909.11214,166077.32,0,21
+163410,18723.25245,164001.0208,0,21
+163411,18746.92403,162343.8103,0,21
+163412,18476.58844,160569.6084,0,21
+163413,18488.68549,158649.5237,0,21
+163414,18442.52782,157251.3169,0,21
+163415,18218.19136,154954.1364,0,21
+163416,18195.73498,153680.9235,0,21
+163417,18171.84247,151385.937,0,21
+163418,17935.38394,150086.3668,0,21
+163419,17912.056,148096.2386,0,21
+163420,17900.69776,146294.6641,0,21
+163421,17662.68067,144652.8014,0,21
+163422,17734.85742,142841.9494,0,21
+163423,17604.18482,141074.7004,0,21
+163424,17389.39756,138957.6188,0,21
+163425,17365.19844,137199.2493,0,21
+163426,17318.30407,135483.7008,0,21
+163427,17306.15583,133514.8552,0,21
+163428,17078.83241,131844.1812,0,21
+163429,17054.47529,130098.6845,0,21
+163430,16838.10782,128788.4483,0,21
+163431,16982.9583,126949.4508,0,21
+163432,16693.41234,125307.4983,0,21
+163433,16729.92903,123557.8101,0,21
+163434,16536.46393,121775.435,0,21
+163435,16488.26542,120001.9779,0,21
+163436,16475.95689,118367.82,0,21
+163437,16427.171,116620.5625,0,21
+163438,16136.12259,114774.358,0,21
+163439,16184.11382,113222.28,0,21
+163440,16159.87566,111802.5526,0,21
+163441,11445.21127,103456.7994,0,21
+163442,11315.65546,102292.1833,0,21
+163443,11315.66034,101361.2642,0,21
+163444,11094.50893,100171.883,0,21
+163445,11185.42153,99320.21978,0,21
+163446,10950.60539,98192.67028,0,21
+163447,10950.60464,96927.88026,0,21
+163448,10832.86897,95873.23258,0,21
+163449,10819.58382,94896.56325,0,21
+163450,10610.04343,93696.13515,0,21
+163451,10688.26122,92584.07712,0,21
+163452,10570.02756,91556.37584,0,21
+163453,10359.69675,90290.10169,0,21
+163454,10556.63429,89584.35868,0,21
+163455,10213.97048,88060.36674,0,21
+163456,10319.43547,87348.83243,0,21
+163457,9988.952954,86143.53319,0,21
+163458,10067.78875,85142.37075,0,21
+163459,9735.989211,84229.2798,0,21
+163460,9722.399232,83019.31181,0,21
+163461,9375.003872,82069.29406,0,21
+163462,9361.325014,81148.87285,0,21
+163463,9105.614038,79972.76784,0,21
+163464,8890.239736,79162.82783,0,21
+163465,8754.584799,78011.38838,0,21
+163466,8496.171568,77224.81019,0,21
+163467,8387.461311,76065.59213,0,21
+163468,8031.963076,75163.90737,0,21
+163469,8003.87671,74053.25687,0,21
+163470,7660.057774,73055.15928,0,21
+163471,7645.93183,71990.22413,0,21
+163472,7382.269771,71379.10884,0,21
+163473,7396.50443,70167.37603,0,21
+163474,7020.153769,69395.71753,0,21
+163475,7117.250528,68391.82881,0,21
+163476,7160.174162,67384.4227,0,21
+163477,7353.690548,66560.45811,0,21
+163478,7117.250723,65483.65425,0,21
+163479,6894.099324,64596.84774,0,21
+163480,7102.867739,63953.25561,0,21
+163481,6865.295031,62861.48329,0,21
+163482,6738.854024,62341.45999,0,21
+163483,6850.834645,59665.56994,0,21
+163484,6724.354587,55720.9366,0,21
+163485,6724.354598,55872.13924,0,21
+163486,6597.558838,53982.20181,0,21
+163487,6821.795386,52110.73919,0,21
+163488,6582.978148,50884.61613,0,21
+163489,6597.55852,49322.7924,0,21
+163490,6792.593007,47705.73748,0,21
+163491,6582.978338,46282.95826,0,21
+163492,6807.215248,44531.71766,0,21
+163493,6680.61208,43249.31243,0,21
+163494,6792.592737,41485.27798,0,21
+163495,6807.214447,39836.12071,0,21
+163496,6792.592819,38455.97074,0,21
+163497,6904.302145,35287.80759,0,21
+163498,6904.302028,33318.86152,0,21
+163499,7015.743595,31455.31842,0,21
+163500,7015.743472,30100.03611,0,21
+163501,6651.220385,27946.21379,0,21
+163502,6748.470093,27147.05314,0,21
+163503,6651.240667,25768.60877,0,21
+163504,6733.676351,24735.49967,0,21
+163505,6748.471573,23589.17261,0,21
+163506,6621.696409,22591.0382,0,21
+163507,6733.67736,21315.97021,0,21
+163508,6494.60143,20330.11741,0,21
+163509,6718.83836,19318.46011,0,21
+163510,6494.602175,18055.89931,0,21
+163511,6577.038865,16253.34488,0,21
+163512,6464.783356,15552.09557,0,21
+163513,6337.267343,14088.77197,0,21
+163514,6224.450214,12978.98991,0,21
+163515,6194.339403,11906.09716,0,21
+163516,6194.339729,10222.94372,0,21
+163517,5823.825282,9129.698026,0,21
+163518,5823.825579,9019.207896,0,21
+163519,5549.64528,8866.417813,0,21
+163520,5435.030617,8765.100872,0,21
+163521,5173.965881,8632.692953,0,21
+163522,5042.850645,8468.623349,0,21
+163523,4662.797923,8170.837563,0,21
+163524,4498.428923,8277.413271,0,21
+163525,4145.290587,8140.951017,0,21
+163526,3859.831539,8142.461145,0,21
+163527,3588.317363,7977.184393,0,21
+163528,3193.593156,8099.00843,0,21
+163529,2794.103667,7826.463831,0,21
+163530,2372.107181,7950.169271,0,21
+163531,2229.927409,7782.922208,0,21
+163532,1523.396513,7799.568148,0,21
+163533,1113.290568,7618.227748,0,21
+163534,712.5869541,7619.786162,0,21
+163535,151.8670895,7466.615746,0,21
+163536,0,7439.453021,0,21
+163537,0,7453.058743,0,21
+163538,0,7134.943346,0,21
+163539,0,7272.206815,0,21
+163540,0,7106.057256,0,21
+163541,0,6966.750965,0,21
+163542,0,6801.354233,0,21
+163543,0,7393.914335,0,21
+163544,0,7092.415796,0,21
+163545,0,7328.191667,0,21
+163546,0,8080.800593,0,21
+163547,0,9168.384928,0,21
+163548,0,10426.0994,0,21
+163549,0,11389.47518,0,21
+163550,0,14494.47469,0,21
+163551,0,16488.97231,0,21
+163552,0,17525.426,0,21
+163553,0,18962.03928,0,21
+163554,0,20463.21157,0,21
+163555,0,21739.46547,0,21
+163556,0,23235.13273,0,21
+163557,0,24539.98989,0,21
+163558,0,25930.6437,0,21
+163559,0,27070.12847,0,21
+163560,0,28439.01871,0,21
+163561,0,28301.33478,0,21
+163562,0,29829.55403,0,21
+163563,0,31466.3441,0,21
+163564,0,33040.38041,0,21
+163565,0,34829.50203,0,21
+163566,0,36277.25144,0,21
+163567,0,40174.5833,0,21
+163568,0,42137.453,0,21
+163569,0,43028.53422,0,21
+163570,0,43324.14123,0,21
+163571,0,44194.22326,0,21
+163572,0,44465.71604,0,21
+163573,0,45030.43228,0,21
+163574,0,45432.13014,0,21
+163575,0,45839.45573,0,21
+163576,0,46303.99983,0,21
+163577,0,46964.3123,0,21
+163578,0,47272.95055,0,21
+163579,0,47860.96197,0,21
+163580,0,49036.9016,0,21
+163581,0,49619.10355,0,21
+163582,0,50390.01203,0,21
+163583,0,50817.91019,0,21
+163584,0,51560.69479,0,21
+163585,0,52052.01782,0,21
+163586,0,52939.44225,0,21
+163587,0,53534.95049,0,21
+163588,0,54615.17154,0,21
+163589,0,55631.20675,0,21
+163590,0,57287.75803,0,21
+163591,0,57744.94951,0,21
+163592,0,58211.22093,0,21
+163593,0,58993.16212,0,21
+163594,0,59629.19025,0,21
+163595,0,59929.22665,0,21
+163596,0,60736.84939,0,21
+163597,0,61161.47301,0,21
+163598,0,61797.38304,0,21
+163599,0,62273.79992,0,21
+163600,0,62552.68983,0,21
+163601,0,63276.72293,0,21
+163602,0,63634.48279,0,21
+163603,0,64187.66676,0,21
+163604,0,64450.82157,0,21
+163605,0,64910.45938,0,21
+163606,0,64925.78972,0,21
+163607,0,64910.08215,0,21
+163608,0,65473.80116,0,21
+163609,0,65740.96813,0,21
+163610,0,66130.05298,0,21
+163611,0,66418.92729,0,21
+163612,0,66646.93655,0,21
+163613,0,67052.14885,0,21
+163614,0,67116.28975,0,21
+163615,0,67563.0503,0,21
+163616,0,67730.47846,0,21
+163617,0,68171.69351,0,21
+163618,0,68074.15965,0,21
+163619,0,68612.35287,0,21
+163620,0,68802.65448,0,21
+163621,0,69006.80976,0,21
+163622,0,69736.95712,0,21
+163623,0,69718.08079,0,21
+163624,0,70519.32749,0,21
+163625,0,70606.49086,0,21
+163626,0,71258.91477,0,21
+163627,0,71233.22464,0,21
+163628,0,71960.32007,0,21
+163629,0,72156.67884,0,21
+163630,0,72534.7098,0,21
+163631,0,72884.05023,0,21
+163632,0,73132.22407,0,21
+163633,0,73753.76298,0,21
+163634,0,73852.95662,0,21
+163635,0,74184.18567,0,21
+163636,0,74582.45945,0,21
+163637,0,74716.1923,0,21
+163638,0,75164.18725,0,21
+163639,0,75549.77677,0,21
+163640,0,75549.8061,0,21
+163641,0,76122.11778,0,21
+163642,0,76216.72141,0,21
+163643,0,76790.78809,0,21
+163644,0,76599.01163,0,21
+163645,0,77297.54863,0,21
+163646,0,77230.44712,0,21
+163647,0,77657.55057,0,21
+163648,0,77861.44198,0,21
+163649,0,78409.64363,0,21
+163650,0,78853.0421,0,21
+163651,0,79399.32185,0,21
+163652,0,79690.42591,0,21
+163653,0,80217.68374,0,21
+163654,0,80617.9541,0,21
+163655,0,81309.42685,0,21
+163656,0,81526.33538,0,21
+163657,0,82209.26062,0,21
+163658,0,82586.75283,0,21
+163659,0,83228.75234,0,21
+163660,0,83464.76325,0,21
+163661,0,83970.72268,0,21
+163662,0,84612.86145,0,21
+163663,0,84912.62517,0,21
+163664,0,85581.47868,0,21
+163665,0,85986.20405,0,21
+163666,0,86557.58838,0,21
+163667,0,86947.57236,0,21
+163668,0,87637.80333,0,21
+163669,0,88038.41528,0,21
+163670,0,88456.30834,0,21
+163671,0,89113.37438,0,21
+163672,0,89531.3329,0,21
+163673,0,90079.60771,0,21
+163674,0,90604.99494,0,21
+163675,0,90869.32875,0,21
+163676,0,91537.36318,0,21
+163677,0,91937.42968,0,21
+163678,0,92488.19138,0,21
+163679,0,92988.3869,0,21
+163680,0,93413.87563,0,21
+163681,0,106196.2851,0,21
+163682,0,107147.4566,0,21
+163683,0,107878.9011,0,21
+163684,0,108668.9767,0,21
+163685,0,119805.4287,0,21
+163686,0,119563.2332,0,21
+163687,0,119046.7235,0,21
+163688,0,121508.1962,0,21
+163689,0,122619.0681,0,21
+163690,0,123819.1111,0,21
+163691,0,125044.3377,0,21
+163692,0,126116.1638,0,21
+163693,0,127420.1964,0,21
+163694,0,128488.9778,0,21
+163695,0,129556.7868,0,21
+163696,0,130484.216,0,21
+163697,0,131618.667,0,21
+163698,0,132280.5168,0,21
+163699,0,133583.3829,0,21
+163700,0,134170.7497,0,21
+163701,0,135253.3976,0,21
+163702,0,136220.4896,0,21
+163703,0,136825.962,0,21
+163704,0,138024.9373,0,21
+163705,0,138239.1462,0,21
+163706,0,139136.6388,0,21
+163707,0,139912.6062,0,21
+163708,0,140471.9986,0,21
+163709,0,141311.3727,0,21
+163710,0,142156.5445,0,21
+163711,0,142741.1536,0,21
+163712,0,143689.6875,0,21
+163713,0,144413.053,0,21
+163714,0,145139.9185,0,21
+163715,0,145805.9366,0,21
+163716,0,146495.7057,0,21
+163717,0,147525.2081,0,21
+163718,0,147994.7061,0,21
+163719,0,148877.3875,0,21
+163720,0,149383.5255,0,21
+163721,0,150836.3462,0,21
+163722,0,151369.7705,0,21
+163723,0,152280.7732,0,21
+163724,0,152955.1809,0,21
+163725,0,153820.1917,0,21
+163726,0,154562.4656,0,21
+163727,0,155496.995,0,21
+163728,1123.447861,155951.0594,0,21
+163729,1646.923415,157094.3825,0,21
+163730,1517.434043,157518.4852,0,21
+163731,1903.515224,158487.7794,0,21
+163732,2157.22605,159292.9703,0,21
+163733,2408.343882,159754.4017,0,21
+163734,2657.096355,160920.8185,0,21
+163735,2903.668072,161404.0718,0,21
+163736,3148.212395,162278.1135,0,21
+163737,3390.858146,162785.7616,0,21
+163738,3511.504391,163876.0987,0,21
+163739,3870.88163,164517.3974,0,21
+163740,3989.856683,165059.3106,0,21
+163741,7406.143313,175698.9683,0,21
+163742,7842.77515,177179.1399,0,21
+163743,8059.735173,179238.498,0,21
+163744,8275.787223,183206.5768,0,21
+163745,8598.179048,185972.1327,0,21
+163746,8705.203567,185782.7097,0,21
+163747,9024.9773,187683.9621,0,21
+163748,9131.145196,189140.3077,0,21
+163749,11255.28715,190566.2345,0,21
+163750,13673.12053,191865.6459,0,21
+163751,12491.58556,193197.5429,0,21
+163752,13555.07193,194701.3133,0,21
+163753,13960.81287,195771.0788,0,21
+163754,14586.98645,197307.283,0,21
+163755,15002.67572,198661.8324,0,21
+163756,15466.12315,199731.0154,0,21
+163757,16064.34122,201112.0436,0,21
+163758,16655.13024,202559.0024,0,21
+163759,16941.35064,203528.9745,0,21
+163760,17577.05143,204874.7149,0,21
+163761,18003.11757,206122.6286,0,21
+163762,18349.01578,207360.8036,0,21
+163763,18999.94696,208594.2649,0,21
+163764,19279.68768,209868.7191,0,21
+163765,19764.85945,210915.4024,0,21
+163766,20253.26253,212143.5417,0,21
+163767,20593.19245,213400.3162,0,21
+163768,21121.35226,214422.8255,0,21
+163769,21528.77711,215713.3407,0,21
+163770,21867.34146,216856.722,0,21
+163771,22372.94927,222189.62,0,21
+163772,22976.03723,222326.9092,0,21
+163773,23027.50108,224652.1957,0,21
+163774,23823.63888,226366.6617,0,21
+163775,24065.90703,228549.5163,0,21
+163776,24541.5227,230228.1387,0,21
+163777,24699.38611,232015.8232,0,21
+163778,25291.58785,235142.276,0,21
+163779,25687.46576,236535.4451,0,21
+163780,25737.36049,239039.6274,0,21
+163781,26217.77775,240331.4093,0,21
+163782,26728.26734,242551.4507,0,21
+163783,26590.25671,244247.1134,0,21
+163784,27420.3227,245684.0925,0,21
+163785,27395.28388,248139.0206,0,21
+163786,27777.63391,249450.9493,0,21
+163787,28177.43352,251654.5163,0,21
+163788,28388.40586,253078.8763,0,21
+163789,28625.91464,254975.9719,0,21
+163790,29093.4565,256717.0662,0,21
+163791,29409.06282,258342.5594,0,21
+163792,29422.1609,260280.184,0,21
+163793,30037.74102,261973.5816,0,21
+163794,30200.49568,263283.9418,0,21
+163795,30524.02572,265309.5138,0,21
+163796,30838.19866,266936.0014,0,21
+163797,31112.93244,268738.0231,0,21
+163798,31446.86756,270174.594,0,21
+163799,31699.17104,272036.3834,0,21
+163800,32044.27642,273854.0207,0,21
+163801,32407.25719,276255.1708,0,21
+163802,33077.71701,279063.3583,0,21
+163803,33360.25065,281622.9733,0,21
+163804,33829.94024,284485.1007,0,21
+163805,34461.99777,286739.3834,0,21
+163806,34828.66256,289381.4909,0,21
+163807,35240.86665,292092.4816,0,21
+163808,35978.42034,295121.544,0,21
+163809,36052.8765,297255.7443,0,21
+163810,36959.40393,299844.4837,0,21
+163811,37400.19587,303135.5397,0,21
+163812,38181.33801,305177.8231,0,21
+163813,38513.61588,308780.7262,0,21
+163814,39183.10957,311801.8323,0,21
+163815,39458.19305,314881.7886,0,21
+163816,40031.54101,317032.092,0,21
+163817,40578.8569,320382.2427,0,21
+163818,40978.47913,323163.0099,0,21
+163819,41535.1038,325859.1966,0,21
+163820,42068.00754,328874.4283,0,21
+163821,42287.52271,331169.8415,0,21
+163822,42877.88765,334484.5232,0,21
+163823,43515.27189,337308.4285,0,21
+163824,43792.70313,348382.827,0,21
+163825,44308.86625,348001.2591,0,21
+163826,44683.17835,353511.8278,0,21
+163827,45321.96921,357753.5914,0,21
+163828,46078.33127,361928.3804,0,21
+163829,46613.66907,365722.0408,0,21
+163830,47258.28133,369824.0527,0,21
+163831,47503.58586,373397.3994,0,21
+163832,48221.23431,376498.2597,0,21
+163833,48399.10847,379336.4293,0,21
+163834,49127.50703,382963.0684,0,21
+163835,49606.04624,385476.0897,0,21
+163836,49833.04688,387986.7869,0,21
+163837,50822.35083,391968.5842,0,21
+163838,50861.31639,393950.8687,0,21
+163839,51519.10665,397481.3644,0,21
+163840,52103.50404,399912.7057,0,21
+163841,52365.77885,402568.5419,0,21
+163842,53104.259,405744.8977,0,21
+163843,53409.69256,408341.4094,0,21
+163844,53792.92677,410846.7464,0,21
+163845,54586.62652,413965.3092,0,21
+163846,54777.49407,416185.173,0,21
+163847,55462.32014,419134.652,0,21
+163848,55638.48616,421709.6622,0,21
+163849,56435.12839,424465.5011,0,21
+163850,56810.28034,425867.8131,0,21
+163851,56972.52042,428307.9112,0,21
+163852,58230.92073,431124.276,0,21
+163853,58374.50672,433147.8859,0,21
+163854,59064.06617,435750.4442,0,21
+163855,59666.31294,438462.7906,0,21
+163856,60015.69257,440626.7752,0,21
+163857,60493.71451,443328.0633,0,21
+163858,60966.26849,445696.8602,0,21
+163859,61596.20719,447758.5585,0,21
+163860,61930.71532,450577.9851,0,21
+163861,63497.04632,455317.9646,0,21
+163862,64991.32085,458159.2547,0,21
+163863,65497.26126,460142.6865,0,21
+163864,65952.44686,462698.7672,0,21
+163865,66106.4518,464488.4868,0,21
+163866,66746.54635,466116.6723,0,21
+163867,67006.16543,469365.0641,0,21
+163868,67724.98256,470231.8404,0,21
+163869,67825.68008,473362.9437,0,21
+163870,68683.22983,474269.3852,0,21
+163871,68517.70692,476834.3898,0,21
+163872,69244.53744,478946.9852,0,21
+163873,69492.9647,480565.0155,0,21
+163874,69706.39621,482448.6744,0,21
+163875,70302.25036,484908.5924,0,21
+163876,70395.04362,486493.2122,0,21
+163877,70934.11084,488118.2072,0,21
+163878,71181.97782,490112.8713,0,21
+163879,71471.61836,492536.6221,0,21
+163880,71897.48557,493553.2276,0,21
+163881,72138.68165,495857.5733,0,21
+163882,72448.74833,497753.8464,0,21
+163883,72823.09411,499377.7259,0,21
+163884,72996.0517,501326.9877,0,21
+163885,73478.53106,502708.936,0,21
+163886,73693.38781,504716.5629,0,21
+163887,73889.43796,506620.1013,0,21
+163888,74466.27403,508265.15,0,21
+163889,74435.54027,509867.8031,0,21
+163890,74873.35898,511177.4078,0,21
+163891,75918.21578,513818.1187,0,21
+163892,78302.31678,515089.6722,0,21
+163893,77448.49815,517680.8009,0,21
+163894,78667.47915,519399.0913,0,21
+163895,79074.14998,521197.1701,0,21
+163896,79543.64278,523795.2992,0,21
+163897,80631.04651,525376.7714,0,21
+163898,80879.39831,529124.2174,0,21
+163899,81892.87781,535637.5164,0,21
+163900,82076.51839,536154.0177,0,21
+163901,82887.30149,538440.8029,0,21
+163902,83336.01439,542245.444,0,21
+163903,84059.83449,543487.1859,0,21
+163904,84573.95603,547782.8102,0,21
+163905,85321.24306,547544.7098,158.9837311,21
+163906,85857.91238,552920.7263,1890.63398,21
+163907,86407.58468,553372.0904,1188.480122,21
+163908,87357.55466,558220.6151,1471.641118,21
+163909,87511.49951,558292.7753,1890.782873,21
+163910,88461.94948,560894.7382,2029.25589,21
+163911,89002.90567,562247.5988,2304.439409,21
+163912,89431.70965,565878.0398,2304.530551,21
+163913,90349.32271,567397.1161,2713.435606,21
+163914,90582.29359,570341.5066,2848.892672,21
+163915,94127.74995,572946.5114,2983.927141,21
+163916,94205.57968,575616.423,3118.556071,21
+163917,95323.5978,578698.7408,3519.758321,21
+163918,96030.96992,580674.0668,3519.970907,21
+163919,97515.11676,583348.8518,3785.684653,21
+163920,97903.01493,586423.9431,3918.155646,21
+163921,99129.15959,587499.4404,4181.866421,21
+163922,100224.2227,589953.4552,4444.326418,21
+163923,100977.0951,592412.8518,4444.664979,21
+163924,101911.7592,592459.8109,4835.98611,21
+163925,102989.4652,594464.3333,4966.133105,21
+163926,103751.0698,595955.9092,5225.21838,21
+163927,104567.7448,597769.627,5225.685599,21
+163928,105695.7413,597828.5152,5740.310173,21
+163929,106492.7379,601492.6005,5612.716915,21
+163930,107437.2544,601505.8159,5996.99841,21
+163931,108380.1642,602851.0344,6252.219903,21
+163932,108913.2551,604980.5157,6252.887058,21
+163933,110115.2785,605724.7651,6633.753603,21
+163934,110760.8658,608014.1069,6760.786493,21
+163935,111706.4454,608841.6104,6887.636017,21
+163936,112623.4304,616442.6589,7139.946698,21
+163937,113240.3562,619823.6854,7391.475119,21
+163938,114079.8724,621281.8424,7517.430218,21
+163939,115090.1651,622578.0757,7643.223121,21
+163940,115720.5799,624778.5119,8017.526289,21
+163941,116566.8766,626137.7959,8296.050485,21
+163942,117330.1295,627926.4096,8438.119102,21
+163943,118060.1461,629254.0494,8749.343039,21
+163944,119060.5374,630618.1698,8918.196987,21
+163945,119394.7598,632715.6395,9183.226991,21
+163946,120482.502,633227.0257,9342.379009,21
+163947,121238.9319,635801.1317,9623.617678,21
+163948,122046.5061,636115.6703,9904.030812,21
+163949,122495.3095,638391.9468,9931.377236,21
+163950,123404.2306,639849.8094,10202.39805,21
+163951,124237.8723,639842.6226,10619.41174,21
+163952,124957.4877,643001.388,10621.3066,21
+163953,125634.7233,643070.8615,10794.81563,21
+163954,126176.7995,645815.4822,11313.31983,21
+163955,126970.3285,644819.5898,11211.55051,21
+163956,127678.8236,647389.9962,11608.09859,21
+163957,128536.4639,649083.4611,11643.38215,21
+163958,129155.0675,649609.6566,12158.17018,21
+163959,129858.8683,651447.0954,12057.33043,21
+163960,130399.0164,652213.6776,12451.1424,21
+163961,131165.0496,652754.3445,12621.78899,21
+163962,131859.2936,655349.8434,12743.5957,21
+163963,132754.8917,656150.7443,13151.44869,21
+163964,133061.0693,657768.0984,13170.42527,21
+163965,133814.7869,660706.2279,13560.90717,21
+163966,134623.7441,660321.9306,13595.96658,21
+163967,135210.5337,663195.8841,13867.29554,21
+163968,135740.0651,663440.7415,14122.23151,21
+163969,136511.0362,664715.6105,14275.0074,21
+163970,137013.5054,665971.9852,14427.635,21
+163971,137974.075,666194.9917,14814.73692,21
+163972,138187.6586,668778.168,14951.20577,21
+163973,139015.2668,668646.1048,14986.26799,21
+163974,140062.1854,670744.2873,15488.66234,21
+163975,140972.0583,670846.2053,15523.79048,21
+163976,141966.6987,672288.4747,15659.87439,21
+163977,143188.2042,673748.3816,16043.98744,21
+163978,143942.4216,674624.2582,16079.16103,21
+163979,144857.1426,675080.2174,16462.31815,21
+163980,146163.3974,677001.0747,16597.92464,21
+163981,0,0,0,21
+163982,0,0,0,21
+163983,0,0,0,21
+163984,0,0,0,21
+163985,0,0,0,21
+163986,0,0,1001105.812,21
+163987,339923.5669,0,0,21
+163988,0,0,0,21
+163989,0,368238.1661,0,21
+163990,0,0,0,21
+163991,0,0,0,21
+163992,0,0,0,21
+163993,0,0,0,21
+163994,0,0,0,21
+163995,0,0,0,21
+163996,0,0,0,21
+163997,0,0,0,21
+163998,0,0,0,21
+163999,0,0,0,21
+164000,0,0,0,21
+164001,0,0,0,21
+164002,0,0,0,21
+164003,0,0,0,21
+164004,0,0,0,21
+164005,0,0,0,21
+164006,0,0,0,21
+164007,0,0,0,21
+164008,0,0,0,21
+164009,0,0,0,21
+164010,0,0,0,21
+164011,0,0,0,21
+164012,0,0,0,21
+164013,0,0,0,21
+164014,0,0,0,21
+164015,0,0,0,21
+164016,0,0,0,21
+164017,0,0,0,21
+164018,0,0,0,21
+164019,0,0,0,21
+164020,0,0,0,21
+164021,0,0,973431.8796,21
+164022,0,0,0,21
+164023,339938.9117,0,0,21
+164024,0,368231.8372,0,21
+164025,0,0,0,21
+164026,0,0,0,21
+164027,0,0,0,21
+164028,0,0,0,21
+164029,0,0,0,21
+164030,0,0,0,21
+164031,0,0,0,21
+164032,0,0,0,21
+164033,0,0,0,21
+164034,0,0,0,21
+164035,0,0,0,21
+164036,0,0,0,21
+164037,0,0,0,21
+164038,0,0,0,21
+164039,0,0,0,21
+164040,0,0,0,15.6
+164041,0,0,0,15.6
+164042,0,0,0,15.6
+164043,0,0,0,15.6
+164044,0,0,0,15.6
+164045,0,0,0,15.6
+164046,0,0,0,15.6
+164047,0,0,0,15.6
+164048,0,0,0,15.6
+164049,0,0,0,15.6
+164050,0,0,0,15.6
+164051,0,0,0,15.6
+164052,0,0,0,15.6
+164053,0,0,0,15.6
+164054,0,0,0,15.6
+164055,0,0,0,15.6
+164056,0,0,947908.213,15.6
+164057,0,0,0,15.6
+164058,0,0,0,15.6
+164059,339945.8479,0,0,15.6
+164060,0,368224.0937,0,15.6
+164061,0,0,0,15.6
+164062,0,0,0,15.6
+164063,0,0,0,15.6
+164064,0,0,0,15.6
+164065,0,0,0,15.6
+164066,0,0,0,15.6
+164067,0,0,0,15.6
+164068,0,0,0,15.6
+164069,0,0,0,15.6
+164070,0,0,0,15.6
+164071,0,0,0,15.6
+164072,0,0,0,15.6
+164073,0,0,0,15.6
+164074,0,0,0,15.6
+164075,0,0,0,15.6
+164076,0,0,0,15.6
+164077,0,0,0,15.6
+164078,0,0,0,15.6
+164079,0,0,0,15.6
+164080,0,0,0,15.6
+164081,0,0,0,15.6
+164082,0,0,0,15.6
+164083,0,0,0,15.6
+164084,0,0,0,15.6
+164085,0,0,0,15.6
+164086,0,0,0,15.6
+164087,0,0,0,15.6
+164088,0,0,0,15.6
+164089,0,0,0,15.6
+164090,0,0,0,15.6
+164091,0,0,925125.8934,15.6
+164092,0,0,0,15.6
+164093,0,0,0,15.6
+164094,0,0,0,15.6
+164095,339946.2183,0,0,15.6
+164096,0,368214.0061,0,15.6
+164097,0,0,0,15.6
+164098,0,0,0,15.6
+164099,0,0,0,15.6
+164100,0,0,0,15.6
+164101,0,0,0,15.6
+164102,0,0,0,15.6
+164103,0,0,0,15.6
+164104,0,0,0,15.6
+164105,0,0,0,15.6
+164106,0,0,0,15.6
+164107,0,0,0,15.6
+164108,0,0,0,15.6
+164109,0,0,0,15.6
+164110,0,0,0,15.6
+164111,0,0,0,15.6
+164112,0,0,0,15.6
+164113,0,0,0,15.6
+164114,0,0,0,15.6
+164115,0,0,0,15.6
+164116,0,0,0,15.6
+164117,0,0,0,15.6
+164118,0,0,0,15.6
+164119,0,0,0,15.6
+164120,0,0,0,15.6
+164121,0,0,0,15.6
+164122,0,0,0,15.6
+164123,0,0,0,15.6
+164124,0,0,0,15.6
+164125,0,0,0,15.6
+164126,0,0,904164.6031,15.6
+164127,0,0,0,15.6
+164128,0,0,0,15.6
+164129,0,0,0,15.6
+164130,0,0,0,15.6
+164131,339962.5529,0,0,15.6
+164132,0,368205.9675,0,15.6
+164133,0,0,0,15.6
+164134,0,0,0,15.6
+164135,0,0,0,15.6
+164136,0,0,0,15.6
+164137,0,0,0,15.6
+164138,0,0,0,15.6
+164139,0,0,0,15.6
+164140,0,0,0,15.6
+164141,0,0,0,15.6
+164142,0,28058.80079,0,15.6
+164143,0,0,0,15.6
+164144,0,1386.431454,0,15.6
+164145,0,10202.94924,0,15.6
+164146,0,9101.339958,0,15.6
+164147,0,8486.790581,0,15.6
+164148,0,8684.441967,0,15.6
+164149,0,9066.460685,0,15.6
+164150,0,9095.543168,0,15.6
+164151,0,9273.202706,0,15.6
+164152,0,9350.196092,0,15.6
+164153,0,9481.268162,0,15.6
+164154,0,9577.67693,0,15.6
+164155,0,9707.861639,0,15.6
+164156,0,9803.986971,0,15.6
+164157,0,9864.656831,0,15.6
+164158,0,10048.13508,0,15.6
+164159,0,10088.99183,0,15.6
+164160,0,10196.20683,0,15.6
+164161,0,10348.72343,883600.0084,15.6
+164162,0,10368.24243,0,15.6
+164163,0,10485.42204,0,15.6
+164164,0,10588.7501,0,15.6
+164165,0,10675.56258,0,15.6
+164166,0,10720.02037,0,15.6
+164167,339983.7667,10864.34062,0,15.6
+164168,0,379119.2049,0,15.6
+164169,0,11006.98887,0,15.6
+164170,0,11111.32943,0,15.6
+164171,0,11157.76854,0,15.6
+164172,0,0,0,15.6
+164173,0,0,0,15.6
+164174,0,0,0,15.6
+164175,0,0,0,15.6
+164176,0,0,0,15.6
+164177,0,0,0,15.6
+164178,0,38668.75837,0,15.6
+164179,0,3532.330785,0,15.6
+164180,0,6354.127023,0,15.6
+164181,0,15066.13481,0,15.6
+164182,0,12360.18181,0,15.6
+164183,0,11863.68308,0,15.6
+164184,0,12275.39781,0,15.6
+164185,0,12346.93903,0,15.6
+164186,0,12430.71009,0,15.6
+164187,0,12498.77404,0,15.6
+164188,0,12557.35853,0,15.6
+164189,0,12657.59585,0,15.6
+164190,0,12694.30736,0,15.6
+164191,0,12774.8592,0,15.6
+164192,0,12847.82208,0,15.6
+164193,0,12941.23709,0,15.6
+164194,0,12973.02619,0,15.6
+164195,0,13046.36339,0,15.6
+164196,0,13137.81455,865591.8084,15.6
+164197,0,13182.1463,0,15.6
+164198,0,13224.56846,0,15.6
+164199,0,13350.0899,0,15.6
+164200,0,13362.14275,0,15.6
+164201,0,13470.02915,0,15.6
+164202,0,13469.51686,0,15.6
+164203,340003.2488,13616.66713,0,15.6
+164204,0,381770.9239,0,15.6
+164205,0,13739.246,0,15.6
+164206,0,13768.71511,0,15.6
+164207,0,13798.12873,0,15.6
+164208,0,0,0,15.6
+164209,0,0,0,15.6
+164210,0,0,0,15.6
+164211,0,0,0,15.6
+164212,0,0,0,15.6
+164213,0,51892.80944,0,15.6
+164214,0,671.4043055,0,15.6
+164215,0,7852.249586,0,15.6
+164216,0,20591.41165,0,15.6
+164217,0,13243.44078,0,15.6
+164218,0,14531.73478,0,15.6
+164219,0,14601.76717,0,15.6
+164220,0,14651.26339,0,15.6
+164221,0,14676.3325,0,15.6
+164222,0,14728.58514,0,15.6
+164223,0,14760.56717,0,15.6
+164224,0,14809.14127,0,15.6
+164225,0,14866.22287,0,15.6
+164226,0,14874.05236,0,15.6
+164227,0,14956.23146,0,15.6
+164228,0,14953.97122,0,15.6
+164229,0,15023.15131,0,15.6
+164230,0,15056.81252,0,15.6
+164231,0,15084.40031,849632.2261,15.6
+164232,0,15128.71804,0,15.6
+164233,0,15148.80279,0,15.6
+164234,0,15209.05901,0,15.6
+164235,0,15269.37534,0,15.6
+164236,0,15258.65227,0,15.6
+164237,0,15322.73239,0,15.6
+164238,0,15368.13107,0,15.6
+164239,0,15367.65711,0,15.6
+164240,340014.2387,383633.0681,0,15.6
+164241,0,15432.06628,0,15.6
+164242,0,15505.64828,0,15.6
+164243,0,0,0,15.6
+164244,0,0,0,15.6
+164245,0,0,0,15.6
+164246,0,0,0,15.6
+164247,0,56598.67487,0,15.6
+164248,0,102.8802288,0,15.6
+164249,0,9828.234082,0,15.6
+164250,0,21886.78566,0,15.6
+164251,0,14640.07679,0,15.6
+164252,0,15937.00818,0,15.6
+164253,0,15928.52951,0,15.6
+164254,0,15959.42668,0,15.6
+164255,0,16013.87861,0,15.6
+164256,0,15989.23043,0,15.6
+164257,0,16111.68849,0,15.6
+164258,0,16056.30297,0,15.6
+164259,0,16111.68419,0,15.6
+164260,0,16141.37038,0,15.6
+164261,0,16166.72255,0,15.6
+164262,0,16200.84085,0,15.6
+164263,0,16216.54013,0,15.6
+164264,0,16255.76012,0,15.6
+164265,0,16257.38426,0,15.6
+164266,0,16340.34363,0,15.6
+164267,0,16305.46864,834331.0255,15.6
+164268,0,16318.09744,0,15.6
+164269,0,16454.1361,0,15.6
+164270,0,16355.05237,0,15.6
+164271,0,16466.70785,0,15.6
+164272,0,16450.38747,0,15.6
+164273,0,16490.98122,0,15.6
+164274,0,16516.11263,0,15.6
+164275,0,16545.44374,0,15.6
+164276,0,384718.2448,0,15.6
+164277,340016.2976,0,0,15.6
+164278,0,0,0,15.6
+164279,0,0,0,15.6
+164280,0,0,0,15.6
+164281,0,61844.06644,0,15.6
+164282,0,0,0,15.6
+164283,0,10480.03039,0,15.6
+164284,0,23019.19049,0,15.6
+164285,0,15572.98535,0,15.6
+164286,0,16720.20336,0,15.6
+164287,0,16778.80394,0,15.6
+164288,0,16753.81266,0,15.6
+164289,0,16791.26614,0,15.6
+164290,0,16744.24725,0,15.6
+164291,0,16749.5776,0,15.6
+164292,0,16717.14551,0,15.6
+164293,0,16749.57268,0,15.6
+164294,0,16727.50666,0,15.6
+164295,0,16702.51563,0,15.6
+164296,0,16727.50181,0,15.6
+164297,0,16698.16658,0,15.6
+164298,0,16702.50837,0,15.6
+164299,0,16676.03906,0,15.6
+164300,0,16673.17077,0,15.6
+164301,0,16676.03425,0,15.6
+164302,0,16673.16595,0,15.6
+164303,0,16646.57913,820696.6743,15.6
+164304,0,16651.03845,0,15.6
+164305,0,16621.58577,0,15.6
+164306,0,16661.31179,0,15.6
+164307,0,16621.58096,0,15.6
+164308,0,16621.57855,0,15.6
+164309,0,16599.39404,0,15.6
+164310,0,16604.50845,0,15.6
+164311,0,0,0,15.6
+164312,0,368155.035,0,15.6
+164313,0,0,0,15.6
+164314,340016.9986,0,0,15.6
+164315,0,62397.19818,0,15.6
+164316,0,0,0,15.6
+164317,0,9470.658569,0,15.6
+164318,0,23347.18029,0,15.6
+164319,0,15250.25507,0,15.6
+164320,0,16554.97468,0,15.6
+164321,0,16492.81091,0,15.6
+164322,0,16567.47265,0,15.6
+164323,0,16505.34519,0,15.6
+164324,0,16502.97533,0,15.6
+164325,0,16492.80095,0,15.6
+164326,0,16488.05179,0,15.6
+164327,0,16459.65079,0,15.6
+164328,0,16465.74522,0,15.6
+164329,0,16462.9841,0,15.6
+164330,0,16389.19178,0,15.6
+164331,0,16488.03995,0,15.6
+164332,0,16363.25203,0,15.6
+164333,0,16421.56803,0,15.6
+164334,0,16390.80215,0,15.6
+164335,0,16359.19162,0,15.6
+164336,0,16410.73802,0,15.6
+164337,0,16296.65184,0,15.6
+164338,0,16388.37123,808817.0956,15.6
+164339,0,16329.07202,0,15.6
+164340,0,16274.22214,0,15.6
+164341,0,1079818.351,0,15.6
+164342,0,302453.2243,0,15.6
+164343,0,120144.6978,0,15.6
+164344,0,327106.4542,0,15.6
+164345,0,237690.0738,0,15.6
+164346,0,226917.58,0,15.6
+164347,0,340112.3088,0,15.6
+164348,0,254025.8766,0,15.6
+164349,0,631108.9178,0,15.6
+164350,0,274820.489,0,15.6
+164351,340017.273,270206.0573,0,15.6
+164352,0,270615.3962,0,15.6
+164353,0,271414.3339,0,15.6
+164354,0,271878.8627,0,15.6
+164355,0,272404.1493,0,15.6
+164356,0,273212.19,0,15.6
+164357,0,273721.8172,0,15.6
+164358,0,274435.6757,0,15.6
+164359,0,275025.4434,0,15.6
+164360,0,276225.422,0,15.6
+164361,0,276120.5427,0,15.6
+164362,0,277470.2959,0,15.6
+164363,0,277864.2416,0,15.6
+164364,0,279102.8355,0,15.6
+164365,0,279610.5899,0,15.6
+164366,0,280562.4991,0,15.6
+164367,0,281359.2691,0,15.6
+164368,0,282381.3609,0,15.6
+164369,0,283455.8629,0,15.6
+164370,0,284033.2635,0,15.6
+164371,0,40599.33653,0,15.6
+164372,0,41225.95558,797440.7586,15.6
+164373,0,41112.87288,0,15.6
+164374,0,731965.5588,0,15.6
+164375,0,123838.7088,0,15.6
+164376,0,284531.7456,0,15.6
+164377,0,275605.5203,0,15.6
+164378,0,249708.9103,0,15.6
+164379,0,360797.1325,0,15.6
+164380,0,278035.6818,0,15.6
+164381,0,294162.6641,0,15.6
+164382,0,298634.7964,0,15.6
+164383,0,297447.852,0,15.6
+164384,0,298217.4025,0,15.6
+164385,0,299182.9773,0,15.6
+164386,340017.9493,667106.8631,0,15.6
+164387,0,299063.9872,0,15.6
+164388,0,300731.693,0,15.6
+164389,0,301695.2917,0,15.6
+164390,0,301779.3184,0,15.6
+164391,0,303673.1613,0,15.6
+164392,0,304424.9779,0,15.6
+164393,0,304641.3766,0,15.6
+164394,0,306785.5054,0,15.6
+164395,0,307204.0703,0,15.6
+164396,0,308099.6325,0,15.6
+164397,0,309346.425,0,15.6
+164398,0,309973.4642,0,15.6
+164399,0,311363.0676,0,15.6
+164400,0,312160.2847,0,17.8
+164401,495628.7389,1425563.216,454354.4665,17.8
+164402,180795.7606,1364335.433,18521.15952,17.8
+164403,144999.6983,422571.6428,18009.20218,17.8
+164404,198568.3908,90932.50323,25100.31791,17.8
+164405,190878.7074,1137368.976,81193.01768,17.8
+164406,182113.4959,499859.5185,835600.0111,17.8
+164407,182946.2235,696921.3155,52087.96077,17.8
+164408,182267.9861,655647.3527,54421.95617,17.8
+164409,182534.5887,465973.8054,54824.29145,17.8
+164410,181486.3681,675016.1802,55151.73422,17.8
+164411,182073.5535,595633.9572,55863.32039,17.8
+164412,180962.8135,600025.1803,56137.70446,17.8
+164413,181308.5844,603710.9634,59494.12783,17.8
+164414,180912.8743,600538.536,58720.93953,17.8
+164415,180270.908,599314.6854,59839.18676,17.8
+164416,180585.5348,598985.3183,60373.81095,17.8
+164417,180247.6022,597741.4063,61478.30207,17.8
+164418,179614.6024,596314.5446,0,17.8
+164419,180097.2368,595585.7993,0,17.8
+164420,179209.8119,592985.7091,0,17.8
+164421,519587.0278,961865.1902,0,17.8
+164422,179447.2821,592712.1551,0,17.8
+164423,178636.2279,590956.6544,0,17.8
+164424,179152.5771,590440.4267,0,17.8
+164425,178663.6995,590303.5667,0,17.8
+164426,178536.57,589573.5981,0,17.8
+164427,182188.09,588763.8277,0,17.8
+164428,179196.7997,587527.0186,0,17.8
+164429,180103.1356,588310.7982,0,17.8
+164430,179928.1992,586192.7258,0,17.8
+164431,1900.662997,566927.2114,0,17.8
+164432,1924.65532,565302.622,0,17.8
+164433,1900.663026,565710.7979,0,17.8
+164434,71500.06692,564971.4559,0,17.8
+164435,12353.98225,97038.66346,0,17.8
+164436,26957.85857,148980.4353,0,17.8
+164437,29789.39433,1183667.546,0,17.8
+164438,27328.89467,463724.9326,0,17.8
+164439,27401.19117,656631.0356,0,17.8
+164440,27401.22159,475840.7127,809054.1028,17.8
+164441,27323.60856,490512.3726,0,17.8
+164442,362838.9121,645156.4662,0,17.8
+164443,77389.45867,607963.9919,0,17.8
+164444,199969.0587,563542.2905,14730.67278,17.8
+164445,181699.1838,592332.2124,14869.98937,17.8
+164446,177450.797,584403.048,14698.01491,17.8
+164447,177314.0232,584259.7228,14717.0098,17.8
+164448,177337.7649,583790.9517,14679.95473,17.8
+164449,177329.9961,580120.9022,14650.98863,17.8
+164450,176829.1459,581949.6072,14622.16716,17.8
+164451,176677.2436,581311.6022,14577.99342,17.8
+164452,176760.3926,580688.9369,14549.60991,17.8
+164453,174205.8593,579215.4585,14505.91851,17.8
+164454,174532.5833,578005.2483,14493.23606,17.8
+164455,174189.6273,578926.3393,14434.68623,17.8
+164456,513709.5793,945825.1301,14422.27461,17.8
+164457,173895.3867,576806.0566,14372.00347,17.8
+164458,173700.4697,577865.4458,14352.06518,17.8
+164459,173472.8922,576526.7258,0,17.8
+164460,173554.3603,576577.1974,0,20
+164461,1053879.265,2603836.703,668444.658,20
+164462,428244.1078,581689.7768,96561.64239,20
+164463,101379.2619,568623.5435,126238.4328,20
+164464,229601.5025,726442.6548,221143.4678,20
+164465,292720.6548,734350.4445,178145.6919,20
+164466,254471.3041,672226.0243,176727.2315,20
+164467,247727.6542,675770.7809,179723.471,20
+164468,251561.6707,672710.738,181167.097,20
+164469,251654.4112,670790.5908,181454.153,20
+164470,250969.9096,669658.7154,182413.2421,20
+164471,250808.5179,666779.4112,183524.8851,20
+164472,250488.6633,664798.6724,183817.6248,20
+164473,250389.1769,662500.1778,185083.5852,20
+164474,249649.9246,661521.0181,185594.9531,20
+164475,250096.614,658646.1607,186379.6241,20
+164476,249347.4316,658036.13,187876.4084,20
+164477,249317.6732,654887.8126,188181.3731,20
+164478,249362.4508,656280.4148,189345.3034,20
+164479,248718.9754,650883.1593,189929.9997,20
+164480,248952.8357,652058.0504,191002.3491,20
+164481,248624.5638,650195.696,191810.4848,20
+164482,248615.8556,647924.4174,192623.8311,20
+164483,248254.4015,647162.1778,193717.8532,20
+164484,248420.1905,646496.985,194442.7547,20
+164485,247489.2608,643342.3559,195334.5676,20
+164486,247802.238,643805.5358,196196.6159,20
+164487,247490.994,641781.1829,197464.2233,20
+164488,247623.1959,628140.4999,198082.6981,20
+164489,247259.8162,623727.5122,199116.0131,20
+164490,247257.8624,622664.8817,199806.6031,20
+164491,247308.2644,619571.5538,200655.8863,20
+164492,246720.4,617011.5531,202278.6283,20
+164493,247209.5893,614528.0925,202255.7954,20
+164494,246418.7389,612980.0847,203920.0424,20
+164495,246966.2278,611312.2114,203922.6506,20
+164496,246048.4015,608363.7587,205980.9455,20
+164497,246757.206,605993.0012,206029.3539,20
+164498,245835.473,605162.1308,207497.1863,20
+164499,246343.6552,602454.2579,208238.915,20
+164500,245812.1087,599937.1812,208842.3443,20
+164501,245957.1081,598592.5357,209974.7897,20
+164502,245347.3258,596066.6355,210600.9419,20
+164503,245697.9363,595153.928,212016.7869,20
+164504,245513.6454,591983.1992,212400.7329,20
+164505,245023.894,589950.7864,213562.0361,20
+164506,245520.0055,589017.2779,214037.5607,20
+164507,244679.2451,586711.7743,215213.5444,20
+164508,245145.4861,585332.1208,216022.5253,20
+164509,244547.8061,583677.9996,217210.4568,20
+164510,244903.5717,580820.7578,217802.4944,20
+164511,244654.4835,580151.437,218790.6826,20
+164512,244314.958,577238.545,219861.1487,20
+164513,244500.6628,577403.9243,220590.699,20
+164514,244108.2339,573963.3953,221305.4157,20
+164515,244354.4964,573740.5133,221995.335,20
+164516,244130.2566,570187.4266,222800.8563,20
+164517,244028.6027,570383.8141,224056.8099,20
+164518,243914.5492,567724.6971,224928.9646,20
+164519,243496.926,566258.0668,225356.9026,20
+164520,244015.1992,564364.3459,226470.4931,21
+164521,263854.2925,985881.8968,210034.6507,21
+164522,263163.5959,976322.3869,208841.4103,21
+164523,263069.9622,974858.0102,208693.6325,21
+164524,263565.2483,969563.1711,208439.533,21
+164525,263167.9848,968057.0665,209107.0844,21
+164526,263933.9989,963213.2751,208658.3567,21
+164527,263537.1619,962474.3722,209554.7612,21
+164528,264163.2054,957446.5579,208880.4937,21
+164529,264215.181,955386.5135,208941.8819,21
+164530,264528.6107,953152.5879,209622.8979,21
+164531,264354.7414,948672.262,209670.4196,21
+164532,265044.7978,948028.7836,209800.7375,21
+164533,265032.2071,942843.0732,203718.7861,21
+164534,265313.6972,942044.7183,202799.2426,21
+164535,265215.6818,937862.0324,202829.9083,21
+164536,265933.3633,936287.8096,202856.4161,21
+164537,265772.2994,932752.1231,202050.1854,21
+164538,266236.5844,929518.7668,202500.492,21
+164539,266308.9754,928113.049,202233.1239,21
+164540,266728.7636,924579.4444,201691.956,21
+164541,266846.9549,921938.972,202052.1187,21
+164542,267007.3121,919219.044,201564.6898,21
+164543,267260.7556,916620.231,201833.6082,21
+164544,267672.3112,914807.7382,200946.4288,21
+164545,268061.9007,909858.3645,201960.2929,21
+164546,267973.7595,908610.7787,201053.1403,21
+164547,268540.9377,906181.2409,201458.2379,21
+164548,268590.2811,902586.1125,201206.0064,21
+164549,269020.6955,900464.6502,201453.2328,21
+164550,269026.1963,897383.6259,201618.1311,21
+164551,269876.8512,894934.3218,200827.5924,21
+164552,269413.3264,893145.0601,200178.4405,21
+164553,269957.1695,889349.6638,199600.4125,21
+164554,270295.023,889337.0551,199137.804,21
+164555,270113.756,885187.2597,198239.8866,21
+164556,270952.5697,885709.1021,198142.2025,21
+164557,270663.8013,881901.3949,196816.1858,21
+164558,271242.4836,880007.6089,195986.4323,21
+164559,270986.2765,878231.1759,193804.6053,21
+164560,271949.0461,875210.3964,192603.309,21
+164561,271575.1542,874738.8932,191366.0302,21
+164562,272017.1899,871112.7117,191172.3825,21
+164563,272301.586,870476.2808,190352.1016,21
+164564,272527.4779,866831.83,188735.3272,21
+164565,272384.2708,866477.715,188773.8118,21
+164566,273341.0689,863482.8833,187204.7601,21
+164567,272899.619,861352.2483,187110.4368,21
+164568,273216.7315,860939.2146,185620.8964,21
+164569,273971.9766,857153.9043,185273.0825,21
+164570,273538.491,856833.3271,184310.5209,21
+164571,274161.3778,853652.7947,182907.5092,21
+164572,274151.2453,853321.9665,182889.6302,21
+164573,274791.9388,849434.1011,181079.1417,21
+164574,274814.4968,848943.0751,181326.8262,21
+164575,274832.2239,847843.4377,179846.1026,21
+164576,275121.0846,845096.187,178712.8233,21
+164577,275581.1642,843305.1163,177934.431,21
+164578,275447.3778,842415.3524,177377.4656,21
+164579,276013.7466,839048.7885,176347.2886,21
+164580,276219.159,839546.3523,175426.309,21
+164581,195044.9744,675423.9183,70804.87523,21
+164582,191480.5688,667550.9315,63681.23785,21
+164583,190280.3798,662286.3789,61095.21609,21
+164584,189436.7244,658261.1857,58957.83087,21
+164585,187583.4746,654122.9424,57415.72703,21
+164586,187190.1652,650762.9183,56107.60947,21
+164587,185505.2729,647219.8524,55151.52158,21
+164588,184451.9003,642582.2332,54339.53126,21
+164589,183526.2711,639091.5301,53254.18155,21
+164590,182051.8846,635291.4614,52509.36758,21
+164591,181240.9986,630976.5571,51449.01304,21
+164592,179924.2958,626580.3285,50750.62847,21
+164593,178843.8476,623257.4841,26909.49258,21
+164594,177970.5978,619145.561,25933.67958,21
+164595,176564.7665,614935.0716,25095.37046,21
+164596,175770.9106,611177.6322,24007.42564,21
+164597,174528.5414,607277.9114,23007.63719,21
+164598,173585.7758,602890.4113,22329.02905,21
+164599,172534.2068,599353.7494,21017.37763,21
+164600,171719.0155,595459.0116,20135.04871,21
+164601,170552.6083,591470.7161,19303.03817,21
+164602,169661.6566,587697.4415,18210.68613,21
+164603,168775.7244,584135.9648,17893.6593,21
+164604,167742.8288,579927.5371,16915.48738,21
+164605,166870.3383,576617.8805,16656.18999,21
+164606,166007.1021,572435.8576,16119.27513,21
+164607,165219.8817,568973.9277,15842.61335,21
+164608,164258.4526,565584.6449,15418.96536,21
+164609,163359.368,561331.8083,14870.88593,21
+164610,162658.6955,558199.3125,14653.47907,21
+164611,161654.7899,554451.078,14178.70021,21
+164612,161051.7571,551428.1733,13758.81016,21
+164613,160228.8629,548163.0262,13523.46582,21
+164614,159685.8467,544716.4304,12965.95839,21
+164615,158492.0605,541524.094,12661.31651,21
+164616,158117.1535,538565.0321,12407.77132,21
+164617,157358.7956,534990.0445,11728.1793,21
+164618,156563.9314,532549.8687,11777.3748,21
+164619,156073.477,528766.0407,11025.32516,21
+164620,155329.8338,526127.5219,10929.29211,21
+164621,154365.0686,523029.7872,10332.87566,21
+164622,154056.6405,519491.654,10223.21206,21
+164623,153168.5356,516983.9916,9635.026779,21
+164624,152652.2469,513903.0819,9346.651716,21
+164625,151938.6148,510724.1088,8931.1124,21
+164626,151462.7169,508047.3787,8650.856833,21
+164627,150214.6067,504999.4352,8193.630029,21
+164628,150563.2743,502155.2162,7784.348302,21
+164629,149187.3134,498862.8492,7644.989353,21
+164630,148870.3812,496265.5715,7043.556236,21
+164631,148191.6512,493619.7155,6746.164348,21
+164632,147685.4768,490255.577,6499.12305,21
+164633,146792.3743,488010.0096,5989.825565,21
+164634,146742.6274,484607.3885,5689.339109,21
+164635,145437.8872,482303.551,5466.562999,21
+164636,145627.5465,479277.5542,5245.014764,21
+164637,144342.0004,476598.9083,5176.277603,21
+164638,144108.607,473494.4005,5032.878126,21
+164639,143807.2519,471154.1657,4886.359888,21
+164640,142502.2359,468067.9377,4758.390623,21
+164641,141688.6553,466801.896,4683.643112,21
+164642,140349.1323,465082.3748,4599.605692,21
+164643,138741.6502,464949.0308,4448.927942,21
+164644,137567.9803,464309.5761,4395.233289,21
+164645,136065.6129,462813.0027,4302.928549,21
+164646,134967.6348,460821.3104,4189.563699,21
+164647,133541.8392,459945.498,4096.938611,21
+164648,132151.9103,458185.4339,3997.058913,21
+164649,131038.1064,457084.4607,3903.988919,21
+164650,129335.1874,455469.8411,3803.290809,21
+164651,128398.9148,454203.7551,3712.461509,21
+164652,126733.8164,452637.2605,3625.087407,21
+164653,125747.7839,451146.7463,3514.872955,21
+164654,124275.4895,450041.6019,3412.57642,21
+164655,123107.2358,448424.7566,3324.918137,21
+164656,121729.1688,447056.012,3227.896373,21
+164657,120531.4536,446000.4346,3109.864775,21
+164658,119278.1207,443882.8241,3031.718289,21
+164659,118497.4372,443391.8043,2942.471957,21
+164660,117556.7741,441605.5977,2784.476399,21
+164661,116015.8694,440214.8195,2773.911068,21
+164662,115120.25,438648.6579,2614.591501,21
+164663,113747.1492,437571.7309,2522.183747,21
+164664,112508.0109,436156.0273,2413.038421,21
+164665,111370.0978,434615.8549,2350.083945,21
+164666,110100.4029,433827.7206,2205.880048,21
+164667,108935.8872,432170.8037,2144.157565,21
+164668,107154.3595,430283.2567,2031.073726,21
+164669,105951.9133,429768.8868,1884.053301,21
+164670,104535.0326,428108.6698,1836.188815,21
+164671,103689.3917,425380.5756,1735.816809,21
+164672,101995.135,423819.4554,1688.437615,21
+164673,101061.9272,421486.0911,1587.118648,21
+164674,99480.4933,418945.9693,1588.485051,21
+164675,98407.71796,417330.1203,1488.653571,21
+164676,97102.84588,414449.4623,1437.24829,21
+164677,95626.86394,412244.2751,1386.264016,21
+164678,94460.57345,408617.77,1351.580896,21
+164679,93074.75087,405367.2204,1281.425948,21
+164680,91893.29605,402931.1603,1299.020005,21
+164681,90544.82635,400519.4342,1263.855076,21
+164682,89532.00983,397700.6366,1228.592879,21
+164683,87541.10142,395585.335,1228.607263,21
+164684,86969.41281,392633.9477,1175.519579,21
+164685,85303.59561,389903.3192,1175.532712,21
+164686,83844.44785,387643.9059,1157.794741,21
+164687,83250.27191,384313.7309,1104.399317,21
+164688,81103.94421,381793.1008,1104.410973,21
+164689,80409.12338,379814.6921,1086.567122,21
+164690,78921.41979,377426.9157,1050.786624,21
+164691,77501.21693,375700.4878,1032.860291,21
+164692,76178.67344,372851.0976,996.9129443,21
+164693,75218.84684,371190.5457,996.9225211,21
+164694,74339.85632,369111.2366,960.8602271,21
+164695,73714.3955,366280.7787,942.7895165,21
+164696,73231.41041,364535.2936,906.5494558,21
+164697,72558.95605,362050.2322,906.5574329,21
+164698,71974.09807,359769.5221,870.1944807,21
+164699,71315.74041,357778.7978,851.9694932,21
+164700,71521.30273,353468.2849,815.4156302,21
+164701,75321.20528,348694.4657,760.3325331,21
+164702,74995.04058,345191.6438,723.4396359,21
+164703,75031.70867,341723.4259,686.4024095,21
+164704,74515.55246,338236.8979,667.8301449,21
+164705,74539.16114,335030.9125,630.5653711,21
+164706,74111.03949,331415.0545,611.8753746,21
+164707,74082.53706,328027.7365,555.5487723,21
+164708,73326.64618,324689.5206,574.3711087,21
+164709,73849.28177,320714.4612,498.8292878,21
+164710,72956.40388,317884.16,498.8317924,21
+164711,72986.16557,313970.801,460.7807466,21
+164712,72948.83603,310605.7398,422.526387,21
+164713,72215.35186,307520.9074,403.3194362,21
+164714,72257.17242,303251.797,384.0559704,21
+164715,71921.95247,300444.7822,325.9006783,21
+164716,71687.96951,296630.8244,325.9017678,21
+164717,71536.48977,293217.1124,286.8020657,21
+164718,71014.85379,289396.8195,267.1432852,21
+164719,70926.8606,286266.2784,227.5839997,21
+164720,70752.29706,282190.1023,207.6730513,21
+164721,70303.14555,278783.0027,167.5518106,21
+164722,70182.94343,275267.1712,147.3228652,21
+164723,69946.44111,271332.3888,126.9648114,21
+164724,69506.68129,267846.7297,85.7856303,21
+164725,69245.50715,263781.1641,64.90637908,21
+164726,69410.09404,260314.7303,43.76666432,21
+164727,68681.29845,256627.2867,0,21
+164728,68484.08304,252383.2921,0,21
+164729,68352.34273,248822.9925,0,21
+164730,67830.66686,245087.9998,0,21
+164731,67731.77152,241253.9109,0,21
+164732,66873.36421,237170.6716,0,21
+164733,66250.95106,234020.3125,0,21
+164734,65746.93404,229893.625,0,21
+164735,65031.50382,226522.8106,0,21
+164736,64594.63768,222396.3757,0,21
+164737,63756.32831,219176.8005,0,21
+164738,63322.16247,214792.5981,0,21
+164739,62643.07948,211529.763,0,21
+164740,62142.94334,207531.2839,0,21
+164741,61557.12501,203969.6641,0,21
+164742,61261.90085,199749.9311,0,21
+164743,60577.27523,196619.0642,0,21
+164744,60055.82745,192362.2177,0,21
+164745,59780.69289,189312.4415,0,21
+164746,59056.76633,186798.7616,0,21
+164747,58669.05469,183809.98,0,21
+164748,58065.6775,181427.1451,0,21
+164749,57378.38194,178676.8853,0,21
+164750,57221.06903,176022.4246,0,21
+164751,56330.11473,173518.2284,0,21
+164752,56132.43358,170731.8142,0,21
+164753,55358.21568,168222.933,0,21
+164754,55017.5206,165363.2088,0,21
+164755,54219.10425,162979.9195,0,21
+164756,53969.16087,160229.222,0,21
+164757,52996.27077,157403.7524,0,21
+164758,52902.04853,154875.5528,0,21
+164759,52110.01793,152229.8766,0,21
+164760,51646.37819,149495.482,0,21
+164761,45524.54946,147822.4812,0,21
+164762,44783.76321,145056.5526,0,21
+164763,44363.64118,142084.1939,0,21
+164764,43469.37621,139499.5974,0,21
+164765,42826.01626,136373.8621,0,21
+164766,42336.94082,133524.0789,0,21
+164767,41678.13516,130967.6576,0,21
+164768,40978.52747,127925.9295,0,21
+164769,40581.81873,125535.7917,0,21
+164770,40341.4734,122636.1892,0,21
+164771,39743.59633,119929.5806,0,21
+164772,39368.00119,117207.7271,0,21
+164773,38996.5823,114512.8574,0,21
+164774,38337.57982,111794.004,0,21
+164775,38250.75862,109190.4856,0,21
+164776,37629.77263,106591.7476,0,21
+164777,37321.63516,103904.4101,0,21
+164778,36664.76438,101239.4284,0,21
+164779,36370.32152,98553.07944,0,21
+164780,36039.51956,96045.6637,0,21
+164781,35315.74225,93233.3282,0,21
+164782,35168.86589,90808.53585,0,21
+164783,34576.68714,87886.32713,0,21
+164784,34103.86796,85373.63571,0,21
+164785,33919.57947,82637.89609,0,21
+164786,33128.12132,80220.92033,0,21
+164787,32950.27694,77295.88626,0,21
+164788,32456.43017,74672.41931,0,21
+164789,31766.44449,72237.55081,0,21
+164790,31675.36674,69360.39548,0,21
+164791,31431.37877,67431.30908,0,21
+164792,30986.31165,64441.00778,0,21
+164793,31171.02032,62448.78093,0,21
+164794,31057.48343,59726.79789,0,21
+164795,30896.81683,57418.15546,0,21
+164796,30806.01189,55050.84473,0,21
+164797,30887.64751,52270.04137,0,21
+164798,30641.54289,50243.27053,0,21
+164799,30636.36906,47574.97707,0,21
+164800,30734.73241,45348.97929,0,21
+164801,30603.33663,42014.92568,0,21
+164802,30509.95121,40095.27211,0,21
+164803,30591.81461,37110.64932,0,21
+164804,30588.01935,35180.18018,0,21
+164805,30536.86087,32590.54998,0,21
+164806,30576.68787,30382.21371,0,21
+164807,30682.44567,30247.15486,0,21
+164808,30543.91604,28973.10607,0,21
+164809,30650.23241,28916.3611,0,21
+164810,30655.74076,28510.64061,0,21
+164811,30652.70465,27786.33842,0,21
+164812,30861.39844,27508.28749,0,21
+164813,30643.53317,27200.38074,0,21
+164814,30888.01429,26464.63267,0,21
+164815,30938.46113,26157.30156,0,21
+164816,30903.41488,25762.43919,0,21
+164817,31087.87959,25216.39946,0,21
+164818,30989.40948,25172.91561,0,21
+164819,31308.0839,24896.42809,0,21
+164820,31240.18302,24518.60656,0,21
+164821,43926.3672,31936.44822,0,21
+164822,44404.5825,34949.23746,0,21
+164823,44619.18683,33259.19005,0,21
+164824,44477.59514,33485.53436,0,21
+164825,44793.47497,32646.20516,0,21
+164826,44896.85184,32974.55034,0,21
+164827,44971.10074,32379.7892,0,21
+164828,45088.64977,31999.62131,0,21
+164829,45222.40928,31874.25668,0,21
+164830,45303.17292,31494.1595,0,21
+164831,45472.47466,31126.72144,0,21
+164832,45491.03676,30986.39803,0,21
+164833,45678.45242,30402.7995,0,21
+164834,46034.89083,30444.81867,0,21
+164835,45714.28862,30006.05234,0,21
+164836,46285.72244,29576.63454,0,21
+164837,46085.13039,29372.2765,0,21
+164838,46448.82878,28959.56423,0,21
+164839,46618.94126,28809.87548,0,21
+164840,46637.53426,28448.28851,0,21
+164841,46837.10532,28178.51957,0,21
+164842,47038.72205,27901.97464,0,21
+164843,47035.31761,27528.26205,0,21
+164844,47409.39136,27156.21363,0,21
+164845,47458.00834,27080.60039,0,21
+164846,47598.46573,26620.56175,0,21
+164847,47859.42842,26327.09963,0,21
+164848,48630.36106,25935.53718,0,21
+164849,48886.57892,25783.31186,0,21
+164850,49147.30575,25512.27122,0,21
+164851,48734.12832,25236.72223,0,21
+164852,49121.85499,24852.16864,0,21
+164853,48360.34999,24668.4551,0,21
+164854,48384.29334,24523.69104,0,21
+164855,47956.89291,24278.0094,0,21
+164856,47735.61549,23955.51015,0,21
+164857,47451.6341,23856.44029,0,21
+164858,47175.20623,23908.05204,0,21
+164859,46697.07629,23575.72123,0,21
+164860,46708.6695,23550.4614,0,21
+164861,46208.30634,23547.50995,0,21
+164862,46231.46258,23305.58902,0,21
+164863,46031.2738,23243.50779,0,21
+164864,45459.63965,23232.2438,0,21
+164865,45541.44853,22973.81761,0,21
+164866,45109.21426,22726.05299,0,21
+164867,45005.70821,22925.57189,0,21
+164868,44451.95854,22666.34035,0,21
+164869,44553.54612,22617.81392,0,21
+164870,44089.43473,22393.49724,0,21
+164871,43708.05192,22370.55635,0,21
+164872,43721.93096,22196.54258,0,21
+164873,43166.07189,22083.92736,0,21
+164874,43112.98123,22036.419,0,21
+164875,42684.70388,22023.45533,0,21
+164876,42424.03474,21761.67437,0,21
+164877,42082.22712,21636.93513,0,21
+164878,41896.32236,21687.79432,0,21
+164879,41376.68375,21186.19254,0,21
+164880,41387.92183,21136.65732,0,21
+164881,27841.59698,16187.38091,0,21
+164882,27377.29377,16147.81114,0,21
+164883,26554.62589,15840.71598,0,21
+164884,26085.95377,15707.06056,0,21
+164885,25595.78521,15532.4332,0,21
+164886,25019.50964,15506.19569,0,21
+164887,24500.95497,15222.92392,0,21
+164888,23960.80777,15195.86591,0,21
+164889,23509.51099,15020.59047,0,21
+164890,22910.51414,14884.96148,0,21
+164891,22261.66247,14708.89439,0,21
+164892,22084.98221,14558.78016,0,21
+164893,21115.74513,14518.2958,0,21
+164894,21090.44746,14368.34923,0,21
+164895,20398.65582,14218.05435,0,21
+164896,20078.30326,13998.49301,0,21
+164897,19745.10093,13847.66155,0,21
+164898,19192.33986,13833.57381,0,21
+164899,18819.45245,13640.02775,0,21
+164900,18432.63704,13502.41892,0,21
+164901,17943.68261,13474.10683,0,21
+164902,17614.34289,13183.68733,0,21
+164903,17035.38981,13140.85518,0,21
+164904,16722.15605,13126.58535,0,21
+164905,16205.90317,12849.16266,0,21
+164906,15943.11807,12791.29604,0,21
+164907,15151.22241,12776.94845,0,21
+164908,15112.55534,12483.50481,0,21
+164909,14373.74597,12461.71602,0,21
+164910,14034.31257,12299.25551,0,21
+164911,13634.99585,12145.01266,0,21
+164912,13502.9411,12255.45484,0,21
+164913,13112.9566,12100.36064,0,21
+164914,13599.34958,12085.10974,0,21
+164915,13467.72408,11803.5486,0,21
+164916,13332.39386,12032.96792,0,21
+164917,12941.4285,11765.7162,0,21
+164918,12818.22326,11869.2878,0,21
+164919,12560.43673,11727.51234,0,21
+164920,12398.18787,11696.91275,0,21
+164921,12151.75158,11556.07257,0,21
+164922,12013.44773,11672.40417,0,21
+164923,12235.20327,11516.9159,0,21
+164924,11723.73718,11500.05718,0,21
+164925,11713.03714,11491.27878,0,21
+164926,11183.62068,11350.12521,0,21
+164927,11421.84066,11476.60691,0,21
+164928,10918.67824,11335.42493,0,21
+164929,10626.22292,11602.91893,0,21
+164930,10737.55149,11602.86309,0,21
+164931,10242.31182,11476.62444,0,21
+164932,10416.81079,11573.41267,0,21
+164933,10076.28953,11335.41792,0,21
+164934,10266.11081,11305.9501,0,21
+164935,9888.993872,11432.40645,0,21
+164936,9849.39271,11164.42519,0,21
+164937,9699.998506,11164.40358,0,21
+164938,9314.012448,11022.6077,0,21
+164939,9259.778235,11134.73761,0,21
+164940,9134.887352,10880.496,0,21
+164941,14720.06565,10565.40975,0,21
+164942,14906.43381,10452.36679,0,21
+164943,14665.81164,10422.37903,0,21
+164944,14665.81231,10294.05232,0,21
+164945,14711.14739,10150.37784,0,21
+164946,14497.21589,10150.39763,0,21
+164947,14569.84038,10120.2247,0,21
+164948,14343.08465,10006.43258,0,21
+164949,14512.97021,9847.008391,0,21
+164950,14472.07827,9991.340957,0,21
+164951,14257.56054,9831.853392,0,21
+164952,14428.92793,9702.39345,0,21
+164953,14174.20031,9702.377948,0,21
+164954,14173.09491,9671.985722,0,21
+164955,13930.88762,9572.614337,0,21
+164956,14102.53295,9526.9656,0,21
+164957,13858.85814,9542.205521,0,21
+164958,13845.37406,9542.220069,0,21
+164959,13787.47187,9381.604992,0,21
+164960,13572.39345,9412.160928,0,21
+164961,13729.12431,9366.287531,0,21
+164962,13399.38044,9266.54971,0,21
+164963,13455.16249,9366.288266,0,21
+164964,13310.07387,9251.262945,0,21
+164965,13195.20227,9220.577254,0,21
+164966,13221.17705,9251.264123,0,21
+164967,13104.44768,9220.579371,0,21
+164968,12842.76055,9089.931778,0,21
+164969,13014.16076,9089.921338,0,21
+164970,12765.61011,9205.202381,0,21
+164971,12719.63155,8958.846086,0,21
+164972,12687.13695,8928.021257,0,21
+164973,12640.37598,8781.284904,0,21
+164974,12623.76642,8665.168123,0,21
+164975,12660.80935,8618.618168,0,21
+164976,12542.08818,8502.320027,0,21
+164977,12493.22796,8354.562974,0,21
+164978,12457.25637,8339.00639,0,21
+164979,12415.09373,8042.34803,0,21
+164980,12608.04997,7924.786595,0,21
+164981,12289.38424,7909.140763,0,21
+164982,12608.0512,7744.226764,0,21
+164983,12377.06763,7460.344014,0,21
+164984,12478.61973,7460.351144,0,21
+164985,12579.99554,7175.01001,0,21
+164986,12377.06945,7008.006209,0,21
+164987,12551.79401,6856.412322,0,21
+164988,12579.99745,6567.940953,0,21
+164989,12537.63833,6567.940336,0,21
+164990,12565.9157,6092.000418,0,21
+164991,12551.79657,5676.417084,0,21
+164992,12739.8662,5332.376551,0,21
+164993,12537.6409,5018.594693,0,21
+164994,12638.84162,4735.530287,0,21
+164995,12739.86821,4560.345382,0,21
+164996,12725.67426,4080.471584,0,21
+164997,12739.86957,3774.103534,0,21
+164998,12711.44286,3448.381752,0,21
+164999,12840.72381,3119.693868,0,21
+165000,12912.97797,2787.765367,0,21
+165001,6562.071858,2469.370063,0,21
+165002,6803.008365,2452.251412,0,21
+165003,6803.007718,1785.860082,0,21
+165004,7042.75647,1611.816557,0,21
+165005,6930.064438,897.9153833,0,21
+165006,7169.213424,713.166866,0,21
+165007,7295.35917,317.5363394,0,21
+165008,7281.347647,272.2488337,0,21
+165009,7532.79079,235.5537889,0,21
+165010,7532.790036,179.6072584,0,21
+165011,7644.118285,122.3182812,0,21
+165012,7893.837965,63.13492958,0,21
+165013,7893.837151,21.90554416,0,21
+165014,8128.558478,0,0,21
+165015,8252.443791,0,0,21
+165016,8252.442914,0,0,21
+165017,8594.919814,0,0,21
+165018,8622.426457,0,0,21
+165019,8826.603297,0,0,21
+165020,8854.044295,0,0,21
+165021,9192.835904,0,0,21
+165022,9206.475178,0,0,21
+165023,9314.389443,0,0,21
+165024,9663.97647,0,0,21
+165025,9435.685823,0,0,21
+165026,9677.520175,0,0,21
+165027,9891.35457,0,0,21
+165028,9904.868525,0,0,21
+165029,10131.32627,0,0,21
+165030,10264.37233,0,0,21
+165031,10356.906,0,0,21
+165032,10383.72316,0,0,21
+165033,10595.01765,0,0,21
+165034,10489.47153,0,0,21
+165035,10608.37961,0,0,21
+165036,10818.8553,0,0,21
+165037,10621.71223,0,0,21
+165038,10832.1878,0,0,21
+165039,10845.49264,0,0,21
+165040,11068.4398,0,0,21
+165041,11172.97564,0,0,21
+165042,11199.44316,0,0,21
+165043,11303.78211,0,0,21
+165044,11303.78053,0,0,21
+165045,11303.77895,0,0,21
+165046,11538.2298,0,0,21
+165047,11434.277,0,0,21
+165048,11538.22651,0,0,21
+165049,11538.22487,0,0,21
+165050,11771.79424,0,0,21
+165051,11551.35785,0,0,21
+165052,11771.79082,0,0,21
+165053,11784.87037,0,0,21
+165054,11888.24629,0,0,21
+165055,11797.92099,0,0,21
+165056,11991.43196,0,0,21
+165057,12017.51127,0,0,21
+165058,11914.32037,0,0,21
+165059,12120.50968,0,0,21
+165060,12030.50611,0,0,21
+165061,12236.32648,0,0,21
+165062,11914.31976,0,0,21
+165063,12030.50976,0,0,21
+165064,12030.51049,0,0,21
+165065,12004.48396,0,0,21
+165066,11823.94529,0,0,21
+165067,12017.51249,0,0,21
+165068,11810.94654,0,0,21
+165069,11797.92025,0,0,21
+165070,11823.94828,0,0,21
+165071,11784.86772,0,0,21
+165072,11707.38228,0,0,21
+165073,11694.35601,0,0,21
+165074,11590.59834,0,0,21
+165075,11681.30356,0,0,21
+165076,11486.64898,0,0,21
+165077,11577.54671,0,0,21
+165078,11369.45165,0,0,21
+165079,11564.46712,0,0,21
+165080,11265.11304,0,0,21
+165081,11356.37287,0,0,21
+165082,11356.37372,0,0,21
+165083,11134.38849,0,0,21
+165084,11252.03515,0,0,21
+165085,11121.25392,0,0,21
+165086,11147.49977,0,0,21
+165087,11016.52019,0,0,21
+165088,11016.52107,0,0,21
+165089,10911.58661,0,0,21
+165090,10898.4234,0,0,21
+165091,10911.58839,0,0,21
+165092,10898.4252,0,0,21
+165093,10898.42611,0,0,21
+165094,10911.59114,0,0,21
+165095,10898.42798,0,0,21
+165096,10911.59304,0,0,21
+165097,10898.42989,0,0,21
+165098,10911.59498,0,0,21
+165099,10898.43184,0,0,21
+165100,10911.59696,0,0,21
+165101,11003.36941,0,0,21
+165102,10911.59898,0,0,21
+165103,11121.2714,0,0,21
+165104,10911.60104,0,0,21
+165105,11016.53774,0,0,21
+165106,11121.27466,0,0,21
+165107,10911.6042,0,0,21
+165108,11121.27689,0,0,21
+165109,11134.41437,0,0,21
+165110,11121.27915,0,0,21
+165111,11134.41666,0,0,21
+165112,11121.28145,0,0,21
+165113,11134.41899,0,0,21
+165114,11108.11962,0,0,21
+165115,11016.54893,0,0,21
+165116,11121.28616,0,0,21
+165117,11238.96154,0,0,21
+165118,11121.28857,0,0,21
+165119,11225.82763,0,0,21
+165120,11238.96527,0,0,21
+165121,21920.85529,3716.482625,0,21
+165122,22499.49643,15269.03513,0,21
+165123,22698.86454,10207.67674,0,21
+165124,22897.69126,11482.96195,0,21
+165125,22897.67652,11757.86298,0,21
+165126,24179.7611,12047.46775,0,21
+165127,23930.38408,12176.06734,0,21
+165128,23919.1896,12335.88481,0,21
+165129,24383.18626,12591.81233,0,21
+165130,24219.80015,12969.30283,0,21
+165131,24602.50679,13380.06016,0,21
+165132,24624.95067,13469.0657,0,21
+165133,24832.05007,13680.86387,0,21
+165134,24832.38606,13880.18702,0,21
+165135,25061.09473,13992.40217,0,21
+165136,25233.94987,14175.41389,0,21
+165137,25267.35549,14457.3041,0,21
+165138,25551.95219,14594.64053,0,21
+165139,25622.84449,14779.4022,0,21
+165140,25825.05675,14902.47167,0,21
+165141,25818.90623,15086.49306,0,21
+165142,25818.19134,15333.13911,0,21
+165143,26052.1297,15390.71319,0,21
+165144,26098.08949,15653.33085,0,21
+165145,26268.9184,15666.81459,0,21
+165146,26352.12026,15970.51595,0,21
+165147,26698.87696,16093.4572,0,21
+165148,26589.61145,16258.00721,0,21
+165149,26776.61315,16408.89544,0,21
+165150,27175.9203,16546.23403,0,21
+165151,26845.44543,16831.73757,0,21
+165152,27391.42995,16724.845,0,21
+165153,27263.64615,17116.23059,0,21
+165154,27258.37682,17146.0496,0,21
+165155,27638.93129,17293.56319,0,21
+165156,27495.13484,17429.48888,0,21
+165157,27704.10594,17713.72315,0,21
+165158,27861.23564,17873.17486,0,21
+165159,27739.22047,18303.48283,0,21
+165160,28115.1404,18316.40204,0,21
+165161,27925.9724,18331.10774,0,21
+165162,28141.93921,18848.86192,0,21
+165163,28346.57817,18625.15916,0,21
+165164,28168.64633,18903.61944,0,21
+165165,28550.6745,19141.1217,0,21
+165166,28394.58406,19195.79528,0,21
+165167,28577.19627,19432.52557,0,21
+165168,28625.11606,19486.97679,0,21
+165169,28780.57212,19472.46819,0,21
+165170,28809.90239,20012.39878,0,21
+165171,28849.75657,19764.54302,0,21
+165172,29009.95529,20037.59894,0,21
+165173,29049.62353,20300.89054,0,21
+165174,29223.03254,20327.82323,0,21
+165175,29068.07173,20340.35999,0,21
+165176,29456.64995,20705.02508,0,21
+165177,29267.42763,20627.75215,0,21
+165178,29482.75742,20887.50402,0,21
+165179,30476.34968,21017.99362,0,21
+165180,30455.31633,21158.8947,0,21
+165181,39642.12007,25032.35281,0,21
+165182,40707.4638,30130.11027,0,21
+165183,41399.28966,32331.01691,0,21
+165184,41660.51606,30416.28382,0,21
+165185,42265.90211,31867.50047,0,21
+165186,43490.99071,31892.43912,0,21
+165187,43390.92588,32135.84543,0,21
+165188,44144.16432,32486.04042,0,21
+165189,44615.6173,32969.51983,0,21
+165190,45154.93731,33065.25903,0,21
+165191,45449.69947,33219.48641,0,21
+165192,45991.36945,33775.60268,0,21
+165193,46674.94187,33783.70653,0,21
+165194,46909.05551,34165.7672,0,21
+165195,47280.52255,34479.42089,0,21
+165196,48137.55181,34620.65991,0,21
+165197,48532.27796,34748.30209,0,21
+165198,49530.45727,35417.12747,0,21
+165199,49601.07926,35201.16738,0,21
+165200,50341.23627,35685.99399,0,21
+165201,50745.55976,35890.20578,0,21
+165202,51136.29661,35985.79203,0,21
+165203,51676.18457,36587.15311,0,21
+165204,51970.07659,36686.81229,0,21
+165205,52731.47501,36737.09345,0,21
+165206,52891.80891,37206.87265,0,21
+165207,53592.04651,37323.34176,0,21
+165208,53679.47722,37699.34197,0,21
+165209,54555.22414,37686.88789,0,21
+165210,54755.02651,37976.96739,0,21
+165211,55015.44626,38530.55365,0,21
+165212,55932.21139,38428.16241,0,21
+165213,55925.94854,38818.63824,0,21
+165214,56468.71064,39153.06149,0,21
+165215,56667.87468,39415.2878,0,21
+165216,57233.82135,39764.38875,0,21
+165217,57282.5614,39876.04257,0,21
+165218,60672.7805,40359.02083,0,21
+165219,61078.28476,40394.51531,0,21
+165220,61284.70242,40951.05853,0,21
+165221,62583.88503,40874.56727,0,21
+165222,63150.60161,41518.99362,0,21
+165223,63837.72677,41597.57773,0,21
+165224,64498.05193,41809.71833,0,21
+165225,65389.96544,42238.88801,0,21
+165226,65949.74492,42527.56479,0,21
+165227,66722.08855,42760.95961,0,21
+165228,67406.51376,42955.09635,0,21
+165229,68170.68184,43255.83277,0,21
+165230,68776.31147,43660.25367,0,21
+165231,69460.01313,43702.51789,0,21
+165232,70202.49086,44260.98937,0,21
+165233,70938.56188,44187.62778,0,21
+165234,71473.84154,44824.90183,0,21
+165235,72393.33843,44884.21334,0,21
+165236,72832.18334,45076.24031,0,21
+165237,73694.65832,45565.04405,0,21
+165238,74303.95606,45781.41513,0,21
+165239,74928.64936,45789.76482,0,21
+165240,75655.68885,46281.04198,0,21
+165241,76443.26459,46670.58725,0,21
+165242,76916.48815,46943.30136,0,21
+165243,77863.26933,47391.81737,0,21
+165244,78350.09536,47648.58847,0,21
+165245,79326.7793,48040.50006,0,21
+165246,79726.17828,48424.48043,0,21
+165247,80461.00505,48751.78388,0,21
+165248,81672.1573,48996.28485,0,21
+165249,81913.41729,49616.25922,0,21
+165250,83155.61615,49672.16411,0,21
+165251,83946.47754,50414.20972,0,21
+165252,84686.46304,50353.7955,0,21
+165253,85239.25757,50959.14003,0,21
+165254,86485.78962,51230.24,0,21
+165255,87065.38169,51645.33006,0,21
+165256,88158.0742,52093.09138,0,21
+165257,88455.05671,52113.19043,0,21
+165258,89806.09788,52753.62411,0,21
+165259,90411.0622,53175.58274,0,21
+165260,91078.82374,53216.20891,0,21
+165261,92341.46147,53948.12341,0,21
+165262,92884.90014,53963.99387,0,21
+165263,93690.60265,54487.14322,0,21
+165264,94438.91606,54854.54524,0,21
+165265,95313.56762,55135.91522,0,21
+165266,96380.19283,55577.35788,0,21
+165267,97828.05156,55916.27544,0,21
+165268,99665.84146,56425.58767,0,21
+165269,101281.0813,56471.71062,0,21
+165270,103664.1474,57056.59508,0,21
+165271,105195.4872,57305.67011,0,21
+165272,107341.9055,57541.83426,0,21
+165273,108945.72,57913.03832,0,21
+165274,110827.0357,58165.87065,0,21
+165275,112770.6615,58201.92807,0,21
+165276,114671.166,58605.76352,0,21
+165277,116508.3018,58813.7581,0,21
+165278,118679.8562,58852.82444,0,21
+165279,120162.3399,59475.29367,0,21
+165280,122274.0281,59280.8778,0,21
+165281,124033.7203,59834.7037,0,21
+165282,126174.2927,59888.66705,0,21
+165283,127626.1428,60173.524,0,21
+165284,129884.0524,60346.87273,0,21
+165285,131545.7001,60588.42438,0,21
+165286,133349.0054,60793.91385,0,21
+165287,135486.729,61206.91564,0,21
+165288,137025.8498,61054.33967,0,21
+165289,139165.2827,61467.08353,0,21
+165290,140979.8641,62011.77983,0,21
+165291,142725.7757,61528.02079,0,21
+165292,143744.7731,62473.89069,0,21
+165293,145990.5846,62146.39211,0,21
+165294,148192.0994,63081.60404,0,21
+165295,149891.7279,63009.96167,0,21
+165296,152071.465,63677.31923,0,21
+165297,154002.3426,63667.23181,0,21
+165298,156135.4499,64072.01151,0,21
+165299,158173.1595,64562.97761,0,21
+165300,160114.0763,64487.70521,0,21
+165301,163345.3489,66540.35217,0,21
+165302,165724.4909,66691.94099,0,21
+165303,168194.8164,69174.21107,0,21
+165304,170258.8069,68305.33936,0,21
+165305,171876.9154,69432.20185,0,21
+165306,173579.238,69543.37135,0,21
+165307,174821.8558,70080.63504,0,21
+165308,176533.7975,71090.38479,0,21
+165309,178226.7568,71272.35291,0,21
+165310,179703.4065,72082.46474,0,21
+165311,181275.2594,72136.30392,0,21
+165312,182622.2219,73749.84231,0,21
+165313,184396.8607,77577.56749,0,21
+165314,185640.6034,76759.57097,0,21
+165315,187434.5474,77753.12551,0,21
+165316,188605.8447,79266.436,0,21
+165317,190166.7525,80078.50976,846.6721103,21
+165318,191856.9622,80968.96229,2592.432877,21
+165319,193098.903,81571.64728,1651.820926,21
+165320,195577.9557,82634.29539,2592.547183,21
+165321,196453.7394,83486.21581,2592.61603,21
+165322,198030.6113,84453.69084,2901.718827,21
+165323,199576.6179,85442.99209,3208.926011,21
+165324,201209.1064,86038.70069,3514.390027,21
+165325,202777.2781,87155.6625,3818.237642,21
+165326,203885.6719,87865.65342,3818.384287,21
+165327,206078.6851,88669.02144,4421.485518,21
+165328,207213.7849,89511.68651,4421.680575,21
+165329,208554.7905,90309.47509,4721.278186,21
+165330,210182.5633,91211.43261,5019.609235,21
+165331,211779.4908,91939.63012,5168.449855,21
+165332,213213.5398,92637.51445,5465.003809,21
+165333,214486.3854,94019.49311,5613.009663,21
+165334,216035.48,94242.52152,6054.78377,21
+165335,217508.1245,95727.48008,6055.141985,21
+165336,218797.282,95821.48586,6348.484756,21
+165337,220915.572,97490.82124,6640.835629,21
+165338,226910.5362,97710.71588,6786.871508,21
+165339,225851.0405,98764.89641,7248.230411,21
+165340,229255.7757,99562.20035,7474.811795,21
+165341,231018.7113,100264.5781,7599.87074,21
+165342,232915.2752,101685.2162,8093.269788,21
+165343,234829.3956,101433.0185,8113.803808,21
+165344,236921.8763,102871.3973,8461.082023,21
+165345,238418.7562,103433.0885,8767.902071,21
+165346,240861.0565,104413.0799,8807.726468,21
+165347,242192.9436,104833.899,9275.566038,21
+165348,244500.2747,105715.4507,9295.735833,21
+165349,246055.0383,106296.8805,9619.622339,21
+165350,247936.6929,107285.178,9942.594723,21
+165351,249878.2101,107400.3105,9981.710348,21
+165352,251532.8349,108852.5209,10425.8862,21
+165353,253010.3703,109118.4949,10464.83488,21
+165354,255560.5667,109691.5707,10785.5382,21
+165355,256536.7016,110650.5916,10946.13796,21
+165356,258800.0483,111255.0391,11265.64818,21
+165357,260441.9391,112005.2139,11444.39045,21
+165358,262194.1285,113165.0184,11604.25299,21
+165359,263769.5076,114047.9892,11922.19398,21
+165360,265749.6354,114963.2903,11942.04745,21
+165361,266199.1536,117878.2036,12277.67147,21
+165362,266872.1296,120167.4922,12575.68711,21
+165363,267373.958,122429.535,12891.44777,21
+165364,268355.1622,124802.4818,12911.28763,21
+165365,268309.3815,126731.7661,13244.58381,21
+165366,269166.7149,129591.2863,13540.7417,21
+165367,269757.3719,131643.7048,13578.73589,21
+165368,270239.3811,133827.9511,14167.55931,21
+165369,270570.0489,136405.6797,13912.25031,21
+165370,271492.9567,138306.178,14654.93689,21
+165371,271725.796,140575.0315,14519.7705,21
+165372,272569.8128,143474.3498,14849.54419,21
+165373,273839.3725,144822.5438,15593.48349,21
+165374,274378.2472,148406.4583,15458.49977,21
+165375,274602.0331,149545.5841,16117.24903,21
+165376,275668.8241,154656.965,15964.4146,21
+165377,275984.7957,157597.2098,16539.198,21
+165378,276162.7532,160444.1264,17830.98072,21
+165379,277160.0538,163407.3882,19525.11432,21
+165380,277748.6457,166059.3091,19146.81517,21
+165381,278114.4887,168882.8174,20067.07546,21
+165382,278611.5805,172237.9505,20547.36714,21
+165383,278996.5163,174347.3066,21239.67025,21
+165384,279838.855,177774.2357,21583.18341,21
+165385,279891.7638,180246.6435,22393.75428,21
+165386,280816.8259,183340.1094,22747.85051,21
+165387,280899.5386,186206.6927,23284.66738,21
+165388,281761.5947,188612.2988,23759.964,21
+165389,281690.4673,191832.8444,24543.78885,21
+165390,282672.811,194516.8095,24795.5125,21
+165391,282788.9404,196736.0739,25430.79457,21
+165392,283366.9284,199987.7919,26028.29742,21
+165393,283651.6032,202206.0354,26329.29378,21
+165394,284255.9018,205529.1686,27289.76723,21
+165395,284637.6325,207689.2572,27207.91956,21
+165396,285080.9394,210250.7593,28269.50795,21
+165397,285472.754,213387.4154,28464.81025,21
+165398,285870.2185,215563.5515,29264.50481,21
+165399,285985.233,218432.0447,29766.73735,21
+165400,287003.4645,220692.9697,30284.20884,21
+165401,286645.0012,223866.2851,30933.50826,21
+165402,287767.547,226210.1387,31467.40345,21
+165403,287305.8134,228364.6715,32001.61825,21
+165404,288445.6525,231708.9724,32594.52405,21
+165405,288455.6244,233691.7707,32799.46774,21
+165406,288946.2314,236542.9952,33789.44113,21
+165407,289022.9125,239940.0911,33984.70125,21
+165408,289601.6628,242947.645,34877.55359,21
+165409,289963.2608,245610.2767,34907.01743,21
+165410,290032.4221,247684.0869,35801.52903,21
+165411,290819.8819,250549.3218,36337.45249,21
+165412,290814.291,252888.3701,37172.50787,21
+165413,291445.8422,256373.2149,37310.39231,21
+165414,291205.5563,258636.9341,38371.78617,21
+165415,292014.8768,260689.4956,38629.22849,21
+165416,292242.0353,263833.4569,39264.9522,21
+165417,292488.3371,266527.756,39665.16527,21
+165418,292710.4275,268619.9119,40545.98883,21
+165419,293147.979,271338.5408,40911.98717,21
+165420,293408.3261,273798.3539,41524.66372,21
+165421,0,0,0,21
+165422,0,0,0,21
+165423,82175.58338,0,0,21
+165424,0,119.5137986,0,21
+165425,0,0,1351019.331,21
+165426,339834.7774,368245.067,0,21
+165427,0,0,0,21
+165428,0,132.7731627,0,21
+165429,0,0,0,21
+165430,0,0,0,21
+165431,0,0,0,21
+165432,0,95.89455638,0,21
+165433,0,0,0,21
+165434,0,0,0,21
+165435,0,0,0,21
+165436,0,108.1813989,0,21
+165437,0,0,0,21
+165438,0,0,0,21
+165439,0,0,0,21
+165440,0,113.6492732,0,21
+165441,0,0,0,21
+165442,0,0,0,21
+165443,0,0,0,21
+165444,0,115.2646528,0,21
+165445,0,0,0,21
+165446,0,0,0,21
+165447,0,0,0,21
+165448,0,116.1476395,0,21
+165449,0,0,0,21
+165450,0,0,0,21
+165451,0,0,0,21
+165452,0,118.4320318,0,21
+165453,0,0,0,21
+165454,0,0,0,21
+165455,0,0,0,21
+165456,0,119.5627195,0,21
+165457,0,0,0,21
+165458,0,0,0,21
+165459,0,0,1292350.85,21
+165460,0,120.7010918,0,21
+165461,339832.7872,368233.4269,0,21
+165462,0,0,0,21
+165463,0,0,0,21
+165464,0,111.2532941,0,21
+165465,0,0,0,21
+165466,0,0,0,21
+165467,0,0,0,21
+165468,0,86.09875122,0,21
+165469,0,0,0,21
+165470,0,0,0,21
+165471,0,0,0,21
+165472,0,120.2349409,0,21
+165473,0,0,0,21
+165474,0,0,0,21
+165475,0,0,0,21
+165476,0,115.7379184,0,21
+165477,0,0,0,21
+165478,0,0,0,21
+165479,0,0,0,21
+165480,0,114.7811651,0,15.6
+165481,0,0,0,15.6
+165482,0,0,0,15.6
+165483,0,0,0,15.6
+165484,0,146.1244014,0,15.6
+165485,0,0,0,15.6
+165486,0,0,0,15.6
+165487,0,0,0,15.6
+165488,0,124.1203819,0,15.6
+165489,0,0,0,15.6
+165490,0,0,0,15.6
+165491,0,0,0,15.6
+165492,0,122.7320275,0,15.6
+165493,0,0,0,15.6
+165494,0,0,1263853.646,15.6
+165495,0,0,0,15.6
+165496,0,368344.4909,0,15.6
+165497,339831.6742,0,0,15.6
+165498,0,0,0,15.6
+165499,0,0,0,15.6
+165500,0,106.0012099,0,15.6
+165501,0,0,0,15.6
+165502,0,0,0,15.6
+165503,0,0,0,15.6
+165504,0,101.1975858,0,15.6
+165505,0,0,0,15.6
+165506,0,0,0,15.6
+165507,0,0,0,15.6
+165508,0,123.7395614,0,15.6
+165509,0,0,0,15.6
+165510,0,0,0,15.6
+165511,0,0,0,15.6
+165512,0,130.3250054,0,15.6
+165513,0,0,0,15.6
+165514,0,0,0,15.6
+165515,0,0,0,15.6
+165516,0,133.5404269,0,15.6
+165517,0,0,0,15.6
+165518,0,0,0,15.6
+165519,0,0,0,15.6
+165520,0,131.1145949,0,15.6
+165521,0,0,0,15.6
+165522,0,0,0,15.6
+165523,0,0,0,15.6
+165524,0,128.3636123,0,15.6
+165525,0,0,0,15.6
+165526,0,0,0,15.6
+165527,0,0,0,15.6
+165528,0,122.8466222,0,15.6
+165529,0,0,1211457.445,15.6
+165530,0,0,0,15.6
+165531,0,368219.0543,0,15.6
+165532,0,112.0363511,0,15.6
+165533,339831.0473,0,0,15.6
+165534,0,0,0,15.6
+165535,0,0,0,15.6
+165536,0,80.12672571,0,15.6
+165537,0,0,0,15.6
+165538,0,0,0,15.6
+165539,0,0,0,15.6
+165540,0,100.0382339,0,15.6
+165541,0,0,0,15.6
+165542,0,0,0,15.6
+165543,0,0,0,15.6
+165544,0,111.4176234,0,15.6
+165545,0,0,0,15.6
+165546,0,0,0,15.6
+165547,0,0,0,15.6
+165548,0,120.2169773,0,15.6
+165549,0,0,0,15.6
+165550,0,0,0,15.6
+165551,0,0,0,15.6
+165552,0,124.852382,0,15.6
+165553,0,0,0,15.6
+165554,0,0,0,15.6
+165555,0,0,0,15.6
+165556,0,127.5836253,0,15.6
+165557,0,0,0,15.6
+165558,0,0,0,15.6
+165559,0,0,0,15.6
+165560,0,130.3865466,0,15.6
+165561,0,0,0,15.6
+165562,0,0,0,15.6
+165563,0,0,0,15.6
+165564,0,131.6008271,1163813.448,15.6
+165565,0,0,0,15.6
+165566,0,368215.895,0,15.6
+165567,0,0,0,15.6
+165568,0,123.8406906,0,15.6
+165569,339829.4397,0,0,15.6
+165570,0,0,0,15.6
+165571,0,0,0,15.6
+165572,0,99.10037676,0,15.6
+165573,0,0,0,15.6
+165574,0,0,0,15.6
+165575,0,0,0,15.6
+165576,0,110.8878365,0,15.6
+165577,0,0,0,15.6
+165578,0,0,0,15.6
+165579,0,0,0,15.6
+165580,0,115.5527815,0,15.6
+165581,0,0,0,15.6
+165582,0,0,0,15.6
+165583,0,0,0,15.6
+165584,0,113.8357522,0,15.6
+165585,0,0,0,15.6
+165586,0,0,0,15.6
+165587,0,0,0,15.6
+165588,0,111.9156874,0,15.6
+165589,0,0,0,15.6
+165590,0,0,0,15.6
+165591,0,0,0,15.6
+165592,0,111.8387387,0,15.6
+165593,0,0,0,15.6
+165594,0,0,0,15.6
+165595,0,0,0,15.6
+165596,0,114.0140948,0,15.6
+165597,0,0,0,15.6
+165598,0,0,0,15.6
+165599,0,0,1120471.822,15.6
+165600,0,116.5714674,0,15.6
+165601,0,368214.8028,0,15.6
+165602,0,0,0,15.6
+165603,0,0,0,15.6
+165604,0,108.1804039,0,15.6
+165605,339828.1684,0,0,15.6
+165606,0,0,0,15.6
+165607,0,0,0,15.6
+165608,0,85.03393344,0,15.6
+165609,0,0,0,15.6
+165610,0,0,22973.08269,15.6
+165611,0,0,24152.72929,15.6
+165612,0,123.3914017,25328.77061,15.6
+165613,0,0,26493.71971,15.6
+165614,0,0,27649.65675,15.6
+165615,0,0,0,15.6
+165616,0,123.1397246,0,15.6
+165617,0,0,0,15.6
+165618,0,0,0,15.6
+165619,0,0,0,15.6
+165620,0,126.0186318,0,15.6
+165621,0,0,0,15.6
+165622,0,0,0,15.6
+165623,0,0,0,15.6
+165624,0,122.3279613,0,15.6
+165625,0,0,0,15.6
+165626,0,0,0,15.6
+165627,0,0,0,15.6
+165628,0,117.1676877,0,15.6
+165629,0,0,0,15.6
+165630,0,0,22144.62279,15.6
+165631,0,0,0,15.6
+165632,0,111.5318386,0,15.6
+165633,0,0,0,15.6
+165634,0,0,1070466.693,15.6
+165635,0,0,0,15.6
+165636,0,368315.0486,0,15.6
+165637,0,0,0,15.6
+165638,0,0,0,15.6
+165639,0,0,0,15.6
+165640,0,77.94453643,0,15.6
+165641,339827.4067,0,0,15.6
+165642,0,0,0,15.6
+165643,0,0,0,15.6
+165644,0,77.27233697,0,15.6
+165645,0,0,0,15.6
+165646,0,0,0,15.6
+165647,0,0,0,15.6
+165648,0,103.8320404,0,15.6
+165649,0,0,22096.92409,15.6
+165650,0,0,22160.34619,15.6
+165651,0,0,22257.72173,15.6
+165652,0,106.2113304,22371.73639,15.6
+165653,0,0,22491.45143,15.6
+165654,0,0,22611.718,15.6
+165655,0,0,22730.59189,15.6
+165656,0,112.802726,22847.30584,15.6
+165657,0,0,22961.51071,15.6
+165658,0,0,23072.81597,15.6
+165659,0,0,23181.04146,15.6
+165660,0,116.108895,23286.05862,15.6
+165661,0,0,23350.18083,15.6
+165662,0,0,23411.91649,15.6
+165663,0,0,155666.3718,15.6
+165664,0,118.7246189,4656.823506,15.6
+165665,0,0,54546.81281,15.6
+165666,0,0,4935.487929,15.6
+165667,0,0,56762.38106,15.6
+165668,0,120.490573,38559.69491,15.6
+165669,0,0,1051506.802,15.6
+165670,0,0,80482.16763,15.6
+165671,0,368209.1036,104150.6929,15.6
+165672,0,116.1930207,39055.86941,15.6
+165673,0,0,60007.9121,15.6
+165674,0,0,41891.37673,15.6
+165675,0,0,18646.93504,15.6
+165676,0,85.13563519,25950.28745,15.6
+165677,339827.5957,0,0,15.6
+165678,0,0,0,15.6
+165679,0,0,0,15.6
+165680,0,101.8984589,0,15.6
+165681,0,0,147267.7834,15.6
+165682,0,0,0,15.6
+165683,0,0,0,15.6
+165684,0,102.2313544,0,15.6
+165685,0,0,0,15.6
+165686,0,0,0,15.6
+165687,0,0,0,15.6
+165688,0,101.8518376,0,15.6
+165689,0,0,0,15.6
+165690,0,0,0,15.6
+165691,0,0,0,15.6
+165692,0,98.58838708,0,15.6
+165693,0,0,0,15.6
+165694,0,0,0,15.6
+165695,0,0,20428.87731,15.6
+165696,0,97.15781045,23426.68621,15.6
+165697,0,0,23202.4951,15.6
+165698,0,0,23246.30346,15.6
+165699,0,0,154861.907,15.6
+165700,0,98.77431054,7144.64711,15.6
+165701,0,0,52547.1085,15.6
+165702,0,0,7525.597819,15.6
+165703,0,0,53820.63104,15.6
+165704,0,101.139521,962864.4911,15.6
+165705,0,0,63310.49167,15.6
+165706,0,368210.0004,76794.93494,15.6
+165707,0,0,98529.7861,15.6
+165708,0,98.61685628,38878.53881,15.6
+165709,0,0,57295.72513,15.6
+165710,0,0,40624.31482,15.6
+165711,0,0,19564.53111,15.6
+165712,0,74.1173201,26238.70054,15.6
+165713,339829.5143,0,24120.62529,15.6
+165714,0,0,23612.16813,15.6
+165715,0,0,23438.37192,15.6
+165716,0,106.6763057,23467.83299,15.6
+165717,0,0,23523.12042,15.6
+165718,0,0,154073.2007,15.6
+165719,0,0,9849.512989,15.6
+165720,0,111.628047,50847.2378,15.6
+165721,0,0,105940.7621,15.6
+165722,0,0,159413.66,15.6
+165723,0,0,10050.99707,15.6
+165724,0,117.0596989,0,15.6
+165725,0,0,0,15.6
+165726,0,0,0,15.6
+165727,0,0,0,15.6
+165728,0,116.1773555,0,15.6
+165729,0,0,0,15.6
+165730,0,0,0,15.6
+165731,0,0,0,15.6
+165732,0,112.2955808,109457.1846,15.6
+165733,0,0,116731.7133,15.6
+165734,0,0,129792.0835,15.6
+165735,0,0,120031.1865,15.6
+165736,0,106.9112306,122191.4122,15.6
+165737,0,0,124400.7364,15.6
+165738,0,0,126605.2178,15.6
+165739,0,0,1004972.085,15.6
+165740,0,101.001002,129548.3353,15.6
+165741,0,0,131601.1939,15.6
+165742,0,368205.8756,283626.4247,15.6
+165743,0,0,145840.3797,15.6
+165744,0,79.54873956,189782.5053,15.6
+165745,0,0,248831.5675,15.6
+165746,0,0,150766.9768,15.6
+165747,0,0,171757.4388,15.6
+165748,0,0,182762.912,15.6
+165749,339829.8906,225.8490141,216390.0673,15.6
+165750,0,0,157315.2919,15.6
+165751,0,0,177423.6372,15.6
+165752,0,0,189513.1254,15.6
+165753,0,0,266983.5507,15.6
+165754,0,0,324105.2424,15.6
+165755,0,0,377363.4869,15.6
+165756,0,151.0320621,399700.915,15.6
+165757,0,0,386616.2816,15.6
+165758,0,0,375656.0242,15.6
+165759,0,0,161529.8585,15.6
+165760,0,79.69072731,228168.315,15.6
+165761,0,0,63667.02497,15.6
+165762,0,0,110130.7828,15.6
+165763,0,0,11884.4653,15.6
+165764,0,112.5072118,69309.40994,15.6
+165765,0,0,37946.55378,15.6
+165766,0,0,57631.13245,15.6
+165767,0,0,143970.2421,15.6
+165768,0,105.9577865,186718.2231,15.6
+165769,0,0,209991.0029,15.6
+165770,0,0,199049.9407,15.6
+165771,0,0,0,15.6
+165772,0,110.6790288,0,15.6
+165773,0,0,0,15.6
+165774,0,0,799608.7649,15.6
+165775,0,0,0,15.6
+165776,0,111.6756054,0,15.6
+165777,0,0,0,15.6
+165778,0,368197.2509,0,15.6
+165779,0,0,0,15.6
+165780,0,103.9489357,0,15.6
+165781,64914.70841,98518.01363,0,15.6
+165782,16195.30163,39568.06007,0,15.6
+165783,6318.755896,27826.11345,0,15.6
+165784,18849.61629,21190.72485,0,15.6
+165785,17305.40391,28439.37171,0,15.6
+165786,355306.6103,27702.15496,0,15.6
+165787,15804.80439,25604.38789,0,15.6
+165788,15778.8826,26129.41768,0,15.6
+165789,15765.28718,25974.22525,0,15.6
+165790,15690.97918,25928.28992,51935.88962,15.6
+165791,15730.45218,25856.50292,30559.45303,15.6
+165792,15650.60759,25962.7881,81644.33442,15.6
+165793,15642.25459,25809.94875,10943.65225,15.6
+165794,15616.021,25738.67112,54515.54962,15.6
+165795,15614.82951,25744.86957,30321.13414,15.6
+165796,15566.87877,25782.54796,80199.96376,15.6
+165797,15571.15327,25668.59469,11268.65541,15.6
+165798,15513.58162,25609.63617,53661.33709,15.6
+165799,15537.1447,25666.42472,30156.06917,15.6
+165800,15507.62704,25647.91984,78791.74972,15.6
+165801,15467.78613,25571.31819,11538.62315,15.6
+165802,15477.88324,25563.84119,52796.58974,15.6
+165803,15464.07817,25510.26343,29928.37298,15.6
+165804,15445.69767,25627.51236,77368.55363,15.6
+165805,15419.95135,25465.66977,11725.13143,15.6
+165806,15428.11743,25498.92967,51912.43767,15.6
+165807,15378.38278,25440.47295,29637.12227,15.6
+165808,15394.81485,25546.11772,780120.4632,15.6
+165809,15428.10288,25441.76655,11821.46176,15.6
+165810,15328.82451,25378.53412,50737.30844,15.6
+165811,0,0,29165.72714,15.6
+165812,0,95.92310971,74057.85903,15.6
+165813,0,368193.555,11884.65109,15.6
+165814,0,72252.18361,49853.42654,15.6
+165815,0,9572.58059,28806.75312,15.6
+165816,0,22913.66356,72652.11264,15.6
+165817,55532.06522,28886.19684,11914.40296,15.6
+165818,3774.40119,25036.04773,48981.48349,15.6
+165819,4356.481585,25414.5877,0,15.6
+165820,23872.12278,25401.78291,0,15.6
+165821,353378.2244,25414.5803,0,15.6
+165822,15305.71644,25373.23298,0,15.6
+165823,15326.78771,25406.88082,0,15.6
+165824,15355.41659,25433.00047,0,15.6
+165825,15309.86862,25365.52958,0,15.6
+165826,15355.40414,25360.85873,0,15.6
+165827,15282.98857,25365.52166,0,15.6
+165828,15306.03182,25444.03589,0,15.6
+165829,15304.7914,25360.8465,0,15.6
+165830,15282.96984,25328.42674,0,15.6
+165831,15287.02906,25361.51195,0,15.6
+165832,15304.77241,25450.01708,0,15.6
+165833,15219.97387,25362.05537,0,15.6
+165834,15326.51479,25323.66703,0,15.6
+165835,15203.39017,25362.04637,0,15.6
+165836,15273.5225,25392.91962,0,15.6
+165837,15236.03255,25383.38208,0,15.6
+165838,15273.50936,25336.2321,0,15.6
+165839,15236.01944,25341.11327,22371.68487,15.6
+165840,15249.80195,25416.65367,69946.71464,17.8
+165841,879109.4217,1346713.481,261178.0607,17.8
+165842,511757.2124,764431.3426,916588.6702,17.8
+165843,107386.5882,268939.8079,207926.1748,17.8
+165844,235520.0231,486084.945,191945.0235,17.8
+165845,281191.9743,413991.1888,205252.1843,17.8
+165846,250175.4575,394322.8398,68170.79338,17.8
+165847,199413.3023,784853.808,128155.289,17.8
+165848,198717.0159,392994.7789,98937.01058,17.8
+165849,279612.1309,398185.7745,126737.3196,17.8
+165850,237246.8111,396970.2642,157398.0871,17.8
+165851,229220.8596,395606.3526,184892.6792,17.8
+165852,256322.7817,395211.1752,192025.6764,17.8
+165853,241834.5301,394065.5404,69606.44274,17.8
+165854,244267.1761,393916.516,117414.4445,17.8
+165855,244336.4835,393622.2082,98372.58169,17.8
+165856,584023.1956,392757.0048,125594.5933,17.8
+165857,243941.7612,392618.3437,154484.7497,17.8
+165858,244130.6054,391783.8235,704418.164,17.8
+165859,243595.5027,392003.7949,349473.0684,17.8
+165860,243702.7418,390790.9059,400150.3396,17.8
+165861,246299.2244,391888.0848,436060.5078,17.8
+165862,247389.8606,389919.3244,441172.8959,17.8
+165863,246359.826,390795.5942,487252.6315,17.8
+165864,246832.4236,390236.6086,535468.5962,17.8
+165865,249252.8789,470290.1827,581970.86,17.8
+165866,247586.1493,389414.6158,601650.007,17.8
+165867,248475.7664,389964.0674,442048.1176,17.8
+165868,247774.5807,389224.4432,449191.5012,17.8
+165869,248707.8279,389349.4462,483636.719,17.8
+165870,247920.2859,389167.9838,533688.998,17.8
+165871,50021.9139,64177.93283,522149.1186,17.8
+165872,49894.17742,64101.37139,572296.24,17.8
+165873,49995.70698,64077.51892,587927.9597,17.8
+165874,49937.4665,874843.0578,564494.2528,17.8
+165875,49922.4127,191950.0034,468595.2009,17.8
+165876,660449.3813,286980.7605,1344445.646,17.8
+165877,107232.6556,450308.1893,583325.1183,17.8
+165878,240088.4512,365010.4141,637179.7331,17.8
+165879,229302.4193,384428.2239,692964.1612,17.8
+165880,201302.5831,374094.8571,709201.262,17.8
+165881,283550.5447,747088.8202,707554.0942,17.8
+165882,231746.8155,377144.8668,501006.0067,17.8
+165883,245304.7814,377154.6823,527567.603,17.8
+165884,255256.2492,377165.2003,571697.6021,17.8
+165885,247539.3065,376980.7659,629421.1429,17.8
+165886,249825.0087,377320.0204,695099.9439,17.8
+165887,249772.5866,376390.904,753476.2338,17.8
+165888,249316.16,377478.9261,321566.0867,17.8
+165889,250132.9876,375759.4597,314690.1609,17.8
+165890,244940.3461,375598.2342,92550.05932,17.8
+165891,585059.3933,375672.331,188707.4507,17.8
+165892,245460.421,375009.3756,147763.2198,17.8
+165893,245198.6305,375445.8082,194596.4255,17.8
+165894,245627.974,374984.906,246930.4041,17.8
+165895,245623.9013,375451.1853,292894.2076,17.8
+165896,245903.207,374643.4383,297370.9409,17.8
+165897,245743.4608,375474.5299,1257348.561,17.8
+165898,245989.3015,374181.1663,382644.4194,17.8
+165899,246177.3192,374935.9739,586913.0762,17.8
+165900,246104.7142,381491.6367,624615.7614,20
+165901,1084227.446,1552693.861,2033415.553,20
+165902,582372.6682,379131.5867,1139226.341,20
+165903,154986.9985,370573.2066,381934.6373,20
+165904,330167.4553,431817.1339,628304.4481,20
+165905,355936.63,468591.8648,768685.9372,20
+165906,326541.0092,444567.7377,643140.292,20
+165907,320177.4649,435190.2617,671402.921,20
+165908,322822.5514,440685.523,832906.6423,20
+165909,321481.6513,439286.0477,685342.1062,20
+165910,321579.9778,438197.9183,742782.0679,20
+165911,320721.7934,437657.6398,817818.7154,20
+165912,320796.8202,436722.9487,895104.2584,20
+165913,319585.1254,436443.7444,963456.2063,20
+165914,319322.9972,434847.0566,693988.0146,20
+165915,318939.0618,435875.5725,699925.6528,20
+165916,318178.7554,434934.0964,771761.6455,20
+165917,317874.3749,433191.4083,709342.2488,20
+165918,317689.9478,433832.6427,715410.7133,20
+165919,316367.4755,433587.4724,721343.6149,20
+165920,316596.8623,432240.1439,725237.396,20
+165921,316435.4949,432058.8157,732818.5173,20
+165922,315321.0984,431595.3792,736301.5307,20
+165923,313586.3363,431261.6581,742269.578,20
+165924,312956.5592,431501.8875,747104.6482,20
+165925,311920.4055,429733.4144,750324.0199,20
+165926,312146.3424,430005.3719,757046.1102,20
+165927,311128.6489,429849.1467,760262.1927,20
+165928,310869.1014,417670.9824,764508.8981,20
+165929,310325.2859,413438.6584,768930.3409,20
+165930,309695.2002,413437.3342,773163.4636,20
+165931,309811.4727,410914.0019,777018.8879,20
+165932,308464.2126,410736.5336,780712.6651,20
+165933,308695.0191,408711.3609,784631.4525,20
+165934,307960.1646,407663.7392,788101.1565,20
+165935,307865.747,406112.0472,791664.121,20
+165936,306538.4042,405424.5387,794883.2883,20
+165937,306707.2781,405549.9014,798005.8185,20
+165938,306221.3697,405908.7766,801945.0151,20
+165939,305441.5709,402990.338,803917.4931,20
+165940,298546.4976,403980.9551,808016.8274,20
+165941,297545.7656,401400.1578,810745.4433,20
+165942,295604.6141,400962.0396,813314.9367,20
+165943,294576.3985,401036.9945,816644.7149,20
+165944,293728.8161,398787.2281,818341.3178,20
+165945,292114.6902,398210.5267,821915.9408,20
+165946,291292.0235,398366.2722,823910.171,20
+165947,289936.9174,395678.891,826833.1368,20
+165948,288889.2593,395939.8108,829032.9136,20
+165949,287586.78,395590.1134,831671.4733,20
+165950,287257.4932,393074.8762,833639.0813,20
+165951,285022.7843,393602.6376,836075.3007,20
+165952,284800.5216,392894.6056,837666.3682,20
+165953,281879.1959,390893.786,840732.5237,20
+165954,280591.7346,390693.7883,842759.8426,20
+165955,279461.0029,390725.4225,844209.8229,20
+165956,278642.508,388959.1095,845961.5035,20
+165957,277039.2678,387883.2621,848966.7301,20
+165958,276472.4464,387612.1864,849937.4,20
+165959,274899.7542,386964.0238,852162.8626,20
+165960,274404.3554,385061.7237,849164.4923,21
+165961,391969.7748,682422.2351,825417.1242,21
+165962,389765.2217,673440.7596,820854.6608,21
+165963,388335.129,671864.4127,819210.5159,21
+165964,386753.7009,667899.9314,816679.6114,21
+165965,385105.0177,666325.6741,814340.7396,21
+165966,383755.2136,662998.3954,812111.8488,21
+165967,382330.0146,659637.315,809679.1064,21
+165968,380728.7698,657940.9325,807348.3764,21
+165969,379183.3224,654668.3903,804873.5887,21
+165970,378168.5965,653034.9689,803344.459,21
+165971,376454.2838,649630.4856,799763.9005,21
+165972,375236.0012,647506.9948,798063.9527,21
+165973,373537.6994,644728.9381,767799.1624,21
+165974,372057.283,642875.4574,764036.3952,21
+165975,371115.1862,639639.8917,758785.3998,21
+165976,368806.3825,637645.123,754463.5628,21
+165977,368081.8868,635047.2032,750420.6092,21
+165978,366134.4753,633435.9709,746405.3826,21
+165979,364666.5415,629261.2374,741612.1654,21
+165980,363552.27,627791.0403,737912.4234,21
+165981,361676.4253,625385.5842,734482.8053,21
+165982,360072.0681,623082.0008,729337.6147,21
+165983,359232.2875,620798.0463,725750.3294,21
+165984,356866.9241,617497.012,721345.1414,21
+165985,355835.8955,615426.8498,718730.6297,21
+165986,354069.1892,613466.0433,713155.5456,21
+165987,352890.4695,610818.552,711123.5731,21
+165988,351212.6183,608295.7709,706374.9651,21
+165989,349467.5531,605808.0932,703077.1997,21
+165990,348332.7438,603662.4405,699165.5462,21
+165991,346811.8825,601262.5718,695758.5183,21
+165992,345523.5687,598448.6845,691168.5698,21
+165993,343974.7972,596747.2892,688576.7319,21
+165994,342740.0068,594693.9351,684385.3648,21
+165995,341010.3757,592060.6861,680737.0052,21
+165996,340219.9799,589223.0076,676513.8927,21
+165997,338776.4387,587434.7611,673429.328,21
+165998,336672.096,585651.3076,669842.4358,21
+165999,336005.8652,582724.5426,666105.8627,21
+166000,334245.7036,580497.1022,662161.7514,21
+166001,333053.0771,579254.1724,658241.1871,21
+166002,331450.6601,575610.5302,654288.4248,21
+166003,330202.8155,574494.1323,651234.344,21
+166004,328387.8245,571651.7195,646986.2633,21
+166005,327087.804,569985.8401,643056.6353,21
+166006,325746.1358,566981.9657,639143.3177,21
+166007,323871.4072,565247.5327,635304.5026,21
+166008,321764.0042,563178.8373,631661.922,21
+166009,319875.8102,560740.3608,627461.2559,21
+166010,318568.3182,558599.6471,623494.0579,21
+166011,316434.6162,556691.1973,619758.2417,21
+166012,315373.4103,554083.3334,615692.7669,21
+166013,313418.6481,552714.5988,611318.0211,21
+166014,312163.4357,549595.9651,607577.6907,21
+166015,310214.1192,548394.1313,603955.5307,21
+166016,309062.0844,545400.8683,599073.266,21
+166017,306735.5318,543302.7475,595401.8182,21
+166018,306050.7665,541922.7446,591709.936,21
+166019,303966.3655,538927.2616,587282.2847,21
+166020,302693.2836,537493.7465,582952.0246,21
+166021,228737.8496,431220.0402,442023.6886,21
+166022,222511.5709,425525.9606,430350.9122,21
+166023,218659.4931,422621.7948,422318.5159,21
+166024,215213.5036,420586.7499,415314.9659,21
+166025,211937.7588,417468.418,407496.1829,21
+166026,207952.689,415385.1169,400521.8334,21
+166027,204606.1642,412364.1767,392200.4554,21
+166028,201047.2747,409948.7178,385484.9086,21
+166029,197704.3479,407780.4009,377576.975,21
+166030,194155.899,404816.3241,370192.9005,21
+166031,190909.1036,402530.0545,362764.0897,21
+166032,187079.8481,400568.1753,355125.7361,21
+166033,184093.7237,396765.5536,347903.5047,21
+166034,180749.5642,395698.3751,341232.2028,21
+166035,176951.1935,392686.5329,332054.2745,21
+166036,173893.9014,390077.194,325989.9299,21
+166037,170572.1184,388018.1998,318108.3322,21
+166038,167224.6742,385256.093,311461.7793,21
+166039,164039.3736,382824.2153,304198.3515,21
+166040,160762.4709,380584.5764,297240.4586,21
+166041,157476.6999,378282.6834,290363.1791,21
+166042,154426.3622,375687.047,283160.9956,21
+166043,151210.9396,373612.5545,276487.8497,21
+166044,148105.358,371176.2356,269500.6557,21
+166045,144866.7072,368958.5317,262732.0983,21
+166046,141942.6539,366556.5702,255985.9682,21
+166047,138723.4588,364540.3927,248977.6086,21
+166048,135759.6578,361923.5085,242361.4249,21
+166049,132802.2133,360089.393,236042.8674,21
+166050,129458.3337,357350.1896,228648.2721,21
+166051,126641.5841,355829.0791,222605.5508,21
+166052,124002.0086,352573.3082,215842.4692,21
+166053,121325.2548,350085.6617,209398.2587,21
+166054,118440.7187,347686.2235,202742.9778,21
+166055,115914.137,345327.4775,196481.2969,21
+166056,113021.0478,342486.9655,189628.974,21
+166057,109959.9872,339941.8949,184162.454,21
+166058,107858.6206,337414.951,177830.0043,21
+166059,104749.195,335277.4248,170912.3716,21
+166060,102053.1118,332415.0495,165587.0982,21
+166061,99462.02453,329645.2386,158572.7248,21
+166062,96674.25888,327380.9888,152478.9013,21
+166063,94214.57314,324962.6663,146522.033,21
+166064,91030.84504,323158.7817,140873.8793,21
+166065,88831.12326,321693.0923,135060.0999,21
+166066,87339.71075,319174.2332,131720.6758,21
+166067,86349.87031,317891.5172,127740.6331,21
+166068,85506.12689,315624.7009,124508.9946,21
+166069,84645.23212,314205.9344,120923.5139,21
+166070,83757.95246,312196.6571,116678.7365,21
+166071,82790.7405,310182.8731,113780.1345,21
+166072,81591.82615,308551.7005,109789.1444,21
+166073,81366.54302,306731.8537,105916.5444,21
+166074,79763.92676,304525.3682,104198.671,21
+166075,79310.11214,303225.0132,102666.5969,21
+166076,78312.70723,301068.0096,101444.0342,21
+166077,77312.43609,299138.4584,100142.4957,21
+166078,76393.97217,297583.9456,98476.6652,21
+166079,75728.58665,295486.5134,96880.64772,21
+166080,74706.2328,293602.7826,95936.98047,21
+166081,73832.32187,291670.7253,94314.83082,21
+166082,72616.60654,289186.533,92814.38563,21
+166083,72084.71123,287223.0056,91876.60576,21
+166084,70992.21312,285166.2412,90303.33022,21
+166085,69836.61879,282555.0446,89243.67763,21
+166086,69287.36664,280773.4092,87783.90859,21
+166087,67970.34388,278731.278,86598.73459,21
+166088,67400.15585,277045.3643,85069.46986,21
+166089,66121.34005,274694.4053,84026.70647,21
+166090,65547.56846,272869.0398,82312.53275,21
+166091,64339.41609,270591.7674,81690.56252,21
+166092,63508.45407,268514.7716,79615.14812,21
+166093,62645.73326,266146.4812,79193.37752,21
+166094,61832.2871,264493.7645,77282.36884,21
+166095,60878.81747,261182.938,76228.3991,21
+166096,60575.33235,260284.6761,75026.04517,21
+166097,59497.83235,255609.1882,73418.70881,21
+166098,58680.26759,253909.9918,72580.75505,21
+166099,58112.46228,251169.2259,71083.0903,21
+166100,56971.26563,249060.9886,70175.26595,21
+166101,56555.73554,246428.2558,69301.56678,21
+166102,55625.89639,244523.7803,68444.39621,21
+166103,54745.82893,241784.3096,67559.35902,21
+166104,54089.32494,239332.7264,67263.11205,21
+166105,53329.32984,237326.9803,66234.052,21
+166106,52292.7724,234365.6259,65678.99779,21
+166107,51762.44277,232238.2651,64935.07082,21
+166108,50588.43304,230101.0162,64493.58464,21
+166109,50206.51055,226920.2553,63515.12146,21
+166110,49071.33028,224747.5172,62796.56086,21
+166111,48340.00852,222509.1338,62257.69049,21
+166112,47631.58883,219750.8434,61373.55832,21
+166113,46615.36044,217535.8784,60489.8461,21
+166114,46030.77191,214970.5131,59889.90923,21
+166115,45032.48977,212591.4123,58769.76404,21
+166116,44332.02726,210382.5844,58117.63665,21
+166117,43373.52329,207531.1736,57352.38481,21
+166118,42442.40471,205256.0261,56460.76436,21
+166119,41910.55986,202829.591,55719.83305,21
+166120,40667.54105,200560.455,26607.43794,21
+166121,40113.69718,198279.3974,25585.77472,21
+166122,39142.1,195744.1329,25571.3836,21
+166123,38038.35446,193103.9775,24636.7841,21
+166124,37485.07056,190672.3385,23969.82783,21
+166125,36501.05298,188192.6558,23476.92894,21
+166126,35462.9612,185775.895,23027.86137,21
+166127,34806.33941,183082.6223,22559.15148,21
+166128,33788.61947,180735.798,22113.12729,21
+166129,32940.378,177796.1251,21462.63771,21
+166130,31845.13565,175334.6456,21160.03024,21
+166131,30999.2135,172660.6048,20692.51829,21
+166132,30098.60362,170077.109,20223.67168,21
+166133,29105.43547,167474.4734,19730.99075,21
+166134,28253.54793,164460.3657,19264.69916,21
+166135,27325.35524,161931.1005,18974.38419,21
+166136,26741.19247,159287.6591,18280.47627,21
+166137,26413.73932,156305.1641,17852.64346,21
+166138,25739.78226,153833.6774,17530.44807,21
+166139,25292.89567,150957.2813,16844.60834,21
+166140,24925.90602,148122.5201,16549.49821,21
+166141,23958.49831,144466.668,15470.35407,21
+166142,23687.3596,141453.8188,15094.69379,21
+166143,23589.56997,139512.2965,14691.32279,21
+166144,23319.32266,136351.9312,14369.46025,21
+166145,22992.49037,134025.1128,14057.23307,21
+166146,22937.0201,131412.3633,13644.59194,21
+166147,22515.57313,128783.7493,13251.19768,21
+166148,22436.20355,126031.2946,12899.60007,21
+166149,22224.89609,123523.5614,12685.95369,21
+166150,21868.54228,120548.0804,12086.69658,21
+166151,21794.68795,118209.0876,11934.94224,21
+166152,21391.79899,115446.0178,11624.62385,21
+166153,21380.48869,112517.5096,11053.35626,21
+166154,20958.39339,110090.3118,10834.62014,21
+166155,20822.49774,108631.1219,10574.16632,21
+166156,20496.49024,106894.9379,10099.33396,21
+166157,20413.09996,105658.5487,9806.728837,21
+166158,19997.50011,103702.8044,9489.369948,21
+166159,19869.44186,102551.5406,9018.697385,21
+166160,19698.80017,101296.7934,8870.887108,21
+166161,19223.76085,99700.23945,8255.11108,21
+166162,19264.77035,98286.36008,8510.029704,21
+166163,18713.47316,96537.31455,7852.812335,21
+166164,18815.25598,95108.81493,7775.6505,21
+166165,18271.89,93487.69328,7256.622082,21
+166166,18177.70147,88749.45458,7145.168761,21
+166167,18042.45451,86319.70134,6690.752665,21
+166168,17529.38934,84776.83447,6344.214724,21
+166169,17390.41255,82386.66242,6067.738869,21
+166170,17041.24332,80189.66547,5799.268644,21
+166171,16851.90661,78582.4658,5556.187392,21
+166172,16645.36463,76898.46922,5325.12288,21
+166173,16560.06477,75188.83171,5261.225503,21
+166174,16163.33998,73892.0259,4862.824801,21
+166175,16264.99165,72259.56972,4962.515362,21
+166176,15866.93464,70801.95141,4414.500681,21
+166177,15891.12241,69277.91925,4515.605417,21
+166178,15525.75595,67885.86667,4080.059983,21
+166179,15525.75232,66431.98419,3842.529285,21
+166180,15226.35122,65094.1039,3793.056314,21
+166181,15014.32756,63436.19755,3556.122155,21
+166182,14959.01087,62220.81854,3315.189212,21
+166183,14690.62922,61023.93807,3247.161041,21
+166184,14657.03093,59762.01868,2862.170635,21
+166185,14296.85569,58762.64894,2971.817258,21
+166186,14252.24334,57434.82062,2654.885629,21
+166187,14003.46233,56431.69535,2456.597573,21
+166188,13832.76603,55231.78685,2460.594242,21
+166189,13720.26917,54122.28871,2355.04149,21
+166190,13526.17852,52925.89672,2322.3109,21
+166191,13297.5304,51962.68119,2252.836109,21
+166192,13033.55711,50577.88842,2203.209055,21
+166193,13091.48433,49763.25353,2131.550865,21
+166194,12723.02677,48336.11304,2098.16103,21
+166195,12699.49954,47412.2347,2010.876324,21
+166196,12410.34281,46466.82919,1975.518898,21
+166197,12165.69856,45372.92093,1922.988817,21
+166198,12119.70857,44195.55783,1870.134759,21
+166199,11850.25373,43043.63067,1798.379414,21
+166200,11827.32144,41698.78378,1726.05267,21
+166201,11826.77222,36189.1124,1835.418872,21
+166202,11815.40987,34746.92078,1717.172627,21
+166203,11615.23854,33752.34253,1690.082193,21
+166204,11521.75741,32367.98398,1615.685185,21
+166205,11226.26147,31279.33872,1634.315601,21
+166206,11190.36882,29887.42225,1559.74378,21
+166207,10941.54553,28806.03466,1559.758512,21
+166208,10893.2439,27489.45538,1541.071939,21
+166209,10618.92088,26413.59411,1484.849405,21
+166210,10594.46411,25074.13618,1484.862889,21
+166211,10331.00303,24037.69776,1447.272078,21
+166212,10174.22009,22972.05449,1428.448353,21
+166213,10029.23591,21545.48831,1409.601021,21
+166214,9979.226458,20620.7479,1352.892169,21
+166215,9713.350837,19486.65044,1352.903563,21
+166216,9566.539114,18311.10433,1333.95985,21
+166217,9420.219127,17071.16014,1276.95867,21
+166218,9368.802374,16626.1057,1276.968923,21
+166219,9106.092429,16329.32359,1238.845765,21
+166220,8841.280692,15909.23126,1219.750451,21
+166221,9034.432924,15760.35672,1181.471788,21
+166222,8516.75138,15436.33572,1181.48068,21
+166223,8625.552576,15177.70641,1123.857783,21
+166224,8326.411271,14977.1679,1085.309018,21
+166225,8178.961751,14632.52208,1065.994917,21
+166226,8158.516581,14595.19161,1027.274639,21
+166227,7911.092636,14544.22588,1007.873991,21
+166228,7898.395809,14283.49404,988.4434395,21
+166229,7649.779551,14121.16313,949.4848565,21
+166230,7649.780635,14081.92569,910.4021115,21
+166231,7387.174185,13932.77435,910.4082326,21
+166232,7387.175323,13907.0285,871.1973472,21
+166233,7374.339494,13616.88901,831.8542486,21
+166234,7123.225271,13580.33076,831.8588732,21
+166235,7110.319015,13578.84934,772.5841404,21
+166236,6984.282979,13264.48228,792.3824358,21
+166237,6857.929799,13375.2312,752.7612708,21
+166238,6844.951083,13113.64011,732.8975821,21
+166239,6705.22349,13058.55527,712.9962009,21
+166240,6591.227211,12907.36028,673.0742583,21
+166241,6578.174542,12882.55599,653.0553071,21
+166242,6437.689201,12728.13401,632.9953809,21
+166243,6309.945038,12576.23284,592.7461527,21
+166244,6309.945901,12664.35434,572.5573344,21
+166245,6283.612059,12268.66178,552.3232558,21
+166246,6040.216087,12470.48278,511.7123168,21
+166247,6026.98477,12103.17443,511.7141569,21
+166248,5911.398939,12149.88041,450.4234587,21
+166249,5884.856518,12036.07857,450.4248994,21
+166250,5742.284907,11855.93599,429.8892931,21
+166251,5639.358741,11840.58332,388.6451316,21
+166252,5612.655689,11673.98698,367.9330356,21
+166253,5482.648691,11518.49487,326.31369,21
+166254,5469.229132,11491.05655,326.3144682,21
+166255,5338.809606,11478.83667,305.4013338,21
+166256,5207.99697,11166.4732,242.1972992,21
+166257,5194.493422,11295.66966,263.3479675,21
+166258,5194.511484,10969.75286,220.9583062,21
+166259,4931.602745,10983.95136,178.1801079,21
+166260,5036.10634,10942.50613,178.1803493,21
+166261,8896.469971,15353.36006,752.8200991,21
+166262,8896.470224,15352.93402,752.8239278,21
+166263,8870.631158,15206.30419,713.0517783,21
+166264,8761.684958,15129.12609,693.1103759,21
+166265,8626.566341,14896.89203,673.1297686,21
+166266,8600.532809,14805.62347,673.1328677,21
+166267,8394.475277,14820.96308,612.9412518,21
+166268,8355.314006,14508.43156,612.943846,21
+166269,8355.22436,14346.37341,592.7972725,21
+166270,8108.918441,14321.79158,572.606664,21
+166271,8109.047062,14157.78312,532.0863124,21
+166272,7972.224481,13844.15746,532.088294,21
+166273,7848.376323,14106.70737,491.3766919,21
+166274,7710.97746,13529.26646,491.3783944,21
+166275,7461.750781,13629.23788,450.4633767,21
+166276,7350.037405,13463.5175,409.3307652,21
+166277,7323.333339,13313.40423,409.3319655,21
+166278,7197.958242,13134.57617,347.1859544,21
+166279,7072.280687,13121.89315,367.9654406,21
+166280,7058.832537,12816.64237,305.4266331,21
+166281,6806.49616,12777.01983,326.3430301,21
+166282,6806.496036,12623.8441,263.3697896,21
+166283,6779.401848,12444.64829,263.370303,21
+166284,6552.895159,12430.44112,242.2186889,21
+166285,6525.685163,12122.40489,220.9773273,21
+166286,6284.342483,12097.64714,199.6391413,21
+166287,6384.661292,12054.84722,188.9312813,21
+166288,6142.650417,11632.98368,156.6362218,21
+166289,6128.91119,11732.12318,134.9477181,21
+166290,6000.525026,11564.77029,134.9478581,21
+166291,5972.892544,11394.71612,91.10772853,21
+166292,5742.701533,11239.77492,91.10779351,21
+166293,5599.355848,11068.93852,68.89802428,21
+166294,5585.418943,11014.20204,46.42777793,21
+166295,5455.510331,10741.61574,23.58865179,21
+166296,5325.303258,10686.50062,0,21
+166297,5180.574744,10528.87983,0,21
+166298,5063.608634,10357.20118,0,21
+166299,5035.385673,10198.8236,0,21
+166300,4786.174139,10141.93434,0,21
+166301,4771.975017,9853.213078,0,21
+166302,4639.647198,9809.833894,0,21
+166303,4388.005174,9650.892319,0,21
+166304,4478.238235,9461.870321,0,21
+166305,4225.670393,9316.13431,0,21
+166306,4105.948102,9250.218358,0,21
+166307,4062.566457,9097.344863,0,21
+166308,3836.300893,8935.32618,0,21
+166309,3792.680341,8611.442558,0,21
+166310,3671.610064,8707.33204,0,21
+166311,3520.774929,8537.310892,0,21
+166312,3520.774914,8240.641084,0,21
+166313,3246.716651,8180.489174,0,21
+166314,3231.921596,8180.226167,0,21
+166315,2970.348083,7844.009373,0,21
+166316,3079.10556,7954.547274,0,21
+166317,2691.4799,7639.575982,0,21
+166318,2786.294648,7457.116307,0,21
+166319,2661.468073,7281.439055,0,21
+166320,2379.666908,7106.335421,0,21
+166321,126.216396,3036.95431,0,21
+166322,91.69713881,2735.729031,0,21
+166323,74.13054773,2870.57951,0,21
+166324,74.13054299,2703.126082,0,21
+166325,47.27996025,2551.064506,0,21
+166326,38.15862436,2518.276959,0,21
+166327,38.15849103,2381.613221,0,21
+166328,28.92469133,2332.219337,0,21
+166329,19.54804478,2022.678575,0,21
+166330,0,2022.678629,0,21
+166331,0,1989.505294,0,21
+166332,0,1674.688795,0,21
+166333,0,1816.165724,0,21
+166334,0,1641.312151,0,21
+166335,0,1481.512934,0,21
+166336,0,1464.745751,0,21
+166337,0,1447.924601,0,21
+166338,0,1122.142529,0,21
+166339,0,1252.386575,0,21
+166340,0,921.3217407,0,21
+166341,0,1088.333862,0,21
+166342,0,802.3286361,0,21
+166343,0,716.0778115,0,21
+166344,0,698.9682915,0,21
+166345,0,610.8959162,0,21
+166346,0,484.8446997,0,21
+166347,0,502.0798173,0,21
+166348,0,450.1766464,0,21
+166349,0,484.8447775,0,21
+166350,0,432.739734,0,21
+166351,0,432.738884,0,21
+166352,0,432.7387582,0,21
+166353,0,397.648094,0,21
+166354,0,397.6480906,0,21
+166355,0,388.8284526,0,21
+166356,0,362.2513403,0,21
+166357,0,362.2513389,0,21
+166358,0,344.4309093,0,21
+166359,0,326.5246344,0,21
+166360,0,308.5287209,0,21
+166361,0,308.5287232,0,21
+166362,0,290.4389217,0,21
+166363,0,272.250461,0,21
+166364,0,253.9579592,0,21
+166365,0,253.9579632,0,21
+166366,0,235.5552437,0,21
+166367,0,217.0351995,0,21
+166368,0,207.7286456,0,21
+166369,0,198.3895346,0,21
+166370,0,179.6084132,0,21
+166371,0,160.67998,0,21
+166372,0,141.589671,0,21
+166373,0,122.3190915,0,21
+166374,0,102.844227,0,21
+166375,0,83.13226112,0,21
+166376,0,63.13536389,0,21
+166377,0,42.77639151,0,21
+166378,0,21.9056974,0,21
+166379,0,0,0,21
+166380,0,0,0,21
+166381,0,0,0,21
+166382,0,0,0,21
+166383,0,0,0,21
+166384,0,0,0,21
+166385,0,0,0,21
+166386,0,0,0,21
+166387,0,0,0,21
+166388,0,0,0,21
+166389,0,0,0,21
+166390,0,0,0,21
+166391,0,0,0,21
+166392,0,0,0,21
+166393,0,0,0,21
+166394,0,0,0,21
+166395,0,0,0,21
+166396,0,0,0,21
+166397,0,0,0,21
+166398,0,0,0,21
+166399,0,0,0,21
+166400,0,0,0,21
+166401,0,0,0,21
+166402,0,0,0,21
+166403,0,0,0,21
+166404,0,0,0,21
+166405,0,0,0,21
+166406,0,0,0,21
+166407,0,0,0,21
+166408,0,0,0,21
+166409,0,0,0,21
+166410,0,0,0,21
+166411,0,0,0,21
+166412,0,0,0,21
+166413,0,0,0,21
+166414,0,0,0,21
+166415,0,0,0,21
+166416,0,0,0,21
+166417,0,0,0,21
+166418,0,0,0,21
+166419,0,0,0,21
+166420,0,0,0,21
+166421,0,0,0,21
+166422,0,0,0,21
+166423,0,0,0,21
+166424,0,0,0,21
+166425,0,0,0,21
+166426,0,0,0,21
+166427,0,0,0,21
+166428,0,0,0,21
+166429,0,0,0,21
+166430,0,0,0,21
+166431,0,0,0,21
+166432,0,0,0,21
+166433,0,0,0,21
+166434,0,0,0,21
+166435,0,0,0,21
+166436,0,0,0,21
+166437,0,0,0,21
+166438,0,0,0,21
+166439,0,0,0,21
+166440,0,0,0,21
+166441,0,0,0,21
+166442,0,0,0,21
+166443,0,0,0,21
+166444,0,0,0,21
+166445,0,0,0,21
+166446,0,0,0,21
+166447,0,0,0,21
+166448,0,0,0,21
+166449,0,0,0,21
+166450,0,0,0,21
+166451,0,0,0,21
+166452,0,0,0,21
+166453,0,0,0,21
+166454,0,0,0,21
+166455,0,0,0,21
+166456,0,0,0,21
+166457,0,0,0,21
+166458,0,0,0,21
+166459,0,0,0,21
+166460,0,0,0,21
+166461,0,0,0,21
+166462,0,0,0,21
+166463,0,0,0,21
+166464,0,0,0,21
+166465,0,0,0,21
+166466,0,0,0,21
+166467,0,0,0,21
+166468,0,0,0,21
+166469,0,0,0,21
+166470,0,0,0,21
+166471,0,0,0,21
+166472,0,0,0,21
+166473,0,0,0,21
+166474,0,0,0,21
+166475,0,0,0,21
+166476,0,0,0,21
+166477,0,0,0,21
+166478,0,0,0,21
+166479,0,0,0,21
+166480,0,0,0,21
+166481,0,0,0,21
+166482,0,0,0,21
+166483,0,0,0,21
+166484,0,0,0,21
+166485,0,0,0,21
+166486,0,0,0,21
+166487,0,0,0,21
+166488,0,0,0,21
+166489,0,0,0,21
+166490,0,0,0,21
+166491,0,0,0,21
+166492,0,0,0,21
+166493,0,0,0,21
+166494,0,0,0,21
+166495,0,0,0,21
+166496,0,0,0,21
+166497,0,0,0,21
+166498,0,0,0,21
+166499,0,0,0,21
+166500,0,0,0,21
+166501,0,0,0,21
+166502,0,0,0,21
+166503,0,0,0,21
+166504,0,0,0,21
+166505,0,0,0,21
+166506,0,0,0,21
+166507,0,0,0,21
+166508,0,0,0,21
+166509,0,0,0,21
+166510,0,0,0,21
+166511,0,0,0,21
+166512,0,0,0,21
+166513,0,0,0,21
+166514,0,0,0,21
+166515,0,0,0,21
+166516,0,0,0,21
+166517,0,0,0,21
+166518,0,0,0,21
+166519,0,0,0,21
+166520,0,0,0,21
+166521,0,0,0,21
+166522,0,0,0,21
+166523,0,0,0,21
+166524,0,0,0,21
+166525,0,0,0,21
+166526,0,0,0,21
+166527,0,0,0,21
+166528,0,0,0,21
+166529,0,0,0,21
+166530,0,0,0,21
+166531,0,0,0,21
+166532,0,0,0,21
+166533,0,0,0,21
+166534,0,0,0,21
+166535,0,0,0,21
+166536,0,0,0,21
+166537,0,0,0,21
+166538,0,0,0,21
+166539,0,0,0,21
+166540,0,0,0,21
+166541,0,0,0,21
+166542,0,0,0,21
+166543,0,0,0,21
+166544,0,0,0,21
+166545,0,0,0,21
+166546,0,0,0,21
+166547,0,0,0,21
+166548,0,0,0,21
+166549,0,0,0,21
+166550,0,0,0,21
+166551,0,0,0,21
+166552,0,0,0,21
+166553,0,0,0,21
+166554,0,0,0,21
+166555,0,0,0,21
+166556,0,0,0,21
+166557,0,0,0,21
+166558,0,0,0,21
+166559,0,0,0,21
+166560,0,0,0,21
+166561,0,0,0,21
+166562,0,0,0,21
+166563,0,0,0,21
+166564,0,0,0,21
+166565,0,0,0,21
+166566,0,0,0,21
+166567,0,0,0,21
+166568,0,0,0,21
+166569,0,0,0,21
+166570,0,0,0,21
+166571,0,0,0,21
+166572,0,0,0,21
+166573,0,0,0,21
+166574,0,0,0,21
+166575,0,0,0,21
+166576,0,0,0,21
+166577,0,0,0,21
+166578,0,0,0,21
+166579,0,0,0,21
+166580,0,0,0,21
+166581,0,0,0,21
+166582,0,0,0,21
+166583,0,0,0,21
+166584,0,0,0,21
+166585,0,0,0,21
+166586,0,0,0,21
+166587,0,0,0,21
+166588,0,0,0,21
+166589,0,0,0,21
+166590,0,0,0,21
+166591,0,0,0,21
+166592,0,0,0,21
+166593,0,0,0,21
+166594,0,0,0,21
+166595,0,0,0,21
+166596,0,0,0,21
+166597,0,0,0,21
+166598,0,0,0,21
+166599,0,0,0,21
+166600,0,0,0,21
+166601,0,0,0,21
+166602,0,0,0,21
+166603,0,0,0,21
+166604,0,0,0,21
+166605,0,0,0,21
+166606,0,0,0,21
+166607,0,0,0,21
+166608,0,0,0,21
+166609,0,0,0,21
+166610,0,0,0,21
+166611,0,0,0,21
+166612,0,0,0,21
+166613,0,0,0,21
+166614,0,0,0,21
+166615,0,0,0,21
+166616,0,0,0,21
+166617,0,0,0,21
+166618,0,0,0,21
+166619,0,0,0,21
+166620,0,1199.890176,0,21
+166621,0,4406.416365,0,21
+166622,0,5296.215635,0,21
+166623,0,5592.117804,0,21
+166624,0,5974.849606,0,21
+166625,0,6187.280999,0,21
+166626,0,6486.62632,0,21
+166627,0,6801.702356,0,21
+166628,0,6958.554111,0,21
+166629,0,7409.282737,0,21
+166630,3026.193619,7581.567455,0,21
+166631,1775.603762,7856.469808,0,21
+166632,2533.009522,8052.866314,0,21
+166633,2780.651806,8470.014721,0,21
+166634,3026.193403,8622.424857,0,21
+166635,3390.868146,8942.803712,0,21
+166636,3511.514833,9077.39493,0,21
+166637,3870.894167,9395.42183,0,21
+166638,4108.452834,9662.421552,0,21
+166639,4344.477269,9977.581093,0,21
+166640,4695.779677,10110.0314,0,21
+166641,4812.180426,10423.02162,0,21
+166642,5159.374247,10554.60267,0,21
+166643,5274.455533,10996.23019,0,21
+166644,5731.674437,11126.69216,0,21
+166645,5731.674215,11305.08409,0,21
+166646,6184.14838,11694.03572,0,21
+166647,6184.148117,11741.87818,0,21
+166648,6632.143147,12128.45758,0,21
+166649,6937.594192,12304.2936,0,21
+166650,7270.012988,12560.21797,0,21
+166651,7302.989259,12591.72279,0,21
+166652,7759.018767,13131.91559,0,21
+166653,7916.776743,13147.52677,0,21
+166654,8057.727186,13416.0652,0,21
+166655,8399.358392,13573.22779,0,21
+166656,8538.928003,13840.22932,0,21
+166657,8801.165925,14200.26,0,21
+166658,9015.871989,14435.52079,0,21
+166659,9275.779885,14753.01247,0,21
+166660,9397.613171,14789.77107,0,21
+166661,9655.554396,15098.35523,0,21
+166662,9867.257775,15389.13231,0,21
+166663,10017.72698,15571.42054,0,21
+166664,10243.07403,15998.93007,0,21
+166665,10497.0831,16056.09349,0,21
+166666,10705.95435,16588.78774,0,21
+166667,10824.0185,16523.51373,0,21
+166668,11351.22283,16945.85696,0,21
+166669,11385.66531,17095.67352,0,21
+166670,11704.76446,17258.8532,0,21
+166671,11953.62623,17557.03866,0,21
+166672,12031.54468,17852.88824,0,21
+166673,14483.69964,17867.5957,0,21
+166674,13817.18006,18190.22611,0,21
+166675,14665.91646,18458.50083,0,21
+166676,15208.6139,18736.51348,0,21
+166677,15471.63817,18672.90161,0,21
+166678,16232.47352,19057.06854,0,21
+166679,16405.85173,19361.89569,0,21
+166680,17330.03704,19389.31218,0,21
+166681,17535.77528,19664.09996,0,21
+166682,18150.79064,19956.74792,0,21
+166683,18556.24202,19993.79246,0,21
+166684,19071.43797,20256.87172,0,21
+166685,19700.66207,20557.33845,0,21
+166686,19911.79284,20570.00274,0,21
+166687,20614.83893,20869.276,0,21
+166688,20899.25757,21115.70962,0,21
+166689,21442.19541,21194.1534,0,21
+166690,21930.24772,21425.70931,0,21
+166691,22222.07678,21774.92828,0,21
+166692,22926.88494,22005.06596,0,21
+166693,23115.53325,22297.81796,0,21
+166694,23710.23483,22351.89008,0,21
+166695,24101.12431,22617.32483,0,21
+166696,25063.66317,22759.17983,0,21
+166697,27194.221,23035.50389,0,21
+166698,26874.8469,23190.53547,0,21
+166699,27656.2102,23365.99344,0,21
+166700,28446.84323,23479.25932,0,21
+166701,29009.71349,23768.71195,0,21
+166702,29209.24998,24349.77,0,21
+166703,29478.01135,24057.22014,0,21
+166704,30222.29064,24344.78881,0,21
+166705,30593.17422,24386.4418,0,21
+166706,31549.63729,24866.5945,0,21
+166707,31725.94981,24682.02956,0,21
+166708,32449.16722,25165.11995,0,21
+166709,33026.15037,25238.71215,0,21
+166710,33661.47838,27538.29411,0,21
+166711,34024.41031,27526.30339,0,21
+166712,34838.14796,28197.95703,0,21
+166713,35002.91111,28366.72581,0,21
+166714,35665.43008,28889.88628,0,21
+166715,36239.99718,29133.33963,0,21
+166716,36723.93644,29752.13715,0,21
+166717,37163.92566,30081.14589,0,21
+166718,37791.61099,30492.29348,0,21
+166719,38315.93054,30624.90804,0,21
+166720,38762.00536,31208.25017,0,21
+166721,39191.96149,31382.5651,0,21
+166722,39928.10669,31510.10977,0,21
+166723,40435.34746,32415.82436,0,21
+166724,40909.93619,32402.82167,0,21
+166725,41469.42926,33052.22912,0,21
+166726,41937.82978,33187.50354,0,21
+166727,42359.29359,33924.73653,0,21
+166728,43023.42758,34067.1613,0,21
+166729,43434.63619,34901.0773,0,21
+166730,44047.63564,34840.8914,0,21
+166731,44291.49182,35423.74167,0,21
+166732,46813.88776,35835.38264,0,21
+166733,47380.65389,36092.14979,0,21
+166734,48262.32748,36461.16927,0,21
+166735,48877.84364,37062.38972,0,21
+166736,49050.3377,37742.93814,187.5861342,21
+166737,50109.55241,38165.13702,2429.434349,21
+166738,50364.17561,38507.14867,1331.650225,21
+166739,51157.93158,39158.87922,2094.886207,21
+166740,51486.90185,39483.50386,2262.539891,21
+166741,53955.33257,41395.15608,3256.410172,21
+166742,54861.97718,42287.46061,3909.504827,21
+166743,55353.49759,42602.37327,4233.684258,21
+166744,57448.253,43066.68905,4556.394566,21
+166745,57767.41698,43631.9783,4877.720914,21
+166746,58852.31157,43919.92726,5357.180705,21
+166747,59168.24032,44489.24874,5516.515525,21
+166748,59829.0445,45245.89938,6366.230733,21
+166749,60593.66879,45268.08829,6754.75376,21
+166750,60878.30987,46062.39164,6954.770713,21
+166751,61575.16963,46372.1938,7352.885988,21
+166752,62185.65548,47097.374,8526.027472,21
+166753,62743.70581,50904.69193,9072.35929,21
+166754,63137.56585,51282.55891,9093.382661,21
+166755,63771.87668,52097.74057,9923.177787,21
+166756,64225.15744,53128.34124,10456.17262,21
+166757,64908.74688,54398.21056,13168.86294,21
+166758,65138.98768,55095.2274,16456.61108,21
+166759,65952.72027,56530.67936,15265.67129,21
+166760,66342.07677,57256.90108,16812.00182,21
+166761,66818.85306,58035.93912,17703.95513,21
+166762,67303.94169,59680.52639,18820.25679,21
+166763,67711.21999,59927.14041,19516.29865,21
+166764,68299.88814,61497.32368,20370.89267,21
+166765,69195.48505,61842.75241,21455.46883,21
+166766,69504.27954,63321.22409,22011.68051,21
+166767,69813.43871,64137.68771,22989.80355,21
+166768,70536.99204,65214.03014,23949.68892,21
+166769,71142.23759,66040.43159,24535.68649,21
+166770,71229.3017,67020.27451,25583.44088,21
+166771,72048.68747,67819.15472,26307.1393,21
+166772,72521.04323,68876.74677,27069.50393,21
+166773,72772.40632,69906.99373,28118.39773,21
+166774,73486.2883,71965.78493,28665.76985,21
+166775,74065.90871,74352.3591,29593.54237,21
+166776,73976.84054,76765.13135,30215.58105,21
+166777,74884.59264,79232.5188,31559.45378,21
+166778,75282.2339,81360.79276,31710.68843,21
+166779,75712.86334,83851.17758,32777.09312,21
+166780,76096.23688,86096.05803,33578.76678,21
+166781,76625.55713,88455.13068,34262.63207,21
+166782,77082.14669,90738.6712,35051.14696,21
+166783,77427.53394,93149.89099,35988.6889,21
+166784,78047.28629,95204.68089,36384.73917,21
+166785,78093.52898,97641.41248,37467.42132,21
+166786,79096.90688,100109.5628,38088.25229,21
+166787,78915.86081,102109.3582,38923.10317,21
+166788,79724.64448,104481.8371,39785.087,21
+166789,80011.5033,106631.7863,40392.99017,21
+166790,80371.85876,108951.5892,41400.99831,21
+166791,81111.66218,111363.8204,42491.54061,21
+166792,81122.21191,113444.9696,43044.08998,21
+166793,81715.2181,115743.2015,44092.86507,21
+166794,82268.60392,118347.7833,44488.83988,21
+166795,82301.25614,120753.1465,45710.83469,21
+166796,83015.64355,122773.3241,46295.82261,21
+166797,83436.04449,125589.7376,46887.01661,21
+166798,83583.65166,127431.1324,48080.20113,21
+166799,84199.17571,130266.7263,48674.15622,21
+166800,84240.66007,132348.2703,49438.85411,21
+166801,85071.7918,134509.6076,50055.15672,21
+166802,84976.86588,136733.1566,50428.85251,21
+166803,85719.58226,138448.7493,51240.72189,21
+166804,85690.76902,140822.6814,51933.82898,21
+166805,86444.87037,142883.5509,52036.20614,21
+166806,86305.05857,146158.8608,53271.83177,21
+166807,87198.21212,147713.8253,53256.5727,21
+166808,88079.4417,150124.3701,54205.63179,21
+166809,89535.02206,152362.3161,54564.7935,21
+166810,89341.43411,154306.2884,55201.57817,21
+166811,90316.77161,156540.3029,55789.85781,21
+166812,90687.92738,159217.8348,56071.16751,21
+166813,91059.59479,160638.1745,57019.00934,21
+166814,92006.91874,163304.2104,57436.55698,21
+166815,92358.69509,165632.1604,57637.19352,21
+166816,92941.02736,168732.2483,58675.45013,21
+166817,93174.13252,171860.4191,58721.12316,21
+166818,94053.75824,174280.3946,59559.22549,21
+166819,94384.64558,177040.209,59913.26763,21
+166820,94990.76395,179237.2311,60653.09258,21
+166821,95177.79526,181568.9407,61089.00476,21
+166822,96099.66651,184044.2889,61550.45832,21
+166823,96241.10834,186175.9242,61858.94619,21
+166824,97075.99798,188882.9916,62768.14895,21
+166825,97409.41279,190964.1793,63145.41375,21
+166826,97725.48959,193282.4731,64143.38099,21
+166827,98491.13866,199141.0889,64522.65632,21
+166828,98542.9439,202166.4375,64934.56658,21
+166829,99275.58908,204317.3362,65472.32017,21
+166830,100088.8674,207789.0998,66459.75345,21
+166831,99964.72549,210315.8591,66496.67355,21
+166832,100718.9541,213014.419,67352.889,21
+166833,100926.3112,215960.8686,67881.96138,21
+166834,101784.5141,218770.0513,68429.89411,21
+166835,102017.5368,220982.7319,69651.64441,21
+166836,102361.1351,224078.1857,72617.81485,21
+166837,103036.4507,226507.0205,72486.35582,21
+166838,103140.4555,229293.9975,73181.3331,21
+166839,104245.3101,231851.2803,74375.90958,21
+166840,103720.4604,234573.4891,75173.70724,21
+166841,104921.6553,236485.784,75727.06566,21
+166842,105173.6552,239806.2548,77043.05315,21
+166843,105255.657,242035.103,77535.78925,21
+166844,106071.092,244480.8127,78502.96091,21
+166845,106593.9682,247194.0492,79200.86167,21
+166846,106521.0069,249602.522,80147.41458,21
+166847,107450.6199,252098.6049,80914.07442,21
+166848,107379.4531,254315.1712,81618.37807,21
+166849,108215.3912,257044.9133,82475.34345,21
+166850,108407.5757,260937.4542,83216.36149,21
+166851,108687.8509,263658.9318,84148.89924,21
+166852,109268.0691,265978.1945,84814.78284,21
+166853,109818.5504,268476.3692,85943.77343,21
+166854,110085.1123,271269.5619,86143.63546,21
+166855,110331.0346,273142.3385,87345.50423,21
+166856,111017.9497,275613.9751,87944.48648,21
+166857,110848.7335,278315.1312,88365.57483,21
+166858,112004.785,280407.09,89935.29747,21
+166859,111889.9085,282945.3906,90030.84405,21
+166860,112239.4171,284877.6019,90971.33272,21
+166861,0,0,0,21
+166862,0,0,0,21
+166863,82218.73693,0,0,21
+166864,0,115.7878812,0,21
+166865,0,368287.6732,1608637.736,21
+166866,339859.6672,0,0,21
+166867,0,0,0,21
+166868,0,137.5189668,0,21
+166869,0,0,0,21
+166870,0,0,0,21
+166871,0,0,0,21
+166872,0,104.2065807,0,21
+166873,0,0,0,21
+166874,0,0,0,21
+166875,0,0,0,21
+166876,0,121.0602503,0,21
+166877,0,0,0,21
+166878,0,0,0,21
+166879,0,0,0,21
+166880,0,119.4936467,0,21
+166881,0,0,0,21
+166882,0,0,0,21
+166883,0,0,0,21
+166884,0,117.0010643,0,21
+166885,0,0,0,21
+166886,0,0,0,21
+166887,0,0,0,21
+166888,0,115.5849873,0,21
+166889,0,0,0,21
+166890,0,0,0,21
+166891,0,0,0,21
+166892,0,116.3882821,0,21
+166893,0,0,0,21
+166894,0,0,0,21
+166895,0,0,0,21
+166896,0,118.1615287,0,21
+166897,0,0,0,21
+166898,0,0,0,21
+166899,0,368319.1281,1525588.24,21
+166900,0,118.554938,0,21
+166901,339858.7821,0,0,21
+166902,0,0,0,21
+166903,0,0,0,21
+166904,0,98.95919285,0,21
+166905,0,0,0,21
+166906,0,0,0,21
+166907,0,0,0,21
+166908,0,106.9898532,0,21
+166909,0,0,0,21
+166910,0,0,0,21
+166911,0,0,0,21
+166912,0,123.166262,0,21
+166913,0,0,0,21
+166914,0,0,0,21
+166915,0,0,0,21
+166916,0,126.0929673,0,21
+166917,0,0,0,21
+166918,0,0,0,21
+166919,0,0,0,21
+166920,0,123.6538932,0,15.6
+166921,0,0,0,15.6
+166922,0,0,0,15.6
+166923,0,0,0,15.6
+166924,0,157.7313082,0,15.6
+166925,0,0,0,15.6
+166926,0,0,0,15.6
+166927,0,0,0,15.6
+166928,0,133.0269408,0,15.6
+166929,0,0,0,15.6
+166930,0,0,0,15.6
+166931,0,0,0,15.6
+166932,0,130.9428484,0,15.6
+166933,0,0,0,15.6
+166934,0,368336.7481,1450064.861,15.6
+166935,0,0,0,15.6
+166936,339861.7573,119.7712308,0,15.6
+166937,0,0,0,15.6
+166938,0,0,0,15.6
+166939,0,0,0,15.6
+166940,0,98.5442212,0,15.6
+166941,0,0,0,15.6
+166942,0,0,0,15.6
+166943,0,0,0,15.6
+166944,0,118.3768779,0,15.6
+166945,0,0,0,15.6
+166946,0,0,0,15.6
+166947,0,0,0,15.6
+166948,0,130.7451522,0,15.6
+166949,0,0,0,15.6
+166950,0,0,0,15.6
+166951,0,0,0,15.6
+166952,0,136.4892692,0,15.6
+166953,0,0,0,15.6
+166954,0,0,0,15.6
+166955,0,0,0,15.6
+166956,0,138.3812318,0,15.6
+166957,0,0,0,15.6
+166958,0,0,0,15.6
+166959,0,0,0,15.6
+166960,0,137.2225158,0,15.6
+166961,0,0,0,15.6
+166962,0,0,0,15.6
+166963,0,0,0,15.6
+166964,0,133.8614732,0,15.6
+166965,0,0,0,15.6
+166966,0,0,0,15.6
+166967,0,0,0,15.6
+166968,0,127.9543557,0,15.6
+166969,0,368331.3625,1389363.764,15.6
+166970,0,0,38744.435,15.6
+166971,339868.4015,0,40246.87254,15.6
+166972,0,109.8781074,41923.76906,15.6
+166973,0,0,43659.47183,15.6
+166974,0,0,45518.72172,15.6
+166975,0,0,47371.69535,15.6
+166976,0,80.18233387,49203.80662,15.6
+166977,0,0,51008.15548,15.6
+166978,0,0,52779.51817,15.6
+166979,0,76282.11665,54514.18712,15.6
+166980,0,0,56210.05225,15.6
+166981,0,0,57215.89752,15.6
+166982,0,0,58183.49426,15.6
+166983,0,0,59112.2594,15.6
+166984,0,0,60007.80274,15.6
+166985,0,0,60870.82094,15.6
+166986,0,0,60578.40468,15.6
+166987,0,0,61332.54579,15.6
+166988,0,0,62061.33466,15.6
+166989,0,0,62766.82944,15.6
+166990,0,0,63451.03026,15.6
+166991,0,0,64115.90919,15.6
+166992,0,0,64763.30404,15.6
+166993,0,0,65394.89301,15.6
+166994,0,0,66012.29753,15.6
+166995,0,0,66616.86021,15.6
+166996,0,0,67209.9812,15.6
+166997,0,0,0,15.6
+166998,0,0,0,15.6
+166999,0,0,0,15.6
+167000,0,0,0,15.6
+167001,0,0,0,15.6
+167002,0,0,0,15.6
+167003,0,0,30506.18403,15.6
+167004,0,368319.3582,1309821.561,15.6
+167005,0,0,28803.30978,15.6
+167006,0,0,28828.0241,15.6
+167007,339866.1059,0,28858.2235,15.6
+167008,0,0,28888.96726,15.6
+167009,0,0,28918.33117,15.6
+167010,0,0,28945.61273,15.6
+167011,0,0,28970.43896,15.6
+167012,0,0,28992.51139,15.6
+167013,0,0,29011.64524,15.6
+167014,0,0,29027.74617,15.6
+167015,0,0,29040.7751,15.6
+167016,0,0,29050.80218,15.6
+167017,0,0,29058.04296,15.6
+167018,0,0,29062.56988,15.6
+167019,0,0,29064.6737,15.6
+167020,0,0,29064.56577,15.6
+167021,0,0,29062.39564,15.6
+167022,0,0,29058.41556,15.6
+167023,0,0,29052.84622,15.6
+167024,0,0,29045.80761,15.6
+167025,0,0,29037.49652,15.6
+167026,0,0,29028.11096,15.6
+167027,0,0,29017.70841,15.6
+167028,0,0,29006.49673,15.6
+167029,0,0,28994.50262,15.6
+167030,0,0,28981.88909,15.6
+167031,0,0,0,15.6
+167032,0,0,0,15.6
+167033,0,0,0,15.6
+167034,0,0,0,15.6
+167035,0,0,0,15.6
+167036,0,0,0,15.6
+167037,0,0,0,15.6
+167038,0,0,0,15.6
+167039,0,368304.2317,1193825.793,15.6
+167040,0,0,0,15.6
+167041,0,0,0,15.6
+167042,0,0,0,15.6
+167043,339861.5559,0,0,15.6
+167044,0,0,0,15.6
+167045,0,0,0,15.6
+167046,0,0,0,15.6
+167047,0,0,0,15.6
+167048,0,0,0,15.6
+167049,0,0,27244.41987,15.6
+167050,0,0,27226.89633,15.6
+167051,0,0,27243.36576,15.6
+167052,0,0,27276.01368,15.6
+167053,0,0,27313.78929,15.6
+167054,0,0,27351.72526,15.6
+167055,0,0,27388.08449,15.6
+167056,0,0,27422.15578,15.6
+167057,0,0,27453.56381,15.6
+167058,0,0,27482.01804,15.6
+167059,0,0,27507.29293,15.6
+167060,0,0,27529.28312,15.6
+167061,0,0,27548.06013,15.6
+167062,0,0,27563.59772,15.6
+167063,0,0,27576.14586,15.6
+167064,0,0,27585.8768,15.6
+167065,0,0,27593.04807,15.6
+167066,0,0,27597.87966,15.6
+167067,0,0,27600.60727,15.6
+167068,0,0,27601.41818,15.6
+167069,0,7.936869056,27600.5049,15.6
+167070,0,0,27598.09601,15.6
+167071,0,118.7761725,27594.32538,15.6
+167072,0,0,27589.36347,15.6
+167073,0,0,27583.40387,15.6
+167074,0,368299.0059,1105403.816,15.6
+167075,0,4.242830039,26441.68609,15.6
+167076,0,0,26436.21418,15.6
+167077,0,104.8096469,0,15.6
+167078,0,0,0,15.6
+167079,339866.2016,0,0,15.6
+167080,0,0,0,15.6
+167081,0,3.87110052,0,15.6
+167082,0,0,0,15.6
+167083,0,111.501458,0,15.6
+167084,0,0,0,15.6
+167085,0,0,0,15.6
+167086,0,0,0,15.6
+167087,0,71.48682519,0,15.6
+167088,0,0,0,15.6
+167089,0,0,0,15.6
+167090,0,0,0,15.6
+167091,0,106.9755471,0,15.6
+167092,0,0,0,15.6
+167093,0,0,0,15.6
+167094,0,0,22405.88582,15.6
+167095,0,105.4714342,25992.17897,15.6
+167096,0,0,25987.76709,15.6
+167097,0,0,26016.64705,15.6
+167098,0,0,26061.04808,15.6
+167099,0,111.1612017,26110.17625,15.6
+167100,0,0,26159.19054,15.6
+167101,0,0,26175.55926,15.6
+167102,0,0,26189.7517,15.6
+167103,0,112.4745829,26201.28851,15.6
+167104,0,0,26209.82077,15.6
+167105,0,0,26215.06761,15.6
+167106,0,0,26216.91877,15.6
+167107,0,114.100638,26215.39425,15.6
+167108,0,0,26210.60476,15.6
+167109,0,368294.3718,1041172.938,15.6
+167110,0,0,25237.49354,15.6
+167111,0,102.3175763,25226.60004,15.6
+167112,0,0,25213.19145,15.6
+167113,0,0,25197.49265,15.6
+167114,0,0,25179.67946,15.6
+167115,339866.7141,71.07564536,25159.95412,15.6
+167116,0,0,25138.52159,15.6
+167117,0,0,25115.62113,15.6
+167118,0,77322.04237,25091.45391,15.6
+167119,0,0,25066.2012,15.6
+167120,0,0,25039.98972,15.6
+167121,0,0,25012.93499,15.6
+167122,0,0,24985.11752,15.6
+167123,0,0,0,15.6
+167124,0,0,0,15.6
+167125,0,0,0,15.6
+167126,0,0,0,15.6
+167127,0,0,0,15.6
+167128,0,0,0,15.6
+167129,0,0,0,15.6
+167130,0,0,0,15.6
+167131,0,0,0,15.6
+167132,0,0,0,15.6
+167133,0,0,0,15.6
+167134,0,0,0,15.6
+167135,0,77415.85167,0,15.6
+167136,0,0,0,15.6
+167137,0,0,0,15.6
+167138,0,0,0,15.6
+167139,0,0,0,15.6
+167140,0,0,0,15.6
+167141,0,0,20372.04593,15.6
+167142,0,0,23935.51469,15.6
+167143,0,0,23909.24823,15.6
+167144,0,368285.8456,986246.7962,15.6
+167145,0,0,23131.8287,15.6
+167146,0,0,23161.23186,15.6
+167147,0,0,23190.18659,15.6
+167148,0,0,23217.06383,15.6
+167149,0,0,23241.33547,15.6
+167150,0,0,23262.74344,15.6
+167151,339862.6048,0,23280.99305,15.6
+167152,0,0,23295.83017,15.6
+167153,0,0,23307.15973,15.6
+167154,0,0,23315.02487,15.6
+167155,0,0,23319.55049,15.6
+167156,0,0,23320.90722,15.6
+167157,0,0,23319.28886,15.6
+167158,0,0,23314.89577,15.6
+167159,0,0,23307.95376,15.6
+167160,0,0,23298.68001,15.6
+167161,0,0,23287.30147,15.6
+167162,0,0,23274.01729,15.6
+167163,0,0,23259.0297,15.6
+167164,0,0,23242.5093,15.6
+167165,0,0,23224.62445,15.6
+167166,0,0,23205.51204,15.6
+167167,0,0,23185.31308,15.6
+167168,0,0,23164.13989,15.6
+167169,0,0,23142.10932,15.6
+167170,0,0,0,15.6
+167171,0,0,0,15.6
+167172,0,0,0,15.6
+167173,0,0,0,15.6
+167174,0,0,0,15.6
+167175,0,0,0,15.6
+167176,0,0,0,15.6
+167177,0,0,0,15.6
+167178,0,0,0,15.6
+167179,0,368283.4223,924022.8652,15.6
+167180,0,0,0,15.6
+167181,0,0,0,15.6
+167182,0,0,0,15.6
+167183,0,0,0,15.6
+167184,0,0,0,15.6
+167185,0,0,0,15.6
+167186,0,0,0,15.6
+167187,339849.3465,0,0,15.6
+167188,0,0,0,15.6
+167189,0,0,17797.23919,15.6
+167190,0,0,21367.90457,15.6
+167191,0,0,21350.10504,15.6
+167192,0,0,21366.50066,15.6
+167193,0,0,21398.39394,15.6
+167194,0,0,21434.61373,15.6
+167195,0,0,21470.26865,15.6
+167196,0,0,21503.74851,15.6
+167197,0,0,21534.55562,15.6
+167198,0,0,21562.42831,15.6
+167199,0,0,21587.11941,15.6
+167200,0,0,21608.37948,15.6
+167201,0,0,21626.04188,15.6
+167202,0,0,21640.09458,15.6
+167203,0,0,21650.65101,15.6
+167204,0,0,21657.88768,15.6
+167205,0,0,21662.0284,15.6
+167206,0,0,21663.29945,15.6
+167207,0,0,21661.93627,15.6
+167208,0,0,21658.15675,15.6
+167209,0,0,21652.18998,15.6
+167210,0,0,21644.24032,15.6
+167211,0,0,21634.51482,15.6
+167212,0,0,21623.1892,15.6
+167213,0,0,21610.43789,15.6
+167214,0,368288.6114,879394.4045,15.6
+167215,0,0,21067.41701,15.6
+167216,0,0,21052.62658,15.6
+167217,0,0,21036.90327,15.6
+167218,0,0,0,15.6
+167219,0,0,0,15.6
+167220,0,0,0,15.6
+167221,0,34333.80763,0,15.6
+167222,0,1111.958562,0,15.6
+167223,339831.434,8967.282653,35467.06082,15.6
+167224,0,14180.15883,83541.49059,15.6
+167225,0,15181.99213,84202.61345,15.6
+167226,0,12862.37253,85397.63236,15.6
+167227,0,13906.86457,86803.04718,15.6
+167228,0,13942.87933,88246.5714,15.6
+167229,0,14126.08845,89663.23762,15.6
+167230,0,14177.89814,91036.20619,15.6
+167231,0,14274.93979,92362.21259,15.6
+167232,0,14400.45099,93638.95425,15.6
+167233,0,14488.64414,94862.60792,15.6
+167234,0,14540.46466,96029.95099,15.6
+167235,0,14690.30081,97139.45617,15.6
+167236,0,14755.2326,98191.38558,15.6
+167237,0,14848.1804,99186.88526,15.6
+167238,0,14955.32063,100886.4696,15.6
+167239,0,15042.2743,106843.6862,15.6
+167240,0,15141.45793,107737.1263,15.6
+167241,0,15205.60066,108635.6475,15.6
+167242,0,15326.64324,109514.9831,15.6
+167243,0,15422.30211,110361.9467,15.6
+167244,0,15513.32008,111172.5436,15.6
+167245,0,15602.82993,111947.4214,15.6
+167246,0,15682.42043,112688.6916,15.6
+167247,0,15794.0309,113398.4859,15.6
+167248,0,15899.11792,1038792.11,15.6
+167249,0,384241.8042,113381.7683,15.6
+167250,0,16064.45442,114010.5919,15.6
+167251,0,0,114615.4973,15.6
+167252,0,0,23320.49355,15.6
+167253,0,0,23324.10951,15.6
+167254,0,0,23324.45249,15.6
+167255,0,0,23321.83908,15.6
+167256,0,0,23316.56152,15.6
+167257,0,0,23308.85704,15.6
+167258,339800.7824,44608.765,23299.03898,15.6
+167259,0,6418.64416,23287.30383,15.6
+167260,0,12942.88382,23273.78772,15.6
+167261,0,21338.00603,23258.73766,15.6
+167262,0,16412.79945,23242.25917,15.6
+167263,0,17275.79865,23224.50176,15.6
+167264,0,17435.05561,23205.62487,15.6
+167265,0,17498.26045,23185.72849,15.6
+167266,0,17606.49174,23164.91232,15.6
+167267,0,17656.56906,0,15.6
+167268,0,17791.38517,0,15.6
+167269,0,17844.50112,0,15.6
+167270,0,17918.71975,0,15.6
+167271,0,18046.0912,0,15.6
+167272,0,18119.36155,0,15.6
+167273,0,18179.45166,0,15.6
+167274,0,18275.56155,0,15.6
+167275,0,18396.02603,0,15.6
+167276,0,18445.47242,0,15.6
+167277,0,18524.5789,0,15.6
+167278,0,18670.0413,0,15.6
+167279,0,18660.88477,0,15.6
+167280,0,18850.05749,0,17.8
+167281,509722.5847,1083195.542,1382730.193,17.8
+167282,169319.1256,335355.7565,1299777.364,17.8
+167283,168575.0489,613761.774,271608.157,17.8
+167284,210168.3258,305850.2526,492103.3263,17.8
+167285,198097.5647,318897.8976,362553.9542,17.8
+167286,195010.3522,316899.8922,393206.6759,17.8
+167287,194192.2574,302336.5833,387921.2202,17.8
+167288,195268.2072,254711.3447,396546.6021,17.8
+167289,195063.6872,255010.098,400970.3858,17.8
+167290,195097.6374,348730.2077,403597.5486,17.8
+167291,195875.2915,280821.0197,410238.283,17.8
+167292,195671.0429,294276.2644,411506.2856,17.8
+167293,535844.67,315572.5824,416500.2002,17.8
+167294,196347.0964,300770.6721,418953.3967,17.8
+167295,196654.2364,303751.6208,423568.5125,17.8
+167296,197107.3989,303308.4132,426029.7856,17.8
+167297,197108.8237,303738.0894,430251.3391,17.8
+167298,195784.9132,302583.8733,433187.3617,17.8
+167299,195686.7204,303353.312,436348.7018,17.8
+167300,195745.0924,294441.3925,440559.4853,17.8
+167301,196756.8228,294078.1507,442872.3359,17.8
+167302,196707.5439,294531.1154,446917.6621,17.8
+167303,197066.2802,294067.5421,449364.1532,17.8
+167304,197937.5805,293430.6648,452820.6473,17.8
+167305,197538.5975,294293.7206,455794.2544,17.8
+167306,198421.7314,293291.306,458914.6498,17.8
+167307,198489.4254,293723.6271,462331.7807,17.8
+167308,199492.688,292906.4107,464715.836,17.8
+167309,199445.0399,293259.7681,467811.3219,17.8
+167310,199451.9278,293086.4506,472077.3099,17.8
+167311,0,49563.02892,34506.50428,17.8
+167312,0,49615.87306,34517.06051,17.8
+167313,0,49510.50128,34495.59609,17.8
+167314,79926.72878,49635.36192,235265.716,17.8
+167315,16475.33004,49392.29597,86509.94427,17.8
+167316,25230.94425,665301.4658,1228961.993,17.8
+167317,31883.95375,531417.3759,92591.6677,17.8
+167318,28732.0032,282208.6985,84726.41051,17.8
+167319,28779.13182,315927.6144,84569.35547,17.8
+167320,508959.6547,241774.263,84661.79426,17.8
+167321,79117.09854,242187.6684,1341628.683,17.8
+167322,210733.0565,242798.3722,266445.2523,17.8
+167323,222279.5439,346263.035,420286.7005,17.8
+167324,208479.8191,269614.512,508378.4146,17.8
+167325,208292.5618,281132.9451,447331.3976,17.8
+167326,208860.7272,311084.8374,459236.8902,17.8
+167327,209375.4265,295261.0753,461615.1499,17.8
+167328,549381.7848,296785.9634,465445.4057,17.8
+167329,210286.1455,297113.8117,468332.9449,17.8
+167330,210094.2325,297235.6493,471239.1056,17.8
+167331,210869.2201,297096.457,474499.2727,17.8
+167332,210980.1034,296241.1427,477550.0755,17.8
+167333,211484.6095,296925.4757,480544.2758,17.8
+167334,211575.1169,296153.3276,483804.7336,17.8
+167335,212189.6973,296233.8678,486328.3387,17.8
+167336,212522.8182,295921.342,489379.9838,17.8
+167337,212841.9944,296048.6434,496310.9167,17.8
+167338,213558.9106,295435.7015,505846.6995,17.8
+167339,213790.4486,296596.1282,508634.9562,17.8
+167340,214286.1921,294970.4001,511215.6126,20
+167341,1105169.579,1436581.575,2877161.42,20
+167342,425457.6188,352282.2322,1328288.794,20
+167343,121932.7707,218289.9601,282461.5007,20
+167344,242017.0656,408735.1335,555227.253,20
+167345,325264.0474,386292.3111,779477.0035,20
+167346,256580.7712,367917.3461,579665.5153,20
+167347,265043.4205,363523.0594,609423.6519,20
+167348,265636.5604,365985.432,613186.1346,20
+167349,265566.8756,365281.9138,615541.6011,20
+167350,265024.7359,364677.1739,618543.7293,20
+167351,265122.5553,364865.0553,620173.0154,20
+167352,264574.604,363022.176,623754.5168,20
+167353,264298.7336,363736.6435,626284.5434,20
+167354,264313.8947,362741.4857,627768.5783,20
+167355,263597.4002,362271.5224,631372.9739,20
+167356,264505.0864,362440.5394,634513.9627,20
+167357,263045.5786,361082.2014,635864.0242,20
+167358,263842.8875,361211.7776,639010.8109,20
+167359,262823.95,360616.2903,642210.3414,20
+167360,263542.8032,361119.7523,643094.2443,20
+167361,261537.6048,359223.2894,647313.6052,20
+167362,260850.1838,360185.9513,649526.1185,20
+167363,261211.2079,359155.5277,651726.7265,20
+167364,260548.4,358759.0538,654159.3604,20
+167365,260289.8952,359186.6016,656724.5909,20
+167366,260233.3709,357676.1049,659813.5903,20
+167367,260089.7478,358672.3637,661309.6911,20
+167368,259881.4773,353784.4228,664449.6752,20
+167369,259302.2325,353123.3103,666250.8834,20
+167370,259768.0994,352791.1288,668634.4545,20
+167371,258981.7738,351230.6385,671641.8971,20
+167372,258947.4578,351520.8618,673367.6567,20
+167373,258854.2258,350855.8471,675794.623,20
+167374,258582.5077,349498.8467,678215.4529,20
+167375,258268.0269,349954.3226,680739.4565,20
+167376,258106.2326,348679.1729,682593.6637,20
+167377,258282.4888,348542.3765,684662.8062,20
+167378,257684.0856,347390.8253,687213.8918,20
+167379,257741.5328,347399.2665,689601.7445,20
+167380,255355.6149,346428.725,691274.3923,20
+167381,254789.1694,346575.0997,693366.9767,20
+167382,254218.3217,345600.3977,696015.2631,20
+167383,254463.6666,345119.3882,697679.8537,20
+167384,254231.4811,344751.2958,700320.8472,20
+167385,253358.3416,344706.1437,701560.6416,20
+167386,253463.2268,343569.8243,704333.6277,20
+167387,253157.8982,343294.3754,705602.1855,20
+167388,253220.7644,343256.4776,708610.122,20
+167389,252656.7649,342485.8444,710328.3161,20
+167390,252663.503,342079.11,711373.7432,20
+167391,251981.4095,341619.8339,714820.401,20
+167392,252283.2505,341221.9296,714970.3286,20
+167393,252160.3338,340863.633,718318.9375,20
+167394,251542.3006,339963.5747,720258.9623,20
+167395,251893.5366,340104.458,721655.8136,20
+167396,251156.9668,339773.1035,723316.5902,20
+167397,251201.0724,338905.4106,725063.3151,20
+167398,251389.6262,338879.7535,727863.8151,20
+167399,250868.0562,338169.5996,724978.3104,20
+167400,250706.9537,337617.0384,724830.3274,21
+167401,337172.9471,647136.5033,700951.9324,21
+167402,334761.7819,644079.7767,694906.7828,21
+167403,332086.8185,642878.5945,692427.3481,21
+167404,329909.7306,640765.5554,688687.8839,21
+167405,328221.5797,639897.0218,686863.4739,21
+167406,326001.3071,637788.662,682693.2469,21
+167407,323648.9928,636628.7461,680273.6913,21
+167408,322018.9737,635299.7973,677330.0706,21
+167409,319136.0974,633370.9649,673834.1624,21
+167410,317891.8092,631931.3619,671958.3008,21
+167411,315449.29,630543.1515,667447.6555,21
+167412,313257.0574,628983.9617,666346.9041,21
+167413,311595.7764,628045.756,652223.6461,21
+167414,309194.485,625873.5948,648705.4193,21
+167415,307144.0934,624736.3537,644164.1658,21
+167416,305086.4924,623383.2927,640484.1888,21
+167417,303063.6931,621452.2792,637235.2247,21
+167418,300895.0346,620530.6446,633835.3358,21
+167419,298991.3845,618860.1425,630438.07,21
+167420,296936.3549,617431.9644,627095.4888,21
+167421,295011.4209,615234.7852,624805.8912,21
+167422,292541.4292,614029.2533,619961.7701,21
+167423,290811.9331,612759.7684,618239.0967,21
+167424,288922.282,611268.0253,614252.6919,21
+167425,286567.8943,609537.2591,611813.5439,21
+167426,284426.2067,608809.7119,607994.9987,21
+167427,283161.145,606945.8654,606237.4038,21
+167428,280011.9849,605721.515,602312.2663,21
+167429,278673.5416,604035.8371,600222.2357,21
+167430,276699.5989,603246.6256,596872.7374,21
+167431,273874.3972,600921.9952,592992.1993,21
+167432,271794.1972,599525.4468,589127.1192,21
+167433,269098.3835,597556.5806,586879.9393,21
+167434,266292.6107,596129.7745,581712.4541,21
+167435,264416.2968,593500.5235,579012.0361,21
+167436,261115.849,591813.7067,574534.2769,21
+167437,259134.6693,590429.2903,571055.8189,21
+167438,256200.7469,588135.6162,567500.8426,21
+167439,252687.667,586011.5001,563297.7567,21
+167440,249682.4346,584164.6947,560221.7869,21
+167441,246736.4158,581279.2227,555862.8959,21
+167442,244524.5704,578593.6593,551778.1743,21
+167443,241456.6587,576051.2822,549218.453,21
+167444,238949.8008,574535.8616,543936.1293,21
+167445,236316.1583,572283.833,541314.8321,21
+167446,233582.2093,570194.7588,533368.1123,21
+167447,230845.831,567760.8801,529706.8719,21
+167448,227862.4673,565699.014,526313.8546,21
+167449,225930.1171,563596.6622,521353.0681,21
+167450,222640.3055,561267.7395,518388.6551,21
+167451,220137.674,559440.9541,513254.3576,21
+167452,217485.9719,557022.8328,510068.2768,21
+167453,214400.3091,554290.5439,505286.9421,21
+167454,212332.0249,553031.2978,502793.0208,21
+167455,208995.2609,550264.0533,496983.0548,21
+167456,206634.336,547894.4175,494238.6868,21
+167457,203542.0406,545804.8935,489783.0563,21
+167458,201068.948,543577.6301,485597.7895,21
+167459,198327.5927,541439.9936,481510.8109,21
+167460,195562.4365,538819.8448,477806.3681,21
+167461,114339.1334,453353.3406,312363.7598,21
+167462,109278.1103,445166.7364,298346.3535,21
+167463,106437.9486,440814.8195,289784.5447,21
+167464,104303.2943,436753.0561,280291.2635,21
+167465,101982.2064,432481.5095,272010.586,21
+167466,99669.68167,427924.4662,262937.6003,21
+167467,97267.76716,424022.0828,254449.3125,21
+167468,95424.1845,419546.3918,244966.3863,21
+167469,93155.80443,415554.208,236951.8078,21
+167470,90656.80591,411169.6783,227763.1137,21
+167471,89174.12187,406964.7176,219504.5015,21
+167472,86285.82186,402639.281,210128.6996,21
+167473,84740.30767,398749.8644,202102.334,21
+167474,82223.20294,393739.2995,193561.5552,21
+167475,79941.85474,390489.5252,185164.7866,21
+167476,78263.18211,386224.8384,177598.0596,21
+167477,75666.65554,382610.3896,168936.4924,21
+167478,73704.09155,379593.6404,163905.1342,21
+167479,71512.25153,376968.6707,158787.7172,21
+167480,69300.55626,373532.1173,153431.9463,21
+167481,67285.64966,370348.7101,149067.4576,21
+167482,65061.31891,367208.7763,144796.9831,21
+167483,62560.52421,363621.2744,140984.0249,21
+167484,60437.05896,360687.1515,138696.2687,21
+167485,58577.12358,357194.835,137360.8512,21
+167486,57447.99409,354132.6838,134937.893,21
+167487,55971.75154,351469.1028,132523.4884,21
+167488,54594.27695,347689.4372,131069.817,21
+167489,53186.5011,344962.4853,127858.728,21
+167490,51822.18166,341624.7751,125683.055,21
+167491,50860.1127,338938.7167,123589.5897,21
+167492,49645.86594,335842.1005,121801.331,21
+167493,48867.93828,333266.8639,119686.0485,21
+167494,48021.0906,329777.8022,117758.2383,21
+167495,46697.91206,327661.0888,115535.7375,21
+167496,45910.72049,324613.3756,114107.9266,21
+167497,44998.20969,321766.109,112378.7766,21
+167498,44147.16794,319173.6773,110620.9896,21
+167499,43227.26534,316062.3512,108781.5281,21
+167500,42271.23044,314084.5797,106761.4808,21
+167501,41234.59977,310258.4573,105118.7929,21
+167502,40399.78363,308593.375,102894.6125,21
+167503,39664.65718,305139.8158,101476.42,21
+167504,38573.38354,303083.99,99168.00484,21
+167505,37869.74777,300353.9739,97409.62256,21
+167506,36903.8197,298251.6516,95672.87251,21
+167507,35949.48899,295870.5711,93657.47641,21
+167508,35226.95669,292496.6292,92124.36311,21
+167509,34405.10125,290633.9741,90649.90234,21
+167510,33574.74315,287582.5238,89051.39688,21
+167511,33179.02919,285223.0791,87257.3188,21
+167512,32721.98745,282641.4218,86420.95597,21
+167513,32015.58265,279994.9842,85196.9833,21
+167514,31661.13337,277639.3535,83663.77501,21
+167515,31224.52971,274908.616,82162.9593,21
+167516,30522.40463,272838.3657,81473.92463,21
+167517,30230.78372,270162.8049,79746.90263,21
+167518,29700.9505,267658.934,78335.66191,21
+167519,29073.92208,265354.1071,77336.12961,21
+167520,28710.85471,262703.5703,52805.43287,21
+167521,28534.93872,260789.1547,51672.27378,21
+167522,27864.04064,259035.9757,49971.39246,21
+167523,27915.90648,256797.6105,49011.49047,21
+167524,27269.62769,254848.0138,47729.36522,21
+167525,27026.16559,253004.6573,45877.44048,21
+167526,26790.70604,251121.4898,45342.42314,21
+167527,26524.73058,248727.3463,43222.53357,21
+167528,26109.07439,247331.7988,42631.65838,21
+167529,25747.63304,244659.2059,40786.85061,21
+167530,25510.30761,243351.8928,39765.65798,21
+167531,25235.26232,241071.428,38392.49942,21
+167532,24881.24508,239077.0762,36964.44304,21
+167533,24394.31101,237269.7419,35878.33458,21
+167534,24348.91722,235248.0675,34882.97135,21
+167535,24141.11734,233267.5469,33892.76922,21
+167536,24068.65122,231156.7912,33175.25896,21
+167537,23813.89822,229394.1483,32124.11065,21
+167538,23700.40325,227299.1167,31414.6231,21
+167539,23520.12789,225377.6431,30528.15568,21
+167540,23465.73494,223026.1741,29673.3879,21
+167541,23276.74857,221796.007,28893.28343,21
+167542,22953.13779,219172.4085,27927.45731,21
+167543,23142.65448,217311.8945,27080.56925,21
+167544,22687.37159,215475.4503,26445.32674,21
+167545,22648.90707,213448.3075,25281.45966,21
+167546,22382.20349,211181.8045,24735.40182,21
+167547,22504.86496,209304.0423,23798.42251,21
+167548,22103.61818,207639.374,22896.52572,21
+167549,22017.20427,205235.3331,22080.80851,21
+167550,21766.73356,203233.4138,21457.56571,21
+167551,21709.18658,201446.112,21079.62595,21
+167552,21533.00145,199071.5987,20718.43658,21
+167553,21313.41942,197159.4075,20151.3937,21
+167554,21098.09541,194701.1359,20030.67111,21
+167555,21058.86579,193038.0681,19461.15279,21
+167556,20602.31044,190560.7546,19130.49478,21
+167557,20696.01002,188359.2357,18706.18518,21
+167558,20278.02824,186072.9705,18252.8286,21
+167559,20363.52315,184132.6688,17981.75821,21
+167560,19932.67133,182145.2261,17498.59904,21
+167561,19831.64482,179572.8575,17219.5375,21
+167562,19596.24143,177431.6589,16583.35471,21
+167563,19483.31176,175377.0533,16460.01229,21
+167564,19258.05019,172905.7981,15841.95085,21
+167565,19154.86487,170669.6213,15702.92476,21
+167566,18797.71419,168767.6842,14881.298,21
+167567,18692.74383,166021.9069,14956.93424,21
+167568,18574.92282,163835.5619,14303.75525,21
+167569,18251.60077,161741.7283,13961.72428,21
+167570,18100.44461,159183.8241,13527.82683,21
+167571,17916.23296,156801.4299,13212.43698,21
+167572,17642.50014,155001.5073,12683.63347,21
+167573,17559.34365,151781.5411,12429.76419,21
+167574,17393.31479,149766.2084,11897.4736,21
+167575,17020.41172,147361.2366,11627.53166,21
+167576,17022.28927,143899.9942,11070.66942,21
+167577,16644.41636,140811.0965,10790.28688,21
+167578,16592.60915,138660.0621,10272.78363,21
+167579,16379.47118,135857.3871,10004.84959,21
+167580,16114.36686,133293.3097,9606.409228,21
+167581,15496.6174,130480.7691,8405.427045,21
+167582,15208.08225,128451.8164,8272.551865,21
+167583,14924.33371,126907.4648,7631.042314,21
+167584,14710.00961,124931.4955,7599.175032,21
+167585,14298.27176,122853.1692,6940.284855,21
+167586,14207.97215,121553.1882,6793.528601,21
+167587,13780.92717,119173.8111,6269.010118,21
+167588,13713.15014,117809.9435,5918.835721,21
+167589,13260.52957,115164.7872,5782.864372,21
+167590,13073.40401,113412.6751,5603.643896,21
+167591,12792.51706,111775.6924,5466.653784,21
+167592,12651.28004,109491.1116,5286.680843,21
+167593,12143.72653,107275.0855,5162.922111,21
+167594,12176.80579,105935.5093,4951.325904,21
+167595,11712.39255,103485.7907,4842.628771,21
+167596,11441.07956,102296.6845,4660.25874,21
+167597,11346.86405,101269.2504,4518.689266,21
+167598,11051.87764,100104.1315,4320.133092,21
+167599,10826.30551,99245.93295,4224.126268,21
+167600,10624.89457,98225.75945,3976.086389,21
+167601,10494.82926,97257.42404,3895.919296,21
+167602,10086.49304,96638.17337,3694.603996,21
+167603,10063.86401,95558.76625,3477.076235,21
+167604,9762.786553,94920.7629,3292.326591,21
+167605,9617.836262,93865.77945,3173.542614,21
+167606,9350.599116,93186.26505,2968.433831,21
+167607,9057.992581,92098.38499,2827.701652,21
+167608,9022.140492,91470.17401,2707.707019,21
+167609,8739.93591,90334.47148,2603.062838,21
+167610,8580.156666,89697.60916,2535.741212,21
+167611,8307.821076,88662.12223,2430.426711,21
+167612,8271.259332,87902.89182,2365.095656,21
+167613,8134.357777,87196.4415,2256.531356,21
+167614,7847.680897,86153.84792,2190.515153,21
+167615,7923.155686,85536.85697,2100.300772,21
+167616,7684.695226,84362.33743,2014.441335,21
+167617,7509.157236,83891.69797,1906.657508,21
+167618,7484.129688,82909.32627,1853.649841,21
+167619,7332.098621,81995.9608,1764.139105,21
+167620,7180.447662,81261.79027,1675.938884,21
+167621,7167.501333,80324.04359,1583.291344,21
+167622,6874.513081,79677.09406,1528.769786,21
+167623,6964.193306,78968.63913,1418.213655,21
+167624,6719.714816,78226.84568,1361.427876,21
+167625,6669.758548,77408.27764,1303.176838,21
+167626,6506.973571,76805.75602,1283.715969,21
+167627,6359.380081,75964.54478,1244.708354,21
+167628,6215.509852,75364.79331,1205.596717,21
+167629,6176.087064,74509.45565,1205.60479,21
+167630,6045.368106,73959.64393,1127.052104,21
+167631,5989.931558,73082.06812,1127.05925,21
+167632,5873.317359,72486.42865,1067.85545,21
+167633,5756.345606,71677.16815,1048.067781,21
+167634,5822.479463,71047.67306,1008.397636,21
+167635,5613.63518,70239.91143,988.5203967,21
+167636,5588.170851,69503.90269,948.6679746,21
+167637,5470.460543,68827.42887,908.6896054,21
+167638,5444.904375,68174.89674,888.6542975,21
+167639,5444.904426,67393.91353,848.4793563,21
+167640,5313.998917,66764.24352,828.3430335,21
+167641,5575.406993,63908.48218,828.3471558,21
+167642,5679.955512,60838.56788,808.1758543,21
+167643,5588.176008,57719.11274,767.722479,21
+167644,5784.116974,54608.40436,747.4427502,21
+167645,5575.411817,51820.07414,706.766658,21
+167646,5679.96041,48738.59702,686.3718954,21
+167647,5667.14865,45993.89479,624.9386767,21
+167648,5679.962872,42980.34711,624.9410784,21
+167649,5796.936232,40137.15758,583.7737884,21
+167650,5654.315908,37146.0596,542.4259503,21
+167651,5796.938775,34386.65222,521.6819783,21
+167652,5679.967832,31273.77747,480.043067,21
+167653,5771.291817,28526.16337,438.1940804,21
+167654,5913.557707,25546.28751,438.1953093,21
+167655,5771.294337,22664.07989,374.9922197,21
+167656,5796.945197,19781.66724,353.8010792,21
+167657,5887.912063,16825.04165,332.5430139,21
+167658,5913.563018,15414.82216,268.3297399,21
+167659,6004.180227,15026.89577,268.330142,21
+167660,5784.137248,14424.81164,225.1100341,21
+167661,6132.942478,14119.97439,203.3585231,21
+167662,5771.303287,13958.39618,148.4949277,21
+167663,6004.185657,13769.66916,137.4270146,21
+167664,5887.921308,13478.96537,92.76027959,21
+167665,5887.922646,13150.24032,70.13751767,21
+167666,6004.189776,13125.52672,47.25409339,21
+167667,6004.191158,12806.50655,0,21
+167668,6120.115789,12768.06734,0,21
+167669,6017.030595,12474.71439,0,21
+167670,6120.118647,12167.57494,0,21
+167671,6120.120083,12242.16121,0,21
+167672,6004.198133,11832.76929,0,21
+167673,5862.189357,11739.81524,0,21
+167674,5862.190706,11468.92271,0,21
+167675,5745.57625,11273.38859,0,21
+167676,5719.738058,11090.18431,0,21
+167677,5485.428192,10816.80032,0,21
+167678,5589.811673,10867.30723,0,21
+167679,5341.782951,10461.45504,0,21
+167680,5223.69024,10394.18386,0,21
+167681,5197.657424,10090.92761,0,21
+167682,5197.658551,10050.36709,0,21
+167683,4840.987144,9745.531305,0,21
+167684,4934.154647,9690.60278,0,21
+167685,4801.751835,9370.017001,0,21
+167686,4561.870166,9342.860988,0,21
+167687,4548.741594,9034.21092,0,21
+167688,4401.798477,8993.065344,0,21
+167689,4414.980069,8640.471367,0,21
+167690,4145.972225,8655.051849,0,21
+167691,4010.695523,8300.568648,0,21
+167692,4010.696322,8272.477133,0,21
+167693,3861.594978,7958.85033,0,21
+167694,3614.86021,7901.625914,0,21
+167695,3601.548929,7600.358244,0,21
+167696,3588.210774,7542.571706,0,21
+167697,3200.332881,7239.429321,0,21
+167698,3312.40214,7188.43854,0,21
+167699,3047.390952,6999.197643,0,21
+167700,2907.108916,6693.085362,0,21
+167701,6973.776545,11472.98574,0,21
+167702,6847.311247,11174.67862,0,21
+167703,6720.521271,11317.01567,0,21
+167704,6593.401386,11148.28635,0,21
+167705,6584.05964,10963.57785,0,21
+167706,6498.836159,10964.32088,0,21
+167707,6293.282003,10765.76539,0,21
+167708,6070.766836,10779.83469,0,21
+167709,6062.130715,10451.01427,0,21
+167710,5915.492229,10581.37038,0,21
+167711,5673.331583,10395.74465,0,21
+167712,5507.916273,10120.5677,0,21
+167713,5525.547918,10354.41987,0,21
+167714,5232.871494,9920.0283,0,21
+167715,5008.601924,10023.27983,0,21
+167716,4938.140506,9732.238642,0,21
+167717,4845.17645,9718.820948,0,21
+167718,4543.45429,9662.326487,0,21
+167719,4547.529153,9516.54962,0,21
+167720,4270.085403,9341.684671,0,21
+167721,4125.834285,9342.015444,0,21
+167722,3977.138176,9270.697659,0,21
+167723,3834.949181,9019.689556,0,21
+167724,3561.454167,8962.463139,0,21
+167725,3548.033399,8948.189312,0,21
+167726,3285.533988,8786.192771,0,21
+167727,3133.090991,8594.818136,0,21
+167728,3006.96177,8609.323339,0,21
+167729,2853.032752,8558.485406,0,21
+167730,2698.24006,8253.845213,0,21
+167731,2583.480494,8380.717741,0,21
+167732,2413.297037,8209.716025,0,21
+167733,2426.976185,7910.67983,0,21
+167734,2151.972019,8165.258729,0,21
+167735,2255.689234,7851.343566,0,21
+167736,1992.248533,7685.616209,0,21
+167737,2110.753118,7806.235007,0,21
+167738,1696.247101,7505.115717,0,21
+167739,1964.677283,7473.977087,0,21
+167740,1682.414768,7444.420145,0,21
+167741,1531.997249,7292.49296,0,21
+167742,1654.655131,7108.901457,0,21
+167743,1379.576539,7094.17312,0,21
+167744,1351.687985,7068.984809,0,21
+167745,1295.490938,6893.585759,0,21
+167746,1196.656447,6771.235073,0,21
+167747,1052.052554,6726.42489,0,21
+167748,1168.569064,6756.325069,0,21
+167749,886.1586772,6420.653293,0,21
+167750,858.0035144,6588.754605,0,21
+167751,858.0034934,6420.652118,0,21
+167752,843.8743431,6420.710132,0,21
+167753,843.8743217,6113.050958,0,21
+167754,815.5108076,6251.985501,0,21
+167755,815.5107867,6113.051081,0,21
+167756,815.5107654,5943.37657,0,21
+167757,787.003944,5943.383352,0,21
+167758,801.2754688,5912.966105,0,21
+167759,772.695579,5788.351763,0,21
+167760,758.3499535,5617.560242,0,21
+167761,401.0928906,1517.043664,0,21
+167762,369.9691111,1336.869722,0,21
+167763,354.3094721,1137.347981,0,21
+167764,354.3094694,966.142899,0,21
+167765,338.5816171,1121.023449,0,21
+167766,322.7830008,753.732728,0,21
+167767,330.6913203,753.7340749,0,21
+167768,306.9108203,720.851417,0,21
+167769,306.9108187,720.8527897,0,21
+167770,290.961991,704.3387672,0,21
+167771,274.9330915,687.7786428,0,21
+167772,290.9619884,671.1656347,0,21
+167773,258.8203006,671.167062,0,21
+167774,258.8202997,637.7890249,0,21
+167775,242.6193296,654.5046475,0,21
+167776,242.6193287,604.2023469,0,21
+167777,226.325321,621.0233117,0,21
+167778,209.9327266,604.2022619,0,21
+167779,209.932726,570.3937034,0,21
+167780,193.435141,587.3260888,0,21
+167781,193.4351405,553.4036385,0,21
+167782,176.8250847,536.3546438,0,21
+167783,160.0936991,536.3546124,0,21
+167784,160.0936987,519.2452248,0,21
+167785,143.2302979,484.8371473,0,21
+167786,143.2302976,467.5382199,0,21
+167787,126.2217461,450.1711068,0,21
+167788,109.0514504,450.1710759,0,21
+167789,126.2217456,415.2261139,0,21
+167790,82.94326808,415.2260931,0,21
+167791,91.69773439,397.6462361,0,21
+167792,82.94326782,388.8271273,0,21
+167793,65.25497406,362.2501276,0,21
+167794,56.30792044,362.2501741,0,21
+167795,56.30792038,344.4298414,0,21
+167796,38.15882876,326.5236554,0,21
+167797,38.15882872,326.5236804,0,21
+167798,9.970948816,290.4381595,0,21
+167799,19.54815042,290.4382426,0,21
+167800,0,290.4381902,0,21
+167801,0,253.9573973,0,21
+167802,0,253.9573801,0,21
+167803,0,235.5547138,0,21
+167804,0,217.0347712,0,21
+167805,0,217.0348011,0,21
+167806,0,198.3891789,0,21
+167807,0,179.6080949,0,21
+167808,0,170.1631569,0,21
+167809,0,160.6797138,0,21
+167810,0,141.5894686,0,21
+167811,0,131.9780819,0,21
+167812,0,112.6088454,0,21
+167813,0,83.13215834,0,21
+167814,0,83.13216586,0,21
+167815,0,53.00779998,0,21
+167816,0,42.77635002,0,21
+167817,0,0,0,21
+167818,0,11.16960836,0,21
+167819,0,0,0,21
+167820,0,0,0,21
+167821,0,0,0,21
+167822,0,0,0,21
+167823,0,0,0,21
+167824,0,0,0,21
+167825,0,0,0,21
+167826,0,0,0,21
+167827,0,0,0,21
+167828,0,0,0,21
+167829,0,0,0,21
+167830,0,0,0,21
+167831,0,0,0,21
+167832,0,0,0,21
+167833,0,0,0,21
+167834,0,0,0,21
+167835,0,0,0,21
+167836,0,0,0,21
+167837,0,0,0,21
+167838,0,0,0,21
+167839,0,0,0,21
+167840,0,0,0,21
+167841,0,0,0,21
+167842,0,0,0,21
+167843,0,0,0,21
+167844,0,0,0,21
+167845,0,0,0,21
+167846,0,0,0,21
+167847,0,0,0,21
+167848,0,0,0,21
+167849,0,0,0,21
+167850,0,0,0,21
+167851,0,0,0,21
+167852,0,0,0,21
+167853,0,0,0,21
+167854,0,0,0,21
+167855,0,0,0,21
+167856,0,0,0,21
+167857,0,0,0,21
+167858,0,0,0,21
+167859,0,0,0,21
+167860,0,0,0,21
+167861,0,0,0,21
+167862,0,0,0,21
+167863,0,0,0,21
+167864,0,0,0,21
+167865,0,0,0,21
+167866,0,0,0,21
+167867,0,0,0,21
+167868,0,0,0,21
+167869,0,0,0,21
+167870,0,0,0,21
+167871,0,0,0,21
+167872,0,0,0,21
+167873,0,0,0,21
+167874,0,0,0,21
+167875,0,0,0,21
+167876,0,0,0,21
+167877,0,0,0,21
+167878,0,0,0,21
+167879,0,0,0,21
+167880,0,0,0,21
+167881,0,0,0,21
+167882,0,0,0,21
+167883,0,0,0,21
+167884,0,0,0,21
+167885,0,0,0,21
+167886,0,0,0,21
+167887,0,0,0,21
+167888,0,0,0,21
+167889,0,0,0,21
+167890,0,0,0,21
+167891,0,0,0,21
+167892,0,0,0,21
+167893,0,0,0,21
+167894,0,0,0,21
+167895,0,0,0,21
+167896,0,0,0,21
+167897,0,0,0,21
+167898,0,0,0,21
+167899,0,0,0,21
+167900,0,0,0,21
+167901,0,0,0,21
+167902,0,0,0,21
+167903,0,0,0,21
+167904,0,0,0,21
+167905,0,0,0,21
+167906,0,0,0,21
+167907,0,0,0,21
+167908,0,0,0,21
+167909,0,0,0,21
+167910,0,0,0,21
+167911,0,0,0,21
+167912,0,0,0,21
+167913,0,0,0,21
+167914,0,0,0,21
+167915,0,0,0,21
+167916,0,0,0,21
+167917,0,0,0,21
+167918,0,0,0,21
+167919,0,0,0,21
+167920,0,0,0,21
+167921,0,0,0,21
+167922,0,0,0,21
+167923,0,0,0,21
+167924,0,0,0,21
+167925,0,0,0,21
+167926,0,0,0,21
+167927,0,0,0,21
+167928,0,0,0,21
+167929,0,0,0,21
+167930,0,0,0,21
+167931,0,0,0,21
+167932,0,0,0,21
+167933,0,0,0,21
+167934,0,0,0,21
+167935,0,0,0,21
+167936,0,0,0,21
+167937,0,0,0,21
+167938,0,0,0,21
+167939,0,0,0,21
+167940,0,0,0,21
+167941,0,0,0,21
+167942,0,0,0,21
+167943,0,0,0,21
+167944,0,0,0,21
+167945,0,0,0,21
+167946,0,0,0,21
+167947,0,0,0,21
+167948,0,0,0,21
+167949,0,0,0,21
+167950,0,0,0,21
+167951,0,0,0,21
+167952,0,0,0,21
+167953,0,0,0,21
+167954,0,0,0,21
+167955,0,0,0,21
+167956,0,0,0,21
+167957,0,0,0,21
+167958,0,0,0,21
+167959,0,0,0,21
+167960,0,0,0,21
+167961,0,0,0,21
+167962,0,0,0,21
+167963,0,0,0,21
+167964,0,0,0,21
+167965,0,0,0,21
+167966,0,0,0,21
+167967,0,0,0,21
+167968,0,0,0,21
+167969,0,0,0,21
+167970,0,0,0,21
+167971,0,0,0,21
+167972,0,0,0,21
+167973,0,0,0,21
+167974,0,0,0,21
+167975,0,0,0,21
+167976,0,0,0,21
+167977,0,0,0,21
+167978,0,0,0,21
+167979,0,0,0,21
+167980,0,0,0,21
+167981,0,0,0,21
+167982,0,0,0,21
+167983,0,0,0,21
+167984,0,0,0,21
+167985,0,0,0,21
+167986,0,0,0,21
+167987,0,0,0,21
+167988,0,0,0,21
+167989,0,0,0,21
+167990,0,0,0,21
+167991,0,0,0,21
+167992,0,0,0,21
+167993,0,0,0,21
+167994,0,0,0,21
+167995,0,0,0,21
+167996,0,0,0,21
+167997,0,0,0,21
+167998,0,0,0,21
+167999,0,0,0,21
+168000,0,0,0,21
+168001,0,0,0,21
+168002,0,0,0,21
+168003,1120.314688,0,0,21
+168004,1030.43983,0,0,21
+168005,1701.110028,0,0,21
+168006,1328.186064,0,0,21
+168007,1544.014551,0,0,21
+168008,5590.471307,0,0,21
+168009,5303.695888,0,0,21
+168010,6706.608976,0,0,21
+168011,9479.908044,0,0,21
+168012,8799.83632,0,0,21
+168013,9908.397952,0,0,21
+168014,10481.0589,0,0,21
+168015,11064.64934,0,0,21
+168016,11739.93828,0,0,21
+168017,12462.38461,0,0,21
+168018,12756.12016,0,0,21
+168019,13484.34096,0,0,21
+168020,14089.24479,0,0,21
+168021,14733.10049,0,0,21
+168022,15191.90668,0,0,21
+168023,15831.35837,0,0,21
+168024,16420.92252,0,0,21
+168025,16794.06293,0,0,21
+168026,17528.29246,0,0,21
+168027,17990.26103,0,0,21
+168028,18707.87311,0,0,21
+168029,18960.67326,0,0,21
+168030,19871.26284,0,0,21
+168031,20138.45399,0,0,21
+168032,20508.71291,0,0,21
+168033,21262.67424,0,0,21
+168034,21565.05511,0,0,21
+168035,22206.60274,0,0,21
+168036,22481.86906,0,0,21
+168037,23143.73886,0,0,21
+168038,23391.40525,0,0,21
+168039,24061.52745,0,0,21
+168040,24319.80542,0,0,21
+168041,24947.71661,0,0,21
+168042,25138.37865,0,0,21
+168043,25864.78562,0,0,21
+168044,26132.27813,0,0,21
+168045,26763.25914,0,0,21
+168046,27028.97423,0,0,21
+168047,27367.47777,0,0,21
+168048,28106.1486,0,0,21
+168049,28344.75758,0,0,21
+168050,28704.1167,0,0,21
+168051,29435.76172,0,0,21
+168052,29461.52521,0,0,21
+168053,30139.28069,0,0,21
+168054,30530.14774,0,0,21
+168055,30791.14639,0,0,21
+168056,31607.28729,0,0,21
+168057,31473.25481,0,0,21
+168058,32348.96638,0,0,21
+168059,32540.15033,0,0,21
+168060,32930.07772,0,0,21
+168061,40411.48608,0,0,21
+168062,41991.69662,0,0,21
+168063,42063.54866,0,0,21
+168064,42404.46888,0,0,21
+168065,44046.95563,0,0,21
+168066,43638.93895,0,0,21
+168067,44431.8306,0,0,21
+168068,44724.81716,2307.505859,0,21
+168069,45400.04517,1949.788335,0,21
+168070,45626.55231,2140.899444,0,21
+168071,46115.25068,2509.961695,0,21
+168072,46362.76525,2702.092627,0,21
+168073,47038.84142,2855.493325,0,21
+168074,47287.12298,3197.392804,0,21
+168075,47745.31955,3367.086065,0,21
+168076,48014.67739,3517.547878,0,21
+168077,48651.62253,3704.133334,0,21
+168078,48727.36798,3871.547045,0,21
+168079,49353.45052,4186.208209,0,21
+168080,49610.41895,4351.65951,0,21
+168081,50083.85207,4369.652537,0,21
+168082,50307.77229,4826.400188,0,21
+168083,50755.69396,4698.49185,0,21
+168084,51286.31445,5151.957453,0,21
+168085,51586.56059,5169.646989,0,21
+168086,51840.73961,5331.505906,0,21
+168087,52648.77086,5636.11376,0,21
+168088,52579.99393,5653.59842,0,21
+168089,53031.70494,5956.247801,0,21
+168090,53471.21514,6098.201285,0,21
+168091,53898.48179,6150.108971,0,21
+168092,54024.78564,6415.508768,0,21
+168093,54409.90187,6590.611743,0,21
+168094,54712.35915,6748.016461,0,21
+168095,55283.64701,6904.965513,0,21
+168096,55029.22413,7044.46184,0,21
+168097,55820.00899,7356.261757,0,21
+168098,56034.58882,7373.162216,0,21
+168099,56147.51247,7528.367734,0,21
+168100,56546.93176,7803.989455,0,21
+168101,56983.95509,7837.528305,0,21
+168102,56905.61777,8128.418332,0,21
+168103,57452.72612,8128.418986,0,21
+168104,60144.66981,8434.472259,0,21
+168105,59259.76529,8570.370375,0,21
+168106,60125.63182,8603.422757,0,21
+168107,60565.72659,8874.223726,0,21
+168108,60991.97065,9025.59225,0,21
+168109,61747.40777,9058.369416,0,21
+168110,61928.28306,9310.871519,0,21
+168111,62508.5417,9493.80005,0,21
+168112,62857.95943,9777.035706,0,21
+168113,63422.5503,9777.036315,0,21
+168114,63863.22521,10091.27915,0,21
+168115,64454.36274,10207.62107,0,21
+168116,64884.92057,10371.95663,0,21
+168117,67361.20216,10371.95746,0,21
+168118,67111.55942,10667.46073,0,21
+168119,67902.09761,10798.73808,0,21
+168120,68649.95973,10961.70414,0,21
+168121,69161.65264,11254.50413,0,21
+168122,70299.03751,11514.61457,0,21
+168123,70801.09185,11546.16345,0,21
+168124,71265.78544,11820.91777,0,21
+168125,72712.07757,12110.22525,0,21
+168126,72905.69952,12110.22801,0,21
+168127,73712.73014,12398.35491,0,21
+168128,74608.0241,12541.98352,0,21
+168129,75161.18284,12828.37645,0,21
+168130,75989.38711,12955.71583,0,21
+168131,76636.69588,12986.5482,0,21
+168132,77142.79897,13524.14535,0,21
+168133,78286.44199,13397.78592,0,21
+168134,78484.67075,13665.56995,0,21
+168135,79454.74072,13837.14966,0,21
+168136,80026.52993,14073.0181,0,21
+168137,80746.05806,14368.65163,0,21
+168138,81311.4093,14258.80525,0,21
+168139,82237.48107,14648.04566,0,21
+168140,82549.3459,14787.35555,0,21
+168141,83247.6325,14926.40901,0,21
+168142,84157.10713,15203.75236,0,21
+168143,84583.11249,15218.66995,0,21
+168144,85392.20683,15480.09654,0,21
+168145,85751.27354,15755.44491,0,21
+168146,86651.21352,15755.44841,0,21
+168147,87236.18701,16166.7504,0,21
+168148,87812.68522,16303.2511,0,21
+168149,88277.62867,16575.67431,0,21
+168150,89250.85613,16575.67456,0,21
+168151,89488.82276,17103.12902,0,21
+168152,90269.15606,16861.72216,0,21
+168153,90763.10124,17372.89784,0,21
+168154,91355.51515,17521.86256,0,21
+168155,91937.11293,17641.69512,0,21
+168156,92468.82036,17923.95672,0,21
+168157,93168.56796,18067.70804,0,21
+168158,93327.78371,18632.19203,0,21
+168159,94474.21476,18393.36542,0,21
+168160,94439.57872,19059.26635,0,21
+168161,95292.72595,18984.63077,0,21
+168162,95889.7571,19263.46781,0,21
+168163,96235.96227,19673.10629,0,21
+168164,96800.18265,19584.39341,0,21
+168165,97288.93766,20109.13841,0,21
+168166,97857.55721,20151.30164,0,21
+168167,98504.6748,20454.3131,0,21
+168168,98918.25531,20468.24791,0,21
+168169,99249.38406,20987.65183,0,21
+168170,100108.1878,21042.92114,0,21
+168171,100409.0843,21314.9946,0,21
+168172,100800.9673,21356.04102,0,21
+168173,101531.965,21870.46925,0,21
+168174,101959.3106,21910.92988,0,21
+168175,102246.7507,22193.87808,0,21
+168176,102999.1817,22234.53789,0,21
+168177,103254.1419,22730.18654,0,21
+168178,103976.5565,22796.99948,0,21
+168179,104446.2814,23036.85372,0,21
+168180,104525.7323,23130.18631,0,21
+168181,107845.4023,24122.08406,0,21
+168182,109055.8763,24423.41856,0,21
+168183,203836.1217,24472.3147,0,21
+168184,110292.3374,24897.03721,0,21
+168185,112087.1937,24959.82946,0,21
+168186,112750.3857,25109.77695,0,21
+168187,113420.9449,25394.86035,0,21
+168188,114404.4801,25542.9669,0,21
+168189,114906.3404,25814.15317,0,21
+168190,115279.7345,25876.24302,0,21
+168191,116041.021,26147.66975,0,21
+168192,117053.1944,26196.29184,0,21
+168193,117054.7582,26477.9198,0,21
+168194,118051.6431,26696.92042,0,21
+168195,118845.8626,26832.61959,0,21
+168196,118866.2932,27001.76883,0,21
+168197,119839.1697,27123.82195,0,21
+168198,120341.4653,27571.73253,0,21
+168199,120949.0901,27414.05087,0,21
+168200,121475.6366,27679.87235,0,21
+168201,121961.1269,27958.59682,0,21
+168202,122587.3573,28197.22444,0,21
+168203,123245.9877,28017.43286,0,21
+168204,123682.1557,28545.03991,0,21
+168205,124242.0114,28545.83025,0,21
+168206,124693.6052,28830.06262,0,21
+168207,125603.0707,28867.55085,0,21
+168208,125534.1203,29153.20133,0,21
+168209,126571.017,29163.401,0,21
+168210,127224.6736,29662.89765,0,21
+168211,127258.2657,29483.61373,0,21
+168212,127860.9353,29708.46941,0,21
+168213,128813.4281,30016.86717,0,21
+168214,128676.5445,30025.12171,0,21
+168215,129862.453,30062.07766,0,21
+168216,130106.54,30656.45054,0,21
+168217,130397.8243,30785.12462,0,21
+168218,131030.284,31148.23886,0,21
+168219,131883.811,31056.79598,0,21
+168220,131592.1604,31610.55328,0,21
+168221,133097.6035,31435.66996,0,21
+168222,132760.5279,31961.32132,0,21
+168223,133700.365,31837.05874,0,21
+168224,134083.2274,32354.24751,0,21
+168225,134309.8336,32212.69377,0,21
+168226,135223.1197,32703.04033,0,21
+168227,135468.2461,32592.64621,0,21
+168228,136017.5617,33168.81567,0,21
+168229,136287.3169,32913.93591,0,21
+168230,137300.9256,33418.59334,0,21
+168231,137138.1631,33294.81494,0,21
+168232,137911.1793,33789.82434,0,21
+168233,138456.7441,33678.67387,1962.696536,21
+168234,138698.544,34118.06303,1962.722479,21
+168235,139356.8844,33983.3576,1962.74842,21
+168236,139633.4324,34341.05103,2645.238629,21
+168237,140410.7715,35490.81324,2645.284612,21
+168238,140528.2868,35288.03899,3151.246291,21
+168239,141012.281,35548.75237,3318.962847,21
+168240,141901.82,35965.97765,3652.982349,21
+168241,141444.7279,36477.1084,3985.316699,21
+168242,142504.305,36632.16152,4150.941989,21
+168243,142502.0722,37242.0618,4316.194216,21
+168244,142626.2779,39268.15045,4809.555227,21
+168245,143138.5819,41189.40871,4809.697988,21
+168246,143386.0225,41061.29251,5136.955146,21
+168247,143562.1193,42380.80634,5300.184864,21
+168248,144001.5399,43288.28342,5625.553564,21
+168249,144161.6091,44157.34208,5787.888557,21
+168250,144594.8268,44839.90472,6111.500289,21
+168251,144889.5394,45790.17925,6273.002007,21
+168252,144925.4619,46888.08494,6434.240151,21
+168253,145478.4295,47420.54787,7104.488888,21
+168254,145749.7565,48521.34786,7260.662916,21
+168255,145575.7843,49030.27823,7371.03772,21
+168256,146451.7402,52085.19679,7690.508275,21
+168257,146282.2719,52993.71562,8095.560415,21
+168258,146794.3248,54133.38352,8085.184946,21
+168259,146886.4619,54914.71072,8467.090837,21
+168260,147214.7988,56164.2644,8815.760059,21
+168261,147468.3014,56696.04598,8837.425324,21
+168262,147850.3845,58064.17302,9195.594871,21
+168263,148002.0761,58742.3375,9552.724012,21
+168264,148184.3376,59698.04451,9574.20346,21
+168265,148734.9209,60666.32721,9930.256177,21
+168266,148330.6643,61530.20891,10264.5556,21
+168267,149469.4489,62499.67163,10327.3712,21
+168268,149025.4318,63366.06513,10640.09592,21
+168269,149827.6987,64167.96606,11013.93453,21
+168270,149562.1108,65073.73501,11014.59792,21
+168271,149846.7752,66070.12965,11387.38615,21
+168272,150612.3933,66811.82506,11408.52527,21
+168273,150104.7775,67721.0843,12068.97981,21
+168274,150671.9374,68096.86057,11780.95625,21
+168275,151206.5309,69388.95117,12419.57255,21
+168276,151104.8005,70117.84962,12326.96313,21
+168277,151542.3677,70558.0801,12809.80936,21
+168278,151257.418,71732.92569,12830.81309,21
+168279,152360.3733,72092.31308,13178.92654,21
+168280,151761.5644,73339.93821,13353.1619,21
+168281,152509.5799,73786.13519,13547.21463,21
+168282,152395.6765,74607.71036,13893.79897,21
+168283,152982.1622,75285.44698,13914.69937,21
+168284,152993.2743,76286.03331,14240.68375,21
+168285,152876.8087,76606.21466,14937.16112,21
+168286,153674.3181,77875.67105,14926.96597,21
+168287,153732.1419,78365.58581,15097.13293,21
+168288,153587.5935,79425.84585,15545.45179,21
+168289,154405.8676,80100.79698,15734.67272,21
+168290,154038.9491,80952.90024,15973.73236,21
+168291,154708.3754,81512.2889,16198.67851,21
+168292,154711.774,82637.92053,18763.93401,21
+168293,154903.4466,84322.56178,18334.45629,21
+168294,155145.0408,85741.67111,19076.39107,21
+168295,155439.8627,86853.45615,19866.50281,21
+168296,155309.8942,88180.93519,19770.10829,21
+168297,156965.6322,88562.83724,20835.15167,21
+168298,156436.8228,89508.55746,21026.73789,21
+168299,156986.8438,90542.36397,21671.17753,21
+168300,157111.4172,91244.58432,21988.96406,21
+168301,0,0,0,21
+168302,0,0,0,21
+168303,0,833.3757817,0,21
+168304,0,0,0,21
+168305,0,368486.8306,1570066.926,21
+168306,340275.5653,0,0,21
+168307,0,0,0,21
+168308,0,0,0,21
+168309,0,0,0,21
+168310,0,0,0,21
+168311,0,0,0,21
+168312,0,0,0,21
+168313,0,0,0,21
+168314,0,0,0,21
+168315,0,0,0,21
+168316,0,0,0,21
+168317,0,0,0,21
+168318,0,0,0,21
+168319,0,0,0,21
+168320,0,0,0,21
+168321,0,0,0,21
+168322,0,0,0,21
+168323,0,0,0,21
+168324,0,0,0,21
+168325,0,0,0,21
+168326,0,0,0,21
+168327,0,0,0,21
+168328,0,0,0,21
+168329,0,0,0,21
+168330,0,0,0,21
+168331,0,0,0,21
+168332,0,0,0,21
+168333,0,0,0,21
+168334,0,0,0,21
+168335,0,0,0,21
+168336,0,0,0,21
+168337,0,0,0,21
+168338,0,0,0,21
+168339,0,368488.304,1492336.326,21
+168340,0,0,0,21
+168341,340275.7715,0,0,21
+168342,0,0,0,21
+168343,0,0,0,21
+168344,0,0,0,21
+168345,0,0,0,21
+168346,0,0,0,21
+168347,0,0,0,21
+168348,0,0,0,21
+168349,0,0,0,21
+168350,0,0,0,21
+168351,0,0,0,21
+168352,0,0,0,21
+168353,0,0,0,21
+168354,0,0,0,21
+168355,0,0,0,21
+168356,0,0,0,21
+168357,0,0,0,21
+168358,0,0,0,21
+168359,0,0,0,21
+168360,0,0,0,15.6
+168361,0,0,0,15.6
+168362,0,463.5827627,0,15.6
+168363,0,0,0,15.6
+168364,0,0,0,15.6
+168365,0,0,0,15.6
+168366,0,0,0,15.6
+168367,0,0,0,15.6
+168368,0,0,0,15.6
+168369,0,0,0,15.6
+168370,0,0,0,15.6
+168371,0,0,0,15.6
+168372,0,0,0,15.6
+168373,0,0,0,15.6
+168374,0,368478.1522,1421435.741,15.6
+168375,0,0,0,15.6
+168376,340275.8742,0,0,15.6
+168377,0,384.7676266,0,15.6
+168378,0,0,0,15.6
+168379,0,0,0,15.6
+168380,0,0,0,15.6
+168381,0,0,0,15.6
+168382,0,0,0,15.6
+168383,0,376.6918459,0,15.6
+168384,0,0,0,15.6
+168385,0,0,0,15.6
+168386,0,0,0,15.6
+168387,0,0,0,15.6
+168388,0,363.7774757,0,15.6
+168389,0,0,0,15.6
+168390,0,0,0,15.6
+168391,0,0,0,15.6
+168392,0,0,0,15.6
+168393,0,0,0,15.6
+168394,0,0,0,15.6
+168395,0,125.0207265,0,15.6
+168396,0,0,0,15.6
+168397,0,0,0,15.6
+168398,0,0,0,15.6
+168399,0,116.9505313,0,15.6
+168400,0,0,0,15.6
+168401,0,0,0,15.6
+168402,0,0,0,15.6
+168403,0,113.1178069,0,15.6
+168404,0,0,0,15.6
+168405,0,0,0,15.6
+168406,0,0,0,15.6
+168407,0,111.642725,0,15.6
+168408,0,0,0,15.6
+168409,0,368455.0474,1356692.733,15.6
+168410,0,0,0,15.6
+168411,340275.9264,105.1733709,0,15.6
+168412,0,0,0,15.6
+168413,0,0,0,15.6
+168414,0,0,0,15.6
+168415,0,77.06634854,0,15.6
+168416,0,0,0,15.6
+168417,0,0,0,15.6
+168418,0,0,0,15.6
+168419,0,112.9248503,0,15.6
+168420,0,0,0,15.6
+168421,0,0,0,15.6
+168422,0,0,0,15.6
+168423,0,118.0318179,0,15.6
+168424,0,0,0,15.6
+168425,0,0,0,15.6
+168426,0,0,0,15.6
+168427,0,127.1949522,0,15.6
+168428,0,0,0,15.6
+168429,0,0,0,15.6
+168430,0,0,0,15.6
+168431,0,129.5681602,0,15.6
+168432,0,0,0,15.6
+168433,0,0,0,15.6
+168434,0,0,0,15.6
+168435,0,129.0966206,0,15.6
+168436,0,0,0,15.6
+168437,0,0,0,15.6
+168438,0,0,0,15.6
+168439,0,124.6286929,0,15.6
+168440,0,0,0,15.6
+168441,0,0,0,15.6
+168442,0,0,0,15.6
+168443,0,118.6551822,0,15.6
+168444,0,368451.4713,1297569.768,15.6
+168445,0,0,0,15.6
+168446,0,0,0,15.6
+168447,340275.8831,102.2508509,0,15.6
+168448,0,0,0,15.6
+168449,0,0,0,15.6
+168450,0,0,0,15.6
+168451,0,73.30992365,0,15.6
+168452,0,0,0,15.6
+168453,0,0,0,15.6
+168454,0,74253.71562,0,15.6
+168455,0,0,0,15.6
+168456,0,0,0,15.6
+168457,0,0,0,15.6
+168458,0,0,0,15.6
+168459,0,0,0,15.6
+168460,0,0,0,15.6
+168461,0,0,0,15.6
+168462,0,0,0,15.6
+168463,0,0,0,15.6
+168464,0,0,0,15.6
+168465,0,0,0,15.6
+168466,0,0,0,15.6
+168467,0,0,0,15.6
+168468,0,0,0,15.6
+168469,0,0,0,15.6
+168470,0,0,0,15.6
+168471,0,0,0,15.6
+168472,0,0,0,15.6
+168473,0,0,0,15.6
+168474,0,0,0,15.6
+168475,0,0,0,15.6
+168476,0,0,0,15.6
+168477,0,0,0,15.6
+168478,0,0,0,15.6
+168479,0,368458.6568,1243583.158,15.6
+168480,0,0,0,15.6
+168481,0,0,0,15.6
+168482,0,0,0,15.6
+168483,340275.8398,0,0,15.6
+168484,0,0,0,15.6
+168485,0,0,0,15.6
+168486,0,0,0,15.6
+168487,0,0,0,15.6
+168488,0,0,0,15.6
+168489,0,0,0,15.6
+168490,0,0,0,15.6
+168491,0,0,0,15.6
+168492,0,0,0,15.6
+168493,0,0,0,15.6
+168494,0,0,0,15.6
+168495,0,0,0,15.6
+168496,0,0,0,15.6
+168497,0,0,0,15.6
+168498,0,0,0,15.6
+168499,0,0,0,15.6
+168500,0,0,0,15.6
+168501,0,0,0,15.6
+168502,0,0,0,15.6
+168503,0,0,0,15.6
+168504,0,0,0,15.6
+168505,0,0,0,15.6
+168506,0,0,0,15.6
+168507,0,0,0,15.6
+168508,0,0,0,15.6
+168509,0,0,0,15.6
+168510,0,0,0,15.6
+168511,0,0,0,15.6
+168512,0,0,0,15.6
+168513,0,0,0,15.6
+168514,0,368470.1253,1194284.346,15.6
+168515,0,0,0,15.6
+168516,0,0,0,15.6
+168517,0,0,0,15.6
+168518,0,0,0,15.6
+168519,340275.8176,0,0,15.6
+168520,0,0,0,15.6
+168521,0,0,0,15.6
+168522,0,0,0,15.6
+168523,0,0,0,15.6
+168524,0,0,0,15.6
+168525,0,0,0,15.6
+168526,0,0,0,15.6
+168527,0,0,0,15.6
+168528,0,0,0,15.6
+168529,0,0,0,15.6
+168530,0,0,0,15.6
+168531,0,0,0,15.6
+168532,0,0,0,15.6
+168533,0,0,0,15.6
+168534,0,0,0,15.6
+168535,0,0,0,15.6
+168536,0,0,0,15.6
+168537,0,0,0,15.6
+168538,0,0,0,15.6
+168539,0,0,0,15.6
+168540,0,0,0,15.6
+168541,0,0,0,15.6
+168542,0,0,0,15.6
+168543,0,0,0,15.6
+168544,0,164.392983,0,15.6
+168545,0,0,0,15.6
+168546,0,0,0,15.6
+168547,0,0,0,15.6
+168548,0,0,0,15.6
+168549,0,368476.8738,1149267.507,15.6
+168550,0,0,0,15.6
+168551,0,0,0,15.6
+168552,0,0,0,15.6
+168553,0,0,0,15.6
+168554,0,0,0,15.6
+168555,340262.5788,0,0,15.6
+168556,0,0,0,15.6
+168557,0,0,0,15.6
+168558,0,0,0,15.6
+168559,0,0,0,15.6
+168560,0,0,0,15.6
+168561,0,0,0,15.6
+168562,0,0,0,15.6
+168563,0,0,0,15.6
+168564,0,0,0,15.6
+168565,0,0,0,15.6
+168566,0,0,0,15.6
+168567,0,0,0,15.6
+168568,0,0,0,15.6
+168569,0,0,0,15.6
+168570,0,0,0,15.6
+168571,0,0,0,15.6
+168572,0,0,0,15.6
+168573,0,0,0,15.6
+168574,0,0,0,15.6
+168575,0,0,0,15.6
+168576,0,0,0,15.6
+168577,0,0,0,15.6
+168578,0,0,0,15.6
+168579,0,0,0,15.6
+168580,0,0,0,15.6
+168581,0,0,0,15.6
+168582,0,0,0,15.6
+168583,0,0,0,15.6
+168584,0,368468.3863,1108206.3,15.6
+168585,0,0,0,15.6
+168586,0,0,0,15.6
+168587,0,0,0,15.6
+168588,0,0,0,15.6
+168589,0,0,0,15.6
+168590,0,0,0,15.6
+168591,340230.3519,0,0,15.6
+168592,0,0,0,15.6
+168593,0,0,0,15.6
+168594,0,0,0,15.6
+168595,0,0,0,15.6
+168596,0,0,0,15.6
+168597,0,0,0,15.6
+168598,0,0,0,15.6
+168599,0,0,0,15.6
+168600,0,0,0,15.6
+168601,0,0,0,15.6
+168602,0,363.6205779,0,15.6
+168603,0,0,0,15.6
+168604,0,0,0,15.6
+168605,0,0,0,15.6
+168606,0,0,0,15.6
+168607,0,0,0,15.6
+168608,0,0,0,15.6
+168609,0,226.5918806,0,15.6
+168610,0,0,0,15.6
+168611,0,0,0,15.6
+168612,0,0,0,15.6
+168613,0,0,0,15.6
+168614,0,0,0,15.6
+168615,0,0,0,15.6
+168616,0,80.28068238,0,15.6
+168617,0,0,0,15.6
+168618,0,0,0,15.6
+168619,0,368455.486,1070713.626,15.6
+168620,0,76.02778093,0,15.6
+168621,0,0,0,15.6
+168622,0,0,0,15.6
+168623,0,75607.18605,0,15.6
+168624,0,0,0,15.6
+168625,0,0,0,15.6
+168626,0,0,0,15.6
+168627,340221.6506,0,0,15.6
+168628,0,0,0,15.6
+168629,0,0,0,15.6
+168630,0,0,0,15.6
+168631,0,0,0,15.6
+168632,0,0,0,15.6
+168633,0,0,0,15.6
+168634,0,0,0,15.6
+168635,0,0,0,15.6
+168636,0,0,0,15.6
+168637,0,0,0,15.6
+168638,0,0,0,15.6
+168639,0,0,0,15.6
+168640,0,0,0,15.6
+168641,0,0,0,15.6
+168642,0,0,0,15.6
+168643,0,0,0,15.6
+168644,0,0,0,15.6
+168645,0,0,0,15.6
+168646,0,0,0,15.6
+168647,0,0,0,15.6
+168648,0,0,0,15.6
+168649,0,0,0,15.6
+168650,0,0,0,15.6
+168651,0,0,0,15.6
+168652,0,0,0,15.6
+168653,0,0,0,15.6
+168654,0,368439.3544,1036473.089,15.6
+168655,0,0,0,15.6
+168656,0,0,0,15.6
+168657,0,0,0,15.6
+168658,0,0,0,15.6
+168659,0,0,0,15.6
+168660,0,0,0,15.6
+168661,0,0,0,15.6
+168662,0,0,0,15.6
+168663,340220.9151,0,0,15.6
+168664,0,0,0,15.6
+168665,0,0,0,15.6
+168666,0,0,0,15.6
+168667,0,0,0,15.6
+168668,0,0,0,15.6
+168669,0,0,0,15.6
+168670,0,0,0,15.6
+168671,0,0,0,15.6
+168672,0,0,0,15.6
+168673,0,0,0,15.6
+168674,0,0,0,15.6
+168675,0,0,0,15.6
+168676,0,0,0,15.6
+168677,0,0,0,15.6
+168678,0,0,0,15.6
+168679,0,0,0,15.6
+168680,0,0,0,15.6
+168681,0,0,0,15.6
+168682,0,0,0,15.6
+168683,0,0,0,15.6
+168684,0,0,0,15.6
+168685,0,0,0,15.6
+168686,0,0,0,15.6
+168687,0,0,0,15.6
+168688,0,0,1005209.282,15.6
+168689,0,368432.738,0,15.6
+168690,0,0,0,15.6
+168691,0,0,0,15.6
+168692,0,0,0,15.6
+168693,0,0,0,15.6
+168694,0,0,0,15.6
+168695,0,0,0,15.6
+168696,0,0,0,15.6
+168697,0,0,0,15.6
+168698,340220.8172,0,0,15.6
+168699,0,0,0,15.6
+168700,0,0,0,15.6
+168701,0,0,0,15.6
+168702,0,0,0,15.6
+168703,0,0,0,15.6
+168704,0,0,0,15.6
+168705,0,0,0,15.6
+168706,0,0,0,15.6
+168707,0,0,0,15.6
+168708,0,0,0,15.6
+168709,0,0,0,15.6
+168710,0,0,0,15.6
+168711,0,0,0,15.6
+168712,0,0,0,15.6
+168713,0,0,0,15.6
+168714,0,0,0,15.6
+168715,0,0,0,15.6
+168716,0,0,0,15.6
+168717,0,0,0,15.6
+168718,0,0,0,15.6
+168719,0,0,0,15.6
+168720,0,0,0,17.8
+168721,100984.2342,451639.3747,0,17.8
+168722,65171.26449,117294.7614,995182.6361,17.8
+168723,29371.46316,590935.9386,0,17.8
+168724,16848.89346,238840.0593,0,17.8
+168725,36912.0206,208942.9785,0,17.8
+168726,28816.84833,217001.4081,0,17.8
+168727,28562.6156,215779.3756,55467.35243,17.8
+168728,28687.85524,216218.3259,41462.64404,17.8
+168729,28594.48189,215472.7158,62041.9275,17.8
+168730,28531.54168,215965.0065,51251.09313,17.8
+168731,28484.83488,216241.0307,56232.96089,17.8
+168732,28352.25126,215443.2697,61737.21176,17.8
+168733,368543.6927,216301.8869,66303.81257,17.8
+168734,28239.96785,215884.0643,63695.04213,17.8
+168735,28179.6842,215899.2472,65818.28583,17.8
+168736,28148.30948,216118.5808,66825.83452,17.8
+168737,28067.77383,216007.6433,75017.73954,17.8
+168738,28029.66428,221515.0764,71853.74704,17.8
+168739,27948.22725,218637.9791,74224.51392,17.8
+168740,27957.06748,220290.149,75266.46803,17.8
+168741,27836.32346,223749.6581,76796.4433,17.8
+168742,26181.47162,220928.7077,77435.49521,17.8
+168743,26155.95535,222127.7757,78989.46081,17.8
+168744,26029.42465,222144.2282,80067.85198,17.8
+168745,26072.41601,222179.8624,80897.48428,17.8
+168746,25968.78265,222403.685,82515.24269,17.8
+168747,25959.94419,221911.781,83440.85565,17.8
+168748,25902.21945,222813.4422,84561.9797,17.8
+168749,25896.07697,222361.6957,85961.68749,17.8
+168750,25873.10584,222162.4033,86942.11514,17.8
+168751,0,5840.912922,88103.72501,17.8
+168752,0,5854.332591,89247.78348,17.8
+168753,0,5840.911772,0,17.8
+168754,0,85039.59433,103489.3619,17.8
+168755,78088.26971,19146.26214,25084.5722,17.8
+168756,10703.80498,37660.4889,1025011.863,17.8
+168757,22800.39854,407334.8726,44874.00312,17.8
+168758,29142.30724,36920.06542,40868.85694,17.8
+168759,25492.27568,36920.7953,41418.92144,17.8
+168760,25545.87601,36835.45141,41455.32863,17.8
+168761,25566.24738,36861.65431,41447.8343,17.8
+168762,25565.02754,36855.51315,41473.08987,17.8
+168763,25480.70729,36515.17682,41438.1642,17.8
+168764,25483.88352,36605.6227,41473.18578,17.8
+168765,25461.48619,36515.82589,41519.10616,17.8
+168766,25465.88047,30590.26544,41560.73874,17.8
+168767,25368.59234,30453.18068,41637.13207,17.8
+168768,365603.7953,34257.45327,41728.61724,17.8
+168769,25369.80556,32474.28711,41768.65266,17.8
+168770,27424.49442,363941.9697,41797.73395,17.8
+168771,26634.34357,119256.511,41905.55852,17.8
+168772,26645.26998,225752.6072,41873.68297,17.8
+168773,26789.36406,228897.3212,42001.48133,17.8
+168774,26735.56016,211540.7753,42029.76278,17.8
+168775,26751.56645,216088.3446,41915.93285,17.8
+168776,26720.51298,215799.9745,41923.67382,17.8
+168777,26723.47253,215419.0592,41949.10266,17.8
+168778,26701.32883,215392.5838,42049.81376,17.8
+168779,26659.28003,215262.0244,42040.97208,17.8
+168780,26691.55169,215260.4361,42087.46514,20
+168781,1076374.322,1365932.419,1296941.122,20
+168782,483188.2569,298812.6856,141166.6639,20
+168783,43029.64122,114424.0966,98069.55473,20
+168784,213719.9542,374872.0576,311088.0486,20
+168785,295097.2031,318261.6082,219145.1436,20
+168786,226471.5191,315554.3416,220584.156,20
+168787,232066.6472,305716.3219,224512.9917,20
+168788,233589.1668,309288.1055,224704.8843,20
+168789,233435.7155,309113.6465,225838.56,20
+168790,232841.1198,307600.5785,226250.4149,20
+168791,232203.5969,307394.9665,226928.3683,20
+168792,232630.2202,306793.0875,227791.4706,20
+168793,231486.0225,306048.1088,228984.2393,20
+168794,231493.5143,305439.6042,229601.5102,20
+168795,231246.4613,304934.4409,230414.6737,20
+168796,231036.2767,304496.6259,231601.9188,20
+168797,230413.4241,303712.6108,232175.2033,20
+168798,230843.9197,303869.6185,233209.8158,20
+168799,229714.5844,302562.9791,233747.6234,20
+168800,228751.6853,301969.7464,235098.4905,20
+168801,228179.378,302086.9022,235805.7412,20
+168802,228015.3531,300974.8289,236472.9128,20
+168803,227160.7837,300798.7133,237030.6641,20
+168804,227851.2733,300302.6965,238913.3013,20
+168805,226828.3517,299775.859,238438.3739,20
+168806,226873.7426,298880.1822,240469.969,20
+168807,226502.6913,299030.8511,241384.2109,20
+168808,226362.3488,285643.3899,241465.2527,20
+168809,226368.8123,284311.8388,243001.178,20
+168810,225628.0651,281352.716,243612.9184,20
+168811,226035.3594,279711.2427,244621.2137,20
+168812,224809.0318,278505.1163,245719.6806,20
+168813,225518.9712,277170.9298,246683.3954,20
+168814,224973.0646,274890.9159,246771.3864,20
+168815,224677.0905,274122.2678,248334.9796,20
+168816,224311.0084,272217.7382,249166.6552,20
+168817,224148.3826,270819.492,249819.757,20
+168818,224234.831,269431.0965,251344.9416,20
+168819,223330.3218,268121.8645,251439.3381,20
+168820,223030.8625,266902.0924,252603.2585,20
+168821,221637.5384,265692.9937,253500.2806,20
+168822,221962.8113,263856.0598,254164.7584,20
+168823,221475.8263,263108.5168,255821.1872,20
+168824,221423.1737,261103.5623,256156.2992,20
+168825,220586.0405,260429.5005,257122.8279,20
+168826,220759.312,257806.1809,258039.9658,20
+168827,220422.9956,258135.371,258967.796,20
+168828,219835.8161,255788.0968,259649.9095,20
+168829,220173.8003,254802.9511,261059.419,20
+168830,219299.2996,253407.5459,261010.3655,20
+168831,219759.8071,252013.8708,262485.0095,20
+168832,219050.8957,250189.1317,264183.0921,20
+168833,218998.4941,250174.4843,264887.3397,20
+168834,218812.609,247640.2192,265629.1451,20
+168835,218765.1849,246352.8324,266960.0832,20
+168836,218122.1804,245196.1582,267826.8608,20
+168837,218227.5045,243338.4592,268809.854,20
+168838,218001.2108,242073.1357,266100.8479,20
+168839,217649.3006,240792.8319,266611.259,20
+168840,217726.0351,238612.8489,266511.2769,21
+168841,207808.4203,486678.3834,249334.7485,21
+168842,206326.2881,482603.5539,246752.5865,21
+168843,206018.0464,478586.5869,245800.5356,21
+168844,206048.5629,474139.8513,245910.0913,21
+168845,205111.0174,470450.8857,244344.7088,21
+168846,205095.1841,466742.1413,244276.0577,21
+168847,204820.2911,462971.8788,243201.4448,21
+168848,204547.6327,458774.198,242933.8332,21
+168849,204050.5197,455378.0513,241911.495,21
+168850,203781.597,451061.9782,241774.0898,21
+168851,203826.5062,447183.1493,240418.1874,21
+168852,203163.5876,443841.44,239969.7391,21
+168853,203173.5642,439541.5654,224005.4481,21
+168854,202501.1587,435281.9034,221517.2992,21
+168855,202882.6868,431945.1638,218915.4767,21
+168856,202023.3007,427581.4928,218066.2944,21
+168857,201838.5669,423994.5717,215795.3872,21
+168858,201791.4528,419711.329,214621.3842,21
+168859,201761.1501,415886.0953,212681.2678,21
+168860,200722.0894,412183.4685,211732.1587,21
+168861,201348.8996,407909.3699,209930.2682,21
+168862,200203.873,403957.5017,209629.5095,21
+168863,200871.7799,400258.0858,208123.582,21
+168864,200190.3244,395598.5525,207254.3384,21
+168865,199605.6879,392678.4898,205889.9821,21
+168866,199888.2045,387409.8943,205780.6713,21
+168867,199268.0505,384781.2777,203421.0603,21
+168868,199206.5368,381287.971,203695.1879,21
+168869,198832.0886,378308.3757,201746.1977,21
+168870,198416.7086,375487.036,191495.9161,21
+168871,198778.7375,372145.0585,191456.9423,21
+168872,197523.253,369317.5589,188924.1092,21
+168873,197683.1939,366158.4539,185918.7428,21
+168874,197007.0818,362815.6157,184096.085,21
+168875,196822.6284,360492.2231,182884.1055,21
+168876,196625.6165,357108.3303,180885.6754,21
+168877,196069.6035,354104.253,180264.3748,21
+168878,195373.0326,351261.3207,178921.1469,21
+168879,195586.5294,347883.0452,176360.2845,21
+168880,194382.6775,345311.4056,176122.1023,21
+168881,194669.3048,341677.9964,173649.5625,21
+168882,194150.3059,339372.1622,172864.0818,21
+168883,193497.3354,336033.9765,170663.8197,21
+168884,193289.2963,333288.0238,169706.3439,21
+168885,192985.3523,329920.2789,167604.021,21
+168886,192025.6756,327179.3875,166634.5572,21
+168887,192340.5676,324390.7538,164081.8294,21
+168888,191329.551,321392.5441,162889.0694,21
+168889,191443.7395,317724.1416,161445.9704,21
+168890,190468.3452,315633.3125,159798.0951,21
+168891,190577.5524,312365.9934,157227.1351,21
+168892,189877.479,309325.9577,156850.5677,21
+168893,189350.5025,306612.1744,154202.9886,21
+168894,189053.0899,303626.9624,152763.9058,21
+168895,188609.6728,300756.5192,151092.545,21
+168896,188302.6989,298037.9605,148881.842,21
+168897,187816.2805,294827.9664,147942.546,21
+168898,187478.6797,292742.9095,145108.0726,21
+168899,186894.6999,289117.938,144462.6107,21
+168900,186666.4673,286693.4318,141632.2877,21
+168901,108064.1601,215716.9906,43808.32402,21
+168902,103354.3927,208865.2388,36994.58242,21
+168903,102186.2254,205797.9483,35069.18458,21
+168904,100531.6926,203069.8241,33138.80971,21
+168905,99293.62077,199471.2068,32093.19891,21
+168906,98047.73235,196723.1785,31180.32497,21
+168907,97022.11007,193192.4992,29783.8479,21
+168908,95645.02707,190250.3018,29001.48548,21
+168909,94683.85028,187279.1885,28105.30419,21
+168910,93508.54511,183919.573,27093.99644,21
+168911,92448.51751,180732.5728,26005.88151,21
+168912,91276.62818,177840.8276,25282.7149,21
+168913,90366.76348,174544.8326,24298.51876,21
+168914,89024.6182,171378.1486,23279.94059,21
+168915,88175.08768,168094.1371,22455.15325,21
+168916,86875.73839,164935.8888,21662.58364,21
+168917,86084.75282,162227.8355,20516.64632,21
+168918,85072.84035,158544.5657,19891.25272,21
+168919,83718.26743,155880.1358,19554.8387,21
+168920,82887.99714,152283.8182,18785.59893,21
+168921,81843.42873,148667.0439,18299.92245,21
+168922,80750.1329,146259.8836,17955.95139,21
+168923,79749.4426,142202.2378,17441.20306,21
+168924,78759.58082,139881.0297,17036.09294,21
+168925,77653.49041,136220.0344,16635.92561,21
+168926,76913.58878,133541.2007,16222.12325,21
+168927,75495.6539,130629.7433,15733.57593,21
+168928,74796.8525,127836.625,15323.12693,21
+168929,73698.57288,124340.4203,14911.16902,21
+168930,72708.45458,121710.6687,14595.58059,21
+168931,71934.12043,118619.1572,14056.26228,21
+168932,71309.839,115550.542,13765.36668,21
+168933,165352.3912,113311.9608,13307.4895,21
+168934,70033.02654,109815.5225,12901.91545,21
+168935,69121.90575,107335.8064,12561.41918,21
+168936,68842.6703,104483.0521,12020.75166,21
+168937,67433.92786,101759.186,11756.49787,21
+168938,67572.78152,99434.85863,11492.90879,21
+168939,66529.14854,96522.28697,10868.1219,21
+168940,66080.14794,93941.89823,10747.52849,21
+168941,65628.34964,90994.55571,10137.24941,21
+168942,64835.4257,88750.56775,9815.679577,21
+168943,64328.97667,85875.91195,9441.429102,21
+168944,63720.3779,83303.67641,9047.951254,21
+168945,63300.70188,77312.98573,8638.479403,21
+168946,62573.94777,73208.01259,8163.937299,21
+168947,62326.49992,72657.69887,8035.781857,21
+168948,61400.09743,71656.8383,7402.939055,21
+168949,61134.88524,70717.44761,7059.878359,21
+168950,60529.34428,70210.8347,6798.851179,21
+168951,60239.82869,68994.80046,6287.119847,21
+168952,59440.01412,68517.096,6134.124283,21
+168953,59060.99678,67666.02717,6031.937477,21
+168954,58619.1043,66562.79335,5869.542073,21
+168955,58185.14828,66008.45105,5735.230823,21
+168956,57661.69186,64958.67647,5551.743782,21
+168957,57078.56951,64640.98572,5494.303883,21
+168958,56982.37527,63545.10105,5286.418363,21
+168959,56109.23902,62705.80348,5173.914886,21
+168960,56706.62238,62256.59745,5043.033029,21
+168961,56292.33902,61206.64295,4871.436226,21
+168962,56093.55353,60643.26024,4768.829215,21
+168963,55745.92549,59973.88761,4611.023535,21
+168964,55112.94984,59366.36122,4428.264143,21
+168965,55288.80635,58583.95475,4354.165316,21
+168966,54417.37728,58086.89837,4162.298762,21
+168967,54937.36205,57569.19303,4027.669064,21
+168968,53736.76774,57012.27024,3899.759494,21
+168969,53988.11044,56383.12512,3728.655748,21
+168970,53476.29721,55527.07795,3617.482443,21
+168971,53258.36434,55126.05286,3460.196792,21
+168972,52951.31499,54620.43313,3302.134802,21
+168973,52735.29247,53976.37069,3174.233362,21
+168974,52378.74401,53683.64907,3030.109099,21
+168975,51982.68191,52537.97079,2901.095529,21
+168976,52027.22872,52337.91126,2724.22408,21
+168977,51566.91629,51691.27853,2609.526968,21
+168978,51494.87222,51272.82202,2462.429,21
+168979,51331.94012,50521.34155,2314.456654,21
+168980,50876.20076,50177.84041,2147.292342,21
+168981,51144.47966,49595.38598,2049.552742,21
+168982,50618.18343,49017.1262,1878.314624,21
+168983,50624.58906,48433.32177,1743.510551,21
+168984,50460.58816,47839.94243,1605.391282,21
+168985,50274.83295,46978.16261,1446.559195,21
+168986,50119.48253,46702.95854,1373.916889,21
+168987,49816.0025,45748.6043,1337.159373,21
+168988,49774.38937,45021.56072,1318.751164,21
+168989,49780.87416,44694.03702,1263.354094,21
+168990,49510.17115,43703.73279,1226.302687,21
+168991,49132.71154,42753.80776,1207.731459,21
+168992,49127.4204,42263.22312,1151.885253,21
+168993,48575.4948,41004.6079,1133.230141,21
+168994,48687.85931,40233.51261,1095.804595,21
+168995,48080.85923,39344.29016,1077.060301,21
+168996,47822.90747,38421.35801,1001.767081,21
+168997,48015.3748,37251.17056,1020.643251,21
+168998,47364.88162,36437.03174,945.0003452,21
+168999,47017.41882,35368.43579,926.0194589,21
+169000,47157.79971,34426.79824,907.0073032,21
+169001,46396.00239,33456.74513,849.766979,21
+169002,46642.34731,32242.90908,830.625276,21
+169003,45908.24426,31156.47251,792.2349466,21
+169004,46402.42546,30493.45094,772.9903586,21
+169005,45628.55786,28798.73366,715.0320427,21
+169006,45790.72158,28253.81385,715.0361156,21
+169007,45515.36543,27506.84194,656.7403459,21
+169008,45437.80064,26742.93956,637.2319979,21
+169009,45161.8586,25456.18136,598.0883575,21
+169010,45086.47473,24573.48999,578.4541662,21
+169011,44805.25062,23304.11979,539.0498542,21
+169012,44619.74124,22118.33361,499.4598732,21
+169013,44719.32686,21463.17191,459.6729221,21
+169014,44151.6226,20832.40361,459.6746834,21
+169015,44300.79463,20948.88281,379.4531659,21
+169016,43889.38956,20322.27516,379.4543812,21
+169017,44025.92415,20451.80627,338.9868342,21
+169018,43409.82962,19822.19213,298.2514705,21
+169019,43575.57096,19650.28573,277.7748243,21
+169020,43361.39818,19524.16275,236.5799095,21
+169021,48909.27176,18551.49567,174.0938366,21
+169022,48756.90163,18496.81982,142.476363,21
+169023,48639.61006,17987.77994,110.549048,21
+169024,48431.2877,17858.66599,110.5491561,21
+169025,48390.48103,17407.13881,67.35969806,21
+169026,48143.81198,17287.0625,45.40221239,21
+169027,47759.76618,16769.53726,23.07586106,21
+169028,47684.20352,16473.86493,0,21
+169029,47653.82076,16312.6948,0,21
+169030,47411.79901,15925.92861,0,21
+169031,46819.67492,15648.8066,0,21
+169032,47304.2643,15331.84078,0,21
+169033,46568.68812,14964.95015,0,21
+169034,46678.07306,14657.68277,0,21
+169035,46439.17951,14381.6677,0,21
+169036,46024.09234,14097.54056,0,21
+169037,46177.61058,13692.5923,0,21
+169038,45546.06126,13410.0105,0,21
+169039,45711.82805,13213.50257,0,21
+169040,45497.94785,12767.56896,0,21
+169041,45204.15245,12719.1322,0,21
+169042,45030.09355,12385.02743,0,21
+169043,44757.04034,12245.32373,0,21
+169044,44766.5481,12168.34105,0,21
+169045,44459.58713,11729.21389,0,21
+169046,44245.77571,11562.26698,0,21
+169047,43876.51738,11522.86409,0,21
+169048,43960.14416,11197.92221,0,21
+169049,43742.90877,11016.01295,0,21
+169050,43333.94527,10909.16596,0,21
+169051,43454.93147,10580.35766,0,21
+169052,42839.06074,10542.52197,0,21
+169053,43220.10248,10384.28395,0,21
+169054,42547.24876,10172.76014,0,21
+169055,42541.58032,9908.303039,0,21
+169056,42505.44666,9827.586288,0,21
+169057,42030.40343,9829.500014,0,21
+169058,42054.46302,9521.275995,0,21
+169059,41966.34306,9455.594523,0,21
+169060,41466.63295,9187.458194,0,21
+169061,41497.88466,9254.750064,0,21
+169062,41393.86271,8809.958753,0,21
+169063,41019.34987,8918.587095,0,21
+169064,41099.64851,8458.178944,0,21
+169065,40670.60025,8553.266094,0,21
+169066,40706.20782,8390.177584,0,21
+169067,40298.69362,8063.323825,0,21
+169068,40257.57041,8035.108443,0,21
+169069,40102.19774,7706.281879,0,21
+169070,39782.51952,7816.307694,0,21
+169071,39997.11673,7361.257977,0,21
+169072,39362.03938,7443.403956,0,21
+169073,39434.94197,7153.011393,0,21
+169074,39208.0169,7097.085757,0,21
+169075,38991.52241,6922.536369,0,21
+169076,38881.25402,6593.863315,0,21
+169077,38836.5699,6719.591222,0,21
+169078,38322.71328,6382.257034,0,21
+169079,38428.28827,6339.09409,0,21
+169080,38193.12104,6184.032119,0,21
+169081,32346.30206,6338.933459,0,21
+169082,31930.76303,6339.215513,0,21
+169083,31977.39822,6324.76157,0,21
+169084,31662.16117,6140.641709,0,21
+169085,31648.06443,5970.332393,0,21
+169086,31576.60428,6111.616644,0,21
+169087,31277.74235,5955.751988,0,21
+169088,31235.89919,5755.491537,0,21
+169089,31190.99507,5770.212038,0,21
+169090,30901.03232,5718.67493,0,21
+169091,30904.07122,5740.728595,0,21
+169092,30847.90979,5711.491353,0,21
+169093,30354.76329,5546.821508,0,21
+169094,30747.88271,5539.330375,0,21
+169095,30312.11246,5531.816181,0,21
+169096,30201.40271,5479.805105,0,21
+169097,30245.1812,5344.549692,0,21
+169098,30002.60954,5178.314151,0,21
+169099,29907.47939,5276.898892,0,21
+169100,29969.82105,5306.33767,0,21
+169101,29516.1895,4959.280712,0,21
+169102,29686.77129,5110.203779,0,21
+169103,29475.3637,4920.962753,0,21
+169104,29236.09496,4942.588699,0,21
+169105,29408.65352,4898.213956,0,21
+169106,29146.94948,4880.763139,0,21
+169107,28968.71651,4737.651838,0,21
+169108,28988.36347,4689.929766,0,21
+169109,28778.65704,4559.618101,0,21
+169110,28660.98969,4675.049838,0,21
+169111,28594.64647,4527.474015,0,21
+169112,28507.69085,4657.75017,0,21
+169113,28434.4606,4351.884914,0,21
+169114,28224.89657,4672.63008,0,21
+169115,28083.95501,4482.739572,0,21
+169116,28165.94731,4512.589126,0,21
+169117,27814.52684,4482.739653,0,21
+169118,27994.30709,4351.885112,0,21
+169119,27665.18231,4642.840771,0,21
+169120,27631.62678,4321.975217,0,21
+169121,27391.26486,4497.679619,0,21
+169122,27586.52767,4467.769684,0,21
+169123,27211.02924,4336.945478,0,21
+169124,27001.07216,4467.769754,0,21
+169125,27290.02244,4482.739946,0,21
+169126,26925.25782,4467.76982,0,21
+169127,26910.05397,4321.975448,0,21
+169128,26673.26647,4467.769885,0,21
+169129,26740.00785,4452.769175,0,21
+169130,26416.5784,4467.769947,0,21
+169131,26570.08293,4467.769977,0,21
+169132,26257.63205,4291.943288,0,21
+169133,26302.25493,4467.770035,0,21
+169134,26097.62986,4291.943341,0,21
+169135,25934.96481,4452.769347,0,21
+169136,26040.7208,4437.737807,0,21
+169137,25782.87725,4306.974984,0,21
+169138,25737.03467,4437.737858,0,21
+169139,25543.71197,4437.737882,0,21
+169140,25587.72501,4452.769475,0,21
+169141,37890.92654,8404.640134,0,21
+169142,38066.46192,8563.536751,0,21
+169143,38250.14316,8934.399534,0,21
+169144,37792.95494,8370.33999,0,21
+169145,37804.01255,8456.446852,0,21
+169146,37544.6545,8413.337766,0,21
+169147,37495.87624,8115.170929,0,21
+169148,37560.00396,8071.785509,0,21
+169149,37169.48122,7907.493692,0,21
+169150,37159.55164,7735.411752,0,21
+169151,36798.21965,7698.743615,0,21
+169152,133008.5821,7518.657426,0,21
+169153,36498.53665,7367.318073,0,21
+169154,36667.10471,7322.656934,0,21
+169155,36419.08087,7018.717058,0,21
+169156,36377.75828,7103.610734,0,21
+169157,36046.04072,6805.48725,0,21
+169158,35926.00693,6789.843157,0,21
+169159,36071.59483,6583.595954,0,21
+169160,35439.66518,6435.61228,0,21
+169161,35803.57836,6397.689243,0,21
+169162,35378.60392,6218.217168,0,21
+169163,35124.97415,6063.916276,0,21
+169164,35395.62436,6063.91586,0,21
+169165,34746.50788,5894.158996,0,21
+169166,35053.42496,5753.845061,0,21
+169167,34545.72008,5583.020315,0,21
+169168,34586.14218,5583.019934,0,21
+169169,34476.04124,5411.579664,0,21
+169170,34293.04819,5269.791109,0,21
+169171,34131.27372,5254.665306,0,21
+169172,34122.78754,4954.358535,0,21
+169173,33766.09638,4923.946972,0,21
+169174,33959.33608,4780.298633,0,21
+169175,33711.65413,4765.351412,0,21
+169176,33698.15501,4780.505428,0,21
+169177,33363.08218,4908.642179,0,21
+169178,33424.78118,4621.297199,0,21
+169179,33607.12537,4590.690493,0,21
+169180,33066.28635,4430.78436,0,21
+169181,33158.19886,4270.238145,0,21
+169182,33008.75318,4109.020852,0,21
+169183,32974.97693,4109.02216,0,21
+169184,32883.46639,3768.955146,0,21
+169185,32626.54916,3784.483688,0,21
+169186,32768.33334,3605.535809,0,21
+169187,32615.35357,3574.303345,0,21
+169188,32339.51022,3291.927855,0,21
+169189,32511.41057,3094.677125,0,21
+169190,32189.63924,3244.894614,0,21
+169191,32270.23339,2775.640706,0,21
+169192,32035.44779,2912.059764,0,21
+169193,32108.68406,2575.159316,0,21
+169194,31885.42839,2575.171609,0,21
+169195,31946.5284,2233.791806,0,21
+169196,31650.49901,2389.15486,0,21
+169197,31864.72007,2061.133433,0,21
+169198,31291.72299,1870.90654,0,21
+169199,31641.65795,1854.802612,0,21
+169200,31514.23563,1695.001908,0,21
+169201,18554.33235,450.1527153,0,21
+169202,18254.73152,441.4646369,0,21
+169203,18244.22168,432.7382043,0,21
+169204,17885.33108,397.6467461,0,21
+169205,18086.90889,415.2296217,0,21
+169206,17885.33165,379.9878566,0,21
+169207,17723.19894,379.98839,0,21
+169208,17860.76925,362.2497121,0,21
+169209,17622.66533,362.2502698,0,21
+169210,17603.63312,344.4291522,0,21
+169211,17610.37331,326.5234133,0,21
+169212,17496.16122,326.5227664,0,21
+169213,17572.94602,299.4945197,0,21
+169214,17257.88252,308.5267828,0,21
+169215,17345.6334,272.2491155,0,21
+169216,17245.33783,272.2485181,0,21
+169217,17207.82102,272.2537876,0,21
+169218,17011.66914,235.5538851,0,21
+169219,17182.82698,253.9566152,0,21
+169220,16878.79893,217.0339451,0,21
+169221,17069.42142,217.0339239,0,21
+169222,16853.80488,198.3882926,0,21
+169223,16727.46891,198.3882714,0,21
+169224,16822.98377,179.6072019,0,21
+169225,16619.32119,160.6788421,0,21
+169226,16689.97798,160.6788319,0,21
+169227,16575.97391,141.5886155,0,21
+169228,16480.2556,131.9772457,0,21
+169229,16455.14809,122.3181323,0,21
+169230,16455.37344,102.8433898,0,21
+169231,16334.07004,102.8442024,0,21
+169232,16188.58506,83.13237707,0,21
+169233,16321.61773,73.17339888,0,21
+169234,16080.20759,63.13545651,0,21
+169235,16182.10765,42.77645325,0,21
+169236,16067.48512,42.77645935,0,21
+169237,15837.28454,21.90573055,0,21
+169238,16042.46206,21.90574108,0,21
+169239,15946.12995,0,0,21
+169240,15684.55244,0,0,21
+169241,15914.7768,0,0,21
+169242,15562.67971,0,0,21
+169243,15678.13463,0,0,21
+169244,15659.21428,0,0,21
+169245,15434.86964,0,0,21
+169246,15543.95141,0,0,21
+169247,15505.72623,0,0,21
+169248,15209.95712,0,0,21
+169249,15493.13135,0,0,21
+169250,15055.80355,0,0,21
+169251,15396.64627,0,0,21
+169252,15030.58879,0,0,21
+169253,15152.26307,0,0,21
+169254,15133.656,0,0,21
+169255,14901.45641,0,0,21
+169256,14895.2796,0,0,21
+169257,15004.84243,0,0,21
+169258,14888.57155,0,0,21
+169259,14630.97983,0,0,21
+169260,14888.57221,0,0,21
+169261,20535.28642,0,0,21
+169262,20633.35222,0,0,21
+169263,20756.96166,0,0,21
+169264,20489.88635,0,0,21
+169265,20829.01482,0,0,21
+169266,20489.88601,0,0,21
+169267,20502.62893,0,0,21
+169268,20554.6822,0,0,21
+169269,20476.85431,0,0,21
+169270,20443.89703,0,0,21
+169271,20358.75564,0,0,21
+169272,20541.65011,0,0,21
+169273,20332.93103,0,0,21
+169274,20214.70335,0,0,21
+169275,20515.51263,0,0,21
+169276,20082.75571,0,0,21
+169277,20307.05551,0,0,21
+169278,20069.67429,0,0,21
+169279,20154.76435,0,0,21
+169280,20188.56477,0,0,21
+169281,20030.6173,0,0,21
+169282,19937.55053,0,0,21
+169283,20017.77203,0,0,21
+169284,19924.4439,0,0,21
+169285,20017.77123,0,0,21
+169286,19791.58502,0,0,21
+169287,19787.53096,0,0,21
+169288,19885.31002,0,0,21
+169289,19752.7124,0,0,21
+169290,19569.29327,0,0,21
+169291,19752.71153,0,0,21
+169292,19739.52884,0,0,21
+169293,19556.42171,0,0,21
+169294,19606.46906,0,0,21
+169295,19739.52747,0,0,21
+169296,19641.46123,0,0,21
+169297,19606.46766,0,0,21
+169298,19593.25911,0,0,21
+169299,19543.23672,0,0,21
+169300,19788.92084,0,0,21
+169301,19410.1769,0,0,21
+169302,19700.18574,0,0,21
+169303,19485.85316,0,0,21
+169304,19687.26248,0,0,21
+169305,19498.74832,0,0,21
+169306,19687.26146,0,0,21
+169307,19472.64305,0,0,21
+169308,19687.26042,0,0,21
+169309,19472.64201,0,0,21
+169310,19665.00584,0,0,21
+169311,19567.09615,0,0,21
+169312,19580.01787,0,0,21
+169313,19655.38014,0,0,21
+169314,19673.99688,0,0,21
+169315,19446.48242,0,0,21
+169316,19762.75592,0,0,21
+169317,19446.48132,0,0,21
+169318,19762.75477,0,0,21
+169319,19553.83142,0,0,21
+169320,19642.14206,0,0,21
+169321,13767.12202,0,0,21
+169322,13541.30007,0,0,21
+169323,13793.20073,0,0,21
+169324,13670.76834,0,0,21
+169325,13661.02757,0,0,21
+169326,13806.04582,0,0,21
+169327,13780.33129,0,0,21
+169328,13670.76912,0,0,21
+169329,13806.04641,0,0,21
+169330,13780.33188,0,0,21
+169331,13924.93796,0,0,21
+169332,13902.83509,0,0,21
+169333,13924.93835,0,0,21
+169334,13912.09406,0,0,21
+169335,13928.55042,0,0,21
+169336,14139.90468,0,0,21
+169337,14047.44197,0,0,21
+169338,14165.93181,0,0,21
+169339,14034.26012,0,0,21
+169340,14288.17017,0,0,21
+169341,14152.75015,0,0,21
+169342,14300.98947,0,0,21
+169343,14275.01417,0,0,21
+169344,14405.9314,0,0,21
+169345,14409.83472,0,0,21
+169346,14405.9318,0,0,21
+169347,14527.93325,0,0,21
+169348,14540.72693,0,0,21
+169349,14645.64965,0,0,21
+169350,14649.33768,0,0,21
+169351,14658.44354,0,0,21
+169352,14767.05409,0,0,21
+169353,14780.18542,0,0,21
+169354,14767.0545,0,0,21
+169355,15018.67518,0,0,21
+169356,14792.95426,0,0,21
+169357,15114.05609,0,0,21
+169358,15040.01832,0,0,21
+169359,15022.58786,0,0,21
+169360,15243.80276,0,0,21
+169361,15269.65194,0,0,21
+169362,15269.65215,0,0,21
+169363,15269.65237,0,0,21
+169364,15377.57388,0,0,21
+169365,15506.91304,0,0,21
+169366,15507.27583,0,0,21
+169367,15614.60953,0,0,21
+169368,15533.05024,0,0,21
+169369,15743.57455,0,0,21
+169370,15628.02857,0,0,21
+169371,15876.79737,0,0,21
+169372,15872.94714,0,0,21
+169373,15984.04967,0,0,21
+169374,15885.64096,0,0,21
+169375,16113.39701,0,0,21
+169376,16125.67913,0,0,21
+169377,16215.95943,0,0,21
+169378,16151.71709,0,0,21
+169379,16442.47712,0,0,21
+169380,16267.31057,0,0,21
+169381,16476.60043,0,0,21
+169382,16481.15894,0,0,21
+169383,16369.56767,0,0,21
+169384,16481.15898,0,0,21
+169385,16698.35668,0,0,21
+169386,16481.15904,0,0,21
+169387,16502.2269,0,0,21
+169388,16711.36324,0,0,21
+169389,16587.75968,0,0,21
+169390,16736.57881,0,0,21
+169391,16711.36336,0,0,21
+169392,16596.42296,0,0,21
+169393,16949.56672,0,0,21
+169394,16724.34553,0,0,21
+169395,16843.17959,0,0,21
+169396,16843.56602,0,0,21
+169397,16830.58405,0,0,21
+169398,17090.12978,0,0,21
+169399,16723.98362,0,0,21
+169400,17183.34791,0,0,21
+169401,16843.56629,0,0,21
+169402,17204.44119,0,0,21
+169403,16949.56726,0,0,21
+169404,17204.4413,0,0,21
+169405,17090.13018,0,0,21
+169406,17297.65943,0,0,21
+169407,17102.70185,0,0,21
+169408,17310.6173,0,0,21
+169409,17323.18892,0,0,21
+169410,17310.61741,0,0,21
+169411,17335.73665,0,0,21
+169412,17416.58361,0,0,21
+169413,17462.67504,0,0,21
+169414,17556.09356,0,0,21
+169415,17568.64124,0,0,21
+169416,17788.10262,0,0,21
+169417,17581.55103,0,0,21
+169418,17893.65466,0,0,21
+169419,17808.66091,0,0,21
+169420,17919.08827,0,0,21
+169421,18045.38079,0,0,21
+169422,17926.94304,0,0,21
+169423,18276.70516,0,0,21
+169424,18044.99522,0,0,21
+169425,18289.20542,0,0,21
+169426,18276.70533,0,0,21
+169427,18414.50938,0,0,21
+169428,18507.17727,0,0,21
+169429,18519.65393,0,0,21
+169430,18657.85218,0,0,21
+169431,18632.19815,0,0,21
+169432,18867.53877,0,0,21
+169433,18670.30553,0,0,21
+169434,19091.43201,0,0,21
+169435,18788.0409,0,0,21
+169436,19104.24747,0,0,21
+169437,19129.46958,0,0,21
+169438,19234.01478,0,0,21
+169439,19246.78389,0,0,21
+169440,19469.59221,0,0,21
+169441,40709.74438,0,0,21
+169442,42131.17535,0,0,21
+169443,46597.62771,0,0,21
+169444,44941.04753,0,0,21
+169445,45760.30912,0,0,21
+169446,46135.78202,0,0,21
+169447,46384.50843,0,0,21
+169448,46980.82914,0,0,21
+169449,47076.29114,0,0,21
+169450,47474.71662,0,0,21
+169451,47743.50051,0,0,21
+169452,47946.46441,0,0,21
+169453,48418.23464,0,0,21
+169454,48852.39291,0,0,21
+169455,49180.44247,0,0,21
+169456,49296.02367,0,0,21
+169457,49569.56236,0,0,21
+169458,50322.6182,0,0,21
+169459,50087.75345,0,0,21
+169460,50469.46806,0,0,21
+169461,50908.49897,0,0,21
+169462,51347.99096,0,0,21
+169463,51075.43271,0,0,21
+169464,51980.38383,0,0,21
+169465,51743.24748,0,0,21
+169466,52483.18119,0,0,21
+169467,52415.70397,0,0,21
+169468,52808.58602,0,0,21
+169469,53053.99071,0,0,21
+169470,53279.40559,0,0,21
+169471,53715.00153,0,0,21
+169472,53599.51746,0,0,21
+169473,54182.4919,0,0,21
+169474,54424.9032,0,0,21
+169475,54500.86219,0,0,21
+169476,54872.45357,0,0,21
+169477,54957.98095,0,0,21
+169478,55357.55312,0,0,21
+169479,55627.72753,0,0,21
+169480,55811.97208,0,0,21
+169481,55878.36557,0,0,21
+169482,56478.74994,0,0,21
+169483,56340.65734,0,0,21
+169484,56768.24859,0,0,21
+169485,57129.45132,0,0,21
+169486,56899.92505,0,0,21
+169487,57562.3117,0,0,21
+169488,57548.64328,0,0,21
+169489,58033.64953,0,0,21
+169490,57960.44361,0,0,21
+169491,58351.84736,0,0,21
+169492,58592.23189,0,0,21
+169493,58773.21815,0,0,21
+169494,58864.7211,0,0,21
+169495,60945.27721,0,0,21
+169496,60529.43743,0,0,21
+169497,61419.88246,0,0,21
+169498,61543.81953,0,0,21
+169499,62142.99576,0,0,21
+169500,62379.62392,0,0,21
+169501,79599.97139,0,0,21
+169502,84587.29113,0,0,21
+169503,83741.08364,0,0,21
+169504,85037.0802,0,0,21
+169505,85863.4115,0,0,21
+169506,86849.87099,0,0,21
+169507,87338.42899,0,0,21
+169508,88276.74912,0,0,21
+169509,88872.16019,0,0,21
+169510,89806.20148,0,0,21
+169511,90439.26884,0,0,21
+169512,90967.50727,0,0,21
+169513,92058.52665,0,0,21
+169514,92417.42071,0,0,21
+169515,93244.5367,0,0,21
+169516,93747.75553,0,0,21
+169517,94833.389,0,0,21
+169518,95177.73033,0,0,21
+169519,95680.18814,0,0,21
+169520,96893.72874,0,0,21
+169521,96916.66227,0,0,21
+169522,97897.01423,0,0,21
+169523,98413.44406,0,0,21
+169524,99342.90811,0,0,21
+169525,99630.82087,0,0,21
+169526,100291.9397,0,0,21
+169527,101130.0244,163.9899974,0,21
+169528,101530.8826,163.9900017,0,21
+169529,102033.1972,163.9900058,0,21
+169530,102781.983,221.47479,0,21
+169531,103451.2673,240.3623387,0,21
+169532,103715.9053,259.1284032,0,21
+169533,104521.7376,1514.658876,0,21
+169534,105024.1067,2014.441965,0,21
+169535,105312.4493,2032.693474,0,21
+169536,105986.7314,2401.991948,0,21
+169537,106610.7678,2885.256311,0,21
+169538,107019.0634,3056.495735,0,21
+169539,107508.9428,3414.05435,0,21
+169540,108134.9693,3733.221275,0,21
+169541,108297.5363,4067.095423,0,21
+169542,109088.2639,4380.957142,0,21
+169543,109363.8817,4580.043152,0,21
+169544,110033.3654,5036.002546,0,21
+169545,110452.1037,5360.032736,0,21
+169546,110785.6293,5521.227726,0,21
+169547,111690.7514,6001.672353,0,21
+169548,111546.8059,6160.811565,0,21
+169549,112350.6411,6477.636324,0,21
+169550,112600.4044,6916.323214,0,21
+169551,113159.9048,7105.723061,0,21
+169552,113861.1212,7400.74694,0,21
+169553,113876.0248,7864.806076,0,21
+169554,114692.6914,7864.806879,0,21
+169555,114674.2386,8461.802372,0,21
+169556,115559.7802,8630.218857,0,21
+169557,115652.3857,9052.957118,0,21
+169558,116435.1879,9100.802374,0,21
+169559,116391.9756,9638.560809,0,21
+169560,117188.9096,9968.822059,0,21
+169561,117466.7576,9968.821565,0,21
+169562,117994.199,10398.47772,0,21
+169563,118424.1806,10561.89471,0,21
+169564,118676.968,10829.26097,0,21
+169565,119123.911,11134.2914,0,21
+169566,120056.5314,11149.75937,0,21
+169567,119945.4689,11686.52091,0,21
+169568,120759.2891,11921.06965,0,21
+169569,120717.1569,12254.90878,0,21
+169570,121556.0031,12498.25187,0,21
+169571,121871.0367,12716.29662,0,21
+169572,122337.679,13038.23022,0,21
+169573,122390.8836,13202.56192,0,21
+169574,123288.1631,13643.05605,0,21
+169575,123319.0655,14276.31495,0,21
+169576,123819.3082,14011.42083,0,21
+169577,124556.3546,14306.50187,0,21
+169578,124311.7647,14630.17582,0,21
+169579,125257.8808,14796.50491,0,21
+169580,125496.953,15103.35369,0,21
+169581,125595.4807,15409.02099,0,21
+169582,126470.9027,15712.19153,0,21
+169583,126372.5,15754.83188,0,21
+169584,126962.1585,16193.18575,0,21
+169585,127308.3262,16358.65884,0,21
+169586,127727.4747,16645.08147,0,21
+169587,127964.6406,16700.15556,0,21
+169588,128351.083,17542.1294,0,21
+169589,128882.479,17284.04224,0,21
+169590,128730.5681,17580.10965,0,21
+169591,129763.8638,17620.02547,0,21
+169592,129365.1051,18157.88564,0,21
+169593,130440.4905,17929.09419,0,21
+169594,130066.9596,18466.633,0,21
+169595,130938.0697,18332.18572,0,21
+169596,131000.4437,18627.65595,0,21
+169597,131393.1156,18785.25845,0,21
+169598,131961.3208,19040.0176,0,21
+169599,131837.3893,19077.63333,0,21
+169600,132584.2223,19356.55776,0,21
+169601,132913.993,19808.69832,0,21
+169602,133071.1427,19647.02127,0,21
+169603,133520.7217,19659.43837,0,21
+169604,133809.4589,19950.45287,0,21
+169605,134162.7824,20198.81016,0,21
+169606,134885.559,19989.07688,0,21
+169607,134600.5632,20500.36444,0,21
+169608,135228.8811,20512.66434,0,21
+169609,135789.6489,20565.82976,0,21
+169610,135572.0055,20922.2723,0,21
+169611,136656.0298,21140.80178,0,21
+169612,137722.5758,20973.66351,0,21
+169613,138547.094,21453.23529,0,21
+169614,139214.124,21957.13132,0,21
+169615,139322.4633,21556.52319,0,21
+169616,139805.8167,21812.64083,0,21
+169617,140141.9797,21852.80412,0,21
+169618,140934.31,22120.94089,0,21
+169619,141023.5125,22160.17512,0,21
+169620,141350.4261,22415.63552,0,21
+169621,144205.8344,23124.17888,0,21
+169622,145026.9911,23592.93213,0,21
+169623,145412.0616,23740.99633,0,21
+169624,145730.2529,23854.76785,0,21
+169625,146318.0385,24267.01101,0,21
+169626,148345.1994,24318.59842,0,21
+169627,148520.7184,24602.83951,0,21
+169628,149750.937,24889.47497,0,21
+169629,149390.5094,24956.19273,0,21
+169630,149933.8407,25950.77944,0,21
+169631,150636.7715,25547.77775,0,21
+169632,150666.5234,26198.49618,0,21
+169633,151135.6947,26328.86797,0,21
+169634,151324.3427,26627.12337,0,21
+169635,151993.9463,26964.17357,0,21
+169636,151924.722,27078.41269,0,21
+169637,152544.9925,27376.30754,0,21
+169638,152548.4276,27747.18188,0,21
+169639,152807.578,27808.08457,0,21
+169640,153690.89,28166.02458,0,21
+169641,153368.4674,28471.19143,0,21
+169642,153728.8227,28582.30174,0,21
+169643,154382.6165,28874.62776,0,21
+169644,154240.4758,29225.47477,0,21
+169645,154719.6218,29312.79136,0,21
+169646,155079.9259,29625.21913,0,21
+169647,155112.3629,29940.11846,0,21
+169648,155536.2856,30046.79338,0,21
+169649,155594.4504,30358.65097,0,21
+169650,156192.5084,30635.04381,0,21
+169651,156417.3618,30787.33018,0,21
+169652,156145.4888,31064.37742,0,21
+169653,156816.3705,31383.70611,0,21
+169654,157227.3807,31511.12213,0,21
+169655,156976.5969,32010.64406,0,21
+169656,157429.6053,31867.14784,0,21
+169657,157796.2492,32585.02259,0,21
+169658,157702.2305,32489.44424,0,21
+169659,158383.8158,35113.02699,0,21
+169660,158123.54,36126.99316,0,21
+169661,158673.7515,36454.91706,0,21
+169662,160290.6561,37220.63731,0,21
+169663,159304.3373,39409.91669,0,21
+169664,160119.0295,39952.468,0,21
+169665,160718.9376,40924.13002,0,21
+169666,160661.6753,41850.75188,0,21
+169667,161002.6814,42826.87214,0,21
+169668,161264.1105,43575.32021,0,21
+169669,161781.3669,44505.27669,0,21
+169670,161911.2422,45075.17403,0,21
+169671,162106.4443,46014.16199,0,21
+169672,162567.5853,46848.441,0,21
+169673,162676.9455,47474.90796,0,21
+169674,163266.3322,48312.06918,0,21
+169675,162995.8519,49149.13589,0,21
+169676,163873.6992,49946.85406,0,21
+169677,163776.0287,50292.98448,0,21
+169678,164005.0326,51598.86267,0,21
+169679,164570.4197,52301.21747,0,21
+169680,165367.2996,52719.97563,0,21
+169681,165935.501,53540.72414,0,21
+169682,166661.0733,54565.02854,0,21
+169683,166653.5002,55472.25384,0,21
+169684,167516.3223,56193.04045,0,21
+169685,167408.9458,57039.62361,0,21
+169686,168162.2343,57559.12371,0,21
+169687,168548.5414,58571.42342,0,21
+169688,168500.6295,59241.47569,0,21
+169689,169538.7018,60609.08,0,21
+169690,169459.4323,60925.92842,0,21
+169691,170069.0772,62043.62765,0,21
+169692,170632.2951,63124.25392,0,21
+169693,170496.0907,63592.19064,0,21
+169694,171312.4588,65196.50697,0,21
+169695,171637.6637,65980.78298,0,21
+169696,171912.5248,69175.85607,0,21
+169697,172099.1262,71685.85483,0,21
+169698,172881.6346,73010.99425,0,21
+169699,173006.381,73922.29635,0,21
+169700,173550.2611,75553.15734,0,21
+169701,173867.1788,76888.14218,0,21
+169702,174023.5987,77950.63036,0,21
+169703,174748.1899,79477.2919,0,21
+169704,174724.0951,80916.68846,0,21
+169705,175545.588,81812.39828,0,21
+169706,175385.7047,83724.73965,0,21
+169707,176141.747,85903.45902,0,21
+169708,176544.2986,88892.38508,0,21
+169709,176525.2283,91566.05602,0,21
+169710,177433.8303,94163.03837,0,21
+169711,177220.7122,96791.90319,0,21
+169712,177970.5162,99063.51611,0,21
+169713,178130.584,101822.2227,0,21
+169714,178663.8951,104506.4625,0,21
+169715,178640.3235,106961.1359,0,21
+169716,179601.2982,109436.0272,0,21
+169717,179563.8787,112003.6523,0,21
+169718,179763.1349,115212.8224,0,21
+169719,180474.7132,117212.6944,0,21
+169720,180735.4731,120975.0652,0,21
+169721,181084.6409,123736.4093,0,21
+169722,181753.9576,126307.0606,0,21
+169723,181612.1425,129451.9518,0,21
+169724,182519.6677,132068.8316,0,21
+169725,182528.8412,134483.9997,0,21
+169726,183369.4224,137602.9027,0,21
+169727,183383.2949,140286.11,0,21
+169728,183861.4034,142686.2837,0,21
+169729,184298.3077,145744.241,0,21
+169730,184539.0101,148226.1799,0,21
+169731,185152.5654,150206.1442,0,21
+169732,185294.5371,152736.6585,0,21
+169733,185576.3275,155970.5633,0,21
+169734,186279.5891,158174.8543,0,21
+169735,186463.3194,160780.7615,0,21
+169736,187191.5871,163627.7616,0,21
+169737,186881.8549,168064.5772,0,21
+169738,187947.756,175379.4624,0,21
+169739,188014.65,175737.906,0,21
+169740,188200.0622,180081.6532,0,21
+169741,0,0,0,21
+169742,0,0,0,21
+169743,82717.44987,160.5299454,0,21
+169744,0,0,0,21
+169745,0,368553.7545,1423019.106,21
+169746,340184.2577,0,0,21
+169747,0,0,0,21
+169748,0,0,0,21
+169749,0,105.8654564,0,21
+169750,0,0,0,21
+169751,0,0,0,21
+169752,0,0,0,21
+169753,0,110.5248477,0,21
+169754,0,0,0,21
+169755,0,0,0,21
+169756,0,0,0,21
+169757,0,120.6284123,0,21
+169758,0,0,0,21
+169759,0,0,0,21
+169760,0,0,0,21
+169761,0,121.0171907,0,21
+169762,0,0,0,21
+169763,0,0,0,21
+169764,0,0,0,21
+169765,0,121.195119,0,21
+169766,0,0,0,21
+169767,0,0,0,21
+169768,0,0,0,21
+169769,0,121.4053334,0,21
+169770,0,0,0,21
+169771,0,0,0,21
+169772,0,0,0,21
+169773,0,122.5448031,0,21
+169774,0,0,0,21
+169775,0,0,0,21
+169776,0,0,0,21
+169777,0,123.8449,0,21
+169778,0,0,0,21
+169779,0,368557.4601,1358790.812,21
+169780,0,0,0,21
+169781,340155.5836,120.4967369,0,21
+169782,0,0,0,21
+169783,0,0,0,21
+169784,0,0,0,21
+169785,0,97.77337086,0,21
+169786,0,0,0,21
+169787,0,0,0,21
+169788,0,0,0,21
+169789,0,114.539078,0,21
+169790,0,0,0,21
+169791,0,0,0,21
+169792,0,0,0,21
+169793,0,122.4491893,0,21
+169794,0,0,0,21
+169795,0,0,0,21
+169796,0,0,0,21
+169797,0,120.4869249,0,21
+169798,0,0,0,21
+169799,0,0,0,21
+169800,0,0,0,15.6
+169801,0,0,0,15.6
+169802,0,0,0,15.6
+169803,0,0,0,15.6
+169804,0,0,0,15.6
+169805,0,0,0,15.6
+169806,0,0,0,15.6
+169807,0,0,0,15.6
+169808,0,0,0,15.6
+169809,0,0,0,15.6
+169810,0,0,0,15.6
+169811,0,0,0,15.6
+169812,0,0,0,15.6
+169813,0,368553.2549,1298931.154,15.6
+169814,0,0,0,15.6
+169815,0,0,0,15.6
+169816,340150.9571,0,0,15.6
+169817,0,0,0,15.6
+169818,0,0,0,15.6
+169819,0,0,0,15.6
+169820,0,0,0,15.6
+169821,0,0,0,15.6
+169822,0,0,0,15.6
+169823,0,0,0,15.6
+169824,0,0,0,15.6
+169825,0,0,0,15.6
+169826,0,0,0,15.6
+169827,0,0,0,15.6
+169828,0,0,0,15.6
+169829,0,0,0,15.6
+169830,0,0,0,15.6
+169831,0,0,0,15.6
+169832,0,0,0,15.6
+169833,0,0,0,15.6
+169834,0,0,0,15.6
+169835,0,0,0,15.6
+169836,0,0,0,15.6
+169837,0,0,0,15.6
+169838,0,0,0,15.6
+169839,0,0,0,15.6
+169840,0,0,0,15.6
+169841,0,0,0,15.6
+169842,0,0,0,15.6
+169843,0,0,0,15.6
+169844,0,0,0,15.6
+169845,0,0,0,15.6
+169846,0,0,0,15.6
+169847,0,0,1245060.998,15.6
+169848,0,368540.7642,0,15.6
+169849,0,0,0,15.6
+169850,0,0,0,15.6
+169851,0,0,0,15.6
+169852,340178.256,0,0,15.6
+169853,0,0,0,15.6
+169854,0,0,0,15.6
+169855,0,0,0,15.6
+169856,0,0,0,15.6
+169857,0,0,0,15.6
+169858,0,0,0,15.6
+169859,0,0,0,15.6
+169860,0,0,0,15.6
+169861,0,0,0,15.6
+169862,0,0,0,15.6
+169863,0,0,0,15.6
+169864,0,0,0,15.6
+169865,0,0,0,15.6
+169866,0,0,0,15.6
+169867,0,0,0,15.6
+169868,0,0,0,15.6
+169869,0,0,0,15.6
+169870,0,0,0,15.6
+169871,0,0,0,15.6
+169872,0,0,0,15.6
+169873,0,0,0,15.6
+169874,0,0,0,15.6
+169875,0,0,0,15.6
+169876,0,0,0,15.6
+169877,0,0,0,15.6
+169878,0,0,0,15.6
+169879,0,0,0,15.6
+169880,0,0,0,15.6
+169881,0,0,0,15.6
+169882,0,0,1195392.383,15.6
+169883,0,368532.3866,0,15.6
+169884,0,0,0,15.6
+169885,0,0,0,15.6
+169886,0,0,0,15.6
+169887,0,0,0,15.6
+169888,340185.5476,0,0,15.6
+169889,0,0,0,15.6
+169890,0,0,0,15.6
+169891,0,0,0,15.6
+169892,0,0,0,15.6
+169893,0,0,0,15.6
+169894,0,0,0,15.6
+169895,0,0,0,15.6
+169896,0,0,0,15.6
+169897,0,0,0,15.6
+169898,0,0,0,15.6
+169899,0,0,0,15.6
+169900,0,0,0,15.6
+169901,0,0,0,15.6
+169902,0,0,0,15.6
+169903,0,0,0,15.6
+169904,0,0,0,15.6
+169905,0,0,0,15.6
+169906,0,0,0,15.6
+169907,0,0,0,15.6
+169908,0,0,0,15.6
+169909,0,0,0,15.6
+169910,0,0,0,15.6
+169911,0,0,0,15.6
+169912,0,0,0,15.6
+169913,0,0,0,15.6
+169914,0,0,0,15.6
+169915,0,0,0,15.6
+169916,0,0,0,15.6
+169917,0,0,1149924.786,15.6
+169918,0,368528.4354,0,15.6
+169919,0,0,0,15.6
+169920,0,0,0,15.6
+169921,0,0,0,15.6
+169922,0,0,0,15.6
+169923,0,0,0,15.6
+169924,340183.0084,0,0,15.6
+169925,0,0,0,15.6
+169926,0,0,0,15.6
+169927,0,0,0,15.6
+169928,0,0,0,15.6
+169929,0,0,0,15.6
+169930,0,0,0,15.6
+169931,0,0,0,15.6
+169932,0,0,0,15.6
+169933,0,0,0,15.6
+169934,0,0,0,15.6
+169935,0,0,0,15.6
+169936,0,0,0,15.6
+169937,0,0,0,15.6
+169938,0,0,0,15.6
+169939,0,0,0,15.6
+169940,0,0,0,15.6
+169941,0,0,0,15.6
+169942,0,0,0,15.6
+169943,0,0,0,15.6
+169944,0,0,0,15.6
+169945,0,0,0,15.6
+169946,0,0,0,15.6
+169947,0,0,0,15.6
+169948,0,0,0,15.6
+169949,0,0,0,15.6
+169950,0,0,0,15.6
+169951,0,0,0,15.6
+169952,0,0,1109286.901,15.6
+169953,0,368525.8947,0,15.6
+169954,0,0,0,15.6
+169955,0,0,0,15.6
+169956,0,0,0,15.6
+169957,0,0,0,15.6
+169958,0,0,0,15.6
+169959,0,0,0,15.6
+169960,340154.9678,0,0,15.6
+169961,0,0,0,15.6
+169962,0,0,0,15.6
+169963,0,0,0,15.6
+169964,0,0,0,15.6
+169965,0,0,0,15.6
+169966,0,0,0,15.6
+169967,0,0,0,15.6
+169968,0,0,0,15.6
+169969,0,0,0,15.6
+169970,0,0,0,15.6
+169971,0,0,0,15.6
+169972,0,0,0,15.6
+169973,0,0,0,15.6
+169974,0,0,0,15.6
+169975,0,0,0,15.6
+169976,0,0,0,15.6
+169977,0,0,0,15.6
+169978,0,0,0,15.6
+169979,0,0,0,15.6
+169980,0,0,0,15.6
+169981,0,0,0,15.6
+169982,0,0,0,15.6
+169983,0,0,0,15.6
+169984,0,0,0,15.6
+169985,0,0,0,15.6
+169986,0,0,0,15.6
+169987,0,0,1072012.615,15.6
+169988,0,368524.2267,0,15.6
+169989,0,0,0,15.6
+169990,0,0,0,15.6
+169991,0,0,0,15.6
+169992,0,0,0,15.6
+169993,0,0,0,15.6
+169994,0,0,0,15.6
+169995,0,0,0,15.6
+169996,340141.0858,0,0,15.6
+169997,0,0,0,15.6
+169998,0,0,0,15.6
+169999,0,0,0,15.6
+170000,0,0,0,15.6
+170001,0,0,0,15.6
+170002,0,0,0,15.6
+170003,0,0,0,15.6
+170004,0,0,0,15.6
+170005,0,0,0,15.6
+170006,0,0,0,15.6
+170007,0,0,0,15.6
+170008,0,0,0,15.6
+170009,0,0,0,15.6
+170010,0,0,0,15.6
+170011,0,0,0,15.6
+170012,0,0,0,15.6
+170013,0,0,0,15.6
+170014,0,0,0,15.6
+170015,0,0,0,15.6
+170016,0,0,0,15.6
+170017,0,0,0,15.6
+170018,0,0,0,15.6
+170019,0,0,0,15.6
+170020,0,0,0,15.6
+170021,0,0,0,15.6
+170022,0,0,1037080.298,15.6
+170023,0,368523.7139,0,15.6
+170024,0,0,0,15.6
+170025,0,0,0,15.6
+170026,0,0,0,15.6
+170027,0,0,0,15.6
+170028,0,0,0,15.6
+170029,0,0,0,15.6
+170030,0,0,0,15.6
+170031,0,0,0,15.6
+170032,340146.1142,0,0,15.6
+170033,0,0,0,15.6
+170034,0,0,0,15.6
+170035,0,0,0,15.6
+170036,0,0,0,15.6
+170037,0,0,0,15.6
+170038,0,0,0,15.6
+170039,0,0,0,15.6
+170040,0,0,0,15.6
+170041,0,0,0,15.6
+170042,0,0,0,15.6
+170043,0,0,0,15.6
+170044,0,0,0,15.6
+170045,0,0,0,15.6
+170046,0,0,0,15.6
+170047,0,0,0,15.6
+170048,0,0,0,15.6
+170049,0,0,0,15.6
+170050,0,0,0,15.6
+170051,0,0,0,15.6
+170052,0,0,0,15.6
+170053,0,0,0,15.6
+170054,0,0,0,15.6
+170055,0,0,0,15.6
+170056,0,0,0,15.6
+170057,0,0,1005924.516,15.6
+170058,0,368511.2194,0,15.6
+170059,0,0,0,15.6
+170060,0,0,0,15.6
+170061,0,0,0,15.6
+170062,0,0,0,15.6
+170063,0,0,0,15.6
+170064,0,0,0,15.6
+170065,0,0,0,15.6
+170066,0,0,0,15.6
+170067,0,0,0,15.6
+170068,340147.2617,0,0,15.6
+170069,0,0,0,15.6
+170070,0,0,0,15.6
+170071,0,0,0,15.6
+170072,0,0,0,15.6
+170073,0,0,0,15.6
+170074,0,0,0,15.6
+170075,0,0,0,15.6
+170076,0,0,0,15.6
+170077,0,0,0,15.6
+170078,0,0,0,15.6
+170079,0,0,0,15.6
+170080,0,0,0,15.6
+170081,0,0,0,15.6
+170082,0,0,0,15.6
+170083,0,0,0,15.6
+170084,0,0,0,15.6
+170085,0,0,0,15.6
+170086,0,0,0,15.6
+170087,0,0,0,15.6
+170088,0,0,0,15.6
+170089,0,0,0,15.6
+170090,0,0,0,15.6
+170091,0,0,0,15.6
+170092,0,0,977767.9066,15.6
+170093,0,368485.1396,0,15.6
+170094,0,0,0,15.6
+170095,0,0,0,15.6
+170096,0,0,0,15.6
+170097,0,0,0,15.6
+170098,0,0,0,15.6
+170099,0,0,0,15.6
+170100,0,0,0,15.6
+170101,0,0,0,15.6
+170102,0,0,0,15.6
+170103,0,0,0,15.6
+170104,340145.1527,0,0,15.6
+170105,0,0,0,15.6
+170106,0,0,0,15.6
+170107,0,0,0,15.6
+170108,0,0,0,15.6
+170109,0,0,0,15.6
+170110,0,0,0,15.6
+170111,0,0,0,15.6
+170112,0,0,0,15.6
+170113,0,0,0,15.6
+170114,0,0,0,15.6
+170115,0,0,0,15.6
+170116,0,0,0,15.6
+170117,0,0,0,15.6
+170118,0,0,0,15.6
+170119,0,0,0,15.6
+170120,0,0,0,15.6
+170121,0,0,0,15.6
+170122,0,0,0,15.6
+170123,0,0,0,15.6
+170124,0,0,0,15.6
+170125,0,0,0,15.6
+170126,0,0,951899.3748,15.6
+170127,0,0,0,15.6
+170128,0,368464.4605,0,15.6
+170129,0,0,0,15.6
+170130,0,0,0,15.6
+170131,0,0,0,15.6
+170132,0,0,0,15.6
+170133,0,0,0,15.6
+170134,0,0,0,15.6
+170135,0,0,0,15.6
+170136,0,0,0,15.6
+170137,0,0,0,15.6
+170138,0,0,0,15.6
+170139,340121.2188,0,0,15.6
+170140,0,31384.72694,0,15.6
+170141,0,721.4951061,0,15.6
+170142,0,11713.48338,0,15.6
+170143,0,14217.81557,0,15.6
+170144,0,16122.8499,0,15.6
+170145,0,14269.08169,0,15.6
+170146,0,15237.46821,0,15.6
+170147,0,15470.6249,0,15.6
+170148,0,15770.00007,0,15.6
+170149,0,15952.54616,0,15.6
+170150,0,16232.81556,0,15.6
+170151,0,16426.97092,0,15.6
+170152,0,16680.56225,0,15.6
+170153,0,16891.40957,0,15.6
+170154,0,17153.59475,0,15.6
+170155,0,17318.21591,0,15.6
+170156,0,17608.94258,0,15.6
+170157,0,17810.172,0,15.6
+170158,0,18025.32711,0,15.6
+170159,0,18315.85272,0,15.6
+170160,0,18438.87289,928174.9697,17.8
+170161,746343.0957,780119.9053,0,17.8
+170162,103764.9622,755261.5307,0,17.8
+170163,141159.0266,193945.0143,0,17.8
+170164,270537.1639,287981.4198,0,17.8
+170165,191343.8367,315828.5035,0,17.8
+170166,206467.4037,269299.4752,0,17.8
+170167,203922.1184,274001.0406,0,17.8
+170168,203750.0885,272266.771,0,17.8
+170169,203453.5899,271446.4566,0,17.8
+170170,203441.9285,225660.6413,0,17.8
+170171,203319.4138,225199.7884,0,17.8
+170172,203180.4604,312520.6803,0,17.8
+170173,203271.2783,246110.812,0,17.8
+170174,543350.1105,258118.9127,0,17.8
+170175,203193.9282,259748.0763,0,17.8
+170176,207005.1684,256293.8017,0,17.8
+170177,209167.0323,257999.9677,0,17.8
+170178,207322.5293,261436.669,0,17.8
+170179,208144.1633,256304.8604,0,17.8
+170180,208481.2456,256332.0696,0,17.8
+170181,208743.1097,254863.0902,0,17.8
+170182,208753.9533,254191.2191,0,17.8
+170183,209030.438,252339.7714,0,17.8
+170184,208752.71,251094.6964,0,17.8
+170185,209775.0753,249976.5032,0,17.8
+170186,209337.9993,248685.2837,0,17.8
+170187,209857.9983,247489.3393,0,17.8
+170188,210049.2893,245810.367,876.2542087,17.8
+170189,210286.5642,244862.9714,3024.370947,17.8
+170190,210352.5033,243697.3722,2103.541829,17.8
+170191,0,40980.91402,2763.827096,17.8
+170192,0,41444.99409,3024.83524,17.8
+170193,0,46153.69788,0,17.8
+170194,80979.95486,46205.4781,906251.827,17.8
+170195,18847.74057,47872.17899,0,17.8
+170196,25108.62046,414648.5721,0,17.8
+170197,33137.1078,46688.77628,0,17.8
+170198,29586.40847,46560.29809,0,17.8
+170199,35829.40265,46321.21344,0,17.8
+170200,584173.511,46085.76144,0,17.8
+170201,59316.27971,46037.38859,0,17.8
+170202,171305.7959,6345.125839,0,17.8
+170203,259151.885,6271.968298,0,17.8
+170204,200863.156,6287.25185,0,17.8
+170205,210712.2831,86580.62109,0,17.8
+170206,211075.7368,18552.82664,0,17.8
+170207,210900.4767,37976.69522,0,17.8
+170208,211613.6722,38784.96532,0,17.8
+170209,551476.5635,38412.72727,0,17.8
+170210,211560.2748,50300.27681,0,17.8
+170211,212126.1902,41725.18526,0,17.8
+170212,212017.6294,44215.37422,0,17.8
+170213,212363.5146,44045.01107,0,17.8
+170214,212192.3441,43806.93276,0,17.8
+170215,212640.2076,43728.0416,0,17.8
+170216,213012.7472,43485.21776,0,17.8
+170217,213157.2221,43334.70384,0,17.8
+170218,213230.3619,43076.13557,0,17.8
+170219,213401.3077,42975.45355,0,17.8
+170220,213837.1225,42548.49746,0,20
+170221,1054707.835,1185343.667,20424.40678,20
+170222,490668.9517,347635.055,7747.352467,20
+170223,133962.6119,199008.6373,40833.67282,20
+170224,233418.9474,347998.4555,49638.98969,20
+170225,325973.9431,324539.6335,68562.94726,20
+170226,278416.9883,322421.8704,51603.88449,20
+170227,271446.4152,312003.9358,75728.81154,20
+170228,275377.2728,314628.6553,70525.90355,20
+170229,275839.4805,313897.0948,70343.11366,20
+170230,274781.8341,314678.9331,74906.99596,20
+170231,274567.605,313600.5603,81633.44021,20
+170232,273950.2016,312976.694,77344.48011,20
+170233,273926.4246,313163.3158,79608.91313,20
+170234,273379.3988,312632.9009,79662.83916,20
+170235,273742.2772,312878.6135,80711.02385,20
+170236,272841.7164,312223.6838,80287.53523,20
+170237,272932.9514,311962.7443,81506.49923,20
+170238,271334.1922,311880.4571,81391.8952,20
+170239,270443.2572,311903.0124,82169.08343,20
+170240,269994.8161,311311.2914,82118.75011,20
+170241,270039.5053,311328.7473,83111.44344,20
+170242,269330.7224,311533.7176,83276.82783,20
+170243,269303.9332,310908.3472,83536.45743,20
+170244,268877.5181,311007.143,84154.6687,20
+170245,268533.9612,310847.6473,84397.66851,20
+170246,268456.4211,310800.6273,84956.57665,20
+170247,267842.231,310509.4088,85250.42926,20
+170248,267885.6027,309190.0814,85737.4186,20
+170249,267580.9703,308347.5691,85850.2533,20
+170250,267070.1808,308411.2559,86715.14518,20
+170251,267225.1029,307956.725,86754.34135,20
+170252,266606.4356,307729.1031,87507.28717,20
+170253,266466.8212,307550.9945,87555.1746,20
+170254,266553.3339,306964.8066,87915.19902,20
+170255,266176.6984,306794.0659,88516.79231,20
+170256,265541.6434,306512.4381,88842.82126,20
+170257,265839.7828,306382.6438,88989.01492,20
+170258,265155.7216,305931.3068,89891.55088,20
+170259,265282.9043,306053.8487,89664.83826,20
+170260,264381.8029,304985.4026,90395.1194,20
+170261,264374.5401,305378.0162,90441.73409,20
+170262,263624.9472,305104.7347,91118.90666,20
+170263,264344.9676,304408.6455,91423.11183,20
+170264,263303.3386,303673.2304,91424.47348,20
+170265,263340.803,302811.658,92370.58622,20
+170266,263586.323,302506.9039,92170.65902,20
+170267,262822.2405,302556.2354,93083.6951,20
+170268,262621.742,301660.3359,92769.36285,20
+170269,263173.5036,302207.6792,93558.91889,20
+170270,262272.7451,301636.6911,93543.78115,20
+170271,262359.8211,301063.2164,94217.29104,20
+170272,262599.8751,301101.8631,94215.68148,20
+170273,261873.276,300292.4408,94780.00066,20
+170274,261971.7879,300805.8197,95178.6728,20
+170275,262069.51,300201.4512,95166.89501,20
+170276,261528.2439,299985.8368,95736.81426,20
+170277,261621.2111,299624.4527,93241.58892,20
+170278,261206.3458,299698.4378,92902.05951,20
+170279,261458.444,298960.0447,93036.43664,20
+170280,261004.3787,299327.183,93186.45501,21
+170281,269517.0173,556501.8724,93141.56988,21
+170282,269448.0357,553992.2554,93389.65975,21
+170283,269134.0616,552551.5112,93609.28164,21
+170284,268744.4762,550210.1705,93666.74059,21
+170285,269115.8698,547141.0432,93604.259,21
+170286,268622.6617,546104.8508,93866.5113,21
+170287,268055.8755,543152.4738,94248.74679,21
+170288,268143.0434,541242.9978,94168.70625,21
+170289,268335.2099,538796.6343,94088.96984,21
+170290,267753.5486,536600.3063,94449.60114,21
+170291,267561.1957,534788.0622,94271.5881,21
+170292,267474.726,532065.9272,94910.39127,21
+170293,267483.2618,529938.9407,86827.28689,21
+170294,267058.0376,528193.1873,85651.63819,21
+170295,266814.6542,525230.0141,84872.05497,21
+170296,266653.9129,523331.0329,84989.70549,21
+170297,266834.8722,521136.3032,84378.30781,21
+170298,266162.2731,518819.8722,83879.22479,21
+170299,266604.5005,516820.0812,83883.51707,21
+170300,265624.3757,513789.0707,83295.8766,21
+170301,266162.1398,512029.7301,83312.19372,21
+170302,265521.3092,509303.1435,82914.40345,21
+170303,265625.2048,506973.1263,82969.44068,21
+170304,265335.5327,504771.2297,82523.6177,21
+170305,265060.0264,502627.9426,82667.90818,21
+170306,265198.0757,500526.352,82629.18504,21
+170307,264865.8669,497824.2551,82223.2685,21
+170308,264559.7228,496096.1361,82266.95821,21
+170309,264629.6333,493037.4173,82255.67142,21
+170310,264174.0446,491881.2442,82121.77834,21
+170311,264332.6133,489057.5929,82437.31251,21
+170312,263794.828,486917.8341,82050.27284,21
+170313,263956.4049,484308.2286,81809.06882,21
+170314,262981.1628,482799.1456,81515.38285,21
+170315,263584.4054,479941.6146,81145.01595,21
+170316,262726.2883,478238.3637,81360.99813,21
+170317,262704.0519,475741.0449,80263.65175,21
+170318,262325.2865,473660.8427,80902.49819,21
+170319,262340.7015,471525.552,80386.88395,21
+170320,262846.7097,469058.4569,80192.05857,21
+170321,262582.3073,467044.8258,79570.13359,21
+170322,262508.9234,464730.457,80079.7246,21
+170323,261827.8544,462787.5085,79016.99216,21
+170324,262168.8967,460421.7019,79277.71655,21
+170325,261417.4721,457776.0396,80560.77998,21
+170326,261412.7121,456077.2414,80496.75047,21
+170327,261229.1993,454045.4058,80166.35868,21
+170328,260762.3655,450999.7266,80124.07211,21
+170329,260858.6026,449816.1307,80192.57361,21
+170330,260322.5569,447088.5092,79444.77821,21
+170331,260065.2581,444925.2684,79917.0077,21
+170332,260217.3272,442638.673,79009.76084,21
+170333,259124.9686,440895.1803,79462.53796,21
+170334,259773.1183,438155.7613,78850.31017,21
+170335,259233.0237,435892.4652,79155.39496,21
+170336,258708.6946,434118.0108,78706.84377,21
+170337,258534.1235,431770.6454,78333.35626,21
+170338,261605.805,429371.7733,78098.19995,21
+170339,262984.6633,427585.2752,78561.82152,21
+170340,262241.6069,424942.0005,77916.84795,21
+170341,236306.8651,401139.4944,50959.94996,21
+170342,234952.5865,397137.4591,48840.29141,21
+170343,234407.228,394733.5551,48772.09504,21
+170344,234368.4686,391657.2618,47127.35991,21
+170345,232657.3733,388849.72,47463.49485,21
+170346,233122.0065,386574.3197,46322.30595,21
+170347,232322.6314,383455.5537,45994.92572,21
+170348,231484.398,381030.6509,45362.3644,21
+170349,231142.4407,378253.0221,44912.9807,21
+170350,230877.508,375235.968,44557.5062,21
+170351,230252.6847,373135.7703,43749.03642,21
+170352,229725.1933,370282.5124,43669.94049,21
+170353,229008.1642,367537.093,42635.18664,21
+170354,228687.2702,364564.6072,42660.25407,21
+170355,228321.6534,361815.5249,41869.52541,21
+170356,227392.3428,359559.49,41557.02225,21
+170357,227634.4321,356846.375,42513.80684,21
+170358,226305.5163,353967.8607,42051.93749,21
+170359,226540.195,351084.5057,41983.0611,21
+170360,225830.6049,348778.7962,41661.40029,21
+170361,225350.3052,345682.7721,40948.54938,21
+170362,224817.4802,343219.0282,40255.54625,21
+170363,224637.883,340698.0658,40531.44842,21
+170364,223962.1474,337391.0099,39718.17835,21
+170365,223464.9846,335409.6307,39706.31649,21
+170366,223562.0713,332372.0044,39336.63592,21
+170367,222533.3529,329878.7671,39140.2468,21
+170368,222254.3495,327005.2921,38878.89566,21
+170369,222172.6253,324739.3756,38498.82452,21
+170370,221284.102,321946.6692,38198.81712,21
+170371,221440.9901,318620.2605,38193.22129,21
+170372,220554.1375,316497.9152,37650.52105,21
+170373,220603.5312,312745.647,37761.56641,21
+170374,219798.0413,309980.0604,37519.81271,21
+170375,219752.5048,307024.8769,37353.24856,21
+170376,219403.4522,304237.2249,37195.645,21
+170377,219057.0439,300398.7778,37237.00401,21
+170378,218826.1591,298370.1461,36891.78695,21
+170379,218157.526,294755.8088,36914.76526,21
+170380,217859.8431,291718.6935,36644.87113,21
+170381,217722.9106,286934.6836,36602.15196,21
+170382,217330.0216,283846.7857,36069.97598,21
+170383,217154.7337,280548.2606,36461.22258,21
+170384,216540.2164,276908.036,35751.21003,21
+170385,216552.0217,274053.228,35782.43337,21
+170386,215615.4736,270897.766,35602.24312,21
+170387,216144.9251,267225.8892,35851.19572,21
+170388,215188.1779,264846.5959,34959.31886,21
+170389,215147.1511,260923.4888,35244.48602,21
+170390,214550.4376,257832.9893,35052.99608,21
+170391,214509.0741,254973.0024,34733.41536,21
+170392,214459.4616,251568.5957,34659.82965,21
+170393,213752.8925,248087.2983,34339.28217,21
+170394,213582.2562,245339.8993,34645.53863,21
+170395,213201.9487,241421.6308,33871.12275,21
+170396,212965.6458,238867.4252,33982.64177,21
+170397,212795.243,234992.9447,33909.06382,21
+170398,212247.1469,232078.9902,33826.55197,21
+170399,212122.0427,228589.4737,33375.04549,21
+170400,211968.8405,224334.3606,33313.8789,21
+170401,210576.2382,223779.071,33085.14911,21
+170402,209575.6651,222411.5708,33007.67837,21
+170403,208768.6637,220735.7719,32721.05203,21
+170404,207305.3695,219573.4417,32594.05495,21
+170405,206527.0664,217940.0467,32243.15938,21
+170406,205883.8433,216404.7908,32269.85213,21
+170407,205430.6625,213306.2488,31891.71431,21
+170408,204984.2966,211126.1859,31913.79795,21
+170409,204680.1322,209680.3221,31497.58823,21
+170410,204524.003,207430.1503,31141.25009,21
+170411,203552.0341,206591.6455,31280.08552,21
+170412,203583.3366,204836.715,31059.41072,21
+170413,202774.4973,204597.3804,30707.87821,21
+170414,202616.2234,203094.182,30622.69994,21
+170415,202300.1946,202991.5128,30424.5867,21
+170416,201371.5489,201174.6036,30198.94661,21
+170417,201712.4588,201006.2069,30221.07924,21
+170418,200483.7707,199434.9613,29705.92671,21
+170419,200792.9661,199244.4181,29587.70483,21
+170420,199587.0361,197857.2099,29637.36439,21
+170421,199868.1693,196729.5445,29423.59881,21
+170422,199091.4884,196236.7995,29083.77147,21
+170423,198458.511,194915.9244,29364.84395,21
+170424,198503.2833,193838.9987,28895.27063,21
+170425,197995.096,193158.4127,29005.89542,21
+170426,197058.7969,191626.5379,28816.23277,21
+170427,197257.3569,191036.0826,28787.35761,21
+170428,196298.5735,189780.1719,28468.73836,21
+170429,196250.7136,189033.941,28733.02416,21
+170430,195446.8366,187928.7528,28397.97918,21
+170431,195397.2028,187130.4733,28028.65848,21
+170432,194517.732,185509.855,27807.14096,21
+170433,194493.9317,185021.9638,27522.03846,21
+170434,193990.0651,183061.8193,27073.80844,21
+170435,192953.4905,182620.1197,26746.01747,21
+170436,193389.1891,180807.7093,26407.73776,21
+170437,192467.8563,179239.5952,26005.7266,21
+170438,191871.3599,178466.5628,25542.44725,21
+170439,191921.5324,177030.25,25248.18062,21
+170440,190805.7294,175784.6832,24956.78087,21
+170441,191153.5332,174876.1265,24089.95299,21
+170442,189922.3567,173266.0509,24180.53032,21
+170443,190174.0961,172462.6981,23509.08533,21
+170444,189067.7652,170925.7594,23288.39539,21
+170445,188940.8214,169564.7605,22627.4449,21
+170446,188517.6963,168754.875,22359.53993,21
+170447,187956.3688,167113.279,21858.50967,21
+170448,187518.4842,166051.7087,21497.15844,21
+170449,187165.0059,164575.3312,21068.70106,21
+170450,186601.031,163383.2756,20417.85787,21
+170451,186173.0649,162460.4161,20214.88305,21
+170452,185574.4312,160383.2606,19622.06297,21
+170453,185536.7429,159564.2316,19124.33046,21
+170454,184488.0271,158110.4895,18715.57515,21
+170455,184557.9781,156714.2107,18221.36888,21
+170456,183607.7958,155045.6762,17793.15063,21
+170457,183606.2931,154361.2926,17248.55806,21
+170458,182781.9629,152314.4509,16895.7573,21
+170459,182622.0946,151523.2961,16153.27075,21
+170460,181932.9273,149986.0319,15784.06656,21
+170461,183101.3747,146215.8421,18380.87097,21
+170462,182397.4074,142410.9528,17479.93852,21
+170463,182079.494,139222.1644,17437.0334,21
+170464,181751.0917,135927.2253,16547.29683,21
+170465,180948.6725,132383.9036,16313.43655,21
+170466,181031.1812,129215.6764,15584.1266,21
+170467,180058.4379,125568.3785,15032.78712,21
+170468,180156.6511,122510.9671,14641.16196,21
+170469,179124.4711,119185.3325,13894.90944,21
+170470,179413.0905,115814.8233,13665.13309,21
+170471,178547.5178,112162.9805,12891.82443,21
+170472,178294.1784,109367.246,12377.54826,21
+170473,178224.1324,105912.9525,11904.33485,21
+170474,177472.8335,102951.7036,11213.48677,21
+170475,177005.7604,99509.42446,10770.42825,21
+170476,177012.2015,96413.23714,10188.62171,21
+170477,176380.6141,93067.71395,9597.793064,21
+170478,175909.472,89885.6016,9163.009098,21
+170479,175636.5931,86764.83811,8428.052292,21
+170480,175161.9425,84094.48971,8073.401427,21
+170481,175116.4559,82279.80483,7454.034006,21
+170482,174188.8146,81381.43099,6901.466636,21
+170483,174102.4329,79365.65871,6239.773883,21
+170484,173700.987,77679.0435,5965.361286,21
+170485,173087.0795,76220.59111,5382.261402,21
+170486,173461.1845,74645.03325,5091.312432,21
+170487,172072.771,73076.16608,4624.184337,21
+170488,172034.7813,71530.25999,4355.107397,21
+170489,171729.1956,70044.40097,3746.280678,21
+170490,171393.6005,68264.94993,3626.061033,21
+170491,169599.7361,66768.02238,2793.693749,21
+170492,168895.5931,66165.35801,2212.391039,21
+170493,168228.5009,64512.44614,1888.511072,21
+170494,167393.943,64204.17371,1778.875755,21
+170495,166737.4983,62645.28656,1584.229,21
+170496,165811.7999,61714.52397,1467.297561,21
+170497,164854.8133,60892.1896,1369.281979,21
+170498,164316.7173,59705.62364,1250.899857,21
+170499,163537.9325,58999.7925,1221.518504,21
+170500,162330.6919,57959.07984,1185.774558,21
+170501,161737.3774,56957.49461,1185.787264,21
+170502,160766.6512,57070.07154,1149.940808,21
+170503,160107.0337,56314.86414,1131.984473,21
+170504,158843.1889,55869.61502,1114.001505,21
+170505,158490.5033,55752.98895,1114.012783,21
+170506,156965.825,142752.9102,1059.879625,21
+170507,156708.5684,54965.90281,1059.889884,21
+170508,155106.1623,54359.81224,1041.79741,21
+170509,154893.1382,54066.37229,1041.80734,21
+170510,153359.235,53819.81694,1005.527729,21
+170511,152873.6956,53215.79481,1005.537008,21
+170512,151920.8624,53216.00618,969.1425418,21
+170513,150783.6987,52347.41671,950.9056354,21
+170514,150306.8477,52502.33263,932.6387239,21
+170515,148746.954,52187.74825,914.3413919,21
+170516,148264.8141,52063.17437,896.0132057,21
+170517,146985.5916,51470.82304,859.2555309,21
+170518,146480.1551,51537.59834,859.2623974,21
+170519,145086.1733,50839.82657,822.376359,21
+170520,144251.1683,50782.21365,822.3826665,21
+170521,142013.5586,50657.02173,785.3641475,21
+170522,140830.9519,50354.35923,785.3699251,21
+170523,139738.5169,50114.61165,748.2144404,21
+170524,138875.675,49419.43943,748.2197013,21
+170525,137764.9508,49473.79951,692.2165302,21
+170526,136777.3598,48947.13786,692.2210583,21
+170527,135797.9563,48849.80054,673.4822214,21
+170528,134766.4437,48313.82324,635.8844783,21
+170529,133673.8322,48081.40312,635.888318,21
+170530,132625.9132,47708.63777,635.8921573,21
+170531,131493.8238,47541.08481,598.1341398,21
+170532,130591.6937,47082.95874,579.1945054,21
+170533,129407.716,46794.28144,560.2118677,21
+170534,128495.3226,46883.87246,522.1103824,21
+170535,127228.9663,46828.81606,522.1130007,21
+170536,126322.5066,45981.8929,483.8256568,21
+170537,125172.9809,46152.56755,464.6099687,21
+170538,124019.5365,45893.61798,445.3433977,21
+170539,123049.4168,45223.52673,426.0241891,21
+170540,121962.9243,45349.89601,387.2188056,21
+170541,120732.9264,44716.69511,387.2202677,21
+170542,119789.8733,44594.32065,348.1800497,21
+170543,118437.2854,44321.25486,328.5661462,21
+170544,117596.5153,43909.40055,289.1332013,21
+170545,116336.8911,43573.71173,289.1340284,21
+170546,115155.1609,43599.81125,249.4038052,21
+170547,114029.1404,42825.51887,249.4044242,21
+170548,112882.3766,43007.29369,189.1636738,21
+170549,111992.8614,42629.35917,189.1640328,21
+170550,110498.1813,42274.45099,168.8843116,21
+170551,110044.8825,41848.11581,127.9639108,21
+170552,108881.2997,41740.14793,127.9640768,21
+170553,108572.7446,41004.46287,107.293014,21
+170554,107729.872,41013.04429,86.45184878,21
+170555,106782.7265,40300.32399,65.4060228,21
+170556,106302.5238,40051.96222,65.40606707,21
+170557,105695.0246,39788.16561,22.42462569,21
+170558,104734.4121,39209.70055,22.42463097,21
+170559,104270.4871,38818.76788,0,21
+170560,103587.1696,38562.65251,0,21
+170561,103054.1372,38014.70532,0,21
+170562,102330.9567,37985.90414,0,21
+170563,101589.0806,36994.55077,0,21
+170564,101179.3739,36907.91508,0,21
+170565,100455.5745,36628.66258,0,21
+170566,100048.7983,36081.55429,0,21
+170567,98967.28724,35722.80215,0,21
+170568,98785.06808,35603.07086,0,21
+170569,98132.21964,35077.48191,0,21
+170570,97447.09996,34841.78526,0,21
+170571,96963.76585,34448.0735,0,21
+170572,96152.11021,34157.72302,0,21
+170573,95871.35483,33723.3143,0,21
+170574,95482.93559,33507.36717,0,21
+170575,94431.98225,33041.49244,0,21
+170576,93979.39099,33024.55223,0,21
+170577,93689.86406,32272.0749,0,21
+170578,93077.08367,32125.84733,0,21
+170579,92388.34127,31773.60228,0,21
+170580,91965.59339,30932.86727,0,21
+170581,114338.9333,44457.71692,0,21
+170582,115036.9703,45049.5917,0,21
+170583,114822.1458,45309.67887,0,21
+170584,135843.8234,45049.5707,0,21
+170585,156308.0218,45069.03362,0,21
+170586,137614.5881,45245.99212,0,21
+170587,144508.1834,44828.7706,148.4897209,21
+170588,144319.4323,45245.96914,86.4522135,21
+170589,145285.9686,44767.66885,86.4522902,21
+170590,144039.7015,44918.08284,86.45236697,21
+170591,145497.2624,44743.67892,65.40641127,21
+170592,144512.7507,44660.22332,65.40645563,21
+170593,144459.9843,44754.80772,44.10003565,21
+170594,145764.6055,44595.31243,44.10005598,21
+170595,144399.0152,44197.05506,22.42477551,21
+170596,144531.1614,44507.44871,22.42478078,21
+170597,144501.7071,44136.32533,0,21
+170598,145006.2755,44133.62947,0,21
+170599,144924.6868,43938.61654,0,21
+170600,144079.4223,43982.78241,0,21
+170601,144920.5849,43785.84832,0,21
+170602,144400.708,43443.11462,0,21
+170603,143788.9429,43656.36555,0,21
+170604,144635.7025,43367.91839,0,21
+170605,142852.8725,43116.60661,0,21
+170606,144630.8901,43420.77881,0,21
+170607,143195.6029,43084.65781,0,21
+170608,143691.6267,42985.82459,0,21
+170609,143204.0524,42757.6042,0,21
+170610,143847.8345,42908.14706,0,21
+170611,142050.069,42570.46195,0,21
+170612,143002.9741,42685.92655,0,21
+170613,143106.5388,42337.52319,0,21
+170614,141728.122,42379.46493,0,21
+170615,141790.1588,42422.62699,0,21
+170616,141829.1162,41646.1712,0,21
+170617,141613.4284,41855.4057,0,21
+170618,140523.8804,41627.22214,0,21
+170619,140626.6701,41574.25513,0,21
+170620,140240.4966,41363.62292,0,21
+170621,140782.9862,41320.54313,0,21
+170622,138616.7117,41200.90678,0,21
+170623,139636.0341,41213.12449,0,21
+170624,138841.6667,41017.82118,0,21
+170625,138820.8393,40820.3023,0,21
+170626,138037.8411,40870.92046,0,21
+170627,138091.2567,40631.06362,0,21
+170628,137454.0288,40600.81298,0,21
+170629,137004.1897,40404.56541,0,21
+170630,137239.6722,40475.32461,0,21
+170631,135538.2049,40109.96265,0,21
+170632,137382.1012,40036.67679,0,21
+170633,135322.4706,40133.1745,0,21
+170634,134826.8882,39811.81527,0,21
+170635,135401.081,39835.29408,0,21
+170636,134676.0418,39690.67741,0,21
+170637,133142.1599,39421.81307,0,21
+170638,134324.1325,39356.44281,0,21
+170639,132749.6751,39383.26225,0,21
+170640,133493.1666,39401.58445,0,21
+170641,132065.2077,39279.22339,0,21
+170642,132188.2903,39532.60396,0,21
+170643,132285.8413,38994.80734,0,21
+170644,131258.4858,39038.87898,0,21
+170645,131102.5057,38857.03645,0,21
+170646,130512.5905,38713.69891,0,21
+170647,130657.8625,38636.07985,0,21
+170648,129386.1362,38366.31873,0,21
+170649,130722.4732,38287.23168,0,21
+170650,127900.9991,37976.30199,0,21
+170651,129946.3906,38043.29309,0,21
+170652,127812.4108,37769.98686,0,21
+170653,128479.7554,37600.47305,0,21
+170654,127208.1903,37550.16948,0,21
+170655,127517.3135,37194.88399,0,21
+170656,126332.6115,37309.88668,0,21
+170657,127310.8362,37059.32671,0,21
+170658,125190.5298,36820.70993,0,21
+170659,125714.4462,36727.68193,0,21
+170660,124974.9856,36582.72359,0,21
+170661,124221.3701,36484.58881,0,21
+170662,125194.3893,36141.41558,0,21
+170663,123297.434,36218.3416,0,21
+170664,122634.6603,36008.42626,0,21
+170665,123672.6876,35770.00449,0,21
+170666,122413.3524,35620.06226,0,21
+170667,121852.2657,35650.97296,0,21
+170668,121065.8767,35387.15268,0,21
+170669,121692.7878,36169.66837,0,21
+170670,119925.9339,36297.69738,0,21
+170671,120538.3687,35910.67356,0,21
+170672,118584.5376,36284.70285,0,21
+170673,120650.9154,36312.82148,0,21
+170674,118904.1604,36387.67259,0,21
+170675,118144.897,36446.03198,0,21
+170676,119209.8594,36422.37309,0,21
+170677,117172.5392,36672.08605,0,21
+170678,118184.0145,36660.64769,0,21
+170679,117609.3802,36603.11201,0,21
+170680,117816.9785,36940.63348,0,21
+170681,118796.4257,36466.48167,0,21
+170682,117123.6487,36898.10086,0,21
+170683,116913.7891,36696.65837,0,21
+170684,118589.4347,36823.84773,0,21
+170685,116256.3622,36976.76272,0,21
+170686,116802.8448,36997.49213,0,21
+170687,117519.5713,37062.61591,0,21
+170688,115402.532,37131.55165,0,21
+170689,116741.2955,37205.88304,0,21
+170690,116494.5596,37372.4923,0,21
+170691,115331.5607,37129.7374,0,21
+170692,115733.8968,37169.54661,0,21
+170693,115642.9868,37169.06556,0,21
+170694,115763.0292,36913.6138,0,21
+170695,114790.1362,37075.23493,0,21
+170696,115753.5482,36598.78218,0,21
+170697,114150.4139,37132.47907,0,21
+170698,114773.0958,36472.70345,0,21
+170699,114666.9224,36636.17591,0,21
+170700,114359.45,36472.78819,0,21
+170701,114682.4595,36943.36732,0,21
+170702,114339.2116,36752.16218,0,21
+170703,115441.8112,36539.26432,0,21
+170704,114365.0177,36636.92117,0,21
+170705,114353.5664,36308.72089,0,21
+170706,114302.5036,36272.56589,0,21
+170707,114240.8002,36070.13176,0,21
+170708,113991.6474,36132.92043,0,21
+170709,113869.514,35782.81526,0,21
+170710,114836.9765,35927.42288,0,21
+170711,113389.3175,35772.36637,0,21
+170712,114777.4454,35642.9191,0,21
+170713,114135.3581,35791.61418,0,21
+170714,114336.8596,35625.77331,0,21
+170715,114200.9251,35398.0013,0,21
+170716,114108.8912,35406.05781,0,21
+170717,114842.9906,35382.92374,0,21
+170718,113713.9656,35021.89012,0,21
+170719,114787.1308,35210.91015,0,21
+170720,113351.8989,34922.38641,0,21
+170721,115603.3392,34962.3205,0,21
+170722,113400.2829,34846.29991,0,21
+170723,115119.9112,34508.33125,0,21
+170724,114229.6275,34810.51489,0,21
+170725,114061.4651,34472.24191,0,21
+170726,114819.9563,34461.62625,0,21
+170727,113723.7146,34195.18069,0,21
+170728,114842.7871,34300.45876,0,21
+170729,114526.3103,34169.03274,0,21
+170730,114396.2316,33899.67523,0,21
+170731,114711.0622,34047.01564,0,21
+170732,114196.301,33777.11247,0,21
+170733,115393.0831,33602.67489,0,21
+170734,114401.245,33641.68373,0,21
+170735,114583.2675,33344.91631,0,21
+170736,116641.3333,33314.65722,0,21
+170737,114871.1081,33217.92788,0,21
+170738,115530.8725,32839.71785,0,21
+170739,115520.9066,33025.85546,0,21
+170740,116800.0559,32665.72039,0,21
+170741,114706.2628,32543.89403,0,21
+170742,117607.3279,32539.70997,0,21
+170743,115403.0037,32248.60926,0,21
+170744,115187.8058,32097.12002,0,21
+170745,117124.1452,31968.40214,0,21
+170746,115305.5962,31798.20792,0,21
+170747,117406.6494,31690.31155,0,21
+170748,116241.8219,31240.97571,0,21
+170749,116303.8222,31403.70065,0,21
+170750,117327.4386,32317.40646,0,21
+170751,116432.3199,33566.7762,0,21
+170752,117251.1339,32150.42294,0,21
+170753,117629.5077,32985.89123,0,21
+170754,117275.9378,33043.86685,0,21
+170755,116649.3964,32545.06845,0,21
+170756,118693.1347,33998.22126,0,21
+170757,118022.2574,32213.28063,0,21
+170758,118917.3065,33340.35782,0,21
+170759,118256.8494,33014.00785,0,21
+170760,119075.4046,32888.8201,0,21
+170761,119019.3836,32721.70529,0,21
+170762,119343.8173,33266.08724,0,21
+170763,120679.7194,33614.90748,0,21
+170764,120908.4912,32861.02297,0,21
+170765,121080.9228,33818.31385,0,21
+170766,121598.6804,33288.17314,0,21
+170767,122010.3487,33611.51062,0,21
+170768,122364.429,33212.71831,0,21
+170769,123222.5167,34508.4348,0,21
+170770,123109.8924,33043.1229,0,21
+170771,124275.4539,33920.34544,0,21
+170772,124590.3685,34415.43342,0,21
+170773,124839.8712,34377.19534,0,21
+170774,125547.0023,34337.51424,0,21
+170775,125616.1053,35421.82344,0,21
+170776,126217.2113,33669.96037,0,21
+170777,127257.7826,35197.39295,0,21
+170778,127091.6117,34951.81599,0,21
+170779,128105.4115,35103.60873,0,21
+170780,129654.3127,34779.63268,0,21
+170781,130685.9259,35516.13458,0,21
+170782,130811.1765,34877.35667,0,21
+170783,131479.872,35456.32886,0,21
+170784,133426.144,35035.69312,0,21
+170785,132728.3859,36298.85131,0,21
+170786,134588.8106,34957.20441,0,21
+170787,134006.9781,36024.14715,0,21
+170788,135725.815,35758.51829,0,21
+170789,136591.8988,35811.77967,0,21
+170790,138254.2569,35618.17164,0,21
+170791,136351.0016,36610.61464,0,21
+170792,139390.5153,36303.00089,0,21
+170793,139898.6771,36622.21038,0,21
+170794,139537.4022,36651.17258,0,21
+170795,141100.2481,37161.7352,0,21
+170796,141430.429,36539.3722,0,21
+170797,142506.1936,37937.60026,0,21
+170798,142731.0935,37638.55081,0,21
+170799,144559.3644,37668.11204,0,21
+170800,144044.9866,37793.33037,0,21
+170801,145649.5126,39132.47252,0,21
+170802,146286.3261,37503.59604,0,21
+170803,145812.5238,39226.75914,0,21
+170804,148672.0225,38865.11368,0,21
+170805,148249.3889,39124.13668,0,21
+170806,148534.45,40256.10119,0,21
+170807,150387.5467,39344.01982,0,21
+170808,150218.6937,40168.6004,0,21
+170809,151318.701,40623.98214,0,21
+170810,152365.1758,40355.52588,0,21
+170811,152980.4803,41869.12102,0,21
+170812,153472.2961,40538.9946,0,21
+170813,153970.2763,42127.252,0,21
+170814,156036.6964,42001.31789,0,21
+170815,155378.7986,42746.61503,0,21
+170816,156847.5723,42164.75827,0,21
+170817,156863.6494,43678.64903,0,21
+170818,158435.2737,43613.9343,0,21
+170819,158651.9033,43870.25424,0,21
+170820,160979.1097,44547.06494,0,21
+170821,158796.805,46643.68915,0,21
+170822,161253.1069,45221.49589,0,21
+170823,160330.9883,47154.42885,0,21
+170824,162024.0287,47255.7994,0,21
+170825,161744.3086,47755.66439,0,21
+170826,161528.3335,48023.94172,0,21
+170827,163553.7886,49629.05764,0,21
+170828,162008.6608,51281.18926,0,21
+170829,164060.6812,51191.67884,0,21
+170830,163641.612,52136.17463,0,21
+170831,164657.4574,53698.10236,0,21
+170832,164036.1121,52902.09912,0,21
+170833,165182.7228,54961.48507,0,21
+170834,165825.8913,56485.24218,0,21
+170835,165626.2931,55367.104,0,21
+170836,166046.7043,57805.18594,0,21
+170837,166446.3651,58385.92478,0,21
+170838,167472.2919,58935.08479,0,21
+170839,167363.1121,59798.70029,0,21
+170840,168013.9425,61143.56675,0,21
+170841,168183.2727,61280.51944,0,21
+170842,169068.9131,63729.26502,0,21
+170843,168913.8107,62565.69317,0,21
+170844,169169.4629,65198.34374,0,21
+170845,169561.3173,66016.89404,0,21
+170846,170908.3766,65714.86184,0,21
+170847,169812.157,68471.88189,0,21
+170848,171522.7181,68309.23099,0,21
+170849,170422.5697,68970.72898,0,21
+170850,172823.0437,71854.25324,0,21
+170851,171363.7003,70308.12376,0,21
+170852,173441.4999,72850.17407,0,21
+170853,172664.2544,72197.51192,0,21
+170854,173172.1071,73584.24838,0,21
+170855,174511.4201,74021.30071,0,21
+170856,173577.4636,74518.65318,0,21
+170857,174951.0656,75862.30842,0,21
+170858,175508.2247,75240.01504,0,21
+170859,175707.7591,77682.12466,0,21
+170860,175792.9129,76123.0365,0,21
+170861,176527.2632,78190.58118,0,21
+170862,177511.9702,78888.9503,0,21
+170863,176920.8071,78201.35911,0,21
+170864,178457.5052,80459.4094,0,21
+170865,178438.033,79771.45536,0,21
+170866,177844.7011,80359.69796,0,21
+170867,180623.0874,82120.06231,0,21
+170868,179299.2976,81768.58255,0,21
+170869,180094.0303,82422.98549,0,21
+170870,180317.4235,83584.48799,0,21
+170871,181311.9834,84339.04824,0,21
+170872,181173.0268,84827.19649,3801.114074,21
+170873,182075.3774,85175.40221,1938.395603,21
+170874,181511.215,85308.32352,2875.476949,21
+170875,184062.7242,86831.35547,3801.454778,21
+170876,182272.8012,87060.39621,2875.673764,21
+170877,184475.5172,87437.20395,3801.717181,21
+170878,184039.3269,87641.34347,4719.119508,21
+170879,184332.828,89283.94806,3802.047636,21
+170880,185494.7342,89532.27268,5629.637266,21
+170881,0,0,0,21
+170882,0,0,0,21
+170883,0,0,0,21
+170884,0,0,0,21
+170885,0,0,0,21
+170886,0,0,0,21
+170887,0,0,0,21
+170888,0,0,0,21
+170889,0,0,0,21
+170890,0,0,0,21
+170891,0,0,0,21
+170892,0,0,0,21
+170893,0,0,0,21
+170894,0,0,0,21
+170895,0,0,0,21
+170896,0,0,0,21
+170897,0,0,0,21
+170898,0,0,0,21
+170899,0,0,0,21
+170900,0,0,0,21
+170901,0,0,0,21
+170902,0,0,0,21
+170903,0,0,0,21
+170904,0,0,0,21
+170905,0,0,0,21
+170906,0,0,0,21
+170907,0,0,0,21
+170908,0,0,0,21
+170909,0,0,0,21
+170910,0,0,0,21
+170911,0,0,0,21
+170912,0,0,0,21
+170913,0,0,0,21
+170914,0,0,0,21
+170915,0,0,0,21
+170916,0,0,0,21
+170917,0,0,0,21
+170918,0,0,0,21
+170919,0,0,0,21
+170920,0,0,0,21
+170921,0,0,0,21
+170922,0,0,0,21
+170923,0,0,0,21
+170924,0,0,0,21
+170925,0,0,0,21
+170926,0,0,0,21
+170927,0,0,0,21
+170928,0,0,0,21
+170929,0,0,0,21
+170930,0,0,0,21
+170931,0,0,0,21
+170932,0,0,0,21
+170933,0,0,0,21
+170934,0,0,0,21
+170935,0,0,0,21
+170936,0,0,0,21
+170937,0,0,0,21
+170938,0,0,0,21
+170939,0,0,0,21
+170940,0,0,0,21
+170941,0,0,0,21
+170942,0,0,0,21
+170943,86751.49038,0,0,21
+170944,0,0,0,21
+170945,0,0,0,21
+170946,0,0,0,21
+170947,0,368461.4472,1324617.549,21
+170948,0,0,0,21
+170949,0,0,0,21
+170950,340132.7117,0,0,21
+170951,0,0,0,21
+170952,0,0,0,21
+170953,0,0,0,21
+170954,0,0,0,21
+170955,0,0,0,21
+170956,0,0,0,21
+170957,0,0,0,21
+170958,0,0,0,21
+170959,0,0,0,21
+170960,0,0,0,21
+170961,0,0,0,21
+170962,0,0,0,21
+170963,0,0,0,21
+170964,0,0,0,21
+170965,0,0,0,21
+170966,0,0,0,21
+170967,0,0,0,21
+170968,0,0,0,21
+170969,0,0,0,21
+170970,0,0,0,21
+170971,0,0,0,21
+170972,0,0,0,21
+170973,0,0,0,21
+170974,0,0,0,21
+170975,0,0,0,21
+170976,0,0,0,21
+170977,0,0,0,21
+170978,0,0,0,21
+170979,0,0,0,21
+170980,0,0,0,21
+170981,0,0,0,21
+170982,0,0,0,21
+170983,0,368455.2818,1267601.361,21
+170984,0,0,0,21
+170985,0,0,0,21
+170986,0,0,0,21
+170987,0,0,0,21
+170988,0,0,0,21
+170989,340082.8021,0,0,21
+170990,0,0,0,21
+170991,0,0,0,21
+170992,0,0,0,21
+170993,0,0,0,21
+170994,0,0,0,21
+170995,0,0,0,21
+170996,0,0,0,21
+170997,0,0,0,21
+170998,0,0,0,21
+170999,0,0,0,21
+171000,0,0,0,21
+171001,0,0,0,21
+171002,0,0,0,21
+171003,0,0,0,21
+171004,0,0,0,21
+171005,0,0,0,21
+171006,0,0,0,21
+171007,0,3.582762514,0,21
+171008,0,0,0,21
+171009,0,0,0,21
+171010,0,0,0,21
+171011,0,0,0,21
+171012,0,0,0,21
+171013,0,0,0,21
+171014,0,0,0,21
+171015,0,0,0,21
+171016,0,0,0,21
+171017,0,0,0,21
+171018,0,0,0,21
+171019,0,0,1215229.169,21
+171020,0,368451.9088,0,21
+171021,0,0,0,21
+171022,0,0,0,21
+171023,0,0,0,21
+171024,0,0,0,21
+171025,0,0,0,21
+171026,0,0,0,21
+171027,0,0,0,21
+171028,340082.8335,0,0,21
+171029,0,0,0,21
+171030,0,0,0,21
+171031,0,0,0,21
+171032,0,0,0,21
+171033,0,0,0,21
+171034,0,0,0,21
+171035,0,0,0,21
+171036,0,0,0,21
+171037,0,0,0,21
+171038,0,0,0,21
+171039,0,0,0,21
+171040,0,0,0,21
+171041,0,0,0,21
+171042,0,0,0,21
+171043,0,0,0,21
+171044,0,0,0,21
+171045,0,0,0,21
+171046,0,0,0,21
+171047,0,0,0,21
+171048,0,0,0,21
+171049,0,0,0,21
+171050,0,0,0,21
+171051,0,0,0,21
+171052,0,0,0,21
+171053,0,0,0,21
+171054,0,0,0,21
+171055,0,0,0,21
+171056,0,0,1168565.034,21
+171057,0,368451.9088,0,21
+171058,0,0,0,21
+171059,0,0,0,21
+171060,0,0,0,21
+171061,0,0,0,21
+171062,0,3.789722507,0,21
+171063,0,0,0,21
+171064,0,0,0,21
+171065,0,166.9211644,0,21
+171066,0,0,0,21
+171067,340101.7491,0,0,21
+171068,0,0,0,21
+171069,0,0,0,21
+171070,0,2.906814919,0,21
+171071,0,0,0,21
+171072,0,77.70689463,0,21
+171073,0,0,0,21
+171074,0,0,0,21
+171075,0,0,0,21
+171076,0,7.609956914,0,21
+171077,0,0,0,21
+171078,0,104.0018006,0,21
+171079,0,0,0,21
+171080,0,0,0,21
+171081,0,0,0,21
+171082,0,3.095183399,0,21
+171083,0,0,0,21
+171084,0,69.88985081,0,21
+171085,0,0,0,21
+171086,0,0,0,21
+171087,0,0,0,21
+171088,0,0,0,21
+171089,0,0,0,21
+171090,0,0,0,21
+171091,0,0,0,21
+171092,0,0,0,21
+171093,0,0,1123997.122,21
+171094,0,368470.3337,0,21
+171095,0,0,0,21
+171096,0,0,0,21
+171097,0,0,0,21
+171098,0,0,0,21
+171099,0,2.393147259,0,21
+171100,0,0,0,21
+171101,0,0,0,21
+171102,0,0,0,21
+171103,0,0,0,21
+171104,0,0,0,21
+171105,0,0,0,21
+171106,340123.4853,0,0,21
+171107,0,0,0,21
+171108,0,0,0,21
+171109,0,0,0,21
+171110,0,0,0,21
+171111,0,0,0,21
+171112,0,0,0,21
+171113,0,0,0,21
+171114,0,0,0,21
+171115,0,0,0,21
+171116,0,0,0,21
+171117,0,0,0,21
+171118,0,0,0,21
+171119,0,0,0,21
+171120,0,0,0,21
+171121,0,0,0,21
+171122,0,0,0,21
+171123,0,0,0,21
+171124,0,0,0,21
+171125,0,0,0,21
+171126,0,0,0,21
+171127,0,0,0,21
+171128,0,0,0,21
+171129,0,0,0,21
+171130,0,0,1085482.622,21
+171131,0,368480.5887,0,21
+171132,0,0,0,21
+171133,0,0,0,21
+171134,0,0,0,21
+171135,0,2.734812773,0,21
+171136,0,0,0,21
+171137,0,3.918978915,0,21
+171138,0,0,0,21
+171139,0,8.28984998,0,21
+171140,0,0,0,21
+171141,0,0,0,21
+171142,0,354.2215403,0,21
+171143,0,0,0,21
+171144,0,0,0,21
+171145,0,0,0,21
+171146,340136.0165,0,0,21
+171147,0,3.042413906,0,21
+171148,0,0,0,21
+171149,0,0,0,21
+171150,0,0,0,21
+171151,0,0,0,21
+171152,0,0,0,21
+171153,0,0,0,21
+171154,0,0,0,21
+171155,0,0,0,21
+171156,0,0,0,21
+171157,0,0,0,21
+171158,0,0,0,21
+171159,0,0,0,21
+171160,0,0,0,21
+171161,0,0,0,21
+171162,0,0,0,21
+171163,0,0,0,21
+171164,0,0,0,21
+171165,0,0,0,21
+171166,0,0,0,21
+171167,0,0,1049661.592,21
+171168,0,368483.8578,0,21
+171169,0,0,0,21
+171170,0,0,0,21
+171171,0,0,0,21
+171172,0,0,0,21
+171173,0,0,0,21
+171174,0,0,0,21
+171175,0,0,0,21
+171176,0,0,0,21
+171177,0,0,0,21
+171178,0,0,0,21
+171179,0,0,0,21
+171180,0,0,0,21
+171181,0,0,0,21
+171182,0,79000.75302,0,21
+171183,0,0,0,21
+171184,0,0,0,21
+171185,0,0,0,21
+171186,340140.5745,0,0,21
+171187,0,0,0,21
+171188,0,0,0,21
+171189,0,0,0,21
+171190,0,0,0,21
+171191,0,0,0,21
+171192,0,0,0,21
+171193,0,0,0,21
+171194,0,0,0,21
+171195,0,0,0,21
+171196,0,0,0,21
+171197,0,0,0,21
+171198,0,0,0,21
+171199,0,0,0,21
+171200,0,0,0,21
+171201,0,0,0,21
+171202,0,0,0,21
+171203,0,0,0,21
+171204,0,0,1016813.13,21
+171205,0,368475.7098,0,21
+171206,0,0,0,21
+171207,0,0,0,21
+171208,0,0,0,21
+171209,0,0,0,21
+171210,0,0,0,21
+171211,0,0,0,21
+171212,0,0,0,21
+171213,0,0,0,21
+171214,0,0,0,21
+171215,0,0,0,21
+171216,0,0,0,21
+171217,0,0,0,21
+171218,0,0,0,21
+171219,0,0,0,21
+171220,0,0,0,21
+171221,0,0,0,21
+171222,0,0,0,21
+171223,0,0,0,21
+171224,0,0,0,21
+171225,0,0,0,21
+171226,340135.9771,0,0,21
+171227,0,0,0,21
+171228,0,0,0,21
+171229,0,0,0,21
+171230,0,0,0,21
+171231,0,0,0,21
+171232,0,0,0,21
+171233,0,0,0,21
+171234,0,0,0,21
+171235,0,0,0,21
+171236,0,0,0,21
+171237,0,0,0,21
+171238,0,0,0,21
+171239,0,0,0,21
+171240,0,0,0,15.6
+171241,0,0,986908.4705,15.6
+171242,0,368463.1402,0,15.6
+171243,0,0,0,15.6
+171244,0,0,0,15.6
+171245,0,0,0,15.6
+171246,0,0,0,15.6
+171247,0,0,0,15.6
+171248,0,0,0,15.6
+171249,0,0,0,15.6
+171250,0,0,0,15.6
+171251,0,0,0,15.6
+171252,0,0,0,15.6
+171253,0,0,0,15.6
+171254,0,0,0,15.6
+171255,0,0,0,15.6
+171256,0,0,0,15.6
+171257,0,0,0,15.6
+171258,0,0,0,15.6
+171259,0,79283.90442,0,15.6
+171260,0,0,0,15.6
+171261,0,0,0,15.6
+171262,0,0,0,15.6
+171263,0,0,0,15.6
+171264,0,0,0,15.6
+171265,0,0,0,15.6
+171266,340154.3958,0,0,15.6
+171267,0,0,0,15.6
+171268,0,0,0,15.6
+171269,0,0,0,15.6
+171270,0,0,0,15.6
+171271,0,0,0,15.6
+171272,0,0,0,15.6
+171273,0,0,0,15.6
+171274,0,0,0,15.6
+171275,0,0,0,15.6
+171276,0,0,0,15.6
+171277,0,0,0,15.6
+171278,0,0,959472.1717,15.6
+171279,0,368460.3043,0,15.6
+171280,0,0,0,15.6
+171281,0,0,0,15.6
+171282,0,0,0,15.6
+171283,0,0,0,15.6
+171284,0,0,0,15.6
+171285,0,0,0,15.6
+171286,0,0,0,15.6
+171287,0,0,0,15.6
+171288,0,0,0,15.6
+171289,0,0,0,15.6
+171290,0,0,0,15.6
+171291,0,0,0,15.6
+171292,0,0,0,15.6
+171293,0,0,0,15.6
+171294,0,0,0,15.6
+171295,0,0,0,15.6
+171296,0,0,0,15.6
+171297,0,0,0,15.6
+171298,0,0,0,15.6
+171299,0,0,0,15.6
+171300,0,0,0,15.6
+171301,0,0,0,15.6
+171302,0,0,0,15.6
+171303,0,0,0,15.6
+171304,0,0,0,15.6
+171305,0,0,0,15.6
+171306,340177.7902,0,0,15.6
+171307,0,0,0,15.6
+171308,0,0,0,15.6
+171309,0,0,0,15.6
+171310,0,0,0,15.6
+171311,0,0,0,15.6
+171312,0,0,0,15.6
+171313,0,0,0,15.6
+171314,0,0,0,15.6
+171315,0,0,934521.2216,15.6
+171316,0,368461.7979,0,15.6
+171317,0,0,0,15.6
+171318,0,0,0,15.6
+171319,0,0,0,15.6
+171320,0,0,0,15.6
+171321,0,0,0,15.6
+171322,0,0,0,15.6
+171323,0,0,0,15.6
+171324,0,0,0,15.6
+171325,0,0,0,15.6
+171326,0,0,0,15.6
+171327,0,0,0,15.6
+171328,0,0,0,15.6
+171329,0,0,0,15.6
+171330,0,0,0,15.6
+171331,0,0,0,15.6
+171332,0,0,0,15.6
+171333,0,0,0,15.6
+171334,0,0,0,15.6
+171335,0,0,0,15.6
+171336,0,0,0,15.6
+171337,0,0,0,15.6
+171338,0,0,0,15.6
+171339,0,0,0,15.6
+171340,0,0,0,15.6
+171341,0,0,0,15.6
+171342,0,0,0,15.6
+171343,0,0,0,15.6
+171344,0,0,0,15.6
+171345,0,0,0,15.6
+171346,340148.2268,0,0,15.6
+171347,0,0,0,15.6
+171348,0,0,0,15.6
+171349,0,0,0,15.6
+171350,0,0,0,15.6
+171351,0,0,0,15.6
+171352,0,0,912119.9543,15.6
+171353,0,368462.6113,0,15.6
+171354,0,0,0,15.6
+171355,0,0,0,15.6
+171356,0,0,0,15.6
+171357,0,0,0,15.6
+171358,0,0,0,15.6
+171359,0,0,0,15.6
+171360,0,0,0,15.6
+171361,0,0,0,15.6
+171362,0,0,0,15.6
+171363,0,0,0,15.6
+171364,0,0,0,15.6
+171365,0,0,0,15.6
+171366,0,0,0,15.6
+171367,0,0,0,15.6
+171368,0,0,0,15.6
+171369,0,0,0,15.6
+171370,0,0,0,15.6
+171371,0,0,0,15.6
+171372,0,0,0,15.6
+171373,0,0,0,15.6
+171374,0,0,0,15.6
+171375,0,0,0,15.6
+171376,0,0,0,15.6
+171377,0,0,0,15.6
+171378,0,0,0,15.6
+171379,0,0,0,15.6
+171380,0,0,0,15.6
+171381,0,0,0,15.6
+171382,0,0,0,15.6
+171383,0,0,0,15.6
+171384,0,0,0,15.6
+171385,0,0,0,15.6
+171386,340136.7762,0,0,15.6
+171387,0,0,0,15.6
+171388,0,0,0,15.6
+171389,0,0,891671.8541,15.6
+171390,0,368470.4376,0,15.6
+171391,0,0,0,15.6
+171392,0,0,0,15.6
+171393,0,0,0,15.6
+171394,0,0,0,15.6
+171395,0,0,0,15.6
+171396,0,0,0,15.6
+171397,0,0,0,15.6
+171398,0,0,0,15.6
+171399,0,0,0,15.6
+171400,0,0,0,15.6
+171401,0,0,0,15.6
+171402,0,0,0,15.6
+171403,0,0,0,15.6
+171404,0,0,0,15.6
+171405,0,0,0,15.6
+171406,0,0,0,15.6
+171407,0,0,0,15.6
+171408,0,0,0,15.6
+171409,0,0,0,15.6
+171410,0,0,0,15.6
+171411,0,0,0,15.6
+171412,0,0,0,15.6
+171413,0,0,0,15.6
+171414,0,0,0,15.6
+171415,0,0,0,15.6
+171416,0,0,0,15.6
+171417,0,0,0,15.6
+171418,0,0,0,15.6
+171419,0,0,0,15.6
+171420,0,0,0,15.6
+171421,0,0,0,15.6
+171422,0,0,0,15.6
+171423,0,0,0,15.6
+171424,0,0,0,15.6
+171425,0,0,0,15.6
+171426,340140.0215,0,872917.1769,15.6
+171427,0,368477.5837,0,15.6
+171428,0,0,0,15.6
+171429,0,0,0,15.6
+171430,0,0,0,15.6
+171431,0,0,0,15.6
+171432,0,0,0,15.6
+171433,0,0,0,15.6
+171434,0,0,0,15.6
+171435,0,0,0,15.6
+171436,0,0,0,15.6
+171437,0,0,0,15.6
+171438,0,0,0,15.6
+171439,0,0,0,15.6
+171440,0,0,0,15.6
+171441,0,0,0,15.6
+171442,0,0,0,15.6
+171443,0,0,0,15.6
+171444,0,0,0,15.6
+171445,0,0,0,15.6
+171446,0,0,0,15.6
+171447,0,0,0,15.6
+171448,0,0,0,15.6
+171449,0,0,0,15.6
+171450,0,0,0,15.6
+171451,0,0,0,15.6
+171452,0,0,0,15.6
+171453,0,0,0,15.6
+171454,0,0,0,15.6
+171455,0,0,0,15.6
+171456,0,0,0,15.6
+171457,0,0,0,15.6
+171458,0,0,0,15.6
+171459,0,0,0,15.6
+171460,0,0,0,15.6
+171461,0,0,0,15.6
+171462,0,0,0,15.6
+171463,0,0,855851.0879,15.6
+171464,0,0,0,15.6
+171465,0,368469.9223,0,15.6
+171466,340169.3176,0,0,15.6
+171467,0,0,0,15.6
+171468,0,0,0,15.6
+171469,0,0,0,15.6
+171470,0,0,0,15.6
+171471,0,0,0,15.6
+171472,0,0,0,15.6
+171473,0,0,0,15.6
+171474,0,0,0,15.6
+171475,0,0,0,15.6
+171476,0,0,0,15.6
+171477,0,0,0,15.6
+171478,0,0,0,15.6
+171479,0,0,0,15.6
+171480,0,0,0,15.6
+171481,0,0,0,15.6
+171482,0,0,0,15.6
+171483,0,0,0,15.6
+171484,0,0,0,15.6
+171485,0,0,0,15.6
+171486,0,0,0,15.6
+171487,0,0,0,15.6
+171488,0,0,0,15.6
+171489,0,0,0,15.6
+171490,0,0,0,15.6
+171491,0,0,0,15.6
+171492,0,0,0,15.6
+171493,0,0,0,15.6
+171494,0,0,0,15.6
+171495,0,0,0,15.6
+171496,0,0,0,15.6
+171497,0,0,0,15.6
+171498,0,0,0,15.6
+171499,0,0,0,15.6
+171500,0,0,840263.775,15.6
+171501,0,0,0,15.6
+171502,0,0,0,15.6
+171503,0,368464.668,0,15.6
+171504,0,0,0,15.6
+171505,0,0,0,15.6
+171506,340164.9511,0,0,15.6
+171507,0,0,0,15.6
+171508,0,0,0,15.6
+171509,0,0,0,15.6
+171510,0,0,0,15.6
+171511,0,0,0,15.6
+171512,0,0,0,15.6
+171513,0,0,0,15.6
+171514,0,0,0,15.6
+171515,0,0,0,15.6
+171516,0,0,0,15.6
+171517,0,0,0,15.6
+171518,0,0,0,15.6
+171519,0,0,0,15.6
+171520,0,0,0,15.6
+171521,0,0,0,15.6
+171522,0,0,0,15.6
+171523,0,0,0,15.6
+171524,0,0,0,15.6
+171525,0,0,0,15.6
+171526,0,0,0,15.6
+171527,0,0,0,15.6
+171528,0,0,0,15.6
+171529,0,0,0,15.6
+171530,0,0,0,15.6
+171531,0,0,0,15.6
+171532,0,0,0,15.6
+171533,0,0,0,15.6
+171534,0,0,0,15.6
+171535,0,0,825925.2486,15.6
+171536,0,0,0,15.6
+171537,0,128.7409897,0,15.6
+171538,0,0,0,15.6
+171539,0,0,0,15.6
+171540,0,0,0,15.6
+171541,0,368463.5379,0,15.6
+171542,0,0,0,15.6
+171543,0,0,0,15.6
+171544,0,20.452359,0,15.6
+171545,0,0,0,15.6
+171546,340143.0063,0,0,15.6
+171547,0,79692.76285,0,15.6
+171548,0,0,0,15.6
+171549,0,0,0,15.6
+171550,0,0,0,15.6
+171551,0,0,0,15.6
+171552,0,0,0,15.6
+171553,0,0,0,15.6
+171554,0,0,0,15.6
+171555,0,0,0,15.6
+171556,0,0,0,15.6
+171557,0,0,0,15.6
+171558,0,0,0,15.6
+171559,0,0,0,15.6
+171560,0,0,0,15.6
+171561,0,0,0,15.6
+171562,0,0,0,15.6
+171563,0,0,0,15.6
+171564,0,0,0,15.6
+171565,0,0,0,15.6
+171566,0,0,0,15.6
+171567,0,0,0,15.6
+171568,0,0,0,15.6
+171569,0,0,0,15.6
+171570,0,0,812886.8111,15.6
+171571,0,0,0,15.6
+171572,0,0,0,15.6
+171573,0,0,0,15.6
+171574,0,0,0,15.6
+171575,0,0,0,15.6
+171576,0,0,0,15.6
+171577,0,368462.5051,0,15.6
+171578,0,0,0,15.6
+171579,0,0,0,15.6
+171580,0,0,0,15.6
+171581,0,0,0,15.6
+171582,340138.7054,0,0,15.6
+171583,0,0,0,15.6
+171584,0,0,0,15.6
+171585,0,0,0,15.6
+171586,0,0,0,15.6
+171587,0,0,0,15.6
+171588,0,0,0,15.6
+171589,0,0,0,15.6
+171590,0,0,0,15.6
+171591,0,0,0,15.6
+171592,0,0,0,15.6
+171593,0,0,0,15.6
+171594,0,0,0,15.6
+171595,0,0,0,15.6
+171596,0,0,0,15.6
+171597,0,0,0,15.6
+171598,0,0,0,15.6
+171599,0,0,0,15.6
+171600,0,0,0,17.8
+171601,0,0,0,17.8
+171602,0,0,0,17.8
+171603,0,0,0,17.8
+171604,0,0,0,17.8
+171605,0,0,800957.0273,17.8
+171606,0,0,0,17.8
+171607,0,0,0,17.8
+171608,0,0,0,17.8
+171609,0,0,0,17.8
+171610,0,0,0,17.8
+171611,0,0,0,17.8
+171612,0,368464.7453,0,17.8
+171613,0,0,0,17.8
+171614,0,0,0,17.8
+171615,0,0,0,17.8
+171616,0,0,0,17.8
+171617,0,0,0,17.8
+171618,340150.2972,0,0,17.8
+171619,0,0,0,17.8
+171620,0,0,0,17.8
+171621,0,0,0,17.8
+171622,0,0,0,17.8
+171623,0,0,0,17.8
+171624,0,0,0,17.8
+171625,0,0,0,17.8
+171626,0,0,0,17.8
+171627,0,0,0,17.8
+171628,0,0,0,17.8
+171629,0,0,0,17.8
+171630,0,0,0,17.8
+171631,0,0,0,17.8
+171632,0,0,0,17.8
+171633,0,0,0,17.8
+171634,0,0,0,17.8
+171635,0,0,0,17.8
+171636,0,0,0,17.8
+171637,0,0,0,17.8
+171638,0,0,0,17.8
+171639,0,0,0,17.8
+171640,0,0,790054.5334,17.8
+171641,0,0,0,17.8
+171642,0,0,0,17.8
+171643,0,0,0,17.8
+171644,0,0,0,17.8
+171645,0,0,0,17.8
+171646,0,0,0,17.8
+171647,0,368474.8447,0,17.8
+171648,0,0,0,17.8
+171649,0,0,0,17.8
+171650,0,0,0,17.8
+171651,0,0,0,17.8
+171652,0,0,0,17.8
+171653,0,0,0,17.8
+171654,340178.2433,0,0,17.8
+171655,0,0,0,17.8
+171656,0,0,0,17.8
+171657,0,0,0,17.8
+171658,0,0,0,17.8
+171659,0,0,0,17.8
+171660,0,0,0,20
+171661,0,0,0,20
+171662,0,0,0,20
+171663,0,0,0,20
+171664,0,0,0,20
+171665,0,0,0,20
+171666,0,0,0,20
+171667,0,0,0,20
+171668,0,0,0,20
+171669,0,0,0,20
+171670,0,0,0,20
+171671,0,0,0,20
+171672,0,0,0,20
+171673,0,0,0,20
+171674,0,0,0,20
+171675,0,0,0,20
+171676,0,0,0,20
+171677,0,0,780065.7962,20
+171678,0,0,0,20
+171679,0,0,0,20
+171680,0,0,0,20
+171681,0,0,0,20
+171682,0,0,0,20
+171683,0,0,0,20
+171684,0,0,0,20
+171685,0,368490.7814,0,20
+171686,0,0,0,20
+171687,0,0,0,20
+171688,0,0,0,20
+171689,0,0,0,20
+171690,0,0,0,20
+171691,0,0,0,20
+171692,0,0,0,20
+171693,0,0,0,20
+171694,340182.8556,0,0,20
+171695,0,0,0,20
+171696,0,0,0,20
+171697,0,0,0,20
+171698,0,0,0,20
+171699,0,0,0,20
+171700,0,0,0,20
+171701,0,0,0,20
+171702,0,0,0,20
+171703,0,0,0,20
+171704,0,0,0,20
+171705,0,0,0,20
+171706,0,0,0,20
+171707,0,0,0,20
+171708,0,0,0,20
+171709,0,0,0,20
+171710,0,0,0,20
+171711,0,0,0,20
+171712,0,0,0,20
+171713,0,0,0,20
+171714,0,0,770841.5974,20
+171715,0,0,0,20
+171716,0,0,0,20
+171717,0,0,0,20
+171718,0,0,0,20
+171719,0,0,0,20
+171720,0,0,0,21
+171721,0,0,0,21
+171722,0,0,0,21
+171723,0,368509.6772,0,21
+171724,0,0,0,21
+171725,0,0,0,21
+171726,0,0,0,21
+171727,0,0,0,21
+171728,0,0,0,21
+171729,0,0,0,21
+171730,0,0,0,21
+171731,0,0,0,21
+171732,0,0,0,21
+171733,0,0,0,21
+171734,340175.1278,0,0,21
+171735,0,0,0,21
+171736,0,0,0,21
+171737,0,0,0,21
+171738,0,0,0,21
+171739,0,0,0,21
+171740,0,0,0,21
+171741,0,0,0,21
+171742,0,0,0,21
+171743,0,0,0,21
+171744,0,0,0,21
+171745,0,0,0,21
+171746,0,0,0,21
+171747,0,0,0,21
+171748,0,0,0,21
+171749,0,0,0,21
+171750,0,0,762438.2436,21
+171751,0,0,0,21
+171752,0,0,0,21
+171753,0,0,0,21
+171754,0,0,0,21
+171755,0,0,0,21
+171756,0,0,0,21
+171757,0,0,0,21
+171758,0,0,0,21
+171759,0,0,0,21
+171760,0,0,0,21
+171761,0,368532.2926,0,21
+171762,0,0,0,21
+171763,0,0,0,21
+171764,0,0,0,21
+171765,0,0,0,21
+171766,0,0,0,21
+171767,0,0,0,21
+171768,0,0,0,21
+171769,0,0,0,21
+171770,0,0,0,21
+171771,0,0,0,21
+171772,340154.6958,0,0,21
+171773,0,0,0,21
+171774,0,0,0,21
+171775,0,0,0,21
+171776,0,0,0,21
+171777,0,0,0,21
+171778,0,0,0,21
+171779,0,0,0,21
+171780,0,0,0,21
+171781,0,0,0,21
+171782,0,0,0,21
+171783,0,0,0,21
+171784,0,0,0,21
+171785,0,0,0,21
+171786,0,0,754789.3942,21
+171787,0,0,0,21
+171788,0,0,0,21
+171789,0,0,0,21
+171790,0,0,0,21
+171791,0,0,0,21
+171792,0,0,0,21
+171793,0,0,0,21
+171794,0,0,0,21
+171795,0,0,0,21
+171796,0,0,0,21
+171797,0,0,0,21
+171798,0,0,0,21
+171799,0,368554.6244,0,21
+171800,0,0,0,21
+171801,0,0,0,21
+171802,0,0,0,21
+171803,0,0,0,21
+171804,0,0,0,21
+171805,0,0,0,21
+171806,0,0,0,21
+171807,0,0,0,21
+171808,0,0,0,21
+171809,0,0,0,21
+171810,340144.7604,0,0,21
+171811,0,0,0,21
+171812,0,0,0,21
+171813,0,0,0,21
+171814,0,0,0,21
+171815,0,0,0,21
+171816,0,0,0,21
+171817,0,0,0,21
+171818,0,0,0,21
+171819,0,0,0,21
+171820,0,0,0,21
+171821,0,0,0,21
+171822,0,0,747653.7726,21
+171823,0,0,0,21
+171824,0,0,0,21
+171825,0,0,0,21
+171826,0,0,0,21
+171827,0,0,0,21
+171828,0,0,0,21
+171829,0,0,0,21
+171830,0,0,0,21
+171831,0,0,0,21
+171832,0,0,0,21
+171833,0,0,0,21
+171834,0,0,0,21
+171835,0,0,0,21
+171836,0,368577.7944,0,21
+171837,0,0,0,21
+171838,0,0,0,21
+171839,0,0,0,21
+171840,0,0,0,21
+171841,0,0,0,21
+171842,0,0,0,21
+171843,0,79706.65706,0,21
+171844,0,0,0,21
+171845,0,0,0,21
+171846,0,0,0,21
+171847,0,0,0,21
+171848,340144.1282,0,0,21
+171849,0,0,0,21
+171850,0,0,0,21
+171851,0,0,0,21
+171852,0,0,0,21
+171853,0,0,0,21
+171854,0,0,0,21
+171855,0,0,0,21
+171856,0,0,0,21
+171857,0,0,0,21
+171858,0,0,741133.2937,21
+171859,0,0,0,21
+171860,0,0,0,21
+171861,0,0,0,21
+171862,0,0,0,21
+171863,0,0,0,21
+171864,0,0,0,21
+171865,0,0,0,21
+171866,0,0,0,21
+171867,0,0,0,21
+171868,0,0,0,21
+171869,0,0,0,21
+171870,0,0,0,21
+171871,0,0,0,21
+171872,0,0,0,21
+171873,0,368587.289,0,21
+171874,0,0,0,21
+171875,0,0,0,21
+171876,0,0,0,21
+171877,0,0,0,21
+171878,0,0,0,21
+171879,0,0,0,21
+171880,0,0,0,21
+171881,0,0,0,21
+171882,0,0,0,21
+171883,0,0,0,21
+171884,0,0,0,21
+171885,0,0,0,21
+171886,340169.3135,0,0,21
+171887,0,0,0,21
+171888,0,0,0,21
+171889,0,0,0,21
+171890,0,0,0,21
+171891,0,0,0,21
+171892,0,0,0,21
+171893,0,0,0,21
+171894,0,0,735359.8821,21
+171895,0,0,0,21
+171896,0,0,0,21
+171897,0,0,0,21
+171898,0,0,0,21
+171899,0,0,0,21
+171900,0,0,0,21
+171901,0,0,0,21
+171902,0,0,0,21
+171903,0,0,0,21
+171904,0,0,0,21
+171905,0,0,0,21
+171906,0,0,0,21
+171907,0,0,0,21
+171908,0,0,0,21
+171909,0,0,0,21
+171910,0,368584.3969,0,21
+171911,0,0,0,21
+171912,0,0,0,21
+171913,0,0,0,21
+171914,0,0,0,21
+171915,0,0,0,21
+171916,0,0,0,21
+171917,0,0,0,21
+171918,0,0,0,21
+171919,0,0,0,21
+171920,0,0,0,21
+171921,0,0,0,21
+171922,0,0,0,21
+171923,0,0,0,21
+171924,340194.9608,0,0,21
+171925,0,0,0,21
+171926,0,0,0,21
+171927,0,0,0,21
+171928,0,0,0,21
+171929,0,0,0,21
+171930,0,0,729809.9017,21
+171931,0,0,0,21
+171932,0,0,0,21
+171933,0,0,0,21
+171934,0,0,0,21
+171935,0,0,0,21
+171936,0,0,0,21
+171937,0,0,0,21
+171938,0,0,0,21
+171939,0,0,0,21
+171940,0,0,0,21
+171941,0,0,0,21
+171942,0,0,0,21
+171943,0,0,0,21
+171944,0,0,0,21
+171945,0,0,0,21
+171946,0,0,0,21
+171947,0,368548.1731,0,21
+171948,0,0,0,21
+171949,0,0,0,21
+171950,0,0,0,21
+171951,0,0,0,21
+171952,0,0,0,21
+171953,0,0,0,21
+171954,0,0,0,21
+171955,0,0,0,21
+171956,0,0,0,21
+171957,0,0,0,21
+171958,0,0,0,21
+171959,0,0,0,21
+171960,0,0,0,21
+171961,0,0,0,21
+171962,340224.3257,79611.18055,0,21
+171963,0,0,0,21
+171964,0,0,0,21
+171965,0,0,0,21
+171966,0,0,724492.0176,21
+171967,0,0,0,21
+171968,0,0,0,21
+171969,0,0,0,21
+171970,0,0,0,21
+171971,0,0,0,21
+171972,0,0,0,21
+171973,0,0,0,21
+171974,0,0,0,21
+171975,0,0,0,21
+171976,0,0,0,21
+171977,0,0,0,21
+171978,0,0,0,21
+171979,0,0,0,21
+171980,0,79486.75194,0,21
+171981,0,0,0,21
+171982,0,0,0,21
+171983,0,0,0,21
+171984,0,0,0,21
+171985,0,368537.464,0,21
+171986,0,0,0,21
+171987,0,0,0,21
+171988,0,0,0,21
+171989,0,0,0,21
+171990,0,0,0,21
+171991,0,0,0,21
+171992,0,0,0,21
+171993,0,0,0,21
+171994,0,0,0,21
+171995,0,0,0,21
+171996,0,0,0,21
+171997,0,0,0,21
+171998,0,0,0,21
+171999,0,0,0,21
+172000,0,0,0,21
+172001,340329.6483,0,0,21
+172002,0,0,0,21
+172003,0,0,719544.8457,21
+172004,0,0,0,21
+172005,0,0,0,21
+172006,0,0,0,21
+172007,0,0,0,21
+172008,0,0,0,21
+172009,0,0,0,21
+172010,0,0,0,21
+172011,0,0,0,21
+172012,0,0,0,21
+172013,0,0,0,21
+172014,0,0,0,21
+172015,0,0,0,21
+172016,0,0,0,21
+172017,0,0,0,21
+172018,0,0,0,21
+172019,0,0,0,21
+172020,0,0,0,21
+172021,0,0,0,21
+172022,0,0,0,21
+172023,0,368544.4871,0,21
+172024,0,0,0,21
+172025,0,0,0,21
+172026,0,0,0,21
+172027,0,0,0,21
+172028,0,0,0,21
+172029,0,0,0,21
+172030,0,0,0,21
+172031,0,0,0,21
+172032,0,0,0,21
+172033,0,0,0,21
+172034,0,0,0,21
+172035,0,0,0,21
+172036,0,0,0,21
+172037,0,0,0,21
+172038,0,0,0,21
+172039,0,0,0,21
+172040,340381.4749,0,715023.6937,21
+172041,0,0,0,21
+172042,0,0,0,21
+172043,0,0,0,21
+172044,0,0,0,21
+172045,0,0,0,21
+172046,0,0,0,21
+172047,0,0,0,21
+172048,0,0,0,21
+172049,0,0,0,21
+172050,0,0,0,21
+172051,0,0,0,21
+172052,0,0,0,21
+172053,0,0,0,21
+172054,0,0,0,21
+172055,0,0,0,21
+172056,0,0,0,21
+172057,0,0,0,21
+172058,0,0,0,21
+172059,0,0,0,21
+172060,0,0,0,21
+172061,0,368476.837,0,21
+172062,0,0,0,21
+172063,0,0,0,21
+172064,0,0,0,21
+172065,0,0,0,21
+172066,0,0,0,21
+172067,0,0,0,21
+172068,0,0,0,21
+172069,0,0,0,21
+172070,0,0,0,21
+172071,0,0,0,21
+172072,0,0,0,21
+172073,0,0,0,21
+172074,0,0,0,21
+172075,0,0,0,21
+172076,0,0,0,21
+172077,0,0,710800.0533,21
+172078,0,0,0,21
+172079,340375.8483,0,0,21
+172080,0,0,0,21
+172081,0,0,0,21
+172082,0,0,0,21
+172083,0,0,0,21
+172084,0,0,0,21
+172085,0,0,0,21
+172086,0,0,0,21
+172087,0,0,0,21
+172088,0,0,0,21
+172089,0,0,0,21
+172090,0,0,0,21
+172091,0,0,0,21
+172092,0,0,0,21
+172093,0,0,0,21
+172094,0,0,0,21
+172095,0,0,0,21
+172096,0,0,0,21
+172097,0,0,0,21
+172098,0,0,0,21
+172099,0,368461.4429,0,21
+172100,0,0,0,21
+172101,0,0,0,21
+172102,0,0,0,21
+172103,0,0,0,21
+172104,0,0,0,21
+172105,0,0,0,21
+172106,0,0,0,21
+172107,0,0,0,21
+172108,0,0,0,21
+172109,0,0,0,21
+172110,0,0,0,21
+172111,0,0,0,21
+172112,0,0,0,21
+172113,0,0,0,21
+172114,0,0,0,21
+172115,0,0,704279.7849,21
+172116,0,0,0,21
+172117,0,0,0,21
+172118,0,0,0,21
+172119,340343.6979,0,0,21
+172120,0,0,0,21
+172121,0,0,0,21
+172122,0,0,0,21
+172123,0,0,0,21
+172124,0,0,0,21
+172125,0,0,0,21
+172126,0,0,0,21
+172127,0,0,0,21
+172128,0,0,0,21
+172129,0,0,0,21
+172130,0,0,0,21
+172131,0,0,0,21
+172132,0,0,0,21
+172133,0,0,0,21
+172134,0,0,0,21
+172135,0,0,0,21
+172136,0,0,0,21
+172137,0,368513.3425,0,21
+172138,0,0,0,21
+172139,0,0,0,21
+172140,0,0,0,21
+172141,0,0,0,21
+172142,0,0,0,21
+172143,0,0,0,21
+172144,0,0,0,21
+172145,0,0,0,21
+172146,0,0,0,21
+172147,0,0,0,21
+172148,0,0,0,21
+172149,0,0,0,21
+172150,0,0,0,21
+172151,0,0,0,21
+172152,0,0,0,21
+172153,0,0,700558.8389,21
+172154,0,0,0,21
+172155,0,0,0,21
+172156,0,0,0,21
+172157,0,0,0,21
+172158,0,0,0,21
+172159,336196.9799,0,0,21
+172160,0,0,0,21
+172161,0,0,0,21
+172162,0,0,0,21
+172163,0,0,0,21
+172164,0,0,0,21
+172165,0,0,0,21
+172166,0,0,0,21
+172167,0,0,0,21
+172168,0,0,0,21
+172169,0,0,0,21
+172170,0,0,0,21
+172171,0,0,0,21
+172172,0,0,0,21
+172173,0,0,0,21
+172174,0,0,0,21
+172175,0,368535.5802,0,21
+172176,0,0,0,21
+172177,0,0,0,21
+172178,0,0,0,21
+172179,0,0,0,21
+172180,0,0,0,21
+172181,0,0,0,21
+172182,0,0,0,21
+172183,0,0,0,21
+172184,0,0,0,21
+172185,0,0,0,21
+172186,0,0,0,21
+172187,0,0,0,21
+172188,0,79320.29591,0,21
+172189,0,0,0,21
+172190,0,0,697118.261,21
+172191,0,0,0,21
+172192,0,0,0,21
+172193,0,0,0,21
+172194,0,0,0,21
+172195,0,0,0,21
+172196,0,0,0,21
+172197,0,0,0,21
+172198,0,0,0,21
+172199,337053.9736,0,0,21
+172200,0,0,0,21
+172201,0,0,0,21
+172202,0,0,0,21
+172203,0,0,0,21
+172204,0,0,0,21
+172205,0,0,0,21
+172206,0,0,0,21
+172207,0,0,0,21
+172208,0,0,0,21
+172209,0,0,0,21
+172210,0,0,0,21
+172211,0,0,0,21
+172212,0,0,0,21
+172213,0,368543.2155,0,21
+172214,0,0,0,21
+172215,0,0,0,21
+172216,0,0,0,21
+172217,0,0,0,21
+172218,0,0,0,21
+172219,0,0,0,21
+172220,0,0,0,21
+172221,0,0,0,21
+172222,0,0,0,21
+172223,0,0,0,21
+172224,0,0,0,21
+172225,0,0,0,21
+172226,0,0,693604.932,21
+172227,0,0,0,21
+172228,0,0,0,21
+172229,0,0,0,21
+172230,0,0,0,21
+172231,0,0,0,21
+172232,0,0,0,21
+172233,0,0,0,21
+172234,0,0,0,21
+172235,0,0,0,21
+172236,0,0,0,21
+172237,0,0,0,21
+172238,0,0,0,21
+172239,335776.2915,0,0,21
+172240,0,0,0,21
+172241,0,0,0,21
+172242,0,0,0,21
+172243,0,0,0,21
+172244,0,0,0,21
+172245,0,0,0,21
+172246,0,0,0,21
+172247,0,0,0,21
+172248,0,0,0,21
+172249,0,0,0,21
+172250,0,0,0,21
+172251,0,368525.7344,0,21
+172252,0,0,0,21
+172253,0,0,0,21
+172254,0,0,0,21
+172255,0,0,0,21
+172256,0,0,0,21
+172257,0,0,0,21
+172258,0,0,0,21
+172259,0,0,0,21
+172260,0,0,0,21
+172261,0,0,0,21
+172262,0,0,690600.91,21
+172263,0,0,0,21
+172264,0,0,0,21
+172265,0,0,0,21
+172266,0,0,0,21
+172267,0,0,0,21
+172268,0,0,0,21
+172269,0,0,0,21
+172270,0,0,0,21
+172271,0,0,0,21
+172272,0,0,0,21
+172273,0,0,0,21
+172274,0,0,0,21
+172275,0,0,0,21
+172276,0,0,0,21
+172277,332796.1434,0,0,21
+172278,0,0,0,21
+172279,0,0,0,21
+172280,0,0,0,21
+172281,0,0,0,21
+172282,0,0,0,21
+172283,0,0,0,21
+172284,0,0,0,21
+172285,0,0,0,21
+172286,0,0,0,21
+172287,0,0,0,21
+172288,0,0,0,21
+172289,0,368507.6572,0,21
+172290,0,0,0,21
+172291,0,0,0,21
+172292,0,0,0,21
+172293,0,0,0,21
+172294,0,0,0,21
+172295,0,0,0,21
+172296,0,0,0,21
+172297,0,0,0,21
+172298,0,0,688245.0237,21
+172299,0,0,0,21
+172300,0,0,0,21
+172301,0,0,0,21
+172302,0,0,0,21
+172303,0,0,0,21
+172304,0,0,0,21
+172305,0,0,0,21
+172306,0,0,0,21
+172307,0,0,0,21
+172308,0,0,0,21
+172309,0,0,0,21
+172310,0,0,0,21
+172311,0,0,0,21
+172312,0,0,0,21
+172313,0,0,0,21
+172314,0,0,0,21
+172315,331551.2115,0,0,21
+172316,0,0,0,21
+172317,0,0,0,21
+172318,0,0,0,21
+172319,0,0,0,21
+172320,0,0,0,21
+172321,0,0,0,21
+172322,0,0,0,21
+172323,0,0,0,21
+172324,0,0,0,21
+172325,0,0,0,21
+172326,0,0,0,21
+172327,0,368495.6632,0,21
+172328,0,0,0,21
+172329,0,0,0,21
+172330,0,0,0,21
+172331,0,79194.12609,0,21
+172332,0,0,0,21
+172333,0,0,0,21
+172334,0,0,686210.955,21
+172335,0,0,0,21
+172336,0,0,0,21
+172337,0,0,0,21
+172338,0,0,0,21
+172339,0,0,0,21
+172340,0,0,0,21
+172341,0,0,0,21
+172342,0,0,0,21
+172343,0,0,0,21
+172344,0,0,0,21
+172345,0,0,0,21
+172346,0,0,0,21
+172347,0,0,0,21
+172348,0,0,0,21
+172349,0,0,0,21
+172350,0,0,0,21
+172351,0,0,0,21
+172352,0,0,0,21
+172353,331463.973,0,0,21
+172354,0,0,0,21
+172355,0,0,0,21
+172356,0,0,0,21
+172357,0,0,0,21
+172358,0,0,0,21
+172359,0,0,0,21
+172360,0,0,0,21
+172361,0,0,0,21
+172362,0,0,0,21
+172363,0,0,0,21
+172364,0,0,0,21
+172365,0,368513.0084,0,21
+172366,0,0,0,21
+172367,0,0,0,21
+172368,0,0,0,21
+172369,0,0,0,21
+172370,0,0,684191.991,21
+172371,0,0,0,21
+172372,0,0,0,21
+172373,0,0,0,21
+172374,0,0,0,21
+172375,0,0,0,21
+172376,0,0,0,21
+172377,0,0,0,21
+172378,0,0,0,21
+172379,0,0,0,21
+172380,0,0,0,21
+172381,0,0,0,21
+172382,0,0,0,21
+172383,0,0,0,21
+172384,0,0,0,21
+172385,0,0,0,21
+172386,0,0,0,21
+172387,0,0,0,21
+172388,0,0,0,21
+172389,0,0,0,21
+172390,0,0,0,21
+172391,331783.2622,0,0,21
+172392,0,0,0,21
+172393,0,0,0,21
+172394,0,0,0,21
+172395,0,0,0,21
+172396,0,0,0,21
+172397,0,0,0,21
+172398,0,0,0,21
+172399,0,79057.1374,0,21
+172400,0,0,0,21
+172401,0,0,0,21
+172402,0,0,0,21
+172403,0,368466.2386,0,21
+172404,0,0,0,21
+172405,0,0,0,21
+172406,0,0,682602.5965,21
+172407,0,0,0,21
+172408,0,0,0,21
+172409,0,0,0,21
+172410,0,0,0,21
+172411,0,0,0,21
+172412,0,0,0,21
+172413,0,0,0,21
+172414,0,0,0,21
+172415,0,0,0,21
+172416,0,0,0,21
+172417,0,0,0,21
+172418,0,0,0,21
+172419,0,0,0,21
+172420,0,0,0,21
+172421,0,0,0,21
+172422,0,0,0,21
+172423,0,0,0,21
+172424,0,0,0,21
+172425,0,0,0,21
+172426,0,0,0,21
+172427,0,0,0,21
+172428,0,0,0,21
+172429,331783.5565,0,0,21
+172430,0,0,0,21
+172431,0,0,0,21
+172432,0,0,0,21
+172433,0,0,0,21
+172434,0,0,0,21
+172435,0,0,0,21
+172436,0,0,0,21
+172437,0,0,0,21
+172438,0,0,0,21
+172439,0,0,0,21
+172440,0,368365.3128,0,21
+172441,0,0,0,21
+172442,0,0,682225.3662,21
+172443,0,0,0,21
+172444,0,0,0,21
+172445,0,0,0,21
+172446,0,0,0,21
+172447,0,0,0,21
+172448,0,0,0,21
+172449,0,0,0,21
+172450,0,0,0,21
+172451,0,0,0,21
+172452,0,0,0,21
+172453,0,0,0,21
+172454,0,0,0,21
+172455,0,0,0,21
+172456,0,0,0,21
+172457,0,0,0,21
+172458,0,0,0,21
+172459,0,0,0,21
+172460,0,0,0,21
+172461,0,0,0,21
+172462,0,0,0,21
+172463,0,0,0,21
+172464,0,0,0,21
+172465,0,0,0,21
+172466,0,0,0,21
+172467,331828.1624,0,0,21
+172468,0,0,0,21
+172469,0,0,0,21
+172470,0,0,0,21
+172471,0,0,0,21
+172472,0,0,0,21
+172473,0,0,0,21
+172474,0,0,0,21
+172475,0,0,0,21
+172476,0,0,0,21
+172477,0,368358.2677,0,21
+172478,0,0,681368.8106,21
+172479,0,0,0,21
+172480,0,0,0,21
+172481,0,0,0,21
+172482,0,0,0,21
+172483,0,0,0,21
+172484,0,0,0,21
+172485,0,0,0,21
+172486,0,0,0,21
+172487,0,0,0,21
+172488,0,0,0,21
+172489,0,0,0,21
+172490,0,0,0,21
+172491,0,0,0,21
+172492,0,0,0,21
+172493,0,0,0,21
+172494,0,0,0,21
+172495,0,0,0,21
+172496,0,0,0,21
+172497,0,0,0,21
+172498,0,0,0,21
+172499,0,0,0,21
+172500,0,0,0,21
+172501,0,0,0,21
+172502,0,0,0,21
+172503,0,0,0,21
+172504,0,0,0,21
+172505,334800.926,0,0,21
+172506,0,0,0,21
+172507,0,0,0,21
+172508,0,7.586914753,0,21
+172509,0,78695.90825,0,21
+172510,0,0,0,21
+172511,0,0,0,21
+172512,0,0,0,21
+172513,0,0,0,21
+172514,0,368371.3029,680449.9826,21
+172515,0,0,0,21
+172516,0,0,0,21
+172517,0,0,0,21
+172518,0,0,0,21
+172519,0,0,0,21
+172520,0,0,0,21
+172521,0,0,0,21
+172522,0,0,0,21
+172523,0,0,0,21
+172524,0,0,0,21
+172525,0,0,0,21
+172526,0,0,0,21
+172527,0,0,0,21
+172528,0,78629.19406,0,21
+172529,0,0,0,21
+172530,0,0,0,21
+172531,0,0,0,21
+172532,0,0,0,21
+172533,0,0,0,21
+172534,0,0,0,21
+172535,0,0,0,21
+172536,0,0,0,21
+172537,0,0,0,21
+172538,0,0,0,21
+172539,0,0,0,21
+172540,0,0,0,21
+172541,0,0,0,21
+172542,0,0,0,21
+172543,340339.286,0,0,21
+172544,0,0,0,21
+172545,0,0,0,21
+172546,0,0,0,21
+172547,0,0,0,21
+172548,0,0,0,21
+172549,0,0,0,21
+172550,0,0,679382.8253,21
+172551,0,368426.8053,0,21
+172552,0,0,0,21
+172553,0,0,0,21
+172554,0,0,0,21
+172555,0,0,0,21
+172556,0,0,0,21
+172557,0,0,0,21
+172558,0,0,0,21
+172559,0,0,0,21
+172560,0,0,0,21
+172561,0,0,0,21
+172562,0,0,0,21
+172563,0,0,0,21
+172564,0,0,0,21
+172565,0,0,0,21
+172566,0,0,0,21
+172567,0,0,0,21
+172568,0,0,0,21
+172569,0,0,0,21
+172570,0,0,0,21
+172571,0,0,0,21
+172572,0,0,0,21
+172573,0,0,0,21
+172574,0,0,0,21
+172575,0,0,0,21
+172576,0,0,0,21
+172577,0,0,0,21
+172578,0,0,0,21
+172579,0,0,0,21
+172580,0,0,0,21
+172581,0,0,0,21
+172582,0,0,0,21
+172583,0,0,0,21
+172584,0,0,0,21
+172585,340332.7434,0,0,21
+172586,0,0,0,21
+172587,0,0,0,21
+172588,0,0,678355.3763,21
+172589,0,0,0,21
+172590,0,368446.1844,0,21
+172591,0,0,0,21
+172592,0,0,0,21
+172593,0,0,0,21
+172594,0,0,0,21
+172595,0,0,0,21
+172596,0,0,0,21
+172597,0,0,0,21
+172598,0,0,0,21
+172599,0,0,0,21
+172600,0,0,0,21
+172601,0,0,0,21
+172602,0,0,0,21
+172603,0,0,0,21
+172604,0,0,0,21
+172605,0,0,0,21
+172606,0,0,0,21
+172607,0,0,0,21
+172608,0,7.512884756,0,21
+172609,0,0,0,21
+172610,0,0,0,21
+172611,0,195.4042184,0,21
+172612,0,0,0,21
+172613,0,0,0,21
+172614,0,0,0,21
+172615,0,0,0,21
+172616,0,0,0,21
+172617,0,0,0,21
+172618,0,4.184339434,0,21
+172619,0,0,0,21
+172620,0,7.868523443,0,21
+172621,0,0,0,21
+172622,0,0,0,21
+172623,0,123.2112332,0,21
+172624,0,0,0,21
+172625,0,0,677494.0658,21
+172626,0,0,0,21
+172627,340318.0212,0,0,21
+172628,0,0,0,21
+172629,0,368429.6766,0,21
+172630,0,0,0,21
+172631,0,0,0,21
+172632,0,0,0,21
+172633,0,0,0,21
+172634,0,0,0,21
+172635,0,0,0,21
+172636,0,0,0,21
+172637,0,0,0,21
+172638,0,0,0,21
+172639,0,0,0,21
+172640,0,0,0,21
+172641,0,0,0,21
+172642,0,0,0,21
+172643,0,0,0,21
+172644,0,0,0,21
+172645,0,0,0,21
+172646,0,0,0,21
+172647,0,0,0,21
+172648,0,0,0,21
+172649,0,0,0,21
+172650,0,0,0,21
+172651,0,0,0,21
+172652,0,0,0,21
+172653,0,0,0,21
+172654,0,0,0,21
+172655,0,0,0,21
+172656,0,3.27969056,0,21
+172657,0,0,0,21
+172658,0,0,0,21
+172659,0,166.2384802,0,21
+172660,0,0,0,21
+172661,0,0,0,21
+172662,0,0,676691.4704,21
+172663,0,0,0,21
+172664,0,0,0,21
+172665,0,0,0,21
+172666,340280.7992,0,0,21
+172667,0,0,0,21
+172668,0,368337.9344,0,21
+172669,0,0,0,21
+172670,0,2.740758251,0,21
+172671,0,0,0,21
+172672,0,0,0,21
+172673,0,0,0,21
+172674,0,0,0,21
+172675,0,0,0,21
+172676,0,0,0,21
+172677,0,0,0,21
+172678,0,0,0,21
+172679,0,0,0,21
+172680,0,0,0,15.6
+172681,0,0,0,15.6
+172682,0,0,0,15.6
+172683,0,0,0,15.6
+172684,0,3.32118948,0,15.6
+172685,0,0,0,15.6
+172686,0,0,0,15.6
+172687,0,162.0686719,0,15.6
+172688,0,0,0,15.6
+172689,0,0,0,15.6
+172690,0,0,0,15.6
+172691,0,0,0,15.6
+172692,0,0,0,15.6
+172693,0,0,0,15.6
+172694,0,81.26070807,0,15.6
+172695,0,0,0,15.6
+172696,0,0,0,15.6
+172697,0,78436.1858,0,15.6
+172698,0,0,0,15.6
+172699,0,0,676008.1981,15.6
+172700,0,0,0,15.6
+172701,0,0,0,15.6
+172702,0,0,0,15.6
+172703,0,0,0,15.6
+172704,0,0,0,15.6
+172705,340244.8698,368306.0827,0,15.6
+172706,0,0,0,15.6
+172707,0,0,0,15.6
+172708,0,0,0,15.6
+172709,0,0,0,15.6
+172710,0,0,0,15.6
+172711,0,0,0,15.6
+172712,0,0,0,15.6
+172713,0,0,0,15.6
+172714,0,0,0,15.6
+172715,0,0,0,15.6
+172716,0,0,0,15.6
+172717,0,0,0,15.6
+172718,0,0,0,15.6
+172719,0,0,0,15.6
+172720,0,0,0,15.6
+172721,0,0,0,15.6
+172722,0,0,0,15.6
+172723,0,0,0,15.6
+172724,0,0,0,15.6
+172725,0,0,0,15.6
+172726,0,0,0,15.6
+172727,0,0,0,15.6
+172728,0,0,0,15.6
+172729,0,0,0,15.6
+172730,0,0,0,15.6
+172731,0,0,0,15.6
+172732,0,0,0,15.6
+172733,0,0,0,15.6
+172734,0,0,0,15.6
+172735,0,0,0,15.6
+172736,0,0,675387.0588,15.6
+172737,0,0,0,15.6
+172738,0,0,0,15.6
+172739,0,0,0,15.6
+172740,0,0,0,15.6
+172741,0,0,0,15.6
+172742,0,368307.7293,0,15.6
+172743,0,0,0,15.6
+172744,340206.907,0,0,15.6
+172745,0,0,0,15.6
+172746,0,0,0,15.6
+172747,0,0,0,15.6
+172748,0,0,0,15.6
+172749,0,0,0,15.6
+172750,0,0,0,15.6
+172751,0,0,0,15.6
+172752,0,0,0,15.6
+172753,0,0,0,15.6
+172754,0,0,0,15.6
+172755,0,0,0,15.6
+172756,0,0,0,15.6
+172757,0,0,0,15.6
+172758,0,0,0,15.6
+172759,0,0,0,15.6
+172760,0,0,0,15.6
+172761,0,0,0,15.6
+172762,0,0,0,15.6
+172763,0,0,0,15.6
+172764,0,0,0,15.6
+172765,0,0,0,15.6
+172766,0,0,0,15.6
+172767,0,0,0,15.6
+172768,0,0,0,15.6
+172769,0,0,0,15.6
+172770,0,0,0,15.6
+172771,0,0,674874.2252,15.6
+172772,0,0,0,15.6
+172773,0,0,0,15.6
+172774,0,0,0,15.6
+172775,0,0,0,15.6
+172776,0,0,0,15.6
+172777,0,0,0,15.6
+172778,0,368330.8156,0,15.6
+172779,0,0,0,15.6
+172780,340150.1343,0,0,15.6
+172781,0,0,0,15.6
+172782,0,0,0,15.6
+172783,0,0,0,15.6
+172784,0,0,0,15.6
+172785,0,0,0,15.6
+172786,0,0,0,15.6
+172787,0,0,0,15.6
+172788,0,0,0,15.6
+172789,0,0,0,15.6
+172790,0,0,0,15.6
+172791,0,0,0,15.6
+172792,0,0,0,15.6
+172793,0,0,0,15.6
+172794,0,0,0,15.6
+172795,0,0,0,15.6
+172796,0,0,0,15.6
+172797,0,0,0,15.6
+172798,0,0,0,15.6
+172799,0,0,0,15.6
+172800,0,0,0,15.6
+172801,0,0,0,15.6
+172802,0,0,0,15.6
+172803,0,0,0,15.6
+172804,0,0,0,15.6
+172805,0,0,0,15.6
+172806,0,0,674400.8169,15.6
+172807,0,0,0,15.6
+172808,0,0,0,15.6
+172809,0,0,0,15.6
+172810,0,0,0,15.6
+172811,0,0,0,15.6
+172812,0,0,0,15.6
+172813,0,0,0,15.6
+172814,0,368337.7259,0,15.6
+172815,0,0,0,15.6
+172816,340052.0077,0,0,15.6
+172817,0,0,0,15.6
+172818,0,0,0,15.6
+172819,0,0,0,15.6
+172820,0,0,0,15.6
+172821,0,0,0,15.6
+172822,0,0,0,15.6
+172823,0,0,0,15.6
+172824,0,440.2296556,0,15.6
+172825,0,0,0,15.6
+172826,0,0,0,15.6
+172827,0,0,0,15.6
+172828,0,0,0,15.6
+172829,0,0,0,15.6
+172830,0,0,0,15.6
+172831,0,0,0,15.6
+172832,0,0,0,15.6
+172833,0,189.5133173,0,15.6
+172834,0,0,0,15.6
+172835,0,0,0,15.6
+172836,0,0,0,15.6
+172837,0,0,0,15.6
+172838,0,0,0,15.6
+172839,0,0,0,15.6
+172840,0,0,0,15.6
+172841,0,0,0,15.6
+172842,0,0,673939.6142,15.6
+172843,0,188.2894474,0,15.6
+172844,0,0,0,15.6
+172845,0,0,0,15.6
+172846,0,0,0,15.6
+172847,0,0,0,15.6
+172848,0,0,0,15.6
+172849,0,0,0,15.6
+172850,0,368311.879,0,15.6
+172851,0,0,0,15.6
+172852,0,0,0,15.6
+172853,339900.5903,239.0226357,0,15.6
+172854,0,0,0,15.6
+172855,0,0,0,15.6
+172856,0,0,0,15.6
+172857,0,0,0,15.6
+172858,0,0,0,15.6
+172859,0,0,0,15.6
+172860,0,0,0,15.6
+172861,0,0,0,15.6
+172862,0,0,0,15.6
+172863,0,218.5921661,0,15.6
+172864,0,0,0,15.6
+172865,0,0,0,15.6
+172866,0,0,0,15.6
+172867,0,63.68713364,0,15.6
+172868,0,0,0,15.6
+172869,0,0,0,15.6
+172870,0,0,0,15.6
+172871,0,367.237947,0,15.6
+172872,0,0,0,15.6
+172873,0,0,0,15.6
+172874,0,0,0,15.6
+172875,0,0,0,15.6
+172876,0,0,0,15.6
+172877,0,0,0,15.6
+172878,0,0,673587.9475,15.6
+172879,0,0,0,15.6
+172880,0,0,0,15.6
+172881,0,191.2700797,0,15.6
+172882,0,0,0,15.6
+172883,0,0,0,15.6
+172884,0,0,0,15.6
+172885,0,0,0,15.6
+172886,0,368307.278,0,15.6
+172887,0,0,0,15.6
+172888,0,0,0,15.6
+172889,0,0,0,15.6
+172890,339866.2385,0,0,15.6
+172891,0,230.1437244,0,15.6
+172892,0,0,0,15.6
+172893,0,0,0,15.6
+172894,0,0,0,15.6
+172895,0,232.6767509,0,15.6
+172896,0,0,0,15.6
+172897,0,0,0,15.6
+172898,0,0,0,15.6
+172899,0,0,0,15.6
+172900,0,0,0,15.6
+172901,0,0,0,15.6
+172902,0,0,0,15.6
+172903,0,228.8897432,0,15.6
+172904,0,0,0,15.6
+172905,0,0,0,15.6
+172906,0,0,0,15.6
+172907,0,85.86005478,0,15.6
+172908,0,0,0,15.6
+172909,0,0,0,15.6
+172910,0,0,0,15.6
+172911,0,234.676378,0,15.6
+172912,0,0,0,15.6
+172913,0,0,0,15.6
+172914,0,0,670588.5051,15.6
+172915,0,35.1660459,0,15.6
+172916,0,0,0,15.6
+172917,0,0,0,15.6
+172918,0,0,0,15.6
+172919,0,348.1653231,0,15.6
+172920,0,0,0,15.6
+172921,0,0,0,15.6
+172922,0,368314.2865,0,15.6
+172923,0,0,0,15.6
+172924,0,0,0,15.6
+172925,0,0,0,15.6
+172926,0,0,0,15.6
+172927,339858.7063,0,0,15.6
+172928,0,0,0,15.6
+172929,0,352.2821389,0,15.6
+172930,0,0,0,15.6
+172931,0,0,0,15.6
+172932,0,0,0,15.6
+172933,0,0,0,15.6
+172934,0,0,0,15.6
+172935,0,0,0,15.6
+172936,0,0,0,15.6
+172937,0,0,0,15.6
+172938,0,0,0,15.6
+172939,0,374.164366,0,15.6
+172940,0,0,0,15.6
+172941,0,0,0,15.6
+172942,0,0,0,15.6
+172943,0,0,0,15.6
+172944,0,0,0,15.6
+172945,0,0,0,15.6
+172946,0,0,0,15.6
+172947,0,0,0,15.6
+172948,0,0,0,15.6
+172949,0,379.7813994,0,15.6
+172950,0,0,670625.7086,15.6
+172951,0,0,0,15.6
+172952,0,0,0,15.6
+172953,0,0,0,15.6
+172954,0,0,0,15.6
+172955,0,0,0,15.6
+172956,0,0,0,15.6
+172957,0,0,0,15.6
+172958,0,368341.1934,0,15.6
+172959,0,377.1480151,0,15.6
+172960,0,0,0,15.6
+172961,0,0,0,15.6
+172962,0,0,0,15.6
+172963,0,0,0,15.6
+172964,339831.749,0,0,15.6
+172965,0,0,0,15.6
+172966,0,0,0,15.6
+172967,0,0,0,15.6
+172968,0,0,0,15.6
+172969,0,360.2733182,0,15.6
+172970,0,0,0,15.6
+172971,0,0,0,15.6
+172972,0,0,0,15.6
+172973,0,0,0,15.6
+172974,0,0,0,15.6
+172975,0,0,0,15.6
+172976,0,0,0,15.6
+172977,0,0,0,15.6
+172978,0,0,0,15.6
+172979,0,352.2868532,0,15.6
+172980,0,0,0,15.6
+172981,0,25253.02915,0,15.6
+172982,0,1536.784604,0,15.6
+172983,0,3566.586393,0,15.6
+172984,0,9674.43787,0,15.6
+172985,0,11444.23916,0,15.6
+172986,0,8578.698741,671057.2486,15.6
+172987,0,11222.47747,0,15.6
+172988,0,10633.39888,0,15.6
+172989,0,11110.57587,0,15.6
+172990,0,10877.57159,0,15.6
+172991,0,10872.04891,0,15.6
+172992,0,10968.43108,0,15.6
+172993,0,11005.60276,0,15.6
+172994,0,379362.2268,0,15.6
+172995,0,11074.82077,0,15.6
+172996,0,11072.05979,0,15.6
+172997,0,11144.30796,0,15.6
+172998,0,11123.22328,0,15.6
+172999,0,11254.61402,0,15.6
+173000,0,11216.29384,0,15.6
+173001,339806.4213,11252.41244,0,15.6
+173002,0,11284.89405,0,15.6
+173003,0,11369.51427,0,15.6
+173004,0,11353.38233,0,15.6
+173005,0,11336.08415,0,15.6
+173006,0,11421.96357,0,15.6
+173007,0,11681.44121,0,15.6
+173008,0,11430.9189,0,15.6
+173009,0,11505.06165,0,15.6
+173010,0,11519.87608,0,15.6
+173011,0,0,0,15.6
+173012,0,0,0,15.6
+173013,0,0,0,15.6
+173014,0,0,0,15.6
+173015,0,0,0,15.6
+173016,0,0,0,15.6
+173017,0,0,0,15.6
+173018,0,0,0,15.6
+173019,0,0,0,15.6
+173020,0,0,0,15.6
+173021,0,0,0,15.6
+173022,0,0,671326.5426,15.6
+173023,0,0,0,15.6
+173024,0,0,0,15.6
+173025,0,0,0,15.6
+173026,0,0,0,15.6
+173027,0,0,0,15.6
+173028,0,0,0,15.6
+173029,0,34.31230587,0,15.6
+173030,0,368372.1302,0,15.6
+173031,0,0,0,15.6
+173032,0,0,0,15.6
+173033,0,27213.48422,0,15.6
+173034,0,529.5809555,0,15.6
+173035,0,8164.933206,0,15.6
+173036,0,11395.92749,0,15.6
+173037,0,12970.79716,0,15.6
+173038,339782.3457,11576.84467,0,15.6
+173039,0,11841.90474,0,15.6
+173040,0,12049.12989,0,17.8
+173041,87664.86287,510385.3111,0,17.8
+173042,66762.69019,128780.0235,0,17.8
+173043,47372.13285,248982.3368,0,17.8
+173044,25754.07471,205306.3213,0,17.8
+173045,28937.35199,242975.4816,0,17.8
+173046,54425.84234,222155.7573,0,17.8
+173047,42265.05174,225429.3596,0,17.8
+173048,43042.08156,226665.6877,0,17.8
+173049,44140.59832,225449.9723,0,17.8
+173050,43979.40185,226907.794,0,17.8
+173051,44012.89778,225983.2768,0,17.8
+173052,44042.12705,227040.2005,0,17.8
+173053,43836.71381,226306.365,0,17.8
+173054,47632.43986,226945.5797,0,17.8
+173055,45937.98242,226401.9798,0,17.8
+173056,46083.04554,227466.671,0,17.8
+173057,361841.5655,226766.4074,670769.2493,17.8
+173058,67673.23074,227567.0764,0,17.8
+173059,133712.6453,227649.5376,0,17.8
+173060,206792.6,227501.1102,0,17.8
+173061,185630.4626,227686.3382,0,17.8
+173062,177352.3093,228510.9392,0,17.8
+173063,183313.0247,181055.9065,0,17.8
+173064,183551.3358,181346.0212,0,17.8
+173065,184162.5212,181487.8784,0,17.8
+173066,184370.7524,630167.3154,0,17.8
+173067,184903.0719,198240.9047,0,17.8
+173068,184984.1315,231599.6335,0,17.8
+173069,185742.5838,234459.9178,0,17.8
+173070,185746.0921,227604.4744,0,17.8
+173071,142884.6414,47019.03144,0,17.8
+173072,142943.9382,44951.08281,0,17.8
+173073,143490.6304,44701.20781,0,17.8
+173074,219124.8895,44459.28048,0,17.8
+173075,506527.7482,44264.21916,0,17.8
+173076,195211.3129,43979.28477,0,17.8
+173077,187983.7784,43949.41874,0,17.8
+173078,189460.6869,43764.96525,0,17.8
+173079,189375.5246,43578.34456,0,17.8
+173080,190077.7344,43462.91574,0,17.8
+173081,185982.4304,43247.07967,0,17.8
+173082,186833.3809,43341.72828,0,17.8
+173083,186700.2761,43025.95797,0,17.8
+173084,187342.825,42802.06399,0,17.8
+173085,187970.6788,42706.78405,0,17.8
+173086,187732.1608,42666.89542,0,17.8
+173087,43822.1909,42329.68307,0,17.8
+173088,43857.24835,42400.99024,0,17.8
+173089,43995.43218,42097.35443,0,17.8
+173090,43854.55729,42287.15903,0,17.8
+173091,43857.50746,41827.36169,0,17.8
+173092,44047.64182,41830.03675,669489.6875,17.8
+173093,43931.34364,41672.25557,0,17.8
+173094,44017.28374,41429.29076,0,17.8
+173095,43969.99911,42901.29584,0,17.8
+173096,44085.09785,3415.256096,0,17.8
+173097,44035.81985,1911.026876,0,17.8
+173098,44161.32172,2476.884816,0,17.8
+173099,44152.5809,2476.885315,0,17.8
+173100,44038.05107,2536.198838,0,20
+173101,980477.3265,1288137.196,27855.2678,20
+173102,668135.0326,131216.413,0,20
+173103,165167.2845,131186.9774,0,20
+173104,265456.1057,336377.4418,1569.942638,20
+173105,370970.8437,238642.1392,24637.75259,20
+173106,297197.2557,246347.3455,25051.33067,20
+173107,304311.776,244949.0922,18848.99816,20
+173108,304008.6725,243106.9263,25696.21879,20
+173109,303591.7636,241173.5684,25116.31643,20
+173110,303258.8462,239736.1351,26930.80676,20
+173111,303633.6097,237489.5845,26183.74787,20
+173112,302960.9208,235872.8454,27946.76752,20
+173113,302271.983,234005.4572,35058.31105,20
+173114,302187.2545,232594.3092,30838.61453,20
+173115,292783.8755,230671.4506,32689.45253,20
+173116,290707.1848,229064.5516,33118.28671,20
+173117,289476.0101,227383.1662,33374.92655,20
+173118,288542.0282,225846.1624,33858.15859,20
+173119,286995.8033,223755.9274,38806.24595,20
+173120,286340.7473,222618.9054,36355.80604,20
+173121,285642.8555,220586.7263,37986.90753,20
+173122,283641.123,219440.8468,38219.27047,20
+173123,283359.883,217413.4168,39075.78912,20
+173124,282290.8949,215853.333,39196.6956,20
+173125,281314.7134,214455.4211,39974.21578,20
+173126,280416.9545,212784.7867,40297.18596,20
+173127,279530.5434,211312.5359,41044.92585,20
+173128,278435.8539,209944.3017,41179.95102,20
+173129,277495.8106,208831.5913,41790.35572,20
+173130,277119.7273,207718.4204,42324.242,20
+173131,275334.3468,206923.7631,42875.82686,20
+173132,274923.0364,206397.4421,43133.47437,20
+173133,272898.4261,206593.8288,43857.75231,20
+173134,272680.8056,205239.4395,43911.43386,20
+173135,270765.3335,205867.3027,44678.08118,20
+173136,270130.1136,205175.6959,44996.00062,20
+173137,268815.7156,205472.2109,45458.40517,20
+173138,277836.5615,204686.0056,45913.70248,20
+173139,275052.9788,204877.7243,46404.7728,20
+173140,273299.5596,204660.4149,46756.63581,20
+173141,274478.5745,204960.097,47109.91214,20
+173142,273169.825,204421.2272,47715.86941,20
+173143,273830.5919,204572.3326,48141.95136,20
+173144,272396.9144,204342.5499,48388.91414,20
+173145,272334.5735,204999.4911,49013.66911,20
+173146,271831.4766,204254.8228,49243.6001,20
+173147,271431.3158,204795.1524,49699.27061,20
+173148,271612.2333,204627.9355,50145.66974,20
+173149,270534.6089,204604.2452,50406.57195,20
+173150,269632.6865,204783.7322,51133.66934,20
+173151,270009.5069,204981.5925,51192.53681,20
+173152,268235.6206,204736.0463,53396.78141,20
+173153,268854.9629,205637.0575,53017.49703,20
+173154,267466.4446,204931.8567,53870.81734,20
+173155,267437.042,205473.1402,50314.8931,20
+173156,265895.1618,205978.9852,49812.41227,20
+173157,266529.136,205560.2533,50277.47382,20
+173158,264016.2375,206333.3106,50297.06496,20
+173159,265735.5224,206587.12,50875.31898,20
+173160,262330.0728,205951.7228,51016.2848,21
+173161,477227.5249,197250.3018,41339.43524,21
+173162,468253.0542,195549.6084,40952.90819,21
+173163,464087.0297,622526.4572,40812.77027,21
+173164,459324.3495,196744.6097,41169.72076,21
+173165,454800.9069,197326.842,40748.69369,21
+173166,450340.4153,197066.8031,41419.57615,21
+173167,446056.8496,197770.9548,41289.70774,21
+173168,440880.685,198174.5216,41200.61493,21
+173169,436459.6896,197857.9179,41753.49168,21
+173170,432156.0499,198340.5873,41605.5954,21
+173171,427262.5418,198986.2136,41980.22144,21
+173172,422502.5977,198755.4844,41815.31685,21
+173173,418226.0013,199444.9157,42405.25233,21
+173174,413417.679,199283.5611,42168.84426,21
+173175,408274.1586,200102.3177,42605.02253,21
+173176,404093.1418,199924.2647,42493.1395,21
+173177,399294.726,200711.3923,42871.88383,21
+173178,394474.7374,200492.206,43134.97127,21
+173179,390011.7799,201223.5145,42831.48854,21
+173180,384493.9841,201968.7151,43684.87919,21
+173181,381512.5758,201390.3375,43219.26254,21
+173182,377617.9445,202649.7694,43994.27179,21
+173183,373811.8416,202434.4347,43865.59422,21
+173184,370513.3208,203191.361,44114.0536,21
+173185,366597.5369,203357.8878,44540.12805,21
+173186,363081.9808,203651.0448,44455.15883,21
+173187,359556.4362,205590.0887,44773.33539,21
+173188,355820.8364,206438.7117,45112.45541,21
+173189,353282.2208,206621.9766,45093.30949,21
+173190,349457.0675,207410.5506,45376.6925,21
+173191,345367.3662,207173.3112,45523.28457,21
+173192,342718.7799,206509.5651,45570.92074,21
+173193,338139.8462,206415.672,45466.81655,21
+173194,335472.2433,205672.2615,45493.54241,21
+173195,331602.9378,204617.9282,45592.05582,21
+173196,328432.533,202681.3185,45614.63713,21
+173197,324591.6096,203475.3409,45607.29173,21
+173198,320390.6489,201851.7049,45713.11119,21
+173199,318630.0339,201224.8854,45676.13412,21
+173200,313523.9761,201010.0163,45931.96287,21
+173201,310501.8713,199729.0729,45496.55606,21
+173202,307433.2719,199321.2914,46146.09134,21
+173203,303394.5929,198553.108,45743.2561,21
+173204,300226.7703,197779.1141,46122.04582,21
+173205,297030.0943,197145.13,46004.1803,21
+173206,293219.7467,196401.5722,45989.7367,21
+173207,290679.9881,195269.9942,46126.47134,21
+173208,286679.5323,194596.0985,46163.20702,21
+173209,283936.5848,193921.9742,45869.54207,21
+173210,280285.5529,193130.2308,46335.30507,21
+173211,276258.4802,191751.6095,45957.60085,21
+173212,273960.1951,191513.1666,46293.43569,21
+173213,270524.5034,189619.3476,46259.93979,21
+173214,266508.954,189697.4966,45941.18099,21
+173215,263671.6456,187966.1478,46426.95585,21
+173216,260423.2855,187391.6242,45911.65885,21
+173217,257116.4923,186706.8637,46385.91301,21
+173218,253502.5072,184979.7795,46202.06834,21
+173219,250427.5185,184669.9157,45793.56152,21
+173220,247350.3856,183050.3226,46629.66307,21
+173221,171899.5661,108967.152,4936.81476,21
+173222,166920.4259,103498.0315,3764.6426,21
+173223,163532.1861,102523.8948,3191.890809,21
+173224,160515.1155,100867.9864,2962.065368,21
+173225,157700.8787,99913.16458,2669.890891,21
+173226,154442.2722,98586.85996,2169.932072,21
+173227,151403.0492,97367.16867,1979.899185,21
+173228,148568.484,96404.01244,1656.370247,21
+173229,145366.3469,95314.31786,1459.894729,21
+173230,142295.5954,94199.51927,1256.345258,21
+173231,139345.1998,92836.27865,1208.763691,21
+173232,136277.7911,92045.23902,1176.797168,21
+173233,132657.5912,90905.53157,1112.58959,21
+173234,130030.9602,90021.74336,1096.7427,21
+173235,126631.9955,88990.04638,1048.060906,21
+173236,124060.1846,88453.56141,1008.151508,21
+173237,120837.7316,86961.94363,967.1474005,21
+173238,117762.6183,85656.22025,918.4196518,21
+173239,115313.676,84575.47272,902.2963806,21
+173240,112089.5589,83117.68346,819.7813624,21
+173241,109940.5278,82624.86481,820.2998418,21
+173242,106795.3978,81340.95756,770.3907641,21
+173243,104558.2532,80526.16607,720.7344488,21
+173244,101629.0165,79167.95228,687.3106305,21
+173245,99318.1756,78245.30395,670.8206272,21
+173246,96410.24448,76840.49898,586.2341043,21
+173247,94189.09059,75652.92893,586.8221813,21
+173248,91292.90738,74844.099,535.549841,21
+173249,88878.63415,73494.02398,493.2572191,21
+173250,86138.09476,72715.5006,450.0873072,21
+173251,83968.50502,71519.33186,433.139814,21
+173252,80759.5991,70605.46931,363.5241758,21
+173253,78563.35155,69763.87678,354.955446,21
+173254,75755.15831,68967.78676,275.604272,21
+173255,74305.63841,67829.63098,275.6056915,21
+173256,73476.85017,67082.45765,194.612664,21
+173257,72058.28155,66252.10791,185.7999346,21
+173258,71106.51995,65598.77354,130.6776149,21
+173259,70414.5776,64733.42328,121.7142001,21
+173260,69148.77716,64358.36717,94.60185374,21
+173261,68252.19251,63439.23428,67.09321189,21
+173262,67130.08766,62794.52541,48.47036362,21
+173263,66346.92818,62251.82253,29.53624224,21
+173264,65247.52073,61735.69121,0,21
+173265,64140.86128,61011.72321,0,21
+173266,63244.73568,60529.52551,0,21
+173267,62091.46066,59714.02961,0,21
+173268,61346.32565,59410.42082,0,21
+173269,60100.14324,58407.39244,0,21
+173270,59225.22208,58171.8656,0,21
+173271,57982.79116,57445.79394,0,21
+173272,57157.94084,57243.26095,0,21
+173273,56075.8192,56718.98705,0,21
+173274,55312.35151,56010.30254,0,21
+173275,54334.13645,56003.02498,0,21
+173276,53179.93332,55052.67703,0,21
+173277,52730.69472,54992.06665,0,21
+173278,51322.73442,54583.25298,0,21
+173279,50659.76633,53679.2805,0,21
+173280,50083.52895,53821.33026,0,21
+173281,48989.74572,52969.38456,0,21
+173282,48062.25729,52726.02995,0,21
+173283,47431.91976,52304.85534,0,21
+173284,46263.70182,51621.16539,0,21
+173285,45712.97652,51607.62494,0,21
+173286,44624.21459,50916.24026,0,21
+173287,43816.9578,50520.19087,0,21
+173288,42835.27912,50200.70716,0,21
+173289,42273.86123,49619.1276,0,21
+173290,41245.6447,49324.62483,0,21
+173291,40422.4437,48899.09096,0,21
+173292,39472.38932,48389.75284,0,21
+173293,38698.35636,47998.68586,0,21
+173294,37984.25081,47916.93545,0,21
+173295,36987.2382,46841.80655,0,21
+173296,36320.55671,47028.30189,0,21
+173297,35266.14853,46317.61133,0,21
+173298,34600.61644,46121.43069,0,21
+173299,33845.31996,45409.5333,0,21
+173300,32565.36213,45259.80891,0,21
+173301,32330.34504,44615.87082,0,21
+173302,31249.16673,44447.1058,0,21
+173303,30375.87718,43747.9911,0,21
+173304,29740.18749,43664.21155,0,21
+173305,28768.0983,42948.7869,0,21
+173306,28003.59744,42779.96351,0,21
+173307,27254.98974,42129.46466,0,21
+173308,26413.12584,41869.68674,0,21
+173309,25948.84468,41270.30222,0,21
+173310,25368.3948,40916.8278,0,21
+173311,25010.63545,40580.18589,0,21
+173312,24617.79217,40170.72097,0,21
+173313,24155.49608,39319.03466,0,21
+173314,23762.90688,39197.53093,0,21
+173315,23398.22139,38522.03424,0,21
+173316,23112.93803,38228.6862,0,21
+173317,22963.38682,37645.19692,0,21
+173318,22790.45993,36466.35584,0,21
+173319,22583.51153,35464.8376,0,21
+173320,22448.20893,35038.60386,0,21
+173321,22162.93077,34611.23242,0,21
+173322,22162.19362,33853.27053,0,21
+173323,21700.54059,33534.70989,0,21
+173324,21847.57557,32596.02986,0,21
+173325,21412.03778,32328.85847,0,21
+173326,21498.30585,31375.33534,0,21
+173327,21085.24995,31092.83596,0,21
+173328,21005.56823,30172.60285,0,21
+173329,20937.099,29843.46876,0,21
+173330,20597.98985,29152.66282,0,21
+173331,20519.93201,28129.35734,0,21
+173332,20372.24884,27893.20984,0,21
+173333,20088.45253,27143.23574,0,21
+173334,20028.70272,26356.60998,0,21
+173335,19892.33366,25719.76538,0,21
+173336,19714.65592,24975.48521,0,21
+173337,19457.35023,24539.89036,0,21
+173338,19397.11234,23571.4774,0,21
+173339,19141.00276,22974.37663,0,21
+173340,19058.68296,22213.73082,0,21
+173341,18522.25706,20570.19051,0,21
+173342,18461.83969,19792.30585,0,21
+173343,18199.42055,19293.98498,0,21
+173344,18162.41954,18336.56581,0,21
+173345,18117.7273,17517.77174,0,21
+173346,17838.38762,16715.96564,0,21
+173347,17915.96702,16627.64028,0,21
+173348,17756.05956,16261.38005,0,21
+173349,17492.75069,16146.52201,0,21
+173350,17552.65082,15960.36555,0,21
+173351,17387.59443,15817.74202,0,21
+173352,17258.51069,15484.75074,0,21
+173353,17185.50396,15353.94487,0,21
+173354,17041.79903,15255.56134,0,21
+173355,16990.47795,14920.09237,0,21
+173356,16746.64176,14773.68891,0,21
+173357,16885.98184,14689.74098,0,21
+173358,16619.93578,14299.14713,0,21
+173359,16497.02942,14226.82207,0,21
+173360,16504.03119,13936.92243,0,21
+173361,16280.31498,13875.09444,0,21
+173362,16236.44566,13595.91047,0,21
+173363,16163.80385,13355.34856,0,21
+173364,15926.42255,13137.41794,0,21
+173365,16077.39708,13123.6433,0,21
+173366,15798.31544,12648.38541,0,21
+173367,15674.02584,12748.76105,0,21
+173368,15701.70343,12269.86041,0,21
+173369,15475.04838,12266.30865,0,21
+173370,15490.24369,11914.31459,0,21
+173371,15355.65339,11750.95428,0,21
+173372,15062.54913,11539.49495,0,21
+173373,14996.16824,11256.54283,0,21
+173374,14942.18871,11130.67722,0,21
+173375,14636.12143,10769.05105,0,21
+173376,14591.73387,10623.82285,0,21
+173377,14306.60334,10212.42517,0,21
+173378,14227.62884,10164.85396,0,21
+173379,14160.28297,9978.08592,0,21
+173380,13896.61754,9804.553406,0,21
+173381,13805.04224,9637.626968,0,21
+173382,13540.107,9470.199647,0,21
+173383,13470.42225,9427.864056,0,21
+173384,13273.94985,9098.517106,0,21
+173385,13111.7773,9076.952401,0,21
+173386,13040.64917,8900.915021,0,21
+173387,12749.73484,8589.742433,0,21
+173388,12678.12821,8680.447384,0,21
+173389,12396.05714,8368.367461,0,21
+173390,12453.9257,8069.556371,0,21
+173391,12016.76891,8280.237531,0,21
+173392,12191.7906,7709.037794,0,21
+173393,11733.30458,7792.655291,0,21
+173394,11860.428,7633.307048,0,21
+173395,11467.57812,7293.295111,0,21
+173396,11418.22109,7283.002073,0,21
+173397,11236.47115,7085.328401,0,21
+173398,11161.87449,6948.108065,0,21
+173399,10868.86824,6918.929584,0,21
+173400,10804.91878,6643.180392,0,21
+173401,11079.90115,6766.452708,0,21
+173402,10801.86089,6781.262548,0,21
+173403,10857.24406,6613.912059,0,21
+173404,10738.53369,6460.725259,0,21
+173405,10500.37531,6446.020561,0,21
+173406,10642.13165,6152.949835,0,21
+173407,10236.77539,6138.187591,0,21
+173408,10391.72243,5983.549488,0,21
+173409,10176.34375,5813.564699,0,21
+173410,10103.20186,5672.772203,0,21
+173411,10007.50786,5657.892877,0,21
+173412,9850.259339,5486.757922,0,21
+173413,9838.047476,5344.969295,0,21
+173414,9801.139422,5172.690713,0,21
+173415,9559.229114,5014.816807,0,21
+173416,9522.012818,5014.81603,0,21
+173417,9413.063349,4697.303031,0,21
+173418,9363.276558,4826.140799,0,21
+173419,9094.438074,4377.307396,0,21
+173420,9094.437323,4522.469507,0,21
+173421,8921.806543,4331.641839,0,21
+173422,8811.662216,4054.648188,0,21
+173423,8663.565116,4170.559407,0,21
+173424,8747.886773,3846.290432,0,21
+173425,8384.968937,3713.787042,0,21
+173426,8586.453854,3667.621617,0,21
+173427,8228.115444,3519.010976,0,21
+173428,8313.749161,3354.151331,0,21
+173429,8052.320234,3338.659289,0,21
+173430,8052.319619,3006.205412,0,21
+173431,7998.961743,3021.768225,0,21
+173432,7750.342482,2974.97103,0,21
+173433,7603.687728,2669.818095,0,21
+173434,7583.875575,2654.146081,0,21
+173435,7417.332277,2484.259984,0,21
+173436,7177.2067,2468.513226,0,21
+173437,7148.987641,2297.360346,0,21
+173438,7010.136484,2140.681396,0,21
+173439,6896.736839,2108.995993,0,21
+173440,6757.201647,1934.953231,0,21
+173441,6643.203703,1934.953262,0,21
+173442,6502.963735,1597.480091,0,21
+173443,6388.347134,1727.206402,0,21
+173444,6362.313565,1401.421261,0,21
+173445,6016.535732,1385.357151,0,21
+173446,6105.989663,1369.251036,0,21
+173447,5874.480226,1101.134429,0,21
+173448,5848.247084,1014.88297,0,21
+173449,5602.212304,982.4553515,0,21
+173450,5472.059778,786.4568773,0,21
+173451,5472.059454,786.456889,0,21
+173452,5210.573405,770.131549,0,21
+173453,5197.314771,753.7603441,0,21
+173454,4947.452424,737.3425335,0,21
+173455,4934.140726,720.8773438,0,21
+173456,4682.617528,704.3639662,0,21
+173457,4669.251933,704.3639709,0,21
+173458,4536.172393,687.8015583,0,21
+173459,4268.516144,654.5260336,0,21
+173460,4268.515951,654.526039,0,21
+173461,8205.727874,1026.257927,0,21
+173462,8180.171259,3984.414978,0,21
+173463,8069.50952,4275.371399,0,21
+173464,8056.696521,3394.353407,0,21
+173465,7821.761266,3675.075225,0,21
+173466,7821.761435,3675.075361,0,21
+173467,7684.574026,3511.432675,0,21
+173468,7559.955296,3659.290755,0,21
+173469,7547.023891,3346.998974,0,21
+173470,7322.783727,3495.609714,0,21
+173471,7296.848197,3331.137059,0,21
+173472,7071.491386,3479.74781,0,21
+173473,7158.278152,3181.734887,0,21
+173474,6818.950743,3299.29429,0,21
+173475,6906.217998,3165.833474,0,21
+173476,6679.1219,3149.892091,0,21
+173477,6652.888885,3133.910332,0,21
+173478,6424.586149,2999.653889,0,21
+173479,6398.251181,2967.649368,0,21
+173480,6283.634524,3133.91061,0,21
+173481,6142.261776,3149.892567,0,21
+173482,6027.004175,3117.888038,0,21
+173483,6000.460779,2967.649716,0,21
+173484,5768.950602,2967.649804,0,21
+173485,5742.300604,2951.585712,0,21
+173486,5509.419582,2951.5858,0,21
+173487,5599.276722,2784.354711,0,21
+173488,5248.351108,2784.354793,0,21
+173489,5338.82047,2784.354876,0,21
+173490,5103.77176,2768.206165,0,21
+173491,4958.698159,2616.136366,0,21
+173492,5076.791651,2599.944459,0,21
+173493,4826.680565,2768.206411,0,21
+173494,4931.604335,2583.708807,0,21
+173495,4694.232595,2599.944705,0,21
+173496,4931.604519,2599.870125,0,21
+173497,4931.604613,2583.72398,0,21
+173498,4931.604707,2430.612609,0,21
+173499,4799.529353,2719.483054,0,21
+173500,4785.909878,2430.615208,0,21
+173501,4785.909969,2567.416963,0,21
+173502,4653.374239,2414.33505,0,21
+173503,4639.695521,2567.417028,0,21
+173504,4639.69561,2567.417151,0,21
+173505,4520.396591,2398.009806,0,21
+173506,4492.948658,2551.091786,0,21
+173507,4373.225913,2414.33532,0,21
+173508,4492.948829,2381.638563,0,21
+173509,4345.655552,2551.091871,0,21
+173510,4239.297603,2381.638677,0,21
+173511,4331.823744,2551.092027,0,21
+173512,4091.057265,2365.220818,0,21
+173513,4317.96037,2398.010121,0,21
+173514,4077.193878,2518.302842,0,21
+173515,4063.298519,2381.638846,0,21
+173516,4063.298594,2365.220996,0,21
+173517,3914.339768,2518.264586,0,21
+173518,4049.37107,2365.219235,0,21
+173519,3778.797305,2365.21789,0,21
+173520,3914.339982,2501.828122,0,21
+173521,462.6110407,362.2371032,0,21
+173522,462.6110269,326.5263333,0,21
+173523,431.9677055,344.4331538,0,21
+173524,416.5594891,308.5303971,0,21
+173525,416.5594793,326.5266044,0,21
+173526,401.091336,290.4403478,0,21
+173527,385.5614326,308.5304119,0,21
+173528,369.9677901,290.4403787,0,21
+173529,354.3082634,290.4403897,0,21
+173530,354.308257,281.3586843,0,21
+173531,338.5805124,272.2516826,0,21
+173532,306.9099231,272.2516788,0,21
+173533,322.7819939,253.958942,0,21
+173534,290.9611841,253.9570656,0,21
+173535,290.9611799,235.5555341,0,21
+173536,258.8196674,217.0356939,0,21
+173537,258.8196641,235.5559119,0,21
+173538,209.932319,207.7290609,0,21
+173539,209.9323169,217.0357028,0,21
+173540,185.1443748,198.3898655,0,21
+173541,160.0934647,198.3898613,0,21
+173542,126.2216041,198.3898606,0,21
+173543,126.2216019,179.6085984,0,21
+173544,74.13091891,179.6085976,0,21
+173545,74.13091863,179.6086108,0,21
+173546,38.15881648,160.6800699,0,21
+173547,19.5481471,179.6086214,0,21
+173548,0,141.5896666,0,21
+173549,0,160.6800712,0,21
+173550,0,151.156144,0,21
+173551,0,141.5899842,0,21
+173552,0,141.5900462,0,21
+173553,0,122.3193498,0,21
+173554,0,122.319356,0,21
+173555,0,122.3193627,0,21
+173556,0,102.8443981,0,21
+173557,0,102.8444015,0,21
+173558,0,102.8444189,0,21
+173559,0,83.13237408,0,21
+173560,0,83.13237728,0,21
+173561,0,73.1733788,0,21
+173562,0,63.13541758,0,21
+173563,0,63.13541939,0,21
+173564,0,63.13542897,0,21
+173565,0,42.7764134,0,21
+173566,0,42.77641518,0,21
+173567,0,42.77641702,0,21
+173568,0,21.90569908,0,21
+173569,0,21.90569971,0,21
+173570,0,21.90570287,0,21
+173571,0,0,0,21
+173572,0,0,0,21
+173573,0,0,0,21
+173574,0,0,0,21
+173575,0,0,0,21
+173576,0,0,0,21
+173577,0,0,0,21
+173578,0,0,0,21
+173579,0,0,0,21
+173580,0,0,0,21
+173581,0,0,0,21
+173582,0,0,0,21
+173583,0,0,0,21
+173584,0,0,0,21
+173585,0,0,0,21
+173586,0,0,0,21
+173587,0,0,0,21
+173588,0,0,0,21
+173589,0,0,0,21
+173590,0,0,0,21
+173591,0,0,0,21
+173592,0,0,0,21
+173593,0,0,0,21
+173594,0,0,0,21
+173595,0,0,0,21
+173596,0,0,0,21
+173597,0,0,0,21
+173598,0,0,0,21
+173599,0,0,0,21
+173600,0,0,0,21
+173601,0,0,0,21
+173602,0,0,0,21
+173603,0,0,0,21
+173604,0,0,0,21
+173605,0,0,0,21
+173606,0,0,0,21
+173607,0,0,0,21
+173608,0,0,0,21
+173609,0,0,0,21
+173610,0,0,0,21
+173611,0,0,0,21
+173612,0,0,0,21
+173613,0,0,0,21
+173614,0,0,0,21
+173615,0,0,0,21
+173616,0,0,0,21
+173617,0,0,0,21
+173618,0,0,0,21
+173619,0,0,0,21
+173620,0,0,0,21
+173621,0,0,0,21
+173622,0,0,0,21
+173623,0,0,0,21
+173624,0,0,0,21
+173625,0,0,0,21
+173626,0,0,0,21
+173627,0,0,0,21
+173628,0,0,0,21
+173629,0,0,0,21
+173630,0,0,0,21
+173631,0,0,0,21
+173632,0,0,0,21
+173633,0,0,0,21
+173634,0,0,0,21
+173635,0,0,0,21
+173636,0,0,0,21
+173637,0,0,0,21
+173638,0,0,0,21
+173639,0,0,0,21
+173640,0,0,0,21
+173641,0,0,0,21
+173642,0,0,0,21
+173643,0,0,0,21
+173644,0,0,0,21
+173645,0,0,0,21
+173646,0,0,0,21
+173647,0,0,0,21
+173648,0,0,0,21
+173649,0,0,0,21
+173650,0,0,0,21
+173651,0,0,0,21
+173652,0,0,0,21
+173653,0,0,0,21
+173654,0,0,0,21
+173655,0,0,0,21
+173656,0,0,0,21
+173657,0,0,0,21
+173658,0,0,0,21
+173659,0,0,0,21
+173660,0,0,0,21
+173661,0,0,0,21
+173662,0,0,0,21
+173663,0,0,0,21
+173664,0,0,0,21
+173665,0,0,0,21
+173666,0,0,0,21
+173667,0,0,0,21
+173668,0,0,0,21
+173669,0,0,0,21
+173670,0,0,0,21
+173671,0,0,0,21
+173672,0,0,0,21
+173673,0,0,0,21
+173674,0,0,0,21
+173675,0,0,0,21
+173676,0,0,0,21
+173677,0,0,0,21
+173678,0,0,0,21
+173679,0,0,0,21
+173680,0,0,0,21
+173681,0,0,0,21
+173682,0,0,0,21
+173683,0,0,0,21
+173684,0,0,0,21
+173685,0,0,0,21
+173686,0,0,0,21
+173687,0,0,0,21
+173688,0,0,0,21
+173689,0,0,0,21
+173690,0,0,0,21
+173691,0,0,0,21
+173692,0,0,0,21
+173693,0,0,0,21
+173694,0,0,0,21
+173695,0,0,0,21
+173696,0,0,0,21
+173697,0,0,0,21
+173698,0,0,0,21
+173699,0,0,0,21
+173700,0,0,0,21
+173701,0,0,0,21
+173702,0,0,0,21
+173703,0,0,0,21
+173704,0,0,0,21
+173705,0,0,0,21
+173706,0,0,0,21
+173707,0,0,0,21
+173708,0,0,0,21
+173709,0,0,0,21
+173710,0,0,0,21
+173711,0,0,0,21
+173712,0,0,0,21
+173713,0,0,0,21
+173714,0,0,0,21
+173715,0,0,0,21
+173716,0,0,0,21
+173717,0,0,0,21
+173718,0,0,0,21
+173719,0,0,0,21
+173720,0,0,0,21
+173721,0,0,0,21
+173722,0,0,0,21
+173723,0,0,0,21
+173724,0,0,0,21
+173725,0,0,0,21
+173726,0,0,0,21
+173727,0,0,0,21
+173728,0,0,0,21
+173729,0,0,0,21
+173730,0,0,0,21
+173731,0,0,0,21
+173732,0,0,0,21
+173733,0,0,0,21
+173734,0,0,0,21
+173735,0,0,0,21
+173736,0,0,0,21
+173737,0,0,0,21
+173738,0,0,0,21
+173739,0,0,0,21
+173740,0,0,0,21
+173741,0,0,0,21
+173742,0,0,0,21
+173743,0,0,0,21
+173744,0,0,0,21
+173745,0,0,0,21
+173746,0,0,0,21
+173747,0,0,0,21
+173748,0,0,0,21
+173749,0,0,0,21
+173750,0,0,0,21
+173751,0,0,0,21
+173752,0,0,0,21
+173753,0,0,0,21
+173754,0,0,0,21
+173755,0,0,0,21
+173756,0,0,0,21
+173757,0,0,0,21
+173758,0,0,0,21
+173759,0,0,0,21
+173760,0,0,0,21
+173761,0,0,0,21
+173762,0,0,0,21
+173763,0,0,0,21
+173764,0,0,0,21
+173765,0,0,0,21
+173766,0,0,0,21
+173767,0,0,0,21
+173768,0,0,0,21
+173769,0,0,0,21
+173770,0,0,0,21
+173771,0,0,0,21
+173772,0,0,0,21
+173773,0,0,0,21
+173774,0,0,0,21
+173775,0,0,0,21
+173776,0,0,0,21
+173777,0,0,0,21
+173778,0,0,0,21
+173779,0,0,0,21
+173780,0,0,0,21
+173781,0,0,0,21
+173782,0,0,0,21
+173783,0,0,0,21
+173784,0,0,0,21
+173785,0,0,0,21
+173786,0,0,0,21
+173787,0,0,0,21
+173788,0,0,0,21
+173789,0,0,0,21
+173790,0,0,0,21
+173791,0,0,0,21
+173792,0,0,0,21
+173793,0,0,0,21
+173794,0,0,0,21
+173795,0,0,0,21
+173796,0,0,0,21
+173797,0,0,0,21
+173798,0,0,0,21
+173799,0,0,0,21
+173800,0,0,0,21
+173801,0,0,0,21
+173802,0,0,0,21
+173803,0,0,0,21
+173804,0,0,0,21
+173805,0,0,0,21
+173806,0,0,0,21
+173807,0,0,0,21
+173808,0,0,0,21
+173809,0,0,0,21
+173810,0,0,0,21
+173811,0,0,0,21
+173812,0,0,0,21
+173813,0,0,0,21
+173814,0,0,0,21
+173815,0,0,0,21
+173816,0,0,0,21
+173817,0,0,0,21
+173818,0,0,0,21
+173819,0,0,0,21
+173820,0,0,0,21
+173821,0,0,0,21
+173822,0,0,0,21
+173823,0,450.2371436,0,21
+173824,0,378.5742004,0,21
+173825,0,2831.286906,0,21
+173826,0,3343.164288,0,21
+173827,2157.219695,2920.869902,0,21
+173828,2408.335683,3698.072947,0,21
+173829,2157.21961,3733.24443,0,21
+173830,2657.085998,4198.253572,0,21
+173831,2903.655389,4380.988252,0,21
+173832,3026.171087,4692.485622,0,21
+173833,3390.839835,5018.925421,0,21
+173834,3511.48442,5181.279266,0,21
+173835,3870.856875,5360.08205,0,21
+173836,3870.856837,5791.395202,0,21
+173837,4226.607707,5984.936998,0,21
+173838,4344.42978,6144.128722,0,21
+173839,4578.980407,6444.362711,0,21
+173840,4812.12168,6759.509039,0,21
+173841,5043.906838,6916.396824,0,21
+173842,5159.306179,7228.84361,0,21
+173843,5389.14669,7367.958698,0,21
+173844,5617.744468,7694.295803,0,21
+173845,5925.713453,7694.294119,0,21
+173846,6093.652079,8139.808473,0,21
+173847,6361.515761,8139.806574,0,21
+173848,6490.578089,8461.896802,0,21
+173849,6763.87353,8734.040022,0,21
+173850,6986.783722,8766.216338,0,21
+173851,7130.243086,9187.976004,0,21
+173852,7375.65256,9354.508746,0,21
+173853,7619.865706,9488.788466,0,21
+173854,7753.367917,9804.027353,0,21
+173855,7995.772093,9937.379385,0,21
+173856,8229.284289,10101.97933,0,21
+173857,8368.90824,10499.35334,0,21
+173858,8616.187658,10546.39691,0,21
+173859,8831.77799,10678.26926,0,21
+173860,8877.506876,11103.36716,0,21
+173861,9306.023345,11118.90151,0,21
+173862,9472.85209,11395.61639,0,21
+173863,9791.312189,11556.71063,0,21
+173864,9941.678699,11831.6899,0,21
+173865,10152.54573,11961.07787,0,21
+173866,10301.87822,12136.19641,0,21
+173867,10616.06074,12408.93254,0,21
+173868,10764.19235,12537.27948,0,21
+173869,10868.32807,12967.39477,0,21
+173870,11119.43621,13042.85216,0,21
+173871,11326.3632,13297.78563,0,21
+173872,11472.59122,13611.57773,0,21
+173873,11678.39095,13782.59145,0,21
+173874,11911.95425,13938.54375,0,21
+173875,11940.30292,14248.89643,0,21
+173876,12362.36827,14293.08646,0,21
+173877,12376.44952,14587.54556,0,21
+173878,12506.04403,14866.71417,0,21
+173879,12837.52224,15048.47389,0,21
+173880,12837.52139,15216.50584,0,21
+173881,13281.46437,15478.76615,0,21
+173882,13080.63934,15563.4897,0,21
+173883,13509.18332,15949.88295,0,21
+173884,13522.91861,16127.8319,0,21
+173885,13749.77186,16170.64383,0,21
+173886,13962.2284,16595.02812,0,21
+173887,13975.83478,16744.26804,0,21
+173888,14187.57462,16922.14419,0,21
+173889,14425.63317,17071.82457,0,21
+173890,14412.14891,17490.47638,0,21
+173891,14649.38013,17411.20371,0,21
+173892,14859.01591,17935.67127,0,21
+173893,14872.37746,17976.19476,0,21
+173894,15192.20944,18151.27388,0,21
+173895,15192.20781,18417.51325,0,21
+173896,15426.59056,18592.92721,0,21
+173897,15523.70441,18857.80091,0,21
+173898,15743.83067,18924.57523,0,21
+173899,15756.96471,19295.8372,0,21
+173900,15963.24247,19714.81865,0,21
+173901,16181.9487,19912.05052,0,21
+173902,16194.97344,20345.31319,0,21
+173903,16508.69871,20533.85996,0,21
+173904,16617.2695,20654.95838,0,21
+173905,16643.08115,21272.44532,0,21
+173906,17024.13989,21208.9942,0,21
+173907,16900.53992,21691.11636,0,21
+173908,17381.18725,21759.2648,0,21
+173909,17344.26186,22108.00261,0,21
+173910,17595.79734,22473.19154,0,21
+173911,17621.20203,22509.06021,0,21
+173912,17836.84014,22884.89577,0,21
+173913,18059.07145,23204.44968,0,21
+173914,18093.1707,23320.13221,0,21
+173915,18298.26911,23588.37181,0,21
+173916,18519.0457,23981.99826,0,21
+173917,18561.49727,24058.86111,0,21
+173918,18780.52939,24488.19692,0,21
+173919,19217.20457,24703.66863,0,21
+173920,19119.68587,24801.69783,0,21
+173921,19413.67296,25231.17989,0,21
+173922,19561.62327,25429.74172,0,21
+173923,19691.58536,25566.27442,0,21
+173924,19948.0451,26077.5492,0,21
+173925,20164.59241,25963.11773,0,21
+173926,20152.48802,30192.86692,0,21
+173927,20468.35815,28636.77499,0,21
+173928,20688.6615,30133.32675,0,21
+173929,20587.89003,30686.25483,0,21
+173930,21170.91348,31267.20717,0,21
+173931,20852.19048,31983.04347,0,21
+173932,21457.76122,32801.01192,0,21
+173933,21353.1555,33342.26148,0,21
+173934,21714.96763,33850.22861,0,21
+173935,21626.42462,34593.00613,0,21
+173936,22034.97751,35516.29181,0,21
+173937,22058.69603,35661.63577,0,21
+173938,22329.39747,36649.28859,0,21
+173939,22442.63533,37137.14885,0,21
+173940,22583.21656,37942.91521,0,21
+173941,23366.57313,39670.98169,0,21
+173942,23782.01383,40936.64433,0,21
+173943,24057.70172,41204.4898,0,21
+173944,24103.38306,42163.54772,0,21
+173945,24542.32502,42635.26015,0,21
+173946,24925.95976,43510.69194,0,21
+173947,25234.35792,44098.66117,0,21
+173948,25551.94043,44385.41457,0,21
+173949,26166.03473,45525.27464,0,21
+173950,30781.86653,46026.20182,0,21
+173951,30221.43645,46306.37688,0,21
+173952,31593.79498,47227.18085,0,21
+173953,31924.44477,47925.00914,0,21
+173954,32716.61299,49257.06836,0,21
+173955,33187.48272,50952.24591,0,21
+173956,33854.16052,51138.88043,0,21
+173957,34392.77305,52544.97997,0,21
+173958,34927.09849,52723.49939,0,21
+173959,35542.44144,54145.07205,0,21
+173960,36046.57131,54787.67192,0,21
+173961,36589.51473,55470.46055,0,21
+173962,37182.77747,56222.37622,0,21
+173963,37500.86734,57265.74281,0,21
+173964,38219.02632,58029.32011,0,21
+173965,38634.0562,58390.43788,0,21
+173966,39017.34707,59680.15636,0,21
+173967,39730.624,60215.17842,0,21
+173968,40143.70911,61269.18807,0,21
+173969,40606.40878,61771.14343,0,21
+173970,41039.18423,62554.22246,0,21
+173971,41483.98726,63496.29328,0,21
+173972,43350.98909,63993.73803,0,21
+173973,45020.35889,64968.0257,0,21
+173974,45003.40362,65076.60909,0,21
+173975,46015.0778,66638.31696,0,21
+173976,46717.07667,66508.18669,0,21
+173977,47610.53455,67839.58165,0,21
+173978,48118.68239,68368.56905,0,21
+173979,49045.16257,69305.41704,0,21
+173980,49631.09927,69701.39014,0,21
+173981,50428.39564,70568.10875,0,21
+173982,50855.31848,71527.61545,0,21
+173983,51824.50152,72284.83418,0,21
+173984,52560.56648,72914.04848,0,21
+173985,53075.1377,73677.30386,0,21
+173986,53736.88072,74617.11949,0,21
+173987,54634.92603,75131.94786,0,21
+173988,55075.46437,75813.50769,0,21
+173989,55802.57175,76874.82352,0,21
+173990,56443.24109,77162.46137,0,21
+173991,57233.97694,78373.00819,0,21
+173992,57769.78692,78859.46012,0,21
+173993,58170.25096,79685.47889,0,21
+173994,59357.14537,80180.10441,0,21
+173995,59563.52026,81045.33676,0,21
+173996,60281.03272,82011.11329,0,21
+173997,61066.62787,82449.82023,0,21
+173998,61800.35204,83213.76901,0,21
+173999,62477.69173,84041.72398,0,21
+174000,63087.1308,84743.52829,0,21
+174001,63919.39052,85240.71156,0,21
+174002,64200.93202,90343.76461,0,21
+174003,64984.05037,89478.05527,0,21
+174004,65477.13724,91305.22344,0,21
+174005,65985.43337,92818.72874,0,21
+174006,66629.73676,515462.0042,0,21
+174007,67160.62828,95016.10138,0,21
+174008,67731.90996,96547.22026,0,21
+174009,68176.36494,97544.68803,0,21
+174010,68880.37702,98814.957,0,21
+174011,69441.78658,101231.5077,0,21
+174012,69890.1504,101832.7526,0,21
+174013,70258.96147,103979.4835,0,21
+174014,71289.48336,104930.0882,0,21
+174015,71155.63774,106486.2063,0,21
+174016,72246.93608,107708.7239,0,21
+174017,72358.86154,109464.5195,0,21
+174018,75315.34832,110549.4014,0,21
+174019,75596.277,112063.5021,0,21
+174020,76665.99664,113478.2833,0,21
+174021,77146.7989,114898.011,0,21
+174022,78325.64248,116419.7047,0,21
+174023,79107.65099,117621.723,0,21
+174024,79851.4604,119065.0784,0,21
+174025,80774.44681,120734.1294,0,21
+174026,81516.09101,121752.3618,0,21
+174027,82241.7917,123229.8083,0,21
+174028,83196.36663,124582.0788,1439.107997,21
+174029,83823.4447,125933.1176,740.3596852,21
+174030,84771.10646,127270.963,1162.52387,21
+174031,85484.11607,128340.0026,1439.198553,21
+174032,86315.86575,129856.1917,1439.23724,21
+174033,86979.2519,130629.7289,1576.429448,21
+174034,87651.7968,131858.0225,1848.717659,21
+174035,88355.8896,132561.5043,1848.781661,21
+174036,508130.6998,134033.7371,2118.626066,21
+174037,89552.94833,134821.5883,2118.710214,21
+174038,90759.25767,136057.1102,2386.382255,21
+174039,91473.1503,136826.6638,2519.525171,21
+174040,91736.63426,137875.2255,2519.644274,21
+174041,93104.23636,138732.2682,2916.109835,21
+174042,93241.53462,140217.2214,2784.594702,21
+174043,94228.69659,140677.9691,3047.678319,21
+174044,94900.46701,141709.011,3178.705242,21
+174045,95494.61677,143038.8503,3309.358026,21
+174046,96307.37625,143110.3499,3439.650053,21
+174047,96753.47064,145363.3332,3569.593907,21
+174048,97701.1648,144903.675,3699.201173,21
+174049,98032.54853,146831.292,3828.482886,21
+174050,98914.13593,147476.7538,4085.80539,21
+174051,99558.26002,148264.8763,3957.752488,21
+174052,100301.7672,149272.2764,4342.205334,21
+174053,100745.6943,149878.4285,4342.559672,21
+174054,101481.3001,151080.4141,4470.356076,21
+174055,102122.8352,151781.3149,4597.8804,21
+174056,102660.1773,152746.1033,4851.710361,21
+174057,103481.3651,153714.4659,4725.569713,21
+174058,104055.572,154334.7897,5104.920209,21
+174059,104563.614,155460.7363,5105.409498,21
+174060,105145.3172,156445.3536,5231.677045,21
+174061,0,0,0,21
+174062,0,0,0,21
+174063,434213.1973,0,0,21
+174064,0,0,0,21
+174065,0,0,0,21
+174066,0,368506.2755,919176.598,21
+174067,339583.7466,0,0,21
+174068,0,0,0,21
+174069,0,0,0,21
+174070,0,0,0,21
+174071,0,0,0,21
+174072,0,0,0,21
+174073,0,0,0,21
+174074,0,0,0,21
+174075,0,0,0,21
+174076,0,0,0,21
+174077,0,0,0,21
+174078,0,0,0,21
+174079,0,0,0,21
+174080,0,0,0,21
+174081,0,0,0,21
+174082,0,0,0,21
+174083,0,0,0,21
+174084,0,0,0,21
+174085,0,0,0,21
+174086,0,0,0,21
+174087,0,258.0523626,0,21
+174088,0,0,0,21
+174089,0,0,0,21
+174090,0,0,0,21
+174091,0,0,0,21
+174092,0,0,0,21
+174093,0,0,0,21
+174094,0,0,0,21
+174095,0,81.87690457,0,21
+174096,0,0,0,21
+174097,0,0,0,21
+174098,0,0,0,21
+174099,0,118.351487,0,21
+174100,0,0,0,21
+174101,0,368470.936,898818.8469,21
+174102,0,0,0,21
+174103,339564.6452,110.9543099,0,21
+174104,0,0,0,21
+174105,0,0,0,21
+174106,0,0,0,21
+174107,0,110.243674,0,21
+174108,0,0,0,21
+174109,0,0,0,21
+174110,0,0,0,21
+174111,0,121.272233,0,21
+174112,0,0,0,21
+174113,0,0,0,21
+174114,0,0,0,21
+174115,0,16.5491253,0,21
+174116,0,0,0,21
+174117,0,0,0,21
+174118,0,0,0,21
+174119,0,18.24364647,0,21
+174120,0,0,0,15.6
+174121,0,0,0,15.6
+174122,0,0,0,15.6
+174123,0,0,0,15.6
+174124,0,0,0,15.6
+174125,0,0,0,15.6
+174126,0,0,0,15.6
+174127,0,0,0,15.6
+174128,0,0,0,15.6
+174129,0,0,0,15.6
+174130,0,0,0,15.6
+174131,0,72.17888775,0,15.6
+174132,0,0,0,15.6
+174133,0,0,0,15.6
+174134,0,437404.2463,0,15.6
+174135,0,0,0,15.6
+174136,0,368454.9521,877296.1738,15.6
+174137,0,0,0,15.6
+174138,0,0,0,15.6
+174139,0,0,0,15.6
+174140,339556.6272,0,0,15.6
+174141,0,0,0,15.6
+174142,0,0,0,15.6
+174143,0,0,0,15.6
+174144,0,0,0,15.6
+174145,0,0,0,15.6
+174146,0,0,0,15.6
+174147,0,0,0,15.6
+174148,0,0,0,15.6
+174149,0,436783.1576,0,15.6
+174150,0,0,0,15.6
+174151,0,0,0,15.6
+174152,0,0,0,15.6
+174153,0,0,0,15.6
+174154,0,0,0,15.6
+174155,0,0,0,15.6
+174156,0,0,0,15.6
+174157,0,0,0,15.6
+174158,0,0,0,15.6
+174159,0,0,0,15.6
+174160,0,0,0,15.6
+174161,0,0,0,15.6
+174162,0,0,0,15.6
+174163,0,0,0,15.6
+174164,0,436499.4104,0,15.6
+174165,0,0,0,15.6
+174166,0,0,0,15.6
+174167,0,0,0,15.6
+174168,0,0,0,15.6
+174169,0,0,0,15.6
+174170,0,0,0,15.6
+174171,0,368463.9068,859884.3546,15.6
+174172,0,0,0,15.6
+174173,0,0,0,15.6
+174174,0,0,0,15.6
+174175,0,0,0,15.6
+174176,0,0,0,15.6
+174177,339557.871,0,0,15.6
+174178,0,0,0,15.6
+174179,0,436275.9841,0,15.6
+174180,0,0,0,15.6
+174181,0,0,0,15.6
+174182,0,0,0,15.6
+174183,0,0,0,15.6
+174184,0,0,0,15.6
+174185,0,0,0,15.6
+174186,0,0,0,15.6
+174187,0,0,0,15.6
+174188,0,0,0,15.6
+174189,0,0,0,15.6
+174190,0,0,0,15.6
+174191,0,0,0,15.6
+174192,0,0,0,15.6
+174193,0,0,0,15.6
+174194,0,0,0,15.6
+174195,0,0,0,15.6
+174196,0,0,0,15.6
+174197,0,0,0,15.6
+174198,0,0,0,15.6
+174199,0,0,0,15.6
+174200,0,0,0,15.6
+174201,0,0,0,15.6
+174202,0,0,0,15.6
+174203,0,0,0,15.6
+174204,0,0,0,15.6
+174205,0,0,0,15.6
+174206,0,0,0,15.6
+174207,0,368464.6882,843740.6333,15.6
+174208,0,0,0,15.6
+174209,0,2.886262781,0,15.6
+174210,0,0,0,15.6
+174211,0,75.21852595,0,15.6
+174212,0,0,0,15.6
+174213,0,0,0,15.6
+174214,339572.9356,0,0,15.6
+174215,0,0,0,15.6
+174216,0,67.55701514,0,15.6
+174217,0,0,0,15.6
+174218,0,0,0,15.6
+174219,0,0,0,15.6
+174220,0,0,0,15.6
+174221,0,0,0,15.6
+174222,0,0,0,15.6
+174223,0,61.45652206,0,15.6
+174224,0,0,0,15.6
+174225,0,0,0,15.6
+174226,0,0,0,15.6
+174227,0,3.690972604,0,15.6
+174228,0,0,0,15.6
+174229,0,17.90012158,0,15.6
+174230,0,0,0,15.6
+174231,0,0,0,15.6
+174232,0,0,0,15.6
+174233,0,121.6961834,0,15.6
+174234,0,0,0,15.6
+174235,0,0,0,15.6
+174236,0,0,0,15.6
+174237,0,118.8329945,0,15.6
+174238,0,0,0,15.6
+174239,0,0,0,15.6
+174240,0,0,0,15.6
+174241,0,121.3273443,0,15.6
+174242,0,0,0,15.6
+174243,0,368462.8269,826655.8582,15.6
+174244,0,0,0,15.6
+174245,0,116.0265659,0,15.6
+174246,0,0,0,15.6
+174247,0,0,0,15.6
+174248,0,0,0,15.6
+174249,0,105.075413,0,15.6
+174250,0,0,0,15.6
+174251,339594.8676,0,0,15.6
+174252,0,0,0,15.6
+174253,0,110.7758984,0,15.6
+174254,0,0,0,15.6
+174255,0,0,0,15.6
+174256,0,0,0,15.6
+174257,0,113.4899491,0,15.6
+174258,0,0,0,15.6
+174259,0,0,0,15.6
+174260,0,0,0,15.6
+174261,0,113.2770497,0,15.6
+174262,0,0,0,15.6
+174263,0,0,0,15.6
+174264,0,0,0,15.6
+174265,0,111.0522736,0,15.6
+174266,0,0,0,15.6
+174267,0,0,0,15.6
+174268,0,0,0,15.6
+174269,0,110.8748231,0,15.6
+174270,0,0,0,15.6
+174271,0,0,0,15.6
+174272,0,0,0,15.6
+174273,0,111.3089652,0,15.6
+174274,0,0,0,15.6
+174275,0,0,0,15.6
+174276,0,0,0,15.6
+174277,0,113.5685933,0,15.6
+174278,0,0,0,15.6
+174279,0,368461.7038,813903.8888,15.6
+174280,0,0,0,15.6
+174281,0,111.31721,0,15.6
+174282,0,0,0,15.6
+174283,0,0,0,15.6
+174284,0,0,0,15.6
+174285,0,104.241838,0,15.6
+174286,0,0,0,15.6
+174287,0,0,0,15.6
+174288,0,0,0,15.6
+174289,339627.8325,114.8152695,0,15.6
+174290,0,0,0,15.6
+174291,0,0,0,15.6
+174292,0,0,0,15.6
+174293,0,121.907612,0,15.6
+174294,0,0,0,15.6
+174295,0,0,0,15.6
+174296,0,0,0,15.6
+174297,0,125.2117695,0,15.6
+174298,0,0,0,15.6
+174299,0,0,0,15.6
+174300,0,0,0,15.6
+174301,0,124.6724903,0,15.6
+174302,0,0,0,15.6
+174303,0,0,0,15.6
+174304,0,0,0,15.6
+174305,0,123.7765232,0,15.6
+174306,0,0,0,15.6
+174307,0,0,0,15.6
+174308,0,0,0,15.6
+174309,0,120.6968643,0,15.6
+174310,0,0,0,15.6
+174311,0,0,0,15.6
+174312,0,0,0,15.6
+174313,0,117.1474947,0,15.6
+174314,0,0,0,15.6
+174315,0,368461.0235,801719.7131,15.6
+174316,0,0,0,15.6
+174317,0,109.6633854,0,15.6
+174318,0,0,0,15.6
+174319,0,0,0,15.6
+174320,0,0,0,15.6
+174321,0,97.00812825,0,15.6
+174322,0,0,0,15.6
+174323,0,0,0,15.6
+174324,0,0,0,15.6
+174325,0,102.519467,0,15.6
+174326,0,0,0,15.6
+174327,339637.069,0,0,15.6
+174328,0,0,0,15.6
+174329,0,105.0182804,0,15.6
+174330,0,0,0,15.6
+174331,0,0,0,15.6
+174332,0,0,0,15.6
+174333,0,105.4581529,0,15.6
+174334,0,0,0,15.6
+174335,0,0,0,15.6
+174336,0,0,0,15.6
+174337,0,106.75867,0,15.6
+174338,0,0,0,15.6
+174339,0,0,0,15.6
+174340,0,0,0,15.6
+174341,0,108.9327059,0,15.6
+174342,0,0,0,15.6
+174343,0,0,0,15.6
+174344,0,0,0,15.6
+174345,0,111.0979613,0,15.6
+174346,0,0,0,15.6
+174347,0,0,0,15.6
+174348,0,0,0,15.6
+174349,0,113.2019247,0,15.6
+174350,0,0,0,15.6
+174351,0,368460.2485,787937.9539,15.6
+174352,0,0,0,15.6
+174353,0,110.9742249,0,15.6
+174354,0,0,0,15.6
+174355,0,0,0,15.6
+174356,0,0,0,15.6
+174357,0,103.6818478,0,15.6
+174358,0,0,0,15.6
+174359,0,0,0,15.6
+174360,0,0,0,15.6
+174361,0,112.4494169,0,15.6
+174362,0,0,0,15.6
+174363,0,0,0,15.6
+174364,0,0,0,15.6
+174365,339638.8495,116.8187324,0,15.6
+174366,0,0,0,15.6
+174367,0,0,0,15.6
+174368,0,0,0,15.6
+174369,0,117.0228662,0,15.6
+174370,0,0,0,15.6
+174371,0,0,0,15.6
+174372,0,0,0,15.6
+174373,0,114.8120689,0,15.6
+174374,0,0,0,15.6
+174375,0,0,0,15.6
+174376,0,0,0,15.6
+174377,0,111.6612336,0,15.6
+174378,0,0,0,15.6
+174379,0,0,0,15.6
+174380,0,0,0,15.6
+174381,0,108.6820842,0,15.6
+174382,0,0,0,15.6
+174383,0,0,0,15.6
+174384,0,0,0,15.6
+174385,0,105.0047405,0,15.6
+174386,0,0,0,15.6
+174387,0,368460.1357,778332.3212,15.6
+174388,0,0,0,15.6
+174389,0,98.28608213,0,15.6
+174390,0,0,0,15.6
+174391,0,0,0,15.6
+174392,0,0,0,15.6
+174393,0,78.96736595,0,15.6
+174394,0,0,0,15.6
+174395,0,0,0,15.6
+174396,0,0,0,15.6
+174397,0,99.06338801,0,15.6
+174398,0,0,0,15.6
+174399,0,0,0,15.6
+174400,0,0,0,15.6
+174401,0,95.95959997,0,15.6
+174402,0,0,0,15.6
+174403,339658.0194,0,0,15.6
+174404,0,0,0,15.6
+174405,0,100.1420683,0,15.6
+174406,0,0,0,15.6
+174407,0,0,0,15.6
+174408,0,0,0,15.6
+174409,0,103.1450067,0,15.6
+174410,0,0,0,15.6
+174411,0,0,0,15.6
+174412,0,0,0,15.6
+174413,0,105.3851753,0,15.6
+174414,0,0,0,15.6
+174415,0,0,0,15.6
+174416,0,0,0,15.6
+174417,0,107.7197798,0,15.6
+174418,0,0,0,15.6
+174419,0,0,0,15.6
+174420,0,0,0,15.6
+174421,0,73.56250618,0,15.6
+174422,0,0,0,15.6
+174423,0,368458.7943,769218.7671,15.6
+174424,0,434804.6829,0,15.6
+174425,0,0,0,15.6
+174426,0,0,0,15.6
+174427,0,0,0,15.6
+174428,0,0,0,15.6
+174429,0,0,0,15.6
+174430,0,0,0,15.6
+174431,0,0,0,15.6
+174432,0,0,0,15.6
+174433,0,0,0,15.6
+174434,0,0,0,15.6
+174435,0,0,0,15.6
+174436,0,0,0,15.6
+174437,0,31349.70096,0,15.6
+174438,0,8062.90092,0,15.6
+174439,0,10854.74481,0,15.6
+174440,339663.0468,16244.49437,0,15.6
+174441,0,14782.12459,0,15.6
+174442,0,14239.16372,0,15.6
+174443,0,14489.96333,0,15.6
+174444,0,14616.33547,0,15.6
+174445,0,14553.31692,0,15.6
+174446,0,14641.5541,0,15.6
+174447,0,14626.81182,0,15.6
+174448,0,14656.64511,0,15.6
+174449,0,14664.55039,0,15.6
+174450,0,449180.179,0,15.6
+174451,0,14702.38947,0,15.6
+174452,0,14742.48762,0,15.6
+174453,0,14816.13118,0,15.6
+174454,0,14765.18134,0,15.6
+174455,0,14862.43244,0,15.6
+174456,0,14830.27131,0,15.6
+174457,0,14885.08143,758796.847,15.6
+174458,0,14907.88049,0,15.6
+174459,0,383356.2327,0,15.6
+174460,0,14962.54118,0,15.6
+174461,0,14995.15345,0,15.6
+174462,0,448773.5351,0,15.6
+174463,0,15020.12987,0,15.6
+174464,0,15078.1986,0,15.6
+174465,0,15078.19674,0,15.6
+174466,0,15132.99213,0,15.6
+174467,0,0,0,15.6
+174468,0,0,0,15.6
+174469,0,0,0,15.6
+174470,0,0,0,15.6
+174471,0,0,0,15.6
+174472,0,0,0,15.6
+174473,0,433335.4876,0,15.6
+174474,0,0,0,15.6
+174475,339650.3056,0,0,15.6
+174476,0,0,0,15.6
+174477,0,0,0,15.6
+174478,0,0,0,15.6
+174479,0,0,0,15.6
+174480,0,40197.53201,0,17.8
+174481,89044.39861,865205.9696,0,17.8
+174482,64248.3606,199940.9475,0,17.8
+174483,31741.06118,184538.6946,0,17.8
+174484,17240.53862,305864.6044,0,17.8
+174485,34129.69369,713950.9979,0,17.8
+174486,27414.11598,264884.8209,0,17.8
+174487,27134.04634,267471.7047,0,17.8
+174488,27126.15528,259789.3617,0,17.8
+174489,26999.43754,259635.077,0,17.8
+174490,26867.48939,258887.0595,0,17.8
+174491,28951.52377,262245.037,751911.6943,17.8
+174492,28518.19568,267157.3139,0,17.8
+174493,28154.89368,262338.8018,0,17.8
+174494,28309.8482,632663.0369,0,17.8
+174495,28236.1272,263862.1116,0,17.8
+174496,28167.5904,263806.9862,0,17.8
+174497,28123.72024,264094.6488,0,17.8
+174498,28049.02974,263380.9036,0,17.8
+174499,28017.16839,263514.0572,0,17.8
+174500,28713.20855,263937.9287,0,17.8
+174501,28195.37944,263256.8952,0,17.8
+174502,28297.94371,263337.3494,0,17.8
+174503,28279.39519,263662.012,0,17.8
+174504,28211.67419,263718.9039,0,17.8
+174505,28182.48814,263335.0726,0,17.8
+174506,28169.50255,263355.3043,0,17.8
+174507,28105.19931,697769.6659,0,17.8
+174508,28110.93825,242879.3071,0,17.8
+174509,28015.12049,237802.7108,0,17.8
+174510,367682.3403,194928.8653,0,17.8
+174511,2448.636281,0,0,17.8
+174512,2473.966607,0,0,17.8
+174513,2473.966622,88192.51397,0,17.8
+174514,2500.303814,6487.237474,0,17.8
+174515,77274.98885,35473.01953,0,17.8
+174516,16180.69525,32656.80761,0,17.8
+174517,20926.32296,31272.66116,0,17.8
+174518,29175.65707,40412.2971,0,17.8
+174519,25039.61139,38359.77847,0,17.8
+174520,25232.02583,37498.24852,0,17.8
+174521,25194.24559,38059.71519,0,17.8
+174522,25114.44595,37925.86983,0,17.8
+174523,25174.76198,37887.02784,0,17.8
+174524,25022.53745,37696.90298,0,17.8
+174525,25075.29668,37758.18653,745245.8219,17.8
+174526,24987.3122,37420.63669,0,17.8
+174527,24959.56788,37432.7033,0,17.8
+174528,24952.94117,37359.93109,0,17.8
+174529,24883.01853,839703.9385,0,17.8
+174530,24860.57508,38655.41743,0,17.8
+174531,24821.70836,42431.02891,0,17.8
+174532,24796.98467,39388.49592,0,17.8
+174533,24796.98395,40217.83133,0,17.8
+174534,24689.02781,40132.22321,0,17.8
+174535,24742.05782,40065.38298,0,17.8
+174536,26894.55475,39989.52801,0,17.8
+174537,25831.37323,39805.1215,0,17.8
+174538,26064.4591,39867.67274,0,17.8
+174539,26174.50201,39658.48037,0,17.8
+174540,26289.50346,39574.19884,0,20
+174541,1242057.835,1141027.54,382325.1486,20
+174542,489529.882,184871.3024,34.01576094,20
+174543,102835.8479,171618.1887,510.5033533,20
+174544,226306.0302,290484.4796,1166.7309,20
+174545,264704.5515,265901.4335,22845.32286,20
+174546,251990.6519,261577.0447,37538.355,20
+174547,237918.6588,252954.8739,20046.38976,20
+174548,241319.7226,253483.5909,27271.91136,20
+174549,241669.2123,251911.2947,28158.88226,20
+174550,240966.3155,250567.2209,27927.94291,20
+174551,240707.3259,683026.2572,28677.68476,20
+174552,240211.3247,247483.3543,30137.34754,20
+174553,240271.8555,245613.1637,30883.23342,20
+174554,238230.9852,244078.8331,30587.00172,20
+174555,237885.3839,243014.9956,31298.15875,20
+174556,237885.6278,241295.718,31351.42149,20
+174557,237127.3092,239699.7239,31927.57861,20
+174558,237210.6687,238613.1387,32118.09129,20
+174559,236760.5781,237089.2769,32563.60732,20
+174560,236750.7763,235245.0241,32782.92645,20
+174561,236588.5659,234546.4752,32960.7564,20
+174562,235831.5926,232551.9335,33556.1637,20
+174563,236354.271,231705.4602,33581.9951,20
+174564,236142.9886,229688.0622,33964.4287,20
+174565,235230.4394,229355.8359,34459.85722,20
+174566,235587.6485,227471.5831,34435.80324,20
+174567,235408.5344,226869.6292,34768.80854,20
+174568,235315.648,225485.7639,35204.18428,20
+174569,234714.5737,224490.1325,35290.78882,20
+174570,235816.05,224100.639,35794.54124,20
+174571,235367.6017,222151.0529,35803.05087,20
+174572,234923.6318,220877.3322,36446.38674,20
+174573,235123.2873,219831.5057,37483.53831,20
+174574,234606.4786,218496.936,37691.41745,20
+174575,234541.7928,217724.3312,38020.83266,20
+174576,234117.0116,216133.688,38737.82097,20
+174577,234378.8475,217229.144,39127.29468,20
+174578,233519.6079,216953.6182,39152.32699,20
+174579,233915.2624,215217.5965,39846.95394,20
+174580,233204.1335,214475.491,40121.10753,20
+174581,233215.8156,213050.189,40414.11955,20
+174582,232880.4651,211654.1575,40937.50739,20
+174583,232674.8563,211298.6212,41384.39508,20
+174584,232980.8642,211060.1266,41590.57866,20
+174585,231952.8561,210750.9737,41953.84636,20
+174586,232410.2646,209970.9973,42402.59074,20
+174587,231956.5466,210463.1012,42680.67379,20
+174588,231438.5315,209328.5225,42987.08108,20
+174589,231862.0967,209775.8087,43401.49278,20
+174590,230977.039,208930.9341,43677.19842,20
+174591,231180.9889,208770.4022,44301.13045,20
+174592,231011.5274,208862.5086,44077.4908,20
+174593,230726.4701,208365.3322,45114.03281,20
+174594,230412.6873,208161.0012,42665.39022,20
+174595,230295.9282,207848.4856,43136.0001,20
+174596,230122.3787,208266.4797,43022.25803,20
+174597,230064.9073,207308.9841,43069.16431,20
+174598,229607.1246,207489.0642,43601.50421,20
+174599,229719.6384,207358.4463,43731.24456,20
+174600,229221.7727,640307.6389,43837.70538,21
+174601,222627.2807,220662.8674,36231.65183,21
+174602,221563.161,217406.304,35709.86393,21
+174603,220664.4214,215543.3187,35642.87695,21
+174604,219939.8708,212958.7101,36233.02813,21
+174605,219611.213,211261.4045,36191.1916,21
+174606,218728.3369,209008.6503,36374.55907,21
+174607,218582.6269,207770.7638,36802.7504,21
+174608,217825.5633,204825.6635,36984.04164,21
+174609,217484.3854,203943.913,37195.06456,21
+174610,216676.9073,201311.2628,37604.38035,21
+174611,216480.6934,200079.946,37806.3471,21
+174612,215653.5778,197630.6931,38151.14813,21
+174613,215444.7994,196190.5253,38406.29903,21
+174614,214841.9901,195181.5016,38612.47857,21
+174615,214207.323,195188.3326,39108.24621,21
+174616,213836.8299,194472.5335,39230.30644,21
+174617,213276.6183,193932.7846,39797.41031,21
+174618,212852.7061,193499.0712,39708.33161,21
+174619,212396.2981,192937.8855,40266.41853,21
+174620,211851.4962,192114.4393,40506.88019,21
+174621,211260.7611,191850.9053,40413.28029,21
+174622,210955.3223,191472.7962,40526.27927,21
+174623,210472.941,190420.6775,41096.5704,21
+174624,209889.492,190278.0225,41201.9346,21
+174625,209286.2601,189968.5288,41620.44124,21
+174626,209285.3955,188824.5869,42004.6515,21
+174627,208457.7489,188235.0727,42055.89361,21
+174628,208157.1931,187951.6363,42513.89331,21
+174629,207324.2161,186661.7389,42680.46676,21
+174630,207075.8906,186547.5608,43304.46918,21
+174631,206809.7785,185917.7376,43246.11066,21
+174632,205863.0111,184381.8129,43205.28437,21
+174633,205122.4122,185035.6312,43835.03483,21
+174634,204825.4342,183450.1278,43783.71269,21
+174635,204178.6427,182834.7581,44163.66952,21
+174636,203215.5665,182514.7951,44152.3643,21
+174637,202908.0293,181750.1398,44476.90091,21
+174638,202496.899,181009.1108,44381.1978,21
+174639,201442.3858,180633.4339,44869.02464,21
+174640,200879.3986,179661.3024,44936.43981,21
+174641,200235.4693,179654.7347,44997.36474,21
+174642,199345.7709,179087.1064,45143.51066,21
+174643,199144.0449,178684.1571,45774.74732,21
+174644,198072.7388,178694.394,45070.67354,21
+174645,197315.3082,177931.4351,46135.64141,21
+174646,196979.6906,177530.3209,45826.03746,21
+174647,196362.8688,177352.3537,46043.6056,21
+174648,195494.4416,177104.1471,46403.00122,21
+174649,194669.1055,176349.2542,46588.72192,21
+174650,194080.001,176022.8781,47267.73393,21
+174651,193374.7085,175797.9329,47390.9758,21
+174652,192878.4276,175020.0799,47551.69771,21
+174653,192229.3607,174436.3981,47674.80774,21
+174654,191355.6062,174236.508,48242.69205,21
+174655,191217.8287,173866.6374,48312.34162,21
+174656,190143.2445,172726.5458,48620.88501,21
+174657,189611.8362,173099.5121,48769.7453,21
+174658,189031.1034,172189.9422,48957.46078,21
+174659,188428.1427,171969.8317,49360.39957,21
+174660,187536.2193,171083.0104,49508.43336,21
+174661,104474.185,101194.5839,8387.568708,21
+174662,99801.18826,95139.92916,7100.828875,21
+174663,97927.56866,94593.41331,6415.695041,21
+174664,511138.5295,93387.15665,6353.64669,21
+174665,94664.34704,92014.99231,5627.988121,21
+174666,93411.09127,90903.0941,5451.839287,21
+174667,91649.54706,90467.10148,4994.614629,21
+174668,90672.99506,88908.24807,4683.485513,21
+174669,88721.26624,88438.26328,4370.525975,21
+174670,87607.91547,87354.53094,4039.101621,21
+174671,86481.07151,86294.77494,3722.071056,21
+174672,84768.87123,85894.85774,3417.672858,21
+174673,83655.49382,84122.82406,3064.34633,21
+174674,82380.08228,83819.90685,2771.652451,21
+174675,80734.76918,82564.01938,2551.213997,21
+174676,79856.15872,82207.82069,2129.190063,21
+174677,77982.3661,80833.78187,1887.514629,21
+174678,77170.9232,80613.43738,1582.564188,21
+174679,75811.93568,79699.1035,1237.574989,21
+174680,74194.98221,79398.40845,1018.864039,21
+174681,73325.53632,78610.83743,843.774858,21
+174682,71670.45287,78534.46729,777.3559719,21
+174683,70368.83101,77081.11971,743.3887869,21
+174684,69410.81713,77315.24654,674.991044,21
+174685,68023.73781,76319.42145,658.4770778,21
+174686,66563.98636,75539.92098,589.2939851,21
+174687,65401.45725,74927.00578,554.3923743,21
+174688,64194.34236,74436.50104,520.9378625,21
+174689,62869.04898,73815.31,457.4830822,21
+174690,61584.44732,73063.25193,414.121373,21
+174691,60310.16256,72405.61567,370.3780867,21
+174692,59193.21722,72116.26014,326.0827047,21
+174693,58036.27085,71119.36685,291.6052762,21
+174694,56610.20692,70719.18445,256.8478859,21
+174695,55608.30446,69865.19684,204.1184943,21
+174696,54397.0738,69772.89707,186.3640357,21
+174697,52833.0061,68219.09778,141.5182346,21
+174698,51034.38905,68067.81806,105.0793747,21
+174699,49381.75417,67089.74841,20.16126358,21
+174700,48708.40919,66749.45719,0,21
+174701,46820.37341,65806.10381,0,21
+174702,46286.46209,65307.91505,0,21
+174703,44771.70411,65009.08926,0,21
+174704,43653.4725,64049.16581,0,21
+174705,42789.56541,63939.0043,0,21
+174706,41385.56296,63073.97191,0,21
+174707,40275.52327,62614.32183,0,21
+174708,39189.8673,61930.83471,0,21
+174709,38156.43148,61534.78081,0,21
+174710,36796.73246,60813.94152,0,21
+174711,35857.72053,60587.45954,0,21
+174712,34665.98189,59662.06801,0,21
+174713,33686.08674,59418.35874,0,21
+174714,33105.27864,58996.82542,0,21
+174715,32251.42155,58303.60754,0,21
+174716,31027.83148,58018.65145,0,21
+174717,29773.63214,57347.38797,0,21
+174718,29134.95674,56974.32807,0,21
+174719,28488.24771,56189.72137,0,21
+174720,28049.44925,55676.22769,0,21
+174721,27167.15749,55588.44586,0,21
+174722,26541.505,55375.89237,0,21
+174723,25840.787,54817.31823,0,21
+174724,25313.06673,54940.31356,0,21
+174725,24508.32502,54466.72404,0,21
+174726,24058.54444,54052.17715,0,21
+174727,23061.79982,54089.79126,0,21
+174728,22778.8148,53286.46929,0,21
+174729,21904.73095,53523.87968,0,21
+174730,21529.17142,52613.06962,0,21
+174731,20593.70205,52978.26652,0,21
+174732,20181.00948,52304.04746,0,21
+174733,19508.39803,52134.51996,0,21
+174734,18829.61871,51959.9813,0,21
+174735,18366.12424,51411.73954,0,21
+174736,18051.15505,51293.49474,0,21
+174737,18056.62019,50866.35199,0,21
+174738,17661.97303,50809.69832,0,21
+174739,17419.4038,49934.64805,0,21
+174740,17330.61186,50138.1238,0,21
+174741,16963.32192,49818.94875,0,21
+174742,16713.14161,49083.70854,0,21
+174743,16747.91631,49366.82084,0,21
+174744,16242.22381,48406.35522,0,21
+174745,16146.36866,48664.36526,0,21
+174746,16015.22325,47652.72266,0,21
+174747,15694.1983,47863.87637,0,21
+174748,15486.28219,47080.50219,0,21
+174749,15275.76961,46921.14318,0,21
+174750,15126.42524,46465.22826,0,21
+174751,14823.31164,45858.73228,0,21
+174752,14421.48222,45783.92963,0,21
+174753,14071.00597,44937.58322,0,21
+174754,13875.7018,44879.59429,0,21
+174755,13316.84886,44019.6908,0,21
+174756,13134.57471,43775.24231,0,21
+174757,12755.08066,43093.70246,0,21
+174758,12383.5913,42657.79361,0,21
+174759,11982.71185,42163.04989,0,21
+174760,11725.89537,41316.22838,0,21
+174761,11310.75015,41247.11117,0,21
+174762,11200.93629,40147.05366,0,21
+174763,10760.27708,40011.55414,0,21
+174764,10549.39273,39216.60198,0,21
+174765,10137.77033,38263.39629,0,21
+174766,9891.161008,37860.68755,0,21
+174767,9564.789765,37331.58272,0,21
+174768,9339.866892,36644.30183,0,21
+174769,8930.211552,35626.44821,0,21
+174770,8783.273881,34993.4735,0,21
+174771,8230.603786,34539.73288,0,21
+174772,8127.717391,33555.15098,0,21
+174773,7652.004169,32649.72389,0,21
+174774,7429.390209,31892.72202,0,21
+174775,7101.210691,31369.10621,0,21
+174776,6734.058738,30095.45677,0,21
+174777,6389.254205,29677.53113,0,21
+174778,6149.08597,28396.56783,0,21
+174779,5812.275461,27731.62491,0,21
+174780,5434.709343,26847.00402,0,21
+174781,4733.060918,24821.1782,0,21
+174782,4520.935222,24172.45998,0,21
+174783,4257.571729,23022.16462,0,21
+174784,3940.781178,21764.68844,0,21
+174785,3557.469392,21259.21009,0,21
+174786,3479.035965,20985.87879,0,21
+174787,2957.864865,20644.78115,0,21
+174788,2886.247884,20514.78285,0,21
+174789,2530.578511,20301.28244,0,21
+174790,2317.791278,20025.81086,0,21
+174791,2009.937296,20058.03934,0,21
+174792,1808.917509,19649.34188,0,21
+174793,1583.979062,19472.61122,0,21
+174794,1377.702213,19516.50026,0,21
+174795,1319.992741,18947.2982,0,21
+174796,1280.528901,19053.10028,0,21
+174797,1280.528849,18664.74818,0,21
+174798,1227.547469,18545.07794,0,21
+174799,1214.235971,18178.88542,0,21
+174800,1200.897617,18280.22089,0,21
+174801,1147.271467,17658.46184,0,21
+174802,1147.27142,17771.96059,0,21
+174803,1120.29143,17499.62877,0,21
+174804,1093.197642,17265.66768,0,21
+174805,1065.988039,16972.46651,0,21
+174806,1038.660502,16863.48706,0,21
+174807,1011.212806,16696.36654,0,21
+174808,997.4431496,16649.59648,0,21
+174809,955.9474184,16521.83525,0,21
+174810,955.9473816,16354.11753,0,21
+174811,900.1714854,16346.73728,0,21
+174812,914.1644847,16305.38813,0,21
+174813,872.0849932,16043.89319,0,21
+174814,872.0849608,16009.79842,0,21
+174815,843.8620666,16000.3378,0,21
+174816,829.6984069,15726.23195,0,21
+174817,801.2645338,15682.06258,0,21
+174818,801.2645049,15682.04557,0,21
+174819,772.6854202,15666.42345,0,21
+174820,758.3401834,15621.242,0,21
+174821,729.5357609,15615.93182,0,21
+174822,729.5357358,15342.66878,0,21
+174823,700.5756202,15441.40019,0,21
+174824,700.5755965,15169.56905,0,21
+174825,656.8329099,15263.37801,0,21
+174826,671.4549715,15048.69423,0,21
+174827,627.4616433,14994.87231,0,21
+174828,627.4616235,14900.72772,0,21
+174829,612.7109786,14725.42301,0,21
+174830,583.0757002,14873.63421,0,21
+174831,583.0756825,14603.90433,0,21
+174832,553.2559442,14603.88502,0,21
+174833,538.2745529,14455.02088,0,21
+174834,538.2745375,14455.00653,0,21
+174835,508.1636023,14427.79646,0,21
+174836,493.0318058,14197.25821,0,21
+174837,477.8475235,14156.33243,0,21
+174838,462.6094566,14183.63664,0,21
+174839,462.6094447,13883.88444,0,21
+174840,431.9663372,14033.91346,0,21
+174841,447.3161959,14019.66723,0,21
+174842,431.966313,14020.20958,0,21
+174843,416.5581987,13883.86873,0,21
+174844,401.090152,13856.37065,0,21
+174845,385.5603414,13473.32084,0,21
+174846,369.966788,13596.64137,0,21
+174847,354.3073466,13308.28067,0,21
+174848,338.5796831,13322.13812,0,21
+174849,322.7812472,13156.72166,0,21
+174850,306.9092404,13046.60579,0,21
+174851,290.9605763,12880.57377,0,21
+174852,290.9605708,12756.07937,0,21
+174853,258.819189,12728.10966,0,21
+174854,242.618357,12478.39401,0,21
+174855,242.6183531,12450.3274,0,21
+174856,209.932005,12199.62905,0,21
+174857,209.9320021,12296.93766,0,21
+174858,193.4345294,11905.6462,0,21
+174859,176.8245767,12017.47745,0,21
+174860,176.8245746,11751.10423,0,21
+174861,143.2299663,11610.42382,0,21
+174862,143.2299649,11581.95745,0,21
+174863,126.2214893,11455.21345,0,21
+174864,109.05126,11313.93593,0,21
+174865,109.0512592,11030.50749,0,21
+174866,82.9431588,11158.04663,0,21
+174867,74.13087929,10873.97754,0,21
+174868,65.25490655,10859.57561,0,21
+174869,47.28018233,10603.14499,0,21
+174870,38.15880532,10574.26007,0,21
+174871,19.54814368,10416.64598,0,21
+174872,19.54814364,10158.54248,0,21
+174873,0,10129.43994,0,21
+174874,0,9855.592882,0,21
+174875,0,9580.543763,0,21
+174876,0,9666.87599,0,21
+174877,0,9289.587539,0,21
+174878,0,9099.319104,0,21
+174879,0,9114.110986,0,21
+174880,0,8673.932688,0,21
+174881,0,8659.051036,0,21
+174882,0,8378.560806,0,21
+174883,0,8348.47393,0,21
+174884,0,7948.287085,0,21
+174885,0,8021.738426,0,21
+174886,0,7798.823988,0,21
+174887,0,7887.899158,0,21
+174888,0,7603.939789,0,21
+174889,0,7453.824319,0,21
+174890,0,7303.311478,0,21
+174891,0,7137.137573,0,21
+174892,0,6849.309901,0,21
+174893,0,6833.98904,0,21
+174894,0,6529.131481,0,21
+174895,0,6513.708447,0,21
+174896,0,6222.501302,0,21
+174897,0,6068.498704,0,21
+174898,0,5882.864509,0,21
+174899,0,5619.217494,0,21
+174900,0,5572.258958,0,21
+174901,0,9578.886221,0,21
+174902,0,9432.689292,0,21
+174903,0,9302.029402,0,21
+174904,0,9141.15632,0,21
+174905,0,9126.15406,0,21
+174906,0,8848.2613,0,21
+174907,0,8833.198616,0,21
+174908,0,8686.203295,0,21
+174909,0,8538.855035,0,21
+174910,0,8391.150087,0,21
+174911,0,8227.861637,0,21
+174912,0,8094.650981,0,21
+174913,0,7945.846468,0,21
+174914,0,7915.239147,0,21
+174915,0,7631.748088,0,21
+174916,0,7631.748324,0,21
+174917,0,7331.381089,0,21
+174918,0,7165.107093,0,21
+174919,0,6877.805011,0,21
+174920,0,7013.937229,0,21
+174921,0,6862.256039,0,21
+174922,0,6710.18001,0,21
+174923,0,6694.545221,0,21
+174924,0,6404.758212,0,21
+174925,0,6389.048764,0,21
+174926,0,6097.551998,0,21
+174927,0,6219.851741,0,21
+174928,0,5804.311025,0,21
+174929,0,5911.571517,0,21
+174930,0,5756.72403,0,21
+174931,0,5477.511924,0,21
+174932,0,5740.817748,0,21
+174933,0,5461.578143,0,21
+174934,0,5445.596934,0,21
+174935,0,5445.597468,0,21
+174936,0,5429.575174,0,21
+174937,0,5445.598194,0,21
+174938,0,5273.192556,0,21
+174939,0,5413.496181,0,21
+174940,0,5148.45365,0,21
+174941,0,5397.39255,0,21
+174942,0,5116.286038,0,21
+174943,0,5413.500946,0,21
+174944,0,5100.139907,0,21
+174945,0,5257.083149,0,21
+174946,0,5100.141535,0,21
+174947,0,5240.93562,0,21
+174948,0,5240.936301,0,21
+174949,0,5100.143244,0,21
+174950,0,5224.746573,0,21
+174951,0,5083.95386,0,21
+174952,0,5240.939694,0,21
+174953,0,5224.748162,0,21
+174954,0,5067.719265,0,21
+174955,0,5240.94106,0,21
+174956,0,5208.588349,0,21
+174957,0,5224.770654,0,21
+174958,0,5365.06942,0,21
+174959,0,5067.744714,0,21
+174960,0,5365.070978,0,21
+174961,0,1276.443402,0,21
+174962,0,950.6770649,0,21
+174963,0,1097.239641,0,21
+174964,0,1114.745887,0,21
+174965,0,1097.233817,0,21
+174966,0,933.1785608,0,21
+174967,0,1097.233688,0,21
+174968,0,1097.233941,0,21
+174969,0,1079.651175,0,21
+174970,0,1097.234,0,21
+174971,0,1097.234019,0,21
+174972,0,1079.651244,0,21
+174973,0,1097.234053,0,21
+174974,0,1079.652325,0,21
+174975,0,997.9416146,0,21
+174976,0,1088.447167,0,21
+174977,0,1079.646449,0,21
+174978,0,1079.64647,0,21
+174979,0,1079.646492,0,21
+174980,0,1079.646513,0,21
+174981,0,1258.95994,0,21
+174982,0,1079.646555,0,21
+174983,0,1241.377172,0,21
+174984,0,1097.229416,0,21
+174985,0,1401.17806,0,21
+174986,0,1097.229461,0,21
+174987,0,1418.760936,0,21
+174988,0,1258.960112,0,21
+174989,0,1418.76099,0,21
+174990,0,1258.960161,0,21
+174991,0,1418.761044,0,21
+174992,0,1258.960208,0,21
+174993,0,1321.500049,0,21
+174994,0,1258.960255,0,21
+174995,0,1418.761149,0,21
+174996,0,1169.575006,0,21
+174997,0,1258.960324,0,21
+174998,0,1401.178386,0,21
+174999,0,1097.229737,0,21
+175000,0,1401.178434,0,21
+175001,0,1097.229777,0,21
+175002,0,1409.979292,0,21
+175003,0,1079.64697,0,21
+175004,0,1258.960482,0,21
+175005,0,1241.377654,0,21
+175006,0,1097.229878,0,21
+175007,0,1241.377695,0,21
+175008,0,1436.270482,0,21
+175009,0,1258.960592,0,21
+175010,0,1436.270534,0,21
+175011,0,1258.960635,0,21
+175012,0,1436.270585,0,21
+175013,0,1258.960678,0,21
+175014,0,1276.469715,0,21
+175015,0,1258.960721,0,21
+175016,0,1276.469761,0,21
+175017,0,1258.960763,0,21
+175018,0,1276.469806,0,21
+175019,0,1097.23013,0,21
+175020,0,1258.960827,0,21
+175021,0,915.5888095,0,21
+175022,0,933.1755325,0,21
+175023,0,1079.646654,0,21
+175024,0,933.1753062,0,21
+175025,0,1097.229526,0,21
+175026,0,1097.229553,0,21
+175027,0,1114.738559,0,21
+175028,0,1114.738588,0,21
+175029,0,1276.469239,0,21
+175030,0,1293.906792,0,21
+175031,0,1123.466224,0,21
+175032,0,1453.707732,0,21
+175033,0,1311.275154,0,21
+175034,0,1453.70751,0,21
+175035,0,1488.37704,0,21
+175036,0,1471.076127,0,21
+175037,0,1488.377241,0,21
+175038,0,1646.518312,0,21
+175039,0,1488.377363,0,21
+175040,0,1820.433738,0,21
+175041,0,1311.275473,0,21
+175042,0,1488.377492,0,21
+175043,0,1646.518748,0,21
+175044,0,1505.613317,0,21
+175045,0,1488.377616,0,21
+175046,0,1820.433711,0,21
+175047,0,1522.785629,0,21
+175048,0,1820.433812,0,21
+175049,0,1680.926955,0,21
+175050,0,1837.606102,0,21
+175051,0,1854.716426,0,21
+175052,0,1680.927095,0,21
+175053,0,2010.084749,0,21
+175054,0,1854.716583,0,21
+175055,0,1871.766538,0,21
+175056,0,2010.084918,0,21
+175057,0,1871.766644,0,21
+175058,0,2010.085028,0,21
+175059,0,1888.757729,0,21
+175060,0,2027.13505,0,21
+175061,0,1854.716933,0,21
+175062,0,1715.087751,0,21
+175063,0,1854.717029,0,21
+175064,0,1698.037919,0,21
+175065,0,1871.767049,0,21
+175066,0,1715.087932,0,21
+175067,0,1854.717216,0,21
+175068,0,1715.088021,0,21
+175069,0,1715.088065,0,21
+175070,0,1854.717352,0,21
+175071,0,1573.937843,0,21
+175072,0,1854.717441,0,21
+175073,0,1715.088236,0,21
+175074,0,1556.946954,0,21
+175075,0,1871.767518,0,21
+175076,0,1556.94703,0,21
+175077,0,1715.088402,0,21
+175078,0,1539.897153,0,21
+175079,0,1573.938167,0,21
+175080,0,1698.038566,0,21
+175081,0,1732.079226,0,21
+175082,0,1715.088173,0,21
+175083,0,1573.93785,0,21
+175084,0,1539.896854,0,21
+175085,0,1380.095835,0,21
+175086,0,1201.254771,0,21
+175087,0,1201.254746,0,21
+175088,0,1020.02822,0,21
+175089,0,1020.028198,0,21
+175090,0,432.7484563,0,21
+175091,0,432.7484411,0,21
+175092,0,397.6564621,0,21
+175093,0,379.9971048,0,21
+175094,0,379.9970928,0,21
+175095,0,362.258462,0,21
+175096,0,344.4374451,0,21
+175097,0,317.5438446,0,21
+175098,0,308.5341562,0,21
+175099,0,299.5010102,0,21
+175100,0,272.2548865,0,21
+175101,0,253.9619101,0,21
+175102,0,235.5587454,0,21
+175103,0,235.5587405,0,21
+175104,0,189.0190845,0,21
+175105,0,179.6107172,0,21
+175106,0,179.6107143,0,21
+175107,0,122.3204233,0,21
+175108,0,141.5912997,0,21
+175109,0,83.13306134,0,21
+175110,0,83.13306072,0,21
+175111,0,73.17397589,0,21
+175112,0,42.77674892,0,21
+175113,0,42.77674875,0,21
+175114,0,32.42036058,0,21
+175115,0,11.16970151,0,21
+175116,0,11.16970127,0,21
+175117,0,0,0,21
+175118,0,0,0,21
+175119,0,0,0,21
+175120,0,0,0,21
+175121,0,0,0,21
+175122,0,0,0,21
+175123,0,0,0,21
+175124,0,0,0,21
+175125,0,0,0,21
+175126,0,0,0,21
+175127,0,0,0,21
+175128,0,0,0,21
+175129,0,0,0,21
+175130,0,0,0,21
+175131,0,0,0,21
+175132,0,0,0,21
+175133,0,0,0,21
+175134,0,0,0,21
+175135,0,0,0,21
+175136,0,0,0,21
+175137,0,0,0,21
+175138,0,0,0,21
+175139,0,0,0,21
+175140,0,0,0,21
+175141,0,0,0,21
+175142,0,0,0,21
+175143,0,0,0,21
+175144,0,0,0,21
+175145,0,0,0,21
+175146,0,0,0,21
+175147,0,0,0,21
+175148,0,0,0,21
+175149,0,0,0,21
+175150,0,0,0,21
+175151,0,0,0,21
+175152,0,0,0,21
+175153,0,0,0,21
+175154,0,0,0,21
+175155,0,63.13592157,0,21
+175156,0,21.90586785,0,21
+175157,0,63.13592145,0,21
+175158,0,53.00831691,0,21
+175159,0,73.17396393,0,21
+175160,0,83.13304369,0,21
+175161,0,83.13304359,0,21
+175162,0,102.8452505,0,21
+175163,0,102.8452503,0,21
+175164,0,179.6106011,0,21
+175165,0,198.3920689,0,21
+175166,0,198.3920682,0,21
+175167,0,235.5585178,0,21
+175168,0,235.5585168,0,21
+175169,0,272.2545595,0,21
+175170,0,253.9616332,0,21
+175171,0,290.4434504,0,21
+175172,0,253.9616309,0,21
+175173,0,272.2545542,0,21
+175174,0,253.9616286,0,21
+175175,0,253.9616274,0,21
+175176,0,235.5585091,0,21
+175177,0,235.5585081,0,21
+175178,0,226.3134474,0,21
+175179,0,217.0380859,0,21
+175180,0,141.5912312,0,21
+175181,0,122.3203724,0,21
+175182,0,112.6101361,0,21
+175183,0,83.1330413,0,21
+175184,0,83.1330412,0,21
+175185,0,63.13591986,0,21
+175186,0,42.77674552,0,21
+175187,0,32.4203632,0,21
+175188,0,0,0,21
+175189,0,0,0,21
+175190,0,0,0,21
+175191,0,0,0,21
+175192,0,0,0,21
+175193,0,0,0,21
+175194,0,0,0,21
+175195,0,0,0,21
+175196,0,0,0,21
+175197,0,0,0,21
+175198,0,0,0,21
+175199,0,0,0,21
+175200,0,0,0,21
+175201,0,0,0,21
+175202,0,931.4336811,0,21
+175203,0,851.3171036,0,21
+175204,0,704.3668928,0,21
+175205,0,770.134469,0,21
+175206,0,737.3451626,0,21
+175207,0,753.7630965,0,21
+175208,0,1724.40206,0,21
+175209,0,2348.766912,0,21
+175210,0,1548.087721,0,21
+175211,0,1611.647793,0,21
+175212,0,1514.912708,0,21
+175213,0,1498.249396,0,21
+175214,0,1172.464669,0,21
+175215,0,1138.981555,0,21
+175216,0,971.9684072,0,21
+175217,0,767.0638409,0,21
+175218,0,587.3458936,0,21
+175219,0,553.4217222,0,21
+175220,0,553.421713,0,21
+175221,0,519.2617168,0,21
+175222,0,502.0896022,0,21
+175223,0,484.8539197,0,21
+175224,0,467.5529068,0,21
+175225,0,450.1846708,0,21
+175226,160.0933609,432.7471737,0,21
+175227,126.2215448,397.6554109,0,21
+175228,160.093366,397.6554056,0,21
+175229,176.8246793,362.2576237,0,21
+175230,209.9321437,344.4366982,0,21
+175231,226.3246412,344.4366942,0,21
+175232,242.6185456,326.5299465,0,21
+175233,274.9320718,344.4366861,0,21
+175234,290.9608481,344.436682,0,21
+175235,306.9095469,344.4366779,0,21
+175236,338.580054,344.4366737,0,21
+175237,354.3077587,344.4366695,0,21
+175238,369.9672439,362.2575827,0,21
+175239,401.0906865,362.2575779,0,21
+175240,416.5587841,353.3576204,0,21
+175241,431.9669526,379.9960915,0,21
+175242,462.6101645,362.2575636,0,21
+175243,477.8482929,397.6553214,0,21
+175244,508.1644763,379.9960755,0,21
+175245,1220.751428,397.6553095,0,21
+175246,2042.125002,397.6553036,0,21
+175247,1681.481415,415.23809,0,21
+175248,2072.039991,432.7470251,0,21
+175249,2372.522198,415.2380768,0,21
+175250,2499.355753,450.1844871,0,21
+175251,2654.942156,441.4745327,0,21
+175252,3044.116977,467.5526838,0,21
+175253,3058.739254,467.5526752,0,21
+175254,3334.594129,467.5526666,0,21
+175255,3608.155827,502.0892971,0,21
+175256,3729.705151,502.0892871,0,21
+175257,5387.261907,502.089277,0,21
+175258,5390.465239,536.3715068,0,21
+175259,5919.727373,536.3714952,0,21
+175260,6092.498329,830.6286683,0,21
+175261,13818.89257,1615.369785,0,21
+175262,14627.68179,2746.362548,0,21
+175263,14774.02494,6620.602918,0,21
+175264,15646.52898,4517.605447,0,21
+175265,15974.87649,5340.363237,0,21
+175266,16271.09054,5525.938398,0,21
+175267,16969.2585,5750.481363,0,21
+175268,17118.54584,5645.337899,0,21
+175269,17692.29378,6242.797008,0,21
+175270,18070.13408,6134.321707,0,21
+175271,18427.83571,6522.390832,0,21
+175272,18904.24132,6606.452071,0,21
+175273,19273.89237,7116.344205,0,21
+175274,19713.82315,7024.926079,0,21
+175275,19886.95221,7441.611846,0,21
+175276,20563.58893,7926.424798,0,21
+175277,20685.4279,8002.590848,0,21
+175278,21161.22376,8289.680608,0,21
+175279,21635.16146,8539.920324,0,21
+175280,21844.72383,8756.463178,0,21
+175281,22227.3374,9021.243176,0,21
+175282,22665.96803,11070.5,0,21
+175283,23020.83914,14459.06507,0,21
+175284,23269.19504,13820.82476,0,21
+175285,23821.90747,14941.65017,0,21
+175286,23954.93289,16097.97005,0,21
+175287,24402.76018,16941.81226,0,21
+175288,24763.92119,17912.43782,0,21
+175289,25071.93888,18829.4562,0,21
+175290,25350.76419,19614.80738,0,21
+175291,25872.98091,20401.06022,0,21
+175292,26016.05769,21569.46119,0,21
+175293,26442.60919,22042.54673,0,21
+175294,26800.76783,23109.72124,0,21
+175295,27111.79212,24240.19578,0,21
+175296,27254.20303,24268.38348,0,21
+175297,27716.69512,26014.24384,0,21
+175298,28103.12835,26051.28077,0,21
+175299,28281.1771,27453.41512,0,21
+175300,28678.22451,28193.8439,0,21
+175301,28830.13129,28476.7407,0,21
+175302,29345.82381,30059.86974,0,21
+175303,29486.56331,30302.99563,0,21
+175304,30016.24466,31189.46992,0,21
+175305,30040.36331,32047.37661,0,21
+175306,30459.05045,32989.3513,0,21
+175307,30900.44054,33639.26957,0,21
+175308,31023.24757,34209.23006,0,21
+175309,31340.42049,35362.56061,0,21
+175310,31766.27373,36000.05426,0,21
+175311,31913.74728,36780.39386,0,21
+175312,32216.22577,37327.21464,0,21
+175313,32626.7716,38372.50047,0,21
+175314,32872.28673,39445.21189,0,21
+175315,33073.17453,40322.05506,0,21
+175316,33507.95298,40678.97762,0,21
+175317,33519.7368,41850.99377,0,21
+175318,34156.49145,42510.7389,0,21
+175319,34142.79366,43009.23048,0,21
+175320,34610.49025,44202.4778,0,21
+175321,34775.54743,44884.02672,0,21
+175322,35226.91676,45834.29094,0,21
+175323,35239.27059,46719.11166,0,21
+175324,35844.44789,47979.21864,0,21
+175325,35761.41601,48439.41374,0,21
+175326,36467.91045,49934.05771,0,21
+175327,36317.60224,50338.50065,0,21
+175328,36960.69268,51694.95241,0,21
+175329,36838.10674,52416.14726,0,21
+175330,37623.3543,53394.41782,0,21
+175331,37454.82147,53882.67755,0,21
+175332,38102.64475,54939.73959,0,21
+175333,38102.64001,55810.76108,0,21
+175334,38717.93164,56632.03208,0,21
+175335,38594.91589,57757.36727,0,21
+175336,39178.38776,58289.20105,0,21
+175337,39199.26251,59736.55095,0,21
+175338,39811.66359,60036.10374,0,21
+175339,39898.9215,61488.51348,0,21
+175340,40457.44543,62442.14566,0,21
+175341,40498.99736,63062.38188,0,21
+175342,41165.08231,64165.61233,0,21
+175343,41022.92251,65216.40603,0,21
+175344,41657.95582,65888.54511,0,21
+175345,41795.671,67533.83076,0,21
+175346,42151.33222,68157.29441,0,21
+175347,42375.00027,69703.05885,0,21
+175348,42637.77679,69908.37342,0,21
+175349,42895.96282,71683.25364,0,21
+175350,43313.84234,71768.15343,0,21
+175351,43523.94134,73254.48578,0,21
+175352,43829.58798,73556.38759,0,21
+175353,43993.70442,74271.35924,0,21
+175354,44112.5558,75405.66283,0,21
+175355,44674.68705,75851.3892,0,21
+175356,44736.98455,76896.61837,0,21
+175357,44976.35776,77209.99556,0,21
+175358,45485.50226,78173.99049,0,21
+175359,45757.90655,79241.99103,0,21
+175360,45937.91025,79405.40928,0,21
+175361,46114.608,80516.37168,0,21
+175362,46637.54594,81028.76273,0,21
+175363,46654.78523,81981.74215,0,21
+175364,47132.67691,82200.65622,0,21
+175365,47174.36284,83614.39054,0,21
+175366,47461.03685,83835.15846,0,21
+175367,47694.89532,84495.42912,0,21
+175368,48132.40203,85131.5508,0,21
+175369,48384.55921,86008.15224,0,21
+175370,48286.50292,89466.5303,0,21
+175371,48876.95156,88463.16995,0,21
+175372,48966.91662,90211.72971,0,21
+175373,49201.4001,90719.48306,0,21
+175374,49463.18729,91840.12775,0,21
+175375,49887.71285,92788.39699,0,21
+175376,49935.39275,93835.30237,0,21
+175377,50227.65911,94343.05196,0,21
+175378,50420.89574,95492.6994,0,21
+175379,50716.11404,96307.38101,0,21
+175380,50916.89128,97263.27379,0,21
+175381,52141.95301,100911.425,0,21
+175382,52952.27613,101575.9034,0,21
+175383,52842.9961,103238.6761,0,21
+175384,53256.239,104126.0123,0,21
+175385,53550.30016,104565.9561,0,21
+175386,53753.96669,105822.7097,0,21
+175387,54003.56042,106914.3501,0,21
+175388,54456.2334,107067.9865,0,21
+175389,54423.70948,108803.8816,0,21
+175390,54985.43346,108919.415,0,21
+175391,55691.13245,109970.1822,0,21
+175392,55996.13607,111202.484,0,21
+175393,56060.17198,111866.7992,0,21
+175394,56479.6428,112395.105,0,21
+175395,56922.07172,113773.1954,0,21
+175396,56780.24615,114302.9143,0,21
+175397,57258.26626,114959.8555,0,21
+175398,57454.00312,116202.1652,0,21
+175399,58406.9218,116560.9571,0,21
+175400,59774.40002,117914.2064,0,21
+175401,59500.50871,118366.6054,0,21
+175402,59994.57964,537422.6975,0,21
+175403,60647.98483,120416.9781,0,21
+175404,60696.23926,120689.4395,0,21
+175405,61296.92945,121571.0508,0,21
+175406,61712.20711,122427.5244,0,21
+175407,62067.6028,123011.588,0,21
+175408,62281.65614,124026.4233,0,21
+175409,62764.28991,124961.751,0,21
+175410,63150.28933,125453.0108,0,21
+175411,63588.72147,126248.936,0,21
+175412,63733.53786,544778.921,0,21
+175413,64166.33288,127476.2569,0,21
+175414,64661.70712,128701.0086,0,21
+175415,64859.57531,128902.4209,0,21
+175416,65192.76856,130132.6169,0,21
+175417,65669.98155,130017.5968,0,21
+175418,65801.68411,131556.1453,0,21
+175419,66452.09538,131371.9942,0,21
+175420,66372.05023,132906.1145,0,21
+175421,66810.8637,132556.7153,0,21
+175422,67410.43397,551283.2822,0,21
+175423,67516.07979,134272.3965,0,21
+175424,69125.78162,135445.7631,0,21
+175425,69426.0293,135609.8371,0,21
+175426,69832.7771,136532.8657,0,21
+175427,70329.94181,137097.1167,0,21
+175428,70934.49124,137624.0481,0,21
+175429,71252.01276,138640.9542,0,21
+175430,71847.27082,138855.8476,0,21
+175431,72184.3716,140038.0304,0,21
+175432,72917.48755,140071.7901,0,21
+175433,73035.42974,141298.4748,0,21
+175434,73672.71632,141307.4471,0,21
+175435,74111.01078,142390.9375,0,21
+175436,74549.00192,142883.5677,0,21
+175437,74977.15891,144405.0871,0,21
+175438,75458.30427,144698.6477,0,21
+175439,75768.02773,145670.0163,0,21
+175440,76315.30588,146339.4778,0,21
+175441,76791.28239,146888.2218,0,21
+175442,77165.27905,147963.6955,0,21
+175443,77914.58149,148407.2598,0,21
+175444,78245.13506,149379.9022,0,21
+175445,78731.93209,149565.0935,0,21
+175446,79298.21867,150729.3588,0,21
+175447,79825.1263,150818.4673,0,21
+175448,80202.25384,152349.8534,0,21
+175449,80714.24513,151990.1116,0,21
+175450,81277.85697,569355.3609,0,21
+175451,81664.7582,153599.7192,0,21
+175452,82089.31164,154359.7386,0,21
+175453,82916.04966,154202.1068,0,21
+175454,83061.73623,155862.1784,0,21
+175455,83509.28181,155896.7502,0,21
+175456,84137.97218,157051.7352,0,21
+175457,84544.93963,157204.7316,0,21
+175458,85008.21907,158061.8726,0,21
+175459,85529.70703,158927.162,0,21
+175460,86096.95156,159125.6885,0,21
+175461,86156.68018,159720.577,0,21
+175462,86959.51366,160025.3583,0,21
+175463,87288.78449,160756.909,0,21
+175464,87922.47552,161404.3474,0,21
+175465,88115.08176,162128.6735,0,21
+175466,88776.9683,162587.3846,0,21
+175467,89246.58895,163164.9561,0,21
+175468,89317.02283,163557.3857,0,21
+175469,90242.8854,164209.4512,0,21
+175470,90404.48534,165261.008,0,21
+175471,90959.27136,165335.1493,0,21
+175472,91402.14436,581710.2905,0,21
+175473,91449.58376,166683.887,0,21
+175474,92642.27361,167248.2403,0,21
+175475,92438.82539,167538.8005,0,21
+175476,93150.56438,168482.3654,0,21
+175477,93558.35714,168703.5911,0,21
+175478,94031.50691,169279.9751,0,21
+175479,94200.47758,169742.8469,0,21
+175480,94947.56131,171083.5276,0,21
+175481,95124.12714,171339.0606,0,21
+175482,95682.02706,171744.8751,0,21
+175483,96044.35085,172354.8184,0,21
+175484,96354.12445,172967.591,0,21
+175485,97111.2084,173658.0117,0,21
+175486,97331.67026,173789.9588,0,21
+175487,97516.7883,174654.2373,0,21
+175488,98310.37905,175501.2412,0,21
+175489,98457.31526,175326.4326,0,21
+175490,99119.82081,176137.4242,0,21
+175491,99140.71447,177035.5382,0,21
+175492,99970.1762,176961.992,0,21
+175493,100223.7345,177828.5902,0,21
+175494,100483.156,178340.866,0,21
+175495,101011.7408,178850.5416,0,21
+175496,101442.8876,179361.881,0,21
+175497,101689.5869,179849.8995,0,21
+175498,102525.3345,180697.5121,0,21
+175499,102430.8751,180618.5879,0,21
+175500,103240.0281,181428.0326,0,21
+175501,0,0,0,21
+175502,0,0,0,21
+175503,0,256.9304564,0,21
+175504,0,0,0,21
+175505,0,0,0,21
+175506,0,368485.6298,950199.3751,21
+175507,339668.4053,0,0,21
+175508,0,0,0,21
+175509,0,2.735530003,0,21
+175510,0,0,0,21
+175511,0,17.19070557,0,21
+175512,0,0,0,21
+175513,0,0,0,21
+175514,0,0,0,21
+175515,0,86.1125286,0,21
+175516,0,0,0,21
+175517,0,0,0,21
+175518,0,0,0,21
+175519,0,102.7764134,0,21
+175520,0,0,0,21
+175521,0,0,0,21
+175522,0,0,0,21
+175523,0,84.60758126,0,21
+175524,0,0,0,21
+175525,0,0,0,21
+175526,0,0,0,21
+175527,0,99.42621225,0,21
+175528,0,0,0,21
+175529,0,0,0,21
+175530,0,0,0,21
+175531,0,79.53252796,0,21
+175532,0,0,0,21
+175533,0,0,0,21
+175534,0,0,0,21
+175535,0,86.18166086,0,21
+175536,0,0,0,21
+175537,0,0,0,21
+175538,0,0,0,21
+175539,0,85.17305906,0,21
+175540,0,0,0,21
+175541,0,368470.3687,927261.8989,21
+175542,0,0,0,21
+175543,339675.5969,83.27403867,0,21
+175544,0,0,0,21
+175545,0,0,0,21
+175546,0,0,0,21
+175547,0,75.40046983,0,21
+175548,0,0,0,21
+175549,0,0,0,21
+175550,0,0,0,21
+175551,0,83.93026012,0,21
+175552,0,0,0,21
+175553,0,0,0,21
+175554,0,0,0,21
+175555,0,99.6743409,0,21
+175556,0,0,0,21
+175557,0,0,0,21
+175558,0,0,0,21
+175559,0,87.34190631,0,21
+175560,0,0,0,15.6
+175561,0,0,0,15.6
+175562,0,0,0,15.6
+175563,0,0,0,15.6
+175564,0,0,0,15.6
+175565,0,0,0,15.6
+175566,0,0,0,15.6
+175567,0,0,0,15.6
+175568,0,0,0,15.6
+175569,0,0,0,15.6
+175570,0,0,0,15.6
+175571,0,0,0,15.6
+175572,0,0,0,15.6
+175573,0,129.1205854,0,15.6
+175574,0,0,0,15.6
+175575,0,0,0,15.6
+175576,0,802240.5445,903166.6322,15.6
+175577,0,0,0,15.6
+175578,0,0,0,15.6
+175579,339697.8103,0,0,15.6
+175580,0,0,0,15.6
+175581,0,0,0,15.6
+175582,0,0,0,15.6
+175583,0,0,0,15.6
+175584,0,0,0,15.6
+175585,0,0,0,15.6
+175586,0,0,0,15.6
+175587,0,432974.9174,0,15.6
+175588,0,0,0,15.6
+175589,0,0,0,15.6
+175590,0,0,0,15.6
+175591,0,0,0,15.6
+175592,0,0,0,15.6
+175593,0,0,0,15.6
+175594,0,0,0,15.6
+175595,0,0,0,15.6
+175596,0,0,0,15.6
+175597,0,0,0,15.6
+175598,0,432831.9672,0,15.6
+175599,0,0,0,15.6
+175600,0,0,0,15.6
+175601,0,0,0,15.6
+175602,0,0,0,15.6
+175603,0,0,0,15.6
+175604,0,0,0,15.6
+175605,0,0,0,15.6
+175606,0,0,0,15.6
+175607,0,0,0,15.6
+175608,0,0,0,15.6
+175609,0,0,0,15.6
+175610,0,0,0,15.6
+175611,0,368459.2703,883854.7842,15.6
+175612,0,0,0,15.6
+175613,0,0,0,15.6
+175614,0,0,0,15.6
+175615,339730.0809,0,0,15.6
+175616,0,192.3806913,0,15.6
+175617,0,0,0,15.6
+175618,0,0,0,15.6
+175619,0,0,0,15.6
+175620,0,0,0,15.6
+175621,0,0,0,15.6
+175622,0,0,0,15.6
+175623,0,433366.7721,0,15.6
+175624,0,0,0,15.6
+175625,0,0,0,15.6
+175626,0,0,0,15.6
+175627,0,0,0,15.6
+175628,0,0,0,15.6
+175629,0,0,0,15.6
+175630,0,0,0,15.6
+175631,0,0,0,15.6
+175632,0,0,0,15.6
+175633,0,0,0,15.6
+175634,0,432639.7918,0,15.6
+175635,0,0,0,15.6
+175636,0,0,0,15.6
+175637,0,0,0,15.6
+175638,0,0,0,15.6
+175639,0,0,0,15.6
+175640,0,0,0,15.6
+175641,0,0,0,15.6
+175642,0,0,0,15.6
+175643,0,0,0,15.6
+175644,0,0,0,15.6
+175645,0,432478.8663,0,15.6
+175646,0,368448.2152,863285.5134,15.6
+175647,0,0,0,15.6
+175648,0,0,0,15.6
+175649,0,0,0,15.6
+175650,0,0,0,15.6
+175651,0,0,0,15.6
+175652,339734.9944,0,0,15.6
+175653,0,0,0,15.6
+175654,0,0,0,15.6
+175655,0,0,0,15.6
+175656,0,432357.4381,0,15.6
+175657,0,0,0,15.6
+175658,0,0,0,15.6
+175659,0,0,0,15.6
+175660,0,0,0,15.6
+175661,0,0,0,15.6
+175662,0,0,0,15.6
+175663,0,0,0,15.6
+175664,0,0,0,15.6
+175665,0,0,0,15.6
+175666,0,0,0,15.6
+175667,0,432291.4945,0,15.6
+175668,0,0,0,15.6
+175669,0,0,0,15.6
+175670,0,0,0,15.6
+175671,0,0,0,15.6
+175672,0,0,0,15.6
+175673,0,0,0,15.6
+175674,0,0,0,15.6
+175675,0,0,0,15.6
+175676,0,0,0,15.6
+175677,0,0,0,15.6
+175678,0,432180.6693,0,15.6
+175679,0,0,0,15.6
+175680,0,0,0,15.6
+175681,0,368433.9429,847171.0487,15.6
+175682,0,0,0,15.6
+175683,0,0,0,15.6
+175684,0,0,0,15.6
+175685,0,0,0,15.6
+175686,0,0,0,15.6
+175687,0,0,0,15.6
+175688,0,0,0,15.6
+175689,339738.7676,432097.3016,0,15.6
+175690,0,0,0,15.6
+175691,0,0,0,15.6
+175692,0,0,0,15.6
+175693,0,0,0,15.6
+175694,0,0,0,15.6
+175695,0,0,0,15.6
+175696,0,0,0,15.6
+175697,0,0,0,15.6
+175698,0,0,0,15.6
+175699,0,0,0,15.6
+175700,0,432017.6157,0,15.6
+175701,0,0,0,15.6
+175702,0,0,0,15.6
+175703,0,0,0,15.6
+175704,0,0,0,15.6
+175705,0,0,0,15.6
+175706,0,0,0,15.6
+175707,0,0,0,15.6
+175708,0,0,0,15.6
+175709,0,0,0,15.6
+175710,0,0,0,15.6
+175711,0,431943.424,0,15.6
+175712,0,0,0,15.6
+175713,0,0,0,15.6
+175714,0,0,0,15.6
+175715,0,0,0,15.6
+175716,0,0,830394.4758,15.6
+175717,0,368430.0204,0,15.6
+175718,0,0,0,15.6
+175719,0,0,0,15.6
+175720,0,0,0,15.6
+175721,0,0,0,15.6
+175722,0,0,0,15.6
+175723,0,0,0,15.6
+175724,0,0,0,15.6
+175725,0,0,0,15.6
+175726,339751.1582,0,0,15.6
+175727,0,0,0,15.6
+175728,0,0,0,15.6
+175729,0,0,0,15.6
+175730,0,0,0,15.6
+175731,0,0,0,15.6
+175732,0,0,0,15.6
+175733,0,0,0,15.6
+175734,0,0,0,15.6
+175735,0,0,0,15.6
+175736,0,0,0,15.6
+175737,0,0,0,15.6
+175738,0,0,0,15.6
+175739,0,0,0,15.6
+175740,0,0,0,15.6
+175741,0,0,0,15.6
+175742,0,4.075466271,0,15.6
+175743,0,0,0,15.6
+175744,0,432395.0137,0,15.6
+175745,0,0,0,15.6
+175746,0,0,0,15.6
+175747,0,0,0,15.6
+175748,0,0,0,15.6
+175749,0,0,0,15.6
+175750,0,0,0,15.6
+175751,0,0,816652.5758,15.6
+175752,0,0,0,15.6
+175753,0,368427.1492,0,15.6
+175754,0,0,0,15.6
+175755,0,0,0,15.6
+175756,0,0,0,15.6
+175757,0,0,0,15.6
+175758,0,0,0,15.6
+175759,0,0,0,15.6
+175760,0,0,0,15.6
+175761,0,0,0,15.6
+175762,0,0,0,15.6
+175763,339820.2706,0,0,15.6
+175764,0,0,0,15.6
+175765,0,0,0,15.6
+175766,0,0,0,15.6
+175767,0,0,0,15.6
+175768,0,0,0,15.6
+175769,0,432135.9093,0,15.6
+175770,0,0,0,15.6
+175771,0,0,0,15.6
+175772,0,0,0,15.6
+175773,0,0,0,15.6
+175774,0,0,0,15.6
+175775,0,0,0,15.6
+175776,0,0,0,15.6
+175777,0,0,0,15.6
+175778,0,0,0,15.6
+175779,0,0,0,15.6
+175780,0,0,0,15.6
+175781,0,0,0,15.6
+175782,0,0,0,15.6
+175783,0,0,0,15.6
+175784,0,0,0,15.6
+175785,0,0,0,15.6
+175786,0,0,803743.5737,15.6
+175787,0,0,0,15.6
+175788,0,0,0,15.6
+175789,0,368425.6195,0,15.6
+175790,0,0,0,15.6
+175791,0,0,0,15.6
+175792,0,0,0,15.6
+175793,0,0,0,15.6
+175794,0,431927.311,0,15.6
+175795,0,0,0,15.6
+175796,0,0,0,15.6
+175797,0,0,0,15.6
+175798,0,0,0,15.6
+175799,0,0,0,15.6
+175800,339915.7226,0,0,15.6
+175801,0,0,0,15.6
+175802,0,0,0,15.6
+175803,0,0,0,15.6
+175804,0,0,0,15.6
+175805,0,0,0,15.6
+175806,0,0,0,15.6
+175807,0,0,0,15.6
+175808,0,0,0,15.6
+175809,0,0,0,15.6
+175810,0,0,0,15.6
+175811,0,0,0,15.6
+175812,0,0,0,15.6
+175813,0,0,0,15.6
+175814,0,0,0,15.6
+175815,0,0,0,15.6
+175816,0,0,0,15.6
+175817,0,0,0,15.6
+175818,0,0,0,15.6
+175819,0,0,0,15.6
+175820,0,0,0,15.6
+175821,0,0,791245.9222,15.6
+175822,0,0,0,15.6
+175823,0,0,0,15.6
+175824,0,0,0,15.6
+175825,0,368423.638,0,15.6
+175826,0,0,0,15.6
+175827,0,0,0,15.6
+175828,0,0,0,15.6
+175829,0,0,0,15.6
+175830,0,0,0,15.6
+175831,0,0,0,15.6
+175832,0,0,0,15.6
+175833,0,0,0,15.6
+175834,0,0,0,15.6
+175835,0,0,0,15.6
+175836,0,0,0,15.6
+175837,339918.6592,0,0,15.6
+175838,0,0,0,15.6
+175839,0,0,0,15.6
+175840,0,0,0,15.6
+175841,0,0,0,15.6
+175842,0,0,0,15.6
+175843,0,0,0,15.6
+175844,0,0,0,15.6
+175845,0,0,0,15.6
+175846,0,0,0,15.6
+175847,0,0,0,15.6
+175848,0,0,0,15.6
+175849,0,0,0,15.6
+175850,0,0,0,15.6
+175851,0,0,0,15.6
+175852,0,0,0,15.6
+175853,0,0,0,15.6
+175854,0,0,0,15.6
+175855,0,0,0,15.6
+175856,0,0,781548.9104,15.6
+175857,0,0,0,15.6
+175858,0,0,0,15.6
+175859,0,0,0,15.6
+175860,0,0,0,15.6
+175861,0,432210.2274,0,15.6
+175862,0,961.0667555,0,15.6
+175863,0,15825.26332,0,15.6
+175864,0,22694.85477,0,15.6
+175865,0,17750.28351,0,15.6
+175866,0,18330.99811,0,15.6
+175867,0,18342.82665,0,15.6
+175868,0,18300.47168,0,15.6
+175869,0,18320.47514,0,15.6
+175870,0,18285.03482,0,15.6
+175871,0,18289.68073,0,15.6
+175872,0,18235.60953,0,15.6
+175873,0,18236.65544,0,15.6
+175874,339920.408,18247.26352,0,15.6
+175875,0,18202.79835,0,15.6
+175876,0,18194.10632,0,15.6
+175877,0,18137.78737,0,15.6
+175878,0,18243.52174,0,15.6
+175879,0,18122.21079,0,15.6
+175880,0,18171.95633,0,15.6
+175881,0,18140.55362,0,15.6
+175882,0,18137.79221,0,15.6
+175883,0,18102.90911,0,15.6
+175884,0,18140.55362,0,15.6
+175885,0,18084.44367,0,15.6
+175886,0,18140.76409,0,15.6
+175887,0,18064.64529,0,15.6
+175888,0,18106.80879,0,15.6
+175889,0,18087.07147,0,15.6
+175890,0,18080.53507,770909.0477,15.6
+175891,0,0,0,15.6
+175892,0,0,0,15.6
+175893,0,0,0,15.6
+175894,0,0,0,15.6
+175895,0,368420.3076,0,15.6
+175896,0,0,0,15.6
+175897,0,0,0,15.6
+175898,0,56537.50318,0,15.6
+175899,0,485.0071937,0,15.6
+175900,0,16315.10447,0,15.6
+175901,0,21785.94186,0,15.6
+175902,0,17578.00819,0,15.6
+175903,0,18026.31988,0,15.6
+175904,0,18109.41808,0,15.6
+175905,0,18143.37544,0,15.6
+175906,0,18033.38184,0,15.6
+175907,0,18143.3711,0,15.6
+175908,0,18055.74533,0,15.6
+175909,339923.8647,18105.34964,0,15.6
+175910,0,18055.74096,0,15.6
+175911,0,18033.47067,0,15.6
+175912,0,18073.82513,0,15.6
+175913,0,18033.46617,0,15.6
+175914,0,18039.95658,0,15.6
+175915,0,18013.37405,0,15.6
+175916,0,18021.81354,0,15.6
+175917,0,18035.63743,0,15.6
+175918,0,17979.54637,0,15.6
+175919,0,18024.13647,0,15.6
+175920,0,18001.849,0,17.8
+175921,118340.3262,1249053.948,0,17.8
+175922,75853.84036,271507.1802,0,17.8
+175923,34049.14282,108130.8727,0,17.8
+175924,15794.67182,376329.6836,762407.1512,17.8
+175925,43536.65964,314971.8293,0,17.8
+175926,32107.74215,303068.6079,0,17.8
+175927,32111.36268,302292.2785,0,17.8
+175928,32362.79001,249372.9051,0,17.8
+175929,32218.49722,616553.6953,0,17.8
+175930,32105.60157,343033.4298,0,17.8
+175931,32070.98107,268643.5396,0,17.8
+175932,31959.1475,287461.8114,0,17.8
+175933,31822.48036,288677.6633,0,17.8
+175934,31847.86126,291384.3442,0,17.8
+175935,27864.91533,296072.5988,0,17.8
+175936,27864.90939,291038.6752,0,17.8
+175937,27721.84421,292790.6653,0,17.8
+175938,27628.75,293029.8526,0,17.8
+175939,27596.40943,292387.137,0,17.8
+175940,27441.80967,292327.6625,0,17.8
+175941,27426.82985,292796.5978,0,17.8
+175942,27321.90294,292569.3718,0,17.8
+175943,27263.93686,291808.7015,0,17.8
+175944,367035.8825,292983.2795,0,17.8
+175945,27115.95672,281758.3246,0,17.8
+175946,27039.44882,278331.213,0,17.8
+175947,26967.04271,277954.4194,0,17.8
+175948,26865.45,276702.7078,0,17.8
+175949,26846.5933,276742.517,0,17.8
+175950,26715.0525,275957.3132,0,17.8
+175951,0,44097.9683,0,17.8
+175952,0,44005.8173,0,17.8
+175953,0,43948.01567,0,17.8
+175954,0,43924.74776,0,17.8
+175955,82490.59059,43889.17835,0,17.8
+175956,14319.70106,43762.67152,0,17.8
+175957,20321.00342,43641.25977,0,17.8
+175958,31142.30096,669962.0803,754791.6124,17.8
+175959,25898.24105,65082.91024,0,17.8
+175960,26217.7307,236765.5189,0,17.8
+175961,26151.75198,252802.2726,0,17.8
+175962,26091.29939,218553.2228,0,17.8
+175963,26028.09684,695981.8811,0,17.8
+175964,25962.35471,234708.1749,0,17.8
+175965,25918.46063,257042.3222,0,17.8
+175966,25862.66304,260294.3505,0,17.8
+175967,25798.78514,259064.9529,0,17.8
+175968,25732.08334,268910.4281,0,17.8
+175969,25701.01931,260356.0613,0,17.8
+175970,25638.81953,262324.452,0,17.8
+175971,25545.63773,265328.8288,0,17.8
+175972,25542.52913,260820.9137,0,17.8
+175973,25473.58078,261027.4007,0,17.8
+175974,25431.81937,260927.5789,0,17.8
+175975,25317.72754,261281.9252,0,17.8
+175976,25326.74847,260533.1765,0,17.8
+175977,25253.1233,259539.864,0,17.8
+175978,25196.59018,259328.1059,0,17.8
+175979,366550.1641,258553.8403,0,17.8
+175980,27266.6609,257800.306,0,20
+175981,1084861.093,1442052.569,259574.1242,20
+175982,462226.8201,685112.2173,0,20
+175983,93481.71597,119404.4053,0,20
+175984,208117.9839,331731.3656,0,20
+175985,318189.9686,330951.833,6794.898419,20
+175986,237437.6695,296770.8827,32480.3044,20
+175987,246467.5375,295148.2996,12823.69032,20
+175988,248099.712,296613.2532,20098.38636,20
+175989,247576.1162,295356.3582,21278.28999,20
+175990,247028.5418,294643.7548,21314.28143,20
+175991,247318.7783,292713.1166,21506.87273,20
+175992,246925.7879,291783.9903,22225.32278,20
+175993,240583.7042,290443.8008,22061.05126,20
+175994,238796.8723,289137.6154,22646.22564,20
+175995,238903.092,288001.2047,22696.04011,20
+175996,237613.8577,286677.288,23117.4208,20
+175997,237206.602,285750.3886,23130.79447,20
+175998,236925.4435,284536.5168,23724.89823,20
+175999,236306.3637,283330.169,23817.53197,20
+176000,236005.2237,282098.4927,24133.78794,20
+176001,235711.3233,281129.1903,24136.01244,20
+176002,235132.085,280497.9475,24668.38198,20
+176003,234627.7506,280329.6358,24899.79525,20
+176004,234823.0066,278540.6641,25179.7386,20
+176005,233708.9903,278744.1346,25266.15189,20
+176006,233739.9578,277665.1554,25632.48827,20
+176007,233445.7452,708082.6904,26237.85102,20
+176008,232826.5456,276184.7497,26198.03275,20
+176009,232575.0856,275719.373,26499.26124,20
+176010,232341.5253,276589.9691,26918.92264,20
+176011,231753.8877,274851.8434,27103.82579,20
+176012,231578.7558,275412.8651,27191.44939,20
+176013,230821.1734,274935.3461,27809.92538,20
+176014,230748.2676,274319.9448,27976.34728,20
+176015,230152.3069,273684.8787,28248.66132,20
+176016,229706.2613,273649.9173,28474.7419,20
+176017,229709.7593,273202.1921,28666.77087,20
+176018,228428.202,272700.2933,29114.41469,20
+176019,228778.1291,272536.1842,29302.04544,20
+176020,227897.8287,271576.7737,29614.72391,20
+176021,227813.5339,271740.9662,29724.22595,20
+176022,227213.6494,271185.4431,29923.82572,20
+176023,226913.2705,270520.9575,30528.22113,20
+176024,226911.6036,269671.7397,30245.94366,20
+176025,226112.9023,268693.33,30937.88978,20
+176026,226232.5697,268680.8985,30860.13173,20
+176027,225844.9072,267730.187,31318.22395,20
+176028,225191.1022,267248.736,31259.97654,20
+176029,225438.0174,266886.5097,31761.61469,20
+176030,224686.0399,265850.0508,32029.6093,20
+176031,224347.7012,266275.5111,31955.41393,20
+176032,224557.4435,695467.979,32448.75366,20
+176033,223759.2267,263991.2715,29410.60729,20
+176034,223294.5773,264738.6253,29172.83821,20
+176035,223571.8796,262846.5498,29120.06305,20
+176036,222778.7365,263410.4921,29360.97907,20
+176037,222722.5297,261886.0287,28998.22487,20
+176038,222240.6801,262081.7064,29350.87895,20
+176039,221961.8564,261069.1528,29296.86296,20
+176040,221639.0121,260841.6476,29264.75172,21
+176041,256961.7008,300430.7195,24571.47195,21
+176042,254536.85,298525.8752,23982.30239,21
+176043,252050.1525,297388.9427,23899.05955,21
+176044,250336.5141,296332.8319,23899.76814,21
+176045,248100.7808,295333.4293,23961.79333,21
+176046,246415.9371,293867.6753,23747.10957,21
+176047,244405.3019,292930.5975,24013.35812,21
+176048,241970.7215,292018.9831,23834.69941,21
+176049,240322.3663,290954.1879,23834.62666,21
+176050,238545.2505,289749.327,24024.39865,21
+176051,236082.1199,288723.1306,23910.18463,21
+176052,234370.7264,285872.9774,23846.35679,21
+176053,232420.2256,285257.4361,24107.32753,21
+176054,230511.2355,283197.1508,24022.31078,21
+176055,227936.6237,282737.5666,23940.20093,21
+176056,226642.3029,280983.3211,24113.23364,21
+176057,224309.3595,280269,23891.74023,21
+176058,220774.9412,278952.7147,24137.35811,21
+176059,218436.4431,278114.9444,24219.5978,21
+176060,216282.2868,276067.3606,24212.75881,21
+176061,214117.0674,275444.065,24282.56777,21
+176062,212210.4849,274885.3409,24404.98782,21
+176063,210258.7618,272620.0562,24314.60185,21
+176064,208449.4362,272705.0377,24623.12972,21
+176065,206197.2401,270418.0855,24494.40336,21
+176066,204350.0953,269903.2448,24667.67367,21
+176067,202762.9344,268433.9607,24724.88026,21
+176068,200215.1378,267667.2635,24698.25037,21
+176069,198733.4867,266171.1844,24745.48503,21
+176070,196770.0836,265278.7745,24813.69998,21
+176071,196128.1694,263959.0802,24801.34674,21
+176072,194994.1395,262925.3589,23805.9583,21
+176073,193174.4192,261458.7403,23361.81207,21
+176074,190980.7838,261378.0995,23228.1773,21
+176075,189732.2196,259077.8336,23112.32057,21
+176076,188517.9766,258510.2549,22626.38864,21
+176077,187702.1913,257737.2331,22413.02438,21
+176078,186674.7082,256426.0453,22164.25412,21
+176079,186356.747,255435.0741,22150.65962,21
+176080,185160.0893,254327.7209,21443.60401,21
+176081,184735.1701,253555.3138,21424.43293,21
+176082,183870.0191,253462.5494,21075.41299,21
+176083,182938.6592,253248.5367,20810.10729,21
+176084,182554.4176,251951.3155,20339.46984,21
+176085,181300.6273,251341.1585,20189.78837,21
+176086,181157.222,250788.2046,19713.07168,21
+176087,180102.3504,249310.1964,19431.40719,21
+176088,179448.3894,248860.8319,19160.45278,21
+176089,178588.4571,247859.1509,18583.81491,21
+176090,179443.4196,246828.6578,18376.32778,21
+176091,178925.9254,246388.5531,18022.29538,21
+176092,587816.7343,245160.8355,17396.1738,21
+176093,177346.6309,244114.618,17368.64373,21
+176094,177167.4868,244184.7832,15679.54139,21
+176095,176575.9967,242496.1667,15040.87117,21
+176096,175343.6748,242119.1177,14604.31245,21
+176097,175334.0932,241068.3989,14306.05058,21
+176098,174533.6645,240293.9294,13645.81402,21
+176099,173912.2562,239573.4455,13307.00392,21
+176100,173239.0533,238566.0599,12736.79343,21
+176101,92003.82509,156744.6155,345.4509468,21
+176102,87503.8962,149775.445,212.680481,21
+176103,85375.57994,146411.1157,195.7531672,21
+176104,83855.16712,143373.5489,161.6215038,21
+176105,82568.42858,139632.668,144.4021896,21
+176106,81043.3167,136713.5745,109.6023964,21
+176107,79467.15602,133792.2166,109.6026302,21
+176108,78676.71098,130321.3175,56.22519578,21
+176109,77108.64753,127253.2889,74.21090817,21
+176110,75812.07028,124089.7421,19.36436544,21
+176111,74543.70182,121648.7082,28.72886639,21
+176112,73650.74151,118610.897,0,21
+176113,72137.05951,117056.5219,0,21
+176114,72249.29276,115614.0908,0,21
+176115,71260.40922,114665.9935,0,21
+176116,70336.43144,113314.2572,0,21
+176117,69172.75496,112046.8981,0,21
+176118,68155.33612,111332.8688,0,21
+176119,66691.73222,109701.507,0,21
+176120,66166.66364,108513.7223,0,21
+176121,65035.55247,107340.6202,0,21
+176122,63690.03013,106230.5782,0,21
+176123,62704.47482,105120.1429,0,21
+176124,61674.57956,103409.3936,0,21
+176125,60630.77427,102593.881,0,21
+176126,59406.51474,100850.7513,0,21
+176127,58595.80362,99747.58141,0,21
+176128,57696.93941,98443.71241,0,21
+176129,56663.49652,97093.76513,0,21
+176130,56093.9553,95870.96984,0,21
+176131,54768.16259,94813.94556,0,21
+176132,54471.22993,93456.31466,0,21
+176133,53807.05565,92614.41946,0,21
+176134,52863.07034,91207.99205,0,21
+176135,52334.02033,90525.67806,0,21
+176136,51308.48511,89220.31872,0,21
+176137,463784.8397,88433.40843,0,21
+176138,49892.01614,87313.18473,0,21
+176139,49500.14355,86085.48543,0,21
+176140,472800.479,85596.37431,0,21
+176141,48292.74162,84198.96135,0,21
+176142,47417.88494,83262.52466,0,21
+176143,46907.01859,82490.67938,0,21
+176144,46284.29851,81244.05227,0,21
+176145,45445.68683,80168.41145,0,21
+176146,45385.96151,492383.0175,0,21
+176147,44441.55803,78041.3036,0,21
+176148,44170.41907,77943.41098,0,21
+176149,43686.83925,76780.40049,0,21
+176150,43403.56601,76417.82142,0,21
+176151,42986.57579,75453.44756,0,21
+176152,42637.89961,74887.34804,0,21
+176153,42166.45812,74267.1636,0,21
+176154,42047.24884,73201.77446,0,21
+176155,41469.42912,73189.03903,0,21
+176156,41406.78765,71535.46004,0,21
+176157,40750.84728,71863.82072,0,21
+176158,40681.18838,70494.43236,0,21
+176159,40176.97488,70189.84995,0,21
+176160,39797.23127,69342.7895,0,21
+176161,39618.21918,68785.53364,0,21
+176162,39470.8099,68165.38176,0,21
+176163,39994.58794,67499.82559,0,21
+176164,40061.78639,66798.06992,0,21
+176165,39592.16501,66363.87123,0,21
+176166,39729.85676,65500.91765,0,21
+176167,39393.98602,65242.28535,0,21
+176168,39180.54261,64485.36436,0,21
+176169,39029.84952,63927.23002,0,21
+176170,38842.51304,63286.44267,0,21
+176171,38475.71103,62753.57223,0,21
+176172,38817.14175,62082.26866,0,21
+176173,38597.19695,475288.0316,0,21
+176174,38605.96957,60792.4712,0,21
+176175,38326.73735,60525.51663,0,21
+176176,38473.77757,59679.50999,0,21
+176177,38291.07132,59192.31147,0,21
+176178,38471.06876,58253.25213,0,21
+176179,38087.23639,57374.00318,0,21
+176180,38224.96982,57273.75943,0,21
+176181,38083.58081,56207.47286,0,21
+176182,38173.16729,55914.65896,0,21
+176183,37811.26754,55060.94253,0,21
+176184,38061.41172,54730.14558,0,21
+176185,37734.09358,53927.37401,0,21
+176186,37948.38752,52943.83725,0,21
+176187,37659.51422,52068.29047,0,21
+176188,37690.54409,51864.38535,0,21
+176189,37627.71991,50733.09438,0,21
+176190,37703.91234,50513.23528,0,21
+176191,37368.41312,49852.33335,0,21
+176192,37139.95237,49140.99746,0,21
+176193,37052.29484,48709.64552,0,21
+176194,36950.39608,48228.72903,0,21
+176195,36657.50612,47326.01019,0,21
+176196,36463.56508,47076.34172,0,21
+176197,36250.27026,460610.5388,0,21
+176198,36163.08575,45894.55868,0,21
+176199,35864.43174,45031.95761,0,21
+176200,35754.27082,44739.95246,0,21
+176201,35454.80274,44106.33951,0,21
+176202,35275.52904,43476.91608,0,21
+176203,35231.56795,42915.46959,0,21
+176204,34756.73559,42384.19922,0,21
+176205,34750.89345,41533.85733,0,21
+176206,34366.54076,41421.25145,0,21
+176207,34336.45997,40138.21166,0,21
+176208,34120.23894,40173.59817,0,21
+176209,33638.22949,39321.67858,0,21
+176210,33841.70189,38652.49249,0,21
+176211,33193.09319,38098.41076,0,21
+176212,33363.015,37492.6731,0,21
+176213,32880.93325,36886.4183,0,21
+176214,32712.37814,36267.57834,0,21
+176215,32694.53548,35461.56841,0,21
+176216,32091.02093,34992.54377,0,21
+176217,32274.99508,34406.07825,0,21
+176218,31670.45305,33635.1704,0,21
+176219,31759.13002,33006.4974,0,21
+176220,31375.64254,32536.81986,0,21
+176221,36982.63373,30775.17705,0,21
+176222,36936.04753,30499.63309,0,21
+176223,36668.42582,29329.98114,0,21
+176224,36660.64088,29217.66379,0,21
+176225,36263.3598,28233.81313,0,21
+176226,36318.73096,27989.43953,0,21
+176227,35882.49426,26756.32836,0,21
+176228,35825.97183,26650.20026,0,21
+176229,35667.39323,25679.03848,0,21
+176230,35292.18677,25145.25449,0,21
+176231,35192.4126,439339.2364,0,21
+176232,34991.87586,23929.05495,0,21
+176233,34760.37724,23037.817,0,21
+176234,34515.71684,22186.12792,0,21
+176235,34526.86845,21662.40821,0,21
+176236,34014.25622,19726.86227,0,21
+176237,33940.80256,19106.18291,0,21
+176238,33873.82817,18458.09137,0,21
+176239,33528.15326,18265.71504,0,21
+176240,33187.07116,18024.38424,0,21
+176241,33297.71483,17894.43498,0,21
+176242,32860.16427,17601.5434,0,21
+176243,32607.07418,17483.0096,0,21
+176244,32552.10726,17103.97853,0,21
+176245,32300.94809,17043.47874,0,21
+176246,32033.65896,16761.10926,0,21
+176247,31849.08049,16603.98082,0,21
+176248,31659.30482,16193.89799,0,21
+176249,31327.69941,16214.12872,0,21
+176250,31328.53935,15909.66949,0,21
+176251,30558.54592,15624.28797,0,21
+176252,30101.05036,15559.42844,0,21
+176253,29425.44216,15235.44603,0,21
+176254,28804.83067,15219.42399,0,21
+176255,28192.21299,14768.41486,0,21
+176256,27520.11016,14940.75684,0,21
+176257,26993.02575,14296.84179,0,21
+176258,26142.48924,14522.77145,0,21
+176259,25585.91887,14124.60603,0,21
+176260,24820.33117,13822.81295,0,21
+176261,24059.62158,14017.42186,0,21
+176262,23588.67334,13522.16141,0,21
+176263,22726.58434,13441.44735,0,21
+176264,22028.16484,13218.90065,0,21
+176265,21366.29375,13110.48743,0,21
+176266,20457.62966,12920.5298,0,21
+176267,19966.75801,12670.3942,0,21
+176268,18471.71016,428489.5585,0,21
+176269,17689.91328,12379.93387,0,21
+176270,16908.4908,12138.74573,0,21
+176271,16032.15101,11983.42253,0,21
+176272,15333.32909,11857.23471,0,21
+176273,14485.73564,11714.62553,0,21
+176274,13850.58544,11343.69317,0,21
+176275,12907.21905,11554.85142,0,21
+176276,12240.77871,11082.25515,0,21
+176277,11435.64327,11021.55251,0,21
+176278,10709.56862,10955.51955,0,21
+176279,9908.903711,10813.08359,0,21
+176280,9476.203248,10527.29571,0,21
+176281,8092.496188,11070.06473,0,21
+176282,7898.104818,10813.08418,0,21
+176283,7513.8897,10785.39909,0,21
+176284,7309.619206,10785.39925,0,21
+176285,6928.634408,10513.41808,0,21
+176286,6701.695007,10628.71028,0,21
+176287,6336.161764,10499.51684,0,21
+176288,6106.088469,10485.59166,0,21
+176289,5710.971423,10212.39146,0,21
+176290,5514.517459,10471.64272,0,21
+176291,5221.581891,10054.35692,0,21
+176292,4784.368517,10184.42119,0,21
+176293,4603.41816,10184.42133,0,21
+176294,4280.682493,9895.928382,0,21
+176295,3977.766525,9909.974636,0,21
+176296,3677.700566,10012.21908,0,21
+176297,3375.08855,9737.101081,0,21
+176298,3120.673493,9751.196552,0,21
+176299,2940.900577,9592.015255,0,21
+176300,2537.434125,9708.836147,0,21
+176301,2366.292261,9592.015477,0,21
+176302,2084.858059,9300.840352,0,21
+176303,1909.14273,9563.700361,0,21
+176304,1445.588155,9286.645107,0,21
+176305,1280.540779,9286.645202,0,21
+176306,1254.102188,9258.178134,0,21
+176307,1214.246909,9140.522522,0,21
+176308,1187.542815,9112.004254,0,21
+176309,1160.729572,9112.004339,0,21
+176310,1133.805385,8965.484224,0,21
+176311,1106.768372,8832.937239,0,21
+176312,1093.206982,8818.613506,0,21
+176313,1065.997009,8657.011109,0,21
+176314,1052.347968,8671.387401,0,21
+176315,1038.66917,8361.419874,0,21
+176316,1011.221101,8361.419935,0,21
+176317,983.6505275,8213.070829,0,21
+176318,983.650589,8213.070885,0,21
+176319,955.9550322,7915.238275,0,21
+176320,983.6507127,7900.700914,0,21
+176321,955.9551492,7765.743243,0,21
+176322,955.955208,7736.58588,0,21
+176323,928.1320459,7465.564525,0,21
+176324,928.1321017,7436.295815,0,21
+176325,900.1785706,7300.219328,0,21
+176326,886.1520317,7149.079959,0,21
+176327,872.091783,7119.641372,0,21
+176328,872.0918326,6845.527755,0,21
+176329,829.7046978,6830.765363,0,21
+176330,843.8686992,6678.307592,0,21
+176331,801.2706777,6525.403212,0,21
+176332,815.5058792,6510.553135,0,21
+176333,772.6914267,6218.21797,0,21
+176334,786.9997047,6203.308349,0,21
+176335,758.3457205,6048.977756,0,21
+176336,729.541005,6034.00768,0,21
+176337,743.9621573,5753.84741,0,21
+176338,715.0801813,5723.815248,0,21
+176339,700.5802831,5567.960381,0,21
+176340,700.5803895,5426.676806,0,21
+176341,1038.670861,9435.018152,0,21
+176342,1065.9989,9318.146999,0,21
+176343,1065.998778,9435.018548,0,21
+176344,1038.670522,9143.273284,0,21
+176345,1038.670281,9157.729508,0,21
+176346,1038.670862,8996.888442,0,21
+176347,997.4527305,8864.666131,0,21
+176348,997.4527261,8850.156119,0,21
+176349,997.452723,8821.053917,0,21
+176350,969.8198285,8570.195381,0,21
+176351,955.9561964,8407.827689,0,21
+176352,955.9561918,8526.417756,0,21
+176353,942.0606653,8259.658266,0,21
+176354,928.1329034,8111.116763,0,21
+176355,900.1792629,8230.333412,0,21
+176356,914.172549,7812.895586,0,21
+176357,900.1792514,7932.759269,0,21
+176358,872.0923134,7663.204304,0,21
+176359,872.0923068,7768.608273,0,21
+176360,857.9978781,7362.629005,0,21
+176361,843.8741278,7618.829933,0,21
+176362,843.8715284,7196.881737,0,21
+176363,815.5082192,7196.881798,0,21
+176364,815.5082088,7167.092422,0,21
+176365,815.5081994,6893.773238,0,21
+176366,787.0015779,7000.71978,0,21
+176367,801.2730243,6588.93962,0,21
+176368,801.2730175,6726.606106,0,21
+176369,801.2730111,6558.907517,0,21
+176370,772.6933192,6405.761167,0,21
+176371,772.693314,6267.251204,0,21
+176372,758.3477925,6390.667359,0,21
+176373,758.3477879,6113.211847,0,21
+176374,729.5427887,6237.031941,0,21
+176375,729.5427849,5958.695519,0,21
+176376,715.0821961,6082.929142,0,21
+176377,715.0821926,5928.348778,0,21
+176378,686.0419089,5788.502075,0,21
+176379,686.0419057,5928.348889,0,21
+176380,671.4609596,5758.02571,0,21
+176381,656.8386019,5632.966672,0,21
+176382,656.8385989,5758.025821,0,21
+176383,642.174136,5461.632251,0,21
+176384,612.715961,5602.424689,0,21
+176385,627.4668392,5461.632358,0,21
+176386,597.9206884,5430.95713,0,21
+176387,597.9206856,5461.632469,0,21
+176388,583.080195,5132.496844,0,21
+176389,568.1936058,5430.957295,0,21
+176390,568.1936031,5132.496947,0,21
+176391,538.2783887,5274.28539,0,21
+176392,553.2599893,4974.766985,0,21
+176393,523.2477575,5571.74993,0,21
+176394,508.1670203,5289.673901,0,21
+176395,508.1670177,5274.285614,0,21
+176396,493.0350212,5415.56936,0,21
+176397,508.1670123,5117.074754,0,21
+176398,477.8505415,5258.863215,0,21
+176399,493.0350131,5117.074867,0,21
+176400,462.6122824,5243.406199,0,21
+176401,91.69770462,845.4036558,0,21
+176402,56.30790806,900.5936101,0,21
+176403,56.30790761,704.3623702,0,21
+176404,38.15882208,720.8756741,0,21
+176405,19.54814805,671.1877648,0,21
+176406,19.54814803,687.8000265,0,21
+176407,0,654.5246484,0,21
+176408,0,671.1877633,0,21
+176409,0,637.8097021,0,21
+176410,0,637.809702,0,21
+176411,0,621.0418964,0,21
+176412,0,621.0418965,0,21
+176413,0,604.2201468,0,21
+176414,0,604.2201469,0,21
+176415,0,587.3433087,0,21
+176416,0,570.410172,0,21
+176417,0,587.3433086,0,21
+176418,0,553.4194551,0,21
+176419,0,553.4194549,0,21
+176420,0,536.3697979,0,21
+176421,0,553.4194544,0,21
+176422,0,519.2597542,0,21
+176423,0,519.2597538,0,21
+176424,0,502.087783,0,21
+176425,0,502.0877825,0,21
+176426,0,502.087782,0,21
+176427,0,467.5513578,0,21
+176428,0,484.852237,0,21
+176429,0,467.5513565,0,21
+176430,0,467.5513557,0,21
+176431,0,450.1832465,0,21
+176432,0,432.7458706,0,21
+176433,0,450.1832448,0,21
+176434,0,432.7458689,0,21
+176435,0,415.2370248,0,21
+176436,0,432.745867,0,21
+176437,0,397.6543257,0,21
+176438,0,415.237022,0,21
+176439,0,397.6543238,0,21
+176440,0,397.6543228,0,21
+176441,0,379.9951745,0,21
+176442,0,397.6543206,0,21
+176443,0,362.2567395,0,21
+176444,0,379.9951714,0,21
+176445,0,362.2567375,0,21
+176446,0,362.2567364,0,21
+176447,0,344.4359053,0,21
+176448,0,362.2567342,0,21
+176449,0,335.4935311,0,21
+176450,0,344.4359022,0,21
+176451,0,317.5425563,0,21
+176452,0,326.5292422,0,21
+176453,0,308.5329514,0,21
+176454,0,308.5329504,0,21
+176455,0,290.4427842,0,21
+176456,0,290.4427834,0,21
+176457,0,272.2539757,0,21
+176458,0,290.4427815,0,21
+176459,0,253.9611303,0,21
+176460,0,253.9611296,0,21
+176461,0,226.3130648,0,21
+176462,0,217.0377374,0,21
+176463,0,198.3917728,0,21
+176464,0,217.0377375,0,21
+176465,0,179.6103623,0,21
+176466,0,198.3917729,0,21
+176467,0,179.6103624,0,21
+176468,0,179.6103624,0,21
+176469,0,179.6103624,0,21
+176470,0,160.6816598,0,21
+176471,0,160.6816598,0,21
+176472,0,160.6816598,0,21
+176473,0,141.5910949,0,21
+176474,0,160.6816598,0,21
+176475,0,122.320274,0,21
+176476,0,141.5910949,0,21
+176477,0,122.320274,0,21
+176478,0,102.8451807,0,21
+176479,0,102.8451807,0,21
+176480,0,93.02125692,0,21
+176481,0,83.13300039,0,21
+176482,0,83.13300039,0,21
+176483,0,83.13300039,0,21
+176484,0,63.1358984,0,21
+176485,0,63.1358984,0,21
+176486,0,63.1358984,0,21
+176487,0,42.77673728,0,21
+176488,0,63.1358984,0,21
+176489,0,21.90586626,0,21
+176490,0,42.77673635,0,21
+176491,0,32.42035466,0,21
+176492,0,21.90586579,0,21
+176493,0,0,0,21
+176494,0,21.90586532,0,21
+176495,0,0,0,21
+176496,0,0,0,21
+176497,0,0,0,21
+176498,0,0,0,21
+176499,0,0,0,21
+176500,0,0,0,21
+176501,0,0,0,21
+176502,0,0,0,21
+176503,0,0,0,21
+176504,0,0,0,21
+176505,0,0,0,21
+176506,0,0,0,21
+176507,0,0,0,21
+176508,0,0,0,21
+176509,0,0,0,21
+176510,0,0,0,21
+176511,0,0,0,21
+176512,0,0,0,21
+176513,0,0,0,21
+176514,0,0,0,21
+176515,0,0,0,21
+176516,0,0,0,21
+176517,0,0,0,21
+176518,0,0,0,21
+176519,0,0,0,21
+176520,0,0,0,21
+176521,0,0,0,21
+176522,0,0,0,21
+176523,0,0,0,21
+176524,0,0,0,21
+176525,0,0,0,21
+176526,0,0,0,21
+176527,0,0,0,21
+176528,0,0,0,21
+176529,0,0,0,21
+176530,0,0,0,21
+176531,0,0,0,21
+176532,0,0,0,21
+176533,0,0,0,21
+176534,0,0,0,21
+176535,0,0,0,21
+176536,0,0,0,21
+176537,0,0,0,21
+176538,0,0,0,21
+176539,0,0,0,21
+176540,0,0,0,21
+176541,0,0,0,21
+176542,0,0,0,21
+176543,0,0,0,21
+176544,0,0,0,21
+176545,0,0,0,21
+176546,0,0,0,21
+176547,0,0,0,21
+176548,0,0,0,21
+176549,0,0,0,21
+176550,0,0,0,21
+176551,0,0,0,21
+176552,0,0,0,21
+176553,0,0,0,21
+176554,0,0,0,21
+176555,0,0,0,21
+176556,0,0,0,21
+176557,0,0,0,21
+176558,0,0,0,21
+176559,0,0,0,21
+176560,0,0,0,21
+176561,0,0,0,21
+176562,0,0,0,21
+176563,0,0,0,21
+176564,0,0,0,21
+176565,0,0,0,21
+176566,0,0,0,21
+176567,0,0,0,21
+176568,0,0,0,21
+176569,0,0,0,21
+176570,0,0,0,21
+176571,0,0,0,21
+176572,0,0,0,21
+176573,0,0,0,21
+176574,0,0,0,21
+176575,0,0,0,21
+176576,0,0,0,21
+176577,0,0,0,21
+176578,0,0,0,21
+176579,0,0,0,21
+176580,0,0,0,21
+176581,0,0,0,21
+176582,0,0,0,21
+176583,0,0,0,21
+176584,0,0,0,21
+176585,0,0,0,21
+176586,0,0,0,21
+176587,0,0,0,21
+176588,0,0,0,21
+176589,0,0,0,21
+176590,0,0,0,21
+176591,0,0,0,21
+176592,0,0,0,21
+176593,0,0,0,21
+176594,0,0,0,21
+176595,0,0,0,21
+176596,0,0,0,21
+176597,0,0,0,21
+176598,0,0,0,21
+176599,0,0,0,21
+176600,0,0,0,21
+176601,0,0,0,21
+176602,0,0,0,21
+176603,0,0,0,21
+176604,0,0,0,21
+176605,0,0,0,21
+176606,0,0,0,21
+176607,0,0,0,21
+176608,0,0,0,21
+176609,0,0,0,21
+176610,0,0,0,21
+176611,0,0,0,21
+176612,0,0,0,21
+176613,0,0,0,21
+176614,0,0,0,21
+176615,0,0,0,21
+176616,0,0,0,21
+176617,0,0,0,21
+176618,0,0,0,21
+176619,0,0,0,21
+176620,0,0,0,21
+176621,0,0,0,21
+176622,0,0,0,21
+176623,0,0,0,21
+176624,0,0,0,21
+176625,0,0,0,21
+176626,0,0,0,21
+176627,0,0,0,21
+176628,0,0,0,21
+176629,0,0,0,21
+176630,0,0,0,21
+176631,0,0,0,21
+176632,0,0,0,21
+176633,0,0,0,21
+176634,0,0,0,21
+176635,0,0,0,21
+176636,0,0,0,21
+176637,0,0,0,21
+176638,0,0,0,21
+176639,0,0,0,21
+176640,0,0,0,21
+176641,0,0,0,21
+176642,0,0,0,21
+176643,0,0,0,21
+176644,0,0,0,21
+176645,0,0,0,21
+176646,0,0,0,21
+176647,0,0,0,21
+176648,0,0,0,21
+176649,0,0,0,21
+176650,0,0,0,21
+176651,0,0,0,21
+176652,0,0,0,21
+176653,0,0,0,21
+176654,0,0,0,21
+176655,0,0,0,21
+176656,0,0,0,21
+176657,0,0,0,21
+176658,0,0,0,21
+176659,0,0,0,21
+176660,0,0,0,21
+176661,0,0,0,21
+176662,0,0,0,21
+176663,0,0,0,21
+176664,0,0,0,21
+176665,0,0,0,21
+176666,0,0,0,21
+176667,0,0,0,21
+176668,0,0,0,21
+176669,0,144.5134539,0,21
+176670,0,104.9777858,0,21
+176671,0,144.5134527,0,21
+176672,0,163.990266,0,21
+176673,0,173.6650279,0,21
+176674,0,202.4576859,0,21
+176675,0,221.4752985,0,21
+176676,0,240.3629398,0,21
+176677,0,259.1291023,0,21
+176678,0,277.7810602,0,21
+176679,0,296.3251188,0,21
+176680,0,314.7668004,0,21
+176681,0,333.1109841,0,21
+176682,0,342.247889,0,21
+176683,0,369.5237895,0,21
+176684,0,387.5998218,0,21
+176685,0,405.5933003,0,21
+176686,0,414.5599978,0,21
+176687,0,441.3439764,0,21
+176688,0,459.1062822,0,21
+176689,0,459.1062766,0,21
+176690,0,494.4161408,0,21
+176691,0,511.9677269,0,21
+176692,0,511.9677202,0,21
+176693,0,1764.127225,0,21
+176694,0,1925.927468,0,21
+176695,0,1960.458297,0,21
+176696,0,2280.095649,0,21
+176697,0,2455.333512,0,21
+176698,0,2646.521354,0,21
+176699,0,2802.544703,0,21
+176700,0,3128.879858,0,21
+176701,1255.784047,6689.915424,0,21
+176702,5503.578926,7159.973207,0,21
+176703,3751.467874,7455.273698,0,21
+176704,4461.866206,7764.826806,0,21
+176705,4578.96065,7903.189997,0,21
+176706,4928.158112,8088.454961,0,21
+176707,5043.883171,8500.295717,0,21
+176708,5389.120369,8652.558589,0,21
+176709,5696.976279,8820.052686,0,21
+176710,5875.329534,9107.098654,0,21
+176711,6088.540449,9257.877965,0,21
+176712,6427.447838,9558.363089,0,21
+176713,6459.83186,9826.611876,0,21
+176714,6828.258362,9857.443485,0,21
+176715,6939.844713,10139.82073,0,21
+176716,7209.691445,10420.95536,0,21
+176717,7209.674345,10583.97395,0,21
+176718,7438.880876,10716.13749,0,21
+176719,7588.163362,10848.01141,0,21
+176720,7807.996762,11025.19612,0,21
+176721,7963.803555,11272.35603,0,21
+176722,8291.007131,11317.75907,0,21
+176723,8321.548636,11709.16831,0,21
+176724,8661.827422,12146.41054,0,21
+176725,8692.036974,12320.05335,0,21
+176726,9137.342591,12434.9823,0,21
+176727,9045.081112,12838.00634,0,21
+176728,9395.933314,13123.18192,0,21
+176729,9623.714762,13180.0914,0,21
+176730,9645.867175,13535.0141,0,21
+176731,10091.31488,13562.49413,0,21
+176732,10000.428,13844.78347,0,21
+176733,10345.57498,13955.67572,0,21
+176734,10569.73862,14350.97356,0,21
+176735,10584.20967,14319.39298,0,21
+176736,10926.01955,14839.07339,0,21
+176737,11044.30816,14681.10081,0,21
+176738,11265.92221,15225.09797,0,21
+176739,11397.7901,15265.87203,0,21
+176740,11515.16077,15457.72134,0,21
+176741,11954.28756,15648.9659,0,21
+176742,11749.22905,15952.93681,0,21
+176743,12302.64435,16102.87979,0,21
+176744,12200.75018,16317.91464,0,21
+176745,12533.80888,16456.16782,0,21
+176746,12649.07295,16832.91668,0,21
+176747,12878.97175,17132.76182,0,21
+176748,12892.7745,17280.49025,0,21
+176749,13308.86685,17369.35943,0,21
+176750,13336.30521,17775.26622,0,21
+176751,13450.13045,17828.37674,0,21
+176752,13763.22963,18145.52944,0,21
+176753,13790.41064,18295.33825,0,21
+176754,14101.92728,18344.0918,0,21
+176755,14214.43714,18663.15327,0,21
+176756,14241.37174,18952.91436,0,21
+176757,14649.17648,19548.92884,0,21
+176758,14675.9303,22745.24578,0,21
+176759,14872.16678,21758.41117,0,21
+176760,15120.9726,22852.09998,0,21
+176761,15510.31856,23739.41011,0,21
+176762,15355.50814,24295.72677,0,21
+176763,15743.65434,25086.96033,0,21
+176764,15963.06437,25744.32832,0,21
+176765,15879.63799,26171.41412,0,21
+176766,16194.79603,27388.58224,0,21
+176767,16399.77538,27426.1672,0,21
+176768,16412.75031,28239.821,0,21
+176769,16725.48894,29168.53838,0,21
+176770,16833.71878,29614.99524,0,21
+176771,16887.523,30173.95281,0,21
+176772,17386.3269,31276.86779,0,21
+176773,17163.74723,31496.32948,0,21
+176774,17699.04113,32564.76629,0,21
+176775,17613.72217,32615.95051,0,21
+176776,17867.12428,33644.406,0,21
+176777,18063.96336,34281.53387,0,21
+176778,18298.06078,34337.12804,0,21
+176779,18311.67953,35541.77243,0,21
+176780,18536.27579,35744.58399,0,21
+176781,18595.76888,36385.03955,0,21
+176782,18959.35735,36843.01066,0,21
+176783,18997.45949,37599.29726,0,21
+176784,19051.68383,38034.94183,0,21
+176785,19421.71032,38612.05947,0,21
+176786,19480.02079,38955.20075,0,21
+176787,19668.2261,39982.67118,0,21
+176788,19717.82272,40072.77566,0,21
+176789,20113.52201,41002.33779,0,21
+176790,19942.58738,41507.63706,0,21
+176791,20365.69288,41999.2368,0,21
+176792,20369.701,42688.21613,0,21
+176793,20600.61836,43084.29249,0,21
+176794,20798.48527,43426.36795,0,21
+176795,20834.76272,44105.53539,0,21
+176796,21052.13598,44276.49048,0,21
+176797,21240.81404,45184.38588,0,21
+176798,21292.81905,45308.51283,0,21
+176799,21492.91307,46262.91806,0,21
+176800,21692.47643,46270.26125,0,21
+176801,21837.57567,47214.12653,0,21
+176802,21923.21468,47434.05807,0,21
+176803,22164.93429,47941.83584,0,21
+176804,22157.10884,48602.31642,0,21
+176805,22571.9084,48843.00621,0,21
+176806,22413.72335,49678.07409,0,21
+176807,22784.24904,50018.03867,0,21
+176808,22831.0924,50738.19168,0,21
+176809,23027.07811,50890.07127,0,21
+176810,23238.38396,51968.19415,0,21
+176811,23253.73966,51861.52849,0,21
+176812,23452.82255,52935.22484,0,21
+176813,23681.8956,53123.15444,0,21
+176814,23693.44669,53626.95411,0,21
+176815,23895.09302,54204.37352,0,21
+176816,24100.13855,54695.51833,0,21
+176817,24138.16734,55041.00056,0,21
+176818,24319.72737,55897.61729,0,21
+176819,24531.17258,55960.90403,0,21
+176820,24568.92479,56686.51801,0,21
+176821,25359.98789,58385.27757,0,21
+176822,25609.30257,59471.56228,0,21
+176823,25780.23495,59760.7613,0,21
+176824,26010.11711,60249.02467,0,21
+176825,26220.47965,60737.70402,0,21
+176826,26231.61853,61371.8311,0,21
+176827,26643.75689,62031.14603,0,21
+176828,26801.49795,61988.40571,0,21
+176829,26874.43087,62906.03292,0,21
+176830,27068.25409,63090.40692,0,21
+176831,27414.68657,63942.45322,0,21
+176832,27874.20117,63864.94114,0,21
+176833,27917.59414,65035.22927,0,21
+176834,28421.7824,64719.69963,0,21
+176835,28321.08232,65748.90909,0,21
+176836,28658.15111,65842.92246,0,21
+176837,29033.69018,66814.4253,0,21
+176838,29397.24516,66597.16389,0,21
+176839,29401.74916,67502.32422,0,21
+176840,29887.83472,67861.81331,0,21
+176841,29808.12587,68420.06041,0,21
+176842,30628.45887,68418.23619,0,21
+176843,30512.31603,69056.18642,0,21
+176844,31019.78753,69564.66095,0,21
+176845,31141.6005,69601.02216,0,21
+176846,31419.26171,70199.68181,0,21
+176847,31494.55784,70351.00518,0,21
+176848,31974.54383,71448.88829,0,21
+176849,32038.15475,71012.95503,0,21
+176850,32359.04644,71948.94761,0,21
+176851,32564.76657,72256.21147,0,21
+176852,32712.16586,72858.83857,0,21
+176853,33125.33693,73066.46732,0,21
+176854,33040.91294,73560.02619,0,21
+176855,33634.41325,73964.65871,0,21
+176856,33448.49497,74219.93057,0,21
+176857,33969.38037,74984.9131,0,21
+176858,34115.37258,74730.86761,0,21
+176859,34358.75019,75842.00289,0,21
+176860,34426.47677,75924.5915,0,21
+176861,34713.77112,76387.0547,0,21
+176862,34938.63742,76718.90785,0,21
+176863,35200.40758,77247.84807,0,21
+176864,35310.46787,77631.26958,0,21
+176865,35541.25355,77689.28204,0,21
+176866,35616.43376,78834.32017,0,21
+176867,36032.39798,78553.45093,0,21
+176868,36130.22758,79338.62536,0,21
+176869,36226.41653,79545.348,0,21
+176870,36574.92462,79831.56409,0,21
+176871,36726.1835,80814.1796,0,21
+176872,39063.30467,80314.98858,0,21
+176873,39343.57489,81575.16992,0,21
+176874,39848.69643,81203.1579,0,21
+176875,40364.05708,82261.6414,0,21
+176876,40994.09924,82209.46981,0,21
+176877,41405.50338,82900.96928,0,21
+176878,41823.83807,83032.12909,0,21
+176879,42463.57828,83810.46525,0,21
+176880,45930.49334,83646.74673,0,21
+176881,44928.60746,501216.4357,0,21
+176882,45994.77564,84851.29736,0,21
+176883,46815.54394,85158.63512,0,21
+176884,47357.00546,87290.29612,0,21
+176885,48079.16075,87010.71686,0,21
+176886,48694.64193,88161.88122,0,21
+176887,49559.27824,88216.22056,0,21
+176888,49996.61343,89355.16822,0,21
+176889,50854.71169,90070.49868,0,21
+176890,51300.65932,90175.06185,0,21
+176891,51920.66138,91197.64027,0,21
+176892,52681.79639,92585.88741,0,21
+176893,55850.17112,93039.77648,0,21
+176894,56106.05507,94240.2872,0,21
+176895,57160.40152,94368.75409,0,21
+176896,57957.36621,95758.66246,0,21
+176897,59288.9458,96153.82272,0,21
+176898,59942.68145,97027.78293,0,21
+176899,61342.45144,97922.97328,0,21
+176900,61805.6986,98950.43487,0,21
+176901,63018.90154,99597.08677,0,21
+176902,63749.08101,101124.4289,0,21
+176903,64583.42614,101923.282,0,21
+176904,65470.56349,102500.1985,0,21
+176905,66646.61751,103873.9807,0,21
+176906,67164.25475,104632.0989,0,21
+176907,68051.26102,105551.7937,0,21
+176908,69119.10779,106570.2357,0,21
+176909,69790.64747,107666.0912,0,21
+176910,70444.59887,108729.6807,0,21
+176911,71565.04563,109902.5701,0,21
+176912,72099.3302,110257.782,0,21
+176913,73188.06286,111394.0539,0,21
+176914,73634.90777,111812.6534,0,21
+176915,74879.76725,112571.1997,0,21
+176916,75246.80182,113744.8518,0,21
+176917,76009.28991,113892.0114,0,21
+176918,76877.73459,116184.4831,0,21
+176919,77878.43285,119512.7443,0,21
+176920,78245.52396,119433.5294,0,21
+176921,79264.90077,121133.7376,0,21
+176922,79636.64541,122062.4182,0,21
+176923,80837.65927,123488.6884,0,21
+176924,81124.01924,124465.1133,0,21
+176925,82285.54457,125505.4874,0,21
+176926,82658.7856,126851.9869,0,21
+176927,83251.7492,127975.1858,0,21
+176928,84334.60932,128938.3199,0,21
+176929,84704.12238,130025.4959,0,21
+176930,85506.67433,131161.5505,0,21
+176931,86282.74619,132401.6949,0,21
+176932,86726.54386,133100.2292,0,21
+176933,87663.54333,134405.3491,0,21
+176934,88167.79037,135079.9113,0,21
+176935,88743.87375,136651.6867,0,21
+176936,89629.67489,137333.6705,0,21
+176937,90111.55612,138432.7941,0,21
+176938,90759.10967,139196.3628,0,21
+176939,91701.18223,140511.4707,0,21
+176940,91740.98967,141412.0208,0,21
+176941,0,0,0,21
+176942,0,132.6362185,0,21
+176943,0,0,0,21
+176944,0,0,0,21
+176945,0,0,883311.0027,21
+176946,0,368507.5746,0,21
+176947,339829.3897,0,0,21
+176948,0,0,0,21
+176949,0,433014.8431,0,21
+176950,0,0,0,21
+176951,0,0,0,21
+176952,0,0,0,21
+176953,0,0,0,21
+176954,0,0,0,21
+176955,0,0,0,21
+176956,0,0,0,21
+176957,0,0,0,21
+176958,0,0,0,21
+176959,0,0,0,21
+176960,0,0,0,21
+176961,0,0,0,21
+176962,0,0,0,21
+176963,0,0,0,21
+176964,0,0,0,21
+176965,0,0,0,21
+176966,0,0,0,21
+176967,0,0,0,21
+176968,0,0,0,21
+176969,0,0,0,21
+176970,0,0,0,21
+176971,0,0,0,21
+176972,0,0,0,21
+176973,0,0,0,21
+176974,0,432730.8776,0,21
+176975,0,0,0,21
+176976,0,0,0,21
+176977,0,0,0,21
+176978,0,0,0,21
+176979,0,0,864668.5363,21
+176980,0,0,0,21
+176981,0,368427.2868,0,21
+176982,0,0,0,21
+176983,339852.0143,0,0,21
+176984,0,0,0,21
+176985,0,432186.4895,0,21
+176986,0,0,0,21
+176987,0,0,0,21
+176988,0,0,0,21
+176989,0,0,0,21
+176990,0,0,0,21
+176991,0,0,0,21
+176992,0,0,0,21
+176993,0,0,0,21
+176994,0,0,0,21
+176995,0,0,0,21
+176996,0,432054.8416,0,21
+176997,0,0,0,21
+176998,0,0,0,21
+176999,0,0,0,21
+177000,0,0,0,15.6
+177001,0,0,0,15.6
+177002,0,0,0,15.6
+177003,0,0,0,15.6
+177004,0,0,0,15.6
+177005,0,0,0,15.6
+177006,0,0,0,15.6
+177007,0,0,0,15.6
+177008,0,0,0,15.6
+177009,0,0,0,15.6
+177010,0,0,0,15.6
+177011,0,0,0,15.6
+177012,0,0,0,15.6
+177013,0,0,0,15.6
+177014,0,0,848465.3567,15.6
+177015,0,0,0,15.6
+177016,0,368425.2194,0,15.6
+177017,0,0,0,15.6
+177018,0,0,0,15.6
+177019,339848.9098,0,0,15.6
+177020,0,432288.5955,0,15.6
+177021,0,0,0,15.6
+177022,0,0,0,15.6
+177023,0,0,0,15.6
+177024,0,0,0,15.6
+177025,0,0,0,15.6
+177026,0,0,0,15.6
+177027,0,0,0,15.6
+177028,0,0,0,15.6
+177029,0,0,0,15.6
+177030,0,0,0,15.6
+177031,0,0,0,15.6
+177032,0,0,0,15.6
+177033,0,0,0,15.6
+177034,0,0,0,15.6
+177035,0,0,0,15.6
+177036,0,0,0,15.6
+177037,0,0,0,15.6
+177038,0,0,0,15.6
+177039,0,0,0,15.6
+177040,0,0,0,15.6
+177041,0,0,0,15.6
+177042,0,0,0,15.6
+177043,0,0,0,15.6
+177044,0,0,0,15.6
+177045,0,0,0,15.6
+177046,0,3.719382866,0,15.6
+177047,0,0,0,15.6
+177048,0,432165.1128,0,15.6
+177049,0,0,831474.7412,15.6
+177050,0,0,0,15.6
+177051,0,368423.8717,0,15.6
+177052,0,0,0,15.6
+177053,0,0,0,15.6
+177054,0,0,0,15.6
+177055,339823.7107,0,0,15.6
+177056,0,0,0,15.6
+177057,0,0,0,15.6
+177058,0,0,0,15.6
+177059,0,0,0,15.6
+177060,0,0,0,15.6
+177061,0,0,0,15.6
+177062,0,0,0,15.6
+177063,0,0,0,15.6
+177064,0,0,0,15.6
+177065,0,0,0,15.6
+177066,0,0,0,15.6
+177067,0,0,0,15.6
+177068,0,0,0,15.6
+177069,0,0,0,15.6
+177070,0,0,0,15.6
+177071,0,0,0,15.6
+177072,0,0,0,15.6
+177073,0,0,0,15.6
+177074,0,0,0,15.6
+177075,0,108.076919,0,15.6
+177076,0,0,0,15.6
+177077,0,0,0,15.6
+177078,0,0,0,15.6
+177079,0,0,0,15.6
+177080,0,0,0,15.6
+177081,0,0,0,15.6
+177082,0,237.8131017,0,15.6
+177083,0,0,0,15.6
+177084,0,0,818465.8492,15.6
+177085,0,0,0,15.6
+177086,0,368414.5919,0,15.6
+177087,0,0,0,15.6
+177088,0,0,0,15.6
+177089,0,0,0,15.6
+177090,0,0,0,15.6
+177091,0,0,0,15.6
+177092,339818.9449,0,0,15.6
+177093,0,0,0,15.6
+177094,0,235.518178,0,15.6
+177095,0,0,0,15.6
+177096,0,0,0,15.6
+177097,0,0,0,15.6
+177098,0,0,0,15.6
+177099,0,0,0,15.6
+177100,0,0,0,15.6
+177101,0,0,0,15.6
+177102,0,0,0,15.6
+177103,0,0,0,15.6
+177104,0,0,0,15.6
+177105,0,0,0,15.6
+177106,0,108.9049559,0,15.6
+177107,0,0,0,15.6
+177108,0,0,0,15.6
+177109,0,0,0,15.6
+177110,0,65.59657896,0,15.6
+177111,0,0,0,15.6
+177112,0,0,0,15.6
+177113,0,0,0,15.6
+177114,0,80.55418172,0,15.6
+177115,0,0,0,15.6
+177116,0,0,0,15.6
+177117,0,0,0,15.6
+177118,0,81.01314755,0,15.6
+177119,0,0,803603.9522,15.6
+177120,0,0,0,15.6
+177121,0,0,0,15.6
+177122,0,368480.6384,0,15.6
+177123,0,0,0,15.6
+177124,0,0,0,15.6
+177125,0,0,0,15.6
+177126,0,72.77354494,0,15.6
+177127,0,0,0,15.6
+177128,0,0,0,15.6
+177129,339824.2316,0,0,15.6
+177130,0,67.20617475,0,15.6
+177131,0,0,0,15.6
+177132,0,0,0,15.6
+177133,0,0,0,15.6
+177134,0,71.83315175,0,15.6
+177135,0,0,0,15.6
+177136,0,0,0,15.6
+177137,0,0,0,15.6
+177138,0,72.62013972,0,15.6
+177139,0,0,0,15.6
+177140,0,0,0,15.6
+177141,0,0,0,15.6
+177142,0,71.05324506,0,15.6
+177143,0,0,0,15.6
+177144,0,0,0,15.6
+177145,0,0,0,15.6
+177146,0,69.73465259,0,15.6
+177147,0,0,0,15.6
+177148,0,0,0,15.6
+177149,0,0,0,15.6
+177150,0,68.5978471,0,15.6
+177151,0,0,0,15.6
+177152,0,0,0,15.6
+177153,0,0,0,15.6
+177154,0,69.66543211,792867.2579,15.6
+177155,0,0,0,15.6
+177156,0,0,0,15.6
+177157,0,0,0,15.6
+177158,0,368480.0973,0,15.6
+177159,0,0,0,15.6
+177160,0,0,0,15.6
+177161,0,0,0,15.6
+177162,0,66.24181496,0,15.6
+177163,0,0,0,15.6
+177164,0,0,0,15.6
+177165,0,0,0,15.6
+177166,339849.6463,66.07901905,0,15.6
+177167,0,0,0,15.6
+177168,0,0,0,15.6
+177169,0,0,0,15.6
+177170,0,74.96895249,0,15.6
+177171,0,0,0,15.6
+177172,0,0,0,15.6
+177173,0,0,0,15.6
+177174,0,79.18372513,0,15.6
+177175,0,0,0,15.6
+177176,0,0,0,15.6
+177177,0,0,0,15.6
+177178,0,81.38989498,0,15.6
+177179,0,0,0,15.6
+177180,0,0,0,15.6
+177181,0,0,0,15.6
+177182,0,107.1314536,0,15.6
+177183,0,0,0,15.6
+177184,0,0,0,15.6
+177185,0,431577.9893,0,15.6
+177186,0,0,0,15.6
+177187,0,0,0,15.6
+177188,0,0,0,15.6
+177189,0,0,780592.2099,15.6
+177190,0,0,0,15.6
+177191,0,0,0,15.6
+177192,0,0,0,15.6
+177193,0,0,0,15.6
+177194,0,368408.2754,0,15.6
+177195,0,0,0,15.6
+177196,0,0,0,15.6
+177197,0,0,0,15.6
+177198,0,0,0,15.6
+177199,0,0,0,15.6
+177200,0,0,0,15.6
+177201,0,0,0,15.6
+177202,0,0,0,15.6
+177203,339844.4346,0,0,15.6
+177204,0,0,0,15.6
+177205,0,0,0,15.6
+177206,0,0,0,15.6
+177207,0,0,0,15.6
+177208,0,0,0,15.6
+177209,0,0,0,15.6
+177210,0,431327.1233,0,15.6
+177211,0,0,0,15.6
+177212,0,0,0,15.6
+177213,0,0,0,15.6
+177214,0,0,0,15.6
+177215,0,0,0,15.6
+177216,0,0,0,15.6
+177217,0,0,0,15.6
+177218,0,0,0,15.6
+177219,0,0,0,15.6
+177220,0,0,0,15.6
+177221,0,0,0,15.6
+177222,0,0,0,15.6
+177223,0,0,0,15.6
+177224,0,0,771899.2089,15.6
+177225,0,0,0,15.6
+177226,0,0,0,15.6
+177227,0,0,0,15.6
+177228,0,0,0,15.6
+177229,0,0,0,15.6
+177230,0,368385.0766,0,15.6
+177231,0,0,0,15.6
+177232,0,0,0,15.6
+177233,0,0,0,15.6
+177234,0,0,0,15.6
+177235,0,0,0,15.6
+177236,0,0,0,15.6
+177237,0,0,0,15.6
+177238,0,0,0,15.6
+177239,0,0,0,15.6
+177240,339819.8256,0,0,15.6
+177241,0,0,0,15.6
+177242,0,0,0,15.6
+177243,0,0,0,15.6
+177244,0,0,0,15.6
+177245,0,0,0,15.6
+177246,0,0,0,15.6
+177247,0,0,0,15.6
+177248,0,0,0,15.6
+177249,0,0,0,15.6
+177250,0,0,0,15.6
+177251,0,0,0,15.6
+177252,0,0,0,15.6
+177253,0,0,0,15.6
+177254,0,0,0,15.6
+177255,0,0,0,15.6
+177256,0,0,0,15.6
+177257,0,0,0,15.6
+177258,0,0,0,15.6
+177259,0,0,762530.3176,15.6
+177260,0,0,0,15.6
+177261,0,0,0,15.6
+177262,0,0,0,15.6
+177263,0,0,0,15.6
+177264,0,0,0,15.6
+177265,0,0,0,15.6
+177266,0,368368.9015,0,15.6
+177267,0,0,0,15.6
+177268,0,0,0,15.6
+177269,0,0,0,15.6
+177270,0,0,0,15.6
+177271,0,0,0,15.6
+177272,0,0,0,15.6
+177273,0,0,0,15.6
+177274,0,0,0,15.6
+177275,0,0,0,15.6
+177276,0,0,0,15.6
+177277,339755.9436,0,0,15.6
+177278,0,0,0,15.6
+177279,0,0,0,15.6
+177280,0,0,0,15.6
+177281,0,0,0,15.6
+177282,0,0,0,15.6
+177283,0,0,0,15.6
+177284,0,0,0,15.6
+177285,0,0,0,15.6
+177286,0,0,0,15.6
+177287,0,0,0,15.6
+177288,0,0,0,15.6
+177289,0,0,0,15.6
+177290,0,0,0,15.6
+177291,0,0,0,15.6
+177292,0,0,0,15.6
+177293,0,0,0,15.6
+177294,0,0,754173.2898,15.6
+177295,0,0,0,15.6
+177296,0,0,0,15.6
+177297,0,0,0,15.6
+177298,0,0,0,15.6
+177299,0,0,0,15.6
+177300,0,0,0,15.6
+177301,0,0,0,15.6
+177302,0,368356.6553,0,15.6
+177303,0,0,0,15.6
+177304,0,0,0,15.6
+177305,0,0,0,15.6
+177306,0,0,0,15.6
+177307,0,0,0,15.6
+177308,0,0,0,15.6
+177309,0,0,0,15.6
+177310,0,0,0,15.6
+177311,0,0,0,15.6
+177312,0,0,0,15.6
+177313,0,0,0,15.6
+177314,339714.3449,0,0,15.6
+177315,0,0,0,15.6
+177316,0,0,0,15.6
+177317,0,0,0,15.6
+177318,0,0,0,15.6
+177319,0,0,0,15.6
+177320,0,0,0,15.6
+177321,0,0,0,15.6
+177322,0,0,0,15.6
+177323,0,0,0,15.6
+177324,0,0,0,15.6
+177325,0,0,0,15.6
+177326,0,0,0,15.6
+177327,0,0,0,15.6
+177328,0,0,747567.5603,15.6
+177329,0,0,0,15.6
+177330,0,0,0,15.6
+177331,0,0,0,15.6
+177332,0,0,0,15.6
+177333,0,0,0,15.6
+177334,0,0,0,15.6
+177335,0,0,0,15.6
+177336,0,0,0,15.6
+177337,0,368351.1263,0,15.6
+177338,0,0,0,15.6
+177339,0,0,0,15.6
+177340,0,0,0,15.6
+177341,0,0,0,15.6
+177342,0,0,0,15.6
+177343,0,0,0,15.6
+177344,0,0,0,15.6
+177345,0,0,0,15.6
+177346,0,0,0,15.6
+177347,0,0,0,15.6
+177348,0,0,0,15.6
+177349,339710.5846,0,0,15.6
+177350,0,0,0,15.6
+177351,0,0,0,15.6
+177352,0,0,0,15.6
+177353,0,0,0,15.6
+177354,0,0,0,15.6
+177355,0,0,0,15.6
+177356,0,0,0,15.6
+177357,0,0,0,15.6
+177358,0,0,0,15.6
+177359,0,0,0,15.6
+177360,0,0,0,17.8
+177361,115686.7184,726630.9042,0,17.8
+177362,66507.24875,165767.8055,740426.0428,17.8
+177363,33646.13157,234316.4003,0,17.8
+177364,16433.19907,278300.8972,0,17.8
+177365,40159.18139,254244.759,0,17.8
+177366,31233.25506,251246.4918,0,17.8
+177367,30800.2681,251077.9799,0,17.8
+177368,31143.62799,250475.9033,0,17.8
+177369,31108.78761,249356.4653,0,17.8
+177370,27499.22589,241512.4237,0,17.8
+177371,27429.08759,240182.9234,0,17.8
+177372,27429.08698,608478.0989,0,17.8
+177373,27376.7655,240122.1356,0,17.8
+177374,27314.36481,238928.1343,0,17.8
+177375,27293.27698,239206.7833,0,17.8
+177376,27261.84848,238466.0337,0,17.8
+177377,27246.701,238435.0797,0,17.8
+177378,27198.62029,237614.5434,0,17.8
+177379,27176.5384,238198.5654,0,17.8
+177380,27161.4486,236873.5321,0,17.8
+177381,27137.46793,219009.0832,0,17.8
+177382,27137.46135,211587.4337,0,17.8
+177383,27126.09162,209358.3571,0,17.8
+177384,366805.4059,207929.7015,0,17.8
+177385,27069.17067,207364.236,0,17.8
+177386,27078.02296,205371.3234,0,17.8
+177387,27090.13372,203795.671,0,17.8
+177388,27027.32785,203022.5782,0,17.8
+177389,27062.76053,201468.6679,0,17.8
+177390,27045.05691,199869.8915,0,17.8
+177391,0,0,0,17.8
+177392,0,0,0,17.8
+177393,0,0,0,17.8
+177394,75973.01181,80524.03181,0,17.8
+177395,10551.31164,2372.694121,0,17.8
+177396,26942.20593,34994.16738,735089.4371,17.8
+177397,29199.10313,29963.21951,0,17.8
+177398,27018.53927,29034.79492,0,17.8
+177399,27113.26657,29148.82602,0,17.8
+177400,27073.61866,29151.38301,0,17.8
+177401,27080.31299,31783.81799,0,17.8
+177402,27108.93349,36105.40018,0,17.8
+177403,27085.74171,32511.24052,0,17.8
+177404,27116.44006,33725.13699,0,17.8
+177405,27085.7205,33651.95655,0,17.8
+177406,27132.96164,33531.54436,0,17.8
+177407,27084.71267,401956.7933,0,17.8
+177408,326925.5543,33473.50446,0,17.8
+177409,69950.70778,33419.44945,0,17.8
+177410,201852.126,33360.65265,0,17.8
+177411,181402.6181,33312.47936,0,17.8
+177412,176582.4468,37599.3675,0,17.8
+177413,178726.1484,37305.38018,0,17.8
+177414,178361.1597,36259.48801,0,17.8
+177415,178787.1875,36797.25366,0,17.8
+177416,179424.5534,36593.6879,0,17.8
+177417,181310.8405,36657.248,0,17.8
+177418,180545.9721,36570.54528,0,17.8
+177419,520742.9778,36407.36659,0,17.8
+177420,181282.963,36477.55154,0,20
+177421,1116309.675,1064927.826,146793.4555,20
+177422,426937.9533,163755.295,0,20
+177423,109320.5516,146079.7452,804.0420213,20
+177424,218323.914,300274.8089,1058.658138,20
+177425,327261.2654,258294.3926,14921.10925,20
+177426,246444.7181,264392.3489,18116.00647,20
+177427,256424.256,251496.7201,13611.20776,20
+177428,257995.2692,253821.6045,16547.61415,20
+177429,257556.5842,253345.7792,17682.91382,20
+177430,256942.176,250917.1168,18305.26085,20
+177431,249439.1526,249777.0657,18683.31839,20
+177432,247483.649,248317.6672,18935.74418,20
+177433,246669.3423,246797.7246,19652.61531,20
+177434,244937.4338,245538.2394,19746.65419,20
+177435,244776.7773,243773.7141,20415.59947,20
+177436,243353.8552,242770.0544,20612.2198,20
+177437,242713.3311,241186.1784,21079.16382,20
+177438,241533.835,240238.3615,21383.87567,20
+177439,241201.6165,239029.6606,22047.50673,20
+177440,239778.3914,237926.4407,22464.09276,20
+177441,239926.3229,237254.3364,22931.60112,20
+177442,238398.3284,235902.4855,23929.83394,20
+177443,237999.8806,234751.3556,23615.55675,20
+177444,237341.8588,234626.4568,24524.99439,20
+177445,236265.1199,232632.6194,24628.00987,20
+177446,235425.6957,232237.6738,25074.68046,20
+177447,235340.3592,231812.1915,25728.98848,20
+177448,233867.5911,229665.7372,25635.02525,20
+177449,233501.3951,229960.3035,26313.69236,20
+177450,232520.111,228550.8758,26711.28261,20
+177451,231283.2467,227292.9369,26870.59343,20
+177452,229933.9358,227339.8612,27175.49506,20
+177453,229536.08,226234.5549,27930.10517,20
+177454,227968.4654,225314.7139,27833.69019,20
+177455,227347.9729,225225.7016,28391.96348,20
+177456,226672.6015,223738.6973,28695.9036,20
+177457,225758.6539,223631.869,29016.26455,20
+177458,224719.2318,222506.2598,29258.63323,20
+177459,223635.7918,221907.213,29677.60535,20
+177460,222988.9315,221540.3883,30193.83512,20
+177461,221711.9467,220359.8871,30093.44771,20
+177462,220951.9505,220221.4632,30743.48966,20
+177463,219903.5026,219477.6441,31055.63494,20
+177464,219679.4292,218587.0697,31158.75528,20
+177465,217834.2116,218282.3895,31599.111,20
+177466,217523.1929,216706.5915,31907.34461,20
+177467,216331.8855,217277.132,32103.16417,20
+177468,215631.9236,216141.1504,32648.80551,20
+177469,214782.7356,215540.9949,32646.63294,20
+177470,213420.6974,215114.0532,33054.10395,20
+177471,212874.1447,213922.0627,33587.43784,20
+177472,211643.0536,214055.2045,28114.62403,20
+177473,210830.6361,213011.6454,27700.30871,20
+177474,210262.1531,212154.6927,27482.57661,20
+177475,208580.6083,212473.5443,27672.48059,20
+177476,208219.2697,211175.2497,27485.70432,20
+177477,207227.9912,210789.282,27636.8183,20
+177478,206365.3464,210393.9707,27728.26889,20
+177479,204945.2778,210137.0487,27615.38263,20
+177480,204432.5736,210329.1159,27704.97776,21
+177481,309479.358,265786.1699,22679.60807,21
+177482,304790.3168,262469.7796,22157.65293,21
+177483,302037.7433,261009.9807,22323.00745,21
+177484,299632.8147,258837.9634,21823.56106,21
+177485,295762.7259,257045.3347,21920.66526,21
+177486,293643.061,255360.0455,21997.51572,21
+177487,290176.5863,253409.5331,21571.21258,21
+177488,287333.1133,251613.8874,21715.57454,21
+177489,284481.4712,249715.4607,21757.57406,21
+177490,281241.9566,248202.2257,21528.64958,21
+177491,278584.4326,245915.4487,21561.31735,21
+177492,275034.4788,244801.2979,21474.17917,21
+177493,272752.0021,242371.3744,21472.42337,21
+177494,268971.034,240900.7552,21278.41899,21
+177495,266375.4429,238738.3673,21317.56399,21
+177496,263014.8402,237321.1915,21298.23585,21
+177497,260191.3552,235666.5278,21359.84667,21
+177498,257062.7586,233766.8532,21118.58977,21
+177499,253880.1099,231604.3953,21440.3627,21
+177500,251053.5443,230211.0947,21427.20418,21
+177501,247770.9536,228424.6844,21600.96981,21
+177502,244471.1652,226544.7998,21483.04601,21
+177503,241539.9233,225106.8352,21656.86628,21
+177504,238461.5642,222973.4445,21553.43939,21
+177505,235196.1181,221219.1496,21830.35756,21
+177506,232104.9827,219876.7443,21597.3225,21
+177507,229486.8986,218140.556,21898.49343,21
+177508,227018.2784,216138.0923,21643.87919,21
+177509,224621.1914,214296.0374,21930.71595,21
+177510,222371.2271,212716.4722,21853.16664,21
+177511,220042.7782,211195.6059,21710.71723,21
+177512,217752.1246,208917.7597,21465.69135,21
+177513,215573.685,206724.9944,21234.50222,21
+177514,213338.2389,205206.2841,20987.96972,21
+177515,211013.1849,202701.9644,20639.88618,21
+177516,208993.1734,200933.6671,20606.84899,21
+177517,206448.5161,197259.2787,20245.50522,21
+177518,204304.073,195634.8233,20110.58081,21
+177519,202206.4329,193605.5368,19614.61319,21
+177520,200000.7875,192608.1478,19737.74195,21
+177521,197782.1817,190948.5476,18991.46482,21
+177522,195343.8265,189228.9876,19216.7443,21
+177523,193366.5051,187933.3671,18732.89775,21
+177524,191073.0572,186333.861,18433.92257,21
+177525,188863.0578,184400.8966,18323.40862,21
+177526,186826.4788,183620.0735,17945.6097,21
+177527,184281.0551,181634.2795,17781.32764,21
+177528,182305.4103,180367.455,17535.01934,21
+177529,180156.2474,179003.9311,17260.30899,21
+177530,177926.5855,177261.5116,16866.02896,21
+177531,175786.9547,176192.4533,16726.35254,21
+177532,173505.8175,174294.2122,16482.0253,21
+177533,171766.568,173619.4179,16278.96596,21
+177534,168923.5869,173355.3886,15687.93894,21
+177535,167345.4965,172196.6929,15752.25818,21
+177536,164795.5206,171569.206,15244.64624,21
+177537,162882.3481,170945.3678,15075.18453,21
+177538,160683.0374,170875.6909,14811.19998,21
+177539,158970.4991,169516.9109,14267.43631,21
+177540,156504.876,170171.4899,14216.74001,21
+177541,86731.45039,98545.34638,438.4954156,21
+177542,80786.86631,93859.89725,309.8338318,21
+177543,77391.7892,92258.64797,293.5008717,21
+177544,74116.64015,91247.72999,244.1027832,21
+177545,70563.60343,90108.90048,227.4941962,21
+177546,67950.94981,88912.19821,210.8068722,21
+177547,66636.50353,88197.66727,168.7074474,21
+177548,65673.89014,87506.07718,160.216241,21
+177549,64510.92484,86324.74966,125.9736634,21
+177550,63550.18534,85575.41375,108.6655309,21
+177551,62303.61041,84916.91578,91.21094735,21
+177552,61304.72308,84097.5944,73.58623174,21
+177553,60558.01776,83684.31309,37.66692138,21
+177554,59118.80415,82816.46011,37.6669503,21
+177555,58831.45102,82401.32622,0,21
+177556,57877.22034,81596.27943,0,21
+177557,56946.58849,81147.22541,0,21
+177558,55651.22454,80353.5034,0,21
+177559,54854.73727,79899.06489,0,21
+177560,53932.81211,79073.57967,0,21
+177561,53042.06446,77988.66337,0,21
+177562,51896.72053,77386.66156,0,21
+177563,50965.18584,76972.88809,0,21
+177564,50236.80265,76446.32798,0,21
+177565,49022.72162,75630.08144,0,21
+177566,48207.36471,75375.18318,0,21
+177567,47207.2895,74804.6589,0,21
+177568,46164.5022,74011.86668,0,21
+177569,44835.56741,73598.43779,0,21
+177570,43800.99723,73175.48785,0,21
+177571,42676.71137,72547.56572,0,21
+177572,42602.87613,71822.98651,0,21
+177573,41875.92777,71633.51362,0,21
+177574,41318.87768,71578.18296,0,21
+177575,40357.20874,70503.33405,0,21
+177576,39580.08124,70078.51112,0,21
+177577,38696.37773,69857.24616,0,21
+177578,37836.32165,68620.47111,0,21
+177579,36966.45893,68707.05816,0,21
+177580,36291.32838,67672.54213,0,21
+177581,447828.7327,67339.11378,0,21
+177582,34740.37833,66734.71406,0,21
+177583,34157.47404,66333.93331,0,21
+177584,457682.5382,65677.25708,0,21
+177585,33086.17622,64904.79662,0,21
+177586,32448.72756,64808.32747,0,21
+177587,31924.67964,63814.77263,0,21
+177588,31398.56163,63647.28127,0,21
+177589,30827.03991,62838.4314,0,21
+177590,30103.51432,62598.03146,0,21
+177591,29848.80655,61754.11343,0,21
+177592,28977.32952,61811.02784,0,21
+177593,28695.27705,60476.2591,0,21
+177594,27947.69009,60811.15221,0,21
+177595,27387.65337,59699.8444,0,21
+177596,26971.87111,59478.31401,0,21
+177597,26347.80308,59068.86537,0,21
+177598,25961.62737,58514.77788,0,21
+177599,26039.87688,57839.90055,0,21
+177600,25409.36136,57465.82312,0,21
+177601,25533.44679,57050.2095,0,21
+177602,25060.39598,56725.16417,0,21
+177603,25007.14478,56179.88921,0,21
+177604,24542.33686,55766.37134,0,21
+177605,24653.47315,55402.59297,0,21
+177606,24018.66793,55055.07379,0,21
+177607,24115.06589,54299.00433,0,21
+177608,23661.10142,54345.63059,0,21
+177609,23381.202,53648.10116,0,21
+177610,23306.05128,53146.54553,0,21
+177611,23039.07945,52921.7493,0,21
+177612,22756.52539,52401.95412,0,21
+177613,22508.01533,52010.27346,0,21
+177614,22383.94859,51458.98432,0,21
+177615,21953.31814,51140.89671,0,21
+177616,21839.48577,50739.51728,0,21
+177617,21606.96172,50022.36906,0,21
+177618,21268.68483,50044.46394,0,21
+177619,21143.25124,48929.69576,0,21
+177620,20833.23631,49083.42919,0,21
+177621,20676.7568,48135.4413,0,21
+177622,20374.16709,47893.43983,0,21
+177623,20097.92504,47430.56914,0,21
+177624,19835.55929,46769.52613,0,21
+177625,19713.66063,46449.55964,0,21
+177626,19458.19793,45741.48534,0,21
+177627,19190.35348,45417.51707,0,21
+177628,18862.20334,44580.06033,0,21
+177629,18731.65536,44289.40637,0,21
+177630,18511.28951,43637.57632,0,21
+177631,18241.16501,43012.90193,0,21
+177632,17968.32367,42692.90287,0,21
+177633,17866.30705,41570.86927,0,21
+177634,17513.94778,41292.95915,0,21
+177635,17409.78941,40337.66385,0,21
+177636,17136.23045,39890.32316,0,21
+177637,16962.0232,39175.25565,0,21
+177638,16520.85233,38320.726,0,21
+177639,16325.42569,37614.81627,0,21
+177640,16067.09251,37179.32704,0,21
+177641,15962.1174,35960.22137,0,21
+177642,15682.00481,35552.92801,0,21
+177643,15390.76289,34655.17705,0,21
+177644,15326.01743,33755.93689,0,21
+177645,15000.88069,33134.6907,0,21
+177646,14772.3286,32182.12679,0,21
+177647,14641.07377,31434.41945,0,21
+177648,14389.86795,30569.9291,0,21
+177649,14071.37506,30189.20655,0,21
+177650,14016.07055,28845.95201,0,21
+177651,13822.54804,28276.06217,0,21
+177652,13430.10859,27280.62205,0,21
+177653,13340.02531,26341.48331,0,21
+177654,13156.28639,25493.67915,0,21
+177655,12876.92686,24387.68877,0,21
+177656,12668.6619,23635.02643,0,21
+177657,12505.68888,22544.42801,0,21
+177658,12307.53414,21623.59054,0,21
+177659,12013.35135,20681.89703,0,21
+177660,11825.41383,19707.54965,0,21
+177661,11316.1768,17478.98377,0,21
+177662,11041.10385,16792.39881,0,21
+177663,10946.24544,16423.62451,0,21
+177664,10802.35864,16244.98111,0,21
+177665,10586.1759,15779.62473,0,21
+177666,10320.20265,15593.68747,0,21
+177667,10247.20198,15372.41668,0,21
+177668,10163.50056,14950.11824,0,21
+177669,9772.333158,14903.39656,0,21
+177670,9821.943369,15056.94783,0,21
+177671,9514.528802,14113.72073,0,21
+177672,9330.443063,14088.72254,0,21
+177673,9157.453382,13580.01312,0,21
+177674,9093.197282,13570.33714,0,21
+177675,8770.686876,13043.1866,0,21
+177676,8732.574067,12876.54584,0,21
+177677,8516.849808,12654.63168,0,21
+177678,8354.264314,12329.52328,0,21
+177679,8036.496879,11944.51334,0,21
+177680,8102.634771,11678.39073,0,21
+177681,7789.95169,11521.74781,0,21
+177682,7607.753195,10991.36272,0,21
+177683,7554.627487,10984.45656,0,21
+177684,7305.723994,10613.30592,0,21
+177685,7248.929803,10356.34144,0,21
+177686,7159.754228,9964.459426,0,21
+177687,6857.661014,9874.236977,0,21
+177688,6640.457479,9458.603157,0,21
+177689,6488.082018,9427.404422,0,21
+177690,6475.667907,9149.317887,0,21
+177691,6231.728721,9135.299962,0,21
+177692,6194.295914,8841.817928,0,21
+177693,5961.416974,8841.811877,0,21
+177694,5806.817101,8813.65381,0,21
+177695,5689.480474,8398.880727,0,21
+177696,5521.291674,8518.634199,0,21
+177697,5415.852228,8370.567104,0,21
+177698,5390.516851,8222.138175,0,21
+177699,5259.340617,8073.316607,0,21
+177700,5127.735306,8059.077184,0,21
+177701,5102.225473,7774.521246,0,21
+177702,4850.415715,7895.552873,0,21
+177703,4691.749139,7595.856336,0,21
+177704,4571.142315,7595.862574,0,21
+177705,4532.420691,7308.945253,0,21
+177706,4167.758045,7431.004847,0,21
+177707,4263.86694,7265.659467,0,21
+177708,3870.144288,7006.004612,0,21
+177709,3967.101939,6948.000729,0,21
+177710,3596.146794,6519.193806,0,21
+177711,3680.982211,6504.606346,0,21
+177712,3293.29251,6351.042786,0,21
+177713,3280.086653,6336.395364,0,21
+177714,3114.183644,6042.484516,0,21
+177715,2987.350298,6167.625864,0,21
+177716,2833.119786,5872.735343,0,21
+177717,2548.748933,5857.973801,0,21
+177718,2664.563292,5702.391945,0,21
+177719,2247.081393,5561.109729,0,21
+177720,2233.577495,5657.84407,0,21
+177721,2364.706977,5560.936113,0,21
+177722,2351.21014,5813.513794,0,21
+177723,2074.209579,5531.442941,0,21
+177724,2047.000281,5531.443688,0,21
+177725,1751.243236,5501.655834,0,21
+177726,1886.160929,5344.929732,0,21
+177727,1448.717194,5344.93038,0,21
+177728,1559.672228,5187.655028,0,21
+177729,1280.108991,5187.655769,0,21
+177730,1238.519087,5014.783639,0,21
+177731,942.0478214,5014.784251,0,21
+177732,1052.034949,4999.722646,0,21
+177733,900.1676563,4856.330607,0,21
+177734,886.1410029,4682.150885,0,21
+177735,843.8574563,4826.113445,0,21
+177736,843.8573931,4682.152104,0,21
+177737,815.4950232,4507.255735,0,21
+177738,801.2598047,4651.80702,0,21
+177739,772.6814382,4346.874452,0,21
+177740,758.3363776,4492.036043,0,21
+177741,743.95346,4316.334287,0,21
+177742,729.5321882,4185.828051,0,21
+177743,686.0325729,4301.01471,0,21
+177744,700.5723027,4008.768467,0,21
+177745,656.8300202,4139.867586,0,21
+177746,642.1659239,3993.415583,0,21
+177747,627.4589908,3962.605669,0,21
+177748,597.9135717,3978.028403,0,21
+177749,597.9135403,3652.152468,0,21
+177750,568.1871669,3947.150005,0,21
+177751,538.2726242,3636.663833,0,21
+177752,553.2538566,3472.527441,0,21
+177753,508.1618774,3605.575379,0,21
+177754,508.161827,3307.56293,0,21
+177755,477.8459677,3126.091099,0,21
+177756,477.8459468,3260.65772,0,21
+177757,462.6079761,2959.29466,0,21
+177758,431.9650593,2927.839458,0,21
+177759,431.9650655,2775.769741,0,21
+177760,416.5570389,2759.985264,0,21
+177761,401.0890774,2421.040511,0,21
+177762,369.9658879,2575.217458,0,21
+177763,385.5593357,2249.771165,0,21
+177764,338.5789317,2233.830154,0,21
+177765,354.3064996,2061.169341,0,21
+177766,322.7805565,2045.122032,0,21
+177767,306.9086177,1711.095331,0,21
+177768,298.944102,1854.855992,0,21
+177769,290.9600107,1533.289929,0,21
+177770,258.8187513,1500.956223,0,21
+177771,258.8187453,1484.72066,0,21
+177772,242.6179692,1153.655969,0,21
+177773,226.3241432,1121.050855,0,21
+177774,226.3241386,1121.05103,0,21
+177775,193.4342908,737.3410554,0,21
+177776,193.4342875,917.0580474,0,21
+177777,176.8243767,720.8761628,0,21
+177778,160.0931202,687.8006825,0,21
+177779,143.2298387,704.3633208,0,21
+177780,143.2298369,654.5257633,0,21
+177781,493.02961,3126.294655,0,21
+177782,493.0296055,5008.109804,0,21
+177783,493.0296004,3984.392068,0,21
+177784,477.8454677,4130.185372,0,21
+177785,462.6075445,4098.654018,0,21
+177786,462.6075384,3968.645326,0,21
+177787,447.3144407,3774.723599,0,21
+177788,447.3144345,3806.408891,0,21
+177789,431.9646839,3742.881032,0,21
+177790,416.5566964,3479.67477,0,21
+177791,416.5566907,3595.749859,0,21
+177792,401.0887659,3283.284475,0,21
+177793,401.0887604,3431.893105,0,21
+177794,385.5590668,3101.798569,0,21
+177795,369.9656252,3117.862509,0,21
+177796,369.9656205,3069.544569,0,21
+177797,369.9656156,2935.45573,0,21
+177798,338.5787243,2935.473679,0,21
+177799,354.30628,3069.549462,0,21
+177800,322.7803839,2751.992479,0,21
+177801,322.7803803,2903.117018,0,21
+177802,322.7803767,2735.757241,0,21
+177803,306.9084624,2583.68851,0,21
+177804,306.9084591,2551.082001,0,21
+177805,274.9312232,2551.08061,0,21
+177806,298.9439546,2243.823162,0,21
+177807,274.9312182,2365.210583,0,21
+177808,258.8186526,2211.030343,0,21
+177809,274.9312133,2039.199291,0,21
+177810,242.617891,2039.199464,0,21
+177811,242.6178891,2006.122486,0,21
+177812,242.6178873,1866.007502,0,21
+177813,226.3240767,1832.833457,0,21
+177814,218.1405735,1691.30584,0,21
+177815,209.9316643,1737.294596,0,21
+177816,209.931663,1658.03101,0,21
+177817,193.4342475,1498.231636,0,21
+177818,193.4342464,1464.749504,0,21
+177819,176.8243458,1481.517105,0,21
+177820,176.824345,1286.198864,0,21
+177821,176.8243442,1303.020388,0,21
+177822,151.6787173,1269.322303,0,21
+177823,160.093096,1122.146081,0,21
+177824,143.2298221,1252.389508,0,21
+177825,143.2298216,1122.146278,0,21
+177826,126.2213824,1269.322475,0,21
+177827,126.221382,1252.389573,0,21
+177828,117.6577129,921.3249558,0,21
+177829,109.0511836,1252.389728,0,21
+177830,109.0511833,904.3347643,0,21
+177831,91.69755023,887.2853465,0,21
+177832,91.69754269,887.284699,0,21
+177833,74.13084352,887.284795,0,21
+177834,74.13084342,698.970656,0,21
+177835,47.28016964,681.7989859,0,21
+177836,56.3078511,698.9708694,0,21
+177837,28.92484997,664.5638781,0,21
+177838,38.1587977,502.0825299,0,21
+177839,19.54814233,467.5465399,0,21
+177840,19.54814233,484.8472266,0,21
+177841,0,83.12775428,0,21
+177842,0,63.13519746,0,21
+177843,0,63.13524528,0,21
+177844,0,32.42002358,0,21
+177845,0,32.42002483,0,21
+177846,0,11.16958887,0,21
+177847,0,0,0,21
+177848,0,0,0,21
+177849,0,0,0,21
+177850,0,0,0,21
+177851,0,0,0,21
+177852,0,0,0,21
+177853,0,0,0,21
+177854,0,0,0,21
+177855,0,0,0,21
+177856,0,0,0,21
+177857,0,0,0,21
+177858,0,0,0,21
+177859,0,0,0,21
+177860,0,0,0,21
+177861,0,0,0,21
+177862,0,0,0,21
+177863,0,0,0,21
+177864,0,0,0,21
+177865,0,0,0,21
+177866,0,0,0,21
+177867,0,0,0,21
+177868,0,0,0,21
+177869,0,0,0,21
+177870,0,0,0,21
+177871,0,0,0,21
+177872,0,0,0,21
+177873,0,0,0,21
+177874,0,0,0,21
+177875,0,0,0,21
+177876,0,0,0,21
+177877,0,0,0,21
+177878,0,0,0,21
+177879,0,0,0,21
+177880,0,0,0,21
+177881,0,0,0,21
+177882,0,0,0,21
+177883,0,0,0,21
+177884,0,0,0,21
+177885,0,0,0,21
+177886,0,0,0,21
+177887,0,0,0,21
+177888,0,0,0,21
+177889,0,0,0,21
+177890,0,0,0,21
+177891,0,0,0,21
+177892,0,0,0,21
+177893,0,0,0,21
+177894,0,0,0,21
+177895,0,0,0,21
+177896,0,0,0,21
+177897,0,0,0,21
+177898,0,0,0,21
+177899,0,0,0,21
+177900,0,0,0,21
+177901,0,0,0,21
+177902,0,0,0,21
+177903,0,0,0,21
+177904,0,0,0,21
+177905,0,0,0,21
+177906,0,0,0,21
+177907,0,0,0,21
+177908,0,0,0,21
+177909,0,0,0,21
+177910,0,0,0,21
+177911,0,0,0,21
+177912,0,0,0,21
+177913,0,0,0,21
+177914,0,0,0,21
+177915,0,0,0,21
+177916,0,0,0,21
+177917,0,0,0,21
+177918,0,0,0,21
+177919,0,0,0,21
+177920,0,0,0,21
+177921,0,0,0,21
+177922,0,0,0,21
+177923,0,0,0,21
+177924,0,0,0,21
+177925,0,0,0,21
+177926,0,0,0,21
+177927,0,0,0,21
+177928,0,0,0,21
+177929,0,0,0,21
+177930,0,0,0,21
+177931,0,0,0,21
+177932,0,0,0,21
+177933,0,0,0,21
+177934,0,0,0,21
+177935,0,0,0,21
+177936,0,0,0,21
+177937,0,0,0,21
+177938,0,0,0,21
+177939,0,0,0,21
+177940,0,0,0,21
+177941,0,0,0,21
+177942,0,0,0,21
+177943,0,0,0,21
+177944,0,0,0,21
+177945,0,0,0,21
+177946,0,0,0,21
+177947,0,0,0,21
+177948,0,0,0,21
+177949,0,0,0,21
+177950,0,0,0,21
+177951,0,0,0,21
+177952,0,0,0,21
+177953,0,0,0,21
+177954,0,0,0,21
+177955,0,0,0,21
+177956,0,0,0,21
+177957,0,0,0,21
+177958,0,0,0,21
+177959,0,0,0,21
+177960,0,0,0,21
+177961,0,0,0,21
+177962,0,0,0,21
+177963,0,0,0,21
+177964,0,0,0,21
+177965,0,0,0,21
+177966,0,0,0,21
+177967,0,0,0,21
+177968,0,0,0,21
+177969,0,0,0,21
+177970,0,0,0,21
+177971,0,0,0,21
+177972,0,0,0,21
+177973,0,0,0,21
+177974,0,0,0,21
+177975,0,0,0,21
+177976,0,0,0,21
+177977,0,0,0,21
+177978,0,0,0,21
+177979,0,0,0,21
+177980,0,0,0,21
+177981,0,0,0,21
+177982,0,0,0,21
+177983,0,0,0,21
+177984,0,0,0,21
+177985,0,0,0,21
+177986,0,0,0,21
+177987,0,0,0,21
+177988,0,0,0,21
+177989,0,0,0,21
+177990,0,0,0,21
+177991,0,0,0,21
+177992,0,0,0,21
+177993,0,0,0,21
+177994,0,0,0,21
+177995,0,0,0,21
+177996,0,0,0,21
+177997,0,0,0,21
+177998,0,0,0,21
+177999,0,0,0,21
+178000,0,0,0,21
+178001,0,0,0,21
+178002,0,0,0,21
+178003,0,0,0,21
+178004,0,0,0,21
+178005,0,0,0,21
+178006,0,0,0,21
+178007,0,0,0,21
+178008,0,0,0,21
+178009,0,0,0,21
+178010,0,0,0,21
+178011,0,0,0,21
+178012,0,0,0,21
+178013,0,0,0,21
+178014,0,0,0,21
+178015,0,0,0,21
+178016,0,0,0,21
+178017,0,0,0,21
+178018,0,0,0,21
+178019,0,0,0,21
+178020,0,0,0,21
+178021,0,0,0,21
+178022,0,0,0,21
+178023,0,0,0,21
+178024,0,0,0,21
+178025,0,0,0,21
+178026,0,0,0,21
+178027,0,0,0,21
+178028,0,0,0,21
+178029,0,0,0,21
+178030,0,0,0,21
+178031,0,0,0,21
+178032,0,0,0,21
+178033,0,0,0,21
+178034,0,0,0,21
+178035,0,0,0,21
+178036,0,0,0,21
+178037,0,0,0,21
+178038,0,0,0,21
+178039,0,0,0,21
+178040,0,0,0,21
+178041,0,0,0,21
+178042,0,0,0,21
+178043,0,0,0,21
+178044,0,0,0,21
+178045,0,0,0,21
+178046,0,0,0,21
+178047,0,0,0,21
+178048,0,0,0,21
+178049,0,0,0,21
+178050,0,0,0,21
+178051,0,0,0,21
+178052,0,0,0,21
+178053,0,0,0,21
+178054,0,0,0,21
+178055,0,0,0,21
+178056,0,0,0,21
+178057,0,0,0,21
+178058,0,0,0,21
+178059,0,0,0,21
+178060,0,0,0,21
+178061,0,0,0,21
+178062,0,0,0,21
+178063,0,0,0,21
+178064,0,0,0,21
+178065,0,0,0,21
+178066,0,0,0,21
+178067,0,0,0,21
+178068,0,0,0,21
+178069,0,0,0,21
+178070,0,0,0,21
+178071,0,0,0,21
+178072,0,0,0,21
+178073,0,0,0,21
+178074,0,0,0,21
+178075,0,0,0,21
+178076,0,0,0,21
+178077,0,0,0,21
+178078,0,0,0,21
+178079,0,0,0,21
+178080,0,0,0,21
+178081,0,0,0,21
+178082,0,0,0,21
+178083,0,0,0,21
+178084,0,0,0,21
+178085,0,0,0,21
+178086,0,0,0,21
+178087,0,0,0,21
+178088,0,0,0,21
+178089,0,0,0,21
+178090,0,0,0,21
+178091,0,0,0,21
+178092,0,0,0,21
+178093,0,0,0,21
+178094,0,0,0,21
+178095,0,0,0,21
+178096,0,0,0,21
+178097,0,0,0,21
+178098,0,0,0,21
+178099,0,0,0,21
+178100,0,0,0,21
+178101,0,0,0,21
+178102,0,0,0,21
+178103,0,0,0,21
+178104,0,0,0,21
+178105,0,0,0,21
+178106,0,0,0,21
+178107,0,0,0,21
+178108,0,0,0,21
+178109,0,0,0,21
+178110,0,0,0,21
+178111,0,0,0,21
+178112,0,0,0,21
+178113,0,0,0,21
+178114,0,0,0,21
+178115,0,0,0,21
+178116,0,0,0,21
+178117,0,0,0,21
+178118,0,0,0,21
+178119,0,0,0,21
+178120,0,0,0,21
+178121,0,0,0,21
+178122,0,0,0,21
+178123,0,0,0,21
+178124,0,0,0,21
+178125,0,0,0,21
+178126,0,0,0,21
+178127,0,0,0,21
+178128,0,0,0,21
+178129,0,0,0,21
+178130,0,0,0,21
+178131,0,0,0,21
+178132,0,0,0,21
+178133,0,0,0,21
+178134,0,0,0,21
+178135,0,0,0,21
+178136,0,0,0,21
+178137,0,0,0,21
+178138,0,0,0,21
+178139,0,0,0,21
+178140,0,0,0,21
+178141,0,0,0,21
+178142,0,0,0,21
+178143,0,0,0,21
+178144,0,0,0,21
+178145,0,0,0,21
+178146,0,0,0,21
+178147,0,0,0,21
+178148,0,0,0,21
+178149,0,0,0,21
+178150,0,0,0,21
+178151,0,0,0,21
+178152,0,0,0,21
+178153,0,0,0,21
+178154,0,0,0,21
+178155,0,0,0,21
+178156,0,0,0,21
+178157,0,0,0,21
+178158,0,0,0,21
+178159,0,0,0,21
+178160,0,0,0,21
+178161,0,0,0,21
+178162,0,0,0,21
+178163,0,0,0,21
+178164,0,0,0,21
+178165,0,0,0,21
+178166,0,0,0,21
+178167,0,0,0,21
+178168,0,0,0,21
+178169,0,0,0,21
+178170,0,0,0,21
+178171,0,0,0,21
+178172,0,0,0,21
+178173,0,0,0,21
+178174,0,0,0,21
+178175,0,0,0,21
+178176,0,0,0,21
+178177,0,0,0,21
+178178,0,0,0,21
+178179,0,0,0,21
+178180,0,0,0,21
+178181,0,0,0,21
+178182,0,0,0,21
+178183,0,0,0,21
+178184,0,0,0,21
+178185,0,0,0,21
+178186,0,0,0,21
+178187,0,0,0,21
+178188,0,0,0,21
+178189,0,0,0,21
+178190,0,0,0,21
+178191,0,0,0,21
+178192,0,0,0,21
+178193,0,0,0,21
+178194,0,0,0,21
+178195,0,0,0,21
+178196,0,0,0,21
+178197,0,0,0,21
+178198,0,0,0,21
+178199,855.2865048,0,0,21
+178200,1387.07024,0,0,21
+178201,1387.070297,0,0,21
+178202,1517.429944,0,0,21
+178203,1903.508255,0,0,21
+178204,2030.702972,954.2866205,0,21
+178205,2157.21673,1361.695066,0,21
+178206,2532.98995,1361.695021,0,21
+178207,2532.989958,1522.13243,0,21
+178208,2903.64977,2013.056882,0,21
+178209,2903.649782,2131.105223,0,21
+178210,3269.74118,2471.510298,0,21
+178211,3390.831997,2509.977526,0,21
+178212,3511.475986,2817.607609,0,21
+178213,3870.846497,3178.764132,0,21
+178214,3870.846521,3178.764129,0,21
+178215,4226.595302,3348.567298,0,21
+178216,4226.595333,3844.167489,0,21
+178217,4578.965854,3704.162608,0,21
+178218,4578.965893,4168.082339,0,21
+178219,4928.163735,4186.243871,0,21
+178220,5043.889174,4516.509478,0,21
+178221,5043.889225,4680.698408,0,21
+178222,5503.577511,4844.281993,0,21
+178223,5560.116576,5007.276601,0,21
+178224,5828.388491,5331.559182,0,21
+178225,6110.615822,5484.107536,0,21
+178226,6160.77932,5662.375167,0,21
+178227,6411.122919,5973.668935,0,21
+178228,6556.098054,6115.624923,0,21
+178229,6796.229127,6291.682048,0,21
+178230,6939.854667,6467.082322,0,21
+178231,7178.134197,6748.062837,0,21
+178232,7320.507279,6765.124379,0,21
+178233,7462.341996,7095.367693,0,21
+178234,7682.673938,7373.213678,0,21
+178235,7838.912966,7390.059583,0,21
+178236,7963.820573,7699.952546,0,21
+178237,8212.737223,7854.27863,0,21
+178238,8430.163918,8024.796383,0,21
+178239,8483.080529,8298.299018,0,21
+178240,8707.085246,8484.044176,0,21
+178241,8829.966984,8755.510655,0,21
+178242,8967.44922,8939.848366,0,21
+178243,9211.751836,9058.440471,0,21
+178244,9440.303162,9241.869817,0,21
+178245,9454.99206,9526.304749,0,21
+178246,9697.191236,9676.110813,0,21
+178247,9726.261525,9825.569693,0,21
+178248,10149.64676,10123.46173,0,21
+178249,9981.661988,10139.44867,0,21
+178250,10403.39578,10420.00972,0,21
+178251,10446.32485,10715.24253,0,21
+178252,10655.97643,10731.07329,0,21
+178253,10684.40182,11009.18572,0,21
+178254,10921.53409,11024.94081,0,21
+178255,11129.61037,11447.73832,0,21
+178256,11171.74758,11593.30411,0,21
+178257,11379.0536,11608.91226,0,21
+178258,11524.23861,11899.06248,0,21
+178259,11627.41799,12172.55058,0,21
+178260,11860.92171,12188.01719,0,21
+178261,12542.60364,13017.35385,0,21
+178262,12657.78184,13190.23895,0,21
+178263,13002.07162,13585.25627,0,21
+178264,13015.58611,13615.55538,0,21
+178265,13344.52546,14008.32222,0,21
+178266,13458.27494,14163.84853,0,21
+178267,13685.17744,14304.04082,0,21
+178268,13768.12482,14583.6424,0,21
+178269,14430.29465,14862.21078,0,21
+178270,14243.96175,14986.25653,0,21
+178271,14652.16621,15584.41775,0,21
+178272,14793.25087,15715.16468,0,21
+178273,15335.89089,16454.44199,0,21
+178274,15490.71585,16484.43032,0,21
+178275,15984.04714,16857.96861,0,21
+178276,15953.18654,17093.11688,0,21
+178277,16355.2358,17598.16004,0,21
+178278,16435.8958,17668.93485,0,21
+178279,16697.74236,18033.75223,0,21
+178280,16955.88461,18469.82483,0,21
+178281,17014.29183,18615.89137,0,21
+178282,18096.19873,19219.56671,0,21
+178283,19915.23289,19284.70909,0,21
+178284,19211.88649,19605.22482,0,21
+178285,20241.85131,20053.2876,0,21
+178286,20482.14626,20172.34143,0,21
+178287,21262.07557,20801.09505,0,21
+178288,21697.72927,20645.16799,0,21
+178289,22211.61202,21386.73472,0,21
+178290,22560.03476,21361.00507,0,21
+178291,23095.02627,21982.33418,0,21
+178292,23700.72005,21955.18518,0,21
+178293,23933.41001,22393.16003,0,21
+178294,24401.04142,26456.40692,0,21
+178295,25036.2285,25048.90742,0,21
+178296,25239.58728,26506.56022,0,21
+178297,25956.00271,27026.03893,0,21
+178298,26042.1661,28020.77025,0,21
+178299,26550.37957,28387.34084,0,21
+178300,27108.06192,28922.90296,0,21
+178301,27450.6333,30129.54035,0,21
+178302,27807.99231,30383.30265,0,21
+178303,28293.85831,31275.15219,0,21
+178304,28642.66014,31775.27323,0,21
+178305,29131.90695,32340.97923,0,21
+178306,29191.29942,33327.20404,0,21
+178307,30144.15742,33623.98945,0,21
+178308,30120.50916,34397.90173,0,21
+178309,30499.04631,35157.0142,0,21
+178310,31078.70478,35439.82211,0,21
+178311,31367.89251,36525.57177,0,21
+178312,31600.95388,36609.75701,0,21
+178313,32133.77629,37588.99394,0,21
+178314,32465.47099,38183.65004,0,21
+178315,32823.32758,38719.98847,0,21
+178316,33420.07209,39224.93441,0,21
+178317,33702.1087,40068.65583,0,21
+178318,34068.51257,40479.74957,0,21
+178319,34574.10578,40988.827,0,21
+178320,34962.711,41680.27355,0,21
+178321,35189.6812,42456.97654,0,21
+178322,35612.31565,42930.10035,0,21
+178323,35969.65431,43666.75968,0,21
+178324,36194.14098,44188.57214,0,21
+178325,36816.14304,44890.84598,0,21
+178326,36869.58882,45509.23734,0,21
+178327,37473.45049,45915.21845,0,21
+178328,37733.21961,47016.77525,0,21
+178329,37837.65966,47134.97489,0,21
+178330,38482.72336,48050.73426,0,21
+178331,38763.42623,48489.84975,0,21
+178332,39748.65713,49437.35765,0,21
+178333,41004.30179,50107.49373,0,21
+178334,40834.39577,50915.60319,0,21
+178335,41341.78395,51158.89023,0,21
+178336,42243.0831,52268.37853,0,21
+178337,42331.27031,52613.78734,0,21
+178338,42980.83146,53458.76998,0,21
+178339,43532.49575,54059.24267,0,21
+178340,43922.54448,55069.05227,0,21
+178341,44363.08451,55387.78064,0,21
+178342,44833.64065,59409.89931,0,21
+178343,45187.0257,58710.54363,0,21
+178344,45836.16993,60014.24839,0,21
+178345,46138.90187,61057.2134,0,21
+178346,46738.60015,62306.5391,0,21
+178347,46992.25366,63029.02503,0,21
+178348,47669.18359,63974.18527,0,21
+178349,47688.1769,64960.31906,0,21
+178350,48654.30568,67939.16192,0,21
+178351,48533.60651,70057.72902,0,21
+178352,49409.95099,70516.29532,0,21
+178353,49497.71703,72040.6656,0,21
+178354,50209.32268,490595.3323,0,21
+178355,50505.51292,74821.98776,0,21
+178356,50781.85654,75637.50732,0,21
+178357,51443.90864,77168.18313,0,21
+178358,51677.45965,78420.14107,0,21
+178359,52037.92023,79203.4368,0,21
+178360,52644.6288,80898.72393,0,21
+178361,52876.35495,81555.73007,0,21
+178362,53426.12262,83262.29606,0,21
+178363,53672.04231,83762.04325,0,21
+178364,54234.31565,501155.7336,0,21
+178365,54441.61278,86262.22423,0,21
+178366,54697.40553,87599.86572,0,21
+178367,55503.00636,88233.91926,0,21
+178368,55653.97927,89956.83281,0,21
+178369,55907.24009,90383.58984,0,21
+178370,56653.18376,91968.599,0,21
+178371,56498.01894,92448.65098,0,21
+178372,57407.93451,94282.00367,0,21
+178373,57399.2798,94616.9339,0,21
+178374,58336.29328,96147.95585,0,21
+178375,60156.91946,96788.64555,0,21
+178376,59472.96649,97815.70998,0,21
+178377,60760.83711,99299.67136,0,21
+178378,61165.89746,99608.48926,0,21
+178379,61413.16343,101089.5928,0,21
+178380,62358.52096,101928.8932,0,21
+178381,0,0,0,21
+178382,0,0,0,21
+178383,0,0,0,21
+178384,0,0,0,21
+178385,0,433355.5224,862603.2621,21
+178386,339664.5706,368392.1702,0,21
+178387,0,0,0,21
+178388,0,0,0,21
+178389,0,0,0,21
+178390,0,0,0,21
+178391,0,0,0,21
+178392,0,0,0,21
+178393,0,0,0,21
+178394,0,0,0,21
+178395,0,0,0,21
+178396,0,432581.7973,0,21
+178397,0,0,0,21
+178398,0,0,0,21
+178399,0,0,0,21
+178400,0,0,0,21
+178401,0,0,0,21
+178402,0,0,0,21
+178403,0,0,0,21
+178404,0,0,0,21
+178405,0,0,0,21
+178406,0,0,0,21
+178407,0,0,0,21
+178408,0,0,0,21
+178409,0,0,0,21
+178410,0,0,0,21
+178411,0,0,0,21
+178412,0,0,0,21
+178413,0,0,0,21
+178414,0,0,0,21
+178415,0,0,0,21
+178416,0,0,0,21
+178417,0,0,0,21
+178418,0,0,0,21
+178419,0,0,846868.439,21
+178420,0,0,0,21
+178421,0,368382.9673,0,21
+178422,339667.346,0,0,21
+178423,0,0,0,21
+178424,0,0,0,21
+178425,0,433017.6499,0,21
+178426,0,0,0,21
+178427,0,0,0,21
+178428,0,0,0,21
+178429,0,0,0,21
+178430,0,0,0,21
+178431,0,0,0,21
+178432,0,0,0,21
+178433,0,0,0,21
+178434,0,0,0,21
+178435,0,0,0,21
+178436,0,432528.3476,0,21
+178437,0,0,0,21
+178438,0,0,0,21
+178439,0,0,0,21
+178440,0,0,0,15.6
+178441,0,0,0,15.6
+178442,0,0,0,15.6
+178443,0,0,0,15.6
+178444,0,0,0,15.6
+178445,0,0,0,15.6
+178446,0,0,0,15.6
+178447,0,0,0,15.6
+178448,0,0,0,15.6
+178449,0,0,0,15.6
+178450,0,0,0,15.6
+178451,0,0,0,15.6
+178452,0,432691.573,0,15.6
+178453,0,0,832325.8688,15.6
+178454,0,0,0,15.6
+178455,0,0,0,15.6
+178456,0,368366.8455,0,15.6
+178457,0,0,0,15.6
+178458,339707.5773,0,0,15.6
+178459,0,0,0,15.6
+178460,0,0,0,15.6
+178461,0,0,0,15.6
+178462,0,0,0,15.6
+178463,0,0,0,15.6
+178464,0,0,0,15.6
+178465,0,0,0,15.6
+178466,0,0,0,15.6
+178467,0,0,0,15.6
+178468,0,0,0,15.6
+178469,0,0,0,15.6
+178470,0,0,0,15.6
+178471,0,0,0,15.6
+178472,0,0,0,15.6
+178473,0,0,0,15.6
+178474,0,0,0,15.6
+178475,0,0,0,15.6
+178476,0,0,0,15.6
+178477,0,0,0,15.6
+178478,0,0,0,15.6
+178479,0,0,0,15.6
+178480,0,0,0,15.6
+178481,0,0,0,15.6
+178482,0,0,0,15.6
+178483,0,0,0,15.6
+178484,0,0,0,15.6
+178485,0,0,0,15.6
+178486,0,71.09445009,0,15.6
+178487,0,0,0,15.6
+178488,0,0,818448.4774,15.6
+178489,0,0,0,15.6
+178490,0,64.49113256,0,15.6
+178491,0,368342.6467,0,15.6
+178492,0,0,0,15.6
+178493,0,0,0,15.6
+178494,339783.1098,73.38418411,0,15.6
+178495,0,0,0,15.6
+178496,0,0,0,15.6
+178497,0,0,0,15.6
+178498,0,70.28957208,0,15.6
+178499,0,0,0,15.6
+178500,0,0,0,15.6
+178501,0,0,0,15.6
+178502,0,432455.4187,0,15.6
+178503,0,0,0,15.6
+178504,0,0,0,15.6
+178505,0,0,0,15.6
+178506,0,0,0,15.6
+178507,0,0,0,15.6
+178508,0,0,0,15.6
+178509,0,0,0,15.6
+178510,0,0,0,15.6
+178511,0,0,0,15.6
+178512,0,0,0,15.6
+178513,0,0,0,15.6
+178514,0,432176.396,0,15.6
+178515,0,0,0,15.6
+178516,0,0,0,15.6
+178517,0,0,0,15.6
+178518,0,0,0,15.6
+178519,0,0,0,15.6
+178520,0,0,0,15.6
+178521,0,0,0,15.6
+178522,0,0,0,15.6
+178523,0,0,806169.9958,15.6
+178524,0,0,0,15.6
+178525,0,431756.2996,0,15.6
+178526,0,368332.5947,0,15.6
+178527,0,0,0,15.6
+178528,0,0,0,15.6
+178529,0,0,0,15.6
+178530,339844.9743,0,0,15.6
+178531,0,0,0,15.6
+178532,0,0,0,15.6
+178533,0,0,0,15.6
+178534,0,0,0,15.6
+178535,0,0,0,15.6
+178536,0,431691.6306,0,15.6
+178537,0,0,0,15.6
+178538,0,0,0,15.6
+178539,0,0,0,15.6
+178540,0,0,0,15.6
+178541,0,0,0,15.6
+178542,0,0,0,15.6
+178543,0,0,0,15.6
+178544,0,0,0,15.6
+178545,0,0,0,15.6
+178546,0,0,0,15.6
+178547,0,0,0,15.6
+178548,0,0,0,15.6
+178549,0,0,0,15.6
+178550,0,0,0,15.6
+178551,0,0,0,15.6
+178552,0,0,0,15.6
+178553,0,0,0,15.6
+178554,0,0,0,15.6
+178555,0,432020.5834,0,15.6
+178556,0,0,0,15.6
+178557,0,0,0,15.6
+178558,0,0,794272.1274,15.6
+178559,0,0,0,15.6
+178560,0,0,0,15.6
+178561,0,368328.2622,0,15.6
+178562,0,0,0,15.6
+178563,0,0,0,15.6
+178564,0,0,0,15.6
+178565,0,0,0,15.6
+178566,339896.2811,0,0,15.6
+178567,0,0,0,15.6
+178568,0,0,0,15.6
+178569,0,0,0,15.6
+178570,0,0,0,15.6
+178571,0,0,0,15.6
+178572,0,0,0,15.6
+178573,0,0,0,15.6
+178574,0,0,0,15.6
+178575,0,0,0,15.6
+178576,0,0,0,15.6
+178577,0,0,0,15.6
+178578,0,0,0,15.6
+178579,0,0,0,15.6
+178580,0,0,0,15.6
+178581,0,0,0,15.6
+178582,0,109.3976037,0,15.6
+178583,0,0,0,15.6
+178584,0,0,0,15.6
+178585,0,0,0,15.6
+178586,0,2.572331881,0,15.6
+178587,0,0,0,15.6
+178588,0,74.37613218,0,15.6
+178589,0,0,0,15.6
+178590,0,0,0,15.6
+178591,0,0,0,15.6
+178592,0,0,0,15.6
+178593,0,59.20865508,783916.5978,15.6
+178594,0,0,0,15.6
+178595,0,0,0,15.6
+178596,0,368346.6695,0,15.6
+178597,0,0,0,15.6
+178598,0,0,0,15.6
+178599,0,0,0,15.6
+178600,0,0,0,15.6
+178601,0,0,0,15.6
+178602,339921.8988,81.03602488,0,15.6
+178603,0,0,0,15.6
+178604,0,0,0,15.6
+178605,0,0,0,15.6
+178606,0,70.70931339,0,15.6
+178607,0,0,0,15.6
+178608,0,0,0,15.6
+178609,0,0,0,15.6
+178610,0,79.51244914,0,15.6
+178611,0,0,0,15.6
+178612,0,0,0,15.6
+178613,0,0,0,15.6
+178614,0,79.58650736,0,15.6
+178615,0,0,0,15.6
+178616,0,0,0,15.6
+178617,0,0,0,15.6
+178618,0,78.68657604,0,15.6
+178619,0,0,0,15.6
+178620,0,0,0,15.6
+178621,0,0,0,15.6
+178622,0,77.51129841,0,15.6
+178623,0,0,0,15.6
+178624,0,0,0,15.6
+178625,0,0,0,15.6
+178626,0,74.54313685,0,15.6
+178627,0,0,0,15.6
+178628,0,0,773647.8836,15.6
+178629,0,0,0,15.6
+178630,0,73.01189492,0,15.6
+178631,0,368355.9879,0,15.6
+178632,0,0,0,15.6
+178633,0,0,0,15.6
+178634,0,67.29647066,0,15.6
+178635,0,0,0,15.6
+178636,0,0,0,15.6
+178637,0,0,0,15.6
+178638,0,0,0,15.6
+178639,339935.0084,64.7820894,0,15.6
+178640,0,0,0,15.6
+178641,0,0,0,15.6
+178642,0,0,0,15.6
+178643,0,0,0,15.6
+178644,0,0,0,15.6
+178645,0,0,0,15.6
+178646,0,0,0,15.6
+178647,0,0,0,15.6
+178648,0,113.9964667,0,15.6
+178649,0,0,0,15.6
+178650,0,0,0,15.6
+178651,0,0,0,15.6
+178652,0,64.90099737,0,15.6
+178653,0,0,0,15.6
+178654,0,0,0,15.6
+178655,0,0,0,15.6
+178656,0,82.00163404,0,15.6
+178657,0,0,0,15.6
+178658,0,0,0,15.6
+178659,0,0,0,15.6
+178660,0,81.96150025,0,15.6
+178661,0,0,0,15.6
+178662,0,0,0,15.6
+178663,0,0,764802.9107,15.6
+178664,0,83.62461663,0,15.6
+178665,0,0,0,15.6
+178666,0,0,0,15.6
+178667,0,368336.7176,0,15.6
+178668,0,81.54034192,0,15.6
+178669,0,0,0,15.6
+178670,0,0,0,15.6
+178671,0,0,0,15.6
+178672,0,73.20299501,0,15.6
+178673,0,0,0,15.6
+178674,0,0,0,15.6
+178675,0,0,0,15.6
+178676,339935.5942,73.47515609,0,15.6
+178677,0,0,0,15.6
+178678,0,0,0,15.6
+178679,0,0,0,15.6
+178680,0,76.97047821,0,15.6
+178681,0,0,0,15.6
+178682,0,0,0,15.6
+178683,0,431504.6463,0,15.6
+178684,0,0,0,15.6
+178685,0,0,0,15.6
+178686,0,0,0,15.6
+178687,0,0,0,15.6
+178688,0,0,0,15.6
+178689,0,0,0,15.6
+178690,0,0,0,15.6
+178691,0,0,0,15.6
+178692,0,0,0,15.6
+178693,0,0,0,15.6
+178694,0,0,0,15.6
+178695,0,0,0,15.6
+178696,0,0,0,15.6
+178697,0,0,0,15.6
+178698,0,0,756867.4394,15.6
+178699,0,0,0,15.6
+178700,0,0,0,15.6
+178701,0,0,0,15.6
+178702,0,0,0,15.6
+178703,0,368335.0203,0,15.6
+178704,0,0,0,15.6
+178705,0,0,0,15.6
+178706,0,0,0,15.6
+178707,0,0,0,15.6
+178708,0,431260.1927,0,15.6
+178709,0,0,0,15.6
+178710,0,0,0,15.6
+178711,0,0,0,15.6
+178712,0,0,0,15.6
+178713,339828.158,0,0,15.6
+178714,0,0,0,15.6
+178715,0,0,0,15.6
+178716,0,0,0,15.6
+178717,0,0,0,15.6
+178718,0,0,0,15.6
+178719,0,0,0,15.6
+178720,0,0,0,15.6
+178721,0,0,0,15.6
+178722,0,0,0,15.6
+178723,0,0,0,15.6
+178724,0,0,0,15.6
+178725,0,0,0,15.6
+178726,0,0,0,15.6
+178727,0,0,0,15.6
+178728,0,0,0,15.6
+178729,0,0,0,15.6
+178730,0,0,0,15.6
+178731,0,0,0,15.6
+178732,0,0,0,15.6
+178733,0,431044.0767,749574.8589,15.6
+178734,0,0,0,15.6
+178735,0,0,0,15.6
+178736,0,0,0,15.6
+178737,0,0,0,15.6
+178738,0,0,0,15.6
+178739,0,368342.1765,0,15.6
+178740,0,0,0,15.6
+178741,0,0,0,15.6
+178742,0,0,0,15.6
+178743,0,0,0,15.6
+178744,0,0,0,15.6
+178745,0,0,0,15.6
+178746,0,0,0,15.6
+178747,0,0,0,15.6
+178748,0,0,0,15.6
+178749,0,0,0,15.6
+178750,339736.1237,0,0,15.6
+178751,0,0,0,15.6
+178752,0,0,0,15.6
+178753,0,0,0,15.6
+178754,0,0,0,15.6
+178755,0,0,0,15.6
+178756,0,0,0,15.6
+178757,0,0,0,15.6
+178758,0,0,0,15.6
+178759,0,0,0,15.6
+178760,0,98.84288485,0,15.6
+178761,0,0,0,15.6
+178762,0,0,0,15.6
+178763,0,0,0,15.6
+178764,0,0,0,15.6
+178765,0,0,0,15.6
+178766,0,0,0,15.6
+178767,0,243.0891817,743141.8246,15.6
+178768,0,0,0,15.6
+178769,0,0,0,15.6
+178770,0,0,0,15.6
+178771,0,0,0,15.6
+178772,0,0,0,15.6
+178773,0,368335.0354,0,15.6
+178774,0,0,0,15.6
+178775,0,0,0,15.6
+178776,0,0,0,15.6
+178777,0,0,0,15.6
+178778,0,7.866063817,0,15.6
+178779,0,0,0,15.6
+178780,0,118.3671721,0,15.6
+178781,0,0,0,15.6
+178782,0,0,0,15.6
+178783,0,0,0,15.6
+178784,0,0,0,15.6
+178785,339736.1242,253.6227346,0,15.6
+178786,0,0,0,15.6
+178787,0,0,0,15.6
+178788,0,0,0,15.6
+178789,0,0,0,15.6
+178790,0,0,0,15.6
+178791,0,0,0,15.6
+178792,0,0,0,15.6
+178793,0,0,0,15.6
+178794,0,0,0,15.6
+178795,0,0,0,15.6
+178796,0,3.20846228,0,15.6
+178797,0,0,0,15.6
+178798,0,86.29652723,0,15.6
+178799,0,0,0,15.6
+178800,0,0,0,17.8
+178801,0,67374.14449,737133.7833,17.8
+178802,0,15221.15247,0,17.8
+178803,0,445205.5652,0,17.8
+178804,0,25930.01074,0,17.8
+178805,0,22791.0392,0,17.8
+178806,0,21974.76079,0,17.8
+178807,0,390663.4073,0,17.8
+178808,0,22438.77876,0,17.8
+178809,0,22493.64782,0,17.8
+178810,0,22631.45986,0,17.8
+178811,0,22687.94668,0,17.8
+178812,0,22728.42264,0,17.8
+178813,0,22874.1798,0,17.8
+178814,0,22946.2583,0,17.8
+178815,0,23009.40428,0,17.8
+178816,0,23124.60137,0,17.8
+178817,0,23200.94471,0,17.8
+178818,0,50089.53645,0,17.8
+178819,0,60729.99394,0,17.8
+178820,339726.2498,123674.1185,0,17.8
+178821,0,108885.1983,0,17.8
+178822,0,125751.0248,0,17.8
+178823,0,122882.2406,0,17.8
+178824,0,125787.6149,0,17.8
+178825,0,128189.0528,0,17.8
+178826,0,129390.3733,0,17.8
+178827,0,129672.4035,0,17.8
+178828,0,562674.8472,0,17.8
+178829,0,132030.7962,0,17.8
+178830,0,133923.5025,0,17.8
+178831,0,111768.6756,0,17.8
+178832,640.3100786,111667.7405,0,17.8
+178833,389.1822222,112778.5653,0,17.8
+178834,437.5761035,112905.0583,0,17.8
+178835,469.4713967,113795.2164,732406.0879,17.8
+178836,485.3149626,114006.3677,0,17.8
+178837,516.8028122,114933.0953,0,17.8
+178838,501.0915249,115086.3902,0,17.8
+178839,532.4502631,180739.2791,0,17.8
+178840,532.4502422,118723.1191,0,17.8
+178841,548.0353922,511517.3728,0,17.8
+178842,548.0353701,142296.0701,0,17.8
+178843,563.5595755,141124.0758,0,17.8
+178844,579.0241367,141705.321,0,17.8
+178845,579.024112,139626.9429,0,17.8
+178846,594.4302569,23808.03779,0,17.8
+178847,594.430231,23813.11758,0,17.8
+178848,609.7791242,23929.66346,0,17.8
+178849,609.7790969,23890.21235,0,17.8
+178850,0,23975.55033,0,17.8
+178851,0,24005.3674,0,17.8
+178852,0,24056.7948,0,17.8
+178853,0,454683.8818,0,17.8
+178854,0,24137.32372,0,17.8
+178855,339708.9686,24151.11116,0,17.8
+178856,0,24218.46915,0,17.8
+178857,0,24237.10029,0,17.8
+178858,0,24288.85665,0,17.8
+178859,0,24325.09483,0,17.8
+178860,0,24360.1195,0,20
+178861,174546.1746,806399.2317,322369.7976,20
+178862,130976.6796,75502.28759,0,20
+178863,171572.0347,174339.9319,0,20
+178864,143901.8987,250505.5436,0,20
+178865,156410.2279,248627.8922,10495.2722,20
+178866,153929.3297,223607.9702,38511.56139,20
+178867,154352.0713,227901.4311,17609.83604,20
+178868,155555.3799,227007.3395,25663.14328,20
+178869,155114.2295,225509.6346,25229.81069,20
+178870,154581.6962,224545.1731,25619.1136,20
+178871,153761.6339,222413.0151,25829.12965,20
+178872,154303.5117,221714.3721,26323.7254,20
+178873,154151.9608,219761.9181,26392.95595,20
+178874,154886.2834,218974.2019,26635.42292,20
+178875,154293.9584,216938.941,27768.06838,20
+178876,154695.0534,216762.7706,27690.14797,20
+178877,154876.4992,214953.2396,28336.77392,20
+178878,154722.0841,214490.0575,28879.53849,20
+178879,154872.5968,213489.7222,28864.45432,20
+178880,154981.4435,212329.7913,29479.79173,20
+178881,155040.1938,211518.9088,29449.28185,20
+178882,155563.583,210526.4785,30005.16859,20
+178883,155114.727,209435.665,30121.62328,20
+178884,155342.4705,208798.9311,30446.83929,20
+178885,155320.354,207654.4028,30647.72877,20
+178886,155564.8334,206863.931,31165.02979,20
+178887,155130.6099,205962.3139,31296.86361,20
+178888,155504.4654,205190.5334,31380.67654,20
+178889,156075.354,204317.5123,32039.37883,20
+178890,155336.1423,203210.6775,31971.85944,20
+178891,156032.0542,202532.1746,32373.3931,20
+178892,155984.2238,202508.114,32621.14211,20
+178893,155639.0542,200892.0627,32979.13661,20
+178894,156260.3476,201078.0654,33071.91706,20
+178895,155761.7613,200303.1725,33442.95233,20
+178896,156259.4105,199153.9137,33781.146,20
+178897,155920.5634,199368.7844,33842.20598,20
+178898,156189.1407,197960.6417,34386.24803,20
+178899,156075.4086,198123.3869,34305.7156,20
+178900,156196.606,197479.4938,35002.90016,20
+178901,156208.7484,197109.2026,34817.09546,20
+178902,156017.0323,196098.8272,35230.15223,20
+178903,156502.9048,196050.5274,35574.73406,20
+178904,156117.1699,194910.3557,35514.02862,20
+178905,156359.9559,194571.0541,36197.00617,20
+178906,156280.8657,194200.7879,36145.66489,20
+178907,156436.5139,193764.3383,36396.33435,20
+178908,156051.0716,192377.8602,36682.56232,20
+178909,156568.5163,192488.9935,36867.89418,20
+178910,157533.9638,191711.8796,37083.51008,20
+178911,157281.3566,190999.713,33186.55504,20
+178912,157249.5536,190335.5199,32697.2145,20
+178913,157513.3351,190047.8353,32320.65722,20
+178914,157375.7057,189115.9658,32807.56257,20
+178915,157973.8864,188271.8001,32347.90069,20
+178916,157610.8188,188272.638,32581.24583,20
+178917,157784.8083,187037.3582,32444.9588,20
+178918,157970.8659,186738.5925,32466.88715,20
+178919,157988.6204,185668.309,32415.51523,20
+178920,158075.8329,184707.6696,32372.75014,21
+178921,147649.528,236596.1446,27292.99799,21
+178922,146409.7695,235025.6414,26816.38131,21
+178923,146415.8149,234410.4777,26462.9622,21
+178924,145747.6511,234250.1926,26272.77779,21
+178925,145906.6877,233523.3461,26260.82224,21
+178926,145261.4048,232537.0489,26079.32737,21
+178927,145291.1167,232139.8104,25838.01583,21
+178928,145029.3424,231441.1616,25774.19881,21
+178929,144581.7454,231108.7086,25520.05365,21
+178930,144776.4043,230493.9982,25579.2383,21
+178931,144384.55,229693.2953,25225.15817,21
+178932,144289.0409,229444.2266,25259.42453,21
+178933,143892.1699,228484.3616,24912.14649,21
+178934,143719.4961,228456.2688,25037.63029,21
+178935,143855.5426,227125.279,24700.48749,21
+178936,143635.808,227416.5149,24650.27775,21
+178937,143240.6486,226254.1256,23572.22255,21
+178938,143737.7465,226039.1358,23558.96329,21
+178939,142907.2035,225388.0647,23310.69356,21
+178940,143037.8906,224414.9229,23002.26013,21
+178941,142929.8956,224545.5427,23141.60019,21
+178942,142531.1332,223666.3053,22952.24303,21
+178943,142758.2116,223226.2064,22720.69697,21
+178944,142235.4703,222543.1145,22814.94803,21
+178945,142391.766,221961.276,22484.33745,21
+178946,141985.9249,221273.6719,22507.00554,21
+178947,141940.5546,221283.911,22140.24072,21
+178948,141801.6285,220294.4825,22266.64021,21
+178949,141602.0586,219627.322,22044.19326,21
+178950,141622.0424,219444.9761,21937.70272,21
+178951,140550.0434,218749.26,21642.35469,21
+178952,140426.7825,217311.397,21053.57956,21
+178953,138661.9432,217053.7496,20645.57244,21
+178954,137692.024,215694.6193,20123.91473,21
+178955,137208.11,215397.8416,19590.58118,21
+178956,136031.5411,214030.4371,19179.59462,21
+178957,135216.9236,213045.8146,18284.61241,21
+178958,134449.0733,212702.2697,17947.93531,21
+178959,133822.4522,211504.3687,17191.23583,21
+178960,132463.1779,210966.6785,16599.98675,21
+178961,131726.9838,210473.2813,15857.33941,21
+178962,129673.8282,209129.2087,14151.56292,21
+178963,128092.6929,208686.4145,13410.2516,21
+178964,127392.6144,207404.3127,13302.06988,21
+178965,126102.874,206363.8762,13284.975,21
+178966,125307.3929,205814.5154,13042.87348,21
+178967,124049.1774,204789.4418,12988.95244,21
+178968,122681.7545,203843.8568,12785.86024,21
+178969,122155.9261,202681.1032,12711.98598,21
+178970,120563.1206,202412.5161,12646.78028,21
+178971,119711.7124,199716.5508,12293.80322,21
+178972,118318.4174,199760.8463,12382.51186,21
+178973,117527.6033,198155.911,12120.906,21
+178974,116050.7725,197905.9926,11982.2292,21
+178975,115284.484,196507.0292,12087.66283,21
+178976,113716.8034,195583.9608,11813.41804,21
+178977,112822.7142,194788.9416,11801.49192,21
+178978,111608.2444,193459.2775,11792.75746,21
+178979,110466.2188,192743.5837,11553.72917,21
+178980,109092.6938,192040.6942,11748.54778,21
+178981,37420.69204,118651.9227,519.4505773,21
+178982,31344.66674,113523.2997,392.1977425,21
+178983,29495.34389,109938.9545,359.9076982,21
+178984,28352.84573,107825.5128,327.3998451,21
+178985,27465.97004,103614.6825,294.6570952,21
+178986,27296.68871,101640.427,278.1921035,21
+178987,26732.53397,97589.64524,228.3784893,21
+178988,26407.69917,94849.28771,228.379543,21
+178989,26039.20084,91712.40532,177.8543152,21
+178990,25659.2362,88166.74089,177.8549456,21
+178991,25137.11331,85388.90073,126.4499055,21
+178992,24913.28285,82224.86725,126.4502227,21
+178993,24410.07446,78887.16721,73.85825441,21
+178994,24002.78324,76224.89904,55.96084681,21
+178995,23658.72806,73494.44147,37.80297227,21
+178996,23278.91131,70314.52178,19.27623631,21
+178997,22903.71169,68916.97694,0,21
+178998,22598.50942,67800.52766,0,21
+178999,22351.78262,67266.81073,0,21
+179000,21852.04727,66319.37137,0,21
+179001,21909.64825,65435.00041,0,21
+179002,21407.3983,64570.18517,0,21
+179003,21272.75189,63774.62375,0,21
+179004,20768.72472,63196.53845,0,21
+179005,20706.80317,61751.75865,0,21
+179006,20415.38092,61229.08134,0,21
+179007,19943.68815,59771.51806,0,21
+179008,19865.06119,59517.21527,0,21
+179009,19588.57327,58083.05138,0,21
+179010,19289.50906,57522.01431,0,21
+179011,18815.03853,56400.94659,0,21
+179012,18971.13325,55775.98823,0,21
+179013,18452.95064,55048.71723,0,21
+179014,18191.85342,54116.08253,0,21
+179015,18130.31997,53769.24585,0,21
+179016,17816.45406,53108.60459,0,21
+179017,17554.7944,52443.48926,0,21
+179018,17217.20562,51740.21556,0,21
+179019,17085.57141,51213.4905,0,21
+179020,16869.02917,50604.69108,0,21
+179021,16501.48733,49936.06485,0,21
+179022,16395.34391,49362.43213,0,21
+179023,16004.57288,48724.84558,0,21
+179024,15951.51559,48203.46572,0,21
+179025,15617.2037,47480.82249,0,21
+179026,15347.69624,46849.79679,0,21
+179027,15157.39929,46263.62272,0,21
+179028,14956.46363,45775.13969,0,21
+179029,14672.69555,45048.77574,0,21
+179030,14377.22684,44531.31382,0,21
+179031,14300.01804,43875.42983,0,21
+179032,13979.86858,43325.95245,0,21
+179033,13704.18907,42898.4088,0,21
+179034,13486.4811,42194.18036,0,21
+179035,13163.25571,41620.3377,0,21
+179036,12977.92286,41102.56307,0,21
+179037,12663.33063,40597.77756,0,21
+179038,12347.38801,40002.853,0,21
+179039,12265.78231,39522.77813,0,21
+179040,11971.32431,38919.25319,0,21
+179041,11651.27525,38247.68523,0,21
+179042,11556.57201,37496.38561,0,21
+179043,11163.03587,37068.4878,0,21
+179044,11042.39402,36070.30581,0,21
+179045,10766.21185,35713.71632,0,21
+179046,10535.99649,34609.98164,0,21
+179047,10232.69173,33933.20912,0,21
+179048,10157.40102,32906.52827,0,21
+179049,9718.491321,32386.7185,0,21
+179050,9641.489976,31602.23363,0,21
+179051,9326.710121,31091.64927,0,21
+179052,9119.013676,30386.53666,0,21
+179053,8824.844548,29589.52203,0,21
+179054,8706.008311,28950.34623,0,21
+179055,8464.324663,28556.67446,0,21
+179056,8289.041576,27334.53857,0,21
+179057,7988.52268,27226.36664,0,21
+179058,7962.679791,26278.24533,0,21
+179059,7583.345682,25699.5019,0,21
+179060,7618.524613,24738.28089,0,21
+179061,7249.043344,24598.0204,0,21
+179062,7212.110212,23417.46875,0,21
+179063,6972.06182,23046.54446,0,21
+179064,6743.138957,22176.95271,0,21
+179065,6808.138256,21702.03156,0,21
+179066,6450.869684,20734.77335,0,21
+179067,6322.80322,20368.8394,0,21
+179068,6181.857885,19564.7105,0,21
+179069,6156.748531,18774.59771,0,21
+179070,5806.893254,18082.80823,0,21
+179071,5756.411732,17598.3066,0,21
+179072,5534.015528,16856.47635,0,21
+179073,5495.987089,16363.39908,0,21
+179074,5246.686016,15536.82762,0,21
+179075,5221.174819,15348.53381,0,21
+179076,4850.474117,429388.4625,0,21
+179077,4944.547356,13923.04814,0,21
+179078,4704.664784,13327.41399,0,21
+179079,4532.472199,12740.42789,0,21
+179080,4424.33283,11978.50523,0,21
+179081,4263.848314,11547.4768,0,21
+179082,4128.890189,10873.49252,0,21
+179083,3993.26338,10370.09461,0,21
+179084,3844.047229,10309.47821,0,21
+179085,3694.16975,9925.481296,0,21
+179086,3569.947331,9818.255263,0,21
+179087,3418.78451,9468.683456,0,21
+179088,3266.884103,9414.11327,0,21
+179089,3127.49666,9073.684439,0,21
+179090,3114.211642,8966.976215,0,21
+179091,2704.766715,8814.648662,0,21
+179092,2806.386941,8476.383643,0,21
+179093,2548.773459,8516.51284,0,21
+179094,2521.904559,8205.447301,0,21
+179095,2233.599532,8124.390159,0,21
+179096,2101.325313,7965.947336,0,21
+179097,2060.640115,7696.500373,0,21
+179098,1913.50845,7531.773551,0,21
+179099,1778.590914,7171.669826,0,21
+179100,1462.475519,7070.068172,0,21
+179101,1280.136321,6395.317398,0,21
+179102,969.8249935,6500.161307,0,21
+179103,955.9613397,6292.395689,0,21
+179104,928.1378241,6083.755228,0,21
+179105,914.1647323,6083.75541,0,21
+179106,900.1793823,5994.444943,0,21
+179107,872.0981997,5794.736588,0,21
+179108,872.0930488,5638.668613,0,21
+179109,829.7071291,5719.325456,0,21
+179110,829.7072372,5372.128593,0,21
+179111,801.2727663,5482.641187,0,21
+179112,801.2728389,5280.951189,0,21
+179113,758.3476115,5108.22473,0,21
+179114,758.3477277,5189.037683,0,21
+179115,729.5427476,4842.293535,0,21
+179116,729.5428109,4960.241574,0,21
+179117,686.0419075,4775.259894,0,21
+179118,686.0419668,4692.834297,0,21
+179119,671.4610425,4544.224963,0,21
+179120,642.1742537,4476.359368,0,21
+179121,627.4669911,4423.126252,0,21
+179122,612.716127,4258.663014,0,21
+179123,597.9208746,4189.915275,0,21
+179124,568.1938163,4162.922152,0,21
+179125,553.2601806,3958.347951,0,21
+179126,553.2602579,3928.066168,0,21
+179127,508.1672356,3873.233242,0,21
+179128,508.1672774,3694.494478,0,21
+179129,493.0342486,3773.521412,0,21
+179130,447.3188404,3471.580627,0,21
+179131,447.3192724,3552.155804,0,21
+179132,431.9692656,3326.89446,0,21
+179133,416.5609791,3146.022867,0,21
+179134,385.5627456,3239.519575,0,21
+179135,401.0927952,2873.596054,0,21
+179136,354.309425,2813.51832,0,21
+179137,354.3094499,2768.025026,0,21
+179138,322.7830395,2550.983033,0,21
+179139,338.5816914,2502.762633,0,21
+179140,290.9620799,2438.067261,0,21
+179141,290.9621696,2107.756943,0,21
+179142,274.9332798,2281.389118,0,21
+179143,258.8204935,2092.230189,0,21
+179144,242.6195457,2076.667762,0,21
+179145,226.3255415,1916.867486,0,21
+179146,209.9329432,1755.137355,0,21
+179147,209.9329561,1885.634276,0,21
+179148,176.8252866,1723.904141,0,21
+179149,168.4753752,1544.178724,0,21
+179150,160.0939056,1544.178769,0,21
+179151,126.2219153,1512.723693,0,21
+179152,143.2304994,1261.146758,0,21
+179153,91.69786403,1496.939413,0,21
+179154,109.0516116,979.0030624,0,21
+179155,74.13107636,1314.103731,0,21
+179156,74.1310847,947.3185841,0,21
+179157,47.28029476,947.3186215,0,21
+179158,38.15889198,931.4175363,0,21
+179159,28.92491657,931.4175723,0,21
+179160,9.970965785,899.4952315,0,21
+179161,19.54821316,947.3186887,0,21
+179162,19.54818514,947.3186847,0,21
+179163,0,915.4765587,0,21
+179164,0,1038.963792,0,21
+179165,0,915.4765505,0,21
+179166,0,915.4765462,0,21
+179167,0,915.4765418,0,21
+179168,0,899.495161,0,21
+179169,0,915.4765324,0,21
+179170,0,883.4728731,0,21
+179171,0,883.4728683,0,21
+179172,0,883.4728633,0,21
+179173,0,867.4091352,0,21
+179174,0,867.4091301,0,21
+179175,0,867.4091247,0,21
+179176,0,818.963555,0,21
+179177,0,835.1550651,0,21
+179178,0,417501.2199,0,21
+179179,0,802.7281995,0,21
+179180,0,818.9635337,0,21
+179181,0,786.4483696,0,21
+179182,0,786.4483642,0,21
+179183,0,786.4483586,0,21
+179184,0,770.1233733,0,21
+179185,0,770.1233677,0,21
+179186,0,753.7525116,0,21
+179187,0,753.7525059,0,21
+179188,0,737.3350381,0,21
+179189,0,737.3350324,0,21
+179190,0,737.3350267,0,21
+179191,0,704.3571319,0,21
+179192,0,720.870168,0,21
+179193,0,704.3571209,0,21
+179194,0,687.7950331,0,21
+179195,0,687.7950277,0,21
+179196,0,687.7950221,0,21
+179197,0,654.5201385,0,21
+179198,0,671.1830015,0,21
+179199,0,654.520128,0,21
+179200,0,654.5201227,0,21
+179201,0,621.0378426,0,21
+179202,0,637.8054077,0,21
+179203,0,621.0378327,0,21
+179204,0,417671.7037,0,21
+179205,0,587.3396886,0,21
+179206,0,604.2162981,0,21
+179207,0,587.3396793,0,21
+179208,0,587.3396746,0,21
+179209,0,570.4067516,0,21
+179210,0,553.4162427,0,21
+179211,0,570.4067425,0,21
+179212,0,536.3667836,0,21
+179213,0,536.3667795,0,21
+179214,0,536.3667753,0,21
+179215,0,519.2569287,0,21
+179216,0,519.2569248,0,21
+179217,0,502.085145,0,21
+179218,0,502.0851413,0,21
+179219,0,484.8497822,0,21
+179220,0,484.8497786,0,21
+179221,0,835.15479,0,21
+179222,0,851.3031374,0,21
+179223,0,818.9633616,0,21
+179224,0,835.1549057,0,21
+179225,0,818.9634342,0,21
+179226,0,802.7281341,0,21
+179227,0,802.7281681,0,21
+179228,0,786.4483835,0,21
+179229,0,786.4484159,0,21
+179230,0,753.7526118,0,21
+179231,0,770.1234967,0,21
+179232,0,753.7526711,0,21
+179233,0,737.3352308,0,21
+179234,0,737.3352594,0,21
+179235,0,720.8704296,0,21
+179236,0,720.8704572,0,21
+179237,0,704.3574294,0,21
+179238,0,687.7953584,0,21
+179239,0,687.7953839,0,21
+179240,0,687.7954097,0,21
+179241,0,654.5205183,0,21
+179242,0,654.5205419,0,21
+179243,0,654.5205658,0,21
+179244,0,637.8058616,0,21
+179245,0,637.8058846,0,21
+179246,0,604.2167659,0,21
+179247,0,621.0383339,0,21
+179248,0,604.216808,0,21
+179249,0,587.3401857,0,21
+179250,0,587.340206,0,21
+179251,0,570.4072764,0,21
+179252,0,570.4072958,0,21
+179253,0,570.4073155,0,21
+179254,0,570.4073353,0,21
+179255,0,553.4168147,0,21
+179256,0,553.4168336,0,21
+179257,0,553.4168527,0,21
+179258,0,553.416872,0,21
+179259,0,553.4168915,0,21
+179260,0,536.3674187,0,21
+179261,0,553.4169308,0,21
+179262,0,536.3674559,0,21
+179263,0,553.4169708,0,21
+179264,0,536.3674936,0,21
+179265,0,536.3675127,0,21
+179266,0,536.3675319,0,21
+179267,0,536.3675513,0,21
+179268,0,536.3675708,0,21
+179269,0,536.3675904,0,21
+179270,0,519.2577137,0,21
+179271,0,553.4171367,0,21
+179272,0,519.257751,0,21
+179273,0,536.3676702,0,21
+179274,0,519.2577888,0,21
+179275,0,536.3677109,0,21
+179276,0,519.257827,0,21
+179277,0,536.367752,0,21
+179278,0,519.2578656,0,21
+179279,0,536.3677937,0,21
+179280,0,519.2579047,0,21
+179281,0,160.6815111,0,21
+179282,0,122.3201916,0,21
+179283,0,160.6815117,0,21
+179284,0,122.320192,0,21
+179285,0,122.3201922,0,21
+179286,0,141.590983,0,21
+179287,0,112.6099865,0,21
+179288,0,102.845125,0,21
+179289,0,122.3201931,0,21
+179290,0,102.8451253,0,21
+179291,0,102.8451254,0,21
+179292,0,102.8451256,0,21
+179293,0,102.8431096,0,21
+179294,0,83.12214538,0,21
+179295,0,112.6160413,0,21
+179296,0,93.01743179,0,21
+179297,0,93.01935344,0,21
+179298,0,102.8430942,0,21
+179299,0,83.13131561,0,21
+179300,0,102.8430836,0,21
+179301,0,83.13130948,0,21
+179302,0,102.843061,0,21
+179303,0,83.13128756,0,21
+179304,0,83.13165005,0,21
+179305,0,53.00725243,0,21
+179306,0,73.17240153,0,21
+179307,0,63.13457956,0,21
+179308,0,63.13456853,0,21
+179309,0,63.13456135,0,21
+179310,0,63.13455253,0,21
+179311,0,53.00800491,0,21
+179312,0,42.77665628,0,21
+179313,0,42.77666306,0,21
+179314,0,11.16968786,0,21
+179315,0,11.16969122,0,21
+179316,0,0,0,21
+179317,0,0,0,21
+179318,0,0,0,21
+179319,0,0,0,21
+179320,0,0,0,21
+179321,0,0,0,21
+179322,0,0,0,21
+179323,0,0,0,21
+179324,0,0,0,21
+179325,0,0,0,21
+179326,0,0,0,21
+179327,0,0,0,21
+179328,0,0,0,21
+179329,0,0,0,21
+179330,0,0,0,21
+179331,0,0,0,21
+179332,0,0,0,21
+179333,0,0,0,21
+179334,0,0,0,21
+179335,0,0,0,21
+179336,0,0,0,21
+179337,0,0,0,21
+179338,0,0,0,21
+179339,0,0,0,21
+179340,0,0,0,21
+179341,0,0,0,21
+179342,0,0,0,21
+179343,0,0,0,21
+179344,0,0,0,21
+179345,0,0,0,21
+179346,0,0,0,21
+179347,0,0,0,21
+179348,0,0,0,21
+179349,0,0,0,21
+179350,0,0,0,21
+179351,0,0,0,21
+179352,0,0,0,21
+179353,0,0,0,21
+179354,0,0,0,21
+179355,0,0,0,21
+179356,0,0,0,21
+179357,0,0,0,21
+179358,0,0,0,21
+179359,0,0,0,21
+179360,0,0,0,21
+179361,0,0,0,21
+179362,0,0,0,21
+179363,0,0,0,21
+179364,0,0,0,21
+179365,0,0,0,21
+179366,0,0,0,21
+179367,0,0,0,21
+179368,0,0,0,21
+179369,0,0,0,21
+179370,0,0,0,21
+179371,0,0,0,21
+179372,0,0,0,21
+179373,0,0,0,21
+179374,0,0,0,21
+179375,0,0,0,21
+179376,0,0,0,21
+179377,0,0,0,21
+179378,0,0,0,21
+179379,0,0,0,21
+179380,0,0,0,21
+179381,0,0,0,21
+179382,0,0,0,21
+179383,0,0,0,21
+179384,0,0,0,21
+179385,0,0,0,21
+179386,0,0,0,21
+179387,0,0,0,21
+179388,0,0,0,21
+179389,0,0,0,21
+179390,0,0,0,21
+179391,0,0,0,21
+179392,0,0,0,21
+179393,0,0,0,21
+179394,0,0,0,21
+179395,0,0,0,21
+179396,0,0,0,21
+179397,0,0,0,21
+179398,0,0,0,21
+179399,0,0,0,21
+179400,0,0,0,21
+179401,0,0,0,21
+179402,0,0,0,21
+179403,0,0,0,21
+179404,0,0,0,21
+179405,0,0,0,21
+179406,0,0,0,21
+179407,0,0,0,21
+179408,0,0,0,21
+179409,0,0,0,21
+179410,0,0,0,21
+179411,0,0,0,21
+179412,0,0,0,21
+179413,0,0,0,21
+179414,0,0,0,21
+179415,0,0,0,21
+179416,0,0,0,21
+179417,0,0,0,21
+179418,0,0,0,21
+179419,0,0,0,21
+179420,0,0,0,21
+179421,0,0,0,21
+179422,0,0,0,21
+179423,0,0,0,21
+179424,0,0,0,21
+179425,0,0,0,21
+179426,0,0,0,21
+179427,0,0,0,21
+179428,0,0,0,21
+179429,0,0,0,21
+179430,0,0,0,21
+179431,0,0,0,21
+179432,0,0,0,21
+179433,0,0,0,21
+179434,0,0,0,21
+179435,0,0,0,21
+179436,0,0,0,21
+179437,0,0,0,21
+179438,0,0,0,21
+179439,0,0,0,21
+179440,0,0,0,21
+179441,0,0,0,21
+179442,0,0,0,21
+179443,0,0,0,21
+179444,0,0,0,21
+179445,0,0,0,21
+179446,0,0,0,21
+179447,0,0,0,21
+179448,0,0,0,21
+179449,0,0,0,21
+179450,0,0,0,21
+179451,0,0,0,21
+179452,0,0,0,21
+179453,0,0,0,21
+179454,0,0,0,21
+179455,0,0,0,21
+179456,0,0,0,21
+179457,0,0,0,21
+179458,0,0,0,21
+179459,0,0,0,21
+179460,0,0,0,21
+179461,0,0,0,21
+179462,0,0,0,21
+179463,0,0,0,21
+179464,0,0,0,21
+179465,0,0,0,21
+179466,0,0,0,21
+179467,0,0,0,21
+179468,0,0,0,21
+179469,0,0,0,21
+179470,0,0,0,21
+179471,0,0,0,21
+179472,0,0,0,21
+179473,0,0,0,21
+179474,0,0,0,21
+179475,0,0,0,21
+179476,0,0,0,21
+179477,0,0,0,21
+179478,0,0,0,21
+179479,0,0,0,21
+179480,0,0,0,21
+179481,0,0,0,21
+179482,0,0,0,21
+179483,0,0,0,21
+179484,0,0,0,21
+179485,0,0,0,21
+179486,0,0,0,21
+179487,0,0,0,21
+179488,0,0,0,21
+179489,0,0,0,21
+179490,0,0,0,21
+179491,0,0,0,21
+179492,0,0,0,21
+179493,0,0,0,21
+179494,0,0,0,21
+179495,0,0,0,21
+179496,0,0,0,21
+179497,0,0,0,21
+179498,0,0,0,21
+179499,0,0,0,21
+179500,0,0,0,21
+179501,0,0,0,21
+179502,0,0,0,21
+179503,0,0,0,21
+179504,0,0,0,21
+179505,0,0,0,21
+179506,0,0,0,21
+179507,0,0,0,21
+179508,0,0,0,21
+179509,0,0,0,21
+179510,0,0,0,21
+179511,0,0,0,21
+179512,0,0,0,21
+179513,0,0,0,21
+179514,0,0,0,21
+179515,0,0,0,21
+179516,0,0,0,21
+179517,0,0,0,21
+179518,0,0,0,21
+179519,0,0,0,21
+179520,0,0,0,21
+179521,0,0,0,21
+179522,0,0,0,21
+179523,0,0,0,21
+179524,0,0,0,21
+179525,0,0,0,21
+179526,0,0,0,21
+179527,0,0,0,21
+179528,0,0,0,21
+179529,0,0,0,21
+179530,0,0,0,21
+179531,0,0,0,21
+179532,0,0,0,21
+179533,0,0,0,21
+179534,0,0,0,21
+179535,0,0,0,21
+179536,0,0,0,21
+179537,0,0,0,21
+179538,0,0,0,21
+179539,0,0,0,21
+179540,0,0,0,21
+179541,0,0,0,21
+179542,0,0,0,21
+179543,0,0,0,21
+179544,0,0,0,21
+179545,0,0,0,21
+179546,0,0,0,21
+179547,0,0,0,21
+179548,0,0,0,21
+179549,0,0,0,21
+179550,0,0,0,21
+179551,0,0,0,21
+179552,0,0,0,21
+179553,0,0,0,21
+179554,0,0,0,21
+179555,0,0,0,21
+179556,0,0,0,21
+179557,0,0,0,21
+179558,0,0,0,21
+179559,0,0,0,21
+179560,0,0,0,21
+179561,0,0,0,21
+179562,0,0,0,21
+179563,0,0,0,21
+179564,0,0,0,21
+179565,0,0,0,21
+179566,0,0,0,21
+179567,0,0,0,21
+179568,0,0,0,21
+179569,0,0,0,21
+179570,0,0,0,21
+179571,0,0,0,21
+179572,0,0,0,21
+179573,0,0,0,21
+179574,0,0,0,21
+179575,0,0,0,21
+179576,0,0,0,21
+179577,0,0,0,21
+179578,0,0,0,21
+179579,0,0,0,21
+179580,0,0,0,21
+179581,0,0,0,21
+179582,0,0,0,21
+179583,0,0,0,21
+179584,0,240.3631002,0,21
+179585,0,351.3623329,0,21
+179586,0,2883.637323,0,21
+179587,0,2640.641561,0,21
+179588,0,2813.118753,0,21
+179589,0,3155.378575,0,21
+179590,0,3476.394351,0,21
+179591,0,3644.773361,0,21
+179592,0,3961.580618,0,21
+179593,0,4145.584359,0,21
+179594,0,4458.540219,0,21
+179595,0,4622.912498,0,21
+179596,0,4786.675179,0,21
+179597,0,5257.170349,0,21
+179598,0,5435.945812,0,21
+179599,0,5579.712735,0,21
+179600,0,5900.151764,0,21
+179601,0,6201.569471,0,21
+179602,0,6218.576353,0,21
+179603,0,6535.066674,0,21
+179604,0,6816.053579,0,21
+179605,0,6866.439935,0,21
+179606,0,7268.204607,0,21
+179607,0,7318.289736,0,21
+179608,0,7749.986135,0,21
+179609,0,7611.989166,0,21
+179610,0,8074.412374,0,21
+179611,2030.718164,8194.884036,0,21
+179612,1387.077045,8380.702144,0,21
+179613,1903.521482,8652.847008,0,21
+179614,2157.233965,8685.448905,0,21
+179615,2408.353662,8956.263525,0,21
+179616,2657.108134,9123.611857,0,21
+179617,3026.190655,9274.362142,0,21
+179618,3148.225776,9424.75456,0,21
+179619,3511.520683,9708.453106,0,21
+179620,3751.523665,9574.793143,0,21
+179621,3989.877589,10006.87827,0,21
+179622,4226.661456,10022.82726,0,21
+179623,4461.94508,10155.58186,0,21
+179624,4695.790859,10451.9861,0,21
+179625,5043.984913,10467.81872,0,21
+179626,5159.388097,10731.28521,0,21
+179627,5503.692439,10778.55534,0,21
+179628,5845.245085,11025.16768,0,21
+179629,5958.506369,11187.31637,0,21
+179630,6184.169752,11333.43382,0,21
+179631,6408.713933,11349.0441,0,21
+179632,6743.496059,11624.74389,0,21
+179633,6965.367697,11899.3349,0,21
+179634,7075.918124,11785.44537,0,21
+179635,7515.6188,12188.30721,0,21
+179636,7515.618818,12219.14096,0,21
+179637,7842.844514,12332.35284,0,21
+179638,8167.960032,12506.8032,0,21
+179639,8167.96002,12762.74919,0,21
+179640,8598.271328,12778.04798,0,21
+179641,8915.963177,12920.90512,0,21
+179642,9096.163659,13205.78233,0,21
+179643,9252.176508,13205.78171,0,21
+179644,9586.384397,13489.55026,0,21
+179645,9740.373432,13615.92007,0,21
+179646,9966.825871,13631.0221,0,21
+179647,10111.36679,13646.09123,0,21
+179648,10448.52215,13898.11672,0,21
+179649,10583.82314,14179.24883,0,21
+179650,10718.67411,13943.13972,0,21
+179651,11147.92163,14459.06019,0,21
+179652,11090.46358,14459.25548,0,21
+179653,11414.60039,14613.85918,0,21
+179654,11649.78426,14767.95751,0,21
+179655,11884.03524,14877.43504,0,21
+179656,11913.74028,15031.11002,0,21
+179657,12349.80774,15293.31313,0,21
+179658,12364.4969,15308.04882,0,21
+179659,12595.96147,15446.14253,0,21
+179660,12841.0325,15706.94162,0,21
+179661,13041.87533,15721.57669,0,21
+179662,13085.04623,15996.00903,0,21
+179663,13513.29256,16103.79018,0,21
+179664,13527.5248,16147.44802,0,21
+179665,13754.713,16391.4321,0,21
+179666,13981.09874,16527.61393,0,21
+179667,14206.69265,16678.01176,0,21
+179668,14319.19574,16678.00971,0,21
+179669,14557.49177,17164.19796,0,21
+179670,14669.38198,17153.85875,0,21
+179671,14990.17917,17313.69991,0,21
+179672,15003.91591,17595.87193,0,21
+179673,15226.00231,17595.87399,0,21
+179674,15350.37604,17902.17545,0,21
+179675,15571.29444,17916.41534,0,21
+179676,15764.48798,18182.17467,0,21
+179677,15826.00568,18326.12859,0,21
+179678,16149.50026,18485.78873,0,21
+179679,16295.50008,18632.89333,0,21
+179680,16468.21362,18773.85886,0,21
+179681,16586.20989,19052.86671,0,21
+179682,16821.53035,19050.8335,0,21
+179683,16938.8616,19352.82936,0,21
+179684,17077.96388,19352.82926,0,21
+179685,17311.43129,19625.76701,0,21
+179686,17513.61609,19911.68632,0,21
+179687,17552.74456,19782.77213,0,21
+179688,17788.86943,20182.70223,0,21
+179689,17891.54805,20210.4431,0,21
+179690,18041.28331,20463.20691,0,21
+179691,18237.26074,20829.27313,0,21
+179692,18479.57329,21040.66885,0,21
+179693,18500.77019,21211.40739,0,21
+179694,18716.67268,21451.08241,0,21
+179695,18750.43512,21488.65216,0,21
+179696,19155.22081,21854.94848,0,21
+179697,18994.76586,22300.50384,0,21
+179698,19406.91553,22318.93139,0,21
+179699,19419.08644,22420.20857,0,21
+179700,19657.27492,22981.29004,0,21
+179701,20114.55632,23660.17115,0,21
+179702,20750.6264,24177.08021,0,21
+179703,20762.92121,24501.48358,0,21
+179704,20909.85145,24891.83035,0,21
+179705,21205.49758,24981.19716,0,21
+179706,21413.65028,25548.97599,0,21
+179707,21477.86748,25697.67917,0,21
+179708,21661.12724,25975.87224,0,21
+179709,22082.90081,26347.39983,0,21
+179710,21916.1847,26735.77813,0,21
+179711,22470.71876,27120.5765,0,21
+179712,22864.63275,27389.14142,0,21
+179713,22831.37328,27577.15882,0,21
+179714,23386.15375,30609.89786,0,21
+179715,23841.32459,31711.90269,0,21
+179716,23913.17955,31521.51265,0,21
+179717,24154.51335,33096.7755,0,21
+179718,24404.71394,33600.04176,0,21
+179719,24462.36945,34409.71013,0,21
+179720,24726.10136,35222.9434,0,21
+179721,24919.2591,36183.34749,0,21
+179722,25226.57781,36515.05379,0,21
+179723,25234.59692,38024.22078,0,21
+179724,25667.3249,38333.20176,0,21
+179725,25562.74262,39357.85321,0,21
+179726,25967.8132,40043.42704,0,21
+179727,26016.07394,41102.01973,0,21
+179728,26266.69689,41357.3792,0,21
+179729,26500.20877,42398.03719,0,21
+179730,26650.12943,43338.54363,0,21
+179731,30048.65184,43873.44677,0,21
+179732,28993.07297,44384.85846,0,21
+179733,29996.5124,45562.40001,0,21
+179734,30339.88958,46072.87058,0,21
+179735,30989.59567,46572.54358,0,21
+179736,31532.72574,47509.29925,0,21
+179737,31859.69203,48257.48177,0,21
+179738,32451.49836,48551.18692,0,21
+179739,32745.76273,49530.44958,0,21
+179740,33545.64831,50215.87676,0,21
+179741,33571.05588,50850.00292,0,21
+179742,34422.05432,51419.05355,0,21
+179743,34613.61445,52262.41944,0,21
+179744,35225.32495,53011.39902,0,21
+179745,35670.68672,53453.51942,0,21
+179746,35839.65393,54301.47569,0,21
+179747,36683.84435,54654.9642,0,21
+179748,36867.71272,55548.10395,0,21
+179749,40305.84909,56403.17269,0,21
+179750,39541.77126,56751.7605,0,21
+179751,40542.98385,57772.7875,0,21
+179752,41425.66772,58180.93761,0,21
+179753,42236.59734,58902.9056,0,21
+179754,42817.44906,60031.39215,0,21
+179755,43562.73491,60476.03421,0,21
+179756,44466.60755,61249.9134,0,21
+179757,44967.67179,62052.61894,0,21
+179758,45585.77719,62386.51974,0,21
+179759,46532.78785,63174.65851,0,21
+179760,47025.44064,63792.11508,0,21
+179761,47793.33554,64368.38762,0,21
+179762,48560.27314,64761.14165,0,21
+179763,49121.69422,64978.81248,0,21
+179764,50168.91808,66652.47371,0,21
+179765,51278.82378,68129.33939,0,21
+179766,53662.79215,67614.11827,0,21
+179767,53836.59525,68794.95298,0,21
+179768,54825.49055,69219.96444,0,21
+179769,55846.31434,69219.97095,0,21
+179770,57016.95933,70092.72774,0,21
+179771,57590.43216,70449.7109,0,21
+179772,58733.429,71101.74542,0,21
+179773,59548.59606,71704.41081,0,21
+179774,60398.80651,72231.00956,0,21
+179775,61444.72857,72646.18662,0,21
+179776,62236.80516,73270.47087,0,21
+179777,63105.21277,73684.55062,0,21
+179778,64234.91922,74340.25302,0,21
+179779,64672.04569,74825.69308,0,21
+179780,65808.55143,75521.45527,0,21
+179781,66701.55238,75408.54146,0,21
+179782,67458.63812,75989.65932,0,21
+179783,68224.76654,76654.83868,0,21
+179784,69175.69847,77046.64413,0,21
+179785,70010.26864,77640.44691,0,21
+179786,70822.88238,78221.30939,0,21
+179787,71544.16727,78949.56652,0,21
+179788,72740.37807,79319.22595,0,21
+179789,72961.09453,80024.53946,0,21
+179790,74330.20059,80473.97219,0,21
+179791,74650.12099,81241.65294,0,21
+179792,75822.91285,81247.3312,0,21
+179793,76430.21274,82276.48866,0,21
+179794,77140.03705,82476.87924,0,21
+179795,78230.61491,83045.12815,0,21
+179796,78595.56701,83462.96935,0,21
+179797,79860.30403,84115.09855,0,21
+179798,80236.10075,84106.29398,0,21
+179799,81199.39705,85174.97632,0,21
+179800,81909.37246,85322.19524,0,21
+179801,82778.95485,85995.9789,0,21
+179802,83187.16679,86259.02401,0,21
+179803,84427.72399,86665.70626,0,21
+179804,84688.35894,87419.50131,0,21
+179805,85765.37157,87626.87528,0,21
+179806,86277.95543,88227.11906,0,21
+179807,87316.50791,88690.79184,0,21
+179808,87814.68673,89004.29667,0,21
+179809,88404.38045,89747.70395,0,21
+179810,89466.28269,89883.80826,0,21
+179811,89981.22156,90274.83388,0,21
+179812,90752.31433,91048.85179,0,21
+179813,91516.6175,91291.73178,0,21
+179814,92007.69646,91725.34231,0,21
+179815,93071.25989,95253.56748,0,21
+179816,93517.60349,94690.14661,0,21
+179817,94204.40169,95558.55288,0,21
+179818,95214.18189,96748.95283,0,21
+179819,95661.18453,96945.07462,0,21
+179820,96263.56641,98644.30154,0,21
+179821,0,0,0,21
+179822,0,227.6049501,0,21
+179823,430450.9143,0,0,21
+179824,0,0,0,21
+179825,0,0,871767.8909,21
+179826,340014.7952,368732.8101,0,21
+179827,0,0,0,21
+179828,0,0,0,21
+179829,0,0,0,21
+179830,0,0,0,21
+179831,0,0,0,21
+179832,0,0,0,21
+179833,0,0,0,21
+179834,0,67.7589967,0,21
+179835,0,0,0,21
+179836,0,0,0,21
+179837,0,392.7161392,0,21
+179838,0,0,0,21
+179839,0,0,0,21
+179840,0,0,0,21
+179841,0,0,0,21
+179842,0,0,0,21
+179843,0,0,0,21
+179844,0,0,0,21
+179845,0,0,0,21
+179846,0,0,0,21
+179847,0,0,0,21
+179848,0,0,0,21
+179849,0,0,0,21
+179850,0,336.6471956,0,21
+179851,0,0,0,21
+179852,0,0,0,21
+179853,0,0,0,21
+179854,0,0,0,21
+179855,0,0,0,21
+179856,0,0,0,21
+179857,0,0,0,21
+179858,0,0,0,21
+179859,0,0,854227.1478,21
+179860,0,0,0,21
+179861,0,368753.1315,0,21
+179862,340013.793,0,0,21
+179863,0,59.12934208,0,21
+179864,0,0,0,21
+179865,0,0,0,21
+179866,0,0,0,21
+179867,0,0,0,21
+179868,0,0,0,21
+179869,0,0,0,21
+179870,0,433429.7076,0,21
+179871,0,0,0,21
+179872,0,0,0,21
+179873,0,0,0,21
+179874,0,0,0,21
+179875,0,0,0,21
+179876,0,0,0,21
+179877,0,0,0,21
+179878,0,0,0,21
+179879,0,0,0,21
+179880,0,0,0,15.6
+179881,0,0,0,15.6
+179882,0,0,0,15.6
+179883,0,0,0,15.6
+179884,0,0,0,15.6
+179885,0,0,0,15.6
+179886,0,433130.8092,0,15.6
+179887,0,0,0,15.6
+179888,0,0,0,15.6
+179889,0,0,0,15.6
+179890,0,0,0,15.6
+179891,0,0,0,15.6
+179892,0,0,0,15.6
+179893,0,0,838171.8159,15.6
+179894,0,0,0,15.6
+179895,0,0,0,15.6
+179896,0,368753.3051,0,15.6
+179897,0,0,0,15.6
+179898,340010.6999,0,0,15.6
+179899,0,0,0,15.6
+179900,0,0,0,15.6
+179901,0,0,0,15.6
+179902,0,0,0,15.6
+179903,0,0,0,15.6
+179904,0,0,0,15.6
+179905,0,0,0,15.6
+179906,0,0,0,15.6
+179907,0,0,0,15.6
+179908,0,0,0,15.6
+179909,0,0,0,15.6
+179910,0,0,0,15.6
+179911,0,3.489208257,0,15.6
+179912,0,0,0,15.6
+179913,0,122.0682555,0,15.6
+179914,0,0,0,15.6
+179915,0,0,0,15.6
+179916,0,0,0,15.6
+179917,0,73.53106002,0,15.6
+179918,0,0,0,15.6
+179919,0,0,0,15.6
+179920,0,0,0,15.6
+179921,0,106.3594589,0,15.6
+179922,0,0,0,15.6
+179923,0,0,0,15.6
+179924,0,0,0,15.6
+179925,0,98.91789919,0,15.6
+179926,0,0,0,15.6
+179927,0,0,824513.0471,15.6
+179928,0,0,0,15.6
+179929,0,105.6622709,0,15.6
+179930,0,0,0,15.6
+179931,0,368739.7244,0,15.6
+179932,0,0,0,15.6
+179933,0,104.3149049,0,15.6
+179934,340005.6869,0,0,15.6
+179935,0,0,0,15.6
+179936,0,0,0,15.6
+179937,0,86.95488815,0,15.6
+179938,0,0,0,15.6
+179939,0,0,0,15.6
+179940,0,0,0,15.6
+179941,0,0,0,15.6
+179942,0,0,0,15.6
+179943,0,63.94655157,0,15.6
+179944,0,0,0,15.6
+179945,0,0,0,15.6
+179946,0,0,0,15.6
+179947,0,0,0,15.6
+179948,0,0,0,15.6
+179949,0,0,0,15.6
+179950,0,83.05149057,0,15.6
+179951,0,0,0,15.6
+179952,0,0,0,15.6
+179953,0,432753.4424,0,15.6
+179954,0,0,0,15.6
+179955,0,0,0,15.6
+179956,0,0,0,15.6
+179957,0,0,0,15.6
+179958,0,0,0,15.6
+179959,0,0,0,15.6
+179960,0,0,0,15.6
+179961,0,0,0,15.6
+179962,0,0,810985.846,15.6
+179963,0,0,0,15.6
+179964,0,0,0,15.6
+179965,0,0,0,15.6
+179966,0,368697.3006,0,15.6
+179967,0,0,0,15.6
+179968,0,0,0,15.6
+179969,0,0,0,15.6
+179970,339989.4276,0,0,15.6
+179971,0,0,0,15.6
+179972,0,0,0,15.6
+179973,0,0,0,15.6
+179974,0,0,0,15.6
+179975,0,0,0,15.6
+179976,0,0,0,15.6
+179977,0,0,0,15.6
+179978,0,432449.9603,0,15.6
+179979,0,0,0,15.6
+179980,0,0,0,15.6
+179981,0,0,0,15.6
+179982,0,0,0,15.6
+179983,0,0,0,15.6
+179984,0,0,0,15.6
+179985,0,0,0,15.6
+179986,0,0,0,15.6
+179987,0,0,0,15.6
+179988,0,0,0,15.6
+179989,0,0,0,15.6
+179990,0,0,0,15.6
+179991,0,0,0,15.6
+179992,0,0,0,15.6
+179993,0,0,0,15.6
+179994,0,0,0,15.6
+179995,0,0,0,15.6
+179996,0,0,0,15.6
+179997,0,0,799955.9898,15.6
+179998,0,0,0,15.6
+179999,0,0,0,15.6
+180000,0,0,0,15.6
+180001,0,368646.7776,0,15.6
+180002,0,0,0,15.6
+180003,0,0,0,15.6
+180004,0,63.54695735,0,15.6
+180005,0,0,0,15.6
+180006,339972.6006,0,0,15.6
+180007,0,0,0,15.6
+180008,0,0,0,15.6
+180009,0,0,0,15.6
+180010,0,0,0,15.6
+180011,0,0,0,15.6
+180012,0,0,0,15.6
+180013,0,104.3467224,0,15.6
+180014,0,0,0,15.6
+180015,0,0,0,15.6
+180016,0,0,0,15.6
+180017,0,72.87659265,0,15.6
+180018,0,0,0,15.6
+180019,0,0,0,15.6
+180020,0,0,0,15.6
+180021,0,87.47817887,0,15.6
+180022,0,0,0,15.6
+180023,0,0,0,15.6
+180024,0,0,0,15.6
+180025,0,96.10294634,0,15.6
+180026,0,0,0,15.6
+180027,0,0,0,15.6
+180028,0,0,0,15.6
+180029,0,83.65904191,0,15.6
+180030,0,0,0,15.6
+180031,0,0,0,15.6
+180032,0,0,788881.5673,15.6
+180033,0,102.1955665,0,15.6
+180034,0,0,0,15.6
+180035,0,0,0,15.6
+180036,0,368624.0797,0,15.6
+180037,0,86.70684764,0,15.6
+180038,0,0,0,15.6
+180039,0,0,0,15.6
+180040,0,0,0,15.6
+180041,0,97.31248981,0,15.6
+180042,340023.262,0,0,15.6
+180043,0,0,0,15.6
+180044,0,0,0,15.6
+180045,0,83.95296017,0,15.6
+180046,0,0,0,15.6
+180047,0,0,0,15.6
+180048,0,0,0,15.6
+180049,0,107.2478128,0,15.6
+180050,0,0,0,15.6
+180051,0,0,0,15.6
+180052,0,0,0,15.6
+180053,0,98.10980227,0,15.6
+180054,0,0,0,15.6
+180055,0,0,0,15.6
+180056,0,0,0,15.6
+180057,0,99.56774754,0,15.6
+180058,0,0,0,15.6
+180059,0,0,0,15.6
+180060,0,0,0,15.6
+180061,0,96.01428482,0,15.6
+180062,0,0,0,15.6
+180063,0,0,0,15.6
+180064,0,0,0,15.6
+180065,0,85.73019527,0,15.6
+180066,0,0,0,15.6
+180067,0,0,778981.2517,15.6
+180068,0,0,0,15.6
+180069,0,98.49148267,0,15.6
+180070,0,0,0,15.6
+180071,0,0,0,15.6
+180072,0,368607.1968,0,15.6
+180073,0,76.64208228,0,15.6
+180074,0,0,0,15.6
+180075,0,0,0,15.6
+180076,0,0,0,15.6
+180077,0,74.71831243,0,15.6
+180078,0,0,0,15.6
+180079,340075.6647,0,0,15.6
+180080,0,0,0,15.6
+180081,0,73.66403109,0,15.6
+180082,0,0,0,15.6
+180083,0,0,0,15.6
+180084,0,0,0,15.6
+180085,0,79.27107015,0,15.6
+180086,0,0,0,15.6
+180087,0,0,0,15.6
+180088,0,0,0,15.6
+180089,0,81.97035442,0,15.6
+180090,0,0,0,15.6
+180091,0,0,0,15.6
+180092,0,0,0,15.6
+180093,0,85.11900041,0,15.6
+180094,0,0,0,15.6
+180095,0,0,0,15.6
+180096,0,0,0,15.6
+180097,0,87.41028488,0,15.6
+180098,0,0,0,15.6
+180099,0,0,0,15.6
+180100,0,0,0,15.6
+180101,0,98.41006085,0,15.6
+180102,0,0,769836.0443,15.6
+180103,0,0,0,15.6
+180104,0,0,0,15.6
+180105,0,84.21931343,0,15.6
+180106,0,0,0,15.6
+180107,0,0,0,15.6
+180108,0,368600.5856,0,15.6
+180109,0,100.9160738,0,15.6
+180110,0,0,0,15.6
+180111,0,0,0,15.6
+180112,0,0,0,15.6
+180113,0,76.5991051,0,15.6
+180114,0,0,0,15.6
+180115,0,0,0,15.6
+180116,340122.1711,0,0,15.6
+180117,0,87.42332142,0,15.6
+180118,0,0,0,15.6
+180119,0,0,0,15.6
+180120,0,0,0,15.6
+180121,0,98.8690652,0,15.6
+180122,0,0,0,15.6
+180123,0,0,0,15.6
+180124,0,0,0,15.6
+180125,0,82.60910049,0,15.6
+180126,0,0,0,15.6
+180127,0,0,0,15.6
+180128,0,0,0,15.6
+180129,0,98.05253062,0,15.6
+180130,0,0,0,15.6
+180131,0,0,0,15.6
+180132,0,0,0,15.6
+180133,0,78.3404783,0,15.6
+180134,0,0,0,15.6
+180135,0,0,0,15.6
+180136,0,0,0,15.6
+180137,0,84.92089527,760679.4723,15.6
+180138,0,0,0,15.6
+180139,0,0,0,15.6
+180140,0,0,0,15.6
+180141,0,81.29879532,0,15.6
+180142,0,0,0,15.6
+180143,0,0,0,15.6
+180144,0,368595.2454,0,15.6
+180145,0,77.27129866,0,15.6
+180146,0,0,0,15.6
+180147,0,0,0,15.6
+180148,0,0,0,15.6
+180149,0,68.27656927,0,15.6
+180150,0,0,0,15.6
+180151,0,0,0,15.6
+180152,0,0,0,15.6
+180153,340064.7284,70.23816416,0,15.6
+180154,0,0,0,15.6
+180155,0,0,0,15.6
+180156,0,0,0,15.6
+180157,0,77.42682343,0,15.6
+180158,0,0,0,15.6
+180159,0,0,0,15.6
+180160,0,0,0,15.6
+180161,0,81.62376938,0,15.6
+180162,0,0,0,15.6
+180163,0,0,0,15.6
+180164,0,0,0,15.6
+180165,0,84.79885958,0,15.6
+180166,0,0,0,15.6
+180167,0,0,0,15.6
+180168,0,0,0,15.6
+180169,0,87.50036511,0,15.6
+180170,0,0,0,15.6
+180171,0,0,0,15.6
+180172,0,0,753263.186,15.6
+180173,0,97.96826908,0,15.6
+180174,0,0,0,15.6
+180175,0,0,0,15.6
+180176,0,0,0,15.6
+180177,0,83.30335645,0,15.6
+180178,0,0,0,15.6
+180179,0,0,0,15.6
+180180,0,368590.2172,0,15.6
+180181,0,99.24150866,0,15.6
+180182,0,0,0,15.6
+180183,0,0,0,15.6
+180184,0,0,0,15.6
+180185,0,73.62843073,0,15.6
+180186,0,0,0,15.6
+180187,0,0,0,15.6
+180188,0,0,0,15.6
+180189,0,83.04593069,0,15.6
+180190,340002.8658,0,0,15.6
+180191,0,0,0,15.6
+180192,0,0,0,15.6
+180193,0,85.52775527,0,15.6
+180194,0,0,0,15.6
+180195,0,0,0,15.6
+180196,0,0,0,15.6
+180197,0,84.96300822,0,15.6
+180198,0,0,0,15.6
+180199,0,0,0,15.6
+180200,0,0,0,15.6
+180201,0,83.49540908,0,15.6
+180202,0,0,0,15.6
+180203,0,0,0,15.6
+180204,0,0,0,15.6
+180205,0,81.38885939,0,15.6
+180206,0,0,745090.9208,15.6
+180207,0,0,0,15.6
+180208,0,0,0,15.6
+180209,0,79.4386521,0,15.6
+180210,0,0,0,15.6
+180211,0,0,0,15.6
+180212,0,0,0,15.6
+180213,0,77.58610819,0,15.6
+180214,0,368577.0134,0,15.6
+180215,0,0,0,15.6
+180216,0,0,0,15.6
+180217,0,72.91750808,0,15.6
+180218,0,0,0,15.6
+180219,0,0,0,15.6
+180220,0,0,0,15.6
+180221,0,65.04308761,0,15.6
+180222,0,0,0,15.6
+180223,0,0,0,15.6
+180224,0,0,0,15.6
+180225,339979.6578,72.7604214,0,15.6
+180226,0,0,0,15.6
+180227,0,0,0,15.6
+180228,0,0,0,15.6
+180229,0,77.69624976,0,15.6
+180230,0,0,0,15.6
+180231,0,0,0,15.6
+180232,0,0,0,15.6
+180233,0,81.27831466,0,15.6
+180234,0,0,0,15.6
+180235,0,0,0,15.6
+180236,0,0,0,15.6
+180237,0,84.01685704,0,15.6
+180238,0,0,0,15.6
+180239,0,0,0,15.6
+180240,0,0,738658.3763,17.8
+180241,107050.2255,101557.5832,0,17.8
+180242,53978.09715,505361.649,0,17.8
+180243,9892.781992,21100.29014,0,17.8
+180244,25231.65605,31217.16047,0,17.8
+180245,32726.92015,32035.24221,0,17.8
+180246,26572.83955,40944.67153,0,17.8
+180247,24998.5643,33721.3333,0,17.8
+180248,24931.82954,403714.8892,0,17.8
+180249,24896.03728,35403.27323,0,17.8
+180250,24810.95109,35367.28463,0,17.8
+180251,24783.11104,35388.68122,0,17.8
+180252,24679.50333,35361.00431,0,17.8
+180253,24686.30738,35432.965,0,17.8
+180254,24583.84001,32873.72119,0,17.8
+180255,24595.59491,32515.17506,0,17.8
+180256,24476.38112,32349.99738,0,17.8
+180257,24503.1687,32266.22163,0,17.8
+180258,24378.11534,32184.57452,0,17.8
+180259,24421.95377,32101.68092,0,17.8
+180260,364319.3342,32116.37219,0,17.8
+180261,24273.01926,31991.27339,0,17.8
+180262,24304.80106,31919.55464,0,17.8
+180263,24151.67009,31904.80862,0,17.8
+180264,24267.56611,31787.36155,0,17.8
+180265,24130.96499,31769.68048,0,17.8
+180266,24115.77567,31734.56359,0,17.8
+180267,24084.49084,462767.7627,0,17.8
+180268,24060.95741,31651.94442,0,17.8
+180269,24044.82546,31878.16721,0,17.8
+180270,23960.77223,31924.29952,0,17.8
+180271,0,5346.471459,0,17.8
+180272,0,0,0,17.8
+180273,0,0,0,17.8
+180274,0,0,733374.4127,17.8
+180275,72809.17069,0,0,17.8
+180276,5908.17043,74524.76556,0,17.8
+180277,23816.44524,1733.3677,0,17.8
+180278,26310.76247,28293.26132,0,17.8
+180279,23584.83517,28261.74038,0,17.8
+180280,23744.70973,25360.02203,0,17.8
+180281,23727.99696,25708.99408,0,17.8
+180282,23679.42466,394192.748,0,17.8
+180283,23683.35471,25527.02651,0,17.8
+180284,23609.55521,25526.31934,0,17.8
+180285,23609.55,25423.70316,0,17.8
+180286,23609.54485,25304.30305,0,17.8
+180287,23539.48584,25338.03583,0,17.8
+180288,23525.40569,25216.6014,0,17.8
+180289,23497.3453,25188.03362,0,17.8
+180290,23507.19024,25097.03798,0,17.8
+180291,23397.4099,25110.69337,0,17.8
+180292,23499.98381,455988.0433,0,17.8
+180293,23349.5553,24957.84509,0,17.8
+180294,23394.58582,24916.38201,0,17.8
+180295,363292.2488,24750.25777,0,17.8
+180296,23358.99886,24739.64094,0,17.8
+180297,23273.19494,24691.42525,0,17.8
+180298,25947.63777,25743.79198,0,17.8
+180299,24382.46605,26339.04016,0,17.8
+180300,24794.69524,25763.74296,0,20
+180301,1026378.387,584389.5089,103056.9839,20
+180302,334970.9145,149927.4356,0,20
+180303,78736.04653,195248.3143,0,20
+180304,223024.6723,213835.5068,0,20
+180305,257839.1498,191203.4295,0,20
+180306,209953.027,224065.4131,13672.90137,20
+180307,226422.5254,199346.062,5386.235495,20
+180308,223477.3753,203816.4383,9302.49843,20
+180309,215184.3414,203168.3223,8255.129154,20
+180310,214366.4501,200974.0883,9064.337541,20
+180311,213242.8796,199698.1564,10157.73626,20
+180312,211967.1799,197433.0096,9798.732464,20
+180313,211712.8511,197079.2317,10132.61836,20
+180314,210038.9171,195064.6869,10122.99426,20
+180315,209713.5455,193682.2305,10478.90248,20
+180316,209034.5821,193078.5613,10305.47938,20
+180317,207598.7081,191184.5467,10661.66112,20
+180318,207107.3988,191543.8777,10704.79193,20
+180319,205928.2379,190850.3697,10842.99231,20
+180320,205797.7842,189493.7642,10900.41897,20
+180321,204289.5989,187809.7729,11011.66267,20
+180322,204027.0377,186611.0344,11162.76931,20
+180323,203064.8918,185596.8527,11193.33957,20
+180324,202210.9289,184162.8148,11344.31221,20
+180325,201435.6069,182836.6347,11524.70055,20
+180326,200976.6632,182238.4903,11760.29356,20
+180327,199689.6847,180033.1833,11702.49883,20
+180328,199438.9222,179449.081,12185.63736,20
+180329,198174.2511,178402.4212,12150.87651,20
+180330,197580.1154,176557.8508,12257.95117,20
+180331,197079.2591,176049.0497,12541.71662,20
+180332,195462.0275,174145.2012,12354.98426,20
+180333,195089.789,173768.0057,12784.56133,20
+180334,194021.5826,171946.0775,12681.60276,20
+180335,192587.7622,170831.1129,12893.26827,20
+180336,192233.6463,169889.4642,13019.01904,20
+180337,190965.2643,168669.0089,12990.79029,20
+180338,189865.496,167648.2327,13128.3468,20
+180339,189455.4939,166677.0202,13315.90418,20
+180340,188413.5349,167160.47,13344.04202,20
+180341,187294.7174,166483.6231,13413.8894,20
+180342,186642.66,166641.9601,13559.34625,20
+180343,185737.6609,166003.6834,13605.38726,20
+180344,185183.6432,166518.521,13752.39845,20
+180345,183977.9164,165899.1596,13713.09945,20
+180346,183190.4191,166048.8036,13943.41145,20
+180347,182330.0716,165354.5745,13917.3477,20
+180348,181601.6839,165701.3788,14041.82041,20
+180349,180736.537,165204.3286,14082.07786,20
+180350,179830.5334,164491.6761,7705.263488,20
+180351,178877.7117,165248.9675,5647.340381,20
+180352,178065.6225,164468.2103,5129.78742,20
+180353,177344.5935,164512.1044,4127.241049,20
+180354,176221.6831,164794.6668,3870.602754,20
+180355,175582.2171,164155.4682,2802.882471,20
+180356,174577.343,164676.7296,2910.590536,20
+180357,174257.8036,164105.4932,2668.70657,20
+180358,172662.7699,164314.279,2883.594545,20
+180359,172733.7254,164070.0772,2532.827799,20
+180360,170831.8303,164166.097,2728.635821,21
+180361,176430.9399,174331.0242,2552.282188,21
+180362,174904.4223,172257.2799,2628.005086,21
+180363,174170.479,170902.2484,2730.107323,21
+180364,173034.2892,168638.7551,2512.91562,21
+180365,171757.5166,168609.7684,2729.334544,21
+180366,171045.0951,168531.2647,2573.774505,21
+180367,169857.6177,168022.5935,2870.464493,21
+180368,168440.1139,168483.9462,2700.575333,21
+180369,167664.914,167721.8706,2882.522087,21
+180370,166536.9978,167894.518,2894.418814,21
+180371,165215.9111,167784.038,2868.263412,21
+180372,164290.402,167138.8177,3011.095652,21
+180373,162876.8876,167450.396,2906.690002,21
+180374,161877.9257,166816.0651,3034.811293,21
+180375,160736.6358,167006.0796,3189.84193,21
+180376,159733.6101,166503.7366,3048.448408,21
+180377,158360.5753,166072.217,3226.673794,21
+180378,157190.1094,166452.9452,3202.191378,21
+180379,155829.3129,165568.0975,3354.801034,21
+180380,154902.5291,165475.3506,3239.019862,21
+180381,153558.757,165468.6638,3493.749446,21
+180382,152426.8723,164490.7588,3393.442048,21
+180383,151140.6044,164553.7079,3379.040732,21
+180384,150305.6338,163637.4192,3658.547574,21
+180385,150357.9437,164114.6624,3417.409096,21
+180386,149580.6102,163308.1435,3670.720143,21
+180387,148934.3547,162920.5911,3544.893861,21
+180388,148716.2175,162892.2289,3821.467987,21
+180389,147802.8148,162490.9247,3570.158393,21
+180390,147505.966,162212.3907,3822.152989,21
+180391,146927.7657,162004.5089,3710.083424,21
+180392,146662.0882,162058.9541,3845.858326,21
+180393,145910.6567,161229.3926,3836.296899,21
+180394,145801.3405,161646.6272,3859.664585,21
+180395,144934.9225,160731.4277,3986.518448,21
+180396,144256.6348,161374.277,3860.398987,21
+180397,143328.4783,160248.4313,4136.174353,21
+180398,142932.3136,160341.6525,3861.146267,21
+180399,142470.9689,160007.3951,4136.974947,21
+180400,141742.0374,159999.3379,4135.810014,21
+180401,141639.6105,159377.1895,4013.41626,21
+180402,140509.9154,159184.7678,4161.161848,21
+180403,140721.3322,159135.66,4262.464699,21
+180404,139723.3395,158544.2271,4150.536616,21
+180405,139501.3389,158495.3821,4150.952576,21
+180406,138981.8991,158049.8871,4331.174217,21
+180407,138250.426,158032.8825,4304.611788,21
+180408,138526.4523,157449.551,4332.076192,21
+180409,137479.9272,157271.4561,4319.467304,21
+180410,137441.9928,156970.9726,4469.421914,21
+180411,136756.4037,156657.7328,4334.162079,21
+180412,136635.9692,156854.1495,4484.152054,21
+180413,135875.9535,155876.7852,4472.157802,21
+180414,136087.3845,155863.0883,4473.615472,21
+180415,135365.2995,155875.8275,4511.199378,21
+180416,134756.2149,155361.3485,4488.225949,21
+180417,134745.0082,155147.2112,4599.083769,21
+180418,134239.7203,155108.1008,4516.155714,21
+180419,133755.4537,154383.038,4626.227982,21
+180420,133676.6773,155118.7277,4491.004153,21
+180421,114499.1736,136230.1176,1345.043983,21
+180422,113420.3076,134786.8565,1278.496321,21
+180423,112326.053,134230.84,1197.379034,21
+180424,112012.5494,133268.1407,1197.58533,21
+180425,111161.353,133449.3047,1170.133195,21
+180426,110663.9397,132222.1164,1128.446635,21
+180427,110216.1479,132339.696,1114.69966,21
+180428,109668.3182,131396.9568,1086.303962,21
+180429,109494.2054,131159.1792,1086.332698,21
+180430,108847.5826,130541.9701,1072.536665,21
+180431,108602.7202,130162.7714,1058.716397,21
+180432,108080.9275,129855.3892,1058.74366,21
+180433,107773.8012,129329.8457,1031.002686,21
+180434,107735.3522,129219.3907,1044.924781,21
+180435,106960.9181,128128.1354,1017.134099,21
+180436,106791.6086,128308.9257,1003.214461,21
+180437,106466.0315,127844.7874,1003.238893,21
+180438,106011.0959,127054.6571,989.2936399,21
+180439,105765.9068,127338.6331,975.322866,21
+180440,105510.8446,126223.0369,975.3459884,21
+180441,105080.9417,126484.9177,947.3040757,21
+180442,104610.5049,125513.0829,947.325758,21
+180443,104454.9061,125110.0757,919.1801759,21
+180444,104217.0128,124974.3007,919.200682,21
+180445,103705.7696,124535.1439,905.0982224,21
+180446,103474.4147,123672.9032,890.9686855,21
+180447,103087.4786,123172.3544,890.9879362,21
+180448,102167.3744,122826.2286,848.3977853,21
+180449,101815.7012,122298.8994,862.6454078,21
+180450,101132.0013,121613.4281,834.1748488,21
+180451,100808.7737,121033.5213,834.191561,21
+180452,100468.2546,120005.8945,805.6079572,21
+180453,99805.68499,120203.0735,805.6234963,21
+180454,99949.49479,118400.3364,791.296005,21
+180455,99868.04694,118176.6265,776.93874,21
+180456,99036.02572,117195.2576,762.5516672,21
+180457,98789.07574,117364.6555,748.1340998,21
+180458,97818.02361,115994.9723,733.6858922,21
+180459,97582.13346,115853.5883,690.12876,21
+180460,97288.96543,115164.3339,704.6949309,21
+180461,96045.80087,114624.0796,675.5650167,21
+180462,96175.23831,114252.0018,660.956627,21
+180463,95173.86869,113774.279,660.9671442,21
+180464,94620.20625,112905.1083,631.6348471,21
+180465,94336.75712,112720.7022,616.9187643,21
+180466,93453.11197,111932.4461,616.9412962,21
+180467,93048.02764,111700.1204,587.3974567,21
+180468,92208.4607,111087.0348,587.4073098,21
+180469,91993.76557,110356.274,557.7256048,21
+180470,91150.84872,110162.0089,557.7330198,21
+180471,90411.99261,109281.1609,527.9003918,21
+180472,90056.43717,109485.9208,527.9070019,21
+180473,89503.39785,108263.8134,497.9171689,21
+180474,88591.99097,108056.1971,497.9230372,21
+180475,88363.64836,107920.2881,467.7689144,21
+180476,87526.24054,106922.2092,467.7741075,21
+180477,86846.5812,106763.6458,437.4477504,21
+180478,86483.14112,106261.857,437.4522641,21
+180479,85660.97384,106006.5642,406.9445797,21
+180480,85186.96603,105184.5079,406.9484762,21
+180481,84487.97248,105226.9694,376.2490398,21
+180482,83995.98028,104908.1141,376.2523752,21
+180483,83191.37791,104362.2366,345.3490798,21
+180484,82635.06439,104617.2786,345.351874,21
+180485,82040.96259,103989.2034,329.8207953,21
+180486,81240.20669,103989.5953,298.5841676,21
+180487,81112.07948,103400.3944,314.2352421,21
+180488,80042.83396,103550.9573,267.1045998,21
+180489,79565.66023,102993.4352,267.1062604,21
+180490,79085.79288,103107.3575,251.2671897,21
+180491,78408.43824,102262.5639,235.3576515,21
+180492,77666.46788,102574.1656,227.3758787,21
+180493,77307.08413,101959.093,203.3111906,21
+180494,76627.95949,101798.8844,187.1647144,21
+180495,75918.47895,101739.0939,187.1655241,21
+180496,75588.09514,101014.6607,154.5952891,21
+180497,74717.01526,101344.7233,154.595838,21
+180498,74324.76985,100247.1745,121.6022546,21
+180499,73741.313,100547.2129,121.6025929,21
+180500,73125.1158,100263.4468,104.9189144,21
+180501,72292.58388,99691.72367,71.08835641,21
+180502,72095.74536,99368.56157,88.08891705,21
+180503,71396.71823,99264.29836,45.18821148,21
+180504,70726.02559,98394.30265,36.41808998,21
+180505,70224.99665,98663.72162,36.41812013,21
+180506,69626.82699,97857.20005,0,21
+180507,69121.41478,97597.68947,0,21
+180508,68662.22991,97498.93265,0,21
+180509,67754.2445,96615.69695,0,21
+180510,67545.13187,96471.94317,0,21
+180511,66896.70445,95628.08075,0,21
+180512,66366.89181,95896.47858,0,21
+180513,66179.50396,94768.68265,0,21
+180514,66021.37945,94654.38162,0,21
+180515,64947.59304,93760.79844,0,21
+180516,65160.81638,94087.71744,0,21
+180517,64464.34647,92673.10749,0,21
+180518,63994.01639,92627.80987,0,21
+180519,63955.90566,91724.59218,0,21
+180520,63190.68318,91833.42509,0,21
+180521,63101.98648,91003.17218,0,21
+180522,62571.66754,90347.38708,0,21
+180523,62381.70653,90084.94873,0,21
+180524,62034.33473,88926.57767,0,21
+180525,61355.98321,88426.67401,0,21
+180526,61439.31767,87907.54789,0,21
+180527,61174.9531,87184.209,0,21
+180528,60544.84857,86364.79672,0,21
+180529,60613.71237,85373.0827,0,21
+180530,60020.36394,84875.60142,0,21
+180531,60140.11879,84007.32079,0,21
+180532,59528.4415,83279.28308,0,21
+180533,59445.8777,82357.94484,0,21
+180534,59043.21571,81440.86569,0,21
+180535,58790.43379,80809.11155,0,21
+180536,58707.48779,79503.75978,0,21
+180537,58102.87884,78758.1818,0,21
+180538,58136.22346,78027.57132,0,21
+180539,57696.93128,76839.97395,0,21
+180540,57560.70775,75883.05152,0,21
+180541,56777.91423,74175.9784,0,21
+180542,56183.16297,73442.60654,0,21
+180543,56183.98748,72222.88613,0,21
+180544,55557.641,71094.04466,0,21
+180545,55135.54244,70098.81838,0,21
+180546,55062.62756,68849.01445,0,21
+180547,54524.75556,67406.52108,0,21
+180548,54155.1813,66849.55773,0,21
+180549,53957.99447,65205.34295,0,21
+180550,53354.29546,64234.48977,0,21
+180551,53167.55975,62706.34337,0,21
+180552,52668.71483,62230.64607,0,21
+180553,52288.82021,60394.83351,0,21
+180554,52224.32516,59694.37228,0,21
+180555,51647.41662,58157.65146,0,21
+180556,51294.75173,57062.84906,0,21
+180557,50812.47036,55987.62455,0,21
+180558,50680.97516,54500.0262,0,21
+180559,50041.07635,53355.75743,0,21
+180560,49875.19105,52121.08994,0,21
+180561,49440.15962,50579.14511,0,21
+180562,49079.63564,49055.07065,0,21
+180563,48769.44954,47842.94377,0,21
+180564,48301.58427,46842.94411,0,21
+180565,47845.0444,45089.06756,0,21
+180566,47775.83371,43957.95671,0,21
+180567,47067.84936,42560.87066,0,21
+180568,46903.33603,41240.03573,0,21
+180569,46379.95498,39927.63434,0,21
+180570,46120.18093,39009.35516,0,21
+180571,45742.37825,38879.72379,0,21
+180572,45141.95473,38447.87298,0,21
+180573,44596.9776,38538.51552,0,21
+180574,44283.58938,37696.73022,0,21
+180575,43718.27812,37874.85184,0,21
+180576,43304.58329,37315.026,0,21
+180577,42690.5143,37145.00369,0,21
+180578,42199.4279,36583.35265,0,21
+180579,41614.47418,36738.85245,0,21
+180580,41414.71811,36161.98151,0,21
+180581,40369.34386,35827.43899,0,21
+180582,40363.22141,35597.02194,0,21
+180583,39380.91177,35400.37903,0,21
+180584,39199.78748,34923.73296,0,21
+180585,38380.14882,34852.85408,0,21
+180586,37941.17862,34385.16246,0,21
+180587,37376.47398,34340.71942,0,21
+180588,36785.21851,33663.2698,0,21
+180589,36346.28446,33760.96418,0,21
+180590,35465.13939,33709.36567,0,21
+180591,35207.16505,33089.72616,0,21
+180592,34932.93274,33379.16603,0,21
+180593,34503.58194,32933.37628,0,21
+180594,34252.28259,32850.04173,0,21
+180595,33915.64382,32766.57585,0,21
+180596,33549.17604,32365.23168,0,21
+180597,33479.17731,32466.01703,0,21
+180598,32855.81164,32004.4242,0,21
+180599,32676.64052,32118.67052,0,21
+180600,32360.86922,31870.69327,0,21
+180601,32640.19928,31860.42512,0,21
+180602,32105.28232,31950.90423,0,21
+180603,32197.44202,31707.06337,0,21
+180604,31978.02325,31539.7832,0,21
+180605,31872.98633,31327.63465,0,21
+180606,31512.53723,31161.93788,0,21
+180607,31599.55812,31271.3607,0,21
+180608,31173.79125,30860.2572,0,21
+180609,31123.43356,30791.46855,0,21
+180610,30948.64254,30803.62154,0,21
+180611,30721.58234,30491.28308,0,21
+180612,30727.40513,30329.27544,0,21
+180613,30140.26022,30424.67618,0,21
+180614,30417.53739,29994.97363,0,21
+180615,29809.85143,30027.94223,0,21
+180616,29930.14088,29870.69887,0,21
+180617,29661.54823,29645.84796,0,21
+180618,29431.72237,29611.165,0,21
+180619,29345.34466,29321.94095,0,21
+180620,29010.26693,29249.76527,0,21
+180621,28928.79786,29157.30855,0,21
+180622,28678.60566,29044.42653,0,21
+180623,28514.54628,28770.6018,0,21
+180624,28338.02612,28783.33521,0,21
+180625,27584.61595,28383.06589,0,21
+180626,27692.65198,28599.1266,0,21
+180627,26944.52387,28086.33141,0,21
+180628,26974.61341,28198.44087,0,21
+180629,26894.43401,27936.28531,0,21
+180630,26458.61039,27914.23857,0,21
+180631,26232.82736,27533.30385,0,21
+180632,26327.56782,27738.45933,0,21
+180633,25811.23926,27258.97762,0,21
+180634,25767.49666,27323.47912,0,21
+180635,25619.16594,27081.89268,0,21
+180636,25495.00409,26939.53471,0,21
+180637,25375.04877,26906.77017,0,21
+180638,25072.48071,26410.1309,0,21
+180639,25030.25859,26739.33602,0,21
+180640,24949.85257,26233.74187,0,21
+180641,24875.4006,26222.21462,0,21
+180642,24604.81031,26185.67408,0,21
+180643,24560.87256,25799.89475,0,21
+180644,24354.88529,25764.17396,0,21
+180645,24236.39352,25593.9364,0,21
+180646,24290.21893,25364.51959,0,21
+180647,23916.84133,25352.19652,0,21
+180648,23836.62315,25291.96084,0,21
+180649,23772.72989,24949.41215,0,21
+180650,23709.5802,24792.72284,0,21
+180651,23315.70167,24853.17764,0,21
+180652,23666.51674,24509.73415,0,21
+180653,22941.90999,24338.54018,0,21
+180654,23633.80241,24386.52821,0,21
+180655,23390.53527,23969.52028,0,21
+180656,23325.3044,24041.80543,0,21
+180657,23410.75873,23632.06005,0,21
+180658,23036.58978,23833.64792,0,21
+180659,23090.51552,23420.85285,0,21
+180660,22961.23138,23297.8477,0,21
+180661,31984.25194,31940.11182,0,21
+180662,32705.79849,32095.33075,0,21
+180663,33115.6918,32252.47748,0,21
+180664,32982.96734,32243.73565,0,21
+180665,33240.17848,32037.24589,0,21
+180666,33130.30027,32229.08536,0,21
+180667,33421.89843,32015.35123,0,21
+180668,33410.38749,32004.18417,0,21
+180669,33380.85267,31935.1544,0,21
+180670,33431.85331,31968.16482,0,21
+180671,33800.58665,31617.32333,0,21
+180672,33410.39482,32005.0584,0,21
+180673,33909.82829,31314.08702,0,21
+180674,33581.66142,31877.58157,0,21
+180675,33888.31143,31298.4402,0,21
+180676,33712.39931,31638.74114,0,21
+180677,34100.03055,31158.9799,0,21
+180678,33881.90001,31355.95794,0,21
+180679,34074.02624,31004.77328,0,21
+180680,34037.04529,31239.44757,0,21
+180681,34092.78962,30838.9014,0,21
+180682,34285.54932,30838.89811,0,21
+180683,34055.03999,30931.43856,0,21
+180684,34471.18223,30577.0954,0,21
+180685,34313.43397,30554.3969,0,21
+180686,34380.41961,30767.81416,0,21
+180687,34464.80179,30184.99635,0,21
+180688,34466.97903,30377.28298,0,21
+180689,34638.07564,30361.2693,0,21
+180690,34445.34866,30022.29017,0,21
+180691,34719.78934,30066.22674,0,21
+180692,34810.70951,30007.60725,0,21
+180693,34804.18172,29826.29686,0,21
+180694,35051.97233,29820.77955,0,21
+180695,34976.17824,29814.692,0,21
+180696,35244.37188,29457.43026,0,21
+180697,34981.32595,29650.2007,0,21
+180698,35579.0989,29423.49595,0,21
+180699,35339.87613,29277.5575,0,21
+180700,35413.88812,29386.32597,0,21
+180701,35014.39979,29244.3858,0,21
+180702,35022.25206,29023.39575,0,21
+180703,35179.2519,29100.31573,0,21
+180704,35117.31995,28858.87104,0,21
+180705,35373.20198,28955.12559,0,21
+180706,35346.57185,28833.20311,0,21
+180707,35459.12841,28462.25412,0,21
+180708,35658.52743,28809.6752,0,21
+180709,35323.3286,28522.2948,0,21
+180710,35319.87861,28424.71734,0,21
+180711,35348.25541,28412.90499,0,21
+180712,35567.1464,28376.32566,0,21
+180713,35518.11952,28036.693,0,21
+180714,35657.45416,28287.81365,0,21
+180715,35693.16226,28012.92641,0,21
+180716,35836.95209,27965.14029,0,21
+180717,35864.42204,27953.22714,0,21
+180718,36176.45878,27613.60208,0,21
+180719,35889.21144,27915.31743,0,21
+180720,36351.08912,27577.63554,0,21
+180721,36118.08082,27563.73027,0,21
+180722,36365.83314,27904.30174,0,21
+180723,36186.73024,27455.52211,0,21
+180724,36171.98281,27636.41513,0,21
+180725,36270.92646,27455.52269,0,21
+180726,36130.07303,27514.64791,0,21
+180727,36176.6575,27636.64637,0,21
+180728,36313.86607,27353.23517,0,21
+180729,35940.40116,27406.45278,0,21
+180730,36313.86452,27435.53071,0,21
+180731,36124.59862,27274.77548,0,21
+180732,36077.90548,27269.17984,0,21
+180733,36102.78083,27329.10883,0,21
+180734,35883.48969,27247.70895,0,21
+180735,36045.87984,27126.45267,0,21
+180736,35676.86899,27271.81754,0,21
+180737,35659.65048,27114.3984,0,21
+180738,35619.6346,27210.40779,0,21
+180739,35266.86424,26919.2962,0,21
+180740,35364.97436,27186.27858,0,21
+180741,35048.50214,27072.08872,0,21
+180742,34975.67734,26868.92197,0,21
+180743,34960.40641,27076.32567,0,21
+180744,34572.5369,27005.45506,0,21
+180745,34569.19457,26940.6956,0,21
+180746,34326.59247,26857.86714,0,21
+180747,34321.28593,26967.99579,0,21
+180748,34128.00595,26731.24866,0,21
+180749,33888.84494,26932.61874,0,21
+180750,33906.50509,26733.37474,0,21
+180751,33829.92852,26942.75864,0,21
+180752,33493.4989,26586.21242,0,21
+180753,33629.02182,26955.89647,0,21
+180754,33248.5751,26573.03882,0,21
+180755,33390.64358,26874.7884,0,21
+180756,33209.80125,26709.69411,0,21
+180757,32933.7364,26685.44519,0,21
+180758,33150.14849,26804.56128,0,21
+180759,33002.14146,26477.12357,0,21
+180760,32925.64571,26770.27435,0,21
+180761,32783.40246,26652.55642,0,21
+180762,32909.01735,26659.09725,0,21
+180763,32638.42005,26585.09584,0,21
+180764,32733.64712,26548.53544,0,21
+180765,32700.43893,26805.58528,0,21
+180766,32685.62696,26371.22636,0,21
+180767,32431.3874,26669.0682,0,21
+180768,32662.79431,26616.00463,0,21
+180769,32651.35405,26658.03926,0,21
+180770,32410.57889,26314.80574,0,21
+180771,32619.02137,26536.38435,0,21
+180772,32402.13108,26398.92041,0,21
+180773,32619.01938,26536.38765,0,21
+180774,32515.19798,26166.784,0,21
+180775,32454.66699,26254.87277,0,21
+180776,32523.7021,26277.26839,0,21
+180777,32422.26206,25951.77832,0,21
+180778,32398.65848,26241.62149,0,21
+180779,32587.57355,25829.67456,0,21
+180780,32422.25889,25995.91853,0,21
+180781,32367.15759,25680.41863,0,21
+180782,32293.4259,25700.20516,0,21
+180783,32462.67485,25439.79466,0,21
+180784,32274.38502,25465.8391,0,21
+180785,32361.19923,25321.46843,0,21
+180786,32333.58907,25303.98761,0,21
+180787,32174.40944,25018.57743,0,21
+180788,32492.88819,25017.16615,0,21
+180789,32036.58496,24968.30516,0,21
+180790,32112.88068,24632.03501,0,21
+180791,32276.60401,25010.41098,0,21
+180792,31821.04603,24343.85283,0,21
+180793,31882.72583,24691.66098,0,21
+180794,31946.26986,24598.13675,0,21
+180795,31844.98151,24205.56334,0,21
+180796,31441.9608,24402.3856,0,21
+180797,31466.97975,24292.09155,0,21
+180798,31473.22223,24153.70729,0,21
+180799,31076.51055,24137.82436,0,21
+180800,31092.03472,24141.80893,0,21
+180801,30829.49189,23899.70623,0,21
+180802,30602.86236,23989.77536,0,21
+180803,30613.45128,23831.60489,0,21
+180804,30286.79472,23905.95475,0,21
+180805,31555.35597,23750.87814,0,21
+180806,30780.80627,23611.75849,0,21
+180807,30854.42413,23710.00699,0,21
+180808,30894.12061,23711.14231,0,21
+180809,30462.54059,23333.00825,0,21
+180810,30387.53621,23711.14481,0,21
+180811,30523.33578,23179.65094,0,21
+180812,30123.45294,23320.52912,0,21
+180813,30185.04813,23151.6201,0,21
+180814,29649.34313,22813.08918,0,21
+180815,29452.62264,22986.92947,0,21
+180816,29344.16873,22544.49277,0,21
+180817,29120.53008,22477.71815,0,21
+180818,28768.73253,22491.54515,0,21
+180819,28773.25044,21964.3288,0,21
+180820,28559.19967,22094.38739,0,21
+180821,27972.86925,21624.21962,0,21
+180822,27972.41124,21667.54454,0,21
+180823,27542.03096,21295.88364,0,21
+180824,27361.97014,21136.49602,0,21
+180825,27006.18643,20875.57897,0,21
+180826,26511.19395,20488.57238,0,21
+180827,26349.43626,20456.82335,0,21
+180828,25934.98795,19976.50482,0,21
+180829,25686.18498,19755.64799,0,21
+180830,25034.18343,19432.83916,0,21
+180831,24952.5599,19016.37978,0,21
+180832,24297.34103,18888.20646,0,21
+180833,23945.80747,18325.45833,0,21
+180834,23425.02394,18084.76174,0,21
+180835,23261.96959,17707.02776,0,21
+180836,22452.68447,17258.50946,0,21
+180837,22240.22767,16957.16117,0,21
+180838,21694.33473,16408.68276,0,21
+180839,21099.28495,16075.72374,0,21
+180840,20833.28367,15564.38703,0,21
+180841,19577.69517,15284.65242,0,21
+180842,18960.64783,15101.03392,0,21
+180843,18365.74744,14171.72848,0,21
+180844,19517.83717,14143.22929,0,21
+180845,21458.21713,13483.65857,0,21
+180846,20456.71373,13011.94775,0,21
+180847,21843.8775,12560.45002,0,21
+180848,20628.57077,12262.74633,0,21
+180849,23591.26498,11301.69427,0,21
+180850,21672.89186,11242.34695,0,21
+180851,23873.98127,10532.475,0,21
+180852,23263.14781,9912.596515,0,21
+180853,24334.78958,9469.50313,0,21
+180854,24970.47447,8976.317988,0,21
+180855,24647.89229,8227.338691,0,21
+180856,26074.47494,7738.432816,0,21
+180857,26190.42074,7257.601781,0,21
+180858,26372.12123,6463.935188,0,21
+180859,28005.17529,6115.757495,0,21
+180860,26711.21442,5276.491249,0,21
+180861,28305.5872,4931.548076,0,21
+180862,29001.05134,4140.009255,0,21
+180863,28698.99519,3491.418556,0,21
+180864,30038.99778,3412.953825,0,21
+180865,29584.73112,3351.966715,0,21
+180866,30430.52147,3293.508697,0,21
+180867,31194.09058,3229.198701,0,21
+180868,31482.81901,3196.77819,0,21
+180869,31594.03782,3183.142479,0,21
+180870,32349.43123,3169.467487,0,21
+180871,32722.66254,3183.133979,0,21
+180872,33789.29247,3169.457517,0,21
+180873,32963.68601,3155.74264,0,21
+180874,34106.6811,3169.457805,0,21
+180875,34427.97075,3169.457835,0,21
+180876,34856.54123,3155.742817,0,21
+180877,35427.74056,3268.107617,0,21
+180878,35183.49288,3042.893314,0,21
+180879,36068.88615,3268.107961,0,21
+180880,36139.43541,3155.743306,0,21
+180881,37576.00224,3155.743373,0,21
+180882,36327.64722,3141.987435,0,21
+180883,37729.7341,3268.108289,0,21
+180884,37858.39668,3155.74379,0,21
+180885,37866.00131,3141.987872,0,21
+180886,38131.96575,3254.352722,0,21
+180887,39410.17244,3155.744062,0,21
+180888,39462.16448,3254.352873,0,21
+180889,39037.98255,3155.744201,0,21
+180890,40180.77456,3240.555371,0,21
+180891,40020.23797,3155.744584,0,21
+180892,41000.25344,3254.353391,0,21
+180893,41154.45299,3268.109493,0,21
+180894,41416.15681,3184.43296,0,21
+180895,41439.12238,3268.109614,0,21
+180896,42074.12315,3254.353849,0,21
+180897,42905.88916,3268.110007,0,21
+180898,42292.338,3240.556208,0,21
+180899,42863.03435,3268.11013,0,21
+180900,43856.48263,3268.110195,0,21
+180901,43184.1409,3254.353248,0,21
+180902,44278.40881,3254.353536,0,21
+180903,44049.05216,3268.10969,0,21
+180904,44508.8781,3296.561225,0,21
+180905,44495.09896,3268.109808,0,21
+180906,45300.36047,3240.556019,0,21
+180907,45111.87411,3373.132108,0,21
+180908,46079.05521,3254.354146,0,21
+180909,45317.44623,3240.556439,0,21
+180910,46023.50333,3366.249358,0,21
+180911,47266.02481,3310.359684,0,21
+180912,45971.14553,3366.249456,0,21
+180913,46882.73193,3240.556725,0,21
+180914,47133.99637,3366.249902,0,21
+180915,47611.39832,3352.452175,0,21
+180916,47334.81134,3366.25002,0,21
+180917,47448.57236,3303.466692,0,21
+180918,48711.8668,3352.452252,0,21
+180919,48131.00706,3366.250072,0,21
+180920,48914.55088,3408.228354,0,21
+180921,48565.62814,3366.250398,0,21
+180922,49003.64773,3352.452591,0,21
+180923,50015.59028,3366.250414,0,21
+180924,48857.38826,3463.892097,0,21
+180925,50307.74174,3366.250402,0,21
+180926,50047.14062,3352.452814,0,21
+180927,50127.19984,3477.690172,0,21
+180928,50349.22357,3352.452856,0,21
+180929,51291.60057,3477.690132,0,21
+180930,50469.73296,3463.892297,0,21
+180931,51390.74532,3366.25267,0,21
+180932,51554.51983,3463.895056,0,21
+180933,51643.09925,3463.894963,0,21
+180934,52743.59393,3477.692664,0,21
+180935,51672.64262,3450.054175,0,21
+180936,52833.61367,3477.692384,0,21
+180937,51794.79374,3450.053854,0,21
+180938,54031.74219,3533.245365,0,21
+180939,52488.50363,3450.053857,0,21
+180940,53553.37141,3519.447256,0,21
+180941,53010.96246,3450.053491,0,21
+180942,54330.092,3574.890869,0,21
+180943,54183.6463,3450.053084,0,21
+180944,53305.89498,3561.050143,0,21
+180945,55339.2934,3463.89348,0,21
+180946,54498.42662,3547.165556,0,21
+180947,54988.87217,3574.890021,0,21
+180948,56142.96938,3436.1681,0,21
+180949,55238.12561,3671.615693,0,21
+180950,56916.49109,3450.05199,0,21
+180951,56389.06686,3602.50364,0,21
+180952,56577.72547,3561.051066,0,21
+180953,56501.77549,3547.163955,0,21
+180954,57652.19811,3616.386821,0,21
+180955,56719.65185,3547.163333,0,21
+180956,57942.02111,3657.729847,0,21
+180957,57793.67153,3547.162924,0,21
+180958,57961.21972,3657.729177,0,21
+180959,58573.33699,3547.162186,0,21
+180960,57980.26882,3657.728346,0,21
+180961,0,0,0,21
+180962,0,0,0,21
+180963,0,0,0,21
+180964,0,0,0,21
+180965,0,0,0,21
+180966,0,0,0,21
+180967,0,0,0,21
+180968,0,0,0,21
+180969,0,0,0,21
+180970,0,0,0,21
+180971,0,0,0,21
+180972,0,0,0,21
+180973,0,0,0,21
+180974,0,0,0,21
+180975,0,0,0,21
+180976,0,0,0,21
+180977,0,0,0,21
+180978,0,0,0,21
+180979,0,0,0,21
+180980,0,0,0,21
+180981,0,0,0,21
+180982,0,0,0,21
+180983,0,0,0,21
+180984,0,0,0,21
+180985,0,0,0,21
+180986,0,0,0,21
+180987,0,0,0,21
+180988,0,0,0,21
+180989,0,0,0,21
+180990,0,0,0,21
+180991,0,0,0,21
+180992,0,0,0,21
+180993,0,0,0,21
+180994,0,0,0,21
+180995,0,0,0,21
+180996,0,0,0,21
+180997,0,0,0,21
+180998,0,0,0,21
+180999,0,0,0,21
+181000,0,0,0,21
+181001,0,0,0,21
+181002,0,0,0,21
+181003,0,0,0,21
+181004,0,0,0,21
+181005,0,0,0,21
+181006,0,0,0,21
+181007,0,0,0,21
+181008,0,0,0,21
+181009,0,0,0,21
+181010,0,0,0,21
+181011,0,0,0,21
+181012,0,0,0,21
+181013,0,0,0,21
+181014,0,0,0,21
+181015,0,0,0,21
+181016,0,0,0,21
+181017,0,0,0,21
+181018,0,0,0,21
+181019,0,0,0,21
+181020,0,0,0,21
+181021,0,0,0,21
+181022,0,0,0,21
+181023,0,0,0,21
+181024,0,0,0,21
+181025,0,0,0,21
+181026,0,0,0,21
+181027,0,0,772694.3351,21
+181028,0,368453.0585,0,21
+181029,0,0,0,21
+181030,0,0,0,21
+181031,339730.0374,0,0,21
+181032,0,0,0,21
+181033,0,0,0,21
+181034,0,0,0,21
+181035,0,0,0,21
+181036,0,0,0,21
+181037,0,0,0,21
+181038,0,0,0,21
+181039,0,0,0,21
+181040,0,0,0,21
+181041,0,0,0,21
+181042,0,0,0,21
+181043,0,0,0,21
+181044,0,0,0,21
+181045,0,0,0,21
+181046,0,0,0,21
+181047,0,0,0,21
+181048,0,0,0,21
+181049,0,0,0,21
+181050,0,0,0,21
+181051,0,0,0,21
+181052,0,0,0,21
+181053,0,0,0,21
+181054,0,0,0,21
+181055,0,0,0,21
+181056,0,0,0,21
+181057,0,0,0,21
+181058,0,0,0,21
+181059,0,0,0,21
+181060,0,0,0,21
+181061,0,0,0,21
+181062,0,0,0,21
+181063,0,0,763821.5472,21
+181064,0,0,0,21
+181065,0,368500.9817,0,21
+181066,0,0,0,21
+181067,0,0,0,21
+181068,0,0,0,21
+181069,0,0,0,21
+181070,0,0,0,21
+181071,339842.4878,0,0,21
+181072,0,0,0,21
+181073,0,0,0,21
+181074,0,0,0,21
+181075,0,0,0,21
+181076,0,0,0,21
+181077,0,0,0,21
+181078,0,0,0,21
+181079,0,0,0,21
+181080,0,0,0,21
+181081,0,0,0,21
+181082,0,0,0,21
+181083,0,0,0,21
+181084,0,0,0,21
+181085,0,0,0,21
+181086,0,0,0,21
+181087,0,0,0,21
+181088,0,0,0,21
+181089,0,0,0,21
+181090,0,0,0,21
+181091,0,0,0,21
+181092,0,0,0,21
+181093,0,0,0,21
+181094,0,0,0,21
+181095,0,0,0,21
+181096,0,0,0,21
+181097,0,0,0,21
+181098,0,0,0,21
+181099,0,0,755410.7449,21
+181100,0,0,0,21
+181101,0,0,0,21
+181102,0,368504.7444,0,21
+181103,0,0,0,21
+181104,0,0,0,21
+181105,0,0,0,21
+181106,0,0,0,21
+181107,0,0,0,21
+181108,0,0,0,21
+181109,0,0,0,21
+181110,0,0,0,21
+181111,339881.0406,0,0,21
+181112,0,0,0,21
+181113,0,0,0,21
+181114,0,0,0,21
+181115,0,0,0,21
+181116,0,0,0,21
+181117,0,0,0,21
+181118,0,0,0,21
+181119,0,0,0,21
+181120,0,0,0,21
+181121,0,0,0,21
+181122,0,0,0,21
+181123,0,0,0,21
+181124,0,0,0,21
+181125,0,0,0,21
+181126,0,0,0,21
+181127,0,0,0,21
+181128,0,0,0,21
+181129,0,0,0,21
+181130,0,0,0,21
+181131,0,0,0,21
+181132,0,0,0,21
+181133,0,0,0,21
+181134,0,0,0,21
+181135,0,0,747021.3289,21
+181136,0,0,0,21
+181137,0,0,0,21
+181138,0,0,0,21
+181139,0,368504.7444,0,21
+181140,0,0,0,21
+181141,0,0,0,21
+181142,0,0,0,21
+181143,0,0,0,21
+181144,0,0,0,21
+181145,0,0,0,21
+181146,0,0,0,21
+181147,0,0,0,21
+181148,0,0,0,21
+181149,0,0,0,21
+181150,0,0,0,21
+181151,0,0,0,21
+181152,339903.9843,0,0,21
+181153,0,0,0,21
+181154,0,0,0,21
+181155,0,0,0,21
+181156,0,0,0,21
+181157,0,0,0,21
+181158,0,0,0,21
+181159,0,0,0,21
+181160,0,0,0,21
+181161,0,0,0,21
+181162,0,0,0,21
+181163,0,0,0,21
+181164,0,0,0,21
+181165,0,0,0,21
+181166,0,0,0,21
+181167,0,0,0,21
+181168,0,0,0,21
+181169,0,0,0,21
+181170,0,0,0,21
+181171,0,0,739520.5833,21
+181172,0,0,0,21
+181173,0,0,0,21
+181174,0,0,0,21
+181175,0,0,0,21
+181176,0,368504.7444,0,21
+181177,0,0,0,21
+181178,0,0,0,21
+181179,0,0,0,21
+181180,0,0,0,21
+181181,0,0,0,21
+181182,0,0,0,21
+181183,0,0,0,21
+181184,0,0,0,21
+181185,0,0,0,21
+181186,0,0,0,21
+181187,0,0,0,21
+181188,0,0,0,21
+181189,0,0,0,21
+181190,0,0,0,21
+181191,0,0,0,21
+181192,0,0,0,21
+181193,339924.1364,0,0,21
+181194,0,0,0,21
+181195,0,0,0,21
+181196,0,0,0,21
+181197,0,0,0,21
+181198,0,0,0,21
+181199,0,0,0,21
+181200,0,0,0,21
+181201,0,0,0,21
+181202,0,0,0,21
+181203,0,0,0,21
+181204,0,0,0,21
+181205,0,0,0,21
+181206,0,0,0,21
+181207,0,0,0,21
+181208,0,0,732803.6682,21
+181209,0,0,0,21
+181210,0,0,0,21
+181211,0,0,0,21
+181212,0,0,0,21
+181213,0,368504.7473,0,21
+181214,0,0,0,21
+181215,0,0,0,21
+181216,0,0,0,21
+181217,0,0,0,21
+181218,0,0,0,21
+181219,0,0,0,21
+181220,0,0,0,21
+181221,0,0,0,21
+181222,0,0,0,21
+181223,0,0,0,21
+181224,0,0,0,21
+181225,0,0,0,21
+181226,0,0,0,21
+181227,0,0,0,21
+181228,0,0,0,21
+181229,0,0,0,21
+181230,0,0,0,21
+181231,0,0,0,21
+181232,0,0,0,21
+181233,0,0,0,21
+181234,339943.4039,0,0,21
+181235,0,0,0,21
+181236,0,0,0,21
+181237,0,0,0,21
+181238,0,0,0,21
+181239,0,0,0,21
+181240,0,0,0,21
+181241,0,0,0,21
+181242,0,0,0,21
+181243,0,0,0,21
+181244,0,0,0,21
+181245,0,0,726761.8139,21
+181246,0,0,0,21
+181247,0,0,0,21
+181248,0,0,0,21
+181249,0,0,0,21
+181250,0,0,0,21
+181251,0,368478.4738,0,21
+181252,0,0,0,21
+181253,0,0,0,21
+181254,0,0,0,21
+181255,0,0,0,21
+181256,0,0,0,21
+181257,0,0,0,21
+181258,0,0,0,21
+181259,0,0,0,21
+181260,0,0,0,21
+181261,0,0,0,21
+181262,0,0,0,21
+181263,0,0,0,21
+181264,0,0,0,21
+181265,0,0,0,21
+181266,0,0,0,21
+181267,0,0,0,21
+181268,0,0,0,21
+181269,0,0,0,21
+181270,0,0,0,21
+181271,0,0,0,21
+181272,0,0,0,21
+181273,0,0,0,21
+181274,0,0,0,21
+181275,339946.8861,0,0,21
+181276,0,0,0,21
+181277,0,0,0,21
+181278,0,0,0,21
+181279,0,0,0,21
+181280,0,0,0,21
+181281,0,0,0,21
+181282,0,0,721151.0428,21
+181283,0,0,0,21
+181284,0,0,0,21
+181285,0,0,0,21
+181286,0,0,0,21
+181287,0,0,0,21
+181288,0,0,0,21
+181289,0,368467.9762,0,21
+181290,0,0,0,21
+181291,0,0,0,21
+181292,0,0,0,21
+181293,0,0,0,21
+181294,0,0,0,21
+181295,0,0,0,21
+181296,0,0,0,21
+181297,0,0,0,21
+181298,0,0,0,21
+181299,0,0,0,21
+181300,0,0,0,21
+181301,0,0,0,21
+181302,0,0,0,21
+181303,0,0,0,21
+181304,0,0,0,21
+181305,0,0,0,21
+181306,0,0,0,21
+181307,0,0,0,21
+181308,0,0,0,21
+181309,0,0,0,21
+181310,0,0,0,21
+181311,0,0,0,21
+181312,0,0,0,21
+181313,0,0,0,21
+181314,0,0,0,21
+181315,0,0,0,21
+181316,0,0,0,21
+181317,339926.1867,0,0,21
+181318,0,0,0,21
+181319,0,0,716357.5037,21
+181320,0,0,0,15.6
+181321,0,0,0,15.6
+181322,0,0,0,15.6
+181323,0,0,0,15.6
+181324,0,0,0,15.6
+181325,0,0,0,15.6
+181326,0,0,0,15.6
+181327,0,368452.2545,0,15.6
+181328,0,0,0,15.6
+181329,0,0,0,15.6
+181330,0,0,0,15.6
+181331,0,0,0,15.6
+181332,0,0,0,15.6
+181333,0,0,0,15.6
+181334,0,0,0,15.6
+181335,0,0,0,15.6
+181336,0,0,0,15.6
+181337,0,0,0,15.6
+181338,0,0,0,15.6
+181339,0,0,0,15.6
+181340,0,0,0,15.6
+181341,0,0,0,15.6
+181342,0,0,0,15.6
+181343,0,0,0,15.6
+181344,0,0,0,15.6
+181345,0,0,0,15.6
+181346,0,0,0,15.6
+181347,0,0,0,15.6
+181348,0,0,0,15.6
+181349,0,0,0,15.6
+181350,0,0,0,15.6
+181351,0,0,0,15.6
+181352,0,0,0,15.6
+181353,0,0,0,15.6
+181354,0,0,0,15.6
+181355,0,0,0,15.6
+181356,0,0,711270.1549,15.6
+181357,0,0,0,15.6
+181358,0,0,0,15.6
+181359,339904.3139,0,0,15.6
+181360,0,0,0,15.6
+181361,0,0,0,15.6
+181362,0,0,0,15.6
+181363,0,0,0,15.6
+181364,0,0,0,15.6
+181365,0,368416.8137,0,15.6
+181366,0,0,0,15.6
+181367,0,0,0,15.6
+181368,0,0,0,15.6
+181369,0,0,0,15.6
+181370,0,0,0,15.6
+181371,0,0,0,15.6
+181372,0,0,0,15.6
+181373,0,0,0,15.6
+181374,0,0,0,15.6
+181375,0,0,0,15.6
+181376,0,0,0,15.6
+181377,0,0,0,15.6
+181378,0,0,0,15.6
+181379,0,0,0,15.6
+181380,0,0,0,15.6
+181381,0,0,0,15.6
+181382,0,0,0,15.6
+181383,0,0,0,15.6
+181384,0,0,0,15.6
+181385,0,0,0,15.6
+181386,0,0,0,15.6
+181387,0,0,0,15.6
+181388,0,0,0,15.6
+181389,0,0,0,15.6
+181390,0,0,0,15.6
+181391,0,0,0,15.6
+181392,0,0,0,15.6
+181393,0,0,708467.9159,15.6
+181394,0,0,0,15.6
+181395,0,0,0,15.6
+181396,0,0,0,15.6
+181397,0,0,0,15.6
+181398,0,0,0,15.6
+181399,0,0,0,15.6
+181400,0,0,0,15.6
+181401,339892.6962,0,0,15.6
+181402,0,0,0,15.6
+181403,0,368399.7786,0,15.6
+181404,0,0,0,15.6
+181405,0,0,0,15.6
+181406,0,0,0,15.6
+181407,0,0,0,15.6
+181408,0,0,0,15.6
+181409,0,0,0,15.6
+181410,0,0,0,15.6
+181411,0,0,0,15.6
+181412,0,0,0,15.6
+181413,0,0,0,15.6
+181414,0,0,0,15.6
+181415,0,0,0,15.6
+181416,0,0,0,15.6
+181417,0,0,0,15.6
+181418,0,0,0,15.6
+181419,0,0,0,15.6
+181420,0,0,0,15.6
+181421,0,0,0,15.6
+181422,0,0,0,15.6
+181423,0,0,0,15.6
+181424,0,0,0,15.6
+181425,0,0,0,15.6
+181426,0,0,0,15.6
+181427,0,0,0,15.6
+181428,0,0,0,15.6
+181429,0,0,0,15.6
+181430,0,0,705826.5847,15.6
+181431,0,0,0,15.6
+181432,0,0,0,15.6
+181433,0,0,0,15.6
+181434,0,0,0,15.6
+181435,0,0,0,15.6
+181436,0,0,0,15.6
+181437,0,0,0,15.6
+181438,0,0,0,15.6
+181439,0,0,0,15.6
+181440,0,0,0,15.6
+181441,0,368394.1471,0,15.6
+181442,0,0,0,15.6
+181443,339890.8394,0,0,15.6
+181444,0,0,0,15.6
+181445,0,0,0,15.6
+181446,0,0,0,15.6
+181447,0,0,0,15.6
+181448,0,0,0,15.6
+181449,0,0,0,15.6
+181450,0,0,0,15.6
+181451,0,0,0,15.6
+181452,0,0,0,15.6
+181453,0,0,0,15.6
+181454,0,0,0,15.6
+181455,0,0,0,15.6
+181456,0,0,0,15.6
+181457,0,0,0,15.6
+181458,0,0,0,15.6
+181459,0,0,0,15.6
+181460,0,0,0,15.6
+181461,0,0,0,15.6
+181462,0,0,0,15.6
+181463,0,0,0,15.6
+181464,0,0,0,15.6
+181465,0,0,0,15.6
+181466,0,0,0,15.6
+181467,0,0,703193.329,15.6
+181468,0,0,0,15.6
+181469,0,0,0,15.6
+181470,0,0,0,15.6
+181471,0,0,0,15.6
+181472,0,0,0,15.6
+181473,0,0,0,15.6
+181474,0,0,0,15.6
+181475,0,0,0,15.6
+181476,0,0,0,15.6
+181477,0,0,0,15.6
+181478,0,0,0,15.6
+181479,0,368393.7525,0,15.6
+181480,0,0,0,15.6
+181481,0,0,0,15.6
+181482,0,0,0,15.6
+181483,0,0,0,15.6
+181484,0,0,0,15.6
+181485,339869.1617,0,0,15.6
+181486,0,0,0,15.6
+181487,0,0,0,15.6
+181488,0,0,0,15.6
+181489,0,0,0,15.6
+181490,0,0,0,15.6
+181491,0,0,0,15.6
+181492,0,0,0,15.6
+181493,0,0,0,15.6
+181494,0,0,0,15.6
+181495,0,0,0,15.6
+181496,0,0,0,15.6
+181497,0,0,0,15.6
+181498,0,0,0,15.6
+181499,0,0,0,15.6
+181500,0,0,0,15.6
+181501,0,0,0,15.6
+181502,0,0,0,15.6
+181503,0,0,0,15.6
+181504,0,0,700722.5902,15.6
+181505,0,0,0,15.6
+181506,0,0,0,15.6
+181507,0,0,0,15.6
+181508,0,0,0,15.6
+181509,0,0,0,15.6
+181510,0,0,0,15.6
+181511,0,0,0,15.6
+181512,0,0,0,15.6
+181513,0,0,0,15.6
+181514,0,0,0,15.6
+181515,0,0,0,15.6
+181516,0,0,0,15.6
+181517,0,368387.2835,0,15.6
+181518,0,0,0,15.6
+181519,0,0,0,15.6
+181520,0,0,0,15.6
+181521,0,0,0,15.6
+181522,0,0,0,15.6
+181523,0,0,0,15.6
+181524,0,0,0,15.6
+181525,0,0,0,15.6
+181526,0,0,0,15.6
+181527,339849.2725,0,0,15.6
+181528,0,0,0,15.6
+181529,0,0,0,15.6
+181530,0,0,0,15.6
+181531,0,0,0,15.6
+181532,0,0,0,15.6
+181533,0,0,0,15.6
+181534,0,0,0,15.6
+181535,0,0,0,15.6
+181536,0,0,0,15.6
+181537,0,0,0,15.6
+181538,0,0,0,15.6
+181539,0,0,0,15.6
+181540,0,0,0,15.6
+181541,0,0,698576.9878,15.6
+181542,0,0,0,15.6
+181543,0,0,0,15.6
+181544,0,0,0,15.6
+181545,0,0,0,15.6
+181546,0,0,0,15.6
+181547,0,0,0,15.6
+181548,0,0,0,15.6
+181549,0,0,0,15.6
+181550,0,0,0,15.6
+181551,0,0,0,15.6
+181552,0,0,0,15.6
+181553,0,0,0,15.6
+181554,0,0,0,15.6
+181555,0,368372.4867,0,15.6
+181556,0,0,0,15.6
+181557,0,0,0,15.6
+181558,0,0,0,15.6
+181559,0,0,0,15.6
+181560,0,0,0,15.6
+181561,0,0,0,15.6
+181562,0,0,0,15.6
+181563,0,0,0,15.6
+181564,0,0,0,15.6
+181565,0,0,0,15.6
+181566,0,0,0,15.6
+181567,0,0,0,15.6
+181568,0,0,0,15.6
+181569,339829.8884,0,0,15.6
+181570,0,0,0,15.6
+181571,0,0,0,15.6
+181572,0,0,0,15.6
+181573,0,0,0,15.6
+181574,0,0,0,15.6
+181575,0,0,0,15.6
+181576,0,0,0,15.6
+181577,0,0,0,15.6
+181578,0,0,696645.2302,15.6
+181579,0,0,0,15.6
+181580,0,0,0,15.6
+181581,0,0,0,15.6
+181582,0,0,0,15.6
+181583,0,0,0,15.6
+181584,0,0,0,15.6
+181585,0,0,0,15.6
+181586,0,0,0,15.6
+181587,0,0,0,15.6
+181588,0,0,0,15.6
+181589,0,0,0,15.6
+181590,0,0,0,15.6
+181591,0,0,0,15.6
+181592,0,0,0,15.6
+181593,0,368377.9973,0,15.6
+181594,0,0,0,15.6
+181595,0,0,0,15.6
+181596,0,0,0,15.6
+181597,0,0,0,15.6
+181598,0,0,0,15.6
+181599,0,0,0,15.6
+181600,0,243.7410128,0,15.6
+181601,0,0,0,15.6
+181602,0,0,0,15.6
+181603,0,0,0,15.6
+181604,0,0,0,15.6
+181605,0,0,0,15.6
+181606,0,0,0,15.6
+181607,0,0,0,15.6
+181608,0,0,0,15.6
+181609,0,0,0,15.6
+181610,0,0,0,15.6
+181611,339808.3675,0,0,15.6
+181612,0,55.93944551,0,15.6
+181613,0,0,694934.1063,15.6
+181614,0,0,0,15.6
+181615,0,0,0,15.6
+181616,0,0,0,15.6
+181617,0,0,0,15.6
+181618,0,0,0,15.6
+181619,0,0,0,15.6
+181620,0,0,0,15.6
+181621,0,3.332162677,0,15.6
+181622,0,0,0,15.6
+181623,0,72.37931359,0,15.6
+181624,0,0,0,15.6
+181625,0,0,0,15.6
+181626,0,0,0,15.6
+181627,0,4.074312026,0,15.6
+181628,0,0,0,15.6
+181629,0,81.40536445,0,15.6
+181630,0,0,0,15.6
+181631,0,368377.593,0,15.6
+181632,0,0,0,15.6
+181633,0,3.581231864,0,15.6
+181634,0,0,0,15.6
+181635,0,72.27537718,0,15.6
+181636,0,0,0,15.6
+181637,0,0,0,15.6
+181638,0,0,0,15.6
+181639,0,3.431070276,0,15.6
+181640,0,0,0,15.6
+181641,0,73.62247341,0,15.6
+181642,0,0,0,15.6
+181643,0,0,0,15.6
+181644,0,0,0,15.6
+181645,0,7.419597009,0,15.6
+181646,0,0,0,15.6
+181647,339789.0217,101.2921181,0,15.6
+181648,0,0,693196.6421,15.6
+181649,0,0,0,15.6
+181650,0,0,0,15.6
+181651,0,4.098503059,0,15.6
+181652,0,0,0,15.6
+181653,0,102.2497543,0,15.6
+181654,0,0,0,15.6
+181655,0,0,0,15.6
+181656,0,0,0,15.6
+181657,0,7.682892458,0,15.6
+181658,0,0,0,15.6
+181659,0,113.2513079,0,15.6
+181660,0,0,0,15.6
+181661,0,0,0,15.6
+181662,0,0,0,15.6
+181663,0,7.947306421,0,15.6
+181664,0,0,0,15.6
+181665,0,117.9602194,0,15.6
+181666,0,368374.5964,0,15.6
+181667,0,0,0,15.6
+181668,0,0,0,15.6
+181669,0,7.677048592,0,15.6
+181670,0,0,0,15.6
+181671,0,111.1839311,0,15.6
+181672,0,0,0,15.6
+181673,0,0,0,15.6
+181674,0,0,0,15.6
+181675,0,7.152324342,0,15.6
+181676,0,0,0,15.6
+181677,0,108.5201247,0,15.6
+181678,0,0,0,15.6
+181679,0,0,0,15.6
+181680,0,0,0,17.8
+181681,0,7.605986898,0,17.8
+181682,0,0,0,17.8
+181683,339770.9066,111.7789545,691367.4436,17.8
+181684,0,0,0,17.8
+181685,0,0,0,17.8
+181686,0,0,0,17.8
+181687,0,7.158889054,0,17.8
+181688,0,0,0,17.8
+181689,0,106.5223084,0,17.8
+181690,0,0,0,17.8
+181691,0,0,0,17.8
+181692,0,0,0,17.8
+181693,0,4.189747563,0,17.8
+181694,0,0,0,17.8
+181695,0,102.178227,0,17.8
+181696,0,0,0,17.8
+181697,0,0,0,17.8
+181698,0,0,0,17.8
+181699,0,3.992783651,0,17.8
+181700,0,0,0,17.8
+181701,0,368476.8435,0,17.8
+181702,0,0,0,17.8
+181703,0,0,0,17.8
+181704,0,0,0,17.8
+181705,0,3.39465171,0,17.8
+181706,0,0,0,17.8
+181707,0,74.81549654,0,17.8
+181708,0,0,0,17.8
+181709,0,0,0,17.8
+181710,0,0,0,17.8
+181711,0,4.14520249,0,17.8
+181712,0,0,0,17.8
+181713,0,84.61086281,0,17.8
+181714,0,0,0,17.8
+181715,0,0,0,17.8
+181716,0,0,0,17.8
+181717,0,4.173775443,0,17.8
+181718,0,0,689817.8199,17.8
+181719,339767.165,85.12841022,0,17.8
+181720,0,0,0,17.8
+181721,0,0,0,17.8
+181722,0,0,0,17.8
+181723,0,4.042318066,0,17.8
+181724,0,0,0,17.8
+181725,0,82.2963153,0,17.8
+181726,0,0,0,17.8
+181727,0,0,0,17.8
+181728,0,0,0,17.8
+181729,0,3.882048869,0,17.8
+181730,0,0,0,17.8
+181731,0,79.27374024,0,17.8
+181732,0,0,0,17.8
+181733,0,0,0,17.8
+181734,0,0,0,17.8
+181735,0,3.716123272,0,17.8
+181736,0,368392.2973,0,17.8
+181737,0,75.21767314,0,17.8
+181738,0,0,0,17.8
+181739,0,0,0,17.8
+181740,0,0,0,20
+181741,0,0,0,20
+181742,0,240.6520173,0,20
+181743,0,0,0,20
+181744,0,0,0,20
+181745,0,0,0,20
+181746,0,0,0,20
+181747,0,0,0,20
+181748,0,0,0,20
+181749,0,0,0,20
+181750,0,0,0,20
+181751,0,0,0,20
+181752,0,0,0,20
+181753,0,0,0,20
+181754,0,235.3623749,0,20
+181755,0,0,688467.9978,20
+181756,0,0,0,20
+181757,0,0,0,20
+181758,0,0,0,20
+181759,0,0,0,20
+181760,0,0,0,20
+181761,339758.2707,0,0,20
+181762,0,0,0,20
+181763,0,0,0,20
+181764,0,0,0,20
+181765,0,0,0,20
+181766,0,55.67345027,0,20
+181767,0,0,0,20
+181768,0,0,0,20
+181769,0,0,0,20
+181770,0,0,0,20
+181771,0,0,0,20
+181772,0,0,0,20
+181773,0,0,0,20
+181774,0,368387.4754,0,20
+181775,0,0,0,20
+181776,0,59.75884461,0,20
+181777,0,0,0,20
+181778,0,0,0,20
+181779,0,0,0,20
+181780,0,0,0,20
+181781,0,0,0,20
+181782,0,0,0,20
+181783,0,0,0,20
+181784,0,0,0,20
+181785,0,64.7811978,0,20
+181786,0,0,0,20
+181787,0,0,0,20
+181788,0,0,0,20
+181789,0,0,0,20
+181790,0,82.97850912,0,20
+181791,0,0,0,20
+181792,0,0,686786.9366,20
+181793,0,0,0,20
+181794,0,0,0,20
+181795,0,0,0,20
+181796,0,0,0,20
+181797,0,0,0,20
+181798,0,3.458058519,0,20
+181799,0,0,0,20
+181800,0,67.81872225,0,21
+181801,0,0,0,21
+181802,0,0,0,21
+181803,339747.1026,0,0,21
+181804,0,0,0,21
+181805,0,0,0,21
+181806,0,0,0,21
+181807,0,84.01887947,0,21
+181808,0,0,0,21
+181809,0,0,0,21
+181810,0,0,0,21
+181811,0,0,0,21
+181812,0,368390.4555,0,21
+181813,0,0,0,21
+181814,0,0,0,21
+181815,0,0,0,21
+181816,0,0,0,21
+181817,0,0,0,21
+181818,0,0,0,21
+181819,0,0,0,21
+181820,0,0,0,21
+181821,0,3.530946503,0,21
+181822,0,0,0,21
+181823,0,0,0,21
+181824,0,64.02306189,0,21
+181825,0,0,0,21
+181826,0,0,0,21
+181827,0,0,0,21
+181828,0,0,685056.6862,21
+181829,0,0,0,21
+181830,0,0,0,21
+181831,0,0,0,21
+181832,0,0,0,21
+181833,0,0,0,21
+181834,0,0,0,21
+181835,0,0,0,21
+181836,0,0,0,21
+181837,0,0,0,21
+181838,0,0,0,21
+181839,0,3.233646366,0,21
+181840,0,0,0,21
+181841,0,73.53429581,0,21
+181842,0,0,0,21
+181843,339827.4521,0,0,21
+181844,0,0,0,21
+181845,0,0,0,21
+181846,0,233.2879151,0,21
+181847,0,0,0,21
+181848,0,0,0,21
+181849,0,0,0,21
+181850,0,368439.4389,0,21
+181851,0,0,0,21
+181852,0,0,0,21
+181853,0,0,0,21
+181854,0,0,0,21
+181855,0,0,0,21
+181856,0,0,0,21
+181857,0,0,0,21
+181858,0,0,0,21
+181859,0,3.590030854,0,21
+181860,0,0,0,21
+181861,0,0,0,21
+181862,0,0,0,21
+181863,0,0,0,21
+181864,0,0,680581.5382,21
+181865,0,0,0,21
+181866,0,0,0,21
+181867,0,0,0,21
+181868,0,0,0,21
+181869,0,0,0,21
+181870,0,0,0,21
+181871,0,0,0,21
+181872,0,0,0,21
+181873,0,0,0,21
+181874,0,0,0,21
+181875,0,0,0,21
+181876,0,0,0,21
+181877,0,0,0,21
+181878,0,0,0,21
+181879,0,0,0,21
+181880,0,0,0,21
+181881,0,0,0,21
+181882,339876.5483,0,0,21
+181883,0,0,0,21
+181884,0,0,0,21
+181885,0,0,0,21
+181886,0,0,0,21
+181887,0,0,0,21
+181888,0,368448.2409,0,21
+181889,0,0,0,21
+181890,0,0,0,21
+181891,0,0,0,21
+181892,0,0,0,21
+181893,0,0,0,21
+181894,0,0,0,21
+181895,0,0,0,21
+181896,0,0,0,21
+181897,0,0,0,21
+181898,0,0,0,21
+181899,0,0,0,21
+181900,0,0,678844.8659,21
+181901,0,0,0,21
+181902,0,0,0,21
+181903,0,0,0,21
+181904,0,0,0,21
+181905,0,0,0,21
+181906,0,0,0,21
+181907,0,0,0,21
+181908,0,0,0,21
+181909,0,0,0,21
+181910,0,0,0,21
+181911,0,0,0,21
+181912,0,0,0,21
+181913,0,0,0,21
+181914,0,0,0,21
+181915,0,0,0,21
+181916,0,0,0,21
+181917,0,0,0,21
+181918,0,0,0,21
+181919,0,0,0,21
+181920,0,0,0,21
+181921,339856.3064,0,0,21
+181922,0,0,0,21
+181923,0,0,0,21
+181924,0,0,0,21
+181925,0,368445.2736,0,21
+181926,0,0,0,21
+181927,0,0,0,21
+181928,0,0,0,21
+181929,0,0,0,21
+181930,0,0,0,21
+181931,0,0,0,21
+181932,0,0,0,21
+181933,0,0,0,21
+181934,0,0,0,21
+181935,0,0,0,21
+181936,0,0,677161.2114,21
+181937,0,0,0,21
+181938,0,0,0,21
+181939,0,0,0,21
+181940,0,0,0,21
+181941,0,0,0,21
+181942,0,0,0,21
+181943,0,0,0,21
+181944,0,0,0,21
+181945,0,0,0,21
+181946,0,0,0,21
+181947,0,0,0,21
+181948,0,0,0,21
+181949,0,0,0,21
+181950,0,0,0,21
+181951,0,0,0,21
+181952,0,0,0,21
+181953,0,0,0,21
+181954,0,0,0,21
+181955,0,0,0,21
+181956,0,0,0,21
+181957,0,0,0,21
+181958,0,0,0,21
+181959,0,0,0,21
+181960,339758.7915,0,0,21
+181961,0,0,0,21
+181962,0,368453.8151,0,21
+181963,0,0,0,21
+181964,0,0,0,21
+181965,0,0,0,21
+181966,0,0,0,21
+181967,0,0,0,21
+181968,0,0,0,21
+181969,0,0,0,21
+181970,0,0,0,21
+181971,0,0,0,21
+181972,0,0,675720.8939,21
+181973,0,0,0,21
+181974,0,0,0,21
+181975,0,0,0,21
+181976,0,0,0,21
+181977,0,0,0,21
+181978,0,0,0,21
+181979,0,0,0,21
+181980,0,0,0,21
+181981,0,0,0,21
+181982,0,0,0,21
+181983,0,0,0,21
+181984,0,0,0,21
+181985,0,0,0,21
+181986,0,0,0,21
+181987,0,0,0,21
+181988,0,0,0,21
+181989,0,0,0,21
+181990,0,0,0,21
+181991,0,0,0,21
+181992,0,0,0,21
+181993,0,0,0,21
+181994,0,0,0,21
+181995,0,0,0,21
+181996,0,0,0,21
+181997,0,0,0,21
+181998,0,0,0,21
+181999,339314.7502,368462.2604,0,21
+182000,0,0,0,21
+182001,0,0,0,21
+182002,0,0,0,21
+182003,0,0,0,21
+182004,0,0,0,21
+182005,0,0,0,21
+182006,0,0,0,21
+182007,0,0,0,21
+182008,0,0,675097.901,21
+182009,0,0,0,21
+182010,0,0,0,21
+182011,0,0,0,21
+182012,0,0,0,21
+182013,0,0,0,21
+182014,0,0,0,21
+182015,0,0,0,21
+182016,0,0,0,21
+182017,0,0,0,21
+182018,0,0,0,21
+182019,0,0,0,21
+182020,0,0,0,21
+182021,0,0,0,21
+182022,0,0,0,21
+182023,0,0,0,21
+182024,0,0,0,21
+182025,0,0,0,21
+182026,0,0,0,21
+182027,0,0,0,21
+182028,0,0,0,21
+182029,0,0,0,21
+182030,0,0,0,21
+182031,0,0,0,21
+182032,0,0,0,21
+182033,0,0,0,21
+182034,0,0,0,21
+182035,0,0,0,21
+182036,0,368470.7923,0,21
+182037,0,0,0,21
+182038,338310.9104,0,0,21
+182039,0,0,0,21
+182040,0,0,0,21
+182041,0,0,0,21
+182042,0,0,0,21
+182043,0,0,0,21
+182044,0,0,673353.4333,21
+182045,0,0,0,21
+182046,0,0,0,21
+182047,0,0,0,21
+182048,0,0,0,21
+182049,0,0,0,21
+182050,0,0,0,21
+182051,0,0,0,21
+182052,0,0,0,21
+182053,0,0,0,21
+182054,0,0,0,21
+182055,0,0,0,21
+182056,0,0,0,21
+182057,0,0,0,21
+182058,0,0,0,21
+182059,0,0,0,21
+182060,0,0,0,21
+182061,0,0,0,21
+182062,0,0,0,21
+182063,0,0,0,21
+182064,0,0,0,21
+182065,0,0,0,21
+182066,0,0,0,21
+182067,0,0,0,21
+182068,0,0,0,21
+182069,0,0,0,21
+182070,0,0,0,21
+182071,0,0,0,21
+182072,0,0,0,21
+182073,0,0,0,21
+182074,0,368480.1182,0,21
+182075,0,0,0,21
+182076,0,0,0,21
+182077,0,0,0,21
+182078,0,0,0,21
+182079,338375.7486,0,0,21
+182080,0,0,672423.462,21
+182081,0,0,0,21
+182082,0,0,0,21
+182083,0,0,0,21
+182084,0,0,0,21
+182085,0,0,0,21
+182086,0,0,0,21
+182087,0,0,0,21
+182088,0,0,0,21
+182089,0,0,0,21
+182090,0,0,0,21
+182091,0,0,0,21
+182092,0,0,0,21
+182093,0,0,0,21
+182094,0,0,0,21
+182095,0,0,0,21
+182096,0,0,0,21
+182097,0,0,0,21
+182098,0,0,0,21
+182099,0,0,0,21
+182100,0,0,0,21
+182101,0,0,0,21
+182102,0,0,0,21
+182103,0,0,0,21
+182104,0,0,0,21
+182105,0,0,0,21
+182106,0,0,0,21
+182107,0,0,0,21
+182108,0,0,0,21
+182109,0,0,0,21
+182110,0,0,0,21
+182111,0,0,0,21
+182112,0,368287.9416,0,21
+182113,0,0,0,21
+182114,0,0,0,21
+182115,0,0,0,21
+182116,0,0,671720.7627,21
+182117,0,0,0,21
+182118,0,0,0,21
+182119,0,0,0,21
+182120,338596.9917,0,0,21
+182121,0,0,0,21
+182122,0,0,0,21
+182123,0,0,0,21
+182124,0,0,0,21
+182125,0,0,0,21
+182126,0,0,0,21
+182127,0,0,0,21
+182128,0,0,0,21
+182129,0,0,0,21
+182130,0,0,0,21
+182131,0,0,0,21
+182132,0,0,0,21
+182133,0,0,0,21
+182134,0,0,0,21
+182135,0,0,0,21
+182136,0,0,0,21
+182137,0,0,0,21
+182138,0,0,0,21
+182139,0,0,0,21
+182140,0,0,0,21
+182141,0,0,0,21
+182142,0,0,0,21
+182143,0,0,0,21
+182144,0,0,0,21
+182145,0,0,0,21
+182146,0,0,0,21
+182147,0,0,0,21
+182148,0,0,0,21
+182149,0,0,0,21
+182150,0,368497.2584,0,21
+182151,0,0,0,21
+182152,0,0,670639.5209,21
+182153,0,0,0,21
+182154,0,0,0,21
+182155,0,0,0,21
+182156,0,0,0,21
+182157,0,0,0,21
+182158,0,0,0,21
+182159,0,0,0,21
+182160,0,0,0,21
+182161,339210.4038,0,0,21
+182162,0,0,0,21
+182163,0,0,0,21
+182164,0,0,0,21
+182165,0,0,0,21
+182166,0,0,0,21
+182167,0,0,0,21
+182168,0,0,0,21
+182169,0,0,0,21
+182170,0,0,0,21
+182171,0,0,0,21
+182172,0,0,0,21
+182173,0,0,0,21
+182174,0,0,0,21
+182175,0,0,0,21
+182176,0,0,0,21
+182177,0,0,0,21
+182178,0,0,0,21
+182179,0,0,0,21
+182180,0,0,0,21
+182181,0,0,0,21
+182182,0,0,0,21
+182183,0,0,0,21
+182184,0,0,0,21
+182185,0,0,0,21
+182186,0,0,0,21
+182187,0,0,0,21
+182188,0,368506.0081,0,21
+182189,0,0,669833.4188,21
+182190,0,0,0,21
+182191,0,0,0,21
+182192,0,0,0,21
+182193,0,0,0,21
+182194,0,0,0,21
+182195,0,0,0,21
+182196,0,0,0,21
+182197,0,0,0,21
+182198,0,0,0,21
+182199,0,0,0,21
+182200,0,0,0,21
+182201,0,0,0,21
+182202,0,0,0,21
+182203,339699.062,0,0,21
+182204,0,0,0,21
+182205,0,0,0,21
+182206,0,0,0,21
+182207,0,0,0,21
+182208,0,0,0,21
+182209,0,0,0,21
+182210,0,0,0,21
+182211,0,0,0,21
+182212,0,0,0,21
+182213,0,0,0,21
+182214,0,0,0,21
+182215,0,0,0,21
+182216,0,0,0,21
+182217,0,0,0,21
+182218,0,0,0,21
+182219,0,0,0,21
+182220,0,0,0,21
+182221,0,0,0,21
+182222,0,0,0,21
+182223,0,0,0,21
+182224,0,0,0,21
+182225,0,0,0,21
+182226,0,368514.7578,669572.5553,21
+182227,0,0,0,21
+182228,0,0,0,21
+182229,0,0,0,21
+182230,0,0,0,21
+182231,0,0,0,21
+182232,0,0,0,21
+182233,0,0,0,21
+182234,0,0,0,21
+182235,0,0,0,21
+182236,0,0,0,21
+182237,0,0,0,21
+182238,0,0,0,21
+182239,0,0,0,21
+182240,0,0,0,21
+182241,0,0,0,21
+182242,0,0,0,21
+182243,0,0,0,21
+182244,0,0,0,21
+182245,339859.3746,0,0,21
+182246,0,0,0,21
+182247,0,0,0,21
+182248,0,0,0,21
+182249,0,0,0,21
+182250,0,0,0,21
+182251,0,0,0,21
+182252,0,0,0,21
+182253,0,0,0,21
+182254,0,0,0,21
+182255,0,0,0,21
+182256,0,0,0,21
+182257,0,0,0,21
+182258,0,0,0,21
+182259,0,0,0,21
+182260,0,0,0,21
+182261,0,0,0,21
+182262,0,0,669185.7027,21
+182263,0,0,0,21
+182264,0,368523.5073,0,21
+182265,0,0,0,21
+182266,0,0,0,21
+182267,0,0,0,21
+182268,0,0,0,21
+182269,0,0,0,21
+182270,0,0,0,21
+182271,0,0,0,21
+182272,0,0,0,21
+182273,0,0,0,21
+182274,0,0,0,21
+182275,0,0,0,21
+182276,0,0,0,21
+182277,0,0,0,21
+182278,0,0,0,21
+182279,0,0,0,21
+182280,0,0,0,21
+182281,0,0,0,21
+182282,0,0,0,21
+182283,0,0,0,21
+182284,0,0,0,21
+182285,0,0,0,21
+182286,0,0,0,21
+182287,339867.7875,0,0,21
+182288,0,0,0,21
+182289,0,0,0,21
+182290,0,0,0,21
+182291,0,0,0,21
+182292,0,0,0,21
+182293,0,0,0,21
+182294,0,0,0,21
+182295,0,0,0,21
+182296,0,0,0,21
+182297,0,0,0,21
+182298,0,0,667932.6171,21
+182299,0,0,0,21
+182300,0,0,0,21
+182301,0,0,0,21
+182302,0,368532.2451,0,21
+182303,0,0,0,21
+182304,0,0,0,21
+182305,0,0,0,21
+182306,0,0,0,21
+182307,0,0,0,21
+182308,0,0,0,21
+182309,0,0,0,21
+182310,0,0,0,21
+182311,0,0,0,21
+182312,0,0,0,21
+182313,0,0,0,21
+182314,0,0,0,21
+182315,0,0,0,21
+182316,0,0,0,21
+182317,0,0,0,21
+182318,0,0,0,21
+182319,0,0,0,21
+182320,0,0,0,21
+182321,0,0,0,21
+182322,0,0,0,21
+182323,0,0,0,21
+182324,0,0,0,21
+182325,0,0,0,21
+182326,338325.9112,0,0,21
+182327,0,0,0,21
+182328,0,0,0,21
+182329,0,0,0,21
+182330,0,0,0,21
+182331,0,0,0,21
+182332,0,0,0,21
+182333,0,0,0,21
+182334,0,0,666917.4595,21
+182335,0,0,0,21
+182336,0,0,0,21
+182337,0,0,0,21
+182338,0,0,0,21
+182339,0,0,0,21
+182340,0,368541.0093,0,21
+182341,0,0,0,21
+182342,0,0,0,21
+182343,0,0,0,21
+182344,0,0,0,21
+182345,0,0,0,21
+182346,0,0,0,21
+182347,0,0,0,21
+182348,0,0,0,21
+182349,0,0,0,21
+182350,0,0,0,21
+182351,0,0,0,21
+182352,0,0,0,21
+182353,0,0,0,21
+182354,0,0,0,21
+182355,0,0,0,21
+182356,0,0,0,21
+182357,0,0,0,21
+182358,0,0,0,21
+182359,0,0,0,21
+182360,0,0,0,21
+182361,0,0,0,21
+182362,0,0,0,21
+182363,0,0,0,21
+182364,0,0,0,21
+182365,337694.068,0,0,21
+182366,0,0,0,21
+182367,0,0,0,21
+182368,0,0,0,21
+182369,0,0,0,21
+182370,0,0,666147.1397,21
+182371,0,0,0,21
+182372,0,0,0,21
+182373,0,0,0,21
+182374,0,0,0,21
+182375,0,0,0,21
+182376,0,0,0,21
+182377,0,0,0,21
+182378,0,368549.7653,0,21
+182379,0,0,0,21
+182380,0,0,0,21
+182381,0,0,0,21
+182382,0,0,0,21
+182383,0,0,0,21
+182384,0,0,0,21
+182385,0,0,0,21
+182386,0,0,0,21
+182387,0,0,0,21
+182388,0,0,0,21
+182389,0,0,0,21
+182390,0,0,0,21
+182391,0,0,0,21
+182392,0,0,0,21
+182393,0,0,0,21
+182394,0,0,0,21
+182395,0,0,0,21
+182396,0,0,0,21
+182397,0,0,0,21
+182398,0,0,0,21
+182399,0,0,0,21
+182400,0,0,0,21
+182401,0,0,0,21
+182402,0,0,0,21
+182403,0,0,0,21
+182404,337690.2248,0,0,21
+182405,0,0,0,21
+182406,0,0,665519.0436,21
+182407,0,0,0,21
+182408,0,0,0,21
+182409,0,0,0,21
+182410,0,0,0,21
+182411,0,0,0,21
+182412,0,0,0,21
+182413,0,0,0,21
+182414,0,0,0,21
+182415,0,0,0,21
+182416,0,368558.5209,0,21
+182417,0,0,0,21
+182418,0,0,0,21
+182419,0,0,0,21
+182420,0,0,0,21
+182421,0,0,0,21
+182422,0,0,0,21
+182423,0,0,0,21
+182424,0,0,0,21
+182425,0,0,0,21
+182426,0,0,0,21
+182427,0,0,0,21
+182428,0,0,0,21
+182429,0,0,0,21
+182430,0,0,0,21
+182431,0,0,0,21
+182432,0,0,0,21
+182433,0,0,0,21
+182434,0,0,0,21
+182435,0,0,0,21
+182436,0,0,0,21
+182437,0,0,0,21
+182438,0,0,0,21
+182439,0,0,0,21
+182440,0,0,0,21
+182441,0,0,0,21
+182442,0,0,665190.6981,21
+182443,338020.747,0,0,21
+182444,0,0,0,21
+182445,0,0,0,21
+182446,0,0,0,21
+182447,0,0,0,21
+182448,0,0,0,21
+182449,0,0,0,21
+182450,0,0,0,21
+182451,0,0,0,21
+182452,0,0,0,21
+182453,0,0,0,21
+182454,0,368567.2742,0,21
+182455,0,0,0,21
+182456,0,0,0,21
+182457,0,0,0,21
+182458,0,0,0,21
+182459,0,0,0,21
+182460,0,0,0,21
+182461,0,0,0,21
+182462,0,0,0,21
+182463,0,0,0,21
+182464,0,0,0,21
+182465,0,0,0,21
+182466,0,0,0,21
+182467,0,0,0,21
+182468,0,0,0,21
+182469,0,0,0,21
+182470,0,0,0,21
+182471,0,0,0,21
+182472,0,0,0,21
+182473,0,0,0,21
+182474,0,0,0,21
+182475,0,0,0,21
+182476,0,0,0,21
+182477,0,0,0,21
+182478,0,0,665266.2971,21
+182479,0,0,0,21
+182480,0,0,0,21
+182481,0,0,0,21
+182482,337835.9144,0,0,21
+182483,0,0,0,21
+182484,0,0,0,21
+182485,0,0,0,21
+182486,0,0,0,21
+182487,0,0,0,21
+182488,0,0,0,21
+182489,0,0,0,21
+182490,0,0,0,21
+182491,0,368569.0447,0,21
+182492,0,0,0,21
+182493,0,0,0,21
+182494,0,0,0,21
+182495,0,0,0,21
+182496,0,0,0,21
+182497,0,0,0,21
+182498,0,0,0,21
+182499,0,0,0,21
+182500,0,0,0,21
+182501,0,0,0,21
+182502,0,0,0,21
+182503,0,0,0,21
+182504,0,0,0,21
+182505,0,0,0,21
+182506,0,0,0,21
+182507,0,0,0,21
+182508,0,0,0,21
+182509,0,0,0,21
+182510,0,0,0,21
+182511,0,0,0,21
+182512,0,0,0,21
+182513,0,0,0,21
+182514,0,0,664947.9103,21
+182515,0,0,0,21
+182516,0,0,0,21
+182517,0,0,0,21
+182518,0,0,0,21
+182519,0,0,0,21
+182520,0,0,0,21
+182521,337735.4486,0,0,21
+182522,0,0,0,21
+182523,0,0,0,21
+182524,0,0,0,21
+182525,0,0,0,21
+182526,0,0,0,21
+182527,0,0,0,21
+182528,0,368569.0472,0,21
+182529,0,0,0,21
+182530,0,0,0,21
+182531,0,0,0,21
+182532,0,0,0,21
+182533,0,0,0,21
+182534,0,0,0,21
+182535,0,0,0,21
+182536,0,0,0,21
+182537,0,0,0,21
+182538,0,0,0,21
+182539,0,0,0,21
+182540,0,0,0,21
+182541,0,0,0,21
+182542,0,0,0,21
+182543,0,0,0,21
+182544,0,0,0,21
+182545,0,0,0,21
+182546,0,0,0,21
+182547,0,0,0,21
+182548,0,0,0,21
+182549,0,0,0,21
+182550,0,0,664699.1131,21
+182551,0,0,0,21
+182552,0,0,0,21
+182553,0,0,0,21
+182554,0,0,0,21
+182555,0,0,0,21
+182556,0,0,0,21
+182557,0,0,0,21
+182558,0,0,0,21
+182559,0,0,0,21
+182560,337826.6561,0,0,21
+182561,0,0,0,21
+182562,0,0,0,21
+182563,0,0,0,21
+182564,0,0,0,21
+182565,0,368385.0905,0,21
+182566,0,0,0,21
+182567,0,0,0,21
+182568,0,0,0,21
+182569,0,0,0,21
+182570,0,0,0,21
+182571,0,0,0,21
+182572,0,0,0,21
+182573,0,0,0,21
+182574,0,0,0,21
+182575,0,0,0,21
+182576,0,0,0,21
+182577,0,0,0,21
+182578,0,0,0,21
+182579,0,0,0,21
+182580,0,0,0,21
+182581,0,0,0,21
+182582,0,0,0,21
+182583,0,0,0,21
+182584,0,0,0,21
+182585,0,0,0,21
+182586,0,0,664346.847,21
+182587,0,0,0,21
+182588,0,0,0,21
+182589,0,0,0,21
+182590,0,0,0,21
+182591,0,0,0,21
+182592,0,0,0,21
+182593,0,0,0,21
+182594,0,0,0,21
+182595,0,0,0,21
+182596,0,0,0,21
+182597,0,0,0,21
+182598,0,0,0,21
+182599,339359.4707,0,0,21
+182600,0,0,0,21
+182601,0,0,0,21
+182602,0,0,0,21
+182603,0,368569.0476,0,21
+182604,0,0,0,21
+182605,0,0,0,21
+182606,0,0,0,21
+182607,0,0,0,21
+182608,0,0,0,21
+182609,0,0,0,21
+182610,0,0,0,21
+182611,0,0,0,21
+182612,0,0,0,21
+182613,0,0,0,21
+182614,0,0,0,21
+182615,0,0,0,21
+182616,0,0,0,21
+182617,0,0,0,21
+182618,0,0,0,21
+182619,0,0,0,21
+182620,0,0,0,21
+182621,0,0,0,21
+182622,0,0,664550.0625,21
+182623,0,0,0,21
+182624,0,0,0,21
+182625,0,0,0,21
+182626,0,0,0,21
+182627,0,0,0,21
+182628,0,0,0,21
+182629,0,0,0,21
+182630,0,0,0,21
+182631,0,0,0,21
+182632,0,0,0,21
+182633,0,0,0,21
+182634,0,0,0,21
+182635,0,0,0,21
+182636,0,0,0,21
+182637,0,0,0,21
+182638,0,0,0,21
+182639,339345.9744,0,0,21
+182640,0,0,0,21
+182641,0,368568.7388,0,21
+182642,0,0,0,21
+182643,0,0,0,21
+182644,0,0,0,21
+182645,0,0,0,21
+182646,0,0,0,21
+182647,0,0,0,21
+182648,0,0,0,21
+182649,0,0,0,21
+182650,0,0,0,21
+182651,0,0,0,21
+182652,0,0,0,21
+182653,0,0,0,21
+182654,0,0,0,21
+182655,0,0,0,21
+182656,0,0,0,21
+182657,0,0,0,21
+182658,0,0,0,21
+182659,0,0,664625.4356,21
+182660,0,0,0,21
+182661,0,0,0,21
+182662,0,0,0,21
+182663,0,0,0,21
+182664,0,0,0,21
+182665,0,0,0,21
+182666,0,0,0,21
+182667,0,0,0,21
+182668,0,0,0,21
+182669,0,0,0,21
+182670,0,0,0,21
+182671,0,0,0,21
+182672,0,0,0,21
+182673,0,0,0,21
+182674,0,0,0,21
+182675,0,0,0,21
+182676,0,0,0,21
+182677,0,0,0,21
+182678,0,0,0,21
+182679,0,0,0,21
+182680,0,368569.0476,0,21
+182681,0,0,0,21
+182682,0,0,0,21
+182683,0,0,0,21
+182684,339348.2015,0,0,21
+182685,0,0,0,21
+182686,0,0,0,21
+182687,0,0,0,21
+182688,0,0,0,21
+182689,0,0,0,21
+182690,0,0,0,21
+182691,0,0,0,21
+182692,0,0,0,21
+182693,0,0,0,21
+182694,0,0,0,21
+182695,0,0,0,21
+182696,0,0,664809.9781,21
+182697,0,0,0,21
+182698,0,0,0,21
+182699,0,0,0,21
+182700,0,0,0,21
+182701,0,0,0,21
+182702,0,0,0,21
+182703,0,0,0,21
+182704,0,0,0,21
+182705,0,0,0,21
+182706,0,0,0,21
+182707,0,0,0,21
+182708,0,0,0,21
+182709,0,0,0,21
+182710,0,0,0,21
+182711,0,0,0,21
+182712,0,0,0,21
+182713,0,0,0,21
+182714,0,0,0,21
+182715,0,0,0,21
+182716,0,0,0,21
+182717,0,0,0,21
+182718,0,0,0,21
+182719,0,368568.7594,0,21
+182720,0,0,0,21
+182721,0,0,0,21
+182722,0,0,0,21
+182723,0,0,0,21
+182724,339383.0453,0,0,21
+182725,0,0,0,21
+182726,0,0,0,21
+182727,0,0,0,21
+182728,0,0,0,21
+182729,0,0,0,21
+182730,0,0,0,21
+182731,0,0,0,21
+182732,0,0,665033.9116,21
+182733,0,0,0,21
+182734,0,0,0,21
+182735,0,0,0,21
+182736,0,0,0,21
+182737,0,0,0,21
+182738,0,0,0,21
+182739,0,0,0,21
+182740,0,0,0,21
+182741,0,0,0,21
+182742,0,0,0,21
+182743,0,0,0,21
+182744,0,0,0,21
+182745,0,0,0,21
+182746,0,0,0,21
+182747,0,0,0,21
+182748,0,0,0,21
+182749,0,0,0,21
+182750,0,0,0,21
+182751,0,0,0,21
+182752,0,0,0,21
+182753,0,0,0,21
+182754,0,0,0,21
+182755,0,0,0,21
+182756,0,0,0,21
+182757,0,0,0,21
+182758,0,368568.7655,0,21
+182759,0,0,0,21
+182760,0,0,0,15.6
+182761,0,0,0,15.6
+182762,0,0,0,15.6
+182763,0,0,0,15.6
+182764,339429.928,0,0,15.6
+182765,0,0,0,15.6
+182766,0,0,0,15.6
+182767,0,0,0,15.6
+182768,0,0,665314.349,15.6
+182769,0,0,0,15.6
+182770,0,0,0,15.6
+182771,0,0,0,15.6
+182772,0,0,0,15.6
+182773,0,0,0,15.6
+182774,0,0,0,15.6
+182775,0,0,0,15.6
+182776,0,0,0,15.6
+182777,0,0,0,15.6
+182778,0,0,0,15.6
+182779,0,0,0,15.6
+182780,0,0,0,15.6
+182781,0,0,0,15.6
+182782,0,0,0,15.6
+182783,0,0,0,15.6
+182784,0,0,0,15.6
+182785,0,0,0,15.6
+182786,0,0,0,15.6
+182787,0,0,0,15.6
+182788,0,0,0,15.6
+182789,0,0,0,15.6
+182790,0,0,0,15.6
+182791,0,0,0,15.6
+182792,0,0,0,15.6
+182793,0,0,0,15.6
+182794,0,0,0,15.6
+182795,0,0,0,15.6
+182796,0,368465.044,0,15.6
+182797,0,0,0,15.6
+182798,0,0,0,15.6
+182799,0,0,0,15.6
+182800,0,0,0,15.6
+182801,0,0,0,15.6
+182802,0,0,0,15.6
+182803,0,0,0,15.6
+182804,339434.4547,0,665803.4141,15.6
+182805,0,0,0,15.6
+182806,0,0,0,15.6
+182807,0,0,0,15.6
+182808,0,0,0,15.6
+182809,0,0,0,15.6
+182810,0,0,0,15.6
+182811,0,0,0,15.6
+182812,0,0,0,15.6
+182813,0,0,0,15.6
+182814,0,0,0,15.6
+182815,0,0,0,15.6
+182816,0,0,0,15.6
+182817,0,0,0,15.6
+182818,0,0,0,15.6
+182819,0,0,0,15.6
+182820,0,0,0,15.6
+182821,0,0,0,15.6
+182822,0,0,0,15.6
+182823,0,0,0,15.6
+182824,0,0,0,15.6
+182825,0,0,0,15.6
+182826,0,0,0,15.6
+182827,0,0,0,15.6
+182828,0,0,0,15.6
+182829,0,0,0,15.6
+182830,0,0,0,15.6
+182831,0,0,0,15.6
+182832,0,368448.0061,0,15.6
+182833,0,0,0,15.6
+182834,0,0,0,15.6
+182835,0,0,0,15.6
+182836,0,0,0,15.6
+182837,0,0,0,15.6
+182838,0,0,0,15.6
+182839,0,0,666173.8884,15.6
+182840,0,0,0,15.6
+182841,339450.7429,0,0,15.6
+182842,0,0,0,15.6
+182843,0,0,0,15.6
+182844,0,0,0,15.6
+182845,0,0,0,15.6
+182846,0,0,0,15.6
+182847,0,0,0,15.6
+182848,0,0,0,15.6
+182849,0,0,0,15.6
+182850,0,0,0,15.6
+182851,0,0,0,15.6
+182852,0,0,0,15.6
+182853,0,0,0,15.6
+182854,0,0,0,15.6
+182855,0,0,0,15.6
+182856,0,0,0,15.6
+182857,0,0,0,15.6
+182858,0,0,0,15.6
+182859,0,0,0,15.6
+182860,0,0,0,15.6
+182861,0,0,0,15.6
+182862,0,0,0,15.6
+182863,0,0,0,15.6
+182864,0,0,0,15.6
+182865,0,0,0,15.6
+182866,0,0,0,15.6
+182867,0,0,0,15.6
+182868,0,368451.5318,0,15.6
+182869,0,0,0,15.6
+182870,0,0,0,15.6
+182871,0,0,0,15.6
+182872,0,0,0,15.6
+182873,0,0,0,15.6
+182874,0,0,666629.793,15.6
+182875,0,0,0,15.6
+182876,0,0,0,15.6
+182877,0,0,0,15.6
+182878,339473.1569,0,0,15.6
+182879,0,0,0,15.6
+182880,0,0,0,15.6
+182881,0,0,0,15.6
+182882,0,0,0,15.6
+182883,0,0,0,15.6
+182884,0,0,0,15.6
+182885,0,0,0,15.6
+182886,0,0,0,15.6
+182887,0,0,0,15.6
+182888,0,0,0,15.6
+182889,0,0,0,15.6
+182890,0,0,0,15.6
+182891,0,0,0,15.6
+182892,0,0,0,15.6
+182893,0,0,0,15.6
+182894,0,0,0,15.6
+182895,0,0,0,15.6
+182896,0,0,0,15.6
+182897,0,0,0,15.6
+182898,0,0,0,15.6
+182899,0,0,0,15.6
+182900,0,0,0,15.6
+182901,0,0,0,15.6
+182902,0,0,0,15.6
+182903,0,0,0,15.6
+182904,0,368443.4761,0,15.6
+182905,0,0,0,15.6
+182906,0,0,0,15.6
+182907,0,0,0,15.6
+182908,0,0,0,15.6
+182909,0,0,667013.5176,15.6
+182910,0,0,0,15.6
+182911,0,0,0,15.6
+182912,0,0,0,15.6
+182913,0,0,0,15.6
+182914,0,0,0,15.6
+182915,339489.6808,0,0,15.6
+182916,0,0,0,15.6
+182917,0,0,0,15.6
+182918,0,0,0,15.6
+182919,0,0,0,15.6
+182920,0,0,0,15.6
+182921,0,0,0,15.6
+182922,0,0,0,15.6
+182923,0,0,0,15.6
+182924,0,0,0,15.6
+182925,0,0,0,15.6
+182926,0,0,0,15.6
+182927,0,0,0,15.6
+182928,0,0,0,15.6
+182929,0,0,0,15.6
+182930,0,0,0,15.6
+182931,0,0,0,15.6
+182932,0,0,0,15.6
+182933,0,0,0,15.6
+182934,0,0,0,15.6
+182935,0,0,0,15.6
+182936,0,0,0,15.6
+182937,0,0,0,15.6
+182938,0,0,0,15.6
+182939,0,0,0,15.6
+182940,0,368430.3315,0,15.6
+182941,0,0,0,15.6
+182942,0,0,0,15.6
+182943,0,0,0,15.6
+182944,0,0,667205.2253,15.6
+182945,0,0,0,15.6
+182946,0,0,0,15.6
+182947,0,0,0,15.6
+182948,0,0,0,15.6
+182949,0,0,0,15.6
+182950,0,0,0,15.6
+182951,0,0,0,15.6
+182952,339500.4996,0,0,15.6
+182953,0,0,0,15.6
+182954,0,0,0,15.6
+182955,0,0,0,15.6
+182956,0,0,0,15.6
+182957,0,0,0,15.6
+182958,0,0,0,15.6
+182959,0,0,0,15.6
+182960,0,0,0,15.6
+182961,0,0,0,15.6
+182962,0,0,0,15.6
+182963,0,0,0,15.6
+182964,0,0,0,15.6
+182965,0,0,0,15.6
+182966,0,0,0,15.6
+182967,0,0,0,15.6
+182968,0,0,0,15.6
+182969,0,0,0,15.6
+182970,0,0,0,15.6
+182971,0,0,0,15.6
+182972,0,0,0,15.6
+182973,0,0,0,15.6
+182974,0,0,0,15.6
+182975,0,0,0,15.6
+182976,0,368424.8045,0,15.6
+182977,0,0,0,15.6
+182978,0,0,0,15.6
+182979,0,0,667429.7677,15.6
+182980,0,0,0,15.6
+182981,0,0,0,15.6
+182982,0,0,0,15.6
+182983,0,0,0,15.6
+182984,0,0,0,15.6
+182985,0,0,0,15.6
+182986,0,0,0,15.6
+182987,0,0,0,15.6
+182988,0,0,0,15.6
+182989,339501.7815,0,0,15.6
+182990,0,0,0,15.6
+182991,0,0,0,15.6
+182992,0,0,0,15.6
+182993,0,0,0,15.6
+182994,0,0,0,15.6
+182995,0,0,0,15.6
+182996,0,0,0,15.6
+182997,0,0,0,15.6
+182998,0,0,0,15.6
+182999,0,0,0,15.6
+183000,0,0,0,15.6
+183001,0,0,0,15.6
+183002,0,0,0,15.6
+183003,0,3.275600219,0,15.6
+183004,0,0,0,15.6
+183005,0,70.79389908,0,15.6
+183006,0,0,0,15.6
+183007,0,0,0,15.6
+183008,0,0,0,15.6
+183009,0,3.43653781,0,15.6
+183010,0,0,0,15.6
+183011,0,69.43400574,0,15.6
+183012,0,368415.9948,0,15.6
+183013,0,0,0,15.6
+183014,0,0,667582.8584,15.6
+183015,0,2.926679035,0,15.6
+183016,0,0,0,15.6
+183017,0,0,0,15.6
+183018,0,255.3271176,0,15.6
+183019,0,0,0,15.6
+183020,0,0,0,15.6
+183021,0,0,0,15.6
+183022,0,0,0,15.6
+183023,0,0,0,15.6
+183024,0,0,0,15.6
+183025,0,0,0,15.6
+183026,339509.8638,0,0,15.6
+183027,0,0,0,15.6
+183028,0,247.1206504,0,15.6
+183029,0,0,0,15.6
+183030,0,0,0,15.6
+183031,0,0,0,15.6
+183032,0,0,0,15.6
+183033,0,0,0,15.6
+183034,0,0,0,15.6
+183035,0,0,0,15.6
+183036,0,0,0,15.6
+183037,0,0,0,15.6
+183038,0,235.370742,0,15.6
+183039,0,0,0,15.6
+183040,0,0,0,15.6
+183041,0,0,0,15.6
+183042,0,0,0,15.6
+183043,0,0,0,15.6
+183044,0,0,0,15.6
+183045,0,0,0,15.6
+183046,0,0,0,15.6
+183047,0,0,0,15.6
+183048,0,368401.0402,0,15.6
+183049,0,0,667856.9573,15.6
+183050,0,0,0,15.6
+183051,0,3.258593278,0,15.6
+183052,0,0,0,15.6
+183053,0,0,0,15.6
+183054,0,35.94617723,0,15.6
+183055,0,0,0,15.6
+183056,0,0,0,15.6
+183057,0,0,0,15.6
+183058,0,0,0,15.6
+183059,0,0,0,15.6
+183060,0,0,0,15.6
+183061,63091.51741,0,0,15.6
+183062,14402.08123,0,0,15.6
+183063,339739.4935,7.79739519,0,15.6
+183064,13402.69265,0,0,15.6
+183065,16334.60018,85.71164772,0,15.6
+183066,11905.30475,0,0,15.6
+183067,14881.32281,0,0,15.6
+183068,13728.33307,0,0,15.6
+183069,14157.76056,4.104083038,0,15.6
+183070,14233.16408,0,0,15.6
+183071,14282.4952,85.70686444,0,15.6
+183072,14298.20435,0,0,15.6
+183073,14431.01551,0,0,15.6
+183074,14378.05427,0,0,15.6
+183075,14519.39801,7.663597391,0,15.6
+183076,14532.43413,0,0,15.6
+183077,14571.64551,104.1009029,0,15.6
+183078,14661.01425,0,0,15.6
+183079,14691.50665,0,0,15.6
+183080,14737.60471,0,0,15.6
+183081,14813.45453,3.88431483,0,15.6
+183082,14863.40941,0,0,15.6
+183083,14914.26219,96.84870654,0,15.6
+183084,14940.7471,368400.2108,668064.2062,15.6
+183085,15039.09306,0,0,15.6
+183086,15072.13617,0,0,15.6
+183087,15128.20735,3.741332119,0,15.6
+183088,15171.89805,0,0,15.6
+183089,15257.14165,80.55085043,0,15.6
+183090,15286.12193,0,0,15.6
+183091,0,0,0,15.6
+183092,0,0,0,15.6
+183093,0,4.161606598,0,15.6
+183094,0,0,0,15.6
+183095,0,85.78828892,0,15.6
+183096,52966.85428,0,0,15.6
+183097,953.1496891,0,0,15.6
+183098,11611.25497,0,0,15.6
+183099,20697.85347,7.203239051,0,15.6
+183100,354443.4869,0,0,15.6
+183101,15882.5264,97.14031566,0,15.6
+183102,16007.14165,0,0,15.6
+183103,16051.83467,0,0,15.6
+183104,16146.76556,0,0,15.6
+183105,16129.29297,3.323867841,0,15.6
+183106,16208.30933,0,0,15.6
+183107,16310.31751,76.24083458,0,15.6
+183108,16283.90003,0,0,15.6
+183109,16400.38011,0,0,15.6
+183110,16446.50301,0,0,15.6
+183111,16490.14766,4.131928174,0,15.6
+183112,16536.1332,0,0,15.6
+183113,16599.35053,82.87890173,0,15.6
+183114,16651.50237,0,0,15.6
+183115,16699.88098,0,0,15.6
+183116,16763.21506,0,0,15.6
+183117,16813.01944,3.791978964,0,15.6
+183118,16850.22558,0,0,15.6
+183119,16925.67145,77.12860986,668019.9384,15.6
+183120,16976.75943,368405.8755,0,17.8
+183121,800859.1854,65049.26892,0,17.8
+183122,735409.6391,22487.94132,0,17.8
+183123,246666.1503,16502.1989,0,17.8
+183124,205695.512,22070.79913,0,17.8
+183125,268424.2058,25183.71527,0,17.8
+183126,223674.7341,21757.18625,0,17.8
+183127,205723.9437,22419.51342,0,17.8
+183128,322597.9056,22002.7976,0,17.8
+183129,265895.6268,21576.55129,0,17.8
+183130,263820.4914,21531.43879,0,17.8
+183131,266464.4367,21462.79523,0,17.8
+183132,266880.5355,21374.0667,0,17.8
+183133,265226.6576,21317.40811,0,17.8
+183134,264553.2302,21297.30952,0,17.8
+183135,264099.6613,21197.33161,0,17.8
+183136,264091.8511,21139.22565,0,17.8
+183137,602812.5697,21131.52403,0,17.8
+183138,263035.3868,21246.73328,0,17.8
+183139,262896.6311,20999.14101,0,17.8
+183140,262203.533,26332.9863,0,17.8
+183141,262396.8755,24161.09088,0,17.8
+183142,261881.795,24481.69359,0,17.8
+183143,261462.3335,24757.1112,0,17.8
+183144,261061.4307,24818.18339,0,17.8
+183145,261347.2658,24891.28845,0,17.8
+183146,260747.2581,24934.12324,0,17.8
+183147,260614.1699,24999.53002,0,17.8
+183148,260107.6783,25097.11446,0,17.8
+183149,260164.9829,25122.01894,0,17.8
+183150,259914.3181,25178.97916,0,17.8
+183151,59325.69112,3.490140123,0,17.8
+183152,62411.90709,0,0,17.8
+183153,58982.0164,0,0,17.8
+183154,60036.76698,83.6583131,668204.1076,17.8
+183155,621226.4803,368400.1225,0,17.8
+183156,162163.8024,0,0,17.8
+183157,246017.0389,0,0,17.8
+183158,233083.5237,982.8060487,0,17.8
+183159,208371.4374,603.783294,0,17.8
+183160,293805.2365,677.7481959,0,17.8
+183161,272595.6486,787.0276609,0,17.8
+183162,253905.3326,768.9451308,0,17.8
+183163,267779.2367,840.9783044,0,17.8
+183164,263466.1731,823.0433711,0,17.8
+183165,263648.0963,894.5007167,0,17.8
+183166,263244.5987,876.7062006,0,17.8
+183167,263348.2506,912.2498326,0,17.8
+183168,262707.1639,929.954274,0,17.8
+183169,263357.7818,965.231682,0,17.8
+183170,262612.4769,965.2316673,0,17.8
+183171,262745.1541,985.9861406,0,17.8
+183172,262468.9628,1000.337795,0,17.8
+183173,262226.2848,1017.828073,0,17.8
+183174,601857.7428,1076.710688,0,17.8
+183175,262574.8112,0,0,17.8
+183176,262155.6618,0,0,17.8
+183177,262078.0796,0,0,17.8
+183178,262014.2882,0,0,17.8
+183179,255293.9259,0,0,17.8
+183180,254838.3592,0,0,20
+183181,1834378.337,101966.5013,0,20
+183182,607366.4188,34002.06927,0,20
+183183,191220.8202,640658.7937,0,20
+183184,345137.7074,188875.65,0,20
+183185,394373.8597,186885.8773,0,20
+183186,382634.8956,182918.8983,0,20
+183187,411257.5014,189072.988,0,20
+183188,376068.2876,189354.6393,1098.800927,20
+183189,389342.2076,188285.2574,1734.977187,20
+183190,386218.4956,188926.5642,1137.704819,20
+183191,386615.2817,188095.8311,2567.084132,20
+183192,385096.6594,188466.0608,2136.333194,20
+183193,383500.0511,187962.8673,2268.978617,20
+183194,383606.8361,188190.252,2363.305608,20
+183195,380143.0425,187426.3578,2415.179046,20
+183196,380909.9067,187519.2501,2453.429227,20
+183197,380083.0639,187229.5218,2506.165148,20
+183198,377972.5864,186927.6172,3409.000534,20
+183199,377898.4708,186914.1448,3474.75972,20
+183200,375944.4682,186347.0229,3425.83291,20
+183201,375641.4181,187188.2062,3638.892495,20
+183202,375205.5157,185829.6637,3722.451686,20
+183203,373621.7628,186650.8921,3806.033107,20
+183204,372936.9914,185478.9579,3922.950386,20
+183205,371926.9569,186212.0713,4010.097082,20
+183206,371315.0778,185045.4051,4122.599655,20
+183207,369639.4107,185666.1129,6414.661319,20
+183208,370213.5702,615502.3827,5928.202264,20
+183209,368176.4473,184705.4321,6591.713389,20
+183210,367316.7667,183529.3494,9684.604635,20
+183211,366749.0537,184042.0485,8553.276632,20
+183212,365694.9653,184885.0351,9844.607344,20
+183213,364014.6606,183733.5795,10335.72815,20
+183214,364203.2031,184096.3493,10637.27127,20
+183215,361016.0404,184122.0884,11654.83389,20
+183216,360061.6402,183131.8389,11779.40394,20
+183217,359561.5951,184075.8947,12433.70067,20
+183218,357923.3745,182943.0708,12879.76152,20
+183219,357884.4137,183418.1873,13526.46612,20
+183220,355833.7025,182514.0197,13954.80292,20
+183221,356629.4496,183220.4453,14402.42994,20
+183222,353293.5394,182492.5698,14924.87012,20
+183223,354209.7401,182518.755,15481.17736,20
+183224,351971.5852,182196.2777,15794.60927,20
+183225,352035.7191,182115.1902,16421.33558,20
+183226,350612.9747,181846.1879,16752.92017,20
+183227,349497.175,181772.093,17151.68887,20
+183228,348772.7772,181817.5167,17234.08076,20
+183229,346810.691,181329.4373,17287.14531,20
+183230,347060.1936,181345.5364,17821.90044,20
+183231,345979.1999,181199.8019,18211.19892,20
+183232,343076.1728,180684.7047,18517.64109,20
+183233,344452.2571,181243.7686,18991.38807,20
+183234,341842.5971,180638.2069,19231.43498,20
+183235,340979.1423,180347.9907,19717.35226,20
+183236,340225.9646,180573.4471,20163.79991,20
+183237,338477.0957,181588.9753,20279.41732,20
+183238,337676.0054,181637.1436,20853.51532,20
+183239,337043.4492,181897.1572,21088.57174,20
+183240,335274.9253,181712.3225,21402.2097,21
+183241,458464.6922,170837.4238,16845.07002,21
+183242,450922.4296,169342.959,16539.15775,21
+183243,447063.9161,168432.0481,16551.24812,21
+183244,446075.6606,580321.6859,16680.33789,21
+183245,441864.7114,167621.9126,16699.38075,21
+183246,439149.5565,166915.4962,17018.04054,21
+183247,436847.7825,166955.8642,16759.94001,21
+183248,433000.1225,165852.2555,17300.5877,21
+183249,431103.094,165968.5309,17122.30687,21
+183250,427689.0764,164664.2855,17350.63999,21
+183251,425337.4368,165231.6754,17384.17866,21
+183252,422049.5362,164181.3567,17742.8472,21
+183253,418627.5536,163865.4138,17511.84526,21
+183254,417287.7194,163486.3539,17785.42648,21
+183255,414263.5792,162879.2421,17916.42732,21
+183256,410416.0158,162643.6711,18012.28564,21
+183257,407716.0524,162126.68,17969.88643,21
+183258,405279.7169,161712.3967,18284.5685,21
+183259,402194.9153,161174.2053,18229.72238,21
+183260,399587.5817,161029.9952,18415.84896,21
+183261,396538.5145,160729.8149,18479.20942,21
+183262,392746.318,159243.4362,18492.15238,21
+183263,391084.3026,160399.0412,18708.53506,21
+183264,388141.9888,158885.9867,18750.44157,21
+183265,384719.722,158705.4008,18764.43508,21
+183266,382432.7559,158645.9586,19003.17263,21
+183267,378609.3079,157624.6536,18879.47312,21
+183268,376588.8571,157920.823,19049.37983,21
+183269,375224.8181,157255.598,19250.75398,21
+183270,372562.8317,156898.7169,19177.86255,21
+183271,370553.3695,156528.7292,19140.53664,21
+183272,369767.5244,155482.868,18905.704,21
+183273,367222.6265,154572.0849,19014.24716,21
+183274,365310.1041,154023.4395,18733.26535,21
+183275,362669.2238,152663.1248,18452.73352,21
+183276,363195.7253,151864.1916,18320.49621,21
+183277,359025.8206,150723.718,18005.81498,21
+183278,357877.7326,150281.8345,17904.3738,21
+183279,356367.8099,148539.9759,17642.90259,21
+183280,353495.375,148271.8056,17497.94073,21
+183281,352516.8844,147134.4573,17148.06595,21
+183282,350955.805,146129.6887,17085.19481,21
+183283,347823.1513,144799.6682,16853.61322,21
+183284,347210.0959,143108.0695,16587.00953,21
+183285,344359.9227,141174.0536,16449.13817,21
+183286,343462.3283,140175.9456,16199.45017,21
+183287,341300.9216,138817.817,15998.83335,21
+183288,339977.0485,137588.5755,15665.32746,21
+183289,337106.2441,136675.3859,15512.87561,21
+183290,336274.7244,135366.6254,15234.28417,21
+183291,333897.6135,134086.213,14838.19815,21
+183292,332343.7579,132318.9003,14706.81268,21
+183293,330029.9232,131785.5887,14398.34461,21
+183294,328305.2165,129933.5226,14147.37472,21
+183295,327627.8396,128601.31,13623.76298,21
+183296,324518.6185,127348.9456,13666.01521,21
+183297,323822.4546,126231.3155,13174.87817,21
+183298,321802.8583,124331.4862,12756.66486,21
+183299,320578.9728,123731.9791,12706.33117,21
+183300,317619.6684,123124.9455,12272.07748,21
+183301,203453.4379,55840.12618,524.0705534,21
+183302,198020.8761,51721.09503,434.2890005,21
+183303,195383.0506,50978.10367,388.8060054,21
+183304,193070.4455,49570.2808,373.5507719,21
+183305,190234.7854,49094.51818,358.244463,21
+183306,188041.4868,48461.91594,311.9963246,21
+183307,185463.3296,47600.79863,311.998662,21
+183308,183098.9568,46294.59359,280.8772371,21
+183309,180684.066,45653.37576,265.222955,21
+183310,178327.2705,45362.17516,233.7084081,21
+183311,175579.8941,44554.59389,233.7097093,21
+183312,173282.1754,43865.01742,201.8976177,21
+183313,170342.5291,43574.36138,185.8689418,21
+183314,167776.9003,42976.12655,169.7504485,21
+183315,165690.8025,42188.13416,153.5350697,21
+183316,163283.9311,41812.7831,137.2142828,21
+183317,160470.8484,41464.35286,120.7776037,21
+183318,158652.836,40643.73025,104.2117808,21
+183319,156025.2573,40119.76055,79.0812991,21
+183320,154305.775,39708.0811,70.61706545,21
+183321,151320.2059,39449.84103,36.18233937,21
+183322,149469.6013,38344.83546,36.18236902,21
+183323,146803.5824,38234.42919,0,21
+183324,145046.9759,37658.10227,0,21
+183325,142544.4899,36756.64085,0,21
+183326,140634.1987,36460.93237,0,21
+183327,138877.2491,35536.87244,0,21
+183328,136452.4949,35514.17433,0,21
+183329,134825.4949,34537.4456,0,21
+183330,132696.8761,33987.31219,0,21
+183331,131303.7599,33567.35249,0,21
+183332,128786.0581,33536.16474,0,21
+183333,127096.16,32565.87232,0,21
+183334,124772.7761,32529.79694,0,21
+183335,123256.1886,32077.59637,0,21
+183336,121120.9567,31574.88686,0,21
+183337,118928.5727,31621.67557,0,21
+183338,117262.454,30665.87257,0,21
+183339,114980.2948,30746.2189,0,21
+183340,113252.74,30132.18915,0,21
+183341,111014.9425,29848.54906,0,21
+183342,109957.73,28834.00892,0,21
+183343,107211.1448,28772.32123,0,21
+183344,105370.888,28562.29475,0,21
+183345,103356.6776,27938.35505,0,21
+183346,101680.6956,27654.35366,0,21
+183347,99110.95288,27710.85657,0,21
+183348,97656.20396,26859.31513,0,21
+183349,95522.64327,26927.24727,0,21
+183350,93504.10918,26428.48853,0,21
+183351,89941.17869,26345.15013,0,21
+183352,86300.10326,25860.88957,0,21
+183353,84762.22989,25746.19494,0,21
+183354,81886.13616,25382.2849,0,21
+183355,80084.30942,25246.99675,0,21
+183356,78429.53892,24932.92424,0,21
+183357,77880.89226,24733.90042,0,21
+183358,76983.78242,24516.38854,0,21
+183359,75985.89363,24243.70156,0,21
+183360,75777.91404,24277.7818,0,21
+183361,74177.01163,24059.45051,0,21
+183362,73034.23177,23747.13571,0,21
+183363,72398.1849,23373.59689,0,21
+183364,71224.65278,22925.69648,0,21
+183365,70861.389,22892.43642,0,21
+183366,69774.72592,21654.12946,0,21
+183367,69128.14454,21173.42795,0,21
+183368,68062.03821,21031.66048,0,21
+183369,67569.81649,20417.31844,0,21
+183370,66322.67166,20195.42181,0,21
+183371,66155.12027,19939.09069,0,21
+183372,64750.58595,19427.58669,0,21
+183373,64409.07552,19344.3033,0,21
+183374,63412.05746,18854.44084,0,21
+183375,62667.17286,18647.52888,0,21
+183376,62063.88887,18189.74421,0,21
+183377,60906.5367,17954.71773,0,21
+183378,60431.08653,17478.64646,0,21
+183379,59648.83917,17373.66232,0,21
+183380,58880.48095,17024.79274,0,21
+183381,57971.5679,16445.2624,0,21
+183382,57417.5819,16473.15703,0,21
+183383,56749.94107,15806.72131,0,21
+183384,55758.50727,15694.74117,0,21
+183385,55274.84066,15262.72545,0,21
+183386,54278.34903,15002.96245,0,21
+183387,53794.74385,14516.84138,0,21
+183388,52831.16651,14402.28594,0,21
+183389,52460.72247,13801.72231,0,21
+183390,51351.35182,13708.38883,0,21
+183391,50967.08739,12776.59806,0,21
+183392,49796.09681,12464.13109,0,21
+183393,49150.70303,11353.63216,0,21
+183394,48439.74729,11040.78845,0,21
+183395,47607.633,10153.88584,0,21
+183396,46420.46928,9419.142877,0,21
+183397,46242.23986,8676.030278,0,21
+183398,44908.01499,7879.361691,0,21
+183399,44409.07555,7470.667829,0,21
+183400,43497.59282,7249.169742,0,21
+183401,42962.97128,6943.007614,0,21
+183402,42130.81038,6784.256176,0,21
+183403,41481.88425,6507.634113,0,21
+183404,40683.26417,6285.477911,0,21
+183405,40200.26751,6053.466485,0,21
+183406,39111.49921,5820.26539,0,21
+183407,38697.3145,5570.830644,0,21
+183408,38009.11414,5335.083807,0,21
+183409,37144.17815,5122.533934,0,21
+183410,36598.91602,4844.398794,0,21
+183411,35756.88382,4604.426169,0,21
+183412,35191.16404,4347.69234,0,21
+183413,34371.33019,4145.131842,0,21
+183414,33616.19115,3844.300492,0,21
+183415,33006.956,3612.874935,0,21
+183416,32256.12496,3374.845798,0,21
+183417,31442.6153,3097.828302,0,21
+183418,30977.5957,2987.180431,0,21
+183419,29823.83827,2453.854243,0,21
+183420,29472.88748,2662.9912,0,21
+183421,27438.87301,2286.635064,0,21
+183422,26644.67692,1964.322182,0,21
+183423,25779.5046,1769.090962,0,21
+183424,25414.36034,1654.384567,0,21
+183425,24764.76723,1579.02555,0,21
+183426,24383.56843,1229.405456,0,21
+183427,23883.83083,1224.764835,0,21
+183428,23634.68349,997.0063819,0,21
+183429,22953.805,947.3277987,0,21
+183430,22701.32191,931.4265021,0,21
+183431,22213.50324,915.4853132,0,21
+183432,21825.45647,915.4854282,0,21
+183433,21413.41761,883.481279,0,21
+183434,21231.71258,899.504046,0,21
+183435,20863.70525,851.31156,0,21
+183436,20368.48853,867.4176774,0,21
+183437,19877.57076,835.163135,0,21
+183438,19507.37961,818.9714325,0,21
+183439,19097.76913,818.9714984,0,21
+183440,18545.45309,802.7360396,0,21
+183441,18291.51481,786.4560239,0,21
+183442,17847.97244,770.1308422,0,21
+183443,17380.32638,770.1309097,0,21
+183444,17306.67239,737.3421082,0,21
+183445,16983.84827,737.3421612,0,21
+183446,16737.07714,720.8771659,0,21
+183447,16615.70867,720.8772392,0,21
+183448,16326.42686,687.8016165,0,21
+183449,16266.98396,687.8016689,0,21
+183450,15842.34705,654.5262964,0,21
+183451,15770.97292,671.1864302,0,21
+183452,15489.64969,637.8078699,0,21
+183453,15271.46895,654.5228056,0,21
+183454,15226.85646,621.0401883,0,21
+183455,14823.19439,621.040213,0,21
+183456,14827.97723,621.0402616,0,21
+183457,14337.86394,604.2186014,0,21
+183458,14448.23384,587.3418182,0,21
+183459,13987.74798,604.2186453,0,21
+183460,13960.77665,570.4088089,0,21
+183461,13674.48402,570.4088539,0,21
+183462,13502.70276,570.4089099,0,21
+183463,13309.33716,553.4182776,0,21
+183464,13103.37317,553.4183143,0,21
+183465,12824.33474,536.3687313,0,21
+183466,12722.98001,536.3687855,0,21
+183467,12418.61714,519.258816,0,21
+183468,12351.8432,519.2588685,0,21
+183469,12011.05339,519.2589204,0,21
+183470,11881.33176,502.087016,0,21
+183471,11600.03577,484.8515365,0,21
+183472,11575.19016,502.0871191,0,21
+183473,11135.602,467.5507673,0,21
+183474,11051.75257,502.0872261,0,21
+183475,10848.04091,484.8517416,0,21
+183476,10532.97449,484.8517997,0,21
+183477,10461.87361,467.550975,0,21
+183478,10239.50365,467.5510283,0,21
+183479,9934.302753,467.5510815,0,21
+183480,9735.131051,450.18302,0,21
+183481,10082.91028,476.2108214,0,21
+183482,9682.629296,467.5510487,0,21
+183483,9647.001453,450.1829716,0,21
+183484,9491.348224,450.183017,0,21
+183485,9311.491614,432.7456768,0,21
+183486,9077.990492,415.2353796,0,21
+183487,9007.821439,397.6537357,0,21
+183488,8861.648169,388.8343116,0,21
+183489,8579.636302,379.9950124,0,21
+183490,8444.93938,362.2566209,0,21
+183491,8359.782727,362.256666,0,21
+183492,8124.949315,344.4358662,0,21
+183493,8063.559416,344.4359062,0,21
+183494,7802.94737,326.529289,0,21
+183495,7627.952181,326.5293328,0,21
+183496,7579.446273,308.5330599,0,21
+183497,7328.390807,290.4429086,0,21
+183498,7138.908507,308.5331336,0,21
+183499,7115.375016,272.254144,0,21
+183500,6823.28931,272.2541928,0,21
+183501,6670.796068,272.2542298,0,21
+183502,6505.348268,235.5583126,0,21
+183503,6454.293196,253.9614162,0,21
+183504,6184.533959,235.5583709,0,21
+183505,6029.794826,226.3133621,0,21
+183506,5848.457724,217.0380584,0,21
+183507,5796.172337,198.3920816,0,21
+183508,5535.660735,217.0381115,0,21
+183509,5365.021593,179.6106728,0,21
+183510,5193.569353,179.6106932,0,21
+183511,5159.496413,160.6822835,0,21
+183512,4980.206166,179.6111866,0,21
+183513,4853.548898,141.5917394,0,21
+183514,4665.15021,141.5917488,0,21
+183515,4642.334981,141.5917568,0,21
+183516,4495.694967,122.3208452,0,21
+183517,4362.037194,122.3208481,0,21
+183518,4241.432966,102.8456773,0,21
+183519,4321.356862,102.8456844,0,21
+183520,3971.728354,83.13340503,0,21
+183521,4052.419528,93.02171388,0,21
+183522,3930.873488,63.1362047,0,21
+183523,3781.447612,73.17428815,0,21
+183524,3781.44743,53.00856427,0,21
+183525,3631.387059,42.77694934,0,21
+183526,3494.500648,42.7769493,0,21
+183527,3494.500485,32.42051487,0,21
+183528,3329.272153,21.90597357,0,21
+183529,3218.946375,21.90598362,0,21
+183530,3177.166923,0,0,21
+183531,3191.125706,0,0,21
+183532,2898.866277,0,0,21
+183533,2898.866153,0,0,21
+183534,2884.807074,0,0,21
+183535,2744.58759,0,0,21
+183536,2589.465907,0,0,21
+183537,2589.465802,0,0,21
+183538,2447.688277,0,0,21
+183539,2419.184255,0,0,21
+183540,2290.807026,0,0,21
+183541,6379.09211,0,0,21
+183542,6365.617426,397.6524585,0,21
+183543,6237.816095,272.2523996,0,21
+183544,6352.114238,272.2524057,0,21
+183545,6224.284463,253.9596508,0,21
+183546,6096.113855,253.9596598,0,21
+183547,6197.135359,235.5567085,0,21
+183548,6082.524564,253.9597192,0,21
+183549,6055.258825,217.0365145,0,21
+183550,5825.078645,217.0365231,0,21
+183551,6041.581045,217.0365303,0,21
+183552,5797.69359,198.3906623,0,21
+183553,5783.955694,189.0176192,0,21
+183554,5783.955455,179.6093777,0,21
+183555,5756.38768,179.6093878,0,21
+183556,5524.888843,160.6804337,0,21
+183557,5742.556711,160.6807851,0,21
+183558,5497.195827,151.1568273,0,21
+183559,5483.301617,141.5903114,0,21
+183560,5483.301405,122.3196049,0,21
+183561,5353.114907,141.5898658,0,21
+183562,5194.528968,102.8442086,0,21
+183563,5091.586741,102.8442261,0,21
+183564,5063.502491,102.8442484,0,21
+183565,5049.409571,102.8442635,0,21
+183566,4932.076714,63.13533366,0,21
+183567,4786.080239,83.13226994,0,21
+183568,4903.786172,63.13534013,0,21
+183569,4771.88237,63.13534246,0,21
+183570,4653.793885,42.77635838,0,21
+183571,4743.37827,42.77633024,0,21
+183572,4625.289653,32.42004198,0,21
+183573,4492.502318,21.90565383,0,21
+183574,4596.638724,0,0,21
+183575,4359.276414,0,0,21
+183576,4449.35596,0,0,21
+183577,4330.473864,0,0,21
+183578,4330.473787,0,0,21
+183579,4301.515546,0,0,21
+183580,4182.220985,0,0,21
+183581,4167.681935,0,0,21
+183582,4153.102113,0,0,21
+183583,4033.383694,0,0,21
+183584,4138.480782,0,0,21
+183585,3883.944635,0,0,21
+183586,4004.098983,0,0,21
+183587,3974.642953,0,0,21
+183588,3748.634664,0,0,21
+183589,3839.694208,0,0,21
+183590,3839.694137,0,0,21
+183591,3704.251036,0,0,21
+183592,3704.250965,0,0,21
+183593,3674.432719,0,0,21
+183594,3568.29838,0,0,21
+183595,3538.385073,0,0,21
+183596,3538.385015,0,0,21
+183597,3523.355274,0,0,21
+183598,3401.809754,0,0,21
+183599,3386.747459,0,0,21
+183600,3371.603385,0,0,21
+183601,126.2210174,0,0,21
+183602,91.69736822,0,0,21
+183603,91.69736861,0,0,21
+183604,74.13073566,0,0,21
+183605,74.13073606,0,0,21
+183606,56.30779406,0,0,21
+183607,38.15877515,0,0,21
+183608,38.1587753,0,0,21
+183609,38.15877545,0,0,21
+183610,9.970946411,0,0,21
+183611,19.54813842,0,0,21
+183612,0,0,0,21
+183613,0,0,0,21
+183614,0,0,0,21
+183615,0,0,0,21
+183616,0,0,0,21
+183617,0,0,0,21
+183618,0,0,0,21
+183619,0,0,0,21
+183620,0,0,0,21
+183621,0,0,0,21
+183622,0,0,0,21
+183623,0,0,0,21
+183624,0,0,0,21
+183625,0,0,0,21
+183626,0,0,0,21
+183627,0,0,0,21
+183628,0,0,0,21
+183629,0,0,0,21
+183630,0,0,0,21
+183631,0,0,0,21
+183632,0,0,0,21
+183633,0,0,0,21
+183634,0,0,0,21
+183635,0,0,0,21
+183636,0,0,0,21
+183637,0,0,0,21
+183638,0,0,0,21
+183639,0,0,0,21
+183640,0,0,0,21
+183641,0,0,0,21
+183642,0,0,0,21
+183643,0,0,0,21
+183644,0,0,0,21
+183645,0,0,0,21
+183646,0,0,0,21
+183647,0,0,0,21
+183648,0,0,0,21
+183649,0,0,0,21
+183650,0,0,0,21
+183651,0,0,0,21
+183652,0,0,0,21
+183653,0,0,0,21
+183654,0,0,0,21
+183655,0,0,0,21
+183656,0,0,0,21
+183657,0,0,0,21
+183658,0,0,0,21
+183659,0,0,0,21
+183660,0,0,0,21
+183661,0,0,0,21
+183662,0,0,0,21
+183663,0,0,0,21
+183664,0,0,0,21
+183665,0,0,0,21
+183666,0,0,0,21
+183667,0,0,0,21
+183668,0,0,0,21
+183669,0,0,0,21
+183670,0,0,0,21
+183671,0,0,0,21
+183672,0,0,0,21
+183673,0,0,0,21
+183674,0,0,0,21
+183675,0,0,0,21
+183676,0,0,0,21
+183677,0,0,0,21
+183678,0,0,0,21
+183679,0,0,0,21
+183680,0,0,0,21
+183681,0,0,0,21
+183682,0,0,0,21
+183683,0,0,0,21
+183684,0,0,0,21
+183685,0,0,0,21
+183686,0,0,0,21
+183687,0,0,0,21
+183688,0,0,0,21
+183689,0,0,0,21
+183690,0,0,0,21
+183691,0,0,0,21
+183692,0,0,0,21
+183693,0,0,0,21
+183694,0,0,0,21
+183695,0,0,0,21
+183696,0,0,0,21
+183697,0,0,0,21
+183698,0,0,0,21
+183699,0,0,0,21
+183700,0,0,0,21
+183701,0,0,0,21
+183702,0,0,0,21
+183703,0,0,0,21
+183704,0,0,0,21
+183705,0,0,0,21
+183706,0,0,0,21
+183707,0,0,0,21
+183708,0,0,0,21
+183709,0,0,0,21
+183710,0,0,0,21
+183711,0,0,0,21
+183712,0,0,0,21
+183713,0,0,0,21
+183714,0,0,0,21
+183715,0,0,0,21
+183716,0,0,0,21
+183717,0,0,0,21
+183718,0,0,0,21
+183719,0,0,0,21
+183720,0,0,0,21
+183721,0,0,0,21
+183722,0,0,0,21
+183723,0,0,0,21
+183724,0,0,0,21
+183725,0,0,0,21
+183726,0,0,0,21
+183727,0,0,0,21
+183728,0,0,0,21
+183729,0,0,0,21
+183730,0,0,0,21
+183731,0,0,0,21
+183732,0,0,0,21
+183733,0,0,0,21
+183734,0,0,0,21
+183735,0,0,0,21
+183736,0,0,0,21
+183737,0,0,0,21
+183738,0,0,0,21
+183739,0,0,0,21
+183740,0,0,0,21
+183741,0,0,0,21
+183742,0,0,0,21
+183743,0,0,0,21
+183744,0,0,0,21
+183745,0,0,0,21
+183746,0,0,0,21
+183747,0,0,0,21
+183748,0,0,0,21
+183749,0,0,0,21
+183750,0,0,0,21
+183751,0,0,0,21
+183752,0,0,0,21
+183753,0,0,0,21
+183754,0,0,0,21
+183755,0,0,0,21
+183756,0,0,0,21
+183757,0,0,0,21
+183758,0,0,0,21
+183759,0,0,0,21
+183760,0,0,0,21
+183761,0,0,0,21
+183762,0,0,0,21
+183763,0,0,0,21
+183764,0,0,0,21
+183765,0,0,0,21
+183766,0,0,0,21
+183767,0,0,0,21
+183768,0,0,0,21
+183769,0,0,0,21
+183770,0,0,0,21
+183771,0,0,0,21
+183772,0,0,0,21
+183773,0,0,0,21
+183774,0,0,0,21
+183775,0,0,0,21
+183776,0,0,0,21
+183777,0,0,0,21
+183778,0,0,0,21
+183779,0,0,0,21
+183780,0,0,0,21
+183781,0,0,0,21
+183782,0,0,0,21
+183783,0,0,0,21
+183784,0,0,0,21
+183785,0,0,0,21
+183786,0,0,0,21
+183787,0,0,0,21
+183788,0,0,0,21
+183789,0,0,0,21
+183790,0,0,0,21
+183791,0,0,0,21
+183792,0,0,0,21
+183793,0,0,0,21
+183794,0,0,0,21
+183795,0,0,0,21
+183796,0,0,0,21
+183797,0,0,0,21
+183798,0,0,0,21
+183799,0,0,0,21
+183800,0,0,0,21
+183801,0,0,0,21
+183802,0,0,0,21
+183803,0,0,0,21
+183804,0,0,0,21
+183805,0,0,0,21
+183806,0,0,0,21
+183807,0,0,0,21
+183808,0,0,0,21
+183809,0,0,0,21
+183810,0,0,0,21
+183811,0,0,0,21
+183812,0,0,0,21
+183813,0,0,0,21
+183814,0,0,0,21
+183815,0,0,0,21
+183816,0,0,0,21
+183817,0,0,0,21
+183818,0,0,0,21
+183819,0,0,0,21
+183820,0,0,0,21
+183821,0,0,0,21
+183822,0,0,0,21
+183823,0,0,0,21
+183824,0,0,0,21
+183825,0,0,0,21
+183826,0,0,0,21
+183827,0,0,0,21
+183828,0,0,0,21
+183829,0,0,0,21
+183830,0,0,0,21
+183831,0,0,0,21
+183832,0,0,0,21
+183833,0,0,0,21
+183834,0,0,0,21
+183835,0,0,0,21
+183836,0,0,0,21
+183837,0,0,0,21
+183838,0,0,0,21
+183839,0,0,0,21
+183840,0,0,0,21
+183841,0,0,0,21
+183842,0,0,0,21
+183843,0,0,0,21
+183844,0,0,0,21
+183845,0,0,0,21
+183846,0,0,0,21
+183847,0,0,0,21
+183848,0,0,0,21
+183849,0,0,0,21
+183850,0,0,0,21
+183851,0,0,0,21
+183852,0,0,0,21
+183853,0,0,0,21
+183854,0,0,0,21
+183855,0,0,0,21
+183856,0,0,0,21
+183857,0,0,0,21
+183858,0,0,0,21
+183859,0,0,0,21
+183860,0,0,0,21
+183861,0,0,0,21
+183862,0,0,0,21
+183863,0,0,0,21
+183864,0,0,0,21
+183865,0,0,0,21
+183866,0,0,0,21
+183867,0,0,0,21
+183868,0,0,0,21
+183869,0,0,0,21
+183870,0,0,0,21
+183871,0,0,0,21
+183872,0,0,0,21
+183873,0,0,0,21
+183874,0,0,0,21
+183875,0,0,0,21
+183876,0,0,0,21
+183877,0,0,0,21
+183878,0,0,0,21
+183879,0,0,0,21
+183880,0,0,0,21
+183881,0,0,0,21
+183882,0,0,0,21
+183883,0,0,0,21
+183884,0,0,0,21
+183885,0,0,0,21
+183886,0,0,0,21
+183887,0,0,0,21
+183888,0,0,0,21
+183889,0,0,0,21
+183890,0,0,0,21
+183891,0,0,0,21
+183892,0,0,0,21
+183893,0,0,0,21
+183894,0,0,0,21
+183895,0,0,0,21
+183896,0,0,0,21
+183897,0,0,0,21
+183898,0,0,0,21
+183899,0,0,0,21
+183900,0,0,0,21
+183901,0,0,0,21
+183902,0,0,0,21
+183903,0,0,0,21
+183904,0,0,0,21
+183905,0,0,0,21
+183906,0,0,0,21
+183907,0,0,0,21
+183908,0,0,0,21
+183909,0,0,0,21
+183910,0,0,0,21
+183911,0,0,0,21
+183912,0,0,0,21
+183913,0,0,0,21
+183914,0,0,0,21
+183915,2283.073285,0,0,21
+183916,1517.425781,0,0,21
+183917,2030.695265,0,0,21
+183918,2157.207946,0,0,21
+183919,2657.067682,0,0,21
+183920,2657.067638,0,0,21
+183921,3148.17057,0,0,21
+183922,3148.170506,0,0,21
+183923,3631.658657,0,0,21
+183924,3631.658572,0,0,21
+183925,3989.785974,0,0,21
+183926,4226.557934,0,0,21
+183927,4461.828936,0,0,21
+183928,4578.921268,0,0,21
+183929,4928.111425,0,0,21
+183930,5043.834022,0,0,21
+183931,5389.06293,0,0,21
+183932,5503.510695,0,0,21
+183933,5731.49383,0,0,21
+183934,5958.290893,0,0,21
+183935,6183.93627,0,0,21
+183936,6296.336997,0,0,21
+183937,6631.897208,0,0,21
+183938,6743.214633,0,0,21
+183939,6965.065956,0,0,21
+183940,7075.605794,163.9905742,0,21
+183941,7405.718801,124.8509769,0,21
+183942,7515.263183,163.99057,0,21
+183943,7733.628682,1219.879395,0,21
+183944,7951.046086,1654.064074,0,21
+183945,8059.405059,1602.062669,0,21
+183946,8383.112085,1921.701199,0,21
+183947,8383.111635,2126.467009,0,21
+183948,8704.807701,2448.758087,0,21
+183949,8811.602053,2622.300611,0,21
+183950,9251.645748,2813.125693,0,21
+183951,9388.889369,3119.149183,0,21
+183952,9658.574385,3155.38726,0,21
+183953,9901.787199,3626.870899,0,21
+183954,10022.94396,3644.784817,0,21
+183955,10272.39082,3979.356601,0,21
+183956,10400.59227,4127.908773,0,21
+183957,10831.77189,4302.374809,0,21
+183958,10671.51747,4622.930401,0,21
+183959,11203.87433,4640.415606,0,21
+183960,11219.35448,5095.100927,0,21
+183961,11470.84441,5112.458099,0,21
+183962,11690.76604,5274.488356,0,21
+183963,11823.15089,5740.215243,0,21
+183964,12158.38318,5757.333779,0,21
+183965,12274.71241,5917.240566,0,21
+183966,12521.52462,6360.136485,0,21
+183967,12622.35608,6235.557414,0,21
+183968,12982.66809,6692.642079,0,21
+183969,12968.02398,6849.728968,0,21
+183970,13425.9269,7023.438831,0,21
+183971,13340.74942,7528.472428,0,21
+183972,13752.78025,7675.606448,0,21
+183973,13894.81706,7808.615182,0,21
+183974,13909.08577,8269.979551,0,21
+183975,14331.86598,8312.630619,0,21
+183976,14556.36307,8539.053242,0,21
+183977,14570.44319,9006.97245,0,21
+183978,14794.09383,8917.19113,0,21
+183979,15016.9817,9407.359729,0,21
+183980,15239.11607,9558.83931,0,21
+183981,15446.70443,9645.521359,0,21
+183982,15474.27293,10119.30997,0,21
+183983,15887.41586,10312.1508,0,21
+183984,15901.08487,10338.81813,0,21
+183985,16133.86644,10850.22851,0,21
+183986,16325.24266,10998.89203,0,21
+183987,16556.57705,11067.21879,0,21
+183988,16678.63172,11373.7686,0,21
+183989,16976.5823,11720.70782,0,21
+183990,17003.31482,11746.53932,0,21
+183991,17407.49871,12066.0227,0,21
+183992,17339.77025,12132.92439,0,21
+183993,19595.24048,12435.26278,0,21
+183994,20170.60731,12616.25111,0,21
+183995,20074.65274,13119.32339,0,21
+183996,20611.01261,16412.68246,0,21
+183997,21240.6072,15305.16836,0,21
+183998,21657.13175,16419.22772,0,21
+183999,22039.44894,16969.08036,0,21
+184000,22452.18494,17592.13913,0,21
+184001,22913.18484,18369.20999,0,21
+184002,23332.79095,18563.97487,0,21
+184003,23707.10364,19262.802,0,21
+184004,23932.15913,19784.60494,0,21
+184005,24546.11075,20242.00447,0,21
+184006,24809.11565,20889.74887,0,21
+184007,25331.91831,21239.13894,0,21
+184008,25385.45177,24485.00906,0,21
+184009,26084.85692,24423.58852,0,21
+184010,26514.97242,25156.02539,0,21
+184011,26484.5446,26622.46384,0,21
+184012,27348.68452,26744.37452,0,21
+184013,27333.631,28131.16109,0,21
+184014,27821.98001,28634.65642,0,21
+184015,28248.72191,29885.26705,0,21
+184016,28684.65855,30249.07956,0,21
+184017,28786.81657,31225.20408,0,21
+184018,29312.43845,32243.667,0,21
+184019,29726.92412,32595.49799,0,21
+184020,29943.27512,33723.53118,0,21
+184021,31653.38336,36099.37071,0,21
+184022,31997.10215,37636.16858,0,21
+184023,32731.25391,38032.80563,0,21
+184024,32914.67107,39410.46699,0,21
+184025,33538.78975,40111.24603,0,21
+184026,33540.01004,41203.43442,0,21
+184027,33966.78048,41533.19425,0,21
+184028,34238.22617,42955.81324,0,21
+184029,34704.39985,43542.8257,0,21
+184030,34824.48881,44096.88782,0,21
+184031,35419.26188,45710.01817,0,21
+184032,35619.02303,45808.19738,0,21
+184033,36032.18414,46595.69758,0,21
+184034,36580.93481,47819.97496,0,21
+184035,36809.49381,48638.94934,0,21
+184036,37183.86538,48829.63989,0,21
+184037,38444.24299,50178.3278,0,21
+184038,39047.00877,50610.85275,0,21
+184039,39650.08479,51607.56373,0,21
+184040,40062.29701,52201.51652,0,21
+184041,40423.40472,53065.09755,0,21
+184042,40881.99837,53658.79333,0,21
+184043,41171.29087,54718.42304,0,21
+184044,42081.05022,55031.26118,0,21
+184045,42241.27562,56024.86788,0,21
+184046,42782.17557,56664.64451,0,21
+184047,43005.53268,57523.39967,0,21
+184048,43352.9068,58130.82046,0,21
+184049,43923.96963,58762.64559,0,21
+184050,44206.94503,59680.34096,0,21
+184051,44643.20775,60116.08779,0,21
+184052,44933.18492,60999.85719,0,21
+184053,45343.33075,61450.54259,0,21
+184054,46241.53623,62560.79269,0,21
+184055,48965.6275,62749.89705,0,21
+184056,48350.21927,63431.74215,0,21
+184057,49210.03583,64706.53026,0,21
+184058,50179.93736,64987.22142,0,21
+184059,50614.26086,65354.86599,0,21
+184060,52169.01317,66742.58919,0,21
+184061,54313.63296,66958.55063,0,21
+184062,54062.81901,67415.47237,0,21
+184063,55166.55067,68495.21537,0,21
+184064,56241.39035,68879.92321,0,21
+184065,56795.57862,69836.01787,0,21
+184066,57876.99547,70005.7864,0,21
+184067,58529.01526,70826.6876,0,21
+184068,59201.19411,71686.25144,0,21
+184069,60217.98076,71845.29468,0,21
+184070,60726.52558,73145.96819,0,21
+184071,61736.361,72993.09822,0,21
+184072,62285.06563,74267.02137,0,21
+184073,63276.58564,74530.78154,0,21
+184074,63713.15234,75109.37419,0,21
+184075,64578.71024,75932.32697,0,21
+184076,65269.31283,76301.48576,0,21
+184077,65955.13662,76756.14697,0,21
+184078,66701.73437,77937.61251,0,21
+184079,67286.54205,77988.05782,0,21
+184080,68138.19738,78928.37548,0,21
+184081,68543.03519,79197.82965,0,21
+184082,69136.17331,79648.15254,0,21
+184083,70114.56943,80417.09431,0,21
+184084,70501.03139,80871.58761,0,21
+184085,71626.42362,81494.04393,0,21
+184086,71798.86271,81707.84065,0,21
+184087,73135.41496,82481.83671,0,21
+184088,73058.9705,83041.20022,0,21
+184089,74417.82017,83176.68245,0,21
+184090,74769.40876,84071.67922,0,21
+184091,75510.4145,84268.25413,0,21
+184092,76142.66798,85298.55843,0,21
+184093,76762.53253,85480.56236,0,21
+184094,77651.28882,85945.95487,0,21
+184095,77891.55157,86543.36882,0,21
+184096,78893.49097,87112.10822,0,21
+184097,79402.08282,87458.63429,0,21
+184098,80142.56244,88270.32778,0,21
+184099,80603.0544,88219.78216,0,21
+184100,81462.90221,89259.25104,0,21
+184101,81899.52292,89301.15337,0,21
+184102,82484.57383,90277.79851,0,21
+184103,83191.90558,90250.12332,0,21
+184104,83842.25052,90969.49494,0,21
+184105,84275.34449,91450.80728,0,21
+184106,85117.97234,92371.41473,0,21
+184107,85378.30314,93721.3536,0,21
+184108,86213.67135,94441.04027,0,21
+184109,86633.06734,94559.51927,0,21
+184110,87568.60479,95309.84559,0,21
+184111,87684.28046,96089.52161,0,21
+184112,88506.78109,96446.7848,0,21
+184113,89069.25463,97291.72157,0,21
+184114,89604.12085,97544.38532,0,21
+184115,90191.82455,98390.68424,0,21
+184116,90725.67925,98826.7428,0,21
+184117,91362.77281,98892.06333,0,21
+184118,91658.2522,99635.43609,0,21
+184119,92565.66148,100218.4123,0,21
+184120,92893.05976,100832.4454,0,21
+184121,93556.41417,101202.2528,0,21
+184122,93800.89369,101625.0163,0,21
+184123,94775.38028,102595.1858,0,21
+184124,95079.51238,102356.4823,0,21
+184125,95377.91835,103544.0644,0,21
+184126,96317.25539,103655.9439,0,21
+184127,96722.72834,104207.8459,0,21
+184128,96976.80635,104669.5433,0,21
+184129,97951.59538,105236.0982,0,21
+184130,97710.00874,105779.9821,0,21
+184131,99344.65215,106065.5757,0,21
+184132,98642.00029,106751.998,0,21
+184133,99905.21234,107736.5245,0,21
+184134,100325.3691,108479.4272,0,21
+184135,100470.8932,108894.6036,0,21
+184136,101587.3466,109216.505,0,21
+184137,101650.723,110181.239,0,21
+184138,102243.9004,110352.1373,0,21
+184139,102738.932,111025.9417,0,21
+184140,103439.0778,111458.388,0,21
+184141,0,0,0,21
+184142,0,0,0,21
+184143,0,0,0,21
+184144,0,0,0,21
+184145,0,0,0,21
+184146,0,368754.851,753967.7702,21
+184147,0,0,0,21
+184148,339470.7529,0,0,21
+184149,0,0,0,21
+184150,0,0,0,21
+184151,0,0,0,21
+184152,0,0,0,21
+184153,0,0,0,21
+184154,0,0,0,21
+184155,0,0,0,21
+184156,0,0,0,21
+184157,0,0,0,21
+184158,0,0,0,21
+184159,0,0,0,21
+184160,0,0,0,21
+184161,0,0,0,21
+184162,0,0,0,21
+184163,0,0,0,21
+184164,0,0,0,21
+184165,0,0,0,21
+184166,0,0,0,21
+184167,0,0,0,21
+184168,0,0,0,21
+184169,0,0,0,21
+184170,0,0,0,21
+184171,0,0,0,21
+184172,0,0,0,21
+184173,0,0,0,21
+184174,0,0,0,21
+184175,0,0,0,21
+184176,0,0,0,21
+184177,0,0,0,21
+184178,0,0,0,21
+184179,0,0,0,21
+184180,0,0,0,21
+184181,0,368779.1041,747023.4011,21
+184182,0,0,0,21
+184183,0,0,0,21
+184184,0,0,0,21
+184185,339514.2722,0,0,21
+184186,0,0,0,21
+184187,0,0,0,21
+184188,0,0,0,21
+184189,0,0,0,21
+184190,0,0,0,21
+184191,0,0,0,21
+184192,0,0,0,21
+184193,0,0,0,21
+184194,0,0,0,21
+184195,0,0,0,21
+184196,0,0,0,21
+184197,0,0,0,21
+184198,0,0,0,21
+184199,0,0,0,21
+184200,0,0,0,15.6
+184201,0,0,0,15.6
+184202,0,0,0,15.6
+184203,0,0,0,15.6
+184204,0,0,0,15.6
+184205,0,0,0,15.6
+184206,0,0,0,15.6
+184207,0,0,0,15.6
+184208,0,0,0,15.6
+184209,0,0,0,15.6
+184210,0,0,0,15.6
+184211,0,0,0,15.6
+184212,0,0,0,15.6
+184213,0,0,0,15.6
+184214,0,0,0,15.6
+184215,0,0,0,15.6
+184216,0,368790.6406,741614.8928,15.6
+184217,0,0,0,15.6
+184218,0,0,0,15.6
+184219,0,0,0,15.6
+184220,0,0,0,15.6
+184221,0,0,0,15.6
+184222,339514.0084,0,0,15.6
+184223,0,0,0,15.6
+184224,0,0,0,15.6
+184225,0,60.90022808,0,15.6
+184226,0,0,0,15.6
+184227,0,0,0,15.6
+184228,0,0,0,15.6
+184229,0,0,0,15.6
+184230,0,0,0,15.6
+184231,0,0,0,15.6
+184232,0,0,0,15.6
+184233,0,0,0,15.6
+184234,0,0,0,15.6
+184235,0,0,0,15.6
+184236,0,63.34445729,0,15.6
+184237,0,0,0,15.6
+184238,0,0,0,15.6
+184239,0,0,0,15.6
+184240,0,0,0,15.6
+184241,0,0,0,15.6
+184242,0,0,0,15.6
+184243,0,0,0,15.6
+184244,0,0,0,15.6
+184245,0,0,0,15.6
+184246,0,0,0,15.6
+184247,0,335.4549741,0,15.6
+184248,0,0,0,15.6
+184249,0,0,0,15.6
+184250,0,0,0,15.6
+184251,0,368788.6619,735181.8349,15.6
+184252,0,0,0,15.6
+184253,0,0,0,15.6
+184254,0,0,0,15.6
+184255,0,0,0,15.6
+184256,0,0,0,15.6
+184257,0,0,0,15.6
+184258,0,0,0,15.6
+184259,339485.9333,3.173959103,0,15.6
+184260,0,0,0,15.6
+184261,0,126.35475,0,15.6
+184262,0,0,0,15.6
+184263,0,0,0,15.6
+184264,0,0,0,15.6
+184265,0,67.84503698,0,15.6
+184266,0,0,0,15.6
+184267,0,0,0,15.6
+184268,0,0,0,15.6
+184269,0,85.06151128,0,15.6
+184270,0,0,0,15.6
+184271,0,0,0,15.6
+184272,0,0,0,15.6
+184273,0,81.3693048,0,15.6
+184274,0,0,0,15.6
+184275,0,0,0,15.6
+184276,0,0,0,15.6
+184277,0,79.09768526,0,15.6
+184278,0,0,0,15.6
+184279,0,0,0,15.6
+184280,0,0,0,15.6
+184281,0,76.4112175,0,15.6
+184282,0,0,0,15.6
+184283,0,0,0,15.6
+184284,0,0,0,15.6
+184285,0,73.47370907,0,15.6
+184286,0,0,729745.9799,15.6
+184287,0,368684.8089,0,15.6
+184288,0,0,0,15.6
+184289,0,67.74735023,0,15.6
+184290,0,0,0,15.6
+184291,0,0,0,15.6
+184292,0,0,0,15.6
+184293,0,0,0,15.6
+184294,0,64.62642014,0,15.6
+184295,0,0,0,15.6
+184296,339521.2104,0,0,15.6
+184297,0,0,0,15.6
+184298,0,0,0,15.6
+184299,0,0,0,15.6
+184300,0,0,0,15.6
+184301,0,0,0,15.6
+184302,0,0,0,15.6
+184303,0,82.39776708,0,15.6
+184304,0,0,0,15.6
+184305,0,0,0,15.6
+184306,0,0,0,15.6
+184307,0,74.74670605,0,15.6
+184308,0,0,0,15.6
+184309,0,0,0,15.6
+184310,0,0,0,15.6
+184311,0,78.82094741,0,15.6
+184312,0,0,0,15.6
+184313,0,0,0,15.6
+184314,0,0,0,15.6
+184315,0,80.60114954,0,15.6
+184316,0,0,0,15.6
+184317,0,0,0,15.6
+184318,0,0,0,15.6
+184319,0,81.98447756,0,15.6
+184320,0,0,0,15.6
+184321,0,0,725370.7399,15.6
+184322,0,0,0,15.6
+184323,0,368647.8719,0,15.6
+184324,0,0,0,15.6
+184325,0,0,0,15.6
+184326,0,0,0,15.6
+184327,0,74.58029157,0,15.6
+184328,0,0,0,15.6
+184329,0,0,0,15.6
+184330,0,0,0,15.6
+184331,0,70.22419253,0,15.6
+184332,0,0,0,15.6
+184333,0,0,0,15.6
+184334,339550.786,0,0,15.6
+184335,0,74.98417731,0,15.6
+184336,0,0,0,15.6
+184337,0,0,0,15.6
+184338,0,0,0,15.6
+184339,0,74.95046815,0,15.6
+184340,0,0,0,15.6
+184341,0,0,0,15.6
+184342,0,0,0,15.6
+184343,0,73.34775291,0,15.6
+184344,0,0,0,15.6
+184345,0,0,0,15.6
+184346,0,0,0,15.6
+184347,0,71.28019842,0,15.6
+184348,0,0,0,15.6
+184349,0,0,0,15.6
+184350,0,0,0,15.6
+184351,0,68.88562576,0,15.6
+184352,0,0,0,15.6
+184353,0,0,0,15.6
+184354,0,0,0,15.6
+184355,0,67.75506863,0,15.6
+184356,0,0,718858.3907,15.6
+184357,0,0,0,15.6
+184358,0,0,0,15.6
+184359,0,368625.6091,0,15.6
+184360,0,0,0,15.6
+184361,0,0,0,15.6
+184362,0,0,0,15.6
+184363,0,0,0,15.6
+184364,0,340.8531578,0,15.6
+184365,0,0,0,15.6
+184366,0,0,0,15.6
+184367,0,0,0,15.6
+184368,0,0,0,15.6
+184369,0,0,0,15.6
+184370,0,0,0,15.6
+184371,0,0,0,15.6
+184372,339567.9237,0,0,15.6
+184373,0,0,0,15.6
+184374,0,0,0,15.6
+184375,0,0,0,15.6
+184376,0,4.003999105,0,15.6
+184377,0,0,0,15.6
+184378,0,16.74924063,0,15.6
+184379,0,0,0,15.6
+184380,0,0,0,15.6
+184381,0,0,0,15.6
+184382,0,74.17091502,0,15.6
+184383,0,0,0,15.6
+184384,0,0,0,15.6
+184385,0,0,0,15.6
+184386,0,80.8865277,0,15.6
+184387,0,0,0,15.6
+184388,0,0,0,15.6
+184389,0,0,0,15.6
+184390,0,78.855424,0,15.6
+184391,0,0,715300.7156,15.6
+184392,0,0,0,15.6
+184393,0,0,0,15.6
+184394,0,76.03277152,0,15.6
+184395,0,368553.7456,0,15.6
+184396,0,0,0,15.6
+184397,0,0,0,15.6
+184398,0,69.7025438,0,15.6
+184399,0,0,0,15.6
+184400,0,0,0,15.6
+184401,0,0,0,15.6
+184402,0,0,0,15.6
+184403,0,331.6047925,0,15.6
+184404,0,0,0,15.6
+184405,0,0,0,15.6
+184406,0,0,0,15.6
+184407,0,0,0,15.6
+184408,0,0,0,15.6
+184409,0,0,0,15.6
+184410,339561.5464,0,0,15.6
+184411,0,0,0,15.6
+184412,0,0,0,15.6
+184413,0,0,0,15.6
+184414,0,0,0,15.6
+184415,0,0,0,15.6
+184416,0,0,0,15.6
+184417,0,98.57372184,0,15.6
+184418,0,0,0,15.6
+184419,0,0,0,15.6
+184420,0,0,0,15.6
+184421,0,0,0,15.6
+184422,0,61.49875212,0,15.6
+184423,0,0,0,15.6
+184424,0,0,0,15.6
+184425,0,0,0,15.6
+184426,0,0,710570.8279,15.6
+184427,0,0,0,15.6
+184428,0,0,0,15.6
+184429,0,0,0,15.6
+184430,0,0,0,15.6
+184431,0,368635.6953,0,15.6
+184432,0,0,0,15.6
+184433,0,0,0,15.6
+184434,0,0,0,15.6
+184435,0,0,0,15.6
+184436,0,346.2695064,0,15.6
+184437,0,0,0,15.6
+184438,0,0,0,15.6
+184439,0,0,0,15.6
+184440,0,0,0,15.6
+184441,0,0,0,15.6
+184442,0,0,0,15.6
+184443,0,0,0,15.6
+184444,0,0,0,15.6
+184445,0,0,0,15.6
+184446,0,0,0,15.6
+184447,0,0,0,15.6
+184448,339553.8757,4.174749618,0,15.6
+184449,0,0,0,15.6
+184450,0,16.84789294,0,15.6
+184451,0,0,0,15.6
+184452,0,0,0,15.6
+184453,0,0,0,15.6
+184454,0,69.8620703,0,15.6
+184455,0,0,0,15.6
+184456,0,0,0,15.6
+184457,0,0,0,15.6
+184458,0,74.83801373,0,15.6
+184459,0,0,0,15.6
+184460,0,0,0,15.6
+184461,0,0,707368.9351,15.6
+184462,0,71.61902028,0,15.6
+184463,0,0,0,15.6
+184464,0,0,0,15.6
+184465,0,0,0,15.6
+184466,0,68.64730977,0,15.6
+184467,0,368504.948,0,15.6
+184468,0,0,0,15.6
+184469,0,0,0,15.6
+184470,0,0,0,15.6
+184471,0,338.7250775,0,15.6
+184472,0,0,0,15.6
+184473,0,0,0,15.6
+184474,0,0,0,15.6
+184475,0,0,0,15.6
+184476,0,0,0,15.6
+184477,0,0,0,15.6
+184478,0,0,0,15.6
+184479,0,0,0,15.6
+184480,0,0,0,15.6
+184481,0,0,0,15.6
+184482,0,0,0,15.6
+184483,0,0,0,15.6
+184484,0,0,0,15.6
+184485,0,70.06555959,0,15.6
+184486,339568.7361,0,0,15.6
+184487,0,0,0,15.6
+184488,0,0,0,15.6
+184489,0,0,0,15.6
+184490,0,344.6821785,0,15.6
+184491,0,0,0,15.6
+184492,0,0,0,15.6
+184493,0,0,0,15.6
+184494,0,0,0,15.6
+184495,0,0,0,15.6
+184496,0,0,0,15.6
+184497,0,0,704569.5274,15.6
+184498,0,0,0,15.6
+184499,0,0,0,15.6
+184500,0,0,0,15.6
+184501,0,0,0,15.6
+184502,0,2.412531933,0,15.6
+184503,0,368445.7286,0,15.6
+184504,0,109.7388299,0,15.6
+184505,0,0,0,15.6
+184506,0,0,0,15.6
+184507,0,0,0,15.6
+184508,0,0,0,15.6
+184509,0,59.26845063,0,15.6
+184510,0,0,0,15.6
+184511,0,0,0,15.6
+184512,0,0,0,15.6
+184513,0,0,0,15.6
+184514,0,0,0,15.6
+184515,0,0,0,15.6
+184516,0,0,0,15.6
+184517,0,0,0,15.6
+184518,0,0,0,15.6
+184519,0,0,0,15.6
+184520,0,62.53687674,0,15.6
+184521,0,0,0,15.6
+184522,0,0,0,15.6
+184523,339566.4074,0,0,15.6
+184524,0,0,0,15.6
+184525,0,0,0,15.6
+184526,0,0,0,15.6
+184527,0,0,0,15.6
+184528,0,0,0,15.6
+184529,0,78.45287519,0,15.6
+184530,0,0,0,15.6
+184531,0,0,701088.0026,15.6
+184532,0,0,0,15.6
+184533,0,65.13479053,0,15.6
+184534,0,0,0,15.6
+184535,0,0,0,15.6
+184536,0,0,0,15.6
+184537,0,0,0,15.6
+184538,0,349.2345285,0,15.6
+184539,0,368424.5571,0,15.6
+184540,0,0,0,15.6
+184541,0,0,0,15.6
+184542,0,0,0,15.6
+184543,0,0,0,15.6
+184544,0,0,0,15.6
+184545,0,0,0,15.6
+184546,0,0,0,15.6
+184547,0,0,0,15.6
+184548,0,0,0,15.6
+184549,0,0,0,15.6
+184550,0,0,0,15.6
+184551,0,0,0,15.6
+184552,0,7.966187075,0,15.6
+184553,0,0,0,15.6
+184554,0,122.3757165,0,15.6
+184555,0,0,0,15.6
+184556,0,0,0,15.6
+184557,0,0,0,15.6
+184558,339552.9164,0,0,15.6
+184559,0,243.6731692,0,15.6
+184560,0,0,0,17.8
+184561,43066.78599,27189.19858,0,17.8
+184562,1359.492327,0,0,17.8
+184563,16767.84832,0,0,17.8
+184564,17328.57609,0,0,17.8
+184565,15241.13811,3526.704303,699359.6489,17.8
+184566,15479.52608,2379.732409,0,17.8
+184567,15575.53463,1800.188144,0,17.8
+184568,15514.18211,2081.326305,0,17.8
+184569,15530.64464,2189.409864,0,17.8
+184570,15519.03709,2077.40061,0,17.8
+184571,15485.59714,0,0,17.8
+184572,15536.66964,59.26120503,0,17.8
+184573,15511.21155,0,0,17.8
+184574,15454.20447,368414.2949,0,17.8
+184575,15548.4533,0,0,17.8
+184576,15459.02811,0,0,17.8
+184577,15483.62484,0,0,17.8
+184578,15493.61406,0,0,17.8
+184579,15483.647,0,0,17.8
+184580,15499.44429,0,0,17.8
+184581,15468.76342,126.0238195,0,17.8
+184582,15485.63603,0,0,17.8
+184583,15503.30099,0,0,17.8
+184584,15467.95909,0,0,17.8
+184585,15504.34018,7.802708535,0,17.8
+184586,15522.8959,0,0,17.8
+184587,15467.99178,120.6062298,0,17.8
+184588,15510.04767,0,0,17.8
+184589,15522.92882,0,0,17.8
+184590,15517.30942,0,0,17.8
+184591,0,0,0,17.8
+184592,0,236.4738042,0,17.8
+184593,339595.6164,0,0,17.8
+184594,0,5925.135503,0,17.8
+184595,0,90322.11907,0,17.8
+184596,789.8455375,51184.11987,0,17.8
+184597,670.616392,57885.40965,0,17.8
+184598,617.4264368,62234.02543,0,17.8
+184599,700.7209428,63602.76098,696598.9079,17.8
+184600,715.6970182,99062.30898,0,17.8
+184601,730.6233694,65790.63025,0,17.8
+184602,745.500762,81662.89624,0,17.8
+184603,775.1114891,85284.66408,0,17.8
+184604,760.3300202,86006.22778,0,17.8
+184605,804.5349221,85128.21819,0,17.8
+184606,789.8464929,86665.31007,0,17.8
+184607,819.1780981,87141.21435,0,17.8
+184608,833.7762256,88041.81041,0,17.8
+184609,833.7763367,456823.9015,0,17.8
+184610,848.3301085,89477.36229,0,17.8
+184611,862.8400864,89420.58913,0,17.8
+184612,877.3068178,92454.83266,0,17.8
+184613,877.3069434,92910.82973,0,17.8
+184614,891.7309626,93015.39118,0,17.8
+184615,906.1127774,94241.14624,0,17.8
+184616,0,94537.27511,0,17.8
+184617,0,95242.39295,0,17.8
+184618,0,96006.83201,0,17.8
+184619,0,96316.00353,0,17.8
+184620,0,97153.14613,0,20
+184621,247192.0666,1160134.248,22.57300781,20
+184622,114329.8487,6839.046958,0,20
+184623,175538.1495,9536.938832,0,20
+184624,184764.5946,189358.5431,0,20
+184625,172469.2581,153143.9697,0,20
+184626,171469.802,150181.5434,3937.375165,20
+184627,172898.9523,145470.2605,20391.82812,20
+184628,173457.526,148089.0709,11404.56531,20
+184629,174587.8237,148185.4016,13785.2177,20
+184630,189948.5061,147733.1039,14389.18763,20
+184631,180167.5569,147148.8484,14761.33989,20
+184632,183215.5363,146485.6214,17659.4605,20
+184633,183248.5962,146207.9484,20716.36651,20
+184634,183580.6498,145527.5473,18545.28245,20
+184635,183989.1519,145093.6679,19959.55198,20
+184636,184228.0805,144502.2845,20627.54277,20
+184637,184226.3409,144553.3184,21290.90238,20
+184638,184392.2156,144281.8134,22015.76374,20
+184639,184959.874,143338.3262,22225.12302,20
+184640,185190.3327,142839.3753,22492.51875,20
+184641,185010.0772,143092.0796,23107.14177,20
+184642,185710.8664,142155.0913,23591.34165,20
+184643,185771.247,141997.1121,23654.38839,20
+184644,185956.6621,141487.5779,24228.48597,20
+184645,186120.8349,141359.1905,24566.66249,20
+184646,186679.1244,140979.1132,24948.41765,20
+184647,186478.2017,140335.6925,25210.98177,20
+184648,187117.2645,140506.8383,25913.33472,20
+184649,187077.9205,140059.8846,25847.08905,20
+184650,187398.0056,139572.2081,26372.14612,20
+184651,187371.3509,139583.5971,26859.75224,20
+184652,187921.644,139582.9469,27042.56312,20
+184653,187836.429,139046.5266,27397.68281,20
+184654,187901.645,138567.2356,27748.84897,20
+184655,188035.5508,138474.1407,28176.00941,20
+184656,188192.8264,138456.9346,28482.53484,20
+184657,188694.2322,137854.8105,28768.5704,20
+184658,188279.2351,138016.1316,29233.11866,20
+184659,188848.647,137201.7752,29329.02853,20
+184660,188999.1463,137569.2684,29860.85842,20
+184661,188747.6902,137004.9064,30137.0342,20
+184662,189643.9334,136684.2296,30496.50932,20
+184663,189736.0232,136749.5944,30871.09395,20
+184664,190347.7021,136011.9648,30995.5586,20
+184665,190279.3906,136470.2517,31322.42936,20
+184666,190831.7911,135667.237,32033.89372,20
+184667,190936.6653,135753.8845,27066.10088,20
+184668,190801.1038,135226.7885,26654.82851,20
+184669,191433.2078,135292.9986,26491.18034,20
+184670,191061.8741,134961.5159,26493.8358,20
+184671,191545.4188,134477.4854,26335.3256,20
+184672,191607.2717,134684.4117,26365.01445,20
+184673,192010.0013,134074.0924,25990.29923,20
+184674,191589.4647,134051.0642,26231.46721,20
+184675,192240.1747,133712.8485,25830.24391,20
+184676,192183.6962,133814.6479,25986.70621,20
+184677,192242.844,133095.067,25988.19798,20
+184678,192602.7405,133380.6616,25668.6737,20
+184679,192663.9045,132730.9743,25741.47828,20
+184680,192676.743,132723.3765,25572.72123,21
+184681,182464.4171,126135.6016,20833.51016,21
+184682,180694.2738,124915.2083,20000.68803,21
+184683,180422.4941,535915.2282,19948.28148,21
+184684,180278.323,124928.3836,19533.18895,21
+184685,179429.7055,123597.5051,19521.43973,21
+184686,179637.1785,124177.9413,19298.13314,21
+184687,179017.2419,123387.4127,18981.90077,21
+184688,178636.1514,123378.9959,19068.72852,21
+184689,178539.6441,123083.3743,18668.60805,21
+184690,177840.856,123216.0303,18717.72599,21
+184691,177782.3356,124104.0046,18187.95756,21
+184692,177559.3492,123519.4719,18408.51017,21
+184693,177193.8816,123182.7698,17967.47906,21
+184694,176404.8882,123570.9821,18118.3212,21
+184695,176716.2437,123307.8548,17947.43559,21
+184696,176359.0899,123344.4152,17681.36587,21
+184697,175671.9645,123120.4505,17900.8976,21
+184698,175554.4041,123083.0269,17573.91206,21
+184699,175235.1283,122905.3383,17581.63879,21
+184700,174937.2392,122780.5681,17467.46038,21
+184701,174526.0252,122793.8053,17373.86039,21
+184702,174324.108,122308.5668,17358.56213,21
+184703,174013.6593,122732.946,17046.06768,21
+184704,173400.5003,121989.9088,17127.65268,21
+184705,173375.1622,122324.5874,16834.30109,21
+184706,173204.6279,121875.697,16903.65721,21
+184707,172465.0514,121623.3434,16708.80706,21
+184708,172382.295,121637.3283,16566.62517,21
+184709,171879.8438,121480.8771,16457.97972,21
+184710,171954.5314,121336.227,16347.23389,21
+184711,171222.5975,120920.8468,16100.33836,21
+184712,170997.2431,120908.9838,16060.64065,21
+184713,170329.5939,121216.2412,15446.60609,21
+184714,170321.4424,120248.9518,15311.23757,21
+184715,169616.4065,121038.0518,15261.16659,21
+184716,169484.6829,120279.4245,14627.67326,21
+184717,168923.1288,120514.7923,14600.22238,21
+184718,168390.4366,120270.4808,13480.84164,21
+184719,168360.2277,120171.2146,13394.70467,21
+184720,168294.3654,120419.1497,13546.21072,21
+184721,167950.2025,119420.902,13256.26671,21
+184722,167643.8904,120248.2378,13493.69259,21
+184723,167325.3159,119452.8815,13320.36859,21
+184724,166689.4419,119669.5026,13418.2937,21
+184725,166504.2167,119688.9702,13308.63322,21
+184726,165708.2956,119110.0141,13348.48962,21
+184727,165929.4543,119205.5932,13242.05789,21
+184728,164887.6198,119434.1703,13336.65917,21
+184729,164677.4816,118116.9611,13271.35669,21
+184730,164533.266,118529.1847,13142.30384,21
+184731,163626.2181,117907.7204,13265.43522,21
+184732,163502.2803,118048.1764,13205.34946,21
+184733,163063.5792,117974.7996,13033.48293,21
+184734,162445.9145,117537.0425,13170.80591,21
+184735,162055.5234,117556.95,13098.4162,21
+184736,161975.4808,117367.8966,13097.34439,21
+184737,160987.1533,117445.7372,13055.11045,21
+184738,160984.5298,117207.7171,12948.21419,21
+184739,160447.2732,117107.0482,13062.83031,21
+184740,159900.1653,117232.4582,13067.15692,21
+184741,81050.49117,67264.44065,673.2030902,21
+184742,76647.26554,64629.04079,583.0367357,21
+184743,75269.20207,64307.01911,522.2026176,21
+184744,73714.74666,63817.4857,522.2086782,21
+184745,72580.94747,62798.24775,491.5578703,21
+184746,71608.03855,62504.73668,476.1726245,21
+184747,69989.58,62445.69692,429.7446689,21
+184748,69462.77825,61550.6811,445.2711527,21
+184749,68118.52598,61386.07318,398.5677602,21
+184750,67122.34818,60836.60618,398.5712711,21
+184751,66156.56315,60637.15516,367.1926021,21
+184752,65116.66999,60193.19321,351.42667,21
+184753,63998.01002,59934.09195,335.6061352,21
+184754,63257.01325,59142.35266,319.7289749,21
+184755,61980.09884,59449.30702,287.7937541,21
+184756,61238.29764,58387.12567,287.7955693,21
+184757,60170.88995,57822.24226,255.6043836,21
+184758,59137.97426,57652.35284,255.605812,21
+184759,58395.00923,57296.71296,223.1326911,21
+184760,57155.40425,56963.63504,206.7808922,21
+184761,56613.24508,56559.42793,206.7818228,21
+184762,55259.98301,56382.41199,173.8198472,21
+184763,54426.29585,55878.44633,157.1975069,21
+184764,53716.37908,55379.44942,140.469765,21
+184765,52605.48589,55390.96539,123.6261358,21
+184766,51531.37551,54848.92232,123.6264659,21
+184767,51118.59384,54462.60034,72.24468145,21
+184768,49767.89935,54070.09987,89.53431918,21
+184769,48967.41268,53941.80648,54.75077199,21
+184770,48156.08756,53228.48203,36.99625628,21
+184771,47039.40043,53025.17711,27.99162593,21
+184772,46503.30028,52517.37517,0,21
+184773,45313.69733,52085.97334,0,21
+184774,44583.9967,51816.70725,0,21
+184775,43593.83415,51222.16936,0,21
+184776,43247.04072,50871.24734,0,21
+184777,42182.24913,50391.34935,0,21
+184778,41720.22282,50122.13456,0,21
+184779,41114.79852,49692.59729,0,21
+184780,40584.0182,49055.37594,0,21
+184781,40201.64357,48925.93073,0,21
+184782,39718.14004,48232.51162,0,21
+184783,39444.53572,48206.70211,0,21
+184784,38967.68735,47684.84914,0,21
+184785,38331.75332,47091.49146,0,21
+184786,38025.16888,47009.47269,0,21
+184787,37069.9837,46219.70183,0,21
+184788,36328.06258,46219.70114,0,21
+184789,35792.14215,45786.32368,0,21
+184790,35397.464,45402.11255,0,21
+184791,35022.92114,44920.00525,0,21
+184792,34522.43177,44763.26482,0,21
+184793,34065.38679,44299.09728,0,21
+184794,33461.59983,44215.385,0,21
+184795,33304.51069,43548.17133,0,21
+184796,32555.99823,43501.97891,0,21
+184797,32442.62651,43046.74978,0,21
+184798,31703.15104,42900.28893,0,21
+184799,31427.95659,42448.36225,0,21
+184800,31055.86146,42485.57124,0,21
+184801,30538.70726,42155.25386,0,21
+184802,30234.28477,41745.81321,0,21
+184803,29711.23324,41839.66379,0,21
+184804,29275.09027,40940.90047,0,21
+184805,29009.39254,40988.52027,0,21
+184806,28587.96737,40554.64875,0,21
+184807,28031.3407,40268.95794,0,21
+184808,28019.30686,39896.72145,0,21
+184809,27112.01821,39752.74742,0,21
+184810,27165.42178,39081.79071,0,21
+184811,26517.75776,39042.19348,0,21
+184812,26156.73595,38832.18976,0,21
+184813,25823.01295,38080.61509,0,21
+184814,25459.47621,38279.9083,0,21
+184815,25037.37045,37316.03698,0,21
+184816,24663.54614,37523.42204,0,21
+184817,24250.16215,36901.08034,0,21
+184818,23943.84977,36357.04978,0,21
+184819,23332.26493,36505.08839,0,21
+184820,23236.85127,35596.98131,0,21
+184821,21837.61408,35571.47317,0,21
+184822,21189.84399,35241.26548,0,21
+184823,20837.52706,34629.42643,0,21
+184824,20334.47815,34304.92425,0,21
+184825,20019.76711,33847.59996,0,21
+184826,19485.69168,33446.22643,0,21
+184827,19151.66654,32995.91627,0,21
+184828,18834.01242,32635.07514,0,21
+184829,18322.69462,31936.6015,0,21
+184830,17863.69785,31921.0617,0,21
+184831,17550.63177,31209.30534,0,21
+184832,16947.45612,30614.13193,0,21
+184833,16542.23919,30302.56382,0,21
+184834,16141.14871,29674.92984,0,21
+184835,15524.44309,29287.09246,0,21
+184836,15139.46804,28406.91694,0,21
+184837,14783.53977,28338.3443,0,21
+184838,14107.06228,27429.18415,0,21
+184839,13818.54566,27102.86608,0,21
+184840,13177.04693,26226.25711,0,21
+184841,12835.37143,25684.25237,0,21
+184842,12426.51558,25088.54314,0,21
+184843,12222.73945,24685.26659,0,21
+184844,12095.02046,23509.89588,0,21
+184845,11814.99241,23196.41532,0,21
+184846,11475.54339,22461.64757,0,21
+184847,11358.0826,21461.32589,0,21
+184848,11075.17744,20933.30917,0,21
+184849,10906.96433,20381.99669,0,21
+184850,10537.99488,19126.64629,0,21
+184851,10402.21511,18796.88162,0,21
+184852,10182.39432,17625.97757,0,21
+184853,9859.891275,16906.47703,0,21
+184854,9647.667774,16007.38772,0,21
+184855,9423.671461,15814.4907,0,21
+184856,9108.721499,15583.82169,0,21
+184857,8999.290121,15509.4108,0,21
+184858,8655.388906,15143.14578,0,21
+184859,8415.327091,15205.0008,0,21
+184860,8236.866742,14809.10298,0,21
+184861,7377.677531,14311.40214,0,21
+184862,7246.066989,14145.5548,0,21
+184863,6904.170779,13669.92965,0,21
+184864,6541.860543,13566.17996,0,21
+184865,6308.764916,13324.11464,0,21
+184866,6059.076077,12914.36891,0,21
+184867,5716.15413,12807.28585,0,21
+184868,5462.48619,12587.60096,0,21
+184869,5225.96075,12310.31908,0,21
+184870,4745.202548,11917.37871,0,21
+184871,4816.64634,11803.43454,0,21
+184872,4338.118541,11433.02447,0,21
+184873,4137.920044,11266.49717,0,21
+184874,3805.742768,10930.54386,0,21
+184875,3721.490567,10902.38005,0,21
+184876,3252.910898,10617.14196,0,21
+184877,3191.135486,10631.28724,0,21
+184878,2877.595183,10330.68139,0,21
+184879,2704.461666,10302.21629,0,21
+184880,2529.645964,10057.21755,0,21
+184881,2188.674352,10014.40421,0,21
+184882,2025.912036,9739.661105,0,21
+184883,1830.110504,9725.312546,0,21
+184884,1550.54815,9565.876579,0,21
+184885,1497.356494,9303.642249,0,21
+184886,1200.885821,9274.759388,0,21
+184887,1174.128423,9114.184625,0,21
+184888,1133.785355,8850.065641,0,21
+184889,1120.281609,8820.965247,0,21
+184890,1106.749406,8688.420098,0,21
+184891,1079.598567,8511.68803,0,21
+184892,1079.598631,8230.325718,0,21
+184893,1065.979542,8363.8324,0,21
+184894,1038.652563,7932.720065,0,21
+184895,1038.652621,8052.197899,0,21
+184896,1024.944233,7768.570449,0,21
+184897,1011.20551,7603.944211,0,21
+184898,997.4361553,7589.065959,0,21
+184899,983.6358635,7303.137894,0,21
+184900,969.8043215,7288.19927,0,21
+184901,969.8043689,7000.692568,0,21
+184902,942.0461883,6970.661759,0,21
+184903,942.0462321,6833.806969,0,21
+184904,928.1189667,6651.270307,0,21
+184905,914.1591051,6528.730724,0,21
+184906,900.1662854,6345.17683,0,21
+184907,900.1663236,6191.44655,0,21
+184908,886.1401713,6191.448576,0,21
+184909,872.0803035,5882.571217,0,21
+184910,872.0803381,5867.251568,0,21
+184911,843.857821,5571.739048,0,21
+184912,843.8578525,5681.242141,0,21
+184913,843.8578837,5258.854377,0,21
+184914,829.6944328,5369.189543,0,21
+184915,815.4955987,5086.118837,0,21
+184916,801.2609286,4897.124097,0,21
+184917,815.4956544,4912.723431,0,21
+184918,772.6821879,4579.583603,0,21
+184919,801.2610075,4722.97718,0,21
+184920,758.337157,4259.61574,0,21
+184921,815.495686,4722.804712,0,21
+184922,786.9899683,4563.880798,0,21
+184923,786.9899547,4563.883036,0,21
+184924,786.9899408,4388.389724,0,21
+184925,772.682137,4548.137356,0,21
+184926,772.6821231,4228.016246,0,21
+184927,772.6821089,4388.39096,0,21
+184928,758.3370145,4212.155377,0,21
+184929,758.3370003,4066.994475,0,21
+184930,758.3369858,4196.254822,0,21
+184931,758.3369711,4051.093761,0,21
+184932,729.532814,3889.358298,0,21
+184933,758.3369405,4019.171516,0,21
+184934,743.9540337,3726.924306,0,21
+184935,729.5327704,3857.355404,0,21
+184936,743.9540024,3710.902412,0,21
+184937,729.5327398,3547.698613,0,21
+184938,729.532724,3678.732988,0,21
+184939,743.9539531,3531.593089,0,21
+184940,743.953936,3367.587032,0,21
+184941,758.336805,3367.587303,0,21
+184942,729.5326577,3335.160172,0,21
+184943,758.3367676,3351.395929,0,21
+184944,729.5326227,3020.867187,0,21
+184945,758.3367289,3335.160886,0,21
+184946,729.5325863,2854.304015,0,21
+184947,758.3366888,3153.944492,0,21
+184948,729.5325487,2837.821661,0,21
+184949,758.3366472,2837.863122,0,21
+184950,729.5325097,2821.542327,0,21
+184951,743.9537259,2653.885143,0,21
+184952,715.0723126,2670.368826,0,21
+184953,715.0722929,2620.828505,0,21
+184954,700.5725522,2501.83585,0,21
+184955,671.4522136,2452.148066,0,21
+184956,686.0327312,2468.760446,0,21
+184957,656.8302197,2299.066647,0,21
+184958,642.1661316,2282.404037,0,21
+184959,627.4592053,2282.348353,0,21
+184960,627.459188,2111.505065,0,21
+184961,597.9137638,2111.513285,0,21
+184962,568.18738,1939.364487,0,21
+184963,553.2540974,2077.914825,0,21
+184964,523.2425086,1765.870801,0,21
+184965,523.2424959,1922.548758,0,21
+184966,493.0303746,1732.061513,0,21
+184967,493.0303631,1732.061565,0,21
+184968,462.6082079,1573.921581,0,21
+184969,447.3150587,1715.071111,0,21
+184970,447.3150489,1397.13159,0,21
+184971,416.5572316,1522.772264,0,21
+184972,401.0892612,1380.082226,0,21
+184973,385.5595237,1362.972392,0,21
+184974,354.306672,1345.800613,0,21
+184975,354.3066657,1184.070874,0,21
+184976,338.5790657,1166.835698,0,21
+184977,306.9087456,1002.782303,0,21
+184978,290.9601352,1149.534719,0,21
+184979,274.9314415,985.4815312,0,21
+184980,258.8188459,801.1015181,0,21
+184981,612.7083715,5084.403618,0,21
+184982,597.9134945,4926.365407,0,21
+184983,583.0733855,4784.575148,0,21
+184984,583.0733916,4751.970429,0,21
+184985,538.272654,4768.295231,0,21
+184986,538.2726577,4593.293258,0,21
+184987,523.2423672,4593.293193,0,21
+184988,493.0302764,4434.035419,0,21
+184989,477.8461066,4434.035505,0,21
+184990,462.6081471,4257.665623,0,21
+184991,447.3150138,4113.704315,0,21
+184992,431.9652277,4257.665597,0,21
+184993,401.0892453,4080.530133,0,21
+184994,385.5595175,3790.820405,0,21
+184995,369.9660423,4063.867573,0,21
+184996,354.3066746,3774.157448,0,21
+184997,338.5790804,3594.881879,0,21
+184998,306.9087634,3757.442516,0,21
+184999,290.9601559,3431.608222,0,21
+185000,274.9314643,3578.060229,0,21
+185001,258.81887,3414.73167,0,21
+185002,226.3242456,3250.660033,0,21
+185003,209.9318094,3250.659814,0,21
+185004,201.6966543,3085.812578,0,21
+185005,176.8244473,3068.76289,0,21
+185006,143.2298867,3068.762887,0,21
+185007,143.2298866,2753.642694,0,21
+185008,109.0512182,2903.043459,0,21
+185009,91.69757281,2719.235216,0,21
+185010,74.13086239,2736.470308,0,21
+185011,56.30786137,2400.574016,0,21
+185012,38.15880186,2701.934512,0,21
+185013,38.15880182,2231.137627,0,21
+185014,9.970946549,2534.329534,0,21
+185015,0,2060.618446,0,21
+185016,0,2348.25979,0,21
+185017,0,2043.109469,0,21
+185018,0,2025.526945,0,21
+185019,0,2025.526782,0,21
+185020,0,1853.692234,0,21
+185021,0,1835.953854,0,21
+185022,0,1680.587022,0,21
+185023,0,1662.766282,0,21
+185024,0,1506.088578,0,21
+185025,0,1644.859628,0,21
+185026,0,1312.046011,0,21
+185027,0,1321.05539,0,21
+185028,0,1293.955861,0,21
+185029,0,1293.955748,0,21
+185030,0,1035.364897,0,21
+185031,0,1115.96746,0,21
+185032,0,935.9453851,0,21
+185033,0,926.758099,0,21
+185034,0,917.5420794,0,21
+185035,0,577.2312391,0,21
+185036,0,899.0200529,0,21
+185037,0,549.3103121,0,21
+185038,0,549.3103167,0,21
+185039,0,464.3567722,0,21
+185040,0,340.3965365,0,21
+185041,0,0,0,21
+185042,0,0,0,21
+185043,0,0,0,21
+185044,0,0,0,21
+185045,0,0,0,21
+185046,0,0,0,21
+185047,0,0,0,21
+185048,0,0,0,21
+185049,0,0,0,21
+185050,0,0,0,21
+185051,0,0,0,21
+185052,0,0,0,21
+185053,0,0,0,21
+185054,0,0,0,21
+185055,0,0,0,21
+185056,0,0,0,21
+185057,0,0,0,21
+185058,0,0,0,21
+185059,0,0,0,21
+185060,0,0,0,21
+185061,0,0,0,21
+185062,0,0,0,21
+185063,0,0,0,21
+185064,0,0,0,21
+185065,0,0,0,21
+185066,0,0,0,21
+185067,0,0,0,21
+185068,0,0,0,21
+185069,0,0,0,21
+185070,0,0,0,21
+185071,0,0,0,21
+185072,0,0,0,21
+185073,0,0,0,21
+185074,0,0,0,21
+185075,0,0,0,21
+185076,0,0,0,21
+185077,0,0,0,21
+185078,0,0,0,21
+185079,0,0,0,21
+185080,0,0,0,21
+185081,0,0,0,21
+185082,0,0,0,21
+185083,0,0,0,21
+185084,0,0,0,21
+185085,0,0,0,21
+185086,0,0,0,21
+185087,0,0,0,21
+185088,0,0,0,21
+185089,0,0,0,21
+185090,0,0,0,21
+185091,0,0,0,21
+185092,0,0,0,21
+185093,0,0,0,21
+185094,0,0,0,21
+185095,0,0,0,21
+185096,0,0,0,21
+185097,0,0,0,21
+185098,0,0,0,21
+185099,0,0,0,21
+185100,0,0,0,21
+185101,0,0,0,21
+185102,0,0,0,21
+185103,0,0,0,21
+185104,0,0,0,21
+185105,0,0,0,21
+185106,0,0,0,21
+185107,0,0,0,21
+185108,0,0,0,21
+185109,0,0,0,21
+185110,0,0,0,21
+185111,0,0,0,21
+185112,0,0,0,21
+185113,0,0,0,21
+185114,0,0,0,21
+185115,0,0,0,21
+185116,0,0,0,21
+185117,0,0,0,21
+185118,0,0,0,21
+185119,0,0,0,21
+185120,0,0,0,21
+185121,0,0,0,21
+185122,0,0,0,21
+185123,0,0,0,21
+185124,0,0,0,21
+185125,0,0,0,21
+185126,0,0,0,21
+185127,0,0,0,21
+185128,0,0,0,21
+185129,0,0,0,21
+185130,0,0,0,21
+185131,0,0,0,21
+185132,0,0,0,21
+185133,0,0,0,21
+185134,0,0,0,21
+185135,0,0,0,21
+185136,0,0,0,21
+185137,0,0,0,21
+185138,0,0,0,21
+185139,0,0,0,21
+185140,0,0,0,21
+185141,0,0,0,21
+185142,0,0,0,21
+185143,0,0,0,21
+185144,0,0,0,21
+185145,0,0,0,21
+185146,0,0,0,21
+185147,0,0,0,21
+185148,0,0,0,21
+185149,0,0,0,21
+185150,0,0,0,21
+185151,0,0,0,21
+185152,0,0,0,21
+185153,0,0,0,21
+185154,0,0,0,21
+185155,0,0,0,21
+185156,0,0,0,21
+185157,0,0,0,21
+185158,0,0,0,21
+185159,0,0,0,21
+185160,0,0,0,21
+185161,0,0,0,21
+185162,0,0,0,21
+185163,0,0,0,21
+185164,0,0,0,21
+185165,0,0,0,21
+185166,0,0,0,21
+185167,0,0,0,21
+185168,0,0,0,21
+185169,0,0,0,21
+185170,0,0,0,21
+185171,0,0,0,21
+185172,0,0,0,21
+185173,0,0,0,21
+185174,0,0,0,21
+185175,0,0,0,21
+185176,0,0,0,21
+185177,0,0,0,21
+185178,0,0,0,21
+185179,0,0,0,21
+185180,0,0,0,21
+185181,0,0,0,21
+185182,0,0,0,21
+185183,0,0,0,21
+185184,0,0,0,21
+185185,0,0,0,21
+185186,0,0,0,21
+185187,0,0,0,21
+185188,0,0,0,21
+185189,0,0,0,21
+185190,0,0,0,21
+185191,0,0,0,21
+185192,0,0,0,21
+185193,0,0,0,21
+185194,0,0,0,21
+185195,0,0,0,21
+185196,0,0,0,21
+185197,0,0,0,21
+185198,0,0,0,21
+185199,0,0,0,21
+185200,0,0,0,21
+185201,0,0,0,21
+185202,0,0,0,21
+185203,0,0,0,21
+185204,0,0,0,21
+185205,0,0,0,21
+185206,0,0,0,21
+185207,0,0,0,21
+185208,0,0,0,21
+185209,0,0,0,21
+185210,0,0,0,21
+185211,0,0,0,21
+185212,0,0,0,21
+185213,0,0,0,21
+185214,0,0,0,21
+185215,0,0,0,21
+185216,0,0,0,21
+185217,0,0,0,21
+185218,0,0,0,21
+185219,0,0,0,21
+185220,0,0,0,21
+185221,0,0,0,21
+185222,0,0,0,21
+185223,0,0,0,21
+185224,0,0,0,21
+185225,0,0,0,21
+185226,0,0,0,21
+185227,0,0,0,21
+185228,0,0,0,21
+185229,0,0,0,21
+185230,0,0,0,21
+185231,0,0,0,21
+185232,0,0,0,21
+185233,0,0,0,21
+185234,0,0,0,21
+185235,0,0,0,21
+185236,0,0,0,21
+185237,0,0,0,21
+185238,0,0,0,21
+185239,0,0,0,21
+185240,0,0,0,21
+185241,0,0,0,21
+185242,0,0,0,21
+185243,0,0,0,21
+185244,0,0,0,21
+185245,0,0,0,21
+185246,0,0,0,21
+185247,0,0,0,21
+185248,0,0,0,21
+185249,0,0,0,21
+185250,0,0,0,21
+185251,0,0,0,21
+185252,0,0,0,21
+185253,0,0,0,21
+185254,0,0,0,21
+185255,0,0,0,21
+185256,0,0,0,21
+185257,0,0,0,21
+185258,0,0,0,21
+185259,0,0,0,21
+185260,0,0,0,21
+185261,0,0,0,21
+185262,0,0,0,21
+185263,0,0,0,21
+185264,0,0,0,21
+185265,0,0,0,21
+185266,0,0,0,21
+185267,0,0,0,21
+185268,0,0,0,21
+185269,0,0,0,21
+185270,0,0,0,21
+185271,0,0,0,21
+185272,0,0,0,21
+185273,0,0,0,21
+185274,0,0,0,21
+185275,0,0,0,21
+185276,0,0,0,21
+185277,0,0,0,21
+185278,0,0,0,21
+185279,0,0,0,21
+185280,0,0,0,21
+185281,0,0,0,21
+185282,0,0,0,21
+185283,0,0,0,21
+185284,0,0,0,21
+185285,0,0,0,21
+185286,0,0,0,21
+185287,0,0,0,21
+185288,0,0,0,21
+185289,0,0,0,21
+185290,0,0,0,21
+185291,0,0,0,21
+185292,0,0,0,21
+185293,0,0,0,21
+185294,0,0,0,21
+185295,0,0,0,21
+185296,0,0,0,21
+185297,0,0,0,21
+185298,0,0,0,21
+185299,0,0,0,21
+185300,0,0,0,21
+185301,0,0,0,21
+185302,0,0,0,21
+185303,0,0,0,21
+185304,0,0,0,21
+185305,0,0,0,21
+185306,0,0,0,21
+185307,0,0,0,21
+185308,0,0,0,21
+185309,0,0,0,21
+185310,0,0,0,21
+185311,0,0,0,21
+185312,0,0,0,21
+185313,0,0,0,21
+185314,0,0,0,21
+185315,0,0,0,21
+185316,0,0,0,21
+185317,0,0,0,21
+185318,0,0,0,21
+185319,0,0,0,21
+185320,0,0,0,21
+185321,0,0,0,21
+185322,0,0,0,21
+185323,0,0,0,21
+185324,0,0,0,21
+185325,0,0,0,21
+185326,0,0,0,21
+185327,0,0,0,21
+185328,0,0,0,21
+185329,0,0,0,21
+185330,0,0,0,21
+185331,0,0,0,21
+185332,0,0,0,21
+185333,0,0,0,21
+185334,0,0,0,21
+185335,0,0,0,21
+185336,0,0,0,21
+185337,0,0,0,21
+185338,0,0,0,21
+185339,0,0,0,21
+185340,0,0,0,21
+185341,0,0,0,21
+185342,3390.862055,0,0,21
+185343,4909.243144,0,0,21
+185344,3834.290993,0,0,21
+185345,4328.442658,0,0,21
+185346,4891.903724,0,0,21
+185347,5021.379526,0,0,21
+185348,5299.270722,0,0,21
+185349,5403.557221,0,0,21
+185350,5651.369258,0,0,21
+185351,6367.34155,0,0,21
+185352,7736.605935,0,0,21
+185353,7464.702893,0,0,21
+185354,8015.071706,0,0,21
+185355,8258.149774,0,0,21
+185356,8702.76829,0,0,21
+185357,8942.157396,0,0,21
+185358,9338.519435,0,0,21
+185359,9730.637889,0,0,21
+185360,9887.649527,0,0,21
+185361,10373.02372,0,0,21
+185362,10417.61464,0,0,21
+185363,11010.49118,0,0,21
+185364,11183.84918,0,0,21
+185365,11422.95153,0,0,21
+185366,11808.28526,0,0,21
+185367,12082.11239,0,0,21
+185368,12311.39048,0,0,21
+185369,12598.6687,0,0,21
+185370,13053.68381,0,0,21
+185371,13112.00175,0,0,21
+185372,13583.86112,0,0,21
+185373,13950.44256,0,0,21
+185374,13984.64014,0,0,21
+185375,14699.75525,0,0,21
+185376,14621.06778,0,0,21
+185377,15202.13123,0,0,21
+185378,15475.00177,0,0,21
+185379,15808.19706,0,0,21
+185380,15987.40261,0,0,21
+185381,16538.9707,0,0,21
+185382,16589.13553,0,0,21
+185383,17054.50334,0,0,21
+185384,17300.3699,0,0,21
+185385,17664.39194,0,0,21
+185386,18034.68141,0,0,21
+185387,18264.4725,0,0,21
+185388,18639.33122,0,0,21
+185389,18847.59786,0,0,21
+185390,19261.53197,0,0,21
+185391,19551.2942,0,0,21
+185392,19853.11171,0,0,21
+185393,20291.68837,0,0,21
+185394,20318.83466,0,0,21
+185395,20871.23241,0,0,21
+185396,21244.66478,0,0,21
+185397,21244.66682,0,0,21
+185398,21744.98498,0,0,21
+185399,22136.63612,0,0,21
+185400,22337.46489,0,0,21
+185401,22633.42441,0,0,21
+185402,22887.05193,0,0,21
+185403,23348.6074,0,0,21
+185404,23468.05098,0,0,21
+185405,23912.42221,0,0,21
+185406,24046.48286,0,0,21
+185407,24706.78123,0,0,21
+185408,24745.97632,0,0,21
+185409,24963.48052,0,0,21
+185410,25501.51908,0,0,21
+185411,25665.45516,0,0,21
+185412,25873.45723,0,0,21
+185413,26410.51021,0,0,21
+185414,26446.18947,0,0,21
+185415,26981.235,0,0,21
+185416,27127.43444,0,0,21
+185417,27434.01,0,0,21
+185418,27907.27909,0,0,21
+185419,28102.28844,0,0,21
+185420,28140.43147,0,0,21
+185421,28779.60366,0,0,21
+185422,29011.32816,0,0,21
+185423,29238.86857,0,0,21
+185424,29658.87541,0,0,21
+185425,29696.55963,0,0,21
+185426,30302.97096,0,0,21
+185427,30357.28977,0,0,21
+185428,30769.57115,0,0,21
+185429,30986.0963,0,0,21
+185430,31222.34612,0,0,21
+185431,31438.02629,0,0,21
+185432,31950.34474,0,0,21
+185433,31888.46361,0,0,21
+185434,32184.91083,0,0,21
+185435,32423.8104,0,0,21
+185436,32784.00699,0,0,21
+185437,33036.16305,0,0,21
+185438,33048.49238,0,0,21
+185439,33466.73597,0,0,21
+185440,33676.1688,0,0,21
+185441,33762.81988,0,0,21
+185442,34135.11587,0,0,21
+185443,34387.46166,0,0,21
+185444,34396.43573,0,0,21
+185445,34834.84068,0,0,21
+185446,34855.88202,0,0,21
+185447,35256.60262,0,0,21
+185448,35310.44023,0,0,21
+185449,35713.13116,0,0,21
+185450,35742.65107,0,0,21
+185451,36063.75806,0,0,21
+185452,36185.5705,0,0,21
+185453,36597.93292,0,0,21
+185454,36442.33586,0,0,21
+185455,36823.32574,0,0,21
+185456,37269.74934,0,0,21
+185457,37067.26317,0,0,21
+185458,37506.08978,1361.700109,0,21
+185459,37636.68991,1036.580517,0,21
+185460,37724.88852,1522.138247,0,21
+185461,39036.24166,1996.415302,0,21
+185462,39429.21328,2461.760962,0,21
+185463,39665.27123,2461.759259,0,21
+185464,39696.90046,3070.801645,0,21
+185465,40268.10228,2919.649385,0,21
+185466,40127.85905,3371.069165,0,21
+185467,40534.27227,3520.234924,0,21
+185468,40550.52805,3668.785512,0,21
+185469,41140.58828,3964.119636,0,21
+185470,40897.45002,4110.939155,0,21
+185471,41187.91142,4402.963386,0,21
+185472,41673.15679,4548.196909,0,21
+185473,41630.4842,4837.172023,0,21
+185474,41839.317,4837.172192,0,21
+185475,42036.42663,5267.077955,0,21
+185476,42368.92365,5409.472817,0,21
+185477,42441.34529,5605.544033,0,21
+185478,42684.21854,5895.41622,0,21
+185479,43206.27114,6259.561664,0,21
+185480,43558.90277,6317.506151,0,21
+185481,43900.23104,6476.413947,0,21
+185482,43783.75097,6931.414593,0,21
+185483,44505.23474,6950.066365,0,21
+185484,44400.60588,7254.200266,0,21
+185485,44619.7636,7419.385747,0,21
+185486,45250.91327,7574.913743,0,21
+185487,44756.45349,8020.89428,0,21
+185488,45569.89517,7902.649566,0,21
+185489,45403.56883,8463.50979,0,21
+185490,45694.67758,8363.868585,0,21
+185491,45916.73918,8795.132901,0,21
+185492,46149.47914,8803.935521,0,21
+185493,46017.90469,9124.637644,0,21
+185494,46628.50604,9391.646101,0,21
+185495,46518.38041,9426.298448,0,21
+185496,46836.7524,9709.332831,0,21
+185497,46982.70429,10008.24344,0,21
+185498,47199.67153,10025.30562,0,21
+185499,47088.75202,10437.07136,0,21
+185500,47695.84175,10470.92158,0,21
+185501,47540.62738,10749.53024,0,21
+185502,47777.9515,10913.53514,0,21
+185503,48023.96574,11190.34495,0,21
+185504,48053.77148,11206.99027,0,21
+185505,48288.88734,11499.17979,0,21
+185506,48547.17955,11773.67108,0,21
+185507,48563.40315,11806.53817,0,21
+185508,48789.82666,12191.58399,0,21
+185509,48681.69296,12240.54896,0,21
+185510,49268.53896,12368.38665,0,21
+185511,49101.46528,12798.99131,0,21
+185512,49362.76234,12798.99075,0,21
+185513,49393.85427,12958.01758,0,21
+185514,49988.38512,13227.01767,0,21
+185515,49476.62623,13495.02024,0,21
+185516,50067.81629,13542.74598,0,21
+185517,50119.05394,13777.94786,0,21
+185518,50157.66854,13966.38365,0,21
+185519,50383.81777,14075.58246,0,21
+185520,50598.97679,14372.02379,0,21
+185521,50473.35042,14511.8827,0,21
+185522,51046.21444,14651.53786,0,21
+185523,50953.70971,15053.45783,0,21
+185524,51128.29678,14961.04361,0,21
+185525,51392.63567,15453.26453,0,21
+185526,51462.34245,15499.45899,0,21
+185527,51654.78541,15759.60471,0,21
+185528,51899.89277,15774.90117,0,21
+185529,52099.07714,16292.49036,0,21
+185530,52170.09954,16186.22701,0,21
+185531,52391.90258,16580.27404,0,21
+185532,52456.12494,16693.1071,0,21
+185533,52841.8181,17093.76653,0,21
+185534,52757.00487,17246.21669,0,21
+185535,53164.05642,17286.61352,0,21
+185536,53193.06093,17793.05483,0,21
+185537,53427.84479,17755.56353,0,21
+185538,53494.81824,18113.28582,0,21
+185539,53912.10686,18274.01663,0,21
+185540,53727.31749,18556.16074,0,21
+185541,54008.32899,19116.02194,0,21
+185542,54386.22307,19276.48063,0,21
+185543,54288.27835,19432.42188,0,21
+185544,54666.39721,19747.72148,0,21
+185545,54540.64376,20093.21088,0,21
+185546,54935.11619,20277.05461,0,21
+185547,55001.84977,20515.13503,0,21
+185548,55046.35426,20944.5056,0,21
+185549,55605.69936,21008.93636,0,21
+185550,55305.68399,21375.27956,0,21
+185551,55549.88597,21555.31383,0,21
+185552,56084.45856,21863.80054,0,21
+185553,55641.60857,23985.92865,0,21
+185554,56205.39933,25244.00706,0,21
+185555,56225.88507,25131.44858,0,21
+185556,56485.77796,26347.96191,0,21
+185557,56495.17664,26683.58093,0,21
+185558,56750.61699,27787.92051,0,21
+185559,56756.19422,28215.02341,0,21
+185560,57174.64661,28729.42589,0,21
+185561,57034.90495,29728.52933,0,21
+185562,57428.21068,29801.70317,0,21
+185563,57313.42535,31007.13154,0,21
+185564,57515.75355,31610.71187,0,21
+185565,57906.62101,31818.69515,0,21
+185566,58687.14538,32982.78524,0,21
+185567,59133.67401,33066.34584,1514.045523,21
+185568,59065.44001,34027.8941,1250.360983,21
+185569,59624.55517,34701.3323,1514.136706,21
+185570,59604.45264,35041.16543,1775.099283,21
+185571,60103.82785,35966.89742,1904.680534,21
+185572,60355.32669,36236.29089,2289.930525,21
+185573,60641.14553,37079.8934,2417.405803,21
+185574,60838.97897,37554.42189,2544.421532,21
+185575,60924.4423,38387.51903,2796.990486,21
+185576,61529.97301,38657.14332,3047.898621,21
+185577,61416.28861,39374.21184,3172.876245,21
+185578,62076.66894,40059.50404,3681.279066,21
+185579,62034.10018,40345.03805,3828.604344,21
+185580,63267.86123,41467.92997,4010.609007,21
+185581,0,0,0,21
+185582,0,0,0,21
+185583,0,0,0,21
+185584,0,0,0,21
+185585,0,0,823266.5515,21
+185586,0,368373.3731,0,21
+185587,339037.1768,0,0,21
+185588,0,0,0,21
+185589,0,0,0,21
+185590,0,0,0,21
+185591,0,0,0,21
+185592,0,0,0,21
+185593,0,0,0,21
+185594,0,0,0,21
+185595,0,0,0,21
+185596,0,0,0,21
+185597,0,0,0,21
+185598,0,0,0,21
+185599,0,0,0,21
+185600,0,0,0,21
+185601,0,0,0,21
+185602,0,435252.2915,0,21
+185603,0,0,0,21
+185604,0,0,0,21
+185605,0,0,0,21
+185606,0,0,0,21
+185607,0,0,0,21
+185608,0,0,0,21
+185609,0,0,0,21
+185610,0,0,0,21
+185611,0,0,0,21
+185612,0,0,0,21
+185613,0,0,0,21
+185614,0,0,0,21
+185615,0,0,0,21
+185616,0,0,0,21
+185617,0,0,0,21
+185618,0,0,0,21
+185619,0,0,810509.7552,21
+185620,0,0,0,21
+185621,0,368328.3922,0,21
+185622,0,434979.6969,0,21
+185623,339785.0945,0,0,21
+185624,0,0,0,21
+185625,0,0,0,21
+185626,0,0,0,21
+185627,0,0,0,21
+185628,0,0,0,21
+185629,0,0,0,21
+185630,0,0,0,21
+185631,0,0,0,21
+185632,0,0,0,21
+185633,0,0,0,21
+185634,0,0,0,21
+185635,0,0,0,21
+185636,0,0,0,21
+185637,0,0,0,21
+185638,0,0,0,21
+185639,0,0,0,21
+185640,0,0,0,15.6
+185641,0,0,0,15.6
+185642,0,0,0,15.6
+185643,0,0,0,15.6
+185644,0,0,0,15.6
+185645,0,0,0,15.6
+185646,0,0,0,15.6
+185647,0,0,0,15.6
+185648,0,0,0,15.6
+185649,0,0,0,15.6
+185650,0,0,0,15.6
+185651,0,0,0,15.6
+185652,0,0,0,15.6
+185653,0,0,0,15.6
+185654,0,0,798867.8505,15.6
+185655,0,0,0,15.6
+185656,0,368304.3026,0,15.6
+185657,0,242.6636939,0,15.6
+185658,0,0,0,15.6
+185659,340337.4717,0,0,15.6
+185660,0,0,0,15.6
+185661,0,0,0,15.6
+185662,0,0,0,15.6
+185663,0,0,0,15.6
+185664,0,0,0,15.6
+185665,0,0,0,15.6
+185666,0,0,0,15.6
+185667,0,3.622660466,0,15.6
+185668,0,0,0,15.6
+185669,0,115.3527898,0,15.6
+185670,0,0,0,15.6
+185671,0,0,0,15.6
+185672,0,0,0,15.6
+185673,0,72.20596092,0,15.6
+185674,0,0,0,15.6
+185675,0,0,0,15.6
+185676,0,0,0,15.6
+185677,0,98.86481913,0,15.6
+185678,0,0,0,15.6
+185679,0,0,0,15.6
+185680,0,0,0,15.6
+185681,0,81.18612064,0,15.6
+185682,0,0,0,15.6
+185683,0,0,0,15.6
+185684,0,0,0,15.6
+185685,0,97.19573654,0,15.6
+185686,0,0,0,15.6
+185687,0,0,0,15.6
+185688,0,0,0,15.6
+185689,0,78.07008282,788238.925,15.6
+185690,0,0,0,15.6
+185691,0,368298.7105,0,15.6
+185692,0,0,0,15.6
+185693,0,83.22941412,0,15.6
+185694,0,0,0,15.6
+185695,340362.1125,0,0,15.6
+185696,0,0,0,15.6
+185697,0,72.16287429,0,15.6
+185698,0,0,0,15.6
+185699,0,0,0,15.6
+185700,0,0,0,15.6
+185701,0,81.98298791,0,15.6
+185702,0,0,0,15.6
+185703,0,0,0,15.6
+185704,0,0,0,15.6
+185705,0,97.40089234,0,15.6
+185706,0,0,0,15.6
+185707,0,0,0,15.6
+185708,0,0,0,15.6
+185709,0,86.41815592,0,15.6
+185710,0,0,0,15.6
+185711,0,0,0,15.6
+185712,0,0,0,15.6
+185713,0,107.0983142,0,15.6
+185714,0,0,0,15.6
+185715,0,0,0,15.6
+185716,0,0,0,15.6
+185717,0,99.3786283,0,15.6
+185718,0,0,0,15.6
+185719,0,0,0,15.6
+185720,0,0,0,15.6
+185721,0,103.1443992,0,15.6
+185722,0,0,0,15.6
+185723,0,0,0,15.6
+185724,0,0,778533.1747,15.6
+185725,0,101.5245779,0,15.6
+185726,0,368292.0398,0,15.6
+185727,0,0,0,15.6
+185728,0,0,0,15.6
+185729,0,87.29330035,0,15.6
+185730,0,0,0,15.6
+185731,0,0,0,15.6
+185732,340365.3955,0,0,15.6
+185733,0,83.75096629,0,15.6
+185734,0,0,0,15.6
+185735,0,0,0,15.6
+185736,0,0,0,15.6
+185737,0,96.49195642,0,15.6
+185738,0,0,0,15.6
+185739,0,0,0,15.6
+185740,0,0,0,15.6
+185741,0,82.19812456,0,15.6
+185742,0,0,0,15.6
+185743,0,0,0,15.6
+185744,0,0,0,15.6
+185745,0,97.64233518,0,15.6
+185746,0,0,0,15.6
+185747,0,0,0,15.6
+185748,0,0,0,15.6
+185749,0,80.6049935,0,15.6
+185750,0,0,0,15.6
+185751,0,0,0,15.6
+185752,0,0,0,15.6
+185753,0,98.48370972,0,15.6
+185754,0,0,0,15.6
+185755,0,0,0,15.6
+185756,0,0,0,15.6
+185757,0,83.29770755,0,15.6
+185758,0,0,0,15.6
+185759,0,0,769671.7841,15.6
+185760,0,0,0,15.6
+185761,0,368386.8617,0,15.6
+185762,0,0,0,15.6
+185763,0,0,0,15.6
+185764,0,0,0,15.6
+185765,0,80.03887529,0,15.6
+185766,0,0,0,15.6
+185767,0,0,0,15.6
+185768,0,0,0,15.6
+185769,340382.9842,86.97817909,0,15.6
+185770,0,0,0,15.6
+185771,0,0,0,15.6
+185772,0,0,0,15.6
+185773,0,104.5750585,0,15.6
+185774,0,0,0,15.6
+185775,0,0,0,15.6
+185776,0,0,0,15.6
+185777,0,100.1681675,0,15.6
+185778,0,0,0,15.6
+185779,0,0,0,15.6
+185780,0,0,0,15.6
+185781,0,101.6184981,0,15.6
+185782,0,0,0,15.6
+185783,0,0,0,15.6
+185784,0,0,0,15.6
+185785,0,99.077544,0,15.6
+185786,0,0,0,15.6
+185787,0,0,0,15.6
+185788,0,0,0,15.6
+185789,0,96.20459444,0,15.6
+185790,0,0,0,15.6
+185791,0,0,0,15.6
+185792,0,0,0,15.6
+185793,0,85.27567015,0,15.6
+185794,0,0,761584.2249,15.6
+185795,0,0,0,15.6
+185796,0,368273.3869,0,15.6
+185797,0,87.3373326,0,15.6
+185798,0,0,0,15.6
+185799,0,0,0,15.6
+185800,0,0,0,15.6
+185801,0,75.74223716,0,15.6
+185802,0,0,0,15.6
+185803,0,0,0,15.6
+185804,0,0,0,15.6
+185805,0,77.32965444,0,15.6
+185806,340421.7535,0,0,15.6
+185807,0,0,0,15.6
+185808,0,0,0,15.6
+185809,0,84.98391445,0,15.6
+185810,0,0,0,15.6
+185811,0,0,0,15.6
+185812,0,0,0,15.6
+185813,0,97.58752101,0,15.6
+185814,0,0,0,15.6
+185815,0,0,0,15.6
+185816,0,0,0,15.6
+185817,0,84.8872484,0,15.6
+185818,0,0,0,15.6
+185819,0,0,0,15.6
+185820,0,0,0,15.6
+185821,0,104.5091444,0,15.6
+185822,0,0,0,15.6
+185823,0,0,0,15.6
+185824,0,0,0,15.6
+185825,0,96.6587781,0,15.6
+185826,0,0,0,15.6
+185827,0,0,0,15.6
+185828,0,0,0,15.6
+185829,0,100.1742714,754202.7866,15.6
+185830,0,0,0,15.6
+185831,0,368266.208,0,15.6
+185832,0,0,0,15.6
+185833,0,96.62072553,0,15.6
+185834,0,0,0,15.6
+185835,0,0,0,15.6
+185836,0,0,0,15.6
+185837,0,78.24076204,0,15.6
+185838,0,0,0,15.6
+185839,0,0,0,15.6
+185840,0,0,0,15.6
+185841,0,97.01644359,0,15.6
+185842,0,0,0,15.6
+185843,340422.0466,0,0,15.6
+185844,0,0,0,15.6
+185845,0,82.52484387,0,15.6
+185846,0,0,0,15.6
+185847,0,0,0,15.6
+185848,0,0,0,15.6
+185849,0,97.55782403,0,15.6
+185850,0,0,0,15.6
+185851,0,0,0,15.6
+185852,0,0,0,15.6
+185853,0,78.76485757,0,15.6
+185854,0,0,0,15.6
+185855,0,0,0,15.6
+185856,0,0,0,15.6
+185857,0,84.93080466,0,15.6
+185858,0,0,0,15.6
+185859,0,0,0,15.6
+185860,0,0,0,15.6
+185861,0,83.358777,0,15.6
+185862,0,0,0,15.6
+185863,0,0,0,15.6
+185864,0,0,747464.7282,15.6
+185865,0,83.838452,0,15.6
+185866,0,368268.5836,0,15.6
+185867,0,0,0,15.6
+185868,0,0,0,15.6
+185869,0,81.87823337,0,15.6
+185870,0,0,0,15.6
+185871,0,0,0,15.6
+185872,0,0,0,15.6
+185873,0,76.55954,0,15.6
+185874,0,0,0,15.6
+185875,0,0,0,15.6
+185876,0,0,0,15.6
+185877,0,86.29612331,0,15.6
+185878,0,0,0,15.6
+185879,0,0,0,15.6
+185880,340422.7282,0,0,15.6
+185881,0,100.4884897,0,15.6
+185882,0,0,0,15.6
+185883,0,0,0,15.6
+185884,0,0,0,15.6
+185885,0,87.05576928,0,15.6
+185886,0,0,0,15.6
+185887,0,0,0,15.6
+185888,0,0,0,15.6
+185889,0,105.6044039,0,15.6
+185890,0,0,0,15.6
+185891,0,0,0,15.6
+185892,0,0,0,15.6
+185893,0,86.57454991,0,15.6
+185894,0,0,0,15.6
+185895,0,0,0,15.6
+185896,0,0,0,15.6
+185897,0,102.3441962,0,15.6
+185898,0,0,0,15.6
+185899,0,0,741312.6121,15.6
+185900,0,0,0,15.6
+185901,0,368348.7022,0,15.6
+185902,0,0,0,15.6
+185903,0,0,0,15.6
+185904,0,0,0,15.6
+185905,0,80.96241747,0,15.6
+185906,0,0,0,15.6
+185907,0,0,0,15.6
+185908,0,0,0,15.6
+185909,0,73.55269938,0,15.6
+185910,0,0,0,15.6
+185911,0,0,0,15.6
+185912,0,0,0,15.6
+185913,0,78.70035946,0,15.6
+185914,0,0,0,15.6
+185915,0,0,0,15.6
+185916,0,0,0,15.6
+185917,340422.5421,79.72366864,0,15.6
+185918,0,0,0,15.6
+185919,0,0,0,15.6
+185920,0,0,0,15.6
+185921,0,81.37404924,0,15.6
+185922,0,0,0,15.6
+185923,0,0,0,15.6
+185924,0,0,0,15.6
+185925,0,83.04237463,0,15.6
+185926,0,0,0,15.6
+185927,0,0,0,15.6
+185928,0,0,0,15.6
+185929,0,85.10871857,0,15.6
+185930,0,0,0,15.6
+185931,0,0,0,15.6
+185932,0,0,0,15.6
+185933,0,87.16527052,0,15.6
+185934,0,0,735693.8953,15.6
+185935,0,0,0,15.6
+185936,0,0,0,15.6
+185937,0,368350.5277,0,15.6
+185938,0,0,0,15.6
+185939,0,0,0,15.6
+185940,0,0,0,15.6
+185941,0,83.04407018,114977.8406,15.6
+185942,0,0,0,15.6
+185943,0,0,0,15.6
+185944,0,0,0,15.6
+185945,0,81.3418628,0,15.6
+185946,0,0,0,15.6
+185947,0,0,0,15.6
+185948,0,0,0,15.6
+185949,0,97.76464518,0,15.6
+185950,0,0,0,15.6
+185951,0,0,0,15.6
+185952,0,0,0,15.6
+185953,0,83.19968391,0,15.6
+185954,340409.775,0,0,15.6
+185955,0,0,0,15.6
+185956,0,0,0,15.6
+185957,0,98.91459729,0,15.6
+185958,0,0,0,15.6
+185959,0,0,0,15.6
+185960,0,0,0,15.6
+185961,0,79.31372844,0,15.6
+185962,0,0,0,15.6
+185963,0,0,0,15.6
+185964,0,0,0,15.6
+185965,0,84.72777967,0,15.6
+185966,0,0,0,15.6
+185967,0,0,0,15.6
+185968,0,0,826756.2083,15.6
+185969,0,81.04172308,0,15.6
+185970,0,0,108001.1679,15.6
+185971,0,0,0,15.6
+185972,0,368261.9622,0,15.6
+185973,0,77.22813762,0,15.6
+185974,0,0,0,15.6
+185975,0,0,0,15.6
+185976,0,0,0,15.6
+185977,0,67.29402234,0,15.6
+185978,0,0,0,15.6
+185979,0,0,0,15.6
+185980,0,0,0,15.6
+185981,0,69.26033435,0,15.6
+185982,0,0,0,15.6
+185983,0,0,0,15.6
+185984,0,0,0,15.6
+185985,0,77.71335069,0,15.6
+185986,0,0,0,15.6
+185987,0,0,0,15.6
+185988,0,0,0,15.6
+185989,340378.0748,81.9525027,0,15.6
+185990,0,0,0,15.6
+185991,0,0,0,15.6
+185992,0,0,0,15.6
+185993,0,84.99080785,0,15.6
+185994,0,0,0,15.6
+185995,0,0,0,15.6
+185996,0,0,0,15.6
+185997,0,87.02225766,0,15.6
+185998,0,0,0,15.6
+185999,0,0,105185.8592,15.6
+186000,0,0,0,17.8
+186001,3481.525737,472644.506,1232390.51,17.8
+186002,0,89593.82291,803155.4575,17.8
+186003,0,149116.3381,129865.573,17.8
+186004,655.5289117,188727.3122,178234.1582,17.8
+186005,877.3840879,187380.4558,250899.1698,17.8
+186006,579.0516102,536498.8755,200333.3449,17.8
+186007,693.2620569,171505.5304,202052.3533,17.8
+186008,700.7701145,168512.1144,117985.9902,17.8
+186009,700.7701693,166983.0271,115447.5444,17.8
+186010,738.1229353,164355.4064,113212.2235,17.8
+186011,730.6771036,162014.0357,110959.0928,17.8
+186012,745.5568151,160456.9062,108829.939,17.8
+186013,775.1723331,157831.4362,106655.1676,17.8
+186014,760.388411,156075.1199,104761.5781,17.8
+186015,789.9096607,154203.108,102614.8674,17.8
+186016,0,152100.3453,100767.8172,17.8
+186017,0,149899.4173,98856.68183,17.8
+186018,0,148535.3383,97046.93997,17.8
+186019,0,146666.8952,95305.64427,17.8
+186020,0,144335.0702,93674.97454,17.8
+186021,0,143080.631,91833.06088,17.8
+186022,0,140860.9022,90266.84926,17.8
+186023,0,139289.4485,88714.61116,17.8
+186024,340392.9909,137492.3016,87297.59342,17.8
+186025,0,135686.4854,85772.48642,17.8
+186026,0,133939.8558,84398.72182,17.8
+186027,0,132413.74,82896.46822,17.8
+186028,0,130373.4969,81603.09883,17.8
+186029,0,129166.6647,80137.06246,17.8
+186030,0,127848.4763,78839.50071,17.8
+186031,0,67.94298197,0,17.8
+186032,0,0,57966.50427,17.8
+186033,0,175.0520169,0,17.8
+186034,0,2885.054128,0,17.8
+186035,0,1256.599047,0,17.8
+186036,0,1704.088758,594827.4343,17.8
+186037,0,41483.99842,0,17.8
+186038,0,8300.325651,58463.37683,17.8
+186039,0,24886.26401,0,17.8
+186040,0,390632.8993,0,17.8
+186041,0,21387.28185,0,17.8
+186042,0,21396.07327,56820.66186,17.8
+186043,0,21307.02787,0,17.8
+186044,0,21449.52304,55328.90113,17.8
+186045,0,20939.64358,0,17.8
+186046,0,20845.17791,125179.225,17.8
+186047,0,20605.76595,58983.0623,17.8
+186048,0,20487.69168,65857.20616,17.8
+186049,0,20330.98147,77423.0779,17.8
+186050,0,20125.54505,68362.01743,17.8
+186051,0,20011.52635,68618.57427,17.8
+186052,0,19893.69893,67621.10675,17.8
+186053,0,19639.70055,66595.63798,17.8
+186054,0,19545.46396,65692.40381,17.8
+186055,0,19374.53764,64700.26842,17.8
+186056,0,19236.82553,63889.1158,17.8
+186057,0,17171.8034,62982.32309,17.8
+186058,0,17156.18052,62172.29846,17.8
+186059,340428.9531,16845.24026,61381.28974,17.8
+186060,0,16712.16378,60562.52224,20
+186061,173675.4589,605073.7312,876797.8431,20
+186062,150316.6434,19441.54864,122629.5266,20
+186063,155001.3385,76051.25635,125789.011,20
+186064,145744.8466,192762.9174,270572.1317,20
+186065,154143.2565,125989.8098,225778.5853,20
+186066,149011.6655,143692.6606,218192.4093,20
+186067,150437.5379,144739.082,225899.7214,20
+186068,150075.6456,141038.5285,227088.9372,20
+186069,150076.0496,141902.0677,230123.1751,20
+186070,149970.8363,141172.5745,231196.8267,20
+186071,150201.3254,140514.0492,233868.0878,20
+186072,149731.3985,140222.0929,235459.3622,20
+186073,150152.6783,139276.9534,237254.3915,20
+186074,149807.6089,139129.4341,239256.1687,20
+186075,150104.816,138219.8913,240722.3381,20
+186076,149882.2972,138243.1606,242499.8998,20
+186077,149774.994,137348.3498,244273.8546,20
+186078,150084.0373,137228.302,245768.1904,20
+186079,149769.7199,137009.3397,247233.2207,20
+186080,150329.5093,136121.4936,249137.073,20
+186081,149864.0291,136116.2602,249882.1162,20
+186082,150161.7077,135705.8178,252135.8681,20
+186083,149971.9585,135761.049,252844.7261,20
+186084,150099.3278,134965.9494,254519.1018,20
+186085,150008.1488,134809.1236,255498.5662,20
+186086,150186.4121,134716.5191,256868.3453,20
+186087,150106.4675,134066.8476,258231.5395,20
+186088,150163.2905,134151.2714,259514.5132,20
+186089,152993.9618,133649.187,260345.6054,20
+186090,151438.9883,133468.4786,261685.4154,20
+186091,152286.5361,133261.524,262638.0199,20
+186092,151894.3462,132720.6255,263880.5426,20
+186093,152377.7131,132831.7395,264622.2474,20
+186094,152312.9756,132491.1076,265812.6882,20
+186095,152537.3723,132062.6238,267098.0736,20
+186096,151949.7077,131579.5545,267367.7072,20
+186097,153131.6602,131270.717,268688.7647,20
+186098,152239.397,131162.1465,269467.4835,20
+186099,152670.183,130770.4085,270393.7312,20
+186100,152427.936,130290.0777,271350.0919,20
+186101,153071.0989,130371.6956,271725.8426,20
+186102,152630.6291,130210.2789,273220.7954,20
+186103,152796.4842,129591.5854,273246.7532,20
+186104,153083.0018,129663.1941,274464.9664,20
+186105,152587.87,129278.6723,275079.889,20
+186106,153098.8046,128783.7289,265674.4649,20
+186107,152645.7799,128975.7673,265400.7872,20
+186108,153206.3004,128399.2876,264311.7044,20
+186109,152534.8583,128648.4642,264583.0478,20
+186110,153331.1848,127843.2488,264473.0752,20
+186111,152699.8584,127798.8208,264111.4547,20
+186112,153194.1606,127929.5326,263988.33,20
+186113,152803.7186,126911.2568,264244.118,20
+186114,152798.9993,130322.9509,263584.8721,20
+186115,153357.5809,128798.1939,263526.1762,20
+186116,152596.18,129618.4768,263589.3142,20
+186117,153081.6532,129664.9236,263044.1506,20
+186118,152903.7049,129510.7503,263338.3926,20
+186119,152823.9998,130249.602,262787.5314,20
+186120,153031.7332,130050.7601,263456.1358,21
+186121,142123.8387,121195.5516,252175.147,21
+186122,140890.0778,119958.8437,250359.8888,21
+186123,140570.6297,120149.3476,249585.5232,21
+186124,140535.5931,120126.6946,248430.7903,21
+186125,139512.4828,119746.5734,248631.7541,21
+186126,140198.7109,119697.5483,246886.8345,21
+186127,139465.8327,119668.1376,247045.5337,21
+186128,139318.1982,119709.0883,245572.2078,21
+186129,139107.689,119319.6648,245674.8179,21
+186130,139412.8909,119657.2182,244203.7414,21
+186131,139150.0434,119202.0769,244249.2566,21
+186132,139067.3892,119291.9732,243479.3898,21
+186133,138379.3334,119031.0664,242928.6702,21
+186134,138823.7497,119236.2491,242666.7114,21
+186135,138388.9807,118556.2978,242169.0503,21
+186136,137921.7944,118886.9121,241562.5501,21
+186137,137940.1285,118492.4437,241543.4285,21
+186138,137576.4837,118466.0205,240408.0509,21
+186139,137659.2197,118198.8181,240737.3847,21
+186140,137305.9261,118018.2657,239659.4531,21
+186141,136913.8449,118023.032,239666.3372,21
+186142,136920.8128,117254.6757,238922.865,21
+186143,136682.873,118118.5079,238727.3017,21
+186144,136525.3033,117002.0681,238077.7606,21
+186145,136035.5314,117116.6466,237612.8288,21
+186146,136189.3662,116499.1981,237143.0663,21
+186147,135656.9668,116999.6632,236575.7227,21
+186148,135535.3264,116033.6088,236161.9716,21
+186149,135483.6992,116305.3693,235795.4498,21
+186150,134985.5746,116292.8178,235503.6697,21
+186151,134840.9512,116116.7726,234145.8833,21
+186152,133757.7913,115646.2426,233793.3171,21
+186153,134055.8401,115426.8671,231218.4035,21
+186154,133619.3561,115234.8487,227474.019,21
+186155,133604.9247,115065.0247,231899.3067,21
+186156,132949.8131,114709.4254,227357.0208,21
+186157,132722.0696,114467.6707,708077.9397,21
+186158,132434.6611,114088.0708,137182.6044,21
+186159,132240.432,113845.9295,196102.6738,21
+186160,132039.6546,113606.7585,745834.1635,21
+186161,131697.8755,113198.6355,137551.0761,21
+186162,131276.6842,113424.8346,341462.6974,21
+186163,130920.7867,112502.8875,135288.275,21
+186164,131098.3523,112714.2152,136897.4274,21
+186165,130171.25,112247.7163,141568.5163,21
+186166,130215.4835,111802.9547,264963.5078,21
+186167,129714.1338,111847.2266,255091.5883,21
+186168,129673.4185,111228.5789,202324.2675,21
+186169,128943.5519,111185.9446,313655.8527,21
+186170,129087.4271,110841.082,221878.8922,21
+186171,128641.4642,110494.3741,240593.0118,21
+186172,128110.4957,110404.2552,235410.7976,21
+186173,128113.1555,110005.4219,232535.0924,21
+186174,127759.8766,109963.014,230532.3313,21
+186175,127122.2267,109071.0381,228363.0021,21
+186176,127019.6367,109641.968,226260.7426,21
+186177,126688.7458,108871.6665,223890.4385,21
+186178,126509.1438,109011.3874,222492.9418,21
+186179,125525.5268,108274.8968,219698.2873,21
+186180,126275.7644,108431.2213,218015.0399,21
+186181,54787.23536,60935.03897,137268.8256,21
+186182,51958.86367,58438.2516,132700.5424,21
+186183,50722.95146,57656.10232,127551.0207,21
+186184,49966.89728,56822.46327,605198.1114,21
+186185,49641.16254,56181.07791,26410.43883,21
+186186,48856.79237,55469.02326,206943.1256,21
+186187,48437.54481,54827.27548,24166.08796,21
+186188,47907.58236,54119.14147,24573.54157,21
+186189,47468.15285,53953.06147,157541.7157,21
+186190,47157.89615,52993.98473,143716.0628,21
+186191,46289.71304,52470.24082,139312.4779,21
+186192,46242.70424,52228.695,19526.12515,21
+186193,45532.1771,51174.48439,20028.44612,21
+186194,45119.7833,51137.44069,145621.3662,21
+186195,44775.87302,50419.81209,131247.7,21
+186196,44273.49998,49766.28996,124662.1391,21
+186197,43822.97886,49363.49816,16522.42271,21
+186198,43214.12443,49000.31915,17154.09307,21
+186199,43085.4843,48375.60387,134023.9089,21
+186200,42452.75131,47640.4213,118597.193,21
+186201,41940.05375,47597.37573,91752.406,21
+186202,41853.65989,46643.30292,14637.64864,21
+186203,40992.56389,46393.85894,14603.82911,21
+186204,40724.7069,46195.82179,14302.75123,21
+186205,40491.16022,45052.67747,13980.36348,21
+186206,39748.5153,44934.78569,13827.86819,21
+186207,39620.43418,44205.45332,13537.9059,21
+186208,38991.33668,43603.72298,13423.04625,21
+186209,38655.58338,43452.86672,13056.13923,21
+186210,38372.67068,42429.4895,12832.79531,21
+186211,37145.6968,42409.29778,12766.86788,21
+186212,36699.76986,41459.70228,12392.79507,21
+186213,34859.63654,41118.75832,12274.35789,21
+186214,34159.7536,40359.26048,12072.46892,21
+186215,33139.36869,39973.90887,11874.73601,21
+186216,32094.79763,39229.44622,11573.61583,21
+186217,31338.47755,38842.51915,11523.56362,21
+186218,30301.04848,38102.74612,11245.60742,21
+186219,29196.84106,37862.76586,11059.29628,21
+186220,28460.799,36973.71902,10897.60065,21
+186221,27359.87232,36662.46707,10609.11954,21
+186222,25660.17255,35873.58581,10449.6199,21
+186223,24683.6672,35713.34164,10353.69875,21
+186224,23272.79114,34699.8178,9986.606948,21
+186225,22508.24813,34519.18918,9900.871769,21
+186226,21372.10634,33791.36432,9716.267501,21
+186227,20302.79201,33344.49811,9462.907584,21
+186228,19184.77785,32922.64549,9345.3883,21
+186229,18202.91399,32328.46553,9090.193343,21
+186230,16836.31705,31607.9726,8892.897367,21
+186231,16086.62211,31566.21961,8825.701187,21
+186232,14980.33383,30992.43568,8436.026794,21
+186233,14644.77292,30877.10337,8447.861813,21
+186234,14312.63353,30442.85469,8066.76192,21
+186235,13917.9262,29669.34874,8089.666615,21
+186236,13662.61854,29600.56659,7691.005765,21
+186237,13248.62401,28823.8207,7615.07638,21
+186238,12834.97869,28664.11689,7418.392861,21
+186239,12506.26117,27963.00651,7258.596176,21
+186240,12098.95785,27921.30058,6936.59026,21
+186241,11756.48406,27051.97226,6836.713212,21
+186242,11528.56582,26811.40463,6522.739691,21
+186243,10946.24114,26396.17812,6326.820066,21
+186244,10780.02243,26030.62451,5967.195388,21
+186245,10341.60243,25492.19616,5776.50504,21
+186246,10011.83493,25059.04061,5565.745453,21
+186247,9765.746192,24661.99431,5340.452746,21
+186248,9483.60377,24482.17247,5003.771202,21
+186249,9270.365956,23710.36931,4810.066328,21
+186250,8838.443428,23302.61028,4577.813254,21
+186251,8738.323441,23260.10593,4336.879987,21
+186252,8331.472895,22335.03491,4037.997083,21
+186253,8267.534275,21923.99413,3758.288986,21
+186254,7742.039295,21909.72641,3680.5877,21
+186255,7815.987147,21050.48962,3491.006483,21
+186256,7385.498745,20806.85022,3337.80665,21
+186257,7243.758469,20241.89076,3284.748341,21
+186258,6927.57044,19848.05778,3162.347229,21
+186259,6792.834331,19360.29705,3087.152144,21
+186260,6513.325752,18796.95761,2986.66574,21
+186261,6294.155414,18484.58317,2887.750411,21
+186262,6257.026815,17788.65568,2751.739547,21
+186263,5882.291653,17445.50554,2627.929032,21
+186264,5740.0045,16981.99658,2525.887717,21
+186265,5479.157535,16321.63584,2456.7407,21
+186266,5466.61194,15944.06415,2365.93906,21
+186267,5072.149695,15428.37439,2226.576635,21
+186268,5072.150777,14643.10728,2180.217828,21
+186269,4660.970751,14253.08611,2050.890662,21
+186270,4527.17038,13696.61734,1981.167072,21
+186271,4392.868965,13309.66577,1860.923076,21
+186272,3973.942496,12555.39257,1789.872013,21
+186273,4109.87821,12240.04568,1692.774476,21
+186274,3562.575245,11670.1685,1583.23179,21
+186275,3687.407364,11192.23445,1508.847841,21
+186276,3272.1019,10377.23078,1396.47438,21
+186277,3132.257751,10036.15378,1281.204696,21
+186278,2991.641306,9647.645116,1243.610396,21
+186279,2810.881537,8661.315477,1167.325349,21
+186280,2564.615974,8508.109105,1114.77788,21
+186281,2380.765827,7616.978866,1049.460251,21
+186282,2114.976056,7275.213312,1049.49344,21
+186283,2075.191841,7226.821389,1023.688678,21
+186284,1638.536649,6841.429692,997.7896977,21
+186285,1638.537075,6958.241947,971.794875,21
+186286,1443.86079,6586.19717,958.774851,21
+186287,1147.389779,6496.600353,932.6326085,21
+186288,1120.40437,6456.420079,906.3900629,21
+186289,1079.712265,6070.868194,893.2425515,21
+186290,1066.090422,6157.819776,853.5964095,21
+186291,1052.439113,5913.094376,840.3425811,21
+186292,1011.305021,5728.682327,827.0613025,21
+186293,983.7298864,5465.834217,787.012228,21
+186294,983.7301647,5542.098053,787.0305689,21
+186295,928.2023709,5174.479933,746.7282343,21
+186296,928.2026172,5090.299937,733.2471021,21
+186297,886.2160802,5009.653277,706.1792599,21
+186298,872.1538484,4782.805358,678.9897066,21
+186299,843.926552,4523.073864,679.003248,21
+186300,815.5596008,4451.519618,624.2317883,21
+186301,758.3919271,3999.501275,596.6551905,21
+186302,744.0069367,3745.727237,568.9409877,21
+186303,715.121343,3522.646066,541.0843921,21
+186304,686.0778461,3412.392717,527.1051154,21
+186305,656.8714535,3181.717351,513.0878347,21
+186306,642.2055243,2728.278587,484.9291868,21
+186307,612.7444406,3015.568417,470.7933784,21
+186308,583.1059022,2696.435431,442.3910378,21
+186309,568.215656,2543.353598,428.128605,21
+186310,523.2673302,2664.432291,413.8217256,21
+186311,508.1853981,2357.174576,385.0598924,21
+186312,493.0522435,2495.286969,370.6196113,21
+186313,447.332864,2185.744051,341.5696539,21
+186314,431.9817979,2308.85757,341.572817,21
+186315,401.103396,1996.812347,297.5994756,21
+186316,385.5725311,2137.299251,297.6019912,21
+186317,338.5889505,1822.480706,267.9967602,21
+186318,338.5889523,1948.106389,238.1355637,21
+186319,290.9673048,1630.165712,238.1371575,21
+186320,258.8244413,1773.641283,207.9938044,21
+186321,258.824445,1452.118724,192.8068674,21
+186322,209.9353769,1597.471978,162.1745,21
+186323,193.4373648,1402.860478,162.1752301,21
+186324,160.0951769,1255.271139,131.1539439,21
+186325,126.2226298,1402.860404,99.66647497,21
+186326,109.0520944,1055.280476,99.66674991,21
+186327,91.69817538,1038.718494,67.58707415,21
+186328,38.15889005,1038.718578,67.58719816,21
+186329,28.92489976,1022.106659,17.70849399,21
+186330,0,654.5201001,17.70850243,21
+186331,0,817.5255911,0,21
+186332,0,637.8074603,0,21
+186333,0,604.2183198,0,21
+186334,0,604.2183909,0,21
+186335,0,570.4088086,0,21
+186336,0,570.4088686,0,21
+186337,0,536.3688345,0,21
+186338,0,536.3689356,0,21
+186339,0,519.2590802,0,21
+186340,0,484.8518489,0,21
+186341,0,484.8518875,0,21
+186342,0,476.2083096,0,21
+186343,0,467.550793,0,21
+186344,0,467.5511442,0,21
+186345,0,415.2371073,0,21
+186346,0,432.7459173,0,21
+186347,0,415.2371854,0,21
+186348,0,379.9955053,0,21
+186349,0,379.9955293,0,21
+186350,0,344.4364177,0,21
+186351,0,344.436448,0,21
+186352,0,326.5298468,0,21
+186353,0,299.5005419,0,21
+186354,0,290.4434688,0,21
+186355,0,272.25468,0,21
+186356,0,253.9618708,0,21
+186357,0,235.5588317,0,21
+186358,0,217.0384722,0,21
+186359,0,217.0384832,0,21
+186360,0,170.165925,0,21
+186361,0,198.3930688,0,21
+186362,0,198.3925781,0,21
+186363,0,151.1583333,0,21
+186364,0,160.6823789,0,21
+186365,0,122.3208646,0,21
+186366,0,122.3208714,0,21
+186367,0,102.8457015,0,21
+186368,0,102.8457144,0,21
+186369,0,83.13344844,0,21
+186370,0,63.13625056,0,21
+186371,0,63.13625235,0,21
+186372,0,21.90599611,0,21
+186373,0,21.90599645,0,21
+186374,0,11.16977014,0,21
+186375,0,0,0,21
+186376,0,0,0,21
+186377,0,0,0,21
+186378,0,0,0,21
+186379,0,0,0,21
+186380,0,0,0,21
+186381,0,0,0,21
+186382,0,0,0,21
+186383,0,0,0,21
+186384,0,0,0,21
+186385,0,0,0,21
+186386,0,0,0,21
+186387,0,0,0,21
+186388,0,0,0,21
+186389,0,0,0,21
+186390,0,0,0,21
+186391,0,0,0,21
+186392,0,0,0,21
+186393,0,0,0,21
+186394,0,0,0,21
+186395,0,0,0,21
+186396,0,0,0,21
+186397,0,0,0,21
+186398,0,0,0,21
+186399,0,0,0,21
+186400,0,0,0,21
+186401,0,0,0,21
+186402,0,0,0,21
+186403,0,0,0,21
+186404,0,0,0,21
+186405,0,0,0,21
+186406,0,0,0,21
+186407,0,0,0,21
+186408,0,0,0,21
+186409,0,0,0,21
+186410,0,0,0,21
+186411,0,0,0,21
+186412,0,0,0,21
+186413,0,0,0,21
+186414,0,0,0,21
+186415,0,0,0,21
+186416,0,0,0,21
+186417,0,0,0,21
+186418,0,0,0,21
+186419,0,0,0,21
+186420,0,0,0,21
+186421,0,0,0,21
+186422,0,0,0,21
+186423,0,0,0,21
+186424,0,0,0,21
+186425,0,0,0,21
+186426,0,0,0,21
+186427,0,0,0,21
+186428,0,0,0,21
+186429,0,0,0,21
+186430,0,0,0,21
+186431,0,0,0,21
+186432,0,0,0,21
+186433,0,0,0,21
+186434,0,0,0,21
+186435,0,0,0,21
+186436,0,0,0,21
+186437,0,0,0,21
+186438,0,0,0,21
+186439,0,0,0,21
+186440,0,0,0,21
+186441,0,0,0,21
+186442,0,0,0,21
+186443,0,0,0,21
+186444,0,0,0,21
+186445,0,0,0,21
+186446,0,0,0,21
+186447,0,0,0,21
+186448,0,0,0,21
+186449,0,0,0,21
+186450,0,0,0,21
+186451,0,0,0,21
+186452,0,0,0,21
+186453,0,0,0,21
+186454,0,0,0,21
+186455,0,0,0,21
+186456,0,0,0,21
+186457,0,0,0,21
+186458,0,0,0,21
+186459,0,0,0,21
+186460,0,0,0,21
+186461,0,0,0,21
+186462,0,0,0,21
+186463,0,0,0,21
+186464,0,0,0,21
+186465,0,0,0,21
+186466,0,0,0,21
+186467,0,0,0,21
+186468,0,0,0,21
+186469,0,0,0,21
+186470,0,0,0,21
+186471,0,0,0,21
+186472,0,0,0,21
+186473,0,0,0,21
+186474,0,0,0,21
+186475,0,0,0,21
+186476,0,0,0,21
+186477,0,0,0,21
+186478,0,0,0,21
+186479,0,0,0,21
+186480,0,0,0,21
+186481,0,0,0,21
+186482,0,0,0,21
+186483,0,0,0,21
+186484,0,0,0,21
+186485,0,0,0,21
+186486,0,0,0,21
+186487,0,0,0,21
+186488,0,0,0,21
+186489,0,0,0,21
+186490,0,0,0,21
+186491,0,0,0,21
+186492,0,0,0,21
+186493,0,0,0,21
+186494,0,0,0,21
+186495,0,0,0,21
+186496,0,0,0,21
+186497,0,0,0,21
+186498,0,0,0,21
+186499,0,0,0,21
+186500,0,0,0,21
+186501,0,0,0,21
+186502,0,0,0,21
+186503,0,0,0,21
+186504,0,0,0,21
+186505,0,0,0,21
+186506,0,0,0,21
+186507,0,0,0,21
+186508,0,0,0,21
+186509,0,0,0,21
+186510,0,0,0,21
+186511,0,0,0,21
+186512,0,0,0,21
+186513,0,0,0,21
+186514,0,0,0,21
+186515,0,0,0,21
+186516,0,0,0,21
+186517,0,0,0,21
+186518,0,0,0,21
+186519,0,0,0,21
+186520,0,0,0,21
+186521,0,0,0,21
+186522,0,0,0,21
+186523,0,0,0,21
+186524,0,0,0,21
+186525,0,0,0,21
+186526,0,0,0,21
+186527,0,0,0,21
+186528,0,0,0,21
+186529,0,0,0,21
+186530,0,0,0,21
+186531,0,0,0,21
+186532,0,0,0,21
+186533,0,0,0,21
+186534,0,0,0,21
+186535,0,0,0,21
+186536,0,0,0,21
+186537,0,0,0,21
+186538,0,0,0,21
+186539,0,0,0,21
+186540,0,0,0,21
+186541,0,0,0,21
+186542,0,0,0,21
+186543,0,0,0,21
+186544,0,0,0,21
+186545,0,0,0,21
+186546,0,0,0,21
+186547,0,0,0,21
+186548,0,0,0,21
+186549,0,0,0,21
+186550,0,0,0,21
+186551,0,0,0,21
+186552,0,0,0,21
+186553,0,0,0,21
+186554,0,0,0,21
+186555,0,0,0,21
+186556,0,0,0,21
+186557,0,0,0,21
+186558,0,0,0,21
+186559,0,0,0,21
+186560,0,0,0,21
+186561,0,0,0,21
+186562,0,0,0,21
+186563,0,0,0,21
+186564,0,0,0,21
+186565,0,0,0,21
+186566,0,0,0,21
+186567,0,0,0,21
+186568,0,0,0,21
+186569,0,0,0,21
+186570,0,0,0,21
+186571,0,0,0,21
+186572,0,0,0,21
+186573,0,0,0,21
+186574,0,0,0,21
+186575,0,0,0,21
+186576,0,0,0,21
+186577,0,0,0,21
+186578,0,0,0,21
+186579,0,0,0,21
+186580,0,0,0,21
+186581,0,0,0,21
+186582,0,0,0,21
+186583,0,0,0,21
+186584,0,0,0,21
+186585,0,0,0,21
+186586,0,0,0,21
+186587,0,0,0,21
+186588,0,0,0,21
+186589,0,0,0,21
+186590,0,0,0,21
+186591,0,0,0,21
+186592,0,0,0,21
+186593,0,0,0,21
+186594,0,0,0,21
+186595,0,0,0,21
+186596,0,0,0,21
+186597,0,0,0,21
+186598,0,0,0,21
+186599,0,0,0,21
+186600,0,0,0,21
+186601,0,0,0,21
+186602,0,0,0,21
+186603,0,0,0,21
+186604,0,0,0,21
+186605,0,0,0,21
+186606,0,0,0,21
+186607,0,0,0,21
+186608,0,0,0,21
+186609,0,0,0,21
+186610,0,0,0,21
+186611,0,0,0,21
+186612,0,0,0,21
+186613,0,0,0,21
+186614,0,0,0,21
+186615,0,0,0,21
+186616,0,0,0,21
+186617,0,0,0,21
+186618,0,0,0,21
+186619,0,0,0,21
+186620,0,0,0,21
+186621,0,0,0,21
+186622,0,0,0,21
+186623,0,0,0,21
+186624,0,0,0,21
+186625,0,0,0,21
+186626,0,0,0,21
+186627,0,0,0,21
+186628,0,0,0,21
+186629,0,0,0,21
+186630,0,0,0,21
+186631,0,0,0,21
+186632,0,0,0,21
+186633,0,0,0,21
+186634,0,0,0,21
+186635,0,0,0,21
+186636,0,0,0,21
+186637,0,0,0,21
+186638,0,0,0,21
+186639,0,0,0,21
+186640,0,0,0,21
+186641,0,0,0,21
+186642,0,0,0,21
+186643,0,0,0,21
+186644,0,0,0,21
+186645,0,0,0,21
+186646,0,0,0,21
+186647,0,0,0,21
+186648,0,0,0,21
+186649,0,0,0,21
+186650,0,0,0,21
+186651,0,0,0,21
+186652,0,0,0,21
+186653,0,0,0,21
+186654,0,0,0,21
+186655,0,0,0,21
+186656,0,0,0,21
+186657,0,0,0,21
+186658,0,0,0,21
+186659,0,0,0,21
+186660,0,0,0,21
+186661,0,0,0,21
+186662,0,0,0,21
+186663,0,0,0,21
+186664,0,0,0,21
+186665,0,0,0,21
+186666,0,0,0,21
+186667,0,0,0,21
+186668,0,0,0,21
+186669,0,0,0,21
+186670,0,0,0,21
+186671,0,0,0,21
+186672,0,0,0,21
+186673,0,0,0,21
+186674,0,0,0,21
+186675,0,0,0,21
+186676,0,0,0,21
+186677,0,0,0,21
+186678,0,0,0,21
+186679,0,0,0,21
+186680,0,0,0,21
+186681,0,0,0,21
+186682,0,0,0,21
+186683,0,0,0,21
+186684,0,0,0,21
+186685,0,0,0,21
+186686,0,0,0,21
+186687,0,0,0,21
+186688,0,0,0,21
+186689,0,0,0,21
+186690,0,0,0,21
+186691,0,0,0,21
+186692,0,0,0,21
+186693,0,0,0,21
+186694,0,0,0,21
+186695,0,0,0,21
+186696,0,0,0,21
+186697,0,0,0,21
+186698,0,0,0,21
+186699,0,0,0,21
+186700,0,0,0,21
+186701,0,0,0,21
+186702,0,0,0,21
+186703,0,0,0,21
+186704,0,0,0,21
+186705,0,0,0,21
+186706,0,0,0,21
+186707,0,0,0,21
+186708,0,0,0,21
+186709,0,0,0,21
+186710,0,0,0,21
+186711,0,0,0,21
+186712,0,0,0,21
+186713,0,0,0,21
+186714,0,0,0,21
+186715,0,0,0,21
+186716,0,0,0,21
+186717,0,0,0,21
+186718,0,0,0,21
+186719,0,0,0,21
+186720,0,0,0,21
+186721,0,0,0,21
+186722,0,0,0,21
+186723,0,0,0,21
+186724,0,0,0,21
+186725,0,0,0,21
+186726,0,0,0,21
+186727,0,0,0,21
+186728,0,0,0,21
+186729,0,0,0,21
+186730,0,0,0,21
+186731,0,0,0,21
+186732,0,0,0,21
+186733,0,0,0,21
+186734,0,0,0,21
+186735,0,0,0,21
+186736,0,0,0,21
+186737,0,0,0,21
+186738,0,0,0,21
+186739,0,0,0,21
+186740,0,0,0,21
+186741,0,0,0,21
+186742,0,0,0,21
+186743,0,0,0,21
+186744,0,0,0,21
+186745,0,0,0,21
+186746,0,0,0,21
+186747,0,0,0,21
+186748,0,0,0,21
+186749,0,0,0,21
+186750,0,0,0,21
+186751,0,0,0,21
+186752,0,0,0,21
+186753,0,0,0,21
+186754,0,0,0,21
+186755,0,0,0,21
+186756,0,0,0,21
+186757,0,0,0,21
+186758,0,0,0,21
+186759,0,0,0,21
+186760,0,0,0,21
+186761,0,0,0,21
+186762,0,0,0,21
+186763,0,0,0,21
+186764,0,0,0,21
+186765,0,0,0,21
+186766,0,0,0,21
+186767,0,0,0,21
+186768,0,0,0,21
+186769,0,0,0,21
+186770,0,0,0,21
+186771,0,0,0,21
+186772,0,0,0,21
+186773,0,0,0,21
+186774,0,0,0,21
+186775,0,0,0,21
+186776,0,0,0,21
+186777,0,0,0,21
+186778,0,0,0,21
+186779,0,0,0,21
+186780,0,0,0,21
+186781,0,0,0,21
+186782,0,0,0,21
+186783,0,0,0,21
+186784,0,0,0,21
+186785,0,0,0,21
+186786,0,0,0,21
+186787,0,0,0,21
+186788,0,0,0,21
+186789,0,0,0,21
+186790,0,0,0,21
+186791,0,0,0,21
+186792,0,0,0,21
+186793,0,0,0,21
+186794,0,0,0,21
+186795,0,0,0,21
+186796,0,0,0,21
+186797,0,0,0,21
+186798,0,0,0,21
+186799,0,0,0,21
+186800,0,0,0,21
+186801,0,0,0,21
+186802,0,0,0,21
+186803,0,0,0,21
+186804,0,0,0,21
+186805,0,0,0,21
+186806,0,0,0,21
+186807,0,0,0,21
+186808,0,0,0,21
+186809,0,0,0,21
+186810,0,0,0,21
+186811,0,0,0,21
+186812,0,0,0,21
+186813,0,0,0,21
+186814,0,0,0,21
+186815,0,0,0,21
+186816,0,0,0,21
+186817,0,0,0,21
+186818,0,0,0,21
+186819,0,0,0,21
+186820,0,0,0,21
+186821,0,0,0,21
+186822,0,0,0,21
+186823,0,0,0,21
+186824,0,0,0,21
+186825,0,0,0,21
+186826,0,0,0,21
+186827,0,0,0,21
+186828,0,0,0,21
+186829,0,0,0,21
+186830,0,0,0,21
+186831,0,0,0,21
+186832,0,0,0,21
+186833,0,0,0,21
+186834,0,0,0,21
+186835,0,0,0,21
+186836,0,0,0,21
+186837,0,0,0,21
+186838,0,0,0,21
+186839,0,0,0,21
+186840,0,0,0,21
+186841,0,0,0,21
+186842,0,0,0,21
+186843,0,0,0,21
+186844,0,0,0,21
+186845,0,0,0,21
+186846,0,0,0,21
+186847,0,0,0,21
+186848,0,0,0,21
+186849,0,0,0,21
+186850,1646.945916,0,0,21
+186851,1387.089318,0,0,21
+186852,1517.452962,0,0,21
+186853,2030.745717,0,0,21
+186854,2030.745725,0,0,21
+186855,2408.393272,0,0,21
+186856,2408.393281,0,0,21
+186857,2903.740974,0,0,21
+186858,2780.711206,0,0,21
+186859,3269.858438,0,0,21
+186860,3269.858443,0,0,21
+186861,3511.612323,0,0,21
+186862,3751.628874,0,0,21
+186863,3871.014044,0,0,21
+186864,4108.588917,0,0,21
+186865,4344.630527,0,0,21
+186866,4344.630499,0,0,21
+186867,4847.827578,0,0,21
+186868,6699.042781,0,0,21
+186869,6070.667923,0,0,21
+186870,7018.173102,0,0,21
+186871,7321.454278,0,0,21
+186872,7726.669918,0,0,21
+186873,8248.043004,0,0,21
+186874,8491.668783,0,0,21
+186875,8899.778375,0,0,21
+186876,9378.931937,0,0,21
+186877,9651.456012,0,0,21
+186878,10036.54895,0,0,21
+186879,10388.31865,0,0,21
+186880,10776.97996,0,0,21
+186881,11140.79671,0,0,21
+186882,11510.8152,0,0,21
+186883,11761.06689,0,0,21
+186884,12128.6356,0,0,21
+186885,12821.6041,0,0,21
+186886,12969.17118,0,0,21
+186887,13283.01538,0,0,21
+186888,13768.16236,0,0,21
+186889,14053.53493,0,0,21
+186890,14309.20833,0,0,21
+186891,14894.11759,0,0,21
+186892,14980.51642,0,0,21
+186893,15426.49871,0,0,21
+186894,15586.46581,0,0,21
+186895,16174.36046,0,0,21
+186896,16452.37711,0,0,21
+186897,16587.28313,0,0,21
+186898,17068.01857,0,0,21
+186899,17317.48412,0,0,21
+186900,17562.91382,0,0,21
+186901,19005.92485,0,0,21
+186902,19374.22237,0,0,21
+186903,19940.38535,0,0,21
+186904,20335.23926,0,0,21
+186905,20677.4793,0,0,21
+186906,21047.0079,0,0,21
+186907,21511.08783,0,0,21
+186908,21743.99377,0,0,21
+186909,22234.30429,0,0,21
+186910,22571.36349,0,0,21
+186911,22938.01224,0,0,21
+186912,23067.99131,0,0,21
+186913,23942.00662,0,0,21
+186914,23909.80188,0,0,21
+186915,24529.0534,0,0,21
+186916,24754.93456,0,0,21
+186917,25279.8072,0,0,21
+186918,25483.48023,0,0,21
+186919,25886.84286,0,0,21
+186920,26546.41811,0,0,21
+186921,26821.65119,0,0,21
+186922,27362.82095,0,0,21
+186923,27434.32792,0,0,21
+186924,28069.44214,0,0,21
+186925,28109.52001,0,0,21
+186926,28685.10308,0,0,21
+186927,28790.5078,535.0416812,0,21
+186928,29257.99731,1522.141213,0,21
+186929,29411.76046,1199.902127,0,21
+186930,29933.64544,1522.141424,0,21
+186931,30089.35251,1681.341645,0,21
+186932,30311.44439,1839.40381,0,21
+186933,30757.93784,2152.435284,0,21
+186934,31107.55037,2152.435265,0,21
+186935,31145.86158,2461.764523,0,21
+186936,31756.15123,2615.168048,0,21
+186937,31812.46755,2919.656009,0,21
+186938,32244.31152,2767.786598,0,21
+186939,32479.38676,3371.07738,0,21
+186940,32512.38049,3221.273656,0,21
+186941,33336.45202,3520.243506,0,21
+186942,32977.92176,3668.79437,0,21
+186943,33820.36955,3816.750076,0,21
+186944,33704.9095,3964.129442,0,21
+186945,29156.59712,4257.226301,0,21
+186946,29253.30746,4257.226137,0,21
+186947,29356.90475,4548.208631,0,21
+186948,29708.09166,4548.208445,0,21
+186949,29633.41228,4837.184323,0,21
+186950,30263.70475,4980.949492,0,21
+186951,30191.58376,5124.248369,0,21
+186952,30407.74348,5267.090762,0,21
+186953,30538.94682,5725.110011,0,21
+186954,30958.89214,5676.295358,0,21
+186955,30914.21347,5856.963446,0,21
+186956,31300.93764,6158.075819,0,21
+186957,31263.43948,6177.233335,0,21
+186958,31749.12243,6495.318558,0,21
+186959,31698.79193,6653.583765,0,21
+186960,32031.81769,6662.923285,0,21
+186961,32132.80968,7116.226337,0,21
+186962,32374.11727,7143.778397,0,21
+186963,32571.6808,7428.544026,0,21
+186964,32628.57822,7611.172669,0,21
+186965,32897.54646,7748.098336,0,21
+186966,33063.58491,8074.656875,0,21
+186967,33271.05775,8074.655823,0,21
+186968,33278.8537,8516.817872,0,21
+186969,33531.66182,8534.395232,0,21
+186970,33708.63732,8838.940193,0,21
+186971,33948.04881,8990.637859,0,21
+186972,33967.38357,9141.960319,0,21
+186973,34195.39344,9443.497914,0,21
+186974,34407.27861,9593.722003,0,21
+186975,34408.77523,9760.651141,0,21
+186976,34867.55999,10042.27237,0,21
+186977,34634.10798,10059.22315,0,21
+186978,35175.47888,10496.12932,0,21
+186979,35007.01165,10635.53936,208.7143474,21
+186980,35410.33474,10668.97636,1654.580401,21
+186981,35431.32584,11077.02174,918.4877631,21
+186982,35728.16002,11110.16685,1533.83423,21
+186983,35585.64357,11515.63331,1533.899683,21
+186984,36146.8667,11532.08834,1775.098698,21
+186985,36028.2959,11693.9891,2013.993122,21
+186986,36195.64096,12112.40418,2132.715018,21
+186987,36413.90454,12112.40238,2250.956961,21
+186988,36568.25578,12416.91292,2485.923609,21
+186989,36729.23336,12416.91098,2719.168094,21
+186990,36882.98138,12973.98935,2719.378015,21
+186991,36879.16944,12847.13745,3066.194052,21
+186992,37206.96679,13148.43568,3066.462147,21
+186993,37112.86043,13400.9256,3410.031331,21
+186994,37527.68494,13558.51315,3410.364211,21
+186995,37719.76838,13590.05974,3637.877102,21
+186996,37575.3854,13966.31536,3864.154944,21
+186997,37957.05303,14138.31309,3864.584268,21
+186998,37878.27298,14138.3105,4201.620016,21
+186999,38220.20923,14558.52332,4202.129104,21
+187000,38189.24873,14682.56791,4536.700654,21
+187001,38616.21568,14872.28167,4537.295753,21
+187002,38447.96279,15450.12277,4759.275077,21
+187003,38628.29153,15421.35252,4870.238514,21
+187004,38945.09076,15770.78886,5090.795585,21
+187005,38890.95818,15965.38511,5201.119131,21
+187006,39066.04625,16281.38411,5428.857824,21
+187007,39308.54083,16367.11493,5726.428832,21
+187008,44520.79471,16775.3591,5804.853389,21
+187009,45362.62655,16873.67724,6069.137626,21
+187010,45482.61734,17156.91676,6100.895786,21
+187011,46368.49853,17364.80876,6440.620084,21
+187012,46115.97445,17671.34186,6479.622302,21
+187013,46792.2378,18559.97025,6824.906901,21
+187014,47011.02955,21398.75592,6841.187177,21
+187015,47162.34389,20471.70643,6993.804648,21
+187016,47740.22288,21542.49832,7314.499872,21
+187017,47891.96888,22326.94484,7360.055656,21
+187018,48341.855,22864.74649,7588.143557,21
+187019,48254.82019,23401.61053,7618.835445,21
+187020,48718.57571,24211.52362,8071.104534,21
+187021,0,0,0,21
+187022,0,0,0,21
+187023,0,0,0,21
+187024,0,0,0,21
+187025,0,367750.9138,665669.0048,21
+187026,332617.4398,0,0,21
+187027,0,0,0,21
+187028,0,0,0,21
+187029,0,0,0,21
+187030,0,0,0,21
+187031,0,0,0,21
+187032,0,0,0,21
+187033,0,0,0,21
+187034,0,0,0,21
+187035,0,0,0,21
+187036,0,0,0,21
+187037,0,0,0,21
+187038,0,0,0,21
+187039,0,0,0,21
+187040,0,0,0,21
+187041,0,0,0,21
+187042,0,0,0,21
+187043,0,0,0,21
+187044,0,0,0,21
+187045,0,0,0,21
+187046,0,0,0,21
+187047,0,0,0,21
+187048,0,0,0,21
+187049,0,0,0,21
+187050,0,0,0,21
+187051,0,0,0,21
+187052,0,0,0,21
+187053,0,0,0,21
+187054,0,0,0,21
+187055,0,0,0,21
+187056,0,0,0,21
+187057,0,0,0,21
+187058,0,0,0,21
+187059,0,368503.7345,666666.6868,21
+187060,0,0,0,21
+187061,0,0,0,21
+187062,334198.1187,0,0,21
+187063,0,0,0,21
+187064,0,0,0,21
+187065,0,0,0,21
+187066,0,0,0,21
+187067,0,0,0,21
+187068,0,0,0,21
+187069,0,0,0,21
+187070,0,0,0,21
+187071,0,0,0,21
+187072,0,0,0,21
+187073,0,0,0,21
+187074,0,0,0,21
+187075,0,0,0,21
+187076,0,0,0,21
+187077,0,0,0,21
+187078,0,0,0,21
+187079,0,0,0,21
+187080,0,0,0,15.6
+187081,0,0,0,15.6
+187082,0,0,0,15.6
+187083,0,0,0,15.6
+187084,0,0,0,15.6
+187085,0,0,0,15.6
+187086,0,0,0,15.6
+187087,0,0,0,15.6
+187088,0,0,0,15.6
+187089,0,0,0,15.6
+187090,0,0,0,15.6
+187091,0,0,0,15.6
+187092,0,0,0,15.6
+187093,0,0,0,15.6
+187094,0,368337.0155,667577.85,15.6
+187095,0,0,0,15.6
+187096,0,0,0,15.6
+187097,0,0,0,15.6
+187098,335336.4559,0,0,15.6
+187099,0,0,0,15.6
+187100,0,0,0,15.6
+187101,0,0,0,15.6
+187102,0,0,0,15.6
+187103,0,0,0,15.6
+187104,0,0,0,15.6
+187105,0,0,0,15.6
+187106,0,0,0,15.6
+187107,0,0,0,15.6
+187108,0,0,0,15.6
+187109,0,0,0,15.6
+187110,0,0,0,15.6
+187111,0,0,0,15.6
+187112,0,0,0,15.6
+187113,0,0,0,15.6
+187114,0,0,0,15.6
+187115,0,0,0,15.6
+187116,0,0,0,15.6
+187117,0,0,0,15.6
+187118,0,0,0,15.6
+187119,0,0,0,15.6
+187120,0,0,0,15.6
+187121,0,0,0,15.6
+187122,0,0,0,15.6
+187123,0,0,0,15.6
+187124,0,0,0,15.6
+187125,0,0,0,15.6
+187126,0,0,0,15.6
+187127,0,0,0,15.6
+187128,0,0,0,15.6
+187129,0,368333.8895,668415.6781,15.6
+187130,0,0,0,15.6
+187131,0,0,0,15.6
+187132,0,0,0,15.6
+187133,0,0,0,15.6
+187134,336207.9124,0,0,15.6
+187135,0,0,0,15.6
+187136,0,0,0,15.6
+187137,0,0,0,15.6
+187138,0,0,0,15.6
+187139,0,0,0,15.6
+187140,0,0,0,15.6
+187141,0,0,0,15.6
+187142,0,0,0,15.6
+187143,0,0,0,15.6
+187144,0,0,0,15.6
+187145,0,0,0,15.6
+187146,0,0,0,15.6
+187147,0,0,0,15.6
+187148,0,0,0,15.6
+187149,0,0,0,15.6
+187150,0,0,0,15.6
+187151,0,0,0,15.6
+187152,0,0,0,15.6
+187153,0,0,0,15.6
+187154,0,0,0,15.6
+187155,0,0,0,15.6
+187156,0,0,0,15.6
+187157,0,0,0,15.6
+187158,0,0,0,15.6
+187159,0,0,0,15.6
+187160,0,0,0,15.6
+187161,0,0,0,15.6
+187162,0,0,0,15.6
+187163,0,0,0,15.6
+187164,0,368321.4798,669178.0143,15.6
+187165,0,0,0,15.6
+187166,0,0,0,15.6
+187167,0,0,0,15.6
+187168,0,0,0,15.6
+187169,0,0,0,15.6
+187170,334613.8844,0,0,15.6
+187171,0,0,0,15.6
+187172,0,0,0,15.6
+187173,0,0,0,15.6
+187174,0,0,0,15.6
+187175,0,0,0,15.6
+187176,0,0,0,15.6
+187177,0,0,0,15.6
+187178,0,0,0,15.6
+187179,0,80.25760191,0,15.6
+187180,0,0,0,15.6
+187181,0,0,0,15.6
+187182,0,0,0,15.6
+187183,0,105.2169421,0,15.6
+187184,0,0,0,15.6
+187185,0,0,0,15.6
+187186,0,0,0,15.6
+187187,0,96.64863482,0,15.6
+187188,0,0,0,15.6
+187189,0,0,0,15.6
+187190,0,0,0,15.6
+187191,0,101.0520979,0,15.6
+187192,0,0,0,15.6
+187193,0,0,0,15.6
+187194,0,0,0,15.6
+187195,0,102.6816765,0,15.6
+187196,0,0,0,15.6
+187197,0,0,0,15.6
+187198,0,0,0,15.6
+187199,0,368410.3229,669869.9604,15.6
+187200,0,0,0,15.6
+187201,0,0,0,15.6
+187202,0,0,0,15.6
+187203,0,97.32501702,0,15.6
+187204,0,0,0,15.6
+187205,0,0,0,15.6
+187206,334983.5614,0,0,15.6
+187207,0,85.85435362,0,15.6
+187208,0,0,0,15.6
+187209,0,0,0,15.6
+187210,0,0,0,15.6
+187211,0,109.6913855,0,15.6
+187212,0,0,0,15.6
+187213,0,0,0,15.6
+187214,0,0,0,15.6
+187215,0,100.3606495,0,15.6
+187216,0,0,0,15.6
+187217,0,0,0,15.6
+187218,0,0,0,15.6
+187219,0,100.0767964,0,15.6
+187220,0,0,0,15.6
+187221,0,0,0,15.6
+187222,0,0,0,15.6
+187223,0,96.55525005,0,15.6
+187224,0,0,0,15.6
+187225,0,0,0,15.6
+187226,0,0,0,15.6
+187227,0,85.7461451,0,15.6
+187228,0,0,0,15.6
+187229,0,0,0,15.6
+187230,0,0,0,15.6
+187231,0,100.3965099,0,15.6
+187232,0,0,0,15.6
+187233,0,0,0,15.6
+187234,0,368334.7104,670502.0502,15.6
+187235,0,82.31732352,0,15.6
+187236,0,0,0,15.6
+187237,0,0,0,15.6
+187238,0,0,0,15.6
+187239,0,83.43949345,0,15.6
+187240,0,0,0,15.6
+187241,0,0,0,15.6
+187242,336510.22,0,0,15.6
+187243,0,86.40101983,0,15.6
+187244,0,0,0,15.6
+187245,0,0,0,15.6
+187246,0,0,0,15.6
+187247,0,104.3726496,0,15.6
+187248,0,0,0,15.6
+187249,0,0,0,15.6
+187250,0,0,0,15.6
+187251,0,100.5291819,0,15.6
+187252,0,0,0,15.6
+187253,0,0,0,15.6
+187254,0,0,0,15.6
+187255,0,104.3437324,0,15.6
+187256,0,0,0,15.6
+187257,0,0,0,15.6
+187258,0,0,0,15.6
+187259,0,104.5205047,0,15.6
+187260,0,0,0,15.6
+187261,0,0,0,15.6
+187262,0,0,0,15.6
+187263,0,102.949553,0,15.6
+187264,0,0,0,15.6
+187265,0,0,0,15.6
+187266,0,0,0,15.6
+187267,0,100.9546548,0,15.6
+187268,0,0,0,15.6
+187269,0,368349.7184,671079.0993,15.6
+187270,0,0,0,15.6
+187271,0,85.68790244,0,15.6
+187272,0,0,0,15.6
+187273,0,0,0,15.6
+187274,0,0,0,15.6
+187275,0,80.38351836,0,15.6
+187276,0,0,0,15.6
+187277,0,0,0,15.6
+187278,337296.739,0,0,15.6
+187279,0,82.9147766,0,15.6
+187280,0,0,0,15.6
+187281,0,0,0,15.6
+187282,0,0,0,15.6
+187283,0,87.03117452,0,15.6
+187284,0,0,0,15.6
+187285,0,0,0,15.6
+187286,0,0,0,15.6
+187287,0,97.56364108,0,15.6
+187288,0,0,0,15.6
+187289,0,0,0,15.6
+187290,0,0,0,15.6
+187291,0,83.97685813,0,15.6
+187292,0,0,0,15.6
+187293,0,0,0,15.6
+187294,0,0,0,15.6
+187295,0,103.2232301,0,15.6
+187296,0,0,0,15.6
+187297,0,0,0,15.6
+187298,0,0,0,15.6
+187299,0,87.58293311,0,15.6
+187300,0,0,0,15.6
+187301,0,0,0,15.6
+187302,0,0,0,15.6
+187303,0,107.1984088,0,15.6
+187304,0,368335.9716,671606.4315,15.6
+187305,0,0,0,15.6
+187306,0,0,0,15.6
+187307,0,85.57193807,0,15.6
+187308,0,0,0,15.6
+187309,0,0,0,15.6
+187310,0,0,0,15.6
+187311,0,96.12759474,0,15.6
+187312,0,0,0,15.6
+187313,0,0,0,15.6
+187314,337486.2342,0,0,15.6
+187315,0,87.15999519,0,15.6
+187316,0,0,0,15.6
+187317,0,0,0,15.6
+187318,0,0,0,15.6
+187319,0,105.9624769,0,15.6
+187320,0,0,0,15.6
+187321,0,0,0,15.6
+187322,0,0,0,15.6
+187323,0,84.98856951,0,15.6
+187324,0,0,0,15.6
+187325,0,0,0,15.6
+187326,0,433997.1375,0,15.6
+187327,0,0,0,15.6
+187328,0,0,0,15.6
+187329,0,0,0,15.6
+187330,0,0,0,15.6
+187331,0,0,0,15.6
+187332,0,0,0,15.6
+187333,0,0,0,15.6
+187334,0,0,0,15.6
+187335,0,0,0,15.6
+187336,0,0,0,15.6
+187337,0,433160.0726,0,15.6
+187338,0,0,0,15.6
+187339,0,368363.7418,672090.7746,15.6
+187340,0,0,0,15.6
+187341,0,0,0,15.6
+187342,0,0,0,15.6
+187343,0,0,0,15.6
+187344,0,0,0,15.6
+187345,0,0,0,15.6
+187346,0,0,0,15.6
+187347,0,0,0,15.6
+187348,0,432998.5659,0,15.6
+187349,0,0,0,15.6
+187350,0,0,0,15.6
+187351,335738.9967,0,0,15.6
+187352,0,0,0,15.6
+187353,0,0,0,15.6
+187354,0,0,0,15.6
+187355,0,0,0,15.6
+187356,0,0,0,15.6
+187357,0,0,0,15.6
+187358,0,0,0,15.6
+187359,0,432900.5876,0,15.6
+187360,0,0,0,15.6
+187361,0,0,0,15.6
+187362,0,0,0,15.6
+187363,0,0,0,15.6
+187364,0,0,0,15.6
+187365,0,0,0,15.6
+187366,0,0,0,15.6
+187367,0,0,0,15.6
+187368,0,0,0,15.6
+187369,0,0,0,15.6
+187370,0,0,0,15.6
+187371,0,0,0,15.6
+187372,0,0,0,15.6
+187373,0,0,0,15.6
+187374,0,368407.5251,672540.5483,15.6
+187375,0,0,0,15.6
+187376,0,0,0,15.6
+187377,0,433553.5036,0,15.6
+187378,0,0,0,15.6
+187379,0,0,0,15.6
+187380,0,0,0,15.6
+187381,0,0,0,15.6
+187382,0,0,0,15.6
+187383,0,0,97371.51637,15.6
+187384,0,0,0,15.6
+187385,0,0,0,15.6
+187386,0,0,0,15.6
+187387,0,0,0,15.6
+187388,336797.5978,432729.5938,0,15.6
+187389,0,0,0,15.6
+187390,0,0,0,15.6
+187391,0,0,0,15.6
+187392,0,0,0,15.6
+187393,0,0,0,15.6
+187394,0,0,0,15.6
+187395,0,0,0,15.6
+187396,0,0,0,15.6
+187397,0,0,0,15.6
+187398,0,0,94763.28021,15.6
+187399,0,432610.2986,0,15.6
+187400,0,0,0,15.6
+187401,0,0,0,15.6
+187402,0,0,0,15.6
+187403,0,0,0,15.6
+187404,0,0,0,15.6
+187405,0,0,0,15.6
+187406,0,0,0,15.6
+187407,0,0,0,15.6
+187408,0,0,744242.9641,15.6
+187409,0,368391.1052,0,15.6
+187410,0,0,0,15.6
+187411,0,0,90415.49185,15.6
+187412,0,0,0,15.6
+187413,0,0,0,15.6
+187414,0,0,0,15.6
+187415,0,0,87856.99325,15.6
+187416,0,0,0,15.6
+187417,0,0,0,15.6
+187418,0,0,0,15.6
+187419,0,0,85730.32197,15.6
+187420,0,0,0,15.6
+187421,0,0,0,15.6
+187422,0,0,0,15.6
+187423,337604.295,0,0,15.6
+187424,0,0,0,15.6
+187425,0,0,0,15.6
+187426,0,0,0,15.6
+187427,0,0,0,15.6
+187428,0,0,0,15.6
+187429,0,2.963278879,0,15.6
+187430,0,0,0,15.6
+187431,0,81.33881167,83154.89807,15.6
+187432,0,0,0,15.6
+187433,0,0,80983.09682,15.6
+187434,0,0,0,15.6
+187435,0,0,0,15.6
+187436,0,59.75570619,0,15.6
+187437,0,0,78673.2699,15.6
+187438,0,0,0,15.6
+187439,0,0,76621.62893,15.6
+187440,0,0,0,17.8
+187441,0,47544.48403,0,17.8
+187442,0,4245.533972,670253.9847,17.8
+187443,0,387631.2582,74547.81084,17.8
+187444,0,21243.48599,0,17.8
+187445,0,19169.00967,0,17.8
+187446,0,18820.10728,72503.93826,17.8
+187447,0,19013.57468,0,17.8
+187448,0,20230.56171,70580.54161,17.8
+187449,0,19663.4075,0,17.8
+187450,0,19517.11238,0,17.8
+187451,0,19528.4598,0,17.8
+187452,0,19593.33692,68579.51271,17.8
+187453,0,19521.91525,0,17.8
+187454,0,19414.976,66770.29241,17.8
+187455,0,19435.3315,0,17.8
+187456,0,19188.48154,0,17.8
+187457,0,19169.20281,0,17.8
+187458,338127.3905,19055.32774,64865.05226,17.8
+187459,0,18926.28558,0,17.8
+187460,0,18818.38319,63170.24038,17.8
+187461,0,18749.32975,0,17.8
+187462,0,18642.39836,0,17.8
+187463,0,18497.4552,0,17.8
+187464,0,18527.95728,61339.63838,17.8
+187465,0,18283.21679,0,17.8
+187466,0,18213.00766,59730.78904,17.8
+187467,0,18069.19761,0,17.8
+187468,0,17994.82028,0,17.8
+187469,0,16799.71073,0,17.8
+187470,1517.452964,16429.68445,0,17.8
+187471,16400.28524,0,58275.95171,17.8
+187472,11743.31209,0,0,17.8
+187473,19880.21385,0,0,17.8
+187474,16741.74382,0,0,17.8
+187475,18279.29187,0,0,17.8
+187476,19015.20642,0,595363.1542,17.8
+187477,19336.68166,368369.3614,0,17.8
+187478,19648.52929,0,0,17.8
+187479,20065.74517,0,0,17.8
+187480,20481.41164,0,0,17.8
+187481,20587.10116,4.263589462,0,17.8
+187482,21308.1898,0,63209.24002,17.8
+187483,21207.14484,19004.75683,98363.69432,17.8
+187484,21823.84608,69314.24236,71070.10393,17.8
+187485,21928.15344,29781.01153,106748.3018,17.8
+187486,22537.29728,72853.34078,87441.4262,17.8
+187487,22337.08443,53332.99805,92296.70148,17.8
+187488,23047.49784,59905.69583,108688.3572,17.8
+187489,23150.67932,59767.92704,111335.5809,17.8
+187490,23349.56441,60106.21611,106950.6667,17.8
+187491,23760.47577,60218.6456,110113.1097,17.8
+187492,23753.61266,60524.60404,110785.9685,17.8
+187493,335353.051,60443.00483,111626.0025,17.8
+187494,0,60443.00813,112388.1548,17.8
+187495,0,61084.25739,112906.0446,17.8
+187496,0,60666.70589,113973.1434,17.8
+187497,0,61195.70025,114484.6311,17.8
+187498,0,60889.74819,114955.2736,17.8
+187499,0,61364.22857,116289.1624,17.8
+187500,0,61112.14072,117093.4267,20
+187501,34268.79788,847500.5582,1191238.618,20
+187502,75067.65736,1659.447789,437749.7416,20
+187503,73076.74171,13539.84279,99710.01871,20
+187504,76476.44578,132005.0507,200621.3669,20
+187505,116382.0055,152481.0121,312821.574,20
+187506,89902.32243,106542.2762,233408.2112,20
+187507,99337.46169,119151.5571,244472.154,20
+187508,98869.82226,118589.8953,248116.4485,20
+187509,99357.31522,118611.5538,249977.4131,20
+187510,99399.05769,117481.5062,254495.0872,20
+187511,100029.5171,117557.1168,254922.3293,20
+187512,100927.0854,117012.2064,257517.7433,20
+187513,100846.0963,116056.8244,258848.2524,20
+187514,100705.6249,115708.5184,260994.7666,20
+187515,101434.4464,115367.9251,262664.4429,20
+187516,101438.199,114742.079,264867.4934,20
+187517,101877.5911,114646.7272,266456.7227,20
+187518,101892.8431,113759.0152,268473.1378,20
+187519,102180.0155,114046.0809,269593.3805,20
+187520,102625.4066,113165.7432,271571.8435,20
+187521,102708.6853,113032.9831,273417.1052,20
+187522,102849.8753,112366.0311,275037.9876,20
+187523,103269.3734,112816.4403,275984.375,20
+187524,118339.4165,111702.1806,278133.999,20
+187525,119991.1196,111751.0063,279212.3666,20
+187526,119838.8541,111423.074,280936.4031,20
+187527,120984.2013,111993.7989,282092.8965,20
+187528,121182.5193,112572.0269,284126.3474,20
+187529,121699.2528,111690.1024,284760.0121,20
+187530,121805.1314,111813.8412,286803.5722,20
+187531,122719.9024,111201.5656,287667.8165,20
+187532,122781.0609,111445.0574,289271.667,20
+187533,123244.2057,111230.5893,290460.0653,20
+187534,123483.2366,110753.0699,291531.5032,20
+187535,123942.8057,110532.5746,293072.2041,20
+187536,124108.7917,110342.441,294216.2401,20
+187537,124507.3225,110110.9328,295407.716,20
+187538,125091.0768,109953.39,296701.5376,20
+187539,124901.1727,109747.1397,297882.3249,20
+187540,125436.517,109580.1605,298736.0597,20
+187541,125826.0611,109584.8692,300255.2194,20
+187542,126043.4253,109129.2346,301396.4628,20
+187543,126426.6087,108984.0696,302143.2287,20
+187544,126390.4107,108883.7446,303225.2658,20
+187545,126980.5865,108550.5078,304666.1453,20
+187546,127033.7911,108361.3285,292072.6697,20
+187547,127484.174,107942.8709,290469.3249,20
+187548,127697.5882,108014.7617,289860.629,20
+187549,127982.6172,107634.8167,289245.3048,20
+187550,128059.2028,107446.6237,288810.7972,20
+187551,128477.1813,107051.1715,288916.7722,20
+187552,128702.8121,106878.5227,288077.1253,20
+187553,129137.1327,106667.7355,287656.7658,20
+187554,129018.6924,106563.5854,286527.7663,20
+187555,129610.3103,106011.0535,286135.6844,20
+187556,129766.6867,106019.0113,285291.537,20
+187557,130147.0466,105920.7583,284431.8675,20
+187558,130137.2213,105301.3933,283751.9824,20
+187559,130394.2396,105310.7088,283009.5718,20
+187560,130957.5514,104685.4424,281747.066,21
+187561,122129.5228,97736.17178,269136.2974,21
+187562,121670.2562,97066.91168,265972.2721,21
+187563,121157.3444,96617.85839,263837.7892,21
+187564,121028.6844,96155.94906,261883.8968,21
+187565,121010.8995,96053.74191,259493.0657,21
+187566,120732.261,95677.93564,257596.5384,21
+187567,120689.8557,95619.53564,255982.0968,21
+187568,120573.7419,95372.48932,253124.514,21
+187569,120538.724,94902.02279,251939.4231,21
+187570,120597.8685,94982.53565,249727.4997,21
+187571,120090.3787,94608.01658,247958.7553,21
+187572,120244.5661,94412.85831,245727.878,21
+187573,120220.0626,94301.3561,243969.7053,21
+187574,120062.9725,93578.61068,242661.2656,21
+187575,119833.9935,94165.00824,240245.2064,21
+187576,119940.7847,93412.44067,238346.1534,21
+187577,119649.8603,93305.19056,236778.3409,21
+187578,119817.2914,93294.13523,234742.6001,21
+187579,119359.6182,92729.31501,232773.6878,21
+187580,119623.7205,92738.51438,230725.4331,21
+187581,119268.2151,92547.46148,229085.0095,21
+187582,119503.0612,92247.44559,226837.9607,21
+187583,119036.5169,92049.91679,225029.8944,21
+187584,119033.782,91736.42336,223256.3747,21
+187585,119202.3109,92020.58668,220647.2719,21
+187586,118855.9332,90992.12043,219472.5731,21
+187587,118897.2856,91281.6844,216849.625,21
+187588,118563.8373,91130.62181,215588.1815,21
+187589,118880.5067,90840.94074,213216.4183,21
+187590,118416.1684,90411.67981,211597.839,21
+187591,118433.2578,90478.05501,209481.3644,21
+187592,118254.336,89978.70269,207743.7304,21
+187593,118542.3101,90252.98954,206046.9155,21
+187594,118025.8774,89573.52,203830.3978,21
+187595,118142.7136,89387.02739,202554.6497,21
+187596,118045.8594,89770.07331,200564.669,21
+187597,103266.3498,88524.09539,199684.3366,21
+187598,102671.5473,89375.04824,198299.8216,21
+187599,102022.9667,88455.63491,197116.0538,21
+187600,102168.4382,88781.09199,195714.9671,21
+187601,101727.5941,88081.15402,194835.458,21
+187602,101350.5181,88064.96955,193819.3852,21
+187603,101044.4442,88100.67898,192819.5452,21
+187604,101097.0513,87706.72756,191369.1085,21
+187605,100510.6874,87137.42526,190842.9506,21
+187606,100405.5508,87566.17346,189443.1532,21
+187607,100244.6742,87084.61383,188766.1341,21
+187608,100251.6628,86744.40744,187410.0264,21
+187609,99664.64229,86700.83573,186871.7822,21
+187610,99618.21133,86341.06131,185595.062,21
+187611,99600.85565,86602.33402,184618.9553,21
+187612,99056.15075,85691.06429,183758.3927,21
+187613,99362.30024,85994.22641,182681.4994,21
+187614,98562.76324,85890.23921,182142.6162,21
+187615,98797.27195,85008.70163,180730.5142,21
+187616,98586.40222,85556.33644,180113.9482,21
+187617,98208.73406,85040.16326,179097.4813,21
+187618,98333.21031,84766.60795,178228.2029,21
+187619,98001.54327,84740.09782,177487.3189,21
+187620,97581.34631,84215.13168,96847.07926,21
+187621,41971.68714,45759.98593,32778.94301,21
+187622,39697.4914,42896.97325,28340.69331,21
+187623,39796.77838,42065.17145,27357.56578,21
+187624,39201.0805,41706.01919,26227.84396,21
+187625,39157.98997,40753.9389,25499.82018,21
+187626,38759.30996,40582.52581,24150.58174,21
+187627,38896.44291,39560.25028,23858.23363,21
+187628,38510.33468,39541.6576,22558.14412,21
+187629,38460.02329,38772.44968,22030.38616,21
+187630,38481.3397,38488.36733,21210.79687,21
+187631,38178.16397,37662.21167,20482.93239,21
+187632,38227.97643,37891.77402,19668.27258,21
+187633,38244.87377,36792.37668,18929.7076,21
+187634,38045.68017,36770.5695,18150.37753,21
+187635,38008.62077,36110.04464,17625.82315,21
+187636,38028.24361,36029.81971,16669.3048,21
+187637,37826.28604,35323.02567,16107.22767,21
+187638,38005.51724,35016.93531,15745.28278,21
+187639,37806.00065,34613.99746,15597.79258,21
+187640,37831.75494,34238.92977,15287.22375,21
+187641,37797.08089,34064.51311,15173.54271,21
+187642,37987.59909,33180.24746,14842.66071,21
+187643,37623.24273,33364.28766,14606.5411,21
+187644,37990.13246,32754.56415,14469.76903,21
+187645,37625.61928,32260.3927,14243.05799,21
+187646,37825.14754,31844.20393,13906.07512,21
+187647,37801.73142,31512.41136,13807.77562,21
+187648,37818.58415,31064.95838,13566.98586,21
+187649,37839.47759,30396.43234,13244.80151,21
+187650,38006.13207,30447.4939,13195.91741,21
+187651,37855.38027,29467.06462,12841.62738,21
+187652,37850.82024,29511.37179,12696.8964,21
+187653,38149.25481,28792.93545,12484.1258,21
+187654,37844.27478,28497.88651,12170.76439,21
+187655,38091.13367,27917.8283,12097.80494,21
+187656,38149.48295,27702.85405,11946.14298,21
+187657,38102.33935,27238.87949,11506.21192,21
+187658,38281.85374,26896.16274,11495.40571,21
+187659,38136.45488,26621.03909,11240.95093,21
+187660,38473.56138,26071.14278,11018.29598,21
+187661,38369.51921,25690.71106,10792.17294,21
+187662,38412.05044,25116.27439,10647.34564,21
+187663,38572.65158,25045.51409,10404.50962,21
+187664,38562.52375,24288.05237,10181.96861,21
+187665,38713.56452,24105.73437,10047.94583,21
+187666,38972.32409,23636.59413,9767.298116,21
+187667,38630.08428,23286.16368,9580.938136,21
+187668,39044.54292,22758.44026,9429.358382,21
+187669,39038.04553,22770.72839,9176.910075,21
+187670,39264.89671,21916.83217,9050.232454,21
+187671,39117.8745,21689.35942,8702.051498,21
+187672,39475.72376,21396.40863,8622.193092,21
+187673,39351.63201,20935.0668,8471.104846,21
+187674,39761.23622,20767.9625,8142.485111,21
+187675,39551.05524,20067.26132,7934.078851,21
+187676,39890.27363,20009.00117,7865.583683,21
+187677,40024.08963,19642.54417,7585.287673,21
+187678,40027.76734,19035.59597,7333.9802,21
+187679,40268.1516,18780.51873,7178.462277,21
+187680,40268.92261,18729.20422,7105.980473,21
+187681,40267.80849,17873.79996,6595.094138,21
+187682,455965.6564,18110.28119,6567.699336,21
+187683,39809.55496,16977.54062,6040.055509,21
+187684,39774.73128,17321.9018,5965.847691,21
+187685,39490.87277,16550.76467,5752.013895,21
+187686,39357.35099,16435.60589,5244.105093,21
+187687,39237.18116,15790.22928,5162.417033,21
+187688,39271.35343,15846.30896,4812.885414,21
+187689,38794.47984,15039.46797,4593.09427,21
+187690,38972.10614,15058.94196,4322.696171,21
+187691,38446.5025,14363.12589,3976.199259,21
+187692,38541.98542,14243.58411,3897.343228,21
+187693,38485.46463,13705.29554,3484.659019,21
+187694,38062.07301,13185.66466,3403.288332,21
+187695,38019.69547,12559.73502,3259.938829,21
+187696,37819.41856,12296.89237,3193.149961,21
+187697,37761.31907,11710.59131,3079.726492,21
+187698,37741.02332,11618.14157,2968.083242,21
+187699,37125.90525,10784.17373,2864.734966,21
+187700,37555.13587,10640.78376,2739.098578,21
+187701,37068.30598,10237.29097,2694.398672,21
+187702,36834.60804,9678.502986,2529.567922,21
+187703,36966.01998,9261.045014,2450.740104,21
+187704,36585.5411,8962.911633,2343.495954,21
+187705,36622.60296,8463.298323,2250.311249,21
+187706,36325.59231,7813.94244,2142.312181,21
+187707,36300.95573,7586.690677,2024.16299,21
+187708,36136.74193,6844.748022,1937.615001,21
+187709,36039.81643,6844.748284,1831.050991,21
+187710,35622.99176,5806.163503,1730.271656,21
+187711,35884.5406,5526.662186,1620.32888,21
+187712,35564.65221,5034.50119,1531.731426,21
+187713,35251.35008,4852.53425,1391.818071,21
+187714,35515.82897,4606.863892,1339.315948,21
+187715,35084.07604,4557.345616,1251.704039,21
+187716,34880.85985,4357.322059,1213.653972,21
+187717,35049.13973,4300.795111,1110.528786,21
+187718,34784.94375,4058.436928,1084.335559,21
+187719,34639.82229,3855.729111,990.2066373,21
+187720,34363.20739,3788.925307,963.5715185,21
+187721,34640.83499,3718.671353,936.8371472,21
+187722,33940.47405,3362.929326,910.0015844,21
+187723,34399.98723,3252.995287,896.5566486,21
+187724,33874.39359,3210.791467,856.0189881,21
+187725,33844.33159,2976.315461,856.0396337,21
+187726,33832.50622,2734.234659,801.6059005,21
+187727,33699.92859,2653.586996,801.6239416,21
+187728,33394.83633,2599.2501,760.509667,21
+187729,33541.73491,2177.901441,746.7577448,21
+187730,33152.83086,2270.666213,719.148665,21
+187731,33091.18152,1860.348669,691.4179281,21
+187732,33080.72062,1936.35111,677.5123282,21
+187733,32883.76141,1521.361727,649.5922456,21
+187734,32622.70298,1445.503866,621.5412991,21
+187735,32811.67926,1353.513973,593.3552115,21
+187736,32481.79094,1089.035618,579.2147623,21
+187737,32395.88342,900.5874406,550.8168144,21
+187738,32212.48928,1055.279682,522.2711368,21
+187739,32309.75378,687.7947214,507.9446509,21
+187740,31807.61983,671.1906096,479.1657105,21
+187741,37883.14816,637.8031522,421.1020476,21
+187742,37662.29779,621.0375354,391.8067508,21
+187743,37538.52686,604.2161058,377.089711,21
+187744,37413.38339,587.3394962,347.5019472,21
+187745,37374.75654,570.4065884,317.7036267,21
+187746,37178.69954,570.4066608,302.7220248,21
+187747,37140.91563,536.3667111,287.6815174,21
+187748,36949.75801,536.3668474,242.1772737,21
+187749,36889.80354,519.2571015,226.8739685,21
+187750,36823.55777,484.849609,211.4962873,21
+187751,36578.35584,502.087896,180.4985084,21
+187752,36487.84783,467.5494366,164.8683776,21
+187753,36451.86644,450.1817772,117.3595621,21
+187754,36216.65958,450.1817165,133.3087359,21
+187755,36271.26423,432.7444673,68.66396078,21
+187756,451174.5132,397.6531106,76.88431941,21
+187757,36012.10491,379.9940568,35.20589535,21
+187758,35774.28236,379.9940857,0,21
+187759,460987.9379,362.2557397,0,21
+187760,35547.32316,344.4350158,0,21
+187761,35522.65587,326.5284407,0,21
+187762,35141.90416,308.5322316,0,21
+187763,35385.56269,308.5322505,0,21
+187764,34911.43148,272.2534024,0,21
+187765,34867.13735,272.2534177,0,21
+187766,34849.60144,253.9606514,0,21
+187767,34661.12358,235.5576674,0,21
+187768,34611.60219,235.5576864,0,21
+187769,34216.30826,198.3914566,0,21
+187770,34598.48852,198.3914722,0,21
+187771,33971.08167,179.6101352,0,21
+187772,34166.58331,160.6814885,0,21
+187773,33834.93336,160.681501,0,21
+187774,33921.62295,122.320168,0,21
+187775,33743.76012,122.3201762,0,21
+187776,33485.50997,102.8451085,0,21
+187777,33490.80453,102.8451149,0,21
+187778,33435.64217,63.13586843,0,21
+187779,33086.37321,63.13587364,0,21
+187780,33207.17996,42.7767244,0,21
+187781,33048.85628,21.90586163,0,21
+187782,32780.69353,21.90586343,0,21
+187783,32783.2403,0,0,21
+187784,32684.40886,0,0,21
+187785,32628.98534,0,0,21
+187786,32260.37116,0,0,21
+187787,32313.98174,0,0,21
+187788,32386.66384,0,0,21
+187789,31983.71236,0,0,21
+187790,32077.78667,0,0,21
+187791,31637.1196,0,0,21
+187792,31833.40306,0,0,21
+187793,31624.53205,0,0,21
+187794,31611.91589,0,0,21
+187795,31234.1062,0,0,21
+187796,31381.52614,0,0,21
+187797,31197.36371,0,0,21
+187798,31172.05365,0,0,21
+187799,30780.36896,0,0,21
+187800,31172.06256,0,0,21
+187801,24635.3586,0,0,21
+187802,24659.49186,0,0,21
+187803,24197.04555,0,0,21
+187804,24403.79983,0,0,21
+187805,23861.1277,0,0,21
+187806,24056.53222,0,0,21
+187807,23524.77972,0,0,21
+187808,23500.49527,0,0,21
+187809,23383.17927,0,0,21
+187810,23175.90201,0,0,21
+187811,23019.96276,0,0,21
+187812,23046.19175,0,0,21
+187813,22485.48792,0,0,21
+187814,22565.12532,0,0,21
+187815,22460.4141,0,0,21
+187816,22131.9242,0,0,21
+187817,22095.76963,0,0,21
+187818,21895.64283,0,0,21
+187819,21741.82055,0,0,21
+187820,21555.36521,0,0,21
+187821,21398.4428,0,0,21
+187822,21293.36177,0,0,21
+187823,21056.13979,0,0,21
+187824,20829.9297,0,0,21
+187825,21030.75911,0,0,21
+187826,20391.00327,0,0,21
+187827,20554.82498,0,0,21
+187828,20247.28778,0,0,21
+187829,20208.67736,0,0,21
+187830,19886.95819,0,0,21
+187831,19876.14259,0,0,21
+187832,19621.3014,0,0,21
+187833,19636.10883,0,0,21
+187834,19272.11913,0,0,21
+187835,19167.07182,0,0,21
+187836,19140.36968,0,0,21
+187837,18923.13919,0,0,21
+187838,18671.72297,0,0,21
+187839,18775.74979,0,0,21
+187840,18441.79839,0,0,21
+187841,18413.47953,0,0,21
+187842,17978.69858,0,0,21
+187843,18267.35134,0,0,21
+187844,17830.10415,0,0,21
+187845,17710.49417,0,0,21
+187846,17585.76032,0,0,21
+187847,17561.7521,0,0,21
+187848,17218.96552,0,0,21
+187849,17330.27451,0,0,21
+187850,16959.80543,0,0,21
+187851,16974.04768,0,0,21
+187852,16493.81543,0,0,21
+187853,16920.86678,0,0,21
+187854,16260.03375,0,0,21
+187855,16454.00749,0,0,21
+187856,16097.73189,0,0,21
+187857,16121.10143,0,0,21
+187858,15823.09657,0,0,21
+187859,15860.14182,0,0,21
+187860,15501.20659,0,0,21
+187861,27278.98507,0,0,21
+187862,27197.70357,0,0,21
+187863,27628.12532,0,0,21
+187864,27497.26413,0,0,21
+187865,27406.82,0,0,21
+187866,27394.62251,0,0,21
+187867,27615.28774,0,0,21
+187868,27394.61366,0,0,21
+187869,27394.60917,0,0,21
+187870,27693.54047,0,0,21
+187871,27406.12094,0,0,21
+187872,27370.14929,0,0,21
+187873,27615.25993,0,0,21
+187874,27369.52769,0,0,21
+187875,27381.73603,0,0,21
+187876,27590.87928,0,0,21
+187877,27278.91368,0,0,21
+187878,27381.72172,0,0,21
+187879,27565.80622,0,0,21
+187880,27278.89928,0,0,21
+187881,27381.70716,0,0,21
+187882,27553.55828,0,0,21
+187883,27163.01931,0,0,21
+187884,27382.32473,0,0,21
+187885,27565.11809,0,0,21
+187886,27138.55856,0,0,21
+187887,27369.46436,0,0,21
+187888,27352.00515,0,0,21
+187889,27151.41471,0,0,21
+187890,27467.02036,0,0,21
+187891,27138.53358,0,0,21
+187892,27455.43516,0,0,21
+187893,27150.75643,0,0,21
+187894,27339.74139,0,0,21
+187895,27241.50707,0,0,21
+187896,27347.04194,0,0,21
+187897,27245.92177,0,0,21
+187898,27334.79846,0,0,21
+187899,27138.49258,0,0,21
+187900,27344.29317,0,0,21
+187901,27334.78258,0,0,21
+187902,27138.47691,0,0,21
+187903,27344.27726,0,0,21
+187904,27231.59013,0,0,21
+187905,27331.36967,0,0,21
+187906,27236.68443,0,0,21
+187907,27126.19742,0,0,21
+187908,27334.74492,0,0,21
+187909,27331.34811,0,0,21
+187910,27219.30477,0,0,21
+187911,27138.42904,0,0,21
+187912,27417.30712,0,0,21
+187913,27030.11014,0,0,21
+187914,27331.96467,0,0,21
+187915,27321.80967,0,0,21
+187916,27113.87567,0,0,21
+187917,27321.79858,0,0,21
+187918,27126.138,0,0,21
+187919,27321.78743,0,0,21
+187920,27113.85378,0,0,21
+187921,15757.92729,0,0,21
+187922,15299.91153,0,0,21
+187923,15412.05115,0,0,21
+187924,15408.5792,0,0,21
+187925,15412.04611,0,0,21
+187926,15174.54958,0,0,21
+187927,15646.04172,0,0,21
+187928,15174.54479,0,0,21
+187929,15535.61844,0,0,21
+187930,15285.21209,0,0,21
+187931,15535.61351,0,0,21
+187932,15508.04316,0,0,21
+187933,15326.5009,0,0,21
+187934,15507.23384,0,0,21
+187935,15659.72784,0,0,21
+187936,15285.19807,0,0,21
+187937,15646.01707,0,0,21
+187938,15659.72063,0,0,21
+187939,15520.96063,0,0,21
+187940,15646.00995,0,0,21
+187941,15534.66193,0,0,21
+187942,15756.17237,0,0,21
+187943,15659.70885,0,0,21
+187944,15644.02621,0,0,21
+187945,15646.79419,0,0,21
+187946,15879.78818,0,0,21
+187947,15645.99374,0,0,21
+187948,15879.78348,0,0,21
+187949,15894.61724,0,0,21
+187950,15879.77882,0,0,21
+187951,15769.85738,0,0,21
+187952,16004.52936,0,0,21
+187953,15991.64085,0,0,21
+187954,15892.65576,0,0,21
+187955,16239.47031,0,0,21
+187956,16004.52004,0,0,21
+187957,16237.29765,0,0,21
+187958,16128.978,0,0,21
+187959,16349.64837,0,0,21
+187960,16127.04737,0,0,21
+187961,16361.75066,0,0,21
+187962,16486.72442,0,0,21
+187963,16348.07239,0,0,21
+187964,16375.385,0,0,21
+187965,16815.93872,0,0,21
+187966,16374.57769,0,0,21
+187967,16706.97755,0,0,21
+187968,16730.51329,0,0,21
+187969,16706.97265,0,0,21
+187970,16730.50836,0,0,21
+187971,16829.53357,0,0,21
+187972,16965.18148,0,0,21
+187973,17059.58018,0,0,21
+187974,16855.18053,0,0,21
+187975,17185.27091,0,0,21
+187976,17072.38808,0,0,21
+187977,17211.63636,0,0,21
+187978,17183.19626,0,0,21
+187979,17332.89083,0,0,21
+187980,17402.00993,0,0,21
+187981,23294.90545,0,0,21
+187982,23284.49253,0,0,21
+187983,23465.35207,0,0,21
+187984,23393.45143,0,0,21
+187985,23356.39928,0,0,21
+187986,23491.83691,0,0,21
+187987,23465.35817,0,0,21
+187988,23260.05021,0,0,21
+187989,23784.01591,0,0,21
+187990,23148.83183,0,0,21
+187991,23563.58858,0,0,21
+187992,23576.42897,0,0,21
+187993,23247.21885,0,0,21
+187994,23661.66031,0,0,21
+187995,23465.37031,0,0,21
+187996,23443.51505,0,0,21
+187997,23465.37344,0,0,21
+187998,23429.84481,0,0,21
+187999,23479.01806,0,0,21
+188000,23539.04058,0,0,21
+188001,23332.59353,0,0,21
+188002,23647.99991,0,0,21
+188003,23247.23463,0,0,21
+188004,23648.8144,0,0,21
+188005,23429.85647,0,0,21
+188006,23356.43227,0,0,21
+188007,23526.19017,0,0,21
+188008,23443.5352,0,0,21
+188009,23537.08246,0,0,21
+188010,23429.86536,0,0,21
+188011,23430.67826,0,0,21
+188012,23549.95036,0,0,21
+188013,23404.12247,0,0,21
+188014,23443.54629,0,0,21
+188015,23648.02355,0,0,21
+188016,23417.01426,0,0,21
+188017,23443.55209,0,0,21
+188018,23622.28098,0,0,21
+188019,23456.39497,0,0,21
+188020,23513.32883,0,0,21
+188021,23527.79773,0,0,21
+188022,23661.71111,0,0,21
+188023,23417.0283,0,0,21
+188024,23748.42569,0,0,21
+188025,23526.22525,0,0,21
+188026,23443.57051,0,0,21
+188027,23843.715,0,0,21
+188028,23430.71235,0,0,21
+188029,23843.71946,0,0,21
+188030,23443.57914,0,0,21
+188031,23830.86153,0,0,21
+188032,23443.58356,0,0,21
+188033,23857.40207,0,0,21
+188034,23625.58163,0,0,21
+188035,23661.73957,0,0,21
+188036,23735.59022,0,0,21
+188037,23734.78153,0,0,21
+188038,23871.05534,0,0,21
+188039,23527.83749,0,0,21
+188040,23857.41862,0,0,21
+188041,17964.73203,0,0,21
+188042,17855.37425,0,0,21
+188043,17990.25663,0,0,21
+188044,17990.2554,0,0,21
+188045,17976.19839,0,0,21
+188046,18233.66461,0,0,21
+188047,18111.83438,0,0,21
+188048,18245.90698,0,0,21
+188049,18354.19547,0,0,21
+188050,18342.24071,0,0,21
+188051,18487.99921,0,0,21
+188052,18488.78288,0,0,21
+188053,18475.29578,0,0,21
+188054,18852.44138,0,0,21
+188055,18596.1481,0,0,21
+188056,18959.59001,0,0,21
+188057,18743.82595,0,0,21
+188058,18959.58732,0,0,21
+188059,19092.60292,0,0,21
+188060,18985.66597,0,0,21
+188061,19212.71774,0,0,21
+188062,19321.76158,0,0,21
+188063,19225.34857,0,0,21
+188064,19455.24231,0,0,21
+188065,19573.58596,0,0,21
+188066,19453.59995,0,0,21
+188067,19708.20803,0,0,21
+188068,19693.24805,0,0,21
+188069,19814.50547,0,0,21
+188070,19948.07604,0,0,21
+188071,19931.12687,0,0,21
+188072,20068.82547,0,0,21
+188073,20278.27843,0,0,21
+188074,20185.87331,0,0,21
+188075,20425.62465,0,0,21
+188076,20410.28221,0,0,21
+188077,20438.87147,0,0,21
+188078,20755.31069,0,0,21
+188079,20663.25174,0,0,21
+188080,21007.31968,0,0,21
+188081,20781.72073,0,0,21
+188082,21125.58944,0,0,21
+188083,21138.02617,0,0,21
+188084,21138.75135,0,0,21
+188085,21373.17417,0,0,21
+188086,21482.19521,0,0,21
+188087,21492.9093,0,0,21
+188088,21611.69166,0,0,21
+188089,21821.19479,0,0,21
+188090,21743.3498,0,0,21
+188091,22069.32983,0,0,21
+188092,21965.21988,0,0,21
+188093,22213.03675,0,0,21
+188094,22292.26405,0,0,21
+188095,22436.65717,0,0,21
+188096,22329.97727,0,0,21
+188097,22748.55856,0,0,21
+188098,22578.89222,0,0,21
+188099,22786.16248,0,0,21
+188100,23007.84024,0,0,21
+188101,22891.50894,0,0,21
+188102,22811.40859,0,0,21
+188103,23112.98525,0,0,21
+188104,22798.43283,0,0,21
+188105,23007.83976,0,0,21
+188106,22916.75496,0,0,21
+188107,22889.51631,0,0,21
+188108,23034.84773,0,0,21
+188109,22992.68854,0,0,21
+188110,22929.00606,0,0,21
+188111,22904.48075,0,0,21
+188112,22992.68762,0,0,21
+188113,23047.09856,0,0,21
+188114,22992.68704,0,0,21
+188115,22941.95322,0,0,21
+188116,22889.51363,0,0,21
+188117,23253.62735,0,0,21
+188118,22786.15603,0,0,21
+188119,23148.48205,0,0,21
+188120,22786.15553,0,0,21
+188121,23253.6263,0,0,21
+188122,22914.7598,0,0,21
+188123,23032.3596,0,0,21
+188124,23111.0072,0,0,21
+188125,22836.60303,0,0,21
+188126,23227.70142,0,0,21
+188127,23030.88011,0,0,21
+188128,23032.35848,0,0,21
+188129,23136.22735,0,0,21
+188130,22927.0104,0,0,21
+188131,23240.67542,0,0,21
+188132,23043.13145,0,0,21
+188133,23241.37128,0,0,21
+188134,23030.18245,0,0,21
+188135,23265.85546,0,0,21
+188136,23043.13071,0,0,21
+188137,23240.67429,0,0,21
+188138,23161.40036,0,0,21
+188139,23353.55963,0,0,21
+188140,23163.37195,0,0,21
+188141,23378.72004,0,0,21
+188142,23253.62208,0,0,21
+188143,23158.35166,0,0,21
+188144,23486.70961,0,0,21
+188145,23275.91112,0,0,21
+188146,23459.41969,0,0,21
+188147,23303.88426,0,0,21
+188148,23378.71901,0,0,21
+188149,23459.41928,0,0,21
+188150,23521.8742,0,0,21
+188151,23381.05502,0,0,21
+188152,23509.6818,0,0,21
+188153,23483.86307,0,0,21
+188154,23717.25292,0,0,21
+188155,23496.78519,0,0,21
+188156,23521.87347,0,0,21
+188157,23806.80522,0,0,21
+188158,23534.04551,0,0,21
+188159,23601.72813,0,0,21
+188160,23831.89329,0,0,21
+188161,45000.27098,0,0,21
+188162,46176.21924,0,0,21
+188163,49002.58043,0,0,21
+188164,47967.6087,0,0,21
+188165,48569.19262,0,0,21
+188166,48990.90697,0,0,21
+188167,49379.08612,0,0,21
+188168,50732.78725,0,0,21
+188169,50302.65783,0,0,21
+188170,50964.31167,0,0,21
+188171,51258.88135,0,0,21
+188172,51510.40382,0,0,21
+188173,51752.91319,0,0,21
+188174,51862.18052,0,0,21
+188175,52433.50062,0,0,21
+188176,52490.02493,0,0,21
+188177,52760.77444,0,0,21
+188178,53010.00602,0,0,21
+188179,53197.97205,0,0,21
+188180,53506.90346,0,0,21
+188181,53888.39195,0,0,21
+188182,53926.74567,0,0,21
+188183,54203.16433,0,0,21
+188184,54419.31429,0,0,21
+188185,54678.72344,0,0,21
+188186,54892.23393,0,0,21
+188187,55297.37767,0,0,21
+188188,55197.27578,0,0,21
+188189,55599.0662,0,0,21
+188190,55945.41222,0,0,21
+188191,55959.90466,0,0,21
+188192,56387.81436,0,0,21
+188193,56593.68893,0,0,21
+188194,56572.6575,0,0,21
+188195,57098.76617,0,0,21
+188196,57163.77112,0,0,21
+188197,57407.9422,0,0,21
+188198,57666.91695,0,0,21
+188199,57717.55606,0,0,21
+188200,58115.61142,0,0,21
+188201,58164.16274,0,0,21
+188202,58663.98898,0,0,21
+188203,60775.41139,0,0,21
+188204,59614.40065,0,0,21
+188205,60836.60127,0,0,21
+188206,60968.49158,0,0,21
+188207,61523.3946,0,0,21
+188208,61754.09262,0,0,21
+188209,62053.39689,0,0,21
+188210,62497.19088,0,0,21
+188211,62942.05746,0,0,21
+188212,63194.93772,0,0,21
+188213,63508.6758,0,0,21
+188214,63951.04228,0,0,21
+188215,64198.0104,0,0,21
+188216,64756.1496,0,0,21
+188217,64679.85532,0,0,21
+188218,65483.27531,0,0,21
+188219,65484.09456,0,0,21
+188220,65910.5283,0,0,21
+188221,79553.65101,0,0,21
+188222,80777.10585,0,0,21
+188223,81691.86642,0,0,21
+188224,81945.68999,0,0,21
+188225,83038.82165,0,0,21
+188226,83195.59932,0,0,21
+188227,84182.94987,0,0,21
+188228,86099.91571,0,0,21
+188229,88920.23819,0,0,21
+188230,88612.88601,0,0,21
+188231,89579.33289,0,0,21
+188232,90223.36845,0,0,21
+188233,91362.08713,0,0,21
+188234,91964.19819,0,0,21
+188235,92729.90697,0,0,21
+188236,93544.47335,0,0,21
+188237,94131.8035,0,0,21
+188238,95004.08891,0,0,21
+188239,95913.24976,0,0,21
+188240,96274.54091,0,0,21
+188241,97084.13568,0,0,21
+188242,98015.99363,0,0,21
+188243,98353.31149,0,0,21
+188244,99430.27261,0,0,21
+188245,100019.025,0,0,21
+188246,100366.157,0,0,21
+188247,101573.8501,0,0,21
+188248,101786.8476,0,0,21
+188249,102810.9206,0,0,21
+188250,103356.5031,0,0,21
+188251,103887.551,0,0,21
+188252,104587.078,0,0,21
+188253,105338.4317,0,0,21
+188254,106013.0856,0,0,21
+188255,106409.0863,0,0,21
+188256,107102.2335,0,0,21
+188257,107806.7992,0,0,21
+188258,108330.8962,0,0,21
+188259,109285.2812,0,0,21
+188260,109306.4874,0,0,21
+188261,110483.1186,0,0,21
+188262,110643.7948,0,0,21
+188263,111308.9291,0,0,21
+188264,112264.193,0,0,21
+188265,112487.6155,0,0,21
+188266,113173.8445,0,0,21
+188267,113704.5886,0,0,21
+188268,114418.9506,0,0,21
+188269,115047.6063,0,0,21
+188270,115239.3603,0,0,21
+188271,116188.9065,0,0,21
+188272,116547.8911,0,0,21
+188273,117250.6178,0,0,21
+188274,117764.5298,0,0,21
+188275,118292.3233,0,0,21
+188276,118897.5665,0,0,21
+188277,119352.8857,0,0,21
+188278,119897.8099,0,0,21
+188279,120681.3886,0,0,21
+188280,120842.6923,0,0,21
+188281,121547.1904,0,0,21
+188282,121915.9447,0,0,21
+188283,122434.3938,0,0,21
+188284,122909.1695,0,0,21
+188285,122913.5502,0,0,21
+188286,123905.649,0,0,21
+188287,123932.9256,0,0,21
+188288,124591.9183,0,0,21
+188289,124933.6208,0,0,21
+188290,125540.3153,0,0,21
+188291,125481.9383,0,0,21
+188292,126502.7228,0,0,21
+188293,126399.501,0,0,21
+188294,127104.4805,0,0,21
+188295,127438.9968,0,0,21
+188296,127921.8837,0,0,21
+188297,128040.8069,0,0,21
+188298,128802.4342,0,0,21
+188299,128851.6553,0,0,21
+188300,129640.6941,0,0,21
+188301,129784.2962,0,0,21
+188302,130164.4286,0,0,21
+188303,130751.655,0,0,21
+188304,130807.9262,0,0,21
+188305,131670.6405,0,0,21
+188306,131638.3024,0,0,21
+188307,132339.1026,0,0,21
+188308,132467.7211,0,0,21
+188309,133064.4793,0,0,21
+188310,133327.2117,0,0,21
+188311,133538.9846,0,0,21
+188312,134112.1861,0,0,21
+188313,134283.3852,0,0,21
+188314,134901.0675,0,0,21
+188315,134983.1112,0,0,21
+188316,135347.3509,0,0,21
+188317,135825.1315,0,0,21
+188318,136077.139,0,0,21
+188319,136366.9537,0,0,21
+188320,137033.7325,0,0,21
+188321,136830.5341,0,0,21
+188322,137482.2472,0,0,21
+188323,137720.9623,0,0,21
+188324,138248.151,0,0,21
+188325,138124.9406,0,0,21
+188326,138740.3434,0,0,21
+188327,138951.6716,0,0,21
+188328,139475.8658,0,0,21
+188329,139582.0952,0,0,21
+188330,140031.2348,0,0,21
+188331,140204.6113,0,0,21
+188332,140504.1669,0,0,21
+188333,140852.9264,0,0,21
+188334,141192.8304,0,0,21
+188335,141438.7311,0,0,21
+188336,141809.6709,0,0,21
+188337,141830.1312,0,0,21
+188338,142585.0225,0,0,21
+188339,142579.3411,0,0,21
+188340,142805.2096,0,0,21
+188341,145706.8841,0,0,21
+188342,146425.776,0,0,21
+188343,147230.073,0,0,21
+188344,147037.2144,0,0,21
+188345,147782.8467,0,0,21
+188346,148246.6148,0,0,21
+188347,148513.9601,0,0,21
+188348,148877.3717,0,0,21
+188349,149358.1362,0,0,21
+188350,149750.9401,0,0,21
+188351,150086.9952,0,0,21
+188352,150036.7576,0,0,21
+188353,151088.9362,0,0,21
+188354,151043.9136,0,0,21
+188355,151528.9569,0,0,21
+188356,151920.2301,0,0,21
+188357,152101.2265,0,0,21
+188358,152838.8256,0,0,21
+188359,152729.7017,0,0,21
+188360,153062.5926,0,0,21
+188361,154226.2915,0,0,21
+188362,154488.7993,0,0,21
+188363,154456.5525,0,0,21
+188364,155269.4079,0,0,21
+188365,155186.3933,0,0,21
+188366,155759.3674,0,0,21
+188367,155918.6318,0,0,21
+188368,156170.2332,0,0,21
+188369,156677.0695,0,0,21
+188370,156705.5305,0,0,21
+188371,157117.7405,0,0,21
+188372,157542.8542,0,0,21
+188373,157330.6859,0,0,21
+188374,158407.1875,0,0,21
+188375,158045.7774,0,0,21
+188376,158516.3559,0,0,21
+188377,158859.0211,0,0,21
+188378,158716.9075,0,0,21
+188379,159586.0822,0,0,21
+188380,159439.0519,0,0,21
+188381,159905.4894,0,0,21
+188382,160010.2413,0,0,21
+188383,160172.1345,0,0,21
+188384,160660.1951,0,0,21
+188385,160638.116,0,0,21
+188386,161261.062,0,0,21
+188387,161293.4937,0,0,21
+188388,161493.6997,0,0,21
+188389,161623.4307,0,0,21
+188390,162174.2118,0,0,21
+188391,162373.2899,0,0,21
+188392,162214.7764,1199.895504,0,21
+188393,162799.687,1199.89557,0,21
+188394,163070.3724,1036.576953,0,21
+188395,162863.2719,1681.331922,0,21
+188396,163772.8586,1522.132977,0,21
+188397,163408.6992,1839.392979,0,21
+188398,163863.087,1996.399634,0,21
+188399,164151.4473,2307.521608,0,21
+188400,164099.7944,2152.422409,0,21
+188401,164585.1604,2615.152198,0,21
+188402,164610.7645,2615.152235,0,21
+188403,164857.3554,2919.638188,0,21
+188404,164846.657,3221.253774,0,21
+188405,165222.1666,3221.253831,0,21
+188406,164997.9976,3645.072399,0,21
+188407,165389.208,3980.716498,0,21
+188408,165732.2426,4128.094859,0,21
+188409,165344.5914,4303.8204,0,21
+188410,165956.1744,4633.881664,0,21
+188411,165879.0742,4807.309045,0,21
+188412,166105.5422,4961.38067,0,21
+188413,166364.3187,5295.685933,0,21
+188414,166286.4,5448.168116,0,21
+188415,166461.7009,5618.420386,0,21
+188416,167065.643,6080.537628,0,21
+188417,166399.2494,5957.003044,0,21
+188418,167164.5481,6407.173572,0,21
+188419,167193.9464,6574.132812,0,21
+188420,167062.4358,6871.211658,0,21
+188421,167638.2168,6906.38267,0,21
+188422,167366.4407,7340.077948,0,21
+188423,167987.2993,7374.855213,0,21
+188424,167483.1104,7667.778942,0,21
+188425,168139.711,7959.216613,0,21
+188426,167872.1526,7993.511632,0,21
+188427,168266.0239,8436.298152,0,21
+188428,168200.8467,8436.298368,0,21
+188429,168949.7457,8757.804206,0,21
+188430,167970.3052,9027.315446,0,21
+188431,168974.169,9354.755876,0,21
+188432,168814.7553,9771.175636,0,21
+188433,169029.6854,9818.879851,0,21
+188434,168821.9461,10159.17002,0,21
+188435,169499.81,10381.48683,0,21
+188436,169241.4365,10690.5712,0,21
+188437,169241.2485,10762.59405,0,21
+188438,169956.4395,11261.28728,0,21
+188439,169287.3038,11272.40444,0,21
+188440,170123.2899,11637.08503,0,21
+188441,169722.7776,11810.6552,0,21
+188442,169902.8664,12156.52371,0,21
+188443,170522.7289,12196.48756,0,21
+188444,169917.4016,12543.11321,0,21
+188445,170593.5614,12853.74797,0,21
+188446,170434.3652,15194.97091,0,21
+188447,170552.0999,15535.57085,0,21
+188448,170613.8148,16056.22973,0,21
+188449,171147.3314,16391.9539,0,21
+188450,170477.915,17400.34119,0,21
+188451,171412.8253,17916.81095,0,21
+188452,170990.4383,18264.03067,0,21
+188453,171111.8845,19206.12824,0,21
+188454,171647.8616,19423.31871,0,21
+188455,171126.0611,20080.41147,0,21
+188456,171846.7371,20778.02986,0,21
+188457,171578.3479,21370.56187,0,21
+188458,171706.4551,21811.81799,0,21
+188459,171863.222,22260.35137,0,21
+188460,171861.9403,23124.43032,0,21
+188461,0,0,0,21
+188462,0,0,0,21
+188463,0,0,0,21
+188464,0,0,0,21
+188465,0,367711.21,688542.0468,21
+188466,0,0,0,21
+188467,340237.9868,0,0,21
+188468,0,0,0,21
+188469,0,0,0,21
+188470,0,0,0,21
+188471,0,0,0,21
+188472,0,0,0,21
+188473,0,0,0,21
+188474,0,0,0,21
+188475,0,0,0,21
+188476,0,0,0,21
+188477,0,0,0,21
+188478,0,0,0,21
+188479,0,0,0,21
+188480,0,0,0,21
+188481,0,0,0,21
+188482,0,0,0,21
+188483,0,0,0,21
+188484,0,0,0,21
+188485,0,0,0,21
+188486,0,0,0,21
+188487,0,0,0,21
+188488,0,0,0,21
+188489,0,0,0,21
+188490,0,0,0,21
+188491,0,0,0,21
+188492,0,0,0,21
+188493,0,0,0,21
+188494,0,0,0,21
+188495,0,0,0,21
+188496,0,0,0,21
+188497,0,0,0,21
+188498,0,0,0,21
+188499,0,368541.0868,689498.0337,21
+188500,0,0,0,21
+188501,0,0,0,21
+188502,0,0,0,21
+188503,340237.8234,0,0,21
+188504,0,0,0,21
+188505,0,0,0,21
+188506,0,0,0,21
+188507,0,0,0,21
+188508,0,0,0,21
+188509,0,0,0,21
+188510,0,0,0,21
+188511,0,0,0,21
+188512,0,0,0,21
+188513,0,0,0,21
+188514,0,0,0,21
+188515,0,0,0,21
+188516,0,0,0,21
+188517,0,0,0,21
+188518,0,0,0,21
+188519,0,0,0,21
+188520,0,0,0,15.6
+188521,0,0,0,15.6
+188522,0,0,0,15.6
+188523,0,0,0,15.6
+188524,0,0,0,15.6
+188525,0,0,0,15.6
+188526,0,0,0,15.6
+188527,0,0,0,15.6
+188528,0,0,0,15.6
+188529,0,0,0,15.6
+188530,0,0,0,15.6
+188531,0,0,0,15.6
+188532,0,0,0,15.6
+188533,0,0,0,15.6
+188534,0,368518.2985,687398.5226,15.6
+188535,0,0,0,15.6
+188536,0,0,0,15.6
+188537,0,0,0,15.6
+188538,0,0,0,15.6
+188539,340237.6583,0,0,15.6
+188540,0,0,0,15.6
+188541,0,0,0,15.6
+188542,0,0,0,15.6
+188543,0,0,0,15.6
+188544,0,0,0,15.6
+188545,0,0,0,15.6
+188546,0,0,0,15.6
+188547,0,0,0,15.6
+188548,0,0,0,15.6
+188549,0,0,0,15.6
+188550,0,0,0,15.6
+188551,0,0,0,15.6
+188552,0,0,0,15.6
+188553,0,0,0,15.6
+188554,0,0,0,15.6
+188555,0,0,0,15.6
+188556,0,0,0,15.6
+188557,0,0,0,15.6
+188558,0,0,0,15.6
+188559,0,0,0,15.6
+188560,0,0,0,15.6
+188561,0,0,0,15.6
+188562,0,0,0,15.6
+188563,0,0,0,15.6
+188564,0,0,0,15.6
+188565,0,0,0,15.6
+188566,0,0,0,15.6
+188567,0,0,0,15.6
+188568,0,0,0,15.6
+188569,0,368448.2147,687722.4256,15.6
+188570,0,0,0,15.6
+188571,0,0,0,15.6
+188572,0,0,0,15.6
+188573,0,0,0,15.6
+188574,0,0,0,15.6
+188575,340237.5858,0,0,15.6
+188576,0,0,0,15.6
+188577,0,0,0,15.6
+188578,0,0,0,15.6
+188579,0,0,0,15.6
+188580,0,0,0,15.6
+188581,0,0,0,15.6
+188582,0,81.82739457,0,15.6
+188583,0,0,0,15.6
+188584,0,0,0,15.6
+188585,0,0,0,15.6
+188586,0,108.0714095,0,15.6
+188587,0,0,0,15.6
+188588,0,0,0,15.6
+188589,0,0,0,15.6
+188590,0,100.4217198,0,15.6
+188591,0,0,0,15.6
+188592,0,0,0,15.6
+188593,0,0,0,15.6
+188594,0,104.2449152,0,15.6
+188595,0,0,0,15.6
+188596,0,0,0,15.6
+188597,0,0,0,15.6
+188598,0,105.0346121,0,15.6
+188599,0,0,0,15.6
+188600,0,0,0,15.6
+188601,0,0,0,15.6
+188602,0,104.8945347,0,15.6
+188603,0,0,0,15.6
+188604,0,368410.0313,685587.9022,15.6
+188605,0,0,0,15.6
+188606,0,99.17113837,0,15.6
+188607,0,0,0,15.6
+188608,0,0,0,15.6
+188609,0,0,0,15.6
+188610,0,77.94297356,0,15.6
+188611,0,0,0,15.6
+188612,340256.4342,0,0,15.6
+188613,0,0,0,15.6
+188614,0,97.332023,0,15.6
+188615,0,0,0,15.6
+188616,0,0,0,15.6
+188617,0,0,0,15.6
+188618,0,82.73213766,0,15.6
+188619,0,0,0,15.6
+188620,0,0,0,15.6
+188621,0,0,0,15.6
+188622,0,99.70371839,0,15.6
+188623,0,0,0,15.6
+188624,0,0,0,15.6
+188625,0,0,0,15.6
+188626,0,83.18703493,0,15.6
+188627,0,0,0,15.6
+188628,0,0,0,15.6
+188629,0,0,0,15.6
+188630,0,101.9475791,0,15.6
+188631,0,0,0,15.6
+188632,0,0,0,15.6
+188633,0,0,0,15.6
+188634,0,86.48591578,0,15.6
+188635,0,0,0,15.6
+188636,0,0,0,15.6
+188637,0,0,0,15.6
+188638,0,105.9803562,0,15.6
+188639,0,368385.2003,684221.0239,15.6
+188640,0,0,0,15.6
+188641,0,0,0,15.6
+188642,0,100.1230303,0,15.6
+188643,0,0,0,15.6
+188644,0,0,0,15.6
+188645,0,434599.0615,0,15.6
+188646,0,0,0,15.6
+188647,0,0,0,15.6
+188648,0,0,0,15.6
+188649,340267.0481,0,0,15.6
+188650,0,0,0,15.6
+188651,0,0,0,15.6
+188652,0,0,0,15.6
+188653,0,0,0,15.6
+188654,0,0,0,15.6
+188655,0,0,0,15.6
+188656,0,0,0,15.6
+188657,0,0,0,15.6
+188658,0,0,0,15.6
+188659,0,0,0,15.6
+188660,0,0,0,15.6
+188661,0,0,0,15.6
+188662,0,0,0,15.6
+188663,0,0,0,15.6
+188664,0,0,0,15.6
+188665,0,0,0,15.6
+188666,0,0,0,15.6
+188667,0,0,0,15.6
+188668,0,0,0,15.6
+188669,0,0,0,15.6
+188670,0,0,0,15.6
+188671,0,434254.3348,0,15.6
+188672,0,0,0,15.6
+188673,0,0,0,15.6
+188674,0,368385.8225,682806.6168,15.6
+188675,0,0,0,15.6
+188676,0,0,0,15.6
+188677,0,0,0,15.6
+188678,0,0,0,15.6
+188679,0,0,0,15.6
+188680,0,0,0,15.6
+188681,0,0,0,15.6
+188682,0,0,0,15.6
+188683,0,0,0,15.6
+188684,0,0,0,15.6
+188685,0,0,0,15.6
+188686,340239.6935,0,0,15.6
+188687,0,0,0,15.6
+188688,0,0,0,15.6
+188689,0,0,0,15.6
+188690,0,0,0,15.6
+188691,0,0,0,15.6
+188692,0,0,0,15.6
+188693,0,0,0,15.6
+188694,0,0,0,15.6
+188695,0,0,0,15.6
+188696,0,0,0,15.6
+188697,0,434007.4551,0,15.6
+188698,0,0,0,15.6
+188699,0,0,0,15.6
+188700,0,0,0,15.6
+188701,0,0,0,15.6
+188702,0,0,0,15.6
+188703,0,0,0,15.6
+188704,0,0,0,15.6
+188705,0,0,0,15.6
+188706,0,0,0,15.6
+188707,0,0,0,15.6
+188708,0,0,0,15.6
+188709,0,368381.893,678801.4038,15.6
+188710,0,0,0,15.6
+188711,0,0,0,15.6
+188712,0,0,0,15.6
+188713,0,0,0,15.6
+188714,0,0,0,15.6
+188715,0,0,0,15.6
+188716,0,0,0,15.6
+188717,0,0,0,15.6
+188718,0,0,0,15.6
+188719,0,0,0,15.6
+188720,0,0,0,15.6
+188721,0,0,0,15.6
+188722,0,0,0,15.6
+188723,340229.3521,0,0,15.6
+188724,0,0,0,15.6
+188725,0,0,0,15.6
+188726,0,0,0,15.6
+188727,0,0,0,15.6
+188728,0,248.054813,0,15.6
+188729,0,0,0,15.6
+188730,0,0,0,15.6
+188731,0,0,0,15.6
+188732,0,0,0,15.6
+188733,0,0,0,15.6
+188734,0,0,0,15.6
+188735,0,0,0,15.6
+188736,0,0,0,15.6
+188737,0,0,0,15.6
+188738,0,66.76486984,0,15.6
+188739,0,0,0,15.6
+188740,0,0,0,15.6
+188741,0,0,0,15.6
+188742,0,84.50567154,0,15.6
+188743,0,0,0,15.6
+188744,0,368381.3767,678710.8694,15.6
+188745,0,0,0,15.6
+188746,0,83.85219872,0,15.6
+188747,0,0,0,15.6
+188748,0,0,0,15.6
+188749,0,0,0,15.6
+188750,0,75.98254396,0,15.6
+188751,0,0,0,15.6
+188752,0,0,0,15.6
+188753,0,0,0,15.6
+188754,0,82.65292045,0,15.6
+188755,0,0,0,15.6
+188756,0,0,0,15.6
+188757,0,0,0,15.6
+188758,0,96.08498436,0,15.6
+188759,0,0,0,15.6
+188760,340229.3521,0,0,15.6
+188761,0,0,0,15.6
+188762,0,86.89419866,0,15.6
+188763,0,0,0,15.6
+188764,0,0,0,15.6
+188765,0,433671.865,0,15.6
+188766,0,0,0,15.6
+188767,0,0,0,15.6
+188768,0,0,0,15.6
+188769,0,0,0,15.6
+188770,0,0,0,15.6
+188771,0,0,0,15.6
+188772,0,0,0,15.6
+188773,0,0,0,15.6
+188774,0,0,0,15.6
+188775,0,0,0,15.6
+188776,0,0,0,15.6
+188777,0,0,0,15.6
+188778,0,0,0,15.6
+188779,0,368385.5849,676850.0512,15.6
+188780,0,0,0,15.6
+188781,0,0,0,15.6
+188782,0,0,0,15.6
+188783,0,433573.3339,0,15.6
+188784,0,0,0,15.6
+188785,0,0,0,15.6
+188786,0,0,0,15.6
+188787,0,0,0,15.6
+188788,0,0,0,15.6
+188789,0,0,0,15.6
+188790,0,0,0,15.6
+188791,0,0,0,15.6
+188792,0,0,0,15.6
+188793,0,0,0,15.6
+188794,0,432712.3557,0,15.6
+188795,0,0,0,15.6
+188796,0,0,0,15.6
+188797,340233.6307,0,0,15.6
+188798,0,0,0,15.6
+188799,0,0,0,15.6
+188800,0,0,0,15.6
+188801,0,0,0,15.6
+188802,0,0,0,15.6
+188803,0,0,0,15.6
+188804,0,0,0,15.6
+188805,0,0,0,15.6
+188806,0,0,0,15.6
+188807,0,0,0,15.6
+188808,0,0,0,15.6
+188809,0,0,0,15.6
+188810,0,0,0,15.6
+188811,0,0,0,15.6
+188812,0,0,0,15.6
+188813,0,0,0,15.6
+188814,0,368395.1547,675801.1472,15.6
+188815,0,0,0,15.6
+188816,0,0,0,15.6
+188817,0,0,0,15.6
+188818,0,0,0,15.6
+188819,0,0,0,15.6
+188820,0,433145.3422,0,15.6
+188821,0,0,0,15.6
+188822,0,0,0,15.6
+188823,0,0,0,15.6
+188824,0,0,0,15.6
+188825,0,0,0,15.6
+188826,0,0,0,15.6
+188827,0,0,0,15.6
+188828,0,0,0,15.6
+188829,0,0,0,15.6
+188830,0,0,0,15.6
+188831,0,0,0,15.6
+188832,0,432627.251,0,15.6
+188833,0,0,0,15.6
+188834,0,0,0,15.6
+188835,340235.888,0,0,15.6
+188836,0,0,0,15.6
+188837,0,0,0,15.6
+188838,0,0,0,15.6
+188839,0,0,0,15.6
+188840,0,0,0,15.6
+188841,0,0,0,15.6
+188842,0,0,0,15.6
+188843,0,432237.0693,0,15.6
+188844,0,0,0,15.6
+188845,0,0,0,15.6
+188846,0,0,0,15.6
+188847,0,0,0,15.6
+188848,0,0,676263.7466,15.6
+188849,0,368388.989,0,15.6
+188850,0,0,0,15.6
+188851,0,0,0,15.6
+188852,0,0,0,15.6
+188853,0,0,0,15.6
+188854,0,432183.745,0,15.6
+188855,0,0,0,15.6
+188856,0,0,0,15.6
+188857,0,0,0,15.6
+188858,0,0,0,15.6
+188859,0,0,0,15.6
+188860,0,0,0,15.6
+188861,0,0,0,15.6
+188862,0,0,0,15.6
+188863,0,0,0,15.6
+188864,0,0,0,15.6
+188865,0,432055.9903,0,15.6
+188866,0,0,0,15.6
+188867,0,0,0,15.6
+188868,0,0,0,15.6
+188869,0,0,0,15.6
+188870,340235.9163,0,0,15.6
+188871,0,0,0,15.6
+188872,0,0,0,15.6
+188873,0,0,0,15.6
+188874,0,0,0,15.6
+188875,0,0,0,15.6
+188876,0,0,0,15.6
+188877,0,0,0,15.6
+188878,0,0,0,15.6
+188879,0,0,0,15.6
+188880,0,0,0,17.8
+188881,90965.91857,0,0,17.8
+188882,66276.81329,0,675297.8529,17.8
+188883,23975.68568,368379.1584,0,17.8
+188884,17488.42165,0,0,17.8
+188885,35061.08396,0,0,17.8
+188886,26901.54332,0,0,17.8
+188887,27177.94862,1087.381524,0,17.8
+188888,27131.74363,1475.943587,0,17.8
+188889,27637.72974,1017.8267,0,17.8
+188890,29660.37695,1258.588107,0,17.8
+188891,28085.17818,1275.509466,0,17.8
+188892,28595.3428,1275.509464,0,17.8
+188893,28484.29323,1292.396051,0,17.8
+188894,28484.82455,1309.2482,0,17.8
+188895,29152.0414,1309.248197,0,17.8
+188896,29260.46265,62874.80142,0,17.8
+188897,29880.04615,65418.50632,0,17.8
+188898,29480.09366,76551.87074,0,17.8
+188899,29620.17871,67963.85493,0,17.8
+188900,29691.07019,86352.42258,0,17.8
+188901,29634.41828,76579.50309,0,17.8
+188902,29674.23915,79688.61152,0,17.8
+188903,29675.75364,78735.53108,0,17.8
+188904,29734.22454,78174.49934,0,17.8
+188905,369895.5833,77580.39002,0,17.8
+188906,29723.00218,77014.29986,0,17.8
+188907,29775.93015,76081.11864,0,17.8
+188908,29707.0684,75161.65393,0,17.8
+188909,29750.50652,73496.69593,0,17.8
+188910,29801.88464,72808.45889,0,17.8
+188911,3531.347513,71832.3942,0,17.8
+188912,3557.04961,71063.7221,0,17.8
+188913,3607.755091,70210.69942,0,17.8
+188914,3607.497682,69382.38646,0,17.8
+188915,80331.59886,69382.3837,0,17.8
+188916,11395.15893,69292.27052,674506.2023,17.8
+188917,22667.66522,437762.456,0,17.8
+188918,30026.73604,69590.58612,0,17.8
+188919,25967.63869,69084.05155,0,17.8
+188920,26169.46039,69590.58057,0,17.8
+188921,26143.51476,69679.94699,0,17.8
+188922,26143.51248,69683.41327,0,17.8
+188923,26119.01371,69292.25132,0,17.8
+188924,26143.50784,82.38265762,0,17.8
+188925,26079.07146,0,0,17.8
+188926,26125.30377,0,0,17.8
+188927,26042.51915,0,0,17.8
+188928,26125.29883,0,0,17.8
+188929,26016.46222,65.64574575,0,17.8
+188930,26079.03954,0,0,17.8
+188931,26042.50905,0,0,17.8
+188932,26016.45451,0,0,17.8
+188933,26060.79757,0,0,17.8
+188934,26016.44923,0,0,17.8
+188935,25998.06887,0,0,17.8
+188936,26060.74941,247.4578664,0,17.8
+188937,25979.76975,0,0,17.8
+188938,25988.33007,0,0,17.8
+188939,26016.43572,0,0,17.8
+188940,366240.4166,0,0,20
+188941,1022951.948,285362.5224,5038.326571,20
+188942,523415.5807,46629.92682,0,20
+188943,80634.10279,132919.5195,0,20
+188944,185620.1985,126252.5213,3315.409782,20
+188945,325452.7467,127322.3593,15924.79761,20
+188946,227751.4931,122615.7513,47235.8133,20
+188947,241284.3386,123326.9404,23287.95533,20
+188948,241776.1399,122932.1173,42196.76572,20
+188949,241250.7997,122587.3424,48665.59373,20
+188950,241020.2328,122486.0239,43300.08163,20
+188951,240203.0185,121613.942,63756.48295,20
+188952,239977.009,121490.5172,53013.66423,20
+188953,239601.6194,121417.1813,57593.64419,20
+188954,239311.7604,120451.0395,60572.63694,20
+188955,238581.0845,120475.0371,66871.20612,20
+188956,238743.8098,120262.3773,64159.8307,20
+188957,238488.7294,119491.6194,66169.00588,20
+188958,237879.1033,119688.3832,67341.8547,20
+188959,237257.7305,118933.3629,67996.37877,20
+188960,238137.9013,118676.0379,69315.67922,20
+188961,236736.0665,118726.3572,69806.25702,20
+188962,237441.9672,117915.4319,70659.4398,20
+188963,236489.3781,118189.157,71977.2129,20
+188964,236568.9793,117554.9278,72604.4344,20
+188965,236548.7665,117304.6345,73251.11476,20
+188966,235813.6495,117119.2927,74398.03533,20
+188967,236410.1187,116698.2661,75209.82953,20
+188968,235840.8157,116589.7972,75887.11574,20
+188969,235443.0859,116397.481,76994.36079,20
+188970,235812.6858,115934.0559,77426.0368,20
+188971,235112.2984,115303.6028,78584.28948,20
+188972,235485.166,115050.1384,79277.14602,20
+188973,234622.4871,115072.6594,80148.49316,20
+188974,235141.3957,114384.5131,80859.87517,20
+188975,234611.9456,114481.5124,81744.26054,20
+188976,234450.6916,114098.6742,82491.73497,20
+188977,234651.1185,113873.8261,83009.88488,20
+188978,234025.5241,113599.1077,84400.92504,20
+188979,234102.6803,113567.2597,84715.30671,20
+188980,233550.871,113073.9241,85660.67174,20
+188981,234244.643,113048.9478,86129.94014,20
+188982,233545.451,112661.0196,87393.8854,20
+188983,233063.5575,112264.4868,87864.29257,20
+188984,233686.0544,112615.7462,88450.29329,20
+188985,232833.1187,111820.8336,78372.56698,20
+188986,233250.502,111840.3437,76867.4419,20
+188987,232921.8327,111623.3771,76797.51631,20
+188988,232500.0001,111086.6437,76267.44844,20
+188989,232877.0953,111580.7409,76614.20506,20
+188990,232635.2028,110573.9899,76111.88046,20
+188991,232194.8619,110862.928,76364.83279,20
+188992,232118.1908,110261.2969,75439.76419,20
+188993,232196.3904,110678.085,75884.77661,20
+188994,232204.2949,109813.776,75329.67856,20
+188995,231628.3617,109933.1938,75040.62735,20
+188996,231633.4481,109518.9357,75527.2249,20
+188997,231755.1588,109754.1257,74513.71971,20
+188998,231374.594,109060.5433,74015.32314,20
+188999,231563.3128,109157.2454,73379.37722,20
+189000,231045.9863,108880.5449,73428.86248,21
+189001,221500.6317,103913.4628,61263.16353,21
+189002,219714.3381,103181.7654,59530.97841,21
+189003,219663.9921,103112.7265,59085.89531,21
+189004,218962.4364,102331.3687,57819.50748,21
+189005,219046.8148,102318.4486,57555.01388,21
+189006,218010.6436,102314.0062,56611.58823,21
+189007,218432.6812,101755.0555,56050.62065,21
+189008,217325.8028,101546.5035,55432.01947,21
+189009,217455.7032,101204.2514,54430.7802,21
+189010,217168.6493,101290.5203,54165.3056,21
+189011,216532.7127,100626.5295,53505.51832,21
+189012,216437.1824,100756.9527,53401.89522,21
+189013,216063.8203,100063.4001,52688.73358,21
+189014,215858.884,100417.1691,52558.19844,21
+189015,215601.8888,99541.34247,52152.26579,21
+189016,214729.6746,99854.7738,51515.02807,21
+189017,215108.5226,99268.85661,51400.55349,21
+189018,214385.3581,99239.68813,50740.57199,21
+189019,214293.8573,98695.22553,50437.70771,21
+189020,214083.1657,98753.42833,49958.86267,21
+189021,213601.3635,98347.94341,49455.16751,21
+189022,213228.39,98361.07674,49252.87314,21
+189023,213247.7401,97596.30018,48340.98125,21
+189024,212796.3016,98026.38489,48462.7921,21
+189025,212552.8788,97206.67434,47598.61196,21
+189026,211971.771,97304.85025,47346.52331,21
+189027,212309.3523,96829.8736,46750.16657,21
+189028,211453.9923,96896.1387,46179.02272,21
+189029,211274.2613,96318.0191,46237.65167,21
+189030,211149.5182,96313.01461,45105.68928,21
+189031,210872.1605,96176.73313,45350.12887,21
+189032,210248.3242,95547.22067,44186.56518,21
+189033,210113.9707,95572.51707,43962.4375,21
+189034,209531.6741,95120.31412,43853.00292,21
+189035,209624.4295,95325.48124,42784.63232,21
+189036,209128.5071,94748.85655,42789.10857,21
+189037,208774.841,94472.33533,42026.17492,21
+189038,208325.3442,94448.48571,41744.95926,21
+189039,208108.8733,94109.45271,41168.82277,21
+189040,207718.941,93861.23787,40578.73301,21
+189041,207437.3049,93681.79038,40543.55929,21
+189042,207014.7616,93305.00725,40397.82123,21
+189043,206874.4583,93412.04634,39833.27895,21
+189044,206236.9194,92618.10364,39749.38314,21
+189045,206187.8948,92841.72302,39631.40589,21
+189046,205480.1167,92500.25176,39286.85475,21
+189047,205567.6569,92241.97698,38983.85273,21
+189048,204811.2585,91968.25215,39919.66256,21
+189049,204937.055,91835.1755,39534.00715,21
+189050,204196.6123,91547.59844,39470.9639,21
+189051,203907.3958,91387.99714,39274.00963,21
+189052,203924.9782,91171.0866,39068.80166,21
+189053,203079.5748,90672.165,38680.42025,21
+189054,203066.7036,90280.26571,38837.95748,21
+189055,202455.4179,90030.86703,38191.24024,21
+189056,202502.4661,89137.9593,38313.87055,21
+189057,201680.9859,89601.79982,37864.81096,21
+189058,201939.1734,89097.06596,37798.28311,21
+189059,200936.8299,88493.9175,37324.4384,21
+189060,201053.6454,88944.39264,37363.354,21
+189061,121269.7488,49843.12757,2233.386006,21
+189062,529259.266,47956.05917,1907.811513,21
+189063,115180.0363,46577.81003,1853.869082,21
+189064,114552.4368,46056.18057,1768.333826,21
+189065,536285.8136,45494.0166,1697.253389,21
+189066,112421.2305,44393.71933,1654.620902,21
+189067,110946.978,44293.99941,1611.774849,21
+189068,110305.4916,43504.72418,1510.240234,21
+189069,109406.9486,43026.62253,1496.013097,21
+189070,108213.1099,42456.12106,1407.431489,21
+189071,107394.9234,42150.99159,1392.849796,21
+189072,106755.6763,41304.49098,1302.571263,21
+189073,105457.0823,40928.37697,1287.397596,21
+189074,105164.5064,40466.99921,1256.403277,21
+189075,103732.2326,39908.83215,1210.621799,21
+189076,103327.8748,39724.54399,1225.938581,21
+189077,102157.8869,38724.92065,1164.656982,21
+189078,101487.3784,38512.9309,1180.041326,21
+189079,100713.6577,38297.41296,1133.909039,21
+189080,99753.59108,37493.51651,1133.930688,21
+189081,99007.56296,37000.60318,1087.580741,21
+189082,97971.42597,36674.80388,1087.600665,21
+189083,97617.70283,36284.76614,1072.114139,21
+189084,96432.23264,35868.09461,1025.463842,21
+189085,95901.76452,35147.89114,1025.481562,21
+189086,94766.37216,34938.19764,994.2578491,21
+189087,94410.08705,34268.8659,978.6145225,21
+189088,93462.3436,33733.32726,947.230669,21
+189089,92268.49648,33462.54739,947.2457958,21
+189090,92143.99693,33157.62831,899.9559012,21
+189091,90855.98473,32415.02923,899.9695597,21
+189092,90381.81644,32115.28719,868.3059618,21
+189093,89376.95016,31473.80114,852.4368541,21
+189094,88607.69666,31425.51533,820.5971426,21
+189095,87905.01668,30280.56429,804.637549,21
+189096,87213.98671,30283.61609,788.6468921,21
+189097,86058.97599,29785.6119,740.4650128,21
+189098,85503.80939,28878.64374,756.5702418,21
+189099,84884.56897,28829.75714,691.9991407,21
+189100,83710.78498,28187.55372,708.202152,21
+189101,83189.61108,27739.9513,659.5227024,21
+189102,82425.96371,27235.937,626.8960152,21
+189103,81468.15082,26779.42674,626.90265,21
+189104,80996.36077,26271.69343,594.1281797,21
+189105,80003.45839,25970.86047,561.2002862,21
+189106,79145.60646,25367.06102,544.679281,21
+189107,78571.06424,24912.0977,528.117111,21
+189108,77796.9946,24609.15119,494.8611027,21
+189109,76898.54594,23961.94395,478.1695661,21
+189110,76302.35094,23737.98207,461.4326194,21
+189111,75486.67949,23073.66018,427.8141926,21
+189112,74676.75377,23117.44186,410.9332564,21
+189113,73858.6476,22075.76211,377.0141151,21
+189114,73408.67784,22134.73558,359.9749799,21
+189115,72333.4788,21558.01035,342.8792478,21
+189116,71669.82901,21041.98602,308.5071842,21
+189117,71136.50691,20788.62349,291.2274702,21
+189118,70063.20177,20240.09131,273.880727,21
+189119,69520.28546,20140.35003,238.9710125,21
+189120,68970.18327,19400.27758,221.4008619,21
+189121,67833.86999,19222.05701,186.0024781,21
+189122,67177.59845,18745.29781,186.0030626,21
+189123,66756.44659,18189.35021,150.2159297,21
+189124,65605.80099,17967.26252,132.1540457,21
+189125,65025.83023,17551.06033,95.62540134,21
+189126,64182.58002,17177.86435,95.62551617,21
+189127,63927.72553,16526.22397,58.40552628,21
+189128,63099.66097,16511.43633,48.95659805,21
+189129,62720.22056,15946.50625,20.09114481,21
+189130,62029.45331,15485.61722,0,21
+189131,61565.17279,15076.20972,0,21
+189132,61157.42778,14893.30708,0,21
+189133,60306.94516,14397.34113,0,21
+189134,60178.87161,13838.27097,0,21
+189135,59157.44808,13599.50899,0,21
+189136,59048.56304,12941.21749,0,21
+189137,58225.25162,12733.99147,0,21
+189138,57910.52441,12132.21633,0,21
+189139,56950.56662,12054.87633,0,21
+189140,56893.87538,11171.11061,0,21
+189141,56062.39376,10999.11124,0,21
+189142,55673.67192,10571.90544,0,21
+189143,55139.79975,10039.36618,0,21
+189144,54503.94521,9487.687762,0,21
+189145,54086.59244,9052.303453,0,21
+189146,53525.87021,8616.277914,0,21
+189147,52826.50769,7930.662494,0,21
+189148,52591.63375,7635.275525,0,21
+189149,51772.68553,7014.782236,0,21
+189150,51476.64544,6347.286105,0,21
+189151,50865.70799,6226.615772,0,21
+189152,50298.4406,5779.34845,0,21
+189153,49991.44765,5544.391283,0,21
+189154,49351.11174,5374.167813,0,21
+189155,49050.77608,5276.693118,0,21
+189156,48406.24978,5096.005576,0,21
+189157,47953.43427,4841.489992,0,21
+189158,47646.5667,4799.999334,0,21
+189159,47366.34815,4601.277778,0,21
+189160,46915.71761,4654.54306,0,21
+189161,46868.32787,4158.478574,0,21
+189162,46242.54574,4206.429226,0,21
+189163,46166.06454,4020.56682,0,21
+189164,45893.00889,3758.512262,0,21
+189165,45315.9682,3553.936824,0,21
+189166,45545.61084,3617.171587,0,21
+189167,44697.16709,3080.467437,0,21
+189168,44698.51559,3143.924015,0,21
+189169,44254.37423,2920.535054,0,21
+189170,44170.0252,2678.589803,0,21
+189171,43641.52589,2588.160939,0,21
+189172,43485.88953,2185.931622,0,21
+189173,43228.5494,2261.286086,0,21
+189174,42871.61178,1899.005355,0,21
+189175,42560.96288,1899.005515,0,21
+189176,42397.02869,1866.027131,0,21
+189177,42027.29337,1548.085471,0,21
+189178,41776.49175,1691.323966,0,21
+189179,41446.09292,1336.517194,0,21
+189180,41112.28832,1353.180522,0,21
+189181,46875.82657,955.1616147,0,21
+189182,46493.98323,587.3445245,0,21
+189183,46263.77964,767.0626515,0,21
+189184,46154.07619,570.4114024,0,21
+189185,45928.81787,536.3709068,0,21
+189186,45507.64793,553.420682,0,21
+189187,45432.11961,502.0888016,0,21
+189188,44951.79338,519.2609162,0,21
+189189,44939.22774,484.8532796,0,21
+189190,44546.52669,467.5523556,0,21
+189191,44455.25093,467.5523778,0,21
+189192,44041.48038,450.1842246,0,21
+189193,43973.89614,432.7467919,0,21
+189194,43371.75702,415.2379323,0,21
+189195,43660.57556,397.6551832,0,21
+189196,42875.5663,379.9959916,0,21
+189197,42978.21117,379.9960064,0,21
+189198,42489.41094,353.357581,0,21
+189199,42487.17603,344.4366414,0,21
+189200,41988.58442,326.5299526,0,21
+189201,41897.47295,308.5336136,0,21
+189202,41748.40454,299.5005359,0,21
+189203,41173.2774,281.3616289,0,21
+189204,41227.91361,272.2545598,0,21
+189205,40841.91355,244.7743049,0,21
+189206,40566.27358,235.5585876,0,21
+189207,40514.13357,235.5586027,0,21
+189208,39897.86573,198.3921795,0,21
+189209,39999.67806,198.3921894,0,21
+189210,39578.11003,179.6107343,0,21
+189211,39338.7819,160.6820126,0,21
+189212,39160.56163,141.5914175,0,21
+189213,38840.3156,141.5914273,0,21
+189214,38772.57042,122.3205584,0,21
+189215,38330.89813,102.8454159,0,21
+189216,38366.90498,83.13318892,0,21
+189217,37825.76543,83.13319329,0,21
+189218,37787.67717,63.13604808,0,21
+189219,37496.34252,42.77683813,0,21
+189220,37190.28546,42.77685096,0,21
+189221,37208.8835,0,0,21
+189222,36786.17769,21.90592147,0,21
+189223,36520.23937,0,0,21
+189224,36341.82678,0,0,21
+189225,36035.75503,0,0,21
+189226,36046.29452,0,0,21
+189227,35515.66985,0,0,21
+189228,35459.27652,0,0,21
+189229,35404.20504,0,0,21
+189230,34773.7778,0,0,21
+189231,34779.95512,0,0,21
+189232,34560.08369,0,0,21
+189233,34368.16961,0,0,21
+189234,33955.54253,0,0,21
+189235,33989.56797,0,0,21
+189236,33529.63659,0,0,21
+189237,33382.08456,0,0,21
+189238,33301.97662,0,0,21
+189239,32884.06975,0,0,21
+189240,32817.15651,0,0,21
+189241,26645.01782,0,0,21
+189242,26516.8805,0,0,21
+189243,26137.69982,0,0,21
+189244,25998.3659,0,0,21
+189245,25695.09075,0,0,21
+189246,25605.71701,0,0,21
+189247,25268.00515,0,0,21
+189248,24965.30009,0,0,21
+189249,25103.33088,0,0,21
+189250,24500.9043,0,0,21
+189251,24601.47443,0,0,21
+189252,24194.27796,0,0,21
+189253,24057.15318,0,0,21
+189254,23773.16001,0,0,21
+189255,23757.16265,0,0,21
+189256,23371.76706,0,0,21
+189257,23298.88669,0,0,21
+189258,22968.52062,0,0,21
+189259,22895.34233,0,0,21
+189260,22639.15873,0,0,21
+189261,22361.77006,0,0,21
+189262,22325.20683,0,0,21
+189263,21953.22455,0,0,21
+189264,21800.68852,0,0,21
+189265,21727.89798,0,0,21
+189266,21371.50128,0,0,21
+189267,21225.77699,0,0,21
+189268,21150.97849,0,0,21
+189269,20670.81759,0,0,21
+189270,20768.27556,0,0,21
+189271,20571.6728,0,0,21
+189272,20454.33901,0,0,21
+189273,20308.67568,0,0,21
+189274,20187.911,0,0,21
+189275,20141.43717,0,0,21
+189276,20098.19769,0,0,21
+189277,19997.06473,0,0,21
+189278,19936.85016,0,0,21
+189279,19696.13796,0,0,21
+189280,19798.96116,0,0,21
+189281,19754.64676,0,0,21
+189282,19573.16917,0,0,21
+189283,19694.3181,0,0,21
+189284,19426.13116,0,0,21
+189285,19575.17884,0,0,21
+189286,19389.83066,0,0,21
+189287,19427.81396,0,0,21
+189288,19234.42012,0,0,21
+189289,19427.81397,0,0,21
+189290,19066.34721,0,0,21
+189291,19292.34009,0,0,21
+189292,19284.52719,0,0,21
+189293,19016.95708,0,0,21
+189294,19256.12778,0,0,21
+189295,19016.95709,0,0,21
+189296,19004.53046,0,0,21
+189297,19100.33625,0,0,21
+189298,18967.7626,0,0,21
+189299,18955.6562,0,0,21
+189300,19075.53165,0,0,21
+189301,31049.93498,0,0,21
+189302,31504.67745,0,0,21
+189303,32254.32863,0,0,21
+189304,32092.76848,0,0,21
+189305,32096.68897,0,0,21
+189306,32131.40566,0,0,21
+189307,32402.69191,0,0,21
+189308,32290.26541,0,0,21
+189309,32537.22614,0,0,21
+189310,32491.07847,0,0,21
+189311,32618.75155,0,0,21
+189312,32718.26378,0,0,21
+189313,32723.25338,0,0,21
+189314,32814.10218,0,0,21
+189315,33015.93116,0,0,21
+189316,33045.2501,0,0,21
+189317,33038.20937,0,0,21
+189318,33134.4113,0,0,21
+189319,33314.83672,0,0,21
+189320,33379.50213,0,0,21
+189321,33445.04184,0,0,21
+189322,33559.91097,0,0,21
+189323,33571.56538,0,0,21
+189324,33763.51933,0,0,21
+189325,33774.11066,0,0,21
+189326,33995.97691,0,0,21
+189327,33881.77638,0,0,21
+189328,34198.21044,0,0,21
+189329,34103.31324,0,0,21
+189330,34525.46589,0,0,21
+189331,34099.59572,0,0,21
+189332,34297.19102,0,0,21
+189333,34365.85067,0,0,21
+189334,33961.47587,0,0,21
+189335,34354.01413,0,0,21
+189336,33937.674,0,0,21
+189337,34087.15536,0,0,21
+189338,33914.93095,0,0,21
+189339,33959.7578,0,0,21
+189340,33659.86016,0,0,21
+189341,33937.24476,0,0,21
+189342,33611.99329,0,0,21
+189343,33612.50702,0,0,21
+189344,33450.47822,0,0,21
+189345,33577.31396,0,0,21
+189346,33224.54546,0,0,21
+189347,33408.54182,0,0,21
+189348,33093.18921,0,0,21
+189349,33261.57473,0,0,21
+189350,32750.72558,0,0,21
+189351,32999.96616,0,0,21
+189352,32811.79603,0,0,21
+189353,32776.33058,0,0,21
+189354,32548.74779,0,0,21
+189355,32634.45757,0,0,21
+189356,32277.03688,0,0,21
+189357,32389.94805,0,0,21
+189358,32254.23035,0,0,21
+189359,32014.03787,0,0,21
+189360,32017.3202,0,0,21
+189361,19358.63138,0,0,21
+189362,18780.12759,0,0,21
+189363,18593.4569,0,0,21
+189364,18155.54159,0,0,21
+189365,18078.85681,0,0,21
+189366,17722.79442,0,0,21
+189367,17455.7795,0,0,21
+189368,17191.44804,0,0,21
+189369,16925.07399,0,0,21
+189370,16680.55607,0,0,21
+189371,16406.70234,0,0,21
+189372,16211.30684,0,0,21
+189373,16035.61581,0,0,21
+189374,15576.30075,0,0,21
+189375,15550.68877,0,0,21
+189376,15189.74983,0,0,21
+189377,14824.97585,0,0,21
+189378,14688.31533,0,0,21
+189379,14433.26222,0,0,21
+189380,14171.0293,0,0,21
+189381,13715.15884,0,0,21
+189382,13776.89719,0,0,21
+189383,13192.71265,0,0,21
+189384,13167.51218,0,0,21
+189385,12667.87055,0,0,21
+189386,12655.21525,0,0,21
+189387,12165.46298,0,0,21
+189388,12009.52995,0,0,21
+189389,11752.96464,0,0,21
+189390,11374.60886,0,0,21
+189391,11114.1368,0,0,21
+189392,11113.67963,0,0,21
+189393,10826.29884,0,0,21
+189394,10722.02459,0,0,21
+189395,10196.28694,0,0,21
+189396,10429.65599,0,0,21
+189397,9918.738422,0,0,21
+189398,9917.820972,0,0,21
+189399,9639.354474,0,0,21
+189400,9517.79716,0,0,21
+189401,9254.474037,0,0,21
+189402,8982.979245,0,0,21
+189403,9078.977691,0,0,21
+189404,8717.909389,0,0,21
+189405,8567.817794,0,0,21
+189406,8404.549663,0,0,21
+189407,8163.773816,0,0,21
+189408,8137.057859,0,0,21
+189409,7754.090748,0,0,21
+189410,7726.775653,0,0,21
+189411,7592.556165,0,0,21
+189412,7192.003186,0,0,21
+189413,7317.874599,0,0,21
+189414,7029.260641,0,0,21
+189415,6752.616405,0,0,21
+189416,6638.678485,0,0,21
+189417,6588.562999,0,0,21
+189418,6208.696033,0,0,21
+189419,6182.04174,0,0,21
+189420,6043.339102,0,0,21
+189421,11790.71218,0,0,21
+189422,11976.12428,0,0,21
+189423,11745.05283,0,0,21
+189424,11853.9948,0,0,21
+189425,11731.60109,0,0,21
+189426,11793.56417,0,0,21
+189427,11589.9677,0,0,21
+189428,11577.03035,0,0,21
+189429,11528.89725,0,0,21
+189430,11562.98102,0,0,21
+189431,11406.98014,0,0,21
+189432,11528.89492,0,0,21
+189433,11264.17866,0,0,21
+189434,11379.29372,0,0,21
+189435,11250.05636,0,0,21
+189436,11250.05561,0,0,21
+189437,11222.30463,0,0,21
+189438,11113.6912,0,0,21
+189439,11078.52113,0,0,21
+189440,11092.14186,0,0,21
+189441,10955.71144,0,0,21
+189442,11050.67244,0,0,21
+189443,10832.6294,0,0,21
+189444,10905.82306,0,0,21
+189445,11036.43655,0,0,21
+189446,10674.12851,0,0,21
+189447,10891.5872,0,0,21
+189448,10659.85483,0,0,21
+189449,10731.3269,0,0,21
+189450,10659.85346,0,0,21
+189451,10608.97207,0,0,21
+189452,10435.38023,0,0,21
+189453,10544.22989,0,0,21
+189454,10118.79774,0,0,21
+189455,10132.66223,0,0,21
+189456,9842.035124,0,0,21
+189457,9639.775479,0,0,21
+189458,9785.53664,0,0,21
+189459,9583.316195,0,0,21
+189460,9757.239686,0,0,21
+189461,9743.113069,0,0,21
+189462,9807.995109,0,0,21
+189463,9886.997359,0,0,21
+189464,9656.684814,0,0,21
+189465,9828.90987,0,0,21
+189466,9569.687751,0,0,21
+189467,9662.461612,0,0,21
+189468,9618.51196,0,0,21
+189469,9527.58745,0,0,21
+189470,9590.440217,0,0,21
+189471,9450.824548,0,0,21
+189472,9467.346004,0,0,21
+189473,9234.403728,0,0,21
+189474,9387.581274,0,0,21
+189475,9123.071169,0,0,21
+189476,9172.739244,0,0,21
+189477,8999.143671,0,0,21
+189478,9044.825423,0,0,21
+189479,8884.310841,0,0,21
+189480,8898.742241,0,0,21
+189481,2506.074046,0,0,21
+189482,2506.074034,0,0,21
+189483,2377.394501,0,0,21
+189484,2377.394488,0,0,21
+189485,2218.997236,0,0,21
+189486,2362.962418,0,0,21
+189487,2088.634652,0,0,21
+189488,2074.119194,0,0,21
+189489,2074.119182,0,0,21
+189490,1928.258316,0,0,21
+189491,1928.258304,0,0,21
+189492,1766.684793,0,0,21
+189493,1781.330271,0,0,21
+189494,1766.684772,0,0,21
+189495,1603.805364,0,0,21
+189496,1618.541179,0,0,21
+189497,1469.095308,0,0,21
+189498,1454.313111,0,0,21
+189499,1454.313102,0,0,21
+189500,1288.469574,0,0,21
+189501,1303.34707,0,0,21
+189502,1135.747592,0,0,21
+189503,980.977971,0,0,21
+189504,965.9503162,0,0,21
+189505,670.1345172,0,0,21
+189506,793.3997209,0,0,21
+189507,647.4548382,0,0,21
+189508,632.2670911,0,0,21
+189509,478.98319,0,0,21
+189510,526.6228658,0,0,21
+189511,448.4386112,0,0,21
+189512,448.4386061,0,0,21
+189513,417.6587525,0,0,21
+189514,417.658748,0,0,21
+189515,402.176504,0,0,21
+189516,402.1764997,0,0,21
+189517,371.0181081,0,0,21
+189518,386.6304523,0,0,21
+189519,355.3377025,0,0,21
+189520,355.337786,0,0,21
+189521,339.5869417,0,0,21
+189522,323.7629876,0,0,21
+189523,323.7631034,0,0,21
+189524,307.8633258,0,0,21
+189525,291.8845378,0,0,21
+189526,291.8844191,0,0,21
+189527,267.7604116,0,0,21
+189528,259.6757239,0,0,21
+189529,259.6757241,0,0,21
+189530,243.4375215,0,0,21
+189531,227.1037856,0,0,21
+189532,210.6689264,0,0,21
+189533,210.6689264,0,0,21
+189534,202.4115991,0,0,21
+189535,177.4689571,0,0,21
+189536,177.4689571,0,0,21
+189537,160.687396,0,0,21
+189538,160.6873959,0,0,21
+189539,135.2583516,0,0,21
+189540,126.7072668,0,0,21
+189541,126.7067964,0,0,21
+189542,126.7068115,0,0,21
+189543,109.47781,0,0,21
+189544,118.1141622,0,0,21
+189545,92.06233745,0,0,21
+189546,92.06233539,0,0,21
+189547,74.43061129,0,0,21
+189548,74.43060988,0,0,21
+189549,47.47594773,0,0,21
+189550,47.47594736,0,0,21
+189551,38.31801814,0,0,21
+189552,19.63091622,0,0,21
+189553,19.63091628,0,0,21
+189554,0,0,0,21
+189555,0,0,0,21
+189556,0,0,0,21
+189557,0,0,0,21
+189558,0,0,0,21
+189559,0,0,0,21
+189560,0,0,0,21
+189561,0,0,0,21
+189562,0,0,0,21
+189563,0,0,0,21
+189564,0,0,0,21
+189565,0,0,0,21
+189566,0,0,0,21
+189567,0,0,0,21
+189568,0,0,0,21
+189569,0,0,0,21
+189570,0,0,0,21
+189571,0,0,0,21
+189572,0,0,0,21
+189573,0,0,0,21
+189574,0,0,0,21
+189575,0,0,0,21
+189576,0,0,0,21
+189577,0,0,0,21
+189578,0,0,0,21
+189579,0,0,0,21
+189580,0,0,0,21
+189581,0,0,0,21
+189582,0,0,0,21
+189583,0,0,0,21
+189584,0,0,0,21
+189585,0,0,0,21
+189586,0,0,0,21
+189587,0,0,0,21
+189588,0,0,0,21
+189589,0,0,0,21
+189590,0,0,0,21
+189591,0,0,0,21
+189592,0,0,0,21
+189593,0,0,0,21
+189594,0,0,0,21
+189595,0,0,0,21
+189596,0,0,0,21
+189597,0,0,0,21
+189598,0,0,0,21
+189599,0,0,0,21
+189600,0,0,0,21
+189601,0,0,0,21
+189602,0,0,0,21
+189603,14583.86437,0,0,21
+189604,6645.74622,0,0,21
+189605,8653.373444,0,0,21
+189606,8927.555747,0,0,21
+189607,9157.491442,0,0,21
+189608,9157.491085,0,0,21
+189609,9400.729142,0,0,21
+189610,9614.584797,0,0,21
+189611,9628.780029,0,0,21
+189612,9855.933139,0,0,21
+189613,10068.0822,0,0,21
+189614,10096.28705,0,0,21
+189615,10202.04857,0,0,21
+189616,10427.00316,0,0,21
+189617,10532.15092,0,0,21
+189618,10665.08605,0,0,21
+189619,10769.83267,0,0,21
+189620,10992.67553,0,0,21
+189621,11006.58155,0,0,21
+189622,11214.70158,0,0,21
+189623,11332.34429,0,0,21
+189624,11463.56701,0,0,21
+189625,11656.35381,0,0,21
+189626,11683.92975,0,0,21
+189627,11786.94399,0,0,21
+189628,12019.86238,0,0,21
+189629,12122.32306,0,0,21
+189630,12122.32192,0,0,21
+189631,12353.99076,0,0,21
+189632,12469.51251,0,0,21
+189633,12557.64111,0,0,21
+189634,12584.82771,0,0,21
+189635,12787.7759,0,0,21
+189636,12801.3214,0,0,21
+189637,12916.04791,0,0,21
+189638,13017.08292,0,0,21
+189639,13232.12421,0,0,21
+189640,13044.02044,0,0,21
+189641,13446.44946,0,0,21
+189642,13359.52118,0,0,21
+189643,13473.27194,0,0,21
+189644,13673.47654,0,0,21
+189645,13586.82673,0,0,21
+189646,13800.02351,0,0,21
+189647,13899.70244,0,0,21
+189648,13913.00758,0,0,21
+189649,13926.28391,0,0,21
+189650,14323.3662,0,0,21
+189651,14039.04554,0,0,21
+189652,14349.83315,0,0,21
+189653,14349.83041,0,0,21
+189654,14560.59116,0,0,21
+189655,14376.18478,0,0,21
+189656,14770.68166,0,0,21
+189657,14586.88676,0,0,21
+189658,14895.1521,0,0,21
+189659,14796.92193,0,0,21
+189660,15006.29976,0,0,21
+189661,18384.91667,0,0,21
+189662,18979.45852,0,0,21
+189663,18806.4457,0,0,21
+189664,19532.8019,0,0,21
+189665,19508.15482,0,0,21
+189666,19753.64254,0,0,21
+189667,19884.04694,0,0,21
+189668,19949.64083,0,0,21
+189669,20307.89074,0,0,21
+189670,20190.37567,0,0,21
+189671,20559.6703,0,0,21
+189672,20691.22257,0,0,21
+189673,20802.2718,0,0,21
+189674,20850.73871,0,0,21
+189675,21212.69415,0,0,21
+189676,21088.19166,0,0,21
+189677,21449.1544,0,0,21
+189678,21489.09347,0,0,21
+189679,21696.69608,0,0,21
+189680,21724.4647,0,0,21
+189681,22106.28229,0,0,21
+189682,21958.99793,0,0,21
+189683,22122.09006,0,0,21
+189684,22161.48669,0,0,21
+189685,22339.76101,0,0,21
+189686,22382.82272,0,0,21
+189687,22584.21665,0,0,21
+189688,22611.50732,0,0,21
+189689,22788.84097,0,0,21
+189690,23020.04683,0,0,21
+189691,23020.09922,0,0,21
+189692,23246.91614,0,0,21
+189693,23334.94036,0,0,21
+189694,23465.02776,0,0,21
+189695,23663.73023,0,0,21
+189696,23678.91401,0,0,21
+189697,23892.21137,0,0,21
+189698,24066.76689,0,0,21
+189699,24104.92462,0,0,21
+189700,24317.05543,0,0,21
+189701,24332.03142,0,0,21
+189702,24716.6929,0,0,21
+189703,24754.45739,0,0,21
+189704,25125.76473,0,0,21
+189705,24979.61331,0,0,21
+189706,25346.50335,0,0,21
+189707,25375.92922,0,0,21
+189708,25398.55887,0,0,21
+189709,25740.99276,0,0,21
+189710,25804.05082,0,0,21
+189711,25811.33228,0,0,21
+189712,26170.54402,0,0,21
+189713,26037.33148,0,0,21
+189714,26388.35968,0,0,21
+189715,26673.84899,0,0,21
+189716,26615.15838,0,0,21
+189717,26996.81057,0,0,21
+189718,27099.62534,0,0,21
+189719,27112.45496,0,0,21
+189720,27341.22875,0,0,21
+189721,27585.10074,0,0,21
+189722,27610.14896,0,0,21
+189723,27829.24874,0,0,21
+189724,28066.89115,0,0,21
+189725,28103.70739,0,0,21
+189726,28308.99737,0,0,21
+189727,28380.09758,0,0,21
+189728,28584.63804,0,0,21
+189729,28808.29155,0,0,21
+189730,28856.9676,0,0,21
+189731,29279.45552,0,0,21
+189732,29308.84108,0,0,21
+189733,29513.90829,0,0,21
+189734,29786.39408,0,0,21
+189735,29836.98943,0,0,21
+189736,30095.25959,0,0,21
+189737,30144.7736,0,0,21
+189738,30567.05143,0,0,21
+189739,30451.26761,0,0,21
+189740,30708.78122,0,0,21
+189741,30916.86827,0,0,21
+189742,31165.40562,0,0,21
+189743,31044.74226,0,0,21
+189744,31605.97916,0,0,21
+189745,31348.12596,0,0,21
+189746,31753.50966,0,0,21
+189747,31962.76977,0,0,21
+189748,31878.9942,0,0,21
+189749,32237.23968,0,0,21
+189750,32336.55245,0,0,21
+189751,32525.21172,0,0,21
+189752,32612.88458,0,0,21
+189753,32838.51914,0,0,21
+189754,33081.65464,0,0,21
+189755,33136.38035,0,0,21
+189756,33363.07491,0,0,21
+189757,33449.154,0,0,21
+189758,33668.77249,0,0,21
+189759,33866.50597,0,0,21
+189760,33948.40718,0,0,21
+189761,34190.83874,0,0,21
+189762,34408.55605,0,0,21
+189763,34288.72944,0,0,21
+189764,34890.06648,0,0,21
+189765,37138.10225,0,0,21
+189766,36520.53889,0,0,21
+189767,37053.00486,0,0,21
+189768,37581.61192,0,0,21
+189769,37980.66228,0,0,21
+189770,38336.3146,0,0,21
+189771,38931.89095,0,0,21
+189772,39085.33735,0,0,21
+189773,39526.16076,0,0,21
+189774,39938.17901,0,0,21
+189775,40524.42414,0,0,21
+189776,40607.29802,0,0,21
+189777,41262.6468,0,0,21
+189778,41488.26218,0,0,21
+189779,41842.12782,0,0,21
+189780,42454.06371,0,0,21
+189781,44064.9925,0,0,21
+189782,44464.34315,0,0,21
+189783,45089.88293,0,0,21
+189784,45422.85102,0,0,21
+189785,45751.60864,0,0,21
+189786,46231.86036,0,0,21
+189787,46705.27569,0,0,21
+189788,46803.44679,0,0,21
+189789,47602.58029,0,0,21
+189790,47738.88048,0,0,21
+189791,48078.23188,0,0,21
+189792,48563.55937,0,0,21
+189793,48954.30555,0,0,21
+189794,49285.13358,0,0,21
+189795,49785.16054,0,0,21
+189796,49855.06186,0,0,21
+189797,50667.37408,0,0,21
+189798,50803.04951,0,0,21
+189799,50991.57532,0,0,21
+189800,51876.53426,0,0,21
+189801,51802.83181,0,0,21
+189802,52980.67556,0,0,21
+189803,53424.87886,0,0,21
+189804,58424.37406,0,0,21
+189805,56828.23378,0,0,21
+189806,58069.41246,0,0,21
+189807,58768.41557,0,0,21
+189808,59445.66302,0,0,21
+189809,59679.01748,0,0,21
+189810,61102.37572,0,0,21
+189811,61008.80872,0,0,21
+189812,61833.38656,0,0,21
+189813,62684.48002,0,0,21
+189814,62731.20437,0,0,21
+189815,63666.57135,0,0,21
+189816,64066.25157,0,0,21
+189817,64695.48563,0,0,21
+189818,65102.70103,0,0,21
+189819,65792.43461,0,0,21
+189820,66172.19576,0,0,21
+189821,66681.16623,0,0,21
+189822,67456.14156,0,0,21
+189823,67526.87762,0,0,21
+189824,68342.42017,0,0,21
+189825,68565.72639,0,0,21
+189826,69300.35371,0,0,21
+189827,69574.60132,0,0,21
+189828,69990.59386,0,0,21
+189829,70746.94362,0,0,21
+189830,70906.40671,0,0,21
+189831,71472.32099,0,0,21
+189832,71927.72303,0,0,21
+189833,72299.20931,0,0,21
+189834,72818.3445,0,0,21
+189835,73025.46017,0,0,21
+189836,73834.35306,0,0,21
+189837,73748.03895,0,0,21
+189838,74538.44521,0,0,21
+189839,74918.01821,0,0,21
+189840,75254.76069,0,0,21
+189841,75480.21332,0,0,21
+189842,76285.50123,0,0,21
+189843,76471.01698,704.4919362,0,21
+189844,76778.97763,1361.695719,0,21
+189845,77625.8674,1199.895764,0,21
+189846,77407.2258,1522.133297,0,21
+189847,78475.82006,1839.393466,0,21
+189848,78400.52516,1839.393456,0,21
+189849,79038.52553,2307.522365,0,21
+189850,79377.15357,2307.522349,0,21
+189851,79592.93729,2836.627907,0,21
+189852,80218.31724,2892.621271,0,21
+189853,80567.84465,3254.090622,0,21
+189854,80760.60053,3442.729741,0,21
+189855,81829.49001,3760.585303,0,21
+189856,81689.70276,3779.351343,0,21
+189857,82569.78149,4260.430426,0,21
+189858,82676.4874,4288.05588,0,21
+189859,83182.97675,4745.195447,0,21
+189860,83852.64704,4772.471081,0,21
+189861,84162.34306,5098.505262,0,21
+189862,84429.43943,5251.714456,0,21
+189863,85180.77022,5583.323483,0,21
+189864,85234.32709,5726.164934,0,21
+189865,85943.38825,6063.377268,0,21
+189866,86031.74139,6204.904857,0,21
+189867,86716.41643,6733.225932,0,21
+189868,87060.10427,7067.145662,0,21
+189869,87349.87866,7159.860967,0,21
+189870,87846.98584,7390.992687,0,21
+189871,88074.94884,7866.782535,0,21
+189872,88763.49225,7925.931708,0,21
+189873,88828.59914,8291.066056,0,21
+189874,89444.46103,8472.803738,0,21
+189875,89733.10873,8790.583977,0,21
+189876,90095.34466,9041.949263,0,21
+189877,90218.22237,9194.494955,0,21
+189878,91246.6877,9579.097129,0,21
+189879,90847.89642,9730.515103,0,21
+189880,91727.67178,9948.04534,0,21
+189881,92018.84834,10288.65702,0,21
+189882,91996.68724,10464.91003,0,21
+189883,92817.47916,10683.04826,0,21
+189884,93103.71909,10991.04314,0,21
+189885,95486.91993,13366.23249,0,21
+189886,95780.65524,13664.82323,0,21
+189887,96358.9669,13995.56384,0,21
+189888,97075.84619,14921.15634,0,21
+189889,97811.58844,15198.8271,0,21
+189890,98383.7958,16119.03364,0,21
+189891,99249.3567,16551.84322,0,21
+189892,99561.5021,17277.44478,0,21
+189893,100517.8112,17771.13364,0,21
+189894,100985.9036,18463.85223,0,21
+189895,101401.6307,18783.92937,0,21
+189896,102453.615,19678.49204,0,21
+189897,102676.3368,20391.41405,0,21
+189898,103622.2508,20834.47629,0,21
+189899,103796.6064,21551.05273,0,21
+189900,104909.25,22215.02969,0,21
+189901,0,0,0,21
+189902,0,0,0,21
+189903,0,0,0,21
+189904,0,0,0,21
+189905,0,367602.6267,991278.9433,21
+189906,0,0,0,21
+189907,340229.4113,0,0,21
+189908,0,0,0,21
+189909,0,0,0,21
+189910,0,0,0,21
+189911,0,0,0,21
+189912,0,0,0,21
+189913,0,0,0,21
+189914,0,0,0,21
+189915,0,0,0,21
+189916,0,0,0,21
+189917,0,0,0,21
+189918,0,0,0,21
+189919,0,0,0,21
+189920,0,0,0,21
+189921,0,0,0,21
+189922,0,0,0,21
+189923,0,0,0,21
+189924,0,0,0,21
+189925,0,0,0,21
+189926,0,0,0,21
+189927,0,0,0,21
+189928,0,0,0,21
+189929,0,0,0,21
+189930,0,0,0,21
+189931,0,0,0,21
+189932,0,0,0,21
+189933,0,0,0,21
+189934,0,0,0,21
+189935,0,0,0,21
+189936,0,0,0,21
+189937,0,0,0,21
+189938,0,0,0,21
+189939,0,368526.9421,964411.8337,21
+189940,0,0,0,21
+189941,0,0,0,21
+189942,0,0,0,21
+189943,340226.3999,0,0,21
+189944,0,0,0,21
+189945,0,0,0,21
+189946,0,0,0,21
+189947,0,0,0,21
+189948,0,0,0,21
+189949,0,0,0,21
+189950,0,0,0,21
+189951,0,0,0,21
+189952,0,0,0,21
+189953,0,0,0,21
+189954,0,0,0,21
+189955,0,0,0,21
+189956,0,0,0,21
+189957,0,0,0,21
+189958,0,0,0,21
+189959,0,0,0,21
+189960,0,0,0,15.6
+189961,0,0,0,15.6
+189962,0,0,0,15.6
+189963,0,0,0,15.6
+189964,0,0,0,15.6
+189965,0,0,0,15.6
+189966,0,0,0,15.6
+189967,0,0,0,15.6
+189968,0,0,0,15.6
+189969,0,0,0,15.6
+189970,0,0,0,15.6
+189971,0,0,0,15.6
+189972,0,0,0,15.6
+189973,0,0,0,15.6
+189974,0,368535.0006,938402.9161,15.6
+189975,0,0,0,15.6
+189976,0,0,0,15.6
+189977,0,0,0,15.6
+189978,0,0,0,15.6
+189979,340210.3771,0,0,15.6
+189980,0,0,0,15.6
+189981,0,0,0,15.6
+189982,0,0,0,15.6
+189983,0,0,0,15.6
+189984,0,0,0,15.6
+189985,0,0,0,15.6
+189986,0,0,0,15.6
+189987,0,0,0,15.6
+189988,0,0,0,15.6
+189989,0,0,0,15.6
+189990,0,0,0,15.6
+189991,0,0,0,15.6
+189992,0,0,0,15.6
+189993,0,0,0,15.6
+189994,0,0,0,15.6
+189995,0,0,0,15.6
+189996,0,0,0,15.6
+189997,0,0,0,15.6
+189998,0,0,0,15.6
+189999,0,0,0,15.6
+190000,0,0,0,15.6
+190001,0,0,0,15.6
+190002,0,0,0,15.6
+190003,0,0,0,15.6
+190004,0,0,0,15.6
+190005,0,0,0,15.6
+190006,0,0,0,15.6
+190007,0,0,0,15.6
+190008,0,0,0,15.6
+190009,0,368384.0746,916840.5584,15.6
+190010,0,0,0,15.6
+190011,0,0,0,15.6
+190012,0,0,0,15.6
+190013,0,0,0,15.6
+190014,0,0,0,15.6
+190015,340183.936,0,0,15.6
+190016,0,0,0,15.6
+190017,0,0,0,15.6
+190018,0,0,0,15.6
+190019,0,0,0,15.6
+190020,0,0,0,15.6
+190021,0,0,0,15.6
+190022,0,0,0,15.6
+190023,0,0,0,15.6
+190024,0,0,0,15.6
+190025,0,0,0,15.6
+190026,0,0,0,15.6
+190027,0,0,0,15.6
+190028,0,0,0,15.6
+190029,0,0,0,15.6
+190030,0,0,0,15.6
+190031,0,0,0,15.6
+190032,0,0,0,15.6
+190033,0,0,0,15.6
+190034,0,0,0,15.6
+190035,0,0,0,15.6
+190036,0,0,0,15.6
+190037,0,0,0,15.6
+190038,0,0,0,15.6
+190039,0,0,0,15.6
+190040,0,0,0,15.6
+190041,0,0,0,15.6
+190042,0,0,0,15.6
+190043,0,0,0,15.6
+190044,0,368388.7903,895583.7722,15.6
+190045,0,0,0,15.6
+190046,0,0,0,15.6
+190047,0,0,0,15.6
+190048,0,0,0,15.6
+190049,0,0,0,15.6
+190050,0,0,0,15.6
+190051,0,0,0,15.6
+190052,340157.422,0,0,15.6
+190053,0,0,0,15.6
+190054,0,0,0,15.6
+190055,0,0,0,15.6
+190056,0,0,0,15.6
+190057,0,0,0,15.6
+190058,0,0,0,15.6
+190059,0,0,0,15.6
+190060,0,0,0,15.6
+190061,0,0,0,15.6
+190062,0,0,0,15.6
+190063,0,0,0,15.6
+190064,0,0,0,15.6
+190065,0,0,0,15.6
+190066,0,0,0,15.6
+190067,0,0,0,15.6
+190068,0,0,0,15.6
+190069,0,0,0,15.6
+190070,0,0,0,15.6
+190071,0,0,0,15.6
+190072,0,0,0,15.6
+190073,0,0,0,15.6
+190074,0,0,0,15.6
+190075,0,0,0,15.6
+190076,0,0,0,15.6
+190077,0,0,0,15.6
+190078,0,0,0,15.6
+190079,0,368407.3541,878196.8988,15.6
+190080,0,0,0,15.6
+190081,0,108.0852487,0,15.6
+190082,0,0,0,15.6
+190083,0,0,0,15.6
+190084,0,0,0,15.6
+190085,0,67.74905048,0,15.6
+190086,0,0,0,15.6
+190087,0,0,0,15.6
+190088,0,0,0,15.6
+190089,340137.4336,86.45394353,0,15.6
+190090,0,0,0,15.6
+190091,0,0,0,15.6
+190092,0,0,0,15.6
+190093,0,100.8329941,0,15.6
+190094,0,0,0,15.6
+190095,0,0,0,15.6
+190096,0,0,0,15.6
+190097,0,96.02909731,0,15.6
+190098,0,0,0,15.6
+190099,0,0,0,15.6
+190100,0,0,0,15.6
+190101,0,98.38868405,0,15.6
+190102,0,0,0,15.6
+190103,0,0,0,15.6
+190104,0,0,0,15.6
+190105,0,96.65079939,0,15.6
+190106,0,0,0,15.6
+190107,0,0,0,15.6
+190108,0,0,0,15.6
+190109,0,85.8375734,0,15.6
+190110,0,0,0,15.6
+190111,0,0,0,15.6
+190112,0,0,0,15.6
+190113,0,98.15717137,0,15.6
+190114,0,368366.9988,860803.4024,15.6
+190115,0,0,0,15.6
+190116,0,0,0,15.6
+190117,0,73.48002189,0,15.6
+190118,0,0,0,15.6
+190119,0,0,0,15.6
+190120,0,0,0,15.6
+190121,0,71.25547632,0,15.6
+190122,0,0,0,15.6
+190123,0,0,0,15.6
+190124,0,0,0,15.6
+190125,0,77.89734172,0,15.6
+190126,340137.4336,0,0,15.6
+190127,0,0,0,15.6
+190128,0,0,0,15.6
+190129,0,82.33517421,0,15.6
+190130,0,0,0,15.6
+190131,0,0,0,15.6
+190132,0,0,0,15.6
+190133,0,85.95403131,0,15.6
+190134,0,0,0,15.6
+190135,0,0,0,15.6
+190136,0,0,0,15.6
+190137,0,96.80078924,0,15.6
+190138,0,0,0,15.6
+190139,0,0,0,15.6
+190140,0,0,0,15.6
+190141,0,0,0,15.6
+190142,0,353.4634015,0,15.6
+190143,0,0,0,15.6
+190144,0,0,0,15.6
+190145,0,0,0,15.6
+190146,0,0,0,15.6
+190147,0,0,0,15.6
+190148,0,0,0,15.6
+190149,0,368336.6994,845539.205,15.6
+190150,0,0,0,15.6
+190151,0,0,0,15.6
+190152,0,0,0,15.6
+190153,0,0,0,15.6
+190154,0,74.47753711,0,15.6
+190155,0,0,0,15.6
+190156,0,0,0,15.6
+190157,0,433668.2421,0,15.6
+190158,0,0,0,15.6
+190159,0,0,0,15.6
+190160,0,0,0,15.6
+190161,0,0,0,15.6
+190162,0,0,0,15.6
+190163,340136.1994,0,0,15.6
+190164,0,0,0,15.6
+190165,0,0,0,15.6
+190166,0,0,0,15.6
+190167,0,0,0,15.6
+190168,0,432851.3425,0,15.6
+190169,0,0,0,15.6
+190170,0,0,0,15.6
+190171,0,0,0,15.6
+190172,0,0,0,15.6
+190173,0,0,0,15.6
+190174,0,0,0,15.6
+190175,0,0,0,15.6
+190176,0,0,0,15.6
+190177,0,0,0,15.6
+190178,0,0,0,15.6
+190179,0,0,0,15.6
+190180,0,0,0,15.6
+190181,0,0,0,15.6
+190182,0,0,0,15.6
+190183,0,0,0,15.6
+190184,0,368334.1594,830976.2598,15.6
+190185,0,0,0,15.6
+190186,0,0,0,15.6
+190187,0,0,0,15.6
+190188,0,0,0,15.6
+190189,0,433403.8311,0,15.6
+190190,0,0,0,15.6
+190191,0,0,0,15.6
+190192,0,0,0,15.6
+190193,0,0,0,15.6
+190194,0,0,0,15.6
+190195,0,0,0,15.6
+190196,0,0,0,15.6
+190197,0,0,0,15.6
+190198,0,0,0,15.6
+190199,0,0,0,15.6
+190200,340133.611,432649.7705,0,15.6
+190201,0,0,0,15.6
+190202,0,0,0,15.6
+190203,0,0,0,15.6
+190204,0,0,0,15.6
+190205,0,0,0,15.6
+190206,0,0,0,15.6
+190207,0,0,0,15.6
+190208,0,0,0,15.6
+190209,0,0,0,15.6
+190210,0,0,0,15.6
+190211,0,0,0,15.6
+190212,0,0,0,15.6
+190213,0,0,0,15.6
+190214,0,0,0,15.6
+190215,0,0,0,15.6
+190216,0,0,0,15.6
+190217,0,0,0,15.6
+190218,0,0,0,15.6
+190219,0,368325.4149,817576.8978,15.6
+190220,0,0,0,15.6
+190221,0,0,0,15.6
+190222,0,0,0,15.6
+190223,0,0,0,15.6
+190224,0,0,0,15.6
+190225,0,0,0,15.6
+190226,0,0,0,15.6
+190227,0,0,0,15.6
+190228,0,4.007947147,0,15.6
+190229,0,0,0,15.6
+190230,0,70.60889943,0,15.6
+190231,0,0,0,15.6
+190232,0,0,0,15.6
+190233,0,0,0,15.6
+190234,0,3.931377979,0,15.6
+190235,0,0,0,15.6
+190236,0,84.681911,0,15.6
+190237,340161.6621,0,0,15.6
+190238,0,0,0,15.6
+190239,0,0,0,15.6
+190240,0,0,0,15.6
+190241,0,57.66018481,0,15.6
+190242,0,0,0,15.6
+190243,0,0,0,15.6
+190244,0,0,0,15.6
+190245,0,0,0,15.6
+190246,0,0,0,15.6
+190247,0,0,0,15.6
+190248,0,0,0,15.6
+190249,0,0,0,15.6
+190250,0,0,0,15.6
+190251,0,0,0,15.6
+190252,0,336.8975149,0,15.6
+190253,0,0,0,15.6
+190254,0,368311.6361,805531.2154,15.6
+190255,0,0,0,15.6
+190256,0,0,0,15.6
+190257,0,0,0,15.6
+190258,0,0,0,15.6
+190259,0,0,0,15.6
+190260,0,0,0,15.6
+190261,0,0,0,15.6
+190262,0,0,0,15.6
+190263,0,0,0,15.6
+190264,0,0,0,15.6
+190265,0,257.7269105,0,15.6
+190266,0,0,0,15.6
+190267,0,0,0,15.6
+190268,0,0,0,15.6
+190269,0,0,0,15.6
+190270,0,0,0,15.6
+190271,0,0,0,15.6
+190272,0,0,0,15.6
+190273,0,0,0,15.6
+190274,0,68.9178003,0,15.6
+190275,340175.9412,0,0,15.6
+190276,0,0,0,15.6
+190277,0,0,0,15.6
+190278,0,81.8151234,0,15.6
+190279,0,0,0,15.6
+190280,0,0,0,15.6
+190281,0,0,0,15.6
+190282,0,76.4875112,0,15.6
+190283,0,0,0,15.6
+190284,0,0,0,15.6
+190285,0,0,0,15.6
+190286,0,74.88618011,0,15.6
+190287,0,0,0,15.6
+190288,0,0,794448.267,15.6
+190289,0,368316.5462,0,15.6
+190290,0,70.49333157,0,15.6
+190291,0,0,0,15.6
+190292,0,0,0,15.6
+190293,0,0,0,15.6
+190294,0,0,0,15.6
+190295,0,335.6077046,0,15.6
+190296,0,0,0,15.6
+190297,0,0,0,15.6
+190298,0,0,0,15.6
+190299,0,0,0,15.6
+190300,0,0,0,15.6
+190301,0,0,0,15.6
+190302,0,0,0,15.6
+190303,0,0,0,15.6
+190304,0,0,0,15.6
+190305,0,0,0,15.6
+190306,0,0,0,15.6
+190307,0,7.848726141,0,15.6
+190308,0,0,0,15.6
+190309,0,17.61592387,0,15.6
+190310,340174.3893,0,0,15.6
+190311,0,0,0,15.6
+190312,0,0,0,15.6
+190313,0,73.47955299,0,15.6
+190314,0,0,0,15.6
+190315,0,0,0,15.6
+190316,0,0,0,15.6
+190317,0,82.38268752,0,15.6
+190318,0,0,0,15.6
+190319,0,0,0,15.6
+190320,0,0,0,17.8
+190321,102912.8747,645513.7357,0,17.8
+190322,60125.68018,343.2040747,784313.7915,17.8
+190323,18777.94395,368325.261,0,17.8
+190324,18255.51767,1627.880867,0,17.8
+190325,31420.56166,152132.5714,0,17.8
+190326,24636.85739,59185.64707,0,17.8
+190327,24988.80522,75474.35559,0,17.8
+190328,24951.44008,77488.0627,0,17.8
+190329,24915.06239,77237.92353,0,17.8
+190330,24859.60448,76554.48535,0,17.8
+190331,24845.24969,76610.39557,0,17.8
+190332,24794.48919,75202.15541,0,17.8
+190333,24780.59927,76036.20556,0,17.8
+190334,24734.10524,74482.65731,0,17.8
+190335,24696.31119,74519.86407,0,17.8
+190336,24731.82747,432620.9102,0,17.8
+190337,24658.72289,0,0,17.8
+190338,24668.40557,0,0,17.8
+190339,24633.4129,0,0,17.8
+190340,24647.04684,0,0,17.8
+190341,24605.01761,0,0,17.8
+190342,24628.3098,0,0,17.8
+190343,24585.95783,0,0,17.8
+190344,24583.78465,0,0,17.8
+190345,364760.4883,0,0,17.8
+190346,24564.72247,0,0,17.8
+190347,24634.68947,0,0,17.8
+190348,24564.69666,0,0,17.8
+190349,24555.11195,0,0,17.8
+190350,24634.6491,0,0,17.8
+190351,0,0,3230.715315,17.8
+190352,0,0,1613.725021,17.8
+190353,0,0,2370.317553,17.8
+190354,0,0,2741.908151,17.8
+190355,72613.88073,432505.4992,2865.038947,17.8
+190356,10260.58933,0,776130.0849,17.8
+190357,22509.59719,368325.1426,3340.776551,17.8
+190358,27803.07542,0,0,17.8
+190359,24449.49147,0,0,17.8
+190360,24729.91581,175.0521119,0,17.8
+190361,24685.88389,375.473401,0,17.8
+190362,24720.97079,276.7562739,0,17.8
+190363,24718.06503,316.5527844,0,17.8
+190364,24713.76115,355.9296708,0,17.8
+190365,24730.90773,375.4733992,0,17.8
+190366,24774.24137,394.9263219,0,17.8
+190367,24743.22682,394.9263213,0,17.8
+190368,24781.33958,433.5743075,0,17.8
+190369,24761.84717,433.5743068,0,17.8
+190370,24755.5826,452.775825,0,17.8
+190371,26904.79811,452.7758243,0,17.8
+190372,27223.6165,490.9480254,0,17.8
+190373,26763.89335,0,0,17.8
+190374,27143.24092,0,0,17.8
+190375,27247.14138,0,0,17.8
+190376,27353.71517,0,0,17.8
+190377,27532.46955,0,0,17.8
+190378,27614.03954,0,0,17.8
+190379,27654.35513,0,0,17.8
+190380,367381.4105,0,0,20
+190381,857234.9139,142979.0677,14290.97662,20
+190382,445842.4113,528774.5866,13365.67712,20
+190383,79385.77328,100204.6315,31726.02487,20
+190384,170753.2519,118910.8198,53721.60674,20
+190385,262074.7996,107115.299,34503.46701,20
+190386,221605.1695,110635.3496,49960.18074,20
+190387,212741.7058,110014.8095,88192.59158,20
+190388,218186.7558,109152.5735,62253.60731,20
+190389,215739.7072,109633.1619,79710.36847,20
+190390,215529.472,109160.1051,83033.13404,20
+190391,214364.7669,108679.2052,80421.04885,20
+190392,214040.5941,108601.7439,82559.86024,20
+190393,212359.47,108424.9358,83630.40934,20
+190394,211613.3541,108475.3125,84492.2146,20
+190395,211091.2352,108226.9438,85345.75655,20
+190396,210087.1766,107570.5257,85758.06035,20
+190397,209160.6363,107988.0969,87204.54441,20
+190398,208544.8221,107369.1659,87291.36757,20
+190399,206938.3778,107007.2247,88987.65361,20
+190400,206891.4193,107360.4529,88989.04247,20
+190401,205292.8764,106762.9203,90295.45314,20
+190402,204444.8119,106537.4743,91152.42902,20
+190403,203750.1664,106746.6681,91528.40806,20
+190404,202518.3167,106053.5985,92797.8876,20
+190405,202351.6363,106548.9707,93499.97382,20
+190406,200698.3312,105555.4753,94088.87105,20
+190407,200167.8656,106018.8007,95532.20127,20
+190408,199439.0243,105537.9054,95881.0737,20
+190409,198375.6134,105578.57,96688.83563,20
+190410,197534.2058,105038.4317,97918.67955,20
+190411,196837.7942,105365.6974,98530.31537,20
+190412,195680.3701,104572.7079,99240.73156,20
+190413,194928.4603,105166.8953,100570.593,20
+190414,193779.3981,104346.0228,100795.6785,20
+190415,193220.6406,104267.171,101996.9653,20
+190416,191999.856,104192.4538,103163.9755,20
+190417,190969.9998,104078.6398,103261.5821,20
+190418,190269.915,103584.7476,104618.2103,20
+190419,189193.2686,103952.4542,105408.2611,20
+190420,188181.54,102923.5137,106306.881,20
+190421,186912.1791,103597.1303,106859.6351,20
+190422,186643.0571,102862.6429,108292.4422,20
+190423,184800.4842,102671.7512,108719.6607,20
+190424,184304.9107,102846.3411,98567.88241,20
+190425,183436.306,102392.2705,97316.31635,20
+190426,181961.6513,101961.5258,96961.70093,20
+190427,180965.8695,102540.7227,96523.4114,20
+190428,180224.5082,101428.0883,96447.82056,20
+190429,179297.2673,101937.034,96483.7273,20
+190430,177870.9618,101379.4604,95753.94807,20
+190431,176900.9483,101421.1148,96027.03658,20
+190432,176084.0694,100892.0456,95065.75474,20
+190433,174460.2765,101121.638,95497.0919,20
+190434,174163.7672,100751.1155,94690.49251,20
+190435,172286.4282,100630.0951,93687.40841,20
+190436,171874.8045,100286.0792,93325.93437,20
+190437,170378.9243,100271.7345,92871.7647,20
+190438,169836.0501,100129.8999,92130.16349,20
+190439,168252.9261,99652.59454,91894.61124,20
+190440,167458.184,99927.83175,91435.47974,21
+190441,167976.4584,99141.81115,90802.04056,21
+190442,166283.1246,99294.28123,89632.39132,21
+190443,165597.2833,99110.14387,88831.76865,21
+190444,163091.1029,98923.32716,88258.69128,21
+190445,162408.8631,98459.10196,87453.26176,21
+190446,160379.7378,98562.36338,86136.06144,21
+190447,159319.3704,98204.05969,85747.0842,21
+190448,157401.2797,97793.52417,84193.23018,21
+190449,155908.2433,98005.68738,84052.46485,21
+190450,154499.9485,97242.793,82711.66955,21
+190451,152798.812,97639.94868,81980.28744,21
+190452,151285.771,97050.61749,81437.90635,21
+190453,150040.451,96777.97934,80764.68093,21
+190454,147307.9135,96821.70312,79944.2159,21
+190455,145621.4402,96439.97221,79383.73712,21
+190456,144799.2853,96261.35065,78348.95039,21
+190457,144099.8999,95917.28605,77862.49827,21
+190458,143538.9776,95958.07978,76960.3806,21
+190459,142837.337,95619.82659,76279.89818,21
+190460,142771.3711,95773.19055,75533.60924,21
+190461,141751.9761,95944.84198,74914.7189,21
+190462,141478.9158,95724.62059,73726.64631,21
+190463,140909.7857,95417.89581,72969.90677,21
+190464,139788.8437,95378.95597,72498.54383,21
+190465,139530.2945,94845.15122,71693.01886,21
+190466,138808.5606,95120.23431,70589.87956,21
+190467,138010.5041,94340.56035,70045.55695,21
+190468,137582.8416,94754.6241,69013.29753,21
+190469,136777.2284,94247.80498,68697.35267,21
+190470,136225.6281,94029.50327,67665.40046,21
+190471,135355.7656,93902.48518,67485.13702,21
+190472,135008.9969,93787.46537,67535.20161,21
+190473,134271.2557,93543.3203,67248.21395,21
+190474,133470.8033,93769.30753,66952.35459,21
+190475,133116.4209,92814.8595,66823.66277,21
+190476,132645.7811,92985.59708,66775.07745,21
+190477,131472.1617,92261.59991,66082.34861,21
+190478,131401.9746,91928.35178,66523.49881,21
+190479,130429.9403,92098.61125,65666.80786,21
+190480,130104.0351,91660.53767,65818.24291,21
+190481,129541.814,91876.42009,65374.52458,21
+190482,128765.5368,91272.8308,65367.07525,21
+190483,128699.1101,91317.31958,65027.03559,21
+190484,127790.2666,91263.64228,64747.38421,21
+190485,127385.5589,90716.03038,64440.25565,21
+190486,127077.9342,90719.4696,64340.63775,21
+190487,126064.3164,90694.68388,64340.625,21
+190488,126202.0873,90645.48858,63495.49314,21
+190489,124914.8019,90138.78916,63810.36295,21
+190490,125162.0724,90268.15193,63061.34818,21
+190491,124234.1863,89898.46304,63445.6917,21
+190492,123931.3308,90044.29691,62843.2275,21
+190493,123237.5663,89520.27831,62746.52435,21
+190494,122993.9711,89711.24416,62660.37495,21
+190495,122315.8684,89243.61428,62558.14073,21
+190496,121994.3925,89147.34614,62192.218,21
+190497,121418.0485,89431.31236,61946.7613,21
+190498,120859.5561,88359.74318,61956.42273,21
+190499,120680.9215,89376.42042,61598.64656,21
+190500,120228.3965,88021.84983,61591.14116,21
+190501,101594.3884,79004.74622,40399.81897,21
+190502,100429.3163,77454.02611,38478.27621,21
+190503,99367.94574,77059.32139,37169.39678,21
+190504,98783.28268,77106.62917,35717.46131,21
+190505,98461.96519,76192.36397,35473.19585,21
+190506,97167.0438,76315.69787,34598.94026,21
+190507,97058.8199,75750.02011,34027.18019,21
+190508,96336.68007,75819.1883,33280.04428,21
+190509,95593.96954,74932.73701,32894.48841,21
+190510,95439.51959,74848.7759,32013.73751,21
+190511,94448.04547,74784.03382,31425.64677,21
+190512,94194.17568,74256.35443,30764.26349,21
+190513,93301.112,73945.41586,30141.98185,21
+190514,93244.81733,73823.66958,29511.73161,21
+190515,92311.13317,73304.44534,28863.66994,21
+190516,91892.57531,73334.66501,28461.62381,21
+190517,91242.93744,72708.80994,27323.38927,21
+190518,90980.90408,72517.37917,27170.97412,21
+190519,90234.12693,72612.78901,26300.40507,21
+190520,89671.77041,71681.22416,25584.85509,21
+190521,89449.75572,71839.61485,25218.55354,21
+190522,88594.82818,71396.66071,24374.09751,21
+190523,88456.53299,71555.0316,23734.23872,21
+190524,87522.77606,70396.90411,23168.78178,21
+190525,87359.71067,70838.70906,22452.34479,21
+190526,86701.27284,70331.90686,22039.65966,21
+190527,86206.45264,69831.87308,21708.05074,21
+190528,85610.42038,69675.20425,21273.7151,21
+190529,85134.0993,69154.69081,20893.44605,21
+190530,84703.28865,68953.22651,20626.74878,21
+190531,84028.87564,68540.26136,20376.08488,21
+190532,83688.88011,68107.64887,20217.63861,21
+190533,82950.83701,67850.52922,19983.3954,21
+190534,82490.31286,67076.49233,19783.04342,21
+190535,81853.11331,67568.79503,19485.09424,21
+190536,81318.63044,66451.55161,19376.238,21
+190537,80741.09318,66441.37052,19058.85243,21
+190538,79866.85867,66260.96672,18845.73399,21
+190539,79419.8573,65414.84652,18660.61952,21
+190540,78799.63953,65025.15538,18305.43101,21
+190541,77884.6122,64907.4706,18218.93707,21
+190542,77648.27119,64706.66245,18033.2438,21
+190543,76539.50232,63657.37396,17670.05551,21
+190544,76156.10494,63963.88121,17446.58062,21
+190545,75391.54911,63143.42164,17425.23109,21
+190546,74501.14435,63100.84719,16906.2543,21
+190547,74381.60644,62446.0544,16835.39865,21
+190548,72951.43727,62061.55546,16604.35404,21
+190549,72799.12445,61928.63229,16279.54922,21
+190550,72050.82216,61508.74435,16205.38237,21
+190551,71045.72083,60880.60491,15831.49531,21
+190552,70685.78513,60829.12182,15609.02253,21
+190553,69707.37867,60548.91655,15401.70119,21
+190554,69201.07857,59941.38733,15342.15585,21
+190555,68460.15049,59456.60453,14800.84868,21
+190556,67776.13262,59428.01585,14764.93202,21
+190557,67125.19062,59129.91237,14504.29147,21
+190558,66400.41754,58373.46133,14200.4101,21
+190559,65976.32939,58140.74197,14058.08693,21
+190560,64870.96749,57340.39988,13740.34205,21
+190561,64493.91021,57024.58859,13620.72813,21
+190562,63703.4915,57052.68915,13293.13691,21
+190563,63046.98862,56554.05934,13183.85322,21
+190564,62297.38358,56535.4837,12851.99873,21
+190565,61772.24079,55893.43274,12746.63398,21
+190566,61005.29724,56031.43496,12383.23132,21
+190567,60291.85498,55581.34691,12333.78111,21
+190568,59620.08767,55322.73392,11942.71989,21
+190569,58990.6016,54924.20714,11874.74257,21
+190570,58705.85609,54885.68644,11618.42654,21
+190571,57515.82062,54571.65102,11282.19328,21
+190572,57144.38428,54179.76785,11349.62252,21
+190573,56515.34247,53929.58257,10955.48217,21
+190574,55912.82907,53870.48863,10737.78588,21
+190575,54933.39205,53457.09359,10547.62947,21
+190576,54758.71317,53186.57984,10411.06226,21
+190577,53826.18213,52770.78741,10079.59163,21
+190578,53241.70148,52658.64749,9986.908721,21
+190579,52850.87605,52280.17686,9750.315291,21
+190580,51873.11471,52038.30884,9545.089251,21
+190581,51569.67551,51556.28904,9155.505318,21
+190582,50707.41698,51326.3967,9242.313762,21
+190583,50139.46704,51275.8065,8864.394131,21
+190584,49705.18423,50398.79824,8640.038264,21
+190585,49078.78517,50398.90564,8405.470715,21
+190586,48160.55477,50121.36938,8221.047711,21
+190587,47786.42657,49246.23983,8109.578715,21
+190588,47182.44617,49453.08311,7742.702968,21
+190589,46355.85311,48707.57011,7517.446762,21
+190590,46138.48319,48309.57358,7429.944248,21
+190591,45196.83126,48063.97357,7046.92924,21
+190592,44746.16241,47431.17072,6834.888087,21
+190593,44159.49895,47020.05526,6761.575932,21
+190594,43585.94661,46525.36265,6488.207347,21
+190595,43040.56113,46088.74228,6287.611934,21
+190596,42387.42808,45684.54982,5914.242691,21
+190597,41815.28884,44794.71871,5937.792984,21
+190598,41444.98454,44586.4152,5564.60488,21
+190599,40765.30193,44083.32877,5344.404699,21
+190600,40017.14247,43511.63877,5095.949908,21
+190601,39766.34057,43306.50115,5020.29704,21
+190602,38977.40261,42405.69923,4593.698301,21
+190603,38621.99337,41964.10446,4564.101116,21
+190604,37958.40307,41306.03079,4279.050867,21
+190605,37410.30671,40849.68531,4055.180589,21
+190606,36935.74104,40143.69997,3831.484663,21
+190607,36347.99598,39122.66561,3555.226648,21
+190608,35727.04045,39086.77766,3376.706072,21
+190609,35285.45381,37941.4295,3315.585234,21
+190610,34636.11643,37267.81847,2936.097077,21
+190611,34160.25257,36576.00773,2905.764374,21
+190612,33734.6086,36116.5393,2690.836145,21
+190613,32952.54645,35105.39671,2458.811694,21
+190614,32538.93886,34514.65026,2273.606716,21
+190615,32084.61742,33614.98837,2191.348865,21
+190616,31280.66774,32891.9026,1863.433712,21
+190617,31009.83347,32000.81369,1813.650459,21
+190618,30267.03053,31249.90232,1655.201823,21
+190619,29839.80827,30540.46186,1443.850434,21
+190620,29342.18328,29372.74191,1427.152646,21
+190621,28589.35255,28728.98084,1243.239259,21
+190622,28136.80052,27665.63982,1192.874988,21
+190623,27713.07,26411.59796,1192.891575,21
+190624,27107.05821,25900.35567,1142.305934,21
+190625,26703.20944,24883.41813,1159.213468,21
+190626,26299.51744,23856.66174,1091.508097,21
+190627,25855.01857,23039.93945,1108.490427,21
+190628,25261.78733,22002.54218,1057.520967,21
+190629,24867.0435,21099.96899,1057.534088,21
+190630,24320.50104,20264.27852,1006.324529,21
+190631,24070.02755,20263.13453,1006.336434,21
+190632,23296.62737,20083.9677,989.2194589,21
+190633,23407.67663,19724.00568,937.6762886,21
+190634,22837.36977,19887.36944,937.6866759,21
+190635,22629.14312,19321.69064,920.4547456,21
+190636,22544.91848,19315.1381,868.5607988,21
+190637,21995.87861,19117.67064,868.5697234,21
+190638,21994.27821,18877.88354,851.2167524,21
+190639,21668.61792,18677.98636,816.4081839,21
+190640,21357.22798,18561.57812,781.4714091,21
+190641,21194.50495,18257.02831,781.478667,21
+190642,20909.68803,18105.13779,746.4091956,21
+190643,20666.85848,18071.32239,728.8266412,21
+190644,20283.1341,17825.76714,711.2090553,21
+190645,20283.31703,17695.93443,675.8606638,21
+190646,19691.85034,17668.79886,622.5586368,21
+190647,19796.00904,17579.4522,622.5625782,21
+190648,19087.44073,17408.41665,568.9075708,21
+190649,19326.19383,17291.55602,568.9114587,21
+190650,18831.76268,17291.55753,532.9349838,21
+190651,18516.67555,17147.22054,514.8829806,21
+190652,18332.72858,17029.98685,478.6388067,21
+190653,17940.0748,16767.52148,478.6415763,21
+190654,17828.16848,17002.58383,442.2059535,21
+190655,17381.3802,16517.95133,423.9138285,21
+190656,17194.45214,16740.0285,387.1679473,21
+190657,17041.32159,16358.392,387.1697123,21
+190658,16754.05311,16476.60665,350.1977289,21
+190659,16454.71276,16240.00453,331.622005,21
+190660,16443.49011,16079.83772,312.9823389,21
+190661,16088.07661,15974.9088,275.4976528,21
+190662,15951.92446,16065.93923,275.4985829,21
+190663,15784.68328,15694.99118,237.7165145,21
+190664,15603.75531,15800.25496,218.7027713,21
+190665,15276.76294,15561.63384,199.5992554,21
+190666,15129.83556,15414.04788,180.3988967,21
+190667,14877.22641,15533.66634,141.6713076,21
+190668,14729.60569,15160.17481,141.671549,21
+190669,14510.61466,15266.16085,102.4235496,21
+190670,14224.08413,14997.72926,92.51308333,21
+190671,14116.74446,15011.82447,62.48440888,21
+190672,13827.85357,14863.16254,42.15202167,21
+190673,13514.43921,14607.48585,31.85845112,21
+190674,13542.95653,14728.35966,0,21
+190675,13111.74105,14458.03682,0,21
+190676,13049.21167,14336.73571,0,21
+190677,12716.51382,14322.60997,0,21
+190678,12432.27995,14308.33202,0,21
+190679,12315.99485,14322.53284,0,21
+190680,12020.26657,14065.01627,0,21
+190681,11975.42763,14279.5356,0,21
+190682,11975.59671,14065.01659,0,21
+190683,11705.13832,14022.12808,0,21
+190684,11655.51197,13777.99029,0,21
+190685,11538.3344,13885.82143,0,21
+190686,11358.53916,13763.64245,0,21
+190687,11147.81687,13504.23547,0,21
+190688,11072.34575,13734.86575,0,21
+190689,11072.03812,13229.4682,0,21
+190690,10691.51727,13475.40658,0,21
+190691,10758.18462,13215.01401,0,21
+190692,10521.00121,13186.0223,0,21
+190693,10455.84486,13215.01431,0,21
+190694,10229.57933,12910.06422,0,21
+190695,10176.99673,12939.16593,0,21
+190696,9922.94791,12786.28631,0,21
+190697,9896.152765,12771.69464,0,21
+190698,9841.908779,12647.68074,0,21
+190699,9489.648387,12508.80955,0,21
+190700,9558.721082,12494.16242,0,21
+190701,9343.321448,12369.67169,0,21
+190702,9330.427505,12354.99598,0,21
+190703,9075.318011,12075.85064,0,21
+190704,9088.276473,12230.26437,0,21
+190705,8832.117631,12061.08929,0,21
+190706,8940.84029,11810.39989,0,21
+190707,8587.8829,11921.07825,0,21
+190708,8683.99514,11795.60926,0,21
+190709,8452.265202,11655.07062,0,21
+190710,8316.303852,11640.22112,0,21
+190711,8193.203334,11514.22408,0,21
+190712,8056.594957,11514.21863,0,21
+190713,8056.595417,11484.43175,0,21
+190714,8056.595876,11373.11754,0,21
+190715,7919.631806,11358.20905,0,21
+190716,7795.647747,11358.21014,0,21
+190717,7795.648177,11216.79121,0,21
+190718,7768.940747,11343.27279,0,21
+190719,7533.429967,11216.79257,0,21
+190720,7533.430368,11201.82451,0,21
+190721,7506.558633,11075.08497,0,21
+190722,7283.386936,11201.8263,0,21
+190723,7368.12315,11060.08731,0,21
+190724,7256.403749,11060.08798,0,21
+190725,7005.049637,11045.05805,0,21
+190726,7229.306835,11060.09033,0,21
+190727,6878.913342,10918.0582,0,21
+190728,6977.837283,10902.96277,0,21
+190729,6738.813944,10633.09715,0,21
+190730,6950.506722,10902.99679,0,21
+190731,6498.611278,10617.98098,0,21
+190732,6697.683086,10760.63948,0,21
+190733,6584.567924,10617.98307,0,21
+190734,6443.587093,10617.98398,0,21
+190735,6443.587384,10617.98478,0,21
+190736,6316.050142,10602.82918,0,21
+190737,6188.179892,10602.83009,0,21
+190738,6288.288632,10602.83074,0,21
+190739,6059.971473,10475.02961,0,21
+190740,6032.080784,10587.64311,0,21
+190741,9671.056784,14164.77856,0,21
+190742,9791.039524,14406.80962,0,21
+190743,9791.039352,14300.21288,0,21
+190744,9764.49159,14542.17382,0,21
+190745,9764.491385,14406.79034,0,21
+190746,9657.76886,14556.65529,0,21
+190747,9764.490925,14406.78925,0,21
+190748,9524.178302,14662.83163,0,21
+190749,9737.836244,14406.78996,0,21
+190750,9510.810278,14677.31817,0,21
+190751,9510.809998,14648.32747,0,21
+190752,9497.414945,14527.66756,0,21
+190753,9483.992396,14661.90467,0,21
+190754,9483.992083,14648.44939,0,21
+190755,9256.02103,14542.03435,0,21
+190756,9470.54147,14498.41701,0,21
+190757,9229.036403,14392.11795,0,21
+190758,9229.036067,14377.54501,0,21
+190759,9229.035722,14377.43378,0,21
+190760,9107.911793,14498.38553,0,21
+190761,9201.937325,14377.5477,0,21
+190762,8986.536796,14377.4784,0,21
+190763,9067.134131,14498.32348,0,21
+190764,8972.943962,14362.85925,0,21
+190765,8945.671542,14362.85814,0,21
+190766,8743.024567,14618.97967,0,21
+190767,8918.279791,14348.23695,0,21
+190768,8715.692587,14377.44674,0,21
+190769,8823.954151,14589.76519,0,21
+190770,8674.469119,14362.85274,0,21
+190771,8471.026867,14469.16035,0,21
+190772,8674.468323,14362.92047,0,21
+190773,8443.452396,14575.18557,0,21
+190774,8429.618482,14227.216,0,21
+190775,8211.469057,14318.97979,0,21
+190776,8401.855683,14348.30381,0,21
+190777,8074.274332,14318.98094,0,21
+190778,8169.776751,14197.89726,0,21
+190779,7936.708817,14183.19433,0,21
+190780,7936.708436,14197.89905,0,21
+190781,7908.685476,14047.16165,0,21
+190782,7688.600101,14289.54997,0,21
+190783,7674.538108,13940.37593,0,21
+190784,7660.442031,14032.40258,0,21
+190785,7535.894416,14032.4043,0,21
+190786,7425.223165,13910.88553,0,21
+190787,7396.857235,14017.61444,0,21
+190788,7174.740607,13774.35879,0,21
+190789,7257.419779,13896.09674,0,21
+190790,7049.051473,13744.69209,0,21
+190791,7020.469297,13774.36244,0,21
+190792,6894.402813,13729.81538,0,21
+190793,6894.402473,13744.69468,0,21
+190794,6641.338752,13500.55856,0,21
+190795,6641.338428,13714.90804,0,21
+190796,6626.876538,13485.68209,0,21
+190797,6131.357651,13592.95404,0,21
+190798,6131.357365,13470.7755,0,21
+190799,5874.359817,13455.83672,0,21
+190800,5859.651756,13455.8376,0,21
+190801,5859.652854,13318.47638,0,21
+190802,5615.966304,13455.84436,0,21
+190803,5601.170479,13318.47374,0,21
+190804,5471.388541,13303.47508,0,21
+190805,5341.237276,13318.4763,0,21
+190806,5326.30314,13165.81971,0,21
+190807,5210.709585,13303.47828,0,21
+190808,5064.766886,13165.82322,0,21
+190809,4948.49541,13165.82503,0,21
+190810,4933.414173,13150.76384,0,21
+190811,4801.660428,13027.91081,0,21
+190812,4552.153953,13150.76699,0,21
+190813,4521.621173,12889.73736,0,21
+190814,4403.90484,13135.67697,0,21
+190815,4017.665015,12889.74176,0,21
+190816,3986.665847,12997.70061,0,21
+190817,3747.634755,12874.61916,0,21
+190818,3459.877058,12859.46425,0,21
+190819,3201.449817,12874.62174,0,21
+190820,3047.580013,12844.27857,0,21
+190821,2785.896434,12612.61177,0,21
+190822,2629.934464,12844.28154,0,21
+190823,2239.120444,12720.96994,0,21
+190824,2080.0985,12705.75051,0,21
+190825,1792.336789,12582.20662,0,21
+190826,1647.092079,12705.75383,0,21
+190827,1230.955549,12582.21053,0,21
+190828,1204.995072,12551.67098,0,21
+190829,768.8972956,12582.21331,0,21
+190830,614.1938459,12427.89522,0,21
+190831,457.0576976,12551.68324,0,21
+190832,151.8670884,12303.8953,0,21
+190833,151.8670886,12551.69005,0,21
+190834,0,12273.22455,0,21
+190835,0,12551.69342,0,21
+190836,0,12288.58169,0,21
+190837,0,12397.2435,0,21
+190838,0,12288.58606,0,21
+190839,0,12273.23402,0,21
+190840,0,12381.86224,0,21
+190841,0,12273.23717,0,21
+190842,0,12273.23883,0,21
+190843,0,12242.43029,0,21
+190844,0,12273.24306,0,21
+190845,0,12242.43496,0,21
+190846,0,12133.60671,0,21
+190847,0,12242.43812,0,21
+190848,0,12118.18776,0,21
+190849,0,12242.44119,0,21
+190850,0,11978.24377,0,21
+190851,0,11962.75395,0,21
+190852,0,11978.24713,0,21
+190853,0,11962.75703,0,21
+190854,0,11681.96031,0,21
+190855,0,11822.5003,0,21
+190856,0,11681.96418,0,21
+190857,0,11415.67642,0,21
+190858,0,11666.36896,0,21
+190859,0,11148.35439,0,21
+190860,0,11384.3744,0,21
+190861,0,11132.67999,0,21
+190862,0,11116.97715,0,21
+190863,0,10975.0062,0,21
+190864,0,10848.52493,0,21
+190865,0,10959.22301,0,21
+190866,0,10706.0008,0,21
+190867,0,10690.17838,0,21
+190868,0,10547.31571,0,21
+190869,0,10563.17812,0,21
+190870,0,10531.41587,0,21
+190871,0,10276.61691,0,21
+190872,0,10404.15049,0,21
+190873,0,10260.67684,0,21
+190874,0,10260.67817,0,21
+190875,0,9988.820851,0,21
+190876,0,10244.69794,0,21
+190877,0,9972.799488,0,21
+190878,0,9988.822274,0,21
+190879,0,9956.736585,0,21
+190880,0,9828.388685,0,21
+190881,0,9828.389232,0,21
+190882,0,9699.762859,0,21
+190883,0,9796.135996,0,21
+190884,0,9554.750398,0,21
+190885,0,9667.50987,0,21
+190886,0,9409.412143,0,21
+190887,0,9393.221111,0,21
+190888,0,9393.221522,0,21
+190889,0,9376.986478,0,21
+190890,0,9117.740236,0,21
+190891,0,9085.178384,0,21
+190892,0,8824.764819,0,21
+190893,0,8677.734033,0,21
+190894,0,8513.887954,0,21
+190895,0,8234.518294,0,21
+190896,0,7953.834944,0,21
+190897,0,8069.403036,0,21
+190898,0,7655.128824,0,21
+190899,0,7505.212921,0,21
+190900,0,7204.183974,0,21
+190901,0,7053.06649,0,21
+190902,0,6749.590449,0,21
+190903,1465.579531,6461.52153,0,21
+190904,2849.725851,6171.875202,0,21
+190905,2163.701006,5983.311907,0,21
+190906,2849.725851,5708.389868,0,21
+190907,2849.725852,5240.538278,0,21
+190908,3526.277761,5101.148221,0,21
+190909,3526.277971,4768.008516,0,21
+190910,4194.983497,4326.325084,0,21
+190911,4194.983501,4290.422391,0,21
+190912,4194.983461,3681.638691,0,21
+190913,4856.958162,3373.633551,0,21
+190914,4856.958136,3190.915727,0,21
+190915,5513.017988,2712.037091,0,21
+190916,4856.958114,2544.498115,0,21
+190917,6163.787616,2206.511642,0,21
+190918,5513.017979,1903.303125,0,21
+190919,6809.761542,1701.07007,0,21
+190920,5513.017986,1204.447486,0,21
+190921,8088.861009,843.7271444,0,21
+190922,6809.761339,600.2903255,0,21
+190923,8088.860687,91.64584401,0,21
+190924,8088.860543,0,0,21
+190925,8088.860406,0,0,21
+190926,8722.600329,0,0,21
+190927,8722.600216,0,0,21
+190928,9352.802128,0,0,21
+190929,8722.600644,0,0,21
+190930,9352.801625,0,0,21
+190931,10603.39604,0,0,21
+190932,9352.801343,0,0,21
+190933,10603.39556,0,0,21
+190934,10603.39614,0,0,21
+190935,10603.39604,0,0,21
+190936,10603.39546,0,0,21
+190937,11842.02447,0,0,21
+190938,10603.39507,0,0,21
+190939,11842.02474,0,0,21
+190940,11842.02461,0,0,21
+190941,11842.02387,0,0,21
+190942,13069.77848,0,0,21
+190943,11842.02419,0,0,21
+190944,13069.77882,0,0,21
+190945,13069.77794,0,0,21
+190946,13069.77771,0,0,21
+190947,13069.77829,0,0,21
+190948,14287.54324,0,0,21
+190949,13069.77711,0,0,21
+190950,14287.54279,0,0,21
+190951,14287.54256,0,0,21
+190952,14287.54233,0,0,21
+190953,14287.5421,0,0,21
+190954,15496.05002,0,0,21
+190955,14892.91183,0,0,21
+190956,15496.04845,0,0,21
+190957,15496.04917,0,0,21
+190958,15496.04888,0,0,21
+190959,15496.04859,0,0,21
+190960,16695.91691,0,0,21
+190961,16097.02734,0,0,21
+190962,16695.91621,0,0,21
+190963,16695.91586,0,0,21
+190964,16695.9155,0,0,21
+190965,17292.77752,0,0,21
+190966,17292.77713,0,0,21
+190967,17887.67129,0,0,21
+190968,17292.77634,0,0,21
+190969,17887.67044,0,0,21
+190970,18480.65174,0,0,21
+190971,17887.66958,0,0,21
+190972,19071.77119,0,0,21
+190973,17887.66869,0,0,21
+190974,19071.77018,0,0,21
+190975,19071.76966,0,0,21
+190976,19071.76915,0,0,21
+190977,19661.07582,0,0,21
+190978,19071.76782,0,0,21
+190979,20248.61417,0,0,21
+190980,20248.61317,0,0,21
+190981,19071.76985,0,0,21
+190982,20834.4301,0,0,21
+190983,20248.61677,0,0,21
+190984,20248.61762,0,0,21
+190985,20248.6174,0,0,21
+190986,21418.56275,0,0,21
+190987,20248.61779,0,0,21
+190988,21418.56359,0,0,21
+190989,21418.56276,0,0,21
+190990,21418.5639,0,0,21
+190991,21418.56486,0,0,21
+190992,21418.56464,0,0,21
+190993,22581.92151,0,0,21
+190994,21418.56498,0,0,21
+190995,22581.9225,0,0,21
+190996,22581.92159,0,0,21
+190997,22001.05027,0,0,21
+190998,22581.92399,0,0,21
+190999,23738.97179,0,0,21
+191000,22581.92502,0,0,21
+191001,22581.9245,0,0,21
+191002,23738.97376,0,0,21
+191003,23738.97483,0,0,21
+191004,23161.22253,0,0,21
+191005,23738.97597,0,0,21
+191006,23738.44935,0,0,21
+191007,24890.17522,0,0,21
+191008,23738.85047,0,0,21
+191009,23738.90714,0,0,21
+191010,24889.90557,0,0,21
+191011,24889.90033,0,0,21
+191012,23738.91218,0,0,21
+191013,26035.0709,0,0,21
+191014,23738.9146,0,0,21
+191015,26035.07174,0,0,21
+191016,24889.90738,0,0,21
+191017,24889.90824,0,0,21
+191018,26035.07627,0,0,21
+191019,26035.07779,0,0,21
+191020,24889.91298,0,0,21
+191021,26035.0799,0,0,21
+191022,26605.54539,0,0,21
+191023,26035.08184,0,0,21
+191024,26035.08408,0,0,21
+191025,27174.63524,0,0,21
+191026,26035.08647,0,0,21
+191027,27174.63746,0,0,21
+191028,26035.08853,0,0,21
+191029,27742.36878,0,0,21
+191030,27174.64174,0,0,21
+191031,27174.64315,0,0,21
+191032,27174.64424,0,0,21
+191033,27742.3748,0,0,21
+191034,27174.64646,0,0,21
+191035,28308.77282,0,0,21
+191036,28308.77503,0,0,21
+191037,27174.6509,0,0,21
+191038,28873.86149,0,0,21
+191039,28308.77892,0,0,21
+191040,28308.78015,0,0,21
+191041,0,0,0,21
+191042,0,0,0,21
+191043,0,0,0,21
+191044,0,0,0,21
+191045,0,0,0,21
+191046,0,0,0,21
+191047,0,0,0,21
+191048,0,0,0,21
+191049,0,0,0,21
+191050,0,0,0,21
+191051,0,0,0,21
+191052,0,0,0,21
+191053,0,0,0,21
+191054,0,0,0,21
+191055,0,0,0,21
+191056,0,0,0,21
+191057,0,0,0,21
+191058,0,0,0,21
+191059,0,0,0,21
+191060,0,0,0,21
+191061,0,0,0,21
+191062,0,0,0,21
+191063,0,0,0,21
+191064,0,0,0,21
+191065,0,0,0,21
+191066,0,0,0,21
+191067,0,0,0,21
+191068,0,0,0,21
+191069,0,0,0,21
+191070,0,0,0,21
+191071,0,0,0,21
+191072,0,0,0,21
+191073,0,0,0,21
+191074,0,0,0,21
+191075,0,0,0,21
+191076,0,0,0,21
+191077,0,0,0,21
+191078,0,0,0,21
+191079,0,0,0,21
+191080,0,0,0,21
+191081,0,0,0,21
+191082,0,0,0,21
+191083,0,0,0,21
+191084,0,0,0,21
+191085,0,0,0,21
+191086,0,0,0,21
+191087,0,0,0,21
+191088,0,0,0,21
+191089,0,0,0,21
+191090,0,0,0,21
+191091,0,0,0,21
+191092,0,0,0,21
+191093,0,0,0,21
+191094,0,0,0,21
+191095,0,0,0,21
+191096,0,0,0,21
+191097,0,0,0,21
+191098,0,0,0,21
+191099,0,0,0,21
+191100,0,0,0,21
+191101,0,0,0,21
+191102,0,0,0,21
+191103,0,0,0,21
+191104,0,0,0,21
+191105,0,0,0,21
+191106,0,0,0,21
+191107,0,367497.1454,1190274.781,21
+191108,0,0,0,21
+191109,0,0,0,21
+191110,0,0,0,21
+191111,334979.2541,0,0,21
+191112,0,0,0,21
+191113,0,0,0,21
+191114,0,0,0,21
+191115,0,0,0,21
+191116,0,0,0,21
+191117,0,0,0,21
+191118,0,0,0,21
+191119,0,0,0,21
+191120,0,0,0,21
+191121,0,0,0,21
+191122,0,0,0,21
+191123,0,0,0,21
+191124,0,0,0,21
+191125,0,0,0,21
+191126,0,0,0,21
+191127,0,0,0,21
+191128,0,0,0,21
+191129,0,0,0,21
+191130,0,0,0,21
+191131,0,0,0,21
+191132,0,0,0,21
+191133,0,0,0,21
+191134,0,0,0,21
+191135,0,0,0,21
+191136,0,0,0,21
+191137,0,0,0,21
+191138,0,0,0,21
+191139,0,0,0,21
+191140,0,0,0,21
+191141,0,0,0,21
+191142,0,0,0,21
+191143,0,368468.5374,1145229.248,21
+191144,0,0,0,21
+191145,0,0,0,21
+191146,0,0,0,21
+191147,0,0,0,21
+191148,0,0,0,21
+191149,0,0,0,21
+191150,0,0,0,21
+191151,335304.5639,0,0,21
+191152,0,0,0,21
+191153,0,0,0,21
+191154,0,0,0,21
+191155,0,0,0,21
+191156,0,0,0,21
+191157,0,0,0,21
+191158,0,0,0,21
+191159,0,0,0,21
+191160,0,0,0,21
+191161,0,0,0,21
+191162,0,0,0,21
+191163,0,0,0,21
+191164,0,0,0,21
+191165,0,0,0,21
+191166,0,0,0,21
+191167,0,0,0,21
+191168,0,0,0,21
+191169,0,0,0,21
+191170,0,0,0,21
+191171,0,0,0,21
+191172,0,0,0,21
+191173,0,0,0,21
+191174,0,0,0,21
+191175,0,0,0,21
+191176,0,0,0,21
+191177,0,0,0,21
+191178,0,0,0,21
+191179,0,0,0,21
+191180,0,368472.7254,1104070.378,21
+191181,0,0,0,21
+191182,0,0,0,21
+191183,0,0,0,21
+191184,0,0,0,21
+191185,0,0,0,21
+191186,0,0,0,21
+191187,0,0,0,21
+191188,0,0,0,21
+191189,0,0,0,21
+191190,0,0,0,21
+191191,335348.8117,0,0,21
+191192,0,0,0,21
+191193,0,0,0,21
+191194,0,0,0,21
+191195,0,0,0,21
+191196,0,0,0,21
+191197,0,0,0,21
+191198,0,0,0,21
+191199,0,0,0,21
+191200,0,0,0,21
+191201,0,0,0,21
+191202,0,0,0,21
+191203,0,0,0,21
+191204,0,0,0,21
+191205,0,0,0,21
+191206,0,0,0,21
+191207,0,0,0,21
+191208,0,0,0,21
+191209,0,0,0,21
+191210,0,0,0,21
+191211,0,0,0,21
+191212,0,0,0,21
+191213,0,0,0,21
+191214,0,0,0,21
+191215,0,0,0,21
+191216,0,0,0,21
+191217,0,368472.7255,1066637.011,21
+191218,0,0,0,21
+191219,0,0,0,21
+191220,0,0,0,21
+191221,0,0,0,21
+191222,0,0,0,21
+191223,0,0,0,21
+191224,0,0,0,21
+191225,0,0,0,21
+191226,0,0,0,21
+191227,0,0,0,21
+191228,0,0,0,21
+191229,0,0,0,21
+191230,0,0,0,21
+191231,0,0,0,21
+191232,335683.2078,0,0,21
+191233,0,0,0,21
+191234,0,0,0,21
+191235,0,0,0,21
+191236,0,0,0,21
+191237,0,0,0,21
+191238,0,0,0,21
+191239,0,0,0,21
+191240,0,0,0,21
+191241,0,0,0,21
+191242,0,0,0,21
+191243,0,0,0,21
+191244,0,0,0,21
+191245,0,0,0,21
+191246,0,0,0,21
+191247,0,0,0,21
+191248,0,0,0,21
+191249,0,0,0,21
+191250,0,0,0,21
+191251,0,0,0,21
+191252,0,0,0,21
+191253,0,0,0,21
+191254,0,368472.4575,1032877.882,21
+191255,0,0,0,21
+191256,0,0,0,21
+191257,0,0,0,21
+191258,0,0,0,21
+191259,0,0,0,21
+191260,0,0,0,21
+191261,0,0,0,21
+191262,0,0,0,21
+191263,0,0,0,21
+191264,0,0,0,21
+191265,0,0,0,21
+191266,0,0,0,21
+191267,0,0,0,21
+191268,0,0,0,21
+191269,0,0,0,21
+191270,0,0,0,21
+191271,0,0,0,21
+191272,0,0,0,21
+191273,336836.8655,0,0,21
+191274,0,0,0,21
+191275,0,0,0,21
+191276,0,0,0,21
+191277,0,0,0,21
+191278,0,0,0,21
+191279,0,0,0,21
+191280,0,0,0,21
+191281,0,0,0,21
+191282,0,0,0,21
+191283,0,0,0,21
+191284,0,0,0,21
+191285,0,0,0,21
+191286,0,0,0,21
+191287,0,0,0,21
+191288,0,0,0,21
+191289,0,0,0,21
+191290,0,0,0,21
+191291,0,368472.7277,1002425.005,21
+191292,0,0,0,21
+191293,0,0,0,21
+191294,0,0,0,21
+191295,0,0,0,21
+191296,0,0,0,21
+191297,0,0,0,21
+191298,0,0,0,21
+191299,0,0,0,21
+191300,0,0,0,21
+191301,0,0,0,21
+191302,0,0,0,21
+191303,0,0,0,21
+191304,0,0,0,21
+191305,0,0,0,21
+191306,0,0,0,21
+191307,0,0,0,21
+191308,0,0,0,21
+191309,0,0,0,21
+191310,0,0,0,21
+191311,0,0,0,21
+191312,0,0,0,21
+191313,0,0,0,21
+191314,337549.8946,0,0,21
+191315,0,0,0,21
+191316,0,0,0,21
+191317,0,0,0,21
+191318,0,0,0,21
+191319,0,0,0,21
+191320,0,0,0,21
+191321,0,0,0,21
+191322,0,0,0,21
+191323,0,0,0,21
+191324,0,0,0,21
+191325,0,0,0,21
+191326,0,0,0,21
+191327,0,0,0,21
+191328,0,368472.7278,974816.8465,21
+191329,0,0,0,21
+191330,0,0,0,21
+191331,0,0,0,21
+191332,0,0,0,21
+191333,0,0,0,21
+191334,0,0,0,21
+191335,0,0,0,21
+191336,0,0,0,21
+191337,0,0,0,21
+191338,0,0,0,21
+191339,0,0,0,21
+191340,0,0,0,21
+191341,0,0,0,21
+191342,0,0,0,21
+191343,0,0,0,21
+191344,0,0,0,21
+191345,0,0,0,21
+191346,0,0,0,21
+191347,0,0,0,21
+191348,0,0,0,21
+191349,0,0,0,21
+191350,0,0,0,21
+191351,0,0,0,21
+191352,0,0,0,21
+191353,0,0,0,21
+191354,0,0,0,21
+191355,338212.7252,0,0,21
+191356,0,0,0,21
+191357,0,0,0,21
+191358,0,0,0,21
+191359,0,0,0,21
+191360,0,0,0,21
+191361,0,0,0,21
+191362,0,0,0,21
+191363,0,0,0,21
+191364,0,0,0,21
+191365,0,368472.4225,948995.4159,21
+191366,0,0,0,21
+191367,0,0,0,21
+191368,0,0,0,21
+191369,0,0,0,21
+191370,0,0,0,21
+191371,0,0,0,21
+191372,0,0,0,21
+191373,0,0,0,21
+191374,0,0,0,21
+191375,0,0,0,21
+191376,0,0,0,21
+191377,0,0,0,21
+191378,0,0,0,21
+191379,0,0,0,21
+191380,0,0,0,21
+191381,0,0,0,21
+191382,0,0,0,21
+191383,0,0,0,21
+191384,0,0,0,21
+191385,0,0,0,21
+191386,0,0,0,21
+191387,0,0,0,21
+191388,0,0,0,21
+191389,0,0,0,21
+191390,0,0,0,21
+191391,0,0,0,21
+191392,0,0,0,21
+191393,0,0,0,21
+191394,0,0,0,21
+191395,0,0,0,21
+191396,338440.3055,0,0,21
+191397,0,0,0,21
+191398,0,0,0,21
+191399,0,0,0,21
+191400,0,0,0,15.6
+191401,0,0,0,15.6
+191402,0,368472.4327,925411.0476,15.6
+191403,0,0,0,15.6
+191404,0,0,0,15.6
+191405,0,0,0,15.6
+191406,0,0,0,15.6
+191407,0,0,0,15.6
+191408,0,0,0,15.6
+191409,0,0,0,15.6
+191410,0,0,0,15.6
+191411,0,0,0,15.6
+191412,0,0,0,15.6
+191413,0,0,0,15.6
+191414,0,0,0,15.6
+191415,0,0,0,15.6
+191416,0,0,0,15.6
+191417,0,0,0,15.6
+191418,0,0,0,15.6
+191419,0,0,0,15.6
+191420,0,0,0,15.6
+191421,0,0,0,15.6
+191422,0,0,0,15.6
+191423,0,0,0,15.6
+191424,0,0,0,15.6
+191425,0,0,0,15.6
+191426,0,0,0,15.6
+191427,0,0,0,15.6
+191428,0,0,0,15.6
+191429,0,0,0,15.6
+191430,0,0,0,15.6
+191431,0,0,0,15.6
+191432,0,0,0,15.6
+191433,0,0,0,15.6
+191434,0,0,0,15.6
+191435,0,0,0,15.6
+191436,0,0,0,15.6
+191437,338716.7871,0,0,15.6
+191438,0,0,0,15.6
+191439,0,368472.7278,903883.8813,15.6
+191440,0,0,0,15.6
+191441,0,0,0,15.6
+191442,0,0,0,15.6
+191443,0,0,0,15.6
+191444,0,0,0,15.6
+191445,0,0,0,15.6
+191446,0,0,0,15.6
+191447,0,0,0,15.6
+191448,0,0,0,15.6
+191449,0,0,0,15.6
+191450,0,0,0,15.6
+191451,0,0,0,15.6
+191452,0,0,0,15.6
+191453,0,0,0,15.6
+191454,0,0,0,15.6
+191455,0,0,0,15.6
+191456,0,0,0,15.6
+191457,0,0,0,15.6
+191458,0,0,0,15.6
+191459,0,0,0,15.6
+191460,0,0,0,15.6
+191461,0,0,0,15.6
+191462,0,0,0,15.6
+191463,0,0,0,15.6
+191464,0,0,0,15.6
+191465,0,0,0,15.6
+191466,0,0,0,15.6
+191467,0,0,0,15.6
+191468,0,0,0,15.6
+191469,0,0,0,15.6
+191470,0,0,0,15.6
+191471,0,0,0,15.6
+191472,0,0,0,15.6
+191473,0,0,0,15.6
+191474,0,0,0,15.6
+191475,0,0,0,15.6
+191476,0,368464.0708,876870.3655,15.6
+191477,0,0,0,15.6
+191478,0,0,0,15.6
+191479,338817.7747,0,0,15.6
+191480,0,0,0,15.6
+191481,0,0,0,15.6
+191482,0,0,0,15.6
+191483,0,0,0,15.6
+191484,0,0,0,15.6
+191485,0,0,0,15.6
+191486,0,0,0,15.6
+191487,0,0,0,15.6
+191488,0,0,0,15.6
+191489,0,0,0,15.6
+191490,0,0,0,15.6
+191491,0,0,0,15.6
+191492,0,0,0,15.6
+191493,0,0,0,15.6
+191494,0,0,0,15.6
+191495,0,0,0,15.6
+191496,0,0,0,15.6
+191497,0,0,0,15.6
+191498,0,0,0,15.6
+191499,0,0,0,15.6
+191500,0,0,0,15.6
+191501,0,0,0,15.6
+191502,0,0,0,15.6
+191503,0,0,0,15.6
+191504,0,0,0,15.6
+191505,0,0,0,15.6
+191506,0,0,0,15.6
+191507,0,0,0,15.6
+191508,0,0,0,15.6
+191509,0,0,0,15.6
+191510,0,0,0,15.6
+191511,0,0,0,15.6
+191512,0,0,0,15.6
+191513,0,368483.0805,859644.0061,15.6
+191514,0,0,0,15.6
+191515,0,0,0,15.6
+191516,0,0,0,15.6
+191517,0,0,0,15.6
+191518,0,0,0,15.6
+191519,0,0,0,15.6
+191520,0,0,0,15.6
+191521,338944.998,0,0,15.6
+191522,0,0,0,15.6
+191523,0,0,0,15.6
+191524,0,0,0,15.6
+191525,0,0,0,15.6
+191526,0,0,0,15.6
+191527,0,0,0,15.6
+191528,0,0,0,15.6
+191529,0,0,0,15.6
+191530,0,0,0,15.6
+191531,0,0,0,15.6
+191532,0,0,0,15.6
+191533,0,0,0,15.6
+191534,0,0,0,15.6
+191535,0,0,0,15.6
+191536,0,0,0,15.6
+191537,0,0,0,15.6
+191538,0,0,0,15.6
+191539,0,0,0,15.6
+191540,0,0,0,15.6
+191541,0,0,0,15.6
+191542,0,0,0,15.6
+191543,0,0,0,15.6
+191544,0,0,0,15.6
+191545,0,0,0,15.6
+191546,0,0,0,15.6
+191547,0,0,0,15.6
+191548,0,0,0,15.6
+191549,0,0,0,15.6
+191550,0,368517.1148,844064.4738,15.6
+191551,0,0,0,15.6
+191552,0,0,0,15.6
+191553,0,0,0,15.6
+191554,0,0,0,15.6
+191555,0,0,0,15.6
+191556,0,0,0,15.6
+191557,0,0,0,15.6
+191558,0,0,0,15.6
+191559,0,0,0,15.6
+191560,0,0,0,15.6
+191561,0,0,0,15.6
+191562,0,0,0,15.6
+191563,339057.1068,0,0,15.6
+191564,0,0,0,15.6
+191565,0,0,0,15.6
+191566,0,0,0,15.6
+191567,0,0,0,15.6
+191568,0,0,0,15.6
+191569,0,0,0,15.6
+191570,0,0,0,15.6
+191571,0,0,0,15.6
+191572,0,0,0,15.6
+191573,0,0,0,15.6
+191574,0,0,0,15.6
+191575,0,0,0,15.6
+191576,0,0,0,15.6
+191577,0,0,0,15.6
+191578,0,0,0,15.6
+191579,0,0,0,15.6
+191580,0,0,0,15.6
+191581,0,0,0,15.6
+191582,0,3.099310786,0,15.6
+191583,0,0,0,15.6
+191584,0,77.52795609,0,15.6
+191585,0,0,0,15.6
+191586,0,0,0,15.6
+191587,0,368532.5323,829504.1945,15.6
+191588,0,4.140012206,0,15.6
+191589,0,0,0,15.6
+191590,0,80.87791258,0,15.6
+191591,0,0,0,15.6
+191592,0,0,0,15.6
+191593,0,0,0,15.6
+191594,0,3.062504339,0,15.6
+191595,0,0,0,15.6
+191596,0,65.98289137,0,15.6
+191597,0,0,0,15.6
+191598,0,0,0,15.6
+191599,0,0,0,15.6
+191600,0,3.884091777,0,15.6
+191601,0,0,0,15.6
+191602,0,78.35210274,0,15.6
+191603,0,0,0,15.6
+191604,0,0,0,15.6
+191605,339144.0611,0,0,15.6
+191606,0,3.829552271,0,15.6
+191607,0,0,0,15.6
+191608,0,77.90057223,0,15.6
+191609,0,0,0,15.6
+191610,0,0,0,15.6
+191611,0,0,0,15.6
+191612,0,3.761122798,0,15.6
+191613,0,0,0,15.6
+191614,0,76.73344434,0,15.6
+191615,0,0,0,15.6
+191616,0,0,0,15.6
+191617,0,0,0,15.6
+191618,0,3.807668585,0,15.6
+191619,0,0,0,15.6
+191620,0,78.0419739,0,15.6
+191621,0,0,0,15.6
+191622,0,0,0,15.6
+191623,0,0,0,15.6
+191624,0,368503.378,816527.541,15.6
+191625,0,0,0,15.6
+191626,0,80.72602795,0,15.6
+191627,0,0,0,15.6
+191628,0,0,0,15.6
+191629,0,0,0,15.6
+191630,0,3.649092912,0,15.6
+191631,0,0,0,15.6
+191632,0,77.25563824,0,15.6
+191633,0,0,0,15.6
+191634,0,0,0,15.6
+191635,0,0,0,15.6
+191636,0,0,0,15.6
+191637,0,81.44782226,0,15.6
+191638,0,0,0,15.6
+191639,0,0,0,15.6
+191640,0,0,0,15.6
+191641,0,0,0,15.6
+191642,0,0,0,15.6
+191643,0,3.350740208,0,15.6
+191644,0,0,0,15.6
+191645,0,99.19455221,0,15.6
+191646,339229.6929,0,0,15.6
+191647,0,0,0,15.6
+191648,0,0,0,15.6
+191649,0,0,0,15.6
+191650,0,85.20394624,0,15.6
+191651,0,0,0,15.6
+191652,0,0,0,15.6
+191653,0,0,0,15.6
+191654,0,0,0,15.6
+191655,0,0,0,15.6
+191656,0,3.364761341,0,15.6
+191657,0,0,0,15.6
+191658,0,97.77391698,0,15.6
+191659,0,0,0,15.6
+191660,0,0,0,15.6
+191661,0,368508.4622,805183.3056,15.6
+191662,0,4.254611281,0,15.6
+191663,0,0,0,15.6
+191664,0,99.20389605,0,15.6
+191665,0,0,0,15.6
+191666,0,0,0,15.6
+191667,0,0,0,15.6
+191668,0,3.072984934,0,15.6
+191669,0,0,0,15.6
+191670,0,73.353063,0,15.6
+191671,0,0,0,15.6
+191672,0,0,0,15.6
+191673,0,0,0,15.6
+191674,0,7.599022094,0,15.6
+191675,0,0,0,15.6
+191676,0,100.7895028,0,15.6
+191677,0,0,0,15.6
+191678,0,0,0,15.6
+191679,0,0,0,15.6
+191680,0,3.407234713,0,15.6
+191681,0,0,0,15.6
+191682,0,78.21239389,0,15.6
+191683,0,0,0,15.6
+191684,0,0,0,15.6
+191685,0,0,0,15.6
+191686,0,7.074997413,0,15.6
+191687,339292.4694,0,0,15.6
+191688,0,85.97212671,0,15.6
+191689,0,0,0,15.6
+191690,0,0,0,15.6
+191691,0,0,0,15.6
+191692,0,3.954826963,0,15.6
+191693,0,0,0,15.6
+191694,0,80.52692756,0,15.6
+191695,0,0,0,15.6
+191696,0,0,794922.8008,15.6
+191697,0,0,0,15.6
+191698,0,368545.367,0,15.6
+191699,0,0,0,15.6
+191700,0,74.4151955,0,15.6
+191701,0,0,0,15.6
+191702,0,0,0,15.6
+191703,0,430871.7775,0,15.6
+191704,0,0,0,15.6
+191705,0,0,0,15.6
+191706,0,0,0,15.6
+191707,0,0,0,15.6
+191708,0,0,0,15.6
+191709,0,0,0,15.6
+191710,0,0,0,15.6
+191711,0,0,0,15.6
+191712,0,0,0,15.6
+191713,0,0,0,15.6
+191714,0,0,0,15.6
+191715,0,0,0,15.6
+191716,0,0,0,15.6
+191717,0,0,0,15.6
+191718,0,0,0,15.6
+191719,0,0,0,15.6
+191720,0,0,0,15.6
+191721,0,0,0,15.6
+191722,0,0,0,15.6
+191723,0,0,0,15.6
+191724,339347.8894,0,0,15.6
+191725,0,0,0,15.6
+191726,0,0,0,15.6
+191727,0,0,0,15.6
+191728,0,430695.2028,0,15.6
+191729,0,0,0,15.6
+191730,0,0,0,15.6
+191731,0,0,785382.0423,15.6
+191732,0,0,0,15.6
+191733,0,0,0,15.6
+191734,0,368559.1415,0,15.6
+191735,0,0,0,15.6
+191736,0,0,0,15.6
+191737,0,0,0,15.6
+191738,0,0,0,15.6
+191739,0,0,0,15.6
+191740,0,0,0,15.6
+191741,0,0,0,15.6
+191742,0,0,0,15.6
+191743,0,0,0,15.6
+191744,0,0,0,15.6
+191745,0,0,0,15.6
+191746,0,0,0,15.6
+191747,0,0,0,15.6
+191748,0,0,0,15.6
+191749,0,0,0,15.6
+191750,0,0,0,15.6
+191751,0,0,0,15.6
+191752,0,0,0,15.6
+191753,0,430524.71,0,15.6
+191754,0,0,0,15.6
+191755,0,0,0,15.6
+191756,0,0,0,15.6
+191757,0,0,0,15.6
+191758,0,0,0,15.6
+191759,0,0,0,15.6
+191760,339261.9881,0,0,17.8
+191761,0,0,0,17.8
+191762,0,0,0,17.8
+191763,0,0,0,17.8
+191764,0,0,0,17.8
+191765,0,0,0,17.8
+191766,0,0,776187.1375,17.8
+191767,0,0,0,17.8
+191768,0,429958.274,0,17.8
+191769,0,368568.451,0,17.8
+191770,0,0,0,17.8
+191771,0,0,0,17.8
+191772,0,0,0,17.8
+191773,0,0,0,17.8
+191774,0,0,0,17.8
+191775,0,0,0,17.8
+191776,0,0,0,17.8
+191777,0,0,0,17.8
+191778,0,0,0,17.8
+191779,0,0,0,17.8
+191780,0,0,0,17.8
+191781,0,0,0,17.8
+191782,0,0,0,17.8
+191783,0,0,0,17.8
+191784,0,0,0,17.8
+191785,0,0,0,17.8
+191786,0,0,0,17.8
+191787,0,0,0,17.8
+191788,0,430444.1353,0,17.8
+191789,0,0,0,17.8
+191790,0,0,0,17.8
+191791,0,0,0,17.8
+191792,0,0,0,17.8
+191793,0,0,0,17.8
+191794,0,0,0,17.8
+191795,0,0,0,17.8
+191796,339292.5537,0,0,17.8
+191797,0,0,0,17.8
+191798,0,0,0,17.8
+191799,0,0,0,17.8
+191800,0,0,0,17.8
+191801,0,0,767664.2845,17.8
+191802,0,0,0,17.8
+191803,0,0,0,17.8
+191804,0,368555.4675,0,17.8
+191805,0,0,0,17.8
+191806,0,0,0,17.8
+191807,0,109.0040244,0,17.8
+191808,0,0,0,17.8
+191809,0,0,0,17.8
+191810,0,0,0,17.8
+191811,0,0,0,17.8
+191812,0,0,0,17.8
+191813,0,0,0,17.8
+191814,0,0,0,17.8
+191815,0,0,0,17.8
+191816,0,0,0,17.8
+191817,0,2.577499192,0,17.8
+191818,0,0,0,17.8
+191819,0,0,0,17.8
+191820,0,244.3669277,0,20
+191821,0,0,0,20
+191822,0,0,0,20
+191823,0,0,0,20
+191824,0,0,0,20
+191825,0,0,0,20
+191826,0,0,0,20
+191827,0,0,0,20
+191828,0,0,0,20
+191829,0,0,0,20
+191830,0,0,0,20
+191831,0,0,0,20
+191832,0,0,0,20
+191833,0,7.57922104,0,20
+191834,0,0,0,20
+191835,0,96.0927813,0,20
+191836,0,0,0,20
+191837,339308.7475,0,0,20
+191838,0,0,759884.4902,20
+191839,0,2.641433439,0,20
+191840,0,0,0,20
+191841,0,368548.5287,0,20
+191842,0,62.95275261,0,20
+191843,0,0,0,20
+191844,0,0,0,20
+191845,0,0,0,20
+191846,0,0,0,20
+191847,0,0,0,20
+191848,0,0,0,20
+191849,0,0,0,20
+191850,0,0,0,20
+191851,0,0,0,20
+191852,0,0,0,20
+191853,0,0,0,20
+191854,0,0,0,20
+191855,0,0,0,20
+191856,0,0,0,20
+191857,0,0,0,20
+191858,0,2.432520662,0,20
+191859,0,0,0,20
+191860,0,0,0,20
+191861,0,58.50035004,0,20
+191862,0,0,0,20
+191863,0,0,0,20
+191864,0,0,0,20
+191865,0,0,0,20
+191866,0,0,0,20
+191867,0,0,0,20
+191868,0,0,0,20
+191869,0,0,0,20
+191870,0,0,0,20
+191871,0,0,0,20
+191872,0,0,0,20
+191873,0,0,0,20
+191874,0,0,0,20
+191875,0,61.43723362,752783.2465,20
+191876,0,0,0,20
+191877,0,0,0,20
+191878,339227.0681,368546.9115,0,20
+191879,0,0,0,20
+191880,0,0,0,21
+191881,0,0,0,21
+191882,0,0,0,21
+191883,0,0,0,21
+191884,0,0,0,21
+191885,0,0,0,21
+191886,0,0,0,21
+191887,0,0,0,21
+191888,0,0,0,21
+191889,0,0,0,21
+191890,0,0,0,21
+191891,0,0,0,21
+191892,0,0,0,21
+191893,0,0,0,21
+191894,0,0,0,21
+191895,0,0,0,21
+191896,0,0,0,21
+191897,0,0,0,21
+191898,0,0,0,21
+191899,0,0,0,21
+191900,0,0,0,21
+191901,0,0,0,21
+191902,0,0,0,21
+191903,0,430249.577,0,21
+191904,0,0,0,21
+191905,0,0,0,21
+191906,0,0,0,21
+191907,0,0,0,21
+191908,0,0,0,21
+191909,0,0,0,21
+191910,0,0,0,21
+191911,0,0,746301.5736,21
+191912,0,0,0,21
+191913,0,0,0,21
+191914,0,0,0,21
+191915,0,0,0,21
+191916,0,368546.4459,0,21
+191917,0,0,0,21
+191918,339198.3958,0,0,21
+191919,0,0,0,21
+191920,0,0,0,21
+191921,0,0,0,21
+191922,0,0,0,21
+191923,0,0,0,21
+191924,0,0,0,21
+191925,0,0,0,21
+191926,0,0,0,21
+191927,0,0,0,21
+191928,0,430085.8779,0,21
+191929,0,0,0,21
+191930,0,0,0,21
+191931,0,0,0,21
+191932,0,0,0,21
+191933,0,0,0,21
+191934,0,0,0,21
+191935,0,0,0,21
+191936,0,0,0,21
+191937,0,0,0,21
+191938,0,0,0,21
+191939,0,0,0,21
+191940,0,0,0,21
+191941,0,0,0,21
+191942,0,0,0,21
+191943,0,0,0,21
+191944,0,0,0,21
+191945,0,0,0,21
+191946,0,0,0,21
+191947,0,0,740385.1945,21
+191948,0,0,0,21
+191949,0,0,0,21
+191950,0,0,0,21
+191951,0,0,0,21
+191952,0,0,0,21
+191953,0,0,0,21
+191954,0,368551.7487,0,21
+191955,0,0,0,21
+191956,339202.9438,0,0,21
+191957,0,0,0,21
+191958,0,0,0,21
+191959,0,0,0,21
+191960,0,0,0,21
+191961,0,0,0,21
+191962,0,0,0,21
+191963,0,0,0,21
+191964,0,0,0,21
+191965,0,0,0,21
+191966,0,0,0,21
+191967,0,0,0,21
+191968,0,0,0,21
+191969,0,0,0,21
+191970,0,0,0,21
+191971,0,0,0,21
+191972,0,0,0,21
+191973,0,0,0,21
+191974,0,0,0,21
+191975,0,0,0,21
+191976,0,0,0,21
+191977,0,0,0,21
+191978,0,0,0,21
+191979,0,0,0,21
+191980,0,0,0,21
+191981,0,0,0,21
+191982,0,0,0,21
+191983,0,0,734980.4918,21
+191984,0,0,0,21
+191985,0,0,0,21
+191986,0,0,0,21
+191987,0,0,0,21
+191988,0,0,0,21
+191989,0,0,0,21
+191990,0,0,0,21
+191991,0,0,0,21
+191992,0,368556.4579,0,21
+191993,0,0,0,21
+191994,339104.263,0,0,21
+191995,0,0,0,21
+191996,0,0,0,21
+191997,0,0,0,21
+191998,0,0,0,21
+191999,0,0,0,21
+192000,0,0,0,21
+192001,0,0,0,21
+192002,0,0,0,21
+192003,0,0,0,21
+192004,0,0,0,21
+192005,0,0,0,21
+192006,0,0,0,21
+192007,0,0,0,21
+192008,0,0,0,21
+192009,0,0,0,21
+192010,0,0,0,21
+192011,0,0,0,21
+192012,0,0,0,21
+192013,0,0,0,21
+192014,0,0,0,21
+192015,0,0,0,21
+192016,0,0,0,21
+192017,0,0,0,21
+192018,0,0,0,21
+192019,0,0,728924.0165,21
+192020,0,0,0,21
+192021,0,0,0,21
+192022,0,0,0,21
+192023,0,0,0,21
+192024,0,0,0,21
+192025,0,0,0,21
+192026,0,0,0,21
+192027,0,0,0,21
+192028,0,0,0,21
+192029,0,368571.509,0,21
+192030,0,0,0,21
+192031,0,0,0,21
+192032,339112.0123,0,0,21
+192033,0,0,0,21
+192034,0,0,0,21
+192035,0,0,0,21
+192036,0,0,0,21
+192037,0,0,0,21
+192038,0,0,0,21
+192039,0,0,0,21
+192040,0,0,0,21
+192041,0,0,0,21
+192042,0,0,0,21
+192043,0,0,0,21
+192044,0,0,0,21
+192045,0,0,0,21
+192046,0,0,0,21
+192047,0,0,0,21
+192048,0,0,0,21
+192049,0,0,0,21
+192050,0,0,0,21
+192051,0,0,0,21
+192052,0,0,0,21
+192053,0,0,0,21
+192054,0,0,0,21
+192055,0,0,723302.5784,21
+192056,0,0,0,21
+192057,0,0,0,21
+192058,0,0,0,21
+192059,0,0,0,21
+192060,0,0,0,21
+192061,0,0,0,21
+192062,0,0,0,21
+192063,0,0,0,21
+192064,0,0,0,21
+192065,0,0,0,21
+192066,0,368580.0385,0,21
+192067,0,0,0,21
+192068,0,0,0,21
+192069,0,0,0,21
+192070,339052.1214,0,0,21
+192071,0,0,0,21
+192072,0,0,0,21
+192073,0,0,0,21
+192074,0,0,0,21
+192075,0,0,0,21
+192076,0,0,0,21
+192077,0,0,0,21
+192078,0,0,0,21
+192079,0,0,0,21
+192080,0,0,0,21
+192081,0,0,0,21
+192082,0,0,0,21
+192083,0,0,0,21
+192084,0,0,0,21
+192085,0,0,0,21
+192086,0,0,0,21
+192087,0,0,0,21
+192088,0,0,0,21
+192089,0,0,0,21
+192090,0,0,0,21
+192091,0,0,718087.454,21
+192092,0,0,0,21
+192093,0,0,0,21
+192094,0,0,0,21
+192095,0,0,0,21
+192096,0,0,0,21
+192097,0,0,0,21
+192098,0,0,0,21
+192099,0,0,0,21
+192100,0,0,0,21
+192101,0,0,0,21
+192102,0,0,0,21
+192103,0,368588.5675,0,21
+192104,0,0,0,21
+192105,0,0,0,21
+192106,0,0,0,21
+192107,0,0,0,21
+192108,339036.3792,0,0,21
+192109,0,0,0,21
+192110,0,0,0,21
+192111,0,0,0,21
+192112,0,0,0,21
+192113,0,0,0,21
+192114,0,0,0,21
+192115,0,0,0,21
+192116,0,0,0,21
+192117,0,0,0,21
+192118,0,0,0,21
+192119,0,0,0,21
+192120,0,0,0,21
+192121,0,0,0,21
+192122,0,0,0,21
+192123,0,0,0,21
+192124,0,0,0,21
+192125,0,0,0,21
+192126,0,0,0,21
+192127,0,0,713475.521,21
+192128,0,0,0,21
+192129,0,0,0,21
+192130,0,0,0,21
+192131,0,0,0,21
+192132,0,0,0,21
+192133,0,0,0,21
+192134,0,0,0,21
+192135,0,0,0,21
+192136,0,0,0,21
+192137,0,0,0,21
+192138,0,0,0,21
+192139,0,0,0,21
+192140,0,0,0,21
+192141,0,368597.3438,0,21
+192142,0,0,0,21
+192143,0,0,0,21
+192144,0,0,0,21
+192145,0,0,0,21
+192146,0,0,0,21
+192147,0,0,0,21
+192148,334333.5491,0,0,21
+192149,0,0,0,21
+192150,0,0,0,21
+192151,0,0,0,21
+192152,0,0,0,21
+192153,0,0,0,21
+192154,0,0,0,21
+192155,0,0,0,21
+192156,0,0,0,21
+192157,0,0,0,21
+192158,0,0,0,21
+192159,0,0,0,21
+192160,0,0,0,21
+192161,0,0,0,21
+192162,0,0,0,21
+192163,0,0,0,21
+192164,0,0,709732.1533,21
+192165,0,0,0,21
+192166,0,0,0,21
+192167,0,0,0,21
+192168,0,0,0,21
+192169,0,0,0,21
+192170,0,0,0,21
+192171,0,0,0,21
+192172,0,0,0,21
+192173,0,0,0,21
+192174,0,0,0,21
+192175,0,0,0,21
+192176,0,0,0,21
+192177,0,0,0,21
+192178,0,0,0,21
+192179,0,368606.1213,0,21
+192180,0,0,0,21
+192181,0,0,0,21
+192182,0,0,0,21
+192183,0,0,0,21
+192184,0,0,0,21
+192185,0,0,0,21
+192186,0,0,0,21
+192187,0,0,0,21
+192188,337681.3239,0,0,21
+192189,0,0,0,21
+192190,0,0,0,21
+192191,0,0,0,21
+192192,0,0,0,21
+192193,0,0,0,21
+192194,0,0,0,21
+192195,0,0,0,21
+192196,0,0,0,21
+192197,0,0,0,21
+192198,0,0,0,21
+192199,0,0,0,21
+192200,0,0,0,21
+192201,0,0,706345.3959,21
+192202,0,0,0,21
+192203,0,0,0,21
+192204,0,0,0,21
+192205,0,0,0,21
+192206,0,0,0,21
+192207,0,0,0,21
+192208,0,0,0,21
+192209,0,0,0,21
+192210,0,0,0,21
+192211,0,0,0,21
+192212,0,0,0,21
+192213,0,0,0,21
+192214,0,0,0,21
+192215,0,0,0,21
+192216,0,0,0,21
+192217,0,368614.906,0,21
+192218,0,0,0,21
+192219,0,0,0,21
+192220,0,0,0,21
+192221,0,0,0,21
+192222,0,0,0,21
+192223,0,0,0,21
+192224,0,0,0,21
+192225,0,0,0,21
+192226,0,0,0,21
+192227,0,0,0,21
+192228,334651.5426,0,0,21
+192229,0,0,0,21
+192230,0,0,0,21
+192231,0,0,0,21
+192232,0,0,0,21
+192233,0,0,0,21
+192234,0,0,0,21
+192235,0,0,0,21
+192236,0,0,0,21
+192237,0,0,0,21
+192238,0,0,702474.7752,21
+192239,0,0,0,21
+192240,0,0,0,21
+192241,0,0,0,21
+192242,0,0,0,21
+192243,0,0,0,21
+192244,0,0,0,21
+192245,0,0,0,21
+192246,0,0,0,21
+192247,0,0,0,21
+192248,0,0,0,21
+192249,0,0,0,21
+192250,0,0,0,21
+192251,0,0,0,21
+192252,0,0,0,21
+192253,0,0,0,21
+192254,0,0,0,21
+192255,0,368623.6945,0,21
+192256,0,0,0,21
+192257,0,0,0,21
+192258,0,0,0,21
+192259,0,0,0,21
+192260,0,0,0,21
+192261,0,0,0,21
+192262,0,0,0,21
+192263,0,0,0,21
+192264,0,0,0,21
+192265,0,0,0,21
+192266,0,0,0,21
+192267,0,0,0,21
+192268,0,0,0,21
+192269,335061.2834,0,0,21
+192270,0,0,0,21
+192271,0,0,0,21
+192272,0,0,0,21
+192273,0,0,0,21
+192274,0,0,0,21
+192275,0,0,0,21
+192276,0,0,699965.0572,21
+192277,0,0,0,21
+192278,0,0,0,21
+192279,0,0,0,21
+192280,0,0,0,21
+192281,0,0,0,21
+192282,0,0,0,21
+192283,0,0,0,21
+192284,0,0,0,21
+192285,0,0,0,21
+192286,0,0,0,21
+192287,0,0,0,21
+192288,0,0,0,21
+192289,0,0,0,21
+192290,0,0,0,21
+192291,0,0,0,21
+192292,0,0,0,21
+192293,0,368632.4833,0,21
+192294,0,0,0,21
+192295,0,0,0,21
+192296,0,0,0,21
+192297,0,0,0,21
+192298,0,0,0,21
+192299,0,0,0,21
+192300,0,0,0,21
+192301,0,0,0,21
+192302,0,0,0,21
+192303,0,0,0,21
+192304,0,0,0,21
+192305,0,0,0,21
+192306,0,0,0,21
+192307,0,0,0,21
+192308,0,0,0,21
+192309,0,0,0,21
+192310,336346.4015,0,0,21
+192311,0,0,0,21
+192312,0,0,0,21
+192313,0,0,0,21
+192314,0,0,698452.9582,21
+192315,0,0,0,21
+192316,0,0,0,21
+192317,0,0,0,21
+192318,0,0,0,21
+192319,0,0,0,21
+192320,0,0,0,21
+192321,0,0,0,21
+192322,0,0,0,21
+192323,0,0,0,21
+192324,0,0,0,21
+192325,0,0,0,21
+192326,0,0,0,21
+192327,0,0,0,21
+192328,0,0,0,21
+192329,0,0,0,21
+192330,0,0,0,21
+192331,0,368641.272,0,21
+192332,0,0,0,21
+192333,0,0,0,21
+192334,0,0,0,21
+192335,0,0,0,21
+192336,0,0,0,21
+192337,0,0,0,21
+192338,0,0,0,21
+192339,0,0,0,21
+192340,0,0,0,21
+192341,0,0,0,21
+192342,0,0,0,21
+192343,0,0,0,21
+192344,0,0,0,21
+192345,0,0,0,21
+192346,0,0,0,21
+192347,0,0,0,21
+192348,0,0,0,21
+192349,0,0,0,21
+192350,0,0,0,21
+192351,335537.6438,0,694883.6155,21
+192352,0,0,0,21
+192353,0,0,0,21
+192354,0,0,0,21
+192355,0,0,0,21
+192356,0,0,0,21
+192357,0,0,0,21
+192358,0,0,0,21
+192359,0,0,0,21
+192360,0,0,0,21
+192361,0,0,0,21
+192362,0,0,0,21
+192363,0,0,0,21
+192364,0,0,0,21
+192365,0,0,0,21
+192366,0,0,0,21
+192367,0,0,0,21
+192368,0,0,0,21
+192369,0,368650.0589,0,21
+192370,0,0,0,21
+192371,0,0,0,21
+192372,0,0,0,21
+192373,0,0,0,21
+192374,0,0,0,21
+192375,0,0,0,21
+192376,0,0,0,21
+192377,0,0,0,21
+192378,0,0,0,21
+192379,0,0,0,21
+192380,0,0,0,21
+192381,0,0,0,21
+192382,0,0,0,21
+192383,0,0,0,21
+192384,0,0,0,21
+192385,0,0,0,21
+192386,0,0,0,21
+192387,0,0,692321.697,21
+192388,0,0,0,21
+192389,0,0,0,21
+192390,0,0,0,21
+192391,335597.5788,0,0,21
+192392,0,0,0,21
+192393,0,0,0,21
+192394,0,0,0,21
+192395,0,0,0,21
+192396,0,0,0,21
+192397,0,0,0,21
+192398,0,0,0,21
+192399,0,0,0,21
+192400,0,0,0,21
+192401,0,0,0,21
+192402,0,0,0,21
+192403,0,0,0,21
+192404,0,0,0,21
+192405,0,0,0,21
+192406,0,0,0,21
+192407,0,368658.8493,0,21
+192408,0,0,0,21
+192409,0,0,0,21
+192410,0,0,0,21
+192411,0,0,0,21
+192412,0,0,0,21
+192413,0,0,0,21
+192414,0,0,0,21
+192415,0,0,0,21
+192416,0,0,0,21
+192417,0,0,0,21
+192418,0,0,0,21
+192419,0,0,0,21
+192420,0,0,0,21
+192421,0,0,0,21
+192422,0,0,0,21
+192423,0,0,688556.7936,21
+192424,0,0,0,21
+192425,0,0,0,21
+192426,0,0,0,21
+192427,0,0,0,21
+192428,0,0,0,21
+192429,335814.2085,0,0,21
+192430,0,0,0,21
+192431,0,0,0,21
+192432,0,0,0,21
+192433,0,0,0,21
+192434,0,0,0,21
+192435,0,0,0,21
+192436,0,0,0,21
+192437,0,0,0,21
+192438,0,0,0,21
+192439,0,0,0,21
+192440,0,0,0,21
+192441,0,0,0,21
+192442,0,0,0,21
+192443,0,0,0,21
+192444,0,0,0,21
+192445,0,368667.6445,0,21
+192446,0,0,0,21
+192447,0,0,0,21
+192448,0,0,0,21
+192449,0,0,0,21
+192450,0,0,0,21
+192451,0,0,0,21
+192452,0,0,0,21
+192453,0,0,0,21
+192454,0,0,0,21
+192455,0,0,0,21
+192456,0,0,0,21
+192457,0,0,0,21
+192458,0,0,0,21
+192459,0,0,685450.7891,21
+192460,0,0,0,21
+192461,0,0,0,21
+192462,0,0,0,21
+192463,0,0,0,21
+192464,0,0,0,21
+192465,0,0,0,21
+192466,0,0,0,21
+192467,335624.4053,0,0,21
+192468,0,0,0,21
+192469,0,0,0,21
+192470,0,0,0,21
+192471,0,0,0,21
+192472,0,0,0,21
+192473,0,0,0,21
+192474,0,0,0,21
+192475,0,0,0,21
+192476,0,0,0,21
+192477,0,0,0,21
+192478,0,0,0,21
+192479,0,0,0,21
+192480,0,0,0,21
+192481,0,0,0,21
+192482,0,0,0,21
+192483,0,368676.4446,0,21
+192484,0,0,0,21
+192485,0,0,0,21
+192486,0,0,0,21
+192487,0,0,0,21
+192488,0,0,0,21
+192489,0,0,0,21
+192490,0,0,0,21
+192491,0,0,0,21
+192492,0,0,0,21
+192493,0,0,0,21
+192494,0,0,0,21
+192495,0,0,683396.6043,21
+192496,0,0,0,21
+192497,0,0,0,21
+192498,0,0,0,21
+192499,0,0,0,21
+192500,0,0,0,21
+192501,0,0,0,21
+192502,0,0,0,21
+192503,0,0,0,21
+192504,0,0,0,21
+192505,335575.8777,0,0,21
+192506,0,0,0,21
+192507,0,0,0,21
+192508,0,0,0,21
+192509,0,0,0,21
+192510,0,0,0,21
+192511,0,0,0,21
+192512,0,0,0,21
+192513,0,0,0,21
+192514,0,0,0,21
+192515,0,0,0,21
+192516,0,0,0,21
+192517,0,0,0,21
+192518,0,0,0,21
+192519,0,0,0,21
+192520,0,0,0,21
+192521,0,368685.2428,0,21
+192522,0,0,0,21
+192523,0,0,0,21
+192524,0,0,0,21
+192525,0,0,0,21
+192526,0,0,0,21
+192527,0,0,0,21
+192528,0,0,0,21
+192529,0,0,0,21
+192530,0,0,0,21
+192531,0,0,682141.7025,21
+192532,0,0,0,21
+192533,0,0,0,21
+192534,0,0,0,21
+192535,0,0,0,21
+192536,0,0,0,21
+192537,0,0,0,21
+192538,0,0,0,21
+192539,0,0,0,21
+192540,0,0,0,21
+192541,0,0,0,21
+192542,0,0,0,21
+192543,335447.9495,0,0,21
+192544,0,0,0,21
+192545,0,0,0,21
+192546,0,0,0,21
+192547,0,0,0,21
+192548,0,0,0,21
+192549,0,0,0,21
+192550,0,0,0,21
+192551,0,0,0,21
+192552,0,0,0,21
+192553,0,0,0,21
+192554,0,0,0,21
+192555,0,0,0,21
+192556,0,0,0,21
+192557,0,0,0,21
+192558,0,0,0,21
+192559,0,368689.9382,0,21
+192560,0,0,0,21
+192561,0,0,0,21
+192562,0,0,0,21
+192563,0,0,0,21
+192564,0,0,0,21
+192565,0,0,0,21
+192566,0,0,0,21
+192567,0,0,680118.3394,21
+192568,0,0,0,21
+192569,0,0,0,21
+192570,0,0,0,21
+192571,0,0,0,21
+192572,0,0,0,21
+192573,0,0,0,21
+192574,0,0,0,21
+192575,0,0,0,21
+192576,0,0,0,21
+192577,0,0,0,21
+192578,0,0,0,21
+192579,0,0,0,21
+192580,0,0,0,21
+192581,335499.8812,0,0,21
+192582,0,0,0,21
+192583,0,0,0,21
+192584,0,0,0,21
+192585,0,0,0,21
+192586,0,0,0,21
+192587,0,0,0,21
+192588,0,0,0,21
+192589,0,0,0,21
+192590,0,0,0,21
+192591,0,0,0,21
+192592,0,0,0,21
+192593,0,0,0,21
+192594,0,0,0,21
+192595,0,0,0,21
+192596,0,368689.9386,0,21
+192597,0,0,0,21
+192598,0,0,0,21
+192599,0,0,0,21
+192600,0,0,0,21
+192601,0,0,0,21
+192602,0,0,0,21
+192603,0,0,678058.4739,21
+192604,0,0,0,21
+192605,0,0,0,21
+192606,0,0,0,21
+192607,0,0,0,21
+192608,0,0,0,21
+192609,0,0,0,21
+192610,0,0,0,21
+192611,0,0,0,21
+192612,0,0,0,21
+192613,0,0,0,21
+192614,0,0,0,21
+192615,0,0,0,21
+192616,0,0,0,21
+192617,0,0,0,21
+192618,0,0,0,21
+192619,335556.1014,0,0,21
+192620,0,0,0,21
+192621,0,0,0,21
+192622,0,0,0,21
+192623,0,0,0,21
+192624,0,0,0,21
+192625,0,0,0,21
+192626,0,0,0,21
+192627,0,0,0,21
+192628,0,0,0,21
+192629,0,0,0,21
+192630,0,0,0,21
+192631,0,0,0,21
+192632,0,0,0,21
+192633,0,368689.9378,0,21
+192634,0,0,0,21
+192635,0,0,0,21
+192636,0,0,0,21
+192637,0,0,0,21
+192638,0,0,0,21
+192639,0,0,674699.7646,21
+192640,0,0,0,21
+192641,0,0,0,21
+192642,0,0,0,21
+192643,0,0,0,21
+192644,0,0,0,21
+192645,0,0,0,21
+192646,0,0,0,21
+192647,0,0,0,21
+192648,0,0,0,21
+192649,0,0,0,21
+192650,0,0,0,21
+192651,0,0,0,21
+192652,0,0,0,21
+192653,0,0,0,21
+192654,0,0,0,21
+192655,0,0,0,21
+192656,0,0,0,21
+192657,0,0,0,21
+192658,335665.5004,0,0,21
+192659,0,0,0,21
+192660,0,0,0,21
+192661,0,0,0,21
+192662,0,0,0,21
+192663,0,0,0,21
+192664,0,0,0,21
+192665,0,0,0,21
+192666,0,0,0,21
+192667,0,0,0,21
+192668,0,0,0,21
+192669,0,0,0,21
+192670,0,368689.938,0,21
+192671,0,0,0,21
+192672,0,0,0,21
+192673,0,0,0,21
+192674,0,0,0,21
+192675,0,0,672702.2813,21
+192676,0,0,0,21
+192677,0,0,0,21
+192678,0,0,0,21
+192679,0,0,0,21
+192680,0,0,0,21
+192681,0,0,0,21
+192682,0,0,0,21
+192683,0,0,0,21
+192684,0,0,0,21
+192685,0,0,0,21
+192686,0,0,0,21
+192687,0,0,0,21
+192688,0,0,0,21
+192689,0,0,0,21
+192690,0,0,0,21
+192691,0,0,0,21
+192692,0,0,0,21
+192693,0,0,0,21
+192694,0,0,0,21
+192695,0,0,0,21
+192696,0,0,0,21
+192697,336640.9659,0,0,21
+192698,0,0,0,21
+192699,0,0,0,21
+192700,0,0,0,21
+192701,0,0,0,21
+192702,0,0,0,21
+192703,0,0,0,21
+192704,0,0,0,21
+192705,0,0,0,21
+192706,0,0,0,21
+192707,0,368689.9385,0,21
+192708,0,0,0,21
+192709,0,0,0,21
+192710,0,0,0,21
+192711,0,0,672345.9829,21
+192712,0,0,0,21
+192713,0,0,0,21
+192714,0,0,0,21
+192715,0,0,0,21
+192716,0,0,0,21
+192717,0,0,0,21
+192718,0,0,0,21
+192719,0,0,0,21
+192720,0,0,0,21
+192721,0,0,0,21
+192722,0,0,0,21
+192723,0,0,0,21
+192724,0,0,0,21
+192725,0,0,0,21
+192726,0,0,0,21
+192727,0,0,0,21
+192728,0,0,0,21
+192729,0,0,0,21
+192730,0,0,0,21
+192731,0,0,0,21
+192732,0,0,0,21
+192733,0,0,0,21
+192734,0,0,0,21
+192735,0,0,0,21
+192736,0,0,0,21
+192737,0,0,0,21
+192738,0,0,0,21
+192739,337214.4718,0,0,21
+192740,0,0,0,21
+192741,0,0,0,21
+192742,0,0,0,21
+192743,0,0,0,21
+192744,0,0,0,21
+192745,0,0,0,21
+192746,0,368689.9372,0,21
+192747,0,0,0,21
+192748,0,0,0,21
+192749,0,0,673071.6572,21
+192750,0,0,0,21
+192751,0,0,0,21
+192752,0,0,0,21
+192753,0,0,0,21
+192754,0,0,0,21
+192755,0,0,0,21
+192756,0,0,0,21
+192757,0,0,0,21
+192758,0,0,0,21
+192759,0,0,0,21
+192760,0,0,0,21
+192761,0,0,0,21
+192762,0,0,0,21
+192763,0,0,0,21
+192764,0,0,0,21
+192765,0,0,0,21
+192766,0,0,0,21
+192767,0,0,0,21
+192768,0,0,0,21
+192769,0,0,0,21
+192770,0,0,0,21
+192771,0,0,0,21
+192772,0,0,0,21
+192773,0,0,0,21
+192774,0,0,0,21
+192775,0,0,0,21
+192776,0,0,0,21
+192777,0,0,0,21
+192778,0,0,0,21
+192779,0,0,0,21
+192780,0,0,0,21
+192781,0,0,0,21
+192782,340322.2471,0,0,21
+192783,0,0,0,21
+192784,0,0,0,21
+192785,0,368531.9614,0,21
+192786,0,0,674175.046,21
+192787,0,0,0,21
+192788,0,0,0,21
+192789,0,0,0,21
+192790,0,0,0,21
+192791,0,0,0,21
+192792,0,0,0,21
+192793,0,0,0,21
+192794,0,0,0,21
+192795,0,0,0,21
+192796,0,0,0,21
+192797,0,0,0,21
+192798,0,0,0,21
+192799,0,0,0,21
+192800,0,0,0,21
+192801,0,0,0,21
+192802,0,0,0,21
+192803,0,0,0,21
+192804,0,0,0,21
+192805,0,0,0,21
+192806,0,0,0,21
+192807,0,0,0,21
+192808,0,0,0,21
+192809,0,0,0,21
+192810,0,0,0,21
+192811,0,0,0,21
+192812,0,0,0,21
+192813,0,0,0,21
+192814,0,0,0,21
+192815,0,0,0,21
+192816,0,0,0,21
+192817,0,0,0,21
+192818,0,0,0,21
+192819,0,0,0,21
+192820,0,0,0,21
+192821,340293.2511,0,0,21
+192822,0,0,674923.1991,21
+192823,0,0,0,21
+192824,0,368509.2859,0,21
+192825,0,0,0,21
+192826,0,0,0,21
+192827,0,0,0,21
+192828,0,0,0,21
+192829,0,0,0,21
+192830,0,0,0,21
+192831,0,0,0,21
+192832,0,0,0,21
+192833,0,0,0,21
+192834,0,0,0,21
+192835,0,0,0,21
+192836,0,0,0,21
+192837,0,0,0,21
+192838,0,0,0,21
+192839,0,0,0,21
+192840,0,0,0,15.6
+192841,0,0,0,15.6
+192842,0,0,0,15.6
+192843,0,0,0,15.6
+192844,0,0,0,15.6
+192845,0,0,0,15.6
+192846,0,0,0,15.6
+192847,0,0,0,15.6
+192848,0,0,0,15.6
+192849,0,0,0,15.6
+192850,0,0,0,15.6
+192851,0,0,0,15.6
+192852,0,0,0,15.6
+192853,0,0,0,15.6
+192854,0,0,0,15.6
+192855,0,0,0,15.6
+192856,0,0,0,15.6
+192857,0,0,0,15.6
+192858,0,0,675712.0967,15.6
+192859,0,0,0,15.6
+192860,340278.5339,0,0,15.6
+192861,0,0,0,15.6
+192862,0,368439.9785,0,15.6
+192863,0,0,0,15.6
+192864,0,0,0,15.6
+192865,0,235.9247987,0,15.6
+192866,0,0,0,15.6
+192867,0,0,0,15.6
+192868,0,0,0,15.6
+192869,0,0,0,15.6
+192870,0,0,0,15.6
+192871,0,0,0,15.6
+192872,0,0,0,15.6
+192873,0,0,0,15.6
+192874,0,0,0,15.6
+192875,0,0,0,15.6
+192876,0,0,0,15.6
+192877,0,0,0,15.6
+192878,0,2.620617015,0,15.6
+192879,0,0,0,15.6
+192880,0,0,0,15.6
+192881,0,57.32404804,0,15.6
+192882,0,0,0,15.6
+192883,0,0,0,15.6
+192884,0,0,0,15.6
+192885,0,0,0,15.6
+192886,0,0,0,15.6
+192887,0,0,0,15.6
+192888,0,0,0,15.6
+192889,0,0,0,15.6
+192890,0,0,0,15.6
+192891,0,0,0,15.6
+192892,0,0,0,15.6
+192893,0,0,0,15.6
+192894,0,0,676724.0639,15.6
+192895,0,60.52728244,0,15.6
+192896,0,0,0,15.6
+192897,0,0,0,15.6
+192898,0,0,0,15.6
+192899,340275.8417,0,0,15.6
+192900,0,368417.0201,0,15.6
+192901,0,0,0,15.6
+192902,0,0,0,15.6
+192903,0,0,0,15.6
+192904,0,0,0,15.6
+192905,0,0,0,15.6
+192906,0,0,0,15.6
+192907,0,0,0,15.6
+192908,0,0,0,15.6
+192909,0,0,0,15.6
+192910,0,0,0,15.6
+192911,0,56.2148703,0,15.6
+192912,0,0,0,15.6
+192913,0,0,0,15.6
+192914,0,0,0,15.6
+192915,0,0,0,15.6
+192916,0,0,0,15.6
+192917,0,0,0,15.6
+192918,0,0,0,15.6
+192919,0,0,0,15.6
+192920,0,0,0,15.6
+192921,0,57.29455401,0,15.6
+192922,0,0,0,15.6
+192923,0,0,0,15.6
+192924,0,0,0,15.6
+192925,0,0,0,15.6
+192926,0,0,0,15.6
+192927,0,0,0,15.6
+192928,0,0,0,15.6
+192929,0,0,677861.052,15.6
+192930,0,0,0,15.6
+192931,0,58.41170186,0,15.6
+192932,0,0,0,15.6
+192933,0,0,0,15.6
+192934,0,0,0,15.6
+192935,340274.9978,0,0,15.6
+192936,0,368358.8478,0,15.6
+192937,0,0,0,15.6
+192938,0,0,0,15.6
+192939,0,0,0,15.6
+192940,0,0,0,15.6
+192941,0,253.1051264,0,15.6
+192942,0,0,0,15.6
+192943,0,0,0,15.6
+192944,0,0,0,15.6
+192945,0,0,0,15.6
+192946,0,0,0,15.6
+192947,0,0,0,15.6
+192948,0,0,0,15.6
+192949,0,0,0,15.6
+192950,0,0,0,15.6
+192951,0,258.6670275,0,15.6
+192952,0,0,0,15.6
+192953,0,0,0,15.6
+192954,0,0,0,15.6
+192955,0,0,0,15.6
+192956,0,0,0,15.6
+192957,0,0,0,15.6
+192958,0,0,0,15.6
+192959,0,0,0,15.6
+192960,0,0,0,15.6
+192961,0,244.0507826,0,15.6
+192962,0,0,0,15.6
+192963,0,0,0,15.6
+192964,0,0,678504.8152,15.6
+192965,0,0,0,15.6
+192966,0,0,0,15.6
+192967,0,0,0,15.6
+192968,0,0,0,15.6
+192969,0,0,0,15.6
+192970,0,0,0,15.6
+192971,340282.9241,0,0,15.6
+192972,0,368321.315,0,15.6
+192973,0,0,0,15.6
+192974,0,3.316507203,0,15.6
+192975,0,0,0,15.6
+192976,0,7.870367009,0,15.6
+192977,0,0,0,15.6
+192978,0,0,0,15.6
+192979,0,60.67219665,0,15.6
+192980,0,0,0,15.6
+192981,0,0,0,15.6
+192982,0,0,0,15.6
+192983,0,0,0,15.6
+192984,0,0,0,15.6
+192985,0,0,0,15.6
+192986,0,0,0,15.6
+192987,0,0,0,15.6
+192988,0,64.3968531,0,15.6
+192989,0,0,0,15.6
+192990,0,0,0,15.6
+192991,0,0,0,15.6
+192992,0,3.2783067,0,15.6
+192993,0,0,0,15.6
+192994,0,0,0,15.6
+192995,0,36.17680127,0,15.6
+192996,0,0,0,15.6
+192997,0,0,0,15.6
+192998,0,0,0,15.6
+192999,0,0,678507.8992,15.6
+193000,0,0,0,15.6
+193001,0,0,0,15.6
+193002,0,0,0,15.6
+193003,0,0,0,15.6
+193004,0,7.653156871,0,15.6
+193005,0,0,0,15.6
+193006,0,69.18906187,0,15.6
+193007,340310.8869,0,0,15.6
+193008,0,368320.1281,0,15.6
+193009,0,0,0,15.6
+193010,0,0,0,15.6
+193011,0,0,0,15.6
+193012,0,0,0,15.6
+193013,0,0,0,15.6
+193014,0,0,0,15.6
+193015,0,0,0,15.6
+193016,0,0,0,15.6
+193017,0,0,0,15.6
+193018,0,0,0,15.6
+193019,0,0,0,15.6
+193020,0,0,0,15.6
+193021,0,0,0,15.6
+193022,0,0,0,15.6
+193023,0,0,0,15.6
+193024,0,0,0,15.6
+193025,0,0,0,15.6
+193026,0,0,0,15.6
+193027,0,0,0,15.6
+193028,0,0,0,15.6
+193029,0,0,0,15.6
+193030,0,0,0,15.6
+193031,0,0,0,15.6
+193032,0,0,0,15.6
+193033,0,0,0,15.6
+193034,0,0,678495.8801,15.6
+193035,0,0,0,15.6
+193036,0,0,0,15.6
+193037,0,0,0,15.6
+193038,0,0,0,15.6
+193039,0,0,0,15.6
+193040,0,0,0,15.6
+193041,0,0,0,15.6
+193042,0,0,0,15.6
+193043,340380.0295,0,0,15.6
+193044,0,368307.8136,0,15.6
+193045,0,0,0,15.6
+193046,0,0,0,15.6
+193047,0,0,0,15.6
+193048,0,0,0,15.6
+193049,0,0,0,15.6
+193050,0,0,0,15.6
+193051,0,0,0,15.6
+193052,0,0,0,15.6
+193053,0,0,0,15.6
+193054,0,0,0,15.6
+193055,0,0,0,15.6
+193056,0,0,0,15.6
+193057,0,0,0,15.6
+193058,0,0,0,15.6
+193059,0,0,0,15.6
+193060,0,0,0,15.6
+193061,0,0,0,15.6
+193062,0,0,0,15.6
+193063,0,0,0,15.6
+193064,0,0,0,15.6
+193065,0,0,0,15.6
+193066,0,0,0,15.6
+193067,0,0,0,15.6
+193068,0,0,0,15.6
+193069,0,0,678483.2826,15.6
+193070,0,0,0,15.6
+193071,0,0,0,15.6
+193072,0,0,0,15.6
+193073,0,0,0,15.6
+193074,0,0,0,15.6
+193075,0,0,0,15.6
+193076,0,0,0,15.6
+193077,0,0,0,15.6
+193078,0,0,0,15.6
+193079,335241.1947,0,0,15.6
+193080,0,368289.8177,0,15.6
+193081,0,0,0,15.6
+193082,0,0,0,15.6
+193083,0,0,0,15.6
+193084,0,0,0,15.6
+193085,0,0,0,15.6
+193086,0,0,0,15.6
+193087,0,0,0,15.6
+193088,0,0,0,15.6
+193089,0,0,0,15.6
+193090,0,0,0,15.6
+193091,0,0,0,15.6
+193092,0,0,0,15.6
+193093,0,0,0,15.6
+193094,0,0,0,15.6
+193095,0,0,0,15.6
+193096,0,0,0,15.6
+193097,0,0,0,15.6
+193098,0,0,0,15.6
+193099,0,0,0,15.6
+193100,0,0,0,15.6
+193101,0,0,0,15.6
+193102,0,3.217108168,0,15.6
+193103,0,0,0,15.6
+193104,0,0,678471.8581,15.6
+193105,0,231.3037669,0,15.6
+193106,0,0,0,15.6
+193107,0,0,0,15.6
+193108,0,0,0,15.6
+193109,0,0,0,15.6
+193110,0,0,0,15.6
+193111,0,0,0,15.6
+193112,0,0,0,15.6
+193113,0,0,0,15.6
+193114,0,0,0,15.6
+193115,340385.025,0,0,15.6
+193116,0,368289.9592,0,15.6
+193117,0,0,0,15.6
+193118,0,3.513073512,0,15.6
+193119,0,0,0,15.6
+193120,0,0,0,15.6
+193121,0,35.01644775,0,15.6
+193122,0,0,0,15.6
+193123,0,0,0,15.6
+193124,0,0,0,15.6
+193125,0,0,0,15.6
+193126,0,0,0,15.6
+193127,0,0,0,15.6
+193128,0,0,0,15.6
+193129,0,0,0,15.6
+193130,0,7.921863501,0,15.6
+193131,0,0,0,15.6
+193132,0,74.0176759,0,15.6
+193133,0,0,0,15.6
+193134,0,0,0,15.6
+193135,0,0,0,15.6
+193136,0,2.515536413,0,15.6
+193137,0,0,0,15.6
+193138,0,0,0,15.6
+193139,0,253.4227482,678461.4815,15.6
+193140,0,0,0,15.6
+193141,0,0,0,15.6
+193142,0,0,0,15.6
+193143,0,0,0,15.6
+193144,0,0,0,15.6
+193145,0,0,0,15.6
+193146,0,0,0,15.6
+193147,0,0,0,15.6
+193148,0,0,0,15.6
+193149,0,0,0,15.6
+193150,0,0,0,15.6
+193151,340312.3998,0,0,15.6
+193152,0,368290.213,0,15.6
+193153,0,0,0,15.6
+193154,0,0,0,15.6
+193155,0,0,0,15.6
+193156,0,0,0,15.6
+193157,0,0,0,15.6
+193158,0,0,0,15.6
+193159,0,0,0,15.6
+193160,0,7.305684491,0,15.6
+193161,0,0,0,15.6
+193162,0,66.72824214,0,15.6
+193163,0,0,0,15.6
+193164,0,0,0,15.6
+193165,0,0,0,15.6
+193166,0,2.421900916,0,15.6
+193167,0,0,0,15.6
+193168,0,29451.70904,0,15.6
+193169,0,5684.896104,0,15.6
+193170,0,8288.057817,0,15.6
+193171,0,13193.32413,0,15.6
+193172,0,11944.87541,0,15.6
+193173,0,11374.81296,0,15.6
+193174,0,11664.92334,678451.8771,15.6
+193175,0,11691.76437,0,15.6
+193176,0,12796.00013,0,15.6
+193177,0,12386.48911,0,15.6
+193178,0,12495.3807,0,15.6
+193179,0,12605.41618,0,15.6
+193180,0,12658.76431,0,15.6
+193181,0,12689.88157,0,15.6
+193182,0,12741.81985,0,15.6
+193183,0,12918.33246,0,15.6
+193184,0,12611.27768,0,15.6
+193185,0,12602.74551,0,15.6
+193186,0,11515.12067,0,15.6
+193187,340285.792,11296.67738,0,15.6
+193188,0,379510.4839,0,15.6
+193189,0,11157.4036,0,15.6
+193190,0,11206.92062,0,15.6
+193191,0,11115.00129,0,15.6
+193192,0,11109.65369,0,15.6
+193193,0,11100.13775,0,15.6
+193194,0,11050.92522,0,15.6
+193195,0,11075.62759,0,15.6
+193196,0,11019.37263,0,15.6
+193197,0,11022.35296,0,15.6
+193198,0,0,0,15.6
+193199,0,0,0,15.6
+193200,0,0,0,17.8
+193201,55039.29655,261421.0307,0,17.8
+193202,3794.025154,81976.34127,0,17.8
+193203,11423.51297,24034.2494,0,17.8
+193204,23983.18396,24069.23806,0,17.8
+193205,16386.42395,82385.81156,0,17.8
+193206,17743.60943,46491.61642,0,17.8
+193207,17802.68759,52357.85738,0,17.8
+193208,17786.31655,52682.38667,0,17.8
+193209,17812.74891,52506.70236,678443.291,17.8
+193210,17835.35824,52259.36288,0,17.8
+193211,17836.97928,52290.37683,0,17.8
+193212,17796.04616,52064.53928,0,17.8
+193213,17872.38152,52036.18843,0,17.8
+193214,17872.39116,52104.43281,0,17.8
+193215,17857.76632,51778.72681,0,17.8
+193216,17887.14531,48263.95635,0,17.8
+193217,17920.36903,48065.80522,0,17.8
+193218,17891.45199,47953.34229,0,17.8
+193219,17073.19336,47834.63948,0,17.8
+193220,17072.22601,47898.85258,0,17.8
+193221,17092.17752,47575.16618,0,17.8
+193222,17070.10752,47730.92566,0,17.8
+193223,357356.9653,415841.1299,0,17.8
+193224,17102.41335,47389.43806,0,17.8
+193225,17083.93658,47465.51612,0,17.8
+193226,17089.09843,47338.33812,0,17.8
+193227,17080.8685,47151.14425,0,17.8
+193228,17075.75599,47515.77473,0,17.8
+193229,17129.56269,47099.52001,0,17.8
+193230,17078.19735,47033.88717,0,17.8
+193231,0,0,0,17.8
+193232,0,0,0,17.8
+193233,0,0,0,17.8
+193234,0,81290.99687,0,17.8
+193235,0,7214.872917,0,17.8
+193236,0,60814.4272,0,17.8
+193237,0,44971.80945,0,17.8
+193238,0,45535.35401,0,17.8
+193239,0,45983.20627,0,17.8
+193240,0,46008.68776,0,17.8
+193241,0,45810.81081,0,17.8
+193242,0,45612.65466,0,17.8
+193243,0,45685.55568,0,17.8
+193244,45214.09038,45345.82175,678435.2455,17.8
+193245,6030.269711,45487.35981,0,17.8
+193246,13160.94104,45042.95682,0,17.8
+193247,21609.00734,45151.31936,0,17.8
+193248,16281.47413,44829.39188,0,17.8
+193249,17186.7196,44935.17655,0,17.8
+193250,17249.41205,44572.14153,0,17.8
+193251,17205.5202,44554.43557,0,17.8
+193252,17210.94935,44476.90073,0,17.8
+193253,17219.26122,44276.1956,0,17.8
+193254,17192.20742,44168.94618,0,17.8
+193255,17224.69439,44036.41975,0,17.8
+193256,17210.96466,43945.94376,0,17.8
+193257,17181.12441,43877.13785,0,17.8
+193258,17072.72555,411880.8255,0,17.8
+193259,357074.3973,43633.1707,0,17.8
+193260,16665.16636,43370.13648,0,20
+193261,539442.4382,984096.9474,95377.92882,20
+193262,34752.01234,186408.7626,2795.742739,20
+193263,119523.6175,189653.2837,23405.29602,20
+193264,186512.9881,257769.4889,105251.073,20
+193265,148401.6588,263645.3558,98691.91564,20
+193266,165874.7542,245908.2707,96740.83146,20
+193267,159600.231,240291.1948,96420.26719,20
+193268,160300.957,241059.4676,100814.1565,20
+193269,162039.6913,238941.4354,103154.8839,20
+193270,161494.3949,237253.1082,102628.3522,20
+193271,162098.8907,236307.0275,103642.8537,20
+193272,161815.6523,234549.2118,104444.2119,20
+193273,161332.3135,232194.5016,104928.4409,20
+193274,161399.9863,230566.4387,105542.182,20
+193275,161555.3778,228952.495,106328.5746,20
+193276,160772.3986,227124.4945,106617.9501,20
+193277,161345.5966,225386.7013,107471.9205,20
+193278,160652.5803,223642.5232,108208.7664,20
+193279,160851.5828,221658.552,108702.0342,20
+193280,160377.6753,220598.6881,109144.8472,20
+193281,160876.8347,218069.9216,109975.4928,20
+193282,160008.4506,217026.827,110434.3404,20
+193283,160381.4645,214911.2786,111229.5258,20
+193284,160266.7419,213133.1385,111500.0197,20
+193285,159848.958,211774.444,112231.5616,20
+193286,160053.6921,209731.1411,113091.2061,20
+193287,159889.7032,208360.209,113154.1459,20
+193288,159655.072,206857.0168,114245.3626,20
+193289,159808.9069,204637.3381,114588.73,20
+193290,159532.5979,223636.5422,115197.8952,20
+193291,159669.652,215380.072,115691.8285,20
+193292,159057.7671,214289.5896,116446.7085,20
+193293,158627.5818,216815.8642,117123.8225,20
+193294,158575.7381,214686.6289,117587.2156,20
+193295,157874.1339,214792.5148,117971.8565,20
+193296,157540.0851,213296.1971,118750.7139,20
+193297,157326.0173,213982.6397,119491.9576,20
+193298,155652.8533,213146.2072,119537.4938,20
+193299,154555.0789,212164.4261,120497.3076,20
+193300,154768.5599,213640.0787,121179.8723,20
+193301,153533.0582,213653.8874,121278.1528,20
+193302,153687.0226,214000.5294,120879.452,20
+193303,152523.5002,213489.4827,121251.1386,20
+193304,152520.0524,215523.9865,122596.0576,20
+193305,151642.9214,214107.2954,123769.9705,20
+193306,151069.1455,214862.7779,123319.0077,20
+193307,150989.3058,215123.6586,124332.3195,20
+193308,149701.727,214828.3039,124693.0251,20
+193309,149494.8019,215424.4544,125377.2577,20
+193310,149152.9306,214604.7719,125692.2713,20
+193311,147963.9929,216063.1028,125905.5672,20
+193312,147651.6213,214734.9823,127055.2983,20
+193313,147326.595,216415.403,127095.506,20
+193314,146296.8868,215774.2527,127472.0736,20
+193315,146022.9262,216043.2121,128306.714,20
+193316,145040.1003,216236.2111,128405.56,20
+193317,144906.5845,216610.8173,128972.5686,20
+193318,143672.0782,217253.0321,129492.3585,20
+193319,143649.9318,216066.9453,129592.877,20
+193320,142973.4375,217626.2299,130505.798,21
+193321,132396.6939,189168.3377,114807.8205,21
+193322,128984.4046,185509.4844,114301.8314,21
+193323,127587.611,596400.1441,113258.5823,21
+193324,126830.4575,183986.2506,113656.1307,21
+193325,125707.6317,184412.5102,113735.3039,21
+193326,124896.0545,183863.7891,113376.2098,21
+193327,123751.7376,182471.3812,113712.2192,21
+193328,123024.2491,183701.9602,113483.6887,21
+193329,121853.8756,183102.1845,113552.5062,21
+193330,121111.3864,182304.7397,113145.5502,21
+193331,120118.9534,182519.0595,113882.9695,21
+193332,119131.1607,182053.0445,113108.967,21
+193333,118213.4994,182245.6622,113720.6015,21
+193334,117170.1063,182029.9887,113387.7335,21
+193335,116462.0281,181777.4493,113537.7184,21
+193336,115335.0008,181366.3827,113743.0464,21
+193337,114250.2368,181375.5336,113228.9138,21
+193338,113715.2683,181685.1142,113648.6893,21
+193339,112313.6597,180475.2196,113896.6679,21
+193340,111412.5043,180753.5593,113327.8809,21
+193341,110560.6004,180540.9472,113585.6599,21
+193342,109349.2281,180466.9807,113611.6126,21
+193343,108485.4306,180722.319,113536.1593,21
+193344,107575.9401,179661.0623,113509.1415,21
+193345,106390.893,179120.0823,113651.9589,21
+193346,105153.4953,179929.2366,113559.1687,21
+193347,104710.8159,178908.9315,113731.7898,21
+193348,103002.7474,179508.8571,113132.2582,21
+193349,102465.8598,178119.8016,113841.5978,21
+193350,101199.2115,179036.0393,113386.6204,21
+193351,99698.08425,178680.7535,112983.0889,21
+193352,98669.16702,177176.1063,112714.5485,21
+193353,97948.47132,177772.1791,111851.0642,21
+193354,97188.38282,177963.2096,111567.9514,21
+193355,95734.10768,176452.7437,110639.8635,21
+193356,95581.25165,177000.9853,110468.1882,21
+193357,94002.3503,176339.0259,109437.622,21
+193358,93712.88763,175514.6842,109196.827,21
+193359,93546.88162,175863.5396,108143.1114,21
+193360,92524.02012,175406.3987,107663.0255,21
+193361,92358.48679,174888.4562,106933.7315,21
+193362,91680.43037,174053.0698,106105.7325,21
+193363,91968.31779,174139.0764,105796.5976,21
+193364,91376.74267,174039.4329,104861.4849,21
+193365,91211.93891,173396.1529,103953.4703,21
+193366,91121.09068,172782.1797,103724.9475,21
+193367,90441.1622,172960.9455,102112.9627,21
+193368,90618.94747,172366.1072,102361.267,21
+193369,90613.16236,172683.5362,101012.1011,21
+193370,89589.14615,171515.2618,100004.7072,21
+193371,90165.28514,170680.0055,99876.48134,21
+193372,89620.93339,171884.5078,98503.85946,21
+193373,89223.87286,170808.2589,98434.13261,21
+193374,89459.21744,170374.3979,96328.45273,21
+193375,88995.70336,170190.8134,97048.49878,21
+193376,88796.22554,170217.7335,95217.01094,21
+193377,88811.7009,170159.1939,94780.69542,21
+193378,88841.4339,168611.9542,93726.41401,21
+193379,88474.1448,170189.9931,92859.58038,21
+193380,88643.25958,168477.5399,92405.89576,21
+193381,27800.77948,86443.17487,12657.38807,21
+193382,25370.13958,81816.86946,10091.92697,21
+193383,24878.22056,80649.92133,9270.818277,21
+193384,24064.87964,79127.17674,8768.339805,21
+193385,23522.19395,78682.38153,8281.330684,21
+193386,23000.05849,77209.88493,7832.490169,21
+193387,22292.0108,76983.96062,7155.747614,21
+193388,21933.68014,76171.19191,6851.362883,21
+193389,21468.05858,75213.58854,6361.238355,21
+193390,21245.82006,74869.12876,5853.656982,21
+193391,20915.47551,73904.3875,5553.68981,21
+193392,20699.50639,72990.36731,5351.687377,21
+193393,20507.47185,72883.58228,5180.755083,21
+193394,20359.2151,71774.44548,4996.349774,21
+193395,20076.0076,71307.58199,4884.309367,21
+193396,19818.87544,70714.26798,4630.589586,21
+193397,19762.28344,69888.99611,4498.703433,21
+193398,19472.77263,69281.50305,4355.744265,21
+193399,19227.17674,68606.64234,4163.374582,21
+193400,19157.44795,68217.83668,3959.063347,21
+193401,18788.73499,67490.15551,3824.611485,21
+193402,18749.89989,66508.77034,3650.511848,21
+193403,18548.13957,66423.94442,3468.122216,21
+193404,18210.65489,65524.86676,3322.42564,21
+193405,18226.01558,64909.29711,3135.997762,21
+193406,17867.44137,64610.33501,2959.840671,21
+193407,17725.37529,63308.29626,2785.124495,21
+193408,17621.66054,63023.53199,2656.292424,21
+193409,17401.23157,62590.92049,2429.057227,21
+193410,17196.62821,61549.86057,2328.543224,21
+193411,17044.67134,61112.8055,2110.35117,21
+193412,16532.3044,60370.80364,2014.417443,21
+193413,16552.50426,59653.84511,1841.594251,21
+193414,16140.3503,59152.31778,1699.507051,21
+193415,15873.76433,58721.27333,1617.973949,21
+193416,15540.07393,57769.01056,1537.970234,21
+193417,15383.95421,57281.81583,1488.762691,21
+193418,14934.99464,57235.69599,1423.068316,21
+193419,14882.11471,56432.92449,1423.092403,21
+193420,14470.78855,55786.37315,1390.127211,21
+193421,14279.64727,55770.67076,1357.073357,21
+193422,13762.18593,54425.732,1340.52352,21
+193423,13875.85374,54957.69665,1307.33368,21
+193424,13119.30232,53642.94863,1290.714245,21
+193425,13416.95906,53837.68575,1257.384977,21
+193426,12954.38189,52984.74054,1223.960898,21
+193427,12686.74639,52613.42098,1207.22157,21
+193428,12361.22971,51976.9335,1190.457511,21
+193429,12236.92439,52001.8618,1139.982726,21
+193430,11847.63361,51044.65404,1139.998387,21
+193431,11613.6969,50729.3542,1089.295886,21
+193432,11294.9058,50742.03233,1089.31022,21
+193433,10973.82057,49508.28743,1038.372767,21
+193434,10673.98489,49649.61375,1038.385824,21
+193435,10546.04675,49363.02739,987.205497,21
+193436,10110.73835,48614.23482,987.2173277,21
+193437,9905.603586,48263.43419,935.7854089,21
+193438,9589.304931,47744.53681,935.796066,21
+193439,9234.482883,47002.91046,884.1029063,21
+193440,9050.707357,46870.61329,884.112443,21
+193441,8840.560991,46221.11734,832.1472489,21
+193442,8506.617145,45788.56429,814.7686575,21
+193443,8330.676393,45635.71587,797.3577458,21
+193444,8131.14626,45181.55352,744.9119307,21
+193445,7779.037417,44577.01904,744.9187526,21
+193446,7612.597147,44419.04493,692.1651395,21
+193447,7397.423223,43850.82377,674.5132188,21
+193448,7089.465375,43451.50833,656.8242826,21
+193449,6984.666467,43289.02297,603.5185372,21
+193450,6672.165979,42683.57624,585.674155,21
+193451,6360.155111,42145.52318,567.7886907,21
+193452,6294.105992,42144.55727,513.8689662,21
+193453,6137.297369,41359.40349,495.8091374,21
+193454,5710.12152,41231.10617,477.7027183,21
+193455,5807.05859,40768.91262,423.0851731,21
+193456,5428.702985,40177.73764,404.7780265,21
+193457,5403.414078,40040.44124,386.4163663,21
+193458,5284.946758,39446.0048,330.9800562,21
+193459,5021.357429,39012.45992,330.9814336,21
+193460,4995.884423,38686.07285,274.9689046,21
+193461,4730.434773,38202.23386,237.2624046,21
+193462,4609.823191,37576.22242,237.2631168,21
+193463,4463.095129,37585.9646,180.057789,21
+193464,4315.794814,36546.01874,160.7899265,21
+193465,4167.90443,36494.64111,121.8931642,21
+193466,3922.25132,35987.19927,102.2339436,21
+193467,3896.31185,35387.7943,62.37053784,21
+193468,3622.402826,34853.31179,31.80148526,21
+193469,3471.437148,34668.00666,0,21
+193470,3471.43694,33657.93784,0,21
+193471,3193.602102,33632.62704,0,21
+193472,3167.262782,32668.53386,0,21
+193473,2926.026419,32428.77278,0,21
+193474,3013.985456,31478.80305,0,21
+193475,2886.402286,31357.35206,0,21
+193476,2731.475196,30211.56129,0,21
+193477,2602.239334,30143.84912,0,21
+193478,2588.917979,29103.64569,0,21
+193479,2562.216693,28566.37363,0,21
+193480,2287.497958,28027.92262,0,21
+193481,2287.497797,27259.54593,0,21
+193482,2274.075917,26570.4365,0,21
+193483,2114.873794,25700.1481,0,21
+193484,2114.873554,25317.40501,0,21
+193485,1967.85529,24218.09417,0,21
+193486,1805.840327,23740.70628,0,21
+193487,1954.320975,22849.32256,0,21
+193488,1655.694762,22010.34501,0,21
+193489,1778.611938,21341.10007,0,21
+193490,1489.887105,20355.22671,0,21
+193491,1628.426994,19588.69084,0,21
+193492,1462.501749,18701.07963,0,21
+193493,1321.466527,17894.43443,0,21
+193494,1448.763995,17004.19862,0,21
+193495,1149.351613,15935.85429,0,21
+193496,1280.153326,15136.51974,0,21
+193497,1135.549676,14064.69305,0,21
+193498,1107.851959,13361.94546,0,21
+193499,955.985265,12049.15117,0,21
+193500,942.0887201,11218.19231,0,21
+193501,900.2029329,10275.77529,0,21
+193502,872.115663,10197.01967,0,21
+193503,872.1157108,10044.46053,0,21
+193504,843.8906741,9678.703197,0,21
+193505,815.5238093,9576.9493,0,21
+193506,815.5253824,9444.625638,0,21
+193507,787.0178223,9186.952741,0,21
+193508,772.7089165,9091.684756,0,21
+193509,758.3627621,8823.37461,0,21
+193510,743.9788125,8694.516233,0,21
+193511,729.5565285,8303.485795,0,21
+193512,700.5946396,8449.83984,0,21
+193513,700.5946686,7938.857709,0,21
+193514,671.4724198,7955.474248,0,21
+193515,671.4724226,7711.305618,0,21
+193516,642.184496,7615.025339,0,21
+193517,627.4766881,7324.344282,0,21
+193518,612.7253014,7115.426687,0,21
+193519,612.7254586,7108.108681,0,21
+193520,568.2016279,6743.188307,0,21
+193521,583.088759,6599.145637,0,21
+193522,538.2855261,6554.947136,0,21
+193523,553.2676417,6431.201185,0,21
+193524,508.173324,6277.496373,0,21
+193525,508.1733571,6401.649293,0,21
+193526,493.0408951,6093.648186,0,21
+193527,477.8560433,6262.706691,0,21
+193528,447.3236069,5924.015975,0,21
+193529,447.3236434,5953.804193,0,21
+193530,431.973239,5924.016506,0,21
+193531,401.0968784,5768.797003,0,21
+193532,401.0970692,5613.043668,0,21
+193533,369.9726741,5613.026758,0,21
+193534,369.9727,5598.038621,0,21
+193535,322.7858045,5456.759865,0,21
+193536,338.5846593,5269.786269,0,21
+193537,298.9485754,5284.879832,0,21
+193538,290.9642986,4954.357518,0,21
+193539,274.9351782,4969.514669,0,21
+193540,242.6209777,4636.592931,0,21
+193541,242.6209162,4636.593022,0,21
+193542,209.9339322,4461.501215,0,21
+193543,209.9339396,4316.340318,0,21
+193544,176.8259846,3993.419878,0,21
+193545,160.0944531,4109.062948,0,21
+193546,160.0944595,3830.892588,0,21
+193547,117.6584672,3636.66461,0,21
+193548,109.0518409,3488.054265,0,21
+193549,109.0518437,3456.964893,0,21
+193550,56.30806186,3157.324826,0,21
+193551,74.13118634,3291.978118,0,21
+193552,38.15891307,3126.094327,0,21
+193553,19.54818686,2974.966124,0,21
+193554,0,2943.585735,0,21
+193555,0,2622.686126,0,21
+193556,0,2622.686459,0,21
+193557,0,2436.902239,0,21
+193558,0,2265.685319,0,21
+193559,0,2249.774197,0,21
+193560,0,1934.953847,0,21
+193561,0,2233.777754,0,21
+193562,0,1919.010561,0,21
+193563,0,1870.943406,0,21
+193564,0,1549.410563,0,21
+193565,0,1353.101241,0,21
+193566,0,1336.909608,0,21
+193567,0,982.4532292,0,21
+193568,0,861.7827176,0,21
+193569,0,770.130863,0,21
+193570,0,737.3405668,0,21
+193571,0,704.3624109,0,21
+193572,0,704.3623364,0,21
+193573,0,671.187944,0,21
+193574,0,654.5250404,0,21
+193575,0,637.8102007,0,21
+193576,0,604.2208315,0,21
+193577,0,604.2207786,0,21
+193578,0,570.4109672,0,21
+193579,0,536.3707164,0,21
+193580,0,553.4202443,0,21
+193581,0,502.0887573,0,21
+193582,0,484.8532416,0,21
+193583,0,484.8570458,0,21
+193584,0,432.7478865,0,21
+193585,0,450.1843305,0,21
+193586,0,397.6555349,0,21
+193587,0,397.6554845,0,21
+193588,0,379.9963093,0,21
+193589,0,344.4370232,0,21
+193590,0,344.4369821,0,21
+193591,0,308.5331162,0,21
+193592,0,308.532897,0,21
+193593,0,290.4427871,0,21
+193594,0,263.1209969,0,21
+193595,0,253.9612191,0,21
+193596,0,253.9612193,0,21
+193597,0,217.0378893,0,21
+193598,0,217.037869,0,21
+193599,0,189.0188432,0,21
+193600,0,179.6105304,0,21
+193601,0,179.6105294,0,21
+193602,0,141.5912762,0,21
+193603,0,141.5912768,0,21
+193604,0,122.3204447,0,21
+193605,0,122.3204423,0,21
+193606,0,83.133147,0,21
+193607,0,83.13314166,0,21
+193608,0,83.13314041,0,21
+193609,0,42.77682239,0,21
+193610,0,42.77681978,0,21
+193611,0,32.42041838,0,21
+193612,0,11.16972561,0,21
+193613,0,0,0,21
+193614,0,0,0,21
+193615,0,0,0,21
+193616,0,0,0,21
+193617,0,0,0,21
+193618,0,0,0,21
+193619,0,0,0,21
+193620,0,0,0,21
+193621,0,0,0,21
+193622,0,344.4362479,0,21
+193623,0,290.4430824,0,21
+193624,0,253.9601672,0,21
+193625,0,272.2538917,0,21
+193626,0,253.9614234,0,21
+193627,0,272.2542587,0,21
+193628,0,253.9614218,0,21
+193629,0,235.558393,0,21
+193630,0,253.9614295,0,21
+193631,0,244.7736061,0,21
+193632,0,235.5577331,0,21
+193633,0,235.5577348,0,21
+193634,0,217.0374436,0,21
+193635,0,235.557742,0,21
+193636,0,207.7307691,0,21
+193637,0,217.0374526,0,21
+193638,0,198.3915414,0,21
+193639,0,217.0374505,0,21
+193640,0,198.391539,0,21
+193641,0,179.6101757,0,21
+193642,0,198.391544,0,21
+193643,0,179.6101798,0,21
+193644,0,179.6101819,0,21
+193645,0,179.6101839,0,21
+193646,0,160.6815213,0,21
+193647,0,179.6101881,0,21
+193648,0,151.1575352,0,21
+193649,0,160.6815263,0,21
+193650,0,141.5909949,0,21
+193651,0,160.6815296,0,21
+193652,0,141.5909975,0,21
+193653,0,131.9794753,0,21
+193654,0,141.5910001,0,21
+193655,0,131.9794776,0,21
+193656,0,122.3202073,0,21
+193657,0,131.9794799,0,21
+193658,0,122.3202092,0,21
+193659,0,112.6100014,0,21
+193660,0,122.3202113,0,21
+193661,0,102.8451387,0,21
+193662,0,112.610004,0,21
+193663,0,102.8451401,0,21
+193664,0,102.8451408,0,21
+193665,0,102.8451415,0,21
+193666,0,83.13297665,0,21
+193667,0,102.845143,0,21
+193668,0,83.13297757,0,21
+193669,0,83.13297804,0,21
+193670,0,83.13297851,0,21
+193671,0,83.13297898,0,21
+193672,0,73.17391911,0,21
+193673,0,73.17391949,0,21
+193674,0,73.17391988,0,21
+193675,0,63.13589094,0,21
+193676,0,63.13589123,0,21
+193677,0,63.13589151,0,21
+193678,0,63.1358918,0,21
+193679,0,53.00829818,0,21
+193680,0,53.00829838,0,21
+193681,0,0,0,21
+193682,0,0,0,21
+193683,0,0,0,21
+193684,0,0,0,21
+193685,0,0,0,21
+193686,0,0,0,21
+193687,0,0,0,21
+193688,0,0,0,21
+193689,0,0,0,21
+193690,0,0,0,21
+193691,0,0,0,21
+193692,0,0,0,21
+193693,0,0,0,21
+193694,0,0,0,21
+193695,0,0,0,21
+193696,0,0,0,21
+193697,0,0,0,21
+193698,0,0,0,21
+193699,0,0,0,21
+193700,0,0,0,21
+193701,0,0,0,21
+193702,0,0,0,21
+193703,0,0,0,21
+193704,0,0,0,21
+193705,0,0,0,21
+193706,0,0,0,21
+193707,0,0,0,21
+193708,0,0,0,21
+193709,0,0,0,21
+193710,0,0,0,21
+193711,0,0,0,21
+193712,0,0,0,21
+193713,0,0,0,21
+193714,0,0,0,21
+193715,0,0,0,21
+193716,0,0,0,21
+193717,0,0,0,21
+193718,0,0,0,21
+193719,0,0,0,21
+193720,0,0,0,21
+193721,0,0,0,21
+193722,0,0,0,21
+193723,0,0,0,21
+193724,0,0,0,21
+193725,0,0,0,21
+193726,0,0,0,21
+193727,0,0,0,21
+193728,0,0,0,21
+193729,0,0,0,21
+193730,0,0,0,21
+193731,0,0,0,21
+193732,0,0,0,21
+193733,0,0,0,21
+193734,0,0,0,21
+193735,0,0,0,21
+193736,0,0,0,21
+193737,0,0,0,21
+193738,0,0,0,21
+193739,0,0,0,21
+193740,0,0,0,21
+193741,0,0,0,21
+193742,0,0,0,21
+193743,0,0,0,21
+193744,0,0,0,21
+193745,0,0,0,21
+193746,0,0,0,21
+193747,0,0,0,21
+193748,0,0,0,21
+193749,0,0,0,21
+193750,0,0,0,21
+193751,0,0,0,21
+193752,0,0,0,21
+193753,0,0,0,21
+193754,0,0,0,21
+193755,0,0,0,21
+193756,0,0,0,21
+193757,0,0,0,21
+193758,0,0,0,21
+193759,0,0,0,21
+193760,0,0,0,21
+193761,0,0,0,21
+193762,0,0,0,21
+193763,0,0,0,21
+193764,0,0,0,21
+193765,0,0,0,21
+193766,0,0,0,21
+193767,0,0,0,21
+193768,0,0,0,21
+193769,0,0,0,21
+193770,0,0,0,21
+193771,0,0,0,21
+193772,0,0,0,21
+193773,0,0,0,21
+193774,0,0,0,21
+193775,0,0,0,21
+193776,0,0,0,21
+193777,0,0,0,21
+193778,0,0,0,21
+193779,0,0,0,21
+193780,0,0,0,21
+193781,0,0,0,21
+193782,0,0,0,21
+193783,0,0,0,21
+193784,0,0,0,21
+193785,0,0,0,21
+193786,0,0,0,21
+193787,0,0,0,21
+193788,0,0,0,21
+193789,0,0,0,21
+193790,0,0,0,21
+193791,0,0,0,21
+193792,0,0,0,21
+193793,0,0,0,21
+193794,0,0,0,21
+193795,0,0,0,21
+193796,0,0,0,21
+193797,0,0,0,21
+193798,0,0,0,21
+193799,0,0,0,21
+193800,0,0,0,21
+193801,0,0,0,21
+193802,0,0,0,21
+193803,0,0,0,21
+193804,0,0,0,21
+193805,0,0,0,21
+193806,0,0,0,21
+193807,0,0,0,21
+193808,0,0,0,21
+193809,0,0,0,21
+193810,0,0,0,21
+193811,0,0,0,21
+193812,0,0,0,21
+193813,0,0,0,21
+193814,0,0,0,21
+193815,0,0,0,21
+193816,0,0,0,21
+193817,0,0,0,21
+193818,0,0,0,21
+193819,0,0,0,21
+193820,0,0,0,21
+193821,0,0,0,21
+193822,0,0,0,21
+193823,0,0,0,21
+193824,0,0,0,21
+193825,0,0,0,21
+193826,0,0,0,21
+193827,0,0,0,21
+193828,0,0,0,21
+193829,0,0,0,21
+193830,0,0,0,21
+193831,0,0,0,21
+193832,0,0,0,21
+193833,0,0,0,21
+193834,0,0,0,21
+193835,0,0,0,21
+193836,0,0,0,21
+193837,0,0,0,21
+193838,0,0,0,21
+193839,0,0,0,21
+193840,0,0,0,21
+193841,0,0,0,21
+193842,0,0,0,21
+193843,0,0,0,21
+193844,0,0,0,21
+193845,0,0,0,21
+193846,0,0,0,21
+193847,0,0,0,21
+193848,0,0,0,21
+193849,0,0,0,21
+193850,0,0,0,21
+193851,0,0,0,21
+193852,0,0,0,21
+193853,0,0,0,21
+193854,0,0,0,21
+193855,0,0,0,21
+193856,0,0,0,21
+193857,0,0,0,21
+193858,0,0,0,21
+193859,0,0,0,21
+193860,0,0,0,21
+193861,0,0,0,21
+193862,0,0,0,21
+193863,0,0,0,21
+193864,0,0,0,21
+193865,0,0,0,21
+193866,0,0,0,21
+193867,0,0,0,21
+193868,0,0,0,21
+193869,0,0,0,21
+193870,0,0,0,21
+193871,0,0,0,21
+193872,0,0,0,21
+193873,0,0,0,21
+193874,0,0,0,21
+193875,0,0,0,21
+193876,0,0,0,21
+193877,0,0,0,21
+193878,0,0,0,21
+193879,0,0,0,21
+193880,0,0,0,21
+193881,0,0,0,21
+193882,0,0,0,21
+193883,0,0,0,21
+193884,0,0,0,21
+193885,0,0,0,21
+193886,0,0,0,21
+193887,0,0,0,21
+193888,0,0,0,21
+193889,0,0,0,21
+193890,0,0,0,21
+193891,0,0,0,21
+193892,0,0,0,21
+193893,0,0,0,21
+193894,0,0,0,21
+193895,0,0,0,21
+193896,0,0,0,21
+193897,0,0,0,21
+193898,0,0,0,21
+193899,0,0,0,21
+193900,0,0,0,21
+193901,0,0,0,21
+193902,0,0,0,21
+193903,0,0,0,21
+193904,0,0,0,21
+193905,0,0,0,21
+193906,0,0,0,21
+193907,0,0,0,21
+193908,0,0,0,21
+193909,0,0,0,21
+193910,0,0,0,21
+193911,0,0,0,21
+193912,0,0,0,21
+193913,0,0,0,21
+193914,0,0,0,21
+193915,0,0,0,21
+193916,0,0,0,21
+193917,0,0,0,21
+193918,0,0,0,21
+193919,0,0,0,21
+193920,0,0,0,21
+193921,0,0,0,21
+193922,0,0,0,21
+193923,0,0,0,21
+193924,0,0,0,21
+193925,0,0,0,21
+193926,0,0,0,21
+193927,0,0,0,21
+193928,0,0,0,21
+193929,0,0,0,21
+193930,0,0,0,21
+193931,0,0,0,21
+193932,0,0,0,21
+193933,0,0,0,21
+193934,0,0,0,21
+193935,0,0,0,21
+193936,0,0,0,21
+193937,0,0,0,21
+193938,0,0,0,21
+193939,0,0,0,21
+193940,0,0,0,21
+193941,0,0,0,21
+193942,0,0,0,21
+193943,0,0,0,21
+193944,0,0,0,21
+193945,0,0,0,21
+193946,0,0,0,21
+193947,0,0,0,21
+193948,0,0,0,21
+193949,0,0,0,21
+193950,0,0,0,21
+193951,0,0,0,21
+193952,0,0,0,21
+193953,0,0,0,21
+193954,0,0,0,21
+193955,0,0,0,21
+193956,0,0,0,21
+193957,0,0,0,21
+193958,0,0,0,21
+193959,0,0,0,21
+193960,0,0,0,21
+193961,0,0,0,21
+193962,0,0,0,21
+193963,0,0,0,21
+193964,0,0,0,21
+193965,0,0,0,21
+193966,0,0,0,21
+193967,0,0,0,21
+193968,0,0,0,21
+193969,0,0,0,21
+193970,0,0,0,21
+193971,0,0,0,21
+193972,0,0,0,21
+193973,0,0,0,21
+193974,0,0,0,21
+193975,0,0,0,21
+193976,0,0,0,21
+193977,0,0,0,21
+193978,0,0,0,21
+193979,0,0,0,21
+193980,0,0,0,21
+193981,0,0,0,21
+193982,0,0,0,21
+193983,0,0,0,21
+193984,0,0,0,21
+193985,0,0,0,21
+193986,0,0,0,21
+193987,0,0,0,21
+193988,0,0,0,21
+193989,0,0,0,21
+193990,0,0,0,21
+193991,0,0,0,21
+193992,0,0,0,21
+193993,0,0,0,21
+193994,0,0,0,21
+193995,0,0,0,21
+193996,0,0,0,21
+193997,0,0,0,21
+193998,0,0,0,21
+193999,0,0,0,21
+194000,0,0,0,21
+194001,0,0,0,21
+194002,0,0,0,21
+194003,0,0,0,21
+194004,0,0,0,21
+194005,0,0,0,21
+194006,0,0,0,21
+194007,0,0,0,21
+194008,0,0,0,21
+194009,0,0,0,21
+194010,0,0,0,21
+194011,0,0,0,21
+194012,0,0,0,21
+194013,0,0,0,21
+194014,0,0,0,21
+194015,0,0,0,21
+194016,0,0,0,21
+194017,0,0,0,21
+194018,0,0,0,21
+194019,0,0,0,21
+194020,0,0,0,21
+194021,0,0,0,21
+194022,0,0,0,21
+194023,0,0,0,21
+194024,0,0,0,21
+194025,0,0,0,21
+194026,0,0,0,21
+194027,0,0,0,21
+194028,0,0,0,21
+194029,0,0,0,21
+194030,0,0,0,21
+194031,0,0,0,21
+194032,0,0,0,21
+194033,0,185.6633218,0,21
+194034,0,2152.431941,0,21
+194035,441.5668933,1199.901011,0,21
+194036,1517.444162,1681.339708,0,21
+194037,1123.454214,2152.43237,0,21
+194038,1517.444023,2152.432462,0,21
+194039,1775.61371,2461.761104,0,21
+194040,1775.61379,2767.782545,0,21
+194041,2157.245,2767.782365,0,21
+194042,2408.366987,3221.268654,0,21
+194043,2408.367065,3221.268814,0,21
+194044,2780.674506,3668.788525,0,21
+194045,2903.700452,3668.788605,0,21
+194046,3026.219973,3964.122981,0,21
+194047,3390.90087,4110.942641,0,21
+194048,3390.901091,4446.637766,0,21
+194049,3751.556564,4605.426383,0,21
+194050,3870.936521,4962.028367,0,21
+194051,3989.914626,5164.243343,0,21
+194052,4344.530178,5202.41882,0,21
+194053,4344.53027,5630.954498,0,21
+194054,4579.09232,5668.608893,0,21
+194055,4928.310425,5989.290528,0,21
+194056,4812.245545,6130.397905,0,21
+194057,5274.533509,6448.166848,0,21
+194058,5274.533671,6606.308318,0,21
+194059,5503.761312,6763.968833,0,21
+194060,5731.76676,6939.152556,0,21
+194061,5845.321671,7234.163493,0,21
+194062,5958.583164,7389.995329,0,21
+194063,6296.665139,7545.390973,0,21
+194064,6408.802973,7717.977854,0,21
+194065,6408.80358,8009.034822,0,21
+194066,6854.664157,8162.758474,0,21
+194067,6854.664752,8469.062092,0,21
+194068,7076.028578,8638.791227,0,21
+194069,7186.330251,8908.289564,0,21
+194070,7406.185249,9076.863091,0,21
+194071,7515.752449,9244.879489,0,21
+194072,7734.150569,9511.88493,0,21
+194073,7951.600136,9545.735063,0,21
+194074,7951.601103,9960.834204,0,21
+194075,8383.732711,10126.53408,0,21
+194076,8276.041001,10143.22782,0,21
+194077,8598.45183,10554.63192,0,21
+194078,8705.482302,10587.7776,0,21
+194079,8812.295198,10849.53974,0,21
+194080,9131.447931,11029.37668,0,21
+194081,9131.448635,11289.49239,0,21
+194082,9448.713569,11322.1806,0,21
+194083,9448.714183,11726.62737,0,21
+194084,9659.199085,11759.05493,0,21
+194085,9868.878116,12016.52367,0,21
+194086,9973.419637,12193.19992,0,21
+194087,10077.76446,12321.2932,0,21
+194088,10389.63159,12608.73948,0,21
+194089,10389.63215,12752.02884,0,21
+194090,10634.90491,12895.03215,0,21
+194091,11013.45655,13053.5834,0,21
+194092,11049.38011,13322.35041,0,21
+194093,11202.3722,13590.12255,0,21
+194094,11542.16369,13621.52245,0,21
+194095,11566.63051,13762.82104,0,21
+194096,11794.53426,14153.99257,0,21
+194097,11928.13059,14185.10286,0,21
+194098,12146.61204,14309.8296,0,21
+194099,12279.21596,14605.0042,0,21
+194100,12496.43624,14729.05236,0,21
+194101,13189.73803,15422.61464,0,21
+194102,13403.80521,15560.47185,0,21
+194103,13731.17249,15835.70718,0,21
+194104,13874.94979,15957.81767,0,21
+194105,14086.78638,16125.00189,0,21
+194106,14312.77005,16368.12824,0,21
+194107,14440.19019,16640.47525,0,21
+194108,14762.30435,16670.39714,0,21
+194109,14776.90062,16911.87532,0,21
+194110,15208.66505,17076.96583,0,21
+194111,15223.03253,17317.23179,0,21
+194112,15555.67196,17743.89346,0,21
+194113,15651.90373,17936.03986,0,21
+194114,15998.5108,18056.15477,0,21
+194115,16208.27995,18541.9177,0,21
+194116,16450.4677,18584.61627,0,21
+194117,16591.67776,18774.28672,0,21
+194118,16917.07494,19212.63413,0,21
+194119,16958.68998,19136.43694,0,21
+194120,17385.24468,19854.10048,0,21
+194121,17430.0523,19891.31636,0,21
+194122,17645.46148,19985.31334,0,21
+194123,17894.4202,20551.7305,0,21
+194124,18125.42139,20492.86015,0,21
+194125,18563.34112,20962.36281,0,21
+194126,18800.47622,23062.91585,0,21
+194127,19028.51658,24103.75179,0,21
+194128,19071.55775,24501.41589,0,21
+194129,19482.41613,25089.17798,0,21
+194130,19525.0617,25839.78743,0,21
+194131,19812.85329,26374.88693,0,21
+194132,19983.77161,27222.92731,0,21
+194133,20157.94359,27720.91357,0,21
+194134,20241.93431,28508.66727,0,21
+194135,20604.84022,29029.72765,0,21
+194136,20680.21414,29608.62482,0,21
+194137,21036.19696,30303.61927,0,21
+194138,20922.98721,30867.48468,0,21
+194139,21490.59842,31396.17198,0,21
+194140,21352.42657,32134.63114,0,21
+194141,21661.98677,32637.16431,0,21
+194142,21763.9179,33427.76898,0,21
+194143,22188.67099,33889.40389,0,21
+194144,22023.40742,34425.82084,0,21
+194145,22434.17584,34945.7413,0,21
+194146,22608.13013,35660.92529,0,21
+194147,22691.23038,36194.87474,0,21
+194148,22864.72052,36691.63467,0,21
+194149,23095.69885,37430.97868,0,21
+194150,23120.25893,38133.00051,0,21
+194151,23525.36474,38219.26186,0,21
+194152,23530.033,39419.41574,0,21
+194153,23751.45797,39733.56414,0,21
+194154,23964.75765,40428.14434,0,21
+194155,23988.92256,40921.3261,0,21
+194156,24377.57087,41453.63575,0,21
+194157,24228.43602,42338.21002,0,21
+194158,24785.39941,42238.7035,0,21
+194159,24651.76962,43531.59682,0,21
+194160,24835.9544,43634.35783,0,21
+194161,25049.10078,44125.74559,0,21
+194162,25241.33679,45023.05046,0,21
+194163,25111.06172,45118.79876,0,21
+194164,25438.78603,46183.75347,0,21
+194165,25503.30928,46322.9989,0,21
+194166,25685.56224,46951.30144,0,21
+194167,25700.10988,47510.03002,0,21
+194168,25916.90221,48124.79659,0,21
+194169,26128.3951,48654.53034,0,21
+194170,26396.04807,49153.28984,0,21
+194171,26402.90647,49475.11972,0,21
+194172,26648.15527,50312.01705,0,21
+194173,26692.96155,50570.70134,0,21
+194174,26945.07957,51251.83046,0,21
+194175,26986.91834,51944.5861,0,21
+194176,27199.85494,52034.61838,0,21
+194177,27404.32701,52888.53567,0,21
+194178,29679.75186,53385.80807,0,21
+194179,29272.70011,53637.83198,0,21
+194180,29638.0432,54545.85831,0,21
+194181,30268.0551,54877.90563,0,21
+194182,30478.8695,55322.96211,0,21
+194183,30873.34395,56268.9377,0,21
+194184,31309.12303,56545.36231,0,21
+194185,31609.52978,57300.82526,0,21
+194186,32029.36569,57722.00411,0,21
+194187,32266.17097,58159.97613,0,21
+194188,32518.74328,59094.03639,0,21
+194189,33130.90607,59062.33262,0,21
+194190,33295.90727,60277.28538,0,21
+194191,33601.2083,60423.53446,0,21
+194192,33998.99509,61399.18464,0,21
+194193,34250.78342,65537.05802,0,21
+194194,34698.53277,63807.13937,0,21
+194195,34701.25906,65175.90695,0,21
+194196,35401.32191,66041.79979,0,21
+194197,35471.78179,66719.86386,0,21
+194198,35974.10363,67525.12618,0,21
+194199,36279.71148,68322.02363,0,21
+194200,38509.16073,68535.31506,0,21
+194201,37881.24401,69636.24283,0,21
+194202,38684.58847,70277.84844,0,21
+194203,39293.33374,71043.95106,0,21
+194204,39538.00435,488889.3599,0,21
+194205,40421.97925,72380.12065,0,21
+194206,40320.5427,72651.05547,0,21
+194207,41311.14355,73816.11807,0,21
+194208,41533.00462,73988.86106,0,21
+194209,41961.34885,74802.96399,0,21
+194210,42481.24842,75500.80047,0,21
+194211,43017.1394,75944.02216,0,21
+194212,43114.747,76557.62092,0,21
+194213,44015.10283,77425.97374,0,21
+194214,44237.57095,77630.82397,0,21
+194215,44598.82296,78625.72655,0,21
+194216,45118.29616,78750.19606,0,21
+194217,45517.64781,79855.20859,0,21
+194218,46121.46314,80024.8081,0,21
+194219,46734.98209,80633.97706,0,21
+194220,46925.80222,81567.58528,0,21
+194221,0,0,0,21
+194222,0,0,0,21
+194223,0,0,0,21
+194224,0,0,0,21
+194225,0,0,0,21
+194226,0,368431.0738,1180256.914,21
+194227,340080.7116,0,0,21
+194228,0,65.1260068,0,21
+194229,0,0,0,21
+194230,0,0,0,21
+194231,0,0,0,21
+194232,0,0,0,21
+194233,0,0,0,21
+194234,0,0,0,21
+194235,0,60.19159085,0,21
+194236,0,0,0,21
+194237,0,0,0,21
+194238,0,0,0,21
+194239,0,0,0,21
+194240,0,0,0,21
+194241,0,0,0,21
+194242,0,0,0,21
+194243,0,65.96263898,0,21
+194244,0,0,0,21
+194245,0,0,0,21
+194246,0,0,0,21
+194247,0,77.40094303,0,21
+194248,0,0,0,21
+194249,0,0,0,21
+194250,0,0,0,21
+194251,0,75.54437278,0,21
+194252,0,0,0,21
+194253,0,0,0,21
+194254,0,0,0,21
+194255,0,76.23192011,0,21
+194256,0,0,0,21
+194257,0,0,0,21
+194258,0,0,0,21
+194259,0,78.26518807,0,21
+194260,0,0,0,21
+194261,0,368437.0576,1136849.161,21
+194262,0,0,0,21
+194263,340082.8293,77.23470402,0,21
+194264,0,0,0,21
+194265,0,0,0,21
+194266,0,0,0,21
+194267,0,69.2953582,0,21
+194268,0,0,0,21
+194269,0,0,0,21
+194270,0,0,0,21
+194271,0,77.71882982,0,21
+194272,0,0,0,21
+194273,0,0,0,21
+194274,0,0,0,21
+194275,0,83.8399663,0,21
+194276,0,0,0,21
+194277,0,0,0,21
+194278,0,0,0,21
+194279,0,86.31983689,0,21
+194280,0,0,0,15.6
+194281,0,0,0,15.6
+194282,0,0,0,15.6
+194283,0,0,0,15.6
+194284,0,0,0,15.6
+194285,0,0,0,15.6
+194286,0,0,0,15.6
+194287,0,0,0,15.6
+194288,0,0,0,15.6
+194289,0,0,0,15.6
+194290,0,0,0,15.6
+194291,0,0,0,15.6
+194292,0,0,0,15.6
+194293,0,0,0,15.6
+194294,0,68.81755957,0,15.6
+194295,0,0,0,15.6
+194296,0,368431.7798,1098022.161,15.6
+194297,0,0,0,15.6
+194298,0,82.87496797,0,15.6
+194299,340084.1463,0,0,15.6
+194300,0,0,0,15.6
+194301,0,0,0,15.6
+194302,0,68.26086373,0,15.6
+194303,0,0,0,15.6
+194304,0,0,0,15.6
+194305,0,0,0,15.6
+194306,0,73.95755081,0,15.6
+194307,0,0,0,15.6
+194308,0,0,0,15.6
+194309,0,0,0,15.6
+194310,0,80.08892935,0,15.6
+194311,0,0,0,15.6
+194312,0,0,0,15.6
+194313,0,0,0,15.6
+194314,0,83.86636742,0,15.6
+194315,0,0,0,15.6
+194316,0,0,0,15.6
+194317,0,0,0,15.6
+194318,0,86.63070699,0,15.6
+194319,0,0,0,15.6
+194320,0,0,0,15.6
+194321,0,0,0,15.6
+194322,0,97.205823,0,15.6
+194323,0,0,0,15.6
+194324,0,0,0,15.6
+194325,0,0,0,15.6
+194326,0,83.41332431,0,15.6
+194327,0,0,0,15.6
+194328,0,0,0,15.6
+194329,0,0,0,15.6
+194330,0,101.1953906,0,15.6
+194331,0,368414.6856,1061133.568,15.6
+194332,0,0,0,15.6
+194333,0,0,0,15.6
+194334,0,79.61567203,0,15.6
+194335,0,0,0,15.6
+194336,340084.8478,0,0,15.6
+194337,0,0,0,15.6
+194338,0,78.81247495,0,15.6
+194339,0,0,0,15.6
+194340,0,0,0,15.6
+194341,0,0,0,15.6
+194342,0,83.29312922,0,15.6
+194343,0,0,0,15.6
+194344,0,0,0,15.6
+194345,0,0,0,15.6
+194346,0,83.91078724,0,15.6
+194347,0,0,0,15.6
+194348,0,0,0,15.6
+194349,0,0,0,15.6
+194350,0,82.39774442,0,15.6
+194351,0,0,0,15.6
+194352,0,0,0,15.6
+194353,0,0,0,15.6
+194354,0,79.63683919,0,15.6
+194355,0,0,0,15.6
+194356,0,0,0,15.6
+194357,0,0,0,15.6
+194358,0,77.6034001,0,15.6
+194359,0,0,0,15.6
+194360,0,0,0,15.6
+194361,0,0,0,15.6
+194362,0,77.43142889,0,15.6
+194363,0,0,0,15.6
+194364,0,0,0,15.6
+194365,0,0,0,15.6
+194366,0,77.81568022,1026520.352,15.6
+194367,0,368379.4243,0,15.6
+194368,0,0,0,15.6
+194369,0,0,0,15.6
+194370,0,75.04319842,0,15.6
+194371,0,0,0,15.6
+194372,0,0,0,15.6
+194373,340084.9637,0,0,15.6
+194374,0,70.01638643,0,15.6
+194375,0,0,0,15.6
+194376,0,0,0,15.6
+194377,0,0,0,15.6
+194378,0,80.658636,0,15.6
+194379,0,0,0,15.6
+194380,0,0,0,15.6
+194381,0,0,0,15.6
+194382,0,86.65321273,0,15.6
+194383,0,0,0,15.6
+194384,0,0,0,15.6
+194385,0,0,0,15.6
+194386,0,97.98479321,0,15.6
+194387,0,0,0,15.6
+194388,0,0,0,15.6
+194389,0,0,0,15.6
+194390,0,83.15646315,0,15.6
+194391,0,0,0,15.6
+194392,0,0,0,15.6
+194393,0,0,0,15.6
+194394,0,98.03556984,0,15.6
+194395,0,0,0,15.6
+194396,0,0,0,15.6
+194397,0,0,0,15.6
+194398,0,79.56764541,0,15.6
+194399,0,0,0,15.6
+194400,0,0,0,15.6
+194401,0,0,996445.2839,15.6
+194402,0,83.8744381,0,15.6
+194403,0,368342.4197,0,15.6
+194404,0,0,0,15.6
+194405,0,0,0,15.6
+194406,0,75.27323803,0,15.6
+194407,0,0,0,15.6
+194408,0,0,0,15.6
+194409,0,0,0,15.6
+194410,340079.8149,65.60602341,0,15.6
+194411,0,0,0,15.6
+194412,0,0,0,15.6
+194413,0,0,0,15.6
+194414,0,70.63163851,0,15.6
+194415,0,0,0,15.6
+194416,0,0,0,15.6
+194417,0,0,0,15.6
+194418,0,72.96095982,0,15.6
+194419,0,0,0,15.6
+194420,0,0,0,15.6
+194421,0,0,0,15.6
+194422,0,74.55750566,0,15.6
+194423,0,0,0,15.6
+194424,0,0,0,15.6
+194425,0,0,0,15.6
+194426,0,76.62922057,0,15.6
+194427,0,0,0,15.6
+194428,0,0,0,15.6
+194429,0,0,0,15.6
+194430,0,78.82396743,0,15.6
+194431,0,0,0,15.6
+194432,0,0,0,15.6
+194433,0,0,0,15.6
+194434,0,81.06878036,0,15.6
+194435,0,0,0,15.6
+194436,0,0,969195.3747,15.6
+194437,0,0,0,15.6
+194438,0,82.70121557,0,15.6
+194439,0,368352.013,0,15.6
+194440,0,0,0,15.6
+194441,0,0,0,15.6
+194442,0,79.72771695,0,15.6
+194443,0,0,0,15.6
+194444,0,0,0,15.6
+194445,0,0,0,15.6
+194446,0,74.60412166,0,15.6
+194447,340060.8956,0,0,15.6
+194448,0,0,0,15.6
+194449,0,0,0,15.6
+194450,0,82.45563154,0,15.6
+194451,0,0,0,15.6
+194452,0,0,0,15.6
+194453,0,0,0,15.6
+194454,0,84.85914019,0,15.6
+194455,0,0,0,15.6
+194456,0,0,0,15.6
+194457,0,0,0,15.6
+194458,0,83.68347174,0,15.6
+194459,0,0,0,15.6
+194460,0,0,0,15.6
+194461,0,0,0,15.6
+194462,0,96.35473942,0,15.6
+194463,0,0,0,15.6
+194464,0,0,0,15.6
+194465,0,433103.4305,0,15.6
+194466,0,0,0,15.6
+194467,0,0,0,15.6
+194468,0,0,0,15.6
+194469,0,0,0,15.6
+194470,0,0,0,15.6
+194471,0,0,943895.1505,15.6
+194472,0,0,0,15.6
+194473,0,0,0,15.6
+194474,0,0,0,15.6
+194475,0,368404.575,0,15.6
+194476,0,0,0,15.6
+194477,0,0,0,15.6
+194478,0,0,0,15.6
+194479,0,0,0,15.6
+194480,0,0,0,15.6
+194481,0,0,0,15.6
+194482,0,0,0,15.6
+194483,0,432958.9891,0,15.6
+194484,340052.6191,0,0,15.6
+194485,0,0,0,15.6
+194486,0,0,0,15.6
+194487,0,0,0,15.6
+194488,0,0,0,15.6
+194489,0,0,0,15.6
+194490,0,0,0,15.6
+194491,0,0,0,15.6
+194492,0,0,0,15.6
+194493,0,0,0,15.6
+194494,0,0,0,15.6
+194495,0,432383.4621,0,15.6
+194496,0,0,0,15.6
+194497,0,0,0,15.6
+194498,0,0,0,15.6
+194499,0,0,0,15.6
+194500,0,0,0,15.6
+194501,0,0,0,15.6
+194502,0,0,0,15.6
+194503,0,0,0,15.6
+194504,0,0,0,15.6
+194505,0,0,0,15.6
+194506,0,431993.8559,0,15.6
+194507,0,0,919701.5206,15.6
+194508,0,0,0,15.6
+194509,0,0,0,15.6
+194510,0,0,0,15.6
+194511,0,368505.874,0,15.6
+194512,0,0,0,15.6
+194513,0,0,0,15.6
+194514,0,0,0,15.6
+194515,0,0,0,15.6
+194516,0,0,0,15.6
+194517,0,0,0,15.6
+194518,0,0,0,15.6
+194519,0,0,0,15.6
+194520,0,0,0,15.6
+194521,340049.6253,0,0,15.6
+194522,0,0,0,15.6
+194523,0,0,0,15.6
+194524,0,0,0,15.6
+194525,0,0,0,15.6
+194526,0,432666.2244,0,15.6
+194527,0,0,0,15.6
+194528,0,0,0,15.6
+194529,0,0,0,15.6
+194530,0,0,0,15.6
+194531,0,0,0,15.6
+194532,0,0,0,15.6
+194533,0,0,0,15.6
+194534,0,0,0,15.6
+194535,0,0,0,15.6
+194536,0,0,0,15.6
+194537,0,0,0,15.6
+194538,0,0,0,15.6
+194539,0,0,0,15.6
+194540,0,0,0,15.6
+194541,0,0,0,15.6
+194542,0,0,0,15.6
+194543,0,0,897751.6289,15.6
+194544,0,0,0,15.6
+194545,0,0,0,15.6
+194546,0,0,0,15.6
+194547,0,801065.2475,0,15.6
+194548,0,0,0,15.6
+194549,0,0,0,15.6
+194550,0,0,0,15.6
+194551,0,0,0,15.6
+194552,0,0,0,15.6
+194553,0,0,0,15.6
+194554,0,0,0,15.6
+194555,0,0,0,15.6
+194556,0,0,0,15.6
+194557,0,0,0,15.6
+194558,0,0,0,15.6
+194559,340053.0285,0,0,15.6
+194560,0,0,0,15.6
+194561,0,0,0,15.6
+194562,0,0,0,15.6
+194563,0,0,0,15.6
+194564,0,0,0,15.6
+194565,0,0,0,15.6
+194566,0,0,0,15.6
+194567,0,0,0,15.6
+194568,0,0,0,15.6
+194569,0,0,0,15.6
+194570,0,0,0,15.6
+194571,0,0,0,15.6
+194572,0,0,0,15.6
+194573,0,0,0,15.6
+194574,0,0,0,15.6
+194575,0,0,0,15.6
+194576,0,0,0,15.6
+194577,0,0,878658.6023,15.6
+194578,0,0,0,15.6
+194579,0,0,0,15.6
+194580,0,0,0,15.6
+194581,0,233.025789,0,15.6
+194582,0,0,0,15.6
+194583,0,368528.9642,0,15.6
+194584,0,0,0,15.6
+194585,0,0,0,15.6
+194586,0,0,0,15.6
+194587,0,0,0,15.6
+194588,0,0,0,15.6
+194589,0,0,0,15.6
+194590,0,0,0,15.6
+194591,0,0,0,15.6
+194592,0,0,0,15.6
+194593,0,0,0,15.6
+194594,0,247.9490889,0,15.6
+194595,0,0,0,15.6
+194596,0,0,0,15.6
+194597,340051.0693,0,0,15.6
+194598,0,0,0,15.6
+194599,0,0,0,15.6
+194600,0,0,0,15.6
+194601,0,0,0,15.6
+194602,0,0,0,15.6
+194603,0,0,0,15.6
+194604,0,0,0,15.6
+194605,0,251.8996889,0,15.6
+194606,0,0,0,15.6
+194607,0,0,0,15.6
+194608,0,0,0,15.6
+194609,0,0,0,15.6
+194610,0,0,0,15.6
+194611,0,0,861143.2483,15.6
+194612,0,0,0,15.6
+194613,0,0,0,15.6
+194614,0,0,0,15.6
+194615,0,0,0,15.6
+194616,0,58.5142054,0,15.6
+194617,0,0,0,15.6
+194618,0,0,0,15.6
+194619,0,368534.1086,0,15.6
+194620,0,0,0,15.6
+194621,0,0,0,15.6
+194622,0,0,0,15.6
+194623,0,0,0,15.6
+194624,0,0,0,15.6
+194625,0,0,0,15.6
+194626,0,0,0,15.6
+194627,0,55.55157428,0,15.6
+194628,0,0,0,15.6
+194629,0,0,0,15.6
+194630,0,0,0,15.6
+194631,0,0,0,15.6
+194632,340051.16,0,0,15.6
+194633,0,0,0,15.6
+194634,0,0,0,15.6
+194635,0,0,0,15.6
+194636,0,98.53894106,0,15.6
+194637,0,0,0,15.6
+194638,0,0,0,15.6
+194639,0,0,0,15.6
+194640,0,66.83573009,0,17.8
+194641,8030.730509,114603.364,0,17.8
+194642,0,60211.89794,0,17.8
+194643,0,458733.0632,0,17.8
+194644,0,31074.41487,0,17.8
+194645,441.565856,37173.00569,844061.3218,17.8
+194646,39776.68085,33432.39946,0,17.8
+194647,13320.30298,32869.52957,0,17.8
+194648,21627.52345,32939.36824,0,17.8
+194649,21800.68199,32814.93862,0,17.8
+194650,22317.50315,32874.54656,0,17.8
+194651,22317.49723,32746.73998,0,17.8
+194652,22488.88725,32729.07499,0,17.8
+194653,31167.6596,401234.9214,0,17.8
+194654,39392.7862,32664.75881,0,17.8
+194655,33901.27586,32596.84695,0,17.8
+194656,44042.91888,32615.13008,0,17.8
+194657,42724.45674,32593.391,0,17.8
+194658,43914.76439,32467.15382,0,17.8
+194659,45628.14263,32593.42277,0,17.8
+194660,46681.66432,32496.20531,0,17.8
+194661,47525.84984,32482.08297,0,17.8
+194662,48887.10501,32431.33137,0,17.8
+194663,49721.46784,32492.27272,0,17.8
+194664,50840.85625,32415.02298,0,17.8
+194665,51867.77374,32446.48598,0,17.8
+194666,52733.08562,32410.88931,0,17.8
+194667,393581.1195,32412.73303,0,17.8
+194668,54770.99719,36717.4633,0,17.8
+194669,55301.01622,467194.2207,0,17.8
+194670,56522.891,36028.95882,0,17.8
+194671,57213.05288,4428.492701,0,17.8
+194672,0,4018.947907,0,17.8
+194673,0,4207.498952,0,17.8
+194674,0,92973.65769,0,17.8
+194675,0,14406.19781,0,17.8
+194676,0,38947.62231,0,17.8
+194677,0,38661.29442,0,17.8
+194678,0,37019.91656,0,17.8
+194679,0,37002.03677,829645.8857,17.8
+194680,0,37114.61439,0,17.8
+194681,0,37142.46495,0,17.8
+194682,0,37207.99499,0,17.8
+194683,0,37290.96045,0,17.8
+194684,0,37264.73348,0,17.8
+194685,0,37773.67784,0,17.8
+194686,0,37535.86998,0,17.8
+194687,1130.907969,37776.26551,0,17.8
+194688,617.445508,406411.7396,0,17.8
+194689,730.650257,37900.14094,0,17.8
+194690,775.1416345,38069.26436,0,17.8
+194691,804.5671795,38199.98476,0,17.8
+194692,804.5670085,38149.52544,0,17.8
+194693,819.2110452,38374.02249,0,17.8
+194694,833.8101311,33144.99264,0,17.8
+194695,848.3648518,465105.5887,0,17.8
+194696,848.3646473,33212.32637,0,17.8
+194697,848.3644395,33337.01127,0,17.8
+194698,833.809336,33309.11257,0,17.8
+194699,730.6487995,33461.15847,0,17.8
+194700,730.6486405,33402.75707,0,20
+194701,845307.2382,1293377.995,0,20
+194702,49620.04658,324331.5943,0,20
+194703,117816.1907,120284.5251,0,20
+194704,174414.9407,341664.2702,0,20
+194705,156391.4031,290444.5765,0,20
+194706,150591.3386,285359.603,0,20
+194707,153362.515,277890.8286,0,20
+194708,152773.3768,278810.8568,0,20
+194709,152994.5162,279002.779,0,20
+194710,152621.434,277575.3754,1603.420972,20
+194711,152180.9297,277007.3301,830.7944256,20
+194712,152293.3951,276444.452,13146.59421,20
+194713,151705.1395,275268.0299,6325.945075,20
+194714,151660.2521,276652.6234,8603.163688,20
+194715,151420.7713,275231.3919,9460.678409,20
+194716,151179.8745,275292.8481,9847.739764,20
+194717,151071.9635,274762.9973,10180.81529,20
+194718,150697.3534,274285.0657,10416.01535,20
+194719,150479.3341,273630.9731,10858.95686,20
+194720,150666.794,272785.9185,11004.00836,20
+194721,150291.0551,272987.3479,11540.18986,20
+194722,150046.1795,271986.1584,11587.78957,20
+194723,149943.0091,272147.7133,11996.28124,20
+194724,149892.1828,270945.1908,12278.72433,20
+194725,149500.0228,271221.2115,12546.80594,20
+194726,149965.6418,270380.4418,12732.2511,20
+194727,149335.0951,270379.254,13233.25467,20
+194728,149236.7272,269342.7302,13279.04735,20
+194729,149261.5198,269766.2004,13574.10872,20
+194730,149007.2974,268810.5417,13824.58299,20
+194731,148199.9415,268140.6116,14132.06773,20
+194732,147215.0362,268152.2357,14525.22814,20
+194733,146837.5298,266870.1055,14786.36171,20
+194734,146244.743,266708.5566,14938.89666,20
+194735,145468.2898,266220.0799,15703.82697,20
+194736,145233.9356,265118.8592,15683.00009,20
+194737,144392.9671,264912.9152,16368.12199,20
+194738,143852.6831,263390.6414,16611.40611,20
+194739,143147.3237,261935.1734,16952.35708,20
+194740,142425.2551,261915.6817,17204.17982,20
+194741,142216.9552,260546.1591,17469.29014,20
+194742,141097.2964,261103.1837,17393.71564,20
+194743,139478.7179,258946.6302,10767.51506,20
+194744,138165.2761,259418.2869,9384.81063,20
+194745,137673.1543,258129.5169,8920.98843,20
+194746,136979.9697,257695.0576,8334.079587,20
+194747,135930.7491,257006.8112,8534.470664,20
+194748,135603.3055,256120.8009,8599.19547,20
+194749,134390.4367,255555.9753,7710.981866,20
+194750,133913.9458,254959.0633,7326.690897,20
+194751,133916.669,254293.9218,6811.397674,20
+194752,133359.7286,253515.9584,6512.458363,20
+194753,132414.9701,252458.8168,5705.972051,20
+194754,131659.2384,252602.618,5389.509667,20
+194755,131346.7275,251599.2123,5049.482433,20
+194756,130114.7388,250546.7803,5306.557064,20
+194757,129698.0436,250027.6517,5376.522463,20
+194758,129382.6526,249554.507,5492.795893,20
+194759,127693.6955,248433.2262,5702.66712,20
+194760,127856.2148,248217.5642,5674.594078,21
+194761,116428.6778,331708.3645,3004.758606,21
+194762,115085.0821,330343.9235,2738.612474,21
+194763,113307.9695,330471.6957,2844.692817,21
+194764,112935.5845,330297.7576,2860.258069,21
+194765,111369.1267,329949.0491,2885.141037,21
+194766,110623.8268,330496.9632,2859.107008,21
+194767,109489.7621,329917.9412,3044.379068,21
+194768,108653.307,329745.5057,3006.061932,21
+194769,107302.2491,329822.1509,3044.774148,21
+194770,106608.0758,330197.9684,3044.972837,21
+194771,105206.953,327932.1268,3203.160829,21
+194772,104666.3809,327852.1416,3045.380525,21
+194773,103381.1704,327561.8596,3203.589404,21
+194774,102304.1884,327561.3386,3347.157733,21
+194775,101441.6441,327274.2809,3059.847987,21
+194776,100293.3125,327395.4768,3373.694183,21
+194777,99229.19507,327345.2592,3349.403009,21
+194778,98169.35309,326794.2656,3216.989012,21
+194779,97399.65531,327347.328,3375.961483,21
+194780,95960.72893,326243.9387,3374.654735,21
+194781,95128.45652,327129.4688,3376.448718,21
+194782,94127.21014,326870.2842,3362.881199,21
+194783,93185.58885,326437.659,3519.60783,21
+194784,91807.59362,326924.1866,3377.188891,21
+194785,90958.51442,326423.6518,3377.432367,21
+194786,89760.81639,326223.7854,3520.379423,21
+194787,88845.79406,326643.6612,3508.378929,21
+194788,87346.03248,326048.5065,3390.44834,21
+194789,85152.9247,326642.8556,3508.894839,21
+194790,83565.76223,325885.9159,3509.15725,21
+194791,82310.58274,326413.3308,3392.735349,21
+194792,81547.03569,325674.0098,3639.482446,21
+194793,80298.44203,326194.7069,3379.438809,21
+194794,79204.21035,326270.9613,3511.709233,21
+194795,78041.08563,325362.1343,3510.459673,21
+194796,77180.40573,326191.7757,3498.425232,21
+194797,76019.03184,326082.9778,3538.584623,21
+194798,74792.93675,324972.8632,3472.795761,21
+194799,74167.65391,326420.4635,3513.019632,21
+194800,72442.84212,327135.1314,3487.143954,21
+194801,72352.31986,327424.017,3643.437671,21
+194802,71809.05661,327861.6835,3357.080243,21
+194803,71520.84171,328000.0604,3605.483583,21
+194804,70964.82043,327897.4434,3488.187674,21
+194805,71036.53013,327729.2092,3477.535295,21
+194806,69972.37004,328199.4952,3488.703153,21
+194807,70259.43384,328160.8224,3437.981066,21
+194808,69570.88952,327783.0268,3464.479651,21
+194809,68904.94745,328533.181,3464.734067,21
+194810,68950.03818,328201.3345,3452.58121,21
+194811,68565.57775,328491.4676,3426.55382,21
+194812,67913.72956,328547.9667,3322.398679,21
+194813,67583.56456,328259.0912,3530.721653,21
+194814,67418.47686,329066.7522,3310.444976,21
+194815,66838.13025,328565.5998,3388.715969,21
+194816,66657.63827,328571.7121,3272.107788,21
+194817,65850.22598,329234.8324,3389.192949,21
+194818,66026.51316,328786.4979,3246.175843,21
+194819,65358.34873,329291.8033,3233.850501,21
+194820,65068.05896,329077.9614,3377.378205,21
+194821,17911.7111,243461.4904,0,21
+194822,17004.05856,236465.543,0,21
+194823,16451.65255,234314.8209,0,21
+194824,15945.43145,230812.5444,0,21
+194825,15813.31024,228256.6287,0,21
+194826,15347.3839,224924.3022,0,21
+194827,15245.14052,222897.4238,0,21
+194828,14960.85671,219436.0448,0,21
+194829,14564.01801,216319.7016,0,21
+194830,14524.17057,214109.3752,0,21
+194831,14079.91044,211050.5781,0,21
+194832,14049.44545,208006.6002,0,21
+194833,13710.14726,206830.9938,0,21
+194834,13488.4057,204368.3311,0,21
+194835,13381.03575,201523.4993,0,21
+194836,12964.14403,199249.277,0,21
+194837,12824.80248,196615.0574,0,21
+194838,12740.69229,193544.2511,0,21
+194839,12350.12719,191560.7523,0,21
+194840,12243.93382,188733.4117,0,21
+194841,12005.18066,186073.3873,0,21
+194842,11788.58343,183492.106,0,21
+194843,11644.52188,181525.0643,0,21
+194844,11317.6009,178299.5386,0,21
+194845,11153.65471,176580.54,0,21
+194846,11097.97456,173481.374,0,21
+194847,10678.21923,171216.3991,0,21
+194848,10722.55818,169128.7389,0,21
+194849,10211.27065,166335.4655,0,21
+194850,10368.62256,164547.2721,0,21
+194851,9830.14433,162057.3511,0,21
+194852,9900.040594,159133.3864,0,21
+194853,9571.998344,156206.0343,0,21
+194854,9415.235348,153407.129,0,21
+194855,9096.715366,150616.3167,0,21
+194856,9029.550784,147511.7095,0,21
+194857,8847.795161,145113.2926,0,21
+194858,8526.839879,140424.5537,0,21
+194859,8342.299024,137347.8742,0,21
+194860,8263.334888,134153.9257,0,21
+194861,7949.775465,131362.102,0,21
+194862,7753.314614,128247.2616,0,21
+194863,7544.334297,125452.0606,0,21
+194864,7472.148096,122516.4607,0,21
+194865,7039.751337,118958.9175,0,21
+194866,7073.547954,116613.2688,0,21
+194867,6624.439904,113521.7876,0,21
+194868,6695.238353,109948.5236,0,21
+194869,6206.125871,107193.0585,0,21
+194870,6145.23178,104255.4854,0,21
+194871,5940.064684,101408.4036,0,21
+194872,5734.539235,97966.66993,0,21
+194873,5526.375207,95137.15806,0,21
+194874,5318.974077,91924.75388,0,21
+194875,5121.254648,89202.38443,0,21
+194876,4885.328697,85817.70451,0,21
+194877,4710.80239,82984.50028,0,21
+194878,4485.887381,79781.81364,0,21
+194879,4267.845756,77144.71179,0,21
+194880,4072.607345,74509.09596,0,21
+194881,3886.306066,72745.06976,0,21
+194882,3657.266051,71574.35045,0,21
+194883,3503.964319,70620.82785,0,21
+194884,3170.168723,69350.30545,0,21
+194885,3102.479024,68504.53193,0,21
+194886,2930.520128,67144.52924,0,21
+194887,2616.759066,66443.47735,0,21
+194888,2603.729371,64886.74118,0,21
+194889,2314.155246,64103.55371,0,21
+194890,2314.155289,62946.53799,0,21
+194891,1993.154693,61947.40714,0,21
+194892,1856.599971,60670.84474,0,21
+194893,1524.018941,59475.44914,0,21
+194894,1379.447154,58649.1382,0,21
+194895,1352.800036,57182.7758,0,21
+194896,1174.165472,56560.77009,0,21
+194897,1147.298851,54874.34022,0,21
+194898,1147.298962,54216.62471,0,21
+194899,1106.784327,53712.27144,0,21
+194900,1093.222481,52675.73802,0,21
+194901,1079.631635,52440.07286,0,21
+194902,1052.361986,51713.65424,0,21
+194903,1038.682693,50952.29033,0,21
+194904,997.4634048,50645.1915,0,21
+194905,997.4634214,49969.81767,0,21
+194906,969.8298579,49134.37296,0,21
+194907,955.965898,48928.30852,0,21
+194908,928.141907,47960.75662,0,21
+194909,900.1875838,47581.17761,0,21
+194910,900.1876032,46738.89725,0,21
+194911,858.0058829,46522.69325,0,21
+194912,843.8768151,45371.09617,0,21
+194913,843.8768639,45514.7103,0,21
+194914,801.2777197,44559.87012,0,21
+194915,787.0060635,44187.21363,0,21
+194916,772.6976292,43329.1627,0,21
+194917,743.9683625,43423.26637,0,21
+194918,729.5465613,42059.26782,0,21
+194919,715.0858033,42120.38707,0,21
+194920,686.0451351,41412.93222,0,21
+194921,671.4640149,40688.19857,0,21
+194922,656.8414888,40404.016,0,21
+194923,627.4693793,39649.03213,0,21
+194924,612.7183847,39230.22042,0,21
+194925,583.0823151,38845.4964,0,21
+194926,583.0821644,37775.87924,0,21
+194927,553.2616668,37839.10494,0,21
+194928,523.249157,37149.53221,0,21
+194929,523.2491636,36328.61837,0,21
+194930,493.0362068,36043.58298,0,21
+194931,477.851621,35159.78848,0,21
+194932,447.3197173,34912.26847,0,21
+194933,447.3197279,34508.83412,0,21
+194934,416.5611708,33535.29484,0,21
+194935,401.0928607,33404.6986,0,21
+194936,369.9690242,32624.71489,0,21
+194937,369.9690395,445394.3542,0,21
+194938,338.5814811,31513.98464,0,21
+194939,322.7828393,31581.32765,0,21
+194940,306.9106399,30635.52909,0,21
+194941,258.8196697,29483.08897,0,21
+194942,226.3251269,28719.13576,0,21
+194943,242.6191676,28159.23908,0,21
+194944,193.4349449,27224.61141,0,21
+194945,209.9325482,26784.03555,0,21
+194946,160.0935053,26236.78548,0,21
+194947,168.4749913,25503.14336,0,21
+194948,143.2301364,24834.13676,0,21
+194949,126.2215865,24149.73263,0,21
+194950,109.0513038,23688.21644,0,21
+194951,100.399002,23061.3911,0,21
+194952,74.13085531,22186.6406,0,21
+194953,74.13085835,21770.38405,0,21
+194954,38.15876809,21214.79634,0,21
+194955,38.15877065,20277.63985,0,21
+194956,19.5481195,20084.0047,0,21
+194957,0,19834.80082,0,21
+194958,0,19808.33393,0,21
+194959,0,432705.3238,0,21
+194960,0,18594.90327,0,21
+194961,0,18054.64361,0,21
+194962,0,17362.05447,0,21
+194963,0,16908.44362,0,21
+194964,0,16477.6146,0,21
+194965,0,15708.15444,0,21
+194966,0,15448.01481,0,21
+194967,0,14705.82942,0,21
+194968,0,14195.69737,0,21
+194969,0,13791.79953,0,21
+194970,0,13222.78955,0,21
+194971,0,13079.29688,0,21
+194972,0,12801.11877,0,21
+194973,0,12465.84398,0,21
+194974,0,12511.76271,0,21
+194975,0,12053.08002,0,21
+194976,0,12038.85348,0,21
+194977,0,11601.55356,0,21
+194978,0,11600.07853,0,21
+194979,0,11279.44816,0,21
+194980,0,11048.58823,0,21
+194981,0,10923.16658,0,21
+194982,0,10627.00014,0,21
+194983,0,10487.00448,0,21
+194984,0,10169.50788,0,21
+194985,0,10023.94436,0,21
+194986,0,9840.219618,0,21
+194987,0,9599.947043,0,21
+194988,0,9372.594792,0,21
+194989,0,9130.41269,0,21
+194990,0,424145.6819,0,21
+194991,0,8700.164919,0,21
+194992,0,8465.824169,0,21
+194993,0,8343.613936,0,21
+194994,0,8169.227945,0,21
+194995,0,7742.51467,0,21
+194996,0,7830.364297,0,21
+194997,0,7312.451715,0,21
+194998,0,7337.391306,0,21
+194999,0,6993.509067,0,21
+195000,0,6911.051261,0,21
+195001,0,6899.314901,0,21
+195002,0,6842.595538,0,21
+195003,0,6560.665937,0,21
+195004,0,6375.994681,0,21
+195005,0,6133.767728,0,21
+195006,0,5937.118786,0,21
+195007,0,5852.900091,0,21
+195008,0,5524.30863,0,21
+195009,0,5425.831947,0,21
+195010,0,5238.856297,0,21
+195011,0,4877.35526,0,21
+195012,0,4949.921671,0,21
+195013,0,4585.265679,0,21
+195014,0,4394.309373,0,21
+195015,0,420487.9759,0,21
+195016,0,3963.049665,0,21
+195017,0,3850.557668,0,21
+195018,0,3701.945552,0,21
+195019,0,3671.786717,0,21
+195020,0,3372.143168,0,21
+195021,0,3357.016567,0,21
+195022,0,3326.66745,0,21
+195023,0,3023.470307,0,21
+195024,0,2839.907614,0,21
+195025,0,2992.991697,0,21
+195026,0,2499.750587,0,21
+195027,0,2655.119462,0,21
+195028,0,2312.326125,0,21
+195029,0,2312.326197,0,21
+195030,0,2123.302708,0,21
+195031,0,1948.008356,0,21
+195032,0,1948.008417,0,21
+195033,0,1689.044189,0,21
+195034,0,1657.880422,0,21
+195035,0,418484.9416,0,21
+195036,0,1377.208387,0,21
+195037,0,1221.675631,0,21
+195038,0,1174.544865,0,21
+195039,0,1190.292601,0,21
+195040,0,979.0412665,0,21
+195041,0,979.0413058,0,21
+195042,0,963.2172222,0,21
+195043,0,931.4518654,0,21
+195044,0,947.3542788,0,21
+195045,0,915.509698,0,21
+195046,0,899.5271359,0,21
+195047,0,899.5271653,0,21
+195048,0,867.4388164,0,21
+195049,0,867.4388426,0,21
+195050,0,418385.2479,0,21
+195051,0,835.1825456,0,21
+195052,0,835.1825683,0,21
+195053,0,802.7535184,0,21
+195054,0,802.7535384,0,21
+195055,0,786.4726605,0,21
+195056,0,770.1466412,0,21
+195057,0,753.7747707,0,21
+195058,0,753.7747866,0,21
+195059,0,737.356323,0,21
+195060,0,704.3764784,0,21
+195061,0,1104.287056,0,21
+195062,0,1057.594806,0,21
+195063,0,1088.758707,0,21
+195064,0,2838.570908,0,21
+195065,0,2669.850579,0,21
+195066,0,2219.260573,0,21
+195067,0,2499.999781,0,21
+195068,0,2187.951278,0,21
+195069,0,2328.920775,0,21
+195070,0,2172.241112,0,21
+195071,0,2140.707677,0,21
+195072,0,1998.351657,0,21
+195073,0,1966.741799,0,21
+195074,0,1982.565935,0,21
+195075,0,1791.077406,0,21
+195076,0,1791.077399,0,21
+195077,0,1775.174994,0,21
+195078,0,1597.50173,0,21
+195079,0,1613.44397,0,21
+195080,0,1417.464612,0,21
+195081,0,1483.790646,0,21
+195082,0,1417.464596,0,21
+195083,0,1401.4411,0,21
+195084,0,1234.427709,0,21
+195085,0,1369.269278,0,21
+195086,0,1133.408369,0,21
+195087,0,1186.106416,0,21
+195088,0,1031.050085,0,21
+195089,0,998.7079767,0,21
+195090,0,998.7079681,0,21
+195091,0,818.9899712,0,21
+195092,0,802.7535234,0,21
+195093,0,786.4726182,0,21
+195094,0,786.4726096,0,21
+195095,0,786.4726008,0,21
+195096,0,753.7746735,0,21
+195097,0,770.1465486,0,21
+195098,0,737.3561833,0,21
+195099,0,753.7746479,0,21
+195100,0,720.8903304,0,21
+195101,0,737.3561579,0,21
+195102,0,704.376306,0,21
+195103,0,720.8903053,0,21
+195104,0,687.8132639,0,21
+195105,0,687.8132559,0,21
+195106,0,687.8132478,0,21
+195107,0,671.2003092,0,21
+195108,0,671.2003012,0,21
+195109,0,654.5365271,0,21
+195110,0,637.8209393,0,21
+195111,0,654.5365112,0,21
+195112,0,621.0525017,0,21
+195113,0,637.8209162,0,21
+195114,0,604.2301377,0,21
+195115,0,621.0524791,0,21
+195116,0,587.3527029,0,21
+195117,0,587.3526959,0,21
+195118,0,587.3526888,0,21
+195119,0,570.4189807,0,21
+195120,0,570.4189738,0,21
+195121,0,179.6111008,0,21
+195122,0,160.6822371,0,21
+195123,0,160.6822344,0,21
+195124,0,122.3205894,0,21
+195125,0,141.5915271,0,21
+195126,0,122.3205864,0,21
+195127,0,102.8453928,0,21
+195128,0,102.8453917,0,21
+195129,0,83.13313111,0,21
+195130,0,83.1331304,0,21
+195131,0,73.17402857,0,21
+195132,0,53.00834777,0,21
+195133,0,53.00834748,0,21
+195134,0,42.77676463,0,21
+195135,0,21.90587127,0,21
+195136,0,21.90587121,0,21
+195137,0,0,0,21
+195138,0,11.16970224,0,21
+195139,0,0,0,21
+195140,0,0,0,21
+195141,0,0,0,21
+195142,0,0,0,21
+195143,0,0,0,21
+195144,0,0,0,21
+195145,0,0,0,21
+195146,0,0,0,21
+195147,0,0,0,21
+195148,0,0,0,21
+195149,0,0,0,21
+195150,0,0,0,21
+195151,0,0,0,21
+195152,0,0,0,21
+195153,0,0,0,21
+195154,0,0,0,21
+195155,0,0,0,21
+195156,0,0,0,21
+195157,0,0,0,21
+195158,0,0,0,21
+195159,0,0,0,21
+195160,0,0,0,21
+195161,0,0,0,21
+195162,0,0,0,21
+195163,0,0,0,21
+195164,0,0,0,21
+195165,0,0,0,21
+195166,0,0,0,21
+195167,0,0,0,21
+195168,0,0,0,21
+195169,0,0,0,21
+195170,0,0,0,21
+195171,0,0,0,21
+195172,0,0,0,21
+195173,0,0,0,21
+195174,0,0,0,21
+195175,0,0,0,21
+195176,0,0,0,21
+195177,0,0,0,21
+195178,0,0,0,21
+195179,0,0,0,21
+195180,0,0,0,21
+195181,0,0,0,21
+195182,0,0,0,21
+195183,0,0,0,21
+195184,0,0,0,21
+195185,0,0,0,21
+195186,0,0,0,21
+195187,0,0,0,21
+195188,0,0,0,21
+195189,0,0,0,21
+195190,0,0,0,21
+195191,0,0,0,21
+195192,0,0,0,21
+195193,0,0,0,21
+195194,0,0,0,21
+195195,0,0,0,21
+195196,0,0,0,21
+195197,0,0,0,21
+195198,0,0,0,21
+195199,0,0,0,21
+195200,0,0,0,21
+195201,0,0,0,21
+195202,0,0,0,21
+195203,0,0,0,21
+195204,0,0,0,21
+195205,0,0,0,21
+195206,0,0,0,21
+195207,0,0,0,21
+195208,0,0,0,21
+195209,0,0,0,21
+195210,0,0,0,21
+195211,0,0,0,21
+195212,0,0,0,21
+195213,0,0,0,21
+195214,0,0,0,21
+195215,0,0,0,21
+195216,0,0,0,21
+195217,0,0,0,21
+195218,0,0,0,21
+195219,0,0,0,21
+195220,0,0,0,21
+195221,0,0,0,21
+195222,0,0,0,21
+195223,0,0,0,21
+195224,0,0,0,21
+195225,0,0,0,21
+195226,0,0,0,21
+195227,0,0,0,21
+195228,0,0,0,21
+195229,0,0,0,21
+195230,0,0,0,21
+195231,0,0,0,21
+195232,0,0,0,21
+195233,0,0,0,21
+195234,0,0,0,21
+195235,0,0,0,21
+195236,0,0,0,21
+195237,0,0,0,21
+195238,0,0,0,21
+195239,0,0,0,21
+195240,0,0,0,21
+195241,0,0,0,21
+195242,0,0,0,21
+195243,0,0,0,21
+195244,0,0,0,21
+195245,0,0,0,21
+195246,0,0,0,21
+195247,0,0,0,21
+195248,0,0,0,21
+195249,0,0,0,21
+195250,0,0,0,21
+195251,0,0,0,21
+195252,0,0,0,21
+195253,0,0,0,21
+195254,0,0,0,21
+195255,0,0,0,21
+195256,0,0,0,21
+195257,0,0,0,21
+195258,0,0,0,21
+195259,0,0,0,21
+195260,0,0,0,21
+195261,0,0,0,21
+195262,0,0,0,21
+195263,0,0,0,21
+195264,0,0,0,21
+195265,0,0,0,21
+195266,0,0,0,21
+195267,0,0,0,21
+195268,0,0,0,21
+195269,0,0,0,21
+195270,0,0,0,21
+195271,0,0,0,21
+195272,0,0,0,21
+195273,0,0,0,21
+195274,0,0,0,21
+195275,0,0,0,21
+195276,0,0,0,21
+195277,0,0,0,21
+195278,0,0,0,21
+195279,0,0,0,21
+195280,0,0,0,21
+195281,0,0,0,21
+195282,0,0,0,21
+195283,0,0,0,21
+195284,0,0,0,21
+195285,0,0,0,21
+195286,0,0,0,21
+195287,0,0,0,21
+195288,0,0,0,21
+195289,0,0,0,21
+195290,0,0,0,21
+195291,0,0,0,21
+195292,0,0,0,21
+195293,0,0,0,21
+195294,0,0,0,21
+195295,0,0,0,21
+195296,0,0,0,21
+195297,0,0,0,21
+195298,0,0,0,21
+195299,0,0,0,21
+195300,0,0,0,21
+195301,0,0,0,21
+195302,0,0,0,21
+195303,0,0,0,21
+195304,0,0,0,21
+195305,0,0,0,21
+195306,0,0,0,21
+195307,0,0,0,21
+195308,0,0,0,21
+195309,0,0,0,21
+195310,0,0,0,21
+195311,0,0,0,21
+195312,0,0,0,21
+195313,0,0,0,21
+195314,0,0,0,21
+195315,0,0,0,21
+195316,0,0,0,21
+195317,0,0,0,21
+195318,0,0,0,21
+195319,0,0,0,21
+195320,0,0,0,21
+195321,0,0,0,21
+195322,0,0,0,21
+195323,0,0,0,21
+195324,0,0,0,21
+195325,0,0,0,21
+195326,0,0,0,21
+195327,0,0,0,21
+195328,0,0,0,21
+195329,0,0,0,21
+195330,0,0,0,21
+195331,0,0,0,21
+195332,0,0,0,21
+195333,0,0,0,21
+195334,0,0,0,21
+195335,0,0,0,21
+195336,0,0,0,21
+195337,0,0,0,21
+195338,0,0,0,21
+195339,0,0,0,21
+195340,0,0,0,21
+195341,0,0,0,21
+195342,0,0,0,21
+195343,0,0,0,21
+195344,0,0,0,21
+195345,0,0,0,21
+195346,0,0,0,21
+195347,0,0,0,21
+195348,0,0,0,21
+195349,0,0,0,21
+195350,0,0,0,21
+195351,0,0,0,21
+195352,0,0,0,21
+195353,0,0,0,21
+195354,0,0,0,21
+195355,0,0,0,21
+195356,0,0,0,21
+195357,0,0,0,21
+195358,0,0,0,21
+195359,0,0,0,21
+195360,0,0,0,21
+195361,0,0,0,21
+195362,0,0,0,21
+195363,0,0,0,21
+195364,0,0,0,21
+195365,0,0,0,21
+195366,0,0,0,21
+195367,0,0,0,21
+195368,0,0,0,21
+195369,0,0,0,21
+195370,0,0,0,21
+195371,0,0,0,21
+195372,0,0,0,21
+195373,0,0,0,21
+195374,0,0,0,21
+195375,0,0,0,21
+195376,0,0,0,21
+195377,0,0,0,21
+195378,0,0,0,21
+195379,0,0,0,21
+195380,0,0,0,21
+195381,0,0,0,21
+195382,0,0,0,21
+195383,0,0,0,21
+195384,0,0,0,21
+195385,0,0,0,21
+195386,0,0,0,21
+195387,0,0,0,21
+195388,0,0,0,21
+195389,0,0,0,21
+195390,0,0,0,21
+195391,0,0,0,21
+195392,0,0,0,21
+195393,0,0,0,21
+195394,0,0,0,21
+195395,0,0,0,21
+195396,0,0,0,21
+195397,0,22.36434084,0,21
+195398,0,114.9426399,0,21
+195399,0,74.69665356,0,21
+195400,0,104.9779619,0,21
+195401,0,124.8510601,0,21
+195402,0,124.8510703,0,21
+195403,0,849.00681,0,21
+195404,0,1035.52796,0,21
+195405,0,1035.527968,0,21
+195406,0,1219.88022,0,21
+195407,0,1402.35757,0,21
+195408,0,1402.357577,0,21
+195409,0,1743.614796,0,21
+195410,0,1743.614798,0,21
+195411,0,1940.469267,0,21
+195412,0,1921.70294,0,21
+195413,0,2264.880084,0,21
+195414,0,2274.192289,0,21
+195415,0,2274.192283,0,21
+195416,0,2613.095659,0,21
+195417,0,2603.862224,0,21
+195418,0,2794.878522,0,21
+195419,0,2929.938803,0,21
+195420,0,2966.534234,0,21
+195421,0,6624.968712,0,21
+195422,0,7112.367335,0,21
+195423,0,7268.281414,0,21
+195424,0,7562.134299,0,21
+195425,0,7716.829863,0,21
+195426,0,7887.712905,0,21
+195427,0,8298.513165,0,21
+195428,0,8194.982156,0,21
+195429,0,8620.176961,0,21
+195430,0,8636.589109,0,21
+195431,0,9058.700392,0,21
+195432,0,9075.02349,0,21
+195433,0,9242.141627,0,21
+195434,0,9510.401082,0,21
+195435,0,9676.41113,0,21
+195436,0,9809.770086,0,21
+195437,0,10107.76447,0,21
+195438,0,10107.7645,0,21
+195439,0,10420.36305,0,21
+195440,0,10536.29449,0,21
+195441,0,10699.74703,0,21
+195442,0,10977.95728,0,21
+195443,0,10993.78986,0,21
+195444,0,11270.81076,0,21
+195445,0,11416.77008,0,21
+195446,0,11578.10449,0,21
+195447,0,11692.08543,0,21
+195448,0,11997.55757,0,21
+195449,0,11997.5576,0,21
+195450,0,12286.15914,0,21
+195451,0,12414.51723,0,21
+195452,0,12573.59311,0,21
+195453,0,12701.44412,0,21
+195454,0,13002.59664,0,21
+195455,0,13241.19708,0,21
+195456,0,13160.33312,0,21
+195457,0,13540.18911,0,21
+195458,0,13837.92592,0,21
+195459,0,13963.59072,0,21
+195460,0,14119.32494,0,21
+195461,0,14384.59465,0,21
+195462,0,14524.40516,0,21
+195463,0,14663.95665,0,21
+195464,0,14942.28952,0,21
+195465,0,15081.07436,0,21
+195466,0,15204.68984,0,21
+195467,0,15495.92229,0,21
+195468,0,15633.70812,0,21
+195469,0,15756.45102,0,21
+195470,0,16030.85855,0,21
+195471,0,16182.40855,0,21
+195472,0,16304.30016,0,21
+195473,0,16576.78732,0,21
+195474,0,16698.05363,0,21
+195475,0,16862.89755,0,21
+195476,0,17104.40464,0,21
+195477,0,17253.90229,0,21
+195478,0,17388.69881,0,21
+195479,0,17643.02769,0,21
+195480,0,17777.10539,0,21
+195481,0,17925.27132,0,21
+195482,0,18192.28256,0,21
+195483,0,18429.82949,0,21
+195484,0,18709.40791,0,21
+195485,0,18723.62674,0,21
+195486,0,18973.83319,0,21
+195487,0,19397.4054,0,21
+195488,0,19515.6005,0,21
+195489,0,19856.56097,0,21
+195490,0,19922.74037,0,21
+195491,0,20168.32664,0,21
+195492,0,20609.49677,0,21
+195493,0,20595.59221,0,21
+195494,0,21020.4416,0,21
+195495,0,21048.09689,0,21
+195496,0,21429.19892,0,21
+195497,0,21597.08201,0,21
+195498,0,21863.31012,0,21
+195499,0,22004.81869,0,21
+195500,0,22393.11546,0,21
+195501,0,22447.56983,0,21
+195502,0,22697.53203,0,21
+195503,0,22973.75915,0,21
+195504,0,23895.0323,0,21
+195505,0,23801.81244,0,21
+195506,0,23998.53922,0,21
+195507,0,24524.39877,0,21
+195508,0,24693.95143,0,21
+195509,0,25166.16094,0,21
+195510,0,25522.8519,0,21
+195511,0,25978.4825,0,21
+195512,0,26214.09125,0,21
+195513,0,26594.00143,0,21
+195514,0,26718.67335,0,21
+195515,0,27054.42779,0,21
+195516,0,27415.57693,0,21
+195517,0,27508.08177,0,21
+195518,0,27997.35312,0,21
+195519,0,28197.00717,0,21
+195520,0,28311.475,0,21
+195521,0,28857.87229,0,21
+195522,0,28912.19889,0,21
+195523,0,31819.45577,0,21
+195524,0,32639.06455,0,21
+195525,0,32793.96016,0,21
+195526,0,33743.2411,0,21
+195527,0,34708.33139,0,21
+195528,0,35136.94965,0,21
+195529,0,36102.05703,0,21
+195530,0,36724.38921,0,21
+195531,0,37409.09509,0,21
+195532,0,37986.06503,0,21
+195533,0,38736.70406,0,21
+195534,0,39526.34065,0,21
+195535,0,40240.08115,0,21
+195536,0,40746.13783,0,21
+195537,0,41547.17636,0,21
+195538,0,42208.2318,0,21
+195539,0,42939.01162,0,21
+195540,0,44032.78908,0,21
+195541,0,45678.06909,0,21
+195542,0,46774.53462,0,21
+195543,0,47492.05282,0,21
+195544,0,48052.46384,0,21
+195545,0,49041.99736,0,21
+195546,0,49111.06704,0,21
+195547,0,50352.33659,0,21
+195548,0,50637.28436,0,21
+195549,0,51367.82325,0,21
+195550,0,52145.33822,0,21
+195551,0,52423.84364,0,21
+195552,0,53402.553,0,21
+195553,0,54074.97986,0,21
+195554,0,58216.44703,0,21
+195555,0,56836.54729,0,21
+195556,0,59033.93556,0,21
+195557,0,59580.81778,0,21
+195558,0,60568.07286,0,21
+195559,0,61834.89869,0,21
+195560,0,62699.63562,0,21
+195561,0,63432.88221,0,21
+195562,0,64488.00628,0,21
+195563,0,65469.13215,0,21
+195564,0,66431.43425,0,21
+195565,0,67127.2227,0,21
+195566,0,68299.50337,0,21
+195567,0,68841.99952,0,21
+195568,0,70370.4276,0,21
+195569,0,70932.95468,0,21
+195570,0,71685.79259,0,21
+195571,0,72856.49507,0,21
+195572,0,73894.78514,0,21
+195573,0,74355.08481,0,21
+195574,0,74672.92233,0,21
+195575,0,76619.67729,0,21
+195576,0,78591.84825,0,21
+195577,0,78763.75809,0,21
+195578,0,80037.87443,0,21
+195579,0,80654.06197,0,21
+195580,0,81592.6289,0,21
+195581,0,82761.63969,0,21
+195582,0,83275.04405,0,21
+195583,0,84166.0787,0,21
+195584,0,85513.29702,0,21
+195585,0,85614.62173,0,21
+195586,0,87104.4058,0,21
+195587,0,87591.59031,0,21
+195588,0,88423.04341,0,21
+195589,0,89196.49966,0,21
+195590,0,90315.15355,0,21
+195591,0,90689.21581,0,21
+195592,0,91637.06182,0,21
+195593,0,92444.75346,0,21
+195594,0,93106.11789,0,21
+195595,0,94113.33147,0,21
+195596,0,94458.65265,0,21
+195597,0,95583.05823,0,21
+195598,0,95935.42832,0,21
+195599,0,96568.2741,0,21
+195600,0,96382.04769,0,21
+195601,0,97747.25692,0,21
+195602,0,97698.227,0,21
+195603,0,98218.12921,0,21
+195604,0,99097.9466,0,21
+195605,0,99010.18658,0,21
+195606,989.9982395,100219.3186,0,21
+195607,855.289109,100120.812,0,21
+195608,989.998273,100574.4865,0,21
+195609,1255.775979,101077.2276,0,21
+195610,1387.077462,102089.6361,0,21
+195611,1387.077496,101387.1617,0,21
+195612,1703.236832,102858.7112,0,21
+195613,2063.616273,102741.3057,0,21
+195614,1901.828711,103321.0296,0,21
+195615,2317.329164,103720.8434,0,21
+195616,2334.060693,104195.2753,0,21
+195617,2493.037257,104736.1189,0,21
+195618,2742.949391,104669.5339,0,21
+195619,2791.837301,105246.8827,0,21
+195620,3039.48122,106050.9508,0,21
+195621,3055.594252,105491.636,0,21
+195622,3333.115625,107303.758,0,21
+195623,3908.525902,107163.8389,0,21
+195624,4731.275549,107601.3457,0,21
+195625,4729.00657,107822.7803,0,21
+195626,5005.312753,107509.0672,0,21
+195627,5407.457776,107393.9803,0,21
+195628,5671.952516,107563.6328,0,21
+195629,5935.119986,107994.8986,0,21
+195630,6442.449107,107760.2976,0,21
+195631,6354.397111,108369.4082,0,21
+195632,6975.786444,108606.701,0,21
+195633,7100.615315,109500.7997,0,21
+195634,7387.543146,109173.8666,0,21
+195635,7628.289503,110390.5439,0,21
+195636,7999.514048,110151.1874,0,21
+195637,8273.940317,110829.3529,0,21
+195638,8404.845658,111088.7304,0,21
+195639,9039.292654,111732.9327,0,21
+195640,9144.265559,111999.8421,0,21
+195641,9422.48641,112734.9714,0,21
+195642,9794.577861,112581.9133,0,21
+195643,9968.305946,113358.3222,0,21
+195644,10348.39832,114089.9397,0,21
+195645,10605.76648,113966.8291,0,21
+195646,10888.07157,114676.3839,0,21
+195647,11137.54882,115294.4114,0,21
+195648,11409.98591,115335.1044,0,21
+195649,11782.23641,116139.496,0,21
+195650,11943.09614,116219.0498,0,21
+195651,12191.19178,116792.5777,0,21
+195652,12574.50133,117506.6689,0,21
+195653,12719.67873,118319.6345,0,21
+195654,13072.69512,118652.9901,0,21
+195655,13353.24271,118908.7674,0,21
+195656,13610.4588,119779.4521,0,21
+195657,13741.33662,120348.169,0,21
+195658,14230.77436,120740.208,0,21
+195659,14261.43608,122084.9051,0,21
+195660,14720.6634,122102.2764,0,21
+195661,0,0,0,21
+195662,0,0,0,21
+195663,0,0,0,21
+195664,0,0,0,21
+195665,0,0,849419.2131,21
+195666,338660.4987,368998.7222,0,21
+195667,0,0,0,21
+195668,0,0,0,21
+195669,0,0,0,21
+195670,0,0,0,21
+195671,0,0,0,21
+195672,0,0,0,21
+195673,0,0,0,21
+195674,0,0,0,21
+195675,0,0,0,21
+195676,0,0,0,21
+195677,0,0,0,21
+195678,0,0,0,21
+195679,0,0,0,21
+195680,0,0,0,21
+195681,0,0,0,21
+195682,0,0,0,21
+195683,0,433687.2152,0,21
+195684,0,0,0,21
+195685,0,0,0,21
+195686,0,0,0,21
+195687,0,0,0,21
+195688,0,0,0,21
+195689,0,0,0,21
+195690,0,0,0,21
+195691,0,0,0,21
+195692,0,0,0,21
+195693,0,0,0,21
+195694,0,433003.3812,0,21
+195695,0,0,0,21
+195696,0,0,0,21
+195697,0,0,0,21
+195698,0,0,0,21
+195699,0,0,833704.598,21
+195700,0,0,0,21
+195701,339700.6872,368973.6025,0,21
+195702,0,0,0,21
+195703,0,0,0,21
+195704,0,0,0,21
+195705,0,432808.9089,0,21
+195706,0,0,0,21
+195707,0,0,0,21
+195708,0,0,0,21
+195709,0,0,0,21
+195710,0,0,0,21
+195711,0,0,0,21
+195712,0,0,0,21
+195713,0,0,0,21
+195714,0,0,0,21
+195715,0,0,0,21
+195716,0,432737.1934,0,21
+195717,0,0,0,21
+195718,0,0,0,21
+195719,0,0,0,21
+195720,0,0,0,15.6
+195721,0,0,0,15.6
+195722,0,0,0,15.6
+195723,0,0,0,15.6
+195724,0,0,0,15.6
+195725,0,0,0,15.6
+195726,0,0,0,15.6
+195727,0,432516.439,0,15.6
+195728,0,0,0,15.6
+195729,0,0,0,15.6
+195730,0,0,0,15.6
+195731,0,0,0,15.6
+195732,0,0,0,15.6
+195733,0,0,0,15.6
+195734,0,0,819285.6237,15.6
+195735,0,0,0,15.6
+195736,0,368940.0288,0,15.6
+195737,338857.7128,0,0,15.6
+195738,0,0,0,15.6
+195739,0,0,0,15.6
+195740,0,0,0,15.6
+195741,0,0,0,15.6
+195742,0,0,0,15.6
+195743,0,0,0,15.6
+195744,0,0,0,15.6
+195745,0,0,0,15.6
+195746,0,0,0,15.6
+195747,0,0,0,15.6
+195748,0,0,0,15.6
+195749,0,0,0,15.6
+195750,0,0,0,15.6
+195751,0,0,0,15.6
+195752,0,0,0,15.6
+195753,0,0,0,15.6
+195754,0,0,0,15.6
+195755,0,70.95641258,0,15.6
+195756,0,0,0,15.6
+195757,0,0,0,15.6
+195758,0,0,0,15.6
+195759,0,68.40067912,0,15.6
+195760,0,0,0,15.6
+195761,0,0,0,15.6
+195762,0,0,0,15.6
+195763,0,77.47976199,0,15.6
+195764,0,0,0,15.6
+195765,0,0,0,15.6
+195766,0,0,0,15.6
+195767,0,81.47451427,0,15.6
+195768,0,0,0,15.6
+195769,0,0,806573.5924,15.6
+195770,0,0,0,15.6
+195771,0,368982.1434,0,15.6
+195772,0,0,0,15.6
+195773,338068.3912,0,0,15.6
+195774,0,0,0,15.6
+195775,0,81.1211831,0,15.6
+195776,0,0,0,15.6
+195777,0,0,0,15.6
+195778,0,0,0,15.6
+195779,0,79.18289458,0,15.6
+195780,0,0,0,15.6
+195781,0,0,0,15.6
+195782,0,432952.2061,0,15.6
+195783,0,0,0,15.6
+195784,0,0,0,15.6
+195785,0,0,0,15.6
+195786,0,0,0,15.6
+195787,0,0,0,15.6
+195788,0,0,0,15.6
+195789,0,0,0,15.6
+195790,0,0,0,15.6
+195791,0,0,0,15.6
+195792,0,0,0,15.6
+195793,0,432228.5306,0,15.6
+195794,0,0,0,15.6
+195795,0,0,0,15.6
+195796,0,0,0,15.6
+195797,0,0,0,15.6
+195798,0,0,0,15.6
+195799,0,0,0,15.6
+195800,0,0,0,15.6
+195801,0,0,0,15.6
+195802,0,0,0,15.6
+195803,0,0,0,15.6
+195804,0,0,795775.0741,15.6
+195805,0,0,0,15.6
+195806,0,368866.254,0,15.6
+195807,0,0,0,15.6
+195808,0,0,0,15.6
+195809,339641.9993,0,0,15.6
+195810,0,0,0,15.6
+195811,0,432717.9696,0,15.6
+195812,0,0,0,15.6
+195813,0,0,0,15.6
+195814,0,0,0,15.6
+195815,0,0,0,15.6
+195816,0,0,0,15.6
+195817,0,0,0,15.6
+195818,0,0,0,15.6
+195819,0,0,0,15.6
+195820,0,0,0,15.6
+195821,0,0,0,15.6
+195822,0,432039.4499,0,15.6
+195823,0,0,0,15.6
+195824,0,0,0,15.6
+195825,0,0,0,15.6
+195826,0,0,0,15.6
+195827,0,0,0,15.6
+195828,0,0,0,15.6
+195829,0,0,0,15.6
+195830,0,0,0,15.6
+195831,0,0,0,15.6
+195832,0,0,0,15.6
+195833,0,431885.1118,0,15.6
+195834,0,0,0,15.6
+195835,0,0,0,15.6
+195836,0,0,0,15.6
+195837,0,0,0,15.6
+195838,0,0,0,15.6
+195839,0,0,784379.3437,15.6
+195840,0,0,0,15.6
+195841,0,368839.2192,0,15.6
+195842,0,0,0,15.6
+195843,0,0,0,15.6
+195844,0,0,0,15.6
+195845,338591.6911,0,0,15.6
+195846,0,0,0,15.6
+195847,0,0,0,15.6
+195848,0,0,0,15.6
+195849,0,0,0,15.6
+195850,0,0,0,15.6
+195851,0,0,0,15.6
+195852,0,0,0,15.6
+195853,0,0,0,15.6
+195854,0,0,0,15.6
+195855,0,0,0,15.6
+195856,0,0,0,15.6
+195857,0,0,0,15.6
+195858,0,0,0,15.6
+195859,0,0,0,15.6
+195860,0,0,0,15.6
+195861,0,3.869145345,0,15.6
+195862,0,0,0,15.6
+195863,0,113.3661,0,15.6
+195864,0,0,0,15.6
+195865,0,0,0,15.6
+195866,0,0,0,15.6
+195867,0,0,0,15.6
+195868,0,60.82958701,0,15.6
+195869,0,0,0,15.6
+195870,0,0,0,15.6
+195871,0,0,0,15.6
+195872,0,0,0,15.6
+195873,0,0,0,15.6
+195874,0,0,775821.3846,15.6
+195875,0,0,0,15.6
+195876,0,0,0,15.6
+195877,0,368778.7187,0,15.6
+195878,0,0,0,15.6
+195879,0,339.594841,0,15.6
+195880,0,0,0,15.6
+195881,338208.6553,0,0,15.6
+195882,0,0,0,15.6
+195883,0,0,0,15.6
+195884,0,0,0,15.6
+195885,0,0,0,15.6
+195886,0,0,0,15.6
+195887,0,0,0,15.6
+195888,0,0,0,15.6
+195889,0,0,0,15.6
+195890,0,0,0,15.6
+195891,0,0,0,15.6
+195892,0,63.27147017,0,15.6
+195893,0,0,0,15.6
+195894,0,0,0,15.6
+195895,0,0,0,15.6
+195896,0,0,0,15.6
+195897,0,0,0,15.6
+195898,0,0,0,15.6
+195899,0,0,0,15.6
+195900,0,0,0,15.6
+195901,0,0,0,15.6
+195902,0,66.51534664,0,15.6
+195903,0,0,0,15.6
+195904,0,0,0,15.6
+195905,0,0,0,15.6
+195906,0,0,0,15.6
+195907,0,0,0,15.6
+195908,0,0,0,15.6
+195909,0,432181.231,766523.3257,15.6
+195910,0,0,0,15.6
+195911,0,0,0,15.6
+195912,0,0,0,15.6
+195913,0,368729.8397,0,15.6
+195914,0,0,0,15.6
+195915,0,0,0,15.6
+195916,0,0,0,15.6
+195917,339702.8659,0,0,15.6
+195918,0,0,0,15.6
+195919,0,0,0,15.6
+195920,0,0,0,15.6
+195921,0,0,0,15.6
+195922,0,0,0,15.6
+195923,0,0,0,15.6
+195924,0,0,0,15.6
+195925,0,0,0,15.6
+195926,0,0,0,15.6
+195927,0,0,0,15.6
+195928,0,0,0,15.6
+195929,0,0,0,15.6
+195930,0,0,0,15.6
+195931,0,0,0,15.6
+195932,0,0,0,15.6
+195933,0,0,0,15.6
+195934,0,431935.482,0,15.6
+195935,0,0,0,15.6
+195936,0,0,0,15.6
+195937,0,0,0,15.6
+195938,0,0,0,15.6
+195939,0,0,0,15.6
+195940,0,0,0,15.6
+195941,0,0,0,15.6
+195942,0,0,0,15.6
+195943,0,0,0,15.6
+195944,0,0,758985.0201,15.6
+195945,0,0,0,15.6
+195946,0,0,0,15.6
+195947,0,0,0,15.6
+195948,0,0,0,15.6
+195949,0,368703.4978,0,15.6
+195950,0,0,0,15.6
+195951,0,0,0,15.6
+195952,0,0,0,15.6
+195953,339053.5379,0,0,15.6
+195954,0,0,0,15.6
+195955,0,0,0,15.6
+195956,0,0,0,15.6
+195957,0,0,0,15.6
+195958,0,0,0,15.6
+195959,0,431713.0211,0,15.6
+195960,0,0,0,15.6
+195961,0,0,0,15.6
+195962,0,0,0,15.6
+195963,0,0,0,15.6
+195964,0,0,0,15.6
+195965,0,0,0,15.6
+195966,0,0,0,15.6
+195967,0,0,0,15.6
+195968,0,0,0,15.6
+195969,0,0,0,15.6
+195970,0,0,0,15.6
+195971,0,0,0,15.6
+195972,0,0,0,15.6
+195973,0,0,0,15.6
+195974,0,0,0,15.6
+195975,0,0,0,15.6
+195976,0,0,0,15.6
+195977,0,0,0,15.6
+195978,0,0,0,15.6
+195979,0,0,752121.1556,15.6
+195980,0,0,0,15.6
+195981,0,0,0,15.6
+195982,0,0,0,15.6
+195983,0,0,0,15.6
+195984,0,0,0,15.6
+195985,0,368678.6857,0,15.6
+195986,0,0,0,15.6
+195987,0,0,0,15.6
+195988,0,3.428116062,0,15.6
+195989,338010.5622,0,0,15.6
+195990,0,0,0,15.6
+195991,0,247.6026725,0,15.6
+195992,0,0,0,15.6
+195993,0,0,0,15.6
+195994,0,0,0,15.6
+195995,0,0,0,15.6
+195996,0,0,0,15.6
+195997,0,0,0,15.6
+195998,0,0,0,15.6
+195999,0,0,0,15.6
+196000,0,16.73371745,0,15.6
+196001,0,0,0,15.6
+196002,0,0,0,15.6
+196003,0,0,0,15.6
+196004,0,0,0,15.6
+196005,0,62.02139723,0,15.6
+196006,0,0,0,15.6
+196007,0,0,0,15.6
+196008,0,0,0,15.6
+196009,0,0,0,15.6
+196010,0,0,0,15.6
+196011,0,0,0,15.6
+196012,0,0,0,15.6
+196013,0,0,745308.9853,15.6
+196014,0,0,0,15.6
+196015,0,0,0,15.6
+196016,0,61.46250503,0,15.6
+196017,0,0,0,15.6
+196018,0,0,0,15.6
+196019,0,0,0,15.6
+196020,0,0,0,15.6
+196021,0,368655.6749,0,15.6
+196022,0,0,0,15.6
+196023,0,431455.232,0,15.6
+196024,0,0,0,15.6
+196025,0,0,0,15.6
+196026,339509.1188,0,0,15.6
+196027,0,0,0,15.6
+196028,0,0,0,15.6
+196029,0,0,0,15.6
+196030,0,0,0,15.6
+196031,0,0,0,15.6
+196032,0,0,0,15.6
+196033,0,0,0,15.6
+196034,0,0,0,15.6
+196035,0,0,0,15.6
+196036,0,0,0,15.6
+196037,0,0,0,15.6
+196038,0,0,0,15.6
+196039,0,0,0,15.6
+196040,0,0,0,15.6
+196041,0,0,0,15.6
+196042,0,0,0,15.6
+196043,0,0,0,15.6
+196044,0,0,0,15.6
+196045,0,0,0,15.6
+196046,0,0,0,15.6
+196047,0,0,739976.7273,15.6
+196048,0,431224.1216,0,15.6
+196049,0,0,0,15.6
+196050,0,0,0,15.6
+196051,0,0,0,15.6
+196052,0,0,0,15.6
+196053,0,0,0,15.6
+196054,0,0,0,15.6
+196055,0,0,0,15.6
+196056,0,0,0,15.6
+196057,0,368659.2639,0,15.6
+196058,0,0,0,15.6
+196059,0,0,0,15.6
+196060,0,0,0,15.6
+196061,340069.5051,0,0,15.6
+196062,0,0,0,15.6
+196063,0,0,0,15.6
+196064,0,0,0,15.6
+196065,0,0,0,15.6
+196066,0,0,0,15.6
+196067,0,0,0,15.6
+196068,0,0,0,15.6
+196069,0,0,0,15.6
+196070,0,0,0,15.6
+196071,0,0,0,15.6
+196072,0,0,0,15.6
+196073,0,431045.45,0,15.6
+196074,0,0,0,15.6
+196075,0,0,0,15.6
+196076,0,0,0,15.6
+196077,0,0,0,15.6
+196078,0,0,0,15.6
+196079,0,0,0,15.6
+196080,0,0,0,17.8
+196081,0,67648.15932,733975.2462,17.8
+196082,0,106866.5962,0,17.8
+196083,0,82186.57391,0,17.8
+196084,1903.526261,92852.3309,0,17.8
+196085,2030.723612,93554.05203,0,17.8
+196086,1903.526243,94650.17597,0,17.8
+196087,2283.109536,95519.48131,0,17.8
+196088,2657.117847,95971.05563,0,17.8
+196089,2657.117863,527185.6057,0,17.8
+196090,3148.242561,96622.53673,0,17.8
+196091,3148.242542,465854.6317,0,17.8
+196092,3390.893139,97448.14466,0,17.8
+196093,3631.756175,97988.33194,0,17.8
+196094,0,98515.75693,0,17.8
+196095,0,98667.92539,0,17.8
+196096,337845.2641,98810.33687,0,17.8
+196097,0,99844.17336,0,17.8
+196098,0,100002.6024,0,17.8
+196099,0,99929.73489,0,17.8
+196100,0,100948.9653,0,17.8
+196101,0,100641.0633,0,17.8
+196102,0,100983.4778,0,17.8
+196103,0,101947.1235,0,17.8
+196104,0,101404.8213,0,17.8
+196105,0,102408.6997,0,17.8
+196106,0,102474.9636,0,17.8
+196107,0,103063.8984,0,17.8
+196108,0,20317.51177,0,17.8
+196109,0,20375.16587,0,17.8
+196110,0,20412.51316,0,17.8
+196111,0,2506.704535,0,17.8
+196112,0,2296.953259,0,17.8
+196113,0,1958.210673,0,17.8
+196114,0,2266.631713,0,17.8
+196115,0,2266.631746,729222.2012,17.8
+196116,0,2388.12446,0,17.8
+196117,0,2327.184101,0,17.8
+196118,0,2357.324737,0,17.8
+196119,0,39527.25723,0,17.8
+196120,0,10833.26803,0,17.8
+196121,0,25028.5958,0,17.8
+196122,0,23582.74728,0,17.8
+196123,0,22623.43645,0,17.8
+196124,0,22894.13084,0,17.8
+196125,0,391599.7811,0,17.8
+196126,0,22907.65032,0,17.8
+196127,0,23229.98407,0,17.8
+196128,0,23064.34238,0,17.8
+196129,0,23218.93464,0,17.8
+196130,0,23205.3285,0,17.8
+196131,339010.7855,23242.06657,0,17.8
+196132,0,23448.70853,0,17.8
+196133,0,23439.95876,0,17.8
+196134,0,23482.94053,0,17.8
+196135,0,20629.43965,0,17.8
+196136,0,20578.27374,0,17.8
+196137,0,20615.93282,0,17.8
+196138,0,20615.34838,0,17.8
+196139,0,20594.47529,0,17.8
+196140,0,20670.13796,0,20
+196141,11522.59189,545766.3195,0,20
+196142,0,73530.48179,0,20
+196143,0,157466.394,0,20
+196144,1273.533922,159332.9797,0,20
+196145,52641.83268,604031.8746,0,20
+196146,49581.49137,164525.4201,0,20
+196147,39168.49305,161939.772,0,20
+196148,45543.55613,162666.6455,0,20
+196149,46256.54939,162345.8729,0,20
+196150,47063.59533,161703.8296,0,20
+196151,48546.88606,161808.0206,0,20
+196152,47586.31153,160694.7879,668.5402937,20
+196153,48118.31727,160632.0786,782.5610361,20
+196154,48169.49288,160205.1675,610.7485127,20
+196155,48533.65809,160015.3617,725.842896,20
+196156,48430.45065,159221.1215,768.4649583,20
+196157,48262.42172,158664.1556,1195.036249,20
+196158,49017.87372,158961.3267,2789.465497,20
+196159,48296.15681,157975.6958,3664.587873,20
+196160,49126.54162,157570.6672,3249.233244,20
+196161,49125.83626,157716.3853,3917.295102,20
+196162,48807.98066,156945.2192,3974.822594,20
+196163,49335.53377,156636.6575,4498.565581,20
+196164,49015.15325,156190.6778,4541.953108,20
+196165,49421.44168,156050.673,4850.558424,20
+196166,49235.75535,155527.4575,5130.070701,20
+196167,49287.67628,154995.1729,5393.863832,20
+196168,49274.18902,155227.6262,5568.154872,20
+196169,49491.77177,154034.0171,5726.619365,20
+196170,49477.38779,585450.1782,6118.490001,20
+196171,49344.12617,153478.8198,6289.860379,20
+196172,49538.36433,153500.4558,6434.360016,20
+196173,49307.11233,153119.3844,6720.344814,20
+196174,49360.4001,153009.66,6849.535921,20
+196175,49323.40521,152304.0944,7148.299752,20
+196176,49360.1575,152289.4109,7289.764004,20
+196177,49160.62554,151901.4753,7560.10776,20
+196178,49334.81597,152217.5442,7714.31137,20
+196179,48990.68046,152786.2147,7870.580569,20
+196180,49142.2042,152430.4955,8123.953199,20
+196181,48979.21892,152485.9397,7746.704302,20
+196182,49139.52345,152288.236,8015.23578,20
+196183,48612.00984,152377.892,5745.001853,20
+196184,48953.89953,151988.4627,5377.969407,20
+196185,48734.04256,152625.5017,5419.799784,20
+196186,48597.75276,151996.5421,5260.590164,20
+196187,48545.30463,152211.0942,5316.001291,20
+196188,48556.15292,152028.8004,5302.963887,20
+196189,48382.43712,152265.1883,5211.832552,20
+196190,48317.35542,152217.5277,5226.110028,20
+196191,48374.02402,152098.6079,5240.141254,20
+196192,47942.41687,152400.0181,5241.071598,20
+196193,48127.41183,152651.9893,5282.332873,20
+196194,48109.39234,152207.6256,5136.098389,20
+196195,47762.95297,583729.2792,5310.674141,20
+196196,47690.57516,152516.7178,5178.228093,20
+196197,47623.97775,152971.5936,5205.810941,20
+196198,47695.66516,152779.5475,5365.095221,20
+196199,47289.5378,153195.1103,5342.315597,20
+196200,47466.74811,153075.0298,5274.309313,21
+196201,42997.9241,182731.7779,3010.962361,21
+196202,43100.72584,180124.6344,2566.889037,21
+196203,42498.11886,179299.0196,2580.782946,21
+196204,42493.10471,177166.0436,2302.053826,21
+196205,42447.99105,176253.3478,2420.921723,21
+196206,42266.78763,174462.986,2167.6933,21
+196207,42034.78626,172894.7252,2287.578264,21
+196208,42031.33752,171716.4122,2030.65323,21
+196209,42019.67596,169777.0042,2287.828131,21
+196210,41685.48946,168876.6463,2030.877727,21
+196211,41837.79688,167114.261,2167.092597,21
+196212,41370.33819,165333.8603,2016.783234,21
+196213,41752.55253,164085.7791,2058.550025,21
+196214,40989.38026,162562.793,2002.646629,21
+196215,41516.77995,161059.1843,2058.763481,21
+196216,41148.15188,159599.8731,1890.51333,21
+196217,40932.96337,157945.5607,1891.286995,21
+196218,40915.15082,156485.8815,1961.002634,21
+196219,40888.35282,154841.2447,1773.117549,21
+196220,40666.24602,153171.6363,1876.493493,21
+196221,40599.78021,152290.3625,1759.639752,21
+196222,40455.83777,150194.3984,1758.251423,21
+196223,40603.87344,148937.8013,1731.061395,21
+196224,40060.93437,147286.2518,1759.171472,21
+196225,40194.40438,146019.5168,1744.864661,21
+196226,40197.63704,144423.3142,1744.147985,21
+196227,39798.92632,143099.9111,1731.371952,21
+196228,39943.87096,141726.8108,1744.303954,21
+196229,39555.55506,140580.4872,1729.926664,21
+196230,39724.0028,140580.1449,1730.832039,21
+196231,39532.73113,139771.7594,1730.080567,21
+196232,39480.48792,139336.8324,1715.665996,21
+196233,39316.27245,138895.762,1715.741611,21
+196234,39252.91423,138130.0681,1701.289944,21
+196235,39051.06377,137488.9912,1686.801328,21
+196236,39237.27207,137149.1739,1686.874358,21
+196237,38747.43673,136623.4593,1672.347568,21
+196238,38811.81602,136057.7028,1657.782691,21
+196239,38993.02243,135286.3292,1657.853172,21
+196240,38560.19529,134861.8107,1628.5368,21
+196241,38590.66276,134541.7576,1628.604773,21
+196242,38539.28911,133537.9096,1613.921201,21
+196243,38512.51604,133310.0994,1599.196914,21
+196244,38139.73234,132776.3361,1599.26241,21
+196245,38298.92138,131772.5594,1555.986338,21
+196246,38072.22088,131926.4436,1554.772188,21
+196247,38167.67682,130749.8853,1554.834045,21
+196248,37848.5727,130381.0121,1539.938419,21
+196249,37839.41612,130074.4569,1496.312864,21
+196250,37806.32109,129285.3852,1510.010487,21
+196251,37600.43607,128970.4488,1481.33624,21
+196252,37599.75163,128724.4795,1479.895439,21
+196253,37443.28513,128610.1898,1345.261048,21
+196254,37547.92283,128095.116,1327.788094,21
+196255,36955.72693,127592.9492,1312.14544,21
+196256,37471.51998,126809.3346,1282.76742,21
+196257,36927.60583,126754.6541,1251.085971,21
+196258,37069.36718,126194.8228,1243.147822,21
+196259,36757.14881,125343.0683,1219.130776,21
+196260,36839.07329,125901.3911,1186.784172,21
+196261,8992.009189,70109.63598,0,21
+196262,7245.041799,66968.50569,0,21
+196263,6591.009729,66607.46606,0,21
+196264,6158.663712,64843.43352,0,21
+196265,5752.851228,64544.57724,0,21
+196266,5346.608922,63344.40076,0,21
+196267,4793.599374,62868.22648,0,21
+196268,4770.712794,61667.73743,0,21
+196269,4076.984694,61486.9176,0,21
+196270,4069.694986,60319.86112,0,21
+196271,3476.809929,59509.22037,0,21
+196272,3225.225678,59213.82277,0,21
+196273,3042.191453,58232.6979,0,21
+196274,2462.426126,57438.5295,0,21
+196275,2577.903593,56998.8878,0,21
+196276,1867.488174,56046.81182,0,21
+196277,1805.348387,55492.36384,0,21
+196278,1677.171417,54675.90984,0,21
+196279,1485.977694,54106.39429,0,21
+196280,1187.785838,53402.11302,0,21
+196281,1307.264627,53004.51501,0,21
+196282,811.6464087,52903.12334,0,21
+196283,904.7181715,51607.94538,0,21
+196284,763.9434634,51548.22456,0,21
+196285,748.9610946,50558.06171,0,21
+196286,732.4187012,50172.64938,0,21
+196287,685.6482614,49344.82082,0,21
+196288,683.9482478,48496.34407,0,21
+196289,638.5488065,48192.85544,0,21
+196290,619.7533879,47020.18195,0,21
+196291,589.329235,46763.87951,0,21
+196292,572.1000697,46070.61312,0,21
+196293,539.3905292,45717.45361,0,21
+196294,506.4081147,44633.57479,0,21
+196295,490.9992056,44741.60207,0,21
+196296,454.8866556,43670.03189,0,21
+196297,433.0451834,42707.88826,0,21
+196298,405.2001817,42450.23824,0,21
+196299,379.9884501,41413.51016,0,21
+196300,369.975015,41104.54097,0,21
+196301,338.5865289,40604.6456,0,21
+196302,338.5865458,39867.56403,0,21
+196303,322.7874691,39421.8334,0,21
+196304,306.9148497,38923.60006,0,21
+196305,306.9148634,38387.83149,0,21
+196306,290.9656138,37950.2009,0,21
+196307,274.9363135,37302.15558,0,21
+196308,258.8231442,37098.01254,0,21
+196309,258.8231537,36391.6219,0,21
+196310,242.6218245,36217.86665,0,21
+196311,226.3274799,35744.65553,0,21
+196312,209.9345715,35093.89054,0,21
+196313,218.143734,34913.03513,0,21
+196314,193.4367007,34401.42573,0,21
+196315,176.8263764,33698.73156,0,21
+196316,176.8263807,33067.04747,0,21
+196317,160.0947469,32196.17101,0,21
+196318,143.2311259,31975.61447,0,21
+196319,143.2311286,31423.00611,0,21
+196320,126.2223812,30666.05291,0,21
+196321,109.05192,30830.03257,0,21
+196322,109.0519218,30902.00946,0,21
+196323,91.69806055,30628.60503,0,21
+196324,74.13117328,30686.16927,0,21
+196325,74.13117419,30671.4516,0,21
+196326,47.28029647,30341.26063,0,21
+196327,38.15887821,30227.51666,0,21
+196328,38.1588785,30429.88252,0,21
+196329,19.54816183,30207.53921,0,21
+196330,0,29828.1794,0,21
+196331,0,29970.14348,0,21
+196332,0,29944.22934,0,21
+196333,0,29603.27938,0,21
+196334,0,29673.13111,0,21
+196335,0,29462.15598,0,21
+196336,0,29427.2897,0,21
+196337,0,29134.51991,0,21
+196338,0,28601.05603,0,21
+196339,0,28050.23017,0,21
+196340,0,28154.78834,0,21
+196341,0,27961.15866,0,21
+196342,0,27556.24601,0,21
+196343,0,27705.93452,0,21
+196344,0,27241.92775,0,21
+196345,0,27279.6671,0,21
+196346,0,26984.59064,0,21
+196347,0,26924.98678,0,21
+196348,0,26608.29583,0,21
+196349,0,26423.3159,0,21
+196350,0,26249.98964,0,21
+196351,0,25813.89889,0,21
+196352,0,25811.59123,0,21
+196353,0,25185.62871,0,21
+196354,0,24691.14106,0,21
+196355,0,24416.40091,0,21
+196356,0,23452.39623,0,21
+196357,0,23364.19442,0,21
+196358,0,22668.37984,0,21
+196359,0,21906.11386,0,21
+196360,0,21732.84709,0,21
+196361,0,20744.81944,0,21
+196362,0,20277.99053,0,21
+196363,0,19807.89472,0,21
+196364,0,19099.39689,0,21
+196365,0,18296.67586,0,21
+196366,0,17882.61906,0,21
+196367,0,17110.59068,0,21
+196368,0,16425.42518,0,21
+196369,0,15848.59123,0,21
+196370,0,14886.77945,0,21
+196371,0,14417.77397,0,21
+196372,0,14067.63394,0,21
+196373,0,13881.57102,0,21
+196374,0,13986.17368,0,21
+196375,0,13767.51385,0,21
+196376,0,13867.71083,0,21
+196377,0,13511.18675,0,21
+196378,0,13309.82135,0,21
+196379,0,13377.40988,0,21
+196380,0,13027.59573,0,21
+196381,0,12455.23069,0,21
+196382,0,12253.85086,0,21
+196383,0,12024.5834,0,21
+196384,0,11808.17445,0,21
+196385,0,11566.31566,0,21
+196386,0,11334.11913,0,21
+196387,0,10983.8494,0,21
+196388,0,10894.54803,0,21
+196389,0,10633.86266,0,21
+196390,0,10279.40166,0,21
+196391,0,10187.67835,0,21
+196392,0,9962.897109,0,21
+196393,0,9563.33167,0,21
+196394,0,9348.288079,0,21
+196395,0,9239.609043,0,21
+196396,0,8861.034631,0,21
+196397,0,8628.442613,0,21
+196398,0,8393.916771,0,21
+196399,0,8142.842386,0,21
+196400,0,8038.351945,0,21
+196401,0,7522.438835,0,21
+196402,0,7459.946452,0,21
+196403,0,7309.103499,0,21
+196404,0,7157.840808,0,21
+196405,0,6854.024614,0,21
+196406,0,6854.024737,0,21
+196407,0,6672.405324,0,21
+196408,0,6394.945034,0,21
+196409,0,6365.785762,0,21
+196410,0,6071.922499,0,21
+196411,0,6057.269323,0,21
+196412,0,5902.276189,0,21
+196413,0,5746.776211,0,21
+196414,0,5732.04179,0,21
+196415,0,5590.756182,0,21
+196416,0,5419.410696,0,21
+196417,0,5404.589174,0,21
+196418,0,5262.280275,0,21
+196419,0,5232.549002,0,21
+196420,0,5089.705276,0,21
+196421,0,4931.400026,0,21
+196422,0,4916.459556,0,21
+196423,0,4757.52471,0,21
+196424,0,4757.52492,0,21
+196425,0,4582.938798,0,21
+196426,0,4582.938748,0,21
+196427,0,4422.712918,0,21
+196428,0,4261.822703,0,21
+196429,0,4407.618659,0,21
+196430,0,4085.084561,0,21
+196431,0,4085.084718,0,21
+196432,0,4069.89445,0,21
+196433,0,3907.531003,0,21
+196434,0,3759.672192,0,21
+196435,0,3876.987677,0,21
+196436,0,3595.805748,0,21
+196437,0,3713.807698,0,21
+196438,0,3400.438218,0,21
+196439,0,3549.841269,0,21
+196440,0,3250.199075,0,21
+196441,0,3698.351162,0,21
+196442,0,3549.840366,0,21
+196443,0,3534.452755,0,21
+196444,0,3549.84154,0,21
+196445,0,3369.62655,0,21
+196446,0,3519.029616,0,21
+196447,0,3369.62642,0,21
+196448,0,3338.676519,0,21
+196449,0,3219.387464,0,21
+196450,0,3323.148728,0,21
+196451,0,3188.437281,0,21
+196452,0,3188.437213,0,21
+196453,0,3157.346114,0,21
+196454,0,3157.346225,0,21
+196455,0,3021.783887,0,21
+196456,0,3141.746845,0,21
+196457,0,2838.550701,0,21
+196458,0,3141.746679,0,21
+196459,0,2822.914914,0,21
+196460,0,2974.985458,0,21
+196461,0,2807.242607,0,21
+196462,0,2959.313297,0,21
+196463,0,2654.158145,0,21
+196464,0,2943.602878,0,21
+196465,0,2638.449136,0,21
+196466,0,2775.785822,0,21
+196467,0,2638.449314,0,21
+196468,0,2760.000692,0,21
+196469,0,2606.917087,0,21
+196470,0,2622.702063,0,21
+196471,0,2591.091984,0,21
+196472,0,2421.052011,0,21
+196473,0,2436.914274,0,21
+196474,0,2249.781645,0,21
+196475,0,2249.781524,0,21
+196476,0,2077.160509,0,21
+196477,0,2061.178433,0,21
+196478,0,2061.178325,0,21
+196479,0,1727.212675,0,21
+196480,0,1870.949511,0,21
+196481,0,1711.148208,0,21
+196482,0,1517.162016,0,21
+196483,0,1533.310776,0,21
+196484,0,1336.915242,0,21
+196485,0,1336.915156,0,21
+196486,0,1137.385337,0,21
+196487,0,1153.665567,0,21
+196488,0,949.8536178,0,21
+196489,0,949.8535346,0,21
+196490,0,753.7637215,0,21
+196491,0,737.3457244,0,21
+196492,0,737.3456435,0,21
+196493,0,704.3667858,0,21
+196494,0,720.8801173,0,21
+196495,0,671.1917289,0,21
+196496,0,687.8041779,0,21
+196497,0,671.1917546,0,21
+196498,0,654.5284747,0,21
+196499,0,637.8199377,0,21
+196500,0,637.8178484,0,21
+196501,0,979.0513204,0,21
+196502,0,4098.70332,0,21
+196503,0,3937.081822,0,21
+196504,0,3031.511625,0,21
+196505,0,3463.863316,0,21
+196506,0,2999.667942,0,21
+196507,0,3133.924812,0,21
+196508,0,2816.537071,0,21
+196509,0,2648.402123,0,21
+196510,0,2632.293477,0,21
+196511,0,2463.060987,0,21
+196512,0,2292.691495,0,21
+196513,0,2276.455184,0,21
+196514,0,1948.127196,0,21
+196515,0,1931.80137,0,21
+196516,0,1757.288309,0,21
+196517,0,1564.579577,0,21
+196518,0,1581.053906,0,21
+196519,0,1205.744121,0,21
+196520,0,1205.734905,0,21
+196521,0,1022.112679,0,21
+196522,0,1005.449391,0,21
+196523,0,621.0452859,0,21
+196524,0,637.8132926,0,21
+196525,0,587.3463075,0,21
+196526,0,587.346306,0,21
+196527,0,570.4129827,0,21
+196528,0,553.4220851,0,21
+196529,0,519.2620431,0,21
+196530,0,536.3722512,0,21
+196531,0,484.8542086,0,21
+196532,0,502.0899056,0,21
+196533,0,467.5531754,0,21
+196534,0,467.553173,0,21
+196535,0,441.4748475,0,21
+196536,0,432.7418907,0,21
+196537,0,423.9708985,0,21
+196538,0,397.666874,0,21
+196539,0,415.2285185,0,21
+196540,0,362.2532841,0,21
+196541,0,379.9916797,0,21
+196542,0,344.4326084,0,21
+196543,0,362.2533046,0,21
+196544,0,308.5298915,0,21
+196545,0,326.5260492,0,21
+196546,0,308.5298591,0,21
+196547,0,290.4398073,0,21
+196548,0,290.4397846,0,21
+196549,0,253.9584053,0,21
+196550,0,272.2511003,0,21
+196551,0,235.5555115,0,21
+196552,0,235.5554923,0,21
+196553,0,217.0352931,0,21
+196554,0,207.7286574,0,21
+196555,0,198.3894742,0,21
+196556,0,179.6082502,0,21
+196557,0,179.608241,0,21
+196558,0,141.5884908,0,21
+196559,0,141.5890961,0,21
+196560,0,122.3186873,0,21
+196561,0,0,0,21
+196562,0,0,0,21
+196563,0,0,0,21
+196564,0,0,0,21
+196565,0,0,0,21
+196566,0,0,0,21
+196567,0,0,0,21
+196568,0,0,0,21
+196569,0,0,0,21
+196570,0,0,0,21
+196571,0,0,0,21
+196572,0,0,0,21
+196573,0,0,0,21
+196574,0,0,0,21
+196575,0,0,0,21
+196576,0,0,0,21
+196577,0,0,0,21
+196578,0,0,0,21
+196579,0,0,0,21
+196580,0,0,0,21
+196581,0,0,0,21
+196582,0,0,0,21
+196583,0,0,0,21
+196584,0,0,0,21
+196585,0,0,0,21
+196586,0,0,0,21
+196587,0,0,0,21
+196588,0,0,0,21
+196589,0,0,0,21
+196590,0,0,0,21
+196591,0,0,0,21
+196592,0,0,0,21
+196593,0,0,0,21
+196594,0,0,0,21
+196595,0,0,0,21
+196596,0,0,0,21
+196597,0,0,0,21
+196598,0,0,0,21
+196599,0,0,0,21
+196600,0,0,0,21
+196601,0,0,0,21
+196602,0,0,0,21
+196603,0,0,0,21
+196604,0,0,0,21
+196605,0,0,0,21
+196606,0,0,0,21
+196607,0,0,0,21
+196608,0,0,0,21
+196609,0,0,0,21
+196610,0,0,0,21
+196611,0,0,0,21
+196612,0,0,0,21
+196613,0,0,0,21
+196614,0,0,0,21
+196615,0,0,0,21
+196616,0,0,0,21
+196617,0,0,0,21
+196618,0,0,0,21
+196619,0,0,0,21
+196620,0,0,0,21
+196621,0,0,0,21
+196622,0,0,0,21
+196623,0,0,0,21
+196624,0,0,0,21
+196625,0,0,0,21
+196626,0,0,0,21
+196627,0,0,0,21
+196628,0,0,0,21
+196629,0,0,0,21
+196630,0,0,0,21
+196631,0,0,0,21
+196632,0,0,0,21
+196633,0,0,0,21
+196634,0,0,0,21
+196635,0,0,0,21
+196636,0,0,0,21
+196637,0,0,0,21
+196638,0,0,0,21
+196639,0,0,0,21
+196640,0,0,0,21
+196641,0,0,0,21
+196642,0,0,0,21
+196643,0,0,0,21
+196644,0,0,0,21
+196645,0,0,0,21
+196646,0,0,0,21
+196647,0,0,0,21
+196648,0,0,0,21
+196649,0,0,0,21
+196650,0,0,0,21
+196651,0,0,0,21
+196652,0,0,0,21
+196653,0,0,0,21
+196654,0,0,0,21
+196655,0,0,0,21
+196656,0,0,0,21
+196657,0,0,0,21
+196658,0,0,0,21
+196659,0,0,0,21
+196660,0,0,0,21
+196661,0,0,0,21
+196662,0,0,0,21
+196663,0,0,0,21
+196664,0,0,0,21
+196665,0,0,0,21
+196666,0,0,0,21
+196667,0,0,0,21
+196668,0,0,0,21
+196669,0,0,0,21
+196670,0,0,0,21
+196671,0,0,0,21
+196672,0,0,0,21
+196673,0,0,0,21
+196674,0,0,0,21
+196675,0,0,0,21
+196676,0,0,0,21
+196677,0,0,0,21
+196678,0,0,0,21
+196679,0,0,0,21
+196680,0,0,0,21
+196681,0,0,0,21
+196682,0,0,0,21
+196683,0,0,0,21
+196684,0,0,0,21
+196685,0,0,0,21
+196686,0,0,0,21
+196687,0,0,0,21
+196688,0,0,0,21
+196689,0,0,0,21
+196690,0,0,0,21
+196691,0,0,0,21
+196692,0,0,0,21
+196693,0,0,0,21
+196694,0,0,0,21
+196695,0,0,0,21
+196696,0,0,0,21
+196697,0,0,0,21
+196698,0,0,0,21
+196699,0,0,0,21
+196700,0,0,0,21
+196701,0,0,0,21
+196702,0,0,0,21
+196703,0,0,0,21
+196704,0,0,0,21
+196705,0,0,0,21
+196706,0,0,0,21
+196707,0,0,0,21
+196708,0,0,0,21
+196709,0,0,0,21
+196710,0,0,0,21
+196711,0,0,0,21
+196712,0,0,0,21
+196713,0,0,0,21
+196714,0,0,0,21
+196715,0,0,0,21
+196716,0,0,0,21
+196717,0,0,0,21
+196718,0,0,0,21
+196719,0,0,0,21
+196720,0,0,0,21
+196721,0,0,0,21
+196722,0,0,0,21
+196723,0,0,0,21
+196724,0,0,0,21
+196725,0,0,0,21
+196726,0,0,0,21
+196727,0,0,0,21
+196728,0,0,0,21
+196729,0,0,0,21
+196730,0,0,0,21
+196731,0,0,0,21
+196732,0,0,0,21
+196733,0,0,0,21
+196734,0,0,0,21
+196735,0,0,0,21
+196736,0,0,0,21
+196737,0,0,0,21
+196738,0,0,0,21
+196739,0,0,0,21
+196740,0,0,0,21
+196741,0,0,0,21
+196742,0,0,0,21
+196743,0,0,0,21
+196744,0,0,0,21
+196745,0,0,0,21
+196746,0,0,0,21
+196747,0,0,0,21
+196748,0,0,0,21
+196749,0,0,0,21
+196750,0,0,0,21
+196751,0,0,0,21
+196752,0,0,0,21
+196753,0,0,0,21
+196754,0,0,0,21
+196755,0,0,0,21
+196756,0,0,0,21
+196757,0,0,0,21
+196758,0,0,0,21
+196759,0,0,0,21
+196760,0,0,0,21
+196761,0,0,0,21
+196762,0,0,0,21
+196763,0,0,0,21
+196764,0,0,0,21
+196765,0,0,0,21
+196766,0,0,0,21
+196767,0,0,0,21
+196768,0,0,0,21
+196769,0,0,0,21
+196770,0,0,0,21
+196771,0,0,0,21
+196772,0,0,0,21
+196773,0,0,0,21
+196774,0,0,0,21
+196775,0,0,0,21
+196776,0,0,0,21
+196777,0,0,0,21
+196778,0,0,0,21
+196779,0,0,0,21
+196780,0,0,0,21
+196781,0,0,0,21
+196782,0,0,0,21
+196783,0,0,0,21
+196784,0,0,0,21
+196785,0,0,0,21
+196786,0,0,0,21
+196787,0,0,0,21
+196788,0,0,0,21
+196789,0,0,0,21
+196790,0,0,0,21
+196791,0,0,0,21
+196792,0,0,0,21
+196793,0,0,0,21
+196794,0,0,0,21
+196795,0,0,0,21
+196796,0,0,0,21
+196797,0,0,0,21
+196798,0,0,0,21
+196799,0,0,0,21
+196800,0,0,0,21
+196801,0,0,0,21
+196802,0,0,0,21
+196803,0,0,0,21
+196804,0,0,0,21
+196805,0,0,0,21
+196806,0,0,0,21
+196807,0,0,0,21
+196808,0,0,0,21
+196809,0,0,0,21
+196810,0,0,0,21
+196811,0,0,0,21
+196812,0,0,0,21
+196813,0,0,0,21
+196814,0,0,0,21
+196815,0,0,0,21
+196816,258.8246094,0,0,21
+196817,126.2226823,0,0,21
+196818,209.9354924,0,0,21
+196819,234.4877801,0,0,21
+196820,242.6230882,0,0,21
+196821,290.9675105,0,0,21
+196822,290.9675101,0,0,21
+196823,338.5892184,0,0,21
+196824,338.5892197,0,0,21
+196825,369.9782743,0,0,21
+196826,401.1037599,0,0,21
+196827,416.5729302,0,0,21
+196828,431.9822107,0,0,21
+196829,462.6277831,0,0,21
+196830,493.052752,0,0,21
+196831,1995.320212,0,0,21
+196832,2186.348354,0,0,21
+196833,2842.83002,0,0,21
+196834,2716.034532,0,0,21
+196835,2502.746126,0,0,21
+196836,2725.705606,0,0,21
+196837,2715.12036,0,0,21
+196838,2824.96664,0,0,21
+196839,3073.730331,0,0,21
+196840,3289.314378,0,0,21
+196841,3304.845226,0,0,21
+196842,3655.431899,0,0,21
+196843,3639.837286,0,0,21
+196844,3986.150445,0,0,21
+196845,3986.150449,0,0,21
+196846,4225.332713,0,0,21
+196847,4332.099003,0,0,21
+196848,4494.98462,0,0,21
+196849,4681.274346,0,0,21
+196850,4849.115212,0,0,21
+196851,4933.503074,0,0,21
+196852,5199.86943,0,0,21
+196853,5423.179723,0,0,21
+196854,5315.11497,0,0,21
+196855,5775.365765,0,0,21
+196856,5675.627993,0,0,21
+196857,6001.677806,0,0,21
+196858,6147.417249,0,0,21
+196859,6118.82359,0,0,21
+196860,6482.245248,0,0,21
+196861,10263.55582,0,0,21
+196862,10488.0748,0,0,21
+196863,10713.01771,0,0,21
+196864,10814.89155,0,0,21
+196865,10903.61481,0,0,21
+196866,11116.90981,0,0,21
+196867,11026.26983,0,0,21
+196868,11099.16792,0,0,21
+196869,11176.86861,0,0,21
+196870,11380.56688,0,0,21
+196871,11352.46509,0,0,21
+196872,11338.38021,0,0,21
+196873,11690.15192,0,0,21
+196874,11573.118,0,0,21
+196875,11806.96469,0,0,21
+196876,11806.96466,0,0,21
+196877,12026.0261,0,0,21
+196878,12039.93355,0,0,21
+196879,12156.09284,0,0,21
+196880,12272.03748,0,0,21
+196881,12272.03745,0,0,21
+196882,12489.51635,0,0,21
+196883,12503.28868,0,0,21
+196884,12618.59824,0,0,21
+196885,12719.99227,0,0,21
+196886,12733.69909,0,0,21
+196887,12848.59252,0,0,21
+196888,12963.28003,0,0,21
+196889,12963.27998,0,0,21
+196890,13178.46292,0,0,21
+196891,13178.46293,0,0,21
+196892,13205.59079,0,0,21
+196893,13392.9309,0,0,21
+196894,13319.63746,0,0,21
+196895,13419.9968,0,0,21
+196896,13633.69677,0,0,21
+196897,13433.48379,0,0,21
+196898,13747.0091,0,0,21
+196899,13647.15338,0,0,21
+196900,13860.12528,0,0,21
+196901,13773.83249,0,0,21
+196902,13873.52211,0,0,21
+196903,13973.04665,0,0,21
+196904,13999.75192,0,0,21
+196905,14085.77434,0,0,21
+196906,14099.11232,0,0,21
+196907,14112.42119,0,0,21
+196908,14310.6532,0,0,21
+196909,14224.89843,0,0,21
+196910,14323.93325,0,0,21
+196911,14337.18469,0,0,21
+196912,14534.77082,0,0,21
+196913,14547.99384,0,0,21
+196914,14547.99382,0,0,21
+196915,14574.35555,0,0,21
+196916,14744.941,0,0,21
+196917,14686.0477,0,0,21
+196918,14771.30269,0,0,21
+196919,14784.44177,0,0,21
+196920,14980.75662,0,0,21
+196921,14797.553,0,0,21
+196922,14993.86783,0,0,21
+196923,15006.9518,0,0,21
+196924,15104.87405,0,0,21
+196925,15020.00852,0,0,21
+196926,15215.69745,0,0,21
+196927,15228.72731,0,0,21
+196928,15228.72716,0,0,21
+196929,15241.73024,0,0,21
+196930,15339.34186,0,0,21
+196931,15436.79943,0,0,21
+196932,15267.65654,0,0,21
+196933,15547.08021,0,0,21
+196934,15462.72572,0,0,21
+196935,15475.64953,0,0,21
+196936,15657.18173,0,0,21
+196937,15488.54704,0,0,21
+196938,15683.0032,0,0,21
+196939,15683.00308,0,0,21
+196940,15792.87475,0,0,21
+196941,15902.56977,0,0,21
+196942,15695.87442,0,0,21
+196943,16108.6375,0,0,21
+196944,15721.54089,0,0,21
+196945,16108.63715,0,0,21
+196946,15928.18461,0,0,21
+196947,16121.432,0,0,21
+196948,16134.2017,0,0,21
+196949,16024.88265,0,0,21
+196950,16146.94626,0,0,21
+196951,16339.59764,0,0,21
+196952,16159.66581,0,0,21
+196953,16352.31738,0,0,21
+196954,16557.07381,0,0,21
+196955,16377.68259,0,0,21
+196956,16590.80867,0,0,21
+196957,16728.84302,535.0393878,0,21
+196958,16731.75676,1681.332634,0,21
+196959,16837.12994,1199.895977,0,21
+196960,16859.36675,1745.783876,0,21
+196961,17062.82091,2198.858172,0,21
+196962,17094.26844,2140.914136,0,21
+196963,17081.71408,2664.208825,0,21
+196964,17328.20139,2702.114053,0,21
+196965,17306.43357,3160.003311,0,21
+196966,17337.38781,3215.965416,0,21
+196967,17548.75209,3517.5817,0,21
+196968,17561.20193,3871.58701,0,21
+196969,17570.27851,4020.137484,0,21
+196970,17780.92417,4204.33051,0,21
+196971,17793.32732,4534.436057,0,21
+196972,17999.86785,4698.549363,0,21
+196973,17835.98125,5007.293463,0,21
+196974,18218.05795,5187.335745,0,21
+196975,18054.68041,5492.896291,0,21
+196976,18255.06586,5671.100802,0,21
+196977,18260.32496,5848.596017,0,21
+196978,18484.72676,6274.477715,0,21
+196979,18477.58958,6326.008142,0,21
+196980,18674.49529,6624.872976,0,21
+196981,19552.79187,7373.257875,0,21
+196982,19639.73339,7562.005793,0,21
+196983,19934.04752,7854.329595,0,21
+196984,20162.20697,8008.252595,0,21
+196985,20433.67412,8314.906196,0,21
+196986,20585.17249,8467.647683,0,21
+196987,20766.66449,8620.006061,0,21
+196988,20996.19001,8771.986377,0,21
+196989,21290.71101,8923.593504,0,21
+196990,21423.32325,9074.832148,0,21
+196991,21605.53981,9225.706861,0,21
+196992,21956.59202,9542.533153,0,21
+196993,22132.65805,9793.392589,0,21
+196994,22197.09012,9708.368495,0,21
+196995,22647.95981,10107.52241,0,21
+196996,22729.52732,10271.99326,0,21
+196997,22974.1355,10436.0128,0,21
+196998,23074.91849,10699.47268,0,21
+196999,26885.86057,10715.34229,0,21
+197000,26456.95887,11025.04792,0,21
+197001,27461.6181,11155.7911,0,21
+197002,28196.75555,11432.17208,0,21
+197003,29148.61878,11463.4987,0,21
+197004,29661.08509,11738.68749,0,21
+197005,31616.84391,11899.18815,0,21
+197006,32650.1806,12157.17994,0,21
+197007,33775.69034,12332.18912,0,21
+197008,34365.16059,12460.53832,0,21
+197009,35319.11271,12731.87408,0,21
+197010,35620.93769,12777.8667,0,21
+197011,36236.30132,13017.50374,0,21
+197012,36755.24291,13737.37579,0,21
+197013,37192.9766,13408.93371,0,21
+197014,37779.32583,13949.8477,0,21
+197015,38135.01232,14007.63256,0,21
+197016,38648.29748,14287.86901,0,21
+197017,39249.42554,14416.79207,0,21
+197018,39575.07729,14793.05652,0,21
+197019,39996.22628,14752.94798,0,21
+197020,40281.93656,15057.67432,0,21
+197021,41094.1221,15390.86724,0,21
+197022,41195.70454,15405.75157,0,21
+197023,41648.55297,15625.20326,0,21
+197024,42089.74167,15914.47003,0,21
+197025,42525.39239,15970.49673,0,21
+197026,42975.40474,16296.3108,0,21
+197027,43061.8348,16448.91981,0,21
+197028,43869.58079,16501.01359,0,21
+197029,43943.92933,16842.3919,0,21
+197030,44371.72768,16976.03563,0,21
+197031,44879.58368,17237.28147,0,21
+197032,45103.80834,17447.53434,0,21
+197033,45471.93103,17627.50408,0,21
+197034,45949.43028,17905.19624,0,21
+197035,45981.34579,18959.85067,0,21
+197036,46887.26555,21053.08248,0,21
+197037,46699.15771,20302.95354,0,21
+197038,47291.71174,21448.1761,0,21
+197039,48022.50222,21983.56441,0,21
+197040,47966.34259,22006.28978,0,21
+197041,48596.408,23065.39065,0,21
+197042,48579.84574,23337.41822,0,21
+197043,49098.56024,24441.73547,0,21
+197044,49588.48036,24473.54228,0,21
+197045,49483.09135,25792.6322,0,21
+197046,49933.99169,25702.59689,0,21
+197047,50323.14972,26917.59722,0,21
+197048,50421.89776,26996.5286,0,21
+197049,50709.43592,27917.48403,0,21
+197050,51072.85081,28454.40991,0,21
+197051,51379.35769,28851.91739,0,21
+197052,51414.40661,29778.0382,0,21
+197053,52012.66072,30137.5581,0,21
+197054,52145.06196,30841.21845,0,21
+197055,52311.5041,31467.56377,0,21
+197056,52803.69826,31782.17018,0,21
+197057,52719.24889,32472.12443,0,21
+197058,53102.44467,33110.23811,0,21
+197059,53489.09865,33748.2624,0,21
+197060,53757.8725,34115.56722,0,21
+197061,53799.76164,34809.91127,0,21
+197062,54044.15789,35378.81308,0,21
+197063,54676.60242,35837.40005,0,21
+197064,54321.88946,36595.13508,0,21
+197065,55734.76559,36618.24363,0,21
+197066,56446.90666,37803.80924,0,21
+197067,56514.48414,37912.26269,0,21
+197068,57060.92574,38832.23815,0,21
+197069,57296.25542,39384.47373,0,21
+197070,57827.04691,39636.51047,0,21
+197071,58300.69582,40602.80857,0,21
+197072,58517.86636,40745.52699,0,21
+197073,58907.74577,41476.16676,0,21
+197074,59272.80119,41845.32139,0,21
+197075,59691.34103,42257.4618,0,21
+197076,60028.33459,42797.92123,0,21
+197077,60425.74403,43539.58468,0,21
+197078,60805.26367,43610.1401,0,21
+197079,61119.21399,44268.52273,0,21
+197080,61438.01393,44760.67797,0,21
+197081,61709.13308,45184.59776,0,21
+197082,62312.7118,45814.6469,0,21
+197083,62285.86642,46410.66813,0,21
+197084,63220.9692,46784.89868,0,21
+197085,63177.39388,47274.22332,0,21
+197086,64077.89922,47821.84365,0,21
+197087,64202.35722,48314.88545,0,21
+197088,64611.003,48751.84069,0,21
+197089,64975.8158,49295.36683,0,21
+197090,65291.04731,49717.88541,0,21
+197091,65493.28479,50306.82023,0,21
+197092,66179.55454,50783.03171,0,21
+197093,66132.33371,51345.24162,0,21
+197094,66694.20579,51657.29982,0,21
+197095,66935.15216,52601.90676,0,21
+197096,67306.72104,52470.50869,0,21
+197097,67684.24276,53460.1736,0,21
+197098,67850.63312,53512.40047,0,21
+197099,68147.75445,54285.39173,0,21
+197100,68686.44833,54554.92356,0,21
+197101,0,0,0,21
+197102,0,0,0,21
+197103,0,0,0,21
+197104,0,0,0,21
+197105,0,0,739624.8062,21
+197106,339947.2435,368645.6713,0,21
+197107,0,0,0,21
+197108,0,0,0,21
+197109,0,0,0,21
+197110,0,0,0,21
+197111,0,0,0,21
+197112,0,0,0,21
+197113,0,0,0,21
+197114,0,0,0,21
+197115,0,0,0,21
+197116,0,0,0,21
+197117,0,0,0,21
+197118,0,0,0,21
+197119,0,0,0,21
+197120,0,0,0,21
+197121,0,0,0,21
+197122,0,0,0,21
+197123,0,0,0,21
+197124,0,0,0,21
+197125,0,0,0,21
+197126,0,0,0,21
+197127,0,0,0,21
+197128,0,0,0,21
+197129,0,0,0,21
+197130,0,0,0,21
+197131,0,0,0,21
+197132,0,0,0,21
+197133,0,0,0,21
+197134,0,0,0,21
+197135,0,0,0,21
+197136,0,0,0,21
+197137,0,0,0,21
+197138,0,0,0,21
+197139,0,0,733558.4622,21
+197140,0,0,0,21
+197141,339944.2921,368658.6377,0,21
+197142,0,0,0,21
+197143,0,0,0,21
+197144,0,0,0,21
+197145,0,0,0,21
+197146,0,0,0,21
+197147,0,0,0,21
+197148,0,0,0,21
+197149,0,0,0,21
+197150,0,0,0,21
+197151,0,0,0,21
+197152,0,0,0,21
+197153,0,0,0,21
+197154,0,0,0,21
+197155,0,0,0,21
+197156,0,0,0,21
+197157,0,0,0,21
+197158,0,0,0,21
+197159,0,0,0,21
+197160,0,0,0,15.6
+197161,0,0,0,15.6
+197162,0,331.9663116,0,15.6
+197163,0,0,0,15.6
+197164,0,0,0,15.6
+197165,0,0,0,15.6
+197166,0,0,0,15.6
+197167,0,0,0,15.6
+197168,0,0,0,15.6
+197169,0,0,0,15.6
+197170,0,0,0,15.6
+197171,0,0,0,15.6
+197172,0,0,0,15.6
+197173,0,0,728187.4427,15.6
+197174,0,97.53491297,0,15.6
+197175,0,0,0,15.6
+197176,0,368655.0861,0,15.6
+197177,339943.3647,433682.0726,0,15.6
+197178,0,0,0,15.6
+197179,0,0,0,15.6
+197180,0,0,0,15.6
+197181,0,0,0,15.6
+197182,0,0,0,15.6
+197183,0,0,0,15.6
+197184,0,0,0,15.6
+197185,0,0,0,15.6
+197186,0,0,0,15.6
+197187,0,0,0,15.6
+197188,0,0,0,15.6
+197189,0,0,0,15.6
+197190,0,0,0,15.6
+197191,0,0,0,15.6
+197192,0,0,0,15.6
+197193,0,0,0,15.6
+197194,0,0,0,15.6
+197195,0,433520.0223,0,15.6
+197196,0,0,0,15.6
+197197,0,0,0,15.6
+197198,0,0,0,15.6
+197199,0,0,0,15.6
+197200,0,0,0,15.6
+197201,0,0,0,15.6
+197202,0,0,0,15.6
+197203,0,0,0,15.6
+197204,0,0,0,15.6
+197205,0,0,0,15.6
+197206,0,432836.5922,0,15.6
+197207,0,0,0,15.6
+197208,0,0,723941.3295,15.6
+197209,0,0,0,15.6
+197210,0,0,0,15.6
+197211,0,368636.8269,0,15.6
+197212,0,0,0,15.6
+197213,339944.2208,0,0,15.6
+197214,0,0,0,15.6
+197215,0,0,0,15.6
+197216,0,0,0,15.6
+197217,0,0,0,15.6
+197218,0,0,0,15.6
+197219,0,0,0,15.6
+197220,0,433117.2241,0,15.6
+197221,0,0,0,15.6
+197222,0,0,0,15.6
+197223,0,0,0,15.6
+197224,0,0,0,15.6
+197225,0,0,0,15.6
+197226,0,0,0,15.6
+197227,0,0,0,15.6
+197228,0,0,0,15.6
+197229,0,0,0,15.6
+197230,0,0,0,15.6
+197231,0,432705.4069,0,15.6
+197232,0,0,0,15.6
+197233,0,0,0,15.6
+197234,0,0,0,15.6
+197235,0,0,0,15.6
+197236,0,0,0,15.6
+197237,0,0,0,15.6
+197238,0,0,0,15.6
+197239,0,0,0,15.6
+197240,0,0,0,15.6
+197241,0,0,0,15.6
+197242,0,0,0,15.6
+197243,0,0,719314.0687,15.6
+197244,0,0,0,15.6
+197245,0,0,0,15.6
+197246,0,368634.4048,0,15.6
+197247,0,0,0,15.6
+197248,0,0,0,15.6
+197249,339940.9021,0,0,15.6
+197250,0,433121.6518,0,15.6
+197251,0,0,0,15.6
+197252,0,0,0,15.6
+197253,0,0,0,15.6
+197254,0,0,0,15.6
+197255,0,0,0,15.6
+197256,0,0,0,15.6
+197257,0,0,0,15.6
+197258,0,0,0,15.6
+197259,0,0,0,15.6
+197260,0,0,0,15.6
+197261,0,432568.9322,0,15.6
+197262,0,0,0,15.6
+197263,0,0,0,15.6
+197264,0,0,0,15.6
+197265,0,0,0,15.6
+197266,0,0,0,15.6
+197267,0,0,0,15.6
+197268,0,0,0,15.6
+197269,0,0,0,15.6
+197270,0,0,0,15.6
+197271,0,0,0,15.6
+197272,0,0,0,15.6
+197273,0,0,0,15.6
+197274,0,0,0,15.6
+197275,0,0,0,15.6
+197276,0,0,0,15.6
+197277,0,0,0,15.6
+197278,0,0,714922.5485,15.6
+197279,0,0,0,15.6
+197280,0,0,0,15.6
+197281,0,368632.6153,0,15.6
+197282,0,0,0,15.6
+197283,0,0,0,15.6
+197284,0,0,0,15.6
+197285,339933.8819,0,0,15.6
+197286,0,0,0,15.6
+197287,0,0,0,15.6
+197288,0,116.9949799,0,15.6
+197289,0,0,0,15.6
+197290,0,0,0,15.6
+197291,0,0,0,15.6
+197292,0,0,0,15.6
+197293,0,0,0,15.6
+197294,0,0,0,15.6
+197295,0,63.27400156,0,15.6
+197296,0,0,0,15.6
+197297,0,0,0,15.6
+197298,0,0,0,15.6
+197299,0,0,0,15.6
+197300,0,0,0,15.6
+197301,0,0,0,15.6
+197302,0,0,0,15.6
+197303,0,0,0,15.6
+197304,0,118.8281294,0,15.6
+197305,0,0,0,15.6
+197306,0,0,0,15.6
+197307,0,0,0,15.6
+197308,0,66.31590557,0,15.6
+197309,0,0,0,15.6
+197310,0,0,0,15.6
+197311,0,0,0,15.6
+197312,0,86.99207945,0,15.6
+197313,0,0,711889.3214,15.6
+197314,0,0,0,15.6
+197315,0,0,0,15.6
+197316,0,368687.0416,0,15.6
+197317,0,0,0,15.6
+197318,0,0,0,15.6
+197319,0,0,0,15.6
+197320,0,82.66168396,0,15.6
+197321,339915.2131,0,0,15.6
+197322,0,0,0,15.6
+197323,0,0,0,15.6
+197324,0,77.31345178,0,15.6
+197325,0,0,0,15.6
+197326,0,0,0,15.6
+197327,0,0,0,15.6
+197328,0,83.4313092,0,15.6
+197329,0,0,0,15.6
+197330,0,0,0,15.6
+197331,0,0,0,15.6
+197332,0,82.41604195,0,15.6
+197333,0,0,0,15.6
+197334,0,0,0,15.6
+197335,0,0,0,15.6
+197336,0,80.5002217,0,15.6
+197337,0,0,0,15.6
+197338,0,0,0,15.6
+197339,0,0,0,15.6
+197340,0,78.73569436,0,15.6
+197341,0,0,0,15.6
+197342,0,0,0,15.6
+197343,0,0,0,15.6
+197344,0,77.01843574,0,15.6
+197345,0,0,0,15.6
+197346,0,0,0,15.6
+197347,0,0,0,15.6
+197348,0,78.18373217,708820.5031,15.6
+197349,0,0,0,15.6
+197350,0,0,0,15.6
+197351,0,368573.5656,0,15.6
+197352,0,77.76404881,0,15.6
+197353,0,0,0,15.6
+197354,0,0,0,15.6
+197355,0,0,0,15.6
+197356,0,72.3870499,0,15.6
+197357,339917.1864,0,0,15.6
+197358,0,0,0,15.6
+197359,0,0,0,15.6
+197360,0,75.65668705,0,15.6
+197361,0,0,0,15.6
+197362,0,0,0,15.6
+197363,0,0,0,15.6
+197364,0,83.24007628,0,15.6
+197365,0,0,0,15.6
+197366,0,0,0,15.6
+197367,0,0,0,15.6
+197368,0,87.3016518,0,15.6
+197369,0,0,0,15.6
+197370,0,0,0,15.6
+197371,0,0,0,15.6
+197372,0,97.38454172,0,15.6
+197373,0,0,0,15.6
+197374,0,0,0,15.6
+197375,0,0,0,15.6
+197376,0,81.82125521,0,15.6
+197377,0,0,0,15.6
+197378,0,0,0,15.6
+197379,0,0,0,15.6
+197380,0,96.81268851,0,15.6
+197381,0,0,0,15.6
+197382,0,0,0,15.6
+197383,0,0,705944.88,15.6
+197384,0,77.76226406,0,15.6
+197385,0,0,0,15.6
+197386,0,368555.204,0,15.6
+197387,0,0,0,15.6
+197388,0,80.86044912,0,15.6
+197389,0,0,0,15.6
+197390,0,0,0,15.6
+197391,0,0,0,15.6
+197392,0,68.95938013,0,15.6
+197393,339937.0652,0,0,15.6
+197394,0,0,0,15.6
+197395,0,0,0,15.6
+197396,0,71.84840418,0,15.6
+197397,0,0,0,15.6
+197398,0,0,0,15.6
+197399,0,0,0,15.6
+197400,0,74.77678445,0,15.6
+197401,0,0,0,15.6
+197402,0,0,0,15.6
+197403,0,0,0,15.6
+197404,0,76.52307427,0,15.6
+197405,0,0,0,15.6
+197406,0,0,0,15.6
+197407,0,0,0,15.6
+197408,0,78.4498453,0,15.6
+197409,0,0,0,15.6
+197410,0,0,0,15.6
+197411,0,0,0,15.6
+197412,0,80.92090474,0,15.6
+197413,0,0,0,15.6
+197414,0,0,0,15.6
+197415,0,0,0,15.6
+197416,0,83.08728455,0,15.6
+197417,0,0,0,15.6
+197418,0,0,703127.1845,15.6
+197419,0,0,0,15.6
+197420,0,84.97765911,0,15.6
+197421,0,0,0,15.6
+197422,0,368521.731,0,15.6
+197423,0,0,0,15.6
+197424,0,83.25728567,0,15.6
+197425,0,0,0,15.6
+197426,0,0,0,15.6
+197427,0,0,0,15.6
+197428,0,76.34196011,0,15.6
+197429,0,0,0,15.6
+197430,339925.1125,0,0,15.6
+197431,0,0,0,15.6
+197432,0,82.69821916,0,15.6
+197433,0,0,0,15.6
+197434,0,0,0,15.6
+197435,0,0,0,15.6
+197436,0,86.14983307,0,15.6
+197437,0,0,0,15.6
+197438,0,0,0,15.6
+197439,0,0,0,15.6
+197440,0,85.74634815,0,15.6
+197441,0,0,0,15.6
+197442,0,0,0,15.6
+197443,0,0,0,15.6
+197444,0,83.82949881,0,15.6
+197445,0,0,0,15.6
+197446,0,0,0,15.6
+197447,0,0,0,15.6
+197448,0,81.23920243,0,15.6
+197449,0,0,0,15.6
+197450,0,0,0,15.6
+197451,0,0,0,15.6
+197452,0,78.97255308,0,15.6
+197453,0,0,700582.3612,15.6
+197454,0,0,0,15.6
+197455,0,0,0,15.6
+197456,0,76.61322274,0,15.6
+197457,0,0,0,15.6
+197458,0,368479.5781,0,15.6
+197459,0,0,0,15.6
+197460,0,72.11225494,0,15.6
+197461,0,0,0,15.6
+197462,0,0,0,15.6
+197463,0,432117.3257,0,15.6
+197464,0,0,0,15.6
+197465,0,0,0,15.6
+197466,0,0,0,15.6
+197467,339905.6182,0,0,15.6
+197468,0,0,0,15.6
+197469,0,0,0,15.6
+197470,0,0,0,15.6
+197471,0,0,0,15.6
+197472,0,0,0,15.6
+197473,0,0,0,15.6
+197474,0,0,0,15.6
+197475,0,0,0,15.6
+197476,0,0,0,15.6
+197477,0,0,0,15.6
+197478,0,0,0,15.6
+197479,0,0,0,15.6
+197480,0,0,0,15.6
+197481,0,0,0,15.6
+197482,0,0,0,15.6
+197483,0,0,0,15.6
+197484,0,0,0,15.6
+197485,0,0,0,15.6
+197486,0,0,0,15.6
+197487,0,0,698299.5289,15.6
+197488,0,431857.5082,0,15.6
+197489,0,0,0,15.6
+197490,0,0,0,15.6
+197491,0,0,0,15.6
+197492,0,0,0,15.6
+197493,0,0,0,15.6
+197494,0,368466.5724,0,15.6
+197495,0,0,0,15.6
+197496,0,0,0,15.6
+197497,0,0,0,15.6
+197498,0,0,0,15.6
+197499,0,0,0,15.6
+197500,0,0,0,15.6
+197501,0,0,0,15.6
+197502,339904.4771,0,0,15.6
+197503,0,0,0,15.6
+197504,0,0,0,15.6
+197505,0,0,0,15.6
+197506,0,0,0,15.6
+197507,0,0,0,15.6
+197508,0,0,0,15.6
+197509,0,0,0,15.6
+197510,0,0,0,15.6
+197511,0,0,0,15.6
+197512,0,0,0,15.6
+197513,0,431623.0296,0,15.6
+197514,0,0,0,15.6
+197515,0,0,0,15.6
+197516,0,0,0,15.6
+197517,0,0,0,15.6
+197518,0,0,0,15.6
+197519,0,0,0,15.6
+197520,0,0,0,17.8
+197521,0,9024.494579,695670.6752,17.8
+197522,0,0,0,17.8
+197523,0,0,0,17.8
+197524,0,2595.202286,0,17.8
+197525,0,44799.80791,0,17.8
+197526,0,8225.394888,0,17.8
+197527,1144.622199,22642.33171,0,17.8
+197528,655.5028707,391458.5327,0,17.8
+197529,752.9430486,20917.83982,0,17.8
+197530,819.2035087,21201.55532,0,17.8
+197531,848.3570314,21078.58397,0,17.8
+197532,862.8677718,20942.94795,0,17.8
+197533,877.3352651,20909.24333,0,17.8
+197534,906.1427252,20751.03742,0,17.8
+197535,920.4835878,20696.35101,0,17.8
+197536,934.7832205,20523.01687,0,17.8
+197537,340831.9229,20524.72449,0,17.8
+197538,19951.35133,20363.9948,0,17.8
+197539,52126.63205,20246.56816,0,17.8
+197540,58642.47232,20340.58757,0,17.8
+197541,45691.18177,18010.96259,0,17.8
+197542,52379.97035,17939.75011,0,17.8
+197543,54135.99145,17803.78057,0,17.8
+197544,120146.7191,17710.58319,0,17.8
+197545,65053.48479,17583.72958,0,17.8
+197546,82073.22257,17507.05439,0,17.8
+197547,99479.0197,17626.12286,0,17.8
+197548,88326.07886,17277.94714,0,17.8
+197549,92425.37865,17158.48848,0,17.8
+197550,93602.34297,17066.13163,0,17.8
+197551,94730.20552,16991.59311,0,17.8
+197552,95890.08875,16913.24168,0,17.8
+197553,96806.24138,16874.71132,0,17.8
+197554,98224.64112,16788.9227,0,17.8
+197555,99169.90796,0,694481.8802,17.8
+197556,100309.2915,103.5245369,0,17.8
+197557,101354.2519,0,0,17.8
+197558,102231.3396,0,0,17.8
+197559,103659.1785,0,0,17.8
+197560,104461.5191,0,0,17.8
+197561,105470.1728,247.0923333,0,17.8
+197562,106753.3665,368481.3238,0,17.8
+197563,107566.6319,0,0,17.8
+197564,108664.6144,0,0,17.8
+197565,109717.731,0,0,17.8
+197566,18909.88555,0,0,17.8
+197567,18940.28834,0,0,17.8
+197568,19065.33084,31142.06665,0,17.8
+197569,19091.68284,2771.338441,0,17.8
+197570,19178.65646,13791.71526,0,17.8
+197571,19233.41546,14585.26317,0,17.8
+197572,359125.2522,16126.15236,0,17.8
+197573,19386.24305,14957.4546,0,17.8
+197574,0,73584.14805,0,17.8
+197575,0,111297.7134,0,17.8
+197576,0,80761.20272,0,17.8
+197577,0,90155.29099,0,17.8
+197578,0,91637.0512,0,17.8
+197579,0,92070.658,0,17.8
+197580,0,92572.79207,0,20
+197581,826851.0052,877264.7729,24571.41619,20
+197582,54944.60032,5637.19347,0,20
+197583,78906.96864,6606.850958,0,20
+197584,265906.0928,186158.3835,0,20
+197585,177239.7468,163172.7715,4047.926915,20
+197586,184460.4899,132738.8982,3818.747678,20
+197587,185212.17,141552.9303,3004.887961,20
+197588,185186.0431,142097.8681,3819.4538,20
+197589,184310.0871,141497.1716,3819.847646,20
+197590,184350.8319,141578.3219,4049.960909,20
+197591,183645.9887,140753.1653,4365.525817,20
+197592,183793.1433,140457.9211,5789.188358,20
+197593,183680.2907,140547.4651,5166.374882,20
+197594,182754.893,139846.1776,6311.556287,20
+197595,183122.5817,139471.7557,6453.15459,20
+197596,182328.8546,139127.0312,6510.865989,20
+197597,182236.8904,139025.5145,6973.254648,20
+197598,182257.6983,138619.7336,7016.224572,20
+197599,181357.8105,138229.404,7419.597376,20
+197600,181717.4707,138312.18,7462.411791,20
+197601,180963.5672,137447.8545,7863.765457,20
+197602,181062.7819,137642.9831,8029.91177,20
+197603,180773.0296,136871.5123,8072.245598,20
+197604,180330.8348,137189.2742,8580.102615,20
+197605,180789.4921,136374.4478,8512.943717,20
+197606,182217.2577,136358.6538,8896.253947,20
+197607,181138.3354,136242.6537,9046.964488,20
+197608,181059.5618,135616.4078,9224.551132,20
+197609,181298.4333,135819.1706,9470.143142,20
+197610,180779.1676,135115.6943,9646.629026,20
+197611,181189.3746,134456.791,9904.709032,20
+197612,180318.6876,134498.9086,10054.01642,20
+197613,180467.1781,133936.1045,10217.10689,20
+197614,180241.6676,133808.4143,10486.40041,20
+197615,180240.7528,133455.2273,10622.5719,20
+197616,179491.0181,133682.3213,10797.56661,20
+197617,179884.5805,132700.7234,11026.55268,20
+197618,179990.2185,132678.9681,11214.26396,20
+197619,179663.0482,132737.3371,11455.57182,20
+197620,179827.5677,132446.5112,11008.51334,20
+197621,179492.1497,131726.0013,11224.59011,20
+197622,179367.5954,132089.3383,11279.91482,20
+197623,178969.0837,131253.3351,6200.474803,20
+197624,179087.3258,131373.7807,5286.263885,20
+197625,178865.2019,130837.4997,5617.725614,20
+197626,178330.8957,130833.4263,4830.059752,20
+197627,178511.4034,130524.2308,4703.290207,20
+197628,178127.8781,130183.2553,4057.439518,20
+197629,177816.0612,129753.4706,4013.168318,20
+197630,178111.344,130100.7784,3515.679918,20
+197631,177328.3332,129202.8167,3625.363879,20
+197632,177413.4166,129362.0914,3657.651578,20
+197633,177024.486,129065.2361,3798.406535,20
+197634,177333.9257,128657.0713,3763.817308,20
+197635,176355.4625,128899.8416,4023.300503,20
+197636,176785.2097,128323.2649,4135.851464,20
+197637,176119.736,128100.767,4106.466252,20
+197638,176307.3882,128251.7882,4327.86218,20
+197639,175480.0832,127766.9432,4317.134685,20
+197640,176207.6015,127619.565,4424.955886,21
+197641,164554.8694,123304.8677,2007.073239,21
+197642,163748.1033,121662.0233,1811.414974,21
+197643,163224.1582,121342.8111,1691.781428,21
+197644,163001.3676,120456.4688,1691.682451,21
+197645,162379.0622,119790.3351,1678.966157,21
+197646,162424.8889,119369.1772,1543.163739,21
+197647,162258.2589,118860.1546,1678.954442,21
+197648,161542.2361,117722.1673,1543.45305,21
+197649,572771.0204,118073.9927,1543.36174,21
+197650,161170.3486,116488.5183,1474.020458,21
+197651,160910.4549,116766.9312,1543.486531,21
+197652,583466.2852,115632.1398,1388.996553,21
+197653,160140.993,115278.4757,1402.17618,21
+197654,160509.236,114883.7038,1389.101459,21
+197655,159989.7169,113870.3454,1389.153649,21
+197656,159876.0887,113621.4843,1389.205825,21
+197657,159668.3506,113408.4431,1363.015637,21
+197658,159306.8893,112232.1174,1389.30919,21
+197659,159194.7409,111905.9399,1363.350422,21
+197660,158961.116,111224.3213,1362.772338,21
+197661,158791.324,110876.2302,1363.450613,21
+197662,158451.9909,109783.3581,1349.875804,21
+197663,158439.6787,109460.1751,1350.300049,21
+197664,157827.7085,109141.2857,1336.956458,21
+197665,157976.8147,108141.6847,1323.43201,21
+197666,157626.4406,108370.8198,1350.44615,21
+197667,157396.2162,107514.1561,1283.604417,21
+197668,157445.5295,107256.4904,1323.573707,21
+197669,156917.9632,106712.8617,1297.520237,21
+197670,156987.6398,106427.9549,1296.800832,21
+197671,156595.4544,106179.4412,1269.46829,21
+197672,156393.5249,105592.5051,1283.828854,21
+197673,156151.2773,105444.2173,1269.556015,21
+197674,155877.9563,104383.7491,1256.516568,21
+197675,155507.3549,104590.2919,1256.559224,21
+197676,155405.7271,103816.8098,1256.601885,21
+197677,155080.2555,103381.0793,1256.64455,21
+197678,155002.8807,102765.1385,1243.581934,21
+197679,154440.0997,102675.5638,1243.623692,21
+197680,154348.3136,102231.4079,1243.665434,21
+197681,154204.2414,102088.678,1230.580012,21
+197682,153782.3455,101484.9912,1230.620856,21
+197683,153602.3209,101464.3058,1230.661703,21
+197684,153273.9881,100492.7583,1217.553363,21
+197685,563618.363,100763.2341,1230.742978,21
+197686,152715.0442,99560.89816,1204.462788,21
+197687,152751.848,99842.20997,1217.673212,21
+197688,573921.2198,98603.71276,1191.348596,21
+197689,152219.6917,98909.34911,1217.7523,21
+197690,151512.009,97934.92486,1191.425781,21
+197691,151526.4864,97620.09147,1191.463987,21
+197692,151332.324,97259.4934,1178.28651,21
+197693,150709.6948,96880.40678,1165.086486,21
+197694,150842.3283,96095.69696,1165.12296,21
+197695,150105.6048,96193.19573,1151.899783,21
+197696,150351.9282,95434.75455,1151.935404,21
+197697,149830.2391,94558.88325,1138.688915,21
+197698,149612.4253,94897.20857,1138.723699,21
+197699,149105.4592,93601.41284,1125.453731,21
+197700,150149.7466,93486.78508,1125.487683,21
+197701,77375.40948,49572.43671,0,21
+197702,73241.14434,47187.60321,0,21
+197703,71232.73683,46042.98454,0,21
+197704,70337.36642,45650.81953,0,21
+197705,68833.46849,45024.96373,0,21
+197706,67880.10483,44018.06713,0,21
+197707,66436.81258,43812.26227,0,21
+197708,65808.09022,43140.97645,0,21
+197709,64497.61896,42608.04001,0,21
+197710,63532.6195,42135.43119,0,21
+197711,62419.86621,41641.7629,0,21
+197712,61977.63812,40958.30745,0,21
+197713,60912.09386,40672.56921,0,21
+197714,60450.13412,40133.93717,0,21
+197715,59718.9138,39511.8941,0,21
+197716,58861.51975,39428.72491,0,21
+197717,58478.53716,38539.15672,0,21
+197718,57348.7659,38293.81775,0,21
+197719,469616.3472,37999.4664,0,21
+197720,56353.85182,37252.95999,0,21
+197721,55191.04295,36973.8576,0,21
+197722,479393.1453,36742.30999,0,21
+197723,53921.79952,36012.21084,0,21
+197724,53657.11811,35688.02868,0,21
+197725,52484.08508,35412.60317,0,21
+197726,52124.6133,34725.72233,0,21
+197727,51382.39463,34449.69466,0,21
+197728,50869.50318,34073.40752,0,21
+197729,50142.65782,33411.55631,0,21
+197730,49398.55807,32817.95265,0,21
+197731,48763.06127,32611.50459,0,21
+197732,48273.76496,32085.40167,0,21
+197733,47675.55018,31797.51227,0,21
+197734,47082.57683,31155.59722,0,21
+197735,46898.04895,30906.56575,0,21
+197736,46314.26474,30382.91493,0,21
+197737,46084.35215,30110.6867,0,21
+197738,45461.88951,29578.1565,0,21
+197739,45321.63804,29253.32582,0,21
+197740,44670.84624,29396.2497,0,21
+197741,44387.30872,28574.40306,0,21
+197742,44170.38666,28791.50144,0,21
+197743,43449.07355,27712.43164,0,21
+197744,43259.1451,27961.78634,0,21
+197745,42793.97879,27107.89052,0,21
+197746,42395.13065,26944.49761,0,21
+197747,42147.04772,26746.58089,0,21
+197748,41564.6171,26135.39526,0,21
+197749,41203.32057,25611.70834,0,21
+197750,41144.0933,25713.56437,0,21
+197751,40282.67853,24629.93645,0,21
+197752,40318.90879,24165.09044,0,21
+197753,452688.7843,23677.1309,0,21
+197754,39268.37967,23738.04409,0,21
+197755,39236.80706,22821.50259,0,21
+197756,463189.5852,22800.29039,0,21
+197757,38286.21826,22390.73689,0,21
+197758,38013.32028,21820.83716,0,21
+197759,37510.51842,21540.83915,0,21
+197760,37483.27272,21408.60619,0,21
+197761,36611.47113,20455.04101,0,21
+197762,36929.55152,20874.32626,0,21
+197763,36067.89983,19657.42709,0,21
+197764,36217.73615,19902.56686,0,21
+197765,35563.82908,19151.82809,0,21
+197766,35279.12589,18982.00267,0,21
+197767,35218.13586,18636.50748,0,21
+197768,34871.84413,17974.48576,0,21
+197769,34283.18179,18050.9741,0,21
+197770,34230.01764,17115.8929,0,21
+197771,33970.03793,17410.3492,0,21
+197772,33506.9973,16447.84352,0,21
+197773,33326.40111,16425.73867,0,21
+197774,32960.55382,15960.06023,0,21
+197775,32700.69113,15553.75814,0,21
+197776,32433.29655,15163.15057,0,21
+197777,31936.07309,14875.43118,0,21
+197778,31829.78187,14505.90599,0,21
+197779,31593.47268,14055.52996,0,21
+197780,31061.33734,13746.66305,0,21
+197781,30883.73268,13229.37933,0,21
+197782,30829.1174,13078.2333,0,21
+197783,30131.95301,12280.9402,0,21
+197784,30083.26257,12258.12884,0,21
+197785,29694.34485,11600.75276,0,21
+197786,29419.44913,11319.38221,0,21
+197787,29166.20426,10890.90153,0,21
+197788,28786.52921,10620.68288,0,21
+197789,441753.2724,9767.442124,0,21
+197790,28243.40031,9776.640187,0,21
+197791,28192.62229,9213.530395,0,21
+197792,452346.4284,8319.105195,0,21
+197793,27762.60692,8201.109238,0,21
+197794,27320.35827,7274.599725,0,21
+197795,27309.30442,7094.156123,0,21
+197796,27001.84329,7007.710246,0,21
+197797,26816.19751,6826.465288,0,21
+197798,26658.79203,6596.439543,0,21
+197799,26299.93787,6389.590175,0,21
+197800,26359.79897,6325.862737,0,21
+197801,26092.07921,5997.815687,0,21
+197802,25958.63733,5869.207786,0,21
+197803,25583.02882,5714.509821,0,21
+197804,25517.67498,5578.977841,0,21
+197805,25483.86341,5267.210519,0,21
+197806,25145.02462,5023.861617,0,21
+197807,24926.86792,5105.006973,0,21
+197808,24937.54549,4584.869173,0,21
+197809,24563.70388,4651.250843,0,21
+197810,24470.50224,4301.489733,0,21
+197811,24390.00957,4192.263396,0,21
+197812,24182.1296,3822.730345,0,21
+197813,23943.81823,3907.501845,0,21
+197814,23908.74605,3337.427095,0,21
+197815,23643.01591,3452.042264,0,21
+197816,23590.71732,3185.591232,0,21
+197817,23240.58105,2804.968374,0,21
+197818,23404.90662,2888.632626,0,21
+197819,22933.66735,2475.623664,0,21
+197820,22993.98918,2243.914562,0,21
+197821,28517.00392,1741.084059,0,21
+197822,28566.23017,1483.241285,0,21
+197823,28296.22038,1234.401323,0,21
+197824,28157.73003,1133.383128,0,21
+197825,441379.1425,818.967813,0,21
+197826,27631.10703,835.159549,0,21
+197827,28029.67874,802.7322753,0,21
+197828,452137.3723,770.1271324,0,21
+197829,27592.78709,770.1271426,0,21
+197830,27288.78288,737.338459,0,21
+197831,27172.48173,737.3384602,0,21
+197832,26878.52307,704.3602181,0,21
+197833,26904.29885,687.7979573,0,21
+197834,26758.37662,671.1858196,0,21
+197835,26429.76034,637.8079246,0,21
+197836,26457.6296,637.8079347,0,21
+197837,26213.08275,621.0402077,0,21
+197838,26073.11726,587.3417783,0,21
+197839,26025.30355,570.4087129,0,21
+197840,25766.85875,553.4181018,0,21
+197841,25633.81893,536.3685221,0,21
+197842,25474.89745,519.2585548,0,21
+197843,25545.12631,502.0866527,0,21
+197844,25229.04103,484.8511817,0,21
+197845,24950.51805,450.1823151,0,21
+197846,25083.69815,450.1823438,0,21
+197847,24889.07116,432.7494739,0,21
+197848,24691.44513,397.6545948,0,21
+197849,24523.4643,397.6537573,0,21
+197850,24642.34167,379.9946439,0,21
+197851,24143.75146,344.4310084,0,21
+197852,24259.85012,344.433227,0,21
+197853,23995.81416,326.5274493,0,21
+197854,23845.09062,308.5312752,0,21
+197855,23621.75402,308.5312946,0,21
+197856,23588.88147,290.4412567,0,21
+197857,23235.5426,272.2525703,0,21
+197858,23203.92627,272.252575,0,21
+197859,23175.55674,253.9598453,0,21
+197860,22804.62763,235.5569188,0,21
+197861,436236.6741,235.5569282,0,21
+197862,22418.83511,226.3119653,0,21
+197863,22501.08875,207.7300415,0,21
+197864,447385.1329,198.390842,0,21
+197865,22038.6315,198.3908513,0,21
+197866,21765.18167,170.1644901,0,21
+197867,21738.66162,179.609555,0,21
+197868,21595.21806,151.1569933,0,21
+197869,21254.7246,151.157001,0,21
+197870,21330.08756,141.5904963,0,21
+197871,20967.8485,122.31977,0,21
+197872,20991.55908,122.3197757,0,21
+197873,20603.60674,112.6096037,0,21
+197874,20615.39633,102.8447754,0,21
+197875,20500.87753,83.13267954,0,21
+197876,20237.11919,102.844782,0,21
+197877,20237.75283,42.77636641,0,21
+197878,19895.57563,63.13556257,0,21
+197879,19869.44229,21.90576904,0,21
+197880,19641.5232,32.42015334,0,21
+197881,13622.27142,42.77688964,0,21
+197882,13505.57056,63.13583374,0,21
+197883,12995.52276,42.7766854,0,21
+197884,13234.48992,42.77668437,0,21
+197885,12751.61736,42.77668601,0,21
+197886,12852.8356,42.77668872,0,21
+197887,12481.38082,21.90584463,0,21
+197888,12465.69624,42.77670034,0,21
+197889,12219.66348,21.90585191,0,21
+197890,12211.03467,42.77671064,0,21
+197891,11821.30468,11.16969741,0,21
+197892,11948.48754,32.42034298,0,21
+197893,11689.07999,21.90586202,0,21
+197894,11420.41161,21.90587477,0,21
+197895,11309.11263,11.16969624,0,21
+197896,11287.72753,21.90586511,0,21
+197897,11142.6523,0,0,21
+197898,10776.88204,21.90587853,0,21
+197899,10893.51608,0,0,21
+197900,10604.8118,21.9058865,0,21
+197901,10380.15027,0,0,21
+197902,10475.12063,0,0,21
+197903,9968.363916,0,0,21
+197904,10223.95644,0,0,21
+197905,9811.684544,0,0,21
+197906,9689.166783,0,0,21
+197907,9694.345257,0,0,21
+197908,9408.953046,0,0,21
+197909,9388.614139,0,0,21
+197910,9036.020961,0,0,21
+197911,8873.416336,0,0,21
+197912,8576.46641,0,0,21
+197913,8056.169978,0,0,21
+197914,7589.924703,0,0,21
+197915,7353.584263,0,0,21
+197916,6929.575251,0,0,21
+197917,6609.876485,0,0,21
+197918,6353.942173,0,0,21
+197919,5448.791709,0,0,21
+197920,5387.612718,0,0,21
+197921,4982.693793,0,0,21
+197922,5076.79922,0,0,21
+197923,4805.694535,0,0,21
+197924,4627.916375,0,0,21
+197925,4504.82577,0,0,21
+197926,4311.043605,0,0,21
+197927,4186.820578,0,0,21
+197928,3992.871157,0,0,21
+197929,3880.668183,0,0,21
+197930,3933.45918,0,0,21
+197931,3931.742156,0,0,21
+197932,3610.189948,0,0,21
+197933,3623.501653,0,0,21
+197934,3426.332084,0,0,21
+197935,3170.370935,0,0,21
+197936,3126.434767,0,0,21
+197937,2954.972114,0,0,21
+197938,2664.75175,0,0,21
+197939,2635.765645,0,0,21
+197940,2474.412534,0,0,21
+197941,6605.51023,0,0,21
+197942,6721.776461,0,0,21
+197943,6317.225943,0,0,21
+197944,9921.500397,0,0,21
+197945,9284.005959,0,0,21
+197946,7998.092386,0,0,21
+197947,8245.901424,0,0,21
+197948,7915.265853,0,0,21
+197949,7569.213318,0,0,21
+197950,7107.4844,0,0,21
+197951,6950.285946,0,0,21
+197952,6413.384796,0,0,21
+197953,6224.14363,0,0,21
+197954,5816.002501,0,0,21
+197955,5391.452537,0,0,21
+197956,4955.934786,0,0,21
+197957,4787.740044,0,0,21
+197958,4224.414649,0,0,21
+197959,3827.600298,0,0,21
+197960,3586.943311,0,0,21
+197961,3128.841999,0,0,21
+197962,2802.195515,0,0,21
+197963,2640.389701,0,0,21
+197964,2321.41238,0,0,21
+197965,2288.213045,0,0,21
+197966,1947.232389,0,0,21
+197967,1775.978597,0,0,21
+197968,1457.704608,0,0,21
+197969,1384.03232,0,0,21
+197970,1071.436018,0,0,21
+197971,863.5006269,0,0,21
+197972,839.71926,0,0,21
+197973,815.5065153,0,0,21
+197974,787.0000064,0,0,21
+197975,772.6918158,0,0,21
+197976,758.3463415,0,0,21
+197977,743.9630609,0,0,21
+197978,715.0809023,0,0,21
+197979,715.0808889,0,0,21
+197980,686.0407054,0,0,21
+197981,671.4598041,0,0,21
+197982,656.8374908,0,0,21
+197983,627.4658317,0,0,21
+197984,627.4658219,0,0,21
+197985,597.9197635,0,0,21
+197986,597.9197548,0,0,21
+197987,553.2592048,0,0,21
+197988,568.1927598,0,0,21
+197989,523.2470499,0,0,21
+197990,523.2470436,0,0,21
+197991,508.1663457,0,0,21
+197992,493.0343877,0,0,21
+197993,462.6117335,0,0,21
+197994,462.6117288,0,0,21
+197995,401.0918906,0,0,21
+197996,385.5619479,0,0,21
+197997,369.968267,0,0,21
+197998,338.5809235,0,0,21
+197999,338.5809212,0,0,21
+198000,306.9102587,0,0,21
+198001,0,0,0,21
+198002,0,0,0,21
+198003,0,0,0,21
+198004,0,0,0,21
+198005,0,0,0,21
+198006,0,0,0,21
+198007,0,0,0,21
+198008,0,0,0,21
+198009,0,0,0,21
+198010,0,0,0,21
+198011,0,0,0,21
+198012,0,0,0,21
+198013,0,0,0,21
+198014,0,0,0,21
+198015,0,0,0,21
+198016,0,0,0,21
+198017,0,0,0,21
+198018,0,0,0,21
+198019,0,0,0,21
+198020,0,0,0,21
+198021,0,0,0,21
+198022,0,0,0,21
+198023,0,0,0,21
+198024,0,0,0,21
+198025,0,0,0,21
+198026,0,0,0,21
+198027,0,0,0,21
+198028,0,0,0,21
+198029,0,0,0,21
+198030,0,0,0,21
+198031,0,0,0,21
+198032,0,0,0,21
+198033,0,0,0,21
+198034,0,0,0,21
+198035,0,0,0,21
+198036,0,0,0,21
+198037,0,0,0,21
+198038,0,0,0,21
+198039,0,0,0,21
+198040,0,0,0,21
+198041,0,0,0,21
+198042,0,0,0,21
+198043,0,0,0,21
+198044,0,0,0,21
+198045,0,0,0,21
+198046,0,0,0,21
+198047,0,0,0,21
+198048,0,0,0,21
+198049,0,0,0,21
+198050,0,0,0,21
+198051,0,0,0,21
+198052,0,0,0,21
+198053,0,0,0,21
+198054,0,0,0,21
+198055,0,0,0,21
+198056,0,0,0,21
+198057,0,0,0,21
+198058,0,0,0,21
+198059,0,0,0,21
+198060,0,0,0,21
+198061,0,0,0,21
+198062,0,0,0,21
+198063,0,0,0,21
+198064,0,0,0,21
+198065,0,0,0,21
+198066,0,0,0,21
+198067,0,0,0,21
+198068,0,0,0,21
+198069,0,0,0,21
+198070,0,0,0,21
+198071,0,0,0,21
+198072,0,0,0,21
+198073,0,0,0,21
+198074,0,0,0,21
+198075,0,0,0,21
+198076,0,0,0,21
+198077,0,0,0,21
+198078,0,0,0,21
+198079,0,0,0,21
+198080,0,0,0,21
+198081,0,0,0,21
+198082,0,0,0,21
+198083,0,0,0,21
+198084,0,0,0,21
+198085,0,0,0,21
+198086,0,0,0,21
+198087,0,0,0,21
+198088,0,0,0,21
+198089,0,0,0,21
+198090,0,0,0,21
+198091,0,0,0,21
+198092,0,0,0,21
+198093,0,0,0,21
+198094,0,0,0,21
+198095,0,0,0,21
+198096,0,0,0,21
+198097,0,0,0,21
+198098,0,0,0,21
+198099,0,0,0,21
+198100,0,0,0,21
+198101,0,0,0,21
+198102,0,0,0,21
+198103,0,0,0,21
+198104,0,0,0,21
+198105,0,0,0,21
+198106,0,0,0,21
+198107,0,0,0,21
+198108,0,0,0,21
+198109,0,0,0,21
+198110,0,0,0,21
+198111,0,0,0,21
+198112,0,0,0,21
+198113,0,0,0,21
+198114,0,0,0,21
+198115,0,0,0,21
+198116,0,0,0,21
+198117,0,0,0,21
+198118,0,0,0,21
+198119,0,0,0,21
+198120,0,0,0,21
+198121,0,0,0,21
+198122,0,0,0,21
+198123,0,0,0,21
+198124,0,0,0,21
+198125,0,0,0,21
+198126,0,0,0,21
+198127,0,0,0,21
+198128,0,0,0,21
+198129,0,0,0,21
+198130,0,0,0,21
+198131,0,0,0,21
+198132,0,0,0,21
+198133,0,0,0,21
+198134,0,0,0,21
+198135,0,0,0,21
+198136,0,0,0,21
+198137,0,0,0,21
+198138,0,0,0,21
+198139,0,0,0,21
+198140,0,0,0,21
+198141,0,0,0,21
+198142,0,0,0,21
+198143,0,0,0,21
+198144,0,0,0,21
+198145,0,0,0,21
+198146,0,0,0,21
+198147,0,0,0,21
+198148,0,0,0,21
+198149,0,0,0,21
+198150,0,0,0,21
+198151,0,0,0,21
+198152,0,0,0,21
+198153,0,0,0,21
+198154,0,0,0,21
+198155,0,0,0,21
+198156,0,0,0,21
+198157,0,0,0,21
+198158,0,0,0,21
+198159,0,0,0,21
+198160,0,0,0,21
+198161,0,0,0,21
+198162,0,0,0,21
+198163,0,0,0,21
+198164,0,0,0,21
+198165,0,0,0,21
+198166,0,0,0,21
+198167,0,0,0,21
+198168,0,0,0,21
+198169,0,0,0,21
+198170,0,0,0,21
+198171,0,0,0,21
+198172,0,0,0,21
+198173,0,0,0,21
+198174,0,0,0,21
+198175,0,0,0,21
+198176,0,0,0,21
+198177,0,0,0,21
+198178,0,0,0,21
+198179,0,0,0,21
+198180,0,0,0,21
+198181,0,0,0,21
+198182,0,0,0,21
+198183,0,0,0,21
+198184,0,0,0,21
+198185,0,0,0,21
+198186,0,0,0,21
+198187,0,0,0,21
+198188,0,0,0,21
+198189,0,0,0,21
+198190,0,0,0,21
+198191,0,0,0,21
+198192,0,0,0,21
+198193,0,0,0,21
+198194,0,0,0,21
+198195,0,0,0,21
+198196,0,0,0,21
+198197,0,0,0,21
+198198,0,0,0,21
+198199,0,0,0,21
+198200,0,0,0,21
+198201,0,0,0,21
+198202,0,0,0,21
+198203,0,0,0,21
+198204,0,0,0,21
+198205,0,0,0,21
+198206,0,0,0,21
+198207,0,0,0,21
+198208,0,0,0,21
+198209,0,0,0,21
+198210,0,0,0,21
+198211,0,0,0,21
+198212,0,0,0,21
+198213,0,0,0,21
+198214,0,0,0,21
+198215,0,0,0,21
+198216,0,0,0,21
+198217,0,0,0,21
+198218,0,0,0,21
+198219,0,0,0,21
+198220,0,0,0,21
+198221,0,0,0,21
+198222,0,0,0,21
+198223,0,0,0,21
+198224,0,0,0,21
+198225,0,0,0,21
+198226,0,0,0,21
+198227,0,0,0,21
+198228,0,0,0,21
+198229,0,0,0,21
+198230,0,0,0,21
+198231,0,0,0,21
+198232,0,0,0,21
+198233,0,0,0,21
+198234,0,0,0,21
+198235,0,0,0,21
+198236,0,0,0,21
+198237,0,0,0,21
+198238,0,0,0,21
+198239,0,0,0,21
+198240,0,0,0,21
+198241,0,0,0,21
+198242,0,0,0,21
+198243,0,0,0,21
+198244,0,0,0,21
+198245,0,0,0,21
+198246,0,0,0,21
+198247,0,0,0,21
+198248,0,0,0,21
+198249,0,0,0,21
+198250,0,0,0,21
+198251,0,0,0,21
+198252,0,0,0,21
+198253,0,0,0,21
+198254,0,0,0,21
+198255,0,0,0,21
+198256,0,0,0,21
+198257,0,0,0,21
+198258,0,0,0,21
+198259,0,0,0,21
+198260,0,0,0,21
+198261,0,0,0,21
+198262,0,0,0,21
+198263,0,0,0,21
+198264,0,0,0,21
+198265,0,0,0,21
+198266,0,0,0,21
+198267,0,0,0,21
+198268,0,0,0,21
+198269,0,0,0,21
+198270,0,0,0,21
+198271,0,0,0,21
+198272,0,0,0,21
+198273,0,0,0,21
+198274,0,0,0,21
+198275,0,0,0,21
+198276,989.9979425,0,0,21
+198277,1255.775487,0,0,21
+198278,1123.450149,0,0,21
+198279,1517.43788,0,0,21
+198280,1646.927964,0,0,21
+198281,1903.521116,0,0,21
+198282,1903.521103,0,0,21
+198283,2283.101989,0,0,21
+198284,2283.10197,0,0,21
+198285,2533.013485,0,0,21
+198286,2657.107379,0,0,21
+198287,2903.681159,0,0,21
+198288,2903.681128,0,0,21
+198289,3269.781472,0,0,21
+198290,3269.781433,0,0,21
+198291,3511.522743,0,0,21
+198292,3758.441822,0,0,21
+198293,3878.231913,0,0,21
+198294,4133.650332,0,0,21
+198295,4269.150243,0,0,21
+198296,4420.789234,0,0,21
+198297,4555.156814,0,0,21
+198298,4806.149037,0,0,21
+198299,4939.229388,0,0,21
+198300,5088.016033,0,0,21
+198301,8766.977064,0,0,21
+198302,9148.895778,0,0,21
+198303,9484.573917,0,0,21
+198304,9513.645674,0,0,21
+198305,9953.216048,0,0,21
+198306,9996.387405,0,0,21
+198307,10418.15613,0,0,21
+198308,10532.65945,0,0,21
+198309,10907.02854,0,0,21
+198310,11082.08025,0,0,21
+198311,11233.64892,0,0,21
+198312,11572.98117,0,0,21
+198313,11650.08066,0,0,21
+198314,12076.36912,0,0,21
+198315,12122.55403,0,0,21
+198316,12369.04362,0,0,21
+198317,12634.98155,0,0,21
+198318,12852.31786,0,0,21
+198319,13012.70596,0,0,21
+198320,13258.12152,0,0,21
+198321,13388.28469,0,0,21
+198322,13848.65531,0,0,21
+198323,13661.2653,0,0,21
+198324,14334.64767,0,0,21
+198325,14146.55452,0,0,21
+198326,14603.91574,0,0,21
+198327,14632.32534,0,0,21
+198328,14885.25232,0,0,21
+198329,15505.87496,0,0,21
+198330,16482.01985,0,0,21
+198331,16584.06431,0,0,21
+198332,16990.71939,0,0,21
+198333,17468.75247,0,0,21
+198334,18018.89627,0,0,21
+198335,18339.4307,0,0,21
+198336,18672.02764,0,0,21
+198337,19334.19051,0,0,21
+198338,19621.46389,0,0,21
+198339,20003.06198,0,0,21
+198340,20380.56651,0,0,21
+198341,21071.88674,0,0,21
+198342,21203.8559,0,0,21
+198343,21713.64517,0,0,21
+198344,22323.15776,0,0,21
+198345,22575.25589,0,0,21
+198346,23201.98699,0,0,21
+198347,23625.37824,0,0,21
+198348,23811.99508,0,0,21
+198349,24567.59324,0,0,21
+198350,24849.76573,0,0,21
+198351,25242.10647,0,0,21
+198352,25702.46451,0,0,21
+198353,26405.0256,0,0,21
+198354,26348.61364,0,0,21
+198355,27146.2593,0,0,21
+198356,27377.7471,0,0,21
+198357,27976.7276,0,0,21
+198358,28238.79985,0,0,21
+198359,28703.05775,0,0,21
+198360,29266.43903,0,0,21
+198361,29637.18274,0,0,21
+198362,29980.49025,0,0,21
+198363,30463.17568,0,0,21
+198364,30908.88005,0,0,21
+198365,31161.83462,0,0,21
+198366,31723.70839,0,0,21
+198367,32737.83243,0,0,21
+198368,33000.78233,0,0,21
+198369,33677.0285,0,0,21
+198370,34085.81795,0,0,21
+198371,34273.62383,0,0,21
+198372,35108.22957,0,0,21
+198373,35234.16767,0,0,21
+198374,35726.79021,0,0,21
+198375,36114.42399,0,0,21
+198376,36777.39483,0,0,21
+198377,36936.3569,0,0,21
+198378,37455.404,0,0,21
+198379,37874.59613,0,0,21
+198380,38154.0188,0,0,21
+198381,38779.07819,0,0,21
+198382,38986.09178,0,0,21
+198383,39720.14033,0,0,21
+198384,39879.13114,0,0,21
+198385,40287.07107,0,0,21
+198386,40746.69127,0,0,21
+198387,41129.6068,0,0,21
+198388,41579.01258,0,0,21
+198389,42012.15072,0,0,21
+198390,42420.43712,0,0,21
+198391,42822.68598,0,0,21
+198392,42903.60544,0,0,21
+198393,43471.86225,0,0,21
+198394,43709.30626,0,0,21
+198395,44091.2084,0,0,21
+198396,44365.07716,0,0,21
+198397,44745.3827,0,0,21
+198398,44962.05652,0,0,21
+198399,45697.51357,0,0,21
+198400,45978.60415,0,0,21
+198401,46443.22279,0,0,21
+198402,46684.6783,0,0,21
+198403,47230.86914,0,0,21
+198404,47526.52216,0,0,21
+198405,47807.14643,0,0,21
+198406,48230.59722,0,0,21
+198407,48737.61155,0,0,21
+198408,48993.74303,0,0,21
+198409,49098.12078,0,0,21
+198410,49759.7724,0,0,21
+198411,50009.42881,0,0,21
+198412,50442.09835,0,0,21
+198413,50592.2838,0,0,21
+198414,51177.43914,0,0,21
+198415,51101.79028,0,0,21
+198416,51910.25942,0,0,21
+198417,51999.78745,0,0,21
+198418,52280.9931,0,0,21
+198419,52894.56577,0,0,21
+198420,52973.20929,0,0,21
+198421,54397.87363,274.7643261,0,21
+198422,55154.57365,2461.755099,0,21
+198423,55321.81883,1681.335093,0,21
+198424,55737.64896,1996.403286,0,21
+198425,56163.09193,2307.525691,0,21
+198426,56327.62862,2615.156597,0,21
+198427,57027.8692,2767.774292,0,21
+198428,57220.26123,2919.643037,0,21
+198429,57551.83053,3070.794925,0,21
+198430,58010.51651,3520.227161,0,21
+198431,58209.96185,3371.061879,0,21
+198432,58778.48614,4028.715354,0,21
+198433,58968.68779,4088.961685,0,21
+198434,59236.71335,4303.827415,0,21
+198435,59736.20426,4605.411661,0,21
+198436,59964.55601,4643.316998,0,21
+198437,60395.87646,5096.29088,0,21
+198438,60684.50452,5114.942963,0,21
+198439,60983.33078,5295.693723,0,21
+198440,61338.67659,5742.572516,0,21
+198441,61835.51508,5618.429097,0,21
+198442,61727.13222,6071.51865,0,21
+198443,62349.43336,6239.646582,0,21
+198444,62573.56788,6257.560542,0,21
+198445,63225.43016,6696.269707,0,21
+198446,63401.1843,6722.88619,0,21
+198447,63928.53632,7027.953128,0,21
+198448,64814.09756,7045.504051,0,21
+198449,64906.47963,7478.080265,0,21
+198450,65182.88755,7504.186737,0,21
+198451,65764.48911,7667.788808,0,21
+198452,66169.85755,7959.227416,0,21
+198453,68717.39423,8112.983424,0,21
+198454,69438.08889,8266.340116,0,21
+198455,70778.45344,8436.287008,0,21
+198456,71136.00075,8724.046074,0,21
+198457,71999.5545,8875.860356,0,21
+198458,72744.71474,9027.301983,0,21
+198459,73385.89403,9195.119807,0,21
+198460,74182.5469,9345.780436,0,21
+198461,74540.05232,9612.788896,0,21
+198462,75650.88676,9812.133119,0,21
+198463,76018.91069,9928.380877,0,21
+198464,76859.29474,10225.95706,0,21
+198465,77452.85011,10390.60727,0,21
+198466,77951.58662,10522.19327,0,21
+198467,78542.15295,10817.11669,0,21
+198468,79500.65436,10833.35261,0,21
+198469,79917.79825,11110.75492,0,21
+198470,80477.00895,11143.01552,0,21
+198471,81102.91656,11403.13253,0,21
+198472,81787.49797,11694.27267,0,21
+198473,82264.88323,11710.26084,0,21
+198474,82989.70142,11855.33486,0,21
+198475,83374.98497,12000.10849,0,21
+198476,84299.28974,12288.76437,0,21
+198477,84378.75456,12416.85898,0,21
+198478,85248.35729,12576.25022,0,21
+198479,85905.01466,12591.96948,0,21
+198480,86345.93021,12989.68035,0,21
+198481,86694.98863,13020.93404,0,21
+198482,87812.87804,13147.78601,0,21
+198483,87639.31884,13650.41205,0,21
+198484,88533.20321,13850.70693,0,21
+198485,89138.41444,13992.92332,0,21
+198486,89622.35014,14205.20553,0,21
+198487,89957.63081,14404.03975,0,21
+198488,90702.29784,14697.73195,0,21
+198489,91268.37515,14908.97722,0,21
+198490,91453.05591,15061.23149,0,21
+198491,92214.31648,15146.75703,0,21
+198492,92762.67904,15588.65163,0,21
+198493,93032.1158,15630.89418,0,21
+198494,93721.51471,15935.0474,0,21
+198495,94207.80325,16030.40865,0,21
+198496,94591.14834,16414.25885,0,21
+198497,95369.25683,16385.90497,0,21
+198498,95445.93099,16902.51744,0,21
+198499,96254.7913,16961.1004,0,21
+198500,96512.65247,17120.4562,0,21
+198501,97190.99988,19993.37259,0,21
+198502,97530.52667,19677.63236,0,21
+198503,98009.14176,20259.26086,0,21
+198504,98561.02247,21043.80286,0,21
+198505,98951.63424,21554.9188,0,21
+198506,99514.98195,22138.70365,0,21
+198507,99853.20844,22648.63965,0,21
+198508,100328.7453,23179.88461,0,21
+198509,100885.2939,23953.55278,0,21
+198510,101170.758,24134.29044,0,21
+198511,101942.0973,24988.95943,0,21
+198512,102153.6507,25370.97141,0,21
+198513,102552.6774,25847.52895,0,21
+198514,103103.6061,26514.54067,0,21
+198515,103648.1027,26846.85498,0,21
+198516,103798.1393,27448.03555,0,21
+198517,104536.9333,27748.88257,0,21
+198518,104826.8617,28776.14557,0,21
+198519,105223.8292,28651.8901,0,21
+198520,105654.5896,29374.41587,0,21
+198521,106368.2914,29837.60376,0,21
+198522,106205.5211,30382.60141,0,21
+198523,107232.5219,31087.00353,0,21
+198524,107352.087,31369.55585,0,21
+198525,107737.4924,31627.74857,0,21
+198526,108407.2664,32572.58312,0,21
+198527,108468.8605,32801.57057,0,21
+198528,109292.2895,33119.01518,0,21
+198529,109294.1809,33812.01185,0,21
+198530,110171.2827,34088.15055,0,21
+198531,110262.1654,34777.00463,0,21
+198532,110448.3587,35053.8812,0,21
+198533,111526.6866,35546.38402,0,21
+198534,111279.6866,36254.29725,0,21
+198535,111989.6919,36501.14228,0,21
+198536,112253.7657,37028.93637,0,21
+198537,112737.5287,37416.56496,0,21
+198538,113263.8548,37975.53703,0,21
+198539,113476.3741,38175.03298,0,21
+198540,113885.9154,38916.75344,0,21
+198541,0,0,0,21
+198542,0,0,0,21
+198543,0,0,0,21
+198544,0,0,0,21
+198545,0,368483.9017,716383.3378,21
+198546,0,0,0,21
+198547,339972.492,0,0,21
+198548,0,0,0,21
+198549,0,0,0,21
+198550,0,0,0,21
+198551,0,0,0,21
+198552,0,0,0,21
+198553,0,0,0,21
+198554,0,0,0,21
+198555,0,0,0,21
+198556,0,0,0,21
+198557,0,0,0,21
+198558,0,0,0,21
+198559,0,0,0,21
+198560,0,0,0,21
+198561,0,0,0,21
+198562,0,0,0,21
+198563,0,0,0,21
+198564,0,0,0,21
+198565,0,0,0,21
+198566,0,0,0,21
+198567,0,0,0,21
+198568,0,0,0,21
+198569,0,0,0,21
+198570,0,0,0,21
+198571,0,0,0,21
+198572,0,0,0,21
+198573,0,0,0,21
+198574,0,0,0,21
+198575,0,0,0,21
+198576,0,0,0,21
+198577,0,0,0,21
+198578,0,82.15428335,0,21
+198579,0,0,712226.2223,21
+198580,0,368524.597,0,21
+198581,0,0,0,21
+198582,0,110.8737024,0,21
+198583,339974.3467,0,0,21
+198584,0,0,0,21
+198585,0,0,0,21
+198586,0,79.50792771,0,21
+198587,0,0,0,21
+198588,0,0,0,21
+198589,0,0,0,21
+198590,0,106.293823,0,21
+198591,0,0,0,21
+198592,0,0,0,21
+198593,0,0,0,21
+198594,0,100.0955066,0,21
+198595,0,0,0,21
+198596,0,0,0,21
+198597,0,0,0,21
+198598,0,0,0,21
+198599,0,0,0,21
+198600,0,129.0730199,0,15.6
+198601,0,0,0,15.6
+198602,0,0,0,15.6
+198603,0,0,0,15.6
+198604,0,115.5373725,0,15.6
+198605,0,0,0,15.6
+198606,0,0,0,15.6
+198607,0,0,0,15.6
+198608,0,107.5436743,0,15.6
+198609,0,0,0,15.6
+198610,0,0,0,15.6
+198611,0,0,0,15.6
+198612,0,105.8867172,0,15.6
+198613,0,0,708379.2058,15.6
+198614,0,0,0,15.6
+198615,0,368539.9025,0,15.6
+198616,0,103.71798,0,15.6
+198617,0,0,0,15.6
+198618,0,0,0,15.6
+198619,339974.3827,0,0,15.6
+198620,0,85.68157822,0,15.6
+198621,0,0,0,15.6
+198622,0,0,0,15.6
+198623,0,0,0,15.6
+198624,0,106.7668773,0,15.6
+198625,0,0,0,15.6
+198626,0,0,0,15.6
+198627,0,0,0,15.6
+198628,0,106.2656304,0,15.6
+198629,0,0,0,15.6
+198630,0,0,0,15.6
+198631,0,0,0,15.6
+198632,0,111.769562,0,15.6
+198633,0,0,0,15.6
+198634,0,0,0,15.6
+198635,0,0,0,15.6
+198636,0,112.3794948,0,15.6
+198637,0,0,0,15.6
+198638,0,0,0,15.6
+198639,0,0,0,15.6
+198640,0,111.8787231,0,15.6
+198641,0,0,0,15.6
+198642,0,0,0,15.6
+198643,0,0,0,15.6
+198644,0,108.979635,0,15.6
+198645,0,0,0,15.6
+198646,0,0,0,15.6
+198647,0,0,704936.7693,15.6
+198648,0,105.607046,0,15.6
+198649,0,0,0,15.6
+198650,0,368541.8814,0,15.6
+198651,0,0,0,15.6
+198652,0,98.70825336,0,15.6
+198653,0,0,0,15.6
+198654,0,0,0,15.6
+198655,339971.7265,0,0,15.6
+198656,0,77.21766382,0,15.6
+198657,0,0,0,15.6
+198658,0,0,0,15.6
+198659,0,0,0,15.6
+198660,0,99.09144579,0,15.6
+198661,0,0,0,15.6
+198662,0,0,0,15.6
+198663,0,434132.0617,0,15.6
+198664,0,0,0,15.6
+198665,0,0,0,15.6
+198666,0,0,0,15.6
+198667,0,0,0,15.6
+198668,0,0,0,15.6
+198669,0,0,0,15.6
+198670,0,0,0,15.6
+198671,0,0,0,15.6
+198672,0,0,0,15.6
+198673,0,0,0,15.6
+198674,0,0,0,15.6
+198675,0,0,0,15.6
+198676,0,0,0,15.6
+198677,0,0,0,15.6
+198678,0,0,0,15.6
+198679,0,0,0,15.6
+198680,0,0,0,15.6
+198681,0,0,0,15.6
+198682,0,0,702604.6982,15.6
+198683,0,0,0,15.6
+198684,0,0,0,15.6
+198685,0,368551.0453,0,15.6
+198686,0,0,0,15.6
+198687,0,0,0,15.6
+198688,0,0,0,15.6
+198689,0,433804.9887,0,15.6
+198690,0,0,0,15.6
+198691,340012.2627,0,0,15.6
+198692,0,0,0,15.6
+198693,0,0,0,15.6
+198694,0,0,0,15.6
+198695,0,0,0,15.6
+198696,0,0,0,15.6
+198697,0,0,0,15.6
+198698,0,0,0,15.6
+198699,0,0,0,15.6
+198700,0,0,0,15.6
+198701,0,0,0,15.6
+198702,0,0,0,15.6
+198703,0,0,0,15.6
+198704,0,0,0,15.6
+198705,0,0,0,15.6
+198706,0,0,0,15.6
+198707,0,0,0,15.6
+198708,0,433665.8039,0,15.6
+198709,0,0,0,15.6
+198710,0,0,0,15.6
+198711,0,0,0,15.6
+198712,0,0,0,15.6
+198713,0,0,0,15.6
+198714,0,0,0,15.6
+198715,0,0,0,15.6
+198716,0,0,0,15.6
+198717,0,0,699042.2252,15.6
+198718,0,0,0,15.6
+198719,0,432811.9868,0,15.6
+198720,0,368561.6895,0,15.6
+198721,0,0,0,15.6
+198722,0,0,0,15.6
+198723,0,0,0,15.6
+198724,0,0,0,15.6
+198725,0,0,0,15.6
+198726,0,0,0,15.6
+198727,340053.6345,0,0,15.6
+198728,0,0,0,15.6
+198729,0,0,0,15.6
+198730,0,0,0,15.6
+198731,0,0,0,15.6
+198732,0,0,0,15.6
+198733,0,433270.9353,0,15.6
+198734,0,0,0,15.6
+198735,0,0,0,15.6
+198736,0,0,0,15.6
+198737,0,0,0,15.6
+198738,0,0,0,15.6
+198739,0,0,0,15.6
+198740,0,0,0,15.6
+198741,0,0,0,15.6
+198742,0,0,0,15.6
+198743,0,0,0,15.6
+198744,0,432698.2872,0,15.6
+198745,0,0,0,15.6
+198746,0,0,0,15.6
+198747,0,0,0,15.6
+198748,0,0,0,15.6
+198749,0,0,0,15.6
+198750,0,0,0,15.6
+198751,0,0,0,15.6
+198752,0,0,695949.267,15.6
+198753,0,0,0,15.6
+198754,0,0,0,15.6
+198755,0,368551.3741,0,15.6
+198756,0,0,0,15.6
+198757,0,0,0,15.6
+198758,0,0,0,15.6
+198759,0,0,0,15.6
+198760,0,433350.6452,0,15.6
+198761,0,0,0,15.6
+198762,0,0,0,15.6
+198763,0,0,0,15.6
+198764,340059.0492,0,0,15.6
+198765,0,0,0,15.6
+198766,0,0,0,15.6
+198767,0,0,0,15.6
+198768,0,0,0,15.6
+198769,0,0,0,15.6
+198770,0,0,0,15.6
+198771,0,432705.7905,0,15.6
+198772,0,0,0,15.6
+198773,0,0,0,15.6
+198774,0,0,0,15.6
+198775,0,0,0,15.6
+198776,0,0,0,15.6
+198777,0,0,0,15.6
+198778,0,0,0,15.6
+198779,0,0,0,15.6
+198780,0,0,0,15.6
+198781,0,0,0,15.6
+198782,0,432550.0665,0,15.6
+198783,0,0,0,15.6
+198784,0,0,0,15.6
+198785,0,0,0,15.6
+198786,0,0,0,15.6
+198787,0,0,694294.663,15.6
+198788,0,0,0,15.6
+198789,0,0,0,15.6
+198790,0,368533.8526,0,15.6
+198791,0,0,0,15.6
+198792,0,0,0,15.6
+198793,0,0,0,15.6
+198794,0,0,0,15.6
+198795,0,0,0,15.6
+198796,0,432729.0548,0,15.6
+198797,0,0,0,15.6
+198798,0,0,0,15.6
+198799,0,0,0,15.6
+198800,0,0,0,15.6
+198801,340060.1946,0,0,15.6
+198802,0,0,0,15.6
+198803,0,0,0,15.6
+198804,0,0,0,15.6
+198805,0,0,0,15.6
+198806,0,0,0,15.6
+198807,0,0,0,15.6
+198808,0,0,0,15.6
+198809,0,0,0,15.6
+198810,0,0,0,15.6
+198811,0,0,0,15.6
+198812,0,0,0,15.6
+198813,0,0,0,15.6
+198814,0,0,0,15.6
+198815,0,0,0,15.6
+198816,0,0,0,15.6
+198817,0,0,0,15.6
+198818,0,0,0,15.6
+198819,0,0,0,15.6
+198820,0,0,0,15.6
+198821,0,0,0,15.6
+198822,0,0,691212.5405,15.6
+198823,0,110.0800446,0,15.6
+198824,0,0,0,15.6
+198825,0,368505.7947,0,15.6
+198826,0,0,0,15.6
+198827,0,3.528759388,0,15.6
+198828,0,0,0,15.6
+198829,0,65.70133819,0,15.6
+198830,0,0,0,15.6
+198831,0,0,0,15.6
+198832,0,0,0,15.6
+198833,0,0,0,15.6
+198834,0,246.9400439,0,15.6
+198835,0,0,0,15.6
+198836,0,0,0,15.6
+198837,0,0,0,15.6
+198838,340058.7853,0,0,15.6
+198839,0,0,0,15.6
+198840,0,0,0,15.6
+198841,0,0,0,15.6
+198842,0,0,0,15.6
+198843,0,0,0,15.6
+198844,0,0,0,15.6
+198845,0,336.935616,0,15.6
+198846,0,0,0,15.6
+198847,0,0,0,15.6
+198848,0,0,0,15.6
+198849,0,0,0,15.6
+198850,0,0,0,15.6
+198851,0,0,0,15.6
+198852,0,0,0,15.6
+198853,0,0,0,15.6
+198854,0,0,0,15.6
+198855,0,0,0,15.6
+198856,0,0,0,15.6
+198857,0,0,690568.4553,15.6
+198858,0,355.281555,0,15.6
+198859,0,0,0,15.6
+198860,0,368482.5909,0,15.6
+198861,0,0,0,15.6
+198862,0,0,0,15.6
+198863,0,0,0,15.6
+198864,0,0,0,15.6
+198865,0,0,0,15.6
+198866,0,0,0,15.6
+198867,0,0,0,15.6
+198868,0,0,0,15.6
+198869,0,0,0,15.6
+198870,0,2.826699629,0,15.6
+198871,0,0,0,15.6
+198872,0,432604.1861,0,15.6
+198873,0,0,0,15.6
+198874,0,0,0,15.6
+198875,340082.7614,0,0,15.6
+198876,0,0,0,15.6
+198877,0,0,0,15.6
+198878,0,0,0,15.6
+198879,0,0,0,15.6
+198880,0,0,0,15.6
+198881,0,0,0,15.6
+198882,0,0,0,15.6
+198883,0,432020.5707,0,15.6
+198884,0,0,0,15.6
+198885,0,0,0,15.6
+198886,0,0,0,15.6
+198887,0,0,0,15.6
+198888,0,0,0,15.6
+198889,0,0,0,15.6
+198890,0,0,0,15.6
+198891,0,0,0,15.6
+198892,0,0,687007.3862,15.6
+198893,0,0,0,15.6
+198894,0,431878.3129,0,15.6
+198895,0,368463.8543,0,15.6
+198896,0,0,0,15.6
+198897,0,0,0,15.6
+198898,0,0,0,15.6
+198899,0,0,0,15.6
+198900,0,0,0,15.6
+198901,0,0,0,15.6
+198902,0,0,0,15.6
+198903,0,0,0,15.6
+198904,0,0,0,15.6
+198905,0,0,0,15.6
+198906,0,0,0,15.6
+198907,0,0,0,15.6
+198908,0,0,0,15.6
+198909,0,0,0,15.6
+198910,0,0,0,15.6
+198911,0,0,0,15.6
+198912,340108.9901,0,0,15.6
+198913,0,0,0,15.6
+198914,0,0,0,15.6
+198915,0,0,0,15.6
+198916,0,0,0,15.6
+198917,0,0,0,15.6
+198918,0,0,0,15.6
+198919,0,0,0,15.6
+198920,0,0,0,15.6
+198921,0,0,0,15.6
+198922,0,63.54625132,0,15.6
+198923,0,0,0,15.6
+198924,0,0,0,15.6
+198925,0,0,0,15.6
+198926,0,0,686570.8453,15.6
+198927,0,0,0,15.6
+198928,0,0,0,15.6
+198929,0,0,0,15.6
+198930,0,0,0,15.6
+198931,0,368589.8602,0,15.6
+198932,0,0,0,15.6
+198933,0,0,0,15.6
+198934,0,0,0,15.6
+198935,0,0,0,15.6
+198936,0,228.035525,0,15.6
+198937,0,0,0,15.6
+198938,0,0,0,15.6
+198939,0,0,0,15.6
+198940,0,0,0,15.6
+198941,0,0,0,15.6
+198942,0,0,0,15.6
+198943,0,0,0,15.6
+198944,0,0,0,15.6
+198945,0,0,0,15.6
+198946,0,2.665582913,0,15.6
+198947,340132.3067,0,0,15.6
+198948,0,121.1494882,0,15.6
+198949,0,0,0,15.6
+198950,0,0,0,15.6
+198951,0,0,0,15.6
+198952,0,67.38830373,0,15.6
+198953,0,0,0,15.6
+198954,0,0,0,15.6
+198955,0,0,0,15.6
+198956,0,85.4043619,0,15.6
+198957,0,0,0,15.6
+198958,0,0,0,15.6
+198959,0,0,0,15.6
+198960,0,84.34869272,683890.9658,17.8
+198961,90831.265,805997.4175,0,17.8
+198962,475708.0028,0,0,17.8
+198963,3563.648909,0,0,17.8
+198964,23618.21048,20442.37486,0,17.8
+198965,29049.42602,515107.9195,0,17.8
+198966,22236.70062,80504.66198,0,17.8
+198967,23336.70152,0,0,17.8
+198968,23358.09143,67.38190129,0,17.8
+198969,23273.48972,0,0,17.8
+198970,23150.74526,0,0,17.8
+198971,23194.4611,0,0,17.8
+198972,23080.50728,0,0,17.8
+198973,23022.60923,63.17143308,0,17.8
+198974,22958.00843,0,0,17.8
+198975,22927.73348,0,0,17.8
+198976,22908.35237,0,0,17.8
+198977,22834.40872,0,0,17.8
+198978,22747.90174,0,0,17.8
+198979,22813.05064,0,0,17.8
+198980,22660.60607,0,0,17.8
+198981,22667.22621,0,0,17.8
+198982,362780.9077,119.366996,0,17.8
+198983,22564.80158,0,0,17.8
+198984,22528.77578,0,0,17.8
+198985,22542.73249,0,0,17.8
+198986,22470.07094,0,0,17.8
+198987,22432.30431,252.3012738,0,17.8
+198988,22388.40052,0,0,17.8
+198989,22388.72447,133.2462633,0,17.8
+198990,22321.81432,1704.130266,0,17.8
+198991,0,714.3900982,0,17.8
+198992,0,1052.690981,0,17.8
+198993,239.3238013,1070.05961,0,17.8
+198994,2228.281746,1104.678527,683337.72,17.8
+198995,906.1686584,1104.678515,0,17.8
+198996,74799.3366,1139.142708,0,17.8
+198997,2114.627662,1156.317879,0,17.8
+198998,23749.85369,1173.455666,0,17.8
+198999,26654.66122,369712.733,0,17.8
+199000,23016.64259,1190.55646,0,17.8
+199001,23416.91685,1207.620684,0,17.8
+199002,23438.87191,1207.620669,0,17.8
+199003,23405.35925,1190.556416,0,17.8
+199004,23825.26615,1290.322083,0,17.8
+199005,23501.28317,1207.620624,0,17.8
+199006,23717.3952,1241.640856,0,17.8
+199007,23550.38602,1241.64084,0,17.8
+199008,23683.0064,1241.640824,0,17.8
+199009,23558.17386,1258.597552,0,17.8
+199010,23672.41097,0,0,17.8
+199011,23576.81115,0,0,17.8
+199012,23591.56605,0,0,17.8
+199013,23616.545,16.68364681,0,17.8
+199014,23426.67876,0,0,17.8
+199015,23454.41822,0,0,17.8
+199016,23385.43655,0,0,17.8
+199017,363575.0161,65.90026091,0,17.8
+199018,21486.30382,0,0,17.8
+199019,21394.72472,0,0,17.8
+199020,21463.17312,0,0,20
+199021,980428.1148,179249.3494,0,20
+199022,34151.96086,62199.01857,0,20
+199023,118425.7036,145419.6729,0,20
+199024,270140.1701,120128.4619,0,20
+199025,197273.7747,121644.8159,0,20
+199026,213238.5832,120797.7906,0,20
+199027,204788.1483,122437.5994,0,20
+199028,206995.4911,121786.982,0,20
+199029,207161.8737,121685.1446,0,20
+199030,206852.7932,120924.6418,0,20
+199031,205996.4344,120970.5058,0,20
+199032,206574.7885,120450.1872,0,20
+199033,205747.9855,120628.4804,0,20
+199034,205956.9898,119695.9061,0,20
+199035,205785.2974,119602.1429,0,20
+199036,205216.649,119446.7636,102.6489661,20
+199037,205396.4708,119279.5536,396.5683767,20
+199038,205042.9788,118699.8272,232.173263,20
+199039,205362.3311,118263.045,683.0158843,20
+199040,204689.5631,117856.0725,501.7019682,20
+199041,205026.9839,117532.4281,623.6624124,20
+199042,204470.5296,117430.1682,653.7140633,20
+199043,204903.9114,116844.8691,713.4704288,20
+199044,204463.769,116879.3448,743.1957573,20
+199045,204430.2825,116419.6558,787.6003479,20
+199046,204351.7449,116214.4185,831.7596272,20
+199047,204360.2091,115918.066,875.7319523,20
+199048,204215.0222,115441.7104,890.3474591,20
+199049,203904.5749,115311.638,977.5188602,20
+199050,204172.0828,115256.2944,977.5567492,20
+199051,203832.2783,114489.882,1020.885699,20
+199052,204050.0044,114602.2141,1064.016029,20
+199053,203483.0773,115329.9749,1107.009637,20
+199054,203221.175,115634.2784,1135.579847,20
+199055,203592.8768,114938.0245,1178.265391,20
+199056,202897.6245,115139.3155,1220.8285,20
+199057,202892.9929,115137.269,1234.98634,20
+199058,202865.5832,114926.3401,1291.395383,20
+199059,203042.1635,114651.7686,1319.524681,20
+199060,201764.9852,114971.7284,1277.439158,20
+199061,202490.0601,114515.1148,1277.432337,20
+199062,201984.4793,114564.811,1333.702202,20
+199063,202129.4911,114678.2375,893.7369411,20
+199064,201503.3705,114063.0324,797.4376849,20
+199065,201006.4972,114494.7698,762.4694814,20
+199066,200662.7829,113855.0923,708.3444191,20
+199067,200441.7396,114354.6223,690.1173375,20
+199068,200328.2478,113732.842,717.8207332,20
+199069,200037.169,114050.2807,717.8350668,20
+199070,199629.1153,113593.6567,745.4209641,20
+199071,199632.7851,113697.3116,745.4364462,20
+199072,199313.434,113475.2537,759.1944382,20
+199073,198839.0155,113353.4383,772.9245917,20
+199074,199171.8257,113534.2708,786.6272976,20
+199075,198350.1096,113152.5,800.302929,20
+199076,198544.0098,112979.1819,800.3208296,20
+199077,197802.3155,113268.6662,827.5741277,20
+199078,198065.5565,112755.5989,827.5932961,20
+199079,197397.1864,113070.2994,827.6124595,20
+199080,197550.5556,112447.2938,854.7610929,21
+199081,186643.3599,112040.1567,690.3247348,21
+199082,185313.6808,110561.181,662.5154415,21
+199083,184527.6254,109118.4718,690.3506633,21
+199084,184153.5597,108614.9931,676.4677097,21
+199085,183506.3077,107573.441,690.3768419,21
+199086,182951.5779,107993.3475,690.39006,21
+199087,182964.1551,107428.1614,704.2694774,21
+199088,181901.7256,106775.397,704.2832421,21
+199089,181781.6756,107262.9234,704.2970069,21
+199090,181087.7508,106323.126,704.3107757,21
+199091,180720.1081,106734.8881,704.3245333,21
+199092,180407.3304,105992.2232,718.1755827,21
+199093,179802.7416,105729.9375,718.1899049,21
+199094,179243.9311,105807.6138,718.2042233,21
+199095,178979.0533,105633.272,732.0267869,21
+199096,178297.0276,104848.9067,732.0416722,21
+199097,178265.8603,105311.9909,732.056561,21
+199098,177314.5139,104403.4926,732.0714466,21
+199099,177208.6904,104484.3127,745.8662564,21
+199100,176618.671,104704.1346,732.101493,21
+199101,176127.7967,104493.4472,745.8969168,21
+199102,175798.4161,103996.574,745.9123799,21
+199103,175387.482,104495.1465,759.6798671,21
+199104,174686.1513,103359.7859,745.9435847,21
+199105,174255.7525,103965.1453,745.9590487,21
+199106,173960.5063,102945.0524,759.7274669,21
+199107,173403.408,103237.8799,759.7435186,21
+199108,173084.105,102972.2071,746.0059886,21
+199109,172744.7832,102586.025,773.5004958,21
+199110,171894.9885,102212.876,746.0374549,21
+199111,171386.0999,102130.7202,773.5332251,21
+199112,170581.6794,101968.3671,759.8237745,21
+199113,168379.3833,102015.9446,759.8398189,21
+199114,167564.5287,101221.2529,759.8558682,21
+199115,166550.5929,101535.1188,773.5989674,21
+199116,165369.3546,101078.6702,759.8882471,21
+199117,165072.3014,101064.8019,759.9042965,21
+199118,163371.4191,100803.0342,773.6483337,21
+199119,162963.0278,100284.0633,759.9366638,21
+199120,161677.8267,100444.759,773.6813403,21
+199121,160932.4397,100299.5355,746.2113418,21
+199122,159608.4013,99583.42949,773.7140595,21
+199123,159024.2576,99961.77997,773.7306989,21
+199124,156399.0312,99330.5717,746.2588073,21
+199125,155468.8088,99216.81039,773.7634165,21
+199126,153984.1786,99068.76377,760.0495285,21
+199127,153012.0528,99049.01699,760.0655751,21
+199128,152289.2575,98798.86212,746.3217151,21
+199129,150763.3801,98609.61879,773.8288427,21
+199130,149848.8322,98583.80085,746.3531648,21
+199131,148745.9729,98523.20835,760.1294569,21
+199132,147502.309,98521.92046,746.3843449,21
+199133,146609.3009,98022.5646,746.3997918,21
+199134,145281.0996,98266.73655,760.1770116,21
+199135,144170.7457,97858.39588,732.6397574,21
+199136,143389.9726,98317.79869,746.4461447,21
+199137,141607.4578,97388.93623,746.4615943,21
+199138,140885.8578,98151.55168,732.6849036,21
+199139,139567.571,97357.5848,746.4922086,21
+199140,138310.1448,97362.77065,718.8926367,21
+199141,59175.76975,58138.30173,0,21
+199142,53073.98164,54681.26581,0,21
+199143,52146.47388,54042.83829,0,21
+199144,50562.42681,53156.67396,0,21
+199145,49870.85212,51836.45454,0,21
+199146,48486.66887,50835.41097,0,21
+199147,47576.7154,49868.86538,0,21
+199148,46637.2368,49623.69584,0,21
+199149,45718.30516,48688.69757,0,21
+199150,44591.32386,47937.81689,0,21
+199151,44144.79859,47375.89415,0,21
+199152,42653.83337,46707.76499,0,21
+199153,42202.58507,46110.15987,0,21
+199154,40955.72167,45492.97972,0,21
+199155,40406.96693,44683.09986,0,21
+199156,39684.71503,44453.39057,0,21
+199157,39152.51387,43294.89182,0,21
+199158,38262.67084,43233.26872,0,21
+199159,37956.08356,42138.72111,0,21
+199160,37444.23555,41981.54863,0,21
+199161,36889.5537,40757.10616,0,21
+199162,36407.55798,40173.6835,0,21
+199163,35904.35326,39508.60943,0,21
+199164,35625.67803,39111.47583,0,21
+199165,35016.42494,38307.85119,0,21
+199166,34491.30364,38213.84944,0,21
+199167,33970.99904,37236.55028,0,21
+199168,33714.83908,36800.60144,0,21
+199169,33094.4281,36333.52831,0,21
+199170,32653.06799,35539.99839,0,21
+199171,32204.6849,35024.61731,0,21
+199172,31575.37002,34623.19504,0,21
+199173,30897.94728,33728.98874,0,21
+199174,30669.90713,33715.34299,0,21
+199175,30035.9333,32591.336,0,21
+199176,29767.05315,32436.9038,0,21
+199177,29086.92857,31652.42633,0,21
+199178,28888.76382,31304.56078,0,21
+199179,28339.3068,30694.56716,0,21
+199180,28142.69692,30022.09889,0,21
+199181,28052.99475,29536.09875,0,21
+199182,27656.72689,29211.83507,0,21
+199183,27567.88813,28246.7721,0,21
+199184,27492.66049,28219.19834,0,21
+199185,26915.4677,27502.23014,0,21
+199186,27184.88367,26864.67673,0,21
+199187,26550.64124,26513.37992,0,21
+199188,26512.23146,25962.22602,0,21
+199189,26419.36861,25497.62181,0,21
+199190,26000.59907,24956.49027,0,21
+199191,25925.84266,24399.60046,0,21
+199192,25720.53705,24125.90574,0,21
+199193,25428.72067,23383.60529,0,21
+199194,25323.60436,23157.89764,0,21
+199195,25054.38153,22749.11044,0,21
+199196,24832.54548,22161.97918,0,21
+199197,24707.81865,21772.14735,0,21
+199198,24403.17477,21166.49071,0,21
+199199,24192.84982,20788.46659,0,21
+199200,24136.89351,20202.24526,0,21
+199201,23666.68855,19932.51578,0,21
+199202,23569.15088,19821.83663,0,21
+199203,23096.83789,19641.90809,0,21
+199204,22998.98061,19018.90019,0,21
+199205,22721.39452,19073.74626,0,21
+199206,22214.36229,18591.08236,0,21
+199207,22259.61564,18305.47677,0,21
+199208,21855.2177,18092.55749,0,21
+199209,21553.45303,17698.6179,0,21
+199210,21312.68192,17532.8085,0,21
+199211,20968.09624,17195.64909,0,21
+199212,20725.91497,16870.55341,0,21
+199213,20591.52052,16647.33595,0,21
+199214,20123.6637,16379.0799,0,21
+199215,19922.97211,16002.33114,0,21
+199216,19721.06824,15586.99854,0,21
+199217,19249.27062,15491.27246,0,21
+199218,19143.26668,15155.44201,0,21
+199219,18852.63589,14693.19564,0,21
+199220,18538.93675,14434.52876,0,21
+199221,18257.0089,13859.81101,0,21
+199222,17995.16735,13073.23825,0,21
+199223,17634.83688,13183.06414,0,21
+199224,17580.04782,12421.58632,0,21
+199225,17073.4665,12258.94088,0,21
+199226,16951.86284,11977.83842,0,21
+199227,16485.48998,11191.2161,0,21
+199228,16374.23156,11183.04572,0,21
+199229,16060.95445,10508.95699,0,21
+199230,15769.0141,10101.47577,0,21
+199231,15464.63045,9788.512507,0,21
+199232,15384.57672,9289.011204,0,21
+199233,14874.67714,8434.101012,0,21
+199234,14645.4259,8150.006151,0,21
+199235,14209.99531,7839.290595,0,21
+199236,13909.52205,6724.962219,0,21
+199237,13850.4367,6820.6487,0,21
+199238,13410.42148,5908.988966,0,21
+199239,13234.15493,6029.193899,0,21
+199240,12967.82223,5610.523121,0,21
+199241,12882.87472,5601.354209,0,21
+199242,12367.02219,5359.459276,0,21
+199243,12384.79521,5153.784894,0,21
+199244,11971.87272,5218.874194,0,21
+199245,11766.84987,4849.431415,0,21
+199246,11489.94651,4767.181651,0,21
+199247,11257.98556,4568.06758,0,21
+199248,11100.35105,4326.248746,0,21
+199249,10754.01191,4380.834703,0,21
+199250,10594.94322,4040.763292,0,21
+199251,10315.10858,3757.682425,0,21
+199252,10038.69714,3876.235466,0,21
+199253,9983.14679,3439.307312,0,21
+199254,9728.76331,3379.983381,0,21
+199255,9527.670441,3284.598071,0,21
+199256,9321.996109,2874.893303,0,21
+199257,9176.760211,2957.681838,0,21
+199258,9031.111838,2544.837817,0,21
+199259,8811.526445,2454.081756,0,21
+199260,8664.96801,2342.691023,0,21
+199261,8173.192984,1742.860913,0,21
+199262,8172.987827,1789.979951,0,21
+199263,8037.014221,1630.178739,0,21
+199264,7900.694784,1452.12289,0,21
+199265,7900.694966,1516.878848,0,21
+199266,7651.759754,1255.278742,0,21
+199267,7626.990333,1255.278796,0,21
+199268,7401.625839,1238.813725,0,21
+199269,7489.596584,1055.287411,0,21
+199270,7238.722804,867.5193365,0,21
+199271,7238.722808,867.5195534,0,21
+199272,7100.295353,850.9069011,0,21
+199273,6860.049063,654.525918,0,21
+199274,7075.185106,637.8108883,0,21
+199275,6593.356621,637.8108589,0,21
+199276,6809.652809,621.0429365,0,21
+199277,6568.069764,604.2210733,0,21
+199278,6299.793809,604.2210695,0,21
+199279,6171.441822,604.2210609,0,21
+199280,6158.670286,587.3442086,0,21
+199281,5900.870161,570.4110359,0,21
+199282,5888.032432,553.4203089,0,21
+199283,5745.667994,553.4203861,0,21
+199284,5628.692632,536.3740851,0,21
+199285,5602.851316,519.2610632,0,21
+199286,5472.554464,502.0829185,0,21
+199287,5210.758259,502.0893696,0,21
+199288,5328.854396,484.85347,0,21
+199289,5171.593707,467.5525463,0,21
+199290,4947.296882,467.5525983,0,21
+199291,5026.875633,432.7472666,0,21
+199292,4775.530363,432.747277,0,21
+199293,4642.623835,397.655507,0,21
+199294,4629.416692,397.6555289,0,21
+199295,4482.762919,362.2577502,0,21
+199296,4348.867031,379.9948144,0,21
+199297,4201.141954,362.2573728,0,21
+199298,4201.142331,344.4367628,0,21
+199299,4052.830785,326.5300238,0,21
+199300,3794.803941,308.5336728,0,21
+199301,3890.437279,290.4434408,0,21
+199302,3781.342956,272.254574,0,21
+199303,3740.836593,272.2545859,0,21
+199304,3754.37253,217.0381642,0,21
+199305,3466.947665,235.5586015,0,21
+199306,3466.947732,198.3921642,0,21
+199307,3315.45335,179.6107024,0,21
+199308,3176.94503,179.6107156,0,21
+199309,3163.235386,131.9797815,0,21
+199310,3010.262326,141.5913641,0,21
+199311,2884.132192,102.845359,0,21
+199312,2856.498055,83.13314094,0,21
+199313,2588.215859,83.13314595,0,21
+199314,2701.902596,42.77680604,0,21
+199315,2418.050071,32.42040763,0,21
+199316,2288.814466,11.16972062,0,21
+199317,2390.029153,0,0,21
+199318,1985.406032,0,0,21
+199319,2102.477675,0,0,21
+199320,1943.017107,0,0,21
+199321,2102.440517,0,0,21
+199322,2088.34806,0,0,21
+199323,1928.817814,0,0,21
+199324,1914.582281,0,0,21
+199325,1648.793928,0,0,21
+199326,1739.380454,0,0,21
+199327,1485.294836,0,0,21
+199328,1591.483876,0,0,21
+199329,1305.588945,0,0,21
+199330,1276.627454,0,0,21
+199331,1152.602272,0,0,21
+199332,1108.979983,0,0,21
+199333,967.941633,0,0,21
+199334,808.7147066,0,0,21
+199335,938.654345,0,0,21
+199336,612.7236264,0,0,21
+199337,612.7236633,0,0,21
+199338,597.9280876,0,0,21
+199339,583.0872837,0,0,21
+199340,553.2664779,0,0,21
+199341,568.2004392,0,0,21
+199342,523.2536532,0,0,21
+199343,523.2536644,0,0,21
+199344,523.253678,0,0,21
+199345,477.8555706,0,0,21
+199346,493.0403647,0,0,21
+199347,462.6170552,0,0,21
+199348,447.3223066,0,0,21
+199349,447.3221335,0,0,21
+199350,416.5633719,0,0,21
+199351,416.5634093,0,0,21
+199352,401.0949912,0,0,21
+199353,385.5648172,0,0,21
+199354,385.5648302,0,0,21
+199355,369.9709242,0,0,21
+199356,354.3111424,0,0,21
+199357,354.3111535,0,0,21
+199358,338.5831611,0,0,21
+199359,322.7843705,0,0,21
+199360,322.78438,0,0,21
+199361,306.9120712,0,0,21
+199362,290.9631184,0,0,21
+199363,290.9631262,0,0,21
+199364,290.9631341,0,0,21
+199365,258.8212014,0,0,21
+199366,258.8212076,0,0,21
+199367,258.8212139,0,0,21
+199368,242.6201329,0,0,21
+199369,226.3260203,0,0,21
+199370,234.4850421,0,0,21
+199371,209.9333316,0,0,21
+199372,209.9333357,0,0,21
+199373,201.6980607,0,0,21
+199374,193.435661,0,0,21
+199375,176.8255182,0,0,21
+199376,176.8255211,0,0,21
+199377,168.4755722,0,0,21
+199378,160.0940544,0,0,21
+199379,143.2305806,0,0,21
+199380,143.2305825,0,0,21
+199381,508.1720035,0,0,21
+199382,523.2530503,0,0,21
+199383,493.0396817,0,0,21
+199384,508.1719759,0,0,21
+199385,2394.825263,0,0,21
+199386,1996.895268,0,0,21
+199387,1867.65975,0,0,21
+199388,2125.275338,0,0,21
+199389,1981.710431,0,0,21
+199390,2110.090518,0,0,21
+199391,1981.710387,0,0,21
+199392,2237.673144,0,0,21
+199393,1951.178108,0,0,21
+199394,1966.471779,0,0,21
+199395,2079.558162,0,0,21
+199396,1935.827716,0,0,21
+199397,1951.178019,0,0,21
+199398,2064.207764,0,0,21
+199399,1935.82765,0,0,21
+199400,2064.207715,0,0,21
+199401,1920.419067,0,0,21
+199402,2048.799127,0,0,21
+199403,2048.799102,0,0,21
+199404,2033.330623,0,0,21
+199405,1920.418978,0,0,21
+199406,2160.913216,0,0,21
+199407,1904.950481,0,0,21
+199408,2145.382961,0,0,21
+199409,2033.330502,0,0,21
+199410,2017.800278,0,0,21
+199411,2017.800254,0,0,21
+199412,2145.382855,0,0,21
+199413,2002.20628,0,0,21
+199414,2129.788876,0,0,21
+199415,2017.800157,0,0,21
+199416,2114.129027,0,0,21
+199417,2002.206186,0,0,21
+199418,2114.128975,0,0,21
+199419,2114.128949,0,0,21
+199420,2114.128923,0,0,21
+199421,1986.546297,0,0,21
+199422,2225.235634,0,0,21
+199423,1986.546251,0,0,21
+199424,2225.235577,0,0,21
+199425,2098.400795,0,0,21
+199426,2082.602014,0,0,21
+199427,2098.400746,0,0,21
+199428,2225.235462,0,0,21
+199429,2066.729626,0,0,21
+199430,2225.235401,0,0,21
+199431,2066.729575,0,0,21
+199432,2209.436591,0,0,21
+199433,2209.436564,0,0,21
+199434,2066.729503,0,0,21
+199435,2193.564203,0,0,21
+199436,2193.564176,0,0,21
+199437,2193.564149,0,0,21
+199438,2193.564123,0,0,21
+199439,2177.615149,0,0,21
+199440,2319.693899,0,0,21
+199441,0,0,0,21
+199442,0,0,0,21
+199443,0,0,0,21
+199444,0,0,0,21
+199445,0,0,0,21
+199446,0,0,0,21
+199447,0,0,0,21
+199448,0,0,0,21
+199449,0,0,0,21
+199450,0,0,0,21
+199451,0,0,0,21
+199452,0,0,0,21
+199453,0,0,0,21
+199454,0,0,0,21
+199455,0,0,0,21
+199456,0,0,0,21
+199457,0,0,0,21
+199458,0,0,0,21
+199459,0,0,0,21
+199460,0,0,0,21
+199461,0,0,0,21
+199462,0,0,0,21
+199463,0,0,0,21
+199464,0,0,0,21
+199465,0,0,0,21
+199466,0,0,0,21
+199467,0,0,0,21
+199468,0,0,0,21
+199469,0,0,0,21
+199470,0,0,0,21
+199471,0,0,0,21
+199472,0,0,0,21
+199473,0,0,0,21
+199474,0,0,0,21
+199475,0,0,0,21
+199476,0,0,0,21
+199477,0,0,0,21
+199478,0,0,0,21
+199479,0,0,0,21
+199480,0,0,0,21
+199481,0,0,0,21
+199482,0,0,0,21
+199483,0,0,0,21
+199484,0,0,0,21
+199485,0,0,0,21
+199486,0,0,0,21
+199487,0,0,0,21
+199488,0,0,0,21
+199489,0,0,0,21
+199490,0,0,0,21
+199491,0,0,0,21
+199492,0,0,0,21
+199493,0,0,0,21
+199494,0,0,0,21
+199495,0,0,0,21
+199496,0,0,0,21
+199497,0,0,0,21
+199498,0,0,0,21
+199499,0,0,0,21
+199500,0,0,0,21
+199501,0,0,0,21
+199502,0,0,0,21
+199503,0,0,0,21
+199504,0,0,0,21
+199505,0,0,0,21
+199506,0,0,0,21
+199507,0,0,0,21
+199508,0,0,0,21
+199509,0,0,0,21
+199510,0,0,0,21
+199511,0,0,0,21
+199512,0,0,0,21
+199513,0,0,0,21
+199514,0,0,0,21
+199515,0,0,0,21
+199516,0,0,0,21
+199517,0,0,0,21
+199518,0,0,0,21
+199519,0,0,0,21
+199520,0,0,0,21
+199521,0,0,0,21
+199522,0,0,0,21
+199523,0,0,0,21
+199524,0,0,0,21
+199525,0,0,0,21
+199526,0,0,0,21
+199527,0,0,0,21
+199528,0,0,0,21
+199529,0,0,0,21
+199530,0,0,0,21
+199531,0,0,0,21
+199532,0,0,0,21
+199533,0,0,0,21
+199534,0,0,0,21
+199535,0,0,0,21
+199536,0,0,0,21
+199537,0,0,0,21
+199538,0,0,0,21
+199539,0,0,0,21
+199540,0,0,0,21
+199541,0,0,0,21
+199542,0,0,0,21
+199543,0,0,0,21
+199544,0,0,0,21
+199545,0,0,0,21
+199546,0,0,0,21
+199547,0,0,0,21
+199548,0,0,0,21
+199549,0,0,0,21
+199550,0,0,0,21
+199551,0,0,0,21
+199552,0,0,0,21
+199553,0,0,0,21
+199554,0,0,0,21
+199555,0,0,0,21
+199556,0,0,0,21
+199557,0,0,0,21
+199558,0,0,0,21
+199559,0,0,0,21
+199560,0,0,0,21
+199561,0,0,0,21
+199562,0,0,0,21
+199563,0,0,0,21
+199564,0,0,0,21
+199565,0,0,0,21
+199566,0,0,0,21
+199567,0,0,0,21
+199568,0,0,0,21
+199569,0,0,0,21
+199570,0,0,0,21
+199571,0,0,0,21
+199572,0,0,0,21
+199573,0,0,0,21
+199574,0,0,0,21
+199575,0,0,0,21
+199576,0,0,0,21
+199577,0,0,0,21
+199578,0,0,0,21
+199579,0,0,0,21
+199580,0,0,0,21
+199581,0,0,0,21
+199582,0,0,0,21
+199583,0,0,0,21
+199584,0,0,0,21
+199585,0,0,0,21
+199586,0,0,0,21
+199587,0,0,0,21
+199588,0,0,0,21
+199589,0,0,0,21
+199590,0,0,0,21
+199591,0,0,0,21
+199592,0,0,0,21
+199593,0,0,0,21
+199594,0,0,0,21
+199595,0,0,0,21
+199596,0,0,0,21
+199597,0,0,0,21
+199598,0,0,0,21
+199599,0,0,0,21
+199600,0,0,0,21
+199601,0,0,0,21
+199602,0,0,0,21
+199603,0,0,0,21
+199604,0,0,0,21
+199605,0,0,0,21
+199606,0,0,0,21
+199607,0,0,0,21
+199608,0,0,0,21
+199609,0,0,0,21
+199610,0,0,0,21
+199611,0,0,0,21
+199612,0,0,0,21
+199613,0,0,0,21
+199614,0,0,0,21
+199615,0,0,0,21
+199616,0,0,0,21
+199617,0,0,0,21
+199618,0,0,0,21
+199619,0,0,0,21
+199620,0,0,0,21
+199621,0,0,0,21
+199622,0,0,0,21
+199623,0,0,0,21
+199624,0,0,0,21
+199625,0,0,0,21
+199626,0,0,0,21
+199627,0,0,0,21
+199628,0,0,0,21
+199629,0,0,0,21
+199630,0,0,0,21
+199631,0,0,0,21
+199632,0,0,0,21
+199633,0,0,0,21
+199634,0,0,0,21
+199635,0,0,0,21
+199636,0,0,0,21
+199637,0,0,0,21
+199638,0,0,0,21
+199639,0,0,0,21
+199640,0,0,0,21
+199641,0,0,0,21
+199642,0,0,0,21
+199643,0,0,0,21
+199644,0,0,0,21
+199645,0,0,0,21
+199646,0,0,0,21
+199647,0,0,0,21
+199648,0,0,0,21
+199649,0,0,0,21
+199650,0,0,0,21
+199651,0,0,0,21
+199652,0,0,0,21
+199653,0,0,0,21
+199654,0,0,0,21
+199655,0,0,0,21
+199656,0,0,0,21
+199657,0,0,0,21
+199658,0,0,0,21
+199659,0,0,0,21
+199660,0,0,0,21
+199661,0,0,0,21
+199662,0,0,0,21
+199663,0,0,0,21
+199664,0,0,0,21
+199665,0,0,0,21
+199666,0,0,0,21
+199667,0,0,0,21
+199668,0,0,0,21
+199669,0,0,0,21
+199670,0,0,0,21
+199671,0,0,0,21
+199672,0,0,0,21
+199673,0,0,0,21
+199674,0,0,0,21
+199675,0,0,0,21
+199676,0,0,0,21
+199677,0,0,0,21
+199678,0,0,0,21
+199679,0,0,0,21
+199680,0,0,0,21
+199681,0,0,0,21
+199682,0,0,0,21
+199683,0,0,0,21
+199684,0,0,0,21
+199685,0,0,0,21
+199686,0,0,0,21
+199687,0,0,0,21
+199688,0,0,0,21
+199689,0,0,0,21
+199690,0,0,0,21
+199691,0,0,0,21
+199692,0,0,0,21
+199693,0,0,0,21
+199694,0,0,0,21
+199695,0,0,0,21
+199696,0,0,0,21
+199697,0,0,0,21
+199698,0,0,0,21
+199699,0,0,0,21
+199700,0,0,0,21
+199701,0,0,0,21
+199702,0,0,0,21
+199703,0,0,0,21
+199704,0,0,0,21
+199705,0,0,0,21
+199706,0,0,0,21
+199707,0,0,0,21
+199708,0,0,0,21
+199709,0,0,0,21
+199710,0,0,0,21
+199711,0,0,0,21
+199712,0,0,0,21
+199713,0,0,0,21
+199714,0,0,0,21
+199715,0,0,0,21
+199716,0,0,0,21
+199717,0,0,0,21
+199718,0,0,0,21
+199719,0,0,0,21
+199720,0,0,0,21
+199721,0,0,0,21
+199722,0,0,0,21
+199723,0,0,0,21
+199724,0,0,0,21
+199725,0,0,0,21
+199726,0,0,0,21
+199727,0,0,0,21
+199728,0,0,0,21
+199729,0,0,0,21
+199730,0,0,0,21
+199731,0,0,0,21
+199732,0,0,0,21
+199733,0,0,0,21
+199734,0,0,0,21
+199735,0,0,0,21
+199736,0,0,0,21
+199737,0,0,0,21
+199738,0,0,0,21
+199739,0,0,0,21
+199740,0,0,0,21
+199741,0,0,0,21
+199742,0,0,0,21
+199743,0,0,0,21
+199744,0,0,0,21
+199745,0,0,0,21
+199746,0,0,0,21
+199747,0,0,0,21
+199748,0,0,0,21
+199749,0,0,0,21
+199750,0,0,0,21
+199751,0,0,0,21
+199752,0,0,0,21
+199753,0,0,0,21
+199754,0,0,0,21
+199755,0,0,0,21
+199756,0,0,0,21
+199757,0,0,0,21
+199758,0,0,0,21
+199759,0,0,0,21
+199760,0,0,0,21
+199761,0,0,0,21
+199762,0,0,0,21
+199763,0,0,0,21
+199764,0,0,0,21
+199765,0,0,0,21
+199766,0,0,0,21
+199767,0,0,0,21
+199768,0,0,0,21
+199769,0,0,0,21
+199770,0,0,0,21
+199771,0,0,0,21
+199772,0,0,0,21
+199773,0,0,0,21
+199774,0,0,0,21
+199775,1775.615723,0,0,21
+199776,1255.782164,0,0,21
+199777,1646.937267,0,0,21
+199778,1903.532541,0,0,21
+199779,2157.247031,0,0,21
+199780,2408.36877,0,0,21
+199781,2533.030359,0,0,21
+199782,2903.701557,0,0,21
+199783,3026.220839,0,0,21
+199784,3269.806003,0,0,21
+199785,3511.550107,0,0,21
+199786,3751.556007,0,0,21
+199787,3870.935606,0,0,21
+199788,4108.498658,0,0,21
+199789,4461.987742,0,0,21
+199790,4461.988184,0,0,21
+199791,4812.241099,0,0,21
+199792,5044.037602,0,0,21
+199793,5044.0377,0,0,21
+199794,5503.753413,0,0,21
+199795,5503.753479,0,0,21
+199796,5958.576385,0,0,21
+199797,5845.313238,0,0,21
+199798,6296.656769,0,0,21
+199799,6408.793266,0,0,21
+199800,6520.657465,0,0,21
+199801,6854.649451,0,0,21
+199802,6854.649287,0,0,21
+199803,7296.36101,0,0,21
+199804,7186.310937,0,0,21
+199805,7515.721548,0,0,21
+199806,7734.095682,0,0,21
+199807,7986.689618,0,0,21
+199808,8345.508999,0,0,21
+199809,8353.852646,0,0,21
+199810,8710.013342,0,0,21
+199811,8849.928159,0,0,21
+199812,9088.020188,0,0,21
+199813,9226.654526,0,0,21
+199814,9561.06563,0,0,21
+199815,9592.639686,0,0,21
+199816,9835.229542,0,0,21
+199817,10061.25495,0,0,21
+199818,10197.0934,0,0,21
+199819,10437.02904,0,0,21
+199820,10556.61425,0,0,21
+199821,10795.03368,0,0,21
+199822,11032.46974,0,0,21
+199823,11254.01656,0,0,21
+199824,11283.81947,0,0,21
+199825,11621.88608,0,0,21
+199826,11739.07182,0,0,21
+199827,11870.6747,0,0,21
+199828,12205.5575,0,0,21
+199829,12234.54496,0,0,21
+199830,12553.10395,22.36433749,0,21
+199831,12682.87087,202.4581014,0,21
+199832,12798.03456,144.5136513,0,21
+199833,12927.21984,1544.999164,0,21
+199834,13242.4355,1583.174563,0,21
+199835,13170.54142,1602.062279,0,21
+199836,13598.35071,2107.868969,0,21
+199837,13498.6811,2185.772735,0,21
+199838,13839.12211,2985.825051,0,21
+199839,13853.02778,2906.895526,0,21
+199840,14065.09029,3457.90465,0,21
+199841,14092.73131,3547.300529,0,21
+199842,14500.95168,3914.449442,0,21
+199843,14331.48879,4110.807717,0,21
+199844,14738.33885,4528.504532,0,21
+199845,14765.58815,4559.881484,0,21
+199846,14779.16556,5062.399855,0,21
+199847,15196.89906,5311.976244,0,21
+199848,15134.01283,5342.816179,0,21
+199849,15515.97975,5864.378725,0,21
+199850,15440.44252,6056.84622,0,21
+199851,15740.70728,6297.612384,0,21
+199852,15794.94351,6475.44905,0,21
+199853,16001.42343,6982.541741,0,21
+199854,16238.61066,6890.842069,0,21
+199855,16164.55553,7394.484685,0,21
+199856,16483.79053,7594.884256,0,21
+199857,16523.1177,7794.590344,0,21
+199858,16727.89795,8125.874172,0,21
+199859,16875.55901,8893.138206,0,21
+199860,16979.64729,11516.15392,0,21
+199861,17682.06478,12170.38462,0,21
+199862,18020.09312,13475.80236,0,21
+199863,18151.9562,14247.85193,0,21
+199864,18471.12786,14676.59069,0,21
+199865,18610.38836,15720.94676,0,21
+199866,18822.05145,15879.95561,0,21
+199867,18880.05685,17158.31653,0,21
+199868,19276.30892,17425.33477,0,21
+199869,19498.01363,17984.65139,0,21
+199870,19543.47835,19060.41558,0,21
+199871,19756.29474,19287.44916,0,21
+199872,19980.85256,20261.00109,0,21
+199873,20204.73046,20859.39093,0,21
+199874,20324.37191,21451.40388,0,21
+199875,20650.47272,22005.75768,0,21
+199876,20650.48863,22788.47,0,21
+199877,20912.37612,23311.3659,0,21
+199878,21109.24245,23999.09961,0,21
+199879,21494.11052,24462.55614,0,21
+199880,21843.87975,25226.95293,0,21
+199881,21835.28786,25683.32614,0,21
+199882,22294.42953,26364.02734,0,21
+199883,22371.20227,26960.31166,0,21
+199884,22602.38621,27508.17194,0,21
+199885,22904.51142,28188.99532,0,21
+199886,22960.18583,28503.46332,0,21
+199887,23397.7184,29358.15741,0,21
+199888,23456.74245,29883.92132,0,21
+199889,24148.32481,30629.4236,0,21
+199890,24033.84388,30879.8002,0,21
+199891,24633.04469,32104.36917,0,21
+199892,24526.83389,32536.13685,0,21
+199893,24951.88448,33359.02646,0,21
+199894,25084.38966,33741.07056,0,21
+199895,25291.66228,34277.03036,0,21
+199896,25454.21915,35080.53651,0,21
+199897,26191.77555,35482.06742,0,21
+199898,25997.08273,35969.36417,0,21
+199899,26565.95555,36832.46116,0,21
+199900,26623.6376,37159.77331,0,21
+199901,26730.51279,37714.72967,0,21
+199902,28394.7166,38483.70879,0,21
+199903,29781.27349,38736.63081,0,21
+199904,29206.94981,39367.19773,0,21
+199905,30124.47255,40176.98909,0,21
+199906,30705.03705,40248.51361,0,21
+199907,30979.93761,41170.45723,0,21
+199908,31563.83335,41378.37465,0,21
+199909,32075.85096,41776.02475,0,21
+199910,32403.09608,42386.72281,0,21
+199911,33074.45273,42837.82749,0,21
+199912,33548.97498,43388.49076,0,21
+199913,34145.75558,45313.55095,0,21
+199914,34714.57186,45477.27371,0,21
+199915,34818.44817,46231.24247,0,21
+199916,35766.98501,47275.17306,0,21
+199917,35985.64687,47543.20194,0,21
+199918,36373.70846,48642.0875,0,21
+199919,37020.38088,49368.78965,0,21
+199920,37425.54292,49711.32009,0,21
+199921,37760.2295,50739.69164,0,21
+199922,37877.82447,51367.98706,0,21
+199923,38307.71078,51377.40792,0,21
+199924,38561.57145,52128.62738,0,21
+199925,38790.79733,52695.3199,0,21
+199926,39034.65514,53664.2912,0,21
+199927,39503.9953,54589.69111,0,21
+199928,39430.08134,54884.27083,0,21
+199929,39948.50052,55774.97023,0,21
+199930,42117.46411,56583.80491,0,21
+199931,41480.6492,57524.18456,0,21
+199932,42906.85946,57902.14832,0,21
+199933,44831.93899,58713.17353,0,21
+199934,44513.41748,59521.26406,0,21
+199935,45644.01239,60050.6972,0,21
+199936,46037.16414,61130.07203,0,21
+199937,47033.7169,61421.93122,0,21
+199938,47377.54635,61398.24926,0,21
+199939,48265.77685,61835.03594,0,21
+199940,48599.86975,62590.3309,0,21
+199941,49453.4541,63036.97988,0,21
+199942,49894.14537,63832.84422,0,21
+199943,50613.21421,64596.38597,0,21
+199944,51117.5304,65010.34747,0,21
+199945,51454.88077,66154.91271,0,21
+199946,52350.02656,66318.46338,0,21
+199947,52877.85974,67629.62038,0,21
+199948,53215.32331,67744.24296,0,21
+199949,53893.78617,68660.50113,0,21
+199950,54377.49624,68361.90757,0,21
+199951,55015.15557,69427.94994,0,21
+199952,55409.31887,69877.53058,0,21
+199953,55773.50682,70649.86911,0,21
+199954,56557.14968,71096.30366,0,21
+199955,56873.03048,72055.23904,0,21
+199956,57478.60295,72778.5188,0,21
+199957,57807.36709,73550.99494,0,21
+199958,58440.70054,74087.01167,0,21
+199959,58707.59461,75079.90641,0,21
+199960,59340.15494,75516.59945,0,21
+199961,59650.12643,76884.80101,0,21
+199962,60273.53554,78016.76916,0,21
+199963,60535.35102,78654.97019,0,21
+199964,61044.73397,79487.79456,0,21
+199965,61464.50738,80027.74119,0,21
+199966,61922.36863,81063.21247,0,21
+199967,62318.10749,81712.11679,0,21
+199968,62742.03296,82659.69607,0,21
+199969,63186.10882,83125.89606,0,21
+199970,63398.44323,84190.27368,0,21
+199971,64170.08005,84679.01028,0,21
+199972,64112.29748,85603.7131,0,21
+199973,64887.78267,86317.78285,0,21
+199974,64949.80929,87227.52971,0,21
+199975,65560.30449,87755.09816,0,21
+199976,65776.92542,88736.13264,0,21
+199977,66193.78618,89365.32731,0,21
+199978,66686.5597,90345.86952,0,21
+199979,66878.12384,90787.45807,0,21
+199980,67443.8452,91809.1235,0,21
+199981,0,0,0,21
+199982,0,336.6287805,0,21
+199983,0,0,0,21
+199984,0,0,0,21
+199985,0,0,685998.0769,21
+199986,340226.8596,368767.2855,0,21
+199987,0,0,0,21
+199988,0,0,0,21
+199989,0,0,0,21
+199990,0,0,0,21
+199991,0,0,0,21
+199992,0,0,0,21
+199993,0,0,0,21
+199994,0,74.44017547,0,21
+199995,0,0,0,21
+199996,0,0,0,21
+199997,0,434110.8272,0,21
+199998,0,0,0,21
+199999,0,0,0,21
+200000,0,0,0,21
+200001,0,0,0,21
+200002,0,0,0,21
+200003,0,0,0,21
+200004,0,0,0,21
+200005,0,0,0,21
+200006,0,0,0,21
+200007,0,0,0,21
+200008,0,0,0,21
+200009,0,0,0,21
+200010,0,0,0,21
+200011,0,0,0,21
+200012,0,0,0,21
+200013,0,0,0,21
+200014,0,0,0,21
+200015,0,0,0,21
+200016,0,0,0,21
+200017,0,0,0,21
+200018,0,0,0,21
+200019,0,0,684823.8372,21
+200020,0,0,0,21
+200021,0,368767.146,0,21
+200022,340169.0992,0,0,21
+200023,0,0,0,21
+200024,0,433796.2007,0,21
+200025,0,0,0,21
+200026,0,0,0,21
+200027,0,0,0,21
+200028,0,0,0,21
+200029,0,0,0,21
+200030,0,0,0,21
+200031,0,0,0,21
+200032,0,0,0,21
+200033,0,0,0,21
+200034,0,0,0,21
+200035,0,0,0,21
+200036,0,0,0,21
+200037,0,0,0,21
+200038,0,0,0,21
+200039,0,0,0,21
+200040,0,0,0,15.6
+200041,0,0,0,15.6
+200042,0,0,0,15.6
+200043,0,0,0,15.6
+200044,0,0,0,15.6
+200045,0,0,0,15.6
+200046,0,0,0,15.6
+200047,0,0,0,15.6
+200048,0,0,0,15.6
+200049,0,0,0,15.6
+200050,0,0,0,15.6
+200051,0,0,0,15.6
+200052,0,0,0,15.6
+200053,0,0,683937.7846,15.6
+200054,0,0,0,15.6
+200055,0,0,0,15.6
+200056,0,368781.0156,0,15.6
+200057,0,0,0,15.6
+200058,340141.5626,0,0,15.6
+200059,0,0,0,15.6
+200060,0,0,0,15.6
+200061,0,0,0,15.6
+200062,0,0,0,15.6
+200063,0,0,0,15.6
+200064,0,0,0,15.6
+200065,0,0,0,15.6
+200066,0,7.695170431,0,15.6
+200067,0,0,0,15.6
+200068,0,17.28521879,0,15.6
+200069,0,0,0,15.6
+200070,0,0,0,15.6
+200071,0,0,0,15.6
+200072,0,77.8003694,0,15.6
+200073,0,0,0,15.6
+200074,0,0,0,15.6
+200075,0,0,0,15.6
+200076,0,99.43880641,0,15.6
+200077,0,0,0,15.6
+200078,0,0,0,15.6
+200079,0,0,0,15.6
+200080,0,86.33132585,0,15.6
+200081,0,0,0,15.6
+200082,0,0,0,15.6
+200083,0,0,0,15.6
+200084,0,107.50282,0,15.6
+200085,0,0,0,15.6
+200086,0,0,0,15.6
+200087,0,0,682917.4838,15.6
+200088,0,98.7353849,0,15.6
+200089,0,0,0,15.6
+200090,0,0,0,15.6
+200091,0,368806.8806,0,15.6
+200092,0,99.47780133,0,15.6
+200093,0,0,0,15.6
+200094,340144.2524,0,0,15.6
+200095,0,0,0,15.6
+200096,0,79.42785243,0,15.6
+200097,0,0,0,15.6
+200098,0,0,0,15.6
+200099,0,0,0,15.6
+200100,0,87.48092357,0,15.6
+200101,0,0,0,15.6
+200102,0,0,0,15.6
+200103,0,0,0,15.6
+200104,0,99.04604616,0,15.6
+200105,0,0,0,15.6
+200106,0,0,0,15.6
+200107,0,0,0,15.6
+200108,0,83.51778274,0,15.6
+200109,0,0,0,15.6
+200110,0,0,0,15.6
+200111,0,0,0,15.6
+200112,0,101.044026,0,15.6
+200113,0,0,0,15.6
+200114,0,0,0,15.6
+200115,0,0,0,15.6
+200116,0,84.62169879,0,15.6
+200117,0,0,0,15.6
+200118,0,0,0,15.6
+200119,0,0,0,15.6
+200120,0,104.6244171,0,15.6
+200121,0,0,0,15.6
+200122,0,0,682545.991,15.6
+200123,0,0,0,15.6
+200124,0,96.52879387,0,15.6
+200125,0,0,0,15.6
+200126,0,368814.3386,0,15.6
+200127,0,0,0,15.6
+200128,0,97.53989422,0,15.6
+200129,0,0,0,15.6
+200130,340142.2038,0,0,15.6
+200131,0,0,0,15.6
+200132,0,81.08453437,0,15.6
+200133,0,0,0,15.6
+200134,0,0,0,15.6
+200135,0,0,0,15.6
+200136,0,105.3124149,0,15.6
+200137,0,0,0,15.6
+200138,0,0,0,15.6
+200139,0,0,0,15.6
+200140,0,101.3775622,0,15.6
+200141,0,0,0,15.6
+200142,0,0,0,15.6
+200143,0,0,0,15.6
+200144,0,103.3107039,0,15.6
+200145,0,0,0,15.6
+200146,0,0,0,15.6
+200147,0,0,0,15.6
+200148,0,101.3910524,0,15.6
+200149,0,0,0,15.6
+200150,0,0,0,15.6
+200151,0,0,0,15.6
+200152,0,99.0326288,0,15.6
+200153,0,0,0,15.6
+200154,0,0,0,15.6
+200155,0,0,0,15.6
+200156,0,87.21117434,0,15.6
+200157,0,0,680795.8003,15.6
+200158,0,0,0,15.6
+200159,0,0,0,15.6
+200160,0,100.5469517,0,15.6
+200161,0,368815.3435,0,15.6
+200162,0,0,0,15.6
+200163,0,0,0,15.6
+200164,0,77.80803867,0,15.6
+200165,0,0,0,15.6
+200166,340123.8292,0,0,15.6
+200167,0,0,0,15.6
+200168,0,79.79844776,0,15.6
+200169,0,0,0,15.6
+200170,0,0,0,15.6
+200171,0,0,0,15.6
+200172,0,96.43804876,0,15.6
+200173,0,0,0,15.6
+200174,0,0,0,15.6
+200175,0,0,0,15.6
+200176,0,86.50752888,0,15.6
+200177,0,0,0,15.6
+200178,0,0,0,15.6
+200179,0,0,0,15.6
+200180,0,107.2665718,0,15.6
+200181,0,0,0,15.6
+200182,0,0,0,15.6
+200183,0,0,0,15.6
+200184,0,99.74963826,0,15.6
+200185,0,0,0,15.6
+200186,0,0,0,15.6
+200187,0,0,0,15.6
+200188,0,103.243544,0,15.6
+200189,0,0,0,15.6
+200190,0,0,0,15.6
+200191,0,0,0,15.6
+200192,0,103.6495309,680926.0915,15.6
+200193,0,0,0,15.6
+200194,0,0,0,15.6
+200195,0,0,0,15.6
+200196,0,368917.9619,0,15.6
+200197,0,0,0,15.6
+200198,0,0,0,15.6
+200199,0,0,0,15.6
+200200,0,85.21513974,0,15.6
+200201,0,0,0,15.6
+200202,340027.3554,0,0,15.6
+200203,0,0,0,15.6
+200204,0,86.75852677,0,15.6
+200205,0,0,0,15.6
+200206,0,0,0,15.6
+200207,0,0,0,15.6
+200208,0,98.86194208,0,15.6
+200209,0,0,0,15.6
+200210,0,0,0,15.6
+200211,0,0,0,15.6
+200212,0,82.78735114,0,15.6
+200213,0,0,0,15.6
+200214,0,0,0,15.6
+200215,0,0,0,15.6
+200216,0,98.27923297,0,15.6
+200217,0,0,0,15.6
+200218,0,0,0,15.6
+200219,0,0,0,15.6
+200220,0,79.80665785,0,15.6
+200221,0,0,0,15.6
+200222,0,0,0,15.6
+200223,0,0,0,15.6
+200224,0,97.17801427,0,15.6
+200225,0,0,0,15.6
+200226,0,0,0,15.6
+200227,0,0,679208.7241,15.6
+200228,0,81.4425532,0,15.6
+200229,0,0,0,15.6
+200230,0,0,0,15.6
+200231,0,368808.6838,0,15.6
+200232,0,99.33764351,0,15.6
+200233,0,0,0,15.6
+200234,0,0,0,15.6
+200235,0,0,0,15.6
+200236,0,75.46497754,0,15.6
+200237,0,0,0,15.6
+200238,0,0,0,15.6
+200239,339955.6762,0,0,15.6
+200240,0,96.36061029,0,15.6
+200241,0,0,0,15.6
+200242,0,0,0,15.6
+200243,0,0,0,15.6
+200244,0,87.35884146,0,15.6
+200245,0,0,0,15.6
+200246,0,0,0,15.6
+200247,0,0,0,15.6
+200248,0,108.4045685,0,15.6
+200249,0,0,0,15.6
+200250,0,0,0,15.6
+200251,0,0,0,15.6
+200252,0,99.14097282,0,15.6
+200253,0,0,0,15.6
+200254,0,0,0,15.6
+200255,0,0,0,15.6
+200256,0,100.0858425,0,15.6
+200257,0,0,0,15.6
+200258,0,0,0,15.6
+200259,0,0,0,15.6
+200260,0,97.31414855,0,15.6
+200261,0,0,0,15.6
+200262,0,0,679473.8208,15.6
+200263,0,0,0,15.6
+200264,0,86.68587776,0,15.6
+200265,0,0,0,15.6
+200266,0,368786.0107,0,15.6
+200267,0,0,0,15.6
+200268,0,97.02084252,0,15.6
+200269,0,0,0,15.6
+200270,0,0,0,15.6
+200271,0,0,0,15.6
+200272,0,69.2250679,0,15.6
+200273,0,0,0,15.6
+200274,0,0,0,15.6
+200275,0,0,0,15.6
+200276,339911.9215,80.9757208,0,15.6
+200277,0,0,0,15.6
+200278,0,0,0,15.6
+200279,0,0,0,15.6
+200280,0,83.1429488,0,15.6
+200281,0,0,0,15.6
+200282,0,0,0,15.6
+200283,0,0,0,15.6
+200284,0,85.07968674,0,15.6
+200285,0,0,0,15.6
+200286,0,0,0,15.6
+200287,0,0,0,15.6
+200288,0,87.19561809,0,15.6
+200289,0,0,0,15.6
+200290,0,0,0,15.6
+200291,0,0,0,15.6
+200292,0,97.86932875,0,15.6
+200293,0,0,0,15.6
+200294,0,0,0,15.6
+200295,0,0,0,15.6
+200296,0,84.12229743,0,15.6
+200297,0,0,678104.6038,15.6
+200298,0,0,0,15.6
+200299,0,0,0,15.6
+200300,0,103.1510711,0,15.6
+200301,0,368775.7385,0,15.6
+200302,0,0,0,15.6
+200303,0,0,0,15.6
+200304,0,83.07075315,0,15.6
+200305,0,0,0,15.6
+200306,0,0,0,15.6
+200307,0,0,0,15.6
+200308,0,86.56317332,0,15.6
+200309,0,0,0,15.6
+200310,0,0,0,15.6
+200311,0,0,0,15.6
+200312,0,101.6614992,0,15.6
+200313,339910.7378,0,0,15.6
+200314,0,0,0,15.6
+200315,0,0,0,15.6
+200316,0,87.05581065,0,15.6
+200317,0,0,0,15.6
+200318,0,0,0,15.6
+200319,0,0,0,15.6
+200320,0,104.1497699,0,15.6
+200321,0,0,0,15.6
+200322,0,0,0,15.6
+200323,0,0,0,15.6
+200324,0,83.78655519,0,15.6
+200325,0,0,0,15.6
+200326,0,0,0,15.6
+200327,0,0,0,15.6
+200328,0,98.97990685,0,15.6
+200329,0,0,0,15.6
+200330,0,0,0,15.6
+200331,0,0,0,15.6
+200332,0,78.97675622,678174.2031,15.6
+200333,0,0,0,15.6
+200334,0,0,0,15.6
+200335,0,0,0,15.6
+200336,0,84.8092103,0,15.6
+200337,0,368776.4646,0,15.6
+200338,0,0,0,15.6
+200339,0,0,0,15.6
+200340,0,76.85835687,0,15.6
+200341,0,0,0,15.6
+200342,0,0,0,15.6
+200343,0,0,0,15.6
+200344,0,69.74048707,0,15.6
+200345,0,0,0,15.6
+200346,0,0,0,15.6
+200347,0,0,0,15.6
+200348,0,78.39182859,0,15.6
+200349,0,0,0,15.6
+200350,339905.9955,0,0,15.6
+200351,0,0,0,15.6
+200352,0,83.50099345,0,15.6
+200353,0,0,0,15.6
+200354,0,0,0,15.6
+200355,0,0,0,15.6
+200356,0,86.95681952,0,15.6
+200357,0,0,0,15.6
+200358,0,0,0,15.6
+200359,0,0,0,15.6
+200360,0,97.67415414,0,15.6
+200361,0,0,0,15.6
+200362,0,0,0,15.6
+200363,0,0,0,15.6
+200364,0,83.73235076,0,15.6
+200365,0,0,0,15.6
+200366,0,0,676949.4433,15.6
+200367,0,0,0,15.6
+200368,0,102.6931484,0,15.6
+200369,0,0,0,15.6
+200370,0,0,0,15.6
+200371,0,0,0,15.6
+200372,0,84.97376001,0,15.6
+200373,0,368793.8242,0,15.6
+200374,0,0,0,15.6
+200375,0,0,0,15.6
+200376,0,97.70504428,0,15.6
+200377,0,0,0,15.6
+200378,0,0,0,15.6
+200379,0,0,0,15.6
+200380,0,72.46960377,0,15.6
+200381,0,0,0,15.6
+200382,0,0,0,15.6
+200383,0,0,0,15.6
+200384,0,86.61180454,0,15.6
+200385,339900.4756,0,0,15.6
+200386,0,0,0,15.6
+200387,0,0,0,15.6
+200388,0,86.396565,0,15.6
+200389,0,0,0,15.6
+200390,0,0,0,15.6
+200391,0,0,0,15.6
+200392,0,85.06140343,0,15.6
+200393,0,0,0,15.6
+200394,0,0,0,15.6
+200395,0,0,0,15.6
+200396,0,82.69250822,0,15.6
+200397,0,0,0,15.6
+200398,0,0,0,15.6
+200399,0,0,0,15.6
+200400,0,80.64336594,676323.2886,17.8
+200401,88137.91922,101292.3451,0,17.8
+200402,28728.0243,5101.800889,0,17.8
+200403,11304.22272,443490.319,0,17.8
+200404,21252.69732,35150.40697,0,17.8
+200405,27247.0813,23234.10459,0,17.8
+200406,22079.87635,27151.1603,0,17.8
+200407,22645.1335,394309.4695,0,17.8
+200408,22821.62566,25928.96752,0,17.8
+200409,22771.07218,25969.23749,0,17.8
+200410,22733.48422,25762.75498,0,17.8
+200411,21191.51588,25948.82258,0,17.8
+200412,21058.30952,26197.01783,0,17.8
+200413,21069.6712,25912.7794,0,17.8
+200414,21103.36425,25885.51247,0,17.8
+200415,20989.58605,25920.31443,0,17.8
+200416,21058.32193,25782.7319,0,17.8
+200417,21034.87266,25809.16401,0,17.8
+200418,20991.28868,25661.15743,0,17.8
+200419,20982.91959,25665.46182,0,17.8
+200420,360898.3715,25615.81531,0,17.8
+200421,20976.20334,25543.55981,0,17.8
+200422,20937.55393,25501.3796,0,17.8
+200423,20969.56301,25429.20008,0,17.8
+200424,20984.52932,25418.86904,0,17.8
+200425,20962.61693,25331.50915,0,17.8
+200426,20971.17447,25299.19613,0,17.8
+200427,20984.51857,25239.65895,0,17.8
+200428,20918.91005,456790.4826,0,17.8
+200429,20984.50997,22505.45195,0,17.8
+200430,20934.05266,22519.55104,0,17.8
+200431,0,0,0,17.8
+200432,0,0,0,17.8
+200433,0,0,0,17.8
+200434,0,0,676572.4929,17.8
+200435,0,0,0,17.8
+200436,0,0,0,17.8
+200437,67469.5114,0,0,17.8
+200438,4655.68404,0,0,17.8
+200439,17663.32725,0,0,17.8
+200440,25436.60356,0,0,17.8
+200441,20243.0201,368812.918,0,17.8
+200442,20967.74017,50322.08208,0,17.8
+200443,20975.66604,4640.118932,0,17.8
+200444,20945.65975,22017.01986,0,17.8
+200445,20991.17056,22648.74738,0,17.8
+200446,20930.13089,20134.43754,0,17.8
+200447,21007.94422,20373.5159,0,17.8
+200448,20906.66989,20189.05232,0,17.8
+200449,20970.71562,20117.43485,0,17.8
+200450,20952.25592,19963.40719,0,17.8
+200451,20940.26104,19816.30203,0,17.8
+200452,20932.06447,19708.87585,0,17.8
+200453,20867.56181,450918.5354,0,17.8
+200454,20754.15385,19388.47449,0,17.8
+200455,360718.8587,19306.45336,0,17.8
+200456,20793.01107,19135.86687,0,17.8
+200457,20720.38851,18999.48163,0,17.8
+200458,20762.22596,18889.40425,0,17.8
+200459,20445.67722,18743.22557,0,17.8
+200460,20407.20053,18604.05208,0,20
+200461,816617.3678,359035.728,0,20
+200462,112925.8846,106946.9661,0,20
+200463,92467.82421,119475.4943,0,20
+200464,263063.7746,180699.1632,0,20
+200465,181864.9429,155061.8032,0,20
+200466,201935.1881,171595.8295,0,20
+200467,198218.525,162115.3385,0,20
+200468,196562.1312,168818.4562,0,20
+200469,196999.6034,174723.3455,0,20
+200470,196330.4535,168626.3616,0,20
+200471,196125.5634,169504.8313,0,20
+200472,195453.2184,169411.0101,0,20
+200473,194884.5394,168362.5203,1303.630633,20
+200474,194484.035,167327.8662,2035.489912,20
+200475,194086.8638,166622.8589,1672.475326,20
+200476,193573.4871,165892.5592,1915.209708,20
+200477,193116.0518,164951.5046,2258.1157,20
+200478,192603.6958,595118.8489,2653.676406,20
+200479,192387.2389,162859.5673,2654.466081,20
+200480,191825.079,162156.7722,2775.285952,20
+200481,191403.5403,161678.6199,3027.005219,20
+200482,190915.8798,160262.2862,3056.764841,20
+200483,190838.0737,160241.1772,3189.418788,20
+200484,190304.2036,158890.4556,3336.244745,20
+200485,189912.6644,158478.1,3568.813312,20
+200486,189834.2842,157716.7811,3885.107129,20
+200487,189314.1273,156799.9533,3938.923693,20
+200488,189343.1923,156270.9852,4000.722254,20
+200489,188708.7001,155298.4578,4305.720253,20
+200490,188842.7648,154928.2967,4336.230413,20
+200491,188012.0678,154408.1331,4495.300191,20
+200492,187443.0901,154226.3323,4654.564124,20
+200493,187335.5578,153469.8193,4698.154754,20
+200494,186276.8755,154260.5031,4956.964598,20
+200495,185902.9213,153176.3847,4900.091386,20
+200496,185522.0171,152285.2924,5271.796685,20
+200497,184498.4089,151767.3305,5087.763165,20
+200498,184153.6013,151421.2855,5471.365635,20
+200499,183527.419,150519.5929,5075.263435,20
+200500,182518.23,150415.9479,5117.825551,20
+200501,182660.1692,149354.515,5147.316153,20
+200502,181078.6029,148775.0214,5161.93785,20
+200503,179685.9821,579602.3912,2833.782344,20
+200504,178354.9301,147919.9828,2062.720527,20
+200505,177429.2143,146545.1565,1950.208097,20
+200506,177020.94,145391.094,1664.776075,20
+200507,175895.1733,143504.0439,1283.016924,20
+200508,175504.2493,143687.3197,1200.410827,20
+200509,174312.7753,142080.4497,988.3347391,20
+200510,173845.3522,141587.0781,987.5629995,20
+200511,172594.416,140546.9249,957.6843532,20
+200512,172359.137,140503.5225,985.7606715,20
+200513,171480.7177,140467.2942,955.6599386,20
+200514,170246.1335,141060.7256,946.9115729,20
+200515,170058.2454,140719.6235,939.3217296,20
+200516,168654.9237,140388.5388,936.5830008,20
+200517,168334.9135,140048.0897,907.2787815,20
+200518,167308.3291,139577.2364,904.0454215,20
+200519,166383.5917,139592.9871,888.4205266,20
+200520,166526.8977,140038.7912,886.5604498,21
+200521,170206.7088,139551.5145,884.5768599,21
+200522,169024.4658,139719.7222,868.6696077,21
+200523,168357.685,139353.5545,880.2101032,21
+200524,166483.4194,139389.7352,864.0732787,21
+200525,165958.6251,139330.9892,867.0437402,21
+200526,164371.5625,139172.8457,858.8229209,21
+200527,163386.3124,139130.782,864.2373175,21
+200528,161712.4675,139352.2627,869.5767042,21
+200529,161210.1243,139281.6339,861.2122591,21
+200530,159351.9059,139538.2647,880.0112351,21
+200531,158415.3632,139222.8237,862.9360458,21
+200532,157408.0823,138834.8467,862.9568405,21
+200533,155632.3652,139071.2776,872.6193974,21
+200534,154988.6607,138118.2143,863.6815183,21
+200535,153529.0816,139126.8359,881.4347472,21
+200536,152347.9217,138360.6752,867.9631093,21
+200537,151052.7574,139214.9033,881.4780887,21
+200538,149805.0951,138295.0857,908.4112337,21
+200539,148336.6416,139279.71,894.99117,21
+200540,147406.3304,138455.241,921.8757466,21
+200541,145748.0612,139186.2181,921.8996689,21
+200542,144897.9491,138657.1263,921.9235915,21
+200543,142794.2871,138995.2486,948.7119623,21
+200544,142065.3808,139096.2895,935.3670642,21
+200545,140329.5036,138751.5076,962.1085191,21
+200546,139399.8133,139130.0035,962.1346195,21
+200547,137399.6985,139106.0504,962.160712,21
+200548,134515.766,138286.4707,988.8091063,21
+200549,132735.7732,138804.5717,975.5371417,21
+200550,130914.2347,138118.4269,1002.140152,21
+200551,129664.3854,138590.295,988.8918867,21
+200552,128000.621,137987.4783,1015.450001,21
+200553,126970.9326,137854.58,1002.225221,21
+200554,125514.224,137669.1954,1015.507894,21
+200555,124806.0404,137680.0167,1015.537021,21
+200556,124374.1325,136994.2487,1015.566148,21
+200557,123613.3752,137066.0738,1042.036687,21
+200558,123523.9137,137017.616,1015.625117,21
+200559,122381.8685,136416.5034,1055.284449,21
+200560,122033.2283,136302.8976,1042.128406,21
+200561,121658.9132,135992.0759,1042.1591,21
+200562,120959.2676,136005.4496,1055.378189,21
+200563,120511.0035,135294.3484,1068.575817,21
+200564,119778.4368,135606.8315,1055.441547,21
+200565,119307.3686,134928.0828,1068.640038,21
+200566,118725.4624,134871.1059,1068.672337,21
+200567,118192.8138,134575.9943,1081.850027,21
+200568,117696.1649,134604.2064,1068.737316,21
+200569,116889.7335,133772.1342,1095.039841,21
+200570,116574.2091,134160.9335,1081.949373,21
+200571,115845.4593,133560.344,1095.107342,21
+200572,115588.2285,133286.0258,1082.015977,21
+200573,114712.9445,133274.0861,1108.278469,21
+200574,114290.5442,132758.6931,1095.209156,21
+200575,113564.1691,132823.4503,1095.24309,21
+200576,113295.473,132662.6812,1121.465061,21
+200577,112559.3403,132038.1335,1095.311728,21
+200578,112068.7548,132402.9522,1121.535503,21
+200579,111556.278,131751.2134,1108.486699,21
+200580,110951.2965,131517.862,1121.606331,21
+200581,92477.19981,113238.7143,732.4646472,21
+200582,90772.08617,112071.5379,718.662055,21
+200583,90060.07634,111043.7269,690.9505529,21
+200584,89479.91831,110988.7052,677.0545373,21
+200585,88627.18719,110740.9676,677.0672098,21
+200586,88141.98284,110055.8515,663.1387933,21
+200587,87436.98178,109591.276,663.1509276,21
+200588,86959.7521,109648.1355,635.1839624,21
+200589,86500.1316,108834.144,649.2010359,21
+200590,85489.43653,108793.6925,621.1673593,21
+200591,85250.27083,108171.351,635.217296,21
+200592,84642.98196,108484.5943,607.1158753,21
+200593,84129.69935,107814.3116,607.1260034,21
+200594,83353.79093,107583.3035,593.0287249,21
+200595,83122.58457,107510.4278,593.0383756,21
+200596,82434.92928,106966.2765,578.9055641,21
+200597,81786.07911,106727.1486,564.7368531,21
+200598,81416.38123,106070.8542,564.7455913,21
+200599,80822.0251,106032.2654,550.5400888,21
+200600,80297.57119,105764.97,522.0090455,21
+200601,79889.03819,105311.075,536.3050213,21
+200602,79462.19081,105327.8187,493.3315458,21
+200603,78408.02254,105124.3049,507.7041167,21
+200604,78565.40969,104484.2483,493.3449894,21
+200605,77555.65212,104594.288,464.4986985,21
+200606,77432.92455,103884.0042,478.951556,21
+200607,76730.31714,103846.7205,450.0217498,21
+200608,76229.24966,103371.8223,450.0272428,21
+200609,75831.7555,103217.9827,420.9250968,21
+200610,75157.75721,102872.4185,435.5057906,21
+200611,74562.26202,102043.5008,391.6464904,21
+200612,74368.70277,102232.0711,406.3180921,21
+200613,73574.49256,101658.1035,391.6549191,21
+200614,73421.7397,101598.9821,362.179187,21
+200615,72747.57481,100724.695,376.9473381,21
+200616,72296.91195,100717.6081,347.3709605,21
+200617,71843.60087,100452.4797,332.5062725,21
+200618,71304.2136,99645.33579,332.5092383,21
+200619,71074.58284,99787.12245,317.5897695,21
+200620,70373.87398,99118.72373,302.6136357,21
+200621,69596.188,99054.91123,287.5786295,21
+200622,69502.17407,98240.74239,287.5808363,21
+200623,68697.99887,98524.86687,257.3220173,21
+200624,68294.40629,97965.68972,257.3237779,21
+200625,67428.47105,97283.68926,242.096206,21
+200626,67092.65672,97587.11663,242.0977602,21
+200627,66591.4527,96667.29159,195.9735539,21
+200628,65825.67873,97043.35935,226.8007801,21
+200629,65284.84054,96144.72551,180.4396627,21
+200630,64697.36637,96118.84634,180.4405169,21
+200631,64236.7782,95603.04074,164.8155517,21
+200632,63365.55849,95810.0879,149.0936891,21
+200633,63033.81982,95028.82531,149.0942721,21
+200634,62121.5438,94849.50021,117.3232824,21
+200635,61827.96678,95039.02023,117.3236404,21
+200636,61020.02402,94661.38524,101.2512544,21
+200637,60444.29947,94235.52333,85.03240246,21
+200638,60128.04577,94341.10828,68.64340904,21
+200639,58973.49099,93785.07149,60.37499622,21
+200640,58980.37313,93874.64557,43.66010292,21
+200641,57757.04177,93306.53895,35.19560189,21
+200642,57346.65792,92714.50562,9.143704351,21
+200643,56411.22117,93184.25097,0,21
+200644,55567.37573,92332.6608,0,21
+200645,54943.95644,91999.68546,0,21
+200646,54479.34281,92295.79377,0,21
+200647,53496.83176,91411.24793,0,21
+200648,52946.23203,91433.01923,0,21
+200649,52010.16778,91084.53069,0,21
+200650,51409.71595,90969.50955,0,21
+200651,50696.58031,90240.26504,0,21
+200652,50111.60051,90543.22247,0,21
+200653,49217.7855,89517.53267,0,21
+200654,48711.23239,89867.41576,0,21
+200655,47882.35862,89308.5778,0,21
+200656,47103.06854,89121.3166,0,21
+200657,46408.87182,88962.71072,0,21
+200658,45924.23845,87958.63352,0,21
+200659,45026.55972,88234.18691,0,21
+200660,44231.67343,88114.78697,0,21
+200661,43702.03338,87074.99582,0,21
+200662,43091.59213,87150.62897,0,21
+200663,41939.32222,86686.3271,0,21
+200664,42008.98996,86335.60687,0,21
+200665,40460.46592,86008.99567,0,21
+200666,40325.22345,85758.40237,0,21
+200667,39656.18775,84894.17724,0,21
+200668,38683.77595,85071.81788,0,21
+200669,37397.1323,84471.23778,0,21
+200670,36897.76233,83935.39515,0,21
+200671,35722.84746,83628.25549,0,21
+200672,35397.63364,82854.71773,0,21
+200673,34726.29665,81966.9233,0,21
+200674,33666.33341,81774.21722,0,21
+200675,33391.88459,80592.73174,0,21
+200676,32749.83897,79919.82347,0,21
+200677,31680.1259,79726.21512,0,21
+200678,31497.86211,78551.22982,0,21
+200679,30364.75787,77811.63923,0,21
+200680,30045.01587,77253.11457,0,21
+200681,29210.82085,76370.67125,0,21
+200682,28664.11285,75577.60627,0,21
+200683,28178.38226,74357.27028,0,21
+200684,27269.92859,73788.25556,0,21
+200685,26755.81098,72897.35555,0,21
+200686,26156.45618,71715.25879,0,21
+200687,25733.37569,71242.05829,0,21
+200688,25151.77318,70170.23469,0,21
+200689,25258.63568,69677.75714,0,21
+200690,24844.96051,68346.95224,0,21
+200691,24930.79097,67438.86876,0,21
+200692,24497.22472,66805.73117,0,21
+200693,24315.58281,65275.59685,0,21
+200694,24187.62518,64606.47741,0,21
+200695,24067.24566,63665.52814,0,21
+200696,23846.08726,62290.74707,0,21
+200697,23560.36769,61609.22776,0,21
+200698,23522.00154,60326.65889,0,21
+200699,23215.95386,59318.42204,0,21
+200700,23074.26712,58331.32868,0,21
+200701,22871.77429,56927.77914,0,21
+200702,22445.60979,55933.18032,0,21
+200703,22543.54395,55240.56699,0,21
+200704,22274.81268,53779.87987,0,21
+200705,22235.30788,53098.23595,0,21
+200706,21796.57663,52226.09891,0,21
+200707,21884.28285,51061.19107,0,21
+200708,21675.16123,50157.75229,0,21
+200709,21571.64161,49074.08437,0,21
+200710,21238.26898,48277.35159,0,21
+200711,21238.32841,47875.88845,0,21
+200712,21018.50153,47363.87585,0,21
+200713,20734.76461,45961.00449,0,21
+200714,20841.87695,45525.87636,0,21
+200715,20427.8012,44483.11015,0,21
+200716,20334.86449,43183.82116,0,21
+200717,20271.55619,42781.8732,0,21
+200718,19995.08006,41516.15577,0,21
+200719,19952.57601,40848.76128,0,21
+200720,19675.96023,39643.48316,0,21
+200721,19590.28437,39011.56524,0,21
+200722,19332.74107,37875.19378,0,21
+200723,19279.5877,36953.88676,0,21
+200724,19107.09225,36358.31086,0,21
+200725,18912.69838,35312.55893,0,21
+200726,18686.21762,34181.9985,0,21
+200727,18662.70917,33949.96506,0,21
+200728,18349.841,32236.47815,0,21
+200729,18336.14681,32137.76326,0,21
+200730,18086.61652,31400.4883,0,21
+200731,17910.50812,30532.97078,0,21
+200732,17832.61548,29796.3349,0,21
+200733,17569.61226,29074.98183,0,21
+200734,17490.59042,27776.25431,0,21
+200735,17422.69731,27816.50427,0,21
+200736,17071.13935,27089.88995,0,21
+200737,17066.24868,27168.91051,0,21
+200738,16800.39679,27041.94748,0,21
+200739,16742.70562,26660.24709,0,21
+200740,16451.84011,26708.78738,0,21
+200741,16416.63262,26370.53649,0,21
+200742,16287.92717,26264.90783,0,21
+200743,16053.63839,26208.51975,0,21
+200744,15947.25864,25779.99244,0,21
+200745,15699.59416,25815.94634,0,21
+200746,15615.84444,25571.54702,0,21
+200747,15530.0049,25419.04266,0,21
+200748,15258.2076,25102.65859,0,21
+200749,15182.67739,25166.86461,0,21
+200750,14907.50046,24934.14203,0,21
+200751,14833.48074,24545.977,0,21
+200752,14728.9279,24748.3836,0,21
+200753,14490.02955,24372.44364,0,21
+200754,14385.84433,24355.89061,0,21
+200755,14172.31007,24220.43007,0,21
+200756,14225.31917,23931.11305,0,21
+200757,13987.30496,23835.85662,0,21
+200758,13849.84466,23747.45034,0,21
+200759,13813.61875,23551.69959,0,21
+200760,13776.86725,23350.57105,0,21
+200761,13561.97586,23495.57417,0,21
+200762,13764.54308,23262.77072,0,21
+200763,13500.89907,23483.02319,0,21
+200764,13488.15623,23139.71935,0,21
+200765,13476.04566,23237.45285,0,21
+200766,13312.4209,23237.4477,0,21
+200767,13312.42033,23199.61072,0,21
+200768,13160.84655,23114.39348,0,21
+200769,13160.3102,23089.11743,0,21
+200770,13110.90076,23076.39387,0,21
+200771,12893.06341,22978.46465,0,21
+200772,12957.89725,22940.52838,0,21
+200773,12830.35606,22952.9902,0,21
+200774,12817.28131,22940.5185,0,21
+200775,12663.86406,22914.99574,0,21
+200776,12650.57682,22705.99892,0,21
+200777,12547.95748,22927.75764,0,21
+200778,12470.52532,22655.13273,0,21
+200779,12482.89849,22804.17468,0,21
+200780,12334.80783,22667.92235,0,21
+200781,12320.97561,22642.28701,0,21
+200782,12172.12639,22667.90751,0,21
+200783,12184.5627,22518.30019,0,21
+200784,12123.64869,22629.73835,0,21
+200785,12000.57263,22419.86056,0,21
+200786,12000.5723,22604.04862,0,21
+200787,11856.81904,22270.18928,0,21
+200788,11869.34094,22492.91569,0,21
+200789,11831.70884,22368.9191,0,21
+200790,11856.81812,22368.74008,0,21
+200791,11599.25676,22120.23706,0,21
+200792,11728.17436,22604.00869,0,21
+200793,11599.2562,22120.22716,0,21
+200794,11586.62411,22492.8768,0,21
+200795,11586.62384,22356.15424,0,21
+200796,11470.06041,22381.58424,0,21
+200797,11457.38364,22356.14522,0,21
+200798,11444.68432,22604.12726,0,21
+200799,11340.58512,22394.42456,0,21
+200800,11340.58488,22480.2549,0,21
+200801,11315.11834,22616.80582,0,21
+200802,11302.3506,22381.78821,0,21
+200803,11106.34444,22629.62202,0,21
+200804,11289.55955,22629.61729,0,21
+200805,11080.78591,22616.97688,0,21
+200806,11055.13468,22642.40566,0,21
+200807,11067.97166,22864.16027,0,21
+200808,11055.13426,22655.16615,0,21
+200809,11029.38897,22876.92006,0,21
+200810,10832.72217,22667.89912,0,21
+200811,11016.48037,23098.02775,0,21
+200812,10819.83742,22680.60717,0,21
+200813,10793.99688,23110.70549,0,21
+200814,10781.04041,22667.8119,0,21
+200815,10793.99652,23110.68463,0,21
+200816,10768.05949,22804.17,0,21
+200817,10557.71814,23136.08012,0,21
+200818,10755.05413,22914.95831,0,21
+200819,10531.68318,23161.67624,0,21
+200820,10649.98282,23148.90781,0,21
+200821,14114.7818,27475.0923,0,21
+200822,14338.68728,27522.53558,0,21
+200823,14338.68547,32086.09092,0,21
+200824,14326.2258,32134.06223,0,21
+200825,14326.22394,31300.93064,0,21
+200826,14313.74289,31900.61094,0,21
+200827,14313.74097,32319.27515,0,21
+200828,14313.73903,32260.93532,0,21
+200829,14288.71433,32573.12077,0,21
+200830,14301.23449,32529.94269,0,21
+200831,14189.30548,32870.31933,0,21
+200832,14263.5989,33080.54188,0,21
+200833,14089.73667,33058.34071,0,21
+200834,14263.59481,33288.76686,0,21
+200835,14064.62325,33649.15688,0,21
+200836,14238.39359,33486.2069,0,21
+200837,14064.61918,33891.24505,0,21
+200838,14026.78837,33931.74071,0,21
+200839,14039.41802,34142.93334,0,21
+200840,14026.78424,34226.0013,0,21
+200841,14014.12817,34359.22657,0,21
+200842,13914.40061,34019.96124,0,21
+200843,14014.12397,34651.28567,0,21
+200844,13789.13384,34652.49289,0,21
+200845,13889.01902,34639.82394,0,21
+200846,13789.12971,34964.97685,0,21
+200847,13889.0148,35030.89007,0,21
+200848,13763.6595,35469.55983,0,21
+200849,13763.65741,35022.79357,0,21
+200850,13563.39173,35888.11408,0,21
+200851,13738.09538,35538.23513,0,21
+200852,13750.88371,35600.90753,0,21
+200853,13537.82776,35944.84638,0,21
+200854,13537.82569,35826.43769,0,21
+200855,13712.43616,35730.45061,0,21
+200856,13424.62961,36075.04318,0,21
+200857,13512.16874,36029.20096,0,21
+200858,13499.3061,35955.95378,0,21
+200859,13398.92584,36202.2957,0,21
+200860,13486.41769,35997.53294,0,21
+200861,13285.49363,36300.75135,0,21
+200862,13486.41345,36275.36329,0,21
+200863,13158.93895,37153.58577,0,21
+200864,13360.19122,37919.4513,0,21
+200865,13259.64539,37953.63961,0,21
+200866,13259.64331,37616.87409,0,21
+200867,13032.11607,38347.55036,0,21
+200868,13233.70268,38261.60379,0,21
+200869,13233.70058,38310.2715,0,21
+200870,13032.10999,38443.41743,0,21
+200871,13006.07373,38979.29825,0,21
+200872,13006.07169,38694.57985,0,21
+200873,13106.9477,38929.05025,0,21
+200874,12905.02071,39020.29442,0,21
+200875,12979.93223,39394.29998,0,21
+200876,12777.66661,39161.67437,0,21
+200877,12979.92823,39588.43421,0,21
+200878,12777.66273,39280.01302,0,21
+200879,12852.64359,40079.6877,0,21
+200880,12751.42494,39433.11096,0,21
+200881,12764.55298,40037.86118,0,21
+200882,12738.26676,39737.94483,0,21
+200883,12738.26507,39836.67636,0,21
+200884,12623.69521,39726.17589,0,21
+200885,12738.26168,39495.30807,0,21
+200886,12508.9258,39778.51865,0,21
+200887,12508.92416,39472.70395,0,21
+200888,12698.63688,39234.69527,0,21
+200889,12292.04848,39628.40616,0,21
+200890,12597.24615,39096.84486,0,21
+200891,12367.40838,39510.1397,0,21
+200892,12380.69198,38788.90962,0,21
+200893,12252.18629,39167.67625,0,21
+200894,12252.18471,39091.88133,0,21
+200895,12021.13693,38941.47476,0,21
+200896,12021.1354,38992.19006,0,21
+200897,11789.26687,38792.07918,0,21
+200898,11673.02044,38844.33562,0,21
+200899,11556.56439,38633.52178,0,21
+200900,11439.8972,38723.98957,0,21
+200901,11205.92439,38292.86994,0,21
+200902,11088.61417,38663.59275,0,21
+200903,10866.98958,38367.78489,0,21
+200904,10839.66019,38188.67176,0,21
+200905,10617.18094,38329.66694,0,21
+200906,10393.89378,37844.01164,0,21
+200907,10155.98491,38056.73675,0,21
+200908,10142.15175,38019.42441,0,21
+200909,9917.146575,37700.5022,0,21
+200910,9889.322247,38308.32916,0,21
+200911,9450.613347,38104.80084,0,21
+200912,9543.11889,37962.00578,0,21
+200913,9301.819723,37808.9632,0,21
+200914,9194.893556,37747.64549,0,21
+200915,8952.169416,37652.31258,0,21
+200916,8952.168581,37317.03049,0,21
+200917,8694.189732,37354.76347,0,21
+200918,8708.424008,37232.68348,0,21
+200919,8449.331112,36878.02242,0,21
+200920,8463.638505,36976.39121,0,21
+200921,8203.406965,36741.23112,0,21
+200922,8217.78949,36393.52327,0,21
+200923,7970.853665,36389.0853,0,21
+200924,7956.392521,36212.84078,0,21
+200925,7956.391865,35894.07686,0,21
+200926,7708.263488,35907.42176,0,21
+200927,7598.353108,35758.61219,0,21
+200928,7583.771669,35483.88769,0,21
+200929,7458.991246,35584.30525,0,21
+200930,7333.917889,34910.16339,0,21
+200931,7223.254943,34971.01418,0,21
+200932,7193.796435,34754.41681,0,21
+200933,7082.876335,34483.56667,0,21
+200934,6956.900558,34153.77308,0,21
+200935,6718.903954,34221.4606,0,21
+200936,6815.728631,33781.39327,0,21
+200937,6464.842129,33622.31576,0,21
+200938,6674.101062,33396.47662,0,21
+200939,6337.322674,33456.13032,0,21
+200940,6307.211095,32884.53524,0,21
+200941,6194.390635,33071.91562,0,21
+200942,6066.15057,32835.93482,0,21
+200943,5922.327826,32943.8247,0,21
+200944,5922.327563,32820.44201,0,21
+200945,5679.339118,32896.84253,0,21
+200946,5549.684004,32586.65181,0,21
+200947,5534.275568,32740.69791,0,21
+200948,5289.255906,32788.75781,0,21
+200949,5158.468012,32518.24744,0,21
+200950,5027.286923,32513.59838,0,21
+200951,4879.976349,32529.80367,0,21
+200952,4647.094992,32349.70703,0,21
+200953,4615.424249,32396.1917,0,21
+200954,4247.453965,32665.51295,0,21
+200955,4113.331646,32160.83868,0,21
+200956,3962.532891,32653.06019,0,21
+200957,3588.330363,32238.37061,0,21
+200958,3555.440226,32418.94254,0,21
+200959,3055.443671,32318.21357,0,21
+200960,3021.848918,32168.39548,0,21
+200961,2619.978672,32318.93852,0,21
+200962,2487.682077,32136.31803,0,21
+200963,1942.951595,32270.64863,0,21
+200964,1906.191821,31808.78429,0,21
+200965,1384.586132,32450.88509,0,21
+200966,1244.456548,31784.96587,0,21
+200967,847.5046045,32177.92567,0,21
+200968,437.5086799,32079.20895,0,21
+200969,296.470796,31964.44414,0,21
+200970,0,31929.07443,0,21
+200971,0,31983.574,0,21
+200972,0,31907.24585,0,21
+200973,0,31970.96922,0,21
+200974,0,31876.95989,0,21
+200975,0,31893.72558,0,21
+200976,0,31744.28023,0,21
+200977,0,31994.66934,0,21
+200978,0,31845.79878,0,21
+200979,0,31896.70801,0,21
+200980,0,31862.07897,0,21
+200981,0,32072.65042,0,21
+200982,0,31565.72295,0,21
+200983,0,31476.81722,0,21
+200984,0,31677.95691,0,21
+200985,0,31271.03502,0,21
+200986,0,31709.48089,0,21
+200987,0,31374.43815,0,21
+200988,0,31322.1191,0,21
+200989,0,31533.44342,0,21
+200990,0,31270.97209,0,21
+200991,0,31326.99653,0,21
+200992,0,31288.40769,0,21
+200993,0,31106.76876,0,21
+200994,0,30991.04664,0,21
+200995,0,30639.75531,0,21
+200996,0,30490.94448,0,21
+200997,0,30593.32253,0,21
+200998,0,30249.67139,0,21
+200999,0,30443.23943,0,21
+201000,0,30045.20332,0,21
+201001,0,29899.57303,0,21
+201002,0,29870.22693,0,21
+201003,0,29961.55355,0,21
+201004,0,29508.62571,0,21
+201005,0,29265.62944,0,21
+201006,0,29027.59261,0,21
+201007,0,28793.8566,0,21
+201008,0,28681.50525,0,21
+201009,0,28083.19767,0,21
+201010,0,28187.95803,0,21
+201011,0,27074.8648,0,21
+201012,0,26602.07595,0,21
+201013,0,26314.66776,0,21
+201014,0,25700.11252,0,21
+201015,0,25581.17407,0,21
+201016,0,24924.75002,0,21
+201017,0,24538.88171,0,21
+201018,0,24159.59041,0,21
+201019,0,23489.61253,0,21
+201020,0,23019.35844,0,21
+201021,0,22748.51689,0,21
+201022,0,21925.7246,0,21
+201023,0,21465.03348,0,21
+201024,0,20871.29414,0,21
+201025,0,20339.93107,0,21
+201026,0,19499.7833,0,21
+201027,0,19103.06553,0,21
+201028,0,18317.40944,0,21
+201029,0,17592.17948,0,21
+201030,0,16978.72474,0,21
+201031,0,16407.98043,0,21
+201032,0,15975.74379,0,21
+201033,0,15360.58793,0,21
+201034,0,14938.64909,0,21
+201035,0,14442.71323,0,21
+201036,0,13998.57357,0,21
+201037,0,13401.23797,0,21
+201038,0,12912.14854,0,21
+201039,0,12591.31446,0,21
+201040,0,12087.91651,0,21
+201041,0,11607.74878,0,21
+201042,0,11254.12554,0,21
+201043,0,10644.71505,0,21
+201044,0,10377.46419,0,21
+201045,0,9727.120186,0,21
+201046,0,9671.118887,0,21
+201047,0,9759.851274,0,21
+201048,0,9512.67233,0,21
+201049,0,9552.21426,0,21
+201050,0,9523.276748,0,21
+201051,0,9417.869684,0,21
+201052,0,9406.318675,0,21
+201053,0,9332.366815,0,21
+201054,0,9260.869838,0,21
+201055,0,9251.260147,0,21
+201056,0,9172.676965,0,21
+201057,0,9868.550873,0,21
+201058,0,9828.404201,0,21
+201059,0,9499.217613,0,21
+201060,0,9979.555361,0,21
+201061,0,9936.905029,0,21
+201062,0,9876.846521,0,21
+201063,1465.578305,10140.16505,0,21
+201064,2849.720302,10200.25148,0,21
+201065,1465.578311,10262.34189,0,21
+201066,2849.720324,10311.07699,0,21
+201067,2163.698033,10690.14123,0,21
+201068,2849.720346,10475.4029,0,21
+201069,3526.268953,10773.78111,0,21
+201070,2849.720369,10633.46174,0,21
+201071,4194.970511,11091.85422,0,21
+201072,3526.269005,10980.13179,0,21
+201073,4194.970561,10980.13027,0,21
+201074,4194.970586,11406.15362,0,21
+201075,4856.94053,11306.20105,0,21
+201076,4194.970636,11459.60317,0,21
+201077,5512.994915,11581.10359,0,21
+201078,5512.99496,11680.58686,0,21
+201079,4856.940668,11897.37815,0,21
+201080,5512.995051,11953.38675,0,21
+201081,6163.758479,11965.17453,0,21
+201082,6163.758537,12270.20277,0,21
+201083,5512.995091,12215.58722,0,21
+201084,6809.725615,12472.41549,0,21
+201085,6809.544464,12398.441,0,21
+201086,6809.793299,12748.82608,0,21
+201087,6809.680562,12732.37187,0,21
+201088,8088.779819,12765.23887,0,21
+201089,6809.703204,13159.38805,0,21
+201090,8088.782696,12924.40446,0,21
+201091,8088.786845,13226.59135,0,21
+201092,8088.78815,13479.56496,0,21
+201093,8088.788623,13226.58767,0,21
+201094,8722.518467,13685.90154,0,21
+201095,8722.518863,13650.03273,0,21
+201096,9352.709463,13802.12679,0,21
+201097,8722.519514,14066.83403,0,21
+201098,9352.710801,14257.45335,0,21
+201099,9352.711361,14396.19784,0,21
+201100,10603.28231,15954.22971,0,21
+201101,9352.712104,17906.52899,0,21
+201102,10603.28321,16748.64359,0,21
+201103,9979.572424,17686.46165,0,21
+201104,10603.28461,18899.03203,0,21
+201105,10603.28521,17907.30474,0,21
+201106,11841.88887,19348.70565,0,21
+201107,10603.28607,19342.66949,0,21
+201108,11224.01036,20312.13281,0,21
+201109,11841.89033,20464.20971,0,21
+201110,11841.89144,20962.91117,0,21
+201111,11841.89209,20891.12323,0,21
+201112,11841.8926,21262.45306,0,21
+201113,11841.8931,22934.48701,0,21
+201114,13069.62079,21685.05551,0,21
+201115,12457.05787,23185.19972,0,21
+201116,13069.62248,23258.69831,0,21
+201117,12457.05967,23427.20253,0,21
+201118,13679.69172,24868.79563,0,21
+201119,13069.62438,23771.98116,0,21
+201120,13679.69301,25013.10342,0,21
+201121,0,0,0,21
+201122,0,0,0,21
+201123,0,0,0,21
+201124,0,0,0,21
+201125,0,0,0,21
+201126,0,0,0,21
+201127,0,0,0,21
+201128,0,0,0,21
+201129,0,0,0,21
+201130,0,0,0,21
+201131,0,0,0,21
+201132,0,0,0,21
+201133,0,0,0,21
+201134,0,0,0,21
+201135,0,0,0,21
+201136,0,0,0,21
+201137,0,0,0,21
+201138,0,0,0,21
+201139,0,0,0,21
+201140,0,0,0,21
+201141,0,0,0,21
+201142,0,0,0,21
+201143,0,0,0,21
+201144,0,0,0,21
+201145,0,0,0,21
+201146,0,0,0,21
+201147,0,0,0,21
+201148,0,0,0,21
+201149,0,0,0,21
+201150,0,0,0,21
+201151,0,0,0,21
+201152,0,0,0,21
+201153,0,0,0,21
+201154,0,0,0,21
+201155,0,0,0,21
+201156,0,0,0,21
+201157,0,0,0,21
+201158,0,0,0,21
+201159,0,0,0,21
+201160,0,0,0,21
+201161,0,0,0,21
+201162,0,0,0,21
+201163,0,0,0,21
+201164,0,0,0,21
+201165,0,0,0,21
+201166,0,0,0,21
+201167,0,0,0,21
+201168,0,0,0,21
+201169,0,0,0,21
+201170,0,0,0,21
+201171,0,0,0,21
+201172,0,0,0,21
+201173,0,0,0,21
+201174,0,0,0,21
+201175,0,0,0,21
+201176,0,0,0,21
+201177,0,0,0,21
+201178,0,0,0,21
+201179,0,0,0,21
+201180,0,0,0,21
+201181,0,0,0,21
+201182,0,0,0,21
+201183,0,0,0,21
+201184,0,0,0,21
+201185,0,0,0,21
+201186,0,0,0,21
+201187,0,0,685467.3027,21
+201188,0,368596.5825,0,21
+201189,0,0,0,21
+201190,338204.7318,0,0,21
+201191,0,0,0,21
+201192,0,0,0,21
+201193,0,0,0,21
+201194,0,0,0,21
+201195,0,0,0,21
+201196,0,0,0,21
+201197,0,0,0,21
+201198,0,0,0,21
+201199,0,0,0,21
+201200,0,0,0,21
+201201,0,0,0,21
+201202,0,0,0,21
+201203,0,0,0,21
+201204,0,0,0,21
+201205,0,0,0,21
+201206,0,0,0,21
+201207,0,0,0,21
+201208,0,0,0,21
+201209,0,0,0,21
+201210,0,0,0,21
+201211,0,0,0,21
+201212,0,0,0,21
+201213,0,0,0,21
+201214,0,0,0,21
+201215,0,0,0,21
+201216,0,0,0,21
+201217,0,0,0,21
+201218,0,0,0,21
+201219,0,0,0,21
+201220,0,0,0,21
+201221,0,0,0,21
+201222,0,0,0,21
+201223,0,0,684602.5282,21
+201224,0,0,0,21
+201225,0,368605.003,0,21
+201226,0,0,0,21
+201227,0,0,0,21
+201228,0,0,0,21
+201229,337982.0725,0,0,21
+201230,0,0,0,21
+201231,0,0,0,21
+201232,0,0,0,21
+201233,0,0,0,21
+201234,0,0,0,21
+201235,0,0,0,21
+201236,0,0,0,21
+201237,0,0,0,21
+201238,0,0,0,21
+201239,0,0,0,21
+201240,0,0,0,21
+201241,0,0,0,21
+201242,0,0,0,21
+201243,0,0,0,21
+201244,0,0,0,21
+201245,0,0,0,21
+201246,0,0,0,21
+201247,0,0,0,21
+201248,0,0,0,21
+201249,0,0,0,21
+201250,0,0,0,21
+201251,0,0,0,21
+201252,0,0,0,21
+201253,0,0,0,21
+201254,0,0,0,21
+201255,0,0,0,21
+201256,0,0,0,21
+201257,0,0,0,21
+201258,0,0,0,21
+201259,0,0,683131.4442,21
+201260,0,0,0,21
+201261,0,0,0,21
+201262,0,368608.7416,0,21
+201263,0,0,0,21
+201264,0,0,0,21
+201265,0,0,0,21
+201266,0,0,0,21
+201267,0,0,0,21
+201268,0,0,0,21
+201269,337905.7299,0,0,21
+201270,0,0,0,21
+201271,0,0,0,21
+201272,0,0,0,21
+201273,0,0,0,21
+201274,0,0,0,21
+201275,0,0,0,21
+201276,0,0,0,21
+201277,0,0,0,21
+201278,0,0,0,21
+201279,0,0,0,21
+201280,0,0,0,21
+201281,0,0,0,21
+201282,0,0,0,21
+201283,0,0,0,21
+201284,0,0,0,21
+201285,0,0,0,21
+201286,0,0,0,21
+201287,0,0,0,21
+201288,0,0,0,21
+201289,0,0,0,21
+201290,0,0,0,21
+201291,0,0,0,21
+201292,0,0,0,21
+201293,0,0,0,21
+201294,0,0,0,21
+201295,0,0,680887.7848,21
+201296,0,0,0,21
+201297,0,0,0,21
+201298,0,0,0,21
+201299,0,368420.3412,0,21
+201300,0,0,0,21
+201301,0,0,0,21
+201302,0,0,0,21
+201303,0,0,0,21
+201304,0,0,0,21
+201305,0,0,0,21
+201306,0,0,0,21
+201307,0,0,0,21
+201308,0,0,0,21
+201309,338594.5861,0,0,21
+201310,0,0,0,21
+201311,0,0,0,21
+201312,0,0,0,21
+201313,0,0,0,21
+201314,0,0,0,21
+201315,0,0,0,21
+201316,0,0,0,21
+201317,0,0,0,21
+201318,0,0,0,21
+201319,0,0,0,21
+201320,0,0,0,21
+201321,0,0,0,21
+201322,0,0,0,21
+201323,0,0,0,21
+201324,0,0,0,21
+201325,0,0,0,21
+201326,0,0,0,21
+201327,0,0,0,21
+201328,0,0,0,21
+201329,0,0,0,21
+201330,0,0,0,21
+201331,0,0,678781.6703,21
+201332,0,0,0,21
+201333,0,0,0,21
+201334,0,0,0,21
+201335,0,0,0,21
+201336,0,368408.3351,0,21
+201337,0,0,0,21
+201338,0,0,0,21
+201339,0,0,0,21
+201340,0,0,0,21
+201341,0,0,0,21
+201342,0,0,0,21
+201343,0,0,0,21
+201344,0,0,0,21
+201345,0,0,0,21
+201346,0,0,0,21
+201347,0,0,0,21
+201348,0,0,0,21
+201349,338723.1702,0,0,21
+201350,0,0,0,21
+201351,0,0,0,21
+201352,0,0,0,21
+201353,0,0,0,21
+201354,0,0,0,21
+201355,0,0,0,21
+201356,0,0,0,21
+201357,0,0,0,21
+201358,0,0,0,21
+201359,0,0,0,21
+201360,0,0,0,21
+201361,0,0,0,21
+201362,0,0,0,21
+201363,0,0,0,21
+201364,0,0,0,21
+201365,0,0,0,21
+201366,0,0,0,21
+201367,0,0,677967.0343,21
+201368,0,0,0,21
+201369,0,0,0,21
+201370,0,0,0,21
+201371,0,0,0,21
+201372,0,0,0,21
+201373,0,0,0,21
+201374,0,368414.1128,0,21
+201375,0,0,0,21
+201376,0,0,0,21
+201377,0,0,0,21
+201378,0,0,0,21
+201379,0,0,0,21
+201380,0,0,0,21
+201381,0,0,0,21
+201382,0,0,0,21
+201383,0,0,0,21
+201384,0,0,0,21
+201385,0,0,0,21
+201386,0,0,0,21
+201387,0,0,0,21
+201388,0,0,0,21
+201389,0,0,0,21
+201390,339646.6225,0,0,21
+201391,0,0,0,21
+201392,0,0,0,21
+201393,0,0,0,21
+201394,0,0,0,21
+201395,0,0,0,21
+201396,0,0,0,21
+201397,0,0,0,21
+201398,0,0,0,21
+201399,0,0,0,21
+201400,0,0,0,21
+201401,0,0,0,21
+201402,0,0,0,21
+201403,0,0,678039.9537,21
+201404,0,0,0,21
+201405,0,0,0,21
+201406,0,0,0,21
+201407,0,0,0,21
+201408,0,0,0,21
+201409,0,0,0,21
+201410,0,0,0,21
+201411,0,0,0,21
+201412,0,368442.3613,0,21
+201413,0,0,0,21
+201414,0,0,0,21
+201415,0,0,0,21
+201416,0,0,0,21
+201417,0,0,0,21
+201418,0,0,0,21
+201419,0,0,0,21
+201420,0,0,0,21
+201421,0,0,0,21
+201422,0,0,0,21
+201423,0,0,0,21
+201424,0,0,0,21
+201425,0,0,0,21
+201426,0,3.643465513,0,21
+201427,0,0,0,21
+201428,0,99.25530132,0,21
+201429,0,0,0,21
+201430,0,0,0,21
+201431,339918.5357,0,0,21
+201432,0,0,0,21
+201433,0,248.1213784,0,21
+201434,0,0,0,21
+201435,0,0,0,21
+201436,0,0,0,21
+201437,0,0,0,21
+201438,0,0,0,21
+201439,0,0,0,21
+201440,0,0,675380.6635,21
+201441,0,0,0,21
+201442,0,69.28895568,0,21
+201443,0,0,0,21
+201444,0,0,0,21
+201445,0,0,0,21
+201446,0,0,0,21
+201447,0,0,0,21
+201448,0,0,0,21
+201449,0,66.18884809,0,21
+201450,0,368450.9666,0,21
+201451,0,0,0,21
+201452,0,0,0,21
+201453,0,0,0,21
+201454,0,0,0,21
+201455,0,0,0,21
+201456,0,0,0,21
+201457,0,0,0,21
+201458,0,0,0,21
+201459,0,64.87877458,0,21
+201460,0,0,0,21
+201461,0,0,0,21
+201462,0,0,0,21
+201463,0,0,0,21
+201464,0,0,0,21
+201465,0,0,0,21
+201466,0,0,0,21
+201467,0,0,0,21
+201468,0,63.41977438,0,21
+201469,0,0,0,21
+201470,0,0,0,21
+201471,0,0,0,21
+201472,339918.2849,0,0,21
+201473,0,0,0,21
+201474,0,0,0,21
+201475,0,0,0,21
+201476,0,0,0,21
+201477,0,0,675556.9451,21
+201478,0,2.859738928,0,21
+201479,0,0,0,21
+201480,0,110.3428631,0,15.6
+201481,0,0,0,15.6
+201482,0,0,0,15.6
+201483,0,0,0,15.6
+201484,0,0,0,15.6
+201485,0,55.89521028,0,15.6
+201486,0,0,0,15.6
+201487,0,0,0,15.6
+201488,0,368446.9026,0,15.6
+201489,0,0,0,15.6
+201490,0,0,0,15.6
+201491,0,0,0,15.6
+201492,0,0,0,15.6
+201493,0,0,0,15.6
+201494,0,73.7447015,0,15.6
+201495,0,0,0,15.6
+201496,0,0,0,15.6
+201497,0,0,0,15.6
+201498,0,0,0,15.6
+201499,0,61.27241689,0,15.6
+201500,0,0,0,15.6
+201501,0,0,0,15.6
+201502,0,0,0,15.6
+201503,0,0,0,15.6
+201504,0,0,0,15.6
+201505,0,0,0,15.6
+201506,0,0,0,15.6
+201507,0,0,0,15.6
+201508,0,129.0728213,0,15.6
+201509,0,0,0,15.6
+201510,0,0,0,15.6
+201511,0,0,0,15.6
+201512,0,7.976330482,0,15.6
+201513,339918.3269,0,0,15.6
+201514,0,121.7340617,676033.4928,15.6
+201515,0,0,0,15.6
+201516,0,0,0,15.6
+201517,0,0,0,15.6
+201518,0,8.006499513,0,15.6
+201519,0,0,0,15.6
+201520,0,119.705831,0,15.6
+201521,0,0,0,15.6
+201522,0,0,0,15.6
+201523,0,0,0,15.6
+201524,0,7.58437586,0,15.6
+201525,0,0,0,15.6
+201526,0,368538.0611,0,15.6
+201527,0,0,0,15.6
+201528,0,0,0,15.6
+201529,0,0,0,15.6
+201530,0,4.098162698,0,15.6
+201531,0,0,0,15.6
+201532,0,100.703155,0,15.6
+201533,0,0,0,15.6
+201534,0,0,0,15.6
+201535,0,0,0,15.6
+201536,0,7.103111668,0,15.6
+201537,0,0,0,15.6
+201538,0,107.335353,0,15.6
+201539,0,0,0,15.6
+201540,0,0,0,15.6
+201541,0,0,0,15.6
+201542,0,7.414073813,0,15.6
+201543,0,0,0,15.6
+201544,0,110.9095612,0,15.6
+201545,0,0,0,15.6
+201546,0,0,0,15.6
+201547,0,0,0,15.6
+201548,0,7.332722383,0,15.6
+201549,0,0,0,15.6
+201550,0,110.103925,0,15.6
+201551,0,0,676332.9068,15.6
+201552,0,0,0,15.6
+201553,0,0,0,15.6
+201554,339918.2999,7.278609164,0,15.6
+201555,0,0,0,15.6
+201556,0,109.0691394,0,15.6
+201557,0,0,0,15.6
+201558,0,0,0,15.6
+201559,0,0,0,15.6
+201560,0,7.155772111,0,15.6
+201561,0,0,0,15.6
+201562,0,107.1078275,0,15.6
+201563,0,0,0,15.6
+201564,0,368447.1428,0,15.6
+201565,0,0,0,15.6
+201566,0,3.999638473,0,15.6
+201567,0,0,0,15.6
+201568,0,98.40034035,0,15.6
+201569,0,0,0,15.6
+201570,0,0,0,15.6
+201571,0,0,0,15.6
+201572,0,3.714809386,0,15.6
+201573,0,0,0,15.6
+201574,0,86.9089231,0,15.6
+201575,0,0,0,15.6
+201576,0,0,0,15.6
+201577,0,0,0,15.6
+201578,0,0,0,15.6
+201579,0,35.63566918,0,15.6
+201580,0,0,0,15.6
+201581,0,0,0,15.6
+201582,0,0,0,15.6
+201583,0,0,0,15.6
+201584,0,0,0,15.6
+201585,0,0,0,15.6
+201586,0,0,0,15.6
+201587,0,0,0,15.6
+201588,0,0,676327.8777,15.6
+201589,0,3.764840464,0,15.6
+201590,0,0,0,15.6
+201591,0,100.7734561,0,15.6
+201592,0,0,0,15.6
+201593,0,0,0,15.6
+201594,0,0,0,15.6
+201595,339918.3038,4.25356979,0,15.6
+201596,0,0,0,15.6
+201597,0,104.2776571,0,15.6
+201598,0,0,0,15.6
+201599,0,0,0,15.6
+201600,0,0,0,15.6
+201601,0,0,0,15.6
+201602,0,798688.2955,0,15.6
+201603,0,0,0,15.6
+201604,0,0,0,15.6
+201605,0,0,0,15.6
+201606,0,0,0,15.6
+201607,0,0,0,15.6
+201608,0,0,0,15.6
+201609,0,0,0,15.6
+201610,0,0,0,15.6
+201611,0,0,0,15.6
+201612,0,0,0,15.6
+201613,0,0,0,15.6
+201614,0,0,0,15.6
+201615,0,0,0,15.6
+201616,0,0,0,15.6
+201617,0,0,0,15.6
+201618,0,0,0,15.6
+201619,0,0,0,15.6
+201620,0,0,0,15.6
+201621,0,0,0,15.6
+201622,0,0,0,15.6
+201623,0,0,0,15.6
+201624,0,0,0,15.6
+201625,0,0,676141.307,15.6
+201626,0,0,0,15.6
+201627,0,430017.7309,0,15.6
+201628,0,0,0,15.6
+201629,0,0,0,15.6
+201630,0,0,0,15.6
+201631,0,0,0,15.6
+201632,0,0,0,15.6
+201633,0,0,0,15.6
+201634,0,0,0,15.6
+201635,0,0,0,15.6
+201636,339918.307,0,0,15.6
+201637,0,0,0,15.6
+201638,0,0,0,15.6
+201639,0,0,0,15.6
+201640,0,368513.0544,0,15.6
+201641,0,0,0,15.6
+201642,0,0,0,15.6
+201643,0,0,0,15.6
+201644,0,0,0,15.6
+201645,0,0,0,15.6
+201646,0,0,0,15.6
+201647,0,0,0,15.6
+201648,0,0,0,15.6
+201649,0,0,0,15.6
+201650,0,0,0,15.6
+201651,0,0,0,15.6
+201652,0,429892.3548,0,15.6
+201653,0,0,0,15.6
+201654,0,0,0,15.6
+201655,0,0,0,15.6
+201656,0,0,0,15.6
+201657,0,0,0,15.6
+201658,0,0,0,15.6
+201659,0,0,0,15.6
+201660,0,0,0,15.6
+201661,0,0,0,15.6
+201662,0,0,675879.0565,15.6
+201663,0,0,0,15.6
+201664,0,0,0,15.6
+201665,0,0,0,15.6
+201666,0,0,0,15.6
+201667,0,0,0,15.6
+201668,0,0,0,15.6
+201669,0,0,0,15.6
+201670,0,0,0,15.6
+201671,0,0,0,15.6
+201672,0,0,0,15.6
+201673,0,0,0,15.6
+201674,0,0,0,15.6
+201675,0,0,0,15.6
+201676,0,0,0,15.6
+201677,339918.3095,0,0,15.6
+201678,0,368511.5763,0,15.6
+201679,0,17.20345434,0,15.6
+201680,0,0,0,15.6
+201681,0,0,0,15.6
+201682,0,0,0,15.6
+201683,0,0,0,15.6
+201684,0,0,0,15.6
+201685,0,0,0,15.6
+201686,0,0,0,15.6
+201687,0,0,0,15.6
+201688,0,0,0,15.6
+201689,0,0,0,15.6
+201690,0,0,0,15.6
+201691,0,0,0,15.6
+201692,0,0,0,15.6
+201693,0,0,0,15.6
+201694,0,0,0,15.6
+201695,0,0,0,15.6
+201696,0,0,0,15.6
+201697,0,0,0,15.6
+201698,0,0,0,15.6
+201699,0,0,675650.1916,15.6
+201700,0,0,0,15.6
+201701,0,0,0,15.6
+201702,0,0,0,15.6
+201703,0,0,0,15.6
+201704,0,0,0,15.6
+201705,0,0,0,15.6
+201706,0,0,0,15.6
+201707,0,0,0,15.6
+201708,0,0,0,15.6
+201709,0,0,0,15.6
+201710,0,0,0,15.6
+201711,0,0,0,15.6
+201712,0,2.381746231,0,15.6
+201713,0,0,0,15.6
+201714,0,71.82824596,0,15.6
+201715,0,0,0,15.6
+201716,0,368501.6152,0,15.6
+201717,0,0,0,15.6
+201718,339918.3115,7.362261367,0,15.6
+201719,0,0,0,15.6
+201720,0,95.93457471,0,15.6
+201721,0,0,0,15.6
+201722,0,0,0,15.6
+201723,0,0,0,15.6
+201724,0,3.064214272,0,15.6
+201725,0,0,0,15.6
+201726,0,74.44297186,0,15.6
+201727,0,0,0,15.6
+201728,0,0,0,15.6
+201729,0,0,0,15.6
+201730,0,7.980296468,0,15.6
+201731,0,0,0,15.6
+201732,0,106.0543262,0,15.6
+201733,0,0,0,15.6
+201734,0,0,675373.8449,15.6
+201735,0,0,0,15.6
+201736,0,3.663355573,0,15.6
+201737,0,0,0,15.6
+201738,0,86.28427686,0,15.6
+201739,0,0,0,15.6
+201740,0,0,0,15.6
+201741,0,0,0,15.6
+201742,0,7.97122174,0,15.6
+201743,0,0,0,15.6
+201744,0,107.5958284,0,15.6
+201745,0,0,0,15.6
+201746,0,0,0,15.6
+201747,0,0,0,15.6
+201748,0,3.605011814,0,15.6
+201749,0,0,0,15.6
+201750,0,84.94123961,0,15.6
+201751,0,0,0,15.6
+201752,0,0,0,15.6
+201753,0,0,0,15.6
+201754,0,368487.3744,0,15.6
+201755,0,0,0,15.6
+201756,0,101.4937108,0,15.6
+201757,0,0,0,15.6
+201758,0,0,0,15.6
+201759,339918.3131,0,0,15.6
+201760,0,2.855902989,0,15.6
+201761,0,0,0,15.6
+201762,0,70.79572827,0,15.6
+201763,0,0,0,15.6
+201764,0,0,0,15.6
+201765,0,0,0,15.6
+201766,0,7.780924945,0,15.6
+201767,0,0,0,15.6
+201768,0,104.1816042,0,15.6
+201769,0,0,675249.0399,15.6
+201770,0,0,0,15.6
+201771,0,0,0,15.6
+201772,0,3.632088211,0,15.6
+201773,0,0,0,15.6
+201774,0,85.00739225,0,15.6
+201775,0,0,0,15.6
+201776,0,0,0,15.6
+201777,0,0,0,15.6
+201778,0,7.938582851,0,15.6
+201779,0,0,0,15.6
+201780,0,106.7755428,0,15.6
+201781,0,0,0,15.6
+201782,0,0,0,15.6
+201783,0,429772.224,0,15.6
+201784,0,0,0,15.6
+201785,0,0,0,15.6
+201786,0,0,0,15.6
+201787,0,0,0,15.6
+201788,0,0,0,15.6
+201789,0,0,0,15.6
+201790,0,0,0,15.6
+201791,0,0,0,15.6
+201792,0,368464.5558,0,15.6
+201793,0,0,0,15.6
+201794,0,0,0,15.6
+201795,0,429633.4325,0,15.6
+201796,0,0,0,15.6
+201797,0,0,0,15.6
+201798,0,0,0,15.6
+201799,0,0,0,15.6
+201800,339918.5357,0,0,15.6
+201801,0,0,0,15.6
+201802,0,0,0,15.6
+201803,0,0,0,15.6
+201804,0,0,675005.6774,15.6
+201805,0,0,0,15.6
+201806,0,0,0,15.6
+201807,0,0,0,15.6
+201808,0,0,0,15.6
+201809,0,0,0,15.6
+201810,0,0,0,15.6
+201811,0,0,0,15.6
+201812,0,432339.9359,0,15.6
+201813,0,0,0,15.6
+201814,0,0,0,15.6
+201815,0,0,0,15.6
+201816,0,0,0,15.6
+201817,0,0,0,15.6
+201818,0,0,0,15.6
+201819,0,0,0,15.6
+201820,0,0,0,15.6
+201821,0,0,0,15.6
+201822,0,0,0,15.6
+201823,0,0,0,15.6
+201824,0,429505.4884,0,15.6
+201825,0,0,0,15.6
+201826,0,0,0,15.6
+201827,0,0,0,15.6
+201828,0,368471.4243,0,15.6
+201829,0,0,0,15.6
+201830,0,0,0,15.6
+201831,0,0,0,15.6
+201832,0,0,0,15.6
+201833,0,0,0,15.6
+201834,0,0,0,15.6
+201835,0,429207.4881,0,15.6
+201836,339918.3083,0,0,15.6
+201837,0,0,0,15.6
+201838,0,0,0,15.6
+201839,0,0,674704.5249,15.6
+201840,0,0,0,17.8
+201841,0,0,0,17.8
+201842,0,0,0,17.8
+201843,0,0,0,17.8
+201844,0,0,0,17.8
+201845,0,0,0,17.8
+201846,0,429180.1215,0,17.8
+201847,0,0,0,17.8
+201848,0,0,0,17.8
+201849,0,0,0,17.8
+201850,0,0,0,17.8
+201851,0,0,0,17.8
+201852,0,0,0,17.8
+201853,0,0,0,17.8
+201854,0,0,0,17.8
+201855,0,0,0,17.8
+201856,0,0,0,17.8
+201857,0,0,0,17.8
+201858,0,0,0,17.8
+201859,0,0,0,17.8
+201860,0,0,0,17.8
+201861,0,0,0,17.8
+201862,0,0,0,17.8
+201863,0,800766.1943,0,17.8
+201864,0,0,0,17.8
+201865,0,0,0,17.8
+201866,0,0,0,17.8
+201867,0,0,0,17.8
+201868,0,0,0,17.8
+201869,0,0,0,17.8
+201870,0,0,0,17.8
+201871,0,0,0,17.8
+201872,339918.3088,0,0,17.8
+201873,0,0,0,17.8
+201874,0,0,674390.2061,17.8
+201875,0,0,0,17.8
+201876,0,0,0,17.8
+201877,0,0,0,17.8
+201878,0,0,0,17.8
+201879,0,0,0,17.8
+201880,0,0,0,17.8
+201881,0,0,0,17.8
+201882,0,0,0,17.8
+201883,0,0,0,17.8
+201884,0,0,0,17.8
+201885,0,0,0,17.8
+201886,0,0,0,17.8
+201887,0,0,0,17.8
+201888,0,0,0,17.8
+201889,0,231.2848402,0,17.8
+201890,0,0,0,17.8
+201891,0,0,0,17.8
+201892,0,0,0,17.8
+201893,0,0,0,17.8
+201894,0,0,0,17.8
+201895,0,0,0,17.8
+201896,0,0,0,17.8
+201897,0,0,0,17.8
+201898,0,368490.555,0,17.8
+201899,0,0,0,17.8
+201900,0,114.6696205,0,20
+201901,0,0,0,20
+201902,0,0,0,20
+201903,0,0,0,20
+201904,0,0,0,20
+201905,0,0,0,20
+201906,0,0,0,20
+201907,0,247.7449082,0,20
+201908,0,0,0,20
+201909,0,0,0,20
+201910,0,0,674186.658,20
+201911,0,0,0,20
+201912,0,0,0,20
+201913,340420.091,0,0,20
+201914,0,0,0,20
+201915,0,0,0,20
+201916,0,0,0,20
+201917,0,0,0,20
+201918,0,0,0,20
+201919,0,248.5182179,0,20
+201920,0,0,0,20
+201921,0,0,0,20
+201922,0,0,0,20
+201923,0,0,0,20
+201924,0,0,0,20
+201925,0,0,0,20
+201926,0,0,0,20
+201927,0,0,0,20
+201928,0,0,0,20
+201929,0,82.66401113,0,20
+201930,0,0,0,20
+201931,0,0,0,20
+201932,0,0,0,20
+201933,0,0,0,20
+201934,0,0,0,20
+201935,0,0,0,20
+201936,0,368748.2049,0,20
+201937,0,0,0,20
+201938,0,0,0,20
+201939,0,0,0,20
+201940,0,0,0,20
+201941,0,0,0,20
+201942,0,0,0,20
+201943,0,0,0,20
+201944,0,0,0,20
+201945,0,0,0,20
+201946,0,0,0,20
+201947,0,0,673655.0712,20
+201948,0,246.7459112,0,20
+201949,0,0,0,20
+201950,0,0,0,20
+201951,0,0,0,20
+201952,0,0,0,20
+201953,0,0,0,20
+201954,340384.3836,0,0,20
+201955,0,0,0,20
+201956,0,0,0,20
+201957,0,0,0,20
+201958,0,82.43410972,0,20
+201959,0,0,0,20
+201960,0,0,0,21
+201961,0,0,0,21
+201962,0,0,0,21
+201963,0,0,0,21
+201964,0,0,0,21
+201965,0,252.5982308,0,21
+201966,0,0,0,21
+201967,0,0,0,21
+201968,0,0,0,21
+201969,0,0,0,21
+201970,0,0,0,21
+201971,0,0,0,21
+201972,0,0,0,21
+201973,0,0,0,21
+201974,0,368531.8439,0,21
+201975,0,0,0,21
+201976,0,0,0,21
+201977,0,0,0,21
+201978,0,0,0,21
+201979,0,0,0,21
+201980,0,0,0,21
+201981,0,0,0,21
+201982,0,0,0,21
+201983,0,0,671443.4089,21
+201984,0,0,0,21
+201985,0,0,0,21
+201986,0,0,0,21
+201987,0,0,0,21
+201988,0,0,0,21
+201989,0,0,0,21
+201990,0,0,0,21
+201991,0,0,0,21
+201992,0,0,0,21
+201993,0,0,0,21
+201994,340371.5672,0,0,21
+201995,0,0,0,21
+201996,0,4.034434916,0,21
+201997,0,0,0,21
+201998,0,100.3086442,0,21
+201999,0,0,0,21
+202000,0,0,0,21
+202001,0,0,0,21
+202002,0,0,0,21
+202003,0,0,0,21
+202004,0,0,0,21
+202005,0,0,0,21
+202006,0,0,0,21
+202007,0,0,0,21
+202008,0,0,0,21
+202009,0,0,0,21
+202010,0,0,0,21
+202011,0,0,0,21
+202012,0,368532.955,0,21
+202013,0,0,0,21
+202014,0,0,0,21
+202015,0,0,0,21
+202016,0,0,0,21
+202017,0,0,0,21
+202018,0,0,0,21
+202019,0,0,671224.7618,21
+202020,0,0,0,21
+202021,0,0,0,21
+202022,0,0,0,21
+202023,0,0,0,21
+202024,0,0,0,21
+202025,0,0,0,21
+202026,0,0,0,21
+202027,0,0,0,21
+202028,0,0,0,21
+202029,0,7.679393457,0,21
+202030,0,0,0,21
+202031,0,0,0,21
+202032,340383.103,0,0,21
+202033,0,0,0,21
+202034,0,0,0,21
+202035,0,0,0,21
+202036,0,0,0,21
+202037,0,0,0,21
+202038,0,0,0,21
+202039,0,0,0,21
+202040,0,0,0,21
+202041,0,0,0,21
+202042,0,0,0,21
+202043,0,0,0,21
+202044,0,0,0,21
+202045,0,0,0,21
+202046,0,0,0,21
+202047,0,0,0,21
+202048,0,0,0,21
+202049,0,0,0,21
+202050,0,368534.1112,0,21
+202051,0,0,0,21
+202052,0,0,0,21
+202053,0,0,0,21
+202054,0,0,0,21
+202055,0,0,670072.182,21
+202056,0,0,0,21
+202057,0,0,0,21
+202058,0,0,0,21
+202059,0,0,0,21
+202060,0,0,0,21
+202061,0,0,0,21
+202062,0,0,0,21
+202063,0,0,0,21
+202064,0,0,0,21
+202065,0,0,0,21
+202066,0,0,0,21
+202067,0,0,0,21
+202068,0,0,0,21
+202069,0,0,0,21
+202070,330545.7336,0,0,21
+202071,0,0,0,21
+202072,0,0,0,21
+202073,0,0,0,21
+202074,0,0,0,21
+202075,0,0,0,21
+202076,0,0,0,21
+202077,0,0,0,21
+202078,0,0,0,21
+202079,0,0,0,21
+202080,0,0,0,21
+202081,0,0,0,21
+202082,0,0,0,21
+202083,0,0,0,21
+202084,0,0,0,21
+202085,0,0,0,21
+202086,0,0,0,21
+202087,0,368520.7508,0,21
+202088,0,0,0,21
+202089,0,0,0,21
+202090,0,0,0,21
+202091,0,0,668909.2712,21
+202092,0,0,0,21
+202093,0,0,0,21
+202094,0,0,0,21
+202095,0,0,0,21
+202096,0,0,0,21
+202097,0,0,0,21
+202098,0,0,0,21
+202099,0,0,0,21
+202100,0,0,0,21
+202101,0,0,0,21
+202102,0,0,0,21
+202103,0,0,0,21
+202104,0,0,0,21
+202105,0,0,0,21
+202106,0,0,0,21
+202107,0,0,0,21
+202108,330873.0095,0,0,21
+202109,0,0,0,21
+202110,0,0,0,21
+202111,0,0,0,21
+202112,0,0,0,21
+202113,0,0,0,21
+202114,0,0,0,21
+202115,0,0,0,21
+202116,0,0,0,21
+202117,0,0,0,21
+202118,0,0,0,21
+202119,0,0,0,21
+202120,0,0,0,21
+202121,0,0,0,21
+202122,0,0,0,21
+202123,0,0,0,21
+202124,0,368467.9865,0,21
+202125,0,0,0,21
+202126,0,0,0,21
+202127,0,0,668066.5516,21
+202128,0,0,0,21
+202129,0,0,0,21
+202130,0,0,0,21
+202131,0,0,0,21
+202132,0,0,0,21
+202133,0,0,0,21
+202134,0,0,0,21
+202135,0,0,0,21
+202136,0,0,0,21
+202137,0,0,0,21
+202138,0,0,0,21
+202139,0,0,0,21
+202140,0,0,0,21
+202141,0,0,0,21
+202142,0,0,0,21
+202143,0,0,0,21
+202144,0,0,0,21
+202145,0,0,0,21
+202146,330828.0788,0,0,21
+202147,0,0,0,21
+202148,0,0,0,21
+202149,0,0,0,21
+202150,0,0,0,21
+202151,0,0,0,21
+202152,0,0,0,21
+202153,0,0,0,21
+202154,0,0,0,21
+202155,0,0,0,21
+202156,0,0,0,21
+202157,0,0,0,21
+202158,0,0,0,21
+202159,0,0,0,21
+202160,0,0,0,21
+202161,0,368433.8105,0,21
+202162,0,0,0,21
+202163,0,0,667138.0204,21
+202164,0,0,0,21
+202165,0,0,0,21
+202166,0,0,0,21
+202167,0,0,0,21
+202168,0,0,0,21
+202169,0,0,0,21
+202170,0,0,0,21
+202171,0,0,0,21
+202172,0,0,0,21
+202173,0,0,0,21
+202174,0,0,0,21
+202175,0,0,0,21
+202176,0,0,0,21
+202177,0,0,0,21
+202178,0,0,0,21
+202179,0,0,0,21
+202180,0,0,0,21
+202181,0,0,0,21
+202182,0,0,0,21
+202183,0,0,0,21
+202184,330397.0662,0,0,21
+202185,0,0,0,21
+202186,0,0,0,21
+202187,0,0,0,21
+202188,0,0,0,21
+202189,0,0,0,21
+202190,0,0,0,21
+202191,0,0,0,21
+202192,0,0,0,21
+202193,0,0,0,21
+202194,0,0,0,21
+202195,0,0,0,21
+202196,0,0,0,21
+202197,0,0,0,21
+202198,0,368469.4906,0,21
+202199,0,0,666887.9881,21
+202200,0,0,0,21
+202201,0,0,0,21
+202202,0,0,0,21
+202203,0,0,0,21
+202204,0,0,0,21
+202205,0,0,0,21
+202206,0,0,0,21
+202207,0,0,0,21
+202208,0,0,0,21
+202209,0,0,0,21
+202210,0,0,0,21
+202211,0,0,0,21
+202212,0,0,0,21
+202213,0,0,0,21
+202214,0,0,0,21
+202215,0,0,0,21
+202216,0,0,0,21
+202217,0,0,0,21
+202218,0,0,0,21
+202219,0,0,0,21
+202220,0,0,0,21
+202221,0,0,0,21
+202222,0,0,0,21
+202223,0,0,0,21
+202224,330438.6105,0,0,21
+202225,0,0,0,21
+202226,0,0,0,21
+202227,0,0,0,21
+202228,0,0,0,21
+202229,0,0,0,21
+202230,0,0,0,21
+202231,0,0,0,21
+202232,0,0,0,21
+202233,0,0,0,21
+202234,0,0,0,21
+202235,0,0,666245.8797,21
+202236,0,368478.1404,0,21
+202237,0,0,0,21
+202238,0,0,0,21
+202239,0,0,0,21
+202240,0,0,0,21
+202241,0,0,0,21
+202242,0,0,0,21
+202243,0,0,0,21
+202244,0,0,0,21
+202245,0,0,0,21
+202246,0,0,0,21
+202247,0,0,0,21
+202248,0,0,0,21
+202249,0,0,0,21
+202250,0,0,0,21
+202251,0,0,0,21
+202252,0,0,0,21
+202253,0,0,0,21
+202254,0,0,0,21
+202255,0,0,0,21
+202256,0,0,0,21
+202257,0,0,0,21
+202258,0,0,0,21
+202259,0,0,0,21
+202260,0,0,0,21
+202261,0,0,0,21
+202262,0,0,0,21
+202263,0,0,0,21
+202264,330804.6115,0,0,21
+202265,0,0,0,21
+202266,0,0,0,21
+202267,0,0,0,21
+202268,0,0,0,21
+202269,0,0,0,21
+202270,0,0,0,21
+202271,0,0,665815.3676,21
+202272,0,0,0,21
+202273,0,0,0,21
+202274,0,368486.7818,0,21
+202275,0,0,0,21
+202276,0,0,0,21
+202277,0,0,0,21
+202278,0,0,0,21
+202279,0,0,0,21
+202280,0,0,0,21
+202281,0,0,0,21
+202282,0,0,0,21
+202283,0,0,0,21
+202284,0,0,0,21
+202285,0,0,0,21
+202286,0,0,0,21
+202287,0,0,0,21
+202288,0,0,0,21
+202289,0,0,0,21
+202290,0,0,0,21
+202291,0,0,0,21
+202292,0,0,0,21
+202293,0,0,0,21
+202294,0,0,0,21
+202295,0,0,0,21
+202296,0,0,0,21
+202297,0,0,0,21
+202298,0,0,0,21
+202299,0,0,0,21
+202300,0,0,0,21
+202301,0,0,0,21
+202302,0,0,0,21
+202303,0,0,0,21
+202304,333960.7488,0,0,21
+202305,0,0,0,21
+202306,0,0,0,21
+202307,0,0,665345.5059,21
+202308,0,0,0,21
+202309,0,0,0,21
+202310,0,0,0,21
+202311,0,0,0,21
+202312,0,368495.4302,0,21
+202313,0,0,0,21
+202314,0,0,0,21
+202315,0,0,0,21
+202316,0,0,0,21
+202317,0,0,0,21
+202318,0,0,0,21
+202319,0,0,0,21
+202320,0,0,0,21
+202321,0,0,0,21
+202322,0,0,0,21
+202323,0,0,0,21
+202324,0,0,0,21
+202325,0,0,0,21
+202326,0,0,0,21
+202327,0,0,0,21
+202328,0,0,0,21
+202329,0,0,0,21
+202330,0,0,0,21
+202331,0,0,0,21
+202332,0,0,0,21
+202333,0,0,0,21
+202334,0,0,0,21
+202335,0,0,0,21
+202336,0,0,0,21
+202337,0,0,0,21
+202338,0,0,0,21
+202339,0,0,0,21
+202340,0,0,0,21
+202341,0,0,0,21
+202342,0,0,0,21
+202343,0,0,0,21
+202344,0,0,665223.9763,21
+202345,333482.9441,0,0,21
+202346,0,0,0,21
+202347,0,0,0,21
+202348,0,0,0,21
+202349,0,0,0,21
+202350,0,368504.078,0,21
+202351,0,0,0,21
+202352,0,0,0,21
+202353,0,0,0,21
+202354,0,0,0,21
+202355,0,0,0,21
+202356,0,0,0,21
+202357,0,0,0,21
+202358,0,0,0,21
+202359,0,0,0,21
+202360,0,0,0,21
+202361,0,0,0,21
+202362,0,0,0,21
+202363,0,0,0,21
+202364,0,0,0,21
+202365,0,0,0,21
+202366,0,0,0,21
+202367,0,0,0,21
+202368,0,0,0,21
+202369,0,0,0,21
+202370,0,0,0,21
+202371,0,0,0,21
+202372,0,0,0,21
+202373,0,0,0,21
+202374,0,0,0,21
+202375,0,0,0,21
+202376,0,0,0,21
+202377,0,0,0,21
+202378,0,0,0,21
+202379,0,0,0,21
+202380,0,0,0,21
+202381,0,0,664830.9389,21
+202382,0,0,0,21
+202383,0,0,0,21
+202384,0,0,0,21
+202385,0,0,0,21
+202386,336663.5943,0,0,21
+202387,0,0,0,21
+202388,0,368512.7338,0,21
+202389,0,0,0,21
+202390,0,0,0,21
+202391,0,0,0,21
+202392,0,0,0,21
+202393,0,0,0,21
+202394,0,0,0,21
+202395,0,0,0,21
+202396,0,0,0,21
+202397,0,0,0,21
+202398,0,0,0,21
+202399,0,0,0,21
+202400,0,0,0,21
+202401,0,0,0,21
+202402,0,0,0,21
+202403,0,0,0,21
+202404,0,0,0,21
+202405,0,0,0,21
+202406,0,0,0,21
+202407,0,0,0,21
+202408,0,0,0,21
+202409,0,0,0,21
+202410,0,0,0,21
+202411,0,0,0,21
+202412,0,0,0,21
+202413,0,0,0,21
+202414,0,0,0,21
+202415,0,0,0,21
+202416,0,0,0,21
+202417,0,0,664958.5567,21
+202418,0,0,0,21
+202419,0,0,0,21
+202420,0,0,0,21
+202421,0,0,0,21
+202422,0,0,0,21
+202423,0,0,0,21
+202424,0,0,0,21
+202425,0,0,0,21
+202426,0,368521.3907,0,21
+202427,337860.4721,0,0,21
+202428,0,0,0,21
+202429,0,0,0,21
+202430,0,0,0,21
+202431,0,0,0,21
+202432,0,0,0,21
+202433,0,0,0,21
+202434,0,0,0,21
+202435,0,0,0,21
+202436,0,0,0,21
+202437,0,0,0,21
+202438,0,0,0,21
+202439,0,0,0,21
+202440,0,0,0,21
+202441,0,0,0,21
+202442,0,0,0,21
+202443,0,0,0,21
+202444,0,0,0,21
+202445,0,0,0,21
+202446,0,0,0,21
+202447,0,0,0,21
+202448,0,0,0,21
+202449,0,0,0,21
+202450,0,0,0,21
+202451,0,0,0,21
+202452,0,0,0,21
+202453,0,0,664610.5923,21
+202454,0,0,0,21
+202455,0,0,0,21
+202456,0,0,0,21
+202457,0,0,0,21
+202458,0,0,0,21
+202459,0,0,0,21
+202460,0,0,0,21
+202461,0,0,0,21
+202462,0,0,0,21
+202463,0,0,0,21
+202464,0,368530.0465,0,21
+202465,0,0,0,21
+202466,0,0,0,21
+202467,332920.728,0,0,21
+202468,0,0,0,21
+202469,0,0,0,21
+202470,0,0,0,21
+202471,0,0,0,21
+202472,0,0,0,21
+202473,0,0,0,21
+202474,0,0,0,21
+202475,0,0,0,21
+202476,0,0,0,21
+202477,0,0,0,21
+202478,0,0,0,21
+202479,0,0,0,21
+202480,0,0,0,21
+202481,0,0,0,21
+202482,0,0,0,21
+202483,0,0,0,21
+202484,0,0,0,21
+202485,0,0,0,21
+202486,0,0,0,21
+202487,0,0,0,21
+202488,0,0,0,21
+202489,0,0,664448.7587,21
+202490,0,0,0,21
+202491,0,0,0,21
+202492,0,0,0,21
+202493,0,0,0,21
+202494,0,0,0,21
+202495,0,0,0,21
+202496,0,0,0,21
+202497,0,0,0,21
+202498,0,0,0,21
+202499,0,0,0,21
+202500,0,0,0,21
+202501,0,0,0,21
+202502,0,368538.7079,0,21
+202503,0,0,0,21
+202504,0,0,0,21
+202505,332559.5429,0,0,21
+202506,0,0,0,21
+202507,0,0,0,21
+202508,0,0,0,21
+202509,0,0,0,21
+202510,0,0,0,21
+202511,0,0,0,21
+202512,0,0,0,21
+202513,0,0,0,21
+202514,0,0,0,21
+202515,0,0,0,21
+202516,0,0,0,21
+202517,0,0,0,21
+202518,0,0,0,21
+202519,0,0,0,21
+202520,0,0,0,21
+202521,0,0,0,21
+202522,0,0,0,21
+202523,0,0,0,21
+202524,0,0,0,21
+202525,0,0,664706.9887,21
+202526,0,0,0,21
+202527,0,0,0,21
+202528,0,0,0,21
+202529,0,0,0,21
+202530,0,0,0,21
+202531,0,0,0,21
+202532,0,0,0,21
+202533,0,0,0,21
+202534,0,0,0,21
+202535,0,0,0,21
+202536,0,0,0,21
+202537,0,0,0,21
+202538,0,0,0,21
+202539,0,0,0,21
+202540,0,368547.371,0,21
+202541,0,0,0,21
+202542,0,0,0,21
+202543,333429.3814,0,0,21
+202544,0,0,0,21
+202545,0,0,0,21
+202546,0,0,0,21
+202547,0,0,0,21
+202548,0,0,0,21
+202549,0,0,0,21
+202550,0,0,0,21
+202551,0,0,0,21
+202552,0,0,0,21
+202553,0,0,0,21
+202554,0,0,0,21
+202555,0,0,0,21
+202556,0,0,0,21
+202557,0,0,0,21
+202558,0,0,0,21
+202559,0,0,0,21
+202560,0,0,0,21
+202561,0,0,664581.7481,21
+202562,0,0,0,21
+202563,0,0,0,21
+202564,0,0,0,21
+202565,0,0,0,21
+202566,0,0,0,21
+202567,0,0,0,21
+202568,0,0,0,21
+202569,0,0,0,21
+202570,0,0,0,21
+202571,0,0,0,21
+202572,0,0,0,21
+202573,0,0,0,21
+202574,0,0,0,21
+202575,0,0,0,21
+202576,0,0,0,21
+202577,0,0,0,21
+202578,0,368556.0336,0,21
+202579,0,0,0,21
+202580,0,0,0,21
+202581,333655.4848,0,0,21
+202582,0,0,0,21
+202583,0,0,0,21
+202584,0,0,0,21
+202585,0,0,0,21
+202586,0,0,0,21
+202587,0,0,0,21
+202588,0,0,0,21
+202589,0,0,0,21
+202590,0,0,0,21
+202591,0,0,0,21
+202592,0,0,0,21
+202593,0,0,0,21
+202594,0,0,0,21
+202595,0,0,0,21
+202596,0,0,0,21
+202597,0,0,664960.0806,21
+202598,0,0,0,21
+202599,0,0,0,21
+202600,0,0,0,21
+202601,0,0,0,21
+202602,0,0,0,21
+202603,0,0,0,21
+202604,0,0,0,21
+202605,0,0,0,21
+202606,0,0,0,21
+202607,0,0,0,21
+202608,0,0,0,21
+202609,0,0,0,21
+202610,0,0,0,21
+202611,0,0,0,21
+202612,0,0,0,21
+202613,0,0,0,21
+202614,0,0,0,21
+202615,0,0,0,21
+202616,0,368564.6996,0,21
+202617,0,0,0,21
+202618,0,0,0,21
+202619,333890.0532,0,0,21
+202620,0,0,0,21
+202621,0,0,0,21
+202622,0,0,0,21
+202623,0,0,0,21
+202624,0,0,0,21
+202625,0,0,0,21
+202626,0,0,0,21
+202627,0,0,0,21
+202628,0,0,0,21
+202629,0,0,0,21
+202630,0,0,0,21
+202631,0,0,0,21
+202632,0,0,0,21
+202633,0,0,665102.8098,21
+202634,0,0,0,21
+202635,0,0,0,21
+202636,0,0,0,21
+202637,0,0,0,21
+202638,0,0,0,21
+202639,0,0,0,21
+202640,0,0,0,21
+202641,0,0,0,21
+202642,0,0,0,21
+202643,0,0,0,21
+202644,0,0,0,21
+202645,0,0,0,21
+202646,0,0,0,21
+202647,0,0,0,21
+202648,0,0,0,21
+202649,0,0,0,21
+202650,0,0,0,21
+202651,0,0,0,21
+202652,0,0,0,21
+202653,0,368566.0156,0,21
+202654,0,0,0,21
+202655,0,0,0,21
+202656,0,0,0,21
+202657,0,0,0,21
+202658,334996.9407,0,0,21
+202659,0,0,0,21
+202660,0,0,0,21
+202661,0,0,0,21
+202662,0,0,0,21
+202663,0,0,0,21
+202664,0,0,0,21
+202665,0,0,0,21
+202666,0,0,0,21
+202667,0,0,0,21
+202668,0,0,0,21
+202669,0,0,664660.8531,21
+202670,0,0,0,21
+202671,0,0,0,21
+202672,0,0,0,21
+202673,0,0,0,21
+202674,0,0,0,21
+202675,0,0,0,21
+202676,0,0,0,21
+202677,0,0,0,21
+202678,0,0,0,21
+202679,0,0,0,21
+202680,0,0,0,21
+202681,0,0,0,21
+202682,0,0,0,21
+202683,0,0,0,21
+202684,0,0,0,21
+202685,0,0,0,21
+202686,0,0,0,21
+202687,0,0,0,21
+202688,0,0,0,21
+202689,0,0,0,21
+202690,0,0,0,21
+202691,0,368566.0154,0,21
+202692,0,0,0,21
+202693,0,0,0,21
+202694,0,0,0,21
+202695,0,0,0,21
+202696,0,0,0,21
+202697,334453.9248,0,0,21
+202698,0,0,0,21
+202699,0,0,0,21
+202700,0,0,0,21
+202701,0,0,0,21
+202702,0,0,0,21
+202703,0,0,0,21
+202704,0,0,0,21
+202705,0,0,664380.8283,21
+202706,0,0,0,21
+202707,0,0,0,21
+202708,0,0,0,21
+202709,0,0,0,21
+202710,0,0,0,21
+202711,0,0,0,21
+202712,0,0,0,21
+202713,0,0,0,21
+202714,0,0,0,21
+202715,0,0,0,21
+202716,0,0,0,21
+202717,0,0,0,21
+202718,0,0,0,21
+202719,0,0,0,21
+202720,0,0,0,21
+202721,0,0,0,21
+202722,0,0,0,21
+202723,0,0,0,21
+202724,0,0,0,21
+202725,0,0,0,21
+202726,0,0,0,21
+202727,0,0,0,21
+202728,0,0,0,21
+202729,0,368566.0181,0,21
+202730,0,0,0,21
+202731,0,0,0,21
+202732,0,0,0,21
+202733,0,0,0,21
+202734,0,0,0,21
+202735,0,0,0,21
+202736,336853.5239,0,0,21
+202737,0,0,0,21
+202738,0,0,0,21
+202739,0,0,0,21
+202740,0,0,0,21
+202741,0,0,664630.2608,21
+202742,0,0,0,21
+202743,0,0,0,21
+202744,0,0,0,21
+202745,0,0,0,21
+202746,0,0,0,21
+202747,0,0,0,21
+202748,0,0,0,21
+202749,0,0,0,21
+202750,0,0,0,21
+202751,0,0,0,21
+202752,0,0,0,21
+202753,0,0,0,21
+202754,0,0,0,21
+202755,0,0,0,21
+202756,0,0,0,21
+202757,0,0,0,21
+202758,0,0,0,21
+202759,0,0,0,21
+202760,0,0,0,21
+202761,0,0,0,21
+202762,0,0,0,21
+202763,0,0,0,21
+202764,0,0,0,21
+202765,0,0,0,21
+202766,0,0,0,21
+202767,0,368543.517,0,21
+202768,0,0,0,21
+202769,0,0,0,21
+202770,0,0,0,21
+202771,0,0,0,21
+202772,0,0,0,21
+202773,0,0,0,21
+202774,0,0,0,21
+202775,337828.6598,0,0,21
+202776,0,0,0,21
+202777,0,0,664056.9491,21
+202778,0,0,0,21
+202779,0,0,0,21
+202780,0,0,0,21
+202781,0,0,0,21
+202782,0,0,0,21
+202783,0,0,0,21
+202784,0,0,0,21
+202785,0,0,0,21
+202786,0,0,0,21
+202787,0,0,0,21
+202788,0,0,0,21
+202789,0,0,0,21
+202790,0,0,0,21
+202791,0,0,0,21
+202792,0,0,0,21
+202793,0,0,0,21
+202794,0,0,0,21
+202795,0,0,0,21
+202796,0,0,0,21
+202797,0,0,0,21
+202798,0,0,0,21
+202799,0,0,0,21
+202800,0,0,0,21
+202801,0,0,0,21
+202802,0,0,0,21
+202803,0,0,0,21
+202804,0,0,0,21
+202805,0,368566.0154,0,21
+202806,0,0,0,21
+202807,0,0,0,21
+202808,0,0,0,21
+202809,0,0,0,21
+202810,0,0,0,21
+202811,0,0,0,21
+202812,0,0,0,21
+202813,0,0,0,21
+202814,0,0,663819.8164,21
+202815,0,0,0,21
+202816,0,0,0,21
+202817,0,0,0,21
+202818,338558.6735,0,0,21
+202819,0,0,0,21
+202820,0,0,0,21
+202821,0,0,0,21
+202822,0,0,0,21
+202823,0,0,0,21
+202824,0,0,0,21
+202825,0,0,0,21
+202826,0,0,0,21
+202827,0,0,0,21
+202828,0,0,0,21
+202829,0,0,0,21
+202830,0,0,0,21
+202831,0,0,0,21
+202832,0,0,0,21
+202833,0,0,0,21
+202834,0,0,0,21
+202835,0,0,0,21
+202836,0,0,0,21
+202837,0,0,0,21
+202838,0,0,0,21
+202839,0,0,0,21
+202840,0,0,0,21
+202841,0,0,0,21
+202842,0,0,0,21
+202843,0,0,0,21
+202844,0,368566.0163,0,21
+202845,0,0,0,21
+202846,0,0,0,21
+202847,0,0,0,21
+202848,0,0,0,21
+202849,0,0,0,21
+202850,0,0,0,21
+202851,0,0,663514.0158,21
+202852,0,0,0,21
+202853,0,0,0,21
+202854,0,0,0,21
+202855,0,0,0,21
+202856,0,0,0,21
+202857,0,0,0,21
+202858,0,0,0,21
+202859,0,0,0,21
+202860,0,0,0,21
+202861,339096.176,0,0,21
+202862,0,0,0,21
+202863,0,0,0,21
+202864,0,0,0,21
+202865,0,0,0,21
+202866,0,0,0,21
+202867,0,0,0,21
+202868,0,0,0,21
+202869,0,0,0,21
+202870,0,0,0,21
+202871,0,0,0,21
+202872,0,0,0,21
+202873,0,0,0,21
+202874,0,0,0,21
+202875,0,0,0,21
+202876,0,0,0,21
+202877,0,0,0,21
+202878,0,0,0,21
+202879,0,0,0,21
+202880,0,0,0,21
+202881,0,0,0,21
+202882,0,0,0,21
+202883,0,0,0,21
+202884,0,368610.7005,0,21
+202885,0,0,0,21
+202886,0,0,0,21
+202887,0,0,664265.0087,21
+202888,0,0,0,21
+202889,0,0,0,21
+202890,0,0,0,21
+202891,0,0,0,21
+202892,0,0,0,21
+202893,0,0,0,21
+202894,0,0,0,21
+202895,0,0,0,21
+202896,0,0,0,21
+202897,0,0,0,21
+202898,0,3.658853847,0,21
+202899,0,0,0,21
+202900,338847.9859,65.72334681,0,21
+202901,0,0,0,21
+202902,0,0,0,21
+202903,0,0,0,21
+202904,0,0,0,21
+202905,0,248.0386571,0,21
+202906,0,0,0,21
+202907,0,0,0,21
+202908,0,0,0,21
+202909,0,0,0,21
+202910,0,0,0,21
+202911,0,0,0,21
+202912,0,0,0,21
+202913,0,0,0,21
+202914,0,82.90619281,0,21
+202915,0,0,0,21
+202916,0,0,0,21
+202917,0,0,0,21
+202918,0,0,0,21
+202919,0,58.74216017,0,21
+202920,0,0,0,15.6
+202921,0,0,0,15.6
+202922,0,0,0,15.6
+202923,0,368591.7851,663621.7701,15.6
+202924,0,0,0,15.6
+202925,0,0,0,15.6
+202926,0,0,0,15.6
+202927,0,0,0,15.6
+202928,0,121.7341621,0,15.6
+202929,0,0,0,15.6
+202930,0,0,0,15.6
+202931,0,0,0,15.6
+202932,0,3.597350742,0,15.6
+202933,0,0,0,15.6
+202934,0,96.9888154,0,15.6
+202935,0,0,0,15.6
+202936,0,0,0,15.6
+202937,0,0,0,15.6
+202938,0,7.267049117,0,15.6
+202939,338971.1307,0,0,15.6
+202940,0,105.5891951,0,15.6
+202941,0,0,0,15.6
+202942,0,0,0,15.6
+202943,0,0,0,15.6
+202944,0,3.916067592,0,15.6
+202945,0,0,0,15.6
+202946,0,96.93317749,0,15.6
+202947,0,0,0,15.6
+202948,0,0,0,15.6
+202949,0,0,0,15.6
+202950,0,3.741448603,0,15.6
+202951,0,0,0,15.6
+202952,0,83.97447254,0,15.6
+202953,0,0,0,15.6
+202954,0,0,0,15.6
+202955,0,0,0,15.6
+202956,0,7.160676233,0,15.6
+202957,0,0,0,15.6
+202958,0,95.95219868,0,15.6
+202959,0,0,664888.9291,15.6
+202960,0,0,0,15.6
+202961,0,368558.7691,0,15.6
+202962,0,2.848651178,0,15.6
+202963,0,0,0,15.6
+202964,0,66.31624984,0,15.6
+202965,0,0,0,15.6
+202966,0,0,0,15.6
+202967,0,0,0,15.6
+202968,0,3.133384016,0,15.6
+202969,0,0,0,15.6
+202970,0,66.04664859,0,15.6
+202971,0,0,0,15.6
+202972,0,0,0,15.6
+202973,0,0,0,15.6
+202974,0,3.696463962,0,15.6
+202975,0,0,0,15.6
+202976,0,75.3202851,0,15.6
+202977,0,0,0,15.6
+202978,339932.3428,0,0,15.6
+202979,0,0,0,15.6
+202980,0,3.711573997,0,15.6
+202981,0,0,0,15.6
+202982,0,75.95890047,0,15.6
+202983,0,0,0,15.6
+202984,0,0,0,15.6
+202985,0,0,0,15.6
+202986,0,3.654279363,0,15.6
+202987,0,0,0,15.6
+202988,0,74.92367722,0,15.6
+202989,0,0,0,15.6
+202990,0,0,0,15.6
+202991,0,0,0,15.6
+202992,0,3.610687386,0,15.6
+202993,0,0,0,15.6
+202994,0,73.77546405,665483.9399,15.6
+202995,0,0,0,15.6
+202996,0,0,0,15.6
+202997,0,368544.2279,0,15.6
+202998,0,3.365827949,0,15.6
+202999,0,0,0,15.6
+203000,0,67.44432543,0,15.6
+203001,0,0,0,15.6
+203002,0,0,0,15.6
+203003,0,0,0,15.6
+203004,0,0,0,15.6
+203005,0,0,0,15.6
+203006,0,0,0,15.6
+203007,0,0,0,15.6
+203008,0,0,0,15.6
+203009,0,3.590851108,0,15.6
+203010,0,0,0,15.6
+203011,0,0,0,15.6
+203012,0,55.78105835,0,15.6
+203013,0,0,0,15.6
+203014,339930.7368,0,0,15.6
+203015,0,0,0,15.6
+203016,0,0,0,15.6
+203017,0,0,0,15.6
+203018,0,0,0,15.6
+203019,0,0,0,15.6
+203020,0,0,0,15.6
+203021,0,0,0,15.6
+203022,0,86.05951162,0,15.6
+203023,0,0,0,15.6
+203024,0,0,0,15.6
+203025,0,0,0,15.6
+203026,0,0,0,15.6
+203027,0,0,0,15.6
+203028,0,0,0,15.6
+203029,0,0,665815.0776,15.6
+203030,0,0,0,15.6
+203031,0,0,0,15.6
+203032,0,0,0,15.6
+203033,0,368544.9286,0,15.6
+203034,0,0,0,15.6
+203035,0,0,0,15.6
+203036,0,0,0,15.6
+203037,0,0,0,15.6
+203038,0,0,0,15.6
+203039,0,0,0,15.6
+203040,0,0,0,15.6
+203041,0,3.145728105,0,15.6
+203042,0,0,0,15.6
+203043,0,0,0,15.6
+203044,0,0,0,15.6
+203045,0,0,0,15.6
+203046,0,0,0,15.6
+203047,0,0,0,15.6
+203048,0,0,0,15.6
+203049,0,0,0,15.6
+203050,339932.9196,0,0,15.6
+203051,0,243.81388,0,15.6
+203052,0,0,0,15.6
+203053,0,0,0,15.6
+203054,0,0,0,15.6
+203055,0,0,0,15.6
+203056,0,0,0,15.6
+203057,0,0,0,15.6
+203058,0,0,0,15.6
+203059,0,0,0,15.6
+203060,0,0,0,15.6
+203061,0,0,0,15.6
+203062,0,0,0,15.6
+203063,0,72.84984378,0,15.6
+203064,0,0,666078.7038,15.6
+203065,0,0,0,15.6
+203066,0,0,0,15.6
+203067,0,0,0,15.6
+203068,0,0,0,15.6
+203069,0,368508.0027,0,15.6
+203070,0,0,0,15.6
+203071,0,0,0,15.6
+203072,0,0,0,15.6
+203073,0,0,0,15.6
+203074,0,0,0,15.6
+203075,0,0,0,15.6
+203076,0,0,0,15.6
+203077,0,0,0,15.6
+203078,0,0,0,15.6
+203079,0,0,0,15.6
+203080,0,0,0,15.6
+203081,0,0,0,15.6
+203082,0,0,0,15.6
+203083,0,0,0,15.6
+203084,0,34.10403217,0,15.6
+203085,0,0,0,15.6
+203086,339950.0927,0,0,15.6
+203087,0,0,0,15.6
+203088,0,0,0,15.6
+203089,0,0,0,15.6
+203090,0,0,0,15.6
+203091,0,0,0,15.6
+203092,0,0,0,15.6
+203093,0,0,0,15.6
+203094,0,0,0,15.6
+203095,0,2.635633758,0,15.6
+203096,0,0,0,15.6
+203097,0,0,0,15.6
+203098,0,56.9294653,0,15.6
+203099,0,0,666404.9435,15.6
+203100,0,0,0,15.6
+203101,0,0,0,15.6
+203102,0,0,0,15.6
+203103,0,0,0,15.6
+203104,0,0,0,15.6
+203105,0,368466.6263,0,15.6
+203106,0,0,0,15.6
+203107,0,0,0,15.6
+203108,0,35.70973387,0,15.6
+203109,0,0,0,15.6
+203110,0,0,0,15.6
+203111,0,0,0,15.6
+203112,0,0,0,15.6
+203113,0,0,0,15.6
+203114,0,0,0,15.6
+203115,0,0,0,15.6
+203116,0,0,0,15.6
+203117,0,3.740466835,0,15.6
+203118,0,0,0,15.6
+203119,0,68.69427613,0,15.6
+203120,0,0,0,15.6
+203121,0,0,0,15.6
+203122,339958.4487,0,0,15.6
+203123,0,3.18174276,0,15.6
+203124,0,0,0,15.6
+203125,0,65.82945808,0,15.6
+203126,0,0,0,15.6
+203127,0,0,0,15.6
+203128,0,0,0,15.6
+203129,0,3.289468311,0,15.6
+203130,0,0,0,15.6
+203131,0,67.38897238,0,15.6
+203132,0,0,0,15.6
+203133,0,0,0,15.6
+203134,0,0,666684.5477,15.6
+203135,0,3.272480694,0,15.6
+203136,0,0,0,15.6
+203137,0,67.23792785,0,15.6
+203138,0,0,0,15.6
+203139,0,0,0,15.6
+203140,0,0,0,15.6
+203141,0,368454.2553,0,15.6
+203142,0,0,0,15.6
+203143,0,0,0,15.6
+203144,0,59.99437751,0,15.6
+203145,0,0,0,15.6
+203146,0,0,0,15.6
+203147,0,0,0,15.6
+203148,0,0,0,15.6
+203149,0,0,0,15.6
+203150,0,0,0,15.6
+203151,0,0,0,15.6
+203152,0,0,0,15.6
+203153,0,0,0,15.6
+203154,0,260.5238817,0,15.6
+203155,0,0,0,15.6
+203156,0,0,0,15.6
+203157,0,0,0,15.6
+203158,339961.0946,0,0,15.6
+203159,0,0,0,15.6
+203160,0,0,0,15.6
+203161,0,0,0,15.6
+203162,0,0,0,15.6
+203163,0,0,0,15.6
+203164,0,229.83252,0,15.6
+203165,0,0,0,15.6
+203166,0,0,0,15.6
+203167,0,0,0,15.6
+203168,0,0,0,15.6
+203169,0,0,666895.2766,15.6
+203170,0,0,0,15.6
+203171,0,0,0,15.6
+203172,0,0,0,15.6
+203173,0,0,0,15.6
+203174,0,0,0,15.6
+203175,0,0,0,15.6
+203176,0,0,0,15.6
+203177,0,368443.0885,0,15.6
+203178,0,0,0,15.6
+203179,0,0,0,15.6
+203180,0,247.5865126,0,15.6
+203181,0,0,0,15.6
+203182,0,0,0,15.6
+203183,0,0,0,15.6
+203184,0,0,0,15.6
+203185,0,0,0,15.6
+203186,0,0,0,15.6
+203187,0,0,0,15.6
+203188,0,0,0,15.6
+203189,0,0,0,15.6
+203190,0,0,0,15.6
+203191,0,0,0,15.6
+203192,0,0,0,15.6
+203193,0,2.416493263,0,15.6
+203194,339963.0617,0,0,15.6
+203195,0,0,0,15.6
+203196,0,58.05675987,0,15.6
+203197,0,0,0,15.6
+203198,0,0,0,15.6
+203199,0,0,0,15.6
+203200,0,0,0,15.6
+203201,0,0,0,15.6
+203202,0,0,0,15.6
+203203,0,0,0,15.6
+203204,0,0,667244.9373,15.6
+203205,0,0,0,15.6
+203206,0,251.7738626,0,15.6
+203207,0,0,0,15.6
+203208,0,0,0,15.6
+203209,0,0,0,15.6
+203210,0,0,0,15.6
+203211,0,0,0,15.6
+203212,0,0,0,15.6
+203213,0,368434.8507,0,15.6
+203214,0,0,0,15.6
+203215,0,0,0,15.6
+203216,0,0,0,15.6
+203217,0,0,0,15.6
+203218,0,241.6238023,0,15.6
+203219,0,0,0,15.6
+203220,0,0,0,15.6
+203221,0,0,0,15.6
+203222,0,0,0,15.6
+203223,0,0,0,15.6
+203224,0,0,0,15.6
+203225,0,0,0,15.6
+203226,0,0,0,15.6
+203227,0,0,0,15.6
+203228,0,0,0,15.6
+203229,0,0,0,15.6
+203230,0,0,0,15.6
+203231,339963.8348,3.728031898,0,15.6
+203232,0,0,0,15.6
+203233,0,0,0,15.6
+203234,0,58.12305568,0,15.6
+203235,0,0,0,15.6
+203236,0,0,0,15.6
+203237,0,0,0,15.6
+203238,0,0,0,15.6
+203239,0,0,667645.5401,15.6
+203240,0,0,0,15.6
+203241,0,0,0,15.6
+203242,0,0,0,15.6
+203243,0,0,0,15.6
+203244,0,252.6622771,0,15.6
+203245,0,0,0,15.6
+203246,0,0,0,15.6
+203247,0,0,0,15.6
+203248,0,0,0,15.6
+203249,0,368438.4305,0,15.6
+203250,0,0,0,15.6
+203251,0,0,0,15.6
+203252,0,0,0,15.6
+203253,0,0,0,15.6
+203254,0,0,0,15.6
+203255,0,0,0,15.6
+203256,0,0,0,15.6
+203257,0,0,0,15.6
+203258,0,0,0,15.6
+203259,0,0,0,15.6
+203260,0,0,0,15.6
+203261,0,0,0,15.6
+203262,0,0,0,15.6
+203263,0,0,0,15.6
+203264,0,0,0,15.6
+203265,0,0,0,15.6
+203266,0,0,0,15.6
+203267,339963.253,0,0,15.6
+203268,0,0,0,15.6
+203269,0,0,0,15.6
+203270,0,0,0,15.6
+203271,0,0,0,15.6
+203272,0,0,0,15.6
+203273,0,0,0,15.6
+203274,0,0,667910.7892,15.6
+203275,0,0,0,15.6
+203276,0,0,0,15.6
+203277,0,0,0,15.6
+203278,0,0,0,15.6
+203279,0,0,0,15.6
+203280,0,0,0,17.8
+203281,77504.55933,98971.79686,0,17.8
+203282,32391.63687,34285.13531,0,17.8
+203283,11222.27094,46375.79086,0,17.8
+203284,25569.40626,52158.33649,0,17.8
+203285,23768.69766,416063.3457,0,17.8
+203286,22176.73022,47566.06877,0,17.8
+203287,22277.05943,47541.80823,0,17.8
+203288,22199.67377,46994.67512,0,17.8
+203289,23026.58147,46830.50142,0,17.8
+203290,23026.5034,46595.21193,0,17.8
+203291,22849.94171,46180.22411,0,17.8
+203292,22965.8717,46084.1271,0,17.8
+203293,22984.25799,45780.7591,0,17.8
+203294,23004.40511,45385.77635,0,17.8
+203295,23028.0897,45025.40263,0,17.8
+203296,23014.87247,44957.4501,0,17.8
+203297,23051.38299,44940.40334,0,17.8
+203298,23078.46132,44813.82984,0,17.8
+203299,23084.81887,44455.32791,0,17.8
+203300,23092.64807,44339.74866,0,17.8
+203301,23127.50597,43859.35441,0,17.8
+203302,23157.86623,43769.31864,0,17.8
+203303,363116.2015,43619.37601,0,17.8
+203304,23196.42561,43187.79882,0,17.8
+203305,23206.18844,42905.33237,0,17.8
+203306,23232.65934,42580.03994,0,17.8
+203307,23222.14632,42322.80282,0,17.8
+203308,23274.42197,41955.12453,0,17.8
+203309,23332.59225,41856.65861,668179.907,17.8
+203310,22153.77748,41321.74265,0,17.8
+203311,0,0,0,17.8
+203312,0,0,0,17.8
+203313,0,230.6765245,0,17.8
+203314,0,2741.184068,0,17.8
+203315,0,1121.928595,0,17.8
+203316,68436.72036,1639.523236,0,17.8
+203317,6730.507467,1671.882185,0,17.8
+203318,20409.41955,34708.11585,0,17.8
+203319,25745.92773,19318.14767,0,17.8
+203320,21998.46747,53274.68731,0,17.8
+203321,22408.65544,406890.677,0,17.8
+203322,22354.18394,40417.39764,0,17.8
+203323,22436.20949,40458.53634,0,17.8
+203324,22445.3428,40333.60074,0,17.8
+203325,22436.2355,40523.39732,0,17.8
+203326,22450.80011,39947.41113,0,17.8
+203327,22490.60969,39961.45043,0,17.8
+203328,22458.28195,39720.91123,0,17.8
+203329,22496.41791,39534.6645,0,17.8
+203330,22512.58404,39472.50453,0,17.8
+203331,22512.59683,39218.15357,0,17.8
+203332,22438.18895,39183.59936,0,17.8
+203333,22366.58822,38944.59141,0,17.8
+203334,22445.47061,38864.69709,0,17.8
+203335,22413.66664,38906.4046,0,17.8
+203336,22387.12489,36734.66831,0,17.8
+203337,22413.69173,36560.70617,0,17.8
+203338,22410.59504,36465.85536,0,17.8
+203339,361897.6195,36247.10235,0,17.8
+203340,21767.57473,36037.31148,0,20
+203341,906580.2477,327134.3966,668494.8267,20
+203342,304058.227,198954.9044,0,20
+203343,62450.30177,100935.3914,0,20
+203344,192656.8154,170437.1064,0,20
+203345,255933.4507,182869.1839,0,20
+203346,191480.9524,160565.2353,0,20
+203347,204148.0375,166340.7282,0,20
+203348,203344.1453,167260.2907,0,20
+203349,202088.2558,166654.8399,0,20
+203350,201539.6459,166132.1054,0,20
+203351,200368.9004,166214.7495,0,20
+203352,199401.1475,165824.4833,0,20
+203353,198802.7839,176918.4808,0,20
+203354,197436.2557,172778.9468,0,20
+203355,196895.4278,173212.1695,0,20
+203356,195641.0803,173562.1517,0,20
+203357,195299.6263,176301.783,459.9382247,20
+203358,193669.201,177033.1098,342.1307961,20
+203359,193361.7818,176362.3919,364.4719658,20
+203360,192282.1945,206239.4206,438.0991251,20
+203361,191140.2558,225982.7797,1236.854649,20
+203362,190501.0085,210834.7556,4253.196016,20
+203363,190044.6871,217382.5473,2684.923146,20
+203364,189150.6314,221158.3261,3546.41557,20
+203365,188349.6855,220839.9175,3851.145772,20
+203366,187555.1197,222519.6993,4221.542622,20
+203367,187469.8709,224947.5749,4360.459375,20
+203368,186093.3855,224903.5571,4764.493732,20
+203369,185896.2171,227544.6185,5029.221149,20
+203370,185407.7612,227831.6675,5161.571231,20
+203371,185003.4493,230102.9532,5541.104197,20
+203372,184075.3083,229888.0755,5797.795608,20
+203373,182970.4472,230952.7977,6057.971064,20
+203374,182741.0018,231700.739,6206.593687,20
+203375,181886.0431,232785.5794,6570.739912,20
+203376,180771.0946,233796.2934,6695.491114,20
+203377,180287.0768,233498.2863,7084.214995,20
+203378,179602.9441,235447.1702,6825.842422,20
+203379,178252.7267,235116.5274,7077.830073,20
+203380,178238.965,235125.1691,7301.394933,20
+203381,176797.1494,237067.9072,7348.42383,20
+203382,176341.4523,237604.9746,7688.596509,20
+203383,175610.8001,237040.7771,7060.333707,20
+203384,174133.4129,238735.7933,7152.174971,20
+203385,174250.3285,239057.1532,7350.81399,20
+203386,172661.8031,240128.8949,7482.037947,20
+203387,172077.4959,240382.8164,7570.521531,20
+203388,171087.1089,242514.1409,7806.859804,20
+203389,170180.661,241130.7867,7882.013254,20
+203390,169292.6667,242776.4719,8016.545381,20
+203391,168559.4002,244772.8279,8143.908332,20
+203392,167396.2174,242751.5624,8308.415685,20
+203393,166631.2947,246314.241,8446.43715,20
+203394,165538.8969,245174.1314,8582.655726,20
+203395,164661.6061,246571.9098,8616.160353,20
+203396,164085.8165,246270.2006,8883.502557,20
+203397,162433.3725,247782.9778,8889.749199,20
+203398,162283.1879,248637.6366,9159.188951,20
+203399,160622.5989,247782.917,9160.18285,20
+203400,159059.8294,250299.3962,9247.608941,21
+203401,146718.7073,278657.0107,7033.078465,21
+203402,144164.1709,269725.8469,6933.258427,21
+203403,142824.4137,267097.1565,6705.198085,21
+203404,140968.6732,263984.9901,6922.227986,21
+203405,140579.451,258957.3568,6960.849398,21
+203406,139650.6241,257441.9362,6945.118507,21
+203407,139277.216,252111.4429,7102.37773,21
+203408,138813.6575,250649.2316,7115.424268,21
+203409,137558.1669,245799.5636,7105.172286,21
+203410,137287.7809,243497.9084,7261.507606,21
+203411,136621.331,240047.4082,7371.408511,21
+203412,135740.6857,235326.0039,7278.038871,21
+203413,135543.6791,233532.9958,7517.076775,21
+203414,134389.5446,229819.4486,7295.894625,21
+203415,134295.8064,226713.2696,7657.975367,21
+203416,132980.7526,223702.6677,7550.136745,21
+203417,132844.0684,220428.5393,7581.243515,21
+203418,132003.4897,217349.4253,7677.588514,21
+203419,131320.6259,214534.7714,7707.499417,21
+203420,130882.4778,211067.0171,7836.274696,21
+203421,129755.7873,209623.2289,7711.959963,21
+203422,129529.7976,207458.3527,7867.790064,21
+203423,128846.5,208308.2487,7965.194317,21
+203424,128014.0595,206762.5057,7872.338695,21
+203425,127569.785,206872.4437,7986.261069,21
+203426,127051.5391,205076.5785,8013.139429,21
+203427,126293.6334,205881.0865,8004.360589,21
+203428,125798.5945,203322.1056,8143.276351,21
+203429,125272.1415,204018.6711,8145.093924,21
+203430,124658.9828,203178.6945,8038.763437,21
+203431,123904.7368,201251.5874,8141.710058,21
+203432,123628.5482,201621.1281,7900.289848,21
+203433,122944.5016,200851.9284,7768.169357,21
+203434,122148.7578,199264.0921,7658.964447,21
+203435,122110.6043,200458.466,7428.18137,21
+203436,121146.1693,197814.2785,7539.257628,21
+203437,120685.0753,197919.124,6694.456027,21
+203438,120231.0854,197623.2939,6696.366246,21
+203439,119632.2578,196298.2806,6219.209324,21
+203440,119106.7206,196303.6475,6207.039033,21
+203441,118576.7091,195172.0153,5967.478718,21
+203442,117763.0738,194192.976,5598.367183,21
+203443,117607.0484,193857.6348,5613.64063,21
+203444,116785.2055,193358.73,5213.064783,21
+203445,116363.1153,192765.237,4982.247783,21
+203446,115951.7747,191036.4882,4838.740833,21
+203447,115147.196,191553.2751,4488.45349,21
+203448,114969.0115,190189.6732,4446.343162,21
+203449,113957.942,190518.0659,3973.731621,21
+203450,113763.6258,188811.0703,3811.892016,21
+203451,113407.0938,188429.4188,3557.975907,21
+203452,112484.2221,189615.3248,3302.106517,21
+203453,112443.1658,187093.1228,3015.064757,21
+203454,111443.1217,187783.8961,2659.7574,21
+203455,111388.4948,187135.4674,2462.324052,21
+203456,110727.5972,185190.8455,2211.097061,21
+203457,110135.6815,185435.7498,1812.494592,21
+203458,109654.8968,184912.42,1638.406586,21
+203459,109139.6567,184092.7417,1344.195143,21
+203460,108892.7088,182369.1203,1070.58676,21
+203461,44027.36032,72079.23365,0,21
+203462,40411.85459,69021.83543,0,21
+203463,39137.45406,68038.51588,0,21
+203464,38220.10613,67249.93371,0,21
+203465,37053.9379,66532.28835,0,21
+203466,36142.74321,65486.87319,0,21
+203467,35111.84507,65253.6505,0,21
+203468,34347.07202,64172.5638,0,21
+203469,33458.0923,63343.59396,0,21
+203470,32809.75144,62960.35469,0,21
+203471,31673.94842,62064.22864,0,21
+203472,31003.33733,61691.47471,0,21
+203473,30199.32529,60516.04555,0,21
+203474,29321.59788,60335.77155,0,21
+203475,28699.03464,59494.80699,0,21
+203476,28300.81388,58707.40215,0,21
+203477,27398.26286,58603.92703,0,21
+203478,27207.44673,57387.54318,0,21
+203479,26544.14422,56928.9733,0,21
+203480,25976.09801,56454.12155,0,21
+203481,25525.15985,55593.17928,0,21
+203482,24860.70023,55233.6941,0,21
+203483,24618.42215,54177.42763,0,21
+203484,23783.15775,54074.26979,0,21
+203485,23571.59872,53082.60543,0,21
+203486,23186.61549,52659.95418,0,21
+203487,22846.48641,51899.37868,0,21
+203488,22654.32618,51379.27188,0,21
+203489,22608.09726,50731.28704,0,21
+203490,22118.73776,49954.59992,0,21
+203491,22060.62795,49527.49268,0,21
+203492,21697.3202,48724.52865,0,21
+203493,21492.97379,48145.22262,0,21
+203494,21261.92976,47417.85459,0,21
+203495,20959.61579,46883.02934,0,21
+203496,20852.01322,46477.06949,0,21
+203497,20434.34345,45518.21956,0,21
+203498,20236.63123,44976.85496,0,21
+203499,20031.06911,44590.81337,0,21
+203500,19783.50319,43892.4137,0,21
+203501,19469.60892,43399.64418,0,21
+203502,19190.22747,42588.60726,0,21
+203503,19098.99081,42357.26459,0,21
+203504,18623.92944,41486.13423,0,21
+203505,18520.16712,40969.49328,0,21
+203506,18229.3265,40660.71464,0,21
+203507,18038.96838,39816.18757,0,21
+203508,17664.27543,39280.96695,0,21
+203509,17509.85143,38591.68077,0,21
+203510,17187.69993,38499.4021,0,21
+203511,16949.87846,37336.24493,0,21
+203512,16733.29343,37309.5247,0,21
+203513,16387.50415,36445.2839,0,21
+203514,16248.47116,35958.4856,0,21
+203515,15959.20628,35553.67964,0,21
+203516,15670.03334,34827.59689,0,21
+203517,15355.96064,34168.62385,0,21
+203518,15258.82574,33828.22157,0,21
+203519,14862.47563,33307.3811,0,21
+203520,14649.06831,32506.02786,0,21
+203521,14572.59647,32410.89196,0,21
+203522,14068.56182,31208.4773,0,21
+203523,13967.46891,30932.16785,0,21
+203524,13890.36863,30134.27896,0,21
+203525,13358.20154,29830.50042,0,21
+203526,13291.19393,28883.31919,0,21
+203527,13199.63252,28686.85984,0,21
+203528,12652.3543,27571.14873,0,21
+203529,12606.36933,27492.5531,0,21
+203530,12384.56068,26583.973,0,21
+203531,12090.76474,26112.66372,0,21
+203532,11902.21776,25490.09652,0,21
+203533,11689.53963,24859.35426,0,21
+203534,11404.2348,24370.46335,0,21
+203535,11177.5305,23690.95341,0,21
+203536,11009.86664,23057.59642,0,21
+203537,10805.20539,22481.89893,0,21
+203538,10491.8348,22222.88685,0,21
+203539,10200.51201,21461.10141,0,21
+203540,10210.80041,21071.89185,0,21
+203541,9796.458437,20611.4943,0,21
+203542,9587.023782,20019.21084,0,21
+203543,9400.778969,19602.50524,0,21
+203544,9214.668361,18804.37556,0,21
+203545,8889.427409,18537.71424,0,21
+203546,8799.262958,17856.2638,0,21
+203547,8399.871379,17609.12393,0,21
+203548,8400.764959,16549.65553,0,21
+203549,8001.26203,16500.56106,0,21
+203550,7973.594388,15590.74677,0,21
+203551,7669.548515,15179.65061,0,21
+203552,7529.842347,14492.04145,0,21
+203553,7502.044346,14208.81699,0,21
+203554,7251.212723,13492.92346,0,21
+203555,7125.329352,13005.6878,0,21
+203556,7100.305411,12191.73419,0,21
+203557,6860.058799,11835.84188,0,21
+203558,6834.904599,11175.41025,0,21
+203559,6593.365639,10599.89288,0,21
+203560,6580.73344,10019.27638,0,21
+203561,6325.202628,9348.768089,0,21
+203562,6312.50317,8730.638225,0,21
+203563,6171.445162,8282.36029,0,21
+203564,6055.519196,7448.323914,0,21
+203565,5900.876631,6803.134914,0,21
+203566,5771.420484,6355.519752,0,21
+203567,5771.420693,5269.021475,0,21
+203568,5498.449425,5216.317041,0,21
+203569,5367.802825,4781.723532,0,21
+203570,5485.517192,4899.123174,0,21
+203571,5092.27572,4479.884003,0,21
+203572,5092.275937,4403.258465,0,21
+203573,4947.301507,4198.575404,0,21
+203574,4934.22176,4113.190631,0,21
+203575,4668.959656,3891.112332,0,21
+203576,4668.959995,3556.352798,0,21
+203577,4388.644428,3305.019553,0,21
+203578,4509.254639,3241.397045,0,21
+203579,4254.338328,3001.526443,0,21
+203580,4106.241428,2710.643877,0,21
+203581,3808.314331,2441.446047,0,21
+203582,3561.4873,2310.787622,0,21
+203583,3534.616046,2244.986325,0,21
+203584,3410.391945,2128.070761,0,21
+203585,3369.876061,2035.633775,0,21
+203586,3133.118377,1968.343617,0,21
+203587,3217.893904,1848.403657,0,21
+203588,2825.845921,1764.153356,0,21
+203589,3078.810961,1673.504058,0,21
+203590,2670.933863,1572.043464,0,21
+203591,2784.806922,1476.630329,0,21
+203592,2515.104027,1375.581308,0,21
+203593,2501.333452,1263.018734,0,21
+203594,2473.699266,1204.0666,0,21
+203595,2214.304226,1069.844819,0,21
+203596,2186.54373,979.6279554,0,21
+203597,2055.377356,852.7809329,0,21
+203598,2013.49397,818.9645511,0,21
+203599,1895.212818,802.7292229,0,21
+203600,1867.19171,770.1243971,0,21
+203601,1584.699827,770.1295171,0,21
+203602,1691.393569,753.7551847,0,21
+203603,1419.921342,720.8728429,0,21
+203604,1405.756907,720.872786,0,21
+203605,1377.321407,704.3596182,0,21
+203606,1097.758091,687.7974417,0,21
+203607,1210.215671,654.5222657,0,21
+203608,924.5734255,671.1853591,0,21
+203609,1040.447701,621.0397461,0,21
+203610,729.5543449,621.0397945,0,21
+203611,729.5545614,604.2196565,0,21
+203612,686.0523883,587.3432374,0,21
+203613,700.5930889,570.410152,0,21
+203614,671.4710632,536.3698453,0,21
+203615,656.8482911,536.3698946,0,21
+203616,642.1834246,502.0879278,0,21
+203617,642.1834482,502.0879606,0,21
+203618,612.7244949,467.5516228,0,21
+203619,597.9288522,450.1835528,0,21
+203620,583.087988,432.7461981,0,21
+203621,583.0880115,415.2373698,0,21
+203622,553.2670637,397.6546864,0,21
+203623,553.2670819,379.9987175,0,21
+203624,523.2541659,362.2579514,0,21
+203625,523.2541944,344.4364461,0,21
+203626,493.0407789,326.5297672,0,21
+203627,493.0408042,308.5334401,0,21
+203628,477.8560043,290.4432493,0,21
+203629,447.3236904,253.9615356,0,21
+203630,462.6174747,263.1213622,0,21
+203631,416.5647915,217.0380958,0,21
+203632,431.9733956,217.0381038,0,21
+203633,401.0963086,198.3921091,0,21
+203634,385.5660643,160.6819321,0,21
+203635,369.9720866,160.6819346,0,21
+203636,369.9721187,141.5913455,0,21
+203637,354.3122731,102.8453612,0,21
+203638,322.7853936,102.8453645,0,21
+203639,322.7853983,83.1331485,0,21
+203640,306.9130269,53.00839584,0,21
+203641,322.7859379,73.17422811,0,21
+203642,306.9130442,53.00839995,0,21
+203643,290.9640284,32.42041437,0,21
+203644,274.9349493,21.90590657,0,21
+203645,258.8219847,0,0,21
+203646,258.8219872,0,0,21
+203647,218.1430033,0,0,21
+203648,226.3266885,0,0,21
+203649,193.4362084,0,0,21
+203650,193.4362041,0,0,21
+203651,160.0944854,0,0,21
+203652,176.8259909,0,0,21
+203653,126.2222671,0,0,21
+203654,126.2222905,0,0,21
+203655,126.2223103,0,0,21
+203656,91.69807738,0,0,21
+203657,74.13122934,0,0,21
+203658,74.13123324,0,0,21
+203659,56.30811074,0,0,21
+203660,38.15895133,0,0,21
+203661,19.54820925,0,0,21
+203662,0,0,0,21
+203663,0,0,0,21
+203664,0,0,0,21
+203665,0,0,0,21
+203666,0,0,0,21
+203667,0,0,0,21
+203668,0,0,0,21
+203669,0,0,0,21
+203670,0,0,0,21
+203671,0,0,0,21
+203672,0,0,0,21
+203673,0,0,0,21
+203674,0,0,0,21
+203675,0,0,0,21
+203676,0,0,0,21
+203677,0,0,0,21
+203678,0,0,0,21
+203679,0,0,0,21
+203680,0,0,0,21
+203681,0,0,0,21
+203682,0,0,0,21
+203683,0,0,0,21
+203684,0,0,0,21
+203685,0,0,0,21
+203686,0,0,0,21
+203687,0,0,0,21
+203688,0,0,0,21
+203689,0,0,0,21
+203690,0,0,0,21
+203691,0,0,0,21
+203692,0,0,0,21
+203693,0,0,0,21
+203694,0,0,0,21
+203695,0,0,0,21
+203696,0,0,0,21
+203697,0,0,0,21
+203698,0,0,0,21
+203699,0,0,0,21
+203700,0,0,0,21
+203701,0,0,0,21
+203702,0,0,0,21
+203703,0,0,0,21
+203704,0,0,0,21
+203705,0,0,0,21
+203706,0,0,0,21
+203707,0,0,0,21
+203708,0,0,0,21
+203709,0,0,0,21
+203710,0,0,0,21
+203711,0,0,0,21
+203712,0,0,0,21
+203713,0,0,0,21
+203714,0,0,0,21
+203715,0,0,0,21
+203716,0,0,0,21
+203717,0,0,0,21
+203718,0,0,0,21
+203719,0,0,0,21
+203720,0,0,0,21
+203721,0,0,0,21
+203722,0,0,0,21
+203723,0,0,0,21
+203724,0,0,0,21
+203725,0,0,0,21
+203726,0,0,0,21
+203727,0,0,0,21
+203728,0,0,0,21
+203729,0,0,0,21
+203730,0,0,0,21
+203731,0,0,0,21
+203732,0,0,0,21
+203733,0,0,0,21
+203734,0,0,0,21
+203735,0,0,0,21
+203736,0,0,0,21
+203737,0,0,0,21
+203738,0,0,0,21
+203739,0,0,0,21
+203740,0,0,0,21
+203741,0,0,0,21
+203742,0,0,0,21
+203743,0,0,0,21
+203744,0,0,0,21
+203745,0,0,0,21
+203746,0,0,0,21
+203747,0,0,0,21
+203748,0,0,0,21
+203749,0,0,0,21
+203750,0,0,0,21
+203751,0,0,0,21
+203752,0,0,0,21
+203753,0,0,0,21
+203754,0,0,0,21
+203755,0,0,0,21
+203756,0,0,0,21
+203757,0,0,0,21
+203758,0,0,0,21
+203759,0,0,0,21
+203760,0,0,0,21
+203761,0,0,0,21
+203762,0,0,0,21
+203763,0,0,0,21
+203764,0,0,0,21
+203765,0,0,0,21
+203766,0,0,0,21
+203767,0,0,0,21
+203768,0,0,0,21
+203769,0,0,0,21
+203770,0,0,0,21
+203771,0,0,0,21
+203772,0,0,0,21
+203773,0,0,0,21
+203774,0,0,0,21
+203775,0,0,0,21
+203776,0,0,0,21
+203777,0,0,0,21
+203778,0,0,0,21
+203779,0,0,0,21
+203780,0,0,0,21
+203781,0,0,0,21
+203782,0,0,0,21
+203783,0,0,0,21
+203784,0,0,0,21
+203785,0,0,0,21
+203786,0,0,0,21
+203787,0,0,0,21
+203788,0,0,0,21
+203789,0,0,0,21
+203790,0,0,0,21
+203791,0,0,0,21
+203792,0,0,0,21
+203793,0,0,0,21
+203794,0,0,0,21
+203795,0,0,0,21
+203796,0,0,0,21
+203797,0,0,0,21
+203798,0,0,0,21
+203799,0,0,0,21
+203800,0,0,0,21
+203801,0,0,0,21
+203802,0,0,0,21
+203803,0,0,0,21
+203804,0,0,0,21
+203805,0,0,0,21
+203806,0,0,0,21
+203807,0,0,0,21
+203808,0,0,0,21
+203809,0,0,0,21
+203810,0,0,0,21
+203811,0,0,0,21
+203812,0,0,0,21
+203813,0,0,0,21
+203814,0,0,0,21
+203815,0,0,0,21
+203816,0,0,0,21
+203817,0,0,0,21
+203818,0,0,0,21
+203819,0,0,0,21
+203820,0,0,0,21
+203821,0,0,0,21
+203822,0,0,0,21
+203823,0,0,0,21
+203824,0,0,0,21
+203825,0,0,0,21
+203826,0,0,0,21
+203827,0,0,0,21
+203828,0,0,0,21
+203829,0,0,0,21
+203830,0,0,0,21
+203831,0,0,0,21
+203832,0,0,0,21
+203833,0,0,0,21
+203834,0,0,0,21
+203835,0,0,0,21
+203836,0,0,0,21
+203837,0,0,0,21
+203838,0,0,0,21
+203839,0,0,0,21
+203840,0,0,0,21
+203841,0,0,0,21
+203842,0,0,0,21
+203843,0,0,0,21
+203844,0,0,0,21
+203845,0,0,0,21
+203846,0,0,0,21
+203847,0,0,0,21
+203848,0,0,0,21
+203849,0,0,0,21
+203850,0,0,0,21
+203851,0,0,0,21
+203852,0,0,0,21
+203853,0,0,0,21
+203854,0,0,0,21
+203855,0,0,0,21
+203856,0,0,0,21
+203857,0,0,0,21
+203858,0,0,0,21
+203859,0,0,0,21
+203860,0,0,0,21
+203861,0,0,0,21
+203862,0,0,0,21
+203863,0,0,0,21
+203864,0,0,0,21
+203865,0,0,0,21
+203866,0,0,0,21
+203867,0,0,0,21
+203868,0,0,0,21
+203869,0,0,0,21
+203870,0,0,0,21
+203871,0,0,0,21
+203872,0,0,0,21
+203873,0,0,0,21
+203874,0,0,0,21
+203875,0,0,0,21
+203876,0,0,0,21
+203877,0,0,0,21
+203878,0,0,0,21
+203879,0,0,0,21
+203880,0,0,0,21
+203881,0,0,0,21
+203882,0,0,0,21
+203883,0,0,0,21
+203884,0,0,0,21
+203885,0,0,0,21
+203886,0,0,0,21
+203887,0,0,0,21
+203888,0,0,0,21
+203889,0,0,0,21
+203890,0,0,0,21
+203891,0,0,0,21
+203892,0,0,0,21
+203893,0,0,0,21
+203894,0,0,0,21
+203895,0,0,0,21
+203896,0,0,0,21
+203897,0,0,0,21
+203898,0,0,0,21
+203899,0,0,0,21
+203900,0,0,0,21
+203901,0,0,0,21
+203902,0,0,0,21
+203903,0,0,0,21
+203904,0,0,0,21
+203905,0,0,0,21
+203906,0,0,0,21
+203907,0,0,0,21
+203908,0,0,0,21
+203909,0,0,0,21
+203910,0,0,0,21
+203911,0,0,0,21
+203912,0,0,0,21
+203913,0,0,0,21
+203914,0,0,0,21
+203915,0,0,0,21
+203916,0,0,0,21
+203917,0,0,0,21
+203918,0,0,0,21
+203919,0,0,0,21
+203920,0,0,0,21
+203921,0,0,0,21
+203922,0,0,0,21
+203923,0,0,0,21
+203924,0,0,0,21
+203925,0,0,0,21
+203926,0,0,0,21
+203927,0,0,0,21
+203928,0,0,0,21
+203929,0,0,0,21
+203930,0,0,0,21
+203931,0,0,0,21
+203932,0,0,0,21
+203933,0,0,0,21
+203934,0,0,0,21
+203935,0,0,0,21
+203936,0,0,0,21
+203937,0,0,0,21
+203938,0,0,0,21
+203939,0,0,0,21
+203940,0,0,0,21
+203941,0,0,0,21
+203942,0,0,0,21
+203943,0,0,0,21
+203944,0,0,0,21
+203945,0,0,0,21
+203946,0,0,0,21
+203947,0,0,0,21
+203948,0,0,0,21
+203949,0,0,0,21
+203950,0,0,0,21
+203951,0,0,0,21
+203952,0,0,0,21
+203953,0,0,0,21
+203954,0,0,0,21
+203955,0,0,0,21
+203956,0,0,0,21
+203957,0,0,0,21
+203958,0,0,0,21
+203959,0,0,0,21
+203960,0,0,0,21
+203961,0,0,0,21
+203962,0,0,0,21
+203963,0,0,0,21
+203964,0,0,0,21
+203965,0,0,0,21
+203966,0,0,0,21
+203967,0,0,0,21
+203968,0,0,0,21
+203969,0,0,0,21
+203970,0,0,0,21
+203971,0,0,0,21
+203972,0,0,0,21
+203973,0,0,0,21
+203974,0,0,0,21
+203975,0,0,0,21
+203976,0,0,0,21
+203977,0,0,0,21
+203978,0,0,0,21
+203979,0,0,0,21
+203980,0,0,0,21
+203981,0,0,0,21
+203982,0,0,0,21
+203983,0,0,0,21
+203984,0,0,0,21
+203985,0,0,0,21
+203986,0,0,0,21
+203987,0,0,0,21
+203988,0,0,0,21
+203989,0,0,0,21
+203990,0,0,0,21
+203991,0,0,0,21
+203992,0,0,0,21
+203993,0,0,0,21
+203994,0,0,0,21
+203995,0,0,0,21
+203996,0,0,0,21
+203997,0,0,0,21
+203998,0,0,0,21
+203999,0,0,0,21
+204000,0,0,0,21
+204001,0,0,0,21
+204002,0,0,0,21
+204003,0,0,0,21
+204004,0,0,0,21
+204005,0,0,0,21
+204006,0,0,0,21
+204007,0,0,0,21
+204008,0,0,0,21
+204009,0,0,0,21
+204010,0,0,0,21
+204011,0,0,0,21
+204012,0,0,0,21
+204013,0,0,0,21
+204014,0,0,0,21
+204015,0,0,0,21
+204016,0,0,0,21
+204017,0,0,0,21
+204018,0,0,0,21
+204019,0,0,0,21
+204020,0,0,0,21
+204021,0,0,0,21
+204022,0,0,0,21
+204023,0,0,0,21
+204024,0,0,0,21
+204025,0,0,0,21
+204026,0,0,0,21
+204027,0,0,0,21
+204028,0,0,0,21
+204029,0,0,0,21
+204030,0,0,0,21
+204031,0,0,0,21
+204032,0,0,0,21
+204033,0,0,0,21
+204034,0,0,0,21
+204035,0,0,0,21
+204036,0,0,0,21
+204037,0,0,0,21
+204038,0,0,0,21
+204039,0,0,0,21
+204040,0,0,0,21
+204041,0,0,0,21
+204042,0,0,0,21
+204043,0,0,0,21
+204044,0,0,0,21
+204045,0,0,0,21
+204046,0,0,0,21
+204047,0,0,0,21
+204048,0,0,0,21
+204049,0,0,0,21
+204050,0,0,0,21
+204051,0,0,0,21
+204052,0,0,0,21
+204053,0,0,0,21
+204054,0,0,0,21
+204055,0,0,0,21
+204056,0,0,0,21
+204057,0,0,0,21
+204058,0,0,0,21
+204059,0,0,0,21
+204060,0,0,0,21
+204061,0,0,0,21
+204062,0,0,0,21
+204063,0,0,0,21
+204064,0,0,0,21
+204065,0,0,0,21
+204066,0,0,0,21
+204067,0,0,0,21
+204068,0,0,0,21
+204069,0,0,0,21
+204070,0,0,0,21
+204071,0,0,0,21
+204072,0,0,0,21
+204073,0,0,0,21
+204074,0,0,0,21
+204075,0,0,0,21
+204076,0,0,0,21
+204077,0,0,0,21
+204078,0,0,0,21
+204079,0,0,0,21
+204080,0,0,0,21
+204081,0,0,0,21
+204082,0,0,0,21
+204083,0,0,0,21
+204084,0,0,0,21
+204085,0,0,0,21
+204086,0,0,0,21
+204087,0,0,0,21
+204088,0,0,0,21
+204089,0,0,0,21
+204090,0,0,0,21
+204091,0,0,0,21
+204092,0,0,0,21
+204093,0,0,0,21
+204094,0,0,0,21
+204095,0,0,0,21
+204096,0,0,0,21
+204097,0,0,0,21
+204098,0,0,0,21
+204099,0,0,0,21
+204100,0,0,0,21
+204101,0,0,0,21
+204102,0,0,0,21
+204103,0,0,0,21
+204104,0,0,0,21
+204105,0,0,0,21
+204106,0,0,0,21
+204107,0,0,0,21
+204108,0,0,0,21
+204109,0,0,0,21
+204110,0,0,0,21
+204111,0,0,0,21
+204112,0,0,0,21
+204113,0,0,0,21
+204114,0,0,0,21
+204115,0,0,0,21
+204116,0,0,0,21
+204117,0,0,0,21
+204118,0,0,0,21
+204119,0,0,0,21
+204120,0,0,0,21
+204121,0,0,0,21
+204122,0,0,0,21
+204123,0,0,0,21
+204124,0,0,0,21
+204125,0,0,0,21
+204126,0,0,0,21
+204127,0,0,0,21
+204128,0,0,0,21
+204129,0,0,0,21
+204130,0,0,0,21
+204131,0,0,0,21
+204132,0,0,0,21
+204133,0,0,0,21
+204134,0,0,0,21
+204135,0,0,0,21
+204136,0,0,0,21
+204137,0,0,0,21
+204138,0,0,0,21
+204139,0,0,0,21
+204140,0,0,0,21
+204141,0,0,0,21
+204142,0,0,0,21
+204143,0,0,0,21
+204144,0,0,0,21
+204145,0,0,0,21
+204146,0,0,0,21
+204147,0,0,0,21
+204148,0,0,0,21
+204149,0,0,0,21
+204150,0,0,0,21
+204151,0,0,0,21
+204152,0,362.521047,0,21
+204153,1123.455102,1522.134138,0,21
+204154,1255.781137,871.5357345,0,21
+204155,1255.781165,1361.696286,0,21
+204156,1517.444997,1666.647468,0,21
+204157,1775.614293,1796.275616,0,21
+204158,1903.530592,2140.914882,0,21
+204159,2157.24462,2160.39175,0,21
+204160,2283.113961,2335.724464,0,21
+204161,2533.02722,2683.227525,0,21
+204162,2657.122027,2836.630554,0,21
+204163,2780.672197,3008.13586,0,21
+204164,3026.216738,3197.422853,0,21
+204165,3269.801045,3357.85989,0,21
+204166,3269.801035,3526.816325,0,21
+204167,3631.758415,3853.337669,0,21
+204168,3631.758399,3853.337386,0,21
+204169,3870.928782,4038.300559,0,21
+204170,4108.491164,4351.710358,0,21
+204171,4108.491177,4764.523068,0,21
+204172,4461.979119,4723.23981,0,21
+204173,4579.079488,5222.835064,0,21
+204174,4579.07944,5139.267029,0,21
+204175,5044.02613,5620.143691,0,21
+204176,4928.294806,5695.102583,0,21
+204177,5159.431008,5856.419168,0,21
+204178,5389.282563,6225.36932,0,21
+204179,5503.739933,6262.126775,0,21
+204180,5731.742724,6591.737209,0,21
+204181,6184.24363,7351.447859,0,21
+204182,6632.240009,7671.634837,0,21
+204183,6854.625458,7885.240609,0,21
+204184,6965.411932,8249.738731,0,21
+204185,7296.311872,8414.401739,0,21
+204186,7296.31202,8612.140839,0,21
+204187,7734.062538,8955.874172,0,21
+204188,7734.062709,9151.971404,0,21
+204189,8168.022807,9476.385962,0,21
+204190,8168.022994,12268.67981,0,21
+204191,8383.628938,12052.04904,0,21
+204192,8705.368678,12683.05135,0,21
+204193,8812.178427,13382.78889,0,21
+204194,9025.153854,14016.04107,0,21
+204195,9237.283073,14597.76329,0,21
+204196,9448.580234,15215.19083,0,21
+204197,9553.921158,16250.76989,0,21
+204198,9868.731891,16578.35592,0,21
+204199,9973.270329,17337.6106,0,21
+204200,10375.88336,17985.66397,0,21
+204201,10687.16424,18677.96102,0,21
+204202,10703.70671,19112.72012,0,21
+204203,11054.17865,19692.5876,0,21
+204204,11197.31215,20567.28147,0,21
+204205,11622.72858,20795.47075,0,21
+204206,11568.11532,22448.19036,0,21
+204207,11991.06938,25546.71102,0,21
+204208,12139.08382,25223.1168,0,21
+204209,12356.72888,26594.71775,0,21
+204210,12604.16466,27613.45037,0,21
+204211,12820.20077,28788.39292,0,21
+204212,13280.09255,29375.56187,0,21
+204213,13295.01877,30010.94937,0,21
+204214,13721.75773,31081.90639,0,21
+204215,13765.9642,31633.33889,0,21
+204216,14076.68398,32426.21097,0,21
+204217,14204.21466,33194.51821,0,21
+204218,14429.47312,33962.64164,0,21
+204219,14639.54915,34403.70064,0,21
+204220,14682.60054,35544.1907,0,21
+204221,15086.30634,36011.78377,0,21
+204222,15128.8909,36481.55654,0,21
+204223,15433.48892,37704.11867,0,21
+204224,15558.14438,37632.28436,0,21
+204225,15838.97037,38941.26617,0,21
+204226,15926.85007,39303.02603,0,21
+204227,16315.46121,39757.77462,0,21
+204228,16365.71015,40646.99665,0,21
+204229,16601.98279,41357.3368,0,21
+204230,16837.37494,41625.48065,0,21
+204231,17071.91003,42584.26038,0,21
+204232,17085.48753,42879.30608,0,21
+204233,17538.48739,43751.51894,0,21
+204234,17551.94195,44088.63636,0,21
+204235,17779.10519,44927.52615,0,21
+204236,17921.51808,45317.24273,0,21
+204237,18245.63929,45684.6037,0,21
+204238,18275.72418,46785.24005,0,21
+204239,18496.90186,46785.02988,0,21
+204240,18712.59969,47961.24861,0,21
+204241,18861.24329,47216.5491,0,21
+204242,18975.15133,48443.82012,0,21
+204243,19202.4227,48393.66391,0,21
+204244,19386.68532,49191.31541,0,21
+204245,19471.08283,49562.48021,0,21
+204246,19654.82468,50432.28227,0,21
+204247,19871.87601,50580.85958,0,21
+204248,19921.71296,51440.19703,0,21
+204249,20104.42496,52064.40523,0,21
+204250,20353.60194,52178.67647,0,21
+204251,20369.58707,53275.11124,0,21
+204252,20576.59477,53325.94711,0,21
+204253,20794.25237,54139.58547,0,21
+204254,20827.33216,54626.60074,0,21
+204255,21033.09818,55044.26304,0,21
+204256,21257.28871,55700.92851,0,21
+204257,21261.91763,56253.52499,0,21
+204258,21502.41077,56811.89236,0,21
+204259,21681.63409,57183.73773,0,21
+204260,21721.92426,57824.11447,0,21
+204261,21940.84815,58573.99494,0,21
+204262,21973.15185,58929.6404,0,21
+204263,22336.91212,59313.24906,0,21
+204264,22199.0149,59963.45615,0,21
+204265,22837.44208,60767.27265,0,21
+204266,22778.82203,60691.77511,0,21
+204267,23066.03737,61677.78286,0,21
+204268,23172.05403,62227.27714,0,21
+204269,23397.56727,62500.00307,0,21
+204270,23625.53403,62911.93569,0,21
+204271,23510.87319,63993.38776,0,21
+204272,24112.59642,64192.19189,0,21
+204273,23989.01611,64980.92453,0,21
+204274,25107.69372,65531.77399,0,21
+204275,26401.12165,66057.66807,0,21
+204276,26167.4031,67037.74837,0,21
+204277,27020.40452,68156.3239,0,21
+204278,27279.15872,68405.12356,0,21
+204279,27848.57684,69152.61799,0,21
+204280,28191.2953,69995.06025,0,21
+204281,28580.95208,70505.379,0,21
+204282,28921.85209,71248.02599,0,21
+204283,29320.75614,71750.38068,0,21
+204284,29845.64096,72736.40036,0,21
+204285,30117.04077,73143.50013,0,21
+204286,30562.70605,73997.12423,0,21
+204287,30950.21169,74199.11161,0,21
+204288,31248.12814,75329.17581,0,21
+204289,31677.52582,75999.66288,0,21
+204290,32143.62221,76338.99353,0,21
+204291,32318.30813,77126.60298,0,21
+204292,32979.4879,77699.12649,0,21
+204293,33024.02473,78890.40274,0,21
+204294,33553.76487,78744.32964,0,21
+204295,33985.03245,80007.23587,0,21
+204296,34246.82285,80217.19858,0,21
+204297,34456.94816,81175.57051,0,21
+204298,35492.46802,81725.97298,0,21
+204299,37489.38989,82469.03911,0,21
+204300,37505.94574,82619.44815,0,21
+204301,0,0,0,21
+204302,0,0,0,21
+204303,0,0,0,21
+204304,0,0,0,21
+204305,0,0,0,21
+204306,0,368437.4094,701218.4372,21
+204307,340070.9251,0,0,21
+204308,0,0,0,21
+204309,0,0,0,21
+204310,0,0,0,21
+204311,0,0,0,21
+204312,0,0,0,21
+204313,0,0,0,21
+204314,0,0,0,21
+204315,0,0,0,21
+204316,0,0,0,21
+204317,0,0,0,21
+204318,0,0,0,21
+204319,0,0,0,21
+204320,0,0,0,21
+204321,0,0,0,21
+204322,0,0,0,21
+204323,0,0,0,21
+204324,0,0,0,21
+204325,0,0,0,21
+204326,0,0,0,21
+204327,0,0,0,21
+204328,0,0,0,21
+204329,0,0,0,21
+204330,0,0,0,21
+204331,0,0,0,21
+204332,0,0,0,21
+204333,0,0,0,21
+204334,0,0,0,21
+204335,0,0,0,21
+204336,0,0,0,21
+204337,0,0,0,21
+204338,0,0,0,21
+204339,0,0,0,21
+204340,0,0,0,21
+204341,0,368596.672,700063.3828,21
+204342,0,0,0,21
+204343,340072.9813,0,0,21
+204344,0,0,0,21
+204345,0,0,0,21
+204346,0,0,0,21
+204347,0,0,0,21
+204348,0,0,0,21
+204349,0,0,0,21
+204350,0,0,0,21
+204351,0,0,0,21
+204352,0,0,0,21
+204353,0,0,0,21
+204354,0,0,0,21
+204355,0,0,0,21
+204356,0,0,0,21
+204357,0,0,0,21
+204358,0,0,0,21
+204359,0,0,0,21
+204360,0,0,0,15.6
+204361,0,0,0,15.6
+204362,0,0,0,15.6
+204363,0,0,0,15.6
+204364,0,0,0,15.6
+204365,0,0,0,15.6
+204366,0,0,0,15.6
+204367,0,0,0,15.6
+204368,0,0,0,15.6
+204369,0,0,0,15.6
+204370,0,0,0,15.6
+204371,0,0,0,15.6
+204372,0,0,0,15.6
+204373,0,0,0,15.6
+204374,0,0,0,15.6
+204375,0,0,0,15.6
+204376,0,368604.353,695871.7868,15.6
+204377,0,0,0,15.6
+204378,0,0,0,15.6
+204379,340077.0605,0,0,15.6
+204380,0,0,0,15.6
+204381,0,0,0,15.6
+204382,0,0,0,15.6
+204383,0,0,0,15.6
+204384,0,0,0,15.6
+204385,0,0,0,15.6
+204386,0,0,0,15.6
+204387,0,0,0,15.6
+204388,0,0,0,15.6
+204389,0,0,0,15.6
+204390,0,0,0,15.6
+204391,0,0,0,15.6
+204392,0,0,0,15.6
+204393,0,0,0,15.6
+204394,0,0,0,15.6
+204395,0,0,0,15.6
+204396,0,0,0,15.6
+204397,0,0,0,15.6
+204398,0,0,0,15.6
+204399,0,0,0,15.6
+204400,0,0,0,15.6
+204401,0,0,0,15.6
+204402,0,0,0,15.6
+204403,0,0,0,15.6
+204404,0,0,0,15.6
+204405,0,0,0,15.6
+204406,0,0,0,15.6
+204407,0,0,0,15.6
+204408,0,0,0,15.6
+204409,0,0,0,15.6
+204410,0,0,0,15.6
+204411,0,368612.6228,694415.5982,15.6
+204412,0,0,0,15.6
+204413,0,0,0,15.6
+204414,0,0,0,15.6
+204415,0,0,0,15.6
+204416,340082.351,0,0,15.6
+204417,0,0,0,15.6
+204418,0,0,0,15.6
+204419,0,0,0,15.6
+204420,0,0,0,15.6
+204421,0,0,0,15.6
+204422,0,0,0,15.6
+204423,0,0,0,15.6
+204424,0,0,0,15.6
+204425,0,0,0,15.6
+204426,0,0,0,15.6
+204427,0,0,0,15.6
+204428,0,0,0,15.6
+204429,0,0,0,15.6
+204430,0,0,0,15.6
+204431,0,0,0,15.6
+204432,0,0,0,15.6
+204433,0,0,0,15.6
+204434,0,0,0,15.6
+204435,0,0,0,15.6
+204436,0,0,0,15.6
+204437,0,0,0,15.6
+204438,0,0,0,15.6
+204439,0,0,0,15.6
+204440,0,0,0,15.6
+204441,0,0,0,15.6
+204442,0,0,0,15.6
+204443,0,0,0,15.6
+204444,0,0,0,15.6
+204445,0,0,0,15.6
+204446,0,0,692682.9766,15.6
+204447,0,368691.8326,0,15.6
+204448,0,0,0,15.6
+204449,0,0,0,15.6
+204450,0,0,0,15.6
+204451,0,0,0,15.6
+204452,0,0,0,15.6
+204453,340059.0591,0,0,15.6
+204454,0,0,0,15.6
+204455,0,0,0,15.6
+204456,0,0,0,15.6
+204457,0,0,0,15.6
+204458,0,0,0,15.6
+204459,0,0,0,15.6
+204460,0,0,0,15.6
+204461,0,0,0,15.6
+204462,0,0,0,15.6
+204463,0,0,0,15.6
+204464,0,0,0,15.6
+204465,0,0,0,15.6
+204466,0,0,0,15.6
+204467,0,0,0,15.6
+204468,0,0,0,15.6
+204469,0,0,0,15.6
+204470,0,0,0,15.6
+204471,0,0,0,15.6
+204472,0,0,0,15.6
+204473,0,0,0,15.6
+204474,0,0,0,15.6
+204475,0,0,0,15.6
+204476,0,0,0,15.6
+204477,0,0,0,15.6
+204478,0,0,0,15.6
+204479,0,0,0,15.6
+204480,0,0,0,15.6
+204481,0,0,689440.9401,15.6
+204482,0,0,0,15.6
+204483,0,368714.61,0,15.6
+204484,0,0,0,15.6
+204485,0,0,0,15.6
+204486,0,0,0,15.6
+204487,0,0,0,15.6
+204488,0,0,0,15.6
+204489,0,0,0,15.6
+204490,340041.4447,0,0,15.6
+204491,0,0,0,15.6
+204492,0,0,0,15.6
+204493,0,0,0,15.6
+204494,0,0,0,15.6
+204495,0,0,0,15.6
+204496,0,0,0,15.6
+204497,0,0,0,15.6
+204498,0,0,0,15.6
+204499,0,0,0,15.6
+204500,0,0,0,15.6
+204501,0,0,0,15.6
+204502,0,0,0,15.6
+204503,0,0,0,15.6
+204504,0,0,0,15.6
+204505,0,0,0,15.6
+204506,0,0,0,15.6
+204507,0,0,0,15.6
+204508,0,0,0,15.6
+204509,0,0,0,15.6
+204510,0,0,0,15.6
+204511,0,0,0,15.6
+204512,0,0,0,15.6
+204513,0,0,0,15.6
+204514,0,0,0,15.6
+204515,0,0,0,15.6
+204516,0,0,688639.0916,15.6
+204517,0,0,0,15.6
+204518,0,0,0,15.6
+204519,0,368712.0822,0,15.6
+204520,0,0,0,15.6
+204521,0,0,0,15.6
+204522,0,254.3854054,0,15.6
+204523,0,0,0,15.6
+204524,0,0,0,15.6
+204525,0,0,0,15.6
+204526,0,0,0,15.6
+204527,340044.6286,0,0,15.6
+204528,0,0,0,15.6
+204529,0,0,0,15.6
+204530,0,0,0,15.6
+204531,0,0,0,15.6
+204532,0,67.27386845,0,15.6
+204533,0,0,0,15.6
+204534,0,0,0,15.6
+204535,0,0,0,15.6
+204536,0,0,0,15.6
+204537,0,0,0,15.6
+204538,0,0,0,15.6
+204539,0,0,0,15.6
+204540,0,0,0,15.6
+204541,0,0,0,15.6
+204542,0,0,0,15.6
+204543,0,344.2310249,0,15.6
+204544,0,0,0,15.6
+204545,0,0,0,15.6
+204546,0,0,0,15.6
+204547,0,0,0,15.6
+204548,0,0,0,15.6
+204549,0,0,0,15.6
+204550,0,0,0,15.6
+204551,0,0,685739.5579,15.6
+204552,0,0,0,15.6
+204553,0,0,0,15.6
+204554,0,0,0,15.6
+204555,0,368704.0155,0,15.6
+204556,0,0,0,15.6
+204557,0,118.6371819,0,15.6
+204558,0,0,0,15.6
+204559,0,0,0,15.6
+204560,0,0,0,15.6
+204561,0,0,0,15.6
+204562,0,240.106977,0,15.6
+204563,0,0,0,15.6
+204564,340029.6132,0,0,15.6
+204565,0,0,0,15.6
+204566,0,0,0,15.6
+204567,0,0,0,15.6
+204568,0,0,0,15.6
+204569,0,0,0,15.6
+204570,0,0,0,15.6
+204571,0,0,0,15.6
+204572,0,0,0,15.6
+204573,0,0,0,15.6
+204574,0,96.19706766,0,15.6
+204575,0,0,0,15.6
+204576,0,0,0,15.6
+204577,0,0,0,15.6
+204578,0,0,0,15.6
+204579,0,65.39674707,0,15.6
+204580,0,0,0,15.6
+204581,0,0,0,15.6
+204582,0,0,0,15.6
+204583,0,0,0,15.6
+204584,0,0,0,15.6
+204585,0,0,0,15.6
+204586,0,0,0,15.6
+204587,0,0,684545.6774,15.6
+204588,0,102.6580144,0,15.6
+204589,0,0,0,15.6
+204590,0,0,0,15.6
+204591,0,368683.4145,0,15.6
+204592,0,0,0,15.6
+204593,0,349.6497042,0,15.6
+204594,0,0,0,15.6
+204595,0,0,0,15.6
+204596,0,0,0,15.6
+204597,0,0,0,15.6
+204598,0,0,0,15.6
+204599,0,0,0,15.6
+204600,0,0,0,15.6
+204601,340005.8441,0,0,15.6
+204602,0,0,0,15.6
+204603,0,0,0,15.6
+204604,0,0,0,15.6
+204605,0,0,0,15.6
+204606,0,81.04503105,0,15.6
+204607,0,0,0,15.6
+204608,0,0,0,15.6
+204609,0,0,0,15.6
+204610,0,75.80016752,0,15.6
+204611,0,0,0,15.6
+204612,0,0,0,15.6
+204613,0,0,0,15.6
+204614,0,74.28316961,0,15.6
+204615,0,0,0,15.6
+204616,0,0,0,15.6
+204617,0,0,0,15.6
+204618,0,71.87541669,0,15.6
+204619,0,0,0,15.6
+204620,0,0,0,15.6
+204621,0,0,0,15.6
+204622,0,69.22239888,0,15.6
+204623,0,0,683777.2534,15.6
+204624,0,0,0,15.6
+204625,0,0,0,15.6
+204626,0,66.23551406,0,15.6
+204627,0,368688.9373,0,15.6
+204628,0,0,0,15.6
+204629,0,0,0,15.6
+204630,0,0,0,15.6
+204631,0,65.82566694,0,15.6
+204632,0,0,0,15.6
+204633,0,0,0,15.6
+204634,0,0,0,15.6
+204635,0,0,0,15.6
+204636,0,0,0,15.6
+204637,0,0,0,15.6
+204638,0,0,0,15.6
+204639,339964.0929,0,0,15.6
+204640,0,0,0,15.6
+204641,0,0,0,15.6
+204642,0,0,0,15.6
+204643,0,0,0,15.6
+204644,0,0,0,15.6
+204645,0,77.28683365,0,15.6
+204646,0,0,0,15.6
+204647,0,0,0,15.6
+204648,0,0,0,15.6
+204649,0,68.57858757,0,15.6
+204650,0,0,0,15.6
+204651,0,0,0,15.6
+204652,0,0,0,15.6
+204653,0,72.12063702,0,15.6
+204654,0,0,0,15.6
+204655,0,0,0,15.6
+204656,0,0,0,15.6
+204657,0,73.70514258,681295.6794,15.6
+204658,0,0,0,15.6
+204659,0,0,0,15.6
+204660,0,0,0,15.6
+204661,0,0,0,15.6
+204662,0,58.67810986,0,15.6
+204663,0,368700.4277,0,15.6
+204664,0,0,0,15.6
+204665,0,0,0,15.6
+204666,0,0,0,15.6
+204667,0,0,0,15.6
+204668,0,0,0,15.6
+204669,0,0,0,15.6
+204670,0,0,0,15.6
+204671,0,0,0,15.6
+204672,0,0,0,15.6
+204673,0,0,0,15.6
+204674,0,253.7028602,0,15.6
+204675,0,0,0,15.6
+204676,0,0,0,15.6
+204677,339939.4623,0,0,15.6
+204678,0,0,0,15.6
+204679,0,0,0,15.6
+204680,0,0,0,15.6
+204681,0,0,0,15.6
+204682,0,0,0,15.6
+204683,0,0,0,15.6
+204684,0,3.465040338,0,15.6
+204685,0,0,0,15.6
+204686,0,103.6580142,0,15.6
+204687,0,0,0,15.6
+204688,0,0,0,15.6
+204689,0,0,0,15.6
+204690,0,0,0,15.6
+204691,0,58.65187748,680872.7638,15.6
+204692,0,0,0,15.6
+204693,0,0,0,15.6
+204694,0,0,0,15.6
+204695,0,0,0,15.6
+204696,0,0,0,15.6
+204697,0,0,0,15.6
+204698,0,0,0,15.6
+204699,0,368701.189,0,15.6
+204700,0,100.5777868,0,15.6
+204701,0,0,0,15.6
+204702,0,0,0,15.6
+204703,0,0,0,15.6
+204704,0,7.885643394,0,15.6
+204705,0,0,0,15.6
+204706,0,112.8241254,0,15.6
+204707,0,0,0,15.6
+204708,0,0,0,15.6
+204709,0,0,0,15.6
+204710,0,0,0,15.6
+204711,0,237.7683342,0,15.6
+204712,339935.5497,0,0,15.6
+204713,0,0,0,15.6
+204714,0,0,0,15.6
+204715,0,0,0,15.6
+204716,0,0,0,15.6
+204717,0,0,0,15.6
+204718,0,0,0,15.6
+204719,0,0,0,15.6
+204720,0,0,0,17.8
+204721,80983.13303,0,0,17.8
+204722,21618.8255,0,0,17.8
+204723,9857.57691,0,0,17.8
+204724,24417.41978,66.6915022,0,17.8
+204725,23608.42373,0,680217.6647,17.8
+204726,21627.7847,0,0,17.8
+204727,21703.18953,0,0,17.8
+204728,20412.85672,0,0,17.8
+204729,20332.65435,0,0,17.8
+204730,20336.73353,0,0,17.8
+204731,20351.87269,0,0,17.8
+204732,20269.73505,0,0,17.8
+204733,20275.51632,0,0,17.8
+204734,20323.73532,368701.3118,0,17.8
+204735,20216.75316,0,0,17.8
+204736,20247.21414,0,0,17.8
+204737,20247.19934,4.025415663,0,17.8
+204738,20227.2712,0,0,17.8
+204739,20231.94827,106.6704218,0,17.8
+204740,20165.58317,0,0,17.8
+204741,20218.67206,0,0,17.8
+204742,20211.95129,0,0,17.8
+204743,20165.53313,7.327612139,0,17.8
+204744,20183.33085,0,0,17.8
+204745,20165.49817,111.0548866,0,17.8
+204746,20183.29529,0,0,17.8
+204747,360042.9759,0,0,17.8
+204748,20167.96898,0,0,17.8
+204749,20178.30253,7.961779045,0,17.8
+204750,20103.55219,0,0,17.8
+204751,0,116.5004172,0,17.8
+204752,0,0,0,17.8
+204753,0,0,0,17.8
+204754,0,0,0,17.8
+204755,0,7.455182526,0,17.8
+204756,0,0,0,17.8
+204757,0,110.6708869,0,17.8
+204758,64213.15001,0,0,17.8
+204759,4728.310695,0,677415.463,17.8
+204760,16907.35758,0,0,17.8
+204761,24686.31279,7.138119542,0,17.8
+204762,19486.08532,0,0,17.8
+204763,20213.51218,106.2688569,0,17.8
+204764,20236.20224,0,0,17.8
+204765,20237.23926,0,0,17.8
+204766,20198.15925,0,0,17.8
+204767,20237.19749,7.197805296,0,17.8
+204768,20231.06193,0,0,17.8
+204769,20182.77303,368808.0843,0,17.8
+204770,20225.84162,0,0,17.8
+204771,21486.69889,256.6867015,0,17.8
+204772,21319.52197,452.7801467,0,17.8
+204773,21073.28191,300.5898922,0,17.8
+204774,21263.64832,414.2957442,0,17.8
+204775,21259.45795,499.7398848,0,17.8
+204776,21192.73806,452.7801478,0,17.8
+204777,21251.19192,471.9042551,0,17.8
+204778,21230.17068,471.9042554,0,17.8
+204779,20479.64331,509.929245,0,17.8
+204780,20245.78849,745.5247427,0,20
+204781,1068026.581,122391.1632,0,20
+204782,98648.67441,3816.228025,0,20
+204783,87335.87356,88831.40718,0,20
+204784,237862.3127,134030.8518,0,20
+204785,169815.0427,126251.7234,0,20
+204786,182061.5111,126876.8468,0,20
+204787,178558.7141,126713.5612,0,20
+204788,177978.7208,129553.2401,984.6359891,20
+204789,177621.3044,129444.5345,8197.254262,20
+204790,177343.6603,129961.5391,14282.83443,20
+204791,176098.776,129900.3868,9095.954102,20
+204792,175758.0881,129732.7913,11457.3766,20
+204793,174996.5164,129815.8056,11720.18835,20
+204794,174555.8075,134689.8701,11762.93933,20
+204795,173446.3429,134512.7746,12115.31607,20
+204796,173197.8334,144203.2183,12286.81845,20
+204797,172400.2875,138255.2618,12304.03158,20
+204798,172088.2416,140528.6549,16830.39652,20
+204799,170994.8449,141931.7509,14849.94211,20
+204800,170763.9889,140627.7145,15658.77036,20
+204801,169964.3308,141771.8775,16394.74101,20
+204802,169639.0583,141523.0356,16631.42247,20
+204803,169054.618,142068.1352,16791.48818,20
+204804,168706.1067,141996.6761,17483.39665,20
+204805,168327.5446,140823.3221,17631.59116,20
+204806,167704.8559,140238.8717,18016.35989,20
+204807,167411.7142,140303.8747,18253.62525,20
+204808,166984.1789,140495.758,18839.12803,20
+204809,166432.3694,140577.6749,19181.68654,20
+204810,166107.575,140625.9876,19443.91422,20
+204811,165397.6038,140904.3958,20240.3785,20
+204812,164618.0156,140783.9117,20270.69053,20
+204813,164113.4591,142135.6248,20962.67109,20
+204814,163409.1444,141850.4591,21024.60699,20
+204815,162679.222,144349.7246,21455.49025,20
+204816,162004.3455,144802.9815,21973.43483,20
+204817,161298.7336,144969.2476,21269.98645,20
+204818,160508.8164,146398.2221,21752.97015,20
+204819,159720.7726,145696.0505,21515.50859,20
+204820,158993.1197,146365.9108,22308.21688,20
+204821,158316.0995,146918.7804,22060.3752,20
+204822,157504.5533,146385.9735,22566.18448,20
+204823,156772.3417,147163.4649,20398.99352,20
+204824,155927.2439,147144.712,19916.75014,20
+204825,154905.2662,147987.2564,20017.85573,20
+204826,154453.6684,147711.4347,20020.58039,20
+204827,153572.5027,148615.1604,19965.53583,20
+204828,152468.2275,148544.32,20023.63348,20
+204829,151962.2518,149380.6513,20158.079,20
+204830,150882.4952,149238.5148,19990.5951,20
+204831,149936.6688,149686.9811,20241.4244,20
+204832,149395.3551,150164.6482,20196.19762,20
+204833,148318.0935,150194.8235,20086.4349,20
+204834,147701.5815,151051.8359,20387.85183,20
+204835,146352.9147,150637.2566,20084.71353,20
+204836,145863.6083,151664.9858,20456.81232,20
+204837,143106.4977,152042.2029,20240.02882,20
+204838,142018.5648,152184.2046,20431.11518,20
+204839,140190.857,152475.5732,20332.05425,20
+204840,140484.5272,154217.2501,20393.73211,21
+204841,129281.7219,144513.8641,15707.35037,21
+204842,126698.52,143450.0963,14857.85825,21
+204843,124768.3644,143229.6514,14712.53667,21
+204844,123362.5362,143329.8688,14480.34231,21
+204845,121254.7103,143970.5011,14584.39769,21
+204846,119406.5843,143379.1426,14000.70127,21
+204847,117964.387,144050.0392,14243.63315,21
+204848,116166.1727,143927.0967,13896.78859,21
+204849,115044.4991,144061.9055,13988.47891,21
+204850,113214.6345,144077.5664,13640.07668,21
+204851,111540.3459,144435.6336,13657.32061,21
+204852,110050.2267,144707.2359,13407.25163,21
+204853,108695.5197,144392.365,13285.23182,21
+204854,106964.7824,145161.4181,13274.01633,21
+204855,105573.4907,144865.885,12935.25642,21
+204856,103676.0526,145260.1119,12913.12758,21
+204857,102598.3416,145259.1503,12788.19913,21
+204858,101465.835,144984.7014,12562.34972,21
+204859,101145.6553,145813.6263,12524.19082,21
+204860,100267.9155,145624.8952,12182.7498,21
+204861,99436.88672,145692.6229,12271.20132,21
+204862,98752.952,147212.324,11943.84575,21
+204863,97963.39693,147626.9134,11787.90784,21
+204864,97152.82304,148043.3263,11647.24336,21
+204865,96419.74188,147893.7076,11546.39997,21
+204866,95700.78091,148283.8156,11376.02766,21
+204867,94779.25698,148632.7654,10913.041,21
+204868,94166.85671,148777.2707,11224.75058,21
+204869,93027.90783,148824.2174,10649.08022,21
+204870,92731.40358,149254.5641,10730.57176,21
+204871,91526.87932,149177.8605,10347.47835,21
+204872,90975.16419,149186.3125,10080.66822,21
+204873,90360.43874,149146.133,9932.483395,21
+204874,89221.2198,149238.4157,8420.955628,21
+204875,88787.61168,149798.5424,8193.219677,21
+204876,87885.94144,149617.1287,7688.238172,21
+204877,87112.297,149560.3505,7370.286249,21
+204878,86481.93472,150012.0576,7091.885532,21
+204879,85424.48159,149467.8037,6663.551637,21
+204880,84936.67182,149508.1327,6447.556157,21
+204881,84585.53022,149206.2555,6304.813966,21
+204882,83266.9082,149552.7152,6275.113687,21
+204883,82878.2077,149311.7019,6218.518226,21
+204884,82476.71094,148833.6351,6089.820406,21
+204885,81311.26386,149459.2874,6023.988445,21
+204886,80836.95872,148817.0208,5885.17762,21
+204887,80394.48159,148840.9452,5961.344639,21
+204888,79381.40172,148686.648,5681.38917,21
+204889,78939.73279,148849.584,5742.136463,21
+204890,78133.53818,148752.7425,5622.375973,21
+204891,77484.47151,148152.2194,5539.481289,21
+204892,76930.32508,147718.748,5400.103554,21
+204893,76149.98884,147780.0099,5484.124453,21
+204894,75504.34463,147317.7581,5173.756758,21
+204895,74837.9646,147099.6561,5280.098041,21
+204896,74309.15068,147557.6612,5115.627588,21
+204897,73279.75872,146696.4446,4928.212342,21
+204898,73280.27309,146992.598,5031.79981,21
+204899,72119.04576,146589.705,4861.823814,21
+204900,71553.53991,146470.6818,4756.603703,21
+204901,19683.66022,76518.26058,0,21
+204902,18265.59408,72885.42153,0,21
+204903,17919.8735,72424.18634,0,21
+204904,17494.4919,70622.31221,0,21
+204905,17124.90861,70924.93331,0,21
+204906,16793.82452,69517.99217,0,21
+204907,16380.83813,68932.42475,0,21
+204908,16095.37649,68494.24529,0,21
+204909,15753.28133,67587.01423,0,21
+204910,15506.7475,483496.3168,0,21
+204911,15142.54853,66506.60666,0,21
+204912,14755.44401,65875.88838,0,21
+204913,14537.04614,65216.26938,0,21
+204914,14273.66524,64906.13136,0,21
+204915,13796.7093,63979.98661,0,21
+204916,13638.59259,63693.46832,0,21
+204917,13300.39803,63169.79603,0,21
+204918,13029.3685,62167.08584,0,21
+204919,12668.67072,62019.05498,0,21
+204920,12624.94465,61385.76176,0,21
+204921,12305.06797,60875.00073,0,21
+204922,12087.24942,60387.91821,0,21
+204923,11805.39809,59328.04474,0,21
+204924,11333.15284,59652.51241,0,21
+204925,11269.57272,58334.3274,0,21
+204926,10960.66183,58298.12715,0,21
+204927,10495.10701,57588.50405,0,21
+204928,10306.39239,57417.81942,0,21
+204929,10117.09771,56243.29012,0,21
+204930,9735.89869,56353.7598,0,21
+204931,9487.235228,55167.02552,0,21
+204932,9217.919183,54887.57568,0,21
+204933,8953.242419,53760.41944,0,21
+204934,8694.099615,53207.33091,0,21
+204935,8404.937575,52259.61175,0,21
+204936,8176.470787,51655.16291,0,21
+204937,7850.584176,50960.81718,0,21
+204938,7805.938586,50211.41118,0,21
+204939,7303.356834,48960.6515,0,21
+204940,7102.676491,48965.59683,0,21
+204941,6926.625361,47497.75607,0,21
+204942,6642.936547,47071.97884,0,21
+204943,6379.763686,46341.63634,0,21
+204944,6091.931537,45379.42271,0,21
+204945,5802.737055,44610.5656,0,21
+204946,5682.333158,44148.14246,0,21
+204947,5217.478513,42908.99718,0,21
+204948,5119.550003,42124.49378,0,21
+204949,4885.975645,41774.12025,0,21
+204950,4549.528,40459.0197,0,21
+204951,4323.644829,39810.40699,0,21
+204952,4096.846626,39160.61256,0,21
+204953,3738.505358,38114.79469,0,21
+204954,3637.910904,37519.18373,0,21
+204955,3283.217192,36475.72977,0,21
+204956,3064.657795,35731.63707,0,21
+204957,2882.039042,35139.13238,0,21
+204958,2672.503087,32493.39425,0,21
+204959,2486.145682,31904.30426,0,21
+204960,2133.983709,31569.62265,0,21
+204961,2094.410093,30735.35073,0,21
+204962,1861.013269,30334.57753,0,21
+204963,1510.202434,29620.7397,0,21
+204964,1455.997444,29126.60116,0,21
+204965,1398.307219,28598.02826,0,21
+204966,1359.29067,27565.56142,0,21
+204967,1359.290881,27483.58506,0,21
+204968,1333.156297,26674.51526,0,21
+204969,1293.765463,25996.36043,0,21
+204970,1293.765629,25358.05614,0,21
+204971,1254.143708,24940.17755,0,21
+204972,1254.128678,24324.0737,0,21
+204973,1214.282644,23716.29253,0,21
+204974,1200.947012,23037.27457,0,21
+204975,1174.182353,22395.11262,0,21
+204976,1160.762697,21962.04655,0,21
+204977,1133.836914,21360.86074,0,21
+204978,1120.331897,20653.83911,0,21
+204979,1079.64493,20045.41753,0,21
+204980,1079.645113,19614.4208,0,21
+204981,1038.695286,18929.72422,0,21
+204982,1038.695384,18361.90977,0,21
+204983,1011.245826,17614.74778,0,21
+204984,969.8410562,17252.63902,0,21
+204985,983.6738738,16813.03183,0,21
+204986,928.1523499,15969.73458,0,21
+204987,928.1524293,15475.89381,0,21
+204988,900.1975686,15068.07018,0,21
+204989,886.1703805,14170.8389,0,21
+204990,858.0144577,13869.6834,0,21
+204991,829.7194496,13321.78382,0,21
+204992,815.5194513,12786.52449,0,21
+204993,801.2838371,12401.77417,0,21
+204994,772.7032483,11831.46678,0,21
+204995,743.9735381,11674.58557,0,21
+204996,729.551454,10861.12814,0,21
+204997,700.5899638,10692.63038,0,21
+204998,700.589968,9755.689874,0,21
+204999,642.1804655,9948.463789,0,21
+205000,642.1804751,9041.946171,0,21
+205001,627.472824,8684.289972,0,21
+205002,583.0851549,8289.383846,0,21
+205003,568.1982428,7316.295146,0,21
+205004,538.2824078,7159.222209,0,21
+205005,523.2514927,7050.097806,0,21
+205006,493.0384533,6749.036742,0,21
+205007,477.8537087,6806.266932,0,21
+205008,447.3213753,6335.591436,0,21
+205009,416.5625587,6417.301428,0,21
+205010,401.094129,6088.592628,0,21
+205011,385.5639479,6146.27856,0,21
+205012,338.5822749,5654.543168,0,21
+205013,322.7835341,5767.272864,0,21
+205014,306.9112402,5379.480504,0,21
+205015,274.9333067,5477.362064,0,21
+205016,242.6193809,4993.896154,0,21
+205017,226.3253031,5052.767478,0,21
+205018,193.4350121,4863.968171,0,21
+205019,176.8249149,4649.136627,0,21
+205020,143.2300735,4407.790042,0,21
+205021,91.69705934,4007.683524,0,21
+205022,74.13071751,3762.202334,0,21
+205023,38.15870453,3540.850409,0,21
+205024,28.92477052,3317.927128,0,21
+205025,0,3405.34477,0,21
+205026,0,2882.318812,0,21
+205027,0,2940.533939,0,21
+205028,0,2744.335995,0,21
+205029,0,2310.236044,0,21
+205030,0,2428.941315,0,21
+205031,0,2112.6908,0,21
+205032,0,1680.696398,0,21
+205033,0,1592.591345,0,21
+205034,0,1532.675418,0,21
+205035,0,1255.38942,0,21
+205036,0,1013.379954,0,21
+205037,0,899.5199999,0,21
+205038,0,915.5025426,0,21
+205039,0,883.4970144,0,21
+205040,0,883.4969791,0,21
+205041,0,851.3256308,0,21
+205042,0,851.3255311,0,21
+205043,0,818.9838188,0,21
+205044,0,818.983672,0,21
+205045,0,786.4666751,0,21
+205046,0,786.4672681,0,21
+205047,0,770.1414654,0,21
+205048,0,753.7698092,0,21
+205049,0,737.3515589,0,21
+205050,0,720.8859408,0,21
+205051,0,704.3721463,0,21
+205052,0,687.8093289,0,21
+205053,0,687.809333,0,21
+205054,0,637.8176412,0,21
+205055,0,654.533039,0,21
+205056,0,621.0494125,0,21
+205057,0,604.2272462,0,21
+205058,0,604.2272536,0,21
+205059,0,570.4164743,0,21
+205060,0,553.4253771,0,21
+205061,0,553.4285061,0,21
+205062,0,519.2658415,0,21
+205063,0,519.2658432,0,21
+205064,0,484.8575076,0,21
+205065,0,484.8575111,0,21
+205066,0,467.5562441,0,21
+205067,0,432.7500247,0,21
+205068,0,450.1877668,0,21
+205069,0,397.6578086,0,21
+205070,0,406.4587094,0,21
+205071,0,379.998342,0,21
+205072,0,362.2596073,0,21
+205073,0,362.2596099,0,21
+205074,0,326.5315555,0,21
+205075,0,308.5350053,0,21
+205076,0,308.5350071,0,21
+205077,0,290.4445959,0,21
+205078,0,272.2555578,0,21
+205079,0,253.9624976,0,21
+205080,0,235.5592536,0,21
+205081,0,253.9624935,0,21
+205082,0,235.5592487,0,21
+205083,0,235.5592486,0,21
+205084,0,198.3925756,0,21
+205085,0,207.7319162,0,21
+205086,0,179.6110109,0,21
+205087,0,160.6821704,0,21
+205088,0,160.6821702,0,21
+205089,0,141.5914837,0,21
+205090,0,122.3205576,0,21
+205091,0,122.3205575,0,21
+205092,0,83.13312298,0,21
+205093,0,102.8453752,0,21
+205094,0,63.13596535,0,21
+205095,0,63.13596526,0,21
+205096,0,42.77676536,0,21
+205097,0,21.90587246,0,21
+205098,0,21.90587243,0,21
+205099,0,11.16970305,0,21
+205100,0,0,0,21
+205101,0,0,0,21
+205102,0,0,0,21
+205103,0,0,0,21
+205104,0,0,0,21
+205105,0,0,0,21
+205106,0,0,0,21
+205107,0,0,0,21
+205108,0,0,0,21
+205109,0,0,0,21
+205110,0,0,0,21
+205111,0,0,0,21
+205112,0,0,0,21
+205113,0,0,0,21
+205114,0,0,0,21
+205115,0,0,0,21
+205116,0,0,0,21
+205117,0,0,0,21
+205118,0,0,0,21
+205119,0,0,0,21
+205120,0,0,0,21
+205121,0,0,0,21
+205122,0,0,0,21
+205123,0,0,0,21
+205124,0,0,0,21
+205125,0,0,0,21
+205126,0,0,0,21
+205127,0,0,0,21
+205128,0,0,0,21
+205129,0,0,0,21
+205130,0,0,0,21
+205131,0,0,0,21
+205132,0,0,0,21
+205133,0,0,0,21
+205134,0,0,0,21
+205135,0,0,0,21
+205136,0,0,0,21
+205137,0,0,0,21
+205138,0,0,0,21
+205139,0,0,0,21
+205140,0,0,0,21
+205141,0,0,0,21
+205142,0,0,0,21
+205143,0,0,0,21
+205144,0,0,0,21
+205145,0,0,0,21
+205146,0,0,0,21
+205147,0,0,0,21
+205148,0,0,0,21
+205149,0,0,0,21
+205150,0,0,0,21
+205151,0,0,0,21
+205152,0,0,0,21
+205153,0,0,0,21
+205154,0,0,0,21
+205155,0,0,0,21
+205156,0,0,0,21
+205157,0,0,0,21
+205158,0,0,0,21
+205159,0,0,0,21
+205160,0,0,0,21
+205161,0,0,0,21
+205162,0,0,0,21
+205163,0,0,0,21
+205164,0,0,0,21
+205165,0,0,0,21
+205166,0,0,0,21
+205167,0,0,0,21
+205168,0,0,0,21
+205169,0,0,0,21
+205170,0,0,0,21
+205171,0,0,0,21
+205172,0,0,0,21
+205173,0,0,0,21
+205174,0,0,0,21
+205175,0,0,0,21
+205176,0,0,0,21
+205177,0,0,0,21
+205178,0,0,0,21
+205179,0,0,0,21
+205180,0,0,0,21
+205181,0,0,0,21
+205182,0,0,0,21
+205183,0,0,0,21
+205184,0,0,0,21
+205185,0,0,0,21
+205186,0,0,0,21
+205187,0,0,0,21
+205188,0,0,0,21
+205189,0,0,0,21
+205190,0,0,0,21
+205191,0,0,0,21
+205192,0,0,0,21
+205193,0,0,0,21
+205194,0,0,0,21
+205195,0,0,0,21
+205196,0,0,0,21
+205197,0,0,0,21
+205198,0,0,0,21
+205199,0,0,0,21
+205200,0,0,0,21
+205201,0,0,0,21
+205202,0,0,0,21
+205203,0,0,0,21
+205204,0,0,0,21
+205205,0,0,0,21
+205206,0,0,0,21
+205207,0,0,0,21
+205208,0,0,0,21
+205209,0,0,0,21
+205210,0,0,0,21
+205211,0,0,0,21
+205212,0,0,0,21
+205213,0,0,0,21
+205214,0,0,0,21
+205215,0,0,0,21
+205216,0,0,0,21
+205217,0,0,0,21
+205218,0,0,0,21
+205219,0,0,0,21
+205220,0,0,0,21
+205221,0,0,0,21
+205222,0,0,0,21
+205223,0,0,0,21
+205224,0,0,0,21
+205225,0,0,0,21
+205226,0,0,0,21
+205227,0,0,0,21
+205228,0,0,0,21
+205229,0,0,0,21
+205230,0,0,0,21
+205231,0,0,0,21
+205232,0,0,0,21
+205233,0,0,0,21
+205234,0,0,0,21
+205235,0,0,0,21
+205236,0,0,0,21
+205237,0,0,0,21
+205238,0,0,0,21
+205239,0,0,0,21
+205240,0,0,0,21
+205241,0,0,0,21
+205242,0,0,0,21
+205243,0,0,0,21
+205244,0,0,0,21
+205245,0,0,0,21
+205246,0,0,0,21
+205247,0,0,0,21
+205248,0,0,0,21
+205249,0,0,0,21
+205250,0,0,0,21
+205251,0,0,0,21
+205252,0,0,0,21
+205253,0,0,0,21
+205254,0,0,0,21
+205255,0,0,0,21
+205256,0,0,0,21
+205257,0,0,0,21
+205258,0,0,0,21
+205259,0,0,0,21
+205260,0,0,0,21
+205261,0,0,0,21
+205262,0,0,0,21
+205263,0,0,0,21
+205264,0,0,0,21
+205265,0,0,0,21
+205266,0,0,0,21
+205267,0,0,0,21
+205268,0,0,0,21
+205269,0,0,0,21
+205270,0,0,0,21
+205271,0,0,0,21
+205272,0,0,0,21
+205273,0,0,0,21
+205274,0,0,0,21
+205275,0,0,0,21
+205276,0,0,0,21
+205277,0,0,0,21
+205278,0,0,0,21
+205279,0,0,0,21
+205280,0,0,0,21
+205281,0,0,0,21
+205282,0,0,0,21
+205283,0,0,0,21
+205284,0,0,0,21
+205285,0,0,0,21
+205286,0,0,0,21
+205287,0,0,0,21
+205288,0,0,0,21
+205289,0,0,0,21
+205290,0,0,0,21
+205291,0,0,0,21
+205292,0,0,0,21
+205293,0,0,0,21
+205294,0,0,0,21
+205295,0,0,0,21
+205296,0,0,0,21
+205297,0,0,0,21
+205298,0,0,0,21
+205299,0,0,0,21
+205300,0,0,0,21
+205301,0,0,0,21
+205302,0,0,0,21
+205303,0,0,0,21
+205304,0,0,0,21
+205305,0,0,0,21
+205306,0,0,0,21
+205307,0,0,0,21
+205308,0,0,0,21
+205309,0,0,0,21
+205310,0,0,0,21
+205311,0,0,0,21
+205312,0,0,0,21
+205313,0,0,0,21
+205314,0,0,0,21
+205315,0,0,0,21
+205316,0,0,0,21
+205317,0,0,0,21
+205318,0,0,0,21
+205319,0,0,0,21
+205320,0,0,0,21
+205321,0,0,0,21
+205322,0,0,0,21
+205323,0,0,0,21
+205324,0,0,0,21
+205325,0,0,0,21
+205326,0,0,0,21
+205327,0,0,0,21
+205328,0,0,0,21
+205329,0,0,0,21
+205330,0,0,0,21
+205331,0,0,0,21
+205332,0,0,0,21
+205333,0,0,0,21
+205334,0,0,0,21
+205335,0,0,0,21
+205336,0,0,0,21
+205337,0,0,0,21
+205338,0,0,0,21
+205339,0,0,0,21
+205340,0,0,0,21
+205341,0,0,0,21
+205342,0,0,0,21
+205343,0,0,0,21
+205344,0,0,0,21
+205345,0,0,0,21
+205346,0,0,0,21
+205347,0,0,0,21
+205348,0,0,0,21
+205349,0,0,0,21
+205350,0,0,0,21
+205351,0,0,0,21
+205352,0,0,0,21
+205353,0,0,0,21
+205354,0,0,0,21
+205355,0,0,0,21
+205356,0,0,0,21
+205357,0,0,0,21
+205358,0,0,0,21
+205359,0,0,0,21
+205360,0,0,0,21
+205361,0,0,0,21
+205362,0,0,0,21
+205363,0,0,0,21
+205364,0,0,0,21
+205365,0,0,0,21
+205366,0,0,0,21
+205367,0,0,0,21
+205368,0,0,0,21
+205369,0,0,0,21
+205370,0,0,0,21
+205371,0,0,0,21
+205372,0,0,0,21
+205373,0,0,0,21
+205374,0,0,0,21
+205375,0,0,0,21
+205376,0,0,0,21
+205377,0,0,0,21
+205378,0,0,0,21
+205379,0,0,0,21
+205380,0,0,0,21
+205381,0,0,0,21
+205382,0,0,0,21
+205383,0,0,0,21
+205384,0,0,0,21
+205385,0,0,0,21
+205386,0,0,0,21
+205387,0,0,0,21
+205388,0,0,0,21
+205389,0,0,0,21
+205390,0,0,0,21
+205391,0,0,0,21
+205392,0,0,0,21
+205393,0,0,0,21
+205394,0,0,0,21
+205395,0,0,0,21
+205396,0,0,0,21
+205397,0,0,0,21
+205398,0,0,0,21
+205399,0,0,0,21
+205400,0,0,0,21
+205401,0,0,0,21
+205402,0,0,0,21
+205403,0,0,0,21
+205404,0,0,0,21
+205405,0,0,0,21
+205406,0,0,0,21
+205407,0,0,0,21
+205408,0,0,0,21
+205409,0,0,0,21
+205410,0,0,0,21
+205411,0,0,0,21
+205412,0,0,0,21
+205413,0,0,0,21
+205414,0,0,0,21
+205415,0,0,0,21
+205416,0,0,0,21
+205417,0,0,0,21
+205418,0,0,0,21
+205419,0,0,0,21
+205420,0,0,0,21
+205421,0,0,0,21
+205422,0,0,0,21
+205423,0,0,0,21
+205424,0,0,0,21
+205425,0,0,0,21
+205426,0,0,0,21
+205427,0,0,0,21
+205428,0,0,0,21
+205429,0,0,0,21
+205430,0,0,0,21
+205431,0,0,0,21
+205432,0,0,0,21
+205433,0,0,0,21
+205434,0,0,0,21
+205435,0,0,0,21
+205436,0,0,0,21
+205437,0,0,0,21
+205438,0,0,0,21
+205439,0,0,0,21
+205440,0,0,0,21
+205441,0,0,0,21
+205442,0,0,0,21
+205443,0,0,0,21
+205444,0,0,0,21
+205445,0,0,0,21
+205446,0,0,0,21
+205447,0,0,0,21
+205448,0,0,0,21
+205449,0,0,0,21
+205450,0,0,0,21
+205451,0,0,0,21
+205452,0,0,0,21
+205453,0,0,0,21
+205454,0,0,0,21
+205455,0,0,0,21
+205456,0,0,0,21
+205457,0,0,0,21
+205458,0,0,0,21
+205459,0,0,0,21
+205460,0,0,0,21
+205461,0,0,0,21
+205462,0,0,0,21
+205463,0,0,0,21
+205464,0,0,0,21
+205465,0,0,0,21
+205466,0,0,0,21
+205467,0,0,0,21
+205468,0,0,0,21
+205469,0,0,0,21
+205470,0,0,0,21
+205471,0,0,0,21
+205472,0,0,0,21
+205473,0,0,0,21
+205474,0,0,0,21
+205475,0,0,0,21
+205476,0,0,0,21
+205477,0,0,0,21
+205478,0,0,0,21
+205479,0,0,0,21
+205480,0,0,0,21
+205481,0,0,0,21
+205482,0,0,0,21
+205483,0,0,0,21
+205484,0,0,0,21
+205485,0,0,0,21
+205486,0,0,0,21
+205487,0,0,0,21
+205488,0,0,0,21
+205489,0,0,0,21
+205490,0,0,0,21
+205491,0,0,0,21
+205492,0,0,0,21
+205493,0,73.17399502,0,21
+205494,0,83.13308601,0,21
+205495,0,83.13308573,0,21
+205496,0,102.8453205,0,21
+205497,0,102.8453201,0,21
+205498,0,141.5913827,0,21
+205499,0,122.3204805,0,21
+205500,0,160.6820403,0,21
+205501,0,467.5551805,0,21
+205502,0,519.2645246,0,21
+205503,0,536.3748934,0,21
+205504,0,536.3748745,0,21
+205505,0,1573.939065,0,21
+205506,0,5260.102506,0,21
+205507,0,4763.137496,0,21
+205508,0,4880.494447,0,21
+205509,0,5864.998352,0,21
+205510,0,5588.293368,0,21
+205511,0,6546.070891,0,21
+205512,0,6697.941459,0,21
+205513,0,6914.45829,0,21
+205514,0,7345.261858,0,21
+205515,0,7581.169303,0,21
+205516,0,7854.371174,0,21
+205517,0,8204.675413,0,21
+205518,0,8656.457945,0,21
+205519,0,8694.776132,0,21
+205520,0,9158.924229,0,21
+205521,0,9308.324698,0,21
+205522,0,9665.783488,0,21
+205523,0,9947.519899,0,21
+205524,0,10123.84792,0,21
+205525,0,10445.88604,0,21
+205526,0,10752.61443,0,21
+205527,0,10917.80885,0,21
+205528,0,11225.77957,0,21
+205529,0,11385.92044,0,21
+205530,0,11867.67515,0,21
+205531,0,11995.69077,0,21
+205532,0,12033.81017,0,21
+205533,0,12762.31813,0,21
+205534,0,12788.57371,0,21
+205535,0,13154.54621,0,21
+205536,0,13622.8565,0,21
+205537,0,13943.50899,0,21
+205538,0,13852.70332,0,21
+205539,0,14631.83334,0,21
+205540,0,14526.85638,0,21
+205541,0,15010.65819,0,21
+205542,0,15180.18955,0,21
+205543,0,15679.95315,0,21
+205544,0,15586.28181,0,21
+205545,0,16177.00411,0,21
+205546,0,16369.86778,0,21
+205547,0,16701.57406,0,21
+205548,0,16877.64539,0,21
+205549,0,17209.13223,0,21
+205550,0,17401.67931,0,21
+205551,0,17712.65896,0,21
+205552,0,18052.11521,0,21
+205553,0,18214.67195,0,21
+205554,0,18409.32587,0,21
+205555,0,18850.79078,0,21
+205556,0,18919.049,0,21
+205557,0,19365.5418,0,21
+205558,0,19507.33596,0,21
+205559,0,19756.10592,0,21
+205560,0,20019.47158,0,21
+205561,0,20629.5907,0,21
+205562,0,20413.20755,0,21
+205563,0,21293.06418,0,21
+205564,0,21183.56981,0,21
+205565,0,23840.986,0,21
+205566,0,23784.10418,0,21
+205567,0,24318.88024,0,21
+205568,0,25137.87877,0,21
+205569,0,25691.02263,0,21
+205570,0,26378.99859,0,21
+205571,0,27020.68577,0,21
+205572,0,27573.37672,0,21
+205573,0,28250.97349,0,21
+205574,0,28909.60956,0,21
+205575,0,29185.73147,0,21
+205576,0,30477.28642,0,21
+205577,0,30365.38537,0,21
+205578,0,31175.34119,0,21
+205579,0,31944.28228,0,21
+205580,0,32551.50821,0,21
+205581,0,32983.40238,0,21
+205582,0,33398.64887,0,21
+205583,0,34492.88713,0,21
+205584,0,34912.9317,0,21
+205585,0,35068.32018,0,21
+205586,0,36175.91378,0,21
+205587,0,36694.22939,0,21
+205588,0,36999.46176,0,21
+205589,0,37936.61234,0,21
+205590,0,38151.44837,0,21
+205591,0,38909.65003,0,21
+205592,0,39233.02158,0,21
+205593,0,39467.22564,0,21
+205594,0,40075.94064,0,21
+205595,0,39638.4821,0,21
+205596,0,39982.14239,0,21
+205597,0,40356.42254,0,21
+205598,0,40452.26472,0,21
+205599,0,40940.80398,0,21
+205600,0,41257.07161,0,21
+205601,0,41530.15301,0,21
+205602,0,41854.38127,0,21
+205603,0,42342.4937,0,21
+205604,0,42278.149,0,21
+205605,0,42812.45738,0,21
+205606,0,42918.38623,0,21
+205607,0,43553.77546,0,21
+205608,0,43608.85791,0,21
+205609,0,43909.11488,0,21
+205610,0,44372.73885,0,21
+205611,0,44473.65754,0,21
+205612,0,44701.37282,0,21
+205613,0,45252.93947,0,21
+205614,0,44182.46629,0,21
+205615,0,44273.07366,0,21
+205616,0,44552.67305,0,21
+205617,0,44606.03698,0,21
+205618,0,44872.89556,0,21
+205619,0,45050.08848,0,21
+205620,0,45277.12857,0,21
+205621,0,47041.43573,0,21
+205622,0,47903.16241,0,21
+205623,0,47516.9425,0,21
+205624,0,48475.64609,0,21
+205625,0,48150.86007,0,21
+205626,0,48584.57502,0,21
+205627,0,48736.10011,0,21
+205628,0,48988.57938,0,21
+205629,0,49018.23795,0,21
+205630,0,49127.64276,0,21
+205631,0,49657.95343,0,21
+205632,0,49269.2684,0,21
+205633,0,50083.14218,0,21
+205634,0,49820.16644,0,21
+205635,0,50084.22811,0,21
+205636,0,50410.13103,0,21
+205637,0,50324.34441,0,21
+205638,0,50594.04855,0,21
+205639,0,50705.91603,0,21
+205640,0,49700.13979,0,21
+205641,0,49656.91526,0,21
+205642,0,49922.28573,0,21
+205643,0,49686.16504,0,21
+205644,0,49873.96533,0,21
+205645,0,50175.08445,0,21
+205646,0,50044.51364,0,21
+205647,0,50235.68681,0,21
+205648,0,50352.97635,0,21
+205649,0,50257.59514,0,21
+205650,0,50423.4297,0,21
+205651,0,51045.35445,0,21
+205652,0,50932.18409,0,21
+205653,0,51885.52961,0,21
+205654,0,52115.2684,0,21
+205655,0,52599.92996,0,21
+205656,0,52936.01571,0,21
+205657,0,53382.65473,0,21
+205658,0,54371.44328,0,21
+205659,0,54298.21164,0,21
+205660,0,55383.6379,0,21
+205661,0,55806.39372,0,21
+205662,0,56142.50955,0,21
+205663,0,56975.51404,0,21
+205664,0,57472.89425,0,21
+205665,0,57789.88524,0,21
+205666,0,58958.2416,0,21
+205667,0,59061.23398,0,21
+205668,0,59756.32968,0,21
+205669,0,60841.26348,0,21
+205670,0,60572.70799,0,21
+205671,0,61900.43287,0,21
+205672,0,62239.67815,0,21
+205673,0,63015.80549,0,21
+205674,0,63544.76986,0,21
+205675,0,64180.0722,0,21
+205676,0,64852.90896,0,21
+205677,0,65607.79266,0,21
+205678,0,66028.66081,0,21
+205679,0,66949.53018,0,21
+205680,0,67710.48355,0,21
+205681,0,68062.78738,0,21
+205682,0,68863.73413,0,21
+205683,0,70345.69017,0,21
+205684,0,71202.13743,0,21
+205685,0,72107.04256,0,21
+205686,0,72642.37321,0,21
+205687,0,73378.10092,0,21
+205688,0,73904.59643,0,21
+205689,0,74937.58424,0,21
+205690,0,75455.99848,0,21
+205691,0,76208.44136,0,21
+205692,0,77195.26049,0,21
+205693,0,77552.87143,0,21
+205694,0,78302.51254,0,21
+205695,0,79030.81984,0,21
+205696,0,80002.61136,0,21
+205697,0,80431.89481,0,21
+205698,0,81298.36531,0,21
+205699,0,82053.95716,0,21
+205700,0,82769.43758,0,21
+205701,0,83333.78191,0,21
+205702,0,84080.66402,0,21
+205703,0,84990.85134,0,21
+205704,0,85562.69539,0,21
+205705,0,86271.27933,0,21
+205706,0,87252.01698,0,21
+205707,0,87345.71344,0,21
+205708,0,88927.09834,0,21
+205709,0,89322.40501,0,21
+205710,0,90443.94731,0,21
+205711,0,91040.84083,0,21
+205712,0,91399.1999,0,21
+205713,0,92003.71615,0,21
+205714,0,93034.68151,0,21
+205715,0,92823.38414,0,21
+205716,0,93809.74404,0,21
+205717,0,94064.91037,0,21
+205718,0,94632.20939,0,21
+205719,0,95128.79845,0,21
+205720,0,95718.74246,0,21
+205721,0,95969.57577,0,21
+205722,0,96662.4207,0,21
+205723,0,96979.83519,0,21
+205724,0,97390.41876,0,21
+205725,0,98066.78048,0,21
+205726,0,98536.2887,0,21
+205727,0,98786.31073,0,21
+205728,0,99100.62245,0,21
+205729,0,99889.04808,0,21
+205730,0,99817.09331,0,21
+205731,0,101002.132,0,21
+205732,299.2286877,100705.2092,0,21
+205733,855.2903569,101565.0204,0,21
+205734,719.1541053,101620.2771,0,21
+205735,855.2903776,102481.8247,0,21
+205736,1123.452831,102329.6542,0,21
+205737,990.0000241,103203.4197,0,21
+205738,1387.081036,103574.2485,0,21
+205739,1255.778918,103701.2689,0,21
+205740,1517.442992,104388.4546,0,21
+205741,0,0,0,21
+205742,0,0,0,21
+205743,0,0,0,21
+205744,0,0,0,21
+205745,0,0,762478.8513,21
+205746,337916.598,368580.5304,0,21
+205747,0,0,0,21
+205748,0,0,0,21
+205749,0,0,0,21
+205750,0,0,0,21
+205751,0,0,0,21
+205752,0,0,0,21
+205753,0,0,0,21
+205754,0,0,0,21
+205755,0,0,0,21
+205756,0,0,0,21
+205757,0,0,0,21
+205758,0,0,0,21
+205759,0,0,0,21
+205760,0,0,0,21
+205761,0,0,0,21
+205762,0,0,0,21
+205763,0,0,0,21
+205764,0,0,0,21
+205765,0,0,0,21
+205766,0,0,0,21
+205767,0,0,0,21
+205768,0,0,0,21
+205769,0,0,0,21
+205770,0,0,0,21
+205771,0,0,0,21
+205772,0,0,0,21
+205773,0,0,0,21
+205774,0,0,0,21
+205775,0,0,0,21
+205776,0,0,0,21
+205777,0,0,0,21
+205778,0,0,0,21
+205779,0,0,754288.7602,21
+205780,0,0,0,21
+205781,339548.1944,368584.5352,0,21
+205782,0,0,0,21
+205783,0,0,0,21
+205784,0,0,0,21
+205785,0,0,0,21
+205786,0,0,0,21
+205787,0,0,0,21
+205788,0,0,0,21
+205789,0,0,0,21
+205790,0,0,0,21
+205791,0,0,0,21
+205792,0,0,0,21
+205793,0,0,0,21
+205794,0,0,0,21
+205795,0,0,0,21
+205796,0,0,0,21
+205797,0,0,0,21
+205798,0,0,0,21
+205799,0,0,0,21
+205800,0,0,0,15.6
+205801,0,0,0,15.6
+205802,0,0,0,15.6
+205803,0,0,0,15.6
+205804,0,0,0,15.6
+205805,0,0,0,15.6
+205806,0,0,0,15.6
+205807,0,0,0,15.6
+205808,0,0,0,15.6
+205809,0,0,0,15.6
+205810,0,0,0,15.6
+205811,0,0,0,15.6
+205812,0,0,0,15.6
+205813,0,0,0,15.6
+205814,0,0,747594.5603,15.6
+205815,0,0,0,15.6
+205816,0,368587.1803,0,15.6
+205817,338054.524,0,0,15.6
+205818,0,0,0,15.6
+205819,0,0,0,15.6
+205820,0,0,0,15.6
+205821,0,0,0,15.6
+205822,0,0,0,15.6
+205823,0,0,0,15.6
+205824,0,0,0,15.6
+205825,0,0,0,15.6
+205826,0,0,0,15.6
+205827,0,0,0,15.6
+205828,0,0,0,15.6
+205829,0,0,0,15.6
+205830,0,0,0,15.6
+205831,0,0,0,15.6
+205832,0,0,0,15.6
+205833,0,0,0,15.6
+205834,0,0,0,15.6
+205835,0,0,0,15.6
+205836,0,0,0,15.6
+205837,0,0,0,15.6
+205838,0,0,0,15.6
+205839,0,0,0,15.6
+205840,0,0,0,15.6
+205841,0,0,0,15.6
+205842,0,0,0,15.6
+205843,0,0,0,15.6
+205844,0,0,0,15.6
+205845,0,0,0,15.6
+205846,0,0,0,15.6
+205847,0,0,0,15.6
+205848,0,0,0,15.6
+205849,0,0,739923.0243,15.6
+205850,0,0,0,15.6
+205851,0,368587.5714,0,15.6
+205852,0,0,0,15.6
+205853,339367.2878,0,0,15.6
+205854,0,0,0,15.6
+205855,0,0,0,15.6
+205856,0,0,0,15.6
+205857,0,0,0,15.6
+205858,0,0,0,15.6
+205859,0,0,0,15.6
+205860,0,0,0,15.6
+205861,0,0,0,15.6
+205862,0,0,0,15.6
+205863,0,0,0,15.6
+205864,0,0,0,15.6
+205865,0,0,0,15.6
+205866,0,0,0,15.6
+205867,0,0,0,15.6
+205868,0,0,0,15.6
+205869,0,0,0,15.6
+205870,0,0,0,15.6
+205871,0,0,0,15.6
+205872,0,0,0,15.6
+205873,0,0,0,15.6
+205874,0,0,0,15.6
+205875,0,0,0,15.6
+205876,0,0,0,15.6
+205877,0,0,0,15.6
+205878,0,0,0,15.6
+205879,0,0,0,15.6
+205880,0,0,0,15.6
+205881,0,0,0,15.6
+205882,0,0,0,15.6
+205883,0,0,0,15.6
+205884,0,0,734749.4629,15.6
+205885,0,0,0,15.6
+205886,0,368584.8152,0,15.6
+205887,0,0,0,15.6
+205888,0,0,0,15.6
+205889,339103.4502,0,0,15.6
+205890,0,0,0,15.6
+205891,0,0,0,15.6
+205892,0,0,0,15.6
+205893,0,0,0,15.6
+205894,0,0,0,15.6
+205895,0,0,0,15.6
+205896,0,0,0,15.6
+205897,0,0,0,15.6
+205898,0,0,0,15.6
+205899,0,0,0,15.6
+205900,0,0,0,15.6
+205901,0,0,0,15.6
+205902,0,0,0,15.6
+205903,0,0,0,15.6
+205904,0,0,0,15.6
+205905,0,0,0,15.6
+205906,0,0,0,15.6
+205907,0,0,0,15.6
+205908,0,0,0,15.6
+205909,0,0,0,15.6
+205910,0,0,0,15.6
+205911,0,0,0,15.6
+205912,0,0,0,15.6
+205913,0,0,0,15.6
+205914,0,0,0,15.6
+205915,0,0,0,15.6
+205916,0,0,0,15.6
+205917,0,0,0,15.6
+205918,0,0,0,15.6
+205919,0,0,728451.1102,15.6
+205920,0,0,0,15.6
+205921,0,368581.0799,0,15.6
+205922,0,0,0,15.6
+205923,0,0,0,15.6
+205924,0,0,0,15.6
+205925,338314.4777,0,0,15.6
+205926,0,0,0,15.6
+205927,0,0,0,15.6
+205928,0,0,0,15.6
+205929,0,0,0,15.6
+205930,0,0,0,15.6
+205931,0,0,0,15.6
+205932,0,0,0,15.6
+205933,0,0,0,15.6
+205934,0,0,0,15.6
+205935,0,0,0,15.6
+205936,0,0,0,15.6
+205937,0,0,0,15.6
+205938,0,0,0,15.6
+205939,0,0,0,15.6
+205940,0,0,0,15.6
+205941,0,0,0,15.6
+205942,0,0,0,15.6
+205943,0,0,0,15.6
+205944,0,0,0,15.6
+205945,0,0,0,15.6
+205946,0,0,0,15.6
+205947,0,0,0,15.6
+205948,0,0,0,15.6
+205949,0,0,0,15.6
+205950,0,0,0,15.6
+205951,0,0,0,15.6
+205952,0,0,0,15.6
+205953,0,0,0,15.6
+205954,0,0,723756.6604,15.6
+205955,0,0,0,15.6
+205956,0,368600.9815,0,15.6
+205957,0,0,0,15.6
+205958,0,0,0,15.6
+205959,0,0,0,15.6
+205960,0,0,0,15.6
+205961,340191.6565,0,0,15.6
+205962,0,0,0,15.6
+205963,0,0,0,15.6
+205964,0,0,0,15.6
+205965,0,0,0,15.6
+205966,0,0,0,15.6
+205967,0,0,0,15.6
+205968,0,0,0,15.6
+205969,0,0,0,15.6
+205970,0,0,0,15.6
+205971,0,0,0,15.6
+205972,0,0,0,15.6
+205973,0,0,0,15.6
+205974,0,0,0,15.6
+205975,0,0,0,15.6
+205976,0,0,0,15.6
+205977,0,0,0,15.6
+205978,0,0,0,15.6
+205979,0,0,0,15.6
+205980,0,0,0,15.6
+205981,0,96.1077371,0,15.6
+205982,0,0,0,15.6
+205983,0,0,0,15.6
+205984,0,0,0,15.6
+205985,0,0,0,15.6
+205986,0,0,0,15.6
+205987,0,0,0,15.6
+205988,0,0,0,15.6
+205989,0,0,719669.593,15.6
+205990,0,0,0,15.6
+205991,0,0,0,15.6
+205992,0,368611.1834,0,15.6
+205993,0,0,0,15.6
+205994,0,0,0,15.6
+205995,0,0,0,15.6
+205996,0,0,0,15.6
+205997,338198.7514,0,0,15.6
+205998,0,0,0,15.6
+205999,0,0,0,15.6
+206000,0,0,0,15.6
+206001,0,0,0,15.6
+206002,0,0,0,15.6
+206003,0,0,0,15.6
+206004,0,0,0,15.6
+206005,0,0,0,15.6
+206006,0,0,0,15.6
+206007,0,0,0,15.6
+206008,0,0,0,15.6
+206009,0,0,0,15.6
+206010,0,0,0,15.6
+206011,0,0,0,15.6
+206012,0,0,0,15.6
+206013,0,0,0,15.6
+206014,0,0,0,15.6
+206015,0,0,0,15.6
+206016,0,0,0,15.6
+206017,0,0,0,15.6
+206018,0,0,0,15.6
+206019,0,0,0,15.6
+206020,0,0,0,15.6
+206021,0,0,0,15.6
+206022,0,0,0,15.6
+206023,0,0,0,15.6
+206024,0,0,715413.6267,15.6
+206025,0,0,0,15.6
+206026,0,0,0,15.6
+206027,0,0,0,15.6
+206028,0,368611.6911,0,15.6
+206029,0,0,0,15.6
+206030,0,0,0,15.6
+206031,0,0,0,15.6
+206032,0,0,0,15.6
+206033,340099.2669,0,0,15.6
+206034,0,0,0,15.6
+206035,0,0,0,15.6
+206036,0,0,0,15.6
+206037,0,0,0,15.6
+206038,0,0,0,15.6
+206039,0,0,0,15.6
+206040,0,0,0,15.6
+206041,0,0,0,15.6
+206042,0,0,0,15.6
+206043,0,0,0,15.6
+206044,0,0,0,15.6
+206045,0,0,0,15.6
+206046,0,0,0,15.6
+206047,0,0,0,15.6
+206048,0,0,0,15.6
+206049,0,0,0,15.6
+206050,0,0,0,15.6
+206051,0,0,0,15.6
+206052,0,0,0,15.6
+206053,0,0,0,15.6
+206054,0,0,0,15.6
+206055,0,0,0,15.6
+206056,0,0,0,15.6
+206057,0,0,0,15.6
+206058,0,0,0,15.6
+206059,0,0,711421.5787,15.6
+206060,0,0,0,15.6
+206061,0,0,0,15.6
+206062,0,0,0,15.6
+206063,0,0,0,15.6
+206064,0,368611.8604,0,15.6
+206065,0,0,0,15.6
+206066,0,0,0,15.6
+206067,0,0,0,15.6
+206068,0,0,0,15.6
+206069,338907.2305,0,0,15.6
+206070,0,0,0,15.6
+206071,0,0,0,15.6
+206072,0,0,0,15.6
+206073,0,0,0,15.6
+206074,0,0,0,15.6
+206075,0,0,0,15.6
+206076,0,0,0,15.6
+206077,0,0,0,15.6
+206078,0,0,0,15.6
+206079,0,0,0,15.6
+206080,0,0,0,15.6
+206081,0,0,0,15.6
+206082,0,0,0,15.6
+206083,0,0,0,15.6
+206084,0,0,0,15.6
+206085,0,0,0,15.6
+206086,0,0,0,15.6
+206087,0,0,0,15.6
+206088,0,0,0,15.6
+206089,0,0,0,15.6
+206090,0,0,0,15.6
+206091,0,0,0,15.6
+206092,0,0,0,15.6
+206093,0,0,0,15.6
+206094,0,0,706901.7965,15.6
+206095,0,0,0,15.6
+206096,0,0,0,15.6
+206097,0,0,0,15.6
+206098,0,0,0,15.6
+206099,0,0,0,15.6
+206100,0,368611.8604,0,15.6
+206101,0,0,0,15.6
+206102,0,0,0,15.6
+206103,0,0,0,15.6
+206104,0,0,0,15.6
+206105,0,0,0,15.6
+206106,339023.2399,0,0,15.6
+206107,0,0,0,15.6
+206108,0,0,0,15.6
+206109,0,0,0,15.6
+206110,0,0,0,15.6
+206111,0,0,0,15.6
+206112,0,0,0,15.6
+206113,0,0,0,15.6
+206114,0,0,0,15.6
+206115,0,0,0,15.6
+206116,0,0,0,15.6
+206117,0,0,0,15.6
+206118,0,0,0,15.6
+206119,0,0,0,15.6
+206120,0,0,0,15.6
+206121,0,0,0,15.6
+206122,0,0,0,15.6
+206123,0,0,0,15.6
+206124,0,0,0,15.6
+206125,0,0,0,15.6
+206126,0,0,0,15.6
+206127,0,0,0,15.6
+206128,0,0,704536.5308,15.6
+206129,0,0,0,15.6
+206130,0,0,0,15.6
+206131,0,0,0,15.6
+206132,0,0,0,15.6
+206133,0,0,0,15.6
+206134,0,0,0,15.6
+206135,0,0,0,15.6
+206136,0,368611.8604,0,15.6
+206137,0,0,0,15.6
+206138,0,0,0,15.6
+206139,0,0,0,15.6
+206140,0,0,0,15.6
+206141,340031.723,0,0,15.6
+206142,0,0,0,15.6
+206143,0,0,0,15.6
+206144,0,0,0,15.6
+206145,0,0,0,15.6
+206146,0,0,0,15.6
+206147,0,0,0,15.6
+206148,0,0,0,15.6
+206149,0,0,0,15.6
+206150,0,0,0,15.6
+206151,0,0,0,15.6
+206152,0,0,0,15.6
+206153,0,0,0,15.6
+206154,0,0,0,15.6
+206155,0,0,0,15.6
+206156,0,0,0,15.6
+206157,0,0,0,15.6
+206158,0,0,0,15.6
+206159,0,0,0,15.6
+206160,0,0,0,17.8
+206161,0,0,0,17.8
+206162,0,0,699968.3723,17.8
+206163,0,0,0,17.8
+206164,0,0,0,17.8
+206165,0,0,0,17.8
+206166,0,0,0,17.8
+206167,0,0,0,17.8
+206168,0,0,0,17.8
+206169,0,0,0,17.8
+206170,0,368617.405,0,17.8
+206171,0,0,0,17.8
+206172,0,0,0,17.8
+206173,0,0,0,17.8
+206174,0,0,0,17.8
+206175,0,0,0,17.8
+206176,338464.8375,0,0,17.8
+206177,0,0,0,17.8
+206178,0,0,0,17.8
+206179,0,0,0,17.8
+206180,0,0,0,17.8
+206181,0,0,0,17.8
+206182,0,876.7162734,0,17.8
+206183,0,509.9281066,0,17.8
+206184,0,603.7878606,0,17.8
+206185,0,659.3500522,0,17.8
+206186,0,677.7540567,0,17.8
+206187,0,714.3944784,0,17.8
+206188,0,714.3944934,0,17.8
+206189,0,750.8189848,0,17.8
+206190,0,768.9528692,0,17.8
+206191,0,787.0357971,0,17.8
+206192,0,787.0358156,0,17.8
+206193,0,823.0523864,0,17.8
+206194,0,823.0524069,0,17.8
+206195,0,823.0524274,0,17.8
+206196,0,858.8755881,697633.974,17.8
+206197,0,858.8756106,0,17.8
+206198,0,876.7166441,0,17.8
+206199,0,0,0,17.8
+206200,0,0,0,17.8
+206201,0,0,0,17.8
+206202,0,0,0,17.8
+206203,0,0,0,17.8
+206204,0,368636.2567,0,17.8
+206205,0,0,0,17.8
+206206,0,0,0,17.8
+206207,0,0,0,17.8
+206208,0,0,0,17.8
+206209,0,0,0,17.8
+206210,0,0,0,17.8
+206211,339187.2182,0,0,17.8
+206212,0,0,0,17.8
+206213,0,0,0,17.8
+206214,0,0,0,17.8
+206215,0,0,0,17.8
+206216,0,0,0,17.8
+206217,0,0,0,17.8
+206218,0,0,0,17.8
+206219,0,0,0,17.8
+206220,0,0,0,20
+206221,3555.349007,83764.09401,24830.57115,20
+206222,0,135217.3634,143.3870988,20
+206223,0,96384.53253,5302.054488,20
+206224,0,120510.3115,2176.014932,20
+206225,204.8510913,114493.5635,4796.466264,20
+206226,594.4578617,130167.7716,7123.606414,20
+206227,555.6087439,127764.1778,5485.206186,20
+206228,22789.53867,125986.4198,6228.270666,20
+206229,11377.88226,128591.8357,6370.958295,20
+206230,14383.26773,127234.9025,6753.010001,20
+206231,24025.05557,127163.3531,6794.898523,20
+206232,21484.1685,127326.1065,7035.662654,20
+206233,21900.54176,126517.2494,7163.349612,20
+206234,22558.30507,126128.5473,7442.737373,20
+206235,23183.3146,125507.1222,7569.382974,20
+206236,23125.03141,125612.8727,7709.68941,20
+206237,23609.76474,124605.7393,7849.382798,20
+206238,24050.5713,125026.9251,8113.07029,20
+206239,24006.79264,123897.1767,8226.253755,20
+206240,24404.03245,124010.637,8391.105621,20
+206241,24819.47451,123579.5424,8504.005446,20
+206242,24798.3841,122627.9931,8655.541905,20
+206243,25170.21661,122995.9593,8904.327812,20
+206244,25409.27448,122212.9394,8906.130604,20
+206245,25724.74682,125158.3341,9070.740128,20
+206246,25600.8541,123400.0078,9291.725382,20
+206247,26187.0085,123495.2074,9333.687025,20
+206248,26454.43187,123255.7586,9457.862337,20
+206249,26174.15408,122755.3626,9704.689973,20
+206250,26918.92094,122964.7274,9720.397607,20
+206251,26732.23365,122046.287,9965.962985,20
+206252,27090.58243,122340.4125,9886.303048,20
+206253,27285.02287,122022.7063,10239.87231,20
+206254,27220.66733,121369.0913,10121.64364,20
+206255,27871.5409,121321.796,10392.91258,20
+206256,27453.13528,121364.6049,10516.25614,20
+206257,28104.79279,120829.8529,10264.7234,20
+206258,28038.77653,121117.2035,10280.36873,20
+206259,28142.65865,121406.3766,10296.00444,20
+206260,28477.37566,120540.7404,10502.45164,20
+206261,28299.85761,121061.3433,10449.03087,20
+206262,28811.1526,120288.0891,10547.34991,20
+206263,28840.81479,120307.7317,9711.610982,20
+206264,28755.64885,120091.3938,9617.896776,20
+206265,29273.5526,119896.1595,9484.414257,20
+206266,29111.56364,119606.7352,9622.808305,20
+206267,29211.39286,119003.0713,9405.276353,20
+206268,29543.54955,119522.7847,9517.768225,20
+206269,29550.23505,118844.7592,9520.259137,20
+206270,29661.83405,118395.4724,9467.225284,20
+206271,29785.88258,118644.3384,9606.712552,20
+206272,30005.35473,117823.7485,9498.781251,20
+206273,29940.94431,118275.4023,9514.337247,20
+206274,30091.98579,117429.7984,9529.758467,20
+206275,30287.10454,117593.8429,9545.178987,20
+206276,30243.51675,116946.489,9573.629633,20
+206277,30503.1155,117140.8726,9439.404083,20
+206278,30471.38609,116488.4971,9591.341984,20
+206279,30724.77347,116549.9028,9372.014639,20
+206280,30715.31854,116586.4689,9596.138223,21
+206281,27290.848,107754.5425,6952.465141,21
+206282,27286.74087,106499.9412,6913.665957,21
+206283,27061.56271,106316.2109,6683.841327,21
+206284,27269.77905,105799.7289,6787.356073,21
+206285,27222.66016,105116.9352,6570.168045,21
+206286,27274.19362,105200.7418,6776.295595,21
+206287,27418.03723,104437.7582,6585.77264,21
+206288,27532.33544,104281.4967,6533.410635,21
+206289,27426.23362,103665.8684,6574.588217,21
+206290,27638.55746,103818.1708,6549.008274,21
+206291,27667.41141,103263.4288,6550.116906,21
+206292,27781.60944,103068.0036,6564.479979,21
+206293,27860.40358,102601.2774,6435.860905,21
+206294,27812.74932,102966.2756,6423.469434,21
+206295,28094.37705,102459.9567,6451.257492,21
+206296,27901.99167,102398.5352,6425.600887,21
+206297,28144.06584,102220.2098,6309.803251,21
+206298,28330.02881,102111.6095,6440.953668,21
+206299,28148.29927,102156.5493,6311.872172,21
+206300,28447.77399,101583.0632,6182.165316,21
+206301,28280.59383,101500.5411,6327.151622,21
+206302,28472.54925,101966.4803,6301.420198,21
+206303,28600.29599,101156.9348,6067.401516,21
+206304,28480.9263,100901.9898,6289.887321,21
+206305,28921.6521,101329.4252,6082.855849,21
+206306,28715.45276,100664.656,6056.704427,21
+206307,28933.96735,100875.4287,6175.489417,21
+206308,28736.09071,100684.5745,5940.566497,21
+206309,29065.23509,100326.959,6046.11028,21
+206310,29044.86728,100371.5953,5928.974461,21
+206311,29171.85317,100222.9277,5929.685578,21
+206312,29393.78778,99847.67343,6062.448017,21
+206313,29261.38379,100073.1198,5931.496855,21
+206314,29673.50575,99943.56039,6050.721298,21
+206315,29491.45272,99506.51569,6065.074046,21
+206316,29827.99175,99374.33143,6066.010159,21
+206317,29709.77908,99498.84561,5537.769145,21
+206318,30113.29375,99093.8989,5551.97468,21
+206319,29863.69782,99190.0507,5525.637424,21
+206320,30311.15089,99132.32746,5433.608353,21
+206321,30225.93689,98794.35278,5540.864462,21
+206322,30351.90704,98904.79385,5527.662408,21
+206323,30573.57036,98556.38986,5436.158809,21
+206324,30520.63163,98416.37965,5515.75416,21
+206325,30800.41923,98693.80332,5437.383496,21
+206326,30725.96386,98112.43813,5531.009688,21
+206327,30998.12556,98143.93575,5544.923738,21
+206328,31145.09649,98045.85159,5426.222731,21
+206329,31027.10636,97768.55904,5413.229812,21
+206330,31421.45308,97890.69296,5560.954496,21
+206331,31248.05475,97898.51225,5401.270089,21
+206332,31571.14088,97142.1634,5548.749275,21
+206333,31583.26081,97871.14143,5429.657023,21
+206334,31703.61793,97066.74014,5416.958029,21
+206335,31850.17304,97406.19757,5417.364465,21
+206336,31936.3777,96671.72973,5431.878141,21
+206337,31970.3872,97309.40824,5405.394216,21
+206338,32189.55102,96790.41006,5433.356708,21
+206339,32302.78766,96659.49856,5406.507668,21
+206340,32347.18463,96781.69852,5314.476405,21
+206341,5171.166891,53827.14934,0,21
+206342,4129.630523,51470.53658,0,21
+206343,3868.422891,50285.32907,0,21
+206344,3684.944452,49491.83012,0,21
+206345,3560.279597,48825.33007,0,21
+206346,3405.191736,47863.58499,0,21
+206347,3264.522644,47249.21922,0,21
+206348,3107.681318,46496.45467,0,21
+206349,3108.02768,45883.09145,0,21
+206350,2822.476611,45266.89754,0,21
+206351,2943.136538,44117.91025,0,21
+206352,2671.264571,43740.91296,0,21
+206353,2519.178876,42903.88685,0,21
+206354,2648.671757,42333.76644,0,21
+206355,2358.034648,41906.89808,0,21
+206356,2366.159839,41023.54142,0,21
+206357,2196.716295,40698.96968,0,21
+206358,2063.938109,39849.42465,0,21
+206359,2196.716298,39628.38337,0,21
+206360,1884.823759,38547.63737,0,21
+206361,1899.905661,38370.23478,0,21
+206362,1734.979951,37738.40767,0,21
+206363,1742.315191,37188.39227,0,21
+206364,1583.230265,36471.85035,0,21
+206365,1567.549604,36310.06114,0,21
+206366,1429.753746,35495.39442,0,21
+206367,1414.568166,34910.64212,0,21
+206368,1329.197434,34506.94614,0,21
+206369,1243.784326,33932.441,0,21
+206370,1100.861617,33437.82648,0,21
+206371,1227.960134,32824.68409,0,21
+206372,916.4424601,32190.59239,0,21
+206373,923.7772042,31709.24232,0,21
+206374,908.4827519,31148.35511,0,21
+206375,715.8484617,30568.95112,0,21
+206376,739.2197456,30021.82288,0,21
+206377,692.3979195,29482.82541,0,21
+206378,707.8071682,28918.13196,0,21
+206379,676.2501075,28351.81297,0,21
+206380,684.3350577,27800.67947,0,21
+206381,660.011672,27257.91404,0,21
+206382,652.6733653,26838.69673,0,21
+206383,644.5425277,25940.15819,0,21
+206384,612.6777098,25849.81751,0,21
+206385,628.2085756,24966.52472,0,21
+206386,596.2426513,24630.29428,0,21
+206387,597.0831447,23930.4139,0,21
+206388,579.7000337,23477.45934,0,21
+206389,572.3906619,22999.1625,0,21
+206390,548.4450513,22452.63561,0,21
+206391,547.4477586,21715.22439,0,21
+206392,548.4450535,21630.26567,0,21
+206393,515.0056305,20691.89525,0,21
+206394,507.6840161,20422.9986,0,21
+206395,515.0056303,19769.73435,0,21
+206396,475.0370818,19256.39709,0,21
+206397,482.3605689,18880.24469,0,21
+206398,482.3605668,18123.66458,0,21
+206399,442.175616,17849.23956,0,21
+206400,465.2961297,17094.29269,0,21
+206401,417.6744849,16900.52022,0,21
+206402,432.2677089,16070.15584,0,21
+206403,391.762549,15838.72475,0,21
+206404,391.0143574,15244.85962,0,21
+206405,383.0298426,14803.77483,0,21
+206406,349.3685554,14203.59971,0,21
+206407,349.3685549,13969.52866,0,21
+206408,340.4587998,13114.13309,0,21
+206409,315.3637421,12814.08929,0,21
+206410,290.0989634,12634.94714,0,21
+206411,297.1425255,11462.49697,0,21
+206412,280.9410204,11672.3354,0,21
+206413,245.9593918,10777.51599,0,21
+206414,262.2538987,10553.09416,0,21
+206415,209.9354097,9921.111267,0,21
+206416,226.3284682,9462.831858,0,21
+206417,209.9354107,9031.46453,0,21
+206418,193.4373972,8590.590506,0,21
+206419,209.9354101,7910.797579,0,21
+206420,176.8269504,7849.077685,0,21
+206421,193.4373977,6985.609431,0,21
+206422,176.8269501,6786.794865,0,21
+206423,160.0952067,6219.362032,0,21
+206424,401.1034329,5849.511256,0,21
+206425,645.2501092,5810.582243,0,21
+206426,610.7000483,5615.733276,0,21
+206427,563.0423331,5398.268145,0,21
+206428,595.2309056,5216.865478,0,21
+206429,563.0423344,5021.59703,0,21
+206430,595.230907,4949.091194,0,21
+206431,530.6660507,4608.083614,0,21
+206432,578.573201,4552.923288,0,21
+206433,539.0730284,4183.43058,0,21
+206434,530.6660536,4311.980236,0,21
+206435,546.2606215,3753.506627,0,21
+206436,498.0891698,3899.711608,0,21
+206437,530.6660512,3333.069414,0,21
+206438,513.749577,3466.282686,0,21
+206439,489.576394,3267.471396,0,21
+206440,498.0891701,2839.066535,0,21
+206441,481.024729,2839.066694,0,21
+206442,465.2961372,2592.761617,0,21
+206443,481.0247266,2468.383928,0,21
+206444,456.7033872,2162.146527,0,21
+206445,448.067038,2062.90092,0,21
+206446,465.2961316,1899.165404,0,21
+206447,414.8521674,1799.344106,0,21
+206448,448.0670413,1747.247341,0,21
+206449,414.8521621,1704.957935,0,21
+206450,423.5848757,1662.533575,0,21
+206451,414.8521672,1563.997775,0,21
+206452,397.2203824,1550.702051,0,21
+206453,398.9793148,1480.978892,0,21
+206454,381.3475327,1407.916375,0,21
+206455,381.3475286,1367.295745,0,21
+206456,372.4377788,1307.182885,0,21
+206457,373.3825776,1252.348561,0,21
+206458,338.4433383,1191.65639,0,21
+206459,363.4560797,1135.999195,0,21
+206460,331.4771039,1074.667205,0,21
+206461,294.568766,956.0040956,0,21
+206462,297.1425247,910.4142817,0,21
+206463,2827.625887,852.2286934,0,21
+206464,6297.223862,818.4178461,0,21
+206465,3339.518705,776.1539401,0,21
+206466,4437.871168,695.1234634,0,21
+206467,4456.092393,666.3788815,0,21
+206468,4590.249819,633.8352057,0,21
+206469,4708.083063,553.0820404,0,21
+206470,4599.231515,519.3362108,0,21
+206471,4859.313883,493.4831725,0,21
+206472,4859.313885,484.8571684,0,21
+206473,4992.220572,467.5559314,0,21
+206474,4994.053035,450.1874779,0,21
+206475,5016.794384,450.1874855,0,21
+206476,5251.750751,432.7497765,0,21
+206477,5142.336366,415.2406121,0,21
+206478,5407.894243,397.6576059,0,21
+206479,5276.162168,397.6576114,0,21
+206480,5556.457104,379.9981671,0,21
+206481,5407.894238,362.2594499,0,21
+206482,5704.465426,362.2594543,0,21
+206483,5556.45732,344.4383524,0,21
+206484,5811.04423,326.5314356,0,21
+206485,5819.556928,308.5349002,0,21
+206486,5851.942511,317.5446289,0,21
+206487,5949.802329,290.4445054,0,21
+206488,6113.375663,272.2554799,0,21
+206489,6096.5939,272.255482,0,21
+206490,6113.375626,253.9624332,0,21
+206491,6372.041509,244.7750099,0,21
+206492,6251.230951,235.5592009,0,21
+206493,6388.699199,217.0386722,0,21
+206494,6388.699155,217.0386734,0,21
+206495,6615.535015,217.0386746,0,21
+206496,6435.666647,179.6109895,0,21
+206497,6760.301498,198.3925488,0,21
+206498,6662.502485,179.6109909,0,21
+206499,6678.937505,160.6821561,0,21
+206500,6904.623216,160.6821566,0,21
+206501,6822.137074,160.6821572,0,21
+206502,6936.090229,141.5914751,0,21
+206503,7063.593713,122.3205525,0,21
+206504,7063.593635,141.5914759,0,21
+206505,7094.863925,102.8453732,0,21
+206506,7198.902117,122.3205533,0,21
+206507,7207.009666,102.8453736,0,21
+206508,7461.618963,83.13312274,0,21
+206509,7253.075214,102.8453739,0,21
+206510,7461.618929,63.13596623,0,21
+206511,7507.503365,83.13312304,0,21
+206512,7587.893746,53.00834833,0,21
+206513,7523.482447,63.13596637,0,21
+206514,7744.762798,42.77676662,0,21
+206515,7745.90003,42.77676663,0,21
+206516,7791.438571,32.42037145,0,21
+206517,7886.357514,21.90587333,0,21
+206518,7902.257585,21.90587333,0,21
+206519,8012.820912,21.90587333,0,21
+206520,8058.119218,0,0,21
+206521,1852.83922,21.90587258,0,21
+206522,1623.876657,21.90587257,0,21
+206523,1716.702039,0,0,21
+206524,1608.195988,11.16970316,0,21
+206525,1454.793434,0,0,21
+206526,1592.444845,0,0,21
+206527,1446.961735,0,0,21
+206528,1453.778698,0,0,21
+206529,1295.689715,0,0,21
+206530,1296.774914,0,0,21
+206531,1295.689722,0,0,21
+206532,1296.774921,0,0,21
+206533,1149.744709,0,0,21
+206534,1135.078762,0,0,21
+206535,1135.078764,0,0,21
+206536,973.8920303,0,0,21
+206537,1059.979089,0,0,21
+206538,965.9706307,0,0,21
+206539,981.7948341,0,0,21
+206540,943.3215172,0,0,21
+206541,965.9706353,0,0,21
+206542,951.2618886,0,0,21
+206543,965.9706381,0,0,21
+206544,920.6095045,0,0,21
+206545,965.9706407,0,0,21
+206546,920.6095069,0,0,21
+206547,950.0705611,0,0,21
+206548,920.609509,0,0,21
+206549,912.6300534,0,0,21
+206550,935.3618161,0,0,21
+206551,904.6304357,0,0,21
+206552,920.609513,0,0,21
+206553,919.3827426,0,0,21
+206554,920.6095148,0,0,21
+206555,904.6304392,0,0,21
+206556,935.3618217,0,0,21
+206557,904.6304409,0,0,21
+206558,935.3618234,0,0,21
+206559,912.6300622,0,0,21
+206560,935.361825,0,0,21
+206561,919.3827492,0,0,21
+206562,920.6095212,0,0,21
+206563,935.3618272,0,0,21
+206564,935.3618279,0,0,21
+206565,242.6230152,0,0,21
+206566,209.9354391,0,0,21
+206567,226.3285025,0,0,21
+206568,209.9354392,0,0,21
+206569,209.9354393,0,0,21
+206570,209.9354393,0,0,21
+206571,201.6999891,0,0,21
+206572,193.4374219,0,0,21
+206573,193.437422,0,0,21
+206574,193.437422,0,0,21
+206575,193.4374221,0,0,21
+206576,176.8269703,0,0,21
+206577,176.8269703,0,0,21
+206578,176.8269703,0,0,21
+206579,176.8269704,0,0,21
+206580,160.0952226,0,0,21
+206581,553.2821494,0,0,21
+206582,538.2992738,0,0,21
+206583,553.277534,0,0,21
+206584,645.3426677,0,0,21
+206585,829.1050639,0,0,21
+206586,671.394457,0,0,21
+206587,745.6844599,0,0,21
+206588,715.7669054,0,0,21
+206589,1533.099578,0,0,21
+206590,2386.036899,0,0,21
+206591,1735.687507,0,0,21
+206592,2117.837143,0,0,21
+206593,2003.191329,0,0,21
+206594,2132.771807,0,0,21
+206595,2256.544029,0,0,21
+206596,2141.115439,0,0,21
+206597,2279.792602,0,0,21
+206598,2248.200127,0,0,21
+206599,2409.28504,0,0,21
+206600,2279.792431,0,0,21
+206601,2521.30763,0,0,21
+206602,2410.892668,0,0,21
+206603,2407.514895,0,0,21
+206604,2659.233813,0,0,21
+206605,2424.172424,0,0,21
+206606,2650.948504,0,0,21
+206607,2680.770928,0,0,21
+206608,2682.425664,0,0,21
+206609,2665.883033,0,0,21
+206610,3234.92746,0,0,21
+206611,3220.039616,0,0,21
+206612,3220.039517,0,0,21
+206613,3211.88475,0,0,21
+206614,3344.703569,0,0,21
+206615,3220.039221,0,0,21
+206616,3336.54869,0,0,21
+206617,3329.768526,0,0,21
+206618,3211.884259,0,0,21
+206619,3468.800927,0,0,21
+206620,3313.43434,0,0,21
+206621,3329.768111,0,0,21
+206622,3313.434134,0,0,21
+206623,3445.711096,0,0,21
+206624,3313.433485,0,0,21
+206625,3445.710489,0,0,21
+206626,3298.450728,0,0,21
+206627,3437.531175,0,0,21
+206628,8048.075823,0,0,21
+206629,8329.155259,0,0,21
+206630,8578.810596,0,0,21
+206631,8578.809944,0,0,21
+206632,8704.016378,0,0,21
+206633,9155.35946,0,0,21
+206634,11340.13952,0,0,21
+206635,9941.455264,0,0,21
+206636,10727.20528,0,0,21
+206637,10959.59928,0,0,21
+206638,10727.20337,0,0,21
+206639,11100.99278,0,0,21
+206640,11227.12378,0,0,21
+206641,1400.743161,0,0,21
+206642,1265.193092,0,0,21
+206643,1257.252611,0,0,21
+206644,1250.484226,0,0,21
+206645,1281.016593,0,0,21
+206646,1279.859204,0,0,21
+206647,1281.017376,0,0,21
+206648,1423.354636,0,0,21
+206649,1310.306185,0,0,21
+206650,1288.901297,0,0,21
+206651,1468.394808,0,0,21
+206652,1295.682448,0,0,21
+206653,1484.075219,0,0,21
+206654,1468.394678,0,0,21
+206655,1341.737413,0,0,21
+206656,1482.976812,0,0,21
+206657,1499.687406,0,0,21
+206658,1505.367125,0,0,21
+206659,1428.884249,0,0,21
+206660,1513.198619,0,0,21
+206661,1528.810933,0,0,21
+206662,1514.269394,0,0,21
+206663,1536.592152,0,0,21
+206664,1543.312193,0,0,21
+206665,1544.357136,0,0,21
+206666,1544.357087,0,0,21
+206667,1573.320364,0,0,21
+206668,1544.35699,0,0,21
+206669,1558.858338,0,0,21
+206670,1588.802636,0,0,21
+206671,1714.133859,0,0,21
+206672,1517.999469,0,0,21
+206673,1728.595673,0,0,21
+206674,1604.222739,0,0,21
+206675,1750.736402,0,0,21
+206676,1758.438848,0,0,21
+206677,1704.179217,0,0,21
+206678,1772.823436,0,0,21
+206679,1911.594213,0,0,21
+206680,1817.831279,0,0,21
+206681,1788.183179,0,0,21
+206682,1955.626769,0,0,21
+206683,1941.279798,0,0,21
+206684,1969.936295,0,0,21
+206685,1970.870415,0,0,21
+206686,1985.179998,0,0,21
+206687,2121.316776,0,0,21
+206688,2082.90012,0,0,21
+206689,2121.316645,0,0,21
+206690,2180.147379,0,0,21
+206691,2136.504449,0,0,21
+206692,2240.109016,0,0,21
+206693,2314.857461,0,0,21
+206694,2180.147093,0,0,21
+206695,2344.138142,0,0,21
+206696,2322.403844,0,0,21
+206697,2491.757039,0,0,21
+206698,2344.964963,0,0,21
+206699,2505.887421,0,0,21
+206700,2426.040614,0,0,21
+206701,8746.329286,0,0,21
+206702,8855.016154,0,0,21
+206703,8840.815337,0,0,21
+206704,8855.895334,0,0,21
+206705,9088.505641,0,0,21
+206706,8870.096091,0,0,21
+206707,9074.304798,0,0,21
+206708,9102.671023,0,0,21
+206709,8972.739956,0,0,21
+206710,9102.670976,0,0,21
+206711,9103.533349,0,0,21
+206712,9226.54725,0,0,21
+206713,9088.505454,0,0,21
+206714,9241.52398,0,0,21
+206715,9226.547176,0,0,21
+206716,9226.547151,0,0,21
+206717,9226.547126,0,0,21
+206718,9350.138081,0,0,21
+206719,9241.523857,0,0,21
+206720,9349.291791,0,0,21
+206721,9365.064762,0,0,21
+206722,9349.291742,0,0,21
+206723,9379.195252,0,0,21
+206724,9364.268474,0,0,21
+206725,9472.65073,0,0,21
+206726,9379.195182,0,0,21
+206727,9595.730093,0,0,21
+206728,9378.364434,0,0,21
+206729,9610.607764,0,0,21
+206730,9378.36439,0,0,21
+206731,9610.607719,0,0,21
+206732,9609.826031,0,0,21
+206733,9501.673357,0,0,21
+206734,9624.703705,0,0,21
+206735,9501.673317,0,0,21
+206736,9624.703664,0,0,21
+206737,4597.984301,0,0,21
+206738,4359.61938,0,0,21
+206739,4311.943095,0,0,21
+206740,4199.044218,0,0,21
+206741,4054.865707,0,0,21
+206742,4168.166219,0,0,21
+206743,3925.620962,0,0,21
+206744,3894.621338,0,0,21
+206745,3901.515694,0,0,21
+206746,3885.985015,0,0,21
+206747,3643.328059,0,0,21
+206748,3877.302198,0,0,21
+206749,3610.318176,0,0,21
+206750,3619.050855,0,0,21
+206751,3610.318172,0,0,21
+206752,3577.026192,0,0,21
+206753,3472.625426,0,0,21
+206754,3454.993685,0,0,21
+206755,3454.993684,0,0,21
+206756,3300.944019,0,0,21
+206757,3437.102261,0,0,21
+206758,3292.034279,0,0,21
+206759,3160.024204,0,0,21
+206760,3283.052594,0,0,21
+206761,419.8366174,0,0,21
+206762,397.2187564,0,0,21
+206763,379.3273285,0,0,21
+206764,379.3273185,0,0,21
+206765,345.2334224,0,0,21
+206766,345.2334135,0,0,21
+206767,329.2840889,0,0,21
+206768,294.567615,0,0,21
+206769,300.9795071,0,0,21
+206770,268.8369188,0,0,21
+206771,258.8234557,0,0,21
+206772,258.8234496,0,0,21
+206773,226.3276856,0,0,21
+206774,242.6220647,0,0,21
+206775,226.3276764,0,0,21
+206776,209.9347299,0,0,21
+206777,209.934726,0,0,21
+206778,193.4368178,0,0,21
+206779,185.1462134,0,0,21
+206780,176.8264643,0,0,21
+206781,176.8264616,0,0,21
+206782,160.0948074,0,0,21
+206783,143.2311697,0,0,21
+206784,143.231168,0,0,21
+206785,143.2311662,0,0,21
+206786,109.0519329,0,0,21
+206787,126.2224057,0,0,21
+206788,91.69806522,0,0,21
+206789,109.05193,0,0,21
+206790,74.13117411,0,0,21
+206791,38.15887688,0,0,21
+206792,19.54816088,0,0,21
+206793,19.54816085,0,0,21
+206794,0,0,0,21
+206795,0,0,0,21
+206796,0,0,0,21
+206797,0,0,0,21
+206798,0,0,0,21
+206799,0,0,0,21
+206800,0,0,0,21
+206801,0,0,0,21
+206802,0,0,0,21
+206803,0,0,0,21
+206804,0,0,0,21
+206805,0,0,0,21
+206806,0,0,0,21
+206807,0,0,0,21
+206808,0,0,0,21
+206809,0,0,0,21
+206810,0,0,0,21
+206811,0,0,0,21
+206812,0,0,0,21
+206813,0,0,0,21
+206814,0,0,0,21
+206815,0,0,0,21
+206816,0,0,0,21
+206817,0,0,0,21
+206818,0,0,0,21
+206819,0,0,0,21
+206820,0,0,0,21
+206821,0,0,0,21
+206822,0,0,0,21
+206823,0,0,0,21
+206824,0,0,0,21
+206825,0,0,0,21
+206826,0,0,0,21
+206827,0,0,0,21
+206828,0,0,0,21
+206829,0,0,0,21
+206830,0,0,0,21
+206831,0,0,0,21
+206832,0,0,0,21
+206833,0,0,0,21
+206834,0,0,0,21
+206835,0,0,0,21
+206836,0,0,0,21
+206837,0,0,0,21
+206838,0,0,0,21
+206839,0,0,0,21
+206840,0,0,0,21
+206841,0,0,0,21
+206842,0,0,0,21
+206843,0,0,0,21
+206844,0,0,0,21
+206845,0,0,0,21
+206846,0,0,0,21
+206847,0,0,0,21
+206848,0,0,0,21
+206849,0,0,0,21
+206850,0,0,0,21
+206851,0,0,0,21
+206852,0,0,0,21
+206853,0,0,0,21
+206854,0,0,0,21
+206855,0,0,0,21
+206856,0,0,0,21
+206857,0,0,0,21
+206858,0,0,0,21
+206859,0,0,0,21
+206860,0,0,0,21
+206861,0,0,0,21
+206862,0,0,0,21
+206863,0,0,0,21
+206864,0,0,0,21
+206865,0,0,0,21
+206866,0,0,0,21
+206867,0,0,0,21
+206868,0,0,0,21
+206869,0,0,0,21
+206870,0,0,0,21
+206871,0,0,0,21
+206872,0,0,0,21
+206873,0,0,0,21
+206874,0,0,0,21
+206875,0,0,0,21
+206876,0,0,0,21
+206877,0,0,0,21
+206878,0,0,0,21
+206879,0,0,0,21
+206880,0,0,0,21
+206881,0,0,0,21
+206882,829.7480244,0,0,21
+206883,1136.232852,0,0,21
+206884,2001.136089,0,0,21
+206885,1376.628245,0,0,21
+206886,7133.611934,0,0,21
+206887,5884.332191,0,0,21
+206888,5808.89748,0,0,21
+206889,6526.500257,0,0,21
+206890,6713.198637,0,0,21
+206891,10306.42618,0,0,21
+206892,8847.278461,0,0,21
+206893,9983.438102,0,0,21
+206894,10134.88629,0,0,21
+206895,10634.1884,0,0,21
+206896,11131.27517,0,0,21
+206897,11285.1776,0,0,21
+206898,11877.40703,0,0,21
+206899,12037.14595,0,0,21
+206900,12519.37875,0,0,21
+206901,12782.62589,0,0,21
+206902,13273.89932,0,0,21
+206903,13398.29812,0,0,21
+206904,13892.83352,0,0,21
+206905,14132.68885,0,0,21
+206906,14514.17442,0,0,21
+206907,14759.96389,0,0,21
+206908,15226.5204,0,0,21
+206909,15490.37399,0,0,21
+206910,15720.14353,0,0,21
+206911,16095.75165,0,0,21
+206912,16457.04225,0,0,21
+206913,16684.93222,0,0,21
+206914,16950.03318,0,0,21
+206915,17415.03216,0,0,21
+206916,17654.1661,0,0,21
+206917,17904.10468,0,0,21
+206918,18129.28667,0,0,21
+206919,18607.49522,0,0,21
+206920,18738.9926,0,0,21
+206921,19196.61093,0,0,21
+206922,19319.4661,0,0,21
+206923,19581.37484,0,0,21
+206924,20123.18841,0,0,21
+206925,20048.55511,0,0,21
+206926,20717.70393,0,0,21
+206927,20635.40471,0,0,21
+206928,21193.40136,0,0,21
+206929,21309.56222,0,0,21
+206930,21572.08099,0,0,21
+206931,21890.05979,0,0,21
+206932,22138.67033,0,0,21
+206933,22356.45749,0,0,21
+206934,22936.32813,0,0,21
+206935,22825.61148,0,0,21
+206936,23182.85181,0,0,21
+206937,23606.55772,0,0,21
+206938,23657.28625,0,0,21
+206939,24087.89392,0,0,21
+206940,24197.38849,0,0,21
+206941,31474.6742,221.475234,0,21
+206942,31924.7511,926.7512168,0,21
+206943,32341.83639,6398.275499,0,21
+206944,32748.73612,3414.060721,0,21
+206945,32796.52477,4640.389862,0,21
+206946,33383.77871,4804.087022,0,21
+206947,33603.48308,5129.722439,0,21
+206948,33639.20471,5291.690456,0,21
+206949,34234.87992,5740.175826,0,21
+206950,34178.55708,5791.362881,0,21
+206951,34874.65777,6059.594769,0,21
+206952,34977.27747,6410.785833,0,21
+206953,35098.87313,6535.047438,0,21
+206954,35642.37623,6866.417965,0,21
+206955,35730.78701,7023.003721,0,21
+206956,36033.79755,7318.263757,0,21
+206957,36356.58275,7473.596936,0,21
+206958,36400.15929,7799.465974,0,21
+206959,36817.82239,7920.643452,0,21
+206960,37118.40635,8244.083836,0,21
+206961,37057.59243,8396.986929,0,21
+206962,37703.97536,8549.50482,0,21
+206963,37689.01052,8988.647157,0,21
+206964,38007.85849,8853.405284,0,21
+206965,38263.62347,9440.770683,0,21
+206966,38371.68635,9306.489648,0,21
+206967,38760.65729,9873.765938,0,21
+206968,38829.36645,9756.360369,0,21
+206969,39288.57938,10171.42556,0,21
+206970,39441.61742,10203.12696,0,21
+206971,39461.23266,10483.54063,0,21
+206972,39782.10064,10762.75821,0,21
+206973,40074.04395,10925.46235,0,21
+206974,40112.27581,11056.48467,0,21
+206975,40510.05222,11364.5255,0,21
+206976,40355.12516,11843.98273,0,21
+206977,40912.42782,11903.68573,0,21
+206978,40806.76908,12394.28129,0,21
+206979,41336.47217,12337.54709,0,21
+206980,41200.44481,12911.48036,0,21
+206981,41397.58244,12868.31214,0,21
+206982,41890.78344,13309.37438,0,21
+206983,41642.54051,13494.9439,0,21
+206984,42214.66241,13719.17636,0,21
+206985,42079.14184,13988.29298,0,21
+206986,42425.87817,14084.07508,0,21
+206987,42647.0052,14546.59058,0,21
+206988,42998.52042,14702.52973,0,21
+206989,42882.56554,14779.73294,0,21
+206990,43297.86843,15214.01255,0,21
+206991,43516.47393,15405.98204,0,21
+206992,43374.69369,15472.61628,0,21
+206993,43983.68048,16051.27323,0,21
+206994,43809.68839,15828.53319,0,21
+206995,44268.76363,16419.53575,0,21
+206996,44267.80698,16455.43737,0,21
+206997,44494.68765,16785.97274,0,21
+206998,44717.28282,17067.20796,0,21
+206999,44797.67996,17160.99525,0,21
+207000,44962.95545,20892.11723,0,21
+207001,45246.59529,438633.1942,0,21
+207002,45242.50018,21142.90532,0,21
+207003,45855.58925,21206.51587,0,21
+207004,45646.04256,22338.66806,0,21
+207005,46114.52909,22571.05324,0,21
+207006,46408.43757,23257.83846,0,21
+207007,46235.24041,23857.57337,0,21
+207008,47016.28177,24496.7081,0,21
+207009,46959.1484,24867.4695,0,21
+207010,47278.61723,25610.68232,0,21
+207011,47355.4076,26096.266,0,21
+207012,47802.80159,26377.98396,0,21
+207013,48020.74584,27205.25811,0,21
+207014,48067.9928,27582.40694,0,21
+207015,48183.77737,27986.686,0,21
+207016,48770.18943,28750.776,0,21
+207017,48782.78341,29081.01998,0,21
+207018,48900.63669,29509.68802,0,21
+207019,49075.52264,30040.42518,0,21
+207020,49498.95325,30483.75294,0,21
+207021,49550.21112,30970.06456,0,21
+207022,49811.32039,31699.40006,0,21
+207023,49844.0634,31785.5104,0,21
+207024,50279.12865,32435.07294,0,21
+207025,50478.30225,32861.1894,0,21
+207026,50416.15706,33595.27405,0,21
+207027,50810.31253,33656.46624,0,21
+207028,51006.84954,34399.50482,0,21
+207029,51305.3697,34877.34507,0,21
+207030,51298.988,35135.34313,0,21
+207031,51580.3344,36039.17226,0,21
+207032,51869.94393,36101.42804,0,21
+207033,52260.20215,36694.76435,0,21
+207034,52145.25278,37454.4405,0,21
+207035,52419.26473,37567.50132,0,21
+207036,52816.7688,38211.25948,0,21
+207037,52895.32677,38799.68933,0,21
+207038,53118.86395,39092.25127,0,21
+207039,53376.86232,39621.54551,0,21
+207040,53640.72545,40313.36654,0,21
+207041,53622.62844,40609.21546,0,21
+207042,54109.43369,41262.50992,0,21
+207043,54165.13837,41414.12618,0,21
+207044,54378.60655,42287.59589,0,21
+207045,54633.46928,42460.19601,0,21
+207046,54887.89853,43014.44008,0,21
+207047,54938.88149,43580.0219,0,21
+207048,55335.29047,43873.58972,0,21
+207049,55406.58491,44581.10517,0,21
+207050,55650.14373,44963.60591,0,21
+207051,55902.11475,45445.20986,0,21
+207052,55928.13966,45879.16479,0,21
+207053,56355.57266,46337.5018,0,21
+207054,56423.02842,46889.73887,0,21
+207055,56656.71767,47259.63131,0,21
+207056,56865.13288,47688.94767,0,21
+207057,57138.56433,48348.67803,0,21
+207058,57180.65256,48834.21312,0,21
+207059,57569.85341,49252.83818,0,21
+207060,58035.83801,49681.08309,0,21
+207061,59252.95576,51761.65497,0,21
+207062,60031.481,52387.13641,0,21
+207063,60162.59286,52758.50016,0,21
+207064,60193.61793,53188.54743,0,21
+207065,60949.49339,53862.95319,0,21
+207066,60893.57515,54149.76139,0,21
+207067,61287.02897,54518.92559,0,21
+207068,61499.60828,55274.60128,0,21
+207069,61644.34336,55529.09324,0,21
+207070,62182.59799,56085.81755,0,21
+207071,62235.59588,56482.75361,0,21
+207072,62697.70828,57096.62948,0,21
+207073,62719.46622,57371.02998,0,21
+207074,62611.80713,58025.83078,0,21
+207075,63179.12395,58482.79755,0,21
+207076,63087.31808,58783.64212,0,21
+207077,64861.05967,59538.85107,0,21
+207078,65282.26854,59675.48263,0,21
+207079,65630.88129,60245.85139,0,21
+207080,65842.29878,60679.75578,0,21
+207081,66725.63041,61179.58072,0,21
+207082,66834.13342,61427.13603,0,21
+207083,67627.55956,62115.75517,0,21
+207084,67532.51035,62616.22014,0,21
+207085,68599.60967,62664.61642,0,21
+207086,68535.3056,63317.66499,0,21
+207087,69028.8521,63784.78267,0,21
+207088,69706.09418,64265.93111,0,21
+207089,69801.67893,64724.5544,0,21
+207090,70485.09759,65472.06033,0,21
+207091,70776.41218,66053.34218,0,21
+207092,70882.93128,66612.31062,0,21
+207093,71739.8221,66808.30953,0,21
+207094,72122.51768,67222.33509,0,21
+207095,72634.09347,67765.95715,0,21
+207096,72965.48552,68095.84441,0,21
+207097,73456.36228,68331.70255,0,21
+207098,73869.66599,68857.43624,0,21
+207099,73771.66707,69519.57788,0,21
+207100,74687.2849,69279.08988,0,21
+207101,74543.14451,70088.73887,0,21
+207102,75147.10724,70393.31116,0,21
+207103,75319.49781,70689.33956,0,21
+207104,75420.45099,71161.0516,0,21
+207105,76273.19317,71265.66885,0,21
+207106,76049.23152,71761.82815,0,21
+207107,76690.72616,72255.97841,0,21
+207108,76740.55548,75196.16565,0,21
+207109,78272.33811,75170.56453,0,21
+207110,78711.58638,75546.2948,0,21
+207111,78885.70161,76909.29406,0,21
+207112,79495.9308,77484.19405,0,21
+207113,79985.19816,78003.78044,0,21
+207114,80119.68358,78838.76605,0,21
+207115,80878.53059,79530.87202,0,21
+207116,81044.54505,80026.85499,0,21
+207117,81642.62368,81051.36,0,21
+207118,81757.31256,81200.14426,0,21
+207119,82496.8136,82387.4987,0,21
+207120,83289.80068,82666.5395,0,21
+207121,83544.071,83640.49501,0,21
+207122,84099.69784,84194.52682,0,21
+207123,84120.64365,85278.20167,0,21
+207124,84719.94741,85749.59536,0,21
+207125,85082.605,86824.57458,0,21
+207126,85461.04208,87291.76674,0,21
+207127,85600.43981,88054.19301,0,21
+207128,86091.72741,88945.82447,0,21
+207129,86516.3592,89851.33028,136.4829864,21
+207130,86632.10449,89925.80615,87.04197898,21
+207131,87083.15854,91433.14667,120.1379187,21
+207132,87473.80105,91704.353,136.4841016,21
+207133,87728.63871,92685.2099,160.7897002,21
+207134,88255.34744,93071.93082,168.8402181,21
+207135,88041.57911,94090.59468,184.869282,21
+207136,89085.33975,94950.64322,759.522885,21
+207137,88908.2472,94949.59076,927.6298106,21
+207138,89309.86208,96335.86852,1055.149127,21
+207139,89935.81747,96636.72717,1283.715893,21
+207140,89702.42196,97682.32908,1194.819252,21
+207141,90452.14066,98066.48359,1631.816566,21
+207142,90568.46394,99040.11693,1512.095209,21
+207143,91215.28652,99756.42848,1665.029793,21
+207144,90907.40045,100311.5976,1840.626204,21
+207145,91656.87936,100980.9581,1984.547842,21
+207146,91901.24621,101747.5336,2158.301194,21
+207147,91825.07924,102573.0527,2166.474078,21
+207148,92742.12343,102965.5626,2324.090622,21
+207149,92714.58049,103571.9509,2347.399494,21
+207150,93010.43463,104452.2755,2645.118203,21
+207151,93337.0782,104888.678,2644.501076,21
+207152,93571.84895,105826.7722,2808.7148,21
+207153,94190.86479,105950.6987,2955.041489,21
+207154,93825.27823,107223.0377,2986.666937,21
+207155,94759.14388,110016.3055,3125.332268,21
+207156,94788.08831,109070.7977,3279.122878,21
+207157,95009.70047,110814.9596,3309.815015,21
+207158,95330.68304,111315.159,3463.003262,21
+207159,95749.26615,112156.8678,3707.179651,21
+207160,95871.8354,112898.8815,3524.00855,21
+207161,96106.8165,113943.2314,3889.581466,21
+207162,96402.10222,114813.1253,3920.022384,21
+207163,96880.5319,115183.6736,4063.707901,21
+207164,97097.05668,116250.0555,4087.010095,21
+207165,97056.44502,116964.288,4237.296414,21
+207166,97711.77839,117592.6155,4373.193266,21
+207167,97842.92416,118784.2883,4403.411719,21
+207168,98177.43548,119184.0607,4553.472721,21
+207169,98175.29752,119745.1502,4673.555837,21
+207170,98642.97177,120937.5425,4718.183554,21
+207171,98811.22866,121474.052,4853.029298,21
+207172,99338.79039,122075.9961,5002.006915,21
+207173,99412.64788,123183.4491,5017.051659,21
+207174,99520.75672,123405.1443,5166.199091,21
+207175,100039.823,124927.4887,5299.04561,21
+207176,100040.3609,124712.8908,5336.977016,21
+207177,100625.5744,126175.1364,5448.312293,21
+207178,100651.1055,126445.8702,5625.14492,21
+207179,100898.9793,127654.5399,5625.395744,21
+207180,101197.9505,127978.6578,5641.483574,21
+207181,0,0,0,21
+207182,0,227.2580767,0,21
+207183,0,0,0,21
+207184,0,0,0,21
+207185,0,0,748576.0912,21
+207186,340407.7826,368553.0381,0,21
+207187,0,0,0,21
+207188,0,0,0,21
+207189,0,434580.1331,0,21
+207190,0,0,0,21
+207191,0,0,0,21
+207192,0,0,0,21
+207193,0,0,0,21
+207194,0,0,0,21
+207195,0,0,0,21
+207196,0,0,0,21
+207197,0,0,0,21
+207198,0,0,0,21
+207199,0,0,0,21
+207200,0,0,0,21
+207201,0,0,0,21
+207202,0,0,0,21
+207203,0,0,0,21
+207204,0,0,0,21
+207205,0,0,0,21
+207206,0,0,0,21
+207207,0,0,0,21
+207208,0,0,0,21
+207209,0,0,0,21
+207210,0,0,0,21
+207211,0,0,0,21
+207212,0,0,0,21
+207213,0,0,0,21
+207214,0,0,0,21
+207215,0,434255.9902,0,21
+207216,0,0,0,21
+207217,0,0,0,21
+207218,0,0,0,21
+207219,0,0,742961.322,21
+207220,0,0,0,21
+207221,0,368552.0612,0,21
+207222,340407.5382,0,0,21
+207223,0,0,0,21
+207224,0,0,0,21
+207225,0,0,0,21
+207226,0,0,0,21
+207227,0,0,0,21
+207228,0,0,0,21
+207229,0,0,0,21
+207230,0,0,0,21
+207231,0,0,0,21
+207232,0,0,0,21
+207233,0,0,0,21
+207234,0,0,0,21
+207235,0,0,0,21
+207236,0,0,0,21
+207237,0,0,0,21
+207238,0,0,0,21
+207239,0,0,0,21
+207240,0,0,0,15.6
+207241,0,0,0,15.6
+207242,0,0,0,15.6
+207243,0,0,0,15.6
+207244,0,0,0,15.6
+207245,0,0,0,15.6
+207246,0,0,0,15.6
+207247,0,0,0,15.6
+207248,0,0,0,15.6
+207249,0,0,0,15.6
+207250,0,4.09817097,0,15.6
+207251,0,0,0,15.6
+207252,0,129.4253363,0,15.6
+207253,0,0,0,15.6
+207254,0,0,735287.9941,15.6
+207255,0,0,0,15.6
+207256,0,368552.0487,0,15.6
+207257,0,344.3377671,0,15.6
+207258,340409.9346,0,0,15.6
+207259,0,0,0,15.6
+207260,0,0,0,15.6
+207261,0,0,0,15.6
+207262,0,0,0,15.6
+207263,0,0,0,15.6
+207264,0,0,0,15.6
+207265,0,0,0,15.6
+207266,0,0,0,15.6
+207267,0,0,0,15.6
+207268,0,0,0,15.6
+207269,0,0,0,15.6
+207270,0,0,0,15.6
+207271,0,65.64311525,0,15.6
+207272,0,0,0,15.6
+207273,0,0,0,15.6
+207274,0,0,0,15.6
+207275,0,85.44599695,0,15.6
+207276,0,0,0,15.6
+207277,0,0,0,15.6
+207278,0,0,0,15.6
+207279,0,85.03847853,0,15.6
+207280,0,0,0,15.6
+207281,0,0,0,15.6
+207282,0,0,0,15.6
+207283,0,86.94737533,0,15.6
+207284,0,0,0,15.6
+207285,0,0,0,15.6
+207286,0,0,0,15.6
+207287,0,97.66748126,0,15.6
+207288,0,0,0,15.6
+207289,0,0,730383.5793,15.6
+207290,0,0,0,15.6
+207291,0,368633.1764,0,15.6
+207292,0,0,0,15.6
+207293,0,0,0,15.6
+207294,340412.3682,0,0,15.6
+207295,0,83.78429542,0,15.6
+207296,0,0,0,15.6
+207297,0,0,0,15.6
+207298,0,0,0,15.6
+207299,0,76.94818785,0,15.6
+207300,0,0,0,15.6
+207301,0,0,0,15.6
+207302,0,0,0,15.6
+207303,0,83.40272064,0,15.6
+207304,0,0,0,15.6
+207305,0,0,0,15.6
+207306,0,0,0,15.6
+207307,0,82.48719906,0,15.6
+207308,0,0,0,15.6
+207309,0,0,0,15.6
+207310,0,0,0,15.6
+207311,0,80.24113794,0,15.6
+207312,0,0,0,15.6
+207313,0,0,0,15.6
+207314,0,0,0,15.6
+207315,0,78.10127666,0,15.6
+207316,0,0,0,15.6
+207317,0,0,0,15.6
+207318,0,0,0,15.6
+207319,0,76.45195275,0,15.6
+207320,0,0,0,15.6
+207321,0,0,0,15.6
+207322,0,0,0,15.6
+207323,0,76.94116839,0,15.6
+207324,0,0,723994.2073,15.6
+207325,0,0,0,15.6
+207326,0,368550.7843,0,15.6
+207327,0,77.02122754,0,15.6
+207328,0,0,0,15.6
+207329,0,0,0,15.6
+207330,340382.2503,0,0,15.6
+207331,0,70.3064051,0,15.6
+207332,0,0,0,15.6
+207333,0,0,0,15.6
+207334,0,0,0,15.6
+207335,0,74.01088541,0,15.6
+207336,0,0,0,15.6
+207337,0,0,0,15.6
+207338,0,0,0,15.6
+207339,0,82.36267656,0,15.6
+207340,0,0,0,15.6
+207341,0,0,0,15.6
+207342,0,0,0,15.6
+207343,0,85.65851769,0,15.6
+207344,0,0,0,15.6
+207345,0,0,0,15.6
+207346,0,0,0,15.6
+207347,0,87.28171089,0,15.6
+207348,0,0,0,15.6
+207349,0,0,0,15.6
+207350,0,0,0,15.6
+207351,0,86.86757226,0,15.6
+207352,0,0,0,15.6
+207353,0,0,0,15.6
+207354,0,0,0,15.6
+207355,0,84.88403947,0,15.6
+207356,0,0,0,15.6
+207357,0,0,0,15.6
+207358,0,0,0,15.6
+207359,0,82.12245832,720446.0582,15.6
+207360,0,0,0,15.6
+207361,0,368549.9881,0,15.6
+207362,0,0,0,15.6
+207363,0,76.04654406,0,15.6
+207364,0,0,0,15.6
+207365,0,0,0,15.6
+207366,340347.2728,0,0,15.6
+207367,0,64.58415368,0,15.6
+207368,0,0,0,15.6
+207369,0,0,0,15.6
+207370,0,0,0,15.6
+207371,0,67.66224529,0,15.6
+207372,0,0,0,15.6
+207373,0,0,0,15.6
+207374,0,0,0,15.6
+207375,0,71.12203512,0,15.6
+207376,0,0,0,15.6
+207377,0,0,0,15.6
+207378,0,0,0,15.6
+207379,0,73.56082089,0,15.6
+207380,0,0,0,15.6
+207381,0,0,0,15.6
+207382,0,0,0,15.6
+207383,0,75.68673276,0,15.6
+207384,0,0,0,15.6
+207385,0,0,0,15.6
+207386,0,0,0,15.6
+207387,0,77.7822228,0,15.6
+207388,0,0,0,15.6
+207389,0,0,0,15.6
+207390,0,0,0,15.6
+207391,0,79.7287104,0,15.6
+207392,0,0,0,15.6
+207393,0,0,0,15.6
+207394,0,0,715174.4754,15.6
+207395,0,81.62689439,0,15.6
+207396,0,368547.5484,0,15.6
+207397,0,0,0,15.6
+207398,0,0,0,15.6
+207399,0,78.77980866,0,15.6
+207400,0,0,0,15.6
+207401,0,0,0,15.6
+207402,340320.6206,0,0,15.6
+207403,0,72.45864257,0,15.6
+207404,0,0,0,15.6
+207405,0,0,0,15.6
+207406,0,0,0,15.6
+207407,0,78.83035943,0,15.6
+207408,0,0,0,15.6
+207409,0,0,0,15.6
+207410,0,0,0,15.6
+207411,0,80.61615077,0,15.6
+207412,0,0,0,15.6
+207413,0,0,0,15.6
+207414,0,0,0,15.6
+207415,0,79.29369914,0,15.6
+207416,0,0,0,15.6
+207417,0,0,0,15.6
+207418,0,0,0,15.6
+207419,0,77.09286505,0,15.6
+207420,0,0,0,15.6
+207421,0,0,0,15.6
+207422,0,0,0,15.6
+207423,0,74.30143732,0,15.6
+207424,0,0,0,15.6
+207425,0,0,0,15.6
+207426,0,0,0,15.6
+207427,0,71.83148358,0,15.6
+207428,0,0,0,15.6
+207429,0,0,711176.116,15.6
+207430,0,0,0,15.6
+207431,0,368605.4648,0,15.6
+207432,0,0,0,15.6
+207433,0,0,0,15.6
+207434,0,0,0,15.6
+207435,0,0,0,15.6
+207436,0,359.6936359,0,15.6
+207437,0,0,0,15.6
+207438,0,0,0,15.6
+207439,340307.5139,0,0,15.6
+207440,0,0,0,15.6
+207441,0,0,0,15.6
+207442,0,0,0,15.6
+207443,0,0,0,15.6
+207444,0,0,0,15.6
+207445,0,0,0,15.6
+207446,0,0,0,15.6
+207447,0,0,0,15.6
+207448,0,0,0,15.6
+207449,0,0,0,15.6
+207450,0,65.25848302,0,15.6
+207451,0,0,0,15.6
+207452,0,0,0,15.6
+207453,0,0,0,15.6
+207454,0,81.76441436,0,15.6
+207455,0,0,0,15.6
+207456,0,0,0,15.6
+207457,0,0,0,15.6
+207458,0,81.5707207,0,15.6
+207459,0,0,0,15.6
+207460,0,0,0,15.6
+207461,0,0,0,15.6
+207462,0,81.87489,0,15.6
+207463,0,0,0,15.6
+207464,0,0,707320.3566,15.6
+207465,0,0,0,15.6
+207466,0,79.96186559,0,15.6
+207467,0,368505.6613,0,15.6
+207468,0,0,0,15.6
+207469,0,0,0,15.6
+207470,0,73.35590606,0,15.6
+207471,0,0,0,15.6
+207472,0,0,0,15.6
+207473,0,0,0,15.6
+207474,0,0,0,15.6
+207475,0,363.298346,0,15.6
+207476,340307.5139,0,0,15.6
+207477,0,0,0,15.6
+207478,0,0,0,15.6
+207479,0,0,0,15.6
+207480,0,0,0,15.6
+207481,0,0,0,15.6
+207482,0,0,0,15.6
+207483,0,0,0,15.6
+207484,0,0,0,15.6
+207485,0,0,0,15.6
+207486,0,0,0,15.6
+207487,0,7.386336422,0,15.6
+207488,0,0,0,15.6
+207489,0,129.3016079,0,15.6
+207490,0,0,0,15.6
+207491,0,0,0,15.6
+207492,0,0,0,15.6
+207493,0,0,0,15.6
+207494,0,62.43941107,0,15.6
+207495,0,0,0,15.6
+207496,0,0,0,15.6
+207497,0,0,0,15.6
+207498,0,0,0,15.6
+207499,0,0,702935.9249,15.6
+207500,0,0,0,15.6
+207501,0,0,0,15.6
+207502,0,0,0,15.6
+207503,0,368478.0387,0,15.6
+207504,0,0,0,15.6
+207505,0,343.6340554,0,15.6
+207506,0,0,0,15.6
+207507,0,0,0,15.6
+207508,0,0,0,15.6
+207509,0,0,0,15.6
+207510,0,0,0,15.6
+207511,0,0,0,15.6
+207512,0,0,0,15.6
+207513,340306.7842,0,0,15.6
+207514,0,0,0,15.6
+207515,0,0,0,15.6
+207516,0,0,0,15.6
+207517,0,0,0,15.6
+207518,0,0,0,15.6
+207519,0,66.24118214,0,15.6
+207520,0,0,0,15.6
+207521,0,0,0,15.6
+207522,0,0,0,15.6
+207523,0,81.07087609,0,15.6
+207524,0,0,0,15.6
+207525,0,0,0,15.6
+207526,0,0,0,15.6
+207527,0,78.18110298,0,15.6
+207528,0,0,0,15.6
+207529,0,0,0,15.6
+207530,0,0,0,15.6
+207531,0,76.44408531,0,15.6
+207532,0,0,0,15.6
+207533,0,0,0,15.6
+207534,0,0,700428.1919,15.6
+207535,0,73.99808309,0,15.6
+207536,0,0,0,15.6
+207537,0,0,0,15.6
+207538,0,0,0,15.6
+207539,0,368522.1835,0,15.6
+207540,0,0,0,15.6
+207541,0,0,0,15.6
+207542,0,0,0,15.6
+207543,0,0,0,15.6
+207544,0,345.9949394,0,15.6
+207545,0,0,0,15.6
+207546,0,0,0,15.6
+207547,0,0,0,15.6
+207548,0,0,0,15.6
+207549,0,0,0,15.6
+207550,340313.9079,0,0,15.6
+207551,0,0,0,15.6
+207552,0,0,0,15.6
+207553,0,0,0,15.6
+207554,0,0,0,15.6
+207555,0,0,0,15.6
+207556,0,3.630483089,0,15.6
+207557,0,0,0,15.6
+207558,0,119.2933092,0,15.6
+207559,0,0,0,15.6
+207560,0,0,0,15.6
+207561,0,0,0,15.6
+207562,0,0,0,15.6
+207563,0,66.62322805,0,15.6
+207564,0,0,0,15.6
+207565,0,0,0,15.6
+207566,0,0,0,15.6
+207567,0,0,0,15.6
+207568,0,0,695887.8845,15.6
+207569,0,0,0,15.6
+207570,0,0,0,15.6
+207571,0,0,0,15.6
+207572,0,0,0,15.6
+207573,0,0,0,15.6
+207574,0,365.9752328,0,15.6
+207575,0,368431.0774,0,15.6
+207576,0,0,0,15.6
+207577,0,0,0,15.6
+207578,0,0,0,15.6
+207579,0,0,0,15.6
+207580,0,0,0,15.6
+207581,0,0,0,15.6
+207582,0,0,0,15.6
+207583,0,0,0,15.6
+207584,0,0,0,15.6
+207585,340340.5883,0,0,15.6
+207586,0,7.803304375,0,15.6
+207587,0,0,0,15.6
+207588,0,16.85232998,0,15.6
+207589,0,0,0,15.6
+207590,0,0,0,15.6
+207591,0,0,0,15.6
+207592,0,66.05529156,0,15.6
+207593,0,0,0,15.6
+207594,0,0,0,15.6
+207595,0,0,0,15.6
+207596,0,71.08958758,0,15.6
+207597,0,0,0,15.6
+207598,0,0,0,15.6
+207599,0,0,0,15.6
+207600,0,68.00253714,0,17.8
+207601,0,114412.7199,0,17.8
+207602,0,71135.17212,693720.6197,17.8
+207603,0,3426.875913,0,17.8
+207604,0,37078.6369,0,17.8
+207605,0,36359.51428,0,17.8
+207606,0,31032.67625,0,17.8
+207607,0,32717.37889,0,17.8
+207608,0,36419.22425,0,17.8
+207609,0,401653.8171,0,17.8
+207610,0,34013.52127,0,17.8
+207611,0,33846.72979,0,17.8
+207612,0,33606.76891,0,17.8
+207613,0,33464.18478,0,17.8
+207614,0,33276.9115,0,17.8
+207615,0,33607.33819,0,17.8
+207616,0,33417.12177,0,17.8
+207617,0,33180.2971,0,17.8
+207618,0,33087.84767,0,17.8
+207619,0,32949.63446,0,17.8
+207620,340338.5356,32711.19619,0,17.8
+207621,0,32695.31637,0,17.8
+207622,0,32395.03113,0,17.8
+207623,700.7672434,32410.6319,0,17.8
+207624,685.7386069,271493.7262,0,17.8
+207625,571.3240764,73814.0877,0,17.8
+207626,663.0991498,173375.6099,0,17.8
+207627,685.7385108,167168.0957,0,17.8
+207628,685.7384789,172737.8231,0,17.8
+207629,715.7451515,161843.6956,0,17.8
+207630,715.7460998,165068.5208,0,17.8
+207631,730.6743599,136048.7412,0,17.8
+207632,745.5536876,136101.9035,0,17.8
+207633,745.5535047,135212.6525,0,17.8
+207634,775.1684556,194296.6958,0,17.8
+207635,760.3844444,135739.2686,0,17.8
+207636,789.9050858,160352.6415,692284.6419,17.8
+207637,789.904892,155123.9287,0,17.8
+207638,804.5955498,153934.4076,0,17.8
+207639,804.5953533,153417.7558,0,17.8
+207640,819.2404777,152465.8053,0,17.8
+207641,833.8412946,151217.5586,0,17.8
+207642,826.5464656,151250.0704,0,17.8
+207643,0,518878.1319,0,17.8
+207644,0,149008.6893,0,17.8
+207645,0,148851.5091,0,17.8
+207646,0,147817.8462,0,17.8
+207647,0,147022.8625,0,17.8
+207648,0,146616.7174,0,17.8
+207649,0,145557.8274,0,17.8
+207650,0,144845.2543,0,17.8
+207651,0,144534.4039,0,17.8
+207652,0,143318.8583,0,17.8
+207653,0,143011.4069,0,17.8
+207654,0,24854.18357,0,17.8
+207655,361771.1941,24990.99271,0,17.8
+207656,39538.61018,24679.44436,0,17.8
+207657,36733.62912,24576.97422,0,17.8
+207658,34654.95854,24480.25985,0,17.8
+207659,37031.14199,24456.58077,0,17.8
+207660,37489.39177,24263.57224,0,20
+207661,910474.1609,900436.6098,558272.5239,20
+207662,11666.60486,26762.31876,0,20
+207663,26530.28088,66493.94993,0,20
+207664,221461.3033,273871.9625,0,20
+207665,150300.9509,182158.3139,37696.78519,20
+207666,146840.9649,185113.4937,53460.00329,20
+207667,151320.9626,186182.9985,29225.90911,20
+207668,151822.361,185300.966,37984.01106,20
+207669,152317.2734,184536.1627,38070.83311,20
+207670,152132.1444,183099.7571,38556.93071,20
+207671,152165.7707,182055.1441,38244.97202,20
+207672,152001.7084,181269.8981,38840.78856,20
+207673,151904.6261,180041.4672,40160.32821,20
+207674,152037.0921,178945.7931,40305.62184,20
+207675,152058.9242,177849.16,40198.60001,20
+207676,151836.7345,176881.7355,40861.04526,20
+207677,152009.971,176141.2736,40839.76275,20
+207678,152050.9553,175110.6535,41108.80854,20
+207679,151959.663,174177.0904,41503.78486,20
+207680,152186.8198,173309.8597,41435.24038,20
+207681,151622.1122,172230.7656,42036.58797,20
+207682,152449.8664,171908.9829,41881.67606,20
+207683,152150.3911,170442.8157,42411.81405,20
+207684,152169.5969,170624.9218,42271.48991,20
+207685,152212.0449,168520.6683,42849.05088,20
+207686,152362.7201,168898.7632,42931.38582,20
+207687,152067.7424,167081.5686,43141.90269,20
+207688,152596.2008,167014.018,43566.79794,20
+207689,153399.3314,166125.7397,43323.91839,20
+207690,154608.159,165894.1604,43939.35705,20
+207691,154126.1965,165601.8579,44058.83187,20
+207692,154457.0861,165430.7646,44405.41536,20
+207693,154411.3727,164998.344,44346.6762,20
+207694,154729.9468,164882.1837,44748.93426,20
+207695,154683.3438,164705.2138,46424.49635,20
+207696,155017.2948,164510.4487,44463.79277,20
+207697,154692.1198,163949.0966,44808.04013,20
+207698,155482.5321,164167.6406,44727.64718,20
+207699,154806.8648,163603.3852,45365.98111,20
+207700,155416.7534,163245.2325,45222.32651,20
+207701,155191.3831,163706.2776,45264.83423,20
+207702,155702.7811,162803.2595,45697.19466,20
+207703,155519.1258,162979.2507,42738.23415,20
+207704,155349.5027,162486.5083,42552.01453,20
+207705,155842.0349,162575.0222,42315.97567,20
+207706,155690.0487,162143.8819,42447.22425,20
+207707,155872.9858,162174.8352,42525.00303,20
+207708,156014.0166,161805.5748,42176.78569,20
+207709,155749.8964,161631.0376,42444.14411,20
+207710,156052.6235,161380.9775,42307.97567,20
+207711,155979.1371,161143.1674,42341.29708,20
+207712,156231.8104,160616.9894,42432.4998,20
+207713,155797.2251,160071.9043,42241.19682,20
+207714,156595.7903,160077.4539,42550.8284,20
+207715,155834.4218,159836.8287,42174.8329,20
+207716,156649.504,159434.3157,42472.18168,20
+207717,156262.9003,159639.119,42257.58483,20
+207718,156237.2893,159048.8663,42480.31267,20
+207719,156351.4637,159092.2542,42196.78512,20
+207720,156463.8013,159106.1013,42565.56154,21
+207721,145868.9314,149506.3578,37192.65093,21
+207722,144548.2384,148593.0766,36689.10454,21
+207723,144523.7989,561336.3513,36517.48072,21
+207724,144354.4876,147827.5473,36438.64541,21
+207725,144141.9942,147876.4188,36539.96913,21
+207726,143833.87,147456.0921,36060.37742,21
+207727,144190.4298,147298.9678,36389.90973,21
+207728,143653.1791,147329.6748,36002.41563,21
+207729,143541.0947,146669.0416,36031.36146,21
+207730,143946.9992,146611.5702,36034.71854,21
+207731,143128.532,146731.2024,35854.55455,21
+207732,143750.7352,145873.1446,35872.70193,21
+207733,143269.2256,146348.7485,35708.94933,21
+207734,143099.5944,145936.9577,35812.20711,21
+207735,143360.0961,145371.0236,35519.79494,21
+207736,143122.4576,145669.9135,35539.34048,21
+207737,143165.3238,145253.546,35362.67192,21
+207738,142875.5939,144950.1488,35686.32324,21
+207739,142834.2871,144753.2028,35182.51418,21
+207740,142951.0098,144689.6987,35183.73387,21
+207741,142717.4578,144162.9373,35236.93391,21
+207742,142796.0205,144127.838,35201.73571,21
+207743,142705.7837,143725.5381,34836.3844,21
+207744,142502.7201,144002.175,35030.36689,21
+207745,142549.0758,142906.3635,34864.54719,21
+207746,142331.0028,143377.7828,34641.63555,21
+207747,142556.5425,142855.7538,34758.25388,21
+207748,142166.193,142532.0864,34572.442,21
+207749,142561.6125,142587.6393,34475.01591,21
+207750,141909.6459,141848.8265,34463.28552,21
+207751,142135.5462,141944.1843,34288.84354,21
+207752,141286.48,141837.8182,34055.02697,21
+207753,141268.145,141052.7071,34273.51204,21
+207754,140261.885,141405.8167,33649.10658,21
+207755,140403.9309,140760.1556,33836.90544,21
+207756,139432.4769,140901.5588,33620.36174,21
+207757,139248.1264,140383.5643,33415.20839,21
+207758,138712.4536,140032.4435,33410.16046,21
+207759,138189.4788,140159.4781,32973.54645,21
+207760,137273.1571,139432.0004,33286.10442,21
+207761,137244.0149,139821.4028,32651.66614,21
+207762,136470.8222,138853.4984,32938.7945,21
+207763,136051.3597,139096.4402,32436.99334,21
+207764,135663.5185,138853.9555,32483.06417,21
+207765,133875.627,138327.8475,32293.20276,21
+207766,133168.6802,138296.5063,32082.94046,21
+207767,132915.2031,138170.066,32027.90116,21
+207768,131850.2243,137732.1574,31851.16164,21
+207769,131632.265,137677.6771,31769.34622,21
+207770,130421.8751,137126.9977,31411.43765,21
+207771,130215.8088,137060.9699,31452.50219,21
+207772,129290.012,136751.7609,31335.12152,21
+207773,128797.8732,136710.7081,30797.04007,21
+207774,127813.2294,136563.0215,31076.26848,21
+207775,127672.8098,135961.7321,30633.19381,21
+207776,126595.2065,136075.9601,30541.18934,21
+207777,125800.4939,135706.7175,30466.99275,21
+207778,125316.7689,135621.5982,30090.8462,21
+207779,124605.3481,135216.52,30116.31796,21
+207780,123680.7582,135195.2741,30176.3849,21
+207781,52408.38098,80014.68732,886.3324057,21
+207782,48693.66397,77658.12892,695.3344446,21
+207783,46860.30886,76443.75193,628.189063,21
+207784,45933.62955,75591.77464,553.0594558,21
+207785,44681.72202,75210.83303,526.2785515,21
+207786,44196.90073,74505.96747,440.9450774,21
+207787,43112.92249,73719.71535,406.0552607,21
+207788,42387.26113,72594.53043,370.8415015,21
+207789,41492.6443,71859.40116,308.7920912,21
+207790,40851.42205,71104.0128,298.7154925,21
+207791,39667.78954,70920.16972,248.3971128,21
+207792,39201.84914,69719.27907,248.3983032,21
+207793,37959.79987,69168.96397,222.9954134,21
+207794,37451.33199,68341.86497,197.4098398,21
+207795,36624.61708,68185.43338,180.2421725,21
+207796,35661.78357,67280.63676,162.977564,21
+207797,34868.42996,66962.54618,145.6075082,21
+207798,34072.49307,65992.85601,128.1216513,21
+207799,33253.26835,65916.82817,92.74501672,21
+207800,32271.37318,65255.13653,92.7451788,21
+207801,31737.55353,64431.66948,56.67728411,21
+207802,30641.34741,64175.7212,56.6773399,21
+207803,30000.59047,63544.172,19.5150545,21
+207804,28999.38251,63243.94849,0,21
+207805,28421.13235,62452.11022,0,21
+207806,27335.0507,62176.29755,0,21
+207807,26731.07412,61300.83759,0,21
+207808,25722.53922,61265.83322,0,21
+207809,24922.38124,60386.92901,0,21
+207810,24211.91973,59944.87041,0,21
+207811,23683.45803,59285.96026,0,21
+207812,23248.56458,58566.29783,0,21
+207813,22951.41959,58088.56863,0,21
+207814,22542.40564,57139.86027,0,21
+207815,21998.77628,56729.02249,0,21
+207816,21936.44507,55849.79218,0,21
+207817,21406.96759,55159.7457,0,21
+207818,21244.48259,54690.91624,0,21
+207819,20896.53354,53987.35795,0,21
+207820,20543.02962,53151.39538,0,21
+207821,20309.35625,52490.17286,0,21
+207822,19960.97958,51891.91726,0,21
+207823,19944.71448,51183.95826,0,21
+207824,19499.53563,50658.22771,0,21
+207825,19244.95152,49615.97468,0,21
+207826,19345.36068,49954.39674,0,21
+207827,18600.8136,49469.57077,0,21
+207828,18985.63243,48585.03404,0,21
+207829,18353.35957,48503.51103,0,21
+207830,18174.11302,47308.64304,0,21
+207831,18246.61057,47385.97526,0,21
+207832,17823.39716,46232.99585,0,21
+207833,17800.8798,45937.56898,0,21
+207834,17469.04762,45392.4228,0,21
+207835,17345.14327,44588.2425,0,21
+207836,17279.4381,44324.22184,0,21
+207837,16950.77025,43703.71754,0,21
+207838,16958.80518,42852.24633,0,21
+207839,16747.35394,42574.83458,0,21
+207840,16518.83149,41940.79784,0,21
+207841,16530.07821,41198.72717,0,21
+207842,16310.73709,40893.55939,0,21
+207843,16077.76468,40284.82941,0,21
+207844,16324.53173,39314.69951,0,21
+207845,15749.97618,39412.63374,0,21
+207846,15787.21443,38272.8762,0,21
+207847,15916.16839,38058.49169,0,21
+207848,15399.25617,37271.20016,0,21
+207849,15656.62107,36622.69577,0,21
+207850,15280.99681,36308.62223,0,21
+207851,15432.09429,35698.0517,0,21
+207852,15148.45702,34898.99487,0,21
+207853,15895.01011,34375.88524,0,21
+207854,15645.92717,33868.43249,0,21
+207855,15991.71184,33166.29839,0,21
+207856,15784.7318,32747.05179,0,21
+207857,15656.62327,31944.44223,0,21
+207858,15766.89514,31452.50498,0,21
+207859,15562.04024,30901.64029,0,21
+207860,15575.6713,30253.17955,0,21
+207861,15502.43974,29701.76576,0,21
+207862,15479.01125,29068.33712,0,21
+207863,15441.73224,28476.85404,0,21
+207864,15404.24817,27847.2598,0,21
+207865,15258.59924,27297.98837,0,21
+207866,15339.8067,26885.70446,0,21
+207867,15183.29382,26470.49337,0,21
+207868,15249.10019,25693.4039,0,21
+207869,15020.90536,25039.95146,0,21
+207870,15220.42224,24541.93218,0,21
+207871,14795.49514,23598.17936,0,21
+207872,13722.58103,23175.8138,0,21
+207873,13531.4294,22696.0994,0,21
+207874,12133.47081,21787.81504,0,21
+207875,11270.63935,21436.60342,0,21
+207876,10831.00668,20574.41656,0,21
+207877,10054.62178,20140.95419,0,21
+207878,9310.42325,19270.04563,0,21
+207879,9106.644126,18742.2644,0,21
+207880,8889.108465,18090.43559,0,21
+207881,8557.082506,17447.47104,0,21
+207882,8374.846043,16544.46215,0,21
+207883,8032.158722,15980.17274,0,21
+207884,7943.625809,15426.55545,0,21
+207885,7415.951664,14636.75037,0,21
+207886,7342.495914,13794.00323,0,21
+207887,7042.88151,13238.87425,0,21
+207888,6842.212232,12618.2448,0,21
+207889,6668.089049,11874.74557,0,21
+207890,6243.924261,11683.57174,0,21
+207891,6276.286428,11454.52974,0,21
+207892,5721.750971,11238.71046,0,21
+207893,5799.193776,11191.64462,0,21
+207894,5318.361184,10800.11308,0,21
+207895,5275.592125,10624.34748,0,21
+207896,4819.855449,10519.79567,0,21
+207897,4768.813561,10195.56968,0,21
+207898,4501.608632,10094.30175,0,21
+207899,4367.261951,9873.086797,0,21
+207900,4084.133537,9527.13137,0,21
+207901,3687.368853,9239.817026,0,21
+207902,3398.198735,8729.390068,0,21
+207903,3398.198968,8649.855099,0,21
+207904,2991.608081,8411.585809,0,21
+207905,3093.05476,8209.051905,0,21
+207906,2850.170574,7950.576129,0,21
+207907,2810.851266,7749.05208,0,21
+207908,2538.296746,7652.247967,0,21
+207909,2393.946625,7130.665706,0,21
+207910,2088.453009,7213.82443,0,21
+207911,2101.714087,6949.849753,0,21
+207912,1913.592272,6587.119705,0,21
+207913,1638.512405,6501.698788,0,21
+207914,1470.711151,6260.747723,0,21
+207915,1312.684557,5876.468695,0,21
+207916,1133.889034,5941.879985,0,21
+207917,1120.382729,5551.733816,0,21
+207918,1093.284472,5359.901505,0,21
+207919,1066.070493,5329.988128,0,21
+207920,1066.0706,5014.80974,0,21
+207921,1025.027935,5029.838058,0,21
+207922,1011.286888,4841.259887,0,21
+207923,997.5152374,4697.297219,0,21
+207924,969.8788138,4522.463014,0,21
+207925,942.1162184,4377.301653,0,21
+207926,928.1868104,4346.890462,0,21
+207927,914.2248355,4054.642791,0,21
+207928,872.1397041,4008.779852,0,21
+207929,872.1397709,3876.960783,0,21
+207930,843.9132771,3698.427724,0,21
+207931,815.5471174,3667.607998,0,21
+207932,815.5471745,3385.016155,0,21
+207933,772.728166,3503.538428,0,21
+207934,772.7282164,3188.406724,0,21
+207935,743.9967286,3172.879474,0,21
+207936,729.5737891,3021.755088,0,21
+207937,700.6106081,2838.524137,0,21
+207938,686.0692115,2822.888868,0,21
+207939,671.4870894,2669.806427,0,21
+207940,656.8635778,2654.13461,0,21
+207941,627.4895493,2468.502524,0,21
+207942,627.4895802,2313.135201,0,21
+207943,583.0996952,2297.350471,0,21
+207944,583.0997212,2124.848982,0,21
+207945,568.2121177,1966.708309,0,21
+207946,523.2633327,1934.944967,0,21
+207947,523.2633529,1919.003764,0,21
+207948,508.1816996,1597.473129,0,21
+207949,462.6243406,1581.491545,0,21
+207950,462.6243557,1565.469052,0,21
+207951,447.3301214,1385.351226,0,21
+207952,401.1012463,1202.232361,0,21
+207953,401.1012571,1369.24536,0,21
+207954,369.9761733,910.6138584,0,21
+207955,369.9761822,998.6866682,0,21
+207956,322.7883099,982.4511544,0,21
+207957,306.9155993,786.4532812,0,21
+207958,306.915605,770.1281087,0,21
+207959,258.8236407,770.1281488,0,21
+207960,242.6222456,770.1281907,0,21
+207961,274.9368962,786.455941,0,21
+207962,226.3278403,786.4541796,0,21
+207963,209.934873,753.7579158,0,21
+207964,193.4369442,770.1290995,0,21
+207965,176.8265739,753.7580824,0,21
+207966,160.0949003,737.3404561,0,21
+207967,126.2224689,737.3346267,0,21
+207968,109.0519784,720.8755295,0,21
+207969,91.69809819,704.3621327,0,21
+207970,56.30804712,687.7973128,0,21
+207971,56.30804695,671.1870309,0,21
+207972,19.54816258,671.1877404,0,21
+207973,0,637.8098965,0,21
+207974,0,654.5248653,0,21
+207975,0,621.0422025,0,21
+207976,0,621.0422922,0,21
+207977,0,604.2206239,0,21
+207978,0,604.2207092,0,21
+207979,0,587.3439393,0,21
+207980,0,570.4109203,0,21
+207981,0,570.4105595,0,21
+207982,0,553.4201828,0,21
+207983,0,536.3707571,0,21
+207984,0,536.3708972,0,21
+207985,0,519.2609521,0,21
+207986,0,502.0890943,0,21
+207987,0,502.0892156,0,21
+207988,0,484.8537289,0,21
+207989,0,484.853839,0,21
+207990,0,450.1848341,0,21
+207991,0,467.55443,0,21
+207992,0,432.7487471,0,21
+207993,0,415.2397966,0,21
+207994,0,415.2398138,0,21
+207995,0,379.9977299,0,21
+207996,0,388.8390574,0,21
+207997,0,362.2594787,0,21
+207998,0,344.438678,0,21
+207999,0,326.5318072,0,21
+208000,0,326.5318092,0,21
+208001,0,290.4450104,0,21
+208002,0,290.4450042,0,21
+208003,0,272.25602,0,21
+208004,0,235.5598312,0,21
+208005,0,253.9630321,0,21
+208006,0,217.0393089,0,21
+208007,0,217.039972,0,21
+208008,0,198.3933198,0,21
+208009,0,198.3931593,0,21
+208010,0,160.6827607,0,21
+208011,0,170.1664252,0,21
+208012,0,141.592032,0,21
+208013,0,122.32106,0,21
+208014,0,122.3210516,0,21
+208015,0,83.13350258,0,21
+208016,0,102.8458102,0,21
+208017,0,53.00860694,0,21
+208018,0,63.13626049,0,21
+208019,0,21.90598521,0,21
+208020,0,32.42063622,0,21
+208021,0,380.0083824,0,21
+208022,0,362.2595424,0,21
+208023,0,379.9979614,0,21
+208024,0,326.5314748,0,21
+208025,0,344.4382435,0,21
+208026,0,326.531373,0,21
+208027,0,308.5349388,0,21
+208028,0,290.4446198,0,21
+208029,0,290.444607,0,21
+208030,0,253.9626494,0,21
+208031,0,272.2556199,0,21
+208032,0,235.5594366,0,21
+208033,0,226.3143271,0,21
+208034,0,217.0389211,0,21
+208035,0,198.3928138,0,21
+208036,0,198.3927943,0,21
+208037,0,179.6112523,0,21
+208038,0,160.6824252,0,21
+208039,0,160.6824117,0,21
+208040,0,122.3208062,0,21
+208041,0,141.5917102,0,21
+208042,0,102.845599,0,21
+208043,0,112.6105098,0,21
+208044,0,83.13368276,0,21
+208045,0,83.13339678,0,21
+208046,0,53.00849245,0,21
+208047,0,53.00848813,0,21
+208048,0,42.77688052,0,21
+208049,0,21.90593515,0,21
+208050,0,11.1697352,0,21
+208051,0,0,0,21
+208052,0,0,0,21
+208053,0,0,0,21
+208054,0,0,0,21
+208055,0,0,0,21
+208056,0,0,0,21
+208057,0,0,0,21
+208058,0,0,0,21
+208059,0,0,0,21
+208060,0,0,0,21
+208061,0,0,0,21
+208062,0,0,0,21
+208063,0,0,0,21
+208064,0,0,0,21
+208065,0,0,0,21
+208066,0,0,0,21
+208067,0,0,0,21
+208068,0,0,0,21
+208069,0,0,0,21
+208070,0,0,0,21
+208071,0,0,0,21
+208072,0,0,0,21
+208073,0,0,0,21
+208074,0,0,0,21
+208075,0,0,0,21
+208076,0,0,0,21
+208077,0,0,0,21
+208078,0,0,0,21
+208079,0,0,0,21
+208080,0,0,0,21
+208081,0,0,0,21
+208082,0,0,0,21
+208083,0,0,0,21
+208084,0,0,0,21
+208085,0,0,0,21
+208086,0,0,0,21
+208087,0,0,0,21
+208088,0,0,0,21
+208089,0,0,0,21
+208090,0,0,0,21
+208091,0,0,0,21
+208092,0,0,0,21
+208093,0,0,0,21
+208094,0,0,0,21
+208095,0,0,0,21
+208096,0,0,0,21
+208097,0,0,0,21
+208098,0,0,0,21
+208099,0,0,0,21
+208100,0,0,0,21
+208101,0,0,0,21
+208102,0,0,0,21
+208103,0,0,0,21
+208104,0,0,0,21
+208105,0,0,0,21
+208106,0,0,0,21
+208107,0,0,0,21
+208108,0,0,0,21
+208109,0,0,0,21
+208110,0,0,0,21
+208111,0,0,0,21
+208112,0,0,0,21
+208113,0,0,0,21
+208114,0,0,0,21
+208115,0,0,0,21
+208116,0,0,0,21
+208117,0,0,0,21
+208118,0,0,0,21
+208119,0,0,0,21
+208120,0,0,0,21
+208121,0,0,0,21
+208122,0,0,0,21
+208123,0,0,0,21
+208124,0,0,0,21
+208125,0,0,0,21
+208126,0,0,0,21
+208127,0,0,0,21
+208128,0,0,0,21
+208129,0,0,0,21
+208130,0,0,0,21
+208131,0,0,0,21
+208132,0,0,0,21
+208133,0,0,0,21
+208134,0,0,0,21
+208135,0,0,0,21
+208136,0,0,0,21
+208137,0,0,0,21
+208138,0,0,0,21
+208139,0,0,0,21
+208140,0,0,0,21
+208141,0,0,0,21
+208142,0,0,0,21
+208143,0,0,0,21
+208144,0,0,0,21
+208145,0,0,0,21
+208146,0,0,0,21
+208147,0,0,0,21
+208148,0,0,0,21
+208149,0,0,0,21
+208150,0,0,0,21
+208151,0,0,0,21
+208152,0,0,0,21
+208153,0,0,0,21
+208154,0,0,0,21
+208155,0,0,0,21
+208156,0,0,0,21
+208157,0,0,0,21
+208158,0,0,0,21
+208159,0,0,0,21
+208160,0,0,0,21
+208161,0,0,0,21
+208162,0,0,0,21
+208163,0,0,0,21
+208164,0,0,0,21
+208165,0,0,0,21
+208166,0,0,0,21
+208167,0,0,0,21
+208168,0,0,0,21
+208169,0,0,0,21
+208170,0,0,0,21
+208171,0,0,0,21
+208172,0,0,0,21
+208173,0,0,0,21
+208174,0,0,0,21
+208175,0,0,0,21
+208176,0,0,0,21
+208177,0,0,0,21
+208178,0,0,0,21
+208179,0,0,0,21
+208180,0,0,0,21
+208181,0,0,0,21
+208182,0,0,0,21
+208183,0,0,0,21
+208184,0,0,0,21
+208185,0,0,0,21
+208186,0,0,0,21
+208187,0,0,0,21
+208188,0,0,0,21
+208189,0,0,0,21
+208190,0,0,0,21
+208191,0,0,0,21
+208192,0,0,0,21
+208193,0,0,0,21
+208194,0,0,0,21
+208195,0,0,0,21
+208196,0,0,0,21
+208197,0,0,0,21
+208198,0,0,0,21
+208199,0,0,0,21
+208200,0,0,0,21
+208201,0,0,0,21
+208202,0,0,0,21
+208203,0,0,0,21
+208204,0,0,0,21
+208205,0,0,0,21
+208206,0,0,0,21
+208207,0,0,0,21
+208208,0,0,0,21
+208209,0,0,0,21
+208210,0,0,0,21
+208211,0,0,0,21
+208212,0,0,0,21
+208213,0,0,0,21
+208214,0,0,0,21
+208215,0,0,0,21
+208216,0,0,0,21
+208217,0,0,0,21
+208218,0,0,0,21
+208219,0,0,0,21
+208220,0,0,0,21
+208221,0,0,0,21
+208222,0,0,0,21
+208223,0,0,0,21
+208224,0,0,0,21
+208225,0,0,0,21
+208226,0,0,0,21
+208227,0,0,0,21
+208228,0,0,0,21
+208229,0,0,0,21
+208230,0,0,0,21
+208231,0,0,0,21
+208232,0,0,0,21
+208233,0,0,0,21
+208234,0,0,0,21
+208235,0,0,0,21
+208236,0,0,0,21
+208237,0,0,0,21
+208238,0,0,0,21
+208239,0,0,0,21
+208240,0,0,0,21
+208241,0,0,0,21
+208242,0,0,0,21
+208243,0,0,0,21
+208244,0,0,0,21
+208245,0,0,0,21
+208246,0,0,0,21
+208247,0,0,0,21
+208248,0,0,0,21
+208249,0,0,0,21
+208250,0,0,0,21
+208251,0,0,0,21
+208252,0,0,0,21
+208253,0,0,0,21
+208254,0,0,0,21
+208255,0,0,0,21
+208256,0,0,0,21
+208257,0,0,0,21
+208258,0,0,0,21
+208259,0,0,0,21
+208260,0,0,0,21
+208261,0,0,0,21
+208262,0,0,0,21
+208263,0,0,0,21
+208264,0,0,0,21
+208265,0,0,0,21
+208266,0,0,0,21
+208267,0,0,0,21
+208268,0,0,0,21
+208269,0,0,0,21
+208270,0,0,0,21
+208271,0,0,0,21
+208272,0,0,0,21
+208273,0,0,0,21
+208274,0,0,0,21
+208275,0,0,0,21
+208276,0,0,0,21
+208277,0,0,0,21
+208278,0,0,0,21
+208279,0,0,0,21
+208280,0,0,0,21
+208281,0,0,0,21
+208282,0,0,0,21
+208283,0,0,0,21
+208284,0,0,0,21
+208285,0,0,0,21
+208286,0,0,0,21
+208287,0,0,0,21
+208288,0,0,0,21
+208289,0,0,0,21
+208290,0,0,0,21
+208291,0,0,0,21
+208292,0,0,0,21
+208293,0,0,0,21
+208294,0,0,0,21
+208295,0,0,0,21
+208296,0,0,0,21
+208297,0,0,0,21
+208298,0,0,0,21
+208299,0,0,0,21
+208300,0,0,0,21
+208301,0,0,0,21
+208302,0,0,0,21
+208303,0,0,0,21
+208304,0,0,0,21
+208305,0,0,0,21
+208306,0,0,0,21
+208307,0,0,0,21
+208308,0,0,0,21
+208309,0,0,0,21
+208310,0,0,0,21
+208311,0,0,0,21
+208312,0,0,0,21
+208313,0,0,0,21
+208314,0,0,0,21
+208315,0,0,0,21
+208316,0,0,0,21
+208317,0,0,0,21
+208318,0,0,0,21
+208319,0,0,0,21
+208320,0,0,0,21
+208321,0,0,0,21
+208322,0,0,0,21
+208323,0,0,0,21
+208324,0,0,0,21
+208325,0,0,0,21
+208326,0,0,0,21
+208327,0,0,0,21
+208328,0,0,0,21
+208329,0,0,0,21
+208330,0,0,0,21
+208331,0,0,0,21
+208332,0,0,0,21
+208333,0,0,0,21
+208334,0,0,0,21
+208335,0,0,0,21
+208336,0,0,0,21
+208337,0,0,0,21
+208338,0,0,0,21
+208339,0,0,0,21
+208340,0,0,0,21
+208341,0,0,0,21
+208342,0,0,0,21
+208343,0,0,0,21
+208344,0,0,0,21
+208345,0,0,0,21
+208346,0,0,0,21
+208347,0,0,0,21
+208348,0,0,0,21
+208349,0,0,0,21
+208350,0,0,0,21
+208351,0,0,0,21
+208352,0,0,0,21
+208353,0,0,0,21
+208354,0,0,0,21
+208355,0,0,0,21
+208356,0,0,0,21
+208357,0,0,0,21
+208358,0,0,0,21
+208359,0,0,0,21
+208360,0,0,0,21
+208361,0,0,0,21
+208362,0,0,0,21
+208363,0,0,0,21
+208364,0,0,0,21
+208365,0,0,0,21
+208366,185.1460093,0,0,21
+208367,109.0518685,0,0,21
+208368,700.606378,0,0,21
+208369,772.7231741,0,0,21
+208370,1377.340298,0,0,21
+208371,8938.436757,0,0,21
+208372,4339.836856,0,0,21
+208373,6018.09703,0,0,21
+208374,6360.119769,0,0,21
+208375,6642.426571,0,0,21
+208376,7586.955584,0,0,21
+208377,10524.48684,0,0,21
+208378,9414.980894,0,0,21
+208379,10511.43657,0,0,21
+208380,11016.76693,0,0,21
+208381,18111.55143,0,0,21
+208382,19693.26648,0,0,21
+208383,20067.84042,0,0,21
+208384,20841.69094,0,0,21
+208385,21130.05706,0,0,21
+208386,21901.28088,0,0,21
+208387,22402.7585,0,0,21
+208388,22978.42173,0,0,21
+208389,23341.59217,0,0,21
+208390,23912.9038,198.3916596,0,21
+208391,24393.52183,179.6102672,0,21
+208392,24840.45252,198.3916562,0,21
+208393,14319.87749,217.0375968,0,21
+208394,13825.81282,272.2537548,0,21
+208395,14082.46744,272.2537514,0,21
+208396,14232.3044,290.4425236,0,21
+208397,14501.22303,344.435524,0,21
+208398,14868.67581,326.5288996,0,21
+208399,15127.68328,379.9946891,0,21
+208400,15613.0245,397.6537819,0,21
+208401,15664.02387,397.6537743,0,21
+208402,16012.48056,450.1825209,0,21
+208403,16515.81858,450.182511,0,21
+208404,16677.96318,484.8513668,0,21
+208405,17115.62332,502.0868333,0,21
+208406,17185.91192,519.2587222,0,21
+208407,17746.44022,553.4182621,0,21
+208408,17803.2882,553.4182466,0,21
+208409,18582.98164,587.3419247,0,21
+208410,18317.06512,621.0403235,0,21
+208411,18992.4844,604.218642,0,21
+208412,19247.04564,1816.184735,0,21
+208413,19371.45353,1658.044003,0,21
+208414,19741.77622,1658.043976,0,21
+208415,20101.31991,2022.700541,0,21
+208416,20214.66525,2205.175713,0,21
+208417,20701.35682,2453.709844,0,21
+208418,20849.25585,2512.747519,0,21
+208419,21170.2389,2758.667354,0,21
+208420,21427.39649,2980.943216,0,21
+208421,21670.93739,3143.473771,0,21
+208422,21914.59731,3203.722284,0,21
+208423,22352.33266,3424.728528,0,21
+208424,22391.11367,4790.26153,0,21
+208425,22741.61718,5789.119984,0,21
+208426,23082.34189,5366.496553,0,21
+208427,23316.02656,6480.650649,0,21
+208428,23549.27757,6686.021072,0,21
+208429,23808.04266,7042.882601,0,21
+208430,24014.49156,7512.917961,0,21
+208431,24365.15552,8030.693231,0,21
+208432,24591.91852,8643.734039,0,21
+208433,24839.62429,8697.037853,0,21
+208434,24957.62969,9329.394398,0,21
+208435,25513.18445,9670.818862,0,21
+208436,25417.70032,9320.900096,0,21
+208437,25871.95465,9521.084602,0,21
+208438,26104.76651,9693.343265,0,21
+208439,26217.46696,10272.1909,0,21
+208440,26659.91991,10635.86135,0,21
+208441,26685.22811,11029.62984,0,21
+208442,27101.99394,11569.53646,0,21
+208443,27357.52816,11603.19754,0,21
+208444,27452.17464,11962.58538,0,21
+208445,27809.25397,12492.80848,0,21
+208446,28017.74345,12667.89355,0,21
+208447,28055.80237,13030.1192,0,21
+208448,28671.29322,13416.62604,0,21
+208449,28492.24099,13740.30886,0,21
+208450,29131.56393,14105.17771,0,21
+208451,28940.21445,14572.58973,0,21
+208452,29576.40514,14665.21022,0,21
+208453,29513.29031,15135.15917,0,21
+208454,29895.75006,15375.98981,0,21
+208455,30155.06086,15842.97843,0,21
+208456,30351.92075,15912.42302,0,21
+208457,30488.30238,16402.07176,0,21
+208458,30793.82076,16761.35596,0,21
+208459,30930.68311,17076.5113,0,21
+208460,31234.31004,17146.47102,0,21
+208461,31369.78464,18179.7442,0,21
+208462,31664.88205,20546.83278,0,21
+208463,31821.02754,21104.75729,0,21
+208464,32087.72527,21826.18377,0,21
+208465,32245.70092,22506.98295,0,21
+208466,32467.69422,23445.29348,0,21
+208467,32879.56581,24351.08137,0,21
+208468,32978.86414,25195.88452,0,21
+208469,33165.67269,25486.15203,0,21
+208470,33391.83479,26367.18925,0,21
+208471,33624.00043,27420.39112,0,21
+208472,34052.78225,27804.76625,0,21
+208473,33874.52016,28834.11393,0,21
+208474,34386.07499,29729.72657,0,21
+208475,34544.35319,30578.01205,0,21
+208476,34547.15673,31050.84196,0,21
+208477,34935.05503,32183.38039,0,21
+208478,35228.70256,32688.40866,0,21
+208479,35193.54115,33705.14381,0,21
+208480,35629.77717,34113.52636,0,21
+208481,35752.99601,35378.62159,0,21
+208482,35881.39162,36003.88585,0,21
+208483,36282.24172,36519.65095,0,21
+208484,36146.4821,37748.30287,0,21
+208485,36710.17018,38046.70313,0,21
+208486,36756.55633,39214.07053,0,21
+208487,36878.29187,39960.80752,0,21
+208488,37219.22328,40347.87419,0,21
+208489,37286.84808,41714.67491,0,21
+208490,37527.72718,41876.80573,0,21
+208491,37848.92489,42971.75613,0,21
+208492,37885.59109,43731.66786,0,21
+208493,38069.71087,44284.79253,0,21
+208494,38296.18032,45605.50509,0,21
+208495,38700.81575,45604.0736,0,21
+208496,38559.62435,46800.52329,0,21
+208497,39031.51597,47588.33575,0,21
+208498,39051.65127,48057.53195,0,21
+208499,39385.07482,49079.83573,0,21
+208500,39321.91661,49783.03216,0,21
+208501,40833.33582,52292.33925,0,21
+208502,41084.77129,53715.59345,0,21
+208503,41152.3463,53817.46491,0,21
+208504,41684.43113,54775.42286,0,21
+208505,41937.9828,55319.15071,0,21
+208506,41953.25783,56100.7998,0,21
+208507,42361.48947,56552.91518,0,21
+208508,42385.92282,57438.1638,0,21
+208509,42794.24446,57949.06786,0,21
+208510,42976.94838,58488.39984,0,21
+208511,43238.56835,59363.14488,0,21
+208512,43433.17546,59862.75351,0,21
+208513,43904.60131,60496.51395,0,21
+208514,44241.7872,61033.61097,0,21
+208515,44450.87055,62068.07873,0,21
+208516,44834.64134,62021.06266,0,21
+208517,44898.85467,63451.42292,0,21
+208518,45483.01805,63252.16572,0,21
+208519,45565.91193,64477.42568,0,21
+208520,45877.84239,64778.74587,0,21
+208521,46308.91585,65392.4183,0,21
+208522,46348.35004,66110.14381,0,21
+208523,46683.5936,66547.37381,0,21
+208524,47095.76312,67529.1762,0,21
+208525,46987.63467,67956.56046,0,21
+208526,47647.99433,68485.41853,0,21
+208527,47672.88258,69391.55648,0,21
+208528,48186.61414,69703.18491,0,21
+208529,48004.53469,70484.66879,0,21
+208530,48858.56022,71157.21531,0,21
+208531,48561.77792,71743.66601,0,21
+208532,48989.07033,72202.71486,0,21
+208533,49417.17801,73022.62876,0,21
+208534,49125.55238,73099.13144,0,21
+208535,50342.90912,74240.7949,0,21
+208536,49887.23835,74655.82272,0,21
+208537,50683.01785,75050.41942,0,21
+208538,50364.72678,75617.60673,0,21
+208539,50986.54228,76456.98667,0,21
+208540,51247.18837,76692.30657,0,21
+208541,51096.05999,77518.51693,0,21
+208542,51538.77572,77675.54016,0,21
+208543,51784.83361,78813.75884,0,21
+208544,52019.49816,78963.52367,0,21
+208545,51920.76815,79710.8297,0,21
+208546,52472.88548,79889.10881,0,21
+208547,52396.64165,80887.4823,0,21
+208548,52806.79004,81283.48262,0,21
+208549,52826.98337,81764.34102,0,21
+208550,53120.26588,82196.5772,0,21
+208551,53305.96154,82998.87879,0,21
+208552,53403.65676,83331.29466,0,21
+208553,53765.33247,83963.76918,0,21
+208554,53541.46094,84377.39063,0,21
+208555,54202.66937,85111.01113,0,21
+208556,53992.60517,85325.14835,0,21
+208557,54548.02735,86104.57649,0,21
+208558,54602.82303,86496.06665,0,21
+208559,54665.13296,87233.36988,0,21
+208560,54875.66502,87365.69644,0,21
+208561,54943.07007,88615.00441,0,21
+208562,55121.62249,88226.23912,0,21
+208563,55426.42884,89562.48952,0,21
+208564,55558.95841,89894.93151,0,21
+208565,55511.06229,91224.99371,0,21
+208566,55852.29577,92440.33611,0,21
+208567,55928.11068,92594.48193,0,21
+208568,56140.44653,93813.64951,0,21
+208569,56192.18462,94242.38885,0,21
+208570,56397.87591,95167.08315,0,21
+208571,56466.79413,95829.47058,0,21
+208572,56643.47137,96517.30698,0,21
+208573,56945.30666,97529.21242,0,21
+208574,56890.57622,97762.43833,0,21
+208575,57001.48941,99217.80427,0,21
+208576,57201.73486,99079.56028,0,21
+208577,57417.20517,100313.9823,0,21
+208578,57436.37396,100891.907,0,21
+208579,57524.75217,101808.8453,0,21
+208580,57870.68379,102158.241,0,21
+208581,57951.78868,103297.5393,0,21
+208582,57779.47042,103442.0234,0,21
+208583,58359.84121,104858.9352,0,21
+208584,58068.22061,104903.9924,0,21
+208585,58446.27704,106145.0776,0,21
+208586,58638.00856,106685.0117,0,21
+208587,58525.53068,106096.7145,0,21
+208588,58754.8663,106414.7429,0,21
+208589,58942.86552,107131.5356,0,21
+208590,59123.80836,108008.5252,0,21
+208591,59087.12169,108524.1175,0,21
+208592,59205.58573,109067.9429,0,21
+208593,59441.74532,109922.0153,0,21
+208594,59506.85727,110218.1765,0,21
+208595,59502.41509,111600.023,0,21
+208596,59905.40965,111637.8687,0,21
+208597,59788.03245,112269.8352,0,21
+208598,59955.53541,113208.4192,0,21
+208599,60206.81298,113788.8438,0,21
+208600,60199.90156,114640.1105,0,21
+208601,60291.57595,114748.6945,0,21
+208602,60280.10019,116186.9448,0,21
+208603,60702.22955,116205.5944,0,21
+208604,60517.3712,117337.4549,0,21
+208605,60930.6895,117590.6749,0,21
+208606,60861.87882,118514.6164,0,21
+208607,61160.10112,119655.573,0,21
+208608,60871.12019,119433.3559,0,21
+208609,61463.74103,120651.7382,0,21
+208610,61266.59836,121590.829,0,21
+208611,61512.99777,121860.0255,0,21
+208612,61518.83788,122472.9589,0,21
+208613,61748.42453,123746.3498,0,21
+208614,61771.69625,124204.2721,0,21
+208615,61631.90559,124745.691,0,21
+208616,62527.69822,125774.5242,0,21
+208617,63240.37055,126342.0178,0,21
+208618,62920.62056,127166.3154,0,21
+208619,63398.41207,127796.1547,0,21
+208620,63509.71075,128561.441,0,21
+208621,0,0,0,21
+208622,0,0,0,21
+208623,0,84.99486668,0,21
+208624,0,0,0,21
+208625,0,0,902495.0161,21
+208626,0,368442.5482,0,21
+208627,335621.0812,0,0,21
+208628,0,56.39054129,0,21
+208629,0,0,0,21
+208630,0,0,0,21
+208631,0,0,0,21
+208632,0,0,0,21
+208633,0,0,0,21
+208634,0,0,0,21
+208635,0,434444.7135,0,21
+208636,0,0,0,21
+208637,0,0,0,21
+208638,0,0,0,21
+208639,0,0,0,21
+208640,0,0,0,21
+208641,0,0,0,21
+208642,0,0,0,21
+208643,0,0,0,21
+208644,0,0,0,21
+208645,0,0,0,21
+208646,0,0,0,21
+208647,0,0,0,21
+208648,0,0,0,21
+208649,0,0,0,21
+208650,0,0,0,21
+208651,0,0,0,21
+208652,0,0,0,21
+208653,0,0,0,21
+208654,0,0,0,21
+208655,0,0,0,21
+208656,0,0,0,21
+208657,0,0,0,21
+208658,0,0,0,21
+208659,0,0,883754.4759,21
+208660,0,0,0,21
+208661,0,802576.5172,0,21
+208662,0,0,0,21
+208663,337155.2083,0,0,21
+208664,0,0,0,21
+208665,0,0,0,21
+208666,0,0,0,21
+208667,0,0,0,21
+208668,0,0,0,21
+208669,0,0,0,21
+208670,0,0,0,21
+208671,0,0,0,21
+208672,0,0,0,21
+208673,0,433517.809,0,21
+208674,0,0,0,21
+208675,0,0,0,21
+208676,0,0,0,21
+208677,0,0,0,21
+208678,0,0,0,21
+208679,0,0,0,21
+208680,0,0,0,15.6
+208681,0,0,0,15.6
+208682,0,0,0,15.6
+208683,0,0,0,15.6
+208684,0,0,0,15.6
+208685,0,0,0,15.6
+208686,0,0,0,15.6
+208687,0,0,0,15.6
+208688,0,0,0,15.6
+208689,0,0,0,15.6
+208690,0,0,0,15.6
+208691,0,0,0,15.6
+208692,0,433866.2768,0,15.6
+208693,0,0,0,15.6
+208694,0,0,863566.984,15.6
+208695,0,0,0,15.6
+208696,0,368431.5519,0,15.6
+208697,0,0,0,15.6
+208698,0,0,0,15.6
+208699,338000.0154,0,0,15.6
+208700,0,0,0,15.6
+208701,0,0,0,15.6
+208702,0,0,0,15.6
+208703,0,0,0,15.6
+208704,0,433118.1123,0,15.6
+208705,0,0,0,15.6
+208706,0,0,0,15.6
+208707,0,0,0,15.6
+208708,0,0,0,15.6
+208709,0,0,0,15.6
+208710,0,0,0,15.6
+208711,0,0,0,15.6
+208712,0,0,0,15.6
+208713,0,0,0,15.6
+208714,0,0,0,15.6
+208715,0,0,0,15.6
+208716,0,0,0,15.6
+208717,0,0,0,15.6
+208718,0,0,0,15.6
+208719,0,0,0,15.6
+208720,0,0,0,15.6
+208721,0,0,0,15.6
+208722,0,0,0,15.6
+208723,0,230.9686825,0,15.6
+208724,0,0,0,15.6
+208725,0,0,0,15.6
+208726,0,0,0,15.6
+208727,0,0,0,15.6
+208728,0,0,0,15.6
+208729,0,7.380441629,847395.5352,15.6
+208730,0,0,0,15.6
+208731,0,368564.0639,0,15.6
+208732,0,0,0,15.6
+208733,0,0,0,15.6
+208734,0,0,0,15.6
+208735,338510.8775,0,0,15.6
+208736,0,67.28839399,0,15.6
+208737,0,0,0,15.6
+208738,0,0,0,15.6
+208739,0,0,0,15.6
+208740,0,0,0,15.6
+208741,0,0,0,15.6
+208742,0,0,0,15.6
+208743,0,0,0,15.6
+208744,0,0,0,15.6
+208745,0,0,0,15.6
+208746,0,66.14635979,0,15.6
+208747,0,0,0,15.6
+208748,0,0,0,15.6
+208749,0,0,0,15.6
+208750,0,80.96431371,0,15.6
+208751,0,0,0,15.6
+208752,0,0,0,15.6
+208753,0,0,0,15.6
+208754,0,77.32056647,0,15.6
+208755,0,0,0,15.6
+208756,0,0,0,15.6
+208757,0,0,0,15.6
+208758,0,78.88877687,0,15.6
+208759,0,0,0,15.6
+208760,0,0,0,15.6
+208761,0,0,0,15.6
+208762,0,78.91920817,0,15.6
+208763,0,0,0,15.6
+208764,0,0,829662.5704,15.6
+208765,0,0,0,15.6
+208766,0,368513.7689,0,15.6
+208767,0,0,0,15.6
+208768,0,0,0,15.6
+208769,0,0,0,15.6
+208770,0,75.2596613,0,15.6
+208771,332581.7033,0,0,15.6
+208772,0,0,0,15.6
+208773,0,0,0,15.6
+208774,0,73.15884272,0,15.6
+208775,0,0,0,15.6
+208776,0,0,0,15.6
+208777,0,0,0,15.6
+208778,0,82.84293189,0,15.6
+208779,0,0,0,15.6
+208780,0,0,0,15.6
+208781,0,0,0,15.6
+208782,0,86.12401929,0,15.6
+208783,0,0,0,15.6
+208784,0,0,0,15.6
+208785,0,0,0,15.6
+208786,0,87.44501953,0,15.6
+208787,0,0,0,15.6
+208788,0,0,0,15.6
+208789,0,0,0,15.6
+208790,0,85.58643685,0,15.6
+208791,0,0,0,15.6
+208792,0,0,0,15.6
+208793,0,0,0,15.6
+208794,0,83.62550598,0,15.6
+208795,0,0,0,15.6
+208796,0,0,0,15.6
+208797,0,0,0,15.6
+208798,0,80.30741346,0,15.6
+208799,0,0,816695.4478,15.6
+208800,0,0,0,15.6
+208801,0,368431.731,0,15.6
+208802,0,75.828597,0,15.6
+208803,0,0,0,15.6
+208804,0,0,0,15.6
+208805,0,0,0,15.6
+208806,0,64.9958675,0,15.6
+208807,340390.4508,0,0,15.6
+208808,0,0,0,15.6
+208809,0,0,0,15.6
+208810,0,65.04601325,0,15.6
+208811,0,0,0,15.6
+208812,0,0,0,15.6
+208813,0,0,0,15.6
+208814,0,71.85359023,0,15.6
+208815,0,0,0,15.6
+208816,0,0,0,15.6
+208817,0,0,0,15.6
+208818,0,75.13966706,0,15.6
+208819,0,0,0,15.6
+208820,0,0,0,15.6
+208821,0,0,0,15.6
+208822,0,77.74908573,0,15.6
+208823,0,0,0,15.6
+208824,0,0,0,15.6
+208825,0,0,0,15.6
+208826,0,79.86532791,0,15.6
+208827,0,0,0,15.6
+208828,0,0,0,15.6
+208829,0,0,0,15.6
+208830,0,81.50412387,0,15.6
+208831,0,0,0,15.6
+208832,0,0,0,15.6
+208833,0,0,0,15.6
+208834,0,82.7754354,801996.0778,15.6
+208835,0,0,0,15.6
+208836,0,368420.3745,0,15.6
+208837,0,0,0,15.6
+208838,0,80.87865058,0,15.6
+208839,0,0,0,15.6
+208840,0,0,0,15.6
+208841,0,0,0,15.6
+208842,0,71.78837164,0,15.6
+208843,0,0,0,15.6
+208844,340295.6125,0,0,15.6
+208845,0,0,0,15.6
+208846,0,75.42699869,0,15.6
+208847,0,0,0,15.6
+208848,0,0,0,15.6
+208849,0,0,0,15.6
+208850,0,77.49251119,0,15.6
+208851,0,0,0,15.6
+208852,0,0,0,15.6
+208853,0,0,0,15.6
+208854,0,76.35382266,0,15.6
+208855,0,0,0,15.6
+208856,0,0,0,15.6
+208857,0,0,0,15.6
+208858,0,74.58630579,0,15.6
+208859,0,0,0,15.6
+208860,0,0,0,15.6
+208861,0,0,0,15.6
+208862,0,72.12169957,0,15.6
+208863,0,0,0,15.6
+208864,0,0,0,15.6
+208865,0,0,0,15.6
+208866,0,70.48616262,0,15.6
+208867,0,0,0,15.6
+208868,0,0,0,15.6
+208869,0,0,790710.8461,15.6
+208870,0,70.08098535,0,15.6
+208871,0,368411.5819,0,15.6
+208872,0,0,0,15.6
+208873,0,0,0,15.6
+208874,0,67.4839299,0,15.6
+208875,0,0,0,15.6
+208876,0,0,0,15.6
+208877,0,0,0,15.6
+208878,0,0,0,15.6
+208879,0,352.9714206,0,15.6
+208880,0,0,0,15.6
+208881,340239.0306,0,0,15.6
+208882,0,0,0,15.6
+208883,0,0,0,15.6
+208884,0,0,0,15.6
+208885,0,0,0,15.6
+208886,0,0,0,15.6
+208887,0,0,0,15.6
+208888,0,0,0,15.6
+208889,0,0,0,15.6
+208890,0,0,0,15.6
+208891,0,0,0,15.6
+208892,0,0,0,15.6
+208893,0,68.6689226,0,15.6
+208894,0,0,0,15.6
+208895,0,0,0,15.6
+208896,0,0,0,15.6
+208897,0,82.46241384,0,15.6
+208898,0,0,0,15.6
+208899,0,0,0,15.6
+208900,0,0,0,15.6
+208901,0,80.07193244,0,15.6
+208902,0,0,0,15.6
+208903,0,0,0,15.6
+208904,0,0,778671.391,15.6
+208905,0,78.314246,0,15.6
+208906,0,368410.0364,0,15.6
+208907,0,0,0,15.6
+208908,0,0,0,15.6
+208909,0,72.03438322,0,15.6
+208910,0,0,0,15.6
+208911,0,0,0,15.6
+208912,0,0,0,15.6
+208913,0,0,0,15.6
+208914,0,353.6334827,0,15.6
+208915,0,0,0,15.6
+208916,0,0,0,15.6
+208917,0,0,0,15.6
+208918,340208.4492,0,0,15.6
+208919,0,0,0,15.6
+208920,0,0,0,15.6
+208921,0,0,0,15.6
+208922,0,0,0,15.6
+208923,0,0,0,15.6
+208924,0,0,0,15.6
+208925,0,0,0,15.6
+208926,0,7.18067979,0,15.6
+208927,0,0,0,15.6
+208928,0,127.445609,0,15.6
+208929,0,0,0,15.6
+208930,0,0,0,15.6
+208931,0,0,0,15.6
+208932,0,0,0,15.6
+208933,0,63.7240092,0,15.6
+208934,0,0,0,15.6
+208935,0,0,0,15.6
+208936,0,0,0,15.6
+208937,0,0,0,15.6
+208938,0,0,0,15.6
+208939,0,0,768894.2339,15.6
+208940,0,0,0,15.6
+208941,0,368395.3646,0,15.6
+208942,0,0,0,15.6
+208943,0,0,0,15.6
+208944,0,347.8894894,0,15.6
+208945,0,0,0,15.6
+208946,0,0,0,15.6
+208947,0,0,0,15.6
+208948,0,0,0,15.6
+208949,0,0,0,15.6
+208950,0,0,0,15.6
+208951,0,0,0,15.6
+208952,0,0,0,15.6
+208953,0,0,0,15.6
+208954,0,0,0,15.6
+208955,340235.5231,0,0,15.6
+208956,0,0,0,15.6
+208957,0,0,0,15.6
+208958,0,65.77685097,0,15.6
+208959,0,0,0,15.6
+208960,0,0,0,15.6
+208961,0,0,0,15.6
+208962,0,78.57784388,0,15.6
+208963,0,0,0,15.6
+208964,0,0,0,15.6
+208965,0,0,0,15.6
+208966,0,75.08543431,0,15.6
+208967,0,0,0,15.6
+208968,0,0,0,15.6
+208969,0,0,0,15.6
+208970,0,72.91848345,0,15.6
+208971,0,0,0,15.6
+208972,0,0,0,15.6
+208973,0,0,0,15.6
+208974,0,70.1189511,760637.6383,15.6
+208975,0,0,0,15.6
+208976,0,0,0,15.6
+208977,0,368370.6279,0,15.6
+208978,0,65.78929408,0,15.6
+208979,0,0,0,15.6
+208980,0,0,0,15.6
+208981,0,0,0,15.6
+208982,0,0,0,15.6
+208983,0,64.08975489,0,15.6
+208984,0,0,0,15.6
+208985,0,0,0,15.6
+208986,0,0,0,15.6
+208987,0,0,0,15.6
+208988,0,0,0,15.6
+208989,0,0,0,15.6
+208990,0,0,0,15.6
+208991,0,0,0,15.6
+208992,340256.184,86.35967736,0,15.6
+208993,0,0,0,15.6
+208994,0,0,0,15.6
+208995,0,0,0,15.6
+208996,0,64.71040325,0,15.6
+208997,0,0,0,15.6
+208998,0,0,0,15.6
+208999,0,0,0,15.6
+209000,0,70.14619837,0,15.6
+209001,0,0,0,15.6
+209002,0,0,0,15.6
+209003,0,0,0,15.6
+209004,0,71.75493743,0,15.6
+209005,0,0,0,15.6
+209006,0,0,0,15.6
+209007,0,0,0,15.6
+209008,0,73.45565032,750484.5874,15.6
+209009,0,0,0,15.6
+209010,0,0,0,15.6
+209011,0,0,0,15.6
+209012,0,73.88135649,0,15.6
+209013,0,368365.5679,0,15.6
+209014,0,0,0,15.6
+209015,0,0,0,15.6
+209016,0,70.07071983,0,15.6
+209017,0,0,0,15.6
+209018,0,0,0,15.6
+209019,0,0,0,15.6
+209020,0,0,0,15.6
+209021,0,360.0367148,0,15.6
+209022,0,0,0,15.6
+209023,0,0,0,15.6
+209024,0,0,0,15.6
+209025,0,0,0,15.6
+209026,0,0,0,15.6
+209027,340255.9984,0,0,15.6
+209028,0,0,0,15.6
+209029,0,0,0,15.6
+209030,0,0,0,15.6
+209031,0,0,0,15.6
+209032,0,0,0,15.6
+209033,0,7.742783168,0,15.6
+209034,0,0,0,15.6
+209035,0,130.0895481,0,15.6
+209036,0,0,0,15.6
+209037,0,0,0,15.6
+209038,0,0,0,15.6
+209039,0,0,0,15.6
+209040,0,57.04889587,0,17.8
+209041,0,726115.0592,0,17.8
+209042,0,109230.3176,744049.8132,17.8
+209043,0,258508.7746,0,17.8
+209044,0,275390.854,0,17.8
+209045,0,256465.0606,0,17.8
+209046,0,252549.0309,0,17.8
+209047,0,621619.555,0,17.8
+209048,0,252531.1789,0,17.8
+209049,0,253523.7795,0,17.8
+209050,0,252219.2742,0,17.8
+209051,0,252096.9211,0,17.8
+209052,1517.443703,251693.6553,0,17.8
+209053,15833.05406,251806.2682,0,17.8
+209054,20096.69281,250771.4037,0,17.8
+209055,16004.95476,250689.8919,0,17.8
+209056,18715.9935,250542.6046,0,17.8
+209057,19035.51825,250312.6284,0,17.8
+209058,19558.21551,250061.1624,0,17.8
+209059,20080.85381,249754.387,0,17.8
+209060,20288.7534,249366.1826,0,17.8
+209061,20910.17428,249739.073,0,17.8
+209062,361360.6999,248913.3511,0,17.8
+209063,21324.58287,248987.718,0,17.8
+209064,21834.89424,248884.2972,0,17.8
+209065,22246.16463,249082.8148,0,17.8
+209066,22347.1944,248434.69,0,17.8
+209067,22754.53153,248636.0099,0,17.8
+209068,22959.60233,248154.0273,0,17.8
+209069,23565.00733,248645.6512,0,17.8
+209070,23464.99693,241852.4042,0,17.8
+209071,23968.17919,0,0,17.8
+209072,24171.14363,0,0,17.8
+209073,24369.99741,0,0,17.8
+209074,0,93696.25545,0,17.8
+209075,0,9052.4002,0,17.8
+209076,0,34582.15876,735788.9124,17.8
+209077,0,34715.08104,0,17.8
+209078,0,32479.12523,0,17.8
+209079,0,32502.53561,0,17.8
+209080,0,32393.63162,0,17.8
+209081,0,400678.2765,0,17.8
+209082,0,32132.24308,0,17.8
+209083,0,32132.23314,0,17.8
+209084,0,31913.95802,0,17.8
+209085,0,31958.58501,0,17.8
+209086,0,31812.05493,0,17.8
+209087,0,31722.46413,0,17.8
+209088,0,31619.63191,0,17.8
+209089,0,31532.26162,0,17.8
+209090,0,31484.1068,0,17.8
+209091,0,31230.70576,0,17.8
+209092,0,31199.09535,0,17.8
+209093,0,31173.74767,0,17.8
+209094,0,30959.7476,0,17.8
+209095,0,30917.39798,0,17.8
+209096,0,30765.64046,0,17.8
+209097,340223.2441,30706.45322,0,17.8
+209098,0,30607.45594,0,17.8
+209099,0,30678.28163,0,17.8
+209100,0,30357.73185,0,20
+209101,1646.507351,1267977.991,0,20
+209102,11844.72493,185822.1433,0,20
+209103,74946.44229,138272.8392,0,20
+209104,98681.15744,285712.7066,0,20
+209105,69070.06405,298193.1587,0,20
+209106,80242.79921,255468.5619,0,20
+209107,80675.19177,258948.2157,0,20
+209108,109636.5806,258636.1851,0,20
+209109,108631.5019,257344.6467,0,20
+209110,103933.6008,255573.7026,145.4503775,20
+209111,107389.1895,254584.9069,13135.05129,20
+209112,107351.2511,252123.5504,6896.558312,20
+209113,108060.293,250845.2472,8231.367282,20
+209114,108040.0936,249696.4338,9087.662871,20
+209115,108562.8126,247374.7417,8925.518176,20
+209116,108566.9686,246919.384,9423.232836,20
+209117,108845.5904,244921.244,9357.661493,20
+209118,109320.6664,243572.7873,9702.431467,20
+209119,109156.8138,241872.6561,9788.004309,20
+209120,109616.9889,241051.8953,9913.644965,20
+209121,109675.6534,239355.5195,10161.57276,20
+209122,109950.3694,237791.4281,12164.49778,20
+209123,110045.0953,236409.9418,11908.37696,20
+209124,110483.0731,235591.0264,12307.30019,20
+209125,110580.2588,233702.9222,12597.68728,20
+209126,110939.8081,232736.9197,13075.37329,20
+209127,110923.8795,231169.0684,13134.05263,20
+209128,111413.425,229762.7986,13609.72116,20
+209129,111551.6074,228779.5947,13788.90129,20
+209130,111499.5563,227387.2496,14034.76822,20
+209131,111376.5258,225708.3217,14266.85232,20
+209132,111262.1684,225427.1643,14472.23923,20
+209133,111082.9628,223905.0143,14821.90229,20
+209134,111230.2684,222943.9574,14857.48332,20
+209135,111474.9378,222042.6781,15441.65279,20
+209136,111462.5457,221426.394,14761.03688,20
+209137,111426.7071,219848.3529,15016.72164,20
+209138,111460.2927,219014.233,15129.86092,20
+209139,111519.374,218019.1545,15280.68512,20
+209140,111621.7159,217924.8391,15313.26107,20
+209141,111597.5934,215893.2287,15571.56322,20
+209142,111463.6153,215487.8677,15788.94324,20
+209143,111574.4318,214580.2189,14423.78193,20
+209144,111603.8817,213483.1789,14546.04257,20
+209145,111562.3573,212641.0115,14440.57807,20
+209146,111455.5996,211915.171,14680.11332,20
+209147,111546.844,211041.8892,14381.3402,20
+209148,111543.1957,210254.8111,14833.65877,20
+209149,111251.7017,209132.418,14639.1818,20
+209150,111701.7428,208183.609,14760.88951,20
+209151,111346.518,207771.2113,14882.43024,20
+209152,111215.9292,206184.8907,14922.25122,20
+209153,111266.6545,206090.3529,14925.37147,20
+209154,110128.8817,204867.1224,14952.94217,20
+209155,109569.2264,204428.1373,15189.15339,20
+209156,109595.9565,203150.6405,15093.35371,20
+209157,109264.3203,202365.0524,15228.03652,20
+209158,109298.2044,201769.9691,15362.56731,20
+209159,109172.4411,201380.5409,15141.90304,20
+209160,108919.2126,199608.8731,15502.68493,21
+209161,100122.5023,191962.8523,11103.2566,21
+209162,98654.8528,189745.9701,10842.4547,21
+209163,98148.8864,188463.7177,10703.21762,21
+209164,97922.39342,187386.149,10618.82952,21
+209165,96901.25247,186415.0021,10715.452,21
+209166,96906.25157,184931.2126,10502.78376,21
+209167,96175.20581,184746.0162,10734.4583,21
+209168,95811.05401,182688.736,10508.13655,21
+209169,95149.26454,182379.4128,10632.36628,21
+209170,94937.08996,181261.5679,10513.45658,21
+209171,94447.45784,180017.323,10522.42606,21
+209172,93639.74083,179399.996,10518.7452,21
+209173,93884.11014,177860.7203,10534.95672,21
+209174,92625.21875,177149.5681,10292.96339,21
+209175,92864.5335,176440.3328,10553.74923,21
+209176,91857.16167,174865.9038,10413.78124,21
+209177,91735.27151,174429.7489,10430.54115,21
+209178,90987.30688,172702.279,10308.93978,21
+209179,90842.91658,171783.0136,10435.67882,21
+209180,90079.84141,171082.1818,10445.02071,21
+209181,89874.30032,171050.4186,10454.44363,21
+209182,89177.99646,170310.0162,10312.4656,21
+209183,88749.82151,169556.5622,10473.75927,21
+209184,88399.09899,169458.7236,10331.71933,21
+209185,87771.97627,168567.9837,10211.95254,21
+209186,87269.16302,168489.8083,10322.54298,21
+209187,86980.69916,167714.9793,10244.71222,21
+209188,86410.7327,167045.0625,10081.97391,21
+209189,85861.72786,166919.9462,10228.33076,21
+209190,85473.50368,166150.2638,10100.44254,21
+209191,84512.97749,165777.2009,9978.507875,21
+209192,84032.00623,165596.7987,9858.41146,21
+209193,83233.4612,164896.0476,9969.485059,21
+209194,81854.84078,164369.1444,9585.09732,21
+209195,81741.32141,164264.5576,9623.731984,21
+209196,80130.58822,163562.2433,9575.701893,21
+209197,79718.48476,163344.1222,9343.437455,21
+209198,79232.10425,163129.356,9345.470985,21
+209199,77511.26883,162413.8949,9207.532988,21
+209200,77490.1435,161868.961,8973.911453,21
+209201,76215.11205,162060.5308,8926.154515,21
+209202,75452.04943,161300.6641,8564.236119,21
+209203,73192.21259,160909.1165,8684.206158,21
+209204,72214.33163,160746.4124,8279.395002,21
+209205,70607.1232,160193.9399,8422.526311,21
+209206,69936.9139,159927.5002,8154.097568,21
+209207,68963.88128,159682.3369,8017.162377,21
+209208,67691.58458,159093.1919,7904.562431,21
+209209,66475.72379,158749.4686,7748.319409,21
+209210,65925.92563,158676.5327,7759.549653,21
+209211,64448.91875,158046.1488,7483.282645,21
+209212,63517.38124,158094.0504,7354.240547,21
+209213,62342.74706,157283.7451,7085.677828,21
+209214,61401.16993,157390.0928,7208.018613,21
+209215,60061.95078,156824.1979,6807.916345,21
+209216,59400.22118,156811.0887,6953.627115,21
+209217,57758.22107,156157.9883,6528.351752,21
+209218,57072.81219,156129.084,6527.308417,21
+209219,55853.6842,155524.0474,6394.110112,21
+209220,54540.34918,155747.6273,6123.866779,21
+209221,19908.84335,87696.1154,0,21
+209222,18497.33911,85201.28463,0,21
+209223,18276.53052,84370.95447,0,21
+209224,17709.46015,83640.49846,0,21
+209225,17486.91953,82736.70118,0,21
+209226,17014.5126,82007.04257,0,21
+209227,16811.2819,81836.92754,0,21
+209228,16433.70145,80634.25275,0,21
+209229,16142.65254,80620.88163,0,21
+209230,15860.96762,79969.53351,0,21
+209231,15466.24565,79217.95969,0,21
+209232,15277.33295,78686.20769,0,21
+209233,14784.39358,77848.43887,0,21
+209234,14712.82543,77586.62917,0,21
+209235,14413.29235,76812.88044,0,21
+209236,13909.2142,76186.97193,0,21
+209237,13847.95099,75911.09683,0,21
+209238,13326.30085,75190.40749,0,21
+209239,13239.9144,74512.41033,0,21
+209240,12981.60807,74463.9874,0,21
+209241,12428.26849,73623.39642,0,21
+209242,12389.53714,73455.55083,0,21
+209243,12080.12287,72990.68381,0,21
+209244,11741.24109,485950.6244,0,21
+209245,11551.03419,72175.84997,0,21
+209246,11289.04093,71686.37413,0,21
+209247,11040.48466,70972.85589,0,21
+209248,10751.97111,71029.59899,0,21
+209249,10608.22967,70653.35045,0,21
+209250,10196.10597,69810.61579,0,21
+209251,10196.10431,69749.43189,0,21
+209252,9891.42232,69005.80858,0,21
+209253,9632.82326,68686.39502,0,21
+209254,9608.616363,68329.21223,0,21
+209255,9237.721907,67747.85128,0,21
+209256,9189.073687,67503.31915,0,21
+209257,8970.453774,66961.4217,0,21
+209258,8860.781553,66685.41322,0,21
+209259,8579.442534,65983.80599,0,21
+209260,8481.319171,66020.46422,0,21
+209261,8333.71155,65056.45325,0,21
+209262,8099.245615,65203.1756,0,21
+209263,7987.794929,64336.4241,0,21
+209264,7826.452311,64132.1727,0,21
+209265,7714.463131,63676.47349,0,21
+209266,7602.198972,63440.05956,0,21
+209267,7326.866741,62593.45408,0,21
+209268,7326.865723,62754.4248,0,21
+209269,7087.80262,61921.90168,0,21
+209270,6948.945409,62010.62317,0,21
+209271,6822.331221,61037.30991,0,21
+209272,6797.042564,61171.53459,0,21
+209273,6568.111279,60428.81024,0,21
+209274,6299.810016,60231.09286,0,21
+209275,6402.325549,59666.76276,0,21
+209276,6055.544728,59624.13452,0,21
+209277,6145.911055,58956.68374,0,21
+209278,5771.442147,58641.23628,0,21
+209279,5875.19887,58541.12811,0,21
+209280,5511.376721,57575.7156,0,21
+209281,5615.80937,57675.50797,0,21
+209282,5236.767249,56822.5026,0,21
+209283,5341.882469,56460.17415,0,21
+209284,4960.372033,56090.42297,0,21
+209285,5079.261757,55356.51698,0,21
+209286,4682.002128,55217.74964,0,21
+209287,4801.819403,54376.18367,0,21
+209288,4401.85091,54173.30538,0,21
+209289,4280.764425,53657.58199,0,21
+209290,4106.235994,53065.90066,0,21
+209291,3997.476375,52662.88348,0,21
+209292,3848.318589,52331.67141,0,21
+209293,3834.97892,51898.57025,0,21
+209294,3561.48146,51213.9932,0,21
+209295,3423.812807,50754.89752,0,21
+209296,3410.354839,50625.64364,0,21
+209297,3258.589,49835.41645,0,21
+209298,2993.437389,49414.91514,0,21
+209299,2979.881314,49119.35913,0,21
+209300,2839.455929,48692.08996,0,21
+209301,2684.603311,47899.76335,0,21
+209302,2670.92356,47953.3129,0,21
+209303,2399.59925,47183.20521,0,21
+209304,2372.088505,46714.82683,0,21
+209305,2228.127895,46396.13707,0,21
+209306,2096.962201,45849.81708,0,21
+209307,1923.094272,45366.27145,0,21
+209308,1775.653798,44943.13169,0,21
+209309,1775.653791,44705.09269,0,21
+209310,1612.78115,44001.24965,0,21
+209311,1448.143044,43570.84979,0,21
+209312,1309.619073,43409.57197,0,21
+209313,1140.356599,42748.89958,0,21
+209314,1111.992207,42574.0935,0,21
+209315,801.2862545,42332.58003,0,21
+209316,787.0142752,41836.05107,0,21
+209317,758.3592546,41415.86296,0,21
+209318,758.3593681,41353.18581,0,21
+209319,715.0923128,40673.56015,0,21
+209320,700.5917523,40521.1634,0,21
+209321,686.0510942,40046.60493,0,21
+209322,671.4696987,39911.01264,0,21
+209323,642.1819912,39337.76843,0,21
+209324,612.7230482,39157.73656,0,21
+209325,612.7230753,38755.36588,0,21
+209326,583.0865214,38550.23825,0,21
+209327,568.1995562,38173.56585,0,21
+209328,538.2836138,37952.87532,0,21
+209329,523.2526353,37280.72581,0,21
+209330,508.1716175,37400.78461,0,21
+209331,477.8545143,36961.81814,0,21
+209332,462.6159602,36516.62878,0,21
+209333,447.3222516,36439.34277,0,21
+209334,416.563352,451959.0604,0,21
+209335,416.5633556,35749.29535,0,21
+209336,369.9707442,35440.05106,0,21
+209337,369.9707604,35227.942,0,21
+209338,338.5829201,34953.41939,0,21
+209339,322.7841458,34660.52845,0,21
+209340,306.9118208,34449.65272,0,21
+209341,258.8204628,33440.06417,0,21
+209342,226.3257323,33051.01585,0,21
+209343,209.9330617,33047.50671,0,21
+209344,193.4353985,32898.63164,0,21
+209345,160.0938105,32430.95575,0,21
+209346,160.0938205,32611.18977,0,21
+209347,126.2217619,32137.67136,0,21
+209348,100.399113,32017.92631,0,21
+209349,91.69770142,31969.71427,0,21
+209350,56.30790056,31969.21486,0,21
+209351,56.30790359,31361.81251,0,21
+209352,19.54813322,31468.46085,0,21
+209353,0,31419.94203,0,21
+209354,0,31704.52455,0,21
+209355,0,31931.19181,0,21
+209356,0,31944.95689,0,21
+209357,0,31736.2017,0,21
+209358,0,31842.39571,0,21
+209359,0,31645.45941,0,21
+209360,0,31674.00764,0,21
+209361,0,31499.17817,0,21
+209362,0,31668.10247,0,21
+209363,0,31425.05053,0,21
+209364,0,31863.35226,0,21
+209365,0,31209.61001,0,21
+209366,0,31668.45758,0,21
+209367,0,31429.45812,0,21
+209368,0,31257.80995,0,21
+209369,0,31637.37555,0,21
+209370,0,31453.4117,0,21
+209371,0,31104.38049,0,21
+209372,0,31145.33687,0,21
+209373,0,30832.76841,0,21
+209374,0,30507.97412,0,21
+209375,0,30303.6794,0,21
+209376,0,30115.97301,0,21
+209377,0,29676.24987,0,21
+209378,0,29836.58521,0,21
+209379,0,29117.9562,0,21
+209380,0,28892.22582,0,21
+209381,0,28809.17119,0,21
+209382,0,28343.36262,0,21
+209383,0,28071.46534,0,21
+209384,0,27814.00406,0,21
+209385,0,27434.92311,0,21
+209386,0,27249.70061,0,21
+209387,0,26764.59135,0,21
+209388,0,26626.53452,0,21
+209389,0,26011.23468,0,21
+209390,0,25923.48939,0,21
+209391,0,24499.90585,0,21
+209392,0,24247.45574,0,21
+209393,0,23553.33056,0,21
+209394,0,23407.2994,0,21
+209395,0,22844.34063,0,21
+209396,0,22318.50372,0,21
+209397,0,22197.958,0,21
+209398,0,21532.01874,0,21
+209399,0,21247.74196,0,21
+209400,0,20724.01817,0,21
+209401,0,21171.89521,0,21
+209402,0,21149.00526,0,21
+209403,0,20735.69114,0,21
+209404,0,20002.02535,0,21
+209405,0,20225.84079,0,21
+209406,0,19667.97359,0,21
+209407,0,19304.51248,0,21
+209408,0,18912.27038,0,21
+209409,0,18755.81653,0,21
+209410,0,18365.30142,0,21
+209411,0,17800.63212,0,21
+209412,0,17648.21566,0,21
+209413,0,16991.44265,0,21
+209414,0,16940.90987,0,21
+209415,0,16525.86147,0,21
+209416,0,15990.30618,0,21
+209417,0,15680.03533,0,21
+209418,0,15522.55157,0,21
+209419,0,14791.95271,0,21
+209420,0,14517.97007,0,21
+209421,0,14285.01826,0,21
+209422,0,14019.48857,0,21
+209423,0,13932.02002,0,21
+209424,0,14469.84353,0,21
+209425,0,14397.02385,0,21
+209426,0,14086.40492,0,21
+209427,0,14200.90831,0,21
+209428,0,13996.79555,0,21
+209429,0,14086.13233,0,21
+209430,0,13793.6959,0,21
+209431,0,13912.48771,0,21
+209432,0,13602.27686,0,21
+209433,0,13724.76791,0,21
+209434,0,13584.14046,0,21
+209435,0,13522.89929,0,21
+209436,0,13268.09932,0,21
+209437,0,13480.88946,0,21
+209438,0,13078.81047,0,21
+209439,0,13226.08907,0,21
+209440,0,13150.63845,0,21
+209441,0,12870.65325,0,21
+209442,0,12870.65282,0,21
+209443,0,12842.4226,0,21
+209444,0,12794.76073,0,21
+209445,0,12570.85487,0,21
+209446,0,12485.04259,0,21
+209447,0,12623.30391,0,21
+209448,0,12188.72834,0,21
+209449,0,12398.01252,0,21
+209450,0,12100.76693,0,21
+209451,0,12063.22663,0,21
+209452,0,11933.74813,0,21
+209453,0,11884.49094,0,21
+209454,0,11736.79998,0,21
+209455,0,11729.99605,0,21
+209456,0,11677.36992,0,21
+209457,0,11411.8082,0,21
+209458,0,11523.52992,0,21
+209459,0,11424.3478,0,21
+209460,0,11208.68491,0,21
+209461,0,16155.60721,0,21
+209462,0,16186.54364,0,21
+209463,0,16162.93717,0,21
+209464,0,15848.07618,0,21
+209465,0,15965.45923,0,21
+209466,0,15797.48706,0,21
+209467,0,15695.27379,0,21
+209468,0,15537.94552,0,21
+209469,0,15457.10808,0,21
+209470,0,15427.97912,0,21
+209471,0,15253.90716,0,21
+209472,0,15047.32593,0,21
+209473,0,15101.54862,0,21
+209474,0,431756.8359,0,21
+209475,0,14632.98896,0,21
+209476,0,14748.76244,0,21
+209477,0,14619.34294,0,21
+209478,0,14315.66715,0,21
+209479,0,14319.07101,0,21
+209480,0,14284.77712,0,21
+209481,0,14027.92989,0,21
+209482,0,13956.16045,0,21
+209483,0,13856.00147,0,21
+209484,0,13673.77098,0,21
+209485,0,13650.00205,0,21
+209486,0,13390.21112,0,21
+209487,0,13342.61777,0,21
+209488,0,13335.33031,0,21
+209489,0,13033.98431,0,21
+209490,0,13023.33446,0,21
+209491,0,12302.6679,0,21
+209492,0,12220.20885,0,21
+209493,0,12083.09529,0,21
+209494,0,11924.2712,0,21
+209495,0,11858.70125,0,21
+209496,0,11696.52113,0,21
+209497,0,11675.24794,0,21
+209498,0,11625.00791,0,21
+209499,0,11300.71298,0,21
+209500,0,11318.00867,0,21
+209501,0,11237.38992,0,21
+209502,0,11188.00377,0,21
+209503,0,10934.38916,0,21
+209504,0,10852.38094,0,21
+209505,0,10837.09647,0,21
+209506,0,427967.4309,0,21
+209507,0,10508.38318,0,21
+209508,0,10665.04,0,21
+209509,0,10464.03974,0,21
+209510,0,10415.04726,0,21
+209511,0,10394.46589,0,21
+209512,0,10159.00028,0,21
+209513,0,10154.24338,0,21
+209514,0,10083.59022,0,21
+209515,0,9908.670038,0,21
+209516,0,9870.068564,0,21
+209517,0,9845.276603,0,21
+209518,0,9594.63794,0,21
+209519,0,9643.919191,0,21
+209520,0,9381.323175,0,21
+209521,0,4571.545107,0,21
+209522,0,4249.017262,0,21
+209523,0,4375.992763,0,21
+209524,0,4258.692056,0,21
+209525,0,4249.017371,0,21
+209526,0,4233.828303,0,21
+209527,0,4243.503081,0,21
+209528,0,4081.142603,0,21
+209529,0,4105.999164,0,21
+209530,0,4218.606995,0,21
+209531,0,3962.078359,0,21
+209532,0,4081.142829,0,21
+209533,0,4094.681211,0,21
+209534,0,421257.9607,0,21
+209535,0,3946.824373,0,21
+209536,0,3946.824435,0,21
+209537,0,3931.537284,0,21
+209538,0,3931.537346,0,21
+209539,0,3950.554936,0,21
+209540,0,3782.927779,0,21
+209541,0,3950.555063,0,21
+209542,0,3621.869341,0,21
+209543,0,3950.55519,0,21
+209544,0,3780.730408,0,21
+209545,0,3646.683071,0,21
+209546,0,3938.768323,0,21
+209547,0,3656.111279,0,21
+209548,0,3625.369224,0,21
+209549,0,3954.122611,0,21
+209550,0,3659.523413,0,21
+209551,0,3938.768629,0,21
+209552,0,3678.17538,0,21
+209553,0,3972.888925,0,21
+209554,0,3812.188991,0,21
+209555,0,3852.216278,0,21
+209556,0,3979.34278,0,21
+209557,0,3861.475243,0,21
+209558,0,3979.342897,0,21
+209559,0,3882.906871,0,21
+209560,0,4013.172602,0,21
+209561,0,4031.516722,0,21
+209562,0,4040.653624,0,21
+209563,0,4049.767742,0,21
+209564,0,4197.62483,0,21
+209565,0,4570.594107,0,21
+209566,0,4855.342472,0,21
+209567,0,4734.46379,0,21
+209568,0,4879.624315,0,21
+209569,0,4897.617721,0,21
+209570,0,4743.4708,0,21
+209571,0,4906.584491,0,21
+209572,0,4891.330294,0,21
+209573,0,4915.53169,0,21
+209574,0,4755.117021,0,21
+209575,0,4933.368521,0,21
+209576,0,4893.918183,0,21
+209577,0,4788.208185,0,21
+209578,0,4920.589343,0,21
+209579,0,4942.259046,0,21
+209580,0,421850.9049,0,21
+209581,0,4581.198786,0,21
+209582,0,4269.770725,0,21
+209583,0,4581.199083,0,21
+209584,0,4124.362553,0,21
+209585,0,4395.027759,0,21
+209586,0,4272.219903,0,21
+209587,0,4108.940641,0,21
+209588,0,4241.341012,0,21
+209589,0,4093.484027,0,21
+209590,0,4279.146645,0,21
+209591,0,5786.53824,0,21
+209592,0,4949.528163,0,21
+209593,0,5291.078613,0,21
+209594,0,5143.912245,0,21
+209595,0,5584.59925,0,21
+209596,0,5138.549751,0,21
+209597,0,5612.950853,0,21
+209598,0,5572.687027,0,21
+209599,0,5536.007891,0,21
+209600,0,5597.218503,0,21
+209601,0,5747.456304,0,21
+209602,0,5581.583733,0,21
+209603,0,5753.241733,0,21
+209604,0,5759.271794,0,21
+209605,0,5877.034546,0,21
+209606,0,5892.70644,0,21
+209607,0,5745.75927,0,21
+209608,0,423050.0223,0,21
+209609,0,5728.069622,0,21
+209610,0,6205.759969,0,21
+209611,0,6170.450511,0,21
+209612,0,6053.690979,0,21
+209613,0,6172.193508,0,21
+209614,0,6172.193639,0,21
+209615,0,6340.965318,0,21
+209616,0,6307.561212,0,21
+209617,0,6338.347358,0,21
+209618,0,6475.64534,0,21
+209619,0,6306.740094,0,21
+209620,0,6621.531562,0,21
+209621,0,6474.094653,0,21
+209622,0,6451.532579,0,21
+209623,0,6771.810661,0,21
+209624,0,6435.670955,0,21
+209625,0,6767.212871,0,21
+209626,0,6732.17655,0,21
+209627,0,6751.311885,0,21
+209628,0,6741.739438,0,21
+209629,0,6882.749649,0,21
+209630,0,6715.979362,0,21
+209631,0,6874.201862,0,21
+209632,0,423644.9249,0,21
+209633,0,7002.284355,0,21
+209634,0,6863.800071,0,21
+209635,0,6994.964395,0,21
+209636,0,6844.14417,0,21
+209637,0,6982.057558,0,21
+209638,0,7110.726014,0,21
+209639,0,6982.057925,0,21
+209640,0,6952.177083,0,21
+209641,0,2484.545872,0,21
+209642,0,2800.577912,0,21
+209643,0,2502.934946,0,21
+209644,0,2485.758873,0,21
+209645,0,2495.437612,0,21
+209646,0,2511.501652,0,21
+209647,0,2487.883987,0,21
+209648,0,2360.253439,0,21
+209649,0,1987.79196,0,21
+209650,0,1837.014569,0,21
+209651,0,1812.981896,0,21
+209652,0,1666.525757,0,21
+209653,0,1562.746596,0,21
+209654,0,1650.245924,0,21
+209655,0,1487.94802,0,21
+209656,0,1471.57706,0,21
+209657,0,1471.577155,0,21
+209658,0,1471.954454,0,21
+209659,0,1471.954549,0,21
+209660,0,1472.233846,0,21
+209661,0,417911.1856,0,21
+209662,0,1455.852975,0,21
+209663,0,1472.415356,0,21
+209664,0,1835.01976,0,21
+209665,0,2160.378698,0,21
+209666,0,1835.005003,0,21
+209667,0,2327.356802,0,21
+209668,0,2176.862965,0,21
+209669,0,2310.424105,0,21
+209670,0,2508.73669,0,21
+209671,0,2475.147305,0,21
+209672,0,2671.744846,0,21
+209673,0,2638.046423,0,21
+209674,0,2816.258111,0,21
+209675,0,2799.325108,0,21
+209676,0,2959.763049,0,21
+209677,0,3134.66073,0,21
+209678,0,2959.139171,0,21
+209679,0,3275.672775,0,21
+209680,0,3258.562869,0,21
+209681,0,3465.194442,0,21
+209682,0,3414.676966,0,21
+209683,0,3586.935961,0,21
+209684,0,3569.70056,0,21
+209685,0,3740.993523,0,21
+209686,0,3723.69279,0,21
+209687,0,3894.07254,0,21
+209688,0,4046.217247,0,21
+209689,0,4030.10788,0,21
+209690,0,420088.8464,0,21
+209691,0,4333.267661,0,21
+209692,0,4213.495105,0,21
+209693,0,4465.397358,0,21
+209694,0,4514.996021,0,21
+209695,0,4497.413502,0,21
+209696,0,4630.219281,0,21
+209697,0,4813.630266,0,21
+209698,0,4778.232868,0,21
+209699,0,4961.04666,0,21
+209700,0,4959.178593,0,21
+209701,0,5074.038368,0,21
+209702,0,5271.517043,0,21
+209703,0,5072.002075,0,21
+209704,0,5416.869536,0,21
+209705,0,5383.16922,0,21
+209706,0,5561.5394,0,21
+209707,0,5527.787076,0,21
+209708,0,5705.539219,0,21
+209709,0,5689.820451,0,21
+209710,0,5833.198002,0,21
+209711,0,5866.970347,0,21
+209712,0,5975.925829,0,21
+209713,0,6154.493315,0,21
+209714,0,6145.411709,0,21
+209715,0,421834.7672,0,21
+209716,0,6455.497991,0,21
+209717,0,6296.158362,0,21
+209718,0,6580.505011,0,21
+209719,0,6471.036447,0,21
+209720,0,6738.886305,0,21
+209721,0,6754.389241,0,21
+209722,0,6754.38942,0,21
+209723,0,6969.353897,0,21
+209724,0,6984.821954,0,21
+209725,0,7126.78052,0,21
+209726,0,7002.729005,0,21
+209727,0,7458.157737,0,21
+209728,0,7160.121066,0,21
+209729,0,7458.158147,0,21
+209730,0,7614.218947,0,21
+209731,0,7475.979408,0,21
+209732,0,7629.550665,0,21
+209733,0,7772.33056,0,21
+209734,0,7656.251267,0,21
+209735,0,7927.554092,0,21
+209736,0,7820.69883,0,21
+209737,0,7802.960577,0,21
+209738,0,8102.452685,0,21
+209739,0,7975.855996,0,21
+209740,0,7975.85621,0,21
+209741,0,8272.131246,0,21
+209742,0,7993.515816,0,21
+209743,0,8289.714427,0,21
+209744,0,8302.562896,0,21
+209745,0,8289.714869,0,21
+209746,0,8337.654956,0,21
+209747,0,8443.683718,0,21
+209748,0,423556.0703,0,21
+209749,0,8614.756053,0,21
+209750,0,8508.99665,0,21
+209751,0,8493.830081,0,21
+209752,0,8802.725902,0,21
+209753,0,8526.365464,0,21
+209754,0,8817.861018,0,21
+209755,0,8682.030692,0,21
+209756,0,8852.397997,0,21
+209757,0,8920.720829,0,21
+209758,0,9124.091041,0,21
+209759,0,8986.455956,0,21
+209760,0,9140.859382,0,21
+209761,0,20872.41612,0,21
+209762,0,23393.98425,0,21
+209763,0,38336.84178,0,21
+209764,0,30275.13213,0,21
+209765,0,33362.501,0,21
+209766,0,34488.74867,0,21
+209767,0,34653.17972,0,21
+209768,0,35336.44569,0,21
+209769,0,35882.70611,0,21
+209770,0,36068.04383,0,21
+209771,0,36869.11657,0,21
+209772,0,37234.12423,0,21
+209773,0,37763.73731,0,21
+209774,0,38391.22895,0,21
+209775,0,39050.80085,0,21
+209776,0,40479.98595,0,21
+209777,0,41375.385,0,21
+209778,0,42694.9029,0,21
+209779,0,46450.41532,0,21
+209780,0,49550.11715,0,21
+209781,0,50467.69184,0,21
+209782,0,52603.22745,0,21
+209783,0,54104.29354,0,21
+209784,0,55596.15125,0,21
+209785,0,57060.88858,0,21
+209786,0,58459.61822,0,21
+209787,0,59750.23793,0,21
+209788,0,61440.61537,0,21
+209789,0,62608.83184,0,21
+209790,0,63841.92181,0,21
+209791,0,65639.91068,0,21
+209792,0,66745.44694,0,21
+209793,0,67850.18709,0,21
+209794,0,69720.83733,0,21
+209795,0,70908.47271,0,21
+209796,0,72173.82309,0,21
+209797,0,73491.31301,0,21
+209798,0,75038.01552,0,21
+209799,0,76283.12799,0,21
+209800,0,77374.75675,0,21
+209801,0,78976.69614,0,21
+209802,0,80271.86553,0,21
+209803,0,81390.61975,0,21
+209804,0,82699.28325,0,21
+209805,0,84216.70434,0,21
+209806,0,85216.35586,0,21
+209807,0,86749.21191,0,21
+209808,0,87806.2184,0,21
+209809,0,89131.49309,0,21
+209810,0,90585.25172,0,21
+209811,0,91410.01222,0,21
+209812,0,91807.3857,0,21
+209813,0,92980.44502,0,21
+209814,0,94110.57928,0,21
+209815,0,95164.59042,0,21
+209816,0,96384.68144,0,21
+209817,0,97804.83559,0,21
+209818,0,98428.31849,0,21
+209819,0,100353.9029,0,21
+209820,0,100773.5524,0,21
+209821,0,114428.2034,0,21
+209822,0,115686.0242,0,21
+209823,0,117379.7158,0,21
+209824,0,118255.2573,0,21
+209825,0,119105.991,0,21
+209826,0,120452.7119,0,21
+209827,0,120792.2794,0,21
+209828,0,122454.4307,0,21
+209829,0,122767.8726,0,21
+209830,0,124230.6811,0,21
+209831,0,124816.3538,0,21
+209832,0,126173.6414,0,21
+209833,0,126905.8489,0,21
+209834,0,127369.1894,0,21
+209835,0,128879.943,0,21
+209836,0,129608.5751,0,21
+209837,0,130425.4043,0,21
+209838,0,131293.4493,0,21
+209839,0,132078.6941,0,21
+209840,0,132967.8835,0,21
+209841,0,135072.368,0,21
+209842,0,137861.8264,0,21
+209843,0,136492.7495,0,21
+209844,0,137489.1738,0,21
+209845,0,138784.0114,0,21
+209846,0,139989.8974,0,21
+209847,0,140701.5683,0,21
+209848,0,141921.0116,0,21
+209849,0,142936.8601,0,21
+209850,0,144019.4894,0,21
+209851,0,145115.923,0,21
+209852,0,145306.2712,0,21
+209853,0,146661.7586,0,21
+209854,0,147047.4549,0,21
+209855,0,148002.9116,0,21
+209856,0,148815.1463,0,21
+209857,0,149482.9076,0,21
+209858,0,149952.9845,0,21
+209859,0,150866.1588,0,21
+209860,0,151670.3726,0,21
+209861,0,152091.2421,0,21
+209862,0,152888.3751,0,21
+209863,0,153435.846,0,21
+209864,0,154236.3689,0,21
+209865,0,154883.989,0,21
+209866,0,155115.9994,0,21
+209867,0,156567.5418,0,21
+209868,0,156068.8274,0,21
+209869,0,157809.7285,0,21
+209870,0,157441.1649,0,21
+209871,0,158613.747,0,21
+209872,0,158889.543,0,21
+209873,0,159429.8004,0,21
+209874,0,160301.1564,0,21
+209875,0,160935.1227,0,21
+209876,0,160923.9657,0,21
+209877,0,161744.9533,0,21
+209878,0,162505.5409,0,21
+209879,0,163005.0398,0,21
+209880,0,163083.621,0,21
+209881,0,164551.25,0,21
+209882,0,165276.5924,0,21
+209883,0,166490.0498,0,21
+209884,0,167295.5578,0,21
+209885,0,168181.3499,0,21
+209886,0,169276.0063,0,21
+209887,0,170176.4645,0,21
+209888,0,170916.381,0,21
+209889,0,172052.3434,0,21
+209890,0,173448.3168,0,21
+209891,0,173373.1629,0,21
+209892,0,174969.8001,0,21
+209893,0,175594.1277,0,21
+209894,0,176636.3946,0,21
+209895,0,177478.9753,0,21
+209896,0,179359.749,0,21
+209897,0,180819.0507,0,21
+209898,0,181647.4062,0,21
+209899,0,182432.659,0,21
+209900,0,183544.5561,0,21
+209901,0,184288.8695,0,21
+209902,0,185583.9112,0,21
+209903,0,185976.7983,0,21
+209904,0,187117.0544,0,21
+209905,0,188166.4835,0,21
+209906,0,188703.8587,0,21
+209907,0,189721.8378,0,21
+209908,0,190945.8552,0,21
+209909,0,191568.5498,0,21
+209910,0,192181.0021,0,21
+209911,0,193615.2836,0,21
+209912,0,194459.6467,0,21
+209913,0,195215.4414,0,21
+209914,0,196216.5714,0,21
+209915,0,197499.2452,0,21
+209916,0,198270.8445,0,21
+209917,0,198794.2181,0,21
+209918,0,200480.0644,0,21
+209919,0,201045.2365,0,21
+209920,0,202564.0139,0,21
+209921,0,202648.7711,0,21
+209922,0,204221.0494,0,21
+209923,0,205360.4521,0,21
+209924,0,205810.1457,0,21
+209925,0,207134.2163,0,21
+209926,0,208160.7647,0,21
+209927,0,208951.6543,0,21
+209928,0,209710.0578,0,21
+209929,0,211074.7155,0,21
+209930,0,211720.8403,0,21
+209931,0,213186.1832,0,21
+209932,0,213765.7831,0,21
+209933,0,214743.9148,0,21
+209934,0,215985.4205,0,21
+209935,0,216636.0694,0,21
+209936,0,217710.1775,0,21
+209937,0,218930.645,0,21
+209938,0,219457.0624,0,21
+209939,0,220811.8876,0,21
+209940,0,221643.1653,0,21
+209941,0,224701.5235,0,21
+209942,0,226171.8062,0,21
+209943,0,226211.8077,0,21
+209944,0,227466.3692,0,21
+209945,0,228079.2387,0,21
+209946,0,228645.5414,0,21
+209947,0,229682.2728,0,21
+209948,0,230066.0909,0,21
+209949,0,231021.9094,0,21
+209950,0,232149.8743,0,21
+209951,0,233379.7074,0,21
+209952,0,233917.2942,0,21
+209953,0,234722.3416,0,21
+209954,0,235567.5462,0,21
+209955,0,236100.0673,0,21
+209956,0,237129.7057,0,21
+209957,0,237696.5299,0,21
+209958,0,238786.4821,0,21
+209959,0,239098.7132,0,21
+209960,0,239903.0128,0,21
+209961,0,240885.4765,0,21
+209962,0,241472.661,0,21
+209963,0,242351.9503,0,21
+209964,0,242665.7499,0,21
+209965,0,243833.9459,0,21
+209966,0,244384.4241,0,21
+209967,0,244993.8184,0,21
+209968,0,245875.1033,0,21
+209969,0,246537.7256,0,21
+209970,0,247238.1328,0,21
+209971,0,247736.9821,0,21
+209972,0,248972.2491,0,21
+209973,0,249494.0226,0,21
+209974,0,249905.7038,0,21
+209975,0,250844.7187,0,21
+209976,0,251514.4734,0,21
+209977,0,252917.3578,0,21
+209978,0,253565.1953,0,21
+209979,1646.923949,254247.1789,0,21
+209980,1255.773209,255160.4613,0,21
+209981,1517.434467,255474.8807,0,21
+209982,1775.600893,256576.765,0,21
+209983,1903.515557,257571.6514,0,21
+209984,2157.226228,257238.2265,0,21
+209985,2283.093767,259171.2328,0,21
+209986,2533.003232,258991.9285,0,21
+209987,2657.096003,260098.5621,0,21
+209988,2780.64406,260774.9218,0,21
+209989,3026.184112,261277.561,0,21
+209990,3148.21103,262061.2349,0,21
+209991,3390.856202,262662.4492,0,21
+209992,3390.856114,263797.0169,0,21
+209993,3751.501821,263974.8599,0,21
+209994,3751.501712,264508.2767,0,21
+209995,3989.852578,265747.3384,0,21
+209996,4108.434536,266053.66,0,21
+209997,4344.456642,266707.8095,0,21
+209998,4344.456495,267922.2681,0,21
+209999,4695.755151,267745.8322,0,21
+210000,4695.754979,268865.4899,0,21
+210001,4928.219584,269837.6975,0,21
+210002,5043.949378,271335.6567,0,21
+210003,5274.432892,271802.9083,0,21
+210004,5389.199382,273403.4295,0,21
+210005,5503.655442,273956.594,0,21
+210006,5731.653766,275547.8975,0,21
+210007,5958.466916,276396.6516,0,21
+210008,5958.469209,277392.3822,0,21
+210009,6296.540293,278171.3171,0,21
+210010,6296.542856,279532.4842,0,21
+210011,6520.538453,280990.0328,0,21
+210012,6743.458886,281239.2949,0,21
+210013,6743.461831,282624.9553,0,21
+210014,7075.883221,283607.8725,0,21
+210015,7075.88647,285258.5807,0,21
+210016,7296.232556,285368.0148,0,21
+210017,7515.589932,287117.5108,0,21
+210018,7515.593611,287760.5726,0,21
+210019,7842.820759,288863.7914,0,21
+210020,7842.824777,290387.4836,0,21
+210021,8270.469107,290443.8759,0,21
+210022,8311.717407,292136.4394,0,21
+210023,8577.678089,293444.8233,0,21
+210024,8817.163968,293669.8758,0,21
+210025,8841.706526,295449.3287,0,21
+210026,9087.929094,296237.7118,0,21
+210027,9210.587692,297194.3144,0,21
+210028,9455.017946,298209.6928,0,21
+210029,9592.555394,299161.6418,0,21
+210030,9713.991132,300614.2605,0,21
+210031,9940.492074,301099.7981,0,21
+210032,10092.08171,302623.1389,0,21
+210033,10309.4462,303011.3687,0,21
+210034,10332.42462,304590.1042,0,21
+210035,10586.87213,305149.0749,0,21
+210036,10794.97591,306113.3682,0,21
+210037,10928.84854,307083.1647,0,21
+210038,11062.326,307947.218,0,21
+210039,11283.7794,309045.9251,0,21
+210040,11298.61596,309874.4245,0,21
+210041,11753.73444,310601.4205,0,21
+210042,11563.30423,311788.0396,0,21
+210043,11987.35234,312700.5952,0,21
+210044,12016.43323,313225.3906,0,21
+210045,12234.55195,314607.2618,0,21
+210046,12277.73314,315316.6542,0,21
+210047,12682.89769,316303.2672,0,21
+210048,12509.26201,316888.7569,0,21
+210049,12941.46257,318410.5799,0,21
+210050,12955.62983,318960.387,0,21
+210051,13184.69527,319402.9465,0,21
+210052,13398.92913,321159.4478,0,21
+210053,13426.92655,321762.1893,0,21
+210054,13640.38674,322376.4473,0,21
+210055,13767.68153,323402.7882,0,21
+210056,13921.80714,324238.9613,0,21
+210057,14204.38383,325331.9704,0,21
+210058,14410.79672,325794.1343,0,21
+210059,14438.59687,327277.6094,0,21
+210060,14699.15736,328123.1635,0,21
+210061,0,0,0,21
+210062,0,0,0,21
+210063,0,0,0,21
+210064,0,0,0,21
+210065,0,0,792939.648,21
+210066,339297.2123,368537.8436,0,21
+210067,0,0,0,21
+210068,0,0,0,21
+210069,0,0,0,21
+210070,0,0,0,21
+210071,0,0,0,21
+210072,0,0,0,21
+210073,0,0,0,21
+210074,0,0,0,21
+210075,0,0,0,21
+210076,0,3.258252884,0,21
+210077,0,0,0,21
+210078,0,96.06618805,0,21
+210079,0,0,0,21
+210080,0,0,0,21
+210081,0,0,0,21
+210082,0,0,0,21
+210083,0,340.2076079,0,21
+210084,0,0,0,21
+210085,0,0,0,21
+210086,0,0,0,21
+210087,0,0,0,21
+210088,0,0,0,21
+210089,0,0,0,21
+210090,0,0,0,21
+210091,0,0,0,21
+210092,0,0,0,21
+210093,0,0,0,21
+210094,0,0,0,21
+210095,0,0,0,21
+210096,0,62.44579238,0,21
+210097,0,0,0,21
+210098,0,0,0,21
+210099,0,0,783475.3511,21
+210100,0,0,0,21
+210101,340016.7463,368532.3209,0,21
+210102,0,0,0,21
+210103,0,0,0,21
+210104,0,0,0,21
+210105,0,0,0,21
+210106,0,366.8299309,0,21
+210107,0,0,0,21
+210108,0,0,0,21
+210109,0,0,0,21
+210110,0,0,0,21
+210111,0,0,0,21
+210112,0,0,0,21
+210113,0,0,0,21
+210114,0,0,0,21
+210115,0,0,0,21
+210116,0,0,0,21
+210117,0,0,0,21
+210118,0,0,0,21
+210119,0,0,0,21
+210120,0,67.49423296,0,15.6
+210121,0,0,0,15.6
+210122,0,0,0,15.6
+210123,0,0,0,15.6
+210124,0,2.910395169,0,15.6
+210125,0,0,0,15.6
+210126,0,17.89738983,0,15.6
+210127,0,0,0,15.6
+210128,0,0,0,15.6
+210129,0,0,0,15.6
+210130,0,96.25834867,0,15.6
+210131,0,0,0,15.6
+210132,0,0,0,15.6
+210133,0,0,772129.9047,15.6
+210134,0,80.21154232,0,15.6
+210135,0,0,0,15.6
+210136,0,368523.8369,0,15.6
+210137,337936.139,0,0,15.6
+210138,0,82.01791623,0,15.6
+210139,0,0,0,15.6
+210140,0,0,0,15.6
+210141,0,0,0,15.6
+210142,0,68.01050216,0,15.6
+210143,0,0,0,15.6
+210144,0,0,0,15.6
+210145,0,0,0,15.6
+210146,0,70.4383876,0,15.6
+210147,0,0,0,15.6
+210148,0,0,0,15.6
+210149,0,0,0,15.6
+210150,0,72.39218018,0,15.6
+210151,0,0,0,15.6
+210152,0,0,0,15.6
+210153,0,0,0,15.6
+210154,0,72.50913298,0,15.6
+210155,0,0,0,15.6
+210156,0,0,0,15.6
+210157,0,0,0,15.6
+210158,0,73.62500776,0,15.6
+210159,0,0,0,15.6
+210160,0,0,0,15.6
+210161,0,0,0,15.6
+210162,0,74.88353707,0,15.6
+210163,0,0,0,15.6
+210164,0,0,0,15.6
+210165,0,0,0,15.6
+210166,0,76.4983522,0,15.6
+210167,0,0,0,15.6
+210168,0,0,764137.9936,15.6
+210169,0,0,0,15.6
+210170,0,77.54993926,0,15.6
+210171,0,368510.1084,0,15.6
+210172,0,0,0,15.6
+210173,338788.0539,0,0,15.6
+210174,0,75.11377264,0,15.6
+210175,0,0,0,15.6
+210176,0,0,0,15.6
+210177,0,0,0,15.6
+210178,0,69.29782479,0,15.6
+210179,0,0,0,15.6
+210180,0,0,0,15.6
+210181,0,0,0,15.6
+210182,0,103.4693728,0,15.6
+210183,0,0,0,15.6
+210184,0,0,0,15.6
+210185,0,432339.9902,0,15.6
+210186,0,0,0,15.6
+210187,0,0,0,15.6
+210188,0,0,0,15.6
+210189,0,0,0,15.6
+210190,0,0,0,15.6
+210191,0,0,0,15.6
+210192,0,0,0,15.6
+210193,0,0,0,15.6
+210194,0,0,0,15.6
+210195,0,0,0,15.6
+210196,0,0,0,15.6
+210197,0,0,0,15.6
+210198,0,0,0,15.6
+210199,0,0,0,15.6
+210200,0,0,0,15.6
+210201,0,0,0,15.6
+210202,0,0,0,15.6
+210203,0,0,754707.6324,15.6
+210204,0,0,0,15.6
+210205,0,0,0,15.6
+210206,0,368501.3312,0,15.6
+210207,0,0,0,15.6
+210208,0,0,0,15.6
+210209,339959.0628,0,0,15.6
+210210,0,0,0,15.6
+210211,0,432065.7995,0,15.6
+210212,0,0,0,15.6
+210213,0,0,0,15.6
+210214,0,0,0,15.6
+210215,0,0,0,15.6
+210216,0,0,0,15.6
+210217,0,0,0,15.6
+210218,0,0,0,15.6
+210219,0,0,0,15.6
+210220,0,0,0,15.6
+210221,0,0,0,15.6
+210222,0,0,0,15.6
+210223,0,0,0,15.6
+210224,0,0,0,15.6
+210225,0,0,0,15.6
+210226,0,0,0,15.6
+210227,0,0,0,15.6
+210228,0,0,0,15.6
+210229,0,0,0,15.6
+210230,0,0,0,15.6
+210231,0,0,0,15.6
+210232,0,0,0,15.6
+210233,0,0,0,15.6
+210234,0,0,0,15.6
+210235,0,0,0,15.6
+210236,0,0,0,15.6
+210237,0,431861.0739,0,15.6
+210238,0,0,748659.0536,15.6
+210239,0,0,0,15.6
+210240,0,0,0,15.6
+210241,0,0,0,15.6
+210242,0,368494.4521,0,15.6
+210243,0,0,0,15.6
+210244,0,0,0,15.6
+210245,340003.902,0,0,15.6
+210246,0,0,0,15.6
+210247,0,0,0,15.6
+210248,0,0,0,15.6
+210249,0,0,0,15.6
+210250,0,0,0,15.6
+210251,0,0,0,15.6
+210252,0,0,0,15.6
+210253,0,0,0,15.6
+210254,0,0,0,15.6
+210255,0,0,0,15.6
+210256,0,0,0,15.6
+210257,0,0,0,15.6
+210258,0,0,0,15.6
+210259,0,0,0,15.6
+210260,0,0,0,15.6
+210261,0,0,0,15.6
+210262,0,0,0,15.6
+210263,0,0,0,15.6
+210264,0,0,0,15.6
+210265,0,3.251648704,0,15.6
+210266,0,0,0,15.6
+210267,0,66.48926647,0,15.6
+210268,0,0,0,15.6
+210269,0,0,0,15.6
+210270,0,0,0,15.6
+210271,0,3.244849307,0,15.6
+210272,0,0,0,15.6
+210273,0,70.49274099,739810.3078,15.6
+210274,0,0,0,15.6
+210275,0,0,0,15.6
+210276,0,0,0,15.6
+210277,0,7.032019346,0,15.6
+210278,0,368457.2032,0,15.6
+210279,0,86.24856893,0,15.6
+210280,0,0,0,15.6
+210281,340087.489,0,0,15.6
+210282,0,0,0,15.6
+210283,0,3.889014505,0,15.6
+210284,0,0,0,15.6
+210285,0,79.55050252,0,15.6
+210286,0,0,0,15.6
+210287,0,0,0,15.6
+210288,0,0,0,15.6
+210289,0,0,0,15.6
+210290,0,85.54027318,0,15.6
+210291,0,0,0,15.6
+210292,0,0,0,15.6
+210293,0,0,0,15.6
+210294,0,0,0,15.6
+210295,0,0,0,15.6
+210296,0,4.203459293,0,15.6
+210297,0,0,0,15.6
+210298,0,115.9444976,0,15.6
+210299,0,0,0,15.6
+210300,0,0,0,15.6
+210301,0,0,0,15.6
+210302,0,0,0,15.6
+210303,0,260.0663729,0,15.6
+210304,0,0,0,15.6
+210305,0,0,0,15.6
+210306,0,0,0,15.6
+210307,0,0,0,15.6
+210308,0,0,734104.5509,15.6
+210309,0,0,0,15.6
+210310,0,0,0,15.6
+210311,0,0,0,15.6
+210312,0,0,0,15.6
+210313,0,0,0,15.6
+210314,0,368490.667,0,15.6
+210315,0,0,0,15.6
+210316,0,0,0,15.6
+210317,340088.4719,0,0,15.6
+210318,0,0,0,15.6
+210319,0,0,0,15.6
+210320,0,0,0,15.6
+210321,0,0,0,15.6
+210322,0,0,0,15.6
+210323,0,0,0,15.6
+210324,0,0,0,15.6
+210325,0,0,0,15.6
+210326,0,339.1782246,0,15.6
+210327,0,0,0,15.6
+210328,0,0,0,15.6
+210329,0,0,0,15.6
+210330,0,0,0,15.6
+210331,0,0,0,15.6
+210332,0,0,0,15.6
+210333,0,0,0,15.6
+210334,0,0,0,15.6
+210335,0,0,0,15.6
+210336,0,0,0,15.6
+210337,0,0,0,15.6
+210338,0,0,0,15.6
+210339,0,0,0,15.6
+210340,0,104.8929477,0,15.6
+210341,0,0,0,15.6
+210342,0,0,0,15.6
+210343,0,0,727418.6522,15.6
+210344,0,0,0,15.6
+210345,0,247.3038879,0,15.6
+210346,0,0,0,15.6
+210347,0,0,0,15.6
+210348,0,0,0,15.6
+210349,0,0,0,15.6
+210350,0,368420.2394,0,15.6
+210351,0,0,0,15.6
+210352,0,0,0,15.6
+210353,340011.4811,0,0,15.6
+210354,0,0,0,15.6
+210355,0,0,0,15.6
+210356,0,0,0,15.6
+210357,0,0,0,15.6
+210358,0,0,0,15.6
+210359,0,4.041366912,0,15.6
+210360,0,0,0,15.6
+210361,0,107.6235241,0,15.6
+210362,0,0,0,15.6
+210363,0,0,0,15.6
+210364,0,0,0,15.6
+210365,0,0,0,15.6
+210366,0,244.2314907,0,15.6
+210367,0,0,0,15.6
+210368,0,0,0,15.6
+210369,0,0,0,15.6
+210370,0,0,0,15.6
+210371,0,0,0,15.6
+210372,0,0,0,15.6
+210373,0,0,0,15.6
+210374,0,0,0,15.6
+210375,0,0,0,15.6
+210376,0,3.342157155,0,15.6
+210377,0,0,0,15.6
+210378,0,115.612807,721609.1826,15.6
+210379,0,0,0,15.6
+210380,0,0,0,15.6
+210381,0,0,0,15.6
+210382,0,0,0,15.6
+210383,0,66.08009416,0,15.6
+210384,0,0,0,15.6
+210385,0,0,0,15.6
+210386,0,368422.2551,0,15.6
+210387,0,0,0,15.6
+210388,0,0,0,15.6
+210389,340041.7663,0,0,15.6
+210390,0,0,0,15.6
+210391,0,0,0,15.6
+210392,0,80.12975671,0,15.6
+210393,0,0,0,15.6
+210394,0,0,0,15.6
+210395,0,0,0,15.6
+210396,0,68.89857551,0,15.6
+210397,0,0,0,15.6
+210398,0,0,0,15.6
+210399,0,0,0,15.6
+210400,0,74.20873759,0,15.6
+210401,0,0,0,15.6
+210402,0,0,0,15.6
+210403,0,0,0,15.6
+210404,0,73.79106792,0,15.6
+210405,0,0,0,15.6
+210406,0,0,0,15.6
+210407,0,0,0,15.6
+210408,0,72.33528516,0,15.6
+210409,0,0,0,15.6
+210410,0,0,0,15.6
+210411,0,0,0,15.6
+210412,0,70.5240094,717436.1849,15.6
+210413,0,0,0,15.6
+210414,0,0,0,15.6
+210415,0,0,0,15.6
+210416,0,68.61296238,0,15.6
+210417,0,0,0,15.6
+210418,0,0,0,15.6
+210419,0,0,0,15.6
+210420,0,66.56194248,0,15.6
+210421,0,114411.8329,0,15.6
+210422,0,421362.9954,0,15.6
+210423,0,447822.4835,0,15.6
+210424,0,26294.29149,0,15.6
+210425,0,34426.64799,0,15.6
+210426,340070.2301,28306.5712,0,15.6
+210427,0,28491.06286,0,15.6
+210428,0,28571.13407,0,15.6
+210429,0,28524.27486,0,15.6
+210430,0,28525.42087,0,15.6
+210431,0,28577.04465,0,15.6
+210432,0,28470.64719,0,15.6
+210433,0,28562.56715,0,15.6
+210434,0,28577.11954,0,15.6
+210435,0,28563.68564,0,15.6
+210436,0,28577.15819,0,15.6
+210437,0,28632.97749,0,15.6
+210438,0,28571.37886,0,15.6
+210439,0,28650.59415,0,15.6
+210440,0,28759.31231,0,15.6
+210441,0,28633.0278,0,15.6
+210442,0,28733.12192,0,15.6
+210443,0,28778.00279,0,15.6
+210444,0,28776.93627,0,15.6
+210445,0,28851.4931,0,15.6
+210446,0,28846.74952,712240.8981,15.6
+210447,0,28905.60267,0,15.6
+210448,0,459881.3018,0,15.6
+210449,0,28995.45013,0,15.6
+210450,0,28997.57258,0,15.6
+210451,0,0,0,15.6
+210452,0,0,0,15.6
+210453,0,0,0,15.6
+210454,0,93241.47524,0,15.6
+210455,0,8945.995155,0,15.6
+210456,0,23185.63779,0,15.6
+210457,0,35552.55392,0,15.6
+210458,0,396989.0923,0,15.6
+210459,0,29404.97125,0,15.6
+210460,0,29577.57928,0,15.6
+210461,340054.7615,29491.60725,0,15.6
+210462,0,29663.7373,0,15.6
+210463,0,29649.37706,0,15.6
+210464,0,29717.54374,0,15.6
+210465,0,29770.92779,0,15.6
+210466,0,29497.14828,0,15.6
+210467,0,29562.35172,0,15.6
+210468,0,29556.90001,0,15.6
+210469,0,29558.53042,0,15.6
+210470,0,29667.15343,0,15.6
+210471,0,29658.05796,0,15.6
+210472,0,29703.29303,0,15.6
+210473,0,460534.6504,0,15.6
+210474,0,29781.61192,0,15.6
+210475,0,29823.80003,0,15.6
+210476,0,29907.91398,0,15.6
+210477,0,29937.68715,0,15.6
+210478,0,29959.97682,0,15.6
+210479,0,30083.11781,0,15.6
+210480,0,30066.27683,707144.8657,17.8
+210481,715.7263645,1381363.175,0,17.8
+210482,256.3777286,1123101.524,0,17.8
+210483,453.5669228,228353.2574,0,17.8
+210484,453.5668981,360558.7756,0,17.8
+210485,501.1012201,533253.5018,0,17.8
+210486,501.1011891,432997.5777,0,17.8
+210487,548.047099,439509.6161,0,17.8
+210488,548.0470608,429062.0052,0,17.8
+210489,594.4441976,432515.1898,0,17.8
+210490,594.4441513,429662.5379,0,17.8
+210491,625.0873598,429454.5177,0,17.8
+210492,640.325799,428232.6959,0,17.8
+210493,663.0823926,794319.3157,0,17.8
+210494,685.7204892,425866.0674,0,17.8
+210495,693.2406629,424124.4043,0,17.8
+210496,340741.3739,423068.3607,0,17.8
+210497,0,422719.8132,0,17.8
+210498,0,420751.86,0,17.8
+210499,0,420463.8426,0,17.8
+210500,0,419194.8199,0,17.8
+210501,0,417753.6466,0,17.8
+210502,0,418303.1107,0,17.8
+210503,0,416565.5818,0,17.8
+210504,0,415805.5916,0,17.8
+210505,0,415211.3422,0,17.8
+210506,0,414455.5699,0,17.8
+210507,0,413616.9721,0,17.8
+210508,0,412893.1601,0,17.8
+210509,0,412023.4277,0,17.8
+210510,0,411789.7062,0,17.8
+210511,0,65428.39319,0,17.8
+210512,0,65288.59997,0,17.8
+210513,0,65142.37288,0,17.8
+210514,0,1027065.307,704379.7154,17.8
+210515,0,129483.4026,0,17.8
+210516,0,310801.4873,0,17.8
+210517,0,474605.956,0,17.8
+210518,0,372126.9565,0,17.8
+210519,0,394977.1506,0,17.8
+210520,0,385488.6335,0,17.8
+210521,0,388554.4436,0,17.8
+210522,0,385392.175,0,17.8
+210523,0,385692.1444,0,17.8
+210524,0,384319.1332,0,17.8
+210525,0,383663.2229,0,17.8
+210526,0,382785.9271,0,17.8
+210527,0,382342.1751,0,17.8
+210528,0,749126.9372,0,17.8
+210529,0,380687.0874,0,17.8
+210530,0,380047.4797,0,17.8
+210531,339972.6733,378438.4052,0,17.8
+210532,0,378362.9841,0,17.8
+210533,0,377128.8558,0,17.8
+210534,0,375925.3863,0,17.8
+210535,0,374207.6514,0,17.8
+210536,0,373483.3117,0,17.8
+210537,0,373110.6055,0,17.8
+210538,0,371975.2601,0,17.8
+210539,0,370713.6901,0,17.8
+210540,0,370993.1954,0,20
+210541,104851.4056,1418318.058,0,20
+210542,45629.55633,361643.3392,0,20
+210543,65545.6481,284803.0234,0,20
+210544,111794.823,402721.8978,0,20
+210545,97741.3818,422915.3184,0,20
+210546,90628.06824,386438.4576,0,20
+210547,95854.46014,386089.0443,1275.7286,20
+210548,93577.44311,386943.4287,3307.781838,20
+210549,93014.04441,385625.0891,12623.7701,20
+210550,91448.06331,384586.6276,11945.76101,20
+210551,90833.47769,383489.431,10797.97655,20
+210552,89624.19239,382003.8173,12004.27613,20
+210553,88287.07674,380863.1181,12164.86272,20
+210554,87645.94481,380448.7126,12495.42461,20
+210555,86040.50274,378452.3373,15508.05319,20
+210556,85303.75149,377951.2407,16804.47028,20
+210557,84198.12462,376954.0368,16221.82986,20
+210558,83035.82863,375759.8252,16636.79097,20
+210559,82181.1939,375179.5984,17527.81321,20
+210560,81329.44398,373557.0119,17467.53067,20
+210561,80152.86226,373210.4239,18041.52258,20
+210562,79412.63854,371570.4012,18313.92744,20
+210563,78532.87211,371665.7088,18447.95429,20
+210564,77606.40897,368251.934,18887.67798,20
+210565,76445.69084,367885.7125,19291.55177,20
+210566,75518.62071,366113.3202,19387.52455,20
+210567,74664.81213,365499.1882,19688.18852,20
+210568,73449.02339,364397.2482,20010.64105,20
+210569,72830.37059,363744.1727,20375.72107,20
+210570,72542.94389,363135.3621,20407.20106,20
+210571,72643.63976,361475.1384,20874.78101,20
+210572,72218.80399,361690.9159,21021.79279,20
+210573,72552.50245,360109.1822,21253.51083,20
+210574,71747.45333,360009.9465,21521.05003,20
+210575,72029.83515,358797.029,21380.24058,20
+210576,71754.69473,358455.8341,21430.30862,20
+210577,71409.18664,357322.6965,21442.41619,20
+210578,71581.87786,356982.9358,21858.33698,20
+210579,71179.21004,356267.8863,22064.2571,20
+210580,71095.3733,356896.5388,21961.0713,20
+210581,70990.30942,357225.8015,22436.78821,20
+210582,70586.2279,356043.6189,22475.54931,20
+210583,70634.79535,356075.9421,22064.05078,20
+210584,70238.30337,354535.3912,22320.53543,20
+210585,70166.26025,354347.446,22029.651,20
+210586,70011.09581,354294.1574,22384.2334,20
+210587,69644.80644,353745.8911,22561.55222,20
+210588,69604.55555,352742.2911,22561.66449,20
+210589,69195.5798,352537.9971,22774.54168,20
+210590,69274.33226,352057.1356,22813.46071,20
+210591,68926.69756,351538.8729,22812.71924,20
+210592,68865.03137,350606.9871,23096.47816,20
+210593,68877.40008,350704.7091,22981.29328,20
+210594,68508.00974,349867.932,23347.6892,20
+210595,68659.6683,350027.1504,23369.06865,20
+210596,68320.37817,348746.1705,23290.75054,20
+210597,68511.44494,348623.381,23586.82252,20
+210598,68099.99356,348061.6105,23485.25895,20
+210599,68226.83883,347899.0458,23786.82836,20
+210600,67740.89801,347218.3509,23544.1416,21
+210601,67829.38139,565571.3095,24060.01859,21
+210602,67349.28147,565903.9472,23795.46272,21
+210603,67484.21992,566167.4931,24235.84326,21
+210604,66834.15936,566259.3332,24196.5486,21
+210605,66990.62114,566695.0673,24230.79956,21
+210606,66583.45036,566317.4735,24502.18574,21
+210607,66184.46296,567057.8792,24420.2803,21
+210608,66230.8316,566877.0266,24924.08363,21
+210609,65806.77975,567812.7676,24512.26965,21
+210610,65443.58165,566839.1405,24967.04466,21
+210611,65382.81584,568052.6518,24940.57015,21
+210612,65052.16701,567765.2457,25180.64673,21
+210613,64401.57013,568344.171,25101.17887,21
+210614,64650.58155,568055.1178,25286.39308,21
+210615,63920.74584,568646.8773,25407.84286,21
+210616,63893.34248,568357.9229,25439.29831,21
+210617,63293.93132,569111.7973,25580.90495,21
+210618,62966.40282,568819.6403,25545.87089,21
+210619,63057.14763,569386.0107,25880.01591,21
+210620,62229.53961,569823.37,25720.0173,21
+210621,62062.16458,569424.7209,25949.45698,21
+210622,61980.47727,569774.574,25881.08854,21
+210623,61099.50454,570496.657,26140.74212,21
+210624,61112.83412,570083.7718,26194.60781,21
+210625,60686.847,570807.2584,25978.27049,21
+210626,60320.33531,571019.7307,26373.53981,21
+210627,59963.88635,570705.5911,26372.79188,21
+210628,59361.67936,571252.7661,26333.3916,21
+210629,59105.13421,571901.5023,26430.47098,21
+210630,59055.17704,571598.5073,26622.37696,21
+210631,58097.57061,571988.2923,26593.02497,21
+210632,58253.95352,572262.6103,26330.20986,21
+210633,57699.33245,572248.1337,26535.39799,21
+210634,57470.00533,573287.5384,26337.25804,21
+210635,56888.46885,572320.3357,26474.65891,21
+210636,56815.61251,573326.2252,26236.29381,21
+210637,56214.64804,573966.0125,26290.24276,21
+210638,55985.7171,573243.6533,26377.88503,21
+210639,55675.50627,574594.1015,26082.79434,21
+210640,55354.36624,574185.2865,26311.13854,21
+210641,54671.31544,574468.2477,25969.18726,21
+210642,54826.55092,575536.2715,26128.09336,21
+210643,54106.6799,574803.2275,25986.6636,21
+210644,53868.34665,577152.6609,25807.31112,21
+210645,53505.15567,577293.7591,25910.15402,21
+210646,53204.65248,578206.2101,25799.26516,21
+210647,52906.08202,578092.3016,25697.57738,21
+210648,52449.72332,578532.781,25502.0266,21
+210649,52022.53144,579254.376,25714.68951,21
+210650,51964.8618,579423.0254,25262.73577,21
+210651,51513.58725,579448.0573,25291.32156,21
+210652,51240.29829,580276.6429,25389.45231,21
+210653,50731.52793,580926.8884,25062.69035,21
+210654,50429.26106,580197.7119,24938.86519,21
+210655,50384.12333,582254.9909,24941.91138,21
+210656,49704.54137,581312.0058,24759.60712,21
+210657,49440.36619,582331.4174,24709.5387,21
+210658,49461.38147,582521.7401,24486.80552,21
+210659,48761.2366,582729.5013,24627.33605,21
+210660,48553.77379,583245.3987,24153.43955,21
+210661,34387.5471,561849.0637,14568.94569,21
+210662,33057.81937,559463.822,13533.37741,21
+210663,32990.89764,558434.4772,13351.02699,21
+210664,32484.16536,558681.7724,12996.52109,21
+210665,32320.76524,556561.5765,12718.89935,21
+210666,31887.76085,556498.1412,12599.51686,21
+210667,31646.86967,555603.7503,12204.94957,21
+210668,31231.93827,554713.4125,12071.09758,21
+210669,31084.61194,553531.6439,11803.71406,21
+210670,30642.885,553483.0089,11429.47829,21
+210671,30504.36154,552055.8379,11404.06555,21
+210672,30000.09573,551590.5049,11014.79097,21
+210673,29940.44738,550479.0246,11016.1437,21
+210674,29569.07203,550272.9441,10486.42832,21
+210675,29377.69005,548899.4601,10477.1957,21
+210676,28898.65583,548912.7766,10080.16146,21
+210677,28702.00507,547503.1545,10067.76356,21
+210678,28648.18996,546824.776,9563.192285,21
+210679,28169.61278,546408.7946,9645.093082,21
+210680,27885.36102,546630.1666,9137.892356,21
+210681,27706.54513,546074.8388,9107.392285,21
+210682,27360.15556,545337.3239,8738.884081,21
+210683,27253.66152,544537.0913,8693.565177,21
+210684,26714.32179,544291.6539,8152.261374,21
+210685,26755.8626,543463.9151,8306.174203,21
+210686,26334.35498,542966.8027,7747.917817,21
+210687,26189.93299,542168.9521,7858.726481,21
+210688,25747.05486,541924.3685,7341.127073,21
+210689,25723.94107,540870.0372,7293.920702,21
+210690,25341.21737,540203.7146,6902.739774,21
+210691,25026.56045,539858.4829,6883.592474,21
+210692,24892.18279,538786.1043,6330.563145,21
+210693,24529.08489,537904.367,6329.745074,21
+210694,24570.98363,537269.6495,6027.419264,21
+210695,23931.80112,536757.9889,5870.409679,21
+210696,23902.20761,535151.507,5317.35085,21
+210697,23746.70128,534522.4209,5450.511941,21
+210698,22921.73693,532551.3528,4864.727457,21
+210699,22361.08852,531972.6163,4864.286342,21
+210700,22503.54711,531249.5315,4437.828995,21
+210701,21715.07328,529856.6556,4392.368194,21
+210702,21857.18592,529689.419,3991.542022,21
+210703,21586.59141,528456.4072,3659.18935,21
+210704,21333.93583,527417.2392,3660.482151,21
+210705,21478.06493,527055.4652,3204.11707,21
+210706,21005.16776,525668.8109,3069.191677,21
+210707,21165.16238,525007.3783,2715.61146,21
+210708,20818.76165,524119.9867,2582.784012,21
+210709,20834.18056,523564.6321,2255.991088,21
+210710,20570.28099,522338.4229,2240.47118,21
+210711,20540.68525,521330.6116,1909.867513,21
+210712,20277.37688,520775.944,1911.120486,21
+210713,20205.53602,519724.9469,1550.669287,21
+210714,20134.30559,519154.0111,1536.139602,21
+210715,19899.71386,517634.2586,1520.353915,21
+210716,19828.33315,517479.8799,1475.28545,21
+210717,19551.467,516026.2778,1459.405426,21
+210718,19627.97999,515432.5372,1427.457742,21
+210719,19330.16011,514481.9894,1399.471623,21
+210720,19179.30822,512570.2835,1366.011423,21
+210721,19205.24789,510318.0814,1336.604914,21
+210722,18869.32261,510133.5949,1320.469892,21
+210723,18786.77849,508811.0627,1273.23617,21
+210724,18743.32226,508086.3163,1258.479673,21
+210725,18451.9153,506579.668,1212.511244,21
+210726,18410.13161,506155.6878,1194.529094,21
+210727,18334.98854,504751.7586,1164.83994,21
+210728,17877.14502,503682.4244,1133.441881,21
+210729,18118.94296,503219.7179,1100.21608,21
+210730,17747.63901,501535.194,1070.350924,21
+210731,17694.06511,501374.0744,1045.243301,21
+210732,17420.07398,499383.8898,1021.860097,21
+210733,17364.67253,499635.3054,972.9860585,21
+210734,17289.20696,497105.9864,957.9560343,21
+210735,17035.15038,497614.6843,925.8193339,21
+210736,16980.76082,495579.7098,876.2644374,21
+210737,16680.74834,495428.8061,861.1373492,21
+210738,16659.99659,493443.7834,843.7474539,21
+210739,16580.6669,493344.1449,787.0155104,21
+210740,16203.71686,491726.7134,778.1632437,21
+210741,16257.94217,491245.5138,729.7952392,21
+210742,15990.52916,489836.161,711.7307096,21
+210743,15933.61863,488911.5227,678.089742,21
+210744,15742.46541,487834.4213,644.0357966,21
+210745,15618.96362,487341.284,609.1810689,21
+210746,15415.1915,485211.4819,593.7736574,21
+210747,15279.91402,485448.6858,578.3291505,21
+210748,15198.73567,483398.7194,562.8465962,21
+210749,14950.39033,483072.1578,562.8532317,21
+210750,14868.87916,481832.8302,531.7651493,21
+210751,14821.87346,481214.6575,531.7709748,21
+210752,14458.80902,479662.4607,500.5223813,21
+210753,14466.05029,479642.3629,500.5275703,21
+210754,14238.83979,477962.4028,484.84322,21
+210755,14155.69645,477823.5039,469.1156358,21
+210756,13891.58384,476308.3842,469.1201509,21
+210757,13831.595,476126.2099,437.5265829,21
+210758,13783.52395,474518.9462,437.5306122,21
+210759,13390.93308,474300.145,405.7507559,21
+210760,13420.83489,473114.8555,405.754115,21
+210761,13190.51031,472425.5373,405.7575112,21
+210762,13104.59422,471388.9681,357.7117734,21
+210763,12824.39657,470822.3493,373.7827055,21
+210764,12902.54267,469657.6149,357.7171041,21
+210765,12492.4528,468970.4768,325.417891,21
+210766,12570.56904,468050.5037,341.5993011,21
+210767,12367.06114,467120.1411,292.8858139,21
+210768,12119.35287,466384.4667,309.1864426,21
+210769,12044.46694,465437.43,276.5268372,21
+210770,11801.9532,464434.8915,276.5283826,21
+210771,11810.59207,463847.9216,260.100303,21
+210772,11456.28154,462624.236,243.6018624,21
+210773,11587.1762,462053.2217,227.0290515,21
+210774,11127.58215,460866.1587,227.0301026,21
+210775,11256.60251,460239.3607,193.6421775,21
+210776,10885.77186,459401.6365,193.6429405,21
+210777,10950.13961,458492.4512,176.8176694,21
+210778,10687.60272,457000.2482,159.8955539,21
+210779,10546.1408,457403.103,159.896066,21
+210780,10405.43748,455185.2318,125.7246198,21
+210781,10352.4164,456745.0913,108.4520619,21
+210782,10139.51403,456755.5319,108.4523178,21
+210783,10114.26938,455876.1653,73.44393632,21
+210784,9887.965432,455866.6954,55.65011122,21
+210785,9994.897309,455357.7306,55.6501821,21
+210786,9862.588638,455222.3815,37.59585934,21
+210787,9622.608252,454404.1585,9.743764386,21
+210788,9742.719822,454437.745,0,21
+210789,9489.46463,453656.5057,0,21
+210790,9597.050218,453578.7074,0,21
+210791,9260.811973,453229.9661,0,21
+210792,9356.005935,452859.8039,0,21
+210793,9330.259424,452445.8708,0,21
+210794,9005.483184,452249.846,0,21
+210795,9088.128868,451078.1747,0,21
+210796,9088.129326,452053.7898,0,21
+210797,8844.985047,450615.71,0,21
+210798,8831.979637,450385.9846,0,21
+210799,8723.027189,450382.9695,0,21
+210800,8574.672764,449881.6674,0,21
+210801,8709.998053,449216.2788,0,21
+210802,8329.338509,449290.4084,0,21
+210803,8548.438154,448379.2858,0,21
+210804,8329.339296,448552.0412,0,21
+210805,8193.086346,447936.4886,0,21
+210806,8289.795084,447498.1334,0,21
+210807,8056.483188,446835.4335,0,21
+210808,8056.48358,447091.631,0,21
+210809,7795.542943,446241.1754,0,21
+210810,8029.93791,445918.3801,0,21
+210811,7671.279197,445876.3276,0,21
+210812,7782.205186,446024.9849,0,21
+210813,7644.519709,445816.8752,0,21
+210814,7644.520093,445280.3544,0,21
+210815,7519.913305,446489.897,0,21
+210816,7506.464388,444884.156,0,21
+210817,7381.538092,446604.357,0,21
+210818,7381.538907,445289.1262,0,21
+210819,7242.783072,445695.1298,0,21
+210820,7242.782629,445795.0509,0,21
+210821,7229.220343,446288.2961,0,21
+210822,6977.782172,445427.2001,0,21
+210823,6977.763389,446335.1914,0,21
+210824,6725.061332,445939.8669,0,21
+210825,6824.177205,446340.1449,0,21
+210826,6711.351814,446040.1489,0,21
+210827,6697.611638,446333.1718,0,21
+210828,6443.521454,446724.2651,0,21
+210829,6683.840945,446254.6993,0,21
+210830,6315.987422,447103.4489,0,21
+210831,6415.824501,446541.8236,0,21
+210832,6415.824579,447181.4248,0,21
+210833,6174.223749,447280.6566,0,21
+210834,6274.298164,447060.9133,0,21
+210835,6146.333961,447769.362,0,21
+210836,6018.030579,447527.1216,0,21
+210837,6132.340194,447892.3289,0,21
+210838,5889.381708,448452.3817,0,21
+210839,5989.941976,448154.8584,0,21
+210840,5861.225252,448502.7775,0,21
+210841,5875.268772,447145.0326,0,21
+210842,5847.094775,448250.2521,0,21
+210843,5717.991854,449126.5716,0,21
+210844,5832.930633,448362.3211,0,21
+210845,5588.529383,449222.141,0,21
+210846,5588.529229,447972.8463,0,21
+210847,5560.021058,448493.2735,0,21
+210848,5444.429575,448290.217,0,21
+210849,5415.774365,448125.7678,0,21
+210850,5430.120254,448208.9862,0,21
+210851,5285.462554,448317.9367,0,21
+210852,5169.192439,447668.4777,0,21
+210853,5271.039599,448322.9369,0,21
+210854,5009.188407,447764.2661,0,21
+210855,5154.769284,447639.7537,0,21
+210856,4980.065329,448103.7039,0,21
+210857,4892.210534,447510.3941,0,21
+210858,4980.063925,447938.2957,0,21
+210859,4731.12227,447833.24,0,21
+210860,4848.46468,447376.973,0,21
+210861,4716.45849,447673.6064,0,21
+210862,4584.035982,447571.9972,0,21
+210863,4686.999548,447779.9777,0,21
+210864,4451.18767,448405.6705,0,21
+210865,4436.391622,449200.0377,0,21
+210866,4539.647543,448824.57,0,21
+210867,4303.061986,449201.427,0,21
+210868,4273.240671,449198.6398,0,21
+210869,4288.174508,449257.7271,0,21
+210870,4139.368183,449220.4467,0,21
+210871,4139.367837,448871.761,0,21
+210872,4109.255294,448968.7743,0,21
+210873,3885.308028,448879.0525,0,21
+210874,3974.819981,447872.795,0,21
+210875,3855.093791,448512.6749,0,21
+210876,3839.908584,447691.4761,0,21
+210877,3704.507957,447587.1981,0,21
+210878,3704.507652,447033.3148,0,21
+210879,3689.213512,447194.3068,0,21
+210880,3553.242844,447002.4695,0,21
+210881,3416.760303,446207.5125,0,21
+210882,3537.833261,446564.9919,0,21
+210883,3279.739086,445589.777,0,21
+210884,3401.290214,446083.2402,0,21
+210885,3248.614474,445120.0285,0,21
+210886,3126.568047,445317.3517,0,21
+210887,3248.614346,444686.8612,0,21
+210888,2972.620763,444413.1898,0,21
+210889,2972.620689,444467.0814,0,21
+210890,3079.381074,443683.6337,0,21
+210891,2710.083828,443882.1879,0,21
+210892,2925.000341,443437.8178,0,21
+210893,2694.211357,442454.8569,0,21
+210894,2785.879316,443233.7033,0,21
+210895,2538.009072,442057.2873,0,21
+210896,2646.12021,442592.2576,0,21
+210897,2397.067373,441599.607,0,21
+210898,2613.624859,441481.0243,0,21
+210899,2255.403446,441569.3874,0,21
+210900,2348.17929,440568.9864,0,21
+210901,5998.085479,462915.9187,0,21
+210902,6028.000846,462225.0183,0,21
+210903,6224.599737,461637.2414,0,21
+210904,6254.515036,460186.5296,0,21
+210905,5998.083323,459337.9622,0,21
+210906,6337.422066,458386.5602,0,21
+210907,6111.485767,497079.5534,0,21
+210908,6209.565796,472253.7308,0,21
+210909,6111.484583,478199.3703,0,21
+210910,6194.483528,478352.9211,0,21
+210911,6209.563937,476877.0854,0,21
+210912,6081.370817,477389.0164,0,21
+210913,6179.349372,475777.0451,0,21
+210914,6081.3696,475147.3945,0,21
+210915,6179.348103,474401.1905,0,21
+210916,5937.648011,474146.4385,0,21
+210917,6164.162081,472684.5085,0,21
+210918,6051.050122,472685.567,0,21
+210919,6051.049499,470992.4605,0,21
+210920,6020.516712,471133.448,0,21
+210921,6035.809743,468989.3497,0,21
+210922,6035.809113,469643.4771,0,21
+210923,6005.164545,467353.0367,0,21
+210924,5907.111048,467268.3397,0,21
+210925,6005.16328,465937.5901,0,21
+210926,5891.759547,464574.3639,0,21
+210927,5989.75351,464339.183,0,21
+210928,5876.349826,462894.4288,0,21
+210929,5876.34921,462814.1007,0,21
+210930,5860.880186,460632.8474,0,21
+210931,5860.879568,459984.8838,0,21
+210932,5845.348794,459250.382,0,21
+210933,5860.878325,457556.6421,0,21
+210934,5716.05412,457444.0134,0,21
+210935,5829.75305,455840.4759,0,21
+210936,5731.646799,454053.1825,0,21
+210937,5700.392577,453814.4278,0,21
+210938,5700.391977,452186.9191,0,21
+210939,5700.391375,451039.1501,0,21
+210940,5684.662819,450681.3752,0,21
+210941,5570.661307,448808.3575,0,21
+210942,5570.660727,447396.4296,0,21
+210943,5668.862297,447105.0097,0,21
+210944,5538.988597,445696.4984,0,21
+210945,5554.860277,443558.6873,0,21
+210946,5424.680028,443225.2807,0,21
+210947,5523.037948,442492.775,0,21
+210948,5538.986184,440329.4058,0,21
+210949,5278.081215,439914.1293,0,21
+210950,5523.036117,438417.0893,0,21
+210951,5278.080145,436590.3229,0,21
+210952,5490.893141,435317.1447,0,21
+210953,5278.079,434739.4104,0,21
+210954,5261.965622,433161.1493,0,21
+210955,5245.764069,433023.681,0,21
+210956,5245.76353,429951.0219,0,21
+210957,5245.762989,429524.0112,0,21
+210958,5229.468404,429526.1542,0,21
+210959,5122.690323,426334.682,0,21
+210960,5213.074694,425829.8647,0,21
+210961,4999.271554,426164.9294,0,21
+210962,5213.075132,424138.1958,0,21
+210963,4966.381087,425584.9612,0,21
+210964,5081.640784,423719.4144,0,21
+210965,4966.38086,424321.8871,0,21
+210966,4949.770666,423379.5508,0,21
+210967,4949.770554,423143.9399,0,21
+210968,4817.449817,421985.2575,0,21
+210969,4933.03892,423209.0124,0,21
+210970,4701.524568,421140.3675,0,21
+210971,4800.586084,422012.1944,0,21
+210972,4667.652388,420634.8122,0,21
+210973,4684.660857,420588.4298,0,21
+210974,4534.214303,420082.4519,0,21
+210975,4408.944659,420545.2859,0,21
+210976,4400.243168,418930.071,0,21
+210977,4148.362559,418618.9322,0,21
+210978,4121.511737,418605.8756,0,21
+210979,3758.095918,418089.7926,0,21
+210980,3857.971794,417686.5726,0,21
+210981,3481.748263,417444.8739,0,21
+210982,3481.748215,415524.4035,0,21
+210983,3241.86397,416794.3791,0,21
+210984,3121.254915,416847.9079,0,21
+210985,3000.18276,414177.2529,0,21
+210986,2756.586822,414878.4413,0,21
+210987,2756.586794,415479.6147,0,21
+210988,2510.937403,413286.7611,0,21
+210989,2387.292113,413998.2017,0,21
+210990,2263.068708,413002.4409,0,21
+210991,2263.068692,412477.9897,0,21
+210992,2012.778625,411561.3535,0,21
+210993,2012.778613,412287.3272,0,21
+210994,1886.649207,411242.4825,0,21
+210995,1759.814898,410911.6175,0,21
+210996,1886.649187,409912.0191,0,21
+210997,1632.232716,410422.1347,0,21
+210998,1632.232709,408428.236,0,21
+210999,1632.232702,409543.6616,0,21
+211000,1632.232695,408952.4303,0,21
+211001,1503.85306,407639.3865,0,21
+211002,1503.853054,407208.1326,0,21
+211003,1632.232676,407829.1687,0,21
+211004,1374.617994,405978.1851,0,21
+211005,1632.232663,406840.0392,0,21
+211006,1503.853033,405366.5202,0,21
+211007,1503.853028,405312.3487,0,21
+211008,1503.853023,403942.7163,0,21
+211009,1632.232639,405094.8823,0,21
+211010,1503.853014,403541.98,0,21
+211011,1632.232628,402751.2467,0,21
+211012,1503.853005,402949.691,0,21
+211013,1759.814764,402529.3955,0,21
+211014,1503.852996,402171.8553,0,21
+211015,1759.814751,400272.5409,0,21
+211016,1632.232602,401765.1397,0,21
+211017,1632.232597,400461.3313,0,21
+211018,1632.232592,398918.4665,0,21
+211019,1759.814728,400064.8571,0,21
+211020,1632.232583,398725.6528,0,21
+211021,1503.852958,397566.8754,0,21
+211022,1632.232562,396592.3356,0,21
+211023,1632.232556,394994.2244,0,21
+211024,1374.617912,394547.6768,0,21
+211025,1503.852939,392850.5122,0,21
+211026,1503.852934,391633.9145,0,21
+211027,1374.6179,389671.2568,0,21
+211028,1503.852924,389811.9748,0,21
+211029,1374.617892,386515.1254,0,21
+211030,1244.458754,386593.0313,0,21
+211031,1374.617884,384769.1703,0,21
+211032,1244.458748,383456.9879,0,21
+211033,1113.292719,382776.024,0,21
+211034,1244.458743,380565.8073,0,21
+211035,981.0179046,379551.3238,0,21
+211036,847.5055906,377640.1562,0,21
+211037,981.0179014,377105.3462,0,21
+211038,712.5875834,376062.5115,0,21
+211039,576.0338927,373337.293,0,21
+211040,437.5089315,373453.8341,0,21
+211041,437.5089313,371291.6898,0,21
+211042,0,369659.4621,0,21
+211043,151.8670228,368974.0838,0,21
+211044,0,367454.7097,0,21
+211045,0,366228.4702,0,21
+211046,0,364377.1167,0,21
+211047,0,363110.0056,0,21
+211048,0,362288.028,0,21
+211049,0,361421.7347,0,21
+211050,0,359039.2863,0,21
+211051,0,358905.5118,0,21
+211052,0,356017.7779,0,21
+211053,0,352920.6082,0,21
+211054,0,351100.1215,0,21
+211055,0,349639.7859,0,21
+211056,0,345961.2549,0,21
+211057,0,345344.1045,0,21
+211058,0,342919.9425,0,21
+211059,0,340255.7275,0,21
+211060,0,338933.5381,0,21
+211061,0,335450.9834,0,21
+211062,0,335553.1359,0,21
+211063,0,329451.2288,0,21
+211064,0,328919.8934,0,21
+211065,0,325005.2918,0,21
+211066,0,322788.0441,0,21
+211067,0,321398.2511,0,21
+211068,0,318644.7842,0,21
+211069,0,316355.1522,0,21
+211070,0,313972.5507,0,21
+211071,0,311083.2471,0,21
+211072,0,310372.239,0,21
+211073,0,306284.4048,0,21
+211074,0,304067.6772,0,21
+211075,0,303376.937,0,21
+211076,0,299072.8721,0,21
+211077,0,296433.1903,0,21
+211078,0,294208.655,0,21
+211079,0,289689.8371,0,21
+211080,0,289524.2075,0,21
+211081,0,287405.3581,0,21
+211082,0,285477.5023,0,21
+211083,0,284868.9462,0,21
+211084,0,282626.102,0,21
+211085,0,281495.2174,0,21
+211086,0,280334.6819,0,21
+211087,0,277467.9832,0,21
+211088,0,277576.2447,0,21
+211089,0,274976.5651,0,21
+211090,0,273249.5478,0,21
+211091,0,273204.5499,0,21
+211092,0,269338.5158,0,21
+211093,0,268619.9277,0,21
+211094,0,267387.3029,0,21
+211095,0,265748.7591,0,21
+211096,0,264045.2654,0,21
+211097,0,262407.7709,0,21
+211098,0,260576.5883,0,21
+211099,0,259294.7859,0,21
+211100,0,257927.8749,0,21
+211101,0,256775.7744,0,21
+211102,0,252915.2947,0,21
+211103,0,251954.8107,0,21
+211104,0,248876.2713,0,21
+211105,0,249334.2728,0,21
+211106,0,246228.0481,0,21
+211107,0,245126.9671,0,21
+211108,0,243256.8468,0,21
+211109,0,243598.4145,0,21
+211110,0,238743.133,0,21
+211111,0,240220.7128,0,21
+211112,0,239032.5753,0,21
+211113,0,237375.6409,0,21
+211114,0,236763.4899,0,21
+211115,0,235301.1103,0,21
+211116,0,235262.7869,0,21
+211117,0,234021.9336,0,21
+211118,0,233334.5782,0,21
+211119,0,232368.407,0,21
+211120,0,231273.3628,0,21
+211121,0,230522.5333,0,21
+211122,0,230159.6057,0,21
+211123,0,229208.6175,0,21
+211124,0,228029.0609,0,21
+211125,0,227544.6341,0,21
+211126,0,226518.9326,0,21
+211127,0,226295.5439,0,21
+211128,0,225176.5447,0,21
+211129,0,224224.4979,0,21
+211130,0,224247.9165,0,21
+211131,0,222770.2253,0,21
+211132,0,223233.4929,0,21
+211133,0,221645.2906,0,21
+211134,0,221174.5781,0,21
+211135,0,221291.7156,0,21
+211136,0,219524.7365,0,21
+211137,0,219791.8577,0,21
+211138,0,218446.9593,0,21
+211139,0,218292.3106,0,21
+211140,0,220280.7129,0,21
+211141,0,219703.6017,0,21
+211142,0,218063.3799,0,21
+211143,0,219629.4578,0,21
+211144,0,216616.7955,0,21
+211145,0,217867.0737,0,21
+211146,0,216655.1013,0,21
+211147,0,215439.9838,0,21
+211148,0,216478.5031,0,21
+211149,0,214103.8584,0,21
+211150,0,214556.6905,0,21
+211151,0,213048.9956,0,21
+211152,0,214225.5114,0,21
+211153,0,211693.6763,0,21
+211154,0,212022.2663,0,21
+211155,0,211813.4619,0,21
+211156,0,209953.2124,0,21
+211157,0,210763.0983,0,21
+211158,0,210559.2221,0,21
+211159,0,207899.2401,0,21
+211160,0,209966.3757,0,21
+211161,0,207446.8229,0,21
+211162,0,207979.6641,0,21
+211163,0,207134.8841,0,21
+211164,0,206856.7192,0,21
+211165,0,206136.5662,0,21
+211166,0,205513.9391,0,21
+211167,0,205040.9392,0,21
+211168,0,205552.0958,0,21
+211169,0,203758.356,0,21
+211170,0,204810.0501,0,21
+211171,0,203162.3452,0,21
+211172,0,204216.0325,0,21
+211173,0,204292.9578,0,21
+211174,0,204083.4061,0,21
+211175,0,204311.4016,0,21
+211176,0,204520.5172,0,21
+211177,0,205287.7304,0,21
+211178,0,204392.1919,0,21
+211179,0,204774.1837,0,21
+211180,0,205560.6405,0,21
+211181,0,206125.6751,0,21
+211182,0,204840.7086,0,21
+211183,0,206268.0361,0,21
+211184,0,206235.0969,0,21
+211185,0,206762.0171,0,21
+211186,0,206522.8119,0,21
+211187,0,207286.1509,0,21
+211188,0,208181.1897,0,21
+211189,0,207770.3282,0,21
+211190,0,209171.3412,0,21
+211191,0,207961.8493,0,21
+211192,0,210647.7223,0,21
+211193,0,208885.2486,0,21
+211194,0,210172.2488,0,21
+211195,0,211765.8922,0,21
+211196,0,209644.9763,0,21
+211197,0,212192.1869,0,21
+211198,0,212629.5009,0,21
+211199,0,213719.4623,0,21
+211200,0,215693.9636,0,21
+211201,0,0,0,21
+211202,0,378.5309619,0,21
+211203,0,0,0,21
+211204,0,0,0,21
+211205,0,0,0,21
+211206,0,0,0,21
+211207,0,0,0,21
+211208,0,0,0,21
+211209,0,0,0,21
+211210,0,0,0,21
+211211,0,0,0,21
+211212,0,0,0,21
+211213,0,0,0,21
+211214,0,0,0,21
+211215,0,0,0,21
+211216,0,2.782487155,0,21
+211217,0,0,0,21
+211218,0,73.47764825,0,21
+211219,0,0,0,21
+211220,0,0,0,21
+211221,0,0,0,21
+211222,0,7.507939782,0,21
+211223,0,0,0,21
+211224,0,107.0198723,0,21
+211225,0,0,0,21
+211226,0,0,0,21
+211227,0,0,0,21
+211228,0,3.388222935,0,21
+211229,0,0,0,21
+211230,0,80.39761385,0,21
+211231,0,0,0,21
+211232,0,0,0,21
+211233,0,0,0,21
+211234,0,0,0,21
+211235,0,34.14414526,0,21
+211236,0,0,0,21
+211237,0,0,0,21
+211238,0,0,0,21
+211239,0,0,0,21
+211240,0,0,0,21
+211241,0,0,0,21
+211242,0,0,0,21
+211243,0,0,0,21
+211244,0,0,0,21
+211245,0,0,0,21
+211246,0,0,0,21
+211247,0,0,0,21
+211248,0,0,0,21
+211249,0,0,0,21
+211250,0,0,0,21
+211251,0,0,0,21
+211252,0,0,0,21
+211253,0,0,0,21
+211254,0,0,0,21
+211255,0,0,0,21
+211256,0,0,0,21
+211257,0,0,0,21
+211258,0,0,0,21
+211259,0,0,0,21
+211260,0,0,0,21
+211261,0,0,0,21
+211262,0,0,0,21
+211263,0,0,0,21
+211264,0,0,0,21
+211265,0,0,0,21
+211266,0,0,0,21
+211267,0,0,854420.7787,21
+211268,0,0,0,21
+211269,0,0,0,21
+211270,337891.2657,0,0,21
+211271,0,368361.7973,0,21
+211272,0,0,0,21
+211273,0,0,0,21
+211274,0,0,0,21
+211275,0,0,0,21
+211276,0,0,0,21
+211277,0,0,0,21
+211278,0,0,0,21
+211279,0,0,0,21
+211280,0,0,0,21
+211281,0,0,0,21
+211282,0,0,0,21
+211283,0,0,0,21
+211284,0,0,0,21
+211285,0,0,0,21
+211286,0,0,0,21
+211287,0,0,0,21
+211288,0,429682.0425,0,21
+211289,0,0,0,21
+211290,0,0,0,21
+211291,0,0,0,21
+211292,0,0,0,21
+211293,0,0,0,21
+211294,0,0,0,21
+211295,0,0,0,21
+211296,0,0,0,21
+211297,0,0,0,21
+211298,0,0,0,21
+211299,0,0,0,21
+211300,0,0,0,21
+211301,0,0,0,21
+211302,0,0,0,21
+211303,0,0,837939.0822,21
+211304,0,0,0,21
+211305,0,0,0,21
+211306,0,0,0,21
+211307,0,87.31148514,0,21
+211308,0,0,0,21
+211309,337890.2398,0,0,21
+211310,0,429631.4422,0,21
+211311,0,368380.8338,0,21
+211312,0,0,0,21
+211313,0,0,0,21
+211314,0,0,0,21
+211315,0,0,0,21
+211316,0,0,0,21
+211317,0,0,0,21
+211318,0,0,0,21
+211319,0,0,0,21
+211320,0,0,0,21
+211321,0,0,0,21
+211322,0,0,0,21
+211323,0,0,0,21
+211324,0,0,0,21
+211325,0,0,0,21
+211326,0,0,0,21
+211327,0,0,0,21
+211328,0,0,0,21
+211329,0,0,0,21
+211330,0,429569.7611,0,21
+211331,0,0,0,21
+211332,0,0,0,21
+211333,0,0,0,21
+211334,0,0,0,21
+211335,0,0,0,21
+211336,0,0,0,21
+211337,0,0,0,21
+211338,0,0,0,21
+211339,0,0,0,21
+211340,0,0,822880.9829,21
+211341,0,0,0,21
+211342,0,0,0,21
+211343,0,0,0,21
+211344,0,0,0,21
+211345,0,0,0,21
+211346,0,0,0,21
+211347,0,0,0,21
+211348,337804.9919,0,0,21
+211349,0,0,0,21
+211350,0,429511.149,0,21
+211351,0,368369.6069,0,21
+211352,0,0,0,21
+211353,0,0,0,21
+211354,0,0,0,21
+211355,0,0,0,21
+211356,0,0,0,21
+211357,0,0,0,21
+211358,0,0,0,21
+211359,0,0,0,21
+211360,0,0,0,21
+211361,0,0,0,21
+211362,0,0,0,21
+211363,0,0,0,21
+211364,0,0,0,21
+211365,0,0,0,21
+211366,0,0,0,21
+211367,0,0,0,21
+211368,0,0,0,21
+211369,0,0,0,21
+211370,0,0,0,21
+211371,0,0,0,21
+211372,0,0,0,21
+211373,0,0,0,21
+211374,0,0,0,21
+211375,0,0,0,21
+211376,0,0,0,21
+211377,0,0,809282.2301,21
+211378,0,0,0,21
+211379,0,0,0,21
+211380,0,0,0,21
+211381,0,0,0,21
+211382,0,0,0,21
+211383,0,0,0,21
+211384,0,0,0,21
+211385,0,0,0,21
+211386,0,0,0,21
+211387,337746.5947,0,0,21
+211388,0,0,0,21
+211389,0,0,0,21
+211390,0,0,0,21
+211391,0,0,0,21
+211392,0,368356.5485,0,21
+211393,0,429449.4865,0,21
+211394,0,0,0,21
+211395,0,0,0,21
+211396,0,0,0,21
+211397,0,0,0,21
+211398,0,0,0,21
+211399,0,0,0,21
+211400,0,0,0,21
+211401,0,0,0,21
+211402,0,0,0,21
+211403,0,0,0,21
+211404,0,0,0,21
+211405,0,429066.7443,0,21
+211406,0,0,0,21
+211407,0,0,0,21
+211408,0,0,0,21
+211409,0,0,0,21
+211410,0,0,0,21
+211411,0,0,0,21
+211412,0,0,0,21
+211413,0,0,0,21
+211414,0,0,796925.9352,21
+211415,0,0,0,21
+211416,0,0,0,21
+211417,0,0,0,21
+211418,0,0,0,21
+211419,0,0,0,21
+211420,0,0,0,21
+211421,0,0,0,21
+211422,0,0,0,21
+211423,0,0,0,21
+211424,0,0,0,21
+211425,0,0,0,21
+211426,0,0,0,21
+211427,337646.4617,0,0,21
+211428,0,0,0,21
+211429,0,0,0,21
+211430,0,429294.6,0,21
+211431,0,0,0,21
+211432,0,0,0,21
+211433,0,368353.3939,0,21
+211434,0,0,0,21
+211435,0,0,0,21
+211436,0,0,0,21
+211437,0,0,0,21
+211438,0,0,0,21
+211439,0,0,0,21
+211440,0,0,0,21
+211441,0,0,0,21
+211442,0,0,0,21
+211443,0,0,0,21
+211444,0,0,0,21
+211445,0,0,0,21
+211446,0,0,0,21
+211447,0,0,0,21
+211448,0,0,0,21
+211449,0,0,0,21
+211450,0,429225.2356,0,21
+211451,0,0,785075.8447,21
+211452,0,0,0,21
+211453,0,0,0,21
+211454,0,0,0,21
+211455,0,0,0,21
+211456,0,0,0,21
+211457,0,0,0,21
+211458,0,0,0,21
+211459,0,0,0,21
+211460,0,0,0,21
+211461,0,0,0,21
+211462,0,0,0,21
+211463,0,0,0,21
+211464,0,0,0,21
+211465,0,0,0,21
+211466,0,0,0,21
+211467,339025.0786,429293.5585,0,21
+211468,0,0,0,21
+211469,0,0,0,21
+211470,0,0,0,21
+211471,0,0,0,21
+211472,0,0,0,21
+211473,0,0,0,21
+211474,0,368354.3089,0,21
+211475,0,0,0,21
+211476,0,0,0,21
+211477,0,0,0,21
+211478,0,0,0,21
+211479,0,0,0,21
+211480,0,0,0,21
+211481,0,0,0,21
+211482,0,0,0,21
+211483,0,0,0,21
+211484,0,429281.2663,0,21
+211485,0,0,0,21
+211486,0,0,0,21
+211487,0,0,0,21
+211488,0,0,775543.4288,21
+211489,0,0,0,21
+211490,0,0,0,21
+211491,0,0,0,21
+211492,0,0,0,21
+211493,0,0,0,21
+211494,0,0,0,21
+211495,0,0,0,21
+211496,0,0,0,21
+211497,0,0,0,21
+211498,0,0,0,21
+211499,0,0,0,21
+211500,0,0,0,21
+211501,0,0,0,21
+211502,0,429115.2833,0,21
+211503,0,0,0,21
+211504,0,0,0,21
+211505,0,0,0,21
+211506,0,0,0,21
+211507,339864.6433,0,0,21
+211508,0,0,0,21
+211509,0,0,0,21
+211510,0,0,0,21
+211511,0,0,0,21
+211512,0,0,0,21
+211513,0,0,0,21
+211514,0,0,0,21
+211515,0,368350.6916,0,21
+211516,0,0,0,21
+211517,0,0,0,21
+211518,0,0,0,21
+211519,0,0,0,21
+211520,0,0,0,21
+211521,0,0,0,21
+211522,0,0,0,21
+211523,0,0,0,21
+211524,0,0,0,21
+211525,0,0,766183.4434,21
+211526,0,0,0,21
+211527,0,0,0,21
+211528,0,0,0,21
+211529,0,0,0,21
+211530,0,0,0,21
+211531,0,0,0,21
+211532,0,0,0,21
+211533,0,0,0,21
+211534,0,0,0,21
+211535,0,0,0,21
+211536,0,0,0,21
+211537,0,7.616991978,0,21
+211538,0,0,0,21
+211539,0,78.67438984,0,21
+211540,0,0,0,21
+211541,0,0,0,21
+211542,0,0,0,21
+211543,0,3.463934389,0,21
+211544,0,0,0,21
+211545,0,0,0,21
+211546,0,85.40585809,0,21
+211547,339936.2147,0,0,21
+211548,0,0,0,21
+211549,0,0,0,21
+211550,0,0,0,21
+211551,0,0,0,21
+211552,0,0,0,21
+211553,0,0,0,21
+211554,0,0,0,21
+211555,0,0,0,21
+211556,0,368338.5263,0,21
+211557,0,0,0,21
+211558,0,0,0,21
+211559,0,0,0,21
+211560,0,0,0,15.6
+211561,0,0,0,15.6
+211562,0,0,757574.8493,15.6
+211563,0,0,0,15.6
+211564,0,0,0,15.6
+211565,0,0,0,15.6
+211566,0,0,0,15.6
+211567,0,0,0,15.6
+211568,0,0,0,15.6
+211569,0,0,0,15.6
+211570,0,0,0,15.6
+211571,0,2.716516792,0,15.6
+211572,0,0,0,15.6
+211573,0,0,0,15.6
+211574,0,56.44737151,0,15.6
+211575,0,0,0,15.6
+211576,0,0,0,15.6
+211577,0,0,0,15.6
+211578,0,0,0,15.6
+211579,0,0,0,15.6
+211580,0,0,0,15.6
+211581,0,0,0,15.6
+211582,0,0,0,15.6
+211583,0,0,0,15.6
+211584,0,251.4580934,0,15.6
+211585,0,0,0,15.6
+211586,0,0,0,15.6
+211587,339936.2196,0,0,15.6
+211588,0,0,0,15.6
+211589,0,0,0,15.6
+211590,0,0,0,15.6
+211591,0,0,0,15.6
+211592,0,0,0,15.6
+211593,0,0,0,15.6
+211594,0,231.5864012,0,15.6
+211595,0,0,0,15.6
+211596,0,0,0,15.6
+211597,0,368342.8257,0,15.6
+211598,0,0,0,15.6
+211599,0,0,749864.2191,15.6
+211600,0,0,0,15.6
+211601,0,0,0,15.6
+211602,0,0,0,15.6
+211603,0,0,0,15.6
+211604,0,0,0,15.6
+211605,0,0,0,15.6
+211606,0,0,0,15.6
+211607,0,2.448883767,0,15.6
+211608,0,0,0,15.6
+211609,0,0,0,15.6
+211610,0,235.552723,0,15.6
+211611,0,0,0,15.6
+211612,0,0,0,15.6
+211613,0,0,0,15.6
+211614,0,0,0,15.6
+211615,0,0,0,15.6
+211616,0,0,0,15.6
+211617,0,0,0,15.6
+211618,0,0,0,15.6
+211619,0,0,0,15.6
+211620,0,0,0,15.6
+211621,0,0,0,15.6
+211622,0,0,0,15.6
+211623,0,2.375181566,0,15.6
+211624,0,0,0,15.6
+211625,0,0,0,15.6
+211626,0,250.5821866,0,15.6
+211627,339936.2264,0,0,15.6
+211628,0,0,0,15.6
+211629,0,0,0,15.6
+211630,0,0,0,15.6
+211631,0,0,0,15.6
+211632,0,0,0,15.6
+211633,0,0,0,15.6
+211634,0,0,0,15.6
+211635,0,0,0,15.6
+211636,0,229.9733132,742967.0727,15.6
+211637,0,0,0,15.6
+211638,0,368338.4329,0,15.6
+211639,0,0,0,15.6
+211640,0,0,0,15.6
+211641,0,0,0,15.6
+211642,0,0,0,15.6
+211643,0,0,0,15.6
+211644,0,0,0,15.6
+211645,0,0,0,15.6
+211646,0,0,0,15.6
+211647,0,0,0,15.6
+211648,0,0,0,15.6
+211649,0,2.604693837,0,15.6
+211650,0,0,0,15.6
+211651,0,0,0,15.6
+211652,0,246.256007,0,15.6
+211653,0,0,0,15.6
+211654,0,0,0,15.6
+211655,0,0,0,15.6
+211656,0,0,0,15.6
+211657,0,0,0,15.6
+211658,0,0,0,15.6
+211659,0,0,0,15.6
+211660,0,0,0,15.6
+211661,0,0,0,15.6
+211662,0,236.6544291,0,15.6
+211663,0,0,0,15.6
+211664,0,0,0,15.6
+211665,0,0,0,15.6
+211666,0,0,0,15.6
+211667,339936.2317,0,0,15.6
+211668,0,0,0,15.6
+211669,0,0,0,15.6
+211670,0,0,0,15.6
+211671,0,0,0,15.6
+211672,0,0,0,15.6
+211673,0,0,736822.7323,15.6
+211674,0,0,0,15.6
+211675,0,3.462416232,0,15.6
+211676,0,0,0,15.6
+211677,0,0,0,15.6
+211678,0,242.4968538,0,15.6
+211679,0,368319.9121,0,15.6
+211680,0,0,0,15.6
+211681,0,0,0,15.6
+211682,0,0,0,15.6
+211683,0,0,0,15.6
+211684,0,0,0,15.6
+211685,0,0,0,15.6
+211686,0,0,0,15.6
+211687,0,429050.0197,0,15.6
+211688,0,0,0,15.6
+211689,0,0,0,15.6
+211690,0,0,0,15.6
+211691,0,0,0,15.6
+211692,0,0,0,15.6
+211693,0,0,0,15.6
+211694,0,0,0,15.6
+211695,0,0,0,15.6
+211696,0,0,0,15.6
+211697,0,0,0,15.6
+211698,0,0,0,15.6
+211699,0,428736.072,0,15.6
+211700,0,0,0,15.6
+211701,0,0,0,15.6
+211702,0,0,0,15.6
+211703,0,0,0,15.6
+211704,0,0,0,15.6
+211705,0,0,0,15.6
+211706,0,0,0,15.6
+211707,339936.4704,0,0,15.6
+211708,0,0,0,15.6
+211709,0,0,0,15.6
+211710,0,0,731201.104,15.6
+211711,0,0,0,15.6
+211712,0,0,0,15.6
+211713,0,0,0,15.6
+211714,0,0,0,15.6
+211715,0,0,0,15.6
+211716,0,0,0,15.6
+211717,0,0,0,15.6
+211718,0,0,0,15.6
+211719,0,0,0,15.6
+211720,0,368306.2373,0,15.6
+211721,0,0,0,15.6
+211722,0,0,0,15.6
+211723,0,0,0,15.6
+211724,0,0,0,15.6
+211725,0,0,0,15.6
+211726,0,67.76115901,0,15.6
+211727,0,0,0,15.6
+211728,0,0,0,15.6
+211729,0,428953.7601,0,15.6
+211730,0,0,0,15.6
+211731,0,0,0,15.6
+211732,0,0,0,15.6
+211733,0,0,0,15.6
+211734,0,0,0,15.6
+211735,0,0,0,15.6
+211736,0,0,0,15.6
+211737,0,0,0,15.6
+211738,0,0,0,15.6
+211739,0,0,0,15.6
+211740,0,0,0,15.6
+211741,0,0,0,15.6
+211742,0,0,0,15.6
+211743,0,0,0,15.6
+211744,0,0,0,15.6
+211745,0,0,0,15.6
+211746,0,428864.1132,0,15.6
+211747,339936.2444,0,725956.6583,15.6
+211748,0,0,0,15.6
+211749,0,0,0,15.6
+211750,0,0,0,15.6
+211751,0,0,0,15.6
+211752,0,0,0,15.6
+211753,0,0,0,15.6
+211754,0,0,0,15.6
+211755,0,0,0,15.6
+211756,0,0,0,15.6
+211757,0,0,0,15.6
+211758,0,0,0,15.6
+211759,0,0,0,15.6
+211760,0,0,0,15.6
+211761,0,368296.2066,0,15.6
+211762,0,0,0,15.6
+211763,0,0,0,15.6
+211764,0,428840.9922,0,15.6
+211765,0,0,0,15.6
+211766,0,0,0,15.6
+211767,0,0,0,15.6
+211768,0,0,0,15.6
+211769,0,0,0,15.6
+211770,0,0,0,15.6
+211771,0,0,0,15.6
+211772,0,0,0,15.6
+211773,0,0,0,15.6
+211774,0,0,0,15.6
+211775,0,0,0,15.6
+211776,0,0,0,15.6
+211777,0,0,0,15.6
+211778,0,0,0,15.6
+211779,0,0,0,15.6
+211780,0,0,0,15.6
+211781,0,428782.7568,0,15.6
+211782,0,0,0,15.6
+211783,0,0,0,15.6
+211784,0,0,721079.625,15.6
+211785,0,0,0,15.6
+211786,0,0,0,15.6
+211787,339936.2414,0,0,15.6
+211788,0,28767.69214,0,15.6
+211789,0,2326.847541,0,15.6
+211790,0,3047.079857,0,15.6
+211791,0,10696.83407,0,15.6
+211792,0,8756.996423,0,15.6
+211793,0,8142.529679,0,15.6
+211794,0,8538.973981,0,15.6
+211795,0,8615.143946,0,15.6
+211796,0,8674.148894,0,15.6
+211797,0,8766.829174,0,15.6
+211798,0,8822.684144,0,15.6
+211799,0,8913.484447,0,15.6
+211800,0,8928.663936,0,15.6
+211801,0,437783.8496,0,15.6
+211802,0,377305.3453,0,15.6
+211803,0,9034.232843,0,15.6
+211804,0,9100.878731,0,15.6
+211805,0,9120.159047,0,15.6
+211806,0,9161.588452,0,15.6
+211807,0,9139.392689,0,15.6
+211808,0,9247.112266,0,15.6
+211809,0,9200.006763,0,15.6
+211810,0,9278.769633,0,15.6
+211811,0,9306.029103,0,15.6
+211812,0,9326.58873,0,15.6
+211813,0,9350.045071,0,15.6
+211814,0,9418.212816,0,15.6
+211815,0,9370.60435,0,15.6
+211816,0,9707.582947,0,15.6
+211817,0,9616.103857,0,15.6
+211818,0,0,0,15.6
+211819,0,430944.3608,716656.8294,15.6
+211820,0,0,0,15.6
+211821,0,0,0,15.6
+211822,0,0,0,15.6
+211823,0,0,0,15.6
+211824,0,0,0,15.6
+211825,0,0,0,15.6
+211826,0,42302.05789,0,15.6
+211827,339936.4704,0,0,15.6
+211828,0,3131.516433,0,15.6
+211829,0,13176.19209,0,15.6
+211830,0,10527.59654,0,15.6
+211831,0,9506.258027,0,15.6
+211832,0,10016.20821,0,15.6
+211833,0,10783.42428,0,15.6
+211834,0,10449.29313,0,15.6
+211835,0,10610.34623,0,15.6
+211836,0,439259.8063,0,15.6
+211837,0,10686.27018,0,15.6
+211838,0,10734.28482,0,15.6
+211839,0,10792.50017,0,15.6
+211840,0,10832.3449,0,15.6
+211841,0,10885.86743,0,15.6
+211842,0,10901.01878,0,15.6
+211843,0,379249.9059,0,15.6
+211844,0,10992.33898,0,15.6
+211845,0,11071.33614,0,15.6
+211846,0,11089.57876,0,15.6
+211847,0,11142.33659,0,15.6
+211848,0,11158.75265,0,15.6
+211849,0,11234.58205,0,15.6
+211850,0,11251.74181,0,15.6
+211851,0,11309.65748,0,15.6
+211852,0,11339.13648,0,15.6
+211853,0,11382.55589,0,15.6
+211854,0,442272.5838,712607.7048,15.6
+211855,0,11472.22948,0,15.6
+211856,0,0,0,15.6
+211857,0,0,0,15.6
+211858,0,0,0,15.6
+211859,0,0,0,15.6
+211860,0,0,0,15.6
+211861,0,0,0,15.6
+211862,0,46286.10541,0,15.6
+211863,0,0,0,15.6
+211864,0,2527.699908,0,15.6
+211865,0,16860.1338,0,15.6
+211866,0,11353.48319,0,15.6
+211867,339936.2503,11109.35507,0,15.6
+211868,0,11567.15512,0,15.6
+211869,0,11591.34842,0,15.6
+211870,0,11564.93893,0,15.6
+211871,0,11598.83442,0,15.6
+211872,0,11564.93591,0,15.6
+211873,0,11596.54104,0,15.6
+211874,0,440156.9903,0,15.6
+211875,0,11596.5381,0,15.6
+211876,0,11569.90045,0,15.6
+211877,0,11612.28125,0,15.6
+211878,0,11615.86426,0,15.6
+211879,0,11585.60459,0,15.6
+211880,0,11625.54021,0,15.6
+211881,0,11619.38943,0,15.6
+211882,0,11583.11294,0,15.6
+211883,0,11635.02106,0,15.6
+211884,0,379901.4963,0,15.6
+211885,0,11616.90175,0,15.6
+211886,0,11632.49846,0,15.6
+211887,0,11605.5635,0,15.6
+211888,0,11614.33699,0,15.6
+211889,0,11663.58282,708938.42,15.6
+211890,0,11605.5592,0,15.6
+211891,0,11615.06084,0,15.6
+211892,0,430832.7483,0,15.6
+211893,0,0,0,15.6
+211894,0,0,0,15.6
+211895,0,0,0,15.6
+211896,0,0,0,15.6
+211897,0,0,0,15.6
+211898,0,44884.08296,0,15.6
+211899,0,0,0,15.6
+211900,0,3647.630721,0,15.6
+211901,0,16673.29273,0,15.6
+211902,0,11437.96062,0,15.6
+211903,339936.2406,11266.93933,0,15.6
+211904,0,11706.5453,0,15.6
+211905,0,11649.23746,0,15.6
+211906,0,9490.069868,0,15.6
+211907,0,9206.323334,0,15.6
+211908,0,9072.64078,0,15.6
+211909,0,8884.529795,0,15.6
+211910,0,8719.524289,0,15.6
+211911,0,8528.55416,0,15.6
+211912,0,8390.606168,0,15.6
+211913,0,8199.358778,0,15.6
+211914,0,8041.275265,0,15.6
+211915,0,436396.0023,0,15.6
+211916,0,7749.702415,0,15.6
+211917,0,7583.817676,0,15.6
+211918,0,7493.751901,0,15.6
+211919,0,7294.390563,0,15.6
+211920,0,375444.8107,0,17.8
+211921,0,7059.944751,0,17.8
+211922,0,6893.032566,0,17.8
+211923,0,6824.835507,0,17.8
+211924,0,6598.41056,705563.547,17.8
+211925,0,6589.840995,0,17.8
+211926,0,6357.055098,0,17.8
+211927,0,6295.806187,0,17.8
+211928,0,0,0,17.8
+211929,0,0,0,17.8
+211930,0,0,0,17.8
+211931,0,0,0,17.8
+211932,0,428457.5374,0,17.8
+211933,0,0,0,17.8
+211934,0,0,0,17.8
+211935,0,0,0,17.8
+211936,0,0,0,17.8
+211937,0,0,0,17.8
+211938,0,0,0,17.8
+211939,339936.4704,0,0,17.8
+211940,0,0,0,17.8
+211941,0,0,0,17.8
+211942,0,0,0,17.8
+211943,0,0,0,17.8
+211944,0,0,0,17.8
+211945,0,0,0,17.8
+211946,0,0,0,17.8
+211947,0,18977.88724,0,17.8
+211948,0,0,0,17.8
+211949,0,379.9923881,0,17.8
+211950,0,7895.024368,0,17.8
+211951,0,4937.305064,0,17.8
+211952,0,4952.849773,0,17.8
+211953,0,5072.0032,0,17.8
+211954,0,5166.17373,0,17.8
+211955,0,5087.356068,0,17.8
+211956,0,373408.0751,0,17.8
+211957,0,5087.355402,0,17.8
+211958,0,5107.105383,0,17.8
+211959,0,5087.354771,702206.6018,17.8
+211960,0,5224.450382,0,17.8
+211961,0,5102.674146,0,17.8
+211962,0,5087.353861,0,17.8
+211963,0,5063.080317,0,17.8
+211964,0,5102.67325,0,17.8
+211965,0,5063.079737,0,17.8
+211966,0,5047.759468,0,17.8
+211967,0,5063.079163,0,17.8
+211968,0,5063.078878,0,17.8
+211969,0,5023.361072,0,17.8
+211970,0,5063.078311,0,17.8
+211971,0,5008.040543,0,17.8
+211972,0,5043.234597,0,17.8
+211973,0,5023.359971,0,17.8
+211974,0,5023.359698,0,17.8
+211975,339936.2421,5023.359427,0,17.8
+211976,0,4983.516398,0,17.8
+211977,0,0,0,17.8
+211978,0,0,0,17.8
+211979,0,0,0,17.8
+211980,0,0,0,20
+211981,0,0,0,20
+211982,0,0,0,20
+211983,0,0,0,20
+211984,0,0,0,20
+211985,0,0,0,20
+211986,0,0,0,20
+211987,0,0,0,20
+211988,0,0,0,20
+211989,0,0,0,20
+211990,0,0,0,20
+211991,0,0,0,20
+211992,0,0,0,20
+211993,0,0,0,20
+211994,0,0,0,20
+211995,0,0,0,20
+211996,0,368284.5634,699166.3195,20
+211997,0,0,0,20
+211998,0,0,0,20
+211999,0,0,0,20
+212000,0,0,0,20
+212001,0,0,0,20
+212002,0,0,0,20
+212003,0,0,0,20
+212004,0,0,0,20
+212005,0,0,0,20
+212006,0,0,0,20
+212007,0,0,0,20
+212008,0,0,0,20
+212009,0,0,0,20
+212010,0,0,0,20
+212011,0,0,0,20
+212012,0,0,0,20
+212013,0,0,0,20
+212014,0,0,0,20
+212015,339942.8674,0,0,20
+212016,0,0,0,20
+212017,0,0,0,20
+212018,0,0,0,20
+212019,0,0,0,20
+212020,0,0,0,20
+212021,0,0,0,20
+212022,0,0,0,20
+212023,0,0,0,20
+212024,0,0,0,20
+212025,0,0,0,20
+212026,0,0,0,20
+212027,0,0,0,20
+212028,0,0,0,20
+212029,0,0,0,20
+212030,0,0,0,20
+212031,0,0,0,20
+212032,0,0,0,20
+212033,0,0,696378.3369,20
+212034,0,0,0,20
+212035,0,0,0,20
+212036,0,368296.3193,0,20
+212037,0,0,0,20
+212038,0,0,0,20
+212039,0,0,0,20
+212040,0,0,0,21
+212041,0,0,0,21
+212042,0,428468.5142,0,21
+212043,0,0,0,21
+212044,0,0,0,21
+212045,0,0,0,21
+212046,0,0,0,21
+212047,0,0,0,21
+212048,0,0,0,21
+212049,0,0,0,21
+212050,0,0,0,21
+212051,0,0,0,21
+212052,0,0,0,21
+212053,0,0,0,21
+212054,0,0,0,21
+212055,339950.8488,0,0,21
+212056,0,0,0,21
+212057,0,0,0,21
+212058,0,0,0,21
+212059,0,0,0,21
+212060,0,0,0,21
+212061,0,0,0,21
+212062,0,0,0,21
+212063,0,0,0,21
+212064,0,0,0,21
+212065,0,0,0,21
+212066,0,428418.8931,0,21
+212067,0,0,0,21
+212068,0,0,0,21
+212069,0,0,693747.1927,21
+212070,0,0,0,21
+212071,0,0,0,21
+212072,0,0,0,21
+212073,0,0,0,21
+212074,0,0,0,21
+212075,0,0,0,21
+212076,0,368312.7161,0,21
+212077,0,0,0,21
+212078,0,0,0,21
+212079,0,0,0,21
+212080,0,0,0,21
+212081,0,0,0,21
+212082,0,0,0,21
+212083,0,0,0,21
+212084,0,0,0,21
+212085,0,0,0,21
+212086,0,0,0,21
+212087,0,0,0,21
+212088,0,0,0,21
+212089,0,0,0,21
+212090,0,428380.0936,0,21
+212091,0,0,0,21
+212092,0,0,0,21
+212093,339958.3448,0,0,21
+212094,0,0,0,21
+212095,0,0,0,21
+212096,0,0,0,21
+212097,0,0,0,21
+212098,0,0,0,21
+212099,0,0,0,21
+212100,0,0,0,21
+212101,0,0,0,21
+212102,0,0,0,21
+212103,0,0,0,21
+212104,0,0,0,21
+212105,0,0,691282.0055,21
+212106,0,0,0,21
+212107,0,0,0,21
+212108,0,0,0,21
+212109,0,0,0,21
+212110,0,0,0,21
+212111,0,0,0,21
+212112,0,0,0,21
+212113,0,0,0,21
+212114,0,0,0,21
+212115,0,0,0,21
+212116,0,368329.4718,0,21
+212117,0,0,0,21
+212118,0,61.80578143,0,21
+212119,0,0,0,21
+212120,0,0,0,21
+212121,0,0,0,21
+212122,0,0,0,21
+212123,0,0,0,21
+212124,0,0,0,21
+212125,0,0,0,21
+212126,0,0,0,21
+212127,0,130.4389564,0,21
+212128,0,0,0,21
+212129,0,0,0,21
+212130,0,0,0,21
+212131,339965.9144,0,0,21
+212132,0,0,0,21
+212133,0,0,0,21
+212134,0,0,0,21
+212135,0,0,0,21
+212136,0,0,0,21
+212137,0,0,0,21
+212138,0,0,0,21
+212139,0,2.877328944,0,21
+212140,0,0,0,21
+212141,0,0,688987.2204,21
+212142,0,34.4746772,0,21
+212143,0,0,0,21
+212144,0,0,0,21
+212145,0,0,0,21
+212146,0,0,0,21
+212147,0,0,0,21
+212148,0,0,0,21
+212149,0,0,0,21
+212150,0,0,0,21
+212151,0,58.65626662,0,21
+212152,0,0,0,21
+212153,0,0,0,21
+212154,0,368342.0811,0,21
+212155,0,0,0,21
+212156,0,0,0,21
+212157,0,0,0,21
+212158,0,0,0,21
+212159,0,0,0,21
+212160,0,81.66762509,0,21
+212161,0,0,0,21
+212162,0,0,0,21
+212163,0,0,0,21
+212164,0,0,0,21
+212165,0,0,0,21
+212166,0,0,0,21
+212167,0,0,0,21
+212168,0,0,0,21
+212169,339973.6441,0,0,21
+212170,0,0,0,21
+212171,0,0,0,21
+212172,0,0,0,21
+212173,0,2.179281005,0,21
+212174,0,0,0,21
+212175,0,0,0,21
+212176,0,0,0,21
+212177,0,0,684302.5933,21
+212178,0,0,0,21
+212179,0,0,0,21
+212180,0,0,0,21
+212181,0,0,0,21
+212182,0,0,0,21
+212183,0,0,0,21
+212184,0,0,0,21
+212185,0,0,0,21
+212186,0,0,0,21
+212187,0,0,0,21
+212188,0,0,0,21
+212189,0,0,0,21
+212190,0,0,0,21
+212191,0,0,0,21
+212192,0,368347.7562,0,21
+212193,0,0,0,21
+212194,0,0,0,21
+212195,0,0,0,21
+212196,0,0,0,21
+212197,0,0,0,21
+212198,0,0,0,21
+212199,0,0,0,21
+212200,0,0,0,21
+212201,0,0,0,21
+212202,0,0,0,21
+212203,0,0,0,21
+212204,0,0,0,21
+212205,0,0,0,21
+212206,0,0,0,21
+212207,339980.9612,0,0,21
+212208,0,0,0,21
+212209,0,0,0,21
+212210,0,0,0,21
+212211,0,0,0,21
+212212,0,0,0,21
+212213,0,0,681958.0972,21
+212214,0,0,0,21
+212215,0,0,0,21
+212216,0,0,0,21
+212217,0,0,0,21
+212218,0,0,0,21
+212219,0,0,0,21
+212220,0,0,0,21
+212221,0,0,0,21
+212222,0,0,0,21
+212223,0,0,0,21
+212224,0,0,0,21
+212225,0,0,0,21
+212226,0,0,0,21
+212227,0,0,0,21
+212228,0,0,0,21
+212229,0,0,0,21
+212230,0,368349.5728,0,21
+212231,0,0,0,21
+212232,0,0,0,21
+212233,0,0,0,21
+212234,0,0,0,21
+212235,0,0,0,21
+212236,0,0,0,21
+212237,0,0,0,21
+212238,0,0,0,21
+212239,0,0,0,21
+212240,0,0,0,21
+212241,0,0,0,21
+212242,0,0,0,21
+212243,0,0,0,21
+212244,0,0,0,21
+212245,339988.7123,0,0,21
+212246,0,0,0,21
+212247,0,0,0,21
+212248,0,0,0,21
+212249,0,0,680210.3649,21
+212250,0,0,0,21
+212251,0,0,0,21
+212252,0,0,0,21
+212253,0,0,0,21
+212254,0,0,0,21
+212255,0,0,0,21
+212256,0,0,0,21
+212257,0,0,0,21
+212258,0,0,0,21
+212259,0,0,0,21
+212260,0,0,0,21
+212261,0,0,0,21
+212262,0,0,0,21
+212263,0,0,0,21
+212264,0,0,0,21
+212265,0,0,0,21
+212266,0,0,0,21
+212267,0,0,0,21
+212268,0,368371.4497,0,21
+212269,0,0,0,21
+212270,0,0,0,21
+212271,0,0,0,21
+212272,0,0,0,21
+212273,0,0,0,21
+212274,0,0,0,21
+212275,0,0,0,21
+212276,0,0,0,21
+212277,0,0,0,21
+212278,0,0,0,21
+212279,0,0,0,21
+212280,0,0,0,21
+212281,0,0,0,21
+212282,0,0,0,21
+212283,339996.5104,0,0,21
+212284,0,0,0,21
+212285,0,0,678735.4597,21
+212286,0,0,0,21
+212287,0,0,0,21
+212288,0,0,0,21
+212289,0,0,0,21
+212290,0,0,0,21
+212291,0,0,0,21
+212292,0,0,0,21
+212293,0,0,0,21
+212294,0,0,0,21
+212295,0,0,0,21
+212296,0,0,0,21
+212297,0,0,0,21
+212298,0,0,0,21
+212299,0,0,0,21
+212300,0,0,0,21
+212301,0,0,0,21
+212302,0,0,0,21
+212303,0,0,0,21
+212304,0,0,0,21
+212305,0,0,0,21
+212306,0,0,0,21
+212307,0,0,0,21
+212308,0,368388.5446,0,21
+212309,0,0,0,21
+212310,0,0,0,21
+212311,0,0,0,21
+212312,0,0,0,21
+212313,0,0,0,21
+212314,0,0,0,21
+212315,0,0,0,21
+212316,0,0,0,21
+212317,0,0,0,21
+212318,0,0,0,21
+212319,0,0,0,21
+212320,0,0,0,21
+212321,0,0,676833.8283,21
+212322,340003.7941,0,0,21
+212323,0,0,0,21
+212324,0,0,0,21
+212325,0,0,0,21
+212326,0,0,0,21
+212327,0,0,0,21
+212328,0,0,0,21
+212329,0,0,0,21
+212330,0,0,0,21
+212331,0,0,0,21
+212332,0,0,0,21
+212333,0,0,0,21
+212334,0,0,0,21
+212335,0,0,0,21
+212336,0,0,0,21
+212337,0,0,0,21
+212338,0,0,0,21
+212339,0,0,0,21
+212340,0,0,0,21
+212341,0,0,0,21
+212342,0,0,0,21
+212343,0,0,0,21
+212344,0,0,0,21
+212345,0,0,0,21
+212346,0,0,0,21
+212347,0,0,0,21
+212348,0,368403.9553,0,21
+212349,0,0,0,21
+212350,0,0,0,21
+212351,0,0,0,21
+212352,0,0,0,21
+212353,0,0,0,21
+212354,0,0,0,21
+212355,0,0,0,21
+212356,0,0,0,21
+212357,0,0,675315.979,21
+212358,0,0,0,21
+212359,0,0,0,21
+212360,0,0,0,21
+212361,340011.4984,0,0,21
+212362,0,0,0,21
+212363,0,0,0,21
+212364,0,0,0,21
+212365,0,0,0,21
+212366,0,0,0,21
+212367,0,0,0,21
+212368,0,0,0,21
+212369,0,0,0,21
+212370,0,0,0,21
+212371,0,0,0,21
+212372,0,0,0,21
+212373,0,0,0,21
+212374,0,0,0,21
+212375,0,0,0,21
+212376,0,0,0,21
+212377,0,0,0,21
+212378,0,0,0,21
+212379,0,0,0,21
+212380,0,0,0,21
+212381,0,0,0,21
+212382,0,0,0,21
+212383,0,0,0,21
+212384,0,0,0,21
+212385,0,0,0,21
+212386,0,0,0,21
+212387,0,0,0,21
+212388,0,368434.4913,0,21
+212389,0,0,0,21
+212390,0,0,0,21
+212391,0,0,0,21
+212392,0,0,0,21
+212393,0,0,674508.4522,21
+212394,0,0,0,21
+212395,0,0,0,21
+212396,0,0,0,21
+212397,0,0,0,21
+212398,0,0,0,21
+212399,0,0,0,21
+212400,340019.4711,0,0,21
+212401,0,0,0,21
+212402,0,0,0,21
+212403,0,0,0,21
+212404,0,0,0,21
+212405,0,0,0,21
+212406,0,0,0,21
+212407,0,0,0,21
+212408,0,0,0,21
+212409,0,0,0,21
+212410,0,0,0,21
+212411,0,0,0,21
+212412,0,0,0,21
+212413,0,0,0,21
+212414,0,0,0,21
+212415,0,0,0,21
+212416,0,0,0,21
+212417,0,0,0,21
+212418,0,0,0,21
+212419,0,0,0,21
+212420,0,0,0,21
+212421,0,0,0,21
+212422,0,0,0,21
+212423,0,0,0,21
+212424,0,0,0,21
+212425,0,0,0,21
+212426,0,0,0,21
+212427,0,368448.4242,0,21
+212428,0,0,0,21
+212429,0,0,0,21
+212430,0,0,673778.205,21
+212431,0,0,0,21
+212432,0,0,0,21
+212433,0,0,0,21
+212434,0,0,0,21
+212435,0,0,0,21
+212436,0,0,0,21
+212437,0,0,0,21
+212438,0,0,0,21
+212439,0,0,0,21
+212440,0,0,0,21
+212441,340027.4422,0,0,21
+212442,0,0,0,21
+212443,0,0,0,21
+212444,0,0,0,21
+212445,0,0,0,21
+212446,0,0,0,21
+212447,0,0,0,21
+212448,0,0,0,21
+212449,0,0,0,21
+212450,0,0,0,21
+212451,0,0,0,21
+212452,0,0,0,21
+212453,0,0,0,21
+212454,0,0,0,21
+212455,0,0,0,21
+212456,0,0,0,21
+212457,0,0,0,21
+212458,0,0,0,21
+212459,0,0,0,21
+212460,0,0,0,21
+212461,0,0,0,21
+212462,0,0,0,21
+212463,0,0,0,21
+212464,0,0,0,21
+212465,0,0,0,21
+212466,0,0,0,21
+212467,0,368255.6799,672564.9875,21
+212468,0,0,0,21
+212469,0,0,0,21
+212470,0,0,0,21
+212471,0,0,0,21
+212472,0,0,0,21
+212473,0,0,0,21
+212474,0,0,0,21
+212475,0,0,0,21
+212476,0,0,0,21
+212477,0,0,0,21
+212478,0,0,0,21
+212479,0,0,0,21
+212480,0,0,0,21
+212481,0,0,0,21
+212482,340035.8199,0,0,21
+212483,0,0,0,21
+212484,0,0,0,21
+212485,0,0,0,21
+212486,0,0,0,21
+212487,0,0,0,21
+212488,0,0,0,21
+212489,0,0,0,21
+212490,0,0,0,21
+212491,0,0,0,21
+212492,0,0,0,21
+212493,0,0,0,21
+212494,0,0,0,21
+212495,0,0,0,21
+212496,0,0,0,21
+212497,0,0,0,21
+212498,0,0,0,21
+212499,0,0,0,21
+212500,0,0,0,21
+212501,0,0,0,21
+212502,0,0,0,21
+212503,0,0,672078.4335,21
+212504,0,0,0,21
+212505,0,0,0,21
+212506,0,0,0,21
+212507,0,368454.5187,0,21
+212508,0,0,0,21
+212509,0,0,0,21
+212510,0,0,0,21
+212511,0,0,0,21
+212512,0,0,0,21
+212513,0,0,0,21
+212514,0,0,0,21
+212515,0,0,0,21
+212516,0,0,0,21
+212517,0,0,0,21
+212518,0,0,0,21
+212519,0,0,0,21
+212520,0,0,0,21
+212521,0,0,0,21
+212522,0,0,0,21
+212523,340043.806,0,0,21
+212524,0,0,0,21
+212525,0,0,0,21
+212526,0,0,0,21
+212527,0,0,0,21
+212528,0,0,0,21
+212529,0,0,0,21
+212530,0,0,0,21
+212531,0,0,0,21
+212532,0,0,0,21
+212533,0,0,0,21
+212534,0,0,0,21
+212535,0,0,0,21
+212536,0,0,0,21
+212537,0,0,0,21
+212538,0,0,0,21
+212539,0,0,671437.3201,21
+212540,0,0,0,21
+212541,0,0,0,21
+212542,0,0,0,21
+212543,0,0,0,21
+212544,0,0,0,21
+212545,0,0,0,21
+212546,0,368463.4931,0,21
+212547,0,0,0,21
+212548,0,0,0,21
+212549,0,0,0,21
+212550,0,0,0,21
+212551,0,0,0,21
+212552,0,0,0,21
+212553,0,0,0,21
+212554,0,0,0,21
+212555,0,0,0,21
+212556,0,0,0,21
+212557,0,0,0,21
+212558,0,0,0,21
+212559,0,0,0,21
+212560,0,0,0,21
+212561,340051.5439,0,0,21
+212562,0,0,0,21
+212563,0,0,0,21
+212564,0,0,0,21
+212565,0,0,0,21
+212566,0,0,0,21
+212567,0,0,0,21
+212568,0,0,0,21
+212569,0,0,0,21
+212570,0,0,0,21
+212571,0,0,0,21
+212572,0,0,0,21
+212573,0,0,0,21
+212574,0,0,0,21
+212575,0,0,670838.1686,21
+212576,0,0,0,21
+212577,0,0,0,21
+212578,0,0,0,21
+212579,0,0,0,21
+212580,0,0,0,21
+212581,0,0,0,21
+212582,0,0,0,21
+212583,0,0,0,21
+212584,0,0,0,21
+212585,0,368472.4544,0,21
+212586,0,0,0,21
+212587,0,0,0,21
+212588,0,0,0,21
+212589,0,0,0,21
+212590,0,0,0,21
+212591,0,0,0,21
+212592,0,0,0,21
+212593,0,0,0,21
+212594,0,0,0,21
+212595,0,0,0,21
+212596,0,0,0,21
+212597,0,0,0,21
+212598,0,0,0,21
+212599,340059.0767,0,0,21
+212600,0,0,0,21
+212601,0,0,0,21
+212602,0,0,0,21
+212603,0,0,0,21
+212604,0,0,0,21
+212605,0,0,0,21
+212606,0,0,0,21
+212607,0,0,0,21
+212608,0,0,0,21
+212609,0,0,0,21
+212610,0,0,0,21
+212611,0,0,670039.2276,21
+212612,0,0,0,21
+212613,0,0,0,21
+212614,0,0,0,21
+212615,0,0,0,21
+212616,0,0,0,21
+212617,0,0,0,21
+212618,0,0,0,21
+212619,0,0,0,21
+212620,0,0,0,21
+212621,0,0,0,21
+212622,0,0,0,21
+212623,0,0,0,21
+212624,0,368481.4147,0,21
+212625,0,0,0,21
+212626,0,0,0,21
+212627,0,0,0,21
+212628,0,0,0,21
+212629,0,0,0,21
+212630,0,0,0,21
+212631,0,0,0,21
+212632,0,0,0,21
+212633,0,0,0,21
+212634,0,0,0,21
+212635,0,0,0,21
+212636,0,0,0,21
+212637,338153.1066,0,0,21
+212638,0,0,0,21
+212639,0,0,0,21
+212640,0,0,0,21
+212641,0,0,0,21
+212642,0,0,0,21
+212643,0,0,0,21
+212644,0,0,0,21
+212645,0,0,0,21
+212646,0,0,0,21
+212647,0,0,669562.3669,21
+212648,0,0,0,21
+212649,0,0,0,21
+212650,0,0,0,21
+212651,0,0,0,21
+212652,0,0,0,21
+212653,0,0,0,21
+212654,0,0,0,21
+212655,0,0,0,21
+212656,0,0,0,21
+212657,0,0,0,21
+212658,0,0,0,21
+212659,0,0,0,21
+212660,0,0,0,21
+212661,0,0,0,21
+212662,0,0,0,21
+212663,0,368490.3735,0,21
+212664,0,0,0,21
+212665,0,0,0,21
+212666,0,0,0,21
+212667,0,0,0,21
+212668,0,0,0,21
+212669,0,0,0,21
+212670,0,0,0,21
+212671,0,0,0,21
+212672,0,0,0,21
+212673,0,0,0,21
+212674,0,0,0,21
+212675,340074.0496,0,0,21
+212676,0,0,0,21
+212677,0,0,0,21
+212678,0,0,0,21
+212679,0,0,0,21
+212680,0,0,0,21
+212681,0,0,0,21
+212682,0,0,0,21
+212683,0,0,669658.6515,21
+212684,0,0,0,21
+212685,0,0,0,21
+212686,0,0,0,21
+212687,0,0,0,21
+212688,0,0,0,21
+212689,0,0,0,21
+212690,0,0,0,21
+212691,0,0,0,21
+212692,0,0,0,21
+212693,0,0,0,21
+212694,0,0,0,21
+212695,0,0,0,21
+212696,0,0,0,21
+212697,0,0,0,21
+212698,0,0,0,21
+212699,0,0,0,21
+212700,0,0,0,21
+212701,0,368499.0859,0,21
+212702,0,0,0,21
+212703,0,0,0,21
+212704,0,0,0,21
+212705,0,0,0,21
+212706,0,0,0,21
+212707,0,0,0,21
+212708,0,0,0,21
+212709,0,0,0,21
+212710,0,0,0,21
+212711,0,0,0,21
+212712,0,0,0,21
+212713,340079.1876,0,0,21
+212714,0,0,0,21
+212715,0,0,0,21
+212716,0,0,0,21
+212717,0,0,0,21
+212718,0,0,0,21
+212719,0,0,668322.1973,21
+212720,0,0,0,21
+212721,0,0,0,21
+212722,0,0,0,21
+212723,0,0,0,21
+212724,0,0,0,21
+212725,0,0,0,21
+212726,0,0,0,21
+212727,0,0,0,21
+212728,0,0,0,21
+212729,0,0,0,21
+212730,0,0,0,21
+212731,0,0,0,21
+212732,0,0,0,21
+212733,0,0,0,21
+212734,0,0,0,21
+212735,0,0,0,21
+212736,0,0,0,21
+212737,0,0,0,21
+212738,0,0,0,21
+212739,0,368499.2022,0,21
+212740,0,0,0,21
+212741,0,0,0,21
+212742,0,0,0,21
+212743,0,0,0,21
+212744,0,0,0,21
+212745,0,0,0,21
+212746,0,0,0,21
+212747,0,0,0,21
+212748,0,0,0,21
+212749,0,0,0,21
+212750,0,0,0,21
+212751,340079.4038,0,0,21
+212752,0,0,0,21
+212753,0,0,0,21
+212754,0,0,0,21
+212755,0,0,667683.3238,21
+212756,0,0,0,21
+212757,0,0,0,21
+212758,0,0,0,21
+212759,0,0,0,21
+212760,0,0,0,21
+212761,0,0,0,21
+212762,0,0,0,21
+212763,0,0,0,21
+212764,0,0,0,21
+212765,0,0,0,21
+212766,0,0,0,21
+212767,0,0,0,21
+212768,0,0,0,21
+212769,0,0,0,21
+212770,0,0,0,21
+212771,0,0,0,21
+212772,0,0,0,21
+212773,0,0,0,21
+212774,0,0,0,21
+212775,0,0,0,21
+212776,0,0,0,21
+212777,0,368499.2021,0,21
+212778,0,0,0,21
+212779,0,0,0,21
+212780,0,0,0,21
+212781,0,0,0,21
+212782,0,0,0,21
+212783,0,0,0,21
+212784,0,0,0,21
+212785,0,0,0,21
+212786,0,0,0,21
+212787,0,0,0,21
+212788,0,0,0,21
+212789,340079.1987,0,0,21
+212790,0,0,0,21
+212791,0,0,667757.4985,21
+212792,0,0,0,21
+212793,0,0,0,21
+212794,0,0,0,21
+212795,0,0,0,21
+212796,0,0,0,21
+212797,0,0,0,21
+212798,0,0,0,21
+212799,0,0,0,21
+212800,0,0,0,21
+212801,0,0,0,21
+212802,0,0,0,21
+212803,0,0,0,21
+212804,0,0,0,21
+212805,0,0,0,21
+212806,0,0,0,21
+212807,0,0,0,21
+212808,0,0,0,21
+212809,0,0,0,21
+212810,0,0,0,21
+212811,0,0,0,21
+212812,0,0,0,21
+212813,0,0,0,21
+212814,0,0,0,21
+212815,0,368499.2018,0,21
+212816,0,0,0,21
+212817,0,0,0,21
+212818,0,0,0,21
+212819,0,0,0,21
+212820,0,0,0,21
+212821,0,0,0,21
+212822,0,0,0,21
+212823,0,0,0,21
+212824,0,0,0,21
+212825,0,0,0,21
+212826,0,0,0,21
+212827,340079.6822,0,667948.4667,21
+212828,0,0,0,21
+212829,0,0,0,21
+212830,0,0,0,21
+212831,0,0,0,21
+212832,0,0,0,21
+212833,0,0,0,21
+212834,0,0,0,21
+212835,0,0,0,21
+212836,0,0,0,21
+212837,0,0,0,21
+212838,0,0,0,21
+212839,0,0,0,21
+212840,0,0,0,21
+212841,0,0,0,21
+212842,0,0,0,21
+212843,0,0,0,21
+212844,0,0,0,21
+212845,0,0,0,21
+212846,0,0,0,21
+212847,0,0,0,21
+212848,0,0,0,21
+212849,0,0,0,21
+212850,0,0,0,21
+212851,0,0,0,21
+212852,0,0,0,21
+212853,0,368293.8372,0,21
+212854,0,0,0,21
+212855,0,0,0,21
+212856,0,0,0,21
+212857,0,0,0,21
+212858,0,0,0,21
+212859,0,0,0,21
+212860,0,0,0,21
+212861,0,0,0,21
+212862,0,0,0,21
+212863,0,0,665899.0411,21
+212864,0,0,0,21
+212865,340079.2489,0,0,21
+212866,0,0,0,21
+212867,0,0,0,21
+212868,0,0,0,21
+212869,0,0,0,21
+212870,0,0,0,21
+212871,0,0,0,21
+212872,0,0,0,21
+212873,0,0,0,21
+212874,0,0,0,21
+212875,0,0,0,21
+212876,0,0,0,21
+212877,0,0,0,21
+212878,0,0,0,21
+212879,0,0,0,21
+212880,0,0,0,21
+212881,0,0,0,21
+212882,0,0,0,21
+212883,0,0,0,21
+212884,0,0,0,21
+212885,0,0,0,21
+212886,0,0,0,21
+212887,0,0,0,21
+212888,0,0,0,21
+212889,0,0,0,21
+212890,0,0,0,21
+212891,0,0,0,21
+212892,0,0,0,21
+212893,0,0,0,21
+212894,0,368234.3712,0,21
+212895,0,0,0,21
+212896,0,0,0,21
+212897,0,0,0,21
+212898,0,0,0,21
+212899,0,0,0,21
+212900,0,0,666682.2671,21
+212901,0,0,0,21
+212902,0,0,0,21
+212903,0,0,0,21
+212904,0,0,0,21
+212905,0,0,0,21
+212906,340079.1988,0,0,21
+212907,0,0,0,21
+212908,0,0,0,21
+212909,0,0,0,21
+212910,0,0,0,21
+212911,0,0,0,21
+212912,0,0,0,21
+212913,0,0,0,21
+212914,0,0,0,21
+212915,0,0,0,21
+212916,0,0,0,21
+212917,0,0,0,21
+212918,0,0,0,21
+212919,0,0,0,21
+212920,0,0,0,21
+212921,0,0,0,21
+212922,0,0,0,21
+212923,0,0,0,21
+212924,0,0,0,21
+212925,0,0,0,21
+212926,0,0,0,21
+212927,0,0,0,21
+212928,0,0,0,21
+212929,0,0,0,21
+212930,0,0,0,21
+212931,0,0,0,21
+212932,0,0,0,21
+212933,0,0,0,21
+212934,0,0,0,21
+212935,0,368499.2044,0,21
+212936,0,0,0,21
+212937,0,0,667069.7471,21
+212938,0,0,0,21
+212939,0,0,0,21
+212940,0,0,0,21
+212941,0,0,0,21
+212942,0,0,0,21
+212943,0,0,0,21
+212944,0,0,0,21
+212945,0,0,0,21
+212946,338447.4336,0,0,21
+212947,0,0,0,21
+212948,0,0,0,21
+212949,0,0,0,21
+212950,0,0,0,21
+212951,0,0,0,21
+212952,0,0,0,21
+212953,0,0,0,21
+212954,0,0,0,21
+212955,0,0,0,21
+212956,0,0,0,21
+212957,0,0,0,21
+212958,0,0,0,21
+212959,0,0,0,21
+212960,0,0,0,21
+212961,0,0,0,21
+212962,0,0,0,21
+212963,0,0,0,21
+212964,0,0,0,21
+212965,0,0,0,21
+212966,0,0,0,21
+212967,0,0,0,21
+212968,0,0,0,21
+212969,0,0,0,21
+212970,0,0,0,21
+212971,0,0,0,21
+212972,0,0,0,21
+212973,0,0,667409.616,21
+212974,0,0,0,21
+212975,0,0,0,21
+212976,0,368547.6425,0,21
+212977,0,0,0,21
+212978,0,0,0,21
+212979,0,0,0,21
+212980,0,0,0,21
+212981,0,0,0,21
+212982,0,0,0,21
+212983,0,0,0,21
+212984,338217.7423,0,0,21
+212985,0,0,0,21
+212986,0,0,0,21
+212987,0,0,0,21
+212988,0,0,0,21
+212989,0,0,0,21
+212990,0,0,0,21
+212991,0,0,0,21
+212992,0,0,0,21
+212993,0,0,0,21
+212994,0,0,0,21
+212995,0,0,0,21
+212996,0,0,0,21
+212997,0,0,0,21
+212998,0,0,0,21
+212999,0,0,0,21
+213000,0,0,0,15.6
+213001,0,0,0,15.6
+213002,0,0,0,15.6
+213003,0,0,0,15.6
+213004,0,0,0,15.6
+213005,0,0,0,15.6
+213006,0,0,0,15.6
+213007,0,0,0,15.6
+213008,0,0,0,15.6
+213009,0,0,667532.1326,15.6
+213010,0,0,0,15.6
+213011,0,0,0,15.6
+213012,0,0,0,15.6
+213013,0,0,0,15.6
+213014,0,0,0,15.6
+213015,0,368532.4118,0,15.6
+213016,0,0,0,15.6
+213017,0,0,0,15.6
+213018,0,0,0,15.6
+213019,0,0,0,15.6
+213020,0,0,0,15.6
+213021,0,0,0,15.6
+213022,338998.1913,0,0,15.6
+213023,0,0,0,15.6
+213024,0,0,0,15.6
+213025,0,0,0,15.6
+213026,0,0,0,15.6
+213027,0,0,0,15.6
+213028,0,0,0,15.6
+213029,0,0,0,15.6
+213030,0,0,0,15.6
+213031,0,0,0,15.6
+213032,0,0,0,15.6
+213033,0,0,0,15.6
+213034,0,0,0,15.6
+213035,0,0,0,15.6
+213036,0,0,0,15.6
+213037,0,0,0,15.6
+213038,0,0,0,15.6
+213039,0,0,0,15.6
+213040,0,0,0,15.6
+213041,0,0,0,15.6
+213042,0,0,0,15.6
+213043,0,0,0,15.6
+213044,0,0,0,15.6
+213045,0,0,667504.4848,15.6
+213046,0,0,0,15.6
+213047,0,0,0,15.6
+213048,0,0,0,15.6
+213049,0,0,0,15.6
+213050,0,0,0,15.6
+213051,0,0,0,15.6
+213052,0,0,0,15.6
+213053,0,0,0,15.6
+213054,0,368532.8117,0,15.6
+213055,0,0,0,15.6
+213056,0,0,0,15.6
+213057,0,0,0,15.6
+213058,0,0,0,15.6
+213059,0,0,0,15.6
+213060,340079.2207,0,0,15.6
+213061,0,0,0,15.6
+213062,0,0,0,15.6
+213063,0,429326.6513,0,15.6
+213064,0,0,0,15.6
+213065,0,0,0,15.6
+213066,0,0,0,15.6
+213067,0,0,0,15.6
+213068,0,0,0,15.6
+213069,0,0,0,15.6
+213070,0,0,0,15.6
+213071,0,0,0,15.6
+213072,0,0,0,15.6
+213073,0,0,0,15.6
+213074,0,0,0,15.6
+213075,0,0,0,15.6
+213076,0,0,0,15.6
+213077,0,0,0,15.6
+213078,0,0,0,15.6
+213079,0,0,0,15.6
+213080,0,0,667613.3126,15.6
+213081,0,0,0,15.6
+213082,0,429289.8202,0,15.6
+213083,0,0,0,15.6
+213084,0,0,0,15.6
+213085,0,0,0,15.6
+213086,0,0,0,15.6
+213087,0,0,0,15.6
+213088,0,0,0,15.6
+213089,0,0,0,15.6
+213090,0,368520.5438,0,15.6
+213091,0,0,0,15.6
+213092,0,0,0,15.6
+213093,0,428794.0473,0,15.6
+213094,0,0,0,15.6
+213095,0,0,0,15.6
+213096,340079.1735,0,0,15.6
+213097,0,0,0,15.6
+213098,0,0,0,15.6
+213099,0,0,0,15.6
+213100,0,0,0,15.6
+213101,0,0,0,15.6
+213102,0,0,0,15.6
+213103,0,0,0,15.6
+213104,0,0,0,15.6
+213105,0,0,0,15.6
+213106,0,0,0,15.6
+213107,0,0,0,15.6
+213108,0,0,0,15.6
+213109,0,0,0,15.6
+213110,0,0,0,15.6
+213111,0,0,0,15.6
+213112,0,0,0,15.6
+213113,0,0,0,15.6
+213114,0,0,0,15.6
+213115,0,0,667814.6479,15.6
+213116,0,0,0,15.6
+213117,0,0,0,15.6
+213118,0,0,0,15.6
+213119,0,106.0765025,0,15.6
+213120,0,0,0,15.6
+213121,0,0,0,15.6
+213122,0,429200.2106,0,15.6
+213123,0,0,0,15.6
+213124,0,0,0,15.6
+213125,0,0,0,15.6
+213126,0,368509.8428,0,15.6
+213127,0,0,0,15.6
+213128,0,0,0,15.6
+213129,0,0,0,15.6
+213130,0,0,0,15.6
+213131,0,0,0,15.6
+213132,340079.1744,0,0,15.6
+213133,0,0,0,15.6
+213134,0,0,0,15.6
+213135,0,0,0,15.6
+213136,0,0,0,15.6
+213137,0,0,0,15.6
+213138,0,0,0,15.6
+213139,0,0,0,15.6
+213140,0,429790.2963,0,15.6
+213141,0,0,0,15.6
+213142,0,0,0,15.6
+213143,0,0,0,15.6
+213144,0,0,0,15.6
+213145,0,0,0,15.6
+213146,0,0,0,15.6
+213147,0,0,0,15.6
+213148,0,0,0,15.6
+213149,0,0,0,15.6
+213150,0,0,667970.6277,15.6
+213151,0,0,0,15.6
+213152,0,0,0,15.6
+213153,0,0,0,15.6
+213154,0,0,0,15.6
+213155,0,0,0,15.6
+213156,0,429270.8411,0,15.6
+213157,0,0,0,15.6
+213158,0,0,0,15.6
+213159,0,0,0,15.6
+213160,0,0,0,15.6
+213161,0,0,0,15.6
+213162,0,368511.3195,0,15.6
+213163,0,0,0,15.6
+213164,0,0,0,15.6
+213165,0,0,0,15.6
+213166,0,0,0,15.6
+213167,0,0,0,15.6
+213168,340079.2402,0,0,15.6
+213169,0,0,0,15.6
+213170,0,0,0,15.6
+213171,0,0,0,15.6
+213172,0,0,0,15.6
+213173,0,0,0,15.6
+213174,0,429709.0423,0,15.6
+213175,0,0,0,15.6
+213176,0,0,0,15.6
+213177,0,0,0,15.6
+213178,0,0,0,15.6
+213179,0,0,0,15.6
+213180,0,0,0,15.6
+213181,0,0,0,15.6
+213182,0,0,0,15.6
+213183,0,0,0,15.6
+213184,0,0,0,15.6
+213185,0,0,668064.036,15.6
+213186,0,0,0,15.6
+213187,0,0,0,15.6
+213188,0,0,0,15.6
+213189,0,0,0,15.6
+213190,0,0,0,15.6
+213191,0,0,0,15.6
+213192,0,429616.7224,0,15.6
+213193,0,0,0,15.6
+213194,0,0,0,15.6
+213195,0,0,0,15.6
+213196,0,0,0,15.6
+213197,0,0,0,15.6
+213198,0,368500.4995,0,15.6
+213199,0,0,0,15.6
+213200,0,0,0,15.6
+213201,0,0,0,15.6
+213202,0,0,0,15.6
+213203,0,0,0,15.6
+213204,340079.1841,0,0,15.6
+213205,0,0,0,15.6
+213206,0,0,0,15.6
+213207,0,0,0,15.6
+213208,0,0,0,15.6
+213209,0,0,0,15.6
+213210,0,0,0,15.6
+213211,0,0,0,15.6
+213212,0,0,0,15.6
+213213,0,0,0,15.6
+213214,0,0,0,15.6
+213215,0,0,0,15.6
+213216,0,0,0,15.6
+213217,0,0,0,15.6
+213218,0,0,0,15.6
+213219,0,0,0,15.6
+213220,0,0,668193.7617,15.6
+213221,0,0,0,15.6
+213222,0,0,0,15.6
+213223,0,0,0,15.6
+213224,0,0,0,15.6
+213225,0,0,0,15.6
+213226,0,0,0,15.6
+213227,0,0,0,15.6
+213228,0,0,0,15.6
+213229,0,0,0,15.6
+213230,0,0,0,15.6
+213231,0,0,0,15.6
+213232,0,0,0,15.6
+213233,0,0,0,15.6
+213234,0,368477.5885,0,15.6
+213235,0,186.5069412,0,15.6
+213236,0,0,0,15.6
+213237,0,0,0,15.6
+213238,0,0,0,15.6
+213239,0,0,0,15.6
+213240,340079.4038,0,0,15.6
+213241,0,0,0,15.6
+213242,0,0,0,15.6
+213243,0,0,0,15.6
+213244,0,0,0,15.6
+213245,0,0,0,15.6
+213246,0,0,0,15.6
+213247,0,0,0,15.6
+213248,0,65.62119649,0,15.6
+213249,0,0,0,15.6
+213250,0,0,0,15.6
+213251,0,0,0,15.6
+213252,0,0,0,15.6
+213253,0,0,0,15.6
+213254,0,0,0,15.6
+213255,0,0,668220.1863,15.6
+213256,0,0,0,15.6
+213257,0,0,0,15.6
+213258,0,0,0,15.6
+213259,0,0,0,15.6
+213260,0,0,0,15.6
+213261,0,0,0,15.6
+213262,0,0,0,15.6
+213263,0,0,0,15.6
+213264,0,0,0,15.6
+213265,0,0,0,15.6
+213266,0,0,0,15.6
+213267,0,0,0,15.6
+213268,0,0,0,15.6
+213269,0,0,0,15.6
+213270,0,368479.1044,0,15.6
+213271,0,0,0,15.6
+213272,0,0,0,15.6
+213273,0,0,0,15.6
+213274,0,0,0,15.6
+213275,0,0,0,15.6
+213276,340079.3994,0,0,15.6
+213277,0,0,0,15.6
+213278,0,0,0,15.6
+213279,0,0,0,15.6
+213280,0,0,0,15.6
+213281,0,0,0,15.6
+213282,0,0,0,15.6
+213283,0,0,0,15.6
+213284,0,0,0,15.6
+213285,0,0,0,15.6
+213286,0,0,0,15.6
+213287,0,0,0,15.6
+213288,0,0,0,15.6
+213289,0,0,0,15.6
+213290,0,0,668290.1016,15.6
+213291,0,3.18201359,0,15.6
+213292,0,0,0,15.6
+213293,0,0,0,15.6
+213294,0,239.125716,0,15.6
+213295,0,0,0,15.6
+213296,0,0,0,15.6
+213297,0,0,0,15.6
+213298,0,0,0,15.6
+213299,0,0,0,15.6
+213300,0,0,0,15.6
+213301,0,0,0,15.6
+213302,0,0,0,15.6
+213303,0,0,0,15.6
+213304,0,0,0,15.6
+213305,0,7.886094195,0,15.6
+213306,0,368482.1317,0,15.6
+213307,0,428944.6854,0,15.6
+213308,0,0,0,15.6
+213309,0,0,0,15.6
+213310,0,0,0,15.6
+213311,0,0,0,15.6
+213312,338144.3692,0,0,15.6
+213313,0,0,0,15.6
+213314,0,0,0,15.6
+213315,0,0,0,15.6
+213316,0,0,0,15.6
+213317,0,0,0,15.6
+213318,0,0,0,15.6
+213319,0,0,0,15.6
+213320,0,0,0,15.6
+213321,0,0,0,15.6
+213322,0,0,0,15.6
+213323,0,0,0,15.6
+213324,0,0,0,15.6
+213325,0,0,668276.9282,15.6
+213326,0,0,0,15.6
+213327,0,0,0,15.6
+213328,0,0,0,15.6
+213329,0,0,0,15.6
+213330,0,0,0,15.6
+213331,0,0,0,15.6
+213332,0,0,0,15.6
+213333,0,0,0,15.6
+213334,0,0,0,15.6
+213335,0,0,0,15.6
+213336,0,428893.2674,0,15.6
+213337,0,0,0,15.6
+213338,0,0,0,15.6
+213339,0,0,0,15.6
+213340,0,0,0,15.6
+213341,0,0,0,15.6
+213342,0,368481.0837,0,15.6
+213343,0,0,0,15.6
+213344,0,0,0,15.6
+213345,0,0,0,15.6
+213346,0,0,0,15.6
+213347,0,0,0,15.6
+213348,339058.0744,0,0,15.6
+213349,0,0,0,15.6
+213350,0,0,0,15.6
+213351,0,0,0,15.6
+213352,0,0,0,15.6
+213353,0,0,0,15.6
+213354,0,0,0,15.6
+213355,0,0,0,15.6
+213356,0,0,0,15.6
+213357,0,0,0,15.6
+213358,0,0,0,15.6
+213359,0,428887.1385,0,15.6
+213360,0,0,668058.7656,17.8
+213361,0,0,0,17.8
+213362,0,0,0,17.8
+213363,0,0,0,17.8
+213364,0,0,0,17.8
+213365,0,0,0,17.8
+213366,0,0,0,17.8
+213367,0,0,0,17.8
+213368,0,0,0,17.8
+213369,0,0,0,17.8
+213370,0,0,0,17.8
+213371,0,0,0,17.8
+213372,0,0,0,17.8
+213373,0,0,0,17.8
+213374,0,0,0,17.8
+213375,0,0,0,17.8
+213376,0,431317.4946,0,17.8
+213377,0,0,0,17.8
+213378,0,368492.4676,0,17.8
+213379,0,0,0,17.8
+213380,0,0,0,17.8
+213381,0,0,0,17.8
+213382,0,0,0,17.8
+213383,0,0,0,17.8
+213384,340079.169,0,0,17.8
+213385,0,0,0,17.8
+213386,0,0,0,17.8
+213387,0,0,0,17.8
+213388,0,0,0,17.8
+213389,0,0,0,17.8
+213390,0,0,0,17.8
+213391,0,0,0,17.8
+213392,0,0,0,17.8
+213393,0,0,0,17.8
+213394,0,429548.3061,0,17.8
+213395,0,0,668143.1298,17.8
+213396,0,0,0,17.8
+213397,0,0,0,17.8
+213398,0,0,0,17.8
+213399,0,0,0,17.8
+213400,0,0,0,17.8
+213401,0,0,0,17.8
+213402,0,0,0,17.8
+213403,0,0,0,17.8
+213404,0,0,0,17.8
+213405,0,0,0,17.8
+213406,0,0,0,17.8
+213407,0,0,0,17.8
+213408,0,0,0,17.8
+213409,0,0,0,17.8
+213410,0,0,0,17.8
+213411,0,0,0,17.8
+213412,0,429172.9744,0,17.8
+213413,0,0,0,17.8
+213414,0,368518.1108,0,17.8
+213415,0,0,0,17.8
+213416,0,0,0,17.8
+213417,0,0,0,17.8
+213418,0,0,0,17.8
+213419,0,0,0,17.8
+213420,340079.1572,0,0,20
+213421,0,0,0,20
+213422,0,0,0,20
+213423,0,0,0,20
+213424,0,0,0,20
+213425,0,0,0,20
+213426,0,0,0,20
+213427,0,0,0,20
+213428,0,0,0,20
+213429,0,0,0,20
+213430,0,0,668283.7768,20
+213431,0,0,0,20
+213432,0,0,0,20
+213433,0,0,0,20
+213434,0,0,0,20
+213435,0,428826.8063,0,20
+213436,0,0,0,20
+213437,0,0,0,20
+213438,0,0,0,20
+213439,0,0,0,20
+213440,0,0,0,20
+213441,0,0,0,20
+213442,0,0,0,20
+213443,0,0,0,20
+213444,0,0,0,20
+213445,0,0,0,20
+213446,0,0,0,20
+213447,0,0,0,20
+213448,0,0,0,20
+213449,0,0,0,20
+213450,0,0,0,20
+213451,0,0,0,20
+213452,0,0,0,20
+213453,0,0,0,20
+213454,0,368545.0033,0,20
+213455,0,0,0,20
+213456,0,0,0,20
+213457,0,0,0,20
+213458,0,428821.5042,0,20
+213459,0,0,0,20
+213460,0,0,0,20
+213461,340087.3358,0,0,20
+213462,0,0,0,20
+213463,0,0,0,20
+213464,0,0,0,20
+213465,0,0,0,20
+213466,0,0,0,20
+213467,0,0,0,20
+213468,0,0,668213.4603,20
+213469,0,0,0,20
+213470,0,0,0,20
+213471,0,0,0,20
+213472,0,0,0,20
+213473,0,0,0,20
+213474,0,218.8227125,0,20
+213475,0,0,0,20
+213476,0,429086.9552,0,20
+213477,0,0,0,20
+213478,0,0,0,20
+213479,0,0,0,20
+213480,0,0,0,21
+213481,0,0,0,21
+213482,0,0,0,21
+213483,0,0,0,21
+213484,0,0,0,21
+213485,0,0,0,21
+213486,0,0,0,21
+213487,0,0,0,21
+213488,0,0,0,21
+213489,0,0,0,21
+213490,0,0,0,21
+213491,0,0,0,21
+213492,0,232.8177948,0,21
+213493,0,0,0,21
+213494,0,797570.1573,0,21
+213495,0,0,0,21
+213496,0,0,0,21
+213497,0,0,0,21
+213498,0,0,0,21
+213499,0,0,0,21
+213500,0,0,0,21
+213501,0,0,0,21
+213502,338485.4522,0,0,21
+213503,0,0,0,21
+213504,0,0,668151.0451,21
+213505,0,0,0,21
+213506,0,0,0,21
+213507,0,0,0,21
+213508,0,0,0,21
+213509,0,0,0,21
+213510,0,60.06876004,0,21
+213511,0,0,0,21
+213512,0,0,0,21
+213513,0,0,0,21
+213514,0,0,0,21
+213515,0,0,0,21
+213516,0,0,0,21
+213517,0,0,0,21
+213518,0,0,0,21
+213519,0,0,0,21
+213520,0,0,0,21
+213521,0,0,0,21
+213522,0,0,0,21
+213523,0,0,0,21
+213524,0,3.302627847,0,21
+213525,0,0,0,21
+213526,0,4.143108216,0,21
+213527,0,0,0,21
+213528,0,0,0,21
+213529,0,240.5368894,0,21
+213530,0,0,0,21
+213531,0,0,0,21
+213532,0,0,0,21
+213533,0,0,0,21
+213534,0,368564.2528,0,21
+213535,0,0,0,21
+213536,0,0,0,21
+213537,0,0,0,21
+213538,0,0,0,21
+213539,0,0,0,21
+213540,338548.4989,98.42992574,667958.3482,21
+213541,0,0,0,21
+213542,0,0,0,21
+213543,0,428808.0412,0,21
+213544,0,0,0,21
+213545,0,0,0,21
+213546,0,0,0,21
+213547,0,0,0,21
+213548,0,0,0,21
+213549,0,0,0,21
+213550,0,0,0,21
+213551,0,0,0,21
+213552,0,0,0,21
+213553,0,0,0,21
+213554,0,428417.6566,0,21
+213555,0,0,0,21
+213556,0,0,0,21
+213557,0,0,0,21
+213558,0,0,0,21
+213559,0,0,0,21
+213560,0,0,0,21
+213561,0,0,0,21
+213562,0,0,0,21
+213563,0,0,0,21
+213564,0,0,0,21
+213565,0,428310.578,0,21
+213566,0,0,0,21
+213567,0,0,0,21
+213568,0,0,0,21
+213569,0,0,0,21
+213570,0,0,0,21
+213571,0,0,0,21
+213572,0,0,0,21
+213573,0,368580.6424,0,21
+213574,0,0,0,21
+213575,0,0,0,21
+213576,0,428259.8787,664928.1871,21
+213577,0,0,0,21
+213578,340075.8026,0,0,21
+213579,0,0,0,21
+213580,0,0,0,21
+213581,0,0,0,21
+213582,0,0,0,21
+213583,0,0,0,21
+213584,0,0,0,21
+213585,0,0,0,21
+213586,0,0,0,21
+213587,0,428268.4455,0,21
+213588,0,0,0,21
+213589,0,0,0,21
+213590,0,0,0,21
+213591,0,0,0,21
+213592,0,0,0,21
+213593,0,0,0,21
+213594,0,0,0,21
+213595,0,0,0,21
+213596,0,0,0,21
+213597,0,0,0,21
+213598,0,428268.7444,0,21
+213599,0,0,0,21
+213600,0,0,0,21
+213601,0,0,0,21
+213602,0,0,0,21
+213603,0,0,0,21
+213604,0,0,0,21
+213605,0,0,0,21
+213606,0,0,0,21
+213607,0,0,0,21
+213608,0,0,0,21
+213609,0,0,0,21
+213610,0,0,0,21
+213611,0,368600.4314,0,21
+213612,0,0,665314.3953,21
+213613,0,0,0,21
+213614,0,0,0,21
+213615,0,0,0,21
+213616,340118.1074,0,0,21
+213617,0,0,0,21
+213618,0,0,0,21
+213619,0,0,0,21
+213620,0,0,0,21
+213621,0,0,0,21
+213622,0,0,0,21
+213623,0,0,0,21
+213624,0,0,0,21
+213625,0,0,0,21
+213626,0,0,0,21
+213627,0,0,0,21
+213628,0,0,0,21
+213629,0,0,0,21
+213630,0,0,0,21
+213631,0,0,0,21
+213632,0,0,0,21
+213633,0,0,0,21
+213634,0,0,0,21
+213635,0,0,0,21
+213636,0,0,0,21
+213637,0,0,0,21
+213638,0,0,0,21
+213639,0,0,0,21
+213640,0,0,0,21
+213641,0,0,0,21
+213642,0,0,0,21
+213643,0,0,0,21
+213644,0,0,0,21
+213645,0,0,0,21
+213646,0,0,0,21
+213647,0,0,0,21
+213648,0,0,664101.7642,21
+213649,0,368623.624,0,21
+213650,0,0,0,21
+213651,0,0,0,21
+213652,0,235.8276695,0,21
+213653,0,0,0,21
+213654,338053.4486,0,0,21
+213655,0,0,0,21
+213656,0,0,0,21
+213657,0,0,0,21
+213658,0,0,0,21
+213659,0,0,0,21
+213660,0,0,0,21
+213661,0,0,0,21
+213662,0,0,0,21
+213663,0,428686.0571,0,21
+213664,0,0,0,21
+213665,0,0,0,21
+213666,0,0,0,21
+213667,0,0,0,21
+213668,0,0,0,21
+213669,0,0,0,21
+213670,0,0,0,21
+213671,0,0,0,21
+213672,0,0,0,21
+213673,0,0,0,21
+213674,0,0,0,21
+213675,0,0,0,21
+213676,0,0,0,21
+213677,0,0,0,21
+213678,0,0,0,21
+213679,0,0,0,21
+213680,0,0,0,21
+213681,0,0,0,21
+213682,0,0,0,21
+213683,0,0,0,21
+213684,0,0,664013.2869,21
+213685,0,0,0,21
+213686,0,0,0,21
+213687,0,368632.0084,0,21
+213688,0,0,0,21
+213689,0,0,0,21
+213690,0,0,0,21
+213691,0,0,0,21
+213692,338220.9421,0,0,21
+213693,0,0,0,21
+213694,0,0,0,21
+213695,0,0,0,21
+213696,0,0,0,21
+213697,0,0,0,21
+213698,0,0,0,21
+213699,0,0,0,21
+213700,0,0,0,21
+213701,0,0,0,21
+213702,0,0,0,21
+213703,0,0,0,21
+213704,0,0,0,21
+213705,0,0,0,21
+213706,0,0,0,21
+213707,0,0,0,21
+213708,0,0,0,21
+213709,0,0,0,21
+213710,0,0,0,21
+213711,0,0,0,21
+213712,0,0,0,21
+213713,0,0,0,21
+213714,0,0,0,21
+213715,0,0,0,21
+213716,0,0,0,21
+213717,0,0,0,21
+213718,0,0,0,21
+213719,0,0,0,21
+213720,0,0,663950.31,21
+213721,0,0,0,21
+213722,0,0,0,21
+213723,0,0,0,21
+213724,0,0,0,21
+213725,0,368629.5108,0,21
+213726,0,0,0,21
+213727,0,0,0,21
+213728,0,0,0,21
+213729,0,0,0,21
+213730,0,0,0,21
+213731,0,0,0,21
+213732,337949.076,0,0,21
+213733,0,0,0,21
+213734,0,0,0,21
+213735,0,0,0,21
+213736,0,0,0,21
+213737,0,0,0,21
+213738,0,0,0,21
+213739,0,0,0,21
+213740,0,0,0,21
+213741,0,0,0,21
+213742,0,0,0,21
+213743,0,0,0,21
+213744,0,0,0,21
+213745,0,0,0,21
+213746,0,0,0,21
+213747,0,0,0,21
+213748,0,0,0,21
+213749,0,0,0,21
+213750,0,0,0,21
+213751,0,0,0,21
+213752,0,0,0,21
+213753,0,0,0,21
+213754,0,0,0,21
+213755,0,0,0,21
+213756,0,0,0,21
+213757,0,0,664111.084,21
+213758,0,0,0,21
+213759,0,0,0,21
+213760,0,0,0,21
+213761,0,0,0,21
+213762,0,0,0,21
+213763,0,0,0,21
+213764,0,368651.3162,0,21
+213765,0,0,0,21
+213766,0,0,0,21
+213767,0,0,0,21
+213768,0,0,0,21
+213769,0,0,0,21
+213770,0,0,0,21
+213771,0,0,0,21
+213772,338269.175,0,0,21
+213773,0,0,0,21
+213774,0,0,0,21
+213775,0,0,0,21
+213776,0,0,0,21
+213777,0,0,0,21
+213778,0,0,0,21
+213779,0,0,0,21
+213780,0,0,0,21
+213781,0,0,0,21
+213782,0,0,0,21
+213783,0,0,0,21
+213784,0,0,0,21
+213785,0,0,0,21
+213786,0,0,0,21
+213787,0,0,0,21
+213788,0,0,0,21
+213789,0,0,0,21
+213790,0,0,0,21
+213791,0,0,0,21
+213792,0,0,0,21
+213793,0,0,0,21
+213794,0,0,664056.0666,21
+213795,0,0,0,21
+213796,0,0,0,21
+213797,0,0,0,21
+213798,0,0,0,21
+213799,0,0,0,21
+213800,0,0,0,21
+213801,0,0,0,21
+213802,0,0,0,21
+213803,0,368677.0037,0,21
+213804,0,0,0,21
+213805,0,0,0,21
+213806,0,0,0,21
+213807,0,0,0,21
+213808,0,0,0,21
+213809,0,0,0,21
+213810,0,0,0,21
+213811,0,0,0,21
+213812,338300.441,0,0,21
+213813,0,0,0,21
+213814,0,0,0,21
+213815,0,0,0,21
+213816,0,0,0,21
+213817,0,0,0,21
+213818,0,0,0,21
+213819,0,0,0,21
+213820,0,0,0,21
+213821,0,0,0,21
+213822,0,0,0,21
+213823,0,0,0,21
+213824,0,0,0,21
+213825,0,0,0,21
+213826,0,0,0,21
+213827,0,0,0,21
+213828,0,0,0,21
+213829,0,0,0,21
+213830,0,0,0,21
+213831,0,0,663994.0684,21
+213832,0,0,0,21
+213833,0,0,0,21
+213834,0,0,0,21
+213835,0,0,0,21
+213836,0,0,0,21
+213837,0,0,0,21
+213838,0,0,0,21
+213839,0,0,0,21
+213840,0,0,0,21
+213841,0,0,0,21
+213842,0,368703.1482,0,21
+213843,0,0,0,21
+213844,0,0,0,21
+213845,0,0,0,21
+213846,0,0,0,21
+213847,0,0,0,21
+213848,0,0,0,21
+213849,0,0,0,21
+213850,0,0,0,21
+213851,0,0,0,21
+213852,0,0,0,21
+213853,339603.5812,0,0,21
+213854,0,0,0,21
+213855,0,0,0,21
+213856,0,0,0,21
+213857,0,0,0,21
+213858,0,0,0,21
+213859,0,0,0,21
+213860,0,0,0,21
+213861,0,0,0,21
+213862,0,0,0,21
+213863,0,0,0,21
+213864,0,0,0,21
+213865,0,0,0,21
+213866,0,0,0,21
+213867,0,0,0,21
+213868,0,0,0,21
+213869,0,0,663906.4618,21
+213870,0,0,0,21
+213871,0,0,0,21
+213872,0,0,0,21
+213873,0,0,0,21
+213874,0,0,0,21
+213875,0,0,0,21
+213876,0,0,0,21
+213877,0,0,0,21
+213878,0,0,0,21
+213879,0,0,0,21
+213880,0,0,0,21
+213881,0,368726.8539,0,21
+213882,0,0,0,21
+213883,0,0,0,21
+213884,0,0,0,21
+213885,0,0,0,21
+213886,0,0,0,21
+213887,0,0,0,21
+213888,0,0,0,21
+213889,0,0,0,21
+213890,0,0,0,21
+213891,0,0,0,21
+213892,0,0,0,21
+213893,0,0,0,21
+213894,340173.9691,0,0,21
+213895,0,0,0,21
+213896,0,0,0,21
+213897,0,0,0,21
+213898,0,0,0,21
+213899,0,0,0,21
+213900,0,0,0,21
+213901,0,0,0,21
+213902,0,0,0,21
+213903,0,0,0,21
+213904,0,0,0,21
+213905,0,0,0,21
+213906,0,0,0,21
+213907,0,0,664247.8754,21
+213908,0,0,0,21
+213909,0,0,0,21
+213910,0,0,0,21
+213911,0,0,0,21
+213912,0,0,0,21
+213913,0,0,0,21
+213914,0,0,0,21
+213915,0,0,0,21
+213916,0,0,0,21
+213917,0,0,0,21
+213918,0,0,0,21
+213919,0,0,0,21
+213920,0,368763.5928,0,21
+213921,0,0,0,21
+213922,0,0,0,21
+213923,0,0,0,21
+213924,0,0,0,21
+213925,0,0,0,21
+213926,0,0,0,21
+213927,0,0,0,21
+213928,0,0,0,21
+213929,0,0,0,21
+213930,0,0,0,21
+213931,0,0,0,21
+213932,0,0,0,21
+213933,0,0,0,21
+213934,0,0,0,21
+213935,330511.6072,0,0,21
+213936,0,0,0,21
+213937,0,0,0,21
+213938,0,0,0,21
+213939,0,0,0,21
+213940,0,0,0,21
+213941,0,0,0,21
+213942,0,0,0,21
+213943,0,0,0,21
+213944,0,0,663946.1495,21
+213945,0,0,0,21
+213946,0,0,0,21
+213947,0,0,0,21
+213948,0,0,0,21
+213949,0,0,0,21
+213950,0,0,0,21
+213951,0,0,0,21
+213952,0,0,0,21
+213953,0,0,0,21
+213954,0,0,0,21
+213955,0,0,0,21
+213956,0,0,0,21
+213957,0,0,0,21
+213958,0,0,0,21
+213959,0,368812.6142,0,21
+213960,0,0,0,21
+213961,0,0,0,21
+213962,0,0,0,21
+213963,0,0,0,21
+213964,0,0,0,21
+213965,0,0,0,21
+213966,0,0,0,21
+213967,0,0,0,21
+213968,0,0,0,21
+213969,0,0,0,21
+213970,0,0,0,21
+213971,0,0,0,21
+213972,0,0,0,21
+213973,0,0,0,21
+213974,0,0,0,21
+213975,0,0,0,21
+213976,331271.7516,0,0,21
+213977,0,0,0,21
+213978,0,0,0,21
+213979,0,0,0,21
+213980,0,0,663963.3699,21
+213981,0,0,0,21
+213982,0,0,0,21
+213983,0,0,0,21
+213984,0,0,0,21
+213985,0,0,0,21
+213986,0,0,0,21
+213987,0,0,0,21
+213988,0,0,0,21
+213989,0,0,0,21
+213990,0,0,0,21
+213991,0,0,0,21
+213992,0,0,0,21
+213993,0,0,0,21
+213994,0,0,0,21
+213995,0,0,0,21
+213996,0,0,0,21
+213997,0,0,0,21
+213998,0,368789.4072,0,21
+213999,0,0,0,21
+214000,0,0,0,21
+214001,0,0,0,21
+214002,0,0,0,21
+214003,0,0,0,21
+214004,0,0,0,21
+214005,0,0,0,21
+214006,0,0,0,21
+214007,0,0,0,21
+214008,0,0,0,21
+214009,0,0,0,21
+214010,0,0,0,21
+214011,0,0,0,21
+214012,0,0,0,21
+214013,0,0,0,21
+214014,331462.3225,0,0,21
+214015,0,0,0,21
+214016,0,0,664002.2508,21
+214017,0,0,0,21
+214018,0,0,0,21
+214019,0,0,0,21
+214020,0,0,0,21
+214021,0,0,0,21
+214022,0,0,0,21
+214023,0,0,0,21
+214024,0,0,0,21
+214025,0,0,0,21
+214026,0,0,0,21
+214027,0,0,0,21
+214028,0,0,0,21
+214029,0,0,0,21
+214030,0,0,0,21
+214031,0,0,0,21
+214032,0,0,0,21
+214033,0,0,0,21
+214034,0,0,0,21
+214035,0,0,0,21
+214036,0,0,0,21
+214037,0,368798.1017,0,21
+214038,0,0,0,21
+214039,0,0,0,21
+214040,0,0,0,21
+214041,0,0,0,21
+214042,0,0,0,21
+214043,0,0,0,21
+214044,0,0,0,21
+214045,0,0,0,21
+214046,0,0,0,21
+214047,0,0,0,21
+214048,0,0,0,21
+214049,0,0,0,21
+214050,0,0,0,21
+214051,0,0,0,21
+214052,337987.7045,0,664216.5434,21
+214053,0,0,0,21
+214054,0,0,0,21
+214055,0,0,0,21
+214056,0,0,0,21
+214057,0,0,0,21
+214058,0,0,0,21
+214059,0,0,0,21
+214060,0,0,0,21
+214061,0,0,0,21
+214062,0,0,0,21
+214063,0,0,0,21
+214064,0,0,0,21
+214065,0,0,0,21
+214066,0,0,0,21
+214067,0,0,0,21
+214068,0,0,0,21
+214069,0,0,0,21
+214070,0,0,0,21
+214071,0,0,0,21
+214072,0,0,0,21
+214073,0,0,0,21
+214074,0,0,0,21
+214075,0,0,0,21
+214076,0,368806.9756,0,21
+214077,0,0,0,21
+214078,0,0,0,21
+214079,0,0,0,21
+214080,0,0,0,21
+214081,0,0,0,21
+214082,0,0,0,21
+214083,0,0,0,21
+214084,0,0,0,21
+214085,0,0,0,21
+214086,0,0,0,21
+214087,0,0,0,21
+214088,0,0,664145.5584,21
+214089,0,0,0,21
+214090,337918.5367,0,0,21
+214091,0,0,0,21
+214092,0,0,0,21
+214093,0,0,0,21
+214094,0,0,0,21
+214095,0,0,0,21
+214096,0,0,0,21
+214097,0,0,0,21
+214098,0,0,0,21
+214099,0,0,0,21
+214100,0,0,0,21
+214101,0,0,0,21
+214102,0,0,0,21
+214103,0,0,0,21
+214104,0,0,0,21
+214105,0,0,0,21
+214106,0,0,0,21
+214107,0,0,0,21
+214108,0,0,0,21
+214109,0,0,0,21
+214110,0,0,0,21
+214111,0,0,0,21
+214112,0,0,0,21
+214113,0,0,0,21
+214114,0,0,0,21
+214115,0,368815.849,0,21
+214116,0,0,0,21
+214117,0,0,0,21
+214118,0,0,0,21
+214119,0,0,0,21
+214120,0,0,0,21
+214121,0,0,0,21
+214122,0,0,0,21
+214123,0,0,0,21
+214124,0,0,664515.0243,21
+214125,0,0,0,21
+214126,0,0,0,21
+214127,0,0,0,21
+214128,329246.4723,0,0,21
+214129,0,0,0,21
+214130,0,0,0,21
+214131,0,0,0,21
+214132,0,0,0,21
+214133,0,0,0,21
+214134,0,0,0,21
+214135,0,0,0,21
+214136,0,0,0,21
+214137,0,0,0,21
+214138,0,0,0,21
+214139,0,0,0,21
+214140,0,0,0,21
+214141,0,0,0,21
+214142,0,0,0,21
+214143,0,0,0,21
+214144,0,0,0,21
+214145,0,0,0,21
+214146,0,0,0,21
+214147,0,0,0,21
+214148,0,0,0,21
+214149,0,0,0,21
+214150,0,0,0,21
+214151,0,0,0,21
+214152,0,0,0,21
+214153,0,368821.7786,0,21
+214154,0,0,0,21
+214155,0,0,0,21
+214156,0,0,0,21
+214157,0,0,0,21
+214158,0,0,0,21
+214159,0,0,0,21
+214160,0,0,664662.1548,21
+214161,0,0,0,21
+214162,0,0,0,21
+214163,0,0,0,21
+214164,0,0,0,21
+214165,0,0,0,21
+214166,330587.4642,0,0,21
+214167,0,0,0,21
+214168,0,0,0,21
+214169,0,0,0,21
+214170,0,0,0,21
+214171,0,0,0,21
+214172,0,0,0,21
+214173,0,0,0,21
+214174,0,0,0,21
+214175,0,0,0,21
+214176,0,0,0,21
+214177,0,0,0,21
+214178,0,0,0,21
+214179,0,0,0,21
+214180,0,0,0,21
+214181,0,0,0,21
+214182,0,0,0,21
+214183,0,0,0,21
+214184,0,0,0,21
+214185,0,0,0,21
+214186,0,0,0,21
+214187,0,0,0,21
+214188,0,0,0,21
+214189,0,0,0,21
+214190,0,0,0,21
+214191,0,368821.7781,0,21
+214192,0,0,0,21
+214193,0,0,0,21
+214194,0,0,0,21
+214195,0,0,0,21
+214196,0,0,664586.9157,21
+214197,0,0,0,21
+214198,0,0,0,21
+214199,0,0,0,21
+214200,0,0,0,21
+214201,0,0,0,21
+214202,0,0,0,21
+214203,0,0,0,21
+214204,331392.4265,0,0,21
+214205,0,0,0,21
+214206,0,0,0,21
+214207,0,0,0,21
+214208,0,0,0,21
+214209,0,0,0,21
+214210,0,0,0,21
+214211,0,0,0,21
+214212,0,0,0,21
+214213,0,0,0,21
+214214,0,0,0,21
+214215,0,0,0,21
+214216,0,0,0,21
+214217,0,0,0,21
+214218,0,0,0,21
+214219,0,0,0,21
+214220,0,0,0,21
+214221,0,0,0,21
+214222,0,0,0,21
+214223,0,0,0,21
+214224,0,0,0,21
+214225,0,0,0,21
+214226,0,0,0,21
+214227,0,0,0,21
+214228,0,0,0,21
+214229,0,368821.7785,0,21
+214230,0,0,0,21
+214231,0,0,0,21
+214232,0,0,664949.9036,21
+214233,0,0,0,21
+214234,0,0,0,21
+214235,0,0,0,21
+214236,0,0,0,21
+214237,0,0,0,21
+214238,0,0,0,21
+214239,0,0,0,21
+214240,0,0,0,21
+214241,0,0,0,21
+214242,331951.417,0,0,21
+214243,0,0,0,21
+214244,0,0,0,21
+214245,0,0,0,21
+214246,0,0,0,21
+214247,0,0,0,21
+214248,0,0,0,21
+214249,0,0,0,21
+214250,0,0,0,21
+214251,0,0,0,21
+214252,0,0,0,21
+214253,0,0,0,21
+214254,0,0,0,21
+214255,0,0,0,21
+214256,0,0,0,21
+214257,0,0,0,21
+214258,0,0,0,21
+214259,0,0,0,21
+214260,0,0,0,21
+214261,0,0,0,21
+214262,0,0,0,21
+214263,0,0,0,21
+214264,0,0,0,21
+214265,0,0,0,21
+214266,0,0,0,21
+214267,0,368752.0643,0,21
+214268,0,0,664253.1942,21
+214269,0,0,0,21
+214270,0,0,0,21
+214271,0,0,0,21
+214272,0,0,0,21
+214273,0,0,0,21
+214274,0,0,0,21
+214275,0,0,0,21
+214276,0,0,0,21
+214277,0,0,0,21
+214278,0,0,0,21
+214279,0,0,0,21
+214280,332367.518,0,0,21
+214281,0,0,0,21
+214282,0,0,0,21
+214283,0,0,0,21
+214284,0,0,0,21
+214285,0,0,0,21
+214286,0,0,0,21
+214287,0,0,0,21
+214288,0,0,0,21
+214289,0,0,0,21
+214290,0,0,0,21
+214291,0,0,0,21
+214292,0,0,0,21
+214293,0,0,0,21
+214294,0,0,0,21
+214295,0,0,0,21
+214296,0,0,0,21
+214297,0,0,0,21
+214298,0,0,0,21
+214299,0,0,0,21
+214300,0,0,0,21
+214301,0,0,0,21
+214302,0,0,0,21
+214303,0,0,0,21
+214304,0,0,664244.5178,21
+214305,0,368350.9485,0,21
+214306,0,0,0,21
+214307,0,0,0,21
+214308,0,0,0,21
+214309,0,0,0,21
+214310,0,0,0,21
+214311,0,0,0,21
+214312,0,0,0,21
+214313,0,0,0,21
+214314,0,0,0,21
+214315,0,0,0,21
+214316,0,0,0,21
+214317,0,0,0,21
+214318,332815.5998,0,0,21
+214319,0,0,0,21
+214320,0,0,0,21
+214321,0,0,0,21
+214322,0,0,0,21
+214323,0,0,0,21
+214324,0,0,0,21
+214325,0,0,0,21
+214326,0,0,0,21
+214327,0,0,0,21
+214328,0,0,0,21
+214329,0,0,0,21
+214330,0,0,0,21
+214331,0,0,0,21
+214332,0,0,0,21
+214333,0,0,0,21
+214334,0,0,0,21
+214335,0,0,0,21
+214336,0,0,0,21
+214337,0,0,0,21
+214338,0,0,0,21
+214339,0,0,0,21
+214340,0,0,0,21
+214341,0,0,0,21
+214342,0,0,664044.5166,21
+214343,0,0,0,21
+214344,0,0,0,21
+214345,0,368769.0497,0,21
+214346,0,0,0,21
+214347,0,0,0,21
+214348,0,0,0,21
+214349,0,0,0,21
+214350,0,0,0,21
+214351,0,0,0,21
+214352,0,0,0,21
+214353,0,0,0,21
+214354,0,0,0,21
+214355,0,0,0,21
+214356,0,0,0,21
+214357,0,0,0,21
+214358,0,0,0,21
+214359,332903.7118,0,0,21
+214360,0,0,0,21
+214361,0,0,0,21
+214362,0,0,0,21
+214363,0,0,0,21
+214364,0,0,0,21
+214365,0,0,0,21
+214366,0,0,0,21
+214367,0,0,0,21
+214368,0,0,0,21
+214369,0,0,0,21
+214370,0,0,0,21
+214371,0,0,0,21
+214372,0,0,0,21
+214373,0,0,0,21
+214374,0,0,0,21
+214375,0,0,0,21
+214376,0,0,0,21
+214377,0,0,0,21
+214378,0,0,0,21
+214379,0,0,0,21
+214380,0,0,663275.4544,21
+214381,0,0,0,21
+214382,0,0,0,21
+214383,0,0,0,21
+214384,0,0,0,21
+214385,0,368816.0569,0,21
+214386,0,0,0,21
+214387,0,0,0,21
+214388,0,0,0,21
+214389,0,0,0,21
+214390,0,0,0,21
+214391,0,0,0,21
+214392,0,0,0,21
+214393,0,0,0,21
+214394,0,0,0,21
+214395,0,0,0,21
+214396,0,0,0,21
+214397,333048.1311,0,0,21
+214398,0,0,0,21
+214399,0,0,0,21
+214400,0,0,0,21
+214401,0,0,0,21
+214402,0,0,0,21
+214403,0,0,0,21
+214404,0,0,0,21
+214405,0,0,0,21
+214406,0,0,0,21
+214407,0,0,0,21
+214408,0,0,0,21
+214409,0,0,0,21
+214410,0,0,0,21
+214411,0,0,0,21
+214412,0,0,0,21
+214413,0,0,0,21
+214414,0,0,0,21
+214415,0,0,0,21
+214416,0,0,663204.0375,21
+214417,0,2.634745476,0,21
+214418,0,0,0,21
+214419,0,73.14926752,0,21
+214420,0,0,0,21
+214421,0,0,0,21
+214422,0,0,0,21
+214423,0,0,0,21
+214424,0,252.9484808,0,21
+214425,0,368810.5541,0,21
+214426,0,0,0,21
+214427,0,0,0,21
+214428,0,0,0,21
+214429,0,0,0,21
+214430,0,0,0,21
+214431,0,0,0,21
+214432,0,0,0,21
+214433,0,0,0,21
+214434,0,0,0,21
+214435,333221.6584,0,0,21
+214436,0,85.79195648,0,21
+214437,0,0,0,21
+214438,0,0,0,21
+214439,0,0,0,21
+214440,0,0,0,15.6
+214441,0,0,0,15.6
+214442,0,7.460530945,0,15.6
+214443,0,0,0,15.6
+214444,0,129.0931618,0,15.6
+214445,0,0,0,15.6
+214446,0,0,0,15.6
+214447,0,0,0,15.6
+214448,0,0,0,15.6
+214449,0,249.2481119,0,15.6
+214450,0,0,0,15.6
+214451,0,0,0,15.6
+214452,0,0,663671.8507,15.6
+214453,0,0,0,15.6
+214454,0,0,0,15.6
+214455,0,0,0,15.6
+214456,0,0,0,15.6
+214457,0,0,0,15.6
+214458,0,0,0,15.6
+214459,0,0,0,15.6
+214460,0,3.090073298,0,15.6
+214461,0,0,0,15.6
+214462,0,97.84502272,0,15.6
+214463,0,0,0,15.6
+214464,0,368794.5398,0,15.6
+214465,0,0,0,15.6
+214466,0,0,0,15.6
+214467,0,33.97711413,0,15.6
+214468,0,0,0,15.6
+214469,0,0,0,15.6
+214470,0,0,0,15.6
+214471,0,0,0,15.6
+214472,0,0,0,15.6
+214473,340414.6414,0,0,15.6
+214474,0,0,0,15.6
+214475,0,0,0,15.6
+214476,0,0,0,15.6
+214477,0,3.194838711,0,15.6
+214478,0,0,0,15.6
+214479,0,87.09001586,0,15.6
+214480,0,0,0,15.6
+214481,0,0,0,15.6
+214482,0,0,0,15.6
+214483,0,0,0,15.6
+214484,0,35.99029814,0,15.6
+214485,0,0,0,15.6
+214486,0,0,0,15.6
+214487,0,0,0,15.6
+214488,0,0,663000.7725,15.6
+214489,0,0,0,15.6
+214490,0,0,0,15.6
+214491,0,0,0,15.6
+214492,0,0,0,15.6
+214493,0,3.127191037,0,15.6
+214494,0,0,0,15.6
+214495,0,82.42550809,0,15.6
+214496,0,0,0,15.6
+214497,0,0,0,15.6
+214498,0,0,0,15.6
+214499,0,7.998242396,0,15.6
+214500,0,0,0,15.6
+214501,0,105.9225626,0,15.6
+214502,0,0,0,15.6
+214503,0,368773.9935,0,15.6
+214504,0,0,0,15.6
+214505,0,3.060733043,0,15.6
+214506,0,0,0,15.6
+214507,0,72.00490016,0,15.6
+214508,0,0,0,15.6
+214509,340415.1557,0,0,15.6
+214510,0,0,0,15.6
+214511,0,3.897335624,0,15.6
+214512,0,0,0,15.6
+214513,0,81.73024276,0,15.6
+214514,0,0,0,15.6
+214515,0,0,0,15.6
+214516,0,0,0,15.6
+214517,0,7.296726991,0,15.6
+214518,0,0,0,15.6
+214519,0,99.50544295,0,15.6
+214520,0,0,0,15.6
+214521,0,0,0,15.6
+214522,0,0,0,15.6
+214523,0,3.544727719,663890.636,15.6
+214524,0,0,0,15.6
+214525,0,82.26280728,0,15.6
+214526,0,0,0,15.6
+214527,0,0,0,15.6
+214528,0,0,0,15.6
+214529,0,7.510850115,0,15.6
+214530,0,0,0,15.6
+214531,0,101.3471054,0,15.6
+214532,0,0,0,15.6
+214533,0,0,0,15.6
+214534,0,0,0,15.6
+214535,0,3.396255995,0,15.6
+214536,0,0,0,15.6
+214537,0,79.66183898,0,15.6
+214538,0,0,0,15.6
+214539,0,368733.0398,0,15.6
+214540,0,0,0,15.6
+214541,0,4.238988343,0,15.6
+214542,0,0,0,15.6
+214543,0,83.59408636,0,15.6
+214544,0,0,0,15.6
+214545,340415.0585,0,0,15.6
+214546,0,0,0,15.6
+214547,0,3.536615488,0,15.6
+214548,0,0,0,15.6
+214549,0,76.42301608,0,15.6
+214550,0,0,0,15.6
+214551,0,0,0,15.6
+214552,0,0,0,15.6
+214553,0,7.169454933,0,15.6
+214554,0,0,0,15.6
+214555,0,97.38041336,0,15.6
+214556,0,0,0,15.6
+214557,0,0,0,15.6
+214558,0,0,664761.9545,15.6
+214559,0,3.439846565,0,15.6
+214560,0,0,0,15.6
+214561,0,79.96562732,0,15.6
+214562,0,0,0,15.6
+214563,0,0,0,15.6
+214564,0,0,0,15.6
+214565,0,7.418065974,0,15.6
+214566,0,0,0,15.6
+214567,0,99.69939072,0,15.6
+214568,0,0,0,15.6
+214569,0,0,0,15.6
+214570,0,0,0,15.6
+214571,0,3.352974068,0,15.6
+214572,0,0,0,15.6
+214573,0,78.5036531,0,15.6
+214574,0,0,0,15.6
+214575,0,368705.3246,0,15.6
+214576,0,0,0,15.6
+214577,0,4.169310169,0,15.6
+214578,0,0,0,15.6
+214579,0,82.12030436,0,15.6
+214580,0,0,0,15.6
+214581,340415.6628,0,0,15.6
+214582,0,0,0,15.6
+214583,0,3.440950704,0,15.6
+214584,0,0,0,15.6
+214585,0,74.58347084,0,15.6
+214586,0,0,0,15.6
+214587,0,0,0,15.6
+214588,0,0,0,15.6
+214589,0,4.242888135,0,15.6
+214590,0,0,0,15.6
+214591,0,86.8562677,0,15.6
+214592,0,0,0,15.6
+214593,0,0,665357.897,15.6
+214594,0,0,0,15.6
+214595,0,4.253564042,0,15.6
+214596,0,0,0,15.6
+214597,0,95.94732431,0,15.6
+214598,0,0,0,15.6
+214599,0,0,0,15.6
+214600,0,0,0,15.6
+214601,0,3.335056245,0,15.6
+214602,0,0,0,15.6
+214603,0,77.81003261,0,15.6
+214604,0,0,0,15.6
+214605,0,0,0,15.6
+214606,0,0,0,15.6
+214607,0,7.200069551,0,15.6
+214608,0,0,0,15.6
+214609,0,96.81787106,0,15.6
+214610,0,0,0,15.6
+214611,0,368697.0517,0,15.6
+214612,0,0,0,15.6
+214613,0,2.976447117,0,15.6
+214614,0,0,0,15.6
+214615,0,68.76198315,0,15.6
+214616,0,0,0,15.6
+214617,340416.375,0,0,15.6
+214618,0,0,0,15.6
+214619,0,0,0,15.6
+214620,0,0,0,15.6
+214621,0,0,0,15.6
+214622,0,429335.7384,0,15.6
+214623,0,0,0,15.6
+214624,0,0,0,15.6
+214625,0,0,0,15.6
+214626,0,0,0,15.6
+214627,0,0,0,15.6
+214628,0,0,663269.3333,15.6
+214629,0,0,0,15.6
+214630,0,0,0,15.6
+214631,0,0,0,15.6
+214632,0,0,0,15.6
+214633,0,0,0,15.6
+214634,0,0,0,15.6
+214635,0,0,0,15.6
+214636,0,0,0,15.6
+214637,0,0,0,15.6
+214638,0,0,0,15.6
+214639,0,0,0,15.6
+214640,0,429257.2678,0,15.6
+214641,0,0,0,15.6
+214642,0,0,0,15.6
+214643,0,0,0,15.6
+214644,0,0,0,15.6
+214645,0,0,0,15.6
+214646,0,0,0,15.6
+214647,0,368694.6144,0,15.6
+214648,0,0,0,15.6
+214649,0,0,0,15.6
+214650,0,0,0,15.6
+214651,0,0,0,15.6
+214652,0,0,0,15.6
+214653,340417.4944,0,0,15.6
+214654,0,0,0,15.6
+214655,0,0,0,15.6
+214656,0,0,0,15.6
+214657,0,0,0,15.6
+214658,0,429223.9624,0,15.6
+214659,0,0,0,15.6
+214660,0,0,0,15.6
+214661,0,0,0,15.6
+214662,0,0,0,15.6
+214663,0,0,663682.1054,15.6
+214664,0,0,0,15.6
+214665,0,0,0,15.6
+214666,0,0,0,15.6
+214667,0,0,0,15.6
+214668,0,0,0,15.6
+214669,0,0,0,15.6
+214670,0,0,0,15.6
+214671,0,0,0,15.6
+214672,0,0,0,15.6
+214673,0,0,0,15.6
+214674,0,0,0,15.6
+214675,0,0,0,15.6
+214676,0,429174.3872,0,15.6
+214677,0,0,0,15.6
+214678,0,0,0,15.6
+214679,0,0,0,15.6
+214680,0,0,0,15.6
+214681,0,0,0,15.6
+214682,0,0,0,15.6
+214683,0,368693.4167,0,15.6
+214684,0,0,0,15.6
+214685,0,0,0,15.6
+214686,0,0,0,15.6
+214687,0,428893.8932,0,15.6
+214688,0,0,0,15.6
+214689,340417.7575,0,0,15.6
+214690,0,0,0,15.6
+214691,0,0,0,15.6
+214692,0,0,0,15.6
+214693,0,0,0,15.6
+214694,0,0,0,15.6
+214695,0,0,0,15.6
+214696,0,0,0,15.6
+214697,0,0,0,15.6
+214698,0,0,664828.9415,15.6
+214699,0,429051.0939,0,15.6
+214700,0,0,0,15.6
+214701,0,0,0,15.6
+214702,0,0,0,15.6
+214703,0,0,0,15.6
+214704,0,0,0,15.6
+214705,0,0,0,15.6
+214706,0,0,0,15.6
+214707,0,0,0,15.6
+214708,0,0,0,15.6
+214709,0,0,0,15.6
+214710,0,0,0,15.6
+214711,0,0,0,15.6
+214712,0,0,0,15.6
+214713,0,0,0,15.6
+214714,0,0,0,15.6
+214715,0,0,0,15.6
+214716,0,0,0,15.6
+214717,0,429103.7858,0,15.6
+214718,0,0,0,15.6
+214719,0,368696.1126,0,15.6
+214720,0,0,0,15.6
+214721,0,0,0,15.6
+214722,0,0,0,15.6
+214723,0,0,0,15.6
+214724,0,0,0,15.6
+214725,340416.6443,0,0,15.6
+214726,0,0,0,15.6
+214727,0,0,0,15.6
+214728,0,428809.3201,0,15.6
+214729,0,0,0,15.6
+214730,0,0,0,15.6
+214731,0,0,0,15.6
+214732,0,0,0,15.6
+214733,0,0,665461.4461,15.6
+214734,0,0,0,15.6
+214735,0,0,0,15.6
+214736,0,0,0,15.6
+214737,0,0,0,15.6
+214738,0,0,0,15.6
+214739,0,0,0,15.6
+214740,0,428960.0886,0,15.6
+214741,0,63688.45109,0,15.6
+214742,0,1011.742225,0,15.6
+214743,0,7669.997863,0,15.6
+214744,0,17090.8766,0,15.6
+214745,0,15125.57681,0,15.6
+214746,0,13493.85677,0,15.6
+214747,0,13984.97083,0,15.6
+214748,0,13984.97175,0,15.6
+214749,0,13947.48183,0,15.6
+214750,0,13896.05703,0,15.6
+214751,0,442552.2036,0,15.6
+214752,0,13842.01334,0,15.6
+214753,0,13804.27246,0,15.6
+214754,0,13769.11049,0,15.6
+214755,0,382449.5908,0,15.6
+214756,0,14110.87775,0,15.6
+214757,0,13895.48796,0,15.6
+214758,0,13970.42594,0,15.6
+214759,0,13930.00544,0,15.6
+214760,0,13987.96967,0,15.6
+214761,340416.4695,13949.08899,0,15.6
+214762,0,442574.1289,0,15.6
+214763,0,13986.34845,0,15.6
+214764,0,13890.26372,0,15.6
+214765,0,13912.5754,0,15.6
+214766,0,13925.82491,0,15.6
+214767,0,13927.02132,0,15.6
+214768,0,13869.68277,665799.7191,15.6
+214769,0,13909.50929,0,15.6
+214770,0,13882.48208,0,15.6
+214771,0,0,0,15.6
+214772,0,0,0,15.6
+214773,0,0,0,15.6
+214774,0,0,0,15.6
+214775,0,0,0,15.6
+214776,0,0,0,15.6
+214777,0,0,0,15.6
+214778,0,0,0,15.6
+214779,0,472863.7361,0,15.6
+214780,0,1212.809951,0,15.6
+214781,0,8302.884408,0,15.6
+214782,0,17745.50213,0,15.6
+214783,0,12360.25726,0,15.6
+214784,0,13018.29535,0,15.6
+214785,0,13148.0373,0,15.6
+214786,0,11443.34084,0,15.6
+214787,0,11361.37784,0,15.6
+214788,0,10745.759,0,15.6
+214789,0,10727.50424,0,15.6
+214790,0,10493.08465,0,15.6
+214791,0,379055.1691,0,15.6
+214792,0,10097.88959,0,15.6
+214793,0,10031.70049,0,15.6
+214794,0,438839.1093,0,15.6
+214795,0,9642.657114,0,15.6
+214796,0,9477.434496,0,15.6
+214797,340416.6693,9300.27865,0,15.6
+214798,0,9156.048697,0,15.6
+214799,0,9002.155516,0,15.6
+214800,0,8867.536546,0,17.8
+214801,820971.6346,542266.9698,0,17.8
+214802,2993.964166,229944.9146,0,17.8
+214803,13756.25578,160030.7772,666164.6724,17.8
+214804,23798.14995,171846.0299,0,17.8
+214805,17381.50313,661834.4767,0,17.8
+214806,18302.00833,190152.92,0,17.8
+214807,18298.42444,194136.0905,0,17.8
+214808,18211.24508,193199.5173,0,17.8
+214809,18259.60909,137569.5976,0,17.8
+214810,18155.82717,136086.8657,0,17.8
+214811,18112.8509,134199.6276,0,17.8
+214812,18103.78274,223001.3266,0,17.8
+214813,18057.12251,163870.9181,0,17.8
+214814,17969.21593,189370.9014,0,17.8
+214815,18017.8703,183197.0708,0,17.8
+214816,17956.37779,609737.1195,0,17.8
+214817,17869.97504,178958.9946,0,17.8
+214818,17873.69361,178120.6415,0,17.8
+214819,17870.00132,175965.198,0,17.8
+214820,17768.50298,174621.8999,0,17.8
+214821,17800.36689,173336.4882,0,17.8
+214822,17728.70831,171261.3803,0,17.8
+214823,17725.90652,173832.5915,0,17.8
+214824,17668.29834,171936.4477,0,17.8
+214825,17640.94095,169929.6576,0,17.8
+214826,17624.64195,168516.5989,0,17.8
+214827,17610.55121,535711.0472,0,17.8
+214828,17518.64482,595282.8945,0,17.8
+214829,17574.93965,164634.3033,0,17.8
+214830,17456.79931,163716.3956,0,17.8
+214831,0,50825.93926,0,17.8
+214832,0,50718.47264,0,17.8
+214833,340418.0015,50407.497,0,17.8
+214834,0,50190.19158,0,17.8
+214835,160.9836805,49970.29851,0,17.8
+214836,501.1177162,49820.10616,0,17.8
+214837,290.1610264,49554.3333,0,17.8
+214838,372.9087692,49460.8812,666483.956,17.8
+214839,405.4067452,49027.03475,0,17.8
+214840,413.4822337,49108.85678,0,17.8
+214841,437.5958771,48662.69667,0,17.8
+214842,437.5959025,3195.445586,0,17.8
+214843,469.4943945,3167.61959,0,17.8
+214844,469.494424,3167.619112,0,17.8
+214845,501.1180217,432228.3615,0,17.8
+214846,477.4255818,48332.36336,0,17.8
+214847,501.1180891,46873.30721,0,17.8
+214848,501.1181228,45861.20416,0,17.8
+214849,516.8312101,45098.12689,0,17.8
+214850,532.4805792,43530.97219,0,17.8
+214851,532.4806175,43656.52498,0,17.8
+214852,0,43478.18572,0,17.8
+214853,0,43241.3161,0,17.8
+214854,0,43080.03599,0,17.8
+214855,0,42916.82893,0,17.8
+214856,0,42622.86638,0,17.8
+214857,0,42525.76151,0,17.8
+214858,0,42198.38475,0,17.8
+214859,0,42227.14894,0,17.8
+214860,0,41783.00314,0,20
+214861,360481.4965,1001153.031,0,20
+214862,107376.5628,203903.2267,0,20
+214863,139181.7206,557570.2794,0,20
+214864,166101.975,188763.9232,0,20
+214865,159313.8336,208365.2181,0,20
+214866,156750.1716,181439.4666,0,20
+214867,156364.7267,184978.4187,0,20
+214868,156448.5864,184285.9707,0,20
+214869,156174.5548,183604.0396,0,20
+214870,156245.6285,183706.4972,43.57749015,20
+214871,155658.5324,190354.825,74.50665137,20
+214872,155677.1912,184915.612,64.29314419,20
+214873,155323.7827,187896.8073,84.64046802,20
+214874,155078.4936,305948.0694,84.64065976,20
+214875,155468.6491,231333.0249,94.70269433,20
+214876,154866.8676,253176.6567,114.6367288,20
+214877,154953.5003,252854.7678,104.7000164,20
+214878,154686.481,253853.425,124.5192713,20
+214879,154719.2732,253934.0294,134.3501055,20
+214880,154037.6043,682633.7736,134.3505921,20
+214881,154507.5323,254599.8829,144.1333584,20
+214882,154115.9137,252959.9034,144.133924,20
+214883,154074.1243,253758.0528,163.5653,20
+214884,153842.9443,254113.1702,163.5660273,20
+214885,156604.7984,252690.3352,163.5667856,20
+214886,155617.2625,254424.1237,182.8350372,20
+214887,155514.7544,253314.9848,173.2215856,20
+214888,155606.9295,253960.8325,192.4141117,20
+214889,156041.08,253873.5445,192.4151139,20
+214890,155544.5433,252457.5999,192.4161463,20
+214891,155807.0978,254536.4948,201.9589337,20
+214892,155559.79,682896.1287,489.0886118,20
+214893,155781.1185,252738.0529,2230.970254,20
+214894,155461.4861,254363.4108,1154.084703,20
+214895,155676.7997,253992.2034,1779.684867,20
+214896,155526.2945,252921.6973,1830.415267,20
+214897,155607.2495,254985.6028,2010.098034,20
+214898,155579.1046,253207.4603,2139.367557,20
+214899,155540.7431,254589.5518,2394.298916,20
+214900,155313.1723,255206.1246,2429.215474,20
+214901,155571.0991,252948.0233,2672.228926,20
+214902,155443.9374,255811.3437,2680.14743,20
+214903,155590.4565,253944.052,0,20
+214904,155120.7297,683873.5432,0,20
+214905,155365.8468,255572.6308,0,20
+214906,155539.0089,253817.5559,0,20
+214907,155098.1537,256367.8219,0,20
+214908,155257.2963,254095.7047,0,20
+214909,155100.506,255733.6073,0,20
+214910,155392.7629,254981.3675,0,20
+214911,155072.1517,255744.8356,0,20
+214912,155128.7638,255823.6599,0,20
+214913,154856.9451,255828.1876,0,20
+214914,154967.4781,256513.6129,0,20
+214915,155166.7131,256410.0873,0,20
+214916,154919.051,257309.6671,0,20
+214917,154869.5835,256398.2211,0,20
+214918,154637.6211,257680.0199,0,20
+214919,155029.5957,256959.0667,0,20
+214920,154616.1394,257846.6077,0,21
+214921,143507.1513,229929.3457,0,21
+214922,142131.9999,226668.0039,0,21
+214923,141853.758,225704.1028,0,21
+214924,141399.7595,225347.5635,0,21
+214925,140967.3728,224977.345,0,21
+214926,140910.1702,223978.1892,0,21
+214927,140538.8465,224929.5239,0,21
+214928,140282.3691,223482.1458,0,21
+214929,139654.0281,225186.3435,0,21
+214930,140208.5899,222585.4059,0,21
+214931,139222.3804,224110.3317,0,21
+214932,139253.8816,222395.7286,0,21
+214933,138749.3445,223185.731,0,21
+214934,139247.647,222269.4009,0,21
+214935,138064.102,222726.752,0,21
+214936,138547.6874,221716.896,0,21
+214937,137934.5881,222311.1729,0,21
+214938,137850.9917,220111.8132,0,21
+214939,137590.7139,222050.0667,0,21
+214940,137199.9917,220810.0295,0,21
+214941,137481.3019,220686.8431,0,21
+214942,136493.9209,219319.0136,0,21
+214943,136838.7332,221561.3341,0,21
+214944,136583.3384,218772.2703,0,21
+214945,136094.2037,219919.4897,0,21
+214946,136058.3682,219693.9039,0,21
+214947,135915.5967,218652.0787,0,21
+214948,135405.2599,218799.6954,0,21
+214949,135448.8704,218048.5518,0,21
+214950,135048.4483,218737.9589,0,21
+214951,134973.4089,217518.2908,0,21
+214952,134607.3339,217327.5336,0,21
+214953,134493.7693,217986.6111,0,21
+214954,134123.0193,216803.8365,0,21
+214955,133963.5911,216263.1525,0,21
+214956,133602.0185,216209.6413,0,21
+214957,133680.5063,216089.4189,0,21
+214958,132931.6012,215247.9776,0,21
+214959,133093.9034,215933.0071,0,21
+214960,132672.5999,214556.0645,0,21
+214961,132545.8163,215032.0781,0,21
+214962,131946.9585,214701.7862,0,21
+214963,132060.6962,213847.935,0,21
+214964,131828.2618,214138.4347,0,21
+214965,131289.4065,212860.6044,0,21
+214966,131030.0886,214283.1412,0,21
+214967,131310.7362,212211.3159,0,21
+214968,130540.7522,212991.0247,0,21
+214969,130398.6742,212398.5713,0,21
+214970,130384.8667,211621.6645,0,21
+214971,129809.6593,212494.3532,0,21
+214972,129648.883,212155.9345,0,21
+214973,129712.1401,210856.522,0,21
+214974,128968.9729,211278.6554,0,21
+214975,129075.8512,211613.4756,0,21
+214976,128584.3086,210046.7556,0,21
+214977,128611.664,210755.7074,0,21
+214978,128046.4113,210712.0507,0,21
+214979,128043.6809,209460.7825,0,21
+214980,127646.9478,209964.5006,0,21
+214981,55285.68597,88475.04755,0,21
+214982,52114.20785,85926.17611,0,21
+214983,50757.93418,84264.82698,0,21
+214984,50173.66175,84166.72962,0,21
+214985,49450.25817,83289.60269,0,21
+214986,48647.90349,81974.0273,0,21
+214987,48233.07392,82057.84659,0,21
+214988,47243.49152,81143.93022,0,21
+214989,47173.20896,80338.8512,0,21
+214990,46302.09483,79915.74117,0,21
+214991,46374.25525,79239.22437,0,21
+214992,45787.15764,78617.22169,0,21
+214993,45364.34493,77917.62256,0,21
+214994,45309.34052,77494.94781,0,21
+214995,44638.40939,76603.47936,0,21
+214996,44513.49262,76380.98698,0,21
+214997,44124.76644,75530.13532,0,21
+214998,43709.52878,75168.84605,0,21
+214999,43425.75059,74193.15796,0,21
+215000,43164.99912,74073.46909,0,21
+215001,42733.07768,73059.31088,0,21
+215002,42466.30246,72988.10145,0,21
+215003,42185.12643,71934.13655,0,21
+215004,41776.5502,71993.2137,0,21
+215005,41474.75245,71226.15167,0,21
+215006,41131.45719,70867.60605,0,21
+215007,40950.63094,70227.59972,0,21
+215008,40531.58206,69548.0103,0,21
+215009,40233.04743,69041.5109,0,21
+215010,40007.32008,68506.82812,0,21
+215011,39273.48992,67726.781,0,21
+215012,38785.25384,67348.4491,0,21
+215013,38272.49359,66671.58526,0,21
+215014,37453.85884,65478.49667,0,21
+215015,36731.88618,65401.89433,0,21
+215016,36380.66058,64771.85732,0,21
+215017,35013.10719,63575.06512,0,21
+215018,34229.01907,63332.41388,0,21
+215019,33773.36996,62807.25856,0,21
+215020,32911.4294,61599.9749,0,21
+215021,32363.77154,61372.67572,0,21
+215022,31488.86449,60624.4498,0,21
+215023,31028.68309,59914.64547,0,21
+215024,30236.46145,59271.73443,0,21
+215025,29676.48881,58640.63089,0,21
+215026,28688.96369,57919.25669,0,21
+215027,28355.8376,57646.6024,0,21
+215028,27558.48098,56620.1134,0,21
+215029,26659.94713,56130.96276,0,21
+215030,26353.19528,55620.69898,0,21
+215031,25294.88231,54476.76803,0,21
+215032,24782.69019,54600.17559,0,21
+215033,24095.57499,53533.13103,0,21
+215034,23266.84458,52785.07576,0,21
+215035,22797.82006,52440.36028,0,21
+215036,21867.72596,51793.46152,0,21
+215037,21213.66248,50887.8171,0,21
+215038,20675.46223,50665.605,0,21
+215039,19744.29073,49748.03823,0,21
+215040,19174.43912,49378.04778,0,21
+215041,18454.79639,48599.51489,0,21
+215042,16695.49663,47642.41155,0,21
+215043,15818.91985,47224.57869,0,21
+215044,14912.7136,46653.54384,0,21
+215045,14794.1105,45997.08488,0,21
+215046,14299.33428,45517.6781,0,21
+215047,14100.05401,44666.35592,0,21
+215048,13824.5815,44360.40061,0,21
+215049,13267.07361,43516.95211,0,21
+215050,13118.43312,43048.20495,0,21
+215051,12785.00799,42580.5285,0,21
+215052,12382.24675,42005.84115,0,21
+215053,12295.77596,41483.91131,0,21
+215054,11663.25089,41026.87829,0,21
+215055,11452.25618,40396.90347,0,21
+215056,11152.75203,40224.46815,0,21
+215057,10821.10315,39252.91395,0,21
+215058,10442.7816,39322.77558,0,21
+215059,10068.34938,38218.11297,0,21
+215060,9922.656611,38049.56964,0,21
+215061,9332.773107,37437.42223,0,21
+215062,9196.771347,36862.57597,0,21
+215063,8812.707484,36263.20986,0,21
+215064,8535.391667,35775.63296,0,21
+215065,8057.427461,35247.87946,0,21
+215066,7910.68271,34524.16451,0,21
+215067,7421.097958,34131.41152,0,21
+215068,7174.613028,33380.08671,0,21
+215069,6833.806888,32900.66173,0,21
+215070,6640.016033,32130.12081,0,21
+215071,6344.234661,31774.7751,0,21
+215072,6160.684072,30883.87412,0,21
+215073,6005.067898,30735.50973,0,21
+215074,5702.366391,29703.62996,0,21
+215075,5554.028383,29463.62002,0,21
+215076,5385.732848,28514.69963,0,21
+215077,5160.014828,28246.70366,0,21
+215078,5122.503092,27393.80895,0,21
+215079,4736.877029,26824.94958,0,21
+215080,4724.286532,26288.91053,0,21
+215081,4590.596598,25560.4019,0,21
+215082,4309.018986,24841.09513,0,21
+215083,4173.754063,24256.59839,0,21
+215084,4050.651563,23327.03959,0,21
+215085,3875.970964,22780.78755,0,21
+215086,3626.912379,22253.55372,0,21
+215087,3475.789926,21196.62075,0,21
+215088,3450.029682,20644.27586,0,21
+215089,3069.47791,19893.859,0,21
+215090,3158.257651,19246.48953,0,21
+215091,2760.069648,18183.69416,0,21
+215092,2734.02944,17702.93875,0,21
+215093,2472.700179,16609.03921,0,21
+215094,2420.321354,15943.60672,0,21
+215095,2167.663467,15022.41578,0,21
+215096,2128.189597,14309.46669,0,21
+215097,1843.506256,13143.07026,0,21
+215098,1691.745122,12679.72922,0,21
+215099,1651.880916,11637.83451,0,21
+215100,1366.23811,10517.81868,0,21
+215101,1160.84214,8935.047946,0,21
+215102,1147.391225,7971.948933,0,21
+215103,1106.869937,6813.398507,0,21
+215104,1106.869929,6521.336981,0,21
+215105,1079.712815,6473.628614,0,21
+215106,1066.090619,6194.1772,0,21
+215107,1038.757605,6081.648373,0,21
+215108,1025.046236,5848.203096,0,21
+215109,1011.304565,5573.31904,0,21
+215110,983.7291678,5488.543092,0,21
+215111,956.0289154,5210.716358,0,21
+215112,956.028908,5092.77377,0,21
+215113,928.2012038,4705.963814,0,21
+215114,900.2432719,4721.718314,0,21
+215115,900.243258,4463.546903,0,21
+215116,872.1521589,4191.909205,0,21
+215117,843.9247595,4081.704021,0,21
+215118,829.7589163,3655.524169,0,21
+215119,815.5577232,3851.585804,0,21
+215120,801.3207465,3238.325938,0,21
+215121,758.3902811,3310.737278,0,21
+215122,772.7375122,2912.081462,0,21
+215123,729.5819191,3078.993088,0,21
+215124,715.1197062,2744.186925,0,21
+215125,700.6180241,2896.257862,0,21
+215126,671.4937818,2559.338376,0,21
+215127,671.4937871,2559.3385,0,21
+215128,642.2040005,2217.875673,0,21
+215129,612.7429954,2185.781499,0,21
+215130,612.7430335,1870.958926,0,21
+215131,583.1045788,1838.703991,0,21
+215132,568.2166869,1838.704514,0,21
+215133,538.2989747,1484.743241,0,21
+215134,538.2989731,1646.474463,0,21
+215135,508.1852467,1304.407942,0,21
+215136,493.0521193,1271.710352,0,21
+215137,477.8665482,1121.068548,0,21
+215138,477.8665481,1071.812831,0,21
+215139,447.3327849,900.6068215,0,21
+215140,447.3327829,884.0929772,0,21
+215141,431.9817318,687.8117706,0,21
+215142,401.1033475,687.8118138,0,21
+215143,401.1033456,654.535486,0,21
+215144,369.9779241,637.8199469,0,21
+215145,354.3175165,637.819979,0,21
+215146,338.5889282,604.2294138,0,21
+215147,338.5889287,604.2294457,0,21
+215148,290.9673001,587.3521418,0,21
+215149,290.9672997,553.4273417,0,21
+215150,274.9378005,570.4186117,0,21
+215151,258.8244434,519.2668245,0,21
+215152,242.6229438,536.3773617,0,21
+215153,218.1446101,502.0944753,0,21
+215154,209.93541,484.8585353,0,21
+215155,193.4373933,484.858561,0,21
+215156,160.0951995,467.5573244,0,21
+215157,176.8269408,432.7510706,0,21
+215158,126.2226467,450.188875,0,21
+215159,126.2226456,397.6588332,0,21
+215160,109.0521068,415.2419334,0,21
+215161,109.0521191,415.2431071,0,21
+215162,109.0521194,397.6590107,0,21
+215163,74.13126069,397.6590184,0,21
+215164,56.30808421,379.9995253,0,21
+215165,56.30808424,362.2607551,0,21
+215166,19.54816758,344.4396059,0,21
+215167,0,344.4396165,0,21
+215168,0,308.5360733,0,21
+215169,0,326.5326942,0,21
+215170,0,290.4456428,0,21
+215171,0,272.2565616,0,21
+215172,0,272.2565768,0,21
+215173,0,263.1233957,0,21
+215174,0,235.5601961,0,21
+215175,0,235.5602111,0,21
+215176,0,207.7327944,0,21
+215177,0,198.393429,0,21
+215178,0,198.3934402,0,21
+215179,0,170.1666009,0,21
+215180,0,160.6829188,0,21
+215181,0,151.1588203,0,21
+215182,0,141.5921701,0,21
+215183,0,112.6108549,0,21
+215184,0,122.3211732,0,21
+215185,0,83.1335606,0,21
+215186,0,83.13357201,0,21
+215187,0,83.1335767,0,21
+215188,0,42.77700793,0,21
+215189,0,42.77700947,0,21
+215190,0,42.77701165,0,21
+215191,0,0,0,21
+215192,0,11.1697735,0,21
+215193,0,0,0,21
+215194,0,0,0,21
+215195,0,0,0,21
+215196,0,0,0,21
+215197,0,0,0,21
+215198,0,0,0,21
+215199,0,0,0,21
+215200,0,0,0,21
+215201,0,0,0,21
+215202,0,0,0,21
+215203,0,0,0,21
+215204,0,0,0,21
+215205,0,0,0,21
+215206,0,0,0,21
+215207,0,0,0,21
+215208,0,0,0,21
+215209,0,0,0,21
+215210,0,0,0,21
+215211,0,0,0,21
+215212,0,0,0,21
+215213,0,0,0,21
+215214,0,0,0,21
+215215,0,0,0,21
+215216,0,0,0,21
+215217,0,0,0,21
+215218,0,0,0,21
+215219,0,0,0,21
+215220,0,0,0,21
+215221,0,0,0,21
+215222,0,0,0,21
+215223,0,0,0,21
+215224,0,0,0,21
+215225,0,0,0,21
+215226,0,0,0,21
+215227,0,0,0,21
+215228,0,0,0,21
+215229,0,0,0,21
+215230,0,0,0,21
+215231,0,0,0,21
+215232,0,0,0,21
+215233,0,0,0,21
+215234,0,0,0,21
+215235,0,0,0,21
+215236,0,0,0,21
+215237,0,0,0,21
+215238,0,0,0,21
+215239,0,0,0,21
+215240,0,0,0,21
+215241,0,0,0,21
+215242,0,0,0,21
+215243,0,0,0,21
+215244,0,0,0,21
+215245,0,0,0,21
+215246,0,0,0,21
+215247,0,0,0,21
+215248,0,0,0,21
+215249,0,0,0,21
+215250,0,0,0,21
+215251,0,0,0,21
+215252,0,0,0,21
+215253,0,0,0,21
+215254,0,0,0,21
+215255,0,0,0,21
+215256,0,0,0,21
+215257,0,0,0,21
+215258,0,0,0,21
+215259,0,0,0,21
+215260,0,0,0,21
+215261,0,0,0,21
+215262,0,0,0,21
+215263,0,0,0,21
+215264,0,0,0,21
+215265,0,0,0,21
+215266,0,0,0,21
+215267,0,0,0,21
+215268,0,0,0,21
+215269,0,0,0,21
+215270,0,0,0,21
+215271,0,0,0,21
+215272,0,0,0,21
+215273,0,0,0,21
+215274,0,0,0,21
+215275,0,0,0,21
+215276,0,0,0,21
+215277,0,0,0,21
+215278,0,0,0,21
+215279,0,0,0,21
+215280,0,0,0,21
+215281,0,0,0,21
+215282,0,0,0,21
+215283,0,0,0,21
+215284,0,0,0,21
+215285,0,0,0,21
+215286,0,0,0,21
+215287,0,0,0,21
+215288,0,0,0,21
+215289,0,0,0,21
+215290,0,0,0,21
+215291,0,0,0,21
+215292,0,0,0,21
+215293,0,0,0,21
+215294,0,0,0,21
+215295,0,0,0,21
+215296,0,0,0,21
+215297,0,0,0,21
+215298,0,0,0,21
+215299,0,0,0,21
+215300,0,0,0,21
+215301,0,0,0,21
+215302,0,0,0,21
+215303,0,0,0,21
+215304,0,0,0,21
+215305,0,0,0,21
+215306,0,0,0,21
+215307,0,0,0,21
+215308,0,0,0,21
+215309,0,0,0,21
+215310,0,0,0,21
+215311,0,0,0,21
+215312,0,0,0,21
+215313,0,0,0,21
+215314,0,0,0,21
+215315,0,0,0,21
+215316,0,0,0,21
+215317,0,0,0,21
+215318,0,0,0,21
+215319,0,0,0,21
+215320,0,0,0,21
+215321,0,0,0,21
+215322,0,0,0,21
+215323,0,0,0,21
+215324,0,0,0,21
+215325,0,0,0,21
+215326,0,0,0,21
+215327,0,0,0,21
+215328,0,0,0,21
+215329,0,0,0,21
+215330,0,0,0,21
+215331,0,0,0,21
+215332,0,0,0,21
+215333,0,0,0,21
+215334,0,0,0,21
+215335,0,0,0,21
+215336,0,0,0,21
+215337,0,0,0,21
+215338,0,0,0,21
+215339,0,0,0,21
+215340,0,0,0,21
+215341,0,0,0,21
+215342,0,0,0,21
+215343,0,0,0,21
+215344,0,0,0,21
+215345,0,0,0,21
+215346,0,0,0,21
+215347,0,0,0,21
+215348,0,0,0,21
+215349,0,0,0,21
+215350,0,0,0,21
+215351,0,0,0,21
+215352,0,0,0,21
+215353,0,0,0,21
+215354,0,0,0,21
+215355,0,0,0,21
+215356,0,0,0,21
+215357,0,0,0,21
+215358,0,0,0,21
+215359,0,0,0,21
+215360,0,0,0,21
+215361,0,0,0,21
+215362,0,0,0,21
+215363,0,0,0,21
+215364,0,0,0,21
+215365,0,0,0,21
+215366,0,0,0,21
+215367,0,0,0,21
+215368,0,0,0,21
+215369,0,0,0,21
+215370,0,0,0,21
+215371,0,0,0,21
+215372,0,0,0,21
+215373,0,0,0,21
+215374,0,0,0,21
+215375,0,0,0,21
+215376,0,0,0,21
+215377,0,0,0,21
+215378,0,0,0,21
+215379,0,0,0,21
+215380,0,0,0,21
+215381,0,0,0,21
+215382,0,0,0,21
+215383,0,0,0,21
+215384,0,0,0,21
+215385,0,0,0,21
+215386,0,0,0,21
+215387,0,0,0,21
+215388,0,0,0,21
+215389,0,0,0,21
+215390,0,0,0,21
+215391,0,0,0,21
+215392,0,0,0,21
+215393,0,0,0,21
+215394,0,0,0,21
+215395,0,0,0,21
+215396,0,0,0,21
+215397,0,0,0,21
+215398,0,0,0,21
+215399,0,0,0,21
+215400,0,0,0,21
+215401,0,0,0,21
+215402,0,0,0,21
+215403,0,0,0,21
+215404,0,0,0,21
+215405,0,0,0,21
+215406,0,0,0,21
+215407,0,0,0,21
+215408,0,0,0,21
+215409,0,0,0,21
+215410,0,0,0,21
+215411,0,0,0,21
+215412,0,0,0,21
+215413,0,0,0,21
+215414,0,0,0,21
+215415,0,0,0,21
+215416,0,0,0,21
+215417,0,0,0,21
+215418,0,0,0,21
+215419,0,0,0,21
+215420,0,0,0,21
+215421,0,0,0,21
+215422,0,0,0,21
+215423,0,0,0,21
+215424,0,0,0,21
+215425,0,0,0,21
+215426,0,0,0,21
+215427,0,0,0,21
+215428,0,0,0,21
+215429,0,0,0,21
+215430,0,0,0,21
+215431,0,0,0,21
+215432,0,0,0,21
+215433,0,0,0,21
+215434,0,0,0,21
+215435,0,0,0,21
+215436,0,0,0,21
+215437,0,0,0,21
+215438,0,0,0,21
+215439,0,0,0,21
+215440,0,0,0,21
+215441,0,0,0,21
+215442,0,0,0,21
+215443,0,0,0,21
+215444,0,0,0,21
+215445,0,0,0,21
+215446,0,0,0,21
+215447,0,0,0,21
+215448,0,0,0,21
+215449,0,0,0,21
+215450,0,0,0,21
+215451,0,0,0,21
+215452,0,0,0,21
+215453,0,0,0,21
+215454,0,0,0,21
+215455,0,0,0,21
+215456,0,0,0,21
+215457,0,0,0,21
+215458,0,0,0,21
+215459,0,0,0,21
+215460,0,0,0,21
+215461,0,0,0,21
+215462,0,0,0,21
+215463,0,0,0,21
+215464,0,0,0,21
+215465,0,0,0,21
+215466,0,0,0,21
+215467,0,0,0,21
+215468,0,0,0,21
+215469,0,0,0,21
+215470,0,0,0,21
+215471,0,0,0,21
+215472,0,0,0,21
+215473,0,0,0,21
+215474,0,0,0,21
+215475,0,0,0,21
+215476,0,0,0,21
+215477,0,0,0,21
+215478,0,0,0,21
+215479,0,0,0,21
+215480,0,0,0,21
+215481,0,0,0,21
+215482,0,0,0,21
+215483,0,0,0,21
+215484,0,0,0,21
+215485,0,0,0,21
+215486,0,0,0,21
+215487,0,0,0,21
+215488,0,0,0,21
+215489,0,0,0,21
+215490,0,0,0,21
+215491,0,0,0,21
+215492,0,0,0,21
+215493,0,0,0,21
+215494,0,0,0,21
+215495,0,0,0,21
+215496,0,0,0,21
+215497,0,0,0,21
+215498,0,0,0,21
+215499,0,0,0,21
+215500,0,0,0,21
+215501,0,0,0,21
+215502,0,0,0,21
+215503,0,0,0,21
+215504,0,0,0,21
+215505,0,0,0,21
+215506,0,0,0,21
+215507,0,0,0,21
+215508,0,0,0,21
+215509,0,0,0,21
+215510,0,0,0,21
+215511,0,0,0,21
+215512,0,0,0,21
+215513,0,0,0,21
+215514,0,0,0,21
+215515,0,0,0,21
+215516,0,0,0,21
+215517,0,0,0,21
+215518,0,0,0,21
+215519,0,0,0,21
+215520,0,0,0,21
+215521,0,0,0,21
+215522,0,0,0,21
+215523,0,0,0,21
+215524,0,0,0,21
+215525,0,0,0,21
+215526,0,0,0,21
+215527,0,0,0,21
+215528,0,0,0,21
+215529,0,0,0,21
+215530,0,0,0,21
+215531,0,0,0,21
+215532,0,0,0,21
+215533,0,0,0,21
+215534,0,0,0,21
+215535,0,0,0,21
+215536,0,0,0,21
+215537,0,0,0,21
+215538,0,0,0,21
+215539,0,0,0,21
+215540,0,0,0,21
+215541,0,0,0,21
+215542,0,0,0,21
+215543,0,0,0,21
+215544,0,0,0,21
+215545,0,0,0,21
+215546,0,0,0,21
+215547,0,0,0,21
+215548,0,0,0,21
+215549,0,0,0,21
+215550,0,0,0,21
+215551,0,0,0,21
+215552,0,0,0,21
+215553,0,0,0,21
+215554,0,0,0,21
+215555,0,0,0,21
+215556,0,0,0,21
+215557,0,0,0,21
+215558,0,0,0,21
+215559,0,0,0,21
+215560,0,0,0,21
+215561,0,0,0,21
+215562,0,0,0,21
+215563,0,0,0,21
+215564,0,0,0,21
+215565,0,0,0,21
+215566,0,0,0,21
+215567,0,0,0,21
+215568,0,0,0,21
+215569,0,0,0,21
+215570,0,0,0,21
+215571,0,0,0,21
+215572,0,0,0,21
+215573,0,0,0,21
+215574,0,0,0,21
+215575,0,0,0,21
+215576,0,0,0,21
+215577,0,0,0,21
+215578,0,0,0,21
+215579,0,0,0,21
+215580,0,0,0,21
+215581,0,0,0,21
+215582,0,0,0,21
+215583,0,0,0,21
+215584,0,0,0,21
+215585,0,0,0,21
+215586,0,0,0,21
+215587,0,0,0,21
+215588,0,0,0,21
+215589,0,0,0,21
+215590,0,0,0,21
+215591,0,0,0,21
+215592,0,0,0,21
+215593,0,0,0,21
+215594,0,0,0,21
+215595,0,0,0,21
+215596,0,0,0,21
+215597,0,0,0,21
+215598,0,0,0,21
+215599,0,0,0,21
+215600,0,0,0,21
+215601,0,0,0,21
+215602,0,0,0,21
+215603,0,0,0,21
+215604,0,0,0,21
+215605,0,0,0,21
+215606,0,0,0,21
+215607,0,0,0,21
+215608,0,0,0,21
+215609,0,0,0,21
+215610,0,0,0,21
+215611,0,0,0,21
+215612,0,0,0,21
+215613,0,0,0,21
+215614,0,0,0,21
+215615,0,0,0,21
+215616,0,0,0,21
+215617,0,0,0,21
+215618,0,0,0,21
+215619,0,0,0,21
+215620,0,0,0,21
+215621,0,0,0,21
+215622,0,0,0,21
+215623,0,0,0,21
+215624,0,0,0,21
+215625,0,0,0,21
+215626,0,0,0,21
+215627,0,0,0,21
+215628,0,0,0,21
+215629,0,0,0,21
+215630,0,0,0,21
+215631,0,0,0,21
+215632,0,0,0,21
+215633,0,0,0,21
+215634,0,0,0,21
+215635,0,0,0,21
+215636,0,0,0,21
+215637,0,0,0,21
+215638,0,0,0,21
+215639,0,0,0,21
+215640,0,0,0,21
+215641,0,0,0,21
+215642,0,0,0,21
+215643,0,0,0,21
+215644,0,0,0,21
+215645,0,0,0,21
+215646,0,0,0,21
+215647,0,0,0,21
+215648,1255.78763,0,0,21
+215649,1255.787611,0,0,21
+215650,1387.09139,0,0,21
+215651,1517.454957,0,0,21
+215652,1903.547159,0,0,21
+215653,2030.747112,0,0,21
+215654,2283.138765,0,0,21
+215655,2408.393778,0,0,21
+215656,2533.058311,0,0,21
+215657,2903.739626,0,0,21
+215658,2903.7395,0,0,21
+215659,3269.855122,0,0,21
+215660,3390.945284,0,0,21
+215661,3511.597671,0,0,21
+215662,3751.611882,0,0,21
+215663,3989.977946,0,0,21
+215664,4108.567963,0,0,21
+215665,4226.774638,0,0,21
+215666,4579.17804,0,0,21
+215667,4579.177793,0,0,21
+215668,4812.340684,0,0,21
+215669,5044.148562,0,0,21
+215670,5274.649849,0,0,21
+215671,5274.649514,0,0,21
+215672,5503.888337,0,0,21
+215673,5845.467327,0,0,21
+215674,5731.904786,0,0,21
+215675,6184.41901,0,0,21
+215676,6184.41854,0,0,21
+215677,6408.98171,0,0,21
+215678,6743.793761,0,0,21
+215679,6743.793196,0,0,21
+215680,6965.685307,0,0,21
+215681,7186.55425,0,0,21
+215682,7296.612086,0,0,21
+215683,7515.989797,0,0,21
+215684,7625.314336,0,0,21
+215685,7843.249036,0,0,21
+215686,7951.863351,0,0,21
+215687,8168.399272,0,0,21
+215688,8611.129997,0,0,21
+215689,8527.795936,0,0,21
+215690,8883.265478,0,0,21
+215691,9047.89954,0,0,21
+215692,9269.051108,0,0,21
+215693,9301.436065,0,0,21
+215694,9740.969044,0,0,21
+215695,9683.113616,0,0,21
+215696,9999.171995,0,0,21
+215697,10151.16305,0,0,21
+215698,10368.24241,0,0,21
+215699,10511.26278,0,0,21
+215700,10734.74488,0,0,21
+215701,11327.65657,0,0,21
+215702,11665.60094,0,0,21
+215703,11899.7861,0,0,21
+215704,12133.06028,0,0,21
+215705,12147.79477,0,0,21
+215706,12582.33739,0,0,21
+215707,12626.01152,0,0,21
+215708,12827.57145,0,0,21
+215709,13171.93031,0,0,21
+215710,13186.27977,0,0,21
+215711,13514.41342,0,0,21
+215712,13542.84122,0,0,21
+215713,14079.23676,0,0,21
+215714,14089.22104,0,0,21
+215715,14333.07239,0,0,21
+215716,14486.48225,0,0,21
+215717,14803.96924,0,0,21
+215718,14858.11047,0,0,21
+215719,15276.41842,871.5381231,0,21
+215720,15338.59754,1199.899607,0,21
+215721,15555.31455,1036.580298,0,21
+215722,15815.60537,1361.697932,0,21
+215723,15912.29461,1522.134882,0,21
+215724,16289.25811,1681.334296,0,21
+215725,16289.25531,1839.395842,0,21
+215726,16637.29963,1996.403039,0,21
+215727,16759.65903,2152.426388,0,21
+215728,17001.91144,2461.754896,0,21
+215729,17131.82449,2307.526252,0,21
+215730,17462.49693,2767.776386,0,21
+215731,17480.66389,2767.776397,0,21
+215732,17720.37219,2919.645645,0,21
+215733,17938.1714,3070.798138,0,21
+215734,18058.29843,3371.066457,0,21
+215735,18197.27273,3221.262977,0,21
+215736,18410.65077,3668.783627,0,21
+215737,18639.29227,3668.78365,0,21
+215738,18652.13391,3964.118873,0,21
+215739,19110.15591,3964.118901,0,21
+215740,19336.61609,4110.939099,0,21
+215741,19534.1297,4402.964804,0,21
+215742,19603.17364,4402.964841,0,21
+215743,19779.71289,4692.932246,0,21
+215744,20024.42594,4692.93229,0,21
+215745,20024.42172,4980.942542,0,21
+215746,20275.94065,4980.942592,0,21
+215747,20455.78825,5267.085115,0,21
+215748,20498.85998,5267.085173,0,21
+215749,20721.12686,5551.439603,0,21
+215750,20899.97867,5551.43967,0,21
+215751,20970.18674,5834.07744,0,21
+215752,21160.84709,5834.077516,0,21
+215753,21356.70927,6115.063101,0,21
+215754,21408.46498,6115.063187,0,21
+215755,21588.69996,6394.45511,0,21
+215756,21655.18488,6394.455206,0,21
+215757,21909.64133,6533.570461,0,21
+215758,21963.75665,6810.670572,0,21
+215759,22077.44856,6925.613076,0,21
+215760,22268.25162,7073.518144,0,21
+215761,22488.26789,7348.432742,0,21
+215762,22512.22372,7387.572608,0,21
+215763,22536.09613,7680.39197,0,21
+215764,22920.77592,7699.550059,0,21
+215765,22752.48522,7990.711131,0,21
+215766,23159.83592,8009.599258,0,21
+215767,23159.83341,8317.830567,0,21
+215768,23183.45983,8317.831092,0,21
+215769,23588.59279,8605.891509,0,21
+215770,23398.05181,8642.677948,0,21
+215771,23638.31729,8767.799774,0,21
+215772,23799.2332,8938.272213,0,21
+215773,24026.66554,9214.356735,0,21
+215774,23863.29305,9117.072715,0,21
+215775,24250.56756,9516.232807,0,21
+215776,24250.56478,9534.147357,0,21
+215777,24285.26737,9702.204777,0,21
+215778,24661.83542,9834.370466,0,21
+215779,24511.21988,10001.55655,0,21
+215780,24696.36352,10141.93036,0,21
+215781,24906.83785,10299.48879,0,21
+215782,24921.13676,10430.5137,0,21
+215783,25102.44599,10596.03809,0,21
+215784,25153.78527,10743.80475,0,21
+215785,25326.09996,11003.92933,0,21
+215786,25363.02352,10925.53407,0,21
+215787,25546.22344,11297.39413,0,21
+215788,25743.14858,11331.57592,0,21
+215789,25594.26583,11477.71298,0,21
+215790,25962.10225,11623.53458,0,21
+215791,25973.33433,11897.39652,0,21
+215792,26009.85059,11914.24424,0,21
+215793,26180.42,12075.8829,0,21
+215794,26386.96926,12186.98511,0,21
+215795,26528.06127,12364.66631,0,21
+215796,26772.39027,12492.01382,0,21
+215797,26860.69747,12635.71243,0,21
+215798,27127.50763,12779.1189,0,21
+215799,26963.02776,12922.23584,0,21
+215800,27379.7865,13081.47755,0,21
+215801,27724.95174,13065.06719,0,21
+215802,27687.5727,13491.85547,0,21
+215803,28093.71772,13366.19804,0,21
+215804,28222.48492,13633.56243,0,21
+215805,28553.47201,13665.9931,0,21
+215806,28551.65198,13899.95576,0,21
+215807,29082.62997,14073.14426,0,21
+215808,29003.98521,14073.14621,0,21
+215809,29263.33848,14213.7214,0,21
+215810,29428.34886,14494.07246,0,21
+215811,29634.97553,14494.07428,0,21
+215812,29937.76054,14757.46516,0,21
+215813,29874.58423,14789.24659,0,21
+215814,30303.53399,14978.67157,0,21
+215815,30255.87369,15357.82771,0,21
+215816,30676.13299,15547.42583,0,21
+215817,30620.00362,15606.09378,0,21
+215818,31041.41666,16736.37823,0,21
+215819,30987.30521,18495.0961,0,21
+215820,31393.33731,17826.78106,0,21
+215821,0,0,0,21
+215822,0,0,0,21
+215823,0,0,0,21
+215824,0,0,0,21
+215825,0,0,0,21
+215826,0,367848.7708,659636.4426,21
+215827,337464.2281,0,0,21
+215828,0,0,0,21
+215829,0,0,0,21
+215830,0,0,0,21
+215831,0,0,0,21
+215832,0,0,0,21
+215833,0,0,0,21
+215834,0,0,0,21
+215835,0,0,0,21
+215836,0,0,0,21
+215837,0,0,0,21
+215838,0,0,0,21
+215839,0,0,0,21
+215840,0,0,0,21
+215841,0,0,0,21
+215842,0,0,0,21
+215843,0,0,0,21
+215844,0,0,0,21
+215845,0,0,0,21
+215846,0,0,0,21
+215847,0,0,0,21
+215848,0,0,0,21
+215849,0,0,0,21
+215850,0,0,0,21
+215851,0,0,0,21
+215852,0,0,0,21
+215853,0,0,0,21
+215854,0,0,0,21
+215855,0,0,0,21
+215856,0,0,0,21
+215857,0,0,0,21
+215858,0,0,0,21
+215859,0,0,0,21
+215860,0,0,0,21
+215861,0,368665.9629,660313.6076,21
+215862,0,0,0,21
+215863,337980.1312,0,0,21
+215864,0,0,0,21
+215865,0,0,0,21
+215866,0,0,0,21
+215867,0,0,0,21
+215868,0,0,0,21
+215869,0,0,0,21
+215870,0,0,0,21
+215871,0,0,0,21
+215872,0,0,0,21
+215873,0,0,0,21
+215874,0,0,0,21
+215875,0,0,0,21
+215876,0,0,0,21
+215877,0,0,0,21
+215878,0,0,0,21
+215879,0,0,0,21
+215880,0,0,0,15.6
+215881,0,0,0,15.6
+215882,0,0,0,15.6
+215883,0,0,0,15.6
+215884,0,0,0,15.6
+215885,0,0,0,15.6
+215886,0,0,0,15.6
+215887,0,0,0,15.6
+215888,0,0,0,15.6
+215889,0,0,0,15.6
+215890,0,0,0,15.6
+215891,0,0,0,15.6
+215892,0,0,0,15.6
+215893,0,0,0,15.6
+215894,0,0,0,15.6
+215895,0,0,0,15.6
+215896,0,368674.0341,660676.1614,15.6
+215897,0,0,0,15.6
+215898,0,0,0,15.6
+215899,0,0,0,15.6
+215900,338233.9087,0,0,15.6
+215901,0,0,0,15.6
+215902,0,0,0,15.6
+215903,0,0,0,15.6
+215904,0,0,0,15.6
+215905,0,0,0,15.6
+215906,0,0,0,15.6
+215907,0,0,0,15.6
+215908,0,0,0,15.6
+215909,0,0,0,15.6
+215910,0,0,0,15.6
+215911,0,0,0,15.6
+215912,0,0,0,15.6
+215913,0,0,0,15.6
+215914,0,0,0,15.6
+215915,0,0,0,15.6
+215916,0,0,0,15.6
+215917,0,0,0,15.6
+215918,0,0,0,15.6
+215919,0,0,0,15.6
+215920,0,0,0,15.6
+215921,0,0,0,15.6
+215922,0,0,0,15.6
+215923,0,0,0,15.6
+215924,0,0,0,15.6
+215925,0,0,0,15.6
+215926,0,0,0,15.6
+215927,0,0,0,15.6
+215928,0,0,0,15.6
+215929,0,0,0,15.6
+215930,0,0,0,15.6
+215931,0,368682.2413,660797.2415,15.6
+215932,0,0,0,15.6
+215933,0,0,0,15.6
+215934,0,0,0,15.6
+215935,0,0,0,15.6
+215936,0,0,0,15.6
+215937,336875.5477,0,0,15.6
+215938,0,0,0,15.6
+215939,0,0,0,15.6
+215940,0,0,0,15.6
+215941,0,0,0,15.6
+215942,0,0,0,15.6
+215943,0,0,0,15.6
+215944,0,0,0,15.6
+215945,0,0,0,15.6
+215946,0,0,0,15.6
+215947,0,0,0,15.6
+215948,0,0,0,15.6
+215949,0,0,0,15.6
+215950,0,0,0,15.6
+215951,0,0,0,15.6
+215952,0,0,0,15.6
+215953,0,0,0,15.6
+215954,0,0,0,15.6
+215955,0,0,0,15.6
+215956,0,0,0,15.6
+215957,0,0,0,15.6
+215958,0,0,0,15.6
+215959,0,0,0,15.6
+215960,0,0,0,15.6
+215961,0,0,0,15.6
+215962,0,0,0,15.6
+215963,0,0,0,15.6
+215964,0,0,0,15.6
+215965,0,0,0,15.6
+215966,0,0,660571.4554,15.6
+215967,0,368684.6631,0,15.6
+215968,0,0,0,15.6
+215969,0,0,0,15.6
+215970,0,0,0,15.6
+215971,0,0,0,15.6
+215972,0,0,0,15.6
+215973,0,0,0,15.6
+215974,336714.3362,0,0,15.6
+215975,0,0,0,15.6
+215976,0,0,0,15.6
+215977,0,0,0,15.6
+215978,0,0,0,15.6
+215979,0,0,0,15.6
+215980,0,0,0,15.6
+215981,0,0,0,15.6
+215982,0,0,0,15.6
+215983,0,0,0,15.6
+215984,0,0,0,15.6
+215985,0,0,0,15.6
+215986,0,0,0,15.6
+215987,0,0,0,15.6
+215988,0,0,0,15.6
+215989,0,0,0,15.6
+215990,0,0,0,15.6
+215991,0,0,0,15.6
+215992,0,0,0,15.6
+215993,0,0,0,15.6
+215994,0,0,0,15.6
+215995,0,0,0,15.6
+215996,0,0,0,15.6
+215997,0,0,0,15.6
+215998,0,0,0,15.6
+215999,0,0,0,15.6
+216000,0,0,0,15.6
+216001,0,0,660937.2996,15.6
+216002,0,0,0,15.6
+216003,0,368684.3744,0,15.6
+216004,0,0,0,15.6
+216005,0,0,0,15.6
+216006,0,0,0,15.6
+216007,0,0,0,15.6
+216008,0,0,0,15.6
+216009,0,0,0,15.6
+216010,0,0,0,15.6
+216011,337627.4288,0,0,15.6
+216012,0,0,0,15.6
+216013,0,0,0,15.6
+216014,0,0,0,15.6
+216015,0,0,0,15.6
+216016,0,0,0,15.6
+216017,0,0,0,15.6
+216018,0,0,0,15.6
+216019,0,0,0,15.6
+216020,0,0,0,15.6
+216021,0,0,0,15.6
+216022,0,0,0,15.6
+216023,0,0,0,15.6
+216024,0,0,0,15.6
+216025,0,0,0,15.6
+216026,0,0,0,15.6
+216027,0,0,0,15.6
+216028,0,0,0,15.6
+216029,0,0,0,15.6
+216030,0,0,0,15.6
+216031,0,0,0,15.6
+216032,0,0,0,15.6
+216033,0,0,0,15.6
+216034,0,0,0,15.6
+216035,0,0,0,15.6
+216036,0,0,660524.8147,15.6
+216037,0,0,0,15.6
+216038,0,0,0,15.6
+216039,0,368684.449,0,15.6
+216040,0,0,0,15.6
+216041,0,0,0,15.6
+216042,0,0,0,15.6
+216043,0,0,0,15.6
+216044,0,0,0,15.6
+216045,0,0,0,15.6
+216046,0,0,0,15.6
+216047,0,0,0,15.6
+216048,338254.2526,0,0,15.6
+216049,0,0,0,15.6
+216050,0,0,0,15.6
+216051,0,0,0,15.6
+216052,0,0,0,15.6
+216053,0,0,0,15.6
+216054,0,0,0,15.6
+216055,0,0,0,15.6
+216056,0,0,0,15.6
+216057,0,0,0,15.6
+216058,0,0,0,15.6
+216059,0,0,0,15.6
+216060,0,0,0,15.6
+216061,0,0,0,15.6
+216062,0,0,0,15.6
+216063,0,0,0,15.6
+216064,0,0,0,15.6
+216065,0,0,0,15.6
+216066,0,0,0,15.6
+216067,0,0,0,15.6
+216068,0,0,0,15.6
+216069,0,0,0,15.6
+216070,0,0,0,15.6
+216071,0,0,661159.7389,15.6
+216072,0,0,0,15.6
+216073,0,0,0,15.6
+216074,0,0,0,15.6
+216075,0,368684.6631,0,15.6
+216076,0,0,0,15.6
+216077,0,0,0,15.6
+216078,0,0,0,15.6
+216079,0,0,0,15.6
+216080,0,0,0,15.6
+216081,0,0,0,15.6
+216082,0,0,0,15.6
+216083,0,0,0,15.6
+216084,0,0,0,15.6
+216085,338485.1222,0,0,15.6
+216086,0,0,0,15.6
+216087,0,0,0,15.6
+216088,0,0,0,15.6
+216089,0,0,0,15.6
+216090,0,0,0,15.6
+216091,0,0,0,15.6
+216092,0,0,0,15.6
+216093,0,0,0,15.6
+216094,0,0,0,15.6
+216095,0,0,0,15.6
+216096,0,0,0,15.6
+216097,0,0,0,15.6
+216098,0,0,0,15.6
+216099,0,0,0,15.6
+216100,0,0,0,15.6
+216101,0,0,0,15.6
+216102,0,0,0,15.6
+216103,0,0,0,15.6
+216104,0,0,0,15.6
+216105,0,0,0,15.6
+216106,0,0,660470.5906,15.6
+216107,0,0,0,15.6
+216108,0,0,0,15.6
+216109,0,0,0,15.6
+216110,0,0,0,15.6
+216111,0,368684.3882,0,15.6
+216112,0,0,0,15.6
+216113,0,0,0,15.6
+216114,0,0,0,15.6
+216115,0,0,0,15.6
+216116,0,0,0,15.6
+216117,0,0,0,15.6
+216118,0,0,0,15.6
+216119,0,0,0,15.6
+216120,0,0,0,15.6
+216121,0,0,0,15.6
+216122,0,0,0,15.6
+216123,334635.1325,0,0,15.6
+216124,0,0,0,15.6
+216125,0,0,0,15.6
+216126,0,0,0,15.6
+216127,0,0,0,15.6
+216128,0,0,0,15.6
+216129,0,0,0,15.6
+216130,0,0,0,15.6
+216131,0,0,0,15.6
+216132,0,0,0,15.6
+216133,0,0,0,15.6
+216134,0,0,0,15.6
+216135,0,0,0,15.6
+216136,0,0,0,15.6
+216137,0,0,0,15.6
+216138,0,0,0,15.6
+216139,0,0,0,15.6
+216140,0,0,0,15.6
+216141,0,0,0,15.6
+216142,0,0,661183.5009,15.6
+216143,0,0,0,15.6
+216144,0,0,0,15.6
+216145,0,0,0,15.6
+216146,0,0,0,15.6
+216147,0,368684.6631,0,15.6
+216148,0,0,0,15.6
+216149,0,0,0,15.6
+216150,0,0,0,15.6
+216151,0,0,0,15.6
+216152,0,0,0,15.6
+216153,0,0,0,15.6
+216154,0,0,0,15.6
+216155,0,0,0,15.6
+216156,0,0,0,15.6
+216157,0,0,0,15.6
+216158,0,0,0,15.6
+216159,0,0,0,15.6
+216160,0,0,0,15.6
+216161,337253.967,0,0,15.6
+216162,0,0,0,15.6
+216163,0,0,0,15.6
+216164,0,0,0,15.6
+216165,0,0,0,15.6
+216166,0,0,0,15.6
+216167,0,0,0,15.6
+216168,0,0,0,15.6
+216169,0,0,0,15.6
+216170,0,0,0,15.6
+216171,0,0,0,15.6
+216172,0,0,0,15.6
+216173,0,0,0,15.6
+216174,0,0,0,15.6
+216175,0,0,0,15.6
+216176,0,0,661521.6467,15.6
+216177,0,0,0,15.6
+216178,0,0,0,15.6
+216179,0,0,0,15.6
+216180,0,0,0,15.6
+216181,0,0,0,15.6
+216182,0,0,0,15.6
+216183,0,368783.0564,0,15.6
+216184,0,0,0,15.6
+216185,0,0,0,15.6
+216186,0,0,0,15.6
+216187,0,0,0,15.6
+216188,0,0,0,15.6
+216189,0,0,0,15.6
+216190,0,0,0,15.6
+216191,0,0,0,15.6
+216192,0,0,0,15.6
+216193,0,0,0,15.6
+216194,0,0,0,15.6
+216195,0,0,0,15.6
+216196,0,0,0,15.6
+216197,0,0,0,15.6
+216198,0,0,0,15.6
+216199,337878.1967,0,0,15.6
+216200,0,0,0,15.6
+216201,0,0,0,15.6
+216202,0,0,0,15.6
+216203,0,0,0,15.6
+216204,0,0,0,15.6
+216205,0,0,0,15.6
+216206,0,0,0,15.6
+216207,0,0,0,15.6
+216208,0,0,0,15.6
+216209,0,0,0,15.6
+216210,0,0,660246.7684,15.6
+216211,0,0,0,15.6
+216212,0,0,0,15.6
+216213,0,0,0,15.6
+216214,0,0,0,15.6
+216215,0,0,0,15.6
+216216,0,0,0,15.6
+216217,0,368783.2012,0,15.6
+216218,0,0,0,15.6
+216219,0,0,0,15.6
+216220,0,0,0,15.6
+216221,0,0,0,15.6
+216222,0,0,0,15.6
+216223,0,0,0,15.6
+216224,0,0,0,15.6
+216225,0,0,0,15.6
+216226,0,0,0,15.6
+216227,0,0,0,15.6
+216228,0,0,0,15.6
+216229,0,0,0,15.6
+216230,0,0,0,15.6
+216231,0,0,0,15.6
+216232,0,0,0,15.6
+216233,0,0,0,15.6
+216234,338411.1943,0,0,15.6
+216235,0,0,0,15.6
+216236,0,0,0,15.6
+216237,0,0,0,15.6
+216238,0,0,0,15.6
+216239,0,0,0,15.6
+216240,0,0,0,17.8
+216241,5027.462536,0,0,17.8
+216242,0,0,0,17.8
+216243,0,0,0,17.8
+216244,0,0,661582.9936,17.8
+216245,1239.895401,0,0,17.8
+216246,0,0,0,17.8
+216247,0,0,0,17.8
+216248,0,0,0,17.8
+216249,0,0,0,17.8
+216250,0,0,0,17.8
+216251,0,368783.7441,0,17.8
+216252,0,0,0,17.8
+216253,0,0,0,17.8
+216254,0,0,0,17.8
+216255,0,0,0,17.8
+216256,0,0,0,17.8
+216257,0,0,0,17.8
+216258,0,0,0,17.8
+216259,0,0,0,17.8
+216260,0,0,0,17.8
+216261,42899.00949,0,0,17.8
+216262,17516.68527,0,0,17.8
+216263,23003.6836,0,0,17.8
+216264,24015.68768,0,0,17.8
+216265,38980.70232,0,0,17.8
+216266,33775.76252,0,0,17.8
+216267,34670.03505,0,0,17.8
+216268,35425.35742,0,0,17.8
+216269,372927.3248,0,0,17.8
+216270,35997.43106,0,0,17.8
+216271,36732.37879,0,0,17.8
+216272,36666.62687,0,0,17.8
+216273,37210.95182,0,0,17.8
+216274,41940.44313,0,0,17.8
+216275,40178.0235,0,0,17.8
+216276,43984.718,0,0,17.8
+216277,43205.15137,0,0,17.8
+216278,43963.42297,0,661658.5642,17.8
+216279,44578.12291,0,0,17.8
+216280,45288.19454,0,0,17.8
+216281,45514.17405,0,0,17.8
+216282,46153.18866,0,0,17.8
+216283,46825.66003,0,0,17.8
+216284,46821.66551,0,0,17.8
+216285,38940.06966,368786.458,0,17.8
+216286,37160.93163,0,0,17.8
+216287,36530.23675,0,0,17.8
+216288,0,0,0,17.8
+216289,0,0,0,17.8
+216290,0,0,0,17.8
+216291,0,0,0,17.8
+216292,0,0,0,17.8
+216293,0,0,0,17.8
+216294,0,0,0,17.8
+216295,0,391.9151484,0,17.8
+216296,0,391.9151489,0,17.8
+216297,0,391.9151494,0,17.8
+216298,0,434.18037,0,17.8
+216299,0,503.8454882,0,17.8
+216300,0,503.845489,0,20
+216301,489692.6762,141384.2883,0,20
+216302,80373.93586,802.6211328,0,20
+216303,119468.8536,31973.94321,0,20
+216304,107411.906,30785.55662,0,20
+216305,105531.579,50890.38568,0,20
+216306,105122.8748,40727.6523,0,20
+216307,103521.3766,42380.00251,0,20
+216308,102158.6784,43270.06804,0,20
+216309,100651.1683,43659.83964,0,20
+216310,99721.40317,43806.97597,0,20
+216311,97621.54117,44392.8506,0,20
+216312,96682.10847,44296.32978,0,20
+216313,95259.01804,44447.51156,0,20
+216314,93441.12399,45182.85502,0,20
+216315,92423.54339,45063.57889,0,20
+216316,90835.36614,45294.95349,0,20
+216317,89402.86872,45663.35032,0,20
+216318,88322.51169,45423.09888,0,20
+216319,87012.04726,45946.39263,0,20
+216320,85659.50802,46300.22307,163.2595187,20
+216321,84672.75088,46217.10985,254.8457519,20
+216322,83236.96777,46314.30892,194.1125815,20
+216323,82111.10703,46810.28977,254.8489365,20
+216324,80824.58871,46428.87987,387.9655582,20
+216325,79660.98392,47382.085,496.8678047,20
+216326,78379.94383,46713.92264,464.5770191,20
+216327,77384.7778,47365.59622,526.4754781,20
+216328,75738.25977,47288.16487,586.8304123,20
+216329,75381.84765,47644.2869,601.4526256,20
+216330,74487.1436,47288.15983,646.6874244,20
+216331,74915.53623,47893.76902,690.9097244,20
+216332,74058.13626,47893.77638,735.6012444,20
+216333,74122.96732,47893.78358,735.6162799,20
+216334,73779.73637,48137.34478,749.257949,20
+216335,73619.21267,48018.29625,764.3692367,20
+216336,73446.78067,48602.14657,779.4198679,20
+216337,72973.63429,48153.92172,822.2124927,20
+216338,73095.28365,48385.18156,852.1265716,20
+216339,72716.18859,48725.95057,866.3272617,20
+216340,72513.49562,48739.85796,895.3557161,20
+216341,72362.63188,48645.97315,931.6820312,20
+216342,72197.12628,48810.90757,953.1503993,20
+216343,72012.20798,49000.62723,974.5716677,20
+216344,71537.55064,49076.63514,1010.609545,20
+216345,71556.70873,49107.14172,1024.603983,20
+216346,71502.98893,49207.9357,1067.751035,20
+216347,71175.61407,49090.52492,1081.682109,20
+216348,71324.56457,49330.58385,1096.240746,20
+216349,70968.29842,49333.2371,1123.976338,20
+216350,70946.2376,49634.34806,1124.012114,20
+216351,70895.90505,49299.23615,1173.332382,20
+216352,70523.34312,49589.66947,1180.586455,20
+216353,70818.65648,49450.18914,1194.368166,20
+216354,70486.45704,50036.72429,1222.521264,20
+216355,70931.7662,49809.25364,1236.922402,20
+216356,70356.40323,49793.89402,1278.623041,20
+216357,70740.85507,50206.22888,1264.350299,20
+216358,70428.66603,49880.79674,1320.863782,20
+216359,70408.83076,50100.18144,1305.988719,20
+216360,70606.33934,50172.29965,1362.336403,21
+216361,63471.35265,45425.41948,995.7603378,21
+216362,62090.49423,45109.91262,967.0441047,21
+216363,62327.256,44900.22019,974.4623485,21
+216364,61453.00497,45041.43482,981.0715132,21
+216365,61553.53531,44659.44856,981.8955454,21
+216366,60915.90434,44859.75783,995.8980876,21
+216367,60663.29003,44642.04991,995.9259235,21
+216368,60569.98685,44602.44863,1009.896284,21
+216369,60021.63811,44581.61008,1010.705328,21
+216370,59761.35448,44604.82837,1009.95363,21
+216371,59509.70185,44692.02716,1024.706791,21
+216372,59100.94083,44335.78968,1038.647053,21
+216373,58919.84477,44002.90434,1024.766316,21
+216374,58350.92882,43605.44487,1052.586235,21
+216375,58122.6514,43789.9217,1038.738169,21
+216376,57922.14881,43513.92228,1053.446558,21
+216377,57396.13143,43402.12503,1052.679162,21
+216378,57030.81212,43529.34047,1067.389524,21
+216379,56922.85952,43507.11606,1066.591143,21
+216380,56180.34195,43105.86031,1067.453748,21
+216381,56266.88505,43489.17432,1081.335539,21
+216382,55523.28905,43074.00815,1081.368496,21
+216383,55273.42488,43224.77141,1066.720249,21
+216384,54832.68531,42923.00478,1096.068166,21
+216385,54679.43728,43174.91948,1080.604609,21
+216386,53952.77719,43172.74578,1109.955509,21
+216387,53709.5633,42639.51077,1080.671728,21
+216388,53334.42478,43140.67314,1110.024159,21
+216389,52876.20627,42758.3019,1080.738459,21
+216390,52422.65361,42906.36789,1109.246563,21
+216391,51970.17348,42587.24028,1080.805042,21
+216392,51738.1795,42693.96189,1051.319548,21
+216393,51017.73561,42494.92673,1036.513754,21
+216394,50944.07985,42673.81099,1006.708875,21
+216395,50133.45235,42281.82706,962.8488772,21
+216396,50121.3861,42247.38084,961.5761502,21
+216397,49302.74137,42281.50828,909.6820657,21
+216398,49010.86921,42208.99814,886.6364513,21
+216399,48523.61377,41854.15137,833.9578049,21
+216400,48041.32621,42176.5786,810.4066002,21
+216401,47845.60763,41652.36951,778.6396554,21
+216402,46877.99014,41999.30699,716.1478397,21
+216403,46848.25918,41599.47872,630.3717561,21
+216404,46239.45199,41730.31832,630.3829872,21
+216405,45828.87762,41223.08466,602.5119017,21
+216406,45324.80482,41697.6841,616.4802555,21
+216407,44782.07508,41038.87126,602.5325762,21
+216408,44326.1454,41321.32059,588.5502983,21
+216409,43937.10035,41098.43049,602.5526396,21
+216410,43454.83617,41151.66134,574.5423445,21
+216411,42921.41588,40601.95098,574.5516633,21
+216412,42495.54505,41184.17606,574.5609499,21
+216413,42050.38802,40581.46632,560.5066823,21
+216414,41424.85577,40787.89434,546.4158354,21
+216415,41072.9671,40648.83236,560.5240896,21
+216416,40648.10587,40608.87359,532.2961305,21
+216417,39978.76003,40289.31266,532.3038461,21
+216418,39657.49869,40371.6429,518.1375141,21
+216419,39620.24338,40256.30429,518.1450601,21
+216420,38985.02587,40316.09874,503.9395992,21
+216421,13137.17278,6766.164413,0,21
+216422,12126.40892,5383.341346,0,21
+216423,11575.039,4651.633641,0,21
+216424,11315.70594,4565.942537,0,21
+216425,11021.24043,4068.335433,0,21
+216426,10759.5236,3724.753074,0,21
+216427,10473.93481,3241.378051,0,21
+216428,10307.20237,3147.124183,0,21
+216429,9921.794266,2890.325997,0,21
+216430,9862.963444,2315.867301,0,21
+216431,9620.542077,2297.086026,0,21
+216432,9293.369047,1713.908132,0,21
+216433,9171.11846,1713.908207,0,21
+216434,8877.389869,1358.656357,0,21
+216435,8706.031637,1054.225188,0,21
+216436,8434.234247,1034.750208,0,21
+216437,8397.673176,936.7588007,0,21
+216438,7974.951921,962.9415772,0,21
+216439,7950.215571,880.3593682,0,21
+216440,7548.769613,843.758038,0,21
+216441,7599.623165,817.2916141,0,21
+216442,7208.229404,759.1183574,0,21
+216443,7055.41688,721.2804307,0,21
+216444,6864.882796,694.50663,0,21
+216445,6710.570018,667.6245438,0,21
+216446,6556.163892,654.1418737,0,21
+216447,6246.355675,613.5214223,0,21
+216448,6102.570298,586.292611,0,21
+216449,5905.679851,586.2926471,0,21
+216450,5761.505242,531.4585671,0,21
+216451,5601.202761,517.6679052,0,21
+216452,5339.870212,503.8431412,0,21
+216453,5327.07732,476.0879178,0,21
+216454,5064.038246,448.1862455,0,21
+216455,5038.288697,434.178242,0,21
+216456,4799.255932,420.1307905,0,21
+216457,4653.247354,377.7406168,0,21
+216458,4627.306705,363.5238943,0,21
+216459,4372.611465,320.5935373,0,21
+216460,4089.857466,306.184496,0,21
+216461,3954.175811,277.2063648,0,21
+216462,3681.141637,247.9992442,0,21
+216463,3667.958625,218.5406316,0,21
+216464,3392.459309,218.5406533,0,21
+216465,3379.198442,158.7466141,0,21
+216466,3227.13275,143.5848911,0,21
+216467,2960.824237,128.3234361,0,21
+216468,2947.456378,66.03338296,0,21
+216469,2664.673516,81.82651701,0,21
+216470,2651.223361,33.81640051,0,21
+216471,2495.00225,0,0,21
+216472,2351.307011,0,0,21
+216473,2206.576367,0,0,21
+216474,2047.086593,0,0,21
+216475,1899.922433,0,0,21
+216476,1872.530927,0,0,21
+216477,1601.058273,0,0,21
+216478,1559.742844,0,0,21
+216479,1421.217653,0,0,21
+216480,1252.480418,0,0,21
+216481,1093.979589,0,0,21
+216482,1080.050247,0,0,21
+216483,900.2266515,0,0,21
+216484,900.2266763,0,0,21
+216485,858.0405863,0,0,21
+216486,872.1365929,0,0,21
+216487,829.7447723,0,0,21
+216488,815.5441114,0,0,21
+216489,815.544136,0,0,21
+216490,772.7252703,0,0,21
+216491,787.0348398,0,0,21
+216492,743.9938915,0,0,21
+216493,729.5709766,0,0,21
+216494,729.5710328,0,0,21
+216495,700.6079561,0,0,21
+216496,686.0666025,0,0,21
+216497,671.4845195,0,0,21
+216498,642.1954964,0,0,21
+216499,642.1955025,0,0,21
+216500,627.4871831,0,0,21
+216501,597.9389774,0,0,21
+216502,583.0975064,0,0,21
+216503,583.097516,0,0,21
+216504,538.2928932,0,0,21
+216505,553.2754232,0,0,21
+216506,508.1798141,0,0,21
+216507,508.1798286,0,0,21
+216508,493.0470063,0,0,21
+216509,477.8617248,0,0,21
+216510,447.3285156,0,0,21
+216511,447.3286375,0,0,21
+216512,416.5689065,0,0,21
+216513,416.5689223,0,0,21
+216514,385.5694053,0,0,21
+216515,385.5694158,0,0,21
+216516,354.314892,0,0,21
+216517,354.3148994,0,0,21
+216518,322.7874214,0,0,21
+216519,322.7874351,0,0,21
+216520,290.9655007,0,0,21
+216521,290.9655095,0,0,21
+216522,274.9361907,0,0,21
+216523,242.6216547,0,0,21
+216524,242.6216775,0,0,21
+216525,226.3273279,0,0,21
+216526,209.9344174,0,0,21
+216527,193.4365408,0,0,21
+216528,176.8262222,0,0,21
+216529,160.0946115,0,0,21
+216530,143.230978,0,0,21
+216531,143.2310146,0,0,21
+216532,109.0518074,0,0,21
+216533,109.051812,0,0,21
+216534,91.69796748,0,0,21
+216535,65.25506218,0,0,21
+216536,56.30797976,0,0,21
+216537,56.30798328,0,0,21
+216538,19.54814313,0,0,21
+216539,19.54814416,0,0,21
+216540,0,0,0,21
+216541,0,0,0,21
+216542,0,0,0,21
+216543,0,0,0,21
+216544,0,0,0,21
+216545,0,0,0,21
+216546,0,0,0,21
+216547,0,0,0,21
+216548,0,0,0,21
+216549,0,0,0,21
+216550,0,0,0,21
+216551,0,0,0,21
+216552,0,0,0,21
+216553,0,0,0,21
+216554,0,0,0,21
+216555,0,0,0,21
+216556,0,0,0,21
+216557,0,0,0,21
+216558,0,0,0,21
+216559,0,0,0,21
+216560,0,0,0,21
+216561,0,0,0,21
+216562,0,0,0,21
+216563,0,0,0,21
+216564,0,0,0,21
+216565,0,0,0,21
+216566,0,0,0,21
+216567,0,0,0,21
+216568,0,0,0,21
+216569,0,0,0,21
+216570,0,0,0,21
+216571,0,0,0,21
+216572,0,0,0,21
+216573,0,0,0,21
+216574,0,0,0,21
+216575,0,0,0,21
+216576,0,0,0,21
+216577,0,0,0,21
+216578,0,0,0,21
+216579,0,0,0,21
+216580,0,0,0,21
+216581,0,0,0,21
+216582,0,0,0,21
+216583,0,0,0,21
+216584,0,0,0,21
+216585,0,0,0,21
+216586,0,0,0,21
+216587,0,0,0,21
+216588,0,0,0,21
+216589,0,0,0,21
+216590,0,0,0,21
+216591,0,0,0,21
+216592,0,0,0,21
+216593,0,0,0,21
+216594,0,0,0,21
+216595,0,0,0,21
+216596,0,0,0,21
+216597,0,0,0,21
+216598,0,0,0,21
+216599,0,0,0,21
+216600,0,0,0,21
+216601,0,0,0,21
+216602,0,0,0,21
+216603,0,0,0,21
+216604,0,0,0,21
+216605,0,0,0,21
+216606,0,0,0,21
+216607,0,0,0,21
+216608,0,0,0,21
+216609,0,0,0,21
+216610,0,0,0,21
+216611,0,0,0,21
+216612,0,0,0,21
+216613,0,0,0,21
+216614,0,0,0,21
+216615,0,0,0,21
+216616,0,0,0,21
+216617,0,0,0,21
+216618,0,0,0,21
+216619,0,0,0,21
+216620,0,0,0,21
+216621,0,0,0,21
+216622,0,0,0,21
+216623,0,0,0,21
+216624,0,0,0,21
+216625,0,0,0,21
+216626,0,0,0,21
+216627,0,0,0,21
+216628,0,0,0,21
+216629,0,0,0,21
+216630,0,0,0,21
+216631,0,0,0,21
+216632,0,0,0,21
+216633,0,0,0,21
+216634,0,0,0,21
+216635,0,0,0,21
+216636,0,0,0,21
+216637,0,0,0,21
+216638,0,0,0,21
+216639,0,0,0,21
+216640,0,0,0,21
+216641,0,0,0,21
+216642,0,0,0,21
+216643,0,0,0,21
+216644,0,0,0,21
+216645,0,0,0,21
+216646,0,0,0,21
+216647,0,0,0,21
+216648,0,0,0,21
+216649,0,0,0,21
+216650,0,0,0,21
+216651,0,0,0,21
+216652,0,0,0,21
+216653,0,0,0,21
+216654,0,0,0,21
+216655,0,0,0,21
+216656,0,0,0,21
+216657,0,0,0,21
+216658,0,0,0,21
+216659,0,0,0,21
+216660,0,0,0,21
+216661,0,0,0,21
+216662,0,0,0,21
+216663,0,0,0,21
+216664,0,0,0,21
+216665,0,0,0,21
+216666,0,0,0,21
+216667,0,0,0,21
+216668,0,0,0,21
+216669,0,0,0,21
+216670,0,0,0,21
+216671,0,0,0,21
+216672,0,0,0,21
+216673,0,0,0,21
+216674,0,0,0,21
+216675,0,0,0,21
+216676,0,0,0,21
+216677,0,0,0,21
+216678,0,0,0,21
+216679,0,0,0,21
+216680,0,0,0,21
+216681,0,0,0,21
+216682,0,0,0,21
+216683,0,0,0,21
+216684,0,0,0,21
+216685,0,0,0,21
+216686,0,0,0,21
+216687,0,0,0,21
+216688,0,0,0,21
+216689,0,0,0,21
+216690,0,0,0,21
+216691,0,0,0,21
+216692,0,0,0,21
+216693,0,0,0,21
+216694,0,0,0,21
+216695,0,0,0,21
+216696,0,0,0,21
+216697,0,0,0,21
+216698,0,0,0,21
+216699,0,0,0,21
+216700,0,0,0,21
+216701,0,0,0,21
+216702,0,0,0,21
+216703,0,0,0,21
+216704,0,0,0,21
+216705,0,0,0,21
+216706,0,0,0,21
+216707,0,0,0,21
+216708,0,0,0,21
+216709,0,0,0,21
+216710,0,0,0,21
+216711,0,0,0,21
+216712,0,0,0,21
+216713,0,0,0,21
+216714,0,0,0,21
+216715,0,0,0,21
+216716,0,0,0,21
+216717,0,0,0,21
+216718,0,0,0,21
+216719,0,0,0,21
+216720,0,0,0,21
+216721,0,0,0,21
+216722,0,0,0,21
+216723,0,0,0,21
+216724,0,0,0,21
+216725,0,0,0,21
+216726,0,0,0,21
+216727,0,0,0,21
+216728,0,0,0,21
+216729,0,0,0,21
+216730,0,0,0,21
+216731,0,0,0,21
+216732,0,0,0,21
+216733,0,0,0,21
+216734,0,0,0,21
+216735,0,0,0,21
+216736,0,0,0,21
+216737,0,0,0,21
+216738,0,0,0,21
+216739,0,0,0,21
+216740,0,0,0,21
+216741,0,0,0,21
+216742,0,0,0,21
+216743,0,0,0,21
+216744,0,0,0,21
+216745,0,0,0,21
+216746,0,0,0,21
+216747,0,0,0,21
+216748,0,0,0,21
+216749,0,0,0,21
+216750,0,0,0,21
+216751,0,0,0,21
+216752,0,0,0,21
+216753,0,0,0,21
+216754,0,0,0,21
+216755,0,0,0,21
+216756,0,0,0,21
+216757,0,0,0,21
+216758,0,0,0,21
+216759,0,0,0,21
+216760,0,0,0,21
+216761,0,0,0,21
+216762,0,0,0,21
+216763,0,0,0,21
+216764,0,0,0,21
+216765,0,0,0,21
+216766,0,0,0,21
+216767,0,0,0,21
+216768,0,0,0,21
+216769,0,0,0,21
+216770,0,0,0,21
+216771,0,0,0,21
+216772,0,0,0,21
+216773,0,0,0,21
+216774,0,0,0,21
+216775,0,0,0,21
+216776,0,0,0,21
+216777,0,0,0,21
+216778,0,0,0,21
+216779,0,0,0,21
+216780,0,0,0,21
+216781,0,0,0,21
+216782,0,0,0,21
+216783,0,0,0,21
+216784,0,0,0,21
+216785,0,0,0,21
+216786,0,0,0,21
+216787,0,0,0,21
+216788,0,0,0,21
+216789,0,0,0,21
+216790,0,0,0,21
+216791,0,0,0,21
+216792,0,0,0,21
+216793,0,0,0,21
+216794,0,0,0,21
+216795,0,0,0,21
+216796,0,0,0,21
+216797,0,0,0,21
+216798,0,0,0,21
+216799,0,0,0,21
+216800,0,0,0,21
+216801,0,0,0,21
+216802,0,0,0,21
+216803,0,0,0,21
+216804,0,0,0,21
+216805,0,0,0,21
+216806,0,0,0,21
+216807,0,0,0,21
+216808,0,0,0,21
+216809,0,0,0,21
+216810,0,0,0,21
+216811,0,0,0,21
+216812,0,0,0,21
+216813,0,0,0,21
+216814,0,0,0,21
+216815,0,0,0,21
+216816,0,0,0,21
+216817,0,0,0,21
+216818,0,0,0,21
+216819,0,0,0,21
+216820,0,0,0,21
+216821,0,0,0,21
+216822,0,0,0,21
+216823,0,0,0,21
+216824,0,0,0,21
+216825,0,0,0,21
+216826,0,0,0,21
+216827,0,0,0,21
+216828,0,0,0,21
+216829,0,0,0,21
+216830,0,0,0,21
+216831,0,0,0,21
+216832,0,0,0,21
+216833,0,0,0,21
+216834,0,0,0,21
+216835,0,0,0,21
+216836,0,0,0,21
+216837,0,0,0,21
+216838,0,0,0,21
+216839,0,0,0,21
+216840,0,0,0,21
+216841,0,0,0,21
+216842,0,0,0,21
+216843,0,0,0,21
+216844,0,0,0,21
+216845,0,0,0,21
+216846,0,0,0,21
+216847,0,0,0,21
+216848,0,0,0,21
+216849,0,0,0,21
+216850,0,0,0,21
+216851,0,0,0,21
+216852,0,0,0,21
+216853,0,0,0,21
+216854,0,0,0,21
+216855,0,0,0,21
+216856,0,0,0,21
+216857,0,0,0,21
+216858,0,0,0,21
+216859,0,0,0,21
+216860,0,0,0,21
+216861,0,0,0,21
+216862,0,0,0,21
+216863,0,0,0,21
+216864,0,0,0,21
+216865,0,0,0,21
+216866,0,0,0,21
+216867,0,0,0,21
+216868,0,0,0,21
+216869,0,0,0,21
+216870,0,0,0,21
+216871,0,0,0,21
+216872,0,0,0,21
+216873,0,0,0,21
+216874,0,0,0,21
+216875,0,0,0,21
+216876,0,0,0,21
+216877,0,0,0,21
+216878,0,0,0,21
+216879,0,0,0,21
+216880,0,0,0,21
+216881,0,0,0,21
+216882,0,0,0,21
+216883,0,0,0,21
+216884,0,0,0,21
+216885,0,0,0,21
+216886,0,0,0,21
+216887,0,0,0,21
+216888,0,0,0,21
+216889,0,0,0,21
+216890,0,0,0,21
+216891,0,0,0,21
+216892,0,0,0,21
+216893,0,0,0,21
+216894,0,0,0,21
+216895,0,0,0,21
+216896,0,0,0,21
+216897,0,0,0,21
+216898,0,0,0,21
+216899,0,0,0,21
+216900,0,0,0,21
+216901,0,0,0,21
+216902,0,0,0,21
+216903,0,0,0,21
+216904,0,0,0,21
+216905,0,0,0,21
+216906,0,0,0,21
+216907,0,0,0,21
+216908,0,0,0,21
+216909,0,0,0,21
+216910,0,0,0,21
+216911,0,0,0,21
+216912,0,0,0,21
+216913,0,0,0,21
+216914,0,0,0,21
+216915,0,0,0,21
+216916,0,0,0,21
+216917,0,0,0,21
+216918,0,0,0,21
+216919,0,0,0,21
+216920,0,0,0,21
+216921,0,0,0,21
+216922,0,0,0,21
+216923,0,0,0,21
+216924,0,0,0,21
+216925,0,0,0,21
+216926,0,0,0,21
+216927,0,0,0,21
+216928,0,0,0,21
+216929,0,0,0,21
+216930,0,0,0,21
+216931,0,0,0,21
+216932,0,0,0,21
+216933,0,0,0,21
+216934,0,0,0,21
+216935,0,0,0,21
+216936,0,0,0,21
+216937,0,0,0,21
+216938,0,0,0,21
+216939,0,0,0,21
+216940,0,0,0,21
+216941,0,0,0,21
+216942,0,0,0,21
+216943,0,0,0,21
+216944,0,0,0,21
+216945,0,0,0,21
+216946,0,0,0,21
+216947,0,0,0,21
+216948,0,0,0,21
+216949,0,0,0,21
+216950,0,0,0,21
+216951,0,0,0,21
+216952,0,0,0,21
+216953,0,0,0,21
+216954,0,0,0,21
+216955,0,0,0,21
+216956,0,0,0,21
+216957,0,0,0,21
+216958,0,0,0,21
+216959,0,0,0,21
+216960,0,0,0,21
+216961,0,0,0,21
+216962,0,0,0,21
+216963,0,0,0,21
+216964,0,0,0,21
+216965,0,0,0,21
+216966,0,0,0,21
+216967,0,0,0,21
+216968,0,0,0,21
+216969,0,0,0,21
+216970,0,0,0,21
+216971,0,0,0,21
+216972,0,0,0,21
+216973,0,0,0,21
+216974,0,0,0,21
+216975,0,0,0,21
+216976,0,0,0,21
+216977,0,0,0,21
+216978,0,0,0,21
+216979,0,0,0,21
+216980,0,0,0,21
+216981,0,0,0,21
+216982,0,0,0,21
+216983,0,0,0,21
+216984,0,0,0,21
+216985,0,0,0,21
+216986,0,0,0,21
+216987,0,0,0,21
+216988,0,0,0,21
+216989,0,0,0,21
+216990,0,0,0,21
+216991,0,0,0,21
+216992,0,0,0,21
+216993,0,0,0,21
+216994,0,0,0,21
+216995,0,0,0,21
+216996,0,0,0,21
+216997,0,0,0,21
+216998,0,0,0,21
+216999,0,0,0,21
+217000,0,0,0,21
+217001,0,0,0,21
+217002,0,0,0,21
+217003,0,0,0,21
+217004,0,0,0,21
+217005,0,0,0,21
+217006,0,0,0,21
+217007,0,0,0,21
+217008,0,0,0,21
+217009,0,0,0,21
+217010,0,0,0,21
+217011,0,0,0,21
+217012,0,0,0,21
+217013,0,0,0,21
+217014,0,0,0,21
+217015,0,0,0,21
+217016,0,0,0,21
+217017,0,0,0,21
+217018,0,0,0,21
+217019,0,0,0,21
+217020,0,0,0,21
+217021,0,0,0,21
+217022,0,0,0,21
+217023,0,0,0,21
+217024,0,0,0,21
+217025,0,0,0,21
+217026,0,0,0,21
+217027,0,0,0,21
+217028,0,0,0,21
+217029,0,0,0,21
+217030,0,0,0,21
+217031,0,0,0,21
+217032,0,0,0,21
+217033,0,0,0,21
+217034,0,0,0,21
+217035,0,0,0,21
+217036,0,0,0,21
+217037,0,0,0,21
+217038,0,0,0,21
+217039,0,0,0,21
+217040,0,0,0,21
+217041,0,0,0,21
+217042,0,0,0,21
+217043,0,0,0,21
+217044,0,0,0,21
+217045,0,0,0,21
+217046,0,0,0,21
+217047,0,0,0,21
+217048,0,0,0,21
+217049,0,0,0,21
+217050,0,0,0,21
+217051,0,0,0,21
+217052,0,0,0,21
+217053,0,0,0,21
+217054,0,0,0,21
+217055,0,0,0,21
+217056,0,0,0,21
+217057,0,0,0,21
+217058,0,0,0,21
+217059,0,0,0,21
+217060,0,0,0,21
+217061,0,0,0,21
+217062,0,0,0,21
+217063,0,0,0,21
+217064,0,0,0,21
+217065,0,0,0,21
+217066,0,0,0,21
+217067,0,0,0,21
+217068,0,0,0,21
+217069,0,0,0,21
+217070,0,0,0,21
+217071,0,0,0,21
+217072,0,0,0,21
+217073,0,0,0,21
+217074,0,0,0,21
+217075,0,0,0,21
+217076,0,0,0,21
+217077,0,0,0,21
+217078,0,0,0,21
+217079,0,0,0,21
+217080,0,0,0,21
+217081,0,0,0,21
+217082,0,0,0,21
+217083,0,0,0,21
+217084,0,0,0,21
+217085,0,0,0,21
+217086,0,0,0,21
+217087,0,0,0,21
+217088,0,0,0,21
+217089,0,0,0,21
+217090,0,0,0,21
+217091,0,0,0,21
+217092,0,0,0,21
+217093,0,0,0,21
+217094,0,0,0,21
+217095,0,0,0,21
+217096,0,0,0,21
+217097,0,0,0,21
+217098,0,0,0,21
+217099,0,0,0,21
+217100,0,0,0,21
+217101,0,0,0,21
+217102,0,0,0,21
+217103,0,0,0,21
+217104,0,0,0,21
+217105,0,0,0,21
+217106,0,0,0,21
+217107,0,0,0,21
+217108,0,0,0,21
+217109,0,0,0,21
+217110,0,0,0,21
+217111,0,0,0,21
+217112,0,0,0,21
+217113,0,0,0,21
+217114,0,0,0,21
+217115,0,0,0,21
+217116,0,0,0,21
+217117,0,0,0,21
+217118,0,0,0,21
+217119,0,0,0,21
+217120,0,0,0,21
+217121,0,0,0,21
+217122,0,0,0,21
+217123,0,0,0,21
+217124,0,0,0,21
+217125,0,0,0,21
+217126,0,0,0,21
+217127,0,0,0,21
+217128,0,0,0,21
+217129,0,0,0,21
+217130,0,0,0,21
+217131,0,0,0,21
+217132,0,0,0,21
+217133,0,0,0,21
+217134,0,0,0,21
+217135,0,0,0,21
+217136,0,0,0,21
+217137,0,0,0,21
+217138,0,0,0,21
+217139,0,0,0,21
+217140,0,0,0,21
+217141,0,0,0,21
+217142,0,0,0,21
+217143,0,0,0,21
+217144,0,0,0,21
+217145,0,0,0,21
+217146,0,0,0,21
+217147,0,0,0,21
+217148,0,0,0,21
+217149,0,0,0,21
+217150,0,0,0,21
+217151,0,0,0,21
+217152,0,0,0,21
+217153,0,0,0,21
+217154,0,0,0,21
+217155,0,0,0,21
+217156,0,0,0,21
+217157,0,0,0,21
+217158,0,0,0,21
+217159,0,0,0,21
+217160,0,0,0,21
+217161,0,0,0,21
+217162,0,0,0,21
+217163,0,0,0,21
+217164,0,0,0,21
+217165,0,0,0,21
+217166,0,0,0,21
+217167,0,0,0,21
+217168,0,0,0,21
+217169,0,0,0,21
+217170,0,0,0,21
+217171,0,0,0,21
+217172,0,0,0,21
+217173,0,0,0,21
+217174,0,0,0,21
+217175,0,0,0,21
+217176,0,0,0,21
+217177,0,0,0,21
+217178,0,0,0,21
+217179,0,0,0,21
+217180,0,0,0,21
+217181,0,0,0,21
+217182,0,0,0,21
+217183,0,0,0,21
+217184,0,0,0,21
+217185,0,0,0,21
+217186,0,0,0,21
+217187,0,0,0,21
+217188,0,0,0,21
+217189,0,0,0,21
+217190,0,0,0,21
+217191,0,0,0,21
+217192,0,0,0,21
+217193,0,0,0,21
+217194,0,0,0,21
+217195,0,0,0,21
+217196,0,0,0,21
+217197,0,0,0,21
+217198,0,0,0,21
+217199,0,0,0,21
+217200,0,0,0,21
+217201,0,0,0,21
+217202,0,0,0,21
+217203,719.1546127,0,0,21
+217204,1255.780618,0,0,21
+217205,990.0010441,0,0,21
+217206,1387.083185,0,0,21
+217207,1387.083184,0,0,21
+217208,1775.616366,0,0,21
+217209,1646.937083,0,0,21
+217210,2030.731938,0,0,21
+217211,2157.249654,0,0,21
+217212,2157.249651,274.763014,0,21
+217213,2408.373484,1361.699924,0,21
+217214,2533.036221,1036.57947,0,21
+217215,2657.132553,1199.89899,0,21
+217216,2903.711548,1522.138644,0,21
+217217,2903.711542,1522.138648,0,21
+217218,3026.232357,1839.401469,0,21
+217219,3269.820582,1996.409736,0,21
+217220,3390.917734,2152.434245,0,21
+217221,3511.568287,2307.535353,0,21
+217222,3631.784598,2307.535361,0,21
+217223,3631.78459,2767.789784,0,21
+217224,3989.939825,2615.170035,0,21
+217225,3989.939815,3070.814821,0,21
+217226,4108.527466,2919.660659,0,21
+217227,4344.56136,3371.086801,0,21
+217228,4344.561348,3371.086816,0,21
+217229,4462.024045,3520.255,0,21
+217230,4695.87889,3668.807976,0,21
+217231,4695.878877,3816.765946,0,21
+217232,4928.352471,3964.147548,0,21
+217233,4928.352457,4110.970029,0,21
+217234,5159.495601,4257.249404,0,21
+217235,5159.495587,4403.000584,0,21
+217236,5389.354499,4548.237489,0,21
+217237,5389.354485,4692.97315,0,21
+217238,5617.97142,4692.973173,0,21
+217239,5617.971406,4980.988901,0,21
+217240,5845.385158,5124.291311,0,21
+217241,5845.385174,5124.291336,0,21
+217242,5958.652134,5409.536351,0,21
+217243,6184.327316,5409.536377,0,21
+217244,6184.327301,5551.497825,0,21
+217245,6408.883781,5834.142002,0,21
+217246,6296.743456,5834.14203,0,21
+217247,6632.351169,5834.142057,0,21
+217248,6632.351154,6255.029523,0,21
+217249,6743.685148,6115.134379,0,21
+217250,6938.03283,6394.533306,0,21
+217251,7109.341099,6648.594744,0,21
+217252,7202.834054,6658.503188,0,21
+217253,7236.814639,6797.243327,0,21
+217254,7473.955073,7112.750844,0,21
+217255,7490.612566,7112.750869,0,21
+217256,7734.755633,7151.218555,0,21
+217257,7751.139133,7582.089866,0,21
+217258,7993.934864,7445.158146,0,21
+217259,7884.852965,7756.329624,0,21
+217260,8259.578286,7756.329644,0,21
+217261,0,0,0,21
+217262,0,0,0,21
+217263,0,0,0,21
+217264,0,0,0,21
+217265,0,367935.3037,666051.3042,21
+217266,332829.1529,0,0,21
+217267,0,0,0,21
+217268,0,0,0,21
+217269,0,0,0,21
+217270,0,0,0,21
+217271,0,0,0,21
+217272,0,0,0,21
+217273,0,0,0,21
+217274,0,0,0,21
+217275,0,0,0,21
+217276,0,0,0,21
+217277,0,0,0,21
+217278,0,0,0,21
+217279,0,0,0,21
+217280,0,0,0,21
+217281,0,0,0,21
+217282,0,0,0,21
+217283,0,0,0,21
+217284,0,0,0,21
+217285,0,0,0,21
+217286,0,0,0,21
+217287,0,0,0,21
+217288,0,0,0,21
+217289,0,0,0,21
+217290,0,0,0,21
+217291,0,0,0,21
+217292,0,0,0,21
+217293,0,0,0,21
+217294,0,0,0,21
+217295,0,0,0,21
+217296,0,0,0,21
+217297,0,0,0,21
+217298,0,0,0,21
+217299,0,0,665970.4758,21
+217300,0,368843.4481,0,21
+217301,331510.0271,0,0,21
+217302,0,0,0,21
+217303,0,0,0,21
+217304,0,0,0,21
+217305,0,0,0,21
+217306,0,0,0,21
+217307,0,0,0,21
+217308,0,0,0,21
+217309,0,0,0,21
+217310,0,0,0,21
+217311,0,0,0,21
+217312,0,0,0,21
+217313,0,0,0,21
+217314,0,0,0,21
+217315,0,0,0,21
+217316,0,0,0,21
+217317,0,0,0,21
+217318,0,0,0,21
+217319,0,0,0,21
+217320,0,0,0,15.6
+217321,0,0,0,15.6
+217322,0,0,0,15.6
+217323,0,0,0,15.6
+217324,0,0,0,15.6
+217325,0,0,0,15.6
+217326,0,0,0,15.6
+217327,0,0,0,15.6
+217328,0,0,0,15.6
+217329,0,0,0,15.6
+217330,0,0,0,15.6
+217331,0,0,0,15.6
+217332,0,0,0,15.6
+217333,0,0,0,15.6
+217334,0,0,666437.7749,15.6
+217335,0,368851.4623,0,15.6
+217336,0,0,0,15.6
+217337,335043.1285,0,0,15.6
+217338,0,0,0,15.6
+217339,0,0,0,15.6
+217340,0,0,0,15.6
+217341,0,0,0,15.6
+217342,0,0,0,15.6
+217343,0,0,0,15.6
+217344,0,0,0,15.6
+217345,0,0,0,15.6
+217346,0,0,0,15.6
+217347,0,0,0,15.6
+217348,0,0,0,15.6
+217349,0,0,0,15.6
+217350,0,0,0,15.6
+217351,0,0,0,15.6
+217352,0,0,0,15.6
+217353,0,0,0,15.6
+217354,0,0,0,15.6
+217355,0,0,0,15.6
+217356,0,0,0,15.6
+217357,0,0,0,15.6
+217358,0,0,0,15.6
+217359,0,0,0,15.6
+217360,0,0,0,15.6
+217361,0,0,0,15.6
+217362,0,0,0,15.6
+217363,0,0,0,15.6
+217364,0,0,0,15.6
+217365,0,0,0,15.6
+217366,0,0,0,15.6
+217367,0,0,0,15.6
+217368,0,0,0,15.6
+217369,0,0,665077.9249,15.6
+217370,0,368856.6773,0,15.6
+217371,0,0,0,15.6
+217372,0,0,0,15.6
+217373,337094.6628,0,0,15.6
+217374,0,0,0,15.6
+217375,0,0,0,15.6
+217376,0,0,0,15.6
+217377,0,0,0,15.6
+217378,0,0,0,15.6
+217379,0,0,0,15.6
+217380,0,0,0,15.6
+217381,0,0,0,15.6
+217382,0,0,0,15.6
+217383,0,0,0,15.6
+217384,0,0,0,15.6
+217385,0,0,0,15.6
+217386,0,0,0,15.6
+217387,0,0,0,15.6
+217388,0,0,0,15.6
+217389,0,0,0,15.6
+217390,0,0,0,15.6
+217391,0,0,0,15.6
+217392,0,0,0,15.6
+217393,0,0,0,15.6
+217394,0,0,0,15.6
+217395,0,0,0,15.6
+217396,0,0,0,15.6
+217397,0,0,0,15.6
+217398,0,0,0,15.6
+217399,0,0,0,15.6
+217400,0,0,0,15.6
+217401,0,0,0,15.6
+217402,0,0,0,15.6
+217403,0,0,0,15.6
+217404,0,0,666076.6594,15.6
+217405,0,368861.8681,0,15.6
+217406,0,0,0,15.6
+217407,0,0,0,15.6
+217408,0,0,0,15.6
+217409,332776.7339,0,0,15.6
+217410,0,0,0,15.6
+217411,0,0,0,15.6
+217412,0,0,0,15.6
+217413,0,0,0,15.6
+217414,0,0,0,15.6
+217415,0,0,0,15.6
+217416,0,0,0,15.6
+217417,0,0,0,15.6
+217418,0,0,0,15.6
+217419,0,0,0,15.6
+217420,0,0,0,15.6
+217421,0,0,0,15.6
+217422,0,0,0,15.6
+217423,0,0,0,15.6
+217424,0,0,0,15.6
+217425,0,0,0,15.6
+217426,0,0,0,15.6
+217427,0,0,0,15.6
+217428,0,0,0,15.6
+217429,0,0,0,15.6
+217430,0,0,0,15.6
+217431,0,0,0,15.6
+217432,0,0,0,15.6
+217433,0,0,0,15.6
+217434,0,0,0,15.6
+217435,0,0,0,15.6
+217436,0,0,0,15.6
+217437,0,0,0,15.6
+217438,0,0,0,15.6
+217439,0,0,664872.4098,15.6
+217440,0,368938.5616,0,15.6
+217441,0,0,0,15.6
+217442,0,0,0,15.6
+217443,0,0,0,15.6
+217444,0,0,0,15.6
+217445,335927.5781,0,0,15.6
+217446,0,0,0,15.6
+217447,0,0,0,15.6
+217448,0,0,0,15.6
+217449,0,0,0,15.6
+217450,0,0,0,15.6
+217451,0,0,0,15.6
+217452,0,0,0,15.6
+217453,0,0,0,15.6
+217454,0,0,0,15.6
+217455,0,0,0,15.6
+217456,0,0,0,15.6
+217457,0,0,0,15.6
+217458,0,0,0,15.6
+217459,0,0,0,15.6
+217460,0,0,0,15.6
+217461,0,0,0,15.6
+217462,0,0,0,15.6
+217463,0,0,0,15.6
+217464,0,0,0,15.6
+217465,0,0,0,15.6
+217466,0,0,0,15.6
+217467,0,0,0,15.6
+217468,0,0,0,15.6
+217469,0,0,0,15.6
+217470,0,0,0,15.6
+217471,0,0,0,15.6
+217472,0,0,0,15.6
+217473,0,0,0,15.6
+217474,0,0,665767.618,15.6
+217475,0,368756.4877,0,15.6
+217476,0,0,0,15.6
+217477,0,0,0,15.6
+217478,0,0,0,15.6
+217479,0,0,0,15.6
+217480,0,0,0,15.6
+217481,333510.2109,0,0,15.6
+217482,0,0,0,15.6
+217483,0,0,0,15.6
+217484,0,0,0,15.6
+217485,0,0,0,15.6
+217486,0,0,0,15.6
+217487,0,0,0,15.6
+217488,0,0,0,15.6
+217489,0,0,0,15.6
+217490,0,0,0,15.6
+217491,0,0,0,15.6
+217492,0,0,0,15.6
+217493,0,0,0,15.6
+217494,0,0,0,15.6
+217495,0,0,0,15.6
+217496,0,0,0,15.6
+217497,0,0,0,15.6
+217498,0,0,0,15.6
+217499,0,0,0,15.6
+217500,0,0,0,15.6
+217501,0,0,0,15.6
+217502,0,0,0,15.6
+217503,0,0,0,15.6
+217504,0,0,0,15.6
+217505,0,0,0,15.6
+217506,0,0,0,15.6
+217507,0,0,0,15.6
+217508,0,0,0,15.6
+217509,0,0,664879.598,15.6
+217510,0,368672.0881,0,15.6
+217511,0,0,0,15.6
+217512,0,0,0,15.6
+217513,0,0,0,15.6
+217514,0,0,0,15.6
+217515,0,0,0,15.6
+217516,0,0,0,15.6
+217517,333689.1237,0,0,15.6
+217518,0,0,0,15.6
+217519,0,0,0,15.6
+217520,0,0,0,15.6
+217521,0,0,0,15.6
+217522,0,0,0,15.6
+217523,0,0,0,15.6
+217524,0,0,0,15.6
+217525,0,0,0,15.6
+217526,0,0,0,15.6
+217527,0,0,0,15.6
+217528,0,0,0,15.6
+217529,0,0,0,15.6
+217530,0,0,0,15.6
+217531,0,0,0,15.6
+217532,0,0,0,15.6
+217533,0,0,0,15.6
+217534,0,0,0,15.6
+217535,0,0,0,15.6
+217536,0,0,0,15.6
+217537,0,0,0,15.6
+217538,0,0,0,15.6
+217539,0,0,0,15.6
+217540,0,0,0,15.6
+217541,0,0,0,15.6
+217542,0,0,0,15.6
+217543,0,0,0,15.6
+217544,0,435829.9615,665851.4423,15.6
+217545,0,368785.6437,0,15.6
+217546,0,0,0,15.6
+217547,0,0,0,15.6
+217548,0,0,0,15.6
+217549,0,0,0,15.6
+217550,0,0,0,15.6
+217551,0,0,0,15.6
+217552,0,0,0,15.6
+217553,336126.7041,0,0,15.6
+217554,0,0,0,15.6
+217555,0,0,0,15.6
+217556,0,0,0,15.6
+217557,0,0,0,15.6
+217558,0,0,0,15.6
+217559,0,0,0,15.6
+217560,0,0,0,15.6
+217561,0,0,0,15.6
+217562,0,0,0,15.6
+217563,0,0,0,15.6
+217564,0,0,0,15.6
+217565,0,0,0,15.6
+217566,0,0,0,15.6
+217567,0,0,0,15.6
+217568,0,435776.1768,0,15.6
+217569,0,0,0,15.6
+217570,0,0,0,15.6
+217571,0,0,0,15.6
+217572,0,0,0,15.6
+217573,0,0,0,15.6
+217574,0,0,0,15.6
+217575,0,0,0,15.6
+217576,0,0,0,15.6
+217577,0,0,0,15.6
+217578,0,0,0,15.6
+217579,0,0,664638.7396,15.6
+217580,0,368846.8984,0,15.6
+217581,0,0,0,15.6
+217582,0,0,0,15.6
+217583,0,0,0,15.6
+217584,0,0,0,15.6
+217585,0,0,0,15.6
+217586,0,0,0,15.6
+217587,0,0,0,15.6
+217588,0,0,0,15.6
+217589,332317.8584,0,0,15.6
+217590,0,0,0,15.6
+217591,0,0,0,15.6
+217592,0,435722.2411,0,15.6
+217593,0,0,0,15.6
+217594,0,0,0,15.6
+217595,0,0,0,15.6
+217596,0,0,0,15.6
+217597,0,0,0,15.6
+217598,0,0,0,15.6
+217599,0,0,0,15.6
+217600,0,0,0,15.6
+217601,0,0,0,15.6
+217602,0,0,0,15.6
+217603,0,0,0,15.6
+217604,0,0,0,15.6
+217605,0,0,0,15.6
+217606,0,0,0,15.6
+217607,0,0,0,15.6
+217608,0,0,0,15.6
+217609,0,0,0,15.6
+217610,0,0,0,15.6
+217611,0,0,0,15.6
+217612,0,0,0,15.6
+217613,0,0,665506.4247,15.6
+217614,0,0,0,15.6
+217615,0,368875.0565,0,15.6
+217616,0,435668.7218,0,15.6
+217617,0,0,0,15.6
+217618,0,0,0,15.6
+217619,0,0,0,15.6
+217620,0,0,0,15.6
+217621,0,0,0,15.6
+217622,0,0,0,15.6
+217623,0,0,0,15.6
+217624,0,0,0,15.6
+217625,333639.6934,0,0,15.6
+217626,0,0,0,15.6
+217627,0,0,0,15.6
+217628,0,0,0,15.6
+217629,0,0,0,15.6
+217630,0,0,0,15.6
+217631,0,0,0,15.6
+217632,0,0,0,15.6
+217633,0,0,0,15.6
+217634,0,0,0,15.6
+217635,0,0,0,15.6
+217636,0,0,0,15.6
+217637,0,0,0,15.6
+217638,0,0,0,15.6
+217639,0,0,0,15.6
+217640,0,0,0,15.6
+217641,0,0,0,15.6
+217642,0,0,0,15.6
+217643,0,0,0,15.6
+217644,0,0,0,15.6
+217645,0,0,0,15.6
+217646,0,0,0,15.6
+217647,0,0,663877.1383,15.6
+217648,0,0,0,15.6
+217649,0,0,0,15.6
+217650,0,368835.3763,0,15.6
+217651,0,0,0,15.6
+217652,0,69.87951546,0,15.6
+217653,0,0,0,15.6
+217654,0,0,0,15.6
+217655,0,0,0,15.6
+217656,0,0,0,15.6
+217657,0,0,0,15.6
+217658,0,0,0,15.6
+217659,0,0,0,15.6
+217660,336182.3582,0,0,15.6
+217661,0,0,0,15.6
+217662,0,0,0,15.6
+217663,0,0,0,15.6
+217664,0,0,0,15.6
+217665,0,0,0,15.6
+217666,0,0,0,15.6
+217667,0,0,0,15.6
+217668,0,0,0,15.6
+217669,0,0,0,15.6
+217670,0,0,0,15.6
+217671,0,0,0,15.6
+217672,0,0,0,15.6
+217673,0,0,0,15.6
+217674,0,0,0,15.6
+217675,0,107.1803294,0,15.6
+217676,0,0,0,15.6
+217677,0,0,0,15.6
+217678,0,0,0,15.6
+217679,0,0,0,15.6
+217680,0,0,0,17.8
+217681,0,0,665291.3093,17.8
+217682,0,435655.7063,0,17.8
+217683,0,0,0,17.8
+217684,0,368792.1971,0,17.8
+217685,0,0,0,17.8
+217686,0,0,0,17.8
+217687,0,0,0,17.8
+217688,0,0,0,17.8
+217689,0,0,0,17.8
+217690,0,0,0,17.8
+217691,0,0,0,17.8
+217692,0,0,0,17.8
+217693,0,0,0,17.8
+217694,0,2994.766691,0,17.8
+217695,332721.819,20748.75498,0,17.8
+217696,0,10700.36855,0,17.8
+217697,0,23009.83209,0,17.8
+217698,0,18070.13218,0,17.8
+217699,0,20787.3989,0,17.8
+217700,0,20858.93713,0,17.8
+217701,0,21583.48068,0,17.8
+217702,0,21850.24713,0,17.8
+217703,0,22702.55597,0,17.8
+217704,0,22639.56791,0,17.8
+217705,0,23549.90075,0,17.8
+217706,0,459220.0911,0,17.8
+217707,0,24137.34498,0,17.8
+217708,1903.540359,24461.22437,0,17.8
+217709,1903.540371,24591.58923,0,17.8
+217710,1903.540382,25298.97444,0,17.8
+217711,2283.130338,25366.17922,0,17.8
+217712,2657.146542,25749.90803,0,17.8
+217713,0,25879.10557,0,17.8
+217714,0,26390.24082,0,17.8
+217715,0,26518.87405,663960.3977,17.8
+217716,0,0,0,17.8
+217717,0,0,0,17.8
+217718,0,368784.949,0,17.8
+217719,0,0,0,17.8
+217720,0,0,0,17.8
+217721,0,0,0,17.8
+217722,0,0,0,17.8
+217723,0,0,0,17.8
+217724,0,0,0,17.8
+217725,0,0,0,17.8
+217726,0,0,0,17.8
+217727,0,0,0,17.8
+217728,0,0,0,17.8
+217729,0,0,0,17.8
+217730,332523.3435,435547.5218,0,17.8
+217731,0,0,0,17.8
+217732,0,0,0,17.8
+217733,0,0,0,17.8
+217734,0,0,0,17.8
+217735,0,0,0,17.8
+217736,0,0,0,17.8
+217737,0,0,0,17.8
+217738,0,0,0,17.8
+217739,0,0,0,17.8
+217740,0,0,0,20
+217741,3018.603141,0,0,20
+217742,0,0,0,20
+217743,532.4762735,21676.34837,0,20
+217744,14761.26079,111302.7316,0,20
+217745,37705.83661,73400.47918,0,20
+217746,18608.32789,73805.86822,0,20
+217747,25154.83143,99381.44649,0,20
+217748,26801.3945,93756.67638,0,20
+217749,26682.19693,93056.001,0,20
+217750,42175.52734,94825.15551,0,20
+217751,33526.54624,94759.73375,0,20
+217752,36621.1927,94425.60236,0,20
+217753,37697.16887,94046.85842,517.32331,20
+217754,37167.56116,94050.50044,1080.574345,20
+217755,38033.50467,94041.3505,1013.69466,20
+217756,38158.33376,93840.86698,1038.255985,20
+217757,38130.57559,93581.0381,1125.621664,20
+217758,38759.60653,93995.83054,1182.13641,20
+217759,38887.08249,93417.56316,1237.833324,20
+217760,38923.39058,93491.5594,1266.403876,20
+217761,39408.7789,93280.72772,1321.721086,20
+217762,39453.08679,93480.43666,1350.07348,20
+217763,39724.68003,92889.48147,1405.0291,20
+217764,39791.89146,93019.79414,1446.721604,20
+217765,40375.19751,93007.31952,1473.792442,20
+217766,39909.39533,92770.79362,1515.736344,20
+217767,40722.94735,92253.37282,1556.120811,20
+217768,40796.00069,92780.4093,1611.167343,20
+217769,42536.43499,92250.0528,1597.410219,20
+217770,41532.70862,92166.10786,1692.187323,20
+217771,42294.08286,91448.53092,1692.721106,20
+217772,42011.14357,91461.5889,1746.306593,20
+217773,42317.24593,89259.70698,1773.726335,20
+217774,42376.91001,89058.38639,1677.618615,20
+217775,42362.81074,87922.81878,1663.831493,20
+217776,42536.05612,87242.69285,1690.323949,20
+217777,42485.98491,86886.11635,1675.740706,20
+217778,42492.56829,86013.985,1689.757065,20
+217779,42540.12505,85283.66715,1716.114435,20
+217780,42463.84344,84536.48142,1702.262157,20
+217781,42621.80916,83703.63954,1729.387617,20
+217782,42390.90398,83182.13993,1741.676768,20
+217783,42423.25512,82121.11021,1741.764139,20
+217784,42594.57412,81558.32482,1755.791532,20
+217785,42270.70565,80439.21294,1780.990289,20
+217786,42135.93791,79972.46038,1782.027792,20
+217787,42361.14222,78295.31394,1794.147554,20
+217788,42320.20606,78104.10845,1808.183442,20
+217789,41899.32843,77518.20963,1807.287957,20
+217790,42061.5211,77416.6976,1820.315404,20
+217791,41948.05694,76948.32449,1820.410985,20
+217792,41686.15608,76810.65675,1846.312108,20
+217793,41763.69294,76934.52145,1832.430134,20
+217794,41567.6893,76835.09202,1846.508139,20
+217795,41353.86293,76097.90743,1858.350517,20
+217796,41382.14756,75961.64482,1858.450201,20
+217797,41245.93341,75969.28745,1871.383201,20
+217798,40971.36961,75400.2564,1871.484306,20
+217799,40945.90773,75066.57278,1856.327257,20
+217800,40744.01257,75127.48223,1910.069713,21
+217801,35524.46008,70567.30992,1503.601873,21
+217802,34691.72624,69466.31611,1475.982617,21
+217803,34672.70409,500601.2804,1489.165459,21
+217804,34306.29854,69536.82186,1433.696446,21
+217805,33924.31853,69390.62163,1474.679007,21
+217806,33908.75519,68814.75503,1433.815322,21
+217807,33663.47059,69344.67916,1419.1681,21
+217808,33254.26612,68552.39293,1439.731517,21
+217809,33380.33982,68974.04742,1411.911992,21
+217810,32871.74798,68250.00807,1417.73234,21
+217811,32742.28675,68338.39522,1404.641124,21
+217812,32488.31142,68365.69646,1389.889516,21
+217813,32268.75702,67647.96996,1389.944541,21
+217814,31987.86578,68119.85124,1375.13889,21
+217815,31909.0741,67761.95483,1362.018571,21
+217816,31524.76883,67172.17822,1360.330961,21
+217817,31383.2491,67515.40125,1347.208344,21
+217818,30967.53772,67181.87572,1345.464509,21
+217819,31020.2705,66964.21728,1319.13965,21
+217820,30773.61297,66813.44955,1330.537178,21
+217821,30122.41973,66348.37133,1289.119813,21
+217822,30502.67695,66127.6503,1317.458254,21
+217823,29845.01536,66288.94963,1279.666729,21
+217824,29679.27719,65535.51614,1274.110393,21
+217825,29564.49931,66002.15646,1258.940148,21
+217826,29116.35647,65187.87443,1258.985163,21
+217827,29134.32292,65289.69601,1228.392284,21
+217828,28829.62307,65115.54818,1243.789386,21
+217829,28360.26465,64737.53763,1199.821393,21
+217830,28495.02617,495897.4509,1213.091796,21
+217831,28103.18742,64291.75284,1171.143249,21
+217832,27787.25232,64455.55956,1153.172525,21
+217833,27673.18877,64658.39646,1116.26454,21
+217834,27429.84383,64013.83768,1087.097099,21
+217835,27269.49905,64100.0472,1076.307824,21
+217836,26827.77094,64442.83286,1025.351249,21
+217837,26984.69016,63662.21086,1000.610172,21
+217838,26411.63627,63278.711,983.869342,21
+217839,26421.99049,63662.24724,949.4465338,21
+217840,26187.86202,63333.12565,904.606422,21
+217841,25800.14087,63093.33345,904.6298247,21
+217842,25934.48898,63415.84895,904.653177,21
+217843,25270.28594,62841.53084,891.293904,21
+217844,25425.68901,63075.89636,877.9079968,21
+217845,24871.81871,63222.09822,877.9298977,21
+217846,24996.1362,62822.32537,877.9519797,21
+217847,24482.87317,62712.68558,851.0766444,21
+217848,24398.94836,62790.29737,851.0975012,21
+217849,24241.92022,62893.9905,851.1181488,21
+217850,23812.03193,62465.49823,837.6497916,21
+217851,23815.8335,62654.92905,824.153777,21
+217852,23404.80674,62759.97835,824.1730535,21
+217853,23519.94932,62093.088,797.0776451,21
+217854,22892.59876,62868.50106,810.6670438,21
+217855,22939.47835,62054.47948,783.5147123,21
+217856,22694.60275,62396.62693,783.5320321,21
+217857,22491.96791,62484.14602,769.9211813,21
+217858,22333.37191,62073.86779,769.9382688,21
+217859,21994.32819,62358.0366,742.6122877,21
+217860,21956.03758,62996.99489,742.6278766,21
+217861,353.9015603,27069.19025,0,21
+217862,129.026209,24390.78375,0,21
+217863,102.8240987,23787.94444,0,21
+217864,56.53926149,22707.2442,0,21
+217865,29.04646105,22332.31998,0,21
+217866,0,21785.94542,0,21
+217867,0,21144.07022,0,21
+217868,0,20513.05904,0,21
+217869,0,20024.65008,0,21
+217870,0,19462.16362,0,21
+217871,0,19295.50418,0,21
+217872,0,18144.67096,0,21
+217873,0,18274.82722,0,21
+217874,0,17582.8745,0,21
+217875,0,16517.85376,0,21
+217876,0,15677.14095,0,21
+217877,0,15484.12424,0,21
+217878,0,14866.82993,0,21
+217879,0,14482.00837,0,21
+217880,0,14035.3272,0,21
+217881,0,13346.00432,0,21
+217882,0,13356.42452,0,21
+217883,0,12385.68441,0,21
+217884,0,12722.59204,0,21
+217885,0,11813.69328,0,21
+217886,0,11900.6532,0,21
+217887,0,11000.98858,0,21
+217888,0,11063.97924,0,21
+217889,0,10328.29486,0,21
+217890,0,10038.30796,0,21
+217891,0,9462.209772,0,21
+217892,0,9194.930171,0,21
+217893,0,8227.534437,0,21
+217894,0,8080.662179,0,21
+217895,0,7135.177816,0,21
+217896,0,7067.363762,0,21
+217897,0,5991.823618,0,21
+217898,0,5659.772948,0,21
+217899,0,4828.166575,0,21
+217900,0,4377.803214,0,21
+217901,0,3648.267705,0,21
+217902,0,3015.407797,0,21
+217903,0,2562.00433,0,21
+217904,0,2267.900579,0,21
+217905,0,2139.865788,0,21
+217906,0,1225.986249,0,21
+217907,0,1397.191564,0,21
+217908,0,946.697137,0,21
+217909,0,911.4550094,0,21
+217910,0,828.1831188,0,21
+217911,0,746.6614702,0,21
+217912,0,736.3551642,0,21
+217913,0,611.0377123,0,21
+217914,0,596.6291014,0,21
+217915,0,505.5583101,0,21
+217916,0,454.0998865,0,21
+217917,0,385.0606174,0,21
+217918,0,311.3446539,0,21
+217919,0,270.8457027,0,21
+217920,0,194.4982715,0,21
+217921,0,141.5913412,0,21
+217922,0,141.5913329,0,21
+217923,0,112.6101903,0,21
+217924,0,102.8452934,0,21
+217925,0,93.02134892,0,21
+217926,0,73.17406015,0,21
+217927,0,63.13602338,0,21
+217928,0,42.77681347,0,21
+217929,0,21.90589871,0,21
+217930,0,21.90589865,0,21
+217931,0,0,0,21
+217932,0,0,0,21
+217933,0,0,0,21
+217934,0,0,0,21
+217935,0,0,0,21
+217936,0,0,0,21
+217937,0,0,0,21
+217938,0,0,0,21
+217939,0,0,0,21
+217940,0,0,0,21
+217941,0,0,0,21
+217942,0,0,0,21
+217943,0,0,0,21
+217944,0,0,0,21
+217945,0,0,0,21
+217946,0,0,0,21
+217947,0,0,0,21
+217948,0,0,0,21
+217949,0,0,0,21
+217950,0,0,0,21
+217951,0,0,0,21
+217952,0,0,0,21
+217953,0,0,0,21
+217954,0,0,0,21
+217955,0,0,0,21
+217956,0,0,0,21
+217957,0,0,0,21
+217958,0,0,0,21
+217959,0,0,0,21
+217960,0,0,0,21
+217961,0,0,0,21
+217962,0,0,0,21
+217963,0,0,0,21
+217964,0,0,0,21
+217965,0,0,0,21
+217966,0,0,0,21
+217967,0,0,0,21
+217968,0,0,0,21
+217969,0,0,0,21
+217970,0,0,0,21
+217971,0,0,0,21
+217972,0,0,0,21
+217973,0,0,0,21
+217974,0,0,0,21
+217975,0,0,0,21
+217976,0,0,0,21
+217977,0,0,0,21
+217978,0,0,0,21
+217979,0,0,0,21
+217980,0,0,0,21
+217981,0,0,0,21
+217982,0,0,0,21
+217983,0,0,0,21
+217984,0,0,0,21
+217985,0,0,0,21
+217986,0,0,0,21
+217987,0,0,0,21
+217988,0,0,0,21
+217989,0,0,0,21
+217990,0,0,0,21
+217991,0,0,0,21
+217992,0,0,0,21
+217993,0,0,0,21
+217994,0,0,0,21
+217995,0,0,0,21
+217996,0,0,0,21
+217997,0,0,0,21
+217998,0,0,0,21
+217999,0,0,0,21
+218000,0,0,0,21
+218001,0,0,0,21
+218002,0,0,0,21
+218003,0,0,0,21
+218004,0,0,0,21
+218005,0,0,0,21
+218006,0,0,0,21
+218007,0,0,0,21
+218008,0,0,0,21
+218009,0,0,0,21
+218010,0,0,0,21
+218011,0,0,0,21
+218012,0,0,0,21
+218013,0,0,0,21
+218014,0,0,0,21
+218015,0,0,0,21
+218016,0,0,0,21
+218017,0,0,0,21
+218018,0,0,0,21
+218019,0,0,0,21
+218020,0,0,0,21
+218021,0,0,0,21
+218022,0,0,0,21
+218023,0,0,0,21
+218024,0,0,0,21
+218025,0,0,0,21
+218026,0,0,0,21
+218027,0,0,0,21
+218028,0,0,0,21
+218029,0,0,0,21
+218030,0,0,0,21
+218031,0,0,0,21
+218032,0,0,0,21
+218033,0,0,0,21
+218034,0,0,0,21
+218035,0,0,0,21
+218036,0,0,0,21
+218037,0,0,0,21
+218038,0,0,0,21
+218039,0,0,0,21
+218040,0,0,0,21
+218041,0,0,0,21
+218042,0,0,0,21
+218043,0,0,0,21
+218044,0,0,0,21
+218045,0,0,0,21
+218046,0,0,0,21
+218047,0,0,0,21
+218048,0,0,0,21
+218049,0,0,0,21
+218050,0,0,0,21
+218051,0,0,0,21
+218052,0,0,0,21
+218053,0,0,0,21
+218054,0,0,0,21
+218055,0,0,0,21
+218056,0,0,0,21
+218057,0,0,0,21
+218058,0,0,0,21
+218059,0,0,0,21
+218060,0,0,0,21
+218061,0,0,0,21
+218062,0,0,0,21
+218063,0,0,0,21
+218064,0,0,0,21
+218065,0,0,0,21
+218066,0,0,0,21
+218067,0,0,0,21
+218068,0,0,0,21
+218069,0,0,0,21
+218070,0,0,0,21
+218071,0,0,0,21
+218072,0,0,0,21
+218073,0,0,0,21
+218074,0,0,0,21
+218075,0,0,0,21
+218076,0,0,0,21
+218077,0,0,0,21
+218078,0,0,0,21
+218079,0,0,0,21
+218080,0,0,0,21
+218081,0,0,0,21
+218082,0,0,0,21
+218083,0,0,0,21
+218084,0,0,0,21
+218085,0,0,0,21
+218086,0,0,0,21
+218087,0,0,0,21
+218088,0,0,0,21
+218089,0,0,0,21
+218090,0,0,0,21
+218091,0,0,0,21
+218092,0,0,0,21
+218093,0,0,0,21
+218094,0,0,0,21
+218095,0,0,0,21
+218096,0,0,0,21
+218097,0,0,0,21
+218098,0,0,0,21
+218099,0,0,0,21
+218100,0,0,0,21
+218101,0,0,0,21
+218102,0,0,0,21
+218103,0,0,0,21
+218104,0,0,0,21
+218105,0,0,0,21
+218106,0,0,0,21
+218107,0,0,0,21
+218108,0,0,0,21
+218109,0,0,0,21
+218110,0,0,0,21
+218111,0,0,0,21
+218112,0,0,0,21
+218113,0,0,0,21
+218114,0,0,0,21
+218115,0,0,0,21
+218116,0,0,0,21
+218117,0,0,0,21
+218118,0,0,0,21
+218119,0,0,0,21
+218120,0,0,0,21
+218121,0,0,0,21
+218122,0,0,0,21
+218123,0,0,0,21
+218124,0,0,0,21
+218125,0,0,0,21
+218126,0,0,0,21
+218127,0,0,0,21
+218128,0,0,0,21
+218129,0,0,0,21
+218130,0,0,0,21
+218131,0,0,0,21
+218132,0,0,0,21
+218133,0,0,0,21
+218134,0,0,0,21
+218135,0,0,0,21
+218136,0,0,0,21
+218137,0,0,0,21
+218138,0,0,0,21
+218139,0,0,0,21
+218140,0,0,0,21
+218141,0,0,0,21
+218142,0,0,0,21
+218143,0,0,0,21
+218144,0,0,0,21
+218145,0,0,0,21
+218146,0,0,0,21
+218147,0,0,0,21
+218148,0,0,0,21
+218149,0,0,0,21
+218150,0,0,0,21
+218151,0,0,0,21
+218152,0,0,0,21
+218153,0,0,0,21
+218154,0,0,0,21
+218155,0,0,0,21
+218156,0,0,0,21
+218157,0,0,0,21
+218158,0,0,0,21
+218159,0,0,0,21
+218160,0,0,0,21
+218161,0,0,0,21
+218162,0,0,0,21
+218163,0,0,0,21
+218164,0,0,0,21
+218165,0,0,0,21
+218166,0,0,0,21
+218167,0,0,0,21
+218168,0,0,0,21
+218169,0,0,0,21
+218170,0,0,0,21
+218171,0,0,0,21
+218172,0,0,0,21
+218173,0,0,0,21
+218174,0,0,0,21
+218175,0,0,0,21
+218176,0,0,0,21
+218177,0,0,0,21
+218178,0,0,0,21
+218179,0,0,0,21
+218180,0,0,0,21
+218181,0,0,0,21
+218182,0,0,0,21
+218183,0,0,0,21
+218184,0,0,0,21
+218185,0,0,0,21
+218186,0,0,0,21
+218187,0,0,0,21
+218188,0,0,0,21
+218189,0,0,0,21
+218190,0,0,0,21
+218191,0,0,0,21
+218192,0,0,0,21
+218193,0,0,0,21
+218194,0,0,0,21
+218195,0,0,0,21
+218196,0,0,0,21
+218197,0,0,0,21
+218198,0,0,0,21
+218199,0,0,0,21
+218200,0,0,0,21
+218201,0,0,0,21
+218202,0,0,0,21
+218203,0,0,0,21
+218204,0,0,0,21
+218205,0,0,0,21
+218206,0,0,0,21
+218207,0,0,0,21
+218208,0,0,0,21
+218209,0,0,0,21
+218210,0,0,0,21
+218211,0,0,0,21
+218212,0,0,0,21
+218213,0,0,0,21
+218214,0,0,0,21
+218215,0,0,0,21
+218216,0,0,0,21
+218217,0,0,0,21
+218218,0,0,0,21
+218219,0,0,0,21
+218220,0,0,0,21
+218221,0,0,0,21
+218222,0,0,0,21
+218223,0,0,0,21
+218224,0,0,0,21
+218225,0,0,0,21
+218226,0,0,0,21
+218227,0,0,0,21
+218228,0,0,0,21
+218229,0,0,0,21
+218230,0,0,0,21
+218231,0,0,0,21
+218232,0,0,0,21
+218233,0,0,0,21
+218234,0,0,0,21
+218235,0,0,0,21
+218236,0,0,0,21
+218237,0,0,0,21
+218238,0,0,0,21
+218239,0,0,0,21
+218240,0,0,0,21
+218241,0,0,0,21
+218242,0,0,0,21
+218243,0,0,0,21
+218244,0,0,0,21
+218245,0,0,0,21
+218246,0,0,0,21
+218247,0,0,0,21
+218248,0,0,0,21
+218249,0,0,0,21
+218250,0,0,0,21
+218251,0,0,0,21
+218252,0,0,0,21
+218253,0,0,0,21
+218254,0,0,0,21
+218255,0,0,0,21
+218256,0,0,0,21
+218257,0,0,0,21
+218258,0,0,0,21
+218259,0,0,0,21
+218260,0,0,0,21
+218261,0,0,0,21
+218262,0,0,0,21
+218263,0,0,0,21
+218264,0,0,0,21
+218265,0,0,0,21
+218266,0,0,0,21
+218267,0,0,0,21
+218268,0,0,0,21
+218269,0,0,0,21
+218270,0,0,0,21
+218271,0,0,0,21
+218272,0,0,0,21
+218273,0,0,0,21
+218274,0,0,0,21
+218275,0,0,0,21
+218276,0,0,0,21
+218277,0,0,0,21
+218278,0,0,0,21
+218279,0,0,0,21
+218280,0,0,0,21
+218281,0,0,0,21
+218282,0,0,0,21
+218283,0,0,0,21
+218284,0,0,0,21
+218285,0,0,0,21
+218286,0,0,0,21
+218287,0,0,0,21
+218288,0,0,0,21
+218289,0,0,0,21
+218290,0,0,0,21
+218291,0,0,0,21
+218292,0,0,0,21
+218293,0,0,0,21
+218294,0,0,0,21
+218295,0,0,0,21
+218296,0,0,0,21
+218297,0,0,0,21
+218298,0,0,0,21
+218299,0,0,0,21
+218300,0,0,0,21
+218301,0,0,0,21
+218302,0,0,0,21
+218303,0,0,0,21
+218304,0,0,0,21
+218305,0,0,0,21
+218306,0,0,0,21
+218307,0,0,0,21
+218308,0,0,0,21
+218309,0,0,0,21
+218310,0,0,0,21
+218311,0,0,0,21
+218312,0,0,0,21
+218313,0,0,0,21
+218314,0,0,0,21
+218315,0,0,0,21
+218316,0,0,0,21
+218317,0,0,0,21
+218318,0,0,0,21
+218319,0,0,0,21
+218320,0,0,0,21
+218321,0,0,0,21
+218322,0,0,0,21
+218323,0,0,0,21
+218324,0,0,0,21
+218325,0,0,0,21
+218326,0,0,0,21
+218327,0,0,0,21
+218328,0,0,0,21
+218329,0,0,0,21
+218330,0,0,0,21
+218331,0,0,0,21
+218332,0,0,0,21
+218333,0,0,0,21
+218334,0,0,0,21
+218335,0,0,0,21
+218336,0,0,0,21
+218337,0,0,0,21
+218338,0,0,0,21
+218339,0,0,0,21
+218340,0,0,0,21
+218341,0,0,0,21
+218342,0,0,0,21
+218343,0,0,0,21
+218344,0,0,0,21
+218345,0,0,0,21
+218346,0,0,0,21
+218347,0,0,0,21
+218348,0,0,0,21
+218349,0,0,0,21
+218350,0,0,0,21
+218351,0,0,0,21
+218352,0,0,0,21
+218353,0,0,0,21
+218354,0,0,0,21
+218355,0,0,0,21
+218356,0,0,0,21
+218357,0,0,0,21
+218358,0,0,0,21
+218359,0,0,0,21
+218360,0,0,0,21
+218361,0,0,0,21
+218362,0,0,0,21
+218363,0,0,0,21
+218364,0,0,0,21
+218365,0,0,0,21
+218366,0,0,0,21
+218367,0,0,0,21
+218368,0,0,0,21
+218369,0,0,0,21
+218370,0,0,0,21
+218371,0,0,0,21
+218372,0,0,0,21
+218373,0,0,0,21
+218374,0,0,0,21
+218375,0,0,0,21
+218376,0,0,0,21
+218377,0,0,0,21
+218378,0,0,0,21
+218379,0,0,0,21
+218380,0,0,0,21
+218381,0,0,0,21
+218382,0,0,0,21
+218383,0,0,0,21
+218384,0,0,0,21
+218385,0,0,0,21
+218386,0,0,0,21
+218387,0,0,0,21
+218388,0,0,0,21
+218389,0,0,0,21
+218390,0,0,0,21
+218391,0,0,0,21
+218392,0,0,0,21
+218393,0,0,0,21
+218394,0,0,0,21
+218395,0,0,0,21
+218396,0,0,0,21
+218397,0,0,0,21
+218398,0,0,0,21
+218399,0,0,0,21
+218400,0,0,0,21
+218401,0,0,0,21
+218402,0,0,0,21
+218403,0,0,0,21
+218404,0,0,0,21
+218405,0,0,0,21
+218406,0,0,0,21
+218407,0,0,0,21
+218408,0,0,0,21
+218409,0,0,0,21
+218410,0,0,0,21
+218411,0,0,0,21
+218412,0,0,0,21
+218413,0,0,0,21
+218414,0,0,0,21
+218415,0,0,0,21
+218416,0,0,0,21
+218417,0,0,0,21
+218418,0,0,0,21
+218419,0,0,0,21
+218420,0,0,0,21
+218421,0,0,0,21
+218422,0,0,0,21
+218423,0,0,0,21
+218424,0,0,0,21
+218425,0,0,0,21
+218426,0,0,0,21
+218427,0,0,0,21
+218428,0,0,0,21
+218429,0,0,0,21
+218430,0,0,0,21
+218431,0,0,0,21
+218432,0,0,0,21
+218433,0,0,0,21
+218434,0,0,0,21
+218435,0,0,0,21
+218436,0,0,0,21
+218437,0,0,0,21
+218438,0,0,0,21
+218439,0,0,0,21
+218440,0,0,0,21
+218441,0,0,0,21
+218442,0,0,0,21
+218443,0,0,0,21
+218444,0,0,0,21
+218445,0,0,0,21
+218446,0,0,0,21
+218447,0,0,0,21
+218448,0,0,0,21
+218449,0,0,0,21
+218450,0,0,0,21
+218451,0,0,0,21
+218452,0,0,0,21
+218453,0,0,0,21
+218454,0,0,0,21
+218455,0,0,0,21
+218456,0,0,0,21
+218457,0,0,0,21
+218458,0,0,0,21
+218459,0,0,0,21
+218460,0,0,0,21
+218461,0,0,0,21
+218462,0,0,0,21
+218463,0,0,0,21
+218464,0,0,0,21
+218465,0,0,0,21
+218466,0,0,0,21
+218467,0,0,0,21
+218468,0,0,0,21
+218469,0,0,0,21
+218470,0,0,0,21
+218471,0,0,0,21
+218472,0,0,0,21
+218473,0,0,0,21
+218474,0,0,0,21
+218475,0,0,0,21
+218476,0,0,0,21
+218477,0,0,0,21
+218478,0,0,0,21
+218479,0,0,0,21
+218480,0,0,0,21
+218481,0,0,0,21
+218482,0,0,0,21
+218483,0,0,0,21
+218484,0,0,0,21
+218485,0,0,0,21
+218486,0,0,0,21
+218487,0,0,0,21
+218488,0,0,0,21
+218489,0,0,0,21
+218490,0,0,0,21
+218491,0,0,0,21
+218492,0,0,0,21
+218493,0,0,0,21
+218494,0,0,0,21
+218495,0,0,0,21
+218496,0,0,0,21
+218497,0,0,0,21
+218498,0,0,0,21
+218499,0,0,0,21
+218500,0,0,0,21
+218501,0,0,0,21
+218502,0,0,0,21
+218503,0,0,0,21
+218504,0,0,0,21
+218505,0,0,0,21
+218506,0,0,0,21
+218507,0,0,0,21
+218508,0,0,0,21
+218509,0,0,0,21
+218510,0,0,0,21
+218511,0,0,0,21
+218512,0,0,0,21
+218513,0,0,0,21
+218514,0,0,0,21
+218515,0,0,0,21
+218516,0,0,0,21
+218517,0,0,0,21
+218518,0,0,0,21
+218519,0,0,0,21
+218520,0,0,0,21
+218521,0,0,0,21
+218522,0,0,0,21
+218523,0,0,0,21
+218524,0,0,0,21
+218525,0,0,0,21
+218526,0,0,0,21
+218527,0,0,0,21
+218528,0,0,0,21
+218529,0,0,0,21
+218530,0,0,0,21
+218531,0,0,0,21
+218532,0,0,0,21
+218533,0,0,0,21
+218534,0,0,0,21
+218535,0,0,0,21
+218536,0,0,0,21
+218537,0,0,0,21
+218538,0,0,0,21
+218539,0,0,0,21
+218540,0,0,0,21
+218541,0,0,0,21
+218542,0,0,0,21
+218543,0,0,0,21
+218544,0,0,0,21
+218545,0,0,0,21
+218546,0,0,0,21
+218547,0,0,0,21
+218548,0,0,0,21
+218549,0,0,0,21
+218550,0,0,0,21
+218551,0,0,0,21
+218552,0,0,0,21
+218553,0,0,0,21
+218554,0,0,0,21
+218555,0,0,0,21
+218556,0,0,0,21
+218557,0,0,0,21
+218558,0,0,0,21
+218559,0,0,0,21
+218560,0,0,0,21
+218561,0,0,0,21
+218562,0,0,0,21
+218563,0,0,0,21
+218564,0,0,0,21
+218565,0,0,0,21
+218566,0,0,0,21
+218567,0,0,0,21
+218568,0,0,0,21
+218569,0,0,0,21
+218570,0,0,0,21
+218571,0,0,0,21
+218572,0,0,0,21
+218573,0,0,0,21
+218574,0,0,0,21
+218575,0,1361.697496,0,21
+218576,0,1118.438851,0,21
+218577,0,1361.697498,0,21
+218578,0,1681.335137,0,21
+218579,0,1839.39686,0,21
+218580,0,1996.404251,0,21
+218581,0,2767.77912,0,21
+218582,0,2767.779196,0,21
+218583,0,3221.266831,0,21
+218584,0,3070.801758,0,21
+218585,0,3520.237566,0,21
+218586,0,3520.237694,0,21
+218587,0,3668.789193,0,21
+218588,0,3816.745643,0,21
+218589,0,3964.12568,0,21
+218590,0,4110.946556,0,21
+218591,0,4257.224286,0,21
+218592,0,4402.973783,0,21
+218593,0,4548.20897,0,21
+218594,0,4807.885366,0,21
+218595,0,4807.885609,0,21
+218596,0,4962.038875,0,21
+218597,0,5268.769152,0,21
+218598,0,5154.620761,0,21
+218599,0,5592.79709,0,21
+218600,0,5479.083841,0,21
+218601,0,5772.932316,0,21
+218602,0,5933.350562,0,21
+218603,0,6093.22659,0,21
+218604,0,6111.879011,0,21
+218605,0,6411.411157,0,21
+218606,0,6429.853362,0,21
+218607,0,6569.746629,0,21
+218608,0,6745.843806,0,21
+218609,0,6903.122547,0,21
+218610,0,7123.687747,0,21
+218611,0,7278.479114,0,21
+218612,0,7530.955837,0,21
+218613,0,7581.80351,0,21
+218614,0,7775.683431,0,21
+218615,0,7959.93397,0,21
+218616,0,8143.532172,0,21
+218617,0,8308.883371,0,21
+218618,0,8372.627796,0,21
+218619,0,8644.774768,0,21
+218620,0,8732.915249,0,21
+218621,0,8880.547862,0,21
+218622,0,9080.420638,0,21
+218623,0,9652.000672,0,21
+218624,0,11212.19552,0,21
+218625,0,11008.57805,0,21
+218626,0,11190.8819,0,21
+218627,0,12090.6839,0,21
+218628,0,12275.53459,0,21
+218629,0,12524.44443,0,21
+218630,0,13088.90671,0,21
+218631,0,13218.25031,0,21
+218632,0,13894.23032,0,21
+218633,0,14011.26877,0,21
+218634,0,14345.92671,0,21
+218635,0,15049.53946,0,21
+218636,0,14999.15659,0,21
+218637,0,15623.41873,0,21
+218638,0,15673.35876,0,21
+218639,0,16397.68719,0,21
+218640,0,16665.07271,0,21
+218641,0,16724.12663,0,21
+218642,0,17588.01156,0,21
+218643,0,17868.63013,0,21
+218644,0,18271.02783,0,21
+218645,0,18653.58814,0,21
+218646,0,19272.07587,0,21
+218647,0,19459.155,0,21
+218648,0,20064.47621,0,21
+218649,581.3601691,20434.70817,0,21
+218650,855.2931778,20836.15346,0,21
+218651,855.2931687,21220.37774,0,21
+218652,990.0038322,21612.51998,0,21
+218653,1123.457866,22198.59476,0,21
+218654,1255.785252,22391.67842,0,21
+218655,1387.088898,22967.45319,0,21
+218656,1517.452478,23126.08875,0,21
+218657,1517.452481,23847.09666,0,21
+218658,1775.626047,24032.21641,0,21
+218659,1775.626042,24558.24133,0,21
+218660,2030.74484,24906.30828,0,21
+218661,2030.744853,25431.83843,0,21
+218662,2157.264321,25868.39774,0,21
+218663,2283.136775,26066.17873,0,21
+218664,2283.136751,26594.7037,0,21
+218665,2533.056817,26846.65328,0,21
+218666,2657.155371,27513.55806,0,21
+218667,2657.155377,27716.73876,0,21
+218668,2780.709474,28139.25999,0,21
+218669,2903.739078,28450.25182,0,21
+218670,2903.739097,29096.33103,0,21
+218671,3148.296298,29057.15487,0,21
+218672,3148.296283,29730.56334,0,21
+218673,3390.956056,30000.84919,0,21
+218674,3269.856021,30532.50404,0,21
+218675,3511.609512,30732.62414,0,21
+218676,3631.828885,31192.12609,0,21
+218677,3631.828883,31330.75128,0,21
+218678,3751.625643,32093.82269,0,21
+218679,3871.010605,32048.65135,0,21
+218680,3871.010594,32725.48639,0,21
+218681,4108.584974,33081.98349,0,21
+218682,4108.584978,33081.97879,0,21
+218683,4108.584963,34011.47458,0,21
+218684,4344.626093,33830.76577,0,21
+218685,4462.092557,34500.92596,0,21
+218686,4344.626088,34741.48819,0,21
+218687,4579.199877,35086.00664,0,21
+218688,4695.955241,35437.84993,0,21
+218689,4695.955238,36110.02373,0,21
+218690,4812.365453,35849.14499,0,21
+218691,4928.437077,36681.79368,0,21
+218692,4928.437055,36846.44488,0,21
+218693,5044.176208,37390.63083,0,21
+218694,5274.680568,37598.98976,0,21
+218695,5044.176214,37868.43063,0,21
+218696,5503.922659,38537.41825,0,21
+218697,5274.680549,38785.18027,0,21
+218698,5503.922648,39063.78388,0,21
+218699,5503.922638,39492.50296,0,21
+218700,5731.942937,39536.91646,0,21
+218701,0,0,0,21
+218702,0,0,0,21
+218703,0,0,0,21
+218704,0,0,0,21
+218705,0,368295.2081,673440.425,21
+218706,333510.3038,0,0,21
+218707,0,0,0,21
+218708,0,0,0,21
+218709,0,0,0,21
+218710,0,0,0,21
+218711,0,0,0,21
+218712,0,0,0,21
+218713,0,0,0,21
+218714,0,0,0,21
+218715,0,0,0,21
+218716,0,0,0,21
+218717,0,0,0,21
+218718,0,0,0,21
+218719,0,0,0,21
+218720,0,0,0,21
+218721,0,0,0,21
+218722,0,0,0,21
+218723,0,0,0,21
+218724,0,0,0,21
+218725,0,0,0,21
+218726,0,0,0,21
+218727,0,0,0,21
+218728,0,0,0,21
+218729,0,0,0,21
+218730,0,0,0,21
+218731,0,0,0,21
+218732,0,0,0,21
+218733,0,0,0,21
+218734,0,0,0,21
+218735,0,0,0,21
+218736,0,0,0,21
+218737,0,0,0,21
+218738,0,0,0,21
+218739,0,368760.787,673129.6205,21
+218740,0,0,0,21
+218741,333870.5977,0,0,21
+218742,0,0,0,21
+218743,0,0,0,21
+218744,0,0,0,21
+218745,0,0,0,21
+218746,0,0,0,21
+218747,0,0,0,21
+218748,0,0,0,21
+218749,0,0,0,21
+218750,0,0,0,21
+218751,0,0,0,21
+218752,0,0,0,21
+218753,0,0,0,21
+218754,0,0,0,21
+218755,0,0,0,21
+218756,0,0,0,21
+218757,0,0,0,21
+218758,0,0,0,21
+218759,0,0,0,21
+218760,0,0,0,15.6
+218761,0,0,0,15.6
+218762,0,0,0,15.6
+218763,0,0,0,15.6
+218764,0,0,0,15.6
+218765,0,0,0,15.6
+218766,0,0,0,15.6
+218767,0,0,0,15.6
+218768,0,0,0,15.6
+218769,0,0,0,15.6
+218770,0,0,0,15.6
+218771,0,0,0,15.6
+218772,0,0,0,15.6
+218773,0,0,672844.2363,15.6
+218774,0,368824.077,0,15.6
+218775,0,0,0,15.6
+218776,334247.2169,0,0,15.6
+218777,0,0,0,15.6
+218778,0,0,0,15.6
+218779,0,0,0,15.6
+218780,0,0,0,15.6
+218781,0,0,0,15.6
+218782,0,0,0,15.6
+218783,0,0,0,15.6
+218784,0,0,0,15.6
+218785,0,0,0,15.6
+218786,0,0,0,15.6
+218787,0,0,0,15.6
+218788,0,0,0,15.6
+218789,0,0,0,15.6
+218790,0,0,0,15.6
+218791,0,0,0,15.6
+218792,0,0,0,15.6
+218793,0,0,0,15.6
+218794,0,0,0,15.6
+218795,0,0,0,15.6
+218796,0,0,0,15.6
+218797,0,0,0,15.6
+218798,0,0,0,15.6
+218799,0,80.37112036,0,15.6
+218800,0,0,0,15.6
+218801,0,0,0,15.6
+218802,0,0,0,15.6
+218803,0,81.59952521,0,15.6
+218804,0,0,0,15.6
+218805,0,0,0,15.6
+218806,0,0,0,15.6
+218807,0,78.71596464,672576.9955,15.6
+218808,0,0,0,15.6
+218809,0,368849.5472,0,15.6
+218810,0,0,0,15.6
+218811,335832.9532,74.2356464,0,15.6
+218812,0,0,0,15.6
+218813,0,0,0,15.6
+218814,0,0,0,15.6
+218815,0,0,0,15.6
+218816,0,66.13933523,0,15.6
+218817,0,0,0,15.6
+218818,0,0,0,15.6
+218819,0,0,0,15.6
+218820,0,0,0,15.6
+218821,0,0,0,15.6
+218822,0,0,0,15.6
+218823,0,434982.1528,0,15.6
+218824,0,0,0,15.6
+218825,0,0,0,15.6
+218826,0,0,0,15.6
+218827,0,0,0,15.6
+218828,0,0,0,15.6
+218829,0,0,0,15.6
+218830,0,0,0,15.6
+218831,0,0,0,15.6
+218832,0,0,0,15.6
+218833,0,434687.0386,0,15.6
+218834,0,0,0,15.6
+218835,0,0,0,15.6
+218836,0,0,0,15.6
+218837,0,0,0,15.6
+218838,0,0,0,15.6
+218839,0,0,0,15.6
+218840,0,0,0,15.6
+218841,0,0,673345.6552,15.6
+218842,0,0,0,15.6
+218843,0,434642.0885,0,15.6
+218844,0,368840.0075,0,15.6
+218845,0,0,0,15.6
+218846,335063.5144,0,0,15.6
+218847,0,0,0,15.6
+218848,0,0,0,15.6
+218849,0,0,0,15.6
+218850,0,0,0,15.6
+218851,0,0,0,15.6
+218852,0,0,0,15.6
+218853,0,434623.5758,0,15.6
+218854,0,0,0,15.6
+218855,0,0,0,15.6
+218856,0,0,0,15.6
+218857,0,0,0,15.6
+218858,0,0,0,15.6
+218859,0,0,0,15.6
+218860,0,0,0,15.6
+218861,0,0,0,15.6
+218862,0,0,0,15.6
+218863,0,434605.0757,0,15.6
+218864,0,0,0,15.6
+218865,0,0,0,15.6
+218866,0,0,0,15.6
+218867,0,0,0,15.6
+218868,0,0,0,15.6
+218869,0,0,0,15.6
+218870,0,0,0,15.6
+218871,0,0,0,15.6
+218872,0,0,0,15.6
+218873,0,434586.4096,0,15.6
+218874,0,0,0,15.6
+218875,0,0,672112.9346,15.6
+218876,0,0,0,15.6
+218877,0,0,0,15.6
+218878,0,0,0,15.6
+218879,0,368817.5921,0,15.6
+218880,0,0,0,15.6
+218881,336623.8985,0,0,15.6
+218882,0,0,0,15.6
+218883,0,434567.5477,0,15.6
+218884,0,0,0,15.6
+218885,0,0,0,15.6
+218886,0,0,0,15.6
+218887,0,0,0,15.6
+218888,0,0,0,15.6
+218889,0,0,0,15.6
+218890,0,0,0,15.6
+218891,0,0,0,15.6
+218892,0,0,0,15.6
+218893,0,434549.0111,0,15.6
+218894,0,0,0,15.6
+218895,0,0,0,15.6
+218896,0,0,0,15.6
+218897,0,0,0,15.6
+218898,0,0,0,15.6
+218899,0,0,0,15.6
+218900,0,0,0,15.6
+218901,0,0,0,15.6
+218902,0,0,0,15.6
+218903,0,0,0,15.6
+218904,0,434755.1356,0,15.6
+218905,0,0,0,15.6
+218906,0,0,0,15.6
+218907,0,0,0,15.6
+218908,0,0,0,15.6
+218909,0,0,671952.9827,15.6
+218910,0,0,0,15.6
+218911,0,0,0,15.6
+218912,0,0,0,15.6
+218913,0,0,0,15.6
+218914,0,368799.8242,0,15.6
+218915,0,0,0,15.6
+218916,335363.6419,434763.6407,0,15.6
+218917,0,0,0,15.6
+218918,0,0,0,15.6
+218919,0,0,0,15.6
+218920,0,0,0,15.6
+218921,0,0,0,15.6
+218922,0,0,0,15.6
+218923,0,0,0,15.6
+218924,0,0,0,15.6
+218925,0,0,0,15.6
+218926,0,0,0,15.6
+218927,0,0,0,15.6
+218928,0,0,0,15.6
+218929,0,434743.5353,0,15.6
+218930,0,0,0,15.6
+218931,0,0,0,15.6
+218932,0,0,0,15.6
+218933,0,0,0,15.6
+218934,0,0,0,15.6
+218935,0,0,0,15.6
+218936,0,0,0,15.6
+218937,0,0,0,15.6
+218938,0,0,0,15.6
+218939,0,434488.8906,0,15.6
+218940,0,0,0,15.6
+218941,0,0,0,15.6
+218942,0,0,0,15.6
+218943,0,0,672643.4041,15.6
+218944,0,0,0,15.6
+218945,0,0,0,15.6
+218946,0,0,0,15.6
+218947,0,0,0,15.6
+218948,0,0,0,15.6
+218949,0,368772.6382,0,15.6
+218950,0,0,0,15.6
+218951,336046.8873,0,0,15.6
+218952,0,434721.7066,0,15.6
+218953,0,0,0,15.6
+218954,0,0,0,15.6
+218955,0,0,0,15.6
+218956,0,0,0,15.6
+218957,0,0,0,15.6
+218958,0,0,0,15.6
+218959,0,0,0,15.6
+218960,0,0,0,15.6
+218961,0,0,0,15.6
+218962,0,0,0,15.6
+218963,0,434684.9048,0,15.6
+218964,0,0,0,15.6
+218965,0,0,0,15.6
+218966,0,0,0,15.6
+218967,0,0,0,15.6
+218968,0,0,0,15.6
+218969,0,0,0,15.6
+218970,0,0,0,15.6
+218971,0,0,0,15.6
+218972,0,0,0,15.6
+218973,0,0,0,15.6
+218974,0,0,0,15.6
+218975,0,434713.9501,0,15.6
+218976,0,0,0,15.6
+218977,0,0,672296.4454,15.6
+218978,0,0,0,15.6
+218979,0,0,0,15.6
+218980,0,0,0,15.6
+218981,0,0,0,15.6
+218982,0,0,0,15.6
+218983,0,0,0,15.6
+218984,0,368727.5734,0,15.6
+218985,0,434492.8583,0,15.6
+218986,337433.2602,0,0,15.6
+218987,0,0,0,15.6
+218988,0,0,0,15.6
+218989,0,0,0,15.6
+218990,0,0,0,15.6
+218991,0,0,0,15.6
+218992,0,0,0,15.6
+218993,0,0,0,15.6
+218994,0,0,0,15.6
+218995,0,0,0,15.6
+218996,0,0,0,15.6
+218997,0,0,0,15.6
+218998,0,434721.7183,0,15.6
+218999,0,0,0,15.6
+219000,0,0,0,15.6
+219001,0,0,0,15.6
+219002,0,0,0,15.6
+219003,0,0,0,15.6
+219004,0,0,0,15.6
+219005,0,0,0,15.6
+219006,0,0,0,15.6
+219007,0,0,0,15.6
+219008,0,0,0,15.6
+219009,0,434661.1735,0,15.6
+219010,0,0,0,15.6
+219011,0,0,0,15.6
+219012,0,0,672550.5638,15.6
+219013,0,0,0,15.6
+219014,0,0,0,15.6
+219015,0,0,0,15.6
+219016,0,0,0,15.6
+219017,0,0,0,15.6
+219018,0,0,0,15.6
+219019,0,368704.6903,0,15.6
+219020,0,0,0,15.6
+219021,0,0,0,15.6
+219022,335662.5051,434669.9685,0,15.6
+219023,0,0,0,15.6
+219024,0,0,0,15.6
+219025,0,0,0,15.6
+219026,0,0,0,15.6
+219027,0,0,0,15.6
+219028,0,0,0,15.6
+219029,0,0,0,15.6
+219030,0,0,0,15.6
+219031,0,0,0,15.6
+219032,0,0,0,15.6
+219033,0,434608.9396,0,15.6
+219034,0,0,0,15.6
+219035,0,0,0,15.6
+219036,0,0,0,15.6
+219037,0,0,0,15.6
+219038,0,0,0,15.6
+219039,0,0,0,15.6
+219040,0,0,0,15.6
+219041,0,0,0,15.6
+219042,0,0,0,15.6
+219043,0,434389.7667,0,15.6
+219044,0,0,0,15.6
+219045,0,0,0,15.6
+219046,0,0,0,15.6
+219047,0,0,672604.7846,15.6
+219048,0,0,0,15.6
+219049,0,0,0,15.6
+219050,0,0,0,15.6
+219051,0,0,0,15.6
+219052,0,0,0,15.6
+219053,0,0,0,15.6
+219054,0,368703.1655,0,15.6
+219055,0,0,0,15.6
+219056,0,434594.3083,0,15.6
+219057,0,0,0,15.6
+219058,337063.4792,0,0,15.6
+219059,0,0,0,15.6
+219060,0,0,0,15.6
+219061,0,0,0,15.6
+219062,0,0,0,15.6
+219063,0,0,0,15.6
+219064,0,0,0,15.6
+219065,0,0,0,15.6
+219066,0,434380.1701,0,15.6
+219067,0,0,0,15.6
+219068,0,0,0,15.6
+219069,0,0,0,15.6
+219070,0,0,0,15.6
+219071,0,0,0,15.6
+219072,0,0,0,15.6
+219073,0,0,0,15.6
+219074,0,0,0,15.6
+219075,0,0,0,15.6
+219076,0,434354.8716,0,15.6
+219077,0,0,0,15.6
+219078,0,0,0,15.6
+219079,0,0,0,15.6
+219080,0,0,0,15.6
+219081,0,0,672637.1346,15.6
+219082,0,0,0,15.6
+219083,0,0,0,15.6
+219084,0,0,0,15.6
+219085,0,0,0,15.6
+219086,0,434355.1788,0,15.6
+219087,0,0,0,15.6
+219088,0,0,0,15.6
+219089,0,368687.3793,0,15.6
+219090,0,0,0,15.6
+219091,0,0,0,15.6
+219092,337479.7971,0,0,15.6
+219093,0,0,0,15.6
+219094,0,0,0,15.6
+219095,0,0,0,15.6
+219096,0,0,0,15.6
+219097,0,434550.0164,0,15.6
+219098,0,0,0,15.6
+219099,0,0,0,15.6
+219100,0,0,0,15.6
+219101,0,0,0,15.6
+219102,0,0,0,15.6
+219103,0,0,0,15.6
+219104,0,0,0,15.6
+219105,0,0,0,15.6
+219106,0,0,0,15.6
+219107,0,0,0,15.6
+219108,0,434551.7184,0,15.6
+219109,0,0,0,15.6
+219110,0,0,0,15.6
+219111,0,0,0,15.6
+219112,0,0,0,15.6
+219113,0,0,0,15.6
+219114,0,0,0,15.6
+219115,0,0,673101.4061,15.6
+219116,0,0,0,15.6
+219117,0,0,0,15.6
+219118,0,0,0,15.6
+219119,0,434551.79,0,15.6
+219120,0,0,0,17.8
+219121,0,5562.26437,0,17.8
+219122,0,0,0,17.8
+219123,0,368670.1784,0,17.8
+219124,0,0,0,17.8
+219125,0,1292.428148,0,17.8
+219126,336051.7493,566.4416271,0,17.8
+219127,0,0,0,17.8
+219128,0,0,0,17.8
+219129,0,0,0,17.8
+219130,0,434551.8923,0,17.8
+219131,0,0,0,17.8
+219132,0,0,0,17.8
+219133,0,0,0,17.8
+219134,0,0,0,17.8
+219135,0,0,0,17.8
+219136,0,0,0,17.8
+219137,0,0,0,17.8
+219138,0,0,0,17.8
+219139,0,0,0,17.8
+219140,0,0,0,17.8
+219141,0,4.01491838,0,17.8
+219142,0,434581.4366,0,17.8
+219143,0,0,0,17.8
+219144,0,0,0,17.8
+219145,0,0,0,17.8
+219146,0,0,0,17.8
+219147,0,0,0,17.8
+219148,0,0,0,17.8
+219149,0,0,673017.501,17.8
+219150,0,0,0,17.8
+219151,0,0,0,17.8
+219152,0,0,0,17.8
+219153,0,434553.5261,0,17.8
+219154,0,0,0,17.8
+219155,0,0,0,17.8
+219156,0,0,0,17.8
+219157,0,368680.7072,0,17.8
+219158,0,0,0,17.8
+219159,0,0,0,17.8
+219160,337281.6117,0,0,17.8
+219161,0,90.55113486,0,17.8
+219162,0,112.0266373,0,17.8
+219163,0,68.76769016,0,17.8
+219164,0,90.55113511,0,17.8
+219165,0,68.76769026,0,17.8
+219166,0,90.55113528,0,17.8
+219167,0,68.76769037,0,17.8
+219168,0,90.55113545,0,17.8
+219169,0,29488.77611,0,17.8
+219170,0,27107.34638,0,17.8
+219171,0,23662.01514,0,17.8
+219172,0,42901.62804,0,17.8
+219173,0,32624.7703,0,17.8
+219174,0,36233.18941,0,17.8
+219175,0,35982.48526,0,17.8
+219176,0,36233.18911,0,17.8
+219177,0,36056.48363,0,17.8
+219178,0,36056.48349,0,17.8
+219179,0,35879.49309,0,17.8
+219180,0,35628.78897,0,20
+219181,13641.19952,657048.8531,673709.9837,20
+219182,0,7928.206339,0,20
+219183,0,19559.47747,0,20
+219184,109.052114,87325.26246,0,20
+219185,2151.09212,153013.4169,0,20
+219186,1845.282742,90186.13599,305.0328976,20
+219187,3663.966603,105441.8404,2312.725214,20
+219188,10121.15238,105652.0599,967.9859649,20
+219189,5741.142571,105571.6048,3037.290137,20
+219190,7279.093417,104878.182,2256.066611,20
+219191,7137.867104,105302.666,8053.692801,20
+219192,7395.617166,104601.5325,5680.204411,20
+219193,7154.017377,104552.1866,6510.995273,20
+219194,7297.72678,104278.2145,6890.551192,20
+219195,7284.11595,103796.3271,7167.811437,20
+219196,7184.664145,104011.1961,7406.326655,20
+219197,7328.114417,103861.7225,7681.51533,20
+219198,7299.848063,103388.469,7943.345686,20
+219199,7329.054366,103350.28,8081.003175,20
+219200,7329.054349,103629.3406,8463.797598,20
+219201,7471.957622,103341.7588,8588.386891,20
+219202,7215.761093,102962.2678,8737.396569,20
+219203,7472.745369,103285.7615,9129.67017,20
+219204,7244.724963,102930.958,9119.798058,20
+219205,7487.846959,102571.5904,9522.505431,20
+219206,7245.441179,102852.7388,9620.626866,20
+219207,7373.987172,102324.411,9901.279186,20
+219208,7388.905059,102335.2776,10035.17021,20
+219209,7260.43445,102629.1853,10663.86499,20
+219210,7274.74435,102300.7911,10512.15799,20
+219211,7032.197672,102040.1659,10934.30258,20
+219212,6889.393675,102083.5723,10961.75368,20
+219213,5740.295704,101579.7898,9523.118167,20
+219214,5249.421668,102001.9704,9160.711524,20
+219215,4830.277694,101538.9864,8609.291321,20
+219216,4708.527168,101517.2098,8746.801754,20
+219217,4035.306121,101027.6839,8426.356046,20
+219218,3896.039227,101191.7545,8439.428571,20
+219219,3361.284492,100945.7981,8241.540034,20
+219220,3060.194332,100671.4491,8242.718301,20
+219221,2506.802712,100744.3129,8055.191636,20
+219222,2207.526914,100304.9218,7943.054614,20
+219223,1733.935952,100359.0538,7829.461834,20
+219224,1289.815921,100096.2788,7904.171161,20
+219225,1229.077741,99824.42928,7513.709583,20
+219226,1195.918211,99712.24514,7664.955689,20
+219227,1149.942621,99553.22313,7461.603298,20
+219228,1107.436621,99636.03955,7247.819703,20
+219229,1066.279689,98907.69774,7424.883904,20
+219230,1029.98619,99175.57173,7052.604225,20
+219231,964.2147395,98569.46131,7078.168566,20
+219232,928.6914857,98771.44762,6974.627761,20
+219233,900.2433227,98310.2163,6766.220057,20
+219234,872.1522362,98493.11292,6763.992066,20
+219235,886.2146057,98025.57163,6542.527396,20
+219236,886.2146003,98005.41453,6460.432709,20
+219237,886.2146079,97703.70772,6423.204845,20
+219238,872.1522085,97628.19976,6114.015883,20
+219239,886.2145944,97508.02618,6233.578152,20
+219240,886.2146026,97373.30737,5993.431779,21
+219241,715.1199972,92532.68613,3385.570911,21
+219242,715.1198744,91713.53718,3164.882919,21
+219243,700.6181904,91898.97868,2856.711149,21
+219244,700.6181864,91691.04347,2831.615203,21
+219245,686.0764317,91316.30336,2807.367809,21
+219246,700.6180071,91053.86667,2780.53176,21
+219247,671.4939527,91137.93597,2780.74666,21
+219248,700.6181995,90991.15858,2729.270076,21
+219249,671.4939442,90780.01318,2741.380855,21
+219250,671.4939452,90280.01998,2623.61381,21
+219251,686.0764255,90672.76522,2594.793002,21
+219252,656.8700819,89997.41116,2568.642286,21
+219253,671.4939401,90124.61436,2543.513317,21
+219254,656.8700804,90194.50013,2489.849231,21
+219255,671.4939364,89388.40037,2489.345624,21
+219256,642.2041444,89940.28291,2450.096694,21
+219257,656.8700754,89216.37791,2396.691314,21
+219258,642.2041445,89705.5948,2409.556437,21
+219259,642.2041419,88917.52743,2342.401111,21
+219260,642.2041433,89230.49037,2330.426582,21
+219261,642.2041403,88663.77658,2274.390796,21
+219262,612.7431244,88931.80805,2275.715546,21
+219263,642.2041371,88352.49541,2219.37937,21
+219264,612.7431228,88479.40283,2195.136275,21
+219265,612.743122,88305.5888,2166.296973,21
+219266,612.7431223,87936.57141,2099.480322,21
+219267,612.7431219,88105.70172,2110.533792,21
+219268,597.9464819,87833.38801,2058.121396,21
+219269,597.9464778,87380.25423,2001.148347,21
+219270,583.1046522,87474.90099,2001.71976,21
+219271,597.9464794,87101.19735,1919.085568,21
+219272,568.2167592,87048.76124,1886.863541,21
+219273,583.1046502,86933.43866,1805.935614,21
+219274,568.2167572,86563.12493,1800.772533,21
+219275,568.2167564,86650.78628,1688.030657,21
+219276,568.216757,86196.72634,1672.41839,21
+219277,553.2818773,85658.14446,1612.275603,21
+219278,553.2818766,86161.80807,1512.559487,21
+219279,553.2818879,85595.17468,1518.034585,21
+219280,553.281883,85319.56853,1402.976573,21
+219281,523.2671971,85263.77497,1366.991001,21
+219282,553.2818763,85031.38508,1354.070807,21
+219283,523.2672082,84741.64233,1328.304527,21
+219284,523.2672057,84451.06036,1315.103685,21
+219285,523.2672059,84708.02828,1275.859661,21
+219286,508.1853034,83605.70189,1275.904656,21
+219287,523.2671555,84112.83089,1262.453938,21
+219288,493.0521802,83870.29631,1222.689715,21
+219289,493.0521691,83216.17705,1221.534481,21
+219290,493.0521751,83241.22971,1195.471382,21
+219291,462.6272785,83263.61259,1195.510898,21
+219292,477.8665996,82648.73471,1182.466,21
+219293,462.6272784,82389.13609,1182.504649,21
+219294,462.6272666,82561.88255,1169.436853,21
+219295,447.3328328,81867.49422,1156.346499,21
+219296,447.3328248,81675.48692,1156.383397,21
+219297,447.3328289,81757.20687,1130.097875,21
+219298,431.9817718,81436.18511,1130.13307,21
+219299,416.5725236,80844.6858,1130.168272,21
+219300,431.9817705,80877.44248,1090.552218,21
+219301,0,44845.42946,0,21
+219302,0,41596.57453,0,21
+219303,0,41388.59957,0,21
+219304,0,40229.09479,0,21
+219305,0,39178.95326,0,21
+219306,0,38906.22147,0,21
+219307,0,37998.93962,0,21
+219308,0,37601.01448,0,21
+219309,0,37747.71384,0,21
+219310,0,35777.42375,0,21
+219311,0,35209.53183,0,21
+219312,0,34763.08378,0,21
+219313,0,33970.23447,0,21
+219314,0,33177.21424,0,21
+219315,0,32946.40644,0,21
+219316,0,31868.25218,0,21
+219317,0,31535.22101,0,21
+219318,0,30818.76061,0,21
+219319,0,30241.91016,0,21
+219320,0,29706.1623,0,21
+219321,0,28849.98826,0,21
+219322,0,28414.09017,0,21
+219323,0,27697.37484,0,21
+219324,0,27363.46118,0,21
+219325,0,26403.84608,0,21
+219326,0,26052.82891,0,21
+219327,0,25401.63941,0,21
+219328,0,24619.53118,0,21
+219329,0,24495.97016,0,21
+219330,0,23421.12856,0,21
+219331,0,23011.93104,0,21
+219332,0,22279.65271,0,21
+219333,0,22025.46838,0,21
+219334,0,21151.86778,0,21
+219335,0,21273.35306,0,21
+219336,0,20305.30648,0,21
+219337,0,20320.39782,0,21
+219338,0,19438.04878,0,21
+219339,0,19139.79665,0,21
+219340,0,18473.63437,0,21
+219341,0,18072.1356,0,21
+219342,0,17842.13721,0,21
+219343,0,16865.06613,0,21
+219344,0,16834.46607,0,21
+219345,0,16365.97445,0,21
+219346,0,15795.82601,0,21
+219347,0,15204.97702,0,21
+219348,0,14913.52938,0,21
+219349,0,14518.07648,0,21
+219350,0,13873.77917,0,21
+219351,0,13610.00985,0,21
+219352,0,12856.00494,0,21
+219353,0,12777.59801,0,21
+219354,0,12154.70878,0,21
+219355,0,11672.31103,0,21
+219356,0,11295.38343,0,21
+219357,0,10833.04649,0,21
+219358,0,10745.24655,0,21
+219359,0,9760.032548,0,21
+219360,0,9532.761959,0,21
+219361,0,9419.605286,0,21
+219362,0,9051.868307,0,21
+219363,0,9003.231813,0,21
+219364,0,8648.540883,0,21
+219365,0,8584.882265,0,21
+219366,0,7397.023044,0,21
+219367,0,7607.90116,0,21
+219368,0,6681.465533,0,21
+219369,0,7078.315397,0,21
+219370,0,6465.291055,0,21
+219371,0,6157.082547,0,21
+219372,0,6167.202433,0,21
+219373,0,5793.469512,0,21
+219374,0,5654.437584,0,21
+219375,0,5356.51525,0,21
+219376,0,5020.716362,0,21
+219377,0,5131.131464,0,21
+219378,0,4312.21859,0,21
+219379,0,4407.07872,0,21
+219380,0,4423.49697,0,21
+219381,0,3927.637967,0,21
+219382,0,3704.384331,0,21
+219383,0,3876.220177,0,21
+219384,0,3341.635638,0,21
+219385,0,3161.710021,0,21
+219386,0,3109.960485,0,21
+219387,0,3273.491492,0,21
+219388,0,2895.415115,0,21
+219389,0,3041.302743,0,21
+219390,0,2852.660139,0,21
+219391,0,2843.145807,0,21
+219392,0,2757.125239,0,21
+219393,0,2600.446951,0,21
+219394,0,2530.646967,0,21
+219395,0,2372.506469,0,21
+219396,0,2460.383747,0,21
+219397,0,2098.684184,0,21
+219398,0,2071.690272,0,21
+219399,0,2027.64879,0,21
+219400,0,1811.337996,0,21
+219401,0,1777.297731,0,21
+219402,0,1530.392887,0,21
+219403,0,1544.288512,0,21
+219404,0,1440.153648,0,21
+219405,0,1262.095553,0,21
+219406,0,1028.093541,0,21
+219407,0,1141.959633,0,21
+219408,0,744.7578787,0,21
+219409,0,863.2039814,0,21
+219410,0,638.9856844,0,21
+219411,0,576.3348479,0,21
+219412,0,521.4599564,0,21
+219413,0,481.2714165,0,21
+219414,0,397.6548981,0,21
+219415,0,379.9956728,0,21
+219416,0,379.995726,0,21
+219417,0,362.2572123,0,21
+219418,0,344.4363042,0,21
+219419,0,344.4363206,0,21
+219420,0,326.5295899,0,21
+219421,0,290.4421257,0,21
+219422,0,272.2540541,0,21
+219423,0,253.9611691,0,21
+219424,0,253.961182,0,21
+219425,0,235.5580938,0,21
+219426,0,217.037706,0,21
+219427,0,217.037712,0,21
+219428,0,189.0186233,0,21
+219429,0,189.0186354,0,21
+219430,0,170.1651885,0,21
+219431,0,160.6815829,0,21
+219432,0,141.5910058,0,21
+219433,0,141.5910102,0,21
+219434,0,112.609967,0,21
+219435,0,102.8450965,0,21
+219436,0,102.8451022,0,21
+219437,0,83.13292431,0,21
+219438,0,63.13583225,0,21
+219439,0,63.1358346,0,21
+219440,0,42.77669162,0,21
+219441,0,21.90584066,0,21
+219442,0,21.90584202,0,21
+219443,0,11.1696892,0,21
+219444,0,0,0,21
+219445,0,0,0,21
+219446,0,0,0,21
+219447,0,0,0,21
+219448,0,0,0,21
+219449,0,0,0,21
+219450,0,0,0,21
+219451,0,0,0,21
+219452,0,0,0,21
+219453,0,0,0,21
+219454,0,0,0,21
+219455,0,0,0,21
+219456,0,0,0,21
+219457,0,0,0,21
+219458,0,0,0,21
+219459,0,0,0,21
+219460,0,0,0,21
+219461,0,0,0,21
+219462,0,0,0,21
+219463,0,0,0,21
+219464,0,0,0,21
+219465,0,0,0,21
+219466,0,0,0,21
+219467,0,0,0,21
+219468,0,0,0,21
+219469,0,0,0,21
+219470,0,0,0,21
+219471,0,0,0,21
+219472,0,0,0,21
+219473,0,0,0,21
+219474,0,0,0,21
+219475,0,0,0,21
+219476,0,0,0,21
+219477,0,0,0,21
+219478,0,0,0,21
+219479,0,0,0,21
+219480,0,0,0,21
+219481,0,0,0,21
+219482,0,0,0,21
+219483,0,0,0,21
+219484,0,0,0,21
+219485,0,0,0,21
+219486,0,0,0,21
+219487,0,0,0,21
+219488,0,0,0,21
+219489,0,0,0,21
+219490,0,0,0,21
+219491,0,0,0,21
+219492,0,0,0,21
+219493,0,0,0,21
+219494,0,0,0,21
+219495,0,0,0,21
+219496,0,0,0,21
+219497,0,0,0,21
+219498,0,0,0,21
+219499,0,0,0,21
+219500,0,0,0,21
+219501,0,0,0,21
+219502,0,0,0,21
+219503,0,0,0,21
+219504,0,0,0,21
+219505,0,0,0,21
+219506,0,0,0,21
+219507,0,0,0,21
+219508,0,0,0,21
+219509,0,0,0,21
+219510,0,0,0,21
+219511,0,0,0,21
+219512,0,0,0,21
+219513,0,0,0,21
+219514,0,0,0,21
+219515,0,0,0,21
+219516,0,0,0,21
+219517,0,0,0,21
+219518,0,0,0,21
+219519,0,0,0,21
+219520,0,0,0,21
+219521,0,0,0,21
+219522,0,0,0,21
+219523,0,0,0,21
+219524,0,0,0,21
+219525,0,0,0,21
+219526,0,0,0,21
+219527,0,0,0,21
+219528,0,0,0,21
+219529,0,0,0,21
+219530,0,0,0,21
+219531,0,0,0,21
+219532,0,0,0,21
+219533,0,0,0,21
+219534,0,0,0,21
+219535,0,0,0,21
+219536,0,0,0,21
+219537,0,0,0,21
+219538,0,0,0,21
+219539,0,0,0,21
+219540,0,0,0,21
+219541,0,0,0,21
+219542,0,0,0,21
+219543,0,0,0,21
+219544,0,0,0,21
+219545,0,0,0,21
+219546,0,0,0,21
+219547,0,0,0,21
+219548,0,0,0,21
+219549,0,0,0,21
+219550,0,0,0,21
+219551,0,0,0,21
+219552,0,0,0,21
+219553,0,0,0,21
+219554,0,0,0,21
+219555,0,0,0,21
+219556,0,0,0,21
+219557,0,0,0,21
+219558,0,0,0,21
+219559,0,0,0,21
+219560,0,0,0,21
+219561,0,0,0,21
+219562,0,0,0,21
+219563,0,0,0,21
+219564,0,0,0,21
+219565,0,0,0,21
+219566,0,0,0,21
+219567,0,0,0,21
+219568,0,0,0,21
+219569,0,0,0,21
+219570,0,0,0,21
+219571,0,0,0,21
+219572,0,0,0,21
+219573,0,0,0,21
+219574,0,0,0,21
+219575,0,0,0,21
+219576,0,0,0,21
+219577,0,0,0,21
+219578,0,0,0,21
+219579,0,0,0,21
+219580,0,0,0,21
+219581,0,0,0,21
+219582,0,0,0,21
+219583,0,0,0,21
+219584,0,0,0,21
+219585,0,0,0,21
+219586,0,0,0,21
+219587,0,0,0,21
+219588,0,0,0,21
+219589,0,0,0,21
+219590,0,0,0,21
+219591,0,0,0,21
+219592,0,0,0,21
+219593,0,0,0,21
+219594,0,0,0,21
+219595,0,0,0,21
+219596,0,0,0,21
+219597,0,0,0,21
+219598,0,0,0,21
+219599,0,0,0,21
+219600,0,0,0,21
+219601,0,0,0,21
+219602,0,0,0,21
+219603,0,0,0,21
+219604,0,0,0,21
+219605,0,0,0,21
+219606,0,0,0,21
+219607,0,0,0,21
+219608,0,0,0,21
+219609,0,0,0,21
+219610,0,0,0,21
+219611,0,0,0,21
+219612,0,0,0,21
+219613,0,0,0,21
+219614,0,0,0,21
+219615,0,0,0,21
+219616,0,0,0,21
+219617,0,0,0,21
+219618,0,0,0,21
+219619,0,0,0,21
+219620,0,0,0,21
+219621,0,0,0,21
+219622,0,0,0,21
+219623,0,0,0,21
+219624,0,0,0,21
+219625,0,0,0,21
+219626,0,0,0,21
+219627,0,0,0,21
+219628,0,0,0,21
+219629,0,0,0,21
+219630,0,0,0,21
+219631,0,0,0,21
+219632,0,0,0,21
+219633,0,0,0,21
+219634,0,0,0,21
+219635,0,0,0,21
+219636,0,0,0,21
+219637,0,0,0,21
+219638,0,0,0,21
+219639,0,0,0,21
+219640,0,0,0,21
+219641,0,0,0,21
+219642,0,0,0,21
+219643,0,0,0,21
+219644,0,0,0,21
+219645,0,0,0,21
+219646,0,0,0,21
+219647,0,0,0,21
+219648,0,0,0,21
+219649,0,0,0,21
+219650,0,0,0,21
+219651,0,0,0,21
+219652,0,0,0,21
+219653,0,0,0,21
+219654,0,0,0,21
+219655,0,0,0,21
+219656,0,0,0,21
+219657,0,0,0,21
+219658,0,0,0,21
+219659,0,0,0,21
+219660,0,0,0,21
+219661,0,0,0,21
+219662,0,0,0,21
+219663,0,0,0,21
+219664,0,0,0,21
+219665,0,0,0,21
+219666,0,0,0,21
+219667,0,0,0,21
+219668,0,0,0,21
+219669,0,0,0,21
+219670,0,0,0,21
+219671,0,0,0,21
+219672,0,0,0,21
+219673,0,0,0,21
+219674,0,0,0,21
+219675,0,0,0,21
+219676,0,0,0,21
+219677,0,0,0,21
+219678,0,0,0,21
+219679,0,0,0,21
+219680,0,0,0,21
+219681,0,0,0,21
+219682,0,0,0,21
+219683,0,0,0,21
+219684,0,0,0,21
+219685,0,0,0,21
+219686,0,0,0,21
+219687,0,0,0,21
+219688,0,0,0,21
+219689,0,0,0,21
+219690,0,0,0,21
+219691,0,0,0,21
+219692,0,0,0,21
+219693,0,0,0,21
+219694,0,0,0,21
+219695,0,0,0,21
+219696,0,0,0,21
+219697,0,0,0,21
+219698,0,0,0,21
+219699,0,0,0,21
+219700,0,0,0,21
+219701,0,0,0,21
+219702,0,0,0,21
+219703,0,0,0,21
+219704,0,0,0,21
+219705,0,0,0,21
+219706,0,0,0,21
+219707,0,0,0,21
+219708,0,0,0,21
+219709,0,0,0,21
+219710,0,0,0,21
+219711,0,0,0,21
+219712,0,0,0,21
+219713,0,0,0,21
+219714,0,0,0,21
+219715,0,0,0,21
+219716,0,0,0,21
+219717,0,0,0,21
+219718,0,0,0,21
+219719,0,0,0,21
+219720,0,0,0,21
+219721,0,0,0,21
+219722,0,0,0,21
+219723,0,0,0,21
+219724,0,0,0,21
+219725,0,0,0,21
+219726,0,0,0,21
+219727,0,0,0,21
+219728,0,0,0,21
+219729,0,0,0,21
+219730,0,0,0,21
+219731,0,0,0,21
+219732,0,0,0,21
+219733,0,0,0,21
+219734,0,0,0,21
+219735,0,0,0,21
+219736,0,0,0,21
+219737,0,0,0,21
+219738,0,0,0,21
+219739,0,0,0,21
+219740,0,0,0,21
+219741,0,0,0,21
+219742,0,0,0,21
+219743,0,0,0,21
+219744,0,0,0,21
+219745,0,0,0,21
+219746,0,0,0,21
+219747,0,0,0,21
+219748,0,0,0,21
+219749,0,0,0,21
+219750,0,0,0,21
+219751,0,0,0,21
+219752,0,0,0,21
+219753,0,0,0,21
+219754,0,0,0,21
+219755,0,0,0,21
+219756,0,0,0,21
+219757,0,0,0,21
+219758,0,0,0,21
+219759,0,0,0,21
+219760,0,0,0,21
+219761,0,0,0,21
+219762,0,0,0,21
+219763,0,0,0,21
+219764,0,0,0,21
+219765,0,0,0,21
+219766,0,0,0,21
+219767,0,0,0,21
+219768,0,0,0,21
+219769,0,0,0,21
+219770,0,0,0,21
+219771,0,0,0,21
+219772,0,0,0,21
+219773,0,0,0,21
+219774,0,0,0,21
+219775,0,0,0,21
+219776,0,0,0,21
+219777,0,0,0,21
+219778,0,0,0,21
+219779,0,0,0,21
+219780,0,0,0,21
+219781,0,0,0,21
+219782,0,0,0,21
+219783,0,0,0,21
+219784,0,0,0,21
+219785,0,0,0,21
+219786,0,0,0,21
+219787,0,0,0,21
+219788,0,0,0,21
+219789,0,0,0,21
+219790,0,0,0,21
+219791,0,0,0,21
+219792,0,0,0,21
+219793,0,0,0,21
+219794,0,0,0,21
+219795,0,0,0,21
+219796,0,0,0,21
+219797,0,0,0,21
+219798,0,0,0,21
+219799,0,0,0,21
+219800,0,0,0,21
+219801,0,0,0,21
+219802,0,0,0,21
+219803,0,0,0,21
+219804,0,0,0,21
+219805,0,0,0,21
+219806,0,0,0,21
+219807,0,0,0,21
+219808,0,0,0,21
+219809,0,0,0,21
+219810,0,0,0,21
+219811,0,0,0,21
+219812,0,0,0,21
+219813,0,0,0,21
+219814,0,0,0,21
+219815,0,0,0,21
+219816,0,0,0,21
+219817,0,0,0,21
+219818,0,0,0,21
+219819,0,0,0,21
+219820,0,0,0,21
+219821,0,0,0,21
+219822,0,0,0,21
+219823,0,0,0,21
+219824,0,0,0,21
+219825,0,0,0,21
+219826,0,0,0,21
+219827,0,0,0,21
+219828,0,0,0,21
+219829,0,0,0,21
+219830,0,0,0,21
+219831,0,0,0,21
+219832,0,0,0,21
+219833,0,0,0,21
+219834,0,0,0,21
+219835,0,0,0,21
+219836,0,0,0,21
+219837,0,0,0,21
+219838,0,0,0,21
+219839,0,0,0,21
+219840,0,0,0,21
+219841,0,0,0,21
+219842,0,0,0,21
+219843,0,0,0,21
+219844,0,0,0,21
+219845,0,0,0,21
+219846,0,0,0,21
+219847,0,0,0,21
+219848,0,0,0,21
+219849,0,0,0,21
+219850,0,0,0,21
+219851,0,0,0,21
+219852,0,0,0,21
+219853,0,0,0,21
+219854,0,0,0,21
+219855,0,0,0,21
+219856,0,0,0,21
+219857,0,0,0,21
+219858,0,0,0,21
+219859,0,0,0,21
+219860,0,0,0,21
+219861,0,0,0,21
+219862,0,0,0,21
+219863,0,0,0,21
+219864,0,0,0,21
+219865,0,0,0,21
+219866,0,0,0,21
+219867,0,0,0,21
+219868,0,0,0,21
+219869,0,0,0,21
+219870,0,0,0,21
+219871,0,0,0,21
+219872,0,0,0,21
+219873,0,0,0,21
+219874,0,0,0,21
+219875,0,0,0,21
+219876,0,0,0,21
+219877,0,0,0,21
+219878,0,0,0,21
+219879,0,0,0,21
+219880,0,0,0,21
+219881,0,0,0,21
+219882,0,0,0,21
+219883,0,0,0,21
+219884,0,0,0,21
+219885,0,0,0,21
+219886,0,0,0,21
+219887,0,0,0,21
+219888,0,0,0,21
+219889,0,0,0,21
+219890,0,0,0,21
+219891,0,0,0,21
+219892,0,0,0,21
+219893,0,0,0,21
+219894,0,0,0,21
+219895,0,0,0,21
+219896,0,0,0,21
+219897,0,0,0,21
+219898,0,0,0,21
+219899,0,0,0,21
+219900,0,0,0,21
+219901,0,0,0,21
+219902,0,0,0,21
+219903,0,0,0,21
+219904,0,0,0,21
+219905,0,0,0,21
+219906,0,0,0,21
+219907,0,0,0,21
+219908,0,0,0,21
+219909,0,0,0,21
+219910,0,0,0,21
+219911,0,0,0,21
+219912,0,0,0,21
+219913,0,0,0,21
+219914,0,0,0,21
+219915,0,0,0,21
+219916,0,0,0,21
+219917,0,0,0,21
+219918,0,0,0,21
+219919,0,0,0,21
+219920,0,0,0,21
+219921,0,0,0,21
+219922,0,0,0,21
+219923,0,0,0,21
+219924,0,0,0,21
+219925,0,0,0,21
+219926,0,0,0,21
+219927,0,0,0,21
+219928,0,0,0,21
+219929,0,0,0,21
+219930,0,0,0,21
+219931,0,0,0,21
+219932,0,0,0,21
+219933,0,0,0,21
+219934,0,0,0,21
+219935,0,0,0,21
+219936,0,0,0,21
+219937,0,0,0,21
+219938,0,0,0,21
+219939,0,0,0,21
+219940,0,0,0,21
+219941,0,0,0,21
+219942,0,0,0,21
+219943,0,0,0,21
+219944,0,0,0,21
+219945,0,0,0,21
+219946,0,0,0,21
+219947,0,0,0,21
+219948,0,0,0,21
+219949,0,0,0,21
+219950,0,0,0,21
+219951,0,0,0,21
+219952,0,0,0,21
+219953,0,0,0,21
+219954,0,0,0,21
+219955,0,0,0,21
+219956,0,0,0,21
+219957,0,0,0,21
+219958,0,0,0,21
+219959,0,0,0,21
+219960,0,0,0,21
+219961,0,0,0,21
+219962,0,0,0,21
+219963,0,0,0,21
+219964,0,0,0,21
+219965,0,0,0,21
+219966,0,0,0,21
+219967,0,0,0,21
+219968,0,0,0,21
+219969,0,0,0,21
+219970,0,0,0,21
+219971,0,0,0,21
+219972,0,0,0,21
+219973,0,0,0,21
+219974,0,0,0,21
+219975,0,0,0,21
+219976,0,0,0,21
+219977,0,0,0,21
+219978,0,0,0,21
+219979,0,0,0,21
+219980,0,0,0,21
+219981,0,0,0,21
+219982,0,0,0,21
+219983,0,0,0,21
+219984,0,0,0,21
+219985,0,0,0,21
+219986,0,0,0,21
+219987,0,0,0,21
+219988,0,0,0,21
+219989,0,0,0,21
+219990,0,0,0,21
+219991,0,0,0,21
+219992,0,0,0,21
+219993,0,0,0,21
+219994,0,0,0,21
+219995,0,0,0,21
+219996,0,0,0,21
+219997,0,0,0,21
+219998,0,0,0,21
+219999,0,0,0,21
+220000,0,0,0,21
+220001,0,0,0,21
+220002,0,0,0,21
+220003,0,0,0,21
+220004,0,0,0,21
+220005,0,0,0,21
+220006,0,0,0,21
+220007,0,0,0,21
+220008,0,0,0,21
+220009,0,0,0,21
+220010,0,0,0,21
+220011,0,0,0,21
+220012,0,0,0,21
+220013,0,0,0,21
+220014,0,0,0,21
+220015,0,0,0,21
+220016,0,0,0,21
+220017,0,0,0,21
+220018,0,0,0,21
+220019,0,0,0,21
+220020,0,0,0,21
+220021,0,0,0,21
+220022,0,0,0,21
+220023,0,0,0,21
+220024,0,0,0,21
+220025,0,0,0,21
+220026,0,0,0,21
+220027,0,0,0,21
+220028,0,0,0,21
+220029,0,0,0,21
+220030,0,0,0,21
+220031,0,0,0,21
+220032,0,0,0,21
+220033,0,0,0,21
+220034,0,0,0,21
+220035,0,0,0,21
+220036,0,0,0,21
+220037,0,42.77675006,0,21
+220038,0,880.3835346,0,21
+220039,0,1769.480327,0,21
+220040,0,1497.954276,0,21
+220041,0,1854.202777,0,21
+220042,0,2168.601763,0,21
+220043,0,2356.423467,0,21
+220044,0,2674.254677,0,21
+220045,0,2840.956521,0,21
+220046,0,3171.859788,0,21
+220047,0,3189.680898,0,21
+220048,0,3662.491898,0,21
+220049,0,3807.044864,0,21
+220050,0,4003.538925,0,21
+220051,0,4146.934037,0,21
+220052,0,4466.757084,0,21
+220053,0,4608.547698,0,21
+220054,0,4642.955994,0,21
+220055,0,5082.462913,0,21
+220056,0,5116.504215,0,21
+220057,0,5239.362713,0,21
+220058,0,5568.506115,0,21
+220059,0,5585.328572,0,21
+220060,0,5861.928291,0,21
+220061,0,5895.412049,0,21
+220062,0,6170.342076,0,21
+220063,0,6340.478068,0,21
+220064,0,6357.041305,0,21
+220065,0,7144.323152,0,21
+220066,0,8184.705949,0,21
+220067,0,7821.551604,0,21
+220068,0,8623.4865,0,21
+220069,0,8613.974996,0,21
+220070,0,9242.203907,0,21
+220071,0,9408.530062,0,21
+220072,0,9682.899816,0,21
+220073,0,10175.68867,0,21
+220074,0,10308.56993,0,21
+220075,0,10764.82142,0,21
+220076,0,11081.67431,0,21
+220077,0,11213.58181,0,21
+220078,0,11532.54974,0,21
+220079,0,12108.62227,0,21
+220080,0,12232.43589,0,21
+220081,0,12698.60773,0,21
+220082,0,12999.25673,0,21
+220083,0,13341.59156,0,21
+220084,0,13910.73502,0,21
+220085,0,14129.71811,0,21
+220086,0,14549.18886,0,21
+220087,0,15233.31891,0,21
+220088,0,15515.59872,0,21
+220089,0,15797.84177,0,21
+220090,0,16522.73203,0,21
+220091,0,16542.46232,0,21
+220092,0,17333.12399,0,21
+220093,0,17349.80229,0,21
+220094,0,18067.09933,0,21
+220095,0,18161.66603,0,21
+220096,0,19046.56778,0,21
+220097,0,18799.95161,0,21
+220098,0,19754.88671,0,21
+220099,0,19769.95747,0,21
+220100,0,23162.81172,0,21
+220101,0,22151.45648,0,21
+220102,126.2226519,23729.10772,0,21
+220103,109.0521138,24067.66791,0,21
+220104,143.231484,24730.83045,0,21
+220105,143.2314839,25805.20216,0,21
+220106,193.4373893,26125.25231,0,21
+220107,176.8269429,27166.5325,0,21
+220108,226.3284563,27622.75082,0,21
+220109,226.3284568,28375.61976,0,21
+220110,258.8244646,29104.49628,0,21
+220111,258.8244638,29757.99245,0,21
+220112,298.9518391,30289.03012,0,21
+220113,306.9167898,31325.892,0,21
+220114,306.9167903,31872.3092,0,21
+220115,354.3175516,32302.08156,0,21
+220116,354.3175529,33161.96977,0,21
+220117,369.9779655,34081.56261,0,21
+220118,401.1033897,34180.40965,0,21
+220119,401.1033921,35381.50099,0,21
+220120,416.5725318,35876.12865,0,21
+220121,447.3328367,36486.06401,0,21
+220122,1310.136948,37079.49867,0,21
+220123,1310.136949,37862.61981,0,21
+220124,1340.561846,38715.13791,0,21
+220125,1606.352175,39030.36551,0,21
+220126,1636.567205,39750.49778,0,21
+220127,1912.928309,40568.9303,0,21
+220128,2057.148574,41117.85204,0,21
+220129,2057.14857,41803.04686,0,21
+220130,2342.938527,42322.71255,0,21
+220131,2357.780353,43063.61871,0,21
+220132,2610.750291,43766.67845,0,21
+220133,2640.299207,44319.03527,0,21
+220134,2780.473471,44818.54786,0,21
+220135,3029.532334,45764.20263,0,21
+220136,2934.594883,46289.86711,0,21
+220137,3320.149232,46770.17947,0,21
+220138,3197.053951,47795.0899,0,21
+220139,3579.303957,48010.74832,0,21
+220140,3486.217754,48762.78864,0,21
+220141,0,0,0,21
+220142,0,0,0,21
+220143,0,0,0,21
+220144,0,0,0,21
+220145,333379.4864,368109.2152,702327.403,21
+220146,0,0,0,21
+220147,0,0,0,21
+220148,0,0,0,21
+220149,0,0,0,21
+220150,0,0,0,21
+220151,0,0,0,21
+220152,0,0,0,21
+220153,0,0,0,21
+220154,0,0,0,21
+220155,0,0,0,21
+220156,0,0,0,21
+220157,0,0,0,21
+220158,0,0,0,21
+220159,0,0,0,21
+220160,0,0,0,21
+220161,0,0,0,21
+220162,0,0,0,21
+220163,0,0,0,21
+220164,0,0,0,21
+220165,0,0,0,21
+220166,0,0,0,21
+220167,0,0,0,21
+220168,0,0,0,21
+220169,0,0,0,21
+220170,0,0,0,21
+220171,0,0,0,21
+220172,0,0,0,21
+220173,0,0,0,21
+220174,0,0,0,21
+220175,0,0,0,21
+220176,0,0,0,21
+220177,0,0,0,21
+220178,0,0,0,21
+220179,0,368968.5535,699866.8793,21
+220180,334540.8535,0,0,21
+220181,0,0,0,21
+220182,0,0,0,21
+220183,0,0,0,21
+220184,0,0,0,21
+220185,0,0,0,21
+220186,0,0,0,21
+220187,0,0,0,21
+220188,0,0,0,21
+220189,0,0,0,21
+220190,0,0,0,21
+220191,0,0,0,21
+220192,0,0,0,21
+220193,0,0,0,21
+220194,0,0,0,21
+220195,0,0,0,21
+220196,0,0,0,21
+220197,0,0,0,21
+220198,0,0,0,21
+220199,0,0,0,21
+220200,0,0,0,15.6
+220201,0,0,0,15.6
+220202,0,0,0,15.6
+220203,0,0,0,15.6
+220204,0,0,0,15.6
+220205,0,0,0,15.6
+220206,0,0,0,15.6
+220207,0,0,0,15.6
+220208,0,0,0,15.6
+220209,0,0,0,15.6
+220210,0,0,0,15.6
+220211,0,0,0,15.6
+220212,0,0,0,15.6
+220213,0,368976.2626,697864.8244,15.6
+220214,0,0,0,15.6
+220215,334176.6577,0,0,15.6
+220216,0,0,0,15.6
+220217,0,0,0,15.6
+220218,0,0,0,15.6
+220219,0,0,0,15.6
+220220,0,0,0,15.6
+220221,0,0,0,15.6
+220222,0,0,0,15.6
+220223,0,0,0,15.6
+220224,0,0,0,15.6
+220225,0,0,0,15.6
+220226,0,0,0,15.6
+220227,0,0,0,15.6
+220228,0,0,0,15.6
+220229,0,0,0,15.6
+220230,0,0,0,15.6
+220231,0,0,0,15.6
+220232,0,0,0,15.6
+220233,0,0,0,15.6
+220234,0,0,0,15.6
+220235,0,0,0,15.6
+220236,0,0,0,15.6
+220237,0,0,0,15.6
+220238,0,0,0,15.6
+220239,0,0,0,15.6
+220240,0,0,0,15.6
+220241,0,0,0,15.6
+220242,0,0,0,15.6
+220243,0,0,0,15.6
+220244,0,0,0,15.6
+220245,0,0,0,15.6
+220246,0,0,0,15.6
+220247,0,368983.9766,694922.4645,15.6
+220248,0,0,0,15.6
+220249,0,0,0,15.6
+220250,334785.6354,0,0,15.6
+220251,0,0,0,15.6
+220252,0,0,0,15.6
+220253,0,0,0,15.6
+220254,0,0,0,15.6
+220255,0,0,0,15.6
+220256,0,0,0,15.6
+220257,0,0,0,15.6
+220258,0,0,0,15.6
+220259,0,0,0,15.6
+220260,0,0,0,15.6
+220261,0,0,0,15.6
+220262,0,0,0,15.6
+220263,0,0,0,15.6
+220264,0,0,0,15.6
+220265,0,0,0,15.6
+220266,0,0,0,15.6
+220267,0,0,0,15.6
+220268,0,0,0,15.6
+220269,0,0,0,15.6
+220270,0,0,0,15.6
+220271,0,0,0,15.6
+220272,0,0,0,15.6
+220273,0,0,0,15.6
+220274,0,0,0,15.6
+220275,0,0,0,15.6
+220276,0,0,0,15.6
+220277,0,0,0,15.6
+220278,0,0,0,15.6
+220279,0,0,0,15.6
+220280,0,0,0,15.6
+220281,0,0,692299.8223,15.6
+220282,0,368987.286,0,15.6
+220283,0,0,0,15.6
+220284,0,0,0,15.6
+220285,334829.4643,0,0,15.6
+220286,0,0,0,15.6
+220287,0,0,0,15.6
+220288,0,0,0,15.6
+220289,0,0,0,15.6
+220290,0,0,0,15.6
+220291,0,0,0,15.6
+220292,0,0,0,15.6
+220293,0,0,0,15.6
+220294,0,0,0,15.6
+220295,0,0,0,15.6
+220296,0,0,0,15.6
+220297,0,0,0,15.6
+220298,0,0,0,15.6
+220299,0,0,0,15.6
+220300,0,0,0,15.6
+220301,0,0,0,15.6
+220302,0,0,0,15.6
+220303,0,0,0,15.6
+220304,0,0,0,15.6
+220305,0,0,0,15.6
+220306,0,0,0,15.6
+220307,0,0,0,15.6
+220308,0,0,0,15.6
+220309,0,0,0,15.6
+220310,0,0,0,15.6
+220311,0,0,0,15.6
+220312,0,0,0,15.6
+220313,0,0,0,15.6
+220314,0,0,0,15.6
+220315,0,0,691143.573,15.6
+220316,0,0,0,15.6
+220317,0,368987.2881,0,15.6
+220318,0,0,0,15.6
+220319,0,0,0,15.6
+220320,335328.4237,0,0,15.6
+220321,0,0,0,15.6
+220322,0,0,0,15.6
+220323,0,0,0,15.6
+220324,0,0,0,15.6
+220325,0,0,0,15.6
+220326,0,0,0,15.6
+220327,0,0,0,15.6
+220328,0,0,0,15.6
+220329,0,0,0,15.6
+220330,0,0,0,15.6
+220331,0,0,0,15.6
+220332,0,0,0,15.6
+220333,0,0,0,15.6
+220334,0,0,0,15.6
+220335,0,0,0,15.6
+220336,0,0,0,15.6
+220337,0,0,0,15.6
+220338,0,0,0,15.6
+220339,0,0,0,15.6
+220340,0,0,0,15.6
+220341,0,0,0,15.6
+220342,0,0,0,15.6
+220343,0,0,0,15.6
+220344,0,0,0,15.6
+220345,0,0,0,15.6
+220346,0,0,0,15.6
+220347,0,0,0,15.6
+220348,0,0,0,15.6
+220349,0,0,688906.6477,15.6
+220350,0,0,0,15.6
+220351,0,0,0,15.6
+220352,0,369122.5498,0,15.6
+220353,0,0,0,15.6
+220354,0,0,0,15.6
+220355,335425.6021,0,0,15.6
+220356,0,0,0,15.6
+220357,0,0,0,15.6
+220358,0,0,0,15.6
+220359,0,0,0,15.6
+220360,0,0,0,15.6
+220361,0,0,0,15.6
+220362,0,0,0,15.6
+220363,0,0,0,15.6
+220364,0,0,0,15.6
+220365,0,0,0,15.6
+220366,0,0,0,15.6
+220367,0,0,0,15.6
+220368,0,0,0,15.6
+220369,0,0,0,15.6
+220370,0,0,0,15.6
+220371,0,0,0,15.6
+220372,0,0,0,15.6
+220373,0,0,0,15.6
+220374,0,0,0,15.6
+220375,0,0,0,15.6
+220376,0,0,0,15.6
+220377,0,0,0,15.6
+220378,0,0,0,15.6
+220379,0,0,0,15.6
+220380,0,0,0,15.6
+220381,0,0,0,15.6
+220382,0,0,0,15.6
+220383,0,0,687735.2218,15.6
+220384,0,0,0,15.6
+220385,0,0,0,15.6
+220386,0,0,0,15.6
+220387,0,369102.2434,0,15.6
+220388,0,0,0,15.6
+220389,0,0,0,15.6
+220390,336696.9609,0,0,15.6
+220391,0,0,0,15.6
+220392,0,0,0,15.6
+220393,0,0,0,15.6
+220394,0,0,0,15.6
+220395,0,0,0,15.6
+220396,0,0,0,15.6
+220397,0,0,0,15.6
+220398,0,0,0,15.6
+220399,0,0,0,15.6
+220400,0,0,0,15.6
+220401,0,0,0,15.6
+220402,0,0,0,15.6
+220403,0,0,0,15.6
+220404,0,0,0,15.6
+220405,0,0,0,15.6
+220406,0,0,0,15.6
+220407,0,0,0,15.6
+220408,0,0,0,15.6
+220409,0,0,0,15.6
+220410,0,0,0,15.6
+220411,0,0,0,15.6
+220412,0,0,0,15.6
+220413,0,0,0,15.6
+220414,0,0,0,15.6
+220415,0,0,0,15.6
+220416,0,0,0,15.6
+220417,0,75.70682435,686168.1448,15.6
+220418,0,0,0,15.6
+220419,0,0,0,15.6
+220420,0,0,0,15.6
+220421,0,102.5646,0,15.6
+220422,0,369097.1909,0,15.6
+220423,0,0,0,15.6
+220424,0,0,0,15.6
+220425,335374.9763,78.47310132,0,15.6
+220426,0,0,0,15.6
+220427,0,0,0,15.6
+220428,0,0,0,15.6
+220429,0,77.15426266,0,15.6
+220430,0,0,0,15.6
+220431,0,0,0,15.6
+220432,0,0,0,15.6
+220433,0,98.49519875,0,15.6
+220434,0,0,0,15.6
+220435,0,0,0,15.6
+220436,0,0,0,15.6
+220437,0,86.77279687,0,15.6
+220438,0,0,0,15.6
+220439,0,0,0,15.6
+220440,0,0,0,15.6
+220441,0,103.1832334,0,15.6
+220442,0,0,0,15.6
+220443,0,0,0,15.6
+220444,0,0,0,15.6
+220445,0,81.93146813,0,15.6
+220446,0,0,0,15.6
+220447,0,0,0,15.6
+220448,0,0,0,15.6
+220449,0,86.89762847,0,15.6
+220450,0,0,0,15.6
+220451,0,0,684796.6051,15.6
+220452,0,0,0,15.6
+220453,0,82.3025288,0,15.6
+220454,0,0,0,15.6
+220455,0,0,0,15.6
+220456,0,0,0,15.6
+220457,0,369144.0648,0,15.6
+220458,0,0,0,15.6
+220459,0,0,0,15.6
+220460,336786.7679,0,0,15.6
+220461,0,70.10590653,0,15.6
+220462,0,0,0,15.6
+220463,0,0,0,15.6
+220464,0,0,0,15.6
+220465,0,66.78278413,0,15.6
+220466,0,0,0,15.6
+220467,0,0,0,15.6
+220468,0,0,0,15.6
+220469,0,82.37785576,0,15.6
+220470,0,0,0,15.6
+220471,0,0,0,15.6
+220472,0,0,0,15.6
+220473,0,97.52401998,0,15.6
+220474,0,0,0,15.6
+220475,0,0,0,15.6
+220476,0,0,0,15.6
+220477,0,85.77187979,0,15.6
+220478,0,0,0,15.6
+220479,0,0,0,15.6
+220480,0,0,0,15.6
+220481,0,105.7754614,0,15.6
+220482,0,0,0,15.6
+220483,0,0,0,15.6
+220484,0,0,0,15.6
+220485,0,96.67998303,684415.6901,15.6
+220486,0,0,0,15.6
+220487,0,0,0,15.6
+220488,0,0,0,15.6
+220489,0,96.93206086,0,15.6
+220490,0,0,0,15.6
+220491,0,0,0,15.6
+220492,0,369013.485,0,15.6
+220493,0,82.39140267,0,15.6
+220494,0,0,0,15.6
+220495,337623.4996,0,0,15.6
+220496,0,0,0,15.6
+220497,0,72.00599199,0,15.6
+220498,0,0,0,15.6
+220499,0,0,0,15.6
+220500,0,0,0,15.6
+220501,0,69.24999274,0,15.6
+220502,0,0,0,15.6
+220503,0,0,0,15.6
+220504,0,0,0,15.6
+220505,0,75.3526494,0,15.6
+220506,0,0,0,15.6
+220507,0,0,0,15.6
+220508,0,0,0,15.6
+220509,0,76.40044315,0,15.6
+220510,0,0,0,15.6
+220511,0,0,0,15.6
+220512,0,0,0,15.6
+220513,0,77.62817118,0,15.6
+220514,0,0,0,15.6
+220515,0,0,0,15.6
+220516,0,0,0,15.6
+220517,0,79.40316033,0,15.6
+220518,0,0,0,15.6
+220519,0,0,683121.4332,15.6
+220520,0,0,0,15.6
+220521,0,81.48185672,0,15.6
+220522,0,0,0,15.6
+220523,0,0,0,15.6
+220524,0,0,0,15.6
+220525,0,83.42797323,0,15.6
+220526,0,0,0,15.6
+220527,0,368997.2964,0,15.6
+220528,0,0,0,15.6
+220529,340118.7673,81.14703733,0,15.6
+220530,0,0,0,15.6
+220531,0,0,0,15.6
+220532,0,0,0,15.6
+220533,0,67.77667852,0,15.6
+220534,0,0,0,15.6
+220535,0,0,0,15.6
+220536,0,0,0,15.6
+220537,0,78.25004165,0,15.6
+220538,0,0,0,15.6
+220539,0,0,0,15.6
+220540,0,0,0,15.6
+220541,0,85.04591083,0,15.6
+220542,0,0,0,15.6
+220543,0,0,0,15.6
+220544,0,0,0,15.6
+220545,0,84.59088168,0,15.6
+220546,0,0,0,15.6
+220547,0,0,0,15.6
+220548,0,0,0,15.6
+220549,0,81.10254392,0,15.6
+220550,0,0,0,15.6
+220551,0,0,0,15.6
+220552,0,0,0,15.6
+220553,0,76.48556196,682755.0282,15.6
+220554,0,0,0,15.6
+220555,0,0,0,15.6
+220556,0,0,0,15.6
+220557,0,71.67552334,0,15.6
+220558,0,0,0,15.6
+220559,0,0,0,15.6
+220560,0,0,0,17.8
+220561,0,676038.0111,0,17.8
+220562,0,0,0,17.8
+220563,340091.8296,0,0,17.8
+220564,0,0,0,17.8
+220565,0,0,0,17.8
+220566,0,63.32879298,0,17.8
+220567,0,0,0,17.8
+220568,0,0,0,17.8
+220569,0,0,0,17.8
+220570,0,0,0,17.8
+220571,0,0,0,17.8
+220572,0,0,0,17.8
+220573,0,0,0,17.8
+220574,0,0,0,17.8
+220575,0,96.03445267,0,17.8
+220576,0,0,0,17.8
+220577,0,0,0,17.8
+220578,0,0,0,17.8
+220579,0,66.54102943,0,17.8
+220580,0,0,0,17.8
+220581,0,0,0,17.8
+220582,0,0,0,17.8
+220583,0,80.05060265,0,17.8
+220584,0,0,0,17.8
+220585,0,0,0,17.8
+220586,0,0,0,17.8
+220587,0,80.53776232,681281.1476,17.8
+220588,0,0,0,17.8
+220589,0,0,0,17.8
+220590,0,0,0,17.8
+220591,0,80.55708413,0,17.8
+220592,0,0,0,17.8
+220593,0,0,0,17.8
+220594,0,0,0,17.8
+220595,0,368992.6564,0,17.8
+220596,0,0,0,17.8
+220597,340067.3513,99.47882514,0,17.8
+220598,0,0,0,17.8
+220599,0,0,0,17.8
+220600,0,0,0,17.8
+220601,0,0,0,17.8
+220602,0,5105.493961,0,17.8
+220603,0,14968.12893,0,17.8
+220604,0,24802.77455,0,17.8
+220605,0,20366.69894,0,17.8
+220606,0,21398.78127,0,17.8
+220607,0,24035.40996,0,17.8
+220608,0,26481.6991,0,17.8
+220609,0,25465.54649,0,17.8
+220610,0,25953.09806,0,17.8
+220611,0,25955.94735,0,17.8
+220612,0,26498.08544,0,17.8
+220613,0,25854.26861,0,17.8
+220614,0,26445.36018,0,17.8
+220615,0,26205.33074,0,17.8
+220616,0,26085.02773,0,17.8
+220617,0,26392.40701,0,17.8
+220618,0,25992.79976,0,17.8
+220619,0,26179.90513,0,17.8
+220620,0,25963.29967,0,20
+220621,391354.9285,702709.5268,680995.1662,20
+220622,1777.085551,0,0,20
+220623,7927.87835,1410.020119,0,20
+220624,8297.877611,18152.62433,0,20
+220625,76205.29843,166480.7692,0,20
+220626,52479.77565,63704.8176,0,20
+220627,47472.44709,86139.60841,0,20
+220628,51791.01283,87149.38332,0,20
+220629,52870.0311,86721.69322,1336.942585,20
+220630,52281.72443,86309.2857,984.6447805,20
+220631,51816.63035,86472.16346,2431.76986,20
+220632,52426.20112,85554.19886,1654.427857,20
+220633,51747.27052,85664.54967,6896.375061,20
+220634,51829.79151,85589.56662,7062.308574,20
+220635,51750.32735,85006.05315,6204.341025,20
+220636,51476.83077,84904.62277,7046.194702,20
+220637,51812.87459,84739.44536,7185.447378,20
+220638,51420.49196,84527.32247,7474.999869,20
+220639,51705.95311,84338.90583,7600.57169,20
+220640,51477.5754,83888.55628,7764.896058,20
+220641,51535.44977,84122.89911,8026.512422,20
+220642,51551.21175,83427.74283,8054.369187,20
+220643,51327.795,83656.9756,8301.670748,20
+220644,51284.47673,83231.38247,8478.231083,20
+220645,51446.18577,83218.31268,8589.403832,20
+220646,51182.66011,82926.97717,8643.355299,20
+220647,51298.77998,82621.11516,8876.367214,20
+220648,50949.99469,82894.76863,9134.602383,20
+220649,51225.38638,82160.98428,8958.115548,20
+220650,50888.23604,82280.46477,9407.241534,20
+220651,51262.05652,82144.9586,9340.071502,20
+220652,51162.27274,81891.46364,9571.529271,20
+220653,51409.67667,81763.08374,8130.385025,20
+220654,52007.43647,81585.4631,7660.717112,20
+220655,51660.9785,81205.81836,7286.434178,20
+220656,52254.92599,81549.18931,7199.920984,20
+220657,52400.17759,80798.72463,6860.879653,20
+220658,52312.45539,81166.31367,7000.86343,20
+220659,53138.04651,80782.55401,6570.435021,20
+220660,52755.70494,80621.12394,6672.23224,20
+220661,53427.36788,80475.23667,6469.322833,20
+220662,53378.85652,80390.80844,6225.405697,20
+220663,53950.38942,80185.86552,6263.590107,20
+220664,53873.10638,80119.27842,6006.342507,20
+220665,55445.75536,79817.33346,5940.460466,20
+220666,55803.7536,79854.05613,5772.081771,20
+220667,56160.52842,79502.92099,5718.550565,20
+220668,56213.83398,79451.97592,5431.023068,20
+220669,56867.70313,79620.87125,5494.073992,20
+220670,57134.8157,78982.01863,5325.275364,20
+220671,57068.2106,79235.06672,5147.854084,20
+220672,57704.53738,78748.31449,4978.352677,20
+220673,57913.05964,79255.5514,4869.630763,20
+220674,58267.05673,78344.32672,4664.844147,20
+220675,58553.80769,78711.6729,4502.603695,20
+220676,58749.05652,78474.1245,4379.486735,20
+220677,59138.5189,78344.46228,4157.007064,20
+220678,59547.28345,78146.90022,3992.688596,20
+220679,59862.84421,78307.67267,3740.112956,20
+220680,59754.58343,77930.47674,3636.772894,21
+220681,60512.471,77939.57748,3612.489528,21
+220682,60375.53148,77756.34348,3495.379406,21
+220683,60782.66303,77765.49338,3638.723314,21
+220684,60994.14919,77741.83516,3234.495194,21
+220685,60986.73486,77543.82681,3364.061779,21
+220686,61579.77756,77416.04309,3225.442002,21
+220687,62206.68081,77515.3979,2956.40315,21
+220688,62795.99192,77177.73595,2848.880832,21
+220689,62879.94228,77177.71571,2702.00834,21
+220690,63457.54536,77161.13606,2699.021301,21
+220691,63480.82961,76606.9583,2659.253467,21
+220692,64153.35798,77161.09512,2821.216059,21
+220693,64212.37311,76555.15663,2643.084599,21
+220694,64640.08068,76600.22104,2655.976971,21
+220695,64772.17911,76592.219,2739.732757,21
+220696,65231.84514,76203.75757,2613.598991,21
+220697,65341.91269,76555.1038,2613.785517,21
+220698,65966.78596,76018.09257,2548.07459,21
+220699,65956.66615,76170.3745,2706.064602,21
+220700,67024.32216,76004.65309,2571.244212,21
+220701,67871.199,75645.8689,2490.769343,21
+220702,68047.66763,75734.4429,2528.152411,21
+220703,68004.32197,75608.64578,2501.054131,21
+220704,69095.51929,75399.46489,2435.663126,21
+220705,68626.31558,75371.77644,2484.85411,21
+220706,69192.71105,75034.38554,2415.380755,21
+220707,69623.58888,75355.02773,2278.555804,21
+220708,69723.43727,75005.63553,2509.297136,21
+220709,70040.13643,74822.37794,2243.993565,21
+220710,70983.98428,74744.25506,2265.801321,21
+220711,70635.1093,74651.574,2299.570313,21
+220712,70996.01334,74526.98935,2119.939848,21
+220713,70653.47395,73847.05554,2086.015203,21
+220714,71038.52898,74373.31409,2196.17747,21
+220715,70928.92374,73579.60049,1974.901426,21
+220716,70811.43762,73240.50623,1965.039217,21
+220717,70929.77132,73739.61741,1895.683277,21
+220718,70792.18867,73005.10715,1888.837069,21
+220719,70607.51062,72565.94774,1800.805672,21
+220720,70614.05548,72981.06224,1755.633045,21
+220721,70798.32544,72173.80742,1756.349046,21
+220722,70322.49676,72161.39478,1695.024766,21
+220723,70542.91718,72180.65997,1731.822098,21
+220724,70168.16141,71550.38271,1682.362031,21
+220725,70286.12643,71386.13001,1708.065912,21
+220726,70082.06569,71126.31857,1670.508243,21
+220727,69998.42499,71351.80344,1682.595146,21
+220728,69757.38955,70502.2716,1670.661684,21
+220729,69610.68289,70409.12374,1632.983786,21
+220730,69611.66072,70249.65776,1646.683183,21
+220731,69376.87625,70125.80651,1633.130199,21
+220732,69116.95999,69554.62278,1608.998277,21
+220733,69184.5969,69500.69937,1621.19062,21
+220734,68804.1393,69252.51292,1558.987741,21
+220735,68688.25356,68936.63415,1597.048078,21
+220736,68544.14799,68642.49649,1546.195754,21
+220737,68366.60524,68844.04302,1546.944603,21
+220738,68148.81361,67750.05788,1496.515378,21
+220739,67965.55758,68158.54085,1496.576548,21
+220740,67652.74163,67676.31583,1471.288649,21
+220741,51169.37798,58155.62369,904.2238805,21
+220742,49839.36603,57461.32761,849.6081564,21
+220743,49400.12823,56687.15314,835.9019216,21
+220744,48850.92163,56353.55706,835.9207963,21
+220745,48165.81763,56213.0087,794.5971053,21
+220746,48145.62108,55507.21239,794.6141246,21
+220747,47611.10998,55848.09526,780.7940893,21
+220748,46905.78563,55571.77859,753.0503472,21
+220749,46931.42051,55263.97063,753.0656037,21
+220750,46385.34964,54896.58799,739.1566827,21
+220751,45669.41607,54708.41524,711.2333246,21
+220752,45710.92927,54047.59471,697.2322135,21
+220753,45249.61685,54165.90295,697.2452261,21
+220754,44685.03169,53352.88549,669.1348422,21
+220755,44470.6185,53673.13312,655.0374573,21
+220756,43604.42141,52702.20491,640.9069618,21
+220757,43266.61746,52655.26547,626.7428376,21
+220758,42600.8938,52394.20058,612.5446964,21
+220759,42561.97651,51996.6152,584.0343804,21
+220760,42087.50128,51537.96558,584.0434007,21
+220761,41545.63913,51093.15185,555.3904523,21
+220762,41325.24787,51293.6149,555.3986228,21
+220763,41075.90159,50406.97117,512.1361683,21
+220764,40642.64155,50387.56947,526.6047114,21
+220765,40572.28307,49962.46363,483.1091713,21
+220766,39992.92433,49716.16383,483.1152901,21
+220767,39927.12668,49093.78304,453.9168199,21
+220768,39887.64985,49139.69087,453.9221943,21
+220769,39060.04495,48819.55248,409.7964185,21
+220770,39230.93103,48134.39009,424.5559382,21
+220771,38794.69611,48149.68421,380.1545966,21
+220772,38540.34139,47771.48511,380.1583248,21
+220773,38508.59606,47344.15217,350.3143692,21
+220774,38061.09472,47051.54952,335.3158066,21
+220775,37835.66227,46711.49215,320.262698,21
+220776,37479.17457,46203.47817,305.1528474,21
+220777,37546.95399,46303.28643,274.7521452,21
+220778,37006.63195,45289.89133,274.7540604,21
+220779,36872.43765,45135.63835,244.0973269,21
+220780,36521.9446,44501.85059,228.6658112,21
+220781,36365.51164,44602.25995,213.160012,21
+220782,36138.30376,43803.6467,181.906015,21
+220783,35684.66757,43416.37983,181.9068864,21
+220784,35651.65792,42990.17727,150.2927744,21
+220785,35206.48233,42735.93099,134.3322589,21
+220786,35118.82294,42613.50403,118.2558692,21
+220787,34738.97698,42080.71053,102.0502828,21
+220788,34638.61863,41683.48261,69.17595861,21
+220789,34122.39287,41599.99333,69.17606347,21
+220790,34145.94793,40757.59515,35.46183992,21
+220791,34523.54288,40759.21446,18.10567517,21
+220792,34607.08809,40087.49565,0,21
+220793,34148.46536,39664.15735,0,21
+220794,34278.11344,39498.02432,0,21
+220795,33863.20305,38976.19891,0,21
+220796,33727.99483,38419.12547,0,21
+220797,33335.21881,38293.9993,0,21
+220798,33266.00787,37595.35445,0,21
+220799,33049.87703,37537.15216,0,21
+220800,32713.16785,36908.18729,0,21
+220801,32587.72907,36519.06547,0,21
+220802,32088.71963,36263.46144,0,21
+220803,32032.3231,35568.6642,0,21
+220804,31788.44174,35379.21042,0,21
+220805,31216.6947,35111.47675,0,21
+220806,31251.99269,34400.82955,0,21
+220807,30680.14228,34147.01752,0,21
+220808,30431.4447,33724.48914,0,21
+220809,30435.37485,33968.73631,0,21
+220810,29700.92397,33299.05151,0,21
+220811,29800.74407,33028.40904,0,21
+220812,29275.26994,33044.09063,0,21
+220813,29066.20589,32309.60253,0,21
+220814,28708.6078,32000.56802,0,21
+220815,28434.87221,31660.94621,0,21
+220816,28161.38079,31171.38901,0,21
+220817,27900.20602,30950.86987,0,21
+220818,27404.34704,30692.13878,0,21
+220819,27469.26962,29918.18545,0,21
+220820,26756.11533,29778.9856,0,21
+220821,26817.25791,29522.04241,0,21
+220822,26092.28364,28851.59746,0,21
+220823,26250.69411,28602.75044,0,21
+220824,25787.9568,28129.65013,0,21
+220825,25264.76439,27978.45463,0,21
+220826,25192.17162,27419.2161,0,21
+220827,24762.20541,26822.89192,0,21
+220828,24615.72157,27145.09744,0,21
+220829,24086.99651,26661.7112,0,21
+220830,23975.63918,26334.98046,0,21
+220831,23376.57823,25959.50871,0,21
+220832,23332.19573,25905.93046,0,21
+220833,22796.51711,25028.19245,0,21
+220834,22511.65052,24994.70362,0,21
+220835,22222.08194,24280.64685,0,21
+220836,21720.68284,23651.86781,0,21
+220837,21435.61361,23333.85653,0,21
+220838,21030.83199,22820.94004,0,21
+220839,20733.66731,22374.92572,0,21
+220840,20425.94099,22185.84417,0,21
+220841,19839.45226,21621.98254,0,21
+220842,19747.27788,21219.17707,0,21
+220843,19379.23304,20830.19702,0,21
+220844,18853.63741,20395.93063,0,21
+220845,18749.36886,19828.16525,0,21
+220846,18091.66327,19621.93615,0,21
+220847,18040.86666,18995.15952,0,21
+220848,17559.07083,18584.10409,0,21
+220849,17348.96281,18237.94863,0,21
+220850,16682.22846,17588.1414,0,21
+220851,16785.91755,17340.54906,0,21
+220852,16099.81425,16796.06317,0,21
+220853,15794.87852,16332.33501,0,21
+220854,15556.76801,15885.48772,0,21
+220855,15291.47169,15302.874,0,21
+220856,14922.02349,14862.37857,0,21
+220857,14543.34114,14477.26223,0,21
+220858,14278.24083,13566.38655,0,21
+220859,13901.51784,13410.51125,0,21
+220860,13521.8647,12868.73199,0,21
+220861,15299.46192,11941.98128,0,21
+220862,14794.72286,11529.88029,0,21
+220863,14688.77593,11242.07777,0,21
+220864,14384.72616,10417.20919,0,21
+220865,13951.2565,10244.95627,0,21
+220866,13864.36119,9540.786852,0,21
+220867,13404.33092,9080.226185,0,21
+220868,13162.77264,9167.408674,0,21
+220869,13229.47785,8831.441492,0,21
+220870,12865.50635,8669.281904,0,21
+220871,12729.72536,8596.099089,0,21
+220872,12334.28507,8418.30407,0,21
+220873,11967.15591,8357.223059,0,21
+220874,11814.59572,8045.655029,0,21
+220875,11540.77357,7950.166839,0,21
+220876,11167.49491,7816.31706,0,21
+220877,10904.81168,7767.148353,0,21
+220878,10614.17354,7483.665283,0,21
+220879,10375.88571,7499.689231,0,21
+220880,9828.150537,7317.242061,0,21
+220881,9843.088787,7333.329866,0,21
+220882,9539.166971,7031.461441,0,21
+220883,9022.9816,6879.980849,0,21
+220884,8893.492599,6744.288952,0,21
+220885,8478.974254,6711.771251,0,21
+220886,7887.092778,6591.968205,0,21
+220887,7629.886939,6406.518422,0,21
+220888,7129.588058,6422.890886,0,21
+220889,7097.549505,6132.391564,0,21
+220890,6512.922998,6099.506788,0,21
+220891,6259.153894,5978.312415,0,21
+220892,5964.606312,5945.335335,0,21
+220893,6063.477626,5807.245254,0,21
+220894,6027.025654,5668.729093,0,21
+220895,6040.25858,5774.069243,0,21
+220896,5795.514965,5513.214359,0,21
+220897,5768.971427,5479.937124,0,21
+220898,5768.971826,5479.937973,0,21
+220899,5509.439308,5200.688473,0,21
+220900,5768.972631,5323.825468,0,21
+220901,5626.056111,5167.20409,0,21
+220902,5626.056498,5167.20424,0,21
+220903,5509.440803,4869.264117,0,21
+220904,5365.709076,5150.382228,0,21
+220905,5469.262136,4711.098008,0,21
+220906,5234.95088,4852.38728,0,21
+220907,5103.791156,4694.164544,0,21
+220908,5208.026985,4694.164396,0,21
+220909,4958.717018,4535.379164,0,21
+220910,4958.717337,4518.329051,0,21
+220911,5194.523529,4535.379745,0,21
+220912,4958.717978,4216.058854,0,21
+220913,5063.279444,4501.218569,0,21
+220914,4931.624038,4072.660975,0,21
+220915,4813.138596,4198.886337,0,21
+220916,4785.928502,4181.650332,0,21
+220917,4785.928804,3911.521629,0,21
+220918,4667.041667,4020.950889,0,21
+220919,4520.413866,3876.983839,0,21
+220920,4520.414143,3876.983931,0,21
+220921,4639.713635,3859.573201,0,21
+220922,4373.241998,3715.058806,0,21
+220923,4626.004691,3715.059401,0,21
+220924,4253.082768,3697.621478,0,21
+220925,4612.265423,3534.946676,0,21
+220926,4359.472224,3534.946776,0,21
+220927,4612.265563,3389.148453,0,21
+220928,4345.671394,3353.905627,0,21
+220929,4345.671456,3371.565626,0,21
+220930,4317.975561,3207.448975,0,21
+220931,4211.680005,3042.566583,0,21
+220932,4197.816302,3189.710123,0,21
+220933,4169.992817,2894.705553,0,21
+220934,4063.312369,3006.838339,0,21
+220935,4035.424059,2876.884452,0,21
+220936,4035.424108,2858.977332,0,21
+220937,3778.809281,2692.366986,0,21
+220938,4007.404041,2710.363768,0,21
+220939,3764.782624,2674.276369,0,21
+220940,3750.722217,2524.87126,0,21
+220941,3722.498648,2374.630324,0,21
+220942,3614.582858,2506.682136,0,21
+220943,3586.289837,2356.441085,0,21
+220944,3463.732007,2338.147851,0,21
+220945,3694.135427,2187.020415,0,21
+220946,3463.732068,2168.617072,0,21
+220947,3421.026044,2177.833049,0,21
+220948,3572.090626,1998.024226,0,21
+220949,3283.62729,2016.544988,0,21
+220950,3406.717853,1826.292914,0,21
+220951,3269.281783,1988.715654,0,21
+220952,3392.372348,1826.290945,0,21
+220953,3131.253635,1653.330684,0,21
+220954,3254.898487,1826.291094,0,21
+220955,3102.37134,1479.032252,0,21
+220956,3240.476816,1798.064288,0,21
+220957,3087.871252,1322.351926,0,21
+220958,3087.871268,1615.31123,0,21
+220959,3073.33105,1322.352035,0,21
+220960,2934.527101,1440.67297,0,21
+220961,3073.331078,1303.261149,0,21
+220962,2905.240237,1283.99027,0,21
+220963,3044.12773,1116.137586,0,21
+220964,2780.412667,1264.515123,0,21
+220965,3014.755927,1116.137695,0,21
+220966,2765.705357,926.8584314,0,21
+220967,2875.782041,1106.372806,0,21
+220968,2750.954455,906.86123,0,21
+220969,2846.14623,926.8584977,0,21
+220970,2736.159165,745.1296684,0,21
+220971,2706.432026,906.8613292,0,21
+220972,2706.432031,735.0020712,0,21
+220973,2691.498392,560.7153913,0,21
+220974,2566.036659,724.7669161,0,21
+220975,2676.516763,724.7695547,0,21
+220976,2676.516766,539.8443322,0,21
+220977,2394.814531,372.8304744,0,21
+220978,2661.486111,693.1632076,0,21
+220979,2520.943607,179.7183593,0,21
+220980,2505.811582,517.9382894,0,21
+220981,6047.556509,3888.995505,0,21
+220982,6402.854895,4326.400796,0,21
+220983,6275.25502,4184.08193,0,21
+220984,6402.856253,4344.215858,0,21
+220985,6246.749561,4326.394039,0,21
+220986,6019.052763,4326.39375,0,21
+220987,6246.750829,4184.080687,0,21
+220988,5990.400028,4308.486164,0,21
+220989,6118.745779,4326.393181,0,21
+220990,6090.017373,4166.172988,0,21
+220991,5990.401771,4166.172783,0,21
+220992,6075.596811,4308.485332,0,21
+220993,6075.597763,4166.162447,0,21
+220994,5961.598678,4148.16532,0,21
+220995,5947.138576,4157.174998,0,21
+220996,6061.138896,4148.164957,0,21
+220997,5932.639553,4148.164767,0,21
+220998,5918.099832,3987.227243,0,21
+220999,5932.640726,4148.164377,0,21
+221000,5903.519945,4130.073541,0,21
+221001,5903.520532,3987.226696,0,21
+221002,5903.521121,3969.037359,0,21
+221003,5774.592687,3987.226429,0,21
+221004,5888.899829,3969.036043,0,21
+221005,5874.235836,3969.035833,0,21
+221006,5645.311288,3807.344823,0,21
+221007,5874.237085,3969.035441,0,21
+221008,5730.472577,3807.344452,0,21
+221009,5745.224173,3798.156867,0,21
+221010,5730.473733,3807.344178,0,21
+221011,5730.474317,3788.940528,0,21
+221012,5715.679491,3644.973765,0,21
+221013,5601.061334,3626.452936,0,21
+221014,5700.840031,3626.452751,0,21
+221015,5586.221829,3481.897582,0,21
+221016,5700.841216,3607.806159,0,21
+221017,5571.336229,3318.086104,0,21
+221018,5571.336803,3299.304352,0,21
+221019,5556.403612,3299.304134,0,21
+221020,5556.404189,3299.303966,0,21
+221021,5441.468319,3134.577118,0,21
+221022,5541.423584,3115.486273,0,21
+221023,5426.487667,2988.120664,0,21
+221024,5526.393962,2949.757006,0,21
+221025,5311.228918,2968.883034,0,21
+221026,5511.314235,2635.319156,0,21
+221027,5296.199205,2949.727042,0,21
+221028,5755.322637,2486.660659,0,21
+221029,5541.427744,2763.409543,0,21
+221030,5770.354765,2466.938884,0,21
+221031,5755.324613,2466.938828,0,21
+221032,5641.01799,2446.941696,0,21
+221033,5755.325948,2287.410512,0,21
+221034,5625.938345,2126.93954,0,21
+221035,5641.019925,2277.1788,0,21
+221036,5725.114848,1954.943067,0,21
+221037,5625.94029,2106.068834,0,21
+221038,5625.940945,1944.206895,0,21
+221039,5595.624725,1780.966763,0,21
+221040,5740.249782,1780.966719,0,21
+221041,5481.005506,1780.96817,0,21
+221042,5725.117402,1780.967595,0,21
+221043,5725.117656,1627.884135,0,21
+221044,5709.933229,1627.884115,0,21
+221045,5610.810612,1627.884144,0,21
+221046,5823.934683,1473.706985,0,21
+221047,5709.933998,1627.884129,0,21
+221048,5709.934256,1318.338889,0,21
+221049,5709.934514,1627.88431,0,21
+221050,5694.69631,1161.659931,0,21
+221051,5823.93603,1473.707153,0,21
+221052,5709.935291,1318.338962,0,21
+221053,5808.698104,1161.659959,0,21
+221054,5808.698373,1318.339058,0,21
+221055,5694.697599,1161.660088,0,21
+221056,5679.404229,1003.519066,0,21
+221057,5664.054221,1161.660117,0,21
+221058,5450.477408,1003.519094,0,21
+221059,5648.646244,1003.519098,0,21
+221060,5304.781975,1003.519163,0,21
+221061,5289.313788,843.7185585,0,21
+221062,5289.314006,1003.519212,0,21
+221063,5142.929686,681.9883107,0,21
+221064,4911.414257,843.7186016,0,21
+221065,5011.68041,843.7185845,0,21
+221066,4763.758587,681.9883744,0,21
+221067,4647.140814,681.988401,0,21
+221068,4615.469946,517.9346285,0,21
+221069,4498.49503,681.9884268,0,21
+221070,4365.206148,517.9346832,0,21
+221071,4113.368154,517.9369453,0,21
+221072,4097.255388,517.9375997,0,21
+221073,3962.567158,517.9376661,0,21
+221074,3827.384282,350.9241495,0,21
+221075,3588.35843,517.9378001,0,21
+221076,3547.17769,517.9378598,0,21
+221077,3435.307604,350.92426,0,21
+221078,3281.356471,517.9380768,0,21
+221079,3038.732753,350.9244344,0,21
+221080,3143.420434,517.9382049,0,21
+221081,2760.255917,350.9244946,0,21
+221082,2865.644543,434.8566918,0,21
+221083,2611.341806,350.9245476,0,21
+221084,2602.64043,517.9384611,0,21
+221085,2319.380929,350.9246882,0,21
+221086,2337.204039,350.9247152,0,21
+221087,2176.403443,350.9247394,0,21
+221088,2176.403479,517.9386398,0,21
+221089,1906.200439,350.9247831,0,21
+221090,1896.623258,350.9248634,0,21
+221091,1632.235058,350.9248992,0,21
+221092,1374.619685,350.9249256,0,21
+221093,1503.855092,179.7185812,0,21
+221094,1244.460239,179.7185931,0,21
+221095,1113.293916,179.7186013,0,21
+221096,1113.293924,0,0,21
+221097,981.0188445,0,0,21
+221098,847.5062942,0,0,21
+221099,712.5880836,0,0,21
+221100,712.5880866,0,0,21
+221101,437.5089848,0,0,21
+221102,437.5089804,0,0,21
+221103,296.4709056,0,0,21
+221104,151.867002,0,0,21
+221105,0,0,0,21
+221106,0,0,0,21
+221107,0,0,0,21
+221108,0,0,0,21
+221109,0,0,0,21
+221110,0,0,0,21
+221111,0,0,0,21
+221112,0,0,0,21
+221113,0,0,0,21
+221114,0,0,0,21
+221115,0,0,0,21
+221116,0,0,0,21
+221117,0,0,0,21
+221118,0,0,0,21
+221119,0,0,0,21
+221120,0,0,0,21
+221121,0,0,0,21
+221122,0,0,0,21
+221123,0,0,0,21
+221124,0,0,0,21
+221125,0,0,0,21
+221126,0,0,0,21
+221127,0,0,0,21
+221128,0,0,0,21
+221129,0,0,0,21
+221130,0,0,0,21
+221131,0,0,0,21
+221132,0,0,0,21
+221133,0,0,0,21
+221134,0,0,0,21
+221135,0,0,0,21
+221136,0,0,0,21
+221137,0,0,0,21
+221138,0,0,0,21
+221139,0,0,0,21
+221140,0,0,0,21
+221141,0,0,0,21
+221142,0,0,0,21
+221143,0,0,0,21
+221144,0,0,0,21
+221145,0,0,0,21
+221146,0,0,0,21
+221147,0,0,0,21
+221148,0,0,0,21
+221149,0,0,0,21
+221150,0,0,0,21
+221151,0,0,0,21
+221152,0,0,0,21
+221153,0,0,0,21
+221154,0,0,0,21
+221155,0,0,0,21
+221156,0,0,0,21
+221157,0,0,0,21
+221158,0,0,0,21
+221159,299.2283337,0,0,21
+221160,719.1523032,0,0,21
+221161,0,0,0,21
+221162,0,0,0,21
+221163,153.2838156,0,0,21
+221164,153.2838154,0,0,21
+221165,441.5655655,0,0,21
+221166,299.2284256,0,0,21
+221167,581.3579515,0,0,21
+221168,581.3579509,0,0,21
+221169,581.3579504,0,0,21
+221170,855.288104,0,0,21
+221171,855.2881031,0,0,21
+221172,989.9969106,0,0,21
+221173,989.9969096,0,0,21
+221174,1123.448792,0,0,21
+221175,1255.77375,0,0,21
+221176,1387.074699,0,0,21
+221177,1255.773747,0,0,21
+221178,1387.074696,0,0,21
+221179,1387.074695,0,0,21
+221180,1517.435268,0,0,21
+221181,1646.924854,0,0,21
+221182,1775.602014,0,0,21
+221183,1775.602014,0,0,21
+221184,1903.516874,0,0,21
+221185,2157.227963,0,0,21
+221186,2030.712857,0,0,21
+221187,2283.095756,0,0,21
+221188,2157.227968,0,0,21
+221189,2408.3461,0,0,21
+221190,2283.095765,0,0,21
+221191,2533.005757,0,0,21
+221192,2408.346114,0,0,21
+221193,2657.098856,0,0,21
+221194,2780.647259,0,0,21
+221195,2657.098873,0,0,21
+221196,2780.64728,0,0,21
+221197,2780.647292,0,0,21
+221198,2903.670939,0,0,21
+221199,2780.647319,0,0,21
+221200,2903.670971,0,0,21
+221201,2780.64735,0,0,21
+221202,3026.188116,0,0,21
+221203,2903.671026,0,0,21
+221204,2903.671046,0,0,21
+221205,3148.21553,0,0,21
+221206,3148.215557,0,0,21
+221207,3148.215585,0,0,21
+221208,3269.768636,0,0,21
+221209,3148.215644,0,0,21
+221210,3269.768702,0,0,21
+221211,3269.768737,0,0,21
+221212,3148.215742,0,0,21
+221213,3390.861823,0,0,21
+221214,3148.215814,0,0,21
+221215,3390.861908,0,0,21
+221216,3269.768933,0,0,21
+221217,3269.768976,0,0,21
+221218,3390.862046,0,0,21
+221219,3148.216011,0,0,21
+221220,3390.862144,0,0,21
+221221,3269.768596,0,0,21
+221222,3390.861476,0,0,21
+221223,3148.215344,0,0,21
+221224,3390.86122,0,0,21
+221225,3269.768122,0,0,21
+221226,3269.768005,0,0,21
+221227,3390.86084,0,0,21
+221228,3148.214802,0,0,21
+221229,3390.860587,0,0,21
+221230,3269.767537,0,0,21
+221231,3148.214479,0,0,21
+221232,3390.860208,0,0,21
+221233,3148.214263,0,0,21
+221234,3269.767069,0,0,21
+221235,3269.766951,0,0,21
+221236,3148.213937,0,0,21
+221237,3269.766716,0,0,21
+221238,3148.21372,0,0,21
+221239,3269.766479,0,0,21
+221240,3148.213501,0,0,21
+221241,3148.213391,0,0,21
+221242,3026.186109,0,0,21
+221243,3148.21317,0,0,21
+221244,3026.185905,0,0,21
+221245,3148.212948,0,0,21
+221246,2903.668781,0,0,21
+221247,3148.212725,0,0,21
+221248,2903.668592,0,0,21
+221249,3026.185391,0,0,21
+221250,2903.668401,0,0,21
+221251,3026.185182,0,0,21
+221252,2903.66821,0,0,21
+221253,3026.184973,0,0,21
+221254,3026.184855,0,0,21
+221255,3026.184749,0,0,21
+221256,3026.184655,0,0,21
+221257,3026.184549,0,0,21
+221258,3148.211469,0,0,21
+221259,3026.184334,0,0,21
+221260,3148.211235,0,0,21
+221261,3148.211118,0,0,21
+221262,3148.211,0,0,21
+221263,3148.210882,0,0,21
+221264,3269.763395,0,0,21
+221265,3148.210644,0,0,21
+221266,3269.763137,0,0,21
+221267,3269.763007,0,0,21
+221268,3390.855428,0,0,21
+221269,3269.762746,0,0,21
+221270,3390.855146,0,0,21
+221271,3390.855004,0,0,21
+221272,3390.854861,0,0,21
+221273,3390.854719,0,0,21
+221274,3511.500295,0,0,21
+221275,3511.50014,0,0,21
+221276,3511.499985,0,0,21
+221277,3511.499829,0,0,21
+221278,3631.710936,0,0,21
+221279,3631.710768,0,0,21
+221280,3631.710599,0,0,21
+221281,0,0,0,21
+221282,0,0,0,21
+221283,0,0,0,21
+221284,0,0,0,21
+221285,0,0,0,21
+221286,0,0,0,21
+221287,0,0,0,21
+221288,0,0,0,21
+221289,0,0,0,21
+221290,0,0,0,21
+221291,0,0,0,21
+221292,0,0,0,21
+221293,0,0,0,21
+221294,0,0,0,21
+221295,0,0,0,21
+221296,0,0,0,21
+221297,0,0,0,21
+221298,0,0,0,21
+221299,0,0,0,21
+221300,0,0,0,21
+221301,0,0,0,21
+221302,0,0,0,21
+221303,0,0,0,21
+221304,0,0,0,21
+221305,0,0,0,21
+221306,0,0,0,21
+221307,0,0,0,21
+221308,0,0,0,21
+221309,0,0,0,21
+221310,0,0,0,21
+221311,0,0,0,21
+221312,0,0,0,21
+221313,0,0,0,21
+221314,0,0,0,21
+221315,0,0,0,21
+221316,0,0,0,21
+221317,0,0,0,21
+221318,0,0,0,21
+221319,0,0,0,21
+221320,0,0,0,21
+221321,0,0,0,21
+221322,0,0,0,21
+221323,0,0,0,21
+221324,0,0,0,21
+221325,0,0,0,21
+221326,0,0,0,21
+221327,0,0,0,21
+221328,0,0,0,21
+221329,0,0,0,21
+221330,0,0,0,21
+221331,0,0,0,21
+221332,0,0,0,21
+221333,0,0,0,21
+221334,0,0,0,21
+221335,0,0,0,21
+221336,0,0,0,21
+221337,0,0,0,21
+221338,0,0,0,21
+221339,0,0,0,21
+221340,0,0,0,21
+221341,0,0,0,21
+221342,0,0,0,21
+221343,0,0,0,21
+221344,0,0,0,21
+221345,0,0,0,21
+221346,0,0,706633.4289,21
+221347,0,368821.5999,0,21
+221348,338613.1074,0,0,21
+221349,0,0,0,21
+221350,0,0,0,21
+221351,0,0,0,21
+221352,0,0,0,21
+221353,0,0,0,21
+221354,0,0,0,21
+221355,0,0,0,21
+221356,0,0,0,21
+221357,0,0,0,21
+221358,0,0,0,21
+221359,0,0,0,21
+221360,0,0,0,21
+221361,0,0,0,21
+221362,0,0,0,21
+221363,0,0,0,21
+221364,0,0,0,21
+221365,0,0,0,21
+221366,0,0,0,21
+221367,0,0,0,21
+221368,0,0,0,21
+221369,0,0,0,21
+221370,0,0,0,21
+221371,0,0,0,21
+221372,0,0,0,21
+221373,0,0,0,21
+221374,0,0,0,21
+221375,0,0,0,21
+221376,0,0,0,21
+221377,0,0,0,21
+221378,0,0,0,21
+221379,0,0,0,21
+221380,0,0,0,21
+221381,0,0,703091.48,21
+221382,0,0,0,21
+221383,0,368829.8304,0,21
+221384,0,0,0,21
+221385,338512.2484,0,0,21
+221386,0,0,0,21
+221387,0,0,0,21
+221388,0,0,0,21
+221389,0,0,0,21
+221390,0,0,0,21
+221391,0,0,0,21
+221392,0,0,0,21
+221393,0,0,0,21
+221394,0,0,0,21
+221395,0,0,0,21
+221396,0,0,0,21
+221397,0,0,0,21
+221398,0,0,0,21
+221399,0,0,0,21
+221400,0,0,0,21
+221401,0,0,0,21
+221402,0,0,0,21
+221403,0,0,0,21
+221404,0,0,0,21
+221405,0,0,0,21
+221406,0,0,0,21
+221407,0,0,0,21
+221408,0,0,0,21
+221409,0,0,0,21
+221410,0,0,0,21
+221411,0,0,0,21
+221412,0,0,0,21
+221413,0,0,0,21
+221414,0,0,0,21
+221415,0,0,0,21
+221416,0,0,699653.3491,21
+221417,0,0,0,21
+221418,0,0,0,21
+221419,0,368834.0457,0,21
+221420,0,0,0,21
+221421,0,0,0,21
+221422,338484.0818,0,0,21
+221423,0,0,0,21
+221424,0,0,0,21
+221425,0,0,0,21
+221426,0,0,0,21
+221427,0,0,0,21
+221428,0,0,0,21
+221429,0,0,0,21
+221430,0,0,0,21
+221431,0,0,0,21
+221432,0,0,0,21
+221433,0,0,0,21
+221434,0,0,0,21
+221435,0,0,0,21
+221436,0,0,0,21
+221437,0,0,0,21
+221438,0,0,0,21
+221439,0,0,0,21
+221440,0,0,0,21
+221441,0,0,0,21
+221442,0,0,0,21
+221443,0,0,0,21
+221444,0,0,0,21
+221445,0,0,0,21
+221446,0,0,0,21
+221447,0,0,0,21
+221448,0,0,0,21
+221449,0,0,0,21
+221450,0,0,0,21
+221451,0,0,697201.8811,21
+221452,0,0,0,21
+221453,0,0,0,21
+221454,0,0,0,21
+221455,0,368834.0461,0,21
+221456,0,0,0,21
+221457,0,0,0,21
+221458,0,0,0,21
+221459,338375.1609,0,0,21
+221460,0,0,0,21
+221461,0,0,0,21
+221462,0,0,0,21
+221463,0,0,0,21
+221464,0,0,0,21
+221465,0,0,0,21
+221466,0,0,0,21
+221467,0,0,0,21
+221468,0,0,0,21
+221469,0,0,0,21
+221470,0,0,0,21
+221471,0,0,0,21
+221472,0,0,0,21
+221473,0,0,0,21
+221474,0,0,0,21
+221475,0,0,0,21
+221476,0,0,0,21
+221477,0,0,0,21
+221478,0,0,0,21
+221479,0,0,0,21
+221480,0,0,0,21
+221481,0,0,0,21
+221482,0,0,0,21
+221483,0,0,0,21
+221484,0,0,0,21
+221485,0,0,0,21
+221486,0,0,694782.5203,21
+221487,0,0,0,21
+221488,0,0,0,21
+221489,0,0,0,21
+221490,0,0,0,21
+221491,0,368834.0487,0,21
+221492,0,0,0,21
+221493,0,0,0,21
+221494,0,0,0,21
+221495,0,0,0,21
+221496,338699.2236,0,0,21
+221497,0,0,0,21
+221498,0,0,0,21
+221499,0,0,0,21
+221500,0,0,0,21
+221501,0,0,0,21
+221502,0,0,0,21
+221503,0,0,0,21
+221504,0,0,0,21
+221505,0,0,0,21
+221506,0,0,0,21
+221507,0,0,0,21
+221508,0,0,0,21
+221509,0,0,0,21
+221510,0,0,0,21
+221511,0,0,0,21
+221512,0,0,0,21
+221513,0,0,0,21
+221514,0,0,0,21
+221515,0,0,0,21
+221516,0,0,0,21
+221517,0,0,0,21
+221518,0,0,0,21
+221519,0,0,0,21
+221520,0,0,0,21
+221521,0,0,0,21
+221522,0,0,692711.4554,21
+221523,0,0,0,21
+221524,0,0,0,21
+221525,0,0,0,21
+221526,0,0,0,21
+221527,0,368834.0383,0,21
+221528,0,0,0,21
+221529,0,0,0,21
+221530,0,0,0,21
+221531,0,0,0,21
+221532,0,0,0,21
+221533,338017.0783,0,0,21
+221534,0,0,0,21
+221535,0,0,0,21
+221536,0,0,0,21
+221537,0,0,0,21
+221538,0,0,0,21
+221539,0,0,0,21
+221540,0,0,0,21
+221541,0,0,0,21
+221542,0,0,0,21
+221543,0,0,0,21
+221544,0,0,0,21
+221545,0,0,0,21
+221546,0,0,0,21
+221547,0,0,0,21
+221548,0,0,0,21
+221549,0,0,0,21
+221550,0,0,0,21
+221551,0,0,0,21
+221552,0,0,0,21
+221553,0,0,0,21
+221554,0,0,0,21
+221555,0,0,0,21
+221556,0,0,0,21
+221557,0,0,0,21
+221558,0,0,691348.8385,21
+221559,0,0,0,21
+221560,0,0,0,21
+221561,0,0,0,21
+221562,0,0,0,21
+221563,0,368834.0487,0,21
+221564,0,0,0,21
+221565,0,0,0,21
+221566,0,0,0,21
+221567,0,0,0,21
+221568,0,0,0,21
+221569,0,0,0,21
+221570,0,0,0,21
+221571,339383.466,0,0,21
+221572,0,0,0,21
+221573,0,0,0,21
+221574,0,0,0,21
+221575,0,0,0,21
+221576,0,0,0,21
+221577,0,0,0,21
+221578,0,0,0,21
+221579,0,0,0,21
+221580,0,0,0,21
+221581,0,0,0,21
+221582,0,0,0,21
+221583,0,0,0,21
+221584,0,0,0,21
+221585,0,0,0,21
+221586,0,0,0,21
+221587,0,0,0,21
+221588,0,0,0,21
+221589,0,0,0,21
+221590,0,0,0,21
+221591,0,0,0,21
+221592,0,0,0,21
+221593,0,0,0,21
+221594,0,0,689411.8025,21
+221595,0,0,0,21
+221596,0,0,0,21
+221597,0,0,0,21
+221598,0,0,0,21
+221599,0,368834.0487,0,21
+221600,0,0,0,21
+221601,0,0,0,21
+221602,0,0,0,21
+221603,0,0,0,21
+221604,0,0,0,21
+221605,0,0,0,21
+221606,0,0,0,21
+221607,0,0,0,21
+221608,0,0,0,21
+221609,339854.0574,0,0,21
+221610,0,0,0,21
+221611,0,0,0,21
+221612,0,0,0,21
+221613,0,0,0,21
+221614,0,0,0,21
+221615,0,0,0,21
+221616,0,0,0,21
+221617,0,0,0,21
+221618,0,0,0,21
+221619,0,0,0,21
+221620,0,0,0,21
+221621,0,0,0,21
+221622,0,0,0,21
+221623,0,0,0,21
+221624,0,0,0,21
+221625,0,0,0,21
+221626,0,0,0,21
+221627,0,0,0,21
+221628,0,0,0,21
+221629,0,0,0,21
+221630,0,0,687796.0809,21
+221631,0,0,0,21
+221632,0,0,0,21
+221633,0,0,0,21
+221634,0,0,0,21
+221635,0,368833.8181,0,21
+221636,0,0,0,21
+221637,0,0,0,21
+221638,0,0,0,21
+221639,0,0,0,21
+221640,0,0,0,15.6
+221641,0,0,0,15.6
+221642,0,0,0,15.6
+221643,0,0,0,15.6
+221644,0,0,0,15.6
+221645,0,0,0,15.6
+221646,0,0,0,15.6
+221647,339940.395,0,0,15.6
+221648,0,0,0,15.6
+221649,0,0,0,15.6
+221650,0,0,0,15.6
+221651,0,0,0,15.6
+221652,0,0,0,15.6
+221653,0,0,0,15.6
+221654,0,0,0,15.6
+221655,0,0,0,15.6
+221656,0,0,0,15.6
+221657,0,0,0,15.6
+221658,0,0,0,15.6
+221659,0,0,0,15.6
+221660,0,0,0,15.6
+221661,0,0,0,15.6
+221662,0,0,0,15.6
+221663,0,0,0,15.6
+221664,0,0,0,15.6
+221665,0,0,0,15.6
+221666,0,0,687382.1178,15.6
+221667,0,0,0,15.6
+221668,0,0,0,15.6
+221669,0,0,0,15.6
+221670,0,0,0,15.6
+221671,0,0,0,15.6
+221672,0,368833.807,0,15.6
+221673,0,0,0,15.6
+221674,0,0,0,15.6
+221675,0,0,0,15.6
+221676,0,0,0,15.6
+221677,0,0,0,15.6
+221678,0,0,0,15.6
+221679,0,0,0,15.6
+221680,0,0,0,15.6
+221681,0,0,0,15.6
+221682,0,0,0,15.6
+221683,0,0,0,15.6
+221684,0,0,0,15.6
+221685,339959.1391,0,0,15.6
+221686,0,0,0,15.6
+221687,0,0,0,15.6
+221688,0,0,0,15.6
+221689,0,0,0,15.6
+221690,0,0,0,15.6
+221691,0,0,0,15.6
+221692,0,0,0,15.6
+221693,0,0,0,15.6
+221694,0,0,0,15.6
+221695,0,0,0,15.6
+221696,0,0,0,15.6
+221697,0,0,0,15.6
+221698,0,0,0,15.6
+221699,0,0,0,15.6
+221700,0,0,0,15.6
+221701,0,0,0,15.6
+221702,0,0,685205.1202,15.6
+221703,0,0,0,15.6
+221704,0,0,0,15.6
+221705,0,0,0,15.6
+221706,0,0,0,15.6
+221707,0,0,0,15.6
+221708,0,0,0,15.6
+221709,0,368834.0488,0,15.6
+221710,0,0,0,15.6
+221711,0,0,0,15.6
+221712,0,0,0,15.6
+221713,0,0,0,15.6
+221714,0,0,0,15.6
+221715,0,0,0,15.6
+221716,0,0,0,15.6
+221717,0,0,0,15.6
+221718,0,0,0,15.6
+221719,0,0,0,15.6
+221720,0,0,0,15.6
+221721,0,0,0,15.6
+221722,0,0,0,15.6
+221723,339927.4473,0,0,15.6
+221724,0,0,0,15.6
+221725,0,0,0,15.6
+221726,0,0,0,15.6
+221727,0,0,0,15.6
+221728,0,0,0,15.6
+221729,0,0,0,15.6
+221730,0,0,0,15.6
+221731,0,0,0,15.6
+221732,0,0,0,15.6
+221733,0,0,0,15.6
+221734,0,0,0,15.6
+221735,0,0,0,15.6
+221736,0,0,0,15.6
+221737,0,0,0,15.6
+221738,0,0,684516.972,15.6
+221739,0,0,0,15.6
+221740,0,0,0,15.6
+221741,0,0,0,15.6
+221742,0,0,0,15.6
+221743,0,0,0,15.6
+221744,0,0,0,15.6
+221745,0,0,0,15.6
+221746,0,368834.0488,0,15.6
+221747,0,0,0,15.6
+221748,0,0,0,15.6
+221749,0,0,0,15.6
+221750,0,0,0,15.6
+221751,0,0,0,15.6
+221752,0,0,0,15.6
+221753,0,0,0,15.6
+221754,0,0,0,15.6
+221755,0,0,0,15.6
+221756,0,0,0,15.6
+221757,0,0,0,15.6
+221758,0,0,0,15.6
+221759,0,0,0,15.6
+221760,0,0,0,15.6
+221761,339867.4852,0,0,15.6
+221762,0,0,0,15.6
+221763,0,0,0,15.6
+221764,0,0,0,15.6
+221765,0,0,0,15.6
+221766,0,0,0,15.6
+221767,0,0,0,15.6
+221768,0,0,0,15.6
+221769,0,0,0,15.6
+221770,0,0,0,15.6
+221771,0,0,0,15.6
+221772,0,0,0,15.6
+221773,0,0,0,15.6
+221774,0,0,684150.6821,15.6
+221775,0,0,0,15.6
+221776,0,0,0,15.6
+221777,0,0,0,15.6
+221778,0,0,0,15.6
+221779,0,0,0,15.6
+221780,0,0,0,15.6
+221781,0,0,0,15.6
+221782,0,0,0,15.6
+221783,0,368833.7919,0,15.6
+221784,0,0,0,15.6
+221785,0,0,0,15.6
+221786,0,0,0,15.6
+221787,0,0,0,15.6
+221788,0,0,0,15.6
+221789,0,0,0,15.6
+221790,0,0,0,15.6
+221791,0,0,0,15.6
+221792,0,0,0,15.6
+221793,0,0,0,15.6
+221794,0,0,0,15.6
+221795,0,0,0,15.6
+221796,0,0,0,15.6
+221797,0,0,0,15.6
+221798,0,0,0,15.6
+221799,339868.3347,0,0,15.6
+221800,0,0,0,15.6
+221801,0,0,0,15.6
+221802,0,0,0,15.6
+221803,0,0,0,15.6
+221804,0,0,0,15.6
+221805,0,0,0,15.6
+221806,0,0,0,15.6
+221807,0,0,0,15.6
+221808,0,0,0,15.6
+221809,0,0,0,15.6
+221810,0,0,683694.035,15.6
+221811,0,0,0,15.6
+221812,0,0,0,15.6
+221813,0,0,0,15.6
+221814,0,0,0,15.6
+221815,0,0,0,15.6
+221816,0,0,0,15.6
+221817,0,0,0,15.6
+221818,0,0,0,15.6
+221819,0,0,0,15.6
+221820,0,368834.0488,0,15.6
+221821,0,0,0,15.6
+221822,0,0,0,15.6
+221823,0,0,0,15.6
+221824,0,0,0,15.6
+221825,0,0,0,15.6
+221826,0,0,0,15.6
+221827,0,0,0,15.6
+221828,0,0,0,15.6
+221829,0,0,0,15.6
+221830,0,0,0,15.6
+221831,0,0,0,15.6
+221832,0,0,0,15.6
+221833,0,0,0,15.6
+221834,0,0,0,15.6
+221835,0,0,0,15.6
+221836,0,0,0,15.6
+221837,339865.5039,0,0,15.6
+221838,0,0,0,15.6
+221839,0,0,0,15.6
+221840,0,0,0,15.6
+221841,0,0,0,15.6
+221842,0,0,0,15.6
+221843,0,0,0,15.6
+221844,0,0,0,15.6
+221845,0,0,0,15.6
+221846,0,0,683154.4761,15.6
+221847,0,0,0,15.6
+221848,0,0,0,15.6
+221849,0,0,0,15.6
+221850,0,0,0,15.6
+221851,0,0,0,15.6
+221852,0,0,0,15.6
+221853,0,0,0,15.6
+221854,0,0,0,15.6
+221855,0,0,0,15.6
+221856,0,0,0,15.6
+221857,0,368834.0488,0,15.6
+221858,0,0,0,15.6
+221859,0,0,0,15.6
+221860,0,0,0,15.6
+221861,0,0,0,15.6
+221862,0,0,0,15.6
+221863,0,0,0,15.6
+221864,0,0,0,15.6
+221865,0,0,0,15.6
+221866,0,0,0,15.6
+221867,0,0,0,15.6
+221868,0,0,0,15.6
+221869,0,0,0,15.6
+221870,0,0,0,15.6
+221871,0,0,0,15.6
+221872,0,0,0,15.6
+221873,0,0,0,15.6
+221874,0,0,0,15.6
+221875,339858.2855,0,0,15.6
+221876,0,0,0,15.6
+221877,0,0,0,15.6
+221878,0,0,0,15.6
+221879,0,0,0,15.6
+221880,0,0,0,15.6
+221881,0,0,0,15.6
+221882,0,0,682591.1296,15.6
+221883,0,0,0,15.6
+221884,0,0,0,15.6
+221885,0,0,0,15.6
+221886,0,0,0,15.6
+221887,0,0,0,15.6
+221888,0,0,0,15.6
+221889,0,0,0,15.6
+221890,0,0,0,15.6
+221891,0,0,0,15.6
+221892,0,0,0,15.6
+221893,0,0,0,15.6
+221894,0,368833.8023,0,15.6
+221895,0,0,0,15.6
+221896,0,0,0,15.6
+221897,0,0,0,15.6
+221898,0,0,0,15.6
+221899,0,0,0,15.6
+221900,0,0,0,15.6
+221901,0,0,0,15.6
+221902,0,0,0,15.6
+221903,0,0,0,15.6
+221904,0,0,0,15.6
+221905,0,0,0,15.6
+221906,0,0,0,15.6
+221907,0,0,0,15.6
+221908,0,0,0,15.6
+221909,0,0,0,15.6
+221910,0,0,0,15.6
+221911,0,0,0,15.6
+221912,0,0,0,15.6
+221913,339879.0524,0,0,15.6
+221914,0,0,0,15.6
+221915,0,0,0,15.6
+221916,0,0,682052.9232,15.6
+221917,0,0,0,15.6
+221918,0,0,0,15.6
+221919,0,0,0,15.6
+221920,0,0,0,15.6
+221921,0,0,0,15.6
+221922,0,0,0,15.6
+221923,0,0,0,15.6
+221924,0,0,0,15.6
+221925,0,0,0,15.6
+221926,0,0,0,15.6
+221927,0,0,0,15.6
+221928,0,0,0,15.6
+221929,0,0,0,15.6
+221930,0,0,0,15.6
+221931,0,368834.0488,0,15.6
+221932,0,0,0,15.6
+221933,0,0,0,15.6
+221934,0,0,0,15.6
+221935,0,0,0,15.6
+221936,0,0,0,15.6
+221937,0,0,0,15.6
+221938,0,0,0,15.6
+221939,0,0,0,15.6
+221940,0,0,0,15.6
+221941,0,0,0,15.6
+221942,0,0,0,15.6
+221943,0,0,0,15.6
+221944,0,0,0,15.6
+221945,0,0,0,15.6
+221946,0,0,0,15.6
+221947,0,0,0,15.6
+221948,0,0,0,15.6
+221949,339900.2808,0,0,15.6
+221950,0,0,681580.7622,15.6
+221951,0,0,0,15.6
+221952,0,0,0,15.6
+221953,0,0,0,15.6
+221954,0,0,0,15.6
+221955,0,0,0,15.6
+221956,0,0,0,15.6
+221957,0,0,0,15.6
+221958,0,0,0,15.6
+221959,0,0,0,15.6
+221960,0,0,0,15.6
+221961,0,0,0,15.6
+221962,0,0,0,15.6
+221963,0,0,0,15.6
+221964,0,0,0,15.6
+221965,0,0,0,15.6
+221966,0,0,0,15.6
+221967,0,0,0,15.6
+221968,0,368833.7702,0,15.6
+221969,0,0,0,15.6
+221970,0,0,0,15.6
+221971,0,0,0,15.6
+221972,0,0,0,15.6
+221973,0,0,0,15.6
+221974,0,0,0,15.6
+221975,0,0,0,15.6
+221976,0,0,0,15.6
+221977,0,0,0,15.6
+221978,0,0,0,15.6
+221979,0,0,0,15.6
+221980,0,0,0,15.6
+221981,0,0,0,15.6
+221982,0,0,0,15.6
+221983,0,0,0,15.6
+221984,339922.4292,0,681137.3547,15.6
+221985,0,0,0,15.6
+221986,0,0,0,15.6
+221987,0,0,0,15.6
+221988,0,0,0,15.6
+221989,0,0,0,15.6
+221990,0,0,0,15.6
+221991,0,0,0,15.6
+221992,0,0,0,15.6
+221993,0,0,0,15.6
+221994,0,0,0,15.6
+221995,0,0,0,15.6
+221996,0,0,0,15.6
+221997,0,0,0,15.6
+221998,0,0,0,15.6
+221999,0,0,0,15.6
+222000,0,0,0,17.8
+222001,0,0,0,17.8
+222002,0,0,0,17.8
+222003,0,368834.0488,0,17.8
+222004,0,0,0,17.8
+222005,0,0,0,17.8
+222006,0,0,0,17.8
+222007,0,0,0,17.8
+222008,0,0,0,17.8
+222009,0,0,0,17.8
+222010,0,0,0,17.8
+222011,0,0,0,17.8
+222012,0,0,0,17.8
+222013,0,0,0,17.8
+222014,0,0,0,17.8
+222015,0,0,0,17.8
+222016,0,0,0,17.8
+222017,0,0,0,17.8
+222018,0,0,680691.5882,17.8
+222019,339933.556,0,0,17.8
+222020,0,0,0,17.8
+222021,0,0,0,17.8
+222022,0,0,0,17.8
+222023,0,0,0,17.8
+222024,0,0,0,17.8
+222025,0,0,0,17.8
+222026,0,0,0,17.8
+222027,0,0,0,17.8
+222028,0,0,0,17.8
+222029,0,0,0,17.8
+222030,0,0,0,17.8
+222031,0,0,0,17.8
+222032,0,0,0,17.8
+222033,0,0,0,17.8
+222034,0,0,0,17.8
+222035,0,0,0,17.8
+222036,0,0,0,17.8
+222037,0,0,0,17.8
+222038,0,368833.7693,0,17.8
+222039,0,0,0,17.8
+222040,0,0,0,17.8
+222041,0,0,0,17.8
+222042,0,0,0,17.8
+222043,0,0,0,17.8
+222044,0,0,0,17.8
+222045,0,0,0,17.8
+222046,0,0,0,17.8
+222047,0,0,0,17.8
+222048,0,0,0,17.8
+222049,0,0,0,17.8
+222050,0,0,0,17.8
+222051,0,0,0,17.8
+222052,0,0,0,17.8
+222053,0,0,680181.7629,17.8
+222054,339936.4325,0,0,17.8
+222055,0,0,0,17.8
+222056,0,0,0,17.8
+222057,0,0,0,17.8
+222058,0,0,0,17.8
+222059,0,0,0,17.8
+222060,0,0,0,20
+222061,0,0,0,20
+222062,0,0,0,20
+222063,0,0,0,20
+222064,0,0,0,20
+222065,0,0,0,20
+222066,0,0,0,20
+222067,0,0,0,20
+222068,0,0,0,20
+222069,0,0,0,20
+222070,0,0,0,20
+222071,0,0,0,20
+222072,0,0,0,20
+222073,0,0,0,20
+222074,0,0,0,20
+222075,0,368837.1976,0,20
+222076,0,0,0,20
+222077,0,0,0,20
+222078,0,0,0,20
+222079,0,0,0,20
+222080,0,0,0,20
+222081,0,0,0,20
+222082,0,0,0,20
+222083,0,0,0,20
+222084,0,0,0,20
+222085,0,0,0,20
+222086,0,0,0,20
+222087,0,0,0,20
+222088,0,0,0,20
+222089,0,0,679671.4573,20
+222090,0,0,0,20
+222091,0,0,0,20
+222092,339938.9469,0,0,20
+222093,0,0,0,20
+222094,0,0,0,20
+222095,0,0,0,20
+222096,0,0,0,20
+222097,0,0,0,20
+222098,0,0,0,20
+222099,0,0,0,20
+222100,0,0,0,20
+222101,0,0,0,20
+222102,0,0,0,20
+222103,0,0,0,20
+222104,0,0,0,20
+222105,0,0,0,20
+222106,0,0,0,20
+222107,0,0,0,20
+222108,0,0,0,20
+222109,0,0,0,20
+222110,0,0,0,20
+222111,0,0,0,20
+222112,0,368845.6669,0,20
+222113,0,0,0,20
+222114,0,0,0,20
+222115,0,0,0,20
+222116,0,0,0,20
+222117,0,0,0,20
+222118,0,0,0,20
+222119,0,0,0,20
+222120,0,0,0,21
+222121,0,0,0,21
+222122,0,0,0,21
+222123,0,0,0,21
+222124,0,0,0,21
+222125,0,0,679008.4436,21
+222126,0,0,0,21
+222127,0,0,0,21
+222128,0,0,0,21
+222129,0,0,0,21
+222130,339929.2491,0,0,21
+222131,0,0,0,21
+222132,0,0,0,21
+222133,0,0,0,21
+222134,0,0,0,21
+222135,0,0,0,21
+222136,0,0,0,21
+222137,0,0,0,21
+222138,0,0,0,21
+222139,0,0,0,21
+222140,0,0,0,21
+222141,0,0,0,21
+222142,0,0,0,21
+222143,0,0,0,21
+222144,0,0,0,21
+222145,0,0,0,21
+222146,0,0,0,21
+222147,0,0,0,21
+222148,0,0,0,21
+222149,0,368853.9332,0,21
+222150,0,0,0,21
+222151,0,0,0,21
+222152,0,0,0,21
+222153,0,0,0,21
+222154,0,0,0,21
+222155,0,0,0,21
+222156,0,0,0,21
+222157,0,0,0,21
+222158,0,0,0,21
+222159,0,0,0,21
+222160,0,0,676499.9626,21
+222161,0,0,0,21
+222162,0,0,0,21
+222163,0,0,0,21
+222164,0,0,0,21
+222165,0,0,0,21
+222166,0,0,0,21
+222167,339907.5067,0,0,21
+222168,0,0,0,21
+222169,0,0,0,21
+222170,0,0,0,21
+222171,0,0,0,21
+222172,0,0,0,21
+222173,0,0,0,21
+222174,0,0,0,21
+222175,0,0,0,21
+222176,0,0,0,21
+222177,0,0,0,21
+222178,0,0,0,21
+222179,0,0,0,21
+222180,0,0,0,21
+222181,0,0,0,21
+222182,0,0,0,21
+222183,0,0,0,21
+222184,0,0,0,21
+222185,0,0,0,21
+222186,0,368862.6009,0,21
+222187,0,0,0,21
+222188,0,0,0,21
+222189,0,0,0,21
+222190,0,0,0,21
+222191,0,0,0,21
+222192,0,0,0,21
+222193,0,0,0,21
+222194,0,0,0,21
+222195,0,0,675640.3567,21
+222196,0,0,0,21
+222197,0,0,0,21
+222198,0,0,0,21
+222199,0,0,0,21
+222200,0,0,0,21
+222201,0,0,0,21
+222202,0,0,0,21
+222203,0,0,0,21
+222204,339902.2919,0,0,21
+222205,0,0,0,21
+222206,0,0,0,21
+222207,0,0,0,21
+222208,0,0,0,21
+222209,0,0,0,21
+222210,0,0,0,21
+222211,0,0,0,21
+222212,0,0,0,21
+222213,0,0,0,21
+222214,0,0,0,21
+222215,0,0,0,21
+222216,0,0,0,21
+222217,0,0,0,21
+222218,0,0,0,21
+222219,0,0,0,21
+222220,0,0,0,21
+222221,0,0,0,21
+222222,0,368870.8239,0,21
+222223,0,0,0,21
+222224,0,0,0,21
+222225,0,0,0,21
+222226,0,0,0,21
+222227,0,0,0,21
+222228,0,0,0,21
+222229,0,0,0,21
+222230,0,0,674090.2972,21
+222231,0,0,0,21
+222232,0,0,0,21
+222233,0,0,0,21
+222234,0,0,0,21
+222235,0,0,0,21
+222236,0,0,0,21
+222237,0,0,0,21
+222238,0,0,0,21
+222239,0,0,0,21
+222240,0,0,0,21
+222241,339921.1329,0,0,21
+222242,0,0,0,21
+222243,0,0,0,21
+222244,0,0,0,21
+222245,0,0,0,21
+222246,0,0,0,21
+222247,0,0,0,21
+222248,0,0,0,21
+222249,0,0,0,21
+222250,0,0,0,21
+222251,0,0,0,21
+222252,0,0,0,21
+222253,0,0,0,21
+222254,0,0,0,21
+222255,0,0,0,21
+222256,0,0,0,21
+222257,0,0,0,21
+222258,0,368879.0408,0,21
+222259,0,0,0,21
+222260,0,0,0,21
+222261,0,0,0,21
+222262,0,0,0,21
+222263,0,0,0,21
+222264,0,0,0,21
+222265,0,0,672724.8524,21
+222266,0,0,0,21
+222267,0,0,0,21
+222268,0,0,0,21
+222269,0,0,0,21
+222270,0,0,0,21
+222271,0,0,0,21
+222272,0,0,0,21
+222273,0,0,0,21
+222274,0,0,0,21
+222275,0,0,0,21
+222276,0,0,0,21
+222277,0,0,0,21
+222278,338051.2315,0,0,21
+222279,0,0,0,21
+222280,0,0,0,21
+222281,0,0,0,21
+222282,0,0,0,21
+222283,0,0,0,21
+222284,0,0,0,21
+222285,0,0,0,21
+222286,0,0,0,21
+222287,0,0,0,21
+222288,0,0,0,21
+222289,0,0,0,21
+222290,0,0,0,21
+222291,0,0,0,21
+222292,0,0,0,21
+222293,0,0,0,21
+222294,0,368887.2579,0,21
+222295,0,0,0,21
+222296,0,0,0,21
+222297,0,0,0,21
+222298,0,0,0,21
+222299,0,0,0,21
+222300,0,0,672237.4658,21
+222301,0,0,0,21
+222302,0,0,0,21
+222303,0,0,0,21
+222304,0,0,0,21
+222305,0,0,0,21
+222306,0,0,0,21
+222307,0,0,0,21
+222308,0,0,0,21
+222309,0,0,0,21
+222310,0,0,0,21
+222311,0,0,0,21
+222312,0,0,0,21
+222313,0,0,0,21
+222314,0,0,0,21
+222315,337958.29,0,0,21
+222316,0,0,0,21
+222317,0,0,0,21
+222318,0,0,0,21
+222319,0,0,0,21
+222320,0,0,0,21
+222321,0,0,0,21
+222322,0,0,0,21
+222323,0,0,0,21
+222324,0,0,0,21
+222325,0,0,0,21
+222326,0,0,0,21
+222327,0,0,0,21
+222328,0,0,0,21
+222329,0,0,0,21
+222330,0,368895.473,0,21
+222331,0,0,0,21
+222332,0,0,0,21
+222333,0,0,0,21
+222334,0,0,0,21
+222335,0,0,671502.2298,21
+222336,0,0,0,21
+222337,0,0,0,21
+222338,0,0,0,21
+222339,0,0,0,21
+222340,0,0,0,21
+222341,0,0,0,21
+222342,0,0,0,21
+222343,0,0,0,21
+222344,0,0,0,21
+222345,0,0,0,21
+222346,0,0,0,21
+222347,0,0,0,21
+222348,0,0,0,21
+222349,0,0,0,21
+222350,0,0,0,21
+222351,0,0,0,21
+222352,337951.0047,0,0,21
+222353,0,0,0,21
+222354,0,0,0,21
+222355,0,0,0,21
+222356,0,0,0,21
+222357,0,0,0,21
+222358,0,0,0,21
+222359,0,0,0,21
+222360,0,0,0,21
+222361,0,0,0,21
+222362,0,0,0,21
+222363,0,0,0,21
+222364,0,0,0,21
+222365,0,0,0,21
+222366,0,0,0,21
+222367,0,368903.9308,0,21
+222368,0,0,0,21
+222369,0,0,0,21
+222370,0,0,670985.6873,21
+222371,0,0,0,21
+222372,0,0,0,21
+222373,0,0,0,21
+222374,0,0,0,21
+222375,0,0,0,21
+222376,0,0,0,21
+222377,0,0,0,21
+222378,0,0,0,21
+222379,0,0,0,21
+222380,0,0,0,21
+222381,0,0,0,21
+222382,0,0,0,21
+222383,0,0,0,21
+222384,0,0,0,21
+222385,0,0,0,21
+222386,0,0,0,21
+222387,0,0,0,21
+222388,0,0,0,21
+222389,0,0,0,21
+222390,338117.7369,0,0,21
+222391,0,0,0,21
+222392,0,0,0,21
+222393,0,0,0,21
+222394,0,0,0,21
+222395,0,0,0,21
+222396,0,0,0,21
+222397,0,0,0,21
+222398,0,0,0,21
+222399,0,0,0,21
+222400,0,0,0,21
+222401,0,0,0,21
+222402,0,0,0,21
+222403,0,0,0,21
+222404,0,368912.3891,0,21
+222405,0,0,670461.7463,21
+222406,0,0,0,21
+222407,0,0,0,21
+222408,0,0,0,21
+222409,0,0,0,21
+222410,0,0,0,21
+222411,0,0,0,21
+222412,0,0,0,21
+222413,0,0,0,21
+222414,0,0,0,21
+222415,0,0,0,21
+222416,0,0,0,21
+222417,0,0,0,21
+222418,0,0,0,21
+222419,0,0,0,21
+222420,0,0,0,21
+222421,0,0,0,21
+222422,0,0,0,21
+222423,0,0,0,21
+222424,0,0,0,21
+222425,0,0,0,21
+222426,0,0,0,21
+222427,0,0,0,21
+222428,338138.4703,0,0,21
+222429,0,0,0,21
+222430,0,0,0,21
+222431,0,0,0,21
+222432,0,0,0,21
+222433,0,0,0,21
+222434,0,0,0,21
+222435,0,0,0,21
+222436,0,0,0,21
+222437,0,0,0,21
+222438,0,0,0,21
+222439,0,0,0,21
+222440,0,0,669623.2406,21
+222441,0,368920.845,0,21
+222442,0,0,0,21
+222443,0,0,0,21
+222444,0,0,0,21
+222445,0,0,0,21
+222446,0,0,0,21
+222447,0,0,0,21
+222448,0,0,0,21
+222449,0,0,0,21
+222450,0,0,0,21
+222451,0,0,0,21
+222452,0,0,0,21
+222453,0,0,0,21
+222454,0,0,0,21
+222455,0,0,0,21
+222456,0,0,0,21
+222457,0,0,0,21
+222458,0,0,0,21
+222459,0,0,0,21
+222460,0,0,0,21
+222461,0,0,0,21
+222462,0,0,0,21
+222463,0,0,0,21
+222464,0,0,0,21
+222465,0,0,0,21
+222466,338349.4543,0,0,21
+222467,0,0,0,21
+222468,0,0,0,21
+222469,0,0,0,21
+222470,0,0,0,21
+222471,0,0,0,21
+222472,0,0,0,21
+222473,0,0,0,21
+222474,0,0,0,21
+222475,0,0,0,21
+222476,0,0,669203.3742,21
+222477,0,0,0,21
+222478,0,368929.3007,0,21
+222479,0,0,0,21
+222480,0,0,0,21
+222481,0,0,0,21
+222482,0,0,0,21
+222483,0,0,0,21
+222484,0,0,0,21
+222485,0,0,0,21
+222486,0,0,0,21
+222487,0,0,0,21
+222488,0,0,0,21
+222489,0,0,0,21
+222490,0,0,0,21
+222491,0,0,0,21
+222492,0,0,0,21
+222493,0,0,0,21
+222494,0,0,0,21
+222495,0,0,0,21
+222496,0,0,0,21
+222497,0,0,0,21
+222498,0,0,0,21
+222499,0,0,0,21
+222500,0,0,0,21
+222501,0,0,0,21
+222502,0,0,0,21
+222503,0,0,0,21
+222504,339158.6116,0,0,21
+222505,0,0,0,21
+222506,0,0,0,21
+222507,0,0,0,21
+222508,0,0,0,21
+222509,0,0,0,21
+222510,0,0,0,21
+222511,0,0,0,21
+222512,0,0,669168.461,21
+222513,0,0,0,21
+222514,0,0,0,21
+222515,0,368937.7547,0,21
+222516,0,0,0,21
+222517,0,0,0,21
+222518,0,0,0,21
+222519,0,0,0,21
+222520,0,0,0,21
+222521,0,0,0,21
+222522,0,0,0,21
+222523,0,0,0,21
+222524,0,0,0,21
+222525,0,0,0,21
+222526,0,0,0,21
+222527,0,0,0,21
+222528,0,0,0,21
+222529,0,0,0,21
+222530,0,0,0,21
+222531,0,0,0,21
+222532,0,0,0,21
+222533,0,0,0,21
+222534,0,0,0,21
+222535,0,0,0,21
+222536,0,0,0,21
+222537,0,0,0,21
+222538,0,0,0,21
+222539,0,0,0,21
+222540,0,0,0,21
+222541,0,0,0,21
+222542,339980.6772,0,0,21
+222543,0,0,0,21
+222544,0,0,0,21
+222545,0,0,0,21
+222546,0,0,0,21
+222547,0,0,0,21
+222548,0,0,669241.1275,21
+222549,0,0,0,21
+222550,0,0,0,21
+222551,0,0,0,21
+222552,0,368946.2086,0,21
+222553,0,0,0,21
+222554,0,0,0,21
+222555,0,0,0,21
+222556,0,0,0,21
+222557,0,0,0,21
+222558,0,0,0,21
+222559,0,0,0,21
+222560,0,0,0,21
+222561,0,0,0,21
+222562,0,0,0,21
+222563,0,0,0,21
+222564,0,0,0,21
+222565,0,0,0,21
+222566,0,0,0,21
+222567,0,0,0,21
+222568,0,0,0,21
+222569,0,0,0,21
+222570,0,0,0,21
+222571,0,0,0,21
+222572,0,0,0,21
+222573,0,0,0,21
+222574,0,0,0,21
+222575,0,0,0,21
+222576,0,0,0,21
+222577,0,0,0,21
+222578,0,0,0,21
+222579,0,0,0,21
+222580,339988.2388,0,0,21
+222581,0,0,0,21
+222582,0,0,0,21
+222583,0,0,0,21
+222584,0,0,669206.263,21
+222585,0,0,0,21
+222586,0,0,0,21
+222587,0,0,0,21
+222588,0,0,0,21
+222589,0,368954.6624,0,21
+222590,0,0,0,21
+222591,0,0,0,21
+222592,0,0,0,21
+222593,0,0,0,21
+222594,0,0,0,21
+222595,0,0,0,21
+222596,0,0,0,21
+222597,0,0,0,21
+222598,0,0,0,21
+222599,0,0,0,21
+222600,0,0,0,21
+222601,0,0,0,21
+222602,0,0,0,21
+222603,0,0,0,21
+222604,0,0,0,21
+222605,0,0,0,21
+222606,0,0,0,21
+222607,0,0,0,21
+222608,0,0,0,21
+222609,0,0,0,21
+222610,0,0,0,21
+222611,0,0,0,21
+222612,0,0,0,21
+222613,0,0,0,21
+222614,0,0,0,21
+222615,0,0,0,21
+222616,0,0,0,21
+222617,0,0,0,21
+222618,339387.8536,0,0,21
+222619,0,0,669407.3389,21
+222620,0,0,0,21
+222621,0,0,0,21
+222622,0,0,0,21
+222623,0,0,0,21
+222624,0,0,0,21
+222625,0,0,0,21
+222626,0,368963.116,0,21
+222627,0,0,0,21
+222628,0,0,0,21
+222629,0,0,0,21
+222630,0,0,0,21
+222631,0,0,0,21
+222632,0,0,0,21
+222633,0,0,0,21
+222634,0,0,0,21
+222635,0,0,0,21
+222636,0,0,0,21
+222637,0,0,0,21
+222638,0,0,0,21
+222639,0,0,0,21
+222640,0,0,0,21
+222641,0,0,0,21
+222642,0,0,0,21
+222643,0,0,0,21
+222644,0,0,0,21
+222645,0,0,0,21
+222646,0,0,0,21
+222647,0,0,0,21
+222648,0,0,0,21
+222649,0,0,0,21
+222650,0,0,0,21
+222651,0,0,0,21
+222652,0,0,0,21
+222653,0,0,0,21
+222654,0,0,669130.5278,21
+222655,338116.8029,0,0,21
+222656,0,0,0,21
+222657,0,0,0,21
+222658,0,0,0,21
+222659,0,0,0,21
+222660,0,0,0,21
+222661,0,0,0,21
+222662,0,0,0,21
+222663,0,368971.5684,0,21
+222664,0,0,0,21
+222665,0,0,0,21
+222666,0,0,0,21
+222667,0,0,0,21
+222668,0,0,0,21
+222669,0,0,0,21
+222670,0,0,0,21
+222671,0,0,0,21
+222672,0,0,0,21
+222673,0,0,0,21
+222674,0,0,0,21
+222675,0,0,0,21
+222676,0,0,0,21
+222677,0,0,0,21
+222678,0,0,0,21
+222679,0,0,0,21
+222680,0,0,0,21
+222681,0,0,0,21
+222682,0,0,0,21
+222683,0,0,0,21
+222684,0,0,0,21
+222685,0,0,0,21
+222686,0,0,0,21
+222687,0,0,0,21
+222688,0,0,0,21
+222689,0,0,669337.7514,21
+222690,0,0,0,21
+222691,0,0,0,21
+222692,337832.734,0,0,21
+222693,0,0,0,21
+222694,0,0,0,21
+222695,0,0,0,21
+222696,0,0,0,21
+222697,0,0,0,21
+222698,0,0,0,21
+222699,0,0,0,21
+222700,0,368980.023,0,21
+222701,0,0,0,21
+222702,0,0,0,21
+222703,0,0,0,21
+222704,0,0,0,21
+222705,0,0,0,21
+222706,0,0,0,21
+222707,0,0,0,21
+222708,0,0,0,21
+222709,0,0,0,21
+222710,0,0,0,21
+222711,0,0,0,21
+222712,0,0,0,21
+222713,0,0,0,21
+222714,0,0,0,21
+222715,0,0,0,21
+222716,0,0,0,21
+222717,0,0,0,21
+222718,0,0,0,21
+222719,0,0,0,21
+222720,0,0,0,21
+222721,0,0,0,21
+222722,0,0,0,21
+222723,0,0,0,21
+222724,0,0,669194.7294,21
+222725,0,0,0,21
+222726,0,0,0,21
+222727,0,0,0,21
+222728,0,0,0,21
+222729,337763.9487,0,0,21
+222730,0,0,0,21
+222731,0,0,0,21
+222732,0,0,0,21
+222733,0,0,0,21
+222734,0,0,0,21
+222735,0,0,0,21
+222736,0,0,0,21
+222737,0,368988.4796,0,21
+222738,0,0,0,21
+222739,0,0,0,21
+222740,0,0,0,21
+222741,0,0,0,21
+222742,0,0,0,21
+222743,0,0,0,21
+222744,0,0,0,21
+222745,0,0,0,21
+222746,0,0,0,21
+222747,0,0,0,21
+222748,0,0,0,21
+222749,0,0,0,21
+222750,0,0,0,21
+222751,0,0,0,21
+222752,0,0,0,21
+222753,0,0,0,21
+222754,0,0,0,21
+222755,0,0,0,21
+222756,0,0,0,21
+222757,0,0,0,21
+222758,0,0,0,21
+222759,0,0,669138.5906,21
+222760,0,0,0,21
+222761,0,0,0,21
+222762,0,0,0,21
+222763,0,0,0,21
+222764,0,0,0,21
+222765,0,0,0,21
+222766,337767.6945,0,0,21
+222767,0,0,0,21
+222768,0,0,0,21
+222769,0,0,0,21
+222770,0,0,0,21
+222771,0,0,0,21
+222772,0,0,0,21
+222773,0,368996.6889,0,21
+222774,0,0,0,21
+222775,0,0,0,21
+222776,0,0,0,21
+222777,0,0,0,21
+222778,0,0,0,21
+222779,0,0,0,21
+222780,0,0,0,21
+222781,0,0,0,21
+222782,0,0,0,21
+222783,0,0,0,21
+222784,0,0,0,21
+222785,0,0,0,21
+222786,0,0,0,21
+222787,0,0,0,21
+222788,0,0,0,21
+222789,0,0,0,21
+222790,0,0,0,21
+222791,0,0,0,21
+222792,0,0,0,21
+222793,0,0,0,21
+222794,0,0,669426.2098,21
+222795,0,0,0,21
+222796,0,0,0,21
+222797,0,0,0,21
+222798,0,0,0,21
+222799,0,0,0,21
+222800,0,0,0,21
+222801,0,0,0,21
+222802,0,0,0,21
+222803,337882.4261,0,0,21
+222804,0,0,0,21
+222805,0,0,0,21
+222806,0,0,0,21
+222807,0,0,0,21
+222808,0,0,0,21
+222809,0,368998.6704,0,21
+222810,0,0,0,21
+222811,0,0,0,21
+222812,0,0,0,21
+222813,0,0,0,21
+222814,0,0,0,21
+222815,0,0,0,21
+222816,0,0,0,21
+222817,0,0,0,21
+222818,0,0,0,21
+222819,0,0,0,21
+222820,0,0,0,21
+222821,0,0,0,21
+222822,0,0,0,21
+222823,0,0,0,21
+222824,0,0,0,21
+222825,0,0,0,21
+222826,0,0,0,21
+222827,0,0,0,21
+222828,0,0,0,21
+222829,0,0,668880.0588,21
+222830,0,0,0,21
+222831,0,0,0,21
+222832,0,0,0,21
+222833,0,0,0,21
+222834,0,0,0,21
+222835,0,0,0,21
+222836,0,0,0,21
+222837,0,0,0,21
+222838,0,0,0,21
+222839,0,0,0,21
+222840,338059.6364,0,0,21
+222841,0,0,0,21
+222842,0,0,0,21
+222843,0,0,0,21
+222844,0,0,0,21
+222845,0,368998.6709,0,21
+222846,0,0,0,21
+222847,0,0,0,21
+222848,0,0,0,21
+222849,0,0,0,21
+222850,0,0,0,21
+222851,0,0,0,21
+222852,0,0,0,21
+222853,0,0,0,21
+222854,0,0,0,21
+222855,0,0,0,21
+222856,0,0,0,21
+222857,0,0,0,21
+222858,0,0,0,21
+222859,0,0,0,21
+222860,0,0,0,21
+222861,0,0,0,21
+222862,0,0,0,21
+222863,0,0,0,21
+222864,0,0,668508.4877,21
+222865,0,0,0,21
+222866,0,0,0,21
+222867,0,0,0,21
+222868,0,0,0,21
+222869,0,0,0,21
+222870,0,0,0,21
+222871,0,0,0,21
+222872,0,0,0,21
+222873,0,0,0,21
+222874,0,0,0,21
+222875,0,0,0,21
+222876,0,0,0,21
+222877,338622.841,0,0,21
+222878,0,0,0,21
+222879,0,0,0,21
+222880,0,0,0,21
+222881,0,368998.6709,0,21
+222882,0,0,0,21
+222883,0,0,0,21
+222884,0,0,0,21
+222885,0,0,0,21
+222886,0,0,0,21
+222887,0,0,0,21
+222888,0,0,0,21
+222889,0,0,0,21
+222890,0,0,0,21
+222891,0,0,0,21
+222892,0,0,0,21
+222893,0,0,0,21
+222894,0,0,0,21
+222895,0,0,0,21
+222896,0,0,0,21
+222897,0,0,0,21
+222898,0,0,0,21
+222899,0,0,668558.599,21
+222900,0,0,0,21
+222901,0,0,0,21
+222902,0,0,0,21
+222903,0,0,0,21
+222904,0,0,0,21
+222905,0,0,0,21
+222906,0,0,0,21
+222907,0,0,0,21
+222908,0,0,0,21
+222909,0,0,0,21
+222910,0,0,0,21
+222911,0,0,0,21
+222912,0,0,0,21
+222913,0,0,0,21
+222914,338159.3206,0,0,21
+222915,0,0,0,21
+222916,0,0,0,21
+222917,0,368998.6704,0,21
+222918,0,0,0,21
+222919,0,0,0,21
+222920,0,0,0,21
+222921,0,0,0,21
+222922,0,0,0,21
+222923,0,0,0,21
+222924,0,0,0,21
+222925,0,0,0,21
+222926,0,0,0,21
+222927,0,0,0,21
+222928,0,0,0,21
+222929,0,0,0,21
+222930,0,0,0,21
+222931,0,0,0,21
+222932,0,0,0,21
+222933,0,0,0,21
+222934,0,0,668414.3777,21
+222935,0,0,0,21
+222936,0,0,0,21
+222937,0,0,0,21
+222938,0,0,0,21
+222939,0,0,0,21
+222940,0,0,0,21
+222941,0,0,0,21
+222942,0,0,0,21
+222943,0,0,0,21
+222944,0,0,0,21
+222945,0,0,0,21
+222946,0,0,0,21
+222947,0,0,0,21
+222948,0,0,0,21
+222949,0,0,0,21
+222950,0,0,0,21
+222951,337854.6848,0,0,21
+222952,0,0,0,21
+222953,0,368998.6703,0,21
+222954,0,0,0,21
+222955,0,0,0,21
+222956,0,0,0,21
+222957,0,0,0,21
+222958,0,0,0,21
+222959,0,0,0,21
+222960,0,0,0,21
+222961,0,0,0,21
+222962,0,0,0,21
+222963,0,0,0,21
+222964,0,0,0,21
+222965,0,0,0,21
+222966,0,0,0,21
+222967,0,0,0,21
+222968,0,0,0,21
+222969,0,0,0,21
+222970,0,0,667962.3989,21
+222971,0,0,0,21
+222972,0,0,0,21
+222973,0,0,0,21
+222974,0,0,0,21
+222975,0,0,0,21
+222976,0,0,0,21
+222977,0,0,0,21
+222978,0,0,0,21
+222979,0,0,0,21
+222980,0,0,0,21
+222981,0,0,0,21
+222982,0,0,0,21
+222983,0,0,0,21
+222984,0,0,0,21
+222985,0,0,0,21
+222986,0,0,0,21
+222987,0,0,0,21
+222988,0,0,0,21
+222989,0,0,0,21
+222990,339209.5627,368998.6732,0,21
+222991,0,0,0,21
+222992,0,0,0,21
+222993,0,0,0,21
+222994,0,0,0,21
+222995,0,0,0,21
+222996,0,0,0,21
+222997,0,0,0,21
+222998,0,0,0,21
+222999,0,0,0,21
+223000,0,0,0,21
+223001,0,0,0,21
+223002,0,0,0,21
+223003,0,0,0,21
+223004,0,0,0,21
+223005,0,0,0,21
+223006,0,0,667225.0912,21
+223007,0,0,0,21
+223008,0,0,0,21
+223009,0,0,0,21
+223010,0,0,0,21
+223011,0,0,0,21
+223012,0,0,0,21
+223013,0,0,0,21
+223014,0,0,0,21
+223015,0,0,0,21
+223016,0,0,0,21
+223017,0,0,0,21
+223018,0,0,0,21
+223019,0,0,0,21
+223020,0,0,0,21
+223021,0,0,0,21
+223022,0,0,0,21
+223023,0,0,0,21
+223024,0,0,0,21
+223025,0,0,0,21
+223026,0,0,0,21
+223027,0,0,0,21
+223028,340028.3296,368998.6732,0,21
+223029,0,0,0,21
+223030,0,0,0,21
+223031,0,0,0,21
+223032,0,0,0,21
+223033,0,0,0,21
+223034,0,0,0,21
+223035,0,0,0,21
+223036,0,0,0,21
+223037,0,0,0,21
+223038,0,0,0,21
+223039,0,0,0,21
+223040,0,0,0,21
+223041,0,0,666825.5827,21
+223042,0,0,0,21
+223043,0,0,0,21
+223044,0,0,0,21
+223045,0,0,0,21
+223046,0,0,0,21
+223047,0,0,0,21
+223048,0,0,0,21
+223049,0,0,0,21
+223050,0,0,0,21
+223051,0,0,0,21
+223052,0,0,0,21
+223053,0,0,0,21
+223054,0,0,0,21
+223055,0,0,0,21
+223056,0,0,0,21
+223057,0,0,0,21
+223058,0,0,0,21
+223059,0,0,0,21
+223060,0,0,0,21
+223061,0,0,0,21
+223062,0,0,0,21
+223063,0,0,0,21
+223064,0,0,0,21
+223065,340028.3296,0,0,21
+223066,0,368830.2411,0,21
+223067,0,0,0,21
+223068,0,0,0,21
+223069,0,0,0,21
+223070,0,0,0,21
+223071,0,0,0,21
+223072,0,0,0,21
+223073,0,0,0,21
+223074,0,0,0,21
+223075,0,0,0,21
+223076,0,0,666512.9929,21
+223077,0,0,0,21
+223078,0,0,0,21
+223079,0,0,0,21
+223080,0,0,0,15.6
+223081,0,0,0,15.6
+223082,0,0,0,15.6
+223083,0,0,0,15.6
+223084,0,0,0,15.6
+223085,0,0,0,15.6
+223086,0,0,0,15.6
+223087,0,0,0,15.6
+223088,0,0,0,15.6
+223089,0,0,0,15.6
+223090,0,0,0,15.6
+223091,0,0,0,15.6
+223092,0,0,0,15.6
+223093,0,0,0,15.6
+223094,0,0,0,15.6
+223095,0,0,0,15.6
+223096,0,0,0,15.6
+223097,0,0,0,15.6
+223098,0,0,0,15.6
+223099,0,0,0,15.6
+223100,0,0,0,15.6
+223101,0,0,0,15.6
+223102,340028.1339,0,0,15.6
+223103,0,368998.6735,0,15.6
+223104,0,0,0,15.6
+223105,0,0,0,15.6
+223106,0,0,0,15.6
+223107,0,0,0,15.6
+223108,0,0,0,15.6
+223109,0,0,0,15.6
+223110,0,0,0,15.6
+223111,0,0,666522.7907,15.6
+223112,0,0,0,15.6
+223113,0,0,0,15.6
+223114,0,0,0,15.6
+223115,0,0,0,15.6
+223116,0,0,0,15.6
+223117,0,0,0,15.6
+223118,0,0,0,15.6
+223119,0,0,0,15.6
+223120,0,0,0,15.6
+223121,0,0,0,15.6
+223122,0,0,0,15.6
+223123,0,0,0,15.6
+223124,0,0,0,15.6
+223125,0,0,0,15.6
+223126,0,0,0,15.6
+223127,0,0,0,15.6
+223128,0,0,0,15.6
+223129,0,0,0,15.6
+223130,0,0,0,15.6
+223131,0,0,0,15.6
+223132,0,0,0,15.6
+223133,0,0,0,15.6
+223134,0,0,0,15.6
+223135,0,0,0,15.6
+223136,0,0,0,15.6
+223137,0,0,0,15.6
+223138,0,0,0,15.6
+223139,340028.3296,0,0,15.6
+223140,0,368998.6735,0,15.6
+223141,0,0,0,15.6
+223142,0,0,0,15.6
+223143,0,0,0,15.6
+223144,0,0,0,15.6
+223145,0,0,0,15.6
+223146,0,0,666073.2605,15.6
+223147,0,0,0,15.6
+223148,0,0,0,15.6
+223149,0,0,0,15.6
+223150,0,0,0,15.6
+223151,0,0,0,15.6
+223152,0,0,0,15.6
+223153,0,0,0,15.6
+223154,0,0,0,15.6
+223155,0,0,0,15.6
+223156,0,0,0,15.6
+223157,0,0,0,15.6
+223158,0,0,0,15.6
+223159,0,0,0,15.6
+223160,0,0,0,15.6
+223161,0,0,0,15.6
+223162,0,0,0,15.6
+223163,0,0,0,15.6
+223164,0,0,0,15.6
+223165,0,0,0,15.6
+223166,0,0,0,15.6
+223167,0,0,0,15.6
+223168,0,0,0,15.6
+223169,0,0,0,15.6
+223170,0,0,0,15.6
+223171,0,0,0,15.6
+223172,0,0,0,15.6
+223173,0,0,0,15.6
+223174,0,0,0,15.6
+223175,340028.0879,368998.3748,0,15.6
+223176,0,0,0,15.6
+223177,0,0,0,15.6
+223178,0,0,0,15.6
+223179,0,0,0,15.6
+223180,0,0,0,15.6
+223181,0,0,665554.7681,15.6
+223182,0,0,0,15.6
+223183,0,0,0,15.6
+223184,0,0,0,15.6
+223185,0,0,0,15.6
+223186,0,0,0,15.6
+223187,0,0,0,15.6
+223188,0,0,0,15.6
+223189,0,0,0,15.6
+223190,0,0,0,15.6
+223191,0,0,0,15.6
+223192,0,0,0,15.6
+223193,0,0,0,15.6
+223194,0,0,0,15.6
+223195,0,0,0,15.6
+223196,0,0,0,15.6
+223197,0,0,0,15.6
+223198,0,0,0,15.6
+223199,0,0,0,15.6
+223200,0,0,0,15.6
+223201,0,0,0,15.6
+223202,0,0,0,15.6
+223203,0,0,0,15.6
+223204,0,0,0,15.6
+223205,0,0,0,15.6
+223206,0,0,0,15.6
+223207,0,0,0,15.6
+223208,0,0,0,15.6
+223209,0,0,0,15.6
+223210,0,368998.4532,0,15.6
+223211,340028.1293,0,0,15.6
+223212,0,0,0,15.6
+223213,0,0,0,15.6
+223214,0,0,0,15.6
+223215,0,0,0,15.6
+223216,0,0,666076.8703,15.6
+223217,0,0,0,15.6
+223218,0,0,0,15.6
+223219,0,0,0,15.6
+223220,0,0,0,15.6
+223221,0,0,0,15.6
+223222,0,0,0,15.6
+223223,0,0,0,15.6
+223224,0,0,0,15.6
+223225,0,0,0,15.6
+223226,0,0,0,15.6
+223227,0,0,0,15.6
+223228,0,0,0,15.6
+223229,0,0,0,15.6
+223230,0,0,0,15.6
+223231,0,0,0,15.6
+223232,0,0,0,15.6
+223233,0,0,0,15.6
+223234,0,0,0,15.6
+223235,0,0,0,15.6
+223236,0,0,0,15.6
+223237,0,0,0,15.6
+223238,0,0,0,15.6
+223239,0,0,0,15.6
+223240,0,0,0,15.6
+223241,0,0,0,15.6
+223242,0,0,0,15.6
+223243,0,0,0,15.6
+223244,0,0,0,15.6
+223245,0,369172.4818,0,15.6
+223246,0,0,0,15.6
+223247,340028.0926,0,0,15.6
+223248,0,0,0,15.6
+223249,0,0,0,15.6
+223250,0,0,0,15.6
+223251,0,0,665191.8922,15.6
+223252,0,0,0,15.6
+223253,0,0,0,15.6
+223254,0,0,0,15.6
+223255,0,0,0,15.6
+223256,0,0,0,15.6
+223257,0,0,0,15.6
+223258,0,0,0,15.6
+223259,0,0,0,15.6
+223260,0,0,0,15.6
+223261,0,0,0,15.6
+223262,0,0,0,15.6
+223263,0,0,0,15.6
+223264,0,0,0,15.6
+223265,0,0,0,15.6
+223266,0,0,0,15.6
+223267,0,0,0,15.6
+223268,0,0,0,15.6
+223269,0,0,0,15.6
+223270,0,0,0,15.6
+223271,0,0,0,15.6
+223272,0,0,0,15.6
+223273,0,0,0,15.6
+223274,0,0,0,15.6
+223275,0,0,0,15.6
+223276,0,0,0,15.6
+223277,0,0,0,15.6
+223278,0,0,0,15.6
+223279,0,0,0,15.6
+223280,0,369180.3324,0,15.6
+223281,0,0,0,15.6
+223282,0,0,0,15.6
+223283,340028.1354,0,0,15.6
+223284,0,0,0,15.6
+223285,0,0,0,15.6
+223286,0,0,666139.9353,15.6
+223287,0,0,0,15.6
+223288,0,0,0,15.6
+223289,0,0,0,15.6
+223290,0,0,0,15.6
+223291,0,0,0,15.6
+223292,0,0,0,15.6
+223293,0,0,0,15.6
+223294,0,0,0,15.6
+223295,0,0,0,15.6
+223296,0,0,0,15.6
+223297,0,0,0,15.6
+223298,0,0,0,15.6
+223299,0,0,0,15.6
+223300,0,0,0,15.6
+223301,0,0,0,15.6
+223302,0,0,0,15.6
+223303,0,0,0,15.6
+223304,0,0,0,15.6
+223305,0,0,0,15.6
+223306,0,0,0,15.6
+223307,0,0,0,15.6
+223308,0,0,0,15.6
+223309,0,0,0,15.6
+223310,0,0,0,15.6
+223311,0,0,0,15.6
+223312,0,0,0,15.6
+223313,0,0,0,15.6
+223314,0,0,0,15.6
+223315,0,369145.487,0,15.6
+223316,0,0,0,15.6
+223317,0,0,0,15.6
+223318,0,0,0,15.6
+223319,340028.3296,0,0,15.6
+223320,0,0,0,15.6
+223321,0,0,667144.2447,15.6
+223322,0,0,0,15.6
+223323,0,0,0,15.6
+223324,0,0,0,15.6
+223325,0,0,0,15.6
+223326,0,0,0,15.6
+223327,0,0,0,15.6
+223328,0,0,0,15.6
+223329,0,0,0,15.6
+223330,0,0,0,15.6
+223331,0,0,0,15.6
+223332,0,0,0,15.6
+223333,0,0,0,15.6
+223334,0,0,0,15.6
+223335,0,0,0,15.6
+223336,0,0,0,15.6
+223337,0,0,0,15.6
+223338,0,0,0,15.6
+223339,0,0,0,15.6
+223340,0,0,0,15.6
+223341,0,0,0,15.6
+223342,0,0,0,15.6
+223343,0,0,0,15.6
+223344,0,0,0,15.6
+223345,0,0,0,15.6
+223346,0,0,0,15.6
+223347,0,0,0,15.6
+223348,0,0,0,15.6
+223349,0,0,0,15.6
+223350,0,369140.8469,0,15.6
+223351,0,0,0,15.6
+223352,0,0,0,15.6
+223353,0,0,0,15.6
+223354,0,0,0,15.6
+223355,340028.1446,0,0,15.6
+223356,0,0,667638.1642,15.6
+223357,0,0,0,15.6
+223358,0,0,0,15.6
+223359,0,0,0,15.6
+223360,0,0,0,15.6
+223361,0,0,0,15.6
+223362,0,0,0,15.6
+223363,0,0,0,15.6
+223364,0,0,0,15.6
+223365,0,0,0,15.6
+223366,0,0,0,15.6
+223367,0,0,0,15.6
+223368,0,0,0,15.6
+223369,0,0,0,15.6
+223370,0,0,0,15.6
+223371,0,0,0,15.6
+223372,0,0,0,15.6
+223373,0,0,0,15.6
+223374,0,0,0,15.6
+223375,0,0,0,15.6
+223376,0,0,0,15.6
+223377,0,0,0,15.6
+223378,0,0,0,15.6
+223379,0,0,0,15.6
+223380,0,0,0,15.6
+223381,0,0,0,15.6
+223382,0,0,0,15.6
+223383,0,0,0,15.6
+223384,0,0,0,15.6
+223385,0,369140.2727,0,15.6
+223386,0,0,0,15.6
+223387,0,0,0,15.6
+223388,0,0,0,15.6
+223389,0,0,0,15.6
+223390,0,0,0,15.6
+223391,340028.0948,0,665924.7546,15.6
+223392,0,0,0,15.6
+223393,0,0,0,15.6
+223394,0,0,0,15.6
+223395,0,0,0,15.6
+223396,0,0,0,15.6
+223397,0,0,0,15.6
+223398,0,0,0,15.6
+223399,0,0,0,15.6
+223400,0,0,0,15.6
+223401,0,0,0,15.6
+223402,0,0,0,15.6
+223403,0,0,0,15.6
+223404,0,0,0,15.6
+223405,0,0,0,15.6
+223406,0,0,0,15.6
+223407,0,0,0,15.6
+223408,0,0,0,15.6
+223409,0,0,0,15.6
+223410,0,0,0,15.6
+223411,0,0,0,15.6
+223412,0,0,0,15.6
+223413,0,0,0,15.6
+223414,0,0,0,15.6
+223415,0,0,0,15.6
+223416,0,0,0,15.6
+223417,0,0,0,15.6
+223418,0,0,0,15.6
+223419,0,0,0,15.6
+223420,0,369136.9141,0,15.6
+223421,0,0,0,15.6
+223422,0,0,0,15.6
+223423,0,0,0,15.6
+223424,0,0,0,15.6
+223425,0,0,0,15.6
+223426,0,0,665742.3669,15.6
+223427,340028.3296,0,0,15.6
+223428,0,0,0,15.6
+223429,0,0,0,15.6
+223430,0,0,0,15.6
+223431,0,0,0,15.6
+223432,0,0,0,15.6
+223433,0,0,0,15.6
+223434,0,0,0,15.6
+223435,0,0,0,15.6
+223436,0,0,0,15.6
+223437,0,0,0,15.6
+223438,0,0,0,15.6
+223439,0,0,0,15.6
+223440,0,0,0,17.8
+223441,0,0,0,17.8
+223442,0,0,0,17.8
+223443,0,0,0,17.8
+223444,0,0,0,17.8
+223445,0,0,0,17.8
+223446,0,0,0,17.8
+223447,0,0,0,17.8
+223448,0,0,0,17.8
+223449,0,0,0,17.8
+223450,0,0,0,17.8
+223451,0,0,0,17.8
+223452,0,0,0,17.8
+223453,0,0,0,17.8
+223454,0,0,0,17.8
+223455,0,369136.0708,0,17.8
+223456,0,0,0,17.8
+223457,0,0,0,17.8
+223458,0,0,0,17.8
+223459,0,0,0,17.8
+223460,0,0,0,17.8
+223461,0,0,666841.7319,17.8
+223462,0,0,0,17.8
+223463,340028.0971,0,0,17.8
+223464,0,0,0,17.8
+223465,0,0,0,17.8
+223466,0,0,0,17.8
+223467,0,0,0,17.8
+223468,0,0,0,17.8
+223469,0,0,0,17.8
+223470,0,0,0,17.8
+223471,0,0,0,17.8
+223472,0,0,0,17.8
+223473,0,0,0,17.8
+223474,0,0,0,17.8
+223475,0,0,0,17.8
+223476,0,0,0,17.8
+223477,0,0,0,17.8
+223478,0,0,0,17.8
+223479,0,0,0,17.8
+223480,0,0,0,17.8
+223481,0,0,0,17.8
+223482,0,0,0,17.8
+223483,0,0,0,17.8
+223484,0,0,0,17.8
+223485,0,0,0,17.8
+223486,0,0,0,17.8
+223487,0,0,0,17.8
+223488,0,0,0,17.8
+223489,0,0,0,17.8
+223490,0,369138.5542,0,17.8
+223491,0,0,0,17.8
+223492,0,0,0,17.8
+223493,0,0,0,17.8
+223494,0,0,0,17.8
+223495,0,0,0,17.8
+223496,0,0,667647.13,17.8
+223497,0,0,0,17.8
+223498,0,0,0,17.8
+223499,340028.0962,0,0,17.8
+223500,0,0,0,20
+223501,29638.17137,42826.99551,0,20
+223502,1672.614674,0,0,20
+223503,26744.18661,43878.31824,0,20
+223504,59238.5616,74871.60701,0,20
+223505,32636.52342,51770.02449,0,20
+223506,51492.25227,58693.69221,0,20
+223507,82517.29706,62067.96805,0,20
+223508,80764.48357,79944.85773,0,20
+223509,75943.47611,68877.30848,0,20
+223510,80465.78383,72910.09205,0,20
+223511,80932.18244,73369.4281,0,20
+223512,81569.30256,74649.6709,0,20
+223513,81985.89705,89215.84153,0,20
+223514,82021.95281,80298.07019,0,20
+223515,83162.90028,84715.45169,0,20
+223516,82990.95153,88883.24861,0,20
+223517,83471.034,87069.61684,0,20
+223518,84132.35916,88616.07368,0,20
+223519,84271.10974,88715.20816,0,20
+223520,84716.55014,89794.85356,0,20
+223521,85066.71405,89720.87507,0,20
+223522,85401.82524,90824.43474,0,20
+223523,85869.90562,90792.76298,0,20
+223524,86114.22463,91770.24176,0,20
+223525,86515.10618,91680.33803,0,20
+223526,86740.41121,92471.726,0,20
+223527,87103.19829,92896.74074,0,20
+223528,87533.70314,93214.51869,0,20
+223529,90353.99694,93560.21643,0,20
+223530,89713.59062,94143.71696,0,20
+223531,90032.31477,94364.7409,0,20
+223532,90650.10794,93910.36834,0,20
+223533,90593.17317,94807.52267,0,20
+223534,91036.53514,94852.86449,0,20
+223535,91416.05238,95937.49255,0,20
+223536,91307.55855,95546.97328,0,20
+223537,91809.93329,95755.96524,0,20
+223538,91729.99791,95868.32816,0,20
+223539,92135.11311,95414.64442,0,20
+223540,92124.43326,95835.23176,0,20
+223541,92629.99994,95312.18771,0,20
+223542,92361.27436,95573.86328,0,20
+223543,92838.36871,95461.99408,0,20
+223544,92891.80937,94754.96486,0,20
+223545,92843.13803,95624.33131,0,20
+223546,93227.39518,94353.01012,0,20
+223547,93256.98553,95138.99708,0,20
+223548,93123.28154,94174.07263,0,20
+223549,93629.12514,94721.36305,0,20
+223550,93321.12291,93677.7211,0,20
+223551,93680.08142,94142.58694,0,20
+223552,93805.10944,93379.62842,0,20
+223553,93537.86441,93323.08408,0,20
+223554,93856.90115,93175.40464,0,20
+223555,93794.48499,93018.98462,0,20
+223556,94014.00411,91930.15119,0,20
+223557,94214.6528,92341.81438,0,20
+223558,93624.3302,92005.38072,0,20
+223559,94107.62059,91263.18627,0,20
+223560,94184.70748,91070.24676,0,21
+223561,83663.36321,82870.40651,0,21
+223562,82802.61222,81795.01483,0,21
+223563,82330.29901,81409.98646,0,21
+223564,82242.83569,81364.07662,0,21
+223565,81918.66967,80878.55609,0,21
+223566,81589.02182,80802.83099,0,21
+223567,81504.07672,80719.93408,0,21
+223568,81520.98169,80286.07989,0,21
+223569,81023.25717,80108.40292,0,21
+223570,81078.47599,80087.71683,0,21
+223571,80885.58901,79627.00041,0,21
+223572,80358.94914,79995.12851,0,21
+223573,80423.18994,78941.0304,0,21
+223574,80486.65038,79458.64094,0,21
+223575,79866.54134,78912.25082,0,21
+223576,79750.31677,78785.15485,0,21
+223577,79831.5,78671.17301,0,21
+223578,79373.19445,78428.49404,0,21
+223579,79432.07282,77928.82373,0,21
+223580,79016.98561,78248.0685,0,21
+223581,78877.29236,77679.54865,0,21
+223582,78853.23079,77405.78469,0,21
+223583,78556.16379,77519.90593,0,21
+223584,78387.03802,77029.49761,0,21
+223585,77426.64358,77046.23427,0,21
+223586,77553.62201,76419.71919,0,21
+223587,77249.21524,76579.29074,0,21
+223588,76978.20204,76257.53447,0,21
+223589,76962.59233,76015.11468,0,21
+223590,76566.40804,75883.18336,0,21
+223591,76535.67912,75417.5427,0,21
+223592,76234.22536,75568.91291,0,21
+223593,76307.38309,75291.65618,0,21
+223594,76050.18281,75130.69334,0,21
+223595,76092.74996,74714.80486,0,21
+223596,75701.55303,75165.47126,0,21
+223597,76144.56076,74509.02748,0,21
+223598,75317.60842,74591.31669,0,21
+223599,75709.43313,74430.62259,0,21
+223600,75204.66809,74445.68996,0,21
+223601,75527.62572,73849.21204,0,21
+223602,74964.46688,74244.16638,0,21
+223603,75245.43532,74047.52607,0,21
+223604,74950.62588,73335.19177,0,21
+223605,74842.79227,74072.90713,0,21
+223606,74923.557,73234.37601,0,21
+223607,74445.78458,73466.90155,0,21
+223608,74726.32539,73238.65531,0,21
+223609,74503.04103,73137.50823,0,21
+223610,74117.24973,72876.84555,0,21
+223611,74398.89819,73045.55214,0,21
+223612,74092.63452,72542.00454,0,21
+223613,73949.16313,72683.83864,0,21
+223614,73961.78158,72449.92889,0,21
+223615,73646.98545,71947.13024,0,21
+223616,74011.14395,72260.72628,0,21
+223617,73272.61433,71518.44131,0,21
+223618,73629.27843,71767.34474,0,21
+223619,73203.88012,71706.48372,0,21
+223620,73337.11971,71049.22902,0,21
+223621,21315.49886,26897.16791,0,21
+223622,19600.67445,24073.51514,0,21
+223623,18738.12602,23299.04763,0,21
+223624,18521.41755,22703.78572,0,21
+223625,17889.09811,21954.29951,0,21
+223626,17800.00639,21862.51526,0,21
+223627,17295.64682,20604.36687,0,21
+223628,16983.36014,20637.95611,0,21
+223629,16807.37122,19920.48248,0,21
+223630,16406.63067,19303.37705,0,21
+223631,16095.36768,19065.32965,0,21
+223632,15957.10861,18357.74058,0,21
+223633,15523.34894,18178.03021,0,21
+223634,15352.90256,17759.38447,0,21
+223635,14932.86138,17307.88405,0,21
+223636,14928.18518,17250.23918,0,21
+223637,14565.03531,16827.81364,0,21
+223638,14091.47997,16335.39291,0,21
+223639,14253.72174,16308.62049,0,21
+223640,13732.41594,15856.34944,0,21
+223641,13454.69763,15610.44752,0,21
+223642,13584.20381,15143.79656,0,21
+223643,12904.54459,15112.10785,0,21
+223644,12896.47241,14637.53023,0,21
+223645,12624.45592,14415.75122,0,21
+223646,12472.65801,14112.66377,0,21
+223647,12280.4114,13927.33368,0,21
+223648,12012.67936,13430.75165,0,21
+223649,11802.14127,13146.42149,0,21
+223650,11422.15288,13168.20171,0,21
+223651,11346.75207,12651.37804,0,21
+223652,10455.02302,12419.07391,0,21
+223653,10351.59169,12169.88268,0,21
+223654,9449.469316,12131.61774,0,21
+223655,9269.639962,11669.36884,0,21
+223656,8541.096611,11412.28432,0,21
+223657,8271.405679,11165.92521,0,21
+223658,7543.005269,11099.34741,0,21
+223659,6449.24147,10438.08856,0,21
+223660,5570.639811,10376.9752,0,21
+223661,5210.369769,9882.258603,0,21
+223662,4803.540877,9882.235147,0,21
+223663,4244.695652,9384.232215,0,21
+223664,3763.174149,9125.62675,0,21
+223665,3432.899201,8843.477318,0,21
+223666,2841.10977,8599.743834,0,21
+223667,2493.331059,8338.329253,0,21
+223668,1953.90296,8053.106302,0,21
+223669,1909.507299,7587.788511,0,21
+223670,1824.548867,7519.06097,0,21
+223671,1796.535074,7276.434934,0,21
+223672,1753.112829,6758.859459,0,21
+223673,1681.974549,6735.758108,0,21
+223674,1637.765128,6236.525122,0,21
+223675,1586.88932,6196.214463,0,21
+223676,1535.673587,5387.700853,0,21
+223677,1476.500215,5370.464655,0,21
+223678,1430.59509,4635.583407,0,21
+223679,1356.509301,4769.047827,0,21
+223680,1339.050055,4330.55089,0,21
+223681,1249.978965,3982.037996,0,21
+223682,1111.209245,3695.763742,0,21
+223683,1015.018214,3167.401049,0,21
+223684,970.7622898,3365.231561,0,21
+223685,900.2280595,2547.324068,0,21
+223686,872.1378528,2511.9255,0,21
+223687,858.0417871,2061.847362,0,21
+223688,858.0416912,1853.48073,0,21
+223689,829.7457839,1835.573693,0,21
+223690,815.5449853,1786.813597,0,21
+223691,815.5448963,1701.718126,0,21
+223692,787.0355291,1719.808843,0,21
+223693,772.725917,1625.133463,0,21
+223694,758.3790501,1609.538244,0,21
+223695,758.3789712,1541.588856,0,21
+223696,715.1096637,1523.185524,0,21
+223697,729.5713677,1473.257661,0,21
+223698,686.0669385,1395.222549,0,21
+223699,700.6082052,1385.883197,0,21
+223700,656.861312,1335.387297,0,21
+223701,656.8612514,1316.605656,0,21
+223702,642.1956728,1221.371364,0,21
+223703,627.4872922,1221.371407,0,21
+223704,597.9391023,1141.409108,0,21
+223705,597.9390516,1151.020783,0,21
+223706,583.0975606,1034.770513,0,21
+223707,553.2754897,1070.45422,0,21
+223708,553.275446,962.9597927,0,21
+223709,523.2614507,972.8482636,0,21
+223710,523.2614115,890.4752846,0,21
+223711,493.0470266,854.000477,0,21
+223712,493.0469918,790.7430826,0,21
+223713,462.6227162,769.8639119,0,21
+223714,462.6226855,689.5400649,0,21
+223715,447.3285214,667.6343552,0,21
+223716,416.5687916,586.3004212,0,21
+223717,431.9777162,586.3004603,0,21
+223718,385.5693072,531.4653421,0,21
+223719,401.0998684,489.9894497,0,21
+223720,369.974971,448.1914993,0,21
+223721,354.3148017,420.1355384,0,21
+223722,354.3147837,363.5276853,0,21
+223723,322.7873472,334.955299,0,21
+223724,322.7873322,291.7256222,0,21
+223725,290.9654557,248.0014886,0,21
+223726,306.9146863,203.7101585,0,21
+223727,258.8229829,158.7478575,0,21
+223728,274.9361303,128.3243907,0,21
+223729,242.6216506,66.03382731,0,21
+223730,226.3273153,50.04747674,0,21
+223731,226.327308,0,0,21
+223732,209.9344123,0,0,21
+223733,193.4365509,0,0,21
+223734,176.8262436,0,0,21
+223735,160.0946283,0,0,21
+223736,160.0946247,0,0,21
+223737,126.2222977,0,0,21
+223738,126.2222955,0,0,21
+223739,109.0518483,0,0,21
+223740,74.13113588,0,0,21
+223741,56.30801675,0,0,21
+223742,28.92488933,0,0,21
+223743,19.54815916,0,0,21
+223744,0,0,0,21
+223745,0,0,0,21
+223746,0,0,0,21
+223747,0,0,0,21
+223748,0,0,0,21
+223749,0,0,0,21
+223750,0,0,0,21
+223751,0,0,0,21
+223752,0,0,0,21
+223753,0,0,0,21
+223754,0,0,0,21
+223755,0,0,0,21
+223756,0,0,0,21
+223757,0,0,0,21
+223758,0,0,0,21
+223759,0,0,0,21
+223760,0,0,0,21
+223761,0,0,0,21
+223762,0,0,0,21
+223763,0,0,0,21
+223764,0,0,0,21
+223765,0,0,0,21
+223766,0,0,0,21
+223767,0,0,0,21
+223768,0,0,0,21
+223769,0,0,0,21
+223770,0,0,0,21
+223771,0,0,0,21
+223772,0,0,0,21
+223773,0,0,0,21
+223774,0,0,0,21
+223775,0,0,0,21
+223776,0,0,0,21
+223777,0,0,0,21
+223778,0,0,0,21
+223779,0,0,0,21
+223780,0,0,0,21
+223781,0,0,0,21
+223782,0,0,0,21
+223783,0,0,0,21
+223784,0,0,0,21
+223785,0,0,0,21
+223786,0,0,0,21
+223787,0,0,0,21
+223788,0,0,0,21
+223789,0,0,0,21
+223790,0,0,0,21
+223791,0,0,0,21
+223792,0,0,0,21
+223793,0,0,0,21
+223794,0,0,0,21
+223795,0,0,0,21
+223796,0,0,0,21
+223797,0,0,0,21
+223798,0,0,0,21
+223799,0,0,0,21
+223800,0,0,0,21
+223801,0,0,0,21
+223802,0,0,0,21
+223803,0,0,0,21
+223804,0,0,0,21
+223805,0,0,0,21
+223806,0,0,0,21
+223807,0,0,0,21
+223808,0,0,0,21
+223809,0,0,0,21
+223810,0,0,0,21
+223811,0,0,0,21
+223812,0,0,0,21
+223813,0,0,0,21
+223814,0,0,0,21
+223815,0,0,0,21
+223816,0,0,0,21
+223817,0,0,0,21
+223818,0,0,0,21
+223819,0,0,0,21
+223820,0,0,0,21
+223821,0,0,0,21
+223822,0,0,0,21
+223823,0,0,0,21
+223824,0,0,0,21
+223825,0,0,0,21
+223826,0,0,0,21
+223827,0,0,0,21
+223828,0,0,0,21
+223829,0,0,0,21
+223830,0,0,0,21
+223831,0,0,0,21
+223832,0,0,0,21
+223833,0,0,0,21
+223834,0,0,0,21
+223835,0,0,0,21
+223836,0,0,0,21
+223837,0,0,0,21
+223838,0,0,0,21
+223839,0,0,0,21
+223840,0,0,0,21
+223841,0,0,0,21
+223842,0,0,0,21
+223843,0,0,0,21
+223844,0,0,0,21
+223845,0,0,0,21
+223846,0,0,0,21
+223847,0,0,0,21
+223848,0,0,0,21
+223849,0,0,0,21
+223850,0,0,0,21
+223851,0,0,0,21
+223852,0,0,0,21
+223853,0,0,0,21
+223854,0,0,0,21
+223855,0,0,0,21
+223856,0,0,0,21
+223857,0,0,0,21
+223858,0,0,0,21
+223859,0,0,0,21
+223860,0,0,0,21
+223861,0,0,0,21
+223862,0,0,0,21
+223863,0,0,0,21
+223864,0,0,0,21
+223865,0,0,0,21
+223866,0,0,0,21
+223867,0,0,0,21
+223868,0,0,0,21
+223869,0,0,0,21
+223870,0,0,0,21
+223871,0,0,0,21
+223872,0,0,0,21
+223873,0,0,0,21
+223874,0,0,0,21
+223875,0,0,0,21
+223876,0,0,0,21
+223877,0,0,0,21
+223878,0,0,0,21
+223879,0,0,0,21
+223880,0,0,0,21
+223881,0,0,0,21
+223882,0,0,0,21
+223883,0,0,0,21
+223884,0,0,0,21
+223885,0,0,0,21
+223886,0,0,0,21
+223887,0,0,0,21
+223888,0,0,0,21
+223889,0,0,0,21
+223890,0,0,0,21
+223891,0,0,0,21
+223892,0,0,0,21
+223893,0,0,0,21
+223894,0,0,0,21
+223895,0,0,0,21
+223896,0,0,0,21
+223897,0,0,0,21
+223898,0,0,0,21
+223899,0,0,0,21
+223900,0,0,0,21
+223901,0,0,0,21
+223902,0,0,0,21
+223903,0,0,0,21
+223904,0,0,0,21
+223905,0,0,0,21
+223906,0,0,0,21
+223907,0,0,0,21
+223908,0,0,0,21
+223909,0,0,0,21
+223910,0,0,0,21
+223911,0,0,0,21
+223912,0,0,0,21
+223913,0,0,0,21
+223914,0,0,0,21
+223915,0,0,0,21
+223916,0,0,0,21
+223917,0,0,0,21
+223918,0,0,0,21
+223919,0,0,0,21
+223920,0,0,0,21
+223921,0,0,0,21
+223922,0,0,0,21
+223923,0,0,0,21
+223924,0,0,0,21
+223925,0,0,0,21
+223926,0,0,0,21
+223927,0,0,0,21
+223928,0,0,0,21
+223929,0,0,0,21
+223930,0,0,0,21
+223931,0,0,0,21
+223932,0,0,0,21
+223933,0,0,0,21
+223934,0,0,0,21
+223935,0,0,0,21
+223936,0,0,0,21
+223937,0,0,0,21
+223938,0,0,0,21
+223939,0,0,0,21
+223940,0,0,0,21
+223941,0,0,0,21
+223942,0,0,0,21
+223943,0,0,0,21
+223944,0,0,0,21
+223945,0,0,0,21
+223946,0,0,0,21
+223947,0,0,0,21
+223948,0,0,0,21
+223949,0,0,0,21
+223950,0,0,0,21
+223951,0,0,0,21
+223952,0,0,0,21
+223953,0,0,0,21
+223954,0,0,0,21
+223955,0,0,0,21
+223956,0,0,0,21
+223957,0,0,0,21
+223958,0,0,0,21
+223959,0,0,0,21
+223960,0,0,0,21
+223961,0,0,0,21
+223962,0,0,0,21
+223963,0,0,0,21
+223964,0,0,0,21
+223965,0,0,0,21
+223966,0,0,0,21
+223967,0,0,0,21
+223968,0,0,0,21
+223969,0,0,0,21
+223970,0,0,0,21
+223971,0,0,0,21
+223972,0,0,0,21
+223973,0,0,0,21
+223974,0,0,0,21
+223975,0,0,0,21
+223976,0,0,0,21
+223977,0,0,0,21
+223978,0,0,0,21
+223979,0,0,0,21
+223980,0,0,0,21
+223981,0,0,0,21
+223982,0,0,0,21
+223983,0,0,0,21
+223984,0,0,0,21
+223985,0,0,0,21
+223986,0,0,0,21
+223987,0,0,0,21
+223988,0,0,0,21
+223989,0,0,0,21
+223990,0,0,0,21
+223991,0,0,0,21
+223992,0,0,0,21
+223993,0,0,0,21
+223994,0,0,0,21
+223995,0,0,0,21
+223996,0,0,0,21
+223997,0,0,0,21
+223998,0,0,0,21
+223999,0,0,0,21
+224000,0,0,0,21
+224001,0,0,0,21
+224002,0,0,0,21
+224003,0,0,0,21
+224004,0,0,0,21
+224005,0,0,0,21
+224006,0,0,0,21
+224007,0,0,0,21
+224008,0,0,0,21
+224009,0,0,0,21
+224010,0,0,0,21
+224011,0,0,0,21
+224012,0,0,0,21
+224013,0,0,0,21
+224014,0,0,0,21
+224015,0,0,0,21
+224016,0,0,0,21
+224017,0,0,0,21
+224018,0,0,0,21
+224019,0,0,0,21
+224020,0,0,0,21
+224021,0,0,0,21
+224022,0,0,0,21
+224023,0,0,0,21
+224024,0,0,0,21
+224025,0,0,0,21
+224026,0,0,0,21
+224027,0,0,0,21
+224028,0,0,0,21
+224029,0,0,0,21
+224030,0,0,0,21
+224031,0,0,0,21
+224032,0,0,0,21
+224033,0,0,0,21
+224034,0,0,0,21
+224035,0,0,0,21
+224036,0,0,0,21
+224037,0,0,0,21
+224038,0,0,0,21
+224039,0,0,0,21
+224040,0,0,0,21
+224041,0,0,0,21
+224042,0,0,0,21
+224043,0,0,0,21
+224044,0,0,0,21
+224045,0,0,0,21
+224046,0,0,0,21
+224047,0,0,0,21
+224048,0,0,0,21
+224049,0,0,0,21
+224050,0,0,0,21
+224051,0,0,0,21
+224052,0,0,0,21
+224053,0,0,0,21
+224054,0,0,0,21
+224055,0,0,0,21
+224056,0,0,0,21
+224057,0,0,0,21
+224058,0,0,0,21
+224059,0,0,0,21
+224060,0,0,0,21
+224061,0,0,0,21
+224062,0,0,0,21
+224063,0,0,0,21
+224064,0,0,0,21
+224065,0,0,0,21
+224066,0,0,0,21
+224067,0,0,0,21
+224068,0,0,0,21
+224069,0,0,0,21
+224070,0,0,0,21
+224071,0,0,0,21
+224072,0,0,0,21
+224073,0,0,0,21
+224074,0,0,0,21
+224075,0,0,0,21
+224076,0,0,0,21
+224077,0,0,0,21
+224078,0,0,0,21
+224079,0,0,0,21
+224080,0,0,0,21
+224081,0,0,0,21
+224082,0,0,0,21
+224083,0,0,0,21
+224084,0,0,0,21
+224085,0,0,0,21
+224086,0,0,0,21
+224087,0,0,0,21
+224088,0,0,0,21
+224089,0,0,0,21
+224090,0,0,0,21
+224091,0,0,0,21
+224092,0,0,0,21
+224093,0,0,0,21
+224094,0,0,0,21
+224095,0,0,0,21
+224096,0,0,0,21
+224097,0,0,0,21
+224098,0,0,0,21
+224099,0,0,0,21
+224100,0,0,0,21
+224101,0,0,0,21
+224102,0,0,0,21
+224103,0,0,0,21
+224104,0,0,0,21
+224105,0,0,0,21
+224106,0,0,0,21
+224107,0,0,0,21
+224108,0,0,0,21
+224109,0,0,0,21
+224110,0,0,0,21
+224111,0,0,0,21
+224112,0,0,0,21
+224113,0,0,0,21
+224114,0,0,0,21
+224115,0,0,0,21
+224116,0,0,0,21
+224117,0,0,0,21
+224118,0,0,0,21
+224119,0,0,0,21
+224120,0,0,0,21
+224121,0,0,0,21
+224122,0,0,0,21
+224123,0,0,0,21
+224124,0,0,0,21
+224125,0,0,0,21
+224126,0,0,0,21
+224127,0,0,0,21
+224128,0,0,0,21
+224129,0,0,0,21
+224130,0,0,0,21
+224131,0,0,0,21
+224132,0,0,0,21
+224133,0,0,0,21
+224134,0,0,0,21
+224135,0,0,0,21
+224136,0,0,0,21
+224137,0,0,0,21
+224138,0,0,0,21
+224139,0,0,0,21
+224140,0,0,0,21
+224141,0,0,0,21
+224142,0,0,0,21
+224143,0,0,0,21
+224144,0,0,0,21
+224145,0,0,0,21
+224146,0,0,0,21
+224147,0,0,0,21
+224148,0,0,0,21
+224149,0,0,0,21
+224150,0,0,0,21
+224151,0,0,0,21
+224152,0,0,0,21
+224153,0,0,0,21
+224154,0,0,0,21
+224155,0,0,0,21
+224156,0,0,0,21
+224157,0,0,0,21
+224158,0,0,0,21
+224159,0,0,0,21
+224160,0,0,0,21
+224161,0,0,0,21
+224162,0,0,0,21
+224163,0,0,0,21
+224164,0,0,0,21
+224165,0,0,0,21
+224166,0,0,0,21
+224167,0,0,0,21
+224168,0,0,0,21
+224169,0,0,0,21
+224170,0,0,0,21
+224171,0,0,0,21
+224172,0,0,0,21
+224173,0,0,0,21
+224174,0,0,0,21
+224175,0,0,0,21
+224176,0,0,0,21
+224177,0,0,0,21
+224178,0,0,0,21
+224179,0,0,0,21
+224180,0,0,0,21
+224181,0,0,0,21
+224182,0,0,0,21
+224183,0,0,0,21
+224184,0,0,0,21
+224185,0,0,0,21
+224186,0,0,0,21
+224187,0,0,0,21
+224188,0,0,0,21
+224189,0,0,0,21
+224190,0,0,0,21
+224191,0,0,0,21
+224192,0,0,0,21
+224193,0,0,0,21
+224194,0,0,0,21
+224195,0,0,0,21
+224196,0,0,0,21
+224197,0,0,0,21
+224198,0,0,0,21
+224199,0,0,0,21
+224200,0,0,0,21
+224201,0,0,0,21
+224202,0,0,0,21
+224203,0,0,0,21
+224204,0,0,0,21
+224205,0,0,0,21
+224206,0,0,0,21
+224207,0,0,0,21
+224208,0,0,0,21
+224209,0,0,0,21
+224210,0,0,0,21
+224211,0,0,0,21
+224212,0,0,0,21
+224213,0,0,0,21
+224214,0,0,0,21
+224215,0,0,0,21
+224216,0,0,0,21
+224217,0,0,0,21
+224218,0,0,0,21
+224219,0,0,0,21
+224220,0,0,0,21
+224221,0,0,0,21
+224222,0,0,0,21
+224223,0,0,0,21
+224224,0,0,0,21
+224225,0,0,0,21
+224226,0,0,0,21
+224227,0,0,0,21
+224228,0,0,0,21
+224229,0,0,0,21
+224230,0,0,0,21
+224231,0,0,0,21
+224232,0,0,0,21
+224233,0,0,0,21
+224234,0,0,0,21
+224235,0,0,0,21
+224236,0,0,0,21
+224237,0,0,0,21
+224238,0,0,0,21
+224239,0,0,0,21
+224240,0,0,0,21
+224241,0,0,0,21
+224242,0,0,0,21
+224243,0,0,0,21
+224244,0,0,0,21
+224245,0,0,0,21
+224246,0,0,0,21
+224247,0,0,0,21
+224248,0,0,0,21
+224249,0,0,0,21
+224250,0,0,0,21
+224251,0,0,0,21
+224252,0,0,0,21
+224253,0,0,0,21
+224254,0,0,0,21
+224255,0,0,0,21
+224256,0,0,0,21
+224257,0,0,0,21
+224258,0,0,0,21
+224259,0,0,0,21
+224260,0,0,0,21
+224261,0,0,0,21
+224262,299.2289919,0,0,21
+224263,1646.932908,0,0,21
+224264,990.0003279,0,0,21
+224265,1517.442374,0,0,21
+224266,1775.611426,0,0,21
+224267,1775.611426,0,0,21
+224268,2030.724856,0,0,21
+224269,2283.110579,0,0,21
+224270,2408.362578,0,0,21
+224271,2657.118585,0,0,21
+224272,2780.668696,0,0,21
+224273,2903.694068,0,0,21
+224274,3148.242237,0,0,21
+224275,3390.892129,0,0,21
+224276,3390.892231,0,0,21
+224277,3631.75448,0,0,21
+224278,3870.924766,0,0,21
+224279,3989.901928,0,0,21
+224280,4108.486757,0,0,21
+224281,4344.514289,0,0,21
+224282,4344.514394,0,0,21
+224283,4695.822599,0,0,21
+224284,4695.82249,0,0,21
+224285,4928.289271,0,0,21
+224286,5044.020565,0,0,21
+224287,5159.425042,0,0,21
+224288,5389.276597,0,0,21
+224289,5389.276424,0,0,21
+224290,5731.736333,0,0,21
+224291,5617.885129,0,0,21
+224292,5958.553242,0,0,21
+224293,6071.527968,0,0,21
+224294,6071.526854,0,0,21
+224295,6408.7661,0,0,21
+224296,6408.766031,0,0,21
+224297,6520.629029,0,0,21
+224298,6743.552338,0,0,21
+224299,6854.618861,0,0,21
+224300,6854.618698,0,0,21
+224301,7186.277499,0,0,21
+224302,7186.277064,0,0,21
+224303,7296.325675,0,0,21
+224304,7515.684387,0,0,21
+224305,7624.99927,0,0,21
+224306,7734.07511,0,0,21
+224307,7734.074622,0,0,21
+224308,8059.890972,0,0,21
+224309,8059.890359,0,0,21
+224310,8168.03279,0,0,21
+224311,8383.646402,0,0,21
+224312,8383.647962,0,0,21
+224313,8598.360673,0,0,21
+224314,8812.196568,0,0,21
+224315,8705.386629,0,0,21
+224316,9025.17068,0,0,21
+224317,9025.170007,0,0,21
+224318,9237.29882,0,0,21
+224319,9237.298299,0,0,21
+224320,9448.594095,0,0,21
+224321,9553.933746,0,0,21
+224322,9659.070333,0,0,21
+224323,9764.005386,0,0,21
+224324,9868.738493,0,0,21
+224325,10077.61424,0,0,21
+224326,10077.61346,0,0,21
+224327,10181.75873,0,0,21
+224328,10389.46913,0,0,21
+224329,10493.03654,0,0,21
+224330,10493.03623,0,0,21
+224331,10699.60385,0,0,21
+224332,10802.60576,0,0,21
+224333,10943.73998,0,0,21
+224334,11066.10802,0,0,21
+224335,11330.88233,0,0,21
+224336,11262.74725,362.5213342,0,21
+224337,11594.2275,1199.899754,0,21
+224338,11610.88355,871.5375319,0,21
+224339,11745.58686,1199.899741,0,21
+224340,11948.50959,1361.70092,0,21
+224341,12433.0617,1996.412126,0,21
+224342,12865.77422,2152.437047,0,21
+224343,12897.19873,2461.76907,0,21
+224344,13204.01763,2615.174243,0,21
+224345,13342.18097,2615.174244,0,21
+224346,13456.77552,3070.820738,0,21
+224347,13685.29851,2919.665963,0,21
+224348,13799.23214,3371.093992,0,21
+224349,14139.76897,3371.093995,0,21
+224350,14252.83281,3520.26286,0,21
+224351,14463.44488,3668.816545,0,21
+224352,14605.664,3964.157617,0,21
+224353,14815.16437,3964.157624,0,21
+224354,14927.0317,4257.261095,0,21
+224355,15150.16691,4290.359216,0,21
+224356,15372.52302,4721.916569,0,21
+224357,15387.03727,4663.193613,0,21
+224358,15608.54232,5001.225892,0,21
+224359,15814.94293,5154.670809,0,21
+224360,16151.0921,5183.463739,0,21
+224361,16161.26039,5488.631888,0,21
+224362,16470.70133,5649.919906,0,21
+224363,16607.16899,5678.026285,0,21
+224364,16658.32612,5970.834624,0,21
+224365,17077.84902,6130.491832,0,21
+224366,17091.82493,6167.278315,0,21
+224367,17334.56396,6448.272996,0,21
+224368,17465.05224,6615.512766,0,21
+224369,17683.9006,6650.874774,0,21
+224370,17822.24824,7227.47108,0,21
+224371,18045.08983,7269.751913,0,21
+224372,18262.10988,7390.979571,0,21
+224373,18284.17665,7667.3502,0,21
+224374,18535.87535,7912.499557,0,21
+224375,18729.54204,7944.382414,0,21
+224376,18778.23641,8292.759384,0,21
+224377,19185.52283,8446.832204,0,21
+224378,19106.82526,8656.456477,0,21
+224379,19447.19661,8865.094228,0,21
+224380,19455.37233,10184.62608,0,21
+224381,19877.24812,11267.96775,0,21
+224382,19715.82076,11590.4685,0,21
+224383,20110.03076,11612.10329,0,21
+224384,20594.19291,12538.05584,0,21
+224385,20898.89646,12961.20331,0,21
+224386,21038.44063,13128.72205,0,21
+224387,21218.14682,14013.35154,0,21
+224388,21300.82948,14206.5201,0,21
+224389,21480.04775,14867.69851,0,21
+224390,21687.13405,15227.96229,0,21
+224391,21919.06162,15689.07251,0,21
+224392,21944.37269,16030.04646,0,21
+224393,22153.01916,16720.98205,0,21
+224394,22355.53104,17091.61243,0,21
+224395,22572.82445,17486.77221,0,21
+224396,22613.13995,17906.25025,0,21
+224397,22817.21241,18298.81998,0,21
+224398,22842.09347,19038.71658,0,21
+224399,23228.57802,19184.48797,0,21
+224400,23260.87819,19799.61251,0,21
+224401,23300.61169,20114.88598,0,21
+224402,23650.09812,20330.51013,0,21
+224403,23515.17642,21212.47413,0,21
+224404,23903.20007,21140.88443,0,21
+224405,23729.14473,21961.27008,0,21
+224406,24116.12532,22118.18662,0,21
+224407,23966.81577,22610.50221,0,21
+224408,24335.88706,23224.68199,0,21
+224409,24367.50813,23383.74055,0,21
+224410,24391.63416,23642.54652,0,21
+224411,24579.13506,24354.56502,0,21
+224412,24775.44725,24602.73342,0,21
+224413,24629.90307,25094.63853,0,21
+224414,25000.66503,25556.98321,0,21
+224415,25024.53854,26005.57211,0,21
+224416,25039.18702,26273.57284,0,21
+224417,25246.23369,27035.88806,0,21
+224418,25260.83733,27088.3512,0,21
+224419,25443.64192,27700.45596,0,21
+224420,25690.40468,28091.65812,0,21
+224421,25671.39737,28410.98834,0,21
+224422,25898.44022,29071.67951,0,21
+224423,25898.44467,28940.83154,0,21
+224424,26091.50114,29998.51142,0,21
+224425,26120.31426,29933.32097,0,21
+224426,26298.48402,30460.86699,0,21
+224427,26336.09946,31124.2942,0,21
+224428,26350.44562,30981.25679,0,21
+224429,26710.82084,31919.87735,0,21
+224430,26556.72602,33101.65193,0,21
+224431,26748.20458,33850.65289,0,21
+224432,26785.46681,34488.23137,0,21
+224433,26953.45366,34792.11811,0,21
+224434,26979.14847,35806.02113,0,21
+224435,27158.17161,36250.68638,0,21
+224436,27195.20373,36574.49353,0,21
+224437,27217.98225,37728.42784,0,21
+224438,27376.50682,37806.96625,0,21
+224439,27588.72718,38608.02904,0,21
+224440,27421.99042,39105.68412,0,21
+224441,27639.5277,39888.66227,0,21
+224442,27791.80362,40154.15252,0,21
+224443,27817.15744,40813.65698,0,21
+224444,27853.70508,41345.04349,0,21
+224445,28030.86903,42065.93046,0,21
+224446,28030.87442,42482.91874,0,21
+224447,28232.79891,43222.986,0,21
+224448,28257.932,43623.58057,0,21
+224449,28255.14971,44287.35169,0,21
+224450,28448.13552,44590.3116,0,21
+224451,28467.60719,45500.79844,0,21
+224452,28649.01058,45903.83007,0,21
+224453,28503.6948,46370.68331,0,21
+224454,28835.54275,46820.08314,0,21
+224455,28718.2348,47641.18636,0,21
+224456,29021.6096,47835.94952,0,21
+224457,28929.38482,48682.40932,0,21
+224458,29071.32347,48964.09998,0,21
+224459,29093.3219,49676.39026,0,21
+224460,29129.01911,50115.07034,0,21
+224461,0,0,0,21
+224462,0,0,0,21
+224463,0,0,0,21
+224464,0,0,0,21
+224465,0,0,664615.8709,21
+224466,340052.6264,367925.3368,0,21
+224467,0,0,0,21
+224468,0,0,0,21
+224469,0,0,0,21
+224470,0,0,0,21
+224471,0,0,0,21
+224472,0,0,0,21
+224473,0,0,0,21
+224474,0,0,0,21
+224475,0,0,0,21
+224476,0,0,0,21
+224477,0,0,0,21
+224478,0,0,0,21
+224479,0,0,0,21
+224480,0,0,0,21
+224481,0,0,0,21
+224482,0,0,0,21
+224483,0,0,0,21
+224484,0,0,0,21
+224485,0,0,0,21
+224486,0,0,0,21
+224487,0,0,0,21
+224488,0,0,0,21
+224489,0,0,0,21
+224490,0,0,0,21
+224491,0,0,0,21
+224492,0,0,0,21
+224493,0,0,0,21
+224494,0,0,0,21
+224495,0,0,0,21
+224496,0,0,0,21
+224497,0,0,0,21
+224498,0,0,0,21
+224499,0,0,664417.953,21
+224500,0,0,0,21
+224501,340027.653,368957.2936,0,21
+224502,0,0,0,21
+224503,0,0,0,21
+224504,0,0,0,21
+224505,0,0,0,21
+224506,0,0,0,21
+224507,0,0,0,21
+224508,0,0,0,21
+224509,0,0,0,21
+224510,0,0,0,21
+224511,0,0,0,21
+224512,0,0,0,21
+224513,0,0,0,21
+224514,0,0,0,21
+224515,0,0,0,21
+224516,0,0,0,21
+224517,0,0,0,21
+224518,0,0,0,21
+224519,0,0,0,21
+224520,0,0,0,15.6
+224521,0,0,0,15.6
+224522,0,0,0,15.6
+224523,0,0,0,15.6
+224524,0,0,0,15.6
+224525,0,0,0,15.6
+224526,0,0,0,15.6
+224527,0,0,0,15.6
+224528,0,0,0,15.6
+224529,0,0,0,15.6
+224530,0,0,0,15.6
+224531,0,0,0,15.6
+224532,0,0,0,15.6
+224533,0,0,664821.9345,15.6
+224534,0,0,0,15.6
+224535,0,0,0,15.6
+224536,0,368965.2188,0,15.6
+224537,340015.2771,0,0,15.6
+224538,0,0,0,15.6
+224539,0,0,0,15.6
+224540,0,0,0,15.6
+224541,0,0,0,15.6
+224542,0,0,0,15.6
+224543,0,0,0,15.6
+224544,0,0,0,15.6
+224545,0,0,0,15.6
+224546,0,0,0,15.6
+224547,0,0,0,15.6
+224548,0,0,0,15.6
+224549,0,0,0,15.6
+224550,0,0,0,15.6
+224551,0,0,0,15.6
+224552,0,0,0,15.6
+224553,0,0,0,15.6
+224554,0,0,0,15.6
+224555,0,0,0,15.6
+224556,0,0,0,15.6
+224557,0,0,0,15.6
+224558,0,0,0,15.6
+224559,0,0,0,15.6
+224560,0,0,0,15.6
+224561,0,0,0,15.6
+224562,0,0,0,15.6
+224563,0,0,0,15.6
+224564,0,0,0,15.6
+224565,0,0,0,15.6
+224566,0,0,0,15.6
+224567,0,0,664821.1168,15.6
+224568,0,0,0,15.6
+224569,0,0,0,15.6
+224570,0,0,0,15.6
+224571,0,368973.1361,0,15.6
+224572,0,0,0,15.6
+224573,340015.7172,0,0,15.6
+224574,0,0,0,15.6
+224575,0,0,0,15.6
+224576,0,0,0,15.6
+224577,0,0,0,15.6
+224578,0,0,0,15.6
+224579,0,0,0,15.6
+224580,0,0,0,15.6
+224581,0,0,0,15.6
+224582,0,0,0,15.6
+224583,0,0,0,15.6
+224584,0,0,0,15.6
+224585,0,0,0,15.6
+224586,0,0,0,15.6
+224587,0,0,0,15.6
+224588,0,0,0,15.6
+224589,0,0,0,15.6
+224590,0,0,0,15.6
+224591,0,0,0,15.6
+224592,0,0,0,15.6
+224593,0,0,0,15.6
+224594,0,0,0,15.6
+224595,0,0,0,15.6
+224596,0,0,0,15.6
+224597,0,0,0,15.6
+224598,0,0,0,15.6
+224599,0,0,0,15.6
+224600,0,0,0,15.6
+224601,0,0,0,15.6
+224602,0,0,665789.3537,15.6
+224603,0,0,0,15.6
+224604,0,0,0,15.6
+224605,0,0,0,15.6
+224606,0,368975.3538,0,15.6
+224607,0,0,0,15.6
+224608,0,0,0,15.6
+224609,339990.4895,0,0,15.6
+224610,0,0,0,15.6
+224611,0,0,0,15.6
+224612,0,0,0,15.6
+224613,0,0,0,15.6
+224614,0,0,0,15.6
+224615,0,0,0,15.6
+224616,0,0,0,15.6
+224617,0,0,0,15.6
+224618,0,0,0,15.6
+224619,0,0,0,15.6
+224620,0,0,0,15.6
+224621,0,0,0,15.6
+224622,0,0,0,15.6
+224623,0,0,0,15.6
+224624,0,0,0,15.6
+224625,0,0,0,15.6
+224626,0,0,0,15.6
+224627,0,0,0,15.6
+224628,0,0,0,15.6
+224629,0,0,0,15.6
+224630,0,0,0,15.6
+224631,0,0,0,15.6
+224632,0,0,0,15.6
+224633,0,0,0,15.6
+224634,0,0,0,15.6
+224635,0,0,0,15.6
+224636,0,0,0,15.6
+224637,0,0,665671.1386,15.6
+224638,0,0,0,15.6
+224639,0,0,0,15.6
+224640,0,0,0,15.6
+224641,0,369042.9205,0,15.6
+224642,0,0,0,15.6
+224643,0,0,0,15.6
+224644,0,0,0,15.6
+224645,339982.5441,0,0,15.6
+224646,0,0,0,15.6
+224647,0,0,0,15.6
+224648,0,0,0,15.6
+224649,0,0,0,15.6
+224650,0,0,0,15.6
+224651,0,0,0,15.6
+224652,0,0,0,15.6
+224653,0,0,0,15.6
+224654,0,0,0,15.6
+224655,0,0,0,15.6
+224656,0,0,0,15.6
+224657,0,0,0,15.6
+224658,0,0,0,15.6
+224659,0,0,0,15.6
+224660,0,0,0,15.6
+224661,0,0,0,15.6
+224662,0,0,0,15.6
+224663,0,0,0,15.6
+224664,0,0,0,15.6
+224665,0,0,0,15.6
+224666,0,0,0,15.6
+224667,0,0,0,15.6
+224668,0,0,0,15.6
+224669,0,0,0,15.6
+224670,0,0,0,15.6
+224671,0,0,0,15.6
+224672,0,0,667522.2224,15.6
+224673,0,0,0,15.6
+224674,0,0,0,15.6
+224675,0,0,0,15.6
+224676,0,369042.8197,0,15.6
+224677,0,0,0,15.6
+224678,0,0,0,15.6
+224679,0,0,0,15.6
+224680,0,0,0,15.6
+224681,340100.3054,0,0,15.6
+224682,0,0,0,15.6
+224683,0,0,0,15.6
+224684,0,0,0,15.6
+224685,0,0,0,15.6
+224686,0,0,0,15.6
+224687,0,0,0,15.6
+224688,0,0,0,15.6
+224689,0,0,0,15.6
+224690,0,0,0,15.6
+224691,0,0,0,15.6
+224692,0,0,0,15.6
+224693,0,0,0,15.6
+224694,0,0,0,15.6
+224695,0,0,0,15.6
+224696,0,0,0,15.6
+224697,0,0,0,15.6
+224698,0,0,0,15.6
+224699,0,0,0,15.6
+224700,0,0,0,15.6
+224701,0,0,0,15.6
+224702,0,0,0,15.6
+224703,0,0,0,15.6
+224704,0,0,0,15.6
+224705,0,0,0,15.6
+224706,0,0,0,15.6
+224707,0,0,668413.0051,15.6
+224708,0,0,0,15.6
+224709,0,0,0,15.6
+224710,0,0,0,15.6
+224711,0,369072.9216,0,15.6
+224712,0,0,0,15.6
+224713,0,0,0,15.6
+224714,0,0,0,15.6
+224715,0,0,0,15.6
+224716,0,0,0,15.6
+224717,340161.8736,0,0,15.6
+224718,0,0,0,15.6
+224719,0,0,0,15.6
+224720,0,0,0,15.6
+224721,0,0,0,15.6
+224722,0,0,0,15.6
+224723,0,0,0,15.6
+224724,0,0,0,15.6
+224725,0,0,0,15.6
+224726,0,0,0,15.6
+224727,0,0,0,15.6
+224728,0,0,0,15.6
+224729,0,0,0,15.6
+224730,0,0,0,15.6
+224731,0,0,0,15.6
+224732,0,0,0,15.6
+224733,0,0,0,15.6
+224734,0,0,0,15.6
+224735,0,0,0,15.6
+224736,0,0,0,15.6
+224737,0,0,0,15.6
+224738,0,0,0,15.6
+224739,0,0,0,15.6
+224740,0,0,0,15.6
+224741,0,0,0,15.6
+224742,0,0,669117.0911,15.6
+224743,0,0,0,15.6
+224744,0,0,0,15.6
+224745,0,0,0,15.6
+224746,0,369156.7871,0,15.6
+224747,0,0,0,15.6
+224748,0,0,0,15.6
+224749,0,0,0,15.6
+224750,0,0,0,15.6
+224751,0,0,0,15.6
+224752,0,0,0,15.6
+224753,340164.1875,0,0,15.6
+224754,0,0,0,15.6
+224755,0,0,0,15.6
+224756,0,0,0,15.6
+224757,0,0,0,15.6
+224758,0,0,0,15.6
+224759,0,0,0,15.6
+224760,0,0,0,15.6
+224761,0,0,0,15.6
+224762,0,0,0,15.6
+224763,0,0,0,15.6
+224764,0,0,0,15.6
+224765,0,0,0,15.6
+224766,0,0,0,15.6
+224767,0,0,0,15.6
+224768,0,0,0,15.6
+224769,0,0,0,15.6
+224770,0,0,0,15.6
+224771,0,0,0,15.6
+224772,0,0,0,15.6
+224773,0,0,0,15.6
+224774,0,0,0,15.6
+224775,0,0,0,15.6
+224776,0,0,0,15.6
+224777,0,0,667664.4682,15.6
+224778,0,0,0,15.6
+224779,0,0,0,15.6
+224780,0,0,0,15.6
+224781,0,0,0,15.6
+224782,0,369208.3471,0,15.6
+224783,0,0,0,15.6
+224784,0,0,0,15.6
+224785,0,0,0,15.6
+224786,0,0,0,15.6
+224787,0,0,0,15.6
+224788,0,0,0,15.6
+224789,340166.4001,0,0,15.6
+224790,0,0,0,15.6
+224791,0,0,0,15.6
+224792,0,0,0,15.6
+224793,0,0,0,15.6
+224794,0,0,0,15.6
+224795,0,0,0,15.6
+224796,0,0,0,15.6
+224797,0,0,0,15.6
+224798,0,0,0,15.6
+224799,0,0,0,15.6
+224800,0,0,0,15.6
+224801,0,0,0,15.6
+224802,0,0,0,15.6
+224803,0,0,0,15.6
+224804,0,0,0,15.6
+224805,0,0,0,15.6
+224806,0,0,0,15.6
+224807,0,0,0,15.6
+224808,0,0,0,15.6
+224809,0,0,0,15.6
+224810,0,0,0,15.6
+224811,0,0,0,15.6
+224812,0,0,668822.1913,15.6
+224813,0,0,0,15.6
+224814,0,0,0,15.6
+224815,0,0,0,15.6
+224816,0,0,0,15.6
+224817,0,0,0,15.6
+224818,0,369242.7407,0,15.6
+224819,0,0,0,15.6
+224820,0,0,0,15.6
+224821,0,85.36318207,0,15.6
+224822,0,0,0,15.6
+224823,0,0,0,15.6
+224824,0,0,0,15.6
+224825,340161.5752,77.36684984,0,15.6
+224826,0,0,0,15.6
+224827,0,0,0,15.6
+224828,0,0,0,15.6
+224829,0,96.41678124,0,15.6
+224830,0,0,0,15.6
+224831,0,0,0,15.6
+224832,0,0,0,15.6
+224833,0,82.84105903,0,15.6
+224834,0,0,0,15.6
+224835,0,0,0,15.6
+224836,0,0,0,15.6
+224837,0,96.91638045,0,15.6
+224838,0,0,0,15.6
+224839,0,0,0,15.6
+224840,0,0,0,15.6
+224841,0,76.17381526,0,15.6
+224842,0,0,0,15.6
+224843,0,0,0,15.6
+224844,0,0,0,15.6
+224845,0,80.2884695,0,15.6
+224846,0,0,669837.6798,15.6
+224847,0,0,0,15.6
+224848,0,0,0,15.6
+224849,0,75.69068611,0,15.6
+224850,0,0,0,15.6
+224851,0,0,0,15.6
+224852,0,0,0,15.6
+224853,0,73.94599535,0,15.6
+224854,0,369175.7097,0,15.6
+224855,0,0,0,15.6
+224856,0,0,0,15.6
+224857,0,67.48458997,0,15.6
+224858,0,0,0,15.6
+224859,0,0,0,15.6
+224860,340119.5494,0,0,15.6
+224861,0,0,0,15.6
+224862,0,65.29948978,0,15.6
+224863,0,0,0,15.6
+224864,0,0,0,15.6
+224865,0,0,0,15.6
+224866,0,0,0,15.6
+224867,0,0,0,15.6
+224868,0,0,0,15.6
+224869,0,0,0,15.6
+224870,0,0,0,15.6
+224871,0,0,0,15.6
+224872,0,0,0,15.6
+224873,0,382.8455545,0,15.6
+224874,0,0,0,15.6
+224875,0,0,0,15.6
+224876,0,0,0,15.6
+224877,0,0,0,15.6
+224878,0,0,0,15.6
+224879,0,0,0,15.6
+224880,0,0,669051.1551,17.8
+224881,65063.95875,114667.4894,0,17.8
+224882,11584.31149,14850.90752,0,17.8
+224883,16085.42423,49678.98252,0,17.8
+224884,22905.07977,50633.71638,0,17.8
+224885,19896.131,48752.95593,0,17.8
+224886,19771.23155,49428.20088,0,17.8
+224887,19805.41507,49762.06161,0,17.8
+224888,19766.45729,419447.1537,0,17.8
+224889,19766.45802,50100.94341,0,17.8
+224890,19704.14239,50433.84155,0,17.8
+224891,19737.32246,50990.86338,0,17.8
+224892,19699.13862,50658.92171,0,17.8
+224893,19688.1949,51546.27128,0,17.8
+224894,19651.1907,51215.27802,0,17.8
+224895,359765.9421,51380.89368,0,17.8
+224896,19652.53475,51881.65626,0,17.8
+224897,19649.78951,51770.02645,0,17.8
+224898,19615.21038,52100.07965,0,17.8
+224899,19601.67391,51996.01891,0,17.8
+224900,19609.54295,52323.17914,0,17.8
+224901,19603.24793,52323.1799,0,17.8
+224902,19573.22594,52581.01193,0,17.8
+224903,19556.07649,52874.7485,0,17.8
+224904,20754.18184,52545.63131,0,17.8
+224905,21770.01701,52763.6064,0,17.8
+224906,20856.10748,0,0,17.8
+224907,21193.36954,0,0,17.8
+224908,21175.50417,0,0,17.8
+224909,21243.79221,0,0,17.8
+224910,21200.63369,0,0,17.8
+224911,1705.206707,0,0,17.8
+224912,1680.310952,0,0,17.8
+224913,1717.614748,0,0,17.8
+224914,1705.206029,0,669449.5505,17.8
+224915,1705.205796,0,0,17.8
+224916,1729.99653,0,0,17.8
+224917,59535.84888,0,0,17.8
+224918,6558.00966,0,0,17.8
+224919,16932.19809,0,0,17.8
+224920,26310.93746,0,0,17.8
+224921,20229.15643,0,0,17.8
+224922,21270.55787,369125.0817,0,17.8
+224923,20276.46527,0,0,17.8
+224924,19971.88978,0,0,17.8
+224925,19844.14552,0,0,17.8
+224926,19666.72708,0,0,17.8
+224927,19549.0002,0,0,17.8
+224928,19396.80683,0,0,17.8
+224929,19231.90139,0,0,17.8
+224930,358295.0305,0,0,17.8
+224931,18098.27844,0,0,17.8
+224932,18024.6191,0,0,17.8
+224933,17925.71371,0,0,17.8
+224934,17862.77156,0,0,17.8
+224935,17735.08956,0,0,17.8
+224936,17700.66945,0,0,17.8
+224937,17595.28622,0,0,17.8
+224938,17481.92674,0,0,17.8
+224939,17411.3844,0,0,17.8
+224940,17321.92082,0,0,20
+224941,517788.444,27446.41296,0,20
+224942,39137.31006,68079.49975,0,20
+224943,99214.69123,110896.6211,0,20
+224944,210711.1101,87531.36568,0,20
+224945,146307.7442,89841.55105,0,20
+224946,153472.0799,94786.05117,0,20
+224947,153341.8309,93767.28414,0,20
+224948,152634.9396,93606.2575,0,20
+224949,151347.4022,93471.51087,0,20
+224950,150373.2612,529209.072,0,20
+224951,149355.1544,93894.95449,0,20
+224952,149185.8177,93582.1268,0,20
+224953,147440.9869,93465.19452,0,20
+224954,146981.1115,93589.09376,0,20
+224955,145828.0392,93101.27603,0,20
+224956,145208.1735,93185.35477,0,20
+224957,144014.3329,92857.58076,0,20
+224958,143706.4293,93069.71719,0,20
+224959,142779.0456,92287.61124,69.21631566,20
+224960,141771.4921,527907.4122,379.3789676,20
+224961,141105.5922,92334.02751,197.438432,20
+224962,140506.3191,92190.05742,304.6905871,20
+224963,139532.0875,92373.10718,304.6931421,20
+224964,138820.3048,91768.11144,349.6803913,20
+224965,138014.239,92292.26088,364.5661467,20
+224966,137158.4217,91686.08028,379.3990746,20
+224967,136644.9747,91425.67316,408.9083916,20
+224968,135679.0475,91912.72617,438.2235248,20
+224969,135111.8315,91330.90208,452.8143126,20
+224970,134148.7225,91328.87796,467.3605349,20
+224971,133603.8241,91315.71096,496.3168304,20
+224972,132663.7405,91041.07828,481.8699725,20
+224973,131747.7569,91274.50455,364.6012148,20
+224974,131473.7044,526479.8163,327.2909726,20
+224975,130422.9687,90789.8934,452.6458858,20
+224976,129688.0512,91470.94461,421.142257,20
+224977,129499.9229,90759.5735,437.5396944,20
+224978,128244.269,91276.62865,430.3404679,20
+224979,127623.2528,90462.21799,453.6142437,20
+224980,126354.2507,91244.19975,453.6244011,20
+224981,125040.1677,90737.58255,438.0142972,20
+224982,123894.6892,90937.02976,445.4250091,20
+224983,123477.9693,90715.53054,405.5455987,20
+224984,122629.4566,525799.4289,403.5537235,20
+224985,121730.1692,90713.34507,371.0210721,20
+224986,120818.7409,90705.07953,369.415011,20
+224987,120163.0778,90899.86646,365.3387582,20
+224988,118906.7647,90698.20149,329.8315294,20
+224989,118096.1241,90414.65536,344.5752411,20
+224990,117161.3436,91198.06856,373.904881,20
+224991,116378.1282,90359.98458,373.9087537,20
+224992,115287.2804,90694.51456,403.0432629,20
+224993,114589.6306,90488.62417,403.0477751,20
+224994,113833.793,91156.67345,417.5479134,20
+224995,112507.2467,90433.95418,432.003589,20
+224996,112046.2951,90424.40327,446.4160038,20
+224997,111222.6237,90788.10128,460.7862792,20
+224998,111069.2059,525980.7249,460.7922074,20
+224999,111310.9747,90517.81156,489.4043752,20
+225000,110943.2609,90695.70142,475.1280949,21
+225001,106810.0259,86361.39181,329.8804079,21
+225002,105295.0508,85201.4806,300.2326258,21
+225003,104397.7314,85779.7049,300.2350999,21
+225004,103830.7879,85163.23689,300.2375753,21
+225005,102984.2051,85163.19992,315.0939628,21
+225006,102392.9608,84721.82658,300.2426458,21
+225007,101519.571,515064.3315,315.0992954,21
+225008,101297.8224,85131.80391,300.2477138,21
+225009,100157.8058,84144.65415,329.9028172,21
+225010,99842.74996,85098.27377,300.2529012,21
+225011,98918.04566,84571.32393,329.9085503,21
+225012,98176.48255,84302.46549,315.1129465,21
+225013,97859.33945,84355.55782,315.1156769,21
+225014,96772.92408,84279.76494,329.917283,21
+225015,96489.58351,84534.26084,315.1212648,21
+225016,95841.61463,84089.79177,329.9231466,21
+225017,95152.39005,84105.70246,329.9261462,21
+225018,94494.35787,84022.80448,315.1297054,21
+225019,93934.5196,84186.28273,344.6773613,21
+225020,93300.44115,84284.23689,315.1354144,21
+225021,92619.24268,83633.81932,329.9380039,21
+225022,92087.29861,84237.11379,329.9410019,21
+225023,91512.10664,83989.48711,315.1438544,21
+225024,90289.56535,84119.25988,329.9468659,21
+225025,90445.2398,83695.92345,329.949864,21
+225026,89370.72236,84138.4769,315.1522945,21
+225027,88419.65873,83575.30354,329.9557282,21
+225028,88308.75331,84045.58172,315.1578799,21
+225029,87225.66779,83771.35409,315.1606085,21
+225030,86839.78212,83770.6238,329.9644588,21
+225031,86354.24754,83421.23569,300.3086722,21
+225032,85886.84891,83940.27896,329.9701894,21
+225033,85264.01336,83022.66737,300.3138568,21
+225034,84834.92285,83655.18606,315.1742556,21
+225035,84267.31412,82838.35852,300.318924,21
+225036,83916.48619,83012.2905,315.1795896,21
+225037,83085.16922,83214.09217,300.3239923,21
+225038,82642.39579,83051.82888,300.3264654,21
+225039,82389.85644,82702.5984,285.4118559,21
+225040,81620.93237,82997.23301,300.3312922,21
+225041,81135.97833,82407.3056,285.4164275,21
+225042,80488.65304,82774.94508,300.3361199,21
+225043,79873.6942,82370.5018,270.4424483,21
+225044,79654.05306,81934.61503,285.4231183,21
+225045,78970.45404,82148.17219,270.4465522,21
+225046,78280.78536,82156.79736,270.4485481,21
+225047,77732.33693,81339.416,270.4505472,21
+225048,77294.04577,81821.79971,255.4096996,21
+225049,76515.74993,81347.99132,270.454435,21
+225050,76337.58837,81020.66193,240.3035354,21
+225051,75586.26397,81044.14162,255.4150321,21
+225052,74681.94843,80988.42405,240.3067727,21
+225053,74865.87187,80741.66227,240.3083437,21
+225054,73559.43591,80514.18352,240.3099145,21
+225055,73397.47259,80370.57217,217.5131794,21
+225056,72879.31972,79944.89211,225.1322838,21
+225057,71929.97389,80128.86794,225.1336592,21
+225058,71834.15664,79894.34825,194.5467751,21
+225059,71141.9814,79298.47485,209.8812602,21
+225060,70351.26962,79788.1046,209.8824506,21
+225061,22695.22529,42884.87711,0,21
+225062,20050.33242,40069.67166,0,21
+225063,19287.96688,39683.80602,0,21
+225064,18560.92533,38875.33412,0,21
+225065,18132.77065,38151.99664,0,21
+225066,17807.47965,37542.74832,0,21
+225067,17525.22667,37144.42655,0,21
+225068,17127.60059,36166.41722,0,21
+225069,16928.20757,36277.15824,0,21
+225070,16710.77399,35119.93568,0,21
+225071,16343.86645,35093.05036,0,21
+225072,16117.18618,34389.58256,0,21
+225073,15817.04116,33564.68547,0,21
+225074,15526.44615,33670.22017,0,21
+225075,15341.34237,32715.0339,0,21
+225076,15017.26131,32412.51008,0,21
+225077,14723.54058,32009.8274,0,21
+225078,14651.08176,31366.03982,0,21
+225079,14111.94874,30868.95539,0,21
+225080,14146.18808,30590.97051,0,21
+225081,13708.62459,29956.26747,0,21
+225082,13443.58754,29570.12208,0,21
+225083,13336.75848,28959.53979,0,21
+225084,13026.1825,28852.2383,0,21
+225085,12722.70989,27798.35149,0,21
+225086,12445.27967,27522.40717,0,21
+225087,12312.1086,27168.13148,0,21
+225088,12039.79675,26577.39277,0,21
+225089,11726.68277,26132.11911,0,21
+225090,11624.41151,25789.03209,0,21
+225091,11240.17569,25399.31335,0,21
+225092,11119.54506,24855.57518,0,21
+225093,10831.59922,24841.06275,0,21
+225094,10653.54555,23938.17115,0,21
+225095,10306.56992,24065.99975,0,21
+225096,10263.1616,23173.37949,0,21
+225097,9835.840983,23002.33321,0,21
+225098,9743.972128,22397.30899,0,21
+225099,9439.967572,21940.07553,0,21
+225100,9222.651287,21503.51673,0,21
+225101,9074.087964,20967.80564,0,21
+225102,8845.613981,20658.35355,0,21
+225103,8556.663542,19898.99485,0,21
+225104,8338.050965,19807.6144,0,21
+225105,8163.805878,18928.0641,0,21
+225106,7837.245293,19021.46865,0,21
+225107,7764.136884,17905.23036,0,21
+225108,7163.817635,18044.18055,0,21
+225109,7071.811088,16882.0505,0,21
+225110,6685.228142,16625.11341,0,21
+225111,6627.075304,16116.6397,0,21
+225112,6320.738456,15377.33766,0,21
+225113,6155.407527,15213.18845,0,21
+225114,5952.310146,14587.52352,0,21
+225115,5821.970245,14024.80704,0,21
+225116,5485.988117,13543.74366,0,21
+225117,5437.686128,13135.77478,0,21
+225118,5012.743319,12497.9528,0,21
+225119,5099.296981,12283.92944,0,21
+225120,4645.532009,11465.04696,0,21
+225121,4609.503923,10978.77556,0,21
+225122,4411.577958,10607.62242,0,21
+225123,4138.148157,10172.09325,0,21
+225124,4050.801721,9262.238084,0,21
+225125,3887.755437,9238.465876,0,21
+225126,3711.308643,8423.863636,0,21
+225127,3367.726966,7953.443589,0,21
+225128,3354.945543,7483.887876,0,21
+225129,3123.120417,6823.899341,0,21
+225130,2967.572992,6600.915609,0,21
+225131,2771.872837,5689.817788,0,21
+225132,2559.649232,5444.825736,0,21
+225133,2400.375354,4952.519105,0,21
+225134,2197.816157,4234.454416,0,21
+225135,2141.292054,3922.911877,0,21
+225136,1856.638,3286.047502,0,21
+225137,1843.429943,2957.742228,0,21
+225138,1524.086665,2366.298422,0,21
+225139,1665.124227,2315.9487,0,21
+225140,1200.962954,2036.058773,0,21
+225141,1326.068156,1839.968744,0,21
+225142,1174.201259,1746.779843,0,21
+225143,1120.346927,1730.313866,0,21
+225144,1133.852245,1636.296919,0,21
+225145,1093.249791,1564.080671,0,21
+225146,1093.249608,1524.839777,0,21
+225147,1052.386766,1481.900294,0,21
+225148,1038.706564,1395.578693,0,21
+225149,1024.996342,1325.520523,0,21
+225150,997.4849225,1298.746325,0,21
+225151,983.6833278,1211.058156,0,21
+225152,955.9854933,1166.957032,0,21
+225153,955.9853068,1112.374709,0,21
+225154,914.1987396,1081.599944,0,21
+225155,900.2043781,1005.943716,0,21
+225156,900.2042013,967.4586302,0,21
+225157,858.0201257,904.9941443,0,21
+225158,843.8902667,859.4747592,0,21
+225159,829.725451,802.5128683,0,21
+225160,815.5252787,738.9386106,0,21
+225161,772.7079645,718.6879102,0,21
+225162,787.016683,648.5470623,0,21
+225163,743.9776203,586.4626339,0,21
+225164,729.5552723,556.4068647,0,21
+225165,715.093997,484.0932062,0,21
+225166,686.0525124,428.2944831,0,21
+225167,686.0523883,394.4862921,0,21
+225168,642.1830207,344.4295146,0,21
+225169,642.182907,308.5396434,0,21
+225170,612.7237481,326.5298676,0,21
+225171,597.9279537,281.3624402,0,21
+225172,583.0869568,290.4443621,0,21
+225173,553.2658797,263.1221417,0,21
+225174,538.283826,253.9623016,0,21
+225175,523.2527621,253.9623657,0,21
+225176,508.1716431,217.038341,0,21
+225177,477.8544707,217.0384113,0,21
+225178,462.6158609,217.0384697,0,21
+225179,447.322381,179.6109206,0,21
+225180,431.9719991,179.6108146,0,21
+225181,369.9701201,141.5910114,0,21
+225182,369.9708555,122.3204126,0,21
+225183,338.5830411,122.3204276,0,21
+225184,306.9119434,102.8452577,0,21
+225185,306.9119541,83.13302109,0,21
+225186,290.9629947,93.02131186,0,21
+225187,242.6199945,63.13588575,0,21
+225188,258.8210814,63.13589677,0,21
+225189,209.9331879,42.77671675,0,21
+225190,209.9331991,42.77671919,0,21
+225191,176.8253902,21.90584719,0,21
+225192,176.8254009,11.16969017,0,21
+225193,134.7452563,0,0,21
+225194,126.2218835,0,0,21
+225195,109.0515467,0,0,21
+225196,91.6977967,0,0,21
+225197,74.13100133,0,0,21
+225198,38.15882949,0,0,21
+225199,38.15883197,0,0,21
+225200,19.54814988,0,0,21
+225201,0,0,0,21
+225202,0,0,0,21
+225203,0,0,0,21
+225204,0,0,0,21
+225205,0,0,0,21
+225206,0,0,0,21
+225207,0,0,0,21
+225208,0,0,0,21
+225209,0,0,0,21
+225210,0,0,0,21
+225211,0,0,0,21
+225212,0,0,0,21
+225213,0,0,0,21
+225214,0,0,0,21
+225215,0,0,0,21
+225216,0,0,0,21
+225217,0,0,0,21
+225218,0,0,0,21
+225219,0,0,0,21
+225220,0,0,0,21
+225221,0,0,0,21
+225222,0,0,0,21
+225223,0,0,0,21
+225224,0,0,0,21
+225225,0,0,0,21
+225226,0,0,0,21
+225227,0,0,0,21
+225228,0,0,0,21
+225229,0,0,0,21
+225230,0,0,0,21
+225231,0,0,0,21
+225232,0,0,0,21
+225233,0,0,0,21
+225234,0,0,0,21
+225235,0,0,0,21
+225236,0,0,0,21
+225237,0,0,0,21
+225238,0,0,0,21
+225239,0,0,0,21
+225240,0,0,0,21
+225241,0,0,0,21
+225242,0,0,0,21
+225243,0,0,0,21
+225244,0,0,0,21
+225245,0,0,0,21
+225246,0,0,0,21
+225247,0,0,0,21
+225248,0,0,0,21
+225249,0,0,0,21
+225250,0,0,0,21
+225251,0,0,0,21
+225252,0,0,0,21
+225253,0,0,0,21
+225254,0,0,0,21
+225255,0,0,0,21
+225256,0,0,0,21
+225257,0,0,0,21
+225258,0,0,0,21
+225259,0,0,0,21
+225260,0,0,0,21
+225261,0,0,0,21
+225262,0,0,0,21
+225263,0,0,0,21
+225264,0,0,0,21
+225265,0,0,0,21
+225266,0,0,0,21
+225267,0,0,0,21
+225268,0,0,0,21
+225269,0,0,0,21
+225270,0,0,0,21
+225271,0,0,0,21
+225272,0,0,0,21
+225273,0,0,0,21
+225274,0,0,0,21
+225275,0,0,0,21
+225276,0,0,0,21
+225277,0,0,0,21
+225278,0,0,0,21
+225279,0,0,0,21
+225280,0,0,0,21
+225281,0,0,0,21
+225282,0,0,0,21
+225283,0,0,0,21
+225284,0,0,0,21
+225285,0,0,0,21
+225286,0,0,0,21
+225287,0,0,0,21
+225288,0,0,0,21
+225289,0,0,0,21
+225290,0,0,0,21
+225291,0,0,0,21
+225292,0,0,0,21
+225293,0,0,0,21
+225294,0,0,0,21
+225295,0,0,0,21
+225296,0,0,0,21
+225297,0,0,0,21
+225298,0,0,0,21
+225299,0,0,0,21
+225300,0,0,0,21
+225301,0,0,0,21
+225302,0,0,0,21
+225303,0,0,0,21
+225304,0,0,0,21
+225305,0,0,0,21
+225306,0,0,0,21
+225307,0,0,0,21
+225308,0,0,0,21
+225309,0,0,0,21
+225310,0,0,0,21
+225311,0,0,0,21
+225312,0,0,0,21
+225313,0,0,0,21
+225314,0,0,0,21
+225315,0,0,0,21
+225316,0,0,0,21
+225317,0,0,0,21
+225318,0,0,0,21
+225319,0,0,0,21
+225320,0,0,0,21
+225321,0,0,0,21
+225322,0,0,0,21
+225323,0,0,0,21
+225324,0,0,0,21
+225325,0,0,0,21
+225326,0,0,0,21
+225327,0,0,0,21
+225328,0,0,0,21
+225329,0,0,0,21
+225330,0,0,0,21
+225331,0,0,0,21
+225332,0,0,0,21
+225333,0,0,0,21
+225334,0,0,0,21
+225335,0,0,0,21
+225336,0,0,0,21
+225337,0,0,0,21
+225338,0,0,0,21
+225339,0,0,0,21
+225340,0,0,0,21
+225341,0,0,0,21
+225342,0,0,0,21
+225343,0,0,0,21
+225344,0,0,0,21
+225345,0,0,0,21
+225346,0,0,0,21
+225347,0,0,0,21
+225348,0,0,0,21
+225349,0,0,0,21
+225350,0,0,0,21
+225351,0,0,0,21
+225352,0,0,0,21
+225353,0,0,0,21
+225354,0,0,0,21
+225355,0,0,0,21
+225356,0,0,0,21
+225357,0,0,0,21
+225358,0,0,0,21
+225359,0,0,0,21
+225360,0,0,0,21
+225361,0,0,0,21
+225362,0,0,0,21
+225363,0,0,0,21
+225364,0,0,0,21
+225365,0,0,0,21
+225366,0,0,0,21
+225367,0,0,0,21
+225368,0,0,0,21
+225369,0,0,0,21
+225370,0,0,0,21
+225371,0,0,0,21
+225372,0,0,0,21
+225373,0,0,0,21
+225374,0,0,0,21
+225375,0,0,0,21
+225376,0,0,0,21
+225377,0,0,0,21
+225378,0,0,0,21
+225379,0,0,0,21
+225380,0,0,0,21
+225381,0,0,0,21
+225382,0,0,0,21
+225383,0,0,0,21
+225384,0,0,0,21
+225385,0,0,0,21
+225386,0,0,0,21
+225387,0,0,0,21
+225388,0,0,0,21
+225389,0,0,0,21
+225390,0,0,0,21
+225391,0,0,0,21
+225392,0,0,0,21
+225393,0,0,0,21
+225394,0,0,0,21
+225395,0,0,0,21
+225396,0,0,0,21
+225397,0,0,0,21
+225398,0,0,0,21
+225399,0,0,0,21
+225400,0,0,0,21
+225401,0,0,0,21
+225402,0,0,0,21
+225403,0,0,0,21
+225404,0,0,0,21
+225405,0,0,0,21
+225406,0,0,0,21
+225407,0,0,0,21
+225408,0,0,0,21
+225409,0,0,0,21
+225410,0,0,0,21
+225411,0,0,0,21
+225412,0,0,0,21
+225413,0,0,0,21
+225414,0,0,0,21
+225415,0,0,0,21
+225416,0,0,0,21
+225417,0,0,0,21
+225418,0,0,0,21
+225419,0,0,0,21
+225420,0,0,0,21
+225421,0,0,0,21
+225422,0,0,0,21
+225423,0,0,0,21
+225424,0,0,0,21
+225425,0,0,0,21
+225426,0,0,0,21
+225427,0,0,0,21
+225428,0,0,0,21
+225429,0,0,0,21
+225430,0,0,0,21
+225431,0,0,0,21
+225432,0,0,0,21
+225433,0,0,0,21
+225434,0,0,0,21
+225435,0,0,0,21
+225436,0,0,0,21
+225437,0,0,0,21
+225438,0,0,0,21
+225439,0,0,0,21
+225440,0,0,0,21
+225441,0,0,0,21
+225442,0,0,0,21
+225443,0,0,0,21
+225444,0,0,0,21
+225445,0,0,0,21
+225446,0,0,0,21
+225447,0,0,0,21
+225448,0,0,0,21
+225449,0,0,0,21
+225450,0,0,0,21
+225451,0,0,0,21
+225452,0,0,0,21
+225453,0,0,0,21
+225454,0,0,0,21
+225455,0,0,0,21
+225456,0,0,0,21
+225457,0,0,0,21
+225458,0,0,0,21
+225459,0,0,0,21
+225460,0,0,0,21
+225461,0,0,0,21
+225462,0,0,0,21
+225463,0,0,0,21
+225464,0,0,0,21
+225465,0,0,0,21
+225466,0,0,0,21
+225467,0,0,0,21
+225468,0,0,0,21
+225469,0,0,0,21
+225470,0,0,0,21
+225471,0,0,0,21
+225472,0,0,0,21
+225473,0,0,0,21
+225474,0,0,0,21
+225475,0,0,0,21
+225476,0,0,0,21
+225477,0,0,0,21
+225478,0,0,0,21
+225479,0,0,0,21
+225480,0,0,0,21
+225481,0,0,0,21
+225482,0,0,0,21
+225483,0,0,0,21
+225484,0,0,0,21
+225485,0,0,0,21
+225486,0,0,0,21
+225487,0,0,0,21
+225488,0,0,0,21
+225489,0,0,0,21
+225490,0,0,0,21
+225491,0,0,0,21
+225492,0,0,0,21
+225493,0,0,0,21
+225494,0,0,0,21
+225495,0,0,0,21
+225496,0,0,0,21
+225497,0,0,0,21
+225498,0,0,0,21
+225499,0,0,0,21
+225500,0,0,0,21
+225501,0,0,0,21
+225502,0,0,0,21
+225503,0,0,0,21
+225504,0,0,0,21
+225505,0,0,0,21
+225506,0,0,0,21
+225507,0,0,0,21
+225508,0,0,0,21
+225509,0,0,0,21
+225510,0,0,0,21
+225511,0,0,0,21
+225512,0,0,0,21
+225513,0,0,0,21
+225514,0,0,0,21
+225515,0,0,0,21
+225516,0,0,0,21
+225517,0,0,0,21
+225518,0,0,0,21
+225519,0,0,0,21
+225520,0,0,0,21
+225521,0,0,0,21
+225522,0,0,0,21
+225523,0,0,0,21
+225524,0,0,0,21
+225525,0,0,0,21
+225526,0,0,0,21
+225527,0,0,0,21
+225528,0,0,0,21
+225529,0,0,0,21
+225530,0,0,0,21
+225531,0,0,0,21
+225532,0,0,0,21
+225533,0,0,0,21
+225534,0,0,0,21
+225535,0,0,0,21
+225536,0,0,0,21
+225537,0,0,0,21
+225538,0,0,0,21
+225539,0,0,0,21
+225540,0,0,0,21
+225541,0,0,0,21
+225542,0,0,0,21
+225543,0,0,0,21
+225544,0,0,0,21
+225545,0,0,0,21
+225546,0,0,0,21
+225547,0,0,0,21
+225548,0,0,0,21
+225549,0,0,0,21
+225550,0,0,0,21
+225551,0,0,0,21
+225552,0,0,0,21
+225553,0,0,0,21
+225554,0,0,0,21
+225555,0,0,0,21
+225556,0,0,0,21
+225557,0,0,0,21
+225558,0,0,0,21
+225559,0,0,0,21
+225560,0,0,0,21
+225561,0,0,0,21
+225562,0,0,0,21
+225563,0,0,0,21
+225564,0,0,0,21
+225565,0,0,0,21
+225566,0,0,0,21
+225567,0,0,0,21
+225568,0,0,0,21
+225569,0,0,0,21
+225570,0,0,0,21
+225571,0,0,0,21
+225572,0,0,0,21
+225573,0,0,0,21
+225574,0,0,0,21
+225575,0,0,0,21
+225576,0,0,0,21
+225577,0,0,0,21
+225578,0,0,0,21
+225579,0,0,0,21
+225580,0,0,0,21
+225581,0,0,0,21
+225582,0,0,0,21
+225583,0,0,0,21
+225584,0,0,0,21
+225585,0,0,0,21
+225586,0,0,0,21
+225587,0,0,0,21
+225588,0,0,0,21
+225589,0,0,0,21
+225590,0,0,0,21
+225591,0,0,0,21
+225592,0,0,0,21
+225593,0,0,0,21
+225594,0,0,0,21
+225595,0,0,0,21
+225596,0,0,0,21
+225597,0,0,0,21
+225598,0,0,0,21
+225599,0,0,0,21
+225600,0,0,0,21
+225601,0,0,0,21
+225602,0,0,0,21
+225603,0,0,0,21
+225604,0,0,0,21
+225605,0,0,0,21
+225606,0,0,0,21
+225607,0,0,0,21
+225608,0,0,0,21
+225609,0,0,0,21
+225610,0,0,0,21
+225611,0,0,0,21
+225612,0,0,0,21
+225613,0,0,0,21
+225614,0,0,0,21
+225615,0,0,0,21
+225616,0,0,0,21
+225617,0,0,0,21
+225618,0,0,0,21
+225619,0,0,0,21
+225620,0,0,0,21
+225621,0,0,0,21
+225622,0,0,0,21
+225623,0,0,0,21
+225624,0,0,0,21
+225625,0,0,0,21
+225626,0,0,0,21
+225627,0,0,0,21
+225628,0,0,0,21
+225629,0,0,0,21
+225630,0,0,0,21
+225631,0,0,0,21
+225632,0,0,0,21
+225633,0,0,0,21
+225634,0,0,0,21
+225635,0,0,0,21
+225636,0,0,0,21
+225637,0,0,0,21
+225638,0,0,0,21
+225639,0,0,0,21
+225640,0,0,0,21
+225641,0,0,0,21
+225642,0,0,0,21
+225643,0,0,0,21
+225644,0,0,0,21
+225645,0,0,0,21
+225646,0,0,0,21
+225647,0,0,0,21
+225648,0,0,0,21
+225649,0,0,0,21
+225650,0,0,0,21
+225651,0,0,0,21
+225652,0,0,0,21
+225653,0,0,0,21
+225654,0,0,0,21
+225655,0,0,0,21
+225656,0,0,0,21
+225657,0,0,0,21
+225658,0,0,0,21
+225659,0,0,0,21
+225660,0,0,0,21
+225661,0,0,0,21
+225662,0,0,0,21
+225663,0,0,0,21
+225664,0,0,0,21
+225665,0,0,0,21
+225666,0,0,0,21
+225667,0,0,0,21
+225668,0,0,0,21
+225669,0,0,0,21
+225670,0,0,0,21
+225671,0,0,0,21
+225672,0,0,0,21
+225673,0,0,0,21
+225674,0,0,0,21
+225675,0,0,0,21
+225676,0,0,0,21
+225677,0,0,0,21
+225678,0,0,0,21
+225679,0,0,0,21
+225680,0,0,0,21
+225681,0,0,0,21
+225682,0,0,0,21
+225683,0,0,0,21
+225684,0,0,0,21
+225685,0,0,0,21
+225686,0,0,0,21
+225687,0,0,0,21
+225688,0,0,0,21
+225689,0,0,0,21
+225690,0,0,0,21
+225691,0,0,0,21
+225692,0,0,0,21
+225693,0,0,0,21
+225694,0,0,0,21
+225695,0,0,0,21
+225696,0,0,0,21
+225697,0,0,0,21
+225698,0,0,0,21
+225699,0,0,0,21
+225700,0,0,0,21
+225701,0,0,0,21
+225702,0,0,0,21
+225703,0,0,0,21
+225704,0,0,0,21
+225705,0,0,0,21
+225706,0,0,0,21
+225707,0,0,0,21
+225708,0,0,0,21
+225709,0,0,0,21
+225710,0,0,0,21
+225711,0,0,0,21
+225712,0,0,0,21
+225713,0,0,0,21
+225714,0,0,0,21
+225715,0,0,0,21
+225716,0,0,0,21
+225717,0,0,0,21
+225718,0,0,0,21
+225719,0,0,0,21
+225720,0,0,0,21
+225721,0,0,0,21
+225722,0,0,0,21
+225723,0,0,0,21
+225724,0,0,0,21
+225725,0,0,0,21
+225726,0,0,0,21
+225727,0,0,0,21
+225728,0,0,0,21
+225729,0,0,0,21
+225730,0,0,0,21
+225731,0,0,0,21
+225732,0,0,0,21
+225733,0,0,0,21
+225734,0,0,0,21
+225735,0,0,0,21
+225736,0,0,0,21
+225737,0,0,0,21
+225738,0,0,0,21
+225739,0,0,0,21
+225740,0,0,0,21
+225741,0,0,0,21
+225742,0,0,0,21
+225743,0,0,0,21
+225744,0,0,0,21
+225745,0,0,0,21
+225746,0,0,0,21
+225747,0,0,0,21
+225748,0,0,0,21
+225749,0,0,0,21
+225750,0,0,0,21
+225751,0,0,0,21
+225752,0,0,0,21
+225753,0,0,0,21
+225754,0,0,0,21
+225755,0,0,0,21
+225756,0,0,0,21
+225757,0,0,0,21
+225758,0,0,0,21
+225759,0,0,0,21
+225760,0,0,0,21
+225761,0,0,0,21
+225762,0,0,0,21
+225763,0,0,0,21
+225764,0,0,0,21
+225765,0,0,0,21
+225766,0,0,0,21
+225767,0,0,0,21
+225768,0,0,0,21
+225769,0,0,0,21
+225770,0,0,0,21
+225771,0,0,0,21
+225772,0,0,0,21
+225773,0,0,0,21
+225774,0,0,0,21
+225775,0,0,0,21
+225776,0,0,0,21
+225777,0,0,0,21
+225778,0,0,0,21
+225779,0,0,0,21
+225780,0,0,0,21
+225781,0,0,0,21
+225782,0,0,0,21
+225783,0,0,0,21
+225784,0,0,0,21
+225785,0,0,0,21
+225786,0,0,0,21
+225787,0,0,0,21
+225788,0,0,0,21
+225789,0,0,0,21
+225790,0,0,0,21
+225791,0,0,0,21
+225792,0,0,0,21
+225793,0,0,0,21
+225794,0,0,0,21
+225795,0,871.5374484,0,21
+225796,0,1522.139086,0,21
+225797,0,1118.440844,0,21
+225798,0,1681.339477,0,21
+225799,0,1681.339506,0,21
+225800,0,1996.410436,0,21
+225801,0,2307.536131,0,21
+225802,0,2152.435066,0,21
+225803,0,2767.790659,0,21
+225804,0,2615.170959,0,21
+225805,0,2919.661598,0,21
+225806,0,3221.282493,0,21
+225807,0,3221.282579,0,21
+225808,0,3520.256137,0,21
+225809,0,3668.812913,0,21
+225810,0,3668.809781,0,21
+225811,0,3816.77135,0,21
+225812,0,4110.976627,0,21
+225813,0,4257.256471,0,21
+225814,0,4257.256723,0,21
+225815,0,4548.245241,0,21
+225816,0,4692.981187,0,21
+225817,0,4692.981312,0,21
+225818,0,5124.29543,0,21
+225819,0,5267.145,0,21
+225820,0,5267.146262,0,21
+225821,0,5693.039558,0,21
+225822,0,5551.506732,0,21
+225823,0,5834.151388,0,21
+225824,0,5974.850686,0,21
+225825,0,6115.144284,0,21
+225826,0,6255.039547,0,21
+225827,0,6519.394863,0,21
+225828,0,6658.513791,0,21
+225829,0,6797.253814,0,21
+225830,0,6984.436225,0,21
+225831,0,7132.071854,0,21
+225832,0,7288.868633,0,21
+225833,0,7445.169197,0,21
+225834,0,7464.057055,0,21
+225835,0,7892.584582,0,21
+225836,0,7774.993061,0,21
+225837,0,8065.688605,0,21
+225838,0,8093.314633,0,21
+225839,0,8373.295935,0,21
+225840,0,8526.469439,0,21
+225841,0,8544.631865,0,21
+225842,0,8697.31072,0,21
+225843,0,8983.563613,0,21
+225844,0,9001.47785,0,21
+225845,0,9152.979252,0,21
+225846,0,9304.100631,0,21
+225847,0,9321.791021,0,21
+225848,0,9737.687932,0,21
+225849,0,9605.225975,0,21
+225850,0,9781.443998,0,21
+225851,0,10036.77521,0,21
+225852,0,10071.5537,0,21
+225853,0,10220.44338,0,21
+225854,0,10351.75332,0,21
+225855,0,10517.19459,0,21
+225856,0,10517.19458,0,21
+225857,0,10795.53914,0,21
+225858,0,10829.60874,0,21
+225859,0,10959.81062,0,21
+225860,0,11106.69506,0,21
+225861,0,11253.25782,0,21
+225862,0,11399.50241,0,21
+225863,581.3590014,11416.29788,0,21
+225864,1255.779087,11545.43211,0,21
+225865,1123.453023,11707.74523,0,21
+225866,1255.779115,11981.36351,0,21
+225867,1517.443293,11724.39164,0,21
+225868,1646.934419,12253.9149,0,21
+225869,1903.529894,12031.01547,0,21
+225870,1775.613284,12414.56891,0,21
+225871,2157.245006,12431.02493,0,21
+225872,2157.245049,12574.78646,0,21
+225873,2283.115062,12624.96843,0,21
+225874,2657.125489,13138.64816,0,21
+225875,2533.029904,13050.2426,0,21
+225876,2903.703167,13268.57378,0,21
+225877,2903.703247,13469.31096,0,21
+225878,3148.253793,13595.42708,0,21
+225879,3148.253923,13810.9282,0,21
+225880,3511.556184,16122.66414,0,21
+225881,3511.5563,15689.6757,0,21
+225882,3631.771855,16265.35299,0,21
+225883,3870.945463,16506.01942,0,21
+225884,3989.924579,17428.1457,0,21
+225885,4108.511424,17346.79953,0,21
+225886,4226.714966,18225.31683,0,21
+225887,4462.00541,18384.5355,0,21
+225888,4462.005625,18794.26499,0,21
+225889,4695.858577,19195.69777,0,21
+225890,4812.263887,19814.19188,0,21
+225891,4928.330447,20222.59884,0,21
+225892,5044.064485,20249.16532,0,21
+225893,5274.557999,21253.94811,0,21
+225894,5274.558346,21030.21107,0,21
+225895,5503.789048,21889.66974,0,21
+225896,5617.943919,22043.45395,0,21
+225897,5731.797955,22547.22932,0,21
+225898,5958.621681,23031.95416,0,21
+225899,5958.622065,23094.0215,0,21
+225900,6184.295177,24037.71841,0,21
+225901,0,0,0,21
+225902,0,0,0,21
+225903,0,0,0,21
+225904,0,0,0,21
+225905,0,368160.9615,665346.5466,21
+225906,327398.5558,0,0,21
+225907,0,0,0,21
+225908,0,0,0,21
+225909,0,0,0,21
+225910,0,0,0,21
+225911,0,0,0,21
+225912,0,0,0,21
+225913,0,0,0,21
+225914,0,0,0,21
+225915,0,0,0,21
+225916,0,0,0,21
+225917,0,0,0,21
+225918,0,0,0,21
+225919,0,0,0,21
+225920,0,0,0,21
+225921,0,0,0,21
+225922,0,0,0,21
+225923,0,0,0,21
+225924,0,0,0,21
+225925,0,0,0,21
+225926,0,0,0,21
+225927,0,0,0,21
+225928,0,0,0,21
+225929,0,0,0,21
+225930,0,0,0,21
+225931,0,0,0,21
+225932,0,0,0,21
+225933,0,0,0,21
+225934,0,0,0,21
+225935,0,0,0,21
+225936,0,0,0,21
+225937,0,0,0,21
+225938,0,0,0,21
+225939,0,368842.1124,665224.9538,21
+225940,0,0,0,21
+225941,328391.5685,0,0,21
+225942,0,0,0,21
+225943,0,0,0,21
+225944,0,0,0,21
+225945,0,0,0,21
+225946,0,0,0,21
+225947,0,0,0,21
+225948,0,0,0,21
+225949,0,0,0,21
+225950,0,0,0,21
+225951,0,0,0,21
+225952,0,0,0,21
+225953,0,0,0,21
+225954,0,0,0,21
+225955,0,0,0,21
+225956,0,0,0,21
+225957,0,0,0,21
+225958,0,0,0,21
+225959,0,0,0,21
+225960,0,0,0,15.6
+225961,0,0,0,15.6
+225962,0,0,0,15.6
+225963,0,0,0,15.6
+225964,0,0,0,15.6
+225965,0,0,0,15.6
+225966,0,0,0,15.6
+225967,0,0,0,15.6
+225968,0,0,0,15.6
+225969,0,0,0,15.6
+225970,0,0,0,15.6
+225971,0,0,0,15.6
+225972,0,0,0,15.6
+225973,0,0,664600.8495,15.6
+225974,0,368850.0307,0,15.6
+225975,0,0,0,15.6
+225976,329327.6364,0,0,15.6
+225977,0,0,0,15.6
+225978,0,0,0,15.6
+225979,0,0,0,15.6
+225980,0,0,0,15.6
+225981,0,0,0,15.6
+225982,0,0,0,15.6
+225983,0,0,0,15.6
+225984,0,0,0,15.6
+225985,0,0,0,15.6
+225986,0,0,0,15.6
+225987,0,0,0,15.6
+225988,0,0,0,15.6
+225989,0,0,0,15.6
+225990,0,0,0,15.6
+225991,0,0,0,15.6
+225992,0,0,0,15.6
+225993,0,0,0,15.6
+225994,0,0,0,15.6
+225995,0,0,0,15.6
+225996,0,0,0,15.6
+225997,0,0,0,15.6
+225998,0,0,0,15.6
+225999,0,0,0,15.6
+226000,0,0,0,15.6
+226001,0,0,0,15.6
+226002,0,0,0,15.6
+226003,0,0,0,15.6
+226004,0,0,0,15.6
+226005,0,0,0,15.6
+226006,0,0,0,15.6
+226007,0,0,665124.1871,15.6
+226008,0,0,0,15.6
+226009,0,368857.722,0,15.6
+226010,0,0,0,15.6
+226011,332725.4001,0,0,15.6
+226012,0,0,0,15.6
+226013,0,0,0,15.6
+226014,0,0,0,15.6
+226015,0,0,0,15.6
+226016,0,0,0,15.6
+226017,0,0,0,15.6
+226018,0,0,0,15.6
+226019,0,0,0,15.6
+226020,0,0,0,15.6
+226021,0,0,0,15.6
+226022,0,0,0,15.6
+226023,0,0,0,15.6
+226024,0,0,0,15.6
+226025,0,0,0,15.6
+226026,0,0,0,15.6
+226027,0,0,0,15.6
+226028,0,0,0,15.6
+226029,0,0,0,15.6
+226030,0,0,0,15.6
+226031,0,0,0,15.6
+226032,0,0,0,15.6
+226033,0,0,0,15.6
+226034,0,0,0,15.6
+226035,0,0,0,15.6
+226036,0,0,0,15.6
+226037,0,0,0,15.6
+226038,0,0,0,15.6
+226039,0,0,0,15.6
+226040,0,0,0,15.6
+226041,0,0,664371.3821,15.6
+226042,0,0,0,15.6
+226043,0,0,0,15.6
+226044,0,368855.8864,0,15.6
+226045,0,0,0,15.6
+226046,327791.8356,0,0,15.6
+226047,0,0,0,15.6
+226048,0,0,0,15.6
+226049,0,0,0,15.6
+226050,0,0,0,15.6
+226051,0,0,0,15.6
+226052,0,0,0,15.6
+226053,0,0,0,15.6
+226054,0,0,0,15.6
+226055,0,0,0,15.6
+226056,0,0,0,15.6
+226057,0,0,0,15.6
+226058,0,0,0,15.6
+226059,0,0,0,15.6
+226060,0,0,0,15.6
+226061,0,0,0,15.6
+226062,0,0,0,15.6
+226063,0,0,0,15.6
+226064,0,0,0,15.6
+226065,0,0,0,15.6
+226066,0,0,0,15.6
+226067,0,0,0,15.6
+226068,0,0,0,15.6
+226069,0,0,0,15.6
+226070,0,0,0,15.6
+226071,0,0,0,15.6
+226072,0,0,0,15.6
+226073,0,0,0,15.6
+226074,0,0,0,15.6
+226075,0,0,664253.1828,15.6
+226076,0,0,0,15.6
+226077,0,0,0,15.6
+226078,0,0,0,15.6
+226079,0,368896.9603,0,15.6
+226080,0,0,0,15.6
+226081,329872.4563,0,0,15.6
+226082,0,0,0,15.6
+226083,0,0,0,15.6
+226084,0,0,0,15.6
+226085,0,0,0,15.6
+226086,0,0,0,15.6
+226087,0,0,0,15.6
+226088,0,0,0,15.6
+226089,0,0,0,15.6
+226090,0,0,0,15.6
+226091,0,0,0,15.6
+226092,0,0,0,15.6
+226093,0,0,0,15.6
+226094,0,0,0,15.6
+226095,0,0,0,15.6
+226096,0,0,0,15.6
+226097,0,0,0,15.6
+226098,0,0,0,15.6
+226099,0,0,0,15.6
+226100,0,0,0,15.6
+226101,0,0,0,15.6
+226102,0,0,0,15.6
+226103,0,0,0,15.6
+226104,0,0,0,15.6
+226105,0,0,0,15.6
+226106,0,0,0,15.6
+226107,0,0,0,15.6
+226108,0,0,0,15.6
+226109,0,0,664757.7333,15.6
+226110,0,0,0,15.6
+226111,0,0,0,15.6
+226112,0,0,0,15.6
+226113,0,0,0,15.6
+226114,0,368872.9389,0,15.6
+226115,0,0,0,15.6
+226116,332813.6231,0,0,15.6
+226117,0,0,0,15.6
+226118,0,0,0,15.6
+226119,0,0,0,15.6
+226120,0,0,0,15.6
+226121,0,0,0,15.6
+226122,0,0,0,15.6
+226123,0,0,0,15.6
+226124,0,0,0,15.6
+226125,0,0,0,15.6
+226126,0,0,0,15.6
+226127,0,0,0,15.6
+226128,0,0,0,15.6
+226129,0,0,0,15.6
+226130,0,0,0,15.6
+226131,0,0,0,15.6
+226132,0,0,0,15.6
+226133,0,0,0,15.6
+226134,0,0,0,15.6
+226135,0,0,0,15.6
+226136,0,0,0,15.6
+226137,0,0,0,15.6
+226138,0,0,0,15.6
+226139,0,0,0,15.6
+226140,0,0,0,15.6
+226141,0,0,0,15.6
+226142,0,130.0375613,0,15.6
+226143,0,0,664890.3747,15.6
+226144,0,0,0,15.6
+226145,0,0,0,15.6
+226146,0,110.0153743,0,15.6
+226147,0,0,0,15.6
+226148,0,0,0,15.6
+226149,0,368863.9373,0,15.6
+226150,0,106.2737086,0,15.6
+226151,327914.5279,0,0,15.6
+226152,0,0,0,15.6
+226153,0,0,0,15.6
+226154,0,81.53587265,0,15.6
+226155,0,0,0,15.6
+226156,0,0,0,15.6
+226157,0,0,0,15.6
+226158,0,103.0035818,0,15.6
+226159,0,0,0,15.6
+226160,0,0,0,15.6
+226161,0,0,0,15.6
+226162,0,107.1488602,0,15.6
+226163,0,0,0,15.6
+226164,0,0,0,15.6
+226165,0,0,0,15.6
+226166,0,113.8070013,0,15.6
+226167,0,0,0,15.6
+226168,0,0,0,15.6
+226169,0,0,0,15.6
+226170,0,116.6570491,0,15.6
+226171,0,0,0,15.6
+226172,0,0,0,15.6
+226173,0,0,0,15.6
+226174,0,118.8766391,0,15.6
+226175,0,0,0,15.6
+226176,0,0,0,15.6
+226177,0,0,665078.8923,15.6
+226178,0,119.8295731,0,15.6
+226179,0,0,0,15.6
+226180,0,0,0,15.6
+226181,0,0,0,15.6
+226182,0,119.0597913,0,15.6
+226183,0,0,0,15.6
+226184,0,368891.0855,0,15.6
+226185,0,0,0,15.6
+226186,330063.827,111.163515,0,15.6
+226187,0,0,0,15.6
+226188,0,0,0,15.6
+226189,0,0,0,15.6
+226190,0,83.01346769,0,15.6
+226191,0,0,0,15.6
+226192,0,0,0,15.6
+226193,0,0,0,15.6
+226194,0,107.2862268,0,15.6
+226195,0,0,0,15.6
+226196,0,0,0,15.6
+226197,0,0,0,15.6
+226198,0,100.4009012,0,15.6
+226199,0,0,0,15.6
+226200,0,0,0,15.6
+226201,0,0,0,15.6
+226202,0,102.4051418,0,15.6
+226203,0,0,0,15.6
+226204,0,0,0,15.6
+226205,0,0,0,15.6
+226206,0,102.2508325,0,15.6
+226207,0,0,0,15.6
+226208,0,0,0,15.6
+226209,0,0,0,15.6
+226210,0,104.2085317,0,15.6
+226211,0,0,667071.9299,15.6
+226212,0,0,0,15.6
+226213,0,0,0,15.6
+226214,0,106.6300211,0,15.6
+226215,0,0,0,15.6
+226216,0,0,0,15.6
+226217,0,0,0,15.6
+226218,0,108.6550938,0,15.6
+226219,0,368876.7059,0,15.6
+226220,0,0,0,15.6
+226221,332704.5407,0,0,15.6
+226222,0,104.036829,0,15.6
+226223,0,0,0,15.6
+226224,0,0,0,15.6
+226225,0,0,0,15.6
+226226,0,85.32618194,0,15.6
+226227,0,0,0,15.6
+226228,0,0,0,15.6
+226229,0,0,0,15.6
+226230,0,118.3585784,0,15.6
+226231,0,0,0,15.6
+226232,0,0,0,15.6
+226233,0,0,0,15.6
+226234,0,113.1592916,0,15.6
+226235,0,0,0,15.6
+226236,0,0,0,15.6
+226237,0,0,0,15.6
+226238,0,114.6719299,0,15.6
+226239,0,0,0,15.6
+226240,0,0,0,15.6
+226241,0,0,0,15.6
+226242,0,111.0354017,0,15.6
+226243,0,0,0,15.6
+226244,0,0,0,15.6
+226245,0,0,667255.6082,15.6
+226246,0,106.3947262,0,15.6
+226247,0,0,0,15.6
+226248,0,0,0,15.6
+226249,0,0,0,15.6
+226250,0,101.3877126,0,15.6
+226251,0,0,0,15.6
+226252,0,0,0,15.6
+226253,0,0,0,15.6
+226254,0,368932.3771,0,15.6
+226255,0,0,0,15.6
+226256,0,0,0,15.6
+226257,329090.5965,0,0,15.6
+226258,0,76.63449735,0,15.6
+226259,0,0,0,15.6
+226260,0,0,0,15.6
+226261,0,0,0,15.6
+226262,0,79.66805279,0,15.6
+226263,0,0,0,15.6
+226264,0,0,0,15.6
+226265,0,0,0,15.6
+226266,0,101.3644462,0,15.6
+226267,0,0,0,15.6
+226268,0,0,0,15.6
+226269,0,0,0,15.6
+226270,0,99.35905415,0,15.6
+226271,0,0,0,15.6
+226272,0,0,0,15.6
+226273,0,0,0,15.6
+226274,0,104.4283704,0,15.6
+226275,0,0,0,15.6
+226276,0,0,0,15.6
+226277,0,0,0,15.6
+226278,0,105.9844145,0,15.6
+226279,0,0,668974.7799,15.6
+226280,0,0,0,15.6
+226281,0,0,0,15.6
+226282,0,106.842665,0,15.6
+226283,0,0,0,15.6
+226284,0,0,0,15.6
+226285,0,0,0,15.6
+226286,0,105.4479706,0,15.6
+226287,0,0,0,15.6
+226288,0,368811.3445,0,15.6
+226289,0,0,0,15.6
+226290,0,99.78734783,0,15.6
+226291,329664.9654,0,0,15.6
+226292,0,0,0,15.6
+226293,0,0,0,15.6
+226294,0,73.80454518,0,15.6
+226295,0,0,0,15.6
+226296,0,0,0,15.6
+226297,0,0,0,15.6
+226298,0,98.83168121,0,15.6
+226299,0,0,0,15.6
+226300,0,0,0,15.6
+226301,0,0,0,15.6
+226302,0,98.04581082,0,15.6
+226303,0,0,0,15.6
+226304,0,0,0,15.6
+226305,0,0,0,15.6
+226306,0,0,0,15.6
+226307,0,0,0,15.6
+226308,0,0,0,15.6
+226309,0,0,0,15.6
+226310,0,0,0,15.6
+226311,0,0,0,15.6
+226312,0,0,0,15.6
+226313,0,0,669917.5941,15.6
+226314,0,77.36255757,0,15.6
+226315,0,0,0,15.6
+226316,0,0,0,15.6
+226317,0,0,0,15.6
+226318,0,116.0049145,0,15.6
+226319,0,0,0,15.6
+226320,0,0,0,17.8
+226321,0,218991.3671,0,17.8
+226322,0,368790.9761,0,17.8
+226323,0,0,0,17.8
+226324,0,24940.11427,0,17.8
+226325,332581.5814,52326.98149,0,17.8
+226326,0,29515.96577,0,17.8
+226327,0,29100.95155,0,17.8
+226328,0,29783.51875,0,17.8
+226329,0,29963.23682,0,17.8
+226330,0,33676.62571,0,17.8
+226331,0,32056.31508,0,17.8
+226332,0,32803.55408,0,17.8
+226333,0,33581.68872,0,17.8
+226334,0,33919.43019,0,17.8
+226335,0,34015.36953,0,17.8
+226336,0,34833.25404,0,17.8
+226337,0,34781.6604,0,17.8
+226338,0,35737.24712,0,17.8
+226339,0,35401.48557,0,17.8
+226340,0,36158.20831,0,17.8
+226341,0,36632.3865,0,17.8
+226342,0,36460.41175,0,17.8
+226343,0,4484.415668,0,17.8
+226344,0,6230.085332,0,17.8
+226345,0,3931.74873,0,17.8
+226346,0,4748.091376,0,17.8
+226347,0,6390.139029,671308.7778,17.8
+226348,0,6638.117899,0,17.8
+226349,0,6109.890144,0,17.8
+226350,0,6270.592531,0,17.8
+226351,0,63374.38542,0,17.8
+226352,0,30587.32056,0,17.8
+226353,0,37886.04554,0,17.8
+226354,0,39154.70025,0,17.8
+226355,0,39663.38901,0,17.8
+226356,0,418619.9582,0,17.8
+226357,0,44535.87931,0,17.8
+226358,0,46255.93961,0,17.8
+226359,333829.2589,46936.83848,0,17.8
+226360,0,47332.98621,0,17.8
+226361,0,47451.26649,0,17.8
+226362,0,48050.86372,0,17.8
+226363,0,48137.66118,0,17.8
+226364,0,48505.25502,0,17.8
+226365,0,49207.80517,0,17.8
+226366,0,48995.4979,0,17.8
+226367,0,49525.80171,0,17.8
+226368,3870.949323,49853.02441,0,17.8
+226369,14492.9124,50305.55481,0,17.8
+226370,7296.44587,50340.33872,0,17.8
+226371,9868.983223,43458.69401,0,17.8
+226372,10285.98415,44041.99279,0,17.8
+226373,10285.98399,44041.99543,0,17.8
+226374,10493.32405,44664.39457,0,17.8
+226375,10802.91477,44297.89323,0,17.8
+226376,10802.91472,44919.21599,0,17.8
+226377,11110.8337,45188.11388,0,17.8
+226378,11110.83332,0,0,17.8
+226379,11213.107,0,0,17.8
+226380,11518.84844,0,0,20
+226381,721583.6716,368133.0335,868921.0119,20
+226382,10112.92006,4629.48473,0,20
+226383,9331.78737,43064.23535,0,20
+226384,41253.48049,156202.917,2248.675632,20
+226385,70873.48784,89745.90236,5043.599396,20
+226386,69232.10092,99748.22341,18428.7383,20
+226387,79258.47734,100162.1966,11722.04461,20
+226388,76404.00979,99667.1296,15764.50021,20
+226389,76340.62432,99437.3153,17732.22125,20
+226390,78433.53236,98814.9656,17733.63521,20
+226391,78377.965,98373.06326,18407.67948,20
+226392,78554.98248,98092.02172,18753.58717,20
+226393,78655.9964,97785.02722,19364.70703,20
+226394,78918.58198,97501.38202,19693.4801,20
+226395,78684.43565,96938.46322,20186.90253,20
+226396,79564.04966,97000.23208,20538.37448,20
+226397,79214.61821,96615.53955,20897.04911,20
+226398,79435.13195,96382.44305,21390.28685,20
+226399,79752.22227,96151.53541,21828.71846,20
+226400,79511.36397,95773.108,22073.42939,20
+226401,80231.04926,95796.52447,22569.22371,20
+226402,79636.68362,95261.12055,22969.61242,20
+226403,80656.88978,95237.72391,23406.46434,20
+226404,80090.26601,94904.55743,23685.79315,20
+226405,80604.65893,94729.53603,24099.25983,20
+226406,80614.33329,94875.99305,24513.03565,20
+226407,80718.90785,94080.83373,25014.37009,20
+226408,81234.1664,94343.64512,25224.37826,20
+226409,80911.82654,93828.34062,25607.79779,20
+226410,81269.95967,93762.37609,26008.21681,20
+226411,81269.91978,93500.98503,26454.84648,20
+226412,81435.67098,93445.83892,25910.58069,20
+226413,81269.93295,93222.28491,22451.38187,20
+226414,81715.41804,93133.0578,21817.52101,20
+226415,81312.34428,92864.80145,21492.58222,20
+226416,81786.73072,92625.57508,21086.01242,20
+226417,81438.05981,92599.67727,21165.81723,20
+226418,82002.01544,92509.81424,20410.74878,20
+226419,81455.80068,92083.56477,20112.17488,20
+226420,81904.20791,92184.98445,19419.08735,20
+226421,81813.72286,91723.75088,19041.12645,20
+226422,81812.15838,91980.49325,18778.08363,20
+226423,81579.61017,91383.79152,18186.64413,20
+226424,81971.64263,91617.9255,17925.46404,20
+226425,81744.87186,91119.33007,17521.49971,20
+226426,81965.51255,91351.78892,17108.59491,20
+226427,81491.88115,90998.05588,16641.15551,20
+226428,81988.82878,90558.01781,16226.2002,20
+226429,81634.06373,91222.26299,15873.32288,20
+226430,81992.58294,90231.27803,15123.65396,20
+226431,81447.84083,90708.19109,14895.09848,20
+226432,81857.47732,90123.82197,14310.73463,20
+226433,81764.72315,90160.91562,14357.94864,20
+226434,81627.13924,90085.54016,14417.48282,20
+226435,81759.59413,89847.691,14384.63592,20
+226436,81421.8335,90053.31223,14537.1654,20
+226437,81785.92504,89536.81095,14509.62212,20
+226438,81216.04818,89536.79824,14454.4284,20
+226439,81746.03077,89677.61469,14597.83524,20
+226440,81324.93461,89230.83077,14595.61541,21
+226441,72532.80316,84602.58682,11752.56879,21
+226442,71603.46401,83914.44582,11397.54774,21
+226443,70659.50979,84101.3969,11299.64693,21
+226444,70342.58123,83261.6531,11241.14065,21
+226445,70023.5449,83586.24507,11057.55945,21
+226446,69291.50313,82833.20149,11209.74597,21
+226447,69242.27929,82891.67473,10963.55039,21
+226448,68134.34208,82400.77038,11161.09056,21
+226449,68253.14493,82407.07151,10933.26606,21
+226450,67532.73486,81848.83347,10878.9032,21
+226451,67367.97122,82026.94282,10890.18512,21
+226452,66510.16477,81784.76809,10824.05863,21
+226453,66413.45555,81165.42364,10858.93432,21
+226454,65863.78786,81434.36153,10828.81746,21
+226455,65343.71013,80898.3007,10816.10967,21
+226456,65080.13272,81052.11331,10809.62036,21
+226457,64315.76429,80236.17264,10820.56706,21
+226458,64112.48314,80833.97216,10766.4073,21
+226459,63664.03553,79857.88334,10788.17391,21
+226460,63137.50207,80369.15685,10673.27308,21
+226461,62591.6332,79472.49263,10744.39068,21
+226462,62385.4242,79903.28835,10763.45912,21
+226463,61842.31445,79259.86126,10724.09906,21
+226464,61376.7042,79197.78316,10633.11338,21
+226465,60954.92473,79219.49771,10696.02271,21
+226466,60514.07335,78641.39741,10612.51862,21
+226467,60029.09773,78817.41956,10695.77162,21
+226468,59619.15451,78294.16757,10560.32286,21
+226469,59192.25415,78278.65605,10555.18934,21
+226470,58650.74346,78216.57163,10683.67012,21
+226471,58181.354,77918.27192,10438.29008,21
+226472,58022.87771,77761.51403,10655.04564,21
+226473,57225.1317,77315.11901,10443.83964,21
+226474,57014.18158,77553.61282,10660.70978,21
+226475,56558.22335,77265.17044,10452.69906,21
+226476,56151.86495,76949.50947,10666.37036,21
+226477,55814.71864,76915.19171,10410.13731,21
+226478,55096.49378,76359.59138,10586.93667,21
+226479,55074.38253,76598.8564,10526.47133,21
+226480,54332.19297,76293.5698,10448.79609,21
+226481,54007.61456,75957.64799,10531.99486,21
+226482,53635.01613,76087.14111,10454.27202,21
+226483,53030.11971,75926.03125,10530.36016,21
+226484,52970.44113,75365.17403,10422.11255,21
+226485,52136.29392,75599.148,10438.4069,21
+226486,52040.49979,74979.84703,10529.68555,21
+226487,51687.03292,75245.69513,10422.89631,21
+226488,51378.27433,74739.44643,10422.42254,21
+226489,51039.83293,74799.69804,10407.27995,21
+226490,50651.64085,74460.66467,10430.97583,21
+226491,50528.59963,74508.84663,10401.98886,21
+226492,50184.67389,74064.59707,10314.38765,21
+226493,49719.89107,73972.7808,10407.31241,21
+226494,49406.01174,74204.40161,10277.38357,21
+226495,49251.80569,73416.29455,10412.6223,21
+226496,48652.35197,73600.34997,10170.83267,21
+226497,48581.79123,73285.49153,10364.80832,21
+226498,48373.08533,73313.77889,10287.8126,21
+226499,47643.00144,72705.24285,10146.52263,21
+226500,48095.42369,72979.20045,10396.91736,21
+226501,13869.90434,37170.62204,761.0112531,21
+226502,12198.28537,34369.37999,688.7221247,21
+226503,11285.37098,33917.26478,630.3201435,21
+226504,11153.37163,33229.92116,615.6426172,21
+226505,10321.45381,32695.19919,571.3798083,21
+226506,9967.662165,31867.83913,571.3876382,21
+226507,9651.905151,31373.35637,526.7929082,21
+226508,9405.564988,31121.50681,511.8551019,21
+226509,9254.403582,30205.55556,496.8769543,21
+226510,8881.205464,30371.84103,466.7906084,21
+226511,8827.195623,29826.12147,451.6859722,21
+226512,8491.582086,29149.31146,421.338223,21
+226513,8324.913444,28860.73806,406.0972329,21
+226514,8171.748867,28210.39921,390.8081727,21
+226515,7804.630459,27811.23552,360.0767404,21
+226516,7777.261762,27590.63473,344.6344493,21
+226517,7494.317329,27077.0118,329.1375317,21
+226518,7251.685016,26298.20018,313.583967,21
+226519,7209.894057,26276.73146,282.295813,21
+226520,6822.479173,25771.20094,266.5581485,21
+226521,6692.893769,25134.14603,250.7534153,21
+226522,6520.009317,24781.62586,218.927444,21
+226523,6390.414552,24588.00907,218.9285644,21
+226524,5994.859023,24000.76234,186.7871881,21
+226525,5968.260677,23628.32583,170.5852607,21
+226526,5806.668834,23217.4645,137.8817127,21
+226527,5422.203883,22684.50695,137.8821521,21
+226528,5513.24161,22227.16307,113.0543261,21
+226529,5125.424249,21175.1819,87.91675827,21
+226530,4962.369329,21252.09654,70.95090502,21
+226531,4811.89691,20558.60224,53.78035353,21
+226532,4541.083819,20292.83768,36.34932172,21
+226533,4374.304996,19727.24062,18.5494163,21
+226534,4194.181567,19349.2093,0,21
+226535,3946.531024,19104.34856,0,21
+226536,3638.436211,18679.5996,0,21
+226537,3624.202536,18331.4588,0,21
+226538,3186.013942,17756.85847,0,21
+226539,3156.581064,17421.13278,0,21
+226540,2856.025848,16952.57593,0,21
+226541,2712.059842,16632.13899,0,21
+226542,2390.158781,16261.7218,0,21
+226543,2376.292978,15670.0544,0,21
+226544,2065.221155,15369.6202,0,21
+226545,1764.274096,14820.09723,0,21
+226546,1719.286465,14573.12375,0,21
+226547,1411.337058,13933.74987,0,21
+226548,1231.069807,13691.65546,0,21
+226549,1047.018037,13125.66259,0,21
+226550,862.9776856,12779.69591,0,21
+226551,832.0983757,12444.14522,0,21
+226552,785.9041271,11767.18049,0,21
+226553,754.7108514,11545.10327,0,21
+226554,723.3802365,10917.06699,0,21
+226555,691.9069678,10854.88993,0,21
+226556,644.8026281,10374.33511,0,21
+226557,612.9617291,10181.93277,0,21
+226558,573.1246781,9315.55634,0,21
+226559,540.9112274,9253.774763,0,21
+226560,500.5922231,9031.741655,0,21
+226561,467.9605006,7967.348758,0,21
+226562,427.0976228,8097.154117,0,21
+226563,385.899796,7456.805997,0,21
+226564,360.6217109,7176.563481,0,21
+226565,318.8030861,6477.842508,0,21
+226566,277.0709356,6619.483994,0,21
+226567,250.4353967,5939.276294,0,21
+226568,207.9682833,5872.18364,0,21
+226569,164.1836527,5575.823089,0,21
+226570,136.6780477,5096.793042,0,21
+226571,100.7951803,5028.927138,0,21
+226572,74.4307066,4762.20552,0,21
+226573,65.5209553,4240.666877,0,21
+226574,38.31804616,4189.874829,0,21
+226575,19.63092499,3678.065276,0,21
+226576,0,3626.984877,0,21
+226577,0,3342.540811,0,21
+226578,0,2810.900257,0,21
+226579,0,3011.764347,0,21
+226580,0,2242.69532,0,21
+226581,0,2404.256123,0,21
+226582,0,1899.476976,0,21
+226583,0,1699.634592,0,21
+226584,0,1550.793666,0,21
+226585,0,935.2042026,0,21
+226586,0,1187.15243,0,21
+226587,0,862.8781009,0,21
+226588,0,797.357941,0,21
+226589,0,762.9564432,0,21
+226590,0,723.7690706,0,21
+226591,0,669.4326017,0,21
+226592,0,611.9550882,0,21
+226593,0,574.2416843,0,21
+226594,0,497.9993542,0,21
+226595,0,448.1913729,0,21
+226596,0,403.0837633,0,21
+226597,0,391.9165706,0,21
+226598,0,306.1875976,0,21
+226599,0,306.1877377,0,21
+226600,0,233.3052429,0,21
+226601,0,203.7104984,0,21
+226602,0,158.7480956,0,21
+226603,0,112.9533306,0,21
+226604,0,66.03398536,0,21
+226605,0,17.24319109,0,21
+226606,0,0,0,21
+226607,0,0,0,21
+226608,0,0,0,21
+226609,0,0,0,21
+226610,0,0,0,21
+226611,0,0,0,21
+226612,0,0,0,21
+226613,0,0,0,21
+226614,0,0,0,21
+226615,0,0,0,21
+226616,0,0,0,21
+226617,0,0,0,21
+226618,0,0,0,21
+226619,0,0,0,21
+226620,0,0,0,21
+226621,0,0,0,21
+226622,0,0,0,21
+226623,0,0,0,21
+226624,0,0,0,21
+226625,0,0,0,21
+226626,0,0,0,21
+226627,0,0,0,21
+226628,0,0,0,21
+226629,0,0,0,21
+226630,0,0,0,21
+226631,0,0,0,21
+226632,0,0,0,21
+226633,0,0,0,21
+226634,0,0,0,21
+226635,0,0,0,21
+226636,0,0,0,21
+226637,0,0,0,21
+226638,0,0,0,21
+226639,0,0,0,21
+226640,0,0,0,21
+226641,0,0,0,21
+226642,0,0,0,21
+226643,0,0,0,21
+226644,0,0,0,21
+226645,0,0,0,21
+226646,0,0,0,21
+226647,0,0,0,21
+226648,0,0,0,21
+226649,0,0,0,21
+226650,0,0,0,21
+226651,0,0,0,21
+226652,0,0,0,21
+226653,0,0,0,21
+226654,0,0,0,21
+226655,0,0,0,21
+226656,0,0,0,21
+226657,0,0,0,21
+226658,0,0,0,21
+226659,0,0,0,21
+226660,0,0,0,21
+226661,0,0,0,21
+226662,0,0,0,21
+226663,0,0,0,21
+226664,0,0,0,21
+226665,0,0,0,21
+226666,0,0,0,21
+226667,0,0,0,21
+226668,0,0,0,21
+226669,0,0,0,21
+226670,0,0,0,21
+226671,0,0,0,21
+226672,0,0,0,21
+226673,0,0,0,21
+226674,0,0,0,21
+226675,0,0,0,21
+226676,0,0,0,21
+226677,0,0,0,21
+226678,0,0,0,21
+226679,0,0,0,21
+226680,0,0,0,21
+226681,0,0,0,21
+226682,0,0,0,21
+226683,0,0,0,21
+226684,0,0,0,21
+226685,0,0,0,21
+226686,0,0,0,21
+226687,0,0,0,21
+226688,0,0,0,21
+226689,0,0,0,21
+226690,0,0,0,21
+226691,0,0,0,21
+226692,0,0,0,21
+226693,0,0,0,21
+226694,0,0,0,21
+226695,0,0,0,21
+226696,0,0,0,21
+226697,0,0,0,21
+226698,0,0,0,21
+226699,0,0,0,21
+226700,0,0,0,21
+226701,0,0,0,21
+226702,0,0,0,21
+226703,0,0,0,21
+226704,0,0,0,21
+226705,0,0,0,21
+226706,0,0,0,21
+226707,0,0,0,21
+226708,0,0,0,21
+226709,0,0,0,21
+226710,0,0,0,21
+226711,0,0,0,21
+226712,0,0,0,21
+226713,0,0,0,21
+226714,0,0,0,21
+226715,0,0,0,21
+226716,0,0,0,21
+226717,0,0,0,21
+226718,0,0,0,21
+226719,0,0,0,21
+226720,0,0,0,21
+226721,0,0,0,21
+226722,0,0,0,21
+226723,0,0,0,21
+226724,0,0,0,21
+226725,0,0,0,21
+226726,0,0,0,21
+226727,0,0,0,21
+226728,0,0,0,21
+226729,0,0,0,21
+226730,0,0,0,21
+226731,0,0,0,21
+226732,0,0,0,21
+226733,0,0,0,21
+226734,0,0,0,21
+226735,0,0,0,21
+226736,0,0,0,21
+226737,0,0,0,21
+226738,0,0,0,21
+226739,0,0,0,21
+226740,0,0,0,21
+226741,0,0,0,21
+226742,0,0,0,21
+226743,0,0,0,21
+226744,0,0,0,21
+226745,0,0,0,21
+226746,0,0,0,21
+226747,0,0,0,21
+226748,0,0,0,21
+226749,0,0,0,21
+226750,0,0,0,21
+226751,0,0,0,21
+226752,0,0,0,21
+226753,0,0,0,21
+226754,0,0,0,21
+226755,0,0,0,21
+226756,0,0,0,21
+226757,0,0,0,21
+226758,0,0,0,21
+226759,0,0,0,21
+226760,0,0,0,21
+226761,0,0,0,21
+226762,0,0,0,21
+226763,0,0,0,21
+226764,0,0,0,21
+226765,0,0,0,21
+226766,0,0,0,21
+226767,0,0,0,21
+226768,0,0,0,21
+226769,0,0,0,21
+226770,0,0,0,21
+226771,0,0,0,21
+226772,0,0,0,21
+226773,0,0,0,21
+226774,0,0,0,21
+226775,0,0,0,21
+226776,0,0,0,21
+226777,0,0,0,21
+226778,0,0,0,21
+226779,0,0,0,21
+226780,0,0,0,21
+226781,0,0,0,21
+226782,0,0,0,21
+226783,0,0,0,21
+226784,0,0,0,21
+226785,0,0,0,21
+226786,0,0,0,21
+226787,0,0,0,21
+226788,0,0,0,21
+226789,0,0,0,21
+226790,0,0,0,21
+226791,0,0,0,21
+226792,0,0,0,21
+226793,0,0,0,21
+226794,0,0,0,21
+226795,0,0,0,21
+226796,0,0,0,21
+226797,0,0,0,21
+226798,0,0,0,21
+226799,0,0,0,21
+226800,0,0,0,21
+226801,0,0,0,21
+226802,0,0,0,21
+226803,0,0,0,21
+226804,0,0,0,21
+226805,0,0,0,21
+226806,0,0,0,21
+226807,0,0,0,21
+226808,0,0,0,21
+226809,0,0,0,21
+226810,0,0,0,21
+226811,0,0,0,21
+226812,0,0,0,21
+226813,0,0,0,21
+226814,0,0,0,21
+226815,0,0,0,21
+226816,0,0,0,21
+226817,0,0,0,21
+226818,0,0,0,21
+226819,0,0,0,21
+226820,0,0,0,21
+226821,0,0,0,21
+226822,0,0,0,21
+226823,0,0,0,21
+226824,0,0,0,21
+226825,0,0,0,21
+226826,0,0,0,21
+226827,0,0,0,21
+226828,0,0,0,21
+226829,0,0,0,21
+226830,0,0,0,21
+226831,0,0,0,21
+226832,0,0,0,21
+226833,0,0,0,21
+226834,0,0,0,21
+226835,0,0,0,21
+226836,0,0,0,21
+226837,0,0,0,21
+226838,0,0,0,21
+226839,0,0,0,21
+226840,0,0,0,21
+226841,0,0,0,21
+226842,0,0,0,21
+226843,0,0,0,21
+226844,0,0,0,21
+226845,0,0,0,21
+226846,0,0,0,21
+226847,0,0,0,21
+226848,0,0,0,21
+226849,0,0,0,21
+226850,0,0,0,21
+226851,0,0,0,21
+226852,0,0,0,21
+226853,0,0,0,21
+226854,0,0,0,21
+226855,0,0,0,21
+226856,0,0,0,21
+226857,0,0,0,21
+226858,0,0,0,21
+226859,0,0,0,21
+226860,0,0,0,21
+226861,0,0,0,21
+226862,0,0,0,21
+226863,0,0,0,21
+226864,0,0,0,21
+226865,0,0,0,21
+226866,0,0,0,21
+226867,0,0,0,21
+226868,0,0,0,21
+226869,0,0,0,21
+226870,0,0,0,21
+226871,0,0,0,21
+226872,0,0,0,21
+226873,0,0,0,21
+226874,0,0,0,21
+226875,0,0,0,21
+226876,0,0,0,21
+226877,0,0,0,21
+226878,0,0,0,21
+226879,0,0,0,21
+226880,0,0,0,21
+226881,0,0,0,21
+226882,0,0,0,21
+226883,0,0,0,21
+226884,0,0,0,21
+226885,0,0,0,21
+226886,0,0,0,21
+226887,0,0,0,21
+226888,0,0,0,21
+226889,0,0,0,21
+226890,0,0,0,21
+226891,0,0,0,21
+226892,0,0,0,21
+226893,0,0,0,21
+226894,0,0,0,21
+226895,0,0,0,21
+226896,0,0,0,21
+226897,0,0,0,21
+226898,0,0,0,21
+226899,0,0,0,21
+226900,0,0,0,21
+226901,0,0,0,21
+226902,0,0,0,21
+226903,0,0,0,21
+226904,0,0,0,21
+226905,0,0,0,21
+226906,0,0,0,21
+226907,0,0,0,21
+226908,0,0,0,21
+226909,0,0,0,21
+226910,0,0,0,21
+226911,0,0,0,21
+226912,0,0,0,21
+226913,0,0,0,21
+226914,0,0,0,21
+226915,0,0,0,21
+226916,0,0,0,21
+226917,0,0,0,21
+226918,0,0,0,21
+226919,0,0,0,21
+226920,0,0,0,21
+226921,0,0,0,21
+226922,0,0,0,21
+226923,0,0,0,21
+226924,0,0,0,21
+226925,0,0,0,21
+226926,0,0,0,21
+226927,0,0,0,21
+226928,0,0,0,21
+226929,0,0,0,21
+226930,0,0,0,21
+226931,0,0,0,21
+226932,0,0,0,21
+226933,0,0,0,21
+226934,0,0,0,21
+226935,0,0,0,21
+226936,0,0,0,21
+226937,0,0,0,21
+226938,0,0,0,21
+226939,0,0,0,21
+226940,0,0,0,21
+226941,0,0,0,21
+226942,0,0,0,21
+226943,0,0,0,21
+226944,0,0,0,21
+226945,0,0,0,21
+226946,0,0,0,21
+226947,0,0,0,21
+226948,0,0,0,21
+226949,0,0,0,21
+226950,0,0,0,21
+226951,0,0,0,21
+226952,0,0,0,21
+226953,0,0,0,21
+226954,0,0,0,21
+226955,0,0,0,21
+226956,0,0,0,21
+226957,0,0,0,21
+226958,0,0,0,21
+226959,0,0,0,21
+226960,0,0,0,21
+226961,0,0,0,21
+226962,0,0,0,21
+226963,0,0,0,21
+226964,0,0,0,21
+226965,0,0,0,21
+226966,0,0,0,21
+226967,0,0,0,21
+226968,0,0,0,21
+226969,0,0,0,21
+226970,0,0,0,21
+226971,0,0,0,21
+226972,0,0,0,21
+226973,0,0,0,21
+226974,0,0,0,21
+226975,0,0,0,21
+226976,0,0,0,21
+226977,0,0,0,21
+226978,0,0,0,21
+226979,0,0,0,21
+226980,0,0,0,21
+226981,0,0,0,21
+226982,0,0,0,21
+226983,0,0,0,21
+226984,0,0,0,21
+226985,0,0,0,21
+226986,0,0,0,21
+226987,0,0,0,21
+226988,0,0,0,21
+226989,0,0,0,21
+226990,0,0,0,21
+226991,0,0,0,21
+226992,0,0,0,21
+226993,0,0,0,21
+226994,0,0,0,21
+226995,0,0,0,21
+226996,0,0,0,21
+226997,0,0,0,21
+226998,0,0,0,21
+226999,0,0,0,21
+227000,0,0,0,21
+227001,0,0,0,21
+227002,0,0,0,21
+227003,0,0,0,21
+227004,0,0,0,21
+227005,0,0,0,21
+227006,0,0,0,21
+227007,0,0,0,21
+227008,0,0,0,21
+227009,0,0,0,21
+227010,0,0,0,21
+227011,0,0,0,21
+227012,0,0,0,21
+227013,0,0,0,21
+227014,0,0,0,21
+227015,0,0,0,21
+227016,0,0,0,21
+227017,0,0,0,21
+227018,0,0,0,21
+227019,0,0,0,21
+227020,0,0,0,21
+227021,0,0,0,21
+227022,0,0,0,21
+227023,0,0,0,21
+227024,0,0,0,21
+227025,0,0,0,21
+227026,0,0,0,21
+227027,0,0,0,21
+227028,0,0,0,21
+227029,0,0,0,21
+227030,0,0,0,21
+227031,0,0,0,21
+227032,0,0,0,21
+227033,0,0,0,21
+227034,0,0,0,21
+227035,0,0,0,21
+227036,0,0,0,21
+227037,0,0,0,21
+227038,0,0,0,21
+227039,0,0,0,21
+227040,0,0,0,21
+227041,0,0,0,21
+227042,0,0,0,21
+227043,0,0,0,21
+227044,0,0,0,21
+227045,0,0,0,21
+227046,0,0,0,21
+227047,0,0,0,21
+227048,0,0,0,21
+227049,0,0,0,21
+227050,0,0,0,21
+227051,0,0,0,21
+227052,0,0,0,21
+227053,0,0,0,21
+227054,0,0,0,21
+227055,0,0,0,21
+227056,0,0,0,21
+227057,0,0,0,21
+227058,0,0,0,21
+227059,0,0,0,21
+227060,0,0,0,21
+227061,0,0,0,21
+227062,0,0,0,21
+227063,0,0,0,21
+227064,0,0,0,21
+227065,0,0,0,21
+227066,0,0,0,21
+227067,0,0,0,21
+227068,0,0,0,21
+227069,0,0,0,21
+227070,0,0,0,21
+227071,0,0,0,21
+227072,0,0,0,21
+227073,0,0,0,21
+227074,0,0,0,21
+227075,0,0,0,21
+227076,0,0,0,21
+227077,0,0,0,21
+227078,0,0,0,21
+227079,0,0,0,21
+227080,0,0,0,21
+227081,0,0,0,21
+227082,0,0,0,21
+227083,0,0,0,21
+227084,0,0,0,21
+227085,0,0,0,21
+227086,0,0,0,21
+227087,0,0,0,21
+227088,0,0,0,21
+227089,0,0,0,21
+227090,0,0,0,21
+227091,0,0,0,21
+227092,0,0,0,21
+227093,0,0,0,21
+227094,0,0,0,21
+227095,0,0,0,21
+227096,0,0,0,21
+227097,0,0,0,21
+227098,0,0,0,21
+227099,0,0,0,21
+227100,0,0,0,21
+227101,0,0,0,21
+227102,0,0,0,21
+227103,0,0,0,21
+227104,0,0,0,21
+227105,0,0,0,21
+227106,0,0,0,21
+227107,0,0,0,21
+227108,0,0,0,21
+227109,0,0,0,21
+227110,0,0,0,21
+227111,0,0,0,21
+227112,0,0,0,21
+227113,0,0,0,21
+227114,0,0,0,21
+227115,0,0,0,21
+227116,0,0,0,21
+227117,0,0,0,21
+227118,0,0,0,21
+227119,0,0,0,21
+227120,0,0,0,21
+227121,0,0,0,21
+227122,0,0,0,21
+227123,0,0,0,21
+227124,0,0,0,21
+227125,0,0,0,21
+227126,0,0,0,21
+227127,0,0,0,21
+227128,0,0,0,21
+227129,0,0,0,21
+227130,0,0,0,21
+227131,0,0,0,21
+227132,0,0,0,21
+227133,0,0,0,21
+227134,1123.458114,0,0,21
+227135,1255.785574,0,0,21
+227136,1255.785573,0,0,21
+227137,1517.452952,0,0,21
+227138,1775.626713,0,0,21
+227139,1903.545509,0,0,21
+227140,2030.745702,0,0,21
+227141,2283.137868,0,0,21
+227142,2408.393255,0,0,21
+227143,2657.156919,0,0,21
+227144,2780.711186,0,0,21
+227145,3026.264473,0,0,21
+227146,3148.298483,0,0,21
+227147,3269.858441,0,0,21
+227148,3511.612332,0,0,21
+227149,3631.831917,0,0,21
+227150,3871.014077,0,0,21
+227151,4031.109319,0,0,21
+227152,4335.849257,0,0,21
+227153,4504.725809,0,0,21
+227154,4504.725816,0,0,21
+227155,5022.306522,0,0,21
+227156,4905.896022,0,0,21
+227157,5286.80548,0,0,21
+227158,5357.438434,0,0,21
+227159,5727.09514,0,0,21
+227160,5928.961503,0,0,21
+227161,5987.408036,0,0,21
+227162,6134.149907,0,0,21
+227163,6378.231878,0,0,21
+227164,6328.194071,0,0,21
+227165,6668.855851,0,0,21
+227166,6716.315297,0,0,21
+227167,6860.724338,0,0,21
+227168,7180.689914,0,0,21
+227169,8246.211158,0,0,21
+227170,8146.179229,0,0,21
+227171,8288.333271,0,0,21
+227172,8693.808229,0,0,21
+227173,8947.801833,0,0,21
+227174,9126.337636,0,0,21
+227175,9492.29813,0,0,21
+227176,9648.489075,0,0,21
+227177,9918.458072,0,0,21
+227178,10059.18662,0,0,21
+227179,10458.2938,0,0,21
+227180,10576.32824,0,0,21
+227181,10869.77824,0,0,21
+227182,10979.89695,0,0,21
+227183,11366.66843,0,0,21
+227184,11533.09277,0,0,21
+227185,11643.60406,0,0,21
+227186,12038.97985,0,0,21
+227187,12056.15075,0,0,21
+227188,12421.71106,0,0,21
+227189,12571.80438,0,0,21
+227190,12709.35064,0,0,21
+227191,13179.30309,0,0,21
+227192,12993.3777,0,0,21
+227193,13542.61407,0,0,21
+227194,13386.56914,0,0,21
+227195,13731.0113,0,0,21
+227196,13853.00767,0,0,21
+227197,14095.83737,0,0,21
+227198,14146.67657,0,0,21
+227199,14360.54196,0,0,21
+227200,14627.46662,0,0,21
+227201,14638.23169,0,0,21
+227202,14985.71803,0,0,21
+227203,14894.05024,0,0,21
+227204,15401.11273,0,0,21
+227205,15395.7709,0,0,21
+227206,15757.00212,0,0,21
+227207,15670.12124,0,0,21
+227208,15905.11882,0,0,21
+227209,16139.97658,0,0,21
+227210,16154.28852,0,0,21
+227211,16296.74387,0,0,21
+227212,16635.84283,0,0,21
+227213,16411.05979,0,0,21
+227214,16558.38951,0,0,21
+227215,16786.5069,0,0,21
+227216,16805.59025,0,0,21
+227217,16919.69108,0,0,21
+227218,17383.50272,0,0,21
+227219,16961.42516,0,0,21
+227220,17411.78319,0,0,21
+227221,18479.18367,0,0,21
+227222,18861.08665,0,0,21
+227223,18861.08673,0,0,21
+227224,19206.3556,0,0,21
+227225,19358.53633,0,0,21
+227226,19550.55433,0,0,21
+227227,19599.54646,0,0,21
+227228,19928.93508,0,0,21
+227229,20045.17545,0,0,21
+227230,20066.61815,0,0,21
+227231,20400.35161,0,0,21
+227232,20333.26619,0,0,21
+227233,20625.90824,0,0,21
+227234,20899.34938,0,0,21
+227235,20781.73719,0,0,21
+227236,21123.6634,0,0,21
+227237,21028.04503,0,0,21
+227238,21590.59251,0,0,21
+227239,21380.41234,0,0,21
+227240,21604.11011,0,0,21
+227241,21840.65841,0,0,21
+227242,21840.65818,0,0,21
+227243,22190.87172,0,0,21
+227244,22089.98121,0,0,21
+227245,22413.06592,0,0,21
+227246,22439.51138,0,0,21
+227247,22674.61662,0,0,21
+227248,22661.27906,0,0,21
+227249,22901.17113,0,0,21
+227250,23130.01437,0,0,21
+227251,22914.48065,0,0,21
+227252,23463.3446,0,0,21
+227253,23161.81784,0,0,21
+227254,23576.09215,0,0,21
+227255,23395.43248,0,0,21
+227256,23827.25119,0,0,21
+227257,23701.78003,0,0,21
+227258,23840.39101,0,0,21
+227259,24059.66549,0,0,21
+227260,23845.16243,0,0,21
+227261,24278.59247,0,0,21
+227262,24176.28993,0,0,21
+227263,24309.56162,0,0,21
+227264,24296.50435,0,0,21
+227265,26016.32556,0,0,21
+227266,26473.16784,0,0,21
+227267,26583.70593,0,0,21
+227268,26817.5696,0,0,21
+227269,27050.98419,0,0,21
+227270,27038.1119,0,0,21
+227271,27271.11957,0,0,21
+227272,27594.32433,0,0,21
+227273,27522.6503,0,0,21
+227274,27722.98444,0,0,21
+227275,28148.0792,0,0,21
+227276,27876.79643,0,0,21
+227277,28366.70983,0,0,21
+227278,28307.04443,0,0,21
+227279,28622.25798,0,0,21
+227280,28622.55655,0,0,21
+227281,28864.39167,0,0,21
+227282,28961.12658,0,0,21
+227283,29184.33689,0,0,21
+227284,29323.68026,0,0,21
+227285,29503.41919,0,0,21
+227286,29660.25623,0,0,21
+227287,29839.76226,0,0,21
+227288,30079.50258,0,0,21
+227289,29997.80752,0,0,21
+227290,30414.12461,0,0,21
+227291,30403.38865,0,0,21
+227292,30647.71701,0,0,21
+227293,30667.05552,0,0,21
+227294,31046.02983,0,0,21
+227295,31095.70947,0,0,21
+227296,31195.80867,0,0,21
+227297,31320.58754,0,0,21
+227298,31535.00299,0,0,21
+227299,31653.74523,0,0,21
+227300,32013.97973,0,0,21
+227301,31809.92216,0,0,21
+227302,32319.71782,0,0,21
+227303,32278.49766,0,0,21
+227304,32457.7749,0,0,21
+227305,32689.97688,0,0,21
+227306,32624.84119,0,0,21
+227307,33032.44358,0,0,21
+227308,32929.14434,0,0,21
+227309,33186.15869,0,0,21
+227310,33376.71596,0,0,21
+227311,33501.55022,0,0,21
+227312,33628.51478,0,0,21
+227313,33827.67854,0,0,21
+227314,33846.29227,0,0,21
+227315,34090.66009,0,0,21
+227316,34264.95875,0,0,21
+227317,34310.68123,0,0,21
+227318,34331.11289,0,0,21
+227319,34734.41598,704.4929317,0,21
+227320,34725.01457,1199.898721,0,21
+227321,34788.13626,1036.579313,0,21
+227322,34977.24237,1361.699605,0,21
+227323,35386.89954,1522.138236,0,21
+227324,35033.96538,1681.338452,0,21
+227325,35601.69219,1839.400893,0,21
+227326,35455.5826,2152.433442,0,21
+227327,35843.06778,2152.433518,0,21
+227328,35682.18642,2307.534563,0,21
+227329,36071.89392,2615.169031,0,21
+227330,35988.7539,2615.169146,0,21
+227331,36318.43285,2919.659602,0,21
+227332,36333.40776,3070.813793,0,21
+227333,36523.29242,3070.813955,0,21
+227334,36459.09869,3520.253906,0,21
+227335,36783.29351,3371.086054,0,21
+227336,36943.56483,3816.765069,0,21
+227337,36807.00614,3668.807447,0,21
+227338,37403.27162,4110.969511,0,21
+227339,37202.94757,4110.969813,0,21
+227340,37330.98527,4257.249449,0,21
+227341,0,0,0,21
+227342,0,0,0,21
+227343,0,0,0,21
+227344,0,0,0,21
+227345,0,368079.5438,764531.222,21
+227346,328571.7624,0,0,21
+227347,0,0,0,21
+227348,0,0,0,21
+227349,0,0,0,21
+227350,0,0,0,21
+227351,0,0,0,21
+227352,0,0,0,21
+227353,0,0,0,21
+227354,0,0,0,21
+227355,0,0,0,21
+227356,0,0,0,21
+227357,0,0,0,21
+227358,0,0,0,21
+227359,0,0,0,21
+227360,0,0,0,21
+227361,0,0,0,21
+227362,0,0,0,21
+227363,0,0,0,21
+227364,0,0,0,21
+227365,0,0,0,21
+227366,0,0,0,21
+227367,0,0,0,21
+227368,0,0,0,21
+227369,0,0,0,21
+227370,0,0,0,21
+227371,0,0,0,21
+227372,0,0,0,21
+227373,0,0,0,21
+227374,0,0,0,21
+227375,0,0,0,21
+227376,0,0,0,21
+227377,0,0,0,21
+227378,0,0,0,21
+227379,0,368774.2577,755871.5452,21
+227380,0,0,0,21
+227381,330996.1747,0,0,21
+227382,0,0,0,21
+227383,0,0,0,21
+227384,0,0,0,21
+227385,0,0,0,21
+227386,0,0,0,21
+227387,0,0,0,21
+227388,0,0,0,21
+227389,0,0,0,21
+227390,0,0,0,21
+227391,0,0,0,21
+227392,0,0,0,21
+227393,0,0,0,21
+227394,0,0,0,21
+227395,0,0,0,21
+227396,0,0,0,21
+227397,0,0,0,21
+227398,0,0,0,21
+227399,0,0,0,21
+227400,0,0,0,15.6
+227401,0,0,0,15.6
+227402,0,0,0,15.6
+227403,0,0,0,15.6
+227404,0,0,0,15.6
+227405,0,0,0,15.6
+227406,0,0,0,15.6
+227407,0,0,0,15.6
+227408,0,0,0,15.6
+227409,0,0,0,15.6
+227410,0,0,0,15.6
+227411,0,0,0,15.6
+227412,0,0,0,15.6
+227413,0,368782.0209,750236.4119,15.6
+227414,0,0,0,15.6
+227415,0,0,0,15.6
+227416,331699.6467,0,0,15.6
+227417,0,0,0,15.6
+227418,0,0,0,15.6
+227419,0,0,0,15.6
+227420,0,0,0,15.6
+227421,0,0,0,15.6
+227422,0,0,0,15.6
+227423,0,0,0,15.6
+227424,0,0,0,15.6
+227425,0,0,0,15.6
+227426,0,0,0,15.6
+227427,0,0,0,15.6
+227428,0,0,0,15.6
+227429,0,0,0,15.6
+227430,0,0,0,15.6
+227431,0,0,0,15.6
+227432,0,0,0,15.6
+227433,0,0,0,15.6
+227434,0,0,0,15.6
+227435,0,0,0,15.6
+227436,0,0,0,15.6
+227437,0,0,0,15.6
+227438,0,0,0,15.6
+227439,0,0,0,15.6
+227440,0,0,0,15.6
+227441,0,0,0,15.6
+227442,0,0,0,15.6
+227443,0,0,0,15.6
+227444,0,0,0,15.6
+227445,0,0,0,15.6
+227446,0,0,0,15.6
+227447,0,368789.74,741358.2619,15.6
+227448,0,0,0,15.6
+227449,0,0,0,15.6
+227450,0,0,0,15.6
+227451,331860.4047,0,0,15.6
+227452,0,0,0,15.6
+227453,0,0,0,15.6
+227454,0,0,0,15.6
+227455,0,0,0,15.6
+227456,0,0,0,15.6
+227457,0,0,0,15.6
+227458,0,0,0,15.6
+227459,0,0,0,15.6
+227460,0,0,0,15.6
+227461,0,0,0,15.6
+227462,0,0,0,15.6
+227463,0,0,0,15.6
+227464,0,0,0,15.6
+227465,0,0,0,15.6
+227466,0,0,0,15.6
+227467,0,0,0,15.6
+227468,0,0,0,15.6
+227469,0,0,0,15.6
+227470,0,0,0,15.6
+227471,0,0,0,15.6
+227472,0,0,0,15.6
+227473,0,0,0,15.6
+227474,0,0,0,15.6
+227475,0,0,0,15.6
+227476,0,0,0,15.6
+227477,0,0,0,15.6
+227478,0,0,0,15.6
+227479,0,0,0,15.6
+227480,0,0,0,15.6
+227481,0,369001.2993,735547.3158,15.6
+227482,0,0,0,15.6
+227483,0,0,0,15.6
+227484,0,0,0,15.6
+227485,0,0,0,15.6
+227486,333937.4358,0,0,15.6
+227487,0,0,0,15.6
+227488,0,0,0,15.6
+227489,0,0,0,15.6
+227490,0,0,0,15.6
+227491,0,0,0,15.6
+227492,0,0,0,15.6
+227493,0,0,0,15.6
+227494,0,0,0,15.6
+227495,0,0,0,15.6
+227496,0,0,0,15.6
+227497,0,0,0,15.6
+227498,0,0,0,15.6
+227499,0,0,0,15.6
+227500,0,0,0,15.6
+227501,0,0,0,15.6
+227502,0,0,0,15.6
+227503,0,0,0,15.6
+227504,0,0,0,15.6
+227505,0,0,0,15.6
+227506,0,0,0,15.6
+227507,0,0,0,15.6
+227508,0,0,0,15.6
+227509,0,0,0,15.6
+227510,0,0,0,15.6
+227511,0,0,0,15.6
+227512,0,0,0,15.6
+227513,0,0,0,15.6
+227514,0,0,0,15.6
+227515,0,0,736829.738,15.6
+227516,0,368996.3448,0,15.6
+227517,0,0,0,15.6
+227518,0,0,0,15.6
+227519,0,0,0,15.6
+227520,0,0,0,15.6
+227521,334232.8655,0,0,15.6
+227522,0,0,0,15.6
+227523,0,0,0,15.6
+227524,0,0,0,15.6
+227525,0,0,0,15.6
+227526,0,0,0,15.6
+227527,0,0,0,15.6
+227528,0,0,0,15.6
+227529,0,0,0,15.6
+227530,0,0,0,15.6
+227531,0,0,0,15.6
+227532,0,0,0,15.6
+227533,0,0,0,15.6
+227534,0,0,0,15.6
+227535,0,0,0,15.6
+227536,0,0,0,15.6
+227537,0,0,0,15.6
+227538,0,0,0,15.6
+227539,0,0,0,15.6
+227540,0,0,0,15.6
+227541,0,0,0,15.6
+227542,0,0,0,15.6
+227543,0,0,0,15.6
+227544,0,0,0,15.6
+227545,0,0,0,15.6
+227546,0,0,0,15.6
+227547,0,0,0,15.6
+227548,0,0,0,15.6
+227549,0,0,731685.8781,15.6
+227550,0,0,0,15.6
+227551,0,368950.1285,0,15.6
+227552,0,0,0,15.6
+227553,0,0,0,15.6
+227554,0,0,0,15.6
+227555,0,0,0,15.6
+227556,334237.4034,0,0,15.6
+227557,0,0,0,15.6
+227558,0,0,0,15.6
+227559,0,0,0,15.6
+227560,0,0,0,15.6
+227561,0,0,0,15.6
+227562,0,0,0,15.6
+227563,0,0,0,15.6
+227564,0,0,0,15.6
+227565,0,0,0,15.6
+227566,0,0,0,15.6
+227567,0,0,0,15.6
+227568,0,0,0,15.6
+227569,0,0,0,15.6
+227570,0,0,0,15.6
+227571,0,0,0,15.6
+227572,0,0,0,15.6
+227573,0,0,0,15.6
+227574,0,0,0,15.6
+227575,0,0,0,15.6
+227576,0,0,0,15.6
+227577,0,0,0,15.6
+227578,0,0,0,15.6
+227579,0,0,0,15.6
+227580,0,0,0,15.6
+227581,0,0,0,15.6
+227582,0,0,0,15.6
+227583,0,0,726991.7386,15.6
+227584,0,0,0,15.6
+227585,0,0,0,15.6
+227586,0,368902.7884,0,15.6
+227587,0,0,0,15.6
+227588,0,0,0,15.6
+227589,0,0,0,15.6
+227590,0,0,0,15.6
+227591,335675.1093,0,0,15.6
+227592,0,0,0,15.6
+227593,0,0,0,15.6
+227594,0,0,0,15.6
+227595,0,0,0,15.6
+227596,0,0,0,15.6
+227597,0,0,0,15.6
+227598,0,0,0,15.6
+227599,0,0,0,15.6
+227600,0,0,0,15.6
+227601,0,0,0,15.6
+227602,0,0,0,15.6
+227603,0,0,0,15.6
+227604,0,0,0,15.6
+227605,0,0,0,15.6
+227606,0,0,0,15.6
+227607,0,0,0,15.6
+227608,0,0,0,15.6
+227609,0,0,0,15.6
+227610,0,0,0,15.6
+227611,0,0,0,15.6
+227612,0,0,0,15.6
+227613,0,0,0,15.6
+227614,0,0,0,15.6
+227615,0,0,0,15.6
+227616,0,0,0,15.6
+227617,0,0,722724.6425,15.6
+227618,0,0,0,15.6
+227619,0,0,0,15.6
+227620,0,0,0,15.6
+227621,0,368875.422,0,15.6
+227622,0,0,0,15.6
+227623,0,0,0,15.6
+227624,0,0,0,15.6
+227625,0,0,0,15.6
+227626,336741.3656,0,0,15.6
+227627,0,0,0,15.6
+227628,0,0,0,15.6
+227629,0,0,0,15.6
+227630,0,0,0,15.6
+227631,0,0,0,15.6
+227632,0,0,0,15.6
+227633,0,0,0,15.6
+227634,0,0,0,15.6
+227635,0,0,0,15.6
+227636,0,0,0,15.6
+227637,0,0,0,15.6
+227638,0,0,0,15.6
+227639,0,0,0,15.6
+227640,0,0,0,15.6
+227641,0,121.7167013,0,15.6
+227642,0,0,0,15.6
+227643,0,0,0,15.6
+227644,0,0,0,15.6
+227645,0,111.1013926,0,15.6
+227646,0,0,0,15.6
+227647,0,0,0,15.6
+227648,0,0,0,15.6
+227649,0,116.2903701,0,15.6
+227650,0,0,0,15.6
+227651,0,0,711393.3652,15.6
+227652,0,0,0,15.6
+227653,0,117.7224616,0,15.6
+227654,0,0,0,15.6
+227655,0,0,0,15.6
+227656,0,368861.0293,0,15.6
+227657,0,116.6409325,0,15.6
+227658,0,0,0,15.6
+227659,0,0,0,15.6
+227660,0,0,0,15.6
+227661,335144.1402,102.3566576,0,15.6
+227662,0,0,0,15.6
+227663,0,0,0,15.6
+227664,0,0,0,15.6
+227665,0,106.6265339,0,15.6
+227666,0,0,0,15.6
+227667,0,0,0,15.6
+227668,0,0,0,15.6
+227669,0,114.7379539,0,15.6
+227670,0,0,0,15.6
+227671,0,0,0,15.6
+227672,0,0,0,15.6
+227673,0,0,0,15.6
+227674,0,0,0,15.6
+227675,0,0,0,15.6
+227676,0,97.65480933,0,15.6
+227677,0,0,0,15.6
+227678,0,0,0,15.6
+227679,0,0,0,15.6
+227680,0,108.95958,0,15.6
+227681,0,0,0,15.6
+227682,0,0,0,15.6
+227683,0,0,0,15.6
+227684,0,103.6153524,0,15.6
+227685,0,0,707269.0381,15.6
+227686,0,0,0,15.6
+227687,0,0,0,15.6
+227688,0,104.3460068,0,15.6
+227689,0,0,0,15.6
+227690,0,0,0,15.6
+227691,0,368860.8037,0,15.6
+227692,0,102.6077575,0,15.6
+227693,0,0,0,15.6
+227694,0,0,0,15.6
+227695,0,0,0,15.6
+227696,0,81.17888506,0,15.6
+227697,336237.8204,0,0,15.6
+227698,0,0,0,15.6
+227699,0,0,0,15.6
+227700,0,103.081139,0,15.6
+227701,0,0,0,15.6
+227702,0,0,0,15.6
+227703,0,0,0,15.6
+227704,0,107.3331524,0,15.6
+227705,0,0,0,15.6
+227706,0,0,0,15.6
+227707,0,0,0,15.6
+227708,0,113.314876,0,15.6
+227709,0,0,0,15.6
+227710,0,0,0,15.6
+227711,0,0,0,15.6
+227712,0,113.8319414,0,15.6
+227713,0,0,0,15.6
+227714,0,0,0,15.6
+227715,0,0,0,15.6
+227716,0,111.6968728,0,15.6
+227717,0,0,0,15.6
+227718,0,0,0,15.6
+227719,0,0,710870.5925,15.6
+227720,0,107.4787732,0,15.6
+227721,0,0,0,15.6
+227722,0,0,0,15.6
+227723,0,0,0,15.6
+227724,0,103.5893714,0,15.6
+227725,0,0,0,15.6
+227726,0,368860.218,0,15.6
+227727,0,0,0,15.6
+227728,0,97.13227672,0,15.6
+227729,0,0,0,15.6
+227730,0,0,0,15.6
+227731,337304.0201,0,0,15.6
+227732,0,73.62538499,0,15.6
+227733,0,0,0,15.6
+227734,0,0,0,15.6
+227735,0,0,0,15.6
+227736,0,100.3241251,0,15.6
+227737,0,0,0,15.6
+227738,0,0,0,15.6
+227739,0,0,0,15.6
+227740,0,101.2566028,0,15.6
+227741,0,0,0,15.6
+227742,0,0,0,15.6
+227743,0,0,0,15.6
+227744,0,106.39428,0,15.6
+227745,0,0,0,15.6
+227746,0,0,0,15.6
+227747,0,0,0,15.6
+227748,0,107.5168,0,15.6
+227749,0,0,0,15.6
+227750,0,0,0,15.6
+227751,0,0,0,15.6
+227752,0,107.4891097,0,15.6
+227753,0,0,707979.4533,15.6
+227754,0,0,0,15.6
+227755,0,0,0,15.6
+227756,0,105.9281481,0,15.6
+227757,0,0,0,15.6
+227758,0,0,0,15.6
+227759,0,0,0,15.6
+227760,0,368860.2979,0,17.8
+227761,153.2839425,17998.27942,0,17.8
+227762,5731.948672,0,0,17.8
+227763,2533.057848,0,0,17.8
+227764,3751.627951,434.1810229,0,17.8
+227765,339604.4155,4968.446146,0,17.8
+227766,4108.587773,1890.766768,0,17.8
+227767,4462.095899,2638.015154,0,17.8
+227768,4579.203427,10582.27095,0,17.8
+227769,4695.958734,25284.42868,0,17.8
+227770,5044.180585,14784.42609,0,17.8
+227771,5044.180272,18766.83292,0,17.8
+227772,5274.685196,19003.80123,0,17.8
+227773,6370.485352,19280.15091,0,17.8
+227774,7364.1979,19879.44968,0,17.8
+227775,6862.55672,19786.16935,0,17.8
+227776,7718.619121,16983.8735,0,17.8
+227777,7958.441267,17175.55094,0,17.8
+227778,0,17626.10938,0,17.8
+227779,0,17366.85131,0,17.8
+227780,0,17748.33318,0,17.8
+227781,0,17938.52029,0,17.8
+227782,0,17938.52021,0,17.8
+227783,0,18317.80095,0,17.8
+227784,0,18317.80087,0,17.8
+227785,0,18578.37854,0,17.8
+227786,0,18695.64142,0,17.8
+227787,0,18695.64134,705334.5979,17.8
+227788,0,19072.06272,0,17.8
+227789,0,19072.06264,0,17.8
+227790,0,19072.06256,0,17.8
+227791,0,19447.08472,0,17.8
+227792,0,0,0,17.8
+227793,0,0,0,17.8
+227794,0,368860.2141,0,17.8
+227795,0,0,0,17.8
+227796,0,931.911961,0,17.8
+227797,0,4711.08192,0,17.8
+227798,0,2053.510426,0,17.8
+227799,335862.0432,2941.000068,0,17.8
+227800,0,3004.941875,0,17.8
+227801,0,3026.181073,1565.831698,17.8
+227802,0,3047.383209,3013.561587,17.8
+227803,0,3068.548468,2177.895864,17.8
+227804,0,21615.54676,2777.270784,17.8
+227805,0,27067.05265,3014.199338,17.8
+227806,0,19365.57924,3366.694054,17.8
+227807,0,23077.11849,3483.704835,17.8
+227808,0,23285.16659,3716.448075,17.8
+227809,0,23564.97108,3947.954299,17.8
+227810,0,23543.98753,4063.481398,17.8
+227811,0,23801.91361,4407.493247,17.8
+227812,0,24029.74472,4521.971191,17.8
+227813,0,24117.3522,0,17.8
+227814,0,24467.44231,0,17.8
+227815,0,24307.24529,0,17.8
+227816,0,24727.20709,0,17.8
+227817,0,24667.45052,0,17.8
+227818,0,24986.30904,0,17.8
+227819,0,25186.99435,0,17.8
+227820,0,25039.74272,0,20
+227821,7753.514109,694127.8405,727382.188,20
+227822,0,0,36548.71909,20
+227823,0,0,41940.15761,20
+227824,355.3415105,22573.61482,56419.23461,20
+227825,34918.54879,131947.3597,105605.2079,20
+227826,58484.19046,73102.11197,74082.94579,20
+227827,35514.45951,75811.33707,82966.06069,20
+227828,44394.89406,80614.63463,84560.73993,20
+227829,45372.60561,80157.96795,85185.74314,20
+227830,46470.91323,79987.85202,85990.86538,20
+227831,46077.53086,79972.30083,86632.37948,20
+227832,46167.38904,79559.61768,87005.88844,20
+227833,46193.26591,79317.30902,87623.75181,20
+227834,46560.21467,78914.30834,88214.4113,20
+227835,46431.86765,78829.84,88974.8389,20
+227836,46805.28201,78770.57579,89421.71373,20
+227837,46641.91331,78520.03183,90017.2985,20
+227838,46938.11935,78105.63308,90696.0434,20
+227839,47152.14514,78181.44332,91225.36144,20
+227840,47316.58084,77681.61512,92038.32448,20
+227841,47287.36051,78103.2475,92277.96284,20
+227842,47552.87938,77344.26896,93230.53449,20
+227843,47382.46586,77297.45214,94015.27475,20
+227844,47815.96671,77370.18522,94158.61042,20
+227845,47616.67557,76975.0057,95273.61585,20
+227846,47826.56064,76729.86903,95575.53547,20
+227847,47721.50156,77034.99806,96308.21842,20
+227848,48066.85963,76393.94619,97007.17256,20
+227849,47918.55709,76580.18515,97581.0489,20
+227850,48144.25827,76061.04847,98558.04577,20
+227851,48136.90633,76564.36012,98693.84812,20
+227852,48172.45241,75752.16348,97314.02157,20
+227853,48200.75082,76013.95634,89503.78386,20
+227854,48377.74877,76202.77032,87610.45747,20
+227855,48226.92475,75455.22925,87093.49204,20
+227856,48424.99309,76058.0871,86105.97817,20
+227857,48268.244,75404.97862,85224.72178,20
+227858,48269.91975,75906.57051,84737.61965,20
+227859,48669.92553,75354.60886,83665.80927,20
+227860,48103.81784,75575.12422,82857.39931,20
+227861,48667.36272,75354.61398,81962.71588,20
+227862,48359.35883,75274.25242,81371.1324,20
+227863,48492.76919,75575.12691,80137.3193,20
+227864,48569.64502,74990.52574,79822.55786,20
+227865,48349.5145,75255.53657,78878.97945,20
+227866,48746.8728,74945.72693,77824.60618,20
+227867,48389.96087,75216.35005,77181.20113,20
+227868,48384.23595,74947.61065,76374.94763,20
+227869,48776.25425,75191.54949,75532.74315,20
+227870,48238.66357,74638.41469,74902.8873,20
+227871,48592.91433,75408.5181,73901.59398,20
+227872,48443.60839,74590.88345,72954.32227,20
+227873,48629.03622,74546.35606,72462.8008,20
+227874,48243.36688,74211.91972,71104.44136,20
+227875,48648.13914,74401.37556,70819.34543,20
+227876,48442.83124,74195.69031,69144.19615,20
+227877,48460.39912,74224.42915,68589.32925,20
+227878,48389.975,73844.1558,66753.13023,20
+227879,48454.77013,74621.62839,65743.88668,20
+227880,48136.78764,73568.07544,64951.4808,21
+227881,44678.20995,69792.21865,52062.25415,21
+227882,43696.00386,68919.5221,49497.54297,21
+227883,43797.2221,68564.53171,48308.7495,21
+227884,43441.72096,68582.50145,46558.55207,21
+227885,43394.20345,68239.69952,45252.77239,21
+227886,43141.36401,68188.59037,44158.15752,21
+227887,42991.40539,67912.61615,43698.56014,21
+227888,42918.95069,67843.54806,43110.60246,21
+227889,42633.43791,67704.83082,42421.3255,21
+227890,42495.50375,67516.89457,41934.52809,21
+227891,42471.62024,67533.28926,41202.03085,21
+227892,42274.55525,67480.96794,41040.3504,21
+227893,42020.3569,66901.77506,40209.99074,21
+227894,41843.7926,67091.44629,39667.69906,21
+227895,41897.86915,67011.03107,39140.77295,21
+227896,41564.9038,66978.68768,39134.53176,21
+227897,41378.75607,66633.60445,38625.75207,21
+227898,41345.75476,66597.43698,38341.48048,21
+227899,41103.3583,66650.37895,38235.68856,21
+227900,41031.63912,66544.42523,37868.59728,21
+227901,40857.91023,66308.16787,37778.23224,21
+227902,40667.94328,66215.15364,37440.41699,21
+227903,40423.12106,66235.75426,37401.46426,21
+227904,40613.77219,65901.88085,37013.71718,21
+227905,39983.87127,65709.9837,36952.02087,21
+227906,40364.00629,65252.584,36620.80685,21
+227907,39748.20698,65360.49118,36448.65581,21
+227908,39919.66855,65102.79398,36338.04393,21
+227909,39484.91662,64993.42695,35929.56202,21
+227910,39669.32514,64888.06293,35721.34732,21
+227911,39058.06607,64830.73817,35729.09702,21
+227912,39416.82766,64817.67726,35513.67774,21
+227913,38588.28833,64384.67979,35116.3443,21
+227914,38956.28354,64578.35642,35119.55067,21
+227915,38517.25708,64001.28741,34581.57308,21
+227916,38391.18855,64304.84955,34851.44118,21
+227917,38065.67247,63964.54347,34362.89383,21
+227918,38033.21211,63816.46498,34075.12632,21
+227919,37780.50287,63893.52997,34102.39095,21
+227920,37603.49273,63603.79936,33879.50028,21
+227921,37479.13939,63549.83743,33635.23778,21
+227922,37120.79738,63118.03072,33242.54735,21
+227923,36972.69347,63532.71884,33274.41719,21
+227924,36813.52636,62950.30363,32982.07392,21
+227925,36789.91234,62831.89765,32662.16005,21
+227926,36165.93328,62933.14777,32780.5785,21
+227927,36350.37794,62777.65822,32082.54123,21
+227928,35911.03099,62596.73621,32383.47695,21
+227929,35775.15872,62482.99928,31743.16584,21
+227930,35668.27197,62440.3905,31721.66267,21
+227931,35415.24119,62045.05572,31533.69448,21
+227932,35114.07246,62158.87171,31102.1841,21
+227933,35075.83738,62115.21318,31050.12315,21
+227934,34644.80068,61800.63542,30889.75902,21
+227935,34696.24381,61739.64637,30530.99066,21
+227936,34294.07515,61511.8698,30402.27297,21
+227937,34041.96643,61435.16095,30235.15498,21
+227938,34011.19131,61684.90046,29704.34181,21
+227939,33783.3409,61135.2855,29986.59341,21
+227940,33559.07811,60993.75671,29114.90178,21
+227941,6095.1047,26262.62923,2188.747843,21
+227942,4556.206052,23204.92213,1936.267856,21
+227943,3415.937365,23016.65875,1783.769939,21
+227944,3261.375352,22128.96543,1726.203358,21
+227945,2516.671106,21456.31317,1625.820095,21
+227946,1943.037415,21168.51495,1540.178298,21
+227947,1583.300056,20658.21262,1453.841706,21
+227948,961.9026569,20009.70535,1394.851125,21
+227949,994.009184,19724.78975,1292.957303,21
+227950,883.9761667,19166.04747,1248.642318,21
+227951,823.4138781,18954.01271,1142.278853,21
+227952,806.8714046,18191.07588,1082.501716,21
+227953,743.7934201,17970.67909,1019.643064,21
+227954,711.9888735,17371.75608,972.1926767,21
+227955,679.9896557,17153.24582,956.3322993,21
+227956,615.3302603,16737.4059,924.5138776,21
+227957,606.5436502,16342.84823,908.5694916,21
+227958,549.5919215,15758.70361,860.5378366,21
+227959,500.9457441,15703.00363,844.4767927,21
+227960,487.8803675,14937.14816,812.2527348,21
+227961,431.9821375,14870.22957,763.6801601,21
+227962,416.5728681,14288.96614,731.1420928,21
+227963,401.1037031,14193.57607,714.8277935,21
+227964,385.5727352,13428.69301,682.0889739,21
+227965,369.9782266,13405.34381,649.2106745,21
+227966,354.3177928,12835.1714,632.720915,21
+227967,322.7898077,12666.97413,599.6233682,21
+227968,322.7898136,12148.22018,566.3723884,21
+227969,290.9674818,11750.37427,532.9612671,21
+227970,274.9379109,11856.96063,482.5255884,21
+227971,258.8245883,10860.14208,482.5293703,21
+227972,250.7351359,10843.26795,431.6866922,21
+227973,226.3285302,10477.75968,414.6444486,21
+227974,226.3285133,9917.444146,380.4027359,21
+227975,193.437449,9893.506692,363.2022859,21
+227976,193.4374161,9404.807452,328.6275214,21
+227977,160.095216,9356.645503,311.250479,21
+227978,168.4768998,8888.821705,276.3000539,21
+227979,143.2315156,8639.832186,241.0678653,21
+227980,126.2226533,8345.037015,241.0688112,21
+227981,109.0521135,8094.251213,187.6120741,21
+227982,109.0521279,7618.180139,169.6137256,21
+227983,91.69820161,7527.067371,151.5062609,21
+227984,65.25518839,6883.196366,114.9302055,21
+227985,65.25518975,6990.568898,96.43167861,21
+227986,47.28032773,6305.863824,58.88924225,21
+227987,38.158898,6022.281624,39.75525465,21
+227988,9.970950591,5733.92829,20.25238652,21
+227989,19.54816352,5462.029649,0,21
+227990,0,5206.789098,0,21
+227991,0,4674.305037,0,21
+227992,0,4378.629946,0,21
+227993,0,4110.35914,0,21
+227994,0,3836.77916,0,21
+227995,0,3271.110172,0,21
+227996,0,3287.645358,0,21
+227997,0,2958.172392,0,21
+227998,0,2722.442799,0,21
+227999,0,2411.699042,0,21
+228000,0,2385.606482,0,21
+228001,0,1848.9667,0,21
+228002,0,1809.588409,0,21
+228003,0,1459.935192,0,21
+228004,0,925.6790386,0,21
+228005,0,998.9805963,0,21
+228006,0,816.8337449,0,21
+228007,0,770.4766331,0,21
+228008,0,750.7644441,0,21
+228009,0,659.4721532,0,21
+228010,0,649.4340832,0,21
+228011,0,601.7218282,0,21
+228012,0,563.8837118,0,21
+228013,0,497.9979289,0,21
+228014,0,476.0921432,0,21
+228015,0,420.1343555,0,21
+228016,0,420.1343693,0,21
+228017,0,363.5268344,0,21
+228018,0,349.2643061,0,21
+228019,0,306.1868646,0,21
+228020,0,306.186906,0,21
+228021,0,233.3047227,0,21
+228022,0,233.3047324,0,21
+228023,0,188.8034794,0,21
+228024,0,158.7477271,0,21
+228025,0,143.5858843,0,21
+228026,0,97.45937973,0,21
+228027,0,66.03382233,0,21
+228028,0,33.81661828,0,21
+228029,0,17.24313791,0,21
+228030,0,0,0,21
+228031,0,0,0,21
+228032,0,0,0,21
+228033,0,0,0,21
+228034,0,0,0,21
+228035,0,0,0,21
+228036,0,0,0,21
+228037,0,0,0,21
+228038,0,0,0,21
+228039,0,0,0,21
+228040,0,0,0,21
+228041,0,0,0,21
+228042,0,0,0,21
+228043,0,0,0,21
+228044,0,0,0,21
+228045,0,0,0,21
+228046,0,0,0,21
+228047,0,0,0,21
+228048,0,0,0,21
+228049,0,0,0,21
+228050,0,0,0,21
+228051,0,0,0,21
+228052,0,0,0,21
+228053,0,0,0,21
+228054,0,0,0,21
+228055,0,0,0,21
+228056,0,0,0,21
+228057,0,0,0,21
+228058,0,0,0,21
+228059,0,0,0,21
+228060,0,0,0,21
+228061,0,0,0,21
+228062,0,0,0,21
+228063,0,0,0,21
+228064,0,0,0,21
+228065,0,0,0,21
+228066,0,0,0,21
+228067,0,0,0,21
+228068,0,0,0,21
+228069,0,0,0,21
+228070,0,0,0,21
+228071,0,0,0,21
+228072,0,0,0,21
+228073,0,0,0,21
+228074,0,0,0,21
+228075,0,0,0,21
+228076,0,0,0,21
+228077,0,0,0,21
+228078,0,0,0,21
+228079,0,0,0,21
+228080,0,0,0,21
+228081,0,0,0,21
+228082,0,0,0,21
+228083,0,0,0,21
+228084,0,0,0,21
+228085,0,0,0,21
+228086,0,0,0,21
+228087,0,0,0,21
+228088,0,0,0,21
+228089,0,0,0,21
+228090,0,0,0,21
+228091,0,0,0,21
+228092,0,0,0,21
+228093,0,0,0,21
+228094,0,0,0,21
+228095,0,0,0,21
+228096,0,0,0,21
+228097,0,0,0,21
+228098,0,0,0,21
+228099,0,0,0,21
+228100,0,0,0,21
+228101,0,0,0,21
+228102,0,0,0,21
+228103,0,0,0,21
+228104,0,0,0,21
+228105,0,0,0,21
+228106,0,0,0,21
+228107,0,0,0,21
+228108,0,0,0,21
+228109,0,0,0,21
+228110,0,0,0,21
+228111,0,0,0,21
+228112,0,0,0,21
+228113,0,0,0,21
+228114,0,0,0,21
+228115,0,0,0,21
+228116,0,0,0,21
+228117,0,0,0,21
+228118,0,0,0,21
+228119,0,0,0,21
+228120,0,0,0,21
+228121,0,0,0,21
+228122,0,0,0,21
+228123,0,0,0,21
+228124,0,0,0,21
+228125,0,0,0,21
+228126,0,0,0,21
+228127,0,0,0,21
+228128,0,0,0,21
+228129,0,0,0,21
+228130,0,0,0,21
+228131,0,0,0,21
+228132,0,0,0,21
+228133,0,0,0,21
+228134,0,0,0,21
+228135,0,0,0,21
+228136,0,0,0,21
+228137,0,0,0,21
+228138,0,0,0,21
+228139,0,0,0,21
+228140,0,0,0,21
+228141,0,0,0,21
+228142,0,0,0,21
+228143,0,0,0,21
+228144,0,0,0,21
+228145,0,0,0,21
+228146,0,0,0,21
+228147,0,0,0,21
+228148,0,0,0,21
+228149,0,0,0,21
+228150,0,0,0,21
+228151,0,0,0,21
+228152,0,0,0,21
+228153,0,0,0,21
+228154,0,0,0,21
+228155,0,0,0,21
+228156,0,0,0,21
+228157,0,0,0,21
+228158,0,0,0,21
+228159,0,0,0,21
+228160,0,0,0,21
+228161,0,0,0,21
+228162,0,0,0,21
+228163,0,0,0,21
+228164,0,0,0,21
+228165,0,0,0,21
+228166,0,0,0,21
+228167,0,0,0,21
+228168,0,0,0,21
+228169,0,0,0,21
+228170,0,0,0,21
+228171,0,0,0,21
+228172,0,0,0,21
+228173,0,0,0,21
+228174,0,0,0,21
+228175,0,0,0,21
+228176,0,0,0,21
+228177,0,0,0,21
+228178,0,0,0,21
+228179,0,0,0,21
+228180,0,0,0,21
+228181,0,0,0,21
+228182,0,0,0,21
+228183,0,0,0,21
+228184,0,0,0,21
+228185,0,0,0,21
+228186,0,0,0,21
+228187,0,0,0,21
+228188,0,0,0,21
+228189,0,0,0,21
+228190,0,0,0,21
+228191,0,0,0,21
+228192,0,0,0,21
+228193,0,0,0,21
+228194,0,0,0,21
+228195,0,0,0,21
+228196,0,0,0,21
+228197,0,0,0,21
+228198,0,0,0,21
+228199,0,0,0,21
+228200,0,0,0,21
+228201,0,0,0,21
+228202,0,0,0,21
+228203,0,0,0,21
+228204,0,0,0,21
+228205,0,0,0,21
+228206,0,0,0,21
+228207,0,0,0,21
+228208,0,0,0,21
+228209,0,0,0,21
+228210,0,0,0,21
+228211,0,0,0,21
+228212,0,0,0,21
+228213,0,0,0,21
+228214,0,0,0,21
+228215,0,0,0,21
+228216,0,0,0,21
+228217,0,0,0,21
+228218,0,0,0,21
+228219,0,0,0,21
+228220,0,0,0,21
+228221,0,0,0,21
+228222,0,0,0,21
+228223,0,0,0,21
+228224,0,0,0,21
+228225,0,0,0,21
+228226,0,0,0,21
+228227,0,0,0,21
+228228,0,0,0,21
+228229,0,0,0,21
+228230,0,0,0,21
+228231,0,0,0,21
+228232,0,0,0,21
+228233,0,0,0,21
+228234,0,0,0,21
+228235,0,0,0,21
+228236,0,0,0,21
+228237,0,0,0,21
+228238,0,0,0,21
+228239,0,0,0,21
+228240,0,0,0,21
+228241,0,0,0,21
+228242,0,0,0,21
+228243,0,0,0,21
+228244,0,0,0,21
+228245,0,0,0,21
+228246,0,0,0,21
+228247,0,0,0,21
+228248,0,0,0,21
+228249,0,0,0,21
+228250,0,0,0,21
+228251,0,0,0,21
+228252,0,0,0,21
+228253,0,0,0,21
+228254,0,0,0,21
+228255,0,0,0,21
+228256,0,0,0,21
+228257,0,0,0,21
+228258,0,0,0,21
+228259,0,0,0,21
+228260,0,0,0,21
+228261,0,0,0,21
+228262,0,0,0,21
+228263,0,0,0,21
+228264,0,0,0,21
+228265,0,0,0,21
+228266,0,0,0,21
+228267,0,0,0,21
+228268,0,0,0,21
+228269,0,0,0,21
+228270,0,0,0,21
+228271,0,0,0,21
+228272,0,0,0,21
+228273,0,0,0,21
+228274,0,0,0,21
+228275,0,0,0,21
+228276,0,0,0,21
+228277,0,0,0,21
+228278,0,0,0,21
+228279,0,0,0,21
+228280,0,0,0,21
+228281,0,0,0,21
+228282,0,0,0,21
+228283,0,0,0,21
+228284,0,0,0,21
+228285,0,0,0,21
+228286,0,0,0,21
+228287,0,0,0,21
+228288,0,0,0,21
+228289,0,0,0,21
+228290,0,0,0,21
+228291,0,0,0,21
+228292,0,0,0,21
+228293,0,0,0,21
+228294,0,0,0,21
+228295,0,0,0,21
+228296,0,0,0,21
+228297,0,0,0,21
+228298,0,0,0,21
+228299,0,0,0,21
+228300,0,0,0,21
+228301,0,0,0,21
+228302,0,0,0,21
+228303,0,0,0,21
+228304,0,0,0,21
+228305,0,0,0,21
+228306,0,0,0,21
+228307,0,0,0,21
+228308,0,0,0,21
+228309,0,0,0,21
+228310,0,0,0,21
+228311,0,0,0,21
+228312,0,0,0,21
+228313,0,0,0,21
+228314,0,0,0,21
+228315,0,0,0,21
+228316,0,0,0,21
+228317,0,0,0,21
+228318,0,0,0,21
+228319,0,0,0,21
+228320,0,0,0,21
+228321,0,0,0,21
+228322,0,0,0,21
+228323,0,0,0,21
+228324,0,0,0,21
+228325,0,0,0,21
+228326,0,0,0,21
+228327,0,0,0,21
+228328,0,0,0,21
+228329,0,0,0,21
+228330,0,0,0,21
+228331,0,0,0,21
+228332,0,0,0,21
+228333,0,0,0,21
+228334,0,0,0,21
+228335,0,0,0,21
+228336,0,0,0,21
+228337,0,0,0,21
+228338,0,0,0,21
+228339,0,0,0,21
+228340,0,0,0,21
+228341,0,0,0,21
+228342,0,0,0,21
+228343,0,0,0,21
+228344,0,0,0,21
+228345,0,0,0,21
+228346,0,0,0,21
+228347,0,0,0,21
+228348,0,0,0,21
+228349,0,0,0,21
+228350,0,0,0,21
+228351,0,0,0,21
+228352,0,0,0,21
+228353,0,0,0,21
+228354,0,0,0,21
+228355,0,0,0,21
+228356,0,0,0,21
+228357,0,0,0,21
+228358,0,0,0,21
+228359,0,0,0,21
+228360,0,0,0,21
+228361,0,0,0,21
+228362,0,0,0,21
+228363,0,0,0,21
+228364,0,0,0,21
+228365,0,0,0,21
+228366,0,0,0,21
+228367,0,0,0,21
+228368,0,0,0,21
+228369,0,0,0,21
+228370,0,0,0,21
+228371,0,0,0,21
+228372,0,0,0,21
+228373,0,0,0,21
+228374,0,0,0,21
+228375,0,0,0,21
+228376,0,0,0,21
+228377,0,0,0,21
+228378,0,0,0,21
+228379,0,0,0,21
+228380,0,0,0,21
+228381,0,0,0,21
+228382,0,0,0,21
+228383,0,0,0,21
+228384,0,0,0,21
+228385,0,0,0,21
+228386,0,0,0,21
+228387,0,0,0,21
+228388,0,0,0,21
+228389,0,0,0,21
+228390,0,0,0,21
+228391,0,0,0,21
+228392,0,0,0,21
+228393,0,0,0,21
+228394,0,0,0,21
+228395,0,0,0,21
+228396,0,0,0,21
+228397,0,0,0,21
+228398,0,0,0,21
+228399,0,0,0,21
+228400,0,0,0,21
+228401,0,0,0,21
+228402,0,0,0,21
+228403,0,0,0,21
+228404,0,0,0,21
+228405,0,0,0,21
+228406,0,0,0,21
+228407,0,0,0,21
+228408,0,0,0,21
+228409,0,0,0,21
+228410,0,0,0,21
+228411,0,0,0,21
+228412,0,0,0,21
+228413,0,0,0,21
+228414,0,0,0,21
+228415,0,0,0,21
+228416,0,0,0,21
+228417,0,0,0,21
+228418,0,0,0,21
+228419,0,0,0,21
+228420,0,0,0,21
+228421,0,0,0,21
+228422,0,0,0,21
+228423,0,0,0,21
+228424,0,0,0,21
+228425,0,0,0,21
+228426,0,0,0,21
+228427,0,0,0,21
+228428,0,0,0,21
+228429,0,0,0,21
+228430,0,0,0,21
+228431,0,0,0,21
+228432,0,0,0,21
+228433,0,0,0,21
+228434,0,0,0,21
+228435,0,0,0,21
+228436,0,0,0,21
+228437,0,0,0,21
+228438,0,0,0,21
+228439,0,0,0,21
+228440,0,0,0,21
+228441,0,0,0,21
+228442,0,0,0,21
+228443,0,0,0,21
+228444,0,0,0,21
+228445,0,0,0,21
+228446,0,0,0,21
+228447,0,0,0,21
+228448,0,0,0,21
+228449,0,0,0,21
+228450,0,0,0,21
+228451,0,0,0,21
+228452,0,0,0,21
+228453,0,0,0,21
+228454,0,0,0,21
+228455,0,0,0,21
+228456,0,0,0,21
+228457,0,0,0,21
+228458,0,0,0,21
+228459,0,0,0,21
+228460,0,0,0,21
+228461,0,0,0,21
+228462,0,0,0,21
+228463,0,0,0,21
+228464,0,0,0,21
+228465,0,0,0,21
+228466,0,0,0,21
+228467,0,0,0,21
+228468,0,0,0,21
+228469,0,0,0,21
+228470,0,0,0,21
+228471,0,0,0,21
+228472,0,0,0,21
+228473,0,0,0,21
+228474,0,0,0,21
+228475,0,0,0,21
+228476,0,0,0,21
+228477,0,0,0,21
+228478,0,0,0,21
+228479,0,0,0,21
+228480,0,0,0,21
+228481,0,0,0,21
+228482,0,0,0,21
+228483,0,0,0,21
+228484,0,0,0,21
+228485,0,0,0,21
+228486,0,0,0,21
+228487,0,0,0,21
+228488,0,0,0,21
+228489,0,0,0,21
+228490,0,0,0,21
+228491,0,0,0,21
+228492,0,0,0,21
+228493,0,0,0,21
+228494,0,0,0,21
+228495,0,0,0,21
+228496,0,0,0,21
+228497,0,0,0,21
+228498,0,0,0,21
+228499,0,0,0,21
+228500,0,0,0,21
+228501,0,0,0,21
+228502,0,0,0,21
+228503,0,0,0,21
+228504,0,0,0,21
+228505,0,0,0,21
+228506,0,0,0,21
+228507,0,0,0,21
+228508,0,0,0,21
+228509,0,0,0,21
+228510,0,0,0,21
+228511,0,0,0,21
+228512,0,0,0,21
+228513,0,0,0,21
+228514,0,0,0,21
+228515,0,0,0,21
+228516,0,0,0,21
+228517,0,0,0,21
+228518,0,0,0,21
+228519,0,0,0,21
+228520,0,0,0,21
+228521,0,0,0,21
+228522,0,0,0,21
+228523,0,0,0,21
+228524,0,0,0,21
+228525,0,0,0,21
+228526,0,0,0,21
+228527,0,0,0,21
+228528,0,0,0,21
+228529,0,0,0,21
+228530,0,0,0,21
+228531,0,0,0,21
+228532,0,0,0,21
+228533,0,0,0,21
+228534,0,0,0,21
+228535,0,0,0,21
+228536,0,0,0,21
+228537,0,0,0,21
+228538,0,0,0,21
+228539,0,0,0,21
+228540,0,0,0,21
+228541,0,0,0,21
+228542,0,0,0,21
+228543,0,0,0,21
+228544,0,0,0,21
+228545,0,0,0,21
+228546,0,0,0,21
+228547,0,0,0,21
+228548,0,0,0,21
+228549,0,0,0,21
+228550,0,0,0,21
+228551,0,0,0,21
+228552,0,0,0,21
+228553,0,0,0,21
+228554,0,0,0,21
+228555,0,0,0,21
+228556,0,0,0,21
+228557,0,0,0,21
+228558,0,0,0,21
+228559,0,0,0,21
+228560,0,0,0,21
+228561,0,0,0,21
+228562,0,0,0,21
+228563,0,0,0,21
+228564,0,0,0,21
+228565,0,0,0,21
+228566,0,0,0,21
+228567,0,0,0,21
+228568,0,0,0,21
+228569,0,0,0,21
+228570,0,0,0,21
+228571,0,0,0,21
+228572,0,0,0,21
+228573,0,0,0,21
+228574,0,0,0,21
+228575,0,0,0,21
+228576,0,0,0,21
+228577,0,0,0,21
+228578,0,0,0,21
+228579,0,0,0,21
+228580,0,0,0,21
+228581,0,0,0,21
+228582,0,0,0,21
+228583,0,0,0,21
+228584,0,0,0,21
+228585,0,0,0,21
+228586,0,0,0,21
+228587,0,0,0,21
+228588,0,0,0,21
+228589,0,0,0,21
+228590,0,0,0,21
+228591,0,0,0,21
+228592,0,0,0,21
+228593,0,0,0,21
+228594,0,0,0,21
+228595,0,0,0,21
+228596,0,0,0,21
+228597,0,0,0,21
+228598,0,0,0,21
+228599,0,0,0,21
+228600,0,0,0,21
+228601,0,0,0,21
+228602,0,0,0,21
+228603,0,0,0,21
+228604,0,0,0,21
+228605,0,0,0,21
+228606,0,0,0,21
+228607,0,0,0,21
+228608,0,0,0,21
+228609,0,0,0,21
+228610,0,0,0,21
+228611,0,0,0,21
+228612,0,0,0,21
+228613,0,0,0,21
+228614,0,0,0,21
+228615,0,0,0,21
+228616,0,0,0,21
+228617,0,0,0,21
+228618,0,0,0,21
+228619,0,0,0,21
+228620,0,0,0,21
+228621,0,0,0,21
+228622,0,0,0,21
+228623,0,0,0,21
+228624,0,0,0,21
+228625,0,0,0,21
+228626,0,0,0,21
+228627,0,0,0,21
+228628,0,0,0,21
+228629,0,0,0,21
+228630,0,0,0,21
+228631,0,0,0,21
+228632,0,0,0,21
+228633,0,0,0,21
+228634,0,0,0,21
+228635,0,0,0,21
+228636,0,0,0,21
+228637,0,0,0,21
+228638,0,0,0,21
+228639,0,0,0,21
+228640,0,0,0,21
+228641,0,0,0,21
+228642,0,0,0,21
+228643,0,0,0,21
+228644,0,0,0,21
+228645,0,0,0,21
+228646,0,0,0,21
+228647,1387.089217,0,0,21
+228648,855.2932794,0,0,21
+228649,1123.458065,0,0,21
+228650,1387.089219,0,0,21
+228651,1387.089225,0,0,21
+228652,1775.626559,0,0,21
+228653,1646.945785,0,0,21
+228654,2030.745499,0,0,21
+228655,2157.265077,0,0,21
+228656,2157.265081,0,0,21
+228657,2408.392966,0,0,21
+228658,2533.057907,0,0,21
+228659,2657.156566,0,0,21
+228660,2780.710787,0,0,21
+228661,3511.611634,0,0,21
+228662,3631.831183,0,0,21
+228663,3751.628095,0,0,21
+228664,4108.587968,0,0,21
+228665,4108.587956,0,0,21
+228666,4344.629435,0,0,21
+228667,4462.096082,0,0,21
+228668,4695.959178,0,0,21
+228669,4812.36961,0,0,21
+228670,5044.18079,0,0,21
+228671,5044.180784,0,0,21
+228672,5389.462037,0,0,21
+228673,5389.462028,0,0,21
+228674,5618.08885,0,0,21
+228675,5731.948904,0,0,21
+228676,5958.785133,0,0,21
+228677,6071.769887,0,0,21
+228678,6184.471217,0,0,21
+228679,6409.038988,0,0,21
+228680,6520.912822,0,0,21
+228681,6632.518035,0,0,21
+228682,6854.936056,0,0,21
+228683,6965.755301,0,0,21
+228684,7076.318827,0,0,21
+228685,7296.690586,0,0,21
+228686,7406.50449,0,0,21
+228687,7693.543855,0,0,21
+228688,7861.197801,0,0,21
+228689,8004.030809,0,0,21
+228690,8146.088086,0,0,21
+228691,8379.173115,0,0,21
+228692,8595.235467,0,0,21
+228693,8803.908826,0,0,21
+228694,9017.933612,0,0,21
+228695,9066.837951,0,0,21
+228696,9330.542978,0,0,21
+228697,9583.156254,0,0,21
+228698,9607.415936,0,0,21
+228699,10320.8741,0,0,21
+228700,11134.09104,0,0,21
+228701,11138.88725,0,0,21
+228702,11544.27639,0,0,21
+228703,11925.85926,0,0,21
+228704,12077.38369,0,0,21
+228705,12597.46465,0,0,21
+228706,14175.37573,0,0,21
+228707,14963.57568,0,0,21
+228708,15317.89135,0,0,21
+228709,15704.36865,0,0,21
+228710,16000.82191,0,0,21
+228711,16456.51398,0,0,21
+228712,16851.43284,0,0,21
+228713,17099.6628,0,0,21
+228714,17492.22681,0,0,21
+228715,17955.02698,0,0,21
+228716,18099.69833,0,0,21
+228717,18703.24551,0,0,21
+228718,18731.82851,0,0,21
+228719,19317.27305,0,0,21
+228720,19659.67794,0,0,21
+228721,19501.23619,0,0,21
+228722,20268.21565,0,0,21
+228723,20110.19912,0,0,21
+228724,20621.95143,0,0,21
+228725,20701.58779,0,0,21
+228726,20815.4203,0,0,21
+228727,21278.54057,0,0,21
+228728,21303.54805,0,0,21
+228729,21544.05158,0,0,21
+228730,21877.64011,0,0,21
+228731,21929.78386,0,0,21
+228732,22240.66163,0,0,21
+228733,22402.03982,0,0,21
+228734,22623.87594,0,0,21
+228735,22763.54369,0,0,21
+228736,22994.92832,0,0,21
+228737,23219.01165,0,0,21
+228738,23171.39468,0,0,21
+228739,23780.9202,0,0,21
+228740,23625.24096,0,0,21
+228741,23848.55141,0,0,21
+228742,24198.21276,0,0,21
+228743,24090.90124,0,0,21
+228744,24554.76652,0,0,21
+228745,24554.82458,0,0,21
+228746,24808.51962,0,0,21
+228747,24715.24075,0,0,21
+228748,25256.46467,0,0,21
+228749,25070.2395,0,0,21
+228750,25605.67007,0,0,21
+228751,25322.81806,0,0,21
+228752,25852.79749,0,0,21
+228753,25874.57735,0,0,21
+228754,25914.24656,0,0,21
+228755,26213.51946,0,0,21
+228756,26353.34637,0,0,21
+228757,26266.07043,0,0,21
+228758,26905.47087,0,0,21
+228759,26515.75174,0,0,21
+228760,26944.62275,0,0,21
+228761,26944.62274,0,0,21
+228762,27289.0005,0,0,21
+228763,27210.54113,0,0,21
+228764,27398.1646,0,0,21
+228765,27671.06282,0,0,21
+228766,27658.08629,0,0,21
+228767,27863.12363,0,0,21
+228768,27826.34216,0,0,21
+228769,28109.11409,0,0,21
+228770,28230.68893,0,0,21
+228771,28263.95835,0,0,21
+228772,28571.40961,0,0,21
+228773,28514.2331,0,0,21
+228774,28584.1803,0,0,21
+228775,28841.32997,0,0,21
+228776,29044.78552,0,0,21
+228777,28866.80262,0,0,21
+228778,29275.49621,0,0,21
+228779,29185.71796,0,0,21
+228780,29449.85791,0,0,21
+228781,0,0,0,21
+228782,0,0,0,21
+228783,0,0,0,21
+228784,0,0,0,21
+228785,0,368818.3435,1018779.954,21
+228786,331745.3009,0,0,21
+228787,0,0,0,21
+228788,0,0,0,21
+228789,0,0,0,21
+228790,0,0,0,21
+228791,0,0,0,21
+228792,0,0,0,21
+228793,0,0,0,21
+228794,0,0,0,21
+228795,0,0,0,21
+228796,0,0,0,21
+228797,0,0,0,21
+228798,0,0,0,21
+228799,0,0,0,21
+228800,0,0,0,21
+228801,0,0,0,21
+228802,0,0,0,21
+228803,0,0,0,21
+228804,0,0,0,21
+228805,0,0,0,21
+228806,0,0,0,21
+228807,0,0,0,21
+228808,0,0,0,21
+228809,0,0,0,21
+228810,0,0,0,21
+228811,0,0,0,21
+228812,0,0,0,21
+228813,0,0,0,21
+228814,0,0,0,21
+228815,0,0,0,21
+228816,0,0,0,21
+228817,0,0,0,21
+228818,0,0,0,21
+228819,0,368826.1184,989452.8349,21
+228820,0,0,0,21
+228821,333697.0816,0,0,21
+228822,0,0,0,21
+228823,0,0,0,21
+228824,0,0,0,21
+228825,0,0,0,21
+228826,0,0,0,21
+228827,0,0,0,21
+228828,0,0,0,21
+228829,0,0,0,21
+228830,0,0,0,21
+228831,0,0,0,21
+228832,0,0,0,21
+228833,0,0,0,21
+228834,0,0,0,21
+228835,0,0,0,21
+228836,0,0,0,21
+228837,0,0,0,21
+228838,0,0,0,21
+228839,0,0,0,21
+228840,0,0,0,15.6
+228841,0,0,0,15.6
+228842,0,0,0,15.6
+228843,0,0,0,15.6
+228844,0,0,0,15.6
+228845,0,0,0,15.6
+228846,0,0,0,15.6
+228847,0,0,0,15.6
+228848,0,0,0,15.6
+228849,0,0,0,15.6
+228850,0,0,0,15.6
+228851,0,0,0,15.6
+228852,0,0,0,15.6
+228853,0,368833.8922,962841.945,15.6
+228854,0,0,0,15.6
+228855,0,0,0,15.6
+228856,333043.742,0,0,15.6
+228857,0,0,0,15.6
+228858,0,0,0,15.6
+228859,0,0,0,15.6
+228860,0,0,0,15.6
+228861,0,0,0,15.6
+228862,0,0,0,15.6
+228863,0,0,0,15.6
+228864,0,0,0,15.6
+228865,0,0,0,15.6
+228866,0,0,0,15.6
+228867,0,0,0,15.6
+228868,0,0,0,15.6
+228869,0,0,0,15.6
+228870,0,0,0,15.6
+228871,0,0,0,15.6
+228872,0,0,0,15.6
+228873,0,0,0,15.6
+228874,0,0,0,15.6
+228875,0,0,0,15.6
+228876,0,0,0,15.6
+228877,0,0,0,15.6
+228878,0,0,0,15.6
+228879,0,0,0,15.6
+228880,0,0,0,15.6
+228881,0,0,0,15.6
+228882,0,0,0,15.6
+228883,0,0,0,15.6
+228884,0,0,0,15.6
+228885,0,0,0,15.6
+228886,0,0,0,15.6
+228887,0,368841.6593,938068.0593,15.6
+228888,0,0,0,15.6
+228889,0,0,0,15.6
+228890,0,0,0,15.6
+228891,334106.0171,0,0,15.6
+228892,0,0,0,15.6
+228893,0,0,0,15.6
+228894,0,0,0,15.6
+228895,0,0,0,15.6
+228896,0,0,0,15.6
+228897,0,0,0,15.6
+228898,0,0,0,15.6
+228899,0,0,0,15.6
+228900,0,0,0,15.6
+228901,0,0,0,15.6
+228902,0,0,0,15.6
+228903,0,0,0,15.6
+228904,0,0,0,15.6
+228905,0,0,0,15.6
+228906,0,0,0,15.6
+228907,0,0,0,15.6
+228908,0,0,0,15.6
+228909,0,0,0,15.6
+228910,0,0,0,15.6
+228911,0,0,0,15.6
+228912,0,0,0,15.6
+228913,0,0,0,15.6
+228914,0,0,0,15.6
+228915,0,0,0,15.6
+228916,0,0,0,15.6
+228917,0,0,0,15.6
+228918,0,0,0,15.6
+228919,0,0,0,15.6
+228920,0,0,0,15.6
+228921,0,368845.0007,915435.9143,15.6
+228922,0,0,0,15.6
+228923,0,0,0,15.6
+228924,0,0,0,15.6
+228925,0,0,0,15.6
+228926,335712.2602,0,0,15.6
+228927,0,0,0,15.6
+228928,0,0,0,15.6
+228929,0,0,0,15.6
+228930,0,0,0,15.6
+228931,0,0,0,15.6
+228932,0,0,0,15.6
+228933,0,0,0,15.6
+228934,0,0,0,15.6
+228935,0,0,0,15.6
+228936,0,0,0,15.6
+228937,0,0,0,15.6
+228938,0,0,0,15.6
+228939,0,0,0,15.6
+228940,0,0,0,15.6
+228941,0,0,0,15.6
+228942,0,0,0,15.6
+228943,0,0,0,15.6
+228944,0,0,0,15.6
+228945,0,0,0,15.6
+228946,0,0,0,15.6
+228947,0,0,0,15.6
+228948,0,0,0,15.6
+228949,0,0,0,15.6
+228950,0,0,0,15.6
+228951,0,0,0,15.6
+228952,0,0,0,15.6
+228953,0,0,0,15.6
+228954,0,0,0,15.6
+228955,0,368845.0008,894750.9668,15.6
+228956,0,0,0,15.6
+228957,0,0,0,15.6
+228958,0,0,0,15.6
+228959,0,0,0,15.6
+228960,0,0,0,15.6
+228961,334452.033,0,0,15.6
+228962,0,0,0,15.6
+228963,0,0,0,15.6
+228964,0,0,0,15.6
+228965,0,0,0,15.6
+228966,0,0,0,15.6
+228967,0,0,0,15.6
+228968,0,0,0,15.6
+228969,0,0,0,15.6
+228970,0,0,0,15.6
+228971,0,0,0,15.6
+228972,0,0,0,15.6
+228973,0,0,0,15.6
+228974,0,0,0,15.6
+228975,0,0,0,15.6
+228976,0,0,0,15.6
+228977,0,0,0,15.6
+228978,0,0,0,15.6
+228979,0,0,0,15.6
+228980,0,0,0,15.6
+228981,0,0,0,15.6
+228982,0,0,0,15.6
+228983,0,0,0,15.6
+228984,0,0,0,15.6
+228985,0,0,0,15.6
+228986,0,0,0,15.6
+228987,0,0,0,15.6
+228988,0,0,0,15.6
+228989,0,0,875846.1057,15.6
+228990,0,368956.7477,0,15.6
+228991,0,0,0,15.6
+228992,0,0,0,15.6
+228993,0,0,0,15.6
+228994,0,0,0,15.6
+228995,0,0,0,15.6
+228996,335941.7127,0,0,15.6
+228997,0,0,0,15.6
+228998,0,0,0,15.6
+228999,0,0,0,15.6
+229000,0,0,0,15.6
+229001,0,0,0,15.6
+229002,0,0,0,15.6
+229003,0,0,0,15.6
+229004,0,0,0,15.6
+229005,0,0,0,15.6
+229006,0,0,0,15.6
+229007,0,0,0,15.6
+229008,0,0,0,15.6
+229009,0,0,0,15.6
+229010,0,0,0,15.6
+229011,0,0,0,15.6
+229012,0,0,0,15.6
+229013,0,0,0,15.6
+229014,0,0,0,15.6
+229015,0,0,0,15.6
+229016,0,0,0,15.6
+229017,0,0,0,15.6
+229018,0,0,0,15.6
+229019,0,0,0,15.6
+229020,0,0,0,15.6
+229021,0,0,0,15.6
+229022,0,0,0,15.6
+229023,0,0,858569.4796,15.6
+229024,0,0,0,15.6
+229025,0,368901.9728,0,15.6
+229026,0,0,0,15.6
+229027,0,0,0,15.6
+229028,0,0,0,15.6
+229029,0,0,0,15.6
+229030,0,0,0,15.6
+229031,336606.7351,0,0,15.6
+229032,0,0,0,15.6
+229033,0,0,0,15.6
+229034,0,0,0,15.6
+229035,0,0,0,15.6
+229036,0,0,0,15.6
+229037,0,0,0,15.6
+229038,0,0,0,15.6
+229039,0,0,0,15.6
+229040,0,0,0,15.6
+229041,0,0,0,15.6
+229042,0,0,0,15.6
+229043,0,0,0,15.6
+229044,0,0,0,15.6
+229045,0,0,0,15.6
+229046,0,0,0,15.6
+229047,0,0,0,15.6
+229048,0,0,0,15.6
+229049,0,0,0,15.6
+229050,0,0,0,15.6
+229051,0,0,0,15.6
+229052,0,0,0,15.6
+229053,0,0,0,15.6
+229054,0,0,0,15.6
+229055,0,0,0,15.6
+229056,0,0,0,15.6
+229057,0,0,842807.9675,15.6
+229058,0,0,0,15.6
+229059,0,0,0,15.6
+229060,0,368877.5455,0,15.6
+229061,0,0,0,15.6
+229062,0,0,0,15.6
+229063,0,0,0,15.6
+229064,0,0,0,15.6
+229065,0,0,0,15.6
+229066,335206.9671,0,0,15.6
+229067,0,0,0,15.6
+229068,0,0,0,15.6
+229069,0,0,0,15.6
+229070,0,0,0,15.6
+229071,0,0,0,15.6
+229072,0,0,0,15.6
+229073,0,0,0,15.6
+229074,0,0,0,15.6
+229075,0,0,0,15.6
+229076,0,0,0,15.6
+229077,0,0,0,15.6
+229078,0,0,0,15.6
+229079,0,0,0,15.6
+229080,0,0,0,15.6
+229081,0,0,0,15.6
+229082,0,0,0,15.6
+229083,0,0,0,15.6
+229084,0,0,0,15.6
+229085,0,0,0,15.6
+229086,0,0,0,15.6
+229087,0,0,0,15.6
+229088,0,0,0,15.6
+229089,0,0,0,15.6
+229090,0,0,0,15.6
+229091,0,0,828426.4356,15.6
+229092,0,0,0,15.6
+229093,0,0,0,15.6
+229094,0,0,0,15.6
+229095,0,368876.6042,0,15.6
+229096,0,0,0,15.6
+229097,0,0,0,15.6
+229098,0,0,0,15.6
+229099,0,0,0,15.6
+229100,0,0,0,15.6
+229101,336638.7162,0,0,15.6
+229102,0,0,0,15.6
+229103,0,0,0,15.6
+229104,0,0,0,15.6
+229105,0,0,0,15.6
+229106,0,0,0,15.6
+229107,0,0,0,15.6
+229108,0,0,0,15.6
+229109,0,0,0,15.6
+229110,0,0,0,15.6
+229111,0,0,0,15.6
+229112,0,0,0,15.6
+229113,0,0,0,15.6
+229114,0,0,0,15.6
+229115,0,0,0,15.6
+229116,0,0,0,15.6
+229117,0,0,0,15.6
+229118,0,0,0,15.6
+229119,0,0,0,15.6
+229120,0,0,0,15.6
+229121,0,0,0,15.6
+229122,0,0,0,15.6
+229123,0,0,0,15.6
+229124,0,0,0,15.6
+229125,0,0,815297.3653,15.6
+229126,0,0,0,15.6
+229127,0,0,0,15.6
+229128,0,0,0,15.6
+229129,0,0,0,15.6
+229130,0,368907.6285,0,15.6
+229131,0,0,0,15.6
+229132,0,0,0,15.6
+229133,0,0,0,15.6
+229134,0,0,0,15.6
+229135,0,0,0,15.6
+229136,337439.1692,0,0,15.6
+229137,0,0,0,15.6
+229138,0,0,0,15.6
+229139,0,0,0,15.6
+229140,0,0,0,15.6
+229141,0,0,0,15.6
+229142,0,0,0,15.6
+229143,0,0,0,15.6
+229144,0,0,0,15.6
+229145,0,0,0,15.6
+229146,0,0,0,15.6
+229147,0,0,0,15.6
+229148,0,0,0,15.6
+229149,0,0,0,15.6
+229150,0,0,0,15.6
+229151,0,0,0,15.6
+229152,0,0,0,15.6
+229153,0,0,0,15.6
+229154,0,0,0,15.6
+229155,0,0,0,15.6
+229156,0,0,0,15.6
+229157,0,0,0,15.6
+229158,0,0,0,15.6
+229159,0,0,803304.3096,15.6
+229160,0,0,0,15.6
+229161,0,0,0,15.6
+229162,0,0,0,15.6
+229163,0,0,0,15.6
+229164,0,0,0,15.6
+229165,0,368918.3406,0,15.6
+229166,0,0,0,15.6
+229167,0,0,0,15.6
+229168,0,0,0,15.6
+229169,0,0,0,15.6
+229170,335584.4707,0,0,15.6
+229171,0,0,0,15.6
+229172,0,0,0,15.6
+229173,0,0,0,15.6
+229174,0,0,0,15.6
+229175,0,0,0,15.6
+229176,0,0,0,15.6
+229177,0,0,0,15.6
+229178,0,0,0,15.6
+229179,0,0,0,15.6
+229180,0,0,0,15.6
+229181,0,0,0,15.6
+229182,0,0,0,15.6
+229183,0,0,0,15.6
+229184,0,0,0,15.6
+229185,0,0,0,15.6
+229186,0,0,0,15.6
+229187,0,0,0,15.6
+229188,0,0,0,15.6
+229189,0,0,0,15.6
+229190,0,0,0,15.6
+229191,0,0,0,15.6
+229192,0,0,0,15.6
+229193,0,0,792337.8335,15.6
+229194,0,0,0,15.6
+229195,0,0,0,15.6
+229196,0,0,0,15.6
+229197,0,0,0,15.6
+229198,0,0,0,15.6
+229199,0,368918.6904,0,15.6
+229200,0,0,0,17.8
+229201,0,0,0,17.8
+229202,0,0,0,17.8
+229203,0,0,0,17.8
+229204,340427.2769,0,0,17.8
+229205,0,0,0,17.8
+229206,0,0,0,17.8
+229207,0,0,0,17.8
+229208,0,0,0,17.8
+229209,0,0,0,17.8
+229210,0,0,0,17.8
+229211,0,0,0,17.8
+229212,0,0,0,17.8
+229213,0,0,0,17.8
+229214,0,0,0,17.8
+229215,0,0,0,17.8
+229216,0,0,0,17.8
+229217,0,14456.31359,0,17.8
+229218,0,21507.09931,0,17.8
+229219,0,16213.27069,0,17.8
+229220,0,18929.07187,0,17.8
+229221,0,23487.47303,0,17.8
+229222,0,23116.60911,0,17.8
+229223,0,23561.70219,0,17.8
+229224,0,24115.01152,0,17.8
+229225,0,25006.79278,0,17.8
+229226,0,25258.69921,0,17.8
+229227,0,25968.33095,782329.6076,17.8
+229228,0,26197.53653,0,17.8
+229229,0,27046.18547,0,17.8
+229230,0,27174.9279,0,17.8
+229231,0,27651.34427,0,17.8
+229232,0,28568.01669,0,17.8
+229233,0,397299.341,0,17.8
+229234,0,29181.10739,0,17.8
+229235,0,29503.5076,0,17.8
+229236,0,29733.906,0,17.8
+229237,0,30455.08093,0,17.8
+229238,340425.9544,30803.38426,0,17.8
+229239,0,4024.434004,0,17.8
+229240,0,4075.867245,0,17.8
+229241,0,4119.954284,0,17.8
+229242,0,4185.716864,0,17.8
+229243,0,4207.656814,0,17.8
+229244,0,0,0,17.8
+229245,0,0,0,17.8
+229246,0,0,0,17.8
+229247,0,0,0,17.8
+229248,0,0,0,17.8
+229249,0,0,0,17.8
+229250,0,13664.41978,0,17.8
+229251,0,37739.15919,0,17.8
+229252,0,23417.52256,0,17.8
+229253,0,28171.87314,0,17.8
+229254,13123.92389,29116.11488,0,17.8
+229255,18251.19945,29554.5818,0,17.8
+229256,25273.83557,30179.7628,0,17.8
+229257,26607.3877,30179.75858,0,17.8
+229258,25567.63881,30678.80058,0,17.8
+229259,27292.2968,30802.58616,0,17.8
+229260,27683.66933,31423.10351,0,20
+229261,755543.3014,710314.9145,777373.2279,20
+229262,11311.94961,0,0,20
+229263,14552.7861,0,0,20
+229264,79742.02836,12535.32898,4035.099724,20
+229265,100038.2569,166619.6404,32842.58325,20
+229266,81681.25631,61496.24609,24415.24899,20
+229267,105145.2205,84025.62154,26673.47823,20
+229268,90813.3093,84880.79013,26779.09063,20
+229269,96542.16013,84333.49001,28121.97557,20
+229270,96170.6924,84012.92091,27957.64944,20
+229271,96835.13447,83250.04156,28400.62112,20
+229272,97029.86752,83448.69195,34667.91146,20
+229273,96877.11765,82636.28291,34500.85836,20
+229274,97269.24672,82179.40456,34204.78477,20
+229275,97373.81856,81785.27706,34974.29501,20
+229276,97657.30625,81550.72926,35642.39071,20
+229277,97531.20338,81529.83193,44175.29482,20
+229278,98098.98054,80670.07004,42326.04579,20
+229279,98126.31621,80449.62873,43175.05652,20
+229280,98278.32273,80091.69533,44274.35886,20
+229281,98393.68434,79893.24526,45127.324,20
+229282,98750.96556,79293.21955,46014.81783,20
+229283,98737.77466,79495.26513,46683.86943,20
+229284,98976.10367,78740.15685,47427.94914,20
+229285,99044.25187,78421.99265,48317.68609,20
+229286,99243.82991,78187.04704,49016.92756,20
+229287,99609.79249,78089.90363,49716.67437,20
+229288,99624.40669,77312.9118,50536.10275,20
+229289,99954.60399,77544.49803,51103.93959,20
+229290,99647.97326,77032.93286,51977.01521,20
+229291,100136.497,76651.33013,52381.7716,20
+229292,100141.6867,76466.70479,52162.43122,20
+229293,99991.29311,76097.98147,50435.13594,20
+229294,100309.5865,75840.8106,50312.7356,20
+229295,99984.51565,75506.44573,50587.78517,20
+229296,100330.6358,75513.9007,50558.8039,20
+229297,100164.392,74708.82127,50480.0373,20
+229298,100288.8546,74922.28369,50762.71185,20
+229299,100190.6912,74361.77424,50651.39827,20
+229300,100238.8524,74326.28515,50598.28655,20
+229301,99988.00917,74104.18517,50712.68766,20
+229302,100176.1717,74050.86523,50503.45503,20
+229303,99976.33055,74119.82996,50682.72072,20
+229304,99888.62168,73989.45772,50775.64147,20
+229305,100179.2803,73603.3302,50174.23943,20
+229306,99850.81936,73713.21349,50655.32643,20
+229307,99829.45449,72914.37622,50367.08907,20
+229308,99646.90474,73507.69696,50391.2817,20
+229309,99660.72275,72818.5239,50129.07466,20
+229310,99786.8097,72644.78662,50320.61419,20
+229311,99425.28048,72260.20673,50119.11597,20
+229312,99478.82743,72578.20575,49985.69604,20
+229313,99453.59199,72011.84549,49945.67253,20
+229314,98995.96639,71709.89064,49527.1435,20
+229315,99376.72142,71958.84834,49889.92,20
+229316,98981.66103,71343.62847,49485.46489,20
+229317,99056.96746,71375.23747,47759.94175,20
+229318,98958.62755,71100.58634,47543.76853,20
+229319,98588.29609,70850.92868,47074.10305,20
+229320,98442.83232,71008.79981,47500.10633,21
+229321,90225.72124,66013.54794,35215.50181,21
+229322,88644.35023,65277.24239,33859.13984,21
+229323,88312.92292,65132.69962,33651.69133,21
+229324,87707.11334,64895.37887,32741.22819,21
+229325,87839.71011,64317.73617,32615.14705,21
+229326,86970.90326,64306.88416,31905.96161,21
+229327,86687.96147,64248.42401,31590.37052,21
+229328,86592.82378,63701.9551,31281.17858,21
+229329,85889.05556,63291.50898,30514.47633,21
+229330,85572.05571,63671.04044,30176.94838,21
+229331,85389.7302,63020.03377,29998.89714,21
+229332,84945.85935,62704.18059,29192.21515,21
+229333,84421.1088,63039.41388,28837.68184,21
+229334,84287.33381,62070.90534,28455.90031,21
+229335,83840.99016,62412.63452,27982.56465,21
+229336,83468.38071,62051.46577,27354.21226,21
+229337,83077.94307,61785.16276,27116.28966,21
+229338,82765.50035,61472.59161,26497.38295,21
+229339,82383.62628,61581.83749,26004.19153,21
+229340,82100.95346,61454.18363,25628.47426,21
+229341,81624.30546,61389.512,25255.10235,21
+229342,81293.66392,61198.94813,24515.35183,21
+229343,80879.6846,60931.08764,24457.72829,21
+229344,80660.11995,60822.89718,23599.02533,21
+229345,80079.94521,60765.25317,23241.21303,21
+229346,79924.32117,60560.77695,22697.638,21
+229347,79361.66058,60196.96729,22179.18711,21
+229348,79213.54989,60170.19763,21794.27863,21
+229349,78523.65731,60151.61477,21017.15014,21
+229350,78565.56189,59554.89052,20600.05978,21
+229351,77565.79746,59779.49542,20050.81381,21
+229352,77220.06621,59318.20431,18841.69056,21
+229353,76307.58509,59008.52525,18697.28072,21
+229354,75946.40285,58925.32502,17799.90737,21
+229355,73871.7957,58622.51829,17132.32352,21
+229356,73118.98313,58312.06483,16728.27227,21
+229357,72515.48049,58048.62151,16057.31911,21
+229358,71733.30253,57724.05394,15269.13421,21
+229359,70641.7577,57614.33866,14668.31863,21
+229360,70242.34746,57141.69326,14152.81163,21
+229361,69138.44838,56971.89063,13306.67621,21
+229362,68748.63107,57056.79813,12706.84286,21
+229363,67378.85774,56171.67517,12490.91722,21
+229364,67044.21585,56302.30346,12398.21956,21
+229365,66160.02352,55962.52645,12212.94106,21
+229366,65130.63536,55512.57204,11930.97845,21
+229367,64325.83422,55315.10442,11779.38747,21
+229368,63931.17266,55028.19738,11504.13394,21
+229369,62363.40587,54535.13371,11427.93048,21
+229370,62176.24987,54364.54989,11064.14022,21
+229371,61035.3267,54001.73911,10994.37879,21
+229372,58862.51817,53732.36224,10846.09514,21
+229373,57681.32039,53665.53587,10127.61787,21
+229374,56756.40297,52753.30683,10174.4941,21
+229375,55820.41024,52991.06341,9718.770424,21
+229376,55169.17098,52462.06147,9753.664822,21
+229377,53870.0023,51979.74583,9221.847382,21
+229378,53276.28339,51784.39523,9262.427811,21
+229379,52241.72451,51562.30409,8950.107346,21
+229380,51677.96782,50733.43738,8777.930853,21
+229381,14520.23668,16685.67134,368.8875666,21
+229382,13146.95363,13644.07642,251.0394514,21
+229383,12825.3488,12986.08478,199.4845274,21
+229384,12499.36641,12198.25288,182.1282815,21
+229385,12098.61762,11068.8658,138.2940317,21
+229386,11911.12836,10732.81826,111.6379858,21
+229387,11518.41577,9239.73286,75.56781112,21
+229388,11431.44235,9148.21937,57.2430436,21
+229389,11023.68739,7728.367838,19.70364176,21
+229390,10987.04669,7511.809271,0,21
+229391,10775.87464,6600.760228,0,21
+229392,10514.74979,6076.718631,0,21
+229393,10433.05324,5300.997728,0,21
+229394,10170.51232,4680.337678,0,21
+229395,10063.5722,4077.733964,0,21
+229396,9824.269426,3346.813856,0,21
+229397,9704.257812,2874.598603,0,21
+229398,9475.96408,1932.504091,0,21
+229399,9342.755347,1610.288741,0,21
+229400,9113.031108,1215.500587,0,21
+229401,9100.505782,1127.25203,0,21
+229402,8747.798845,1100.36978,0,21
+229403,8625.530889,993.5149925,0,21
+229404,8612.918233,966.2860592,0,21
+229405,8146.440385,903.3736543,0,21
+229406,8244.435092,830.3700072,0,21
+229407,8010.127792,770.6862107,0,21
+229408,7762.009163,720.437419,0,21
+229409,7762.008909,645.8714202,0,21
+229410,7387.643895,599.0790417,0,21
+229411,7512.728701,523.2217563,0,21
+229412,7136.562232,504.5761936,0,21
+229413,7123.67513,408.6806353,0,21
+229414,7010.556885,408.6806991,0,21
+229415,6884.23614,315.407512,0,21
+229416,6630.628469,286.4264916,0,21
+229417,6731.653022,231.1682504,0,21
+229418,6388.70479,180.5914129,0,21
+229419,6362.665196,103.0553012,0,21
+229420,6349.608233,76.59300361,0,21
+229421,5990.720704,32.42021106,0,21
+229422,6106.316258,0,0,21
+229423,5835.392548,0,0,21
+229424,5602.495151,0,0,21
+229425,5589.311815,0,0,21
+229426,5562.867674,0,0,21
+229427,5210.823649,0,0,21
+229428,5301.993022,0,0,21
+229429,5066.174043,0,0,21
+229430,5039.518582,0,0,21
+229431,4802.133204,0,0,21
+229432,4775.369596,0,0,21
+229433,4761.946593,0,0,21
+229434,4522.912084,0,0,21
+229435,4375.81832,0,0,21
+229436,4362.311518,0,0,21
+229437,4241.697934,0,0,21
+229438,4093.522661,0,0,21
+229439,3971.967958,0,0,21
+229440,3944.75335,0,0,21
+229441,3686.490886,0,0,21
+229442,3672.809868,0,0,21
+229443,3412.355653,0,0,21
+229444,3384.842427,0,0,21
+229445,2982.683082,0,0,21
+229446,2982.68306,0,0,21
+229447,2688.021589,0,0,21
+229448,2828.787984,0,0,21
+229449,2404.098007,0,0,21
+229450,2532.479755,0,0,21
+229451,2116.609553,0,0,21
+229452,2232.67431,0,0,21
+229453,1957.21509,0,0,21
+229454,1943.049526,0,0,21
+229455,1648.822166,0,0,21
+229456,1648.772924,0,0,21
+229457,1470.989705,0,0,21
+229458,1348.757428,0,0,21
+229459,1167.074995,0,0,21
+229460,1167.040687,0,0,21
+229461,852.4952202,0,0,21
+229462,852.4658184,0,0,21
+229463,656.8592857,0,0,21
+229464,671.4828592,0,0,21
+229465,627.4853974,0,0,21
+229466,612.7334743,0,0,21
+229467,612.7334595,0,0,21
+229468,583.095648,0,0,21
+229469,568.2080686,0,0,21
+229470,553.2734905,0,0,21
+229471,523.2612244,0,0,21
+229472,523.261647,0,0,21
+229473,493.0471552,0,0,21
+229474,493.0471808,0,0,21
+229475,462.6227976,0,0,21
+229476,462.6228135,0,0,21
+229477,431.9777796,0,0,21
+229478,416.5688496,0,0,21
+229479,416.5688892,0,0,21
+229480,385.5693184,0,0,21
+229481,354.3155878,0,0,21
+229482,338.5865393,0,0,21
+229483,322.7872571,0,0,21
+229484,290.9653512,0,0,21
+229485,290.9653735,0,0,21
+229486,274.9360404,0,0,21
+229487,242.621493,0,0,21
+229488,242.6215023,0,0,21
+229489,226.3271443,0,0,21
+229490,193.4363758,0,0,21
+229491,193.4363897,0,0,21
+229492,168.47604,0,0,21
+229493,160.0944517,0,0,21
+229494,126.222118,0,0,21
+229495,143.2308537,0,0,21
+229496,91.69785901,0,0,21
+229497,91.69786623,0,0,21
+229498,82.94335533,0,0,21
+229499,56.30791474,0,0,21
+229500,38.15878842,0,0,21
+229501,9.970910292,0,0,21
+229502,0,0,0,21
+229503,0,0,0,21
+229504,0,0,0,21
+229505,0,0,0,21
+229506,0,0,0,21
+229507,0,0,0,21
+229508,0,0,0,21
+229509,0,0,0,21
+229510,0,0,0,21
+229511,0,0,0,21
+229512,0,0,0,21
+229513,0,0,0,21
+229514,0,0,0,21
+229515,0,0,0,21
+229516,0,0,0,21
+229517,0,0,0,21
+229518,0,0,0,21
+229519,0,0,0,21
+229520,0,0,0,21
+229521,0,0,0,21
+229522,0,0,0,21
+229523,0,0,0,21
+229524,0,0,0,21
+229525,0,0,0,21
+229526,0,0,0,21
+229527,0,0,0,21
+229528,0,0,0,21
+229529,0,0,0,21
+229530,0,0,0,21
+229531,0,0,0,21
+229532,0,0,0,21
+229533,0,0,0,21
+229534,0,0,0,21
+229535,0,0,0,21
+229536,0,0,0,21
+229537,0,0,0,21
+229538,0,0,0,21
+229539,0,0,0,21
+229540,0,0,0,21
+229541,0,0,0,21
+229542,0,0,0,21
+229543,0,0,0,21
+229544,0,0,0,21
+229545,0,0,0,21
+229546,0,0,0,21
+229547,0,0,0,21
+229548,0,0,0,21
+229549,0,0,0,21
+229550,0,0,0,21
+229551,0,0,0,21
+229552,0,0,0,21
+229553,0,0,0,21
+229554,0,0,0,21
+229555,0,0,0,21
+229556,0,0,0,21
+229557,0,0,0,21
+229558,0,0,0,21
+229559,0,0,0,21
+229560,0,0,0,21
+229561,0,0,0,21
+229562,0,0,0,21
+229563,0,0,0,21
+229564,0,0,0,21
+229565,0,0,0,21
+229566,0,0,0,21
+229567,0,0,0,21
+229568,0,0,0,21
+229569,0,0,0,21
+229570,0,0,0,21
+229571,0,0,0,21
+229572,0,0,0,21
+229573,0,0,0,21
+229574,0,0,0,21
+229575,0,0,0,21
+229576,0,0,0,21
+229577,0,0,0,21
+229578,0,0,0,21
+229579,0,0,0,21
+229580,0,0,0,21
+229581,0,0,0,21
+229582,0,0,0,21
+229583,0,0,0,21
+229584,0,0,0,21
+229585,0,0,0,21
+229586,0,0,0,21
+229587,0,0,0,21
+229588,0,0,0,21
+229589,0,0,0,21
+229590,0,0,0,21
+229591,0,0,0,21
+229592,0,0,0,21
+229593,0,0,0,21
+229594,0,0,0,21
+229595,0,0,0,21
+229596,0,0,0,21
+229597,0,0,0,21
+229598,0,0,0,21
+229599,0,0,0,21
+229600,0,0,0,21
+229601,0,0,0,21
+229602,0,0,0,21
+229603,0,0,0,21
+229604,0,0,0,21
+229605,0,0,0,21
+229606,0,0,0,21
+229607,0,0,0,21
+229608,0,0,0,21
+229609,0,0,0,21
+229610,0,0,0,21
+229611,0,0,0,21
+229612,0,0,0,21
+229613,0,0,0,21
+229614,0,0,0,21
+229615,0,0,0,21
+229616,0,0,0,21
+229617,0,0,0,21
+229618,0,0,0,21
+229619,0,0,0,21
+229620,0,0,0,21
+229621,0,0,0,21
+229622,0,0,0,21
+229623,0,0,0,21
+229624,0,0,0,21
+229625,0,0,0,21
+229626,0,0,0,21
+229627,0,0,0,21
+229628,0,0,0,21
+229629,0,0,0,21
+229630,0,0,0,21
+229631,0,0,0,21
+229632,0,0,0,21
+229633,0,0,0,21
+229634,0,0,0,21
+229635,0,0,0,21
+229636,0,0,0,21
+229637,0,0,0,21
+229638,0,0,0,21
+229639,0,0,0,21
+229640,0,0,0,21
+229641,0,0,0,21
+229642,0,0,0,21
+229643,0,0,0,21
+229644,0,0,0,21
+229645,0,0,0,21
+229646,0,0,0,21
+229647,0,0,0,21
+229648,0,0,0,21
+229649,0,0,0,21
+229650,0,0,0,21
+229651,0,0,0,21
+229652,0,0,0,21
+229653,0,0,0,21
+229654,0,0,0,21
+229655,0,0,0,21
+229656,0,0,0,21
+229657,0,0,0,21
+229658,0,0,0,21
+229659,0,0,0,21
+229660,0,0,0,21
+229661,0,0,0,21
+229662,0,0,0,21
+229663,0,0,0,21
+229664,0,0,0,21
+229665,0,0,0,21
+229666,0,0,0,21
+229667,0,0,0,21
+229668,0,0,0,21
+229669,0,0,0,21
+229670,0,0,0,21
+229671,0,0,0,21
+229672,0,0,0,21
+229673,0,0,0,21
+229674,0,0,0,21
+229675,0,0,0,21
+229676,0,0,0,21
+229677,0,0,0,21
+229678,0,0,0,21
+229679,0,0,0,21
+229680,0,0,0,21
+229681,0,0,0,21
+229682,0,0,0,21
+229683,0,0,0,21
+229684,0,0,0,21
+229685,0,0,0,21
+229686,0,0,0,21
+229687,0,0,0,21
+229688,0,0,0,21
+229689,0,0,0,21
+229690,0,0,0,21
+229691,0,0,0,21
+229692,0,0,0,21
+229693,0,0,0,21
+229694,0,0,0,21
+229695,0,0,0,21
+229696,0,0,0,21
+229697,0,0,0,21
+229698,0,0,0,21
+229699,0,0,0,21
+229700,0,0,0,21
+229701,0,0,0,21
+229702,0,0,0,21
+229703,0,0,0,21
+229704,0,0,0,21
+229705,0,0,0,21
+229706,0,0,0,21
+229707,0,0,0,21
+229708,0,0,0,21
+229709,0,0,0,21
+229710,0,0,0,21
+229711,0,0,0,21
+229712,0,0,0,21
+229713,0,0,0,21
+229714,0,0,0,21
+229715,0,0,0,21
+229716,0,0,0,21
+229717,0,0,0,21
+229718,0,0,0,21
+229719,0,0,0,21
+229720,0,0,0,21
+229721,0,0,0,21
+229722,0,0,0,21
+229723,0,0,0,21
+229724,0,0,0,21
+229725,0,0,0,21
+229726,0,0,0,21
+229727,0,0,0,21
+229728,0,0,0,21
+229729,0,0,0,21
+229730,0,0,0,21
+229731,0,0,0,21
+229732,0,0,0,21
+229733,0,0,0,21
+229734,0,0,0,21
+229735,0,0,0,21
+229736,0,0,0,21
+229737,0,0,0,21
+229738,0,0,0,21
+229739,0,0,0,21
+229740,0,0,0,21
+229741,0,0,0,21
+229742,0,0,0,21
+229743,0,0,0,21
+229744,0,0,0,21
+229745,0,0,0,21
+229746,0,0,0,21
+229747,0,0,0,21
+229748,0,0,0,21
+229749,0,0,0,21
+229750,0,0,0,21
+229751,0,0,0,21
+229752,0,0,0,21
+229753,0,0,0,21
+229754,0,0,0,21
+229755,0,0,0,21
+229756,0,0,0,21
+229757,0,0,0,21
+229758,0,0,0,21
+229759,0,0,0,21
+229760,0,0,0,21
+229761,0,0,0,21
+229762,0,0,0,21
+229763,0,0,0,21
+229764,0,0,0,21
+229765,0,0,0,21
+229766,0,0,0,21
+229767,0,0,0,21
+229768,0,0,0,21
+229769,0,0,0,21
+229770,0,0,0,21
+229771,0,0,0,21
+229772,0,0,0,21
+229773,0,0,0,21
+229774,0,0,0,21
+229775,0,0,0,21
+229776,0,0,0,21
+229777,0,0,0,21
+229778,0,0,0,21
+229779,0,0,0,21
+229780,0,0,0,21
+229781,0,0,0,21
+229782,0,0,0,21
+229783,0,0,0,21
+229784,0,0,0,21
+229785,0,0,0,21
+229786,0,0,0,21
+229787,0,0,0,21
+229788,0,0,0,21
+229789,0,0,0,21
+229790,0,0,0,21
+229791,0,0,0,21
+229792,0,0,0,21
+229793,0,0,0,21
+229794,0,0,0,21
+229795,0,0,0,21
+229796,0,0,0,21
+229797,0,0,0,21
+229798,0,0,0,21
+229799,0,0,0,21
+229800,0,0,0,21
+229801,0,0,0,21
+229802,0,0,0,21
+229803,0,0,0,21
+229804,0,0,0,21
+229805,0,0,0,21
+229806,0,0,0,21
+229807,0,0,0,21
+229808,0,0,0,21
+229809,0,0,0,21
+229810,0,0,0,21
+229811,0,0,0,21
+229812,0,0,0,21
+229813,0,0,0,21
+229814,0,0,0,21
+229815,0,0,0,21
+229816,0,0,0,21
+229817,0,0,0,21
+229818,0,0,0,21
+229819,0,0,0,21
+229820,0,0,0,21
+229821,0,0,0,21
+229822,0,0,0,21
+229823,0,0,0,21
+229824,0,0,0,21
+229825,0,0,0,21
+229826,0,0,0,21
+229827,0,0,0,21
+229828,0,0,0,21
+229829,0,0,0,21
+229830,0,0,0,21
+229831,0,0,0,21
+229832,0,0,0,21
+229833,0,0,0,21
+229834,0,0,0,21
+229835,0,0,0,21
+229836,0,0,0,21
+229837,0,0,0,21
+229838,0,0,0,21
+229839,0,0,0,21
+229840,0,0,0,21
+229841,0,0,0,21
+229842,0,0,0,21
+229843,0,0,0,21
+229844,0,0,0,21
+229845,0,0,0,21
+229846,0,0,0,21
+229847,0,0,0,21
+229848,0,0,0,21
+229849,0,0,0,21
+229850,0,0,0,21
+229851,0,0,0,21
+229852,0,0,0,21
+229853,0,0,0,21
+229854,0,0,0,21
+229855,0,0,0,21
+229856,0,0,0,21
+229857,0,0,0,21
+229858,0,0,0,21
+229859,0,0,0,21
+229860,0,0,0,21
+229861,0,0,0,21
+229862,0,0,0,21
+229863,0,0,0,21
+229864,0,0,0,21
+229865,0,0,0,21
+229866,0,0,0,21
+229867,0,0,0,21
+229868,0,0,0,21
+229869,0,0,0,21
+229870,0,0,0,21
+229871,0,0,0,21
+229872,0,0,0,21
+229873,0,0,0,21
+229874,0,0,0,21
+229875,0,0,0,21
+229876,0,0,0,21
+229877,0,0,0,21
+229878,0,0,0,21
+229879,0,0,0,21
+229880,0,0,0,21
+229881,0,0,0,21
+229882,0,0,0,21
+229883,0,0,0,21
+229884,0,0,0,21
+229885,0,0,0,21
+229886,0,0,0,21
+229887,0,0,0,21
+229888,0,0,0,21
+229889,0,0,0,21
+229890,0,0,0,21
+229891,0,0,0,21
+229892,0,0,0,21
+229893,0,0,0,21
+229894,0,0,0,21
+229895,0,0,0,21
+229896,0,0,0,21
+229897,0,0,0,21
+229898,0,0,0,21
+229899,0,0,0,21
+229900,0,0,0,21
+229901,0,0,0,21
+229902,0,0,0,21
+229903,0,0,0,21
+229904,0,0,0,21
+229905,0,0,0,21
+229906,0,0,0,21
+229907,0,0,0,21
+229908,0,0,0,21
+229909,0,0,0,21
+229910,0,0,0,21
+229911,0,0,0,21
+229912,0,0,0,21
+229913,0,0,0,21
+229914,0,0,0,21
+229915,0,0,0,21
+229916,0,0,0,21
+229917,0,0,0,21
+229918,0,0,0,21
+229919,0,0,0,21
+229920,0,0,0,21
+229921,0,0,0,21
+229922,0,0,0,21
+229923,0,0,0,21
+229924,0,0,0,21
+229925,0,0,0,21
+229926,0,0,0,21
+229927,0,0,0,21
+229928,0,0,0,21
+229929,0,0,0,21
+229930,0,0,0,21
+229931,0,0,0,21
+229932,0,0,0,21
+229933,0,0,0,21
+229934,0,0,0,21
+229935,0,0,0,21
+229936,0,0,0,21
+229937,0,0,0,21
+229938,0,0,0,21
+229939,0,0,0,21
+229940,0,0,0,21
+229941,0,0,0,21
+229942,0,0,0,21
+229943,0,0,0,21
+229944,0,0,0,21
+229945,0,0,0,21
+229946,0,0,0,21
+229947,0,0,0,21
+229948,0,0,0,21
+229949,0,0,0,21
+229950,0,0,0,21
+229951,0,0,0,21
+229952,0,0,0,21
+229953,0,0,0,21
+229954,0,0,0,21
+229955,0,0,0,21
+229956,0,0,0,21
+229957,0,0,0,21
+229958,0,0,0,21
+229959,0,0,0,21
+229960,0,0,0,21
+229961,0,0,0,21
+229962,0,0,0,21
+229963,0,0,0,21
+229964,0,0,0,21
+229965,0,0,0,21
+229966,0,0,0,21
+229967,0,0,0,21
+229968,0,0,0,21
+229969,0,0,0,21
+229970,0,0,0,21
+229971,0,0,0,21
+229972,0,0,0,21
+229973,0,0,0,21
+229974,0,0,0,21
+229975,0,0,0,21
+229976,0,0,0,21
+229977,0,0,0,21
+229978,0,0,0,21
+229979,0,0,0,21
+229980,0,0,0,21
+229981,0,0,0,21
+229982,0,0,0,21
+229983,0,0,0,21
+229984,0,0,0,21
+229985,0,0,0,21
+229986,0,0,0,21
+229987,0,0,0,21
+229988,0,0,0,21
+229989,0,0,0,21
+229990,0,0,0,21
+229991,0,0,0,21
+229992,0,0,0,21
+229993,0,0,0,21
+229994,0,0,0,21
+229995,0,0,0,21
+229996,0,0,0,21
+229997,0,0,0,21
+229998,0,0,0,21
+229999,0,0,0,21
+230000,0,0,0,21
+230001,0,0,0,21
+230002,0,0,0,21
+230003,0,0,0,21
+230004,0,0,0,21
+230005,0,0,0,21
+230006,0,0,0,21
+230007,0,0,0,21
+230008,0,0,0,21
+230009,0,0,0,21
+230010,0,0,0,21
+230011,0,0,0,21
+230012,0,0,0,21
+230013,0,0,0,21
+230014,0,0,0,21
+230015,0,0,0,21
+230016,0,0,0,21
+230017,0,0,0,21
+230018,0,0,0,21
+230019,0,0,0,21
+230020,0,0,0,21
+230021,0,0,0,21
+230022,0,0,0,21
+230023,0,0,0,21
+230024,0,0,0,21
+230025,0,0,0,21
+230026,0,0,0,21
+230027,0,0,0,21
+230028,0,0,0,21
+230029,0,0,0,21
+230030,0,0,0,21
+230031,0,0,0,21
+230032,0,0,0,21
+230033,0,0,0,21
+230034,0,0,0,21
+230035,0,0,0,21
+230036,0,0,0,21
+230037,0,0,0,21
+230038,0,0,0,21
+230039,0,0,0,21
+230040,0,0,0,21
+230041,0,0,0,21
+230042,0,0,0,21
+230043,0,0,0,21
+230044,0,0,0,21
+230045,0,0,0,21
+230046,0,0,0,21
+230047,0,0,0,21
+230048,0,0,0,21
+230049,0,0,0,21
+230050,0,0,0,21
+230051,0,0,0,21
+230052,0,0,0,21
+230053,0,0,0,21
+230054,0,0,0,21
+230055,0,0,0,21
+230056,0,0,0,21
+230057,0,0,0,21
+230058,0,0,0,21
+230059,0,0,0,21
+230060,0,0,0,21
+230061,0,0,0,21
+230062,0,0,0,21
+230063,0,0,0,21
+230064,0,0,0,21
+230065,0,0,0,21
+230066,0,0,0,21
+230067,0,0,0,21
+230068,0,0,0,21
+230069,0,0,0,21
+230070,0,0,0,21
+230071,0,0,0,21
+230072,0,0,0,21
+230073,0,0,0,21
+230074,0,0,0,21
+230075,0,0,0,21
+230076,0,0,0,21
+230077,0,0,0,21
+230078,0,0,0,21
+230079,0,0,0,21
+230080,0,0,0,21
+230081,0,0,0,21
+230082,0,0,0,21
+230083,0,0,0,21
+230084,0,0,0,21
+230085,0,0,0,21
+230086,0,0,0,21
+230087,0,0,0,21
+230088,0,0,0,21
+230089,0,0,0,21
+230090,0,0,0,21
+230091,0,0,0,21
+230092,0,0,0,21
+230093,153.2844156,0,0,21
+230094,1387.090967,0,0,21
+230095,855.2951179,0,0,21
+230096,1255.787509,0,0,21
+230097,1387.091199,0,0,21
+230098,1517.45471,0,0,21
+230099,1775.62799,0,0,21
+230100,1775.62801,0,0,21
+230101,2533.063501,0,0,21
+230102,2657.156263,0,0,21
+230103,2903.73765,0,0,21
+230104,3026.260272,0,0,21
+230105,3269.852307,0,0,21
+230106,3269.852265,0,0,21
+230107,3631.822433,0,0,21
+230108,3631.822547,0,0,21
+230109,3871.002262,0,0,21
+230110,3871.002193,0,0,21
+230111,4226.781071,0,0,21
+230112,4226.780983,0,0,21
+230113,4462.078034,0,0,21
+230114,4579.184093,0,0,21
+230115,4695.938448,0,0,21
+230116,4812.3493,0,0,21
+230117,5044.157614,0,0,21
+230118,5044.157507,0,0,21
+230119,5389.433264,0,0,21
+230120,5274.658831,0,0,21
+230121,5731.894282,0,0,21
+230122,5503.873296,0,0,21
+230123,5958.720254,0,0,21
+230124,5845.450508,0,0,21
+230125,6184.400901,0,0,21
+230126,6184.400836,0,0,21
+230127,6520.834066,0,0,21
+230128,6520.833992,0,0,21
+230129,6632.435842,0,0,21
+230130,6854.847877,0,0,21
+230131,6965.664019,0,0,21
+230132,7076.224395,0,0,21
+230133,7186.531985,0,0,21
+230134,7296.589673,0,0,21
+230135,7515.966548,0,0,21
+230136,7515.966457,0,0,21
+230137,7734.376268,0,0,21
+230138,7734.376171,0,0,21
+230139,8060.221615,0,0,21
+230140,7951.83903,0,0,21
+230141,8276.299726,0,0,21
+230142,8168.374148,0,0,21
+230143,8618.363948,0,0,21
+230144,8569.812638,0,0,21
+230145,8815.247767,0,0,21
+230146,8981.684431,188.8034717,0,21
+230147,9342.435965,248.0010786,0,21
+230148,9692.49448,248.0010897,0,21
+230149,9724.880301,306.1868518,0,21
+230150,9830.232177,334.9545778,0,21
+230151,10072.36932,391.9164015,0,21
+230152,10200.93853,420.1343452,0,21
+230153,10216.72551,2030.355006,0,21
+230154,10449.1756,4468.54098,0,21
+230155,10568.94586,3610.72818,0,21
+230156,10703.93878,4364.43787,0,21
+230157,10807.71058,5447.708204,0,21
+230158,10957.37272,5474.818279,0,21
+230159,11156.32376,6512.882543,0,21
+230160,11091.19549,6644.528764,0,21
+230161,11415.37769,7589.369752,0,21
+230162,11430.45691,7694.162908,0,21
+230163,11665.56957,8579.086589,0,21
+230164,11680.49549,8756.517702,0,21
+230165,11899.75323,9575.082367,0,21
+230166,12031.2848,10370.31429,0,21
+230167,12147.76189,10496.40314,0,21
+230168,12162.45146,11323.38719,0,21
+230169,12596.90336,11561.94385,0,21
+230170,12409.20827,12561.31259,0,21
+230171,12625.97537,12570.68141,0,21
+230172,12842.00844,13443.69786,0,21
+230173,12885.18248,13785.66955,0,21
+230174,12971.35337,14427.29684,0,21
+230175,13114.64107,14740.79323,0,21
+230176,13314.8408,15481.67195,0,21
+230177,13343.26932,15784.03135,0,21
+230178,13471.39672,16415.77622,0,21
+230179,13571.07889,16827.61916,0,21
+230180,13784.03425,17360.77162,0,21
+230181,13826.06966,17862.92465,0,21
+230182,13911.28249,18538.39759,0,21
+230183,14052.13459,19143.86177,0,21
+230184,14249.70623,19192.49952,0,21
+230185,14277.41599,20169.42992,0,21
+230186,14291.21958,20461.5353,0,21
+230187,14600.15285,20748.70585,0,21
+230188,14529.3671,21454.34024,0,21
+230189,14725.66676,21756.32648,0,21
+230190,14850.8964,22390.70043,0,21
+230191,14962.26473,22835.48419,0,21
+230192,14975.84193,23425.66553,0,21
+230193,15184.44333,23781.72453,0,21
+230194,15211.44475,24572.28756,0,21
+230195,15405.88484,24784.98687,0,21
+230196,15335.62039,25210.95895,0,21
+230197,15639.99345,25832.18097,0,21
+230198,15653.35819,26380.40026,0,21
+230199,15666.6936,26454.00064,0,21
+230200,15886.51153,27368.88268,0,21
+230201,15886.5097,27482.45685,0,21
+230202,16105.61701,28015.10517,0,21
+230203,16105.61511,28556.35557,0,21
+230204,16228.06961,28838.75104,0,21
+230205,16337.15537,31167.86987,0,21
+230206,16350.26405,31504.35541,0,21
+230207,16554.80613,31926.35925,0,21
+230208,16567.8602,32859.69627,0,21
+230209,16784.77059,33385.35293,0,21
+230210,16784.76849,34057.14039,0,21
+230211,16838.67655,34939.95445,0,21
+230212,17074.15387,35639.84341,0,21
+230213,17254.29557,36073.60845,0,21
+230214,17109.41201,36731.14662,0,21
+230215,17299.14664,37638.23352,0,21
+230216,17532.72053,38025.57392,0,21
+230217,17347.00937,38733.92634,0,21
+230218,17752.57982,39496.14378,0,21
+230219,17580.28129,39959.28955,0,21
+230220,17988.00132,40680.13286,0,21
+230221,0,0,0,21
+230222,0,0,0,21
+230223,0,0,0,21
+230224,0,0,0,21
+230225,0,368310.8494,937367.2061,21
+230226,336762.5124,0,0,21
+230227,0,0,0,21
+230228,0,0,0,21
+230229,0,0,0,21
+230230,0,0,0,21
+230231,0,0,0,21
+230232,0,0,0,21
+230233,0,0,0,21
+230234,0,0,0,21
+230235,0,0,0,21
+230236,0,0,0,21
+230237,0,0,0,21
+230238,0,0,0,21
+230239,0,0,0,21
+230240,0,0,0,21
+230241,0,0,0,21
+230242,0,0,0,21
+230243,0,0,0,21
+230244,0,0,0,21
+230245,0,0,0,21
+230246,0,0,0,21
+230247,0,0,0,21
+230248,0,0,0,21
+230249,0,0,0,21
+230250,0,0,0,21
+230251,0,0,0,21
+230252,0,0,0,21
+230253,0,0,0,21
+230254,0,0,0,21
+230255,0,0,0,21
+230256,0,0,0,21
+230257,0,0,0,21
+230258,0,0,0,21
+230259,0,368992.1657,910963.93,21
+230260,0,0,0,21
+230261,337659.3421,0,0,21
+230262,0,0,0,21
+230263,0,0,0,21
+230264,0,0,0,21
+230265,0,0,0,21
+230266,0,0,0,21
+230267,0,0,0,21
+230268,0,0,0,21
+230269,0,0,0,21
+230270,0,0,0,21
+230271,0,0,0,21
+230272,0,0,0,21
+230273,0,0,0,21
+230274,0,0,0,21
+230275,0,0,0,21
+230276,0,0,0,21
+230277,0,0,0,21
+230278,0,0,0,21
+230279,0,0,0,21
+230280,0,0,0,15.6
+230281,0,0,0,15.6
+230282,0,0,0,15.6
+230283,0,0,0,15.6
+230284,0,0,0,15.6
+230285,0,0,0,15.6
+230286,0,0,0,15.6
+230287,0,0,0,15.6
+230288,0,0,0,15.6
+230289,0,0,0,15.6
+230290,0,0,0,15.6
+230291,0,0,0,15.6
+230292,0,0,0,15.6
+230293,0,369179.2876,886493.1275,15.6
+230294,0,0,0,15.6
+230295,0,0,0,15.6
+230296,335737.8117,0,0,15.6
+230297,0,0,0,15.6
+230298,0,0,0,15.6
+230299,0,0,0,15.6
+230300,0,0,0,15.6
+230301,0,0,0,15.6
+230302,0,0,0,15.6
+230303,0,0,0,15.6
+230304,0,0,0,15.6
+230305,0,0,0,15.6
+230306,0,0,0,15.6
+230307,0,0,0,15.6
+230308,0,0,0,15.6
+230309,0,0,0,15.6
+230310,0,0,0,15.6
+230311,0,0,0,15.6
+230312,0,0,0,15.6
+230313,0,0,0,15.6
+230314,0,0,0,15.6
+230315,0,0,0,15.6
+230316,0,0,0,15.6
+230317,0,0,0,15.6
+230318,0,0,0,15.6
+230319,0,0,0,15.6
+230320,0,0,0,15.6
+230321,0,0,0,15.6
+230322,0,0,0,15.6
+230323,0,0,0,15.6
+230324,0,0,0,15.6
+230325,0,0,0,15.6
+230326,0,0,0,15.6
+230327,0,369237.2636,876314.2219,15.6
+230328,0,0,0,15.6
+230329,0,0,0,15.6
+230330,0,0,0,15.6
+230331,340220.2183,0,0,15.6
+230332,0,0,0,15.6
+230333,0,0,0,15.6
+230334,0,0,0,15.6
+230335,0,0,0,15.6
+230336,0,0,0,15.6
+230337,0,0,0,15.6
+230338,0,0,0,15.6
+230339,0,0,0,15.6
+230340,0,0,0,15.6
+230341,0,0,0,15.6
+230342,0,0,0,15.6
+230343,0,0,0,15.6
+230344,0,0,0,15.6
+230345,0,0,0,15.6
+230346,0,0,0,15.6
+230347,0,0,0,15.6
+230348,0,0,0,15.6
+230349,0,0,0,15.6
+230350,0,0,0,15.6
+230351,0,0,0,15.6
+230352,0,0,0,15.6
+230353,0,0,0,15.6
+230354,0,0,0,15.6
+230355,0,0,0,15.6
+230356,0,0,0,15.6
+230357,0,0,0,15.6
+230358,0,0,0,15.6
+230359,0,0,0,15.6
+230360,0,0,0,15.6
+230361,0,369254.8978,858887.6225,15.6
+230362,0,0,0,15.6
+230363,0,0,0,15.6
+230364,0,0,0,15.6
+230365,0,0,0,15.6
+230366,340198.418,0,0,15.6
+230367,0,0,0,15.6
+230368,0,0,0,15.6
+230369,0,0,0,15.6
+230370,0,0,0,15.6
+230371,0,0,0,15.6
+230372,0,0,0,15.6
+230373,0,0,0,15.6
+230374,0,0,0,15.6
+230375,0,0,0,15.6
+230376,0,0,0,15.6
+230377,0,0,0,15.6
+230378,0,0,0,15.6
+230379,0,0,0,15.6
+230380,0,0,0,15.6
+230381,0,0,0,15.6
+230382,0,0,0,15.6
+230383,0,0,0,15.6
+230384,0,0,0,15.6
+230385,0,0,0,15.6
+230386,0,0,0,15.6
+230387,0,0,0,15.6
+230388,0,0,0,15.6
+230389,0,0,0,15.6
+230390,0,0,0,15.6
+230391,0,0,0,15.6
+230392,0,0,0,15.6
+230393,0,0,0,15.6
+230394,0,0,0,15.6
+230395,0,0,843424.2917,15.6
+230396,0,369252.6725,0,15.6
+230397,0,0,0,15.6
+230398,0,0,0,15.6
+230399,0,0,0,15.6
+230400,0,0,0,15.6
+230401,340171.203,0,0,15.6
+230402,0,0,0,15.6
+230403,0,0,0,15.6
+230404,0,0,0,15.6
+230405,0,0,0,15.6
+230406,0,0,0,15.6
+230407,0,0,0,15.6
+230408,0,0,0,15.6
+230409,0,0,0,15.6
+230410,0,0,0,15.6
+230411,0,0,0,15.6
+230412,0,0,0,15.6
+230413,0,0,0,15.6
+230414,0,0,0,15.6
+230415,0,0,0,15.6
+230416,0,0,0,15.6
+230417,0,0,0,15.6
+230418,0,0,0,15.6
+230419,0,0,0,15.6
+230420,0,0,0,15.6
+230421,0,0,0,15.6
+230422,0,0,0,15.6
+230423,0,0,0,15.6
+230424,0,0,0,15.6
+230425,0,0,0,15.6
+230426,0,0,0,15.6
+230427,0,0,0,15.6
+230428,0,0,0,15.6
+230429,0,0,828963.0872,15.6
+230430,0,0,0,15.6
+230431,0,369251.5748,0,15.6
+230432,0,0,0,15.6
+230433,0,0,0,15.6
+230434,0,0,0,15.6
+230435,0,0,0,15.6
+230436,340147.1526,0,0,15.6
+230437,0,0,0,15.6
+230438,0,0,0,15.6
+230439,0,0,0,15.6
+230440,0,0,0,15.6
+230441,0,0,0,15.6
+230442,0,0,0,15.6
+230443,0,0,0,15.6
+230444,0,0,0,15.6
+230445,0,0,0,15.6
+230446,0,0,0,15.6
+230447,0,0,0,15.6
+230448,0,0,0,15.6
+230449,0,0,0,15.6
+230450,0,0,0,15.6
+230451,0,0,0,15.6
+230452,0,0,0,15.6
+230453,0,0,0,15.6
+230454,0,0,0,15.6
+230455,0,0,0,15.6
+230456,0,0,0,15.6
+230457,0,0,0,15.6
+230458,0,0,0,15.6
+230459,0,0,0,15.6
+230460,0,0,0,15.6
+230461,0,0,0,15.6
+230462,0,0,0,15.6
+230463,0,0,815765.5866,15.6
+230464,0,0,0,15.6
+230465,0,0,0,15.6
+230466,0,369245.6194,0,15.6
+230467,0,0,0,15.6
+230468,0,0,0,15.6
+230469,0,0,0,15.6
+230470,0,0,0,15.6
+230471,340136.1174,0,0,15.6
+230472,0,0,0,15.6
+230473,0,0,0,15.6
+230474,0,0,0,15.6
+230475,0,0,0,15.6
+230476,0,0,0,15.6
+230477,0,0,0,15.6
+230478,0,0,0,15.6
+230479,0,0,0,15.6
+230480,0,0,0,15.6
+230481,0,0,0,15.6
+230482,0,0,0,15.6
+230483,0,0,0,15.6
+230484,0,0,0,15.6
+230485,0,0,0,15.6
+230486,0,0,0,15.6
+230487,0,0,0,15.6
+230488,0,0,0,15.6
+230489,0,0,0,15.6
+230490,0,0,0,15.6
+230491,0,0,0,15.6
+230492,0,0,0,15.6
+230493,0,0,0,15.6
+230494,0,0,0,15.6
+230495,0,0,0,15.6
+230496,0,0,0,15.6
+230497,0,0,803719.3021,15.6
+230498,0,0,0,15.6
+230499,0,0,0,15.6
+230500,0,0,0,15.6
+230501,0,369214.7369,0,15.6
+230502,0,0,0,15.6
+230503,0,0,0,15.6
+230504,0,0,0,15.6
+230505,0,0,0,15.6
+230506,340156.5685,0,0,15.6
+230507,0,0,0,15.6
+230508,0,0,0,15.6
+230509,0,0,0,15.6
+230510,0,0,0,15.6
+230511,0,0,0,15.6
+230512,0,0,0,15.6
+230513,0,0,0,15.6
+230514,0,0,0,15.6
+230515,0,0,0,15.6
+230516,0,0,0,15.6
+230517,0,0,0,15.6
+230518,0,0,0,15.6
+230519,0,0,0,15.6
+230520,0,0,0,15.6
+230521,0,0,0,15.6
+230522,0,0,0,15.6
+230523,0,0,0,15.6
+230524,0,0,0,15.6
+230525,0,0,0,15.6
+230526,0,0,0,15.6
+230527,0,0,0,15.6
+230528,0,0,0,15.6
+230529,0,0,0,15.6
+230530,0,0,0,15.6
+230531,0,0,792726.3073,15.6
+230532,0,0,0,15.6
+230533,0,0,0,15.6
+230534,0,0,0,15.6
+230535,0,0,0,15.6
+230536,0,369213.3922,0,15.6
+230537,0,0,0,15.6
+230538,0,0,0,15.6
+230539,0,0,0,15.6
+230540,0,0,0,15.6
+230541,340153.7865,0,0,15.6
+230542,0,0,0,15.6
+230543,0,0,0,15.6
+230544,0,0,0,15.6
+230545,0,0,0,15.6
+230546,0,0,0,15.6
+230547,0,0,0,15.6
+230548,0,0,0,15.6
+230549,0,0,0,15.6
+230550,0,0,0,15.6
+230551,0,0,0,15.6
+230552,0,0,0,15.6
+230553,0,0,0,15.6
+230554,0,0,0,15.6
+230555,0,0,0,15.6
+230556,0,0,0,15.6
+230557,0,0,0,15.6
+230558,0,0,0,15.6
+230559,0,0,0,15.6
+230560,0,0,0,15.6
+230561,0,0,0,15.6
+230562,0,0,0,15.6
+230563,0,0,0,15.6
+230564,0,0,0,15.6
+230565,0,0,782699.7957,15.6
+230566,0,0,0,15.6
+230567,0,0,0,15.6
+230568,0,0,0,15.6
+230569,0,0,0,15.6
+230570,0,0,0,15.6
+230571,0,369246.2848,0,15.6
+230572,0,0,0,15.6
+230573,0,0,0,15.6
+230574,0,0,0,15.6
+230575,0,0,0,15.6
+230576,340135.3293,0,0,15.6
+230577,0,0,0,15.6
+230578,0,0,0,15.6
+230579,0,0,0,15.6
+230580,0,0,0,15.6
+230581,0,0,0,15.6
+230582,0,0,0,15.6
+230583,0,0,0,15.6
+230584,0,0,0,15.6
+230585,0,0,0,15.6
+230586,0,0,0,15.6
+230587,0,0,0,15.6
+230588,0,0,0,15.6
+230589,0,0,0,15.6
+230590,0,0,0,15.6
+230591,0,0,0,15.6
+230592,0,0,0,15.6
+230593,0,0,0,15.6
+230594,0,0,0,15.6
+230595,0,0,0,15.6
+230596,0,0,0,15.6
+230597,0,0,0,15.6
+230598,0,0,0,15.6
+230599,0,0,773545.5066,15.6
+230600,0,0,0,15.6
+230601,0,0,0,15.6
+230602,0,0,0,15.6
+230603,0,0,0,15.6
+230604,0,0,0,15.6
+230605,0,0,0,15.6
+230606,0,369258.2175,0,15.6
+230607,0,0,0,15.6
+230608,0,0,0,15.6
+230609,0,0,0,15.6
+230610,340091.0005,0,0,15.6
+230611,0,0,0,15.6
+230612,0,0,0,15.6
+230613,0,0,0,15.6
+230614,0,0,0,15.6
+230615,0,0,0,15.6
+230616,0,0,0,15.6
+230617,0,0,0,15.6
+230618,0,0,0,15.6
+230619,0,0,0,15.6
+230620,0,0,0,15.6
+230621,0,0,0,15.6
+230622,0,0,0,15.6
+230623,0,0,0,15.6
+230624,0,0,0,15.6
+230625,0,0,0,15.6
+230626,0,0,0,15.6
+230627,0,0,0,15.6
+230628,0,0,0,15.6
+230629,0,0,0,15.6
+230630,0,0,0,15.6
+230631,0,0,0,15.6
+230632,0,0,0,15.6
+230633,0,0,765188.3867,15.6
+230634,0,0,0,15.6
+230635,0,0,0,15.6
+230636,0,0,0,15.6
+230637,0,0,0,15.6
+230638,0,0,0,15.6
+230639,0,0,0,15.6
+230640,0,369262.3018,0,17.8
+230641,3195.75623,0,0,17.8
+230642,0,0,0,17.8
+230643,563.5733123,0,0,17.8
+230644,341301.8578,0,0,17.8
+230645,877.3531211,0,0,17.8
+230646,949.0636617,0,0,17.8
+230647,991.6026322,0,0,17.8
+230648,977.4625097,0,0,17.8
+230649,1019.76612,0,0,17.8
+230650,1005.703621,0,0,17.8
+230651,1033.790301,0,0,17.8
+230652,1047.776674,0,0,17.8
+230653,1047.776638,0,0,17.8
+230654,1075.637378,0,0,17.8
+230655,1075.637339,0,0,17.8
+230656,1103.351059,0,0,17.8
+230657,1103.351018,0,0,17.8
+230658,1103.350977,0,0,17.8
+230659,1144.651825,0,0,17.8
+230660,1130.920351,0,0,17.8
+230661,0,0,0,17.8
+230662,0,0,0,17.8
+230663,0,0,0,17.8
+230664,0,0,0,17.8
+230665,0,0,0,17.8
+230666,0,0,0,17.8
+230667,0,0,757573.1472,17.8
+230668,0,0,0,17.8
+230669,0,0,0,17.8
+230670,0,0,0,17.8
+230671,0,0,0,17.8
+230672,0,0,0,17.8
+230673,0,0,0,17.8
+230674,0,369196.9512,0,17.8
+230675,0,0,0,17.8
+230676,0,0,0,17.8
+230677,0,0,0,17.8
+230678,340048.7615,0,0,17.8
+230679,0,0,0,17.8
+230680,0,0,0,17.8
+230681,0,0,0,17.8
+230682,40168.8427,0,0,17.8
+230683,900.2259023,0,0,17.8
+230684,14757.67443,0,0,17.8
+230685,18776.70187,0,0,17.8
+230686,14575.34237,0,0,17.8
+230687,15430.52952,0,0,17.8
+230688,15322.87477,0,0,17.8
+230689,15340.78751,0,0,17.8
+230690,15218.41444,0,0,17.8
+230691,15203.73148,0,0,17.8
+230692,15108.37744,0,0,17.8
+230693,15063.46583,0,0,17.8
+230694,15009.97543,0,0,17.8
+230695,14921.52192,0,0,17.8
+230696,14851.76375,0,0,17.8
+230697,14834.5055,0,0,17.8
+230698,14701.59668,0,0,17.8
+230699,14697.8775,0,0,17.8
+230700,14596.23863,7039.456319,0,20
+230701,660521.3273,589953.7342,1121115.685,20
+230702,74979.23254,0,0,20
+230703,141301.8556,8810.220075,0,20
+230704,122146.9619,9799.755193,0,20
+230705,121138.3751,142834.2624,23257.09727,20
+230706,121077.9507,62560.26462,42096.52118,20
+230707,120369.2927,76418.73011,24630.17234,20
+230708,117882.9473,79305.36641,29783.10676,20
+230709,116795.4139,78705.17823,35028.74245,20
+230710,115303.5157,78980.40511,33807.12326,20
+230711,114049.936,78971.83499,34216.07452,20
+230712,112043.0175,78681.78611,34924.72832,20
+230713,111141.1065,78955.76897,35343.66387,20
+230714,109609.1203,78658.2961,35825.74931,20
+230715,108446.9858,78637.43604,36055.37512,20
+230716,107447.9647,78928.38669,36514.13229,20
+230717,106054.9129,78374.87941,36600.1487,20
+230718,105041.5908,78601.76194,37891.49887,20
+230719,103573.2276,78387.72949,39261.41323,20
+230720,102680.7877,78849.59328,39493.13487,20
+230721,101416.3306,78076.47997,39847.20153,20
+230722,100268.5336,78593.86603,40806.35052,20
+230723,98822.6622,78306.99689,41211.17825,20
+230724,97986.22158,78569.48092,41882.98794,20
+230725,96472.50639,77745.16741,42509.14349,20
+230726,95429.20909,78577.67828,42868.34346,20
+230727,94621.97154,78266.46305,43577.03617,20
+230728,93286.4956,78016.5608,44112.58642,20
+230729,92155.63862,77987.05667,44659.33443,20
+230730,90943.66736,78198.32815,45198.82431,20
+230731,89493.31534,78016.54677,45833.56234,20
+230732,88952.07804,77954.67856,44906.42213,20
+230733,87201.95762,77652.53551,43412.88088,20
+230734,86313.45346,78258.44113,42330.30371,20
+230735,85840.42958,77333.44195,42313.26526,20
+230736,86057.46827,78016.52409,41936.1661,20
+230737,85036.1363,77454.49029,41560.55645,20
+230738,85296.30227,77660.66291,41727.4674,20
+230739,84697.14877,77351.33983,42201.83239,20
+230740,84493.48708,77644.39962,41873.73547,20
+230741,84195.36502,77335.04731,41810.79641,20
+230742,83866.21067,77315.47155,41553.64126,20
+230743,83451.45658,77307.24485,41312.92788,20
+230744,83425.25943,77108.78189,41356.88973,20
+230745,82936.55774,76977.55105,40927.49533,20
+230746,82703.37841,77282.86791,40948.2556,20
+230747,82285.38583,76770.86028,39375.81763,20
+230748,81855.13491,76953.77749,38988.18752,20
+230749,81759.50891,76738.13402,38755.39202,20
+230750,81328.87468,76941.57184,38273.87096,20
+230751,81077.63353,76720.1594,38166.21003,20
+230752,80906.77832,76412.40582,37398.82528,20
+230753,80775.26613,76677.70051,37521.28539,20
+230754,80422.60107,76420.43071,36996.92064,20
+230755,80561.6417,76355.18943,36536.66757,20
+230756,80032.16395,76359.98008,36073.2173,20
+230757,80340.73154,76044.09058,35991.75923,20
+230758,79885.17361,76343.56712,35304.25355,20
+230759,79631.2317,76131.52662,35181.49935,20
+230760,79350.82314,75694.48882,35072.13299,21
+230761,82168.26967,76302.64618,34650.53653,21
+230762,82207.01393,75447.87593,34521.91799,21
+230763,82132.89052,75776.77544,34261.17768,21
+230764,82048.20889,75423.30946,33982.10653,21
+230765,81742.37998,75358.85336,33910.8815,21
+230766,81830.66931,75139.2905,33253.7407,21
+230767,81338.42118,74499.06428,33459.79345,21
+230768,81276.3941,74112.55327,33098.5911,21
+230769,80812.24108,74017.26729,32558.92829,21
+230770,81004.42368,73806.97328,32724.2332,21
+230771,80522.68382,73613.64116,32357.65155,21
+230772,80346.17533,73498.21239,31587.87247,21
+230773,80163.42378,73349.69909,32092.52488,21
+230774,79746.15862,72882.75073,31170.76441,21
+230775,79764.89272,73231.59034,31134.5317,21
+230776,79374.81018,72673.66154,30660.45893,21
+230777,79354.39062,72578.6789,30563.81314,21
+230778,79681.12436,72656.86132,29818.18844,21
+230779,79659.83712,72266.10831,29892.30902,21
+230780,79266.60937,72039.29941,29138.29387,21
+230781,79319.55143,71935.85647,29025.26278,21
+230782,79078.5773,71960.78944,28621.21892,21
+230783,79216.19396,71672.20752,28148.31254,21
+230784,78955.11512,71105.815,27798.96477,21
+230785,78765.49332,71593.55589,27508.82889,21
+230786,78542.99167,71088.79617,26960.69345,21
+230787,78385.13018,70990.04248,26663.89891,21
+230788,78436.70939,70719.85575,26194.10315,21
+230789,77973.06589,70676.48761,25817.66906,21
+230790,78044.7026,70429.8841,25958.53753,21
+230791,77419.17889,70628.59158,25854.50969,21
+230792,77606.78853,69514.62982,25727.90724,21
+230793,77364.41816,70367.97459,25633.91411,21
+230794,76947.47709,69684.12025,25623.90195,21
+230795,76805.06087,69435.30299,25566.82808,21
+230796,76827.75499,69288.81179,25325.62765,21
+230797,76110.48655,68997.45878,25268.49117,21
+230798,76380.73492,69075.52544,25210.40125,21
+230799,75676.97717,68601.2634,25106.903,21
+230800,75575.13052,69105.21582,24988.95284,21
+230801,75426.47881,69355.70212,24991.09601,21
+230802,74532.45883,68738.40362,24163.57969,21
+230803,74149.19556,68808.72298,24272.75094,21
+230804,73941.31944,68665.07043,23922.18926,21
+230805,73593.71913,68235.2352,23946.65529,21
+230806,73067.32289,68603.94929,23491.52614,21
+230807,72916.75658,67861.2346,23920.63137,21
+230808,72524.6584,68036.42235,23366.56463,21
+230809,72373.73683,67781.18744,23468.63975,21
+230810,71836.34835,67486.19898,23377.38295,21
+230811,71427.07782,67649.34319,23260.73168,21
+230812,71350.63864,67048.75342,23373.03278,21
+230813,70910.26432,67192.67389,22913.13422,21
+230814,70964.36033,66829.03428,23051.70744,21
+230815,70830.51565,66773.81911,22793.42209,21
+230816,70079.56629,66547.27971,22812.66938,21
+230817,70188.7045,66434.41543,22696.08505,21
+230818,69558.15104,65947.7196,22438.62485,21
+230819,69371.288,66336.11206,22597.92163,21
+230820,68945.84507,65620.82219,22222.09675,21
+230821,53794.91717,56571.54781,14702.46362,21
+230822,52254.79735,55602.64754,14097.97516,21
+230823,51423.31163,55254.42428,14026.76657,21
+230824,51174.94533,54639.53642,13595.78972,21
+230825,50168.57256,54618.11896,13561.00724,21
+230826,49505.9702,53910.96516,13258.92415,21
+230827,49037.15171,53946.96962,13079.77066,21
+230828,48608.74615,53466.39917,12919.63362,21
+230829,47869.11415,53084.57046,12738.30958,21
+230830,47134.68813,52904.96579,12437.04219,21
+230831,46726.87009,52637.73208,12409.21292,21
+230832,46453.5832,51930.98833,12089.82944,21
+230833,45244.67421,51848.34557,12042.99967,21
+230834,45164.71148,51230.73208,11744.88465,21
+230835,44572.89758,51335.92152,11457.35444,21
+230836,43897.45347,50548.27485,11531.39723,21
+230837,43448.75704,50653.3322,11243.07901,21
+230838,42908.03097,49903.87731,11022.71256,21
+230839,42167.41842,50189.96703,10761.09795,21
+230840,42199.40651,49432.62753,10698.536,21
+230841,41313.1172,49544.67954,10639.67176,21
+230842,41237.51128,48642.20331,10102.40826,21
+230843,40670.11774,48970.9957,10261.52343,21
+230844,40611.79702,48457.60266,9897.109449,21
+230845,40137.26406,47868.99496,9784.676053,21
+230846,39641.60258,48192.40143,9502.273847,21
+230847,39682.06344,47364.17701,9441.278315,21
+230848,39015.89037,47364.06595,9253.617914,21
+230849,38790.10293,46841.91165,8958.874597,21
+230850,38540.94254,46898.72176,8909.382112,21
+230851,38197.832,46406.50771,8583.935806,21
+230852,37735.22198,46410.26357,8534.020127,21
+230853,37511.81204,45994.29861,8248.038262,21
+230854,37239.38453,45650.61328,8170.294964,21
+230855,36777.20709,45712.27907,7982.506143,21
+230856,36688.45673,45357.38467,7818.32652,21
+230857,35901.56467,45074.49983,7629.566722,21
+230858,36040.07864,44889.58634,7450.453376,21
+230859,35640.4739,44683.67036,7260.503343,21
+230860,35009.45163,44385.70634,7053.943654,21
+230861,35106.94082,44035.5705,7042.630709,21
+230862,34669.69536,43814.50766,6697.525407,21
+230863,34164.28812,43371.39881,6669.313154,21
+230864,34135.2297,43426.13673,6307.954074,21
+230865,33513.78195,42851.40929,6281.396104,21
+230866,33491.85221,42538.5744,6099.513981,21
+230867,32878.72768,42641.47876,5875.935293,21
+230868,32821.63664,41897.44313,5748.865546,21
+230869,32339.0588,41708.13906,5683.611088,21
+230870,32182.86336,41344.88902,5383.426517,21
+230871,31684.24081,41204.69652,5346.111223,21
+230872,31629.07913,40951.61052,5031.322447,21
+230873,31100.35199,40326.76623,5121.615566,21
+230874,30897.95068,40381.97604,4689.435147,21
+230875,30459.24496,39981.22879,4781.906247,21
+230876,30218.54972,39669.59934,4463.635231,21
+230877,29959.1614,39174.39054,4423.875045,21
+230878,29591.02511,39195.69545,4103.148343,21
+230879,29299.61835,37952.17312,4210.964327,21
+230880,28874.234,37631.74482,3767.147311,21
+230881,28854.37187,37514.7679,3889.033642,21
+230882,28393.60617,37445.97154,3508.866619,21
+230883,28170.32466,36842.14098,3387.519409,21
+230884,27737.96122,37215.62377,3291.146218,21
+230885,27729.43651,36408.77733,2990.171712,21
+230886,27109.8476,36805.8509,2934.338388,21
+230887,26787.0314,36386.74251,2600.228598,21
+230888,26788.56491,36145.16854,2559.424788,21
+230889,26090.89808,35959.51223,2361.240873,21
+230890,25980.3804,35724.46675,2019.591869,21
+230891,25501.50228,35816.67153,2135.215164,21
+230892,25285.52088,35273.5015,1773.68595,21
+230893,24869.36333,35295.72913,1730.307532,21
+230894,24484.29195,35061.74992,1383.686032,21
+230895,24227.14004,34820.81674,1493.293938,21
+230896,23774.0838,34728.49002,1278.93525,21
+230897,23510.22671,34487.14829,1293.832291,21
+230898,22930.1465,34296.58389,1249.193867,21
+230899,22869.39175,34130.4023,1234.288478,21
+230900,22281.41587,33855.05138,1219.359935,21
+230901,21920.87638,33916.96752,1204.408059,21
+230902,21642.92127,33505.08985,1174.408423,21
+230903,21220.07363,33338.4257,1144.315185,21
+230904,20847.31042,33267.8951,1114.126703,21
+230905,20805.56459,32809.52944,1099.00716,21
+230906,20501.4958,32845.49861,1068.672211,21
+230907,20470.55702,32556.81004,1038.237526,21
+230908,20395.84592,32542.2937,1022.991659,21
+230909,20131.72478,31915.86928,992.4033138,21
+230910,19877.67459,32132.6867,992.4210513,21
+230911,20004.0703,31779.49347,930.9100728,21
+230912,19750.81813,31539.34533,930.9256769,21
+230913,19920.32737,31329.96514,915.4918037,21
+230914,19622.69272,31004.16096,868.9922762,21
+230915,19365.0379,31051.13893,869.0058714,21
+230916,19547.22315,30574.91334,822.2477704,21
+230917,19116.65387,30476.39353,806.6107337,21
+230918,19140.21326,29989.846,790.9427699,21
+230919,18911.4901,29847.886,759.4912258,21
+230920,18889.64886,29570.92526,743.7454865,21
+230921,18620.72948,29221.44063,696.2366294,21
+230922,18553.26934,29098.91907,696.2467672,21
+230923,18509.19879,28507.637,664.4145035,21
+230924,18226.53682,28440.09966,648.4501712,21
+230925,18205.15657,28030.85117,600.3263246,21
+230926,18005.72918,27659.81342,600.3327958,21
+230927,17875.60853,27528.15806,551.8707107,21
+230928,17807.97251,26883.6996,551.8762952,21
+230929,17543.9197,26712.07129,519.371115,21
+230930,17706.48448,26172.69647,486.6983307,21
+230931,17223.46206,25944.39076,470.2984461,21
+230932,17396.68481,25447.12759,437.3575989,21
+230933,16912.85027,25226.46145,420.8177383,21
+230934,17183.39383,24532.49354,387.5866529,21
+230935,16797.84615,24285.43824,370.8922786,21
+230936,16761.42989,23820.2714,337.3384805,21
+230937,16582.52436,23225.8014,320.4756097,21
+230938,16460.38976,23087.38976,286.5617526,21
+230939,16389.09926,22180.05137,269.5066594,21
+230940,16307.36723,22125.3891,235.1801991,21
+230941,15863.69144,20944.28583,217.9016566,21
+230942,15990.26,20662.26528,183.0865396,21
+230943,15732.05833,19983.3913,165.5375558,21
+230944,15684.08898,19522.5823,147.883171,21
+230945,15425.37451,18621.60598,139.0134485,21
+230946,15487.79267,18434.56987,112.2134951,21
+230947,15303.14592,17576.15247,85.0826767,21
+230948,15091.77516,17046.64585,75.9515767,21
+230949,15128.66344,16428.17968,57.53086055,21
+230950,14945.32056,15630.11333,29.38166544,21
+230951,14728.90866,15351.88196,19.79958701,21
+230952,14869.32498,14188.45831,0,21
+230953,14392.85583,13983.70378,0,21
+230954,14580.01574,12917.17552,0,21
+230955,14419.19237,12478.85568,0,21
+230956,14292.57233,12201.92447,0,21
+230957,14141.39718,11952.72711,0,21
+230958,14075.88499,11804.77302,0,21
+230959,13931.03206,11649.26969,0,21
+230960,13895.82797,11698.51967,0,21
+230961,13644.2989,11349.34706,0,21
+230962,13821.51148,11460.10387,0,21
+230963,13379.24585,11334.12072,0,21
+230964,13557.31073,11318.8635,0,21
+230965,13417.71893,11177.33804,0,21
+230966,13291.59044,11318.86067,0,21
+230967,13164.13316,11050.84341,0,21
+230968,13113.547,11035.51997,0,21
+230969,12998.57423,11035.51826,0,21
+230970,12973.09661,11020.16129,0,21
+230971,12908.53086,10766.38384,0,21
+230972,12690.76113,11020.14298,0,21
+230973,12652.40429,10750.99061,0,21
+230974,12522.66575,10878.00063,0,21
+230975,12508.84989,10750.98752,0,21
+230976,12328.23074,10735.56266,0,21
+230977,12353.25198,10735.56108,0,21
+230978,12189.30026,10735.55997,0,21
+230979,12066.31761,10449.79209,0,21
+230980,12038.32432,10735.55738,0,21
+230981,12038.32213,10577.32972,0,21
+230982,11806.60771,10592.82116,0,21
+230983,11793.9735,10449.78532,0,21
+230984,11781.3174,10561.79779,0,21
+230985,11677.78038,10449.78305,0,21
+230986,11548.68032,10434.25366,0,21
+230987,11548.67818,10418.6886,0,21
+230988,11535.95436,10449.7789,0,21
+230989,11315.19687,10275.2758,0,21
+230990,11289.63662,10290.87452,0,21
+230991,11302.42535,10418.68357,0,21
+230992,11172.52708,10147.19019,0,21
+230993,11055.20338,10131.57862,0,21
+230994,11055.20127,9858.893368,0,21
+230995,11029.45366,9987.520723,0,21
+230996,10819.89911,9843.176189,0,21
+230997,10794.05643,9858.884792,0,21
+230998,10794.05428,9827.426321,0,21
+230999,10676.02386,9714.257533,0,21
+231000,10557.77008,9698.508963,0,21
+231001,10768.01885,9827.29964,0,21
+231002,10426.26171,9843.171512,0,21
+231003,10544.76395,9682.725326,0,21
+231004,10294.4536,9843.1724,0,21
+231005,10294.45295,9682.724726,0,21
+231006,10281.34771,9811.639114,0,21
+231007,10056.25378,9569.31108,0,21
+231008,10043.0981,9795.815135,0,21
+231009,10029.91638,9682.724057,0,21
+231010,9803.913664,9682.72375,0,21
+231011,9897.182264,9666.899635,0,21
+231012,9670.705643,9537.701503,0,21
+231013,9657.418962,9795.813468,0,21
+231014,9550.490256,9537.701372,0,21
+231015,9523.837358,9651.03669,0,21
+231016,9295.964603,9537.700868,0,21
+231017,9282.594838,9651.035999,0,21
+231018,9040.324576,9521.837565,0,21
+231019,9040.318996,9651.035246,0,21
+231020,9026.842759,9521.837404,0,21
+231021,8783.521951,9505.935163,0,21
+231022,8797.054601,9651.034881,0,21
+231023,8647.884424,9505.934423,0,21
+231024,8647.883845,9505.934075,0,21
+231025,8525.547989,9360.541344,0,21
+231026,8402.948798,9214.758714,0,21
+231027,8280.083083,9214.750934,0,21
+231028,8375.558943,9214.750454,0,21
+231029,8143.207742,9198.726611,0,21
+231030,8129.436843,9198.726055,0,21
+231031,8005.968856,9068.657497,0,21
+231032,8005.968591,9068.657219,0,21
+231033,7758.19963,8906.12022,0,21
+231034,7978.270578,9052.591262,0,21
+231035,7633.890254,8775.45346,0,21
+231036,7730.350482,8889.969255,0,21
+231037,7495.312424,8628.33314,0,21
+231038,7702.392833,8612.140349,0,21
+231039,7259.214735,8743.10929,0,21
+231040,7453.230542,8349.271619,0,21
+231041,7342.308835,8726.844775,0,21
+231042,7217.031992,8612.130509,0,21
+231043,7091.456697,8595.899652,0,21
+231044,7188.738005,8464.621197,0,21
+231045,6951.379147,8316.750454,0,21
+231046,6951.378791,8579.616779,0,21
+231047,6810.887091,8036.29218,0,21
+231048,6810.886747,8432.012089,0,21
+231049,6669.972865,8019.91918,0,21
+231050,6684.318148,8152.144495,0,21
+231051,6528.62837,8003.499975,0,21
+231052,6543.049812,7870.948918,0,21
+231053,6401.345204,7854.48259,0,21
+231054,6401.344891,7837.968124,0,21
+231055,6145.793385,7721.601507,0,21
+231056,6273.734743,7555.311304,0,21
+231057,6116.58935,7555.310533,0,21
+231058,6131.211489,7405.145014,0,21
+231059,5874.226596,7405.14416,0,21
+231060,5988.226183,7388.479883,0,21
+231061,9492.458526,10833.35108,0,21
+231062,9598.959645,10975.33637,0,21
+231063,9732.947014,11101.55135,0,21
+231064,9691.355041,10833.0439,0,21
+231065,9705.250595,10959.53015,0,21
+231066,9705.250419,10817.21629,0,21
+231067,9571.13517,10817.21443,0,21
+231068,9705.250046,10817.21272,0,21
+231069,9663.465649,10674.60115,0,21
+231070,9571.134604,10658.6975,0,21
+231071,9663.465253,10547.58877,0,21
+231072,9436.678989,10515.74294,0,21
+231073,9649.471368,10515.74079,0,21
+231074,9543.1798,10260.9297,0,21
+231075,9422.651608,10483.73511,0,21
+231076,9621.383458,10117.13777,0,21
+231077,9422.651217,10228.9217,0,21
+231078,9394.495927,10228.92054,0,21
+231079,9621.382847,9940.860571,0,21
+231080,9273.653499,9956.387989,0,21
+231081,9500.99652,9941.044446,0,21
+231082,9366.202019,9796.178732,0,21
+231083,9380.365873,9780.096018,0,21
+231084,9352.002241,9667.633718,0,21
+231085,9259.488557,9635.212626,0,21
+231086,9352.001884,9522.536672,0,21
+231087,9124.126927,9360.824587,0,21
+231088,9337.766305,9490.019513,0,21
+231089,9109.855078,9360.823238,0,21
+231090,9323.494446,9068.871151,0,21
+231091,8988.404071,9344.517455,0,21
+231092,9095.546314,9068.895271,0,21
+231093,9081.20058,9052.477318,0,21
+231094,8959.674664,8938.828762,0,21
+231095,8852.314307,9036.011365,0,21
+231096,8945.252656,8775.552622,0,21
+231097,8823.431662,8905.912883,0,21
+231098,8608.049002,8759.0386,0,21
+231099,8808.93127,8905.882066,0,21
+231100,8579.008372,8922.372636,0,21
+231101,8579.008265,8889.399991,0,21
+231102,8456.400404,8889.400261,0,21
+231103,8549.804642,8775.551503,0,21
+231104,8225.041751,8742.476556,0,21
+231105,8412.405838,8742.474462,0,21
+231106,8210.377061,8742.474473,0,21
+231107,8180.918696,8611.812015,0,21
+231108,8072.204508,8595.199747,0,21
+231109,8057.409113,8595.199877,0,21
+231110,8057.409041,8447.571178,0,21
+231111,7809.54882,8595.201862,0,21
+231112,7933.620204,8430.856993,0,21
+231113,7794.615082,8447.572243,0,21
+231114,7575.524688,8299.582091,0,21
+231115,7779.633292,8430.857422,0,21
+231116,7545.51226,8167.996525,0,21
+231117,7435.601127,8282.816125,0,21
+231118,7545.512164,8151.229198,0,21
+231119,7515.299301,8265.994791,0,21
+231120,7310.361311,8151.229696,0,21
+231121,7515.302409,7985.633,0,21
+231122,7169.639272,8151.234358,0,21
+231123,7264.812211,8117.536043,0,21
+231124,7058.978045,7985.63324,0,21
+231125,7123.761395,8002.510795,0,21
+231126,7028.448869,7968.701015,0,21
+231127,6790.997074,7985.634552,0,21
+231128,6982.22475,7836.479074,0,21
+231129,6552.432037,7968.703349,0,21
+231130,6760.124164,7836.480436,0,21
+231131,6505.842255,7836.480688,0,21
+231132,6521.437217,7819.490425,0,21
+231133,6490.184946,7686.942606,0,21
+231134,6265.941416,7819.492034,0,21
+231135,6250.214641,7686.944277,0,21
+231136,5993.183535,7669.895033,0,21
+231137,5993.184573,7669.895436,0,21
+231138,5750.724933,7537.01855,0,21
+231139,5490.885289,7669.896299,0,21
+231140,5474.685168,7519.909752,0,21
+231141,4999.270134,7537.020635,0,21
+231142,5081.640368,7502.738749,0,21
+231143,4718.257013,7537.021321,0,21
+231144,4451.777869,7502.739616,0,21
+231145,4334.804002,7253.149946,0,21
+231146,4048.219487,7502.741237,0,21
+231147,3912.558045,7369.529997,0,21
+231148,3418.335149,7369.530463,0,21
+231149,3519.910808,7352.295367,0,21
+231150,3000.186028,7235.98082,0,21
+231151,3000.186325,7352.271007,0,21
+231152,2756.590155,7218.715121,0,21
+231153,2634.031753,7218.715098,0,21
+231154,2387.295113,7352.264892,0,21
+231155,2387.295303,7218.714953,0,21
+231156,2138.243507,7218.714803,0,21
+231157,2012.781261,7201.413869,0,21
+231158,1886.651687,7218.714468,0,21
+231159,1759.81719,7201.413636,0,21
+231160,1632.234815,7218.714449,0,21
+231161,1503.854963,7201.413596,0,21
+231162,1374.619684,7201.413847,0,21
+231163,1244.4603,7084.820758,0,21
+231164,1244.460352,7184.045667,0,21
+231165,981.0189805,7218.714687,0,21
+231166,1113.294111,7201.414654,0,21
+231167,847.5064677,7050.151084,0,21
+231168,847.5064917,7218.715893,0,21
+231169,712.5882648,7184.04517,0,21
+231170,712.5882819,7067.521106,0,21
+231171,712.588299,7201.413615,0,21
+231172,437.5092507,7050.153185,0,21
+231173,576.0344097,7067.520607,0,21
+231174,437.5092636,7032.715381,0,21
+231175,437.50927,6915.909614,0,21
+231176,296.4710961,6898.472403,0,21
+231177,367.3515972,6763.874796,0,21
+231178,296.4711021,6746.365938,0,21
+231179,151.8670962,6611.407653,0,21
+231180,151.867097,6611.407777,0,21
+231181,151.8670678,6440.837573,0,21
+231182,151.8670683,6458.499568,0,21
+231183,151.8670687,6160.206587,0,21
+231184,0,6287.404579,0,21
+231185,151.8670694,6014.864319,0,21
+231186,0,5997.043575,0,21
+231187,0,5997.04419,0,21
+231188,0,5705.021964,0,21
+231189,0,5705.023291,0,21
+231190,0,5687.026096,0,21
+231191,0,5549.360302,0,21
+231192,0,5393.185278,0,21
+231193,0,5393.186356,0,21
+231194,0,5374.997309,0,21
+231195,0,5097.541005,0,21
+231196,0,5236.487156,0,21
+231197,0,4930.669912,0,21
+231198,0,5079.248841,0,21
+231199,0,4781.607422,0,21
+231200,0,4921.454846,0,21
+231201,0,4763.087681,0,21
+231202,0,4622.773722,0,21
+231203,0,4763.087959,0,21
+231204,0,4463.335507,0,21
+231205,0,4463.335594,0,21
+231206,0,4463.335885,0,21
+231207,0,4444.554813,0,21
+231208,0,4142.569728,0,21
+231209,0,4000.250151,0,21
+231210,0,4123.463867,0,21
+231211,0,3847.882463,0,21
+231212,0,3961.888717,0,21
+231213,0,3694.923672,0,21
+231214,0,3799.571612,0,21
+231215,0,3521.980076,0,21
+231216,0,3512.215434,0,21
+231217,0,3492.503397,0,21
+231218,0,3347.95207,0,21
+231219,0,3182.793683,0,21
+231220,0,3182.793841,0,21
+231221,0,2870.186847,0,21
+231222,0,3006.283971,0,21
+231223,0,2702.176285,0,21
+231224,0,2691.440377,0,21
+231225,0,2383.802362,0,21
+231226,0,2383.802489,0,21
+231227,0,2234.400295,0,21
+231228,0,2084.162117,0,21
+231229,0,1933.037378,0,21
+231230,0,1627.885022,0,21
+231231,0,1627.885123,0,21
+231232,0,1473.708569,0,21
+231233,0,1161.6621,0,21
+231234,0,1003.521255,0,21
+231235,0,843.7206625,0,21
+231236,0,517.9363104,0,21
+231237,0,350.9233302,0,21
+231238,0,179.7178236,0,21
+231239,0,0,0,21
+231240,0,0,0,21
+231241,0,0,0,21
+231242,0,0,0,21
+231243,0,0,0,21
+231244,0,0,0,21
+231245,0,0,0,21
+231246,0,0,0,21
+231247,0,0,0,21
+231248,0,0,0,21
+231249,0,0,0,21
+231250,0,0,0,21
+231251,0,0,0,21
+231252,0,0,0,21
+231253,0,0,0,21
+231254,0,0,0,21
+231255,0,0,0,21
+231256,0,0,0,21
+231257,0,0,0,21
+231258,0,0,0,21
+231259,0,0,0,21
+231260,0,0,0,21
+231261,0,0,0,21
+231262,0,0,0,21
+231263,0,0,0,21
+231264,0,0,0,21
+231265,0,0,0,21
+231266,0,0,0,21
+231267,0,0,0,21
+231268,0,0,0,21
+231269,0,0,0,21
+231270,0,0,0,21
+231271,0,0,0,21
+231272,0,0,0,21
+231273,0,0,0,21
+231274,0,0,0,21
+231275,0,0,0,21
+231276,0,0,0,21
+231277,0,0,0,21
+231278,0,0,0,21
+231279,0,0,0,21
+231280,0,0,0,21
+231281,0,0,0,21
+231282,0,0,0,21
+231283,0,0,0,21
+231284,0,0,0,21
+231285,0,0,0,21
+231286,0,0,0,21
+231287,0,0,0,21
+231288,0,0,0,21
+231289,0,0,0,21
+231290,0,0,0,21
+231291,0,0,0,21
+231292,0,0,0,21
+231293,0,0,0,21
+231294,0,0,0,21
+231295,0,0,0,21
+231296,0,0,0,21
+231297,0,0,0,21
+231298,0,0,0,21
+231299,0,0,0,21
+231300,0,0,0,21
+231301,0,0,0,21
+231302,0,0,0,21
+231303,0,0,0,21
+231304,0,0,0,21
+231305,0,0,0,21
+231306,0,0,0,21
+231307,0,0,0,21
+231308,0,0,0,21
+231309,0,0,0,21
+231310,0,0,0,21
+231311,0,0,0,21
+231312,0,0,0,21
+231313,0,0,0,21
+231314,0,0,0,21
+231315,0,0,0,21
+231316,0,0,0,21
+231317,0,0,0,21
+231318,0,0,0,21
+231319,0,0,0,21
+231320,0,0,0,21
+231321,0,0,0,21
+231322,0,0,0,21
+231323,0,0,0,21
+231324,0,0,0,21
+231325,0,0,0,21
+231326,0,0,0,21
+231327,0,0,0,21
+231328,0,0,0,21
+231329,0,0,0,21
+231330,0,0,0,21
+231331,0,0,0,21
+231332,0,0,0,21
+231333,0,0,0,21
+231334,0,0,0,21
+231335,0,0,0,21
+231336,0,0,0,21
+231337,0,0,0,21
+231338,0,0,0,21
+231339,0,0,0,21
+231340,0,0,0,21
+231341,0,0,0,21
+231342,0,0,0,21
+231343,0,0,0,21
+231344,0,0,0,21
+231345,0,0,0,21
+231346,0,0,0,21
+231347,0,0,0,21
+231348,0,0,0,21
+231349,0,0,0,21
+231350,0,0,0,21
+231351,0,0,0,21
+231352,0,0,0,21
+231353,0,0,0,21
+231354,0,0,0,21
+231355,0,0,0,21
+231356,0,0,0,21
+231357,0,0,0,21
+231358,0,0,0,21
+231359,0,0,0,21
+231360,0,0,0,21
+231361,0,0,0,21
+231362,0,0,0,21
+231363,0,0,0,21
+231364,0,0,0,21
+231365,0,0,0,21
+231366,0,0,0,21
+231367,0,0,0,21
+231368,0,0,0,21
+231369,0,0,0,21
+231370,0,0,0,21
+231371,0,0,0,21
+231372,0,0,0,21
+231373,0,0,0,21
+231374,0,0,0,21
+231375,0,0,0,21
+231376,0,0,0,21
+231377,0,0,0,21
+231378,0,0,0,21
+231379,0,0,0,21
+231380,0,0,0,21
+231381,0,0,0,21
+231382,0,0,0,21
+231383,0,0,0,21
+231384,0,0,0,21
+231385,0,0,0,21
+231386,0,0,0,21
+231387,0,0,0,21
+231388,0,0,0,21
+231389,0,0,0,21
+231390,0,0,0,21
+231391,0,0,0,21
+231392,0,0,0,21
+231393,0,0,0,21
+231394,0,0,0,21
+231395,0,0,0,21
+231396,0,0,0,21
+231397,0,0,0,21
+231398,0,0,0,21
+231399,0,0,0,21
+231400,0,0,0,21
+231401,0,0,0,21
+231402,0,0,0,21
+231403,0,0,0,21
+231404,0,0,0,21
+231405,0,0,0,21
+231406,0,0,0,21
+231407,0,0,0,21
+231408,0,0,0,21
+231409,0,0,0,21
+231410,0,0,0,21
+231411,0,0,0,21
+231412,0,0,0,21
+231413,0,0,0,21
+231414,0,0,0,21
+231415,0,0,0,21
+231416,0,0,0,21
+231417,0,0,0,21
+231418,0,0,0,21
+231419,0,0,0,21
+231420,0,0,0,21
+231421,0,0,0,21
+231422,0,0,0,21
+231423,0,0,0,21
+231424,0,0,0,21
+231425,0,0,0,21
+231426,0,0,953272.1442,21
+231427,0,368643.1611,0,21
+231428,338136.0257,0,0,21
+231429,0,0,0,21
+231430,0,0,0,21
+231431,0,0,0,21
+231432,0,0,0,21
+231433,0,0,0,21
+231434,0,0,0,21
+231435,0,0,0,21
+231436,0,0,0,21
+231437,0,0,0,21
+231438,0,0,0,21
+231439,0,0,0,21
+231440,0,0,0,21
+231441,0,0,0,21
+231442,0,0,0,21
+231443,0,0,0,21
+231444,0,0,0,21
+231445,0,0,0,21
+231446,0,0,0,21
+231447,0,0,0,21
+231448,0,0,0,21
+231449,0,0,0,21
+231450,0,0,0,21
+231451,0,0,0,21
+231452,0,0,0,21
+231453,0,0,0,21
+231454,0,0,0,21
+231455,0,0,0,21
+231456,0,0,0,21
+231457,0,0,0,21
+231458,0,0,0,21
+231459,0,0,0,21
+231460,0,0,0,21
+231461,0,0,929022.8874,21
+231462,0,0,0,21
+231463,0,368651.4613,0,21
+231464,0,0,0,21
+231465,338093.8373,0,0,21
+231466,0,0,0,21
+231467,0,0,0,21
+231468,0,0,0,21
+231469,0,0,0,21
+231470,0,0,0,21
+231471,0,0,0,21
+231472,0,0,0,21
+231473,0,0,0,21
+231474,0,0,0,21
+231475,0,0,0,21
+231476,0,0,0,21
+231477,0,0,0,21
+231478,0,0,0,21
+231479,0,0,0,21
+231480,0,0,0,21
+231481,0,0,0,21
+231482,0,0,0,21
+231483,0,0,0,21
+231484,0,0,0,21
+231485,0,0,0,21
+231486,0,0,0,21
+231487,0,0,0,21
+231488,0,0,0,21
+231489,0,0,0,21
+231490,0,0,0,21
+231491,0,0,0,21
+231492,0,0,0,21
+231493,0,0,0,21
+231494,0,0,0,21
+231495,0,0,0,21
+231496,0,0,906146.2033,21
+231497,0,0,0,21
+231498,0,0,0,21
+231499,0,368655.712,0,21
+231500,0,0,0,21
+231501,0,0,0,21
+231502,338061.1684,0,0,21
+231503,0,0,0,21
+231504,0,0,0,21
+231505,0,0,0,21
+231506,0,0,0,21
+231507,0,0,0,21
+231508,0,0,0,21
+231509,0,0,0,21
+231510,0,0,0,21
+231511,0,0,0,21
+231512,0,0,0,21
+231513,0,0,0,21
+231514,0,0,0,21
+231515,0,0,0,21
+231516,0,0,0,21
+231517,0,0,0,21
+231518,0,0,0,21
+231519,0,0,0,21
+231520,0,0,0,21
+231521,0,0,0,21
+231522,0,0,0,21
+231523,0,0,0,21
+231524,0,0,0,21
+231525,0,0,0,21
+231526,0,0,0,21
+231527,0,0,0,21
+231528,0,0,0,21
+231529,0,0,0,21
+231530,0,0,0,21
+231531,0,0,0,21
+231532,0,0,886106.4842,21
+231533,0,0,0,21
+231534,0,0,0,21
+231535,0,368655.7117,0,21
+231536,0,0,0,21
+231537,0,0,0,21
+231538,0,0,0,21
+231539,337936.0683,0,0,21
+231540,0,0,0,21
+231541,0,0,0,21
+231542,0,0,0,21
+231543,0,0,0,21
+231544,0,0,0,21
+231545,0,0,0,21
+231546,0,0,0,21
+231547,0,0,0,21
+231548,0,0,0,21
+231549,0,0,0,21
+231550,0,0,0,21
+231551,0,0,0,21
+231552,0,0,0,21
+231553,0,0,0,21
+231554,0,0,0,21
+231555,0,0,0,21
+231556,0,0,0,21
+231557,0,0,0,21
+231558,0,0,0,21
+231559,0,0,0,21
+231560,0,0,0,21
+231561,0,0,0,21
+231562,0,0,0,21
+231563,0,0,0,21
+231564,0,0,0,21
+231565,0,0,0,21
+231566,0,0,0,21
+231567,0,0,0,21
+231568,0,0,867492.7965,21
+231569,0,0,0,21
+231570,0,0,0,21
+231571,0,368655.7115,0,21
+231572,0,0,0,21
+231573,0,0,0,21
+231574,0,0,0,21
+231575,0,0,0,21
+231576,337902.7845,0,0,21
+231577,0,0,0,21
+231578,0,0,0,21
+231579,0,0,0,21
+231580,0,0,0,21
+231581,0,0,0,21
+231582,0,0,0,21
+231583,0,0,0,21
+231584,0,0,0,21
+231585,0,0,0,21
+231586,0,0,0,21
+231587,0,0,0,21
+231588,0,0,0,21
+231589,0,0,0,21
+231590,0,0,0,21
+231591,0,0,0,21
+231592,0,0,0,21
+231593,0,0,0,21
+231594,0,0,0,21
+231595,0,0,0,21
+231596,0,0,0,21
+231597,0,0,0,21
+231598,0,0,0,21
+231599,0,0,0,21
+231600,0,0,0,21
+231601,0,0,0,21
+231602,0,0,0,21
+231603,0,0,0,21
+231604,0,0,850707.9034,21
+231605,0,0,0,21
+231606,0,0,0,21
+231607,0,368655.7111,0,21
+231608,0,0,0,21
+231609,0,0,0,21
+231610,0,0,0,21
+231611,0,0,0,21
+231612,0,0,0,21
+231613,337919.1431,0,0,21
+231614,0,0,0,21
+231615,0,0,0,21
+231616,0,0,0,21
+231617,0,0,0,21
+231618,0,0,0,21
+231619,0,0,0,21
+231620,0,0,0,21
+231621,0,0,0,21
+231622,0,0,0,21
+231623,0,0,0,21
+231624,0,0,0,21
+231625,0,0,0,21
+231626,0,0,0,21
+231627,0,0,0,21
+231628,0,0,0,21
+231629,0,0,0,21
+231630,0,0,0,21
+231631,0,0,0,21
+231632,0,0,0,21
+231633,0,0,0,21
+231634,0,0,0,21
+231635,0,0,0,21
+231636,0,0,0,21
+231637,0,0,0,21
+231638,0,0,0,21
+231639,0,0,0,21
+231640,0,0,836178.4581,21
+231641,0,0,0,21
+231642,0,0,0,21
+231643,0,368655.7139,0,21
+231644,0,0,0,21
+231645,0,0,0,21
+231646,0,0,0,21
+231647,0,0,0,21
+231648,0,0,0,21
+231649,0,0,0,21
+231650,0,0,0,21
+231651,337948.826,0,0,21
+231652,0,0,0,21
+231653,0,0,0,21
+231654,0,0,0,21
+231655,0,0,0,21
+231656,0,0,0,21
+231657,0,0,0,21
+231658,0,0,0,21
+231659,0,0,0,21
+231660,0,0,0,21
+231661,0,0,0,21
+231662,0,0,0,21
+231663,0,0,0,21
+231664,0,0,0,21
+231665,0,0,0,21
+231666,0,0,0,21
+231667,0,0,0,21
+231668,0,0,0,21
+231669,0,0,0,21
+231670,0,0,0,21
+231671,0,0,0,21
+231672,0,0,0,21
+231673,0,0,0,21
+231674,0,0,0,21
+231675,0,0,0,21
+231676,0,0,822663.2441,21
+231677,0,0,0,21
+231678,0,0,0,21
+231679,0,368655.7138,0,21
+231680,0,0,0,21
+231681,0,0,0,21
+231682,0,0,0,21
+231683,0,0,0,21
+231684,0,0,0,21
+231685,0,0,0,21
+231686,0,0,0,21
+231687,0,0,0,21
+231688,0,0,0,21
+231689,339137.1977,0,0,21
+231690,0,0,0,21
+231691,0,0,0,21
+231692,0,0,0,21
+231693,0,0,0,21
+231694,0,0,0,21
+231695,0,0,0,21
+231696,0,0,0,21
+231697,0,0,0,21
+231698,0,0,0,21
+231699,0,0,0,21
+231700,0,0,0,21
+231701,0,0,0,21
+231702,0,0,0,21
+231703,0,0,0,21
+231704,0,0,0,21
+231705,0,0,0,21
+231706,0,0,0,21
+231707,0,0,0,21
+231708,0,0,0,21
+231709,0,0,0,21
+231710,0,0,0,21
+231711,0,0,0,21
+231712,0,0,809688.3322,21
+231713,0,0,0,21
+231714,0,0,0,21
+231715,0,368655.4595,0,21
+231716,0,0,0,21
+231717,0,0,0,21
+231718,0,0,0,21
+231719,0,0,0,21
+231720,0,0,0,15.6
+231721,0,0,0,15.6
+231722,0,0,0,15.6
+231723,0,0,0,15.6
+231724,0,0,0,15.6
+231725,0,0,0,15.6
+231726,0,0,0,15.6
+231727,330167.5112,0,0,15.6
+231728,0,0,0,15.6
+231729,0,0,0,15.6
+231730,0,0,0,15.6
+231731,0,0,0,15.6
+231732,0,0,0,15.6
+231733,0,0,0,15.6
+231734,0,0,0,15.6
+231735,0,0,0,15.6
+231736,0,0,0,15.6
+231737,0,0,0,15.6
+231738,0,0,0,15.6
+231739,0,0,0,15.6
+231740,0,0,0,15.6
+231741,0,0,0,15.6
+231742,0,0,0,15.6
+231743,0,0,0,15.6
+231744,0,0,0,15.6
+231745,0,0,0,15.6
+231746,0,0,0,15.6
+231747,0,0,0,15.6
+231748,0,0,798820.7269,15.6
+231749,0,0,0,15.6
+231750,0,0,0,15.6
+231751,0,368374.745,0,15.6
+231752,0,0,0,15.6
+231753,0,0,0,15.6
+231754,0,0,0,15.6
+231755,0,0,0,15.6
+231756,0,0,0,15.6
+231757,0,0,0,15.6
+231758,0,0,0,15.6
+231759,0,0,0,15.6
+231760,0,0,0,15.6
+231761,0,0,0,15.6
+231762,0,0,0,15.6
+231763,0,0,0,15.6
+231764,0,0,0,15.6
+231765,331464.0781,0,0,15.6
+231766,0,0,0,15.6
+231767,0,0,0,15.6
+231768,0,0,0,15.6
+231769,0,0,0,15.6
+231770,0,0,0,15.6
+231771,0,0,0,15.6
+231772,0,0,0,15.6
+231773,0,0,0,15.6
+231774,0,0,0,15.6
+231775,0,0,0,15.6
+231776,0,0,0,15.6
+231777,0,0,0,15.6
+231778,0,0,0,15.6
+231779,0,0,0,15.6
+231780,0,0,0,15.6
+231781,0,0,0,15.6
+231782,0,0,0,15.6
+231783,0,0,0,15.6
+231784,0,0,788249.4578,15.6
+231785,0,0,0,15.6
+231786,0,0,0,15.6
+231787,0,368655.4542,0,15.6
+231788,0,0,0,15.6
+231789,0,0,0,15.6
+231790,0,0,0,15.6
+231791,0,0,0,15.6
+231792,0,0,0,15.6
+231793,0,0,0,15.6
+231794,0,0,0,15.6
+231795,0,0,0,15.6
+231796,0,0,0,15.6
+231797,0,0,0,15.6
+231798,0,0,0,15.6
+231799,0,0,0,15.6
+231800,0,0,0,15.6
+231801,0,0,0,15.6
+231802,0,0,0,15.6
+231803,332067.3661,0,0,15.6
+231804,0,0,0,15.6
+231805,0,0,0,15.6
+231806,0,0,0,15.6
+231807,0,0,0,15.6
+231808,0,0,0,15.6
+231809,0,0,0,15.6
+231810,0,0,0,15.6
+231811,0,0,0,15.6
+231812,0,0,0,15.6
+231813,0,0,0,15.6
+231814,0,0,0,15.6
+231815,0,0,0,15.6
+231816,0,0,0,15.6
+231817,0,0,0,15.6
+231818,0,0,0,15.6
+231819,0,0,0,15.6
+231820,0,0,778525.8167,15.6
+231821,0,0,0,15.6
+231822,0,0,0,15.6
+231823,0,0,0,15.6
+231824,0,368655.451,0,15.6
+231825,0,0,0,15.6
+231826,0,0,0,15.6
+231827,0,0,0,15.6
+231828,0,0,0,15.6
+231829,0,0,0,15.6
+231830,0,0,0,15.6
+231831,0,0,0,15.6
+231832,0,0,0,15.6
+231833,0,0,0,15.6
+231834,0,0,0,15.6
+231835,0,0,0,15.6
+231836,0,0,0,15.6
+231837,0,0,0,15.6
+231838,0,0,0,15.6
+231839,0,0,0,15.6
+231840,0,0,0,15.6
+231841,332303.6909,0,0,15.6
+231842,0,0,0,15.6
+231843,0,0,0,15.6
+231844,0,0,0,15.6
+231845,0,0,0,15.6
+231846,0,0,0,15.6
+231847,0,0,0,15.6
+231848,0,0,0,15.6
+231849,0,0,0,15.6
+231850,0,0,0,15.6
+231851,0,0,0,15.6
+231852,0,0,0,15.6
+231853,0,0,0,15.6
+231854,0,0,0,15.6
+231855,0,0,0,15.6
+231856,0,0,769793.1415,15.6
+231857,0,0,0,15.6
+231858,0,0,0,15.6
+231859,0,0,0,15.6
+231860,0,0,0,15.6
+231861,0,368655.7139,0,15.6
+231862,0,0,0,15.6
+231863,0,0,0,15.6
+231864,0,0,0,15.6
+231865,0,0,0,15.6
+231866,0,0,0,15.6
+231867,0,0,0,15.6
+231868,0,0,0,15.6
+231869,0,0,0,15.6
+231870,0,0,0,15.6
+231871,0,0,0,15.6
+231872,0,0,0,15.6
+231873,0,0,0,15.6
+231874,0,0,0,15.6
+231875,0,0,0,15.6
+231876,0,0,0,15.6
+231877,0,0,0,15.6
+231878,0,0,0,15.6
+231879,332382.0651,0,0,15.6
+231880,0,0,0,15.6
+231881,0,0,0,15.6
+231882,0,0,0,15.6
+231883,0,0,0,15.6
+231884,0,0,0,15.6
+231885,0,0,0,15.6
+231886,0,0,0,15.6
+231887,0,0,0,15.6
+231888,0,0,0,15.6
+231889,0,0,0,15.6
+231890,0,0,0,15.6
+231891,0,0,0,15.6
+231892,0,0,761756.8313,15.6
+231893,0,0,0,15.6
+231894,0,0,0,15.6
+231895,0,0,0,15.6
+231896,0,0,0,15.6
+231897,0,0,0,15.6
+231898,0,368655.714,0,15.6
+231899,0,0,0,15.6
+231900,0,0,0,15.6
+231901,0,0,0,15.6
+231902,0,0,0,15.6
+231903,0,0,0,15.6
+231904,0,0,0,15.6
+231905,0,0,0,15.6
+231906,0,0,0,15.6
+231907,0,0,0,15.6
+231908,0,0,0,15.6
+231909,0,0,0,15.6
+231910,0,0,0,15.6
+231911,0,0,0,15.6
+231912,0,0,0,15.6
+231913,0,0,0,15.6
+231914,0,0,0,15.6
+231915,0,0,0,15.6
+231916,0,0,0,15.6
+231917,332571.9936,0,0,15.6
+231918,0,0,0,15.6
+231919,0,0,0,15.6
+231920,0,0,0,15.6
+231921,0,0,0,15.6
+231922,0,0,0,15.6
+231923,0,0,0,15.6
+231924,0,0,0,15.6
+231925,0,0,0,15.6
+231926,0,0,0,15.6
+231927,0,0,0,15.6
+231928,0,0,754420.8042,15.6
+231929,0,0,0,15.6
+231930,0,0,0,15.6
+231931,0,0,0,15.6
+231932,0,0,0,15.6
+231933,0,0,0,15.6
+231934,0,0,0,15.6
+231935,0,368655.714,0,15.6
+231936,0,0,0,15.6
+231937,0,0,0,15.6
+231938,0,0,0,15.6
+231939,0,0,0,15.6
+231940,0,0,0,15.6
+231941,0,0,0,15.6
+231942,0,0,0,15.6
+231943,0,0,0,15.6
+231944,0,0,0,15.6
+231945,0,0,0,15.6
+231946,0,0,0,15.6
+231947,0,0,0,15.6
+231948,0,0,0,15.6
+231949,0,0,0,15.6
+231950,0,0,0,15.6
+231951,0,0,0,15.6
+231952,0,0,0,15.6
+231953,0,0,0,15.6
+231954,0,0,0,15.6
+231955,332544.3762,0,0,15.6
+231956,0,0,0,15.6
+231957,0,0,0,15.6
+231958,0,0,0,15.6
+231959,0,0,0,15.6
+231960,0,0,0,15.6
+231961,0,0,0,15.6
+231962,0,0,0,15.6
+231963,0,0,0,15.6
+231964,0,0,747726.7433,15.6
+231965,0,0,0,15.6
+231966,0,0,0,15.6
+231967,0,0,0,15.6
+231968,0,0,0,15.6
+231969,0,0,0,15.6
+231970,0,0,0,15.6
+231971,0,0,0,15.6
+231972,0,368655.4565,0,15.6
+231973,0,0,0,15.6
+231974,0,0,0,15.6
+231975,0,0,0,15.6
+231976,0,0,0,15.6
+231977,0,0,0,15.6
+231978,0,0,0,15.6
+231979,0,0,0,15.6
+231980,0,0,0,15.6
+231981,0,0,0,15.6
+231982,0,0,0,15.6
+231983,0,0,0,15.6
+231984,0,0,0,15.6
+231985,0,0,0,15.6
+231986,0,0,0,15.6
+231987,0,0,0,15.6
+231988,0,0,0,15.6
+231989,0,0,0,15.6
+231990,0,0,0,15.6
+231991,0,0,0,15.6
+231992,0,0,0,15.6
+231993,332504.8344,0,0,15.6
+231994,0,0,0,15.6
+231995,0,0,0,15.6
+231996,0,0,0,15.6
+231997,0,0,0,15.6
+231998,0,0,741647.2998,15.6
+231999,0,0,0,15.6
+232000,0,0,0,15.6
+232001,0,0,0,15.6
+232002,0,0,0,15.6
+232003,0,0,0,15.6
+232004,0,0,0,15.6
+232005,0,0,0,15.6
+232006,0,0,0,15.6
+232007,0,0,0,15.6
+232008,0,0,0,15.6
+232009,0,368655.714,0,15.6
+232010,0,0,0,15.6
+232011,0,0,0,15.6
+232012,0,0,0,15.6
+232013,0,0,0,15.6
+232014,0,0,0,15.6
+232015,0,0,0,15.6
+232016,0,0,0,15.6
+232017,0,0,0,15.6
+232018,0,0,0,15.6
+232019,0,0,0,15.6
+232020,0,0,0,15.6
+232021,0,0,0,15.6
+232022,0,0,0,15.6
+232023,0,0,0,15.6
+232024,0,0,0,15.6
+232025,0,0,0,15.6
+232026,0,0,0,15.6
+232027,0,0,0,15.6
+232028,0,0,0,15.6
+232029,0,0,0,15.6
+232030,332527.9433,0,0,15.6
+232031,0,0,0,15.6
+232032,0,0,736111.8595,15.6
+232033,0,0,0,15.6
+232034,0,0,0,15.6
+232035,0,0,0,15.6
+232036,0,0,0,15.6
+232037,0,0,0,15.6
+232038,0,0,0,15.6
+232039,0,0,0,15.6
+232040,0,0,0,15.6
+232041,0,0,0,15.6
+232042,0,0,0,15.6
+232043,0,0,0,15.6
+232044,0,0,0,15.6
+232045,0,0,0,15.6
+232046,0,368655.714,0,15.6
+232047,0,0,0,15.6
+232048,0,0,0,15.6
+232049,0,0,0,15.6
+232050,0,0,0,15.6
+232051,0,0,0,15.6
+232052,0,0,0,15.6
+232053,0,0,0,15.6
+232054,0,0,0,15.6
+232055,0,0,0,15.6
+232056,0,0,0,15.6
+232057,0,0,0,15.6
+232058,0,0,0,15.6
+232059,0,0,0,15.6
+232060,0,0,0,15.6
+232061,0,0,0,15.6
+232062,0,0,0,15.6
+232063,0,0,0,15.6
+232064,0,0,0,15.6
+232065,332482.8443,0,0,15.6
+232066,0,0,731049.8209,15.6
+232067,0,0,0,15.6
+232068,0,0,0,15.6
+232069,0,0,0,15.6
+232070,0,0,0,15.6
+232071,0,0,0,15.6
+232072,0,0,0,15.6
+232073,0,0,0,15.6
+232074,0,0,0,15.6
+232075,0,0,0,15.6
+232076,0,0,0,15.6
+232077,0,0,0,15.6
+232078,0,0,0,15.6
+232079,0,0,0,15.6
+232080,0,0,0,17.8
+232081,0,368655.4319,0,17.8
+232082,0,0,0,17.8
+232083,0,0,0,17.8
+232084,0,0,0,17.8
+232085,0,0,0,17.8
+232086,0,0,0,17.8
+232087,0,0,0,17.8
+232088,0,0,0,17.8
+232089,0,0,0,17.8
+232090,0,0,0,17.8
+232091,0,0,0,17.8
+232092,0,0,0,17.8
+232093,0,0,0,17.8
+232094,0,0,0,17.8
+232095,0,0,0,17.8
+232096,0,0,0,17.8
+232097,0,0,0,17.8
+232098,0,0,0,17.8
+232099,0,0,0,17.8
+232100,332652.1719,0,726430.1283,17.8
+232101,0,0,0,17.8
+232102,0,0,0,17.8
+232103,0,0,0,17.8
+232104,0,0,0,17.8
+232105,0,0,0,17.8
+232106,0,0,0,17.8
+232107,0,0,0,17.8
+232108,0,0,0,17.8
+232109,0,0,0,17.8
+232110,0,0,0,17.8
+232111,0,0,0,17.8
+232112,0,0,0,17.8
+232113,0,0,0,17.8
+232114,0,0,0,17.8
+232115,0,0,0,17.8
+232116,0,368655.714,0,17.8
+232117,0,0,0,17.8
+232118,0,0,0,17.8
+232119,0,0,0,17.8
+232120,0,0,0,17.8
+232121,0,0,0,17.8
+232122,0,0,0,17.8
+232123,0,0,0,17.8
+232124,0,0,0,17.8
+232125,0,0,0,17.8
+232126,0,0,0,17.8
+232127,0,0,0,17.8
+232128,0,0,0,17.8
+232129,0,0,0,17.8
+232130,0,0,0,17.8
+232131,0,0,0,17.8
+232132,0,0,0,17.8
+232133,0,0,0,17.8
+232134,0,0,0,17.8
+232135,332511.5884,0,722216.0742,17.8
+232136,0,0,0,17.8
+232137,0,0,0,17.8
+232138,0,0,0,17.8
+232139,0,0,0,17.8
+232140,0,0,0,20
+232141,0,0,0,20
+232142,0,0,0,20
+232143,0,0,0,20
+232144,0,0,0,20
+232145,0,0,0,20
+232146,0,0,0,20
+232147,0,0,0,20
+232148,0,0,0,20
+232149,0,0,0,20
+232150,0,0,0,20
+232151,0,0,0,20
+232152,0,0,0,20
+232153,0,369119.3152,0,20
+232154,0,0,0,20
+232155,0,0,0,20
+232156,0,0,0,20
+232157,0,0,0,20
+232158,0,0,0,20
+232159,0,0,0,20
+232160,0,0,0,20
+232161,0,0,0,20
+232162,0,0,0,20
+232163,0,0,0,20
+232164,0,0,0,20
+232165,0,0,0,20
+232166,0,0,0,20
+232167,0,0,0,20
+232168,0,0,0,20
+232169,0,0,0,20
+232170,0,0,0,20
+232171,0,0,718355.4768,20
+232172,0,0,0,20
+232173,332901.6769,0,0,20
+232174,0,0,0,20
+232175,0,0,0,20
+232176,0,0,0,20
+232177,0,0,0,20
+232178,0,0,0,20
+232179,0,0,0,20
+232180,0,0,0,20
+232181,0,0,0,20
+232182,0,0,0,20
+232183,0,0,0,20
+232184,0,0,0,20
+232185,0,0,0,20
+232186,0,0,0,20
+232187,0,0,0,20
+232188,0,0,0,20
+232189,0,0,0,20
+232190,0,369145.9459,0,20
+232191,0,0,0,20
+232192,0,0,0,20
+232193,0,0,0,20
+232194,0,0,0,20
+232195,0,0,0,20
+232196,0,0,0,20
+232197,0,0,0,20
+232198,0,0,0,20
+232199,0,0,0,20
+232200,0,0,0,21
+232201,0,0,0,21
+232202,0,0,0,21
+232203,0,0,0,21
+232204,0,0,0,21
+232205,0,0,0,21
+232206,0,0,714793.4493,21
+232207,0,0,0,21
+232208,0,0,0,21
+232209,0,0,0,21
+232210,0,0,0,21
+232211,333116.4793,0,0,21
+232212,0,0,0,21
+232213,0,0,0,21
+232214,0,0,0,21
+232215,0,0,0,21
+232216,0,0,0,21
+232217,0,0,0,21
+232218,0,0,0,21
+232219,0,0,0,21
+232220,0,0,0,21
+232221,0,0,0,21
+232222,0,0,0,21
+232223,0,0,0,21
+232224,0,0,0,21
+232225,0,0,0,21
+232226,0,0,0,21
+232227,0,369194.5099,0,21
+232228,0,0,0,21
+232229,0,0,0,21
+232230,0,0,0,21
+232231,0,0,0,21
+232232,0,0,0,21
+232233,0,0,0,21
+232234,0,0,0,21
+232235,0,0,0,21
+232236,0,0,0,21
+232237,0,0,0,21
+232238,0,0,0,21
+232239,0,0,0,21
+232240,0,0,0,21
+232241,0,0,711538.6959,21
+232242,0,0,0,21
+232243,0,0,0,21
+232244,0,0,0,21
+232245,0,0,0,21
+232246,0,0,0,21
+232247,0,0,0,21
+232248,338740.8843,0,0,21
+232249,0,0,0,21
+232250,0,0,0,21
+232251,0,0,0,21
+232252,0,0,0,21
+232253,0,0,0,21
+232254,0,0,0,21
+232255,0,0,0,21
+232256,0,0,0,21
+232257,0,0,0,21
+232258,0,0,0,21
+232259,0,0,0,21
+232260,0,0,0,21
+232261,0,0,0,21
+232262,0,0,0,21
+232263,0,0,0,21
+232264,0,369232.5179,0,21
+232265,0,0,0,21
+232266,0,0,0,21
+232267,0,0,0,21
+232268,0,0,0,21
+232269,0,0,0,21
+232270,0,0,0,21
+232271,0,0,0,21
+232272,0,0,0,21
+232273,0,0,0,21
+232274,0,0,0,21
+232275,0,0,0,21
+232276,0,0,708452.1064,21
+232277,0,0,0,21
+232278,0,0,0,21
+232279,0,0,0,21
+232280,0,0,0,21
+232281,0,0,0,21
+232282,0,0,0,21
+232283,0,0,0,21
+232284,0,0,0,21
+232285,337988.2715,0,0,21
+232286,0,0,0,21
+232287,0,0,0,21
+232288,0,0,0,21
+232289,0,0,0,21
+232290,0,0,0,21
+232291,0,0,0,21
+232292,0,0,0,21
+232293,0,0,0,21
+232294,0,0,0,21
+232295,0,0,0,21
+232296,0,0,0,21
+232297,0,0,0,21
+232298,0,0,0,21
+232299,0,0,0,21
+232300,0,369114.8232,0,21
+232301,0,0,0,21
+232302,0,0,0,21
+232303,0,0,0,21
+232304,0,0,0,21
+232305,0,0,0,21
+232306,0,0,0,21
+232307,0,0,0,21
+232308,0,0,0,21
+232309,0,0,0,21
+232310,0,0,0,21
+232311,0,0,705081.9514,21
+232312,0,0,0,21
+232313,0,0,0,21
+232314,0,0,0,21
+232315,0,0,0,21
+232316,0,0,0,21
+232317,0,0,0,21
+232318,0,0,0,21
+232319,0,0,0,21
+232320,0,0,0,21
+232321,0,0,0,21
+232322,337981.5833,0,0,21
+232323,0,0,0,21
+232324,0,0,0,21
+232325,0,0,0,21
+232326,0,0,0,21
+232327,0,0,0,21
+232328,0,0,0,21
+232329,0,0,0,21
+232330,0,0,0,21
+232331,0,0,0,21
+232332,0,0,0,21
+232333,0,0,0,21
+232334,0,0,0,21
+232335,0,0,0,21
+232336,0,369038.9983,0,21
+232337,0,0,0,21
+232338,0,0,0,21
+232339,0,0,0,21
+232340,0,0,0,21
+232341,0,0,0,21
+232342,0,0,0,21
+232343,0,0,0,21
+232344,0,0,0,21
+232345,0,0,0,21
+232346,0,0,701998.556,21
+232347,0,0,0,21
+232348,0,0,0,21
+232349,0,0,0,21
+232350,0,0,0,21
+232351,0,0,0,21
+232352,0,0,0,21
+232353,0,0,0,21
+232354,0,0,0,21
+232355,0,0,0,21
+232356,0,0,0,21
+232357,0,0,0,21
+232358,0,0,0,21
+232359,327447.8418,0,0,21
+232360,0,0,0,21
+232361,0,0,0,21
+232362,0,0,0,21
+232363,0,0,0,21
+232364,0,0,0,21
+232365,0,0,0,21
+232366,0,0,0,21
+232367,0,0,0,21
+232368,0,0,0,21
+232369,0,0,0,21
+232370,0,0,0,21
+232371,0,0,0,21
+232372,0,369004.4875,0,21
+232373,0,0,0,21
+232374,0,0,0,21
+232375,0,0,0,21
+232376,0,0,0,21
+232377,0,0,0,21
+232378,0,0,0,21
+232379,0,0,0,21
+232380,0,0,0,21
+232381,0,0,699231.8038,21
+232382,0,0,0,21
+232383,0,0,0,21
+232384,0,0,0,21
+232385,0,0,0,21
+232386,0,0,0,21
+232387,0,0,0,21
+232388,0,0,0,21
+232389,0,0,0,21
+232390,0,0,0,21
+232391,0,0,0,21
+232392,0,0,0,21
+232393,0,0,0,21
+232394,0,0,0,21
+232395,0,0,0,21
+232396,327676.0239,0,0,21
+232397,0,0,0,21
+232398,0,0,0,21
+232399,0,0,0,21
+232400,0,0,0,21
+232401,0,0,0,21
+232402,0,0,0,21
+232403,0,0,0,21
+232404,0,0,0,21
+232405,0,0,0,21
+232406,0,0,0,21
+232407,0,0,0,21
+232408,0,369043.0811,0,21
+232409,0,0,0,21
+232410,0,0,0,21
+232411,0,0,0,21
+232412,0,0,0,21
+232413,0,0,0,21
+232414,0,0,0,21
+232415,0,0,0,21
+232416,0,0,696984.2565,21
+232417,0,0,0,21
+232418,0,0,0,21
+232419,0,0,0,21
+232420,0,0,0,21
+232421,0,0,0,21
+232422,0,0,0,21
+232423,0,0,0,21
+232424,0,0,0,21
+232425,0,0,0,21
+232426,0,0,0,21
+232427,0,0,0,21
+232428,0,0,0,21
+232429,0,0,0,21
+232430,0,0,0,21
+232431,0,0,0,21
+232432,0,0,0,21
+232433,328424.4786,0,0,21
+232434,0,0,0,21
+232435,0,0,0,21
+232436,0,0,0,21
+232437,0,0,0,21
+232438,0,0,0,21
+232439,0,0,0,21
+232440,0,0,0,21
+232441,0,0,0,21
+232442,0,0,0,21
+232443,0,0,0,21
+232444,0,369051.0953,0,21
+232445,0,0,0,21
+232446,0,0,0,21
+232447,0,0,0,21
+232448,0,0,0,21
+232449,0,0,0,21
+232450,0,0,0,21
+232451,0,0,694779.7797,21
+232452,0,0,0,21
+232453,0,0,0,21
+232454,0,0,0,21
+232455,0,0,0,21
+232456,0,0,0,21
+232457,0,0,0,21
+232458,0,0,0,21
+232459,0,0,0,21
+232460,0,0,0,21
+232461,0,0,0,21
+232462,0,0,0,21
+232463,0,0,0,21
+232464,0,0,0,21
+232465,0,0,0,21
+232466,0,0,0,21
+232467,0,0,0,21
+232468,0,0,0,21
+232469,0,0,0,21
+232470,0,0,0,21
+232471,328090.6273,0,0,21
+232472,0,0,0,21
+232473,0,0,0,21
+232474,0,0,0,21
+232475,0,0,0,21
+232476,0,0,0,21
+232477,0,0,0,21
+232478,0,0,0,21
+232479,0,0,0,21
+232480,0,0,0,21
+232481,0,369059.5383,0,21
+232482,0,0,0,21
+232483,0,0,0,21
+232484,0,0,0,21
+232485,0,0,0,21
+232486,0,0,693107.2011,21
+232487,0,0,0,21
+232488,0,0,0,21
+232489,0,0,0,21
+232490,0,0,0,21
+232491,0,0,0,21
+232492,0,0,0,21
+232493,0,0,0,21
+232494,0,0,0,21
+232495,0,0,0,21
+232496,0,0,0,21
+232497,0,0,0,21
+232498,0,0,0,21
+232499,0,0,0,21
+232500,0,0,0,21
+232501,0,0,0,21
+232502,0,0,0,21
+232503,0,0,0,21
+232504,0,0,0,21
+232505,0,0,0,21
+232506,0,0,0,21
+232507,0,0,0,21
+232508,0,0,0,21
+232509,328347.557,0,0,21
+232510,0,0,0,21
+232511,0,0,0,21
+232512,0,0,0,21
+232513,0,0,0,21
+232514,0,0,0,21
+232515,0,0,0,21
+232516,0,0,0,21
+232517,0,0,0,21
+232518,0,369067.9847,0,21
+232519,0,0,0,21
+232520,0,0,0,21
+232521,0,0,682194.0559,21
+232522,0,0,0,21
+232523,0,0,0,21
+232524,0,0,0,21
+232525,0,0,0,21
+232526,0,0,0,21
+232527,0,0,0,21
+232528,0,0,0,21
+232529,0,0,0,21
+232530,0,0,0,21
+232531,0,0,0,21
+232532,0,0,0,21
+232533,0,0,0,21
+232534,0,0,0,21
+232535,0,0,0,21
+232536,0,0,0,21
+232537,0,0,0,21
+232538,0,0,0,21
+232539,0,0,0,21
+232540,0,0,0,21
+232541,0,0,0,21
+232542,0,0,0,21
+232543,0,0,0,21
+232544,0,0,0,21
+232545,0,0,0,21
+232546,0,0,0,21
+232547,328642.3984,0,0,21
+232548,0,0,0,21
+232549,0,0,0,21
+232550,0,0,0,21
+232551,0,0,0,21
+232552,0,0,0,21
+232553,0,0,0,21
+232554,0,0,0,21
+232555,0,369076.4298,0,21
+232556,0,0,679053.7087,21
+232557,0,0,0,21
+232558,0,0,0,21
+232559,0,0,0,21
+232560,0,0,0,21
+232561,0,0,0,21
+232562,0,0,0,21
+232563,0,0,0,21
+232564,0,0,0,21
+232565,0,0,0,21
+232566,0,0,0,21
+232567,0,0,0,21
+232568,0,0,0,21
+232569,0,0,0,21
+232570,0,0,0,21
+232571,0,0,0,21
+232572,0,0,0,21
+232573,0,0,0,21
+232574,0,0,0,21
+232575,0,0,0,21
+232576,0,0,0,21
+232577,0,0,0,21
+232578,0,0,0,21
+232579,0,0,0,21
+232580,0,0,0,21
+232581,0,0,0,21
+232582,0,0,0,21
+232583,0,0,0,21
+232584,0,0,0,21
+232585,329050.7563,0,0,21
+232586,0,0,0,21
+232587,0,0,0,21
+232588,0,0,0,21
+232589,0,0,0,21
+232590,0,0,0,21
+232591,0,0,0,21
+232592,0,369084.8774,680389.0704,21
+232593,0,0,0,21
+232594,0,0,0,21
+232595,0,0,0,21
+232596,0,0,0,21
+232597,0,0,0,21
+232598,0,0,0,21
+232599,0,0,0,21
+232600,0,0,0,21
+232601,0,0,0,21
+232602,0,0,0,21
+232603,0,0,0,21
+232604,0,0,0,21
+232605,0,0,0,21
+232606,0,0,0,21
+232607,0,0,0,21
+232608,0,0,0,21
+232609,0,0,0,21
+232610,0,0,0,21
+232611,0,0,0,21
+232612,0,0,0,21
+232613,0,0,0,21
+232614,0,0,0,21
+232615,0,0,0,21
+232616,0,0,0,21
+232617,0,0,0,21
+232618,0,0,0,21
+232619,0,0,0,21
+232620,0,0,0,21
+232621,0,0,0,21
+232622,0,0,0,21
+232623,329156.5289,0,0,21
+232624,0,0,0,21
+232625,0,0,0,21
+232626,0,0,0,21
+232627,0,0,0,21
+232628,0,0,682978.8309,21
+232629,0,369093.3211,0,21
+232630,0,0,0,21
+232631,0,0,0,21
+232632,0,0,0,21
+232633,0,0,0,21
+232634,0,0,0,21
+232635,0,0,0,21
+232636,0,0,0,21
+232637,0,0,0,21
+232638,0,0,0,21
+232639,0,0,0,21
+232640,0,0,0,21
+232641,0,0,0,21
+232642,0,0,0,21
+232643,0,0,0,21
+232644,0,0,0,21
+232645,0,0,0,21
+232646,0,0,0,21
+232647,0,0,0,21
+232648,0,0,0,21
+232649,0,0,0,21
+232650,0,0,0,21
+232651,0,0,0,21
+232652,0,0,0,21
+232653,0,0,0,21
+232654,0,0,0,21
+232655,0,0,0,21
+232656,0,0,0,21
+232657,0,0,0,21
+232658,0,0,0,21
+232659,0,0,0,21
+232660,0,0,0,21
+232661,329580.8612,0,0,21
+232662,0,0,0,21
+232663,0,0,0,21
+232664,0,0,681378.8245,21
+232665,0,0,0,21
+232666,0,369101.7637,0,21
+232667,0,0,0,21
+232668,0,0,0,21
+232669,0,0,0,21
+232670,0,0,0,21
+232671,0,0,0,21
+232672,0,0,0,21
+232673,0,0,0,21
+232674,0,0,0,21
+232675,0,0,0,21
+232676,0,0,0,21
+232677,0,0,0,21
+232678,0,0,0,21
+232679,0,0,0,21
+232680,0,0,0,21
+232681,0,0,0,21
+232682,0,0,0,21
+232683,0,0,0,21
+232684,0,0,0,21
+232685,0,0,0,21
+232686,0,0,0,21
+232687,0,0,0,21
+232688,0,0,0,21
+232689,0,0,0,21
+232690,0,0,0,21
+232691,0,0,0,21
+232692,0,0,0,21
+232693,0,0,0,21
+232694,0,0,0,21
+232695,0,0,0,21
+232696,0,0,0,21
+232697,0,0,0,21
+232698,329680.1109,0,0,21
+232699,0,0,680479.9611,21
+232700,0,0,0,21
+232701,0,0,0,21
+232702,0,0,0,21
+232703,0,369110.198,0,21
+232704,0,0,0,21
+232705,0,0,0,21
+232706,0,0,0,21
+232707,0,0,0,21
+232708,0,0,0,21
+232709,0,0,0,21
+232710,0,0,0,21
+232711,0,0,0,21
+232712,0,0,0,21
+232713,0,0,0,21
+232714,0,0,0,21
+232715,0,0,0,21
+232716,0,0,0,21
+232717,0,0,0,21
+232718,0,0,0,21
+232719,0,0,0,21
+232720,0,0,0,21
+232721,0,0,0,21
+232722,0,0,0,21
+232723,0,0,0,21
+232724,0,0,0,21
+232725,0,0,0,21
+232726,0,0,0,21
+232727,0,0,0,21
+232728,0,0,0,21
+232729,0,0,0,21
+232730,0,0,0,21
+232731,0,0,0,21
+232732,0,0,0,21
+232733,0,0,0,21
+232734,0,0,679008.3084,21
+232735,329806.6343,0,0,21
+232736,0,0,0,21
+232737,0,0,0,21
+232738,0,0,0,21
+232739,0,0,0,21
+232740,0,369118.6522,0,21
+232741,0,0,0,21
+232742,0,0,0,21
+232743,0,0,0,21
+232744,0,0,0,21
+232745,0,0,0,21
+232746,0,0,0,21
+232747,0,0,0,21
+232748,0,0,0,21
+232749,0,0,0,21
+232750,0,0,0,21
+232751,0,0,0,21
+232752,0,0,0,21
+232753,0,0,0,21
+232754,0,0,0,21
+232755,0,0,0,21
+232756,0,0,0,21
+232757,0,0,0,21
+232758,0,0,0,21
+232759,0,0,0,21
+232760,0,0,0,21
+232761,0,0,0,21
+232762,0,0,0,21
+232763,0,0,0,21
+232764,0,0,0,21
+232765,0,0,0,21
+232766,0,0,0,21
+232767,0,0,0,21
+232768,0,0,0,21
+232769,0,0,677403.8647,21
+232770,0,0,0,21
+232771,0,0,0,21
+232772,330236.448,0,0,21
+232773,0,0,0,21
+232774,0,0,0,21
+232775,0,0,0,21
+232776,0,0,0,21
+232777,0,369127.1023,0,21
+232778,0,0,0,21
+232779,0,0,0,21
+232780,0,0,0,21
+232781,0,0,0,21
+232782,0,0,0,21
+232783,0,0,0,21
+232784,0,0,0,21
+232785,0,0,0,21
+232786,0,0,0,21
+232787,0,0,0,21
+232788,0,0,0,21
+232789,0,0,0,21
+232790,0,0,0,21
+232791,0,0,0,21
+232792,0,0,0,21
+232793,0,0,0,21
+232794,0,0,0,21
+232795,0,0,0,21
+232796,0,0,0,21
+232797,0,0,0,21
+232798,0,0,0,21
+232799,0,0,0,21
+232800,0,0,0,21
+232801,0,0,0,21
+232802,0,0,0,21
+232803,0,0,0,21
+232804,0,0,675979.7493,21
+232805,0,0,0,21
+232806,0,0,0,21
+232807,0,0,0,21
+232808,0,0,0,21
+232809,330690.9221,0,0,21
+232810,0,0,0,21
+232811,0,0,0,21
+232812,0,0,0,21
+232813,0,0,0,21
+232814,0,369135.552,0,21
+232815,0,0,0,21
+232816,0,0,0,21
+232817,0,0,0,21
+232818,0,0,0,21
+232819,0,0,0,21
+232820,0,0,0,21
+232821,0,0,0,21
+232822,0,0,0,21
+232823,0,0,0,21
+232824,0,0,0,21
+232825,0,0,0,21
+232826,0,0,0,21
+232827,0,0,0,21
+232828,0,0,0,21
+232829,0,0,0,21
+232830,0,0,0,21
+232831,0,0,0,21
+232832,0,0,0,21
+232833,0,0,0,21
+232834,0,0,0,21
+232835,0,0,0,21
+232836,0,0,0,21
+232837,0,0,0,21
+232838,0,0,0,21
+232839,0,0,675106.7222,21
+232840,0,0,0,21
+232841,0,0,0,21
+232842,0,0,0,21
+232843,0,0,0,21
+232844,0,0,0,21
+232845,0,0,0,21
+232846,330688.0695,0,0,21
+232847,0,0,0,21
+232848,0,0,0,21
+232849,0,0,0,21
+232850,0,369143.7557,0,21
+232851,0,0,0,21
+232852,0,0,0,21
+232853,0,0,0,21
+232854,0,0,0,21
+232855,0,0,0,21
+232856,0,0,0,21
+232857,0,0,0,21
+232858,0,0,0,21
+232859,0,0,0,21
+232860,0,0,0,21
+232861,0,0,0,21
+232862,0,0,0,21
+232863,0,0,0,21
+232864,0,0,0,21
+232865,0,0,0,21
+232866,0,0,0,21
+232867,0,0,0,21
+232868,0,0,0,21
+232869,0,0,0,21
+232870,0,0,0,21
+232871,0,0,0,21
+232872,0,0,0,21
+232873,0,0,0,21
+232874,0,0,674364.006,21
+232875,0,0,0,21
+232876,0,0,0,21
+232877,0,0,0,21
+232878,0,0,0,21
+232879,0,0,0,21
+232880,0,0,0,21
+232881,0,0,0,21
+232882,0,0,0,21
+232883,330706.2236,0,0,21
+232884,0,0,0,21
+232885,0,0,0,21
+232886,0,369146.4016,0,21
+232887,0,0,0,21
+232888,0,0,0,21
+232889,0,0,0,21
+232890,0,0,0,21
+232891,0,0,0,21
+232892,0,0,0,21
+232893,0,0,0,21
+232894,0,0,0,21
+232895,0,0,0,21
+232896,0,0,0,21
+232897,0,0,0,21
+232898,0,0,0,21
+232899,0,0,0,21
+232900,0,0,0,21
+232901,0,0,0,21
+232902,0,0,0,21
+232903,0,0,0,21
+232904,0,0,0,21
+232905,0,0,0,21
+232906,0,0,0,21
+232907,0,0,0,21
+232908,0,0,0,21
+232909,0,0,673580.8043,21
+232910,0,0,0,21
+232911,0,0,0,21
+232912,0,0,0,21
+232913,0,0,0,21
+232914,0,0,0,21
+232915,0,0,0,21
+232916,0,0,0,21
+232917,0,0,0,21
+232918,0,0,0,21
+232919,0,0,0,21
+232920,330417.4704,0,0,21
+232921,0,0,0,21
+232922,0,0,0,21
+232923,0,369146.4016,0,21
+232924,0,0,0,21
+232925,0,0,0,21
+232926,0,0,0,21
+232927,0,0,0,21
+232928,0,0,0,21
+232929,0,0,0,21
+232930,0,0,0,21
+232931,0,0,0,21
+232932,0,0,0,21
+232933,0,0,0,21
+232934,0,0,0,21
+232935,0,0,0,21
+232936,0,0,0,21
+232937,0,0,0,21
+232938,0,0,0,21
+232939,0,0,0,21
+232940,0,0,0,21
+232941,0,0,0,21
+232942,0,0,0,21
+232943,0,0,0,21
+232944,0,0,672586.9862,21
+232945,0,0,0,21
+232946,0,0,0,21
+232947,0,0,0,21
+232948,0,0,0,21
+232949,0,0,0,21
+232950,0,0,0,21
+232951,0,0,0,21
+232952,0,0,0,21
+232953,0,0,0,21
+232954,0,0,0,21
+232955,0,0,0,21
+232956,0,0,0,21
+232957,330654.2889,0,0,21
+232958,0,0,0,21
+232959,0,0,0,21
+232960,0,369146.7866,0,21
+232961,0,0,0,21
+232962,0,0,0,21
+232963,0,0,0,21
+232964,0,0,0,21
+232965,0,0,0,21
+232966,0,0,0,21
+232967,0,0,0,21
+232968,0,0,0,21
+232969,0,0,0,21
+232970,0,0,0,21
+232971,0,0,0,21
+232972,0,0,0,21
+232973,0,0,0,21
+232974,0,0,0,21
+232975,0,0,0,21
+232976,0,0,0,21
+232977,0,0,0,21
+232978,0,0,0,21
+232979,0,0,671841.4502,21
+232980,0,0,0,21
+232981,0,0,0,21
+232982,0,0,0,21
+232983,0,0,0,21
+232984,0,0,0,21
+232985,0,0,0,21
+232986,0,0,0,21
+232987,0,0,0,21
+232988,0,0,0,21
+232989,0,0,0,21
+232990,0,0,0,21
+232991,0,0,0,21
+232992,0,0,0,21
+232993,0,0,0,21
+232994,330476.4096,0,0,21
+232995,0,0,0,21
+232996,0,0,0,21
+232997,0,369146.402,0,21
+232998,0,0,0,21
+232999,0,0,0,21
+233000,0,0,0,21
+233001,0,0,0,21
+233002,0,0,0,21
+233003,0,0,0,21
+233004,0,0,0,21
+233005,0,0,0,21
+233006,0,0,0,21
+233007,0,0,0,21
+233008,0,0,0,21
+233009,0,0,0,21
+233010,0,0,0,21
+233011,0,0,0,21
+233012,0,0,0,21
+233013,0,0,0,21
+233014,0,0,671210.6022,21
+233015,0,0,0,21
+233016,0,0,0,21
+233017,0,0,0,21
+233018,0,0,0,21
+233019,0,0,0,21
+233020,0,0,0,21
+233021,0,0,0,21
+233022,0,0,0,21
+233023,0,0,0,21
+233024,0,0,0,21
+233025,0,0,0,21
+233026,0,0,0,21
+233027,0,0,0,21
+233028,0,0,0,21
+233029,0,0,0,21
+233030,0,0,0,21
+233031,331558.2717,0,0,21
+233032,0,0,0,21
+233033,0,0,0,21
+233034,0,369146.4009,0,21
+233035,0,0,0,21
+233036,0,0,0,21
+233037,0,0,0,21
+233038,0,0,0,21
+233039,0,0,0,21
+233040,0,0,0,21
+233041,0,0,0,21
+233042,0,0,0,21
+233043,0,0,0,21
+233044,0,0,0,21
+233045,0,0,0,21
+233046,0,0,0,21
+233047,0,0,0,21
+233048,0,0,0,21
+233049,0,0,0,21
+233050,0,0,670417.0478,21
+233051,0,0,0,21
+233052,0,0,0,21
+233053,0,0,0,21
+233054,0,0,0,21
+233055,0,0,0,21
+233056,0,0,0,21
+233057,0,0,0,21
+233058,0,0,0,21
+233059,0,0,0,21
+233060,0,0,0,21
+233061,0,0,0,21
+233062,0,0,0,21
+233063,0,0,0,21
+233064,0,0,0,21
+233065,0,0,0,21
+233066,0,0,0,21
+233067,0,0,0,21
+233068,0,0,0,21
+233069,0,0,0,21
+233070,332573.8549,0,0,21
+233071,0,0,0,21
+233072,0,369146.4011,0,21
+233073,0,0,0,21
+233074,0,0,0,21
+233075,0,0,0,21
+233076,0,0,0,21
+233077,0,0,0,21
+233078,0,0,0,21
+233079,0,0,0,21
+233080,0,0,0,21
+233081,0,0,0,21
+233082,0,0,0,21
+233083,0,0,0,21
+233084,0,0,0,21
+233085,0,0,0,21
+233086,0,0,669842.3094,21
+233087,0,0,0,21
+233088,0,0,0,21
+233089,0,0,0,21
+233090,0,0,0,21
+233091,0,0,0,21
+233092,0,0,0,21
+233093,0,0,0,21
+233094,0,0,0,21
+233095,0,0,0,21
+233096,0,0,0,21
+233097,0,0,0,21
+233098,0,0,0,21
+233099,0,0,0,21
+233100,0,0,0,21
+233101,0,0,0,21
+233102,0,0,0,21
+233103,0,0,0,21
+233104,0,0,0,21
+233105,0,0,0,21
+233106,0,0,0,21
+233107,0,0,0,21
+233108,331827.9331,0,0,21
+233109,0,0,0,21
+233110,0,369146.4016,0,21
+233111,0,0,0,21
+233112,0,0,0,21
+233113,0,0,0,21
+233114,0,0,0,21
+233115,0,0,0,21
+233116,0,0,0,21
+233117,0,0,0,21
+233118,0,0,0,21
+233119,0,0,0,21
+233120,0,0,0,21
+233121,0,0,668822.1027,21
+233122,0,0,0,21
+233123,0,0,0,21
+233124,0,0,0,21
+233125,0,0,0,21
+233126,0,0,0,21
+233127,0,0,0,21
+233128,0,0,0,21
+233129,0,0,0,21
+233130,0,0,0,21
+233131,0,0,0,21
+233132,0,0,0,21
+233133,0,0,0,21
+233134,0,0,0,21
+233135,0,0,0,21
+233136,0,0,0,21
+233137,0,0,0,21
+233138,0,0,0,21
+233139,0,0,0,21
+233140,0,0,0,21
+233141,0,0,0,21
+233142,0,0,0,21
+233143,0,0,0,21
+233144,0,0,0,21
+233145,331131.6189,0,0,21
+233146,0,0,0,21
+233147,0,0,0,21
+233148,0,369098.57,0,21
+233149,0,0,0,21
+233150,0,0,0,21
+233151,0,0,0,21
+233152,0,0,0,21
+233153,0,0,0,21
+233154,0,0,0,21
+233155,0,0,0,21
+233156,0,0,668309.0366,21
+233157,0,0,0,21
+233158,0,0,0,21
+233159,0,0,0,21
+233160,0,0,0,15.6
+233161,0,0,0,15.6
+233162,0,0,0,15.6
+233163,0,0,0,15.6
+233164,0,0,0,15.6
+233165,0,0,0,15.6
+233166,0,0,0,15.6
+233167,0,0,0,15.6
+233168,0,0,0,15.6
+233169,0,0,0,15.6
+233170,0,0,0,15.6
+233171,0,0,0,15.6
+233172,0,0,0,15.6
+233173,0,0,0,15.6
+233174,0,0,0,15.6
+233175,0,0,0,15.6
+233176,0,0,0,15.6
+233177,0,0,0,15.6
+233178,0,0,0,15.6
+233179,0,0,0,15.6
+233180,0,0,0,15.6
+233181,0,0,0,15.6
+233182,334406.2552,0,0,15.6
+233183,0,0,0,15.6
+233184,0,0,0,15.6
+233185,0,369146.4042,0,15.6
+233186,0,0,0,15.6
+233187,0,0,0,15.6
+233188,0,0,0,15.6
+233189,0,0,0,15.6
+233190,0,0,0,15.6
+233191,0,0,667703.345,15.6
+233192,0,0,0,15.6
+233193,0,0,0,15.6
+233194,0,0,0,15.6
+233195,0,0,0,15.6
+233196,0,0,0,15.6
+233197,0,0,0,15.6
+233198,0,0,0,15.6
+233199,0,0,0,15.6
+233200,0,0,0,15.6
+233201,0,0,0,15.6
+233202,0,0,0,15.6
+233203,0,0,0,15.6
+233204,0,0,0,15.6
+233205,0,0,0,15.6
+233206,0,0,0,15.6
+233207,0,0,0,15.6
+233208,0,0,0,15.6
+233209,0,0,0,15.6
+233210,0,0,0,15.6
+233211,0,0,0,15.6
+233212,0,0,0,15.6
+233213,0,0,0,15.6
+233214,0,0,0,15.6
+233215,0,0,0,15.6
+233216,0,0,0,15.6
+233217,0,0,0,15.6
+233218,0,0,0,15.6
+233219,330426.2997,0,0,15.6
+233220,0,0,0,15.6
+233221,0,0,0,15.6
+233222,0,369146.4042,0,15.6
+233223,0,0,0,15.6
+233224,0,0,0,15.6
+233225,0,0,0,15.6
+233226,0,0,667717.7938,15.6
+233227,0,0,0,15.6
+233228,0,0,0,15.6
+233229,0,0,0,15.6
+233230,0,0,0,15.6
+233231,0,0,0,15.6
+233232,0,0,0,15.6
+233233,0,0,0,15.6
+233234,0,0,0,15.6
+233235,0,0,0,15.6
+233236,0,0,0,15.6
+233237,0,0,0,15.6
+233238,0,0,0,15.6
+233239,0,0,0,15.6
+233240,0,0,0,15.6
+233241,0,0,0,15.6
+233242,0,0,0,15.6
+233243,0,0,0,15.6
+233244,0,0,0,15.6
+233245,0,0,0,15.6
+233246,0,0,0,15.6
+233247,0,0,0,15.6
+233248,0,0,0,15.6
+233249,0,0,0,15.6
+233250,0,0,0,15.6
+233251,0,0,0,15.6
+233252,0,0,0,15.6
+233253,0,0,0,15.6
+233254,0,0,0,15.6
+233255,333977.9857,0,0,15.6
+233256,0,0,0,15.6
+233257,0,369146.4042,0,15.6
+233258,0,0,0,15.6
+233259,0,0,0,15.6
+233260,0,0,0,15.6
+233261,0,0,666922.4368,15.6
+233262,0,0,0,15.6
+233263,0,0,0,15.6
+233264,0,0,0,15.6
+233265,0,0,0,15.6
+233266,0,0,0,15.6
+233267,0,0,0,15.6
+233268,0,0,0,15.6
+233269,0,0,0,15.6
+233270,0,0,0,15.6
+233271,0,0,0,15.6
+233272,0,0,0,15.6
+233273,0,0,0,15.6
+233274,0,0,0,15.6
+233275,0,0,0,15.6
+233276,0,0,0,15.6
+233277,0,0,0,15.6
+233278,0,0,0,15.6
+233279,0,0,0,15.6
+233280,0,0,0,15.6
+233281,0,0,0,15.6
+233282,0,0,0,15.6
+233283,0,0,0,15.6
+233284,0,0,0,15.6
+233285,0,0,0,15.6
+233286,0,0,0,15.6
+233287,0,0,0,15.6
+233288,0,0,0,15.6
+233289,0,0,0,15.6
+233290,0,0,0,15.6
+233291,335770.8361,0,0,15.6
+233292,0,369146.1151,0,15.6
+233293,0,0,0,15.6
+233294,0,0,0,15.6
+233295,0,0,0,15.6
+233296,0,0,666193.5293,15.6
+233297,0,0,0,15.6
+233298,0,0,0,15.6
+233299,0,0,0,15.6
+233300,0,0,0,15.6
+233301,0,0,0,15.6
+233302,0,0,0,15.6
+233303,0,0,0,15.6
+233304,0,0,0,15.6
+233305,0,0,0,15.6
+233306,0,0,0,15.6
+233307,0,0,0,15.6
+233308,0,0,0,15.6
+233309,0,0,0,15.6
+233310,0,0,0,15.6
+233311,0,0,0,15.6
+233312,0,0,0,15.6
+233313,0,0,0,15.6
+233314,0,0,0,15.6
+233315,0,0,0,15.6
+233316,0,0,0,15.6
+233317,0,0,0,15.6
+233318,0,0,0,15.6
+233319,0,0,0,15.6
+233320,0,0,0,15.6
+233321,0,0,0,15.6
+233322,0,0,0,15.6
+233323,0,0,0,15.6
+233324,0,0,0,15.6
+233325,0,0,0,15.6
+233326,0,0,0,15.6
+233327,330651.356,368977.8388,0,15.6
+233328,0,0,0,15.6
+233329,0,0,0,15.6
+233330,0,0,0,15.6
+233331,0,0,664672.1422,15.6
+233332,0,0,0,15.6
+233333,0,0,0,15.6
+233334,0,0,0,15.6
+233335,0,0,0,15.6
+233336,0,0,0,15.6
+233337,0,0,0,15.6
+233338,0,0,0,15.6
+233339,0,0,0,15.6
+233340,0,0,0,15.6
+233341,0,0,0,15.6
+233342,0,0,0,15.6
+233343,0,0,0,15.6
+233344,0,0,0,15.6
+233345,0,0,0,15.6
+233346,0,0,0,15.6
+233347,0,0,0,15.6
+233348,0,0,0,15.6
+233349,0,0,0,15.6
+233350,0,0,0,15.6
+233351,0,0,0,15.6
+233352,0,0,0,15.6
+233353,0,0,0,15.6
+233354,0,0,0,15.6
+233355,0,0,0,15.6
+233356,0,0,0,15.6
+233357,0,0,0,15.6
+233358,0,0,0,15.6
+233359,0,0,0,15.6
+233360,0,0,0,15.6
+233361,0,0,0,15.6
+233362,0,368997.3242,0,15.6
+233363,333825.2224,0,0,15.6
+233364,0,0,0,15.6
+233365,0,0,0,15.6
+233366,0,0,664921.4538,15.6
+233367,0,0,0,15.6
+233368,0,0,0,15.6
+233369,0,0,0,15.6
+233370,0,0,0,15.6
+233371,0,0,0,15.6
+233372,0,0,0,15.6
+233373,0,0,0,15.6
+233374,0,0,0,15.6
+233375,0,0,0,15.6
+233376,0,0,0,15.6
+233377,0,0,0,15.6
+233378,0,0,0,15.6
+233379,0,0,0,15.6
+233380,0,0,0,15.6
+233381,0,0,0,15.6
+233382,0,0,0,15.6
+233383,0,0,0,15.6
+233384,0,0,0,15.6
+233385,0,0,0,15.6
+233386,0,0,0,15.6
+233387,0,0,0,15.6
+233388,0,0,0,15.6
+233389,0,0,0,15.6
+233390,0,0,0,15.6
+233391,0,0,0,15.6
+233392,0,0,0,15.6
+233393,0,0,0,15.6
+233394,0,0,0,15.6
+233395,0,0,0,15.6
+233396,0,0,0,15.6
+233397,0,368996.6231,0,15.6
+233398,0,0,0,15.6
+233399,335518.5196,0,0,15.6
+233400,0,0,0,15.6
+233401,0,0,663541.3539,15.6
+233402,0,0,0,15.6
+233403,0,88.99160016,0,15.6
+233404,0,0,0,15.6
+233405,0,0,0,15.6
+233406,0,0,0,15.6
+233407,0,0,0,15.6
+233408,0,0,0,15.6
+233409,0,0,0,15.6
+233410,0,0,0,15.6
+233411,0,68.40275606,0,15.6
+233412,0,0,0,15.6
+233413,0,0,0,15.6
+233414,0,0,0,15.6
+233415,0,0,0,15.6
+233416,0,243.122939,0,15.6
+233417,0,0,0,15.6
+233418,0,0,0,15.6
+233419,0,0,0,15.6
+233420,0,0,0,15.6
+233421,0,0,0,15.6
+233422,0,0,0,15.6
+233423,0,0,0,15.6
+233424,0,0,0,15.6
+233425,0,0,0,15.6
+233426,0,0,0,15.6
+233427,0,0,0,15.6
+233428,0,0,0,15.6
+233429,0,0,0,15.6
+233430,0,0,0,15.6
+233431,0,0,0,15.6
+233432,0,369001.2652,0,15.6
+233433,0,0,0,15.6
+233434,0,0,0,15.6
+233435,330596.1078,0,0,15.6
+233436,0,2.970598557,663390.9887,15.6
+233437,0,0,0,15.6
+233438,0,0,0,15.6
+233439,0,89.15924953,0,15.6
+233440,0,0,0,15.6
+233441,0,0,0,15.6
+233442,0,0,0,15.6
+233443,0,0,0,15.6
+233444,0,0,0,15.6
+233445,0,0,0,15.6
+233446,0,0,0,15.6
+233447,0,3.452409391,0,15.6
+233448,0,0,0,15.6
+233449,0,72.02071488,0,15.6
+233450,0,0,0,15.6
+233451,0,0,0,15.6
+233452,0,0,0,15.6
+233453,0,0,0,15.6
+233454,0,253.5591808,0,15.6
+233455,0,0,0,15.6
+233456,0,0,0,15.6
+233457,0,0,0,15.6
+233458,0,0,0,15.6
+233459,0,0,0,15.6
+233460,0,0,0,15.6
+233461,0,0,0,15.6
+233462,0,0,0,15.6
+233463,0,436597.3864,0,15.6
+233464,0,0,0,15.6
+233465,0,0,0,15.6
+233466,0,0,0,15.6
+233467,0,368989.4589,0,15.6
+233468,0,0,0,15.6
+233469,0,0,0,15.6
+233470,0,0,0,15.6
+233471,333121.3785,0,664035.9959,15.6
+233472,0,0,0,15.6
+233473,0,0,0,15.6
+233474,0,0,0,15.6
+233475,0,436534.0381,0,15.6
+233476,0,0,0,15.6
+233477,0,0,0,15.6
+233478,0,0,0,15.6
+233479,0,0,0,15.6
+233480,0,0,0,15.6
+233481,0,0,0,15.6
+233482,0,0,0,15.6
+233483,0,0,0,15.6
+233484,0,0,0,15.6
+233485,0,0,0,15.6
+233486,0,0,0,15.6
+233487,0,436505.8952,0,15.6
+233488,0,0,0,15.6
+233489,0,0,0,15.6
+233490,0,0,0,15.6
+233491,0,0,0,15.6
+233492,0,0,0,15.6
+233493,0,0,0,15.6
+233494,0,0,0,15.6
+233495,0,0,0,15.6
+233496,0,0,0,15.6
+233497,0,0,0,15.6
+233498,0,0,0,15.6
+233499,0,436479.5434,0,15.6
+233500,0,0,0,15.6
+233501,0,0,0,15.6
+233502,0,368942.1658,0,15.6
+233503,0,0,0,15.6
+233504,0,0,0,15.6
+233505,0,0,0,15.6
+233506,0,0,664137.5913,15.6
+233507,335424.0614,0,0,15.6
+233508,0,0,0,15.6
+233509,0,0,0,15.6
+233510,0,0,0,15.6
+233511,0,436453.3314,0,15.6
+233512,0,0,0,15.6
+233513,0,0,0,15.6
+233514,0,0,0,15.6
+233515,0,0,0,15.6
+233516,0,0,0,15.6
+233517,0,0,0,15.6
+233518,0,0,0,15.6
+233519,0,0,0,15.6
+233520,0,0,0,17.8
+233521,0,433.5806536,0,17.8
+233522,0,437904.3222,0,17.8
+233523,0,787.0470138,0,17.8
+233524,0,1070.091549,0,17.8
+233525,0,1087.421666,0,17.8
+233526,0,1087.421645,0,17.8
+233527,0,39413.84345,0,17.8
+233528,0,25290.61693,0,17.8
+233529,0,26552.99551,0,17.8
+233530,0,28828.61183,0,17.8
+233531,0,29174.61858,0,17.8
+233532,0,29536.81534,0,17.8
+233533,0,29691.63946,0,17.8
+233534,0,29880.7061,0,17.8
+233535,0,30052.25932,0,17.8
+233536,0,30223.5526,0,17.8
+233537,0,399292.427,0,17.8
+233538,0,30582.57791,0,17.8
+233539,0,30906.14935,0,17.8
+233540,0,30565.36182,0,17.8
+233541,0,31245.91594,662473.0359,17.8
+233542,0,31245.91481,0,17.8
+233543,336416.6304,31245.91366,0,17.8
+233544,0,30293.4531,0,17.8
+233545,0,30462.70577,0,17.8
+233546,0,30631.70806,0,17.8
+233547,0,30800.46098,0,17.8
+233548,0,30800.4597,0,17.8
+233549,0,30800.45841,0,17.8
+233550,0,31137.22135,0,17.8
+233551,0,31137.22001,0,17.8
+233552,0,0,0,17.8
+233553,0,0,0,17.8
+233554,0,0,0,17.8
+233555,0,0,0,17.8
+233556,0,823.064329,0,17.8
+233557,0,1139.178517,0,17.8
+233558,0,823.0643094,0,17.8
+233559,0,947.6429537,0,17.8
+233560,0,982.836409,0,17.8
+233561,0,965.261056,0,17.8
+233562,0,982.8363808,0,17.8
+233563,0,965.261029,0,17.8
+233564,0,965.2610156,0,17.8
+233565,0,982.8363391,0,17.8
+233566,0,965.2609891,0,17.8
+233567,0,947.6428506,0,17.8
+233568,0,965.260963,0,17.8
+233569,0,965.26095,0,17.8
+233570,0,947.6428133,0,17.8
+233571,0,947.6428011,0,17.8
+233572,0,397235.1413,0,17.8
+233573,0,36681.69539,0,17.8
+233574,0,25150.81479,0,17.8
+233575,0,30031.53683,0,17.8
+233576,0,30373.34781,662566.9804,17.8
+233577,0,30714.13241,0,17.8
+233578,0,30526.16065,0,17.8
+233579,336872.5263,29784.14892,0,17.8
+233580,0,29784.14778,0,20
+233581,4330.142927,610184.7592,0,20
+233582,0,0,0,20
+233583,0,5310.127181,0,20
+233584,0,74093.57241,0,20
+233585,1047.859959,123202.7733,0,20
+233586,421.5399056,83579.90596,0,20
+233587,516.8327047,88189.76461,0,20
+233588,532.4821722,90383.36568,0,20
+233589,516.8327349,90635.88536,0,20
+233590,524.665304,103539.113,0,20
+233591,501.1195778,103271.6049,0,20
+233592,11714.8107,100340.4152,0,20
+233593,5080.319112,101881.853,0,20
+233594,7746.401581,101653.0363,0,20
+233595,7711.289752,101797.1868,0,20
+233596,7971.399372,101646.1498,0,20
+233597,7898.98699,101791.3011,0,20
+233598,8245.165357,101487.8378,0,20
+233599,8135.104729,101604.8437,0,20
+233600,8361.403271,101446.5702,0,20
+233601,8463.822372,101280.8442,0,20
+233602,8493.573251,101564.1447,0,20
+233603,8478.051623,101282.9348,0,20
+233604,8703.476287,101186.7413,0,20
+233605,8702.933228,101426.8473,0,20
+233606,8710.415475,101248.0487,0,20
+233607,8826.137727,100909.516,0,20
+233608,8926.679752,101512.3968,0,20
+233609,8801.852941,101535.8482,0,20
+233610,8941.557733,101219.2542,0,20
+233611,8652.123196,101253.1224,0,20
+233612,8379.017781,101723.1402,0,20
+233613,7174.201005,100702.1232,0,20
+233614,6487.36926,101065.1219,17775.89672,20
+233615,22881.03739,101217.506,9909.024829,20
+233616,17382.18629,100597.5006,13234.95731,20
+233617,18158.02995,101037.0232,13897.09043,20
+233618,20201.67072,100851.4472,15210.84963,20
+233619,19577.82007,104142.9201,15868.52907,20
+233620,21543.17834,110216.7742,16525.04068,20
+233621,19848.99329,107297.1765,17826.53071,20
+233622,22126.16643,108668.6205,19122.56281,20
+233623,21248.81349,110249.4474,18489.51467,20
+233624,20830.14508,110648.4109,20424.11396,20
+233625,21418.75079,110587.9794,20435.58107,20
+233626,22582.12816,112046.7107,21723.74666,20
+233627,21418.75074,111709.557,21736.6977,20
+233628,24315.44934,113895.6435,23021.70827,20
+233629,23739.19937,113095.128,24303.18202,20
+233630,24890.21598,113648.5636,23051.4994,20
+233631,25463.52712,115180.2662,25597.69497,20
+233632,26035.40847,114773.4914,25615.58976,20
+233633,26605.88684,116097.1094,25633.46584,20
+233634,27174.98549,116069.4348,26911.66935,20
+233635,28309.13839,116922.0759,28187.40439,20
+233636,27742.72848,117029.6925,26951.87431,20
+233637,29438.04245,117425.9622,28856.69409,20
+233638,29438.04207,118074.5984,29505.59047,20
+233639,29438.04255,118809.2457,28902.13157,20
+233640,30618.16729,118857.2039,30803.28681,21
+233641,11842.07611,94119.36496,7302.490281,21
+233642,8722.625831,92363.99988,3763.98887,21
+233643,8088.882051,92139.54227,3038.03559,21
+233644,8088.88191,91945.55762,4483.773276,21
+233645,8722.625822,91389.95334,3038.604039,21
+233646,8088.881988,91641.6547,3038.834493,21
+233647,8088.882057,91154.51502,3039.064963,21
+233648,8722.625814,90828.09327,4485.316919,21
+233649,8722.625754,90919.44853,3039.633144,21
+233650,8088.882002,90514.07857,3039.863497,21
+233651,9352.831213,90489.35981,4486.514734,21
+233652,8088.882012,90168.55087,3040.431439,21
+233653,9352.831144,90139.74486,3767.62745,21
+233654,8722.625262,89673.67073,4487.792766,21
+233655,9352.831107,89500.91984,3041.283484,21
+233656,8722.625756,89612.8379,4488.64444,21
+233657,9352.831214,89231.34446,4489.150515,21
+233658,9352.831124,89063.9909,3769.535733,21
+233659,9352.831154,88713.76367,4490.082598,21
+233660,9352.831126,88993.21651,4490.588445,21
+233661,9979.706667,88328.84557,4491.094205,21
+233662,9352.831123,88171.23891,4491.599888,21
+233663,9352.83108,88122.39236,5206.442033,21
+233664,10603.43406,88119.40923,4492.689742,21
+233665,9352.831164,87684.22233,5916.795363,21
+233666,9979.706571,87267.20731,4493.857105,21
+233667,9979.706039,87622.69449,5209.074993,21
+233668,9979.706577,87007.83858,5919.129951,21
+233669,10603.4345,86970.70204,4495.607729,21
+233670,9352.83111,86799.97544,6625.395871,21
+233671,10603.43456,86438.51752,5211.978412,21
+233672,10603.43446,86443.9551,5922.447471,21
+233673,9979.706525,85841.16829,5923.3288,21
+233674,10603.43405,86084.08402,5924.209934,21
+233675,10603.4345,85446.82511,5925.090877,21
+233676,9979.70653,85313.11986,6631.342954,21
+233677,10603.43454,85088.29267,5926.954732,21
+233678,10603.43455,84989.80463,7334.643687,21
+233679,10603.43453,84666.63931,5928.919289,21
+233680,10603.43409,84490.96552,7337.098791,21
+233681,10603.43452,83927.64685,5930.882834,21
+233682,11224.17569,84096.29506,7339.552679,21
+233683,10603.43404,83500.92883,7340.906507,21
+233684,10603.4345,83525.34343,6640.294097,21
+233685,11224.17572,83064.28219,7343.4864,21
+233686,10603.43449,82883.66501,7344.839213,21
+233687,11224.17593,82875.4267,7346.191654,21
+233688,10603.43453,82405.72682,7347.543724,21
+233689,11842.07335,82093.24962,7348.895399,21
+233690,10603.43448,82778.66798,8048.983215,21
+233691,11224.1757,82272.12991,7351.723105,21
+233692,11224.17586,82408.44671,8052.092768,21
+233693,10603.43454,82570.45077,8053.715855,21
+233694,11842.07381,81728.31301,7356.024318,21
+233695,11224.17544,81987.6647,8752.552194,21
+233696,11224.17585,82212.32241,7358.972185,21
+233697,11842.07357,80821.72529,8756.088584,21
+233698,10603.43453,82091.92694,8758.005569,21
+233699,11842.07382,81231.94605,7363.515365,21
+233700,11842.07378,80783.73485,9454.557152,21
+233701,0,33991.49611,0,21
+233702,0,30926.92782,0,21
+233703,0,29963.96186,0,21
+233704,0,29528.25625,0,21
+233705,0,28575.66206,0,21
+233706,0,27663.58318,0,21
+233707,0,26847.55311,0,21
+233708,0,26112.178,0,21
+233709,0,25471.66945,0,21
+233710,0,24958.69091,0,21
+233711,0,24282.13323,0,21
+233712,0,23571.78713,0,21
+233713,0,23100.4501,0,21
+233714,0,22517.14772,0,21
+233715,0,22098.60908,0,21
+233716,0,21500.0729,0,21
+233717,0,21251.12513,0,21
+233718,0,20793.26709,0,21
+233719,0,20542.80545,0,21
+233720,0,19909.00312,0,21
+233721,0,19651.75101,0,21
+233722,0,19192.2509,0,21
+233723,0,19150.10287,0,21
+233724,0,18306.54684,0,21
+233725,0,18252.73803,0,21
+233726,0,17761.0605,0,21
+233727,0,17380.68072,0,21
+233728,0,17250.54983,0,21
+233729,0,16647.09958,0,21
+233730,0,16370.44825,0,21
+233731,0,16109.62942,0,21
+233732,0,15672.93108,0,21
+233733,0,15646.33292,0,21
+233734,0,15164.09386,0,21
+233735,0,14905.02507,0,21
+233736,0,14453.2502,0,21
+233737,0,14209.52406,0,21
+233738,0,13943.12235,0,21
+233739,0,13903.94587,0,21
+233740,0,13245.44099,0,21
+233741,0,12976.36247,0,21
+233742,0,12931.85139,0,21
+233743,0,12497.85646,0,21
+233744,0,11994.38809,0,21
+233745,0,11954.49898,0,21
+233746,0,11510.59826,0,21
+233747,0,11218.75322,0,21
+233748,0,11001.44513,0,21
+233749,0,10494.33663,0,21
+233750,0,10471.56855,0,21
+233751,0,9992.958713,0,21
+233752,0,9717.511021,0,21
+233753,0,9465.439774,0,21
+233754,0,9002.385429,0,21
+233755,0,8943.381119,0,21
+233756,0,8477.02973,0,21
+233757,0,8440.941792,0,21
+233758,0,7911.589063,0,21
+233759,0,7684.455575,0,21
+233760,0,6892.832039,0,21
+233761,0,6864.232119,0,21
+233762,0,6629.294978,0,21
+233763,0,6345.914406,0,21
+233764,0,6094.343581,0,21
+233765,0,6075.697331,0,21
+233766,0,5592.850449,0,21
+233767,0,5775.134351,0,21
+233768,0,5294.90764,0,21
+233769,0,5502.254617,0,21
+233770,0,5014.208551,0,21
+233771,0,5014.208533,0,21
+233772,0,4712.962486,0,21
+233773,0,4712.962515,0,21
+233774,0,4428.931398,0,21
+233775,0,4434.129194,0,21
+233776,0,4167.484904,0,21
+233777,0,4138.782932,0,21
+233778,0,3885.178193,0,21
+233779,0,3860.706298,0,21
+233780,0,3576.235339,0,21
+233781,0,3841.435983,0,21
+233782,0,3284.263889,0,21
+233783,0,3308.926692,0,21
+233784,0,3264.789093,0,21
+233785,0,2970.287494,0,21
+233786,0,2682.994019,0,21
+233787,0,2678.128167,0,21
+233788,0,2407.550481,0,21
+233789,0,2618.242678,0,21
+233790,0,2093.300636,0,21
+233791,0,2103.436207,0,21
+233792,0,2032.872546,0,21
+233793,0,1738.50841,0,21
+233794,0,1483.556812,0,21
+233795,0,1426.665659,0,21
+233796,0,1108.094911,0,21
+233797,0,1086.188998,0,21
+233798,0,1046.258275,0,21
+233799,0,1009.419121,0,21
+233800,0,1009.419376,0,21
+233801,0,944.8863308,0,21
+233802,0,931.9167309,0,21
+233803,0,905.9118994,0,21
+233804,0,853.6359672,0,21
+233805,0,853.636119,0,21
+233806,0,774.523074,0,21
+233807,0,774.5232017,0,21
+233808,0,721.2875633,0,21
+233809,0,694.5134166,0,21
+233810,0,640.6367137,0,21
+233811,0,613.5270191,0,21
+233812,0,558.9447674,0,21
+233813,0,531.4630512,0,21
+233814,0,489.9874431,0,21
+233815,0,420.1339818,0,21
+233816,0,420.1340485,0,21
+233817,0,334.9542955,0,21
+233818,0,277.2081968,0,21
+233819,0,277.2082106,0,21
+233820,0,173.8177841,0,21
+233821,0,97.45895254,0,21
+233822,0,50.04738563,0,21
+233823,0,0,0,21
+233824,0,0,0,21
+233825,0,0,0,21
+233826,0,0,0,21
+233827,0,0,0,21
+233828,0,0,0,21
+233829,0,0,0,21
+233830,0,0,0,21
+233831,0,0,0,21
+233832,0,0,0,21
+233833,0,0,0,21
+233834,0,0,0,21
+233835,0,0,0,21
+233836,0,0,0,21
+233837,0,0,0,21
+233838,0,0,0,21
+233839,0,0,0,21
+233840,0,0,0,21
+233841,0,0,0,21
+233842,0,0,0,21
+233843,0,0,0,21
+233844,0,0,0,21
+233845,0,0,0,21
+233846,0,0,0,21
+233847,0,0,0,21
+233848,0,0,0,21
+233849,0,0,0,21
+233850,0,0,0,21
+233851,0,0,0,21
+233852,0,0,0,21
+233853,0,0,0,21
+233854,0,0,0,21
+233855,0,0,0,21
+233856,0,0,0,21
+233857,0,0,0,21
+233858,0,0,0,21
+233859,0,0,0,21
+233860,0,0,0,21
+233861,0,0,0,21
+233862,0,0,0,21
+233863,0,0,0,21
+233864,0,0,0,21
+233865,0,0,0,21
+233866,0,0,0,21
+233867,0,0,0,21
+233868,0,0,0,21
+233869,0,0,0,21
+233870,0,0,0,21
+233871,0,0,0,21
+233872,0,0,0,21
+233873,0,0,0,21
+233874,0,0,0,21
+233875,0,0,0,21
+233876,0,0,0,21
+233877,0,0,0,21
+233878,0,0,0,21
+233879,0,0,0,21
+233880,0,0,0,21
+233881,0,0,0,21
+233882,0,0,0,21
+233883,0,0,0,21
+233884,0,0,0,21
+233885,0,0,0,21
+233886,0,0,0,21
+233887,0,0,0,21
+233888,0,0,0,21
+233889,0,0,0,21
+233890,0,0,0,21
+233891,0,0,0,21
+233892,0,0,0,21
+233893,0,0,0,21
+233894,0,0,0,21
+233895,0,0,0,21
+233896,0,0,0,21
+233897,0,0,0,21
+233898,0,0,0,21
+233899,0,0,0,21
+233900,0,0,0,21
+233901,0,0,0,21
+233902,0,0,0,21
+233903,0,0,0,21
+233904,0,0,0,21
+233905,0,0,0,21
+233906,0,0,0,21
+233907,0,0,0,21
+233908,0,0,0,21
+233909,0,0,0,21
+233910,0,0,0,21
+233911,0,0,0,21
+233912,0,0,0,21
+233913,0,0,0,21
+233914,0,0,0,21
+233915,0,0,0,21
+233916,0,0,0,21
+233917,0,0,0,21
+233918,0,0,0,21
+233919,0,0,0,21
+233920,0,0,0,21
+233921,0,0,0,21
+233922,0,0,0,21
+233923,0,0,0,21
+233924,0,0,0,21
+233925,0,0,0,21
+233926,0,0,0,21
+233927,0,0,0,21
+233928,0,0,0,21
+233929,0,0,0,21
+233930,0,0,0,21
+233931,0,0,0,21
+233932,0,0,0,21
+233933,0,0,0,21
+233934,0,0,0,21
+233935,0,0,0,21
+233936,0,0,0,21
+233937,0,0,0,21
+233938,0,0,0,21
+233939,0,0,0,21
+233940,0,0,0,21
+233941,0,0,0,21
+233942,0,0,0,21
+233943,0,0,0,21
+233944,0,0,0,21
+233945,0,0,0,21
+233946,0,0,0,21
+233947,0,0,0,21
+233948,0,0,0,21
+233949,0,0,0,21
+233950,0,0,0,21
+233951,0,0,0,21
+233952,0,0,0,21
+233953,0,0,0,21
+233954,0,0,0,21
+233955,0,0,0,21
+233956,0,0,0,21
+233957,0,0,0,21
+233958,0,0,0,21
+233959,0,0,0,21
+233960,0,0,0,21
+233961,0,0,0,21
+233962,0,0,0,21
+233963,0,0,0,21
+233964,0,0,0,21
+233965,0,0,0,21
+233966,0,0,0,21
+233967,0,0,0,21
+233968,0,0,0,21
+233969,0,0,0,21
+233970,0,0,0,21
+233971,0,0,0,21
+233972,0,0,0,21
+233973,0,0,0,21
+233974,0,0,0,21
+233975,0,0,0,21
+233976,0,0,0,21
+233977,0,0,0,21
+233978,0,0,0,21
+233979,0,0,0,21
+233980,0,0,0,21
+233981,0,0,0,21
+233982,0,0,0,21
+233983,0,0,0,21
+233984,0,0,0,21
+233985,0,0,0,21
+233986,0,0,0,21
+233987,0,0,0,21
+233988,0,0,0,21
+233989,0,0,0,21
+233990,0,0,0,21
+233991,0,0,0,21
+233992,0,0,0,21
+233993,0,0,0,21
+233994,0,0,0,21
+233995,0,0,0,21
+233996,0,0,0,21
+233997,0,0,0,21
+233998,0,0,0,21
+233999,0,0,0,21
+234000,0,0,0,21
+234001,0,0,0,21
+234002,0,0,0,21
+234003,0,0,0,21
+234004,0,0,0,21
+234005,0,0,0,21
+234006,0,0,0,21
+234007,0,0,0,21
+234008,0,0,0,21
+234009,0,0,0,21
+234010,0,0,0,21
+234011,0,0,0,21
+234012,0,0,0,21
+234013,0,0,0,21
+234014,0,0,0,21
+234015,0,0,0,21
+234016,0,0,0,21
+234017,0,0,0,21
+234018,0,0,0,21
+234019,0,0,0,21
+234020,0,0,0,21
+234021,0,0,0,21
+234022,0,0,0,21
+234023,0,0,0,21
+234024,0,0,0,21
+234025,0,0,0,21
+234026,0,0,0,21
+234027,0,0,0,21
+234028,0,0,0,21
+234029,0,0,0,21
+234030,0,0,0,21
+234031,0,0,0,21
+234032,0,0,0,21
+234033,0,0,0,21
+234034,0,0,0,21
+234035,0,0,0,21
+234036,0,0,0,21
+234037,0,0,0,21
+234038,0,0,0,21
+234039,0,0,0,21
+234040,0,0,0,21
+234041,0,0,0,21
+234042,0,0,0,21
+234043,0,0,0,21
+234044,0,0,0,21
+234045,0,0,0,21
+234046,0,0,0,21
+234047,0,0,0,21
+234048,0,0,0,21
+234049,0,0,0,21
+234050,0,0,0,21
+234051,0,0,0,21
+234052,0,0,0,21
+234053,0,0,0,21
+234054,0,0,0,21
+234055,0,0,0,21
+234056,0,0,0,21
+234057,0,0,0,21
+234058,0,0,0,21
+234059,0,0,0,21
+234060,0,0,0,21
+234061,0,0,0,21
+234062,0,0,0,21
+234063,0,0,0,21
+234064,0,0,0,21
+234065,0,0,0,21
+234066,0,0,0,21
+234067,0,0,0,21
+234068,0,0,0,21
+234069,0,0,0,21
+234070,0,0,0,21
+234071,0,0,0,21
+234072,0,0,0,21
+234073,0,0,0,21
+234074,0,0,0,21
+234075,0,0,0,21
+234076,0,0,0,21
+234077,0,0,0,21
+234078,0,0,0,21
+234079,0,0,0,21
+234080,0,0,0,21
+234081,0,0,0,21
+234082,0,0,0,21
+234083,0,0,0,21
+234084,0,0,0,21
+234085,0,0,0,21
+234086,0,0,0,21
+234087,0,0,0,21
+234088,0,0,0,21
+234089,0,0,0,21
+234090,0,0,0,21
+234091,0,0,0,21
+234092,0,0,0,21
+234093,0,0,0,21
+234094,0,0,0,21
+234095,0,0,0,21
+234096,0,0,0,21
+234097,0,0,0,21
+234098,0,0,0,21
+234099,0,0,0,21
+234100,0,0,0,21
+234101,0,0,0,21
+234102,0,0,0,21
+234103,0,0,0,21
+234104,0,0,0,21
+234105,0,0,0,21
+234106,0,0,0,21
+234107,0,0,0,21
+234108,0,0,0,21
+234109,0,0,0,21
+234110,0,0,0,21
+234111,0,0,0,21
+234112,0,0,0,21
+234113,0,0,0,21
+234114,0,0,0,21
+234115,0,0,0,21
+234116,0,0,0,21
+234117,0,0,0,21
+234118,0,0,0,21
+234119,0,0,0,21
+234120,0,0,0,21
+234121,0,0,0,21
+234122,0,0,0,21
+234123,0,0,0,21
+234124,0,0,0,21
+234125,0,0,0,21
+234126,0,0,0,21
+234127,0,0,0,21
+234128,0,0,0,21
+234129,0,0,0,21
+234130,0,0,0,21
+234131,0,0,0,21
+234132,0,0,0,21
+234133,0,0,0,21
+234134,0,0,0,21
+234135,0,0,0,21
+234136,0,0,0,21
+234137,0,0,0,21
+234138,0,0,0,21
+234139,0,0,0,21
+234140,0,0,0,21
+234141,0,0,0,21
+234142,0,0,0,21
+234143,0,0,0,21
+234144,0,0,0,21
+234145,0,0,0,21
+234146,0,0,0,21
+234147,0,0,0,21
+234148,0,0,0,21
+234149,0,0,0,21
+234150,0,0,0,21
+234151,0,0,0,21
+234152,0,0,0,21
+234153,0,0,0,21
+234154,0,0,0,21
+234155,0,0,0,21
+234156,0,0,0,21
+234157,0,0,0,21
+234158,0,0,0,21
+234159,0,0,0,21
+234160,0,0,0,21
+234161,0,0,0,21
+234162,0,0,0,21
+234163,0,0,0,21
+234164,0,0,0,21
+234165,0,0,0,21
+234166,0,0,0,21
+234167,0,0,0,21
+234168,0,0,0,21
+234169,0,0,0,21
+234170,0,0,0,21
+234171,0,0,0,21
+234172,0,0,0,21
+234173,0,0,0,21
+234174,0,0,0,21
+234175,0,0,0,21
+234176,0,0,0,21
+234177,0,0,0,21
+234178,0,0,0,21
+234179,0,0,0,21
+234180,0,0,0,21
+234181,0,0,0,21
+234182,0,0,0,21
+234183,0,0,0,21
+234184,0,0,0,21
+234185,0,0,0,21
+234186,0,0,0,21
+234187,0,0,0,21
+234188,0,0,0,21
+234189,0,0,0,21
+234190,0,0,0,21
+234191,0,0,0,21
+234192,0,0,0,21
+234193,0,0,0,21
+234194,0,0,0,21
+234195,0,0,0,21
+234196,0,0,0,21
+234197,0,0,0,21
+234198,0,0,0,21
+234199,0,0,0,21
+234200,0,0,0,21
+234201,0,0,0,21
+234202,0,0,0,21
+234203,0,0,0,21
+234204,0,0,0,21
+234205,0,0,0,21
+234206,0,0,0,21
+234207,0,0,0,21
+234208,0,0,0,21
+234209,0,0,0,21
+234210,0,0,0,21
+234211,0,0,0,21
+234212,0,0,0,21
+234213,0,0,0,21
+234214,0,0,0,21
+234215,0,0,0,21
+234216,0,0,0,21
+234217,0,0,0,21
+234218,0,0,0,21
+234219,0,0,0,21
+234220,0,0,0,21
+234221,0,0,0,21
+234222,0,0,0,21
+234223,0,0,0,21
+234224,0,0,0,21
+234225,0,0,0,21
+234226,0,0,0,21
+234227,0,0,0,21
+234228,0,0,0,21
+234229,0,0,0,21
+234230,0,0,0,21
+234231,0,0,0,21
+234232,0,0,0,21
+234233,0,0,0,21
+234234,0,0,0,21
+234235,0,0,0,21
+234236,0,0,0,21
+234237,0,0,0,21
+234238,0,0,0,21
+234239,0,0,0,21
+234240,0,0,0,21
+234241,0,0,0,21
+234242,0,0,0,21
+234243,0,0,0,21
+234244,0,0,0,21
+234245,0,0,0,21
+234246,0,0,0,21
+234247,0,0,0,21
+234248,0,0,0,21
+234249,0,0,0,21
+234250,0,0,0,21
+234251,0,0,0,21
+234252,0,0,0,21
+234253,0,0,0,21
+234254,0,0,0,21
+234255,0,0,0,21
+234256,0,0,0,21
+234257,0,0,0,21
+234258,0,0,0,21
+234259,0,0,0,21
+234260,0,0,0,21
+234261,0,0,0,21
+234262,0,0,0,21
+234263,0,0,0,21
+234264,0,0,0,21
+234265,0,0,0,21
+234266,0,0,0,21
+234267,0,0,0,21
+234268,0,0,0,21
+234269,0,0,0,21
+234270,0,0,0,21
+234271,0,0,0,21
+234272,0,0,0,21
+234273,0,0,0,21
+234274,0,0,0,21
+234275,0,0,0,21
+234276,0,0,0,21
+234277,0,0,0,21
+234278,0,0,0,21
+234279,0,0,0,21
+234280,0,0,0,21
+234281,0,0,0,21
+234282,0,0,0,21
+234283,0,0,0,21
+234284,0,0,0,21
+234285,0,0,0,21
+234286,0,0,0,21
+234287,0,0,0,21
+234288,0,0,0,21
+234289,0,0,0,21
+234290,0,0,0,21
+234291,0,0,0,21
+234292,0,0,0,21
+234293,0,0,0,21
+234294,0,0,0,21
+234295,0,0,0,21
+234296,0,0,0,21
+234297,0,0,0,21
+234298,0,0,0,21
+234299,0,0,0,21
+234300,0,0,0,21
+234301,0,0,0,21
+234302,0,0,0,21
+234303,0,0,0,21
+234304,0,0,0,21
+234305,0,0,0,21
+234306,0,0,0,21
+234307,0,0,0,21
+234308,0,0,0,21
+234309,0,0,0,21
+234310,0,0,0,21
+234311,0,0,0,21
+234312,0,0,0,21
+234313,0,0,0,21
+234314,0,0,0,21
+234315,0,0,0,21
+234316,0,0,0,21
+234317,0,0,0,21
+234318,0,0,0,21
+234319,0,0,0,21
+234320,0,0,0,21
+234321,0,0,0,21
+234322,0,0,0,21
+234323,0,0,0,21
+234324,0,0,0,21
+234325,0,0,0,21
+234326,0,0,0,21
+234327,0,0,0,21
+234328,0,0,0,21
+234329,0,0,0,21
+234330,0,0,0,21
+234331,0,0,0,21
+234332,0,0,0,21
+234333,0,0,0,21
+234334,0,0,0,21
+234335,0,0,0,21
+234336,0,0,0,21
+234337,0,0,0,21
+234338,0,0,0,21
+234339,0,0,0,21
+234340,0,0,0,21
+234341,0,0,0,21
+234342,0,0,0,21
+234343,0,0,0,21
+234344,0,0,0,21
+234345,0,0,0,21
+234346,0,0,0,21
+234347,0,0,0,21
+234348,0,0,0,21
+234349,0,0,0,21
+234350,0,0,0,21
+234351,0,0,0,21
+234352,0,0,0,21
+234353,0,0,0,21
+234354,0,0,0,21
+234355,0,0,0,21
+234356,0,0,0,21
+234357,0,0,0,21
+234358,0,0,0,21
+234359,0,0,0,21
+234360,0,0,0,21
+234361,0,0,0,21
+234362,0,0,0,21
+234363,0,0,0,21
+234364,0,0,0,21
+234365,0,0,0,21
+234366,0,0,0,21
+234367,0,0,0,21
+234368,0,0,0,21
+234369,0,0,0,21
+234370,0,0,0,21
+234371,0,0,0,21
+234372,0,0,0,21
+234373,0,0,0,21
+234374,0,0,0,21
+234375,0,0,0,21
+234376,0,0,0,21
+234377,0,0,0,21
+234378,0,0,0,21
+234379,0,0,0,21
+234380,0,0,0,21
+234381,0,0,0,21
+234382,0,0,0,21
+234383,0,0,0,21
+234384,0,0,0,21
+234385,0,0,0,21
+234386,0,0,0,21
+234387,0,0,0,21
+234388,0,0,0,21
+234389,0,0,0,21
+234390,0,0,0,21
+234391,0,0,0,21
+234392,0,0,0,21
+234393,0,0,0,21
+234394,0,0,0,21
+234395,0,0,0,21
+234396,0,0,0,21
+234397,0,0,0,21
+234398,0,0,0,21
+234399,0,0,0,21
+234400,0,0,0,21
+234401,0,0,0,21
+234402,0,0,0,21
+234403,0,0,0,21
+234404,0,0,0,21
+234405,0,0,0,21
+234406,0,0,0,21
+234407,0,0,0,21
+234408,0,0,0,21
+234409,0,0,0,21
+234410,0,0,0,21
+234411,0,0,0,21
+234412,0,0,0,21
+234413,0,0,0,21
+234414,0,0,0,21
+234415,0,0,0,21
+234416,0,0,0,21
+234417,0,0,0,21
+234418,0,0,0,21
+234419,0,0,0,21
+234420,0,0,0,21
+234421,0,0,0,21
+234422,0,0,0,21
+234423,0,0,0,21
+234424,0,0,0,21
+234425,0,0,0,21
+234426,0,0,0,21
+234427,0,0,0,21
+234428,0,0,0,21
+234429,0,0,0,21
+234430,0,0,0,21
+234431,0,0,0,21
+234432,0,0,0,21
+234433,0,0,0,21
+234434,0,0,0,21
+234435,0,0,0,21
+234436,0,0,0,21
+234437,0,0,0,21
+234438,0,0,0,21
+234439,0,0,0,21
+234440,0,0,0,21
+234441,0,0,0,21
+234442,0,0,0,21
+234443,0,0,0,21
+234444,0,0,0,21
+234445,0,0,0,21
+234446,0,0,0,21
+234447,0,0,0,21
+234448,0,0,0,21
+234449,0,0,0,21
+234450,0,0,0,21
+234451,0,0,0,21
+234452,0,0,0,21
+234453,0,0,0,21
+234454,0,0,0,21
+234455,0,0,0,21
+234456,0,0,0,21
+234457,0,0,0,21
+234458,0,0,0,21
+234459,0,0,0,21
+234460,0,0,0,21
+234461,0,0,0,21
+234462,0,0,0,21
+234463,0,0,0,21
+234464,0,0,0,21
+234465,0,0,0,21
+234466,0,0,0,21
+234467,0,0,0,21
+234468,0,0,0,21
+234469,0,0,0,21
+234470,0,0,0,21
+234471,0,0,0,21
+234472,0,0,0,21
+234473,0,0,0,21
+234474,0,0,0,21
+234475,0,0,0,21
+234476,0,0,0,21
+234477,0,0,0,21
+234478,0,0,0,21
+234479,0,0,0,21
+234480,0,0,0,21
+234481,0,0,0,21
+234482,0,0,0,21
+234483,0,0,0,21
+234484,0,0,0,21
+234485,0,0,0,21
+234486,0,0,0,21
+234487,0,0,0,21
+234488,0,0,0,21
+234489,0,0,0,21
+234490,0,0,0,21
+234491,0,0,0,21
+234492,0,0,0,21
+234493,0,0,0,21
+234494,0,0,0,21
+234495,0,362.5213627,0,21
+234496,0,1361.700831,0,21
+234497,0,871.537541,0,21
+234498,0,1280.979427,0,21
+234499,0,1361.700873,0,21
+234500,0,1681.340409,0,21
+234501,0,1681.340431,0,21
+234502,0,1996.411872,0,21
+234503,0,1996.411904,0,21
+234504,0,2307.538304,0,21
+234505,0,2307.538347,0,21
+234506,0,2615.173942,0,21
+234507,0,2615.173998,0,21
+234508,0,2919.66569,0,21
+234509,0,2919.665762,0,21
+234510,0,3070.820581,0,21
+234511,0,3371.093863,0,21
+234512,0,3371.093961,0,21
+234513,0,3668.816583,0,21
+234514,0,3668.8167,0,21
+234515,0,3816.775531,0,21
+234516,0,4110.981334,0,21
+234517,0,4110.981484,0,21
+234518,0,4257.26187,0,21
+234519,0,4403.014112,0,21
+234520,0,4548.252133,0,21
+234521,0,4692.988964,0,21
+234522,0,4837.23683,0,21
+234523,0,4981.007224,0,21
+234524,0,5124.310974,0,21
+234525,0,5475.23501,0,21
+234526,0,6713.18718,0,21
+234527,0,6270.682777,0,21
+234528,0,7255.359595,0,21
+234529,0,7297.712882,0,21
+234530,0,7708.630919,0,21
+234531,0,8191.812937,0,21
+234532,0,8230.026679,0,21
+234533,0,8720.92912,0,21
+234534,0,9057.754072,0,21
+234535,0,9374.541839,0,21
+234536,0,9821.300453,0,21
+234537,0,10643.82659,0,21
+234538,0,12456.03701,0,21
+234539,0,12468.17407,0,21
+234540,0,13070.59244,0,21
+234541,0,0,0,21
+234542,0,0,0,21
+234543,0,0,0,21
+234544,0,0,0,21
+234545,0,0,716747.9249,21
+234546,329652.5409,367936.8328,0,21
+234547,0,0,0,21
+234548,0,0,0,21
+234549,0,0,0,21
+234550,0,0,0,21
+234551,0,0,0,21
+234552,0,0,0,21
+234553,0,0,0,21
+234554,0,0,0,21
+234555,0,0,0,21
+234556,0,0,0,21
+234557,0,0,0,21
+234558,0,0,0,21
+234559,0,0,0,21
+234560,0,0,0,21
+234561,0,0,0,21
+234562,0,0,0,21
+234563,0,0,0,21
+234564,0,0,0,21
+234565,0,0,0,21
+234566,0,0,0,21
+234567,0,0,0,21
+234568,0,0,0,21
+234569,0,0,0,21
+234570,0,0,0,21
+234571,0,0,0,21
+234572,0,0,0,21
+234573,0,0,0,21
+234574,0,0,0,21
+234575,0,0,0,21
+234576,0,0,0,21
+234577,0,0,0,21
+234578,0,0,0,21
+234579,0,0,712338.1807,21
+234580,0,0,0,21
+234581,331986.4808,368927.1339,0,21
+234582,0,0,0,21
+234583,0,0,0,21
+234584,0,0,0,21
+234585,0,0,0,21
+234586,0,0,0,21
+234587,0,0,0,21
+234588,0,0,0,21
+234589,0,0,0,21
+234590,0,0,0,21
+234591,0,0,0,21
+234592,0,0,0,21
+234593,0,0,0,21
+234594,0,0,0,21
+234595,0,0,0,21
+234596,0,0,0,21
+234597,0,0,0,21
+234598,0,0,0,21
+234599,0,0,0,21
+234600,0,0,0,15.6
+234601,0,0,0,15.6
+234602,0,0,0,15.6
+234603,0,0,0,15.6
+234604,0,0,0,15.6
+234605,0,0,0,15.6
+234606,0,0,0,15.6
+234607,0,0,0,15.6
+234608,0,0,0,15.6
+234609,0,0,0,15.6
+234610,0,0,0,15.6
+234611,0,0,0,15.6
+234612,0,0,0,15.6
+234613,0,0,707653.7714,15.6
+234614,0,0,0,15.6
+234615,0,0,0,15.6
+234616,333579.9316,368935.4255,0,15.6
+234617,0,0,0,15.6
+234618,0,0,0,15.6
+234619,0,0,0,15.6
+234620,0,0,0,15.6
+234621,0,0,0,15.6
+234622,0,0,0,15.6
+234623,0,0,0,15.6
+234624,0,0,0,15.6
+234625,0,0,0,15.6
+234626,0,0,0,15.6
+234627,0,0,0,15.6
+234628,0,0,0,15.6
+234629,0,0,0,15.6
+234630,0,0,0,15.6
+234631,0,0,0,15.6
+234632,0,0,0,15.6
+234633,0,0,0,15.6
+234634,0,0,0,15.6
+234635,0,0,0,15.6
+234636,0,0,0,15.6
+234637,0,0,0,15.6
+234638,0,0,0,15.6
+234639,0,0,0,15.6
+234640,0,0,0,15.6
+234641,0,0,0,15.6
+234642,0,0,0,15.6
+234643,0,0,0,15.6
+234644,0,0,0,15.6
+234645,0,0,0,15.6
+234646,0,0,0,15.6
+234647,0,0,0,15.6
+234648,0,0,704009.0644,15.6
+234649,0,0,0,15.6
+234650,0,0,0,15.6
+234651,334673.5631,368943.4334,0,15.6
+234652,0,0,0,15.6
+234653,0,0,0,15.6
+234654,0,0,0,15.6
+234655,0,0,0,15.6
+234656,0,0,0,15.6
+234657,0,0,0,15.6
+234658,0,0,0,15.6
+234659,0,0,0,15.6
+234660,0,0,0,15.6
+234661,0,0,0,15.6
+234662,0,0,0,15.6
+234663,0,0,0,15.6
+234664,0,0,0,15.6
+234665,0,0,0,15.6
+234666,0,0,0,15.6
+234667,0,0,0,15.6
+234668,0,0,0,15.6
+234669,0,0,0,15.6
+234670,0,0,0,15.6
+234671,0,0,0,15.6
+234672,0,0,0,15.6
+234673,0,0,0,15.6
+234674,0,0,0,15.6
+234675,0,0,0,15.6
+234676,0,0,0,15.6
+234677,0,0,0,15.6
+234678,0,0,0,15.6
+234679,0,0,0,15.6
+234680,0,0,0,15.6
+234681,0,0,0,15.6
+234682,0,0,0,15.6
+234683,0,0,700860.8401,15.6
+234684,0,0,0,15.6
+234685,0,0,0,15.6
+234686,0,368945.8752,0,15.6
+234687,334390.8281,0,0,15.6
+234688,0,0,0,15.6
+234689,0,0,0,15.6
+234690,0,0,0,15.6
+234691,0,0,0,15.6
+234692,0,0,0,15.6
+234693,0,0,0,15.6
+234694,0,0,0,15.6
+234695,0,0,0,15.6
+234696,0,0,0,15.6
+234697,0,0,0,15.6
+234698,0,0,0,15.6
+234699,0,0,0,15.6
+234700,0,0,0,15.6
+234701,0,0,0,15.6
+234702,0,0,0,15.6
+234703,0,0,0,15.6
+234704,0,0,0,15.6
+234705,0,0,0,15.6
+234706,0,0,0,15.6
+234707,0,0,0,15.6
+234708,0,0,0,15.6
+234709,0,0,0,15.6
+234710,0,0,0,15.6
+234711,0,0,0,15.6
+234712,0,0,0,15.6
+234713,0,0,0,15.6
+234714,0,0,0,15.6
+234715,0,0,0,15.6
+234716,0,0,0,15.6
+234717,0,0,0,15.6
+234718,0,0,697541.0646,15.6
+234719,0,0,0,15.6
+234720,0,0,0,15.6
+234721,0,368945.6127,0,15.6
+234722,0,0,0,15.6
+234723,334029.3521,0,0,15.6
+234724,0,0,0,15.6
+234725,0,0,0,15.6
+234726,0,0,0,15.6
+234727,0,0,0,15.6
+234728,0,0,0,15.6
+234729,0,0,0,15.6
+234730,0,0,0,15.6
+234731,0,0,0,15.6
+234732,0,0,0,15.6
+234733,0,0,0,15.6
+234734,0,0,0,15.6
+234735,0,0,0,15.6
+234736,0,0,0,15.6
+234737,0,0,0,15.6
+234738,0,0,0,15.6
+234739,0,0,0,15.6
+234740,0,0,0,15.6
+234741,0,0,0,15.6
+234742,0,0,0,15.6
+234743,0,0,0,15.6
+234744,0,0,0,15.6
+234745,0,0,0,15.6
+234746,0,0,0,15.6
+234747,0,0,0,15.6
+234748,0,0,0,15.6
+234749,0,0,0,15.6
+234750,0,0,0,15.6
+234751,0,0,0,15.6
+234752,0,0,0,15.6
+234753,0,0,694882.6769,15.6
+234754,0,0,0,15.6
+234755,0,0,0,15.6
+234756,0,368945.8727,0,15.6
+234757,0,0,0,15.6
+234758,0,0,0,15.6
+234759,335855.5797,0,0,15.6
+234760,0,0,0,15.6
+234761,0,0,0,15.6
+234762,0,0,0,15.6
+234763,0,0,0,15.6
+234764,0,0,0,15.6
+234765,0,0,0,15.6
+234766,0,0,0,15.6
+234767,0,0,0,15.6
+234768,0,0,0,15.6
+234769,0,0,0,15.6
+234770,0,0,0,15.6
+234771,0,0,0,15.6
+234772,0,0,0,15.6
+234773,0,0,0,15.6
+234774,0,0,0,15.6
+234775,0,0,0,15.6
+234776,0,0,0,15.6
+234777,0,0,0,15.6
+234778,0,0,0,15.6
+234779,0,0,0,15.6
+234780,0,0,0,15.6
+234781,0,0,0,15.6
+234782,0,0,0,15.6
+234783,0,0,0,15.6
+234784,0,0,0,15.6
+234785,0,0,0,15.6
+234786,0,0,0,15.6
+234787,0,0,0,15.6
+234788,0,0,691667.9079,15.6
+234789,0,0,0,15.6
+234790,0,0,0,15.6
+234791,0,368945.8752,0,15.6
+234792,0,0,0,15.6
+234793,0,0,0,15.6
+234794,0,0,0,15.6
+234795,340421.3027,0,0,15.6
+234796,0,0,0,15.6
+234797,0,0,0,15.6
+234798,0,0,0,15.6
+234799,0,0,0,15.6
+234800,0,0,0,15.6
+234801,0,0,0,15.6
+234802,0,0,0,15.6
+234803,0,0,0,15.6
+234804,0,0,0,15.6
+234805,0,0,0,15.6
+234806,0,0,0,15.6
+234807,0,0,0,15.6
+234808,0,0,0,15.6
+234809,0,0,0,15.6
+234810,0,0,0,15.6
+234811,0,0,0,15.6
+234812,0,0,0,15.6
+234813,0,0,0,15.6
+234814,0,0,0,15.6
+234815,0,0,0,15.6
+234816,0,0,0,15.6
+234817,0,0,0,15.6
+234818,0,0,0,15.6
+234819,0,0,0,15.6
+234820,0,0,0,15.6
+234821,0,0,0,15.6
+234822,0,0,0,15.6
+234823,0,0,688394.7568,15.6
+234824,0,0,0,15.6
+234825,0,0,0,15.6
+234826,0,368945.5521,0,15.6
+234827,0,0,0,15.6
+234828,0,0,0,15.6
+234829,0,0,0,15.6
+234830,0,0,0,15.6
+234831,340421.1961,0,0,15.6
+234832,0,0,0,15.6
+234833,0,0,0,15.6
+234834,0,0,0,15.6
+234835,0,0,0,15.6
+234836,0,0,0,15.6
+234837,0,0,0,15.6
+234838,0,0,0,15.6
+234839,0,0,0,15.6
+234840,0,0,0,15.6
+234841,0,0,0,15.6
+234842,0,0,0,15.6
+234843,0,0,0,15.6
+234844,0,0,0,15.6
+234845,0,0,0,15.6
+234846,0,0,0,15.6
+234847,0,0,0,15.6
+234848,0,0,0,15.6
+234849,0,0,0,15.6
+234850,0,0,0,15.6
+234851,0,0,0,15.6
+234852,0,0,0,15.6
+234853,0,0,0,15.6
+234854,0,0,0,15.6
+234855,0,0,0,15.6
+234856,0,0,0,15.6
+234857,0,0,0,15.6
+234858,0,0,686404.1506,15.6
+234859,0,0,0,15.6
+234860,0,0,0,15.6
+234861,0,368945.8752,0,15.6
+234862,0,0,0,15.6
+234863,0,0,0,15.6
+234864,0,0,0,15.6
+234865,0,0,0,15.6
+234866,0,0,0,15.6
+234867,340420.5603,0,0,15.6
+234868,0,0,0,15.6
+234869,0,0,0,15.6
+234870,0,0,0,15.6
+234871,0,0,0,15.6
+234872,0,0,0,15.6
+234873,0,0,0,15.6
+234874,0,0,0,15.6
+234875,0,0,0,15.6
+234876,0,0,0,15.6
+234877,0,0,0,15.6
+234878,0,0,0,15.6
+234879,0,0,0,15.6
+234880,0,0,0,15.6
+234881,0,0,0,15.6
+234882,0,0,0,15.6
+234883,0,0,0,15.6
+234884,0,0,0,15.6
+234885,0,0,0,15.6
+234886,0,0,0,15.6
+234887,0,0,0,15.6
+234888,0,0,0,15.6
+234889,0,0,0,15.6
+234890,0,0,0,15.6
+234891,0,0,0,15.6
+234892,0,0,684574.9011,15.6
+234893,0,0,0,15.6
+234894,0,0,0,15.6
+234895,0,0,0,15.6
+234896,0,369003.8978,0,15.6
+234897,0,0,0,15.6
+234898,0,0,0,15.6
+234899,0,0,0,15.6
+234900,0,0,0,15.6
+234901,0,0,0,15.6
+234902,0,0,0,15.6
+234903,340415.4995,0,0,15.6
+234904,0,0,0,15.6
+234905,0,0,0,15.6
+234906,0,0,0,15.6
+234907,0,0,0,15.6
+234908,0,0,0,15.6
+234909,0,0,0,15.6
+234910,0,0,0,15.6
+234911,0,0,0,15.6
+234912,0,0,0,15.6
+234913,0,0,0,15.6
+234914,0,0,0,15.6
+234915,0,0,0,15.6
+234916,0,0,0,15.6
+234917,0,0,0,15.6
+234918,0,0,0,15.6
+234919,0,0,0,15.6
+234920,0,0,0,15.6
+234921,0,0,0,15.6
+234922,0,0,0,15.6
+234923,0,0,0,15.6
+234924,0,0,0,15.6
+234925,0,0,0,15.6
+234926,0,0,682652.1459,15.6
+234927,0,0,0,15.6
+234928,0,0,0,15.6
+234929,0,0,0,15.6
+234930,0,0,0,15.6
+234931,0,0,0,15.6
+234932,0,369028.6941,0,15.6
+234933,0,0,0,15.6
+234934,0,0,0,15.6
+234935,0,0,0,15.6
+234936,0,0,0,15.6
+234937,340358.1132,0,0,15.6
+234938,0,0,0,15.6
+234939,0,0,0,15.6
+234940,0,0,0,15.6
+234941,0,0,0,15.6
+234942,0,0,0,15.6
+234943,0,0,0,15.6
+234944,0,0,0,15.6
+234945,0,0,0,15.6
+234946,0,0,0,15.6
+234947,0,0,0,15.6
+234948,0,0,0,15.6
+234949,0,0,0,15.6
+234950,0,0,0,15.6
+234951,0,0,0,15.6
+234952,0,0,0,15.6
+234953,0,0,0,15.6
+234954,0,0,0,15.6
+234955,0,0,0,15.6
+234956,0,0,0,15.6
+234957,0,0,0,15.6
+234958,0,0,0,15.6
+234959,0,0,0,15.6
+234960,0,0,680732.3972,17.8
+234961,0,0,0,17.8
+234962,449128.5473,0,0,17.8
+234963,0,0,0,17.8
+234964,0,0,0,17.8
+234965,0,0,0,17.8
+234966,0,369053.019,0,17.8
+234967,0,0,0,17.8
+234968,0,0,0,17.8
+234969,0,0,0,17.8
+234970,0,0,0,17.8
+234971,340303.1827,1204.443537,0,17.8
+234972,0,3685.176836,0,17.8
+234973,0,4597.847274,0,17.8
+234974,0,4646.502353,0,17.8
+234975,0,5411.949165,0,17.8
+234976,0,5702.551922,0,17.8
+234977,0,6329.344952,0,17.8
+234978,0,6752.775542,0,17.8
+234979,0,7050.826389,0,17.8
+234980,0,1011.188902,0,17.8
+234981,0,1090.829347,0,17.8
+234982,0,1144.706425,0,17.8
+234983,0,1162.075138,0,17.8
+234984,0,0,0,17.8
+234985,0,0,0,17.8
+234986,0,0,0,17.8
+234987,0,0,0,17.8
+234988,0,0,0,17.8
+234989,0,0,0,17.8
+234990,0,0,0,17.8
+234991,0,0,0,17.8
+234992,0,0,0,17.8
+234993,0,0,0,17.8
+234994,0,0,680109.5969,17.8
+234995,0,0,0,17.8
+234996,0,0,0,17.8
+234997,0,3228.819687,0,17.8
+234998,12925.09703,10444.14451,0,17.8
+234999,29480.0862,6684.284741,0,17.8
+235000,25724.77176,377015.7739,0,17.8
+235001,37844.36901,8400.19737,0,17.8
+235002,31292.03986,9265.070936,0,17.8
+235003,34622.5433,11145.16549,0,17.8
+235004,34445.67606,10550.32243,0,17.8
+235005,375356.9401,10815.05802,0,17.8
+235006,35185.32783,11273.9887,0,17.8
+235007,35569.45338,11510.32192,0,17.8
+235008,35739.27315,11931.77593,0,17.8
+235009,36025.03932,11940.62268,0,17.8
+235010,39351.45893,12117.05988,0,17.8
+235011,38745.75905,12619.789,0,17.8
+235012,39055.76126,12528.30531,0,17.8
+235013,42179.63612,13020.54321,0,17.8
+235014,41648.93187,12820.81164,0,17.8
+235015,42158.61564,13428.60536,0,17.8
+235016,42463.06424,1866.653947,0,17.8
+235017,42933.6996,1883.168152,0,17.8
+235018,43501.41586,1891.864641,0,17.8
+235019,43601.62917,1933.518237,0,17.8
+235020,44172.09849,1975.052366,0,20
+235021,912202.6865,234241.4363,0,20
+235022,133471.2266,23841.45459,0,20
+235023,7329.286853,75237.79146,0,20
+235024,111094.5628,64883.91784,0,20
+235025,157361.4462,78959.26326,0,20
+235026,127785.1409,71552.01153,0,20
+235027,121634.8092,71361.31054,0,20
+235028,126405.1872,71480.49601,0,20
+235029,126272.9445,71697.73286,0,20
+235030,126361.8874,71149.85946,0,20
+235031,126103.6831,71111.58745,0,20
+235032,126330.4942,70553.39997,0,20
+235033,126392.6778,70879.27921,0,20
+235034,126183.9456,70010.52922,0,20
+235035,126347.5676,69938.5559,0,20
+235036,126623.2051,70282.18214,0,20
+235037,126474.3784,69649.37512,0,20
+235038,126513.2922,69163.70709,0,20
+235039,126776.1705,69905.00103,0,20
+235040,126898.1612,68810.05303,0,20
+235041,126966.5521,69168.69967,0,20
+235042,127324.9044,68957.44457,0,20
+235043,127154.7838,68571.22772,0,20
+235044,127746.148,68767.9634,0,20
+235045,127494.491,68182.08046,0,20
+235046,127810.8807,68237.63801,0,20
+235047,128062.7719,68169.44508,0,20
+235048,128129.8063,67942.56826,0,20
+235049,128532.712,67834.7936,0,20
+235050,128438.6859,67938.23547,0,20
+235051,128588.2576,67257.33604,0,20
+235052,128894.4657,67367.99029,0,20
+235053,128736.4603,67542.98687,0,20
+235054,129027.8237,67057.89665,0,20
+235055,129223.9232,66937.21102,0,20
+235056,129030.1135,67057.44813,0,20
+235057,129239.5297,66920.37153,0,20
+235058,129330.9654,66669.65513,0,20
+235059,129536.4295,66709.36775,0,20
+235060,129513.687,66424.62426,0,20
+235061,129664.8392,66596.79069,0,20
+235062,129682.0546,65824.11485,0,20
+235063,129862.0329,66596.81713,0,20
+235064,129955.3534,65945.63817,0,20
+235065,129991.2909,66035.75724,0,20
+235066,130023.6327,65776.51638,0,20
+235067,130264.3995,66005.92815,0,20
+235068,130009.1729,65462.8576,0,20
+235069,130474.1276,65607.94407,0,20
+235070,130429.6063,65425.60972,0,20
+235071,130338.674,65568.91129,0,20
+235072,130745.3067,65365.72325,0,20
+235073,130585.842,65011.29586,0,20
+235074,130661.0438,65378.57334,0,20
+235075,130780.3754,64822.44474,0,20
+235076,130884.4767,65065.95925,0,20
+235077,130962.8597,64805.32934,0,20
+235078,131074.2943,64787.67433,0,20
+235079,131063.116,64731.36403,0,20
+235080,131220.263,64460.56082,0,21
+235081,122499.961,60154.53238,0,21
+235082,121630.5258,58778.45674,0,21
+235083,121322.0079,59014.24545,0,21
+235084,121154.0678,58651.32153,0,21
+235085,120691.0734,58065.33578,0,21
+235086,120952.953,57820.37742,0,21
+235087,120075.4069,57962.4542,0,21
+235088,120635.6525,57424.14832,0,21
+235089,120027.7581,57114.86968,0,21
+235090,120154.458,56984.19541,0,21
+235091,119570.1766,56632.71686,0,21
+235092,120127.5257,56334.69759,0,21
+235093,119221.0314,56079.20536,0,21
+235094,119511.002,55872.17763,0,21
+235095,119350.845,55571.06141,0,21
+235096,118872.2282,55053.44345,0,21
+235097,119163.18,55374.81465,0,21
+235098,118564.0333,54673.47198,0,21
+235099,118983.7141,54707.05385,0,21
+235100,118224.3191,54398.04193,0,21
+235101,118669.7759,54001.62882,0,21
+235102,118187.164,54037.1547,0,21
+235103,117916.7595,53568.20234,0,21
+235104,118157.1314,53475.32083,0,21
+235105,117723.4619,53282.72789,0,21
+235106,117987.4921,52908.65194,0,21
+235107,117188.8354,52655.18324,0,21
+235108,117585.4275,52786.88784,0,21
+235109,117301.8106,52205.5597,0,21
+235110,117041.8011,51957.86085,0,21
+235111,117026.663,51937.06995,0,21
+235112,116526.9717,51715.00661,0,21
+235113,116313.6283,51410.16083,0,21
+235114,115880.78,51279.00055,0,21
+235115,115513.0488,50859.21186,0,21
+235116,115177.6391,50855.13306,0,21
+235117,114803.1703,50597.81548,0,21
+235118,114708.1091,50464.41142,0,21
+235119,113818.0136,50205.50553,0,21
+235120,113976.5229,49914.28433,0,21
+235121,113154.7636,49750.78555,0,21
+235122,112999.2499,49374.68066,0,21
+235123,112598.98,49407.92282,0,21
+235124,112152.0437,49207.25757,0,21
+235125,111768.7778,48874.38605,0,21
+235126,111286.143,48665.7246,0,21
+235127,110913.3289,48375.69472,0,21
+235128,110421.4941,48475.3167,0,21
+235129,110405.9982,48122.60247,0,21
+235130,109393.4279,47725.73509,0,21
+235131,109371.4332,47763.06413,0,21
+235132,109012.0694,47451.635,0,21
+235133,107977.8157,47336.69666,0,21
+235134,108311.8543,47026.43155,0,21
+235135,107670.3423,46947.80981,0,21
+235136,106823.8728,46777.26431,0,21
+235137,106823.725,46236.42045,0,21
+235138,106244.9229,46578.32138,0,21
+235139,105823.5206,45873.25457,0,21
+235140,105412.2671,46058.45309,0,21
+235141,41674.69927,11313.24462,0,21
+235142,39506.79474,9287.270818,0,21
+235143,38662.67795,8176.725258,0,21
+235144,37907.51664,7905.979535,0,21
+235145,37580.08536,6933.52573,0,21
+235146,36711.67538,6750.187681,0,21
+235147,36326.7406,6091.152305,0,21
+235148,35527.67285,5603.494959,0,21
+235149,35236.87032,5192.956074,0,21
+235150,34737.96525,4479.950447,0,21
+235151,34083.76311,4568.299759,0,21
+235152,33361.89576,3572.289548,0,21
+235153,33286.35124,3413.45649,0,21
+235154,32591.95191,2912.437047,0,21
+235155,31995.22118,2508.82366,0,21
+235156,31607.65378,2090.252151,0,21
+235157,30996.05929,2107.91178,0,21
+235158,30613.9726,1729.303463,0,21
+235159,30090.69779,1700.731332,0,21
+235160,29627.68594,1476.434876,0,21
+235161,29109.91558,1285.726256,0,21
+235162,28609.74307,1238.522401,0,21
+235163,28191.83165,1041.681834,0,21
+235164,27618.20563,830.1681734,0,21
+235165,27162.90573,622.4810643,0,21
+235166,26712.47349,592.4256804,0,21
+235167,26254.10996,348.5107474,0,21
+235168,25789.08425,314.4966626,0,21
+235169,25256.31446,295.8505529,0,21
+235170,24961.77407,232.2081849,0,21
+235171,24230.46053,213.42665,0,21
+235172,24141.50011,160.6815226,0,21
+235173,23429.08611,141.5908775,0,21
+235174,23370.00711,141.5908353,0,21
+235175,22702.74686,122.3199687,0,21
+235176,22457.81904,102.8448838,0,21
+235177,22016.79029,102.8448553,0,21
+235178,21748.77325,63.13561214,0,21
+235179,20987.99543,83.13268808,0,21
+235180,21028.92251,42.7765159,0,21
+235181,20539.94448,42.77653406,0,21
+235182,19980.09121,21.90574138,0,21
+235183,19918.53351,0,0,21
+235184,19284.76621,0,0,21
+235185,18996.90958,0,0,21
+235186,18572.36638,0,0,21
+235187,18402.80024,0,0,21
+235188,17880.36115,0,0,21
+235189,17539.98607,0,0,21
+235190,17285.40158,0,0,21
+235191,16725.75293,0,0,21
+235192,16565.78902,0,0,21
+235193,16208.59152,0,0,21
+235194,15633.76642,0,0,21
+235195,15511.02671,0,0,21
+235196,15097.29252,0,0,21
+235197,14816.6542,0,0,21
+235198,14246.73062,0,0,21
+235199,14202.39658,0,0,21
+235200,13639.15862,0,0,21
+235201,13475.84012,0,0,21
+235202,12922.10716,0,0,21
+235203,12772.26477,0,0,21
+235204,12347.87195,0,0,21
+235205,12184.80187,0,0,21
+235206,11551.15951,0,0,21
+235207,11636.89235,0,0,21
+235208,11137.23561,0,0,21
+235209,10735.86842,0,0,21
+235210,10683.67279,0,0,21
+235211,10090.66745,0,0,21
+235212,10163.85846,0,0,21
+235213,9602.829088,0,0,21
+235214,9398.586454,0,0,21
+235215,9061.703948,0,0,21
+235216,8812.524912,0,0,21
+235217,8515.314852,0,0,21
+235218,8238.425564,0,0,21
+235219,7948.875875,0,0,21
+235220,7682.45984,0,0,21
+235221,7235.099544,0,0,21
+235222,7174.17734,0,0,21
+235223,6732.643807,0,0,21
+235224,6619.719766,0,0,21
+235225,6202.121656,0,0,21
+235226,6187.810713,0,0,21
+235227,5899.770004,0,0,21
+235228,5869.297259,0,0,21
+235229,5604.848718,0,0,21
+235230,5682.840849,0,0,21
+235231,5322.345031,0,0,21
+235232,5375.422818,0,0,21
+235233,5131.909515,0,0,21
+235234,5106.257177,0,0,21
+235235,4929.534863,0,0,21
+235236,4805.591898,0,0,21
+235237,4644.306439,0,0,21
+235238,4627.533196,0,0,21
+235239,4450.644945,0,0,21
+235240,4339.979975,0,0,21
+235241,4283.990135,0,0,21
+235242,4021.907493,0,0,21
+235243,3978.640529,0,0,21
+235244,3965.56053,0,0,21
+235245,3698.780785,0,0,21
+235246,3642.001893,0,0,21
+235247,3644.146478,0,0,21
+235248,3343.649745,0,0,21
+235249,3332.680721,0,0,21
+235250,3173.399146,0,0,21
+235251,3152.401001,0,0,21
+235252,2858.679733,0,0,21
+235253,2957.547322,0,0,21
+235254,2682.908967,0,0,21
+235255,2661.703226,0,0,21
+235256,2624.628971,0,0,21
+235257,2329.548189,0,0,21
+235258,2329.548074,0,0,21
+235259,2286.699405,0,0,21
+235260,1999.166377,0,0,21
+235261,1616.806929,0,0,21
+235262,1586.781126,0,0,21
+235263,1276.68979,0,0,21
+235264,1229.840394,0,0,21
+235265,1199.379425,0,0,21
+235266,3704.947892,0,0,21
+235267,2261.400465,0,0,21
+235268,2511.257051,0,0,21
+235269,2326.409752,0,0,21
+235270,2435.114487,0,0,21
+235271,2011.493616,0,0,21
+235272,2240.465465,0,0,21
+235273,1816.954156,0,0,21
+235274,1909.82456,0,0,21
+235275,1624.952204,0,0,21
+235276,1591.260429,0,0,21
+235277,1425.241169,0,0,21
+235278,1439.370564,0,0,21
+235279,1114.747118,0,0,21
+235280,1114.747088,0,0,21
+235281,1086.239693,0,0,21
+235282,787.0111294,0,0,21
+235283,836.5408632,0,0,21
+235284,758.3566028,0,0,21
+235285,729.5508881,0,0,21
+235286,729.5508648,0,0,21
+235287,700.5895069,0,0,21
+235288,686.0489683,0,0,21
+235289,686.0489479,0,0,21
+235290,656.8450097,0,0,21
+235291,642.1802316,0,0,21
+235292,642.1802138,0,0,21
+235293,612.7214483,0,0,21
+235294,612.7214322,0,0,21
+235295,583.0851151,0,0,21
+235296,583.0851006,0,0,21
+235297,568.198238,0,0,21
+235298,553.2643617,0,0,21
+235299,538.2824984,0,0,21
+235300,523.2516207,0,0,21
+235301,508.1706423,0,0,21
+235302,508.1706314,0,0,21
+235303,477.8537099,0,0,21
+235304,477.8537004,0,0,21
+235305,462.615227,0,0,21
+235306,431.9713418,0,0,21
+235307,447.3215894,0,0,21
+235308,416.562852,0,0,21
+235309,401.0944508,0,0,21
+235310,401.0944441,0,0,21
+235311,369.9704179,0,0,21
+235312,369.9704122,0,0,21
+235313,354.310657,0,0,21
+235314,354.3106518,0,0,21
+235315,322.7839705,0,0,21
+235316,306.9116906,0,0,21
+235317,306.9116868,0,0,21
+235318,290.9627637,0,0,21
+235319,274.9337745,0,0,21
+235320,274.9337715,0,0,21
+235321,274.9337968,0,0,21
+235322,274.9338001,0,0,21
+235323,258.82093,0,0,21
+235324,258.8209329,0,0,21
+235325,242.6198861,0,0,21
+235326,234.4848053,0,0,21
+235327,226.3258081,0,0,21
+235328,209.9331455,0,0,21
+235329,209.9331474,0,0,21
+235330,193.4354985,0,0,21
+235331,176.8253834,0,0,21
+235332,176.8253847,0,0,21
+235333,160.0939414,0,0,21
+235334,160.0939425,0,0,21
+235335,143.2304923,0,0,21
+235336,143.2304932,0,0,21
+235337,117.6581572,0,0,21
+235338,126.221898,0,0,21
+235339,91.69781342,0,0,21
+235340,109.0515636,0,0,21
+235341,91.69781416,0,0,21
+235342,74.13101814,0,0,21
+235343,74.13101838,0,0,21
+235344,56.3079503,0,0,21
+235345,56.30795044,0,0,21
+235346,38.15884203,0,0,21
+235347,28.92487454,0,0,21
+235348,19.54815317,0,0,21
+235349,19.5481529,0,0,21
+235350,0,0,0,21
+235351,0,0,0,21
+235352,0,0,0,21
+235353,0,0,0,21
+235354,0,0,0,21
+235355,0,0,0,21
+235356,0,0,0,21
+235357,0,0,0,21
+235358,0,0,0,21
+235359,0,0,0,21
+235360,0,0,0,21
+235361,0,0,0,21
+235362,0,0,0,21
+235363,0,0,0,21
+235364,0,0,0,21
+235365,0,0,0,21
+235366,0,0,0,21
+235367,0,0,0,21
+235368,0,0,0,21
+235369,0,0,0,21
+235370,0,0,0,21
+235371,0,0,0,21
+235372,0,0,0,21
+235373,0,0,0,21
+235374,0,0,0,21
+235375,0,0,0,21
+235376,0,0,0,21
+235377,0,0,0,21
+235378,0,0,0,21
+235379,0,0,0,21
+235380,0,0,0,21
+235381,0,0,0,21
+235382,0,0,0,21
+235383,0,0,0,21
+235384,0,0,0,21
+235385,0,0,0,21
+235386,0,0,0,21
+235387,0,0,0,21
+235388,0,0,0,21
+235389,0,0,0,21
+235390,0,0,0,21
+235391,0,0,0,21
+235392,0,0,0,21
+235393,0,0,0,21
+235394,0,0,0,21
+235395,0,0,0,21
+235396,0,0,0,21
+235397,0,0,0,21
+235398,0,0,0,21
+235399,0,0,0,21
+235400,0,0,0,21
+235401,0,0,0,21
+235402,0,0,0,21
+235403,0,0,0,21
+235404,0,0,0,21
+235405,0,0,0,21
+235406,0,0,0,21
+235407,0,0,0,21
+235408,0,0,0,21
+235409,0,0,0,21
+235410,0,0,0,21
+235411,0,0,0,21
+235412,0,0,0,21
+235413,0,0,0,21
+235414,0,0,0,21
+235415,0,0,0,21
+235416,0,0,0,21
+235417,0,0,0,21
+235418,0,0,0,21
+235419,0,0,0,21
+235420,0,0,0,21
+235421,0,0,0,21
+235422,0,0,0,21
+235423,0,0,0,21
+235424,0,0,0,21
+235425,0,0,0,21
+235426,0,0,0,21
+235427,0,0,0,21
+235428,0,0,0,21
+235429,0,0,0,21
+235430,0,0,0,21
+235431,0,0,0,21
+235432,0,0,0,21
+235433,0,0,0,21
+235434,0,0,0,21
+235435,0,0,0,21
+235436,0,0,0,21
+235437,0,0,0,21
+235438,0,0,0,21
+235439,0,0,0,21
+235440,0,0,0,21
+235441,0,0,0,21
+235442,0,0,0,21
+235443,0,0,0,21
+235444,0,0,0,21
+235445,0,0,0,21
+235446,0,0,0,21
+235447,0,0,0,21
+235448,0,0,0,21
+235449,0,0,0,21
+235450,0,0,0,21
+235451,0,0,0,21
+235452,0,0,0,21
+235453,0,0,0,21
+235454,0,0,0,21
+235455,0,0,0,21
+235456,0,0,0,21
+235457,0,0,0,21
+235458,0,0,0,21
+235459,0,0,0,21
+235460,0,0,0,21
+235461,0,0,0,21
+235462,0,0,0,21
+235463,0,0,0,21
+235464,0,0,0,21
+235465,0,0,0,21
+235466,0,0,0,21
+235467,0,0,0,21
+235468,0,0,0,21
+235469,0,0,0,21
+235470,0,0,0,21
+235471,0,0,0,21
+235472,0,0,0,21
+235473,0,0,0,21
+235474,0,0,0,21
+235475,0,0,0,21
+235476,0,0,0,21
+235477,0,0,0,21
+235478,0,0,0,21
+235479,0,0,0,21
+235480,0,0,0,21
+235481,0,0,0,21
+235482,0,0,0,21
+235483,0,0,0,21
+235484,0,0,0,21
+235485,0,0,0,21
+235486,0,0,0,21
+235487,0,0,0,21
+235488,0,0,0,21
+235489,0,0,0,21
+235490,0,0,0,21
+235491,0,0,0,21
+235492,0,0,0,21
+235493,0,0,0,21
+235494,0,0,0,21
+235495,0,0,0,21
+235496,0,0,0,21
+235497,0,0,0,21
+235498,0,0,0,21
+235499,0,0,0,21
+235500,0,0,0,21
+235501,0,0,0,21
+235502,0,0,0,21
+235503,0,0,0,21
+235504,0,0,0,21
+235505,0,0,0,21
+235506,0,0,0,21
+235507,0,0,0,21
+235508,0,0,0,21
+235509,0,0,0,21
+235510,0,0,0,21
+235511,0,0,0,21
+235512,0,0,0,21
+235513,0,0,0,21
+235514,0,0,0,21
+235515,0,0,0,21
+235516,0,0,0,21
+235517,0,0,0,21
+235518,0,0,0,21
+235519,0,0,0,21
+235520,0,0,0,21
+235521,0,0,0,21
+235522,0,0,0,21
+235523,0,0,0,21
+235524,0,0,0,21
+235525,0,0,0,21
+235526,0,0,0,21
+235527,0,0,0,21
+235528,0,0,0,21
+235529,0,0,0,21
+235530,0,0,0,21
+235531,0,0,0,21
+235532,0,0,0,21
+235533,0,0,0,21
+235534,0,0,0,21
+235535,0,0,0,21
+235536,0,0,0,21
+235537,0,0,0,21
+235538,0,0,0,21
+235539,0,0,0,21
+235540,0,0,0,21
+235541,0,0,0,21
+235542,0,0,0,21
+235543,0,0,0,21
+235544,0,0,0,21
+235545,0,0,0,21
+235546,0,0,0,21
+235547,0,0,0,21
+235548,0,0,0,21
+235549,0,0,0,21
+235550,0,0,0,21
+235551,0,0,0,21
+235552,0,0,0,21
+235553,0,0,0,21
+235554,0,0,0,21
+235555,0,0,0,21
+235556,0,0,0,21
+235557,0,0,0,21
+235558,0,0,0,21
+235559,0,0,0,21
+235560,0,0,0,21
+235561,0,0,0,21
+235562,0,0,0,21
+235563,0,0,0,21
+235564,0,0,0,21
+235565,0,0,0,21
+235566,0,0,0,21
+235567,0,0,0,21
+235568,0,0,0,21
+235569,0,0,0,21
+235570,0,0,0,21
+235571,0,0,0,21
+235572,0,0,0,21
+235573,0,0,0,21
+235574,0,0,0,21
+235575,0,0,0,21
+235576,0,0,0,21
+235577,0,0,0,21
+235578,0,0,0,21
+235579,0,0,0,21
+235580,0,0,0,21
+235581,0,0,0,21
+235582,0,0,0,21
+235583,0,0,0,21
+235584,0,0,0,21
+235585,0,0,0,21
+235586,0,0,0,21
+235587,0,0,0,21
+235588,0,0,0,21
+235589,0,0,0,21
+235590,0,0,0,21
+235591,0,0,0,21
+235592,0,0,0,21
+235593,0,0,0,21
+235594,0,0,0,21
+235595,0,0,0,21
+235596,0,0,0,21
+235597,0,0,0,21
+235598,0,0,0,21
+235599,0,0,0,21
+235600,0,0,0,21
+235601,0,0,0,21
+235602,0,0,0,21
+235603,0,0,0,21
+235604,0,0,0,21
+235605,0,0,0,21
+235606,0,0,0,21
+235607,0,0,0,21
+235608,0,0,0,21
+235609,0,0,0,21
+235610,0,0,0,21
+235611,0,0,0,21
+235612,0,0,0,21
+235613,0,0,0,21
+235614,0,0,0,21
+235615,0,0,0,21
+235616,0,0,0,21
+235617,0,0,0,21
+235618,0,0,0,21
+235619,0,0,0,21
+235620,0,0,0,21
+235621,0,0,0,21
+235622,0,0,0,21
+235623,0,0,0,21
+235624,0,0,0,21
+235625,0,0,0,21
+235626,0,0,0,21
+235627,0,0,0,21
+235628,0,0,0,21
+235629,0,0,0,21
+235630,0,0,0,21
+235631,0,0,0,21
+235632,0,0,0,21
+235633,0,0,0,21
+235634,0,0,0,21
+235635,0,0,0,21
+235636,0,0,0,21
+235637,0,0,0,21
+235638,0,0,0,21
+235639,0,0,0,21
+235640,0,0,0,21
+235641,0,0,0,21
+235642,0,0,0,21
+235643,0,0,0,21
+235644,0,0,0,21
+235645,0,0,0,21
+235646,0,0,0,21
+235647,0,0,0,21
+235648,0,0,0,21
+235649,0,0,0,21
+235650,0,0,0,21
+235651,0,0,0,21
+235652,0,0,0,21
+235653,0,0,0,21
+235654,0,0,0,21
+235655,0,0,0,21
+235656,0,0,0,21
+235657,0,0,0,21
+235658,0,0,0,21
+235659,0,0,0,21
+235660,0,0,0,21
+235661,0,0,0,21
+235662,0,0,0,21
+235663,0,0,0,21
+235664,0,0,0,21
+235665,0,0,0,21
+235666,0,0,0,21
+235667,0,0,0,21
+235668,0,0,0,21
+235669,0,0,0,21
+235670,0,0,0,21
+235671,0,0,0,21
+235672,0,0,0,21
+235673,0,0,0,21
+235674,0,0,0,21
+235675,0,0,0,21
+235676,0,0,0,21
+235677,0,0,0,21
+235678,0,0,0,21
+235679,0,0,0,21
+235680,0,0,0,21
+235681,0,0,0,21
+235682,0,0,0,21
+235683,0,0,0,21
+235684,0,0,0,21
+235685,0,0,0,21
+235686,0,0,0,21
+235687,0,0,0,21
+235688,0,0,0,21
+235689,0,0,0,21
+235690,0,0,0,21
+235691,0,0,0,21
+235692,0,0,0,21
+235693,0,0,0,21
+235694,0,0,0,21
+235695,0,0,0,21
+235696,0,0,0,21
+235697,0,0,0,21
+235698,0,0,0,21
+235699,0,0,0,21
+235700,0,0,0,21
+235701,0,0,0,21
+235702,0,0,0,21
+235703,0,0,0,21
+235704,0,0,0,21
+235705,0,0,0,21
+235706,0,0,0,21
+235707,0,0,0,21
+235708,0,0,0,21
+235709,0,0,0,21
+235710,0,0,0,21
+235711,0,0,0,21
+235712,0,0,0,21
+235713,0,0,0,21
+235714,0,0,0,21
+235715,0,0,0,21
+235716,0,0,0,21
+235717,0,0,0,21
+235718,0,0,0,21
+235719,0,0,0,21
+235720,0,0,0,21
+235721,0,0,0,21
+235722,0,0,0,21
+235723,0,0,0,21
+235724,0,0,0,21
+235725,0,0,0,21
+235726,0,0,0,21
+235727,0,0,0,21
+235728,0,0,0,21
+235729,0,0,0,21
+235730,0,0,0,21
+235731,0,0,0,21
+235732,0,0,0,21
+235733,0,0,0,21
+235734,0,0,0,21
+235735,0,0,0,21
+235736,0,0,0,21
+235737,0,0,0,21
+235738,0,0,0,21
+235739,0,0,0,21
+235740,0,0,0,21
+235741,0,0,0,21
+235742,2157.233693,0,0,21
+235743,4695.797072,0,0,21
+235744,3148.22809,0,0,21
+235745,3631.736585,0,0,21
+235746,4108.465072,0,0,21
+235747,4108.464869,0,0,21
+235748,4344.490738,0,0,21
+235749,4461.949126,0,0,21
+235750,4695.795209,0,0,21
+235751,4812.196666,0,0,21
+235752,5043.989481,0,0,21
+235753,5043.989165,0,0,21
+235754,5714.364568,0,0,21
+235755,5490.035517,0,0,21
+235756,5778.533487,0,0,21
+235757,6039.374581,0,0,21
+235758,6152.635496,0,0,21
+235759,6290.381121,0,0,21
+235760,6540.018478,0,0,21
+235761,6668.390024,0,0,21
+235762,6907.991545,0,0,21
+235763,6924.051809,0,0,21
+235764,7178.321837,0,0,21
+235765,7399.678037,0,0,21
+235766,7431.251084,0,0,21
+235767,7777.075297,0,0,21
+235768,7792.686178,0,0,21
+235769,7917.786667,0,0,21
+235770,8260.493083,0,0,21
+235771,8291.270818,0,0,21
+235772,8523.544245,0,0,21
+235773,8631.684512,0,0,21
+235774,8892.847845,0,0,21
+235775,9015.390892,0,0,21
+235776,9229.658267,0,0,21
+235777,9381.39292,0,0,21
+235778,9594.362592,0,0,21
+235779,9624.066577,0,0,21
+235780,10062.2632,0,0,21
+235781,9971.453895,0,0,21
+235782,10316.8027,0,0,21
+235783,10436.33551,0,0,21
+235784,10555.62503,0,0,21
+235785,10897.62785,0,0,21
+235786,10897.62631,0,0,21
+235787,11252.06772,0,0,21
+235788,11252.06607,0,0,21
+235789,11487.20915,0,0,21
+235790,11721.44907,0,0,21
+235791,11721.44727,0,0,21
+235792,12159.14609,0,0,21
+235793,12187.27314,0,0,21
+235794,12289.17494,0,0,21
+235795,12621.80243,0,0,21
+235796,12649.64531,0,0,21
+235797,12851.86098,0,0,21
+235798,12865.72958,0,0,21
+235799,13195.39795,0,0,21
+235800,13309.5009,0,0,21
+235801,13323.23692,0,0,21
+235802,13550.77617,0,0,21
+235803,13750.2706,0,0,21
+235804,13763.90899,0,0,21
+235805,13989.92731,0,0,21
+235806,13989.9257,0,0,21
+235807,14215.16559,0,0,21
+235808,14412.69837,0,0,21
+235809,14340.94784,0,0,21
+235810,14649.95134,0,0,21
+235811,14663.34348,0,0,21
+235812,14872.96758,0,0,21
+235813,15081.93573,0,0,21
+235814,14997.50018,0,0,21
+235815,15303.52956,0,0,21
+235816,15329.99588,0,0,21
+235817,15524.39455,0,0,21
+235818,15647.71983,0,0,21
+235819,15744.53844,0,0,21
+235820,15867.45062,0,0,21
+235821,15977.04965,0,0,21
+235822,16182.69497,0,0,21
+235823,16387.7223,0,0,21
+235824,16208.71721,0,0,21
+235825,16618.05492,0,0,21
+235826,16713.5434,0,0,21
+235827,16834.70221,0,0,21
+235828,16834.69995,0,0,21
+235829,17050.67057,0,0,21
+235830,17265.96875,0,0,21
+235831,17253.17483,0,0,21
+235832,17480.5983,0,0,21
+235833,17480.59589,0,0,21
+235834,17681.87626,0,0,21
+235835,17694.56516,0,0,21
+235836,18001.68133,0,0,21
+235837,17907.88012,0,0,21
+235838,18120.54912,0,0,21
+235839,18307.46045,0,0,21
+235840,18332.57276,0,0,21
+235841,18332.57018,0,0,21
+235842,18729.79349,0,0,21
+235843,18543.95646,0,0,21
+235844,18847.43042,0,0,21
+235845,18952.4395,0,0,21
+235846,18964.84128,0,0,21
+235847,19149.61039,0,0,21
+235848,19174.3476,0,0,21
+235849,19370.9273,0,0,21
+235850,19462.37544,0,0,21
+235851,19658.38876,0,0,21
+235852,19679.98467,0,0,21
+235853,19893.89302,0,0,21
+235854,20006.6621,0,0,21
+235855,20128.25585,0,0,21
+235856,20140.43225,0,0,21
+235857,20364.82446,0,0,21
+235858,20370.42699,0,0,21
+235859,20597.25599,0,0,21
+235860,20787.20273,0,0,21
+235861,21276.96252,0,0,21
+235862,21680.22415,0,0,21
+235863,21705.5175,0,0,21
+235864,22126.69241,0,0,21
+235865,21944.94617,0,0,21
+235866,22538.53673,0,0,21
+235867,22373.03495,0,0,21
+235868,22771.71506,0,0,21
+235869,22806.87686,0,0,21
+235870,23019.30158,0,0,21
+235871,23203.27213,0,0,21
+235872,23265.93169,0,0,21
+235873,23632.35439,0,0,21
+235874,23671.48491,0,0,21
+235875,23687.39801,0,0,21
+235876,24255.59469,0,0,21
+235877,23939.58281,0,0,21
+235878,24483.27852,0,0,21
+235879,24537.48247,0,0,21
+235880,24710.17993,0,0,21
+235881,24771.23435,0,0,21
+235882,25119.48655,0,0,21
+235883,24997.10301,0,0,21
+235884,25541.49523,0,0,21
+235885,25393.60156,0,0,21
+235886,25768.74128,0,0,21
+235887,25810.46821,0,0,21
+235888,26002.88454,0,0,21
+235889,26018.06949,0,0,21
+235890,26431.61561,0,0,21
+235891,26416.53784,0,0,21
+235892,26637.57237,0,0,21
+235893,27169.5947,0,0,21
+235894,27072.9505,0,0,21
+235895,27500.88236,0,0,21
+235896,27420.78349,0,0,21
+235897,27795.34926,0,0,21
+235898,27891.05265,0,0,21
+235899,28106.94935,0,0,21
+235900,28321.9219,0,0,21
+235901,28385.09349,0,0,21
+235902,28644.9098,0,0,21
+235903,28834.27482,0,0,21
+235904,28932.3319,0,0,21
+235905,29285.64938,0,0,21
+235906,29213.39706,0,0,21
+235907,29591.70978,0,0,21
+235908,29647.66305,0,0,21
+235909,30318.05938,0,0,21
+235910,30561.37061,0,0,21
+235911,30781.46591,0,0,21
+235912,30850.83044,0,0,21
+235913,31055.97601,0,0,21
+235914,31300.43073,0,0,21
+235915,31504.47741,0,0,21
+235916,31561.26272,0,0,21
+235917,31776.46856,0,0,21
+235918,31836.07126,0,0,21
+235919,32220.36978,0,0,21
+235920,32622.55652,0,0,21
+235921,32791.82321,0,0,21
+235922,32919.13325,0,0,21
+235923,33207.40309,0,0,21
+235924,33266.52767,0,0,21
+235925,33547.8012,0,0,21
+235926,33573.48632,0,0,21
+235927,33897.87736,0,0,21
+235928,33921.04302,0,0,21
+235929,34191.13641,0,0,21
+235930,34403.79726,0,0,21
+235931,35796.14337,0,0,21
+235932,36539.49244,0,0,21
+235933,36562.35309,0,0,21
+235934,37060.78563,0,0,21
+235935,37343.38922,0,0,21
+235936,38374.68416,0,0,21
+235937,38379.50801,0,0,21
+235938,38849.67786,0,0,21
+235939,39396.58711,0,0,21
+235940,39734.62359,0,0,21
+235941,40174.31756,0,0,21
+235942,40366.41822,0,0,21
+235943,41017.75511,0,0,21
+235944,41280.78123,0,0,21
+235945,41712.55584,0,0,21
+235946,41935.46686,0,0,21
+235947,42450.96663,0,0,21
+235948,42796.147,0,0,21
+235949,43081.93589,0,0,21
+235950,43530.00686,0,0,21
+235951,43847.63314,0,0,21
+235952,44217.03921,0,0,21
+235953,44488.11603,0,0,21
+235954,44881.68229,0,0,21
+235955,45269.32147,0,0,21
+235956,45588.23535,0,0,21
+235957,45794.73089,0,0,21
+235958,46219.423,0,0,21
+235959,46586.88172,0,0,21
+235960,46892.4247,0,0,21
+235961,47185.80809,0,0,21
+235962,48104.96147,0,0,21
+235963,50471.82515,0,0,21
+235964,52343.20731,0,0,21
+235965,52480.19861,0,0,21
+235966,53327.77105,0,0,21
+235967,54279.09554,0,0,21
+235968,55291.70703,0,0,21
+235969,55866.4494,0,0,21
+235970,56863.32996,0,0,21
+235971,57411.58046,0,0,21
+235972,58388.32619,0,0,21
+235973,59072.32004,0,0,21
+235974,59900.83843,0,0,21
+235975,60643.19522,0,0,21
+235976,61147.37865,0,0,21
+235977,62268.56415,0,0,21
+235978,62499.87645,0,0,21
+235979,63663.77435,0,0,21
+235980,64282.61398,0,0,21
+235981,0,0,0,21
+235982,0,0,0,21
+235983,438864.5284,0,0,21
+235984,0,0,0,21
+235985,0,369123.7229,674807.2154,21
+235986,339901.4498,0,0,21
+235987,0,0,0,21
+235988,0,0,0,21
+235989,0,0,0,21
+235990,0,0,0,21
+235991,0,0,0,21
+235992,0,0,0,21
+235993,0,0,0,21
+235994,0,0,0,21
+235995,0,0,0,21
+235996,0,0,0,21
+235997,0,0,0,21
+235998,0,0,0,21
+235999,0,0,0,21
+236000,0,0,0,21
+236001,0,0,0,21
+236002,0,0,0,21
+236003,0,0,0,21
+236004,0,0,0,21
+236005,0,0,0,21
+236006,0,0,0,21
+236007,0,0,0,21
+236008,0,0,0,21
+236009,0,0,0,21
+236010,0,0,0,21
+236011,0,0,0,21
+236012,0,0,0,21
+236013,0,0,0,21
+236014,0,0,0,21
+236015,0,0,0,21
+236016,0,0,0,21
+236017,0,0,0,21
+236018,0,0,0,21
+236019,0,369131.5126,673639.2538,21
+236020,0,0,0,21
+236021,339894.7939,0,0,21
+236022,0,0,0,21
+236023,0,0,0,21
+236024,0,0,0,21
+236025,0,0,0,21
+236026,0,0,0,21
+236027,0,0,0,21
+236028,0,0,0,21
+236029,0,0,0,21
+236030,0,0,0,21
+236031,0,0,0,21
+236032,0,0,0,21
+236033,0,0,0,21
+236034,0,0,0,21
+236035,0,0,0,21
+236036,0,0,0,21
+236037,0,0,0,21
+236038,0,0,0,21
+236039,0,0,0,21
+236040,0,0,0,15.6
+236041,0,0,0,15.6
+236042,0,0,0,15.6
+236043,0,0,0,15.6
+236044,0,0,0,15.6
+236045,0,0,0,15.6
+236046,0,0,0,15.6
+236047,0,0,0,15.6
+236048,0,0,0,15.6
+236049,0,0,0,15.6
+236050,0,0,0,15.6
+236051,0,0,0,15.6
+236052,0,0,0,15.6
+236053,0,369139.2911,673131.2378,15.6
+236054,0,0,0,15.6
+236055,0,0,0,15.6
+236056,339884.1623,0,0,15.6
+236057,0,0,0,15.6
+236058,0,0,0,15.6
+236059,0,0,0,15.6
+236060,0,0,0,15.6
+236061,0,0,0,15.6
+236062,0,0,0,15.6
+236063,0,0,0,15.6
+236064,0,0,0,15.6
+236065,0,0,0,15.6
+236066,0,0,0,15.6
+236067,0,0,0,15.6
+236068,0,0,0,15.6
+236069,0,0,0,15.6
+236070,0,0,0,15.6
+236071,0,0,0,15.6
+236072,0,0,0,15.6
+236073,0,0,0,15.6
+236074,0,0,0,15.6
+236075,0,0,0,15.6
+236076,0,0,0,15.6
+236077,0,0,0,15.6
+236078,0,0,0,15.6
+236079,0,0,0,15.6
+236080,0,0,0,15.6
+236081,0,0,0,15.6
+236082,0,0,0,15.6
+236083,0,0,0,15.6
+236084,0,0,0,15.6
+236085,0,0,0,15.6
+236086,0,0,0,15.6
+236087,0,369147.0601,672629.386,15.6
+236088,0,0,0,15.6
+236089,0,0,0,15.6
+236090,0,0,0,15.6
+236091,339869.3212,0,0,15.6
+236092,0,0,0,15.6
+236093,0,0,0,15.6
+236094,0,0,0,15.6
+236095,0,0,0,15.6
+236096,0,0,0,15.6
+236097,0,0,0,15.6
+236098,0,0,0,15.6
+236099,0,0,0,15.6
+236100,0,0,0,15.6
+236101,0,0,0,15.6
+236102,0,0,0,15.6
+236103,0,0,0,15.6
+236104,0,0,0,15.6
+236105,0,0,0,15.6
+236106,0,0,0,15.6
+236107,0,0,0,15.6
+236108,0,0,0,15.6
+236109,0,0,0,15.6
+236110,0,0,0,15.6
+236111,0,0,0,15.6
+236112,0,0,0,15.6
+236113,0,0,0,15.6
+236114,0,0,0,15.6
+236115,0,0,0,15.6
+236116,0,0,0,15.6
+236117,0,0,0,15.6
+236118,0,0,0,15.6
+236119,0,0,0,15.6
+236120,0,0,0,15.6
+236121,0,0,671684.3575,15.6
+236122,0,369150.4001,0,15.6
+236123,0,0,0,15.6
+236124,0,0,0,15.6
+236125,0,0,0,15.6
+236126,339850.9483,0,0,15.6
+236127,0,0,0,15.6
+236128,0,0,0,15.6
+236129,0,0,0,15.6
+236130,0,0,0,15.6
+236131,0,0,0,15.6
+236132,0,0,0,15.6
+236133,0,0,0,15.6
+236134,0,0,0,15.6
+236135,0,0,0,15.6
+236136,0,0,0,15.6
+236137,0,0,0,15.6
+236138,0,0,0,15.6
+236139,0,0,0,15.6
+236140,0,0,0,15.6
+236141,0,0,0,15.6
+236142,0,0,0,15.6
+236143,0,0,0,15.6
+236144,0,0,0,15.6
+236145,0,0,0,15.6
+236146,0,0,0,15.6
+236147,0,0,0,15.6
+236148,0,0,0,15.6
+236149,0,0,0,15.6
+236150,0,0,0,15.6
+236151,0,0,0,15.6
+236152,0,0,0,15.6
+236153,0,0,0,15.6
+236154,0,0,0,15.6
+236155,0,0,671361.178,15.6
+236156,0,0,0,15.6
+236157,0,369150.3983,0,15.6
+236158,0,0,0,15.6
+236159,0,0,0,15.6
+236160,0,0,0,15.6
+236161,339831.7855,0,0,15.6
+236162,0,0,0,15.6
+236163,0,0,0,15.6
+236164,0,0,0,15.6
+236165,0,0,0,15.6
+236166,0,0,0,15.6
+236167,0,0,0,15.6
+236168,0,0,0,15.6
+236169,0,0,0,15.6
+236170,0,0,0,15.6
+236171,0,0,0,15.6
+236172,0,0,0,15.6
+236173,0,0,0,15.6
+236174,0,0,0,15.6
+236175,0,0,0,15.6
+236176,0,0,0,15.6
+236177,0,0,0,15.6
+236178,0,0,0,15.6
+236179,0,0,0,15.6
+236180,0,0,0,15.6
+236181,0,0,0,15.6
+236182,0,0,0,15.6
+236183,0,0,0,15.6
+236184,0,0,0,15.6
+236185,0,0,0,15.6
+236186,0,0,0,15.6
+236187,0,0,0,15.6
+236188,0,0,0,15.6
+236189,0,0,671106.6236,15.6
+236190,0,0,0,15.6
+236191,0,0,0,15.6
+236192,0,369150.4003,0,15.6
+236193,0,0,0,15.6
+236194,0,0,0,15.6
+236195,0,0,0,15.6
+236196,0,0,0,15.6
+236197,339815.3074,0,0,15.6
+236198,0,0,0,15.6
+236199,0,0,0,15.6
+236200,0,0,0,15.6
+236201,0,0,0,15.6
+236202,0,0,0,15.6
+236203,0,0,0,15.6
+236204,0,0,0,15.6
+236205,0,0,0,15.6
+236206,0,0,0,15.6
+236207,0,0,0,15.6
+236208,0,0,0,15.6
+236209,0,0,0,15.6
+236210,0,0,0,15.6
+236211,0,0,0,15.6
+236212,0,0,0,15.6
+236213,0,0,0,15.6
+236214,0,0,0,15.6
+236215,0,0,0,15.6
+236216,0,0,0,15.6
+236217,0,0,0,15.6
+236218,0,0,0,15.6
+236219,0,0,0,15.6
+236220,0,0,0,15.6
+236221,0,0,0,15.6
+236222,0,0,0,15.6
+236223,0,0,670513.5591,15.6
+236224,0,0,0,15.6
+236225,0,0,0,15.6
+236226,0,0,0,15.6
+236227,0,369150.4004,0,15.6
+236228,0,0,0,15.6
+236229,0,0,0,15.6
+236230,0,0,0,15.6
+236231,0,0,0,15.6
+236232,0,0,0,15.6
+236233,339809.5355,0,0,15.6
+236234,0,0,0,15.6
+236235,0,0,0,15.6
+236236,0,0,0,15.6
+236237,0,0,0,15.6
+236238,0,0,0,15.6
+236239,0,0,0,15.6
+236240,0,0,0,15.6
+236241,0,0,0,15.6
+236242,0,0,0,15.6
+236243,0,0,0,15.6
+236244,0,0,0,15.6
+236245,0,0,0,15.6
+236246,0,0,0,15.6
+236247,0,0,0,15.6
+236248,0,0,0,15.6
+236249,0,0,0,15.6
+236250,0,0,0,15.6
+236251,0,0,0,15.6
+236252,0,0,0,15.6
+236253,0,0,0,15.6
+236254,0,0,0,15.6
+236255,0,0,0,15.6
+236256,0,0,0,15.6
+236257,0,0,669995.1543,15.6
+236258,0,0,0,15.6
+236259,0,0,0,15.6
+236260,0,0,0,15.6
+236261,0,0,0,15.6
+236262,0,369150.3982,0,15.6
+236263,0,0,0,15.6
+236264,0,0,0,15.6
+236265,0,0,0,15.6
+236266,0,0,0,15.6
+236267,0,0,0,15.6
+236268,0,0,0,15.6
+236269,339822.3653,0,0,15.6
+236270,0,0,0,15.6
+236271,0,0,0,15.6
+236272,0,0,0,15.6
+236273,0,0,0,15.6
+236274,0,0,0,15.6
+236275,0,0,0,15.6
+236276,0,0,0,15.6
+236277,0,0,0,15.6
+236278,0,0,0,15.6
+236279,0,0,0,15.6
+236280,0,0,0,15.6
+236281,0,0,0,15.6
+236282,0,0,0,15.6
+236283,0,0,0,15.6
+236284,0,0,0,15.6
+236285,0,0,0,15.6
+236286,0,0,0,15.6
+236287,0,0,0,15.6
+236288,0,0,0,15.6
+236289,0,0,0,15.6
+236290,0,0,0,15.6
+236291,0,0,668307.7298,15.6
+236292,0,0,0,15.6
+236293,0,0,0,15.6
+236294,0,0,0,15.6
+236295,0,0,0,15.6
+236296,0,0,0,15.6
+236297,0,369150.4004,0,15.6
+236298,0,0,0,15.6
+236299,0,0,0,15.6
+236300,0,0,0,15.6
+236301,0,0,0,15.6
+236302,0,0,0,15.6
+236303,0,0,0,15.6
+236304,0,0,0,15.6
+236305,339838.8068,0,0,15.6
+236306,0,0,0,15.6
+236307,0,0,0,15.6
+236308,0,0,0,15.6
+236309,0,0,0,15.6
+236310,0,0,0,15.6
+236311,0,0,0,15.6
+236312,0,0,0,15.6
+236313,0,0,0,15.6
+236314,0,0,0,15.6
+236315,0,0,0,15.6
+236316,0,0,0,15.6
+236317,0,0,0,15.6
+236318,0,0,0,15.6
+236319,0,0,0,15.6
+236320,0,0,0,15.6
+236321,0,0,0,15.6
+236322,0,0,0,15.6
+236323,0,0,0,15.6
+236324,0,0,0,15.6
+236325,0,0,668085.3189,15.6
+236326,0,0,0,15.6
+236327,0,0,0,15.6
+236328,0,0,0,15.6
+236329,0,0,0,15.6
+236330,0,0,0,15.6
+236331,0,0,0,15.6
+236332,0,369150.3981,0,15.6
+236333,0,0,0,15.6
+236334,0,0,0,15.6
+236335,0,0,0,15.6
+236336,0,0,0,15.6
+236337,0,0,0,15.6
+236338,0,0,0,15.6
+236339,0,0,0,15.6
+236340,0,0,0,15.6
+236341,339857.6725,0,0,15.6
+236342,0,0,0,15.6
+236343,0,0,0,15.6
+236344,0,0,0,15.6
+236345,0,0,0,15.6
+236346,0,0,0,15.6
+236347,0,0,0,15.6
+236348,0,0,0,15.6
+236349,0,0,0,15.6
+236350,0,0,0,15.6
+236351,0,0,0,15.6
+236352,0,0,0,15.6
+236353,0,0,0,15.6
+236354,0,0,0,15.6
+236355,0,0,0,15.6
+236356,0,0,0,15.6
+236357,0,0,0,15.6
+236358,0,0,0,15.6
+236359,0,0,667686.5654,15.6
+236360,0,0,0,15.6
+236361,0,0,0,15.6
+236362,0,0,0,15.6
+236363,0,0,0,15.6
+236364,0,0,0,15.6
+236365,0,0,0,15.6
+236366,0,0,0,15.6
+236367,0,369150.4004,0,15.6
+236368,0,0,0,15.6
+236369,0,0,0,15.6
+236370,0,0,0,15.6
+236371,0,0,0,15.6
+236372,0,0,0,15.6
+236373,0,0,0,15.6
+236374,0,0,0,15.6
+236375,339856.2892,0,0,15.6
+236376,0,0,0,15.6
+236377,0,0,0,15.6
+236378,0,0,0,15.6
+236379,0,0,0,15.6
+236380,0,0,0,15.6
+236381,0,0,0,15.6
+236382,0,0,0,15.6
+236383,0,0,0,15.6
+236384,0,0,0,15.6
+236385,0,0,0,15.6
+236386,0,0,0,15.6
+236387,0,0,0,15.6
+236388,0,0,0,15.6
+236389,0,0,0,15.6
+236390,0,0,0,15.6
+236391,0,0,0,15.6
+236392,0,0,0,15.6
+236393,0,0,666871.8517,15.6
+236394,0,0,0,15.6
+236395,0,0,0,15.6
+236396,0,0,0,15.6
+236397,0,0,0,15.6
+236398,0,0,0,15.6
+236399,0,0,0,15.6
+236400,0,0,0,17.8
+236401,490937.6568,369150.1403,0,17.8
+236402,110095.0638,0,0,17.8
+236403,189098.1431,0,0,17.8
+236404,200432.7098,0,0,17.8
+236405,188785.0495,0,0,17.8
+236406,187625.7491,0,0,17.8
+236407,187400.0105,0,0,17.8
+236408,187714.1222,0,0,17.8
+236409,527710.1698,0,0,17.8
+236410,188563.2663,0,0,17.8
+236411,188021.0504,0,0,17.8
+236412,188485.931,0,0,17.8
+236413,189356.5904,0,0,17.8
+236414,188530.3314,0,0,17.8
+236415,189638.1948,0,0,17.8
+236416,189378.3217,0,0,17.8
+236417,190164.7971,0,0,17.8
+236418,190255.0676,0,0,17.8
+236419,192295.8389,0,0,17.8
+236420,193555.4929,0,0,17.8
+236421,192898.5086,0,0,17.8
+236422,193472.4861,0,0,17.8
+236423,194045.3799,0,0,17.8
+236424,194297.289,0,0,17.8
+236425,194389.4503,0,0,17.8
+236426,194993.4711,0,0,17.8
+236427,195103.4115,0,666586.0592,17.8
+236428,195827.4273,0,0,17.8
+236429,196000.07,0,0,17.8
+236430,196203.8416,0,0,17.8
+236431,2147.842074,0,0,17.8
+236432,2458.551443,0,0,17.8
+236433,2498.46827,0,0,17.8
+236434,82601.63625,0,0,17.8
+236435,19515.87091,369150.4003,0,17.8
+236436,27516.36277,0,0,17.8
+236437,34837.98911,0,0,17.8
+236438,31459.81144,0,0,17.8
+236439,31540.16741,0,0,17.8
+236440,501692.1795,0,0,17.8
+236441,72115.0781,0,0,17.8
+236442,164545.5738,0,0,17.8
+236443,565059.8987,0,0,17.8
+236444,178287.4858,0,0,17.8
+236445,185478.7392,0,0,17.8
+236446,181858.7844,0,0,17.8
+236447,181255.0729,0,0,17.8
+236448,180186.0689,0,0,17.8
+236449,179114.0058,0,0,17.8
+236450,178046.8839,0,0,17.8
+236451,176848.8922,0,0,17.8
+236452,176133.905,0,0,17.8
+236453,174976.0596,0,0,17.8
+236454,173811.0467,0,0,17.8
+236455,173303.2001,0,0,17.8
+236456,171874.8786,0,0,17.8
+236457,170739.9794,0,0,17.8
+236458,170373.4967,0,0,17.8
+236459,168621.869,0,0,17.8
+236460,168091.4285,0,0,20
+236461,1045865.268,191336.6744,665849.6814,20
+236462,316631.5456,0,0,20
+236463,55808.60343,0,0,20
+236464,184853.2726,13652.21412,0,20
+236465,256575.0636,50391.22954,0,20
+236466,201912.5294,23092.08794,0,20
+236467,205169.1529,33439.46844,0,20
+236468,205095.6169,34478.9571,0,20
+236469,203719.2134,33359.6384,0,20
+236470,202587.2442,34268.49979,0,20
+236471,200637.1776,34482.1291,0,20
+236472,199572.4118,34583.52042,0,20
+236473,197709.6797,34844.97454,0,20
+236474,196689.9463,34830.15119,0,20
+236475,195380.073,35315.64863,0,20
+236476,194299.4302,35207.08349,0,20
+236477,192479.5223,35524.25284,0,20
+236478,191968.2042,35676.85541,0,20
+236479,189563.7348,35575.98925,0,20
+236480,189145.1832,36022.66057,0,20
+236481,187498.254,36044.85443,0,20
+236482,185958.3526,36267.33243,0,20
+236483,185209.1969,36382.48181,0,20
+236484,183203.4565,36575.29966,0,20
+236485,182589.7285,36549.16778,0,20
+236486,180939.2839,36641.27739,0,20
+236487,179550.6211,37041.66858,0,20
+236488,178365.6828,36785.77121,0,20
+236489,176956.9573,37277.61163,0,20
+236490,175742.0278,37251.52781,0,20
+236491,174649.7506,37192.00489,0,20
+236492,173234.343,37579.92938,0,20
+236493,172167.4985,37450.72794,0,20
+236494,171317.2869,37458.17185,0,20
+236495,169645.5685,37657.04062,0,20
+236496,169064.454,37509.17108,0,20
+236497,167323.6815,37778.80385,0,20
+236498,166668.9204,37715.40205,0,20
+236499,165350.7638,37914.85837,0,20
+236500,164336.0294,37715.40631,0,20
+236501,162890.2011,37851.65215,0,20
+236502,162303.1188,37999.2674,0,20
+236503,160992.8023,37788.8679,0,20
+236504,160782.8477,37913.89852,0,20
+236505,160490.8262,38179.06088,0,20
+236506,160350.3679,37729.90034,0,20
+236507,159989.702,38043.0393,0,20
+236508,159899.2436,37913.90442,0,20
+236509,159436.6903,37895.34448,0,20
+236510,159458.1984,37913.90877,0,20
+236511,158984.2703,38079.35161,0,20
+236512,158995.5432,37751.76889,0,20
+236513,159049.1302,38057.53354,0,20
+236514,158541.7281,37972.05392,0,20
+236515,158394.8342,37895.35309,0,20
+236516,158773.2724,37950.23739,0,20
+236517,157959.1984,38079.36041,0,20
+236518,158107.2833,37788.05706,0,20
+236519,158176.2758,38079.36182,0,20
+236520,157461.6547,37788.0614,0,21
+236521,153947.1085,33672.37732,0,21
+236522,152919.3756,33008.47676,0,21
+236523,150874.641,32819.36576,0,21
+236524,151273.361,32846.12355,0,21
+236525,149268.2622,32657.01249,0,21
+236526,149367.5124,32342.05583,0,21
+236527,148419.1596,32509.16206,0,21
+236528,147549.6383,32137.39954,0,21
+236529,146889.146,32319.69115,0,21
+236530,145916.4789,31848.46015,0,21
+236531,145746.8306,31989.29945,0,21
+236532,144615.1924,31673.11356,0,21
+236533,144041.532,31826.05171,0,21
+236534,143159.6528,31467.69435,0,21
+236535,142373.964,31613.40056,0,21
+236536,141934.0941,31214.95545,0,21
+236537,140799.5839,31281.71046,0,21
+236538,140123.2932,30964.27498,0,21
+236539,139556.3615,31177.66499,0,21
+236540,138550.0815,30750.46652,0,21
+236541,137940.1752,30631.29473,0,21
+236542,136958.2907,30822.60651,0,21
+236543,136419.2945,30394.56825,0,21
+236544,135267.3239,30504.27684,0,21
+236545,134545.6556,30060.53996,0,21
+236546,133902.1063,30444.2971,0,21
+236547,133044.4193,29763.34774,0,21
+236548,132126.2904,29910.67218,0,21
+236549,131362.9785,29790.73788,0,21
+236550,130298.2464,29703.24815,0,21
+236551,129907.9224,29217.41143,0,21
+236552,129019.9603,29240.04251,0,21
+236553,128572.5513,29066.64568,0,21
+236554,127568.6816,28687.44143,0,21
+236555,127293.264,28858.38453,0,21
+236556,126313.6959,28498.614,0,21
+236557,125673.0751,28536.40071,0,21
+236558,125220.9697,28160.86058,0,21
+236559,124018.5888,28175.95611,0,21
+236560,123251.5576,27943.67551,0,21
+236561,122594.8865,28009.1698,0,21
+236562,121949.4602,27604.80698,0,21
+236563,121041.2031,27467.91405,0,21
+236564,120407.7249,27437.62721,0,21
+236565,119841.311,27219.53882,0,21
+236566,118989.0844,27128.068,0,21
+236567,118236.4738,26922.16459,0,21
+236568,117434.3868,26660.25727,0,21
+236569,117037.8944,26726.52705,0,21
+236570,115940.0708,26400.40019,0,21
+236571,115636.7003,26492.29454,0,21
+236572,114422.1472,25800.22392,0,21
+236573,113928.2806,26231.84723,0,21
+236574,113289.0329,25784.93393,0,21
+236575,112423.4959,25449.17851,0,21
+236576,111983.6426,25631.20842,0,21
+236577,110854.3141,25082.06051,0,21
+236578,110429.7255,25418.56559,0,21
+236579,109507.3971,24912.30273,0,21
+236580,109034.7203,24500.13416,0,21
+236581,49000.50602,128.3243963,0,21
+236582,45390.18188,0,0,21
+236583,44482.06404,0,0,21
+236584,43377.11012,0,0,21
+236585,42496.97579,0,0,21
+236586,42165.42024,0,0,21
+236587,41573.69342,0,0,21
+236588,41130.04021,0,0,21
+236589,40413.50563,0,0,21
+236590,40364.38031,0,0,21
+236591,39399.3879,0,0,21
+236592,39366.15537,0,0,21
+236593,38568.37295,0,0,21
+236594,38395.15497,0,0,21
+236595,37767.21214,0,0,21
+236596,37536.75205,0,0,21
+236597,36959.86532,0,0,21
+236598,36374.33947,0,0,21
+236599,36305.23686,0,0,21
+236600,35612.61931,0,0,21
+236601,35306.04083,0,0,21
+236602,34967.45071,0,0,21
+236603,34284.26989,0,0,21
+236604,34316.73727,0,0,21
+236605,33616.2137,0,0,21
+236606,33265.31595,0,0,21
+236607,32975.60432,0,0,21
+236608,32354.3574,0,0,21
+236609,32259.69024,0,0,21
+236610,31704.91105,0,0,21
+236611,31520.18035,0,0,21
+236612,30930.86357,0,0,21
+236613,30767.76914,0,0,21
+236614,30237.95261,0,0,21
+236615,29927.12163,0,0,21
+236616,29747.6756,0,0,21
+236617,29141.44536,0,0,21
+236618,28969.51342,0,0,21
+236619,28569.53558,0,0,21
+236620,28386.65876,0,0,21
+236621,27769.99131,0,0,21
+236622,27613.37506,0,0,21
+236623,27351.76812,0,0,21
+236624,26701.53361,0,0,21
+236625,26780.85418,0,0,21
+236626,26070.45735,0,0,21
+236627,25991.29794,0,0,21
+236628,25658.31498,0,0,21
+236629,25239.55921,0,0,21
+236630,25049.50824,0,0,21
+236631,24706.97794,0,0,21
+236632,24651.38767,0,0,21
+236633,24406.46086,0,0,21
+236634,24360.33136,0,0,21
+236635,24109.05903,0,0,21
+236636,23892.05551,0,0,21
+236637,24020.96992,0,0,21
+236638,23562.46064,0,0,21
+236639,23730.13744,0,0,21
+236640,23296.50974,0,0,21
+236641,23313.87083,0,0,21
+236642,23181.78759,0,0,21
+236643,22933.78527,0,0,21
+236644,22887.1118,0,0,21
+236645,22609.12016,0,0,21
+236646,22580.63992,0,0,21
+236647,22321.64142,0,0,21
+236648,22253.59304,0,0,21
+236649,22185.90449,0,0,21
+236650,21954.59668,0,0,21
+236651,21666.32792,0,0,21
+236652,21806.85051,0,0,21
+236653,21396.36911,0,0,21
+236654,21370.27872,0,0,21
+236655,21246.46487,0,0,21
+236656,20994.53342,0,0,21
+236657,20913.35031,0,0,21
+236658,20842.30484,0,0,21
+236659,20611.51471,0,0,21
+236660,20324.81265,0,0,21
+236661,20468.35593,0,0,21
+236662,20127.28107,0,0,21
+236663,20034.66041,0,0,21
+236664,19896.61498,0,0,21
+236665,19814.20156,0,0,21
+236666,19579.49499,0,0,21
+236667,19387.59462,0,0,21
+236668,19453.94413,0,0,21
+236669,18958.73044,0,0,21
+236670,19133.67181,0,0,21
+236671,18951.89671,0,0,21
+236672,18810.59713,0,0,21
+236673,18531.23499,0,0,21
+236674,18477.08254,0,0,21
+236675,18434.98942,0,0,21
+236676,18337.14912,0,0,21
+236677,17934.28423,0,0,21
+236678,18240.97325,0,0,21
+236679,17694.47047,0,0,21
+236680,17727.61271,0,0,21
+236681,17705.94354,0,0,21
+236682,17509.14253,0,0,21
+236683,17376.84478,0,0,21
+236684,17311.1316,0,0,21
+236685,17056.99539,0,0,21
+236686,17001.67298,0,0,21
+236687,16946.18822,0,0,21
+236688,16713.11582,0,0,21
+236689,16845.57105,0,0,21
+236690,16379.22848,0,0,21
+236691,16545.39173,0,0,21
+236692,16288.56686,0,0,21
+236693,16221.05588,0,0,21
+236694,15986.03641,0,0,21
+236695,16129.54745,0,0,21
+236696,15659.54768,0,0,21
+236697,15848.6478,0,0,21
+236698,15667.6527,0,0,21
+236699,15532.45395,0,0,21
+236700,15362.06586,0,0,21
+236701,14882.81545,0,0,21
+236702,14621.20614,0,0,21
+236703,14537.26392,0,0,21
+236704,14273.91025,0,0,21
+236705,14203.05349,0,0,21
+236706,13925.06625,0,0,21
+236707,13864.23328,0,0,21
+236708,13599.20166,0,0,21
+236709,13523.93919,0,0,21
+236710,13335.79878,0,0,21
+236711,13206.53793,0,0,21
+236712,12913.87366,0,0,21
+236713,12812.0205,0,0,21
+236714,12719.74424,0,0,21
+236715,12477.13313,0,0,21
+236716,12252.61596,0,0,21
+236717,12308.06482,0,0,21
+236718,12050.80753,0,0,21
+236719,11909.87801,0,0,21
+236720,11767.01304,0,0,21
+236721,11625.42374,0,0,21
+236722,11575.63056,0,0,21
+236723,11352.30732,0,0,21
+236724,11288.89445,0,0,21
+236725,11040.38351,0,0,21
+236726,11014.95892,0,0,21
+236727,10856.4671,0,0,21
+236728,10712.41468,0,0,21
+236729,10485.82249,0,0,21
+236730,10619.73066,0,0,21
+236731,10173.88085,0,0,21
+236732,10136.36454,0,0,21
+236733,10087.24839,0,0,21
+236734,9897.357922,0,0,21
+236735,9728.131644,0,0,21
+236736,9632.707804,0,0,21
+236737,9607.943608,0,0,21
+236738,9366.827413,0,0,21
+236739,9245.89437,0,0,21
+236740,9124.708748,0,0,21
+236741,9099.689645,0,0,21
+236742,8869.025747,0,0,21
+236743,8843.876076,0,0,21
+236744,8612.189087,0,0,21
+236745,8489.653401,0,0,21
+236746,8464.326357,0,0,21
+236747,8341.475327,0,0,21
+236748,8107.690777,0,0,21
+236749,8069.392805,0,0,21
+236750,7860.089636,0,0,21
+236751,7821.652716,0,0,21
+236752,7585.644303,0,0,21
+236753,7684.469996,0,0,21
+236754,7322.689251,0,0,21
+236755,7309.734404,0,0,21
+236756,7184.221477,0,0,21
+236757,7045.372128,0,0,21
+236758,6919.213923,0,0,21
+236759,6792.793961,0,0,21
+236760,6766.530327,0,0,21
+236761,6792.583181,0,0,21
+236762,6879.927791,0,0,21
+236763,6639.683307,0,0,21
+236764,6626.502733,0,0,21
+236765,6499.299837,0,0,21
+236766,6486.069553,0,0,21
+236767,6230.609697,0,0,21
+236768,6230.610788,0,0,21
+236769,6203.96232,0,0,21
+236770,5973.773671,0,0,21
+236771,5947.016623,0,0,21
+236772,5933.597094,0,0,21
+236773,5688.642177,0,0,21
+236774,5675.167117,0,0,21
+236775,5545.39916,0,0,21
+236776,5401.69197,0,0,21
+236777,5401.692072,0,0,21
+236778,5271.13087,0,0,21
+236779,5126.526642,0,0,21
+236780,5126.526894,0,0,21
+236781,4981.430152,0,0,21
+236782,4849.599062,0,0,21
+236783,4849.599019,0,0,21
+236784,4703.545238,0,0,21
+236785,4570.827801,0,0,21
+236786,4556.964745,0,0,21
+236787,4423.771476,0,0,21
+236788,4290.122169,0,0,21
+236789,4276.162163,0,0,21
+236790,4142.011317,0,0,21
+236791,4007.378369,0,0,21
+236792,3993.318533,0,0,21
+236793,3979.224386,0,0,21
+236794,3722.476872,0,0,21
+236795,3829.86187,0,0,21
+236796,3572.070536,0,0,21
+236797,3572.070306,0,0,21
+236798,3529.256795,0,0,21
+236799,3421.00763,0,0,21
+236800,3269.265178,0,0,21
+236801,3269.264941,0,0,21
+236802,3240.460638,0,0,21
+236803,2992.594613,0,0,21
+236804,3102.354831,0,0,21
+236805,2963.632213,0,0,21
+236806,2809.685184,0,0,21
+236807,2824.26465,0,0,21
+236808,2669.596217,0,0,21
+236809,2654.93221,0,0,21
+236810,2528.80432,0,0,21
+236811,2499.346957,0,0,21
+236812,2372.514059,0,0,21
+236813,2357.719213,0,0,21
+236814,2342.879135,0,0,21
+236815,2072.033613,0,0,21
+236816,2185.478844,0,0,21
+236817,2057.1004,0,0,21
+236818,1897.854924,0,0,21
+236819,1897.854931,0,0,21
+236820,1882.774549,0,0,21
+236821,5760.204704,0,0,21
+236822,5861.043309,0,0,21
+236823,5846.914869,0,0,21
+236824,5616.726419,0,0,21
+236825,5717.818945,0,0,21
+236826,5588.364214,0,0,21
+236827,5444.273204,0,0,21
+236828,5458.544095,0,0,21
+236829,5314.044059,0,0,21
+236830,5299.699023,0,0,21
+236831,5183.43495,0,0,21
+236832,5154.630918,0,0,21
+236833,5038.017093,0,0,21
+236834,5023.556952,0,0,21
+236835,4892.086295,0,0,21
+236836,4760.210399,0,0,21
+236837,4745.62987,0,0,21
+236838,4745.629824,0,0,21
+236839,4598.634264,0,0,21
+236840,4480.542311,0,0,21
+236841,4465.835406,0,0,21
+236842,4332.601281,0,0,21
+236843,4317.806382,0,0,21
+236844,4184.080923,0,0,21
+236845,4184.080881,0,0,21
+236846,4049.896947,0,0,21
+236847,4019.98245,0,0,21
+236848,3915.242185,0,0,21
+236849,3885.230652,0,0,21
+236850,3629.386312,0,0,21
+236851,3870.150196,0,0,21
+236852,3493.184895,0,0,21
+236853,3599.070419,0,0,21
+236854,3462.762759,0,0,21
+236855,3341.214565,0,0,21
+236856,3432.119833,0,0,21
+236857,3203.878216,0,0,21
+236858,3157.652501,0,0,21
+236859,3173.12041,0,0,21
+236860,3035.096224,0,0,21
+236861,2896.47753,0,0,21
+236862,3003.973026,0,0,21
+236863,2741.581363,0,0,21
+236864,2741.581345,0,0,21
+236865,2725.853755,0,0,21
+236866,2593.742032,0,0,21
+236867,2569.961902,0,0,21
+236868,2445.135658,0,0,21
+236869,2429.187057,0,0,21
+236870,2303.726598,0,0,21
+236871,2271.585339,0,0,21
+236872,2145.457471,0,0,21
+236873,2271.585314,0,0,21
+236874,1858.549162,0,0,21
+236875,2112.962849,0,0,21
+236876,1842.156725,0,0,21
+236877,1842.156717,0,0,21
+236878,1817.368909,0,0,21
+236879,1680.670966,0,0,21
+236880,1680.67096,0,0,21
+236881,0,0,0,21
+236882,0,0,0,21
+236883,0,0,0,21
+236884,0,0,0,21
+236885,0,0,0,21
+236886,0,0,0,21
+236887,0,0,0,21
+236888,0,0,0,21
+236889,0,0,0,21
+236890,0,0,0,21
+236891,0,0,0,21
+236892,0,0,0,21
+236893,0,0,0,21
+236894,0,0,0,21
+236895,0,0,0,21
+236896,0,0,0,21
+236897,0,0,0,21
+236898,0,0,0,21
+236899,0,0,0,21
+236900,0,0,0,21
+236901,0,0,0,21
+236902,0,0,0,21
+236903,0,0,0,21
+236904,0,0,0,21
+236905,0,0,0,21
+236906,0,0,0,21
+236907,0,0,0,21
+236908,0,0,0,21
+236909,0,0,0,21
+236910,0,0,0,21
+236911,0,0,0,21
+236912,0,0,0,21
+236913,0,0,0,21
+236914,0,0,0,21
+236915,0,0,0,21
+236916,0,0,0,21
+236917,0,0,0,21
+236918,0,0,0,21
+236919,0,0,0,21
+236920,0,0,0,21
+236921,0,0,0,21
+236922,0,0,0,21
+236923,0,0,0,21
+236924,0,0,0,21
+236925,0,0,0,21
+236926,0,0,0,21
+236927,0,0,0,21
+236928,0,0,0,21
+236929,0,0,0,21
+236930,0,0,0,21
+236931,0,0,0,21
+236932,0,0,0,21
+236933,0,0,0,21
+236934,0,0,0,21
+236935,0,0,0,21
+236936,0,0,0,21
+236937,0,0,0,21
+236938,0,0,0,21
+236939,0,0,0,21
+236940,0,0,0,21
+236941,0,0,0,21
+236942,0,0,0,21
+236943,0,0,0,21
+236944,0,0,0,21
+236945,0,0,0,21
+236946,0,0,0,21
+236947,0,0,0,21
+236948,0,0,0,21
+236949,0,0,0,21
+236950,0,0,0,21
+236951,0,0,0,21
+236952,0,0,0,21
+236953,0,0,0,21
+236954,0,0,0,21
+236955,0,0,0,21
+236956,0,0,0,21
+236957,0,0,0,21
+236958,0,0,0,21
+236959,0,0,0,21
+236960,0,0,0,21
+236961,0,0,0,21
+236962,0,0,0,21
+236963,0,0,0,21
+236964,0,0,0,21
+236965,0,0,0,21
+236966,0,0,0,21
+236967,0,0,0,21
+236968,0,0,0,21
+236969,0,0,0,21
+236970,0,0,0,21
+236971,0,0,0,21
+236972,0,0,0,21
+236973,0,0,0,21
+236974,0,0,0,21
+236975,0,0,0,21
+236976,0,0,0,21
+236977,0,0,0,21
+236978,0,0,0,21
+236979,0,0,0,21
+236980,0,0,0,21
+236981,0,0,0,21
+236982,0,0,0,21
+236983,0,0,0,21
+236984,0,0,0,21
+236985,0,0,0,21
+236986,0,0,0,21
+236987,0,0,0,21
+236988,0,0,0,21
+236989,0,0,0,21
+236990,0,0,0,21
+236991,0,0,0,21
+236992,0,0,0,21
+236993,0,0,0,21
+236994,0,0,0,21
+236995,0,0,0,21
+236996,0,0,0,21
+236997,0,0,0,21
+236998,0,0,0,21
+236999,0,0,0,21
+237000,0,0,0,21
+237001,0,0,0,21
+237002,0,0,0,21
+237003,0,0,0,21
+237004,0,0,0,21
+237005,0,0,0,21
+237006,0,0,0,21
+237007,0,0,0,21
+237008,0,0,0,21
+237009,0,0,0,21
+237010,0,0,0,21
+237011,0,0,0,21
+237012,0,0,0,21
+237013,0,0,0,21
+237014,0,0,0,21
+237015,0,0,0,21
+237016,0,0,0,21
+237017,0,0,0,21
+237018,0,0,0,21
+237019,0,0,0,21
+237020,0,0,0,21
+237021,0,0,0,21
+237022,0,0,0,21
+237023,0,0,0,21
+237024,0,0,0,21
+237025,0,0,0,21
+237026,0,0,0,21
+237027,0,0,0,21
+237028,0,0,0,21
+237029,0,0,0,21
+237030,0,0,0,21
+237031,0,0,0,21
+237032,0,0,0,21
+237033,0,0,0,21
+237034,0,0,0,21
+237035,0,0,0,21
+237036,0,0,0,21
+237037,0,0,0,21
+237038,0,0,0,21
+237039,0,0,0,21
+237040,0,0,0,21
+237041,0,0,0,21
+237042,0,0,0,21
+237043,0,0,0,21
+237044,0,0,0,21
+237045,0,0,0,21
+237046,0,0,0,21
+237047,0,0,0,21
+237048,0,0,0,21
+237049,0,0,0,21
+237050,0,0,0,21
+237051,0,0,0,21
+237052,0,0,0,21
+237053,0,0,0,21
+237054,0,0,0,21
+237055,0,0,0,21
+237056,0,0,0,21
+237057,0,0,0,21
+237058,0,0,0,21
+237059,0,0,0,21
+237060,0,0,0,21
+237061,0,0,0,21
+237062,0,0,0,21
+237063,0,0,0,21
+237064,0,0,0,21
+237065,0,0,0,21
+237066,0,0,0,21
+237067,0,0,0,21
+237068,0,0,0,21
+237069,0,0,0,21
+237070,0,0,0,21
+237071,0,0,0,21
+237072,0,0,0,21
+237073,0,0,0,21
+237074,0,0,0,21
+237075,0,0,0,21
+237076,0,0,0,21
+237077,0,0,0,21
+237078,0,0,0,21
+237079,0,0,0,21
+237080,0,0,0,21
+237081,0,0,0,21
+237082,0,0,0,21
+237083,0,0,0,21
+237084,0,0,0,21
+237085,0,0,0,21
+237086,0,0,0,21
+237087,0,0,0,21
+237088,0,0,0,21
+237089,0,0,0,21
+237090,0,0,0,21
+237091,0,0,0,21
+237092,0,0,0,21
+237093,0,0,0,21
+237094,0,0,0,21
+237095,0,0,0,21
+237096,0,0,0,21
+237097,0,0,0,21
+237098,0,0,0,21
+237099,0,0,0,21
+237100,0,0,0,21
+237101,0,0,0,21
+237102,0,0,0,21
+237103,0,0,0,21
+237104,0,0,0,21
+237105,0,0,0,21
+237106,0,0,0,21
+237107,0,0,0,21
+237108,0,0,0,21
+237109,0,0,0,21
+237110,0,0,0,21
+237111,0,0,0,21
+237112,0,0,0,21
+237113,0,0,0,21
+237114,0,0,0,21
+237115,0,0,0,21
+237116,0,0,0,21
+237117,0,0,0,21
+237118,0,0,0,21
+237119,0,0,0,21
+237120,0,0,0,21
+237121,0,0,0,21
+237122,0,0,0,21
+237123,0,0,0,21
+237124,0,0,0,21
+237125,0,0,0,21
+237126,0,0,0,21
+237127,0,0,0,21
+237128,0,0,0,21
+237129,0,0,0,21
+237130,0,0,0,21
+237131,0,0,0,21
+237132,0,0,0,21
+237133,0,0,0,21
+237134,0,0,0,21
+237135,0,0,0,21
+237136,0,0,0,21
+237137,0,0,0,21
+237138,0,0,0,21
+237139,0,0,0,21
+237140,0,0,0,21
+237141,0,0,0,21
+237142,0,0,0,21
+237143,0,0,0,21
+237144,0,0,0,21
+237145,0,0,0,21
+237146,0,0,0,21
+237147,0,0,0,21
+237148,0,0,0,21
+237149,0,0,0,21
+237150,0,0,0,21
+237151,0,0,0,21
+237152,0,0,0,21
+237153,0,0,0,21
+237154,0,0,0,21
+237155,0,0,0,21
+237156,0,0,0,21
+237157,0,0,0,21
+237158,0,0,0,21
+237159,0,0,0,21
+237160,0,0,0,21
+237161,0,0,0,21
+237162,0,0,0,21
+237163,0,0,0,21
+237164,0,0,0,21
+237165,0,0,0,21
+237166,0,0,0,21
+237167,0,0,0,21
+237168,0,0,0,21
+237169,0,0,0,21
+237170,0,0,0,21
+237171,0,0,0,21
+237172,0,0,0,21
+237173,0,0,0,21
+237174,0,0,0,21
+237175,0,0,0,21
+237176,0,0,0,21
+237177,0,0,0,21
+237178,0,0,0,21
+237179,0,0,0,21
+237180,0,0,0,21
+237181,0,0,0,21
+237182,0,0,0,21
+237183,0,0,0,21
+237184,0,0,0,21
+237185,0,0,0,21
+237186,0,0,0,21
+237187,0,0,0,21
+237188,0,0,0,21
+237189,0,0,0,21
+237190,0,0,0,21
+237191,0,0,0,21
+237192,0,0,0,21
+237193,0,0,0,21
+237194,0,0,0,21
+237195,0,0,0,21
+237196,0,0,0,21
+237197,0,0,0,21
+237198,0,0,0,21
+237199,0,0,0,21
+237200,0,0,0,21
+237201,0,0,0,21
+237202,0,0,0,21
+237203,0,0,0,21
+237204,0,0,0,21
+237205,0,0,0,21
+237206,0,0,0,21
+237207,0,0,0,21
+237208,0,0,0,21
+237209,0,0,0,21
+237210,0,0,0,21
+237211,0,0,0,21
+237212,0,0,0,21
+237213,0,0,0,21
+237214,0,0,0,21
+237215,0,0,0,21
+237216,0,0,0,21
+237217,0,0,0,21
+237218,0,0,0,21
+237219,0,0,0,21
+237220,0,0,0,21
+237221,0,0,0,21
+237222,0,0,0,21
+237223,0,0,0,21
+237224,0,0,0,21
+237225,0,0,0,21
+237226,0,0,0,21
+237227,0,0,0,21
+237228,0,0,0,21
+237229,0,0,0,21
+237230,0,0,0,21
+237231,0,0,0,21
+237232,0,0,0,21
+237233,0,0,0,21
+237234,0,0,0,21
+237235,0,0,0,21
+237236,0,0,0,21
+237237,0,0,0,21
+237238,0,0,0,21
+237239,0,0,0,21
+237240,0,0,0,21
+237241,0,0,0,21
+237242,0,0,0,21
+237243,0,0,0,21
+237244,0,0,0,21
+237245,0,0,0,21
+237246,0,0,0,21
+237247,0,0,0,21
+237248,0,0,0,21
+237249,0,0,0,21
+237250,0,0,0,21
+237251,0,0,0,21
+237252,0,0,0,21
+237253,0,0,0,21
+237254,0,0,0,21
+237255,0,0,0,21
+237256,0,0,0,21
+237257,0,0,0,21
+237258,0,0,0,21
+237259,0,0,0,21
+237260,0,0,0,21
+237261,0,0,0,21
+237262,0,0,0,21
+237263,0,0,0,21
+237264,0,0,0,21
+237265,0,0,0,21
+237266,0,0,0,21
+237267,0,0,0,21
+237268,0,0,0,21
+237269,0,0,0,21
+237270,0,0,0,21
+237271,0,0,0,21
+237272,0,0,0,21
+237273,0,0,0,21
+237274,0,0,0,21
+237275,0,0,0,21
+237276,0,0,0,21
+237277,0,0,0,21
+237278,0,0,0,21
+237279,0,0,0,21
+237280,0,0,0,21
+237281,0,0,0,21
+237282,0,0,0,21
+237283,0,0,0,21
+237284,0,0,0,21
+237285,1123.452468,0,0,21
+237286,1255.777766,0,0,21
+237287,1255.777873,0,0,21
+237288,1646.92983,0,0,21
+237289,1775.607257,0,0,21
+237290,1903.522451,0,0,21
+237291,2283.097973,0,0,21
+237292,2408.351107,0,0,21
+237293,2657.104712,0,0,21
+237294,2780.653052,0,0,21
+237295,2903.676602,0,0,21
+237296,3269.77362,0,0,21
+237297,3269.7736,0,0,21
+237298,3631.723769,0,0,21
+237299,3631.723683,0,0,21
+237300,3870.88874,0,0,21
+237301,4579.035222,0,0,21
+237302,4695.769705,0,0,21
+237303,4928.227688,0,0,21
+237304,5043.955473,0,0,21
+237305,5389.20061,0,0,21
+237306,5389.200422,0,0,21
+237307,5617.801732,0,0,21
+237308,5845.199366,0,0,21
+237309,5958.457875,0,0,21
+237310,6071.428517,0,0,21
+237311,6296.522787,0,0,21
+237312,6408.653824,0,0,21
+237313,6632.102417,0,0,21
+237314,6743.426819,0,0,21
+237315,6854.488838,0,0,21
+237316,7186.133175,0,0,21
+237317,7075.838599,0,0,21
+237318,7515.528145,0,0,21
+237319,7515.529877,0,0,21
+237320,7624.840571,0,0,21
+237321,7842.745305,0,0,21
+237322,7970.975462,0,0,21
+237323,8378.516602,0,0,21
+237324,8419.529287,0,0,21
+237325,8560.910706,0,0,21
+237326,8825.244618,0,0,21
+237327,8932.264853,0,0,21
+237328,9194.373897,0,0,21
+237329,9194.3359,0,0,21
+237330,9560.757358,0,0,21
+237331,9576.580354,0,0,21
+237332,9803.61338,0,0,21
+237333,9940.237837,0,0,21
+237334,10173.59132,0,0,21
+237335,10301.47243,0,0,21
+237336,10316.83112,0,0,21
+237337,10771.92177,0,0,21
+237338,10675.56351,0,0,21
+237339,11017.03176,0,0,21
+237340,11047.03358,0,0,21
+237341,11268.51256,0,0,21
+237342,11386.3842,0,0,21
+237343,11518.80274,0,0,21
+237344,11753.2927,0,0,21
+237345,11972.27465,0,0,21
+237346,11884.79606,0,0,21
+237347,12219.56385,0,0,21
+237348,12451.37489,0,0,21
+237349,12696.63114,0,0,21
+237350,13141.67259,0,0,21
+237351,13341.82647,0,0,21
+237352,13398.22938,0,0,21
+237353,13583.66878,0,0,21
+237354,13625.69886,0,0,21
+237355,14036.63271,0,0,21
+237356,13965.40353,0,0,21
+237357,14275.76727,0,0,21
+237358,14303.33912,0,0,21
+237359,14513.95917,1036.580727,0,21
+237360,14541.33418,1199.900712,0,21
+237361,14946.85098,1199.900711,0,21
+237362,14778.41258,1522.141512,0,21
+237363,15182.58744,1681.342488,0,21
+237364,15223.04037,1839.405756,0,21
+237365,15403.97877,2152.440227,0,21
+237366,15554.58072,2152.44022,0,21
+237367,15651.39789,2615.179041,0,21
+237368,15871.21909,2615.179031,0,21
+237369,15980.86323,2767.799936,0,21
+237370,16103.54965,3070.827448,0,21
+237371,16321.89801,3221.295371,0,21
+237372,16321.90011,3371.102136,0,21
+237373,16552.63212,3668.826262,0,21
+237374,16743.46072,3668.826242,0,21
+237375,16782.54131,4110.993204,0,21
+237376,16972.79498,4110.993179,0,21
+237377,17093.62766,4257.274289,0,21
+237378,17214.21337,4673.117249,0,21
+237379,17416.20001,4856.994591,0,21
+237380,17429.04443,4981.766211,0,21
+237381,17643.2106,5326.786673,0,21
+237382,17843.97967,5336.312395,0,21
+237383,17775.50594,5791.905504,0,21
+237384,18069.58072,5829.324181,0,21
+237385,18103.31421,5970.858923,0,21
+237386,18410.47701,6308.005302,0,21
+237387,18553.60745,6448.301193,0,21
+237388,18429.85579,6764.118887,0,21
+237389,18913.09054,6782.195288,0,21
+237390,18857.8736,7078.053517,0,21
+237391,19146.8271,7252.175313,0,21
+237392,19389.84834,7407.941371,0,21
+237393,19495.28664,7700.559502,0,21
+237394,19604.05689,7718.179838,0,21
+237395,20030.61023,8026.741072,0,21
+237396,19906.3153,8308.733601,0,21
+237397,20132.30986,8610.88603,0,21
+237398,20398.31388,8705.09386,0,21
+237399,20419.46365,8962.401276,0,21
+237400,20692.75498,9260.700205,0,21
+237401,20729.28978,9474.751259,0,21
+237402,20964.89957,9531.358674,0,21
+237403,21030.16081,9977.374477,0,21
+237404,21341.87519,9919.556649,0,21
+237405,21300.64377,10377.01231,0,21
+237406,21561.61069,10421.2392,0,21
+237407,21762.41473,10729.92711,0,21
+237408,21984.43934,13339.66977,0,21
+237409,22133.21975,12907.95796,0,21
+237410,22553.55482,13358.37945,0,21
+237411,22412.85476,14124.6276,0,21
+237412,22728.84635,14449.53178,0,21
+237413,22960.46818,15092.35701,0,21
+237414,23055.92531,15637.79696,0,21
+237415,23293.24259,15927.84059,0,21
+237416,23397.20102,16704.37926,0,21
+237417,23625.30988,16958.18391,0,21
+237418,23712.2494,17523.67229,0,21
+237419,23966.88387,18265.68978,0,21
+237420,24044.70008,18557.73373,0,21
+237421,0,0,0,21
+237422,0,0,0,21
+237423,0,0,0,21
+237424,0,0,0,21
+237425,0,368058.1888,664007.9813,21
+237426,339744.8078,0,0,21
+237427,0,0,0,21
+237428,0,0,0,21
+237429,0,0,0,21
+237430,0,0,0,21
+237431,0,0,0,21
+237432,0,0,0,21
+237433,0,0,0,21
+237434,0,0,0,21
+237435,0,0,0,21
+237436,0,0,0,21
+237437,0,0,0,21
+237438,0,0,0,21
+237439,0,0,0,21
+237440,0,0,0,21
+237441,0,0,0,21
+237442,0,0,0,21
+237443,0,0,0,21
+237444,0,0,0,21
+237445,0,0,0,21
+237446,0,0,0,21
+237447,0,0,0,21
+237448,0,0,0,21
+237449,0,0,0,21
+237450,0,0,0,21
+237451,0,0,0,21
+237452,0,0,0,21
+237453,0,0,0,21
+237454,0,0,0,21
+237455,0,0,0,21
+237456,0,0,0,21
+237457,0,0,0,21
+237458,0,0,0,21
+237459,0,369037.8312,663952.0968,21
+237460,0,0,0,21
+237461,339873.005,0,0,21
+237462,0,0,0,21
+237463,0,0,0,21
+237464,0,0,0,21
+237465,0,0,0,21
+237466,0,0,0,21
+237467,0,0,0,21
+237468,0,0,0,21
+237469,0,0,0,21
+237470,0,0,0,21
+237471,0,0,0,21
+237472,0,0,0,21
+237473,0,0,0,21
+237474,0,0,0,21
+237475,0,0,0,21
+237476,0,0,0,21
+237477,0,0,0,21
+237478,0,0,0,21
+237479,0,0,0,21
+237480,0,0,0,15.6
+237481,0,0,0,15.6
+237482,0,0,0,15.6
+237483,0,0,0,15.6
+237484,0,0,0,15.6
+237485,0,0,0,15.6
+237486,0,0,0,15.6
+237487,0,0,0,15.6
+237488,0,0,0,15.6
+237489,0,0,0,15.6
+237490,0,0,0,15.6
+237491,0,0,0,15.6
+237492,0,0,0,15.6
+237493,0,369045.6588,663945.4871,15.6
+237494,0,0,0,15.6
+237495,0,0,0,15.6
+237496,339890.716,0,0,15.6
+237497,0,0,0,15.6
+237498,0,0,0,15.6
+237499,0,0,0,15.6
+237500,0,0,0,15.6
+237501,0,0,0,15.6
+237502,0,0,0,15.6
+237503,0,0,0,15.6
+237504,0,0,0,15.6
+237505,0,0,0,15.6
+237506,0,0,0,15.6
+237507,0,0,0,15.6
+237508,0,0,0,15.6
+237509,0,0,0,15.6
+237510,0,0,0,15.6
+237511,0,0,0,15.6
+237512,0,0,0,15.6
+237513,0,0,0,15.6
+237514,0,0,0,15.6
+237515,0,0,0,15.6
+237516,0,0,0,15.6
+237517,0,0,0,15.6
+237518,0,0,0,15.6
+237519,0,0,0,15.6
+237520,0,0,0,15.6
+237521,0,0,0,15.6
+237522,0,0,0,15.6
+237523,0,0,0,15.6
+237524,0,0,0,15.6
+237525,0,0,0,15.6
+237526,0,0,0,15.6
+237527,0,369053.4829,664353.0515,15.6
+237528,0,0,0,15.6
+237529,0,0,0,15.6
+237530,0,0,0,15.6
+237531,339890.7616,0,0,15.6
+237532,0,0,0,15.6
+237533,0,0,0,15.6
+237534,0,0,0,15.6
+237535,0,0,0,15.6
+237536,0,0,0,15.6
+237537,0,0,0,15.6
+237538,0,0,0,15.6
+237539,0,0,0,15.6
+237540,0,0,0,15.6
+237541,0,0,0,15.6
+237542,0,0,0,15.6
+237543,0,0,0,15.6
+237544,0,0,0,15.6
+237545,0,0,0,15.6
+237546,0,0,0,15.6
+237547,0,0,0,15.6
+237548,0,0,0,15.6
+237549,0,0,0,15.6
+237550,0,0,0,15.6
+237551,0,0,0,15.6
+237552,0,0,0,15.6
+237553,0,0,0,15.6
+237554,0,0,0,15.6
+237555,0,0,0,15.6
+237556,0,0,0,15.6
+237557,0,0,0,15.6
+237558,0,0,0,15.6
+237559,0,0,0,15.6
+237560,0,0,0,15.6
+237561,0,368703.5156,664060.6432,15.6
+237562,0,0,0,15.6
+237563,0,0,0,15.6
+237564,0,0,0,15.6
+237565,0,0,0,15.6
+237566,339926.6403,0,0,15.6
+237567,0,0,0,15.6
+237568,0,0,0,15.6
+237569,0,0,0,15.6
+237570,0,0,0,15.6
+237571,0,0,0,15.6
+237572,0,0,0,15.6
+237573,0,0,0,15.6
+237574,0,0,0,15.6
+237575,0,0,0,15.6
+237576,0,0,0,15.6
+237577,0,0,0,15.6
+237578,0,0,0,15.6
+237579,0,0,0,15.6
+237580,0,0,0,15.6
+237581,0,0,0,15.6
+237582,0,0,0,15.6
+237583,0,0,0,15.6
+237584,0,0,0,15.6
+237585,0,0,0,15.6
+237586,0,0,0,15.6
+237587,0,0,0,15.6
+237588,0,0,0,15.6
+237589,0,0,0,15.6
+237590,0,0,0,15.6
+237591,0,0,0,15.6
+237592,0,0,0,15.6
+237593,0,0,0,15.6
+237594,0,0,0,15.6
+237595,0,0,664501.741,15.6
+237596,0,369056.5666,0,15.6
+237597,0,0,0,15.6
+237598,0,0,0,15.6
+237599,0,0,0,15.6
+237600,0,0,0,15.6
+237601,339968.5579,0,0,15.6
+237602,0,0,0,15.6
+237603,0,0,0,15.6
+237604,0,0,0,15.6
+237605,0,0,0,15.6
+237606,0,0,0,15.6
+237607,0,0,0,15.6
+237608,0,0,0,15.6
+237609,0,0,0,15.6
+237610,0,0,0,15.6
+237611,0,0,0,15.6
+237612,0,0,0,15.6
+237613,0,0,0,15.6
+237614,0,0,0,15.6
+237615,0,0,0,15.6
+237616,0,0,0,15.6
+237617,0,0,0,15.6
+237618,0,0,0,15.6
+237619,0,0,0,15.6
+237620,0,0,0,15.6
+237621,0,0,0,15.6
+237622,0,0,0,15.6
+237623,0,0,0,15.6
+237624,0,0,0,15.6
+237625,0,0,0,15.6
+237626,0,0,0,15.6
+237627,0,0,0,15.6
+237628,0,0,0,15.6
+237629,0,0,664701.1435,15.6
+237630,0,0,0,15.6
+237631,0,369056.8394,0,15.6
+237632,0,0,0,15.6
+237633,0,0,0,15.6
+237634,0,0,0,15.6
+237635,0,0,0,15.6
+237636,339968.5579,0,0,15.6
+237637,0,0,0,15.6
+237638,0,0,0,15.6
+237639,0,0,0,15.6
+237640,0,0,0,15.6
+237641,0,0,0,15.6
+237642,0,0,0,15.6
+237643,0,0,0,15.6
+237644,0,0,0,15.6
+237645,0,0,0,15.6
+237646,0,0,0,15.6
+237647,0,0,0,15.6
+237648,0,0,0,15.6
+237649,0,0,0,15.6
+237650,0,0,0,15.6
+237651,0,0,0,15.6
+237652,0,0,0,15.6
+237653,0,0,0,15.6
+237654,0,0,0,15.6
+237655,0,0,0,15.6
+237656,0,0,0,15.6
+237657,0,0,0,15.6
+237658,0,0,0,15.6
+237659,0,0,0,15.6
+237660,0,0,0,15.6
+237661,0,0,0,15.6
+237662,0,0,0,15.6
+237663,0,0,663905.8471,15.6
+237664,0,0,0,15.6
+237665,0,0,0,15.6
+237666,0,369056.8422,0,15.6
+237667,0,0,0,15.6
+237668,0,0,0,15.6
+237669,0,0,0,15.6
+237670,0,0,0,15.6
+237671,339968.5579,0,0,15.6
+237672,0,0,0,15.6
+237673,0,0,0,15.6
+237674,0,0,0,15.6
+237675,0,0,0,15.6
+237676,0,0,0,15.6
+237677,0,0,0,15.6
+237678,0,0,0,15.6
+237679,0,0,0,15.6
+237680,0,0,0,15.6
+237681,0,0,0,15.6
+237682,0,0,0,15.6
+237683,0,0,0,15.6
+237684,0,0,0,15.6
+237685,0,0,0,15.6
+237686,0,0,0,15.6
+237687,0,0,0,15.6
+237688,0,0,0,15.6
+237689,0,0,0,15.6
+237690,0,0,0,15.6
+237691,0,0,0,15.6
+237692,0,0,0,15.6
+237693,0,0,0,15.6
+237694,0,0,0,15.6
+237695,0,0,0,15.6
+237696,0,0,0,15.6
+237697,0,0,664233.4272,15.6
+237698,0,0,0,15.6
+237699,0,0,0,15.6
+237700,0,0,0,15.6
+237701,0,368916.8539,0,15.6
+237702,0,0,0,15.6
+237703,0,0,0,15.6
+237704,0,0,0,15.6
+237705,0,0,0,15.6
+237706,0,0,0,15.6
+237707,339968.5579,0,0,15.6
+237708,0,0,0,15.6
+237709,0,0,0,15.6
+237710,0,0,0,15.6
+237711,0,0,0,15.6
+237712,0,0,0,15.6
+237713,0,0,0,15.6
+237714,0,0,0,15.6
+237715,0,0,0,15.6
+237716,0,0,0,15.6
+237717,0,0,0,15.6
+237718,0,0,0,15.6
+237719,0,0,0,15.6
+237720,0,0,0,15.6
+237721,0,0,0,15.6
+237722,0,0,0,15.6
+237723,0,0,0,15.6
+237724,0,0,0,15.6
+237725,0,0,0,15.6
+237726,0,0,0,15.6
+237727,0,0,0,15.6
+237728,0,0,0,15.6
+237729,0,0,0,15.6
+237730,0,0,0,15.6
+237731,0,0,664546.7576,15.6
+237732,0,0,0,15.6
+237733,0,0,0,15.6
+237734,0,0,0,15.6
+237735,0,0,0,15.6
+237736,0,368955.6585,0,15.6
+237737,0,0,0,15.6
+237738,0,0,0,15.6
+237739,0,0,0,15.6
+237740,0,0,0,15.6
+237741,0,0,0,15.6
+237742,0,0,0,15.6
+237743,339936.8891,0,0,15.6
+237744,0,0,0,15.6
+237745,0,0,0,15.6
+237746,0,0,0,15.6
+237747,0,0,0,15.6
+237748,0,0,0,15.6
+237749,0,0,0,15.6
+237750,0,0,0,15.6
+237751,0,0,0,15.6
+237752,0,0,0,15.6
+237753,0,0,0,15.6
+237754,0,0,0,15.6
+237755,0,0,0,15.6
+237756,0,0,0,15.6
+237757,0,0,0,15.6
+237758,0,0,0,15.6
+237759,0,0,0,15.6
+237760,0,0,0,15.6
+237761,0,0,0,15.6
+237762,0,0,0,15.6
+237763,0,0,0,15.6
+237764,0,0,0,15.6
+237765,0,0,663996.0808,15.6
+237766,0,0,0,15.6
+237767,0,0,0,15.6
+237768,0,0,0,15.6
+237769,0,0,0,15.6
+237770,0,0,0,15.6
+237771,0,369042.5264,0,15.6
+237772,0,0,0,15.6
+237773,0,0,0,15.6
+237774,0,0,0,15.6
+237775,0,0,0,15.6
+237776,0,0,0,15.6
+237777,0,0,0,15.6
+237778,0,0,0,15.6
+237779,339891.0764,0,0,15.6
+237780,0,0,0,15.6
+237781,0,0,0,15.6
+237782,0,0,0,15.6
+237783,0,0,0,15.6
+237784,0,0,0,15.6
+237785,0,0,0,15.6
+237786,0,0,0,15.6
+237787,0,0,0,15.6
+237788,0,0,0,15.6
+237789,0,0,0,15.6
+237790,0,0,0,15.6
+237791,0,0,0,15.6
+237792,0,0,0,15.6
+237793,0,0,0,15.6
+237794,0,0,0,15.6
+237795,0,0,0,15.6
+237796,0,0,0,15.6
+237797,0,0,0,15.6
+237798,0,0,0,15.6
+237799,0,0,664386.9249,15.6
+237800,0,0,0,15.6
+237801,0,0,0,15.6
+237802,0,0,0,15.6
+237803,0,0,0,15.6
+237804,0,0,0,15.6
+237805,0,0,0,15.6
+237806,0,369110.4819,0,15.6
+237807,0,0,0,15.6
+237808,0,0,0,15.6
+237809,0,0,0,15.6
+237810,0,0,0,15.6
+237811,0,0,0,15.6
+237812,0,0,0,15.6
+237813,339909.0671,0,0,15.6
+237814,0,0,0,15.6
+237815,0,0,0,15.6
+237816,0,0,0,15.6
+237817,0,0,0,15.6
+237818,0,0,0,15.6
+237819,0,0,0,15.6
+237820,0,0,0,15.6
+237821,0,0,0,15.6
+237822,0,0,0,15.6
+237823,0,0,0,15.6
+237824,0,0,0,15.6
+237825,0,0,0,15.6
+237826,0,0,0,15.6
+237827,0,0,0,15.6
+237828,0,0,0,15.6
+237829,0,0,0,15.6
+237830,0,0,0,15.6
+237831,0,0,0,15.6
+237832,0,0,0,15.6
+237833,0,0,663847.7724,15.6
+237834,0,0,0,15.6
+237835,0,0,0,15.6
+237836,0,0,0,15.6
+237837,0,0,0,15.6
+237838,0,0,0,15.6
+237839,0,0,0,15.6
+237840,0,369159.4985,0,17.8
+237841,59436.15376,0,0,17.8
+237842,4918.643399,0,0,17.8
+237843,17135.12439,0,0,17.8
+237844,22548.86553,0,0,17.8
+237845,18656.08577,0,0,17.8
+237846,19126.72373,0,0,17.8
+237847,359030.9401,0,0,17.8
+237848,19174.91851,0,0,17.8
+237849,19089.87919,0,0,17.8
+237850,19158.99817,0,0,17.8
+237851,19087.93877,0,0,17.8
+237852,19157.066,0,0,17.8
+237853,19080.5033,0,0,17.8
+237854,19129.82388,0,0,17.8
+237855,19103.35108,0,0,17.8
+237856,19063.48708,0,0,17.8
+237857,19111.51563,0,0,17.8
+237858,19104.71313,0,0,17.8
+237859,19089.07896,0,0,17.8
+237860,19059.0527,0,0,17.8
+237861,19100.319,0,0,17.8
+237862,19050.54827,0,0,17.8
+237863,19092.31649,0,0,17.8
+237864,71776.05495,0,0,17.8
+237865,40179.63421,0,0,17.8
+237866,100714.4495,0,0,17.8
+237867,73519.87614,0,664091.7734,17.8
+237868,100882.2815,0,0,17.8
+237869,91501.44705,0,0,17.8
+237870,94805.97405,0,0,17.8
+237871,77635.40649,0,0,17.8
+237872,77923.93958,0,0,17.8
+237873,78610.93145,0,0,17.8
+237874,78456.31962,369159.4985,0,17.8
+237875,79284.43688,0,0,17.8
+237876,79379.82731,0,0,17.8
+237877,79860.03933,0,0,17.8
+237878,80109.28008,0,0,17.8
+237879,80382.24388,0,0,17.8
+237880,80776.96938,0,0,17.8
+237881,419565.8854,0,0,17.8
+237882,74603.89123,0,0,17.8
+237883,73892.47933,0,0,17.8
+237884,127877.4994,0,0,17.8
+237885,77151.1629,0,0,17.8
+237886,81752.71476,0,0,17.8
+237887,94909.74019,0,0,17.8
+237888,86498.05434,0,0,17.8
+237889,86811.24426,0,0,17.8
+237890,86600.33776,0,0,17.8
+237891,85796.49257,0,0,17.8
+237892,16729.81512,0,0,17.8
+237893,16627.50645,0,0,17.8
+237894,16571.69832,16019.25954,0,17.8
+237895,16468.21329,33036.00492,0,17.8
+237896,16411.92221,31238.52591,0,17.8
+237897,16228.72631,29073.81317,0,17.8
+237898,16172.04052,31613.15945,0,17.8
+237899,16033.34761,31874.80916,0,17.8
+237900,15975.74069,32066.42901,0,20
+237901,606439.6137,859719.1234,664531.4376,20
+237902,52461.62026,0,0,20
+237903,105838.7583,11973.83639,0,20
+237904,177316.2572,12798.65395,0,20
+237905,154123.1103,203052.7646,0,20
+237906,148850.6851,83320.71432,0,20
+237907,147251.2533,543686.0375,0,20
+237908,147301.1949,108049.5816,0,20
+237909,145852.1247,108284.6808,0,20
+237910,145072.5243,108304.5148,0,20
+237911,143305.2178,109401.5422,0,20
+237912,142114.8231,108127.0085,0,20
+237913,141392.7856,107728.4786,0,20
+237914,140153.7412,107712.4755,0,20
+237915,139918.2978,106964.7693,0,20
+237916,138738.4102,106829.4621,0,20
+237917,137829.7718,106442.5538,0,20
+237918,137658.9018,105712.8704,0,20
+237919,137789.8759,105510.1447,0,20
+237920,136237.4564,105258.0317,0,20
+237921,135850.1954,104668.3619,0,20
+237922,135174.5105,104264.4833,0,20
+237923,134664.6095,104149.0709,0,20
+237924,133375.5608,103413.0307,0,20
+237925,133429.3915,102965.4031,0,20
+237926,132487.7388,103127.7003,0,20
+237927,131802.7578,102140.971,0,20
+237928,131348.0041,102054.7891,0,20
+237929,130490.6631,101426.6606,0,20
+237930,130160.9932,101197.2197,0,20
+237931,129475.3535,101169.3562,0,20
+237932,128810.3521,101074.8275,0,20
+237933,128235.6797,101472.5404,0,20
+237934,127792.9118,101226.4982,0,20
+237935,126605.2824,101209.6804,0,20
+237936,126473.116,101563.5962,0,20
+237937,125686.561,101847.9369,0,20
+237938,124954.2653,101428.3823,0,20
+237939,124548.2373,102152.2279,0,20
+237940,123455.143,101755.1021,0,20
+237941,123093.9955,102318.8666,0,20
+237942,122473.2925,102239.719,0,20
+237943,121433.3764,102248.7322,0,20
+237944,121060.4315,103088.8323,0,20
+237945,120421.1991,102376.5811,0,20
+237946,119436.1896,103330.7272,0,20
+237947,119091.7975,103064.8279,0,20
+237948,117715.6735,103316.7874,0,20
+237949,117639.4073,103726.0879,0,20
+237950,116539.8051,103682.4268,0,20
+237951,115706.1957,104047.1117,0,20
+237952,115185.8938,104029.5289,0,20
+237953,114298.6469,104389.7024,0,20
+237954,113581.3133,104449.2946,0,20
+237955,113074.9619,104953.5295,0,20
+237956,111991.2949,104996.3518,0,20
+237957,111486.3258,105068.7847,0,20
+237958,110701.7967,105341.1117,0,20
+237959,110726.2133,105522.2179,0,20
+237960,110488.3858,106090.9995,0,21
+237961,101314.7081,532411.1726,0,21
+237962,99745.91149,99082.65636,0,21
+237963,99149.29402,98837.42228,0,21
+237964,98713.25245,99193.48523,0,21
+237965,98068.03485,98360.25067,0,21
+237966,97645.13945,98984.78919,0,21
+237967,97209.50284,98685.06346,0,21
+237968,96239.85228,99063.39646,0,21
+237969,96284.75491,99091.2641,0,21
+237970,95720.66664,99368.89303,0,21
+237971,94934.20574,99057.62679,0,21
+237972,94584.50259,99637.46015,0,21
+237973,93947.60528,99590.29514,0,21
+237974,93524.58408,99302.70111,0,21
+237975,92960.25059,100226.525,0,21
+237976,92490.25171,99713.94263,0,21
+237977,92077.88807,100288.1997,0,21
+237978,90681.36885,100221.7925,0,21
+237979,90244.21712,100404.2194,0,21
+237980,89773.85371,100313.7805,0,21
+237981,89119.53096,100998.3894,0,21
+237982,88631.54597,100499.5801,0,21
+237983,88046.50052,101228.7999,0,21
+237984,87782.84273,101234.9811,0,21
+237985,86955.83387,100974.9295,0,21
+237986,86664.67269,101512.6175,0,21
+237987,85941.59891,101719.1928,0,21
+237988,85390.48064,101827.0189,0,21
+237989,85099.93865,101888.5389,0,21
+237990,84151.451,102250.0005,0,21
+237991,83911.71562,101928.6232,0,21
+237992,83251.35623,102097.3671,0,21
+237993,82459.32925,101359.5683,0,21
+237994,82050.09943,101338.6118,0,21
+237995,81428.70273,101992.8392,0,21
+237996,80864.21317,101230.8096,0,21
+237997,79983.71486,101006.6584,0,21
+237998,79551.40108,100944.9196,0,21
+237999,78929.19439,100736.8518,0,21
+238000,78471.78581,100367.3686,0,21
+238001,77492.64461,100075.9524,0,21
+238002,77246.10154,99749.04345,0,21
+238003,76086.21278,99547.24058,0,21
+238004,76183.49204,98602.99725,0,21
+238005,75108.9807,99150.31303,0,21
+238006,74484.04974,98630.85621,0,21
+238007,74111.07308,97661.96046,0,21
+238008,73382.42934,97798.29292,0,21
+238009,72483.67628,97768.94956,0,21
+238010,72323.42106,97029.94906,0,21
+238011,71388.98004,96164.57537,0,21
+238012,70597.22567,96824.09817,0,21
+238013,70311.79037,95724.62706,0,21
+238014,69411.36177,95743.80294,0,21
+238015,68941.03702,94972.26006,0,21
+238016,68233.27171,95175.76541,0,21
+238017,67375.88121,94096.60077,0,21
+238018,67083.78133,94322.65573,0,21
+238019,66350.60597,93526.29931,0,21
+238020,65601.32035,93440.65442,0,21
+238021,20350.65694,43130.00068,0,21
+238022,17809.49325,39858.48543,0,21
+238023,17562.50923,38707.72997,0,21
+238024,16923.49665,37322.84752,0,21
+238025,16720.31958,36540.35253,0,21
+238026,16177.86288,35593.46561,0,21
+238027,16072.45814,34535.5153,0,21
+238028,15554.90242,33789.15067,0,21
+238029,15224.46543,32834.91734,0,21
+238030,14930.31121,32229.19527,0,21
+238031,14606.47836,31037.15557,0,21
+238032,14299.95825,30288.1154,0,21
+238033,14069.97351,29780.54835,0,21
+238034,13664.09814,28588.32794,0,21
+238035,13333.00426,27836.75746,0,21
+238036,13033.99482,27073.89113,0,21
+238037,12830.09973,26450.15624,0,21
+238038,12494.93801,25256.27611,0,21
+238039,12072.02097,24711.3271,0,21
+238040,11962.51277,24005.58397,0,21
+238041,11556.50361,22916.52931,0,21
+238042,11339.4732,22385.09828,0,21
+238043,11028.36562,21672.68928,0,21
+238044,10697.03722,20366.56438,0,21
+238045,10483.36831,20009.74812,0,21
+238046,10183.89293,19430.99752,0,21
+238047,9955.765393,18316.29955,0,21
+238048,9541.312512,17565.14977,0,21
+238049,9312.566779,16803.05547,0,21
+238050,9231.732413,16185.45722,0,21
+238051,8666.246281,15254.25472,0,21
+238052,8601.44177,15157.05721,0,21
+238053,8256.895469,14796.61972,0,21
+238054,8061.382669,13945.4522,0,21
+238055,7852.831368,14108.8793,0,21
+238056,7412.002658,13112.2453,0,21
+238057,7339.710494,12902.37271,0,21
+238058,7111.214432,12468.60929,0,21
+238059,6726.091134,12243.52377,0,21
+238060,6644.827255,11399.92002,0,21
+238061,6362.422673,11347.47773,0,21
+238062,6185.104979,10577.40992,0,21
+238063,6007.095572,10620.58204,0,21
+238064,5696.819456,9716.255282,0,21
+238065,5540.843982,9390.035789,0,21
+238066,5336.121397,9154.890022,0,21
+238067,5179.797907,8559.352075,0,21
+238068,4861.402824,8163.014517,0,21
+238069,4704.028456,7870.250991,0,21
+238070,4494.140473,7462.217566,0,21
+238071,4321.42046,7043.433379,0,21
+238072,4147.800409,5857.009364,0,21
+238073,3833.593761,5655.331869,0,21
+238074,3784.842668,5377.813469,0,21
+238075,3454.83842,4698.044473,0,21
+238076,3288.714092,4491.732138,0,21
+238077,3096.019568,3815.825358,0,21
+238078,2901.911421,3773.357397,0,21
+238079,2732.400807,3049.984649,0,21
+238080,2388.421051,2861.506962,0,21
+238081,2349.242371,2270.931034,0,21
+238082,2161.540357,2253.820139,0,21
+238083,1971.52834,1660.441842,0,21
+238084,1792.476245,1338.506638,0,21
+238085,1569.733504,1312.230624,0,21
+238086,1534.907354,1251.18952,0,21
+238087,1200.919945,1207.283853,0,21
+238088,1147.291751,1154.047392,0,21
+238089,1160.740326,1118.95451,0,21
+238090,1120.310914,1065.297083,0,21
+238091,1120.311007,1002.903643,0,21
+238092,1079.625562,975.7935703,0,21
+238093,1066.005722,930.7426386,0,21
+238094,1066.005862,858.0000264,0,21
+238095,1011.228729,840.0032247,0,21
+238096,1024.968312,794.2965751,0,21
+238097,983.657712,720.4492028,0,21
+238098,983.6577884,692.3931603,0,21
+238099,955.9617186,655.6964598,0,21
+238100,928.1381228,627.4782964,0,21
+238101,928.1381969,604.4411997,0,21
+238102,900.1842041,556.9982593,0,21
+238103,872.0969182,514.5673264,0,21
+238104,872.0969802,437.8918784,0,21
+238105,829.7092007,418.8010772,0,21
+238106,829.7092923,389.5935466,0,21
+238107,801.2746448,291.6493763,0,21
+238108,787.0031387,291.6493761,0,21
+238109,772.6948482,226.7193197,0,21
+238110,743.9658525,186.1272396,0,21
+238111,729.5440443,140.236259,0,21
+238112,715.0834194,108.8106566,0,21
+238113,700.5830579,55.72250966,0,21
+238114,686.0428114,21.90587977,0,21
+238115,656.8393708,0,0,21
+238116,656.8394077,0,0,21
+238117,627.467514,0,0,21
+238118,612.7166109,0,0,21
+238119,597.9212986,0,0,21
+238120,583.0807621,0,0,21
+238121,568.194125,0,0,21
+238122,538.2787925,0,0,21
+238123,538.278815,0,0,21
+238124,523.248166,0,0,21
+238125,493.035327,0,0,21
+238126,493.0353522,0,0,21
+238127,462.6125142,0,0,21
+238128,462.612538,0,0,21
+238129,431.968956,0,0,21
+238130,416.5606509,0,0,21
+238131,416.5606742,0,0,21
+238132,385.5624002,0,0,21
+238133,369.968658,0,0,21
+238134,369.9686769,0,0,21
+238135,338.5811989,0,0,21
+238136,322.7826124,0,0,21
+238137,322.7826306,0,0,21
+238138,290.9616388,0,0,21
+238139,290.9616522,0,0,21
+238140,258.8199796,0,0,21
+238141,226.3246024,0,0,21
+238142,209.9324424,0,0,21
+238143,176.8248366,0,0,21
+238144,176.8248477,0,0,21
+238145,160.0934779,0,0,21
+238146,143.2300974,0,0,21
+238147,126.2215654,0,0,21
+238148,109.051296,0,0,21
+238149,91.69760263,0,0,21
+238150,82.94314973,0,0,21
+238151,56.30783552,0,0,21
+238152,56.30783871,0,0,21
+238153,19.54811941,0,0,21
+238154,28.92484416,0,0,21
+238155,0,0,0,21
+238156,0,0,0,21
+238157,0,0,0,21
+238158,0,0,0,21
+238159,0,0,0,21
+238160,0,0,0,21
+238161,0,0,0,21
+238162,0,0,0,21
+238163,0,0,0,21
+238164,0,0,0,21
+238165,0,0,0,21
+238166,0,0,0,21
+238167,0,0,0,21
+238168,0,0,0,21
+238169,0,0,0,21
+238170,0,0,0,21
+238171,0,0,0,21
+238172,0,0,0,21
+238173,0,0,0,21
+238174,0,0,0,21
+238175,0,0,0,21
+238176,0,0,0,21
+238177,0,0,0,21
+238178,0,0,0,21
+238179,0,0,0,21
+238180,0,0,0,21
+238181,0,0,0,21
+238182,0,0,0,21
+238183,0,0,0,21
+238184,0,0,0,21
+238185,0,0,0,21
+238186,0,0,0,21
+238187,0,0,0,21
+238188,0,0,0,21
+238189,0,0,0,21
+238190,0,0,0,21
+238191,0,0,0,21
+238192,0,0,0,21
+238193,0,0,0,21
+238194,0,0,0,21
+238195,0,0,0,21
+238196,0,0,0,21
+238197,0,0,0,21
+238198,0,0,0,21
+238199,0,0,0,21
+238200,0,0,0,21
+238201,0,0,0,21
+238202,0,0,0,21
+238203,0,0,0,21
+238204,0,0,0,21
+238205,0,0,0,21
+238206,0,0,0,21
+238207,0,0,0,21
+238208,0,0,0,21
+238209,0,0,0,21
+238210,0,0,0,21
+238211,0,0,0,21
+238212,0,0,0,21
+238213,0,0,0,21
+238214,0,0,0,21
+238215,0,0,0,21
+238216,0,0,0,21
+238217,0,0,0,21
+238218,0,0,0,21
+238219,0,0,0,21
+238220,0,0,0,21
+238221,0,0,0,21
+238222,0,0,0,21
+238223,0,0,0,21
+238224,0,0,0,21
+238225,0,0,0,21
+238226,0,0,0,21
+238227,0,0,0,21
+238228,0,0,0,21
+238229,0,0,0,21
+238230,0,0,0,21
+238231,0,0,0,21
+238232,0,0,0,21
+238233,0,0,0,21
+238234,0,0,0,21
+238235,0,0,0,21
+238236,0,0,0,21
+238237,0,0,0,21
+238238,0,0,0,21
+238239,0,0,0,21
+238240,0,0,0,21
+238241,0,0,0,21
+238242,0,0,0,21
+238243,0,0,0,21
+238244,0,0,0,21
+238245,0,0,0,21
+238246,0,0,0,21
+238247,0,0,0,21
+238248,0,0,0,21
+238249,0,0,0,21
+238250,0,0,0,21
+238251,0,0,0,21
+238252,0,0,0,21
+238253,0,0,0,21
+238254,0,0,0,21
+238255,0,0,0,21
+238256,0,0,0,21
+238257,0,0,0,21
+238258,0,0,0,21
+238259,0,0,0,21
+238260,0,0,0,21
+238261,0,0,0,21
+238262,0,0,0,21
+238263,0,0,0,21
+238264,0,0,0,21
+238265,0,0,0,21
+238266,0,0,0,21
+238267,0,0,0,21
+238268,0,0,0,21
+238269,0,0,0,21
+238270,0,0,0,21
+238271,0,0,0,21
+238272,0,0,0,21
+238273,0,0,0,21
+238274,0,0,0,21
+238275,0,0,0,21
+238276,0,0,0,21
+238277,0,0,0,21
+238278,0,0,0,21
+238279,0,0,0,21
+238280,0,0,0,21
+238281,0,0,0,21
+238282,0,0,0,21
+238283,0,0,0,21
+238284,0,0,0,21
+238285,0,0,0,21
+238286,0,0,0,21
+238287,0,0,0,21
+238288,0,0,0,21
+238289,0,0,0,21
+238290,0,0,0,21
+238291,0,0,0,21
+238292,0,0,0,21
+238293,0,0,0,21
+238294,0,0,0,21
+238295,0,0,0,21
+238296,0,0,0,21
+238297,0,0,0,21
+238298,0,0,0,21
+238299,0,0,0,21
+238300,0,0,0,21
+238301,0,0,0,21
+238302,0,0,0,21
+238303,0,0,0,21
+238304,0,0,0,21
+238305,0,0,0,21
+238306,0,0,0,21
+238307,0,0,0,21
+238308,0,0,0,21
+238309,0,0,0,21
+238310,0,0,0,21
+238311,0,0,0,21
+238312,0,0,0,21
+238313,0,0,0,21
+238314,0,0,0,21
+238315,0,0,0,21
+238316,0,0,0,21
+238317,0,0,0,21
+238318,0,0,0,21
+238319,0,0,0,21
+238320,0,0,0,21
+238321,0,0,0,21
+238322,0,0,0,21
+238323,0,0,0,21
+238324,0,0,0,21
+238325,0,0,0,21
+238326,0,0,0,21
+238327,0,0,0,21
+238328,0,0,0,21
+238329,0,0,0,21
+238330,0,0,0,21
+238331,0,0,0,21
+238332,0,0,0,21
+238333,0,0,0,21
+238334,0,0,0,21
+238335,0,0,0,21
+238336,0,0,0,21
+238337,0,0,0,21
+238338,0,0,0,21
+238339,0,0,0,21
+238340,0,0,0,21
+238341,0,0,0,21
+238342,0,0,0,21
+238343,0,0,0,21
+238344,0,0,0,21
+238345,0,0,0,21
+238346,0,0,0,21
+238347,0,0,0,21
+238348,0,0,0,21
+238349,0,0,0,21
+238350,0,0,0,21
+238351,0,0,0,21
+238352,0,0,0,21
+238353,0,0,0,21
+238354,0,0,0,21
+238355,0,0,0,21
+238356,0,0,0,21
+238357,0,0,0,21
+238358,0,0,0,21
+238359,0,0,0,21
+238360,0,0,0,21
+238361,0,0,0,21
+238362,0,0,0,21
+238363,0,0,0,21
+238364,0,0,0,21
+238365,0,0,0,21
+238366,0,0,0,21
+238367,0,0,0,21
+238368,0,0,0,21
+238369,0,0,0,21
+238370,0,0,0,21
+238371,0,0,0,21
+238372,0,0,0,21
+238373,0,0,0,21
+238374,0,0,0,21
+238375,0,0,0,21
+238376,0,0,0,21
+238377,0,0,0,21
+238378,0,0,0,21
+238379,0,0,0,21
+238380,0,0,0,21
+238381,0,0,0,21
+238382,0,0,0,21
+238383,0,0,0,21
+238384,0,0,0,21
+238385,0,0,0,21
+238386,0,0,0,21
+238387,0,0,0,21
+238388,0,0,0,21
+238389,0,0,0,21
+238390,0,0,0,21
+238391,0,0,0,21
+238392,0,0,0,21
+238393,0,0,0,21
+238394,0,0,0,21
+238395,0,0,0,21
+238396,0,0,0,21
+238397,0,0,0,21
+238398,0,0,0,21
+238399,0,0,0,21
+238400,0,0,0,21
+238401,0,0,0,21
+238402,0,0,0,21
+238403,0,0,0,21
+238404,0,0,0,21
+238405,0,0,0,21
+238406,0,0,0,21
+238407,0,0,0,21
+238408,0,0,0,21
+238409,0,0,0,21
+238410,0,0,0,21
+238411,0,0,0,21
+238412,0,0,0,21
+238413,0,0,0,21
+238414,0,0,0,21
+238415,0,0,0,21
+238416,0,0,0,21
+238417,0,0,0,21
+238418,0,0,0,21
+238419,0,0,0,21
+238420,0,0,0,21
+238421,0,0,0,21
+238422,0,0,0,21
+238423,0,0,0,21
+238424,0,0,0,21
+238425,0,0,0,21
+238426,0,0,0,21
+238427,0,0,0,21
+238428,0,0,0,21
+238429,0,0,0,21
+238430,0,0,0,21
+238431,0,0,0,21
+238432,0,0,0,21
+238433,0,0,0,21
+238434,0,0,0,21
+238435,0,0,0,21
+238436,0,0,0,21
+238437,0,0,0,21
+238438,0,0,0,21
+238439,0,0,0,21
+238440,0,0,0,21
+238441,0,0,0,21
+238442,0,0,0,21
+238443,0,0,0,21
+238444,0,0,0,21
+238445,0,0,0,21
+238446,0,0,0,21
+238447,0,0,0,21
+238448,0,0,0,21
+238449,0,0,0,21
+238450,0,0,0,21
+238451,0,0,0,21
+238452,0,0,0,21
+238453,0,0,0,21
+238454,0,0,0,21
+238455,0,0,0,21
+238456,0,0,0,21
+238457,0,0,0,21
+238458,0,0,0,21
+238459,0,0,0,21
+238460,0,0,0,21
+238461,0,0,0,21
+238462,0,0,0,21
+238463,0,0,0,21
+238464,0,0,0,21
+238465,0,0,0,21
+238466,0,0,0,21
+238467,0,0,0,21
+238468,0,0,0,21
+238469,0,0,0,21
+238470,0,0,0,21
+238471,0,0,0,21
+238472,0,0,0,21
+238473,0,0,0,21
+238474,0,0,0,21
+238475,0,0,0,21
+238476,0,0,0,21
+238477,0,0,0,21
+238478,0,0,0,21
+238479,0,0,0,21
+238480,0,0,0,21
+238481,0,0,0,21
+238482,0,0,0,21
+238483,0,0,0,21
+238484,0,0,0,21
+238485,0,0,0,21
+238486,0,0,0,21
+238487,0,0,0,21
+238488,0,0,0,21
+238489,0,0,0,21
+238490,0,0,0,21
+238491,0,0,0,21
+238492,0,0,0,21
+238493,0,0,0,21
+238494,0,0,0,21
+238495,0,0,0,21
+238496,0,0,0,21
+238497,0,0,0,21
+238498,0,0,0,21
+238499,0,0,0,21
+238500,0,0,0,21
+238501,0,0,0,21
+238502,0,0,0,21
+238503,0,0,0,21
+238504,0,0,0,21
+238505,0,0,0,21
+238506,0,0,0,21
+238507,0,0,0,21
+238508,0,0,0,21
+238509,0,0,0,21
+238510,0,0,0,21
+238511,0,0,0,21
+238512,0,0,0,21
+238513,0,0,0,21
+238514,0,0,0,21
+238515,0,0,0,21
+238516,0,0,0,21
+238517,0,0,0,21
+238518,0,0,0,21
+238519,0,0,0,21
+238520,0,0,0,21
+238521,0,0,0,21
+238522,0,0,0,21
+238523,0,0,0,21
+238524,0,0,0,21
+238525,0,0,0,21
+238526,0,0,0,21
+238527,0,0,0,21
+238528,0,0,0,21
+238529,0,0,0,21
+238530,0,0,0,21
+238531,0,0,0,21
+238532,0,0,0,21
+238533,0,0,0,21
+238534,0,0,0,21
+238535,0,0,0,21
+238536,0,0,0,21
+238537,0,0,0,21
+238538,0,0,0,21
+238539,0,0,0,21
+238540,0,0,0,21
+238541,0,0,0,21
+238542,0,0,0,21
+238543,0,0,0,21
+238544,0,0,0,21
+238545,0,0,0,21
+238546,0,0,0,21
+238547,0,0,0,21
+238548,0,0,0,21
+238549,0,0,0,21
+238550,0,0,0,21
+238551,0,0,0,21
+238552,0,0,0,21
+238553,0,0,0,21
+238554,0,0,0,21
+238555,0,0,0,21
+238556,0,0,0,21
+238557,0,0,0,21
+238558,0,0,0,21
+238559,0,0,0,21
+238560,0,0,0,21
+238561,0,0,0,21
+238562,0,0,0,21
+238563,0,0,0,21
+238564,0,0,0,21
+238565,0,0,0,21
+238566,0,0,0,21
+238567,0,0,0,21
+238568,0,0,0,21
+238569,0,0,0,21
+238570,0,0,0,21
+238571,0,0,0,21
+238572,0,0,0,21
+238573,0,0,0,21
+238574,0,0,0,21
+238575,0,0,0,21
+238576,0,0,0,21
+238577,0,0,0,21
+238578,0,0,0,21
+238579,0,0,0,21
+238580,0,0,0,21
+238581,0,0,0,21
+238582,0,0,0,21
+238583,0,0,0,21
+238584,0,0,0,21
+238585,0,0,0,21
+238586,0,0,0,21
+238587,0,0,0,21
+238588,0,0,0,21
+238589,0,0,0,21
+238590,0,0,0,21
+238591,0,0,0,21
+238592,0,0,0,21
+238593,0,0,0,21
+238594,0,0,0,21
+238595,0,0,0,21
+238596,0,0,0,21
+238597,0,0,0,21
+238598,0,0,0,21
+238599,0,0,0,21
+238600,0,0,0,21
+238601,0,0,0,21
+238602,0,0,0,21
+238603,0,0,0,21
+238604,0,0,0,21
+238605,0,0,0,21
+238606,0,0,0,21
+238607,0,0,0,21
+238608,0,0,0,21
+238609,0,0,0,21
+238610,0,0,0,21
+238611,0,0,0,21
+238612,0,0,0,21
+238613,0,0,0,21
+238614,0,0,0,21
+238615,0,0,0,21
+238616,0,0,0,21
+238617,0,0,0,21
+238618,0,0,0,21
+238619,0,0,0,21
+238620,0,0,0,21
+238621,0,0,0,21
+238622,0,0,0,21
+238623,0,0,0,21
+238624,0,0,0,21
+238625,0,0,0,21
+238626,0,0,0,21
+238627,0,0,0,21
+238628,0,0,0,21
+238629,0,0,0,21
+238630,0,0,0,21
+238631,0,0,0,21
+238632,0,0,0,21
+238633,0,0,0,21
+238634,0,0,0,21
+238635,0,0,0,21
+238636,0,0,0,21
+238637,0,0,0,21
+238638,0,0,0,21
+238639,0,0,0,21
+238640,0,0,0,21
+238641,0,0,0,21
+238642,0,0,0,21
+238643,0,0,0,21
+238644,0,0,0,21
+238645,0,0,0,21
+238646,0,0,0,21
+238647,0,0,0,21
+238648,0,0,0,21
+238649,0,0,0,21
+238650,0,0,0,21
+238651,0,0,0,21
+238652,0,0,0,21
+238653,0,0,0,21
+238654,0,0,0,21
+238655,0,0,0,21
+238656,0,0,0,21
+238657,0,0,0,21
+238658,0,0,0,21
+238659,0,0,0,21
+238660,0,0,0,21
+238661,0,0,0,21
+238662,0,0,0,21
+238663,0,0,0,21
+238664,0,0,0,21
+238665,0,0,0,21
+238666,0,0,0,21
+238667,0,0,0,21
+238668,0,0,0,21
+238669,0,0,0,21
+238670,0,0,0,21
+238671,0,0,0,21
+238672,0,0,0,21
+238673,0,0,0,21
+238674,0,0,0,21
+238675,0,0,0,21
+238676,0,0,0,21
+238677,0,0,0,21
+238678,0,0,0,21
+238679,0,0,0,21
+238680,0,0,0,21
+238681,0,0,0,21
+238682,0,0,0,21
+238683,0,0,0,21
+238684,0,0,0,21
+238685,0,0,0,21
+238686,0,0,0,21
+238687,0,0,0,21
+238688,0,0,0,21
+238689,0,0,0,21
+238690,0,0,0,21
+238691,0,0,0,21
+238692,0,0,0,21
+238693,0,0,0,21
+238694,0,0,0,21
+238695,0,0,0,21
+238696,0,0,0,21
+238697,0,0,0,21
+238698,0,0,0,21
+238699,0,0,0,21
+238700,0,0,0,21
+238701,0,0,0,21
+238702,0,0,0,21
+238703,0,0,0,21
+238704,0,0,0,21
+238705,0,0,0,21
+238706,0,0,0,21
+238707,0,0,0,21
+238708,0,0,0,21
+238709,0,0,0,21
+238710,0,0,0,21
+238711,0,0,0,21
+238712,0,0,0,21
+238713,0,0,0,21
+238714,0,0,0,21
+238715,0,0,0,21
+238716,0,0,0,21
+238717,0,0,0,21
+238718,0,0,0,21
+238719,0,1199.907887,0,21
+238720,0,704.4963082,0,21
+238721,0,1036.584489,0,21
+238722,0,1199.904789,0,21
+238723,0,1199.904743,0,21
+238724,0,1522.146521,0,21
+238725,0,1522.146662,0,21
+238726,0,1681.347848,0,21
+238727,0,1839.411261,0,21
+238728,0,1996.42042,0,21
+238729,0,2152.445782,0,21
+238730,0,2152.44589,0,21
+238731,0,2461.778789,0,21
+238732,0,2461.778751,0,21
+238733,0,2615.184263,0,21
+238734,0,2767.80487,0,21
+238735,0,2919.6765,0,21
+238736,0,2919.676623,0,21
+238737,0,3221.299094,0,21
+238738,0,3221.298997,0,21
+238739,0,3371.105107,0,21
+238740,0,3668.827803,0,21
+238741,0,3964.182779,0,21
+238742,0,4403.028379,0,21
+238743,0,4403.025981,0,21
+238744,0,4548.26365,0,21
+238745,0,4837.24751,0,21
+238746,0,4837.247442,0,21
+238747,0,4981.055626,0,21
+238748,0,5267.178823,0,21
+238749,0,5267.169708,0,21
+238750,0,5409.569416,0,21
+238751,0,5693.064645,0,21
+238752,0,5551.517358,0,21
+238753,0,5974.842831,0,21
+238754,0,5974.842892,0,21
+238755,0,5974.842955,0,21
+238756,0,6394.535672,0,21
+238757,0,6255.031913,0,21
+238758,0,6533.654745,0,21
+238759,0,6533.654834,0,21
+238760,0,6810.762692,0,21
+238761,0,6810.762793,0,21
+238762,0,6948.763471,0,21
+238763,0,7223.68566,0,21
+238764,0,7360.617679,0,21
+238765,0,7360.617814,0,21
+238766,0,7497.203693,0,21
+238767,0,7769.355579,0,21
+238768,0,7769.355743,0,21
+238769,441.5655687,7904.930871,0,21
+238770,1517.435331,8204.168506,0,21
+238771,1123.448821,8270.053132,0,21
+238772,1517.435326,8319.614548,0,21
+238773,1646.924922,8588.503387,0,21
+238774,1903.516964,8627.290412,0,21
+238775,1903.51696,8780.421993,0,21
+238776,2283.095876,9047.445934,0,21
+238777,2408.346223,8951.992647,0,21
+238778,2533.005879,9218.409043,0,21
+238779,2657.098971,9255.82781,0,21
+238780,3026.188127,9388.586322,0,21
+238781,2903.671006,9680.997021,0,21
+238782,3390.861441,9558.035723,0,21
+238783,3269.768444,9849.568229,0,21
+238784,3631.719492,9858.682836,0,21
+238785,3631.719479,10008.43945,0,21
+238786,3870.885371,10288.85598,0,21
+238787,4108.442925,10175.8207,0,21
+238788,4108.442909,10455.51598,0,21
+238789,4344.466181,10464.44447,0,21
+238790,4812.166899,10621.59237,0,21
+238791,5043.956838,10881.72771,0,21
+238792,5159.358672,10656.90389,0,21
+238793,5274.439364,11176.10189,0,21
+238794,5503.658698,10952.07731,0,21
+238795,5503.65867,11340.27562,0,21
+238796,5845.206786,11228.56185,0,21
+238797,5845.206755,11503.92932,0,21
+238798,6071.43813,11529.85123,0,21
+238799,6184.126243,11667.0775,0,21
+238800,6184.126209,11795.4367,0,21
+238801,6632.118381,11846.79851,0,21
+238802,6456.143261,12085.69431,0,21
+238803,7048.632446,12119.76621,0,21
+238804,6998.278063,12391.67553,0,21
+238805,7253.328551,12408.57752,0,21
+238806,7286.528022,12425.42713,0,21
+238807,7539.637059,12822.8125,0,21
+238808,7649.435465,12696.19616,0,21
+238809,7916.746673,12999.28256,0,21
+238810,7916.746882,13108.77819,0,21
+238811,8174.453449,13142.02532,0,21
+238812,8290.957096,13410.1466,0,21
+238813,8322.387208,13426.65337,0,21
+238814,8777.885943,13568.54624,0,21
+238815,8570.05293,13818.71833,0,21
+238816,8939.37395,13867.82441,0,21
+238817,9038.944005,13851.50439,0,21
+238818,9077.159248,14273.88618,0,21
+238819,9306.174471,14133.36648,0,21
+238820,9534.27388,14414.14905,0,21
+238821,9458.003112,14430.30449,0,21
+238822,9791.476198,14693.87508,0,21
+238823,9821.278583,14693.8787,0,21
+238824,10032.56713,14849.37811,0,21
+238825,10062.17698,14988.5496,0,21
+238826,10302.07072,15250.20894,0,21
+238827,10302.07111,15143.37749,0,21
+238828,10540.97986,15388.65739,0,21
+238829,10660.07078,15558.47752,0,21
+238830,10793.39439,15664.79197,0,21
+238831,10897.53624,15833.9626,0,21
+238832,11044.65463,15818.24685,0,21
+238833,11148.4101,16092.81591,0,21
+238834,11266.28449,16124.07713,0,21
+238835,11398.16222,16229.74054,0,21
+238836,11515.54253,16381.99391,0,21
+238837,11749.63005,16518.3961,0,21
+238838,11749.6306,16654.55985,0,21
+238839,11777.75981,16654.56452,0,21
+238840,12201.1882,16941.57722,0,21
+238841,12010.81906,17144.72403,0,21
+238842,12243.00886,17430.16093,0,21
+238843,12446.63497,17445.49859,0,21
+238844,12474.3429,18192.26951,0,21
+238845,12589.69256,20190.6778,0,21
+238846,12704.83259,19428.78068,0,21
+238847,12934.48873,20411.74478,0,21
+238848,12833.46925,20736.17245,0,21
+238849,13163.32381,21224.79782,0,21
+238850,13176.93263,21751.18231,0,21
+238851,13190.51003,21822.7375,0,21
+238852,13518.57356,22655.3525,0,21
+238853,13418.40953,22851.98955,0,21
+238854,13645.50964,23344.05314,0,21
+238855,13745.34009,23840.55555,0,21
+238856,13885.186,24159.35465,0,21
+238857,13871.82266,24692.41127,0,21
+238858,14110.6605,25088.46882,0,21
+238859,14110.6614,25482.95092,0,21
+238860,14335.3659,25995.07793,0,21
+238861,0,0,0,21
+238862,0,0,0,21
+238863,0,0,0,21
+238864,0,0,0,21
+238865,0,367933.0637,660192.6701,21
+238866,339204.5841,0,0,21
+238867,0,0,0,21
+238868,0,0,0,21
+238869,0,0,0,21
+238870,0,0,0,21
+238871,0,0,0,21
+238872,0,0,0,21
+238873,0,0,0,21
+238874,0,0,0,21
+238875,0,0,0,21
+238876,0,0,0,21
+238877,0,0,0,21
+238878,0,0,0,21
+238879,0,0,0,21
+238880,0,0,0,21
+238881,0,0,0,21
+238882,0,0,0,21
+238883,0,0,0,21
+238884,0,0,0,21
+238885,0,0,0,21
+238886,0,0,0,21
+238887,0,0,0,21
+238888,0,0,0,21
+238889,0,0,0,21
+238890,0,0,0,21
+238891,0,0,0,21
+238892,0,0,0,21
+238893,0,0,0,21
+238894,0,0,0,21
+238895,0,0,0,21
+238896,0,0,0,21
+238897,0,0,0,21
+238898,0,0,0,21
+238899,0,368941.8462,661242.0721,21
+238900,0,0,0,21
+238901,339923.7965,0,0,21
+238902,0,0,0,21
+238903,0,0,0,21
+238904,0,0,0,21
+238905,0,0,0,21
+238906,0,0,0,21
+238907,0,0,0,21
+238908,0,0,0,21
+238909,0,0,0,21
+238910,0,0,0,21
+238911,0,0,0,21
+238912,0,0,0,21
+238913,0,0,0,21
+238914,0,0,0,21
+238915,0,0,0,21
+238916,0,0,0,21
+238917,0,0,0,21
+238918,0,0,0,21
+238919,0,0,0,21
+238920,0,0,0,15.6
+238921,0,0,0,15.6
+238922,0,0,0,15.6
+238923,0,0,0,15.6
+238924,0,0,0,15.6
+238925,0,0,0,15.6
+238926,0,0,0,15.6
+238927,0,0,0,15.6
+238928,0,0,0,15.6
+238929,0,0,0,15.6
+238930,0,0,0,15.6
+238931,0,0,0,15.6
+238932,0,0,0,15.6
+238933,0,368949.6189,661334.5263,15.6
+238934,0,0,0,15.6
+238935,0,0,0,15.6
+238936,338067.7617,0,0,15.6
+238937,0,0,0,15.6
+238938,0,0,0,15.6
+238939,0,0,0,15.6
+238940,0,0,0,15.6
+238941,0,0,0,15.6
+238942,0,0,0,15.6
+238943,0,0,0,15.6
+238944,0,0,0,15.6
+238945,0,0,0,15.6
+238946,0,0,0,15.6
+238947,0,0,0,15.6
+238948,0,0,0,15.6
+238949,0,0,0,15.6
+238950,0,0,0,15.6
+238951,0,0,0,15.6
+238952,0,0,0,15.6
+238953,0,0,0,15.6
+238954,0,0,0,15.6
+238955,0,0,0,15.6
+238956,0,0,0,15.6
+238957,0,0,0,15.6
+238958,0,0,0,15.6
+238959,0,0,0,15.6
+238960,0,0,0,15.6
+238961,0,0,0,15.6
+238962,0,0,0,15.6
+238963,0,0,0,15.6
+238964,0,0,0,15.6
+238965,0,0,0,15.6
+238966,0,0,0,15.6
+238967,0,368957.3971,661918.4033,15.6
+238968,0,0,0,15.6
+238969,0,0,0,15.6
+238970,0,0,0,15.6
+238971,338736.0492,0,0,15.6
+238972,0,0,0,15.6
+238973,0,0,0,15.6
+238974,0,0,0,15.6
+238975,0,0,0,15.6
+238976,0,0,0,15.6
+238977,0,0,0,15.6
+238978,0,0,0,15.6
+238979,0,0,0,15.6
+238980,0,0,0,15.6
+238981,0,0,0,15.6
+238982,0,0,0,15.6
+238983,0,0,0,15.6
+238984,0,0,0,15.6
+238985,0,0,0,15.6
+238986,0,0,0,15.6
+238987,0,0,0,15.6
+238988,0,0,0,15.6
+238989,0,0,0,15.6
+238990,0,0,0,15.6
+238991,0,0,0,15.6
+238992,0,0,0,15.6
+238993,0,0,0,15.6
+238994,0,0,0,15.6
+238995,0,0,0,15.6
+238996,0,0,0,15.6
+238997,0,0,0,15.6
+238998,0,0,0,15.6
+238999,0,0,0,15.6
+239000,0,0,0,15.6
+239001,0,0,661312.0623,15.6
+239002,0,368960.7338,0,15.6
+239003,0,0,0,15.6
+239004,0,0,0,15.6
+239005,0,0,0,15.6
+239006,339767.3109,0,0,15.6
+239007,0,0,0,15.6
+239008,0,0,0,15.6
+239009,0,0,0,15.6
+239010,0,0,0,15.6
+239011,0,0,0,15.6
+239012,0,0,0,15.6
+239013,0,0,0,15.6
+239014,0,0,0,15.6
+239015,0,0,0,15.6
+239016,0,0,0,15.6
+239017,0,0,0,15.6
+239018,0,0,0,15.6
+239019,0,0,0,15.6
+239020,0,0,0,15.6
+239021,0,0,0,15.6
+239022,0,0,0,15.6
+239023,0,0,0,15.6
+239024,0,0,0,15.6
+239025,0,0,0,15.6
+239026,0,0,0,15.6
+239027,0,0,0,15.6
+239028,0,0,0,15.6
+239029,0,0,0,15.6
+239030,0,0,0,15.6
+239031,0,0,0,15.6
+239032,0,0,0,15.6
+239033,0,0,0,15.6
+239034,0,0,0,15.6
+239035,0,0,661938.9705,15.6
+239036,0,0,0,15.6
+239037,0,368960.7313,0,15.6
+239038,0,0,0,15.6
+239039,0,0,0,15.6
+239040,0,0,0,15.6
+239041,337951.9643,0,0,15.6
+239042,0,0,0,15.6
+239043,0,0,0,15.6
+239044,0,0,0,15.6
+239045,0,0,0,15.6
+239046,0,0,0,15.6
+239047,0,0,0,15.6
+239048,0,0,0,15.6
+239049,0,0,0,15.6
+239050,0,0,0,15.6
+239051,0,0,0,15.6
+239052,0,0,0,15.6
+239053,0,0,0,15.6
+239054,0,0,0,15.6
+239055,0,0,0,15.6
+239056,0,0,0,15.6
+239057,0,0,0,15.6
+239058,0,0,0,15.6
+239059,0,0,0,15.6
+239060,0,0,0,15.6
+239061,0,0,0,15.6
+239062,0,0,0,15.6
+239063,0,0,0,15.6
+239064,0,0,0,15.6
+239065,0,0,0,15.6
+239066,0,0,0,15.6
+239067,0,0,0,15.6
+239068,0,0,0,15.6
+239069,0,0,661160.89,15.6
+239070,0,0,0,15.6
+239071,0,0,0,15.6
+239072,0,369183.1826,0,15.6
+239073,0,0,0,15.6
+239074,0,0,0,15.6
+239075,0,0,0,15.6
+239076,340153.873,0,0,15.6
+239077,0,0,0,15.6
+239078,0,0,0,15.6
+239079,0,0,0,15.6
+239080,0,0,0,15.6
+239081,0,0,0,15.6
+239082,0,0,0,15.6
+239083,0,0,0,15.6
+239084,0,0,0,15.6
+239085,0,0,0,15.6
+239086,0,0,0,15.6
+239087,0,0,0,15.6
+239088,0,0,0,15.6
+239089,0,0,0,15.6
+239090,0,0,0,15.6
+239091,0,0,0,15.6
+239092,0,0,0,15.6
+239093,0,0,0,15.6
+239094,0,0,0,15.6
+239095,0,0,0,15.6
+239096,0,0,0,15.6
+239097,0,0,0,15.6
+239098,0,0,0,15.6
+239099,0,0,0,15.6
+239100,0,0,0,15.6
+239101,0,0,0,15.6
+239102,0,0,0,15.6
+239103,0,0,661579.4598,15.6
+239104,0,0,0,15.6
+239105,0,0,0,15.6
+239106,0,0,0,15.6
+239107,0,369195.5404,0,15.6
+239108,0,0,0,15.6
+239109,0,0,0,15.6
+239110,0,0,0,15.6
+239111,340168.1729,0,0,15.6
+239112,0,0,0,15.6
+239113,0,0,0,15.6
+239114,0,0,0,15.6
+239115,0,0,0,15.6
+239116,0,0,0,15.6
+239117,0,0,0,15.6
+239118,0,0,0,15.6
+239119,0,0,0,15.6
+239120,0,0,0,15.6
+239121,0,0,0,15.6
+239122,0,0,0,15.6
+239123,0,0,0,15.6
+239124,0,0,0,15.6
+239125,0,0,0,15.6
+239126,0,0,0,15.6
+239127,0,0,0,15.6
+239128,0,0,0,15.6
+239129,0,0,0,15.6
+239130,0,0,0,15.6
+239131,0,0,0,15.6
+239132,0,0,0,15.6
+239133,0,0,0,15.6
+239134,0,0,0,15.6
+239135,0,0,0,15.6
+239136,0,0,0,15.6
+239137,0,0,660919.0859,15.6
+239138,0,0,0,15.6
+239139,0,0,0,15.6
+239140,0,0,0,15.6
+239141,0,0,0,15.6
+239142,0,369165.1145,0,15.6
+239143,0,0,0,15.6
+239144,0,0,0,15.6
+239145,0,0,0,15.6
+239146,340168.4082,0,0,15.6
+239147,0,0,0,15.6
+239148,0,0,0,15.6
+239149,0,0,0,15.6
+239150,0,0,0,15.6
+239151,0,0,0,15.6
+239152,0,0,0,15.6
+239153,0,0,0,15.6
+239154,0,0,0,15.6
+239155,0,0,0,15.6
+239156,0,0,0,15.6
+239157,0,0,0,15.6
+239158,0,0,0,15.6
+239159,0,0,0,15.6
+239160,0,0,0,15.6
+239161,0,0,0,15.6
+239162,0,437006.5097,0,15.6
+239163,0,0,0,15.6
+239164,0,0,0,15.6
+239165,0,0,0,15.6
+239166,0,0,0,15.6
+239167,0,0,0,15.6
+239168,0,0,0,15.6
+239169,0,0,0,15.6
+239170,0,0,0,15.6
+239171,0,0,661436.3969,15.6
+239172,0,0,0,15.6
+239173,0,0,0,15.6
+239174,0,436933.7577,0,15.6
+239175,0,0,0,15.6
+239176,0,0,0,15.6
+239177,0,369133.549,0,15.6
+239178,0,0,0,15.6
+239179,0,0,0,15.6
+239180,0,0,0,15.6
+239181,340167.2805,0,0,15.6
+239182,0,0,0,15.6
+239183,0,0,0,15.6
+239184,0,0,0,15.6
+239185,0,0,0,15.6
+239186,0,0,0,15.6
+239187,0,436937.0116,0,15.6
+239188,0,0,0,15.6
+239189,0,0,0,15.6
+239190,0,0,0,15.6
+239191,0,0,0,15.6
+239192,0,0,0,15.6
+239193,0,0,0,15.6
+239194,0,0,0,15.6
+239195,0,0,0,15.6
+239196,0,0,0,15.6
+239197,0,436149.3981,0,15.6
+239198,0,0,0,15.6
+239199,0,0,0,15.6
+239200,0,0,0,15.6
+239201,0,0,0,15.6
+239202,0,0,0,15.6
+239203,0,0,0,15.6
+239204,0,0,0,15.6
+239205,0,0,660656.788,15.6
+239206,0,0,0,15.6
+239207,0,435979.8609,0,15.6
+239208,0,0,0,15.6
+239209,0,0,0,15.6
+239210,0,0,0,15.6
+239211,0,0,0,15.6
+239212,0,369104.4948,0,15.6
+239213,0,0,0,15.6
+239214,0,0,0,15.6
+239215,0,0,0,15.6
+239216,0,0,0,15.6
+239217,340164.8708,435909.7291,0,15.6
+239218,0,0,0,15.6
+239219,0,0,0,15.6
+239220,0,0,0,15.6
+239221,0,0,0,15.6
+239222,0,0,0,15.6
+239223,0,0,0,15.6
+239224,0,0,0,15.6
+239225,0,0,0,15.6
+239226,0,0,0,15.6
+239227,0,435901.2419,0,15.6
+239228,0,0,0,15.6
+239229,0,0,0,15.6
+239230,0,0,0,15.6
+239231,0,0,0,15.6
+239232,0,0,0,15.6
+239233,0,0,0,15.6
+239234,0,0,0,15.6
+239235,0,0,0,15.6
+239236,0,0,0,15.6
+239237,0,435902.6371,0,15.6
+239238,0,0,0,15.6
+239239,0,0,660951.7511,15.6
+239240,0,0,0,15.6
+239241,0,0,0,15.6
+239242,0,0,0,15.6
+239243,0,0,0,15.6
+239244,0,0,0,15.6
+239245,0,0,0,15.6
+239246,0,0,0,15.6
+239247,0,804977.6626,0,15.6
+239248,0,0,0,15.6
+239249,0,0,0,15.6
+239250,0,0,0,15.6
+239251,340161.7816,0,0,15.6
+239252,0,0,0,15.6
+239253,0,0,0,15.6
+239254,0,0,0,15.6
+239255,0,433800.6181,0,15.6
+239256,0,0,0,15.6
+239257,0,0,0,15.6
+239258,0,0,0,15.6
+239259,0,0,0,15.6
+239260,0,0,0,15.6
+239261,0,0,0,15.6
+239262,0,0,0,15.6
+239263,0,0,0,15.6
+239264,0,0,0,15.6
+239265,0,435961.3233,0,15.6
+239266,0,0,0,15.6
+239267,0,0,0,15.6
+239268,0,0,0,15.6
+239269,0,0,0,15.6
+239270,0,0,0,15.6
+239271,0,0,0,15.6
+239272,0,0,0,15.6
+239273,0,0,660645.513,15.6
+239274,0,0,0,15.6
+239275,0,0,0,15.6
+239276,0,0,0,15.6
+239277,0,0,0,15.6
+239278,0,0,0,15.6
+239279,0,0,0,15.6
+239280,0,0,0,17.8
+239281,0,529054.9413,0,17.8
+239282,0,0,0,17.8
+239283,0,802.7588364,0,17.8
+239284,0,26257.61763,0,17.8
+239285,340164.8279,42540.58132,0,17.8
+239286,0,27247.64237,0,17.8
+239287,0,467776.453,0,17.8
+239288,0,31909.86418,0,17.8
+239289,0,31905.28192,0,17.8
+239290,0,32252.03213,0,17.8
+239291,0,32128.71465,0,17.8
+239292,0,32587.03515,0,17.8
+239293,0,32503.75859,0,17.8
+239294,0,32804.33183,0,17.8
+239295,0,33139.62713,0,17.8
+239296,0,32999.61958,0,17.8
+239297,0,33037.11518,0,17.8
+239298,0,33334.51487,0,17.8
+239299,0,33549.47022,0,17.8
+239300,0,33366.9495,0,17.8
+239301,0,29742.34913,0,17.8
+239302,0,0,0,17.8
+239303,0,0,0,17.8
+239304,0,0,0,17.8
+239305,0,0,0,17.8
+239306,0,0,0,17.8
+239307,0,0,660780.3611,17.8
+239308,0,0,0,17.8
+239309,0,0,0,17.8
+239310,0,0,0,17.8
+239311,0,0,0,17.8
+239312,0,29785.05345,0,17.8
+239313,0,24024.71402,0,17.8
+239314,0,20564.51652,0,17.8
+239315,0,392737.0999,0,17.8
+239316,0,27530.20179,0,17.8
+239317,0,26499.49246,0,17.8
+239318,0,469936.2724,0,17.8
+239319,340163.4562,29128.54243,0,17.8
+239320,0,31498.08348,0,17.8
+239321,0,31449.76407,0,17.8
+239322,0,31460.24701,0,17.8
+239323,0,31415.86233,0,17.8
+239324,0,31715.66562,0,17.8
+239325,0,31429.66483,0,17.8
+239326,0,32425.11851,0,17.8
+239327,0,32123.97262,0,17.8
+239328,0,32459.33856,0,17.8
+239329,0,32279.39898,0,17.8
+239330,0,32491.2702,0,17.8
+239331,0,32455.46979,0,17.8
+239332,0,32429.11793,0,17.8
+239333,0,32487.32133,0,17.8
+239334,0,32625.84049,0,17.8
+239335,0,32466.19716,0,17.8
+239336,0,32477.29027,0,17.8
+239337,0,32779.80343,0,17.8
+239338,0,4047.731558,0,17.8
+239339,0,4068.862598,0,17.8
+239340,0,4068.863167,0,20
+239341,40502.01456,328420.8415,660153.8988,20
+239342,51173.28416,0,0,20
+239343,62681.34385,61958.56879,0,20
+239344,98715.97787,109274.0667,0,20
+239345,102165.6827,87945.63216,0,20
+239346,91825.71762,86812.78468,0,20
+239347,96048.48123,86895.91956,0,20
+239348,96620.00293,86884.2909,0,20
+239349,96504.93027,86515.75612,0,20
+239350,96151.41383,86503.16996,0,20
+239351,96142.69357,85965.03443,0,20
+239352,95642.05209,85456.50648,0,20
+239353,95878.81863,85554.20545,0,20
+239354,95248.25636,84922.02493,0,20
+239355,95697.54533,84787.67162,0,20
+239356,94873.1847,84243.22413,0,20
+239357,95308.03265,84043.53802,0,20
+239358,94906.55796,83749.15796,0,20
+239359,94779.18501,83390.9091,0,20
+239360,94589.12408,83185.40825,0,20
+239361,94398.90601,83044.87631,0,20
+239362,94556.15513,82635.92737,0,20
+239363,94000.30288,82514.14349,0,20
+239364,94019.01846,82270.07251,0,20
+239365,93997.45949,82254.34439,0,20
+239366,93742.72929,81420.49617,0,20
+239367,93612.37611,81912.5708,0,20
+239368,93402.55671,81404.72068,0,20
+239369,93279.53898,81319.23188,0,20
+239370,93206.39078,80850.99659,0,20
+239371,91178.40044,81026.59224,0,20
+239372,90513.67672,80267.48748,163.2420424,20
+239373,89721.25905,80982.37405,84.24427271,20
+239374,89216.75626,79925.89031,132.007373,20
+239375,88616.19386,80248.22142,132.007844,20
+239376,87660.06238,79807.05422,163.2443105,20
+239377,87420.17055,79638.00915,178.7138021,20
+239378,86452.5282,79810.33002,178.7146379,20
+239379,86066.37418,79352.61854,217.0086837,20
+239380,84892.98332,79279.56026,209.3918243,20
+239381,84728.89317,79465.77247,239.7537774,20
+239382,83824.41346,78894.11684,239.7553123,20
+239383,82737.1784,78661.81749,269.8369009,20
+239384,82821.23007,78936.34975,269.8389456,20
+239385,81111.34261,78127.51028,284.7841214,20
+239386,81077.8433,78569.25586,299.6686387,20
+239387,79952.58097,78021.20749,314.4950906,20
+239388,77849.91212,78012.13051,329.2657216,20
+239389,76652.00318,77762.36769,329.2687283,20
+239390,75658.41722,77721.03489,343.985585,20
+239391,74785.40392,77498.1513,358.6505765,20
+239392,74383.09915,77731.81118,373.2654194,20
+239393,73058.17448,77158.32258,373.2693028,20
+239394,72450.31408,77122.85869,402.3504612,20
+239395,71584.36545,76826.7443,387.8399482,20
+239396,70730.8538,77071.08604,416.8283877,20
+239397,69773.51114,76313.48969,416.8332513,20
+239398,69212.58032,76730.41318,431.2623962,20
+239399,67881.50917,76509.92109,445.6483569,20
+239400,67269.74631,75900.2279,445.6539968,21
+239401,57704.68636,71657.54148,269.8848005,21
+239402,55967.60767,70693.89379,269.8867617,21
+239403,54477.79936,70338.04569,254.8790903,21
+239404,53438.07676,69696.69224,269.8907016,21
+239405,52322.60005,69445.20972,254.8827948,21
+239406,50846.02821,69419.24748,269.8945591,21
+239407,49811.0978,68818.66671,269.8965679,21
+239408,48701.87068,68250.4959,269.8986064,21
+239409,47490.20647,68464.72833,269.900612,21
+239410,46178.69429,67590.4725,284.8493677,21
+239411,45003.13893,67841.81405,254.894074,21
+239412,44183.49518,66662.54173,299.7397249,21
+239413,43446.41657,67193.62196,269.9088418,21
+239414,43434.20797,66595.18481,269.9108023,21
+239415,42590.64865,66246.56099,299.7466435,21
+239416,42246.43156,65658.78704,269.9150662,21
+239417,41960.76352,65943.35334,284.8647191,21
+239418,41295.04048,65034.78643,299.753716,21
+239419,40901.14139,64912.91516,269.9213642,21
+239420,40355.2653,64725.9216,299.7584797,21
+239421,40144.18948,64223.6309,284.8737765,21
+239422,39725.0024,64108.40942,284.8759645,21
+239423,39348.97096,63730.14355,299.7656411,21
+239424,38660.31491,63314.64676,284.8805944,21
+239425,38660.86369,63087.54168,299.7704607,21
+239426,37338.54127,62979.92084,284.8851411,21
+239427,36409.5386,62277.73561,299.7753631,21
+239428,36415.88956,62329.38158,284.8897678,21
+239429,35755.85229,61774.94395,284.8919601,21
+239430,35303.69381,61700.26124,299.782525,21
+239431,34774.21971,61253.25345,284.8965777,21
+239432,34630.42226,60728.88834,284.8987936,21
+239433,34122.84878,61070.74128,284.901037,21
+239434,33828.04965,60108.65945,269.9534235,21
+239435,33606.71233,60178.74459,284.9053598,21
+239436,33094.28465,59956.51011,254.9438583,21
+239437,33006.58954,59066.84611,269.9594841,21
+239438,32534.39388,59550.06388,254.9475608,21
+239439,32361.59938,58799.8984,254.9493152,21
+239440,32343.95216,58669.25897,254.9511039,21
+239441,31967.11869,58251.384,239.8717659,21
+239442,31737.31761,58389.84435,239.8733752,21
+239443,31499.39623,57397.19712,239.8749831,21
+239444,31026.42398,57725.40276,239.8765598,21
+239445,30947.50844,57200.95646,224.7264841,21
+239446,30466.68944,57175.6652,224.7278933,21
+239447,30204.02934,56678.24453,209.5033687,21
+239448,29938.60126,56354.08808,224.7305319,21
+239449,29739.09308,56309.0853,194.2012375,21
+239450,29286.49231,56020.21717,194.202279,21
+239451,28898.64555,55350.23888,194.2032343,21
+239452,28720.4463,55366.83795,178.8158249,21
+239453,28460.21338,55247.68442,178.8167348,21
+239454,28121.30002,54416.82748,178.8175939,21
+239455,27620.78777,54725.04838,147.7652209,21
+239456,27748.00018,53901.92341,163.3408554,21
+239457,26955.83793,54087.50261,147.7664701,21
+239458,26893.57629,53345.00223,132.0866521,21
+239459,26658.66359,53318.55351,139.941093,21
+239460,26046.09156,52650.66871,116.2913854,21
+239461,5327.062621,18296.1523,0,21
+239462,4015.641968,15780.34258,0,21
+239463,3685.155094,15130.89366,0,21
+239464,3285.583479,14420.81741,0,21
+239465,2993.472895,13753.94488,0,21
+239466,2725.491857,13366.62632,0,21
+239467,2427.01282,12960.37909,0,21
+239468,2152.00626,11930.80379,0,21
+239469,1978.509564,12301.00987,0,21
+239470,1559.722349,11116.91925,0,21
+239471,1518.128154,10863.18801,0,21
+239472,1093.96073,10804.22868,0,21
+239473,886.1817647,9818.309021,0,21
+239474,886.1818973,9860.787488,0,21
+239475,843.895465,9106.838235,0,21
+239476,843.8955863,9082.302662,0,21
+239477,787.0224785,8582.032856,0,21
+239478,787.0225732,8546.634141,0,21
+239479,758.3673369,8078.409042,0,21
+239480,715.0995616,8017.987784,0,21
+239481,715.0996498,7578.370935,0,21
+239482,671.4763295,7271.48178,0,21
+239483,671.4764068,7289.479377,0,21
+239484,612.7287666,6758.443739,0,21
+239485,627.4803743,6715.043567,0,21
+239486,568.2046474,6284.793109,0,21
+239487,568.2047016,6179.263868,0,21
+239488,523.2571376,5745.251152,0,21
+239489,523.257183,5675.901147,0,21
+239490,477.8583741,5673.585565,0,21
+239491,462.6196375,5429.570076,0,21
+239492,447.3257489,5366.549781,0,21
+239493,416.5664696,5130.735104,0,21
+239494,401.0978251,4881.848083,0,21
+239495,369.9732999,4837.167993,0,21
+239496,354.3133194,4579.989062,0,21
+239497,322.7861859,4328.245313,0,21
+239498,306.9137026,4276.321642,0,21
+239499,290.964583,4068.287071,0,21
+239500,258.8223406,3977.442665,0,21
+239501,234.4859523,3643.056139,0,21
+239502,226.326878,3452.366403,0,21
+239503,193.4362681,3213.558067,0,21
+239504,168.4760244,3167.475528,0,21
+239505,160.0944624,2657.627831,0,21
+239506,126.2222132,2756.022997,0,21
+239507,109.0517963,2339.402598,0,21
+239508,91.69797774,2091.824845,0,21
+239509,56.30801003,2017.80859,0,21
+239510,56.30801037,1780.681589,0,21
+239511,19.54816168,1486.03492,0,21
+239512,0,1438.054123,0,21
+239513,0,886.7195327,0,21
+239514,0,1152.027944,0,21
+239515,0,545.2217009,0,21
+239516,0,531.4643871,0,21
+239517,0,503.8485163,0,21
+239518,0,489.9885396,0,21
+239519,0,476.0928128,0,21
+239520,0,420.1346777,0,21
+239521,0,434.1820214,0,21
+239522,0,391.9163665,0,21
+239523,0,349.2641166,0,21
+239524,0,334.9544121,0,21
+239525,0,306.186374,0,21
+239526,0,277.2082301,0,21
+239527,0,262.6345281,0,21
+239528,0,218.5419679,0,21
+239529,0,203.7096197,0,21
+239530,0,173.817674,0,21
+239531,0,158.7478808,0,21
+239532,0,97.45910109,0,21
+239533,0,128.3240509,0,21
+239534,0,17.24295687,0,21
+239535,0,17.24304498,0,21
+239536,0,0,0,21
+239537,0,0,0,21
+239538,0,0,0,21
+239539,0,0,0,21
+239540,0,0,0,21
+239541,0,0,0,21
+239542,0,0,0,21
+239543,0,0,0,21
+239544,0,0,0,21
+239545,0,0,0,21
+239546,0,0,0,21
+239547,0,0,0,21
+239548,0,0,0,21
+239549,0,0,0,21
+239550,0,0,0,21
+239551,0,0,0,21
+239552,0,0,0,21
+239553,0,0,0,21
+239554,0,0,0,21
+239555,0,0,0,21
+239556,0,0,0,21
+239557,0,0,0,21
+239558,0,0,0,21
+239559,0,0,0,21
+239560,0,0,0,21
+239561,0,0,0,21
+239562,0,0,0,21
+239563,0,0,0,21
+239564,0,0,0,21
+239565,0,0,0,21
+239566,0,0,0,21
+239567,0,0,0,21
+239568,0,0,0,21
+239569,0,0,0,21
+239570,0,0,0,21
+239571,0,0,0,21
+239572,0,0,0,21
+239573,0,0,0,21
+239574,0,0,0,21
+239575,0,0,0,21
+239576,0,0,0,21
+239577,0,0,0,21
+239578,0,0,0,21
+239579,0,0,0,21
+239580,0,0,0,21
+239581,0,0,0,21
+239582,0,0,0,21
+239583,0,0,0,21
+239584,0,0,0,21
+239585,0,0,0,21
+239586,0,0,0,21
+239587,0,0,0,21
+239588,0,0,0,21
+239589,0,0,0,21
+239590,0,0,0,21
+239591,0,0,0,21
+239592,0,0,0,21
+239593,0,0,0,21
+239594,0,0,0,21
+239595,0,0,0,21
+239596,0,0,0,21
+239597,0,0,0,21
+239598,0,0,0,21
+239599,0,0,0,21
+239600,0,0,0,21
+239601,0,0,0,21
+239602,0,0,0,21
+239603,0,0,0,21
+239604,0,0,0,21
+239605,0,0,0,21
+239606,0,0,0,21
+239607,0,0,0,21
+239608,0,0,0,21
+239609,0,0,0,21
+239610,0,0,0,21
+239611,0,0,0,21
+239612,0,0,0,21
+239613,0,0,0,21
+239614,0,0,0,21
+239615,0,0,0,21
+239616,0,0,0,21
+239617,0,0,0,21
+239618,0,0,0,21
+239619,0,0,0,21
+239620,0,0,0,21
+239621,0,0,0,21
+239622,0,0,0,21
+239623,0,0,0,21
+239624,0,0,0,21
+239625,0,0,0,21
+239626,0,0,0,21
+239627,0,0,0,21
+239628,0,0,0,21
+239629,0,0,0,21
+239630,0,0,0,21
+239631,0,0,0,21
+239632,0,0,0,21
+239633,0,0,0,21
+239634,0,0,0,21
+239635,0,0,0,21
+239636,0,0,0,21
+239637,0,0,0,21
+239638,0,0,0,21
+239639,0,0,0,21
+239640,0,0,0,21
+239641,0,0,0,21
+239642,0,0,0,21
+239643,0,0,0,21
+239644,0,0,0,21
+239645,0,0,0,21
+239646,0,0,0,21
+239647,0,0,0,21
+239648,0,0,0,21
+239649,0,0,0,21
+239650,0,0,0,21
+239651,0,0,0,21
+239652,0,0,0,21
+239653,0,0,0,21
+239654,0,0,0,21
+239655,0,0,0,21
+239656,0,0,0,21
+239657,0,0,0,21
+239658,0,0,0,21
+239659,0,0,0,21
+239660,0,0,0,21
+239661,0,0,0,21
+239662,0,0,0,21
+239663,0,0,0,21
+239664,0,0,0,21
+239665,0,0,0,21
+239666,0,0,0,21
+239667,0,0,0,21
+239668,0,0,0,21
+239669,0,0,0,21
+239670,0,0,0,21
+239671,0,0,0,21
+239672,0,0,0,21
+239673,0,0,0,21
+239674,0,0,0,21
+239675,0,0,0,21
+239676,0,0,0,21
+239677,0,0,0,21
+239678,0,0,0,21
+239679,0,0,0,21
+239680,0,0,0,21
+239681,0,0,0,21
+239682,0,0,0,21
+239683,0,0,0,21
+239684,0,0,0,21
+239685,0,0,0,21
+239686,0,0,0,21
+239687,0,0,0,21
+239688,0,0,0,21
+239689,0,0,0,21
+239690,0,0,0,21
+239691,0,0,0,21
+239692,0,0,0,21
+239693,0,0,0,21
+239694,0,0,0,21
+239695,0,0,0,21
+239696,0,0,0,21
+239697,0,0,0,21
+239698,0,0,0,21
+239699,0,0,0,21
+239700,0,0,0,21
+239701,0,0,0,21
+239702,0,0,0,21
+239703,0,0,0,21
+239704,0,0,0,21
+239705,0,0,0,21
+239706,0,0,0,21
+239707,0,0,0,21
+239708,0,0,0,21
+239709,0,0,0,21
+239710,0,0,0,21
+239711,0,0,0,21
+239712,0,0,0,21
+239713,0,0,0,21
+239714,0,0,0,21
+239715,0,0,0,21
+239716,0,0,0,21
+239717,0,0,0,21
+239718,0,0,0,21
+239719,0,0,0,21
+239720,0,0,0,21
+239721,0,0,0,21
+239722,0,0,0,21
+239723,0,0,0,21
+239724,0,0,0,21
+239725,0,0,0,21
+239726,0,0,0,21
+239727,0,0,0,21
+239728,0,0,0,21
+239729,0,0,0,21
+239730,0,0,0,21
+239731,0,0,0,21
+239732,0,0,0,21
+239733,0,0,0,21
+239734,0,0,0,21
+239735,0,0,0,21
+239736,0,0,0,21
+239737,0,0,0,21
+239738,0,0,0,21
+239739,0,0,0,21
+239740,0,0,0,21
+239741,0,0,0,21
+239742,0,0,0,21
+239743,0,0,0,21
+239744,0,0,0,21
+239745,0,0,0,21
+239746,0,0,0,21
+239747,0,0,0,21
+239748,0,0,0,21
+239749,0,0,0,21
+239750,0,0,0,21
+239751,0,0,0,21
+239752,0,0,0,21
+239753,0,0,0,21
+239754,0,0,0,21
+239755,0,0,0,21
+239756,0,0,0,21
+239757,0,0,0,21
+239758,0,0,0,21
+239759,0,0,0,21
+239760,0,0,0,21
+239761,0,0,0,21
+239762,0,0,0,21
+239763,0,0,0,21
+239764,0,0,0,21
+239765,0,0,0,21
+239766,0,0,0,21
+239767,0,0,0,21
+239768,0,0,0,21
+239769,0,0,0,21
+239770,0,0,0,21
+239771,0,0,0,21
+239772,0,0,0,21
+239773,0,0,0,21
+239774,0,0,0,21
+239775,0,0,0,21
+239776,0,0,0,21
+239777,0,0,0,21
+239778,0,0,0,21
+239779,0,0,0,21
+239780,0,0,0,21
+239781,0,0,0,21
+239782,0,0,0,21
+239783,0,0,0,21
+239784,0,0,0,21
+239785,0,0,0,21
+239786,0,0,0,21
+239787,0,0,0,21
+239788,0,0,0,21
+239789,0,0,0,21
+239790,0,0,0,21
+239791,0,0,0,21
+239792,0,0,0,21
+239793,0,0,0,21
+239794,0,0,0,21
+239795,0,0,0,21
+239796,0,0,0,21
+239797,0,0,0,21
+239798,0,0,0,21
+239799,0,0,0,21
+239800,0,0,0,21
+239801,0,0,0,21
+239802,0,0,0,21
+239803,0,0,0,21
+239804,0,0,0,21
+239805,0,0,0,21
+239806,0,0,0,21
+239807,0,0,0,21
+239808,0,0,0,21
+239809,0,0,0,21
+239810,0,0,0,21
+239811,0,0,0,21
+239812,0,0,0,21
+239813,0,0,0,21
+239814,0,0,0,21
+239815,0,0,0,21
+239816,0,0,0,21
+239817,0,0,0,21
+239818,0,0,0,21
+239819,0,0,0,21
+239820,0,0,0,21
+239821,0,0,0,21
+239822,0,0,0,21
+239823,0,0,0,21
+239824,0,0,0,21
+239825,0,0,0,21
+239826,0,0,0,21
+239827,0,0,0,21
+239828,0,0,0,21
+239829,0,0,0,21
+239830,0,0,0,21
+239831,0,0,0,21
+239832,0,0,0,21
+239833,0,0,0,21
+239834,0,0,0,21
+239835,0,0,0,21
+239836,0,0,0,21
+239837,0,0,0,21
+239838,0,0,0,21
+239839,0,0,0,21
+239840,0,0,0,21
+239841,0,0,0,21
+239842,0,0,0,21
+239843,0,0,0,21
+239844,0,0,0,21
+239845,0,0,0,21
+239846,0,0,0,21
+239847,0,0,0,21
+239848,0,0,0,21
+239849,0,0,0,21
+239850,0,0,0,21
+239851,0,0,0,21
+239852,0,0,0,21
+239853,0,0,0,21
+239854,0,0,0,21
+239855,0,0,0,21
+239856,0,0,0,21
+239857,0,0,0,21
+239858,0,0,0,21
+239859,0,0,0,21
+239860,0,0,0,21
+239861,0,0,0,21
+239862,0,0,0,21
+239863,0,0,0,21
+239864,0,0,0,21
+239865,0,0,0,21
+239866,0,0,0,21
+239867,0,0,0,21
+239868,0,0,0,21
+239869,0,0,0,21
+239870,0,0,0,21
+239871,0,0,0,21
+239872,0,0,0,21
+239873,0,0,0,21
+239874,0,0,0,21
+239875,0,0,0,21
+239876,0,0,0,21
+239877,0,0,0,21
+239878,0,0,0,21
+239879,0,0,0,21
+239880,0,0,0,21
+239881,0,0,0,21
+239882,0,0,0,21
+239883,0,0,0,21
+239884,0,0,0,21
+239885,0,0,0,21
+239886,0,0,0,21
+239887,0,0,0,21
+239888,0,0,0,21
+239889,0,0,0,21
+239890,0,0,0,21
+239891,0,0,0,21
+239892,0,0,0,21
+239893,0,0,0,21
+239894,0,0,0,21
+239895,0,0,0,21
+239896,0,0,0,21
+239897,0,0,0,21
+239898,0,0,0,21
+239899,0,0,0,21
+239900,0,0,0,21
+239901,0,0,0,21
+239902,0,0,0,21
+239903,0,0,0,21
+239904,0,0,0,21
+239905,0,0,0,21
+239906,0,0,0,21
+239907,0,0,0,21
+239908,0,0,0,21
+239909,0,0,0,21
+239910,0,0,0,21
+239911,0,0,0,21
+239912,0,0,0,21
+239913,0,0,0,21
+239914,0,0,0,21
+239915,0,0,0,21
+239916,0,0,0,21
+239917,0,0,0,21
+239918,0,0,0,21
+239919,0,0,0,21
+239920,0,0,0,21
+239921,0,0,0,21
+239922,0,0,0,21
+239923,0,0,0,21
+239924,0,0,0,21
+239925,0,0,0,21
+239926,0,0,0,21
+239927,0,0,0,21
+239928,0,0,0,21
+239929,0,0,0,21
+239930,0,0,0,21
+239931,0,0,0,21
+239932,0,0,0,21
+239933,0,0,0,21
+239934,0,0,0,21
+239935,0,0,0,21
+239936,0,0,0,21
+239937,0,0,0,21
+239938,0,0,0,21
+239939,0,0,0,21
+239940,0,0,0,21
+239941,0,0,0,21
+239942,0,0,0,21
+239943,0,0,0,21
+239944,0,0,0,21
+239945,0,0,0,21
+239946,0,0,0,21
+239947,0,0,0,21
+239948,0,0,0,21
+239949,0,0,0,21
+239950,0,0,0,21
+239951,0,0,0,21
+239952,0,0,0,21
+239953,0,0,0,21
+239954,0,0,0,21
+239955,0,0,0,21
+239956,0,0,0,21
+239957,0,0,0,21
+239958,0,0,0,21
+239959,0,0,0,21
+239960,0,0,0,21
+239961,0,0,0,21
+239962,0,0,0,21
+239963,0,0,0,21
+239964,0,0,0,21
+239965,0,0,0,21
+239966,0,0,0,21
+239967,0,0,0,21
+239968,0,0,0,21
+239969,0,0,0,21
+239970,0,0,0,21
+239971,0,0,0,21
+239972,0,0,0,21
+239973,0,0,0,21
+239974,0,0,0,21
+239975,0,0,0,21
+239976,0,0,0,21
+239977,0,0,0,21
+239978,0,0,0,21
+239979,0,0,0,21
+239980,0,0,0,21
+239981,0,0,0,21
+239982,0,0,0,21
+239983,0,0,0,21
+239984,0,0,0,21
+239985,0,0,0,21
+239986,0,0,0,21
+239987,0,0,0,21
+239988,0,0,0,21
+239989,0,0,0,21
+239990,0,0,0,21
+239991,0,0,0,21
+239992,0,0,0,21
+239993,0,0,0,21
+239994,0,0,0,21
+239995,0,0,0,21
+239996,0,0,0,21
+239997,0,0,0,21
+239998,0,0,0,21
+239999,0,0,0,21
+240000,0,0,0,21
+240001,0,0,0,21
+240002,0,0,0,21
+240003,0,0,0,21
+240004,0,0,0,21
+240005,0,0,0,21
+240006,0,0,0,21
+240007,0,0,0,21
+240008,0,0,0,21
+240009,0,0,0,21
+240010,0,0,0,21
+240011,0,0,0,21
+240012,0,0,0,21
+240013,0,0,0,21
+240014,0,0,0,21
+240015,0,0,0,21
+240016,0,0,0,21
+240017,0,0,0,21
+240018,0,0,0,21
+240019,0,0,0,21
+240020,0,0,0,21
+240021,0,0,0,21
+240022,0,0,0,21
+240023,0,0,0,21
+240024,0,0,0,21
+240025,0,0,0,21
+240026,0,0,0,21
+240027,0,0,0,21
+240028,0,0,0,21
+240029,0,0,0,21
+240030,0,0,0,21
+240031,0,0,0,21
+240032,0,0,0,21
+240033,0,0,0,21
+240034,0,0,0,21
+240035,0,0,0,21
+240036,0,0,0,21
+240037,0,0,0,21
+240038,0,0,0,21
+240039,0,0,0,21
+240040,0,0,0,21
+240041,0,0,0,21
+240042,0,0,0,21
+240043,0,0,0,21
+240044,0,0,0,21
+240045,0,0,0,21
+240046,0,0,0,21
+240047,0,0,0,21
+240048,0,0,0,21
+240049,0,0,0,21
+240050,0,0,0,21
+240051,0,0,0,21
+240052,0,0,0,21
+240053,0,0,0,21
+240054,0,0,0,21
+240055,0,0,0,21
+240056,0,0,0,21
+240057,0,0,0,21
+240058,0,0,0,21
+240059,0,0,0,21
+240060,0,0,0,21
+240061,0,0,0,21
+240062,0,0,0,21
+240063,0,0,0,21
+240064,0,0,0,21
+240065,0,0,0,21
+240066,0,0,0,21
+240067,0,0,0,21
+240068,0,0,0,21
+240069,0,0,0,21
+240070,0,0,0,21
+240071,0,0,0,21
+240072,0,0,0,21
+240073,0,0,0,21
+240074,0,0,0,21
+240075,0,0,0,21
+240076,0,0,0,21
+240077,0,0,0,21
+240078,0,0,0,21
+240079,0,0,0,21
+240080,0,0,0,21
+240081,0,0,0,21
+240082,0,0,0,21
+240083,0,0,0,21
+240084,0,0,0,21
+240085,0,0,0,21
+240086,0,0,0,21
+240087,0,0,0,21
+240088,0,0,0,21
+240089,0,0,0,21
+240090,0,0,0,21
+240091,0,0,0,21
+240092,0,0,0,21
+240093,0,0,0,21
+240094,0,0,0,21
+240095,0,0,0,21
+240096,0,0,0,21
+240097,0,0,0,21
+240098,0,0,0,21
+240099,0,0,0,21
+240100,0,0,0,21
+240101,0,0,0,21
+240102,0,0,0,21
+240103,0,0,0,21
+240104,0,0,0,21
+240105,0,0,0,21
+240106,0,0,0,21
+240107,0,0,0,21
+240108,0,0,0,21
+240109,0,0,0,21
+240110,0,0,0,21
+240111,0,0,0,21
+240112,0,0,0,21
+240113,0,0,0,21
+240114,0,0,0,21
+240115,0,0,0,21
+240116,0,0,0,21
+240117,0,0,0,21
+240118,0,0,0,21
+240119,0,0,0,21
+240120,0,0,0,21
+240121,0,0,0,21
+240122,0,0,0,21
+240123,0,0,0,21
+240124,0,0,0,21
+240125,0,0,0,21
+240126,0,0,0,21
+240127,0,0,0,21
+240128,0,0,0,21
+240129,0,0,0,21
+240130,0,0,0,21
+240131,0,0,0,21
+240132,0,0,0,21
+240133,0,0,0,21
+240134,0,0,0,21
+240135,0,0,0,21
+240136,0,0,0,21
+240137,0,0,0,21
+240138,0,0,0,21
+240139,0,0,0,21
+240140,0,0,0,21
+240141,0,0,0,21
+240142,0,0,0,21
+240143,0,0,0,21
+240144,0,0,0,21
+240145,0,0,0,21
+240146,0,0,0,21
+240147,0,0,0,21
+240148,0,0,0,21
+240149,0,0,0,21
+240150,0,0,0,21
+240151,0,0,0,21
+240152,0,0,0,21
+240153,0,0,0,21
+240154,0,0,0,21
+240155,0,0,0,21
+240156,0,0,0,21
+240157,0,0,0,21
+240158,0,0,0,21
+240159,0,0,0,21
+240160,0,0,0,21
+240161,0,0,0,21
+240162,0,0,0,21
+240163,0,0,0,21
+240164,0,0,0,21
+240165,0,0,0,21
+240166,0,0,0,21
+240167,0,0,0,21
+240168,0,0,0,21
+240169,0,0,0,21
+240170,0,0,0,21
+240171,0,0,0,21
+240172,0,0,0,21
+240173,0,0,0,21
+240174,0,0,0,21
+240175,0,0,0,21
+240176,0,0,0,21
+240177,0,0,0,21
+240178,0,0,0,21
+240179,0,0,0,21
+240180,0,0,0,21
+240181,0,0,0,21
+240182,0,0,0,21
+240183,0,0,0,21
+240184,0,0,0,21
+240185,0,0,0,21
+240186,0,0,0,21
+240187,0,0,0,21
+240188,0,0,0,21
+240189,0,0,0,21
+240190,0,0,0,21
+240191,0,0,0,21
+240192,0,0,0,21
+240193,0,0,0,21
+240194,0,0,0,21
+240195,0,0,0,21
+240196,0,0,0,21
+240197,0,0,0,21
+240198,0,0,0,21
+240199,0,0,0,21
+240200,0,0,0,21
+240201,0,0,0,21
+240202,0,0,0,21
+240203,0,0,0,21
+240204,0,0,0,21
+240205,0,0,0,21
+240206,0,0,0,21
+240207,0,0,0,21
+240208,0,0,0,21
+240209,0,0,0,21
+240210,0,0,0,21
+240211,0,0,0,21
+240212,0,0,0,21
+240213,0,0,0,21
+240214,0,0,0,21
+240215,0,0,0,21
+240216,0,0,0,21
+240217,0,0,0,21
+240218,0,0,0,21
+240219,0,0,0,21
+240220,0,0,0,21
+240221,0,0,0,21
+240222,0,0,0,21
+240223,0,0,0,21
+240224,0,0,0,21
+240225,0,0,0,21
+240226,0,0,0,21
+240227,0,0,0,21
+240228,0,0,0,21
+240229,0,0,0,21
+240230,0,0,0,21
+240231,0,0,0,21
+240232,0,0,0,21
+240233,0,0,0,21
+240234,0,0,0,21
+240235,0,0,0,21
+240236,0,0,0,21
+240237,0,0,0,21
+240238,0,0,0,21
+240239,0,0,0,21
+240240,0,0,0,21
+240241,0,0,0,21
+240242,0,0,0,21
+240243,0,0,0,21
+240244,0,0,0,21
+240245,0,0,0,21
+240246,0,0,0,21
+240247,0,0,0,21
+240248,0,0,0,21
+240249,0,0,0,21
+240250,0,0,0,21
+240251,0,0,0,21
+240252,0,0,0,21
+240253,0,0,0,21
+240254,0,0,0,21
+240255,0,0,0,21
+240256,0,0,0,21
+240257,0,0,0,21
+240258,0,0,0,21
+240259,0,0,0,21
+240260,0,0,0,21
+240261,0,0,0,21
+240262,0,0,0,21
+240263,0,0,0,21
+240264,0,0,0,21
+240265,19.54816651,0,0,21
+240266,126.2226328,0,0,21
+240267,91.6981845,0,0,21
+240268,126.2226328,0,0,21
+240269,563.7325389,0,0,21
+240270,1141.11851,0,0,21
+240271,752.8625546,0,0,21
+240272,1290.126737,0,0,21
+240273,1190.958712,0,0,21
+240274,1454.403113,0,0,21
+240275,1487.090684,1681.338776,0,21
+240276,1746.489288,1036.579587,0,21
+240277,1762.690819,1361.70004,0,21
+240278,1923.215782,1681.339057,0,21
+240279,2050.800742,1839.401651,0,21
+240280,2193.587396,1996.410019,0,21
+240281,2335.592837,2307.535775,0,21
+240282,2351.392108,2307.535959,0,21
+240283,2601.689158,2767.790719,0,21
+240284,2648.672638,2767.790991,0,21
+240285,2757.305323,2919.662221,0,21
+240286,3019.644276,3371.089123,0,21
+240287,2927.549106,3371.089537,0,21
+240288,3173.20701,3520.258362,0,21
+240289,3310.666322,3816.770318,0,21
+240290,3326.017292,4110.975618,0,21
+240291,3462.867082,4110.976248,0,21
+240292,4589.187159,4403.008344,0,21
+240293,4438.953687,4548.246504,0,21
+240294,4725.574832,4837.230786,0,21
+240295,4993.739558,4837.231677,0,21
+240296,5128.551119,5267.152283,0,21
+240297,5410.199469,5267.153349,0,21
+240298,5763.907159,5551.516826,0,21
+240299,5686.801484,5834.164294,0,21
+240300,6304.389685,5834.165616,0,21
+240301,0,0,0,21
+240302,0,0,0,21
+240303,0,0,0,21
+240304,0,0,0,21
+240305,0,367962.2795,658921.1275,21
+240306,333357.102,0,0,21
+240307,0,0,0,21
+240308,0,0,0,21
+240309,0,0,0,21
+240310,0,0,0,21
+240311,0,0,0,21
+240312,0,0,0,21
+240313,0,0,0,21
+240314,0,0,0,21
+240315,0,0,0,21
+240316,0,0,0,21
+240317,0,0,0,21
+240318,0,0,0,21
+240319,0,0,0,21
+240320,0,0,0,21
+240321,0,0,0,21
+240322,0,0,0,21
+240323,0,0,0,21
+240324,0,0,0,21
+240325,0,0,0,21
+240326,0,0,0,21
+240327,0,0,0,21
+240328,0,0,0,21
+240329,0,0,0,21
+240330,0,0,0,21
+240331,0,0,0,21
+240332,0,0,0,21
+240333,0,0,0,21
+240334,0,0,0,21
+240335,0,0,0,21
+240336,0,0,0,21
+240337,0,0,0,21
+240338,0,0,0,21
+240339,0,368799.0147,659536.701,21
+240340,0,0,0,21
+240341,335316.4507,0,0,21
+240342,0,0,0,21
+240343,0,0,0,21
+240344,0,0,0,21
+240345,0,0,0,21
+240346,0,0,0,21
+240347,0,0,0,21
+240348,0,0,0,21
+240349,0,0,0,21
+240350,0,0,0,21
+240351,0,0,0,21
+240352,0,0,0,21
+240353,0,0,0,21
+240354,0,0,0,21
+240355,0,0,0,21
+240356,0,0,0,21
+240357,0,0,0,21
+240358,0,0,0,21
+240359,0,0,0,21
+240360,0,0,0,15.6
+240361,0,0,0,15.6
+240362,0,0,0,15.6
+240363,0,0,0,15.6
+240364,0,0,0,15.6
+240365,0,0,0,15.6
+240366,0,0,0,15.6
+240367,0,0,0,15.6
+240368,0,0,0,15.6
+240369,0,0,0,15.6
+240370,0,0,0,15.6
+240371,0,0,0,15.6
+240372,0,0,0,15.6
+240373,0,368806.7446,659665.218,15.6
+240374,0,0,0,15.6
+240375,0,0,0,15.6
+240376,334122.1272,0,0,15.6
+240377,0,0,0,15.6
+240378,0,0,0,15.6
+240379,0,0,0,15.6
+240380,0,0,0,15.6
+240381,0,0,0,15.6
+240382,0,0,0,15.6
+240383,0,0,0,15.6
+240384,0,0,0,15.6
+240385,0,0,0,15.6
+240386,0,0,0,15.6
+240387,0,0,0,15.6
+240388,0,0,0,15.6
+240389,0,0,0,15.6
+240390,0,0,0,15.6
+240391,0,0,0,15.6
+240392,0,0,0,15.6
+240393,0,0,0,15.6
+240394,0,0,0,15.6
+240395,0,0,0,15.6
+240396,0,0,0,15.6
+240397,0,0,0,15.6
+240398,0,0,0,15.6
+240399,0,0,0,15.6
+240400,0,0,0,15.6
+240401,0,0,0,15.6
+240402,0,0,0,15.6
+240403,0,0,0,15.6
+240404,0,0,0,15.6
+240405,0,0,0,15.6
+240406,0,0,0,15.6
+240407,0,368814.4735,660202.5972,15.6
+240408,0,0,0,15.6
+240409,0,0,0,15.6
+240410,0,0,0,15.6
+240411,335910.4847,0,0,15.6
+240412,0,0,0,15.6
+240413,0,0,0,15.6
+240414,0,0,0,15.6
+240415,0,0,0,15.6
+240416,0,0,0,15.6
+240417,0,0,0,15.6
+240418,0,0,0,15.6
+240419,0,0,0,15.6
+240420,0,0,0,15.6
+240421,0,0,0,15.6
+240422,0,0,0,15.6
+240423,0,0,0,15.6
+240424,0,0,0,15.6
+240425,0,0,0,15.6
+240426,0,0,0,15.6
+240427,0,0,0,15.6
+240428,0,0,0,15.6
+240429,0,0,0,15.6
+240430,0,0,0,15.6
+240431,0,0,0,15.6
+240432,0,0,0,15.6
+240433,0,0,0,15.6
+240434,0,0,0,15.6
+240435,0,0,0,15.6
+240436,0,0,0,15.6
+240437,0,0,0,15.6
+240438,0,0,0,15.6
+240439,0,0,0,15.6
+240440,0,0,0,15.6
+240441,0,368817.7984,660772.0309,15.6
+240442,0,0,0,15.6
+240443,0,0,0,15.6
+240444,0,0,0,15.6
+240445,0,0,0,15.6
+240446,334718.1364,0,0,15.6
+240447,0,0,0,15.6
+240448,0,0,0,15.6
+240449,0,0,0,15.6
+240450,0,0,0,15.6
+240451,0,0,0,15.6
+240452,0,0,0,15.6
+240453,0,0,0,15.6
+240454,0,0,0,15.6
+240455,0,0,0,15.6
+240456,0,0,0,15.6
+240457,0,0,0,15.6
+240458,0,0,0,15.6
+240459,0,0,0,15.6
+240460,0,0,0,15.6
+240461,0,0,0,15.6
+240462,0,0,0,15.6
+240463,0,0,0,15.6
+240464,0,0,0,15.6
+240465,0,0,0,15.6
+240466,0,0,0,15.6
+240467,0,0,0,15.6
+240468,0,0,0,15.6
+240469,0,0,0,15.6
+240470,0,0,0,15.6
+240471,0,0,0,15.6
+240472,0,0,0,15.6
+240473,0,0,0,15.6
+240474,0,0,0,15.6
+240475,0,0,660509.5036,15.6
+240476,0,368817.7984,0,15.6
+240477,0,0,0,15.6
+240478,0,0,0,15.6
+240479,0,0,0,15.6
+240480,0,0,0,15.6
+240481,336210.4046,0,0,15.6
+240482,0,0,0,15.6
+240483,0,0,0,15.6
+240484,0,0,0,15.6
+240485,0,0,0,15.6
+240486,0,0,0,15.6
+240487,0,0,0,15.6
+240488,0,0,0,15.6
+240489,0,0,0,15.6
+240490,0,0,0,15.6
+240491,0,0,0,15.6
+240492,0,0,0,15.6
+240493,0,0,0,15.6
+240494,0,0,0,15.6
+240495,0,0,0,15.6
+240496,0,0,0,15.6
+240497,0,0,0,15.6
+240498,0,0,0,15.6
+240499,0,0,0,15.6
+240500,0,0,0,15.6
+240501,0,0,0,15.6
+240502,0,0,0,15.6
+240503,0,0,0,15.6
+240504,0,0,0,15.6
+240505,0,0,0,15.6
+240506,0,0,0,15.6
+240507,0,0,0,15.6
+240508,0,0,0,15.6
+240509,0,0,660850.0651,15.6
+240510,0,0,0,15.6
+240511,0,369046.6279,0,15.6
+240512,0,0,0,15.6
+240513,0,0,0,15.6
+240514,0,0,0,15.6
+240515,0,0,0,15.6
+240516,337183.7627,0,0,15.6
+240517,0,0,0,15.6
+240518,0,0,0,15.6
+240519,0,0,0,15.6
+240520,0,0,0,15.6
+240521,0,0,0,15.6
+240522,0,0,0,15.6
+240523,0,0,0,15.6
+240524,0,0,0,15.6
+240525,0,0,0,15.6
+240526,0,0,0,15.6
+240527,0,0,0,15.6
+240528,0,0,0,15.6
+240529,0,0,0,15.6
+240530,0,0,0,15.6
+240531,0,0,0,15.6
+240532,0,0,0,15.6
+240533,0,0,0,15.6
+240534,0,0,0,15.6
+240535,0,0,0,15.6
+240536,0,0,0,15.6
+240537,0,0,0,15.6
+240538,0,0,0,15.6
+240539,0,0,0,15.6
+240540,0,0,0,15.6
+240541,0,0,0,15.6
+240542,0,0,0,15.6
+240543,0,0,660583.3698,15.6
+240544,0,0,0,15.6
+240545,0,0,0,15.6
+240546,0,369046.0824,0,15.6
+240547,0,0,0,15.6
+240548,0,0,0,15.6
+240549,0,0,0,15.6
+240550,0,0,0,15.6
+240551,335491.9433,0,0,15.6
+240552,0,0,0,15.6
+240553,0,0,0,15.6
+240554,0,0,0,15.6
+240555,0,0,0,15.6
+240556,0,0,0,15.6
+240557,0,0,0,15.6
+240558,0,0,0,15.6
+240559,0,0,0,15.6
+240560,0,0,0,15.6
+240561,0,0,0,15.6
+240562,0,0,0,15.6
+240563,0,0,0,15.6
+240564,0,0,0,15.6
+240565,0,0,0,15.6
+240566,0,0,0,15.6
+240567,0,0,0,15.6
+240568,0,0,0,15.6
+240569,0,0,0,15.6
+240570,0,0,0,15.6
+240571,0,0,0,15.6
+240572,0,0,0,15.6
+240573,0,0,0,15.6
+240574,0,0,0,15.6
+240575,0,0,0,15.6
+240576,0,0,0,15.6
+240577,0,0,660812.9305,15.6
+240578,0,0,0,15.6
+240579,0,0,0,15.6
+240580,0,0,0,15.6
+240581,0,369017.6608,0,15.6
+240582,0,0,0,15.6
+240583,0,0,0,15.6
+240584,0,0,0,15.6
+240585,0,97.49999037,0,15.6
+240586,336730.3147,0,0,15.6
+240587,0,0,0,15.6
+240588,0,0,0,15.6
+240589,0,99.45172198,0,15.6
+240590,0,0,0,15.6
+240591,0,0,0,15.6
+240592,0,0,0,15.6
+240593,0,109.0464337,0,15.6
+240594,0,0,0,15.6
+240595,0,0,0,15.6
+240596,0,0,0,15.6
+240597,0,113.3119719,0,15.6
+240598,0,0,0,15.6
+240599,0,0,0,15.6
+240600,0,0,0,15.6
+240601,0,116.0781216,0,15.6
+240602,0,0,0,15.6
+240603,0,0,0,15.6
+240604,0,0,0,15.6
+240605,0,119.0970538,0,15.6
+240606,0,0,0,15.6
+240607,0,0,0,15.6
+240608,0,0,0,15.6
+240609,0,121.1369164,0,15.6
+240610,0,0,0,15.6
+240611,0,0,660643.5885,15.6
+240612,0,0,0,15.6
+240613,0,123.6626269,0,15.6
+240614,0,0,0,15.6
+240615,0,0,0,15.6
+240616,0,368996.3665,0,15.6
+240617,0,121.4561019,0,15.6
+240618,0,0,0,15.6
+240619,0,0,0,15.6
+240620,0,0,0,15.6
+240621,337483.7188,106.7923116,0,15.6
+240622,0,0,0,15.6
+240623,0,0,0,15.6
+240624,0,0,0,15.6
+240625,0,110.0979348,0,15.6
+240626,0,0,0,15.6
+240627,0,0,0,15.6
+240628,0,0,0,15.6
+240629,0,117.9462994,0,15.6
+240630,0,0,0,15.6
+240631,0,0,0,15.6
+240632,0,0,0,15.6
+240633,0,116.6431507,0,15.6
+240634,0,0,0,15.6
+240635,0,0,0,15.6
+240636,0,0,0,15.6
+240637,0,112.2463452,0,15.6
+240638,0,0,0,15.6
+240639,0,0,0,15.6
+240640,0,0,0,15.6
+240641,0,108.8069155,0,15.6
+240642,0,0,0,15.6
+240643,0,0,0,15.6
+240644,0,0,0,15.6
+240645,0,107.3384436,660673.4006,15.6
+240646,0,0,0,15.6
+240647,0,0,0,15.6
+240648,0,0,0,15.6
+240649,0,108.1615089,0,15.6
+240650,0,0,0,15.6
+240651,0,368993.3415,0,15.6
+240652,0,0,0,15.6
+240653,0,104.3866201,0,15.6
+240654,0,0,0,15.6
+240655,0,0,0,15.6
+240656,336037.4301,0,0,15.6
+240657,0,81.62349973,0,15.6
+240658,0,0,0,15.6
+240659,0,0,0,15.6
+240660,0,0,0,15.6
+240661,0,111.3379116,0,15.6
+240662,0,0,0,15.6
+240663,0,0,0,15.6
+240664,0,0,0,15.6
+240665,0,112.3018361,0,15.6
+240666,0,0,0,15.6
+240667,0,0,0,15.6
+240668,0,0,0,15.6
+240669,0,117.2981917,0,15.6
+240670,0,0,0,15.6
+240671,0,0,0,15.6
+240672,0,0,0,15.6
+240673,0,116.7522691,0,15.6
+240674,0,0,0,15.6
+240675,0,0,0,15.6
+240676,0,0,0,15.6
+240677,0,113.7526899,0,15.6
+240678,0,0,0,15.6
+240679,0,0,659976.5588,15.6
+240680,0,0,0,15.6
+240681,0,109.4836987,0,15.6
+240682,0,0,0,15.6
+240683,0,0,0,15.6
+240684,0,0,0,15.6
+240685,0,105.9919173,0,15.6
+240686,0,368974.2841,0,15.6
+240687,0,0,0,15.6
+240688,0,0,0,15.6
+240689,0,97.33554007,0,15.6
+240690,336325.2444,0,0,15.6
+240691,0,0,0,15.6
+240692,0,0,0,15.6
+240693,0,77.45010834,0,15.6
+240694,0,0,0,15.6
+240695,0,0,0,15.6
+240696,0,0,0,15.6
+240697,0,0,0,15.6
+240698,0,0,0,15.6
+240699,0,0,0,15.6
+240700,0,84.03704969,0,15.6
+240701,0,0,0,15.6
+240702,0,0,0,15.6
+240703,0,0,0,15.6
+240704,0,121.8568855,0,15.6
+240705,0,0,0,15.6
+240706,0,0,0,15.6
+240707,0,0,0,15.6
+240708,0,110.0163386,0,15.6
+240709,0,0,0,15.6
+240710,0,0,0,15.6
+240711,0,0,0,15.6
+240712,0,112.6328798,0,15.6
+240713,0,0,660679.4765,15.6
+240714,0,0,0,15.6
+240715,0,0,0,15.6
+240716,0,109.4376761,0,15.6
+240717,0,0,0,15.6
+240718,0,0,0,15.6
+240719,0,0,0,15.6
+240720,0,369055.905,0,17.8
+240721,0,111049.2828,0,17.8
+240722,0,0,0,17.8
+240723,0,0,0,17.8
+240724,337381.6067,3547.053412,0,17.8
+240725,0,30631.92539,0,17.8
+240726,0,12059.13302,0,17.8
+240727,0,0,0,17.8
+240728,0,86.40656156,0,17.8
+240729,0,0,0,17.8
+240730,0,0,0,17.8
+240731,0,0,0,17.8
+240732,0,108.128352,0,17.8
+240733,0,0,0,17.8
+240734,0,0,0,17.8
+240735,0,0,0,17.8
+240736,0,105.2422405,0,17.8
+240737,0,0,0,17.8
+240738,0,0,0,17.8
+240739,0,0,0,17.8
+240740,0,109.7559123,0,17.8
+240741,0,0,0,17.8
+240742,0,0,0,17.8
+240743,0,0,0,17.8
+240744,0,110.073873,0,17.8
+240745,0,0,0,17.8
+240746,0,0,0,17.8
+240747,0,0,659439.2843,17.8
+240748,0,110.4034947,0,17.8
+240749,0,0,0,17.8
+240750,0,0,0,17.8
+240751,0,0,0,17.8
+240752,0,108.147169,0,17.8
+240753,0,0,0,17.8
+240754,0,368950.3092,0,17.8
+240755,0,0,0,17.8
+240756,0,100.9205677,0,17.8
+240757,0,0,0,17.8
+240758,338020.7144,0,0,17.8
+240759,0,0,0,17.8
+240760,0,72.45539989,0,17.8
+240761,0,0,0,17.8
+240762,0,0,0,17.8
+240763,0,0,0,17.8
+240764,0,97.49060866,0,17.8
+240765,0,0,0,17.8
+240766,0,0,0,17.8
+240767,0,0,0,17.8
+240768,0,97.29811623,0,17.8
+240769,0,0,0,17.8
+240770,0,0,0,17.8
+240771,0,0,0,17.8
+240772,0,102.0584194,0,17.8
+240773,0,0,0,17.8
+240774,0,0,0,17.8
+240775,0,0,0,17.8
+240776,0,103.67048,0,17.8
+240777,0,0,0,17.8
+240778,0,0,0,17.8
+240779,0,0,0,17.8
+240780,0,104.7242198,0,20
+240781,104387.4366,12390.65621,660214.5439,20
+240782,0,0,0,20
+240783,0,6216.965661,0,20
+240784,0,57072.69232,0,20
+240785,25458.81376,47775.47074,0,20
+240786,11416.71162,41234.28931,0,20
+240787,13541.34832,46944.60409,0,20
+240788,14536.22165,60389.42908,0,20
+240789,16618.13358,58213.6456,0,20
+240790,15940.13828,56866.03043,0,20
+240791,16970.15962,58525.02821,0,20
+240792,17286.83599,58494.30748,0,20
+240793,17463.35252,58761.31044,0,20
+240794,17716.48724,58562.47687,0,20
+240795,18067.76476,58638.76311,0,20
+240796,18109.74682,58797.53781,0,20
+240797,18567.12517,58900.80506,0,20
+240798,18487.1717,58863.84156,0,20
+240799,19051.29222,58861.68901,0,20
+240800,18997.68342,58942.25961,0,20
+240801,19304.82358,59050.86222,0,20
+240802,19587.76043,58788.92165,0,20
+240803,19359.16917,58970.3927,0,20
+240804,20158.92824,58872.86441,0,20
+240805,19852.98762,58951.75551,0,20
+240806,20292.14792,58758.4938,0,20
+240807,20330.73891,58951.78766,0,20
+240808,20345.88842,58841.43904,0,20
+240809,20885.51389,58737.57097,0,20
+240810,20822.84124,58818.18332,0,20
+240811,20820.55569,58808.65161,0,20
+240812,21175.19933,58496.45815,0,20
+240813,21163.81916,58435.79307,0,20
+240814,21203.16447,58449.71336,0,20
+240815,21411.20546,58382.03129,0,20
+240816,21425.04464,58110.50226,0,20
+240817,21556.82123,57991.46916,0,20
+240818,21660.55865,58042.79774,0,20
+240819,21685.29203,57705.24876,0,20
+240820,21685.8507,57905.00701,0,20
+240821,21830.7183,57665.13237,0,20
+240822,22009.75269,57512.32788,0,20
+240823,21949.51466,57416.13942,0,20
+240824,22048.7283,57272.46976,0,20
+240825,22062.46778,57156.16647,0,20
+240826,22182.35792,57241.90386,0,20
+240827,22267.11161,57348.29045,0,20
+240828,22114.965,57118.59002,0,20
+240829,22505.55565,57156.23411,0,20
+240830,22200.70971,56845.12573,84.2342019,20
+240831,22439.4883,56778.22388,84.23440221,20
+240832,22319.63023,56466.93692,84.23459041,20
+240833,22550.90221,56733.65389,116.2076161,20
+240834,22332.13393,56005.29632,116.20798,20
+240835,22564.54439,56195.90721,131.9927316,20
+240836,22562.17126,56097.80402,147.6619063,20
+240837,22462.08709,55594.30541,147.6624714,20
+240838,22664.45078,55561.45194,178.693614,20
+240839,22483.09292,55532.48396,163.2274892,20
+240840,22589.488,54925.05996,194.0727916,21
+240841,22660.18039,54870.27509,263.1894325,21
+240842,22388.9373,54892.90236,278.4854135,21
+240843,22349.18059,54651.41363,270.1669153,21
+240844,22362.85535,54444.77527,310.194948,21
+240845,22135.31624,54598.11289,325.3394488,21
+240846,22254.79628,54496.5227,318.3778485,21
+240847,22121.6102,54151.17867,356.73225,21
+240848,21715.48347,54455.13105,372.9000585,21
+240849,22121.61036,53701.201,372.9037918,21
+240850,21682.97053,54185.25823,387.9133817,21
+240851,21701.77669,53957.67255,418.8914892,21
+240852,21548.80816,53590.27565,419.8660179,21
+240853,21472.40558,53611.29473,433.7827191,21
+240854,21350.47596,53560.86225,442.7334245,21
+240855,21203.34212,53228.99654,464.5295556,21
+240856,21036.27702,53538.32253,465.5157166,21
+240857,21189.50225,52830.13898,488.2095999,21
+240858,20805.00196,53094.40761,495.1199637,21
+240859,20752.34657,52793.52532,503.8798932,21
+240860,20650.80086,53003.41197,525.5524158,21
+240861,20649.1655,52198.24205,518.6626808,21
+240862,20300.64069,52756.85137,541.1795025,21
+240863,20327.38473,52477.66126,541.1876514,21
+240864,20171.01381,52149.16037,563.6317684,21
+240865,19957.58814,52093.0753,556.7298398,21
+240866,19957.58846,51944.3229,586.0142204,21
+240867,19717.22454,51924.11736,571.4109507,21
+240868,19605.17414,51739.12887,593.7654001,21
+240869,19392.10527,51746.14292,601.4876827,21
+240870,19351.49703,51713.76474,601.4977053,21
+240871,19252.96647,51728.49873,600.6269734,21
+240872,18998.50054,51195.7044,570.5442559,21
+240873,18807.8961,51707.53024,522.070383,21
+240874,18874.30476,51633.40624,491.475356,21
+240875,18426.17425,51234.4952,465.33167,21
+240876,18656.78516,51466.61831,442.4998087,21
+240877,18169.85359,51336.68303,423.3909159,21
+240878,18069.76552,51633.44101,382.5816443,21
+240879,18057.15278,50964.77415,387.9343807,21
+240880,17720.35003,51647.48251,373.3719886,21
+240881,17558.83949,51100.52507,387.9425569,21
+240882,17592.80517,51331.35253,373.3798444,21
+240883,17115.406,51504.88207,387.9508592,21
+240884,17325.77851,51160.35011,373.3877306,21
+240885,17584.99127,51182.39372,373.3916332,21
+240886,17613.42131,51448.95338,387.9631391,21
+240887,17388.05034,51043.55321,358.7827956,21
+240888,17459.30412,51389.19601,373.4032733,21
+240889,17129.51164,51225.10355,358.7900429,21
+240890,17134.85726,51485.4848,358.793661,21
+240891,16769.55657,50941.7207,373.414601,21
+240892,16883.11923,51606.3945,344.1326799,21
+240893,16628.61425,51043.60276,358.8043958,21
+240894,16415.79086,51332.25195,358.8079737,21
+240895,16381.00189,51164.72606,344.1428049,21
+240896,16274.48455,51499.55933,344.1460953,21
+240897,15933.53337,51146.94662,344.1494087,21
+240898,15777.09225,51285.64376,344.1526734,21
+240899,15804.36535,51460.58189,329.4343152,21
+240900,15644.18361,51305.1168,329.4372744,21
+240901,8448.661259,42105.69838,0,21
+240902,8040.150397,41466.0982,0,21
+240903,7753.092866,41367.4616,0,21
+240904,7494.074369,40757.25641,0,21
+240905,7229.453562,41338.25534,0,21
+240906,6956.482906,40712.20773,0,21
+240907,6938.409955,40696.93642,0,21
+240908,6661.768562,40712.21859,0,21
+240909,6410.968145,40622.28806,0,21
+240910,6261.208401,40338.59549,0,21
+240911,6115.105889,40622.74315,0,21
+240912,5828.658342,40318.86741,0,21
+240913,5726.313327,40121.45205,0,21
+240914,5409.661353,40249.75128,0,21
+240915,5528.555854,40243.49268,0,21
+240916,4880.339352,40121.94561,0,21
+240917,5106.527019,40032.14097,0,21
+240918,4682.07973,39987.60405,0,21
+240919,4707.859494,39855.53087,0,21
+240920,4364.260297,40032.15677,0,21
+240921,4128.184657,39538.13991,0,21
+240922,4213.025829,39820.37412,0,21
+240923,3962.018414,39579.18163,0,21
+240924,3939.615555,39794.06014,0,21
+240925,3908.671008,39508.71743,0,21
+240926,3664.057968,39474.69459,0,21
+240927,3632.931341,39488.16099,0,21
+240928,3632.931196,39489.29916,0,21
+240929,3340.729825,39488.96786,0,21
+240930,3461.09501,39241.17799,0,21
+240931,3176.135027,39646.08283,0,21
+240932,2992.144531,38949.95698,0,21
+240933,2953.826355,39348.679,0,21
+240934,2814.123626,39014.18893,0,21
+240935,2673.718201,39200.27132,0,21
+240936,2518.223588,38716.14032,0,21
+240937,2404.985999,39235.61756,0,21
+240938,2247.871477,38695.51475,0,21
+240939,2233.447884,39051.72683,0,21
+240940,1974.049579,38168.80022,0,21
+240941,1945.085604,38873.85777,0,21
+240942,1813.917752,38261.77507,0,21
+240943,1519.003241,38505.39726,0,21
+240944,1652.516928,38112.71683,0,21
+240945,1218.239505,37891.86455,0,21
+240946,1354.793879,38091.98737,0,21
+240947,1065.005001,37562.71194,0,21
+240948,1050.252765,37856.61706,0,21
+240949,734.9712898,37541.97815,0,21
+240950,749.8133274,37126.01368,0,21
+240951,553.2816713,37464.1319,0,21
+240952,553.2814612,37126.02516,0,21
+240953,538.2988245,36514.32754,0,21
+240954,523.267021,36694.88023,0,21
+240955,508.1849419,36204.27135,0,21
+240956,493.0519967,36072.86815,0,21
+240957,477.8664434,36139.67953,0,21
+240958,462.6269665,35738.33653,0,21
+240959,447.3326814,35696.33081,0,21
+240960,431.981648,35427.06856,0,21
+240961,416.5722564,35622.67632,0,21
+240962,385.5724352,35550.38669,0,21
+240963,385.5724173,35802.29758,0,21
+240964,354.317466,35514.48827,0,21
+240965,338.5887977,35452.57738,0,21
+240966,322.7895608,35766.39146,0,21
+240967,290.9672645,35437.76648,0,21
+240968,290.9671846,35266.68813,0,21
+240969,258.8244263,35452.5466,0,21
+240970,242.6229149,35524.23724,0,21
+240971,226.3284198,35029.82927,0,21
+240972,201.6998807,35410.37045,0,21
+240973,185.1467183,35029.81046,0,21
+240974,160.0951786,35145.70262,0,21
+240975,151.6805748,35029.79357,0,21
+240976,126.2226168,34947.5642,0,21
+240977,91.69818826,34840.08246,0,21
+240978,91.69818809,34537.4226,0,21
+240979,74.13124938,34230.89527,0,21
+240980,38.158896,34346.56529,0,21
+240981,19.54815827,34153.62388,0,21
+240982,0,33826.95627,0,21
+240983,0,34111.01191,0,21
+240984,0,33641.62523,0,21
+240985,0,33869.06113,0,21
+240986,0,33413.21599,0,21
+240987,0,33405.04036,0,21
+240988,0,33655.43604,0,21
+240989,0,33004.69293,0,21
+240990,0,33133.32384,0,21
+240991,0,32983.20758,0,21
+240992,0,32723.38272,0,21
+240993,0,32775.02487,0,21
+240994,0,32176.63457,0,21
+240995,0,32364.31518,0,21
+240996,0,31945.36353,0,21
+240997,0,31816.43545,0,21
+240998,0,31546.53954,0,21
+240999,0,31381.08697,0,21
+241000,0,31191.97185,0,21
+241001,0,30639.94032,0,21
+241002,0,30958.96769,0,21
+241003,0,30222.49494,0,21
+241004,0,30200.62601,0,21
+241005,0,29987.78565,0,21
+241006,0,29774.52823,0,21
+241007,0,29109.51853,0,21
+241008,0,29316.96398,0,21
+241009,0,28680.13287,0,21
+241010,0,28758.00535,0,21
+241011,0,28025.21754,0,21
+241012,0,28211.94284,0,21
+241013,0,27554.33225,0,21
+241014,0,27548.15204,0,21
+241015,0,27539.34596,0,21
+241016,0,27091.26774,0,21
+241017,0,26777.67395,0,21
+241018,0,26602.43924,0,21
+241019,0,26011.76363,0,21
+241020,0,25623.50419,0,21
+241021,0,25249.04,0,21
+241022,0,24599.05608,0,21
+241023,0,24568.63011,0,21
+241024,0,23651.47715,0,21
+241025,0,23404.34012,0,21
+241026,0,22977.21702,0,21
+241027,0,22581.31113,0,21
+241028,0,21799.39723,0,21
+241029,0,21862.02915,0,21
+241030,0,20966.0058,0,21
+241031,0,20712.94611,0,21
+241032,0,20236.40947,0,21
+241033,0,19624.50524,0,21
+241034,0,19273.71891,0,21
+241035,0,18760.26548,0,21
+241036,0,18210.90518,0,21
+241037,0,17668.11482,0,21
+241038,0,17469.90386,0,21
+241039,0,16469.44698,0,21
+241040,0,16228.93324,0,21
+241041,0,15690.34074,0,21
+241042,0,15352.55481,0,21
+241043,0,14587.58301,0,21
+241044,0,13983.28135,0,21
+241045,0,13550.02403,0,21
+241046,0,13219.47277,0,21
+241047,0,12403.59497,0,21
+241048,0,11878.79292,0,21
+241049,0,11501.71851,0,21
+241050,0,10717.70161,0,21
+241051,0,10293.18653,0,21
+241052,0,10013.15193,0,21
+241053,0,9070.662272,0,21
+241054,0,8807.410941,0,21
+241055,0,8341.548254,0,21
+241056,0,7655.011559,0,21
+241057,0,7341.654042,0,21
+241058,0,6983.734458,0,21
+241059,0,6832.323263,0,21
+241060,0,6760.591032,0,21
+241061,0,6570.482472,0,21
+241062,0,6525.225157,0,21
+241063,0,6317.967032,0,21
+241064,0,6304.209821,0,21
+241065,0,6065.637149,0,21
+241066,0,6105.352538,0,21
+241067,0,5949.51767,0,21
+241068,0,5741.468137,0,21
+241069,0,5849.780348,0,21
+241070,0,5512.056512,0,21
+241071,0,5467.419051,0,21
+241072,0,5409.672849,0,21
+241073,0,5223.06979,0,21
+241074,0,5051.817899,0,21
+241075,0,5101.473716,0,21
+241076,0,4818.399819,0,21
+241077,0,4740.448072,0,21
+241078,0,4692.431809,0,21
+241079,0,4499.537995,0,21
+241080,0,4483.256886,0,21
+241081,0,4499.538199,0,21
+241082,0,4483.257098,0,21
+241083,0,4323.533374,0,21
+241084,0,4483.257288,0,21
+241085,0,4179.567011,0,21
+241086,0,4307.161464,0,21
+241087,0,4179.567182,0,21
+241088,0,4146.776322,0,21
+241089,0,4018.640056,0,21
+241090,0,4002.221369,0,21
+241091,0,4002.221449,0,21
+241092,0,3840.590481,0,21
+241093,0,3985.755481,0,21
+241094,0,3694.792706,0,21
+241095,0,3824.076407,0,21
+241096,0,3531.822151,0,21
+241097,0,3807.513242,0,21
+241098,0,3384.679313,0,21
+241099,0,3645.102227,0,21
+241100,0,3351.502904,0,21
+241101,0,3368.116178,0,21
+241102,0,3318.123119,0,21
+241103,0,3351.503078,0,21
+241104,0,3021.649304,0,21
+241105,0,3334.839145,0,21
+241106,0,2855.475911,0,21
+241107,0,3170.262672,0,21
+241108,0,2855.475997,0,21
+241109,0,2988.058227,0,21
+241110,0,2705.235454,0,21
+241111,0,2838.653507,0,21
+241112,0,2821.775863,0,21
+241113,0,2855.476215,0,21
+241114,0,2821.775945,0,21
+241115,0,2855.476302,0,21
+241116,0,2821.776027,0,21
+241117,0,2838.65395,0,21
+241118,0,2988.058846,0,21
+241119,0,2838.654042,0,21
+241120,0,2988.058946,0,21
+241121,0,3004.881629,0,21
+241122,0,2971.181348,0,21
+241123,0,3004.881731,0,21
+241124,0,3153.495088,0,21
+241125,0,2988.059196,0,21
+241126,0,3153.495199,0,21
+241127,0,3301.35608,0,21
+241128,0,3153.49531,0,21
+241129,0,3301.3562,0,21
+241130,0,3301.35626,0,21
+241131,0,3318.125045,0,21
+241132,0,3465.26824,0,21
+241133,0,3465.268306,0,21
+241134,0,3465.268372,0,21
+241135,0,3611.725034,0,21
+241136,0,3628.441002,0,21
+241137,0,3628.441074,0,21
+241138,0,3774.239305,0,21
+241139,0,3790.903476,0,21
+241140,0,3919.404647,0,21
+241141,0,7476.503988,0,21
+241142,0,8027.145242,0,21
+241143,0,8058.456475,0,21
+241144,0,8175.70611,0,21
+241145,0,8339.500795,0,21
+241146,0,8339.501752,0,21
+241147,0,8603.646607,0,21
+241148,0,8634.741081,0,21
+241149,0,8897.622338,0,21
+241150,0,8766.339179,0,21
+241151,0,9059.553465,0,21
+241152,0,9174.768095,0,21
+241153,0,9205.652429,0,21
+241154,0,9450.676592,0,21
+241155,0,9366.773233,0,21
+241156,0,9740.767572,0,21
+241157,0,9611.276807,0,21
+241158,0,9915.94401,0,21
+241159,0,9885.333218,0,21
+241160,0,10060.12517,0,21
+241161,0,10301.87551,0,21
+241162,0,10332.35736,0,21
+241163,0,10317.13502,0,21
+241164,0,10618.61839,0,21
+241165,0,10603.46062,0,21
+241166,0,10888.58021,0,21
+241167,0,10873.45435,0,21
+241168,0,11172.52032,0,21
+241169,0,11157.45743,0,21
+241170,0,11187.55764,0,21
+241171,0,11425.26679,0,21
+241172,0,11440.3024,0,21
+241173,0,11172.52949,0,21
+241174,0,11299.03016,0,21
+241175,0,11187.5669,0,21
+241176,0,11283.96921,0,21
+241177,0,11172.53694,0,21
+241178,0,11172.53882,0,21
+241179,0,10888.60294,0,21
+241180,0,11172.5426,0,21
+241181,0,10888.60653,0,21
+241182,0,10888.60834,0,21
+241183,0,10888.61015,0,21
+241184,0,10761.32889,0,21
+241185,0,10731.04347,0,21
+241186,0,10633.78292,0,21
+241187,0,10475.67883,0,21
+241188,0,10603.49918,0,21
+241189,0,10204.03503,0,21
+241190,0,10332.40176,0,21
+241191,0,10060.1716,0,21
+241192,0,10044.91647,0,21
+241193,0,9931.251561,0,21
+241194,0,9771.499955,0,21
+241195,0,9771.501448,0,21
+241196,0,9496.902981,0,21
+241197,0,9626.687922,0,21
+241198,0,9221.098793,0,21
+241199,0,9466.160341,0,21
+241200,0,8944.059011,0,21
+241201,0,9190.285805,0,21
+241202,0,8928.633965,0,21
+241203,0,8781.889185,0,21
+241204,0,8634.797699,0,21
+241205,0,8634.797979,0,21
+241206,0,8339.556769,0,21
+241207,0,8355.121859,0,21
+241208,0,8191.398226,0,21
+241209,0,8058.511148,0,21
+241210,0,7776.093433,0,21
+241211,0,7893.979555,0,21
+241212,0,7476.552946,0,21
+241213,0,7610.805721,0,21
+241214,0,7175.44362,0,21
+241215,0,7326.197817,0,21
+241216,0,7008.421359,0,21
+241217,0,6888.578825,0,21
+241218,0,6736.629467,0,21
+241219,0,6568.311673,0,21
+241220,0,6568.311806,0,21
+241221,0,6294.180977,0,21
+241222,0,6108.4332,0,21
+241223,0,5986.407069,0,21
+241224,0,5970.341539,0,21
+241225,0,5660.612841,0,21
+241226,0,5521.214591,0,21
+241227,0,5505.021348,0,21
+241228,0,5208.609724,0,21
+241229,0,5051.529107,0,21
+241230,0,5051.529169,0,21
+241231,0,4735.745152,0,21
+241232,0,4893.912414,0,21
+241233,0,4735.745258,0,21
+241234,0,4593.431735,0,21
+241235,0,4577.012679,0,21
+241236,0,4577.012722,0,21
+241237,0,4417.698393,0,21
+241238,0,4434.164883,0,21
+241239,0,4401.183856,0,21
+241240,0,4274.299585,0,21
+241241,0,4417.698537,0,21
+241242,0,4097.253511,0,21
+241243,0,4257.785066,0,21
+241244,0,4113.817184,0,21
+241245,0,4097.253591,0,21
+241246,0,4080.640105,0,21
+241247,0,4113.81726,0,21
+241248,0,3919.419403,0,21
+241249,0,3952.69727,0,21
+241250,0,3936.083778,0,21
+241251,0,3919.419462,0,21
+241252,0,3790.917664,0,21
+241253,0,3919.419497,0,21
+241254,0,3611.738134,0,21
+241255,0,3774.253375,0,21
+241256,0,3448.511695,0,21
+241257,0,3594.969207,0,21
+241258,0,3448.511717,0,21
+241259,0,3448.511728,0,21
+241260,0,3267.666915,0,21
+241261,0,3136.682965,0,21
+241262,0,3250.732439,0,21
+241263,0,2971.190838,0,21
+241264,0,2937.264845,0,21
+241265,0,2954.256547,0,21
+241266,0,2770.808495,0,21
+241267,0,2637.617738,0,21
+241268,0,2753.697401,0,21
+241269,0,2469.439318,0,21
+241270,0,2435.155374,0,21
+241271,0,2452.328237,0,21
+241272,0,2265.846513,0,21
+241273,0,2283.082914,0,21
+241274,0,2112.761243,0,21
+241275,0,2095.459468,0,21
+241276,0,2095.459437,0,21
+241277,0,1768.541905,0,21
+241278,0,1923.911641,0,21
+241279,0,1768.541857,0,21
+241280,0,1751.103661,0,21
+241281,0,1576.913574,0,21
+241282,0,1594.423177,0,21
+241283,0,1401.187718,0,21
+241284,0,1401.187688,0,21
+241285,0,1223.725906,0,21
+241286,0,1061.994415,0,21
+241287,0,1044.255324,0,21
+241288,0,1044.255275,0,21
+241289,0,862.3789938,0,21
+241290,0,686.4226832,0,21
+241291,0,844.4717221,0,21
+241292,0,601.4681683,0,21
+241293,0,659.4612304,0,21
+241294,0,592.503573,0,21
+241295,0,488.2552934,0,21
+241296,0,659.46116,0,21
+241297,0,290.4465391,0,21
+241298,0,574.5066565,0,21
+241299,0,290.4465214,0,21
+241300,0,470.1645305,0,21
+241301,0,290.4465032,0,21
+241302,0,363.9023422,0,21
+241303,0,290.4464845,0,21
+241304,0,253.9638989,0,21
+241305,0,290.4464653,0,21
+241306,0,253.9638838,0,21
+241307,0,272.2571635,0,21
+241308,0,253.9638775,0,21
+241309,0,253.9638652,0,21
+241310,0,263.1238557,0,21
+241311,0,244.7763136,0,21
+241312,0,253.9638406,0,21
+241313,0,235.5603835,0,21
+241314,0,253.9638223,0,21
+241315,0,235.5603679,0,21
+241316,0,235.5603654,0,21
+241317,0,235.560358,0,21
+241318,0,226.3151365,0,21
+241319,0,235.5603503,0,21
+241320,0,217.0396199,0,21
+241321,0,235.5603655,0,21
+241322,0,217.0396384,0,21
+241323,0,235.5603631,0,21
+241324,0,217.0396362,0,21
+241325,0,235.5603517,0,21
+241326,0,217.0396379,0,21
+241327,0,217.0396314,0,21
+241328,0,235.5603553,0,21
+241329,0,207.7327516,0,21
+241330,0,226.3151409,0,21
+241331,0,217.0396276,0,21
+241332,0,217.0396323,0,21
+241333,0,217.0396256,0,21
+241334,0,217.0396303,0,21
+241335,0,217.0396236,0,21
+241336,0,217.0396283,0,21
+241337,0,217.0396216,0,21
+241338,0,217.0396263,0,21
+241339,0,217.0396197,0,21
+241340,0,198.3933269,0,21
+241341,0,226.3151231,0,21
+241342,0,207.7327454,0,21
+241343,0,217.0396159,0,21
+241344,0,198.3933238,0,21
+241345,0,217.0396141,0,21
+241346,0,207.7327422,0,21
+241347,0,198.3933166,0,21
+241348,0,217.0396172,0,21
+241349,0,198.3933152,0,21
+241350,0,217.0396155,0,21
+241351,0,179.6116043,0,21
+241352,0,198.3933183,0,21
+241353,0,179.6116033,0,21
+241354,0,160.6826373,0,21
+241355,0,160.6826328,0,21
+241356,0,141.5918364,0,21
+241357,0,141.5918325,0,21
+241358,0,122.3208119,0,21
+241359,0,122.3208086,0,21
+241360,0,102.8455474,0,21
+241361,0,83.13322658,0,21
+241362,0,83.13322866,0,21
+241363,0,83.13322646,0,21
+241364,0,42.77678674,0,21
+241365,0,53.00838227,0,21
+241366,0,32.42038052,0,21
+241367,0,21.90587489,0,21
+241368,0,21.90587545,0,21
+241369,0,0,0,21
+241370,0,0,0,21
+241371,0,0,0,21
+241372,0,0,0,21
+241373,0,0,0,21
+241374,0,0,0,21
+241375,0,32.42037971,0,21
+241376,0,21.90587548,0,21
+241377,0,0,0,21
+241378,0,11.16970275,0,21
+241379,0,0,0,21
+241380,0,0,0,21
+241381,0,0,0,21
+241382,0,0,0,21
+241383,0,0,0,21
+241384,0,0,0,21
+241385,0,0,0,21
+241386,0,0,0,21
+241387,0,0,0,21
+241388,0,0,0,21
+241389,0,0,0,21
+241390,0,0,0,21
+241391,0,340.6472296,0,21
+241392,0,274.8848151,0,21
+241393,0,274.8848068,0,21
+241394,0,274.8848134,0,21
+241395,0,405.7421363,0,21
+241396,0,405.7421459,0,21
+241397,0,405.7421329,0,21
+241398,0,534.2726279,0,21
+241399,0,405.7421295,0,21
+241400,0,534.2726226,0,21
+241401,0,597.8278159,0,21
+241402,0,534.2726173,0,21
+241403,0,660.9683718,0,21
+241404,0,597.8278233,0,21
+241405,0,660.9683636,0,21
+241406,0,786.1348385,0,21
+241407,0,660.9683553,0,21
+241408,0,786.1348275,0,21
+241409,0,723.7279916,0,21
+241410,0,786.1348163,0,21
+241411,0,909.9815293,0,21
+241412,0,786.1348049,0,21
+241413,0,909.981514,0,21
+241414,0,909.9815352,0,21
+241415,0,909.9814992,0,21
+241416,0,1032.662038,0,21
+241417,0,909.9814843,0,21
+241418,0,1093.602745,0,21
+241419,0,1032.662023,0,21
+241420,0,1032.661977,0,21
+241421,0,1154.293885,0,21
+241422,0,1032.661952,0,21
+241423,0,1214.74643,0,21
+241424,0,1154.293859,0,21
+241425,0,1154.293804,0,21
+241426,0,1274.970274,0,21
+241427,0,1214.746396,0,21
+241428,0,1274.97021,0,21
+241429,0,1274.970233,0,21
+241430,0,1274.970232,0,21
+241431,0,1394.766969,0,21
+241432,0,1274.97019,0,21
+241433,0,1454.355609,0,21
+241434,0,1394.766915,0,21
+241435,0,1394.766938,0,21
+241436,0,1513.747042,0,21
+241437,0,1394.76686,0,21
+241438,0,1572.947708,0,21
+241439,0,1513.746976,0,21
+241440,0,1598.608463,0,21
+241441,0,0,0,21
+241442,0,0,0,21
+241443,0,0,0,21
+241444,0,0,0,21
+241445,0,0,0,21
+241446,0,0,0,21
+241447,0,0,0,21
+241448,0,0,0,21
+241449,0,0,0,21
+241450,0,0,0,21
+241451,0,0,0,21
+241452,0,0,0,21
+241453,0,0,0,21
+241454,0,0,0,21
+241455,0,0,0,21
+241456,0,0,0,21
+241457,0,0,0,21
+241458,0,0,0,21
+241459,0,0,0,21
+241460,0,0,0,21
+241461,0,0,0,21
+241462,0,0,0,21
+241463,0,0,0,21
+241464,0,0,0,21
+241465,0,0,0,21
+241466,0,0,0,21
+241467,0,0,0,21
+241468,0,0,0,21
+241469,0,0,0,21
+241470,0,0,0,21
+241471,0,0,0,21
+241472,0,0,0,21
+241473,0,0,0,21
+241474,0,0,0,21
+241475,0,0,0,21
+241476,0,0,0,21
+241477,0,0,0,21
+241478,0,0,0,21
+241479,0,0,0,21
+241480,0,0,0,21
+241481,0,0,0,21
+241482,0,0,0,21
+241483,0,0,0,21
+241484,0,0,0,21
+241485,0,0,0,21
+241486,0,0,0,21
+241487,0,0,0,21
+241488,0,0,0,21
+241489,0,0,0,21
+241490,0,0,0,21
+241491,0,0,0,21
+241492,0,0,0,21
+241493,0,0,0,21
+241494,0,0,0,21
+241495,0,0,0,21
+241496,0,0,0,21
+241497,0,0,0,21
+241498,0,0,0,21
+241499,0,0,0,21
+241500,0,0,0,21
+241501,0,0,0,21
+241502,0,0,0,21
+241503,0,0,0,21
+241504,0,0,0,21
+241505,0,0,0,21
+241506,0,0,657557.9728,21
+241507,0,368099.0942,0,21
+241508,325265.1101,0,0,21
+241509,0,0,0,21
+241510,0,0,0,21
+241511,0,0,0,21
+241512,0,0,0,21
+241513,0,0,0,21
+241514,0,0,0,21
+241515,0,0,0,21
+241516,0,0,0,21
+241517,0,0,0,21
+241518,0,0,0,21
+241519,0,0,0,21
+241520,0,0,0,21
+241521,0,0,0,21
+241522,0,0,0,21
+241523,0,0,0,21
+241524,0,0,0,21
+241525,0,0,0,21
+241526,0,0,0,21
+241527,0,0,0,21
+241528,0,0,0,21
+241529,0,0,0,21
+241530,0,0,0,21
+241531,0,0,0,21
+241532,0,0,0,21
+241533,0,0,0,21
+241534,0,0,0,21
+241535,0,0,0,21
+241536,0,0,0,21
+241537,0,0,0,21
+241538,0,0,0,21
+241539,0,0,0,21
+241540,0,0,0,21
+241541,0,0,658211.5877,21
+241542,0,0,0,21
+241543,0,369145.1388,0,21
+241544,0,0,0,21
+241545,326594.6234,0,0,21
+241546,0,0,0,21
+241547,0,0,0,21
+241548,0,0,0,21
+241549,0,0,0,21
+241550,0,0,0,21
+241551,0,0,0,21
+241552,0,0,0,21
+241553,0,0,0,21
+241554,0,0,0,21
+241555,0,0,0,21
+241556,0,0,0,21
+241557,0,0,0,21
+241558,0,0,0,21
+241559,0,0,0,21
+241560,0,0,0,21
+241561,0,0,0,21
+241562,0,0,0,21
+241563,0,0,0,21
+241564,0,0,0,21
+241565,0,0,0,21
+241566,0,0,0,21
+241567,0,0,0,21
+241568,0,0,0,21
+241569,0,0,0,21
+241570,0,0,0,21
+241571,0,0,0,21
+241572,0,0,0,21
+241573,0,0,0,21
+241574,0,0,0,21
+241575,0,0,0,21
+241576,0,0,658780.3017,21
+241577,0,0,0,21
+241578,0,0,0,21
+241579,0,369149.3505,0,21
+241580,0,0,0,21
+241581,0,0,0,21
+241582,328671.7352,0,0,21
+241583,0,0,0,21
+241584,0,0,0,21
+241585,0,0,0,21
+241586,0,0,0,21
+241587,0,0,0,21
+241588,0,0,0,21
+241589,0,0,0,21
+241590,0,0,0,21
+241591,0,0,0,21
+241592,0,0,0,21
+241593,0,0,0,21
+241594,0,0,0,21
+241595,0,0,0,21
+241596,0,0,0,21
+241597,0,0,0,21
+241598,0,0,0,21
+241599,0,0,0,21
+241600,0,0,0,21
+241601,0,0,0,21
+241602,0,0,0,21
+241603,0,0,0,21
+241604,0,0,0,21
+241605,0,0,0,21
+241606,0,0,0,21
+241607,0,0,0,21
+241608,0,0,0,21
+241609,0,0,0,21
+241610,0,0,0,21
+241611,0,0,659657.916,21
+241612,0,0,0,21
+241613,0,0,0,21
+241614,0,0,0,21
+241615,0,369149.3506,0,21
+241616,0,0,0,21
+241617,0,0,0,21
+241618,0,0,0,21
+241619,330364.878,0,0,21
+241620,0,0,0,21
+241621,0,0,0,21
+241622,0,0,0,21
+241623,0,0,0,21
+241624,0,0,0,21
+241625,0,0,0,21
+241626,0,0,0,21
+241627,0,0,0,21
+241628,0,0,0,21
+241629,0,0,0,21
+241630,0,0,0,21
+241631,0,0,0,21
+241632,0,0,0,21
+241633,0,0,0,21
+241634,0,0,0,21
+241635,0,0,0,21
+241636,0,0,0,21
+241637,0,0,0,21
+241638,0,0,0,21
+241639,0,0,0,21
+241640,0,0,0,21
+241641,0,0,0,21
+241642,0,0,0,21
+241643,0,0,0,21
+241644,0,0,0,21
+241645,0,0,0,21
+241646,0,0,660221.3953,21
+241647,0,0,0,21
+241648,0,0,0,21
+241649,0,0,0,21
+241650,0,0,0,21
+241651,0,369149.3511,0,21
+241652,0,0,0,21
+241653,0,0,0,21
+241654,0,0,0,21
+241655,0,0,0,21
+241656,332078.6622,0,0,21
+241657,0,0,0,21
+241658,0,0,0,21
+241659,0,0,0,21
+241660,0,0,0,21
+241661,0,0,0,21
+241662,0,0,0,21
+241663,0,0,0,21
+241664,0,0,0,21
+241665,0,0,0,21
+241666,0,0,0,21
+241667,0,0,0,21
+241668,0,0,0,21
+241669,0,0,0,21
+241670,0,0,0,21
+241671,0,0,0,21
+241672,0,0,0,21
+241673,0,0,0,21
+241674,0,0,0,21
+241675,0,0,0,21
+241676,0,0,0,21
+241677,0,0,0,21
+241678,0,0,0,21
+241679,0,0,0,21
+241680,0,0,0,21
+241681,0,0,659614.14,21
+241682,0,0,0,21
+241683,0,0,0,21
+241684,0,0,0,21
+241685,0,0,0,21
+241686,0,0,0,21
+241687,0,0,0,21
+241688,0,369149.3535,0,21
+241689,0,0,0,21
+241690,0,0,0,21
+241691,0,0,0,21
+241692,0,0,0,21
+241693,332387.2316,0,0,21
+241694,0,0,0,21
+241695,0,0,0,21
+241696,0,0,0,21
+241697,0,0,0,21
+241698,0,0,0,21
+241699,0,0,0,21
+241700,0,0,0,21
+241701,0,0,0,21
+241702,0,0,0,21
+241703,0,0,0,21
+241704,0,0,0,21
+241705,0,0,0,21
+241706,0,0,0,21
+241707,0,0,0,21
+241708,0,0,0,21
+241709,0,0,0,21
+241710,0,0,0,21
+241711,0,0,0,21
+241712,0,0,0,21
+241713,0,0,0,21
+241714,0,0,0,21
+241715,0,0,0,21
+241716,0,0,0,21
+241717,0,0,660001.6818,21
+241718,0,0,0,21
+241719,0,0,0,21
+241720,0,0,0,21
+241721,0,0,0,21
+241722,0,0,0,21
+241723,0,0,0,21
+241724,0,0,0,21
+241725,0,369149.3536,0,21
+241726,0,0,0,21
+241727,0,0,0,21
+241728,0,0,0,21
+241729,0,0,0,21
+241730,333913.7603,0,0,21
+241731,0,0,0,21
+241732,0,0,0,21
+241733,0,0,0,21
+241734,0,0,0,21
+241735,0,0,0,21
+241736,0,0,0,21
+241737,0,0,0,21
+241738,0,0,0,21
+241739,0,0,0,21
+241740,0,0,0,21
+241741,0,0,0,21
+241742,0,0,0,21
+241743,0,0,0,21
+241744,0,0,0,21
+241745,0,0,0,21
+241746,0,0,0,21
+241747,0,0,0,21
+241748,0,0,0,21
+241749,0,0,0,21
+241750,0,0,0,21
+241751,0,0,0,21
+241752,0,0,0,21
+241753,0,0,659666.812,21
+241754,0,0,0,21
+241755,0,0,0,21
+241756,0,0,0,21
+241757,0,0,0,21
+241758,0,0,0,21
+241759,0,0,0,21
+241760,0,0,0,21
+241761,0,0,0,21
+241762,0,369149.3536,0,21
+241763,0,0,0,21
+241764,0,0,0,21
+241765,0,0,0,21
+241766,0,0,0,21
+241767,333826.229,0,0,21
+241768,0,0,0,21
+241769,0,0,0,21
+241770,0,0,0,21
+241771,0,0,0,21
+241772,0,0,0,21
+241773,0,0,0,21
+241774,0,0,0,21
+241775,0,0,0,21
+241776,0,0,0,21
+241777,0,0,0,21
+241778,0,0,0,21
+241779,0,0,0,21
+241780,0,0,0,21
+241781,0,0,0,21
+241782,0,0,0,21
+241783,0,0,0,21
+241784,0,0,0,21
+241785,0,0,0,21
+241786,0,0,0,21
+241787,0,0,0,21
+241788,0,0,0,21
+241789,0,0,659060.8038,21
+241790,0,0,0,21
+241791,0,0,0,21
+241792,0,0,0,21
+241793,0,0,0,21
+241794,0,0,0,21
+241795,0,0,0,21
+241796,0,0,0,21
+241797,0,0,0,21
+241798,0,0,0,21
+241799,0,358320.5814,0,21
+241800,0,0,0,15.6
+241801,0,0,0,15.6
+241802,0,0,0,15.6
+241803,0,0,0,15.6
+241804,335526.5919,0,0,15.6
+241805,0,0,0,15.6
+241806,0,0,0,15.6
+241807,0,0,0,15.6
+241808,0,0,0,15.6
+241809,0,0,0,15.6
+241810,0,0,0,15.6
+241811,0,0,0,15.6
+241812,0,0,0,15.6
+241813,0,0,0,15.6
+241814,0,0,0,15.6
+241815,0,0,0,15.6
+241816,0,0,0,15.6
+241817,0,0,0,15.6
+241818,0,0,0,15.6
+241819,0,0,0,15.6
+241820,0,0,0,15.6
+241821,0,0,0,15.6
+241822,0,0,0,15.6
+241823,0,0,0,15.6
+241824,0,0,0,15.6
+241825,0,0,659438.1499,15.6
+241826,0,0,0,15.6
+241827,0,0,0,15.6
+241828,0,0,0,15.6
+241829,0,0,0,15.6
+241830,0,0,0,15.6
+241831,0,0,0,15.6
+241832,0,0,0,15.6
+241833,0,0,0,15.6
+241834,0,0,0,15.6
+241835,0,0,0,15.6
+241836,0,358193.2429,0,15.6
+241837,0,0,0,15.6
+241838,0,0,0,15.6
+241839,0,0,0,15.6
+241840,0,0,0,15.6
+241841,334592.686,0,0,15.6
+241842,0,0,0,15.6
+241843,0,0,0,15.6
+241844,0,0,0,15.6
+241845,0,0,0,15.6
+241846,0,0,0,15.6
+241847,0,0,0,15.6
+241848,0,0,0,15.6
+241849,0,0,0,15.6
+241850,0,0,0,15.6
+241851,0,0,0,15.6
+241852,0,0,0,15.6
+241853,0,0,0,15.6
+241854,0,0,0,15.6
+241855,0,0,0,15.6
+241856,0,0,0,15.6
+241857,0,0,0,15.6
+241858,0,0,0,15.6
+241859,0,0,0,15.6
+241860,0,0,0,15.6
+241861,0,0,659713.8197,15.6
+241862,0,0,0,15.6
+241863,0,0,0,15.6
+241864,0,0,0,15.6
+241865,0,0,0,15.6
+241866,0,0,0,15.6
+241867,0,0,0,15.6
+241868,0,0,0,15.6
+241869,0,0,0,15.6
+241870,0,0,0,15.6
+241871,0,0,0,15.6
+241872,0,0,0,15.6
+241873,0,358600.2405,0,15.6
+241874,0,0,0,15.6
+241875,0,0,0,15.6
+241876,0,0,0,15.6
+241877,0,0,0,15.6
+241878,336143.1727,0,0,15.6
+241879,0,0,0,15.6
+241880,0,0,0,15.6
+241881,0,0,0,15.6
+241882,0,0,0,15.6
+241883,0,0,0,15.6
+241884,0,0,0,15.6
+241885,0,0,0,15.6
+241886,0,0,0,15.6
+241887,0,0,0,15.6
+241888,0,0,0,15.6
+241889,0,0,0,15.6
+241890,0,0,0,15.6
+241891,0,0,0,15.6
+241892,0,0,0,15.6
+241893,0,0,0,15.6
+241894,0,0,0,15.6
+241895,0,0,0,15.6
+241896,0,0,0,15.6
+241897,0,0,660054.4621,15.6
+241898,0,0,0,15.6
+241899,0,0,0,15.6
+241900,0,0,0,15.6
+241901,0,0,0,15.6
+241902,0,0,0,15.6
+241903,0,0,0,15.6
+241904,0,0,0,15.6
+241905,0,0,0,15.6
+241906,0,0,0,15.6
+241907,0,0,0,15.6
+241908,0,0,0,15.6
+241909,0,0,0,15.6
+241910,0,358818.0489,0,15.6
+241911,0,0,0,15.6
+241912,0,0,0,15.6
+241913,0,0,0,15.6
+241914,0,0,0,15.6
+241915,337049.1432,0,0,15.6
+241916,0,0,0,15.6
+241917,0,0,0,15.6
+241918,0,0,0,15.6
+241919,0,0,0,15.6
+241920,0,0,0,15.6
+241921,0,0,0,15.6
+241922,0,0,0,15.6
+241923,0,0,0,15.6
+241924,0,0,0,15.6
+241925,0,0,0,15.6
+241926,0,0,0,15.6
+241927,0,0,0,15.6
+241928,0,0,0,15.6
+241929,0,0,0,15.6
+241930,0,0,0,15.6
+241931,0,0,0,15.6
+241932,0,0,0,15.6
+241933,0,0,660234.2326,15.6
+241934,0,0,0,15.6
+241935,0,0,0,15.6
+241936,0,0,0,15.6
+241937,0,0,0,15.6
+241938,0,0,0,15.6
+241939,0,0,0,15.6
+241940,0,0,0,15.6
+241941,0,0,0,15.6
+241942,0,0,0,15.6
+241943,0,0,0,15.6
+241944,0,0,0,15.6
+241945,0,0,0,15.6
+241946,0,0,0,15.6
+241947,0,358755.4797,0,15.6
+241948,0,0,0,15.6
+241949,0,0,0,15.6
+241950,0,0,0,15.6
+241951,0,0,0,15.6
+241952,0,0,0,15.6
+241953,335280.4627,0,0,15.6
+241954,0,0,0,15.6
+241955,0,0,0,15.6
+241956,0,0,0,15.6
+241957,0,0,0,15.6
+241958,0,0,0,15.6
+241959,0,0,0,15.6
+241960,0,0,0,15.6
+241961,0,0,0,15.6
+241962,0,0,0,15.6
+241963,0,0,0,15.6
+241964,0,0,0,15.6
+241965,0,0,0,15.6
+241966,0,0,0,15.6
+241967,0,0,0,15.6
+241968,0,0,0,15.6
+241969,0,0,660342.5151,15.6
+241970,0,0,0,15.6
+241971,0,0,0,15.6
+241972,0,0,0,15.6
+241973,0,0,0,15.6
+241974,0,0,0,15.6
+241975,0,0,0,15.6
+241976,0,0,0,15.6
+241977,0,0,0,15.6
+241978,0,0,0,15.6
+241979,0,0,0,15.6
+241980,0,0,0,15.6
+241981,0,0,0,15.6
+241982,0,0,0,15.6
+241983,0,0,0,15.6
+241984,0,359081.4354,0,15.6
+241985,0,0,0,15.6
+241986,0,0,0,15.6
+241987,0,0,0,15.6
+241988,0,0,0,15.6
+241989,0,0,0,15.6
+241990,0,0,0,15.6
+241991,336649.0487,0,0,15.6
+241992,0,0,0,15.6
+241993,0,0,0,15.6
+241994,0,0,0,15.6
+241995,0,0,0,15.6
+241996,0,0,0,15.6
+241997,0,0,0,15.6
+241998,0,0,0,15.6
+241999,0,0,0,15.6
+242000,0,0,0,15.6
+242001,0,0,0,15.6
+242002,0,0,0,15.6
+242003,0,0,0,15.6
+242004,0,0,0,15.6
+242005,0,0,659825.6329,15.6
+242006,0,0,0,15.6
+242007,0,0,0,15.6
+242008,0,0,0,15.6
+242009,0,0,0,15.6
+242010,0,0,0,15.6
+242011,0,0,0,15.6
+242012,0,0,0,15.6
+242013,0,0,0,15.6
+242014,0,0,0,15.6
+242015,0,0,0,15.6
+242016,0,0,0,15.6
+242017,0,0,0,15.6
+242018,0,0,0,15.6
+242019,0,0,0,15.6
+242020,0,0,0,15.6
+242021,0,369272.2359,0,15.6
+242022,0,0,0,15.6
+242023,0,0,0,15.6
+242024,0,0,0,15.6
+242025,0,0,0,15.6
+242026,0,0,0,15.6
+242027,0,0,0,15.6
+242028,0,0,0,15.6
+242029,337555.5588,0,0,15.6
+242030,0,0,0,15.6
+242031,0,0,0,15.6
+242032,0,0,0,15.6
+242033,0,0,0,15.6
+242034,0,0,0,15.6
+242035,0,0,0,15.6
+242036,0,0,0,15.6
+242037,0,0,0,15.6
+242038,0,0,0,15.6
+242039,0,0,659252.0405,15.6
+242040,0,0,0,15.6
+242041,0,0,0,15.6
+242042,0,0,0,15.6
+242043,0,0,0,15.6
+242044,0,0,0,15.6
+242045,0,0,0,15.6
+242046,0,0,0,15.6
+242047,0,0,0,15.6
+242048,0,0,0,15.6
+242049,0,0,0,15.6
+242050,0,0,0,15.6
+242051,0,0,0,15.6
+242052,0,0,0,15.6
+242053,0,0,0,15.6
+242054,0,0,0,15.6
+242055,0,0,0,15.6
+242056,0,0,0,15.6
+242057,0,0,0,15.6
+242058,0,369269.4095,0,15.6
+242059,0,0,0,15.6
+242060,0,0,0,15.6
+242061,0,0,0,15.6
+242062,0,0,0,15.6
+242063,0,0,0,15.6
+242064,0,0,0,15.6
+242065,0,0,0,15.6
+242066,0,0,0,15.6
+242067,338023.6673,0,0,15.6
+242068,0,0,0,15.6
+242069,0,0,0,15.6
+242070,0,0,0,15.6
+242071,0,0,0,15.6
+242072,0,0,0,15.6
+242073,0,0,659762.8066,15.6
+242074,0,0,0,15.6
+242075,0,0,0,15.6
+242076,0,0,0,15.6
+242077,0,0,0,15.6
+242078,0,0,0,15.6
+242079,0,0,0,15.6
+242080,0,0,0,15.6
+242081,0,0,0,15.6
+242082,0,0,0,15.6
+242083,0,0,0,15.6
+242084,0,0,0,15.6
+242085,0,0,0,15.6
+242086,0,0,0,15.6
+242087,0,0,0,15.6
+242088,0,0,0,15.6
+242089,0,0,0,15.6
+242090,0,0,0,15.6
+242091,0,0,0,15.6
+242092,0,0,0,15.6
+242093,0,0,0,15.6
+242094,0,0,0,15.6
+242095,0,369303.2246,0,15.6
+242096,0,0,0,15.6
+242097,0,0,0,15.6
+242098,0,0,0,15.6
+242099,0,0,0,15.6
+242100,0,0,0,15.6
+242101,0,0,0,15.6
+242102,0,0,0,15.6
+242103,0,0,0,15.6
+242104,0,0,0,15.6
+242105,338315.7068,0,0,15.6
+242106,0,0,0,15.6
+242107,0,0,660037.2859,15.6
+242108,0,0,0,15.6
+242109,0,0,0,15.6
+242110,0,0,0,15.6
+242111,0,0,0,15.6
+242112,0,0,0,15.6
+242113,0,0,0,15.6
+242114,0,0,0,15.6
+242115,0,0,0,15.6
+242116,0,0,0,15.6
+242117,0,0,0,15.6
+242118,0,0,0,15.6
+242119,0,0,0,15.6
+242120,0,0,0,15.6
+242121,0,0,0,15.6
+242122,0,0,0,15.6
+242123,0,0,0,15.6
+242124,0,0,0,15.6
+242125,0,0,0,15.6
+242126,0,0,0,15.6
+242127,0,0,0,15.6
+242128,0,0,0,15.6
+242129,0,0,0,15.6
+242130,0,0,0,15.6
+242131,0,369317.5899,0,15.6
+242132,0,0,0,15.6
+242133,0,0,0,15.6
+242134,0,0,0,15.6
+242135,0,0,0,15.6
+242136,0,0,0,15.6
+242137,0,0,0,15.6
+242138,0,0,0,15.6
+242139,0,0,0,15.6
+242140,338493.0931,0,0,15.6
+242141,0,0,660381.4414,15.6
+242142,0,0,0,15.6
+242143,0,0,0,15.6
+242144,0,0,0,15.6
+242145,0,0,0,15.6
+242146,0,0,0,15.6
+242147,0,0,0,15.6
+242148,0,0,0,15.6
+242149,0,0,0,15.6
+242150,0,0,0,15.6
+242151,0,0,0,15.6
+242152,0,0,0,15.6
+242153,0,0,0,15.6
+242154,0,0,0,15.6
+242155,0,0,0,15.6
+242156,0,0,0,15.6
+242157,0,0,0,15.6
+242158,0,0,0,15.6
+242159,0,0,0,15.6
+242160,0,0,0,17.8
+242161,0,0,0,17.8
+242162,0,0,0,17.8
+242163,0,0,0,17.8
+242164,0,0,0,17.8
+242165,0,0,0,17.8
+242166,0,369325.0247,0,17.8
+242167,0,0,0,17.8
+242168,0,0,0,17.8
+242169,0,0,0,17.8
+242170,0,0,0,17.8
+242171,0,0,0,17.8
+242172,0,0,0,17.8
+242173,0,0,0,17.8
+242174,0,0,0,17.8
+242175,338617.1978,0,660677.1092,17.8
+242176,0,0,0,17.8
+242177,0,0,0,17.8
+242178,0,0,0,17.8
+242179,0,0,0,17.8
+242180,0,0,0,17.8
+242181,0,0,0,17.8
+242182,0,0,0,17.8
+242183,0,0,0,17.8
+242184,0,0,0,17.8
+242185,0,0,0,17.8
+242186,0,0,0,17.8
+242187,0,0,0,17.8
+242188,0,0,0,17.8
+242189,0,0,0,17.8
+242190,0,0,0,17.8
+242191,0,0,0,17.8
+242192,0,0,0,17.8
+242193,0,0,0,17.8
+242194,0,0,0,17.8
+242195,0,0,0,17.8
+242196,0,0,0,17.8
+242197,0,0,0,17.8
+242198,0,0,0,17.8
+242199,0,0,0,17.8
+242200,0,0,0,17.8
+242201,0,369318.7161,0,17.8
+242202,0,0,0,17.8
+242203,0,0,0,17.8
+242204,0,0,0,17.8
+242205,0,0,0,17.8
+242206,0,0,0,17.8
+242207,0,0,0,17.8
+242208,0,0,0,17.8
+242209,0,0,660564.9827,17.8
+242210,338744.5116,0,0,17.8
+242211,0,0,0,17.8
+242212,0,0,0,17.8
+242213,0,0,0,17.8
+242214,0,0,0,17.8
+242215,0,0,0,17.8
+242216,0,0,0,17.8
+242217,0,0,0,17.8
+242218,0,0,0,17.8
+242219,0,0,0,17.8
+242220,0,0,0,20
+242221,0,0,0,20
+242222,0,0,0,20
+242223,0,0,0,20
+242224,0,0,0,20
+242225,0,0,0,20
+242226,0,0,0,20
+242227,0,0,0,20
+242228,0,0,0,20
+242229,0,0,0,20
+242230,0,0,0,20
+242231,0,0,0,20
+242232,0,0,0,20
+242233,0,0,0,20
+242234,0,0,0,20
+242235,0,0,0,20
+242236,0,0,0,20
+242237,0,0,0,20
+242238,0,369333.5519,0,20
+242239,0,0,0,20
+242240,0,0,0,20
+242241,0,0,0,20
+242242,0,0,0,20
+242243,0,0,0,20
+242244,0,0,0,20
+242245,0,0,660870.4082,20
+242246,0,0,0,20
+242247,0,0,0,20
+242248,337887.3695,0,0,20
+242249,0,0,0,20
+242250,0,0,0,20
+242251,0,0,0,20
+242252,0,0,0,20
+242253,0,0,0,20
+242254,0,0,0,20
+242255,0,0,0,20
+242256,0,0,0,20
+242257,0,0,0,20
+242258,0,0,0,20
+242259,0,0,0,20
+242260,0,0,0,20
+242261,0,0,0,20
+242262,0,0,0,20
+242263,0,0,0,20
+242264,0,0,0,20
+242265,0,0,0,20
+242266,0,0,0,20
+242267,0,0,0,20
+242268,0,0,0,20
+242269,0,0,0,20
+242270,0,0,0,20
+242271,0,0,0,20
+242272,0,0,0,20
+242273,0,0,0,20
+242274,0,0,0,20
+242275,0,369372.4125,0,20
+242276,0,0,0,20
+242277,0,0,0,20
+242278,0,0,0,20
+242279,0,0,0,20
+242280,0,0,0,21
+242281,0,0,659436.767,21
+242282,0,0,0,21
+242283,0,0,0,21
+242284,0,0,0,21
+242285,0,0,0,21
+242286,337864.2141,0,0,21
+242287,0,0,0,21
+242288,0,0,0,21
+242289,0,0,0,21
+242290,0,0,0,21
+242291,0,0,0,21
+242292,0,0,0,21
+242293,0,0,0,21
+242294,0,0,0,21
+242295,0,0,0,21
+242296,0,0,0,21
+242297,0,0,0,21
+242298,0,0,0,21
+242299,0,0,0,21
+242300,0,0,0,21
+242301,0,0,0,21
+242302,0,0,0,21
+242303,0,0,0,21
+242304,0,0,0,21
+242305,0,0,0,21
+242306,0,0,0,21
+242307,0,0,0,21
+242308,0,0,0,21
+242309,0,0,0,21
+242310,0,0,0,21
+242311,0,0,0,21
+242312,0,369405.5758,0,21
+242313,0,0,0,21
+242314,0,0,0,21
+242315,0,0,0,21
+242316,0,0,660143.8076,21
+242317,0,0,0,21
+242318,0,0,0,21
+242319,0,0,0,21
+242320,0,0,0,21
+242321,0,0,0,21
+242322,337246.0384,0,0,21
+242323,0,0,0,21
+242324,0,0,0,21
+242325,0,0,0,21
+242326,0,0,0,21
+242327,0,0,0,21
+242328,0,0,0,21
+242329,0,0,0,21
+242330,0,0,0,21
+242331,0,0,0,21
+242332,0,0,0,21
+242333,0,0,0,21
+242334,0,0,0,21
+242335,0,0,0,21
+242336,0,0,0,21
+242337,0,0,0,21
+242338,0,0,0,21
+242339,0,0,0,21
+242340,0,0,0,21
+242341,0,0,0,21
+242342,0,0,0,21
+242343,0,0,0,21
+242344,0,0,0,21
+242345,0,0,0,21
+242346,0,0,0,21
+242347,0,0,0,21
+242348,0,0,0,21
+242349,0,369413.3341,0,21
+242350,0,0,0,21
+242351,0,0,660564.5058,21
+242352,0,0,0,21
+242353,0,0,0,21
+242354,0,0,0,21
+242355,0,0,0,21
+242356,0,0,0,21
+242357,0,0,0,21
+242358,337235.1862,0,0,21
+242359,0,0,0,21
+242360,0,0,0,21
+242361,0,0,0,21
+242362,0,0,0,21
+242363,0,0,0,21
+242364,0,0,0,21
+242365,0,0,0,21
+242366,0,0,0,21
+242367,0,0,0,21
+242368,0,0,0,21
+242369,0,0,0,21
+242370,0,0,0,21
+242371,0,0,0,21
+242372,0,0,0,21
+242373,0,0,0,21
+242374,0,0,0,21
+242375,0,0,0,21
+242376,0,0,0,21
+242377,0,0,0,21
+242378,0,0,0,21
+242379,0,0,0,21
+242380,0,0,0,21
+242381,0,0,0,21
+242382,0,0,0,21
+242383,0,0,0,21
+242384,0,0,0,21
+242385,0,369339.9366,0,21
+242386,0,0,659258.4096,21
+242387,0,0,0,21
+242388,0,0,0,21
+242389,0,0,0,21
+242390,0,0,0,21
+242391,0,0,0,21
+242392,0,0,0,21
+242393,0,0,0,21
+242394,336715.8344,0,0,21
+242395,0,0,0,21
+242396,0,0,0,21
+242397,0,0,0,21
+242398,0,0,0,21
+242399,0,0,0,21
+242400,0,0,0,21
+242401,0,0,0,21
+242402,0,0,0,21
+242403,0,0,0,21
+242404,0,0,0,21
+242405,0,0,0,21
+242406,0,0,0,21
+242407,0,0,0,21
+242408,0,0,0,21
+242409,0,0,0,21
+242410,0,0,0,21
+242411,0,0,0,21
+242412,0,0,0,21
+242413,0,0,0,21
+242414,0,0,0,21
+242415,0,0,0,21
+242416,0,0,0,21
+242417,0,0,0,21
+242418,0,0,0,21
+242419,0,0,0,21
+242420,0,0,0,21
+242421,0,369290.5932,659253.7634,21
+242422,0,0,0,21
+242423,0,0,0,21
+242424,0,0,0,21
+242425,0,0,0,21
+242426,0,0,0,21
+242427,0,0,0,21
+242428,0,0,0,21
+242429,0,0,0,21
+242430,336652.4751,0,0,21
+242431,0,0,0,21
+242432,0,0,0,21
+242433,0,0,0,21
+242434,0,0,0,21
+242435,0,0,0,21
+242436,0,0,0,21
+242437,0,0,0,21
+242438,0,0,0,21
+242439,0,0,0,21
+242440,0,0,0,21
+242441,0,0,0,21
+242442,0,0,0,21
+242443,0,0,0,21
+242444,0,0,0,21
+242445,0,0,0,21
+242446,0,0,0,21
+242447,0,0,0,21
+242448,0,0,0,21
+242449,0,0,0,21
+242450,0,0,0,21
+242451,0,0,0,21
+242452,0,0,0,21
+242453,0,0,0,21
+242454,0,0,0,21
+242455,0,0,0,21
+242456,0,0,659529.7571,21
+242457,0,361241.8878,0,21
+242458,0,0,0,21
+242459,0,0,0,21
+242460,0,0,0,21
+242461,0,0,0,21
+242462,0,0,0,21
+242463,0,0,0,21
+242464,0,0,0,21
+242465,0,0,0,21
+242466,336430.6196,0,0,21
+242467,0,0,0,21
+242468,0,0,0,21
+242469,0,0,0,21
+242470,0,0,0,21
+242471,0,0,0,21
+242472,0,0,0,21
+242473,0,0,0,21
+242474,0,0,0,21
+242475,0,0,0,21
+242476,0,0,0,21
+242477,0,0,0,21
+242478,0,0,0,21
+242479,0,0,0,21
+242480,0,0,0,21
+242481,0,0,0,21
+242482,0,0,0,21
+242483,0,0,0,21
+242484,0,0,0,21
+242485,0,0,0,21
+242486,0,0,0,21
+242487,0,0,0,21
+242488,0,0,0,21
+242489,0,0,0,21
+242490,0,0,0,21
+242491,0,0,658762.3,21
+242492,0,0,0,21
+242493,0,360992.0062,0,21
+242494,0,0,0,21
+242495,0,0,0,21
+242496,0,0,0,21
+242497,0,0,0,21
+242498,0,0,0,21
+242499,0,0,0,21
+242500,0,0,0,21
+242501,0,0,0,21
+242502,336350.6098,0,0,21
+242503,0,0,0,21
+242504,0,0,0,21
+242505,0,0,0,21
+242506,0,0,0,21
+242507,0,0,0,21
+242508,0,0,0,21
+242509,0,0,0,21
+242510,0,0,0,21
+242511,0,0,0,21
+242512,0,0,0,21
+242513,0,0,0,21
+242514,0,0,0,21
+242515,0,0,0,21
+242516,0,0,0,21
+242517,0,0,0,21
+242518,0,0,0,21
+242519,0,0,0,21
+242520,0,0,0,21
+242521,0,0,0,21
+242522,0,0,0,21
+242523,0,0,0,21
+242524,0,0,0,21
+242525,0,0,0,21
+242526,0,0,659119.5636,21
+242527,0,0,0,21
+242528,0,0,0,21
+242529,0,0,0,21
+242530,0,361036.3263,0,21
+242531,0,0,0,21
+242532,0,0,0,21
+242533,0,0,0,21
+242534,0,0,0,21
+242535,0,0,0,21
+242536,0,0,0,21
+242537,0,0,0,21
+242538,0,0,0,21
+242539,336445.5799,0,0,21
+242540,0,0,0,21
+242541,0,0,0,21
+242542,0,0,0,21
+242543,0,0,0,21
+242544,0,0,0,21
+242545,0,0,0,21
+242546,0,0,0,21
+242547,0,0,0,21
+242548,0,0,0,21
+242549,0,0,0,21
+242550,0,0,0,21
+242551,0,0,0,21
+242552,0,0,0,21
+242553,0,0,0,21
+242554,0,0,0,21
+242555,0,0,0,21
+242556,0,0,0,21
+242557,0,0,0,21
+242558,0,0,0,21
+242559,0,0,0,21
+242560,0,0,0,21
+242561,0,0,658428.0636,21
+242562,0,0,0,21
+242563,0,0,0,21
+242564,0,0,0,21
+242565,0,0,0,21
+242566,0,0,0,21
+242567,0,361398.5967,0,21
+242568,0,0,0,21
+242569,0,0,0,21
+242570,0,0,0,21
+242571,0,0,0,21
+242572,0,0,0,21
+242573,0,0,0,21
+242574,0,0,0,21
+242575,0,0,0,21
+242576,336372.7172,0,0,21
+242577,0,0,0,21
+242578,0,0,0,21
+242579,0,0,0,21
+242580,0,0,0,21
+242581,0,0,0,21
+242582,0,0,0,21
+242583,0,0,0,21
+242584,0,0,0,21
+242585,0,0,0,21
+242586,0,0,0,21
+242587,0,0,0,21
+242588,0,0,0,21
+242589,0,0,0,21
+242590,0,0,0,21
+242591,0,0,0,21
+242592,0,0,0,21
+242593,0,0,0,21
+242594,0,0,0,21
+242595,0,0,0,21
+242596,0,0,657550.7975,21
+242597,0,0,0,21
+242598,0,0,0,21
+242599,0,0,0,21
+242600,0,0,0,21
+242601,0,0,0,21
+242602,0,0,0,21
+242603,0,0,0,21
+242604,0,360838.9939,0,21
+242605,0,0,0,21
+242606,0,0,0,21
+242607,0,0,0,21
+242608,0,0,0,21
+242609,0,0,0,21
+242610,0,0,0,21
+242611,0,0,0,21
+242612,0,0,0,21
+242613,336067.7,0,0,21
+242614,0,0,0,21
+242615,0,0,0,21
+242616,0,0,0,21
+242617,0,0,0,21
+242618,0,0,0,21
+242619,0,0,0,21
+242620,0,0,0,21
+242621,0,0,0,21
+242622,0,0,0,21
+242623,0,0,0,21
+242624,0,0,0,21
+242625,0,0,0,21
+242626,0,0,0,21
+242627,0,0,0,21
+242628,0,0,0,21
+242629,0,0,0,21
+242630,0,0,0,21
+242631,0,0,657072.0706,21
+242632,0,0,0,21
+242633,0,0,0,21
+242634,0,0,0,21
+242635,0,0,0,21
+242636,0,0,0,21
+242637,0,0,0,21
+242638,0,0,0,21
+242639,0,0,0,21
+242640,0,0,0,21
+242641,0,361916.0698,0,21
+242642,0,0,0,21
+242643,0,0,0,21
+242644,0,0,0,21
+242645,0,0,0,21
+242646,0,0,0,21
+242647,0,0,0,21
+242648,0,0,0,21
+242649,0,0,0,21
+242650,0,0,0,21
+242651,336522.9245,0,0,21
+242652,0,0,0,21
+242653,0,0,0,21
+242654,0,0,0,21
+242655,0,0,0,21
+242656,0,0,0,21
+242657,0,0,0,21
+242658,0,0,0,21
+242659,0,0,0,21
+242660,0,0,0,21
+242661,0,0,0,21
+242662,0,0,0,21
+242663,0,0,0,21
+242664,0,0,0,21
+242665,0,0,0,21
+242666,0,0,0,21
+242667,0,0,656794.6509,21
+242668,0,0,0,21
+242669,0,0,0,21
+242670,0,0,0,21
+242671,0,0,0,21
+242672,0,0,0,21
+242673,0,0,0,21
+242674,0,0,0,21
+242675,0,0,0,21
+242676,0,0,0,21
+242677,0,0,0,21
+242678,0,363452.7883,0,21
+242679,0,0,0,21
+242680,0,0,0,21
+242681,0,0,0,21
+242682,0,0,0,21
+242683,0,0,0,21
+242684,0,0,0,21
+242685,0,0,0,21
+242686,0,0,0,21
+242687,0,0,0,21
+242688,0,0,0,21
+242689,336580.5819,0,0,21
+242690,0,0,0,21
+242691,0,0,0,21
+242692,0,0,0,21
+242693,0,0,0,21
+242694,0,0,0,21
+242695,0,0,0,21
+242696,0,0,0,21
+242697,0,0,0,21
+242698,0,0,0,21
+242699,0,0,0,21
+242700,0,0,0,21
+242701,0,0,0,21
+242702,0,0,0,21
+242703,0,0,656747.8495,21
+242704,0,0,0,21
+242705,0,0,0,21
+242706,0,0,0,21
+242707,0,0,0,21
+242708,0,0,0,21
+242709,0,0,0,21
+242710,0,0,0,21
+242711,0,0,0,21
+242712,0,0,0,21
+242713,0,0,0,21
+242714,0,0,0,21
+242715,0,363638.8927,0,21
+242716,0,0,0,21
+242717,0,0,0,21
+242718,0,0,0,21
+242719,0,0,0,21
+242720,0,0,0,21
+242721,0,0,0,21
+242722,0,0,0,21
+242723,0,0,0,21
+242724,0,0,0,21
+242725,0,0,0,21
+242726,0,0,0,21
+242727,336130.359,0,0,21
+242728,0,0,0,21
+242729,0,0,0,21
+242730,0,0,0,21
+242731,0,0,0,21
+242732,0,0,0,21
+242733,0,0,0,21
+242734,0,0,0,21
+242735,0,0,0,21
+242736,0,0,0,21
+242737,0,0,0,21
+242738,0,0,656822.9723,21
+242739,0,0,0,21
+242740,0,0,0,21
+242741,0,0,0,21
+242742,0,0,0,21
+242743,0,0,0,21
+242744,0,0,0,21
+242745,0,0,0,21
+242746,0,0,0,21
+242747,0,0,0,21
+242748,0,0,0,21
+242749,0,0,0,21
+242750,0,0,0,21
+242751,0,0,0,21
+242752,0,363118.9021,0,21
+242753,0,0,0,21
+242754,0,0,0,21
+242755,0,0,0,21
+242756,0,0,0,21
+242757,0,0,0,21
+242758,0,0,0,21
+242759,0,0,0,21
+242760,0,0,0,21
+242761,0,0,0,21
+242762,0,0,0,21
+242763,0,0,0,21
+242764,0,0,0,21
+242765,336334.0638,0,0,21
+242766,0,0,0,21
+242767,0,0,0,21
+242768,0,0,0,21
+242769,0,0,0,21
+242770,0,0,0,21
+242771,0,0,0,21
+242772,0,0,0,21
+242773,0,0,656830.6183,21
+242774,0,0,0,21
+242775,0,0,0,21
+242776,0,0,0,21
+242777,0,0,0,21
+242778,0,0,0,21
+242779,0,0,0,21
+242780,0,0,0,21
+242781,0,0,0,21
+242782,0,0,0,21
+242783,0,0,0,21
+242784,0,0,0,21
+242785,0,0,0,21
+242786,0,0,0,21
+242787,0,0,0,21
+242788,0,0,0,21
+242789,0,369313.4627,0,21
+242790,0,0,0,21
+242791,0,0,0,21
+242792,0,0,0,21
+242793,0,0,0,21
+242794,0,0,0,21
+242795,0,0,0,21
+242796,0,0,0,21
+242797,0,0,0,21
+242798,0,0,0,21
+242799,0,0,0,21
+242800,0,0,0,21
+242801,336084.1399,0,0,21
+242802,0,0,0,21
+242803,0,0,0,21
+242804,0,0,0,21
+242805,0,0,0,21
+242806,0,0,0,21
+242807,0,0,0,21
+242808,0,0,656597.0505,21
+242809,0,0,0,21
+242810,0,0,0,21
+242811,0,0,0,21
+242812,0,0,0,21
+242813,0,0,0,21
+242814,0,0,0,21
+242815,0,0,0,21
+242816,0,0,0,21
+242817,0,0,0,21
+242818,0,0,0,21
+242819,0,0,0,21
+242820,0,0,0,21
+242821,0,0,0,21
+242822,0,0,0,21
+242823,0,0,0,21
+242824,0,0,0,21
+242825,0,0,0,21
+242826,0,360544.5836,0,21
+242827,0,0,0,21
+242828,0,0,0,21
+242829,0,0,0,21
+242830,0,0,0,21
+242831,0,0,0,21
+242832,0,0,0,21
+242833,0,0,0,21
+242834,0,0,0,21
+242835,0,0,0,21
+242836,0,0,0,21
+242837,335953.717,0,0,21
+242838,0,0,0,21
+242839,0,0,0,21
+242840,0,0,0,21
+242841,0,0,0,21
+242842,0,0,0,21
+242843,0,0,655898.1971,21
+242844,0,0,0,21
+242845,0,0,0,21
+242846,0,0,0,21
+242847,0,0,0,21
+242848,0,0,0,21
+242849,0,0,0,21
+242850,0,0,0,21
+242851,0,0,0,21
+242852,0,0,0,21
+242853,0,0,0,21
+242854,0,0,0,21
+242855,0,0,0,21
+242856,0,0,0,21
+242857,0,0,0,21
+242858,0,0,0,21
+242859,0,0,0,21
+242860,0,0,0,21
+242861,0,0,0,21
+242862,0,0,0,21
+242863,0,362395.7001,0,21
+242864,0,0,0,21
+242865,0,0,0,21
+242866,0,0,0,21
+242867,0,0,0,21
+242868,0,0,0,21
+242869,0,0,0,21
+242870,0,0,0,21
+242871,0,0,0,21
+242872,0,0,0,21
+242873,335712.0315,0,0,21
+242874,0,0,0,21
+242875,0,0,0,21
+242876,0,0,0,21
+242877,0,0,0,21
+242878,0,0,656246.582,21
+242879,0,0,0,21
+242880,0,0,0,21
+242881,0,0,0,21
+242882,0,0,0,21
+242883,0,0,0,21
+242884,0,0,0,21
+242885,0,0,0,21
+242886,0,0,0,21
+242887,0,0,0,21
+242888,0,0,0,21
+242889,0,0,0,21
+242890,0,0,0,21
+242891,0,0,0,21
+242892,0,0,0,21
+242893,0,0,0,21
+242894,0,0,0,21
+242895,0,0,0,21
+242896,0,0,0,21
+242897,0,0,0,21
+242898,0,0,0,21
+242899,0,0,0,21
+242900,0,363482.8902,0,21
+242901,0,0,0,21
+242902,0,0,0,21
+242903,0,0,0,21
+242904,0,0,0,21
+242905,0,0,0,21
+242906,0,0,0,21
+242907,0,0,0,21
+242908,0,0,0,21
+242909,335695.203,0,0,21
+242910,0,0,0,21
+242911,0,0,0,21
+242912,0,0,0,21
+242913,0,0,656168.8729,21
+242914,0,0,0,21
+242915,0,0,0,21
+242916,0,0,0,21
+242917,0,0,0,21
+242918,0,0,0,21
+242919,0,0,0,21
+242920,0,0,0,21
+242921,0,0,0,21
+242922,0,0,0,21
+242923,0,0,0,21
+242924,0,0,0,21
+242925,0,0,0,21
+242926,0,0,0,21
+242927,0,0,0,21
+242928,0,0,0,21
+242929,0,0,0,21
+242930,0,0,0,21
+242931,0,0,0,21
+242932,0,0,0,21
+242933,0,0,0,21
+242934,0,0,0,21
+242935,0,0,0,21
+242936,0,364104.1218,0,21
+242937,0,0,0,21
+242938,0,0,0,21
+242939,0,0,0,21
+242940,0,0,0,21
+242941,0,0,0,21
+242942,0,0,0,21
+242943,0,0,0,21
+242944,0,0,0,21
+242945,0,0,0,21
+242946,336090.4106,0,0,21
+242947,0,0,0,21
+242948,0,0,655702.5247,21
+242949,0,0,0,21
+242950,0,0,0,21
+242951,0,0,0,21
+242952,0,0,0,21
+242953,0,0,0,21
+242954,0,0,0,21
+242955,0,0,0,21
+242956,0,0,0,21
+242957,0,0,0,21
+242958,0,0,0,21
+242959,0,0,0,21
+242960,0,0,0,21
+242961,0,0,0,21
+242962,0,0,0,21
+242963,0,0,0,21
+242964,0,0,0,21
+242965,0,0,0,21
+242966,0,0,0,21
+242967,0,0,0,21
+242968,0,0,0,21
+242969,0,0,0,21
+242970,0,0,0,21
+242971,0,0,0,21
+242972,0,0,0,21
+242973,0,363007.1535,0,21
+242974,0,0,0,21
+242975,0,0,0,21
+242976,0,0,0,21
+242977,0,0,0,21
+242978,0,0,0,21
+242979,0,0,0,21
+242980,0,0,0,21
+242981,0,0,0,21
+242982,0,0,0,21
+242983,336016.4517,0,656326.2231,21
+242984,0,0,0,21
+242985,0,0,0,21
+242986,0,0,0,21
+242987,0,0,0,21
+242988,0,0,0,21
+242989,0,0,0,21
+242990,0,0,0,21
+242991,0,0,0,21
+242992,0,0,0,21
+242993,0,0,0,21
+242994,0,0,0,21
+242995,0,0,0,21
+242996,0,0,0,21
+242997,0,0,0,21
+242998,0,0,0,21
+242999,0,0,0,21
+243000,0,0,0,21
+243001,0,0,0,21
+243002,0,0,0,21
+243003,0,0,0,21
+243004,0,0,0,21
+243005,0,0,0,21
+243006,0,0,0,21
+243007,0,0,0,21
+243008,0,0,0,21
+243009,0,0,0,21
+243010,0,362503.3362,0,21
+243011,0,0,0,21
+243012,0,0,0,21
+243013,0,0,0,21
+243014,0,0,0,21
+243015,0,0,0,21
+243016,0,0,0,21
+243017,0,0,0,21
+243018,0,0,656914.9099,21
+243019,0,0,0,21
+243020,335958.7422,0,0,21
+243021,0,0,0,21
+243022,0,0,0,21
+243023,0,0,0,21
+243024,0,0,0,21
+243025,0,0,0,21
+243026,0,0,0,21
+243027,0,0,0,21
+243028,0,0,0,21
+243029,0,0,0,21
+243030,0,0,0,21
+243031,0,0,0,21
+243032,0,0,0,21
+243033,0,0,0,21
+243034,0,0,0,21
+243035,0,0,0,21
+243036,0,0,0,21
+243037,0,0,0,21
+243038,0,0,0,21
+243039,0,0,0,21
+243040,0,0,0,21
+243041,0,0,0,21
+243042,0,0,0,21
+243043,0,0,0,21
+243044,0,0,0,21
+243045,0,0,0,21
+243046,0,0,0,21
+243047,0,362958.6133,0,21
+243048,0,0,0,21
+243049,0,0,0,21
+243050,0,0,0,21
+243051,0,0,0,21
+243052,0,0,0,21
+243053,0,0,657327.7616,21
+243054,0,0,0,21
+243055,0,0,0,21
+243056,0,0,0,21
+243057,336005.8092,0,0,21
+243058,0,0,0,21
+243059,0,0,0,21
+243060,0,0,0,21
+243061,0,0,0,21
+243062,0,0,0,21
+243063,0,0,0,21
+243064,0,0,0,21
+243065,0,0,0,21
+243066,0,0,0,21
+243067,0,0,0,21
+243068,0,0,0,21
+243069,0,0,0,21
+243070,0,0,0,21
+243071,0,0,0,21
+243072,0,0,0,21
+243073,0,0,0,21
+243074,0,0,0,21
+243075,0,0,0,21
+243076,0,0,0,21
+243077,0,0,0,21
+243078,0,0,0,21
+243079,0,0,0,21
+243080,0,0,0,21
+243081,0,0,0,21
+243082,0,0,0,21
+243083,0,0,0,21
+243084,0,362120.3073,0,21
+243085,0,0,0,21
+243086,0,0,0,21
+243087,0,0,0,21
+243088,0,0,657697.978,21
+243089,0,0,0,21
+243090,0,0,0,21
+243091,0,0,0,21
+243092,0,0,0,21
+243093,0,0,0,21
+243094,335750.9063,0,0,21
+243095,0,0,0,21
+243096,0,0,0,21
+243097,0,0,0,21
+243098,0,0,0,21
+243099,0,0,0,21
+243100,0,0,0,21
+243101,0,0,0,21
+243102,0,0,0,21
+243103,0,0,0,21
+243104,0,0,0,21
+243105,0,0,0,21
+243106,0,0,0,21
+243107,0,0,0,21
+243108,0,0,0,21
+243109,0,0,0,21
+243110,0,0,0,21
+243111,0,0,0,21
+243112,0,0,0,21
+243113,0,0,0,21
+243114,0,0,0,21
+243115,0,0,0,21
+243116,0,0,0,21
+243117,0,0,0,21
+243118,0,0,0,21
+243119,0,0,0,21
+243120,0,0,0,21
+243121,0,362553.8558,0,21
+243122,0,0,0,21
+243123,0,0,657360.0664,21
+243124,0,0,0,21
+243125,0,0,0,21
+243126,0,0,0,21
+243127,0,0,0,21
+243128,0,0,0,21
+243129,0,0,0,21
+243130,0,0,0,21
+243131,0,0,0,21
+243132,0,0,0,21
+243133,335885.7789,0,0,21
+243134,0,0,0,21
+243135,0,0,0,21
+243136,0,0,0,21
+243137,0,0,0,21
+243138,0,0,0,21
+243139,0,0,0,21
+243140,0,0,0,21
+243141,0,0,0,21
+243142,0,0,0,21
+243143,0,0,0,21
+243144,0,0,0,21
+243145,0,0,0,21
+243146,0,0,0,21
+243147,0,0,0,21
+243148,0,0,0,21
+243149,0,0,0,21
+243150,0,0,0,21
+243151,0,0,0,21
+243152,0,0,0,21
+243153,0,0,0,21
+243154,0,0,0,21
+243155,0,0,0,21
+243156,0,0,0,21
+243157,0,0,0,21
+243158,0,0,0,21
+243159,0,362116.0896,657869.132,21
+243160,0,0,0,21
+243161,0,0,0,21
+243162,0,0,0,21
+243163,0,0,0,21
+243164,0,0,0,21
+243165,0,0,0,21
+243166,0,0,0,21
+243167,0,0,0,21
+243168,0,0,0,21
+243169,0,0,0,21
+243170,0,0,0,21
+243171,0,0,0,21
+243172,336778.2454,0,0,21
+243173,0,0,0,21
+243174,0,0,0,21
+243175,0,0,0,21
+243176,0,0,0,21
+243177,0,0,0,21
+243178,0,0,0,21
+243179,0,0,0,21
+243180,0,0,0,21
+243181,0,0,0,21
+243182,0,0,0,21
+243183,0,0,0,21
+243184,0,0,0,21
+243185,0,0,0,21
+243186,0,0,0,21
+243187,0,0,0,21
+243188,0,0,0,21
+243189,0,0,0,21
+243190,0,0,0,21
+243191,0,0,0,21
+243192,0,0,0,21
+243193,0,0,0,21
+243194,0,0,657999.4089,21
+243195,0,0,0,21
+243196,0,0,0,21
+243197,0,361484.4128,0,21
+243198,0,0,0,21
+243199,0,0,0,21
+243200,0,0,0,21
+243201,0,0,0,21
+243202,0,0,0,21
+243203,0,0,0,21
+243204,0,0,0,21
+243205,0,0,0,21
+243206,0,0,0,21
+243207,0,0,0,21
+243208,0,0,0,21
+243209,337780.7184,0,0,21
+243210,0,0,0,21
+243211,0,0,0,21
+243212,0,0,0,21
+243213,0,0,0,21
+243214,0,0,0,21
+243215,0,0,0,21
+243216,0,0,0,21
+243217,0,0,0,21
+243218,0,0,0,21
+243219,0,0,0,21
+243220,0,0,0,21
+243221,0,0,0,21
+243222,0,0,0,21
+243223,0,0,0,21
+243224,0,0,0,21
+243225,0,0,0,21
+243226,0,0,0,21
+243227,0,0,0,21
+243228,0,0,0,21
+243229,0,0,658044.1062,21
+243230,0,0,0,21
+243231,0,0,0,21
+243232,0,0,0,21
+243233,0,0,0,21
+243234,0,364778.908,0,21
+243235,0,0,0,21
+243236,0,0,0,21
+243237,0,0,0,21
+243238,0,0,0,21
+243239,0,0,0,21
+243240,0,0,0,15.6
+243241,0,0,0,15.6
+243242,0,0,0,15.6
+243243,0,0,0,15.6
+243244,0,0,0,15.6
+243245,0,0,0,15.6
+243246,338249.3078,0,0,15.6
+243247,0,0,0,15.6
+243248,0,0,0,15.6
+243249,0,0,0,15.6
+243250,0,0,0,15.6
+243251,0,0,0,15.6
+243252,0,0,0,15.6
+243253,0,0,0,15.6
+243254,0,0,0,15.6
+243255,0,0,0,15.6
+243256,0,0,0,15.6
+243257,0,0,0,15.6
+243258,0,0,0,15.6
+243259,0,0,0,15.6
+243260,0,0,0,15.6
+243261,0,0,0,15.6
+243262,0,0,0,15.6
+243263,0,0,0,15.6
+243264,0,0,658096.8379,15.6
+243265,0,0,0,15.6
+243266,0,0,0,15.6
+243267,0,0,0,15.6
+243268,0,0,0,15.6
+243269,0,0,0,15.6
+243270,0,0,0,15.6
+243271,0,366098.6019,0,15.6
+243272,0,0,0,15.6
+243273,0,0,0,15.6
+243274,0,0,0,15.6
+243275,0,0,0,15.6
+243276,0,0,0,15.6
+243277,0,0,0,15.6
+243278,0,0,0,15.6
+243279,0,0,0,15.6
+243280,0,0,0,15.6
+243281,0,0,0,15.6
+243282,0,0,0,15.6
+243283,338520.873,0,0,15.6
+243284,0,0,0,15.6
+243285,0,0,0,15.6
+243286,0,0,0,15.6
+243287,0,0,0,15.6
+243288,0,0,0,15.6
+243289,0,0,0,15.6
+243290,0,0,0,15.6
+243291,0,0,0,15.6
+243292,0,0,0,15.6
+243293,0,0,0,15.6
+243294,0,0,0,15.6
+243295,0,0,0,15.6
+243296,0,0,0,15.6
+243297,0,0,0,15.6
+243298,0,0,0,15.6
+243299,0,0,658245.2315,15.6
+243300,0,0,0,15.6
+243301,0,0,0,15.6
+243302,0,0,0,15.6
+243303,0,0,0,15.6
+243304,0,0,0,15.6
+243305,0,0,0,15.6
+243306,0,366598.552,0,15.6
+243307,0,0,0,15.6
+243308,0,0,0,15.6
+243309,0,0,0,15.6
+243310,0,0,0,15.6
+243311,0,0,0,15.6
+243312,0,0,0,15.6
+243313,0,0,0,15.6
+243314,0,0,0,15.6
+243315,0,0,0,15.6
+243316,0,0,0,15.6
+243317,0,0,0,15.6
+243318,0,0,0,15.6
+243319,338660.9815,0,0,15.6
+243320,0,0,0,15.6
+243321,0,0,0,15.6
+243322,0,0,0,15.6
+243323,0,0,0,15.6
+243324,0,0,0,15.6
+243325,0,0,0,15.6
+243326,0,0,0,15.6
+243327,0,0,0,15.6
+243328,0,0,0,15.6
+243329,0,0,0,15.6
+243330,0,0,0,15.6
+243331,0,0,0,15.6
+243332,0,0,0,15.6
+243333,0,0,0,15.6
+243334,0,0,658505.5132,15.6
+243335,0,0,0,15.6
+243336,0,0,0,15.6
+243337,0,0,0,15.6
+243338,0,0,0,15.6
+243339,0,0,0,15.6
+243340,0,0,0,15.6
+243341,0,369255.7476,0,15.6
+243342,0,0,0,15.6
+243343,0,0,0,15.6
+243344,0,0,0,15.6
+243345,0,0,0,15.6
+243346,0,0,0,15.6
+243347,0,0,0,15.6
+243348,0,0,0,15.6
+243349,0,0,0,15.6
+243350,0,0,0,15.6
+243351,0,0,0,15.6
+243352,0,0,0,15.6
+243353,0,0,0,15.6
+243354,0,0,0,15.6
+243355,338766.0469,0,0,15.6
+243356,0,0,0,15.6
+243357,0,0,0,15.6
+243358,0,0,0,15.6
+243359,0,0,0,15.6
+243360,0,0,0,15.6
+243361,0,0,0,15.6
+243362,0,0,0,15.6
+243363,0,0,0,15.6
+243364,0,0,0,15.6
+243365,0,0,0,15.6
+243366,0,0,0,15.6
+243367,0,0,0,15.6
+243368,0,0,0,15.6
+243369,0,0,658456.5633,15.6
+243370,0,0,0,15.6
+243371,0,0,0,15.6
+243372,0,0,0,15.6
+243373,0,0,0,15.6
+243374,0,0,0,15.6
+243375,0,0,0,15.6
+243376,0,369239.0279,0,15.6
+243377,0,0,0,15.6
+243378,0,0,0,15.6
+243379,0,0,0,15.6
+243380,0,0,0,15.6
+243381,0,0,0,15.6
+243382,0,0,0,15.6
+243383,0,0,0,15.6
+243384,0,0,0,15.6
+243385,0,0,0,15.6
+243386,0,0,0,15.6
+243387,0,0,0,15.6
+243388,0,0,0,15.6
+243389,0,0,0,15.6
+243390,0,0,0,15.6
+243391,338887.8793,0,0,15.6
+243392,0,0,0,15.6
+243393,0,0,0,15.6
+243394,0,0,0,15.6
+243395,0,0,0,15.6
+243396,0,0,0,15.6
+243397,0,0,0,15.6
+243398,0,0,0,15.6
+243399,0,3.140809364,0,15.6
+243400,0,0,0,15.6
+243401,0,436782.5374,0,15.6
+243402,0,0,0,15.6
+243403,0,0,0,15.6
+243404,0,0,657516.3772,15.6
+243405,0,0,0,15.6
+243406,0,0,0,15.6
+243407,0,0,0,15.6
+243408,0,0,0,15.6
+243409,0,0,0,15.6
+243410,0,435187.5015,0,15.6
+243411,0,369211.4272,0,15.6
+243412,0,0,0,15.6
+243413,0,0,0,15.6
+243414,0,0,0,15.6
+243415,0,0,0,15.6
+243416,0,0,0,15.6
+243417,0,0,0,15.6
+243418,0,0,0,15.6
+243419,0,0,0,15.6
+243420,0,0,0,15.6
+243421,0,0,0,15.6
+243422,0,0,0,15.6
+243423,0,0,0,15.6
+243424,0,0,0,15.6
+243425,0,0,0,15.6
+243426,0,0,0,15.6
+243427,338988.8826,0,0,15.6
+243428,0,0,0,15.6
+243429,0,0,0,15.6
+243430,0,0,0,15.6
+243431,0,0,0,15.6
+243432,0,0,0,15.6
+243433,0,0,0,15.6
+243434,0,0,0,15.6
+243435,0,0,0,15.6
+243436,0,0,0,15.6
+243437,0,0,0,15.6
+243438,0,0,0,15.6
+243439,0,0,658451.6267,15.6
+243440,0,0,0,15.6
+243441,0,0,0,15.6
+243442,0,0,0,15.6
+243443,0,0,0,15.6
+243444,0,0,0,15.6
+243445,0,0,0,15.6
+243446,0,369155.9401,0,15.6
+243447,0,0,0,15.6
+243448,0,0,0,15.6
+243449,0,0,0,15.6
+243450,0,0,0,15.6
+243451,0,0,0,15.6
+243452,0,0,0,15.6
+243453,0,0,0,15.6
+243454,0,0,0,15.6
+243455,0,0,0,15.6
+243456,0,0,0,15.6
+243457,0,0,0,15.6
+243458,0,0,0,15.6
+243459,0,0,0,15.6
+243460,0,7.745831925,0,15.6
+243461,0,0,0,15.6
+243462,0,4.201241558,0,15.6
+243463,339054.4781,0,0,15.6
+243464,0,0,0,15.6
+243465,0,0,0,15.6
+243466,0,0,0,15.6
+243467,0,0,0,15.6
+243468,0,0,0,15.6
+243469,0,0,0,15.6
+243470,0,0,0,15.6
+243471,0,0,0,15.6
+243472,0,0,0,15.6
+243473,0,0,0,15.6
+243474,0,0,659240.0352,15.6
+243475,0,0,0,15.6
+243476,0,0,0,15.6
+243477,0,0,0,15.6
+243478,0,0,0,15.6
+243479,0,0,0,15.6
+243480,0,0,0,15.6
+243481,0,369095.6851,0,15.6
+243482,0,0,0,15.6
+243483,0,0,0,15.6
+243484,0,0,0,15.6
+243485,0,0,0,15.6
+243486,0,0,0,15.6
+243487,0,0,0,15.6
+243488,0,0,0,15.6
+243489,0,0,0,15.6
+243490,0,0,0,15.6
+243491,0,0,0,15.6
+243492,0,0,0,15.6
+243493,0,0,0,15.6
+243494,0,0,0,15.6
+243495,0,0,0,15.6
+243496,0,0,0,15.6
+243497,0,0,0,15.6
+243498,0,0,0,15.6
+243499,339071.0075,0,0,15.6
+243500,0,0,0,15.6
+243501,0,0,0,15.6
+243502,0,0,0,15.6
+243503,0,0,0,15.6
+243504,0,0,0,15.6
+243505,0,0,0,15.6
+243506,0,0,0,15.6
+243507,0,0,0,15.6
+243508,0,0,0,15.6
+243509,0,0,659736.4454,15.6
+243510,0,0,0,15.6
+243511,0,0,0,15.6
+243512,0,0,0,15.6
+243513,0,0,0,15.6
+243514,0,0,0,15.6
+243515,0,0,0,15.6
+243516,0,369098.9642,0,15.6
+243517,0,0,0,15.6
+243518,0,0,0,15.6
+243519,0,0,0,15.6
+243520,0,0,0,15.6
+243521,0,0,0,15.6
+243522,0,3.731379821,0,15.6
+243523,0,0,0,15.6
+243524,0,0,0,15.6
+243525,0,253.979944,0,15.6
+243526,0,0,0,15.6
+243527,0,0,0,15.6
+243528,0,0,0,15.6
+243529,0,0,0,15.6
+243530,0,0,0,15.6
+243531,0,0,0,15.6
+243532,0,0,0,15.6
+243533,0,0,0,15.6
+243534,0,0,0,15.6
+243535,339121.7561,0,0,15.6
+243536,0,0,0,15.6
+243537,0,267.0501441,0,15.6
+243538,0,0,0,15.6
+243539,0,0,0,15.6
+243540,0,0,0,15.6
+243541,0,0,0,15.6
+243542,0,0,0,15.6
+243543,0,0,0,15.6
+243544,0,0,660037.9666,15.6
+243545,0,0,0,15.6
+243546,0,0,0,15.6
+243547,0,0,0,15.6
+243548,0,0,0,15.6
+243549,0,0,0,15.6
+243550,0,0,0,15.6
+243551,0,369323.8709,0,15.6
+243552,0,0,0,15.6
+243553,0,0,0,15.6
+243554,0,0,0,15.6
+243555,0,0,0,15.6
+243556,0,0,0,15.6
+243557,0,0,0,15.6
+243558,0,0,0,15.6
+243559,0,0,0,15.6
+243560,0,0,0,15.6
+243561,0,0,0,15.6
+243562,0,4.127117451,0,15.6
+243563,0,0,0,15.6
+243564,0,68.26291999,0,15.6
+243565,0,0,0,15.6
+243566,0,0,0,15.6
+243567,0,0,0,15.6
+243568,0,0,0,15.6
+243569,0,0,0,15.6
+243570,0,0,0,15.6
+243571,339168.3614,0,0,15.6
+243572,0,0,0,15.6
+243573,0,0,0,15.6
+243574,0,0,0,15.6
+243575,0,0,0,15.6
+243576,0,0,0,15.6
+243577,0,0,0,15.6
+243578,0,3.026540156,0,15.6
+243579,0,0,660253.5133,15.6
+243580,0,0,0,15.6
+243581,0,254.043807,0,15.6
+243582,0,0,0,15.6
+243583,0,0,0,15.6
+243584,0,0,0,15.6
+243585,0,0,0,15.6
+243586,0,369036.3426,0,15.6
+243587,0,0,0,15.6
+243588,0,0,0,15.6
+243589,0,0,0,15.6
+243590,0,0,0,15.6
+243591,0,0,0,15.6
+243592,0,0,0,15.6
+243593,0,0,0,15.6
+243594,0,0,0,15.6
+243595,0,0,0,15.6
+243596,0,0,0,15.6
+243597,0,0,0,15.6
+243598,0,0,0,15.6
+243599,0,0,0,15.6
+243600,0,0,0,17.8
+243601,0,116583.7465,0,17.8
+243602,0,0,0,17.8
+243603,0,585.1542209,0,17.8
+243604,0,20944.41624,0,17.8
+243605,0,29631.34777,0,17.8
+243606,0,19373.89248,0,17.8
+243607,339150.1644,22347.29745,0,17.8
+243608,0,23077.54391,0,17.8
+243609,0,23295.96158,0,17.8
+243610,0,23495.66665,0,17.8
+243611,0,24200.22929,0,17.8
+243612,0,23875.86087,0,17.8
+243613,0,24775.58125,0,17.8
+243614,0,24632.45257,660367.6071,17.8
+243615,0,25311.83608,0,17.8
+243616,0,25366.08549,0,17.8
+243617,0,25526.21625,0,17.8
+243618,0,26094.99462,0,17.8
+243619,0,805.0850147,0,17.8
+243620,0,823.0694791,0,17.8
+243621,0,369846.6042,0,17.8
+243622,0,858.8942185,0,17.8
+243623,0,0,0,17.8
+243624,0,0,0,17.8
+243625,0,0,0,17.8
+243626,0,0,0,17.8
+243627,0,0,0,17.8
+243628,0,0,0,17.8
+243629,0,0,0,17.8
+243630,0,0,0,17.8
+243631,0,0,0,17.8
+243632,0,0,0,17.8
+243633,0,0,0,17.8
+243634,0,3508.063584,0,17.8
+243635,0,47375.5674,0,17.8
+243636,0,18090.7348,0,17.8
+243637,0,27677.96134,0,17.8
+243638,0,27852.45836,0,17.8
+243639,0,28485.7355,0,17.8
+243640,0,28374.31931,0,17.8
+243641,0,28583.55726,0,17.8
+243642,0,28929.57577,0,17.8
+243643,339146.996,29274.55064,0,17.8
+243644,0,31336.61121,0,17.8
+243645,0,33618.23347,0,17.8
+243646,0,32592.34966,0,17.8
+243647,0,33550.33889,0,17.8
+243648,0,33961.09734,0,17.8
+243649,0,34462.51861,660349.9656,17.8
+243650,0,34884.9219,0,17.8
+243651,0,35377.95431,0,17.8
+243652,0,35522.72587,0,17.8
+243653,0,45637.6865,0,17.8
+243654,0,40666.9146,0,17.8
+243655,0,42201.96871,0,17.8
+243656,0,411554.785,0,17.8
+243657,0,45191.01911,0,17.8
+243658,0,43746.7551,0,17.8
+243659,0,44594.94411,0,17.8
+243660,0,7331.167415,0,20
+243661,0,626550.3328,0,20
+243662,0,0,0,20
+243663,0,9212.934561,0,20
+243664,0,132211.1488,0,20
+243665,0,143394.3257,0,20
+243666,0,101789.6544,0,20
+243667,0,113591.225,0,20
+243668,2859.965247,113646.5195,0,20
+243669,11352.31944,113802.8232,0,20
+243670,15220.43743,112891.091,0,20
+243671,11436.78073,113462.2455,0,20
+243672,13450.29764,112426.7033,0,20
+243673,13898.65504,112385.1587,0,20
+243674,13985.68413,112202.9397,0,20
+243675,15116.47071,111859.8946,0,20
+243676,14711.74939,111952.0596,0,20
+243677,15349.87289,111320.6662,0,20
+243678,15466.95362,111499.6271,0,20
+243679,15650.90291,110937.8825,0,20
+243680,16091.57753,110993.3684,0,20
+243681,16132.92607,110485.8156,0,20
+243682,16374.52739,110544.2281,0,20
+243683,16640.49633,110144.2177,0,20
+243684,16879.6175,110390.2847,0,20
+243685,16906.59,109943.1887,0,20
+243686,17353.60736,109574.5747,0,20
+243687,17395.55423,109541.7762,0,20
+243688,17643.74294,109293.451,0,20
+243689,17683.61838,108734.7465,0,20
+243690,18102.29027,109355.0143,0,20
+243691,18139.44684,108329.1246,0,20
+243692,18292.4946,108543.7897,0,20
+243693,18499.96978,108164.2319,0,20
+243694,18660.66674,107797.0335,0,20
+243695,18662.77236,107720.1803,0,20
+243696,19099.15092,107716.9373,0,20
+243697,18933.11372,106765.2024,0,20
+243698,19164.85361,107199.8722,0,20
+243699,19236.56769,106591.9302,0,20
+243700,20964.22618,106380.9215,0,20
+243701,20628.45134,106126.6537,0,20
+243702,21130.02722,106295.6376,0,20
+243703,21304.4182,105203.648,0,20
+243704,21799.1042,105785.9587,0,20
+243705,22020.99697,105233.6625,0,20
+243706,22144.66874,104824.0035,0,20
+243707,22660.08142,104845.6917,0,20
+243708,22769.78086,104154.2242,0,20
+243709,23041.19951,104524.2446,0,20
+243710,23389.37093,103784.3857,0,20
+243711,23606.09223,103676.3768,0,20
+243712,23656.39785,103674.7769,0,20
+243713,24299.55482,102913.3285,0,20
+243714,24112.14188,103039.9351,0,20
+243715,24811.80938,102831.2843,0,20
+243716,24809.25855,102481.8695,0,20
+243717,25095.677,102223.4741,0,20
+243718,25256.19239,101940.4791,0,20
+243719,25570.91261,101673.3824,0,20
+243720,25622.52877,101542.9235,0,21
+243721,22355.62614,95098.87516,0,21
+243722,21811.55485,93614.82608,0,21
+243723,22016.64447,93740.62511,0,21
+243724,22258.11436,92574.55962,0,21
+243725,22259.27689,92590.02042,0,21
+243726,22245.04387,92367.567,0,21
+243727,22417.622,91604.18779,0,21
+243728,22499.13797,91458.41129,0,21
+243729,22619.33756,91420.62455,0,21
+243730,22631.07342,90369.16038,0,21
+243731,22980.58769,90677.03617,0,21
+243732,22793.45583,90438.78701,0,21
+243733,23145.69757,90444.25663,0,21
+243734,22965.33271,90227.18469,0,21
+243735,23380.59769,89964.27761,0,21
+243736,23310.66453,89270.49572,0,21
+243737,23311.18736,89354.69882,0,21
+243738,23544.73139,88962.7975,0,21
+243739,23552.74542,88550.32889,0,21
+243740,23811.27437,88269.50615,0,21
+243741,23591.66359,88269.31675,0,21
+243742,23901.80706,87630.89519,0,21
+243743,23851.72738,87293.30164,0,21
+243744,24166.69847,87218.76162,0,21
+243745,23823.78703,86806.47896,0,21
+243746,24214.2093,86768.9734,0,21
+243747,24260.71408,85950.69578,0,21
+243748,24327.95761,86019.83516,0,21
+243749,24238.85811,85736.1081,0,21
+243750,24422.86606,85358.87128,0,21
+243751,24353.48557,84905.06698,0,21
+243752,24748.45387,84765.87428,0,21
+243753,24270.12351,84613.67266,0,21
+243754,24665.4305,83818.68813,0,21
+243755,24570.82781,84033.86447,0,21
+243756,24581.89686,83630.07375,0,21
+243757,24811.06726,83023.33674,0,21
+243758,24594.02207,82958.97291,0,21
+243759,24798.92693,82653.68365,0,21
+243760,24808.7831,82284.06562,0,21
+243761,24715.34146,81910.13032,0,21
+243762,24808.78272,81784.57831,0,21
+243763,24720.20446,81302.30758,0,21
+243764,24921.75964,81051.27548,0,21
+243765,24927.6624,80929.73064,0,21
+243766,24718.96582,80258.98732,0,21
+243767,25021.20515,80379.51156,0,21
+243768,24844.49335,79615.88112,0,21
+243769,24904.53681,80055.9622,0,21
+243770,24856.65483,79743.10958,0,21
+243771,25016.43493,79415.12613,0,21
+243772,24817.0678,79431.21688,0,21
+243773,24850.3176,78744.06108,0,21
+243774,25015.03238,78617.42335,0,21
+243775,24934.2369,78418.10132,0,21
+243776,24835.93182,78215.52055,0,21
+243777,25001.38014,77614.63801,0,21
+243778,24825.90153,77773.99241,0,21
+243779,24922.15243,77018.36232,0,21
+243780,24797.11448,76962.40701,0,21
+243781,3668.071378,31917.39219,0,21
+243782,2469.647776,29657.17842,0,21
+243783,2300.408365,28885.5676,0,21
+243784,2026.81429,28168.20633,0,21
+243785,1698.727761,27241.8457,0,21
+243786,1664.966058,26883.55484,0,21
+243787,1248.793338,26119.8023,0,21
+243788,1214.431465,25572.65891,0,21
+243789,905.1261197,25004.47179,0,21
+243790,889.2260521,24617.36273,0,21
+243791,445.1707609,24229.3419,0,21
+243792,575.054269,23671.20535,0,21
+243793,259.6775057,23244.00161,0,21
+243794,243.4390722,22757.3236,0,21
+243795,227.1051239,22294.3018,0,21
+243796,210.6700648,21682.21478,0,21
+243797,194.1274514,21343.293,0,21
+243798,185.8135069,20784.99259,0,21
+243799,160.688035,20316.15908,0,21
+243800,160.6880359,19956.40832,0,21
+243801,126.7071327,19323.41759,0,21
+243802,126.7071338,18981.08108,0,21
+243803,109.4780377,18552.79442,0,21
+243804,83.27593009,17929.89827,0,21
+243805,83.27592904,17781.30022,0,21
+243806,56.53926069,17102.05342,0,21
+243807,56.53926018,16682.10968,0,21
+243808,19.63092305,16360.53573,0,21
+243809,19.63092288,16062.31576,0,21
+243810,10.01345878,15472.9354,0,21
+243811,0,15450.97186,0,21
+243812,0,14615.22534,0,21
+243813,0,14798.55096,0,21
+243814,0,13976.03179,0,21
+243815,0,13737.10063,0,21
+243816,0,13485.80174,0,21
+243817,0,13261.96785,0,21
+243818,0,12970.69111,0,21
+243819,0,12729.16817,0,21
+243820,0,12491.64505,0,21
+243821,0,11999.43899,0,21
+243822,0,11765.92934,0,21
+243823,0,11726.77502,0,21
+243824,0,11257.65629,0,21
+243825,0,10988.68781,0,21
+243826,0,10735.62693,0,21
+243827,0,10260.87405,0,21
+243828,0,10244.05176,0,21
+243829,0,9942.816713,0,21
+243830,0,9492.454697,0,21
+243831,0,9234.623523,0,21
+243832,0,9188.468838,0,21
+243833,0,8490.04062,0,21
+243834,0,8652.774505,0,21
+243835,0,8182.12149,0,21
+243836,0,7702.970699,0,21
+243837,0,7879.035531,0,21
+243838,0,7126.146044,0,21
+243839,0,7167.020797,0,21
+243840,0,6835.845901,0,21
+243841,0,6340.144365,0,21
+243842,0,6357.654262,0,21
+243843,0,6004.654499,0,21
+243844,0,5816.03654,0,21
+243845,0,5262.725707,0,21
+243846,0,5477.64095,0,21
+243847,0,4733.610734,0,21
+243848,0,4920.963427,0,21
+243849,0,4191.628475,0,21
+243850,0,4364.04142,0,21
+243851,0,3860.27481,0,21
+243852,0,3817.828433,0,21
+243853,0,3287.522937,0,21
+243854,0,3263.056621,0,21
+243855,0,2847.76199,0,21
+243856,0,2679.060882,0,21
+243857,0,2400.19967,0,21
+243858,0,2203.417425,0,21
+243859,0,1808.048961,0,21
+243860,0,1764.540865,0,21
+243861,0,1417.315831,0,21
+243862,0,1417.315939,0,21
+243863,0,1348.178868,0,21
+243864,0,1329.088146,0,21
+243865,0,1288.158427,0,21
+243866,0,1259.320788,0,21
+243867,0,1208.526626,0,21
+243868,0,1163.539444,0,21
+243869,0,1163.539479,0,21
+243870,0,1092.566783,0,21
+243871,0,1046.818194,0,21
+243872,0,1031.021998,0,21
+243873,0,1000.624804,0,21
+243874,0,922.60701,0,21
+243875,0,927.8298588,0,21
+243876,0,849.2761607,0,21
+243877,0,827.3703034,0,21
+243878,0,800.9995909,0,21
+243879,0,774.5318759,0,21
+243880,0,721.2951811,0,21
+243881,0,721.2952029,0,21
+243882,0,667.6375251,0,21
+243883,0,667.63755,0,21
+243884,0,613.5326047,0,21
+243885,0,586.3029667,0,21
+243886,0,572.6420059,0,21
+243887,0,531.4673481,0,21
+243888,0,503.8459594,0,21
+243889,0,448.1920053,0,21
+243890,0,462.1627934,0,21
+243891,0,391.9173451,0,21
+243892,0,391.9177401,0,21
+243893,0,334.9554539,0,21
+243894,0,306.1875354,0,21
+243895,0,277.2089622,0,21
+243896,0,218.540115,0,21
+243897,0,128.3239095,0,21
+243898,0,128.3242169,0,21
+243899,0,81.82695173,0,21
+243900,0,33.8165561,0,21
+243901,0,0,0,21
+243902,0,0,0,21
+243903,0,0,0,21
+243904,0,0,0,21
+243905,0,0,0,21
+243906,0,0,0,21
+243907,0,0,0,21
+243908,0,0,0,21
+243909,0,0,0,21
+243910,0,0,0,21
+243911,0,0,0,21
+243912,0,0,0,21
+243913,0,0,0,21
+243914,0,0,0,21
+243915,0,0,0,21
+243916,0,0,0,21
+243917,0,0,0,21
+243918,0,0,0,21
+243919,0,0,0,21
+243920,0,0,0,21
+243921,0,0,0,21
+243922,0,0,0,21
+243923,0,0,0,21
+243924,0,0,0,21
+243925,0,0,0,21
+243926,0,0,0,21
+243927,0,0,0,21
+243928,0,0,0,21
+243929,0,0,0,21
+243930,0,0,0,21
+243931,0,0,0,21
+243932,0,0,0,21
+243933,0,0,0,21
+243934,0,0,0,21
+243935,0,0,0,21
+243936,0,0,0,21
+243937,0,0,0,21
+243938,0,0,0,21
+243939,0,0,0,21
+243940,0,0,0,21
+243941,0,0,0,21
+243942,0,0,0,21
+243943,0,0,0,21
+243944,0,0,0,21
+243945,0,0,0,21
+243946,0,0,0,21
+243947,0,0,0,21
+243948,0,0,0,21
+243949,0,0,0,21
+243950,0,0,0,21
+243951,0,0,0,21
+243952,0,0,0,21
+243953,0,0,0,21
+243954,0,0,0,21
+243955,0,0,0,21
+243956,0,0,0,21
+243957,0,0,0,21
+243958,0,0,0,21
+243959,0,0,0,21
+243960,0,0,0,21
+243961,0,0,0,21
+243962,0,0,0,21
+243963,0,0,0,21
+243964,0,0,0,21
+243965,0,0,0,21
+243966,0,0,0,21
+243967,0,0,0,21
+243968,0,0,0,21
+243969,0,0,0,21
+243970,0,0,0,21
+243971,0,0,0,21
+243972,0,0,0,21
+243973,0,0,0,21
+243974,0,0,0,21
+243975,0,0,0,21
+243976,0,0,0,21
+243977,0,0,0,21
+243978,0,0,0,21
+243979,0,0,0,21
+243980,0,0,0,21
+243981,0,0,0,21
+243982,0,0,0,21
+243983,0,0,0,21
+243984,0,0,0,21
+243985,0,0,0,21
+243986,0,0,0,21
+243987,0,0,0,21
+243988,0,0,0,21
+243989,0,0,0,21
+243990,0,0,0,21
+243991,0,0,0,21
+243992,0,0,0,21
+243993,0,0,0,21
+243994,0,0,0,21
+243995,0,0,0,21
+243996,0,0,0,21
+243997,0,0,0,21
+243998,0,0,0,21
+243999,0,0,0,21
+244000,0,0,0,21
+244001,0,0,0,21
+244002,0,0,0,21
+244003,0,0,0,21
+244004,0,0,0,21
+244005,0,0,0,21
+244006,0,0,0,21
+244007,0,0,0,21
+244008,0,0,0,21
+244009,0,0,0,21
+244010,0,0,0,21
+244011,0,0,0,21
+244012,0,0,0,21
+244013,0,0,0,21
+244014,0,0,0,21
+244015,0,0,0,21
+244016,0,0,0,21
+244017,0,0,0,21
+244018,0,0,0,21
+244019,0,0,0,21
+244020,0,0,0,21
+244021,0,0,0,21
+244022,0,0,0,21
+244023,0,0,0,21
+244024,0,0,0,21
+244025,0,0,0,21
+244026,0,0,0,21
+244027,0,0,0,21
+244028,0,0,0,21
+244029,0,0,0,21
+244030,0,0,0,21
+244031,0,0,0,21
+244032,0,0,0,21
+244033,0,0,0,21
+244034,0,0,0,21
+244035,0,0,0,21
+244036,0,0,0,21
+244037,0,0,0,21
+244038,0,0,0,21
+244039,0,0,0,21
+244040,0,0,0,21
+244041,0,0,0,21
+244042,0,0,0,21
+244043,0,0,0,21
+244044,0,0,0,21
+244045,0,0,0,21
+244046,0,0,0,21
+244047,0,0,0,21
+244048,0,0,0,21
+244049,0,0,0,21
+244050,0,0,0,21
+244051,0,0,0,21
+244052,0,0,0,21
+244053,0,0,0,21
+244054,0,0,0,21
+244055,0,0,0,21
+244056,0,0,0,21
+244057,0,0,0,21
+244058,0,0,0,21
+244059,0,0,0,21
+244060,0,0,0,21
+244061,0,0,0,21
+244062,0,0,0,21
+244063,0,0,0,21
+244064,0,0,0,21
+244065,0,0,0,21
+244066,0,0,0,21
+244067,0,0,0,21
+244068,0,0,0,21
+244069,0,0,0,21
+244070,0,0,0,21
+244071,0,0,0,21
+244072,0,0,0,21
+244073,0,0,0,21
+244074,0,0,0,21
+244075,0,0,0,21
+244076,0,0,0,21
+244077,0,0,0,21
+244078,0,0,0,21
+244079,0,0,0,21
+244080,0,0,0,21
+244081,0,0,0,21
+244082,0,0,0,21
+244083,0,0,0,21
+244084,0,0,0,21
+244085,0,0,0,21
+244086,0,0,0,21
+244087,0,0,0,21
+244088,0,0,0,21
+244089,0,0,0,21
+244090,0,0,0,21
+244091,0,0,0,21
+244092,0,0,0,21
+244093,0,0,0,21
+244094,0,0,0,21
+244095,0,0,0,21
+244096,0,0,0,21
+244097,0,0,0,21
+244098,0,0,0,21
+244099,0,0,0,21
+244100,0,0,0,21
+244101,0,0,0,21
+244102,0,0,0,21
+244103,0,0,0,21
+244104,0,0,0,21
+244105,0,0,0,21
+244106,0,0,0,21
+244107,0,0,0,21
+244108,0,0,0,21
+244109,0,0,0,21
+244110,0,0,0,21
+244111,0,0,0,21
+244112,0,0,0,21
+244113,0,0,0,21
+244114,0,0,0,21
+244115,0,0,0,21
+244116,0,0,0,21
+244117,0,0,0,21
+244118,0,0,0,21
+244119,0,0,0,21
+244120,0,0,0,21
+244121,0,0,0,21
+244122,0,0,0,21
+244123,0,0,0,21
+244124,0,0,0,21
+244125,0,0,0,21
+244126,0,0,0,21
+244127,0,0,0,21
+244128,0,0,0,21
+244129,0,0,0,21
+244130,0,0,0,21
+244131,0,0,0,21
+244132,0,0,0,21
+244133,0,0,0,21
+244134,0,0,0,21
+244135,0,0,0,21
+244136,0,0,0,21
+244137,0,0,0,21
+244138,0,0,0,21
+244139,0,0,0,21
+244140,0,0,0,21
+244141,0,0,0,21
+244142,0,0,0,21
+244143,0,0,0,21
+244144,0,0,0,21
+244145,0,0,0,21
+244146,0,0,0,21
+244147,0,0,0,21
+244148,0,0,0,21
+244149,0,0,0,21
+244150,0,0,0,21
+244151,0,0,0,21
+244152,0,0,0,21
+244153,0,0,0,21
+244154,0,0,0,21
+244155,0,0,0,21
+244156,0,0,0,21
+244157,0,0,0,21
+244158,0,0,0,21
+244159,0,0,0,21
+244160,0,0,0,21
+244161,0,0,0,21
+244162,0,0,0,21
+244163,0,0,0,21
+244164,0,0,0,21
+244165,0,0,0,21
+244166,0,0,0,21
+244167,0,0,0,21
+244168,0,0,0,21
+244169,0,0,0,21
+244170,0,0,0,21
+244171,0,0,0,21
+244172,0,0,0,21
+244173,0,0,0,21
+244174,0,0,0,21
+244175,0,0,0,21
+244176,0,0,0,21
+244177,0,0,0,21
+244178,0,0,0,21
+244179,0,0,0,21
+244180,0,0,0,21
+244181,0,0,0,21
+244182,0,0,0,21
+244183,0,0,0,21
+244184,0,0,0,21
+244185,0,0,0,21
+244186,0,0,0,21
+244187,0,0,0,21
+244188,0,0,0,21
+244189,0,0,0,21
+244190,0,0,0,21
+244191,0,0,0,21
+244192,0,0,0,21
+244193,0,0,0,21
+244194,0,0,0,21
+244195,0,0,0,21
+244196,0,0,0,21
+244197,0,0,0,21
+244198,0,0,0,21
+244199,0,0,0,21
+244200,0,0,0,21
+244201,0,0,0,21
+244202,0,0,0,21
+244203,0,0,0,21
+244204,0,0,0,21
+244205,0,0,0,21
+244206,0,0,0,21
+244207,0,0,0,21
+244208,0,0,0,21
+244209,0,0,0,21
+244210,0,0,0,21
+244211,0,0,0,21
+244212,0,0,0,21
+244213,0,0,0,21
+244214,0,0,0,21
+244215,0,0,0,21
+244216,0,0,0,21
+244217,0,0,0,21
+244218,0,0,0,21
+244219,0,0,0,21
+244220,0,0,0,21
+244221,0,0,0,21
+244222,0,0,0,21
+244223,0,0,0,21
+244224,0,0,0,21
+244225,0,0,0,21
+244226,0,0,0,21
+244227,0,0,0,21
+244228,0,0,0,21
+244229,0,0,0,21
+244230,0,0,0,21
+244231,0,0,0,21
+244232,0,0,0,21
+244233,0,0,0,21
+244234,0,0,0,21
+244235,0,0,0,21
+244236,0,0,0,21
+244237,0,0,0,21
+244238,0,0,0,21
+244239,0,0,0,21
+244240,0,0,0,21
+244241,0,0,0,21
+244242,0,0,0,21
+244243,0,0,0,21
+244244,0,0,0,21
+244245,0,0,0,21
+244246,0,0,0,21
+244247,0,0,0,21
+244248,0,0,0,21
+244249,0,0,0,21
+244250,0,0,0,21
+244251,0,0,0,21
+244252,0,0,0,21
+244253,0,0,0,21
+244254,0,0,0,21
+244255,0,0,0,21
+244256,0,0,0,21
+244257,0,0,0,21
+244258,0,0,0,21
+244259,0,0,0,21
+244260,0,0,0,21
+244261,0,0,0,21
+244262,0,0,0,21
+244263,0,0,0,21
+244264,0,0,0,21
+244265,0,0,0,21
+244266,0,0,0,21
+244267,0,0,0,21
+244268,0,0,0,21
+244269,0,0,0,21
+244270,0,0,0,21
+244271,0,0,0,21
+244272,0,0,0,21
+244273,0,0,0,21
+244274,0,0,0,21
+244275,0,0,0,21
+244276,0,0,0,21
+244277,0,0,0,21
+244278,0,0,0,21
+244279,0,0,0,21
+244280,0,0,0,21
+244281,0,0,0,21
+244282,0,0,0,21
+244283,0,0,0,21
+244284,0,0,0,21
+244285,0,0,0,21
+244286,0,0,0,21
+244287,0,0,0,21
+244288,0,0,0,21
+244289,0,0,0,21
+244290,0,0,0,21
+244291,0,0,0,21
+244292,0,0,0,21
+244293,0,0,0,21
+244294,0,0,0,21
+244295,0,0,0,21
+244296,0,0,0,21
+244297,0,0,0,21
+244298,0,0,0,21
+244299,0,0,0,21
+244300,0,0,0,21
+244301,0,0,0,21
+244302,0,0,0,21
+244303,0,0,0,21
+244304,0,0,0,21
+244305,0,0,0,21
+244306,0,0,0,21
+244307,0,0,0,21
+244308,0,0,0,21
+244309,0,0,0,21
+244310,0,0,0,21
+244311,0,0,0,21
+244312,0,0,0,21
+244313,0,0,0,21
+244314,0,0,0,21
+244315,0,0,0,21
+244316,0,0,0,21
+244317,0,0,0,21
+244318,0,0,0,21
+244319,0,0,0,21
+244320,0,0,0,21
+244321,0,0,0,21
+244322,0,0,0,21
+244323,0,0,0,21
+244324,0,0,0,21
+244325,0,0,0,21
+244326,0,0,0,21
+244327,0,0,0,21
+244328,0,0,0,21
+244329,0,0,0,21
+244330,0,0,0,21
+244331,0,0,0,21
+244332,0,0,0,21
+244333,0,0,0,21
+244334,0,0,0,21
+244335,0,0,0,21
+244336,0,0,0,21
+244337,0,0,0,21
+244338,0,0,0,21
+244339,0,0,0,21
+244340,0,0,0,21
+244341,0,0,0,21
+244342,0,0,0,21
+244343,0,0,0,21
+244344,0,0,0,21
+244345,0,0,0,21
+244346,0,0,0,21
+244347,0,0,0,21
+244348,0,0,0,21
+244349,0,0,0,21
+244350,0,0,0,21
+244351,0,0,0,21
+244352,0,0,0,21
+244353,0,0,0,21
+244354,0,0,0,21
+244355,0,0,0,21
+244356,0,0,0,21
+244357,0,0,0,21
+244358,0,0,0,21
+244359,0,0,0,21
+244360,0,0,0,21
+244361,0,0,0,21
+244362,0,0,0,21
+244363,0,0,0,21
+244364,0,0,0,21
+244365,0,0,0,21
+244366,0,0,0,21
+244367,0,0,0,21
+244368,0,0,0,21
+244369,0,0,0,21
+244370,0,0,0,21
+244371,0,0,0,21
+244372,0,0,0,21
+244373,0,0,0,21
+244374,0,0,0,21
+244375,0,0,0,21
+244376,0,0,0,21
+244377,0,0,0,21
+244378,0,0,0,21
+244379,0,0,0,21
+244380,0,0,0,21
+244381,0,0,0,21
+244382,0,0,0,21
+244383,0,0,0,21
+244384,0,0,0,21
+244385,0,0,0,21
+244386,0,0,0,21
+244387,0,0,0,21
+244388,0,0,0,21
+244389,0,0,0,21
+244390,0,0,0,21
+244391,0,0,0,21
+244392,0,0,0,21
+244393,0,0,0,21
+244394,0,0,0,21
+244395,0,0,0,21
+244396,0,0,0,21
+244397,0,0,0,21
+244398,0,0,0,21
+244399,0,0,0,21
+244400,0,0,0,21
+244401,0,0,0,21
+244402,0,0,0,21
+244403,0,0,0,21
+244404,0,0,0,21
+244405,0,0,0,21
+244406,0,0,0,21
+244407,0,0,0,21
+244408,0,0,0,21
+244409,0,0,0,21
+244410,0,0,0,21
+244411,0,0,0,21
+244412,0,0,0,21
+244413,0,0,0,21
+244414,0,0,0,21
+244415,0,0,0,21
+244416,0,0,0,21
+244417,0,0,0,21
+244418,0,0,0,21
+244419,0,0,0,21
+244420,0,0,0,21
+244421,0,0,0,21
+244422,0,0,0,21
+244423,0,0,0,21
+244424,0,0,0,21
+244425,0,0,0,21
+244426,0,0,0,21
+244427,0,0,0,21
+244428,0,0,0,21
+244429,0,0,0,21
+244430,0,0,0,21
+244431,0,0,0,21
+244432,0,0,0,21
+244433,0,0,0,21
+244434,0,0,0,21
+244435,0,0,0,21
+244436,0,0,0,21
+244437,0,0,0,21
+244438,0,0,0,21
+244439,0,0,0,21
+244440,0,0,0,21
+244441,0,0,0,21
+244442,0,0,0,21
+244443,0,0,0,21
+244444,0,0,0,21
+244445,0,0,0,21
+244446,0,0,0,21
+244447,0,0,0,21
+244448,0,0,0,21
+244449,0,0,0,21
+244450,0,0,0,21
+244451,0,0,0,21
+244452,0,0,0,21
+244453,0,0,0,21
+244454,0,0,0,21
+244455,0,0,0,21
+244456,0,0,0,21
+244457,0,0,0,21
+244458,0,0,0,21
+244459,0,0,0,21
+244460,0,0,0,21
+244461,0,0,0,21
+244462,0,0,0,21
+244463,0,0,0,21
+244464,0,0,0,21
+244465,0,0,0,21
+244466,0,0,0,21
+244467,0,0,0,21
+244468,0,0,0,21
+244469,0,0,0,21
+244470,0,0,0,21
+244471,0,0,0,21
+244472,0,0,0,21
+244473,0,0,0,21
+244474,0,0,0,21
+244475,0,0,0,21
+244476,0,0,0,21
+244477,0,0,0,21
+244478,0,0,0,21
+244479,0,0,0,21
+244480,0,0,0,21
+244481,0,0,0,21
+244482,0,0,0,21
+244483,0,0,0,21
+244484,0,0,0,21
+244485,0,0,0,21
+244486,0,0,0,21
+244487,0,0,0,21
+244488,0,0,0,21
+244489,0,0,0,21
+244490,0,0,0,21
+244491,0,0,0,21
+244492,0,0,0,21
+244493,0,0,0,21
+244494,0,0,0,21
+244495,0,0,0,21
+244496,0,0,0,21
+244497,0,0,0,21
+244498,0,0,0,21
+244499,0,0,0,21
+244500,0,0,0,21
+244501,0,0,0,21
+244502,0,0,0,21
+244503,0,0,0,21
+244504,0,0,0,21
+244505,0,0,0,21
+244506,0,0,0,21
+244507,0,0,0,21
+244508,0,0,0,21
+244509,0,0,0,21
+244510,0,0,0,21
+244511,0,0,0,21
+244512,0,0,0,21
+244513,0,0,0,21
+244514,0,0,0,21
+244515,0,0,0,21
+244516,0,0,0,21
+244517,0,0,0,21
+244518,0,0,0,21
+244519,0,0,0,21
+244520,0,0,0,21
+244521,0,0,0,21
+244522,0,0,0,21
+244523,0,0,0,21
+244524,0,0,0,21
+244525,0,0,0,21
+244526,0,0,0,21
+244527,0,0,0,21
+244528,0,0,0,21
+244529,0,0,0,21
+244530,0,0,0,21
+244531,0,0,0,21
+244532,0,0,0,21
+244533,0,0,0,21
+244534,0,0,0,21
+244535,0,0,0,21
+244536,0,0,0,21
+244537,0,0,0,21
+244538,0,0,0,21
+244539,0,0,0,21
+244540,0,0,0,21
+244541,0,0,0,21
+244542,0,0,0,21
+244543,0,0,0,21
+244544,1255.786676,0,0,21
+244545,855.2947776,0,0,21
+244546,1255.785666,0,0,21
+244547,1255.782432,0,0,21
+244548,1646.940316,0,0,21
+244549,1517.448244,0,0,21
+244550,1903.537845,0,0,21
+244551,2283.12661,0,0,21
+244552,2408.380644,0,0,21
+244553,2657.141379,0,0,21
+244554,2903.722198,0,0,21
+244555,2780.69405,0,0,21
+244556,3148.276181,0,0,21
+244557,3269.834249,0,0,21
+244558,3390.932482,0,0,21
+244559,3511.584154,704.496262,0,21
+244560,3631.801622,871.5414076,0,21
+244561,3870.98116,871.5414537,0,21
+244562,3870.981718,1036.584789,0,21
+244563,4226.758686,1199.905382,0,21
+244564,4108.553477,1361.707456,0,21
+244565,4462.055671,1361.707451,0,21
+244566,4462.05641,1681.3489,0,21
+244567,4579.162434,1681.348884,0,21
+244568,4812.324662,1839.41275,0,21
+244569,4928.395021,1996.422379,0,21
+244570,5044.132979,2152.448285,0,21
+244571,5159.544443,2152.448263,0,21
+244572,5274.635056,2461.782337,0,21
+244573,5503.873936,2461.782302,0,21
+244574,5503.875088,2615.188574,0,21
+244575,5618.034621,2615.188554,0,21
+244576,5845.455164,2919.682433,0,21
+244577,5958.726372,2919.682385,0,21
+244578,5958.727741,3070.838242,0,21
+244579,6296.829924,3221.306549,0,21
+244580,6184.412025,3371.113755,0,21
+244581,6520.848203,3371.113706,0,21
+244582,6408.978305,3520.283677,0,21
+244583,6743.792177,3668.838481,0,21
+244584,6743.793972,3816.798315,0,21
+244585,6854.871581,3816.798216,0,21
+244586,7076.251809,4111.006311,0,21
+244587,7076.253805,3964.1817,0,21
+244588,7296.623269,4403.040868,0,21
+244589,7296.625406,4257.309745,0,21
+244590,7516.006874,4548.286016,0,21
+244591,7516.008665,4693.018266,0,21
+244592,7734.423595,4837.267436,0,21
+244593,7843.276181,4837.26724,0,21
+244594,7843.278712,4981.038361,0,21
+244595,8060.281411,5124.342842,0,21
+244596,8168.438709,5267.190889,0,21
+244597,8168.441471,5267.190625,0,21
+244598,8384.073855,5551.55577,0,21
+244599,8491.556002,5551.555494,0,21
+244600,8598.817308,5693.090174,0,21
+244601,8598.820392,5834.204155,0,21
+244602,8812.68542,5974.905282,0,21
+244603,8919.296118,5974.904991,0,21
+244604,9025.693759,6115.200754,0,21
+244605,9025.69718,6394.604659,0,21
+244606,9237.857164,6255.097951,0,21
+244607,9237.860758,6533.725512,0,21
+244608,9449.189801,6672.468013,0,21
+244609,9554.548836,6672.467669,0,21
+244610,9554.552696,6810.837469,0,21
+244611,9764.660527,6948.83971,0,21
+244612,9764.664567,7086.481021,0,21
+244613,9869.420484,7086.480756,0,21
+244614,10078.33564,7223.766067,0,21
+244615,10078.33996,7612.232047,0,21
+244616,10286.475,7465.678525,0,21
+244617,10286.4795,7884.388576,0,21
+244618,10390.26038,7641.802323,0,21
+244619,10493.85053,8204.263019,0,21
+244620,10597.20134,7943.099357,0,21
+244621,0,0,0,21
+244622,0,0,0,21
+244623,0,0,0,21
+244624,0,0,0,21
+244625,0,0,657446.404,21
+244626,335304.0161,368996.935,0,21
+244627,0,0,0,21
+244628,0,0,0,21
+244629,0,0,0,21
+244630,0,0,0,21
+244631,0,0,0,21
+244632,0,0,0,21
+244633,0,0,0,21
+244634,0,0,0,21
+244635,0,0,0,21
+244636,0,0,0,21
+244637,0,0,0,21
+244638,0,0,0,21
+244639,0,0,0,21
+244640,0,0,0,21
+244641,0,0,0,21
+244642,0,0,0,21
+244643,0,0,0,21
+244644,0,0,0,21
+244645,0,0,0,21
+244646,0,0,0,21
+244647,0,0,0,21
+244648,0,0,0,21
+244649,0,0,0,21
+244650,0,0,0,21
+244651,0,0,0,21
+244652,0,0,0,21
+244653,0,0,0,21
+244654,0,0,0,21
+244655,0,0,0,21
+244656,0,0,0,21
+244657,0,0,0,21
+244658,0,0,0,21
+244659,0,0,658153.0832,21
+244660,0,0,0,21
+244661,335016.8604,369004.9442,0,21
+244662,0,0,0,21
+244663,0,0,0,21
+244664,0,0,0,21
+244665,0,0,0,21
+244666,0,0,0,21
+244667,0,0,0,21
+244668,0,0,0,21
+244669,0,0,0,21
+244670,0,0,0,21
+244671,0,0,0,21
+244672,0,0,0,21
+244673,0,0,0,21
+244674,0,0,0,21
+244675,0,0,0,21
+244676,0,0,0,21
+244677,0,0,0,21
+244678,0,0,0,21
+244679,0,0,0,21
+244680,0,0,0,15.6
+244681,0,0,0,15.6
+244682,0,0,0,15.6
+244683,0,0,0,15.6
+244684,0,0,0,15.6
+244685,0,0,0,15.6
+244686,0,0,0,15.6
+244687,0,0,0,15.6
+244688,0,0,0,15.6
+244689,0,0,0,15.6
+244690,0,0,0,15.6
+244691,0,0,0,15.6
+244692,0,0,0,15.6
+244693,0,0,658292.2908,15.6
+244694,0,0,0,15.6
+244695,0,0,0,15.6
+244696,335197.7113,369012.9495,0,15.6
+244697,0,0,0,15.6
+244698,0,0,0,15.6
+244699,0,0,0,15.6
+244700,0,0,0,15.6
+244701,0,0,0,15.6
+244702,0,0,0,15.6
+244703,0,0,0,15.6
+244704,0,0,0,15.6
+244705,0,0,0,15.6
+244706,0,0,0,15.6
+244707,0,0,0,15.6
+244708,0,0,0,15.6
+244709,0,0,0,15.6
+244710,0,0,0,15.6
+244711,0,0,0,15.6
+244712,0,0,0,15.6
+244713,0,0,0,15.6
+244714,0,0,0,15.6
+244715,0,0,0,15.6
+244716,0,0,0,15.6
+244717,0,0,0,15.6
+244718,0,0,0,15.6
+244719,0,0,0,15.6
+244720,0,0,0,15.6
+244721,0,0,0,15.6
+244722,0,0,0,15.6
+244723,0,0,0,15.6
+244724,0,0,0,15.6
+244725,0,0,0,15.6
+244726,0,0,0,15.6
+244727,0,0,658948.1884,15.6
+244728,0,0,0,15.6
+244729,0,0,0,15.6
+244730,0,0,0,15.6
+244731,0,369020.9548,0,15.6
+244732,336001.8556,0,0,15.6
+244733,0,0,0,15.6
+244734,0,0,0,15.6
+244735,0,0,0,15.6
+244736,0,0,0,15.6
+244737,0,0,0,15.6
+244738,0,0,0,15.6
+244739,0,0,0,15.6
+244740,0,0,0,15.6
+244741,0,0,0,15.6
+244742,0,0,0,15.6
+244743,0,0,0,15.6
+244744,0,0,0,15.6
+244745,0,0,0,15.6
+244746,0,0,0,15.6
+244747,0,0,0,15.6
+244748,0,0,0,15.6
+244749,0,0,0,15.6
+244750,0,0,0,15.6
+244751,0,0,0,15.6
+244752,0,0,0,15.6
+244753,0,0,0,15.6
+244754,0,0,0,15.6
+244755,0,0,0,15.6
+244756,0,0,0,15.6
+244757,0,0,0,15.6
+244758,0,0,0,15.6
+244759,0,0,0,15.6
+244760,0,0,0,15.6
+244761,0,0,0,15.6
+244762,0,0,658785.0288,15.6
+244763,0,0,0,15.6
+244764,0,0,0,15.6
+244765,0,0,0,15.6
+244766,0,368789.3507,0,15.6
+244767,0,0,0,15.6
+244768,337295.2266,0,0,15.6
+244769,0,0,0,15.6
+244770,0,0,0,15.6
+244771,0,0,0,15.6
+244772,0,0,0,15.6
+244773,0,0,0,15.6
+244774,0,0,0,15.6
+244775,0,0,0,15.6
+244776,0,0,0,15.6
+244777,0,0,0,15.6
+244778,0,0,0,15.6
+244779,0,0,0,15.6
+244780,0,0,0,15.6
+244781,0,0,0,15.6
+244782,0,0,0,15.6
+244783,0,0,0,15.6
+244784,0,0,0,15.6
+244785,0,0,0,15.6
+244786,0,0,0,15.6
+244787,0,0,0,15.6
+244788,0,0,0,15.6
+244789,0,0,0,15.6
+244790,0,0,0,15.6
+244791,0,0,0,15.6
+244792,0,0,0,15.6
+244793,0,0,0,15.6
+244794,0,0,0,15.6
+244795,0,0,0,15.6
+244796,0,0,0,15.6
+244797,0,0,659397.7334,15.6
+244798,0,0,0,15.6
+244799,0,0,0,15.6
+244800,0,0,0,15.6
+244801,0,369023.1634,0,15.6
+244802,0,0,0,15.6
+244803,0,0,0,15.6
+244804,337894.3263,0,0,15.6
+244805,0,0,0,15.6
+244806,0,0,0,15.6
+244807,0,0,0,15.6
+244808,0,0,0,15.6
+244809,0,0,0,15.6
+244810,0,0,0,15.6
+244811,0,0,0,15.6
+244812,0,0,0,15.6
+244813,0,0,0,15.6
+244814,0,0,0,15.6
+244815,0,0,0,15.6
+244816,0,0,0,15.6
+244817,0,0,0,15.6
+244818,0,0,0,15.6
+244819,0,0,0,15.6
+244820,0,0,0,15.6
+244821,0,0,0,15.6
+244822,0,0,0,15.6
+244823,0,0,0,15.6
+244824,0,0,0,15.6
+244825,0,0,0,15.6
+244826,0,0,0,15.6
+244827,0,0,0,15.6
+244828,0,0,0,15.6
+244829,0,0,0,15.6
+244830,0,0,0,15.6
+244831,0,0,0,15.6
+244832,0,0,658518.4012,15.6
+244833,0,0,0,15.6
+244834,0,0,0,15.6
+244835,0,0,0,15.6
+244836,0,369168.9466,0,15.6
+244837,0,0,0,15.6
+244838,0,0,0,15.6
+244839,0,0,0,15.6
+244840,338265.2399,0,0,15.6
+244841,0,0,0,15.6
+244842,0,0,0,15.6
+244843,0,0,0,15.6
+244844,0,0,0,15.6
+244845,0,0,0,15.6
+244846,0,0,0,15.6
+244847,0,0,0,15.6
+244848,0,0,0,15.6
+244849,0,0,0,15.6
+244850,0,0,0,15.6
+244851,0,0,0,15.6
+244852,0,0,0,15.6
+244853,0,0,0,15.6
+244854,0,0,0,15.6
+244855,0,0,0,15.6
+244856,0,0,0,15.6
+244857,0,0,0,15.6
+244858,0,0,0,15.6
+244859,0,0,0,15.6
+244860,0,0,0,15.6
+244861,0,0,0,15.6
+244862,0,0,0,15.6
+244863,0,0,0,15.6
+244864,0,0,0,15.6
+244865,0,0,0,15.6
+244866,0,0,0,15.6
+244867,0,0,659520.3715,15.6
+244868,0,0,0,15.6
+244869,0,0,0,15.6
+244870,0,0,0,15.6
+244871,0,369151.4264,0,15.6
+244872,0,0,0,15.6
+244873,0,0,0,15.6
+244874,0,0,0,15.6
+244875,0,0,0,15.6
+244876,335531.4625,0,0,15.6
+244877,0,0,0,15.6
+244878,0,0,0,15.6
+244879,0,0,0,15.6
+244880,0,0,0,15.6
+244881,0,0,0,15.6
+244882,0,0,0,15.6
+244883,0,0,0,15.6
+244884,0,0,0,15.6
+244885,0,0,0,15.6
+244886,0,0,0,15.6
+244887,0,0,0,15.6
+244888,0,0,0,15.6
+244889,0,0,0,15.6
+244890,0,0,0,15.6
+244891,0,0,0,15.6
+244892,0,0,0,15.6
+244893,0,0,0,15.6
+244894,0,0,0,15.6
+244895,0,0,0,15.6
+244896,0,0,0,15.6
+244897,0,0,0,15.6
+244898,0,0,0,15.6
+244899,0,0,0,15.6
+244900,0,0,0,15.6
+244901,0,0,0,15.6
+244902,0,0,658891.774,15.6
+244903,0,0,0,15.6
+244904,0,0,0,15.6
+244905,0,0,0,15.6
+244906,0,369147.0306,0,15.6
+244907,0,0,0,15.6
+244908,0,0,0,15.6
+244909,0,0,0,15.6
+244910,0,0,0,15.6
+244911,0,0,0,15.6
+244912,336727.1718,0,0,15.6
+244913,0,0,0,15.6
+244914,0,0,0,15.6
+244915,0,0,0,15.6
+244916,0,0,0,15.6
+244917,0,0,0,15.6
+244918,0,0,0,15.6
+244919,0,0,0,15.6
+244920,0,0,0,15.6
+244921,0,0,0,15.6
+244922,0,0,0,15.6
+244923,0,0,0,15.6
+244924,0,0,0,15.6
+244925,0,0,0,15.6
+244926,0,0,0,15.6
+244927,0,0,0,15.6
+244928,0,0,0,15.6
+244929,0,0,0,15.6
+244930,0,0,0,15.6
+244931,0,0,0,15.6
+244932,0,0,0,15.6
+244933,0,0,0,15.6
+244934,0,0,0,15.6
+244935,0,0,0,15.6
+244936,0,0,0,15.6
+244937,0,0,659514.4562,15.6
+244938,0,0,0,15.6
+244939,0,0,0,15.6
+244940,0,0,0,15.6
+244941,0,0,0,15.6
+244942,0,369127.6936,0,15.6
+244943,0,0,0,15.6
+244944,0,0,0,15.6
+244945,0,0,0,15.6
+244946,0,0,0,15.6
+244947,0,0,0,15.6
+244948,337707.5101,0,0,15.6
+244949,0,0,0,15.6
+244950,0,0,0,15.6
+244951,0,0,0,15.6
+244952,0,0,0,15.6
+244953,0,0,0,15.6
+244954,0,0,0,15.6
+244955,0,0,0,15.6
+244956,0,0,0,15.6
+244957,0,0,0,15.6
+244958,0,0,0,15.6
+244959,0,0,0,15.6
+244960,0,0,0,15.6
+244961,0,0,0,15.6
+244962,0,0,0,15.6
+244963,0,0,0,15.6
+244964,0,0,0,15.6
+244965,0,0,0,15.6
+244966,0,0,0,15.6
+244967,0,0,0,15.6
+244968,0,0,0,15.6
+244969,0,0,0,15.6
+244970,0,0,0,15.6
+244971,0,0,660038.4045,15.6
+244972,0,0,0,15.6
+244973,0,0,0,15.6
+244974,0,0,0,15.6
+244975,0,0,0,15.6
+244976,0,0,0,15.6
+244977,0,0,0,15.6
+244978,0,369100.2423,0,15.6
+244979,0,0,0,15.6
+244980,0,0,0,15.6
+244981,0,0,0,15.6
+244982,0,0,0,15.6
+244983,0,0,0,15.6
+244984,337286.1386,0,0,15.6
+244985,0,0,0,15.6
+244986,0,0,0,15.6
+244987,0,0,0,15.6
+244988,0,0,0,15.6
+244989,0,0,0,15.6
+244990,0,0,0,15.6
+244991,0,0,0,15.6
+244992,0,0,0,15.6
+244993,0,0,0,15.6
+244994,0,0,0,15.6
+244995,0,0,0,15.6
+244996,0,0,0,15.6
+244997,0,0,0,15.6
+244998,0,0,0,15.6
+244999,0,0,0,15.6
+245000,0,0,0,15.6
+245001,0,0,0,15.6
+245002,0,0,0,15.6
+245003,0,0,0,15.6
+245004,0,0,0,15.6
+245005,0,0,659683.2731,15.6
+245006,0,0,0,15.6
+245007,0,0,0,15.6
+245008,0,0,0,15.6
+245009,0,0,0,15.6
+245010,0,0,0,15.6
+245011,0,0,0,15.6
+245012,0,369098.7117,0,15.6
+245013,0,0,0,15.6
+245014,0,0,0,15.6
+245015,0,0,0,15.6
+245016,0,0,0,15.6
+245017,0,0,0,15.6
+245018,0,0,0,15.6
+245019,336109.448,0,0,15.6
+245020,0,0,0,15.6
+245021,0,0,0,15.6
+245022,0,0,0,15.6
+245023,0,0,0,15.6
+245024,0,0,0,15.6
+245025,0,0,0,15.6
+245026,0,0,0,15.6
+245027,0,0,0,15.6
+245028,0,0,0,15.6
+245029,0,0,0,15.6
+245030,0,0,0,15.6
+245031,0,0,0,15.6
+245032,0,0,0,15.6
+245033,0,0,0,15.6
+245034,0,0,0,15.6
+245035,0,0,0,15.6
+245036,0,0,0,15.6
+245037,0,0,0,15.6
+245038,0,0,0,15.6
+245039,0,0,660435.7971,15.6
+245040,0,0,0,17.8
+245041,0,0,0,17.8
+245042,0,0,0,17.8
+245043,0,0,0,17.8
+245044,0,802.6219522,0,17.8
+245045,0,4832.06764,0,17.8
+245046,0,371862.4238,0,17.8
+245047,0,3692.81809,0,17.8
+245048,0,4379.651242,0,17.8
+245049,0,4379.651321,0,17.8
+245050,0,4832.068125,0,17.8
+245051,0,5056.766726,0,17.8
+245052,0,5280.508001,0,17.8
+245053,0,5725.247719,0,17.8
+245054,337525.0174,5946.304572,0,17.8
+245055,0,6166.521255,0,17.8
+245056,0,0,0,17.8
+245057,0,0,0,17.8
+245058,0,0,0,17.8
+245059,0,0,0,17.8
+245060,0,0,0,17.8
+245061,0,0,0,17.8
+245062,0,0,0,17.8
+245063,0,0,0,17.8
+245064,0,0,0,17.8
+245065,0,0,0,17.8
+245066,0,0,0,17.8
+245067,0,0,0,17.8
+245068,0,2030.472725,0,17.8
+245069,0,1136.992693,0,17.8
+245070,0,1337.279961,0,17.8
+245071,0,1411.270805,0,17.8
+245072,0,1484.689675,0,17.8
+245073,0,1484.689777,659684.752,17.8
+245074,0,1533.328212,0,17.8
+245075,0,1533.328322,0,17.8
+245076,0,1581.727355,0,17.8
+245077,0,1605.838815,0,17.8
+245078,0,5298.658705,0,17.8
+245079,0,10615.86706,0,17.8
+245080,0,376062.0962,0,17.8
+245081,0,8524.078753,0,17.8
+245082,0,8957.50549,0,17.8
+245083,0,8981.333657,0,17.8
+245084,0,9220.734805,0,17.8
+245085,0,9649.902051,0,17.8
+245086,0,9483.044782,0,17.8
+245087,0,10123.76511,0,17.8
+245088,0,9934.465658,0,17.8
+245089,338161.013,8327.069882,0,17.8
+245090,0,8750.969649,0,17.8
+245091,0,8539.336498,0,17.8
+245092,0,8961.983141,0,17.8
+245093,0,8961.983504,0,17.8
+245094,0,9172.387219,0,17.8
+245095,0,9172.3876,0,17.8
+245096,0,9591.408673,0,17.8
+245097,0,0,0,17.8
+245098,0,0,0,17.8
+245099,0,0,0,17.8
+245100,0,0,0,20
+245101,67445.98987,63833.41247,0,20
+245102,0,24366.46652,0,20
+245103,3481.826968,59852.18786,0,20
+245104,18832.63311,47989.5304,0,20
+245105,19857.45495,47901.84106,0,20
+245106,22136.79775,48060.35285,0,20
+245107,19827.46619,56807.69117,0,20
+245108,19963.88077,56963.71889,0,20
+245109,19700.86945,55230.84958,0,20
+245110,19313.97244,56147.63332,0,20
+245111,18622.08353,56346.43298,0,20
+245112,17973.24204,56403.21486,0,20
+245113,17460.23291,56181.9265,0,20
+245114,17044.56883,56207.13039,0,20
+245115,16807.97744,56436.99426,0,20
+245116,17860.91909,56057.10237,0,20
+245117,16335.34007,56535.25959,0,20
+245118,16350.75313,56331.50604,0,20
+245119,15873.97619,55924.30178,134.0793773,20
+245120,15842.92634,56900.53661,251.0472761,20
+245121,15942.96738,55721.09291,181.4820828,20
+245122,16208.99853,56605.81359,243.3987635,20
+245123,16266.11548,56435.75581,243.4003881,20
+245124,16423.20509,56292.94126,289.0519057,20
+245125,16680.95561,56370.2217,281.4879128,20
+245126,16651.62037,56580.89317,451.1371497,20
+245127,17073.78487,56232.39002,482.3696111,20
+245128,17079.467,56357.36455,496.689203,20
+245129,17197.80806,56522.72744,535.155695,20
+245130,17640.47269,56357.39414,588.0513983,20
+245131,17538.1938,56610.9416,618.0240255,20
+245132,17866.88595,56333.89164,602.8208769,20
+245133,17884.03169,56611.03651,543.8758176,20
+245134,18295.42138,56425.52204,528.796757,20
+245135,18234.96169,56454.97737,558.962313,20
+245136,18335.39845,56530.74073,573.8264793,20
+245137,18665.1911,56457.22219,566.2679269,20
+245138,18671.88307,56499.483,588.7242868,20
+245139,18788.20808,56708.25205,588.4023837,20
+245140,18936.45053,56340.67627,603.1774532,20
+245141,19123.28795,56519.44849,603.1875103,20
+245142,19052.60995,56467.71903,617.3481492,20
+245143,19456.72664,56623.76273,617.3589417,20
+245144,19286.03806,56607.43117,631.9786002,20
+245145,19395.8361,56468.59674,631.2591719,20
+245146,19708.30944,56748.54943,645.7834542,20
+245147,19623.92899,56383.98814,630.4306204,20
+245148,19722.14957,56557.99083,660.2733864,20
+245149,19864.96558,56858.45491,643.9011698,20
+245150,19885.89391,56219.4979,643.9126894,20
+245151,20053.3614,56841.63011,672.6399854,20
+245152,20034.2012,56772.88136,650.5640065,20
+245153,20113.95098,56219.53313,671.4358156,20
+245154,20260.68627,57056.73165,655.8356292,20
+245155,20171.49583,56343.6548,670.1032596,20
+245156,20472.69456,57019.55828,654.409721,20
+245157,20420.21187,56486.07954,682.8152021,20
+245158,20432.38782,56718.20743,652.8438016,20
+245159,20520.74184,56718.21968,667.0336596,20
+245160,20655.64599,56730.65788,687.3451493,21
+245161,15820.88491,52113.17884,344.0500823,21
+245162,15420.15379,51672.85468,344.0533799,21
+245163,15311.888,51553.35,344.0566659,21
+245164,14953.09044,51494.8472,329.342579,21
+245165,14856.37339,51211.70536,358.7281727,21
+245166,14714.92475,51294.01519,329.3489345,21
+245167,14524.77534,51156.39869,358.7349252,21
+245168,14339.28806,50755.52098,329.3552834,21
+245169,14335.08074,51124.44723,358.741917,21
+245170,14210.50381,50535.21573,344.0795029,21
+245171,14308.15749,50502.16196,344.0829437,21
+245172,14171.67725,50597.90019,358.7523631,21
+245173,14059.32223,50301.08317,344.0896604,21
+245174,14152.199,50286.30942,358.7592844,21
+245175,13887.18931,50358.99318,344.0963662,21
+245176,14131.54324,49813.11515,358.7663909,21
+245177,13762.91977,49997.07183,358.7699201,21
+245178,13832.33336,49879.55095,344.1064962,21
+245179,13845.63856,49508.32322,358.7769741,21
+245180,13580.66914,49849.42756,358.7805573,21
+245181,13787.96463,49315.93556,344.1166165,21
+245182,13536.14211,49323.70957,358.7875661,21
+245183,13499.10211,49556.85052,358.7911434,21
+245184,13508.53423,48990.49488,344.1266634,21
+245185,13222.32802,49049.60228,358.7981553,21
+245186,13431.71738,49114.0952,358.8017319,21
+245187,13187.84876,48828.51692,344.1367295,21
+245188,13163.56838,48588.99356,344.1401602,21
+245189,12996.91986,48821.12556,358.8121786,21
+245190,13104.7643,48537.26209,344.1468749,21
+245191,12843.25818,48457.76332,344.1501313,21
+245192,12789.59256,48147.16508,358.8226237,21
+245193,12794.6057,48295.23693,329.4351724,21
+245194,12751.87683,47797.56494,358.8293341,21
+245195,12587.14659,47854.71484,329.4414372,21
+245196,12456.69808,47760.40794,344.1665832,21
+245197,12640.09019,47378.30126,329.4475834,21
+245198,12198.46254,47204.47367,329.4505619,21
+245199,12350.86049,47342.84157,329.453592,21
+245200,12375.03177,46821.3132,314.6796602,21
+245201,12118.66616,46820.12652,314.6822627,21
+245202,12095.6118,46751.14661,329.4623353,21
+245203,12085.78993,46301.97646,299.8543764,21
+245204,12050.54302,46269.20328,314.6905426,21
+245205,11817.31353,46341.1046,314.6933422,21
+245206,11899.79122,45766.28195,284.9695511,21
+245207,11771.92812,45843.17357,314.6985355,21
+245208,11736.32383,45656.15669,284.9742487,21
+245209,11537.45961,45319.35001,299.8693782,21
+245210,11667.40165,45189.56327,284.9787132,21
+245211,11373.37809,45079.61766,284.9810615,21
+245212,11432.80979,44760.98457,270.0290594,21
+245213,11421.54495,44746.00884,284.9853647,21
+245214,11150.25958,44574.62299,270.0331787,21
+245215,11162.41738,44161.26743,255.016887,21
+245216,11115.29286,44055.58786,270.036983,21
+245217,11092.38318,44144.40241,255.0205533,21
+245218,10866.41795,43472.30298,255.022334,21
+245219,10808.15336,43635.86521,224.7829145,21
+245220,10819.67124,43229.95962,239.940099,21
+245221,523.2232307,12828.56735,0,21
+245222,431.9759867,10921.72456,0,21
+245223,416.5689074,10639.8354,0,21
+245224,369.9747781,10004.92035,0,21
+245225,369.9748295,9720.018682,0,21
+245226,322.7869284,9053.16892,0,21
+245227,306.9142155,9004.769565,0,21
+245228,274.9360477,8548.326239,0,21
+245229,242.6210725,8089.147818,0,21
+245230,226.3266128,7602.392132,0,21
+245231,209.9336857,7577.759484,0,21
+245232,176.8254931,7087.188661,0,21
+245233,160.0938823,6617.80502,0,21
+245234,143.2303146,6592.976837,0,21
+245235,126.2216241,5893.9884,0,21
+245236,91.69744396,5818.993409,0,21
+245237,82.94295803,5389.535776,0,21
+245238,56.30761902,5085.190576,0,21
+245239,38.15858395,4855.085454,0,21
+245240,19.54800635,4340.444555,0,21
+245241,0,4289.498505,0,21
+245242,0,3727.108602,0,21
+245243,0,3505.831034,0,21
+245244,0,3292.773851,0,21
+245245,0,2757.808971,0,21
+245246,0,2705.885256,0,21
+245247,0,2213.315856,0,21
+245248,0,1910.456763,0,21
+245249,0,1783.859557,0,21
+245250,0,1318.349054,0,21
+245251,0,1053.039597,0,21
+245252,0,889.9851953,0,21
+245253,0,721.2891914,0,21
+245254,0,667.6320298,0,21
+245255,0,667.6320017,0,21
+245256,0,627.097213,0,21
+245257,0,599.9280687,0,21
+245258,0,572.6373339,0,21
+245259,0,545.2204026,0,21
+245260,0,503.8472079,0,21
+245261,0,503.8471917,0,21
+245262,0,434.1811812,0,21
+245263,0,420.1335119,0,21
+245264,0,391.9155117,0,21
+245265,0,334.9536006,0,21
+245266,0,334.9535871,0,21
+245267,0,277.2074618,0,21
+245268,0,248.0001055,0,21
+245269,0,218.5412845,0,21
+245270,0,188.802589,0,21
+245271,0,128.3236281,0,21
+245272,0,128.3236213,0,21
+245273,0,66.03342337,0,21
+245274,0,66.0334191,0,21
+245275,0,0,0,21
+245276,0,0,0,21
+245277,0,0,0,21
+245278,0,0,0,21
+245279,0,0,0,21
+245280,0,0,0,21
+245281,0,0,0,21
+245282,0,0,0,21
+245283,0,0,0,21
+245284,0,0,0,21
+245285,0,0,0,21
+245286,0,0,0,21
+245287,0,0,0,21
+245288,0,0,0,21
+245289,0,0,0,21
+245290,0,0,0,21
+245291,0,0,0,21
+245292,0,0,0,21
+245293,0,0,0,21
+245294,0,0,0,21
+245295,0,0,0,21
+245296,0,0,0,21
+245297,0,0,0,21
+245298,0,0,0,21
+245299,0,0,0,21
+245300,0,0,0,21
+245301,0,0,0,21
+245302,0,0,0,21
+245303,0,0,0,21
+245304,0,0,0,21
+245305,0,0,0,21
+245306,0,0,0,21
+245307,0,0,0,21
+245308,0,0,0,21
+245309,0,0,0,21
+245310,0,0,0,21
+245311,0,0,0,21
+245312,0,0,0,21
+245313,0,0,0,21
+245314,0,0,0,21
+245315,0,0,0,21
+245316,0,0,0,21
+245317,0,0,0,21
+245318,0,0,0,21
+245319,0,0,0,21
+245320,0,0,0,21
+245321,0,0,0,21
+245322,0,0,0,21
+245323,0,0,0,21
+245324,0,0,0,21
+245325,0,0,0,21
+245326,0,0,0,21
+245327,0,0,0,21
+245328,0,0,0,21
+245329,0,0,0,21
+245330,0,0,0,21
+245331,0,0,0,21
+245332,0,0,0,21
+245333,0,0,0,21
+245334,0,0,0,21
+245335,0,0,0,21
+245336,0,0,0,21
+245337,0,0,0,21
+245338,0,0,0,21
+245339,0,0,0,21
+245340,0,0,0,21
+245341,0,0,0,21
+245342,0,0,0,21
+245343,0,0,0,21
+245344,0,0,0,21
+245345,0,0,0,21
+245346,0,0,0,21
+245347,0,0,0,21
+245348,0,0,0,21
+245349,0,0,0,21
+245350,0,0,0,21
+245351,0,0,0,21
+245352,0,0,0,21
+245353,0,0,0,21
+245354,0,0,0,21
+245355,0,0,0,21
+245356,0,0,0,21
+245357,0,0,0,21
+245358,0,0,0,21
+245359,0,0,0,21
+245360,0,0,0,21
+245361,0,0,0,21
+245362,0,0,0,21
+245363,0,0,0,21
+245364,0,0,0,21
+245365,0,0,0,21
+245366,0,0,0,21
+245367,0,0,0,21
+245368,0,0,0,21
+245369,0,0,0,21
+245370,0,0,0,21
+245371,0,0,0,21
+245372,0,0,0,21
+245373,0,0,0,21
+245374,0,0,0,21
+245375,0,0,0,21
+245376,0,0,0,21
+245377,0,0,0,21
+245378,0,0,0,21
+245379,0,0,0,21
+245380,0,0,0,21
+245381,0,0,0,21
+245382,0,0,0,21
+245383,0,0,0,21
+245384,0,0,0,21
+245385,0,0,0,21
+245386,0,0,0,21
+245387,0,0,0,21
+245388,0,0,0,21
+245389,0,0,0,21
+245390,0,0,0,21
+245391,0,0,0,21
+245392,0,0,0,21
+245393,0,0,0,21
+245394,0,0,0,21
+245395,0,0,0,21
+245396,0,0,0,21
+245397,0,0,0,21
+245398,0,0,0,21
+245399,0,0,0,21
+245400,0,0,0,21
+245401,0,0,0,21
+245402,0,0,0,21
+245403,0,0,0,21
+245404,0,0,0,21
+245405,0,0,0,21
+245406,0,0,0,21
+245407,0,0,0,21
+245408,0,0,0,21
+245409,0,0,0,21
+245410,0,0,0,21
+245411,0,0,0,21
+245412,0,0,0,21
+245413,0,0,0,21
+245414,0,0,0,21
+245415,0,0,0,21
+245416,0,0,0,21
+245417,0,0,0,21
+245418,0,0,0,21
+245419,0,0,0,21
+245420,0,0,0,21
+245421,0,0,0,21
+245422,0,0,0,21
+245423,0,0,0,21
+245424,0,0,0,21
+245425,0,0,0,21
+245426,0,0,0,21
+245427,0,0,0,21
+245428,0,0,0,21
+245429,0,0,0,21
+245430,0,0,0,21
+245431,0,0,0,21
+245432,0,0,0,21
+245433,0,0,0,21
+245434,0,0,0,21
+245435,0,0,0,21
+245436,0,0,0,21
+245437,0,0,0,21
+245438,0,0,0,21
+245439,0,0,0,21
+245440,0,0,0,21
+245441,0,0,0,21
+245442,0,0,0,21
+245443,0,0,0,21
+245444,0,0,0,21
+245445,0,0,0,21
+245446,0,0,0,21
+245447,0,0,0,21
+245448,0,0,0,21
+245449,0,0,0,21
+245450,0,0,0,21
+245451,0,0,0,21
+245452,0,0,0,21
+245453,0,0,0,21
+245454,0,0,0,21
+245455,0,0,0,21
+245456,0,0,0,21
+245457,0,0,0,21
+245458,0,0,0,21
+245459,0,0,0,21
+245460,0,0,0,21
+245461,0,0,0,21
+245462,0,0,0,21
+245463,0,0,0,21
+245464,0,0,0,21
+245465,0,0,0,21
+245466,0,0,0,21
+245467,0,0,0,21
+245468,0,0,0,21
+245469,0,0,0,21
+245470,0,0,0,21
+245471,0,0,0,21
+245472,0,0,0,21
+245473,0,0,0,21
+245474,0,0,0,21
+245475,0,0,0,21
+245476,0,0,0,21
+245477,0,0,0,21
+245478,0,0,0,21
+245479,0,0,0,21
+245480,0,0,0,21
+245481,0,0,0,21
+245482,0,0,0,21
+245483,0,0,0,21
+245484,0,0,0,21
+245485,0,0,0,21
+245486,0,0,0,21
+245487,0,0,0,21
+245488,0,0,0,21
+245489,0,0,0,21
+245490,0,0,0,21
+245491,0,0,0,21
+245492,0,0,0,21
+245493,0,0,0,21
+245494,0,0,0,21
+245495,0,0,0,21
+245496,0,0,0,21
+245497,0,0,0,21
+245498,0,0,0,21
+245499,0,0,0,21
+245500,0,0,0,21
+245501,0,0,0,21
+245502,0,0,0,21
+245503,0,0,0,21
+245504,0,0,0,21
+245505,0,0,0,21
+245506,0,0,0,21
+245507,0,0,0,21
+245508,0,0,0,21
+245509,0,0,0,21
+245510,0,0,0,21
+245511,0,0,0,21
+245512,0,0,0,21
+245513,0,0,0,21
+245514,0,0,0,21
+245515,0,0,0,21
+245516,0,0,0,21
+245517,0,0,0,21
+245518,0,0,0,21
+245519,0,0,0,21
+245520,0,0,0,21
+245521,0,0,0,21
+245522,0,0,0,21
+245523,0,0,0,21
+245524,0,0,0,21
+245525,0,0,0,21
+245526,0,0,0,21
+245527,0,0,0,21
+245528,0,0,0,21
+245529,0,0,0,21
+245530,0,0,0,21
+245531,0,0,0,21
+245532,0,0,0,21
+245533,0,0,0,21
+245534,0,0,0,21
+245535,0,0,0,21
+245536,0,0,0,21
+245537,0,0,0,21
+245538,0,0,0,21
+245539,0,0,0,21
+245540,0,0,0,21
+245541,0,0,0,21
+245542,0,0,0,21
+245543,0,0,0,21
+245544,0,0,0,21
+245545,0,0,0,21
+245546,0,0,0,21
+245547,0,0,0,21
+245548,0,0,0,21
+245549,0,0,0,21
+245550,0,0,0,21
+245551,0,0,0,21
+245552,0,0,0,21
+245553,0,0,0,21
+245554,0,0,0,21
+245555,0,0,0,21
+245556,0,0,0,21
+245557,0,0,0,21
+245558,0,0,0,21
+245559,0,0,0,21
+245560,0,0,0,21
+245561,0,0,0,21
+245562,0,0,0,21
+245563,0,0,0,21
+245564,0,0,0,21
+245565,0,0,0,21
+245566,0,0,0,21
+245567,0,0,0,21
+245568,0,0,0,21
+245569,0,0,0,21
+245570,0,0,0,21
+245571,0,0,0,21
+245572,0,0,0,21
+245573,0,0,0,21
+245574,0,0,0,21
+245575,0,0,0,21
+245576,0,0,0,21
+245577,0,0,0,21
+245578,0,0,0,21
+245579,0,0,0,21
+245580,0,0,0,21
+245581,0,0,0,21
+245582,0,0,0,21
+245583,0,0,0,21
+245584,0,0,0,21
+245585,0,0,0,21
+245586,0,0,0,21
+245587,0,0,0,21
+245588,0,0,0,21
+245589,0,0,0,21
+245590,0,0,0,21
+245591,0,0,0,21
+245592,0,0,0,21
+245593,0,0,0,21
+245594,0,0,0,21
+245595,0,0,0,21
+245596,0,0,0,21
+245597,0,0,0,21
+245598,0,0,0,21
+245599,0,0,0,21
+245600,0,0,0,21
+245601,0,0,0,21
+245602,0,0,0,21
+245603,0,0,0,21
+245604,0,0,0,21
+245605,0,0,0,21
+245606,0,0,0,21
+245607,0,0,0,21
+245608,0,0,0,21
+245609,0,0,0,21
+245610,0,0,0,21
+245611,0,0,0,21
+245612,0,0,0,21
+245613,0,0,0,21
+245614,0,0,0,21
+245615,0,0,0,21
+245616,0,0,0,21
+245617,0,0,0,21
+245618,0,0,0,21
+245619,0,0,0,21
+245620,0,0,0,21
+245621,0,0,0,21
+245622,0,0,0,21
+245623,0,0,0,21
+245624,0,0,0,21
+245625,0,0,0,21
+245626,0,0,0,21
+245627,0,0,0,21
+245628,0,0,0,21
+245629,0,0,0,21
+245630,0,0,0,21
+245631,0,0,0,21
+245632,0,0,0,21
+245633,0,0,0,21
+245634,0,0,0,21
+245635,0,0,0,21
+245636,0,0,0,21
+245637,0,0,0,21
+245638,0,0,0,21
+245639,0,0,0,21
+245640,0,0,0,21
+245641,0,0,0,21
+245642,0,0,0,21
+245643,0,0,0,21
+245644,0,0,0,21
+245645,0,0,0,21
+245646,0,0,0,21
+245647,0,0,0,21
+245648,0,0,0,21
+245649,0,0,0,21
+245650,0,0,0,21
+245651,0,0,0,21
+245652,0,0,0,21
+245653,0,0,0,21
+245654,0,0,0,21
+245655,0,0,0,21
+245656,0,0,0,21
+245657,0,0,0,21
+245658,0,0,0,21
+245659,0,0,0,21
+245660,0,0,0,21
+245661,0,0,0,21
+245662,0,0,0,21
+245663,0,0,0,21
+245664,0,0,0,21
+245665,0,0,0,21
+245666,0,0,0,21
+245667,0,0,0,21
+245668,0,0,0,21
+245669,0,0,0,21
+245670,0,0,0,21
+245671,0,0,0,21
+245672,0,0,0,21
+245673,0,0,0,21
+245674,0,0,0,21
+245675,0,0,0,21
+245676,0,0,0,21
+245677,0,0,0,21
+245678,0,0,0,21
+245679,0,0,0,21
+245680,0,0,0,21
+245681,0,0,0,21
+245682,0,0,0,21
+245683,0,0,0,21
+245684,0,0,0,21
+245685,0,0,0,21
+245686,0,0,0,21
+245687,0,0,0,21
+245688,0,0,0,21
+245689,0,0,0,21
+245690,0,0,0,21
+245691,0,0,0,21
+245692,0,0,0,21
+245693,0,0,0,21
+245694,0,0,0,21
+245695,0,0,0,21
+245696,0,0,0,21
+245697,0,0,0,21
+245698,0,0,0,21
+245699,0,0,0,21
+245700,0,0,0,21
+245701,0,0,0,21
+245702,0,0,0,21
+245703,0,0,0,21
+245704,0,0,0,21
+245705,0,0,0,21
+245706,0,0,0,21
+245707,0,0,0,21
+245708,0,0,0,21
+245709,0,0,0,21
+245710,0,0,0,21
+245711,0,0,0,21
+245712,0,0,0,21
+245713,0,0,0,21
+245714,0,0,0,21
+245715,0,0,0,21
+245716,0,0,0,21
+245717,0,0,0,21
+245718,0,0,0,21
+245719,0,0,0,21
+245720,0,0,0,21
+245721,0,0,0,21
+245722,0,0,0,21
+245723,0,0,0,21
+245724,0,0,0,21
+245725,0,0,0,21
+245726,0,0,0,21
+245727,0,0,0,21
+245728,0,0,0,21
+245729,0,0,0,21
+245730,0,0,0,21
+245731,0,0,0,21
+245732,0,0,0,21
+245733,0,0,0,21
+245734,0,0,0,21
+245735,0,0,0,21
+245736,0,0,0,21
+245737,0,0,0,21
+245738,0,0,0,21
+245739,0,0,0,21
+245740,0,0,0,21
+245741,0,0,0,21
+245742,0,0,0,21
+245743,0,0,0,21
+245744,0,0,0,21
+245745,0,0,0,21
+245746,0,0,0,21
+245747,0,0,0,21
+245748,0,0,0,21
+245749,0,0,0,21
+245750,0,0,0,21
+245751,0,0,0,21
+245752,0,0,0,21
+245753,0,0,0,21
+245754,0,0,0,21
+245755,0,0,0,21
+245756,0,0,0,21
+245757,0,0,0,21
+245758,0,0,0,21
+245759,0,0,0,21
+245760,0,0,0,21
+245761,0,0,0,21
+245762,0,0,0,21
+245763,0,0,0,21
+245764,0,0,0,21
+245765,0,0,0,21
+245766,0,0,0,21
+245767,0,0,0,21
+245768,0,0,0,21
+245769,0,0,0,21
+245770,0,0,0,21
+245771,0,0,0,21
+245772,0,0,0,21
+245773,0,0,0,21
+245774,0,0,0,21
+245775,0,0,0,21
+245776,0,0,0,21
+245777,0,0,0,21
+245778,0,0,0,21
+245779,0,0,0,21
+245780,0,0,0,21
+245781,0,0,0,21
+245782,0,0,0,21
+245783,0,0,0,21
+245784,0,0,0,21
+245785,0,0,0,21
+245786,0,0,0,21
+245787,0,0,0,21
+245788,0,0,0,21
+245789,0,0,0,21
+245790,0,0,0,21
+245791,0,0,0,21
+245792,0,0,0,21
+245793,0,0,0,21
+245794,0,0,0,21
+245795,0,0,0,21
+245796,0,0,0,21
+245797,0,0,0,21
+245798,0,0,0,21
+245799,0,0,0,21
+245800,0,0,0,21
+245801,0,0,0,21
+245802,0,0,0,21
+245803,0,0,0,21
+245804,0,0,0,21
+245805,0,0,0,21
+245806,0,0,0,21
+245807,0,0,0,21
+245808,0,0,0,21
+245809,0,0,0,21
+245810,0,0,0,21
+245811,0,0,0,21
+245812,0,0,0,21
+245813,0,0,0,21
+245814,0,0,0,21
+245815,0,0,0,21
+245816,0,0,0,21
+245817,0,0,0,21
+245818,0,0,0,21
+245819,0,0,0,21
+245820,0,0,0,21
+245821,0,0,0,21
+245822,0,0,0,21
+245823,0,0,0,21
+245824,0,0,0,21
+245825,0,0,0,21
+245826,0,0,0,21
+245827,0,0,0,21
+245828,0,0,0,21
+245829,0,0,0,21
+245830,0,0,0,21
+245831,0,0,0,21
+245832,0,0,0,21
+245833,0,0,0,21
+245834,0,0,0,21
+245835,0,0,0,21
+245836,0,0,0,21
+245837,0,0,0,21
+245838,0,0,0,21
+245839,0,0,0,21
+245840,0,0,0,21
+245841,0,0,0,21
+245842,0,0,0,21
+245843,0,0,0,21
+245844,0,0,0,21
+245845,0,0,0,21
+245846,0,0,0,21
+245847,0,0,0,21
+245848,0,0,0,21
+245849,0,0,0,21
+245850,0,0,0,21
+245851,0,0,0,21
+245852,0,0,0,21
+245853,0,0,0,21
+245854,0,0,0,21
+245855,0,0,0,21
+245856,0,0,0,21
+245857,0,0,0,21
+245858,0,0,0,21
+245859,0,0,0,21
+245860,0,0,0,21
+245861,0,0,0,21
+245862,0,0,0,21
+245863,0,0,0,21
+245864,0,0,0,21
+245865,0,0,0,21
+245866,0,0,0,21
+245867,0,0,0,21
+245868,0,0,0,21
+245869,0,0,0,21
+245870,0,0,0,21
+245871,0,0,0,21
+245872,0,0,0,21
+245873,0,0,0,21
+245874,0,0,0,21
+245875,0,0,0,21
+245876,0,0,0,21
+245877,0,0,0,21
+245878,0,0,0,21
+245879,0,0,0,21
+245880,0,0,0,21
+245881,0,0,0,21
+245882,0,0,0,21
+245883,0,0,0,21
+245884,0,0,0,21
+245885,0,0,0,21
+245886,0,0,0,21
+245887,0,0,0,21
+245888,0,0,0,21
+245889,0,0,0,21
+245890,0,0,0,21
+245891,0,0,0,21
+245892,0,0,0,21
+245893,0,0,0,21
+245894,0,0,0,21
+245895,0,0,0,21
+245896,0,0,0,21
+245897,0,0,0,21
+245898,0,0,0,21
+245899,0,0,0,21
+245900,0,0,0,21
+245901,0,0,0,21
+245902,0,0,0,21
+245903,0,0,0,21
+245904,0,0,0,21
+245905,0,0,0,21
+245906,0,0,0,21
+245907,0,0,0,21
+245908,0,0,0,21
+245909,0,0,0,21
+245910,0,0,0,21
+245911,0,0,0,21
+245912,0,0,0,21
+245913,0,0,0,21
+245914,0,0,0,21
+245915,0,0,0,21
+245916,0,0,0,21
+245917,0,0,0,21
+245918,0,0,0,21
+245919,0,0,0,21
+245920,0,0,0,21
+245921,0,0,0,21
+245922,0,0,0,21
+245923,0,0,0,21
+245924,0,0,0,21
+245925,0,0,0,21
+245926,0,0,0,21
+245927,0,0,0,21
+245928,0,0,0,21
+245929,0,0,0,21
+245930,0,0,0,21
+245931,0,0,0,21
+245932,0,0,0,21
+245933,0,0,0,21
+245934,0,0,0,21
+245935,0,0,0,21
+245936,0,0,0,21
+245937,0,0,0,21
+245938,0,0,0,21
+245939,0,0,0,21
+245940,0,0,0,21
+245941,0,0,0,21
+245942,0,0,0,21
+245943,0,0,0,21
+245944,0,0,0,21
+245945,0,0,0,21
+245946,0,0,0,21
+245947,0,0,0,21
+245948,0,0,0,21
+245949,0,0,0,21
+245950,0,0,0,21
+245951,0,0,0,21
+245952,0,0,0,21
+245953,0,0,0,21
+245954,0,0,0,21
+245955,0,0,0,21
+245956,0,0,0,21
+245957,0,0,0,21
+245958,0,0,0,21
+245959,0,0,0,21
+245960,0,0,0,21
+245961,0,0,0,21
+245962,0,0,0,21
+245963,0,0,0,21
+245964,0,0,0,21
+245965,0,0,0,21
+245966,0,0,0,21
+245967,0,0,0,21
+245968,0,0,0,21
+245969,0,0,0,21
+245970,0,0,0,21
+245971,0,0,0,21
+245972,0,0,0,21
+245973,0,0,0,21
+245974,0,0,0,21
+245975,0,0,0,21
+245976,0,0,0,21
+245977,0,0,0,21
+245978,0,0,0,21
+245979,0,0,0,21
+245980,0,0,0,21
+245981,0,0,0,21
+245982,0,0,0,21
+245983,0,0,0,21
+245984,0,0,0,21
+245985,0,0,0,21
+245986,0,0,0,21
+245987,0,0,0,21
+245988,0,0,0,21
+245989,0,0,0,21
+245990,0,0,0,21
+245991,0,0,0,21
+245992,0,0,0,21
+245993,0,0,0,21
+245994,0,0,0,21
+245995,0,0,0,21
+245996,0,0,0,21
+245997,0,0,0,21
+245998,0,0,0,21
+245999,0,0,0,21
+246000,0,0,0,21
+246001,0,0,0,21
+246002,0,0,0,21
+246003,0,0,0,21
+246004,0,0,0,21
+246005,0,0,0,21
+246006,0,0,0,21
+246007,0,0,0,21
+246008,0,0,0,21
+246009,0,0,0,21
+246010,0,0,0,21
+246011,0,0,0,21
+246012,0,0,0,21
+246013,0,0,0,21
+246014,0,0,0,21
+246015,0,0,0,21
+246016,0,0,0,21
+246017,0,0,0,21
+246018,0,0,0,21
+246019,0,0,0,21
+246020,0,0,0,21
+246021,0,0,0,21
+246022,0,0,0,21
+246023,0,0,0,21
+246024,0,0,0,21
+246025,0,0,0,21
+246026,0,0,0,21
+246027,0,0,0,21
+246028,0,0,0,21
+246029,0,0,0,21
+246030,0,0,0,21
+246031,0,0,0,21
+246032,0,0,0,21
+246033,0,0,0,21
+246034,0,0,0,21
+246035,0,0,0,21
+246036,0,0,0,21
+246037,0,0,0,21
+246038,0,0,0,21
+246039,0,0,0,21
+246040,0,0,0,21
+246041,0,0,0,21
+246042,0,0,0,21
+246043,0,0,0,21
+246044,0,0,0,21
+246045,0,0,0,21
+246046,0,0,0,21
+246047,0,0,0,21
+246048,0,0,0,21
+246049,0,0,0,21
+246050,0,0,0,21
+246051,0,0,0,21
+246052,0,0,0,21
+246053,0,0,0,21
+246054,0,0,0,21
+246055,0,0,0,21
+246056,0,0,0,21
+246057,0,0,0,21
+246058,0,0,0,21
+246059,0,0,0,21
+246060,0,0,0,21
+246061,0,0,0,21
+246062,0,0,0,21
+246063,0,0,0,21
+246064,0,0,0,21
+246065,0,356925.5151,659389.1666,21
+246066,334307.0935,0,0,21
+246067,0,0,0,21
+246068,0,0,0,21
+246069,0,0,0,21
+246070,0,0,0,21
+246071,0,0,0,21
+246072,0,0,0,21
+246073,0,0,0,21
+246074,0,0,0,21
+246075,0,0,0,21
+246076,0,0,0,21
+246077,0,0,0,21
+246078,0,0,0,21
+246079,0,0,0,21
+246080,0,0,0,21
+246081,0,0,0,21
+246082,0,0,0,21
+246083,0,0,0,21
+246084,0,0,0,21
+246085,0,0,0,21
+246086,0,0,0,21
+246087,0,0,0,21
+246088,0,0,0,21
+246089,0,0,0,21
+246090,0,0,0,21
+246091,0,0,0,21
+246092,0,0,0,21
+246093,0,0,0,21
+246094,0,0,0,21
+246095,0,0,0,21
+246096,0,0,0,21
+246097,0,0,0,21
+246098,0,0,0,21
+246099,0,357509.5956,660038.9886,21
+246100,0,0,0,21
+246101,334523.4275,0,0,21
+246102,0,0,0,21
+246103,0,0,0,21
+246104,0,0,0,21
+246105,0,0,0,21
+246106,0,0,0,21
+246107,0,0,0,21
+246108,0,0,0,21
+246109,0,0,0,21
+246110,0,0,0,21
+246111,0,0,0,21
+246112,0,0,0,21
+246113,0,0,0,21
+246114,0,0,0,21
+246115,0,0,0,21
+246116,0,0,0,21
+246117,0,0,0,21
+246118,0,0,0,21
+246119,0,0,0,21
+246120,0,0,0,15.6
+246121,0,0,0,15.6
+246122,0,0,0,15.6
+246123,0,0,0,15.6
+246124,0,0,0,15.6
+246125,0,0,0,15.6
+246126,0,0,0,15.6
+246127,0,0,0,15.6
+246128,0,0,0,15.6
+246129,0,0,0,15.6
+246130,0,0,0,15.6
+246131,0,0,0,15.6
+246132,0,0,0,15.6
+246133,0,357032.3381,660577.1792,15.6
+246134,0,0,0,15.6
+246135,0,0,0,15.6
+246136,334775.4277,0,0,15.6
+246137,0,0,0,15.6
+246138,0,0,0,15.6
+246139,0,0,0,15.6
+246140,0,0,0,15.6
+246141,0,0,0,15.6
+246142,0,0,0,15.6
+246143,0,0,0,15.6
+246144,0,0,0,15.6
+246145,0,0,0,15.6
+246146,0,0,0,15.6
+246147,0,0,0,15.6
+246148,0,0,0,15.6
+246149,0,0,0,15.6
+246150,0,0,0,15.6
+246151,0,0,0,15.6
+246152,0,0,0,15.6
+246153,0,0,0,15.6
+246154,0,0,0,15.6
+246155,0,0,0,15.6
+246156,0,0,0,15.6
+246157,0,0,0,15.6
+246158,0,0,0,15.6
+246159,0,0,0,15.6
+246160,0,0,0,15.6
+246161,0,0,0,15.6
+246162,0,0,0,15.6
+246163,0,0,0,15.6
+246164,0,0,0,15.6
+246165,0,0,0,15.6
+246166,0,0,0,15.6
+246167,0,357427.6154,660616.9999,15.6
+246168,0,0,0,15.6
+246169,0,0,0,15.6
+246170,0,0,0,15.6
+246171,334952.8652,0,0,15.6
+246172,0,0,0,15.6
+246173,0,0,0,15.6
+246174,0,0,0,15.6
+246175,0,0,0,15.6
+246176,0,0,0,15.6
+246177,0,0,0,15.6
+246178,0,0,0,15.6
+246179,0,0,0,15.6
+246180,0,0,0,15.6
+246181,0,0,0,15.6
+246182,0,0,0,15.6
+246183,0,0,0,15.6
+246184,0,0,0,15.6
+246185,0,0,0,15.6
+246186,0,0,0,15.6
+246187,0,0,0,15.6
+246188,0,0,0,15.6
+246189,0,0,0,15.6
+246190,0,0,0,15.6
+246191,0,0,0,15.6
+246192,0,0,0,15.6
+246193,0,0,0,15.6
+246194,0,0,0,15.6
+246195,0,0,0,15.6
+246196,0,0,0,15.6
+246197,0,0,0,15.6
+246198,0,0,0,15.6
+246199,0,0,0,15.6
+246200,0,0,0,15.6
+246201,0,0,661169.2011,15.6
+246202,0,357084.0553,0,15.6
+246203,0,0,0,15.6
+246204,0,0,0,15.6
+246205,0,0,0,15.6
+246206,335733.9784,0,0,15.6
+246207,0,0,0,15.6
+246208,0,0,0,15.6
+246209,0,0,0,15.6
+246210,0,0,0,15.6
+246211,0,0,0,15.6
+246212,0,0,0,15.6
+246213,0,0,0,15.6
+246214,0,0,0,15.6
+246215,0,0,0,15.6
+246216,0,0,0,15.6
+246217,0,0,0,15.6
+246218,0,0,0,15.6
+246219,0,0,0,15.6
+246220,0,0,0,15.6
+246221,0,0,0,15.6
+246222,0,0,0,15.6
+246223,0,0,0,15.6
+246224,0,0,0,15.6
+246225,0,0,0,15.6
+246226,0,0,0,15.6
+246227,0,0,0,15.6
+246228,0,0,0,15.6
+246229,0,0,0,15.6
+246230,0,0,0,15.6
+246231,0,0,0,15.6
+246232,0,0,0,15.6
+246233,0,0,0,15.6
+246234,0,0,0,15.6
+246235,0,0,660987.84,15.6
+246236,0,0,0,15.6
+246237,0,358732.9976,0,15.6
+246238,0,0,0,15.6
+246239,0,0,0,15.6
+246240,0,0,0,15.6
+246241,335209.7432,0,0,15.6
+246242,0,0,0,15.6
+246243,0,0,0,15.6
+246244,0,0,0,15.6
+246245,0,0,0,15.6
+246246,0,0,0,15.6
+246247,0,0,0,15.6
+246248,0,0,0,15.6
+246249,0,0,0,15.6
+246250,0,0,0,15.6
+246251,0,0,0,15.6
+246252,0,0,0,15.6
+246253,0,0,0,15.6
+246254,0,0,0,15.6
+246255,0,0,0,15.6
+246256,0,0,0,15.6
+246257,0,0,0,15.6
+246258,0,0,0,15.6
+246259,0,0,0,15.6
+246260,0,0,0,15.6
+246261,0,0,0,15.6
+246262,0,0,0,15.6
+246263,0,0,0,15.6
+246264,0,0,0,15.6
+246265,0,0,0,15.6
+246266,0,0,0,15.6
+246267,0,0,0,15.6
+246268,0,0,0,15.6
+246269,0,0,661345.9296,15.6
+246270,0,0,0,15.6
+246271,0,0,0,15.6
+246272,0,357273.5843,0,15.6
+246273,0,0,0,15.6
+246274,0,0,0,15.6
+246275,0,0,0,15.6
+246276,336356.2904,0,0,15.6
+246277,0,0,0,15.6
+246278,0,0,0,15.6
+246279,0,0,0,15.6
+246280,0,0,0,15.6
+246281,0,0,0,15.6
+246282,0,0,0,15.6
+246283,0,0,0,15.6
+246284,0,0,0,15.6
+246285,0,0,0,15.6
+246286,0,0,0,15.6
+246287,0,0,0,15.6
+246288,0,0,0,15.6
+246289,0,0,0,15.6
+246290,0,0,0,15.6
+246291,0,0,0,15.6
+246292,0,0,0,15.6
+246293,0,0,0,15.6
+246294,0,0,0,15.6
+246295,0,0,0,15.6
+246296,0,0,0,15.6
+246297,0,0,0,15.6
+246298,0,0,0,15.6
+246299,0,0,0,15.6
+246300,0,0,0,15.6
+246301,0,0,0,15.6
+246302,0,0,0,15.6
+246303,0,0,660603.7941,15.6
+246304,0,0,0,15.6
+246305,0,0,0,15.6
+246306,0,0,0,15.6
+246307,0,358459.4416,0,15.6
+246308,0,0,0,15.6
+246309,0,0,0,15.6
+246310,0,0,0,15.6
+246311,337346.7787,0,0,15.6
+246312,0,0,0,15.6
+246313,0,0,0,15.6
+246314,0,0,0,15.6
+246315,0,0,0,15.6
+246316,0,0,0,15.6
+246317,0,0,0,15.6
+246318,0,0,0,15.6
+246319,0,0,0,15.6
+246320,0,0,0,15.6
+246321,0,0,0,15.6
+246322,0,0,0,15.6
+246323,0,0,0,15.6
+246324,0,0,0,15.6
+246325,0,0,0,15.6
+246326,0,0,0,15.6
+246327,0,0,0,15.6
+246328,0,0,0,15.6
+246329,0,0,0,15.6
+246330,0,0,0,15.6
+246331,0,0,0,15.6
+246332,0,0,0,15.6
+246333,0,0,0,15.6
+246334,0,0,0,15.6
+246335,0,0,0,15.6
+246336,0,0,0,15.6
+246337,0,0,661485.6768,15.6
+246338,0,0,0,15.6
+246339,0,0,0,15.6
+246340,0,0,0,15.6
+246341,0,0,0,15.6
+246342,0,360055.2386,0,15.6
+246343,0,0,0,15.6
+246344,0,0,0,15.6
+246345,0,0,0,15.6
+246346,335864.8919,0,0,15.6
+246347,0,0,0,15.6
+246348,0,0,0,15.6
+246349,0,0,0,15.6
+246350,0,0,0,15.6
+246351,0,0,0,15.6
+246352,0,0,0,15.6
+246353,0,0,0,15.6
+246354,0,0,0,15.6
+246355,0,0,0,15.6
+246356,0,0,0,15.6
+246357,0,0,0,15.6
+246358,0,0,0,15.6
+246359,0,0,0,15.6
+246360,0,0,0,15.6
+246361,0,0,0,15.6
+246362,0,0,0,15.6
+246363,0,0,0,15.6
+246364,0,0,0,15.6
+246365,0,0,0,15.6
+246366,0,0,0,15.6
+246367,0,0,0,15.6
+246368,0,0,0,15.6
+246369,0,0,0,15.6
+246370,0,0,0,15.6
+246371,0,0,660668.2531,15.6
+246372,0,0,0,15.6
+246373,0,0,0,15.6
+246374,0,0,0,15.6
+246375,0,0,0,15.6
+246376,0,0,0,15.6
+246377,0,360876.2494,0,15.6
+246378,0,0,0,15.6
+246379,0,0,0,15.6
+246380,0,0,0,15.6
+246381,337376.8247,0,0,15.6
+246382,0,0,0,15.6
+246383,0,0,0,15.6
+246384,0,0,0,15.6
+246385,0,0,0,15.6
+246386,0,0,0,15.6
+246387,0,0,0,15.6
+246388,0,0,0,15.6
+246389,0,0,0,15.6
+246390,0,0,0,15.6
+246391,0,0,0,15.6
+246392,0,0,0,15.6
+246393,0,0,0,15.6
+246394,0,0,0,15.6
+246395,0,0,0,15.6
+246396,0,0,0,15.6
+246397,0,0,0,15.6
+246398,0,0,0,15.6
+246399,0,0,0,15.6
+246400,0,0,0,15.6
+246401,0,0,0,15.6
+246402,0,0,0,15.6
+246403,0,0,0,15.6
+246404,0,0,0,15.6
+246405,0,0,661943.4272,15.6
+246406,0,0,0,15.6
+246407,0,0,0,15.6
+246408,0,0,0,15.6
+246409,0,0,0,15.6
+246410,0,0,0,15.6
+246411,0,0,0,15.6
+246412,0,357480.9688,0,15.6
+246413,0,0,0,15.6
+246414,0,0,0,15.6
+246415,0,0,0,15.6
+246416,335783.0719,0,0,15.6
+246417,0,0,0,15.6
+246418,0,0,0,15.6
+246419,0,0,0,15.6
+246420,0,0,0,15.6
+246421,0,0,0,15.6
+246422,0,0,0,15.6
+246423,0,0,0,15.6
+246424,0,0,0,15.6
+246425,0,0,0,15.6
+246426,0,0,0,15.6
+246427,0,0,0,15.6
+246428,0,0,0,15.6
+246429,0,0,0,15.6
+246430,0,0,0,15.6
+246431,0,0,0,15.6
+246432,0,0,0,15.6
+246433,0,0,0,15.6
+246434,0,0,0,15.6
+246435,0,0,0,15.6
+246436,0,0,0,15.6
+246437,0,0,0,15.6
+246438,0,0,0,15.6
+246439,0,0,660609.7356,15.6
+246440,0,0,0,15.6
+246441,0,0,0,15.6
+246442,0,0,0,15.6
+246443,0,0,0,15.6
+246444,0,0,0,15.6
+246445,0,0,0,15.6
+246446,0,0,0,15.6
+246447,0,357528.8473,0,15.6
+246448,0,0,0,15.6
+246449,0,0,0,15.6
+246450,336742.1193,0,0,15.6
+246451,0,0,0,15.6
+246452,0,0,0,15.6
+246453,0,0,0,15.6
+246454,0,0,0,15.6
+246455,0,0,0,15.6
+246456,0,0,0,15.6
+246457,0,0,0,15.6
+246458,0,0,0,15.6
+246459,0,0,0,15.6
+246460,0,0,0,15.6
+246461,0,0,0,15.6
+246462,0,0,0,15.6
+246463,0,0,0,15.6
+246464,0,0,0,15.6
+246465,0,0,0,15.6
+246466,0,0,0,15.6
+246467,0,0,0,15.6
+246468,0,0,0,15.6
+246469,0,0,0,15.6
+246470,0,0,0,15.6
+246471,0,0,0,15.6
+246472,0,0,0,15.6
+246473,0,0,661781.2281,15.6
+246474,0,0,0,15.6
+246475,0,0,0,15.6
+246476,0,0,0,15.6
+246477,0,0,0,15.6
+246478,0,0,0,15.6
+246479,0,0,0,15.6
+246480,0,0,0,17.8
+246481,0,360111.5375,0,17.8
+246482,0,0,0,17.8
+246483,0,0,0,17.8
+246484,337015.6396,0,0,17.8
+246485,0,0,0,17.8
+246486,0,0,0,17.8
+246487,0,0,0,17.8
+246488,0,0,0,17.8
+246489,0,0,0,17.8
+246490,0,0,0,17.8
+246491,0,0,0,17.8
+246492,0,0,0,17.8
+246493,0,0,0,17.8
+246494,0,0,0,17.8
+246495,0,0,0,17.8
+246496,0,0,0,17.8
+246497,0,0,0,17.8
+246498,0,0,0,17.8
+246499,0,0,0,17.8
+246500,0,0,0,17.8
+246501,0,0,0,17.8
+246502,0,0,0,17.8
+246503,0,0,0,17.8
+246504,0,0,0,17.8
+246505,0,0,0,17.8
+246506,0,0,0,17.8
+246507,0,0,660413.4063,17.8
+246508,0,0,0,17.8
+246509,0,0,0,17.8
+246510,0,0,0,17.8
+246511,0,0,0,17.8
+246512,0,0,0,17.8
+246513,0,0,0,17.8
+246514,0,0,0,17.8
+246515,0,359193.5871,0,17.8
+246516,0,0,0,17.8
+246517,0,0,0,17.8
+246518,336071.3248,0,0,17.8
+246519,0,0,0,17.8
+246520,0,0,0,17.8
+246521,0,0,0,17.8
+246522,0,0,0,17.8
+246523,0,0,0,17.8
+246524,0,0,0,17.8
+246525,0,0,0,17.8
+246526,0,0,0,17.8
+246527,0,0,0,17.8
+246528,0,0,0,17.8
+246529,0,0,0,17.8
+246530,0,0,0,17.8
+246531,0,0,0,17.8
+246532,0,0,0,17.8
+246533,0,0,0,17.8
+246534,0,0,0,17.8
+246535,0,0,0,17.8
+246536,0,0,0,17.8
+246537,0,0,0,17.8
+246538,0,0,0,17.8
+246539,0,0,0,17.8
+246540,0,0,0,20
+246541,0,236537.5553,661723.7733,20
+246542,0,0,0,20
+246543,0,0,0,20
+246544,0,476.0953577,0,20
+246545,0,44977.59899,0,20
+246546,0,31736.80714,0,20
+246547,0,27142.9936,0,20
+246548,0,30752.40337,0,20
+246549,493.052168,32183.76886,0,20
+246550,1398.423714,32011.65541,0,20
+246551,772.7376203,32303.62062,0,20
+246552,997.5323841,32363.26509,0,20
+246553,1038.757666,32660.67123,0,20
+246554,1052.439025,32717.63864,0,20
+246555,1066.090665,32875.22864,0,20
+246556,1079.712745,33030.58017,0,20
+246557,1106.869979,33205.96024,0,20
+246558,1106.869979,33227.85999,0,20
+246559,1133.912422,33539.35104,0,20
+246560,1147.391276,33572.70101,0,20
+246561,1147.391273,33677.02855,0,20
+246562,1174.265391,33588.64759,0,20
+246563,1174.265398,34204.06955,0,20
+246564,1187.661124,33878.68324,0,20
+246565,1201.029603,34257.31146,118.097509,20
+246566,1214.371063,34015.15887,228.1258184,20
+246567,2061.880697,34409.6492,165.8478017,20
+246568,2485.441607,34225.13417,228.128356,20
+246569,2340.985656,34561.56331,243.4945036,20
+246570,2628.864488,34853.95995,266.4073413,20
+246571,2628.864503,34219.53292,289.1671703,20
+246572,3040.513842,34906.81392,289.1694843,20
+246573,2899.719509,34869.2026,165.8543895,20
+246574,3167.351157,34722.74184,218.0704675,20
+246575,3180.534698,35175.88367,313.5506988,20
+246576,3445.29072,34738.41734,266.2876961,20
+246577,3432.132849,35191.59806,329.123009,20
+246578,3707.482079,35186.46632,329.1259156,20
+246579,3570.122352,34871.35855,375.2788631,20
+246580,3844.238561,35202.10522,344.1794004,20
+246581,3844.238601,35491.07177,405.6514583,20
+246582,3967.333843,35066.23661,397.7659369,20
+246583,4116.035925,35485.86843,427.8550462,20
+246584,4211.946852,35015.53838,419.9438715,20
+246585,4238.086031,35528.46913,465.5854285,20
+246586,4238.086035,35485.87274,448.6954636,20
+246587,4493.751101,35181.05259,432.6654982,20
+246588,4480.718648,35640.75238,445.9884816,20
+246589,4506.758901,35293.29889,444.3381391,20
+246590,4747.538718,35544.04077,444.3434663,20
+246591,4627.373201,35405.52271,457.032294,20
+246592,4747.538779,35335.89912,440.3323435,20
+246593,4867.268608,35783.7597,477.7087624,20
+246594,4893.211144,35330.39685,452.3601102,20
+246595,4986.575019,35405.52849,466.7925362,20
+246596,5012.517542,35790.45149,463.8313802,20
+246597,5131.411929,35426.84929,460.0634679,20
+246598,5131.411875,35457.80365,474.3684768,20
+246599,5131.411889,35532.69643,488.633389,20
+246600,5262.839813,35500.08587,488.640323,21
+246601,3654.801578,31011.80245,329.3747348,21
+246602,3379.244167,30211.11198,299.7750329,21
+246603,3267.040173,30332.92766,314.607189,21
+246604,3365.956124,30051.20559,314.6099128,21
+246605,3379.244116,29926.86417,314.6126569,21
+246606,3240.490571,29645.14212,314.6153888,21
+246607,3240.490544,29667.01023,329.3919907,21
+246608,3365.956121,29422.68318,314.6209802,21
+246609,3101.043245,29237.6959,329.3977372,21
+246610,3352.641478,28752.96056,329.400876,21
+246611,3114.357876,29221.76396,344.1240618,21
+246612,3339.300006,28545.32857,329.4068935,21
+246613,3087.70177,28690.32994,344.1305129,21
+246614,3227.175919,28529.39633,344.1337829,21
+246615,3074.333277,28173.01948,344.1369639,21
+246616,3213.834446,28491.39746,344.1403654,21
+246617,3074.333269,27948.38864,358.8123715,21
+246618,3200.465952,27979.68329,358.8158407,21
+246619,3074.333272,27764.82238,344.1504911,21
+246620,3060.937541,27606.00724,358.8229597,21
+246621,3060.937514,27748.84763,358.826427,21
+246622,3060.937535,27234.62374,358.83012,21
+246623,2934.100169,27358.45951,358.8336862,21
+246624,3034.063348,27049.96673,373.4563191,21
+246625,2934.100196,27170.76314,344.171013,21
+246626,3034.063349,26658.18902,373.4638959,21
+246627,2779.641049,26846.25095,358.8480189,21
+246628,2907.226007,26594.04616,373.4715147,21
+246629,2893.747135,26284.47889,358.8554251,21
+246630,2779.641045,26453.73467,358.858884,21
+246631,2880.240101,25890.53839,358.8625757,21
+246632,2766.162177,26370.79779,373.4865849,21
+246633,2752.655122,25559.77609,344.1986295,21
+246634,2752.655122,25852.12442,358.8731455,21
+246635,2752.655143,25662.64829,358.8768648,21
+246636,2739.119664,25309.15202,344.2087619,21
+246637,2752.65511,25499.00058,344.2120282,21
+246638,2725.555574,25080.39226,344.2153413,21
+246639,2610.737321,24938.60118,344.2185939,21
+246640,2725.555449,25057.94786,329.4972456,21
+246641,2725.555585,24748.03334,344.2250543,21
+246642,2597.173211,24686.89233,314.7241911,21
+246643,2725.555438,24353.63391,329.5061501,21
+246644,2569.958111,24304.63101,314.7298321,21
+246645,2725.555437,24331.10031,314.7325415,21
+246646,2569.957963,24123.5437,299.8993154,21
+246647,2583.580305,23948.08638,299.9017782,21
+246648,2698.3402,23750.1348,299.9042844,21
+246649,2427.068856,24067.82244,285.0118746,21
+246650,2698.340179,23574.3462,285.0141079,21
+246651,2556.306422,23727.51519,285.0163693,21
+246652,2556.306384,23502.10887,270.0623875,21
+246653,2542.625004,23176.90359,270.0643883,21
+246654,2556.306379,23342.98635,255.0461581,21
+246655,2413.387595,23104.7394,255.0480479,21
+246656,2657.295849,22945.01637,255.0498277,21
+246657,2413.387564,22961.34755,224.8069198,21
+246658,2528.913605,22519.01227,239.9658774,21
+246659,2515.171964,22585.05099,224.8098564,21
+246660,2413.387307,22391.42394,224.8111452,21
+246661,0,277.2099102,0,21
+246662,0,173.8184971,0,21
+246663,0,97.45950464,0,21
+246664,0,97.45950572,0,21
+246665,0,33.8166225,0,21
+246666,0,33.81662283,0,21
+246667,0,0,0,21
+246668,0,0,0,21
+246669,0,0,0,21
+246670,0,0,0,21
+246671,0,0,0,21
+246672,0,0,0,21
+246673,0,0,0,21
+246674,0,0,0,21
+246675,0,0,0,21
+246676,0,0,0,21
+246677,0,0,0,21
+246678,0,0,0,21
+246679,0,0,0,21
+246680,0,0,0,21
+246681,0,0,0,21
+246682,0,0,0,21
+246683,0,0,0,21
+246684,0,0,0,21
+246685,0,0,0,21
+246686,0,0,0,21
+246687,0,0,0,21
+246688,0,0,0,21
+246689,0,0,0,21
+246690,0,0,0,21
+246691,0,0,0,21
+246692,0,0,0,21
+246693,0,0,0,21
+246694,0,0,0,21
+246695,0,0,0,21
+246696,0,0,0,21
+246697,0,0,0,21
+246698,0,0,0,21
+246699,0,0,0,21
+246700,0,0,0,21
+246701,0,0,0,21
+246702,0,0,0,21
+246703,0,0,0,21
+246704,0,0,0,21
+246705,0,0,0,21
+246706,0,0,0,21
+246707,0,0,0,21
+246708,0,0,0,21
+246709,0,0,0,21
+246710,0,0,0,21
+246711,0,0,0,21
+246712,0,0,0,21
+246713,0,0,0,21
+246714,0,0,0,21
+246715,0,0,0,21
+246716,0,0,0,21
+246717,0,0,0,21
+246718,0,0,0,21
+246719,0,0,0,21
+246720,0,0,0,21
+246721,0,0,0,21
+246722,0,0,0,21
+246723,0,0,0,21
+246724,0,0,0,21
+246725,0,0,0,21
+246726,0,0,0,21
+246727,0,0,0,21
+246728,0,0,0,21
+246729,0,0,0,21
+246730,0,0,0,21
+246731,0,0,0,21
+246732,0,0,0,21
+246733,0,0,0,21
+246734,0,0,0,21
+246735,0,0,0,21
+246736,0,0,0,21
+246737,0,0,0,21
+246738,0,0,0,21
+246739,0,0,0,21
+246740,0,0,0,21
+246741,0,0,0,21
+246742,0,0,0,21
+246743,0,0,0,21
+246744,0,0,0,21
+246745,0,0,0,21
+246746,0,0,0,21
+246747,0,0,0,21
+246748,0,0,0,21
+246749,0,0,0,21
+246750,0,0,0,21
+246751,0,0,0,21
+246752,0,0,0,21
+246753,0,0,0,21
+246754,0,0,0,21
+246755,0,0,0,21
+246756,0,0,0,21
+246757,0,0,0,21
+246758,0,0,0,21
+246759,0,0,0,21
+246760,0,0,0,21
+246761,0,0,0,21
+246762,0,0,0,21
+246763,0,0,0,21
+246764,0,0,0,21
+246765,0,0,0,21
+246766,0,0,0,21
+246767,0,0,0,21
+246768,0,0,0,21
+246769,0,0,0,21
+246770,0,0,0,21
+246771,0,0,0,21
+246772,0,0,0,21
+246773,0,0,0,21
+246774,0,0,0,21
+246775,0,0,0,21
+246776,0,0,0,21
+246777,0,0,0,21
+246778,0,0,0,21
+246779,0,0,0,21
+246780,0,0,0,21
+246781,0,0,0,21
+246782,0,0,0,21
+246783,0,0,0,21
+246784,0,0,0,21
+246785,0,0,0,21
+246786,0,0,0,21
+246787,0,0,0,21
+246788,0,0,0,21
+246789,0,0,0,21
+246790,0,0,0,21
+246791,0,0,0,21
+246792,0,0,0,21
+246793,0,0,0,21
+246794,0,0,0,21
+246795,0,0,0,21
+246796,0,0,0,21
+246797,0,0,0,21
+246798,0,0,0,21
+246799,0,0,0,21
+246800,0,0,0,21
+246801,0,0,0,21
+246802,0,0,0,21
+246803,0,0,0,21
+246804,0,0,0,21
+246805,0,0,0,21
+246806,0,0,0,21
+246807,0,0,0,21
+246808,0,0,0,21
+246809,0,0,0,21
+246810,0,0,0,21
+246811,0,0,0,21
+246812,0,0,0,21
+246813,0,0,0,21
+246814,0,0,0,21
+246815,0,0,0,21
+246816,0,0,0,21
+246817,0,0,0,21
+246818,0,0,0,21
+246819,0,0,0,21
+246820,0,0,0,21
+246821,0,0,0,21
+246822,0,0,0,21
+246823,0,0,0,21
+246824,0,0,0,21
+246825,0,0,0,21
+246826,0,0,0,21
+246827,0,0,0,21
+246828,0,0,0,21
+246829,0,0,0,21
+246830,0,0,0,21
+246831,0,0,0,21
+246832,0,0,0,21
+246833,0,0,0,21
+246834,0,0,0,21
+246835,0,0,0,21
+246836,0,0,0,21
+246837,0,0,0,21
+246838,0,0,0,21
+246839,0,0,0,21
+246840,0,0,0,21
+246841,0,0,0,21
+246842,0,0,0,21
+246843,0,0,0,21
+246844,0,0,0,21
+246845,0,0,0,21
+246846,0,0,0,21
+246847,0,0,0,21
+246848,0,0,0,21
+246849,0,0,0,21
+246850,0,0,0,21
+246851,0,0,0,21
+246852,0,0,0,21
+246853,0,0,0,21
+246854,0,0,0,21
+246855,0,0,0,21
+246856,0,0,0,21
+246857,0,0,0,21
+246858,0,0,0,21
+246859,0,0,0,21
+246860,0,0,0,21
+246861,0,0,0,21
+246862,0,0,0,21
+246863,0,0,0,21
+246864,0,0,0,21
+246865,0,0,0,21
+246866,0,0,0,21
+246867,0,0,0,21
+246868,0,0,0,21
+246869,0,0,0,21
+246870,0,0,0,21
+246871,0,0,0,21
+246872,0,0,0,21
+246873,0,0,0,21
+246874,0,0,0,21
+246875,0,0,0,21
+246876,0,0,0,21
+246877,0,0,0,21
+246878,0,0,0,21
+246879,0,0,0,21
+246880,0,0,0,21
+246881,0,0,0,21
+246882,0,0,0,21
+246883,0,0,0,21
+246884,0,0,0,21
+246885,0,0,0,21
+246886,0,0,0,21
+246887,0,0,0,21
+246888,0,0,0,21
+246889,0,0,0,21
+246890,0,0,0,21
+246891,0,0,0,21
+246892,0,0,0,21
+246893,0,0,0,21
+246894,0,0,0,21
+246895,0,0,0,21
+246896,0,0,0,21
+246897,0,0,0,21
+246898,0,0,0,21
+246899,0,0,0,21
+246900,0,0,0,21
+246901,0,0,0,21
+246902,0,0,0,21
+246903,0,0,0,21
+246904,0,0,0,21
+246905,0,0,0,21
+246906,0,0,0,21
+246907,0,0,0,21
+246908,0,0,0,21
+246909,0,0,0,21
+246910,0,0,0,21
+246911,0,0,0,21
+246912,0,0,0,21
+246913,0,0,0,21
+246914,0,0,0,21
+246915,0,0,0,21
+246916,0,0,0,21
+246917,0,0,0,21
+246918,0,0,0,21
+246919,0,0,0,21
+246920,0,0,0,21
+246921,0,0,0,21
+246922,0,0,0,21
+246923,0,0,0,21
+246924,0,0,0,21
+246925,0,0,0,21
+246926,0,0,0,21
+246927,0,0,0,21
+246928,0,0,0,21
+246929,0,0,0,21
+246930,0,0,0,21
+246931,0,0,0,21
+246932,0,0,0,21
+246933,0,0,0,21
+246934,0,0,0,21
+246935,0,0,0,21
+246936,0,0,0,21
+246937,0,0,0,21
+246938,0,0,0,21
+246939,0,0,0,21
+246940,0,0,0,21
+246941,0,0,0,21
+246942,0,0,0,21
+246943,0,0,0,21
+246944,0,0,0,21
+246945,0,0,0,21
+246946,0,0,0,21
+246947,0,0,0,21
+246948,0,0,0,21
+246949,0,0,0,21
+246950,0,0,0,21
+246951,0,0,0,21
+246952,0,0,0,21
+246953,0,0,0,21
+246954,0,0,0,21
+246955,0,0,0,21
+246956,0,0,0,21
+246957,0,0,0,21
+246958,0,0,0,21
+246959,0,0,0,21
+246960,0,0,0,21
+246961,0,0,0,21
+246962,0,0,0,21
+246963,0,0,0,21
+246964,0,0,0,21
+246965,0,0,0,21
+246966,0,0,0,21
+246967,0,0,0,21
+246968,0,0,0,21
+246969,0,0,0,21
+246970,0,0,0,21
+246971,0,0,0,21
+246972,0,0,0,21
+246973,0,0,0,21
+246974,0,0,0,21
+246975,0,0,0,21
+246976,0,0,0,21
+246977,0,0,0,21
+246978,0,0,0,21
+246979,0,0,0,21
+246980,0,0,0,21
+246981,0,0,0,21
+246982,0,0,0,21
+246983,0,0,0,21
+246984,0,0,0,21
+246985,0,0,0,21
+246986,0,0,0,21
+246987,0,0,0,21
+246988,0,0,0,21
+246989,0,0,0,21
+246990,0,0,0,21
+246991,0,0,0,21
+246992,0,0,0,21
+246993,0,0,0,21
+246994,0,0,0,21
+246995,0,0,0,21
+246996,0,0,0,21
+246997,0,0,0,21
+246998,0,0,0,21
+246999,0,0,0,21
+247000,0,0,0,21
+247001,0,0,0,21
+247002,0,0,0,21
+247003,0,0,0,21
+247004,0,0,0,21
+247005,0,0,0,21
+247006,0,0,0,21
+247007,0,0,0,21
+247008,0,0,0,21
+247009,0,0,0,21
+247010,0,0,0,21
+247011,0,0,0,21
+247012,0,0,0,21
+247013,0,0,0,21
+247014,0,0,0,21
+247015,0,0,0,21
+247016,0,0,0,21
+247017,0,0,0,21
+247018,0,0,0,21
+247019,0,0,0,21
+247020,0,0,0,21
+247021,0,0,0,21
+247022,0,0,0,21
+247023,0,0,0,21
+247024,0,0,0,21
+247025,0,0,0,21
+247026,0,0,0,21
+247027,0,0,0,21
+247028,0,0,0,21
+247029,0,0,0,21
+247030,0,0,0,21
+247031,0,0,0,21
+247032,0,0,0,21
+247033,0,0,0,21
+247034,0,0,0,21
+247035,0,0,0,21
+247036,0,0,0,21
+247037,0,0,0,21
+247038,0,0,0,21
+247039,0,0,0,21
+247040,0,0,0,21
+247041,0,0,0,21
+247042,0,0,0,21
+247043,0,0,0,21
+247044,0,0,0,21
+247045,0,0,0,21
+247046,0,0,0,21
+247047,0,0,0,21
+247048,0,0,0,21
+247049,0,0,0,21
+247050,0,0,0,21
+247051,0,0,0,21
+247052,0,0,0,21
+247053,0,0,0,21
+247054,0,0,0,21
+247055,0,0,0,21
+247056,0,0,0,21
+247057,0,0,0,21
+247058,0,0,0,21
+247059,0,0,0,21
+247060,0,0,0,21
+247061,0,0,0,21
+247062,0,0,0,21
+247063,0,0,0,21
+247064,0,0,0,21
+247065,0,0,0,21
+247066,0,0,0,21
+247067,0,0,0,21
+247068,0,0,0,21
+247069,0,0,0,21
+247070,0,0,0,21
+247071,0,0,0,21
+247072,0,0,0,21
+247073,0,0,0,21
+247074,0,0,0,21
+247075,0,0,0,21
+247076,0,0,0,21
+247077,0,0,0,21
+247078,0,0,0,21
+247079,0,0,0,21
+247080,0,0,0,21
+247081,0,0,0,21
+247082,0,0,0,21
+247083,0,0,0,21
+247084,0,0,0,21
+247085,0,0,0,21
+247086,0,0,0,21
+247087,0,0,0,21
+247088,0,0,0,21
+247089,0,0,0,21
+247090,0,0,0,21
+247091,0,0,0,21
+247092,0,0,0,21
+247093,0,0,0,21
+247094,0,0,0,21
+247095,0,0,0,21
+247096,0,0,0,21
+247097,0,0,0,21
+247098,0,0,0,21
+247099,0,0,0,21
+247100,0,0,0,21
+247101,0,0,0,21
+247102,0,0,0,21
+247103,0,0,0,21
+247104,0,0,0,21
+247105,0,0,0,21
+247106,0,0,0,21
+247107,0,0,0,21
+247108,0,0,0,21
+247109,0,0,0,21
+247110,0,0,0,21
+247111,0,0,0,21
+247112,0,0,0,21
+247113,0,0,0,21
+247114,0,0,0,21
+247115,0,0,0,21
+247116,0,0,0,21
+247117,0,0,0,21
+247118,0,0,0,21
+247119,0,0,0,21
+247120,0,0,0,21
+247121,0,0,0,21
+247122,0,0,0,21
+247123,0,0,0,21
+247124,0,0,0,21
+247125,0,0,0,21
+247126,0,0,0,21
+247127,0,0,0,21
+247128,0,0,0,21
+247129,0,0,0,21
+247130,0,0,0,21
+247131,0,0,0,21
+247132,0,0,0,21
+247133,0,0,0,21
+247134,0,0,0,21
+247135,0,0,0,21
+247136,0,0,0,21
+247137,0,0,0,21
+247138,0,0,0,21
+247139,0,0,0,21
+247140,0,0,0,21
+247141,0,0,0,21
+247142,0,0,0,21
+247143,0,0,0,21
+247144,0,0,0,21
+247145,0,0,0,21
+247146,0,0,0,21
+247147,0,0,0,21
+247148,0,0,0,21
+247149,0,0,0,21
+247150,0,0,0,21
+247151,0,0,0,21
+247152,0,0,0,21
+247153,0,0,0,21
+247154,0,0,0,21
+247155,0,0,0,21
+247156,0,0,0,21
+247157,0,0,0,21
+247158,0,0,0,21
+247159,0,0,0,21
+247160,0,0,0,21
+247161,0,0,0,21
+247162,0,0,0,21
+247163,0,0,0,21
+247164,0,0,0,21
+247165,0,0,0,21
+247166,0,0,0,21
+247167,0,0,0,21
+247168,0,0,0,21
+247169,0,0,0,21
+247170,0,0,0,21
+247171,0,0,0,21
+247172,0,0,0,21
+247173,0,0,0,21
+247174,0,0,0,21
+247175,0,0,0,21
+247176,0,0,0,21
+247177,0,0,0,21
+247178,0,0,0,21
+247179,0,0,0,21
+247180,0,0,0,21
+247181,0,0,0,21
+247182,0,0,0,21
+247183,0,0,0,21
+247184,0,0,0,21
+247185,0,0,0,21
+247186,0,0,0,21
+247187,0,0,0,21
+247188,0,0,0,21
+247189,0,0,0,21
+247190,0,0,0,21
+247191,0,0,0,21
+247192,0,0,0,21
+247193,0,0,0,21
+247194,0,0,0,21
+247195,0,0,0,21
+247196,0,0,0,21
+247197,0,0,0,21
+247198,0,0,0,21
+247199,0,0,0,21
+247200,0,0,0,21
+247201,0,0,0,21
+247202,0,0,0,21
+247203,0,0,0,21
+247204,0,0,0,21
+247205,0,0,0,21
+247206,0,0,0,21
+247207,0,0,0,21
+247208,0,0,0,21
+247209,0,0,0,21
+247210,0,0,0,21
+247211,0,0,0,21
+247212,0,0,0,21
+247213,0,0,0,21
+247214,0,0,0,21
+247215,0,0,0,21
+247216,0,0,0,21
+247217,0,0,0,21
+247218,0,0,0,21
+247219,0,0,0,21
+247220,0,0,0,21
+247221,0,0,0,21
+247222,0,0,0,21
+247223,0,0,0,21
+247224,0,0,0,21
+247225,0,0,0,21
+247226,0,0,0,21
+247227,0,0,0,21
+247228,0,0,0,21
+247229,0,0,0,21
+247230,0,0,0,21
+247231,0,0,0,21
+247232,0,0,0,21
+247233,0,0,0,21
+247234,0,0,0,21
+247235,0,0,0,21
+247236,0,0,0,21
+247237,0,0,0,21
+247238,0,0,0,21
+247239,0,0,0,21
+247240,0,0,0,21
+247241,0,0,0,21
+247242,0,0,0,21
+247243,0,0,0,21
+247244,0,0,0,21
+247245,0,0,0,21
+247246,0,0,0,21
+247247,0,0,0,21
+247248,0,0,0,21
+247249,0,0,0,21
+247250,0,0,0,21
+247251,0,0,0,21
+247252,0,0,0,21
+247253,0,0,0,21
+247254,0,0,0,21
+247255,0,0,0,21
+247256,0,0,0,21
+247257,0,0,0,21
+247258,0,0,0,21
+247259,0,0,0,21
+247260,0,0,0,21
+247261,0,0,0,21
+247262,0,0,0,21
+247263,0,0,0,21
+247264,0,0,0,21
+247265,0,0,0,21
+247266,0,0,0,21
+247267,0,0,0,21
+247268,0,0,0,21
+247269,0,0,0,21
+247270,0,0,0,21
+247271,0,0,0,21
+247272,0,0,0,21
+247273,0,0,0,21
+247274,0,0,0,21
+247275,0,0,0,21
+247276,0,0,0,21
+247277,0,0,0,21
+247278,0,0,0,21
+247279,0,0,0,21
+247280,0,0,0,21
+247281,0,0,0,21
+247282,0,0,0,21
+247283,0,0,0,21
+247284,0,0,0,21
+247285,0,0,0,21
+247286,0,0,0,21
+247287,0,0,0,21
+247288,0,0,0,21
+247289,0,0,0,21
+247290,0,0,0,21
+247291,0,0,0,21
+247292,0,0,0,21
+247293,0,0,0,21
+247294,0,0,0,21
+247295,0,0,0,21
+247296,0,0,0,21
+247297,0,0,0,21
+247298,0,0,0,21
+247299,0,0,0,21
+247300,0,0,0,21
+247301,0,0,0,21
+247302,0,0,0,21
+247303,0,0,0,21
+247304,0,0,0,21
+247305,0,0,0,21
+247306,0,0,0,21
+247307,0,0,0,21
+247308,0,0,0,21
+247309,0,0,0,21
+247310,0,0,0,21
+247311,0,0,0,21
+247312,0,0,0,21
+247313,0,0,0,21
+247314,0,0,0,21
+247315,0,0,0,21
+247316,0,0,0,21
+247317,0,0,0,21
+247318,0,0,0,21
+247319,0,0,0,21
+247320,0,0,0,21
+247321,0,0,0,21
+247322,0,0,0,21
+247323,0,0,0,21
+247324,0,0,0,21
+247325,0,0,0,21
+247326,0,0,0,21
+247327,0,0,0,21
+247328,0,0,0,21
+247329,0,0,0,21
+247330,0,0,0,21
+247331,0,0,0,21
+247332,0,0,0,21
+247333,0,0,0,21
+247334,0,0,0,21
+247335,0,0,0,21
+247336,0,0,0,21
+247337,0,0,0,21
+247338,0,0,0,21
+247339,0,0,0,21
+247340,0,0,0,21
+247341,0,0,0,21
+247342,0,0,0,21
+247343,0,0,0,21
+247344,0,0,0,21
+247345,0,0,0,21
+247346,0,0,0,21
+247347,0,0,0,21
+247348,0,0,0,21
+247349,0,0,0,21
+247350,0,0,0,21
+247351,0,0,0,21
+247352,0,0,0,21
+247353,0,0,0,21
+247354,0,0,0,21
+247355,0,0,0,21
+247356,0,0,0,21
+247357,0,0,0,21
+247358,0,0,0,21
+247359,0,0,0,21
+247360,0,0,0,21
+247361,0,0,0,21
+247362,0,0,0,21
+247363,0,0,0,21
+247364,0,0,0,21
+247365,0,0,0,21
+247366,0,0,0,21
+247367,0,0,0,21
+247368,0,0,0,21
+247369,0,0,0,21
+247370,0,0,0,21
+247371,0,0,0,21
+247372,0,0,0,21
+247373,0,0,0,21
+247374,0,0,0,21
+247375,0,0,0,21
+247376,0,0,0,21
+247377,0,0,0,21
+247378,0,0,0,21
+247379,0,0,0,21
+247380,0,0,0,21
+247381,0,0,0,21
+247382,0,0,0,21
+247383,0,0,0,21
+247384,0,0,0,21
+247385,0,0,0,21
+247386,0,0,0,21
+247387,0,0,0,21
+247388,0,0,0,21
+247389,0,0,0,21
+247390,0,0,0,21
+247391,0,0,0,21
+247392,0,0,0,21
+247393,0,0,0,21
+247394,0,0,0,21
+247395,0,0,0,21
+247396,0,0,0,21
+247397,0,0,0,21
+247398,0,0,0,21
+247399,0,0,0,21
+247400,0,0,0,21
+247401,0,0,0,21
+247402,0,0,0,21
+247403,0,0,0,21
+247404,0,0,0,21
+247405,0,0,0,21
+247406,0,0,0,21
+247407,0,0,0,21
+247408,0,0,0,21
+247409,0,0,0,21
+247410,0,0,0,21
+247411,0,0,0,21
+247412,0,0,0,21
+247413,0,0,0,21
+247414,0,0,0,21
+247415,0,0,0,21
+247416,0,0,0,21
+247417,0,0,0,21
+247418,0,0,0,21
+247419,0,0,0,21
+247420,0,0,0,21
+247421,0,0,0,21
+247422,0,0,0,21
+247423,0,0,0,21
+247424,0,0,0,21
+247425,0,0,0,21
+247426,0,0,0,21
+247427,0,0,0,21
+247428,0,0,0,21
+247429,0,0,0,21
+247430,0,0,0,21
+247431,0,0,0,21
+247432,0,0,0,21
+247433,0,0,0,21
+247434,0,0,0,21
+247435,0,0,0,21
+247436,0,0,0,21
+247437,0,0,0,21
+247438,0,0,0,21
+247439,0,0,0,21
+247440,0,0,0,21
+247441,0,0,0,21
+247442,0,0,0,21
+247443,0,0,0,21
+247444,0,0,0,21
+247445,0,0,0,21
+247446,0,0,0,21
+247447,0,0,0,21
+247448,0,0,0,21
+247449,0,0,0,21
+247450,0,0,0,21
+247451,0,0,0,21
+247452,0,0,0,21
+247453,0,0,0,21
+247454,0,0,0,21
+247455,0,0,0,21
+247456,0,0,0,21
+247457,0,0,0,21
+247458,0,0,0,21
+247459,0,0,0,21
+247460,0,0,0,21
+247461,0,0,0,21
+247462,0,0,0,21
+247463,0,0,0,21
+247464,0,0,0,21
+247465,78.18425962,0,0,21
+247466,990.0038797,0,0,21
+247467,719.1560522,0,0,21
+247468,855.2932088,0,0,21
+247469,990.0038755,0,0,21
+247470,1123.457921,0,0,21
+247471,1255.785333,0,0,21
+247472,1387.089016,0,0,21
+247473,1387.088996,0,0,21
+247474,1646.94547,0,0,21
+247475,1646.945483,0,0,21
+247476,1775.626223,0,0,21
+247477,1903.544911,0,0,21
+247478,2030.745027,0,0,21
+247479,2030.745033,0,0,21
+247480,2283.137015,0,0,21
+247481,2283.13698,0,0,21
+247482,2408.392302,0,0,21
+247483,2408.392159,0,0,21
+247484,2657.155677,0,0,21
+247485,2657.15572,0,0,21
+247486,2903.739357,0,0,21
+247487,2780.709807,0,0,21
+247488,3026.262891,0,0,21
+247489,3026.262732,0,0,21
+247490,3269.856487,0,0,21
+247491,3148.296745,0,0,21
+247492,3390.956416,0,0,21
+247493,3390.956495,0,0,21
+247494,3631.829524,0,0,21
+247495,3511.609925,0,0,21
+247496,3751.626239,0,0,21
+247497,3751.626326,0,0,21
+247498,3871.011132,0,0,21
+247499,3989.994555,0,0,21
+247500,4108.585786,0,0,21
+247501,0,0,0,21
+247502,0,0,0,21
+247503,0,0,0,21
+247504,0,0,0,21
+247505,329603.826,369019.8325,660921.6349,21
+247506,0,0,0,21
+247507,0,0,0,21
+247508,0,0,0,21
+247509,0,0,0,21
+247510,0,0,0,21
+247511,0,0,0,21
+247512,0,0,0,21
+247513,0,0,0,21
+247514,0,0,0,21
+247515,0,0,0,21
+247516,0,0,0,21
+247517,0,0,0,21
+247518,0,0,0,21
+247519,0,0,0,21
+247520,0,0,0,21
+247521,0,0,0,21
+247522,0,0,0,21
+247523,0,0,0,21
+247524,0,0,0,21
+247525,0,0,0,21
+247526,0,0,0,21
+247527,0,0,0,21
+247528,0,0,0,21
+247529,0,0,0,21
+247530,0,0,0,21
+247531,0,0,0,21
+247532,0,0,0,21
+247533,0,0,0,21
+247534,0,0,0,21
+247535,0,0,0,21
+247536,0,0,0,21
+247537,0,0,0,21
+247538,0,0,0,21
+247539,0,369027.5442,661432.6158,21
+247540,330045.4385,0,0,21
+247541,0,0,0,21
+247542,0,0,0,21
+247543,0,0,0,21
+247544,0,0,0,21
+247545,0,0,0,21
+247546,0,0,0,21
+247547,0,0,0,21
+247548,0,0,0,21
+247549,0,0,0,21
+247550,0,0,0,21
+247551,0,0,0,21
+247552,0,0,0,21
+247553,0,0,0,21
+247554,0,0,0,21
+247555,0,0,0,21
+247556,0,0,0,21
+247557,0,0,0,21
+247558,0,0,0,21
+247559,0,0,0,21
+247560,0,0,0,15.6
+247561,0,0,0,15.6
+247562,0,0,0,15.6
+247563,0,0,0,15.6
+247564,0,0,0,15.6
+247565,0,0,0,15.6
+247566,0,0,0,15.6
+247567,0,0,0,15.6
+247568,0,0,0,15.6
+247569,0,0,0,15.6
+247570,0,0,0,15.6
+247571,0,0,0,15.6
+247572,0,0,0,15.6
+247573,0,369035.2546,661813.8616,15.6
+247574,0,0,0,15.6
+247575,331786.3761,0,0,15.6
+247576,0,0,0,15.6
+247577,0,0,0,15.6
+247578,0,0,0,15.6
+247579,0,0,0,15.6
+247580,0,0,0,15.6
+247581,0,0,0,15.6
+247582,0,0,0,15.6
+247583,0,0,0,15.6
+247584,0,0,0,15.6
+247585,0,0,0,15.6
+247586,0,0,0,15.6
+247587,0,0,0,15.6
+247588,0,0,0,15.6
+247589,0,0,0,15.6
+247590,0,0,0,15.6
+247591,0,0,0,15.6
+247592,0,0,0,15.6
+247593,0,0,0,15.6
+247594,0,0,0,15.6
+247595,0,0,0,15.6
+247596,0,0,0,15.6
+247597,0,0,0,15.6
+247598,0,0,0,15.6
+247599,0,0,0,15.6
+247600,0,0,0,15.6
+247601,0,0,0,15.6
+247602,0,0,0,15.6
+247603,0,0,0,15.6
+247604,0,0,0,15.6
+247605,0,0,0,15.6
+247606,0,0,0,15.6
+247607,0,369042.963,662066.9281,15.6
+247608,0,0,0,15.6
+247609,0,0,0,15.6
+247610,331983.3947,0,0,15.6
+247611,0,0,0,15.6
+247612,0,0,0,15.6
+247613,0,0,0,15.6
+247614,0,0,0,15.6
+247615,0,0,0,15.6
+247616,0,0,0,15.6
+247617,0,0,0,15.6
+247618,0,0,0,15.6
+247619,0,0,0,15.6
+247620,0,0,0,15.6
+247621,0,0,0,15.6
+247622,0,0,0,15.6
+247623,0,0,0,15.6
+247624,0,0,0,15.6
+247625,0,0,0,15.6
+247626,0,0,0,15.6
+247627,0,0,0,15.6
+247628,0,0,0,15.6
+247629,0,0,0,15.6
+247630,0,0,0,15.6
+247631,0,0,0,15.6
+247632,0,0,0,15.6
+247633,0,0,0,15.6
+247634,0,0,0,15.6
+247635,0,0,0,15.6
+247636,0,0,0,15.6
+247637,0,0,0,15.6
+247638,0,0,0,15.6
+247639,0,0,0,15.6
+247640,0,0,0,15.6
+247641,0,369046.2717,661677.474,15.6
+247642,0,0,0,15.6
+247643,0,0,0,15.6
+247644,0,0,0,15.6
+247645,333690.1581,0,0,15.6
+247646,0,0,0,15.6
+247647,0,0,0,15.6
+247648,0,0,0,15.6
+247649,0,0,0,15.6
+247650,0,0,0,15.6
+247651,0,0,0,15.6
+247652,0,0,0,15.6
+247653,0,0,0,15.6
+247654,0,0,0,15.6
+247655,0,0,0,15.6
+247656,0,0,0,15.6
+247657,0,0,0,15.6
+247658,0,0,0,15.6
+247659,0,0,0,15.6
+247660,0,0,0,15.6
+247661,0,0,0,15.6
+247662,0,0,0,15.6
+247663,0,0,0,15.6
+247664,0,0,0,15.6
+247665,0,0,0,15.6
+247666,0,0,0,15.6
+247667,0,0,0,15.6
+247668,0,0,0,15.6
+247669,0,0,0,15.6
+247670,0,0,0,15.6
+247671,0,0,0,15.6
+247672,0,0,0,15.6
+247673,0,0,0,15.6
+247674,0,0,0,15.6
+247675,0,0,661208.6058,15.6
+247676,0,369046.2729,0,15.6
+247677,0,0,0,15.6
+247678,0,0,0,15.6
+247679,0,0,0,15.6
+247680,333478.5616,0,0,15.6
+247681,0,0,0,15.6
+247682,0,0,0,15.6
+247683,0,0,0,15.6
+247684,0,0,0,15.6
+247685,0,0,0,15.6
+247686,0,0,0,15.6
+247687,0,0,0,15.6
+247688,0,0,0,15.6
+247689,0,0,0,15.6
+247690,0,0,0,15.6
+247691,0,0,0,15.6
+247692,0,0,0,15.6
+247693,0,0,0,15.6
+247694,0,0,0,15.6
+247695,0,0,0,15.6
+247696,0,0,0,15.6
+247697,0,0,0,15.6
+247698,0,0,0,15.6
+247699,0,0,0,15.6
+247700,0,0,0,15.6
+247701,0,0,0,15.6
+247702,0,0,0,15.6
+247703,0,0,0,15.6
+247704,0,0,0,15.6
+247705,0,0,0,15.6
+247706,0,0,0,15.6
+247707,0,0,0,15.6
+247708,0,0,0,15.6
+247709,0,0,661429.6516,15.6
+247710,0,0,0,15.6
+247711,0,369046.0266,0,15.6
+247712,0,0,0,15.6
+247713,0,0,0,15.6
+247714,0,0,0,15.6
+247715,334583.9316,0,0,15.6
+247716,0,0,0,15.6
+247717,0,0,0,15.6
+247718,0,0,0,15.6
+247719,0,0,0,15.6
+247720,0,0,0,15.6
+247721,0,0,0,15.6
+247722,0,0,0,15.6
+247723,0,0,0,15.6
+247724,0,0,0,15.6
+247725,0,0,0,15.6
+247726,0,0,0,15.6
+247727,0,0,0,15.6
+247728,0,0,0,15.6
+247729,0,0,0,15.6
+247730,0,0,0,15.6
+247731,0,0,0,15.6
+247732,0,0,0,15.6
+247733,0,0,0,15.6
+247734,0,0,0,15.6
+247735,0,0,0,15.6
+247736,0,0,0,15.6
+247737,0,0,0,15.6
+247738,0,0,0,15.6
+247739,0,0,0,15.6
+247740,0,0,0,15.6
+247741,0,0,0,15.6
+247742,0,0,0,15.6
+247743,0,0,661688.9477,15.6
+247744,0,0,0,15.6
+247745,0,0,0,15.6
+247746,0,369046.273,0,15.6
+247747,0,0,0,15.6
+247748,0,0,0,15.6
+247749,0,0,0,15.6
+247750,334924.6502,0,0,15.6
+247751,0,0,0,15.6
+247752,0,0,0,15.6
+247753,0,0,0,15.6
+247754,0,0,0,15.6
+247755,0,0,0,15.6
+247756,0,0,0,15.6
+247757,0,0,0,15.6
+247758,0,0,0,15.6
+247759,0,0,0,15.6
+247760,0,0,0,15.6
+247761,0,0,0,15.6
+247762,0,0,0,15.6
+247763,0,0,0,15.6
+247764,0,0,0,15.6
+247765,0,0,0,15.6
+247766,0,0,0,15.6
+247767,0,0,0,15.6
+247768,0,0,0,15.6
+247769,0,0,0,15.6
+247770,0,0,0,15.6
+247771,0,0,0,15.6
+247772,0,0,0,15.6
+247773,0,0,0,15.6
+247774,0,0,0,15.6
+247775,0,0,0,15.6
+247776,0,0,0,15.6
+247777,0,0,661207.929,15.6
+247778,0,0,0,15.6
+247779,0,0,0,15.6
+247780,0,0,0,15.6
+247781,0,369046.275,0,15.6
+247782,0,0,0,15.6
+247783,0,0,0,15.6
+247784,0,0,0,15.6
+247785,334859.4577,0,0,15.6
+247786,0,0,0,15.6
+247787,0,0,0,15.6
+247788,0,0,0,15.6
+247789,0,0,0,15.6
+247790,0,0,0,15.6
+247791,0,0,0,15.6
+247792,0,0,0,15.6
+247793,0,0,0,15.6
+247794,0,0,0,15.6
+247795,0,0,0,15.6
+247796,0,0,0,15.6
+247797,0,0,0,15.6
+247798,0,0,0,15.6
+247799,0,0,0,15.6
+247800,0,0,0,15.6
+247801,0,0,0,15.6
+247802,0,0,0,15.6
+247803,0,0,0,15.6
+247804,0,0,0,15.6
+247805,0,0,0,15.6
+247806,0,0,0,15.6
+247807,0,0,0,15.6
+247808,0,0,0,15.6
+247809,0,0,0,15.6
+247810,0,0,0,15.6
+247811,0,0,661185.0892,15.6
+247812,0,0,0,15.6
+247813,0,0,0,15.6
+247814,0,0,0,15.6
+247815,0,0,0,15.6
+247816,0,369046.275,0,15.6
+247817,0,0,0,15.6
+247818,0,0,0,15.6
+247819,0,0,0,15.6
+247820,336540.6965,0,0,15.6
+247821,0,0,0,15.6
+247822,0,0,0,15.6
+247823,0,0,0,15.6
+247824,0,0,0,15.6
+247825,0,0,0,15.6
+247826,0,0,0,15.6
+247827,0,0,0,15.6
+247828,0,0,0,15.6
+247829,0,0,0,15.6
+247830,0,0,0,15.6
+247831,0,0,0,15.6
+247832,0,0,0,15.6
+247833,0,0,0,15.6
+247834,0,0,0,15.6
+247835,0,0,0,15.6
+247836,0,0,0,15.6
+247837,0,0,0,15.6
+247838,0,0,0,15.6
+247839,0,0,0,15.6
+247840,0,0,0,15.6
+247841,0,0,0,15.6
+247842,0,0,0,15.6
+247843,0,0,0,15.6
+247844,0,0,0,15.6
+247845,0,0,661238.4314,15.6
+247846,0,0,0,15.6
+247847,0,0,0,15.6
+247848,0,0,0,15.6
+247849,0,0,0,15.6
+247850,0,0,0,15.6
+247851,0,369046.2724,0,15.6
+247852,0,0,0,15.6
+247853,0,0,0,15.6
+247854,0,0,0,15.6
+247855,335173.0987,0,0,15.6
+247856,0,0,0,15.6
+247857,0,0,0,15.6
+247858,0,0,0,15.6
+247859,0,0,0,15.6
+247860,0,0,0,15.6
+247861,0,0,0,15.6
+247862,0,0,0,15.6
+247863,0,0,0,15.6
+247864,0,0,0,15.6
+247865,0,0,0,15.6
+247866,0,0,0,15.6
+247867,0,0,0,15.6
+247868,0,0,0,15.6
+247869,0,0,0,15.6
+247870,0,0,0,15.6
+247871,0,0,0,15.6
+247872,0,0,0,15.6
+247873,0,0,0,15.6
+247874,0,0,0,15.6
+247875,0,0,0,15.6
+247876,0,0,0,15.6
+247877,0,0,0,15.6
+247878,0,0,0,15.6
+247879,0,0,660731.0627,15.6
+247880,0,0,0,15.6
+247881,0,0,0,15.6
+247882,0,0,0,15.6
+247883,0,0,0,15.6
+247884,0,0,0,15.6
+247885,0,0,0,15.6
+247886,0,369046.275,0,15.6
+247887,0,0,0,15.6
+247888,0,0,0,15.6
+247889,340414.5788,0,0,15.6
+247890,0,0,0,15.6
+247891,0,0,0,15.6
+247892,0,0,0,15.6
+247893,0,0,0,15.6
+247894,0,0,0,15.6
+247895,0,0,0,15.6
+247896,0,0,0,15.6
+247897,0,0,0,15.6
+247898,0,0,0,15.6
+247899,0,0,0,15.6
+247900,0,0,0,15.6
+247901,0,0,0,15.6
+247902,0,0,0,15.6
+247903,0,0,0,15.6
+247904,0,0,0,15.6
+247905,0,0,0,15.6
+247906,0,0,0,15.6
+247907,0,0,0,15.6
+247908,0,0,0,15.6
+247909,0,0,0,15.6
+247910,0,0,0,15.6
+247911,0,0,0,15.6
+247912,0,0,0,15.6
+247913,0,0,661127.0367,15.6
+247914,0,0,0,15.6
+247915,0,0,0,15.6
+247916,0,0,0,15.6
+247917,0,0,0,15.6
+247918,0,0,0,15.6
+247919,0,0,0,15.6
+247920,0,369046.2723,0,17.8
+247921,64745.55729,0,0,17.8
+247922,0,0,0,17.8
+247923,340415.2334,0,0,17.8
+247924,3390.948439,0,0,17.8
+247925,17885.09719,0,0,17.8
+247926,7516.022866,0,0,17.8
+247927,10286.39091,0,0,17.8
+247928,10493.74879,0,0,17.8
+247929,10700.34831,0,0,17.8
+247930,10803.36699,0,0,17.8
+247931,11008.84866,0,0,17.8
+247932,11111.31412,0,0,17.8
+247933,11315.7004,0,0,17.8
+247934,0,0,0,17.8
+247935,0,0,0,17.8
+247936,0,0,0,17.8
+247937,0,0,0,17.8
+247938,0,0,0,17.8
+247939,0,0,0,17.8
+247940,0,0,0,17.8
+247941,0,0,0,17.8
+247942,0,0,0,17.8
+247943,0,0,0,17.8
+247944,0,0,0,17.8
+247945,0,0,0,17.8
+247946,0,0,0,17.8
+247947,0,0,660587.4419,17.8
+247948,0,0,0,17.8
+247949,0,0,0,17.8
+247950,0,0,0,17.8
+247951,0,0,0,17.8
+247952,0,0,0,17.8
+247953,0,0,0,17.8
+247954,0,369046.2725,0,17.8
+247955,0,0,0,17.8
+247956,0,0,0,17.8
+247957,340414.4631,0,0,17.8
+247958,0,0,0,17.8
+247959,0,0,0,17.8
+247960,0,0,0,17.8
+247961,0,0,0,17.8
+247962,0,0,0,17.8
+247963,0,0,0,17.8
+247964,0,0,0,17.8
+247965,0,0,0,17.8
+247966,0,0,0,17.8
+247967,0,0,0,17.8
+247968,0,0,0,17.8
+247969,0,0,0,17.8
+247970,0,0,0,17.8
+247971,0,0,0,17.8
+247972,0,0,0,17.8
+247973,0,0,0,17.8
+247974,0,0,0,17.8
+247975,0,0,0,17.8
+247976,0,0,0,17.8
+247977,0,0,0,17.8
+247978,0,0,0,17.8
+247979,0,0,0,17.8
+247980,0,0,0,20
+247981,0,229613.5039,660624.1253,20
+247982,859.3463667,0,0,20
+247983,23980.3526,0,0,20
+247984,47068.89482,15290.89014,0,20
+247985,32058.97228,57748.27086,0,20
+247986,50430.35332,29568.9688,0,20
+247987,56852.91069,34714.01035,0,20
+247988,50522.89385,35728.29543,0,20
+247989,53475.63008,35817.27811,0,20
+247990,53518.68378,35540.06163,0,20
+247991,53912.21283,36061.40638,0,20
+247992,53970.01092,35571.98989,0,20
+247993,53933.99337,35645.62972,0,20
+247994,54505.23433,35182.6367,0,20
+247995,59459.40515,35640.97306,0,20
+247996,56183.08289,35466.7457,0,20
+247997,57442.21356,35096.83374,0,20
+247998,57448.65469,35603.30436,0,20
+247999,57827.20589,35254.0276,0,20
+248000,57266.34351,35582.63808,0,20
+248001,58105.92712,35044.44948,0,20
+248002,57478.02278,35564.79979,0,20
+248003,57846.9038,35194.26954,0,20
+248004,57841.18238,35355.29522,0,20
+248005,57999.12961,35334.59258,0,20
+248006,57721.22889,35175.09002,0,20
+248007,58003.57634,35138.52803,0,20
+248008,57941.50953,35335.65056,0,20
+248009,57676.25753,35289.22179,0,20
+248010,58403.3312,34926.89389,0,20
+248011,57647.3998,35449.3951,0,20
+248012,58000.89158,34958.50859,0,20
+248013,57470.07988,35040.53871,0,20
+248014,57015.46855,35113.65658,0,20
+248015,57217.87492,34687.92704,0,20
+248016,56612.77161,35072.07813,0,20
+248017,56494.39278,34826.88279,0,20
+248018,56007.96941,35226.7435,0,20
+248019,55454.86826,35017.74527,0,20
+248020,54719.05688,35034.87049,0,20
+248021,54525.92561,35150.74184,0,20
+248022,54015.21841,34991.80848,0,20
+248023,53785.74037,34996.94324,0,20
+248024,53071.23679,35124.6975,0,20
+248025,52966.83017,34643.19902,0,20
+248026,52495.86577,35262.37369,0,20
+248027,52007.31776,34617.18963,0,20
+248028,51396.32242,34908.62712,0,20
+248029,51219.86851,34755.28369,0,20
+248030,50636.56782,34887.71606,0,20
+248031,50234.32428,34416.06731,0,20
+248032,49418.12112,34866.76891,0,20
+248033,49563.25923,34553.74415,0,20
+248034,48410.52493,34689.46965,0,20
+248035,48201.22089,34649.14702,0,20
+248036,47722.69388,34527.51912,0,20
+248037,46918.70602,34649.15045,0,20
+248038,46686.47811,34155.83583,0,20
+248039,45848.26505,34796.26877,0,20
+248040,45035.6277,34134.85273,0,21
+248041,39637.75929,30185.74707,0,21
+248042,38539.46382,29121.71458,0,21
+248043,38612.43385,29420.91695,0,21
+248044,38051.10573,28940.74769,0,21
+248045,37802.67984,28684.92544,0,21
+248046,37625.35996,28741.32225,0,21
+248047,37177.60376,28314.31608,0,21
+248048,36910.00724,28335.94172,0,21
+248049,36221.72237,27964.35689,0,21
+248050,36172.6137,28113.8397,0,21
+248051,35836.68846,27942.65967,0,21
+248052,35496.15333,27556.86211,0,21
+248053,35044.83722,27556.86478,0,21
+248054,34747.11141,27333.61122,0,21
+248055,34540.19661,27183.46916,0,21
+248056,34181.85097,27164.15544,0,21
+248057,33819.20331,26943.56771,0,21
+248058,33414.08987,27158.52944,0,21
+248059,33279.36271,26940.19825,0,21
+248060,33030.61148,26937.95104,0,21
+248061,32507.06828,26770.06871,0,21
+248062,32351.07722,26896.52252,0,21
+248063,32029.49973,26357.06876,0,21
+248064,31697.74455,26710.19951,0,21
+248065,31337.7237,26420.47952,0,21
+248066,31097.93946,26298.38477,0,21
+248067,30651.41949,26521.80462,0,21
+248068,30410.49605,25821.311,0,21
+248069,30065.25149,26131.89229,0,21
+248070,28957.31047,25900.52789,0,21
+248071,27595.2646,25799.37471,0,21
+248072,27264.36019,25696.5475,0,21
+248073,26039.53507,25567.66516,0,21
+248074,25358.11161,25551.38581,0,21
+248075,24621.86085,25174.92949,0,21
+248076,23579.74519,25507.2134,0,21
+248077,22633.41536,24964.10605,0,21
+248078,21827.6198,25130.7588,0,21
+248079,20743.94025,24968.63489,0,21
+248080,18720.06317,24752.88526,0,21
+248081,17945.28119,24924.29362,0,21
+248082,17861.9166,24714.41083,0,21
+248083,17919.51625,24210.4847,0,21
+248084,17518.13773,24692.22061,0,21
+248085,17516.15407,24194.11552,0,21
+248086,17508.05923,24312.43193,0,21
+248087,17328.33983,24150.73645,0,21
+248088,17350.37399,23959.7649,0,21
+248089,17185.55111,23959.76637,0,21
+248090,17294.60072,23556.66697,0,21
+248091,17196.02322,23943.35011,0,21
+248092,17250.42934,23534.30402,0,21
+248093,17041.15446,23376.64116,0,21
+248094,17072.08293,23534.30659,0,21
+248095,16926.35733,23163.33364,0,21
+248096,16928.35347,23157.39195,0,21
+248097,16693.64865,22949.6084,0,21
+248098,16858.93072,22970.61251,0,21
+248099,16858.92625,22949.61055,0,21
+248100,16669.72567,22571.08661,0,21
+248101,1737.62246,448.1932579,0,21
+248102,942.1197363,334.9562924,0,21
+248103,928.1900186,277.2096193,0,21
+248104,900.2326803,262.6357238,0,21
+248105,872.1421689,218.5429336,0,21
+248106,872.1420711,173.818427,0,21
+248107,843.9152667,158.7480861,0,21
+248108,829.7496753,128.3245458,0,21
+248109,815.5487443,97.45950968,0,21
+248110,801.3120203,81.82715458,0,21
+248111,787.0390343,50.04750569,0,21
+248112,772.7293002,17.24314343,0,21
+248113,743.9976156,0,0,21
+248114,758.3822491,0,0,21
+248115,700.6111932,0,0,21
+248116,700.611139,0,0,21
+248117,686.0696275,0,0,21
+248118,671.4874176,0,0,21
+248119,656.8638094,0,0,21
+248120,642.1981263,0,0,21
+248121,627.4896429,0,0,21
+248122,612.7376,0,0,21
+248123,597.9412016,0,0,21
+248124,583.0996127,0,0,21
+248125,583.0995773,0,0,21
+248126,538.2947236,0,0,21
+248127,553.2772753,0,0,21
+248128,538.2946635,0,0,21
+248129,508.1814038,0,0,21
+248130,508.1813767,0,0,21
+248131,477.8631255,0,0,21
+248132,493.0484374,0,0,21
+248133,447.3188922,0,0,21
+248134,462.6074771,0,0,21
+248135,431.9861127,0,0,21
+248136,431.9726979,0,0,21
+248137,401.0982439,0,0,21
+248138,416.5671492,0,0,21
+248139,385.5677566,0,0,21
+248140,369.9734631,0,0,21
+248141,369.9734524,0,0,21
+248142,354.3133101,0,0,21
+248143,338.5849823,0,0,21
+248144,322.7859732,0,0,21
+248145,322.7859806,0,0,21
+248146,290.9641737,0,0,21
+248147,306.9133753,0,0,21
+248148,258.8217916,0,0,21
+248149,274.9348967,0,0,21
+248150,258.8218101,0,0,21
+248151,242.6205459,0,0,21
+248152,226.3262611,0,0,21
+248153,226.3262583,0,0,21
+248154,193.4356169,0,0,21
+248155,209.9334115,0,0,21
+248156,160.0941187,0,0,21
+248157,143.2303753,0,0,21
+248158,143.2303159,0,0,21
+248159,126.2216576,0,0,21
+248160,109.0512838,0,0,21
+248161,91.69747978,0,0,21
+248162,91.69749672,0,0,21
+248163,56.30768854,0,0,21
+248164,56.30768822,0,0,21
+248165,19.54804174,0,0,21
+248166,28.92471647,0,0,21
+248167,0,0,0,21
+248168,0,0,0,21
+248169,0,0,0,21
+248170,0,0,0,21
+248171,0,0,0,21
+248172,0,0,0,21
+248173,0,0,0,21
+248174,0,0,0,21
+248175,0,0,0,21
+248176,0,0,0,21
+248177,0,0,0,21
+248178,0,0,0,21
+248179,0,0,0,21
+248180,0,0,0,21
+248181,0,0,0,21
+248182,0,0,0,21
+248183,0,0,0,21
+248184,0,0,0,21
+248185,0,0,0,21
+248186,0,0,0,21
+248187,0,0,0,21
+248188,0,0,0,21
+248189,0,0,0,21
+248190,0,0,0,21
+248191,0,0,0,21
+248192,0,0,0,21
+248193,0,0,0,21
+248194,0,0,0,21
+248195,0,0,0,21
+248196,0,0,0,21
+248197,0,0,0,21
+248198,0,0,0,21
+248199,0,0,0,21
+248200,0,0,0,21
+248201,0,0,0,21
+248202,0,0,0,21
+248203,0,0,0,21
+248204,0,0,0,21
+248205,0,0,0,21
+248206,0,0,0,21
+248207,0,0,0,21
+248208,0,0,0,21
+248209,0,0,0,21
+248210,0,0,0,21
+248211,0,0,0,21
+248212,0,0,0,21
+248213,0,0,0,21
+248214,0,0,0,21
+248215,0,0,0,21
+248216,0,0,0,21
+248217,0,0,0,21
+248218,0,0,0,21
+248219,0,0,0,21
+248220,0,0,0,21
+248221,0,0,0,21
+248222,0,0,0,21
+248223,0,0,0,21
+248224,0,0,0,21
+248225,0,0,0,21
+248226,0,0,0,21
+248227,0,0,0,21
+248228,0,0,0,21
+248229,0,0,0,21
+248230,0,0,0,21
+248231,0,0,0,21
+248232,0,0,0,21
+248233,0,0,0,21
+248234,0,0,0,21
+248235,0,0,0,21
+248236,0,0,0,21
+248237,0,0,0,21
+248238,0,0,0,21
+248239,0,0,0,21
+248240,0,0,0,21
+248241,0,0,0,21
+248242,0,0,0,21
+248243,0,0,0,21
+248244,0,0,0,21
+248245,0,0,0,21
+248246,0,0,0,21
+248247,0,0,0,21
+248248,0,0,0,21
+248249,0,0,0,21
+248250,0,0,0,21
+248251,0,0,0,21
+248252,0,0,0,21
+248253,0,0,0,21
+248254,0,0,0,21
+248255,0,0,0,21
+248256,0,0,0,21
+248257,0,0,0,21
+248258,0,0,0,21
+248259,0,0,0,21
+248260,0,0,0,21
+248261,0,0,0,21
+248262,0,0,0,21
+248263,0,0,0,21
+248264,0,0,0,21
+248265,0,0,0,21
+248266,0,0,0,21
+248267,0,0,0,21
+248268,0,0,0,21
+248269,0,0,0,21
+248270,0,0,0,21
+248271,0,0,0,21
+248272,0,0,0,21
+248273,0,0,0,21
+248274,0,0,0,21
+248275,0,0,0,21
+248276,0,0,0,21
+248277,0,0,0,21
+248278,0,0,0,21
+248279,0,0,0,21
+248280,0,0,0,21
+248281,0,0,0,21
+248282,0,0,0,21
+248283,0,0,0,21
+248284,0,0,0,21
+248285,0,0,0,21
+248286,0,0,0,21
+248287,0,0,0,21
+248288,0,0,0,21
+248289,0,0,0,21
+248290,0,0,0,21
+248291,0,0,0,21
+248292,0,0,0,21
+248293,0,0,0,21
+248294,0,0,0,21
+248295,0,0,0,21
+248296,0,0,0,21
+248297,0,0,0,21
+248298,0,0,0,21
+248299,0,0,0,21
+248300,0,0,0,21
+248301,0,0,0,21
+248302,0,0,0,21
+248303,0,0,0,21
+248304,0,0,0,21
+248305,0,0,0,21
+248306,0,0,0,21
+248307,0,0,0,21
+248308,0,0,0,21
+248309,0,0,0,21
+248310,0,0,0,21
+248311,0,0,0,21
+248312,0,0,0,21
+248313,0,0,0,21
+248314,0,0,0,21
+248315,0,0,0,21
+248316,0,0,0,21
+248317,0,0,0,21
+248318,0,0,0,21
+248319,0,0,0,21
+248320,0,0,0,21
+248321,0,0,0,21
+248322,0,0,0,21
+248323,0,0,0,21
+248324,0,0,0,21
+248325,0,0,0,21
+248326,0,0,0,21
+248327,0,0,0,21
+248328,0,0,0,21
+248329,0,0,0,21
+248330,0,0,0,21
+248331,0,0,0,21
+248332,0,0,0,21
+248333,0,0,0,21
+248334,0,0,0,21
+248335,0,0,0,21
+248336,0,0,0,21
+248337,0,0,0,21
+248338,0,0,0,21
+248339,0,0,0,21
+248340,0,0,0,21
+248341,0,0,0,21
+248342,0,0,0,21
+248343,0,0,0,21
+248344,0,0,0,21
+248345,0,0,0,21
+248346,0,0,0,21
+248347,0,0,0,21
+248348,0,0,0,21
+248349,0,0,0,21
+248350,0,0,0,21
+248351,0,0,0,21
+248352,0,0,0,21
+248353,0,0,0,21
+248354,0,0,0,21
+248355,0,0,0,21
+248356,0,0,0,21
+248357,0,0,0,21
+248358,0,0,0,21
+248359,0,0,0,21
+248360,0,0,0,21
+248361,0,0,0,21
+248362,0,0,0,21
+248363,0,0,0,21
+248364,0,0,0,21
+248365,0,0,0,21
+248366,0,0,0,21
+248367,0,0,0,21
+248368,0,0,0,21
+248369,0,0,0,21
+248370,0,0,0,21
+248371,0,0,0,21
+248372,0,0,0,21
+248373,0,0,0,21
+248374,0,0,0,21
+248375,0,0,0,21
+248376,0,0,0,21
+248377,0,0,0,21
+248378,0,0,0,21
+248379,0,0,0,21
+248380,0,0,0,21
+248381,0,0,0,21
+248382,0,0,0,21
+248383,0,0,0,21
+248384,0,0,0,21
+248385,0,0,0,21
+248386,0,0,0,21
+248387,0,0,0,21
+248388,0,0,0,21
+248389,0,0,0,21
+248390,0,0,0,21
+248391,0,0,0,21
+248392,0,0,0,21
+248393,0,0,0,21
+248394,0,0,0,21
+248395,0,0,0,21
+248396,0,0,0,21
+248397,0,0,0,21
+248398,0,0,0,21
+248399,0,0,0,21
+248400,0,0,0,21
+248401,0,0,0,21
+248402,0,0,0,21
+248403,0,0,0,21
+248404,0,0,0,21
+248405,0,0,0,21
+248406,0,0,0,21
+248407,0,0,0,21
+248408,0,0,0,21
+248409,0,0,0,21
+248410,0,0,0,21
+248411,0,0,0,21
+248412,0,0,0,21
+248413,0,0,0,21
+248414,0,0,0,21
+248415,0,0,0,21
+248416,0,0,0,21
+248417,0,0,0,21
+248418,0,0,0,21
+248419,0,0,0,21
+248420,0,0,0,21
+248421,0,0,0,21
+248422,0,0,0,21
+248423,0,0,0,21
+248424,0,0,0,21
+248425,0,0,0,21
+248426,0,0,0,21
+248427,0,0,0,21
+248428,0,0,0,21
+248429,0,0,0,21
+248430,0,0,0,21
+248431,0,0,0,21
+248432,0,0,0,21
+248433,0,0,0,21
+248434,0,0,0,21
+248435,0,0,0,21
+248436,0,0,0,21
+248437,0,0,0,21
+248438,0,0,0,21
+248439,0,0,0,21
+248440,0,0,0,21
+248441,0,0,0,21
+248442,0,0,0,21
+248443,0,0,0,21
+248444,0,0,0,21
+248445,0,0,0,21
+248446,0,0,0,21
+248447,0,0,0,21
+248448,0,0,0,21
+248449,0,0,0,21
+248450,0,0,0,21
+248451,0,0,0,21
+248452,0,0,0,21
+248453,0,0,0,21
+248454,0,0,0,21
+248455,0,0,0,21
+248456,0,0,0,21
+248457,0,0,0,21
+248458,0,0,0,21
+248459,0,0,0,21
+248460,0,0,0,21
+248461,0,0,0,21
+248462,0,0,0,21
+248463,0,0,0,21
+248464,0,0,0,21
+248465,0,0,0,21
+248466,0,0,0,21
+248467,0,0,0,21
+248468,0,0,0,21
+248469,0,0,0,21
+248470,0,0,0,21
+248471,0,0,0,21
+248472,0,0,0,21
+248473,0,0,0,21
+248474,0,0,0,21
+248475,0,0,0,21
+248476,0,0,0,21
+248477,0,0,0,21
+248478,0,0,0,21
+248479,0,0,0,21
+248480,0,0,0,21
+248481,0,0,0,21
+248482,0,0,0,21
+248483,0,0,0,21
+248484,0,0,0,21
+248485,0,0,0,21
+248486,0,0,0,21
+248487,0,0,0,21
+248488,0,0,0,21
+248489,0,0,0,21
+248490,0,0,0,21
+248491,0,0,0,21
+248492,0,0,0,21
+248493,0,0,0,21
+248494,0,0,0,21
+248495,0,0,0,21
+248496,0,0,0,21
+248497,0,0,0,21
+248498,0,0,0,21
+248499,0,0,0,21
+248500,0,0,0,21
+248501,0,0,0,21
+248502,0,0,0,21
+248503,0,0,0,21
+248504,0,0,0,21
+248505,0,0,0,21
+248506,0,0,0,21
+248507,0,0,0,21
+248508,0,0,0,21
+248509,0,0,0,21
+248510,0,0,0,21
+248511,0,0,0,21
+248512,0,0,0,21
+248513,0,0,0,21
+248514,0,0,0,21
+248515,0,0,0,21
+248516,0,0,0,21
+248517,0,0,0,21
+248518,0,0,0,21
+248519,0,0,0,21
+248520,0,0,0,21
+248521,0,0,0,21
+248522,0,0,0,21
+248523,0,0,0,21
+248524,0,0,0,21
+248525,0,0,0,21
+248526,0,0,0,21
+248527,0,0,0,21
+248528,0,0,0,21
+248529,0,0,0,21
+248530,0,0,0,21
+248531,0,0,0,21
+248532,0,0,0,21
+248533,0,0,0,21
+248534,0,0,0,21
+248535,0,0,0,21
+248536,0,0,0,21
+248537,0,0,0,21
+248538,0,0,0,21
+248539,0,0,0,21
+248540,0,0,0,21
+248541,0,0,0,21
+248542,0,0,0,21
+248543,0,0,0,21
+248544,0,0,0,21
+248545,0,0,0,21
+248546,0,0,0,21
+248547,0,0,0,21
+248548,0,0,0,21
+248549,0,0,0,21
+248550,0,0,0,21
+248551,0,0,0,21
+248552,0,0,0,21
+248553,0,0,0,21
+248554,0,0,0,21
+248555,0,0,0,21
+248556,0,0,0,21
+248557,0,0,0,21
+248558,0,0,0,21
+248559,0,0,0,21
+248560,0,0,0,21
+248561,0,0,0,21
+248562,0,0,0,21
+248563,0,0,0,21
+248564,0,0,0,21
+248565,0,0,0,21
+248566,0,0,0,21
+248567,0,0,0,21
+248568,0,0,0,21
+248569,0,0,0,21
+248570,0,0,0,21
+248571,0,0,0,21
+248572,0,0,0,21
+248573,0,0,0,21
+248574,0,0,0,21
+248575,0,0,0,21
+248576,0,0,0,21
+248577,0,0,0,21
+248578,0,0,0,21
+248579,0,0,0,21
+248580,0,0,0,21
+248581,0,0,0,21
+248582,0,0,0,21
+248583,0,0,0,21
+248584,0,0,0,21
+248585,0,0,0,21
+248586,0,0,0,21
+248587,0,0,0,21
+248588,0,0,0,21
+248589,0,0,0,21
+248590,0,0,0,21
+248591,0,0,0,21
+248592,0,0,0,21
+248593,0,0,0,21
+248594,0,0,0,21
+248595,0,0,0,21
+248596,0,0,0,21
+248597,0,0,0,21
+248598,0,0,0,21
+248599,0,0,0,21
+248600,0,0,0,21
+248601,0,0,0,21
+248602,0,0,0,21
+248603,0,0,0,21
+248604,0,0,0,21
+248605,0,0,0,21
+248606,0,0,0,21
+248607,0,0,0,21
+248608,0,0,0,21
+248609,0,0,0,21
+248610,0,0,0,21
+248611,0,0,0,21
+248612,0,0,0,21
+248613,0,0,0,21
+248614,0,0,0,21
+248615,0,0,0,21
+248616,0,0,0,21
+248617,0,0,0,21
+248618,0,0,0,21
+248619,0,0,0,21
+248620,0,0,0,21
+248621,0,0,0,21
+248622,0,0,0,21
+248623,0,0,0,21
+248624,0,0,0,21
+248625,0,0,0,21
+248626,0,0,0,21
+248627,0,0,0,21
+248628,0,0,0,21
+248629,0,0,0,21
+248630,0,0,0,21
+248631,0,0,0,21
+248632,0,0,0,21
+248633,0,0,0,21
+248634,0,0,0,21
+248635,0,0,0,21
+248636,0,0,0,21
+248637,0,0,0,21
+248638,0,0,0,21
+248639,0,0,0,21
+248640,0,0,0,21
+248641,0,0,0,21
+248642,0,0,0,21
+248643,0,0,0,21
+248644,0,0,0,21
+248645,0,0,0,21
+248646,0,0,0,21
+248647,0,0,0,21
+248648,0,0,0,21
+248649,0,0,0,21
+248650,0,0,0,21
+248651,0,0,0,21
+248652,0,0,0,21
+248653,0,0,0,21
+248654,0,0,0,21
+248655,0,0,0,21
+248656,0,0,0,21
+248657,0,0,0,21
+248658,0,0,0,21
+248659,0,0,0,21
+248660,0,0,0,21
+248661,0,0,0,21
+248662,0,0,0,21
+248663,0,0,0,21
+248664,0,0,0,21
+248665,0,0,0,21
+248666,0,0,0,21
+248667,0,0,0,21
+248668,0,0,0,21
+248669,0,0,0,21
+248670,0,0,0,21
+248671,0,0,0,21
+248672,0,0,0,21
+248673,0,0,0,21
+248674,0,0,0,21
+248675,0,0,0,21
+248676,0,0,0,21
+248677,0,0,0,21
+248678,0,0,0,21
+248679,0,0,0,21
+248680,0,0,0,21
+248681,0,0,0,21
+248682,0,0,0,21
+248683,0,0,0,21
+248684,0,0,0,21
+248685,0,0,0,21
+248686,0,0,0,21
+248687,0,0,0,21
+248688,0,0,0,21
+248689,0,0,0,21
+248690,0,0,0,21
+248691,0,0,0,21
+248692,0,0,0,21
+248693,0,0,0,21
+248694,0,0,0,21
+248695,0,0,0,21
+248696,0,0,0,21
+248697,0,0,0,21
+248698,0,0,0,21
+248699,0,0,0,21
+248700,0,0,0,21
+248701,0,0,0,21
+248702,0,0,0,21
+248703,0,0,0,21
+248704,0,0,0,21
+248705,0,0,0,21
+248706,0,0,0,21
+248707,0,0,0,21
+248708,0,0,0,21
+248709,0,0,0,21
+248710,0,0,0,21
+248711,0,0,0,21
+248712,0,0,0,21
+248713,0,0,0,21
+248714,0,0,0,21
+248715,0,0,0,21
+248716,0,0,0,21
+248717,0,0,0,21
+248718,0,0,0,21
+248719,0,0,0,21
+248720,0,0,0,21
+248721,0,0,0,21
+248722,0,0,0,21
+248723,0,0,0,21
+248724,0,0,0,21
+248725,0,0,0,21
+248726,0,0,0,21
+248727,0,0,0,21
+248728,0,0,0,21
+248729,0,0,0,21
+248730,0,0,0,21
+248731,0,0,0,21
+248732,0,0,0,21
+248733,0,0,0,21
+248734,0,0,0,21
+248735,0,0,0,21
+248736,0,0,0,21
+248737,0,0,0,21
+248738,0,0,0,21
+248739,0,0,0,21
+248740,0,0,0,21
+248741,0,0,0,21
+248742,0,0,0,21
+248743,0,0,0,21
+248744,0,0,0,21
+248745,0,0,0,21
+248746,0,0,0,21
+248747,0,0,0,21
+248748,0,0,0,21
+248749,0,0,0,21
+248750,0,0,0,21
+248751,0,0,0,21
+248752,0,0,0,21
+248753,0,0,0,21
+248754,0,0,0,21
+248755,0,0,0,21
+248756,0,0,0,21
+248757,0,0,0,21
+248758,0,0,0,21
+248759,0,0,0,21
+248760,0,0,0,21
+248761,0,0,0,21
+248762,0,0,0,21
+248763,0,0,0,21
+248764,0,0,0,21
+248765,0,0,0,21
+248766,0,0,0,21
+248767,0,0,0,21
+248768,0,0,0,21
+248769,0,0,0,21
+248770,0,0,0,21
+248771,0,0,0,21
+248772,0,0,0,21
+248773,0,0,0,21
+248774,0,0,0,21
+248775,0,0,0,21
+248776,0,0,0,21
+248777,0,0,0,21
+248778,0,0,0,21
+248779,0,0,0,21
+248780,0,0,0,21
+248781,0,0,0,21
+248782,0,0,0,21
+248783,0,0,0,21
+248784,0,0,0,21
+248785,0,0,0,21
+248786,0,0,0,21
+248787,0,0,0,21
+248788,0,0,0,21
+248789,0,0,0,21
+248790,0,0,0,21
+248791,0,0,0,21
+248792,0,0,0,21
+248793,0,0,0,21
+248794,0,0,0,21
+248795,0,0,0,21
+248796,0,0,0,21
+248797,0,0,0,21
+248798,0,0,0,21
+248799,0,0,0,21
+248800,0,0,0,21
+248801,0,0,0,21
+248802,0,0,0,21
+248803,0,0,0,21
+248804,0,0,0,21
+248805,0,0,0,21
+248806,0,0,0,21
+248807,0,0,0,21
+248808,0,0,0,21
+248809,0,0,0,21
+248810,0,0,0,21
+248811,0,0,0,21
+248812,0,0,0,21
+248813,0,0,0,21
+248814,0,0,0,21
+248815,0,0,0,21
+248816,0,0,0,21
+248817,0,0,0,21
+248818,0,0,0,21
+248819,0,0,0,21
+248820,0,0,0,21
+248821,0,0,0,21
+248822,0,0,0,21
+248823,0,0,0,21
+248824,0,0,0,21
+248825,0,0,0,21
+248826,0,0,0,21
+248827,0,0,0,21
+248828,0,0,0,21
+248829,0,0,0,21
+248830,0,0,0,21
+248831,0,0,0,21
+248832,0,0,0,21
+248833,0,0,0,21
+248834,0,0,0,21
+248835,0,0,0,21
+248836,0,0,0,21
+248837,0,0,0,21
+248838,0,0,0,21
+248839,0,0,0,21
+248840,0,0,0,21
+248841,0,0,0,21
+248842,0,0,0,21
+248843,0,0,0,21
+248844,0,0,0,21
+248845,0,0,0,21
+248846,0,0,0,21
+248847,0,0,0,21
+248848,0,0,0,21
+248849,0,0,0,21
+248850,0,0,0,21
+248851,0,0,0,21
+248852,0,0,0,21
+248853,0,0,0,21
+248854,0,0,0,21
+248855,0,0,0,21
+248856,0,0,0,21
+248857,0,0,0,21
+248858,0,0,0,21
+248859,0,0,0,21
+248860,0,0,0,21
+248861,0,0,0,21
+248862,0,0,0,21
+248863,0,0,0,21
+248864,0,0,0,21
+248865,0,0,0,21
+248866,0,0,0,21
+248867,0,0,0,21
+248868,0,0,0,21
+248869,0,0,0,21
+248870,0,0,0,21
+248871,0,0,0,21
+248872,0,0,0,21
+248873,0,0,0,21
+248874,0,0,0,21
+248875,0,0,0,21
+248876,0,0,0,21
+248877,0,0,0,21
+248878,0,0,0,21
+248879,0,0,0,21
+248880,0,0,0,21
+248881,0,0,0,21
+248882,0,0,0,21
+248883,0,0,0,21
+248884,0,0,0,21
+248885,0,0,0,21
+248886,0,0,0,21
+248887,0,0,0,21
+248888,855.2917142,0,0,21
+248889,1255.781909,0,0,21
+248890,990.0018487,0,0,21
+248891,1517.447493,0,0,21
+248892,1517.447514,0,0,21
+248893,1646.939441,0,0,21
+248894,1903.536724,0,0,21
+248895,2157.253871,0,0,21
+248896,2030.735693,0,0,21
+248897,2533.042244,0,0,21
+248898,2408.378956,0,0,21
+248899,2657.139346,0,0,21
+248900,2903.719808,0,0,21
+248901,2903.719888,0,0,21
+248902,3148.273543,0,0,21
+248903,3269.8315,0,0,21
+248904,3390.929633,0,0,21
+248905,3511.581216,0,0,21
+248906,3751.59321,0,0,21
+248907,3751.593345,0,0,21
+248908,3989.957217,0,0,21
+248909,4108.546145,0,0,21
+248910,4226.751831,0,0,21
+248911,4462.04668,0,0,21
+248912,4462.046873,0,0,21
+248913,4695.904531,0,0,21
+248914,4695.904744,0,0,21
+248915,5044.117693,0,0,21
+248916,4928.381585,0,0,21
+248917,5274.61675,0,0,21
+248918,5274.617018,0,0,21
+248919,5389.390544,0,0,21
+248920,5618.011095,0,0,21
+248921,5618.011398,0,0,21
+248922,5845.428981,0,0,21
+248923,5958.698105,0,0,21
+248924,5958.698446,0,0,21
+248925,6353.472284,0,0,21
+248926,6527.052769,0,0,21
+248927,6449.043681,0,0,21
+248928,6809.880176,0,0,21
+248929,6834.823312,0,0,21
+248930,6954.417265,0,0,21
+248931,7106.39134,0,0,21
+248932,7335.874217,0,0,21
+248933,7352.022333,0,0,21
+248934,7604.426711,0,0,21
+248935,7612.386828,0,0,21
+248936,7855.526817,0,0,21
+248937,7871.278268,0,0,21
+248938,8120.979727,0,0,21
+248939,8128.76158,0,0,21
+248940,8369.470959,0,0,21
+248941,0,0,0,21
+248942,0,0,0,21
+248943,0,0,0,21
+248944,0,0,0,21
+248945,335773.0243,368896.9586,657525.0839,21
+248946,0,0,0,21
+248947,0,0,0,21
+248948,0,0,0,21
+248949,0,0,0,21
+248950,0,0,0,21
+248951,0,0,0,21
+248952,0,0,0,21
+248953,0,0,0,21
+248954,0,0,0,21
+248955,0,0,0,21
+248956,0,0,0,21
+248957,0,0,0,21
+248958,0,0,0,21
+248959,0,0,0,21
+248960,0,0,0,21
+248961,0,0,0,21
+248962,0,0,0,21
+248963,0,0,0,21
+248964,0,0,0,21
+248965,0,0,0,21
+248966,0,0,0,21
+248967,0,0,0,21
+248968,0,0,0,21
+248969,0,0,0,21
+248970,0,0,0,21
+248971,0,0,0,21
+248972,0,0,0,21
+248973,0,0,0,21
+248974,0,0,0,21
+248975,0,0,0,21
+248976,0,0,0,21
+248977,0,0,0,21
+248978,0,0,0,21
+248979,338264.8423,368904.6658,657809.8145,21
+248980,0,0,0,21
+248981,0,0,0,21
+248982,0,0,0,21
+248983,0,0,0,21
+248984,0,0,0,21
+248985,0,0,0,21
+248986,0,0,0,21
+248987,0,0,0,21
+248988,0,0,0,21
+248989,0,0,0,21
+248990,0,0,0,21
+248991,0,0,0,21
+248992,0,0,0,21
+248993,0,0,0,21
+248994,0,0,0,21
+248995,0,0,0,21
+248996,0,0,0,21
+248997,0,0,0,21
+248998,0,0,0,21
+248999,0,0,0,21
+249000,0,0,0,15.6
+249001,0,0,0,15.6
+249002,0,0,0,15.6
+249003,0,0,0,15.6
+249004,0,0,0,15.6
+249005,0,0,0,15.6
+249006,0,0,0,15.6
+249007,0,0,0,15.6
+249008,0,0,0,15.6
+249009,0,0,0,15.6
+249010,0,0,0,15.6
+249011,0,0,0,15.6
+249012,0,0,0,15.6
+249013,0,368912.3563,658396.5408,15.6
+249014,334631.4636,0,0,15.6
+249015,0,0,0,15.6
+249016,0,0,0,15.6
+249017,0,0,0,15.6
+249018,0,0,0,15.6
+249019,0,0,0,15.6
+249020,0,0,0,15.6
+249021,0,0,0,15.6
+249022,0,0,0,15.6
+249023,0,0,0,15.6
+249024,0,0,0,15.6
+249025,0,0,0,15.6
+249026,0,0,0,15.6
+249027,0,0,0,15.6
+249028,0,0,0,15.6
+249029,0,0,0,15.6
+249030,0,0,0,15.6
+249031,0,0,0,15.6
+249032,0,0,0,15.6
+249033,0,0,0,15.6
+249034,0,0,0,15.6
+249035,0,0,0,15.6
+249036,0,0,0,15.6
+249037,0,0,0,15.6
+249038,0,0,0,15.6
+249039,0,0,0,15.6
+249040,0,0,0,15.6
+249041,0,0,0,15.6
+249042,0,0,0,15.6
+249043,0,0,0,15.6
+249044,0,0,0,15.6
+249045,0,0,0,15.6
+249046,0,0,0,15.6
+249047,0,368920.0403,658548.9767,15.6
+249048,0,0,0,15.6
+249049,337320.8945,0,0,15.6
+249050,0,0,0,15.6
+249051,0,0,0,15.6
+249052,0,0,0,15.6
+249053,0,0,0,15.6
+249054,0,0,0,15.6
+249055,0,0,0,15.6
+249056,0,0,0,15.6
+249057,0,0,0,15.6
+249058,0,0,0,15.6
+249059,0,0,0,15.6
+249060,0,0,0,15.6
+249061,0,0,0,15.6
+249062,0,0,0,15.6
+249063,0,0,0,15.6
+249064,0,0,0,15.6
+249065,0,0,0,15.6
+249066,0,0,0,15.6
+249067,0,0,0,15.6
+249068,0,0,0,15.6
+249069,0,0,0,15.6
+249070,0,0,0,15.6
+249071,0,0,0,15.6
+249072,0,0,0,15.6
+249073,0,0,0,15.6
+249074,0,0,0,15.6
+249075,0,0,0,15.6
+249076,0,0,0,15.6
+249077,0,0,0,15.6
+249078,0,0,0,15.6
+249079,0,0,0,15.6
+249080,0,0,0,15.6
+249081,0,368923.1005,659208.0368,15.6
+249082,0,0,0,15.6
+249083,0,0,0,15.6
+249084,335246.2095,0,0,15.6
+249085,0,0,0,15.6
+249086,0,0,0,15.6
+249087,0,0,0,15.6
+249088,0,0,0,15.6
+249089,0,0,0,15.6
+249090,0,0,0,15.6
+249091,0,0,0,15.6
+249092,0,0,0,15.6
+249093,0,0,0,15.6
+249094,0,0,0,15.6
+249095,0,0,0,15.6
+249096,0,0,0,15.6
+249097,0,0,0,15.6
+249098,0,0,0,15.6
+249099,0,0,0,15.6
+249100,0,0,0,15.6
+249101,0,0,0,15.6
+249102,0,0,0,15.6
+249103,0,0,0,15.6
+249104,0,0,0,15.6
+249105,0,0,0,15.6
+249106,0,0,0,15.6
+249107,0,0,0,15.6
+249108,0,0,0,15.6
+249109,0,0,0,15.6
+249110,0,0,0,15.6
+249111,0,0,0,15.6
+249112,0,0,0,15.6
+249113,0,0,0,15.6
+249114,0,0,0,15.6
+249115,0,0,658617.1186,15.6
+249116,0,368923.3435,0,15.6
+249117,0,0,0,15.6
+249118,0,0,0,15.6
+249119,337709.6683,0,0,15.6
+249120,0,0,0,15.6
+249121,0,0,0,15.6
+249122,0,0,0,15.6
+249123,0,0,0,15.6
+249124,0,0,0,15.6
+249125,0,0,0,15.6
+249126,0,0,0,15.6
+249127,0,0,0,15.6
+249128,0,0,0,15.6
+249129,0,0,0,15.6
+249130,0,0,0,15.6
+249131,0,0,0,15.6
+249132,0,0,0,15.6
+249133,0,0,0,15.6
+249134,0,0,0,15.6
+249135,0,0,0,15.6
+249136,0,0,0,15.6
+249137,0,0,0,15.6
+249138,0,0,0,15.6
+249139,0,0,0,15.6
+249140,0,0,0,15.6
+249141,0,0,0,15.6
+249142,0,0,0,15.6
+249143,0,0,0,15.6
+249144,0,0,0,15.6
+249145,0,0,0,15.6
+249146,0,0,0,15.6
+249147,0,0,0,15.6
+249148,0,0,0,15.6
+249149,0,0,659185.8811,15.6
+249150,0,0,0,15.6
+249151,0,368923.3454,0,15.6
+249152,0,0,0,15.6
+249153,0,0,0,15.6
+249154,334384.3826,0,0,15.6
+249155,0,0,0,15.6
+249156,0,0,0,15.6
+249157,0,0,0,15.6
+249158,0,0,0,15.6
+249159,0,0,0,15.6
+249160,0,0,0,15.6
+249161,0,0,0,15.6
+249162,0,0,0,15.6
+249163,0,0,0,15.6
+249164,0,0,0,15.6
+249165,0,0,0,15.6
+249166,0,0,0,15.6
+249167,0,0,0,15.6
+249168,0,0,0,15.6
+249169,0,0,0,15.6
+249170,0,0,0,15.6
+249171,0,0,0,15.6
+249172,0,0,0,15.6
+249173,0,0,0,15.6
+249174,0,0,0,15.6
+249175,0,0,0,15.6
+249176,0,0,0,15.6
+249177,0,0,0,15.6
+249178,0,0,0,15.6
+249179,0,0,0,15.6
+249180,0,0,0,15.6
+249181,0,0,0,15.6
+249182,0,0,0,15.6
+249183,0,0,658652.7972,15.6
+249184,0,0,0,15.6
+249185,0,0,0,15.6
+249186,0,368923.3457,0,15.6
+249187,0,0,0,15.6
+249188,0,0,0,15.6
+249189,337956.3508,0,0,15.6
+249190,0,0,0,15.6
+249191,0,0,0,15.6
+249192,0,0,0,15.6
+249193,0,0,0,15.6
+249194,0,0,0,15.6
+249195,0,0,0,15.6
+249196,0,0,0,15.6
+249197,0,0,0,15.6
+249198,0,0,0,15.6
+249199,0,0,0,15.6
+249200,0,0,0,15.6
+249201,0,0,0,15.6
+249202,0,0,0,15.6
+249203,0,0,0,15.6
+249204,0,0,0,15.6
+249205,0,0,0,15.6
+249206,0,0,0,15.6
+249207,0,0,0,15.6
+249208,0,0,0,15.6
+249209,0,0,0,15.6
+249210,0,0,0,15.6
+249211,0,0,0,15.6
+249212,0,0,0,15.6
+249213,0,0,0,15.6
+249214,0,0,0,15.6
+249215,0,0,0,15.6
+249216,0,0,0,15.6
+249217,0,0,658398.322,15.6
+249218,0,0,0,15.6
+249219,0,0,0,15.6
+249220,0,0,0,15.6
+249221,0,368923.3456,0,15.6
+249222,0,0,0,15.6
+249223,0,0,0,15.6
+249224,334335.1984,0,0,15.6
+249225,0,0,0,15.6
+249226,0,0,0,15.6
+249227,0,0,0,15.6
+249228,0,0,0,15.6
+249229,0,0,0,15.6
+249230,0,0,0,15.6
+249231,0,0,0,15.6
+249232,0,0,0,15.6
+249233,0,0,0,15.6
+249234,0,0,0,15.6
+249235,0,0,0,15.6
+249236,0,0,0,15.6
+249237,0,0,0,15.6
+249238,0,0,0,15.6
+249239,0,0,0,15.6
+249240,0,0,0,15.6
+249241,0,0,0,15.6
+249242,0,0,0,15.6
+249243,0,0,0,15.6
+249244,0,0,0,15.6
+249245,0,0,0,15.6
+249246,0,0,0,15.6
+249247,0,0,0,15.6
+249248,0,0,0,15.6
+249249,0,0,0,15.6
+249250,0,0,0,15.6
+249251,0,0,658392.7691,15.6
+249252,0,0,0,15.6
+249253,0,0,0,15.6
+249254,0,0,0,15.6
+249255,0,0,0,15.6
+249256,0,368923.3456,0,15.6
+249257,0,0,0,15.6
+249258,0,0,0,15.6
+249259,336523.6756,0,0,15.6
+249260,0,0,0,15.6
+249261,0,0,0,15.6
+249262,0,0,0,15.6
+249263,0,0,0,15.6
+249264,0,0,0,15.6
+249265,0,0,0,15.6
+249266,0,0,0,15.6
+249267,0,0,0,15.6
+249268,0,0,0,15.6
+249269,0,0,0,15.6
+249270,0,0,0,15.6
+249271,0,0,0,15.6
+249272,0,0,0,15.6
+249273,0,0,0,15.6
+249274,0,0,0,15.6
+249275,0,0,0,15.6
+249276,0,0,0,15.6
+249277,0,0,0,15.6
+249278,0,0,0,15.6
+249279,0,0,0,15.6
+249280,0,0,0,15.6
+249281,0,0,0,15.6
+249282,0,0,0,15.6
+249283,0,0,0,15.6
+249284,0,0,0,15.6
+249285,0,0,658217.8849,15.6
+249286,0,0,0,15.6
+249287,0,0,0,15.6
+249288,0,0,0,15.6
+249289,0,0,0,15.6
+249290,0,0,0,15.6
+249291,0,368923.3433,0,15.6
+249292,0,0,0,15.6
+249293,0,0,0,15.6
+249294,336590.9682,0,0,15.6
+249295,0,0,0,15.6
+249296,0,0,0,15.6
+249297,0,0,0,15.6
+249298,0,0,0,15.6
+249299,0,0,0,15.6
+249300,0,0,0,15.6
+249301,0,0,0,15.6
+249302,0,0,0,15.6
+249303,0,0,0,15.6
+249304,0,0,0,15.6
+249305,0,0,0,15.6
+249306,0,0,0,15.6
+249307,0,0,0,15.6
+249308,0,0,0,15.6
+249309,0,0,0,15.6
+249310,0,0,0,15.6
+249311,0,0,0,15.6
+249312,0,0,0,15.6
+249313,0,0,0,15.6
+249314,0,0,0,15.6
+249315,0,0,0,15.6
+249316,0,0,0,15.6
+249317,0,0,0,15.6
+249318,0,0,0,15.6
+249319,0,0,658447.1245,15.6
+249320,0,0,0,15.6
+249321,0,0,0,15.6
+249322,0,0,0,15.6
+249323,0,0,0,15.6
+249324,0,0,0,15.6
+249325,0,0,0,15.6
+249326,0,368923.3457,0,15.6
+249327,0,0,0,15.6
+249328,335756.0828,0,0,15.6
+249329,0,0,0,15.6
+249330,0,0,0,15.6
+249331,0,0,0,15.6
+249332,0,0,0,15.6
+249333,0,0,0,15.6
+249334,0,0,0,15.6
+249335,0,0,0,15.6
+249336,0,0,0,15.6
+249337,0,0,0,15.6
+249338,0,0,0,15.6
+249339,0,0,0,15.6
+249340,0,0,0,15.6
+249341,0,0,0,15.6
+249342,0,0,0,15.6
+249343,0,0,0,15.6
+249344,0,0,0,15.6
+249345,0,0,0,15.6
+249346,0,0,0,15.6
+249347,0,0,0,15.6
+249348,0,0,0,15.6
+249349,0,0,0,15.6
+249350,0,0,0,15.6
+249351,0,0,0,15.6
+249352,0,0,0,15.6
+249353,0,0,658400.9184,15.6
+249354,0,0,0,15.6
+249355,0,0,0,15.6
+249356,0,0,0,15.6
+249357,0,0,0,15.6
+249358,0,0,0,15.6
+249359,0,0,0,15.6
+249360,0,368923.3434,0,17.8
+249361,0,0,0,17.8
+249362,337746.5063,0,0,17.8
+249363,0,0,0,17.8
+249364,0,0,0,17.8
+249365,0,0,0,17.8
+249366,0,0,0,17.8
+249367,0,0,0,17.8
+249368,0,0,0,17.8
+249369,0,0,0,17.8
+249370,0,0,0,17.8
+249371,0,0,0,17.8
+249372,0,0,0,17.8
+249373,0,0,0,17.8
+249374,0,0,0,17.8
+249375,0,0,0,17.8
+249376,0,0,0,17.8
+249377,0,0,0,17.8
+249378,0,0,0,17.8
+249379,0,0,0,17.8
+249380,0,0,0,17.8
+249381,0,0,0,17.8
+249382,0,2283.349589,0,17.8
+249383,13812.46431,2283.34958,0,17.8
+249384,5958.72509,2283.349573,0,17.8
+249385,8384.012673,2759.256333,0,17.8
+249386,8919.209465,2994.772189,0,17.8
+249387,9131.782401,3461.462778,658630.6224,17.8
+249388,9237.753638,3228.811003,0,17.8
+249389,9659.575966,0,0,17.8
+249390,9869.273101,0,0,17.8
+249391,10078.17752,0,0,17.8
+249392,10286.30114,0,0,17.8
+249393,10493.65534,0,0,17.8
+249394,10700.25113,368923.3456,0,17.8
+249395,10906.09905,0,0,17.8
+249396,345734.5181,0,0,17.8
+249397,11417.51277,0,0,17.8
+249398,11519.25558,0,0,17.8
+249399,11722.21017,0,0,17.8
+249400,11924.46412,0,0,17.8
+249401,12126.02635,0,0,17.8
+249402,7515.977297,0,0,17.8
+249403,6408.969897,0,0,17.8
+249404,0,0,0,17.8
+249405,0,0,0,17.8
+249406,0,0,0,17.8
+249407,0,0,0,17.8
+249408,0,0,0,17.8
+249409,0,0,0,17.8
+249410,0,0,0,17.8
+249411,0,0,0,17.8
+249412,0,0,0,17.8
+249413,0,0,0,17.8
+249414,0,0,0,17.8
+249415,0,0,0,17.8
+249416,0,0,0,17.8
+249417,0,0,0,17.8
+249418,0,0,0,17.8
+249419,0,0,0,17.8
+249420,0,0,0,20
+249421,0,0,657916.6151,20
+249422,0,0,0,20
+249423,0,0,0,20
+249424,5296.880343,0,0,20
+249425,25067.67925,2527.932315,0,20
+249426,24920.81142,47596.93529,0,20
+249427,30705.76785,21045.35367,0,20
+249428,46980.95045,27878.89014,0,20
+249429,34674.70858,29312.85863,0,20
+249430,38125.2821,29199.70907,0,20
+249431,37561.66213,30582.65189,0,20
+249432,36523.45711,31828.89745,0,20
+249433,35680.97058,36810.27433,0,20
+249434,34831.44307,34389.53932,0,20
+249435,34073.32727,35402.83583,0,20
+249436,34220.14981,35744.54994,0,20
+249437,33946.40455,35749.89666,0,20
+249438,34053.02889,36253.51911,0,20
+249439,33943.79012,36618.7993,0,20
+249440,34192.79326,36367.96165,0,20
+249441,34185.76341,36945.36069,0,20
+249442,34052.01806,36769.43132,0,20
+249443,34417.71402,37389.72188,0,20
+249444,34033.63844,37400.42743,0,20
+249445,34435.76466,37114.4005,0,20
+249446,34414.94137,37881.33722,0,20
+249447,34371.75071,37899.23948,0,20
+249448,34432.99236,37764.99166,0,20
+249449,34479.72454,38064.75255,0,20
+249450,34277.3268,38219.25656,0,20
+249451,34866.60297,38428.66845,0,20
+249452,34288.6428,38214.6476,0,20
+249453,34541.85499,38537.20851,0,20
+249454,34676.05399,38383.63258,0,20
+249455,34737.29289,38665.05307,0,20
+249456,34369.11824,38394.03365,0,20
+249457,34904.3015,38860.18814,0,20
+249458,34604.52713,38695.98698,0,20
+249459,34766.86155,38807.30739,0,20
+249460,34692.55173,38521.50095,0,20
+249461,34648.71621,39207.54125,0,20
+249462,34800.14199,39297.03715,0,20
+249463,34828.99771,39185.76301,0,20
+249464,34664.21407,39523.15986,0,20
+249465,34862.15867,39311.32185,0,20
+249466,34591.62994,39327.15824,0,20
+249467,34884.35623,39501.00309,0,20
+249468,34720.58037,39583.00919,0,20
+249469,34726.48797,39363.43322,0,20
+249470,34929.12129,39793.46357,0,20
+249471,34584.73791,39598.40777,0,20
+249472,34775.69741,39619.25044,0,20
+249473,34449.5774,39634.61027,0,20
+249474,34629.66637,39895.05104,0,20
+249475,34136.89602,39649.93734,18.09988053,20
+249476,34644.23747,39910.37827,118.031405,20
+249477,34339.01505,39910.38248,60.76986302,20
+249478,34276.17812,39925.0032,101.8757659,20
+249479,34349.59078,39925.67635,101.8760841,20
+249480,34223.84151,40010.45245,118.0326262,21
+249481,29895.42831,35921.07062,0,21
+249482,29099.94908,35155.19655,0,21
+249483,29214.34128,35506.76317,0,21
+249484,28924.70969,34984.75997,0,21
+249485,28734.16779,35015.99671,0,21
+249486,28548.80155,34599.41376,0,21
+249487,28746.95529,35000.39748,0,21
+249488,28270.46591,34398.4209,0,21
+249489,28547.90618,34620.73221,0,21
+249490,27997.32487,34264.52273,0,21
+249491,28266.70953,34090.29947,0,21
+249492,27917.57933,34392.63604,0,21
+249493,27952.503,33775.81003,0,21
+249494,27829.95357,34181.45909,0,21
+249495,27678.68741,33583.75836,0,21
+249496,27522.47885,33671.10027,0,21
+249497,27589.88157,33525.26635,0,21
+249498,27217.44627,33723.8057,0,21
+249499,27475.71887,33643.88404,0,21
+249500,27036.4917,33221.76024,0,21
+249501,26984.1751,33643.88834,0,21
+249502,26993.76262,32966.16494,0,21
+249503,26788.80708,33318.98707,0,21
+249504,26769.02456,33126.12959,0,21
+249505,26490.05665,32800.03098,0,21
+249506,26467.88698,33126.13343,0,21
+249507,26377.41746,32580.80397,0,21
+249508,26313.83863,32606.74526,0,21
+249509,26145.42165,32762.89587,0,21
+249510,25942.2915,32242.258,0,21
+249511,25989.00695,32199.0544,18.10011623,21
+249512,25731.51701,31833.30297,0,21
+249513,25667.62648,32000.66623,0,21
+249514,25665.01283,31698.34072,0,21
+249515,25271.30547,31590.91703,0,21
+249516,25623.32041,31682.66995,0,21
+249517,25046.3804,31287.95193,0,21
+249518,25184.80665,31256.56917,0,21
+249519,25085.74444,31272.28078,0,21
+249520,24782.92847,31136.95032,0,21
+249521,24928.29822,30844.72788,0,21
+249522,24641.65851,31136.95223,0,21
+249523,24505.89517,30524.74646,0,21
+249524,24659.41389,30573.69475,0,21
+249525,24078.90754,30844.73119,0,21
+249526,24521.44711,30067.98002,0,21
+249527,23916.53537,30296.08694,0,21
+249528,24084.32085,30237.2142,0,21
+249529,23955.35557,29959.32329,0,21
+249530,23655.10428,29975.07186,0,21
+249531,23802.83152,29485.33905,0,21
+249532,23494.05237,29937.42317,0,21
+249533,23564.83182,29277.45649,0,21
+249534,23231.55094,29271.3006,0,21
+249535,23195.54969,29053.37046,0,21
+249536,23188.18975,28894.52446,0,21
+249537,23052.67345,28860.55195,0,21
+249538,22899.25258,28345.71029,0,21
+249539,22610.55983,28685.84016,0,21
+249540,22877.35476,28174.22632,0,21
+249541,5065.727741,1211.458194,0,21
+249542,4134.05417,531.4650188,0,21
+249543,3999.01421,476.093441,0,21
+249544,3480.568336,448.1913091,0,21
+249545,3577.00236,391.9173271,0,21
+249546,3204.300696,391.9173366,0,21
+249547,2897.923753,306.1874385,0,21
+249548,2911.664864,334.9552777,0,21
+249549,2743.51481,248.0014789,0,21
+249550,2358.315236,248.001483,0,21
+249551,2459.852256,218.5425384,0,21
+249552,2186.559674,158.7478915,0,21
+249553,1909.188837,158.7478933,0,21
+249554,2013.507589,128.3244265,0,21
+249555,1612.802042,66.03385626,0,21
+249556,1584.712455,66.03385658,0,21
+249557,1434.062963,33.81663065,0,21
+249558,1281.408198,0,0,21
+249559,967.4017662,0,0,21
+249560,1112.004969,0,0,21
+249561,801.2993035,0,0,21
+249562,772.7173823,0,0,21
+249563,758.3707655,0,0,21
+249564,743.9863568,0,0,21
+249565,729.5636254,0,0,21
+249566,715.1020566,0,0,21
+249567,700.6009816,0,0,21
+249568,671.4779459,0,0,21
+249569,671.4789155,0,0,21
+249570,656.8559721,0,0,21
+249571,627.4827278,0,0,21
+249572,627.4828171,0,0,21
+249573,597.9349383,0,0,21
+249574,583.0935909,0,0,21
+249575,583.093553,0,0,21
+249576,553.2717727,0,0,21
+249577,538.2893931,0,0,21
+249578,538.2894223,0,0,21
+249579,508.1766441,0,0,21
+249580,493.0439575,0,0,21
+249581,477.8588182,0,0,21
+249582,477.8588007,0,0,21
+249583,431.9774395,0,0,21
+249584,416.5669684,0,0,21
+249585,385.5673469,0,0,21
+249586,401.0978106,0,0,21
+249587,354.3130586,0,0,21
+249588,354.3130458,0,0,21
+249589,338.5847856,0,0,21
+249590,306.9132798,0,0,21
+249591,306.9132752,0,0,21
+249592,290.9641153,0,0,21
+249593,274.9349047,0,0,21
+249594,258.8218297,0,0,21
+249595,226.3263457,0,0,21
+249596,242.6206044,0,0,21
+249597,209.9335457,0,0,21
+249598,193.435766,0,0,21
+249599,176.8255365,0,0,21
+249600,160.0939991,0,0,21
+249601,160.0940267,0,0,21
+249602,126.2218469,0,0,21
+249603,126.2218498,0,0,21
+249604,109.0514705,0,0,21
+249605,91.69769285,0,0,21
+249606,74.13088676,0,0,21
+249607,74.13088724,0,0,21
+249608,47.28012607,0,0,21
+249609,38.15874391,0,0,21
+249610,19.54809587,0,0,21
+249611,19.54809616,0,0,21
+249612,0,0,0,21
+249613,0,0,0,21
+249614,0,0,0,21
+249615,0,0,0,21
+249616,0,0,0,21
+249617,0,0,0,21
+249618,0,0,0,21
+249619,0,0,0,21
+249620,0,0,0,21
+249621,0,0,0,21
+249622,0,0,0,21
+249623,0,0,0,21
+249624,0,0,0,21
+249625,0,0,0,21
+249626,0,0,0,21
+249627,0,0,0,21
+249628,0,0,0,21
+249629,0,0,0,21
+249630,0,0,0,21
+249631,0,0,0,21
+249632,0,0,0,21
+249633,0,0,0,21
+249634,0,0,0,21
+249635,0,0,0,21
+249636,0,0,0,21
+249637,0,0,0,21
+249638,0,0,0,21
+249639,0,0,0,21
+249640,0,0,0,21
+249641,0,0,0,21
+249642,0,0,0,21
+249643,0,0,0,21
+249644,0,0,0,21
+249645,0,0,0,21
+249646,0,0,0,21
+249647,0,0,0,21
+249648,0,0,0,21
+249649,0,0,0,21
+249650,0,0,0,21
+249651,0,0,0,21
+249652,0,0,0,21
+249653,0,0,0,21
+249654,0,0,0,21
+249655,0,0,0,21
+249656,0,0,0,21
+249657,0,0,0,21
+249658,0,0,0,21
+249659,0,0,0,21
+249660,0,0,0,21
+249661,0,0,0,21
+249662,0,0,0,21
+249663,0,0,0,21
+249664,0,0,0,21
+249665,0,0,0,21
+249666,0,0,0,21
+249667,0,0,0,21
+249668,0,0,0,21
+249669,0,0,0,21
+249670,0,0,0,21
+249671,0,0,0,21
+249672,0,0,0,21
+249673,0,0,0,21
+249674,0,0,0,21
+249675,0,0,0,21
+249676,0,0,0,21
+249677,0,0,0,21
+249678,0,0,0,21
+249679,0,0,0,21
+249680,0,0,0,21
+249681,0,0,0,21
+249682,0,0,0,21
+249683,0,0,0,21
+249684,0,0,0,21
+249685,0,0,0,21
+249686,0,0,0,21
+249687,0,0,0,21
+249688,0,0,0,21
+249689,0,0,0,21
+249690,0,0,0,21
+249691,0,0,0,21
+249692,0,0,0,21
+249693,0,0,0,21
+249694,0,0,0,21
+249695,0,0,0,21
+249696,0,0,0,21
+249697,0,0,0,21
+249698,0,0,0,21
+249699,0,0,0,21
+249700,0,0,0,21
+249701,0,0,0,21
+249702,0,0,0,21
+249703,0,0,0,21
+249704,0,0,0,21
+249705,0,0,0,21
+249706,0,0,0,21
+249707,0,0,0,21
+249708,0,0,0,21
+249709,0,0,0,21
+249710,0,0,0,21
+249711,0,0,0,21
+249712,0,0,0,21
+249713,0,0,0,21
+249714,0,0,0,21
+249715,0,0,0,21
+249716,0,0,0,21
+249717,0,0,0,21
+249718,0,0,0,21
+249719,0,0,0,21
+249720,0,0,0,21
+249721,0,0,0,21
+249722,0,0,0,21
+249723,0,0,0,21
+249724,0,0,0,21
+249725,0,0,0,21
+249726,0,0,0,21
+249727,0,0,0,21
+249728,0,0,0,21
+249729,0,0,0,21
+249730,0,0,0,21
+249731,0,0,0,21
+249732,0,0,0,21
+249733,0,0,0,21
+249734,0,0,0,21
+249735,0,0,0,21
+249736,0,0,0,21
+249737,0,0,0,21
+249738,0,0,0,21
+249739,0,0,0,21
+249740,0,0,0,21
+249741,0,0,0,21
+249742,0,0,0,21
+249743,0,0,0,21
+249744,0,0,0,21
+249745,0,0,0,21
+249746,0,0,0,21
+249747,0,0,0,21
+249748,0,0,0,21
+249749,0,0,0,21
+249750,0,0,0,21
+249751,0,0,0,21
+249752,0,0,0,21
+249753,0,0,0,21
+249754,0,0,0,21
+249755,0,0,0,21
+249756,0,0,0,21
+249757,0,0,0,21
+249758,0,0,0,21
+249759,0,0,0,21
+249760,0,0,0,21
+249761,0,0,0,21
+249762,0,0,0,21
+249763,0,0,0,21
+249764,0,0,0,21
+249765,0,0,0,21
+249766,0,0,0,21
+249767,0,0,0,21
+249768,0,0,0,21
+249769,0,0,0,21
+249770,0,0,0,21
+249771,0,0,0,21
+249772,0,0,0,21
+249773,0,0,0,21
+249774,0,0,0,21
+249775,0,0,0,21
+249776,0,0,0,21
+249777,0,0,0,21
+249778,0,0,0,21
+249779,0,0,0,21
+249780,0,0,0,21
+249781,0,0,0,21
+249782,0,0,0,21
+249783,0,0,0,21
+249784,0,0,0,21
+249785,0,0,0,21
+249786,0,0,0,21
+249787,0,0,0,21
+249788,0,0,0,21
+249789,0,0,0,21
+249790,0,0,0,21
+249791,0,0,0,21
+249792,0,0,0,21
+249793,0,0,0,21
+249794,0,0,0,21
+249795,0,0,0,21
+249796,0,0,0,21
+249797,0,0,0,21
+249798,0,0,0,21
+249799,0,0,0,21
+249800,0,0,0,21
+249801,0,0,0,21
+249802,0,0,0,21
+249803,0,0,0,21
+249804,0,0,0,21
+249805,0,0,0,21
+249806,0,0,0,21
+249807,0,0,0,21
+249808,0,0,0,21
+249809,0,0,0,21
+249810,0,0,0,21
+249811,0,0,0,21
+249812,0,0,0,21
+249813,0,0,0,21
+249814,0,0,0,21
+249815,0,0,0,21
+249816,0,0,0,21
+249817,0,0,0,21
+249818,0,0,0,21
+249819,0,0,0,21
+249820,0,0,0,21
+249821,0,0,0,21
+249822,0,0,0,21
+249823,0,0,0,21
+249824,0,0,0,21
+249825,0,0,0,21
+249826,0,0,0,21
+249827,0,0,0,21
+249828,0,0,0,21
+249829,0,0,0,21
+249830,0,0,0,21
+249831,0,0,0,21
+249832,0,0,0,21
+249833,0,0,0,21
+249834,0,0,0,21
+249835,0,0,0,21
+249836,0,0,0,21
+249837,0,0,0,21
+249838,0,0,0,21
+249839,0,0,0,21
+249840,0,0,0,21
+249841,0,0,0,21
+249842,0,0,0,21
+249843,0,0,0,21
+249844,0,0,0,21
+249845,0,0,0,21
+249846,0,0,0,21
+249847,0,0,0,21
+249848,0,0,0,21
+249849,0,0,0,21
+249850,0,0,0,21
+249851,0,0,0,21
+249852,0,0,0,21
+249853,0,0,0,21
+249854,0,0,0,21
+249855,0,0,0,21
+249856,0,0,0,21
+249857,0,0,0,21
+249858,0,0,0,21
+249859,0,0,0,21
+249860,0,0,0,21
+249861,0,0,0,21
+249862,0,0,0,21
+249863,0,0,0,21
+249864,0,0,0,21
+249865,0,0,0,21
+249866,0,0,0,21
+249867,0,0,0,21
+249868,0,0,0,21
+249869,0,0,0,21
+249870,0,0,0,21
+249871,0,0,0,21
+249872,0,0,0,21
+249873,0,0,0,21
+249874,0,0,0,21
+249875,0,0,0,21
+249876,0,0,0,21
+249877,0,0,0,21
+249878,0,0,0,21
+249879,0,0,0,21
+249880,0,0,0,21
+249881,0,0,0,21
+249882,0,0,0,21
+249883,0,0,0,21
+249884,0,0,0,21
+249885,0,0,0,21
+249886,0,0,0,21
+249887,0,0,0,21
+249888,0,0,0,21
+249889,0,0,0,21
+249890,0,0,0,21
+249891,0,0,0,21
+249892,0,0,0,21
+249893,0,0,0,21
+249894,0,0,0,21
+249895,0,0,0,21
+249896,0,0,0,21
+249897,0,0,0,21
+249898,0,0,0,21
+249899,0,0,0,21
+249900,0,0,0,21
+249901,0,0,0,21
+249902,0,0,0,21
+249903,0,0,0,21
+249904,0,0,0,21
+249905,0,0,0,21
+249906,0,0,0,21
+249907,0,0,0,21
+249908,0,0,0,21
+249909,0,0,0,21
+249910,0,0,0,21
+249911,0,0,0,21
+249912,0,0,0,21
+249913,0,0,0,21
+249914,0,0,0,21
+249915,0,0,0,21
+249916,0,0,0,21
+249917,0,0,0,21
+249918,0,0,0,21
+249919,0,0,0,21
+249920,0,0,0,21
+249921,0,0,0,21
+249922,0,0,0,21
+249923,0,0,0,21
+249924,0,0,0,21
+249925,0,0,0,21
+249926,0,0,0,21
+249927,0,0,0,21
+249928,0,0,0,21
+249929,0,0,0,21
+249930,0,0,0,21
+249931,0,0,0,21
+249932,0,0,0,21
+249933,0,0,0,21
+249934,0,0,0,21
+249935,0,0,0,21
+249936,0,0,0,21
+249937,0,0,0,21
+249938,0,0,0,21
+249939,0,0,0,21
+249940,0,0,0,21
+249941,0,0,0,21
+249942,0,0,0,21
+249943,0,0,0,21
+249944,0,0,0,21
+249945,0,0,0,21
+249946,0,0,0,21
+249947,0,0,0,21
+249948,0,0,0,21
+249949,0,0,0,21
+249950,0,0,0,21
+249951,0,0,0,21
+249952,0,0,0,21
+249953,0,0,0,21
+249954,0,0,0,21
+249955,0,0,0,21
+249956,0,0,0,21
+249957,0,0,0,21
+249958,0,0,0,21
+249959,0,0,0,21
+249960,0,0,0,21
+249961,0,0,0,21
+249962,0,0,0,21
+249963,0,0,0,21
+249964,0,0,0,21
+249965,0,0,0,21
+249966,0,0,0,21
+249967,0,0,0,21
+249968,0,0,0,21
+249969,0,0,0,21
+249970,0,0,0,21
+249971,0,0,0,21
+249972,0,0,0,21
+249973,0,0,0,21
+249974,0,0,0,21
+249975,0,0,0,21
+249976,0,0,0,21
+249977,0,0,0,21
+249978,0,0,0,21
+249979,0,0,0,21
+249980,0,0,0,21
+249981,0,0,0,21
+249982,0,0,0,21
+249983,0,0,0,21
+249984,0,0,0,21
+249985,0,0,0,21
+249986,0,0,0,21
+249987,0,0,0,21
+249988,0,0,0,21
+249989,0,0,0,21
+249990,0,0,0,21
+249991,0,0,0,21
+249992,0,0,0,21
+249993,0,0,0,21
+249994,0,0,0,21
+249995,0,0,0,21
+249996,0,0,0,21
+249997,0,0,0,21
+249998,0,0,0,21
+249999,0,0,0,21
+250000,0,0,0,21
+250001,0,0,0,21
+250002,0,0,0,21
+250003,0,0,0,21
+250004,0,0,0,21
+250005,0,0,0,21
+250006,0,0,0,21
+250007,0,0,0,21
+250008,0,0,0,21
+250009,0,0,0,21
+250010,0,0,0,21
+250011,0,0,0,21
+250012,0,0,0,21
+250013,0,0,0,21
+250014,0,0,0,21
+250015,0,0,0,21
+250016,0,0,0,21
+250017,0,0,0,21
+250018,0,0,0,21
+250019,0,0,0,21
+250020,0,0,0,21
+250021,0,0,0,21
+250022,0,0,0,21
+250023,0,0,0,21
+250024,0,0,0,21
+250025,0,0,0,21
+250026,0,0,0,21
+250027,0,0,0,21
+250028,0,0,0,21
+250029,0,0,0,21
+250030,0,0,0,21
+250031,0,0,0,21
+250032,0,0,0,21
+250033,0,0,0,21
+250034,0,0,0,21
+250035,0,0,0,21
+250036,0,0,0,21
+250037,0,0,0,21
+250038,0,0,0,21
+250039,0,0,0,21
+250040,0,0,0,21
+250041,0,0,0,21
+250042,0,0,0,21
+250043,0,0,0,21
+250044,0,0,0,21
+250045,0,0,0,21
+250046,0,0,0,21
+250047,0,0,0,21
+250048,0,0,0,21
+250049,0,0,0,21
+250050,0,0,0,21
+250051,0,0,0,21
+250052,0,0,0,21
+250053,0,0,0,21
+250054,0,0,0,21
+250055,0,0,0,21
+250056,0,0,0,21
+250057,0,0,0,21
+250058,0,0,0,21
+250059,0,0,0,21
+250060,0,0,0,21
+250061,0,0,0,21
+250062,0,0,0,21
+250063,0,0,0,21
+250064,0,0,0,21
+250065,0,0,0,21
+250066,0,0,0,21
+250067,0,0,0,21
+250068,0,0,0,21
+250069,0,0,0,21
+250070,0,0,0,21
+250071,0,0,0,21
+250072,0,0,0,21
+250073,0,0,0,21
+250074,0,0,0,21
+250075,0,0,0,21
+250076,0,0,0,21
+250077,0,0,0,21
+250078,0,0,0,21
+250079,0,0,0,21
+250080,0,0,0,21
+250081,0,0,0,21
+250082,0,0,0,21
+250083,0,0,0,21
+250084,0,0,0,21
+250085,0,0,0,21
+250086,0,0,0,21
+250087,0,0,0,21
+250088,0,0,0,21
+250089,0,0,0,21
+250090,0,0,0,21
+250091,0,0,0,21
+250092,0,0,0,21
+250093,0,0,0,21
+250094,0,0,0,21
+250095,0,0,0,21
+250096,0,0,0,21
+250097,0,0,0,21
+250098,0,0,0,21
+250099,0,0,0,21
+250100,0,0,0,21
+250101,0,0,0,21
+250102,0,0,0,21
+250103,0,0,0,21
+250104,0,0,0,21
+250105,0,0,0,21
+250106,0,0,0,21
+250107,0,0,0,21
+250108,0,0,0,21
+250109,0,0,0,21
+250110,0,0,0,21
+250111,0,0,0,21
+250112,0,0,0,21
+250113,0,0,0,21
+250114,0,0,0,21
+250115,0,0,0,21
+250116,0,0,0,21
+250117,0,0,0,21
+250118,0,0,0,21
+250119,0,0,0,21
+250120,0,0,0,21
+250121,0,0,0,21
+250122,0,0,0,21
+250123,0,0,0,21
+250124,0,0,0,21
+250125,0,0,0,21
+250126,0,0,0,21
+250127,0,0,0,21
+250128,0,0,0,21
+250129,0,0,0,21
+250130,0,0,0,21
+250131,0,0,0,21
+250132,0,0,0,21
+250133,0,0,0,21
+250134,0,0,0,21
+250135,0,0,0,21
+250136,0,0,0,21
+250137,0,0,0,21
+250138,0,0,0,21
+250139,0,0,0,21
+250140,0,0,0,21
+250141,0,0,0,21
+250142,0,0,0,21
+250143,0,0,0,21
+250144,0,0,0,21
+250145,0,0,0,21
+250146,0,0,0,21
+250147,0,0,0,21
+250148,0,0,0,21
+250149,0,0,0,21
+250150,0,0,0,21
+250151,0,0,0,21
+250152,0,0,0,21
+250153,0,0,0,21
+250154,0,0,0,21
+250155,0,0,0,21
+250156,0,0,0,21
+250157,0,0,0,21
+250158,0,0,0,21
+250159,0,0,0,21
+250160,0,0,0,21
+250161,0,0,0,21
+250162,0,0,0,21
+250163,0,0,0,21
+250164,0,0,0,21
+250165,0,0,0,21
+250166,0,0,0,21
+250167,0,0,0,21
+250168,0,0,0,21
+250169,0,0,0,21
+250170,0,0,0,21
+250171,0,0,0,21
+250172,0,0,0,21
+250173,0,0,0,21
+250174,0,0,0,21
+250175,0,0,0,21
+250176,0,0,0,21
+250177,0,0,0,21
+250178,0,0,0,21
+250179,0,0,0,21
+250180,0,0,0,21
+250181,0,0,0,21
+250182,0,0,0,21
+250183,0,0,0,21
+250184,0,0,0,21
+250185,0,0,0,21
+250186,0,0,0,21
+250187,0,0,0,21
+250188,0,0,0,21
+250189,0,0,0,21
+250190,0,0,0,21
+250191,0,0,0,21
+250192,0,0,0,21
+250193,0,0,0,21
+250194,0,0,0,21
+250195,0,0,0,21
+250196,0,0,0,21
+250197,0,0,0,21
+250198,0,0,0,21
+250199,0,0,0,21
+250200,0,0,0,21
+250201,0,0,0,21
+250202,0,0,0,21
+250203,0,0,0,21
+250204,0,0,0,21
+250205,0,0,0,21
+250206,0,0,0,21
+250207,0,0,0,21
+250208,0,0,0,21
+250209,0,0,0,21
+250210,0,0,0,21
+250211,0,0,0,21
+250212,0,0,0,21
+250213,0,0,0,21
+250214,0,0,0,21
+250215,0,0,0,21
+250216,0,0,0,21
+250217,0,0,0,21
+250218,0,0,0,21
+250219,0,0,0,21
+250220,0,0,0,21
+250221,0,0,0,21
+250222,0,0,0,21
+250223,0,0,0,21
+250224,0,0,0,21
+250225,0,0,0,21
+250226,0,0,0,21
+250227,0,0,0,21
+250228,0,0,0,21
+250229,0,0,0,21
+250230,0,0,0,21
+250231,0,0,0,21
+250232,0,0,0,21
+250233,0,0,0,21
+250234,0,0,0,21
+250235,0,0,0,21
+250236,0,0,0,21
+250237,0,0,0,21
+250238,0,0,0,21
+250239,0,0,0,21
+250240,0,0,0,21
+250241,0,0,0,21
+250242,0,0,0,21
+250243,0,0,0,21
+250244,0,0,0,21
+250245,0,0,0,21
+250246,0,0,0,21
+250247,0,0,0,21
+250248,0,0,0,21
+250249,0,0,0,21
+250250,0,0,0,21
+250251,0,0,0,21
+250252,0,0,0,21
+250253,0,0,0,21
+250254,0,0,0,21
+250255,0,0,0,21
+250256,0,0,0,21
+250257,0,0,0,21
+250258,0,0,0,21
+250259,0,0,0,21
+250260,0,0,0,21
+250261,0,0,0,21
+250262,0,0,0,21
+250263,0,0,0,21
+250264,0,0,0,21
+250265,0,0,0,21
+250266,0,0,0,21
+250267,0,0,0,21
+250268,0,0,0,21
+250269,0,0,0,21
+250270,0,0,0,21
+250271,0,0,0,21
+250272,0,0,0,21
+250273,0,0,0,21
+250274,0,0,0,21
+250275,0,0,0,21
+250276,0,0,0,21
+250277,0,0,0,21
+250278,0,0,0,21
+250279,0,0,0,21
+250280,0,0,0,21
+250281,0,0,0,21
+250282,0,0,0,21
+250283,0,0,0,21
+250284,0,0,0,21
+250285,0,0,0,21
+250286,0,0,0,21
+250287,0,0,0,21
+250288,0,0,0,21
+250289,0,0,0,21
+250290,0,0,0,21
+250291,0,0,0,21
+250292,0,0,0,21
+250293,0,0,0,21
+250294,0,0,0,21
+250295,0,0,0,21
+250296,0,0,0,21
+250297,0,0,0,21
+250298,0,0,0,21
+250299,0,0,0,21
+250300,0,0,0,21
+250301,0,0,0,21
+250302,0,0,0,21
+250303,0,0,0,21
+250304,0,0,0,21
+250305,0,0,0,21
+250306,0,0,0,21
+250307,0,0,0,21
+250308,0,0,0,21
+250309,0,0,0,21
+250310,0,0,0,21
+250311,0,0,0,21
+250312,0,0,0,21
+250313,0,0,0,21
+250314,0,0,0,21
+250315,0,0,0,21
+250316,0,0,0,21
+250317,0,0,0,21
+250318,0,0,0,21
+250319,0,0,0,21
+250320,0,0,0,21
+250321,0,0,0,21
+250322,0,0,0,21
+250323,0,0,0,21
+250324,0,0,0,21
+250325,0,0,0,21
+250326,0,0,0,21
+250327,0,0,0,21
+250328,0,0,0,21
+250329,0,0,0,21
+250330,0,0,0,21
+250331,0,0,0,21
+250332,0,0,0,21
+250333,0,0,0,21
+250334,0,0,0,21
+250335,0,0,0,21
+250336,0,0,0,21
+250337,0,0,0,21
+250338,0,0,0,21
+250339,0,0,0,21
+250340,0,0,0,21
+250341,0,0,0,21
+250342,1517.447965,0,0,21
+250343,855.2918295,0,0,21
+250344,1255.78222,0,0,21
+250345,1387.085166,0,0,21
+250346,1517.447941,0,0,21
+250347,1775.619712,0,0,21
+250348,1775.619703,0,0,21
+250349,2157.254705,0,0,21
+250350,2030.736365,0,0,21
+250351,2408.379845,0,0,21
+250352,2408.379829,0,0,21
+250353,2657.140364,0,0,21
+250354,2657.140344,0,0,21
+250355,3026.242622,0,0,21
+250356,2903.720914,0,0,21
+250357,3269.832627,0,0,21
+250358,3269.832597,0,0,21
+250359,3390.930688,0,0,21
+250360,3631.799563,0,0,21
+250361,3631.799526,0,0,21
+250362,3870.976968,0,0,21
+250363,3989.957978,0,0,21
+250364,4108.546755,0,0,21
+250365,4226.752267,0,0,21
+250366,4344.582977,0,0,21
+250367,4462.046887,0,0,21
+250368,4579.151575,0,0,21
+250369,4812.31175,0,0,21
+250370,4812.311705,0,0,21
+250371,4928.380453,0,0,21
+250372,5159.526387,0,0,21
+250373,5159.526309,0,0,21
+250374,5389.388124,0,0,21
+250375,5463.818628,0,0,21
+250376,5778.695456,0,0,21
+250377,5744.714675,0,0,21
+250378,6006.112231,0,0,21
+250379,6039.55128,0,0,21
+250380,6265.800829,0,0,21
+250381,0,0,0,21
+250382,0,0,0,21
+250383,0,0,0,21
+250384,0,0,0,21
+250385,337354.7225,368920.0784,656269.4241,21
+250386,0,0,0,21
+250387,0,0,0,21
+250388,0,0,0,21
+250389,0,0,0,21
+250390,0,0,0,21
+250391,0,0,0,21
+250392,0,0,0,21
+250393,0,0,0,21
+250394,0,0,0,21
+250395,0,0,0,21
+250396,0,0,0,21
+250397,0,0,0,21
+250398,0,0,0,21
+250399,0,0,0,21
+250400,0,0,0,21
+250401,0,0,0,21
+250402,0,0,0,21
+250403,0,0,0,21
+250404,0,0,0,21
+250405,0,0,0,21
+250406,0,0,0,21
+250407,0,0,0,21
+250408,0,0,0,21
+250409,0,0,0,21
+250410,0,0,0,21
+250411,0,0,0,21
+250412,0,0,0,21
+250413,0,0,0,21
+250414,0,0,0,21
+250415,0,0,0,21
+250416,0,0,0,21
+250417,0,0,0,21
+250418,0,0,0,21
+250419,337931.1924,368927.7918,657138.6474,21
+250420,0,0,0,21
+250421,0,0,0,21
+250422,0,0,0,21
+250423,0,0,0,21
+250424,0,0,0,21
+250425,0,0,0,21
+250426,0,0,0,21
+250427,0,0,0,21
+250428,0,0,0,21
+250429,0,0,0,21
+250430,0,0,0,21
+250431,0,0,0,21
+250432,0,0,0,21
+250433,0,0,0,21
+250434,0,0,0,21
+250435,0,0,0,21
+250436,0,0,0,21
+250437,0,0,0,21
+250438,0,0,0,21
+250439,0,0,0,21
+250440,0,0,0,15.6
+250441,0,0,0,15.6
+250442,0,0,0,15.6
+250443,0,0,0,15.6
+250444,0,0,0,15.6
+250445,0,0,0,15.6
+250446,0,0,0,15.6
+250447,0,0,0,15.6
+250448,0,0,0,15.6
+250449,0,0,0,15.6
+250450,0,0,0,15.6
+250451,0,0,0,15.6
+250452,0,0,0,15.6
+250453,0,368935.5093,657641.5945,15.6
+250454,335579.8778,0,0,15.6
+250455,0,0,0,15.6
+250456,0,0,0,15.6
+250457,0,0,0,15.6
+250458,0,0,0,15.6
+250459,0,0,0,15.6
+250460,0,0,0,15.6
+250461,0,0,0,15.6
+250462,0,0,0,15.6
+250463,0,0,0,15.6
+250464,0,0,0,15.6
+250465,0,0,0,15.6
+250466,0,0,0,15.6
+250467,0,0,0,15.6
+250468,0,0,0,15.6
+250469,0,0,0,15.6
+250470,0,0,0,15.6
+250471,0,0,0,15.6
+250472,0,0,0,15.6
+250473,0,0,0,15.6
+250474,0,0,0,15.6
+250475,0,0,0,15.6
+250476,0,0,0,15.6
+250477,0,0,0,15.6
+250478,0,0,0,15.6
+250479,0,0,0,15.6
+250480,0,0,0,15.6
+250481,0,0,0,15.6
+250482,0,0,0,15.6
+250483,0,0,0,15.6
+250484,0,0,0,15.6
+250485,0,0,0,15.6
+250486,0,0,0,15.6
+250487,0,368943.2257,657733.5262,15.6
+250488,0,0,0,15.6
+250489,337464.2794,0,0,15.6
+250490,0,0,0,15.6
+250491,0,0,0,15.6
+250492,0,0,0,15.6
+250493,0,0,0,15.6
+250494,0,0,0,15.6
+250495,0,0,0,15.6
+250496,0,0,0,15.6
+250497,0,0,0,15.6
+250498,0,0,0,15.6
+250499,0,0,0,15.6
+250500,0,0,0,15.6
+250501,0,0,0,15.6
+250502,0,0,0,15.6
+250503,0,0,0,15.6
+250504,0,0,0,15.6
+250505,0,0,0,15.6
+250506,0,0,0,15.6
+250507,0,0,0,15.6
+250508,0,0,0,15.6
+250509,0,0,0,15.6
+250510,0,0,0,15.6
+250511,0,0,0,15.6
+250512,0,0,0,15.6
+250513,0,0,0,15.6
+250514,0,0,0,15.6
+250515,0,0,0,15.6
+250516,0,0,0,15.6
+250517,0,0,0,15.6
+250518,0,0,0,15.6
+250519,0,0,0,15.6
+250520,0,0,0,15.6
+250521,0,368946.5413,657847.1673,15.6
+250522,0,0,0,15.6
+250523,0,0,0,15.6
+250524,335942.5451,0,0,15.6
+250525,0,0,0,15.6
+250526,0,0,0,15.6
+250527,0,0,0,15.6
+250528,0,0,0,15.6
+250529,0,0,0,15.6
+250530,0,0,0,15.6
+250531,0,0,0,15.6
+250532,0,0,0,15.6
+250533,0,0,0,15.6
+250534,0,0,0,15.6
+250535,0,0,0,15.6
+250536,0,0,0,15.6
+250537,0,0,0,15.6
+250538,0,0,0,15.6
+250539,0,0,0,15.6
+250540,0,0,0,15.6
+250541,0,0,0,15.6
+250542,0,0,0,15.6
+250543,0,0,0,15.6
+250544,0,0,0,15.6
+250545,0,0,0,15.6
+250546,0,0,0,15.6
+250547,0,0,0,15.6
+250548,0,0,0,15.6
+250549,0,0,0,15.6
+250550,0,0,0,15.6
+250551,0,0,0,15.6
+250552,0,0,0,15.6
+250553,0,0,0,15.6
+250554,0,0,0,15.6
+250555,0,368946.5435,658222.7518,15.6
+250556,0,0,0,15.6
+250557,0,0,0,15.6
+250558,0,0,0,15.6
+250559,337404.752,0,0,15.6
+250560,0,0,0,15.6
+250561,0,0,0,15.6
+250562,0,0,0,15.6
+250563,0,0,0,15.6
+250564,0,0,0,15.6
+250565,0,0,0,15.6
+250566,0,0,0,15.6
+250567,0,0,0,15.6
+250568,0,0,0,15.6
+250569,0,0,0,15.6
+250570,0,0,0,15.6
+250571,0,0,0,15.6
+250572,0,0,0,15.6
+250573,0,0,0,15.6
+250574,0,0,0,15.6
+250575,0,0,0,15.6
+250576,0,0,0,15.6
+250577,0,0,0,15.6
+250578,0,0,0,15.6
+250579,0,0,0,15.6
+250580,0,0,0,15.6
+250581,0,0,0,15.6
+250582,0,0,0,15.6
+250583,0,0,0,15.6
+250584,0,0,0,15.6
+250585,0,0,0,15.6
+250586,0,0,0,15.6
+250587,0,0,0,15.6
+250588,0,0,0,15.6
+250589,0,0,658385.4509,15.6
+250590,0,368946.5437,0,15.6
+250591,0,0,0,15.6
+250592,0,0,0,15.6
+250593,0,0,0,15.6
+250594,335214.1704,0,0,15.6
+250595,0,0,0,15.6
+250596,0,0,0,15.6
+250597,0,0,0,15.6
+250598,0,0,0,15.6
+250599,0,0,0,15.6
+250600,0,0,0,15.6
+250601,0,0,0,15.6
+250602,0,0,0,15.6
+250603,0,0,0,15.6
+250604,0,0,0,15.6
+250605,0,0,0,15.6
+250606,0,0,0,15.6
+250607,0,0,0,15.6
+250608,0,0,0,15.6
+250609,0,0,0,15.6
+250610,0,0,0,15.6
+250611,0,0,0,15.6
+250612,0,0,0,15.6
+250613,0,0,0,15.6
+250614,0,0,0,15.6
+250615,0,0,0,15.6
+250616,0,0,0,15.6
+250617,0,0,0,15.6
+250618,0,0,0,15.6
+250619,0,0,0,15.6
+250620,0,0,0,15.6
+250621,0,0,0,15.6
+250622,0,0,0,15.6
+250623,0,0,658339.0543,15.6
+250624,0,0,0,15.6
+250625,0,368946.5409,0,15.6
+250626,0,0,0,15.6
+250627,0,0,0,15.6
+250628,0,0,0,15.6
+250629,337389.048,0,0,15.6
+250630,0,0,0,15.6
+250631,0,0,0,15.6
+250632,0,0,0,15.6
+250633,0,0,0,15.6
+250634,0,0,0,15.6
+250635,0,0,0,15.6
+250636,0,0,0,15.6
+250637,0,0,0,15.6
+250638,0,0,0,15.6
+250639,0,0,0,15.6
+250640,0,0,0,15.6
+250641,0,0,0,15.6
+250642,0,0,0,15.6
+250643,0,0,0,15.6
+250644,0,0,0,15.6
+250645,0,0,0,15.6
+250646,0,0,0,15.6
+250647,0,0,0,15.6
+250648,0,0,0,15.6
+250649,0,0,0,15.6
+250650,0,0,0,15.6
+250651,0,0,0,15.6
+250652,0,0,0,15.6
+250653,0,0,0,15.6
+250654,0,0,0,15.6
+250655,0,0,0,15.6
+250656,0,0,0,15.6
+250657,0,0,658551.0185,15.6
+250658,0,0,0,15.6
+250659,0,0,0,15.6
+250660,0,368946.2539,0,15.6
+250661,0,0,0,15.6
+250662,0,0,0,15.6
+250663,0,0,0,15.6
+250664,340408.6804,0,0,15.6
+250665,0,0,0,15.6
+250666,0,0,0,15.6
+250667,0,0,0,15.6
+250668,0,0,0,15.6
+250669,0,0,0,15.6
+250670,0,0,0,15.6
+250671,0,0,0,15.6
+250672,0,0,0,15.6
+250673,0,0,0,15.6
+250674,0,0,0,15.6
+250675,0,0,0,15.6
+250676,0,0,0,15.6
+250677,0,0,0,15.6
+250678,0,0,0,15.6
+250679,0,0,0,15.6
+250680,0,0,0,15.6
+250681,0,0,0,15.6
+250682,0,0,0,15.6
+250683,0,0,0,15.6
+250684,0,0,0,15.6
+250685,0,0,0,15.6
+250686,0,0,0,15.6
+250687,0,0,0,15.6
+250688,0,0,0,15.6
+250689,0,0,0,15.6
+250690,0,0,0,15.6
+250691,0,0,658364.1429,15.6
+250692,0,0,0,15.6
+250693,0,0,0,15.6
+250694,0,0,0,15.6
+250695,0,368946.5421,0,15.6
+250696,0,0,0,15.6
+250697,0,0,0,15.6
+250698,0,0,0,15.6
+250699,340411.1437,0,0,15.6
+250700,0,0,0,15.6
+250701,0,0,0,15.6
+250702,0,0,0,15.6
+250703,0,0,0,15.6
+250704,0,0,0,15.6
+250705,0,0,0,15.6
+250706,0,0,0,15.6
+250707,0,0,0,15.6
+250708,0,0,0,15.6
+250709,0,0,0,15.6
+250710,0,0,0,15.6
+250711,0,0,0,15.6
+250712,0,0,0,15.6
+250713,0,0,0,15.6
+250714,0,0,0,15.6
+250715,0,0,0,15.6
+250716,0,0,0,15.6
+250717,0,0,0,15.6
+250718,0,0,0,15.6
+250719,0,0,0,15.6
+250720,0,0,0,15.6
+250721,0,0,0,15.6
+250722,0,0,0,15.6
+250723,0,0,0,15.6
+250724,0,0,0,15.6
+250725,0,0,658536.2983,15.6
+250726,0,0,0,15.6
+250727,0,0,0,15.6
+250728,0,0,0,15.6
+250729,0,0,0,15.6
+250730,0,368946.5437,0,15.6
+250731,0,0,0,15.6
+250732,0,0,0,15.6
+250733,0,0,0,15.6
+250734,340411.0664,0,0,15.6
+250735,0,0,0,15.6
+250736,0,0,0,15.6
+250737,0,0,0,15.6
+250738,0,0,0,15.6
+250739,0,0,0,15.6
+250740,0,0,0,15.6
+250741,0,0,0,15.6
+250742,0,0,0,15.6
+250743,0,0,0,15.6
+250744,0,0,0,15.6
+250745,0,0,0,15.6
+250746,0,0,0,15.6
+250747,0,0,0,15.6
+250748,0,0,0,15.6
+250749,0,0,0,15.6
+250750,0,0,0,15.6
+250751,0,0,0,15.6
+250752,0,0,0,15.6
+250753,0,0,0,15.6
+250754,0,0,0,15.6
+250755,0,0,0,15.6
+250756,0,0,0,15.6
+250757,0,0,0,15.6
+250758,0,0,0,15.6
+250759,0,0,658985.2386,15.6
+250760,0,0,0,15.6
+250761,0,0,0,15.6
+250762,0,0,0,15.6
+250763,0,0,0,15.6
+250764,0,0,0,15.6
+250765,0,368946.5437,0,15.6
+250766,0,0,0,15.6
+250767,0,0,0,15.6
+250768,340411.028,0,0,15.6
+250769,0,0,0,15.6
+250770,0,0,0,15.6
+250771,0,0,0,15.6
+250772,0,0,0,15.6
+250773,0,0,0,15.6
+250774,0,0,0,15.6
+250775,0,0,0,15.6
+250776,0,0,0,15.6
+250777,0,0,0,15.6
+250778,0,0,0,15.6
+250779,0,0,0,15.6
+250780,0,0,0,15.6
+250781,0,0,0,15.6
+250782,0,0,0,15.6
+250783,0,0,0,15.6
+250784,0,0,0,15.6
+250785,0,0,0,15.6
+250786,0,0,0,15.6
+250787,0,0,0,15.6
+250788,0,0,0,15.6
+250789,0,0,0,15.6
+250790,0,0,0,15.6
+250791,0,0,0,15.6
+250792,0,0,0,15.6
+250793,0,0,658628.8924,15.6
+250794,0,0,0,15.6
+250795,0,0,0,15.6
+250796,0,0,0,15.6
+250797,0,0,0,15.6
+250798,0,0,0,15.6
+250799,0,369417.7888,0,15.6
+250800,0,0,0,17.8
+250801,5503.862138,0,0,17.8
+250802,358661.5722,0,0,17.8
+250803,9449.024646,0,0,17.8
+250804,12726.54524,0,0,17.8
+250805,13123.63286,1522.149924,0,17.8
+250806,13321.20314,2767.829879,0,17.8
+250807,13518.13413,2152.457918,0,17.8
+250808,13910.10658,2767.830128,0,17.8
+250809,13910.10478,3070.865189,0,17.8
+250810,14299.59807,3221.3373,0,17.8
+250811,14396.58833,3520.322556,0,17.8
+250812,14686.65894,3816.846291,0,17.8
+250813,14783.04879,3964.234834,0,17.8
+250814,15071.33539,4111.064553,0,17.8
+250815,15262.79329,0,0,17.8
+250816,18504.70382,0,0,17.8
+250817,17656.77137,0,0,17.8
+250818,18467.76871,0,0,17.8
+250819,18955.00618,0,0,17.8
+250820,19453.40019,0,0,17.8
+250821,19812.59429,0,0,17.8
+250822,20331.85402,0,0,17.8
+250823,20661.35303,0,0,17.8
+250824,21199.25681,0,0,17.8
+250825,0,0,0,17.8
+250826,0,0,0,17.8
+250827,0,0,659333.5223,17.8
+250828,0,0,0,17.8
+250829,0,0,0,17.8
+250830,0,0,0,17.8
+250831,0,0,0,17.8
+250832,0,0,0,17.8
+250833,0,369419.4366,0,17.8
+250834,0,0,0,17.8
+250835,0,0,0,17.8
+250836,340411.0808,0,0,17.8
+250837,0,0,0,17.8
+250838,0,0,0,17.8
+250839,0,0,0,17.8
+250840,0,0,0,17.8
+250841,0,0,0,17.8
+250842,0,0,0,17.8
+250843,0,0,0,17.8
+250844,0,0,0,17.8
+250845,0,0,0,17.8
+250846,0,0,0,17.8
+250847,0,0,0,17.8
+250848,0,0,0,17.8
+250849,0,0,0,17.8
+250850,0,0,0,17.8
+250851,0,0,0,17.8
+250852,0,0,0,17.8
+250853,0,0,0,17.8
+250854,0,0,0,17.8
+250855,0,0,0,17.8
+250856,0,0,0,17.8
+250857,0,0,0,17.8
+250858,0,0,0,17.8
+250859,0,0,0,17.8
+250860,0,0,0,20
+250861,25217.55084,0,658749.2216,20
+250862,9117.297302,0,0,20
+250863,63523.58892,0,0,20
+250864,65049.14086,0,0,20
+250865,94580.24525,7553.485326,0,20
+250866,78767.14068,42353.14263,0,20
+250867,90346.53852,61149.19294,0,20
+250868,85658.13758,42688.93349,0,20
+250869,87011.85962,71548.20412,0,20
+250870,86792.70392,60986.42244,0,20
+250871,86002.59759,64579.31069,0,20
+250872,85812.19866,65721.79801,0,20
+250873,84938.79735,66503.28587,0,20
+250874,85063.83981,66749.81823,0,20
+250875,83970.45068,67488.4921,0,20
+250876,84133.29119,68405.89674,0,20
+250877,83367.16441,68644.28411,0,20
+250878,83135.60804,69632.3657,0,20
+250879,82717.73724,69745.03815,0,20
+250880,82363.19518,70248.80214,0,20
+250881,81810.75989,71059.60909,0,20
+250882,81423.10424,71240.73581,0,20
+250883,81261.33007,71916.92977,0,20
+250884,80659.60587,72126.55185,0,20
+250885,80376.54837,72999.22782,0,20
+250886,79927.95825,72882.43514,0,20
+250887,79607.99433,73902.58859,0,20
+250888,79054.71655,73663.7733,0,20
+250889,78591.30027,74586.07744,0,20
+250890,78449.36653,74655.48019,0,20
+250891,77757.91326,75151.13135,0,20
+250892,76855.85293,75847.21234,0,20
+250893,74927.61899,75515.50386,0,20
+250894,73469.77258,76587.48672,0,20
+250895,72798.86445,76342.75794,0,20
+250896,72264.12071,77121.52205,0,20
+250897,71180.24388,77280.09932,0,20
+250898,70134.16521,77892.62156,0,20
+250899,69965.63891,77651.9861,0,20
+250900,68406.99924,78708.89271,0,20
+250901,68089.8093,78183.91272,0,20
+250902,66923.42538,79289.94053,0,20
+250903,66280.8937,79028.87533,0,20
+250904,65399.23825,79629.52422,0,20
+250905,64529.77363,79781.47418,0,20
+250906,63897.37672,79916.49434,0,20
+250907,62945.38279,80486.95125,0,20
+250908,61921.49334,80685.53617,0,20
+250909,61283.93005,80989.0876,0,20
+250910,60164.91048,80956.30568,0,20
+250911,59545.75173,81504.90323,0,20
+250912,58324.8861,81945.18718,0,20
+250913,57458.11146,81412.2682,0,20
+250914,56636.1597,82594.48272,0,20
+250915,55735.85887,82309.27877,0,20
+250916,54759.71938,82540.86796,0,20
+250917,53542.31729,82964.96566,0,20
+250918,52553.19167,83108.77247,0,20
+250919,51365.77959,83522.1958,0,20
+250920,49914.36067,83439.02316,0,21
+250921,49256.1939,83874.52513,0,21
+250922,48002.33307,84757.67662,0,21
+250923,47495.2391,83911.99063,0,21
+250924,45160.54177,85048.33478,0,21
+250925,44612.15468,84432.3687,0,21
+250926,44579.68012,85412.8498,0,21
+250927,44253.69971,85136.52061,0,21
+250928,43898.44777,85091.12152,0,21
+250929,43610.97169,85690.88592,0,21
+250930,43595.85121,85534.9713,0,21
+250931,42933.12686,86072.01072,0,21
+250932,43053.16391,85938.53133,0,21
+250933,42632.28499,86210.0673,0,21
+250934,42176.4181,86050.10985,0,21
+250935,42376.67046,86826.44625,0,21
+250936,41897.75782,86515.75147,0,21
+250937,41571.05029,86926.52506,0,21
+250938,41525.70166,86745.06384,0,21
+250939,41351.34284,87232.11286,0,21
+250940,41206.28013,86950.00124,0,21
+250941,40701.45796,87740.72934,0,21
+250942,40709.52001,87123.31007,0,21
+250943,40216.38674,87719.81971,0,21
+250944,40178.0682,87608.26781,0,21
+250945,39932.99412,88117.57272,0,21
+250946,39498.95581,87488.65036,0,21
+250947,39492.67576,88631.71582,0,21
+250948,38996.90265,87853.22922,0,21
+250949,38911.79936,88287.56329,0,21
+250950,38567.45055,88698.63607,0,21
+250951,38188.92085,87899.33337,0,21
+250952,38084.09793,88297.39223,0,21
+250953,37651.87244,87938.56864,0,21
+250954,37472.13812,88557.4784,0,21
+250955,37410.23257,88041.84943,0,21
+250956,36773.30338,88045.41645,0,21
+250957,36567.69235,88536.37253,0,21
+250958,36337.38899,88138.68689,0,21
+250959,36168.9713,88023.90005,0,21
+250960,35664.30665,88339.40494,0,21
+250961,35518.98246,88162.64713,0,21
+250962,35138.37311,87828.61318,0,21
+250963,34835.61328,88382.10669,0,21
+250964,34603.25232,87999.86022,0,21
+250965,34248.4371,88177.37253,0,21
+250966,34127.70239,87826.8629,0,21
+250967,34001.25085,88111.28323,0,21
+250968,33858.58733,87593.37252,0,21
+250969,33600.45426,88206.44658,0,21
+250970,33351.25368,87747.39793,0,21
+250971,33341.59671,87559.74921,0,21
+250972,33091.48344,87875.01081,0,21
+250973,32810.82711,87712.65447,0,21
+250974,32678.11118,87516.16632,0,21
+250975,32367.37162,87437.16396,0,21
+250976,32424.54111,87394.55963,0,21
+250977,32038.37979,87381.91315,0,21
+250978,31969.75666,87309.48706,0,21
+250979,31590.35538,87133.35484,0,21
+250980,31635.45083,87404.0493,0,21
+250981,22216.60917,73217.0294,0,21
+250982,21669.54987,73038.0799,0,21
+250983,21238.41783,71985.06299,0,21
+250984,20749.19687,71991.766,0,21
+250985,20718.68143,71700.74916,0,21
+250986,20127.60312,71210.29578,0,21
+250987,19975.85223,71327.65385,0,21
+250988,19606.98171,70825.05631,0,21
+250989,19368.68229,70552.54082,0,21
+250990,19055.31412,70619.23332,0,21
+250991,19045.1527,69954.13505,0,21
+250992,18678.07192,69992.78057,0,21
+250993,18805.95155,69861.76765,0,21
+250994,18386.38505,69424.71348,0,21
+250995,18439.29487,69202.57389,0,21
+250996,18267.4391,69059.3778,0,21
+250997,18048.19994,68756.11768,0,21
+250998,17939.8035,68699.78967,0,21
+250999,17962.57468,68335.10729,0,21
+251000,17676.57138,68200.09238,0,21
+251001,17613.31506,67922.16099,0,21
+251002,17403.85138,67661.02375,0,21
+251003,17325.95925,67548.43098,0,21
+251004,17172.9278,67029.96264,0,21
+251005,17051.97205,67227.26047,0,21
+251006,16962.65377,66712.02785,0,21
+251007,16742.15023,66819.30713,0,21
+251008,16686.01454,66079.18398,0,21
+251009,16164.98184,66338.96827,0,21
+251010,16182.67264,66001.01846,0,21
+251011,15873.4412,65744.51065,0,21
+251012,15893.17188,65900.63707,0,21
+251013,15647.64837,65238.44179,0,21
+251014,15501.3949,65840.46662,0,21
+251015,15444.44221,65639.42252,0,21
+251016,15309.87838,65356.63036,0,21
+251017,15139.13312,65415.95099,0,21
+251018,15003.93299,65404.39565,0,21
+251019,14844.91396,65143.27112,0,21
+251020,14808.77195,65534.44139,0,21
+251021,14594.63485,64977.07603,0,21
+251022,14500.48363,65348.30318,0,21
+251023,14478.8483,65011.40294,0,21
+251024,14227.15211,65206.57169,0,21
+251025,14067.40613,65110.43829,0,21
+251026,14031.62411,65243.21725,0,21
+251027,13870.34786,64766.41118,0,21
+251028,13732.63817,65243.23277,0,21
+251029,13570.44048,65040.68343,0,21
+251030,13535.39212,64864.66756,0,21
+251031,13253.63523,64878.21268,0,21
+251032,13220.6526,65096.35595,0,21
+251033,13145.84217,64879.29313,0,21
+251034,12904.02241,65002.98311,0,21
+251035,12874.65594,64851.46224,0,21
+251036,12574.87902,65046.57936,0,21
+251037,12566.90777,64659.77465,0,21
+251038,12501.3764,65209.96901,0,21
+251039,12242.53842,64912.05995,0,21
+251040,12193.6017,65037.01072,0,21
+251041,11944.80925,65039.53931,0,21
+251042,11883.10735,64808.95395,0,21
+251043,11846.93707,64826.17483,0,21
+251044,11471.39703,64661.92796,0,21
+251045,11565.12914,64902.5614,0,21
+251046,11318.04752,64617.0118,0,21
+251047,11257.73428,64652.6,0,21
+251048,11009.48736,64674.39079,0,21
+251049,10997.50806,64606.70774,0,21
+251050,10911.9642,64525.23475,0,21
+251051,10674.84046,64583.39748,0,21
+251052,10436.49188,64520.62193,0,21
+251053,10563.55865,64564.30237,0,21
+251054,10230.19834,64540.39212,0,21
+251055,10155.08413,64223.63836,0,21
+251056,10009.80031,64400.83385,0,21
+251057,9851.250957,64282.17715,0,21
+251058,9692.320781,64439.78454,0,21
+251059,9653.139559,64240.32611,0,21
+251060,9398.270239,64243.20825,0,21
+251061,9332.032783,64464.67875,0,21
+251062,9305.689116,64235.89251,0,21
+251063,8925.290046,64028.38583,0,21
+251064,8993.090007,64355.08102,0,21
+251065,8719.974517,64053.87267,0,21
+251066,8704.548734,64315.52684,0,21
+251067,8569.36593,63890.05382,0,21
+251068,8446.780068,64221.82913,0,21
+251069,8433.845102,64175.27677,0,21
+251070,8200.799221,63836.36753,0,21
+251071,8187.820462,64219.36027,0,21
+251072,8051.365095,63866.75972,0,21
+251073,7940.692602,63803.24287,0,21
+251074,7914.554569,64039.7511,0,21
+251075,7803.624986,63847.37322,0,21
+251076,7666.197336,63683.9055,0,21
+251077,7666.196552,63716.99094,0,21
+251078,7416.683298,63544.30787,0,21
+251079,7639.856094,63646.77117,0,21
+251080,7416.682023,63660.11807,0,21
+251081,7264.986276,63348.60257,0,21
+251082,7390.237739,63413.71886,0,21
+251083,7026.886044,63423.80431,0,21
+251084,7112.776866,63141.26186,0,21
+251085,7013.571495,63403.69305,0,21
+251086,6860.59593,63223.15054,0,21
+251087,6874.034001,63031.23437,0,21
+251088,6720.649493,62844.81611,0,21
+251089,6620.691439,63466.114,0,21
+251090,6593.763238,62849.70058,0,21
+251091,6580.256606,62710.73852,0,21
+251092,6339.011836,62977.48096,0,21
+251093,6325.448094,62688.5029,0,21
+251094,6325.447602,62707.42176,0,21
+251095,6069.297662,62618.74048,0,21
+251096,6170.270599,62812.07917,0,21
+251097,5940.705097,62243.68584,0,21
+251098,5913.313634,62632.30538,0,21
+251099,5798.04875,62333.25724,0,21
+251100,5770.53611,62497.59136,0,21
+251101,5539.064218,63832.94931,0,21
+251102,5497.515363,64232.22689,0,21
+251103,5395.108109,63835.49681,0,21
+251104,5381.24324,64002.68924,0,21
+251105,5236.795799,63931.91075,0,21
+251106,5236.796044,64037.77696,0,21
+251107,5105.855961,63580.68198,0,21
+251108,4974.518306,64244.59641,0,21
+251109,5077.834077,63709.51267,0,21
+251110,4842.774125,63597.74112,0,21
+251111,4814.616939,64218.80485,0,21
+251112,4814.61719,63512.16957,0,21
+251113,4682.388295,63773.972,0,21
+251114,4668.223594,63731.83142,0,21
+251115,4416.641092,63573.92071,0,21
+251116,4654.023619,63808.85839,0,21
+251117,4268.828581,63611.72944,0,21
+251118,4388.132888,63680.05999,0,21
+251119,4254.519665,63587.88751,0,21
+251120,4240.173473,63361.6034,0,21
+251121,4106.061695,63841.51627,0,21
+251122,3985.898526,63361.6228,0,21
+251123,4091.639407,63576.04741,0,21
+251124,3821.90121,63191.4295,0,21
+251125,3836.402508,63696.13477,0,21
+251126,3807.360585,63347.70907,0,21
+251127,3671.723607,63228.32485,0,21
+251128,3671.703966,63541.35654,0,21
+251129,3535.527207,63181.72388,0,21
+251130,3520.862011,63394.39833,0,21
+251131,3384.105267,63181.74581,0,21
+251132,3384.105593,63361.7288,0,21
+251133,3231.996638,63066.73059,0,21
+251134,3108.903053,63167.76612,0,21
+251135,3217.155581,63014.78682,0,21
+251136,2831.300724,62965.48241,0,21
+251137,3064.240203,62961.6464,0,21
+251138,2676.55384,62758.35676,0,21
+251139,2786.352933,62576.78247,0,21
+251140,2661.522694,63123.08646,0,21
+251141,2505.844183,62289.25735,0,21
+251142,2364.527534,63020.04892,0,21
+251143,2222.452312,62075.54057,0,21
+251144,2349.288853,62578.37988,0,21
+251145,1935.842209,62490.08301,0,21
+251146,2191.807866,62279.32879,0,21
+251147,1775.727848,62348.8542,0,21
+251148,1920.433522,61974.22582,0,21
+251149,1744.603119,62216.36686,0,21
+251150,1630.036798,61873.5203,0,21
+251151,1598.782426,61985.52047,0,21
+251152,1451.886624,61868.39856,0,21
+251153,1451.886669,61880.25598,0,21
+251154,1303.811456,61621.5126,0,21
+251155,1154.425333,61679.72303,0,21
+251156,1138.476138,61625.41199,0,21
+251157,987.5277454,61434.87382,0,21
+251158,987.5277723,61368.78514,0,21
+251159,818.6586014,61576.55136,0,21
+251160,818.6586215,60964.61688,0,21
+251161,680.1284882,59444.17317,0,21
+251162,785.9711539,59595.95515,0,21
+251163,506.4067525,58989.762,0,21
+251164,498.171373,59188.51048,0,21
+251165,473.2985348,59096.72344,0,21
+251166,328.694092,59295.33526,0,21
+251167,143.2313479,58553.91104,0,21
+251168,143.2313531,59201.41341,0,21
+251169,134.7460537,58602.76916,0,21
+251170,109.0521048,58574.86003,0,21
+251171,109.0521036,58683.33572,0,21
+251172,82.94368104,58350.57453,0,21
+251173,74.13130989,58345.31967,0,21
+251174,74.13131183,58457.58634,0,21
+251175,38.15895738,58022.3825,0,21
+251176,38.15895689,58224.20459,0,21
+251177,19.54820391,58094.52638,0,21
+251178,19.5482036,57781.58676,0,21
+251179,0,57932.75796,0,21
+251180,0,57591.81001,0,21
+251181,0,57932.76295,0,21
+251182,0,57389.67967,0,21
+251183,0,57347.25423,0,21
+251184,0,57586.48389,0,21
+251185,0,57149.84754,0,21
+251186,0,57158.99696,0,21
+251187,0,57621.58036,0,21
+251188,0,57459.48505,0,21
+251189,0,57086.75192,0,21
+251190,0,57554.52118,0,21
+251191,0,57007.00097,0,21
+251192,0,57081.29277,0,21
+251193,0,56858.79313,0,21
+251194,0,57019.53269,0,21
+251195,0,56675.73175,0,21
+251196,0,56913.53492,0,21
+251197,0,56635.09975,0,21
+251198,0,56126.41621,0,21
+251199,0,56649.20409,0,21
+251200,0,56000.46387,0,21
+251201,0,56578.63361,0,21
+251202,0,55830.51472,0,21
+251203,0,56126.32004,0,21
+251204,0,56000.47085,0,21
+251205,0,55482.00121,0,21
+251206,0,55965.23832,0,21
+251207,0,55318.85957,0,21
+251208,0,55795.23955,0,21
+251209,0,55162.847,0,21
+251210,0,55426.86027,0,21
+251211,0,54992.35055,0,21
+251212,0,55306.15943,0,21
+251213,0,54842.96386,0,21
+251214,0,54844.4878,0,21
+251215,0,54901.60832,0,21
+251216,0,54549.86977,0,21
+251217,0,54597.06156,0,21
+251218,0,54208.24526,0,21
+251219,0,54645.48638,0,21
+251220,0,53974.60617,0,21
+251221,0,68119.52729,0,21
+251222,0,68868.2155,0,21
+251223,0,68839.6088,0,21
+251224,0,69078.03494,0,21
+251225,0,69772.25691,0,21
+251226,0,69264.02653,0,21
+251227,0,69974.52873,0,21
+251228,0,69265.65745,0,21
+251229,0,69662.71242,0,21
+251230,0,69932.83662,0,21
+251231,0,69496.10698,0,21
+251232,0,69621.92294,0,21
+251233,0,69676.34223,0,21
+251234,0,69480.60937,0,21
+251235,0,69766.5581,0,21
+251236,0,69332.79241,0,21
+251237,0,69627.27795,0,21
+251238,0,69715.86536,0,21
+251239,0,69395.5591,0,21
+251240,0,69264.86455,0,21
+251241,0,69901.78253,0,21
+251242,0,69065.19949,0,21
+251243,0,69534.71138,0,21
+251244,0,69506.15663,0,21
+251245,0,69099.28822,0,21
+251246,0,69270.19549,0,21
+251247,0,69304.21854,0,21
+251248,0,69207.9914,0,21
+251249,0,69187.49994,0,21
+251250,0,69215.61939,0,21
+251251,0,68942.69716,0,21
+251252,0,69275.31556,0,21
+251253,0,69125.11045,0,21
+251254,0,69397.81256,0,21
+251255,0,69301.87234,0,21
+251256,0,69530.68581,0,21
+251257,0,69322.2019,0,21
+251258,0,69589.57233,0,21
+251259,0,69302.54713,0,21
+251260,0,70048.19911,0,21
+251261,0,69599.44122,0,21
+251262,0,69603.28149,0,21
+251263,0,70028.71446,0,21
+251264,0,70043.52815,0,21
+251265,0,70116.1731,0,21
+251266,0,69917.80499,0,21
+251267,0,70319.51065,0,21
+251268,0,70284.58013,0,21
+251269,0,70449.60448,0,21
+251270,0,70332.62911,0,21
+251271,0,70608.18311,0,21
+251272,0,70502.25615,0,21
+251273,0,70855.4071,0,21
+251274,0,70574.6189,0,21
+251275,0,71052.05417,0,21
+251276,0,70708.18485,0,21
+251277,0,71363.64071,0,21
+251278,0,70998.68195,0,21
+251279,0,71404.5248,0,21
+251280,0,71817.07488,0,21
+251281,0,71524.09887,0,21
+251282,0,71446.51553,0,21
+251283,0,71567.16687,0,21
+251284,0,71900.93873,0,21
+251285,0,72092.03265,0,21
+251286,0,72128.08979,0,21
+251287,0,72370.71074,0,21
+251288,0,72444.90242,0,21
+251289,0,72843.84765,0,21
+251290,0,72849.15634,0,21
+251291,0,72943.53961,0,21
+251292,0,73280.97052,0,21
+251293,0,73001.04914,0,21
+251294,0,74034.25631,0,21
+251295,0,73311.93595,0,21
+251296,0,73401.04228,0,21
+251297,0,73657.74179,0,21
+251298,0,73548.79084,0,21
+251299,0,73957.40249,0,21
+251300,0,74010.64949,0,21
+251301,0,74360.95322,0,21
+251302,0,73970.72181,0,21
+251303,0,74953.87122,0,21
+251304,0,74373.78373,0,21
+251305,0,74803.80219,0,21
+251306,0,75184.16845,0,21
+251307,0,74789.57772,0,21
+251308,0,75567.40078,0,21
+251309,0,75352.72919,0,21
+251310,0,75583.60316,0,21
+251311,0,75720.17721,0,21
+251312,0,75728.93105,0,21
+251313,0,76281.04297,0,21
+251314,0,76079.9377,0,21
+251315,0,75738.20637,0,21
+251316,0,76826.34941,0,21
+251317,0,76161.6574,0,21
+251318,0,76843.37574,0,21
+251319,0,76511.3424,0,21
+251320,0,76801.2801,0,21
+251321,0,77209.81,0,21
+251322,0,76672.91377,0,21
+251323,0,77200.94791,0,21
+251324,0,77645.65169,0,21
+251325,0,77064.66601,0,21
+251326,0,77667.69624,0,21
+251327,0,77754.70439,0,21
+251328,0,77550.94918,0,21
+251329,0,77635.76951,0,21
+251330,0,78260.81039,0,21
+251331,0,77890.9539,0,21
+251332,0,78109.36549,0,21
+251333,0,78632.55532,0,21
+251334,0,78054.86161,0,21
+251335,0,78423.19417,0,21
+251336,0,78832.26425,0,21
+251337,0,78455.60778,0,21
+251338,0,79042.4548,0,21
+251339,0,78610.1216,0,21
+251340,0,79174.37917,0,21
+251341,0,79343.37978,0,21
+251342,0,80084.18988,0,21
+251343,0,79802.56997,0,21
+251344,0,80043.48309,0,21
+251345,0,80184.69463,0,21
+251346,0,80230.11931,0,21
+251347,0,80301.9584,0,21
+251348,0,80758.93181,0,21
+251349,0,80367.54942,0,21
+251350,0,80662.6105,0,21
+251351,0,80931.59142,0,21
+251352,0,81007.35066,0,21
+251353,0,81058.27566,0,21
+251354,0,81229.71423,0,21
+251355,0,81108.48805,0,21
+251356,0,81861.99809,0,21
+251357,0,81466.03498,0,21
+251358,0,81440.08266,0,21
+251359,0,81838.41681,0,21
+251360,0,81824.17949,0,21
+251361,0,82097.67241,0,21
+251362,0,82240.40998,0,21
+251363,0,82233.36031,0,21
+251364,0,82249.46073,0,21
+251365,0,82455.95727,0,21
+251366,0,82828.09299,0,21
+251367,0,82635.62127,0,21
+251368,0,82785.98209,0,21
+251369,0,83006.49637,0,21
+251370,0,82853.05351,0,21
+251371,0,83398.05454,0,21
+251372,0,83228.37472,0,21
+251373,0,83550.72109,0,21
+251374,0,83634.9835,0,21
+251375,0,84115.30303,0,21
+251376,0,84018.24886,0,21
+251377,0,84661.85765,0,21
+251378,0,85017.29504,0,21
+251379,0,84739.23702,0,21
+251380,0,85112.97076,0,21
+251381,0,85224.35502,0,21
+251382,0,85515.29066,0,21
+251383,0,85505.94717,0,21
+251384,0,85731.53791,0,21
+251385,0,86019.41767,0,21
+251386,0,85858.82504,0,21
+251387,0,86487.7739,0,21
+251388,0,86519.5961,0,21
+251389,0,86352.88532,0,21
+251390,0,86791.58049,0,21
+251391,0,87027.39783,0,21
+251392,0,87241.58257,0,21
+251393,0,86924.97433,0,21
+251394,0,87661.39846,0,21
+251395,0,87867.32372,0,21
+251396,0,87375.86974,0,21
+251397,0,88372.11152,0,21
+251398,0,88030.64571,0,21
+251399,0,88151.02494,0,21
+251400,0,88852.55308,0,21
+251401,0,88077.21974,0,21
+251402,0,88559.76968,0,21
+251403,0,88467.11959,0,21
+251404,0,89277.54386,0,21
+251405,0,88726.99604,0,21
+251406,0,89556.28742,0,21
+251407,0,89633.91017,0,21
+251408,0,89506.58461,0,21
+251409,0,90187.83311,0,21
+251410,0,90059.27838,0,21
+251411,0,90524.7168,0,21
+251412,0,90934.47875,0,21
+251413,0,90323.91186,0,21
+251414,0,91450.87706,0,21
+251415,0,91477.9369,0,21
+251416,0,91298.12576,0,21
+251417,0,92004.22474,0,21
+251418,0,91917.94117,0,21
+251419,0,92342.40427,0,21
+251420,0,92419.83634,0,21
+251421,0,92697.04973,0,21
+251422,0,92979.39528,0,21
+251423,0,93073.16143,0,21
+251424,0,93471.16997,0,21
+251425,0,93726.0161,0,21
+251426,0,93717.97876,0,21
+251427,0,93943.67118,0,21
+251428,0,94350.91297,0,21
+251429,0,94845.27689,0,21
+251430,0,94324.60591,0,21
+251431,0,95237.9333,0,21
+251432,0,95085.06787,0,21
+251433,0,95388.92789,0,21
+251434,0,95787.81798,0,21
+251435,0,95616.33532,0,21
+251436,0,96083.63536,0,21
+251437,0,96334.55837,0,21
+251438,0,96329.98107,0,21
+251439,0,96805.81954,0,21
+251440,0,97087.71742,0,21
+251441,0,96815.07158,0,21
+251442,0,97375.1879,0,21
+251443,0,97398.75836,0,21
+251444,0,97846.46414,0,21
+251445,0,97966.6484,0,21
+251446,0,98123.14317,0,21
+251447,0,98154.83953,0,21
+251448,0,98733.81491,0,21
+251449,0,98789.77496,0,21
+251450,0,102931.5988,0,21
+251451,0,100595.668,0,21
+251452,0,103025.4743,0,21
+251453,0,102083.3211,0,21
+251454,0,103692.6901,0,21
+251455,0,104095.7256,0,21
+251456,0,104206.7383,0,21
+251457,0,104613.6632,0,21
+251458,0,105664.0663,0,21
+251459,0,105780.3064,0,21
+251460,0,105748.8547,0,21
+251461,0,106927.7036,0,21
+251462,0,107764.0157,0,21
+251463,0,106982.5703,0,21
+251464,0,108412.1925,0,21
+251465,0,108227.5867,0,21
+251466,0,110423.5855,0,21
+251467,0,108833.2494,0,21
+251468,0,110032.1349,0,21
+251469,0,110912.225,0,21
+251470,0,110765.8419,0,21
+251471,0,111538.7118,0,21
+251472,0,111876.8515,0,21
+251473,0,112589.9201,0,21
+251474,0,112881.7801,0,21
+251475,0,113287.1456,0,21
+251476,0,114019.5179,0,21
+251477,0,113574.6395,0,21
+251478,0,115508.1367,0,21
+251479,0,114852.0951,0,21
+251480,0,115864.4787,0,21
+251481,0,116215.7226,0,21
+251482,0,116520.4372,0,21
+251483,0,117126.6045,0,21
+251484,0,117420.2332,0,21
+251485,0,118577.7834,0,21
+251486,0,117745.8433,0,21
+251487,0,119046.2978,0,21
+251488,0,119735.7791,0,21
+251489,0,119889.1119,0,21
+251490,0,119931.3001,0,21
+251491,0,121084.5397,0,21
+251492,0,121226.0118,0,21
+251493,0,121715.2441,0,21
+251494,0,121790.1434,0,21
+251495,0,123285.439,0,21
+251496,0,122623.46,0,21
+251497,0,123647.1942,0,21
+251498,0,123930.0462,0,21
+251499,0,124362.7325,0,21
+251500,0,125125.6392,0,21
+251501,0,125761.349,0,21
+251502,0,125173.0375,0,21
+251503,0,126598.5574,0,21
+251504,0,126627.7395,0,21
+251505,0,127607.3221,0,21
+251506,0,128009.5835,0,21
+251507,0,127400.3177,0,21
+251508,0,129385.2072,0,21
+251509,0,128980.7548,0,21
+251510,0,129937.4248,0,21
+251511,0,129318.894,0,21
+251512,0,131250.3609,0,21
+251513,0,130679.3776,0,21
+251514,0,131018.2536,0,21
+251515,0,132766.2743,0,21
+251516,0,132442.0942,0,21
+251517,0,131914.9328,0,21
+251518,0,134208.2736,0,21
+251519,0,133461.6454,0,21
+251520,0,134084.3118,0,21
+251521,0,0,0,21
+251522,0,0,0,21
+251523,0,0,0,21
+251524,0,0,0,21
+251525,0,0,0,21
+251526,0,0,0,21
+251527,0,0,0,21
+251528,0,0,0,21
+251529,0,0,0,21
+251530,0,0,0,21
+251531,0,0,0,21
+251532,0,0,0,21
+251533,0,0,0,21
+251534,0,0,0,21
+251535,0,0,0,21
+251536,0,0,0,21
+251537,0,0,0,21
+251538,0,0,0,21
+251539,0,0,0,21
+251540,0,0,0,21
+251541,0,0,0,21
+251542,0,0,0,21
+251543,0,0,0,21
+251544,0,0,0,21
+251545,0,0,0,21
+251546,0,0,0,21
+251547,0,0,0,21
+251548,0,0,0,21
+251549,0,0,0,21
+251550,0,0,0,21
+251551,0,0,0,21
+251552,0,0,0,21
+251553,0,0,0,21
+251554,0,0,0,21
+251555,0,0,0,21
+251556,0,0,0,21
+251557,0,0,0,21
+251558,0,0,0,21
+251559,0,0,0,21
+251560,0,0,0,21
+251561,0,0,0,21
+251562,0,0,0,21
+251563,0,0,0,21
+251564,0,0,0,21
+251565,0,0,0,21
+251566,0,0,0,21
+251567,0,0,0,21
+251568,0,0,0,21
+251569,0,0,0,21
+251570,0,0,0,21
+251571,0,0,0,21
+251572,0,0,0,21
+251573,0,0,0,21
+251574,0,0,0,21
+251575,0,0,0,21
+251576,0,0,0,21
+251577,0,0,0,21
+251578,0,0,0,21
+251579,0,0,0,21
+251580,0,0,0,21
+251581,0,0,0,21
+251582,0,0,0,21
+251583,0,0,0,21
+251584,0,0,0,21
+251585,0,0,0,21
+251586,0,0,658706.4695,21
+251587,0,369410.7721,0,21
+251588,328671.7186,0,0,21
+251589,0,0,0,21
+251590,0,0,0,21
+251591,0,0,0,21
+251592,0,0,0,21
+251593,0,0,0,21
+251594,0,0,0,21
+251595,0,0,0,21
+251596,0,0,0,21
+251597,0,0,0,21
+251598,0,0,0,21
+251599,0,0,0,21
+251600,0,0,0,21
+251601,0,0,0,21
+251602,0,0,0,21
+251603,0,0,0,21
+251604,0,0,0,21
+251605,0,0,0,21
+251606,0,0,0,21
+251607,0,0,0,21
+251608,0,0,0,21
+251609,0,0,0,21
+251610,0,0,0,21
+251611,0,0,0,21
+251612,0,0,0,21
+251613,0,0,0,21
+251614,0,0,0,21
+251615,0,0,0,21
+251616,0,0,0,21
+251617,0,0,0,21
+251618,0,0,0,21
+251619,0,0,0,21
+251620,0,0,0,21
+251621,0,0,659542.5605,21
+251622,0,0,0,21
+251623,0,369410.0497,0,21
+251624,0,0,0,21
+251625,329309.7791,0,0,21
+251626,0,0,0,21
+251627,0,0,0,21
+251628,0,0,0,21
+251629,0,0,0,21
+251630,0,0,0,21
+251631,0,0,0,21
+251632,0,0,0,21
+251633,0,0,0,21
+251634,0,0,0,21
+251635,0,0,0,21
+251636,0,0,0,21
+251637,0,0,0,21
+251638,0,0,0,21
+251639,0,0,0,21
+251640,0,0,0,21
+251641,0,0,0,21
+251642,0,0,0,21
+251643,0,0,0,21
+251644,0,0,0,21
+251645,0,0,0,21
+251646,0,0,0,21
+251647,0,0,0,21
+251648,0,0,0,21
+251649,0,0,0,21
+251650,0,0,0,21
+251651,0,0,0,21
+251652,0,0,0,21
+251653,0,0,0,21
+251654,0,0,0,21
+251655,0,0,0,21
+251656,0,0,660494.7618,21
+251657,0,0,0,21
+251658,0,0,0,21
+251659,0,0,0,21
+251660,0,369335.371,0,21
+251661,0,0,0,21
+251662,329324.1214,0,0,21
+251663,0,0,0,21
+251664,0,0,0,21
+251665,0,0,0,21
+251666,0,0,0,21
+251667,0,0,0,21
+251668,0,0,0,21
+251669,0,0,0,21
+251670,0,0,0,21
+251671,0,0,0,21
+251672,0,0,0,21
+251673,0,0,0,21
+251674,0,0,0,21
+251675,0,0,0,21
+251676,0,0,0,21
+251677,0,0,0,21
+251678,0,0,0,21
+251679,0,0,0,21
+251680,0,0,0,21
+251681,0,0,0,21
+251682,0,0,0,21
+251683,0,0,0,21
+251684,0,0,0,21
+251685,0,0,0,21
+251686,0,0,0,21
+251687,0,0,0,21
+251688,0,0,0,21
+251689,0,0,0,21
+251690,0,0,0,21
+251691,0,0,660970.6591,21
+251692,0,0,0,21
+251693,0,0,0,21
+251694,0,0,0,21
+251695,0,0,0,21
+251696,0,0,0,21
+251697,0,369202.0129,0,21
+251698,0,0,0,21
+251699,328926.7867,0,0,21
+251700,0,0,0,21
+251701,0,0,0,21
+251702,0,0,0,21
+251703,0,0,0,21
+251704,0,0,0,21
+251705,0,0,0,21
+251706,0,0,0,21
+251707,0,0,0,21
+251708,0,0,0,21
+251709,0,0,0,21
+251710,0,0,0,21
+251711,0,0,0,21
+251712,0,0,0,21
+251713,0,0,0,21
+251714,0,0,0,21
+251715,0,0,0,21
+251716,0,0,0,21
+251717,0,0,0,21
+251718,0,0,0,21
+251719,0,0,0,21
+251720,0,0,0,21
+251721,0,0,0,21
+251722,0,0,0,21
+251723,0,0,0,21
+251724,0,0,0,21
+251725,0,0,0,21
+251726,0,0,661182.7731,21
+251727,0,0,0,21
+251728,0,0,0,21
+251729,0,0,0,21
+251730,0,0,0,21
+251731,0,0,0,21
+251732,0,0,0,21
+251733,0,0,0,21
+251734,0,369194.3482,0,21
+251735,0,0,0,21
+251736,328907.0303,0,0,21
+251737,0,0,0,21
+251738,0,0,0,21
+251739,0,0,0,21
+251740,0,0,0,21
+251741,0,0,0,21
+251742,0,0,0,21
+251743,0,0,0,21
+251744,0,0,0,21
+251745,0,0,0,21
+251746,0,0,0,21
+251747,0,0,0,21
+251748,0,0,0,21
+251749,0,0,0,21
+251750,0,0,0,21
+251751,0,0,0,21
+251752,0,0,0,21
+251753,0,0,0,21
+251754,0,0,0,21
+251755,0,0,0,21
+251756,0,0,0,21
+251757,0,0,0,21
+251758,0,0,0,21
+251759,0,0,0,21
+251760,0,0,0,21
+251761,0,0,661088.7886,21
+251762,0,0,0,21
+251763,0,0,0,21
+251764,0,0,0,21
+251765,0,0,0,21
+251766,0,0,0,21
+251767,0,0,0,21
+251768,0,0,0,21
+251769,0,0,0,21
+251770,0,0,0,21
+251771,0,369225.627,0,21
+251772,0,0,0,21
+251773,328920.7589,0,0,21
+251774,0,0,0,21
+251775,0,0,0,21
+251776,0,0,0,21
+251777,0,0,0,21
+251778,0,0,0,21
+251779,0,0,0,21
+251780,0,0,0,21
+251781,0,0,0,21
+251782,0,0,0,21
+251783,0,0,0,21
+251784,0,0,0,21
+251785,0,0,0,21
+251786,0,0,0,21
+251787,0,0,0,21
+251788,0,0,0,21
+251789,0,0,0,21
+251790,0,0,0,21
+251791,0,0,0,21
+251792,0,0,0,21
+251793,0,0,0,21
+251794,0,0,0,21
+251795,0,0,0,21
+251796,0,0,661953.0679,21
+251797,0,0,0,21
+251798,0,0,0,21
+251799,0,0,0,21
+251800,0,0,0,21
+251801,0,0,0,21
+251802,0,0,0,21
+251803,0,0,0,21
+251804,0,0,0,21
+251805,0,0,0,21
+251806,0,0,0,21
+251807,0,0,0,21
+251808,0,369331.0854,0,21
+251809,0,0,0,21
+251810,329008.3482,0,0,21
+251811,0,0,0,21
+251812,0,0,0,21
+251813,0,0,0,21
+251814,0,0,0,21
+251815,0,0,0,21
+251816,0,0,0,21
+251817,0,0,0,21
+251818,0,0,0,21
+251819,0,0,0,21
+251820,0,0,0,21
+251821,0,0,0,21
+251822,0,0,0,21
+251823,0,0,0,21
+251824,0,0,0,21
+251825,0,0,0,21
+251826,0,0,0,21
+251827,0,0,0,21
+251828,0,0,0,21
+251829,0,0,0,21
+251830,0,0,0,21
+251831,0,0,661451.9797,21
+251832,0,0,0,21
+251833,0,0,0,21
+251834,0,0,0,21
+251835,0,0,0,21
+251836,0,0,0,21
+251837,0,0,0,21
+251838,0,0,0,21
+251839,0,0,0,21
+251840,0,0,0,21
+251841,0,0,0,21
+251842,0,0,0,21
+251843,0,0,0,21
+251844,0,0,0,21
+251845,0,369343.5348,0,21
+251846,0,0,0,21
+251847,331975.6081,0,0,21
+251848,0,0,0,21
+251849,0,0,0,21
+251850,0,0,0,21
+251851,0,0,0,21
+251852,0,0,0,21
+251853,0,0,0,21
+251854,0,0,0,21
+251855,0,0,0,21
+251856,0,0,0,21
+251857,0,0,0,21
+251858,0,0,0,21
+251859,0,0,0,21
+251860,0,0,0,21
+251861,0,0,0,21
+251862,0,0,0,21
+251863,0,0,0,21
+251864,0,0,0,21
+251865,0,0,0,21
+251866,0,0,661345.5679,21
+251867,0,0,0,21
+251868,0,0,0,21
+251869,0,0,0,21
+251870,0,0,0,21
+251871,0,0,0,21
+251872,0,0,0,21
+251873,0,0,0,21
+251874,0,0,0,21
+251875,0,0,0,21
+251876,0,0,0,21
+251877,0,0,0,21
+251878,0,0,0,21
+251879,0,0,0,21
+251880,0,0,0,15.6
+251881,0,0,0,15.6
+251882,0,369314.0003,0,15.6
+251883,0,0,0,15.6
+251884,334293.1489,0,0,15.6
+251885,0,0,0,15.6
+251886,0,0,0,15.6
+251887,0,0,0,15.6
+251888,0,0,0,15.6
+251889,0,0,0,15.6
+251890,0,0,0,15.6
+251891,0,0,0,15.6
+251892,0,0,0,15.6
+251893,0,0,0,15.6
+251894,0,0,0,15.6
+251895,0,0,0,15.6
+251896,0,0,0,15.6
+251897,0,0,0,15.6
+251898,0,0,0,15.6
+251899,0,0,0,15.6
+251900,0,0,0,15.6
+251901,0,0,661301.6751,15.6
+251902,0,0,0,15.6
+251903,0,0,0,15.6
+251904,0,0,0,15.6
+251905,0,0,0,15.6
+251906,0,0,0,15.6
+251907,0,0,0,15.6
+251908,0,0,0,15.6
+251909,0,0,0,15.6
+251910,0,0,0,15.6
+251911,0,0,0,15.6
+251912,0,0,0,15.6
+251913,0,0,0,15.6
+251914,0,0,0,15.6
+251915,0,0,0,15.6
+251916,0,0,0,15.6
+251917,0,0,0,15.6
+251918,0,0,0,15.6
+251919,0,369312.5034,0,15.6
+251920,0,0,0,15.6
+251921,335186.1223,0,0,15.6
+251922,0,0,0,15.6
+251923,0,0,0,15.6
+251924,0,0,0,15.6
+251925,0,0,0,15.6
+251926,0,0,0,15.6
+251927,0,0,0,15.6
+251928,0,0,0,15.6
+251929,0,0,0,15.6
+251930,0,0,0,15.6
+251931,0,0,0,15.6
+251932,0,0,0,15.6
+251933,0,0,0,15.6
+251934,0,0,0,15.6
+251935,0,0,0,15.6
+251936,0,0,0,15.6
+251937,0,0,660858.8064,15.6
+251938,0,0,0,15.6
+251939,0,0,0,15.6
+251940,0,0,0,15.6
+251941,0,0,0,15.6
+251942,0,0,0,15.6
+251943,0,0,0,15.6
+251944,0,0,0,15.6
+251945,0,0,0,15.6
+251946,0,0,0,15.6
+251947,0,0,0,15.6
+251948,0,0,0,15.6
+251949,0,0,0,15.6
+251950,0,0,0,15.6
+251951,0,0,0,15.6
+251952,0,0,0,15.6
+251953,0,0,0,15.6
+251954,0,0,0,15.6
+251955,0,0,0,15.6
+251956,0,369311.9833,0,15.6
+251957,0,0,0,15.6
+251958,335567.8366,0,0,15.6
+251959,0,0,0,15.6
+251960,0,0,0,15.6
+251961,0,0,0,15.6
+251962,0,0,0,15.6
+251963,0,0,0,15.6
+251964,0,0,0,15.6
+251965,0,0,0,15.6
+251966,0,0,0,15.6
+251967,0,0,0,15.6
+251968,0,0,0,15.6
+251969,0,0,0,15.6
+251970,0,0,0,15.6
+251971,0,0,0,15.6
+251972,0,0,0,15.6
+251973,0,0,660650.2157,15.6
+251974,0,0,0,15.6
+251975,0,0,0,15.6
+251976,0,0,0,15.6
+251977,0,0,0,15.6
+251978,0,0,0,15.6
+251979,0,0,0,15.6
+251980,0,0,0,15.6
+251981,0,0,0,15.6
+251982,0,0,0,15.6
+251983,0,0,0,15.6
+251984,0,0,0,15.6
+251985,0,0,0,15.6
+251986,0,0,0,15.6
+251987,0,0,0,15.6
+251988,0,0,0,15.6
+251989,0,0,0,15.6
+251990,0,0,0,15.6
+251991,0,0,0,15.6
+251992,0,0,0,15.6
+251993,0,369311.9745,0,15.6
+251994,0,0,0,15.6
+251995,0,0,0,15.6
+251996,335605.084,0,0,15.6
+251997,0,0,0,15.6
+251998,0,0,0,15.6
+251999,0,0,0,15.6
+252000,0,0,0,15.6
+252001,0,0,0,15.6
+252002,0,0,0,15.6
+252003,0,0,0,15.6
+252004,0,0,0,15.6
+252005,0,0,0,15.6
+252006,0,0,0,15.6
+252007,0,0,0,15.6
+252008,0,0,0,15.6
+252009,0,0,660642.9058,15.6
+252010,0,0,0,15.6
+252011,0,0,0,15.6
+252012,0,0,0,15.6
+252013,0,0,0,15.6
+252014,0,0,0,15.6
+252015,0,0,0,15.6
+252016,0,0,0,15.6
+252017,0,0,0,15.6
+252018,0,0,0,15.6
+252019,0,0,0,15.6
+252020,0,0,0,15.6
+252021,0,0,0,15.6
+252022,0,0,0,15.6
+252023,0,0,0,15.6
+252024,0,0,0,15.6
+252025,0,0,0,15.6
+252026,0,0,0,15.6
+252027,0,0,0,15.6
+252028,0,0,0,15.6
+252029,0,0,0,15.6
+252030,0,369312.4953,0,15.6
+252031,0,0,0,15.6
+252032,0,0,0,15.6
+252033,0,0,0,15.6
+252034,335722.9373,0,0,15.6
+252035,0,0,0,15.6
+252036,0,0,0,15.6
+252037,0,0,0,15.6
+252038,0,0,0,15.6
+252039,0,0,0,15.6
+252040,0,0,0,15.6
+252041,0,0,0,15.6
+252042,0,0,0,15.6
+252043,0,0,0,15.6
+252044,0,0,0,15.6
+252045,0,0,660565.6167,15.6
+252046,0,0,0,15.6
+252047,0,0,0,15.6
+252048,0,0,0,15.6
+252049,0,0,0,15.6
+252050,0,0,0,15.6
+252051,0,0,0,15.6
+252052,0,0,0,15.6
+252053,0,0,0,15.6
+252054,0,0,0,15.6
+252055,0,0,0,15.6
+252056,0,0,0,15.6
+252057,0,0,0,15.6
+252058,0,0,0,15.6
+252059,0,0,0,15.6
+252060,0,0,0,15.6
+252061,0,0,0,15.6
+252062,0,0,0,15.6
+252063,0,0,0,15.6
+252064,0,0,0,15.6
+252065,0,0,0,15.6
+252066,0,0,0,15.6
+252067,0,369317.9112,0,15.6
+252068,0,0,0,15.6
+252069,0,0,0,15.6
+252070,0,0,0,15.6
+252071,0,0,0,15.6
+252072,335835.9333,0,0,15.6
+252073,0,0,0,15.6
+252074,0,0,0,15.6
+252075,0,0,0,15.6
+252076,0,0,0,15.6
+252077,0,0,0,15.6
+252078,0,0,0,15.6
+252079,0,0,0,15.6
+252080,0,0,0,15.6
+252081,0,0,660839.1705,15.6
+252082,0,0,0,15.6
+252083,0,0,0,15.6
+252084,0,0,0,15.6
+252085,0,0,0,15.6
+252086,0,0,0,15.6
+252087,0,0,0,15.6
+252088,0,0,0,15.6
+252089,0,0,0,15.6
+252090,0,0,0,15.6
+252091,0,0,0,15.6
+252092,0,0,0,15.6
+252093,0,0,0,15.6
+252094,0,0,0,15.6
+252095,0,0,0,15.6
+252096,0,0,0,15.6
+252097,0,0,0,15.6
+252098,0,0,0,15.6
+252099,0,0,0,15.6
+252100,0,0,0,15.6
+252101,0,0,0,15.6
+252102,0,0,0,15.6
+252103,0,0,0,15.6
+252104,0,369349.6227,0,15.6
+252105,0,0,0,15.6
+252106,0,0,0,15.6
+252107,0,0,0,15.6
+252108,0,0,0,15.6
+252109,0,0,0,15.6
+252110,335765.6707,0,0,15.6
+252111,0,0,0,15.6
+252112,0,0,0,15.6
+252113,0,0,0,15.6
+252114,0,0,0,15.6
+252115,0,0,0,15.6
+252116,0,0,660472.72,15.6
+252117,0,0,0,15.6
+252118,0,0,0,15.6
+252119,0,0,0,15.6
+252120,0,0,0,15.6
+252121,0,0,0,15.6
+252122,0,0,0,15.6
+252123,0,0,0,15.6
+252124,0,0,0,15.6
+252125,0,0,0,15.6
+252126,0,0,0,15.6
+252127,0,0,0,15.6
+252128,0,0,0,15.6
+252129,0,0,0,15.6
+252130,0,0,0,15.6
+252131,0,0,0,15.6
+252132,0,0,0,15.6
+252133,0,0,0,15.6
+252134,0,0,0,15.6
+252135,0,0,0,15.6
+252136,0,0,0,15.6
+252137,0,0,0,15.6
+252138,0,0,0,15.6
+252139,0,0,0,15.6
+252140,0,0,0,15.6
+252141,0,369381.3068,0,15.6
+252142,0,0,0,15.6
+252143,0,0,0,15.6
+252144,0,0,0,15.6
+252145,0,0,0,15.6
+252146,0,0,0,15.6
+252147,0,0,0,15.6
+252148,340341.2259,0,0,15.6
+252149,0,0,0,15.6
+252150,0,0,660663.6178,15.6
+252151,0,0,0,15.6
+252152,0,0,0,15.6
+252153,0,0,0,15.6
+252154,0,0,0,15.6
+252155,0,0,0,15.6
+252156,0,0,0,15.6
+252157,0,0,0,15.6
+252158,0,0,0,15.6
+252159,0,0,0,15.6
+252160,0,0,0,15.6
+252161,0,0,0,15.6
+252162,0,0,0,15.6
+252163,0,0,0,15.6
+252164,0,0,0,15.6
+252165,0,0,0,15.6
+252166,0,0,0,15.6
+252167,0,0,0,15.6
+252168,0,0,0,15.6
+252169,0,0,0,15.6
+252170,0,0,0,15.6
+252171,0,0,0,15.6
+252172,0,0,0,15.6
+252173,0,0,0,15.6
+252174,0,0,0,15.6
+252175,0,0,0,15.6
+252176,0,0,0,15.6
+252177,0,0,0,15.6
+252178,0,369413.4687,0,15.6
+252179,0,0,0,15.6
+252180,0,0,0,15.6
+252181,0,0,0,15.6
+252182,0,0,0,15.6
+252183,340315.4867,0,0,15.6
+252184,0,0,661195.0449,15.6
+252185,0,0,0,15.6
+252186,0,0,0,15.6
+252187,0,0,0,15.6
+252188,0,0,0,15.6
+252189,0,0,0,15.6
+252190,0,0,0,15.6
+252191,0,0,0,15.6
+252192,0,0,0,15.6
+252193,0,0,0,15.6
+252194,0,0,0,15.6
+252195,0,0,0,15.6
+252196,0,0,0,15.6
+252197,0,0,0,15.6
+252198,0,0,0,15.6
+252199,0,0,0,15.6
+252200,0,0,0,15.6
+252201,0,0,0,15.6
+252202,0,0,0,15.6
+252203,0,0,0,15.6
+252204,0,0,0,15.6
+252205,0,0,0,15.6
+252206,0,0,0,15.6
+252207,0,0,0,15.6
+252208,0,0,0,15.6
+252209,0,0,0,15.6
+252210,0,0,0,15.6
+252211,0,0,0,15.6
+252212,0,0,0,15.6
+252213,0,0,0,15.6
+252214,0,0,0,15.6
+252215,0,369415.2249,0,15.6
+252216,0,0,0,15.6
+252217,0,0,0,15.6
+252218,340315.5919,0,660249.5613,15.6
+252219,0,0,0,15.6
+252220,0,0,0,15.6
+252221,0,0,0,15.6
+252222,0,0,0,15.6
+252223,0,0,0,15.6
+252224,0,0,0,15.6
+252225,0,0,0,15.6
+252226,0,0,0,15.6
+252227,0,0,0,15.6
+252228,0,0,0,15.6
+252229,0,0,0,15.6
+252230,0,0,0,15.6
+252231,0,0,0,15.6
+252232,0,0,0,15.6
+252233,0,0,0,15.6
+252234,0,0,0,15.6
+252235,0,0,0,15.6
+252236,0,0,0,15.6
+252237,0,0,0,15.6
+252238,0,0,0,15.6
+252239,0,0,0,15.6
+252240,0,0,0,17.8
+252241,0,0,0,17.8
+252242,0,0,0,17.8
+252243,0,0,0,17.8
+252244,0,0,0,17.8
+252245,0,0,0,17.8
+252246,0,0,0,17.8
+252247,0,0,0,17.8
+252248,0,0,0,17.8
+252249,0,0,0,17.8
+252250,0,369406.5267,0,17.8
+252251,0,0,0,17.8
+252252,0,0,660688.0155,17.8
+252253,340314.572,0,0,17.8
+252254,0,0,0,17.8
+252255,0,0,0,17.8
+252256,0,0,0,17.8
+252257,0,0,0,17.8
+252258,0,0,0,17.8
+252259,0,0,0,17.8
+252260,0,0,0,17.8
+252261,0,0,0,17.8
+252262,0,0,0,17.8
+252263,0,0,0,17.8
+252264,0,0,0,17.8
+252265,0,0,0,17.8
+252266,0,0,0,17.8
+252267,0,0,0,17.8
+252268,0,0,0,17.8
+252269,0,0,0,17.8
+252270,0,0,0,17.8
+252271,0,0,0,17.8
+252272,0,0,0,17.8
+252273,0,0,0,17.8
+252274,0,0,0,17.8
+252275,0,0,0,17.8
+252276,0,0,0,17.8
+252277,0,0,0,17.8
+252278,0,0,0,17.8
+252279,0,0,0,17.8
+252280,0,0,0,17.8
+252281,0,0,0,17.8
+252282,0,0,0,17.8
+252283,0,0,0,17.8
+252284,0,0,0,17.8
+252285,0,369375.1091,0,17.8
+252286,0,0,660976.9839,17.8
+252287,0,0,0,17.8
+252288,340311.1839,0,0,17.8
+252289,0,0,0,17.8
+252290,0,0,0,17.8
+252291,0,0,0,17.8
+252292,0,0,0,17.8
+252293,0,0,0,17.8
+252294,0,0,0,17.8
+252295,0,0,0,17.8
+252296,0,0,0,17.8
+252297,0,0,0,17.8
+252298,0,0,0,17.8
+252299,0,0,0,17.8
+252300,0,0,0,20
+252301,0,0,0,20
+252302,0,0,0,20
+252303,0,0,0,20
+252304,0,0,0,20
+252305,0,0,0,20
+252306,0,0,0,20
+252307,0,0,0,20
+252308,0,0,0,20
+252309,0,0,0,20
+252310,0,0,0,20
+252311,0,0,0,20
+252312,0,0,0,20
+252313,0,0,0,20
+252314,0,0,0,20
+252315,0,0,0,20
+252316,0,0,0,20
+252317,0,0,0,20
+252318,0,0,0,20
+252319,0,0,0,20
+252320,0,0,0,20
+252321,0,0,0,20
+252322,0,369342.5274,661107.0753,20
+252323,0,0,0,20
+252324,0,0,0,20
+252325,0,0,0,20
+252326,340331.5578,0,0,20
+252327,0,0,0,20
+252328,0,0,0,20
+252329,0,0,0,20
+252330,0,0,0,20
+252331,0,0,0,20
+252332,0,0,0,20
+252333,0,0,0,20
+252334,0,0,0,20
+252335,0,0,0,20
+252336,0,0,0,20
+252337,0,0,0,20
+252338,0,0,0,20
+252339,0,0,0,20
+252340,0,0,0,20
+252341,0,0,0,20
+252342,0,0,0,20
+252343,0,0,0,20
+252344,0,0,0,20
+252345,0,0,0,20
+252346,0,0,0,20
+252347,0,0,0,20
+252348,0,0,0,20
+252349,0,0,0,20
+252350,0,0,0,20
+252351,0,0,0,20
+252352,0,0,0,20
+252353,0,0,0,20
+252354,0,0,0,20
+252355,0,0,0,20
+252356,0,0,0,20
+252357,0,0,0,20
+252358,0,0,660356.9004,20
+252359,0,369310.0118,0,20
+252360,0,0,0,21
+252361,0,0,0,21
+252362,0,0,0,21
+252363,0,0,0,21
+252364,340364.3285,0,0,21
+252365,0,0,0,21
+252366,0,0,0,21
+252367,0,0,0,21
+252368,0,0,0,21
+252369,0,0,0,21
+252370,0,0,0,21
+252371,0,0,0,21
+252372,0,0,0,21
+252373,0,0,0,21
+252374,0,0,0,21
+252375,0,0,0,21
+252376,0,0,0,21
+252377,0,0,0,21
+252378,0,0,0,21
+252379,0,0,0,21
+252380,0,0,0,21
+252381,0,0,0,21
+252382,0,0,0,21
+252383,0,0,0,21
+252384,0,0,0,21
+252385,0,0,0,21
+252386,0,0,0,21
+252387,0,0,0,21
+252388,0,0,0,21
+252389,0,0,0,21
+252390,0,0,0,21
+252391,0,0,0,21
+252392,0,0,0,21
+252393,0,0,660128.7234,21
+252394,0,0,0,21
+252395,0,0,0,21
+252396,0,369273.0527,0,21
+252397,0,0,0,21
+252398,0,0,0,21
+252399,0,0,0,21
+252400,337328.9474,0,0,21
+252401,0,0,0,21
+252402,0,0,0,21
+252403,0,0,0,21
+252404,0,0,0,21
+252405,0,0,0,21
+252406,0,0,0,21
+252407,0,0,0,21
+252408,0,0,0,21
+252409,0,0,0,21
+252410,0,0,0,21
+252411,0,0,0,21
+252412,0,0,0,21
+252413,0,0,0,21
+252414,0,0,0,21
+252415,0,0,0,21
+252416,0,0,0,21
+252417,0,0,0,21
+252418,0,0,0,21
+252419,0,0,0,21
+252420,0,0,0,21
+252421,0,0,0,21
+252422,0,0,0,21
+252423,0,0,0,21
+252424,0,0,0,21
+252425,0,0,0,21
+252426,0,0,0,21
+252427,0,435644.2254,0,21
+252428,0,0,660181.4781,21
+252429,0,0,0,21
+252430,0,0,0,21
+252431,0,0,0,21
+252432,0,0,0,21
+252433,0,369259.2625,0,21
+252434,0,0,0,21
+252435,0,0,0,21
+252436,330723.218,0,0,21
+252437,0,0,0,21
+252438,0,0,0,21
+252439,0,0,0,21
+252440,0,0,0,21
+252441,0,0,0,21
+252442,0,0,0,21
+252443,0,0,0,21
+252444,0,0,0,21
+252445,0,0,0,21
+252446,0,0,0,21
+252447,0,0,0,21
+252448,0,0,0,21
+252449,0,0,0,21
+252450,0,0,0,21
+252451,0,0,0,21
+252452,0,0,0,21
+252453,0,0,0,21
+252454,0,0,0,21
+252455,0,0,0,21
+252456,0,0,0,21
+252457,0,0,0,21
+252458,0,0,0,21
+252459,0,0,0,21
+252460,0,0,0,21
+252461,0,0,0,21
+252462,0,0,0,21
+252463,0,0,659925.4671,21
+252464,0,0,0,21
+252465,0,0,0,21
+252466,0,0,0,21
+252467,0,0,0,21
+252468,0,0,0,21
+252469,0,369287.7417,0,21
+252470,0,0,0,21
+252471,0,0,0,21
+252472,331344.7093,0,0,21
+252473,0,0,0,21
+252474,0,0,0,21
+252475,0,0,0,21
+252476,0,0,0,21
+252477,0,0,0,21
+252478,0,0,0,21
+252479,0,0,0,21
+252480,0,0,0,21
+252481,0,435523.1732,0,21
+252482,0,0,0,21
+252483,0,0,0,21
+252484,0,0,0,21
+252485,0,0,0,21
+252486,0,0,0,21
+252487,0,0,0,21
+252488,0,0,0,21
+252489,0,0,0,21
+252490,0,0,0,21
+252491,0,0,0,21
+252492,0,0,0,21
+252493,0,0,0,21
+252494,0,0,0,21
+252495,0,0,0,21
+252496,0,0,0,21
+252497,0,0,0,21
+252498,0,0,659913.9214,21
+252499,0,0,0,21
+252500,0,0,0,21
+252501,0,0,0,21
+252502,0,0,0,21
+252503,0,0,0,21
+252504,0,0,0,21
+252505,0,369295.8065,0,21
+252506,0,0,0,21
+252507,0,0,0,21
+252508,331220.4313,0,0,21
+252509,0,0,0,21
+252510,0,0,0,21
+252511,0,0,0,21
+252512,0,0,0,21
+252513,0,0,0,21
+252514,0,0,0,21
+252515,0,0,0,21
+252516,0,0,0,21
+252517,0,0,0,21
+252518,0,0,0,21
+252519,0,0,0,21
+252520,0,0,0,21
+252521,0,0,0,21
+252522,0,0,0,21
+252523,0,0,0,21
+252524,0,0,0,21
+252525,0,0,0,21
+252526,0,0,0,21
+252527,0,0,0,21
+252528,0,0,0,21
+252529,0,0,0,21
+252530,0,0,0,21
+252531,0,0,0,21
+252532,0,0,0,21
+252533,0,0,660264.8901,21
+252534,0,0,0,21
+252535,0,0,0,21
+252536,0,0,0,21
+252537,0,0,0,21
+252538,0,0,0,21
+252539,0,0,0,21
+252540,0,0,0,21
+252541,0,0,0,21
+252542,0,369294.8742,0,21
+252543,0,0,0,21
+252544,331158.2248,0,0,21
+252545,0,0,0,21
+252546,0,0,0,21
+252547,0,0,0,21
+252548,0,0,0,21
+252549,0,0,0,21
+252550,0,0,0,21
+252551,0,0,0,21
+252552,0,0,0,21
+252553,0,0,0,21
+252554,0,0,0,21
+252555,0,0,0,21
+252556,0,0,0,21
+252557,0,0,0,21
+252558,0,0,0,21
+252559,0,0,0,21
+252560,0,0,0,21
+252561,0,0,0,21
+252562,0,0,0,21
+252563,0,0,0,21
+252564,0,0,0,21
+252565,0,0,0,21
+252566,0,0,0,21
+252567,0,0,0,21
+252568,0,0,660023.0918,21
+252569,0,0,0,21
+252570,0,0,0,21
+252571,0,0,0,21
+252572,0,0,0,21
+252573,0,0,0,21
+252574,0,0,0,21
+252575,0,0,0,21
+252576,0,0,0,21
+252577,0,0,0,21
+252578,0,0,0,21
+252579,0,369293.9431,0,21
+252580,331333.6737,0,0,21
+252581,0,0,0,21
+252582,0,0,0,21
+252583,0,0,0,21
+252584,0,0,0,21
+252585,0,0,0,21
+252586,0,0,0,21
+252587,0,0,0,21
+252588,0,0,0,21
+252589,0,0,0,21
+252590,0,0,0,21
+252591,0,0,0,21
+252592,0,0,0,21
+252593,0,0,0,21
+252594,0,0,0,21
+252595,0,0,0,21
+252596,0,0,0,21
+252597,0,0,0,21
+252598,0,0,0,21
+252599,0,0,0,21
+252600,0,0,0,21
+252601,0,0,0,21
+252602,0,0,0,21
+252603,0,0,659818.16,21
+252604,0,0,0,21
+252605,0,0,0,21
+252606,0,0,0,21
+252607,0,0,0,21
+252608,0,0,0,21
+252609,0,0,0,21
+252610,0,0,0,21
+252611,0,0,0,21
+252612,0,0,0,21
+252613,0,0,0,21
+252614,0,0,0,21
+252615,0,0,0,21
+252616,0,0,0,21
+252617,331562.0303,369310.8532,0,21
+252618,0,0,0,21
+252619,0,0,0,21
+252620,0,0,0,21
+252621,0,0,0,21
+252622,0,0,0,21
+252623,0,0,0,21
+252624,0,0,0,21
+252625,0,0,0,21
+252626,0,0,0,21
+252627,0,0,0,21
+252628,0,0,0,21
+252629,0,0,0,21
+252630,0,0,0,21
+252631,0,0,0,21
+252632,0,0,0,21
+252633,0,0,0,21
+252634,0,0,0,21
+252635,0,0,0,21
+252636,0,0,0,21
+252637,0,0,0,21
+252638,0,0,659409.0929,21
+252639,0,0,0,21
+252640,0,0,0,21
+252641,0,0,0,21
+252642,0,0,0,21
+252643,0,0,0,21
+252644,0,0,0,21
+252645,0,0,0,21
+252646,0,0,0,21
+252647,0,0,0,21
+252648,0,0,0,21
+252649,0,0,0,21
+252650,0,0,0,21
+252651,0,0,0,21
+252652,0,0,0,21
+252653,0,0,0,21
+252654,331876.3197,0,0,21
+252655,0,369350.3007,0,21
+252656,0,0,0,21
+252657,0,0,0,21
+252658,0,0,0,21
+252659,0,0,0,21
+252660,0,0,0,21
+252661,0,0,0,21
+252662,0,0,0,21
+252663,0,0,0,21
+252664,0,0,0,21
+252665,0,0,0,21
+252666,0,0,0,21
+252667,0,0,0,21
+252668,0,0,0,21
+252669,0,0,0,21
+252670,0,0,0,21
+252671,0,0,0,21
+252672,0,0,0,21
+252673,0,0,658855.5384,21
+252674,0,0,0,21
+252675,0,0,0,21
+252676,0,0,0,21
+252677,0,0,0,21
+252678,0,0,0,21
+252679,0,0,0,21
+252680,0,0,0,21
+252681,0,0,0,21
+252682,0,0,0,21
+252683,0,0,0,21
+252684,0,0,0,21
+252685,0,0,0,21
+252686,0,0,0,21
+252687,0,0,0,21
+252688,0,0,0,21
+252689,0,0,0,21
+252690,0,0,0,21
+252691,332271.2664,0,0,21
+252692,0,0,0,21
+252693,0,369354.6516,0,21
+252694,0,0,0,21
+252695,0,0,0,21
+252696,0,0,0,21
+252697,0,0,0,21
+252698,0,0,0,21
+252699,0,0,0,21
+252700,0,0,0,21
+252701,0,0,0,21
+252702,0,0,0,21
+252703,0,0,0,21
+252704,0,0,0,21
+252705,0,0,0,21
+252706,0,0,0,21
+252707,0,0,0,21
+252708,0,0,658712.9457,21
+252709,0,0,0,21
+252710,0,0,0,21
+252711,0,0,0,21
+252712,0,0,0,21
+252713,0,0,0,21
+252714,0,0,0,21
+252715,0,0,0,21
+252716,0,0,0,21
+252717,0,0,0,21
+252718,0,0,0,21
+252719,0,0,0,21
+252720,0,0,0,21
+252721,0,0,0,21
+252722,0,0,0,21
+252723,0,0,0,21
+252724,0,0,0,21
+252725,0,0,0,21
+252726,0,0,0,21
+252727,0,0,0,21
+252728,0,0,0,21
+252729,332811.1804,0,0,21
+252730,0,0,0,21
+252731,0,369365.8497,0,21
+252732,0,0,0,21
+252733,0,0,0,21
+252734,0,0,0,21
+252735,0,0,0,21
+252736,0,0,0,21
+252737,0,0,0,21
+252738,0,0,0,21
+252739,0,0,0,21
+252740,0,0,0,21
+252741,0,0,0,21
+252742,0,0,0,21
+252743,0,0,0,21
+252744,0,0,658743.6864,21
+252745,0,0,0,21
+252746,0,0,0,21
+252747,0,0,0,21
+252748,0,0,0,21
+252749,0,0,0,21
+252750,0,0,0,21
+252751,0,0,0,21
+252752,0,0,0,21
+252753,0,0,0,21
+252754,0,0,0,21
+252755,0,0,0,21
+252756,0,0,0,21
+252757,0,0,0,21
+252758,0,0,0,21
+252759,0,0,0,21
+252760,0,0,0,21
+252761,0,0,0,21
+252762,0,0,0,21
+252763,0,0,0,21
+252764,0,0,0,21
+252765,0,0,0,21
+252766,0,0,0,21
+252767,333080.4492,0,0,21
+252768,0,0,0,21
+252769,0,369406.9574,0,21
+252770,0,0,0,21
+252771,0,0,0,21
+252772,0,0,0,21
+252773,0,0,0,21
+252774,0,0,0,21
+252775,0,0,0,21
+252776,0,0,0,21
+252777,0,0,0,21
+252778,0,0,0,21
+252779,0,0,0,21
+252780,0,0,658891.2685,21
+252781,0,0,0,21
+252782,0,0,0,21
+252783,0,0,0,21
+252784,0,0,0,21
+252785,0,0,0,21
+252786,0,0,0,21
+252787,0,0,0,21
+252788,0,0,0,21
+252789,0,0,0,21
+252790,0,0,0,21
+252791,0,0,0,21
+252792,0,0,0,21
+252793,0,0,0,21
+252794,0,0,0,21
+252795,0,0,0,21
+252796,0,0,0,21
+252797,0,0,0,21
+252798,0,0,0,21
+252799,0,0,0,21
+252800,0,0,0,21
+252801,0,0,0,21
+252802,0,0,0,21
+252803,0,0,0,21
+252804,0,0,0,21
+252805,333726.7188,0,0,21
+252806,0,0,0,21
+252807,0,369418.7424,0,21
+252808,0,0,0,21
+252809,0,0,0,21
+252810,0,0,0,21
+252811,0,0,0,21
+252812,0,0,0,21
+252813,0,0,0,21
+252814,0,0,0,21
+252815,0,0,658980.0412,21
+252816,0,0,0,21
+252817,0,0,0,21
+252818,0,0,0,21
+252819,0,0,0,21
+252820,0,0,0,21
+252821,0,0,0,21
+252822,0,0,0,21
+252823,0,0,0,21
+252824,0,0,0,21
+252825,0,0,0,21
+252826,0,0,0,21
+252827,0,0,0,21
+252828,0,0,0,21
+252829,0,0,0,21
+252830,0,0,0,21
+252831,0,0,0,21
+252832,0,0,0,21
+252833,0,0,0,21
+252834,0,0,0,21
+252835,0,0,0,21
+252836,0,0,0,21
+252837,0,0,0,21
+252838,0,0,0,21
+252839,0,0,0,21
+252840,0,0,0,21
+252841,0,0,0,21
+252842,0,0,0,21
+252843,334824.9299,0,0,21
+252844,0,0,0,21
+252845,0,369427.8957,0,21
+252846,0,0,0,21
+252847,0,0,0,21
+252848,0,0,0,21
+252849,0,0,0,21
+252850,0,0,658698.4526,21
+252851,0,0,0,21
+252852,0,0,0,21
+252853,0,0,0,21
+252854,0,0,0,21
+252855,0,0,0,21
+252856,0,0,0,21
+252857,0,0,0,21
+252858,0,0,0,21
+252859,0,0,0,21
+252860,0,0,0,21
+252861,0,0,0,21
+252862,0,0,0,21
+252863,0,0,0,21
+252864,0,0,0,21
+252865,0,0,0,21
+252866,0,0,0,21
+252867,0,0,0,21
+252868,0,0,0,21
+252869,0,0,0,21
+252870,0,0,0,21
+252871,0,0,0,21
+252872,0,0,0,21
+252873,0,0,0,21
+252874,0,0,0,21
+252875,0,0,0,21
+252876,0,0,0,21
+252877,0,0,0,21
+252878,0,0,0,21
+252879,334389.2284,0,0,21
+252880,0,0,0,21
+252881,0,0,0,21
+252882,0,0,0,21
+252883,0,369389.5543,0,21
+252884,0,0,0,21
+252885,0,0,658272.0841,21
+252886,0,0,0,21
+252887,0,0,0,21
+252888,0,0,0,21
+252889,0,0,0,21
+252890,0,0,0,21
+252891,0,0,0,21
+252892,0,0,0,21
+252893,0,0,0,21
+252894,0,0,0,21
+252895,0,0,0,21
+252896,0,0,0,21
+252897,0,0,0,21
+252898,0,0,0,21
+252899,0,0,0,21
+252900,0,0,0,21
+252901,0,0,0,21
+252902,0,0,0,21
+252903,0,0,0,21
+252904,0,0,0,21
+252905,0,0,0,21
+252906,0,0,0,21
+252907,0,0,0,21
+252908,0,0,0,21
+252909,0,0,0,21
+252910,0,0,0,21
+252911,0,0,0,21
+252912,0,0,0,21
+252913,0,0,0,21
+252914,0,0,0,21
+252915,333894.4002,0,0,21
+252916,0,0,0,21
+252917,0,0,0,21
+252918,0,0,0,21
+252919,0,0,0,21
+252920,0,0,658673.0743,21
+252921,0,368210.1462,0,21
+252922,0,0,0,21
+252923,0,0,0,21
+252924,0,0,0,21
+252925,0,0,0,21
+252926,0,0,0,21
+252927,0,0,0,21
+252928,0,0,0,21
+252929,0,0,0,21
+252930,0,0,0,21
+252931,0,0,0,21
+252932,0,0,0,21
+252933,0,0,0,21
+252934,0,0,0,21
+252935,0,0,0,21
+252936,0,0,0,21
+252937,0,0,0,21
+252938,0,0,0,21
+252939,0,0,0,21
+252940,0,0,0,21
+252941,0,0,0,21
+252942,0,0,0,21
+252943,0,0,0,21
+252944,0,0,0,21
+252945,0,0,0,21
+252946,0,0,0,21
+252947,0,0,0,21
+252948,0,0,0,21
+252949,0,0,0,21
+252950,0,0,0,21
+252951,334147.3442,0,0,21
+252952,0,0,0,21
+252953,0,0,0,21
+252954,0,0,0,21
+252955,0,0,659817.9719,21
+252956,0,0,0,21
+252957,0,0,0,21
+252958,0,0,0,21
+252959,0,368153.7277,0,21
+252960,0,0,0,21
+252961,0,0,0,21
+252962,0,0,0,21
+252963,0,0,0,21
+252964,0,0,0,21
+252965,0,0,0,21
+252966,0,0,0,21
+252967,0,0,0,21
+252968,0,0,0,21
+252969,0,0,0,21
+252970,0,0,0,21
+252971,0,0,0,21
+252972,0,0,0,21
+252973,0,0,0,21
+252974,0,0,0,21
+252975,0,0,0,21
+252976,0,0,0,21
+252977,0,0,0,21
+252978,0,0,0,21
+252979,0,0,0,21
+252980,0,0,0,21
+252981,0,0,0,21
+252982,0,0,0,21
+252983,0,0,0,21
+252984,0,0,0,21
+252985,0,0,0,21
+252986,0,0,0,21
+252987,333991.7791,0,0,21
+252988,0,0,0,21
+252989,0,0,0,21
+252990,0,0,660739.8848,21
+252991,0,0,0,21
+252992,0,0,0,21
+252993,0,0,0,21
+252994,0,0,0,21
+252995,0,0,0,21
+252996,0,368024.8135,0,21
+252997,0,0,0,21
+252998,0,0,0,21
+252999,0,0,0,21
+253000,0,0,0,21
+253001,0,0,0,21
+253002,0,0,0,21
+253003,0,0,0,21
+253004,0,0,0,21
+253005,0,0,0,21
+253006,0,0,0,21
+253007,0,0,0,21
+253008,0,0,0,21
+253009,0,0,0,21
+253010,0,0,0,21
+253011,0,0,0,21
+253012,0,0,0,21
+253013,0,0,0,21
+253014,0,0,0,21
+253015,0,0,0,21
+253016,0,0,0,21
+253017,0,0,0,21
+253018,0,0,0,21
+253019,0,0,0,21
+253020,0,0,0,21
+253021,0,0,0,21
+253022,0,0,0,21
+253023,334307.5524,0,0,21
+253024,0,0,0,21
+253025,0,0,661120.414,21
+253026,0,0,0,21
+253027,0,0,0,21
+253028,0,0,0,21
+253029,0,0,0,21
+253030,0,0,0,21
+253031,0,0,0,21
+253032,0,0,0,21
+253033,0,367980.7265,0,21
+253034,0,0,0,21
+253035,0,0,0,21
+253036,0,0,0,21
+253037,0,0,0,21
+253038,0,0,0,21
+253039,0,0,0,21
+253040,0,0,0,21
+253041,0,0,0,21
+253042,0,0,0,21
+253043,0,0,0,21
+253044,0,0,0,21
+253045,0,0,0,21
+253046,0,0,0,21
+253047,0,0,0,21
+253048,0,0,0,21
+253049,0,0,0,21
+253050,0,0,0,21
+253051,0,0,0,21
+253052,0,0,0,21
+253053,0,0,0,21
+253054,0,0,0,21
+253055,0,0,0,21
+253056,0,0,0,21
+253057,0,0,0,21
+253058,0,0,0,21
+253059,0,0,0,21
+253060,334549.9725,0,661013.6703,21
+253061,0,0,0,21
+253062,0,0,0,21
+253063,0,0,0,21
+253064,0,0,0,21
+253065,0,0,0,21
+253066,0,0,0,21
+253067,0,0,0,21
+253068,0,0,0,21
+253069,0,0,0,21
+253070,0,367870.7922,0,21
+253071,0,0,0,21
+253072,0,0,0,21
+253073,0,0,0,21
+253074,0,0,0,21
+253075,0,0,0,21
+253076,0,0,0,21
+253077,0,0,0,21
+253078,0,0,0,21
+253079,0,0,0,21
+253080,0,0,0,21
+253081,0,0,0,21
+253082,0,0,0,21
+253083,0,0,0,21
+253084,0,0,0,21
+253085,0,0,0,21
+253086,0,0,0,21
+253087,0,0,0,21
+253088,0,0,0,21
+253089,0,0,0,21
+253090,0,0,0,21
+253091,0,0,0,21
+253092,0,0,0,21
+253093,0,0,0,21
+253094,0,0,0,21
+253095,0,0,660727.3997,21
+253096,0,0,0,21
+253097,334148.0127,0,0,21
+253098,0,0,0,21
+253099,0,0,0,21
+253100,0,0,0,21
+253101,0,0,0,21
+253102,0,0,0,21
+253103,0,0,0,21
+253104,0,0,0,21
+253105,0,0,0,21
+253106,0,0,0,21
+253107,0,367899.3528,0,21
+253108,0,0,0,21
+253109,0,0,0,21
+253110,0,0,0,21
+253111,0,0,0,21
+253112,0,0,0,21
+253113,0,0,0,21
+253114,0,0,0,21
+253115,0,0,0,21
+253116,0,0,0,21
+253117,0,0,0,21
+253118,0,0,0,21
+253119,0,0,0,21
+253120,0,0,0,21
+253121,0,0,0,21
+253122,0,0,0,21
+253123,0,0,0,21
+253124,0,0,0,21
+253125,0,0,0,21
+253126,0,0,0,21
+253127,0,0,0,21
+253128,0,0,0,21
+253129,0,0,0,21
+253130,0,0,660676.9996,21
+253131,0,0,0,21
+253132,0,0,0,21
+253133,0,0,0,21
+253134,334827.6196,0,0,21
+253135,0,0,0,21
+253136,0,0,0,21
+253137,0,0,0,21
+253138,0,0,0,21
+253139,0,0,0,21
+253140,0,0,0,21
+253141,0,0,0,21
+253142,0,0,0,21
+253143,0,0,0,21
+253144,0,367863.165,0,21
+253145,0,0,0,21
+253146,0,0,0,21
+253147,0,0,0,21
+253148,0,0,0,21
+253149,0,0,0,21
+253150,0,0,0,21
+253151,0,0,0,21
+253152,0,0,0,21
+253153,0,0,0,21
+253154,0,0,0,21
+253155,0,0,0,21
+253156,0,0,0,21
+253157,0,0,0,21
+253158,0,0,0,21
+253159,0,0,0,21
+253160,0,0,0,21
+253161,0,0,0,21
+253162,0,0,0,21
+253163,0,0,0,21
+253164,0,0,0,21
+253165,0,0,660645.246,21
+253166,0,0,0,21
+253167,0,0,0,21
+253168,0,0,0,21
+253169,0,0,0,21
+253170,0,0,0,21
+253171,334822.7882,0,0,21
+253172,0,0,0,21
+253173,0,0,0,21
+253174,0,0,0,21
+253175,0,0,0,21
+253176,0,0,0,21
+253177,0,0,0,21
+253178,0,0,0,21
+253179,0,0,0,21
+253180,0,0,0,21
+253181,0,367838.4254,0,21
+253182,0,0,0,21
+253183,0,0,0,21
+253184,0,0,0,21
+253185,0,0,0,21
+253186,0,0,0,21
+253187,0,0,0,21
+253188,0,0,0,21
+253189,0,0,0,21
+253190,0,0,0,21
+253191,0,0,0,21
+253192,0,0,0,21
+253193,0,0,0,21
+253194,0,0,0,21
+253195,0,0,0,21
+253196,0,0,0,21
+253197,0,0,0,21
+253198,0,0,0,21
+253199,0,0,0,21
+253200,0,0,660482.6454,21
+253201,0,0,0,21
+253202,0,0,0,21
+253203,0,0,0,21
+253204,0,0,0,21
+253205,0,0,0,21
+253206,0,0,0,21
+253207,0,0,0,21
+253208,0,0,0,21
+253209,335349.099,0,0,21
+253210,0,0,0,21
+253211,0,0,0,21
+253212,0,0,0,21
+253213,0,0,0,21
+253214,0,0,0,21
+253215,0,0,0,21
+253216,0,0,0,21
+253217,0,0,0,21
+253218,0,0,0,21
+253219,0,367929.3422,0,21
+253220,0,0,0,21
+253221,0,0,0,21
+253222,0,0,0,21
+253223,0,0,0,21
+253224,0,0,0,21
+253225,0,0,0,21
+253226,0,0,0,21
+253227,0,0,0,21
+253228,0,0,0,21
+253229,0,0,0,21
+253230,0,0,0,21
+253231,0,0,0,21
+253232,0,0,0,21
+253233,0,0,0,21
+253234,0,0,0,21
+253235,0,0,0,21
+253236,0,0,660304.9667,21
+253237,0,0,0,21
+253238,0,0,0,21
+253239,0,0,0,21
+253240,0,0,0,21
+253241,0,0,0,21
+253242,0,0,0,21
+253243,0,0,0,21
+253244,0,0,0,21
+253245,0,0,0,21
+253246,0,0,0,21
+253247,336669.5047,0,0,21
+253248,0,0,0,21
+253249,0,0,0,21
+253250,0,0,0,21
+253251,0,0,0,21
+253252,0,0,0,21
+253253,0,0,0,21
+253254,0,0,0,21
+253255,0,0,0,21
+253256,0,0,0,21
+253257,0,369141.8618,0,21
+253258,0,0,0,21
+253259,0,0,0,21
+253260,0,0,0,21
+253261,0,0,0,21
+253262,0,0,0,21
+253263,0,0,0,21
+253264,0,0,0,21
+253265,0,0,0,21
+253266,0,0,0,21
+253267,0,0,0,21
+253268,0,0,0,21
+253269,0,0,0,21
+253270,0,0,0,21
+253271,0,0,660273.2495,21
+253272,0,0,0,21
+253273,0,0,0,21
+253274,0,0,0,21
+253275,0,0,0,21
+253276,0,0,0,21
+253277,0,0,0,21
+253278,0,0,0,21
+253279,0,0,0,21
+253280,0,0,0,21
+253281,0,0,0,21
+253282,0,0,0,21
+253283,0,0,0,21
+253284,335070.4796,0,0,21
+253285,0,0,0,21
+253286,0,0,0,21
+253287,0,0,0,21
+253288,0,0,0,21
+253289,0,0,0,21
+253290,0,0,0,21
+253291,0,0,0,21
+253292,0,0,0,21
+253293,0,0,0,21
+253294,0,0,0,21
+253295,0,369285.4821,0,21
+253296,0,0,0,21
+253297,0,0,0,21
+253298,0,0,0,21
+253299,0,0,0,21
+253300,0,0,0,21
+253301,0,0,0,21
+253302,0,0,0,21
+253303,0,0,0,21
+253304,0,0,0,21
+253305,0,0,0,21
+253306,0,0,660214.9856,21
+253307,0,0,0,21
+253308,0,0,0,21
+253309,0,0,0,21
+253310,0,0,0,21
+253311,0,0,0,21
+253312,0,0,0,21
+253313,0,0,0,21
+253314,0,0,0,21
+253315,0,0,0,21
+253316,0,0,0,21
+253317,0,0,0,21
+253318,0,0,0,21
+253319,0,0,0,21
+253320,0,0,0,15.6
+253321,334186.3763,0,0,15.6
+253322,0,0,0,15.6
+253323,0,0,0,15.6
+253324,0,0,0,15.6
+253325,0,0,0,15.6
+253326,0,0,0,15.6
+253327,0,0,0,15.6
+253328,0,0,0,15.6
+253329,0,0,0,15.6
+253330,0,0,0,15.6
+253331,0,0,0,15.6
+253332,0,369214.6652,0,15.6
+253333,0,0,0,15.6
+253334,0,0,0,15.6
+253335,0,0,0,15.6
+253336,0,0,0,15.6
+253337,0,0,0,15.6
+253338,0,0,0,15.6
+253339,0,0,0,15.6
+253340,0,0,0,15.6
+253341,0,0,660020.299,15.6
+253342,0,0,0,15.6
+253343,0,0,0,15.6
+253344,0,0,0,15.6
+253345,0,0,0,15.6
+253346,0,0,0,15.6
+253347,0,0,0,15.6
+253348,0,0,0,15.6
+253349,0,0,0,15.6
+253350,0,0,0,15.6
+253351,0,0,0,15.6
+253352,0,0,0,15.6
+253353,0,0,0,15.6
+253354,0,0,0,15.6
+253355,0,0,0,15.6
+253356,0,0,0,15.6
+253357,0,0,0,15.6
+253358,337474.0796,0,0,15.6
+253359,0,0,0,15.6
+253360,0,0,0,15.6
+253361,0,0,0,15.6
+253362,0,0,0,15.6
+253363,0,0,0,15.6
+253364,0,0,0,15.6
+253365,0,0,0,15.6
+253366,0,0,0,15.6
+253367,0,0,0,15.6
+253368,0,0,0,15.6
+253369,0,369375.7019,0,15.6
+253370,0,0,0,15.6
+253371,0,0,0,15.6
+253372,0,0,0,15.6
+253373,0,0,0,15.6
+253374,0,0,0,15.6
+253375,0,0,0,15.6
+253376,0,0,659440.3696,15.6
+253377,0,0,0,15.6
+253378,0,0,0,15.6
+253379,0,0,0,15.6
+253380,0,0,0,15.6
+253381,0,0,0,15.6
+253382,0,0,0,15.6
+253383,0,0,0,15.6
+253384,0,0,0,15.6
+253385,0,0,0,15.6
+253386,0,0,0,15.6
+253387,0,0,0,15.6
+253388,0,0,0,15.6
+253389,0,0,0,15.6
+253390,0,0,0,15.6
+253391,0,0,0,15.6
+253392,0,0,0,15.6
+253393,0,0,0,15.6
+253394,334872.2551,0,0,15.6
+253395,0,0,0,15.6
+253396,0,0,0,15.6
+253397,0,0,0,15.6
+253398,0,0,0,15.6
+253399,0,0,0,15.6
+253400,0,0,0,15.6
+253401,0,0,0,15.6
+253402,0,0,0,15.6
+253403,0,0,0,15.6
+253404,0,369200.9832,0,15.6
+253405,0,0,0,15.6
+253406,0,0,0,15.6
+253407,0,0,0,15.6
+253408,0,0,0,15.6
+253409,0,0,0,15.6
+253410,0,0,0,15.6
+253411,0,0,658742.6764,15.6
+253412,0,0,0,15.6
+253413,0,0,0,15.6
+253414,0,0,0,15.6
+253415,0,0,0,15.6
+253416,0,0,0,15.6
+253417,0,0,0,15.6
+253418,0,0,0,15.6
+253419,0,0,0,15.6
+253420,0,0,0,15.6
+253421,0,0,0,15.6
+253422,0,0,0,15.6
+253423,0,0,0,15.6
+253424,0,0,0,15.6
+253425,0,0,0,15.6
+253426,0,0,0,15.6
+253427,0,0,0,15.6
+253428,0,0,0,15.6
+253429,0,0,0,15.6
+253430,335629.7934,0,0,15.6
+253431,0,0,0,15.6
+253432,0,0,0,15.6
+253433,0,0,0,15.6
+253434,0,0,0,15.6
+253435,0,0,0,15.6
+253436,0,0,0,15.6
+253437,0,0,0,15.6
+253438,0,0,0,15.6
+253439,0,369287.6377,0,15.6
+253440,0,0,0,15.6
+253441,0,0,0,15.6
+253442,0,0,0,15.6
+253443,0,0,0,15.6
+253444,0,0,0,15.6
+253445,0,0,0,15.6
+253446,0,0,658764.0296,15.6
+253447,0,0,0,15.6
+253448,0,0,0,15.6
+253449,0,0,0,15.6
+253450,0,0,0,15.6
+253451,0,0,0,15.6
+253452,0,0,0,15.6
+253453,0,0,0,15.6
+253454,0,0,0,15.6
+253455,0,0,0,15.6
+253456,0,0,0,15.6
+253457,0,0,0,15.6
+253458,0,0,0,15.6
+253459,0,0,0,15.6
+253460,0,0,0,15.6
+253461,0,0,0,15.6
+253462,0,0,0,15.6
+253463,0,0,0,15.6
+253464,0,0,0,15.6
+253465,0,0,0,15.6
+253466,338291.4585,0,0,15.6
+253467,0,0,0,15.6
+253468,0,0,0,15.6
+253469,0,0,0,15.6
+253470,0,0,0,15.6
+253471,0,0,0,15.6
+253472,0,0,0,15.6
+253473,0,0,0,15.6
+253474,0,363981.0015,0,15.6
+253475,0,0,0,15.6
+253476,0,0,0,15.6
+253477,0,0,0,15.6
+253478,0,0,0,15.6
+253479,0,0,0,15.6
+253480,0,0,0,15.6
+253481,0,0,658962.7794,15.6
+253482,0,0,0,15.6
+253483,0,0,0,15.6
+253484,0,0,0,15.6
+253485,0,0,0,15.6
+253486,0,0,0,15.6
+253487,0,0,0,15.6
+253488,0,0,0,15.6
+253489,0,0,0,15.6
+253490,0,0,0,15.6
+253491,0,0,0,15.6
+253492,0,0,0,15.6
+253493,0,0,0,15.6
+253494,0,0,0,15.6
+253495,0,0,0,15.6
+253496,0,0,0,15.6
+253497,0,0,0,15.6
+253498,0,0,0,15.6
+253499,0,0,0,15.6
+253500,0,0,0,15.6
+253501,0,0,0,15.6
+253502,338380.9756,0,0,15.6
+253503,0,0,0,15.6
+253504,0,0,0,15.6
+253505,0,0,0,15.6
+253506,0,0,0,15.6
+253507,0,0,0,15.6
+253508,0,0,0,15.6
+253509,0,365680.1279,0,15.6
+253510,0,0,0,15.6
+253511,0,0,0,15.6
+253512,0,0,0,15.6
+253513,0,0,0,15.6
+253514,0,0,0,15.6
+253515,0,0,0,15.6
+253516,0,0,658864.384,15.6
+253517,0,0,0,15.6
+253518,0,0,0,15.6
+253519,0,0,0,15.6
+253520,0,0,0,15.6
+253521,0,0,0,15.6
+253522,0,0,0,15.6
+253523,0,0,0,15.6
+253524,0,0,0,15.6
+253525,0,0,0,15.6
+253526,0,0,0,15.6
+253527,0,0,0,15.6
+253528,0,0,0,15.6
+253529,0,0,0,15.6
+253530,0,0,0,15.6
+253531,0,0,0,15.6
+253532,0,0,0,15.6
+253533,0,0,0,15.6
+253534,0,0,0,15.6
+253535,0,0,0,15.6
+253536,0,0,0,15.6
+253537,0,0,0,15.6
+253538,338698.7817,0,0,15.6
+253539,0,0,0,15.6
+253540,0,0,0,15.6
+253541,0,0,0,15.6
+253542,0,0,0,15.6
+253543,0,0,0,15.6
+253544,0,367448.9287,0,15.6
+253545,0,0,0,15.6
+253546,0,0,0,15.6
+253547,0,0,0,15.6
+253548,0,0,0,15.6
+253549,0,0,0,15.6
+253550,0,0,0,15.6
+253551,0,0,658526.2903,15.6
+253552,0,0,0,15.6
+253553,0,0,0,15.6
+253554,0,0,0,15.6
+253555,0,0,0,15.6
+253556,0,0,0,15.6
+253557,0,0,0,15.6
+253558,0,0,0,15.6
+253559,0,0,0,15.6
+253560,0,0,0,15.6
+253561,0,0,0,15.6
+253562,0,0,0,15.6
+253563,0,0,0,15.6
+253564,0,0,0,15.6
+253565,0,0,0,15.6
+253566,0,0,0,15.6
+253567,0,0,0,15.6
+253568,0,0,0,15.6
+253569,0,0,0,15.6
+253570,0,0,0,15.6
+253571,0,0,0,15.6
+253572,0,0,0,15.6
+253573,0,0,0,15.6
+253574,338894.0809,0,0,15.6
+253575,0,0,0,15.6
+253576,0,0,0,15.6
+253577,0,0,0,15.6
+253578,0,0,0,15.6
+253579,0,368187.5514,0,15.6
+253580,0,0,0,15.6
+253581,0,0,0,15.6
+253582,0,0,0,15.6
+253583,0,0,0,15.6
+253584,0,0,0,15.6
+253585,0,0,0,15.6
+253586,0,0,658279.1611,15.6
+253587,0,0,0,15.6
+253588,0,0,0,15.6
+253589,0,0,0,15.6
+253590,0,0,0,15.6
+253591,0,0,0,15.6
+253592,0,0,0,15.6
+253593,0,0,0,15.6
+253594,0,0,0,15.6
+253595,0,0,0,15.6
+253596,0,0,0,15.6
+253597,0,0,0,15.6
+253598,0,0,0,15.6
+253599,0,0,0,15.6
+253600,0,0,0,15.6
+253601,0,0,0,15.6
+253602,0,0,0,15.6
+253603,0,0,0,15.6
+253604,0,0,0,15.6
+253605,0,0,0,15.6
+253606,0,0,0,15.6
+253607,0,0,0,15.6
+253608,0,0,0,15.6
+253609,0,0,0,15.6
+253610,339011.7299,0,0,15.6
+253611,0,0,0,15.6
+253612,0,0,0,15.6
+253613,0,0,0,15.6
+253614,0,368094.8786,0,15.6
+253615,0,0,0,15.6
+253616,0,0,0,15.6
+253617,0,0,0,15.6
+253618,0,0,0,15.6
+253619,0,0,0,15.6
+253620,0,0,0,15.6
+253621,0,0,658651.5065,15.6
+253622,0,0,0,15.6
+253623,0,0,0,15.6
+253624,0,0,0,15.6
+253625,0,0,0,15.6
+253626,0,0,0,15.6
+253627,0,0,0,15.6
+253628,0,0,0,15.6
+253629,0,0,0,15.6
+253630,0,0,0,15.6
+253631,0,0,0,15.6
+253632,0,0,0,15.6
+253633,0,0,0,15.6
+253634,0,0,0,15.6
+253635,0,0,0,15.6
+253636,0,0,0,15.6
+253637,0,0,0,15.6
+253638,0,0,0,15.6
+253639,0,0,0,15.6
+253640,0,0,0,15.6
+253641,0,0,0,15.6
+253642,0,0,0,15.6
+253643,0,0,0,15.6
+253644,0,0,0,15.6
+253645,0,0,0,15.6
+253646,339086.8146,0,0,15.6
+253647,0,0,0,15.6
+253648,0,0,0,15.6
+253649,0,369406.6258,0,15.6
+253650,0,0,0,15.6
+253651,0,0,0,15.6
+253652,0,0,0,15.6
+253653,0,0,0,15.6
+253654,0,0,0,15.6
+253655,0,0,0,15.6
+253656,0,0,658069.3647,15.6
+253657,0,0,0,15.6
+253658,0,0,0,15.6
+253659,0,0,0,15.6
+253660,0,0,0,15.6
+253661,0,0,0,15.6
+253662,0,0,0,15.6
+253663,0,0,0,15.6
+253664,0,0,0,15.6
+253665,0,0,0,15.6
+253666,0,0,0,15.6
+253667,0,0,0,15.6
+253668,0,0,0,15.6
+253669,0,0,0,15.6
+253670,0,0,0,15.6
+253671,0,0,0,15.6
+253672,0,0,0,15.6
+253673,0,0,0,15.6
+253674,0,0,0,15.6
+253675,0,0,0,15.6
+253676,0,0,0,15.6
+253677,0,0,0,15.6
+253678,0,0,0,15.6
+253679,0,0,0,15.6
+253680,0,0,0,17.8
+253681,0,0,0,17.8
+253682,339103.2255,0,0,17.8
+253683,0,0,0,17.8
+253684,0,369408.2525,0,17.8
+253685,0,0,0,17.8
+253686,0,0,0,17.8
+253687,0,0,0,17.8
+253688,0,0,0,17.8
+253689,0,0,0,17.8
+253690,0,0,0,17.8
+253691,0,0,658285.1048,17.8
+253692,0,0,0,17.8
+253693,0,0,0,17.8
+253694,0,0,0,17.8
+253695,0,0,0,17.8
+253696,0,0,0,17.8
+253697,0,0,0,17.8
+253698,0,0,0,17.8
+253699,0,0,0,17.8
+253700,0,0,0,17.8
+253701,0,0,0,17.8
+253702,0,0,0,17.8
+253703,0,0,0,17.8
+253704,0,1000.404168,0,17.8
+253705,0,490.9638672,0,17.8
+253706,0,659.3719533,0,17.8
+253707,0,696.1263451,0,17.8
+253708,0,714.4203901,0,17.8
+253709,0,750.8477333,0,17.8
+253710,0,768.9830855,0,17.8
+253711,0,787.0675147,0,17.8
+253712,0,805.1019315,0,17.8
+253713,0,823.0872059,0,17.8
+253714,0,823.0872036,0,17.8
+253715,0,858.9136183,0,17.8
+253716,0,858.9136159,0,17.8
+253717,0,894.5529912,0,17.8
+253718,339108.8906,858.9136113,0,17.8
+253719,0,370338.3723,0,17.8
+253720,0,0,0,17.8
+253721,0,0,0,17.8
+253722,0,0,0,17.8
+253723,0,0,0,17.8
+253724,0,0,0,17.8
+253725,0,0,0,17.8
+253726,0,0,658503.353,17.8
+253727,0,0,0,17.8
+253728,0,0,0,17.8
+253729,0,0,0,17.8
+253730,0,0,0,17.8
+253731,0,0,0,17.8
+253732,0,0,0,17.8
+253733,0,0,0,17.8
+253734,0,0,0,17.8
+253735,0,0,0,17.8
+253736,0,0,0,17.8
+253737,0,0,0,17.8
+253738,0,0,0,17.8
+253739,0,0,0,17.8
+253740,0,0,0,20
+253741,4854.112997,73818.56745,295414.8742,20
+253742,0,3182.618816,0,20
+253743,0,61488.82249,0,20
+253744,239.3271183,124349.5416,0,20
+253745,1333.476388,130339.7434,17874.58718,20
+253746,532.4824872,117896.4337,52118.04407,20
+253747,745.575383,121740.3149,24306.05972,20
+253748,745.5753135,126240.391,33050.17839,20
+253749,760.4074837,125440.4387,33695.42075,20
+253750,745.574998,136595.6539,34954.79589,20
+253751,760.4075939,139746.738,35601.47657,20
+253752,760.407592,135425.1727,35636.24697,20
+253753,6507.137586,136774.7369,36896.54433,20
+253754,6944.874482,137051.2993,38156.4959,20
+253755,5934.782966,136834.8787,36971.94708,20
+253756,7249.139205,136709.976,39455.98162,20
+253757,7569.986642,136461.459,38275.18833,20
+253758,7770.895727,136038.1615,40759.28483,20
+253759,7951.446905,136407.337,39582.13079,20
+253760,8299.327713,136091.4052,42066.68226,20
+253761,8440.29987,135439.3939,40893.05514,20
+253762,8800.175763,135758.6343,42159.82598,20
+253763,8814.867863,135188.2841,42206.9318,20
+253764,9172.686219,135550.0504,43475.50986,20
+253765,9310.972764,134562.142,43525.25712,20
+253766,9542.44179,134990.3504,44795.84628,20
+253767,9772.952394,134524.2449,43625.81151,20
+253768,9924.692076,134080.9008,46119.67393,20
+253769,10032.04173,134440.6001,44952.85979,20
+253770,10389.18049,133688.3537,46228.52783,20
+253771,10381.85157,133619.1753,47505.10486,20
+253772,10638.23814,133494.9477,46339.73776,20
+253773,10758.72857,133407.4032,47619.27207,20
+253774,10984.52958,133170.3557,47676.89803,20
+253775,11104.31834,133171.2877,48958.97001,20
+253776,11238.21493,132888.6243,49019.40177,20
+253777,11447.9192,132511.0951,49079.71291,20
+253778,11476.83254,132349.3585,49139.90208,20
+253779,11699.65003,132345.4245,51652.11994,20
+253780,11699.64985,131976.4203,49262.74773,20
+253781,12054.51347,131746.0049,51781.33986,20
+253782,12039.91178,131738.1262,50617.80644,20
+253783,12186.30487,131687.5851,53139.36469,20
+253784,12275.09902,131181.598,50745.80912,20
+253785,12406.95658,130761.3471,53273.82082,20
+253786,12626.20027,130966.7851,53342.33284,20
+253787,12626.82475,130882.2607,53410.70028,20
+253788,12771.30176,130153.8683,53478.92055,20
+253789,12845.26036,130131.3941,54781.85091,20
+253790,12989.92774,129898.1,53616.38962,20
+253791,13105.87175,129925.8354,56157.6182,20
+253792,13091.27007,129339.0703,54994.76732,20
+253793,13466.58071,129383.0512,55065.42824,20
+253794,13547.74293,129183.2101,56376.30271,20
+253795,13448.74256,128558.8887,56449.88399,20
+253796,13929.8879,128829.2388,57764.10251,20
+253797,13744.35715,128229.0411,56598.06006,20
+253798,13861.25877,127905.9032,57915.45828,20
+253799,14107.91641,128130.2461,56745.55706,20
+253800,14016.14277,127815.0692,59310.92055,21
+253801,12354.70475,119485.7057,33814.50195,21
+253802,12135.315,118045.2607,29862.27629,21
+253803,12141.71919,117196.8144,28545.2209,21
+253804,12143.88718,117232.2863,28563.12334,21
+253805,12364.43292,116339.7489,29250.90299,21
+253806,12193.25256,116503.6897,27927.59937,21
+253807,12397.27969,115409.4715,28616.71275,21
+253808,12412.51979,115334.0866,27288.09275,21
+253809,12533.89594,115020.989,28651.54309,21
+253810,12459.98838,114447.432,27321.14672,21
+253811,12667.21461,113999.8136,27337.26962,21
+253812,12594.71651,113748.2825,27353.37594,21
+253813,12683.71287,113485.565,27369.46602,21
+253814,12712.45537,112611.423,27385.53862,21
+253815,12949.16337,112852.5947,27401.59507,21
+253816,12728.75005,111999.0027,27417.63419,21
+253817,12979.13726,111854.0821,26074.07531,21
+253818,12964.60439,111401.3357,28803.81242,21
+253819,13011.2803,111038.652,26104.38493,21
+253820,12978.34379,110394.8159,26800.53589,21
+253821,13245.93753,110876.1737,27496.45147,21
+253822,13008.08024,109399.3161,26148.66968,21
+253823,13261.73692,109993.2612,27527.56666,21
+253824,13257.96709,109022.2226,26861.49658,21
+253825,13275.82105,108972.4503,26192.82106,21
+253826,13273.76721,108396.2477,27574.12539,21
+253827,13420.72378,108238.9865,26222.18238,21
+253828,13399.38381,107825.4542,27605.08633,21
+253829,13538.06557,107140.3958,26251.48383,21
+253830,13318.98509,107386.8168,27635.98426,21
+253831,13522.72149,106635.4041,26280.72634,21
+253832,13056.28451,106906.3472,26981.5966,21
+253833,12572.36378,106906.759,26309.55979,21
+253834,12297.16079,106728.3203,27697.22675,21
+253835,12023.70253,107110.9062,26338.68719,21
+253836,11673.04561,106537.4556,27041.10837,21
+253837,11305.49066,106855.403,26367.40491,21
+253838,11010.0689,107017.6928,27758.22378,21
+253839,10533.23674,106784.4569,26396.41666,21
+253840,10242.16359,106954.2188,26410.5512,21
+253841,9749.302702,106869.2193,27803.72211,21
+253842,9462.094117,107072.4702,26439.47692,21
+253843,8947.784361,107103.9145,27144.59492,21
+253844,8450.285991,107458.7977,26467.99661,21
+253845,8124.782818,106919.1784,27864.29796,21
+253846,7744.629531,107582.2194,26496.80635,21
+253847,7124.992057,107380.7236,26510.84351,21
+253848,6884.666926,107406.4023,27909.47992,21
+253849,6368.775214,107774.3757,26539.56753,21
+253850,5101.072963,107616.6233,27939.77004,21
+253851,4429.086336,108120.139,26568.23569,21
+253852,3792.839824,108216.0529,26582.2018,21
+253853,3483.440053,107972.1751,27984.7279,21
+253854,2844.928707,108288.502,26610.78478,21
+253855,2246.399611,108577.7395,27320.48747,21
+253856,1984.077168,108563.7877,26638.96667,21
+253857,1099.147591,109010.7258,28044.58568,21
+253858,827.1394468,108667.915,26667.43455,21
+253859,369.9780388,109533.4807,28074.60584,21
+253860,369.9780594,109014.2432,26695.84709,21
+253861,0,49340.57884,0,21
+253862,0,46282.39842,0,21
+253863,0,45721.57139,0,21
+253864,0,45104.42286,0,21
+253865,0,44652.51781,0,21
+253866,0,44469.09115,0,21
+253867,0,43533.8399,0,21
+253868,0,43869.56161,0,21
+253869,0,43241.63525,0,21
+253870,0,43017.61372,0,21
+253871,0,42777.12446,0,21
+253872,0,42393.77567,0,21
+253873,0,42274.34225,0,21
+253874,0,42140.4085,0,21
+253875,0,41562.84604,0,21
+253876,0,41772.79505,0,21
+253877,0,41278.38197,0,21
+253878,0,41329.98567,0,21
+253879,0,40878.94616,0,21
+253880,0,40888.4031,0,21
+253881,0,40466.33229,0,21
+253882,0,40738.50362,0,21
+253883,0,40292.97141,0,21
+253884,0,39798.12342,0,21
+253885,0,40517.95674,0,21
+253886,0,39678.21774,0,21
+253887,0,39773.37002,0,21
+253888,0,39510.6437,0,21
+253889,0,39921.03323,0,21
+253890,0,39286.5755,0,21
+253891,0,38660.29859,0,21
+253892,0,38265.16936,0,21
+253893,0,36798.14575,0,21
+253894,0,36083.86985,0,21
+253895,0,35094.20848,0,21
+253896,0,34537.76992,0,21
+253897,0,33181.88345,0,21
+253898,0,32052.0746,0,21
+253899,0,30979.60895,0,21
+253900,0,30761.76604,0,21
+253901,0,30119.23337,0,21
+253902,0,29306.30664,0,21
+253903,0,29044.54615,0,21
+253904,0,28021.26415,0,21
+253905,0,27571.79781,0,21
+253906,0,26954.2018,0,21
+253907,0,26255.94186,0,21
+253908,0,25746.46331,0,21
+253909,0,24995.2441,0,21
+253910,0,24312.83257,0,21
+253911,0,23740.03066,0,21
+253912,0,22976.03284,0,21
+253913,0,22487.47507,0,21
+253914,0,21688.5541,0,21
+253915,0,21023.04598,0,21
+253916,0,20332.49262,0,21
+253917,0,19715.11625,0,21
+253918,0,19031.59263,0,21
+253919,0,18196.28464,0,21
+253920,0,17667.18428,0,21
+253921,0,16845.56194,0,21
+253922,0,16347.85885,0,21
+253923,0,15573.15533,0,21
+253924,0,14904.68941,0,21
+253925,0,14357.90384,0,21
+253926,0,13866.53541,0,21
+253927,0,13044.60481,0,21
+253928,0,12389.78305,0,21
+253929,0,11799.35434,0,21
+253930,0,11310.33286,0,21
+253931,0,10098.40342,0,21
+253932,0,10159.91139,0,21
+253933,0,8981.399748,0,21
+253934,0,8487.477854,0,21
+253935,0,7970.874347,0,21
+253936,0,7105.746982,0,21
+253937,0,6393.900235,0,21
+253938,0,5787.684664,0,21
+253939,0,5174.694096,0,21
+253940,0,4580.235797,0,21
+253941,0,4277.173138,0,21
+253942,0,3620.761549,0,21
+253943,0,3583.080035,0,21
+253944,0,3500.455337,0,21
+253945,0,3424.52679,0,21
+253946,0,3325.600207,0,21
+253947,0,3302.875112,0,21
+253948,0,3187.616718,0,21
+253949,0,3141.746047,0,21
+253950,0,3025.444375,0,21
+253951,0,3025.444265,0,21
+253952,0,2900.921959,0,21
+253953,0,2900.921848,0,21
+253954,0,2861.70429,0,21
+253955,0,2759.489551,0,21
+253956,0,2735.929457,0,21
+253957,0,2680.307489,0,21
+253958,0,2632.920741,0,21
+253959,0,2569.249874,0,21
+253960,0,2536.990713,0,21
+253961,0,2457.2615,0,21
+253962,0,2408.678935,0,21
+253963,0,2352.400918,0,21
+253964,0,2303.55368,0,21
+253965,0,2271.239056,0,21
+253966,0,2189.651903,0,21
+253967,0,2189.651799,0,21
+253968,0,2099.429561,0,21
+253969,0,2082.962478,0,21
+253970,0,2016.921127,0,21
+253971,0,2000.356911,0,21
+253972,0,1925.563108,0,21
+253973,0,1867.21456,0,21
+253974,0,1867.21447,0,21
+253975,0,1791.575334,0,21
+253976,0,1741.265942,0,21
+253977,0,1724.062494,0,21
+253978,0,1673.591349,0,21
+253979,0,1596.81634,0,21
+253980,0,1596.816266,0,21
+253981,0,1451.220115,0,21
+253982,0,1416.231127,0,21
+253983,0,1338.525175,0,21
+253984,0,1329.485135,0,21
+253985,0,1285.876945,0,21
+253986,0,1198.169398,0,21
+253987,0,1171.499324,0,21
+253988,0,1144.724092,0,21
+253989,0,1055.896871,0,21
+253990,0,1055.896869,0,21
+253991,0,983.9723504,0,21
+253992,0,938.9582888,0,21
+253993,0,911.4757243,0,21
+253994,0,820.5418097,0,21
+253995,0,838.3635273,0,21
+253996,0,690.066423,0,21
+253997,0,661.4936469,0,21
+253998,0,585.7495052,0,21
+253999,0,556.541729,0,21
+254000,0,490.8020855,0,21
+254001,0,464.2669144,0,21
+254002,0,397.5515601,0,21
+254003,0,351.4247921,0,21
+254004,0,319.9991232,0,21
+254005,0,250.8572902,0,21
+254006,0,217.0406539,0,21
+254007,0,217.0406526,0,21
+254008,0,179.6123006,0,21
+254009,0,198.3941734,0,21
+254010,0,160.6831815,0,21
+254011,0,170.1669805,0,21
+254012,0,141.5922496,0,21
+254013,0,141.5922486,0,21
+254014,0,122.3211118,0,21
+254015,0,102.8457525,0,21
+254016,0,102.8457517,0,21
+254017,0,83.13335604,0,21
+254018,0,83.1333554,0,21
+254019,0,53.00842916,0,21
+254020,0,53.00842873,0,21
+254021,0,42.77681623,0,21
+254022,0,21.90588074,0,21
+254023,0,11.16970316,0,21
+254024,0,0,0,21
+254025,0,0,0,21
+254026,0,0,0,21
+254027,0,0,0,21
+254028,0,0,0,21
+254029,0,0,0,21
+254030,0,0,0,21
+254031,0,0,0,21
+254032,0,0,0,21
+254033,0,0,0,21
+254034,0,0,0,21
+254035,0,0,0,21
+254036,0,0,0,21
+254037,0,0,0,21
+254038,0,0,0,21
+254039,0,0,0,21
+254040,0,0,0,21
+254041,0,0,0,21
+254042,0,0,0,21
+254043,0,0,0,21
+254044,0,0,0,21
+254045,0,0,0,21
+254046,0,0,0,21
+254047,0,0,0,21
+254048,0,0,0,21
+254049,0,0,0,21
+254050,0,0,0,21
+254051,0,0,0,21
+254052,0,0,0,21
+254053,0,0,0,21
+254054,0,0,0,21
+254055,0,0,0,21
+254056,0,0,0,21
+254057,0,0,0,21
+254058,0,0,0,21
+254059,0,0,0,21
+254060,0,0,0,21
+254061,0,0,0,21
+254062,0,0,0,21
+254063,0,0,0,21
+254064,0,0,0,21
+254065,0,0,0,21
+254066,0,0,0,21
+254067,0,0,0,21
+254068,0,0,0,21
+254069,0,0,0,21
+254070,0,0,0,21
+254071,0,0,0,21
+254072,0,0,0,21
+254073,0,0,0,21
+254074,0,0,0,21
+254075,0,0,0,21
+254076,0,0,0,21
+254077,0,0,0,21
+254078,0,0,0,21
+254079,0,0,0,21
+254080,0,0,0,21
+254081,0,0,0,21
+254082,0,0,0,21
+254083,0,0,0,21
+254084,0,0,0,21
+254085,0,0,0,21
+254086,0,0,0,21
+254087,0,0,0,21
+254088,0,0,0,21
+254089,0,0,0,21
+254090,0,0,0,21
+254091,0,0,0,21
+254092,0,0,0,21
+254093,0,0,0,21
+254094,0,0,0,21
+254095,0,0,0,21
+254096,0,0,0,21
+254097,0,0,0,21
+254098,0,0,0,21
+254099,0,0,0,21
+254100,0,0,0,21
+254101,0,0,0,21
+254102,0,0,0,21
+254103,0,0,0,21
+254104,0,0,0,21
+254105,0,0,0,21
+254106,0,0,0,21
+254107,0,0,0,21
+254108,0,0,0,21
+254109,0,0,0,21
+254110,0,0,0,21
+254111,0,0,0,21
+254112,0,0,0,21
+254113,0,0,0,21
+254114,0,0,0,21
+254115,0,0,0,21
+254116,0,0,0,21
+254117,0,0,0,21
+254118,0,0,0,21
+254119,0,0,0,21
+254120,0,0,0,21
+254121,0,0,0,21
+254122,0,0,0,21
+254123,0,0,0,21
+254124,0,0,0,21
+254125,0,0,0,21
+254126,0,0,0,21
+254127,0,0,0,21
+254128,0,0,0,21
+254129,0,0,0,21
+254130,0,0,0,21
+254131,0,0,0,21
+254132,0,0,0,21
+254133,0,0,0,21
+254134,0,0,0,21
+254135,0,0,0,21
+254136,0,0,0,21
+254137,0,0,0,21
+254138,0,0,0,21
+254139,0,0,0,21
+254140,0,0,0,21
+254141,0,0,0,21
+254142,0,0,0,21
+254143,0,0,0,21
+254144,0,0,0,21
+254145,0,0,0,21
+254146,0,0,0,21
+254147,0,0,0,21
+254148,0,0,0,21
+254149,0,0,0,21
+254150,0,0,0,21
+254151,0,0,0,21
+254152,0,0,0,21
+254153,0,0,0,21
+254154,0,0,0,21
+254155,0,0,0,21
+254156,0,0,0,21
+254157,0,0,0,21
+254158,0,0,0,21
+254159,0,0,0,21
+254160,0,0,0,21
+254161,0,0,0,21
+254162,0,0,0,21
+254163,0,0,0,21
+254164,0,0,0,21
+254165,0,0,0,21
+254166,0,0,0,21
+254167,0,0,0,21
+254168,0,0,0,21
+254169,0,0,0,21
+254170,0,0,0,21
+254171,0,0,0,21
+254172,0,0,0,21
+254173,0,0,0,21
+254174,0,0,0,21
+254175,0,0,0,21
+254176,0,0,0,21
+254177,0,0,0,21
+254178,0,0,0,21
+254179,0,0,0,21
+254180,0,0,0,21
+254181,0,0,0,21
+254182,0,0,0,21
+254183,0,0,0,21
+254184,0,0,0,21
+254185,0,0,0,21
+254186,0,0,0,21
+254187,0,0,0,21
+254188,0,0,0,21
+254189,0,0,0,21
+254190,0,0,0,21
+254191,0,0,0,21
+254192,0,0,0,21
+254193,0,0,0,21
+254194,0,0,0,21
+254195,0,0,0,21
+254196,0,0,0,21
+254197,0,0,0,21
+254198,0,0,0,21
+254199,0,0,0,21
+254200,0,0,0,21
+254201,0,0,0,21
+254202,0,0,0,21
+254203,0,0,0,21
+254204,0,0,0,21
+254205,0,0,0,21
+254206,0,0,0,21
+254207,0,0,0,21
+254208,0,0,0,21
+254209,0,0,0,21
+254210,0,0,0,21
+254211,0,0,0,21
+254212,0,0,0,21
+254213,0,0,0,21
+254214,0,0,0,21
+254215,0,0,0,21
+254216,0,0,0,21
+254217,0,0,0,21
+254218,0,0,0,21
+254219,0,0,0,21
+254220,0,0,0,21
+254221,0,0,0,21
+254222,0,0,0,21
+254223,0,0,0,21
+254224,0,0,0,21
+254225,0,0,0,21
+254226,0,0,0,21
+254227,0,0,0,21
+254228,0,0,0,21
+254229,0,0,0,21
+254230,0,0,0,21
+254231,0,0,0,21
+254232,0,0,0,21
+254233,0,0,0,21
+254234,0,0,0,21
+254235,0,0,0,21
+254236,0,0,0,21
+254237,0,0,0,21
+254238,0,0,0,21
+254239,0,0,0,21
+254240,0,0,0,21
+254241,0,0,0,21
+254242,0,0,0,21
+254243,0,0,0,21
+254244,0,0,0,21
+254245,0,0,0,21
+254246,0,0,0,21
+254247,0,0,0,21
+254248,0,0,0,21
+254249,0,0,0,21
+254250,0,0,0,21
+254251,0,0,0,21
+254252,0,0,0,21
+254253,0,0,0,21
+254254,0,0,0,21
+254255,0,0,0,21
+254256,0,0,0,21
+254257,0,0,0,21
+254258,0,0,0,21
+254259,0,0,0,21
+254260,0,0,0,21
+254261,0,0,0,21
+254262,0,0,0,21
+254263,0,0,0,21
+254264,0,0,0,21
+254265,0,0,0,21
+254266,0,0,0,21
+254267,0,0,0,21
+254268,0,0,0,21
+254269,0,0,0,21
+254270,0,0,0,21
+254271,0,0,0,21
+254272,0,0,0,21
+254273,0,0,0,21
+254274,0,0,0,21
+254275,0,0,0,21
+254276,0,0,0,21
+254277,0,0,0,21
+254278,0,0,0,21
+254279,0,0,0,21
+254280,0,0,0,21
+254281,0,0,0,21
+254282,0,0,0,21
+254283,0,0,0,21
+254284,0,0,0,21
+254285,0,0,0,21
+254286,0,0,0,21
+254287,0,0,0,21
+254288,0,0,0,21
+254289,0,0,0,21
+254290,0,0,0,21
+254291,0,0,0,21
+254292,0,0,0,21
+254293,0,0,0,21
+254294,0,0,0,21
+254295,0,0,0,21
+254296,0,0,0,21
+254297,0,0,0,21
+254298,0,0,0,21
+254299,0,0,0,21
+254300,0,0,0,21
+254301,0,0,0,21
+254302,0,0,0,21
+254303,0,0,0,21
+254304,0,0,0,21
+254305,0,0,0,21
+254306,0,0,0,21
+254307,0,0,0,21
+254308,0,0,0,21
+254309,0,0,0,21
+254310,0,0,0,21
+254311,0,0,0,21
+254312,0,0,0,21
+254313,0,0,0,21
+254314,0,0,0,21
+254315,0,0,0,21
+254316,0,0,0,21
+254317,0,0,0,21
+254318,0,0,0,21
+254319,0,0,0,21
+254320,0,0,0,21
+254321,0,0,0,21
+254322,0,0,0,21
+254323,0,0,0,21
+254324,0,0,0,21
+254325,0,0,0,21
+254326,0,0,0,21
+254327,0,0,0,21
+254328,0,0,0,21
+254329,0,0,0,21
+254330,0,0,0,21
+254331,0,0,0,21
+254332,0,0,0,21
+254333,0,0,0,21
+254334,0,0,0,21
+254335,0,0,0,21
+254336,0,0,0,21
+254337,0,0,0,21
+254338,0,0,0,21
+254339,0,0,0,21
+254340,0,0,0,21
+254341,0,0,0,21
+254342,0,0,0,21
+254343,0,0,0,21
+254344,0,0,0,21
+254345,0,0,0,21
+254346,0,0,0,21
+254347,0,0,0,21
+254348,0,0,0,21
+254349,0,0,0,21
+254350,0,0,0,21
+254351,0,0,0,21
+254352,0,0,0,21
+254353,0,0,0,21
+254354,0,0,0,21
+254355,0,0,0,21
+254356,0,0,0,21
+254357,0,0,0,21
+254358,0,0,0,21
+254359,0,0,0,21
+254360,0,0,0,21
+254361,0,0,0,21
+254362,0,0,0,21
+254363,0,0,0,21
+254364,0,0,0,21
+254365,0,0,0,21
+254366,0,0,0,21
+254367,0,0,0,21
+254368,0,0,0,21
+254369,0,0,0,21
+254370,0,0,0,21
+254371,0,0,0,21
+254372,0,0,0,21
+254373,0,0,0,21
+254374,0,0,0,21
+254375,0,0,0,21
+254376,0,0,0,21
+254377,0,0,0,21
+254378,0,0,0,21
+254379,0,0,0,21
+254380,0,0,0,21
+254381,0,0,0,21
+254382,0,0,0,21
+254383,0,0,0,21
+254384,0,0,0,21
+254385,0,0,0,21
+254386,0,0,0,21
+254387,0,0,0,21
+254388,0,0,0,21
+254389,0,0,0,21
+254390,0,0,0,21
+254391,0,0,0,21
+254392,0,0,0,21
+254393,0,0,0,21
+254394,0,0,0,21
+254395,0,0,0,21
+254396,0,0,0,21
+254397,0,0,0,21
+254398,0,0,0,21
+254399,0,0,0,21
+254400,0,0,0,21
+254401,0,0,0,21
+254402,0,0,0,21
+254403,0,0,0,21
+254404,0,0,0,21
+254405,0,0,0,21
+254406,0,0,0,21
+254407,0,0,0,21
+254408,0,0,0,21
+254409,0,0,0,21
+254410,0,0,0,21
+254411,0,0,0,21
+254412,0,0,0,21
+254413,0,0,0,21
+254414,0,0,0,21
+254415,0,0,0,21
+254416,0,0,0,21
+254417,0,0,0,21
+254418,0,0,0,21
+254419,0,0,0,21
+254420,0,0,0,21
+254421,0,0,0,21
+254422,0,0,0,21
+254423,0,0,0,21
+254424,0,0,0,21
+254425,0,0,0,21
+254426,0,0,0,21
+254427,0,0,0,21
+254428,0,0,0,21
+254429,0,0,0,21
+254430,0,0,0,21
+254431,0,0,0,21
+254432,0,0,0,21
+254433,0,0,0,21
+254434,0,0,0,21
+254435,0,0,0,21
+254436,0,0,0,21
+254437,0,0,0,21
+254438,0,0,0,21
+254439,0,0,0,21
+254440,0,0,0,21
+254441,0,0,0,21
+254442,0,0,0,21
+254443,0,0,0,21
+254444,0,0,0,21
+254445,0,0,0,21
+254446,0,0,0,21
+254447,0,0,0,21
+254448,0,0,0,21
+254449,0,0,0,21
+254450,0,0,0,21
+254451,0,0,0,21
+254452,0,0,0,21
+254453,0,0,0,21
+254454,0,0,0,21
+254455,0,0,0,21
+254456,0,0,0,21
+254457,0,0,0,21
+254458,0,0,0,21
+254459,0,0,0,21
+254460,0,0,0,21
+254461,0,0,0,21
+254462,0,0,0,21
+254463,0,0,0,21
+254464,0,0,0,21
+254465,0,0,0,21
+254466,0,0,0,21
+254467,0,0,0,21
+254468,0,0,0,21
+254469,0,0,0,21
+254470,0,0,0,21
+254471,0,0,0,21
+254472,0,0,0,21
+254473,0,0,0,21
+254474,0,0,0,21
+254475,0,0,0,21
+254476,0,0,0,21
+254477,0,0,0,21
+254478,0,0,0,21
+254479,0,0,0,21
+254480,0,0,0,21
+254481,0,0,0,21
+254482,0,0,0,21
+254483,0,0,0,21
+254484,0,0,0,21
+254485,0,0,0,21
+254486,0,0,0,21
+254487,0,0,0,21
+254488,0,0,0,21
+254489,0,0,0,21
+254490,0,0,0,21
+254491,0,0,0,21
+254492,0,0,0,21
+254493,0,0,0,21
+254494,0,0,0,21
+254495,0,0,0,21
+254496,0,0,0,21
+254497,0,0,0,21
+254498,0,0,0,21
+254499,0,0,0,21
+254500,0,0,0,21
+254501,0,0,0,21
+254502,0,0,0,21
+254503,0,0,0,21
+254504,0,0,0,21
+254505,0,0,0,21
+254506,0,0,0,21
+254507,0,0,0,21
+254508,0,0,0,21
+254509,0,0,0,21
+254510,0,0,0,21
+254511,0,0,0,21
+254512,0,0,0,21
+254513,0,0,0,21
+254514,0,0,0,21
+254515,0,0,0,21
+254516,0,0,0,21
+254517,0,0,0,21
+254518,0,0,0,21
+254519,0,0,0,21
+254520,0,0,0,21
+254521,0,0,0,21
+254522,0,0,0,21
+254523,0,0,0,21
+254524,0,0,0,21
+254525,0,0,0,21
+254526,0,0,0,21
+254527,0,0,0,21
+254528,0,0,0,21
+254529,0,0,0,21
+254530,0,0,0,21
+254531,0,0,0,21
+254532,0,0,0,21
+254533,0,0,0,21
+254534,0,0,0,21
+254535,0,0,0,21
+254536,0,0,0,21
+254537,0,0,0,21
+254538,0,0,0,21
+254539,0,0,0,21
+254540,0,0,0,21
+254541,0,0,0,21
+254542,0,0,0,21
+254543,0,0,0,21
+254544,0,0,0,21
+254545,0,0,0,21
+254546,0,0,0,21
+254547,0,0,0,21
+254548,0,0,0,21
+254549,0,0,0,21
+254550,0,0,0,21
+254551,0,0,0,21
+254552,0,0,0,21
+254553,0,0,0,21
+254554,0,0,0,21
+254555,0,0,0,21
+254556,0,0,0,21
+254557,0,0,0,21
+254558,0,0,0,21
+254559,0,0,0,21
+254560,0,0,0,21
+254561,0,0,0,21
+254562,0,0,0,21
+254563,0,0,0,21
+254564,0,0,0,21
+254565,0,0,0,21
+254566,0,0,0,21
+254567,0,0,0,21
+254568,0,0,0,21
+254569,0,0,0,21
+254570,0,0,0,21
+254571,0,0,0,21
+254572,0,0,0,21
+254573,0,0,0,21
+254574,0,0,0,21
+254575,0,0,0,21
+254576,0,0,0,21
+254577,0,0,0,21
+254578,0,0,0,21
+254579,0,0,0,21
+254580,0,0,0,21
+254581,0,0,0,21
+254582,0,0,0,21
+254583,0,0,0,21
+254584,0,1199.906739,0,21
+254585,0,1036.58541,0,21
+254586,0,1199.906772,0,21
+254587,0,1361.709797,0,21
+254588,0,1522.150895,0,21
+254589,0,1681.353788,0,21
+254590,0,1681.353855,0,21
+254591,0,1996.430482,0,21
+254592,0,1996.430564,0,21
+254593,0,2307.562969,0,21
+254594,0,2152.458547,0,21
+254595,0,2615.205586,0,21
+254596,0,2461.797078,0,21
+254597,0,2615.2058,0,21
+254598,0,2919.705145,0,21
+254599,0,2919.705254,0,21
+254600,0,3070.86433,0,21
+254601,0,3070.864485,0,21
+254602,0,3371.146625,0,21
+254603,0,3371.146765,0,21
+254604,0,3520.320466,0,21
+254605,0,3668.879168,0,21
+254606,0,3668.879471,0,21
+254607,0,3964.231111,0,21
+254608,0,3964.231314,0,21
+254609,0,4111.060257,0,21
+254610,0,4111.06047,0,21
+254611,0,4403.117107,0,21
+254612,0,4403.120497,0,21
+254613,0,4548.365821,0,21
+254614,0,4548.366636,0,21
+254615,0,4837.365389,0,21
+254616,0,4837.366024,0,21
+254617,0,4981.143886,0,21
+254618,0,5124.45022,0,21
+254619,0,5409.717853,0,21
+254620,0,5409.719716,0,21
+254621,0,5551.690834,0,21
+254622,0,5551.69134,0,21
+254623,0,5834.354968,0,21
+254624,0,5834.356092,0,21
+254625,0,5975.065448,0,21
+254626,0,6115.369416,0,21
+254627,0,6159.04031,0,21
+254628,0,6519.643006,0,21
+254629,0,6350.229949,0,21
+254630,0,6658.774114,0,21
+254631,0,6807.38207,0,21
+254632,0,6697.915658,0,21
+254633,0,7113.057854,0,21
+254634,0,6994.355944,0,21
+254635,0,7151.527084,0,21
+254636,0,7445.492123,0,21
+254637,0,7308.197896,0,21
+254638,0,7483.148451,0,21
+254639,0,7747.322011,0,21
+254640,0,7483.149218,0,21
+254641,0,7930.144331,0,21
+254642,0,7793.888376,0,21
+254643,0,8084.508189,0,21
+254644,0,8102.853482,0,21
+254645,0,8373.750856,0,21
+254646,0,8274.869428,0,21
+254647,0,8545.053922,0,21
+254648,0,8563.132351,0,21
+254649,0,8715.743098,0,21
+254650,0,8715.742875,0,21
+254651,0,8867.957677,0,21
+254652,0,9019.783187,0,21
+254653,0,9019.783026,0,21
+254654,0,9055.238232,0,21
+254655,0,9304.59889,0,21
+254656,0,9339.911465,0,21
+254657,0,9339.911374,0,21
+254658,0,9490.535868,0,21
+254659,0,9623.308623,0,21
+254660,0,9658.292405,0,21
+254661,0,9790.715223,0,21
+254662,0,9940.241535,0,21
+254663,0,9957.538429,0,21
+254664,0,9957.537707,0,21
+254665,0,10238.27957,0,21
+254666,0,10255.45875,0,21
+254667,0,10255.45889,0,21
+254668,0,10403.95686,0,21
+254669,0,10552.02441,0,21
+254670,0,10560.48363,0,21
+254671,0,10699.71512,0,21
+254672,0,10716.66972,0,21
+254673,0,10864.06172,0,21
+254674,0,10994.28037,0,21
+254675,0,11011.12987,0,21
+254676,0,11157.87452,0,21
+254677,0,11157.8754,0,21
+254678,0,11304.30244,0,21
+254679,0,11320.99985,0,21
+254680,0,11467.06233,0,21
+254681,0,11596.21456,0,21
+254682,0,11612.81472,0,21
+254683,0,11741.70564,0,21
+254684,0,11774.76387,0,21
+254685,0,11758.25907,0,21
+254686,0,12048.2316,0,21
+254687,0,12064.64627,0,21
+254688,0,12048.23304,0,21
+254689,0,12337.00661,0,21
+254690,0,12097.34169,0,21
+254691,0,12464.62658,0,21
+254692,0,12385.85266,0,21
+254693,0,12608.3229,0,21
+254694,0,12529.66848,0,21
+254695,0,12767.96784,0,21
+254696,0,12673.19362,0,21
+254697,0,12927.19828,0,21
+254698,0,12943.31116,0,21
+254699,0,12943.31198,0,21
+254700,0,13086.0205,0,21
+254701,0,0,0,21
+254702,0,0,0,21
+254703,0,0,0,21
+254704,0,0,0,21
+254705,0,0,893893.9817,21
+254706,329479.7574,365954.6977,0,21
+254707,0,0,0,21
+254708,0,0,0,21
+254709,0,0,0,21
+254710,0,0,0,21
+254711,0,0,0,21
+254712,0,0,0,21
+254713,0,0,0,21
+254714,0,0,0,21
+254715,0,0,0,21
+254716,0,0,0,21
+254717,0,0,0,21
+254718,0,0,0,21
+254719,0,0,0,21
+254720,0,0,0,21
+254721,0,0,0,21
+254722,0,0,0,21
+254723,0,0,0,21
+254724,0,0,0,21
+254725,0,0,0,21
+254726,0,0,0,21
+254727,0,0,0,21
+254728,0,0,0,21
+254729,0,0,0,21
+254730,0,0,0,21
+254731,0,0,0,21
+254732,0,0,0,21
+254733,0,0,0,21
+254734,0,0,0,21
+254735,0,0,0,21
+254736,0,0,0,21
+254737,0,0,0,21
+254738,0,0,0,21
+254739,0,0,873625.6107,21
+254740,0,0,0,21
+254741,329547.1998,367014.0159,0,21
+254742,0,0,0,21
+254743,0,0,0,21
+254744,0,0,0,21
+254745,0,0,0,21
+254746,0,0,0,21
+254747,0,0,0,21
+254748,0,0,0,21
+254749,0,0,0,21
+254750,0,0,0,21
+254751,0,0,0,21
+254752,0,0,0,21
+254753,0,0,0,21
+254754,0,0,0,21
+254755,0,0,0,21
+254756,0,0,0,21
+254757,0,0,0,21
+254758,0,0,0,21
+254759,0,0,0,21
+254760,0,0,0,15.6
+254761,0,0,0,15.6
+254762,0,0,0,15.6
+254763,0,0,0,15.6
+254764,0,0,0,15.6
+254765,0,0,0,15.6
+254766,0,0,0,15.6
+254767,0,0,0,15.6
+254768,0,0,0,15.6
+254769,0,0,0,15.6
+254770,0,0,0,15.6
+254771,0,0,0,15.6
+254772,0,0,0,15.6
+254773,0,0,854862.0646,15.6
+254774,0,0,0,15.6
+254775,0,0,0,15.6
+254776,331514.2247,366521.7291,0,15.6
+254777,0,0,0,15.6
+254778,0,0,0,15.6
+254779,0,0,0,15.6
+254780,0,0,0,15.6
+254781,0,0,0,15.6
+254782,0,0,0,15.6
+254783,0,0,0,15.6
+254784,0,0,0,15.6
+254785,0,0,0,15.6
+254786,0,0,0,15.6
+254787,0,0,0,15.6
+254788,0,0,0,15.6
+254789,0,0,0,15.6
+254790,0,0,0,15.6
+254791,0,0,0,15.6
+254792,0,0,0,15.6
+254793,0,0,0,15.6
+254794,0,0,0,15.6
+254795,0,0,0,15.6
+254796,0,0,0,15.6
+254797,0,0,0,15.6
+254798,0,0,0,15.6
+254799,0,0,0,15.6
+254800,0,0,0,15.6
+254801,0,0,0,15.6
+254802,0,0,0,15.6
+254803,0,0,0,15.6
+254804,0,0,0,15.6
+254805,0,0,0,15.6
+254806,0,0,0,15.6
+254807,0,0,837760.8295,15.6
+254808,0,0,0,15.6
+254809,0,0,0,15.6
+254810,0,0,0,15.6
+254811,332369.8675,366597.508,0,15.6
+254812,0,0,0,15.6
+254813,0,0,0,15.6
+254814,0,0,0,15.6
+254815,0,0,0,15.6
+254816,0,0,0,15.6
+254817,0,0,0,15.6
+254818,0,0,0,15.6
+254819,0,0,0,15.6
+254820,0,0,0,15.6
+254821,0,0,0,15.6
+254822,0,0,0,15.6
+254823,0,0,0,15.6
+254824,0,0,0,15.6
+254825,0,0,0,15.6
+254826,0,0,0,15.6
+254827,0,0,0,15.6
+254828,0,0,0,15.6
+254829,0,0,0,15.6
+254830,0,0,0,15.6
+254831,0,0,0,15.6
+254832,0,0,0,15.6
+254833,0,0,0,15.6
+254834,0,0,0,15.6
+254835,0,0,0,15.6
+254836,0,0,0,15.6
+254837,0,0,0,15.6
+254838,0,0,0,15.6
+254839,0,0,0,15.6
+254840,0,0,0,15.6
+254841,0,0,0,15.6
+254842,0,0,821710.9087,15.6
+254843,0,0,0,15.6
+254844,0,0,0,15.6
+254845,0,0,0,15.6
+254846,0,365797.873,0,15.6
+254847,333369.7706,0,0,15.6
+254848,0,0,0,15.6
+254849,0,0,0,15.6
+254850,0,0,0,15.6
+254851,0,0,0,15.6
+254852,0,0,0,15.6
+254853,0,0,0,15.6
+254854,0,0,0,15.6
+254855,0,0,0,15.6
+254856,0,0,0,15.6
+254857,0,0,0,15.6
+254858,0,0,0,15.6
+254859,0,0,0,15.6
+254860,0,0,0,15.6
+254861,0,0,0,15.6
+254862,0,0,0,15.6
+254863,0,0,0,15.6
+254864,0,0,0,15.6
+254865,0,0,0,15.6
+254866,0,0,0,15.6
+254867,0,0,0,15.6
+254868,0,0,0,15.6
+254869,0,0,0,15.6
+254870,0,0,0,15.6
+254871,0,0,0,15.6
+254872,0,0,0,15.6
+254873,0,0,0,15.6
+254874,0,0,0,15.6
+254875,0,0,0,15.6
+254876,0,0,0,15.6
+254877,0,0,807584.2222,15.6
+254878,0,0,0,15.6
+254879,0,0,0,15.6
+254880,0,0,0,15.6
+254881,0,366555.057,0,15.6
+254882,0,0,0,15.6
+254883,334958.5403,0,0,15.6
+254884,0,0,0,15.6
+254885,0,0,0,15.6
+254886,0,0,0,15.6
+254887,0,0,0,15.6
+254888,0,0,0,15.6
+254889,0,0,0,15.6
+254890,0,0,0,15.6
+254891,0,0,0,15.6
+254892,0,0,0,15.6
+254893,0,0,0,15.6
+254894,0,0,0,15.6
+254895,0,0,0,15.6
+254896,0,0,0,15.6
+254897,0,0,0,15.6
+254898,0,0,0,15.6
+254899,0,0,0,15.6
+254900,0,0,0,15.6
+254901,0,0,0,15.6
+254902,0,0,0,15.6
+254903,0,0,0,15.6
+254904,0,0,0,15.6
+254905,0,0,0,15.6
+254906,0,0,0,15.6
+254907,0,0,0,15.6
+254908,0,0,0,15.6
+254909,0,0,0,15.6
+254910,0,0,0,15.6
+254911,0,0,0,15.6
+254912,0,0,793826.6944,15.6
+254913,0,0,0,15.6
+254914,0,0,0,15.6
+254915,0,0,0,15.6
+254916,0,367300.1992,0,15.6
+254917,0,0,0,15.6
+254918,0,0,0,15.6
+254919,335987.6588,0,0,15.6
+254920,0,0,0,15.6
+254921,0,0,0,15.6
+254922,0,0,0,15.6
+254923,0,0,0,15.6
+254924,0,0,0,15.6
+254925,0,0,0,15.6
+254926,0,0,0,15.6
+254927,0,0,0,15.6
+254928,0,0,0,15.6
+254929,0,0,0,15.6
+254930,0,0,0,15.6
+254931,0,0,0,15.6
+254932,0,0,0,15.6
+254933,0,0,0,15.6
+254934,0,0,0,15.6
+254935,0,0,0,15.6
+254936,0,0,0,15.6
+254937,0,0,0,15.6
+254938,0,0,0,15.6
+254939,0,0,0,15.6
+254940,0,0,0,15.6
+254941,0,0,0,15.6
+254942,0,0,0,15.6
+254943,0,0,0,15.6
+254944,0,0,0,15.6
+254945,0,0,0,15.6
+254946,0,0,0,15.6
+254947,0,0,781713.4641,15.6
+254948,0,0,0,15.6
+254949,0,0,0,15.6
+254950,0,0,0,15.6
+254951,0,367648.632,0,15.6
+254952,0,0,0,15.6
+254953,0,0,0,15.6
+254954,0,0,0,15.6
+254955,336650.7293,0,0,15.6
+254956,0,0,0,15.6
+254957,0,0,0,15.6
+254958,0,0,0,15.6
+254959,0,0,0,15.6
+254960,0,0,0,15.6
+254961,0,0,0,15.6
+254962,0,0,0,15.6
+254963,0,0,0,15.6
+254964,0,0,0,15.6
+254965,0,0,0,15.6
+254966,0,0,0,15.6
+254967,0,0,0,15.6
+254968,0,0,0,15.6
+254969,0,0,0,15.6
+254970,0,0,0,15.6
+254971,0,0,0,15.6
+254972,0,0,0,15.6
+254973,0,0,0,15.6
+254974,0,0,0,15.6
+254975,0,0,0,15.6
+254976,0,0,0,15.6
+254977,0,0,0,15.6
+254978,0,0,0,15.6
+254979,0,0,0,15.6
+254980,0,0,0,15.6
+254981,0,0,0,15.6
+254982,0,0,771186.9075,15.6
+254983,0,0,0,15.6
+254984,0,0,0,15.6
+254985,0,0,0,15.6
+254986,0,367833.9634,0,15.6
+254987,0,0,0,15.6
+254988,0,0,0,15.6
+254989,0,0,0,15.6
+254990,0,0,0,15.6
+254991,334757.065,0,0,15.6
+254992,0,0,0,15.6
+254993,0,0,0,15.6
+254994,0,0,0,15.6
+254995,0,0,0,15.6
+254996,0,0,0,15.6
+254997,0,0,0,15.6
+254998,0,0,0,15.6
+254999,0,0,0,15.6
+255000,0,0,0,15.6
+255001,0,0,0,15.6
+255002,0,0,0,15.6
+255003,0,0,0,15.6
+255004,0,0,0,15.6
+255005,0,0,0,15.6
+255006,0,0,0,15.6
+255007,0,0,0,15.6
+255008,0,0,0,15.6
+255009,0,0,0,15.6
+255010,0,0,0,15.6
+255011,0,0,0,15.6
+255012,0,0,0,15.6
+255013,0,0,0,15.6
+255014,0,0,0,15.6
+255015,0,0,0,15.6
+255016,0,0,0,15.6
+255017,0,0,761908.6733,15.6
+255018,0,0,0,15.6
+255019,0,0,0,15.6
+255020,0,0,0,15.6
+255021,0,0,0,15.6
+255022,0,367913.6553,0,15.6
+255023,0,0,0,15.6
+255024,0,0,0,15.6
+255025,0,0,0,15.6
+255026,0,0,0,15.6
+255027,336249.5683,0,0,15.6
+255028,0,0,0,15.6
+255029,0,0,0,15.6
+255030,0,0,0,15.6
+255031,0,0,0,15.6
+255032,0,0,0,15.6
+255033,0,0,0,15.6
+255034,0,0,0,15.6
+255035,0,0,0,15.6
+255036,0,0,0,15.6
+255037,0,0,0,15.6
+255038,0,0,0,15.6
+255039,0,0,0,15.6
+255040,0,0,0,15.6
+255041,0,0,0,15.6
+255042,0,0,0,15.6
+255043,0,0,0,15.6
+255044,0,0,0,15.6
+255045,0,0,0,15.6
+255046,0,0,0,15.6
+255047,0,0,0,15.6
+255048,0,0,0,15.6
+255049,0,0,0,15.6
+255050,0,0,0,15.6
+255051,0,0,753244.5333,15.6
+255052,0,0,0,15.6
+255053,0,0,0,15.6
+255054,0,0,0,15.6
+255055,0,0,0,15.6
+255056,0,0,0,15.6
+255057,0,0,0,15.6
+255058,0,365176.8239,0,15.6
+255059,0,0,0,15.6
+255060,0,0,0,15.6
+255061,0,0,0,15.6
+255062,0,0,0,15.6
+255063,337228.5336,0,0,15.6
+255064,0,0,0,15.6
+255065,0,0,0,15.6
+255066,0,0,0,15.6
+255067,0,0,0,15.6
+255068,0,0,0,15.6
+255069,0,0,0,15.6
+255070,0,0,0,15.6
+255071,0,0,0,15.6
+255072,0,0,0,15.6
+255073,0,0,0,15.6
+255074,0,0,0,15.6
+255075,0,0,0,15.6
+255076,0,0,0,15.6
+255077,0,0,0,15.6
+255078,0,0,0,15.6
+255079,0,0,0,15.6
+255080,0,0,0,15.6
+255081,0,0,0,15.6
+255082,0,0,0,15.6
+255083,0,0,0,15.6
+255084,0,0,0,15.6
+255085,0,0,745554.7086,15.6
+255086,0,0,0,15.6
+255087,0,0,0,15.6
+255088,0,0,0,15.6
+255089,0,0,0,15.6
+255090,0,0,0,15.6
+255091,0,0,0,15.6
+255092,0,0,0,15.6
+255093,0,0,0,15.6
+255094,0,365662.8198,0,15.6
+255095,0,0,0,15.6
+255096,0,0,0,15.6
+255097,335462.6975,0,0,15.6
+255098,0,0,0,15.6
+255099,0,0,0,15.6
+255100,0,0,0,15.6
+255101,0,0,0,15.6
+255102,0,0,0,15.6
+255103,0,0,0,15.6
+255104,0,0,0,15.6
+255105,0,0,0,15.6
+255106,0,0,0,15.6
+255107,0,0,0,15.6
+255108,0,0,0,15.6
+255109,0,0,0,15.6
+255110,0,0,0,15.6
+255111,0,0,0,15.6
+255112,0,0,0,15.6
+255113,0,0,0,15.6
+255114,0,0,0,15.6
+255115,0,0,0,15.6
+255116,0,0,0,15.6
+255117,0,0,0,15.6
+255118,0,0,0,15.6
+255119,0,0,738570.8721,15.6
+255120,0,0,0,17.8
+255121,0,0,0,17.8
+255122,0,0,0,17.8
+255123,0,0,0,17.8
+255124,0,0,0,17.8
+255125,0,0,0,17.8
+255126,0,0,0,17.8
+255127,0,0,0,17.8
+255128,0,367364.4364,0,17.8
+255129,0,0,0,17.8
+255130,0,0,0,17.8
+255131,336444.681,0,0,17.8
+255132,0,0,0,17.8
+255133,0,0,0,17.8
+255134,0,0,0,17.8
+255135,0,0,0,17.8
+255136,0,0,0,17.8
+255137,0,0,0,17.8
+255138,0,0,0,17.8
+255139,0,0,0,17.8
+255140,0,0,0,17.8
+255141,0,0,0,17.8
+255142,0,0,0,17.8
+255143,0,0,0,17.8
+255144,0,0,0,17.8
+255145,0,0,0,17.8
+255146,0,0,0,17.8
+255147,0,0,0,17.8
+255148,0,0,0,17.8
+255149,0,0,0,17.8
+255150,0,0,0,17.8
+255151,0,0,0,17.8
+255152,0,0,0,17.8
+255153,0,0,730351.5538,17.8
+255154,0,0,0,17.8
+255155,0,0,0,17.8
+255156,0,0,0,17.8
+255157,0,0,0,17.8
+255158,0,0,0,17.8
+255159,0,0,0,17.8
+255160,0,0,0,17.8
+255161,0,0,0,17.8
+255162,0,367740.3897,0,17.8
+255163,0,0,0,17.8
+255164,0,0,0,17.8
+255165,337534.8904,0,0,17.8
+255166,0,0,0,17.8
+255167,0,0,0,17.8
+255168,0,0,0,17.8
+255169,0,0,0,17.8
+255170,0,0,0,17.8
+255171,0,0,0,17.8
+255172,0,0,0,17.8
+255173,0,0,0,17.8
+255174,0,0,0,17.8
+255175,0,0,0,17.8
+255176,0,0,0,17.8
+255177,0,0,0,17.8
+255178,0,0,0,17.8
+255179,0,0,0,17.8
+255180,0,0,0,20
+255181,0,441888.7862,0,20
+255182,0,0,0,20
+255183,0,1423.896136,0,20
+255184,0,6808.490927,0,20
+255185,0,95802.53419,0,20
+255186,0,58448.77707,0,20
+255187,0,56815.35926,0,20
+255188,0,62105.0842,0,20
+255189,0,62536.75512,0,20
+255190,815.557868,62789.20062,0,20
+255191,1772.52108,65713.73821,0,20
+255192,1164.363906,65400.87249,0,20
+255193,1367.367341,65856.87888,0,20
+255194,1411.57239,67574.81437,0,20
+255195,1404.064774,67532.08503,0,20
+255196,1425.634784,68643.18247,0,20
+255197,1439.663504,68572.40681,0,20
+255198,1467.621985,69924.43261,0,20
+255199,1453.658784,70276.58956,0,20
+255200,1482.598523,70632.67407,0,20
+255201,1487.941527,71175.28572,0,20
+255202,1481.551397,72102.7878,0,20
+255203,1510.426229,72291.63203,0,20
+255204,1494.286898,73009.12284,0,20
+255205,1538.126473,73558.75043,0,20
+255206,1501.806819,73712.05774,0,20
+255207,1536.95255,74678.32677,0,20
+255208,1523.149362,74962.15885,0,20
+255209,1535.69666,75448.11385,0,20
+255210,1536.952544,75890.38162,218.6246361,20
+255211,1549.438323,76454.62968,137.7866998,20
+255212,1535.696662,76743.20853,186.5784637,20
+255213,1549.438327,76966.07915,210.6478171,20
+255214,1534.358022,77586.4286,137.788494,20
+255215,1548.069397,77687.57104,104.6762997,20
+255216,1526.797951,77951.24803,104.6765666,20
+255217,1532.935768,78457.15183,70.95422433,20
+255218,1546.617132,78486.9143,79.45247518,20
+255219,1532.935767,78900.63835,53.79552983,20
+255220,1516.184874,79099.56341,53.79560821,20
+255221,1531.428946,79199.0565,36.36983607,20
+255222,1529.836518,79811.56009,18.56693437,20
+255223,1516.184876,79210.54532,18.56694242,20
+255224,1514.535166,80445.02356,0,20
+255225,1514.535165,80075.13246,0,20
+255226,1499.175036,80153.51111,135.61528,20
+255227,1499.175039,80528.53939,103.0122397,20
+255228,1483.754519,80804.48159,135.6160738,20
+255229,1497.376718,80875.92215,135.616523,20
+255230,1468.271924,80910.97226,167.7551091,20
+255231,1481.893697,81133.24659,175.7273095,20
+255232,1452.725359,80997.4945,199.5067745,20
+255233,1464.328045,81746.87355,199.5077588,20
+255234,1437.112821,81350.81759,230.9239193,20
+255235,1435.054383,81708.41423,230.9253178,20
+255236,1435.05437,81857.05116,246.521147,20
+255237,1419.303231,81619.90017,262.0470459,20
+255238,1403.479056,81690.51328,277.5065916,20
+255239,1403.479041,82269.96425,292.9027183,20
+255240,1387.578968,81954.05096,292.9047711,21
+255241,1071.974273,75589.86651,135.6254132,21
+255242,1009.722145,74738.16507,103.01984,21
+255243,978.2778381,74530.79929,119.3876331,21
+255244,974.6747883,74447.90291,103.0203918,21
+255245,928.6921842,74369.109,127.5228492,21
+255246,910.4709763,74028.46821,119.3886705,21
+255247,891.7838579,74027.69217,119.3890181,21
+255248,868.0699068,73926.19829,135.6281682,21
+255249,843.9254837,73754.17238,135.6286189,21
+255250,858.056451,73873.72421,127.5248213,21
+255251,843.9254857,73498.53152,135.6294932,21
+255252,815.558381,73348.63325,151.7532567,21
+255253,843.9254479,73462.9598,135.6304457,21
+255254,815.5583218,73121.28085,151.7543154,21
+255255,815.5579989,73333.30029,143.7068949,21
+255256,801.3209549,72839.83325,151.7553963,21
+255257,815.5580104,72955.14806,151.7559811,21
+255258,772.7378333,72589.71651,151.7565453,21
+255259,801.3211511,72582.82072,151.7571124,21
+255260,772.7381403,72573.45863,167.7762289,21
+255261,772.7377264,72105.50799,151.758284,21
+255262,758.3905783,72255.66299,151.7588634,21
+255263,758.3906396,72034.30584,167.7781977,21
+255264,758.3906884,71864.94219,159.7820328,21
+255265,729.5823307,71770.17405,159.7826631,21
+255266,744.005706,71378.81458,167.7802088,21
+255267,715.1201318,71473.20848,151.7618666,21
+255268,729.5823746,71258.48872,167.7815116,21
+255269,700.6184474,71179.07227,151.7630396,21
+255270,700.6184563,70674.80388,167.7828497,21
+255271,700.6184563,71289.00092,151.7642435,21
+255272,671.4941875,70764.75037,167.7841528,21
+255273,686.0766818,70971.8314,151.7654164,21
+255274,671.4941868,71102.65123,167.7854914,21
+255275,656.8703212,71074.39667,151.7666219,21
+255276,642.2043794,71119.281,151.7671668,21
+255277,642.2043765,71204.51506,151.7677344,21
+255278,627.4956323,71153.61423,151.7683139,21
+255279,627.4956351,71540.92387,151.7688835,21
+255280,612.7433385,71255.03056,151.7694263,21
+255281,597.9466818,71438.64651,135.6448349,21
+255282,597.9466832,71582.67391,151.7705146,21
+255283,583.1048462,71700.23386,135.6457908,21
+255284,583.1048402,71617.07346,143.7226686,21
+255285,568.2169415,71730.6616,135.6466885,21
+255286,568.2169397,72004.24314,135.6471535,21
+255287,538.2991958,71784.8837,119.406383,21
+255288,553.2820474,72246.04427,135.6480156,21
+255289,523.2676547,71993.83725,119.4071398,21
+255290,508.1855051,72441.46609,119.4074754,21
+255291,523.267366,72171.19668,119.4078257,21
+255292,493.0523176,72378.35177,103.0376984,21
+255293,493.0523123,72698.72545,119.4084457,21
+255294,477.8667269,72613.52885,103.0382412,21
+255295,462.6273963,72671.57379,94.79962129,21
+255296,462.6274017,72862.2634,103.0387499,21
+255297,447.3329395,72906.18749,86.52196752,21
+255298,447.3329355,73127.91618,78.20168552,21
+255299,416.5726145,73082.70637,69.83519323,21
+255300,431.9818742,73366.19493,69.83530681,21
+255301,0,26066.35387,0,21
+255302,0,23776.79379,0,21
+255303,0,22803.95062,0,21
+255304,0,22731.61499,0,21
+255305,0,22123.61017,0,21
+255306,0,21376.03059,0,21
+255307,0,21568.12686,0,21
+255308,0,20727.45603,0,21
+255309,0,20438.10147,0,21
+255310,0,20438.1038,0,21
+255311,0,19690.36247,0,21
+255312,0,19513.27838,0,21
+255313,0,19159.47122,0,21
+255314,0,18986.25642,0,21
+255315,0,18616.60711,0,21
+255316,0,18241.86133,0,21
+255317,0,18051.97621,0,21
+255318,0,17731.9877,0,21
+255319,0,17262.75862,0,21
+255320,0,17422.29251,0,21
+255321,0,16520.45186,0,21
+255322,0,16384.53119,0,21
+255323,0,16107.94694,0,21
+255324,0,15942.3688,0,21
+255325,0,15345.29363,0,21
+255326,0,15512.33093,0,21
+255327,0,14949.63492,0,21
+255328,0,14842.4318,0,21
+255329,0,14607.6699,0,21
+255330,0,14367.6185,0,21
+255331,0,13800.40065,0,21
+255332,0,13517.33235,0,21
+255333,0,13101.6342,0,21
+255334,0,12192.01448,0,21
+255335,0,12135.16573,0,21
+255336,0,11573.27303,0,21
+255337,0,10892.51633,0,21
+255338,0,10608.48018,0,21
+255339,0,9751.681054,0,21
+255340,0,9608.368932,0,21
+255341,0,8613.020741,0,21
+255342,0,8554.749898,0,21
+255343,0,7613.145951,0,21
+255344,0,7545.851213,0,21
+255345,0,6538.228294,0,21
+255346,0,5943.95759,0,21
+255347,0,5867.362786,0,21
+255348,0,4883.517333,0,21
+255349,0,4206.176108,0,21
+255350,0,4145.957216,0,21
+255351,0,3648.672083,0,21
+255352,0,3283.529869,0,21
+255353,0,3187.523747,0,21
+255354,0,2701.088341,0,21
+255355,0,2278.961234,0,21
+255356,0,2225.924309,0,21
+255357,0,1688.626601,0,21
+255358,0,1426.589061,0,21
+255359,0,1019.020268,0,21
+255360,0,936.9846175,0,21
+255361,0,909.873645,0,21
+255362,0,864.0982429,0,21
+255363,0,799.324217,0,21
+255364,0,766.7108181,0,21
+255365,0,706.3179147,0,21
+255366,0,677.5243716,0,21
+255367,0,592.7124679,0,21
+255368,0,573.0494111,0,21
+255369,0,496.9005359,0,21
+255370,0,456.3720868,0,21
+255371,0,417.645362,0,21
+255372,0,357.3227122,0,21
+255373,0,277.2109877,0,21
+255374,0,306.1899753,0,21
+255375,0,218.5437513,0,21
+255376,0,248.0030825,0,21
+255377,0,173.8189248,0,21
+255378,0,158.7484928,0,21
+255379,0,158.7484944,0,21
+255380,0,97.45964862,0,21
+255381,0,66.03393998,0,21
+255382,0,66.03393946,0,21
+255383,0,17.24314531,0,21
+255384,0,0,0,21
+255385,0,0,0,21
+255386,0,0,0,21
+255387,0,0,0,21
+255388,0,0,0,21
+255389,0,0,0,21
+255390,0,0,0,21
+255391,0,0,0,21
+255392,0,0,0,21
+255393,0,0,0,21
+255394,0,0,0,21
+255395,0,0,0,21
+255396,0,0,0,21
+255397,0,0,0,21
+255398,0,0,0,21
+255399,0,0,0,21
+255400,0,0,0,21
+255401,0,0,0,21
+255402,0,0,0,21
+255403,0,0,0,21
+255404,0,0,0,21
+255405,0,0,0,21
+255406,0,0,0,21
+255407,0,0,0,21
+255408,0,0,0,21
+255409,0,0,0,21
+255410,0,0,0,21
+255411,0,0,0,21
+255412,0,0,0,21
+255413,0,0,0,21
+255414,0,0,0,21
+255415,0,0,0,21
+255416,0,0,0,21
+255417,0,0,0,21
+255418,0,0,0,21
+255419,0,0,0,21
+255420,0,0,0,21
+255421,0,0,0,21
+255422,0,0,0,21
+255423,0,0,0,21
+255424,0,0,0,21
+255425,0,0,0,21
+255426,0,0,0,21
+255427,0,0,0,21
+255428,0,0,0,21
+255429,0,0,0,21
+255430,0,0,0,21
+255431,0,0,0,21
+255432,0,0,0,21
+255433,0,0,0,21
+255434,0,0,0,21
+255435,0,0,0,21
+255436,0,0,0,21
+255437,0,0,0,21
+255438,0,0,0,21
+255439,0,0,0,21
+255440,0,0,0,21
+255441,0,185.6626982,0,21
+255442,0,1199.907403,0,21
+255443,0,704.4956612,0,21
+255444,0,1036.585622,0,21
+255445,0,1036.585622,0,21
+255446,0,1361.710953,0,21
+255447,0,1361.710957,0,21
+255448,0,1681.356228,0,21
+255449,0,1522.152625,0,21
+255450,0,1839.422396,0,21
+255451,0,1996.434647,0,21
+255452,0,1839.422394,0,21
+255453,0,1996.434641,0,21
+255454,0,1996.434635,0,21
+255455,0,1996.434647,0,21
+255456,0,1996.434638,0,21
+255457,0,2152.463471,0,21
+255458,0,2152.46347,0,21
+255459,0,1996.43464,0,21
+255460,0,2152.463475,0,21
+255461,0,2307.569222,0,21
+255462,0,1996.434637,0,21
+255463,0,2307.569228,0,21
+255464,0,2152.463468,0,21
+255465,0,2152.463469,0,21
+255466,0,2307.569225,0,21
+255467,0,2152.463461,0,21
+255468,0,2152.463468,0,21
+255469,0,2307.569233,0,21
+255470,0,2152.463463,0,21
+255471,0,2152.463466,0,21
+255472,0,2307.569233,0,21
+255473,0,2152.463463,0,21
+255474,0,2152.463465,0,21
+255475,0,2152.463461,0,21
+255476,0,2307.569223,0,21
+255477,0,1996.434641,0,21
+255478,0,2307.569231,0,21
+255479,0,1996.43464,0,21
+255480,0,2152.463464,0,21
+255481,0,0,0,21
+255482,0,0,0,21
+255483,0,0,0,21
+255484,0,0,0,21
+255485,0,0,0,21
+255486,0,0,0,21
+255487,0,0,0,21
+255488,0,0,0,21
+255489,0,0,0,21
+255490,0,0,0,21
+255491,0,0,0,21
+255492,0,0,0,21
+255493,0,0,0,21
+255494,0,0,0,21
+255495,0,0,0,21
+255496,0,0,0,21
+255497,0,0,0,21
+255498,0,0,0,21
+255499,0,0,0,21
+255500,0,0,0,21
+255501,0,0,0,21
+255502,0,0,0,21
+255503,0,0,0,21
+255504,0,0,0,21
+255505,0,0,0,21
+255506,0,0,0,21
+255507,0,0,0,21
+255508,0,0,0,21
+255509,0,0,0,21
+255510,0,0,0,21
+255511,0,0,0,21
+255512,0,0,0,21
+255513,0,0,0,21
+255514,0,0,0,21
+255515,0,0,0,21
+255516,0,0,0,21
+255517,0,0,0,21
+255518,0,0,0,21
+255519,0,0,0,21
+255520,0,0,0,21
+255521,0,0,0,21
+255522,0,0,0,21
+255523,0,0,0,21
+255524,0,0,0,21
+255525,0,0,0,21
+255526,0,0,0,21
+255527,0,0,0,21
+255528,0,0,0,21
+255529,0,0,0,21
+255530,0,0,0,21
+255531,0,0,0,21
+255532,0,0,0,21
+255533,0,0,0,21
+255534,0,0,0,21
+255535,0,0,0,21
+255536,0,0,0,21
+255537,0,0,0,21
+255538,0,0,0,21
+255539,0,0,0,21
+255540,0,0,0,21
+255541,0,0,0,21
+255542,0,0,0,21
+255543,0,0,0,21
+255544,0,0,0,21
+255545,0,0,0,21
+255546,0,0,0,21
+255547,0,0,0,21
+255548,0,0,0,21
+255549,0,0,0,21
+255550,0,0,0,21
+255551,0,0,0,21
+255552,0,0,0,21
+255553,0,0,0,21
+255554,0,0,0,21
+255555,0,0,0,21
+255556,0,0,0,21
+255557,0,94.67795676,0,21
+255558,0,362.5219285,0,21
+255559,0,185.6626971,0,21
+255560,0,362.5219294,0,21
+255561,0,185.6626969,0,21
+255562,0,362.5219286,0,21
+255563,0,362.5219287,0,21
+255564,0,185.6626976,0,21
+255565,0,362.5219296,0,21
+255566,0,362.521928,0,21
+255567,0,362.5219292,0,21
+255568,0,274.7633592,0,21
+255569,0,362.5219285,0,21
+255570,0,362.5219286,0,21
+255571,0,362.5219284,0,21
+255572,0,274.7633585,0,21
+255573,0,362.5219278,0,21
+255574,0,362.5219277,0,21
+255575,0,362.5219269,0,21
+255576,0,185.662697,0,21
+255577,0,535.0413694,0,21
+255578,0,185.6626976,0,21
+255579,0,362.5219283,0,21
+255580,0,185.6626972,0,21
+255581,0,0,0,21
+255582,0,185.6626971,0,21
+255583,0,0,0,21
+255584,0,185.6626975,0,21
+255585,0,0,0,21
+255586,0,94.67795671,0,21
+255587,0,0,0,21
+255588,0,185.6626972,0,21
+255589,0,0,0,21
+255590,0,185.6626973,0,21
+255591,0,0,0,21
+255592,0,185.6626977,0,21
+255593,0,0,0,21
+255594,0,185.6626975,0,21
+255595,0,0,0,21
+255596,0,185.6626969,0,21
+255597,0,185.6626976,0,21
+255598,0,0,0,21
+255599,0,185.6626967,0,21
+255600,0,185.662697,0,21
+255601,0,0,0,21
+255602,0,0,0,21
+255603,0,0,0,21
+255604,0,0,0,21
+255605,0,0,0,21
+255606,0,0,0,21
+255607,0,0,0,21
+255608,0,0,0,21
+255609,0,0,0,21
+255610,0,0,0,21
+255611,0,0,0,21
+255612,0,0,0,21
+255613,0,0,0,21
+255614,0,0,0,21
+255615,0,0,0,21
+255616,0,0,0,21
+255617,0,0,0,21
+255618,0,0,0,21
+255619,0,0,0,21
+255620,0,0,0,21
+255621,0,0,0,21
+255622,0,0,0,21
+255623,0,0,0,21
+255624,0,0,0,21
+255625,0,0,0,21
+255626,0,0,0,21
+255627,0,0,0,21
+255628,0,0,0,21
+255629,0,0,0,21
+255630,0,0,0,21
+255631,0,0,0,21
+255632,0,0,0,21
+255633,0,0,0,21
+255634,0,0,0,21
+255635,0,0,0,21
+255636,0,0,0,21
+255637,0,0,0,21
+255638,0,0,0,21
+255639,0,0,0,21
+255640,0,0,0,21
+255641,0,0,0,21
+255642,0,0,0,21
+255643,0,0,0,21
+255644,0,0,0,21
+255645,0,0,0,21
+255646,0,0,0,21
+255647,0,0,0,21
+255648,0,0,0,21
+255649,0,0,0,21
+255650,0,0,0,21
+255651,0,0,0,21
+255652,0,0,0,21
+255653,0,0,0,21
+255654,0,0,0,21
+255655,0,0,0,21
+255656,0,0,0,21
+255657,0,0,0,21
+255658,0,0,0,21
+255659,0,0,0,21
+255660,0,0,0,21
+255661,0,0,0,21
+255662,0,0,0,21
+255663,0,0,0,21
+255664,0,0,0,21
+255665,0,0,0,21
+255666,0,0,0,21
+255667,0,0,0,21
+255668,0,0,0,21
+255669,0,0,0,21
+255670,0,0,0,21
+255671,0,0,0,21
+255672,0,0,0,21
+255673,0,0,0,21
+255674,0,0,0,21
+255675,0,0,0,21
+255676,0,0,0,21
+255677,0,0,0,21
+255678,0,0,0,21
+255679,0,0,0,21
+255680,0,0,0,21
+255681,0,0,0,21
+255682,0,0,0,21
+255683,0,0,0,21
+255684,0,0,0,21
+255685,0,0,0,21
+255686,0,0,0,21
+255687,0,0,0,21
+255688,0,0,0,21
+255689,0,0,0,21
+255690,0,0,0,21
+255691,0,0,0,21
+255692,0,0,0,21
+255693,0,0,0,21
+255694,0,0,0,21
+255695,0,0,0,21
+255696,0,0,0,21
+255697,0,0,0,21
+255698,0,0,0,21
+255699,0,0,0,21
+255700,0,0,0,21
+255701,0,0,0,21
+255702,0,0,0,21
+255703,0,0,0,21
+255704,0,0,0,21
+255705,0,0,0,21
+255706,0,0,0,21
+255707,0,0,0,21
+255708,0,0,0,21
+255709,0,0,0,21
+255710,0,0,0,21
+255711,0,0,0,21
+255712,0,0,0,21
+255713,0,0,0,21
+255714,0,0,0,21
+255715,0,0,0,21
+255716,0,0,0,21
+255717,0,0,0,21
+255718,0,0,0,21
+255719,0,0,0,21
+255720,0,0,0,21
+255721,0,0,0,21
+255722,0,0,0,21
+255723,0,0,0,21
+255724,0,0,0,21
+255725,0,0,0,21
+255726,0,0,0,21
+255727,0,0,0,21
+255728,0,0,0,21
+255729,0,0,0,21
+255730,0,0,0,21
+255731,0,0,0,21
+255732,0,0,0,21
+255733,0,0,0,21
+255734,0,0,0,21
+255735,0,0,0,21
+255736,0,0,0,21
+255737,0,0,0,21
+255738,0,0,0,21
+255739,0,0,0,21
+255740,0,0,0,21
+255741,0,0,0,21
+255742,0,0,0,21
+255743,0,0,0,21
+255744,0,0,0,21
+255745,0,0,0,21
+255746,0,0,0,21
+255747,0,0,0,21
+255748,0,0,0,21
+255749,0,0,0,21
+255750,0,0,0,21
+255751,0,0,0,21
+255752,0,0,0,21
+255753,0,0,0,21
+255754,0,0,0,21
+255755,0,0,0,21
+255756,0,0,0,21
+255757,0,0,0,21
+255758,0,0,0,21
+255759,0,0,0,21
+255760,0,0,0,21
+255761,0,0,0,21
+255762,0,0,0,21
+255763,0,0,0,21
+255764,0,0,0,21
+255765,0,0,0,21
+255766,0,0,0,21
+255767,0,0,0,21
+255768,0,0,0,21
+255769,0,0,0,21
+255770,0,0,0,21
+255771,0,0,0,21
+255772,0,0,0,21
+255773,0,0,0,21
+255774,0,0,0,21
+255775,0,0,0,21
+255776,0,0,0,21
+255777,0,0,0,21
+255778,0,0,0,21
+255779,0,0,0,21
+255780,0,0,0,21
+255781,0,0,0,21
+255782,0,0,0,21
+255783,0,0,0,21
+255784,0,0,0,21
+255785,0,0,0,21
+255786,0,0,0,21
+255787,0,0,0,21
+255788,0,0,0,21
+255789,0,0,0,21
+255790,0,0,0,21
+255791,0,0,0,21
+255792,0,0,0,21
+255793,0,0,0,21
+255794,0,0,0,21
+255795,0,0,0,21
+255796,0,0,0,21
+255797,0,0,0,21
+255798,0,0,0,21
+255799,0,0,0,21
+255800,0,0,0,21
+255801,0,0,0,21
+255802,0,0,0,21
+255803,0,0,0,21
+255804,0,0,0,21
+255805,0,0,0,21
+255806,0,0,0,21
+255807,0,0,0,21
+255808,0,0,0,21
+255809,0,0,0,21
+255810,0,0,0,21
+255811,0,0,0,21
+255812,0,0,0,21
+255813,0,0,0,21
+255814,0,0,0,21
+255815,0,0,0,21
+255816,0,0,0,21
+255817,0,0,0,21
+255818,0,0,0,21
+255819,0,0,0,21
+255820,0,0,0,21
+255821,0,0,0,21
+255822,0,0,0,21
+255823,0,0,0,21
+255824,0,0,0,21
+255825,0,0,0,21
+255826,0,0,0,21
+255827,0,0,0,21
+255828,0,0,0,21
+255829,0,0,0,21
+255830,0,0,0,21
+255831,0,0,0,21
+255832,0,0,0,21
+255833,0,0,0,21
+255834,0,0,0,21
+255835,0,0,0,21
+255836,0,0,0,21
+255837,0,0,0,21
+255838,0,0,0,21
+255839,0,0,0,21
+255840,0,0,0,21
+255841,0,0,0,21
+255842,0,0,0,21
+255843,0,0,0,21
+255844,0,0,0,21
+255845,0,0,0,21
+255846,0,0,0,21
+255847,0,0,0,21
+255848,0,0,0,21
+255849,0,0,0,21
+255850,0,0,0,21
+255851,0,0,0,21
+255852,0,0,0,21
+255853,0,0,0,21
+255854,0,0,0,21
+255855,0,0,0,21
+255856,0,0,0,21
+255857,0,0,0,21
+255858,0,0,0,21
+255859,0,0,0,21
+255860,0,0,0,21
+255861,0,0,0,21
+255862,0,0,0,21
+255863,0,0,0,21
+255864,0,0,0,21
+255865,0,0,0,21
+255866,0,0,0,21
+255867,0,0,0,21
+255868,0,0,0,21
+255869,0,0,0,21
+255870,0,0,0,21
+255871,0,0,0,21
+255872,0,0,0,21
+255873,0,0,0,21
+255874,0,0,0,21
+255875,0,0,0,21
+255876,0,0,0,21
+255877,0,0,0,21
+255878,0,0,0,21
+255879,0,0,0,21
+255880,0,0,0,21
+255881,0,0,0,21
+255882,0,0,0,21
+255883,0,0,0,21
+255884,0,0,0,21
+255885,0,0,0,21
+255886,0,0,0,21
+255887,0,0,0,21
+255888,0,0,0,21
+255889,0,0,0,21
+255890,0,0,0,21
+255891,0,0,0,21
+255892,0,0,0,21
+255893,0,0,0,21
+255894,0,0,0,21
+255895,0,0,0,21
+255896,0,0,0,21
+255897,0,0,0,21
+255898,0,0,0,21
+255899,0,0,0,21
+255900,0,0,0,21
+255901,0,0,0,21
+255902,0,0,0,21
+255903,0,0,0,21
+255904,0,0,0,21
+255905,0,0,0,21
+255906,0,0,0,21
+255907,0,0,0,21
+255908,0,535.0413741,0,21
+255909,0,1839.422397,0,21
+255910,0,1199.9074,0,21
+255911,0,1522.152626,0,21
+255912,0,1681.356223,0,21
+255913,0,1839.422389,0,21
+255914,0,1996.434636,0,21
+255915,0,1996.434634,0,21
+255916,0,2307.569221,0,21
+255917,0,2152.463461,0,21
+255918,0,2615.214193,0,21
+255919,0,2461.804203,0,21
+255920,0,2615.2142,0,21
+255921,0,2767.839612,0,21
+255922,0,2919.716425,0,21
+255923,0,2919.716429,0,21
+255924,0,3221.35012,0,21
+255925,0,3070.876911,0,21
+255926,0,3371.143486,0,21
+255927,0,3371.129522,0,21
+255928,0,3520.349879,0,21
+255929,0,3668.883735,0,21
+255930,0,3668.890169,0,21
+255931,0,3816.862622,0,21
+255932,0,3964.254569,0,21
+255933,0,3964.254834,0,21
+255934,0,4111.086137,0,21
+255935,0,4257.374651,0,21
+255936,0,4257.374879,0,21
+255937,0,4548.381853,0,21
+255938,0,4403.136486,0,21
+255939,0,4693.130111,0,21
+255940,0,4693.130625,0,21
+255941,0,4837.387403,0,21
+255942,0,4837.387378,0,21
+255943,0,4981.167217,0,21
+255944,0,5124.480831,0,21
+255945,0,5267.337678,0,21
+255946,0,5209.343102,0,21
+255947,0,5474.200313,0,21
+255948,0,5636.583485,0,21
+255949,0,5494.6104,0,21
+255950,0,5818.119124,0,21
+255951,0,5939.370296,0,21
+255952,0,5837.776035,0,21
+255953,0,6109.802502,0,21
+255954,0,6139.086976,0,21
+255955,0,6269.676299,0,21
+255956,0,6298.703253,0,21
+255957,0,6438.611784,0,21
+255958,0,6597.286926,0,21
+255959,0,6606.812478,0,21
+255960,0,6755.437634,0,21
+255961,0,6913.079923,0,21
+255962,0,6913.080084,0,21
+255963,0,7070.228737,0,21
+255964,0,7226.896344,0,21
+255965,0,7364.550546,0,21
+255966,0,7401.537827,0,21
+255967,0,7520.392947,0,21
+255968,0,7694.128311,0,21
+255969,0,7830.729299,0,21
+255970,0,7848.980914,0,21
+255971,0,7994.333837,0,21
+255972,0,8139.327638,0,21
+255973,0,8302.003665,0,21
+255974,0,8292.99631,0,21
+255975,0,8464.169481,0,21
+255976,0,8599.109269,0,21
+255977,0,8742.65714,0,21
+255978,0,8769.330534,0,21
+255979,0,8903.634088,0,21
+255980,0,9055.316569,0,21
+255981,0,9188.999054,0,21
+255982,0,9224.173623,0,21
+255983,0,9357.551126,0,21
+255984,0,9640.890258,0,21
+255985,0,9508.113618,0,21
+255986,0,9675.671462,0,21
+255987,0,9922.983188,0,21
+255988,0,9957.639698,0,21
+255989,0,9974.876527,0,21
+255990,0,10221.15312,0,21
+255991,0,10264.13598,0,21
+255992,0,10255.56895,0,21
+255993,0,10535.06946,0,21
+255994,0,10552.13347,0,21
+255995,0,10552.13381,0,21
+255996,0,10830.41029,0,21
+255997,0,10699.91384,0,21
+255998,0,10994.48942,0,21
+255999,0,10977.58787,0,21
+256000,0,11141.2911,0,21
+256001,0,11141.29098,0,21
+256002,0,11270.97646,0,21
+256003,0,11304.52111,0,21
+256004,0,11417.19417,0,21
+256005,0,11579.795,0,21
+256006,0,11579.79513,0,21
+256007,0,11725.33941,0,21
+256008,0,11725.33936,0,21
+256009,0,11998.95797,0,21
+256010,0,11870.57681,0,21
+256011,0,12032.0162,0,21
+256012,0,12288.01745,0,21
+256013,0,12032.01612,0,21
+256014,0,12304.47652,0,21
+256015,0,12448.51542,0,21
+256016,0,12448.51568,0,21
+256017,0,12448.51566,0,21
+256018,0,12608.58655,0,21
+256019,0,12719.391,0,21
+256020,0,12624.86827,0,21
+256021,0,13416.45228,0,21
+256022,0,13546.17915,0,21
+256023,0,14050.89654,0,21
+256024,0,13935.68106,0,21
+256025,0,14304.36937,0,21
+256026,0,14304.36981,0,21
+256027,0,15180.28612,0,21
+256028,0,17209.32219,0,21
+256029,0,16226.25554,0,21
+256030,0,17291.02066,0,21
+256031,0,17433.64745,0,21
+256032,0,17948.39786,0,21
+256033,0,18364.79903,0,21
+256034,0,18628.32418,0,21
+256035,0,18902.06091,0,21
+256036,0,19791.70343,0,21
+256037,0,19668.71538,0,21
+256038,0,20213.1271,0,21
+256039,0,20571.77739,0,21
+256040,0,20997.34573,0,21
+256041,0,21100.69977,0,21
+256042,0,21755.71569,0,21
+256043,0,22010.7655,0,21
+256044,0,22486.43053,0,21
+256045,0,22554.48209,0,21
+256046,0,23265.17371,0,21
+256047,0,23280.54219,0,21
+256048,0,24028.39249,0,21
+256049,0,23786.00412,0,21
+256050,0,24787.22209,0,21
+256051,0,24666.53851,0,21
+256052,0,25381.57017,0,21
+256053,0,25477.7322,0,21
+256054,0,26091.62945,0,21
+256055,0,26148.13661,0,21
+256056,0,26852.36447,0,21
+256057,0,26786.33833,0,21
+256058,0,27596.8666,0,21
+256059,0,27659.63428,0,21
+256060,0,28137.18638,0,21
+256061,0,28424.25511,0,21
+256062,0,29096.94089,0,21
+256063,0,29170.11179,0,21
+256064,0,29633.22647,0,21
+256065,0,29900.09067,0,21
+256066,0,30398.31893,0,21
+256067,0,30847.49212,0,21
+256068,0,31007.45416,0,21
+256069,0,31364.97466,0,21
+256070,0,31662.76329,0,21
+256071,0,32315.85454,0,21
+256072,0,32357.33807,0,21
+256073,0,32609.18381,0,21
+256074,0,33124.01438,0,21
+256075,0,33630.57793,0,21
+256076,0,33734.50931,0,21
+256077,0,34073.95939,0,21
+256078,0,34406.12427,0,21
+256079,0,35023.51042,0,21
+256080,0,35047.34201,0,21
+256081,0,35377.68007,0,21
+256082,0,35778.22658,0,21
+256083,0,35976.87051,0,21
+256084,0,36491.6997,0,21
+256085,0,36692.31564,0,21
+256086,0,36939.20662,0,21
+256087,0,37451.48183,0,21
+256088,0,37647.97345,0,21
+256089,0,37915.98631,0,21
+256090,0,38138.05163,0,21
+256091,0,38853.96938,0,21
+256092,0,38612.56359,0,21
+256093,0,39329.52552,0,21
+256094,0,39623.39788,0,21
+256095,0,39735.36675,0,21
+256096,0,40017.41628,0,21
+256097,0,40729.08849,0,21
+256098,0,40935.26399,0,21
+256099,0,41015.21599,0,21
+256100,0,41640.63466,0,21
+256101,0,41702.7915,0,21
+256102,0,42331.776,0,21
+256103,0,42180.92091,0,21
+256104,0,43009.34188,0,21
+256105,0,42986.08629,0,21
+256106,0,43484.14024,0,21
+256107,0,43647.46646,0,21
+256108,0,44021.67711,0,21
+256109,0,44205.05771,0,21
+256110,0,44772.0758,0,21
+256111,0,44878.60383,0,21
+256112,0,44987.17743,0,21
+256113,0,45759.20971,0,21
+256114,0,45834.27315,0,21
+256115,0,46163.00698,0,21
+256116,0,46335.26887,0,21
+256117,0,46893.30595,0,21
+256118,0,46988.44449,0,21
+256119,0,47427.64952,0,21
+256120,0,47651.23517,0,21
+256121,0,48052.34256,0,21
+256122,0,48261.73496,0,21
+256123,0,48638.35794,0,21
+256124,0,48989.70467,0,21
+256125,0,49321.54364,0,21
+256126,0,49475.4873,0,21
+256127,0,49873.68265,0,21
+256128,0,50166.96693,0,21
+256129,0,50528.63716,0,21
+256130,0,50598.8569,0,21
+256131,0,51224.64459,0,21
+256132,0,51262.48587,0,21
+256133,0,51694.48893,0,21
+256134,0,51897.17723,0,21
+256135,0,52361.75963,0,21
+256136,0,52567.23147,0,21
+256137,0,52805.44288,0,21
+256138,0,53248.48556,0,21
+256139,0,53670.33932,0,21
+256140,0,53462.11469,0,21
+256141,0,0,0,21
+256142,0,0,0,21
+256143,0,0,0,21
+256144,0,0,0,21
+256145,327623.5774,0,723895.295,21
+256146,0,361145.65,0,21
+256147,0,0,0,21
+256148,0,0,0,21
+256149,0,0,0,21
+256150,0,0,0,21
+256151,0,0,0,21
+256152,0,0,0,21
+256153,0,0,0,21
+256154,0,0,0,21
+256155,0,0,0,21
+256156,0,0,0,21
+256157,0,0,0,21
+256158,0,0,0,21
+256159,0,0,0,21
+256160,0,0,0,21
+256161,0,0,0,21
+256162,0,0,0,21
+256163,0,0,0,21
+256164,0,0,0,21
+256165,0,0,0,21
+256166,0,0,0,21
+256167,0,0,0,21
+256168,0,0,0,21
+256169,0,0,0,21
+256170,0,0,0,21
+256171,0,0,0,21
+256172,0,0,0,21
+256173,0,0,0,21
+256174,0,0,0,21
+256175,0,0,0,21
+256176,0,0,0,21
+256177,0,0,0,21
+256178,0,0,0,21
+256179,0,0,719166.8269,21
+256180,327437.7524,0,0,21
+256181,0,363224.5688,0,21
+256182,0,0,0,21
+256183,0,0,0,21
+256184,0,0,0,21
+256185,0,0,0,21
+256186,0,0,0,21
+256187,0,0,0,21
+256188,0,0,0,21
+256189,0,0,0,21
+256190,0,0,0,21
+256191,0,0,0,21
+256192,0,0,0,21
+256193,0,0,0,21
+256194,0,0,0,21
+256195,0,0,0,21
+256196,0,0,0,21
+256197,0,0,0,21
+256198,0,0,0,21
+256199,0,0,0,21
+256200,0,0,0,15.6
+256201,0,0,0,15.6
+256202,0,0,0,15.6
+256203,0,0,0,15.6
+256204,0,0,0,15.6
+256205,0,0,0,15.6
+256206,0,0,0,15.6
+256207,0,0,0,15.6
+256208,0,0,0,15.6
+256209,0,0,0,15.6
+256210,0,0,0,15.6
+256211,0,0,0,15.6
+256212,0,0,0,15.6
+256213,0,0,714049.3086,15.6
+256214,0,0,0,15.6
+256215,329389.7304,0,0,15.6
+256216,0,364583.0121,0,15.6
+256217,0,0,0,15.6
+256218,0,0,0,15.6
+256219,0,0,0,15.6
+256220,0,0,0,15.6
+256221,0,0,0,15.6
+256222,0,0,0,15.6
+256223,0,0,0,15.6
+256224,0,0,0,15.6
+256225,0,0,0,15.6
+256226,0,0,0,15.6
+256227,0,0,0,15.6
+256228,0,0,0,15.6
+256229,0,0,0,15.6
+256230,0,0,0,15.6
+256231,0,0,0,15.6
+256232,0,0,0,15.6
+256233,0,0,0,15.6
+256234,0,0,0,15.6
+256235,0,0,0,15.6
+256236,0,0,0,15.6
+256237,0,0,0,15.6
+256238,0,0,0,15.6
+256239,0,0,0,15.6
+256240,0,0,0,15.6
+256241,0,0,0,15.6
+256242,0,0,0,15.6
+256243,0,0,0,15.6
+256244,0,0,0,15.6
+256245,0,0,0,15.6
+256246,0,0,0,15.6
+256247,0,0,709896.1773,15.6
+256248,0,0,0,15.6
+256249,0,0,0,15.6
+256250,330801.9105,0,0,15.6
+256251,0,363806.2043,0,15.6
+256252,0,0,0,15.6
+256253,0,0,0,15.6
+256254,0,0,0,15.6
+256255,0,0,0,15.6
+256256,0,0,0,15.6
+256257,0,0,0,15.6
+256258,0,0,0,15.6
+256259,0,0,0,15.6
+256260,0,0,0,15.6
+256261,0,0,0,15.6
+256262,0,0,0,15.6
+256263,0,0,0,15.6
+256264,0,0,0,15.6
+256265,0,0,0,15.6
+256266,0,0,0,15.6
+256267,0,0,0,15.6
+256268,0,0,0,15.6
+256269,0,0,0,15.6
+256270,0,0,0,15.6
+256271,0,0,0,15.6
+256272,0,0,0,15.6
+256273,0,0,0,15.6
+256274,0,0,0,15.6
+256275,0,0,0,15.6
+256276,0,0,0,15.6
+256277,0,0,0,15.6
+256278,0,0,0,15.6
+256279,0,0,0,15.6
+256280,0,0,0,15.6
+256281,0,0,705604.1105,15.6
+256282,0,0,0,15.6
+256283,0,0,0,15.6
+256284,0,0,0,15.6
+256285,331960.5632,0,0,15.6
+256286,0,365067.0536,0,15.6
+256287,0,0,0,15.6
+256288,0,0,0,15.6
+256289,0,0,0,15.6
+256290,0,0,0,15.6
+256291,0,0,0,15.6
+256292,0,0,0,15.6
+256293,0,0,0,15.6
+256294,0,0,0,15.6
+256295,0,0,0,15.6
+256296,0,0,0,15.6
+256297,0,0,0,15.6
+256298,0,0,0,15.6
+256299,0,0,0,15.6
+256300,0,0,0,15.6
+256301,0,0,0,15.6
+256302,0,0,0,15.6
+256303,0,0,0,15.6
+256304,0,0,0,15.6
+256305,0,0,0,15.6
+256306,0,0,0,15.6
+256307,0,0,0,15.6
+256308,0,0,0,15.6
+256309,0,0,0,15.6
+256310,0,0,0,15.6
+256311,0,0,0,15.6
+256312,0,0,0,15.6
+256313,0,0,0,15.6
+256314,0,0,0,15.6
+256315,0,0,702013.8275,15.6
+256316,0,0,0,15.6
+256317,0,0,0,15.6
+256318,0,0,0,15.6
+256319,0,0,0,15.6
+256320,332361.0645,0,0,15.6
+256321,0,365923.3804,0,15.6
+256322,0,0,0,15.6
+256323,0,0,0,15.6
+256324,0,0,0,15.6
+256325,0,0,0,15.6
+256326,0,0,0,15.6
+256327,0,0,0,15.6
+256328,0,0,0,15.6
+256329,0,0,0,15.6
+256330,0,0,0,15.6
+256331,0,0,0,15.6
+256332,0,0,0,15.6
+256333,0,0,0,15.6
+256334,0,0,0,15.6
+256335,0,0,0,15.6
+256336,0,0,0,15.6
+256337,0,0,0,15.6
+256338,0,0,0,15.6
+256339,0,0,0,15.6
+256340,0,0,0,15.6
+256341,0,0,0,15.6
+256342,0,0,0,15.6
+256343,0,0,0,15.6
+256344,0,0,0,15.6
+256345,0,0,0,15.6
+256346,0,0,0,15.6
+256347,0,0,0,15.6
+256348,0,0,0,15.6
+256349,0,0,698175.9202,15.6
+256350,0,0,0,15.6
+256351,0,0,0,15.6
+256352,0,0,0,15.6
+256353,0,0,0,15.6
+256354,0,0,0,15.6
+256355,334493.687,0,0,15.6
+256356,0,364391.0455,0,15.6
+256357,0,0,0,15.6
+256358,0,0,0,15.6
+256359,0,0,0,15.6
+256360,0,0,0,15.6
+256361,0,0,0,15.6
+256362,0,0,0,15.6
+256363,0,0,0,15.6
+256364,0,0,0,15.6
+256365,0,0,0,15.6
+256366,0,0,0,15.6
+256367,0,0,0,15.6
+256368,0,0,0,15.6
+256369,0,0,0,15.6
+256370,0,0,0,15.6
+256371,0,0,0,15.6
+256372,0,0,0,15.6
+256373,0,0,0,15.6
+256374,0,0,0,15.6
+256375,0,0,0,15.6
+256376,0,0,0,15.6
+256377,0,0,0,15.6
+256378,0,0,0,15.6
+256379,0,0,0,15.6
+256380,0,0,0,15.6
+256381,0,0,0,15.6
+256382,0,0,0,15.6
+256383,0,0,694839.7016,15.6
+256384,0,0,0,15.6
+256385,0,0,0,15.6
+256386,0,0,0,15.6
+256387,0,0,0,15.6
+256388,0,0,0,15.6
+256389,0,0,0,15.6
+256390,333529.7802,0,0,15.6
+256391,0,365675.4348,0,15.6
+256392,0,0,0,15.6
+256393,0,0,0,15.6
+256394,0,0,0,15.6
+256395,0,0,0,15.6
+256396,0,0,0,15.6
+256397,0,0,0,15.6
+256398,0,0,0,15.6
+256399,0,0,0,15.6
+256400,0,0,0,15.6
+256401,0,0,0,15.6
+256402,0,0,0,15.6
+256403,0,0,0,15.6
+256404,0,0,0,15.6
+256405,0,0,0,15.6
+256406,0,0,0,15.6
+256407,0,0,0,15.6
+256408,0,0,0,15.6
+256409,0,0,0,15.6
+256410,0,0,0,15.6
+256411,0,0,0,15.6
+256412,0,0,0,15.6
+256413,0,0,0,15.6
+256414,0,0,0,15.6
+256415,0,0,0,15.6
+256416,0,0,0,15.6
+256417,0,0,691735.0855,15.6
+256418,0,0,0,15.6
+256419,0,0,0,15.6
+256420,0,0,0,15.6
+256421,0,0,0,15.6
+256422,0,0,0,15.6
+256423,0,0,0,15.6
+256424,0,0,0,15.6
+256425,335299.4166,0,0,15.6
+256426,0,369410.2313,0,15.6
+256427,0,0,0,15.6
+256428,0,0,0,15.6
+256429,0,0,0,15.6
+256430,0,0,0,15.6
+256431,0,0,0,15.6
+256432,0,0,0,15.6
+256433,0,0,0,15.6
+256434,0,0,0,15.6
+256435,0,0,0,15.6
+256436,0,0,0,15.6
+256437,0,0,0,15.6
+256438,0,0,0,15.6
+256439,0,0,0,15.6
+256440,0,0,0,15.6
+256441,0,0,0,15.6
+256442,0,0,0,15.6
+256443,0,0,0,15.6
+256444,0,0,0,15.6
+256445,0,0,0,15.6
+256446,0,0,0,15.6
+256447,0,0,0,15.6
+256448,0,0,0,15.6
+256449,0,0,0,15.6
+256450,0,0,0,15.6
+256451,0,0,688788.2566,15.6
+256452,0,0,0,15.6
+256453,0,0,0,15.6
+256454,0,0,0,15.6
+256455,0,0,0,15.6
+256456,0,0,0,15.6
+256457,0,0,0,15.6
+256458,0,0,0,15.6
+256459,0,0,0,15.6
+256460,334654.346,0,0,15.6
+256461,0,369410.9409,0,15.6
+256462,0,0,0,15.6
+256463,0,0,0,15.6
+256464,0,0,0,15.6
+256465,0,0,0,15.6
+256466,0,0,0,15.6
+256467,0,0,0,15.6
+256468,0,0,0,15.6
+256469,0,0,0,15.6
+256470,0,0,0,15.6
+256471,0,0,0,15.6
+256472,0,0,0,15.6
+256473,0,0,0,15.6
+256474,0,0,0,15.6
+256475,0,0,0,15.6
+256476,0,0,0,15.6
+256477,0,0,0,15.6
+256478,0,0,0,15.6
+256479,0,0,0,15.6
+256480,0,0,0,15.6
+256481,0,0,0,15.6
+256482,0,0,0,15.6
+256483,0,0,0,15.6
+256484,0,0,0,15.6
+256485,0,0,686541.8798,15.6
+256486,0,0,0,15.6
+256487,0,0,0,15.6
+256488,0,0,0,15.6
+256489,0,0,0,15.6
+256490,0,0,0,15.6
+256491,0,0,0,15.6
+256492,0,0,0,15.6
+256493,0,0,0,15.6
+256494,0,0,0,15.6
+256495,335169.9141,0,0,15.6
+256496,0,369412.3673,0,15.6
+256497,0,0,0,15.6
+256498,0,0,0,15.6
+256499,0,0,0,15.6
+256500,0,0,0,15.6
+256501,0,0,0,15.6
+256502,0,0,0,15.6
+256503,0,0,0,15.6
+256504,0,0,0,15.6
+256505,0,0,0,15.6
+256506,0,0,0,15.6
+256507,0,0,0,15.6
+256508,0,0,0,15.6
+256509,0,0,0,15.6
+256510,0,0,0,15.6
+256511,0,0,0,15.6
+256512,0,0,0,15.6
+256513,0,0,0,15.6
+256514,0,0,0,15.6
+256515,0,0,0,15.6
+256516,0,0,0,15.6
+256517,0,0,0,15.6
+256518,0,0,0,15.6
+256519,0,0,684413.5416,15.6
+256520,0,0,0,15.6
+256521,0,0,0,15.6
+256522,0,0,0,15.6
+256523,0,0,0,15.6
+256524,0,0,0,15.6
+256525,0,0,0,15.6
+256526,0,0,0,15.6
+256527,0,0,0,15.6
+256528,0,0,0,15.6
+256529,336537.9934,0,0,15.6
+256530,0,0,0,15.6
+256531,0,369412.9345,0,15.6
+256532,0,0,0,15.6
+256533,0,0,0,15.6
+256534,0,0,0,15.6
+256535,0,0,0,15.6
+256536,0,0,0,15.6
+256537,0,0,0,15.6
+256538,0,0,0,15.6
+256539,0,0,0,15.6
+256540,0,0,0,15.6
+256541,0,0,0,15.6
+256542,0,0,0,15.6
+256543,0,0,0,15.6
+256544,0,0,0,15.6
+256545,0,0,0,15.6
+256546,0,0,0,15.6
+256547,0,0,0,15.6
+256548,0,0,0,15.6
+256549,0,0,0,15.6
+256550,0,0,0,15.6
+256551,0,0,0,15.6
+256552,0,0,0,15.6
+256553,0,0,682574.279,15.6
+256554,0,0,0,15.6
+256555,0,0,0,15.6
+256556,0,0,0,15.6
+256557,0,0,0,15.6
+256558,0,0,0,15.6
+256559,0,0,0,15.6
+256560,0,0,0,17.8
+256561,0,0,0,17.8
+256562,0,0,0,17.8
+256563,335218.3482,0,0,17.8
+256564,0,0,0,17.8
+256565,0,369412.9236,0,17.8
+256566,0,0,0,17.8
+256567,0,0,0,17.8
+256568,0,0,0,17.8
+256569,0,0,0,17.8
+256570,0,0,0,17.8
+256571,0,0,0,17.8
+256572,0,0,0,17.8
+256573,0,0,0,17.8
+256574,0,0,0,17.8
+256575,0,3692.845419,0,17.8
+256576,0,13066.52317,0,17.8
+256577,0,6604.620891,0,17.8
+256578,0,9172.558955,0,17.8
+256579,0,8962.147899,0,17.8
+256580,0,9591.597839,0,17.8
+256581,0,9172.560644,0,17.8
+256582,0,9591.599093,0,17.8
+256583,0,9591.599736,0,17.8
+256584,0,9800.246637,0,17.8
+256585,0,9591.601032,0,17.8
+256586,0,10008.32513,0,17.8
+256587,0,9800.248699,680609.2106,17.8
+256588,0,10008.32658,0,17.8
+256589,0,9800.250103,0,17.8
+256590,0,10215.84488,0,17.8
+256591,0,10008.32863,0,17.8
+256592,0,10008.32962,0,17.8
+256593,0,10215.84752,0,17.8
+256594,0,10008.33116,0,17.8
+256595,0,0,0,17.8
+256596,0,0,0,17.8
+256597,336634.6668,0,0,17.8
+256598,0,0,0,17.8
+256599,0,369411.568,0,17.8
+256600,0,0,0,17.8
+256601,0,0,0,17.8
+256602,0,0,0,17.8
+256603,0,0,0,17.8
+256604,0,0,0,17.8
+256605,0,0,0,17.8
+256606,0,0,0,17.8
+256607,0,0,0,17.8
+256608,0,97.45963411,0,17.8
+256609,0,1557.627944,0,17.8
+256610,0,613.5399541,0,17.8
+256611,0,931.9475256,0,17.8
+256612,0,957.8679355,0,17.8
+256613,0,957.8679407,0,17.8
+256614,0,983.7034715,0,17.8
+256615,0,983.7030633,0,17.8
+256616,0,983.7030363,0,17.8
+256617,0,1035.127488,0,17.8
+256618,0,1009.456152,0,17.8
+256619,0,1022.301471,0,17.8
+256620,0,5414.819639,0,20
+256621,3148.295899,566340.882,679275.5926,20
+256622,3989.993324,0,0,20
+256623,1646.945262,0,0,20
+256624,2657.155152,1318.352201,0,20
+256625,2533.056638,111766.0554,0,20
+256626,2283.136559,57411.41523,0,20
+256627,2157.264156,59815.49671,0,20
+256628,3042.048876,64668.22221,0,20
+256629,3890.870216,64682.2545,0,20
+256630,3387.35223,64353.38214,0,20
+256631,3188.238158,64506.96057,0,20
+256632,3047.379056,64631.28324,0,20
+256633,5203.367138,64339.9645,0,20
+256634,4014.620559,64907.54067,0,20
+256635,4118.862801,64307.71585,0,20
+256636,4255.634027,64627.46324,0,20
+256637,4330.181028,64877.96468,0,20
+256638,4312.187407,64762.36388,0,20
+256639,4435.836736,64548.31227,0,20
+256640,4554.766015,64905.766,0,20
+256641,4797.180287,65136.44014,0,20
+256642,5037.535725,64594.81839,0,20
+256643,4901.214436,65150.306,0,20
+256644,5273.520952,64986.92431,0,20
+256645,5271.000948,65150.31903,0,20
+256646,5479.133991,65131.90048,0,20
+256647,5491.950779,65164.16189,0,20
+256648,5715.911289,65557.57732,0,20
+256649,5695.291717,65148.24722,0,20
+256650,5953.604322,65433.18916,0,20
+256651,5896.40772,65377.43743,0,20
+256652,6136.869174,65699.73903,0,20
+256653,6091.780824,65615.09455,0,20
+256654,6201.018039,65524.13296,0,20
+256655,6292.436404,65839.02988,0,20
+256656,6263.051728,65894.87629,0,20
+256657,6460.287685,65939.48012,0,20
+256658,6446.720538,66036.37877,0,20
+256659,6414.375506,65711.75944,0,20
+256660,6606.269672,66541.9979,0,20
+256661,6618.860448,65967.98594,0,20
+256662,6733.487783,66692.97218,0,20
+256663,6847.803199,66382.61814,0,20
+256664,6758.603772,66426.14792,0,20
+256665,6974.381122,66700.19787,0,20
+256666,7100.635889,66600.96637,0,20
+256667,6999.453703,67006.30837,0,20
+256668,7100.635893,66784.63397,0,20
+256669,7352.195896,66779.9736,0,20
+256670,7125.665277,67321.89216,0,20
+256671,7352.195872,66963.17817,0,20
+256672,7465.027813,68049.55293,0,20
+256673,7394.915136,67662.22729,0,20
+256674,7677.100113,68147.09553,0,20
+256675,7548.976593,68343.94839,0,20
+256676,7663.156987,67900.79995,0,20
+256677,7801.831306,68857.90308,0,20
+256678,7702.001227,68155.94937,0,20
+256679,7927.640232,68984.98315,0,20
+256680,7840.503925,68916.01848,0,21
+256681,6081.245849,62991.70597,0,21
+256682,5964.968366,62755.67284,0,21
+256683,5952.243582,62490.24635,0,21
+256684,5848.343908,62170.48961,0,21
+256685,5822.871479,62080.94361,0,21
+256686,5964.968361,62188.46243,0,21
+256687,5822.871441,61484.09098,0,21
+256688,5835.619049,62137.01408,0,21
+256689,5822.871413,61469.43785,0,21
+256690,5705.889998,61474.23444,0,21
+256691,5822.871396,61181.29379,0,21
+256692,5575.773169,61433.72735,0,21
+256693,5822.871375,61395.86612,0,21
+256694,5562.979566,60883.00379,0,21
+256695,5705.889926,60799.28902,0,21
+256696,5562.979538,61049.6553,0,21
+256697,5693.11937,60801.37147,0,21
+256698,5562.979498,60450.00108,0,21
+256699,5680.325759,60777.53619,0,21
+256700,5562.979488,60808.16974,0,21
+256701,5562.979459,60794.42613,0,21
+256702,5562.979459,60690.73304,0,21
+256703,5419.603062,60457.34036,0,21
+256704,5562.979448,60609.7346,0,21
+256705,5537.322473,60334.70273,0,21
+256706,5314.341697,60271.29544,0,21
+256707,5537.32247,60286.39242,0,21
+256708,5419.603018,60117.39875,0,21
+256709,5301.501529,60067.55257,0,21
+256710,5406.739359,59824.82774,0,21
+256711,5288.637877,59758.30214,0,21
+256712,5406.739868,59917.69676,0,21
+256713,5157.25754,59749.68936,0,21
+256714,5275.749723,59476.16695,0,21
+256715,5144.346586,59623.42638,0,21
+256716,5275.750541,59458.4915,0,21
+256717,5012.517239,59431.3319,0,21
+256718,5275.750516,59201.68935,0,21
+256719,5131.411518,59423.41498,0,21
+256720,5131.411506,59121.75399,0,21
+256721,5131.411503,59212.50313,0,21
+256722,5012.517169,59103.42882,0,21
+256723,4986.574667,58868.67401,0,21
+256724,4999.558022,58989.68397,0,21
+256725,4986.574643,58909.70143,0,21
+256726,4867.268253,58978.26793,0,21
+256727,4854.260436,58540.27903,0,21
+256728,4841.228045,58867.23853,0,21
+256729,4747.538369,58687.66617,0,21
+256730,4695.358963,58551.96878,0,21
+256731,4721.498151,58562.55514,0,21
+256732,4708.440964,58580.4468,0,21
+256733,4575.193411,58103.80498,0,21
+256734,4575.193414,58582.13278,0,21
+256735,4575.193401,58237.22736,0,21
+256736,4428.339491,58020.95706,0,21
+256737,4441.471921,58400.47533,0,21
+256738,4428.339467,58254.57342,0,21
+256739,4428.339435,57901.37553,0,21
+256740,4280.920844,59115.46563,0,21
+256741,82.94363652,22692.15677,0,21
+256742,0,20054.88329,0,21
+256743,0,19409.93097,0,21
+256744,0,19106.72783,0,21
+256745,0,18281.26557,0,21
+256746,0,18065.80333,0,21
+256747,0,17354.7098,0,21
+256748,0,17272.01886,0,21
+256749,0,16499.82382,0,21
+256750,0,16516.81549,0,21
+256751,0,16092.94996,0,21
+256752,0,15493.81482,0,21
+256753,0,15180.52592,0,21
+256754,0,15063.8922,0,21
+256755,0,14484.65256,0,21
+256756,0,14426.9405,0,21
+256757,0,13667.86987,0,21
+256758,0,13783.52918,0,21
+256759,0,13398.97099,0,21
+256760,0,12923.39174,0,21
+256761,0,13135.34931,0,21
+256762,0,12486.44422,0,21
+256763,0,12658.46105,0,21
+256764,0,12196.69822,0,21
+256765,0,12202.78009,0,21
+256766,0,11747.47,0,21
+256767,0,11697.23525,0,21
+256768,0,11721.01075,0,21
+256769,0,11230.48004,0,21
+256770,0,11008.3923,0,21
+256771,0,11188.79872,0,21
+256772,0,10519.99271,0,21
+256773,0,10513.90213,0,21
+256774,0,10010.65723,0,21
+256775,0,10211.37953,0,21
+256776,0,9540.529062,0,21
+256777,0,9510.315891,0,21
+256778,0,9234.607723,0,21
+256779,0,9018.972127,0,21
+256780,0,8735.451543,0,21
+256781,0,8493.889194,0,21
+256782,0,8257.52726,0,21
+256783,0,7995.729916,0,21
+256784,0,7717.683667,0,21
+256785,0,7266.988882,0,21
+256786,0,7444.392678,0,21
+256787,0,6728.918572,0,21
+256788,0,6690.55648,0,21
+256789,0,6461.149775,0,21
+256790,0,5921.932571,0,21
+256791,0,5921.932582,0,21
+256792,0,5660.23806,0,21
+256793,0,5133.154932,0,21
+256794,0,5123.116825,0,21
+256795,0,4615.938865,0,21
+256796,0,4564.989922,0,21
+256797,0,4077.418794,0,21
+256798,0,3805.570982,0,21
+256799,0,3742.977837,0,21
+256800,0,3267.06356,0,21
+256801,0,2974.638555,0,21
+256802,0,2731.923666,0,21
+256803,0,2161.064454,0,21
+256804,0,2161.0645,0,21
+256805,0,1603.633351,0,21
+256806,0,1186.718622,0,21
+256807,0,1026.489159,0,21
+256808,0,694.5283499,0,21
+256809,0,667.6447243,0,21
+256810,0,640.6493774,0,21
+256811,0,613.5386167,0,21
+256812,0,558.9544003,0,21
+256813,0,531.471885,0,21
+256814,0,503.8554192,0,21
+256815,0,476.0984526,0,21
+256816,0,420.139276,0,21
+256817,0,391.9207621,0,21
+256818,0,363.5306203,0,21
+256819,0,306.1895326,0,21
+256820,0,306.1895195,0,21
+256821,0,218.5435054,0,21
+256822,0,173.8187326,0,21
+256823,0,158.7482837,0,21
+256824,0,97.45962415,0,21
+256825,0,81.82723465,0,21
+256826,0,33.81664878,0,21
+256827,0,0,0,21
+256828,0,0,0,21
+256829,0,0,0,21
+256830,0,0,0,21
+256831,0,0,0,21
+256832,0,0,0,21
+256833,0,0,0,21
+256834,0,0,0,21
+256835,0,0,0,21
+256836,0,0,0,21
+256837,0,0,0,21
+256838,0,0,0,21
+256839,0,0,0,21
+256840,0,0,0,21
+256841,0,0,0,21
+256842,0,0,0,21
+256843,0,0,0,21
+256844,0,0,0,21
+256845,0,0,0,21
+256846,0,0,0,21
+256847,0,0,0,21
+256848,0,0,0,21
+256849,0,0,0,21
+256850,0,0,0,21
+256851,0,0,0,21
+256852,0,0,0,21
+256853,0,0,0,21
+256854,0,0,0,21
+256855,0,0,0,21
+256856,0,0,0,21
+256857,0,0,0,21
+256858,0,0,0,21
+256859,0,0,0,21
+256860,0,0,0,21
+256861,0,0,0,21
+256862,0,0,0,21
+256863,0,0,0,21
+256864,0,0,0,21
+256865,0,0,0,21
+256866,0,0,0,21
+256867,0,0,0,21
+256868,0,0,0,21
+256869,0,0,0,21
+256870,0,0,0,21
+256871,0,0,0,21
+256872,0,0,0,21
+256873,0,0,0,21
+256874,0,0,0,21
+256875,0,0,0,21
+256876,0,0,0,21
+256877,0,0,0,21
+256878,0,0,0,21
+256879,0,0,0,21
+256880,0,0,0,21
+256881,0,0,0,21
+256882,0,0,0,21
+256883,0,0,0,21
+256884,0,0,0,21
+256885,0,0,0,21
+256886,0,0,0,21
+256887,0,0,0,21
+256888,0,0,0,21
+256889,0,0,0,21
+256890,0,0,0,21
+256891,0,0,0,21
+256892,0,0,0,21
+256893,0,0,0,21
+256894,0,0,0,21
+256895,0,0,0,21
+256896,0,0,0,21
+256897,0,0,0,21
+256898,0,0,0,21
+256899,0,0,0,21
+256900,0,0,0,21
+256901,0,0,0,21
+256902,0,0,0,21
+256903,0,0,0,21
+256904,0,0,0,21
+256905,0,0,0,21
+256906,0,0,0,21
+256907,0,0,0,21
+256908,0,0,0,21
+256909,0,0,0,21
+256910,0,0,0,21
+256911,0,0,0,21
+256912,0,0,0,21
+256913,0,0,0,21
+256914,0,0,0,21
+256915,0,0,0,21
+256916,0,0,0,21
+256917,0,0,0,21
+256918,0,0,0,21
+256919,0,0,0,21
+256920,0,0,0,21
+256921,0,0,0,21
+256922,0,0,0,21
+256923,0,0,0,21
+256924,0,0,0,21
+256925,0,0,0,21
+256926,0,0,0,21
+256927,0,0,0,21
+256928,0,0,0,21
+256929,0,0,0,21
+256930,0,0,0,21
+256931,0,0,0,21
+256932,0,0,0,21
+256933,0,0,0,21
+256934,0,0,0,21
+256935,0,0,0,21
+256936,0,0,0,21
+256937,0,0,0,21
+256938,0,0,0,21
+256939,0,0,0,21
+256940,0,0,0,21
+256941,0,0,0,21
+256942,0,0,0,21
+256943,0,0,0,21
+256944,0,0,0,21
+256945,0,0,0,21
+256946,0,0,0,21
+256947,0,0,0,21
+256948,0,0,0,21
+256949,0,0,0,21
+256950,0,0,0,21
+256951,0,0,0,21
+256952,0,0,0,21
+256953,0,0,0,21
+256954,0,0,0,21
+256955,0,0,0,21
+256956,0,0,0,21
+256957,0,0,0,21
+256958,0,0,0,21
+256959,0,0,0,21
+256960,0,0,0,21
+256961,0,0,0,21
+256962,0,0,0,21
+256963,0,0,0,21
+256964,0,0,0,21
+256965,0,0,0,21
+256966,0,0,0,21
+256967,0,0,0,21
+256968,0,0,0,21
+256969,0,0,0,21
+256970,0,0,0,21
+256971,0,0,0,21
+256972,0,0,0,21
+256973,0,0,0,21
+256974,0,0,0,21
+256975,0,0,0,21
+256976,0,0,0,21
+256977,0,0,0,21
+256978,0,0,0,21
+256979,0,0,0,21
+256980,0,0,0,21
+256981,0,0,0,21
+256982,0,0,0,21
+256983,0,0,0,21
+256984,0,0,0,21
+256985,0,0,0,21
+256986,0,0,0,21
+256987,0,0,0,21
+256988,0,0,0,21
+256989,0,0,0,21
+256990,0,0,0,21
+256991,0,0,0,21
+256992,0,0,0,21
+256993,0,0,0,21
+256994,0,0,0,21
+256995,0,0,0,21
+256996,0,0,0,21
+256997,0,0,0,21
+256998,0,0,0,21
+256999,0,0,0,21
+257000,0,0,0,21
+257001,0,0,0,21
+257002,0,0,0,21
+257003,0,0,0,21
+257004,0,0,0,21
+257005,0,0,0,21
+257006,0,0,0,21
+257007,0,0,0,21
+257008,0,0,0,21
+257009,0,0,0,21
+257010,0,0,0,21
+257011,0,0,0,21
+257012,0,0,0,21
+257013,0,0,0,21
+257014,0,0,0,21
+257015,0,0,0,21
+257016,0,0,0,21
+257017,0,0,0,21
+257018,0,0,0,21
+257019,0,0,0,21
+257020,0,0,0,21
+257021,0,0,0,21
+257022,0,0,0,21
+257023,0,0,0,21
+257024,0,0,0,21
+257025,0,0,0,21
+257026,0,0,0,21
+257027,0,0,0,21
+257028,0,0,0,21
+257029,0,0,0,21
+257030,0,0,0,21
+257031,0,0,0,21
+257032,0,0,0,21
+257033,0,0,0,21
+257034,0,0,0,21
+257035,0,0,0,21
+257036,0,0,0,21
+257037,0,0,0,21
+257038,0,0,0,21
+257039,0,0,0,21
+257040,0,0,0,21
+257041,0,0,0,21
+257042,0,0,0,21
+257043,0,0,0,21
+257044,0,0,0,21
+257045,0,0,0,21
+257046,0,0,0,21
+257047,0,0,0,21
+257048,0,0,0,21
+257049,0,0,0,21
+257050,0,0,0,21
+257051,0,0,0,21
+257052,0,0,0,21
+257053,0,0,0,21
+257054,0,0,0,21
+257055,0,0,0,21
+257056,0,0,0,21
+257057,0,0,0,21
+257058,0,0,0,21
+257059,0,0,0,21
+257060,0,0,0,21
+257061,0,0,0,21
+257062,0,0,0,21
+257063,0,0,0,21
+257064,0,0,0,21
+257065,0,0,0,21
+257066,0,0,0,21
+257067,0,0,0,21
+257068,0,0,0,21
+257069,0,0,0,21
+257070,0,0,0,21
+257071,0,0,0,21
+257072,0,0,0,21
+257073,0,0,0,21
+257074,0,0,0,21
+257075,0,0,0,21
+257076,0,0,0,21
+257077,0,0,0,21
+257078,0,0,0,21
+257079,0,0,0,21
+257080,0,0,0,21
+257081,0,0,0,21
+257082,0,0,0,21
+257083,0,0,0,21
+257084,0,0,0,21
+257085,0,0,0,21
+257086,0,0,0,21
+257087,0,0,0,21
+257088,0,0,0,21
+257089,0,0,0,21
+257090,0,0,0,21
+257091,0,0,0,21
+257092,0,0,0,21
+257093,0,0,0,21
+257094,0,0,0,21
+257095,0,0,0,21
+257096,0,0,0,21
+257097,0,0,0,21
+257098,0,0,0,21
+257099,0,0,0,21
+257100,0,0,0,21
+257101,0,0,0,21
+257102,0,0,0,21
+257103,0,0,0,21
+257104,0,0,0,21
+257105,0,0,0,21
+257106,0,0,0,21
+257107,0,0,0,21
+257108,0,0,0,21
+257109,0,0,0,21
+257110,0,0,0,21
+257111,0,0,0,21
+257112,0,0,0,21
+257113,0,0,0,21
+257114,0,0,0,21
+257115,0,0,0,21
+257116,0,0,0,21
+257117,0,0,0,21
+257118,0,0,0,21
+257119,0,0,0,21
+257120,0,0,0,21
+257121,0,0,0,21
+257122,0,0,0,21
+257123,0,0,0,21
+257124,0,0,0,21
+257125,0,0,0,21
+257126,0,0,0,21
+257127,0,0,0,21
+257128,0,0,0,21
+257129,0,0,0,21
+257130,0,0,0,21
+257131,0,0,0,21
+257132,0,0,0,21
+257133,0,0,0,21
+257134,0,0,0,21
+257135,0,0,0,21
+257136,0,0,0,21
+257137,0,0,0,21
+257138,0,0,0,21
+257139,0,0,0,21
+257140,0,0,0,21
+257141,0,0,0,21
+257142,0,0,0,21
+257143,0,0,0,21
+257144,0,0,0,21
+257145,0,0,0,21
+257146,0,0,0,21
+257147,0,0,0,21
+257148,0,0,0,21
+257149,0,0,0,21
+257150,0,0,0,21
+257151,0,0,0,21
+257152,0,0,0,21
+257153,0,0,0,21
+257154,0,0,0,21
+257155,0,0,0,21
+257156,0,0,0,21
+257157,0,0,0,21
+257158,0,0,0,21
+257159,0,0,0,21
+257160,0,0,0,21
+257161,0,0,0,21
+257162,0,0,0,21
+257163,0,0,0,21
+257164,0,0,0,21
+257165,0,0,0,21
+257166,0,0,0,21
+257167,0,0,0,21
+257168,0,0,0,21
+257169,0,0,0,21
+257170,0,0,0,21
+257171,0,0,0,21
+257172,0,0,0,21
+257173,0,0,0,21
+257174,0,0,0,21
+257175,0,0,0,21
+257176,0,0,0,21
+257177,0,0,0,21
+257178,0,0,0,21
+257179,0,0,0,21
+257180,0,0,0,21
+257181,0,0,0,21
+257182,0,0,0,21
+257183,0,0,0,21
+257184,0,0,0,21
+257185,0,0,0,21
+257186,0,0,0,21
+257187,0,0,0,21
+257188,0,0,0,21
+257189,0,0,0,21
+257190,0,0,0,21
+257191,0,0,0,21
+257192,0,0,0,21
+257193,0,0,0,21
+257194,0,0,0,21
+257195,0,0,0,21
+257196,0,0,0,21
+257197,0,0,0,21
+257198,0,0,0,21
+257199,0,0,0,21
+257200,0,0,0,21
+257201,0,0,0,21
+257202,0,0,0,21
+257203,0,0,0,21
+257204,0,0,0,21
+257205,0,0,0,21
+257206,0,0,0,21
+257207,0,0,0,21
+257208,0,0,0,21
+257209,0,0,0,21
+257210,0,0,0,21
+257211,0,0,0,21
+257212,0,0,0,21
+257213,0,0,0,21
+257214,0,0,0,21
+257215,0,0,0,21
+257216,0,0,0,21
+257217,0,0,0,21
+257218,0,0,0,21
+257219,0,0,0,21
+257220,0,0,0,21
+257221,0,0,0,21
+257222,0,0,0,21
+257223,0,0,0,21
+257224,0,0,0,21
+257225,0,0,0,21
+257226,0,0,0,21
+257227,0,0,0,21
+257228,0,0,0,21
+257229,0,0,0,21
+257230,0,0,0,21
+257231,0,0,0,21
+257232,0,0,0,21
+257233,0,0,0,21
+257234,0,0,0,21
+257235,0,0,0,21
+257236,0,0,0,21
+257237,0,0,0,21
+257238,0,0,0,21
+257239,0,0,0,21
+257240,0,0,0,21
+257241,0,0,0,21
+257242,0,0,0,21
+257243,0,0,0,21
+257244,0,0,0,21
+257245,0,0,0,21
+257246,0,0,0,21
+257247,0,0,0,21
+257248,0,0,0,21
+257249,0,0,0,21
+257250,0,0,0,21
+257251,0,0,0,21
+257252,0,0,0,21
+257253,0,0,0,21
+257254,0,0,0,21
+257255,0,0,0,21
+257256,0,0,0,21
+257257,0,0,0,21
+257258,0,0,0,21
+257259,0,0,0,21
+257260,0,0,0,21
+257261,0,0,0,21
+257262,0,0,0,21
+257263,0,0,0,21
+257264,0,0,0,21
+257265,0,0,0,21
+257266,0,0,0,21
+257267,0,0,0,21
+257268,0,0,0,21
+257269,0,0,0,21
+257270,0,0,0,21
+257271,0,0,0,21
+257272,0,0,0,21
+257273,0,0,0,21
+257274,0,0,0,21
+257275,0,0,0,21
+257276,0,0,0,21
+257277,0,0,0,21
+257278,0,0,0,21
+257279,0,0,0,21
+257280,0,0,0,21
+257281,0,0,0,21
+257282,0,0,0,21
+257283,0,0,0,21
+257284,0,0,0,21
+257285,0,0,0,21
+257286,0,0,0,21
+257287,0,0,0,21
+257288,0,0,0,21
+257289,0,0,0,21
+257290,0,0,0,21
+257291,0,0,0,21
+257292,0,0,0,21
+257293,0,0,0,21
+257294,0,0,0,21
+257295,0,0,0,21
+257296,0,0,0,21
+257297,0,0,0,21
+257298,0,0,0,21
+257299,0,0,0,21
+257300,0,0,0,21
+257301,0,0,0,21
+257302,0,0,0,21
+257303,0,0,0,21
+257304,0,0,0,21
+257305,0,0,0,21
+257306,0,0,0,21
+257307,0,0,0,21
+257308,0,0,0,21
+257309,0,0,0,21
+257310,0,0,0,21
+257311,0,0,0,21
+257312,0,0,0,21
+257313,0,0,0,21
+257314,0,0,0,21
+257315,0,0,0,21
+257316,0,0,0,21
+257317,0,0,0,21
+257318,0,0,0,21
+257319,0,0,0,21
+257320,0,0,0,21
+257321,0,0,0,21
+257322,0,0,0,21
+257323,0,0,0,21
+257324,0,0,0,21
+257325,0,0,0,21
+257326,0,0,0,21
+257327,0,0,0,21
+257328,0,0,0,21
+257329,0,0,0,21
+257330,0,0,0,21
+257331,0,0,0,21
+257332,0,0,0,21
+257333,0,0,0,21
+257334,0,0,0,21
+257335,0,0,0,21
+257336,0,0,0,21
+257337,0,0,0,21
+257338,0,0,0,21
+257339,0,0,0,21
+257340,0,0,0,21
+257341,0,0,0,21
+257342,0,0,0,21
+257343,0,0,0,21
+257344,0,0,0,21
+257345,0,0,0,21
+257346,0,0,0,21
+257347,0,0,0,21
+257348,0,0,0,21
+257349,0,0,0,21
+257350,0,0,0,21
+257351,0,0,0,21
+257352,0,0,0,21
+257353,0,0,0,21
+257354,0,0,0,21
+257355,0,0,0,21
+257356,0,0,0,21
+257357,0,0,0,21
+257358,0,0,0,21
+257359,0,0,0,21
+257360,0,0,0,21
+257361,0,0,0,21
+257362,0,0,0,21
+257363,0,0,0,21
+257364,0,0,0,21
+257365,0,0,0,21
+257366,0,0,0,21
+257367,0,0,0,21
+257368,0,0,0,21
+257369,0,0,0,21
+257370,0,0,0,21
+257371,0,0,0,21
+257372,0,0,0,21
+257373,0,0,0,21
+257374,0,0,0,21
+257375,0,0,0,21
+257376,0,0,0,21
+257377,0,0,0,21
+257378,0,0,0,21
+257379,0,0,0,21
+257380,0,0,0,21
+257381,0,0,0,21
+257382,0,0,0,21
+257383,0,0,0,21
+257384,0,0,0,21
+257385,0,0,0,21
+257386,0,0,0,21
+257387,0,0,0,21
+257388,0,0,0,21
+257389,0,0,0,21
+257390,0,0,0,21
+257391,0,0,0,21
+257392,0,0,0,21
+257393,0,0,0,21
+257394,0,0,0,21
+257395,0,0,0,21
+257396,0,0,0,21
+257397,0,0,0,21
+257398,0,0,0,21
+257399,0,0,0,21
+257400,0,0,0,21
+257401,0,0,0,21
+257402,0,0,0,21
+257403,0,0,0,21
+257404,0,0,0,21
+257405,0,0,0,21
+257406,0,0,0,21
+257407,0,0,0,21
+257408,0,0,0,21
+257409,0,0,0,21
+257410,0,0,0,21
+257411,0,0,0,21
+257412,0,0,0,21
+257413,0,0,0,21
+257414,0,0,0,21
+257415,0,0,0,21
+257416,0,0,0,21
+257417,0,0,0,21
+257418,0,0,0,21
+257419,0,0,0,21
+257420,0,0,0,21
+257421,0,0,0,21
+257422,0,0,0,21
+257423,0,0,0,21
+257424,0,0,0,21
+257425,0,0,0,21
+257426,0,0,0,21
+257427,0,0,0,21
+257428,0,0,0,21
+257429,0,0,0,21
+257430,0,0,0,21
+257431,0,0,0,21
+257432,0,0,0,21
+257433,0,0,0,21
+257434,0,0,0,21
+257435,0,0,0,21
+257436,0,0,0,21
+257437,0,0,0,21
+257438,0,0,0,21
+257439,0,0,0,21
+257440,0,0,0,21
+257441,0,0,0,21
+257442,0,0,0,21
+257443,0,0,0,21
+257444,0,0,0,21
+257445,0,0,0,21
+257446,0,0,0,21
+257447,0,0,0,21
+257448,0,0,0,21
+257449,0,0,0,21
+257450,0,0,0,21
+257451,0,0,0,21
+257452,0,0,0,21
+257453,0,0,0,21
+257454,0,0,0,21
+257455,0,0,0,21
+257456,0,0,0,21
+257457,0,0,0,21
+257458,0,0,0,21
+257459,0,0,0,21
+257460,0,0,0,21
+257461,0,0,0,21
+257462,0,0,0,21
+257463,0,0,0,21
+257464,0,0,0,21
+257465,0,0,0,21
+257466,0,0,0,21
+257467,0,0,0,21
+257468,0,0,0,21
+257469,0,0,0,21
+257470,0,0,0,21
+257471,0,0,0,21
+257472,0,0,0,21
+257473,0,362.5226883,0,21
+257474,0,1199.908606,0,21
+257475,0,788.2915327,0,21
+257476,0,1199.908681,0,21
+257477,0,1199.9087,0,21
+257478,0,1522.153556,0,21
+257479,0,1522.153593,0,21
+257480,0,1681.356986,0,21
+257481,0,1839.422816,0,21
+257482,0,1996.434614,0,21
+257483,0,1996.434665,0,21
+257484,0,2307.568159,0,21
+257485,0,2307.568169,0,21
+257486,0,2461.802554,0,21
+257487,0,2615.211871,0,21
+257488,0,2615.211903,0,21
+257489,0,2919.712423,0,21
+257490,0,2919.712406,0,21
+257491,0,3070.873454,0,21
+257492,0,3221.346225,0,21
+257493,0,3371.157638,0,21
+257494,0,3371.15768,0,21
+257495,0,3520.332134,0,21
+257496,0,3668.891575,0,21
+257497,0,3816.856203,0,21
+257498,0,3816.856405,0,21
+257499,0,4111.074639,0,21
+257500,0,3964.245074,0,21
+257501,0,4257.36142,0,21
+257502,0,4403.120137,0,21
+257503,0,4403.12019,0,21
+257504,0,4403.120425,0,21
+257505,0,4837.36385,0,21
+257506,0,4548.365212,0,21
+257507,0,4981.141105,0,21
+257508,0,4837.363776,0,21
+257509,0,5124.452533,0,21
+257510,0,5124.452745,0,21
+257511,0,5409.710012,0,21
+257512,0,5409.71419,0,21
+257513,0,5551.686445,0,21
+257514,0,5693.227977,0,21
+257515,0,5834.349918,0,21
+257516,0,5834.350149,0,21
+257517,0,5975.058702,0,21
+257518,0,6115.362664,0,21
+257519,0,6115.362659,0,21
+257520,0,6255.26829,0,21
+257521,0,6394.78389,0,21
+257522,0,6394.784448,0,21
+257523,0,6672.665729,0,21
+257524,0,6672.666348,0,21
+257525,0,6672.66678,0,21
+257526,0,6949.058451,0,21
+257527,0,6949.058582,0,21
+257528,0,6949.059256,0,21
+257529,0,7224.005736,0,21
+257530,0,7224.00614,0,21
+257531,0,7360.950782,0,21
+257532,0,7497.549491,0,21
+257533,0,7497.549941,0,21
+257534,0,7497.550531,0,21
+257535,0,7769.728723,0,21
+257536,0,7769.729237,0,21
+257537,0,8040.578155,0,21
+257538,0,7769.730243,0,21
+257539,0,8175.515555,0,21
+257540,0,8175.516377,0,21
+257541,0,8175.5169,0,21
+257542,0,8310.134025,0,21
+257543,0,8663.284793,0,21
+257544,0,8415.114186,0,21
+257545,0,8807.05704,0,21
+257546,0,8703.277034,0,21
+257547,0,8989.994706,0,21
+257548,0,8999.756156,0,21
+257549,0,9009.473131,0,21
+257550,0,9313.788629,0,21
+257551,0,9294.632115,0,21
+257552,0,9332.80954,0,21
+257553,0,9616.363341,0,21
+257554,0,9616.364361,0,21
+257555,0,9635.131891,0,21
+257556,0,9917.292981,0,21
+257557,0,9804.228523,0,21
+257558,0,10067.16696,0,21
+257559,0,10103.95597,0,21
+257560,0,10235.00343,0,21
+257561,0,10253.25632,0,21
+257562,0,10514.51886,0,21
+257563,0,10420.26709,0,21
+257564,0,10680.98178,0,21
+257565,0,10698.97728,0,21
+257566,0,10846.84381,0,21
+257567,0,10864.68332,0,21
+257568,0,11123.78348,0,21
+257569,0,11029.82298,0,21
+257570,0,11141.54989,0,21
+257571,0,11452.46219,0,21
+257572,0,11306.01712,0,21
+257573,0,11581.09912,0,21
+257574,0,11487.37532,0,21
+257575,0,11744.3891,0,21
+257576,0,11872.51431,0,21
+257577,0,11779.04859,0,21
+257578,0,12052.28237,0,21
+257579,0,12035.04701,0,21
+257580,0,12341.57837,0,21
+257581,0,0,0,21
+257582,0,0,0,21
+257583,0,0,0,21
+257584,0,0,0,21
+257585,330102.0704,366109.5563,674190.3166,21
+257586,0,0,0,21
+257587,0,0,0,21
+257588,0,0,0,21
+257589,0,0,0,21
+257590,0,0,0,21
+257591,0,0,0,21
+257592,0,0,0,21
+257593,0,0,0,21
+257594,0,0,0,21
+257595,0,0,0,21
+257596,0,0,0,21
+257597,0,0,0,21
+257598,0,0,0,21
+257599,0,0,0,21
+257600,0,0,0,21
+257601,0,0,0,21
+257602,0,0,0,21
+257603,0,0,0,21
+257604,0,0,0,21
+257605,0,0,0,21
+257606,0,0,0,21
+257607,0,0,0,21
+257608,0,0,0,21
+257609,0,0,0,21
+257610,0,0,0,21
+257611,0,0,0,21
+257612,0,0,0,21
+257613,0,0,0,21
+257614,0,0,0,21
+257615,0,0,0,21
+257616,0,0,0,21
+257617,0,0,0,21
+257618,0,0,0,21
+257619,330332.3633,366031.569,673100.2329,21
+257620,0,0,0,21
+257621,0,0,0,21
+257622,0,0,0,21
+257623,0,0,0,21
+257624,0,0,0,21
+257625,0,0,0,21
+257626,0,0,0,21
+257627,0,0,0,21
+257628,0,0,0,21
+257629,0,0,0,21
+257630,0,0,0,21
+257631,0,0,0,21
+257632,0,0,0,21
+257633,0,0,0,21
+257634,0,0,0,21
+257635,0,0,0,21
+257636,0,0,0,21
+257637,0,0,0,21
+257638,0,0,0,21
+257639,0,0,0,21
+257640,0,0,0,15.6
+257641,0,0,0,15.6
+257642,0,0,0,15.6
+257643,0,0,0,15.6
+257644,0,0,0,15.6
+257645,0,0,0,15.6
+257646,0,0,0,15.6
+257647,0,0,0,15.6
+257648,0,0,0,15.6
+257649,0,0,0,15.6
+257650,0,0,0,15.6
+257651,0,0,0,15.6
+257652,0,0,0,15.6
+257653,0,366179.7879,672750.0401,15.6
+257654,332285.6722,0,0,15.6
+257655,0,0,0,15.6
+257656,0,0,0,15.6
+257657,0,0,0,15.6
+257658,0,0,0,15.6
+257659,0,0,0,15.6
+257660,0,0,0,15.6
+257661,0,0,0,15.6
+257662,0,0,0,15.6
+257663,0,0,0,15.6
+257664,0,0,0,15.6
+257665,0,0,0,15.6
+257666,0,0,0,15.6
+257667,0,0,0,15.6
+257668,0,0,0,15.6
+257669,0,0,0,15.6
+257670,0,0,0,15.6
+257671,0,0,0,15.6
+257672,0,0,0,15.6
+257673,0,0,0,15.6
+257674,0,0,0,15.6
+257675,0,0,0,15.6
+257676,0,0,0,15.6
+257677,0,0,0,15.6
+257678,0,0,0,15.6
+257679,0,0,0,15.6
+257680,0,0,0,15.6
+257681,0,0,0,15.6
+257682,0,0,0,15.6
+257683,0,0,0,15.6
+257684,0,0,0,15.6
+257685,0,0,0,15.6
+257686,0,0,0,15.6
+257687,0,0,672224.0435,15.6
+257688,0,365924.9598,0,15.6
+257689,332156.2738,0,0,15.6
+257690,0,0,0,15.6
+257691,0,0,0,15.6
+257692,0,0,0,15.6
+257693,0,0,0,15.6
+257694,0,0,0,15.6
+257695,0,0,0,15.6
+257696,0,0,0,15.6
+257697,0,0,0,15.6
+257698,0,0,0,15.6
+257699,0,0,0,15.6
+257700,0,0,0,15.6
+257701,0,0,0,15.6
+257702,0,0,0,15.6
+257703,0,0,0,15.6
+257704,0,0,0,15.6
+257705,0,0,0,15.6
+257706,0,0,0,15.6
+257707,0,0,0,15.6
+257708,0,0,0,15.6
+257709,0,0,0,15.6
+257710,0,0,0,15.6
+257711,0,0,0,15.6
+257712,0,0,0,15.6
+257713,0,0,0,15.6
+257714,0,0,0,15.6
+257715,0,0,0,15.6
+257716,0,0,0,15.6
+257717,0,0,0,15.6
+257718,0,0,0,15.6
+257719,0,0,0,15.6
+257720,0,0,0,15.6
+257721,0,0,671399.893,15.6
+257722,0,0,0,15.6
+257723,0,365664.3075,0,15.6
+257724,334308.9755,0,0,15.6
+257725,0,0,0,15.6
+257726,0,0,0,15.6
+257727,0,0,0,15.6
+257728,0,0,0,15.6
+257729,0,0,0,15.6
+257730,0,0,0,15.6
+257731,0,0,0,15.6
+257732,0,0,0,15.6
+257733,0,0,0,15.6
+257734,0,0,0,15.6
+257735,0,0,0,15.6
+257736,0,0,0,15.6
+257737,0,0,0,15.6
+257738,0,0,0,15.6
+257739,0,0,0,15.6
+257740,0,0,0,15.6
+257741,0,0,0,15.6
+257742,0,0,0,15.6
+257743,0,0,0,15.6
+257744,0,0,0,15.6
+257745,0,0,0,15.6
+257746,0,0,0,15.6
+257747,0,0,0,15.6
+257748,0,0,0,15.6
+257749,0,0,0,15.6
+257750,0,0,0,15.6
+257751,0,0,0,15.6
+257752,0,0,0,15.6
+257753,0,0,0,15.6
+257754,0,0,0,15.6
+257755,0,0,670808.9242,15.6
+257756,0,0,0,15.6
+257757,0,0,0,15.6
+257758,0,365586.8375,0,15.6
+257759,333332.1816,0,0,15.6
+257760,0,0,0,15.6
+257761,0,0,0,15.6
+257762,0,0,0,15.6
+257763,0,0,0,15.6
+257764,0,0,0,15.6
+257765,0,0,0,15.6
+257766,0,0,0,15.6
+257767,0,0,0,15.6
+257768,0,0,0,15.6
+257769,0,0,0,15.6
+257770,0,0,0,15.6
+257771,0,0,0,15.6
+257772,0,0,0,15.6
+257773,0,0,0,15.6
+257774,0,0,0,15.6
+257775,0,0,0,15.6
+257776,0,0,0,15.6
+257777,0,0,0,15.6
+257778,0,0,0,15.6
+257779,0,0,0,15.6
+257780,0,0,0,15.6
+257781,0,0,0,15.6
+257782,0,0,0,15.6
+257783,0,0,0,15.6
+257784,0,0,0,15.6
+257785,0,0,0,15.6
+257786,0,0,0,15.6
+257787,0,0,0,15.6
+257788,0,0,0,15.6
+257789,0,0,669953.1524,15.6
+257790,0,0,0,15.6
+257791,0,0,0,15.6
+257792,0,0,0,15.6
+257793,0,366118.4445,0,15.6
+257794,335300.0235,0,0,15.6
+257795,0,0,0,15.6
+257796,0,0,0,15.6
+257797,0,0,0,15.6
+257798,0,0,0,15.6
+257799,0,0,0,15.6
+257800,0,0,0,15.6
+257801,0,0,0,15.6
+257802,0,0,0,15.6
+257803,0,0,0,15.6
+257804,0,0,0,15.6
+257805,0,0,0,15.6
+257806,0,0,0,15.6
+257807,0,0,0,15.6
+257808,0,0,0,15.6
+257809,0,0,0,15.6
+257810,0,0,0,15.6
+257811,0,0,0,15.6
+257812,0,0,0,15.6
+257813,0,0,0,15.6
+257814,0,0,0,15.6
+257815,0,0,0,15.6
+257816,0,0,0,15.6
+257817,0,0,0,15.6
+257818,0,0,0,15.6
+257819,0,0,0,15.6
+257820,0,0,0,15.6
+257821,0,0,0,15.6
+257822,0,0,0,15.6
+257823,0,0,669140.172,15.6
+257824,0,0,0,15.6
+257825,0,0,0,15.6
+257826,0,0,0,15.6
+257827,0,0,0,15.6
+257828,0,367027.0133,0,15.6
+257829,334279.3619,0,0,15.6
+257830,0,0,0,15.6
+257831,0,0,0,15.6
+257832,0,0,0,15.6
+257833,0,0,0,15.6
+257834,0,0,0,15.6
+257835,0,0,0,15.6
+257836,0,0,0,15.6
+257837,0,0,0,15.6
+257838,0,0,0,15.6
+257839,0,0,0,15.6
+257840,0,0,0,15.6
+257841,0,0,0,15.6
+257842,0,0,0,15.6
+257843,0,0,0,15.6
+257844,0,0,0,15.6
+257845,0,0,0,15.6
+257846,0,0,0,15.6
+257847,0,0,0,15.6
+257848,0,0,0,15.6
+257849,0,0,0,15.6
+257850,0,0,0,15.6
+257851,0,0,0,15.6
+257852,0,0,0,15.6
+257853,0,0,0,15.6
+257854,0,0,0,15.6
+257855,0,0,0,15.6
+257856,0,0,0,15.6
+257857,0,0,668199.4798,15.6
+257858,0,0,0,15.6
+257859,0,0,0,15.6
+257860,0,0,0,15.6
+257861,0,0,0,15.6
+257862,0,0,0,15.6
+257863,0,367467.9787,0,15.6
+257864,335802.3252,0,0,15.6
+257865,0,0,0,15.6
+257866,0,0,0,15.6
+257867,0,0,0,15.6
+257868,0,0,0,15.6
+257869,0,0,0,15.6
+257870,0,0,0,15.6
+257871,0,0,0,15.6
+257872,0,0,0,15.6
+257873,0,0,0,15.6
+257874,0,0,0,15.6
+257875,0,0,0,15.6
+257876,0,0,0,15.6
+257877,0,0,0,15.6
+257878,0,0,0,15.6
+257879,0,0,0,15.6
+257880,0,0,0,15.6
+257881,0,0,0,15.6
+257882,0,0,0,15.6
+257883,0,0,0,15.6
+257884,0,0,0,15.6
+257885,0,0,0,15.6
+257886,0,0,0,15.6
+257887,0,0,0,15.6
+257888,0,0,0,15.6
+257889,0,0,0,15.6
+257890,0,0,0,15.6
+257891,0,0,667193.2815,15.6
+257892,0,0,0,15.6
+257893,0,0,0,15.6
+257894,0,0,0,15.6
+257895,0,0,0,15.6
+257896,0,0,0,15.6
+257897,0,0,0,15.6
+257898,0,367705.4707,0,15.6
+257899,334833.334,0,0,15.6
+257900,0,0,0,15.6
+257901,0,0,0,15.6
+257902,0,0,0,15.6
+257903,0,0,0,15.6
+257904,0,0,0,15.6
+257905,0,0,0,15.6
+257906,0,0,0,15.6
+257907,0,0,0,15.6
+257908,0,0,0,15.6
+257909,0,0,0,15.6
+257910,0,0,0,15.6
+257911,0,0,0,15.6
+257912,0,0,0,15.6
+257913,0,0,0,15.6
+257914,0,0,0,15.6
+257915,0,0,0,15.6
+257916,0,0,0,15.6
+257917,0,0,0,15.6
+257918,0,0,0,15.6
+257919,0,0,0,15.6
+257920,0,0,0,15.6
+257921,0,0,0,15.6
+257922,0,0,0,15.6
+257923,0,0,0,15.6
+257924,0,0,0,15.6
+257925,0,0,666768.0013,15.6
+257926,0,0,0,15.6
+257927,0,0,0,15.6
+257928,0,0,0,15.6
+257929,0,0,0,15.6
+257930,0,0,0,15.6
+257931,0,0,0,15.6
+257932,0,0,0,15.6
+257933,0,366800.1575,0,15.6
+257934,336424.9164,0,0,15.6
+257935,0,0,0,15.6
+257936,0,0,0,15.6
+257937,0,0,0,15.6
+257938,0,0,0,15.6
+257939,0,0,0,15.6
+257940,0,0,0,15.6
+257941,0,0,0,15.6
+257942,0,0,0,15.6
+257943,0,0,0,15.6
+257944,0,0,0,15.6
+257945,0,0,0,15.6
+257946,0,0,0,15.6
+257947,0,0,0,15.6
+257948,0,0,0,15.6
+257949,0,0,0,15.6
+257950,0,0,0,15.6
+257951,0,0,0,15.6
+257952,0,0,0,15.6
+257953,0,0,0,15.6
+257954,0,0,0,15.6
+257955,0,0,0,15.6
+257956,0,0,0,15.6
+257957,0,0,0,15.6
+257958,0,0,0,15.6
+257959,0,0,665965.2555,15.6
+257960,0,0,0,15.6
+257961,0,0,0,15.6
+257962,0,0,0,15.6
+257963,0,0,0,15.6
+257964,0,0,0,15.6
+257965,0,0,0,15.6
+257966,0,0,0,15.6
+257967,0,0,0,15.6
+257968,335287.5508,369428.4709,0,15.6
+257969,0,0,0,15.6
+257970,0,0,0,15.6
+257971,0,0,0,15.6
+257972,0,0,0,15.6
+257973,0,0,0,15.6
+257974,0,0,0,15.6
+257975,0,0,0,15.6
+257976,0,0,0,15.6
+257977,0,0,0,15.6
+257978,0,0,0,15.6
+257979,0,0,0,15.6
+257980,0,0,0,15.6
+257981,0,0,0,15.6
+257982,0,0,0,15.6
+257983,0,0,0,15.6
+257984,0,0,0,15.6
+257985,0,0,0,15.6
+257986,0,0,0,15.6
+257987,0,0,0,15.6
+257988,0,0,0,15.6
+257989,0,0,0,15.6
+257990,0,0,0,15.6
+257991,0,0,0,15.6
+257992,0,0,0,15.6
+257993,0,0,665253.567,15.6
+257994,0,0,0,15.6
+257995,0,0,0,15.6
+257996,0,0,0,15.6
+257997,0,0,0,15.6
+257998,0,0,0,15.6
+257999,0,0,0,15.6
+258000,0,0,0,17.8
+258001,0,67135.56967,0,17.8
+258002,336701.5247,369419.739,0,17.8
+258003,0,0,0,17.8
+258004,0,8335.037731,0,17.8
+258005,0,18970.16477,0,17.8
+258006,0,10471.19922,0,17.8
+258007,0,12899.19788,0,17.8
+258008,0,12947.02342,0,17.8
+258009,0,13355.16283,0,17.8
+258010,0,13606.08291,0,17.8
+258011,0,13653.46838,0,17.8
+258012,0,14058.62713,0,17.8
+258013,0,13653.46766,0,17.8
+258014,0,1843.924633,0,17.8
+258015,0,1843.924556,0,17.8
+258016,0,1890.886644,0,17.8
+258017,0,1890.886562,0,17.8
+258018,0,1914.290017,0,17.8
+258019,0,1960.944144,0,17.8
+258020,0,1937.642284,0,17.8
+258021,0,2007.397211,0,17.8
+258022,0,1984.19541,0,17.8
+258023,0,2030.549316,0,17.8
+258024,0,2053.65249,0,17.8
+258025,0,2053.652394,0,17.8
+258026,0,0,0,17.8
+258027,0,13266.44053,664636.5139,17.8
+258028,0,12463.72457,0,17.8
+258029,0,10422.75742,0,17.8
+258030,0,12261.86957,0,17.8
+258031,0,12059.53294,0,17.8
+258032,0,12463.72323,0,17.8
+258033,0,12463.72229,0,17.8
+258034,0,12665.10123,0,17.8
+258035,0,12866.00893,0,17.8
+258036,335487.1437,382088.9524,0,17.8
+258037,0,13066.45224,0,17.8
+258038,0,13066.45252,0,17.8
+258039,0,13066.45153,0,17.8
+258040,0,13266.43631,0,17.8
+258041,0,13394.76113,0,17.8
+258042,0,17231.39332,0,17.8
+258043,0,14628.47591,0,17.8
+258044,0,15718.69808,0,17.8
+258045,0,15764.75499,0,17.8
+258046,0,15986.34995,0,17.8
+258047,0,15787.71367,0,17.8
+258048,0,16230.31989,0,17.8
+258049,0,16009.25972,0,17.8
+258050,0,2191.260137,0,17.8
+258051,0,2168.443201,0,17.8
+258052,0,2214.030663,0,17.8
+258053,0,2214.030675,0,17.8
+258054,0,2236.755039,0,17.8
+258055,0,2214.030688,0,17.8
+258056,0,2282.066667,0,17.8
+258057,0,2236.75504,0,17.8
+258058,0,2282.066652,0,17.8
+258059,0,5743.558381,0,17.8
+258060,0,24318.35837,0,20
+258061,0,534955.341,664395.5372,20
+258062,0,0,0,20
+258063,0,0,0,20
+258064,0,7228.211456,0,20
+258065,0,121331.7032,0,20
+258066,0,50667.94625,0,20
+258067,0,62587.98861,0,20
+258068,5159.587499,64435.61831,0,20
+258069,13616.77495,64487.8757,0,20
+258070,8582.350005,64205.81905,0,20
+258071,10256.13166,63939.13564,0,20
+258072,11159.8589,63742.7764,0,20
+258073,11212.63177,63676.44255,0,20
+258074,11171.30733,63299.79012,0,20
+258075,11288.15207,63350.86875,0,20
+258076,11435.98625,63340.12773,0,20
+258077,13884.70273,62708.33309,0,20
+258078,13860.91487,62999.60083,0,20
+258079,13798.02173,62675.64569,0,20
+258080,14193.47038,62655.92409,0,20
+258081,14330.27239,62319.28258,0,20
+258082,14589.08642,62317.01833,0,20
+258083,14644.70009,62439.69081,0,20
+258084,14992.34042,61649.76988,0,20
+258085,14929.10221,62250.34298,0,20
+258086,15379.21088,61736.19259,0,20
+258087,15225.44793,61616.8539,0,20
+258088,15554.08875,61719.7578,0,20
+258089,15478.41397,61394.74443,0,20
+258090,15861.04859,61272.10302,0,20
+258091,15743.56468,61447.75274,0,20
+258092,15547.69547,60926.26706,0,20
+258093,15442.92735,61135.81746,0,20
+258094,15348.2943,60893.22568,0,20
+258095,15122.59169,60791.70379,0,20
+258096,15029.94262,60531.62511,0,20
+258097,14813.07701,60772.62431,0,20
+258098,14570.75954,60410.98233,0,20
+258099,13640.24301,60527.52552,0,20
+258100,13178.59545,60082.58901,0,20
+258101,12809.30133,60391.76395,0,20
+258102,12557.31563,60082.60029,0,20
+258103,12250.9027,59904.1875,0,20
+258104,12066.5494,59716.66605,0,20
+258105,11494.84252,60042.29934,0,20
+258106,11365.10259,59698.29988,0,20
+258107,10856.66786,59348.74008,0,20
+258108,10606.87751,59646.42863,0,20
+258109,10102.30684,59344.41341,0,20
+258110,9962.660669,59438.45466,0,20
+258111,9319.580227,58994.94156,0,20
+258112,9043.496502,59384.75722,0,20
+258113,8530.43469,58976.49428,0,20
+258114,8339.935183,58738.61555,0,20
+258115,7706.925967,59081.85755,0,20
+258116,7367.712227,58562.53512,0,20
+258117,6973.521882,58832.7734,0,20
+258118,6498.02816,58247.38759,0,20
+258119,6166.263114,58815.85177,0,20
+258120,5982.361211,58311.66496,0,21
+258121,4146.366405,53524.0012,0,21
+258122,3983.970195,53278.25844,0,21
+258123,3754.167916,52339.26514,0,21
+258124,3848.580458,52616.05096,0,21
+258125,3740.364792,52054.73779,0,21
+258126,3617.802036,51803.013,0,21
+258127,3590.101715,51984.354,0,21
+258128,3617.801986,51043.25764,0,21
+258129,3343.35715,51387.09276,0,21
+258130,3603.967614,50954.65716,0,21
+258131,3219.12991,50516.8023,0,21
+258132,3329.459236,50775.49174,0,21
+258133,3343.357097,50118.08361,0,21
+258134,3080.400543,49917.03163,0,21
+258135,3205.23201,50061.58319,0,21
+258136,3080.400527,49501.09516,0,21
+258137,3066.470539,49403.45262,0,21
+258138,2814.872331,49151.933,0,21
+258139,3066.470569,48986.40558,0,21
+258140,2660.077159,48934.20378,0,21
+258141,2941.005045,48138.59639,0,21
+258142,2532.491987,48564.52757,0,21
+258143,2786.914497,48199.22757,0,21
+258144,2532.492127,47881.60059,0,21
+258145,2518.463502,47533.54869,0,21
+258146,2246.78146,47793.69593,0,21
+258147,2390.081181,47014.68307,0,21
+258148,2232.685021,47388.15911,0,21
+258149,2102.52371,46960.8004,0,21
+258150,2088.392785,46553.49307,0,21
+258151,1971.355524,46552.39524,0,21
+258152,1943.058987,46178.33716,0,21
+258153,1957.224737,46484.66219,0,21
+258154,1663.067467,45526.39604,0,21
+258155,1796.581245,46090.72283,0,21
+258156,1663.067467,45416.15345,0,21
+258157,1528.148056,45419.75387,0,21
+258158,1499.63798,45173.34909,0,21
+258159,1499.63793,45080.93621,0,21
+258160,1363.083266,44613.01573,0,21
+258161,1224.557488,44992.74457,0,21
+258162,1334.426033,44099.61951,0,21
+258163,1054.861578,44470.8219,0,21
+258164,1054.861694,44194.16606,0,21
+258165,1040.47664,43716.61568,0,21
+258166,895.8724618,43747.22231,0,21
+258167,881.4491079,43620.12156,0,21
+258168,715.1197916,43290.43248,0,21
+258169,729.5819532,43281.66994,0,21
+258170,700.6181036,43104.00278,0,21
+258171,700.6180939,42522.28528,0,21
+258172,686.0763429,43084.73654,0,21
+258173,686.0762444,42289.95835,0,21
+258174,671.4938632,42373.64205,0,21
+258175,656.8699842,42231.3132,0,21
+258176,656.8700072,41839.07851,0,21
+258177,656.8699927,41854.3286,0,21
+258178,627.4953564,41417.77471,0,21
+258179,627.495314,41532.29715,0,21
+258180,627.4953539,41327.2245,0,21
+258181,0,10271.18087,0,21
+258182,0,8772.950636,0,21
+258183,0,8499.823807,0,21
+258184,0,7797.276138,0,21
+258185,0,7528.607692,0,21
+258186,0,7283.657405,0,21
+258187,0,6791.010201,0,21
+258188,0,6344.445467,0,21
+258189,0,6269.446003,0,21
+258190,0,5819.048074,0,21
+258191,0,5567.179578,0,21
+258192,0,5288.876846,0,21
+258193,0,5034.587109,0,21
+258194,0,4547.696439,0,21
+258195,0,4263.937438,0,21
+258196,0,4263.937632,0,21
+258197,0,3742.95416,0,21
+258198,0,3480.017195,0,21
+258199,0,3241.207557,0,21
+258200,0,2922.519158,0,21
+258201,0,2679.80584,0,21
+258202,0,2408.628674,0,21
+258203,0,2108.402314,0,21
+258204,0,1983.518939,0,21
+258205,0,1563.883128,0,21
+258206,0,1395.179263,0,21
+258207,0,999.8121003,0,21
+258208,0,946.1535026,0,21
+258209,0,640.6446685,0,21
+258210,0,640.6447045,0,21
+258211,0,586.304719,0,21
+258212,0,558.9510327,0,21
+258213,0,558.9511079,0,21
+258214,0,503.8524478,0,21
+258215,0,476.0962248,0,21
+258216,0,476.0960967,0,21
+258217,0,420.1371158,0,21
+258218,0,406.0487411,0,21
+258219,0,391.9187185,0,21
+258220,0,334.9559438,0,21
+258221,0,334.9559623,0,21
+258222,0,277.2092316,0,21
+258223,0,277.2091449,0,21
+258224,0,218.5423993,0,21
+258225,0,218.5424912,0,21
+258226,0,158.747557,0,21
+258227,0,128.3241232,0,21
+258228,0,112.9527522,0,21
+258229,0,66.03359063,0,21
+258230,0,33.81648774,0,21
+258231,0,17.24306039,0,21
+258232,0,0,0,21
+258233,0,0,0,21
+258234,0,0,0,21
+258235,0,0,0,21
+258236,0,0,0,21
+258237,0,0,0,21
+258238,0,0,0,21
+258239,0,0,0,21
+258240,0,0,0,21
+258241,0,0,0,21
+258242,0,0,0,21
+258243,0,0,0,21
+258244,0,0,0,21
+258245,0,0,0,21
+258246,0,0,0,21
+258247,0,0,0,21
+258248,0,0,0,21
+258249,0,0,0,21
+258250,0,0,0,21
+258251,0,0,0,21
+258252,0,0,0,21
+258253,0,0,0,21
+258254,0,0,0,21
+258255,0,0,0,21
+258256,0,0,0,21
+258257,0,0,0,21
+258258,0,0,0,21
+258259,0,0,0,21
+258260,0,0,0,21
+258261,0,0,0,21
+258262,0,0,0,21
+258263,0,0,0,21
+258264,0,0,0,21
+258265,0,0,0,21
+258266,0,0,0,21
+258267,0,0,0,21
+258268,0,0,0,21
+258269,0,0,0,21
+258270,0,0,0,21
+258271,0,0,0,21
+258272,0,0,0,21
+258273,0,0,0,21
+258274,0,0,0,21
+258275,0,0,0,21
+258276,0,0,0,21
+258277,0,0,0,21
+258278,0,0,0,21
+258279,0,0,0,21
+258280,0,0,0,21
+258281,0,0,0,21
+258282,0,0,0,21
+258283,0,0,0,21
+258284,0,0,0,21
+258285,0,0,0,21
+258286,0,0,0,21
+258287,0,0,0,21
+258288,0,0,0,21
+258289,0,0,0,21
+258290,0,0,0,21
+258291,0,0,0,21
+258292,0,0,0,21
+258293,0,0,0,21
+258294,0,0,0,21
+258295,0,0,0,21
+258296,0,0,0,21
+258297,0,0,0,21
+258298,0,0,0,21
+258299,0,0,0,21
+258300,0,0,0,21
+258301,0,0,0,21
+258302,0,0,0,21
+258303,0,0,0,21
+258304,0,0,0,21
+258305,0,0,0,21
+258306,0,0,0,21
+258307,0,0,0,21
+258308,0,0,0,21
+258309,0,0,0,21
+258310,0,0,0,21
+258311,0,0,0,21
+258312,0,0,0,21
+258313,0,0,0,21
+258314,0,0,0,21
+258315,0,0,0,21
+258316,0,0,0,21
+258317,0,0,0,21
+258318,0,0,0,21
+258319,0,0,0,21
+258320,0,0,0,21
+258321,0,0,0,21
+258322,0,0,0,21
+258323,0,0,0,21
+258324,0,0,0,21
+258325,0,0,0,21
+258326,0,0,0,21
+258327,0,0,0,21
+258328,0,0,0,21
+258329,0,0,0,21
+258330,0,0,0,21
+258331,0,0,0,21
+258332,0,0,0,21
+258333,0,0,0,21
+258334,0,0,0,21
+258335,0,0,0,21
+258336,0,0,0,21
+258337,0,0,0,21
+258338,0,0,0,21
+258339,0,0,0,21
+258340,0,0,0,21
+258341,0,0,0,21
+258342,0,0,0,21
+258343,0,0,0,21
+258344,0,0,0,21
+258345,0,0,0,21
+258346,0,0,0,21
+258347,0,0,0,21
+258348,0,0,0,21
+258349,0,0,0,21
+258350,0,0,0,21
+258351,0,0,0,21
+258352,0,0,0,21
+258353,0,0,0,21
+258354,0,0,0,21
+258355,0,0,0,21
+258356,0,0,0,21
+258357,0,0,0,21
+258358,0,0,0,21
+258359,0,0,0,21
+258360,0,0,0,21
+258361,0,0,0,21
+258362,0,0,0,21
+258363,0,0,0,21
+258364,0,0,0,21
+258365,0,0,0,21
+258366,0,0,0,21
+258367,0,0,0,21
+258368,0,0,0,21
+258369,0,0,0,21
+258370,0,0,0,21
+258371,0,0,0,21
+258372,0,0,0,21
+258373,0,0,0,21
+258374,0,0,0,21
+258375,0,0,0,21
+258376,0,0,0,21
+258377,0,0,0,21
+258378,0,0,0,21
+258379,0,0,0,21
+258380,0,0,0,21
+258381,0,0,0,21
+258382,0,0,0,21
+258383,0,0,0,21
+258384,0,0,0,21
+258385,0,0,0,21
+258386,0,0,0,21
+258387,0,0,0,21
+258388,0,0,0,21
+258389,0,0,0,21
+258390,0,0,0,21
+258391,0,0,0,21
+258392,0,0,0,21
+258393,0,0,0,21
+258394,0,0,0,21
+258395,0,0,0,21
+258396,0,0,0,21
+258397,0,0,0,21
+258398,0,0,0,21
+258399,0,0,0,21
+258400,0,0,0,21
+258401,0,0,0,21
+258402,0,0,0,21
+258403,0,0,0,21
+258404,0,0,0,21
+258405,0,0,0,21
+258406,0,0,0,21
+258407,0,0,0,21
+258408,0,0,0,21
+258409,0,0,0,21
+258410,0,0,0,21
+258411,0,0,0,21
+258412,0,0,0,21
+258413,0,0,0,21
+258414,0,0,0,21
+258415,0,0,0,21
+258416,0,0,0,21
+258417,0,0,0,21
+258418,0,0,0,21
+258419,0,0,0,21
+258420,0,0,0,21
+258421,0,0,0,21
+258422,0,0,0,21
+258423,0,0,0,21
+258424,0,0,0,21
+258425,0,0,0,21
+258426,0,0,0,21
+258427,0,0,0,21
+258428,0,0,0,21
+258429,0,0,0,21
+258430,0,0,0,21
+258431,0,0,0,21
+258432,0,0,0,21
+258433,0,0,0,21
+258434,0,0,0,21
+258435,0,0,0,21
+258436,0,0,0,21
+258437,0,0,0,21
+258438,0,0,0,21
+258439,0,0,0,21
+258440,0,0,0,21
+258441,0,0,0,21
+258442,0,0,0,21
+258443,0,0,0,21
+258444,0,0,0,21
+258445,0,0,0,21
+258446,0,0,0,21
+258447,0,0,0,21
+258448,0,0,0,21
+258449,0,0,0,21
+258450,0,0,0,21
+258451,0,0,0,21
+258452,0,0,0,21
+258453,0,0,0,21
+258454,0,0,0,21
+258455,0,0,0,21
+258456,0,0,0,21
+258457,0,0,0,21
+258458,0,0,0,21
+258459,0,0,0,21
+258460,0,0,0,21
+258461,0,0,0,21
+258462,0,0,0,21
+258463,0,0,0,21
+258464,0,0,0,21
+258465,0,0,0,21
+258466,0,0,0,21
+258467,0,0,0,21
+258468,0,0,0,21
+258469,0,0,0,21
+258470,0,0,0,21
+258471,0,0,0,21
+258472,0,0,0,21
+258473,0,0,0,21
+258474,0,0,0,21
+258475,0,0,0,21
+258476,0,0,0,21
+258477,0,0,0,21
+258478,0,0,0,21
+258479,0,0,0,21
+258480,0,0,0,21
+258481,0,0,0,21
+258482,0,0,0,21
+258483,0,0,0,21
+258484,0,0,0,21
+258485,0,0,0,21
+258486,0,0,0,21
+258487,0,0,0,21
+258488,0,0,0,21
+258489,0,0,0,21
+258490,0,0,0,21
+258491,0,0,0,21
+258492,0,0,0,21
+258493,0,0,0,21
+258494,0,0,0,21
+258495,0,0,0,21
+258496,0,0,0,21
+258497,0,0,0,21
+258498,0,0,0,21
+258499,0,0,0,21
+258500,0,0,0,21
+258501,0,0,0,21
+258502,0,0,0,21
+258503,0,0,0,21
+258504,0,0,0,21
+258505,0,0,0,21
+258506,0,0,0,21
+258507,0,0,0,21
+258508,0,0,0,21
+258509,0,0,0,21
+258510,0,0,0,21
+258511,0,0,0,21
+258512,0,0,0,21
+258513,0,0,0,21
+258514,0,0,0,21
+258515,0,0,0,21
+258516,0,0,0,21
+258517,0,0,0,21
+258518,0,0,0,21
+258519,0,0,0,21
+258520,0,0,0,21
+258521,0,0,0,21
+258522,0,0,0,21
+258523,0,0,0,21
+258524,0,0,0,21
+258525,0,0,0,21
+258526,0,0,0,21
+258527,0,0,0,21
+258528,0,0,0,21
+258529,0,0,0,21
+258530,0,0,0,21
+258531,0,0,0,21
+258532,0,0,0,21
+258533,0,0,0,21
+258534,0,0,0,21
+258535,0,0,0,21
+258536,0,0,0,21
+258537,0,0,0,21
+258538,0,0,0,21
+258539,0,0,0,21
+258540,0,0,0,21
+258541,0,0,0,21
+258542,0,0,0,21
+258543,0,0,0,21
+258544,0,0,0,21
+258545,0,0,0,21
+258546,0,0,0,21
+258547,0,0,0,21
+258548,0,0,0,21
+258549,0,0,0,21
+258550,0,0,0,21
+258551,0,0,0,21
+258552,0,0,0,21
+258553,0,0,0,21
+258554,0,0,0,21
+258555,0,0,0,21
+258556,0,0,0,21
+258557,0,0,0,21
+258558,0,0,0,21
+258559,0,0,0,21
+258560,0,0,0,21
+258561,0,0,0,21
+258562,0,0,0,21
+258563,0,0,0,21
+258564,0,0,0,21
+258565,0,0,0,21
+258566,0,0,0,21
+258567,0,0,0,21
+258568,0,0,0,21
+258569,0,0,0,21
+258570,0,0,0,21
+258571,0,0,0,21
+258572,0,0,0,21
+258573,0,0,0,21
+258574,0,0,0,21
+258575,0,0,0,21
+258576,0,0,0,21
+258577,0,0,0,21
+258578,0,0,0,21
+258579,0,0,0,21
+258580,0,0,0,21
+258581,0,0,0,21
+258582,0,0,0,21
+258583,0,0,0,21
+258584,0,0,0,21
+258585,0,0,0,21
+258586,0,0,0,21
+258587,0,0,0,21
+258588,0,0,0,21
+258589,0,0,0,21
+258590,0,0,0,21
+258591,0,0,0,21
+258592,0,0,0,21
+258593,0,0,0,21
+258594,0,0,0,21
+258595,0,0,0,21
+258596,0,0,0,21
+258597,0,0,0,21
+258598,0,0,0,21
+258599,0,0,0,21
+258600,0,0,0,21
+258601,0,0,0,21
+258602,0,0,0,21
+258603,0,0,0,21
+258604,0,0,0,21
+258605,0,0,0,21
+258606,0,0,0,21
+258607,0,0,0,21
+258608,0,0,0,21
+258609,0,0,0,21
+258610,0,0,0,21
+258611,0,0,0,21
+258612,0,0,0,21
+258613,0,0,0,21
+258614,0,0,0,21
+258615,0,0,0,21
+258616,0,0,0,21
+258617,0,0,0,21
+258618,0,0,0,21
+258619,0,0,0,21
+258620,0,0,0,21
+258621,0,0,0,21
+258622,0,0,0,21
+258623,0,0,0,21
+258624,0,0,0,21
+258625,0,0,0,21
+258626,0,0,0,21
+258627,0,0,0,21
+258628,0,0,0,21
+258629,0,0,0,21
+258630,0,0,0,21
+258631,0,0,0,21
+258632,0,0,0,21
+258633,0,0,0,21
+258634,0,0,0,21
+258635,0,0,0,21
+258636,0,0,0,21
+258637,0,0,0,21
+258638,0,0,0,21
+258639,0,0,0,21
+258640,0,0,0,21
+258641,0,0,0,21
+258642,0,0,0,21
+258643,0,0,0,21
+258644,0,0,0,21
+258645,0,0,0,21
+258646,0,0,0,21
+258647,0,0,0,21
+258648,0,0,0,21
+258649,0,0,0,21
+258650,0,0,0,21
+258651,0,0,0,21
+258652,0,0,0,21
+258653,0,0,0,21
+258654,0,0,0,21
+258655,0,0,0,21
+258656,0,0,0,21
+258657,0,0,0,21
+258658,0,0,0,21
+258659,0,0,0,21
+258660,0,0,0,21
+258661,0,0,0,21
+258662,0,0,0,21
+258663,0,0,0,21
+258664,0,0,0,21
+258665,0,0,0,21
+258666,0,0,0,21
+258667,0,0,0,21
+258668,0,0,0,21
+258669,0,0,0,21
+258670,0,0,0,21
+258671,0,0,0,21
+258672,0,0,0,21
+258673,0,0,0,21
+258674,0,0,0,21
+258675,0,0,0,21
+258676,0,0,0,21
+258677,0,0,0,21
+258678,0,0,0,21
+258679,0,0,0,21
+258680,0,0,0,21
+258681,0,0,0,21
+258682,0,0,0,21
+258683,0,0,0,21
+258684,0,0,0,21
+258685,0,0,0,21
+258686,0,0,0,21
+258687,0,0,0,21
+258688,0,0,0,21
+258689,0,0,0,21
+258690,0,0,0,21
+258691,0,0,0,21
+258692,0,0,0,21
+258693,0,0,0,21
+258694,0,0,0,21
+258695,0,0,0,21
+258696,0,0,0,21
+258697,0,0,0,21
+258698,0,0,0,21
+258699,0,0,0,21
+258700,0,0,0,21
+258701,0,0,0,21
+258702,0,0,0,21
+258703,0,0,0,21
+258704,0,0,0,21
+258705,0,0,0,21
+258706,0,0,0,21
+258707,0,0,0,21
+258708,0,0,0,21
+258709,0,0,0,21
+258710,0,0,0,21
+258711,0,0,0,21
+258712,0,0,0,21
+258713,0,0,0,21
+258714,0,0,0,21
+258715,0,0,0,21
+258716,0,0,0,21
+258717,0,0,0,21
+258718,0,0,0,21
+258719,0,0,0,21
+258720,0,0,0,21
+258721,0,0,0,21
+258722,0,0,0,21
+258723,0,0,0,21
+258724,0,0,0,21
+258725,0,0,0,21
+258726,0,0,0,21
+258727,0,0,0,21
+258728,0,0,0,21
+258729,0,0,0,21
+258730,0,0,0,21
+258731,0,0,0,21
+258732,0,0,0,21
+258733,0,0,0,21
+258734,0,0,0,21
+258735,0,0,0,21
+258736,0,0,0,21
+258737,0,0,0,21
+258738,0,0,0,21
+258739,0,0,0,21
+258740,0,0,0,21
+258741,0,0,0,21
+258742,0,0,0,21
+258743,0,0,0,21
+258744,0,0,0,21
+258745,0,0,0,21
+258746,0,0,0,21
+258747,0,0,0,21
+258748,0,0,0,21
+258749,0,0,0,21
+258750,0,0,0,21
+258751,0,0,0,21
+258752,0,0,0,21
+258753,0,0,0,21
+258754,0,0,0,21
+258755,0,0,0,21
+258756,0,0,0,21
+258757,0,0,0,21
+258758,0,0,0,21
+258759,0,0,0,21
+258760,0,0,0,21
+258761,0,0,0,21
+258762,0,0,0,21
+258763,0,0,0,21
+258764,0,0,0,21
+258765,0,0,0,21
+258766,0,0,0,21
+258767,0,0,0,21
+258768,0,0,0,21
+258769,0,0,0,21
+258770,0,0,0,21
+258771,0,0,0,21
+258772,0,0,0,21
+258773,0,0,0,21
+258774,0,0,0,21
+258775,0,0,0,21
+258776,0,0,0,21
+258777,0,0,0,21
+258778,0,0,0,21
+258779,0,0,0,21
+258780,0,0,0,21
+258781,0,0,0,21
+258782,0,0,0,21
+258783,0,0,0,21
+258784,0,0,0,21
+258785,0,0,0,21
+258786,0,0,0,21
+258787,0,0,0,21
+258788,0,0,0,21
+258789,0,0,0,21
+258790,0,0,0,21
+258791,0,0,0,21
+258792,0,0,0,21
+258793,0,0,0,21
+258794,0,0,0,21
+258795,0,0,0,21
+258796,0,0,0,21
+258797,0,0,0,21
+258798,0,0,0,21
+258799,0,0,0,21
+258800,0,0,0,21
+258801,0,0,0,21
+258802,0,0,0,21
+258803,0,0,0,21
+258804,0,0,0,21
+258805,0,0,0,21
+258806,0,0,0,21
+258807,0,0,0,21
+258808,0,0,0,21
+258809,0,0,0,21
+258810,0,0,0,21
+258811,0,0,0,21
+258812,0,0,0,21
+258813,0,0,0,21
+258814,0,0,0,21
+258815,0,0,0,21
+258816,0,0,0,21
+258817,0,0,0,21
+258818,0,0,0,21
+258819,0,0,0,21
+258820,0,0,0,21
+258821,0,0,0,21
+258822,0,0,0,21
+258823,0,0,0,21
+258824,0,0,0,21
+258825,0,0,0,21
+258826,0,0,0,21
+258827,0,0,0,21
+258828,0,0,0,21
+258829,0,0,0,21
+258830,0,0,0,21
+258831,0,0,0,21
+258832,0,0,0,21
+258833,0,0,0,21
+258834,0,0,0,21
+258835,0,0,0,21
+258836,0,0,0,21
+258837,0,0,0,21
+258838,0,0,0,21
+258839,0,0,0,21
+258840,0,0,0,21
+258841,0,0,0,21
+258842,0,0,0,21
+258843,0,0,0,21
+258844,0,0,0,21
+258845,0,0,0,21
+258846,0,0,0,21
+258847,0,0,0,21
+258848,0,0,0,21
+258849,0,0,0,21
+258850,0,0,0,21
+258851,0,0,0,21
+258852,0,0,0,21
+258853,0,0,0,21
+258854,0,0,0,21
+258855,0,0,0,21
+258856,0,0,0,21
+258857,0,0,0,21
+258858,0,0,0,21
+258859,0,0,0,21
+258860,0,0,0,21
+258861,0,0,0,21
+258862,0,0,0,21
+258863,0,0,0,21
+258864,0,0,0,21
+258865,0,0,0,21
+258866,0,0,0,21
+258867,0,0,0,21
+258868,0,0,0,21
+258869,0,0,0,21
+258870,0,0,0,21
+258871,0,0,0,21
+258872,0,0,0,21
+258873,0,0,0,21
+258874,0,0,0,21
+258875,0,0,0,21
+258876,0,0,0,21
+258877,0,0,0,21
+258878,0,0,0,21
+258879,0,0,0,21
+258880,0,0,0,21
+258881,0,0,0,21
+258882,0,0,0,21
+258883,0,0,0,21
+258884,0,0,0,21
+258885,0,0,0,21
+258886,0,0,0,21
+258887,0,0,0,21
+258888,0,0,0,21
+258889,0,0,0,21
+258890,0,0,0,21
+258891,0,0,0,21
+258892,0,0,0,21
+258893,0,0,0,21
+258894,0,0,0,21
+258895,0,0,0,21
+258896,0,0,0,21
+258897,0,0,0,21
+258898,0,0,0,21
+258899,0,0,0,21
+258900,0,0,0,21
+258901,0,0,0,21
+258902,0,0,0,21
+258903,0,0,0,21
+258904,0,0,0,21
+258905,0,0,0,21
+258906,0,0,0,21
+258907,0,0,0,21
+258908,0,0,0,21
+258909,0,0,0,21
+258910,0,0,0,21
+258911,0,0,0,21
+258912,0,0,0,21
+258913,0,0,0,21
+258914,0,0,0,21
+258915,0,0,0,21
+258916,0,0,0,21
+258917,0,0,0,21
+258918,0,0,0,21
+258919,0,0,0,21
+258920,0,0,0,21
+258921,0,0,0,21
+258922,0,0,0,21
+258923,0,0,0,21
+258924,0,0,0,21
+258925,0,0,0,21
+258926,0,0,0,21
+258927,0,0,0,21
+258928,0,0,0,21
+258929,0,0,0,21
+258930,0,0,0,21
+258931,0,0,0,21
+258932,0,0,0,21
+258933,0,0,0,21
+258934,0,0,0,21
+258935,0,0,0,21
+258936,0,0,0,21
+258937,0,0,0,21
+258938,0,0,0,21
+258939,0,0,0,21
+258940,0,0,0,21
+258941,0,0,0,21
+258942,0,0,0,21
+258943,0,0,0,21
+258944,0,0,0,21
+258945,0,0,0,21
+258946,0,0,0,21
+258947,0,0,0,21
+258948,0,0,0,21
+258949,0,0,0,21
+258950,0,0,0,21
+258951,0,0,0,21
+258952,0,0,0,21
+258953,0,0,0,21
+258954,0,0,0,21
+258955,0,0,0,21
+258956,0,0,0,21
+258957,0,0,0,21
+258958,0,0,0,21
+258959,0,0,0,21
+258960,0,0,0,21
+258961,0,0,0,21
+258962,0,0,0,21
+258963,0,0,0,21
+258964,0,0,0,21
+258965,0,0,0,21
+258966,0,0,0,21
+258967,0,0,0,21
+258968,0,0,0,21
+258969,0,0,0,21
+258970,0,0,0,21
+258971,0,0,0,21
+258972,0,0,0,21
+258973,0,0,0,21
+258974,0,0,0,21
+258975,0,0,0,21
+258976,0,0,0,21
+258977,0,0,0,21
+258978,0,0,0,21
+258979,0,0,0,21
+258980,0,0,0,21
+258981,0,0,0,21
+258982,0,0,0,21
+258983,0,0,0,21
+258984,0,0,0,21
+258985,0,0,0,21
+258986,0,0,0,21
+258987,0,0,0,21
+258988,0,0,0,21
+258989,0,0,0,21
+258990,0,0,0,21
+258991,0,0,0,21
+258992,0,0,0,21
+258993,0,0,0,21
+258994,0,0,0,21
+258995,0,0,0,21
+258996,0,0,0,21
+258997,0,0,0,21
+258998,0,0,0,21
+258999,0,0,0,21
+259000,0,0,0,21
+259001,0,0,0,21
+259002,0,0,0,21
+259003,0,0,0,21
+259004,0,0,0,21
+259005,0,0,0,21
+259006,0,0,0,21
+259007,0,0,0,21
+259008,0,0,0,21
+259009,0,0,0,21
+259010,0,0,0,21
+259011,0,0,0,21
+259012,0,0,0,21
+259013,0,0,0,21
+259014,0,0,0,21
+259015,0,0,0,21
+259016,0,0,0,21
+259017,0,0,0,21
+259018,0,0,0,21
+259019,0,0,0,21
+259020,0,0,0,21
+259021,0,0,0,21
+259022,0,0,0,21
+259023,0,0,0,21
+259024,0,0,0,21
+259025,328526.2753,365374.91,661642.2332,21
+259026,0,0,0,21
+259027,0,0,0,21
+259028,0,0,0,21
+259029,0,0,0,21
+259030,0,0,0,21
+259031,0,0,0,21
+259032,0,0,0,21
+259033,0,0,0,21
+259034,0,0,0,21
+259035,0,0,0,21
+259036,0,0,0,21
+259037,0,0,0,21
+259038,0,0,0,21
+259039,0,0,0,21
+259040,0,0,0,21
+259041,0,0,0,21
+259042,0,0,0,21
+259043,0,0,0,21
+259044,0,0,0,21
+259045,0,0,0,21
+259046,0,0,0,21
+259047,0,0,0,21
+259048,0,0,0,21
+259049,0,0,0,21
+259050,0,0,0,21
+259051,0,0,0,21
+259052,0,0,0,21
+259053,0,0,0,21
+259054,0,0,0,21
+259055,0,0,0,21
+259056,0,0,0,21
+259057,0,0,0,21
+259058,0,0,0,21
+259059,329035.1666,365487.001,661672.9562,21
+259060,0,0,0,21
+259061,0,0,0,21
+259062,0,0,0,21
+259063,0,0,0,21
+259064,0,0,0,21
+259065,0,0,0,21
+259066,0,0,0,21
+259067,0,0,0,21
+259068,0,0,0,21
+259069,0,0,0,21
+259070,0,0,0,21
+259071,0,0,0,21
+259072,0,0,0,21
+259073,0,0,0,21
+259074,0,0,0,21
+259075,0,0,0,21
+259076,0,0,0,21
+259077,0,0,0,21
+259078,0,0,0,21
+259079,0,0,0,21
+259080,0,0,0,15.6
+259081,0,0,0,15.6
+259082,0,0,0,15.6
+259083,0,0,0,15.6
+259084,0,0,0,15.6
+259085,0,0,0,15.6
+259086,0,0,0,15.6
+259087,0,0,0,15.6
+259088,0,0,0,15.6
+259089,0,0,0,15.6
+259090,0,0,0,15.6
+259091,0,0,0,15.6
+259092,0,0,0,15.6
+259093,331138.1025,365386.7782,661709.5745,15.6
+259094,0,0,0,15.6
+259095,0,0,0,15.6
+259096,0,0,0,15.6
+259097,0,0,0,15.6
+259098,0,0,0,15.6
+259099,0,0,0,15.6
+259100,0,0,0,15.6
+259101,0,0,0,15.6
+259102,0,0,0,15.6
+259103,0,0,0,15.6
+259104,0,0,0,15.6
+259105,0,0,0,15.6
+259106,0,0,0,15.6
+259107,0,0,0,15.6
+259108,0,0,0,15.6
+259109,0,0,0,15.6
+259110,0,0,0,15.6
+259111,0,0,0,15.6
+259112,0,0,0,15.6
+259113,0,0,0,15.6
+259114,0,0,0,15.6
+259115,0,0,0,15.6
+259116,0,0,0,15.6
+259117,0,0,0,15.6
+259118,0,0,0,15.6
+259119,0,0,0,15.6
+259120,0,0,0,15.6
+259121,0,0,0,15.6
+259122,0,0,0,15.6
+259123,0,0,0,15.6
+259124,0,0,0,15.6
+259125,0,0,0,15.6
+259126,0,0,0,15.6
+259127,0,365480.6981,661782.6807,15.6
+259128,331993.1922,0,0,15.6
+259129,0,0,0,15.6
+259130,0,0,0,15.6
+259131,0,0,0,15.6
+259132,0,0,0,15.6
+259133,0,0,0,15.6
+259134,0,0,0,15.6
+259135,0,0,0,15.6
+259136,0,0,0,15.6
+259137,0,0,0,15.6
+259138,0,0,0,15.6
+259139,0,0,0,15.6
+259140,0,0,0,15.6
+259141,0,0,0,15.6
+259142,0,0,0,15.6
+259143,0,0,0,15.6
+259144,0,0,0,15.6
+259145,0,0,0,15.6
+259146,0,0,0,15.6
+259147,0,0,0,15.6
+259148,0,0,0,15.6
+259149,0,0,0,15.6
+259150,0,0,0,15.6
+259151,0,0,0,15.6
+259152,0,0,0,15.6
+259153,0,0,0,15.6
+259154,0,0,0,15.6
+259155,0,0,0,15.6
+259156,0,0,0,15.6
+259157,0,0,0,15.6
+259158,0,0,0,15.6
+259159,0,0,0,15.6
+259160,0,0,0,15.6
+259161,0,365326.3448,661453.6832,15.6
+259162,0,0,0,15.6
+259163,332355.5439,0,0,15.6
+259164,0,0,0,15.6
+259165,0,0,0,15.6
+259166,0,0,0,15.6
+259167,0,0,0,15.6
+259168,0,0,0,15.6
+259169,0,0,0,15.6
+259170,0,0,0,15.6
+259171,0,0,0,15.6
+259172,0,0,0,15.6
+259173,0,0,0,15.6
+259174,0,0,0,15.6
+259175,0,0,0,15.6
+259176,0,0,0,15.6
+259177,0,0,0,15.6
+259178,0,0,0,15.6
+259179,0,0,0,15.6
+259180,0,0,0,15.6
+259181,0,0,0,15.6
+259182,0,0,0,15.6
+259183,0,0,0,15.6
+259184,0,0,0,15.6
+259185,0,0,0,15.6
+259186,0,0,0,15.6
+259187,0,0,0,15.6
+259188,0,0,0,15.6
+259189,0,0,0,15.6
+259190,0,0,0,15.6
+259191,0,0,0,15.6
+259192,0,0,0,15.6
+259193,0,0,0,15.6
+259194,0,0,0,15.6
+259195,0,366191.6032,661412.1307,15.6
+259196,0,0,0,15.6
+259197,0,0,0,15.6
+259198,333875.1754,0,0,15.6
+259199,0,0,0,15.6
+259200,0,0,0,15.6
+259201,0,0,0,15.6
+259202,0,0,0,15.6
+259203,0,0,0,15.6
+259204,0,0,0,15.6
+259205,0,0,0,15.6
+259206,0,0,0,15.6
+259207,0,0,0,15.6
+259208,0,0,0,15.6
+259209,0,0,0,15.6
+259210,0,0,0,15.6
+259211,0,0,0,15.6
+259212,0,0,0,15.6
+259213,0,0,0,15.6
+259214,0,0,0,15.6
+259215,0,0,0,15.6
+259216,0,0,0,15.6
+259217,0,0,0,15.6
+259218,0,0,0,15.6
+259219,0,0,0,15.6
+259220,0,0,0,15.6
+259221,0,0,0,15.6
+259222,0,0,0,15.6
+259223,0,0,0,15.6
+259224,0,0,0,15.6
+259225,0,0,0,15.6
+259226,0,0,0,15.6
+259227,0,0,0,15.6
+259228,0,0,0,15.6
+259229,0,0,661129.7657,15.6
+259230,0,365738.296,0,15.6
+259231,0,0,0,15.6
+259232,0,0,0,15.6
+259233,333664.3473,0,0,15.6
+259234,0,0,0,15.6
+259235,0,0,0,15.6
+259236,0,0,0,15.6
+259237,0,0,0,15.6
+259238,0,0,0,15.6
+259239,0,0,0,15.6
+259240,0,0,0,15.6
+259241,0,0,0,15.6
+259242,0,0,0,15.6
+259243,0,0,0,15.6
+259244,0,0,0,15.6
+259245,0,0,0,15.6
+259246,0,0,0,15.6
+259247,0,0,0,15.6
+259248,0,0,0,15.6
+259249,0,0,0,15.6
+259250,0,0,0,15.6
+259251,0,0,0,15.6
+259252,0,0,0,15.6
+259253,0,0,0,15.6
+259254,0,0,0,15.6
+259255,0,0,0,15.6
+259256,0,0,0,15.6
+259257,0,0,0,15.6
+259258,0,0,0,15.6
+259259,0,0,0,15.6
+259260,0,0,0,15.6
+259261,0,0,0,15.6
+259262,0,0,0,15.6
+259263,0,0,661281.4593,15.6
+259264,0,0,0,15.6
+259265,0,366665.0698,0,15.6
+259266,0,0,0,15.6
+259267,0,0,0,15.6
+259268,335023.7096,0,0,15.6
+259269,0,0,0,15.6
+259270,0,0,0,15.6
+259271,0,0,0,15.6
+259272,0,0,0,15.6
+259273,0,0,0,15.6
+259274,0,0,0,15.6
+259275,0,0,0,15.6
+259276,0,0,0,15.6
+259277,0,0,0,15.6
+259278,0,0,0,15.6
+259279,0,0,0,15.6
+259280,0,0,0,15.6
+259281,0,0,0,15.6
+259282,0,0,0,15.6
+259283,0,0,0,15.6
+259284,0,0,0,15.6
+259285,0,0,0,15.6
+259286,0,0,0,15.6
+259287,0,0,0,15.6
+259288,0,0,0,15.6
+259289,0,0,0,15.6
+259290,0,0,0,15.6
+259291,0,0,0,15.6
+259292,0,0,0,15.6
+259293,0,0,0,15.6
+259294,0,0,0,15.6
+259295,0,0,0,15.6
+259296,0,0,0,15.6
+259297,0,0,660922.0962,15.6
+259298,0,0,0,15.6
+259299,0,0,0,15.6
+259300,0,366529.5262,0,15.6
+259301,0,0,0,15.6
+259302,0,0,0,15.6
+259303,334415.967,0,0,15.6
+259304,0,0,0,15.6
+259305,0,0,0,15.6
+259306,0,0,0,15.6
+259307,0,0,0,15.6
+259308,0,0,0,15.6
+259309,0,0,0,15.6
+259310,0,0,0,15.6
+259311,0,0,0,15.6
+259312,0,0,0,15.6
+259313,0,0,0,15.6
+259314,0,0,0,15.6
+259315,0,0,0,15.6
+259316,0,0,0,15.6
+259317,0,0,0,15.6
+259318,0,0,0,15.6
+259319,0,0,0,15.6
+259320,0,0,0,15.6
+259321,0,0,0,15.6
+259322,0,0,0,15.6
+259323,0,0,0,15.6
+259324,0,0,0,15.6
+259325,0,0,0,15.6
+259326,0,0,0,15.6
+259327,0,0,0,15.6
+259328,0,0,0,15.6
+259329,0,0,0,15.6
+259330,0,0,0,15.6
+259331,0,0,660923.8758,15.6
+259332,0,0,0,15.6
+259333,0,0,0,15.6
+259334,0,0,0,15.6
+259335,0,366190.7624,0,15.6
+259336,0,0,0,15.6
+259337,0,0,0,15.6
+259338,335568.2164,0,0,15.6
+259339,0,0,0,15.6
+259340,0,0,0,15.6
+259341,0,0,0,15.6
+259342,0,0,0,15.6
+259343,0,0,0,15.6
+259344,0,0,0,15.6
+259345,0,0,0,15.6
+259346,0,0,0,15.6
+259347,0,0,0,15.6
+259348,0,0,0,15.6
+259349,0,0,0,15.6
+259350,0,0,0,15.6
+259351,0,0,0,15.6
+259352,0,0,0,15.6
+259353,0,0,0,15.6
+259354,0,0,0,15.6
+259355,0,0,0,15.6
+259356,0,0,0,15.6
+259357,0,0,0,15.6
+259358,0,0,0,15.6
+259359,0,0,0,15.6
+259360,0,0,0,15.6
+259361,0,0,0,15.6
+259362,0,0,0,15.6
+259363,0,0,0,15.6
+259364,0,0,0,15.6
+259365,0,0,660779.374,15.6
+259366,0,0,0,15.6
+259367,0,0,0,15.6
+259368,0,0,0,15.6
+259369,0,0,0,15.6
+259370,0,366992.5073,0,15.6
+259371,0,0,0,15.6
+259372,0,0,0,15.6
+259373,334827.5219,0,0,15.6
+259374,0,0,0,15.6
+259375,0,0,0,15.6
+259376,0,0,0,15.6
+259377,0,0,0,15.6
+259378,0,0,0,15.6
+259379,0,0,0,15.6
+259380,0,0,0,15.6
+259381,0,0,0,15.6
+259382,0,0,0,15.6
+259383,0,0,0,15.6
+259384,0,0,0,15.6
+259385,0,0,0,15.6
+259386,0,0,0,15.6
+259387,0,0,0,15.6
+259388,0,0,0,15.6
+259389,0,0,0,15.6
+259390,0,0,0,15.6
+259391,0,0,0,15.6
+259392,0,0,0,15.6
+259393,0,0,0,15.6
+259394,0,0,0,15.6
+259395,0,0,0,15.6
+259396,0,0,0,15.6
+259397,0,0,0,15.6
+259398,0,0,0,15.6
+259399,0,0,660664.3224,15.6
+259400,0,0,0,15.6
+259401,0,0,0,15.6
+259402,0,0,0,15.6
+259403,0,0,0,15.6
+259404,0,0,0,15.6
+259405,0,366344.348,0,15.6
+259406,0,0,0,15.6
+259407,336080.3037,0,0,15.6
+259408,0,0,0,15.6
+259409,0,0,0,15.6
+259410,0,0,0,15.6
+259411,0,0,0,15.6
+259412,0,0,0,15.6
+259413,0,0,0,15.6
+259414,0,0,0,15.6
+259415,0,0,0,15.6
+259416,0,0,0,15.6
+259417,0,0,0,15.6
+259418,0,0,0,15.6
+259419,0,0,0,15.6
+259420,0,0,0,15.6
+259421,0,0,0,15.6
+259422,0,0,0,15.6
+259423,0,0,0,15.6
+259424,0,0,0,15.6
+259425,0,0,0,15.6
+259426,0,0,0,15.6
+259427,0,0,0,15.6
+259428,0,0,0,15.6
+259429,0,0,0,15.6
+259430,0,0,0,15.6
+259431,0,0,0,15.6
+259432,0,0,0,15.6
+259433,0,0,660318.3972,15.6
+259434,0,0,0,15.6
+259435,0,0,0,15.6
+259436,0,0,0,15.6
+259437,0,0,0,15.6
+259438,0,0,0,15.6
+259439,0,366313.6891,0,15.6
+259440,0,0,0,17.8
+259441,335542.4833,0,0,17.8
+259442,0,0,0,17.8
+259443,0,0,0,17.8
+259444,0,0,0,17.8
+259445,0,0,0,17.8
+259446,0,0,0,17.8
+259447,0,0,0,17.8
+259448,0,0,0,17.8
+259449,0,0,0,17.8
+259450,0,0,0,17.8
+259451,0,0,0,17.8
+259452,0,0,0,17.8
+259453,0,0,0,17.8
+259454,0,0,0,17.8
+259455,0,0,0,17.8
+259456,0,0,0,17.8
+259457,0,0,0,17.8
+259458,0,0,0,17.8
+259459,0,0,0,17.8
+259460,0,0,0,17.8
+259461,0,0,0,17.8
+259462,0,0,0,17.8
+259463,0,0,0,17.8
+259464,0,0,0,17.8
+259465,0,0,0,17.8
+259466,0,0,0,17.8
+259467,0,0,660491.2123,17.8
+259468,0,0,0,17.8
+259469,0,0,0,17.8
+259470,0,0,0,17.8
+259471,0,0,0,17.8
+259472,0,0,0,17.8
+259473,0,366534.3379,0,17.8
+259474,0,0,0,17.8
+259475,335916.2832,0,0,17.8
+259476,0,0,0,17.8
+259477,0,0,0,17.8
+259478,0,0,0,17.8
+259479,0,0,0,17.8
+259480,0,0,0,17.8
+259481,0,0,0,17.8
+259482,0,0,0,17.8
+259483,0,0,0,17.8
+259484,0,0,0,17.8
+259485,0,0,0,17.8
+259486,0,0,0,17.8
+259487,0,0,0,17.8
+259488,0,0,0,17.8
+259489,0,0,0,17.8
+259490,0,0,0,17.8
+259491,0,0,0,17.8
+259492,0,0,0,17.8
+259493,0,0,0,17.8
+259494,0,0,0,17.8
+259495,0,0,0,17.8
+259496,0,0,0,17.8
+259497,0,0,0,17.8
+259498,0,0,0,17.8
+259499,0,0,0,17.8
+259500,0,0,0,20
+259501,0,0,659953.6353,20
+259502,0,0,0,20
+259503,0,0,0,20
+259504,0,0,0,20
+259505,0,0,0,20
+259506,0,0,0,20
+259507,0,0,0,20
+259508,9150.558733,20635.06112,0,20
+259509,6000.78266,21708.47254,0,20
+259510,6573.946552,16896.37726,0,20
+259511,7045.898989,19947.55528,0,20
+259512,7521.585262,19947.55575,0,20
+259513,7547.527684,19947.55559,0,20
+259514,7845.139224,20183.67271,0,20
+259515,8044.431055,20373.16853,0,20
+259516,8018.680121,20206.72919,0,20
+259517,8291.185416,20608.7311,0,20
+259518,8291.185423,20921.77909,0,20
+259519,8755.960164,20839.32869,0,20
+259520,8536.844315,20921.7795,0,20
+259521,8781.432239,21169.55947,0,20
+259522,9012.294071,22308.32099,0,20
+259523,9024.9737,22505.8235,0,20
+259524,9133.70109,22564.25,0,20
+259525,9280.102071,22867.44121,0,20
+259526,9375.756721,23120.29095,0,20
+259527,9509.000987,23232.97613,0,20
+259528,9509.000851,23484.22285,0,20
+259529,9749.527954,23437.58351,0,20
+259530,9641.933392,23827.66535,0,20
+259531,9749.527842,23816.97626,0,20
+259532,9989.089007,24012.71764,0,20
+259533,9876.606989,24139.40027,0,20
+259534,10129.72137,24196.66747,0,20
+259535,10355.85192,24407.07154,0,20
+259536,10155.68476,24322.55865,0,20
+259537,10396.10499,24743.36112,0,20
+259538,10420.96383,24527.43663,0,20
+259539,10660.23638,24908.10527,0,20
+259540,10447.41323,24736.95024,0,20
+259541,10817.29198,24902.03941,0,20
+259542,10711.19306,25071.13646,0,20
+259543,10724.19173,24877.77178,0,20
+259544,10973.81665,25298.09537,0,20
+259545,10974.36696,25040.50937,0,20
+259546,10986.70243,25460.83513,0,20
+259547,11024.63186,25063.14688,0,20
+259548,11223.02552,25435.50758,0,20
+259549,11062.34333,25290.339,0,20
+259550,11223.02536,25574.30405,0,20
+259551,11062.34337,25619.43931,0,20
+259552,11248.10148,25801.04042,0,20
+259553,11180.67057,25575.68804,0,20
+259554,11285.79267,25817.76008,0,20
+259555,11298.43116,26150.18004,0,20
+259556,11310.68508,25569.91559,0,20
+259557,11428.56466,26023.44323,0,20
+259558,11323.27877,25917.7612,0,20
+259559,11546.20156,25979.47226,0,20
+259560,11348.06303,25934.42706,0,21
+259561,9686.192541,21669.69606,0,21
+259562,9322.697379,21433.24585,0,21
+259563,9193.201642,20919.83664,0,21
+259564,9417.379886,21065.08381,0,21
+259565,9091.19438,21240.77101,0,21
+259566,9294.940463,20894.88996,0,21
+259567,9064.725713,20873.67569,0,21
+259568,9198.716682,21238.3835,0,21
+259569,9161.140105,20527.06148,0,21
+259570,8980.557092,21232.43896,0,21
+259571,9147.047428,20854.6602,0,21
+259572,9063.15839,20712.35415,0,21
+259573,8941.434978,21041.97894,0,21
+259574,9159.594458,20868.60249,0,21
+259575,8817.726417,20655.08645,0,21
+259576,9036.361474,20862.59764,0,21
+259577,8927.163487,20822.44164,0,21
+259578,8900.119466,20718.35896,0,21
+259579,8817.726302,20816.33919,0,21
+259580,8885.307685,20651.50788,0,21
+259581,8790.682266,20862.59765,0,21
+259582,8775.870593,20645.45441,0,21
+259583,8775.870571,20628.40316,0,21
+259584,8638.197425,20811.85479,0,21
+259585,8775.870475,20668.55924,0,21
+259586,8638.197348,20427.86275,0,21
+259587,8638.197306,20817.96705,0,21
+259588,8638.197293,20444.85524,0,21
+259589,8528.273637,20600.42451,0,21
+259590,8612.993548,20468.00889,0,21
+259591,8418.10224,20617.41693,0,21
+259592,8612.993581,20577.27073,0,21
+259593,8418.102171,20634.35174,0,21
+259594,8380.263599,20382.42976,0,21
+259595,8515.682599,20634.35174,0,21
+259596,8380.263546,20399.42213,0,21
+259597,8282.476497,20766.03345,0,21
+259598,8380.263457,20197.90614,0,21
+259599,8159.165784,20617.41686,0,21
+259600,8367.605505,20369.72598,0,21
+259601,8159.166191,20742.87974,0,21
+259602,8146.508471,20221.10931,0,21
+259603,8244.504516,20564.97374,0,21
+259604,8035.57569,20369.72597,0,21
+259605,8121.126603,20564.97361,0,21
+259606,8022.896039,20369.72593,0,21
+259607,8010.19387,20541.77042,0,21
+259608,8010.193853,20386.60462,0,21
+259609,7886.275985,20517.59016,0,21
+259610,7886.275983,20346.52278,0,21
+259611,7873.528368,20386.60459,0,21
+259612,7774.580857,20511.26574,0,21
+259613,7860.821361,20517.59025,0,21
+259614,7650.29893,20167.74334,0,21
+259615,7736.466343,20511.26567,0,21
+259616,7637.542854,20298.7289,0,21
+259617,7624.749317,20551.29242,0,21
+259618,7499.93776,20127.61171,0,21
+259619,7611.868389,20502.78113,0,21
+259620,7387.683265,20471.13409,0,21
+259621,242.6025333,112.953371,0,21
+259622,176.8243562,0,0,21
+259623,126.2215604,0,0,21
+259624,126.221574,0,0,21
+259625,74.13063789,0,0,21
+259626,82.94294596,0,0,21
+259627,38.15858153,0,0,21
+259628,38.15858692,0,0,21
+259629,9.970871408,0,0,21
+259630,0,0,0,21
+259631,0,0,0,21
+259632,0,0,0,21
+259633,0,0,0,21
+259634,0,0,0,21
+259635,0,0,0,21
+259636,0,0,0,21
+259637,0,0,0,21
+259638,0,0,0,21
+259639,0,0,0,21
+259640,0,0,0,21
+259641,0,0,0,21
+259642,0,0,0,21
+259643,0,0,0,21
+259644,0,0,0,21
+259645,0,0,0,21
+259646,0,0,0,21
+259647,0,0,0,21
+259648,0,0,0,21
+259649,0,0,0,21
+259650,0,0,0,21
+259651,0,0,0,21
+259652,0,0,0,21
+259653,0,0,0,21
+259654,0,0,0,21
+259655,0,0,0,21
+259656,0,0,0,21
+259657,0,0,0,21
+259658,0,0,0,21
+259659,0,0,0,21
+259660,0,0,0,21
+259661,0,0,0,21
+259662,0,0,0,21
+259663,0,0,0,21
+259664,0,0,0,21
+259665,0,0,0,21
+259666,0,0,0,21
+259667,0,0,0,21
+259668,0,0,0,21
+259669,0,0,0,21
+259670,0,0,0,21
+259671,0,0,0,21
+259672,0,0,0,21
+259673,0,0,0,21
+259674,0,0,0,21
+259675,0,0,0,21
+259676,0,0,0,21
+259677,0,0,0,21
+259678,0,0,0,21
+259679,0,0,0,21
+259680,0,0,0,21
+259681,0,0,0,21
+259682,0,0,0,21
+259683,0,0,0,21
+259684,0,0,0,21
+259685,0,0,0,21
+259686,0,0,0,21
+259687,0,0,0,21
+259688,0,0,0,21
+259689,0,0,0,21
+259690,0,0,0,21
+259691,0,0,0,21
+259692,0,0,0,21
+259693,0,0,0,21
+259694,0,0,0,21
+259695,0,0,0,21
+259696,0,0,0,21
+259697,0,0,0,21
+259698,0,0,0,21
+259699,0,0,0,21
+259700,0,0,0,21
+259701,0,0,0,21
+259702,0,0,0,21
+259703,0,0,0,21
+259704,0,0,0,21
+259705,0,0,0,21
+259706,0,0,0,21
+259707,0,0,0,21
+259708,0,0,0,21
+259709,0,0,0,21
+259710,0,0,0,21
+259711,0,0,0,21
+259712,0,0,0,21
+259713,0,0,0,21
+259714,0,0,0,21
+259715,0,0,0,21
+259716,0,0,0,21
+259717,0,0,0,21
+259718,0,0,0,21
+259719,0,0,0,21
+259720,0,0,0,21
+259721,0,0,0,21
+259722,0,0,0,21
+259723,0,0,0,21
+259724,0,0,0,21
+259725,0,0,0,21
+259726,0,0,0,21
+259727,0,0,0,21
+259728,0,0,0,21
+259729,0,0,0,21
+259730,0,0,0,21
+259731,0,0,0,21
+259732,0,0,0,21
+259733,0,0,0,21
+259734,0,0,0,21
+259735,0,0,0,21
+259736,0,0,0,21
+259737,0,0,0,21
+259738,0,0,0,21
+259739,0,0,0,21
+259740,0,0,0,21
+259741,0,0,0,21
+259742,0,0,0,21
+259743,0,0,0,21
+259744,0,0,0,21
+259745,0,0,0,21
+259746,0,0,0,21
+259747,0,0,0,21
+259748,0,0,0,21
+259749,0,0,0,21
+259750,0,0,0,21
+259751,0,0,0,21
+259752,0,0,0,21
+259753,0,0,0,21
+259754,0,0,0,21
+259755,0,0,0,21
+259756,0,0,0,21
+259757,0,0,0,21
+259758,0,0,0,21
+259759,0,0,0,21
+259760,0,0,0,21
+259761,0,0,0,21
+259762,0,0,0,21
+259763,0,0,0,21
+259764,0,0,0,21
+259765,0,0,0,21
+259766,0,0,0,21
+259767,0,0,0,21
+259768,0,0,0,21
+259769,0,0,0,21
+259770,0,0,0,21
+259771,0,0,0,21
+259772,0,0,0,21
+259773,0,0,0,21
+259774,0,0,0,21
+259775,0,0,0,21
+259776,0,0,0,21
+259777,0,0,0,21
+259778,0,0,0,21
+259779,0,0,0,21
+259780,0,0,0,21
+259781,0,0,0,21
+259782,0,0,0,21
+259783,0,0,0,21
+259784,0,0,0,21
+259785,0,0,0,21
+259786,0,0,0,21
+259787,0,0,0,21
+259788,0,0,0,21
+259789,0,0,0,21
+259790,0,0,0,21
+259791,0,0,0,21
+259792,0,0,0,21
+259793,0,0,0,21
+259794,0,0,0,21
+259795,0,0,0,21
+259796,0,0,0,21
+259797,0,0,0,21
+259798,0,0,0,21
+259799,0,0,0,21
+259800,0,0,0,21
+259801,0,0,0,21
+259802,0,0,0,21
+259803,0,0,0,21
+259804,0,0,0,21
+259805,0,0,0,21
+259806,0,0,0,21
+259807,0,0,0,21
+259808,0,0,0,21
+259809,0,0,0,21
+259810,0,0,0,21
+259811,0,0,0,21
+259812,0,0,0,21
+259813,0,0,0,21
+259814,0,0,0,21
+259815,0,0,0,21
+259816,0,0,0,21
+259817,0,0,0,21
+259818,0,0,0,21
+259819,0,0,0,21
+259820,0,0,0,21
+259821,0,0,0,21
+259822,0,0,0,21
+259823,0,0,0,21
+259824,0,0,0,21
+259825,0,0,0,21
+259826,0,0,0,21
+259827,0,0,0,21
+259828,0,0,0,21
+259829,0,0,0,21
+259830,0,0,0,21
+259831,0,0,0,21
+259832,0,0,0,21
+259833,0,0,0,21
+259834,0,0,0,21
+259835,0,0,0,21
+259836,0,0,0,21
+259837,0,0,0,21
+259838,0,0,0,21
+259839,0,0,0,21
+259840,0,0,0,21
+259841,0,0,0,21
+259842,0,0,0,21
+259843,0,0,0,21
+259844,0,0,0,21
+259845,0,0,0,21
+259846,0,0,0,21
+259847,0,0,0,21
+259848,0,0,0,21
+259849,0,0,0,21
+259850,0,0,0,21
+259851,0,0,0,21
+259852,0,0,0,21
+259853,0,0,0,21
+259854,0,0,0,21
+259855,0,0,0,21
+259856,0,0,0,21
+259857,0,0,0,21
+259858,0,0,0,21
+259859,0,0,0,21
+259860,0,0,0,21
+259861,0,0,0,21
+259862,0,0,0,21
+259863,0,0,0,21
+259864,0,0,0,21
+259865,0,0,0,21
+259866,0,0,0,21
+259867,0,0,0,21
+259868,0,0,0,21
+259869,0,0,0,21
+259870,0,0,0,21
+259871,0,0,0,21
+259872,0,0,0,21
+259873,0,0,0,21
+259874,0,0,0,21
+259875,0,0,0,21
+259876,0,0,0,21
+259877,0,0,0,21
+259878,0,0,0,21
+259879,0,0,0,21
+259880,0,0,0,21
+259881,0,0,0,21
+259882,0,0,0,21
+259883,0,0,0,21
+259884,0,0,0,21
+259885,0,0,0,21
+259886,0,0,0,21
+259887,0,0,0,21
+259888,0,0,0,21
+259889,0,0,0,21
+259890,0,0,0,21
+259891,0,0,0,21
+259892,0,0,0,21
+259893,0,0,0,21
+259894,0,0,0,21
+259895,0,0,0,21
+259896,0,0,0,21
+259897,0,0,0,21
+259898,0,0,0,21
+259899,0,0,0,21
+259900,0,0,0,21
+259901,0,0,0,21
+259902,0,0,0,21
+259903,0,0,0,21
+259904,0,0,0,21
+259905,0,0,0,21
+259906,0,0,0,21
+259907,0,0,0,21
+259908,0,0,0,21
+259909,0,0,0,21
+259910,0,0,0,21
+259911,0,0,0,21
+259912,0,0,0,21
+259913,0,0,0,21
+259914,0,0,0,21
+259915,0,0,0,21
+259916,0,0,0,21
+259917,0,0,0,21
+259918,0,0,0,21
+259919,0,0,0,21
+259920,0,0,0,21
+259921,0,0,0,21
+259922,0,0,0,21
+259923,0,0,0,21
+259924,0,0,0,21
+259925,0,0,0,21
+259926,0,0,0,21
+259927,0,0,0,21
+259928,0,0,0,21
+259929,0,0,0,21
+259930,0,0,0,21
+259931,0,0,0,21
+259932,0,0,0,21
+259933,0,0,0,21
+259934,0,0,0,21
+259935,0,0,0,21
+259936,0,0,0,21
+259937,0,0,0,21
+259938,0,0,0,21
+259939,0,0,0,21
+259940,0,0,0,21
+259941,0,0,0,21
+259942,0,0,0,21
+259943,0,0,0,21
+259944,0,0,0,21
+259945,0,0,0,21
+259946,0,0,0,21
+259947,0,0,0,21
+259948,0,0,0,21
+259949,0,0,0,21
+259950,0,0,0,21
+259951,0,0,0,21
+259952,0,0,0,21
+259953,0,0,0,21
+259954,0,0,0,21
+259955,0,0,0,21
+259956,0,0,0,21
+259957,0,0,0,21
+259958,0,0,0,21
+259959,0,0,0,21
+259960,0,0,0,21
+259961,0,0,0,21
+259962,0,0,0,21
+259963,0,0,0,21
+259964,0,0,0,21
+259965,0,0,0,21
+259966,0,0,0,21
+259967,0,0,0,21
+259968,0,0,0,21
+259969,0,0,0,21
+259970,0,0,0,21
+259971,0,0,0,21
+259972,0,0,0,21
+259973,0,0,0,21
+259974,0,0,0,21
+259975,0,0,0,21
+259976,0,0,0,21
+259977,0,0,0,21
+259978,0,0,0,21
+259979,0,0,0,21
+259980,0,0,0,21
+259981,0,0,0,21
+259982,0,0,0,21
+259983,0,0,0,21
+259984,0,0,0,21
+259985,0,0,0,21
+259986,0,0,0,21
+259987,0,0,0,21
+259988,0,0,0,21
+259989,0,0,0,21
+259990,0,0,0,21
+259991,0,0,0,21
+259992,0,0,0,21
+259993,0,0,0,21
+259994,0,0,0,21
+259995,0,0,0,21
+259996,0,0,0,21
+259997,0,0,0,21
+259998,0,0,0,21
+259999,0,0,0,21
+260000,0,0,0,21
+260001,0,0,0,21
+260002,0,0,0,21
+260003,0,0,0,21
+260004,0,0,0,21
+260005,0,0,0,21
+260006,0,0,0,21
+260007,0,0,0,21
+260008,0,0,0,21
+260009,0,0,0,21
+260010,0,0,0,21
+260011,0,0,0,21
+260012,0,0,0,21
+260013,0,0,0,21
+260014,0,0,0,21
+260015,0,0,0,21
+260016,0,0,0,21
+260017,0,0,0,21
+260018,0,0,0,21
+260019,0,0,0,21
+260020,0,0,0,21
+260021,0,0,0,21
+260022,0,0,0,21
+260023,0,0,0,21
+260024,0,0,0,21
+260025,0,0,0,21
+260026,0,0,0,21
+260027,0,0,0,21
+260028,0,0,0,21
+260029,0,0,0,21
+260030,0,0,0,21
+260031,0,0,0,21
+260032,0,0,0,21
+260033,0,0,0,21
+260034,0,0,0,21
+260035,0,0,0,21
+260036,0,0,0,21
+260037,0,0,0,21
+260038,0,0,0,21
+260039,0,0,0,21
+260040,0,0,0,21
+260041,0,0,0,21
+260042,0,0,0,21
+260043,0,0,0,21
+260044,0,0,0,21
+260045,0,0,0,21
+260046,0,0,0,21
+260047,0,0,0,21
+260048,0,0,0,21
+260049,0,0,0,21
+260050,0,0,0,21
+260051,0,0,0,21
+260052,0,0,0,21
+260053,0,0,0,21
+260054,0,0,0,21
+260055,0,0,0,21
+260056,0,0,0,21
+260057,0,0,0,21
+260058,0,0,0,21
+260059,0,0,0,21
+260060,0,0,0,21
+260061,0,0,0,21
+260062,0,0,0,21
+260063,0,0,0,21
+260064,0,0,0,21
+260065,0,0,0,21
+260066,0,0,0,21
+260067,0,0,0,21
+260068,0,0,0,21
+260069,0,0,0,21
+260070,0,0,0,21
+260071,0,0,0,21
+260072,0,0,0,21
+260073,0,0,0,21
+260074,0,0,0,21
+260075,0,0,0,21
+260076,0,0,0,21
+260077,0,0,0,21
+260078,0,0,0,21
+260079,0,0,0,21
+260080,0,0,0,21
+260081,0,0,0,21
+260082,0,0,0,21
+260083,0,0,0,21
+260084,0,0,0,21
+260085,0,0,0,21
+260086,0,0,0,21
+260087,0,0,0,21
+260088,0,0,0,21
+260089,0,0,0,21
+260090,0,0,0,21
+260091,0,0,0,21
+260092,0,0,0,21
+260093,0,0,0,21
+260094,0,0,0,21
+260095,0,0,0,21
+260096,0,0,0,21
+260097,0,0,0,21
+260098,0,0,0,21
+260099,0,0,0,21
+260100,0,0,0,21
+260101,0,0,0,21
+260102,0,0,0,21
+260103,0,0,0,21
+260104,0,0,0,21
+260105,0,0,0,21
+260106,0,0,0,21
+260107,0,0,0,21
+260108,0,0,0,21
+260109,0,0,0,21
+260110,0,0,0,21
+260111,0,0,0,21
+260112,0,0,0,21
+260113,0,0,0,21
+260114,0,0,0,21
+260115,0,0,0,21
+260116,0,0,0,21
+260117,0,0,0,21
+260118,0,0,0,21
+260119,0,0,0,21
+260120,0,0,0,21
+260121,0,0,0,21
+260122,0,0,0,21
+260123,0,0,0,21
+260124,0,0,0,21
+260125,0,0,0,21
+260126,0,0,0,21
+260127,0,0,0,21
+260128,0,0,0,21
+260129,0,0,0,21
+260130,0,0,0,21
+260131,0,0,0,21
+260132,0,0,0,21
+260133,0,0,0,21
+260134,0,0,0,21
+260135,0,0,0,21
+260136,0,0,0,21
+260137,0,0,0,21
+260138,0,0,0,21
+260139,0,0,0,21
+260140,0,0,0,21
+260141,0,0,0,21
+260142,0,0,0,21
+260143,0,0,0,21
+260144,0,0,0,21
+260145,0,0,0,21
+260146,0,0,0,21
+260147,0,0,0,21
+260148,0,0,0,21
+260149,0,0,0,21
+260150,0,0,0,21
+260151,0,0,0,21
+260152,0,0,0,21
+260153,0,0,0,21
+260154,0,0,0,21
+260155,0,0,0,21
+260156,0,0,0,21
+260157,0,0,0,21
+260158,0,0,0,21
+260159,0,0,0,21
+260160,0,0,0,21
+260161,0,0,0,21
+260162,0,0,0,21
+260163,0,0,0,21
+260164,0,0,0,21
+260165,0,0,0,21
+260166,0,0,0,21
+260167,0,0,0,21
+260168,0,0,0,21
+260169,0,0,0,21
+260170,0,0,0,21
+260171,0,0,0,21
+260172,0,0,0,21
+260173,0,0,0,21
+260174,0,0,0,21
+260175,0,0,0,21
+260176,0,0,0,21
+260177,0,0,0,21
+260178,0,0,0,21
+260179,0,0,0,21
+260180,0,0,0,21
+260181,0,0,0,21
+260182,0,0,0,21
+260183,0,0,0,21
+260184,0,0,0,21
+260185,0,0,0,21
+260186,0,0,0,21
+260187,0,0,0,21
+260188,0,0,0,21
+260189,0,0,0,21
+260190,0,0,0,21
+260191,0,0,0,21
+260192,0,0,0,21
+260193,0,0,0,21
+260194,0,0,0,21
+260195,0,0,0,21
+260196,0,0,0,21
+260197,0,0,0,21
+260198,0,0,0,21
+260199,0,0,0,21
+260200,0,0,0,21
+260201,0,0,0,21
+260202,0,0,0,21
+260203,0,0,0,21
+260204,0,0,0,21
+260205,0,0,0,21
+260206,0,0,0,21
+260207,0,0,0,21
+260208,0,0,0,21
+260209,0,0,0,21
+260210,0,0,0,21
+260211,0,0,0,21
+260212,0,0,0,21
+260213,0,0,0,21
+260214,0,0,0,21
+260215,0,0,0,21
+260216,0,0,0,21
+260217,0,0,0,21
+260218,0,0,0,21
+260219,0,0,0,21
+260220,0,0,0,21
+260221,0,0,0,21
+260222,0,0,0,21
+260223,0,0,0,21
+260224,0,0,0,21
+260225,0,0,0,21
+260226,0,0,0,21
+260227,0,0,0,21
+260228,0,0,0,21
+260229,0,0,0,21
+260230,0,0,0,21
+260231,0,0,0,21
+260232,0,0,0,21
+260233,0,0,0,21
+260234,0,0,0,21
+260235,0,0,0,21
+260236,0,0,0,21
+260237,0,0,0,21
+260238,0,0,0,21
+260239,0,0,0,21
+260240,0,0,0,21
+260241,0,0,0,21
+260242,0,0,0,21
+260243,0,0,0,21
+260244,0,0,0,21
+260245,0,0,0,21
+260246,0,0,0,21
+260247,0,0,0,21
+260248,0,0,0,21
+260249,0,0,0,21
+260250,0,0,0,21
+260251,0,0,0,21
+260252,0,0,0,21
+260253,0,0,0,21
+260254,0,0,0,21
+260255,0,0,0,21
+260256,0,0,0,21
+260257,0,0,0,21
+260258,0,0,0,21
+260259,0,0,0,21
+260260,0,0,0,21
+260261,0,0,0,21
+260262,0,0,0,21
+260263,0,0,0,21
+260264,0,0,0,21
+260265,0,0,0,21
+260266,0,0,0,21
+260267,0,0,0,21
+260268,0,0,0,21
+260269,0,0,0,21
+260270,0,0,0,21
+260271,0,0,0,21
+260272,0,0,0,21
+260273,0,0,0,21
+260274,0,0,0,21
+260275,0,0,0,21
+260276,0,0,0,21
+260277,0,0,0,21
+260278,0,0,0,21
+260279,0,0,0,21
+260280,0,0,0,21
+260281,0,0,0,21
+260282,0,0,0,21
+260283,0,0,0,21
+260284,0,0,0,21
+260285,0,0,0,21
+260286,0,0,0,21
+260287,0,0,0,21
+260288,0,0,0,21
+260289,0,0,0,21
+260290,0,0,0,21
+260291,0,0,0,21
+260292,0,0,0,21
+260293,0,0,0,21
+260294,0,0,0,21
+260295,0,0,0,21
+260296,0,0,0,21
+260297,0,0,0,21
+260298,0,0,0,21
+260299,0,0,0,21
+260300,0,0,0,21
+260301,0,0,0,21
+260302,0,0,0,21
+260303,0,0,0,21
+260304,0,0,0,21
+260305,0,0,0,21
+260306,0,0,0,21
+260307,0,0,0,21
+260308,0,0,0,21
+260309,0,0,0,21
+260310,0,0,0,21
+260311,0,0,0,21
+260312,0,0,0,21
+260313,0,0,0,21
+260314,0,0,0,21
+260315,0,0,0,21
+260316,0,0,0,21
+260317,0,0,0,21
+260318,0,0,0,21
+260319,0,0,0,21
+260320,0,0,0,21
+260321,0,0,0,21
+260322,0,0,0,21
+260323,0,0,0,21
+260324,0,0,0,21
+260325,0,0,0,21
+260326,0,0,0,21
+260327,0,0,0,21
+260328,0,0,0,21
+260329,0,0,0,21
+260330,0,0,0,21
+260331,0,0,0,21
+260332,0,0,0,21
+260333,0,0,0,21
+260334,0,0,0,21
+260335,0,0,0,21
+260336,0,0,0,21
+260337,0,0,0,21
+260338,0,0,0,21
+260339,0,0,0,21
+260340,0,0,0,21
+260341,0,0,0,21
+260342,0,0,0,21
+260343,0,0,0,21
+260344,0,0,0,21
+260345,0,0,0,21
+260346,0,0,0,21
+260347,0,0,0,21
+260348,0,0,0,21
+260349,0,0,0,21
+260350,0,0,0,21
+260351,0,0,0,21
+260352,0,0,0,21
+260353,0,0,0,21
+260354,0,0,0,21
+260355,0,0,0,21
+260356,0,0,0,21
+260357,0,0,0,21
+260358,0,0,0,21
+260359,0,0,0,21
+260360,0,0,0,21
+260361,0,0,0,21
+260362,0,0,0,21
+260363,0,0,0,21
+260364,0,0,0,21
+260365,0,0,0,21
+260366,0,0,0,21
+260367,0,0,0,21
+260368,0,0,0,21
+260369,0,0,0,21
+260370,0,0,0,21
+260371,0,0,0,21
+260372,0,0,0,21
+260373,0,0,0,21
+260374,0,0,0,21
+260375,0,0,0,21
+260376,0,0,0,21
+260377,0,0,0,21
+260378,0,0,0,21
+260379,0,0,0,21
+260380,0,0,0,21
+260381,0,0,0,21
+260382,0,0,0,21
+260383,0,0,0,21
+260384,0,0,0,21
+260385,0,0,0,21
+260386,0,0,0,21
+260387,0,0,0,21
+260388,0,0,0,21
+260389,0,0,0,21
+260390,0,0,0,21
+260391,0,0,0,21
+260392,0,0,0,21
+260393,0,0,0,21
+260394,0,0,0,21
+260395,0,0,0,21
+260396,0,0,0,21
+260397,0,0,0,21
+260398,0,0,0,21
+260399,0,0,0,21
+260400,0,0,0,21
+260401,0,0,0,21
+260402,0,0,0,21
+260403,0,0,0,21
+260404,0,0,0,21
+260405,0,0,0,21
+260406,0,0,0,21
+260407,0,0,0,21
+260408,0,0,0,21
+260409,0,0,0,21
+260410,0,0,0,21
+260411,0,0,0,21
+260412,0,0,0,21
+260413,0,0,0,21
+260414,0,0,0,21
+260415,0,0,0,21
+260416,0,0,0,21
+260417,0,0,0,21
+260418,0,0,0,21
+260419,0,0,0,21
+260420,0,0,0,21
+260421,0,0,0,21
+260422,0,0,0,21
+260423,0,0,0,21
+260424,0,0,0,21
+260425,0,0,0,21
+260426,0,0,0,21
+260427,0,0,0,21
+260428,0,0,0,21
+260429,0,0,0,21
+260430,0,0,0,21
+260431,0,0,0,21
+260432,0,0,0,21
+260433,0,0,0,21
+260434,0,0,0,21
+260435,0,0,0,21
+260436,0,0,0,21
+260437,0,0,0,21
+260438,0,0,0,21
+260439,0,0,0,21
+260440,0,0,0,21
+260441,0,0,0,21
+260442,0,0,0,21
+260443,0,0,0,21
+260444,0,0,0,21
+260445,0,0,0,21
+260446,0,0,0,21
+260447,0,0,0,21
+260448,0,0,0,21
+260449,0,0,0,21
+260450,0,0,0,21
+260451,0,0,0,21
+260452,0,0,0,21
+260453,0,620.1025122,0,21
+260454,0,1199.907473,0,21
+260455,0,1118.447756,0,21
+260456,0,1361.711046,0,21
+260457,0,1522.152741,0,21
+260458,0,1681.356385,0,21
+260459,0,1839.422552,0,21
+260460,0,2152.463706,0,21
+260461,0,0,0,21
+260462,0,0,0,21
+260463,0,0,0,21
+260464,0,0,0,21
+260465,338223.5594,361198.072,657493.7605,21
+260466,0,0,0,21
+260467,0,0,0,21
+260468,0,0,0,21
+260469,0,0,0,21
+260470,0,0,0,21
+260471,0,0,0,21
+260472,0,0,0,21
+260473,0,0,0,21
+260474,0,0,0,21
+260475,0,0,0,21
+260476,0,0,0,21
+260477,0,0,0,21
+260478,0,0,0,21
+260479,0,0,0,21
+260480,0,0,0,21
+260481,0,0,0,21
+260482,0,0,0,21
+260483,0,0,0,21
+260484,0,0,0,21
+260485,0,0,0,21
+260486,0,0,0,21
+260487,0,0,0,21
+260488,0,0,0,21
+260489,0,0,0,21
+260490,0,0,0,21
+260491,0,0,0,21
+260492,0,0,0,21
+260493,0,0,0,21
+260494,0,0,0,21
+260495,0,0,0,21
+260496,0,0,0,21
+260497,0,0,0,21
+260498,0,0,0,21
+260499,337799.0756,362514.3626,657855.719,21
+260500,0,0,0,21
+260501,0,0,0,21
+260502,0,0,0,21
+260503,0,0,0,21
+260504,0,0,0,21
+260505,0,0,0,21
+260506,0,0,0,21
+260507,0,0,0,21
+260508,0,0,0,21
+260509,0,0,0,21
+260510,0,0,0,21
+260511,0,0,0,21
+260512,0,0,0,21
+260513,0,0,0,21
+260514,0,0,0,21
+260515,0,0,0,21
+260516,0,0,0,21
+260517,0,0,0,21
+260518,0,0,0,21
+260519,0,0,0,21
+260520,0,0,0,15.6
+260521,0,0,0,15.6
+260522,0,0,0,15.6
+260523,0,0,0,15.6
+260524,0,0,0,15.6
+260525,0,0,0,15.6
+260526,0,0,0,15.6
+260527,0,0,0,15.6
+260528,0,0,0,15.6
+260529,0,0,0,15.6
+260530,0,0,0,15.6
+260531,0,0,0,15.6
+260532,0,0,0,15.6
+260533,338881.0995,364074.4601,658250.9449,15.6
+260534,0,0,0,15.6
+260535,0,0,0,15.6
+260536,0,0,0,15.6
+260537,0,0,0,15.6
+260538,0,0,0,15.6
+260539,0,0,0,15.6
+260540,0,0,0,15.6
+260541,0,0,0,15.6
+260542,0,0,0,15.6
+260543,0,0,0,15.6
+260544,0,0,0,15.6
+260545,0,0,0,15.6
+260546,0,0,0,15.6
+260547,0,0,0,15.6
+260548,0,0,0,15.6
+260549,0,0,0,15.6
+260550,0,0,0,15.6
+260551,0,0,0,15.6
+260552,0,0,0,15.6
+260553,0,0,0,15.6
+260554,0,0,0,15.6
+260555,0,0,0,15.6
+260556,0,0,0,15.6
+260557,0,0,0,15.6
+260558,0,0,0,15.6
+260559,0,0,0,15.6
+260560,0,0,0,15.6
+260561,0,0,0,15.6
+260562,0,0,0,15.6
+260563,0,0,0,15.6
+260564,0,0,0,15.6
+260565,0,0,0,15.6
+260566,0,0,0,15.6
+260567,0,364199.8223,658517.6519,15.6
+260568,338099.9519,0,0,15.6
+260569,0,0,0,15.6
+260570,0,0,0,15.6
+260571,0,0,0,15.6
+260572,0,0,0,15.6
+260573,0,0,0,15.6
+260574,0,0,0,15.6
+260575,0,0,0,15.6
+260576,0,0,0,15.6
+260577,0,0,0,15.6
+260578,0,0,0,15.6
+260579,0,0,0,15.6
+260580,0,0,0,15.6
+260581,0,0,0,15.6
+260582,0,0,0,15.6
+260583,0,0,0,15.6
+260584,0,0,0,15.6
+260585,0,0,0,15.6
+260586,0,0,0,15.6
+260587,0,0,0,15.6
+260588,0,0,0,15.6
+260589,0,0,0,15.6
+260590,0,0,0,15.6
+260591,0,0,0,15.6
+260592,0,0,0,15.6
+260593,0,0,0,15.6
+260594,0,0,0,15.6
+260595,0,0,0,15.6
+260596,0,0,0,15.6
+260597,0,0,0,15.6
+260598,0,0,0,15.6
+260599,0,0,0,15.6
+260600,0,0,0,15.6
+260601,0,365227.2999,658084.9927,15.6
+260602,0,0,0,15.6
+260603,338104.8868,0,0,15.6
+260604,0,0,0,15.6
+260605,0,0,0,15.6
+260606,0,0,0,15.6
+260607,0,0,0,15.6
+260608,0,0,0,15.6
+260609,0,0,0,15.6
+260610,0,0,0,15.6
+260611,0,0,0,15.6
+260612,0,0,0,15.6
+260613,0,0,0,15.6
+260614,0,0,0,15.6
+260615,0,0,0,15.6
+260616,0,0,0,15.6
+260617,0,0,0,15.6
+260618,0,0,0,15.6
+260619,0,0,0,15.6
+260620,0,0,0,15.6
+260621,0,0,0,15.6
+260622,0,0,0,15.6
+260623,0,0,0,15.6
+260624,0,0,0,15.6
+260625,0,0,0,15.6
+260626,0,0,0,15.6
+260627,0,0,0,15.6
+260628,0,0,0,15.6
+260629,0,0,0,15.6
+260630,0,0,0,15.6
+260631,0,0,0,15.6
+260632,0,0,0,15.6
+260633,0,0,0,15.6
+260634,0,0,0,15.6
+260635,0,365176.0379,658225.9104,15.6
+260636,0,0,0,15.6
+260637,0,0,0,15.6
+260638,338501.0113,0,0,15.6
+260639,0,0,0,15.6
+260640,0,0,0,15.6
+260641,0,0,0,15.6
+260642,0,0,0,15.6
+260643,0,0,0,15.6
+260644,0,0,0,15.6
+260645,0,0,0,15.6
+260646,0,0,0,15.6
+260647,0,0,0,15.6
+260648,0,0,0,15.6
+260649,0,0,0,15.6
+260650,0,0,0,15.6
+260651,0,0,0,15.6
+260652,0,0,0,15.6
+260653,0,0,0,15.6
+260654,0,0,0,15.6
+260655,0,0,0,15.6
+260656,0,0,0,15.6
+260657,0,0,0,15.6
+260658,0,0,0,15.6
+260659,0,0,0,15.6
+260660,0,0,0,15.6
+260661,0,0,0,15.6
+260662,0,0,0,15.6
+260663,0,0,0,15.6
+260664,0,0,0,15.6
+260665,0,0,0,15.6
+260666,0,0,0,15.6
+260667,0,0,0,15.6
+260668,0,0,0,15.6
+260669,0,0,658065.0446,15.6
+260670,0,365864.7648,0,15.6
+260671,0,0,0,15.6
+260672,0,0,0,15.6
+260673,338748.106,0,0,15.6
+260674,0,0,0,15.6
+260675,0,0,0,15.6
+260676,0,0,0,15.6
+260677,0,0,0,15.6
+260678,0,0,0,15.6
+260679,0,0,0,15.6
+260680,0,0,0,15.6
+260681,0,0,0,15.6
+260682,0,0,0,15.6
+260683,0,0,0,15.6
+260684,0,0,0,15.6
+260685,0,0,0,15.6
+260686,0,0,0,15.6
+260687,0,0,0,15.6
+260688,0,0,0,15.6
+260689,0,0,0,15.6
+260690,0,0,0,15.6
+260691,0,0,0,15.6
+260692,0,0,0,15.6
+260693,0,0,0,15.6
+260694,0,0,0,15.6
+260695,0,0,0,15.6
+260696,0,0,0,15.6
+260697,0,0,0,15.6
+260698,0,0,0,15.6
+260699,0,0,0,15.6
+260700,0,0,0,15.6
+260701,0,0,0,15.6
+260702,0,0,0,15.6
+260703,0,0,658576.3314,15.6
+260704,0,0,0,15.6
+260705,0,366310.8128,0,15.6
+260706,0,0,0,15.6
+260707,0,0,0,15.6
+260708,338265.8233,0,0,15.6
+260709,0,0,0,15.6
+260710,0,0,0,15.6
+260711,0,0,0,15.6
+260712,0,0,0,15.6
+260713,0,0,0,15.6
+260714,0,0,0,15.6
+260715,0,0,0,15.6
+260716,0,0,0,15.6
+260717,0,0,0,15.6
+260718,0,0,0,15.6
+260719,0,0,0,15.6
+260720,0,0,0,15.6
+260721,0,0,0,15.6
+260722,0,0,0,15.6
+260723,0,0,0,15.6
+260724,0,0,0,15.6
+260725,0,0,0,15.6
+260726,0,0,0,15.6
+260727,0,0,0,15.6
+260728,0,0,0,15.6
+260729,0,0,0,15.6
+260730,0,0,0,15.6
+260731,0,0,0,15.6
+260732,0,0,0,15.6
+260733,0,0,0,15.6
+260734,0,0,0,15.6
+260735,0,0,0,15.6
+260736,0,0,0,15.6
+260737,0,0,658154.6067,15.6
+260738,0,0,0,15.6
+260739,0,0,0,15.6
+260740,0,365565.009,0,15.6
+260741,0,0,0,15.6
+260742,0,0,0,15.6
+260743,339558.6051,0,0,15.6
+260744,0,0,0,15.6
+260745,0,0,0,15.6
+260746,0,0,0,15.6
+260747,0,0,0,15.6
+260748,0,0,0,15.6
+260749,0,0,0,15.6
+260750,0,0,0,15.6
+260751,0,0,0,15.6
+260752,0,0,0,15.6
+260753,0,0,0,15.6
+260754,0,0,0,15.6
+260755,0,0,0,15.6
+260756,0,0,0,15.6
+260757,0,0,0,15.6
+260758,0,0,0,15.6
+260759,0,0,0,15.6
+260760,0,0,0,15.6
+260761,0,0,0,15.6
+260762,0,0,0,15.6
+260763,0,0,0,15.6
+260764,0,0,0,15.6
+260765,0,0,0,15.6
+260766,0,0,0,15.6
+260767,0,0,0,15.6
+260768,0,0,0,15.6
+260769,0,0,0,15.6
+260770,0,0,0,15.6
+260771,0,0,658551.6541,15.6
+260772,0,0,0,15.6
+260773,0,0,0,15.6
+260774,0,0,0,15.6
+260775,0,369394.0134,0,15.6
+260776,0,0,0,15.6
+260777,0,0,0,15.6
+260778,337754.0156,0,0,15.6
+260779,0,0,0,15.6
+260780,0,0,0,15.6
+260781,0,0,0,15.6
+260782,0,0,0,15.6
+260783,0,0,0,15.6
+260784,0,0,0,15.6
+260785,0,0,0,15.6
+260786,0,0,0,15.6
+260787,0,0,0,15.6
+260788,0,0,0,15.6
+260789,0,0,0,15.6
+260790,0,0,0,15.6
+260791,0,0,0,15.6
+260792,0,0,0,15.6
+260793,0,0,0,15.6
+260794,0,0,0,15.6
+260795,0,0,0,15.6
+260796,0,0,0,15.6
+260797,0,0,0,15.6
+260798,0,0,0,15.6
+260799,0,0,0,15.6
+260800,0,0,0,15.6
+260801,0,0,0,15.6
+260802,0,0,0,15.6
+260803,0,0,0,15.6
+260804,0,0,0,15.6
+260805,0,0,657812.5392,15.6
+260806,0,0,0,15.6
+260807,0,0,0,15.6
+260808,0,0,0,15.6
+260809,0,0,0,15.6
+260810,0,369353.4683,0,15.6
+260811,0,0,0,15.6
+260812,0,0,0,15.6
+260813,339200.4183,0,0,15.6
+260814,0,0,0,15.6
+260815,0,0,0,15.6
+260816,0,0,0,15.6
+260817,0,0,0,15.6
+260818,0,0,0,15.6
+260819,0,0,0,15.6
+260820,0,0,0,15.6
+260821,0,0,0,15.6
+260822,0,0,0,15.6
+260823,0,0,0,15.6
+260824,0,0,0,15.6
+260825,0,0,0,15.6
+260826,0,0,0,15.6
+260827,0,0,0,15.6
+260828,0,0,0,15.6
+260829,0,0,0,15.6
+260830,0,0,0,15.6
+260831,0,0,0,15.6
+260832,0,0,0,15.6
+260833,0,0,0,15.6
+260834,0,0,0,15.6
+260835,0,0,0,15.6
+260836,0,0,0,15.6
+260837,0,0,0,15.6
+260838,0,0,0,15.6
+260839,0,0,658583.0731,15.6
+260840,0,0,0,15.6
+260841,0,0,0,15.6
+260842,0,0,0,15.6
+260843,0,0,0,15.6
+260844,0,0,0,15.6
+260845,0,369308.2855,0,15.6
+260846,0,0,0,15.6
+260847,337784.8349,0,0,15.6
+260848,0,0,0,15.6
+260849,0,0,0,15.6
+260850,0,0,0,15.6
+260851,0,0,0,15.6
+260852,0,0,0,15.6
+260853,0,0,0,15.6
+260854,0,0,0,15.6
+260855,0,0,0,15.6
+260856,0,0,0,15.6
+260857,0,0,0,15.6
+260858,0,0,0,15.6
+260859,0,0,0,15.6
+260860,0,0,0,15.6
+260861,0,0,0,15.6
+260862,0,0,0,15.6
+260863,0,0,0,15.6
+260864,0,0,0,15.6
+260865,0,0,0,15.6
+260866,0,0,0,15.6
+260867,0,0,0,15.6
+260868,0,0,0,15.6
+260869,0,0,0,15.6
+260870,0,0,0,15.6
+260871,0,0,0,15.6
+260872,0,0,0,15.6
+260873,0,0,658459.1659,15.6
+260874,0,0,0,15.6
+260875,0,0,0,15.6
+260876,0,0,0,15.6
+260877,0,0,0,15.6
+260878,0,0,0,15.6
+260879,0,369263.591,0,15.6
+260880,0,0,0,17.8
+260881,338249.0218,0,0,17.8
+260882,0,0,0,17.8
+260883,0,0,0,17.8
+260884,0,0,0,17.8
+260885,0,0,0,17.8
+260886,0,0,0,17.8
+260887,0,0,0,17.8
+260888,0,0,0,17.8
+260889,0,0,0,17.8
+260890,0,0,0,17.8
+260891,0,0,0,17.8
+260892,0,0,0,17.8
+260893,0,0,0,17.8
+260894,0,0,0,17.8
+260895,0,0,0,17.8
+260896,0,0,0,17.8
+260897,0,0,0,17.8
+260898,0,0,0,17.8
+260899,0,0,0,17.8
+260900,0,0,0,17.8
+260901,0,0,0,17.8
+260902,0,0,0,17.8
+260903,0,0,0,17.8
+260904,0,0,0,17.8
+260905,0,0,0,17.8
+260906,0,0,0,17.8
+260907,0,0,659045.8481,17.8
+260908,0,0,0,17.8
+260909,0,0,0,17.8
+260910,0,0,0,17.8
+260911,0,0,0,17.8
+260912,0,0,0,17.8
+260913,0,369262.2682,0,17.8
+260914,0,0,0,17.8
+260915,339838.7082,0,0,17.8
+260916,0,0,0,17.8
+260917,0,0,0,17.8
+260918,0,0,0,17.8
+260919,0,0,0,17.8
+260920,0,0,0,17.8
+260921,0,0,0,17.8
+260922,0,0,0,17.8
+260923,0,0,0,17.8
+260924,0,0,0,17.8
+260925,0,0,0,17.8
+260926,0,0,0,17.8
+260927,0,0,0,17.8
+260928,0,0,0,17.8
+260929,0,0,0,17.8
+260930,0,0,0,17.8
+260931,0,0,0,17.8
+260932,0,0,0,17.8
+260933,0,0,0,17.8
+260934,0,0,0,17.8
+260935,0,0,0,17.8
+260936,0,0,0,17.8
+260937,0,0,0,17.8
+260938,0,0,0,17.8
+260939,0,0,0,17.8
+260940,0,0,0,20
+260941,250588.3703,0,658456.4877,20
+260942,0,0,0,20
+260943,0,0,0,20
+260944,0,0,0,20
+260945,9801.508647,34127.54334,0,20
+260946,18205.30743,32477.11844,0,20
+260947,10485.06126,43343.95175,0,20
+260948,14624.1245,46164.20725,0,20
+260949,15873.46532,45586.48641,0,20
+260950,14261.45788,47314.05331,0,20
+260951,14409.72675,47393.67716,0,20
+260952,14540.77063,47907.94633,0,20
+260953,14526.8151,48226.01548,0,20
+260954,14549.59708,48721.89214,0,20
+260955,14673.57114,48687.37672,0,20
+260956,14795.80593,49091.13572,0,20
+260957,14798.83485,49032.26502,0,20
+260958,14853.19342,49519.72453,0,20
+260959,15045.75282,49430.90172,0,20
+260960,14865.24586,49729.50439,0,20
+260961,15167.41606,49805.52664,0,20
+260962,15113.43768,49362.85213,0,20
+260963,15111.9526,50318.44238,0,20
+260964,15336.875,49551.03747,0,20
+260965,15123.9486,50556.34076,0,20
+260966,15459.55606,50162.16031,0,20
+260967,15369.80988,50293.81234,0,20
+260968,15381.74966,50416.81997,0,20
+260969,15381.7498,50558.90432,0,20
+260970,15582.03781,50694.35531,0,20
+260971,15426.48617,50901.614,0,20
+260972,15626.7743,51000.73188,0,20
+260973,15516.26447,51324.97988,0,20
+260974,15660.95667,51647.38875,0,20
+260975,15626.77468,51393.23855,0,20
+260976,15671.37217,52320.78732,0,20
+260977,15662.37368,51905.22535,0,20
+260978,15871.01056,52675.98442,0,20
+260979,15695.0505,52458.43927,0,20
+260980,15671.37276,53001.30023,0,20
+260981,15918.29338,53117.42019,0,20
+260982,15771.27335,53401.10384,0,20
+260983,15828.95535,53588.81767,0,20
+260984,15894.68962,53753.37599,0,20
+260985,15718.65654,54146.25974,0,20
+260986,15794.95223,54385.59753,0,20
+260987,15684.63784,54811.61929,0,20
+260988,15962.90144,54511.07863,0,20
+260989,15791.54197,55259.09303,0,20
+260990,15744.85265,55426.94499,0,20
+260991,16001.58117,55525.42482,0,20
+260992,15784.59489,55827.61872,0,20
+260993,15905.34363,56437.49306,0,20
+260994,15813.70252,56140.90752,0,20
+260995,16008.43701,56853.37711,0,20
+260996,15845.98393,56786.16569,0,20
+260997,15911.92248,57299.50611,0,20
+260998,15869.95108,57806.04362,0,20
+260999,16028.22049,57463.16402,0,20
+261000,15889.21629,58866.33488,0,21
+261001,15866.77213,60896.49843,0,21
+261002,16126.26451,60960.67531,0,21
+261003,15884.91036,61068.88266,0,21
+261004,15918.91311,61852.89393,0,21
+261005,15908.45082,62497.90609,0,21
+261006,15923.9278,62884.56424,0,21
+261007,15900.39605,63340.45592,0,21
+261008,15938.06705,63984.20092,0,21
+261009,15802.72353,64366.56503,26.39198902,21
+261010,15928.65359,64834.21443,67.97941247,21
+261011,15717.82049,65302.50209,43.24504604,21
+261012,15907.37568,65640.22632,67.97962447,21
+261013,15707.19892,66593.69428,67.97973351,21
+261014,15698.63274,66695.37555,67.97986769,21
+261015,15797.91728,67403.69337,84.20331626,21
+261016,15675.3249,67636.64677,84.20348906,21
+261017,15677.45387,68355.98139,84.20369205,21
+261018,15464.92465,68745.09664,100.2572943,21
+261019,15666.83884,69333.24459,100.257557,21
+261020,15619.87226,69548.63519,100.2578322,21
+261021,15439.34648,70456.56726,116.165315,21
+261022,15408.25907,70488.80369,116.1656789,21
+261023,15387.03712,72025.04183,116.1660194,21
+261024,15397.59256,72318.87951,131.944781,21
+261025,15341.97384,73284.43984,116.1668086,21
+261026,15160.77862,73450.80904,147.6084318,21
+261027,15295.78325,74032.41385,131.9461962,21
+261028,15127.51014,74381.07333,139.7918587,21
+261029,15045.67675,75245.00087,147.6101067,21
+261030,15069.35738,75280.70547,147.6107017,21
+261031,15034.77414,75903.07067,147.6112809,21
+261032,14771.26925,75883.69486,163.1697921,21
+261033,14951.43947,76667.09245,163.1705214,21
+261034,14533.60718,75928.99102,163.1712499,21
+261035,14776.59049,76737.56806,163.1719646,21
+261036,14447.99138,77253.53026,178.634222,21
+261037,14598.49052,76691.00931,178.6350967,21
+261038,14170.46453,77996.73701,178.6359539,21
+261039,14440.85757,77725.22733,178.6368157,21
+261040,14085.5843,77590.18965,194.009947,21
+261041,14138.39747,78371.63625,178.6386391,21
+261042,14020.02944,78129.65317,209.3007224,21
+261043,13996.11751,78105.90645,178.6405061,21
+261044,13969.65448,78815.77661,209.3029473,21
+261045,13982.44452,78100.03774,194.0150819,21
+261046,13923.42359,78969.59447,209.3052537,21
+261047,13731.86232,78693.29274,209.3064447,21
+261048,13787.78168,78747.11325,209.3076498,21
+261049,13674.28023,78999.85194,209.3088519,21
+261050,13548.56251,79128.99927,209.3100425,21
+261051,13513.97287,78817.09485,224.5223504,21
+261052,13423.37442,79324.6652,194.0228107,21
+261053,13353.20913,79109.12968,209.3136393,21
+261054,13377.34194,79202.94541,209.3148292,21
+261055,13124.61832,79149.45525,194.0260386,21
+261056,13088.98618,79725.60257,224.52871,21
+261057,13101.7504,79071.20559,194.0282601,21
+261058,12951.39532,79425.92953,224.5312853,21
+261059,12824.37801,79777.18133,194.0304563,21
+261060,12812.83548,79142.73028,224.5338647,21
+261061,8905.549575,67017.44049,0,21
+261062,8524.316436,66382.20441,0,21
+261063,8250.69841,65936.05584,0,21
+261064,8224.513009,65961.08533,0,21
+261065,8184.621855,66807.38059,0,21
+261066,7935.981192,65878.46214,0,21
+261067,7922.167815,66743.46145,0,21
+261068,7645.249085,66514.96378,0,21
+261069,7742.702054,66616.58573,0,21
+261070,7491.599394,66686.67029,0,21
+261071,7463.876994,67079.69499,0,21
+261072,7323.247177,67113.99185,0,21
+261073,7323.247339,66997.46918,0,21
+261074,7071.925099,67402.43074,0,21
+261075,7184.757219,67201.37395,0,21
+261076,6958.806479,67675.21772,0,21
+261077,6932.766563,67632.07372,0,21
+261078,6806.298705,67930.86134,0,21
+261079,6806.29882,67580.79833,0,21
+261080,6679.509966,68426.81007,0,21
+261081,6552.394287,68041.90503,0,21
+261082,6552.394412,68524.59581,0,21
+261083,6526.104353,68148.06818,0,21
+261084,6297.162175,68927.2139,0,21
+261085,6283.978802,68777.57044,0,21
+261086,6283.979294,68620.70298,0,21
+261087,6027.322987,69259.74464,0,21
+261088,6142.590641,69277.40758,0,21
+261089,5885.177007,69219.39808,0,21
+261090,6014.062216,69323.72069,0,21
+261091,5755.928143,69624.86997,0,21
+261092,5742.58688,69368.93168,0,21
+261093,5742.586996,69808.79894,0,21
+261094,5496.319629,69742.83231,0,21
+261095,5482.924035,69531.77345,0,21
+261096,5469.500918,69672.74757,0,21
+261097,5235.1738,70194.46436,0,21
+261098,5208.24438,69694.49801,0,21
+261099,5208.244454,69821.31241,0,21
+261100,4958.921782,69899.78167,0,21
+261101,4945.387503,70151.55839,0,21
+261102,4931.823097,69958.15164,0,21
+261103,4694.435892,70174.69965,0,21
+261104,4667.220887,69857.21579,0,21
+261105,4667.220818,70376.0097,0,21
+261106,4414.53315,70206.58147,0,21
+261107,4400.851731,70486.96377,0,21
+261108,4387.140378,70498.62948,0,21
+261109,4132.619071,70251.82307,0,21
+261110,4132.61943,70590.94742,0,21
+261111,3983.96684,70423.54181,0,21
+261112,3983.966983,70495.58224,0,21
+261113,3848.577232,70509.43335,0,21
+261114,3590.09877,70346.19282,0,21
+261115,3806.88372,70634.61384,0,21
+261116,3453.105977,70524.09696,0,21
+261117,3425.213504,70488.54373,0,21
+261118,3548.324817,70516.16538,0,21
+261119,3301.567521,70608.85485,0,21
+261120,3411.218808,70624.54549,0,21
+261121,3259.478834,70345.90033,0,21
+261122,3149.314057,70504.4817,0,21
+261123,3121.15522,70273.42416,0,21
+261124,2996.323708,70184.34746,0,21
+261125,2982.192848,70329.86689,0,21
+261126,2842.561489,70011.93376,0,21
+261127,2842.561419,69944.30651,0,21
+261128,2687.990821,70030.39008,0,21
+261129,2702.227846,69513.28048,0,21
+261130,2419.29542,69855.53501,0,21
+261131,2659.407715,69734.27705,0,21
+261132,2276.603292,69270.36729,0,21
+261133,2390.638305,69776.0437,0,21
+261134,2247.871113,69235.87007,0,21
+261135,2118.633795,69002.12701,0,21
+261136,2089.748251,69230.23425,0,21
+261137,2104.210499,69292.40126,0,21
+261138,1813.917382,68842.17652,0,21
+261139,1930.543637,68713.70731,0,21
+261140,1799.375687,68812.07305,0,21
+261141,1652.516725,68589.53612,0,21
+261142,1652.516799,68662.8807,0,21
+261143,1489.713209,68206.41346,0,21
+261144,1489.713277,68510.92512,0,21
+261145,1340.085257,67922.26959,0,21
+261146,1325.332988,68492.89548,0,21
+261147,1325.333127,67711.11616,0,21
+261148,1035.45594,67877.96826,0,21
+261149,1159.139987,67894.97639,0,21
+261150,864.6876977,67487.37887,0,21
+261151,1005.724936,67596.75691,0,21
+261152,849.7513224,67240.21132,0,21
+261153,849.7513354,67316.68124,0,21
+261154,675.1327455,67253.78478,0,21
+261155,690.1645392,66896.05944,0,21
+261156,675.1327352,66862.67281,0,21
+261157,493.0509273,66747.62835,0,21
+261158,675.1327121,66706.06492,0,21
+261159,477.865379,66260.15516,0,21
+261160,493.0508976,66749.62433,0,21
+261161,462.6261036,65909.98976,0,21
+261162,477.8653663,66242.59471,0,21
+261163,447.3317029,65959.1373,0,21
+261164,447.3316828,65693.65346,0,21
+261165,431.978849,65586.85529,0,21
+261166,416.571057,65563.5848,0,21
+261167,416.5713967,65566.88176,0,21
+261168,401.1023029,65170.20658,0,21
+261169,401.1023312,64910.12852,0,21
+261170,385.5714875,65102.13228,0,21
+261171,369.9769791,64673.94067,0,21
+261172,369.9769757,64774.88545,0,21
+261173,354.3166303,64236.29246,0,21
+261174,354.3166239,64522.88085,0,21
+261175,338.5880972,64191.04692,0,21
+261176,338.5881001,64101.4246,0,21
+261177,322.7888412,63728.73105,0,21
+261178,322.7888365,63831.94894,0,21
+261179,306.9160467,63306.38387,0,21
+261180,290.9666232,63621.93038,0,21
+261181,290.9664213,64992.28425,0,21
+261182,258.8238129,64750.23799,0,21
+261183,266.8912287,64713.97021,0,21
+261184,242.6223702,64456.56074,0,21
+261185,242.6223874,64505.14727,0,21
+261186,226.3279221,64219.1466,0,21
+261187,226.3279378,64098.3934,0,21
+261188,209.9349242,64184.36825,0,21
+261189,193.4369678,63763.5885,0,21
+261190,193.4369749,63349.09801,0,21
+261191,176.8265684,63756.45746,0,21
+261192,160.0948757,63452.58443,0,21
+261193,160.0948763,63252.34249,0,21
+261194,160.094893,63152.73357,0,21
+261195,126.2224184,62720.93054,0,21
+261196,126.2224201,62855.49337,0,21
+261197,126.222431,62666.5547,0,21
+261198,91.69803561,62353.98226,0,21
+261199,109.0519355,62355.22942,0,21
+261200,74.13114355,62312.79908,0,21
+261201,91.69805364,61545.77132,0,21
+261202,56.30800332,61458.71062,0,21
+261203,56.30800651,61630.86597,0,21
+261204,38.15884894,61137.19008,0,21
+261205,38.15885282,61058.95935,0,21
+261206,19.54814549,60910.60911,0,21
+261207,19.5481481,60625.98648,0,21
+261208,0,60698.13943,0,21
+261209,0,60485.09487,0,21
+261210,0,60258.44615,0,21
+261211,0,60264.44663,0,21
+261212,0,60152.05106,0,21
+261213,0,60185.69288,0,21
+261214,0,60316.69844,0,21
+261215,0,60093.78455,0,21
+261216,0,60065.44889,0,21
+261217,0,60258.51669,0,21
+261218,0,60079.7535,0,21
+261219,0,60093.61605,0,21
+261220,0,60478.80231,0,21
+261221,0,60079.77693,0,21
+261222,0,60348.86371,0,21
+261223,0,60079.79743,0,21
+261224,0,60493.30256,0,21
+261225,0,60213.75253,0,21
+261226,0,60349.47709,0,21
+261227,0,60433.63012,0,21
+261228,0,60528.27918,0,21
+261229,0,60361.96526,0,21
+261230,0,60689.0335,0,21
+261231,0,60513.68006,0,21
+261232,0,60617.18738,0,21
+261233,0,60768.2838,0,21
+261234,0,60751.29131,0,21
+261235,0,60747.80201,0,21
+261236,0,60856.3901,0,21
+261237,0,60989.45646,0,21
+261238,0,60976.47865,0,21
+261239,0,61050.14996,0,21
+261240,0,61169.68685,0,21
+261241,0,59587.36221,0,21
+261242,0,59183.76567,0,21
+261243,0,59203.54577,0,21
+261244,0,59765.57426,0,21
+261245,0,58820.80644,0,21
+261246,0,59581.3014,0,21
+261247,0,59575.38732,0,21
+261248,0,58977.9667,0,21
+261249,0,59458.99722,0,21
+261250,0,59112.62069,0,21
+261251,0,59563.54969,0,21
+261252,0,59232.4901,0,21
+261253,0,59335.7378,0,21
+261254,0,59198.15928,0,21
+261255,0,58992.79869,0,21
+261256,0,59712.33359,0,21
+261257,0,58957.98001,0,21
+261258,0,59355.55763,0,21
+261259,0,58986.41264,0,21
+261260,0,59656.20207,0,21
+261261,0,58952.0468,0,21
+261262,0,59369.40959,0,21
+261263,0,59095.14585,0,21
+261264,0,59351.39411,0,21
+261265,0,59106.42271,0,21
+261266,0,59231.33376,0,21
+261267,0,59135.90948,0,21
+261268,0,59265.60082,0,21
+261269,0,59116.51885,0,21
+261270,0,59064.5886,0,21
+261271,0,59157.5656,0,21
+261272,0,58962.86434,0,21
+261273,0,58627.92734,0,21
+261274,0,58528.63369,0,21
+261275,0,58277.33662,0,21
+261276,0,58198.41771,0,21
+261277,0,57787.00716,0,21
+261278,0,57861.34878,0,21
+261279,0,57465.75006,0,21
+261280,0,57365.00608,0,21
+261281,0,56948.94381,0,21
+261282,0,56805.48151,0,21
+261283,0,56740.18044,0,21
+261284,0,56165.83554,0,21
+261285,0,56149.79872,0,21
+261286,0,56123.50069,0,21
+261287,0,55473.63443,0,21
+261288,0,55363.15094,0,21
+261289,0,55186.49198,0,21
+261290,0,54703.70581,0,21
+261291,0,54837.62038,0,21
+261292,0,54214.6191,0,21
+261293,0,54061.58889,0,21
+261294,0,53754.21609,0,21
+261295,0,53836.65296,0,21
+261296,0,53241.1734,0,21
+261297,0,52787.18136,0,21
+261298,0,53036.47966,0,21
+261299,0,52137.23246,0,21
+261300,0,52585.88442,0,21
+261301,0,65209.33583,0,21
+261302,0,66366.08501,0,21
+261303,0,66627.56107,0,21
+261304,0,66386.18955,0,21
+261305,0,66322.23663,0,21
+261306,0,66398.38644,0,21
+261307,0,66568.45323,0,21
+261308,0,66213.52656,0,21
+261309,0,66416.67369,0,21
+261310,0,66136.68675,0,21
+261311,0,66360.8103,0,21
+261312,0,65887.58064,0,21
+261313,0,66142.86816,0,21
+261314,0,65860.15461,0,21
+261315,0,65694.99433,0,21
+261316,0,65695.96237,0,21
+261317,0,65585.61405,0,21
+261318,0,65292.78545,0,21
+261319,0,65304.7143,0,21
+261320,0,65369.8742,0,21
+261321,0,65053.59822,0,21
+261322,0,65087.42399,0,21
+261323,0,64597.71098,0,21
+261324,0,64824.15487,0,21
+261325,0,64602.12482,0,21
+261326,0,64651.25981,0,21
+261327,0,64078.90651,0,21
+261328,0,64366.13681,0,21
+261329,0,63998.03084,0,21
+261330,0,63904.55499,0,21
+261331,0,63893.6962,0,21
+261332,0,63846.23428,0,21
+261333,0,63892.47867,0,21
+261334,0,64547.9393,0,21
+261335,0,64457.07291,0,21
+261336,0,64429.88228,0,21
+261337,0,64711.79592,0,21
+261338,0,64928.77524,0,21
+261339,0,64788.20804,0,21
+261340,0,64892.68629,0,21
+261341,0,65347.18118,0,21
+261342,0,64955.09232,0,21
+261343,0,65361.31449,0,21
+261344,0,65498.88066,0,21
+261345,0,65284.3329,0,21
+261346,0,66040.99144,0,21
+261347,0,65621.56055,0,21
+261348,0,65955.69331,0,21
+261349,0,65884.80815,0,21
+261350,0,66455.73976,0,21
+261351,0,66019.28747,0,21
+261352,0,66561.70815,0,21
+261353,0,66580.03586,0,21
+261354,0,66598.0992,0,21
+261355,0,67129.27207,0,21
+261356,0,66984.26324,0,21
+261357,0,67128.26302,0,21
+261358,0,66978.3951,0,21
+261359,0,67598.25101,0,21
+261360,0,67564.54467,0,21
+261361,0,67110.71151,0,21
+261362,0,67376.59237,0,21
+261363,0,67220.08873,0,21
+261364,0,67947.59736,0,21
+261365,0,67514.31277,0,21
+261366,0,67940.1343,0,21
+261367,0,67958.91427,0,21
+261368,0,68176.47744,0,21
+261369,0,68250.98871,0,21
+261370,0,68398.40947,0,21
+261371,0,68743.18752,0,21
+261372,0,68598.94497,0,21
+261373,0,68529.6433,0,21
+261374,0,69383.44169,0,21
+261375,0,69158.67554,0,21
+261376,0,69164.15715,0,21
+261377,0,69638.81276,0,21
+261378,0,69471.34566,0,21
+261379,0,69796.36272,0,21
+261380,0,70123.82784,0,21
+261381,0,69955.48032,0,21
+261382,0,70313.19694,0,21
+261383,0,70377.5847,0,21
+261384,0,70647.50736,0,21
+261385,0,70932.68183,0,21
+261386,0,71006.46765,0,21
+261387,0,70827.13329,0,21
+261388,0,71663.60333,0,21
+261389,0,71177.32265,0,21
+261390,0,71701.40316,0,21
+261391,0,71851.92438,0,21
+261392,0,71962.27142,0,21
+261393,0,72188.63466,0,21
+261394,0,72388.79062,0,21
+261395,0,72400.03308,0,21
+261396,0,72570.15974,0,21
+261397,0,73042.10841,0,21
+261398,0,72865.26844,0,21
+261399,0,73312.25228,0,21
+261400,0,72858.8338,0,21
+261401,0,74056.62612,0,21
+261402,0,73379.41163,0,21
+261403,0,73986.91342,0,21
+261404,0,73821.28581,0,21
+261405,0,74252.88938,0,21
+261406,0,74282.85593,0,21
+261407,0,74552.33301,0,21
+261408,0,74680.93142,0,21
+261409,0,74978.55251,0,21
+261410,0,74852.04651,0,21
+261411,0,75463.5947,0,21
+261412,0,74932.93239,0,21
+261413,0,75948.88808,0,21
+261414,0,75791.91647,0,21
+261415,0,75736.44837,0,21
+261416,0,76023.12826,0,21
+261417,0,76264.14792,0,21
+261418,0,76562.66434,0,21
+261419,0,76491.83972,0,21
+261420,0,76751.26441,0,21
+261421,0,77389.81933,0,21
+261422,0,77607.11528,0,21
+261423,0,77463.07551,0,21
+261424,0,78102.26612,0,21
+261425,0,77675.6141,0,21
+261426,0,78149.58043,0,21
+261427,0,78330.6912,0,21
+261428,0,78041.29394,0,21
+261429,0,78539.13399,0,21
+261430,0,78450.42329,0,21
+261431,0,78684.72875,0,21
+261432,0,78669.68084,0,21
+261433,0,78928.68878,0,21
+261434,0,78934.62436,0,21
+261435,0,79211.91229,0,21
+261436,0,78954.51155,0,21
+261437,0,79463.68567,0,21
+261438,0,79575.00743,0,21
+261439,0,79268.07764,0,21
+261440,0,80010.73156,0,21
+261441,0,79358.93654,0,21
+261442,0,80119.23247,0,21
+261443,0,80003.38688,0,21
+261444,0,80380.8784,0,21
+261445,0,79902.08433,0,21
+261446,0,80270.62292,0,21
+261447,0,80876.11834,0,21
+261448,0,80547.62496,0,21
+261449,0,80365.14824,0,21
+261450,0,81247.05453,0,21
+261451,0,80441.26066,0,21
+261452,0,80582.82007,0,21
+261453,0,80193.82463,0,21
+261454,0,79905.45528,0,21
+261455,0,79832.72406,0,21
+261456,0,79399.73667,0,21
+261457,0,79241.51125,0,21
+261458,0,78699.45335,0,21
+261459,0,78696.96647,0,21
+261460,0,78330.55749,0,21
+261461,0,77819.25148,0,21
+261462,0,77407.5152,0,21
+261463,0,77477.19891,0,21
+261464,0,76952.74727,0,21
+261465,0,75642.41945,0,21
+261466,0,74737.18625,0,21
+261467,0,74709.94263,0,21
+261468,0,73965.12954,0,21
+261469,0,73942.06219,0,21
+261470,0,73038.23937,0,21
+261471,0,72902.97125,0,21
+261472,0,72376.73361,0,21
+261473,0,71975.07293,0,21
+261474,0,71633.14293,0,21
+261475,0,70538.07849,0,21
+261476,0,71035.68219,0,21
+261477,0,69766.22227,0,21
+261478,0,69602.17046,0,21
+261479,0,69217.43165,0,21
+261480,0,68508.64836,0,21
+261481,0,67685.47603,0,21
+261482,0,67247.98024,0,21
+261483,0,66572.90762,0,21
+261484,0,66239.01131,0,21
+261485,0,66092.27805,0,21
+261486,0,65114.99429,0,21
+261487,0,64846.0326,0,21
+261488,0,64443.21054,0,21
+261489,0,63874.86357,0,21
+261490,0,63438.11898,0,21
+261491,0,62750.12056,0,21
+261492,0,62374.83426,0,21
+261493,0,61691.81053,0,21
+261494,0,61545.47888,0,21
+261495,0,60655.78552,0,21
+261496,0,60481.89904,0,21
+261497,0,59574.24166,0,21
+261498,0,59236.79293,0,21
+261499,0,58947.39181,0,21
+261500,0,57783.64547,0,21
+261501,0,57758.18818,0,21
+261502,0,56853.97365,0,21
+261503,0,56832.83318,0,21
+261504,0,55490.18953,0,21
+261505,0,55520.31323,0,21
+261506,0,54768.6268,0,21
+261507,0,53971.91602,0,21
+261508,0,53633.94115,0,21
+261509,0,52982.91544,0,21
+261510,0,52526.84493,0,21
+261511,0,51880.43741,0,21
+261512,0,52155.43561,0,21
+261513,0,51431.30126,0,21
+261514,0,51996.69659,0,21
+261515,0,51128.5524,0,21
+261516,0,51549.78099,0,21
+261517,0,51008.94517,0,21
+261518,0,51350.31689,0,21
+261519,0,50804.1658,0,21
+261520,0,51077.43777,0,21
+261521,0,50713.60215,0,21
+261522,0,50946.15762,0,21
+261523,0,50337.79487,0,21
+261524,0,50954.27676,0,21
+261525,0,50338.46665,0,21
+261526,0,50694.19402,0,21
+261527,0,50428.97331,0,21
+261528,0,50547.62357,0,21
+261529,0,50466.66795,0,21
+261530,0,50284.763,0,21
+261531,0,51799.32808,0,21
+261532,0,53083.25652,0,21
+261533,0,53124.67527,0,21
+261534,0,51543.69821,0,21
+261535,0,54596.92542,0,21
+261536,0,52969.62415,0,21
+261537,0,53131.53822,0,21
+261538,0,54301.8095,0,21
+261539,0,54437.99863,0,21
+261540,0,54847.94508,0,21
+261541,0,54253.49781,0,21
+261542,0,55242.99011,0,21
+261543,0,54599.58949,0,21
+261544,0,55187.26759,0,21
+261545,0,55350.032,0,21
+261546,0,54938.47847,0,21
+261547,0,55292.36994,0,21
+261548,0,56357.4965,0,21
+261549,0,54852.78052,0,21
+261550,0,56857.79272,0,21
+261551,0,56167.18248,0,21
+261552,0,56176.18023,0,21
+261553,0,56224.55257,0,21
+261554,0,57635.63264,0,21
+261555,0,55704.19357,0,21
+261556,0,58296.40511,0,21
+261557,0,58152.83325,0,21
+261558,0,59977.19541,0,21
+261559,0,59276.99886,0,21
+261560,0,60282.00657,0,21
+261561,0,60306.41391,0,21
+261562,0,60522.69406,0,21
+261563,0,60656.02965,0,21
+261564,0,61708.93883,0,21
+261565,0,60699.74669,0,21
+261566,0,61900.7108,0,21
+261567,0,61855.14547,0,21
+261568,0,62053.07705,0,21
+261569,0,63094.82028,0,21
+261570,0,62145.50164,0,21
+261571,0,63603.58565,0,21
+261572,0,63777.09079,0,21
+261573,0,63676.44796,0,21
+261574,0,64558.98978,0,21
+261575,0,65744.20968,0,21
+261576,0,65023.05115,0,21
+261577,0,66447.42297,0,21
+261578,0,66511.60621,0,21
+261579,0,67999.42081,0,21
+261580,0,67345.67384,0,21
+261581,0,68724.34773,0,21
+261582,0,69138.42223,0,21
+261583,0,69605.58744,0,21
+261584,0,70059.40316,0,21
+261585,0,71121.65227,0,21
+261586,0,70783.1105,0,21
+261587,0,72483.76994,0,21
+261588,0,72974.48691,0,21
+261589,0,72744.5143,0,21
+261590,0,73472.91529,0,21
+261591,0,75514.94751,0,21
+261592,0,74604.06158,0,21
+261593,0,76092.34749,0,21
+261594,0,76476.29403,0,21
+261595,0,77255.8715,0,21
+261596,0,77427.67446,0,21
+261597,0,78987.68529,0,21
+261598,0,78633.81924,0,21
+261599,0,80083.15691,0,21
+261600,0,80482.15701,0,21
+261601,0,0,0,21
+261602,0,0,0,21
+261603,0,0,0,21
+261604,0,0,0,21
+261605,0,0,0,21
+261606,0,0,0,21
+261607,0,0,0,21
+261608,0,0,0,21
+261609,0,0,0,21
+261610,0,0,0,21
+261611,0,0,0,21
+261612,0,0,0,21
+261613,0,0,0,21
+261614,0,0,0,21
+261615,0,0,0,21
+261616,0,0,0,21
+261617,0,0,0,21
+261618,0,0,0,21
+261619,0,0,0,21
+261620,0,0,0,21
+261621,0,0,0,21
+261622,0,0,0,21
+261623,0,0,0,21
+261624,0,0,0,21
+261625,0,0,0,21
+261626,0,0,0,21
+261627,0,0,0,21
+261628,0,0,0,21
+261629,0,0,0,21
+261630,0,0,0,21
+261631,0,0,0,21
+261632,0,0,0,21
+261633,0,0,0,21
+261634,0,0,0,21
+261635,0,0,0,21
+261636,0,0,0,21
+261637,0,0,0,21
+261638,0,0,0,21
+261639,0,0,0,21
+261640,0,0,0,21
+261641,0,0,0,21
+261642,0,0,0,21
+261643,0,0,0,21
+261644,0,0,0,21
+261645,0,0,0,21
+261646,0,0,0,21
+261647,0,0,0,21
+261648,0,0,0,21
+261649,0,0,0,21
+261650,0,0,0,21
+261651,0,0,0,21
+261652,0,0,0,21
+261653,0,0,0,21
+261654,0,0,0,21
+261655,0,0,0,21
+261656,0,0,0,21
+261657,0,0,0,21
+261658,0,0,0,21
+261659,0,0,0,21
+261660,0,0,0,21
+261661,0,0,0,21
+261662,0,0,0,21
+261663,0,0,0,21
+261664,0,0,0,21
+261665,0,0,0,21
+261666,0,0,655706.5845,21
+261667,332998.7942,363321.3888,0,21
+261668,0,0,0,21
+261669,0,0,0,21
+261670,0,0,0,21
+261671,0,0,0,21
+261672,0,0,0,21
+261673,0,0,0,21
+261674,0,0,0,21
+261675,0,0,0,21
+261676,0,0,0,21
+261677,0,0,0,21
+261678,0,0,0,21
+261679,0,0,0,21
+261680,0,0,0,21
+261681,0,0,0,21
+261682,0,0,0,21
+261683,0,0,0,21
+261684,0,0,0,21
+261685,0,0,0,21
+261686,0,0,0,21
+261687,0,0,0,21
+261688,0,0,0,21
+261689,0,0,0,21
+261690,0,0,0,21
+261691,0,0,0,21
+261692,0,0,0,21
+261693,0,0,0,21
+261694,0,0,0,21
+261695,0,0,0,21
+261696,0,0,0,21
+261697,0,0,0,21
+261698,0,0,0,21
+261699,0,0,0,21
+261700,0,0,0,21
+261701,0,0,656094.2334,21
+261702,0,0,0,21
+261703,333412.8216,364815.5667,0,21
+261704,0,0,0,21
+261705,0,0,0,21
+261706,0,0,0,21
+261707,0,0,0,21
+261708,0,0,0,21
+261709,0,0,0,21
+261710,0,0,0,21
+261711,0,0,0,21
+261712,0,0,0,21
+261713,0,0,0,21
+261714,0,0,0,21
+261715,0,0,0,21
+261716,0,0,0,21
+261717,0,0,0,21
+261718,0,0,0,21
+261719,0,0,0,21
+261720,0,0,0,21
+261721,0,0,0,21
+261722,0,0,0,21
+261723,0,0,0,21
+261724,0,0,0,21
+261725,0,0,0,21
+261726,0,0,0,21
+261727,0,0,0,21
+261728,0,0,0,21
+261729,0,0,0,21
+261730,0,0,0,21
+261731,0,0,0,21
+261732,0,0,0,21
+261733,0,0,0,21
+261734,0,0,0,21
+261735,0,0,0,21
+261736,0,0,656618.041,21
+261737,0,0,0,21
+261738,0,0,0,21
+261739,333900.2569,365758.5228,0,21
+261740,0,0,0,21
+261741,0,0,0,21
+261742,0,0,0,21
+261743,0,0,0,21
+261744,0,0,0,21
+261745,0,0,0,21
+261746,0,0,0,21
+261747,0,0,0,21
+261748,0,0,0,21
+261749,0,0,0,21
+261750,0,0,0,21
+261751,0,0,0,21
+261752,0,0,0,21
+261753,0,0,0,21
+261754,0,0,0,21
+261755,0,0,0,21
+261756,0,0,0,21
+261757,0,0,0,21
+261758,0,0,0,21
+261759,0,0,0,21
+261760,0,0,0,21
+261761,0,0,0,21
+261762,0,0,0,21
+261763,0,0,0,21
+261764,0,0,0,21
+261765,0,0,0,21
+261766,0,0,0,21
+261767,0,0,0,21
+261768,0,0,0,21
+261769,0,0,0,21
+261770,0,0,0,21
+261771,0,0,656824.435,21
+261772,0,0,0,21
+261773,0,0,0,21
+261774,0,0,0,21
+261775,334302.7145,366329.1142,0,21
+261776,0,0,0,21
+261777,0,0,0,21
+261778,0,0,0,21
+261779,0,0,0,21
+261780,0,0,0,21
+261781,0,0,0,21
+261782,0,0,0,21
+261783,0,0,0,21
+261784,0,0,0,21
+261785,0,0,0,21
+261786,0,0,0,21
+261787,0,0,0,21
+261788,0,0,0,21
+261789,0,0,0,21
+261790,0,0,0,21
+261791,0,0,0,21
+261792,0,0,0,21
+261793,0,0,0,21
+261794,0,0,0,21
+261795,0,0,0,21
+261796,0,0,0,21
+261797,0,0,0,21
+261798,0,0,0,21
+261799,0,0,0,21
+261800,0,0,0,21
+261801,0,0,0,21
+261802,0,0,0,21
+261803,0,0,0,21
+261804,0,0,0,21
+261805,0,0,0,21
+261806,0,0,657406.2219,21
+261807,0,0,0,21
+261808,0,0,0,21
+261809,0,0,0,21
+261810,0,0,0,21
+261811,334951.6095,366791.5408,0,21
+261812,0,0,0,21
+261813,0,0,0,21
+261814,0,0,0,21
+261815,0,0,0,21
+261816,0,0,0,21
+261817,0,0,0,21
+261818,0,0,0,21
+261819,0,0,0,21
+261820,0,0,0,21
+261821,0,0,0,21
+261822,0,0,0,21
+261823,0,0,0,21
+261824,0,0,0,21
+261825,0,0,0,21
+261826,0,0,0,21
+261827,0,0,0,21
+261828,0,0,0,21
+261829,0,0,0,21
+261830,0,0,0,21
+261831,0,0,0,21
+261832,0,0,0,21
+261833,0,0,0,21
+261834,0,0,0,21
+261835,0,0,0,21
+261836,0,0,0,21
+261837,0,0,0,21
+261838,0,0,0,21
+261839,0,0,0,21
+261840,0,0,0,21
+261841,0,0,658696.5391,21
+261842,0,0,0,21
+261843,0,0,0,21
+261844,0,0,0,21
+261845,0,0,0,21
+261846,0,0,0,21
+261847,335194.9234,367159.044,0,21
+261848,0,0,0,21
+261849,0,0,0,21
+261850,0,0,0,21
+261851,0,0,0,21
+261852,0,0,0,21
+261853,0,0,0,21
+261854,0,0,0,21
+261855,0,0,0,21
+261856,0,0,0,21
+261857,0,0,0,21
+261858,0,0,0,21
+261859,0,0,0,21
+261860,0,0,0,21
+261861,0,0,0,21
+261862,0,0,0,21
+261863,0,0,0,21
+261864,0,0,0,21
+261865,0,0,0,21
+261866,0,0,0,21
+261867,0,0,0,21
+261868,0,0,0,21
+261869,0,0,0,21
+261870,0,0,0,21
+261871,0,0,0,21
+261872,0,0,0,21
+261873,0,0,0,21
+261874,0,0,0,21
+261875,0,0,0,21
+261876,0,0,659748.4859,21
+261877,0,0,0,21
+261878,0,0,0,21
+261879,0,0,0,21
+261880,0,0,0,21
+261881,0,0,0,21
+261882,0,0,0,21
+261883,334843.5418,367390.2149,0,21
+261884,0,0,0,21
+261885,0,0,0,21
+261886,0,0,0,21
+261887,0,0,0,21
+261888,0,0,0,21
+261889,0,0,0,21
+261890,0,0,0,21
+261891,0,0,0,21
+261892,0,0,0,21
+261893,0,0,0,21
+261894,0,0,0,21
+261895,0,0,0,21
+261896,0,0,0,21
+261897,0,0,0,21
+261898,0,0,0,21
+261899,0,0,0,21
+261900,0,0,0,21
+261901,0,0,0,21
+261902,0,0,0,21
+261903,0,0,0,21
+261904,0,0,0,21
+261905,0,0,0,21
+261906,0,0,0,21
+261907,0,0,0,21
+261908,0,0,0,21
+261909,0,0,0,21
+261910,0,0,0,21
+261911,0,0,660356.0753,21
+261912,0,0,0,21
+261913,0,0,0,21
+261914,0,0,0,21
+261915,0,0,0,21
+261916,0,0,0,21
+261917,0,0,0,21
+261918,0,0,0,21
+261919,336294.6559,367538.7595,0,21
+261920,0,0,0,21
+261921,0,0,0,21
+261922,0,0,0,21
+261923,0,0,0,21
+261924,0,0,0,21
+261925,0,0,0,21
+261926,0,0,0,21
+261927,0,0,0,21
+261928,0,0,0,21
+261929,0,0,0,21
+261930,0,0,0,21
+261931,0,0,0,21
+261932,0,0,0,21
+261933,0,0,0,21
+261934,0,0,0,21
+261935,0,0,0,21
+261936,0,0,0,21
+261937,0,0,0,21
+261938,0,0,0,21
+261939,0,0,0,21
+261940,0,0,0,21
+261941,0,0,0,21
+261942,0,0,0,21
+261943,0,0,0,21
+261944,0,0,0,21
+261945,0,0,0,21
+261946,0,0,659151.7301,21
+261947,0,0,0,21
+261948,0,0,0,21
+261949,0,0,0,21
+261950,0,0,0,21
+261951,0,0,0,21
+261952,0,0,0,21
+261953,0,0,0,21
+261954,0,0,0,21
+261955,337304.9524,367706.3484,0,21
+261956,0,0,0,21
+261957,0,0,0,21
+261958,0,0,0,21
+261959,0,0,0,21
+261960,0,0,0,15.6
+261961,0,0,0,15.6
+261962,0,0,0,15.6
+261963,0,0,0,15.6
+261964,0,0,0,15.6
+261965,0,0,0,15.6
+261966,0,0,0,15.6
+261967,0,0,0,15.6
+261968,0,0,0,15.6
+261969,0,0,0,15.6
+261970,0,0,0,15.6
+261971,0,0,0,15.6
+261972,0,0,0,15.6
+261973,0,0,0,15.6
+261974,0,0,0,15.6
+261975,0,0,0,15.6
+261976,0,0,0,15.6
+261977,0,0,0,15.6
+261978,0,0,0,15.6
+261979,0,0,0,15.6
+261980,0,0,0,15.6
+261981,0,0,660622.6361,15.6
+261982,0,0,0,15.6
+261983,0,0,0,15.6
+261984,0,0,0,15.6
+261985,0,0,0,15.6
+261986,0,0,0,15.6
+261987,0,0,0,15.6
+261988,0,0,0,15.6
+261989,0,0,0,15.6
+261990,0,0,0,15.6
+261991,0,367760.6796,0,15.6
+261992,337857.6912,0,0,15.6
+261993,0,0,0,15.6
+261994,0,0,0,15.6
+261995,0,0,0,15.6
+261996,0,0,0,15.6
+261997,0,0,0,15.6
+261998,0,0,0,15.6
+261999,0,0,0,15.6
+262000,0,0,0,15.6
+262001,0,0,0,15.6
+262002,0,0,0,15.6
+262003,0,0,0,15.6
+262004,0,0,0,15.6
+262005,0,0,0,15.6
+262006,0,0,0,15.6
+262007,0,0,0,15.6
+262008,0,0,0,15.6
+262009,0,0,0,15.6
+262010,0,0,0,15.6
+262011,0,0,0,15.6
+262012,0,0,0,15.6
+262013,0,0,0,15.6
+262014,0,0,0,15.6
+262015,0,0,0,15.6
+262016,0,0,661387.3798,15.6
+262017,0,0,0,15.6
+262018,0,0,0,15.6
+262019,0,0,0,15.6
+262020,0,0,0,15.6
+262021,0,0,0,15.6
+262022,0,0,0,15.6
+262023,0,0,0,15.6
+262024,0,0,0,15.6
+262025,0,0,0,15.6
+262026,0,0,0,15.6
+262027,0,367931.5012,0,15.6
+262028,0,0,0,15.6
+262029,338225.3837,0,0,15.6
+262030,0,0,0,15.6
+262031,0,0,0,15.6
+262032,0,0,0,15.6
+262033,0,0,0,15.6
+262034,0,0,0,15.6
+262035,0,0,0,15.6
+262036,0,0,0,15.6
+262037,0,0,0,15.6
+262038,0,0,0,15.6
+262039,0,0,0,15.6
+262040,0,0,0,15.6
+262041,0,0,0,15.6
+262042,0,0,0,15.6
+262043,0,0,0,15.6
+262044,0,0,0,15.6
+262045,0,0,0,15.6
+262046,0,0,0,15.6
+262047,0,0,0,15.6
+262048,0,0,0,15.6
+262049,0,0,0,15.6
+262050,0,0,0,15.6
+262051,0,0,661729.9034,15.6
+262052,0,0,0,15.6
+262053,0,0,0,15.6
+262054,0,0,0,15.6
+262055,0,0,0,15.6
+262056,0,0,0,15.6
+262057,0,0,0,15.6
+262058,0,0,0,15.6
+262059,0,0,0,15.6
+262060,0,0,0,15.6
+262061,0,0,0,15.6
+262062,0,0,0,15.6
+262063,0,369417.9908,0,15.6
+262064,0,0,0,15.6
+262065,0,0,0,15.6
+262066,338456.4238,0,0,15.6
+262067,0,0,0,15.6
+262068,0,0,0,15.6
+262069,0,0,0,15.6
+262070,0,0,0,15.6
+262071,0,0,0,15.6
+262072,0,0,0,15.6
+262073,0,0,0,15.6
+262074,0,0,0,15.6
+262075,0,0,0,15.6
+262076,0,0,0,15.6
+262077,0,0,0,15.6
+262078,0,0,0,15.6
+262079,0,0,0,15.6
+262080,0,0,0,15.6
+262081,0,0,0,15.6
+262082,0,0,0,15.6
+262083,0,0,0,15.6
+262084,0,0,0,15.6
+262085,0,0,0,15.6
+262086,0,0,662089.3038,15.6
+262087,0,0,0,15.6
+262088,0,0,0,15.6
+262089,0,0,0,15.6
+262090,0,0,0,15.6
+262091,0,0,0,15.6
+262092,0,0,0,15.6
+262093,0,0,0,15.6
+262094,0,0,0,15.6
+262095,0,0,0,15.6
+262096,0,0,0,15.6
+262097,0,0,0,15.6
+262098,0,0,0,15.6
+262099,0,0,0,15.6
+262100,0,369427.6385,0,15.6
+262101,0,0,0,15.6
+262102,0,0,0,15.6
+262103,338583.5809,0,0,15.6
+262104,0,0,0,15.6
+262105,0,0,0,15.6
+262106,0,0,0,15.6
+262107,0,0,0,15.6
+262108,0,0,0,15.6
+262109,0,0,0,15.6
+262110,0,0,0,15.6
+262111,0,0,0,15.6
+262112,0,0,0,15.6
+262113,0,0,0,15.6
+262114,0,0,0,15.6
+262115,0,0,0,15.6
+262116,0,0,0,15.6
+262117,0,0,0,15.6
+262118,0,0,0,15.6
+262119,0,0,0,15.6
+262120,0,0,0,15.6
+262121,0,0,662412.4483,15.6
+262122,0,0,0,15.6
+262123,0,0,0,15.6
+262124,0,0,0,15.6
+262125,0,0,0,15.6
+262126,0,0,0,15.6
+262127,0,0,0,15.6
+262128,0,0,0,15.6
+262129,0,0,0,15.6
+262130,0,0,0,15.6
+262131,0,0,0,15.6
+262132,0,0,0,15.6
+262133,0,0,0,15.6
+262134,0,0,0,15.6
+262135,0,0,0,15.6
+262136,0,0,0,15.6
+262137,0,369427.4129,0,15.6
+262138,0,0,0,15.6
+262139,0,0,0,15.6
+262140,338688.1974,0,0,15.6
+262141,0,0,0,15.6
+262142,0,0,0,15.6
+262143,0,0,0,15.6
+262144,0,0,0,15.6
+262145,0,0,0,15.6
+262146,0,0,0,15.6
+262147,0,0,0,15.6
+262148,0,0,0,15.6
+262149,0,0,0,15.6
+262150,0,0,0,15.6
+262151,0,0,0,15.6
+262152,0,0,0,15.6
+262153,0,0,0,15.6
+262154,0,0,0,15.6
+262155,0,0,0,15.6
+262156,0,0,662659.6009,15.6
+262157,0,0,0,15.6
+262158,0,0,0,15.6
+262159,0,0,0,15.6
+262160,0,0,0,15.6
+262161,0,0,0,15.6
+262162,0,0,0,15.6
+262163,0,0,0,15.6
+262164,0,0,0,15.6
+262165,0,0,0,15.6
+262166,0,0,0,15.6
+262167,0,0,0,15.6
+262168,0,0,0,15.6
+262169,0,0,0,15.6
+262170,0,0,0,15.6
+262171,0,0,0,15.6
+262172,0,0,0,15.6
+262173,0,0,0,15.6
+262174,0,369432.9881,0,15.6
+262175,0,0,0,15.6
+262176,0,0,0,15.6
+262177,338786.7307,0,0,15.6
+262178,0,0,0,15.6
+262179,0,0,0,15.6
+262180,0,0,0,15.6
+262181,0,0,0,15.6
+262182,0,0,0,15.6
+262183,0,0,0,15.6
+262184,0,0,0,15.6
+262185,0,0,0,15.6
+262186,0,0,0,15.6
+262187,0,0,0,15.6
+262188,0,0,0,15.6
+262189,0,0,0,15.6
+262190,0,0,662840.0986,15.6
+262191,0,0,0,15.6
+262192,0,0,0,15.6
+262193,0,0,0,15.6
+262194,0,0,0,15.6
+262195,0,0,0,15.6
+262196,0,0,0,15.6
+262197,0,0,0,15.6
+262198,0,0,0,15.6
+262199,0,0,0,15.6
+262200,0,0,0,15.6
+262201,0,0,0,15.6
+262202,0,0,0,15.6
+262203,0,0,0,15.6
+262204,0,0,0,15.6
+262205,0,0,0,15.6
+262206,0,0,0,15.6
+262207,0,0,0,15.6
+262208,0,0,0,15.6
+262209,0,0,0,15.6
+262210,0,0,0,15.6
+262211,0,369433.918,0,15.6
+262212,0,0,0,15.6
+262213,0,0,0,15.6
+262214,338896.2388,0,0,15.6
+262215,0,0,0,15.6
+262216,0,0,0,15.6
+262217,0,0,0,15.6
+262218,0,0,0,15.6
+262219,0,0,0,15.6
+262220,0,0,0,15.6
+262221,0,0,0,15.6
+262222,0,0,0,15.6
+262223,0,0,0,15.6
+262224,0,0,663114.7274,15.6
+262225,0,0,0,15.6
+262226,0,0,0,15.6
+262227,0,0,0,15.6
+262228,0,0,0,15.6
+262229,0,0,0,15.6
+262230,0,0,0,15.6
+262231,0,0,0,15.6
+262232,0,0,0,15.6
+262233,0,0,0,15.6
+262234,0,0,0,15.6
+262235,0,0,0,15.6
+262236,0,0,0,15.6
+262237,0,0,0,15.6
+262238,0,0,0,15.6
+262239,0,0,0,15.6
+262240,0,0,0,15.6
+262241,0,0,0,15.6
+262242,0,0,0,15.6
+262243,0,0,0,15.6
+262244,0,0,0,15.6
+262245,0,0,0,15.6
+262246,0,0,0,15.6
+262247,0,0,0,15.6
+262248,0,369435.1598,0,15.6
+262249,0,0,0,15.6
+262250,0,0,0,15.6
+262251,338965.7282,0,0,15.6
+262252,0,0,0,15.6
+262253,0,0,0,15.6
+262254,0,0,0,15.6
+262255,0,0,0,15.6
+262256,0,0,0,15.6
+262257,0,0,0,15.6
+262258,0,0,663023.3961,15.6
+262259,0,0,0,15.6
+262260,0,0,0,15.6
+262261,0,0,0,15.6
+262262,0,0,0,15.6
+262263,0,0,0,15.6
+262264,0,0,0,15.6
+262265,0,0,0,15.6
+262266,0,0,0,15.6
+262267,0,0,0,15.6
+262268,0,0,0,15.6
+262269,0,0,0,15.6
+262270,0,0,0,15.6
+262271,0,0,0,15.6
+262272,0,0,0,15.6
+262273,0,0,0,15.6
+262274,0,0,0,15.6
+262275,0,0,0,15.6
+262276,0,0,0,15.6
+262277,0,0,0,15.6
+262278,0,0,0,15.6
+262279,0,0,0,15.6
+262280,0,0,0,15.6
+262281,0,0,0,15.6
+262282,0,0,0,15.6
+262283,0,0,0,15.6
+262284,0,369434.8392,0,15.6
+262285,0,0,0,15.6
+262286,338991.2031,0,0,15.6
+262287,0,0,0,15.6
+262288,0,0,0,15.6
+262289,0,0,0,15.6
+262290,0,0,0,15.6
+262291,0,0,0,15.6
+262292,0,0,661920.4995,15.6
+262293,0,0,0,15.6
+262294,0,0,0,15.6
+262295,0,0,0,15.6
+262296,0,0,0,15.6
+262297,0,0,0,15.6
+262298,0,0,0,15.6
+262299,0,0,0,15.6
+262300,0,0,0,15.6
+262301,0,0,0,15.6
+262302,0,0,0,15.6
+262303,0,0,0,15.6
+262304,0,0,0,15.6
+262305,0,0,0,15.6
+262306,0,0,0,15.6
+262307,0,0,0,15.6
+262308,0,0,0,15.6
+262309,0,0,0,15.6
+262310,0,0,0,15.6
+262311,0,0,0,15.6
+262312,0,0,0,15.6
+262313,0,0,0,15.6
+262314,0,0,0,15.6
+262315,0,0,0,15.6
+262316,0,0,0,15.6
+262317,0,0,0,15.6
+262318,0,0,0,15.6
+262319,0,369433.5592,0,15.6
+262320,0,0,0,17.8
+262321,339029.7372,0,0,17.8
+262322,0,0,0,17.8
+262323,0,0,0,17.8
+262324,0,0,0,17.8
+262325,0,0,0,17.8
+262326,0,0,662641.8279,17.8
+262327,0,0,0,17.8
+262328,0,0,0,17.8
+262329,0,0,0,17.8
+262330,0,0,0,17.8
+262331,0,0,0,17.8
+262332,0,0,0,17.8
+262333,0,0,0,17.8
+262334,0,0,0,17.8
+262335,0,0,0,17.8
+262336,0,0,0,17.8
+262337,0,0,0,17.8
+262338,0,0,0,17.8
+262339,0,0,0,17.8
+262340,0,0,0,17.8
+262341,0,0,0,17.8
+262342,0,0,0,17.8
+262343,0,0,0,17.8
+262344,0,0,0,17.8
+262345,0,0,0,17.8
+262346,0,0,0,17.8
+262347,0,0,0,17.8
+262348,0,0,0,17.8
+262349,0,0,0,17.8
+262350,0,0,0,17.8
+262351,0,0,0,17.8
+262352,0,0,0,17.8
+262353,0,0,0,17.8
+262354,0,369433.6489,0,17.8
+262355,0,0,0,17.8
+262356,339041.0145,0,0,17.8
+262357,0,0,0,17.8
+262358,0,0,0,17.8
+262359,0,0,0,17.8
+262360,0,0,663093.0919,17.8
+262361,0,0,0,17.8
+262362,0,0,0,17.8
+262363,0,0,0,17.8
+262364,0,0,0,17.8
+262365,0,0,0,17.8
+262366,0,0,0,17.8
+262367,0,0,0,17.8
+262368,0,0,0,17.8
+262369,0,0,0,17.8
+262370,0,0,0,17.8
+262371,0,0,0,17.8
+262372,0,0,0,17.8
+262373,0,0,0,17.8
+262374,0,0,0,17.8
+262375,0,0,0,17.8
+262376,0,0,0,17.8
+262377,0,0,0,17.8
+262378,0,0,0,17.8
+262379,0,0,0,17.8
+262380,0,0,0,20
+262381,0,0,0,20
+262382,0,0,0,20
+262383,0,0,0,20
+262384,0,0,0,20
+262385,0,0,0,20
+262386,0,0,0,20
+262387,0,0,0,20
+262388,0,0,0,20
+262389,0,0,0,20
+262390,0,369433.7551,0,20
+262391,0,0,0,20
+262392,0,0,0,20
+262393,339057.8044,0,0,20
+262394,0,0,0,20
+262395,0,0,662140.5902,20
+262396,0,0,0,20
+262397,0,0,0,20
+262398,0,0,0,20
+262399,0,0,0,20
+262400,0,0,0,20
+262401,0,0,0,20
+262402,0,0,0,20
+262403,0,0,0,20
+262404,0,0,0,20
+262405,0,0,0,20
+262406,0,0,0,20
+262407,0,0,0,20
+262408,0,0,0,20
+262409,0,0,0,20
+262410,0,0,0,20
+262411,0,0,0,20
+262412,0,0,0,20
+262413,0,0,0,20
+262414,0,0,0,20
+262415,0,0,0,20
+262416,0,0,0,20
+262417,0,0,0,20
+262418,0,0,0,20
+262419,0,0,0,20
+262420,0,0,0,20
+262421,0,0,0,20
+262422,0,0,0,20
+262423,0,0,0,20
+262424,0,0,0,20
+262425,0,0,0,20
+262426,0,369433.8439,0,20
+262427,0,0,0,20
+262428,0,0,0,20
+262429,0,0,0,20
+262430,339028.1867,0,0,20
+262431,0,0,660892.427,20
+262432,0,0,0,20
+262433,0,0,0,20
+262434,0,0,0,20
+262435,0,0,0,20
+262436,0,0,0,20
+262437,0,0,0,20
+262438,0,0,0,20
+262439,0,0,0,20
+262440,0,0,0,21
+262441,0,0,0,21
+262442,0,0,0,21
+262443,0,0,0,21
+262444,0,0,0,21
+262445,0,0,0,21
+262446,0,0,0,21
+262447,0,0,0,21
+262448,0,0,0,21
+262449,0,0,0,21
+262450,0,0,0,21
+262451,0,0,0,21
+262452,0,0,0,21
+262453,0,0,0,21
+262454,0,0,0,21
+262455,0,0,0,21
+262456,0,0,0,21
+262457,0,0,0,21
+262458,0,0,0,21
+262459,0,0,0,21
+262460,0,0,0,21
+262461,0,0,0,21
+262462,0,369433.0587,0,21
+262463,0,0,0,21
+262464,0,0,0,21
+262465,0,0,0,21
+262466,339009.8818,0,662106.6798,21
+262467,0,0,0,21
+262468,0,0,0,21
+262469,0,0,0,21
+262470,0,0,0,21
+262471,0,0,0,21
+262472,0,0,0,21
+262473,0,0,0,21
+262474,0,0,0,21
+262475,0,0,0,21
+262476,0,0,0,21
+262477,0,0,0,21
+262478,0,0,0,21
+262479,0,0,0,21
+262480,0,0,0,21
+262481,0,0,0,21
+262482,0,0,0,21
+262483,0,0,0,21
+262484,0,0,0,21
+262485,0,0,0,21
+262486,0,0,0,21
+262487,0,0,0,21
+262488,0,0,0,21
+262489,0,0,0,21
+262490,0,0,0,21
+262491,0,0,0,21
+262492,0,0,0,21
+262493,0,0,0,21
+262494,0,0,0,21
+262495,0,0,0,21
+262496,0,0,0,21
+262497,0,0,0,21
+262498,0,369431.3737,0,21
+262499,0,0,0,21
+262500,0,0,0,21
+262501,0,0,662706.9636,21
+262502,338994.6645,0,0,21
+262503,0,0,0,21
+262504,0,0,0,21
+262505,0,0,0,21
+262506,0,0,0,21
+262507,0,0,0,21
+262508,0,0,0,21
+262509,0,0,0,21
+262510,0,0,0,21
+262511,0,0,0,21
+262512,0,0,0,21
+262513,0,0,0,21
+262514,0,0,0,21
+262515,0,0,0,21
+262516,0,0,0,21
+262517,0,0,0,21
+262518,0,0,0,21
+262519,0,0,0,21
+262520,0,0,0,21
+262521,0,0,0,21
+262522,0,0,0,21
+262523,0,0,0,21
+262524,0,0,0,21
+262525,0,0,0,21
+262526,0,0,0,21
+262527,0,0,0,21
+262528,0,0,0,21
+262529,0,0,0,21
+262530,0,0,0,21
+262531,0,0,0,21
+262532,0,0,0,21
+262533,0,0,0,21
+262534,0,367996.1365,0,21
+262535,0,0,0,21
+262536,0,0,661216.4937,21
+262537,0,0,0,21
+262538,335713.9548,0,0,21
+262539,0,0,0,21
+262540,0,0,0,21
+262541,0,0,0,21
+262542,0,0,0,21
+262543,0,0,0,21
+262544,0,0,0,21
+262545,0,0,0,21
+262546,0,0,0,21
+262547,0,0,0,21
+262548,0,0,0,21
+262549,0,0,0,21
+262550,0,0,0,21
+262551,0,0,0,21
+262552,0,0,0,21
+262553,0,0,0,21
+262554,0,0,0,21
+262555,0,0,0,21
+262556,0,0,0,21
+262557,0,0,0,21
+262558,0,0,0,21
+262559,0,0,0,21
+262560,0,0,0,21
+262561,0,0,0,21
+262562,0,0,0,21
+262563,0,0,0,21
+262564,0,0,0,21
+262565,0,0,0,21
+262566,0,0,0,21
+262567,0,0,0,21
+262568,0,0,0,21
+262569,0,0,0,21
+262570,0,368005.6363,0,21
+262571,0,0,660929.2924,21
+262572,0,0,0,21
+262573,0,0,0,21
+262574,335428.4273,0,0,21
+262575,0,0,0,21
+262576,0,0,0,21
+262577,0,0,0,21
+262578,0,0,0,21
+262579,0,0,0,21
+262580,0,0,0,21
+262581,0,0,0,21
+262582,0,0,0,21
+262583,0,0,0,21
+262584,0,0,0,21
+262585,0,0,0,21
+262586,0,0,0,21
+262587,0,0,0,21
+262588,0,0,0,21
+262589,0,0,0,21
+262590,0,0,0,21
+262591,0,0,0,21
+262592,0,0,0,21
+262593,0,0,0,21
+262594,0,0,0,21
+262595,0,0,0,21
+262596,0,0,0,21
+262597,0,0,0,21
+262598,0,0,0,21
+262599,0,0,0,21
+262600,0,0,0,21
+262601,0,0,0,21
+262602,0,0,0,21
+262603,0,0,0,21
+262604,0,0,0,21
+262605,0,0,0,21
+262606,0,367969.4079,660155.6043,21
+262607,0,0,0,21
+262608,0,0,0,21
+262609,0,0,0,21
+262610,338003.71,0,0,21
+262611,0,0,0,21
+262612,0,0,0,21
+262613,0,0,0,21
+262614,0,0,0,21
+262615,0,0,0,21
+262616,0,0,0,21
+262617,0,0,0,21
+262618,0,0,0,21
+262619,0,0,0,21
+262620,0,0,0,21
+262621,0,0,0,21
+262622,0,0,0,21
+262623,0,0,0,21
+262624,0,0,0,21
+262625,0,0,0,21
+262626,0,0,0,21
+262627,0,0,0,21
+262628,0,0,0,21
+262629,0,0,0,21
+262630,0,0,0,21
+262631,0,0,0,21
+262632,0,0,0,21
+262633,0,0,0,21
+262634,0,0,0,21
+262635,0,0,0,21
+262636,0,0,0,21
+262637,0,0,0,21
+262638,0,0,0,21
+262639,0,0,0,21
+262640,0,0,0,21
+262641,0,0,660603.709,21
+262642,0,365052.3591,0,21
+262643,0,0,0,21
+262644,0,0,0,21
+262645,0,0,0,21
+262646,334762.7135,0,0,21
+262647,0,0,0,21
+262648,0,0,0,21
+262649,0,0,0,21
+262650,0,0,0,21
+262651,0,0,0,21
+262652,0,0,0,21
+262653,0,0,0,21
+262654,0,0,0,21
+262655,0,0,0,21
+262656,0,0,0,21
+262657,0,0,0,21
+262658,0,0,0,21
+262659,0,0,0,21
+262660,0,0,0,21
+262661,0,0,0,21
+262662,0,0,0,21
+262663,0,0,0,21
+262664,0,0,0,21
+262665,0,0,0,21
+262666,0,0,0,21
+262667,0,0,0,21
+262668,0,0,0,21
+262669,0,0,0,21
+262670,0,0,0,21
+262671,0,0,0,21
+262672,0,0,0,21
+262673,0,0,0,21
+262674,0,0,0,21
+262675,0,0,0,21
+262676,0,0,660296.9544,21
+262677,0,0,0,21
+262678,0,366785.2399,0,21
+262679,0,0,0,21
+262680,0,0,0,21
+262681,0,0,0,21
+262682,335212.05,0,0,21
+262683,0,0,0,21
+262684,0,0,0,21
+262685,0,0,0,21
+262686,0,0,0,21
+262687,0,0,0,21
+262688,0,0,0,21
+262689,0,0,0,21
+262690,0,0,0,21
+262691,0,0,0,21
+262692,0,0,0,21
+262693,0,0,0,21
+262694,0,0,0,21
+262695,0,0,0,21
+262696,0,0,0,21
+262697,0,0,0,21
+262698,0,0,0,21
+262699,0,0,0,21
+262700,0,0,0,21
+262701,0,0,0,21
+262702,0,0,0,21
+262703,0,0,0,21
+262704,0,0,0,21
+262705,0,0,0,21
+262706,0,0,0,21
+262707,0,0,0,21
+262708,0,0,0,21
+262709,0,0,0,21
+262710,0,0,0,21
+262711,0,0,659522.7452,21
+262712,0,0,0,21
+262713,0,0,0,21
+262714,0,0,0,21
+262715,0,366074.128,0,21
+262716,0,0,0,21
+262717,0,0,0,21
+262718,0,0,0,21
+262719,337295.976,0,0,21
+262720,0,0,0,21
+262721,0,0,0,21
+262722,0,0,0,21
+262723,0,0,0,21
+262724,0,0,0,21
+262725,0,0,0,21
+262726,0,0,0,21
+262727,0,0,0,21
+262728,0,0,0,21
+262729,0,0,0,21
+262730,0,0,0,21
+262731,0,0,0,21
+262732,0,0,0,21
+262733,0,0,0,21
+262734,0,0,0,21
+262735,0,0,0,21
+262736,0,0,0,21
+262737,0,0,0,21
+262738,0,0,0,21
+262739,0,0,0,21
+262740,0,0,0,21
+262741,0,0,0,21
+262742,0,0,0,21
+262743,0,0,0,21
+262744,0,0,0,21
+262745,0,0,0,21
+262746,0,0,659780.672,21
+262747,0,0,0,21
+262748,0,0,0,21
+262749,0,0,0,21
+262750,0,0,0,21
+262751,0,365210.9747,0,21
+262752,0,0,0,21
+262753,0,0,0,21
+262754,0,0,0,21
+262755,0,0,0,21
+262756,335435.4641,0,0,21
+262757,0,0,0,21
+262758,0,0,0,21
+262759,0,0,0,21
+262760,0,0,0,21
+262761,0,0,0,21
+262762,0,0,0,21
+262763,0,0,0,21
+262764,0,0,0,21
+262765,0,0,0,21
+262766,0,0,0,21
+262767,0,0,0,21
+262768,0,0,0,21
+262769,0,0,0,21
+262770,0,0,0,21
+262771,0,0,0,21
+262772,0,0,0,21
+262773,0,0,0,21
+262774,0,0,0,21
+262775,0,0,0,21
+262776,0,0,0,21
+262777,0,0,0,21
+262778,0,0,0,21
+262779,0,0,0,21
+262780,0,0,0,21
+262781,0,0,659516.2441,21
+262782,0,0,0,21
+262783,0,0,0,21
+262784,0,0,0,21
+262785,0,0,0,21
+262786,0,0,0,21
+262787,0,366426.2986,0,21
+262788,0,0,0,21
+262789,0,0,0,21
+262790,0,0,0,21
+262791,0,0,0,21
+262792,0,0,0,21
+262793,336672.8539,0,0,21
+262794,0,0,0,21
+262795,0,0,0,21
+262796,0,0,0,21
+262797,0,0,0,21
+262798,0,0,0,21
+262799,0,0,0,21
+262800,0,0,0,21
+262801,0,0,0,21
+262802,0,0,0,21
+262803,0,0,0,21
+262804,0,0,0,21
+262805,0,0,0,21
+262806,0,0,0,21
+262807,0,0,0,21
+262808,0,0,0,21
+262809,0,0,0,21
+262810,0,0,0,21
+262811,0,0,0,21
+262812,0,0,0,21
+262813,0,0,0,21
+262814,0,0,0,21
+262815,0,0,0,21
+262816,0,0,659300.1466,21
+262817,0,0,0,21
+262818,0,0,0,21
+262819,0,0,0,21
+262820,0,0,0,21
+262821,0,0,0,21
+262822,0,0,0,21
+262823,0,367111.5962,0,21
+262824,0,0,0,21
+262825,0,0,0,21
+262826,0,0,0,21
+262827,0,0,0,21
+262828,0,0,0,21
+262829,0,0,0,21
+262830,336019.8995,0,0,21
+262831,0,0,0,21
+262832,0,0,0,21
+262833,0,0,0,21
+262834,0,0,0,21
+262835,0,0,0,21
+262836,0,0,0,21
+262837,0,0,0,21
+262838,0,0,0,21
+262839,0,0,0,21
+262840,0,0,0,21
+262841,0,0,0,21
+262842,0,0,0,21
+262843,0,0,0,21
+262844,0,0,0,21
+262845,0,0,0,21
+262846,0,0,0,21
+262847,0,0,0,21
+262848,0,0,0,21
+262849,0,0,0,21
+262850,0,0,0,21
+262851,0,0,659116.0603,21
+262852,0,0,0,21
+262853,0,0,0,21
+262854,0,0,0,21
+262855,0,0,0,21
+262856,0,0,0,21
+262857,0,0,0,21
+262858,0,0,0,21
+262859,0,0,0,21
+262860,0,366423.4076,0,21
+262861,0,0,0,21
+262862,0,0,0,21
+262863,0,0,0,21
+262864,0,0,0,21
+262865,0,0,0,21
+262866,0,0,0,21
+262867,336282.3638,0,0,21
+262868,0,0,0,21
+262869,0,0,0,21
+262870,0,0,0,21
+262871,0,0,0,21
+262872,0,0,0,21
+262873,0,0,0,21
+262874,0,0,0,21
+262875,0,0,0,21
+262876,0,0,0,21
+262877,0,0,0,21
+262878,0,0,0,21
+262879,0,0,0,21
+262880,0,0,0,21
+262881,0,0,0,21
+262882,0,0,0,21
+262883,0,0,0,21
+262884,0,0,0,21
+262885,0,0,0,21
+262886,0,0,659122.5443,21
+262887,0,0,0,21
+262888,0,0,0,21
+262889,0,0,0,21
+262890,0,0,0,21
+262891,0,0,0,21
+262892,0,0,0,21
+262893,0,0,0,21
+262894,0,0,0,21
+262895,0,0,0,21
+262896,0,0,0,21
+262897,0,365988.5577,0,21
+262898,0,0,0,21
+262899,0,0,0,21
+262900,0,0,0,21
+262901,0,0,0,21
+262902,0,0,0,21
+262903,0,0,0,21
+262904,335682.6827,0,0,21
+262905,0,0,0,21
+262906,0,0,0,21
+262907,0,0,0,21
+262908,0,0,0,21
+262909,0,0,0,21
+262910,0,0,0,21
+262911,0,0,0,21
+262912,0,0,0,21
+262913,0,0,0,21
+262914,0,0,0,21
+262915,0,0,0,21
+262916,0,0,0,21
+262917,0,0,0,21
+262918,0,0,0,21
+262919,0,0,0,21
+262920,0,0,0,21
+262921,0,0,659320.6774,21
+262922,0,0,0,21
+262923,0,0,0,21
+262924,0,0,0,21
+262925,0,0,0,21
+262926,0,0,0,21
+262927,0,0,0,21
+262928,0,0,0,21
+262929,0,0,0,21
+262930,0,0,0,21
+262931,0,0,0,21
+262932,0,0,0,21
+262933,0,0,0,21
+262934,0,366067.4349,0,21
+262935,0,0,0,21
+262936,0,0,0,21
+262937,0,0,0,21
+262938,0,0,0,21
+262939,0,0,0,21
+262940,335994.9984,0,0,21
+262941,0,0,0,21
+262942,0,0,0,21
+262943,0,0,0,21
+262944,0,0,0,21
+262945,0,0,0,21
+262946,0,0,0,21
+262947,0,0,0,21
+262948,0,0,0,21
+262949,0,0,0,21
+262950,0,0,0,21
+262951,0,0,0,21
+262952,0,0,0,21
+262953,0,0,0,21
+262954,0,0,0,21
+262955,0,0,0,21
+262956,0,0,659377.8914,21
+262957,0,0,0,21
+262958,0,0,0,21
+262959,0,0,0,21
+262960,0,0,0,21
+262961,0,0,0,21
+262962,0,0,0,21
+262963,0,0,0,21
+262964,0,0,0,21
+262965,0,0,0,21
+262966,0,0,0,21
+262967,0,0,0,21
+262968,0,0,0,21
+262969,0,0,0,21
+262970,0,0,0,21
+262971,0,366326.7911,0,21
+262972,0,0,0,21
+262973,0,0,0,21
+262974,0,0,0,21
+262975,0,0,0,21
+262976,335662.8886,0,0,21
+262977,0,0,0,21
+262978,0,0,0,21
+262979,0,0,0,21
+262980,0,0,0,21
+262981,0,0,0,21
+262982,0,0,0,21
+262983,0,0,0,21
+262984,0,0,0,21
+262985,0,0,0,21
+262986,0,0,0,21
+262987,0,0,0,21
+262988,0,0,0,21
+262989,0,0,0,21
+262990,0,0,0,21
+262991,0,0,659521.4453,21
+262992,0,0,0,21
+262993,0,0,0,21
+262994,0,0,0,21
+262995,0,0,0,21
+262996,0,0,0,21
+262997,0,0,0,21
+262998,0,0,0,21
+262999,0,0,0,21
+263000,0,0,0,21
+263001,0,0,0,21
+263002,0,0,0,21
+263003,0,0,0,21
+263004,0,0,0,21
+263005,0,0,0,21
+263006,0,0,0,21
+263007,0,0,0,21
+263008,0,365864.6795,0,21
+263009,0,0,0,21
+263010,0,0,0,21
+263011,0,0,0,21
+263012,335651.6512,0,0,21
+263013,0,0,0,21
+263014,0,0,0,21
+263015,0,0,0,21
+263016,0,0,0,21
+263017,0,0,0,21
+263018,0,0,0,21
+263019,0,0,0,21
+263020,0,0,0,21
+263021,0,0,0,21
+263022,0,0,0,21
+263023,0,0,0,21
+263024,0,0,0,21
+263025,0,0,0,21
+263026,0,0,659662.6434,21
+263027,0,0,0,21
+263028,0,0,0,21
+263029,0,0,0,21
+263030,0,0,0,21
+263031,0,0,0,21
+263032,0,0,0,21
+263033,0,0,0,21
+263034,0,0,0,21
+263035,0,0,0,21
+263036,0,0,0,21
+263037,0,0,0,21
+263038,0,0,0,21
+263039,0,0,0,21
+263040,0,0,0,21
+263041,0,0,0,21
+263042,0,0,0,21
+263043,0,0,0,21
+263044,0,366140.5338,0,21
+263045,0,0,0,21
+263046,0,0,0,21
+263047,0,0,0,21
+263048,335800.5869,0,0,21
+263049,0,0,0,21
+263050,0,0,0,21
+263051,0,0,0,21
+263052,0,0,0,21
+263053,0,0,0,21
+263054,0,0,0,21
+263055,0,0,0,21
+263056,0,0,0,21
+263057,0,0,0,21
+263058,0,0,0,21
+263059,0,0,0,21
+263060,0,0,0,21
+263061,0,0,659794.339,21
+263062,0,0,0,21
+263063,0,0,0,21
+263064,0,0,0,21
+263065,0,0,0,21
+263066,0,0,0,21
+263067,0,0,0,21
+263068,0,0,0,21
+263069,0,0,0,21
+263070,0,0,0,21
+263071,0,0,0,21
+263072,0,0,0,21
+263073,0,0,0,21
+263074,0,0,0,21
+263075,0,0,0,21
+263076,0,0,0,21
+263077,0,0,0,21
+263078,0,0,0,21
+263079,0,0,0,21
+263080,0,365601.4767,0,21
+263081,0,0,0,21
+263082,0,0,0,21
+263083,0,0,0,21
+263084,335610.3961,0,0,21
+263085,0,0,0,21
+263086,0,0,0,21
+263087,0,0,0,21
+263088,0,0,0,21
+263089,0,0,0,21
+263090,0,0,0,21
+263091,0,0,0,21
+263092,0,0,0,21
+263093,0,0,0,21
+263094,0,0,0,21
+263095,0,0,0,21
+263096,0,0,659645.3217,21
+263097,0,0,0,21
+263098,0,0,0,21
+263099,0,0,0,21
+263100,0,0,0,21
+263101,0,0,0,21
+263102,0,0,0,21
+263103,0,0,0,21
+263104,0,0,0,21
+263105,0,0,0,21
+263106,0,0,0,21
+263107,0,0,0,21
+263108,0,0,0,21
+263109,0,0,0,21
+263110,0,0,0,21
+263111,0,0,0,21
+263112,0,0,0,21
+263113,0,0,0,21
+263114,0,0,0,21
+263115,0,0,0,21
+263116,0,365724.9352,0,21
+263117,0,0,0,21
+263118,0,0,0,21
+263119,0,0,0,21
+263120,336019.937,0,0,21
+263121,0,0,0,21
+263122,0,0,0,21
+263123,0,0,0,21
+263124,0,0,0,21
+263125,0,0,0,21
+263126,0,0,0,21
+263127,0,0,0,21
+263128,0,0,0,21
+263129,0,0,0,21
+263130,0,0,0,21
+263131,0,0,660433.5507,21
+263132,0,0,0,21
+263133,0,0,0,21
+263134,0,0,0,21
+263135,0,0,0,21
+263136,0,0,0,21
+263137,0,0,0,21
+263138,0,0,0,21
+263139,0,0,0,21
+263140,0,0,0,21
+263141,0,0,0,21
+263142,0,0,0,21
+263143,0,0,0,21
+263144,0,0,0,21
+263145,0,0,0,21
+263146,0,0,0,21
+263147,0,0,0,21
+263148,0,0,0,21
+263149,0,0,0,21
+263150,0,0,0,21
+263151,0,0,0,21
+263152,0,365801.8102,0,21
+263153,0,0,0,21
+263154,0,0,0,21
+263155,0,0,0,21
+263156,335949.9015,0,0,21
+263157,0,0,0,21
+263158,0,0,0,21
+263159,0,0,0,21
+263160,0,0,0,21
+263161,0,0,0,21
+263162,0,0,0,21
+263163,0,0,0,21
+263164,0,0,0,21
+263165,0,0,0,21
+263166,0,0,661039.5075,21
+263167,0,0,0,21
+263168,0,0,0,21
+263169,0,0,0,21
+263170,0,0,0,21
+263171,0,0,0,21
+263172,0,0,0,21
+263173,0,0,0,21
+263174,0,0,0,21
+263175,0,0,0,21
+263176,0,0,0,21
+263177,0,0,0,21
+263178,0,0,0,21
+263179,0,0,0,21
+263180,0,0,0,21
+263181,0,0,0,21
+263182,0,0,0,21
+263183,0,0,0,21
+263184,0,0,0,21
+263185,0,0,0,21
+263186,0,0,0,21
+263187,0,0,0,21
+263188,0,366001.6727,0,21
+263189,0,0,0,21
+263190,0,0,0,21
+263191,0,0,0,21
+263192,335880.5706,0,0,21
+263193,0,0,0,21
+263194,0,0,0,21
+263195,0,0,0,21
+263196,0,0,0,21
+263197,0,0,0,21
+263198,0,0,0,21
+263199,0,0,0,21
+263200,0,0,0,21
+263201,0,0,661274.1883,21
+263202,0,0,0,21
+263203,0,0,0,21
+263204,0,0,0,21
+263205,0,0,0,21
+263206,0,0,0,21
+263207,0,0,0,21
+263208,0,0,0,21
+263209,0,0,0,21
+263210,0,0,0,21
+263211,0,0,0,21
+263212,0,0,0,21
+263213,0,0,0,21
+263214,0,0,0,21
+263215,0,0,0,21
+263216,0,0,0,21
+263217,0,0,0,21
+263218,0,0,0,21
+263219,0,0,0,21
+263220,0,0,0,21
+263221,0,0,0,21
+263222,0,0,0,21
+263223,0,0,0,21
+263224,0,365925.3203,0,21
+263225,0,0,0,21
+263226,0,0,0,21
+263227,0,0,0,21
+263228,336192.4741,0,0,21
+263229,0,0,0,21
+263230,0,0,0,21
+263231,0,0,0,21
+263232,0,0,0,21
+263233,0,0,0,21
+263234,0,0,0,21
+263235,0,0,0,21
+263236,0,0,661570.1214,21
+263237,0,0,0,21
+263238,0,0,0,21
+263239,0,0,0,21
+263240,0,0,0,21
+263241,0,0,0,21
+263242,0,0,0,21
+263243,0,0,0,21
+263244,0,0,0,21
+263245,0,0,0,21
+263246,0,0,0,21
+263247,0,0,0,21
+263248,0,0,0,21
+263249,0,0,0,21
+263250,0,0,0,21
+263251,0,0,0,21
+263252,0,0,0,21
+263253,0,0,0,21
+263254,0,0,0,21
+263255,0,0,0,21
+263256,0,0,0,21
+263257,0,0,0,21
+263258,0,0,0,21
+263259,0,0,0,21
+263260,0,365859.1444,0,21
+263261,0,0,0,21
+263262,0,0,0,21
+263263,0,0,0,21
+263264,335936.9343,0,0,21
+263265,0,0,0,21
+263266,0,0,0,21
+263267,0,0,0,21
+263268,0,0,0,21
+263269,0,0,0,21
+263270,0,0,0,21
+263271,0,0,661913.2607,21
+263272,0,0,0,21
+263273,0,0,0,21
+263274,0,0,0,21
+263275,0,0,0,21
+263276,0,0,0,21
+263277,0,0,0,21
+263278,0,0,0,21
+263279,0,0,0,21
+263280,0,0,0,21
+263281,0,0,0,21
+263282,0,0,0,21
+263283,0,0,0,21
+263284,0,0,0,21
+263285,0,0,0,21
+263286,0,0,0,21
+263287,0,0,0,21
+263288,0,0,0,21
+263289,0,0,0,21
+263290,0,0,0,21
+263291,0,0,0,21
+263292,0,0,0,21
+263293,0,0,0,21
+263294,0,0,0,21
+263295,0,0,0,21
+263296,0,0,0,21
+263297,0,366370.4836,0,21
+263298,0,0,0,21
+263299,0,0,0,21
+263300,0,0,0,21
+263301,0,0,0,21
+263302,335886.948,0,0,21
+263303,0,0,0,21
+263304,0,0,0,21
+263305,0,0,0,21
+263306,0,0,661870.2586,21
+263307,0,0,0,21
+263308,0,0,0,21
+263309,0,0,0,21
+263310,0,0,0,21
+263311,0,0,0,21
+263312,0,0,0,21
+263313,0,0,0,21
+263314,0,0,0,21
+263315,0,0,0,21
+263316,0,0,0,21
+263317,0,0,0,21
+263318,0,0,0,21
+263319,0,0,0,21
+263320,0,0,0,21
+263321,0,0,0,21
+263322,0,0,0,21
+263323,0,0,0,21
+263324,0,0,0,21
+263325,0,0,0,21
+263326,0,0,0,21
+263327,0,0,0,21
+263328,0,0,0,21
+263329,0,0,0,21
+263330,0,0,0,21
+263331,0,0,0,21
+263332,0,0,0,21
+263333,0,0,0,21
+263334,0,367185.5834,0,21
+263335,0,0,0,21
+263336,0,0,0,21
+263337,0,0,0,21
+263338,0,0,0,21
+263339,0,0,0,21
+263340,335987.5975,0,0,21
+263341,0,0,662229.7168,21
+263342,0,0,0,21
+263343,0,0,0,21
+263344,0,0,0,21
+263345,0,0,0,21
+263346,0,0,0,21
+263347,0,0,0,21
+263348,0,0,0,21
+263349,0,0,0,21
+263350,0,0,0,21
+263351,0,0,0,21
+263352,0,0,0,21
+263353,0,0,0,21
+263354,0,0,0,21
+263355,0,0,0,21
+263356,0,0,0,21
+263357,0,0,0,21
+263358,0,0,0,21
+263359,0,0,0,21
+263360,0,0,0,21
+263361,0,0,0,21
+263362,0,0,0,21
+263363,0,0,0,21
+263364,0,0,0,21
+263365,0,0,0,21
+263366,0,0,0,21
+263367,0,0,0,21
+263368,0,0,0,21
+263369,0,0,0,21
+263370,0,0,0,21
+263371,0,367548.8193,0,21
+263372,0,0,0,21
+263373,0,0,0,21
+263374,0,0,0,21
+263375,0,0,0,21
+263376,336220.1178,0,663195.0755,21
+263377,0,0,0,21
+263378,0,0,0,21
+263379,0,0,0,21
+263380,0,0,0,21
+263381,0,0,0,21
+263382,0,0,0,21
+263383,0,0,0,21
+263384,0,0,0,21
+263385,0,0,0,21
+263386,0,0,0,21
+263387,0,0,0,21
+263388,0,0,0,21
+263389,0,0,0,21
+263390,0,0,0,21
+263391,0,0,0,21
+263392,0,0,0,21
+263393,0,0,0,21
+263394,0,0,0,21
+263395,0,0,0,21
+263396,0,0,0,21
+263397,0,0,0,21
+263398,0,0,0,21
+263399,0,0,0,21
+263400,0,0,0,15.6
+263401,0,0,0,15.6
+263402,0,0,0,15.6
+263403,0,0,0,15.6
+263404,0,0,0,15.6
+263405,0,0,0,15.6
+263406,0,0,0,15.6
+263407,0,367707.1468,0,15.6
+263408,0,0,0,15.6
+263409,0,0,0,15.6
+263410,0,0,0,15.6
+263411,0,0,662503.6534,15.6
+263412,336318.371,0,0,15.6
+263413,0,0,0,15.6
+263414,0,0,0,15.6
+263415,0,0,0,15.6
+263416,0,0,0,15.6
+263417,0,0,0,15.6
+263418,0,0,0,15.6
+263419,0,0,0,15.6
+263420,0,0,0,15.6
+263421,0,0,0,15.6
+263422,0,0,0,15.6
+263423,0,0,0,15.6
+263424,0,0,0,15.6
+263425,0,0,0,15.6
+263426,0,0,0,15.6
+263427,0,0,0,15.6
+263428,0,0,0,15.6
+263429,0,0,0,15.6
+263430,0,0,0,15.6
+263431,0,0,0,15.6
+263432,0,0,0,15.6
+263433,0,0,0,15.6
+263434,0,0,0,15.6
+263435,0,0,0,15.6
+263436,0,0,0,15.6
+263437,0,0,0,15.6
+263438,0,0,0,15.6
+263439,0,0,0,15.6
+263440,0,0,0,15.6
+263441,0,0,0,15.6
+263442,0,0,0,15.6
+263443,0,367865.5761,0,15.6
+263444,0,0,0,15.6
+263445,0,0,0,15.6
+263446,0,0,662471.8843,15.6
+263447,0,0,0,15.6
+263448,336244.8479,0,0,15.6
+263449,0,0,0,15.6
+263450,0,0,0,15.6
+263451,0,0,0,15.6
+263452,0,0,0,15.6
+263453,0,0,0,15.6
+263454,0,0,0,15.6
+263455,0,0,0,15.6
+263456,0,0,0,15.6
+263457,0,0,0,15.6
+263458,0,0,0,15.6
+263459,0,0,0,15.6
+263460,0,0,0,15.6
+263461,0,0,0,15.6
+263462,0,0,0,15.6
+263463,0,0,0,15.6
+263464,0,0,0,15.6
+263465,0,0,0,15.6
+263466,0,0,0,15.6
+263467,0,0,0,15.6
+263468,0,0,0,15.6
+263469,0,0,0,15.6
+263470,0,0,0,15.6
+263471,0,0,0,15.6
+263472,0,0,0,15.6
+263473,0,0,0,15.6
+263474,0,0,0,15.6
+263475,0,0,0,15.6
+263476,0,0,0,15.6
+263477,0,0,0,15.6
+263478,0,367985.1883,0,15.6
+263479,0,0,0,15.6
+263480,0,0,664063.0435,15.6
+263481,0,0,0,15.6
+263482,0,0,0,15.6
+263483,337470.724,0,0,15.6
+263484,0,0,0,15.6
+263485,0,0,0,15.6
+263486,0,0,0,15.6
+263487,0,0,0,15.6
+263488,0,0,0,15.6
+263489,0,0,0,15.6
+263490,0,0,0,15.6
+263491,0,0,0,15.6
+263492,0,0,0,15.6
+263493,0,0,0,15.6
+263494,0,0,0,15.6
+263495,0,0,0,15.6
+263496,0,0,0,15.6
+263497,0,0,0,15.6
+263498,0,0,0,15.6
+263499,0,0,0,15.6
+263500,0,0,0,15.6
+263501,0,0,0,15.6
+263502,0,0,0,15.6
+263503,0,0,0,15.6
+263504,0,0,0,15.6
+263505,0,0,0,15.6
+263506,0,0,0,15.6
+263507,0,0,0,15.6
+263508,0,0,0,15.6
+263509,0,0,0,15.6
+263510,0,0,0,15.6
+263511,0,0,0,15.6
+263512,0,0,0,15.6
+263513,0,367991.7719,0,15.6
+263514,0,0,662871.4286,15.6
+263515,0,0,0,15.6
+263516,0,0,0,15.6
+263517,0,0,0,15.6
+263518,338102.5385,0,0,15.6
+263519,0,0,0,15.6
+263520,0,0,0,15.6
+263521,0,0,0,15.6
+263522,0,0,0,15.6
+263523,0,0,0,15.6
+263524,0,0,0,15.6
+263525,0,0,0,15.6
+263526,0,0,0,15.6
+263527,0,0,0,15.6
+263528,0,0,0,15.6
+263529,0,0,0,15.6
+263530,0,0,0,15.6
+263531,0,0,0,15.6
+263532,0,0,0,15.6
+263533,0,0,0,15.6
+263534,0,0,0,15.6
+263535,0,0,0,15.6
+263536,0,0,0,15.6
+263537,0,0,0,15.6
+263538,0,0,0,15.6
+263539,0,0,0,15.6
+263540,0,0,0,15.6
+263541,0,0,0,15.6
+263542,0,0,0,15.6
+263543,0,0,0,15.6
+263544,0,0,0,15.6
+263545,0,0,0,15.6
+263546,0,0,0,15.6
+263547,0,0,0,15.6
+263548,0,369408.5476,664264.7853,15.6
+263549,0,0,0,15.6
+263550,0,0,0,15.6
+263551,0,0,0,15.6
+263552,0,0,0,15.6
+263553,338458.1731,0,0,15.6
+263554,0,0,0,15.6
+263555,0,0,0,15.6
+263556,0,0,0,15.6
+263557,0,0,0,15.6
+263558,0,0,0,15.6
+263559,0,0,0,15.6
+263560,0,0,0,15.6
+263561,0,0,0,15.6
+263562,0,0,0,15.6
+263563,0,0,0,15.6
+263564,0,0,0,15.6
+263565,0,0,0,15.6
+263566,0,0,0,15.6
+263567,0,0,0,15.6
+263568,0,0,0,15.6
+263569,0,0,0,15.6
+263570,0,0,0,15.6
+263571,0,0,0,15.6
+263572,0,0,0,15.6
+263573,0,0,0,15.6
+263574,0,0,0,15.6
+263575,0,0,0,15.6
+263576,0,0,0,15.6
+263577,0,0,0,15.6
+263578,0,0,0,15.6
+263579,0,0,0,15.6
+263580,0,0,0,15.6
+263581,0,0,0,15.6
+263582,0,0,663174.1567,15.6
+263583,0,369431.2964,0,15.6
+263584,0,0,0,15.6
+263585,0,0,0,15.6
+263586,0,0,0,15.6
+263587,0,0,0,15.6
+263588,338676.2007,0,0,15.6
+263589,0,0,0,15.6
+263590,0,0,0,15.6
+263591,0,0,0,15.6
+263592,0,0,0,15.6
+263593,0,0,0,15.6
+263594,0,0,0,15.6
+263595,0,0,0,15.6
+263596,0,0,0,15.6
+263597,0,0,0,15.6
+263598,0,0,0,15.6
+263599,0,0,0,15.6
+263600,0,0,0,15.6
+263601,0,0,0,15.6
+263602,0,0,0,15.6
+263603,0,0,0,15.6
+263604,0,0,0,15.6
+263605,0,0,0,15.6
+263606,0,0,0,15.6
+263607,0,0,0,15.6
+263608,0,0,0,15.6
+263609,0,0,0,15.6
+263610,0,0,0,15.6
+263611,0,0,0,15.6
+263612,0,0,0,15.6
+263613,0,0,0,15.6
+263614,0,0,0,15.6
+263615,0,0,0,15.6
+263616,0,0,664090.6253,15.6
+263617,0,0,0,15.6
+263618,0,369404.285,0,15.6
+263619,0,0,0,15.6
+263620,0,0,0,15.6
+263621,0,0,0,15.6
+263622,0,0,0,15.6
+263623,338807.1598,0,0,15.6
+263624,0,0,0,15.6
+263625,0,0,0,15.6
+263626,0,0,0,15.6
+263627,0,0,0,15.6
+263628,0,0,0,15.6
+263629,0,0,0,15.6
+263630,0,0,0,15.6
+263631,0,0,0,15.6
+263632,0,0,0,15.6
+263633,0,0,0,15.6
+263634,0,0,0,15.6
+263635,0,0,0,15.6
+263636,0,0,0,15.6
+263637,0,0,0,15.6
+263638,0,0,0,15.6
+263639,0,0,0,15.6
+263640,0,0,0,15.6
+263641,0,0,0,15.6
+263642,0,0,0,15.6
+263643,0,0,0,15.6
+263644,0,0,0,15.6
+263645,0,0,0,15.6
+263646,0,0,0,15.6
+263647,0,0,0,15.6
+263648,0,0,0,15.6
+263649,0,0,0,15.6
+263650,0,0,665207.0102,15.6
+263651,0,0,0,15.6
+263652,0,0,0,15.6
+263653,0,369391.901,0,15.6
+263654,0,0,0,15.6
+263655,0,0,0,15.6
+263656,0,0,0,15.6
+263657,0,0,0,15.6
+263658,338939.5098,0,0,15.6
+263659,0,0,0,15.6
+263660,0,0,0,15.6
+263661,0,0,0,15.6
+263662,0,0,0,15.6
+263663,0,0,0,15.6
+263664,0,0,0,15.6
+263665,0,0,0,15.6
+263666,0,0,0,15.6
+263667,0,0,0,15.6
+263668,0,0,0,15.6
+263669,0,0,0,15.6
+263670,0,0,0,15.6
+263671,0,0,0,15.6
+263672,0,0,0,15.6
+263673,0,0,0,15.6
+263674,0,0,0,15.6
+263675,0,0,0,15.6
+263676,0,0,0,15.6
+263677,0,0,0,15.6
+263678,0,0,0,15.6
+263679,0,0,0,15.6
+263680,0,0,0,15.6
+263681,0,0,0,15.6
+263682,0,0,0,15.6
+263683,0,0,0,15.6
+263684,0,0,665935.7398,15.6
+263685,0,0,0,15.6
+263686,0,0,0,15.6
+263687,0,0,0,15.6
+263688,0,369421.1892,0,15.6
+263689,0,0,0,15.6
+263690,0,0,0,15.6
+263691,0,0,0,15.6
+263692,0,0,0,15.6
+263693,339043.2744,0,0,15.6
+263694,0,0,0,15.6
+263695,0,0,0,15.6
+263696,0,0,0,15.6
+263697,0,0,0,15.6
+263698,0,0,0,15.6
+263699,0,0,0,15.6
+263700,0,0,0,15.6
+263701,0,0,0,15.6
+263702,0,0,0,15.6
+263703,0,0,0,15.6
+263704,0,0,0,15.6
+263705,0,0,0,15.6
+263706,0,0,0,15.6
+263707,0,0,0,15.6
+263708,0,0,0,15.6
+263709,0,0,0,15.6
+263710,0,0,0,15.6
+263711,0,0,0,15.6
+263712,0,0,0,15.6
+263713,0,0,0,15.6
+263714,0,0,0,15.6
+263715,0,0,0,15.6
+263716,0,0,0,15.6
+263717,0,0,0,15.6
+263718,0,0,666459.0529,15.6
+263719,0,0,0,15.6
+263720,0,0,0,15.6
+263721,0,0,0,15.6
+263722,0,0,0,15.6
+263723,0,369431.9625,0,15.6
+263724,0,0,0,15.6
+263725,0,0,0,15.6
+263726,0,0,0,15.6
+263727,0,0,0,15.6
+263728,340411.7109,0,0,15.6
+263729,0,0,0,15.6
+263730,0,0,0,15.6
+263731,0,0,0,15.6
+263732,0,0,0,15.6
+263733,0,0,0,15.6
+263734,0,0,0,15.6
+263735,0,0,0,15.6
+263736,0,0,0,15.6
+263737,0,0,0,15.6
+263738,0,0,0,15.6
+263739,0,0,0,15.6
+263740,0,0,0,15.6
+263741,0,0,0,15.6
+263742,0,0,0,15.6
+263743,0,0,0,15.6
+263744,0,0,0,15.6
+263745,0,0,0,15.6
+263746,0,0,0,15.6
+263747,0,0,0,15.6
+263748,0,0,0,15.6
+263749,0,0,0,15.6
+263750,0,0,0,15.6
+263751,0,0,0,15.6
+263752,0,0,666828.6682,15.6
+263753,0,0,0,15.6
+263754,0,0,0,15.6
+263755,0,0,0,15.6
+263756,0,0,0,15.6
+263757,0,0,0,15.6
+263758,0,369432.0758,0,15.6
+263759,0,0,0,15.6
+263760,0,0,0,17.8
+263761,0,5421.353683,0,17.8
+263762,0,0,0,17.8
+263763,340412.1506,0,0,17.8
+263764,0,256.6891333,0,17.8
+263765,0,1702.958802,0,17.8
+263766,0,727.3320697,0,17.8
+263767,0,1016.645719,0,17.8
+263768,0,1027.272461,0,17.8
+263769,0,1047.226491,0,17.8
+263770,0,1107.997467,0,17.8
+263771,0,1067.070512,0,17.8
+263772,0,1147.18216,0,17.8
+263773,0,0,0,17.8
+263774,0,0,0,17.8
+263775,0,0,0,17.8
+263776,0,0,0,17.8
+263777,0,0,0,17.8
+263778,0,0,0,17.8
+263779,0,0,0,17.8
+263780,0,0,0,17.8
+263781,0,0,0,17.8
+263782,0,0,0,17.8
+263783,0,0,0,17.8
+263784,0,0,0,17.8
+263785,0,0,0,17.8
+263786,0,0,667183.3285,17.8
+263787,0,0,0,17.8
+263788,0,0,0,17.8
+263789,0,0,0,17.8
+263790,0,0,0,17.8
+263791,0,0,0,17.8
+263792,0,0,0,17.8
+263793,0,369404.0044,0,17.8
+263794,0,0,0,17.8
+263795,21.06481407,0,0,17.8
+263796,1359.877085,0,0,17.8
+263797,516.827587,0,0,17.8
+263798,341216.7322,0,0,17.8
+263799,804.608468,0,0,17.8
+263800,819.2542895,0,0,17.8
+263801,848.411805,0,0,17.8
+263802,833.8551972,0,0,17.8
+263803,862.9246367,0,0,17.8
+263804,877.3942673,0,0,17.8
+263805,877.3942597,0,0,17.8
+263806,862.9246147,0,0,17.8
+263807,862.9246074,0,0,17.8
+263808,877.3942372,0,0,17.8
+263809,877.3942298,0,0,17.8
+263810,877.3942225,0,0,17.8
+263811,891.8211729,0,0,17.8
+263812,906.2059562,0,0,17.8
+263813,891.8211582,0,0,17.8
+263814,906.2059413,0,0,17.8
+263815,281.7548289,0,0,17.8
+263816,134.1751585,0,0,17.8
+263817,0,0,0,17.8
+263818,0,0,0,17.8
+263819,0,0,0,17.8
+263820,0,0,667583.9723,20
+263821,16165.23924,76290.73867,0,20
+263822,7676.637398,7602.62156,0,20
+263823,13652.75222,21809.52421,0,20
+263824,52874.10739,96097.46551,0,20
+263825,27735.18039,91768.4757,0,20
+263826,32395.05051,91864.31956,0,20
+263827,32342.11813,106635.2711,0,20
+263828,37157.31857,99788.44843,0,20
+263829,45161.17496,102897.6885,0,20
+263830,37799.20991,103213.4335,0,20
+263831,39731.53917,103061.9567,0,20
+263832,49661.35799,103125.9098,0,20
+263833,42796.83692,103393.9999,124.52608,20
+263834,44425.68811,102737.6913,64.29768966,20
+263835,43823.12913,102810.8868,84.64652642,20
+263836,43582.50764,103018.8943,94.70929322,20
+263837,42915.19124,102420.2035,104.7070252,20
+263838,42510.42924,102982.4993,104.707275,20
+263839,42176.0194,102065.2928,634.9044975,20
+263840,41651.86477,102445.8059,358.3534103,20
+263841,41261.91903,102170.4034,498.7192517,20
+263842,40917.53696,107283.4911,513.5463224,20
+263843,40351.93573,104190.8649,567.4942945,20
+263844,39860.39704,104984.9381,582.1258107,20
+263845,39234.46282,104714.5269,620.9816638,20
+263846,39032.16354,104736.8328,645.1755749,20
+263847,38458.99549,104269.4942,678.7005408,20
+263848,37853.61899,102686.6346,712.3860499,20
+263849,37402.15965,103593.2454,726.68238,20
+263850,37067.05224,102861.3719,778.9310845,20
+263851,36363.35113,102850.8401,778.9481533,20
+263852,36023.75027,102876.8695,2244.389204,20
+263853,35497.63667,101949.7666,2643.299479,20
+263854,34596.05585,102363.6502,2550.196006,20
+263855,34320.80972,101706.0892,2978.003617,20
+263856,33513.92406,101372.5597,2973.483588,20
+263857,33622.58975,101203.9977,2988.883795,20
+263858,33161.87916,100612.2065,3234.345289,20
+263859,33479.09208,100250.8999,3429.574184,20
+263860,33466.33194,100053.583,3639.722955,20
+263861,33598.85327,99449.24805,3660.847931,20
+263862,33977.10293,99100.03112,4050.525595,20
+263863,33662.41228,98586.2695,908.8987918,20
+263864,35291.45937,97954.95355,723.8466469,20
+263865,34555.94315,98109.34923,738.992104,20
+263866,35213.69649,96921.66327,709.5810303,20
+263867,35197.54768,96948.42707,724.3547904,20
+263868,35517.20644,95825.4417,709.3308188,20
+263869,35368.23869,95875.95864,709.0404977,20
+263870,35769.22218,95294.38526,701.1191956,20
+263871,35860.90986,94604.67948,693.0144197,20
+263872,35795.6032,92807.98916,692.3393549,20
+263873,36015.75,92165.17868,690.6391264,20
+263874,36303.70782,91353.45098,660.8371822,20
+263875,36135.44248,90879.11,672.9268925,20
+263876,36249.11332,90080.9453,657.2919589,20
+263877,36666.19488,89648.61175,640.0119955,20
+263878,36624.35171,89009.37195,638.3234782,20
+263879,37049.78696,88078.87822,620.2728317,20
+263880,37335.50825,87689.23741,550.4436925,21
+263881,29363.45633,80985.49705,344.794536,21
+263882,28496.77339,79620.7219,344.7978144,21
+263883,28276.63073,79283.85032,330.0501165,21
+263884,28154.23628,79381.01562,359.5029814,21
+263885,28032.27199,78689.00751,330.0563739,21
+263886,27667.72229,78757.01594,359.5098082,21
+263887,27639.82234,78519.1396,359.5134035,21
+263888,27438.42601,78021.48536,344.8176058,21
+263889,27230.39529,78007.46636,374.1692621,21
+263890,27129.70959,77836.41846,359.5240951,21
+263891,26918.21978,77545.65767,374.1768204,21
+263892,26661.76908,77212.41587,359.5313769,21
+263893,26639.23049,77134.26214,388.7849691,21
+263894,26244.7931,76704.38544,359.5387845,21
+263895,26283.5455,76596.33871,388.7929066,21
+263896,25864.11429,76495.96243,374.1963182,21
+263897,25808.85157,76472.36535,388.8011531,21
+263898,25561.45394,76000.70958,388.8053306,21
+263899,25477.92666,76094.26933,388.8094854,21
+263900,25128.79376,75620.15419,388.8136979,21
+263901,25038.57766,75816.86511,388.8178747,21
+263902,24756.95565,75623.16243,403.3763502,21
+263903,24531.57645,75471.29002,388.8263972,21
+263904,24398.92185,75135.97219,403.3852384,21
+263905,24184.00525,74842.54159,388.8348789,21
+263906,23862.01978,74731.81209,403.3941044,21
+263907,23713.72947,74001.87235,403.3985677,21
+263908,23502.0469,74317.83834,403.4031236,21
+263909,23183.93352,74095.6959,403.4075794,21
+263910,23156.92874,73675.58803,388.8564373,21
+263911,22810.05774,74277.61818,417.9260588,21
+263912,22558.96317,73304.06996,388.8651026,21
+263913,22600.09915,73560.7154,403.4254511,21
+263914,22204.09517,73261.99384,388.8736164,21
+263915,21968.16494,73180.16047,403.4343063,21
+263916,21867.45372,72531.24934,388.8821278,21
+263917,21534.14474,72694.48353,388.8862701,21
+263918,21545.94669,72527.26282,388.8904911,21
+263919,21036.64203,72020.87112,388.8946306,21
+263920,21056.39601,71906.0953,388.8988521,21
+263921,20588.34499,71726.03837,374.2978285,21
+263922,20605.22844,71562.83073,374.3017326,21
+263923,20357.33909,71063.76073,388.9110454,21
+263924,20029.78845,71258.43478,359.654896,21
+263925,19913.33865,70406.11764,374.3132929,21
+263926,19435.70337,70794.48064,359.6621244,21
+263927,19400.39708,70350.27089,359.6657471,21
+263928,19269.23723,69982.81973,359.6692501,21
+263929,18803.90329,69768.62771,344.9666736,21
+263930,18857.96694,69829.2263,344.9700056,21
+263931,18326.35785,69203.25889,344.9732205,21
+263932,18245.95282,69147.28856,330.2175502,21
+263933,18132.62084,68716.55584,344.9796889,21
+263934,17670.37404,68735.10818,315.4102095,21
+263935,17507.18114,68349.73088,330.2265296,21
+263936,17371.68522,68108.16154,300.5457855,21
+263937,17099.48135,67672.82081,315.4184451,21
+263938,16860.9444,67657.42649,315.4211539,21
+263939,16597.68381,67341.80019,285.6245439,21
+263940,16215.99979,67221.56387,285.6267663,21
+263941,1375.968026,26013.78157,0,21
+263942,1137.691457,23614.26416,0,21
+263943,1056.350698,22829.18605,0,21
+263944,973.2550644,22110.50895,0,21
+263945,909.669561,21455.75633,0,21
+263946,843.8521687,20735.71574,0,21
+263947,815.5770592,20095.58558,0,21
+263948,787.0398381,19578.24817,0,21
+263949,787.0384118,19087.30975,0,21
+263950,729.5764236,18174.93569,0,21
+263951,729.5777255,17929.66679,0,21
+263952,671.4891714,17492.7561,0,21
+263953,671.48899,16543.97375,0,21
+263954,627.4895906,16249.55268,0,21
+263955,627.4903164,15918.6141,0,21
+263956,583.0998552,14857.42994,0,21
+263957,583.0998416,14783.82766,0,21
+263958,538.2945572,14256.66673,0,21
+263959,538.2945273,13557.25147,0,21
+263960,493.0480725,13103.92124,0,21
+263961,493.0480647,12729.4148,0,21
+263962,462.6234027,12015.93808,0,21
+263963,431.9781444,11627.60841,0,21
+263964,431.9781186,11138.9408,0,21
+263965,385.5692505,10870.04466,0,21
+263966,385.5692607,10392.43561,0,21
+263967,338.586095,10316.70424,0,21
+263968,338.5860776,9607.082853,0,21
+263969,322.7868805,9584.803139,0,21
+263970,274.9354672,9265.795932,0,21
+263971,274.9357228,8822.830104,0,21
+263972,250.7331747,8523.217565,0,21
+263973,226.3268015,8484.692549,0,21
+263974,209.9338658,7991.028921,0,21
+263975,176.8256575,7958.939425,0,21
+263976,176.8256563,7461.11721,0,21
+263977,143.2304428,7383.272698,0,21
+263978,126.2217491,7155.471493,0,21
+263979,91.69754126,6657.380934,0,21
+263980,91.69768779,6825.381786,0,21
+263981,65.25486109,6324.641764,0,21
+263982,38.15869899,6052.606298,0,21
+263983,38.15869629,5989.979444,0,21
+263984,0,5497.22029,0,21
+263985,0,5322.738548,0,21
+263986,0,4918.520911,0,21
+263987,0,4878.603162,0,21
+263988,0,4355.20374,0,21
+263989,0,4308.138006,0,21
+263990,0,3758.678181,0,21
+263991,0,3735.012961,0,21
+263992,0,2842.731465,0,21
+263993,0,2560.610372,0,21
+263994,0,2495.796663,0,21
+263995,0,2152.181669,0,21
+263996,0,2152.181991,0,21
+263997,0,2045.448476,0,21
+263998,0,2045.448579,0,21
+263999,0,2021.098218,0,21
+264000,0,1913.39237,0,21
+264001,0,1913.393331,0,21
+264002,0,1871.557272,0,21
+264003,0,1846.893183,0,21
+264004,0,1780.066485,0,21
+264005,0,1780.066633,0,21
+264006,0,1712.904891,0,21
+264007,0,1704.19465,0,21
+264008,0,1645.39869,0,21
+264009,0,1645.398871,0,21
+264010,0,1577.537054,0,21
+264011,0,1559.953655,0,21
+264012,0,1526.892194,0,21
+264013,0,1491.648827,0,21
+264014,0,1466.213691,0,21
+264015,0,1415.110726,0,21
+264016,0,1422.962363,0,21
+264017,0,1345.949369,0,21
+264018,0,1353.894962,0,21
+264019,0,1302.293256,0,21
+264020,0,1258.467049,0,21
+264021,0,1258.467233,0,21
+264022,0,1232.462636,0,21
+264023,0,1188.372733,0,21
+264024,0,1144.097859,0,21
+264025,0,1135.912057,0,21
+264026,0,1117.821381,0,21
+264027,0,1046.792859,0,21
+264028,0,1046.792868,0,21
+264029,0,1020.225321,0,21
+264030,0,975.2621531,0,21
+264031,0,939.2974017,0,21
+264032,0,884.6769203,0,21
+264033,0,857.6819478,0,21
+264034,0,811.9252262,0,21
+264035,0,757.3417833,0,21
+264036,0,738.5600524,0,21
+264037,0,664.532602,0,21
+264038,0,636.7765396,0,21
+264039,0,589.7833131,0,21
+264040,0,533.5088525,0,21
+264041,0,490.3547098,0,21
+264042,0,447.5651397,0,21
+264043,0,380.0536369,0,21
+264044,0,350.3822755,0,21
+264045,0,271.935988,0,21
+264046,0,241.8112522,0,21
+264047,0,181.3320389,0,21
+264048,0,129.8792257,0,21
+264049,0,55.72221228,0,21
+264050,0,21.90576312,0,21
+264051,0,0,0,21
+264052,0,0,0,21
+264053,0,0,0,21
+264054,0,0,0,21
+264055,0,0,0,21
+264056,0,0,0,21
+264057,0,0,0,21
+264058,0,0,0,21
+264059,0,0,0,21
+264060,0,0,0,21
+264061,0,0,0,21
+264062,0,0,0,21
+264063,0,0,0,21
+264064,0,0,0,21
+264065,0,0,0,21
+264066,0,0,0,21
+264067,0,0,0,21
+264068,0,0,0,21
+264069,0,0,0,21
+264070,0,0,0,21
+264071,0,0,0,21
+264072,0,0,0,21
+264073,0,0,0,21
+264074,0,0,0,21
+264075,0,0,0,21
+264076,0,0,0,21
+264077,0,0,0,21
+264078,0,0,0,21
+264079,0,0,0,21
+264080,0,0,0,21
+264081,0,0,0,21
+264082,0,0,0,21
+264083,0,0,0,21
+264084,0,0,0,21
+264085,0,0,0,21
+264086,0,0,0,21
+264087,0,0,0,21
+264088,0,0,0,21
+264089,0,0,0,21
+264090,0,0,0,21
+264091,0,0,0,21
+264092,0,0,0,21
+264093,0,0,0,21
+264094,0,0,0,21
+264095,0,0,0,21
+264096,0,0,0,21
+264097,0,0,0,21
+264098,0,0,0,21
+264099,0,0,0,21
+264100,0,0,0,21
+264101,0,0,0,21
+264102,0,0,0,21
+264103,0,0,0,21
+264104,0,0,0,21
+264105,0,0,0,21
+264106,0,0,0,21
+264107,0,0,0,21
+264108,0,0,0,21
+264109,0,0,0,21
+264110,0,0,0,21
+264111,0,0,0,21
+264112,0,0,0,21
+264113,0,0,0,21
+264114,0,0,0,21
+264115,0,0,0,21
+264116,0,0,0,21
+264117,0,0,0,21
+264118,0,0,0,21
+264119,0,0,0,21
+264120,0,0,0,21
+264121,0,0,0,21
+264122,0,0,0,21
+264123,0,0,0,21
+264124,0,0,0,21
+264125,0,0,0,21
+264126,0,0,0,21
+264127,0,0,0,21
+264128,0,0,0,21
+264129,0,0,0,21
+264130,0,0,0,21
+264131,0,0,0,21
+264132,0,0,0,21
+264133,0,0,0,21
+264134,0,0,0,21
+264135,0,0,0,21
+264136,0,0,0,21
+264137,0,0,0,21
+264138,0,0,0,21
+264139,0,0,0,21
+264140,0,0,0,21
+264141,0,0,0,21
+264142,0,0,0,21
+264143,0,0,0,21
+264144,0,0,0,21
+264145,0,0,0,21
+264146,0,0,0,21
+264147,0,0,0,21
+264148,0,0,0,21
+264149,0,0,0,21
+264150,0,0,0,21
+264151,0,0,0,21
+264152,0,0,0,21
+264153,0,0,0,21
+264154,0,0,0,21
+264155,0,0,0,21
+264156,0,0,0,21
+264157,0,0,0,21
+264158,0,0,0,21
+264159,0,0,0,21
+264160,0,0,0,21
+264161,0,0,0,21
+264162,0,0,0,21
+264163,0,0,0,21
+264164,0,0,0,21
+264165,0,0,0,21
+264166,0,0,0,21
+264167,0,0,0,21
+264168,0,0,0,21
+264169,0,0,0,21
+264170,0,0,0,21
+264171,0,0,0,21
+264172,0,0,0,21
+264173,0,0,0,21
+264174,0,0,0,21
+264175,0,0,0,21
+264176,0,0,0,21
+264177,0,0,0,21
+264178,0,0,0,21
+264179,0,0,0,21
+264180,0,0,0,21
+264181,0,0,0,21
+264182,0,0,0,21
+264183,0,0,0,21
+264184,0,0,0,21
+264185,0,0,0,21
+264186,0,0,0,21
+264187,0,0,0,21
+264188,0,0,0,21
+264189,0,0,0,21
+264190,0,0,0,21
+264191,0,0,0,21
+264192,0,0,0,21
+264193,0,0,0,21
+264194,0,0,0,21
+264195,0,0,0,21
+264196,0,0,0,21
+264197,0,0,0,21
+264198,0,0,0,21
+264199,0,0,0,21
+264200,0,0,0,21
+264201,0,0,0,21
+264202,0,0,0,21
+264203,0,0,0,21
+264204,0,0,0,21
+264205,0,0,0,21
+264206,0,0,0,21
+264207,0,0,0,21
+264208,0,0,0,21
+264209,0,0,0,21
+264210,0,0,0,21
+264211,0,0,0,21
+264212,0,0,0,21
+264213,0,0,0,21
+264214,0,0,0,21
+264215,0,0,0,21
+264216,0,0,0,21
+264217,0,0,0,21
+264218,0,0,0,21
+264219,0,0,0,21
+264220,0,0,0,21
+264221,0,0,0,21
+264222,0,0,0,21
+264223,0,0,0,21
+264224,0,0,0,21
+264225,0,0,0,21
+264226,0,0,0,21
+264227,0,0,0,21
+264228,0,0,0,21
+264229,0,0,0,21
+264230,0,0,0,21
+264231,0,0,0,21
+264232,0,0,0,21
+264233,0,0,0,21
+264234,0,0,0,21
+264235,0,0,0,21
+264236,0,0,0,21
+264237,0,0,0,21
+264238,0,0,0,21
+264239,0,0,0,21
+264240,0,0,0,21
+264241,0,0,0,21
+264242,0,0,0,21
+264243,0,0,0,21
+264244,0,0,0,21
+264245,0,0,0,21
+264246,0,0,0,21
+264247,0,0,0,21
+264248,0,0,0,21
+264249,0,0,0,21
+264250,0,0,0,21
+264251,0,0,0,21
+264252,0,0,0,21
+264253,0,0,0,21
+264254,0,0,0,21
+264255,0,0,0,21
+264256,0,0,0,21
+264257,0,0,0,21
+264258,0,0,0,21
+264259,0,0,0,21
+264260,0,0,0,21
+264261,0,0,0,21
+264262,0,0,0,21
+264263,0,0,0,21
+264264,0,0,0,21
+264265,0,0,0,21
+264266,0,0,0,21
+264267,0,0,0,21
+264268,0,0,0,21
+264269,0,0,0,21
+264270,0,0,0,21
+264271,0,0,0,21
+264272,0,0,0,21
+264273,0,0,0,21
+264274,0,0,0,21
+264275,0,0,0,21
+264276,0,0,0,21
+264277,0,0,0,21
+264278,0,0,0,21
+264279,0,0,0,21
+264280,0,0,0,21
+264281,0,0,0,21
+264282,0,0,0,21
+264283,0,0,0,21
+264284,0,0,0,21
+264285,0,0,0,21
+264286,0,0,0,21
+264287,0,0,0,21
+264288,0,0,0,21
+264289,0,0,0,21
+264290,0,0,0,21
+264291,0,0,0,21
+264292,0,0,0,21
+264293,0,0,0,21
+264294,0,0,0,21
+264295,0,0,0,21
+264296,0,0,0,21
+264297,0,0,0,21
+264298,0,0,0,21
+264299,0,0,0,21
+264300,0,0,0,21
+264301,0,0,0,21
+264302,0,0,0,21
+264303,0,0,0,21
+264304,0,0,0,21
+264305,0,0,0,21
+264306,0,0,0,21
+264307,0,0,0,21
+264308,0,0,0,21
+264309,0,0,0,21
+264310,0,0,0,21
+264311,0,0,0,21
+264312,0,0,0,21
+264313,0,0,0,21
+264314,0,0,0,21
+264315,0,0,0,21
+264316,0,0,0,21
+264317,0,0,0,21
+264318,0,0,0,21
+264319,0,0,0,21
+264320,0,0,0,21
+264321,0,0,0,21
+264322,0,0,0,21
+264323,0,0,0,21
+264324,0,0,0,21
+264325,0,0,0,21
+264326,0,0,0,21
+264327,0,0,0,21
+264328,0,0,0,21
+264329,0,0,0,21
+264330,0,0,0,21
+264331,0,0,0,21
+264332,0,0,0,21
+264333,0,0,0,21
+264334,0,0,0,21
+264335,0,0,0,21
+264336,0,0,0,21
+264337,0,0,0,21
+264338,0,0,0,21
+264339,0,0,0,21
+264340,0,0,0,21
+264341,0,0,0,21
+264342,0,0,0,21
+264343,0,0,0,21
+264344,0,0,0,21
+264345,0,0,0,21
+264346,0,0,0,21
+264347,0,0,0,21
+264348,0,0,0,21
+264349,0,0,0,21
+264350,0,0,0,21
+264351,0,0,0,21
+264352,0,0,0,21
+264353,0,0,0,21
+264354,0,0,0,21
+264355,0,0,0,21
+264356,0,0,0,21
+264357,0,0,0,21
+264358,0,0,0,21
+264359,0,0,0,21
+264360,0,0,0,21
+264361,0,0,0,21
+264362,0,0,0,21
+264363,0,0,0,21
+264364,0,0,0,21
+264365,0,0,0,21
+264366,0,0,0,21
+264367,0,0,0,21
+264368,0,0,0,21
+264369,0,0,0,21
+264370,0,0,0,21
+264371,0,0,0,21
+264372,0,0,0,21
+264373,0,0,0,21
+264374,0,0,0,21
+264375,0,0,0,21
+264376,0,0,0,21
+264377,0,0,0,21
+264378,0,0,0,21
+264379,0,0,0,21
+264380,0,0,0,21
+264381,0,0,0,21
+264382,0,0,0,21
+264383,0,0,0,21
+264384,0,0,0,21
+264385,0,0,0,21
+264386,0,0,0,21
+264387,0,0,0,21
+264388,0,0,0,21
+264389,0,0,0,21
+264390,0,0,0,21
+264391,0,0,0,21
+264392,0,0,0,21
+264393,0,0,0,21
+264394,0,0,0,21
+264395,0,0,0,21
+264396,0,0,0,21
+264397,0,0,0,21
+264398,0,0,0,21
+264399,0,0,0,21
+264400,0,0,0,21
+264401,0,0,0,21
+264402,0,0,0,21
+264403,0,0,0,21
+264404,0,0,0,21
+264405,0,0,0,21
+264406,0,0,0,21
+264407,0,0,0,21
+264408,0,0,0,21
+264409,0,0,0,21
+264410,0,0,0,21
+264411,0,0,0,21
+264412,0,0,0,21
+264413,0,0,0,21
+264414,0,0,0,21
+264415,0,0,0,21
+264416,0,0,0,21
+264417,0,0,0,21
+264418,0,0,0,21
+264419,0,0,0,21
+264420,0,0,0,21
+264421,0,0,0,21
+264422,0,0,0,21
+264423,0,0,0,21
+264424,0,0,0,21
+264425,0,0,0,21
+264426,0,0,0,21
+264427,0,0,0,21
+264428,0,0,0,21
+264429,0,0,0,21
+264430,0,0,0,21
+264431,0,0,0,21
+264432,0,0,0,21
+264433,0,0,0,21
+264434,0,0,0,21
+264435,0,0,0,21
+264436,0,0,0,21
+264437,0,0,0,21
+264438,0,0,0,21
+264439,0,0,0,21
+264440,0,0,0,21
+264441,0,0,0,21
+264442,0,0,0,21
+264443,0,0,0,21
+264444,0,0,0,21
+264445,0,0,0,21
+264446,0,0,0,21
+264447,0,0,0,21
+264448,0,0,0,21
+264449,0,0,0,21
+264450,0,0,0,21
+264451,0,0,0,21
+264452,0,0,0,21
+264453,0,0,0,21
+264454,0,0,0,21
+264455,0,0,0,21
+264456,0,0,0,21
+264457,0,0,0,21
+264458,0,0,0,21
+264459,0,0,0,21
+264460,0,0,0,21
+264461,0,0,0,21
+264462,0,0,0,21
+264463,0,0,0,21
+264464,0,0,0,21
+264465,0,0,0,21
+264466,0,0,0,21
+264467,0,0,0,21
+264468,0,0,0,21
+264469,0,0,0,21
+264470,0,0,0,21
+264471,0,0,0,21
+264472,0,0,0,21
+264473,0,0,0,21
+264474,0,0,0,21
+264475,0,0,0,21
+264476,0,0,0,21
+264477,0,0,0,21
+264478,0,0,0,21
+264479,0,0,0,21
+264480,0,0,0,21
+264481,0,0,0,21
+264482,0,0,0,21
+264483,0,0,0,21
+264484,0,0,0,21
+264485,0,0,0,21
+264486,0,0,0,21
+264487,0,0,0,21
+264488,0,0,0,21
+264489,0,0,0,21
+264490,0,0,0,21
+264491,0,0,0,21
+264492,0,0,0,21
+264493,0,0,0,21
+264494,0,0,0,21
+264495,0,0,0,21
+264496,0,0,0,21
+264497,0,0,0,21
+264498,0,0,0,21
+264499,0,0,0,21
+264500,0,0,0,21
+264501,0,0,0,21
+264502,0,0,0,21
+264503,0,0,0,21
+264504,0,0,0,21
+264505,0,0,0,21
+264506,0,0,0,21
+264507,0,0,0,21
+264508,0,0,0,21
+264509,0,0,0,21
+264510,0,0,0,21
+264511,0,0,0,21
+264512,0,0,0,21
+264513,0,0,0,21
+264514,0,0,0,21
+264515,0,0,0,21
+264516,0,0,0,21
+264517,0,0,0,21
+264518,0,0,0,21
+264519,0,0,0,21
+264520,0,0,0,21
+264521,0,0,0,21
+264522,0,0,0,21
+264523,0,0,0,21
+264524,0,0,0,21
+264525,0,0,0,21
+264526,0,0,0,21
+264527,0,0,0,21
+264528,0,0,0,21
+264529,0,0,0,21
+264530,0,0,0,21
+264531,0,0,0,21
+264532,0,0,0,21
+264533,0,0,0,21
+264534,0,0,0,21
+264535,0,0,0,21
+264536,0,0,0,21
+264537,0,0,0,21
+264538,0,0,0,21
+264539,0,0,0,21
+264540,0,0,0,21
+264541,0,0,0,21
+264542,0,0,0,21
+264543,0,0,0,21
+264544,0,0,0,21
+264545,0,0,0,21
+264546,0,0,0,21
+264547,0,0,0,21
+264548,0,0,0,21
+264549,0,0,0,21
+264550,0,0,0,21
+264551,0,0,0,21
+264552,0,0,0,21
+264553,0,0,0,21
+264554,0,0,0,21
+264555,0,0,0,21
+264556,0,0,0,21
+264557,0,0,0,21
+264558,0,0,0,21
+264559,0,0,0,21
+264560,0,0,0,21
+264561,0,0,0,21
+264562,0,0,0,21
+264563,0,0,0,21
+264564,0,0,0,21
+264565,0,0,0,21
+264566,0,0,0,21
+264567,0,0,0,21
+264568,0,0,0,21
+264569,0,0,0,21
+264570,0,0,0,21
+264571,0,0,0,21
+264572,0,0,0,21
+264573,0,0,0,21
+264574,0,0,0,21
+264575,0,0,0,21
+264576,0,0,0,21
+264577,0,0,0,21
+264578,0,0,0,21
+264579,0,0,0,21
+264580,0,0,0,21
+264581,0,0,0,21
+264582,0,0,0,21
+264583,0,0,0,21
+264584,0,0,0,21
+264585,0,0,0,21
+264586,0,0,0,21
+264587,0,0,0,21
+264588,0,0,0,21
+264589,0,0,0,21
+264590,0,0,0,21
+264591,0,0,0,21
+264592,0,0,0,21
+264593,0,0,0,21
+264594,0,0,0,21
+264595,0,0,0,21
+264596,0,0,0,21
+264597,0,0,0,21
+264598,0,0,0,21
+264599,0,0,0,21
+264600,0,0,0,21
+264601,0,0,0,21
+264602,0,0,0,21
+264603,0,0,0,21
+264604,0,0,0,21
+264605,0,0,0,21
+264606,0,0,0,21
+264607,0,0,0,21
+264608,0,0,0,21
+264609,0,0,0,21
+264610,0,0,0,21
+264611,0,0,0,21
+264612,0,0,0,21
+264613,0,0,0,21
+264614,0,0,0,21
+264615,0,0,0,21
+264616,0,0,0,21
+264617,0,0,0,21
+264618,0,0,0,21
+264619,0,0,0,21
+264620,0,0,0,21
+264621,0,0,0,21
+264622,0,0,0,21
+264623,0,0,0,21
+264624,0,0,0,21
+264625,0,0,0,21
+264626,0,0,0,21
+264627,0,0,0,21
+264628,0,0,0,21
+264629,0,0,0,21
+264630,0,0,0,21
+264631,0,0,0,21
+264632,0,0,0,21
+264633,0,0,0,21
+264634,0,0,0,21
+264635,0,0,0,21
+264636,0,0,0,21
+264637,0,0,0,21
+264638,0,0,0,21
+264639,0,0,0,21
+264640,0,0,0,21
+264641,0,0,0,21
+264642,0,0,0,21
+264643,0,0,0,21
+264644,0,0,0,21
+264645,0,0,0,21
+264646,0,0,0,21
+264647,0,0,0,21
+264648,0,0,0,21
+264649,0,0,0,21
+264650,0,0,0,21
+264651,0,0,0,21
+264652,0,0,0,21
+264653,0,0,0,21
+264654,0,0,0,21
+264655,0,0,0,21
+264656,0,0,0,21
+264657,0,0,0,21
+264658,0,0,0,21
+264659,0,0,0,21
+264660,0,0,0,21
+264661,0,0,0,21
+264662,0,0,0,21
+264663,0,0,0,21
+264664,0,0,0,21
+264665,0,0,0,21
+264666,0,0,0,21
+264667,0,0,0,21
+264668,0,0,0,21
+264669,0,0,0,21
+264670,0,0,0,21
+264671,0,0,0,21
+264672,0,0,0,21
+264673,0,0,0,21
+264674,0,0,0,21
+264675,0,0,0,21
+264676,0,0,0,21
+264677,0,0,0,21
+264678,0,0,0,21
+264679,0,0,0,21
+264680,0,0,0,21
+264681,0,0,0,21
+264682,0,0,0,21
+264683,0,0,0,21
+264684,0,0,0,21
+264685,0,0,0,21
+264686,0,0,0,21
+264687,0,0,0,21
+264688,0,0,0,21
+264689,0,0,0,21
+264690,0,0,0,21
+264691,0,0,0,21
+264692,0,0,0,21
+264693,0,0,0,21
+264694,0,0,0,21
+264695,0,0,0,21
+264696,0,0,0,21
+264697,0,0,0,21
+264698,0,0,0,21
+264699,0,0,0,21
+264700,0,0,0,21
+264701,0,0,0,21
+264702,0,0,0,21
+264703,0,0,0,21
+264704,0,0,0,21
+264705,0,0,0,21
+264706,0,0,0,21
+264707,0,0,0,21
+264708,0,0,0,21
+264709,0,0,0,21
+264710,0,0,0,21
+264711,0,0,0,21
+264712,0,0,0,21
+264713,0,0,0,21
+264714,0,0,0,21
+264715,0,0,0,21
+264716,0,0,0,21
+264717,0,0,0,21
+264718,0,0,0,21
+264719,0,0,0,21
+264720,0,0,0,21
+264721,0,0,0,21
+264722,0,0,0,21
+264723,0,0,0,21
+264724,0,0,0,21
+264725,0,0,0,21
+264726,0,0,0,21
+264727,0,0,0,21
+264728,0,0,0,21
+264729,0,704.4946837,0,21
+264730,0,1280.984851,0,21
+264731,0,1036.583413,0,21
+264732,0,1522.147658,0,21
+264733,0,1522.147639,0,21
+264734,0,1839.414936,0,21
+264735,0,1996.425747,0,21
+264736,0,2152.453008,0,21
+264737,0,2307.557071,0,21
+264738,0,2615.198315,0,21
+264739,0,2615.198255,0,21
+264740,0,2919.69625,0,21
+264741,0,3070.85438,0,21
+264742,0,3221.325113,0,21
+264743,0,3520.307612,0,21
+264744,0,3520.307497,0,21
+264745,0,3668.865152,0,21
+264746,0,3964.214767,0,21
+264747,0,4111.042467,0,21
+264748,0,4257.327232,0,21
+264749,0,4403.08397,0,21
+264750,0,4548.326597,0,21
+264751,0,4837.321068,0,21
+264752,0,4837.320828,0,21
+264753,0,5124.405186,0,21
+264754,0,5219.357751,0,21
+264755,0,5715.623725,0,21
+264756,0,5544.370785,0,21
+264757,0,6017.592222,0,21
+264758,0,6036.749918,0,21
+264759,0,6336.775389,0,21
+264760,0,6374.429841,0,21
+264761,0,6663.184591,0,21
+264762,0,6830.168359,0,21
+264763,0,6987.358814,0,21
+264764,0,7300.340261,0,21
+264765,0,7300.339697,0,21
+264766,0,7474.226486,0,21
+264767,0,7766.453123,0,21
+264768,0,7929.890562,0,21
+264769,0,8075.052996,0,21
+264770,0,8246.423595,0,21
+264771,0,8399.628357,0,21
+264772,0,8993.557784,0,21
+264773,0,8940.819393,0,21
+264774,0,9268.394092,0,21
+264775,0,9494.779087,0,21
+264776,0,9526.324604,0,21
+264777,0,10023.05173,0,21
+264778,0,10310.11873,0,21
+264779,0,13041.42834,0,21
+264780,0,12118.74782,0,21
+264781,0,0,0,21
+264782,0,0,0,21
+264783,0,0,0,21
+264784,0,0,0,21
+264785,0,359393.6203,667263.6679,21
+264786,333881.0393,0,0,21
+264787,0,0,0,21
+264788,0,0,0,21
+264789,0,0,0,21
+264790,0,0,0,21
+264791,0,0,0,21
+264792,0,0,0,21
+264793,0,0,0,21
+264794,0,0,0,21
+264795,0,0,0,21
+264796,0,0,0,21
+264797,0,0,0,21
+264798,0,0,0,21
+264799,0,0,0,21
+264800,0,0,0,21
+264801,0,0,0,21
+264802,0,0,0,21
+264803,0,0,0,21
+264804,0,0,0,21
+264805,0,0,0,21
+264806,0,0,0,21
+264807,0,0,0,21
+264808,0,0,0,21
+264809,0,0,0,21
+264810,0,0,0,21
+264811,0,0,0,21
+264812,0,0,0,21
+264813,0,0,0,21
+264814,0,0,0,21
+264815,0,0,0,21
+264816,0,0,0,21
+264817,0,0,0,21
+264818,0,0,0,21
+264819,0,362677.5453,667417.6069,21
+264820,0,0,0,21
+264821,334190.2062,0,0,21
+264822,0,0,0,21
+264823,0,0,0,21
+264824,0,0,0,21
+264825,0,0,0,21
+264826,0,0,0,21
+264827,0,0,0,21
+264828,0,0,0,21
+264829,0,0,0,21
+264830,0,0,0,21
+264831,0,0,0,21
+264832,0,0,0,21
+264833,0,0,0,21
+264834,0,0,0,21
+264835,0,0,0,21
+264836,0,0,0,21
+264837,0,0,0,21
+264838,0,0,0,21
+264839,0,0,0,21
+264840,0,0,0,15.6
+264841,0,0,0,15.6
+264842,0,0,0,15.6
+264843,0,0,0,15.6
+264844,0,0,0,15.6
+264845,0,0,0,15.6
+264846,0,0,0,15.6
+264847,0,0,0,15.6
+264848,0,0,0,15.6
+264849,0,0,0,15.6
+264850,0,0,0,15.6
+264851,0,0,0,15.6
+264852,0,0,0,15.6
+264853,0,369293.1036,667113.4524,15.6
+264854,0,0,0,15.6
+264855,0,0,0,15.6
+264856,334544.0525,0,0,15.6
+264857,0,0,0,15.6
+264858,0,0,0,15.6
+264859,0,0,0,15.6
+264860,0,0,0,15.6
+264861,0,0,0,15.6
+264862,0,0,0,15.6
+264863,0,0,0,15.6
+264864,0,0,0,15.6
+264865,0,0,0,15.6
+264866,0,0,0,15.6
+264867,0,0,0,15.6
+264868,0,0,0,15.6
+264869,0,0,0,15.6
+264870,0,0,0,15.6
+264871,0,0,0,15.6
+264872,0,0,0,15.6
+264873,0,0,0,15.6
+264874,0,0,0,15.6
+264875,0,0,0,15.6
+264876,0,0,0,15.6
+264877,0,0,0,15.6
+264878,0,0,0,15.6
+264879,0,0,0,15.6
+264880,0,0,0,15.6
+264881,0,0,0,15.6
+264882,0,0,0,15.6
+264883,0,0,0,15.6
+264884,0,0,0,15.6
+264885,0,0,0,15.6
+264886,0,0,0,15.6
+264887,0,0,667235.3699,15.6
+264888,0,369229.7661,0,15.6
+264889,0,0,0,15.6
+264890,0,0,0,15.6
+264891,335872.0877,0,0,15.6
+264892,0,0,0,15.6
+264893,0,0,0,15.6
+264894,0,0,0,15.6
+264895,0,0,0,15.6
+264896,0,0,0,15.6
+264897,0,0,0,15.6
+264898,0,0,0,15.6
+264899,0,0,0,15.6
+264900,0,0,0,15.6
+264901,0,0,0,15.6
+264902,0,0,0,15.6
+264903,0,0,0,15.6
+264904,0,0,0,15.6
+264905,0,0,0,15.6
+264906,0,0,0,15.6
+264907,0,0,0,15.6
+264908,0,0,0,15.6
+264909,0,0,0,15.6
+264910,0,0,0,15.6
+264911,0,0,0,15.6
+264912,0,0,0,15.6
+264913,0,0,0,15.6
+264914,0,0,0,15.6
+264915,0,0,0,15.6
+264916,0,0,0,15.6
+264917,0,0,0,15.6
+264918,0,0,0,15.6
+264919,0,0,0,15.6
+264920,0,0,0,15.6
+264921,0,0,666884.0342,15.6
+264922,0,0,0,15.6
+264923,0,369186.971,0,15.6
+264924,0,0,0,15.6
+264925,0,0,0,15.6
+264926,334825.4186,0,0,15.6
+264927,0,0,0,15.6
+264928,0,0,0,15.6
+264929,0,0,0,15.6
+264930,0,0,0,15.6
+264931,0,0,0,15.6
+264932,0,0,0,15.6
+264933,0,0,0,15.6
+264934,0,0,0,15.6
+264935,0,0,0,15.6
+264936,0,0,0,15.6
+264937,0,0,0,15.6
+264938,0,0,0,15.6
+264939,0,0,0,15.6
+264940,0,0,0,15.6
+264941,0,0,0,15.6
+264942,0,0,0,15.6
+264943,0,0,0,15.6
+264944,0,0,0,15.6
+264945,0,0,0,15.6
+264946,0,0,0,15.6
+264947,0,0,0,15.6
+264948,0,0,0,15.6
+264949,0,0,0,15.6
+264950,0,0,0,15.6
+264951,0,0,0,15.6
+264952,0,0,0,15.6
+264953,0,0,0,15.6
+264954,0,0,0,15.6
+264955,0,0,666187.019,15.6
+264956,0,0,0,15.6
+264957,0,0,0,15.6
+264958,0,369154.8534,0,15.6
+264959,0,0,0,15.6
+264960,0,0,0,15.6
+264961,336304.2989,0,0,15.6
+264962,0,0,0,15.6
+264963,0,0,0,15.6
+264964,0,0,0,15.6
+264965,0,0,0,15.6
+264966,0,0,0,15.6
+264967,0,0,0,15.6
+264968,0,0,0,15.6
+264969,0,0,0,15.6
+264970,0,0,0,15.6
+264971,0,0,0,15.6
+264972,0,0,0,15.6
+264973,0,0,0,15.6
+264974,0,0,0,15.6
+264975,0,0,0,15.6
+264976,0,0,0,15.6
+264977,0,0,0,15.6
+264978,0,0,0,15.6
+264979,0,0,0,15.6
+264980,0,0,0,15.6
+264981,0,0,0,15.6
+264982,0,0,0,15.6
+264983,0,0,0,15.6
+264984,0,0,0,15.6
+264985,0,0,0,15.6
+264986,0,0,0,15.6
+264987,0,0,0,15.6
+264988,0,0,0,15.6
+264989,0,0,665875.2889,15.6
+264990,0,0,0,15.6
+264991,0,0,0,15.6
+264992,0,0,0,15.6
+264993,0,369128.2297,0,15.6
+264994,0,0,0,15.6
+264995,0,0,0,15.6
+264996,337321.4534,0,0,15.6
+264997,0,0,0,15.6
+264998,0,0,0,15.6
+264999,0,0,0,15.6
+265000,0,0,0,15.6
+265001,0,0,0,15.6
+265002,0,0,0,15.6
+265003,0,0,0,15.6
+265004,0,0,0,15.6
+265005,0,0,0,15.6
+265006,0,0,0,15.6
+265007,0,0,0,15.6
+265008,0,0,0,15.6
+265009,0,0,0,15.6
+265010,0,0,0,15.6
+265011,0,0,0,15.6
+265012,0,0,0,15.6
+265013,0,0,0,15.6
+265014,0,0,0,15.6
+265015,0,0,0,15.6
+265016,0,0,0,15.6
+265017,0,0,0,15.6
+265018,0,0,0,15.6
+265019,0,0,0,15.6
+265020,0,0,0,15.6
+265021,0,0,0,15.6
+265022,0,0,0,15.6
+265023,0,0,664799.8729,15.6
+265024,0,0,0,15.6
+265025,0,0,0,15.6
+265026,0,0,0,15.6
+265027,0,0,0,15.6
+265028,0,369115.1588,0,15.6
+265029,0,0,0,15.6
+265030,0,0,0,15.6
+265031,337899.5458,0,0,15.6
+265032,0,0,0,15.6
+265033,0,0,0,15.6
+265034,0,0,0,15.6
+265035,0,0,0,15.6
+265036,0,0,0,15.6
+265037,0,0,0,15.6
+265038,0,0,0,15.6
+265039,0,0,0,15.6
+265040,0,0,0,15.6
+265041,0,0,0,15.6
+265042,0,0,0,15.6
+265043,0,0,0,15.6
+265044,0,0,0,15.6
+265045,0,0,0,15.6
+265046,0,0,0,15.6
+265047,0,0,0,15.6
+265048,0,0,0,15.6
+265049,0,0,0,15.6
+265050,0,0,0,15.6
+265051,0,0,0,15.6
+265052,0,0,0,15.6
+265053,0,0,0,15.6
+265054,0,0,0,15.6
+265055,0,0,0,15.6
+265056,0,0,0,15.6
+265057,0,0,664390.3655,15.6
+265058,0,0,0,15.6
+265059,0,0,0,15.6
+265060,0,0,0,15.6
+265061,0,0,0,15.6
+265062,0,0,0,15.6
+265063,0,369144.5526,0,15.6
+265064,0,0,0,15.6
+265065,0,0,0,15.6
+265066,338252.964,0,0,15.6
+265067,0,0,0,15.6
+265068,0,0,0,15.6
+265069,0,0,0,15.6
+265070,0,0,0,15.6
+265071,0,0,0,15.6
+265072,0,0,0,15.6
+265073,0,0,0,15.6
+265074,0,0,0,15.6
+265075,0,0,0,15.6
+265076,0,0,0,15.6
+265077,0,0,0,15.6
+265078,0,0,0,15.6
+265079,0,0,0,15.6
+265080,0,0,0,15.6
+265081,0,0,0,15.6
+265082,0,0,0,15.6
+265083,0,0,0,15.6
+265084,0,0,0,15.6
+265085,0,0,0,15.6
+265086,0,0,0,15.6
+265087,0,0,0,15.6
+265088,0,0,0,15.6
+265089,0,0,0,15.6
+265090,0,0,0,15.6
+265091,0,0,0,15.6
+265092,0,0,664353.9373,15.6
+265093,0,0,0,15.6
+265094,0,0,0,15.6
+265095,0,0,0,15.6
+265096,0,0,0,15.6
+265097,0,0,0,15.6
+265098,0,369171.4868,0,15.6
+265099,0,0,0,15.6
+265100,0,0,0,15.6
+265101,338496.1876,0,0,15.6
+265102,0,0,0,15.6
+265103,0,0,0,15.6
+265104,0,0,0,15.6
+265105,0,0,0,15.6
+265106,0,0,0,15.6
+265107,0,0,0,15.6
+265108,0,0,0,15.6
+265109,0,0,0,15.6
+265110,0,0,0,15.6
+265111,0,0,0,15.6
+265112,0,0,0,15.6
+265113,0,0,0,15.6
+265114,0,391.1337645,0,15.6
+265115,0,0,0,15.6
+265116,0,0,0,15.6
+265117,0,0,0,15.6
+265118,0,0,0,15.6
+265119,0,0,0,15.6
+265120,0,0,0,15.6
+265121,0,0,0,15.6
+265122,0,0,0,15.6
+265123,0,0,0,15.6
+265124,0,0,0,15.6
+265125,0,0,0,15.6
+265126,0,0,663109.5935,15.6
+265127,0,0,0,15.6
+265128,0,0,0,15.6
+265129,0,0,0,15.6
+265130,0,0,0,15.6
+265131,0,0,0,15.6
+265132,0,0,0,15.6
+265133,0,369190.72,0,15.6
+265134,0,0,0,15.6
+265135,0,0,0,15.6
+265136,335447.5659,0,0,15.6
+265137,0,0,0,15.6
+265138,0,0,0,15.6
+265139,0,0,0,15.6
+265140,0,0,0,15.6
+265141,0,0,0,15.6
+265142,0,0,0,15.6
+265143,0,0,0,15.6
+265144,0,0,0,15.6
+265145,0,0,0,15.6
+265146,0,0,0,15.6
+265147,0,0,0,15.6
+265148,0,0,0,15.6
+265149,0,0,0,15.6
+265150,0,0,0,15.6
+265151,0,0,0,15.6
+265152,0,0,0,15.6
+265153,0,0,0,15.6
+265154,0,0,0,15.6
+265155,0,0,0,15.6
+265156,0,0,0,15.6
+265157,0,0,0,15.6
+265158,0,0,0,15.6
+265159,0,0,0,15.6
+265160,0,0,663343.2456,15.6
+265161,0,260322.0609,0,15.6
+265162,0,0,0,15.6
+265163,0,0,0,15.6
+265164,0,0,0,15.6
+265165,0,0,0,15.6
+265166,0,0,0,15.6
+265167,0,0,0,15.6
+265168,0,369220.4478,0,15.6
+265169,0,0,0,15.6
+265170,337243.7589,0,0,15.6
+265171,0,0,0,15.6
+265172,0,0,0,15.6
+265173,0,0,0,15.6
+265174,0,0,0,15.6
+265175,0,0,0,15.6
+265176,0,0,0,15.6
+265177,0,0,0,15.6
+265178,0,0,0,15.6
+265179,0,0,0,15.6
+265180,0,0,0,15.6
+265181,0,0,0,15.6
+265182,0,0,0,15.6
+265183,0,0,0,15.6
+265184,0,0,0,15.6
+265185,0,0,0,15.6
+265186,0,0,0,15.6
+265187,0,0,0,15.6
+265188,0,0,0,15.6
+265189,0,0,0,15.6
+265190,0,0,0,15.6
+265191,0,0,0,15.6
+265192,0,0,0,15.6
+265193,0,0,0,15.6
+265194,0,0,662054.1332,15.6
+265195,0,0,0,15.6
+265196,0,0,0,15.6
+265197,0,0,0,15.6
+265198,0,0,0,15.6
+265199,0,0,0,15.6
+265200,0,0,0,17.8
+265201,0,0,0,17.8
+265202,0,369253.9685,0,17.8
+265203,0,0,0,17.8
+265204,337842.3082,0,0,17.8
+265205,0,0,0,17.8
+265206,0,0,0,17.8
+265207,0,0,0,17.8
+265208,0,0,0,17.8
+265209,0,0,0,17.8
+265210,0,0,0,17.8
+265211,0,0,0,17.8
+265212,0,0,0,17.8
+265213,0,0,0,17.8
+265214,0,0,0,17.8
+265215,0,0,0,17.8
+265216,0,0,0,17.8
+265217,0,0,0,17.8
+265218,0,0,0,17.8
+265219,0,0,0,17.8
+265220,0,0,0,17.8
+265221,0,0,0,17.8
+265222,0,0,0,17.8
+265223,0,0,0,17.8
+265224,0,0,0,17.8
+265225,0,0,0,17.8
+265226,0,0,0,17.8
+265227,0,0,0,17.8
+265228,0,0,662559.9375,17.8
+265229,0,0,0,17.8
+265230,0,0,0,17.8
+265231,0,0,0,17.8
+265232,0,0,0,17.8
+265233,0,0,0,17.8
+265234,0,0,0,17.8
+265235,0,0,0,17.8
+265236,0,369291.4643,0,17.8
+265237,0,0,0,17.8
+265238,338336.9936,0,0,17.8
+265239,0,0,0,17.8
+265240,0,0,0,17.8
+265241,0,0,0,17.8
+265242,0,0,0,17.8
+265243,0,0,0,17.8
+265244,0,0,0,17.8
+265245,0,0,0,17.8
+265246,0,0,0,17.8
+265247,0,0,0,17.8
+265248,0,0,0,17.8
+265249,0,0,0,17.8
+265250,0,0,0,17.8
+265251,0,0,0,17.8
+265252,0,0,0,17.8
+265253,0,0,0,17.8
+265254,0,0,0,17.8
+265255,0,0,0,17.8
+265256,0,0,0,17.8
+265257,0,0,0,17.8
+265258,0,0,0,17.8
+265259,0,0,0,17.8
+265260,0,0,0,20
+265261,0,7.313388524,0,20
+265262,0,0,662888.9503,20
+265263,0,97.26046129,0,20
+265264,0,0,0,20
+265265,0,0,0,20
+265266,0,0,0,20
+265267,0,3.351561784,0,20
+265268,0,0,0,20
+265269,0,76.93248236,0,20
+265270,0,0,0,20
+265271,0,369327.5422,0,20
+265272,0,0,0,20
+265273,0,4.146337343,0,20
+265274,337439.1596,0,0,20
+265275,0,77.30120137,0,20
+265276,0,0,0,20
+265277,0,0,0,20
+265278,0,0,0,20
+265279,0,2.956894997,0,20
+265280,0,0,0,20
+265281,0,71.31378541,0,20
+265282,0,0,0,20
+265283,0,0,0,20
+265284,0,0,0,20
+265285,0,0,0,20
+265286,0,292.9013175,0,20
+265287,0,0,0,20
+265288,0,0,0,20
+265289,0,0,0,20
+265290,0,0,0,20
+265291,0,0,0,20
+265292,0,0,0,20
+265293,0,0,0,20
+265294,0,0,0,20
+265295,0,0,0,20
+265296,0,0,0,20
+265297,0,0,662800.417,20
+265298,0,0,0,20
+265299,0,0,0,20
+265300,0,0,0,20
+265301,0,0,0,20
+265302,0,0,0,20
+265303,0,0,0,20
+265304,0,0,0,20
+265305,0,0,0,20
+265306,0,369355.8219,0,20
+265307,0,0,0,20
+265308,0,0,0,20
+265309,0,0,0,20
+265310,335266.3536,0,0,20
+265311,0,0,0,20
+265312,0,0,0,20
+265313,0,0,0,20
+265314,0,0,0,20
+265315,0,0,0,20
+265316,0,0,0,20
+265317,0,0,0,20
+265318,0,0,0,20
+265319,0,0,0,20
+265320,0,0,0,21
+265321,0,0,0,21
+265322,0,0,0,21
+265323,0,0,0,21
+265324,0,0,0,21
+265325,0,0,0,21
+265326,0,0,0,21
+265327,0,0,0,21
+265328,0,0,0,21
+265329,0,0,0,21
+265330,0,0,0,21
+265331,0,0,661346.4813,21
+265332,0,0,0,21
+265333,0,0,0,21
+265334,0,0,0,21
+265335,0,0,0,21
+265336,0,0,0,21
+265337,0,0,0,21
+265338,0,0,0,21
+265339,0,0,0,21
+265340,0,0,0,21
+265341,0,369366.612,0,21
+265342,0,0,0,21
+265343,0,0,0,21
+265344,0,0,0,21
+265345,335276.9175,0,0,21
+265346,0,0,0,21
+265347,0,0,0,21
+265348,0,0,0,21
+265349,0,0,0,21
+265350,0,0,0,21
+265351,0,0,0,21
+265352,0,0,0,21
+265353,0,0,0,21
+265354,0,0,0,21
+265355,0,0,0,21
+265356,0,0,0,21
+265357,0,0,0,21
+265358,0,0,0,21
+265359,0,0,0,21
+265360,0,0,0,21
+265361,0,0,0,21
+265362,0,0,0,21
+265363,0,0,0,21
+265364,0,0,0,21
+265365,0,0,660833.0795,21
+265366,0,0,0,21
+265367,0,0,0,21
+265368,0,0,0,21
+265369,0,0,0,21
+265370,0,0,0,21
+265371,0,0,0,21
+265372,0,0,0,21
+265373,0,0,0,21
+265374,0,0,0,21
+265375,0,0,0,21
+265376,0,369366.6067,0,21
+265377,0,0,0,21
+265378,0,0,0,21
+265379,0,0,0,21
+265380,335567.7406,0,0,21
+265381,0,0,0,21
+265382,0,0,0,21
+265383,0,0,0,21
+265384,0,0,0,21
+265385,0,0,0,21
+265386,0,0,0,21
+265387,0,0,0,21
+265388,0,0,0,21
+265389,0,0,0,21
+265390,0,0,0,21
+265391,0,0,0,21
+265392,0,0,0,21
+265393,0,0,0,21
+265394,0,0,0,21
+265395,0,0,0,21
+265396,0,0,0,21
+265397,0,0,0,21
+265398,0,0,0,21
+265399,0,0,660832.3103,21
+265400,0,0,0,21
+265401,0,0,0,21
+265402,0,0,0,21
+265403,0,0,0,21
+265404,0,0,0,21
+265405,0,0,0,21
+265406,0,0,0,21
+265407,0,0,0,21
+265408,0,0,0,21
+265409,0,0,0,21
+265410,0,0,0,21
+265411,0,369366.6141,0,21
+265412,0,0,0,21
+265413,0,0,0,21
+265414,0,0,0,21
+265415,335673.4187,0,0,21
+265416,0,0,0,21
+265417,0,0,0,21
+265418,0,0,0,21
+265419,0,0,0,21
+265420,0,0,0,21
+265421,0,0,0,21
+265422,0,262328.8977,0,21
+265423,0,0,0,21
+265424,0,0,0,21
+265425,0,0,0,21
+265426,0,0,0,21
+265427,0,0,0,21
+265428,0,0,0,21
+265429,0,0,0,21
+265430,0,0,0,21
+265431,0,0,0,21
+265432,0,0,0,21
+265433,0,0,660266.9729,21
+265434,0,0,0,21
+265435,0,0,0,21
+265436,0,0,0,21
+265437,0,0,0,21
+265438,0,0,0,21
+265439,0,0,0,21
+265440,0,0,0,21
+265441,0,0,0,21
+265442,0,0,0,21
+265443,0,0,0,21
+265444,0,0,0,21
+265445,0,0,0,21
+265446,0,369366.673,0,21
+265447,0,0,0,21
+265448,0,0,0,21
+265449,0,0,0,21
+265450,335999.5301,0,0,21
+265451,0,0,0,21
+265452,0,0,0,21
+265453,0,0,0,21
+265454,0,0,0,21
+265455,0,0,0,21
+265456,0,0,0,21
+265457,0,0,0,21
+265458,0,0,0,21
+265459,0,0,0,21
+265460,0,0,0,21
+265461,0,0,0,21
+265462,0,0,0,21
+265463,0,0,0,21
+265464,0,0,0,21
+265465,0,0,0,21
+265466,0,0,0,21
+265467,0,0,660291.8839,21
+265468,0,0,0,21
+265469,0,0,0,21
+265470,0,0,0,21
+265471,0,0,0,21
+265472,0,0,0,21
+265473,0,0,0,21
+265474,0,0,0,21
+265475,0,0,0,21
+265476,0,0,0,21
+265477,0,0,0,21
+265478,0,0,0,21
+265479,0,0,0,21
+265480,0,0,0,21
+265481,0,369366.7016,0,21
+265482,0,0,0,21
+265483,0,0,0,21
+265484,0,0,0,21
+265485,335990.9694,0,0,21
+265486,0,0,0,21
+265487,0,0,0,21
+265488,0,0,0,21
+265489,0,0,0,21
+265490,0,0,0,21
+265491,0,0,0,21
+265492,0,0,0,21
+265493,0,0,0,21
+265494,0,0,0,21
+265495,0,0,0,21
+265496,0,0,0,21
+265497,0,0,0,21
+265498,0,0,0,21
+265499,0,0,0,21
+265500,0,0,0,21
+265501,0,0,659472.7458,21
+265502,0,0,0,21
+265503,0,0,0,21
+265504,0,0,0,21
+265505,0,0,0,21
+265506,0,0,0,21
+265507,0,0,0,21
+265508,0,0,0,21
+265509,0,0,0,21
+265510,0,0,0,21
+265511,0,0,0,21
+265512,0,0,0,21
+265513,0,0,0,21
+265514,0,0,0,21
+265515,0,0,0,21
+265516,0,369366.7985,0,21
+265517,0,0,0,21
+265518,0,263172.4098,0,21
+265519,0,0,0,21
+265520,335781.7191,0,0,21
+265521,0,0,0,21
+265522,0,0,0,21
+265523,0,0,0,21
+265524,0,0,0,21
+265525,0,0,0,21
+265526,0,0,0,21
+265527,0,0,0,21
+265528,0,0,0,21
+265529,0,0,0,21
+265530,0,263094.9623,0,21
+265531,0,0,0,21
+265532,0,0,0,21
+265533,0,0,0,21
+265534,0,0,0,21
+265535,0,0,658130.0374,21
+265536,0,0,0,21
+265537,0,0,0,21
+265538,0,0,0,21
+265539,0,0,0,21
+265540,0,0,0,21
+265541,0,0,0,21
+265542,0,263084.1657,0,21
+265543,0,0,0,21
+265544,0,0,0,21
+265545,0,0,0,21
+265546,0,0,0,21
+265547,0,0,0,21
+265548,0,0,0,21
+265549,0,0,0,21
+265550,0,0,0,21
+265551,0,369366.2622,0,21
+265552,0,0,0,21
+265553,0,0,0,21
+265554,0,263069.4541,0,21
+265555,335999.0611,0,0,21
+265556,0,0,0,21
+265557,0,0,0,21
+265558,0,0,0,21
+265559,0,0,0,21
+265560,0,0,0,21
+265561,0,0,0,21
+265562,0,0,0,21
+265563,0,0,0,21
+265564,0,0,0,21
+265565,0,0,0,21
+265566,0,0,0,21
+265567,0,0,0,21
+265568,0,0,0,21
+265569,0,0,657514.2401,21
+265570,0,0,0,21
+265571,0,0,0,21
+265572,0,0,0,21
+265573,0,0,0,21
+265574,0,0,0,21
+265575,0,0,0,21
+265576,0,0,0,21
+265577,0,0,0,21
+265578,0,0,0,21
+265579,0,0,0,21
+265580,0,0,0,21
+265581,0,0,0,21
+265582,0,0,0,21
+265583,0,0,0,21
+265584,0,0,0,21
+265585,0,0,0,21
+265586,0,0,0,21
+265587,0,369373.498,0,21
+265588,0,0,0,21
+265589,0,0,0,21
+265590,335754.4293,0,0,21
+265591,0,0,0,21
+265592,0,0,0,21
+265593,0,0,0,21
+265594,0,0,0,21
+265595,0,0,0,21
+265596,0,0,0,21
+265597,0,0,0,21
+265598,0,0,0,21
+265599,0,0,0,21
+265600,0,0,0,21
+265601,0,0,0,21
+265602,0,0,0,21
+265603,0,0,657360.4496,21
+265604,0,0,0,21
+265605,0,0,0,21
+265606,0,0,0,21
+265607,0,0,0,21
+265608,0,0,0,21
+265609,0,0,0,21
+265610,0,0,0,21
+265611,0,0,0,21
+265612,0,0,0,21
+265613,0,0,0,21
+265614,0,0,0,21
+265615,0,0,0,21
+265616,0,0,0,21
+265617,0,0,0,21
+265618,0,0,0,21
+265619,0,0,0,21
+265620,0,0,0,21
+265621,0,0,0,21
+265622,0,0,0,21
+265623,0,369376.3941,0,21
+265624,0,0,0,21
+265625,335486.4866,0,0,21
+265626,0,0,0,21
+265627,0,0,0,21
+265628,0,0,0,21
+265629,0,0,0,21
+265630,0,0,0,21
+265631,0,0,0,21
+265632,0,0,0,21
+265633,0,0,0,21
+265634,0,0,0,21
+265635,0,0,0,21
+265636,0,0,0,21
+265637,0,0,657452.3479,21
+265638,0,0,0,21
+265639,0,0,0,21
+265640,0,0,0,21
+265641,0,0,0,21
+265642,0,0,0,21
+265643,0,0,0,21
+265644,0,0,0,21
+265645,0,0,0,21
+265646,0,0,0,21
+265647,0,0,0,21
+265648,0,0,0,21
+265649,0,0,0,21
+265650,0,0,0,21
+265651,0,0,0,21
+265652,0,0,0,21
+265653,0,0,0,21
+265654,0,0,0,21
+265655,0,0,0,21
+265656,0,0,0,21
+265657,0,0,0,21
+265658,0,0,0,21
+265659,0,369332.8826,0,21
+265660,335590.1612,0,0,21
+265661,0,0,0,21
+265662,0,0,0,21
+265663,0,0,0,21
+265664,0,0,0,21
+265665,0,0,0,21
+265666,0,0,0,21
+265667,0,0,0,21
+265668,0,0,0,21
+265669,0,0,0,21
+265670,0,0,0,21
+265671,0,0,657784.5786,21
+265672,0,0,0,21
+265673,0,0,0,21
+265674,0,0,0,21
+265675,0,0,0,21
+265676,0,0,0,21
+265677,0,0,0,21
+265678,0,0,0,21
+265679,0,0,0,21
+265680,0,0,0,21
+265681,0,0,0,21
+265682,0,0,0,21
+265683,0,0,0,21
+265684,0,0,0,21
+265685,0,0,0,21
+265686,0,0,0,21
+265687,0,0,0,21
+265688,0,0,0,21
+265689,0,0,0,21
+265690,0,0,0,21
+265691,0,0,0,21
+265692,0,0,0,21
+265693,0,0,0,21
+265694,0,0,0,21
+265695,0,369259.8229,0,21
+265696,335577.8628,0,0,21
+265697,0,0,0,21
+265698,0,0,0,21
+265699,0,0,0,21
+265700,0,0,0,21
+265701,0,0,0,21
+265702,0,0,0,21
+265703,0,0,0,21
+265704,0,0,0,21
+265705,0,0,0,21
+265706,0,0,658354.3875,21
+265707,0,0,0,21
+265708,0,0,0,21
+265709,0,0,0,21
+265710,0,0,0,21
+265711,0,0,0,21
+265712,0,0,0,21
+265713,0,0,0,21
+265714,0,0,0,21
+265715,0,0,0,21
+265716,0,0,0,21
+265717,0,0,0,21
+265718,0,0,0,21
+265719,0,0,0,21
+265720,0,0,0,21
+265721,0,0,0,21
+265722,0,0,0,21
+265723,0,0,0,21
+265724,0,0,0,21
+265725,0,0,0,21
+265726,0,0,0,21
+265727,0,0,0,21
+265728,0,0,0,21
+265729,0,0,0,21
+265730,0,0,0,21
+265731,0,369140.8747,0,21
+265732,335435.4774,0,0,21
+265733,0,0,0,21
+265734,0,0,0,21
+265735,0,0,0,21
+265736,0,0,0,21
+265737,0,0,0,21
+265738,0,0,0,21
+265739,0,0,0,21
+265740,0,0,0,21
+265741,0,0,659301.6299,21
+265742,0,0,0,21
+265743,0,0,0,21
+265744,0,0,0,21
+265745,0,0,0,21
+265746,0,0,0,21
+265747,0,0,0,21
+265748,0,0,0,21
+265749,0,0,0,21
+265750,0,0,0,21
+265751,0,0,0,21
+265752,0,0,0,21
+265753,0,0,0,21
+265754,0,0,0,21
+265755,0,0,0,21
+265756,0,0,0,21
+265757,0,0,0,21
+265758,0,0,0,21
+265759,0,0,0,21
+265760,0,0,0,21
+265761,0,0,0,21
+265762,0,0,0,21
+265763,0,0,0,21
+265764,0,0,0,21
+265765,0,0,0,21
+265766,0,0,0,21
+265767,0,369110.5951,0,21
+265768,335387.5566,0,0,21
+265769,0,0,0,21
+265770,0,0,0,21
+265771,0,0,0,21
+265772,0,0,0,21
+265773,0,0,0,21
+265774,0,0,0,21
+265775,0,0,0,21
+265776,0,0,659756.4667,21
+265777,0,0,0,21
+265778,0,0,0,21
+265779,0,0,0,21
+265780,0,0,0,21
+265781,0,0,0,21
+265782,0,0,0,21
+265783,0,0,0,21
+265784,0,0,0,21
+265785,0,0,0,21
+265786,0,0,0,21
+265787,0,0,0,21
+265788,0,0,0,21
+265789,0,0,0,21
+265790,0,0,0,21
+265791,0,0,0,21
+265792,0,0,0,21
+265793,0,0,0,21
+265794,0,0,0,21
+265795,0,0,0,21
+265796,0,0,0,21
+265797,0,0,0,21
+265798,0,0,0,21
+265799,0,0,0,21
+265800,0,0,0,21
+265801,0,0,0,21
+265802,0,0,0,21
+265803,0,369110.7387,0,21
+265804,335391.3705,0,0,21
+265805,0,0,0,21
+265806,0,0,0,21
+265807,0,0,0,21
+265808,0,0,0,21
+265809,0,0,0,21
+265810,0,0,659977.9826,21
+265811,0,0,0,21
+265812,0,0,0,21
+265813,0,0,0,21
+265814,0,0,0,21
+265815,0,0,0,21
+265816,0,0,0,21
+265817,0,0,0,21
+265818,0,0,0,21
+265819,0,0,0,21
+265820,0,0,0,21
+265821,0,0,0,21
+265822,0,0,0,21
+265823,0,0,0,21
+265824,0,0,0,21
+265825,0,0,0,21
+265826,0,0,0,21
+265827,0,0,0,21
+265828,0,0,0,21
+265829,0,0,0,21
+265830,0,0,0,21
+265831,0,0,0,21
+265832,0,0,0,21
+265833,0,0,0,21
+265834,0,0,0,21
+265835,0,0,0,21
+265836,0,0,0,21
+265837,0,0,0,21
+265838,0,0,0,21
+265839,335388.5806,369111.4728,0,21
+265840,0,0,0,21
+265841,0,0,0,21
+265842,0,0,0,21
+265843,0,0,0,21
+265844,0,0,660043.6306,21
+265845,0,0,0,21
+265846,0,0,0,21
+265847,0,0,0,21
+265848,0,0,0,21
+265849,0,0,0,21
+265850,0,0,0,21
+265851,0,0,0,21
+265852,0,0,0,21
+265853,0,0,0,21
+265854,0,0,0,21
+265855,0,0,0,21
+265856,0,0,0,21
+265857,0,0,0,21
+265858,0,0,0,21
+265859,0,0,0,21
+265860,0,0,0,21
+265861,0,0,0,21
+265862,0,0,0,21
+265863,0,0,0,21
+265864,0,0,0,21
+265865,0,0,0,21
+265866,0,0,0,21
+265867,0,0,0,21
+265868,0,0,0,21
+265869,0,0,0,21
+265870,0,0,0,21
+265871,0,0,0,21
+265872,0,0,0,21
+265873,0,0,0,21
+265874,335491.6848,0,0,21
+265875,0,369135.1273,0,21
+265876,0,0,0,21
+265877,0,0,0,21
+265878,0,0,659985.4706,21
+265879,0,0,0,21
+265880,0,0,0,21
+265881,0,0,0,21
+265882,0,0,0,21
+265883,0,0,0,21
+265884,0,0,0,21
+265885,0,0,0,21
+265886,0,0,0,21
+265887,0,0,0,21
+265888,0,0,0,21
+265889,0,0,0,21
+265890,0,0,0,21
+265891,0,0,0,21
+265892,0,0,0,21
+265893,0,0,0,21
+265894,0,0,0,21
+265895,0,0,0,21
+265896,0,0,0,21
+265897,0,0,0,21
+265898,0,0,0,21
+265899,0,0,0,21
+265900,0,0,0,21
+265901,0,0,0,21
+265902,0,0,0,21
+265903,0,0,0,21
+265904,0,0,0,21
+265905,0,0,0,21
+265906,0,0,0,21
+265907,0,0,0,21
+265908,0,0,0,21
+265909,335347.6977,0,0,21
+265910,0,0,0,21
+265911,0,358488.8684,0,21
+265912,0,0,659901.1092,21
+265913,0,0,0,21
+265914,0,0,0,21
+265915,0,0,0,21
+265916,0,0,0,21
+265917,0,0,0,21
+265918,0,0,0,21
+265919,0,0,0,21
+265920,0,0,0,21
+265921,0,0,0,21
+265922,0,0,0,21
+265923,0,0,0,21
+265924,0,0,0,21
+265925,0,0,0,21
+265926,0,0,0,21
+265927,0,0,0,21
+265928,0,0,0,21
+265929,0,0,0,21
+265930,0,0,0,21
+265931,0,0,0,21
+265932,0,0,0,21
+265933,0,0,0,21
+265934,0,0,0,21
+265935,0,0,0,21
+265936,0,0,0,21
+265937,0,0,0,21
+265938,0,0,0,21
+265939,0,0,0,21
+265940,0,0,0,21
+265941,0,0,0,21
+265942,0,0,0,21
+265943,0,0,0,21
+265944,335590.719,0,0,21
+265945,0,0,0,21
+265946,0,369071.5697,659990.1891,21
+265947,0,0,0,21
+265948,0,0,0,21
+265949,0,0,0,21
+265950,0,0,0,21
+265951,0,0,0,21
+265952,0,0,0,21
+265953,0,0,0,21
+265954,0,0,0,21
+265955,0,0,0,21
+265956,0,0,0,21
+265957,0,0,0,21
+265958,0,0,0,21
+265959,0,0,0,21
+265960,0,0,0,21
+265961,0,0,0,21
+265962,0,0,0,21
+265963,0,0,0,21
+265964,0,0,0,21
+265965,0,0,0,21
+265966,0,0,0,21
+265967,0,0,0,21
+265968,0,0,0,21
+265969,0,0,0,21
+265970,0,0,0,21
+265971,0,0,0,21
+265972,0,0,0,21
+265973,0,0,0,21
+265974,0,0,0,21
+265975,0,0,0,21
+265976,0,0,0,21
+265977,0,0,0,21
+265978,0,0,0,21
+265979,335755.4805,0,0,21
+265980,0,0,660186.4939,21
+265981,0,369097.3821,0,21
+265982,0,0,0,21
+265983,0,0,0,21
+265984,0,0,0,21
+265985,0,0,0,21
+265986,0,0,0,21
+265987,0,0,0,21
+265988,0,0,0,21
+265989,0,0,0,21
+265990,0,0,0,21
+265991,0,0,0,21
+265992,0,0,0,21
+265993,0,0,0,21
+265994,0,0,0,21
+265995,0,0,0,21
+265996,0,0,0,21
+265997,0,0,0,21
+265998,0,0,0,21
+265999,0,0,0,21
+266000,0,0,0,21
+266001,0,0,0,21
+266002,0,0,0,21
+266003,0,0,0,21
+266004,0,0,0,21
+266005,0,0,0,21
+266006,0,0,0,21
+266007,0,0,0,21
+266008,0,0,0,21
+266009,0,0,0,21
+266010,0,0,0,21
+266011,0,0,0,21
+266012,0,0,0,21
+266013,0,0,0,21
+266014,335892.7533,0,660354.7624,21
+266015,0,0,0,21
+266016,0,369130.7314,0,21
+266017,0,0,0,21
+266018,0,0,0,21
+266019,0,0,0,21
+266020,0,0,0,21
+266021,0,0,0,21
+266022,0,0,0,21
+266023,0,0,0,21
+266024,0,0,0,21
+266025,0,0,0,21
+266026,0,0,0,21
+266027,0,0,0,21
+266028,0,0,0,21
+266029,0,0,0,21
+266030,0,0,0,21
+266031,0,0,0,21
+266032,0,0,0,21
+266033,0,0,0,21
+266034,0,0,0,21
+266035,0,0,0,21
+266036,0,0,0,21
+266037,0,0,0,21
+266038,0,0,0,21
+266039,0,0,0,21
+266040,0,0,0,21
+266041,0,0,0,21
+266042,0,0,0,21
+266043,0,0,0,21
+266044,0,0,0,21
+266045,0,0,0,21
+266046,0,0,0,21
+266047,0,0,0,21
+266048,0,0,660581.733,21
+266049,336089.0669,0,0,21
+266050,0,0,0,21
+266051,0,369151.8855,0,21
+266052,0,0,0,21
+266053,0,0,0,21
+266054,0,0,0,21
+266055,0,0,0,21
+266056,0,0,0,21
+266057,0,0,0,21
+266058,0,0,0,21
+266059,0,0,0,21
+266060,0,0,0,21
+266061,0,0,0,21
+266062,0,0,0,21
+266063,0,0,0,21
+266064,0,0,0,21
+266065,0,0,0,21
+266066,0,0,0,21
+266067,0,0,0,21
+266068,0,0,0,21
+266069,0,0,0,21
+266070,0,0,0,21
+266071,0,0,0,21
+266072,0,0,0,21
+266073,0,0,0,21
+266074,0,0,0,21
+266075,0,0,0,21
+266076,0,0,0,21
+266077,0,0,0,21
+266078,0,0,0,21
+266079,0,0,0,21
+266080,0,0,0,21
+266081,0,0,0,21
+266082,0,0,0,21
+266083,0,0,660764.854,21
+266084,336343.9175,0,0,21
+266085,0,0,0,21
+266086,0,369146.8473,0,21
+266087,0,0,0,21
+266088,0,0,0,21
+266089,0,0,0,21
+266090,0,0,0,21
+266091,0,0,0,21
+266092,0,0,0,21
+266093,0,0,0,21
+266094,0,0,0,21
+266095,0,0,0,21
+266096,0,0,0,21
+266097,0,0,0,21
+266098,0,0,0,21
+266099,0,0,0,21
+266100,0,0,0,21
+266101,0,0,0,21
+266102,0,0,0,21
+266103,0,0,0,21
+266104,0,0,0,21
+266105,0,0,0,21
+266106,0,0,0,21
+266107,0,0,0,21
+266108,0,0,0,21
+266109,0,0,0,21
+266110,0,0,0,21
+266111,0,0,0,21
+266112,0,0,0,21
+266113,0,0,0,21
+266114,0,0,0,21
+266115,0,0,0,21
+266116,0,0,0,21
+266117,0,0,0,21
+266118,0,0,660389.0891,21
+266119,335923.0229,0,0,21
+266120,0,0,0,21
+266121,0,0,0,21
+266122,0,369164.9234,0,21
+266123,0,0,0,21
+266124,0,0,0,21
+266125,0,0,0,21
+266126,0,0,0,21
+266127,0,0,0,21
+266128,0,0,0,21
+266129,0,0,0,21
+266130,0,0,0,21
+266131,0,0,0,21
+266132,0,0,0,21
+266133,0,0,0,21
+266134,0,0,0,21
+266135,0,0,0,21
+266136,0,0,0,21
+266137,0,0,0,21
+266138,0,0,0,21
+266139,0,0,0,21
+266140,0,0,0,21
+266141,0,0,0,21
+266142,0,0,0,21
+266143,0,0,0,21
+266144,0,0,0,21
+266145,0,0,0,21
+266146,0,0,0,21
+266147,0,0,0,21
+266148,0,0,0,21
+266149,0,0,0,21
+266150,0,0,0,21
+266151,0,0,0,21
+266152,0,0,0,21
+266153,0,0,660350.6275,21
+266154,336012.3859,0,0,21
+266155,0,0,0,21
+266156,0,0,0,21
+266157,0,0,0,21
+266158,0,369196.057,0,21
+266159,0,0,0,21
+266160,0,0,0,21
+266161,0,0,0,21
+266162,0,0,0,21
+266163,0,0,0,21
+266164,0,0,0,21
+266165,0,0,0,21
+266166,0,0,0,21
+266167,0,0,0,21
+266168,0,0,0,21
+266169,0,0,0,21
+266170,0,0,0,21
+266171,0,0,0,21
+266172,0,0,0,21
+266173,0,0,0,21
+266174,0,0,0,21
+266175,0,0,0,21
+266176,0,0,0,21
+266177,0,0,0,21
+266178,0,0,0,21
+266179,0,0,0,21
+266180,0,0,0,21
+266181,0,0,0,21
+266182,0,0,0,21
+266183,0,0,0,21
+266184,0,0,0,21
+266185,0,0,0,21
+266186,0,0,0,21
+266187,0,0,0,21
+266188,0,0,659967.2305,21
+266189,0,0,0,21
+266190,336085.7307,0,0,21
+266191,0,0,0,21
+266192,0,0,0,21
+266193,0,0,0,21
+266194,0,369197.4176,0,21
+266195,0,0,0,21
+266196,0,0,0,21
+266197,0,0,0,21
+266198,0,0,0,21
+266199,0,0,0,21
+266200,0,0,0,21
+266201,0,0,0,21
+266202,0,0,0,21
+266203,0,0,0,21
+266204,0,0,0,21
+266205,0,0,0,21
+266206,0,0,0,21
+266207,0,0,0,21
+266208,0,0,0,21
+266209,0,0,0,21
+266210,0,0,0,21
+266211,0,0,0,21
+266212,0,0,0,21
+266213,0,0,0,21
+266214,0,0,0,21
+266215,0,0,0,21
+266216,0,0,0,21
+266217,0,0,0,21
+266218,0,0,0,21
+266219,0,0,0,21
+266220,0,0,0,21
+266221,0,0,0,21
+266222,0,0,0,21
+266223,0,0,659538.256,21
+266224,0,0,0,21
+266225,0,0,0,21
+266226,336602.2178,0,0,21
+266227,0,0,0,21
+266228,0,0,0,21
+266229,0,0,0,21
+266230,0,369205.5703,0,21
+266231,0,0,0,21
+266232,0,0,0,21
+266233,0,0,0,21
+266234,0,0,0,21
+266235,0,0,0,21
+266236,0,0,0,21
+266237,0,0,0,21
+266238,0,0,0,21
+266239,0,0,0,21
+266240,0,0,0,21
+266241,0,0,0,21
+266242,0,0,0,21
+266243,0,0,0,21
+266244,0,0,0,21
+266245,0,0,0,21
+266246,0,0,0,21
+266247,0,0,0,21
+266248,0,0,0,21
+266249,0,0,0,21
+266250,0,0,0,21
+266251,0,0,0,21
+266252,0,0,0,21
+266253,0,0,0,21
+266254,0,0,0,21
+266255,0,0,0,21
+266256,0,0,0,21
+266257,0,0,0,21
+266258,0,0,659579.3407,21
+266259,0,0,0,21
+266260,0,0,0,21
+266261,0,0,0,21
+266262,336958.5727,0,0,21
+266263,0,0,0,21
+266264,0,0,0,21
+266265,0,0,0,21
+266266,0,369234.7956,0,21
+266267,0,0,0,21
+266268,0,0,0,21
+266269,0,0,0,21
+266270,0,0,0,21
+266271,0,0,0,21
+266272,0,0,0,21
+266273,0,0,0,21
+266274,0,0,0,21
+266275,0,0,0,21
+266276,0,0,0,21
+266277,0,0,0,21
+266278,0,0,0,21
+266279,0,0,0,21
+266280,0,0,0,15.6
+266281,0,3.528210864,0,15.6
+266282,0,0,0,15.6
+266283,0,0,0,15.6
+266284,0,287.2510925,0,15.6
+266285,0,0,0,15.6
+266286,0,0,0,15.6
+266287,0,0,0,15.6
+266288,0,0,0,15.6
+266289,0,0,0,15.6
+266290,0,0,0,15.6
+266291,0,0,0,15.6
+266292,0,0,0,15.6
+266293,0,0,659498.1539,15.6
+266294,0,0,0,15.6
+266295,0,0,0,15.6
+266296,0,0,0,15.6
+266297,0,0,0,15.6
+266298,336307.481,0,0,15.6
+266299,0,0,0,15.6
+266300,0,0,0,15.6
+266301,0,0,0,15.6
+266302,0,369222.8788,0,15.6
+266303,0,0,0,15.6
+266304,0,0,0,15.6
+266305,0,0,0,15.6
+266306,0,0,0,15.6
+266307,0,0,0,15.6
+266308,0,0,0,15.6
+266309,0,0,0,15.6
+266310,0,0,0,15.6
+266311,0,0,0,15.6
+266312,0,0,0,15.6
+266313,0,0,0,15.6
+266314,0,0,0,15.6
+266315,0,0,0,15.6
+266316,0,0,0,15.6
+266317,0,0,0,15.6
+266318,0,0,0,15.6
+266319,0,0,0,15.6
+266320,0,0,0,15.6
+266321,0,0,0,15.6
+266322,0,0,0,15.6
+266323,0,0,0,15.6
+266324,0,0,0,15.6
+266325,0,0,0,15.6
+266326,0,0,0,15.6
+266327,0,0,0,15.6
+266328,0,0,659327.6894,15.6
+266329,0,0,0,15.6
+266330,0,0,0,15.6
+266331,0,0,0,15.6
+266332,0,0,0,15.6
+266333,0,0,0,15.6
+266334,337500.59,0,0,15.6
+266335,0,0,0,15.6
+266336,0,0,0,15.6
+266337,0,0,0,15.6
+266338,0,369189.426,0,15.6
+266339,0,0,0,15.6
+266340,0,0,0,15.6
+266341,0,0,0,15.6
+266342,0,0,0,15.6
+266343,0,0,0,15.6
+266344,0,0,0,15.6
+266345,0,0,0,15.6
+266346,0,0,0,15.6
+266347,0,0,0,15.6
+266348,0,0,0,15.6
+266349,0,0,0,15.6
+266350,0,0,0,15.6
+266351,0,0,0,15.6
+266352,0,0,0,15.6
+266353,0,0,0,15.6
+266354,0,0,0,15.6
+266355,0,0,0,15.6
+266356,0,0,0,15.6
+266357,0,0,0,15.6
+266358,0,0,0,15.6
+266359,0,0,0,15.6
+266360,0,0,0,15.6
+266361,0,0,0,15.6
+266362,0,0,659184.2974,15.6
+266363,0,0,0,15.6
+266364,0,0,0,15.6
+266365,0,0,0,15.6
+266366,0,0,0,15.6
+266367,0,0,0,15.6
+266368,0,0,0,15.6
+266369,338119.5992,0,0,15.6
+266370,0,0,0,15.6
+266371,0,0,0,15.6
+266372,0,0,0,15.6
+266373,0,369185.9778,0,15.6
+266374,0,0,0,15.6
+266375,0,0,0,15.6
+266376,0,0,0,15.6
+266377,0,0,0,15.6
+266378,0,0,0,15.6
+266379,0,0,0,15.6
+266380,0,0,0,15.6
+266381,0,0,0,15.6
+266382,0,0,0,15.6
+266383,0,0,0,15.6
+266384,0,0,0,15.6
+266385,0,0,0,15.6
+266386,0,0,0,15.6
+266387,0,0,0,15.6
+266388,0,0,0,15.6
+266389,0,0,0,15.6
+266390,0,0,0,15.6
+266391,0,0,0,15.6
+266392,0,0,0,15.6
+266393,0,0,0,15.6
+266394,0,0,0,15.6
+266395,0,0,0,15.6
+266396,0,0,658534.5309,15.6
+266397,0,0,0,15.6
+266398,0,0,0,15.6
+266399,0,0,0,15.6
+266400,0,0,0,15.6
+266401,0,0,0,15.6
+266402,0,0,0,15.6
+266403,0,0,0,15.6
+266404,338466.1221,0,0,15.6
+266405,0,0,0,15.6
+266406,0,0,0,15.6
+266407,0,0,0,15.6
+266408,0,369187.0945,0,15.6
+266409,0,0,0,15.6
+266410,0,0,0,15.6
+266411,0,0,0,15.6
+266412,0,0,0,15.6
+266413,0,0,0,15.6
+266414,0,0,0,15.6
+266415,0,0,0,15.6
+266416,0,0,0,15.6
+266417,0,0,0,15.6
+266418,0,0,0,15.6
+266419,0,0,0,15.6
+266420,0,0,0,15.6
+266421,0,0,0,15.6
+266422,0,0,0,15.6
+266423,0,0,0,15.6
+266424,0,0,0,15.6
+266425,0,0,0,15.6
+266426,0,0,0,15.6
+266427,0,0,0,15.6
+266428,0,0,0,15.6
+266429,0,0,0,15.6
+266430,0,0,658697.9672,15.6
+266431,0,0,0,15.6
+266432,0,0,0,15.6
+266433,0,0,0,15.6
+266434,0,0,0,15.6
+266435,0,0,0,15.6
+266436,0,0,0,15.6
+266437,0,0,0,15.6
+266438,0,0,0,15.6
+266439,338661.6801,0,0,15.6
+266440,0,0,0,15.6
+266441,0,0,0,15.6
+266442,0,0,0,15.6
+266443,0,369194.6133,0,15.6
+266444,0,0,0,15.6
+266445,0,0,0,15.6
+266446,0,0,0,15.6
+266447,0,0,0,15.6
+266448,0,0,0,15.6
+266449,0,0,0,15.6
+266450,0,0,0,15.6
+266451,0,0,0,15.6
+266452,0,0,0,15.6
+266453,0,0,0,15.6
+266454,0,0,0,15.6
+266455,0,0,0,15.6
+266456,0,0,0,15.6
+266457,0,0,0,15.6
+266458,0,0,0,15.6
+266459,0,0,0,15.6
+266460,0,0,0,15.6
+266461,0,0,0,15.6
+266462,0,0,0,15.6
+266463,0,0,0,15.6
+266464,0,0,658948.5455,15.6
+266465,0,0,0,15.6
+266466,0,0,0,15.6
+266467,0,0,0,15.6
+266468,0,0,0,15.6
+266469,0,0,0,15.6
+266470,0,0,0,15.6
+266471,0,0,0,15.6
+266472,0,0,0,15.6
+266473,0,0,0,15.6
+266474,338792.3704,0,0,15.6
+266475,0,0,0,15.6
+266476,0,0,0,15.6
+266477,0,0,0,15.6
+266478,0,369181.9127,0,15.6
+266479,0,0,0,15.6
+266480,0,0,0,15.6
+266481,0,0,0,15.6
+266482,0,0,0,15.6
+266483,0,0,0,15.6
+266484,0,0,0,15.6
+266485,0,0,0,15.6
+266486,0,0,0,15.6
+266487,0,0,0,15.6
+266488,0,0,0,15.6
+266489,0,0,0,15.6
+266490,0,0,0,15.6
+266491,0,0,0,15.6
+266492,0,0,0,15.6
+266493,0,0,0,15.6
+266494,0,0,0,15.6
+266495,0,0,0,15.6
+266496,0,0,0,15.6
+266497,0,0,0,15.6
+266498,0,0,658719.6186,15.6
+266499,0,0,0,15.6
+266500,0,0,0,15.6
+266501,0,0,0,15.6
+266502,0,0,0,15.6
+266503,0,0,0,15.6
+266504,0,0,0,15.6
+266505,0,0,0,15.6
+266506,0,0,0,15.6
+266507,0,0,0,15.6
+266508,0,0,0,15.6
+266509,338905.9603,0,0,15.6
+266510,0,0,0,15.6
+266511,0,0,0,15.6
+266512,0,0,0,15.6
+266513,0,369151.3852,0,15.6
+266514,0,0,0,15.6
+266515,0,0,0,15.6
+266516,0,0,0,15.6
+266517,0,0,0,15.6
+266518,0,0,0,15.6
+266519,0,0,0,15.6
+266520,0,0,0,15.6
+266521,0,0,0,15.6
+266522,0,0,0,15.6
+266523,0,0,0,15.6
+266524,0,0,0,15.6
+266525,0,0,0,15.6
+266526,0,0,0,15.6
+266527,0,0,0,15.6
+266528,0,0,0,15.6
+266529,0,0,0,15.6
+266530,0,0,0,15.6
+266531,0,0,0,15.6
+266532,0,0,658453.2511,15.6
+266533,0,0,0,15.6
+266534,0,0,0,15.6
+266535,0,0,0,15.6
+266536,0,0,0,15.6
+266537,0,0,0,15.6
+266538,0,0,0,15.6
+266539,0,0,0,15.6
+266540,0,0,0,15.6
+266541,0,0,0,15.6
+266542,0,0,0,15.6
+266543,0,0,0,15.6
+266544,339004.031,0,0,15.6
+266545,0,0,0,15.6
+266546,0,0,0,15.6
+266547,0,0,0,15.6
+266548,0,369143.7554,0,15.6
+266549,0,0,0,15.6
+266550,0,0,0,15.6
+266551,0,0,0,15.6
+266552,0,0,0,15.6
+266553,0,0,0,15.6
+266554,0,0,0,15.6
+266555,0,0,0,15.6
+266556,0,0,0,15.6
+266557,0,0,0,15.6
+266558,0,0,0,15.6
+266559,0,0,0,15.6
+266560,0,0,0,15.6
+266561,0,0,0,15.6
+266562,0,0,0,15.6
+266563,0,0,0,15.6
+266564,0,0,0,15.6
+266565,0,0,0,15.6
+266566,0,0,658417.9179,15.6
+266567,0,0,0,15.6
+266568,0,0,0,15.6
+266569,0,0,0,15.6
+266570,0,0,0,15.6
+266571,0,0,0,15.6
+266572,0,0,0,15.6
+266573,0,0,0,15.6
+266574,0,0,0,15.6
+266575,0,0,0,15.6
+266576,0,0,0,15.6
+266577,0,0,0,15.6
+266578,0,0,0,15.6
+266579,339059.724,0,0,15.6
+266580,0,0,0,15.6
+266581,0,0,0,15.6
+266582,0,0,0,15.6
+266583,0,369144.6612,0,15.6
+266584,0,0,0,15.6
+266585,0,0,0,15.6
+266586,0,0,0,15.6
+266587,0,0,0,15.6
+266588,0,0,0,15.6
+266589,0,0,0,15.6
+266590,0,0,0,15.6
+266591,0,0,0,15.6
+266592,0,0,0,15.6
+266593,0,0,0,15.6
+266594,0,0,0,15.6
+266595,0,0,0,15.6
+266596,0,0,0,15.6
+266597,0,0,0,15.6
+266598,0,0,0,15.6
+266599,0,0,0,15.6
+266600,0,0,657619.1081,15.6
+266601,0,0,0,15.6
+266602,0,0,0,15.6
+266603,0,0,0,15.6
+266604,0,0,0,15.6
+266605,0,0,0,15.6
+266606,0,0,0,15.6
+266607,0,0,0,15.6
+266608,0,0,0,15.6
+266609,0,0,0,15.6
+266610,0,0,0,15.6
+266611,0,0,0,15.6
+266612,0,0,0,15.6
+266613,0,263767.5813,0,15.6
+266614,339103.7058,0,0,15.6
+266615,0,0,0,15.6
+266616,0,0,0,15.6
+266617,0,0,0,15.6
+266618,0,369167.6768,0,15.6
+266619,0,0,0,15.6
+266620,0,0,0,15.6
+266621,0,0,0,15.6
+266622,0,263293.7046,0,15.6
+266623,0,0,0,15.6
+266624,0,0,0,15.6
+266625,0,0,0,15.6
+266626,0,0,0,15.6
+266627,0,0,0,15.6
+266628,0,0,0,15.6
+266629,0,0,0,15.6
+266630,0,0,0,15.6
+266631,0,263274.4811,0,15.6
+266632,0,0,0,15.6
+266633,0,0,0,15.6
+266634,0,0,658335.0573,15.6
+266635,0,0,0,15.6
+266636,0,0,0,15.6
+266637,0,0,0,15.6
+266638,0,0,0,15.6
+266639,0,0,0,15.6
+266640,0,263236.3875,0,17.8
+266641,0,0,0,17.8
+266642,0,0,0,17.8
+266643,0,0,0,17.8
+266644,0,0,0,17.8
+266645,0,0,0,17.8
+266646,0,0,0,17.8
+266647,0,0,0,17.8
+266648,0,0,0,17.8
+266649,339104.002,262962.548,0,17.8
+266650,0,0,0,17.8
+266651,0,0,0,17.8
+266652,0,0,0,17.8
+266653,0,369174.5897,0,17.8
+266654,0,0,0,17.8
+266655,0,0,0,17.8
+266656,0,0,0,17.8
+266657,0,0,0,17.8
+266658,0,262902.6482,0,17.8
+266659,0,0,0,17.8
+266660,0,0,0,17.8
+266661,0,0,0,17.8
+266662,0,0,0,17.8
+266663,0,0,0,17.8
+266664,0,0,0,17.8
+266665,0,0,0,17.8
+266666,0,0,0,17.8
+266667,0,0,0,17.8
+266668,0,0,657533.6214,17.8
+266669,0,0,0,17.8
+266670,0,0,0,17.8
+266671,0,0,0,17.8
+266672,0,0,0,17.8
+266673,0,0,0,17.8
+266674,0,0,0,17.8
+266675,0,8845.209619,0,17.8
+266676,0,73771.49175,0,17.8
+266677,0,36576.67371,0,17.8
+266678,0,65751.02936,0,17.8
+266679,0,56383.60379,0,17.8
+266680,0,61157.53382,0,17.8
+266681,0,61710.90882,0,17.8
+266682,0,62825.52933,0,17.8
+266683,0,63700.53528,0,17.8
+266684,339117.3851,64381.91224,0,17.8
+266685,0,65588.49999,0,17.8
+266686,0,66284.33806,0,17.8
+266687,0,66958.35443,0,17.8
+266688,0,436850.7101,0,17.8
+266689,0,68450.71286,0,17.8
+266690,0,69008.05508,0,17.8
+266691,0,69722.02453,0,17.8
+266692,0,70551.34468,0,17.8
+266693,0,70781.97602,0,17.8
+266694,0,71737.59704,0,17.8
+266695,0,72200.73578,0,17.8
+266696,0,73020.07375,0,17.8
+266697,0,71631.18441,0,17.8
+266698,0,72411.23493,0,17.8
+266699,0,72855.8685,0,17.8
+266700,0,0,0,20
+266701,0,995288.2324,658087.0508,20
+266702,715.76545,13674.73942,0,20
+266703,579.0626145,31634.73479,0,20
+266704,516.8329615,212406.599,0,20
+266705,594.4710014,203602.4464,0,20
+266706,594.4709713,181509.7522,0,20
+266707,609.8221204,179137.4185,0,20
+266708,609.8220076,183921.461,0,20
+266709,625.1169114,183346.4615,0,20
+266710,609.822154,183540.9582,0,20
+266711,625.1172073,183131.6419,0,20
+266712,640.3572821,182562.8431,0,20
+266713,625.1172385,183071.2131,0,20
+266714,640.3571831,181943.2964,0,20
+266715,640.3572912,182530.9454,0,20
+266716,640.3572966,181843.1102,0,20
+266717,1057.724436,181647.7659,0,20
+266718,1092.339377,182090.1655,0,20
+266719,4253.026828,181102.0695,0,20
+266720,3833.579863,181587.7668,0,20
+266721,4030.33621,181094.8273,0,20
+266722,4484.580841,180768.8247,0,20
+266723,4888.089851,181182.7557,0,20
+266724,4926.649757,180506.4449,797.3331556,20
+266725,5475.611256,180714.8564,1906.132132,20
+266726,5513.626538,180491.5133,1420.826961,20
+266727,5914.914662,180065.4602,1664.834675,20
+266728,6077.885814,180688.8737,2026.291493,20
+266729,6357.654194,179412.3459,2026.404428,20
+266730,6519.197584,180446.5803,2264.787885,20
+266731,6796.332264,179572.3214,7497.154195,20
+266732,6926.61527,179645.6481,17678.16233,20
+266733,7071.905359,179759.4521,11291.44301,20
+266734,7231.176692,179865.5599,15422.18823,20
+266735,7474.225944,179616.0272,15428.72434,20
+266736,7519.06366,179916.5551,16443.3177,20
+266737,7625.184971,179468.1117,17414.77073,20
+266738,7804.790057,179348.5196,18309.4312,20
+266739,8031.00912,179628.1464,18318.64094,20
+266740,7932.199176,179186.1358,19745.77611,20
+266741,8300.054411,179258.8276,20404.81797,20
+266742,8117.533683,179072.0986,21294.35948,20
+266743,8552.600774,179088.0608,17855.70017,20
+266744,8371.087012,178905.4532,19153.95322,20
+266745,8609.812901,178843.2365,20447.29756,20
+266746,8736.038332,178630.6891,19174.6789,20
+266747,8915.451544,178442.9298,21747.68944,20
+266748,10235.39956,177937.8222,20481.60908,20
+266749,9757.589672,178012.1465,22410.3231,20
+266750,10126.92741,177711.9938,22424.01328,20
+266751,10528.86402,178166.6637,23074.51569,20
+266752,10415.23097,177608.9984,23088.9827,20
+266753,10908.94374,177159.0721,24374.34498,20
+266754,10938.29044,177915.1025,24390.44931,20
+266755,11190.07419,177100.3198,24406.53742,20
+266756,11314.56755,177345.1553,25690.49084,20
+266757,11595.69552,177380.4127,25708.29015,20
+266758,11674.90728,176764.8694,25726.07123,20
+266759,11731.50056,177284.8162,27009.04545,20
+266760,12062.01427,176346.4167,27028.61024,21
+266761,8663.872343,168057.7673,4480.884057,21
+266762,8218.777819,166839.486,0,21
+266763,8218.777859,166031.537,0,21
+266764,8095.758059,165788.9369,0,21
+266765,8325.293667,165158.6606,0,21
+266766,8212.81484,165044.8655,0,21
+266767,8179.630377,164525.8662,0,21
+266768,8211.296447,163817.7351,0,21
+266769,8326.072793,163902.0039,0,21
+266770,8177.724808,163657.288,0,21
+266771,8294.290483,163449.451,0,21
+266772,8308.892851,163109.8645,0,21
+266773,8159.331869,162563.2656,0,21
+266774,8291.478841,162286.3216,0,21
+266775,8156.906331,162299.2663,0,21
+266776,8272.319163,161324.6396,0,21
+266777,8147.722845,160915.5213,0,21
+266778,8260.142737,161410.884,0,21
+266779,7991.189856,160402.2998,0,21
+266780,8370.46742,159902.8688,0,21
+266781,7863.376582,159602.3158,0,21
+266782,8106.305422,158919.7911,0,21
+266783,8072.134584,159233.2314,0,21
+266784,7960.096114,157804.512,0,21
+266785,7944.300736,158235.6281,0,21
+266786,7930.238325,157523.0655,0,21
+266787,7809.211597,157660.3939,0,21
+266788,7907.951388,156669.9343,0,21
+266789,7790.619942,156804.169,0,21
+266790,7748.014283,156315.8859,0,21
+266791,7526.796073,156108.8335,0,21
+266792,7586.8741,155343.5779,0,21
+266793,7330.962957,155714.5611,0,21
+266794,7181.448588,154379.9053,0,21
+266795,7161.402848,155026.138,0,21
+266796,6923.034408,154284.6851,0,21
+266797,6899.80629,154126.0543,0,21
+266798,6525.324617,153486.8983,0,21
+266799,5968.811266,153328.8946,0,21
+266800,5300.879375,153297.0777,0,21
+266801,5285.332796,152457.0239,0,21
+266802,4904.306638,152362.7981,0,21
+266803,4988.780726,152111.8004,0,21
+266804,4589.697989,151913.3011,0,21
+266805,4318.504038,151203.283,0,21
+266806,4299.645183,151055.5007,0,21
+266807,3752.061354,150651.7621,0,21
+266808,3851.202547,150517.8428,0,21
+266809,3451.997908,150073.2097,0,21
+266810,3265.686556,149858.0118,0,21
+266811,3010.585233,149414.8792,0,21
+266812,2809.224431,148889.575,0,21
+266813,2535.142744,148701.2827,0,21
+266814,2333.959434,148403.8635,0,21
+266815,2172.496664,148051.2578,0,21
+266816,2299.665895,147637.1871,0,21
+266817,2137.85201,147406.0889,0,21
+266818,1989.052235,147032.361,0,21
+266819,2078.992235,146268.1942,0,21
+266820,1938.666297,145819.8782,0,21
+266821,0,84924.77453,0,21
+266822,0,81985.7586,0,21
+266823,0,80614.78429,0,21
+266824,0,80274.10829,0,21
+266825,0,79587.99763,0,21
+266826,0,78685.57394,0,21
+266827,0,78362.17949,0,21
+266828,0,77420.48747,0,21
+266829,0,77166.15331,0,21
+266830,0,76239.50645,0,21
+266831,0,76491.26881,0,21
+266832,0,75253.67499,0,21
+266833,0,75214.71379,0,21
+266834,0,74409.35214,0,21
+266835,0,74183.11243,0,21
+266836,0,73460.60257,0,21
+266837,0,73230.63942,0,21
+266838,0,72595.99108,0,21
+266839,0,72396.6705,0,21
+266840,0,71477.53018,0,21
+266841,0,71559.5849,0,21
+266842,0,70907.28814,0,21
+266843,0,70296.31956,0,21
+266844,0,70149.45899,0,21
+266845,0,69613.12456,0,21
+266846,0,69218.29275,0,21
+266847,0,68833.26432,0,21
+266848,0,68295.74532,0,21
+266849,0,67865.70946,0,21
+266850,0,67832.42251,0,21
+266851,0,66775.77886,0,21
+266852,0,66524.04224,0,21
+266853,0,65616.92983,0,21
+266854,0,65147.53409,0,21
+266855,0,64551.57939,0,21
+266856,0,63876.19045,0,21
+266857,0,63177.15426,0,21
+266858,0,62613.98626,0,21
+266859,0,61815.10446,0,21
+266860,0,61546.62332,0,21
+266861,0,60361.51827,0,21
+266862,0,60040.89869,0,21
+266863,0,59290.98852,0,21
+266864,0,58669.76833,0,21
+266865,0,57710.96781,0,21
+266866,0,57283.72374,0,21
+266867,0,56873.02088,0,21
+266868,0,56224.36547,0,21
+266869,0,55750.42608,0,21
+266870,0,55127.45069,0,21
+266871,0,54404.0309,0,21
+266872,0,53626.24706,0,21
+266873,0,53132.86716,0,21
+266874,0,52349.56949,0,21
+266875,0,52002.35699,0,21
+266876,0,51280.03778,0,21
+266877,0,50216.77012,0,21
+266878,0,50011.59542,0,21
+266879,0,49054.80793,0,21
+266880,0,48494.43626,0,21
+266881,0,47660.67264,0,21
+266882,0,46750.42379,0,21
+266883,0,45797.3484,0,21
+266884,0,45525.41143,0,21
+266885,0,43986.2072,0,21
+266886,0,43677.7873,0,21
+266887,0,42556.12485,0,21
+266888,0,41934.188,0,21
+266889,0,40869.48287,0,21
+266890,0,40213.81738,0,21
+266891,0,39419.63591,0,21
+266892,0,38509.69965,0,21
+266893,0,37615.83758,0,21
+266894,0,37080.66224,0,21
+266895,0,35773.31497,0,21
+266896,0,35403.10961,0,21
+266897,0,34129.36051,0,21
+266898,0,33525.1503,0,21
+266899,0,32613.62584,0,21
+266900,0,31890.16543,0,21
+266901,0,30654.59441,0,21
+266902,0,30210.84477,0,21
+266903,0,29343.5866,0,21
+266904,0,28046.22039,0,21
+266905,0,27925.55099,0,21
+266906,0,26090.00723,0,21
+266907,0,26119.07504,0,21
+266908,0,24918.04103,0,21
+266909,0,23794.61881,0,21
+266910,0,23353.3377,0,21
+266911,0,22517.15473,0,21
+266912,0,22255.59846,0,21
+266913,0,21721.40124,0,21
+266914,0,21459.57621,0,21
+266915,0,20931.69304,0,21
+266916,0,20718.70071,0,21
+266917,0,20315.98472,0,21
+266918,0,19773.80445,0,21
+266919,0,19853.27151,0,21
+266920,0,19332.08212,0,21
+266921,0,19164.95027,0,21
+266922,0,18514.87055,0,21
+266923,0,18899.44898,0,21
+266924,0,17944.54168,0,21
+266925,0,18094.98828,0,21
+266926,0,17891.28955,0,21
+266927,0,17349.34309,0,21
+266928,0,17583.30687,0,21
+266929,0,16940.3997,0,21
+266930,0,16877.78592,0,21
+266931,0,16655.13439,0,21
+266932,0,16787.84816,0,21
+266933,0,16225.97478,0,21
+266934,0,16020.00705,0,21
+266935,0,16336.72237,0,21
+266936,0,15491.42455,0,21
+266937,0,15962.63522,0,21
+266938,0,15526.77342,0,21
+266939,0,15316.03497,0,21
+266940,0,15362.0774,0,21
+266941,0,20751.32806,0,21
+266942,0,20455.20882,0,21
+266943,0,20688.97506,0,21
+266944,0,20435.56451,0,21
+266945,0,20195.9894,0,21
+266946,0,20540.27007,0,21
+266947,0,20023.02896,0,21
+266948,0,20379.43162,0,21
+266949,0,19923.3463,0,21
+266950,0,20183.54228,0,21
+266951,0,20002.65427,0,21
+266952,0,19718.26151,0,21
+266953,0,20214.03568,0,21
+266954,0,19720.75042,0,21
+266955,0,20028.1663,0,21
+266956,0,19567.63739,0,21
+266957,0,19685.56071,0,21
+266958,0,19901.66901,0,21
+266959,0,19781.77295,0,21
+266960,0,19514.70004,0,21
+266961,0,19758.00105,0,21
+266962,0,19784.78936,0,21
+266963,0,19363.28732,0,21
+266964,0,20009.27166,0,21
+266965,0,19216.47752,0,21
+266966,0,20119.11794,0,21
+266967,0,19333.81983,0,21
+266968,0,19725.45342,0,21
+266969,0,19327.19779,0,21
+266970,0,19462.32089,0,21
+266971,0,19077.50902,0,21
+266972,0,19406.39932,0,21
+266973,0,18646.91963,0,21
+266974,0,19007.26119,0,21
+266975,0,18630.93773,0,21
+266976,0,18415.8953,0,21
+266977,0,18708.10531,0,21
+266978,0,17809.76032,0,21
+266979,0,18210.08893,0,21
+266980,0,17736.79074,0,21
+266981,0,17736.2397,0,21
+266982,0,17578.82935,0,21
+266983,0,17106.60469,0,21
+266984,0,17315.45399,0,21
+266985,0,17099.37232,0,21
+266986,0,16547.55807,0,21
+266987,0,16843.20879,0,21
+266988,0,16337.48214,0,21
+266989,0,16282.82085,0,21
+266990,0,16080.29297,0,21
+266991,0,15653.73473,0,21
+266992,0,15829.9264,0,21
+266993,0,15294.47943,0,21
+266994,0,15401.84571,0,21
+266995,0,14868.86574,0,21
+266996,0,15190.11855,0,21
+266997,0,14471.36892,0,21
+266998,0,14556.66404,0,21
+266999,0,14049.21971,0,21
+267000,0,13789.87347,0,21
+267001,0,8631.221543,0,21
+267002,0,8766.665934,0,21
+267003,0,8498.940358,0,21
+267004,0,8531.147622,0,21
+267005,0,8707.427149,0,21
+267006,0,8572.36195,0,21
+267007,0,8449.416247,0,21
+267008,0,8707.427226,0,21
+267009,0,8547.56689,0,21
+267010,0,8628.390369,0,21
+267011,0,8544.872393,0,21
+267012,0,8623.723396,0,21
+267013,0,8682.632209,0,21
+267014,0,8465.835553,0,21
+267015,0,8458.072404,0,21
+267016,0,8857.115821,0,21
+267017,0,8203.041549,0,21
+267018,0,8778.220296,0,21
+267019,0,8441.851122,0,21
+267020,0,8603.595445,0,21
+267021,0,8339.087808,0,21
+267022,0,8578.733378,0,21
+267023,0,8458.270338,0,21
+267024,0,8339.923872,0,21
+267025,0,8598.861548,0,21
+267026,0,8429.45489,0,21
+267027,0,8496.934241,0,21
+267028,0,8203.041729,0,21
+267029,0,8587.519339,0,21
+267030,0,8606.42701,0,21
+267031,0,8779.098084,0,21
+267032,0,9006.561032,0,21
+267033,0,8441.606202,0,21
+267034,0,8874.412838,0,21
+267035,0,8424.554639,0,21
+267036,0,8990.141934,0,21
+267037,0,8308.649075,0,21
+267038,0,8710.813905,0,21
+267039,0,8466.713503,0,21
+267040,0,8383.158178,0,21
+267041,0,8612.449481,0,21
+267042,0,8408.088206,0,21
+267043,0,8178.111869,0,21
+267044,0,8408.08822,0,21
+267045,0,8297.738928,0,21
+267046,0,8144.348673,0,21
+267047,0,8399.624722,0,21
+267048,0,8003.580991,0,21
+267049,0,8301.359017,0,21
+267050,0,7961.285386,0,21
+267051,0,8005.44533,0,21
+267052,0,7721.398723,0,21
+267053,0,8143.456838,0,21
+267054,0,7939.693216,0,21
+267055,0,7745.615564,0,21
+267056,0,7689.571038,0,21
+267057,0,7720.616672,0,21
+267058,0,7706.796567,0,21
+267059,0,7540.178015,0,21
+267060,0,7704.102021,0,21
+267061,0,25423.43307,0,21
+267062,0,25956.2387,0,21
+267063,0,25739.90361,0,21
+267064,0,25948.15646,0,21
+267065,0,26203.82165,0,21
+267066,0,25987.96307,0,21
+267067,0,25832.81114,0,21
+267068,0,26081.29424,0,21
+267069,0,25872.67111,0,21
+267070,0,26197.2789,0,21
+267071,0,25710.91369,0,21
+267072,0,26005.14308,0,21
+267073,0,26041.43369,0,21
+267074,0,25790.21376,0,21
+267075,0,26057.62851,0,21
+267076,0,25728.87616,0,21
+267077,0,26078.77757,0,21
+267078,0,25745.07095,0,21
+267079,0,25827.18995,0,21
+267080,0,25745.07069,0,21
+267081,0,25957.75791,0,21
+267082,0,25605.92214,0,21
+267083,0,25942.19271,0,21
+267084,0,25745.07015,0,21
+267085,0,25720.72089,0,21
+267086,0,25737.50391,0,21
+267087,0,25588.54079,0,21
+267088,0,25721.3506,0,21
+267089,0,25566.63727,0,21
+267090,0,25737.50337,0,21
+267091,0,25449.51363,0,21
+267092,0,24723.47432,0,21
+267093,0,24907.40069,0,21
+267094,0,24255.60921,0,21
+267095,0,23871.11658,0,21
+267096,0,23506.32087,0,21
+267097,0,23301.54835,0,21
+267098,0,22414.14106,0,21
+267099,0,22382.90328,0,21
+267100,0,21600.14398,0,21
+267101,0,21474.64008,0,21
+267102,0,20862.63691,0,21
+267103,0,20161.15557,0,21
+267104,0,20080.50267,0,21
+267105,0,19392.88981,0,21
+267106,0,18905.85778,0,21
+267107,0,18442.42825,0,21
+267108,0,17653.2826,0,21
+267109,0,17563.57766,0,21
+267110,0,16730.54449,0,21
+267111,0,16202.45881,0,21
+267112,0,15810.66026,0,21
+267113,0,15226.26681,0,21
+267114,0,14531.60819,0,21
+267115,0,13981.82391,0,21
+267116,0,13529.20503,0,21
+267117,0,12924.13785,0,21
+267118,0,12355.42693,0,21
+267119,0,11491.52552,0,21
+267120,0,11308.92962,0,21
+267121,0,1049.673054,0,21
+267122,0,919.6619539,0,21
+267123,0,891.2720302,0,21
+267124,0,778.7172185,0,21
+267125,0,759.2401014,0,21
+267126,0,630.4144262,0,21
+267127,0,595.7786127,0,21
+267128,0,507.6649807,0,21
+267129,0,469.0055009,0,21
+267130,0,343.674123,0,21
+267131,0,308.0974376,0,21
+267132,0,208.2586897,0,21
+267133,0,191.0155463,0,21
+267134,0,131.9802952,0,21
+267135,0,141.5919517,0,21
+267136,0,102.84561,0,21
+267137,0,102.8456094,0,21
+267138,0,63.13604636,0,21
+267139,0,63.13604615,0,21
+267140,0,42.7767997,0,21
+267141,0,21.90588009,0,21
+267142,0,0,0,21
+267143,0,0,0,21
+267144,0,0,0,21
+267145,0,0,0,21
+267146,0,0,0,21
+267147,0,0,0,21
+267148,0,0,0,21
+267149,0,0,0,21
+267150,0,0,0,21
+267151,0,0,0,21
+267152,0,0,0,21
+267153,0,0,0,21
+267154,0,0,0,21
+267155,0,0,0,21
+267156,0,0,0,21
+267157,0,0,0,21
+267158,0,0,0,21
+267159,0,0,0,21
+267160,0,0,0,21
+267161,0,0,0,21
+267162,0,0,0,21
+267163,0,0,0,21
+267164,0,0,0,21
+267165,0,0,0,21
+267166,0,0,0,21
+267167,0,0,0,21
+267168,0,0,0,21
+267169,0,0,0,21
+267170,0,0,0,21
+267171,0,0,0,21
+267172,0,0,0,21
+267173,0,0,0,21
+267174,0,0,0,21
+267175,0,0,0,21
+267176,0,0,0,21
+267177,0,0,0,21
+267178,0,0,0,21
+267179,0,0,0,21
+267180,0,0,0,21
+267181,0,0,0,21
+267182,0,0,0,21
+267183,0,0,0,21
+267184,0,0,0,21
+267185,0,0,0,21
+267186,0,0,0,21
+267187,0,0,0,21
+267188,0,0,0,21
+267189,0,0,0,21
+267190,0,0,0,21
+267191,0,0,0,21
+267192,0,0,0,21
+267193,0,0,0,21
+267194,0,0,0,21
+267195,0,0,0,21
+267196,0,0,0,21
+267197,0,0,0,21
+267198,0,0,0,21
+267199,0,0,0,21
+267200,0,0,0,21
+267201,0,0,0,21
+267202,0,0,0,21
+267203,0,0,0,21
+267204,0,0,0,21
+267205,0,0,0,21
+267206,0,0,0,21
+267207,0,0,0,21
+267208,0,0,0,21
+267209,0,0,0,21
+267210,0,0,0,21
+267211,0,0,0,21
+267212,0,0,0,21
+267213,0,0,0,21
+267214,0,0,0,21
+267215,0,0,0,21
+267216,0,0,0,21
+267217,0,0,0,21
+267218,0,0,0,21
+267219,0,0,0,21
+267220,0,0,0,21
+267221,0,0,0,21
+267222,0,0,0,21
+267223,0,0,0,21
+267224,0,0,0,21
+267225,0,0,0,21
+267226,0,0,0,21
+267227,0,0,0,21
+267228,0,0,0,21
+267229,0,0,0,21
+267230,0,0,0,21
+267231,0,0,0,21
+267232,0,0,0,21
+267233,0,0,0,21
+267234,0,0,0,21
+267235,0,0,0,21
+267236,0,0,0,21
+267237,0,0,0,21
+267238,0,0,0,21
+267239,0,0,0,21
+267240,0,0,0,21
+267241,0,0,0,21
+267242,0,0,0,21
+267243,0,0,0,21
+267244,0,0,0,21
+267245,0,0,0,21
+267246,0,0,0,21
+267247,0,0,0,21
+267248,0,0,0,21
+267249,0,0,0,21
+267250,0,0,0,21
+267251,0,0,0,21
+267252,0,0,0,21
+267253,0,0,0,21
+267254,0,0,0,21
+267255,0,0,0,21
+267256,0,0,0,21
+267257,0,0,0,21
+267258,0,0,0,21
+267259,0,0,0,21
+267260,0,0,0,21
+267261,0,0,0,21
+267262,0,0,0,21
+267263,0,0,0,21
+267264,0,0,0,21
+267265,0,0,0,21
+267266,0,0,0,21
+267267,0,0,0,21
+267268,0,0,0,21
+267269,0,0,0,21
+267270,0,0,0,21
+267271,0,0,0,21
+267272,0,0,0,21
+267273,0,0,0,21
+267274,0,0,0,21
+267275,0,0,0,21
+267276,0,0,0,21
+267277,0,0,0,21
+267278,0,0,0,21
+267279,0,0,0,21
+267280,0,0,0,21
+267281,0,0,0,21
+267282,0,0,0,21
+267283,0,0,0,21
+267284,0,0,0,21
+267285,0,0,0,21
+267286,0,0,0,21
+267287,0,0,0,21
+267288,0,0,0,21
+267289,0,0,0,21
+267290,0,0,0,21
+267291,0,0,0,21
+267292,0,0,0,21
+267293,0,0,0,21
+267294,0,0,0,21
+267295,0,0,0,21
+267296,0,0,0,21
+267297,0,0,0,21
+267298,0,0,0,21
+267299,0,0,0,21
+267300,0,0,0,21
+267301,0,0,0,21
+267302,0,0,0,21
+267303,0,0,0,21
+267304,0,0,0,21
+267305,0,0,0,21
+267306,0,0,0,21
+267307,0,0,0,21
+267308,0,0,0,21
+267309,0,0,0,21
+267310,0,0,0,21
+267311,0,0,0,21
+267312,0,0,0,21
+267313,0,0,0,21
+267314,0,0,0,21
+267315,0,0,0,21
+267316,0,0,0,21
+267317,0,0,0,21
+267318,0,0,0,21
+267319,0,0,0,21
+267320,0,0,0,21
+267321,0,0,0,21
+267322,0,0,0,21
+267323,0,0,0,21
+267324,0,0,0,21
+267325,0,0,0,21
+267326,0,0,0,21
+267327,0,0,0,21
+267328,0,0,0,21
+267329,0,0,0,21
+267330,0,0,0,21
+267331,0,0,0,21
+267332,0,0,0,21
+267333,0,0,0,21
+267334,0,0,0,21
+267335,0,0,0,21
+267336,0,0,0,21
+267337,0,0,0,21
+267338,0,0,0,21
+267339,0,0,0,21
+267340,0,0,0,21
+267341,0,0,0,21
+267342,0,0,0,21
+267343,0,0,0,21
+267344,0,0,0,21
+267345,0,0,0,21
+267346,0,0,0,21
+267347,0,0,0,21
+267348,0,0,0,21
+267349,0,0,0,21
+267350,0,0,0,21
+267351,0,0,0,21
+267352,0,0,0,21
+267353,0,0,0,21
+267354,0,0,0,21
+267355,0,0,0,21
+267356,0,0,0,21
+267357,0,0,0,21
+267358,0,0,0,21
+267359,0,0,0,21
+267360,0,0,0,21
+267361,0,0,0,21
+267362,0,0,0,21
+267363,0,0,0,21
+267364,0,0,0,21
+267365,0,0,0,21
+267366,0,0,0,21
+267367,0,0,0,21
+267368,0,0,0,21
+267369,0,0,0,21
+267370,0,0,0,21
+267371,0,0,0,21
+267372,0,0,0,21
+267373,0,0,0,21
+267374,0,0,0,21
+267375,0,0,0,21
+267376,0,0,0,21
+267377,0,0,0,21
+267378,0,871.5391609,0,21
+267379,0,1426.15643,0,21
+267380,0,1161.433832,0,21
+267381,0,1637.088176,0,21
+267382,0,1656.852714,0,21
+267383,0,1835.621902,0,21
+267384,0,2003.402748,0,21
+267385,0,2179.72299,0,21
+267386,0,2354.907536,0,21
+267387,0,2364.433392,0,21
+267388,0,2683.261223,0,21
+267389,0,2711.547339,0,21
+267390,0,2864.954548,0,21
+267391,0,3197.471754,0,21
+267392,0,3045.598135,0,21
+267393,0,3367.173615,0,21
+267394,0,3385.615928,0,21
+267395,0,3695.078691,0,21
+267396,0,3922.782095,0,21
+267397,0,4009.079315,0,21
+267398,0,4078.629104,0,21
+267399,0,4404.886424,0,21
+267400,0,4608.815083,0,21
+267401,0,4485.050353,0,21
+267402,0,4987.013285,0,21
+267403,0,4840.729794,0,21
+267404,0,5193.684591,0,21
+267405,0,5225.710574,0,21
+267406,0,5417.032986,0,21
+267407,0,5589.991752,0,21
+267408,0,5635.668816,0,21
+267409,0,5779.920492,0,21
+267410,0,6014.391847,0,21
+267411,0,6157.699628,0,21
+267412,0,6185.315935,0,21
+267413,0,6390.429342,0,21
+267414,0,6635.679791,0,21
+267415,0,6792.520727,0,21
+267416,0,6847.0513,0,21
+267417,0,7035.412393,0,21
+267418,0,7062.407426,0,21
+267419,0,7424.886078,0,21
+267420,0,7444.157413,0,21
+267421,0,11747.66783,0,21
+267422,0,18347.38332,0,21
+267423,0,19071.43423,0,21
+267424,0,18513.5826,0,21
+267425,0,19230.93051,0,21
+267426,0,19785.40202,0,21
+267427,0,21218.85557,0,21
+267428,0,22716.069,0,21
+267429,0,22532.21839,0,21
+267430,0,23353.64422,0,21
+267431,0,23983.59191,0,21
+267432,0,24449.52747,0,21
+267433,0,25215.2997,0,21
+267434,0,25317.38294,0,21
+267435,0,26448.03585,0,21
+267436,0,26366.85201,0,21
+267437,0,27416.09567,0,21
+267438,0,27619.56945,0,21
+267439,0,28098.72267,0,21
+267440,0,28884.94954,0,21
+267441,0,28916.8369,0,21
+267442,0,29902.87496,0,21
+267443,0,30149.5807,0,21
+267444,0,30474.51741,0,21
+267445,0,31201.71223,0,21
+267446,0,31461.20081,0,21
+267447,0,32201.29831,0,21
+267448,0,32295.86716,0,21
+267449,0,33319.20732,0,21
+267450,0,33165.32635,0,21
+267451,0,33756.07858,0,21
+267452,0,34520.08438,0,21
+267453,0,34913.90437,0,21
+267454,0,35278.57652,0,21
+267455,0,35796.03679,0,21
+267456,0,36296.57933,0,21
+267457,0,36689.69601,0,21
+267458,0,37369.37942,0,21
+267459,0,37496.30983,0,21
+267460,0,38256.87988,0,21
+267461,0,38694.0059,0,21
+267462,0,39073.85415,0,21
+267463,0,39429.225,0,21
+267464,0,40127.05507,0,21
+267465,0,40421.64127,0,21
+267466,0,40960.26323,0,21
+267467,0,41401.2156,0,21
+267468,0,41881.67112,0,21
+267469,0,42132.66444,0,21
+267470,0,42825.89738,0,21
+267471,0,43128.80658,0,21
+267472,0,43965.23844,0,21
+267473,0,44060.39854,0,21
+267474,0,44392.22803,0,21
+267475,0,45286.97124,0,21
+267476,0,45591.85212,0,21
+267477,0,45830.89684,0,21
+267478,0,46580.71795,0,21
+267479,0,46819.52475,0,21
+267480,0,47622.28615,0,21
+267481,0,47810.83359,0,21
+267482,0,47980.48765,0,21
+267483,0,48674.51752,0,21
+267484,0,48844.29178,0,21
+267485,0,49384.28488,0,21
+267486,0,49593.92395,0,21
+267487,0,50391.59924,0,21
+267488,0,50011.48555,0,21
+267489,0,51313.86912,0,21
+267490,0,50740.11054,0,21
+267491,0,51982.19027,0,21
+267492,0,51988.22904,0,21
+267493,0,52400.05258,0,21
+267494,0,52647.37711,0,21
+267495,0,53138.89676,0,21
+267496,0,53506.05551,0,21
+267497,0,53846.09171,0,21
+267498,0,54302.96884,0,21
+267499,0,54608.06173,0,21
+267500,0,54791.22086,0,21
+267501,0,55508.08117,0,21
+267502,0,55587.87812,0,21
+267503,0,56225.50769,0,21
+267504,0,56272.43877,0,21
+267505,0,56921.79495,0,21
+267506,0,56897.84895,0,21
+267507,0,57573.08396,0,21
+267508,0,57969.01703,0,21
+267509,0,58009.91269,0,21
+267510,0,58740.89033,0,21
+267511,0,58712.97562,0,21
+267512,0,58806.6686,0,21
+267513,0,59388.66226,0,21
+267514,0,59245.82616,0,21
+267515,0,59872.72578,0,21
+267516,0,60021.66904,0,21
+267517,0,60147.94035,0,21
+267518,0,60718.21038,0,21
+267519,0,61086.84745,0,21
+267520,0,60906.60291,0,21
+267521,0,61718.93407,0,21
+267522,0,61712.81309,0,21
+267523,0,62078.50702,0,21
+267524,0,62316.25648,0,21
+267525,0,62497.18221,0,21
+267526,0,62910.14065,0,21
+267527,0,62952.36051,0,21
+267528,0,63646.47628,0,21
+267529,0,63688.97999,0,21
+267530,0,63717.36441,0,21
+267531,0,63997.25956,0,21
+267532,0,64794.05008,0,21
+267533,0,64399.38523,0,21
+267534,0,64917.31752,0,21
+267535,0,65068.38114,0,21
+267536,0,65551.35004,0,21
+267537,0,65733.58147,0,21
+267538,0,65743.35906,0,21
+267539,0,66005.4757,0,21
+267540,0,66272.93927,0,21
+267541,0,68304.47641,0,21
+267542,0,69181.73931,0,21
+267543,0,69606.25717,0,21
+267544,0,70268.33464,0,21
+267545,0,70438.83532,0,21
+267546,0,71003.75713,0,21
+267547,0,70637.50227,0,21
+267548,0,71178.58427,0,21
+267549,0,71556.7859,0,21
+267550,0,71506.29914,0,21
+267551,0,72536.38692,0,21
+267552,0,72219.90044,0,21
+267553,0,73202.40583,0,21
+267554,0,73415.82118,0,21
+267555,0,73784.58789,0,21
+267556,0,74297.08519,0,21
+267557,0,74960.0365,0,21
+267558,0,74786.72512,0,21
+267559,0,75653.95956,0,21
+267560,0,75754.14701,0,21
+267561,0,76384.46135,0,21
+267562,0,76634.84736,0,21
+267563,0,77304.39274,0,21
+267564,0,77477.26022,0,21
+267565,0,77879.87663,0,21
+267566,0,78498.04565,0,21
+267567,0,78688.65147,0,21
+267568,0,79325.32041,0,21
+267569,0,79595.58356,0,21
+267570,0,79911.39747,0,21
+267571,0,80580.99092,0,21
+267572,0,80564.9312,0,21
+267573,0,81472.47602,0,21
+267574,0,81393.11667,0,21
+267575,0,82089.15007,0,21
+267576,0,82391.90489,0,21
+267577,0,82908.51941,0,21
+267578,0,83219.0984,0,21
+267579,0,83593.40341,0,21
+267580,0,83599.07147,0,21
+267581,0,84886.9896,0,21
+267582,0,84632.91266,0,21
+267583,0,85024.63041,0,21
+267584,0,85711.36661,0,21
+267585,0,86077.28449,0,21
+267586,0,86195.1791,0,21
+267587,0,86816.12062,0,21
+267588,0,87094.58116,0,21
+267589,0,87663.99592,0,21
+267590,0,87900.44296,0,21
+267591,0,88544.63525,0,21
+267592,0,88881.70124,0,21
+267593,0,89393.06302,0,21
+267594,0,89797.90306,0,21
+267595,0,90089.16068,0,21
+267596,0,90418.50306,0,21
+267597,0,91119.50185,0,21
+267598,0,91056.00894,0,21
+267599,0,91993.73382,0,21
+267600,0,91940.89721,0,21
+267601,0,92968.16777,0,21
+267602,0,93328.27954,0,21
+267603,0,93675.0656,0,21
+267604,0,94490.91981,0,21
+267605,0,94947.33515,0,21
+267606,0,95103.6634,0,21
+267607,0,95956.93541,0,21
+267608,0,96125.2261,0,21
+267609,0,96707.35624,0,21
+267610,0,97180.50326,0,21
+267611,0,97632.58843,0,21
+267612,0,98087.08663,0,21
+267613,0,98336.1931,0,21
+267614,0,99373.52215,0,21
+267615,0,99198.59712,0,21
+267616,0,99907.54955,0,21
+267617,0,100652.6185,0,21
+267618,0,100720.5918,0,21
+267619,0,101243.7221,0,21
+267620,153.2839419,101833.3222,0,21
+267621,1255.785445,101944.2569,0,21
+267622,855.2932462,103101.7217,0,21
+267623,1123.458012,102770.1938,0,21
+267624,1255.785439,103952.2467,0,21
+267625,1517.452772,103693.5279,0,21
+267626,1517.452748,104847.856,0,21
+267627,1775.626444,104837.626,0,21
+267628,1903.545204,104994.521,0,21
+267629,2030.745354,106483.8956,0,21
+267630,2157.264881,105903.859,0,21
+267631,2283.137403,106627.9047,0,21
+267632,2408.392746,107004.3032,0,21
+267633,2657.156295,107451.9117,0,21
+267634,2657.156255,107711.1057,0,21
+267635,2903.740179,108098.13,0,21
+267636,2903.740218,108456.1834,0,21
+267637,3148.297579,108878.6207,0,21
+267638,3269.857399,108763.8623,0,21
+267639,3390.957567,109988.1134,0,21
+267640,3511.610971,109403.1636,0,21
+267641,3631.830613,110288.5985,0,21
+267642,3751.627568,110367.0094,0,21
+267643,3989.995865,110332.3364,0,21
+267644,3989.996003,110423.1259,0,21
+267645,4108.587341,110447.0084,0,21
+267646,4344.628753,111030.8658,0,21
+267647,4344.628728,111288.0676,0,21
+267648,4579.20287,111458.373,0,21
+267649,4579.202855,111863.7259,0,21
+267650,4812.368796,112075.8133,0,21
+267651,4812.368802,112490.7346,0,21
+267652,5044.179835,112634.9376,0,21
+267653,5044.179925,113057.9446,0,21
+267654,5274.68463,113603.4834,0,21
+267655,5274.684575,113808.6338,0,21
+267656,5503.927078,114133.3911,0,21
+267657,5503.927082,114720.4554,0,21
+267658,5731.947792,114707.0705,0,21
+267659,5845.511755,114792.9938,0,21
+267660,5845.51178,115581.6401,0,21
+267661,0,0,0,21
+267662,0,0,0,21
+267663,0,0,0,21
+267664,0,0,0,21
+267665,0,0,694473.3013,21
+267666,329067.3934,369192.3304,0,21
+267667,0,0,0,21
+267668,0,0,0,21
+267669,0,0,0,21
+267670,0,0,0,21
+267671,0,0,0,21
+267672,0,0,0,21
+267673,0,0,0,21
+267674,0,0,0,21
+267675,0,0,0,21
+267676,0,0,0,21
+267677,0,0,0,21
+267678,0,0,0,21
+267679,0,0,0,21
+267680,0,0,0,21
+267681,0,0,0,21
+267682,0,0,0,21
+267683,0,0,0,21
+267684,0,0,0,21
+267685,0,0,0,21
+267686,0,0,0,21
+267687,0,0,0,21
+267688,0,0,0,21
+267689,0,0,0,21
+267690,0,0,0,21
+267691,0,0,0,21
+267692,0,0,0,21
+267693,0,0,0,21
+267694,0,0,0,21
+267695,0,0,0,21
+267696,0,0,0,21
+267697,0,0,0,21
+267698,0,0,0,21
+267699,0,0,692050.1063,21
+267700,0,0,0,21
+267701,331493.478,369225.3735,0,21
+267702,0,0,0,21
+267703,0,0,0,21
+267704,0,0,0,21
+267705,0,0,0,21
+267706,0,0,0,21
+267707,0,0,0,21
+267708,0,0,0,21
+267709,0,0,0,21
+267710,0,0,0,21
+267711,0,0,0,21
+267712,0,0,0,21
+267713,0,0,0,21
+267714,0,0,0,21
+267715,0,0,0,21
+267716,0,0,0,21
+267717,0,0,0,21
+267718,0,0,0,21
+267719,0,0,0,21
+267720,0,0,0,15.6
+267721,0,0,0,15.6
+267722,0,0,0,15.6
+267723,0,0,0,15.6
+267724,0,0,0,15.6
+267725,0,0,0,15.6
+267726,0,0,0,15.6
+267727,0,0,0,15.6
+267728,0,0,0,15.6
+267729,0,0,0,15.6
+267730,0,0,0,15.6
+267731,0,0,0,15.6
+267732,0,0,0,15.6
+267733,0,0,689532.9923,15.6
+267734,0,0,0,15.6
+267735,0,0,0,15.6
+267736,331098.8921,369240.7488,0,15.6
+267737,0,0,0,15.6
+267738,0,0,0,15.6
+267739,0,0,0,15.6
+267740,0,0,0,15.6
+267741,0,0,0,15.6
+267742,0,0,0,15.6
+267743,0,0,0,15.6
+267744,0,0,0,15.6
+267745,0,0,0,15.6
+267746,0,0,0,15.6
+267747,0,0,0,15.6
+267748,0,0,0,15.6
+267749,0,0,0,15.6
+267750,0,0,0,15.6
+267751,0,0,0,15.6
+267752,0,0,0,15.6
+267753,0,0,0,15.6
+267754,0,0,0,15.6
+267755,0,0,0,15.6
+267756,0,0,0,15.6
+267757,0,0,0,15.6
+267758,0,0,0,15.6
+267759,0,0,0,15.6
+267760,0,0,0,15.6
+267761,0,0,0,15.6
+267762,0,0,0,15.6
+267763,0,0,0,15.6
+267764,0,0,0,15.6
+267765,0,0,0,15.6
+267766,0,0,0,15.6
+267767,0,0,687040.7374,15.6
+267768,0,0,0,15.6
+267769,0,0,0,15.6
+267770,0,0,0,15.6
+267771,333102.0725,369235.5041,0,15.6
+267772,0,0,0,15.6
+267773,0,0,0,15.6
+267774,0,0,0,15.6
+267775,0,0,0,15.6
+267776,0,0,0,15.6
+267777,0,0,0,15.6
+267778,0,0,0,15.6
+267779,0,0,0,15.6
+267780,0,0,0,15.6
+267781,0,0,0,15.6
+267782,0,74.70098987,0,15.6
+267783,0,0,0,15.6
+267784,0,0,0,15.6
+267785,0,0,0,15.6
+267786,0,0,0,15.6
+267787,0,303.1576075,0,15.6
+267788,0,0,0,15.6
+267789,0,0,0,15.6
+267790,0,0,0,15.6
+267791,0,0,0,15.6
+267792,0,0,0,15.6
+267793,0,0,0,15.6
+267794,0,0,0,15.6
+267795,0,0,0,15.6
+267796,0,0,0,15.6
+267797,0,0,0,15.6
+267798,0,0,0,15.6
+267799,0,0,0,15.6
+267800,0,0,0,15.6
+267801,0,0,684326.5343,15.6
+267802,0,0,0,15.6
+267803,0,0,0,15.6
+267804,0,0,0,15.6
+267805,0,0,0,15.6
+267806,334642.2445,369236.8164,0,15.6
+267807,0,0,0,15.6
+267808,0,0,0,15.6
+267809,0,0,0,15.6
+267810,0,0,0,15.6
+267811,0,0,0,15.6
+267812,0,0,0,15.6
+267813,0,0,0,15.6
+267814,0,0,0,15.6
+267815,0,0,0,15.6
+267816,0,0,0,15.6
+267817,0,0,0,15.6
+267818,0,0,0,15.6
+267819,0,0,0,15.6
+267820,0,0,0,15.6
+267821,0,0,0,15.6
+267822,0,0,0,15.6
+267823,0,0,0,15.6
+267824,0,0,0,15.6
+267825,0,0,0,15.6
+267826,0,0,0,15.6
+267827,0,0,0,15.6
+267828,0,0,0,15.6
+267829,0,0,0,15.6
+267830,0,0,0,15.6
+267831,0,0,0,15.6
+267832,0,0,0,15.6
+267833,0,0,0,15.6
+267834,0,0,0,15.6
+267835,0,0,681923.7332,15.6
+267836,0,0,0,15.6
+267837,0,0,0,15.6
+267838,0,0,0,15.6
+267839,0,0,0,15.6
+267840,0,0,0,15.6
+267841,333281.3134,369239.4322,0,15.6
+267842,0,0,0,15.6
+267843,0,0,0,15.6
+267844,0,0,0,15.6
+267845,0,0,0,15.6
+267846,0,123.1769944,0,15.6
+267847,0,0,0,15.6
+267848,0,0,0,15.6
+267849,0,0,0,15.6
+267850,0,0,0,15.6
+267851,0,0,0,15.6
+267852,0,0,0,15.6
+267853,0,0,0,15.6
+267854,0,0,0,15.6
+267855,0,0,0,15.6
+267856,0,0,0,15.6
+267857,0,0,0,15.6
+267858,0,0,0,15.6
+267859,0,0,0,15.6
+267860,0,0,0,15.6
+267861,0,0,0,15.6
+267862,0,0,0,15.6
+267863,0,0,0,15.6
+267864,0,3.721481119,0,15.6
+267865,0,0,0,15.6
+267866,0,76.98153208,0,15.6
+267867,0,0,0,15.6
+267868,0,0,0,15.6
+267869,0,0,679832.2429,15.6
+267870,0,7.127651027,0,15.6
+267871,0,0,0,15.6
+267872,0,96.47723953,0,15.6
+267873,0,0,0,15.6
+267874,0,0,0,15.6
+267875,0,0,0,15.6
+267876,335143.9113,369242.5737,0,15.6
+267877,0,0,0,15.6
+267878,0,69.53602719,0,15.6
+267879,0,0,0,15.6
+267880,0,0,0,15.6
+267881,0,0,0,15.6
+267882,0,0,0,15.6
+267883,0,0,0,15.6
+267884,0,0,0,15.6
+267885,0,0,0,15.6
+267886,0,0,0,15.6
+267887,0,0,0,15.6
+267888,0,0,0,15.6
+267889,0,0,0,15.6
+267890,0,0,0,15.6
+267891,0,0,0,15.6
+267892,0,0,0,15.6
+267893,0,0,0,15.6
+267894,0,0,0,15.6
+267895,0,0,0,15.6
+267896,0,0,0,15.6
+267897,0,0,0,15.6
+267898,0,0,0,15.6
+267899,0,0,0,15.6
+267900,0,0,0,15.6
+267901,0,0,0,15.6
+267902,0,0,0,15.6
+267903,0,0,677719.4353,15.6
+267904,0,0,0,15.6
+267905,0,0,0,15.6
+267906,0,0,0,15.6
+267907,0,0,0,15.6
+267908,0,0,0,15.6
+267909,0,0,0,15.6
+267910,0,0,0,15.6
+267911,336259.2225,369228.1249,0,15.6
+267912,0,0,0,15.6
+267913,0,0,0,15.6
+267914,0,0,0,15.6
+267915,0,0,0,15.6
+267916,0,0,0,15.6
+267917,0,0,0,15.6
+267918,0,0,0,15.6
+267919,0,0,0,15.6
+267920,0,0,0,15.6
+267921,0,0,0,15.6
+267922,0,0,0,15.6
+267923,0,0,0,15.6
+267924,0,0,0,15.6
+267925,0,0,0,15.6
+267926,0,0,0,15.6
+267927,0,0,0,15.6
+267928,0,0,0,15.6
+267929,0,0,0,15.6
+267930,0,0,0,15.6
+267931,0,0,0,15.6
+267932,0,0,0,15.6
+267933,0,0,0,15.6
+267934,0,0,0,15.6
+267935,0,0,0,15.6
+267936,0,0,0,15.6
+267937,0,0,675193.2849,15.6
+267938,0,0,0,15.6
+267939,0,0,0,15.6
+267940,0,0,0,15.6
+267941,0,0,0,15.6
+267942,0,0,0,15.6
+267943,0,0,0,15.6
+267944,0,0,0,15.6
+267945,0,0,0,15.6
+267946,334695.3521,369192.7012,0,15.6
+267947,0,0,0,15.6
+267948,0,0,0,15.6
+267949,0,0,0,15.6
+267950,0,0,0,15.6
+267951,0,0,0,15.6
+267952,0,3.730905294,0,15.6
+267953,0,0,0,15.6
+267954,0,0,0,15.6
+267955,0,270.5344037,0,15.6
+267956,0,0,0,15.6
+267957,0,0,0,15.6
+267958,0,0,0,15.6
+267959,0,0,0,15.6
+267960,0,0,0,15.6
+267961,0,2.875627559,0,15.6
+267962,0,0,0,15.6
+267963,0,80.76500114,0,15.6
+267964,0,0,0,15.6
+267965,0,0,0,15.6
+267966,0,0,0,15.6
+267967,0,0,0,15.6
+267968,0,308.6279862,0,15.6
+267969,0,0,0,15.6
+267970,0,0,0,15.6
+267971,0,0,673674.9652,15.6
+267972,0,0,0,15.6
+267973,0,0,0,15.6
+267974,0,0,0,15.6
+267975,0,0,0,15.6
+267976,0,0,0,15.6
+267977,0,0,0,15.6
+267978,0,0,0,15.6
+267979,0,0,0,15.6
+267980,0,0,0,15.6
+267981,336165.9102,369164.9147,0,15.6
+267982,0,0,0,15.6
+267983,0,0,0,15.6
+267984,0,0,0,15.6
+267985,0,0,0,15.6
+267986,0,0,0,15.6
+267987,0,0,0,15.6
+267988,0,0,0,15.6
+267989,0,0,0,15.6
+267990,0,0,0,15.6
+267991,0,0,0,15.6
+267992,0,0,0,15.6
+267993,0,0,0,15.6
+267994,0,0,0,15.6
+267995,0,0,0,15.6
+267996,0,0,0,15.6
+267997,0,0,0,15.6
+267998,0,0,0,15.6
+267999,0,0,0,15.6
+268000,0,0,0,15.6
+268001,0,0,0,15.6
+268002,0,0,0,15.6
+268003,0,0,0,15.6
+268004,0,0,0,15.6
+268005,0,0,672848.5871,15.6
+268006,0,0,0,15.6
+268007,0,0,0,15.6
+268008,0,0,0,15.6
+268009,0,0,0,15.6
+268010,0,0,0,15.6
+268011,0,0,0,15.6
+268012,0,0,0,15.6
+268013,0,0,0,15.6
+268014,0,0,0,15.6
+268015,0,0,0,15.6
+268016,337074.0157,369140.4562,0,15.6
+268017,0,0,0,15.6
+268018,0,0,0,15.6
+268019,0,0,0,15.6
+268020,0,0,0,15.6
+268021,0,0,0,15.6
+268022,0,0,0,15.6
+268023,0,0,0,15.6
+268024,0,0,0,15.6
+268025,0,0,0,15.6
+268026,0,0,0,15.6
+268027,0,0,0,15.6
+268028,0,0,0,15.6
+268029,0,0,0,15.6
+268030,0,0,0,15.6
+268031,0,0,0,15.6
+268032,0,0,0,15.6
+268033,0,0,0,15.6
+268034,0,0,0,15.6
+268035,0,0,0,15.6
+268036,0,0,0,15.6
+268037,0,0,0,15.6
+268038,0,0,0,15.6
+268039,0,0,671280.183,15.6
+268040,0,0,0,15.6
+268041,0,0,0,15.6
+268042,0,0,0,15.6
+268043,0,0,0,15.6
+268044,0,0,0,15.6
+268045,0,0,0,15.6
+268046,0,0,0,15.6
+268047,0,0,0,15.6
+268048,0,0,0,15.6
+268049,0,0,0,15.6
+268050,340293.9639,0,0,15.6
+268051,0,369135.0523,0,15.6
+268052,0,0,0,15.6
+268053,0,0,0,15.6
+268054,0,0,0,15.6
+268055,0,0,0,15.6
+268056,0,0,0,15.6
+268057,0,0,0,15.6
+268058,0,0,0,15.6
+268059,0,0,0,15.6
+268060,0,0,0,15.6
+268061,0,0,0,15.6
+268062,0,0,0,15.6
+268063,0,0,0,15.6
+268064,0,0,0,15.6
+268065,0,0,0,15.6
+268066,0,0,0,15.6
+268067,0,0,0,15.6
+268068,0,0,0,15.6
+268069,0,0,0,15.6
+268070,0,0,0,15.6
+268071,0,0,0,15.6
+268072,0,0,0,15.6
+268073,0,0,670274.266,15.6
+268074,0,0,0,15.6
+268075,0,0,0,15.6
+268076,0,0,0,15.6
+268077,0,0,0,15.6
+268078,0,0,0,15.6
+268079,0,0,0,15.6
+268080,0,0,0,17.8
+268081,0,388011.3365,0,17.8
+268082,0,0,0,17.8
+268083,0,0,0,17.8
+268084,340260.8089,26920.06754,0,17.8
+268085,0,478167.3567,0,17.8
+268086,0,46029.17072,0,17.8
+268087,0,61481.88408,0,17.8
+268088,0,61695.77974,0,17.8
+268089,0,61695.7831,0,17.8
+268090,0,62008.31144,0,17.8
+268091,0,62533.33565,0,17.8
+268092,0,62221.63372,0,17.8
+268093,0,62746.08478,0,17.8
+268094,0,62746.08888,0,17.8
+268095,0,63056.98471,0,17.8
+268096,0,63269.16098,0,17.8
+268097,0,63579.24777,0,17.8
+268098,0,63790.85881,0,17.8
+268099,0,63790.86373,0,17.8
+268100,0,64311.19102,0,17.8
+268101,0,64205.74399,0,17.8
+268102,0,64830.16614,0,17.8
+268103,0,65878.3505,0,17.8
+268104,0,65951.59167,0,17.8
+268105,0,66152.88783,0,17.8
+268106,0,326173.9946,0,17.8
+268107,0,66513.60209,669674.59,17.8
+268108,0,67255.77346,0,17.8
+268109,0,66758.63552,0,17.8
+268110,0,67578.90725,0,17.8
+268111,0,929.9943479,0,17.8
+268112,0,929.9934809,0,17.8
+268113,0,929.9938465,0,17.8
+268114,0,965.274895,0,17.8
+268115,0,965.2752608,0,17.8
+268116,0,982.8515079,0,17.8
+268117,0,1000.385562,0,17.8
+268118,340237.5674,982.8507605,0,17.8
+268119,0,370177.9276,0,17.8
+268120,0,1017.876545,0,17.8
+268121,0,1035.327524,0,17.8
+268122,0,0,0,17.8
+268123,0,0,0,17.8
+268124,0,0,0,17.8
+268125,0,0,0,17.8
+268126,0,0,0,17.8
+268127,0,0,0,17.8
+268128,0,0,0,17.8
+268129,0,0,0,17.8
+268130,0,0,0,17.8
+268131,0,0,0,17.8
+268132,0,0,0,17.8
+268133,0,0,0,17.8
+268134,0,0,0,17.8
+268135,0,0,0,17.8
+268136,0,1476.054466,0,17.8
+268137,0,768.9721732,0,17.8
+268138,0,947.6568823,0,17.8
+268139,0,982.851505,0,17.8
+268140,0,1000.385249,0,20
+268141,4785.3216,234474.9143,668413.5051,20
+268142,12485.44255,74567.80017,0,20
+268143,46660.02528,118686.2336,0,20
+268144,51653.54972,122806.3584,0,20
+268145,61646.80875,122332.1776,0,20
+268146,50341.85894,118526.47,0,20
+268147,54848.77608,118793.4219,0,20
+268148,59356.24391,118485.8241,0,20
+268149,64725.88231,118287.2806,0,20
+268150,59647.72157,117777.5557,0,20
+268151,61113.96342,117473.6035,0,20
+268152,60654.60828,117196.8289,0,20
+268153,59362.8888,116669.9426,0,20
+268154,58630.7524,116229.308,0,20
+268155,58197.64143,115724.8377,0,20
+268156,57521.61741,116072.0526,0,20
+268157,57282.23799,115035.1095,0,20
+268158,56349.9908,115115.6761,0,20
+268159,56071.57603,114629.217,0,20
+268160,55591.15316,114375.9565,0,20
+268161,55469.28775,113637.4486,0,20
+268162,54624.16092,113860.12,0,20
+268163,54601.69711,113543.8543,0,20
+268164,53953.32699,112608.1841,0,20
+268165,53777.7893,112798.0634,0,20
+268166,53410.41457,112581.3401,0,20
+268167,52854.99073,112014.3726,0,20
+268168,52698.53154,111678.9007,0,20
+268169,52142.20785,111967.1431,0,20
+268170,51811.16486,111018.3881,0,20
+268171,51274.51325,111020.7648,0,20
+268172,50722.47165,110474.8036,0,20
+268173,50114.97965,110447.6075,0,20
+268174,49808.85277,110180.9142,0,20
+268175,48887.46003,109762.2616,0,20
+268176,48485.48911,109816.0209,0,20
+268177,47594.74033,109215.7592,0,20
+268178,47323.67094,108833.5599,0,20
+268179,46275.94073,109186.0986,0,20
+268180,45850.49596,108100.5492,0,20
+268181,45089.17144,108574.3061,0,20
+268182,44505.11057,108073.1261,0,20
+268183,43723.16706,107543.0929,0,20
+268184,42741.43634,107812.7996,0,20
+268185,42456.9165,107060.109,0,20
+268186,41417.47894,107166.9044,0,20
+268187,40777.78888,106323.75,0,20
+268188,40547.53555,106571.8729,0,20
+268189,40563.05476,106904.3416,0,20
+268190,40400.84864,106011.2647,0,20
+268191,40474.57782,106304.741,0,20
+268192,40088.02507,105623.1862,0,20
+268193,40173.15278,106150.16,0,20
+268194,39900.11227,105332.3682,0,20
+268195,40108.50479,105431.4297,0,20
+268196,39588.13719,105208.4774,0,20
+268197,39682.68824,104984.8045,0,20
+268198,39627.89829,104983.7874,0,20
+268199,39231.25803,104581.5908,0,20
+268200,39591.63227,104351.2684,0,21
+268201,34856.18589,98446.27808,0,21
+268202,34247.61832,97724.11206,0,21
+268203,34120.46017,97061.7292,0,21
+268204,33716.46323,97030.48211,0,21
+268205,33608.24157,96898.11035,0,21
+268206,33567.82106,96191.26295,0,21
+268207,33212.58654,96424.37218,0,21
+268208,32992.65754,95573.06402,0,21
+268209,33063.24812,95867.39847,0,21
+268210,32613.02501,95236.52789,0,21
+268211,32566.64319,94992.69656,0,21
+268212,32546.21636,94800.28007,0,21
+268213,31991.50972,94647.83938,0,21
+268214,32157.40705,94113.88339,0,21
+268215,31389.63566,94402.54715,0,21
+268216,31306.96549,93553.63212,0,21
+268217,31071.57874,93573.0568,0,21
+268218,30590.02495,93277.52102,0,21
+268219,30752.32464,93219.26617,0,21
+268220,30418.14146,92904.13224,0,21
+268221,30260.45597,92478.1702,0,21
+268222,29898.33236,92553.93106,0,21
+268223,29803.4322,91909.53238,0,21
+268224,29648.39845,92004.80632,0,21
+268225,29354.86517,91503.89969,0,21
+268226,29142.56007,91506.1358,0,21
+268227,28795.79583,91129.38406,0,21
+268228,28891.68028,90920.08117,0,21
+268229,28468.94061,90905.07579,0,21
+268230,28222.76351,90364.81039,0,21
+268231,28214.53944,90215.6308,0,21
+268232,27702.69354,90302.45675,0,21
+268233,27744.42615,89470.42984,0,21
+268234,27522.63254,89940.9985,0,21
+268235,27003.99109,89107.44478,0,21
+268236,27274.23062,89157.45205,0,21
+268237,26713.18582,88743.57944,0,21
+268238,26539.75055,88794.20375,0,21
+268239,26561.53532,88484.92979,0,21
+268240,26115.61411,87971.74467,0,21
+268241,25921.77511,88170.69486,0,21
+268242,25849.05627,87613.09337,0,21
+268243,25626.37182,87626.46529,0,21
+268244,25194.38158,87228.96774,0,21
+268245,25233.34776,87048.03763,0,21
+268246,24811.90935,86979.86649,0,21
+268247,24766.07499,86406.76454,0,21
+268248,24426.85931,86663.75879,0,21
+268249,24287.06162,85873.70737,0,21
+268250,24014.38949,86302.94851,0,21
+268251,23793.28712,85433.46341,0,21
+268252,23639.89561,85609.49088,0,21
+268253,23365.14122,85346.8733,0,21
+268254,23260.01117,84726.81967,0,21
+268255,22859.24042,85313.59665,0,21
+268256,22693.2143,84387.64281,0,21
+268257,22762.77727,84516.29862,0,21
+268258,22371.57472,84020.85698,0,21
+268259,22482.84078,84177.09069,0,21
+268260,22264.66874,83697.56,0,21
+268261,6503.729613,48137.9553,0,21
+268262,5588.396697,45478.13449,0,21
+268263,5327.022324,44818.90401,0,21
+268264,4957.436384,44117.97016,0,21
+268265,4678.82858,43332.11205,0,21
+268266,4532.719432,42794.22625,0,21
+268267,4289.906976,42172.13391,0,21
+268268,4115.924776,41728.11393,0,21
+268269,3870.248761,40841.982,0,21
+268270,3720.427073,40902.43533,0,21
+268271,3445.231358,39751.6758,0,21
+268272,3432.024083,39583.67225,0,21
+268273,3027.217887,39012.34982,0,21
+268274,3013.984645,38397.83596,0,21
+268275,2731.475161,38059.5029,0,21
+268276,2602.239902,37259.45655,0,21
+268277,2418.665547,37174.20055,0,21
+268278,2300.89398,36557.88111,0,21
+268279,1994.840882,35808.86666,0,21
+268280,1994.84126,35826.46781,0,21
+268281,1682.852538,34912.71463,0,21
+268282,1530.765209,34561.47409,0,21
+268283,1530.765394,34209.26179,0,21
+268284,1204.261408,33725.15346,0,21
+268285,1038.715124,33058.5938,0,21
+268286,1025.005075,33037.85669,0,21
+268287,997.4934494,32306.12213,0,21
+268288,983.6914664,31974.09004,0,21
+268289,969.8582719,31385.26202,0,21
+268290,942.0967405,31044.44784,0,21
+268291,928.1684741,30847.86566,0,21
+268292,914.2071618,29968.683,0,21
+268293,886.1850198,29926.38823,0,21
+268294,872.1236563,29238.39228,0,21
+268295,858.0282131,28985.7447,0,21
+268296,843.8982548,28794.05274,0,21
+268297,815.5330112,27939.82041,0,21
+268298,801.2970292,27854.32805,0,21
+268299,787.024714,27341.86349,0,21
+268300,758.3701159,27073.96997,0,21
+268301,758.3704376,26429.90009,0,21
+268302,715.1020225,26494.67114,0,21
+268303,715.102073,25476.50866,0,21
+268304,700.6012024,25541.58752,0,21
+268305,671.4783613,24813.52611,0,21
+268306,656.8551999,24249.68134,0,21
+268307,642.1899565,24052.99774,0,21
+268308,627.4818948,23617.7665,0,21
+268309,597.9341919,22851.46755,0,21
+268310,583.0930369,22843.98213,0,21
+268311,583.0931087,21875.4866,0,21
+268312,538.2891401,21860.77806,0,21
+268313,538.2891915,21092.76582,0,21
+268314,523.2579126,20840.96224,0,21
+268315,493.0438777,20260.9682,0,21
+268316,477.8588394,19828.68544,0,21
+268317,477.85889,19462.38983,0,21
+268318,431.9753833,18831.61616,0,21
+268319,431.9754181,18808.8849,0,21
+268320,416.5720482,17826.95987,0,21
+268321,385.5622326,17638.8176,0,21
+268322,369.9732019,17180.17138,0,21
+268323,354.3130911,17014.37037,0,21
+268324,338.584827,16499.56111,0,21
+268325,306.9133121,16211.88011,0,21
+268326,306.9133321,15716.94498,0,21
+268327,258.8218643,15362.24747,0,21
+268328,274.934984,15124.66852,0,21
+268329,226.3263954,14671.40552,0,21
+268330,226.326405,14510.33161,0,21
+268331,193.4357897,13991.48653,0,21
+268332,176.8255545,13691.3218,0,21
+268333,160.0940065,13192.22455,0,21
+268334,143.2304796,13168.56191,0,21
+268335,126.2218181,12627.32961,0,21
+268336,91.69765529,12339.57103,0,21
+268337,91.69765694,12184.22512,0,21
+268338,56.30779318,11676.83129,0,21
+268339,56.30779357,11504.14087,0,21
+268340,19.54808088,10851.39738,0,21
+268341,0,11064.68761,0,21
+268342,0,10416.09805,0,21
+268343,0,9829.371461,0,21
+268344,0,9429.522014,0,21
+268345,0,9349.13575,0,21
+268346,0,8576.349069,0,21
+268347,0,8551.876004,0,21
+268348,0,8233.793789,0,21
+268349,0,7944.071831,0,21
+268350,0,7383.194666,0,21
+268351,0,7237.398323,0,21
+268352,0,6928.963876,0,21
+268353,0,6766.399366,0,21
+268354,0,6044.412662,0,21
+268355,0,6035.537855,0,21
+268356,0,5325.32586,0,21
+268357,0,5389.41698,0,21
+268358,0,4694.130239,0,21
+268359,0,4512.0256,0,21
+268360,0,4065.274817,0,21
+268361,0,3840.185838,0,21
+268362,0,3663.388186,0,21
+268363,0,3611.802603,0,21
+268364,0,3400.733709,0,21
+268365,0,3374.728615,0,21
+268366,0,3136.088582,0,21
+268367,0,2972.298054,0,21
+268368,0,2869.310573,0,21
+268369,0,2704.142675,0,21
+268370,0,2617.107339,0,21
+268371,0,2433.543918,0,21
+268372,0,2362.561263,0,21
+268373,0,2146.59417,0,21
+268374,0,1928.625995,0,21
+268375,0,2033.056058,0,21
+268376,0,1621.402569,0,21
+268377,0,1610.295415,0,21
+268378,0,1308.98986,0,21
+268379,0,1311.764417,0,21
+268380,0,1221.344723,0,21
+268381,0,545.7066156,0,21
+268382,0,481.2793438,0,21
+268383,0,415.2454863,0,21
+268384,0,397.6620786,0,21
+268385,0,380.0022471,0,21
+268386,0,371.1428137,0,21
+268387,0,362.2631836,0,21
+268388,0,335.4990658,0,21
+268389,0,326.5344953,0,21
+268390,0,326.5345215,0,21
+268391,0,308.5376562,0,21
+268392,0,272.2576269,0,21
+268393,0,290.4469689,0,21
+268394,0,272.2576718,0,21
+268395,0,235.5608525,0,21
+268396,0,253.96437,0,21
+268397,0,217.0400991,0,21
+268398,0,217.0401123,0,21
+268399,0,198.3937618,0,21
+268400,0,198.3937827,0,21
+268401,0,160.6829938,0,21
+268402,0,179.6120361,0,21
+268403,0,141.5921524,0,21
+268404,0,141.5921614,0,21
+268405,0,122.3210847,0,21
+268406,0,102.8457788,0,21
+268407,0,112.6107677,0,21
+268408,0,83.13341537,0,21
+268409,0,73.17426771,0,21
+268410,0,63.13616414,0,21
+268411,0,42.77688881,0,21
+268412,0,42.77689553,0,21
+268413,0,21.90593021,0,21
+268414,0,21.90593184,0,21
+268415,0,0,0,21
+268416,0,0,0,21
+268417,0,0,0,21
+268418,0,0,0,21
+268419,0,0,0,21
+268420,0,0,0,21
+268421,0,0,0,21
+268422,0,0,0,21
+268423,0,0,0,21
+268424,0,0,0,21
+268425,0,0,0,21
+268426,0,0,0,21
+268427,0,0,0,21
+268428,0,0,0,21
+268429,0,0,0,21
+268430,0,0,0,21
+268431,0,0,0,21
+268432,0,0,0,21
+268433,0,0,0,21
+268434,0,0,0,21
+268435,0,0,0,21
+268436,0,0,0,21
+268437,0,0,0,21
+268438,0,0,0,21
+268439,0,0,0,21
+268440,0,0,0,21
+268441,0,0,0,21
+268442,0,0,0,21
+268443,0,0,0,21
+268444,0,0,0,21
+268445,0,0,0,21
+268446,0,0,0,21
+268447,0,0,0,21
+268448,0,0,0,21
+268449,0,0,0,21
+268450,0,0,0,21
+268451,0,0,0,21
+268452,0,0,0,21
+268453,0,0,0,21
+268454,0,0,0,21
+268455,0,0,0,21
+268456,0,0,0,21
+268457,0,0,0,21
+268458,0,0,0,21
+268459,0,0,0,21
+268460,0,0,0,21
+268461,0,0,0,21
+268462,0,0,0,21
+268463,0,0,0,21
+268464,0,0,0,21
+268465,0,0,0,21
+268466,0,0,0,21
+268467,0,0,0,21
+268468,0,0,0,21
+268469,0,0,0,21
+268470,0,0,0,21
+268471,0,0,0,21
+268472,0,0,0,21
+268473,0,0,0,21
+268474,0,0,0,21
+268475,0,0,0,21
+268476,0,0,0,21
+268477,0,0,0,21
+268478,0,0,0,21
+268479,0,0,0,21
+268480,0,0,0,21
+268481,0,0,0,21
+268482,0,0,0,21
+268483,0,0,0,21
+268484,0,0,0,21
+268485,0,0,0,21
+268486,0,0,0,21
+268487,0,0,0,21
+268488,0,0,0,21
+268489,0,0,0,21
+268490,0,0,0,21
+268491,0,0,0,21
+268492,0,0,0,21
+268493,0,0,0,21
+268494,0,0,0,21
+268495,0,0,0,21
+268496,0,0,0,21
+268497,0,0,0,21
+268498,0,0,0,21
+268499,0,0,0,21
+268500,0,0,0,21
+268501,0,0,0,21
+268502,0,0,0,21
+268503,0,0,0,21
+268504,0,0,0,21
+268505,0,0,0,21
+268506,0,0,0,21
+268507,0,0,0,21
+268508,0,0,0,21
+268509,0,0,0,21
+268510,0,0,0,21
+268511,0,0,0,21
+268512,0,0,0,21
+268513,0,0,0,21
+268514,0,0,0,21
+268515,0,0,0,21
+268516,0,0,0,21
+268517,0,0,0,21
+268518,0,0,0,21
+268519,0,0,0,21
+268520,0,0,0,21
+268521,0,0,0,21
+268522,0,0,0,21
+268523,0,0,0,21
+268524,0,0,0,21
+268525,0,0,0,21
+268526,0,0,0,21
+268527,0,0,0,21
+268528,0,0,0,21
+268529,0,0,0,21
+268530,0,0,0,21
+268531,0,0,0,21
+268532,0,0,0,21
+268533,0,0,0,21
+268534,0,0,0,21
+268535,0,0,0,21
+268536,0,0,0,21
+268537,0,0,0,21
+268538,0,0,0,21
+268539,0,0,0,21
+268540,0,0,0,21
+268541,0,0,0,21
+268542,0,0,0,21
+268543,0,0,0,21
+268544,0,0,0,21
+268545,0,0,0,21
+268546,0,0,0,21
+268547,0,0,0,21
+268548,0,0,0,21
+268549,0,0,0,21
+268550,0,0,0,21
+268551,0,0,0,21
+268552,0,0,0,21
+268553,0,0,0,21
+268554,0,0,0,21
+268555,0,0,0,21
+268556,0,0,0,21
+268557,0,0,0,21
+268558,0,0,0,21
+268559,0,0,0,21
+268560,0,0,0,21
+268561,0,0,0,21
+268562,0,0,0,21
+268563,0,0,0,21
+268564,0,0,0,21
+268565,0,0,0,21
+268566,0,0,0,21
+268567,0,0,0,21
+268568,0,0,0,21
+268569,0,0,0,21
+268570,0,0,0,21
+268571,0,0,0,21
+268572,0,0,0,21
+268573,0,0,0,21
+268574,0,0,0,21
+268575,0,0,0,21
+268576,0,0,0,21
+268577,0,0,0,21
+268578,0,0,0,21
+268579,0,0,0,21
+268580,0,0,0,21
+268581,0,0,0,21
+268582,0,0,0,21
+268583,0,0,0,21
+268584,0,0,0,21
+268585,0,0,0,21
+268586,0,0,0,21
+268587,0,0,0,21
+268588,0,0,0,21
+268589,0,0,0,21
+268590,0,0,0,21
+268591,0,0,0,21
+268592,0,0,0,21
+268593,0,0,0,21
+268594,0,0,0,21
+268595,0,0,0,21
+268596,0,0,0,21
+268597,0,0,0,21
+268598,0,0,0,21
+268599,0,0,0,21
+268600,0,0,0,21
+268601,0,0,0,21
+268602,0,0,0,21
+268603,0,0,0,21
+268604,0,0,0,21
+268605,0,0,0,21
+268606,0,0,0,21
+268607,0,0,0,21
+268608,0,0,0,21
+268609,0,0,0,21
+268610,0,0,0,21
+268611,0,0,0,21
+268612,0,0,0,21
+268613,0,0,0,21
+268614,0,0,0,21
+268615,0,0,0,21
+268616,0,0,0,21
+268617,0,0,0,21
+268618,0,0,0,21
+268619,0,0,0,21
+268620,0,0,0,21
+268621,0,0,0,21
+268622,0,0,0,21
+268623,0,0,0,21
+268624,0,0,0,21
+268625,0,0,0,21
+268626,0,0,0,21
+268627,0,0,0,21
+268628,0,0,0,21
+268629,0,0,0,21
+268630,0,0,0,21
+268631,0,0,0,21
+268632,0,0,0,21
+268633,0,0,0,21
+268634,0,0,0,21
+268635,0,0,0,21
+268636,0,0,0,21
+268637,0,0,0,21
+268638,0,0,0,21
+268639,0,0,0,21
+268640,0,0,0,21
+268641,0,0,0,21
+268642,0,0,0,21
+268643,0,0,0,21
+268644,0,0,0,21
+268645,0,0,0,21
+268646,0,0,0,21
+268647,0,0,0,21
+268648,0,0,0,21
+268649,0,0,0,21
+268650,0,0,0,21
+268651,0,0,0,21
+268652,0,0,0,21
+268653,0,0,0,21
+268654,0,0,0,21
+268655,0,0,0,21
+268656,0,0,0,21
+268657,0,0,0,21
+268658,0,0,0,21
+268659,0,0,0,21
+268660,0,0,0,21
+268661,0,0,0,21
+268662,0,0,0,21
+268663,0,0,0,21
+268664,0,0,0,21
+268665,0,0,0,21
+268666,0,0,0,21
+268667,0,0,0,21
+268668,0,0,0,21
+268669,0,0,0,21
+268670,0,0,0,21
+268671,0,0,0,21
+268672,0,0,0,21
+268673,0,0,0,21
+268674,0,0,0,21
+268675,0,0,0,21
+268676,0,0,0,21
+268677,0,0,0,21
+268678,0,0,0,21
+268679,0,0,0,21
+268680,0,0,0,21
+268681,0,0,0,21
+268682,0,0,0,21
+268683,0,0,0,21
+268684,0,0,0,21
+268685,0,0,0,21
+268686,0,0,0,21
+268687,0,0,0,21
+268688,0,0,0,21
+268689,0,0,0,21
+268690,0,0,0,21
+268691,0,0,0,21
+268692,0,0,0,21
+268693,0,0,0,21
+268694,0,0,0,21
+268695,0,0,0,21
+268696,0,0,0,21
+268697,0,0,0,21
+268698,0,0,0,21
+268699,0,0,0,21
+268700,0,0,0,21
+268701,0,0,0,21
+268702,0,0,0,21
+268703,0,0,0,21
+268704,0,0,0,21
+268705,0,0,0,21
+268706,0,0,0,21
+268707,0,0,0,21
+268708,0,0,0,21
+268709,0,0,0,21
+268710,0,0,0,21
+268711,0,0,0,21
+268712,0,0,0,21
+268713,0,0,0,21
+268714,0,0,0,21
+268715,0,0,0,21
+268716,0,0,0,21
+268717,0,0,0,21
+268718,0,0,0,21
+268719,0,0,0,21
+268720,0,0,0,21
+268721,0,0,0,21
+268722,0,0,0,21
+268723,0,0,0,21
+268724,0,0,0,21
+268725,0,0,0,21
+268726,0,0,0,21
+268727,0,0,0,21
+268728,0,0,0,21
+268729,0,0,0,21
+268730,0,0,0,21
+268731,0,0,0,21
+268732,0,0,0,21
+268733,0,0,0,21
+268734,0,0,0,21
+268735,0,0,0,21
+268736,0,0,0,21
+268737,0,0,0,21
+268738,0,0,0,21
+268739,0,0,0,21
+268740,0,0,0,21
+268741,0,0,0,21
+268742,0,0,0,21
+268743,0,0,0,21
+268744,0,0,0,21
+268745,0,0,0,21
+268746,0,0,0,21
+268747,0,0,0,21
+268748,0,0,0,21
+268749,0,0,0,21
+268750,0,0,0,21
+268751,0,0,0,21
+268752,0,0,0,21
+268753,0,0,0,21
+268754,0,0,0,21
+268755,0,0,0,21
+268756,0,0,0,21
+268757,0,0,0,21
+268758,0,0,0,21
+268759,0,0,0,21
+268760,0,0,0,21
+268761,0,0,0,21
+268762,0,0,0,21
+268763,0,0,0,21
+268764,0,0,0,21
+268765,0,0,0,21
+268766,0,0,0,21
+268767,0,0,0,21
+268768,0,0,0,21
+268769,0,0,0,21
+268770,0,0,0,21
+268771,0,0,0,21
+268772,0,0,0,21
+268773,0,0,0,21
+268774,0,0,0,21
+268775,0,0,0,21
+268776,0,0,0,21
+268777,0,0,0,21
+268778,0,0,0,21
+268779,0,0,0,21
+268780,0,0,0,21
+268781,0,0,0,21
+268782,0,0,0,21
+268783,0,0,0,21
+268784,0,0,0,21
+268785,0,0,0,21
+268786,0,0,0,21
+268787,0,0,0,21
+268788,0,0,0,21
+268789,0,0,0,21
+268790,0,0,0,21
+268791,0,0,0,21
+268792,0,0,0,21
+268793,0,0,0,21
+268794,0,0,0,21
+268795,0,0,0,21
+268796,0,0,0,21
+268797,0,0,0,21
+268798,0,0,0,21
+268799,0,0,0,21
+268800,0,0,0,21
+268801,0,0,0,21
+268802,0,0,0,21
+268803,0,0,0,21
+268804,0,0,0,21
+268805,0,0,0,21
+268806,0,0,0,21
+268807,0,0,0,21
+268808,0,0,0,21
+268809,0,0,0,21
+268810,0,0,0,21
+268811,0,0,0,21
+268812,0,0,0,21
+268813,0,0,0,21
+268814,0,0,0,21
+268815,0,0,0,21
+268816,0,0,0,21
+268817,0,0,0,21
+268818,0,0,0,21
+268819,0,0,0,21
+268820,0,0,0,21
+268821,0,0,0,21
+268822,0,0,0,21
+268823,0,0,0,21
+268824,0,0,0,21
+268825,0,0,0,21
+268826,0,0,0,21
+268827,0,0,0,21
+268828,0,0,0,21
+268829,0,0,0,21
+268830,0,0,0,21
+268831,0,0,0,21
+268832,0,0,0,21
+268833,0,0,0,21
+268834,0,0,0,21
+268835,0,0,0,21
+268836,0,0,0,21
+268837,0,0,0,21
+268838,0,0,0,21
+268839,0,0,0,21
+268840,0,0,0,21
+268841,0,0,0,21
+268842,0,0,0,21
+268843,0,0,0,21
+268844,0,0,0,21
+268845,0,0,0,21
+268846,0,0,0,21
+268847,0,0,0,21
+268848,0,0,0,21
+268849,0,0,0,21
+268850,0,0,0,21
+268851,0,0,0,21
+268852,0,0,0,21
+268853,0,0,0,21
+268854,0,0,0,21
+268855,0,0,0,21
+268856,0,0,0,21
+268857,0,0,0,21
+268858,0,0,0,21
+268859,0,0,0,21
+268860,0,0,0,21
+268861,0,0,0,21
+268862,0,0,0,21
+268863,0,0,0,21
+268864,0,0,0,21
+268865,0,0,0,21
+268866,0,0,0,21
+268867,0,0,0,21
+268868,0,0,0,21
+268869,0,0,0,21
+268870,0,0,0,21
+268871,0,0,0,21
+268872,0,0,0,21
+268873,0,0,0,21
+268874,0,0,0,21
+268875,0,0,0,21
+268876,0,0,0,21
+268877,0,0,0,21
+268878,0,0,0,21
+268879,0,0,0,21
+268880,0,0,0,21
+268881,0,0,0,21
+268882,0,0,0,21
+268883,0,0,0,21
+268884,0,0,0,21
+268885,0,0,0,21
+268886,0,0,0,21
+268887,0,0,0,21
+268888,0,0,0,21
+268889,0,0,0,21
+268890,0,0,0,21
+268891,0,0,0,21
+268892,0,0,0,21
+268893,0,0,0,21
+268894,0,0,0,21
+268895,0,0,0,21
+268896,0,0,0,21
+268897,0,0,0,21
+268898,0,0,0,21
+268899,0,0,0,21
+268900,0,0,0,21
+268901,0,0,0,21
+268902,0,0,0,21
+268903,0,0,0,21
+268904,0,0,0,21
+268905,0,0,0,21
+268906,0,0,0,21
+268907,0,0,0,21
+268908,0,0,0,21
+268909,0,0,0,21
+268910,0,0,0,21
+268911,0,0,0,21
+268912,0,0,0,21
+268913,0,0,0,21
+268914,0,0,0,21
+268915,0,0,0,21
+268916,0,0,0,21
+268917,0,0,0,21
+268918,0,0,0,21
+268919,0,0,0,21
+268920,0,0,0,21
+268921,0,0,0,21
+268922,0,0,0,21
+268923,0,0,0,21
+268924,0,0,0,21
+268925,0,0,0,21
+268926,0,0,0,21
+268927,0,0,0,21
+268928,0,0,0,21
+268929,0,0,0,21
+268930,0,0,0,21
+268931,0,0,0,21
+268932,0,0,0,21
+268933,0,0,0,21
+268934,0,0,0,21
+268935,0,0,0,21
+268936,0,0,0,21
+268937,0,0,0,21
+268938,0,0,0,21
+268939,0,0,0,21
+268940,0,0,0,21
+268941,0,0,0,21
+268942,0,0,0,21
+268943,0,0,0,21
+268944,0,0,0,21
+268945,0,0,0,21
+268946,0,0,0,21
+268947,0,0,0,21
+268948,0,0,0,21
+268949,0,0,0,21
+268950,0,0,0,21
+268951,0,0,0,21
+268952,0,0,0,21
+268953,0,0,0,21
+268954,0,0,0,21
+268955,0,0,0,21
+268956,0,0,0,21
+268957,0,0,0,21
+268958,0,0,0,21
+268959,0,0,0,21
+268960,0,0,0,21
+268961,0,0,0,21
+268962,0,0,0,21
+268963,0,0,0,21
+268964,0,0,0,21
+268965,0,0,0,21
+268966,0,0,0,21
+268967,0,0,0,21
+268968,0,0,0,21
+268969,0,0,0,21
+268970,0,0,0,21
+268971,0,0,0,21
+268972,0,0,0,21
+268973,0,0,0,21
+268974,0,0,0,21
+268975,0,0,0,21
+268976,0,0,0,21
+268977,0,0,0,21
+268978,0,0,0,21
+268979,0,0,0,21
+268980,0,0,0,21
+268981,0,0,0,21
+268982,0,0,0,21
+268983,0,0,0,21
+268984,0,0,0,21
+268985,0,0,0,21
+268986,0,0,0,21
+268987,0,0,0,21
+268988,0,0,0,21
+268989,0,0,0,21
+268990,0,0,0,21
+268991,0,0,0,21
+268992,0,0,0,21
+268993,0,0,0,21
+268994,0,0,0,21
+268995,0,0,0,21
+268996,0,0,0,21
+268997,0,0,0,21
+268998,0,0,0,21
+268999,0,0,0,21
+269000,0,0,0,21
+269001,0,0,0,21
+269002,0,0,0,21
+269003,0,0,0,21
+269004,0,0,0,21
+269005,0,0,0,21
+269006,0,0,0,21
+269007,0,0,0,21
+269008,0,0,0,21
+269009,0,0,0,21
+269010,0,0,0,21
+269011,0,0,0,21
+269012,0,0,0,21
+269013,0,0,0,21
+269014,0,0,0,21
+269015,0,0,0,21
+269016,0,0,0,21
+269017,0,0,0,21
+269018,0,0,0,21
+269019,0,0,0,21
+269020,0,0,0,21
+269021,0,0,0,21
+269022,0,0,0,21
+269023,0,0,0,21
+269024,0,0,0,21
+269025,0,0,0,21
+269026,0,0,0,21
+269027,0,0,0,21
+269028,0,0,0,21
+269029,0,0,0,21
+269030,0,0,0,21
+269031,0,0,0,21
+269032,0,0,0,21
+269033,0,0,0,21
+269034,0,0,0,21
+269035,0,0,0,21
+269036,0,0,0,21
+269037,0,0,0,21
+269038,0,0,0,21
+269039,0,0,0,21
+269040,0,0,0,21
+269041,0,0,0,21
+269042,0,0,0,21
+269043,0,0,0,21
+269044,0,0,0,21
+269045,0,0,0,21
+269046,0,0,0,21
+269047,0,0,0,21
+269048,0,0,0,21
+269049,0,0,0,21
+269050,0,0,0,21
+269051,0,0,0,21
+269052,0,0,0,21
+269053,0,0,0,21
+269054,0,0,0,21
+269055,0,0,0,21
+269056,0,0,0,21
+269057,0,0,0,21
+269058,0,0,0,21
+269059,0,0,0,21
+269060,0,0,0,21
+269061,0,0,0,21
+269062,0,0,0,21
+269063,0,0,0,21
+269064,0,0,0,21
+269065,0,0,0,21
+269066,0,0,0,21
+269067,0,0,0,21
+269068,0,0,0,21
+269069,0,0,0,21
+269070,0,0,0,21
+269071,0,0,0,21
+269072,0,0,0,21
+269073,0,0,0,21
+269074,0,0,0,21
+269075,0,0,0,21
+269076,0,0,0,21
+269077,0,0,0,21
+269078,0,0,0,21
+269079,0,0,0,21
+269080,0,0,0,21
+269081,0,0,0,21
+269082,0,0,0,21
+269083,0,0,0,21
+269084,0,0,0,21
+269085,0,0,0,21
+269086,0,0,0,21
+269087,0,0,0,21
+269088,0,0,0,21
+269089,0,0,0,21
+269090,0,0,0,21
+269091,0,0,0,21
+269092,0,0,0,21
+269093,581.3592967,0,0,21
+269094,855.2910736,0,0,21
+269095,855.291095,0,0,21
+269096,990.0009802,0,0,21
+269097,1123.454115,0,0,21
+269098,1387.082996,0,0,21
+269099,1255.780548,0,0,21
+269100,1646.936889,0,0,21
+269101,0,0,0,21
+269102,0,0,0,21
+269103,0,0,0,21
+269104,0,0,0,21
+269105,338330.2944,366558.2135,664870.2193,21
+269106,0,0,0,21
+269107,0,0,0,21
+269108,0,0,0,21
+269109,0,0,0,21
+269110,0,0,0,21
+269111,0,0,0,21
+269112,0,0,0,21
+269113,0,0,0,21
+269114,0,0,0,21
+269115,0,0,0,21
+269116,0,0,0,21
+269117,0,0,0,21
+269118,0,0,0,21
+269119,0,0,0,21
+269120,0,0,0,21
+269121,0,0,0,21
+269122,0,0,0,21
+269123,0,0,0,21
+269124,0,0,0,21
+269125,0,0,0,21
+269126,0,0,0,21
+269127,0,0,0,21
+269128,0,0,0,21
+269129,0,0,0,21
+269130,0,0,0,21
+269131,0,0,0,21
+269132,0,0,0,21
+269133,0,0,0,21
+269134,0,0,0,21
+269135,0,0,0,21
+269136,0,0,0,21
+269137,0,0,0,21
+269138,0,0,0,21
+269139,338231.4058,365873.4119,665175.7872,21
+269140,0,0,0,21
+269141,0,0,0,21
+269142,0,0,0,21
+269143,0,0,0,21
+269144,0,0,0,21
+269145,0,0,0,21
+269146,0,0,0,21
+269147,0,0,0,21
+269148,0,0,0,21
+269149,0,0,0,21
+269150,0,0,0,21
+269151,0,0,0,21
+269152,0,0,0,21
+269153,0,0,0,21
+269154,0,0,0,21
+269155,0,0,0,21
+269156,0,0,0,21
+269157,0,0,0,21
+269158,0,0,0,21
+269159,0,0,0,21
+269160,0,0,0,15.6
+269161,0,0,0,15.6
+269162,0,0,0,15.6
+269163,0,0,0,15.6
+269164,0,0,0,15.6
+269165,0,0,0,15.6
+269166,0,0,0,15.6
+269167,0,0,0,15.6
+269168,0,0,0,15.6
+269169,0,0,0,15.6
+269170,0,0,0,15.6
+269171,0,0,0,15.6
+269172,0,0,0,15.6
+269173,332366.0518,365594.7445,665162.9476,15.6
+269174,0,0,0,15.6
+269175,0,0,0,15.6
+269176,0,0,0,15.6
+269177,0,0,0,15.6
+269178,0,0,0,15.6
+269179,0,0,0,15.6
+269180,0,0,0,15.6
+269181,0,0,0,15.6
+269182,0,0,0,15.6
+269183,0,0,0,15.6
+269184,0,0,0,15.6
+269185,0,0,0,15.6
+269186,0,0,0,15.6
+269187,0,0,0,15.6
+269188,0,0,0,15.6
+269189,0,0,0,15.6
+269190,0,0,0,15.6
+269191,0,0,0,15.6
+269192,0,0,0,15.6
+269193,0,0,0,15.6
+269194,0,0,0,15.6
+269195,0,0,0,15.6
+269196,0,0,0,15.6
+269197,0,0,0,15.6
+269198,0,0,0,15.6
+269199,0,0,0,15.6
+269200,0,0,0,15.6
+269201,0,0,0,15.6
+269202,0,0,0,15.6
+269203,0,0,0,15.6
+269204,0,0,0,15.6
+269205,0,0,0,15.6
+269206,0,0,0,15.6
+269207,337992.2605,365761.0543,664669.968,15.6
+269208,0,0,0,15.6
+269209,0,0,0,15.6
+269210,0,0,0,15.6
+269211,0,0,0,15.6
+269212,0,0,0,15.6
+269213,0,0,0,15.6
+269214,0,0,0,15.6
+269215,0,0,0,15.6
+269216,0,0,0,15.6
+269217,0,0,0,15.6
+269218,0,0,0,15.6
+269219,0,0,0,15.6
+269220,0,0,0,15.6
+269221,0,0,0,15.6
+269222,0,0,0,15.6
+269223,0,0,0,15.6
+269224,0,0,0,15.6
+269225,0,0,0,15.6
+269226,0,0,0,15.6
+269227,0,0,0,15.6
+269228,0,0,0,15.6
+269229,0,0,0,15.6
+269230,0,0,0,15.6
+269231,0,0,0,15.6
+269232,0,0,0,15.6
+269233,0,0,0,15.6
+269234,0,0,0,15.6
+269235,0,0,0,15.6
+269236,0,0,0,15.6
+269237,0,0,0,15.6
+269238,0,0,0,15.6
+269239,0,0,0,15.6
+269240,0,0,0,15.6
+269241,0,365969.4282,664097.0183,15.6
+269242,330876.3013,0,0,15.6
+269243,0,0,0,15.6
+269244,0,0,0,15.6
+269245,0,0,0,15.6
+269246,0,0,0,15.6
+269247,0,0,0,15.6
+269248,0,0,0,15.6
+269249,0,0,0,15.6
+269250,0,0,0,15.6
+269251,0,0,0,15.6
+269252,0,0,0,15.6
+269253,0,0,0,15.6
+269254,0,0,0,15.6
+269255,0,0,0,15.6
+269256,0,0,0,15.6
+269257,0,0,0,15.6
+269258,0,0,0,15.6
+269259,0,0,0,15.6
+269260,0,0,0,15.6
+269261,0,0,0,15.6
+269262,0,0,0,15.6
+269263,0,0,0,15.6
+269264,0,0,0,15.6
+269265,0,0,0,15.6
+269266,0,0,0,15.6
+269267,0,0,0,15.6
+269268,0,0,0,15.6
+269269,0,0,0,15.6
+269270,0,0,0,15.6
+269271,0,0,0,15.6
+269272,0,0,0,15.6
+269273,0,0,0,15.6
+269274,0,0,0,15.6
+269275,0,365279.2439,663282.106,15.6
+269276,0,0,0,15.6
+269277,337968.2948,0,0,15.6
+269278,0,0,0,15.6
+269279,0,0,0,15.6
+269280,0,0,0,15.6
+269281,0,0,0,15.6
+269282,0,0,0,15.6
+269283,0,0,0,15.6
+269284,0,0,0,15.6
+269285,0,0,0,15.6
+269286,0,0,0,15.6
+269287,0,0,0,15.6
+269288,0,0,0,15.6
+269289,0,0,0,15.6
+269290,0,0,0,15.6
+269291,0,0,0,15.6
+269292,0,0,0,15.6
+269293,0,0,0,15.6
+269294,0,0,0,15.6
+269295,0,0,0,15.6
+269296,0,0,0,15.6
+269297,0,0,0,15.6
+269298,0,0,0,15.6
+269299,0,0,0,15.6
+269300,0,0,0,15.6
+269301,0,0,0,15.6
+269302,0,0,0,15.6
+269303,0,0,0,15.6
+269304,0,0,0,15.6
+269305,0,0,0,15.6
+269306,0,0,0,15.6
+269307,0,0,0,15.6
+269308,0,0,0,15.6
+269309,0,365331.9769,662652.5294,15.6
+269310,0,0,0,15.6
+269311,0,0,0,15.6
+269312,330088.4475,0,0,15.6
+269313,0,0,0,15.6
+269314,0,0,0,15.6
+269315,0,0,0,15.6
+269316,0,0,0,15.6
+269317,0,0,0,15.6
+269318,0,0,0,15.6
+269319,0,0,0,15.6
+269320,0,0,0,15.6
+269321,0,0,0,15.6
+269322,0,0,0,15.6
+269323,0,0,0,15.6
+269324,0,0,0,15.6
+269325,0,0,0,15.6
+269326,0,0,0,15.6
+269327,0,0,0,15.6
+269328,0,0,0,15.6
+269329,0,0,0,15.6
+269330,0,0,0,15.6
+269331,0,0,0,15.6
+269332,0,0,0,15.6
+269333,0,0,0,15.6
+269334,0,0,0,15.6
+269335,0,0,0,15.6
+269336,0,0,0,15.6
+269337,0,0,0,15.6
+269338,0,0,0,15.6
+269339,0,0,0,15.6
+269340,0,0,0,15.6
+269341,0,0,0,15.6
+269342,0,0,0,15.6
+269343,0,367597.5277,662221.8937,15.6
+269344,0,0,0,15.6
+269345,0,0,0,15.6
+269346,0,0,0,15.6
+269347,331401.1267,0,0,15.6
+269348,0,0,0,15.6
+269349,0,0,0,15.6
+269350,0,0,0,15.6
+269351,0,0,0,15.6
+269352,0,0,0,15.6
+269353,0,0,0,15.6
+269354,0,0,0,15.6
+269355,0,0,0,15.6
+269356,0,0,0,15.6
+269357,0,0,0,15.6
+269358,0,0,0,15.6
+269359,0,0,0,15.6
+269360,0,0,0,15.6
+269361,0,0,0,15.6
+269362,0,0,0,15.6
+269363,0,0,0,15.6
+269364,0,0,0,15.6
+269365,0,0,0,15.6
+269366,0,0,0,15.6
+269367,0,0,0,15.6
+269368,0,0,0,15.6
+269369,0,0,0,15.6
+269370,0,0,0,15.6
+269371,0,0,0,15.6
+269372,0,0,0,15.6
+269373,0,0,0,15.6
+269374,0,0,0,15.6
+269375,0,0,0,15.6
+269376,0,0,0,15.6
+269377,0,367837.6932,661695.951,15.6
+269378,0,0,0,15.6
+269379,0,0,0,15.6
+269380,0,0,0,15.6
+269381,0,0,0,15.6
+269382,328117.4489,0,0,15.6
+269383,0,0,0,15.6
+269384,0,0,0,15.6
+269385,0,0,0,15.6
+269386,0,0,0,15.6
+269387,0,0,0,15.6
+269388,0,0,0,15.6
+269389,0,0,0,15.6
+269390,0,0,0,15.6
+269391,0,0,0,15.6
+269392,0,0,0,15.6
+269393,0,0,0,15.6
+269394,0,0,0,15.6
+269395,0,0,0,15.6
+269396,0,0,0,15.6
+269397,0,0,0,15.6
+269398,0,0,0,15.6
+269399,0,0,0,15.6
+269400,0,0,0,15.6
+269401,0,0,0,15.6
+269402,0,0,0,15.6
+269403,0,0,0,15.6
+269404,0,0,0,15.6
+269405,0,0,0,15.6
+269406,0,0,0,15.6
+269407,0,0,0,15.6
+269408,0,0,0,15.6
+269409,0,0,0,15.6
+269410,0,0,0,15.6
+269411,0,368012.6784,660761.8505,15.6
+269412,0,0,0,15.6
+269413,0,0,0,15.6
+269414,0,0,0,15.6
+269415,0,0,0,15.6
+269416,0,0,0,15.6
+269417,331453.2077,0,0,15.6
+269418,0,0,0,15.6
+269419,0,0,0,15.6
+269420,0,0,0,15.6
+269421,0,0,0,15.6
+269422,0,0,0,15.6
+269423,0,0,0,15.6
+269424,0,0,0,15.6
+269425,0,0,0,15.6
+269426,0,0,0,15.6
+269427,0,0,0,15.6
+269428,0,0,0,15.6
+269429,0,0,0,15.6
+269430,0,0,0,15.6
+269431,0,0,0,15.6
+269432,0,0,0,15.6
+269433,0,0,0,15.6
+269434,0,0,0,15.6
+269435,0,0,0,15.6
+269436,0,0,0,15.6
+269437,0,0,0,15.6
+269438,0,0,0,15.6
+269439,0,0,0,15.6
+269440,0,0,0,15.6
+269441,0,0,0,15.6
+269442,0,0,0,15.6
+269443,0,0,0,15.6
+269444,0,0,661032.3214,15.6
+269445,0,0,0,15.6
+269446,0,364210.1102,0,15.6
+269447,0,0,0,15.6
+269448,0,0,0,15.6
+269449,0,0,0,15.6
+269450,0,0,0,15.6
+269451,0,0,0,15.6
+269452,338040.1519,0,0,15.6
+269453,0,0,0,15.6
+269454,0,0,0,15.6
+269455,0,0,0,15.6
+269456,0,0,0,15.6
+269457,0,0,0,15.6
+269458,0,0,0,15.6
+269459,0,0,0,15.6
+269460,0,0,0,15.6
+269461,0,0,0,15.6
+269462,0,0,0,15.6
+269463,0,0,0,15.6
+269464,0,0,0,15.6
+269465,0,0,0,15.6
+269466,0,0,0,15.6
+269467,0,0,0,15.6
+269468,0,0,0,15.6
+269469,0,0,0,15.6
+269470,0,0,0,15.6
+269471,0,0,0,15.6
+269472,0,0,0,15.6
+269473,0,0,0,15.6
+269474,0,0,0,15.6
+269475,0,0,0,15.6
+269476,0,0,0,15.6
+269477,0,0,661556.2053,15.6
+269478,0,0,0,15.6
+269479,0,0,0,15.6
+269480,0,0,0,15.6
+269481,0,366893.4128,0,15.6
+269482,0,0,0,15.6
+269483,0,0,0,15.6
+269484,0,0,0,15.6
+269485,0,0,0,15.6
+269486,340410.4979,0,0,15.6
+269487,0,0,0,15.6
+269488,0,0,0,15.6
+269489,0,0,0,15.6
+269490,0,0,0,15.6
+269491,0,0,0,15.6
+269492,0,0,0,15.6
+269493,0,0,0,15.6
+269494,0,0,0,15.6
+269495,0,0,0,15.6
+269496,0,0,0,15.6
+269497,0,0,0,15.6
+269498,0,0,0,15.6
+269499,0,0,0,15.6
+269500,0,0,0,15.6
+269501,0,0,0,15.6
+269502,0,0,0,15.6
+269503,0,0,0,15.6
+269504,0,0,0,15.6
+269505,0,0,0,15.6
+269506,0,0,0,15.6
+269507,0,0,0,15.6
+269508,0,0,0,15.6
+269509,0,0,0,15.6
+269510,0,0,0,15.6
+269511,0,0,661394.3682,15.6
+269512,0,0,0,15.6
+269513,0,0,0,15.6
+269514,0,0,0,15.6
+269515,0,366170.6454,0,15.6
+269516,0,0,0,15.6
+269517,0,0,0,15.6
+269518,0,0,0,15.6
+269519,0,0,0,15.6
+269520,340409.3726,0,0,17.8
+269521,0,0,0,17.8
+269522,0,0,0,17.8
+269523,0,0,0,17.8
+269524,0,0,0,17.8
+269525,0,0,0,17.8
+269526,0,0,0,17.8
+269527,0,0,0,17.8
+269528,0,0,0,17.8
+269529,0,0,0,17.8
+269530,0,0,0,17.8
+269531,0,0,0,17.8
+269532,0,0,0,17.8
+269533,0,0,0,17.8
+269534,0,0,0,17.8
+269535,0,0,0,17.8
+269536,0,0,0,17.8
+269537,3148.285425,0,0,17.8
+269538,11213.51713,0,0,17.8
+269539,5958.733964,0,0,17.8
+269540,8060.248297,0,0,17.8
+269541,8276.327971,0,0,17.8
+269542,8705.801503,0,0,17.8
+269543,8812.622251,0,0,17.8
+269544,9237.772808,306.1888402,661229.9713,17.8
+269545,9343.536259,158.7482188,0,17.8
+269546,9659.596401,248.0023597,0,17.8
+269547,9869.294069,248.0023622,0,17.8
+269548,10078.19903,291.726847,0,17.8
+269549,10390.09608,365449.4581,0,17.8
+269550,10493.67793,0,0,17.8
+269551,10803.29139,0,0,17.8
+269552,11008.76978,0,0,17.8
+269553,11111.23353,0,0,17.8
+269554,351928.1078,0,0,17.8
+269555,11519.28094,0,0,17.8
+269556,11823.4506,0,0,17.8
+269557,12025.35834,0,0,17.8
+269558,0,0,0,17.8
+269559,0,0,0,17.8
+269560,0,0,0,17.8
+269561,0,0,0,17.8
+269562,0,0,0,17.8
+269563,0,0,0,17.8
+269564,0,0,0,17.8
+269565,0,0,0,17.8
+269566,0,0,0,17.8
+269567,0,0,0,17.8
+269568,0,0,0,17.8
+269569,0,334.9569689,0,17.8
+269570,0,448.1945103,0,17.8
+269571,0,349.2668889,0,17.8
+269572,0,406.0497746,0,17.8
+269573,0,420.1381713,0,17.8
+269574,0,448.194516,0,17.8
+269575,0,476.097101,0,17.8
+269576,0,448.194516,0,17.8
+269577,0,503.8532901,0,17.8
+269578,0,489.9930648,661392.1025,17.8
+269579,0,503.8532953,0,17.8
+269580,0,531.4696604,0,20
+269581,12465.63021,649038.683,0,20
+269582,3003.659074,2680.078096,0,20
+269583,40167.4657,5925.585437,0,20
+269584,39628.83262,6870.950318,0,20
+269585,42716.30849,76415.61993,0,20
+269586,61485.76248,32393.61947,0,20
+269587,49175.61445,40799.40436,0,20
+269588,70001.45576,41858.85151,0,20
+269589,59327.5083,41400.08899,0,20
+269590,62447.93163,41500.30897,0,20
+269591,62106.35955,41480.21173,0,20
+269592,62103.27684,41299.06816,0,20
+269593,61598.07346,40956.43392,0,20
+269594,65305.12876,41229.74692,0,20
+269595,63237.80573,40748.03639,0,20
+269596,63135.32864,41056.97616,0,20
+269597,63321.85215,40683.69667,0,20
+269598,62661.36701,40643.70153,0,20
+269599,62616.21974,40703.44961,0,20
+269600,62357.1081,40260.63556,0,20
+269601,61989.55266,40797.52802,0,20
+269602,62286.88594,40083.3055,0,20
+269603,61710.65774,40414.4145,0,20
+269604,61601.54986,40058.90208,0,20
+269605,61885.86867,40058.90019,0,20
+269606,61034.75322,40152.06067,0,20
+269607,61334.51048,39835.78432,0,20
+269608,61065.44397,40152.07363,0,20
+269609,60718.96814,39469.33924,0,20
+269610,60657.0092,39735.1043,0,20
+269611,60209.43221,39806.80131,0,20
+269612,59855.86411,39374.8522,0,20
+269613,59307.79904,39525.70364,0,20
+269614,58936.27769,39407.59603,0,20
+269615,58547.22563,39315.74195,0,20
+269616,57995.18716,39141.96233,0,20
+269617,57693.48513,39158.03548,0,20
+269618,56937.0685,39258.84514,0,20
+269619,55249.55833,38793.68774,0,20
+269620,53705.25913,39082.36675,0,20
+269621,53336.04206,38869.45047,0,20
+269622,52680.20937,38910.26382,0,20
+269623,52009.76186,38503.81237,0,20
+269624,51370.69385,38813.19532,0,20
+269625,50684.83708,38519.68975,0,20
+269626,49957.31589,38619.93126,0,20
+269627,49366.97282,38426.62972,0,20
+269628,48452.41802,38248.25724,0,20
+269629,48029.4676,38579.09231,0,20
+269630,47129.60236,37901.03152,0,20
+269631,46277.30978,38343.3611,0,20
+269632,45944.47209,38170.67348,0,20
+269633,44779.82323,37996.22042,0,20
+269634,44142.86154,37954.71896,0,20
+269635,43412.98835,37933.49894,0,20
+269636,42519.45118,37760.20836,0,20
+269637,42112.273,37759.52344,0,20
+269638,40972.98595,37544.16885,0,20
+269639,41350.36039,37874.6868,0,20
+269640,40843.62977,37327.52515,0,21
+269641,34766.97048,33213.12894,0,21
+269642,33655.88444,32480.26494,0,21
+269643,33680.22259,32301.24175,0,21
+269644,33084.77528,32100.78324,0,21
+269645,32770.81313,32063.62326,0,21
+269646,32667.30386,31899.98848,0,21
+269647,32200.44303,31541.54485,0,21
+269648,32247.46376,31698.85949,0,21
+269649,31786.52686,31661.62724,0,21
+269650,31655.11887,31138.26992,0,21
+269651,31358.04575,31300.80119,0,21
+269652,31170.14461,31116.98411,0,21
+269653,30924.93755,30896.23178,0,21
+269654,30557.46086,31220.88628,0,21
+269655,30630.07933,30370.34678,0,21
+269656,30010.66944,30874.90657,0,21
+269657,30099.80074,30493.31749,0,21
+269658,29620.30187,30468.87924,0,21
+269659,29477.79577,30311.51987,0,21
+269660,29274.59255,30249.2741,0,21
+269661,28871.98298,30249.27137,0,21
+269662,28813.70752,29920.15766,0,21
+269663,28349.73092,30007.76366,0,21
+269664,28193.87303,29721.3538,0,21
+269665,27996.09981,29819.58615,0,21
+269666,27659.27458,29636.5355,0,21
+269667,27528.02314,29479.13392,0,21
+269668,27060.84331,29409.952,0,21
+269669,26972.21502,29415.46455,0,21
+269670,26568.3166,29226.25612,0,21
+269671,26450.6783,29047.20021,0,21
+269672,26008.18227,29210.15296,0,21
+269673,25975.67525,28798.43544,0,21
+269674,25441.65999,28982.76982,0,21
+269675,25439.61195,28776.68695,0,21
+269676,24886.01763,28776.68436,0,21
+269677,24906.03548,28390.87359,0,21
+269678,24355.66859,28733.07506,0,21
+269679,24257.47129,28369.08701,0,21
+269680,23931.64308,28363.41149,0,21
+269681,23680.50193,28280.8716,0,21
+269682,23461.24275,28184.10107,0,21
+269683,23013.34474,28095.20725,0,21
+269684,22848.15844,27932.50319,0,21
+269685,22518.11367,27910.55658,0,21
+269686,22373.4093,27910.55246,0,21
+269687,21918.12591,27662.83193,0,21
+269688,21645.51294,27702.5698,0,21
+269689,21542.58517,27478.0147,0,21
+269690,21164.72852,27516.23338,0,21
+269691,20689.72493,27455.94372,0,21
+269692,20656.32193,27245.12264,0,21
+269693,20305.52976,27247.15684,0,21
+269694,20026.54198,27060.14085,0,21
+269695,19764.79383,27043.90017,0,21
+269696,19417.38073,27060.13554,0,21
+269697,19124.12766,26624.48744,0,21
+269698,18766.86304,27021.74084,0,21
+269699,18799.19629,26624.48143,0,21
+269700,18463.86983,26602.24254,0,21
+269701,2806.513635,728.2345766,0,21
+269702,1669.341305,448.18575,0,21
+269703,1503.600656,420.1333882,0,21
+269704,1038.757942,363.5255849,0,21
+269705,997.5329254,334.9534499,0,21
+269706,983.7300376,291.7239211,0,21
+269707,956.0300141,277.2072725,0,21
+269708,928.2025037,218.5411594,0,21
+269709,914.2402035,218.5412001,0,21
+269710,886.2162183,158.7467616,0,21
+269711,872.1497992,158.7468015,0,21
+269712,829.7582038,97.45871663,0,21
+269713,829.7581879,97.45869021,0,21
+269714,801.320047,66.0333514,0,21
+269715,772.7368506,17.2429925,0,21
+269716,758.3896208,0,0,21
+269717,729.5813035,0,0,21
+269718,729.581296,0,0,21
+269719,671.4932398,0,0,21
+269720,686.0763459,0,0,21
+269721,642.1742591,0,0,21
+269722,627.5046451,0,0,21
+269723,612.7370885,0,0,21
+269724,583.1005794,0,0,21
+269725,568.2133746,0,0,21
+269726,538.2958823,0,0,21
+269727,523.2641429,0,0,21
+269728,508.1823159,0,0,21
+269729,477.8637895,0,0,21
+269730,462.6245429,0,0,21
+269731,431.9765768,0,0,21
+269732,431.9807491,0,0,21
+269733,401.1024213,0,0,21
+269734,369.9771099,0,0,21
+269735,369.977148,0,0,21
+269736,338.5882446,0,0,21
+269737,322.7889779,0,0,21
+269738,290.9668053,0,0,21
+269739,290.9668405,0,0,21
+269740,258.8242662,0,0,21
+269741,242.6228358,0,0,21
+269742,226.3283306,0,0,21
+269743,193.4372787,0,0,21
+269744,193.4373081,0,0,21
+269745,160.0951449,0,0,21
+269746,143.2314328,0,0,21
+269747,134.7461022,0,0,21
+269748,109.0520784,0,0,21
+269749,82.94361092,0,0,21
+269750,74.13124465,0,0,21
+269751,56.30807525,0,0,21
+269752,19.54816511,0,0,21
+269753,19.54816551,0,0,21
+269754,0,0,0,21
+269755,0,0,0,21
+269756,0,0,0,21
+269757,0,0,0,21
+269758,0,0,0,21
+269759,0,0,0,21
+269760,0,0,0,21
+269761,0,0,0,21
+269762,0,0,0,21
+269763,0,0,0,21
+269764,0,0,0,21
+269765,0,0,0,21
+269766,0,0,0,21
+269767,0,0,0,21
+269768,0,0,0,21
+269769,0,0,0,21
+269770,0,0,0,21
+269771,0,0,0,21
+269772,0,0,0,21
+269773,0,0,0,21
+269774,0,0,0,21
+269775,0,0,0,21
+269776,0,0,0,21
+269777,0,0,0,21
+269778,0,0,0,21
+269779,0,0,0,21
+269780,0,0,0,21
+269781,0,0,0,21
+269782,0,0,0,21
+269783,0,0,0,21
+269784,0,0,0,21
+269785,0,0,0,21
+269786,0,0,0,21
+269787,0,0,0,21
+269788,0,0,0,21
+269789,0,0,0,21
+269790,0,0,0,21
+269791,0,0,0,21
+269792,0,0,0,21
+269793,0,0,0,21
+269794,0,0,0,21
+269795,0,0,0,21
+269796,0,0,0,21
+269797,0,0,0,21
+269798,0,0,0,21
+269799,0,0,0,21
+269800,0,0,0,21
+269801,0,0,0,21
+269802,0,0,0,21
+269803,0,0,0,21
+269804,0,0,0,21
+269805,0,0,0,21
+269806,0,0,0,21
+269807,0,0,0,21
+269808,0,0,0,21
+269809,0,0,0,21
+269810,0,0,0,21
+269811,0,0,0,21
+269812,0,0,0,21
+269813,0,0,0,21
+269814,0,0,0,21
+269815,0,0,0,21
+269816,0,0,0,21
+269817,0,0,0,21
+269818,0,0,0,21
+269819,0,0,0,21
+269820,0,0,0,21
+269821,0,0,0,21
+269822,0,0,0,21
+269823,0,0,0,21
+269824,0,0,0,21
+269825,0,0,0,21
+269826,0,0,0,21
+269827,0,0,0,21
+269828,0,0,0,21
+269829,0,0,0,21
+269830,0,0,0,21
+269831,0,0,0,21
+269832,0,0,0,21
+269833,0,0,0,21
+269834,0,0,0,21
+269835,0,0,0,21
+269836,0,0,0,21
+269837,0,0,0,21
+269838,0,0,0,21
+269839,0,0,0,21
+269840,0,0,0,21
+269841,0,0,0,21
+269842,0,0,0,21
+269843,0,0,0,21
+269844,0,0,0,21
+269845,0,0,0,21
+269846,0,0,0,21
+269847,0,0,0,21
+269848,0,0,0,21
+269849,0,0,0,21
+269850,0,0,0,21
+269851,0,0,0,21
+269852,0,0,0,21
+269853,0,0,0,21
+269854,0,0,0,21
+269855,0,0,0,21
+269856,0,0,0,21
+269857,0,0,0,21
+269858,0,0,0,21
+269859,0,0,0,21
+269860,0,0,0,21
+269861,0,0,0,21
+269862,0,0,0,21
+269863,0,0,0,21
+269864,0,0,0,21
+269865,0,0,0,21
+269866,0,0,0,21
+269867,0,0,0,21
+269868,0,0,0,21
+269869,0,0,0,21
+269870,0,0,0,21
+269871,0,0,0,21
+269872,0,0,0,21
+269873,0,0,0,21
+269874,0,0,0,21
+269875,0,0,0,21
+269876,0,0,0,21
+269877,0,0,0,21
+269878,0,0,0,21
+269879,0,0,0,21
+269880,0,0,0,21
+269881,0,0,0,21
+269882,0,0,0,21
+269883,0,0,0,21
+269884,0,0,0,21
+269885,0,0,0,21
+269886,0,0,0,21
+269887,0,0,0,21
+269888,0,0,0,21
+269889,0,0,0,21
+269890,0,0,0,21
+269891,0,0,0,21
+269892,0,0,0,21
+269893,0,0,0,21
+269894,0,0,0,21
+269895,0,0,0,21
+269896,0,0,0,21
+269897,0,0,0,21
+269898,0,0,0,21
+269899,0,0,0,21
+269900,0,0,0,21
+269901,0,0,0,21
+269902,0,0,0,21
+269903,0,0,0,21
+269904,0,0,0,21
+269905,0,0,0,21
+269906,0,0,0,21
+269907,0,0,0,21
+269908,0,0,0,21
+269909,0,0,0,21
+269910,0,0,0,21
+269911,0,0,0,21
+269912,0,0,0,21
+269913,0,0,0,21
+269914,0,0,0,21
+269915,0,0,0,21
+269916,0,0,0,21
+269917,0,0,0,21
+269918,0,0,0,21
+269919,0,0,0,21
+269920,0,0,0,21
+269921,0,0,0,21
+269922,0,0,0,21
+269923,0,0,0,21
+269924,0,0,0,21
+269925,0,0,0,21
+269926,0,0,0,21
+269927,0,0,0,21
+269928,0,0,0,21
+269929,0,0,0,21
+269930,0,0,0,21
+269931,0,0,0,21
+269932,0,0,0,21
+269933,0,0,0,21
+269934,0,0,0,21
+269935,0,0,0,21
+269936,0,0,0,21
+269937,0,0,0,21
+269938,0,0,0,21
+269939,0,0,0,21
+269940,0,0,0,21
+269941,0,0,0,21
+269942,0,0,0,21
+269943,0,0,0,21
+269944,0,0,0,21
+269945,0,0,0,21
+269946,0,0,0,21
+269947,0,0,0,21
+269948,0,0,0,21
+269949,0,0,0,21
+269950,0,0,0,21
+269951,0,0,0,21
+269952,0,0,0,21
+269953,0,0,0,21
+269954,0,0,0,21
+269955,0,0,0,21
+269956,0,0,0,21
+269957,0,0,0,21
+269958,0,0,0,21
+269959,0,0,0,21
+269960,0,0,0,21
+269961,0,0,0,21
+269962,0,0,0,21
+269963,0,0,0,21
+269964,0,0,0,21
+269965,0,0,0,21
+269966,0,0,0,21
+269967,0,0,0,21
+269968,0,0,0,21
+269969,0,0,0,21
+269970,0,0,0,21
+269971,0,0,0,21
+269972,0,0,0,21
+269973,0,0,0,21
+269974,0,0,0,21
+269975,0,0,0,21
+269976,0,0,0,21
+269977,0,0,0,21
+269978,0,0,0,21
+269979,0,0,0,21
+269980,0,0,0,21
+269981,0,0,0,21
+269982,0,0,0,21
+269983,0,0,0,21
+269984,0,0,0,21
+269985,0,0,0,21
+269986,0,0,0,21
+269987,0,0,0,21
+269988,0,0,0,21
+269989,0,0,0,21
+269990,0,0,0,21
+269991,0,0,0,21
+269992,0,0,0,21
+269993,0,0,0,21
+269994,0,0,0,21
+269995,0,0,0,21
+269996,0,0,0,21
+269997,0,0,0,21
+269998,0,0,0,21
+269999,0,0,0,21
+270000,0,0,0,21
+270001,0,0,0,21
+270002,0,0,0,21
+270003,0,0,0,21
+270004,0,0,0,21
+270005,0,0,0,21
+270006,0,0,0,21
+270007,0,0,0,21
+270008,0,0,0,21
+270009,0,0,0,21
+270010,0,0,0,21
+270011,0,0,0,21
+270012,0,0,0,21
+270013,0,0,0,21
+270014,0,0,0,21
+270015,0,0,0,21
+270016,0,0,0,21
+270017,0,0,0,21
+270018,0,0,0,21
+270019,0,0,0,21
+270020,0,0,0,21
+270021,0,0,0,21
+270022,0,0,0,21
+270023,0,0,0,21
+270024,0,0,0,21
+270025,0,0,0,21
+270026,0,0,0,21
+270027,0,0,0,21
+270028,0,0,0,21
+270029,0,0,0,21
+270030,0,0,0,21
+270031,0,0,0,21
+270032,0,0,0,21
+270033,0,0,0,21
+270034,0,0,0,21
+270035,0,0,0,21
+270036,0,0,0,21
+270037,0,0,0,21
+270038,0,0,0,21
+270039,0,0,0,21
+270040,0,0,0,21
+270041,0,0,0,21
+270042,0,0,0,21
+270043,0,0,0,21
+270044,0,0,0,21
+270045,0,0,0,21
+270046,0,0,0,21
+270047,0,0,0,21
+270048,0,0,0,21
+270049,0,0,0,21
+270050,0,0,0,21
+270051,0,0,0,21
+270052,0,0,0,21
+270053,0,0,0,21
+270054,0,0,0,21
+270055,0,0,0,21
+270056,0,0,0,21
+270057,0,0,0,21
+270058,0,0,0,21
+270059,0,0,0,21
+270060,0,0,0,21
+270061,0,0,0,21
+270062,0,0,0,21
+270063,0,0,0,21
+270064,0,0,0,21
+270065,0,0,0,21
+270066,0,0,0,21
+270067,0,0,0,21
+270068,0,0,0,21
+270069,0,0,0,21
+270070,0,0,0,21
+270071,0,0,0,21
+270072,0,0,0,21
+270073,0,0,0,21
+270074,0,0,0,21
+270075,0,0,0,21
+270076,0,0,0,21
+270077,0,0,0,21
+270078,0,0,0,21
+270079,0,0,0,21
+270080,0,0,0,21
+270081,0,0,0,21
+270082,0,0,0,21
+270083,0,0,0,21
+270084,0,0,0,21
+270085,0,0,0,21
+270086,0,0,0,21
+270087,0,0,0,21
+270088,0,0,0,21
+270089,0,0,0,21
+270090,0,0,0,21
+270091,0,0,0,21
+270092,0,0,0,21
+270093,0,0,0,21
+270094,0,0,0,21
+270095,0,0,0,21
+270096,0,0,0,21
+270097,0,0,0,21
+270098,0,0,0,21
+270099,0,0,0,21
+270100,0,0,0,21
+270101,0,0,0,21
+270102,0,0,0,21
+270103,0,0,0,21
+270104,0,0,0,21
+270105,0,0,0,21
+270106,0,0,0,21
+270107,0,0,0,21
+270108,0,0,0,21
+270109,0,0,0,21
+270110,0,0,0,21
+270111,0,0,0,21
+270112,0,0,0,21
+270113,0,0,0,21
+270114,0,0,0,21
+270115,0,0,0,21
+270116,0,0,0,21
+270117,0,0,0,21
+270118,0,0,0,21
+270119,0,0,0,21
+270120,0,0,0,21
+270121,0,0,0,21
+270122,0,0,0,21
+270123,0,0,0,21
+270124,0,0,0,21
+270125,0,0,0,21
+270126,0,0,0,21
+270127,0,0,0,21
+270128,0,0,0,21
+270129,0,0,0,21
+270130,0,0,0,21
+270131,0,0,0,21
+270132,0,0,0,21
+270133,0,0,0,21
+270134,0,0,0,21
+270135,0,0,0,21
+270136,0,0,0,21
+270137,0,0,0,21
+270138,0,0,0,21
+270139,0,0,0,21
+270140,0,0,0,21
+270141,0,0,0,21
+270142,0,0,0,21
+270143,0,0,0,21
+270144,0,0,0,21
+270145,0,0,0,21
+270146,0,0,0,21
+270147,0,0,0,21
+270148,0,0,0,21
+270149,0,0,0,21
+270150,0,0,0,21
+270151,0,0,0,21
+270152,0,0,0,21
+270153,0,0,0,21
+270154,0,0,0,21
+270155,0,0,0,21
+270156,0,0,0,21
+270157,0,0,0,21
+270158,0,0,0,21
+270159,0,0,0,21
+270160,0,0,0,21
+270161,0,0,0,21
+270162,0,0,0,21
+270163,0,0,0,21
+270164,0,0,0,21
+270165,0,0,0,21
+270166,0,0,0,21
+270167,0,0,0,21
+270168,0,0,0,21
+270169,0,0,0,21
+270170,0,0,0,21
+270171,0,0,0,21
+270172,0,0,0,21
+270173,0,0,0,21
+270174,0,0,0,21
+270175,0,0,0,21
+270176,0,0,0,21
+270177,0,0,0,21
+270178,0,0,0,21
+270179,0,0,0,21
+270180,0,0,0,21
+270181,0,0,0,21
+270182,0,0,0,21
+270183,0,0,0,21
+270184,0,0,0,21
+270185,0,0,0,21
+270186,0,0,0,21
+270187,0,0,0,21
+270188,0,0,0,21
+270189,0,0,0,21
+270190,0,0,0,21
+270191,0,0,0,21
+270192,0,0,0,21
+270193,0,0,0,21
+270194,0,0,0,21
+270195,0,0,0,21
+270196,0,0,0,21
+270197,0,0,0,21
+270198,0,0,0,21
+270199,0,0,0,21
+270200,0,0,0,21
+270201,0,0,0,21
+270202,0,0,0,21
+270203,0,0,0,21
+270204,0,0,0,21
+270205,0,0,0,21
+270206,0,0,0,21
+270207,0,0,0,21
+270208,0,0,0,21
+270209,0,0,0,21
+270210,0,0,0,21
+270211,0,0,0,21
+270212,0,0,0,21
+270213,0,0,0,21
+270214,0,0,0,21
+270215,0,0,0,21
+270216,0,0,0,21
+270217,0,0,0,21
+270218,0,0,0,21
+270219,0,0,0,21
+270220,0,0,0,21
+270221,0,0,0,21
+270222,0,0,0,21
+270223,0,0,0,21
+270224,0,0,0,21
+270225,0,0,0,21
+270226,0,0,0,21
+270227,0,0,0,21
+270228,0,0,0,21
+270229,0,0,0,21
+270230,0,0,0,21
+270231,0,0,0,21
+270232,0,0,0,21
+270233,0,0,0,21
+270234,0,0,0,21
+270235,0,0,0,21
+270236,0,0,0,21
+270237,0,0,0,21
+270238,0,0,0,21
+270239,0,0,0,21
+270240,0,0,0,21
+270241,0,0,0,21
+270242,0,0,0,21
+270243,0,0,0,21
+270244,0,0,0,21
+270245,0,0,0,21
+270246,0,0,0,21
+270247,0,0,0,21
+270248,0,0,0,21
+270249,0,0,0,21
+270250,0,0,0,21
+270251,0,0,0,21
+270252,0,0,0,21
+270253,0,0,0,21
+270254,0,0,0,21
+270255,0,0,0,21
+270256,0,0,0,21
+270257,0,0,0,21
+270258,0,0,0,21
+270259,0,0,0,21
+270260,0,0,0,21
+270261,0,0,0,21
+270262,0,0,0,21
+270263,0,0,0,21
+270264,0,0,0,21
+270265,0,0,0,21
+270266,0,0,0,21
+270267,0,0,0,21
+270268,0,0,0,21
+270269,0,0,0,21
+270270,0,0,0,21
+270271,0,0,0,21
+270272,0,0,0,21
+270273,0,0,0,21
+270274,0,0,0,21
+270275,0,0,0,21
+270276,0,0,0,21
+270277,0,0,0,21
+270278,0,0,0,21
+270279,0,0,0,21
+270280,0,0,0,21
+270281,0,0,0,21
+270282,0,0,0,21
+270283,0,0,0,21
+270284,0,0,0,21
+270285,0,0,0,21
+270286,0,0,0,21
+270287,0,0,0,21
+270288,0,0,0,21
+270289,0,0,0,21
+270290,0,0,0,21
+270291,0,0,0,21
+270292,0,0,0,21
+270293,0,0,0,21
+270294,0,0,0,21
+270295,0,0,0,21
+270296,0,0,0,21
+270297,0,0,0,21
+270298,0,0,0,21
+270299,0,0,0,21
+270300,0,0,0,21
+270301,0,0,0,21
+270302,0,0,0,21
+270303,0,0,0,21
+270304,0,0,0,21
+270305,0,0,0,21
+270306,0,0,0,21
+270307,0,0,0,21
+270308,0,0,0,21
+270309,0,0,0,21
+270310,0,0,0,21
+270311,0,0,0,21
+270312,0,0,0,21
+270313,0,0,0,21
+270314,0,0,0,21
+270315,0,0,0,21
+270316,0,0,0,21
+270317,0,0,0,21
+270318,0,0,0,21
+270319,0,0,0,21
+270320,0,0,0,21
+270321,0,0,0,21
+270322,0,0,0,21
+270323,0,0,0,21
+270324,0,0,0,21
+270325,0,0,0,21
+270326,0,0,0,21
+270327,0,0,0,21
+270328,0,0,0,21
+270329,0,0,0,21
+270330,0,0,0,21
+270331,0,0,0,21
+270332,0,0,0,21
+270333,0,0,0,21
+270334,0,0,0,21
+270335,0,0,0,21
+270336,0,0,0,21
+270337,0,0,0,21
+270338,0,0,0,21
+270339,0,0,0,21
+270340,0,0,0,21
+270341,0,0,0,21
+270342,0,0,0,21
+270343,0,0,0,21
+270344,0,0,0,21
+270345,0,0,0,21
+270346,0,0,0,21
+270347,0,0,0,21
+270348,0,0,0,21
+270349,0,0,0,21
+270350,0,0,0,21
+270351,0,0,0,21
+270352,0,0,0,21
+270353,0,0,0,21
+270354,0,0,0,21
+270355,0,0,0,21
+270356,0,0,0,21
+270357,0,0,0,21
+270358,0,0,0,21
+270359,0,0,0,21
+270360,0,0,0,21
+270361,0,0,0,21
+270362,0,0,0,21
+270363,0,0,0,21
+270364,0,0,0,21
+270365,0,0,0,21
+270366,0,0,0,21
+270367,0,0,0,21
+270368,0,0,0,21
+270369,0,0,0,21
+270370,0,0,0,21
+270371,0,0,0,21
+270372,0,0,0,21
+270373,0,0,0,21
+270374,0,0,0,21
+270375,0,0,0,21
+270376,0,0,0,21
+270377,0,0,0,21
+270378,0,0,0,21
+270379,0,0,0,21
+270380,0,0,0,21
+270381,0,0,0,21
+270382,0,0,0,21
+270383,0,0,0,21
+270384,0,0,0,21
+270385,0,0,0,21
+270386,0,0,0,21
+270387,0,0,0,21
+270388,0,0,0,21
+270389,0,0,0,21
+270390,0,0,0,21
+270391,0,0,0,21
+270392,0,0,0,21
+270393,0,0,0,21
+270394,0,0,0,21
+270395,0,0,0,21
+270396,0,0,0,21
+270397,0,0,0,21
+270398,0,0,0,21
+270399,0,0,0,21
+270400,0,0,0,21
+270401,0,0,0,21
+270402,0,0,0,21
+270403,0,0,0,21
+270404,0,0,0,21
+270405,0,0,0,21
+270406,0,0,0,21
+270407,0,0,0,21
+270408,0,0,0,21
+270409,0,0,0,21
+270410,0,0,0,21
+270411,0,0,0,21
+270412,0,0,0,21
+270413,0,0,0,21
+270414,0,0,0,21
+270415,0,0,0,21
+270416,0,0,0,21
+270417,0,0,0,21
+270418,0,0,0,21
+270419,0,0,0,21
+270420,0,0,0,21
+270421,0,0,0,21
+270422,0,0,0,21
+270423,0,0,0,21
+270424,0,0,0,21
+270425,0,0,0,21
+270426,0,0,0,21
+270427,0,0,0,21
+270428,0,0,0,21
+270429,0,0,0,21
+270430,0,0,0,21
+270431,0,0,0,21
+270432,0,0,0,21
+270433,0,0,0,21
+270434,0,0,0,21
+270435,0,0,0,21
+270436,0,0,0,21
+270437,0,0,0,21
+270438,0,0,0,21
+270439,0,0,0,21
+270440,0,0,0,21
+270441,0,0,0,21
+270442,0,0,0,21
+270443,0,0,0,21
+270444,0,0,0,21
+270445,0,0,0,21
+270446,0,0,0,21
+270447,0,0,0,21
+270448,0,0,0,21
+270449,0,0,0,21
+270450,0,0,0,21
+270451,0,0,0,21
+270452,0,0,0,21
+270453,0,0,0,21
+270454,0,0,0,21
+270455,0,0,0,21
+270456,0,0,0,21
+270457,0,0,0,21
+270458,0,0,0,21
+270459,0,0,0,21
+270460,0,0,0,21
+270461,0,0,0,21
+270462,0,0,0,21
+270463,0,0,0,21
+270464,0,0,0,21
+270465,0,0,0,21
+270466,0,0,0,21
+270467,0,0,0,21
+270468,0,0,0,21
+270469,0,0,0,21
+270470,0,0,0,21
+270471,0,0,0,21
+270472,0,0,0,21
+270473,0,0,0,21
+270474,0,0,0,21
+270475,0,0,0,21
+270476,0,0,0,21
+270477,0,0,0,21
+270478,0,0,0,21
+270479,0,0,0,21
+270480,0,0,0,21
+270481,0,0,0,21
+270482,0,0,0,21
+270483,0,0,0,21
+270484,0,0,0,21
+270485,0,0,0,21
+270486,0,0,0,21
+270487,0,0,0,21
+270488,0,0,0,21
+270489,0,0,0,21
+270490,0,0,0,21
+270491,0,0,0,21
+270492,0,0,0,21
+270493,0,0,0,21
+270494,0,0,0,21
+270495,0,0,0,21
+270496,0,0,0,21
+270497,0,0,0,21
+270498,0,0,0,21
+270499,0,0,0,21
+270500,0,0,0,21
+270501,0,0,0,21
+270502,0,0,0,21
+270503,0,0,0,21
+270504,0,0,0,21
+270505,0,0,0,21
+270506,0,0,0,21
+270507,0,0,0,21
+270508,0,0,0,21
+270509,0,0,0,21
+270510,0,0,0,21
+270511,0,0,0,21
+270512,0,0,0,21
+270513,0,0,0,21
+270514,0,0,0,21
+270515,0,0,0,21
+270516,0,0,0,21
+270517,0,0,0,21
+270518,0,0,0,21
+270519,0,0,0,21
+270520,0,0,0,21
+270521,0,0,0,21
+270522,0,0,0,21
+270523,0,0,0,21
+270524,0,0,0,21
+270525,0,0,0,21
+270526,0,0,0,21
+270527,0,0,0,21
+270528,0,0,0,21
+270529,0,0,0,21
+270530,0,0,0,21
+270531,0,0,0,21
+270532,0,0,0,21
+270533,0,0,0,21
+270534,0,0,0,21
+270535,0,0,0,21
+270536,0,0,0,21
+270537,0,0,0,21
+270538,0,0,0,21
+270539,0,0,0,21
+270540,0,0,0,21
+270541,0,0,0,21
+270542,0,0,0,21
+270543,0,0,0,21
+270544,0,0,0,21
+270545,334812.8213,364778.3521,657757.9589,21
+270546,0,0,0,21
+270547,0,0,0,21
+270548,0,0,0,21
+270549,0,0,0,21
+270550,0,0,0,21
+270551,0,0,0,21
+270552,0,0,0,21
+270553,0,0,0,21
+270554,0,0,0,21
+270555,0,0,0,21
+270556,0,0,0,21
+270557,0,0,0,21
+270558,0,0,0,21
+270559,0,0,0,21
+270560,0,0,0,21
+270561,0,0,0,21
+270562,0,0,0,21
+270563,0,0,0,21
+270564,0,0,0,21
+270565,0,0,0,21
+270566,0,0,0,21
+270567,0,0,0,21
+270568,0,0,0,21
+270569,0,0,0,21
+270570,0,0,0,21
+270571,0,0,0,21
+270572,0,0,0,21
+270573,0,0,0,21
+270574,0,0,0,21
+270575,0,0,0,21
+270576,0,0,0,21
+270577,0,0,0,21
+270578,0,0,0,21
+270579,336353.0768,365299.0174,658882.4074,21
+270580,0,0,0,21
+270581,0,0,0,21
+270582,0,0,0,21
+270583,0,0,0,21
+270584,0,0,0,21
+270585,0,0,0,21
+270586,0,0,0,21
+270587,0,0,0,21
+270588,0,0,0,21
+270589,0,0,0,21
+270590,0,0,0,21
+270591,0,0,0,21
+270592,0,0,0,21
+270593,0,0,0,21
+270594,0,0,0,21
+270595,0,0,0,21
+270596,0,0,0,21
+270597,0,0,0,21
+270598,0,0,0,21
+270599,0,0,0,21
+270600,0,0,0,15.6
+270601,0,0,0,15.6
+270602,0,0,0,15.6
+270603,0,0,0,15.6
+270604,0,0,0,15.6
+270605,0,0,0,15.6
+270606,0,0,0,15.6
+270607,0,0,0,15.6
+270608,0,0,0,15.6
+270609,0,0,0,15.6
+270610,0,0,0,15.6
+270611,0,0,0,15.6
+270612,0,0,0,15.6
+270613,335061.8827,365981.9527,659186.624,15.6
+270614,0,0,0,15.6
+270615,0,0,0,15.6
+270616,0,0,0,15.6
+270617,0,0,0,15.6
+270618,0,0,0,15.6
+270619,0,0,0,15.6
+270620,0,0,0,15.6
+270621,0,0,0,15.6
+270622,0,0,0,15.6
+270623,0,0,0,15.6
+270624,0,0,0,15.6
+270625,0,0,0,15.6
+270626,0,0,0,15.6
+270627,0,0,0,15.6
+270628,0,0,0,15.6
+270629,0,0,0,15.6
+270630,0,0,0,15.6
+270631,0,0,0,15.6
+270632,0,0,0,15.6
+270633,0,0,0,15.6
+270634,0,0,0,15.6
+270635,0,0,0,15.6
+270636,0,0,0,15.6
+270637,0,0,0,15.6
+270638,0,0,0,15.6
+270639,0,0,0,15.6
+270640,0,0,0,15.6
+270641,0,0,0,15.6
+270642,0,0,0,15.6
+270643,0,0,0,15.6
+270644,0,0,0,15.6
+270645,0,0,0,15.6
+270646,0,0,0,15.6
+270647,336417.8304,365857.8986,659125.9084,15.6
+270648,0,0,0,15.6
+270649,0,0,0,15.6
+270650,0,0,0,15.6
+270651,0,0,0,15.6
+270652,0,0,0,15.6
+270653,0,0,0,15.6
+270654,0,0,0,15.6
+270655,0,0,0,15.6
+270656,0,0,0,15.6
+270657,0,0,0,15.6
+270658,0,0,0,15.6
+270659,0,0,0,15.6
+270660,0,0,0,15.6
+270661,0,0,0,15.6
+270662,0,0,0,15.6
+270663,0,0,0,15.6
+270664,0,0,0,15.6
+270665,0,0,0,15.6
+270666,0,0,0,15.6
+270667,0,0,0,15.6
+270668,0,0,0,15.6
+270669,0,0,0,15.6
+270670,0,0,0,15.6
+270671,0,0,0,15.6
+270672,0,0,0,15.6
+270673,0,0,0,15.6
+270674,0,0,0,15.6
+270675,0,0,0,15.6
+270676,0,0,0,15.6
+270677,0,0,0,15.6
+270678,0,0,0,15.6
+270679,0,0,0,15.6
+270680,0,0,0,15.6
+270681,335473.48,366219.5329,659356.0252,15.6
+270682,0,0,0,15.6
+270683,0,0,0,15.6
+270684,0,0,0,15.6
+270685,0,0,0,15.6
+270686,0,0,0,15.6
+270687,0,0,0,15.6
+270688,0,0,0,15.6
+270689,0,0,0,15.6
+270690,0,0,0,15.6
+270691,0,0,0,15.6
+270692,0,0,0,15.6
+270693,0,0,0,15.6
+270694,0,0,0,15.6
+270695,0,0,0,15.6
+270696,0,0,0,15.6
+270697,0,0,0,15.6
+270698,0,0,0,15.6
+270699,0,0,0,15.6
+270700,0,0,0,15.6
+270701,0,0,0,15.6
+270702,0,0,0,15.6
+270703,0,0,0,15.6
+270704,0,0,0,15.6
+270705,0,0,0,15.6
+270706,0,0,0,15.6
+270707,0,0,0,15.6
+270708,0,0,0,15.6
+270709,0,0,0,15.6
+270710,0,0,0,15.6
+270711,0,0,0,15.6
+270712,0,0,0,15.6
+270713,0,0,0,15.6
+270714,0,0,0,15.6
+270715,337161.198,366241.4091,659123.0911,15.6
+270716,0,0,0,15.6
+270717,0,0,0,15.6
+270718,0,0,0,15.6
+270719,0,0,0,15.6
+270720,0,0,0,15.6
+270721,0,0,0,15.6
+270722,0,0,0,15.6
+270723,0,0,0,15.6
+270724,0,0,0,15.6
+270725,0,0,0,15.6
+270726,0,0,0,15.6
+270727,0,0,0,15.6
+270728,0,0,0,15.6
+270729,0,0,0,15.6
+270730,0,0,0,15.6
+270731,0,0,0,15.6
+270732,0,0,0,15.6
+270733,0,0,0,15.6
+270734,0,0,0,15.6
+270735,0,0,0,15.6
+270736,0,0,0,15.6
+270737,0,0,0,15.6
+270738,0,0,0,15.6
+270739,0,0,0,15.6
+270740,0,0,0,15.6
+270741,0,0,0,15.6
+270742,0,0,0,15.6
+270743,0,0,0,15.6
+270744,0,0,0,15.6
+270745,0,0,0,15.6
+270746,0,0,0,15.6
+270747,0,0,0,15.6
+270748,0,0,0,15.6
+270749,0,366115.4686,658987.7365,15.6
+270750,335565.4996,0,0,15.6
+270751,0,0,0,15.6
+270752,0,0,0,15.6
+270753,0,0,0,15.6
+270754,0,0,0,15.6
+270755,0,0,0,15.6
+270756,0,0,0,15.6
+270757,0,0,0,15.6
+270758,0,0,0,15.6
+270759,0,0,0,15.6
+270760,0,0,0,15.6
+270761,0,0,0,15.6
+270762,0,0,0,15.6
+270763,0,0,0,15.6
+270764,0,0,0,15.6
+270765,0,0,0,15.6
+270766,0,0,0,15.6
+270767,0,0,0,15.6
+270768,0,0,0,15.6
+270769,0,0,0,15.6
+270770,0,0,0,15.6
+270771,0,0,0,15.6
+270772,0,0,0,15.6
+270773,0,0,0,15.6
+270774,0,0,0,15.6
+270775,0,0,0,15.6
+270776,0,0,0,15.6
+270777,0,0,0,15.6
+270778,0,0,0,15.6
+270779,0,0,0,15.6
+270780,0,0,0,15.6
+270781,0,0,0,15.6
+270782,0,0,0,15.6
+270783,0,366935.1805,658841.2538,15.6
+270784,0,0,0,15.6
+270785,336990.681,0,0,15.6
+270786,0,0,0,15.6
+270787,0,0,0,15.6
+270788,0,0,0,15.6
+270789,0,0,0,15.6
+270790,0,0,0,15.6
+270791,0,0,0,15.6
+270792,0,0,0,15.6
+270793,0,0,0,15.6
+270794,0,0,0,15.6
+270795,0,0,0,15.6
+270796,0,0,0,15.6
+270797,0,0,0,15.6
+270798,0,0,0,15.6
+270799,0,0,0,15.6
+270800,0,0,0,15.6
+270801,0,0,0,15.6
+270802,0,0,0,15.6
+270803,0,0,0,15.6
+270804,0,0,0,15.6
+270805,0,0,0,15.6
+270806,0,0,0,15.6
+270807,0,0,0,15.6
+270808,0,0,0,15.6
+270809,0,0,0,15.6
+270810,0,0,0,15.6
+270811,0,0,0,15.6
+270812,0,0,0,15.6
+270813,0,0,0,15.6
+270814,0,0,0,15.6
+270815,0,0,0,15.6
+270816,0,0,0,15.6
+270817,0,365869.698,658813.5253,15.6
+270818,0,0,0,15.6
+270819,0,0,0,15.6
+270820,336009.7847,0,0,15.6
+270821,0,0,0,15.6
+270822,0,0,0,15.6
+270823,0,0,0,15.6
+270824,0,0,0,15.6
+270825,0,0,0,15.6
+270826,0,0,0,15.6
+270827,0,0,0,15.6
+270828,0,0,0,15.6
+270829,0,0,0,15.6
+270830,0,0,0,15.6
+270831,0,0,0,15.6
+270832,0,0,0,15.6
+270833,0,0,0,15.6
+270834,0,0,0,15.6
+270835,0,0,0,15.6
+270836,0,0,0,15.6
+270837,0,0,0,15.6
+270838,0,0,0,15.6
+270839,0,0,0,15.6
+270840,0,0,0,15.6
+270841,0,0,0,15.6
+270842,0,0,0,15.6
+270843,0,0,0,15.6
+270844,0,0,0,15.6
+270845,0,0,0,15.6
+270846,0,0,0,15.6
+270847,0,0,0,15.6
+270848,0,0,0,15.6
+270849,0,0,0,15.6
+270850,0,0,0,15.6
+270851,0,366625.7919,658762.9151,15.6
+270852,0,0,0,15.6
+270853,0,0,0,15.6
+270854,0,0,0,15.6
+270855,336171.427,0,0,15.6
+270856,0,0,0,15.6
+270857,0,0,0,15.6
+270858,0,0,0,15.6
+270859,0,0,0,15.6
+270860,0,0,0,15.6
+270861,0,0,0,15.6
+270862,0,0,0,15.6
+270863,0,0,0,15.6
+270864,0,0,0,15.6
+270865,0,0,0,15.6
+270866,0,0,0,15.6
+270867,0,0,0,15.6
+270868,0,0,0,15.6
+270869,0,0,0,15.6
+270870,0,0,0,15.6
+270871,0,0,0,15.6
+270872,0,0,0,15.6
+270873,0,0,0,15.6
+270874,0,0,0,15.6
+270875,0,0,0,15.6
+270876,0,0,0,15.6
+270877,0,0,0,15.6
+270878,0,0,0,15.6
+270879,0,0,0,15.6
+270880,0,0,0,15.6
+270881,0,0,0,15.6
+270882,0,0,0,15.6
+270883,0,0,0,15.6
+270884,0,0,0,15.6
+270885,0,367273.557,657839.8485,15.6
+270886,0,0,0,15.6
+270887,0,0,0,15.6
+270888,0,0,0,15.6
+270889,0,0,0,15.6
+270890,337617.5311,0,0,15.6
+270891,0,0,0,15.6
+270892,0,0,0,15.6
+270893,0,0,0,15.6
+270894,0,0,0,15.6
+270895,0,0,0,15.6
+270896,0,0,0,15.6
+270897,0,0,0,15.6
+270898,0,0,0,15.6
+270899,0,0,0,15.6
+270900,0,0,0,15.6
+270901,0,0,0,15.6
+270902,0,0,0,15.6
+270903,0,0,0,15.6
+270904,0,0,0,15.6
+270905,0,0,0,15.6
+270906,0,0,0,15.6
+270907,0,0,0,15.6
+270908,0,0,0,15.6
+270909,0,0,0,15.6
+270910,0,0,0,15.6
+270911,0,0,0,15.6
+270912,0,0,0,15.6
+270913,0,0,0,15.6
+270914,0,0,0,15.6
+270915,0,0,0,15.6
+270916,0,0,0,15.6
+270917,0,0,0,15.6
+270918,0,0,658207.6137,15.6
+270919,0,366525.2154,0,15.6
+270920,0,0,0,15.6
+270921,0,0,0,15.6
+270922,0,0,0,15.6
+270923,0,0,0,15.6
+270924,335397.3154,0,0,15.6
+270925,0,0,0,15.6
+270926,0,0,0,15.6
+270927,0,0,0,15.6
+270928,0,0,0,15.6
+270929,0,0,0,15.6
+270930,0,0,0,15.6
+270931,0,0,0,15.6
+270932,0,0,0,15.6
+270933,0,0,0,15.6
+270934,0,0,0,15.6
+270935,0,0,0,15.6
+270936,0,0,0,15.6
+270937,0,0,0,15.6
+270938,0,0,0,15.6
+270939,0,0,0,15.6
+270940,0,0,0,15.6
+270941,0,0,0,15.6
+270942,0,0,0,15.6
+270943,0,0,0,15.6
+270944,0,0,0,15.6
+270945,0,0,0,15.6
+270946,0,0,0,15.6
+270947,0,0,0,15.6
+270948,0,0,0,15.6
+270949,0,0,0,15.6
+270950,0,0,0,15.6
+270951,0,0,658869.1928,15.6
+270952,0,0,0,15.6
+270953,0,366833.6354,0,15.6
+270954,0,0,0,15.6
+270955,0,0,0,15.6
+270956,0,0,0,15.6
+270957,0,0,0,15.6
+270958,336859.3685,0,0,15.6
+270959,0,0,0,15.6
+270960,0,0,0,17.8
+270961,0,0,0,17.8
+270962,0,0,0,17.8
+270963,0,0,0,17.8
+270964,0,0,0,17.8
+270965,0,0,0,17.8
+270966,0,0,0,17.8
+270967,0,0,0,17.8
+270968,0,0,0,17.8
+270969,0,0,0,17.8
+270970,0,0,0,17.8
+270971,0,0,0,17.8
+270972,0,0,0,17.8
+270973,0,0,0,17.8
+270974,0,0,0,17.8
+270975,0,0,0,17.8
+270976,0,0,0,17.8
+270977,0,0,0,17.8
+270978,0,0,0,17.8
+270979,0,0,0,17.8
+270980,0,0,0,17.8
+270981,0,0,0,17.8
+270982,0,0,0,17.8
+270983,0,0,0,17.8
+270984,0,0,658763.7534,17.8
+270985,0,0,0,17.8
+270986,0,0,0,17.8
+270987,0,367288.8046,0,17.8
+270988,0,0,0,17.8
+270989,0,0,0,17.8
+270990,0,0,0,17.8
+270991,0,0,0,17.8
+270992,337782.5889,0,0,17.8
+270993,0,0,0,17.8
+270994,0,0,0,17.8
+270995,0,0,0,17.8
+270996,0,0,0,17.8
+270997,0,0,0,17.8
+270998,0,0,0,17.8
+270999,0,0,0,17.8
+271000,0,0,0,17.8
+271001,0,0,0,17.8
+271002,0,0,0,17.8
+271003,0,0,0,17.8
+271004,0,0,0,17.8
+271005,0,0,0,17.8
+271006,0,0,0,17.8
+271007,0,0,0,17.8
+271008,0,0,0,17.8
+271009,0,0,0,17.8
+271010,0,0,0,17.8
+271011,0,0,0,17.8
+271012,0,0,0,17.8
+271013,0,0,0,17.8
+271014,0,0,0,17.8
+271015,0,0,0,17.8
+271016,0,0,0,17.8
+271017,0,0,0,17.8
+271018,0,0,658641.0244,17.8
+271019,0,0,0,17.8
+271020,0,0,0,20
+271021,25670.92496,709816.7102,0,20
+271022,299.2289638,0,0,20
+271023,10493.84743,0,0,20
+271024,9449.228106,0,0,20
+271025,9449.228377,38585.70185,0,20
+271026,9764.689753,48442.23956,0,20
+271027,12156.93128,29049.87249,0,20
+271028,15624.01372,39682.59966,0,20
+271029,15136.23419,38063.23734,0,20
+271030,15371.18116,40453.95674,0,20
+271031,16384.07374,39592.65495,0,20
+271032,16482.94391,40283.88904,0,20
+271033,16709.23256,39997.43879,0,20
+271034,17050.20538,40651.51727,0,20
+271035,17541.02239,40696.56119,0,20
+271036,17464.57935,40727.59013,0,20
+271037,17939.52227,41080.32762,0,20
+271038,18185.76368,41246.66592,0,20
+271039,18315.20143,41333.19343,0,20
+271040,18670.50719,41137.44626,0,20
+271041,18812.16602,42163.74561,0,20
+271042,18949.53619,41552.21709,0,20
+271043,19400.70772,41862.55187,0,20
+271044,19404.77598,42238.52141,0,20
+271045,19689.75922,41937.11298,0,20
+271046,19888.73017,42731.0858,0,20
+271047,19926.93061,42328.0954,0,20
+271048,20390.69807,42430.03862,0,20
+271049,20247.99701,42628.79041,0,20
+271050,20652.16265,42714.61685,0,20
+271051,20646.8455,42665.77545,0,20
+271052,20756.33157,43029.57512,0,20
+271053,20752.81537,43347.91693,0,20
+271054,21002.49589,43088.1835,0,20
+271055,20977.08083,43622.05314,0,20
+271056,21119.00966,43729.60051,0,20
+271057,21084.58191,43849.16175,0,20
+271058,21243.40152,43780.98973,0,20
+271059,21204.92607,44169.00863,0,20
+271060,21234.91624,44184.28985,0,20
+271061,21431.41535,44227.5835,0,20
+271062,21237.21506,44481.43483,0,20
+271063,21337.48605,44300.4059,0,20
+271064,21432.2866,44889.73236,0,20
+271065,21228.34679,44568.85494,0,20
+271066,21546.96207,44983.83753,0,20
+271067,21321.7311,44962.36522,0,20
+271068,21347.6983,45083.1552,0,20
+271069,21401.82531,45034.49912,0,20
+271070,21228.48038,45490.30713,0,20
+271071,21312.2193,45301.91248,0,20
+271072,21202.18976,45722.17201,0,20
+271073,21413.2512,45366.1484,0,20
+271074,20967.15533,45988.73039,0,20
+271075,21293.37159,45787.04259,0,20
+271076,21165.42887,45856.8027,0,20
+271077,20965.64829,46039.00579,0,20
+271078,21154.56954,46276.80371,0,20
+271079,20826.78095,46095.97349,0,20
+271080,20905.31417,46486.44468,0,21
+271081,20586.04824,46354.03768,0,21
+271082,20409.08004,46167.21737,0,21
+271083,20054.21868,46486.86569,0,21
+271084,20167.62515,46424.73146,0,21
+271085,19933.74978,46536.78789,0,21
+271086,20061.0966,46424.73156,0,21
+271087,19829.39256,46362.79311,0,21
+271088,19956.54242,46655.66091,0,21
+271089,19724.4226,46202.88166,0,21
+271090,19721.06419,46829.65572,0,21
+271091,19720.80374,46335.66522,0,21
+271092,19733.5523,46502.49656,0,21
+271093,19510.29524,46565.47394,0,21
+271094,19484.15329,46552.18766,0,21
+271095,19391.34093,46335.661,0,21
+271096,19285.57437,46886.14595,0,21
+271097,19382.02425,46287.95186,0,21
+271098,19059.8895,46517.07792,0,21
+271099,19252.57744,46406.34065,0,21
+271100,18833.71778,46900.66899,0,21
+271101,18820.99334,45959.60073,0,21
+271102,19025.95906,46893.91936,0,21
+271103,18593.43514,46427.43009,0,21
+271104,18704.83385,46427.40361,0,21
+271105,18459.64464,46587.67591,0,21
+271106,18570.87834,46302.20345,0,21
+271107,18136.53037,46587.67585,0,21
+271108,18436.58632,46358.45645,0,21
+271109,18015.0648,46371.1459,0,21
+271110,18098.7764,46365.22144,0,21
+271111,17879.97436,46476.89878,0,21
+271112,17867.9389,45938.60043,0,21
+271113,17758.30588,46497.85376,0,21
+271114,17745.58107,45938.6004,0,21
+271115,17403.4364,45869.22606,0,21
+271116,17513.73698,46350.96967,0,21
+271117,17280.13551,46225.30646,0,21
+271118,17267.41073,45876.22,0,21
+271119,17046.24636,45938.88755,0,21
+271120,17131.0837,46217.52192,0,21
+271121,16797.73563,46256.94093,0,21
+271122,16800.2114,46137.89181,0,21
+271123,16769.28303,46334.77796,0,21
+271124,16439.78364,45753.2501,0,21
+271125,16535.33951,46390.64241,0,21
+271126,16188.9876,45773.39296,0,21
+271127,16285.43735,45816.16756,0,21
+271128,16062.12016,45704.11354,0,21
+271129,15937.96541,45783.61783,0,21
+271130,15906.94972,45376.3004,0,21
+271131,15684.76747,45685.17988,0,21
+271132,15570.43735,45175.38695,0,21
+271133,15430.28567,45355.03089,0,21
+271134,15403.64265,45102.49899,0,21
+271135,15078.95513,44810.21628,0,21
+271136,15174.48441,45053.74485,0,21
+271137,14809.09234,44382.6176,0,21
+271138,14917.32326,44699.13883,0,21
+271139,14442.13674,44379.81692,0,21
+271140,14767.95554,44043.64252,0,21
+271141,7605.401641,34705.09077,0,21
+271142,6777.276452,33664.84167,0,21
+271143,6755.168472,33478.67583,0,21
+271144,6084.738807,33074.57735,0,21
+271145,6052.267745,32716.8774,0,21
+271146,5767.98524,32641.636,0,21
+271147,5349.456284,32355.54153,0,21
+271148,5326.255753,31920.95979,0,21
+271149,4888.725109,31936.0891,0,21
+271150,4591.382332,31460.69711,0,21
+271151,4690.583782,31227.75032,0,21
+271152,4290.089456,31121.09939,0,21
+271153,4524.800711,30879.61856,0,21
+271154,4250.28888,30546.99056,0,21
+271155,4100.964709,30416.504,0,21
+271156,4204.457291,29877.92053,0,21
+271157,3916.272191,29954.75165,0,21
+271158,3916.272576,29732.57632,0,21
+271159,3875.245961,29161.21872,0,21
+271160,3592.762954,29276.27681,0,21
+271161,3730.154057,28992.7112,0,21
+271162,3404.40739,28479.42599,0,21
+271163,3550.882688,28557.11786,0,21
+271164,3248.70805,28118.51609,0,21
+271165,3231.478834,27756.83613,0,21
+271166,3200.228975,27850.38134,0,21
+271167,2930.998838,27609.48839,0,21
+271168,3016.310918,27140.65041,0,21
+271169,2867.122328,27053.81506,0,21
+271170,2721.597966,26473.45411,0,21
+271171,2560.451977,26844.81657,0,21
+271172,2688.03704,26450.68176,0,21
+271173,2274.87412,26325.02839,0,21
+271174,2404.111708,25936.60412,0,21
+271175,2260.845447,26085.3988,0,21
+271176,1985.453676,25959.42266,0,21
+271177,2116.621582,25570.13119,0,21
+271178,1824.949619,25608.59874,0,21
+271179,1824.949588,25352.37725,0,21
+271180,1677.269903,25577.35817,0,21
+271181,1528.149301,25023.21852,0,21
+271182,1513.912358,25202.82815,0,21
+271183,1238.831819,24873.32057,0,21
+271184,1348.774311,24773.28643,0,21
+271185,1069.209878,24850.36043,0,21
+271186,910.258434,24292.62776,0,21
+271187,1040.477583,24435.62117,0,21
+271188,729.5828849,24269.61979,0,21
+271189,729.5828393,24246.56355,0,21
+271190,700.6189155,23741.24102,0,21
+271191,700.6189135,24026.96772,0,21
+271192,671.4945637,23702.4351,0,21
+271193,686.0771153,23543.98971,0,21
+271194,642.2047421,23656.1764,0,21
+271195,656.870718,23284.21954,0,21
+271196,627.4959579,23171.99532,0,21
+271197,612.7436785,23086.73435,0,21
+271198,612.7436839,23109.93748,0,21
+271199,583.105133,22951.02144,0,21
+271200,583.1051619,22713.73627,0,21
+271201,568.2172236,22752.81551,0,21
+271202,553.28234,22491.78724,0,21
+271203,538.2994737,22736.98927,0,21
+271204,523.2676078,22339.83027,0,21
+271205,523.2674306,22308.52338,0,21
+271206,493.052516,22187.44809,0,21
+271207,493.0525367,22292.69714,0,21
+271208,462.6275747,21980.9084,0,21
+271209,477.8666874,22053.93899,0,21
+271210,431.9820201,21980.90841,0,21
+271211,447.3331206,21742.09897,0,21
+271212,416.57278,21917.85897,0,21
+271213,416.5727573,21542.06626,0,21
+271214,401.1036192,21757.9581,0,21
+271215,385.5727206,21502.65228,0,21
+271216,369.978157,21357.49589,0,21
+271217,354.3177282,21565.7595,0,21
+271218,354.317709,21318.12191,0,21
+271219,322.7897829,21302.17039,0,21
+271220,322.7897699,21020.45685,0,21
+271221,306.9167455,21278.64714,0,21
+271222,290.9674207,20964.3615,0,21
+271223,290.9674358,21118.20087,0,21
+271224,258.8245531,20739.453,0,21
+271225,258.8245402,21004.4753,0,21
+271226,242.6230391,20813.1499,0,21
+271227,226.3285126,20803.54488,0,21
+271228,209.9354567,20538.99404,0,21
+271229,193.4374362,20723.4312,0,21
+271230,193.4374257,20531.29647,0,21
+271231,176.8269819,20546.55963,0,21
+271232,160.0952252,20111.09625,0,21
+271233,176.8268806,20045.29611,0,21
+271234,143.2314994,20071.33562,0,21
+271235,160.095231,19576.65908,0,21
+271236,143.2315082,19438.12992,0,21
+271237,126.2226642,19309.61018,0,21
+271238,134.7461696,19007.1994,0,21
+271239,109.0521225,18812.14626,0,21
+271240,109.0521273,18583.92746,0,21
+271241,109.0521267,18583.92053,0,21
+271242,91.69819697,17854.32024,0,21
+271243,74.13126303,17970.17267,0,21
+271244,91.69819825,17814.07145,0,21
+271245,56.30805195,17377.70013,0,21
+271246,74.13125801,17096.56864,0,21
+271247,38.15889961,17156.46999,0,21
+271248,56.30808505,16641.67905,0,21
+271249,28.92490521,16227.57391,0,21
+271250,28.92490667,16419.2721,0,21
+271251,19.54816638,15836.45635,0,21
+271252,19.54816723,15785.39679,0,21
+271253,19.54816713,15586.45082,0,21
+271254,0,15226.32524,0,21
+271255,0,14906.31109,0,21
+271256,0,14815.69418,0,21
+271257,0,14368.49231,0,21
+271258,0,14200.48707,0,21
+271259,0,13955.13276,0,21
+271260,0,13376.56703,0,21
+271261,0,13149.3098,0,21
+271262,0,12935.0626,0,21
+271263,0,12558.29736,0,21
+271264,0,12147.06936,0,21
+271265,0,11930.71747,0,21
+271266,0,11725.77274,0,21
+271267,0,11500.38606,0,21
+271268,0,11047.16558,0,21
+271269,0,10928.80517,0,21
+271270,0,10465.57549,0,21
+271271,0,10440.28923,0,21
+271272,0,9816.578806,0,21
+271273,0,9658.746273,0,21
+271274,0,9543.855167,0,21
+271275,0,8853.264916,0,21
+271276,0,8712.493621,0,21
+271277,0,8239.094735,0,21
+271278,0,7916.112124,0,21
+271279,0,7745.852815,0,21
+271280,0,7450.301016,0,21
+271281,0,6930.183367,0,21
+271282,0,6796.166099,0,21
+271283,0,6458.108964,0,21
+271284,0,5953.190301,0,21
+271285,0,5720.534597,0,21
+271286,0,5591.622306,0,21
+271287,0,4996.560143,0,21
+271288,0,4828.035511,0,21
+271289,0,4312.240885,0,21
+271290,0,4363.091239,0,21
+271291,0,3697.440128,0,21
+271292,0,4110.984493,0,21
+271293,0,3929.269372,0,21
+271294,0,3929.269247,0,21
+271295,0,3679.590154,0,21
+271296,0,3929.268996,0,21
+271297,0,3757.62756,0,21
+271298,0,3902.598995,0,21
+271299,0,3929.268623,0,21
+271300,0,3661.929552,0,21
+271301,0,4093.323375,0,21
+271302,0,3915.946265,0,21
+271303,0,4011.617881,0,21
+271304,0,4203.940374,0,21
+271305,0,3911.528698,0,21
+271306,0,4349.792536,0,21
+271307,0,4332.132431,0,21
+271308,0,4349.79176,0,21
+271309,0,4520.431264,0,21
+271310,0,4586.893695,0,21
+271311,0,4538.090945,0,21
+271312,0,4993.05129,0,21
+271313,0,4792.775826,0,21
+271314,0,5010.710883,0,21
+271315,0,4961.462011,0,21
+271316,0,5342.458325,0,21
+271317,0,5457.39284,0,21
+271318,0,5359.484895,0,21
+271319,0,5707.630971,0,21
+271320,0,5848.166516,0,21
+271321,0,6066.240529,0,21
+271322,0,6527.69425,0,21
+271323,0,6315.025091,0,21
+271324,0,6709.247887,0,21
+271325,0,6972.983371,0,21
+271326,0,7109.793186,0,21
+271327,0,7135.886783,0,21
+271328,0,7398.360958,0,21
+271329,0,7786.876941,0,21
+271330,0,7760.871191,0,21
+271331,0,7999.406633,0,21
+271332,0,8263.190527,0,21
+271333,0,8393.401265,0,21
+271334,0,8583.692397,0,21
+271335,0,8893.431482,0,21
+271336,0,9000.748212,0,21
+271337,0,9283.602999,0,21
+271338,0,9441.567826,0,21
+271339,0,9654.933685,0,21
+271340,0,10075.86797,0,21
+271341,0,10092.9184,0,21
+271342,0,10460.99926,0,21
+271343,0,10503.50292,0,21
+271344,0,10895.48519,0,21
+271345,0,11114.09433,0,21
+271346,0,11277.48597,0,21
+271347,0,11708.64419,0,21
+271348,0,11737.76478,0,21
+271349,0,12087.71614,0,21
+271350,0,12329.27606,0,21
+271351,0,12473.83232,0,21
+271352,0,12570.04581,0,21
+271353,0,12706.23126,0,21
+271354,0,12875.3388,0,21
+271355,0,12731.37023,0,21
+271356,0,13489.69464,0,21
+271357,0,13035.4529,0,21
+271358,0,13506.3591,0,21
+271359,0,13292.1155,0,21
+271360,0,13649.20642,0,21
+271361,0,13674.20492,0,21
+271362,0,13506.35741,0,21
+271363,0,14071.63304,0,21
+271364,0,13665.8183,0,21
+271365,0,14071.63216,0,21
+271366,0,13904.38789,0,21
+271367,0,14426.33986,0,21
+271368,0,13945.88074,0,21
+271369,0,14983.74396,0,21
+271370,0,14941.97603,0,21
+271371,0,15025.83008,0,21
+271372,0,15253.22377,0,21
+271373,0,15494.63734,0,21
+271374,0,15414.92313,0,21
+271375,0,15821.59173,0,21
+271376,0,15839.14819,0,21
+271377,0,16017.89267,0,21
+271378,0,16229.04147,0,21
+271379,0,16365.65282,0,21
+271380,0,16459.8783,0,21
+271381,0,30181.95235,0,21
+271382,0,31672.51174,0,21
+271383,0,31632.44527,0,21
+271384,0,32197.24614,0,21
+271385,0,32657.55676,0,21
+271386,0,32723.70321,0,21
+271387,0,33098.50349,0,21
+271388,0,33270.31054,0,21
+271389,0,33971.70671,0,21
+271390,0,33767.84812,0,21
+271391,0,34303.4151,0,21
+271392,0,34442.54004,0,21
+271393,0,35002.30147,0,21
+271394,0,34612.24398,0,21
+271395,0,35477.2303,0,21
+271396,0,35463.50176,0,21
+271397,0,35954.46276,0,21
+271398,0,36002.08345,0,21
+271399,0,36154.00994,0,21
+271400,0,36502.60043,0,21
+271401,0,36803.93114,0,21
+271402,0,36991.39019,0,21
+271403,0,37310.29764,0,21
+271404,0,37375.16184,0,21
+271405,0,37613.24491,0,21
+271406,0,38038.02723,0,21
+271407,0,37996.13593,0,21
+271408,0,38516.04207,0,21
+271409,0,38499.74305,0,21
+271410,0,38838.91972,0,21
+271411,0,38499.73824,0,21
+271412,0,38575.16951,0,21
+271413,0,37990.01557,0,21
+271414,0,37887.0916,0,21
+271415,0,37347.94646,0,21
+271416,0,37190.39497,0,21
+271417,0,36903.83795,0,21
+271418,0,36128.7245,0,21
+271419,0,35902.18575,0,21
+271420,0,35658.01597,0,21
+271421,0,33915.71638,0,21
+271422,0,33275.5714,0,21
+271423,0,32625.0439,0,21
+271424,0,32313.1561,0,21
+271425,0,31592.39762,0,21
+271426,0,30994.21122,0,21
+271427,0,30269.72437,0,21
+271428,0,29673.504,0,21
+271429,0,29427.62101,0,21
+271430,0,28472.46874,0,21
+271431,0,27875.59728,0,21
+271432,0,27456.01684,0,21
+271433,0,26389.71632,0,21
+271434,0,26055.49047,0,21
+271435,0,25334.68078,0,21
+271436,0,24672.87257,0,21
+271437,0,23870.7524,0,21
+271438,0,23286.18075,0,21
+271439,0,22467.67683,0,21
+271440,0,21856.73599,0,21
+271441,0,20350.11364,0,21
+271442,0,19555.9268,0,21
+271443,0,18655.39311,0,21
+271444,0,17920.14378,0,21
+271445,0,17053.85873,0,21
+271446,0,16360.22075,0,21
+271447,0,15373.20162,0,21
+271448,0,14714.37282,0,21
+271449,0,13816.59163,0,21
+271450,0,12826.32498,0,21
+271451,0,12352.50791,0,21
+271452,0,11828.29759,0,21
+271453,0,11618.72884,0,21
+271454,0,11236.14521,0,21
+271455,0,10905.05228,0,21
+271456,0,10795.72968,0,21
+271457,0,10164.77113,0,21
+271458,0,10069.69754,0,21
+271459,0,9417.233489,0,21
+271460,0,9476.516377,0,21
+271461,0,8970.626445,0,21
+271462,0,8672.449873,0,21
+271463,0,8603.692537,0,21
+271464,0,8043.451426,0,21
+271465,0,7842.209811,0,21
+271466,0,7825.837258,0,21
+271467,0,7215.745744,0,21
+271468,0,7182.860293,0,21
+271469,0,6704.524148,0,21
+271470,0,6550.527738,0,21
+271471,0,6362.139673,0,21
+271472,0,6210.282515,0,21
+271473,0,6051.233557,0,21
+271474,0,6039.140125,0,21
+271475,0,5872.789998,0,21
+271476,0,5726.991224,0,21
+271477,0,5533.444423,0,21
+271478,0,5704.059031,0,21
+271479,0,5386.987175,0,21
+271480,0,5206.251826,0,21
+271481,0,5373.713847,0,21
+271482,0,5206.251709,0,21
+271483,0,5022.624457,0,21
+271484,0,5050.962748,0,21
+271485,0,4865.376581,0,21
+271486,0,4865.735189,0,21
+271487,0,4858.972757,0,21
+271488,0,4690.67937,0,21
+271489,0,4540.438241,0,21
+271490,0,4656.517785,0,21
+271491,0,4398.770431,0,21
+271492,0,4647.167855,0,21
+271493,0,4372.260086,0,21
+271494,0,4833.469698,0,21
+271495,0,4527.610651,0,21
+271496,0,4656.627382,0,21
+271497,0,4353.427823,0,21
+271498,0,4505.49989,0,21
+271499,0,4313.354965,0,21
+271500,0,4015.582641,0,21
+271501,0,4751.867236,0,21
+271502,0,4433.920706,0,21
+271503,0,4249.919262,0,21
+271504,0,4241.155667,0,21
+271505,0,4067.765722,0,21
+271506,0,3714.578434,0,21
+271507,0,3714.578623,0,21
+271508,0,3616.235888,0,21
+271509,0,3178.818741,0,21
+271510,0,3178.818996,0,21
+271511,0,3149.001495,0,21
+271512,0,2782.307109,0,21
+271513,0,2624.977611,0,21
+271514,0,2582.356477,0,21
+271515,0,2413.194201,0,21
+271516,0,2375.906619,0,21
+271517,0,2366.050762,0,21
+271518,0,2180.670959,0,21
+271519,0,2338.314378,0,21
+271520,0,1984.720113,0,21
+271521,0,2281.013249,0,21
+271522,0,1945.821477,0,21
+271523,0,1927.918797,0,21
+271524,0,2084.957127,0,21
+271525,0,1719.164412,0,21
+271526,0,1869.055566,0,21
+271527,0,1868.121149,0,21
+271528,0,1649.734232,0,21
+271529,0,1659.394217,0,21
+271530,0,1639.397084,0,21
+271531,0,1448.153552,0,21
+271532,0,1587.723047,0,21
+271533,0,1335.988735,0,21
+271534,0,1384.071202,0,21
+271535,0,1394.805053,0,21
+271536,0,1211.308198,0,21
+271537,0,1211.308237,0,21
+271538,0,1199.904538,0,21
+271539,0,1199.904585,0,21
+271540,0,1036.583671,0,21
+271541,0,1036.583695,0,21
+271542,0,1036.583734,0,21
+271543,0,1036.583789,0,21
+271544,0,871.5402242,0,21
+271545,0,1036.583856,0,21
+271546,0,704.495014,0,21
+271547,0,954.2927662,0,21
+271548,0,704.4950451,0,21
+271549,0,871.540376,0,21
+271550,0,620.1021291,0,21
+271551,0,704.4951033,0,21
+271552,0,704.4951277,0,21
+271553,0,535.041176,0,21
+271554,0,535.0411598,0,21
+271555,0,535.0411744,0,21
+271556,0,535.0412063,0,21
+271557,0,362.5219088,0,21
+271558,0,535.0412088,0,21
+271559,0,535.0412381,0,21
+271560,0,535.0412324,0,21
+271561,0,0,0,21
+271562,0,0,0,21
+271563,0,0,0,21
+271564,0,0,0,21
+271565,0,0,0,21
+271566,0,0,0,21
+271567,0,0,0,21
+271568,0,0,0,21
+271569,0,0,0,21
+271570,0,0,0,21
+271571,0,0,0,21
+271572,0,0,0,21
+271573,0,0,0,21
+271574,0,0,0,21
+271575,0,0,0,21
+271576,0,0,0,21
+271577,0,0,0,21
+271578,0,0,0,21
+271579,0,0,0,21
+271580,0,0,0,21
+271581,0,0,0,21
+271582,0,0,0,21
+271583,0,0,0,21
+271584,0,0,0,21
+271585,0,0,0,21
+271586,0,0,0,21
+271587,0,0,0,21
+271588,0,0,0,21
+271589,0,0,0,21
+271590,0,0,0,21
+271591,0,0,0,21
+271592,0,0,0,21
+271593,0,0,0,21
+271594,0,0,0,21
+271595,0,0,0,21
+271596,0,535.0409883,0,21
+271597,0,185.6626563,0,21
+271598,0,535.0410015,0,21
+271599,0,535.0409825,0,21
+271600,0,704.4949593,0,21
+271601,0,704.4949723,0,21
+271602,0,871.5402962,0,21
+271603,0,871.5402954,0,21
+271604,0,1118.445824,0,21
+271605,0,1118.445792,0,21
+271606,0,1199.905195,0,21
+271607,0,1522.148991,0,21
+271608,0,1361.708047,0,21
+271609,0,1522.148941,0,21
+271610,0,1839.416909,0,21
+271611,0,1681.351645,0,21
+271612,0,1996.428042,0,21
+271613,0,1996.428019,0,21
+271614,0,2152.45568,0,21
+271615,0,2307.560177,0,21
+271616,0,2461.793806,0,21
+271617,0,2461.793825,0,21
+271618,0,2615.202286,0,21
+271619,0,2919.701363,0,21
+271620,0,2842.523015,0,21
+271621,0,3285.785177,0,21
+271622,0,3155.72403,0,21
+271623,0,3615.272211,0,21
+271624,0,3495.997871,0,21
+271625,0,3941.695243,0,21
+271626,0,3803.587888,0,21
+271627,0,4108.747789,0,21
+271628,0,4137.900781,0,21
+271629,0,4431.01742,0,21
+271630,0,4605.570341,0,21
+271631,0,4605.571256,0,21
+271632,0,5077.722107,0,21
+271633,0,4933.468257,0,21
+271634,0,5383.580517,0,21
+271635,0,5402.234558,0,21
+271636,0,5706.044797,0,21
+271637,0,5866.460249,0,21
+271638,0,6026.349705,0,21
+271639,0,6185.725767,0,21
+271640,0,6466.742053,0,21
+271641,0,6520.978623,0,21
+271642,0,6921.539489,0,21
+271643,0,6957.451438,0,21
+271644,0,7252.424939,0,21
+271645,0,7408.204763,0,21
+271646,0,7563.551377,0,21
+271647,0,7855.418207,0,21
+271648,0,8027.061194,0,21
+271649,0,8163.323316,0,21
+271650,0,8452.261576,0,21
+271651,0,8622.183803,0,21
+271652,0,8604.88944,0,21
+271653,0,8774.366614,0,21
+271654,0,8908.989044,0,21
+271655,0,8926.171284,0,21
+271656,0,9211.589971,0,21
+271657,0,9194.47314,0,21
+271658,0,9245.6706,0,21
+271659,0,9495.725763,0,21
+271660,0,9379.361108,0,21
+271661,0,9645.818661,0,21
+271662,0,9679.678137,0,21
+271663,0,9795.559125,0,21
+271664,0,9812.464219,0,21
+271665,0,9961.766411,0,21
+271666,0,10110.76608,0,21
+271667,0,9961.778426,0,21
+271668,0,10259.41244,0,21
+271669,0,10259.41345,0,21
+271670,0,10391.02711,0,21
+271671,0,10424.37276,0,21
+271672,0,10407.72423,0,21
+271673,0,10686.75322,0,21
+271674,0,10572.30309,0,21
+271675,0,10703.35316,0,21
+271676,0,10834.12531,0,21
+271677,0,10736.41155,0,21
+271678,0,10981.17464,0,21
+271679,0,10997.68044,0,21
+271680,0,11014.14018,0,21
+271681,0,0,0,21
+271682,0,0,0,21
+271683,0,0,0,21
+271684,0,0,0,21
+271685,0,0,0,21
+271686,0,0,0,21
+271687,0,0,0,21
+271688,0,0,0,21
+271689,0,0,0,21
+271690,0,0,0,21
+271691,0,0,0,21
+271692,0,0,0,21
+271693,0,0,0,21
+271694,0,0,0,21
+271695,0,0,0,21
+271696,0,0,0,21
+271697,0,0,0,21
+271698,0,0,0,21
+271699,0,0,0,21
+271700,0,0,0,21
+271701,0,0,0,21
+271702,0,0,0,21
+271703,0,0,0,21
+271704,0,0,0,21
+271705,0,0,0,21
+271706,0,0,0,21
+271707,0,0,0,21
+271708,0,0,0,21
+271709,0,0,0,21
+271710,0,0,0,21
+271711,0,0,0,21
+271712,0,0,0,21
+271713,0,0,0,21
+271714,0,0,0,21
+271715,0,0,0,21
+271716,0,0,0,21
+271717,0,0,0,21
+271718,0,0,0,21
+271719,0,0,0,21
+271720,0,0,0,21
+271721,0,0,0,21
+271722,0,0,0,21
+271723,0,0,0,21
+271724,0,0,0,21
+271725,0,0,0,21
+271726,0,0,0,21
+271727,0,0,0,21
+271728,0,0,0,21
+271729,0,0,0,21
+271730,0,0,0,21
+271731,0,0,0,21
+271732,0,0,0,21
+271733,0,0,0,21
+271734,0,0,0,21
+271735,0,0,0,21
+271736,0,0,0,21
+271737,0,0,0,21
+271738,0,0,0,21
+271739,0,0,0,21
+271740,0,0,0,21
+271741,0,0,0,21
+271742,0,0,0,21
+271743,0,0,0,21
+271744,0,0,0,21
+271745,0,0,0,21
+271746,0,363213.2887,655757.1194,21
+271747,328627.087,0,0,21
+271748,0,0,0,21
+271749,0,0,0,21
+271750,0,0,0,21
+271751,0,0,0,21
+271752,0,0,0,21
+271753,0,0,0,21
+271754,0,0,0,21
+271755,0,0,0,21
+271756,0,0,0,21
+271757,0,0,0,21
+271758,0,0,0,21
+271759,0,0,0,21
+271760,0,0,0,21
+271761,0,0,0,21
+271762,0,0,0,21
+271763,0,0,0,21
+271764,0,0,0,21
+271765,0,0,0,21
+271766,0,0,0,21
+271767,0,0,0,21
+271768,0,0,0,21
+271769,0,0,0,21
+271770,0,0,0,21
+271771,0,0,0,21
+271772,0,0,0,21
+271773,0,0,0,21
+271774,0,0,0,21
+271775,0,0,0,21
+271776,0,0,0,21
+271777,0,0,0,21
+271778,0,0,0,21
+271779,0,0,0,21
+271780,0,0,0,21
+271781,0,363926.6219,657437.603,21
+271782,0,0,0,21
+271783,329828.5274,0,0,21
+271784,0,0,0,21
+271785,0,0,0,21
+271786,0,0,0,21
+271787,0,0,0,21
+271788,0,0,0,21
+271789,0,0,0,21
+271790,0,0,0,21
+271791,0,0,0,21
+271792,0,0,0,21
+271793,0,0,0,21
+271794,0,0,0,21
+271795,0,0,0,21
+271796,0,0,0,21
+271797,0,0,0,21
+271798,0,0,0,21
+271799,0,0,0,21
+271800,0,0,0,21
+271801,0,0,0,21
+271802,0,0,0,21
+271803,0,0,0,21
+271804,0,0,0,21
+271805,0,0,0,21
+271806,0,0,0,21
+271807,0,0,0,21
+271808,0,0,0,21
+271809,0,0,0,21
+271810,0,0,0,21
+271811,0,0,0,21
+271812,0,0,0,21
+271813,0,0,0,21
+271814,0,0,0,21
+271815,0,0,0,21
+271816,0,364461.5051,658299.3787,21
+271817,0,0,0,21
+271818,0,0,0,21
+271819,330906.7345,0,0,21
+271820,0,0,0,21
+271821,0,0,0,21
+271822,0,0,0,21
+271823,0,0,0,21
+271824,0,0,0,21
+271825,0,0,0,21
+271826,0,0,0,21
+271827,0,0,0,21
+271828,0,0,0,21
+271829,0,0,0,21
+271830,0,0,0,21
+271831,0,0,0,21
+271832,0,0,0,21
+271833,0,0,0,21
+271834,0,0,0,21
+271835,0,0,0,21
+271836,0,0,0,21
+271837,0,0,0,21
+271838,0,0,0,21
+271839,0,0,0,21
+271840,0,0,0,21
+271841,0,0,0,21
+271842,0,0,0,21
+271843,0,0,0,21
+271844,0,0,0,21
+271845,0,0,0,21
+271846,0,0,0,21
+271847,0,0,0,21
+271848,0,0,0,21
+271849,0,0,0,21
+271850,0,0,0,21
+271851,0,0,658601.9941,21
+271852,0,365204.4815,0,21
+271853,0,0,0,21
+271854,0,0,0,21
+271855,331895.8954,0,0,21
+271856,0,0,0,21
+271857,0,0,0,21
+271858,0,0,0,21
+271859,0,0,0,21
+271860,0,0,0,21
+271861,0,0,0,21
+271862,0,0,0,21
+271863,0,0,0,21
+271864,0,0,0,21
+271865,0,0,0,21
+271866,0,0,0,21
+271867,0,0,0,21
+271868,0,0,0,21
+271869,0,0,0,21
+271870,0,0,0,21
+271871,0,0,0,21
+271872,0,0,0,21
+271873,0,0,0,21
+271874,0,0,0,21
+271875,0,0,0,21
+271876,0,0,0,21
+271877,0,0,0,21
+271878,0,0,0,21
+271879,0,0,0,21
+271880,0,0,0,21
+271881,0,0,0,21
+271882,0,0,0,21
+271883,0,0,0,21
+271884,0,0,0,21
+271885,0,0,0,21
+271886,0,0,658769.9904,21
+271887,0,0,0,21
+271888,0,365163.7964,0,21
+271889,0,0,0,21
+271890,0,0,0,21
+271891,332420.144,0,0,21
+271892,0,0,0,21
+271893,0,0,0,21
+271894,0,0,0,21
+271895,0,0,0,21
+271896,0,0,0,21
+271897,0,0,0,21
+271898,0,0,0,21
+271899,0,0,0,21
+271900,0,0,0,21
+271901,0,0,0,21
+271902,0,0,0,21
+271903,0,0,0,21
+271904,0,0,0,21
+271905,0,0,0,21
+271906,0,0,0,21
+271907,0,0,0,21
+271908,0,0,0,21
+271909,0,0,0,21
+271910,0,0,0,21
+271911,0,0,0,21
+271912,0,0,0,21
+271913,0,0,0,21
+271914,0,0,0,21
+271915,0,0,0,21
+271916,0,0,0,21
+271917,0,0,0,21
+271918,0,0,0,21
+271919,0,0,0,21
+271920,0,0,0,21
+271921,0,0,659019.932,21
+271922,0,0,0,21
+271923,0,0,0,21
+271924,0,365044.6277,0,21
+271925,0,0,0,21
+271926,0,0,0,21
+271927,333093.4832,0,0,21
+271928,0,0,0,21
+271929,0,0,0,21
+271930,0,0,0,21
+271931,0,0,0,21
+271932,0,0,0,21
+271933,0,0,0,21
+271934,0,0,0,21
+271935,0,0,0,21
+271936,0,0,0,21
+271937,0,0,0,21
+271938,0,0,0,21
+271939,0,0,0,21
+271940,0,0,0,21
+271941,0,0,0,21
+271942,0,0,0,21
+271943,0,0,0,21
+271944,0,0,0,21
+271945,0,0,0,21
+271946,0,0,0,21
+271947,0,0,0,21
+271948,0,0,0,21
+271949,0,0,0,21
+271950,0,0,0,21
+271951,0,0,0,21
+271952,0,0,0,21
+271953,0,0,0,21
+271954,0,0,0,21
+271955,0,0,0,21
+271956,0,0,659044.47,21
+271957,0,0,0,21
+271958,0,0,0,21
+271959,0,0,0,21
+271960,0,365075.9579,0,21
+271961,0,0,0,21
+271962,0,0,0,21
+271963,333488.5815,0,0,21
+271964,0,0,0,21
+271965,0,0,0,21
+271966,0,0,0,21
+271967,0,0,0,21
+271968,0,0,0,21
+271969,0,0,0,21
+271970,0,0,0,21
+271971,0,0,0,21
+271972,0,0,0,21
+271973,0,0,0,21
+271974,0,0,0,21
+271975,0,0,0,21
+271976,0,0,0,21
+271977,0,0,0,21
+271978,0,0,0,21
+271979,0,0,0,21
+271980,0,0,0,21
+271981,0,0,0,21
+271982,0,0,0,21
+271983,0,0,0,21
+271984,0,0,0,21
+271985,0,0,0,21
+271986,0,0,0,21
+271987,0,0,0,21
+271988,0,0,0,21
+271989,0,0,0,21
+271990,0,0,0,21
+271991,0,0,659025.2474,21
+271992,0,0,0,21
+271993,0,0,0,21
+271994,0,0,0,21
+271995,0,0,0,21
+271996,0,364924.0078,0,21
+271997,0,0,0,21
+271998,0,0,0,21
+271999,333948.5174,0,0,21
+272000,0,0,0,21
+272001,0,0,0,21
+272002,0,0,0,21
+272003,0,0,0,21
+272004,0,0,0,21
+272005,0,0,0,21
+272006,0,0,0,21
+272007,0,0,0,21
+272008,0,0,0,21
+272009,0,0,0,21
+272010,0,0,0,21
+272011,0,0,0,21
+272012,0,0,0,21
+272013,0,0,0,21
+272014,0,0,0,21
+272015,0,0,0,21
+272016,0,0,0,21
+272017,0,0,0,21
+272018,0,0,0,21
+272019,0,0,0,21
+272020,0,0,0,21
+272021,0,0,0,21
+272022,0,0,0,21
+272023,0,0,0,21
+272024,0,0,0,21
+272025,0,0,0,21
+272026,0,0,659026.0622,21
+272027,0,0,0,21
+272028,0,0,0,21
+272029,0,0,0,21
+272030,0,0,0,21
+272031,0,0,0,21
+272032,0,365183.9521,0,21
+272033,0,0,0,21
+272034,0,0,0,21
+272035,334450.072,0,0,21
+272036,0,0,0,21
+272037,0,0,0,21
+272038,0,0,0,21
+272039,0,0,0,21
+272040,0,0,0,15.6
+272041,0,0,0,15.6
+272042,0,0,0,15.6
+272043,0,0,0,15.6
+272044,0,0,0,15.6
+272045,0,0,0,15.6
+272046,0,0,0,15.6
+272047,0,0,0,15.6
+272048,0,0,0,15.6
+272049,0,0,0,15.6
+272050,0,0,0,15.6
+272051,0,0,0,15.6
+272052,0,0,0,15.6
+272053,0,0,0,15.6
+272054,0,0,0,15.6
+272055,0,0,0,15.6
+272056,0,0,0,15.6
+272057,0,0,0,15.6
+272058,0,0,0,15.6
+272059,0,0,0,15.6
+272060,0,0,0,15.6
+272061,0,0,658975.5077,15.6
+272062,0,0,0,15.6
+272063,0,0,0,15.6
+272064,0,0,0,15.6
+272065,0,0,0,15.6
+272066,0,0,0,15.6
+272067,0,0,0,15.6
+272068,0,365922.4831,0,15.6
+272069,0,0,0,15.6
+272070,0,0,0,15.6
+272071,335321.6474,0,0,15.6
+272072,0,0,0,15.6
+272073,0,0,0,15.6
+272074,0,0,0,15.6
+272075,0,0,0,15.6
+272076,0,0,0,15.6
+272077,0,0,0,15.6
+272078,0,0,0,15.6
+272079,0,0,0,15.6
+272080,0,0,0,15.6
+272081,0,0,0,15.6
+272082,0,0,0,15.6
+272083,0,0,0,15.6
+272084,0,0,0,15.6
+272085,0,0,0,15.6
+272086,0,0,0,15.6
+272087,0,0,0,15.6
+272088,0,0,0,15.6
+272089,0,0,0,15.6
+272090,0,0,0,15.6
+272091,0,0,0,15.6
+272092,0,0,0,15.6
+272093,0,0,0,15.6
+272094,0,0,0,15.6
+272095,0,0,0,15.6
+272096,0,0,658066.811,15.6
+272097,0,0,0,15.6
+272098,0,0,0,15.6
+272099,0,0,0,15.6
+272100,0,0,0,15.6
+272101,0,0,0,15.6
+272102,0,0,0,15.6
+272103,0,0,0,15.6
+272104,0,366799.331,0,15.6
+272105,0,0,0,15.6
+272106,0,0,0,15.6
+272107,0,0,0,15.6
+272108,336614.88,0,0,15.6
+272109,0,0,0,15.6
+272110,0,0,0,15.6
+272111,0,0,0,15.6
+272112,0,0,0,15.6
+272113,0,0,0,15.6
+272114,0,0,0,15.6
+272115,0,0,0,15.6
+272116,0,0,0,15.6
+272117,0,0,0,15.6
+272118,0,0,0,15.6
+272119,0,0,0,15.6
+272120,0,0,0,15.6
+272121,0,0,0,15.6
+272122,0,0,0,15.6
+272123,0,0,0,15.6
+272124,0,0,0,15.6
+272125,0,0,0,15.6
+272126,0,0,0,15.6
+272127,0,0,0,15.6
+272128,0,0,0,15.6
+272129,0,0,0,15.6
+272130,0,0,0,15.6
+272131,0,0,658101.1991,15.6
+272132,0,0,0,15.6
+272133,0,0,0,15.6
+272134,0,0,0,15.6
+272135,0,0,0,15.6
+272136,0,0,0,15.6
+272137,0,0,0,15.6
+272138,0,0,0,15.6
+272139,0,0,0,15.6
+272140,0,367281.1517,0,15.6
+272141,0,0,0,15.6
+272142,0,0,0,15.6
+272143,0,0,0,15.6
+272144,0,0,0,15.6
+272145,337385.3902,0,0,15.6
+272146,0,0,0,15.6
+272147,0,0,0,15.6
+272148,0,0,0,15.6
+272149,0,0,0,15.6
+272150,0,0,0,15.6
+272151,0,0,0,15.6
+272152,0,0,0,15.6
+272153,0,0,0,15.6
+272154,0,0,0,15.6
+272155,0,0,0,15.6
+272156,0,0,0,15.6
+272157,0,0,0,15.6
+272158,0,0,0,15.6
+272159,0,0,0,15.6
+272160,0,0,0,15.6
+272161,0,0,0,15.6
+272162,0,0,0,15.6
+272163,0,0,0,15.6
+272164,0,0,0,15.6
+272165,0,0,0,15.6
+272166,0,0,657807.7209,15.6
+272167,0,0,0,15.6
+272168,0,0,0,15.6
+272169,0,0,0,15.6
+272170,0,0,0,15.6
+272171,0,0,0,15.6
+272172,0,0,0,15.6
+272173,0,0,0,15.6
+272174,0,0,0,15.6
+272175,0,0,0,15.6
+272176,0,367563.9282,0,15.6
+272177,0,0,0,15.6
+272178,0,0,0,15.6
+272179,0,0,0,15.6
+272180,0,0,0,15.6
+272181,0,0,0,15.6
+272182,337872.4811,0,0,15.6
+272183,0,0,0,15.6
+272184,0,0,0,15.6
+272185,0,0,0,15.6
+272186,0,0,0,15.6
+272187,0,0,0,15.6
+272188,0,0,0,15.6
+272189,0,0,0,15.6
+272190,0,0,0,15.6
+272191,0,0,0,15.6
+272192,0,0,0,15.6
+272193,0,0,0,15.6
+272194,0,0,0,15.6
+272195,0,0,0,15.6
+272196,0,0,0,15.6
+272197,0,0,0,15.6
+272198,0,0,0,15.6
+272199,0,0,0,15.6
+272200,0,0,0,15.6
+272201,0,0,658013.8906,15.6
+272202,0,0,0,15.6
+272203,0,0,0,15.6
+272204,0,0,0,15.6
+272205,0,0,0,15.6
+272206,0,0,0,15.6
+272207,0,0,0,15.6
+272208,0,0,0,15.6
+272209,0,0,0,15.6
+272210,0,0,0,15.6
+272211,0,0,0,15.6
+272212,0,369426.1954,0,15.6
+272213,0,0,0,15.6
+272214,0,0,0,15.6
+272215,0,0,0,15.6
+272216,0,0,0,15.6
+272217,0,0,0,15.6
+272218,0,0,0,15.6
+272219,338187.0842,0,0,15.6
+272220,0,0,0,15.6
+272221,0,0,0,15.6
+272222,0,0,0,15.6
+272223,0,0,0,15.6
+272224,0,0,0,15.6
+272225,0,0,0,15.6
+272226,0,0,0,15.6
+272227,0,0,0,15.6
+272228,0,0,0,15.6
+272229,0,0,0,15.6
+272230,0,0,0,15.6
+272231,0,0,0,15.6
+272232,0,0,0,15.6
+272233,0,0,0,15.6
+272234,0,0,0,15.6
+272235,0,0,0,15.6
+272236,0,0,658111.3253,15.6
+272237,0,0,0,15.6
+272238,0,0,0,15.6
+272239,0,0,0,15.6
+272240,0,0,0,15.6
+272241,0,0,0,15.6
+272242,0,0,0,15.6
+272243,0,0,0,15.6
+272244,0,0,0,15.6
+272245,0,0,0,15.6
+272246,0,0,0,15.6
+272247,0,0,0,15.6
+272248,0,369426.0281,0,15.6
+272249,0,0,0,15.6
+272250,0,0,0,15.6
+272251,0,0,0,15.6
+272252,0,0,0,15.6
+272253,0,0,0,15.6
+272254,0,0,0,15.6
+272255,0,0,0,15.6
+272256,338412.6599,0,0,15.6
+272257,0,0,0,15.6
+272258,0,0,0,15.6
+272259,0,0,0,15.6
+272260,0,0,0,15.6
+272261,0,0,0,15.6
+272262,0,0,0,15.6
+272263,0,0,0,15.6
+272264,0,0,0,15.6
+272265,0,0,0,15.6
+272266,0,0,0,15.6
+272267,0,0,0,15.6
+272268,0,0,0,15.6
+272269,0,0,0,15.6
+272270,0,0,0,15.6
+272271,0,0,657882.1383,15.6
+272272,0,0,0,15.6
+272273,0,0,0,15.6
+272274,0,0,0,15.6
+272275,0,0,0,15.6
+272276,0,0,0,15.6
+272277,0,0,0,15.6
+272278,0,0,0,15.6
+272279,0,0,0,15.6
+272280,0,0,0,15.6
+272281,0,0,0,15.6
+272282,0,0,0,15.6
+272283,0,0,0,15.6
+272284,0,369426.1818,0,15.6
+272285,0,0,0,15.6
+272286,0,0,0,15.6
+272287,0,0,0,15.6
+272288,0,0,0,15.6
+272289,0,0,0,15.6
+272290,0,0,0,15.6
+272291,0,0,0,15.6
+272292,0,0,0,15.6
+272293,338574.9212,0,0,15.6
+272294,0,0,0,15.6
+272295,0,0,0,15.6
+272296,0,0,0,15.6
+272297,0,0,0,15.6
+272298,0,0,0,15.6
+272299,0,0,0,15.6
+272300,0,0,0,15.6
+272301,0,0,0,15.6
+272302,0,0,0,15.6
+272303,0,0,0,15.6
+272304,0,0,0,15.6
+272305,0,0,658187.0875,15.6
+272306,0,0,0,15.6
+272307,0,0,0,15.6
+272308,0,0,0,15.6
+272309,0,0,0,15.6
+272310,0,0,0,15.6
+272311,0,0,0,15.6
+272312,0,0,0,15.6
+272313,0,0,0,15.6
+272314,0,0,0,15.6
+272315,0,0,0,15.6
+272316,0,0,0,15.6
+272317,0,0,0,15.6
+272318,0,0,0,15.6
+272319,0,0,0,15.6
+272320,0,369426.6591,0,15.6
+272321,0,0,0,15.6
+272322,0,0,0,15.6
+272323,0,0,0,15.6
+272324,0,0,0,15.6
+272325,0,0,0,15.6
+272326,0,0,0,15.6
+272327,0,0,0,15.6
+272328,338721.3556,0,0,15.6
+272329,0,0,0,15.6
+272330,0,0,0,15.6
+272331,0,0,0,15.6
+272332,0,0,0,15.6
+272333,0,0,0,15.6
+272334,0,0,0,15.6
+272335,0,0,0,15.6
+272336,0,0,0,15.6
+272337,0,0,0,15.6
+272338,0,0,0,15.6
+272339,0,0,657733.4326,15.6
+272340,0,0,0,15.6
+272341,0,0,0,15.6
+272342,0,0,0,15.6
+272343,0,0,0,15.6
+272344,0,0,0,15.6
+272345,0,0,0,15.6
+272346,0,0,0,15.6
+272347,0,0,0,15.6
+272348,0,0,0,15.6
+272349,0,0,0,15.6
+272350,0,0,0,15.6
+272351,0,0,0,15.6
+272352,0,0,0,15.6
+272353,0,0,0,15.6
+272354,0,0,0,15.6
+272355,0,0,0,15.6
+272356,0,369427.0197,0,15.6
+272357,0,0,0,15.6
+272358,0,0,0,15.6
+272359,0,0,0,15.6
+272360,0,0,0,15.6
+272361,0,0,0,15.6
+272362,0,0,0,15.6
+272363,338786.5899,0,0,15.6
+272364,0,0,0,15.6
+272365,0,0,0,15.6
+272366,0,0,0,15.6
+272367,0,0,0,15.6
+272368,0,0,0,15.6
+272369,0,0,0,15.6
+272370,0,0,0,15.6
+272371,0,0,0,15.6
+272372,0,0,0,15.6
+272373,0,0,658266.7677,15.6
+272374,0,0,0,15.6
+272375,0,0,0,15.6
+272376,0,0,0,15.6
+272377,0,0,0,15.6
+272378,0,0,0,15.6
+272379,0,0,0,15.6
+272380,0,0,0,15.6
+272381,0,0,0,15.6
+272382,0,0,0,15.6
+272383,0,0,0,15.6
+272384,0,0,0,15.6
+272385,0,0,0,15.6
+272386,0,0,0,15.6
+272387,0,0,0,15.6
+272388,0,0,0,15.6
+272389,0,0,0,15.6
+272390,0,0,0,15.6
+272391,0,369427.0778,0,15.6
+272392,0,0,0,15.6
+272393,0,0,0,15.6
+272394,0,0,0,15.6
+272395,0,0,0,15.6
+272396,0,0,0,15.6
+272397,0,0,0,15.6
+272398,338842.9025,0,0,15.6
+272399,0,0,0,15.6
+272400,0,0,0,17.8
+272401,0,0,0,17.8
+272402,0,0,0,17.8
+272403,0,0,0,17.8
+272404,0,0,0,17.8
+272405,0,0,0,17.8
+272406,0,0,0,17.8
+272407,0,0,658552.5562,17.8
+272408,0,0,0,17.8
+272409,0,0,0,17.8
+272410,0,0,0,17.8
+272411,0,0,0,17.8
+272412,0,0,0,17.8
+272413,0,0,0,17.8
+272414,0,0,0,17.8
+272415,0,0,0,17.8
+272416,0,0,0,17.8
+272417,0,0,0,17.8
+272418,0,0,0,17.8
+272419,0,0,0,17.8
+272420,0,0,0,17.8
+272421,0,0,0,17.8
+272422,0,0,0,17.8
+272423,0,0,0,17.8
+272424,0,0,0,17.8
+272425,0,0,0,17.8
+272426,0,369425.5947,0,17.8
+272427,0,0,0,17.8
+272428,0,0,0,17.8
+272429,0,0,0,17.8
+272430,0,0,0,17.8
+272431,0,0,0,17.8
+272432,0,0,0,17.8
+272433,338929.7626,0,0,17.8
+272434,0,0,0,17.8
+272435,0,0,0,17.8
+272436,0,0,0,17.8
+272437,0,0,0,17.8
+272438,0,0,0,17.8
+272439,0,0,0,17.8
+272440,0,0,0,17.8
+272441,0,0,658688.7799,17.8
+272442,0,0,0,17.8
+272443,0,0,0,17.8
+272444,0,0,0,17.8
+272445,0,0,0,17.8
+272446,0,0,0,17.8
+272447,0,0,0,17.8
+272448,0,0,0,17.8
+272449,0,0,0,17.8
+272450,0,0,0,17.8
+272451,0,0,0,17.8
+272452,0,0,0,17.8
+272453,0,0,0,17.8
+272454,0,0,0,17.8
+272455,0,0,0,17.8
+272456,0,0,0,17.8
+272457,0,0,0,17.8
+272458,0,0,0,17.8
+272459,0,0,0,17.8
+272460,0,0,0,20
+272461,0,369423.078,0,20
+272462,0,0,0,20
+272463,0,0,0,20
+272464,0,0,0,20
+272465,0,0,0,20
+272466,0,0,0,20
+272467,0,0,0,20
+272468,0,0,0,20
+272469,339040.1661,0,0,20
+272470,0,0,0,20
+272471,0,0,0,20
+272472,0,0,0,20
+272473,0,0,0,20
+272474,0,0,0,20
+272475,0,0,0,20
+272476,0,0,658840.3642,20
+272477,0,0,0,20
+272478,0,0,0,20
+272479,0,0,0,20
+272480,0,0,0,20
+272481,0,0,0,20
+272482,0,0,0,20
+272483,0,0,0,20
+272484,0,0,0,20
+272485,0,0,0,20
+272486,0,0,0,20
+272487,0,0,0,20
+272488,0,0,0,20
+272489,0,0,0,20
+272490,0,0,0,20
+272491,0,0,0,20
+272492,0,0,0,20
+272493,0,0,0,20
+272494,0,0,0,20
+272495,0,0,0,20
+272496,0,0,0,20
+272497,0,369423.8263,0,20
+272498,0,0,0,20
+272499,0,0,0,20
+272500,0,0,0,20
+272501,0,0,0,20
+272502,0,0,0,20
+272503,0,0,0,20
+272504,0,0,0,20
+272505,0,0,0,20
+272506,339005.2907,0,0,20
+272507,0,0,0,20
+272508,0,0,0,20
+272509,0,0,0,20
+272510,0,0,0,20
+272511,0,0,659129.7637,20
+272512,0,0,0,20
+272513,0,0,0,20
+272514,0,0,0,20
+272515,0,0,0,20
+272516,0,0,0,20
+272517,0,0,0,20
+272518,0,0,0,20
+272519,0,0,0,20
+272520,0,0,0,21
+272521,0,0,0,21
+272522,0,0,0,21
+272523,0,0,0,21
+272524,0,0,0,21
+272525,0,0,0,21
+272526,0,0,0,21
+272527,0,0,0,21
+272528,0,0,0,21
+272529,0,0,0,21
+272530,0,0,0,21
+272531,0,0,0,21
+272532,0,0,0,21
+272533,0,367866.3904,0,21
+272534,0,0,0,21
+272535,0,0,0,21
+272536,0,0,0,21
+272537,0,0,0,21
+272538,0,0,0,21
+272539,0,0,0,21
+272540,0,0,0,21
+272541,0,0,0,21
+272542,338992.5949,0,0,21
+272543,0,0,0,21
+272544,0,0,0,21
+272545,0,0,659012.3159,21
+272546,0,0,0,21
+272547,0,0,0,21
+272548,0,0,0,21
+272549,0,0,0,21
+272550,0,0,0,21
+272551,0,0,0,21
+272552,0,0,0,21
+272553,0,0,0,21
+272554,0,0,0,21
+272555,0,0,0,21
+272556,0,0,0,21
+272557,0,0,0,21
+272558,0,0,0,21
+272559,0,0,0,21
+272560,0,0,0,21
+272561,0,0,0,21
+272562,0,0,0,21
+272563,0,0,0,21
+272564,0,0,0,21
+272565,0,0,0,21
+272566,0,0,0,21
+272567,0,0,0,21
+272568,0,0,0,21
+272569,0,366548.9903,0,21
+272570,0,0,0,21
+272571,0,0,0,21
+272572,0,0,0,21
+272573,0,0,0,21
+272574,0,0,0,21
+272575,0,0,0,21
+272576,0,0,0,21
+272577,0,0,0,21
+272578,334621.9417,0,0,21
+272579,0,0,658497.695,21
+272580,0,0,0,21
+272581,0,0,0,21
+272582,0,0,0,21
+272583,0,0,0,21
+272584,0,0,0,21
+272585,0,0,0,21
+272586,0,0,0,21
+272587,0,0,0,21
+272588,0,0,0,21
+272589,0,0,0,21
+272590,0,0,0,21
+272591,0,0,0,21
+272592,0,0,0,21
+272593,0,0,0,21
+272594,0,0,0,21
+272595,0,0,0,21
+272596,0,0,0,21
+272597,0,0,0,21
+272598,0,0,0,21
+272599,0,0,0,21
+272600,0,0,0,21
+272601,0,0,0,21
+272602,0,0,0,21
+272603,0,0,0,21
+272604,0,0,0,21
+272605,0,366221.7736,0,21
+272606,0,0,0,21
+272607,0,0,0,21
+272608,0,0,0,21
+272609,0,0,0,21
+272610,0,0,0,21
+272611,0,0,0,21
+272612,0,0,0,21
+272613,0,0,658329.6624,21
+272614,334347.4315,0,0,21
+272615,0,0,0,21
+272616,0,0,0,21
+272617,0,0,0,21
+272618,0,0,0,21
+272619,0,0,0,21
+272620,0,0,0,21
+272621,0,0,0,21
+272622,0,0,0,21
+272623,0,0,0,21
+272624,0,0,0,21
+272625,0,0,0,21
+272626,0,0,0,21
+272627,0,0,0,21
+272628,0,0,0,21
+272629,0,0,0,21
+272630,0,0,0,21
+272631,0,0,0,21
+272632,0,0,0,21
+272633,0,0,0,21
+272634,0,0,0,21
+272635,0,0,0,21
+272636,0,0,0,21
+272637,0,0,0,21
+272638,0,0,0,21
+272639,0,0,0,21
+272640,0,0,0,21
+272641,0,365669.1917,0,21
+272642,0,0,0,21
+272643,0,0,0,21
+272644,0,0,0,21
+272645,0,0,0,21
+272646,0,0,0,21
+272647,0,0,658402.1144,21
+272648,0,0,0,21
+272649,0,0,0,21
+272650,334519.9031,0,0,21
+272651,0,0,0,21
+272652,0,0,0,21
+272653,0,0,0,21
+272654,0,0,0,21
+272655,0,0,0,21
+272656,0,0,0,21
+272657,0,0,0,21
+272658,0,0,0,21
+272659,0,0,0,21
+272660,0,0,0,21
+272661,0,0,0,21
+272662,0,0,0,21
+272663,0,0,0,21
+272664,0,0,0,21
+272665,0,0,0,21
+272666,0,0,0,21
+272667,0,0,0,21
+272668,0,0,0,21
+272669,0,0,0,21
+272670,0,0,0,21
+272671,0,0,0,21
+272672,0,0,0,21
+272673,0,0,0,21
+272674,0,0,0,21
+272675,0,0,0,21
+272676,0,0,0,21
+272677,0,365447.1233,0,21
+272678,0,0,0,21
+272679,0,0,0,21
+272680,0,0,0,21
+272681,0,0,0,21
+272682,0,0,657926.2397,21
+272683,0,0,0,21
+272684,0,0,0,21
+272685,0,0,0,21
+272686,335113.9326,0,0,21
+272687,0,0,0,21
+272688,0,0,0,21
+272689,0,0,0,21
+272690,0,0,0,21
+272691,0,0,0,21
+272692,0,0,0,21
+272693,0,0,0,21
+272694,0,0,0,21
+272695,0,0,0,21
+272696,0,0,0,21
+272697,0,0,0,21
+272698,0,0,0,21
+272699,0,0,0,21
+272700,0,0,0,21
+272701,0,0,0,21
+272702,0,0,0,21
+272703,0,0,0,21
+272704,0,0,0,21
+272705,0,0,0,21
+272706,0,0,0,21
+272707,0,0,0,21
+272708,0,0,0,21
+272709,0,0,0,21
+272710,0,0,0,21
+272711,0,0,0,21
+272712,0,0,0,21
+272713,0,365567.6739,0,21
+272714,0,0,0,21
+272715,0,0,0,21
+272716,0,0,0,21
+272717,0,0,657932.9522,21
+272718,0,0,0,21
+272719,0,0,0,21
+272720,0,0,0,21
+272721,0,0,0,21
+272722,335592.0587,0,0,21
+272723,0,0,0,21
+272724,0,0,0,21
+272725,0,0,0,21
+272726,0,0,0,21
+272727,0,0,0,21
+272728,0,0,0,21
+272729,0,0,0,21
+272730,0,0,0,21
+272731,0,0,0,21
+272732,0,0,0,21
+272733,0,0,0,21
+272734,0,0,0,21
+272735,0,0,0,21
+272736,0,0,0,21
+272737,0,0,0,21
+272738,0,0,0,21
+272739,0,0,0,21
+272740,0,0,0,21
+272741,0,0,0,21
+272742,0,0,0,21
+272743,0,0,0,21
+272744,0,0,0,21
+272745,0,0,0,21
+272746,0,0,0,21
+272747,0,0,0,21
+272748,0,0,0,21
+272749,0,365556.9216,0,21
+272750,0,0,0,21
+272751,0,0,657697.3267,21
+272752,0,0,0,21
+272753,0,0,0,21
+272754,0,0,0,21
+272755,0,0,0,21
+272756,0,0,0,21
+272757,0,0,0,21
+272758,336476.1181,0,0,21
+272759,0,0,0,21
+272760,0,0,0,21
+272761,0,0,0,21
+272762,0,0,0,21
+272763,0,0,0,21
+272764,0,0,0,21
+272765,0,0,0,21
+272766,0,0,0,21
+272767,0,0,0,21
+272768,0,0,0,21
+272769,0,0,0,21
+272770,0,0,0,21
+272771,0,0,0,21
+272772,0,0,0,21
+272773,0,0,0,21
+272774,0,0,0,21
+272775,0,0,0,21
+272776,0,0,0,21
+272777,0,0,0,21
+272778,0,0,0,21
+272779,0,0,0,21
+272780,0,0,0,21
+272781,0,0,0,21
+272782,0,0,0,21
+272783,0,0,0,21
+272784,0,0,0,21
+272785,0,365798.5787,0,21
+272786,0,0,657632.5171,21
+272787,0,0,0,21
+272788,0,0,0,21
+272789,0,0,0,21
+272790,0,0,0,21
+272791,0,0,0,21
+272792,0,0,0,21
+272793,0,0,0,21
+272794,336274.4357,0,0,21
+272795,0,0,0,21
+272796,0,0,0,21
+272797,0,0,0,21
+272798,0,0,0,21
+272799,0,0,0,21
+272800,0,0,0,21
+272801,0,0,0,21
+272802,0,0,0,21
+272803,0,0,0,21
+272804,0,0,0,21
+272805,0,0,0,21
+272806,0,0,0,21
+272807,0,0,0,21
+272808,0,0,0,21
+272809,0,0,0,21
+272810,0,0,0,21
+272811,0,0,0,21
+272812,0,0,0,21
+272813,0,0,0,21
+272814,0,0,0,21
+272815,0,0,0,21
+272816,0,0,0,21
+272817,0,0,0,21
+272818,0,0,0,21
+272819,0,0,0,21
+272820,0,0,0,21
+272821,0,365554.2077,657755.2854,21
+272822,0,0,0,21
+272823,0,0,0,21
+272824,0,0,0,21
+272825,0,0,0,21
+272826,0,0,0,21
+272827,0,0,0,21
+272828,0,0,0,21
+272829,0,0,0,21
+272830,336314.2902,0,0,21
+272831,0,0,0,21
+272832,0,0,0,21
+272833,0,0,0,21
+272834,0,0,0,21
+272835,0,0,0,21
+272836,0,0,0,21
+272837,0,0,0,21
+272838,0,0,0,21
+272839,0,0,0,21
+272840,0,0,0,21
+272841,0,0,0,21
+272842,0,0,0,21
+272843,0,0,0,21
+272844,0,0,0,21
+272845,0,0,0,21
+272846,0,0,0,21
+272847,0,0,0,21
+272848,0,0,0,21
+272849,0,0,0,21
+272850,0,0,0,21
+272851,0,0,0,21
+272852,0,0,0,21
+272853,0,0,0,21
+272854,0,0,0,21
+272855,0,0,0,21
+272856,0,0,657793.348,21
+272857,0,365758.4553,0,21
+272858,0,0,0,21
+272859,0,0,0,21
+272860,0,0,0,21
+272861,0,0,0,21
+272862,0,0,0,21
+272863,0,0,0,21
+272864,0,0,0,21
+272865,0,0,0,21
+272866,336692.94,0,0,21
+272867,0,0,0,21
+272868,0,0,0,21
+272869,0,0,0,21
+272870,0,0,0,21
+272871,0,0,0,21
+272872,0,0,0,21
+272873,0,0,0,21
+272874,0,0,0,21
+272875,0,0,0,21
+272876,0,0,0,21
+272877,0,0,0,21
+272878,0,0,0,21
+272879,0,0,0,21
+272880,0,0,0,21
+272881,0,0,0,21
+272882,0,0,0,21
+272883,0,0,0,21
+272884,0,0,0,21
+272885,0,0,0,21
+272886,0,0,0,21
+272887,0,0,0,21
+272888,0,0,0,21
+272889,0,0,0,21
+272890,0,0,0,21
+272891,0,0,657847.9257,21
+272892,0,0,0,21
+272893,0,365793.439,0,21
+272894,0,0,0,21
+272895,0,0,0,21
+272896,0,0,0,21
+272897,0,0,0,21
+272898,0,0,0,21
+272899,0,0,0,21
+272900,0,0,0,21
+272901,0,0,0,21
+272902,0,0,0,21
+272903,336503.7371,0,0,21
+272904,0,0,0,21
+272905,0,0,0,21
+272906,0,0,0,21
+272907,0,0,0,21
+272908,0,0,0,21
+272909,0,0,0,21
+272910,0,0,0,21
+272911,0,0,0,21
+272912,0,0,0,21
+272913,0,0,0,21
+272914,0,0,0,21
+272915,0,0,0,21
+272916,0,0,0,21
+272917,0,0,0,21
+272918,0,0,0,21
+272919,0,0,0,21
+272920,0,0,0,21
+272921,0,0,0,21
+272922,0,0,0,21
+272923,0,0,0,21
+272924,0,0,0,21
+272925,0,0,0,21
+272926,0,0,657784.1223,21
+272927,0,0,0,21
+272928,0,0,0,21
+272929,0,365815.5452,0,21
+272930,0,0,0,21
+272931,0,0,0,21
+272932,0,0,0,21
+272933,0,0,0,21
+272934,0,0,0,21
+272935,0,0,0,21
+272936,0,0,0,21
+272937,0,0,0,21
+272938,0,0,0,21
+272939,0,0,0,21
+272940,336150.8566,0,0,21
+272941,0,0,0,21
+272942,0,0,0,21
+272943,0,0,0,21
+272944,0,0,0,21
+272945,0,0,0,21
+272946,0,0,0,21
+272947,0,0,0,21
+272948,0,0,0,21
+272949,0,0,0,21
+272950,0,0,0,21
+272951,0,0,0,21
+272952,0,0,0,21
+272953,0,0,0,21
+272954,0,0,0,21
+272955,0,0,0,21
+272956,0,0,0,21
+272957,0,0,0,21
+272958,0,0,0,21
+272959,0,0,0,21
+272960,0,0,0,21
+272961,0,0,657708.1486,21
+272962,0,0,0,21
+272963,0,0,0,21
+272964,0,0,0,21
+272965,0,365695.5184,0,21
+272966,0,0,0,21
+272967,0,0,0,21
+272968,0,0,0,21
+272969,0,0,0,21
+272970,0,0,0,21
+272971,0,0,0,21
+272972,0,0,0,21
+272973,0,0,0,21
+272974,0,0,0,21
+272975,0,0,0,21
+272976,0,0,0,21
+272977,336223.6203,0,0,21
+272978,0,0,0,21
+272979,0,0,0,21
+272980,0,0,0,21
+272981,0,0,0,21
+272982,0,0,0,21
+272983,0,0,0,21
+272984,0,0,0,21
+272985,0,0,0,21
+272986,0,0,0,21
+272987,0,0,0,21
+272988,0,0,0,21
+272989,0,0,0,21
+272990,0,0,0,21
+272991,0,0,0,21
+272992,0,0,0,21
+272993,0,0,0,21
+272994,0,0,0,21
+272995,0,0,0,21
+272996,0,0,657846.9487,21
+272997,0,0,0,21
+272998,0,0,0,21
+272999,0,0,0,21
+273000,0,0,0,21
+273001,0,366044.4505,0,21
+273002,0,0,0,21
+273003,0,0,0,21
+273004,0,0,0,21
+273005,0,0,0,21
+273006,0,0,0,21
+273007,0,0,0,21
+273008,0,0,0,21
+273009,0,0,0,21
+273010,0,0,0,21
+273011,0,0,0,21
+273012,0,0,0,21
+273013,336126.0156,0,0,21
+273014,0,0,0,21
+273015,0,0,0,21
+273016,0,0,0,21
+273017,0,0,0,21
+273018,0,0,0,21
+273019,0,0,0,21
+273020,0,0,0,21
+273021,0,0,0,21
+273022,0,0,0,21
+273023,0,0,0,21
+273024,0,0,0,21
+273025,0,0,0,21
+273026,0,0,0,21
+273027,0,0,0,21
+273028,0,0,0,21
+273029,0,0,0,21
+273030,0,0,0,21
+273031,0,0,658208.9438,21
+273032,0,0,0,21
+273033,0,0,0,21
+273034,0,0,0,21
+273035,0,0,0,21
+273036,0,0,0,21
+273037,0,365767.0038,0,21
+273038,0,0,0,21
+273039,0,0,0,21
+273040,0,0,0,21
+273041,0,0,0,21
+273042,0,0,0,21
+273043,0,0,0,21
+273044,0,0,0,21
+273045,0,0,0,21
+273046,0,0,0,21
+273047,0,0,0,21
+273048,0,0,0,21
+273049,336135.4681,0,0,21
+273050,0,0,0,21
+273051,0,0,0,21
+273052,0,0,0,21
+273053,0,0,0,21
+273054,0,0,0,21
+273055,0,0,0,21
+273056,0,0,0,21
+273057,0,0,0,21
+273058,0,0,0,21
+273059,0,0,0,21
+273060,0,0,0,21
+273061,0,0,0,21
+273062,0,0,0,21
+273063,0,0,0,21
+273064,0,0,0,21
+273065,0,0,0,21
+273066,0,0,658200.741,21
+273067,0,0,0,21
+273068,0,0,0,21
+273069,0,0,0,21
+273070,0,0,0,21
+273071,0,0,0,21
+273072,0,0,0,21
+273073,0,0,0,21
+273074,0,365893.7704,0,21
+273075,0,0,0,21
+273076,0,0,0,21
+273077,0,0,0,21
+273078,0,0,0,21
+273079,0,0,0,21
+273080,0,0,0,21
+273081,0,0,0,21
+273082,0,0,0,21
+273083,0,0,0,21
+273084,0,0,0,21
+273085,335918.3308,0,0,21
+273086,0,0,0,21
+273087,0,0,0,21
+273088,0,0,0,21
+273089,0,0,0,21
+273090,0,0,0,21
+273091,0,0,0,21
+273092,0,0,0,21
+273093,0,0,0,21
+273094,0,0,0,21
+273095,0,0,0,21
+273096,0,0,0,21
+273097,0,0,0,21
+273098,0,0,0,21
+273099,0,0,0,21
+273100,0,0,0,21
+273101,0,0,658211.3139,21
+273102,0,0,0,21
+273103,0,0,0,21
+273104,0,0,0,21
+273105,0,0,0,21
+273106,0,0,0,21
+273107,0,0,0,21
+273108,0,0,0,21
+273109,0,0,0,21
+273110,0,365765.7481,0,21
+273111,0,0,0,21
+273112,0,0,0,21
+273113,0,0,0,21
+273114,0,0,0,21
+273115,0,0,0,21
+273116,0,0,0,21
+273117,0,0,0,21
+273118,0,0,0,21
+273119,0,0,0,21
+273120,0,0,0,21
+273121,335695.527,0,0,21
+273122,0,0,0,21
+273123,0,0,0,21
+273124,0,0,0,21
+273125,0,0,0,21
+273126,0,0,0,21
+273127,0,0,0,21
+273128,0,0,0,21
+273129,0,0,0,21
+273130,0,0,0,21
+273131,0,0,0,21
+273132,0,0,0,21
+273133,0,0,0,21
+273134,0,0,0,21
+273135,0,0,0,21
+273136,0,0,658955.5651,21
+273137,0,0,0,21
+273138,0,0,0,21
+273139,0,0,0,21
+273140,0,0,0,21
+273141,0,0,0,21
+273142,0,0,0,21
+273143,0,0,0,21
+273144,0,0,0,21
+273145,0,0,0,21
+273146,0,365915.6008,0,21
+273147,0,0,0,21
+273148,0,0,0,21
+273149,0,0,0,21
+273150,0,0,0,21
+273151,0,0,0,21
+273152,0,0,0,21
+273153,0,0,0,21
+273154,0,0,0,21
+273155,0,0,0,21
+273156,0,0,0,21
+273157,335540.2578,0,0,21
+273158,0,0,0,21
+273159,0,0,0,21
+273160,0,0,0,21
+273161,0,0,0,21
+273162,0,0,0,21
+273163,0,0,0,21
+273164,0,0,0,21
+273165,0,0,0,21
+273166,0,0,0,21
+273167,0,0,0,21
+273168,0,0,0,21
+273169,0,0,0,21
+273170,0,0,0,21
+273171,0,0,659594.2765,21
+273172,0,0,0,21
+273173,0,0,0,21
+273174,0,0,0,21
+273175,0,0,0,21
+273176,0,0,0,21
+273177,0,0,0,21
+273178,0,0,0,21
+273179,0,0,0,21
+273180,0,0,0,21
+273181,0,0,0,21
+273182,0,365925.4069,0,21
+273183,0,0,0,21
+273184,0,0,0,21
+273185,0,0,0,21
+273186,0,0,0,21
+273187,0,0,0,21
+273188,0,0,0,21
+273189,0,0,0,21
+273190,0,0,0,21
+273191,0,0,0,21
+273192,0,0,0,21
+273193,335499.0004,0,0,21
+273194,0,0,0,21
+273195,0,0,0,21
+273196,0,0,0,21
+273197,0,0,0,21
+273198,0,0,0,21
+273199,0,0,0,21
+273200,0,0,0,21
+273201,0,0,0,21
+273202,0,0,0,21
+273203,0,0,0,21
+273204,0,0,0,21
+273205,0,0,0,21
+273206,0,0,660127.9413,21
+273207,0,0,0,21
+273208,0,0,0,21
+273209,0,0,0,21
+273210,0,0,0,21
+273211,0,0,0,21
+273212,0,0,0,21
+273213,0,0,0,21
+273214,0,0,0,21
+273215,0,0,0,21
+273216,0,0,0,21
+273217,0,0,0,21
+273218,0,365939.8009,0,21
+273219,0,0,0,21
+273220,0,0,0,21
+273221,0,0,0,21
+273222,0,0,0,21
+273223,0,0,0,21
+273224,0,0,0,21
+273225,0,0,0,21
+273226,0,0,0,21
+273227,0,0,0,21
+273228,0,0,0,21
+273229,335746.7935,0,0,21
+273230,0,0,0,21
+273231,0,0,0,21
+273232,0,0,0,21
+273233,0,0,0,21
+273234,0,0,0,21
+273235,0,0,0,21
+273236,0,0,0,21
+273237,0,0,0,21
+273238,0,0,0,21
+273239,0,0,0,21
+273240,0,0,0,21
+273241,0,0,660523.5873,21
+273242,0,0,0,21
+273243,0,0,0,21
+273244,0,0,0,21
+273245,0,0,0,21
+273246,0,0,0,21
+273247,0,0,0,21
+273248,0,0,0,21
+273249,0,0,0,21
+273250,0,0,0,21
+273251,0,0,0,21
+273252,0,0,0,21
+273253,0,0,0,21
+273254,0,365758.002,0,21
+273255,0,0,0,21
+273256,0,0,0,21
+273257,0,0,0,21
+273258,0,0,0,21
+273259,0,0,0,21
+273260,0,0,0,21
+273261,0,0,0,21
+273262,0,0,0,21
+273263,0,0,0,21
+273264,0,0,0,21
+273265,336330.6392,0,0,21
+273266,0,0,0,21
+273267,0,0,0,21
+273268,0,0,0,21
+273269,0,0,0,21
+273270,0,0,0,21
+273271,0,0,0,21
+273272,0,0,0,21
+273273,0,0,0,21
+273274,0,0,0,21
+273275,0,0,0,21
+273276,0,0,660778.6171,21
+273277,0,0,0,21
+273278,0,0,0,21
+273279,0,0,0,21
+273280,0,0,0,21
+273281,0,0,0,21
+273282,0,0,0,21
+273283,0,0,0,21
+273284,0,0,0,21
+273285,0,0,0,21
+273286,0,0,0,21
+273287,0,0,0,21
+273288,0,0,0,21
+273289,0,0,0,21
+273290,0,366080.8427,0,21
+273291,0,0,0,21
+273292,0,0,0,21
+273293,0,0,0,21
+273294,0,0,0,21
+273295,0,0,0,21
+273296,0,0,0,21
+273297,0,0,0,21
+273298,0,0,0,21
+273299,0,0,0,21
+273300,0,0,0,21
+273301,336539.2499,0,0,21
+273302,0,0,0,21
+273303,0,0,0,21
+273304,0,0,0,21
+273305,0,0,0,21
+273306,0,0,0,21
+273307,0,0,0,21
+273308,0,0,0,21
+273309,0,0,0,21
+273310,0,0,0,21
+273311,0,0,660893.6803,21
+273312,0,0,0,21
+273313,0,0,0,21
+273314,0,0,0,21
+273315,0,0,0,21
+273316,0,0,0,21
+273317,0,0,0,21
+273318,0,0,0,21
+273319,0,0,0,21
+273320,0,0,0,21
+273321,0,0,0,21
+273322,0,0,0,21
+273323,0,0,0,21
+273324,0,0,0,21
+273325,0,0,0,21
+273326,0,366189.327,0,21
+273327,0,0,0,21
+273328,0,0,0,21
+273329,0,0,0,21
+273330,0,0,0,21
+273331,0,0,0,21
+273332,0,0,0,21
+273333,0,0,0,21
+273334,0,0,0,21
+273335,0,0,0,21
+273336,0,0,0,21
+273337,336481.1201,0,0,21
+273338,0,0,0,21
+273339,0,0,0,21
+273340,0,0,0,21
+273341,0,0,0,21
+273342,0,0,0,21
+273343,0,0,0,21
+273344,0,0,0,21
+273345,0,0,0,21
+273346,0,0,660644.8786,21
+273347,0,0,0,21
+273348,0,0,0,21
+273349,0,0,0,21
+273350,0,0,0,21
+273351,0,0,0,21
+273352,0,0,0,21
+273353,0,0,0,21
+273354,0,0,0,21
+273355,0,0,0,21
+273356,0,0,0,21
+273357,0,0,0,21
+273358,0,0,0,21
+273359,0,0,0,21
+273360,0,0,0,21
+273361,0,0,0,21
+273362,0,366364.6195,0,21
+273363,0,0,0,21
+273364,0,0,0,21
+273365,0,0,0,21
+273366,0,0,0,21
+273367,0,0,0,21
+273368,0,0,0,21
+273369,0,0,0,21
+273370,0,0,0,21
+273371,0,0,0,21
+273372,0,0,0,21
+273373,0,0,0,21
+273374,335787.7382,0,0,21
+273375,0,0,0,21
+273376,0,0,0,21
+273377,0,0,0,21
+273378,0,0,0,21
+273379,0,0,0,21
+273380,0,0,0,21
+273381,0,0,660356.3041,21
+273382,0,0,0,21
+273383,0,0,0,21
+273384,0,0,0,21
+273385,0,0,0,21
+273386,0,0,0,21
+273387,0,0,0,21
+273388,0,0,0,21
+273389,0,0,0,21
+273390,0,0,0,21
+273391,0,0,0,21
+273392,0,0,0,21
+273393,0,0,0,21
+273394,0,0,0,21
+273395,0,0,0,21
+273396,0,0,0,21
+273397,0,0,0,21
+273398,0,0,0,21
+273399,0,366301.4093,0,21
+273400,0,0,0,21
+273401,0,0,0,21
+273402,0,0,0,21
+273403,0,0,0,21
+273404,0,0,0,21
+273405,0,0,0,21
+273406,0,0,0,21
+273407,0,0,0,21
+273408,0,0,0,21
+273409,0,0,0,21
+273410,0,0,0,21
+273411,336952.1009,0,0,21
+273412,0,0,0,21
+273413,0,0,0,21
+273414,0,0,0,21
+273415,0,0,0,21
+273416,0,0,660198.5125,21
+273417,0,0,0,21
+273418,0,0,0,21
+273419,0,0,0,21
+273420,0,0,0,21
+273421,0,0,0,21
+273422,0,0,0,21
+273423,0,0,0,21
+273424,0,0,0,21
+273425,0,0,0,21
+273426,0,0,0,21
+273427,0,0,0,21
+273428,0,0,0,21
+273429,0,0,0,21
+273430,0,0,0,21
+273431,0,0,0,21
+273432,0,0,0,21
+273433,0,0,0,21
+273434,0,0,0,21
+273435,0,0,0,21
+273436,0,365806.8867,0,21
+273437,0,0,0,21
+273438,0,0,0,21
+273439,0,0,0,21
+273440,0,0,0,21
+273441,0,0,0,21
+273442,0,0,0,21
+273443,0,0,0,21
+273444,0,0,0,21
+273445,0,0,0,21
+273446,0,0,0,21
+273447,337798.9313,0,0,21
+273448,0,0,0,21
+273449,0,0,0,21
+273450,0,0,0,21
+273451,0,0,660206.6494,21
+273452,0,0,0,21
+273453,0,0,0,21
+273454,0,0,0,21
+273455,0,0,0,21
+273456,0,0,0,21
+273457,0,0,0,21
+273458,0,0,0,21
+273459,0,0,0,21
+273460,0,0,0,21
+273461,0,0,0,21
+273462,0,0,0,21
+273463,0,0,0,21
+273464,0,0,0,21
+273465,0,0,0,21
+273466,0,0,0,21
+273467,0,0,0,21
+273468,0,0,0,21
+273469,0,0,0,21
+273470,0,0,0,21
+273471,0,0,0,21
+273472,0,366080.2478,0,21
+273473,0,0,0,21
+273474,0,0,0,21
+273475,0,0,0,21
+273476,0,0,0,21
+273477,0,0,0,21
+273478,0,0,0,21
+273479,0,0,0,21
+273480,0,0,0,15.6
+273481,0,0,0,15.6
+273482,0,0,0,15.6
+273483,338277.941,0,0,15.6
+273484,0,0,0,15.6
+273485,0,0,0,15.6
+273486,0,0,659965.477,15.6
+273487,0,0,0,15.6
+273488,0,0,0,15.6
+273489,0,0,0,15.6
+273490,0,0,0,15.6
+273491,0,0,0,15.6
+273492,0,0,0,15.6
+273493,0,0,0,15.6
+273494,0,0,0,15.6
+273495,0,0,0,15.6
+273496,0,0,0,15.6
+273497,0,0,0,15.6
+273498,0,0,0,15.6
+273499,0,0,0,15.6
+273500,0,0,0,15.6
+273501,0,0,0,15.6
+273502,0,0,0,15.6
+273503,0,0,0,15.6
+273504,0,0,0,15.6
+273505,0,0,0,15.6
+273506,0,0,0,15.6
+273507,0,0,0,15.6
+273508,0,367091.7456,0,15.6
+273509,0,0,0,15.6
+273510,0,0,0,15.6
+273511,0,0,0,15.6
+273512,0,0,0,15.6
+273513,0,0,0,15.6
+273514,0,0,0,15.6
+273515,0,0,0,15.6
+273516,0,0,0,15.6
+273517,0,0,0,15.6
+273518,0,0,0,15.6
+273519,338558.6537,0,0,15.6
+273520,0,0,0,15.6
+273521,0,0,660099.9309,15.6
+273522,0,0,0,15.6
+273523,0,0,0,15.6
+273524,0,0,0,15.6
+273525,0,0,0,15.6
+273526,0,0,0,15.6
+273527,0,0,0,15.6
+273528,0,0,0,15.6
+273529,0,0,0,15.6
+273530,0,0,0,15.6
+273531,0,0,0,15.6
+273532,0,0,0,15.6
+273533,0,0,0,15.6
+273534,0,0,0,15.6
+273535,0,0,0,15.6
+273536,0,0,0,15.6
+273537,0,0,0,15.6
+273538,0,0,0,15.6
+273539,0,0,0,15.6
+273540,0,0,0,15.6
+273541,0,0,0,15.6
+273542,0,0,0,15.6
+273543,0,0,0,15.6
+273544,0,367548.5447,0,15.6
+273545,0,0,0,15.6
+273546,0,0,0,15.6
+273547,0,0,0,15.6
+273548,0,0,0,15.6
+273549,0,0,0,15.6
+273550,0,0,0,15.6
+273551,0,0,0,15.6
+273552,0,0,0,15.6
+273553,0,0,0,15.6
+273554,338712.9643,0,0,15.6
+273555,0,0,659579.9946,15.6
+273556,0,0,0,15.6
+273557,0,0,0,15.6
+273558,0,0,0,15.6
+273559,0,0,0,15.6
+273560,0,0,0,15.6
+273561,0,0,0,15.6
+273562,0,0,0,15.6
+273563,0,0,0,15.6
+273564,0,0,0,15.6
+273565,0,0,0,15.6
+273566,0,0,0,15.6
+273567,0,0,0,15.6
+273568,0,0,0,15.6
+273569,0,0,0,15.6
+273570,0,0,0,15.6
+273571,0,0,0,15.6
+273572,0,0,0,15.6
+273573,0,0,0,15.6
+273574,0,0,0,15.6
+273575,0,0,0,15.6
+273576,0,0,0,15.6
+273577,0,0,0,15.6
+273578,0,0,0,15.6
+273579,0,369328.3131,0,15.6
+273580,0,0,0,15.6
+273581,0,0,0,15.6
+273582,0,0,0,15.6
+273583,0,0,0,15.6
+273584,0,0,0,15.6
+273585,0,0,0,15.6
+273586,0,0,0,15.6
+273587,0,0,0,15.6
+273588,0,0,0,15.6
+273589,338855.6455,0,659617.9878,15.6
+273590,0,0,0,15.6
+273591,0,0,0,15.6
+273592,0,0,0,15.6
+273593,0,0,0,15.6
+273594,0,0,0,15.6
+273595,0,0,0,15.6
+273596,0,0,0,15.6
+273597,0,0,0,15.6
+273598,0,0,0,15.6
+273599,0,0,0,15.6
+273600,0,0,0,15.6
+273601,0,0,0,15.6
+273602,0,0,0,15.6
+273603,0,0,0,15.6
+273604,0,0,0,15.6
+273605,0,0,0,15.6
+273606,0,0,0,15.6
+273607,0,0,0,15.6
+273608,0,0,0,15.6
+273609,0,0,0,15.6
+273610,0,0,0,15.6
+273611,0,0,0,15.6
+273612,0,0,0,15.6
+273613,0,0,0,15.6
+273614,0,369291.7762,0,15.6
+273615,0,0,0,15.6
+273616,0,0,0,15.6
+273617,0,0,0,15.6
+273618,0,0,0,15.6
+273619,0,0,0,15.6
+273620,0,0,0,15.6
+273621,0,0,0,15.6
+273622,0,0,0,15.6
+273623,0,0,660092.1632,15.6
+273624,338968.847,0,0,15.6
+273625,0,0,0,15.6
+273626,0,0,0,15.6
+273627,0,0,0,15.6
+273628,0,0,0,15.6
+273629,0,0,0,15.6
+273630,0,0,0,15.6
+273631,0,0,0,15.6
+273632,0,0,0,15.6
+273633,0,0,0,15.6
+273634,0,0,0,15.6
+273635,0,0,0,15.6
+273636,0,0,0,15.6
+273637,0,0,0,15.6
+273638,0,0,0,15.6
+273639,0,0,0,15.6
+273640,0,0,0,15.6
+273641,0,0,0,15.6
+273642,0,0,0,15.6
+273643,0,0,0,15.6
+273644,0,0,0,15.6
+273645,0,0,0,15.6
+273646,0,0,0,15.6
+273647,0,0,0,15.6
+273648,0,0,0,15.6
+273649,0,369259.5548,0,15.6
+273650,0,0,0,15.6
+273651,0,0,0,15.6
+273652,0,0,0,15.6
+273653,0,0,0,15.6
+273654,0,0,0,15.6
+273655,0,0,0,15.6
+273656,0,0,0,15.6
+273657,0,0,659899.3052,15.6
+273658,0,0,0,15.6
+273659,339019.6784,0,0,15.6
+273660,0,0,0,15.6
+273661,0,0,0,15.6
+273662,0,0,0,15.6
+273663,0,0,0,15.6
+273664,0,0,0,15.6
+273665,0,0,0,15.6
+273666,0,0,0,15.6
+273667,0,0,0,15.6
+273668,0,0,0,15.6
+273669,0,0,0,15.6
+273670,0,0,0,15.6
+273671,0,0,0,15.6
+273672,0,0,0,15.6
+273673,0,0,0,15.6
+273674,0,0,0,15.6
+273675,0,0,0,15.6
+273676,0,0,0,15.6
+273677,0,0,0,15.6
+273678,0,0,0,15.6
+273679,0,0,0,15.6
+273680,0,0,0,15.6
+273681,0,0,0,15.6
+273682,0,0,0,15.6
+273683,0,0,0,15.6
+273684,0,369226.4049,0,15.6
+273685,0,0,0,15.6
+273686,0,0,0,15.6
+273687,0,0,0,15.6
+273688,0,0,0,15.6
+273689,0,0,0,15.6
+273690,0,0,0,15.6
+273691,0,0,659856.9963,15.6
+273692,0,0,0,15.6
+273693,0,0,0,15.6
+273694,339072.7565,0,0,15.6
+273695,0,0,0,15.6
+273696,0,0,0,15.6
+273697,0,0,0,15.6
+273698,0,0,0,15.6
+273699,0,0,0,15.6
+273700,0,0,0,15.6
+273701,0,0,0,15.6
+273702,0,0,0,15.6
+273703,0,0,0,15.6
+273704,0,0,0,15.6
+273705,0,0,0,15.6
+273706,0,0,0,15.6
+273707,0,0,0,15.6
+273708,0,0,0,15.6
+273709,0,0,0,15.6
+273710,0,0,0,15.6
+273711,0,0,0,15.6
+273712,0,0,0,15.6
+273713,0,0,0,15.6
+273714,0,0,0,15.6
+273715,0,0,0,15.6
+273716,0,0,0,15.6
+273717,0,0,0,15.6
+273718,0,0,0,15.6
+273719,0,369193.1639,0,15.6
+273720,0,0,0,15.6
+273721,0,0,0,15.6
+273722,0,0,0,15.6
+273723,0,0,0,15.6
+273724,0,0,0,15.6
+273725,0,0,659465.3288,15.6
+273726,0,0,0,15.6
+273727,0,0,0,15.6
+273728,0,0,0,15.6
+273729,339144.1558,0,0,15.6
+273730,0,0,0,15.6
+273731,0,0,0,15.6
+273732,0,0,0,15.6
+273733,0,0,0,15.6
+273734,0,0,0,15.6
+273735,0,0,0,15.6
+273736,0,0,0,15.6
+273737,0,0,0,15.6
+273738,0,0,0,15.6
+273739,0,0,0,15.6
+273740,0,0,0,15.6
+273741,0,0,0,15.6
+273742,0,0,0,15.6
+273743,0,0,0,15.6
+273744,0,0,0,15.6
+273745,0,0,0,15.6
+273746,0,0,0,15.6
+273747,0,0,0,15.6
+273748,0,0,0,15.6
+273749,0,0,0,15.6
+273750,0,0,0,15.6
+273751,0,0,0,15.6
+273752,0,0,0,15.6
+273753,0,0,0,15.6
+273754,0,369191.7822,0,15.6
+273755,0,0,0,15.6
+273756,0,0,0,15.6
+273757,0,0,0,15.6
+273758,0,0,0,15.6
+273759,0,0,659973.1171,15.6
+273760,0,0,0,15.6
+273761,0,0,0,15.6
+273762,0,0,0,15.6
+273763,0,0,0,15.6
+273764,339146.6936,0,0,15.6
+273765,0,0,0,15.6
+273766,0,0,0,15.6
+273767,0,0,0,15.6
+273768,0,0,0,15.6
+273769,0,0,0,15.6
+273770,0,0,0,15.6
+273771,0,0,0,15.6
+273772,0,0,0,15.6
+273773,0,0,0,15.6
+273774,0,0,0,15.6
+273775,0,0,0,15.6
+273776,0,0,0,15.6
+273777,0,0,0,15.6
+273778,0,0,0,15.6
+273779,0,0,0,15.6
+273780,0,0,0,15.6
+273781,0,0,0,15.6
+273782,0,328.3161084,0,15.6
+273783,0,0,0,15.6
+273784,0,0,0,15.6
+273785,0,0,0,15.6
+273786,0,0,0,15.6
+273787,0,0,0,15.6
+273788,0,0,0,15.6
+273789,0,369188.1909,0,15.6
+273790,0,0,0,15.6
+273791,0,0,0,15.6
+273792,0,0,0,15.6
+273793,0,0,659286.1531,15.6
+273794,0,0,0,15.6
+273795,0,0,0,15.6
+273796,0,0,0,15.6
+273797,0,0,0,15.6
+273798,0,0,0,15.6
+273799,339178.429,0,0,15.6
+273800,0,0,0,15.6
+273801,0,0,0,15.6
+273802,0,0,0,15.6
+273803,0,0,0,15.6
+273804,0,0,0,15.6
+273805,0,0,0,15.6
+273806,0,0,0,15.6
+273807,0,0,0,15.6
+273808,0,0,0,15.6
+273809,0,0,0,15.6
+273810,0,0,0,15.6
+273811,0,0,0,15.6
+273812,0,0,0,15.6
+273813,0,0,0,15.6
+273814,0,0,0,15.6
+273815,0,0,0,15.6
+273816,0,0,0,15.6
+273817,0,0,0,15.6
+273818,0,0,0,15.6
+273819,0,0,0,15.6
+273820,0,0,0,15.6
+273821,0,0,0,15.6
+273822,0,0,0,15.6
+273823,0,0,0,15.6
+273824,0,369183.4338,0,15.6
+273825,0,0,0,15.6
+273826,0,0,0,15.6
+273827,0,0,660425.1622,15.6
+273828,0,0,0,15.6
+273829,0,0,0,15.6
+273830,0,0,0,15.6
+273831,0,0,0,15.6
+273832,0,0,0,15.6
+273833,0,0,0,15.6
+273834,339234.8394,0,0,15.6
+273835,0,0,0,15.6
+273836,0,0,0,15.6
+273837,0,0,0,15.6
+273838,0,0,0,15.6
+273839,0,0,0,15.6
+273840,0,0,0,17.8
+273841,0,0,0,17.8
+273842,0,0,0,17.8
+273843,0,0,0,17.8
+273844,0,0,0,17.8
+273845,0,0,0,17.8
+273846,0,0,0,17.8
+273847,0,0,0,17.8
+273848,0,0,0,17.8
+273849,0,0,0,17.8
+273850,0,0,0,17.8
+273851,0,0,0,17.8
+273852,0,0,0,17.8
+273853,0,0,0,17.8
+273854,0,0,0,17.8
+273855,0,0,0,17.8
+273856,21.0648201,0,0,17.8
+273857,143.1568724,0,0,17.8
+273858,0,0,0,17.8
+273859,0,369180.9819,0,17.8
+273860,0,0,0,17.8
+273861,0,0,660691.0153,17.8
+273862,0,0,0,17.8
+273863,0,0,0,17.8
+273864,0,0,0,17.8
+273865,0,0,0,17.8
+273866,0,0,0,17.8
+273867,0,0,0,17.8
+273868,0,0,0,17.8
+273869,339204.4866,0,0,17.8
+273870,0,0,0,17.8
+273871,0,216.1615347,0,17.8
+273872,0,659.3643626,0,17.8
+273873,0,375.480054,0,17.8
+273874,0,490.9597791,0,17.8
+273875,0,528.842469,0,17.8
+273876,0,528.842468,0,17.8
+273877,0,547.6799792,0,17.8
+273878,0,566.4508591,0,17.8
+273879,0,603.7997365,0,17.8
+273880,0,585.1568877,0,17.8
+273881,0,622.3809613,0,17.8
+273882,0,622.38096,0,17.8
+273883,0,640.9020353,0,17.8
+273884,0,677.7691937,0,17.8
+273885,0,677.7691922,0,17.8
+273886,0,714.4113836,0,17.8
+273887,0,0,0,17.8
+273888,0,0,0,17.8
+273889,0,0,0,17.8
+273890,0,0,0,17.8
+273891,0,0,0,17.8
+273892,0,0,0,17.8
+273893,0,0,0,17.8
+273894,0,369180.9179,0,17.8
+273895,0,0,660898.6397,17.8
+273896,0,0,0,17.8
+273897,0,0,0,17.8
+273898,0,0,0,17.8
+273899,0,0,0,17.8
+273900,0,0,0,20
+273901,343537.0879,26486.60148,0,20
+273902,0,6632.546291,0,20
+273903,6718.961404,76709.95201,0,20
+273904,16737.72665,70650.48825,0,20
+273905,8678.119677,57721.80088,0,20
+273906,10891.6691,63794.06088,0,20
+273907,11783.73191,72624.07763,0,20
+273908,44841.58277,87750.49609,0,20
+273909,25747.39222,95301.1171,0,20
+273910,29962.33818,87239.94813,0,20
+273911,30378.51781,90841.11448,0,20
+273912,29841.18299,91785.72235,0,20
+273913,29455.81292,91103.67814,0,20
+273914,28707.45459,91558.93916,0,20
+273915,30538.4376,91455.85103,0,20
+273916,32600.0722,91718.60368,0,20
+273917,30441.8746,91887.87253,0,20
+273918,30493.84381,91642.69212,0,20
+273919,30126.57294,91754.50054,0,20
+273920,29813.04719,91887.96111,0,20
+273921,29222.72852,91884.88837,0,20
+273922,29489.09927,92123.1813,0,20
+273923,29473.86949,91491.06254,0,20
+273924,29957.76704,92158.72614,0,20
+273925,29824.12437,91964.41184,0,20
+273926,30186.50434,91643.44315,0,20
+273927,30172.54777,92142.36237,0,20
+273928,30424.33218,91883.3809,0,20
+273929,30413.21002,91699.83148,0,20
+273930,30697.45916,91690.46756,0,20
+273931,30624.93143,91846.95369,0,20
+273932,30755.03013,91733.67574,0,20
+273933,31039.34275,91511.11366,0,20
+273934,31004.09921,91345.58996,0,20
+273935,31089.39418,91449.53292,0,20
+273936,31122.58597,91259.58931,0,20
+273937,31322.71784,90985.23036,0,20
+273938,31179.66766,91410.28466,0,20
+273939,31370.24785,90624.63672,0,20
+273940,31465.80848,90999.49969,0,20
+273941,31266.96121,90268.29058,0,20
+273942,31629.26035,90741.09753,0,20
+273943,31665.1624,90474.57017,3705.271623,20
+273944,31648.27745,90236.79883,14522.64833,20
+273945,31754.14937,90014.65462,8551.62789,20
+273946,32841.512,90058.45395,11237.71481,20
+273947,32800.80518,102249.1389,12566.62778,20
+273948,32997.93915,97171.26021,12570.95853,20
+273949,33246.62726,99333.76391,15199.19673,20
+273950,33194.21281,99885.62937,13897.57597,20
+273951,33465.90554,100263.4414,16511.47168,20
+273952,33463.86343,102164.0777,16518.98141,20
+273953,33873.10345,102837.0947,17174.17827,20
+273954,33768.0592,103215.8286,17828.40567,20
+273955,33867.73573,103870.6946,19124.58024,20
+273956,34173.80043,104567.5395,19776.09147,20
+273957,34051.59696,105136.0468,20426.97545,20
+273958,34373.65955,106188.7229,20438.4402,20
+273959,34179.21573,105355.5174,21726.79338,20
+273960,34462.70755,107503.3288,22376.23109,21
+273961,28287.0353,82160.01797,0,21
+273962,27571.82145,81207.85692,0,21
+273963,27137.9594,80682.3499,0,21
+273964,27402.01368,80589.83967,0,21
+273965,26922.92344,80608.26628,0,21
+273966,26871.33658,80025.05165,0,21
+273967,26771.44515,80077.51667,0,21
+273968,26329.76762,79806.66418,0,21
+273969,26648.41402,79898.94531,0,21
+273970,25899.32915,79087.80768,0,21
+273971,26284.2395,79546.31514,0,21
+273972,25767.09811,79024.5046,0,21
+273973,25630.39568,78935.40469,0,21
+273974,25517.5685,78652.53241,0,21
+273975,25420.16242,78456.98269,0,21
+273976,25224.3791,78462.25563,0,21
+273977,24889.06727,78042.91036,0,21
+273978,24968.82647,77896.98237,0,21
+273979,24605.09328,77962.17954,0,21
+273980,24457.54512,79640.00473,0,21
+273981,24318.42037,80487.2644,0,21
+273982,24085.29633,79064.94525,0,21
+273983,23867.46252,80115.36921,0,21
+273984,23817.87744,80932.32927,0,21
+273985,23605.338,79488.89176,0,21
+273986,23233.96437,81207.20868,0,21
+273987,23217.15053,80480.95099,0,21
+273988,22949.25221,80051.14595,0,21
+273989,22762.04821,81452.19815,0,21
+273990,22556.04295,80610.08253,0,21
+273991,22336.80848,81118.65991,0,21
+273992,22104.99091,81872.42707,0,21
+273993,22036.93651,80265.99667,0,21
+273994,21567.31173,82979.94009,0,21
+273995,21450.12023,80491.35182,0,21
+273996,21370.31706,82172.58239,0,21
+273997,20822.39544,80955.26475,1543.879673,21
+273998,20960.27587,83061.88372,1543.940017,21
+273999,20474.76624,81250.85884,788.2590587,21
+274000,20230.48735,82435.16713,1544.031388,21
+274001,20362.88825,81919.49322,1544.091705,21
+274002,20053.31127,82194.12782,2284.060904,21
+274003,20045.30258,82415.15452,1544.240815,21
+274004,19863.38098,82877.19358,1544.301135,21
+274005,19759.39253,81427.16315,3013.215548,21
+274006,19727.77591,83923.82471,1544.478103,21
+274007,19460.80732,81312.77847,3013.569396,21
+274008,19645.2475,83416.79947,1544.655012,21
+274009,19161.69611,82989.05618,3013.923171,21
+274010,19313.29889,81820.89391,3014.156317,21
+274011,19046.1326,83988.99043,2285.255488,21
+274012,19024.10873,82357.5864,3014.566751,21
+274013,18744.88821,82331.13568,3014.79998,21
+274014,18896.52342,83688.47816,3015.03304,21
+274015,18440.9587,82548.43593,3015.266061,21
+274016,18594.41944,82694.12914,3736.174513,21
+274017,18324.07771,83837.01214,3015.78677,21
+274018,18279.74923,81903.21132,3736.825315,21
+274019,18127.28187,83595.5277,3016.307327,21
+274020,17931.94902,82855.4897,4451.185244,21
+274021,2327.187825,21971.21966,0,21
+274022,1240.96497,20657.36386,0,21
+274023,1214.358048,19945.49263,0,21
+274024,1174.256401,19534.79802,0,21
+274025,1160.833501,19033.0292,0,21
+274026,1120.397034,19016.96562,0,21
+274027,1093.297682,18129.08818,0,21
+274028,1079.704867,18096.74658,0,21
+274029,1038.74997,17641.81802,0,21
+274030,1025.038621,17184.92316,0,21
+274031,997.5248508,17110.07006,0,21
+274032,969.8874718,16508.74511,0,21
+274033,942.1239664,16391.11038,0,21
+274034,928.1941374,15790.28172,0,21
+274035,900.2363827,15709.87868,0,21
+274036,872.1454142,15265.77803,0,21
+274037,843.918182,15002.47755,0,21
+274038,829.7523772,14743.20454,0,21
+274039,801.3143712,14289.96468,0,21
+274040,772.7313721,14067.26151,0,21
+274041,758.3842135,13723.46588,0,21
+274042,729.5760319,13538.20949,0,21
+274043,700.6123417,13040.34699,0,21
+274044,686.0706413,12814.59511,0,21
+274045,656.8645182,12736.50156,0,21
+274046,642.1987103,12063.21695,0,21
+274047,612.7379354,12023.93109,0,21
+274048,583.0996822,11561.88115,0,21
+274049,568.2119103,11500.26603,0,21
+274050,538.2944199,11057.57164,0,21
+274051,523.2641341,10759.83302,0,21
+274052,508.1827002,10719.89444,0,21
+274053,462.6249822,10057.34864,0,21
+274054,447.3306092,9972.429189,0,21
+274055,431.9796689,9715.719112,0,21
+274056,401.101458,9498.635281,0,21
+274057,369.9762002,8958.471521,0,21
+274058,354.3159421,8940.282886,0,21
+274059,338.5874584,8432.62403,0,21
+274060,290.9664917,8418.651738,0,21
+274061,274.9371427,7907.354784,0,21
+274062,258.8238028,7624.504417,0,21
+274063,226.3278657,7387.18931,0,21
+274064,209.9348813,7088.402706,0,21
+274065,160.0948106,6561.369968,0,21
+274066,160.0948144,6323.999439,0,21
+274067,126.2223447,6048.717506,0,21
+274068,109.0518509,5733.311002,0,21
+274069,74.13107829,5236.132398,0,21
+274070,38.15881244,4968.79913,0,21
+274071,38.15881393,4666.321509,0,21
+274072,0,4122.878828,0,21
+274073,0,4078.342549,0,21
+274074,0,3571.239658,0,21
+274075,0,3009.158089,0,21
+274076,0,3085.468719,0,21
+274077,0,2456.55127,0,21
+274078,0,2125.588821,0,21
+274079,0,1969.769968,0,21
+274080,0,1533.363134,0,21
+274081,0,1484.72268,0,21
+274082,0,1435.8372,0,21
+274083,0,1411.300817,0,21
+274084,0,1386.700902,0,21
+274085,0,1312.511416,0,21
+274086,0,1312.511554,0,21
+274087,0,1237.719219,0,21
+274088,0,1237.719339,0,21
+274089,0,1162.297698,0,21
+274090,0,1137.012325,0,21
+274091,0,1111.652539,0,21
+274092,0,1060.704577,0,21
+274093,0,1009.443286,0,21
+274094,0,983.69132,0,21
+274095,0,957.8565035,0,21
+274096,0,879.8372134,0,21
+274097,0,879.8372587,0,21
+274098,0,801.0053425,0,21
+274099,0,747.9695363,0,21
+274100,0,721.2996771,0,21
+274101,0,667.6413705,0,21
+274102,0,640.6462402,0,21
+274103,0,586.305763,0,21
+274104,0,531.46963,0,21
+274105,0,503.8532243,0,21
+274106,0,476.0970214,0,21
+274107,0,391.91968,0,21
+274108,0,391.9196528,0,21
+274109,0,320.5981301,0,21
+274110,0,291.72679,0,21
+274111,0,248.0022783,0,21
+274112,0,218.543148,0,21
+274113,0,158.7481512,0,21
+274114,0,158.7481693,0,21
+274115,0,97.45950515,0,21
+274116,0,66.03387115,0,21
+274117,0,50.04748628,0,21
+274118,0,0,0,21
+274119,0,0,0,21
+274120,0,0,0,21
+274121,0,0,0,21
+274122,0,0,0,21
+274123,0,0,0,21
+274124,0,0,0,21
+274125,0,0,0,21
+274126,0,0,0,21
+274127,0,0,0,21
+274128,0,0,0,21
+274129,0,0,0,21
+274130,0,0,0,21
+274131,0,0,0,21
+274132,0,0,0,21
+274133,0,0,0,21
+274134,0,0,0,21
+274135,0,0,0,21
+274136,0,0,0,21
+274137,0,0,0,21
+274138,0,0,0,21
+274139,0,0,0,21
+274140,0,0,0,21
+274141,0,0,0,21
+274142,0,0,0,21
+274143,0,0,0,21
+274144,0,0,0,21
+274145,0,0,0,21
+274146,0,0,0,21
+274147,0,0,0,21
+274148,0,0,0,21
+274149,0,0,0,21
+274150,0,0,0,21
+274151,0,0,0,21
+274152,0,0,0,21
+274153,0,0,0,21
+274154,0,0,0,21
+274155,0,0,0,21
+274156,0,0,0,21
+274157,0,0,0,21
+274158,0,0,0,21
+274159,0,0,0,21
+274160,0,0,0,21
+274161,0,0,0,21
+274162,0,0,0,21
+274163,0,0,0,21
+274164,0,0,0,21
+274165,0,0,0,21
+274166,0,0,0,21
+274167,0,0,0,21
+274168,0,0,0,21
+274169,0,0,0,21
+274170,0,0,0,21
+274171,0,0,0,21
+274172,0,0,0,21
+274173,0,0,0,21
+274174,0,0,0,21
+274175,0,0,0,21
+274176,0,0,0,21
+274177,0,0,0,21
+274178,0,0,0,21
+274179,0,0,0,21
+274180,0,0,0,21
+274181,0,0,0,21
+274182,0,0,0,21
+274183,0,0,0,21
+274184,0,0,0,21
+274185,0,0,0,21
+274186,0,0,0,21
+274187,0,0,0,21
+274188,0,0,0,21
+274189,0,0,0,21
+274190,0,0,0,21
+274191,0,0,0,21
+274192,0,0,0,21
+274193,0,0,0,21
+274194,0,0,0,21
+274195,0,0,0,21
+274196,0,0,0,21
+274197,0,0,0,21
+274198,0,0,0,21
+274199,0,0,0,21
+274200,0,0,0,21
+274201,0,0,0,21
+274202,0,0,0,21
+274203,0,0,0,21
+274204,0,0,0,21
+274205,0,0,0,21
+274206,0,0,0,21
+274207,0,0,0,21
+274208,0,0,0,21
+274209,0,0,0,21
+274210,0,0,0,21
+274211,0,0,0,21
+274212,0,0,0,21
+274213,0,0,0,21
+274214,0,0,0,21
+274215,0,0,0,21
+274216,0,0,0,21
+274217,0,0,0,21
+274218,0,0,0,21
+274219,0,0,0,21
+274220,0,0,0,21
+274221,0,0,0,21
+274222,0,0,0,21
+274223,0,0,0,21
+274224,0,0,0,21
+274225,0,0,0,21
+274226,0,0,0,21
+274227,0,0,0,21
+274228,0,0,0,21
+274229,0,0,0,21
+274230,0,0,0,21
+274231,0,0,0,21
+274232,0,0,0,21
+274233,0,0,0,21
+274234,0,0,0,21
+274235,0,0,0,21
+274236,0,0,0,21
+274237,0,0,0,21
+274238,0,0,0,21
+274239,0,0,0,21
+274240,0,0,0,21
+274241,0,0,0,21
+274242,0,0,0,21
+274243,0,0,0,21
+274244,0,0,0,21
+274245,0,0,0,21
+274246,0,0,0,21
+274247,0,0,0,21
+274248,0,0,0,21
+274249,0,0,0,21
+274250,0,0,0,21
+274251,0,0,0,21
+274252,0,0,0,21
+274253,0,0,0,21
+274254,0,0,0,21
+274255,0,0,0,21
+274256,0,0,0,21
+274257,0,0,0,21
+274258,0,0,0,21
+274259,0,0,0,21
+274260,0,0,0,21
+274261,0,0,0,21
+274262,0,0,0,21
+274263,0,0,0,21
+274264,0,0,0,21
+274265,0,0,0,21
+274266,0,0,0,21
+274267,0,0,0,21
+274268,0,0,0,21
+274269,0,0,0,21
+274270,0,0,0,21
+274271,0,0,0,21
+274272,0,0,0,21
+274273,0,0,0,21
+274274,0,0,0,21
+274275,0,0,0,21
+274276,0,0,0,21
+274277,0,0,0,21
+274278,0,0,0,21
+274279,0,0,0,21
+274280,0,0,0,21
+274281,0,0,0,21
+274282,0,0,0,21
+274283,0,0,0,21
+274284,0,0,0,21
+274285,0,0,0,21
+274286,0,0,0,21
+274287,0,0,0,21
+274288,0,0,0,21
+274289,0,0,0,21
+274290,0,0,0,21
+274291,0,0,0,21
+274292,0,0,0,21
+274293,0,0,0,21
+274294,0,0,0,21
+274295,0,0,0,21
+274296,0,0,0,21
+274297,0,0,0,21
+274298,0,0,0,21
+274299,0,0,0,21
+274300,0,0,0,21
+274301,0,0,0,21
+274302,0,0,0,21
+274303,0,0,0,21
+274304,0,0,0,21
+274305,0,0,0,21
+274306,0,0,0,21
+274307,0,0,0,21
+274308,0,0,0,21
+274309,0,0,0,21
+274310,0,0,0,21
+274311,0,0,0,21
+274312,0,0,0,21
+274313,0,0,0,21
+274314,0,0,0,21
+274315,0,0,0,21
+274316,0,0,0,21
+274317,0,0,0,21
+274318,0,0,0,21
+274319,0,0,0,21
+274320,0,0,0,21
+274321,0,0,0,21
+274322,0,0,0,21
+274323,0,0,0,21
+274324,0,0,0,21
+274325,0,0,0,21
+274326,0,0,0,21
+274327,0,0,0,21
+274328,0,0,0,21
+274329,0,0,0,21
+274330,0,0,0,21
+274331,0,0,0,21
+274332,0,0,0,21
+274333,0,0,0,21
+274334,0,0,0,21
+274335,0,0,0,21
+274336,0,0,0,21
+274337,0,0,0,21
+274338,0,0,0,21
+274339,0,0,0,21
+274340,0,0,0,21
+274341,0,0,0,21
+274342,0,0,0,21
+274343,0,0,0,21
+274344,0,0,0,21
+274345,0,0,0,21
+274346,0,0,0,21
+274347,0,0,0,21
+274348,0,0,0,21
+274349,0,0,0,21
+274350,0,0,0,21
+274351,0,0,0,21
+274352,0,0,0,21
+274353,0,0,0,21
+274354,0,0,0,21
+274355,0,0,0,21
+274356,0,0,0,21
+274357,0,0,0,21
+274358,0,0,0,21
+274359,0,0,0,21
+274360,0,0,0,21
+274361,0,0,0,21
+274362,0,0,0,21
+274363,0,0,0,21
+274364,0,0,0,21
+274365,0,0,0,21
+274366,0,0,0,21
+274367,0,0,0,21
+274368,0,0,0,21
+274369,0,0,0,21
+274370,0,0,0,21
+274371,0,0,0,21
+274372,0,0,0,21
+274373,0,0,0,21
+274374,0,0,0,21
+274375,0,0,0,21
+274376,0,0,0,21
+274377,0,0,0,21
+274378,0,0,0,21
+274379,0,0,0,21
+274380,0,0,0,21
+274381,0,0,0,21
+274382,0,0,0,21
+274383,0,0,0,21
+274384,0,0,0,21
+274385,0,0,0,21
+274386,0,0,0,21
+274387,0,0,0,21
+274388,0,0,0,21
+274389,0,0,0,21
+274390,0,0,0,21
+274391,0,0,0,21
+274392,0,0,0,21
+274393,0,0,0,21
+274394,0,0,0,21
+274395,0,0,0,21
+274396,0,0,0,21
+274397,0,0,0,21
+274398,0,0,0,21
+274399,0,0,0,21
+274400,0,0,0,21
+274401,0,0,0,21
+274402,0,0,0,21
+274403,0,0,0,21
+274404,0,0,0,21
+274405,0,0,0,21
+274406,0,0,0,21
+274407,0,0,0,21
+274408,0,0,0,21
+274409,0,0,0,21
+274410,0,0,0,21
+274411,0,0,0,21
+274412,0,0,0,21
+274413,0,0,0,21
+274414,0,0,0,21
+274415,0,0,0,21
+274416,0,0,0,21
+274417,0,0,0,21
+274418,0,0,0,21
+274419,0,0,0,21
+274420,0,0,0,21
+274421,0,0,0,21
+274422,0,0,0,21
+274423,0,0,0,21
+274424,0,0,0,21
+274425,0,0,0,21
+274426,0,0,0,21
+274427,0,0,0,21
+274428,0,0,0,21
+274429,0,0,0,21
+274430,0,0,0,21
+274431,0,0,0,21
+274432,0,0,0,21
+274433,0,0,0,21
+274434,0,0,0,21
+274435,0,0,0,21
+274436,0,0,0,21
+274437,0,0,0,21
+274438,0,0,0,21
+274439,0,0,0,21
+274440,0,0,0,21
+274441,0,0,0,21
+274442,0,0,0,21
+274443,0,0,0,21
+274444,0,0,0,21
+274445,0,0,0,21
+274446,0,0,0,21
+274447,0,0,0,21
+274448,0,0,0,21
+274449,0,0,0,21
+274450,0,0,0,21
+274451,0,0,0,21
+274452,0,0,0,21
+274453,0,0,0,21
+274454,0,0,0,21
+274455,0,0,0,21
+274456,0,0,0,21
+274457,0,0,0,21
+274458,0,0,0,21
+274459,0,0,0,21
+274460,0,0,0,21
+274461,0,0,0,21
+274462,0,0,0,21
+274463,0,0,0,21
+274464,0,0,0,21
+274465,0,0,0,21
+274466,0,0,0,21
+274467,0,0,0,21
+274468,0,0,0,21
+274469,0,0,0,21
+274470,0,0,0,21
+274471,0,0,0,21
+274472,0,0,0,21
+274473,0,0,0,21
+274474,0,0,0,21
+274475,0,0,0,21
+274476,0,0,0,21
+274477,0,0,0,21
+274478,0,0,0,21
+274479,0,0,0,21
+274480,0,0,0,21
+274481,0,0,0,21
+274482,0,0,0,21
+274483,0,0,0,21
+274484,0,0,0,21
+274485,0,0,0,21
+274486,0,0,0,21
+274487,0,0,0,21
+274488,0,0,0,21
+274489,0,0,0,21
+274490,0,0,0,21
+274491,0,0,0,21
+274492,0,0,0,21
+274493,0,0,0,21
+274494,0,0,0,21
+274495,0,0,0,21
+274496,0,0,0,21
+274497,0,0,0,21
+274498,0,0,0,21
+274499,0,0,0,21
+274500,0,0,0,21
+274501,0,0,0,21
+274502,0,0,0,21
+274503,0,0,0,21
+274504,0,0,0,21
+274505,0,0,0,21
+274506,0,0,0,21
+274507,0,0,0,21
+274508,0,0,0,21
+274509,0,0,0,21
+274510,0,0,0,21
+274511,0,0,0,21
+274512,0,0,0,21
+274513,0,0,0,21
+274514,0,0,0,21
+274515,0,0,0,21
+274516,0,0,0,21
+274517,0,0,0,21
+274518,0,0,0,21
+274519,0,0,0,21
+274520,0,0,0,21
+274521,0,0,0,21
+274522,0,0,0,21
+274523,0,0,0,21
+274524,0,0,0,21
+274525,0,0,0,21
+274526,0,0,0,21
+274527,0,0,0,21
+274528,0,0,0,21
+274529,0,0,0,21
+274530,0,0,0,21
+274531,0,0,0,21
+274532,0,0,0,21
+274533,0,0,0,21
+274534,0,0,0,21
+274535,0,0,0,21
+274536,0,0,0,21
+274537,0,0,0,21
+274538,0,0,0,21
+274539,0,0,0,21
+274540,0,0,0,21
+274541,0,0,0,21
+274542,0,0,0,21
+274543,0,0,0,21
+274544,0,0,0,21
+274545,0,0,0,21
+274546,0,0,0,21
+274547,0,0,0,21
+274548,0,0,0,21
+274549,0,0,0,21
+274550,0,0,0,21
+274551,0,0,0,21
+274552,0,0,0,21
+274553,0,0,0,21
+274554,0,0,0,21
+274555,0,0,0,21
+274556,0,0,0,21
+274557,0,0,0,21
+274558,0,0,0,21
+274559,0,0,0,21
+274560,0,0,0,21
+274561,0,0,0,21
+274562,0,0,0,21
+274563,0,0,0,21
+274564,0,0,0,21
+274565,0,0,0,21
+274566,0,0,0,21
+274567,0,0,0,21
+274568,0,0,0,21
+274569,0,0,0,21
+274570,0,0,0,21
+274571,0,0,0,21
+274572,0,0,0,21
+274573,0,0,0,21
+274574,0,0,0,21
+274575,0,0,0,21
+274576,0,0,0,21
+274577,0,0,0,21
+274578,0,0,0,21
+274579,0,0,0,21
+274580,0,0,0,21
+274581,0,0,0,21
+274582,0,0,0,21
+274583,0,0,0,21
+274584,0,0,0,21
+274585,0,0,0,21
+274586,0,0,0,21
+274587,0,0,0,21
+274588,0,0,0,21
+274589,0,0,0,21
+274590,0,0,0,21
+274591,0,0,0,21
+274592,0,0,0,21
+274593,0,0,0,21
+274594,0,0,0,21
+274595,0,0,0,21
+274596,0,0,0,21
+274597,0,0,0,21
+274598,0,0,0,21
+274599,0,0,0,21
+274600,0,0,0,21
+274601,0,0,0,21
+274602,0,0,0,21
+274603,0,0,0,21
+274604,0,0,0,21
+274605,0,0,0,21
+274606,0,0,0,21
+274607,0,0,0,21
+274608,0,0,0,21
+274609,0,0,0,21
+274610,0,0,0,21
+274611,0,0,0,21
+274612,0,0,0,21
+274613,0,0,0,21
+274614,0,0,0,21
+274615,0,0,0,21
+274616,0,0,0,21
+274617,0,0,0,21
+274618,0,0,0,21
+274619,0,0,0,21
+274620,0,0,0,21
+274621,0,0,0,21
+274622,0,0,0,21
+274623,0,0,0,21
+274624,0,0,0,21
+274625,0,0,0,21
+274626,0,0,0,21
+274627,0,0,0,21
+274628,0,0,0,21
+274629,0,0,0,21
+274630,0,0,0,21
+274631,0,0,0,21
+274632,0,0,0,21
+274633,0,0,0,21
+274634,0,0,0,21
+274635,0,0,0,21
+274636,0,0,0,21
+274637,0,0,0,21
+274638,0,0,0,21
+274639,0,0,0,21
+274640,0,0,0,21
+274641,0,0,0,21
+274642,0,0,0,21
+274643,0,0,0,21
+274644,0,0,0,21
+274645,0,0,0,21
+274646,0,0,0,21
+274647,0,0,0,21
+274648,0,0,0,21
+274649,0,0,0,21
+274650,0,0,0,21
+274651,0,0,0,21
+274652,0,0,0,21
+274653,0,0,0,21
+274654,0,0,0,21
+274655,0,0,0,21
+274656,0,0,0,21
+274657,0,0,0,21
+274658,0,0,0,21
+274659,0,0,0,21
+274660,0,0,0,21
+274661,0,0,0,21
+274662,0,0,0,21
+274663,0,0,0,21
+274664,0,0,0,21
+274665,0,0,0,21
+274666,0,0,0,21
+274667,0,0,0,21
+274668,0,0,0,21
+274669,0,0,0,21
+274670,0,0,0,21
+274671,0,0,0,21
+274672,0,0,0,21
+274673,0,0,0,21
+274674,0,0,0,21
+274675,0,0,0,21
+274676,0,0,0,21
+274677,0,0,0,21
+274678,0,0,0,21
+274679,0,0,0,21
+274680,0,0,0,21
+274681,0,0,0,21
+274682,0,0,0,21
+274683,0,0,0,21
+274684,0,0,0,21
+274685,0,0,0,21
+274686,0,0,0,21
+274687,0,0,0,21
+274688,0,0,0,21
+274689,0,0,0,21
+274690,0,0,0,21
+274691,0,0,0,21
+274692,0,0,0,21
+274693,0,0,0,21
+274694,0,0,0,21
+274695,0,0,0,21
+274696,0,0,0,21
+274697,0,0,0,21
+274698,0,0,0,21
+274699,0,0,0,21
+274700,0,0,0,21
+274701,0,0,0,21
+274702,0,0,0,21
+274703,0,0,0,21
+274704,0,0,0,21
+274705,0,0,0,21
+274706,0,0,0,21
+274707,0,0,0,21
+274708,0,0,0,21
+274709,0,0,0,21
+274710,0,0,0,21
+274711,0,0,0,21
+274712,0,0,0,21
+274713,0,0,0,21
+274714,0,0,0,21
+274715,0,0,0,21
+274716,0,0,0,21
+274717,0,0,0,21
+274718,0,0,0,21
+274719,0,0,0,21
+274720,0,0,0,21
+274721,0,0,0,21
+274722,0,0,0,21
+274723,0,0,0,21
+274724,0,0,0,21
+274725,0,0,0,21
+274726,0,0,0,21
+274727,0,0,0,21
+274728,0,0,0,21
+274729,0,0,0,21
+274730,0,0,0,21
+274731,0,0,0,21
+274732,0,0,0,21
+274733,0,0,0,21
+274734,0,0,0,21
+274735,0,0,0,21
+274736,0,0,0,21
+274737,0,0,0,21
+274738,0,0,0,21
+274739,0,0,0,21
+274740,0,0,0,21
+274741,0,0,0,21
+274742,0,0,0,21
+274743,0,0,0,21
+274744,0,0,0,21
+274745,0,0,0,21
+274746,0,0,0,21
+274747,0,0,0,21
+274748,0,0,0,21
+274749,0,0,0,21
+274750,0,0,0,21
+274751,0,0,0,21
+274752,0,0,0,21
+274753,0,0,0,21
+274754,0,0,0,21
+274755,0,0,0,21
+274756,0,0,0,21
+274757,0,0,0,21
+274758,0,0,0,21
+274759,0,0,0,21
+274760,0,0,0,21
+274761,0,0,0,21
+274762,0,0,0,21
+274763,0,0,0,21
+274764,0,0,0,21
+274765,0,0,0,21
+274766,0,0,0,21
+274767,0,0,0,21
+274768,0,0,0,21
+274769,0,0,0,21
+274770,0,0,0,21
+274771,0,0,0,21
+274772,0,0,0,21
+274773,0,0,0,21
+274774,0,0,0,21
+274775,0,0,0,21
+274776,0,0,0,21
+274777,0,0,0,21
+274778,0,0,0,21
+274779,0,0,0,21
+274780,0,0,0,21
+274781,0,0,0,21
+274782,0,0,0,21
+274783,0,0,0,21
+274784,0,0,0,21
+274785,0,0,0,21
+274786,0,0,0,21
+274787,0,0,0,21
+274788,0,0,0,21
+274789,0,0,0,21
+274790,0,0,0,21
+274791,0,0,0,21
+274792,0,0,0,21
+274793,0,0,0,21
+274794,0,0,0,21
+274795,0,0,0,21
+274796,0,0,0,21
+274797,0,0,0,21
+274798,0,0,0,21
+274799,0,0,0,21
+274800,0,0,0,21
+274801,0,0,0,21
+274802,0,0,0,21
+274803,0,0,0,21
+274804,0,0,0,21
+274805,0,0,0,21
+274806,0,0,0,21
+274807,0,0,0,21
+274808,0,0,0,21
+274809,0,0,0,21
+274810,0,0,0,21
+274811,0,0,0,21
+274812,0,0,0,21
+274813,0,0,0,21
+274814,0,0,0,21
+274815,0,0,0,21
+274816,0,0,0,21
+274817,0,0,0,21
+274818,0,0,0,21
+274819,0,0,0,21
+274820,0,0,0,21
+274821,0,0,0,21
+274822,0,0,0,21
+274823,0,0,0,21
+274824,0,0,0,21
+274825,0,0,0,21
+274826,0,0,0,21
+274827,0,0,0,21
+274828,0,0,0,21
+274829,0,0,0,21
+274830,0,0,0,21
+274831,0,0,0,21
+274832,0,0,0,21
+274833,0,0,0,21
+274834,0,0,0,21
+274835,0,954.292561,0,21
+274836,0,1199.904904,0,21
+274837,0,1199.904896,0,21
+274838,0,1361.707726,0,21
+274839,0,1681.351117,0,21
+274840,0,1839.416256,0,21
+274841,0,1996.427331,0,21
+274842,0,2307.559292,0,21
+274843,0,2307.559306,0,21
+274844,0,2461.792812,0,21
+274845,0,2919.699994,0,21
+274846,0,2767.825075,0,21
+274847,0,3070.858808,0,21
+274848,0,3371.140409,0,21
+274849,0,3371.14042,0,21
+274850,0,3668.872125,0,21
+274851,0,3668.87216,0,21
+274852,0,3964.223174,0,21
+274853,0,4111.05176,0,21
+274854,0,4403.094899,0,21
+274855,0,4403.095161,0,21
+274856,0,4548.338792,0,21
+274857,0,4837.335256,0,21
+274858,0,4981.111763,0,21
+274859,0,5124.421834,0,21
+274860,0,5267.275628,0,21
+274861,0,0,0,21
+274862,0,0,0,21
+274863,0,0,0,21
+274864,0,0,0,21
+274865,0,362062.7608,678859.4994,21
+274866,332813.0049,0,0,21
+274867,0,0,0,21
+274868,0,0,0,21
+274869,0,0,0,21
+274870,0,0,0,21
+274871,0,0,0,21
+274872,0,0,0,21
+274873,0,0,0,21
+274874,0,0,0,21
+274875,0,0,0,21
+274876,0,0,0,21
+274877,0,0,0,21
+274878,0,0,0,21
+274879,0,0,0,21
+274880,0,0,0,21
+274881,0,0,0,21
+274882,0,0,0,21
+274883,0,0,0,21
+274884,0,0,0,21
+274885,0,0,0,21
+274886,0,0,0,21
+274887,0,0,0,21
+274888,0,0,0,21
+274889,0,0,0,21
+274890,0,0,0,21
+274891,0,0,0,21
+274892,0,0,0,21
+274893,0,0,0,21
+274894,0,0,0,21
+274895,0,0,0,21
+274896,0,0,0,21
+274897,0,0,0,21
+274898,0,0,0,21
+274899,0,364198.1413,677568.1414,21
+274900,0,0,0,21
+274901,332812.7357,0,0,21
+274902,0,0,0,21
+274903,0,0,0,21
+274904,0,0,0,21
+274905,0,0,0,21
+274906,0,0,0,21
+274907,0,0,0,21
+274908,0,0,0,21
+274909,0,0,0,21
+274910,0,0,0,21
+274911,0,0,0,21
+274912,0,0,0,21
+274913,0,0,0,21
+274914,0,0,0,21
+274915,0,0,0,21
+274916,0,0,0,21
+274917,0,0,0,21
+274918,0,0,0,21
+274919,0,0,0,21
+274920,0,0,0,15.6
+274921,0,0,0,15.6
+274922,0,0,0,15.6
+274923,0,0,0,15.6
+274924,0,0,0,15.6
+274925,0,0,0,15.6
+274926,0,0,0,15.6
+274927,0,0,0,15.6
+274928,0,0,0,15.6
+274929,0,0,0,15.6
+274930,0,0,0,15.6
+274931,0,0,0,15.6
+274932,0,0,0,15.6
+274933,0,0,676646.5948,15.6
+274934,0,365772.4309,0,15.6
+274935,0,0,0,15.6
+274936,333388.0313,0,0,15.6
+274937,0,0,0,15.6
+274938,0,0,0,15.6
+274939,0,0,0,15.6
+274940,0,0,0,15.6
+274941,0,0,0,15.6
+274942,0,0,0,15.6
+274943,0,0,0,15.6
+274944,0,0,0,15.6
+274945,0,0,0,15.6
+274946,0,0,0,15.6
+274947,0,0,0,15.6
+274948,0,0,0,15.6
+274949,0,0,0,15.6
+274950,0,0,0,15.6
+274951,0,0,0,15.6
+274952,0,0,0,15.6
+274953,0,0,0,15.6
+274954,0,0,0,15.6
+274955,0,0,0,15.6
+274956,0,0,0,15.6
+274957,0,0,0,15.6
+274958,0,0,0,15.6
+274959,0,0,0,15.6
+274960,0,0,0,15.6
+274961,0,0,0,15.6
+274962,0,0,0,15.6
+274963,0,0,0,15.6
+274964,0,0,0,15.6
+274965,0,0,0,15.6
+274966,0,0,0,15.6
+274967,0,0,675770.1161,15.6
+274968,0,0,0,15.6
+274969,0,367576.4955,0,15.6
+274970,0,0,0,15.6
+274971,334142.963,0,0,15.6
+274972,0,0,0,15.6
+274973,0,0,0,15.6
+274974,0,0,0,15.6
+274975,0,0,0,15.6
+274976,0,0,0,15.6
+274977,0,0,0,15.6
+274978,0,0,0,15.6
+274979,0,0,0,15.6
+274980,0,0,0,15.6
+274981,0,0,0,15.6
+274982,0,0,0,15.6
+274983,0,0,0,15.6
+274984,0,0,0,15.6
+274985,0,0,0,15.6
+274986,0,0,0,15.6
+274987,0,0,0,15.6
+274988,0,0,0,15.6
+274989,0,0,0,15.6
+274990,0,0,0,15.6
+274991,0,0,0,15.6
+274992,0,0,0,15.6
+274993,0,0,0,15.6
+274994,0,0,0,15.6
+274995,0,0,0,15.6
+274996,0,0,0,15.6
+274997,0,0,0,15.6
+274998,0,0,0,15.6
+274999,0,0,0,15.6
+275000,0,0,0,15.6
+275001,0,0,674421.1996,15.6
+275002,0,0,0,15.6
+275003,0,0,0,15.6
+275004,0,368286.5577,0,15.6
+275005,0,0,0,15.6
+275006,334857.2435,0,0,15.6
+275007,0,0,0,15.6
+275008,0,0,0,15.6
+275009,0,0,0,15.6
+275010,0,0,0,15.6
+275011,0,0,0,15.6
+275012,0,0,0,15.6
+275013,0,0,0,15.6
+275014,0,0,0,15.6
+275015,0,0,0,15.6
+275016,0,0,0,15.6
+275017,0,0,0,15.6
+275018,0,0,0,15.6
+275019,0,0,0,15.6
+275020,0,0,0,15.6
+275021,0,0,0,15.6
+275022,0,0,0,15.6
+275023,0,0,0,15.6
+275024,0,0,0,15.6
+275025,0,0,0,15.6
+275026,0,0,0,15.6
+275027,0,0,0,15.6
+275028,0,0,0,15.6
+275029,0,0,0,15.6
+275030,0,0,0,15.6
+275031,0,0,0,15.6
+275032,0,0,0,15.6
+275033,0,0,0,15.6
+275034,0,0,0,15.6
+275035,0,0,673362.0919,15.6
+275036,0,0,0,15.6
+275037,0,0,0,15.6
+275038,0,0,0,15.6
+275039,0,368559.1283,0,15.6
+275040,0,0,0,15.6
+275041,336400.8344,0,0,15.6
+275042,0,0,0,15.6
+275043,0,0,0,15.6
+275044,0,0,0,15.6
+275045,0,0,0,15.6
+275046,0,0,0,15.6
+275047,0,0,0,15.6
+275048,0,0,0,15.6
+275049,0,0,0,15.6
+275050,0,0,0,15.6
+275051,0,0,0,15.6
+275052,0,0,0,15.6
+275053,0,0,0,15.6
+275054,0,0,0,15.6
+275055,0,0,0,15.6
+275056,0,0,0,15.6
+275057,0,0,0,15.6
+275058,0,0,0,15.6
+275059,0,0,0,15.6
+275060,0,0,0,15.6
+275061,0,0,0,15.6
+275062,0,0,0,15.6
+275063,0,0,0,15.6
+275064,0,0,0,15.6
+275065,0,0,0,15.6
+275066,0,0,0,15.6
+275067,0,0,0,15.6
+275068,0,0,0,15.6
+275069,0,0,671792.1883,15.6
+275070,0,0,0,15.6
+275071,0,0,0,15.6
+275072,0,0,0,15.6
+275073,0,0,0,15.6
+275074,0,368708.3675,0,15.6
+275075,0,0,0,15.6
+275076,337090.5406,0,0,15.6
+275077,0,0,0,15.6
+275078,0,0,0,15.6
+275079,0,0,0,15.6
+275080,0,0,0,15.6
+275081,0,0,0,15.6
+275082,0,0,0,15.6
+275083,0,0,0,15.6
+275084,0,0,0,15.6
+275085,0,0,0,15.6
+275086,0,0,0,15.6
+275087,0,0,0,15.6
+275088,0,0,0,15.6
+275089,0,0,0,15.6
+275090,0,0,0,15.6
+275091,0,0,0,15.6
+275092,0,0,0,15.6
+275093,0,0,0,15.6
+275094,0,0,0,15.6
+275095,0,0,0,15.6
+275096,0,0,0,15.6
+275097,0,0,0,15.6
+275098,0,0,0,15.6
+275099,0,0,0,15.6
+275100,0,0,0,15.6
+275101,0,0,0,15.6
+275102,0,0,0,15.6
+275103,0,0,671284.5401,15.6
+275104,0,0,0,15.6
+275105,0,0,0,15.6
+275106,0,0,0,15.6
+275107,0,0,0,15.6
+275108,0,0,0,15.6
+275109,0,368174.4981,0,15.6
+275110,0,0,0,15.6
+275111,335605.7398,0,0,15.6
+275112,0,0,0,15.6
+275113,0,0,0,15.6
+275114,0,0,0,15.6
+275115,0,0,0,15.6
+275116,0,0,0,15.6
+275117,0,0,0,15.6
+275118,0,0,0,15.6
+275119,0,0,0,15.6
+275120,0,0,0,15.6
+275121,0,0,0,15.6
+275122,0,0,0,15.6
+275123,0,0,0,15.6
+275124,0,0,0,15.6
+275125,0,0,0,15.6
+275126,0,0,0,15.6
+275127,0,0,0,15.6
+275128,0,0,0,15.6
+275129,0,0,0,15.6
+275130,0,0,0,15.6
+275131,0,0,0,15.6
+275132,0,0,0,15.6
+275133,0,0,0,15.6
+275134,0,0,0,15.6
+275135,0,0,0,15.6
+275136,0,0,0,15.6
+275137,0,0,670061.4447,15.6
+275138,0,0,0,15.6
+275139,0,0,0,15.6
+275140,0,0,0,15.6
+275141,0,0,0,15.6
+275142,0,0,0,15.6
+275143,0,0,0,15.6
+275144,0,368190.1968,0,15.6
+275145,0,0,0,15.6
+275146,335754.7529,0,0,15.6
+275147,0,0,0,15.6
+275148,0,0,0,15.6
+275149,0,0,0,15.6
+275150,0,0,0,15.6
+275151,0,0,0,15.6
+275152,0,0,0,15.6
+275153,0,0,0,15.6
+275154,0,0,0,15.6
+275155,0,0,0,15.6
+275156,0,0,0,15.6
+275157,0,0,0,15.6
+275158,0,0,0,15.6
+275159,0,0,0,15.6
+275160,0,0,0,15.6
+275161,0,0,0,15.6
+275162,0,0,0,15.6
+275163,0,0,0,15.6
+275164,0,0,0,15.6
+275165,0,0,0,15.6
+275166,0,0,0,15.6
+275167,0,0,0,15.6
+275168,0,0,0,15.6
+275169,0,0,0,15.6
+275170,0,0,0,15.6
+275171,0,0,669610.452,15.6
+275172,0,0,0,15.6
+275173,0,0,0,15.6
+275174,0,0,0,15.6
+275175,0,0,0,15.6
+275176,0,0,0,15.6
+275177,0,0,0,15.6
+275178,0,0,0,15.6
+275179,0,363506.0313,0,15.6
+275180,0,0,0,15.6
+275181,337108.1789,0,0,15.6
+275182,0,0,0,15.6
+275183,0,0,0,15.6
+275184,0,0,0,15.6
+275185,0,0,0,15.6
+275186,0,0,0,15.6
+275187,0,0,0,15.6
+275188,0,0,0,15.6
+275189,0,0,0,15.6
+275190,0,0,0,15.6
+275191,0,0,0,15.6
+275192,0,0,0,15.6
+275193,0,0,0,15.6
+275194,0,0,0,15.6
+275195,0,0,0,15.6
+275196,0,0,0,15.6
+275197,0,0,0,15.6
+275198,0,0,0,15.6
+275199,0,0,0,15.6
+275200,0,0,0,15.6
+275201,0,0,0,15.6
+275202,0,0,0,15.6
+275203,0,0,0,15.6
+275204,0,0,0,15.6
+275205,0,0,668088.2401,15.6
+275206,0,0,0,15.6
+275207,0,0,0,15.6
+275208,0,0,0,15.6
+275209,0,0,0,15.6
+275210,0,0,0,15.6
+275211,0,0,0,15.6
+275212,0,0,0,15.6
+275213,0,0,0,15.6
+275214,0,369370.7271,0,15.6
+275215,0,0,0,15.6
+275216,337370.3754,0,0,15.6
+275217,0,0,0,15.6
+275218,0,0,0,15.6
+275219,0,0,0,15.6
+275220,0,0,0,15.6
+275221,0,0,0,15.6
+275222,0,0,0,15.6
+275223,0,0,0,15.6
+275224,0,0,0,15.6
+275225,0,0,0,15.6
+275226,0,0,0,15.6
+275227,0,0,0,15.6
+275228,0,0,0,15.6
+275229,0,0,0,15.6
+275230,0,0,0,15.6
+275231,0,0,0,15.6
+275232,0,0,0,15.6
+275233,0,0,0,15.6
+275234,0,0,0,15.6
+275235,0,0,0,15.6
+275236,0,0,0,15.6
+275237,0,0,0,15.6
+275238,0,0,0,15.6
+275239,0,0,667739.3917,15.6
+275240,0,0,0,15.6
+275241,0,0,0,15.6
+275242,0,0,0,15.6
+275243,0,0,0,15.6
+275244,0,0,0,15.6
+275245,0,0,0,15.6
+275246,0,0,0,15.6
+275247,0,0,0,15.6
+275248,0,369359.9181,0,15.6
+275249,0,0,0,15.6
+275250,335881.3148,0,0,15.6
+275251,0,0,0,15.6
+275252,0,0,0,15.6
+275253,0,0,0,15.6
+275254,0,0,0,15.6
+275255,0,0,0,15.6
+275256,0,0,0,15.6
+275257,0,0,0,15.6
+275258,0,0,0,15.6
+275259,0,0,0,15.6
+275260,0,0,0,15.6
+275261,0,0,0,15.6
+275262,0,0,0,15.6
+275263,0,0,0,15.6
+275264,0,0,0,15.6
+275265,0,0,0,15.6
+275266,0,0,0,15.6
+275267,0,0,0,15.6
+275268,0,0,0,15.6
+275269,0,0,0,15.6
+275270,0,0,0,15.6
+275271,0,0,0,15.6
+275272,0,0,0,15.6
+275273,0,0,667674.3829,15.6
+275274,0,0,0,15.6
+275275,0,0,0,15.6
+275276,0,0,0,15.6
+275277,0,0,0,15.6
+275278,0,0,0,15.6
+275279,0,0,0,15.6
+275280,0,0,0,17.8
+275281,0,306.1886603,0,17.8
+275282,0,369865.1993,0,17.8
+275283,0,363.529398,0,17.8
+275284,337301.7228,476.0966443,0,17.8
+275285,0,503.8527831,0,17.8
+275286,0,558.9514437,0,17.8
+275287,0,558.9517288,0,17.8
+275288,0,627.104717,0,17.8
+275289,0,640.645501,0,17.8
+275290,0,667.6405471,0,17.8
+275291,0,694.5238474,0,17.8
+275292,0,721.2988221,0,17.8
+275293,0,747.9686234,0,17.8
+275294,0,0,0,17.8
+275295,0,0,0,17.8
+275296,0,0,0,17.8
+275297,0,0,0,17.8
+275298,0,0,0,17.8
+275299,0,0,0,17.8
+275300,0,0,0,17.8
+275301,0,0,0,17.8
+275302,0,0,0,17.8
+275303,0,0,0,17.8
+275304,0,0,0,17.8
+275305,0,0,0,17.8
+275306,0,0,0,17.8
+275307,0,0,667106.8637,17.8
+275308,0,0,0,17.8
+275309,0,1307.395317,0,17.8
+275310,0,2731.910115,0,17.8
+275311,0,2486.917606,0,17.8
+275312,0,2547.942956,0,17.8
+275313,0,2922.524733,0,17.8
+275314,0,2948.619141,0,17.8
+275315,0,3215.293769,0,17.8
+275316,0,365300.0292,0,17.8
+275317,0,3480.02391,0,17.8
+275318,337122.7174,3505.859206,0,17.8
+275319,0,3480.02461,0,17.8
+275320,0,3768.713193,0,17.8
+275321,0,1009.443815,0,17.8
+275322,0,1009.443812,0,17.8
+275323,0,1057.020365,0,17.8
+275324,0,1157.435531,0,17.8
+275325,0,1098.250547,0,17.8
+275326,0,1143.838677,0,17.8
+275327,0,1208.538924,0,17.8
+275328,0,1153.727028,0,17.8
+275329,0,1208.538925,0,17.8
+275330,0,1208.53892,0,17.8
+275331,0,0,0,17.8
+275332,0,0,0,17.8
+275333,0,0,0,17.8
+275334,0,0,0,17.8
+275335,0,0,0,17.8
+275336,0,2522.169873,0,17.8
+275337,0,2759.272192,0,17.8
+275338,0,2042.691237,0,17.8
+275339,0,2522.170724,0,17.8
+275340,0,2522.170929,0,20
+275341,62885.19365,601875.4793,666664.2608,20
+275342,0,0,0,20
+275343,0,0,0,20
+275344,0,2753.24139,0,20
+275345,581.3601907,77069.54366,0,20
+275346,10078.34912,72874.02645,0,20
+275347,2657.155886,50204.76405,0,20
+275348,4579.201489,60013.39013,0,20
+275349,4579.201565,59295.85924,0,20
+275350,4462.094145,59604.71087,0,20
+275351,4344.62757,59095.60572,0,20
+275352,4302.713772,58919.69432,0,20
+275353,4677.910658,58994.63791,0,20
+275354,4162.898627,58115.49959,0,20
+275355,4242.033758,58404.05384,0,20
+275356,4236.609075,58373.62009,0,20
+275357,4388.424543,57733.23373,0,20
+275358,3915.816678,57799.1631,0,20
+275359,4100.61584,57761.86667,0,20
+275360,3751.582506,57332.89285,0,20
+275361,3759.310446,57170.43224,0,20
+275362,3521.40373,57382.7398,0,20
+275363,3536.457929,56884.90177,0,20
+275364,3444.07903,56771.81948,0,20
+275365,3312.077695,56918.78262,0,20
+275366,3334.690032,56402.67408,0,20
+275367,3225.210739,56407.01868,0,20
+275368,3115.088595,56384.73995,0,20
+275369,2989.216098,56070.70183,0,20
+275370,3003.429815,56223.14605,0,20
+275371,3019.329845,55999.91078,0,20
+275372,2906.827995,55611.48557,0,20
+275373,2907.79318,55730.50806,0,20
+275374,3078.977325,55656.81848,0,20
+275375,2818.337262,55250.81903,0,20
+275376,3093.773975,55534.38176,0,20
+275377,2855.878567,55020.33193,0,20
+275378,3109.598171,55348.04838,0,20
+275379,2885.339577,54987.00529,0,20
+275380,3028.290824,55029.77261,0,20
+275381,3027.205627,54947.39938,0,20
+275382,3057.580678,54695.39698,0,20
+275383,3761.734319,54795.95087,0,20
+275384,4160.784203,54594.46195,124.387273,20
+275385,4068.103928,54327.4885,92.48413819,20
+275386,4190.627362,54589.92254,116.4624191,20
+275387,4327.905284,54307.64168,132.2835217,20
+275388,4234.835364,54294.03788,147.9890442,20
+275389,4372.057425,54164.33115,163.589475,20
+275390,4493.617265,53971.81334,179.0935407,20
+275391,4372.05742,54255.89073,186.8120946,20
+275392,4552.639591,53692.18427,209.8393663,20
+275393,4522.425612,53887.98922,217.4760356,20
+275394,4674.38277,53893.65709,240.2716356,20
+275395,4566.216516,53646.66215,240.2731238,20
+275396,4688.767774,53520.18813,255.3826791,20
+275397,4717.425033,53866.4312,285.4032877,20
+275398,4823.768601,53136.72479,270.4277823,20
+275399,4731.698288,53480.20596,300.3244833,20
+275400,4853.055703,53479.31109,315.1854397,21
+275401,2947.931499,48697.14852,132.2944525,21
+275402,2940.165581,48125.34697,132.2949594,21
+275403,2789.756685,47565.00703,116.4732162,21
+275404,2804.465438,47802.894,148.002353,21
+275405,2805.303131,47218.68798,124.4004081,21
+275406,2804.465509,47297.15617,148.0034551,21
+275407,2820.012024,46663.74819,132.2973275,21
+275408,2804.465484,46998.79169,148.0046156,21
+275409,2835.494703,46573.48951,148.0052234,21
+275410,2819.131432,46387.6461,148.0057187,21
+275411,2835.494708,46169.32684,163.6080688,21
+275412,2834.677935,46158.09671,148.0069716,21
+275413,2978.079434,45884.06717,163.609451,21
+275414,2834.678008,45555.36811,163.6101701,21
+275415,2865.5812,45963.3836,163.610888,21
+275416,2977.220658,45142.21252,163.6116878,21
+275417,2865.581209,45473.41152,179.1178396,21
+275418,2992.703298,44953.01923,163.6131114,21
+275419,2993.499875,45059.83714,179.1194784,21
+275420,2992.703308,44616.39581,163.6146154,21
+275421,3015.811381,44834.64821,179.1211103,21
+275422,3008.12348,44377.58284,179.1220118,21
+275423,3008.123833,44384.34607,163.6168998,21
+275424,3022.706361,43947.01485,194.5400839,21
+275425,3150.684153,44342.6694,163.6184527,21
+275426,3008.123881,43755.55972,179.1253579,21
+275427,3165.266581,43792.03009,179.1262366,21
+275428,3023.483998,43493.73269,179.127105,21
+275429,3291.786229,43119.60331,179.1279451,21
+275430,3038.066343,43026.14584,179.128812,21
+275431,3307.087545,42794.75186,179.1296897,21
+275432,3165.985548,43182.96837,163.6239028,21
+275433,3321.629198,42820.04539,194.5484572,21
+275434,3432.96004,42769.84887,163.6254538,21
+275435,3336.873488,42132.75196,179.1330723,21
+275436,3581.060349,42733.44445,163.626976,21
+275437,3462.745913,42017.50766,163.6276722,21
+275438,3603.189536,42070.43267,163.628393,21
+275439,3603.189348,41990.648,163.6291262,21
+275440,3618.32308,41655.29348,148.0258897,21
+275441,3866.454759,41610.16037,163.6304803,21
+275442,3625.869752,41389.8563,148.0271462,21
+275443,4005.142509,41193.57577,148.0277337,21
+275444,3772.570123,41574.5666,148.0283029,21
+275445,4005.721034,40612.52869,132.3194097,21
+275446,4034.685057,40901.93426,148.0294363,21
+275447,4035.251097,40930.62343,132.3204004,21
+275448,4158.280586,40360.24786,132.3208704,21
+275449,4172.74303,40498.22407,132.3212956,21
+275450,4187.720136,40384.20715,116.4962754,21
+275451,4295.781352,40015.07599,132.3222097,21
+275452,4310.243523,40326.83651,116.4970619,21
+275453,4447.204578,39473.0397,100.5427724,21
+275454,4461.627983,40024.6465,116.4977352,21
+275455,4447.204347,39422.62482,100.5433402,21
+275456,4568.764465,39821.93564,100.5436155,21
+275457,4612.895867,39204.45089,100.543867,21
+275458,4704.287685,39157.70932,84.44291874,21
+275459,4719.57261,39182.80008,84.44311624,21
+275460,4748.381048,38961.1545,84.44329595,21
+275461,0,4641.680424,0,21
+275462,0,3099.166413,0,21
+275463,0,2535.158134,0,21
+275464,0,2229.002596,0,21
+275465,0,1651.713681,0,21
+275466,0,1633.193525,0,21
+275467,0,880.5887146,0,21
+275468,0,711.0793062,0,21
+275469,0,664.534419,0,21
+275470,0,598.41645,0,21
+275471,0,580.1733675,0,21
+275472,0,494.7640402,0,21
+275473,0,503.270108,0,21
+275474,0,398.0919829,0,21
+275475,0,398.0920346,0,21
+275476,0,338.6083647,0,21
+275477,0,299.1151935,0,21
+275478,0,233.3052332,0,21
+275479,0,218.5426419,0,21
+275480,0,188.8037259,0,21
+275481,0,158.7478388,0,21
+275482,0,158.7478368,0,21
+275483,0,97.45931626,0,21
+275484,0,66.03373925,0,21
+275485,0,66.0337372,0,21
+275486,0,33.81655989,0,21
+275487,0,0,0,21
+275488,0,0,0,21
+275489,0,0,0,21
+275490,0,0,0,21
+275491,0,0,0,21
+275492,0,0,0,21
+275493,0,0,0,21
+275494,0,0,0,21
+275495,0,0,0,21
+275496,0,0,0,21
+275497,0,0,0,21
+275498,0,0,0,21
+275499,0,0,0,21
+275500,0,0,0,21
+275501,0,0,0,21
+275502,0,0,0,21
+275503,0,0,0,21
+275504,0,0,0,21
+275505,0,0,0,21
+275506,0,0,0,21
+275507,0,0,0,21
+275508,0,0,0,21
+275509,0,0,0,21
+275510,0,0,0,21
+275511,0,0,0,21
+275512,0,0,0,21
+275513,0,0,0,21
+275514,0,0,0,21
+275515,0,0,0,21
+275516,0,0,0,21
+275517,0,0,0,21
+275518,0,0,0,21
+275519,0,0,0,21
+275520,0,0,0,21
+275521,0,0,0,21
+275522,0,0,0,21
+275523,0,0,0,21
+275524,0,0,0,21
+275525,0,0,0,21
+275526,0,0,0,21
+275527,0,0,0,21
+275528,0,0,0,21
+275529,0,0,0,21
+275530,0,0,0,21
+275531,0,0,0,21
+275532,0,0,0,21
+275533,0,0,0,21
+275534,0,0,0,21
+275535,0,0,0,21
+275536,0,0,0,21
+275537,0,0,0,21
+275538,0,0,0,21
+275539,0,0,0,21
+275540,0,0,0,21
+275541,0,0,0,21
+275542,0,0,0,21
+275543,0,0,0,21
+275544,0,0,0,21
+275545,0,0,0,21
+275546,0,0,0,21
+275547,0,0,0,21
+275548,0,0,0,21
+275549,0,0,0,21
+275550,0,0,0,21
+275551,0,0,0,21
+275552,0,0,0,21
+275553,0,0,0,21
+275554,0,0,0,21
+275555,0,0,0,21
+275556,0,0,0,21
+275557,0,0,0,21
+275558,0,0,0,21
+275559,0,0,0,21
+275560,0,0,0,21
+275561,0,0,0,21
+275562,0,0,0,21
+275563,0,0,0,21
+275564,0,0,0,21
+275565,0,0,0,21
+275566,0,0,0,21
+275567,0,0,0,21
+275568,0,0,0,21
+275569,0,0,0,21
+275570,0,0,0,21
+275571,0,0,0,21
+275572,0,0,0,21
+275573,0,0,0,21
+275574,0,0,0,21
+275575,0,0,0,21
+275576,0,0,0,21
+275577,0,0,0,21
+275578,0,0,0,21
+275579,0,0,0,21
+275580,0,0,0,21
+275581,0,0,0,21
+275582,0,0,0,21
+275583,0,0,0,21
+275584,0,0,0,21
+275585,0,0,0,21
+275586,0,0,0,21
+275587,0,0,0,21
+275588,0,0,0,21
+275589,0,0,0,21
+275590,0,0,0,21
+275591,0,0,0,21
+275592,0,0,0,21
+275593,0,0,0,21
+275594,0,0,0,21
+275595,0,0,0,21
+275596,0,0,0,21
+275597,0,0,0,21
+275598,0,0,0,21
+275599,0,0,0,21
+275600,0,0,0,21
+275601,0,0,0,21
+275602,0,0,0,21
+275603,0,0,0,21
+275604,0,0,0,21
+275605,0,0,0,21
+275606,0,0,0,21
+275607,0,0,0,21
+275608,0,0,0,21
+275609,0,0,0,21
+275610,0,0,0,21
+275611,0,0,0,21
+275612,0,0,0,21
+275613,0,0,0,21
+275614,0,0,0,21
+275615,0,0,0,21
+275616,0,0,0,21
+275617,0,0,0,21
+275618,0,0,0,21
+275619,0,0,0,21
+275620,0,0,0,21
+275621,0,0,0,21
+275622,0,0,0,21
+275623,0,0,0,21
+275624,0,0,0,21
+275625,0,0,0,21
+275626,0,0,0,21
+275627,0,0,0,21
+275628,0,0,0,21
+275629,0,0,0,21
+275630,0,0,0,21
+275631,0,0,0,21
+275632,0,0,0,21
+275633,0,0,0,21
+275634,0,0,0,21
+275635,0,0,0,21
+275636,0,0,0,21
+275637,0,0,0,21
+275638,0,0,0,21
+275639,0,0,0,21
+275640,0,0,0,21
+275641,0,0,0,21
+275642,0,0,0,21
+275643,0,0,0,21
+275644,0,0,0,21
+275645,0,0,0,21
+275646,0,0,0,21
+275647,0,0,0,21
+275648,0,0,0,21
+275649,0,0,0,21
+275650,0,0,0,21
+275651,0,0,0,21
+275652,0,0,0,21
+275653,0,0,0,21
+275654,0,0,0,21
+275655,0,0,0,21
+275656,0,0,0,21
+275657,0,0,0,21
+275658,0,0,0,21
+275659,0,0,0,21
+275660,0,0,0,21
+275661,0,0,0,21
+275662,0,0,0,21
+275663,0,0,0,21
+275664,0,0,0,21
+275665,0,0,0,21
+275666,0,0,0,21
+275667,0,0,0,21
+275668,0,0,0,21
+275669,0,0,0,21
+275670,0,0,0,21
+275671,0,0,0,21
+275672,0,0,0,21
+275673,0,0,0,21
+275674,0,0,0,21
+275675,0,0,0,21
+275676,0,0,0,21
+275677,0,0,0,21
+275678,0,0,0,21
+275679,0,0,0,21
+275680,0,0,0,21
+275681,0,0,0,21
+275682,0,0,0,21
+275683,0,0,0,21
+275684,0,0,0,21
+275685,0,0,0,21
+275686,0,0,0,21
+275687,0,0,0,21
+275688,0,0,0,21
+275689,0,0,0,21
+275690,0,0,0,21
+275691,0,0,0,21
+275692,0,0,0,21
+275693,0,0,0,21
+275694,0,0,0,21
+275695,0,0,0,21
+275696,0,0,0,21
+275697,0,0,0,21
+275698,0,0,0,21
+275699,0,0,0,21
+275700,0,0,0,21
+275701,0,0,0,21
+275702,0,0,0,21
+275703,0,0,0,21
+275704,0,0,0,21
+275705,0,0,0,21
+275706,0,0,0,21
+275707,0,0,0,21
+275708,0,0,0,21
+275709,0,0,0,21
+275710,0,0,0,21
+275711,0,0,0,21
+275712,0,0,0,21
+275713,0,0,0,21
+275714,0,0,0,21
+275715,0,0,0,21
+275716,0,0,0,21
+275717,0,0,0,21
+275718,0,0,0,21
+275719,0,0,0,21
+275720,0,0,0,21
+275721,0,0,0,21
+275722,0,0,0,21
+275723,0,0,0,21
+275724,0,0,0,21
+275725,0,0,0,21
+275726,0,0,0,21
+275727,0,0,0,21
+275728,0,0,0,21
+275729,0,0,0,21
+275730,0,0,0,21
+275731,0,0,0,21
+275732,0,0,0,21
+275733,0,0,0,21
+275734,0,0,0,21
+275735,0,0,0,21
+275736,0,0,0,21
+275737,0,0,0,21
+275738,0,0,0,21
+275739,0,0,0,21
+275740,0,0,0,21
+275741,0,0,0,21
+275742,0,0,0,21
+275743,0,0,0,21
+275744,0,0,0,21
+275745,0,0,0,21
+275746,0,0,0,21
+275747,0,0,0,21
+275748,0,0,0,21
+275749,0,0,0,21
+275750,0,0,0,21
+275751,0,0,0,21
+275752,0,0,0,21
+275753,0,0,0,21
+275754,0,0,0,21
+275755,0,0,0,21
+275756,0,0,0,21
+275757,0,0,0,21
+275758,0,0,0,21
+275759,0,0,0,21
+275760,0,0,0,21
+275761,0,0,0,21
+275762,0,0,0,21
+275763,0,0,0,21
+275764,0,0,0,21
+275765,0,0,0,21
+275766,0,0,0,21
+275767,0,0,0,21
+275768,0,0,0,21
+275769,0,0,0,21
+275770,0,0,0,21
+275771,0,0,0,21
+275772,0,0,0,21
+275773,0,0,0,21
+275774,0,0,0,21
+275775,0,0,0,21
+275776,0,0,0,21
+275777,0,0,0,21
+275778,0,0,0,21
+275779,0,0,0,21
+275780,0,0,0,21
+275781,0,0,0,21
+275782,0,0,0,21
+275783,0,0,0,21
+275784,0,0,0,21
+275785,0,0,0,21
+275786,0,0,0,21
+275787,0,0,0,21
+275788,0,0,0,21
+275789,0,0,0,21
+275790,0,0,0,21
+275791,0,0,0,21
+275792,0,0,0,21
+275793,0,0,0,21
+275794,0,0,0,21
+275795,0,0,0,21
+275796,0,0,0,21
+275797,0,0,0,21
+275798,0,0,0,21
+275799,0,0,0,21
+275800,0,0,0,21
+275801,0,0,0,21
+275802,0,0,0,21
+275803,0,0,0,21
+275804,0,0,0,21
+275805,0,0,0,21
+275806,0,0,0,21
+275807,0,0,0,21
+275808,0,0,0,21
+275809,0,0,0,21
+275810,0,0,0,21
+275811,0,0,0,21
+275812,0,0,0,21
+275813,0,0,0,21
+275814,0,0,0,21
+275815,0,0,0,21
+275816,0,0,0,21
+275817,0,0,0,21
+275818,0,0,0,21
+275819,0,0,0,21
+275820,0,0,0,21
+275821,0,0,0,21
+275822,0,0,0,21
+275823,0,0,0,21
+275824,0,0,0,21
+275825,0,0,0,21
+275826,0,0,0,21
+275827,0,0,0,21
+275828,0,0,0,21
+275829,0,0,0,21
+275830,0,0,0,21
+275831,0,0,0,21
+275832,0,0,0,21
+275833,0,0,0,21
+275834,0,0,0,21
+275835,0,0,0,21
+275836,0,0,0,21
+275837,0,0,0,21
+275838,0,0,0,21
+275839,0,0,0,21
+275840,0,0,0,21
+275841,0,0,0,21
+275842,0,0,0,21
+275843,0,0,0,21
+275844,0,0,0,21
+275845,0,0,0,21
+275846,0,0,0,21
+275847,0,0,0,21
+275848,0,0,0,21
+275849,0,0,0,21
+275850,0,0,0,21
+275851,0,0,0,21
+275852,0,0,0,21
+275853,0,0,0,21
+275854,0,0,0,21
+275855,0,0,0,21
+275856,0,0,0,21
+275857,0,0,0,21
+275858,0,0,0,21
+275859,0,0,0,21
+275860,0,0,0,21
+275861,0,0,0,21
+275862,0,0,0,21
+275863,0,0,0,21
+275864,0,0,0,21
+275865,0,0,0,21
+275866,0,0,0,21
+275867,0,0,0,21
+275868,0,0,0,21
+275869,0,0,0,21
+275870,0,0,0,21
+275871,0,0,0,21
+275872,0,0,0,21
+275873,0,0,0,21
+275874,0,0,0,21
+275875,0,0,0,21
+275876,0,0,0,21
+275877,0,0,0,21
+275878,0,0,0,21
+275879,0,0,0,21
+275880,0,0,0,21
+275881,0,0,0,21
+275882,0,0,0,21
+275883,0,0,0,21
+275884,0,0,0,21
+275885,0,0,0,21
+275886,0,0,0,21
+275887,0,0,0,21
+275888,0,0,0,21
+275889,0,0,0,21
+275890,0,0,0,21
+275891,0,0,0,21
+275892,0,0,0,21
+275893,0,0,0,21
+275894,0,0,0,21
+275895,0,0,0,21
+275896,0,0,0,21
+275897,0,0,0,21
+275898,0,0,0,21
+275899,0,0,0,21
+275900,0,0,0,21
+275901,0,0,0,21
+275902,0,0,0,21
+275903,0,0,0,21
+275904,0,0,0,21
+275905,0,0,0,21
+275906,0,0,0,21
+275907,0,0,0,21
+275908,0,0,0,21
+275909,0,0,0,21
+275910,0,0,0,21
+275911,0,0,0,21
+275912,0,0,0,21
+275913,0,0,0,21
+275914,0,0,0,21
+275915,0,0,0,21
+275916,0,0,0,21
+275917,0,0,0,21
+275918,0,0,0,21
+275919,0,0,0,21
+275920,0,0,0,21
+275921,0,0,0,21
+275922,0,0,0,21
+275923,0,0,0,21
+275924,0,0,0,21
+275925,0,0,0,21
+275926,0,0,0,21
+275927,0,0,0,21
+275928,0,0,0,21
+275929,0,0,0,21
+275930,0,0,0,21
+275931,0,0,0,21
+275932,0,0,0,21
+275933,0,0,0,21
+275934,0,0,0,21
+275935,0,0,0,21
+275936,0,0,0,21
+275937,0,0,0,21
+275938,0,0,0,21
+275939,0,0,0,21
+275940,0,0,0,21
+275941,0,0,0,21
+275942,0,0,0,21
+275943,0,0,0,21
+275944,0,0,0,21
+275945,0,0,0,21
+275946,0,0,0,21
+275947,0,0,0,21
+275948,0,0,0,21
+275949,0,0,0,21
+275950,0,0,0,21
+275951,0,0,0,21
+275952,0,0,0,21
+275953,0,0,0,21
+275954,0,0,0,21
+275955,0,0,0,21
+275956,0,0,0,21
+275957,0,0,0,21
+275958,0,0,0,21
+275959,0,0,0,21
+275960,0,0,0,21
+275961,0,0,0,21
+275962,0,0,0,21
+275963,0,0,0,21
+275964,0,0,0,21
+275965,0,0,0,21
+275966,0,0,0,21
+275967,0,0,0,21
+275968,0,0,0,21
+275969,0,0,0,21
+275970,0,0,0,21
+275971,0,0,0,21
+275972,0,0,0,21
+275973,0,0,0,21
+275974,0,0,0,21
+275975,0,0,0,21
+275976,0,0,0,21
+275977,0,0,0,21
+275978,0,0,0,21
+275979,0,0,0,21
+275980,0,0,0,21
+275981,0,0,0,21
+275982,0,0,0,21
+275983,0,0,0,21
+275984,0,0,0,21
+275985,0,0,0,21
+275986,0,0,0,21
+275987,0,0,0,21
+275988,0,0,0,21
+275989,0,0,0,21
+275990,0,0,0,21
+275991,0,0,0,21
+275992,0,0,0,21
+275993,0,0,0,21
+275994,0,0,0,21
+275995,0,0,0,21
+275996,0,0,0,21
+275997,0,0,0,21
+275998,0,0,0,21
+275999,0,0,0,21
+276000,0,0,0,21
+276001,0,0,0,21
+276002,0,0,0,21
+276003,0,0,0,21
+276004,0,0,0,21
+276005,0,0,0,21
+276006,0,0,0,21
+276007,0,0,0,21
+276008,0,0,0,21
+276009,0,0,0,21
+276010,0,0,0,21
+276011,0,0,0,21
+276012,0,0,0,21
+276013,0,0,0,21
+276014,0,0,0,21
+276015,0,0,0,21
+276016,0,0,0,21
+276017,0,0,0,21
+276018,0,0,0,21
+276019,0,0,0,21
+276020,0,0,0,21
+276021,0,0,0,21
+276022,0,0,0,21
+276023,0,0,0,21
+276024,0,0,0,21
+276025,0,0,0,21
+276026,0,0,0,21
+276027,0,0,0,21
+276028,0,0,0,21
+276029,0,0,0,21
+276030,0,0,0,21
+276031,0,0,0,21
+276032,0,0,0,21
+276033,0,0,0,21
+276034,0,0,0,21
+276035,0,0,0,21
+276036,0,0,0,21
+276037,0,0,0,21
+276038,0,0,0,21
+276039,0,0,0,21
+276040,0,0,0,21
+276041,0,0,0,21
+276042,0,0,0,21
+276043,0,0,0,21
+276044,0,0,0,21
+276045,0,0,0,21
+276046,0,0,0,21
+276047,0,0,0,21
+276048,0,0,0,21
+276049,0,0,0,21
+276050,0,0,0,21
+276051,0,0,0,21
+276052,0,0,0,21
+276053,0,0,0,21
+276054,0,0,0,21
+276055,0,0,0,21
+276056,0,0,0,21
+276057,0,0,0,21
+276058,0,0,0,21
+276059,0,0,0,21
+276060,0,0,0,21
+276061,0,0,0,21
+276062,0,0,0,21
+276063,0,0,0,21
+276064,0,0,0,21
+276065,0,0,0,21
+276066,0,0,0,21
+276067,0,0,0,21
+276068,0,0,0,21
+276069,0,0,0,21
+276070,0,0,0,21
+276071,0,0,0,21
+276072,0,0,0,21
+276073,0,0,0,21
+276074,0,0,0,21
+276075,0,0,0,21
+276076,0,0,0,21
+276077,0,0,0,21
+276078,0,0,0,21
+276079,0,0,0,21
+276080,0,0,0,21
+276081,0,0,0,21
+276082,0,0,0,21
+276083,0,0,0,21
+276084,0,0,0,21
+276085,0,0,0,21
+276086,0,0,0,21
+276087,0,0,0,21
+276088,0,0,0,21
+276089,0,0,0,21
+276090,0,0,0,21
+276091,0,0,0,21
+276092,0,0,0,21
+276093,0,0,0,21
+276094,0,0,0,21
+276095,0,0,0,21
+276096,0,0,0,21
+276097,0,0,0,21
+276098,0,0,0,21
+276099,0,0,0,21
+276100,0,0,0,21
+276101,0,0,0,21
+276102,0,0,0,21
+276103,0,0,0,21
+276104,0,0,0,21
+276105,0,0,0,21
+276106,0,0,0,21
+276107,0,0,0,21
+276108,0,0,0,21
+276109,0,0,0,21
+276110,0,0,0,21
+276111,0,0,0,21
+276112,0,0,0,21
+276113,0,0,0,21
+276114,0,0,0,21
+276115,0,0,0,21
+276116,0,0,0,21
+276117,0,0,0,21
+276118,0,0,0,21
+276119,0,0,0,21
+276120,0,0,0,21
+276121,0,0,0,21
+276122,0,0,0,21
+276123,0,0,0,21
+276124,0,0,0,21
+276125,0,0,0,21
+276126,0,0,0,21
+276127,0,0,0,21
+276128,0,0,0,21
+276129,0,0,0,21
+276130,0,0,0,21
+276131,0,0,0,21
+276132,0,0,0,21
+276133,0,0,0,21
+276134,0,0,0,21
+276135,0,0,0,21
+276136,0,0,0,21
+276137,0,0,0,21
+276138,0,0,0,21
+276139,0,0,0,21
+276140,0,0,0,21
+276141,0,0,0,21
+276142,0,0,0,21
+276143,0,0,0,21
+276144,0,0,0,21
+276145,0,0,0,21
+276146,0,0,0,21
+276147,0,0,0,21
+276148,0,0,0,21
+276149,0,0,0,21
+276150,0,0,0,21
+276151,0,0,0,21
+276152,0,0,0,21
+276153,0,0,0,21
+276154,0,0,0,21
+276155,0,0,0,21
+276156,0,0,0,21
+276157,0,0,0,21
+276158,0,0,0,21
+276159,0,0,0,21
+276160,0,0,0,21
+276161,0,0,0,21
+276162,0,0,0,21
+276163,0,0,0,21
+276164,0,0,0,21
+276165,0,0,0,21
+276166,0,0,0,21
+276167,0,0,0,21
+276168,0,0,0,21
+276169,0,0,0,21
+276170,0,0,0,21
+276171,0,0,0,21
+276172,0,0,0,21
+276173,0,0,0,21
+276174,0,0,0,21
+276175,0,0,0,21
+276176,0,0,0,21
+276177,0,0,0,21
+276178,0,0,0,21
+276179,0,0,0,21
+276180,0,0,0,21
+276181,0,0,0,21
+276182,0,0,0,21
+276183,0,0,0,21
+276184,0,0,0,21
+276185,0,0,0,21
+276186,0,0,0,21
+276187,0,0,0,21
+276188,0,0,0,21
+276189,0,0,0,21
+276190,0,0,0,21
+276191,0,0,0,21
+276192,0,0,0,21
+276193,0,0,0,21
+276194,0,0,0,21
+276195,0,0,0,21
+276196,0,0,0,21
+276197,0,0,0,21
+276198,0,0,0,21
+276199,0,0,0,21
+276200,0,0,0,21
+276201,0,0,0,21
+276202,0,0,0,21
+276203,0,0,0,21
+276204,0,0,0,21
+276205,0,0,0,21
+276206,0,0,0,21
+276207,0,0,0,21
+276208,0,0,0,21
+276209,0,0,0,21
+276210,0,0,0,21
+276211,0,0,0,21
+276212,0,0,0,21
+276213,0,0,0,21
+276214,0,0,0,21
+276215,0,0,0,21
+276216,0,0,0,21
+276217,0,0,0,21
+276218,0,0,0,21
+276219,0,0,0,21
+276220,0,0,0,21
+276221,0,0,0,21
+276222,0,0,0,21
+276223,0,0,0,21
+276224,0,0,0,21
+276225,0,0,0,21
+276226,0,0,0,21
+276227,0,0,0,21
+276228,0,0,0,21
+276229,0,0,0,21
+276230,0,0,0,21
+276231,0,0,0,21
+276232,0,0,0,21
+276233,0,0,0,21
+276234,0,0,0,21
+276235,0,0,0,21
+276236,0,0,0,21
+276237,0,0,0,21
+276238,0,0,0,21
+276239,0,0,0,21
+276240,0,0,0,21
+276241,0,0,0,21
+276242,0,0,0,21
+276243,0,0,0,21
+276244,0,0,0,21
+276245,0,0,0,21
+276246,0,0,0,21
+276247,0,0,0,21
+276248,0,0,0,21
+276249,0,0,0,21
+276250,0,0,0,21
+276251,0,0,0,21
+276252,0,0,0,21
+276253,0,0,0,21
+276254,0,0,0,21
+276255,0,0,0,21
+276256,0,0,0,21
+276257,0,0,0,21
+276258,0,0,0,21
+276259,0,0,0,21
+276260,0,0,0,21
+276261,0,0,0,21
+276262,0,0,0,21
+276263,0,0,0,21
+276264,0,0,0,21
+276265,0,0,0,21
+276266,0,0,0,21
+276267,0,0,0,21
+276268,0,0,0,21
+276269,0,0,0,21
+276270,0,0,0,21
+276271,0,0,0,21
+276272,0,0,0,21
+276273,0,0,0,21
+276274,0,0,0,21
+276275,0,0,0,21
+276276,0,0,0,21
+276277,0,0,0,21
+276278,0,0,0,21
+276279,0,0,0,21
+276280,0,0,0,21
+276281,0,0,0,21
+276282,0,0,0,21
+276283,0,0,0,21
+276284,0,0,0,21
+276285,0,0,0,21
+276286,0,0,0,21
+276287,0,0,0,21
+276288,0,0,0,21
+276289,0,0,0,21
+276290,0,0,0,21
+276291,0,0,0,21
+276292,0,0,0,21
+276293,0,0,0,21
+276294,0,0,0,21
+276295,0,0,0,21
+276296,0,0,0,21
+276297,0,0,0,21
+276298,0,0,0,21
+276299,0,0,0,21
+276300,0,0,0,21
+276301,0,0,0,21
+276302,0,0,0,21
+276303,0,0,0,21
+276304,0,0,0,21
+276305,330804.7668,357484.5233,663465.903,21
+276306,0,0,0,21
+276307,0,0,0,21
+276308,0,0,0,21
+276309,0,0,0,21
+276310,0,0,0,21
+276311,0,0,0,21
+276312,0,0,0,21
+276313,0,0,0,21
+276314,0,0,0,21
+276315,0,0,0,21
+276316,0,0,0,21
+276317,0,0,0,21
+276318,0,0,0,21
+276319,0,0,0,21
+276320,0,0,0,21
+276321,0,0,0,21
+276322,0,0,0,21
+276323,0,0,0,21
+276324,0,0,0,21
+276325,0,0,0,21
+276326,0,0,0,21
+276327,0,0,0,21
+276328,0,0,0,21
+276329,0,0,0,21
+276330,0,0,0,21
+276331,0,0,0,21
+276332,0,0,0,21
+276333,0,0,0,21
+276334,0,0,0,21
+276335,0,0,0,21
+276336,0,0,0,21
+276337,0,0,0,21
+276338,0,0,0,21
+276339,331939.1641,356995.8947,664000.5052,21
+276340,0,0,0,21
+276341,0,0,0,21
+276342,0,0,0,21
+276343,0,0,0,21
+276344,0,0,0,21
+276345,0,0,0,21
+276346,0,0,0,21
+276347,0,0,0,21
+276348,0,0,0,21
+276349,0,0,0,21
+276350,0,0,0,21
+276351,0,0,0,21
+276352,0,0,0,21
+276353,0,0,0,21
+276354,0,0,0,21
+276355,0,0,0,21
+276356,0,0,0,21
+276357,0,0,0,21
+276358,0,0,0,21
+276359,0,0,0,21
+276360,0,0,0,15.6
+276361,0,0,0,15.6
+276362,0,0,0,15.6
+276363,0,0,0,15.6
+276364,0,0,0,15.6
+276365,0,0,0,15.6
+276366,0,0,0,15.6
+276367,0,0,0,15.6
+276368,0,0,0,15.6
+276369,0,0,0,15.6
+276370,0,0,0,15.6
+276371,0,0,0,15.6
+276372,0,0,0,15.6
+276373,332507.2179,369190.7443,664344.2357,15.6
+276374,0,0,0,15.6
+276375,0,0,0,15.6
+276376,0,0,0,15.6
+276377,0,0,0,15.6
+276378,0,0,0,15.6
+276379,0,0,0,15.6
+276380,0,0,0,15.6
+276381,0,0,0,15.6
+276382,0,0,0,15.6
+276383,0,0,0,15.6
+276384,0,0,0,15.6
+276385,0,0,0,15.6
+276386,0,0,0,15.6
+276387,0,0,0,15.6
+276388,0,0,0,15.6
+276389,0,0,0,15.6
+276390,0,0,0,15.6
+276391,0,0,0,15.6
+276392,0,0,0,15.6
+276393,0,0,0,15.6
+276394,0,0,0,15.6
+276395,0,0,0,15.6
+276396,0,0,0,15.6
+276397,0,0,0,15.6
+276398,0,0,0,15.6
+276399,0,0,0,15.6
+276400,0,0,0,15.6
+276401,0,0,0,15.6
+276402,0,0,0,15.6
+276403,0,0,0,15.6
+276404,0,0,0,15.6
+276405,0,0,0,15.6
+276406,0,0,0,15.6
+276407,334479.1556,369198.5044,664089.3399,15.6
+276408,0,0,0,15.6
+276409,0,0,0,15.6
+276410,0,0,0,15.6
+276411,0,0,0,15.6
+276412,0,0,0,15.6
+276413,0,0,0,15.6
+276414,0,0,0,15.6
+276415,0,0,0,15.6
+276416,0,0,0,15.6
+276417,0,0,0,15.6
+276418,0,0,0,15.6
+276419,0,0,0,15.6
+276420,0,0,0,15.6
+276421,0,0,0,15.6
+276422,0,0,0,15.6
+276423,0,0,0,15.6
+276424,0,0,0,15.6
+276425,0,0,0,15.6
+276426,0,0,0,15.6
+276427,0,0,0,15.6
+276428,0,0,0,15.6
+276429,0,0,0,15.6
+276430,0,0,0,15.6
+276431,0,0,0,15.6
+276432,0,0,0,15.6
+276433,0,0,0,15.6
+276434,0,0,0,15.6
+276435,0,0,0,15.6
+276436,0,0,0,15.6
+276437,0,0,0,15.6
+276438,0,0,0,15.6
+276439,0,0,0,15.6
+276440,0,0,0,15.6
+276441,333551.258,356622.6695,663785.9096,15.6
+276442,0,0,0,15.6
+276443,0,0,0,15.6
+276444,0,0,0,15.6
+276445,0,0,0,15.6
+276446,0,0,0,15.6
+276447,0,0,0,15.6
+276448,0,0,0,15.6
+276449,0,0,0,15.6
+276450,0,0,0,15.6
+276451,0,0,0,15.6
+276452,0,0,0,15.6
+276453,0,0,0,15.6
+276454,0,0,0,15.6
+276455,0,0,0,15.6
+276456,0,0,0,15.6
+276457,0,0,0,15.6
+276458,0,0,0,15.6
+276459,0,0,0,15.6
+276460,0,0,0,15.6
+276461,0,0,0,15.6
+276462,0,0,0,15.6
+276463,0,0,0,15.6
+276464,0,0,0,15.6
+276465,0,0,0,15.6
+276466,0,0,0,15.6
+276467,0,0,0,15.6
+276468,0,0,0,15.6
+276469,0,0,0,15.6
+276470,0,0,0,15.6
+276471,0,0,0,15.6
+276472,0,0,0,15.6
+276473,0,0,0,15.6
+276474,0,0,0,15.6
+276475,0,356366.9351,663298.6236,15.6
+276476,335451.789,0,0,15.6
+276477,0,0,0,15.6
+276478,0,0,0,15.6
+276479,0,0,0,15.6
+276480,0,0,0,15.6
+276481,0,0,0,15.6
+276482,0,0,0,15.6
+276483,0,0,0,15.6
+276484,0,0,0,15.6
+276485,0,0,0,15.6
+276486,0,0,0,15.6
+276487,0,0,0,15.6
+276488,0,0,0,15.6
+276489,0,0,0,15.6
+276490,0,0,0,15.6
+276491,0,0,0,15.6
+276492,0,0,0,15.6
+276493,0,0,0,15.6
+276494,0,0,0,15.6
+276495,0,0,0,15.6
+276496,0,0,0,15.6
+276497,0,0,0,15.6
+276498,0,0,0,15.6
+276499,0,0,0,15.6
+276500,0,0,0,15.6
+276501,0,0,0,15.6
+276502,0,0,0,15.6
+276503,0,0,0,15.6
+276504,0,0,0,15.6
+276505,0,0,0,15.6
+276506,0,0,0,15.6
+276507,0,0,0,15.6
+276508,0,0,0,15.6
+276509,0,357988.5098,662714.1909,15.6
+276510,0,0,0,15.6
+276511,334331.8861,0,0,15.6
+276512,0,0,0,15.6
+276513,0,0,0,15.6
+276514,0,0,0,15.6
+276515,0,0,0,15.6
+276516,0,0,0,15.6
+276517,0,0,0,15.6
+276518,0,0,0,15.6
+276519,0,0,0,15.6
+276520,0,0,0,15.6
+276521,0,0,0,15.6
+276522,0,0,0,15.6
+276523,0,0,0,15.6
+276524,0,0,0,15.6
+276525,0,0,0,15.6
+276526,0,0,0,15.6
+276527,0,0,0,15.6
+276528,0,0,0,15.6
+276529,0,0,0,15.6
+276530,0,0,0,15.6
+276531,0,0,0,15.6
+276532,0,0,0,15.6
+276533,0,0,0,15.6
+276534,0,0,0,15.6
+276535,0,0,0,15.6
+276536,0,0,0,15.6
+276537,0,0,0,15.6
+276538,0,0,0,15.6
+276539,0,0,0,15.6
+276540,0,0,0,15.6
+276541,0,0,0,15.6
+276542,0,0,0,15.6
+276543,0,359100.961,662524.3061,15.6
+276544,0,0,0,15.6
+276545,0,0,0,15.6
+276546,335769.2683,0,0,15.6
+276547,0,0,0,15.6
+276548,0,0,0,15.6
+276549,0,0,0,15.6
+276550,0,0,0,15.6
+276551,0,0,0,15.6
+276552,0,0,0,15.6
+276553,0,0,0,15.6
+276554,0,0,0,15.6
+276555,0,0,0,15.6
+276556,0,0,0,15.6
+276557,0,0,0,15.6
+276558,0,0,0,15.6
+276559,0,0,0,15.6
+276560,0,0,0,15.6
+276561,0,0,0,15.6
+276562,0,0,0,15.6
+276563,0,0,0,15.6
+276564,0,0,0,15.6
+276565,0,0,0,15.6
+276566,0,0,0,15.6
+276567,0,0,0,15.6
+276568,0,0,0,15.6
+276569,0,0,0,15.6
+276570,0,0,0,15.6
+276571,0,0,0,15.6
+276572,0,0,0,15.6
+276573,0,0,0,15.6
+276574,0,0,0,15.6
+276575,0,0,0,15.6
+276576,0,0,0,15.6
+276577,0,359945.2778,661802.8097,15.6
+276578,0,0,0,15.6
+276579,0,0,0,15.6
+276580,0,0,0,15.6
+276581,335155.8488,0,0,15.6
+276582,0,0,0,15.6
+276583,0,0,0,15.6
+276584,0,0,0,15.6
+276585,0,0,0,15.6
+276586,0,0,0,15.6
+276587,0,0,0,15.6
+276588,0,0,0,15.6
+276589,0,0,0,15.6
+276590,0,0,0,15.6
+276591,0,0,0,15.6
+276592,0,0,0,15.6
+276593,0,0,0,15.6
+276594,0,0,0,15.6
+276595,0,0,0,15.6
+276596,0,0,0,15.6
+276597,0,0,0,15.6
+276598,0,0,0,15.6
+276599,0,0,0,15.6
+276600,0,0,0,15.6
+276601,0,0,0,15.6
+276602,0,0,0,15.6
+276603,0,0,0,15.6
+276604,0,0,0,15.6
+276605,0,0,0,15.6
+276606,0,0,0,15.6
+276607,0,0,0,15.6
+276608,0,0,0,15.6
+276609,0,0,0,15.6
+276610,0,0,0,15.6
+276611,0,369201.8427,662249.071,15.6
+276612,0,0,0,15.6
+276613,0,0,0,15.6
+276614,0,0,0,15.6
+276615,0,0,0,15.6
+276616,335742.4916,0,0,15.6
+276617,0,0,0,15.6
+276618,0,0,0,15.6
+276619,0,0,0,15.6
+276620,0,0,0,15.6
+276621,0,0,0,15.6
+276622,0,0,0,15.6
+276623,0,0,0,15.6
+276624,0,0,0,15.6
+276625,0,0,0,15.6
+276626,0,0,0,15.6
+276627,0,0,0,15.6
+276628,0,0,0,15.6
+276629,0,0,0,15.6
+276630,0,0,0,15.6
+276631,0,0,0,15.6
+276632,0,0,0,15.6
+276633,0,0,0,15.6
+276634,0,0,0,15.6
+276635,0,0,0,15.6
+276636,0,0,0,15.6
+276637,0,0,0,15.6
+276638,0,0,0,15.6
+276639,0,0,0,15.6
+276640,0,0,0,15.6
+276641,0,0,0,15.6
+276642,0,0,0,15.6
+276643,0,0,0,15.6
+276644,0,0,0,15.6
+276645,0,358047.5655,661424.7152,15.6
+276646,0,0,0,15.6
+276647,0,0,0,15.6
+276648,0,0,0,15.6
+276649,0,0,0,15.6
+276650,0,0,0,15.6
+276651,336973.4693,0,0,15.6
+276652,0,0,0,15.6
+276653,0,0,0,15.6
+276654,0,0,0,15.6
+276655,0,0,0,15.6
+276656,0,0,0,15.6
+276657,0,0,0,15.6
+276658,0,0,0,15.6
+276659,0,0,0,15.6
+276660,0,0,0,15.6
+276661,0,0,0,15.6
+276662,0,0,0,15.6
+276663,0,0,0,15.6
+276664,0,0,0,15.6
+276665,0,0,0,15.6
+276666,0,0,0,15.6
+276667,0,0,0,15.6
+276668,0,0,0,15.6
+276669,0,0,0,15.6
+276670,0,0,0,15.6
+276671,0,0,0,15.6
+276672,0,0,0,15.6
+276673,0,0,0,15.6
+276674,0,0,0,15.6
+276675,0,0,0,15.6
+276676,0,0,0,15.6
+276677,0,0,0,15.6
+276678,0,0,0,15.6
+276679,0,359478.3356,661733.049,15.6
+276680,0,0,0,15.6
+276681,0,0,0,15.6
+276682,0,0,0,15.6
+276683,0,0,0,15.6
+276684,0,0,0,15.6
+276685,335385.4236,0,0,15.6
+276686,0,0,0,15.6
+276687,0,0,0,15.6
+276688,0,0,0,15.6
+276689,0,0,0,15.6
+276690,0,0,0,15.6
+276691,0,0,0,15.6
+276692,0,0,0,15.6
+276693,0,0,0,15.6
+276694,0,0,0,15.6
+276695,0,0,0,15.6
+276696,0,0,0,15.6
+276697,0,0,0,15.6
+276698,0,0,0,15.6
+276699,0,0,0,15.6
+276700,0,0,0,15.6
+276701,0,0,0,15.6
+276702,0,0,0,15.6
+276703,0,0,0,15.6
+276704,0,0,0,15.6
+276705,0,0,0,15.6
+276706,0,0,0,15.6
+276707,0,0,0,15.6
+276708,0,0,0,15.6
+276709,0,0,0,15.6
+276710,0,0,0,15.6
+276711,0,0,0,15.6
+276712,0,0,0,15.6
+276713,0,355905.7385,661104.959,15.6
+276714,0,0,0,15.6
+276715,0,0,0,15.6
+276716,0,0,0,15.6
+276717,0,0,0,15.6
+276718,0,0,0,15.6
+276719,336721.5153,0,0,15.6
+276720,0,0,0,17.8
+276721,0,0,0,17.8
+276722,0,0,0,17.8
+276723,0,0,0,17.8
+276724,0,0,0,17.8
+276725,0,0,0,17.8
+276726,0,0,0,17.8
+276727,0,0,0,17.8
+276728,0,0,0,17.8
+276729,0,0,0,17.8
+276730,0,0,0,17.8
+276731,0,0,0,17.8
+276732,0,0,0,17.8
+276733,0,0,0,17.8
+276734,0,0,0,17.8
+276735,0,0,0,17.8
+276736,0,0,0,17.8
+276737,0,0,0,17.8
+276738,0,0,0,17.8
+276739,0,0,0,17.8
+276740,0,0,0,17.8
+276741,0,0,0,17.8
+276742,0,0,0,17.8
+276743,0,0,0,17.8
+276744,0,0,0,17.8
+276745,0,0,0,17.8
+276746,0,0,0,17.8
+276747,0,357121.3575,661378.4724,17.8
+276748,0,0,0,17.8
+276749,0,0,0,17.8
+276750,0,0,0,17.8
+276751,0,0,0,17.8
+276752,0,306.1875672,0,17.8
+276753,340373.6585,218.54255,0,17.8
+276754,0,277.2091173,0,17.8
+276755,0,306.1875475,0,17.8
+276756,0,363.5278153,0,17.8
+276757,0,363.5279545,0,17.8
+276758,0,0,0,17.8
+276759,78.18424759,0,0,17.8
+276760,3751.584857,0,0,17.8
+276761,1775.617665,0,0,17.8
+276762,2657.135671,0,0,17.8
+276763,2780.687781,0,0,17.8
+276764,3148.268024,0,0,17.8
+276765,3148.268003,0,0,17.8
+276766,3511.573894,0,0,17.8
+276767,3631.790599,0,0,17.8
+276768,3751.584608,0,0,17.8
+276769,3989.947093,0,0,17.8
+276770,4108.535176,0,0,17.8
+276771,4344.569998,0,0,17.8
+276772,0,0,0,17.8
+276773,0,0,0,17.8
+276774,0,0,0,17.8
+276775,0,0,0,17.8
+276776,0,0,0,17.8
+276777,0,0,0,17.8
+276778,0,0,0,17.8
+276779,0,931.9247279,0,17.8
+276780,0,391.9177029,0,20
+276781,1840.430563,785089.4107,660829.7935,20
+276782,0,0,0,20
+276783,421.5340792,0,0,20
+276784,30843.51368,0,0,20
+276785,18136.6091,45298.32492,0,20
+276786,19626.96257,54401.43511,0,20
+276787,41911.89266,32785.66664,0,20
+276788,29578.01322,40953.21516,0,20
+276789,33317.08216,40686.89544,0,20
+276790,34460.00749,41140.68352,0,20
+276791,33509.69072,40631.38392,0,20
+276792,33281.68728,41133.16819,0,20
+276793,33979.75156,40803.86486,0,20
+276794,33289.62056,40762.20501,0,20
+276795,33053.46523,40940.7776,0,20
+276796,32762.5544,40795.46653,0,20
+276797,32482.22498,40875.40163,0,20
+276798,32173.46613,40784.62343,0,20
+276799,31905.54524,40569.15901,0,20
+276800,31593.00477,41070.42413,0,20
+276801,31286.17874,40701.94495,0,20
+276802,31037.78375,40737.54548,0,20
+276803,30779.98113,40854.49338,0,20
+276804,30447.18873,40542.01618,0,20
+276805,30293.64272,40854.49991,0,20
+276806,30156.92981,40824.10758,0,20
+276807,29897.56617,40854.51381,0,20
+276808,29637.58613,40501.49819,0,20
+276809,29294.80416,41136.13535,108.3112236,20
+276810,29336.49432,40485.90739,147.7205602,20
+276811,28663.70852,40812.92146,132.0458617,20
+276812,27445.54358,40788.07782,163.291831,20
+276813,26501.02891,40812.86823,178.7660513,20
+276814,26030.76072,40555.50324,194.1509266,20
+276815,25293.38877,40781.81598,224.6743871,20
+276816,25049.25491,40775.13417,224.6757837,20
+276817,24213.43412,40876.28342,239.8252663,20
+276818,23832.6864,40456.49745,269.9161784,20
+276819,23033.06658,41004.21296,284.8659296,20
+276820,22510.30446,40584.74877,284.8681339,20
+276821,21867.71139,40871.56812,337.3088234,20
+276822,21065.30583,40678.8594,378.6962448,20
+276823,20562.07821,40848.80352,314.5921488,20
+276824,19764.81699,40678.86136,299.7659261,20
+276825,19579.3232,40635.98673,329.3703176,20
+276826,19372.569,40692.89644,329.3733633,20
+276827,19511.37781,40929.56759,344.0952216,20
+276828,19462.37295,40501.71536,344.098514,20
+276829,19212.5272,40897.35499,373.3847665,20
+276830,19475.2474,40666.42422,358.7723371,20
+276831,19302.73001,40705.96368,387.9598499,20
+276832,19140.9649,40933.22522,387.9640501,20
+276833,19260.8158,40253.52659,402.4884671,20
+276834,19263.4416,41014.20498,402.492946,20
+276835,19250.84792,40567.62412,416.9717566,20
+276836,19283.39596,40885.16139,416.9765592,20
+276837,19294.77983,40648.18905,431.4111219,20
+276838,19274.8302,40675.17531,445.8023829,20
+276839,19337.37672,40666.5733,431.4217137,20
+276840,19296.17637,40807.73313,460.157142,21
+276841,17151.85234,36178.58796,284.9295767,21
+276842,16851.98603,35656.25171,254.9653708,21
+276843,16620.73267,35440.94071,254.9671148,21
+276844,16611.88395,35261.96034,269.9842175,21
+276845,16485.46437,35282.83979,254.9708096,21
+276846,16356.33696,34892.54616,269.9881187,21
+276847,16355.92715,34866.35556,254.9745092,21
+276848,16099.56993,34537.66042,269.9920183,21
+276849,16133.61498,34866.35665,254.9781558,21
+276850,16054.95119,34159.27372,269.9958761,21
+276851,15866.03197,34495.798,269.9979074,21
+276852,15832.94892,34097.74375,254.9836974,21
+276853,15596.00559,33975.74365,284.9544413,21
+276854,15788.14433,33944.3599,254.9874972,21
+276855,15362.0158,33698.37882,270.0058174,21
+276856,15506.14623,33760.55141,270.007826,21
+276857,15318.0627,33560.7038,270.0097834,21
+276858,15169.02338,33324.27188,270.0118149,21
+276859,15158.86101,33380.31366,270.0138221,21
+276860,15000.28429,33123.49682,254.9986731,21
+276861,14898.09323,33160.00955,284.9713215,21
+276862,14841.39949,32763.50823,255.0024447,21
+276863,14716.01355,33123.0919,270.0217336,21
+276864,14406.47886,32381.47297,270.0236885,21
+276865,14178.81004,32742.26259,255.0079853,21
+276866,14131.06993,32562.01784,270.02762,21
+276867,14062.18731,32200.78633,255.0116591,21
+276868,13854.58328,32482.11355,270.0315495,21
+276869,13671.30497,31838.77385,255.0153283,21
+276870,13774.39871,32317.51803,255.0171167,21
+276871,13390.97421,31620.23476,255.0188528,21
+276872,13478.94319,31918.40356,255.0206631,21
+276873,13193.2182,31736.94292,255.0224516,21
+276874,13205.09983,31432.82033,239.9387356,21
+276875,13022.18937,31496.48437,239.9403378,21
+276876,12900.28535,31395.64606,239.9418861,21
+276877,12839.19784,31192.08948,239.9434649,21
+276878,12710.14295,31110.48693,224.7889009,21
+276879,12545.62597,31009.68983,224.790304,21
+276880,12517.9543,30950.85433,224.7916865,21
+276881,12260.46974,30906.22479,209.5626132,21
+276882,12203.73502,30600.88523,224.7943804,21
+276883,12181.70282,30709.10446,194.2559502,21
+276884,11886.35155,30401.74533,209.5662037,21
+276885,11909.80676,30520.23353,194.2580471,21
+276886,11851.37359,30159.03898,194.2590926,21
+276887,11628.13251,30153.20173,194.2601198,21
+276888,11605.64984,30137.37666,178.8679571,21
+276889,11345.8178,30115.67605,178.8688449,21
+276890,11569.90753,29608.83711,178.8696903,21
+276891,11086.47913,29909.93659,163.3875396,21
+276892,11286.66986,29725.61132,163.3882304,21
+276893,11038.77025,29549.4516,147.8091241,21
+276894,10908.12411,29334.1971,163.3896247,21
+276895,10884.15272,29666.1461,147.8103641,21
+276896,10741.71911,29040.86752,147.8109697,21
+276897,10717.27129,29089.34008,132.1262092,21
+276898,10478.94148,29274.65161,147.8120702,21
+276899,10454.73795,28774.06811,124.2418062,21
+276900,10298.84651,28903.69204,132.1276327,21
+276901,568.207373,2276.016728,0,21
+276902,493.0452282,613.5203577,0,21
+276903,462.6212076,558.9427674,0,21
+276904,416.5675858,531.461153,0,21
+276905,416.5298899,476.0902921,0,21
+276906,385.5788525,448.1882741,0,21
+276907,369.9710227,420.132563,0,21
+276908,338.5819849,363.5252658,0,21
+276909,322.7845183,363.5253131,0,21
+276910,306.9121322,306.1856042,0,21
+276911,290.963052,306.1856156,0,21
+276912,258.8209007,247.9999255,0,21
+276913,258.8208924,218.5411775,0,21
+276914,226.3255685,218.5412747,0,21
+276915,209.932825,158.7469467,0,21
+276916,193.4350978,128.3236453,0,21
+276917,176.8249273,128.3236675,0,21
+276918,143.2299766,66.03348441,0,21
+276919,143.2299716,66.03347402,0,21
+276920,126.2213853,17.24304398,0,21
+276921,91.69735586,0,0,21
+276922,91.69735206,0,0,21
+276923,56.30761378,0,0,21
+276924,47.27994409,0,0,21
+276925,28.92468179,0,0,21
+276926,9.970879637,0,0,21
+276927,0,0,0,21
+276928,0,0,0,21
+276929,0,0,0,21
+276930,0,0,0,21
+276931,0,0,0,21
+276932,0,0,0,21
+276933,0,0,0,21
+276934,0,0,0,21
+276935,0,0,0,21
+276936,0,0,0,21
+276937,0,0,0,21
+276938,0,0,0,21
+276939,0,0,0,21
+276940,0,0,0,21
+276941,0,0,0,21
+276942,0,0,0,21
+276943,0,0,0,21
+276944,0,0,0,21
+276945,0,0,0,21
+276946,0,0,0,21
+276947,0,0,0,21
+276948,0,0,0,21
+276949,0,0,0,21
+276950,0,0,0,21
+276951,0,0,0,21
+276952,0,0,0,21
+276953,0,0,0,21
+276954,0,0,0,21
+276955,0,0,0,21
+276956,0,0,0,21
+276957,0,0,0,21
+276958,0,0,0,21
+276959,0,0,0,21
+276960,0,0,0,21
+276961,0,0,0,21
+276962,0,0,0,21
+276963,0,0,0,21
+276964,0,0,0,21
+276965,0,0,0,21
+276966,0,0,0,21
+276967,0,0,0,21
+276968,0,0,0,21
+276969,0,0,0,21
+276970,0,0,0,21
+276971,0,0,0,21
+276972,0,0,0,21
+276973,0,0,0,21
+276974,0,0,0,21
+276975,0,0,0,21
+276976,0,0,0,21
+276977,0,0,0,21
+276978,0,0,0,21
+276979,0,0,0,21
+276980,0,0,0,21
+276981,0,0,0,21
+276982,0,0,0,21
+276983,0,0,0,21
+276984,0,0,0,21
+276985,0,0,0,21
+276986,0,0,0,21
+276987,0,0,0,21
+276988,0,0,0,21
+276989,0,0,0,21
+276990,0,0,0,21
+276991,0,0,0,21
+276992,0,0,0,21
+276993,0,0,0,21
+276994,0,0,0,21
+276995,0,0,0,21
+276996,0,0,0,21
+276997,0,0,0,21
+276998,0,0,0,21
+276999,0,0,0,21
+277000,0,0,0,21
+277001,0,0,0,21
+277002,0,0,0,21
+277003,0,0,0,21
+277004,0,0,0,21
+277005,0,0,0,21
+277006,0,0,0,21
+277007,0,0,0,21
+277008,0,0,0,21
+277009,0,0,0,21
+277010,0,0,0,21
+277011,0,0,0,21
+277012,0,0,0,21
+277013,0,0,0,21
+277014,0,0,0,21
+277015,0,0,0,21
+277016,0,0,0,21
+277017,0,0,0,21
+277018,0,0,0,21
+277019,0,0,0,21
+277020,0,0,0,21
+277021,0,0,0,21
+277022,0,0,0,21
+277023,0,0,0,21
+277024,0,0,0,21
+277025,0,0,0,21
+277026,0,0,0,21
+277027,0,0,0,21
+277028,0,0,0,21
+277029,0,0,0,21
+277030,0,0,0,21
+277031,0,0,0,21
+277032,0,0,0,21
+277033,0,0,0,21
+277034,0,0,0,21
+277035,0,0,0,21
+277036,0,0,0,21
+277037,0,0,0,21
+277038,0,0,0,21
+277039,0,0,0,21
+277040,0,0,0,21
+277041,0,0,0,21
+277042,0,0,0,21
+277043,0,0,0,21
+277044,0,0,0,21
+277045,0,0,0,21
+277046,0,0,0,21
+277047,0,0,0,21
+277048,0,0,0,21
+277049,0,0,0,21
+277050,0,0,0,21
+277051,0,0,0,21
+277052,0,0,0,21
+277053,0,0,0,21
+277054,0,0,0,21
+277055,0,0,0,21
+277056,0,0,0,21
+277057,0,0,0,21
+277058,0,0,0,21
+277059,0,0,0,21
+277060,0,0,0,21
+277061,0,0,0,21
+277062,0,0,0,21
+277063,0,0,0,21
+277064,0,0,0,21
+277065,0,0,0,21
+277066,0,0,0,21
+277067,0,0,0,21
+277068,0,0,0,21
+277069,0,0,0,21
+277070,0,0,0,21
+277071,0,0,0,21
+277072,0,0,0,21
+277073,0,0,0,21
+277074,0,0,0,21
+277075,0,0,0,21
+277076,0,0,0,21
+277077,0,0,0,21
+277078,0,0,0,21
+277079,0,0,0,21
+277080,0,0,0,21
+277081,0,0,0,21
+277082,0,0,0,21
+277083,0,0,0,21
+277084,0,0,0,21
+277085,0,0,0,21
+277086,0,0,0,21
+277087,0,0,0,21
+277088,0,0,0,21
+277089,0,0,0,21
+277090,0,0,0,21
+277091,0,0,0,21
+277092,0,0,0,21
+277093,0,0,0,21
+277094,0,0,0,21
+277095,0,0,0,21
+277096,0,0,0,21
+277097,0,0,0,21
+277098,0,0,0,21
+277099,0,0,0,21
+277100,0,0,0,21
+277101,0,0,0,21
+277102,0,0,0,21
+277103,0,0,0,21
+277104,0,0,0,21
+277105,0,0,0,21
+277106,0,0,0,21
+277107,0,0,0,21
+277108,0,0,0,21
+277109,0,0,0,21
+277110,0,0,0,21
+277111,0,0,0,21
+277112,0,0,0,21
+277113,0,0,0,21
+277114,0,0,0,21
+277115,0,0,0,21
+277116,0,0,0,21
+277117,0,0,0,21
+277118,0,0,0,21
+277119,0,0,0,21
+277120,0,0,0,21
+277121,0,0,0,21
+277122,0,0,0,21
+277123,0,0,0,21
+277124,0,0,0,21
+277125,0,0,0,21
+277126,0,0,0,21
+277127,0,0,0,21
+277128,0,0,0,21
+277129,0,0,0,21
+277130,0,0,0,21
+277131,0,0,0,21
+277132,0,0,0,21
+277133,0,0,0,21
+277134,0,0,0,21
+277135,0,0,0,21
+277136,0,0,0,21
+277137,0,0,0,21
+277138,0,0,0,21
+277139,0,0,0,21
+277140,0,0,0,21
+277141,0,0,0,21
+277142,0,0,0,21
+277143,0,0,0,21
+277144,0,0,0,21
+277145,0,0,0,21
+277146,0,0,0,21
+277147,0,0,0,21
+277148,0,0,0,21
+277149,0,0,0,21
+277150,0,0,0,21
+277151,0,0,0,21
+277152,0,0,0,21
+277153,0,0,0,21
+277154,0,0,0,21
+277155,0,0,0,21
+277156,0,0,0,21
+277157,0,0,0,21
+277158,0,0,0,21
+277159,0,0,0,21
+277160,0,0,0,21
+277161,0,0,0,21
+277162,0,0,0,21
+277163,0,0,0,21
+277164,0,0,0,21
+277165,0,0,0,21
+277166,0,0,0,21
+277167,0,0,0,21
+277168,0,0,0,21
+277169,0,0,0,21
+277170,0,0,0,21
+277171,0,0,0,21
+277172,0,0,0,21
+277173,0,0,0,21
+277174,0,0,0,21
+277175,0,0,0,21
+277176,0,0,0,21
+277177,0,0,0,21
+277178,0,0,0,21
+277179,0,0,0,21
+277180,0,0,0,21
+277181,0,0,0,21
+277182,0,0,0,21
+277183,0,0,0,21
+277184,0,0,0,21
+277185,0,0,0,21
+277186,0,0,0,21
+277187,0,0,0,21
+277188,0,0,0,21
+277189,0,0,0,21
+277190,0,0,0,21
+277191,0,0,0,21
+277192,0,0,0,21
+277193,0,0,0,21
+277194,0,0,0,21
+277195,0,0,0,21
+277196,0,0,0,21
+277197,0,0,0,21
+277198,0,0,0,21
+277199,0,0,0,21
+277200,0,0,0,21
+277201,0,0,0,21
+277202,0,0,0,21
+277203,0,0,0,21
+277204,0,0,0,21
+277205,0,0,0,21
+277206,0,0,0,21
+277207,0,0,0,21
+277208,0,0,0,21
+277209,0,0,0,21
+277210,0,0,0,21
+277211,0,0,0,21
+277212,0,0,0,21
+277213,0,0,0,21
+277214,0,0,0,21
+277215,0,0,0,21
+277216,0,0,0,21
+277217,0,0,0,21
+277218,0,0,0,21
+277219,0,0,0,21
+277220,0,0,0,21
+277221,0,0,0,21
+277222,0,0,0,21
+277223,0,0,0,21
+277224,0,0,0,21
+277225,0,0,0,21
+277226,0,0,0,21
+277227,0,0,0,21
+277228,0,0,0,21
+277229,0,0,0,21
+277230,0,0,0,21
+277231,0,0,0,21
+277232,0,0,0,21
+277233,0,0,0,21
+277234,0,0,0,21
+277235,0,0,0,21
+277236,0,0,0,21
+277237,0,0,0,21
+277238,0,0,0,21
+277239,0,0,0,21
+277240,0,0,0,21
+277241,0,0,0,21
+277242,0,0,0,21
+277243,0,0,0,21
+277244,0,0,0,21
+277245,0,0,0,21
+277246,0,0,0,21
+277247,0,0,0,21
+277248,0,0,0,21
+277249,0,0,0,21
+277250,0,0,0,21
+277251,0,0,0,21
+277252,0,0,0,21
+277253,0,0,0,21
+277254,0,0,0,21
+277255,0,0,0,21
+277256,0,0,0,21
+277257,0,0,0,21
+277258,0,0,0,21
+277259,0,0,0,21
+277260,0,0,0,21
+277261,0,0,0,21
+277262,0,0,0,21
+277263,0,0,0,21
+277264,0,0,0,21
+277265,0,0,0,21
+277266,0,0,0,21
+277267,0,0,0,21
+277268,0,0,0,21
+277269,0,0,0,21
+277270,0,0,0,21
+277271,0,0,0,21
+277272,0,0,0,21
+277273,0,0,0,21
+277274,0,0,0,21
+277275,0,0,0,21
+277276,0,0,0,21
+277277,0,0,0,21
+277278,0,0,0,21
+277279,0,0,0,21
+277280,0,0,0,21
+277281,0,0,0,21
+277282,0,0,0,21
+277283,0,0,0,21
+277284,0,0,0,21
+277285,0,0,0,21
+277286,0,0,0,21
+277287,0,0,0,21
+277288,0,0,0,21
+277289,0,0,0,21
+277290,0,0,0,21
+277291,0,0,0,21
+277292,0,0,0,21
+277293,0,0,0,21
+277294,0,0,0,21
+277295,0,0,0,21
+277296,0,0,0,21
+277297,0,0,0,21
+277298,0,0,0,21
+277299,0,0,0,21
+277300,0,0,0,21
+277301,0,0,0,21
+277302,0,0,0,21
+277303,0,0,0,21
+277304,0,0,0,21
+277305,0,0,0,21
+277306,0,0,0,21
+277307,0,0,0,21
+277308,0,0,0,21
+277309,0,0,0,21
+277310,0,0,0,21
+277311,0,0,0,21
+277312,0,0,0,21
+277313,0,0,0,21
+277314,0,0,0,21
+277315,0,0,0,21
+277316,0,0,0,21
+277317,0,0,0,21
+277318,0,0,0,21
+277319,0,0,0,21
+277320,0,0,0,21
+277321,0,0,0,21
+277322,0,0,0,21
+277323,0,0,0,21
+277324,0,0,0,21
+277325,0,0,0,21
+277326,0,0,0,21
+277327,0,0,0,21
+277328,0,0,0,21
+277329,0,0,0,21
+277330,0,0,0,21
+277331,0,0,0,21
+277332,0,0,0,21
+277333,0,0,0,21
+277334,0,0,0,21
+277335,0,0,0,21
+277336,0,0,0,21
+277337,0,0,0,21
+277338,0,0,0,21
+277339,0,0,0,21
+277340,0,0,0,21
+277341,0,0,0,21
+277342,0,0,0,21
+277343,0,0,0,21
+277344,0,0,0,21
+277345,0,0,0,21
+277346,0,0,0,21
+277347,0,0,0,21
+277348,0,0,0,21
+277349,0,0,0,21
+277350,0,0,0,21
+277351,0,0,0,21
+277352,0,0,0,21
+277353,0,0,0,21
+277354,0,0,0,21
+277355,0,0,0,21
+277356,0,0,0,21
+277357,0,0,0,21
+277358,0,0,0,21
+277359,0,0,0,21
+277360,0,0,0,21
+277361,0,0,0,21
+277362,0,0,0,21
+277363,0,0,0,21
+277364,0,0,0,21
+277365,0,0,0,21
+277366,0,0,0,21
+277367,0,0,0,21
+277368,0,0,0,21
+277369,0,0,0,21
+277370,0,0,0,21
+277371,0,0,0,21
+277372,0,0,0,21
+277373,0,0,0,21
+277374,0,0,0,21
+277375,0,0,0,21
+277376,0,0,0,21
+277377,0,0,0,21
+277378,0,0,0,21
+277379,0,0,0,21
+277380,0,0,0,21
+277381,0,0,0,21
+277382,0,0,0,21
+277383,0,0,0,21
+277384,0,0,0,21
+277385,0,0,0,21
+277386,0,0,0,21
+277387,0,0,0,21
+277388,0,0,0,21
+277389,0,0,0,21
+277390,0,0,0,21
+277391,0,0,0,21
+277392,0,0,0,21
+277393,0,0,0,21
+277394,0,0,0,21
+277395,0,0,0,21
+277396,0,0,0,21
+277397,0,0,0,21
+277398,0,0,0,21
+277399,0,0,0,21
+277400,0,0,0,21
+277401,0,0,0,21
+277402,0,0,0,21
+277403,0,0,0,21
+277404,0,0,0,21
+277405,0,0,0,21
+277406,0,0,0,21
+277407,0,0,0,21
+277408,0,0,0,21
+277409,0,0,0,21
+277410,0,0,0,21
+277411,0,0,0,21
+277412,0,0,0,21
+277413,0,0,0,21
+277414,0,0,0,21
+277415,0,0,0,21
+277416,0,0,0,21
+277417,0,0,0,21
+277418,0,0,0,21
+277419,0,0,0,21
+277420,0,0,0,21
+277421,0,0,0,21
+277422,0,0,0,21
+277423,0,0,0,21
+277424,0,0,0,21
+277425,0,0,0,21
+277426,0,0,0,21
+277427,0,0,0,21
+277428,0,0,0,21
+277429,0,0,0,21
+277430,0,0,0,21
+277431,0,0,0,21
+277432,0,0,0,21
+277433,0,0,0,21
+277434,0,0,0,21
+277435,0,0,0,21
+277436,0,0,0,21
+277437,0,0,0,21
+277438,0,0,0,21
+277439,0,0,0,21
+277440,0,0,0,21
+277441,0,0,0,21
+277442,0,0,0,21
+277443,0,0,0,21
+277444,0,0,0,21
+277445,0,0,0,21
+277446,0,0,0,21
+277447,0,0,0,21
+277448,0,0,0,21
+277449,0,0,0,21
+277450,0,0,0,21
+277451,0,0,0,21
+277452,0,0,0,21
+277453,0,0,0,21
+277454,0,0,0,21
+277455,0,0,0,21
+277456,0,0,0,21
+277457,0,0,0,21
+277458,0,0,0,21
+277459,0,0,0,21
+277460,0,0,0,21
+277461,0,0,0,21
+277462,0,0,0,21
+277463,0,0,0,21
+277464,0,0,0,21
+277465,0,0,0,21
+277466,0,0,0,21
+277467,0,0,0,21
+277468,0,0,0,21
+277469,0,0,0,21
+277470,0,0,0,21
+277471,0,0,0,21
+277472,0,0,0,21
+277473,0,0,0,21
+277474,0,0,0,21
+277475,0,0,0,21
+277476,0,0,0,21
+277477,0,0,0,21
+277478,0,0,0,21
+277479,0,0,0,21
+277480,0,0,0,21
+277481,0,0,0,21
+277482,0,0,0,21
+277483,0,0,0,21
+277484,0,0,0,21
+277485,0,0,0,21
+277486,0,0,0,21
+277487,0,0,0,21
+277488,0,0,0,21
+277489,0,0,0,21
+277490,0,0,0,21
+277491,0,0,0,21
+277492,0,0,0,21
+277493,0,0,0,21
+277494,0,0,0,21
+277495,0,0,0,21
+277496,0,0,0,21
+277497,0,0,0,21
+277498,0,0,0,21
+277499,0,0,0,21
+277500,0,0,0,21
+277501,0,0,0,21
+277502,0,0,0,21
+277503,0,0,0,21
+277504,0,0,0,21
+277505,0,0,0,21
+277506,0,0,0,21
+277507,0,0,0,21
+277508,0,0,0,21
+277509,0,0,0,21
+277510,0,0,0,21
+277511,0,0,0,21
+277512,0,0,0,21
+277513,0,0,0,21
+277514,0,0,0,21
+277515,0,0,0,21
+277516,0,0,0,21
+277517,0,0,0,21
+277518,0,0,0,21
+277519,0,0,0,21
+277520,0,0,0,21
+277521,0,0,0,21
+277522,0,0,0,21
+277523,0,0,0,21
+277524,0,0,0,21
+277525,0,0,0,21
+277526,0,0,0,21
+277527,0,0,0,21
+277528,0,0,0,21
+277529,0,0,0,21
+277530,0,0,0,21
+277531,0,0,0,21
+277532,0,0,0,21
+277533,0,0,0,21
+277534,0,0,0,21
+277535,0,0,0,21
+277536,0,0,0,21
+277537,0,0,0,21
+277538,0,0,0,21
+277539,0,0,0,21
+277540,0,0,0,21
+277541,0,0,0,21
+277542,0,0,0,21
+277543,0,0,0,21
+277544,0,0,0,21
+277545,0,0,0,21
+277546,0,0,0,21
+277547,0,0,0,21
+277548,0,0,0,21
+277549,0,0,0,21
+277550,0,0,0,21
+277551,0,0,0,21
+277552,0,0,0,21
+277553,0,0,0,21
+277554,0,0,0,21
+277555,0,0,0,21
+277556,0,0,0,21
+277557,0,0,0,21
+277558,0,0,0,21
+277559,0,0,0,21
+277560,0,0,0,21
+277561,0,0,0,21
+277562,0,0,0,21
+277563,0,0,0,21
+277564,0,0,0,21
+277565,0,0,0,21
+277566,0,0,0,21
+277567,0,0,0,21
+277568,0,0,0,21
+277569,0,0,0,21
+277570,0,0,0,21
+277571,0,0,0,21
+277572,0,0,0,21
+277573,0,0,0,21
+277574,0,0,0,21
+277575,0,0,0,21
+277576,0,0,0,21
+277577,0,0,0,21
+277578,0,0,0,21
+277579,0,0,0,21
+277580,0,0,0,21
+277581,0,0,0,21
+277582,0,0,0,21
+277583,0,0,0,21
+277584,0,0,0,21
+277585,0,0,0,21
+277586,0,0,0,21
+277587,0,0,0,21
+277588,0,0,0,21
+277589,0,0,0,21
+277590,0,0,0,21
+277591,0,0,0,21
+277592,0,0,0,21
+277593,0,0,0,21
+277594,0,0,0,21
+277595,0,0,0,21
+277596,0,0,0,21
+277597,0,0,0,21
+277598,0,0,0,21
+277599,0,0,0,21
+277600,0,0,0,21
+277601,0,0,0,21
+277602,0,0,0,21
+277603,0,0,0,21
+277604,0,0,0,21
+277605,0,0,0,21
+277606,0,0,0,21
+277607,0,0,0,21
+277608,0,0,0,21
+277609,0,0,0,21
+277610,0,0,0,21
+277611,0,0,0,21
+277612,0,0,0,21
+277613,0,0,0,21
+277614,0,0,0,21
+277615,0,0,0,21
+277616,0,0,0,21
+277617,0,0,0,21
+277618,0,0,0,21
+277619,0,0,0,21
+277620,0,0,0,21
+277621,0,0,0,21
+277622,0,0,0,21
+277623,0,0,0,21
+277624,0,0,0,21
+277625,0,0,0,21
+277626,0,0,0,21
+277627,0,0,0,21
+277628,0,0,0,21
+277629,0,0,0,21
+277630,0,0,0,21
+277631,0,0,0,21
+277632,0,0,0,21
+277633,0,0,0,21
+277634,0,0,0,21
+277635,0,0,0,21
+277636,0,0,0,21
+277637,0,0,0,21
+277638,0,0,0,21
+277639,0,0,0,21
+277640,0,0,0,21
+277641,0,0,0,21
+277642,0,0,0,21
+277643,0,0,0,21
+277644,0,0,0,21
+277645,0,0,0,21
+277646,0,0,0,21
+277647,0,0,0,21
+277648,0,0,0,21
+277649,0,0,0,21
+277650,0,0,0,21
+277651,0,0,0,21
+277652,0,0,0,21
+277653,0,0,0,21
+277654,0,0,0,21
+277655,0,0,0,21
+277656,0,0,0,21
+277657,0,0,0,21
+277658,0,0,0,21
+277659,0,0,0,21
+277660,0,0,0,21
+277661,0,0,0,21
+277662,0,0,0,21
+277663,0,0,0,21
+277664,0,0,0,21
+277665,0,0,0,21
+277666,0,0,0,21
+277667,0,0,0,21
+277668,0,0,0,21
+277669,0,0,0,21
+277670,0,0,0,21
+277671,0,0,0,21
+277672,0,0,0,21
+277673,0,0,0,21
+277674,0,0,0,21
+277675,0,0,0,21
+277676,0,0,0,21
+277677,0,0,0,21
+277678,0,0,0,21
+277679,0,0,0,21
+277680,0,0,0,21
+277681,0,0,0,21
+277682,0,0,0,21
+277683,0,0,0,21
+277684,0,0,0,21
+277685,0,0,0,21
+277686,0,0,0,21
+277687,0,0,0,21
+277688,0,0,0,21
+277689,0,0,0,21
+277690,0,0,0,21
+277691,0,0,0,21
+277692,0,0,0,21
+277693,0,0,0,21
+277694,0,0,0,21
+277695,0,0,0,21
+277696,0,0,0,21
+277697,0,0,0,21
+277698,0,0,0,21
+277699,0,0,0,21
+277700,0,0,0,21
+277701,0,0,0,21
+277702,0,0,0,21
+277703,0,0,0,21
+277704,0,0,0,21
+277705,0,0,0,21
+277706,0,0,0,21
+277707,0,0,0,21
+277708,0,0,0,21
+277709,0,0,0,21
+277710,0,0,0,21
+277711,0,0,0,21
+277712,0,0,0,21
+277713,0,0,0,21
+277714,0,0,0,21
+277715,0,0,0,21
+277716,0,0,0,21
+277717,0,0,0,21
+277718,0,0,0,21
+277719,0,0,0,21
+277720,0,0,0,21
+277721,0,0,0,21
+277722,0,0,0,21
+277723,0,0,0,21
+277724,0,0,0,21
+277725,0,0,0,21
+277726,0,0,0,21
+277727,0,0,0,21
+277728,0,0,0,21
+277729,0,0,0,21
+277730,0,0,0,21
+277731,0,0,0,21
+277732,0,0,0,21
+277733,0,0,0,21
+277734,0,0,0,21
+277735,0,0,0,21
+277736,0,0,0,21
+277737,0,0,0,21
+277738,0,0,0,21
+277739,0,0,0,21
+277740,0,0,0,21
+277741,0,0,0,21
+277742,0,0,0,21
+277743,0,0,0,21
+277744,0,0,0,21
+277745,335147.9169,368569.4677,659325.5433,21
+277746,0,0,0,21
+277747,0,0,0,21
+277748,0,0,0,21
+277749,0,0,0,21
+277750,0,0,0,21
+277751,0,0,0,21
+277752,0,0,0,21
+277753,0,0,0,21
+277754,0,0,0,21
+277755,0,0,0,21
+277756,0,0,0,21
+277757,0,0,0,21
+277758,0,0,0,21
+277759,0,0,0,21
+277760,0,0,0,21
+277761,0,0,0,21
+277762,0,0,0,21
+277763,0,0,0,21
+277764,0,0,0,21
+277765,0,0,0,21
+277766,0,0,0,21
+277767,0,0,0,21
+277768,0,0,0,21
+277769,0,0,0,21
+277770,0,0,0,21
+277771,0,0,0,21
+277772,0,0,0,21
+277773,0,0,0,21
+277774,0,0,0,21
+277775,0,0,0,21
+277776,0,0,0,21
+277777,0,0,0,21
+277778,0,0,0,21
+277779,335767.3747,369031.2893,660208.5957,21
+277780,0,0,0,21
+277781,0,0,0,21
+277782,0,0,0,21
+277783,0,0,0,21
+277784,0,0,0,21
+277785,0,0,0,21
+277786,0,0,0,21
+277787,0,0,0,21
+277788,0,0,0,21
+277789,0,0,0,21
+277790,0,0,0,21
+277791,0,0,0,21
+277792,0,0,0,21
+277793,0,0,0,21
+277794,0,0,0,21
+277795,0,0,0,21
+277796,0,0,0,21
+277797,0,0,0,21
+277798,0,0,0,21
+277799,0,0,0,21
+277800,0,0,0,15.6
+277801,0,0,0,15.6
+277802,0,0,0,15.6
+277803,0,0,0,15.6
+277804,0,0,0,15.6
+277805,0,0,0,15.6
+277806,0,0,0,15.6
+277807,0,0,0,15.6
+277808,0,0,0,15.6
+277809,0,0,0,15.6
+277810,0,0,0,15.6
+277811,0,0,0,15.6
+277812,0,0,0,15.6
+277813,335211.5793,369039.063,660683.0044,15.6
+277814,0,0,0,15.6
+277815,0,0,0,15.6
+277816,0,0,0,15.6
+277817,0,0,0,15.6
+277818,0,0,0,15.6
+277819,0,0,0,15.6
+277820,0,0,0,15.6
+277821,0,0,0,15.6
+277822,0,0,0,15.6
+277823,0,0,0,15.6
+277824,0,0,0,15.6
+277825,0,0,0,15.6
+277826,0,0,0,15.6
+277827,0,0,0,15.6
+277828,0,0,0,15.6
+277829,0,0,0,15.6
+277830,0,0,0,15.6
+277831,0,0,0,15.6
+277832,0,0,0,15.6
+277833,0,0,0,15.6
+277834,0,0,0,15.6
+277835,0,0,0,15.6
+277836,0,0,0,15.6
+277837,0,0,0,15.6
+277838,0,0,0,15.6
+277839,0,0,0,15.6
+277840,0,0,0,15.6
+277841,0,0,0,15.6
+277842,0,0,0,15.6
+277843,0,0,0,15.6
+277844,0,0,0,15.6
+277845,0,0,0,15.6
+277846,0,0,0,15.6
+277847,335519.1407,369046.5971,660562.7953,15.6
+277848,0,0,0,15.6
+277849,0,0,0,15.6
+277850,0,0,0,15.6
+277851,0,0,0,15.6
+277852,0,0,0,15.6
+277853,0,0,0,15.6
+277854,0,0,0,15.6
+277855,0,0,0,15.6
+277856,0,0,0,15.6
+277857,0,0,0,15.6
+277858,0,0,0,15.6
+277859,0,0,0,15.6
+277860,0,0,0,15.6
+277861,0,0,0,15.6
+277862,0,0,0,15.6
+277863,0,0,0,15.6
+277864,0,0,0,15.6
+277865,0,0,0,15.6
+277866,0,0,0,15.6
+277867,0,0,0,15.6
+277868,0,0,0,15.6
+277869,0,0,0,15.6
+277870,0,0,0,15.6
+277871,0,0,0,15.6
+277872,0,0,0,15.6
+277873,0,0,0,15.6
+277874,0,0,0,15.6
+277875,0,0,0,15.6
+277876,0,0,0,15.6
+277877,0,0,0,15.6
+277878,0,0,0,15.6
+277879,0,0,0,15.6
+277880,0,0,0,15.6
+277881,335630.0422,369050.1749,661122.4466,15.6
+277882,0,0,0,15.6
+277883,0,0,0,15.6
+277884,0,0,0,15.6
+277885,0,0,0,15.6
+277886,0,0,0,15.6
+277887,0,0,0,15.6
+277888,0,0,0,15.6
+277889,0,0,0,15.6
+277890,0,0,0,15.6
+277891,0,0,0,15.6
+277892,0,0,0,15.6
+277893,0,0,0,15.6
+277894,0,0,0,15.6
+277895,0,0,0,15.6
+277896,0,0,0,15.6
+277897,0,0,0,15.6
+277898,0,0,0,15.6
+277899,0,0,0,15.6
+277900,0,0,0,15.6
+277901,0,0,0,15.6
+277902,0,0,0,15.6
+277903,0,0,0,15.6
+277904,0,0,0,15.6
+277905,0,0,0,15.6
+277906,0,0,0,15.6
+277907,0,0,0,15.6
+277908,0,0,0,15.6
+277909,0,0,0,15.6
+277910,0,0,0,15.6
+277911,0,0,0,15.6
+277912,0,0,0,15.6
+277913,0,0,0,15.6
+277914,0,0,0,15.6
+277915,336080.2935,369050.1774,660909.6444,15.6
+277916,0,0,0,15.6
+277917,0,0,0,15.6
+277918,0,0,0,15.6
+277919,0,0,0,15.6
+277920,0,0,0,15.6
+277921,0,0,0,15.6
+277922,0,0,0,15.6
+277923,0,0,0,15.6
+277924,0,0,0,15.6
+277925,0,0,0,15.6
+277926,0,0,0,15.6
+277927,0,0,0,15.6
+277928,0,0,0,15.6
+277929,0,0,0,15.6
+277930,0,0,0,15.6
+277931,0,0,0,15.6
+277932,0,0,0,15.6
+277933,0,0,0,15.6
+277934,0,0,0,15.6
+277935,0,0,0,15.6
+277936,0,0,0,15.6
+277937,0,0,0,15.6
+277938,0,0,0,15.6
+277939,0,0,0,15.6
+277940,0,0,0,15.6
+277941,0,0,0,15.6
+277942,0,0,0,15.6
+277943,0,0,0,15.6
+277944,0,0,0,15.6
+277945,0,0,0,15.6
+277946,0,0,0,15.6
+277947,0,0,0,15.6
+277948,0,0,0,15.6
+277949,0,369050.1759,660754.4133,15.6
+277950,335966.5552,0,0,15.6
+277951,0,0,0,15.6
+277952,0,0,0,15.6
+277953,0,0,0,15.6
+277954,0,0,0,15.6
+277955,0,0,0,15.6
+277956,0,0,0,15.6
+277957,0,0,0,15.6
+277958,0,0,0,15.6
+277959,0,0,0,15.6
+277960,0,0,0,15.6
+277961,0,0,0,15.6
+277962,0,0,0,15.6
+277963,0,0,0,15.6
+277964,0,0,0,15.6
+277965,0,0,0,15.6
+277966,0,0,0,15.6
+277967,0,0,0,15.6
+277968,0,0,0,15.6
+277969,0,0,0,15.6
+277970,0,0,0,15.6
+277971,0,0,0,15.6
+277972,0,0,0,15.6
+277973,0,0,0,15.6
+277974,0,0,0,15.6
+277975,0,0,0,15.6
+277976,0,0,0,15.6
+277977,0,0,0,15.6
+277978,0,0,0,15.6
+277979,0,0,0,15.6
+277980,0,0,0,15.6
+277981,0,0,0,15.6
+277982,0,0,0,15.6
+277983,0,369050.1774,660586.1582,15.6
+277984,0,0,0,15.6
+277985,336937.5457,0,0,15.6
+277986,0,0,0,15.6
+277987,0,0,0,15.6
+277988,0,0,0,15.6
+277989,0,0,0,15.6
+277990,0,0,0,15.6
+277991,0,0,0,15.6
+277992,0,0,0,15.6
+277993,0,0,0,15.6
+277994,0,0,0,15.6
+277995,0,0,0,15.6
+277996,0,0,0,15.6
+277997,0,0,0,15.6
+277998,0,0,0,15.6
+277999,0,0,0,15.6
+278000,0,0,0,15.6
+278001,0,0,0,15.6
+278002,0,0,0,15.6
+278003,0,0,0,15.6
+278004,0,0,0,15.6
+278005,0,0,0,15.6
+278006,0,0,0,15.6
+278007,0,0,0,15.6
+278008,0,0,0,15.6
+278009,0,0,0,15.6
+278010,0,0,0,15.6
+278011,0,0,0,15.6
+278012,0,0,0,15.6
+278013,0,0,0,15.6
+278014,0,0,0,15.6
+278015,0,0,0,15.6
+278016,0,0,0,15.6
+278017,0,369050.1774,659832.5954,15.6
+278018,0,0,0,15.6
+278019,0,0,0,15.6
+278020,335614.3376,0,0,15.6
+278021,0,0,0,15.6
+278022,0,0,0,15.6
+278023,0,0,0,15.6
+278024,0,0,0,15.6
+278025,0,0,0,15.6
+278026,0,0,0,15.6
+278027,0,0,0,15.6
+278028,0,0,0,15.6
+278029,0,0,0,15.6
+278030,0,0,0,15.6
+278031,0,0,0,15.6
+278032,0,0,0,15.6
+278033,0,0,0,15.6
+278034,0,0,0,15.6
+278035,0,0,0,15.6
+278036,0,0,0,15.6
+278037,0,0,0,15.6
+278038,0,0,0,15.6
+278039,0,0,0,15.6
+278040,0,0,0,15.6
+278041,0,0,0,15.6
+278042,0,0,0,15.6
+278043,0,0,0,15.6
+278044,0,0,0,15.6
+278045,0,0,0,15.6
+278046,0,0,0,15.6
+278047,0,0,0,15.6
+278048,0,0,0,15.6
+278049,0,0,0,15.6
+278050,0,0,0,15.6
+278051,0,369050.1745,659749.4431,15.6
+278052,0,0,0,15.6
+278053,0,0,0,15.6
+278054,0,0,0,15.6
+278055,337133.1637,0,0,15.6
+278056,0,0,0,15.6
+278057,0,0,0,15.6
+278058,0,0,0,15.6
+278059,0,0,0,15.6
+278060,0,0,0,15.6
+278061,0,0,0,15.6
+278062,0,0,0,15.6
+278063,0,0,0,15.6
+278064,0,0,0,15.6
+278065,0,0,0,15.6
+278066,0,0,0,15.6
+278067,0,0,0,15.6
+278068,0,0,0,15.6
+278069,0,0,0,15.6
+278070,0,0,0,15.6
+278071,0,0,0,15.6
+278072,0,0,0,15.6
+278073,0,0,0,15.6
+278074,0,0,0,15.6
+278075,0,0,0,15.6
+278076,0,0,0,15.6
+278077,0,0,0,15.6
+278078,0,0,0,15.6
+278079,0,0,0,15.6
+278080,0,0,0,15.6
+278081,0,0,0,15.6
+278082,0,0,0,15.6
+278083,0,0,0,15.6
+278084,0,0,0,15.6
+278085,0,369049.8996,659771.8278,15.6
+278086,0,0,0,15.6
+278087,0,0,0,15.6
+278088,0,0,0,15.6
+278089,0,0,0,15.6
+278090,335961.418,0,0,15.6
+278091,0,0,0,15.6
+278092,0,0,0,15.6
+278093,0,0,0,15.6
+278094,0,0,0,15.6
+278095,0,0,0,15.6
+278096,0,0,0,15.6
+278097,0,0,0,15.6
+278098,0,0,0,15.6
+278099,0,0,0,15.6
+278100,0,0,0,15.6
+278101,0,0,0,15.6
+278102,0,0,0,15.6
+278103,0,0,0,15.6
+278104,0,0,0,15.6
+278105,0,0,0,15.6
+278106,0,0,0,15.6
+278107,0,0,0,15.6
+278108,0,0,0,15.6
+278109,0,0,0,15.6
+278110,0,0,0,15.6
+278111,0,0,0,15.6
+278112,0,0,0,15.6
+278113,0,0,0,15.6
+278114,0,0,0,15.6
+278115,0,0,0,15.6
+278116,0,0,0,15.6
+278117,0,0,0,15.6
+278118,0,0,659702.8124,15.6
+278119,0,369050.1689,0,15.6
+278120,0,0,0,15.6
+278121,0,0,0,15.6
+278122,0,0,0,15.6
+278123,0,0,0,15.6
+278124,340414.8523,0,0,15.6
+278125,0,0,0,15.6
+278126,0,0,0,15.6
+278127,0,0,0,15.6
+278128,0,0,0,15.6
+278129,0,0,0,15.6
+278130,0,0,0,15.6
+278131,0,0,0,15.6
+278132,0,0,0,15.6
+278133,0,0,0,15.6
+278134,0,0,0,15.6
+278135,0,0,0,15.6
+278136,0,0,0,15.6
+278137,0,0,0,15.6
+278138,0,0,0,15.6
+278139,0,0,0,15.6
+278140,0,0,0,15.6
+278141,0,0,0,15.6
+278142,0,0,0,15.6
+278143,0,0,0,15.6
+278144,0,0,0,15.6
+278145,0,0,0,15.6
+278146,0,0,0,15.6
+278147,0,0,0,15.6
+278148,0,0,0,15.6
+278149,0,0,0,15.6
+278150,0,0,0,15.6
+278151,0,0,0,15.6
+278152,0,0,659366.3738,15.6
+278153,0,369123.1036,0,15.6
+278154,0,0,0,15.6
+278155,0,0,0,15.6
+278156,0,0,0,15.6
+278157,0,0,0,15.6
+278158,340416.4459,0,0,15.6
+278159,0,0,0,15.6
+278160,0,0,0,17.8
+278161,35540.53466,0,0,17.8
+278162,0,0,0,17.8
+278163,0,0,0,17.8
+278164,3870.984803,0,0,17.8
+278165,9764.493852,0,0,17.8
+278166,5159.541117,0,0,17.8
+278167,6632.428548,0,0,17.8
+278168,0,0,0,17.8
+278169,0,0,0,17.8
+278170,0,0,0,17.8
+278171,0,0,0,17.8
+278172,0,0,0,17.8
+278173,0,0,0,17.8
+278174,0,0,0,17.8
+278175,0,0,0,17.8
+278176,0,0,0,17.8
+278177,0,0,0,17.8
+278178,0,0,0,17.8
+278179,0,0,0,17.8
+278180,0,0,0,17.8
+278181,0,0,0,17.8
+278182,0,0,0,17.8
+278183,0,0,0,17.8
+278184,0,0,0,17.8
+278185,0,0,659100.3159,17.8
+278186,0,0,0,17.8
+278187,0,369064.5401,0,17.8
+278188,0,0,0,17.8
+278189,0,0,0,17.8
+278190,0,0,0,17.8
+278191,0,0,0,17.8
+278192,340415.7594,0,0,17.8
+278193,0,0,0,17.8
+278194,0,0,0,17.8
+278195,0,0,0,17.8
+278196,0,0,0,17.8
+278197,0,0,0,17.8
+278198,0,0,0,17.8
+278199,0,0,0,17.8
+278200,0,0,0,17.8
+278201,0,0,0,17.8
+278202,0,0,0,17.8
+278203,0,0,0,17.8
+278204,0,0,0,17.8
+278205,0,0,0,17.8
+278206,0,0,0,17.8
+278207,0,0,0,17.8
+278208,0,0,0,17.8
+278209,0,0,0,17.8
+278210,0,0,0,17.8
+278211,0,0,0,17.8
+278212,0,0,0,17.8
+278213,0,0,0,17.8
+278214,0,0,0,17.8
+278215,0,0,0,17.8
+278216,0,0,0,17.8
+278217,0,0,0,17.8
+278218,0,0,0,17.8
+278219,0,0,658951.2001,17.8
+278220,0,0,0,20
+278221,2814.811653,549449.0151,0,20
+278222,0,4546.117766,0,20
+278223,1267.437156,10983.59625,0,20
+278224,29893.62436,49549.79831,0,20
+278225,40898.49692,42333.43756,0,20
+278226,36636.95395,39749.5228,0,20
+278227,34971.12466,40372.43563,0,20
+278228,36932.81301,41162.9355,0,20
+278229,36104.01106,41377.04494,0,20
+278230,35542.48631,41288.27866,0,20
+278231,34733.14847,41781.47777,0,20
+278232,34082.92878,41618.05761,0,20
+278233,33418.65532,42082.1295,0,20
+278234,38460.44332,42239.92167,0,20
+278235,34087.41589,42179.10312,0,20
+278236,34730.76032,42423.30951,0,20
+278237,33703.38127,42839.36952,0,20
+278238,33227.7623,42942.61757,0,20
+278239,32840.72157,43190.30916,0,20
+278240,32916.65415,43093.23258,0,20
+278241,33142.61576,43534.32591,0,20
+278242,32874.32775,43513.87977,0,20
+278243,33139.29119,43874.49973,0,20
+278244,33268.01731,43706.00866,0,20
+278245,33000.39942,43975.65998,0,20
+278246,33224.44614,44221.545,0,20
+278247,33229.9414,44024.15321,0,20
+278248,33322.89987,44639.54826,0,20
+278249,33075.18849,44080.87762,0,20
+278250,33579.77525,44780.86728,0,20
+278251,33444.18856,44667.56811,0,20
+278252,33515.21661,44736.58932,0,20
+278253,33638.71719,44909.16858,0,20
+278254,33801.71179,44729.5943,0,20
+278255,33563.72328,44916.44224,0,20
+278256,34016.47561,45335.51556,0,20
+278257,33757.04237,44992.20957,0,20
+278258,34087.51911,45349.47311,0,20
+278259,33889.22995,45408.28947,0,20
+278260,34125.60455,45525.68189,0,20
+278261,33770.72024,45616.94757,0,20
+278262,34074.0786,45652.6993,0,20
+278263,33884.1114,46149.00988,0,20
+278264,33892.51755,45632.09586,0,20
+278265,34074.34612,46101.31207,0,20
+278266,33821.90945,46310.33833,0,20
+278267,34087.19343,46289.72046,0,20
+278268,33941.07862,46135.86994,0,20
+278269,34087.35711,46569.72209,0,20
+278270,33933.56892,46672.43494,0,20
+278271,34107.69177,46429.34369,0,20
+278272,33951.41822,46932.01354,0,20
+278273,33936.20458,46617.7058,0,20
+278274,34138.30216,47105.60835,0,20
+278275,33769.31377,46966.15844,0,20
+278276,34148.47872,47244.99877,0,20
+278277,33845.08767,47252.28101,0,20
+278278,33984.52123,47125.86951,0,20
+278279,33966.99184,47411.66725,0,20
+278280,33852.88364,47626.00974,0,21
+278281,29806.26241,42735.68614,0,21
+278282,28754.21073,42464.26446,0,21
+278283,28893.8637,42286.38506,0,21
+278284,28488.55637,42265.7478,0,21
+278285,28329.24099,42087.5779,0,21
+278286,28270.80273,41951.49992,0,21
+278287,27912.37403,42259.1444,0,21
+278288,27862.05665,41636.71381,0,21
+278289,27862.06551,42066.89881,0,21
+278290,27393.38072,41752.36149,0,21
+278291,27440.59413,41944.9162,0,21
+278292,27321.08605,41573.60349,0,21
+278293,26857.15762,41930.81314,0,21
+278294,27169.6367,41573.59836,0,21
+278295,26632.04416,41552.89215,0,21
+278296,26467.35518,41630.14698,0,21
+278297,26449.61473,41654.126,0,21
+278298,26364.84575,41451.38876,0,21
+278299,25890.72644,41409.94416,0,21
+278300,25913.80309,41495.80806,0,21
+278301,25764.97032,41287.51658,0,21
+278302,25435.84699,41180.35774,0,21
+278303,25328.13123,41409.93277,0,21
+278304,25297.5716,41173.79008,0,21
+278305,25025.70051,41216.80095,0,21
+278306,24730.78621,41051.56704,0,21
+278307,24671.35826,41181.85648,0,21
+278308,24371.54302,41051.54375,0,21
+278309,24374.05616,41030.75931,0,21
+278310,24190.6583,40822.83526,0,21
+278311,23947.07951,41030.73715,0,21
+278312,24108.56502,40802.01746,0,21
+278313,23896.72315,40411.95819,0,21
+278314,23853.73189,40981.6518,0,21
+278315,23813.34658,40636.21435,0,21
+278316,23608.83603,40356.15128,0,21
+278317,23557.08317,40319.39296,0,21
+278318,23525.10297,40335.26466,0,21
+278319,23310.80365,40138.844,0,21
+278320,23431.78142,40306.88964,0,21
+278321,23063.04599,39974.46592,0,21
+278322,23143.30819,39960.28988,0,21
+278323,23000.05834,39498.34917,0,21
+278324,23079.29154,39296.23779,0,21
+278325,22698.9609,39267.76252,0,21
+278326,22831.41405,39114.76431,0,21
+278327,22593.0863,38797.38923,0,21
+278328,22581.68602,39100.53427,0,21
+278329,22506.6913,38615.60576,0,21
+278330,22289.89592,38739.16462,0,21
+278331,22267.19168,38433.51042,0,21
+278332,22182.69155,38377.0813,0,21
+278333,21993.94166,38113.03141,0,21
+278334,22096.39761,38194.67232,0,21
+278335,21721.17216,37932.54211,0,21
+278336,21832.42398,38070.86973,0,21
+278337,21788.03874,37531.32637,0,21
+278338,21371.84947,37545.64902,0,21
+278339,21606.72533,37524.47858,0,21
+278340,21316.14953,37516.9639,0,21
+278341,6029.686871,4126.709845,0,21
+278342,4799.24913,2454.175605,0,21
+278343,4747.485411,2104.902181,0,21
+278344,4238.039938,1518.973208,0,21
+278345,4211.902908,1188.360005,0,21
+278346,3694.312135,1133.787119,0,21
+278347,3681.155359,1054.957601,0,21
+278348,3392.472402,1036.554282,0,21
+278349,3140.877189,991.5663125,0,21
+278350,2960.83674,900.9023904,0,21
+278351,2704.872136,874.1280748,0,21
+278352,2548.872396,828.3164742,0,21
+278353,2405.289527,782.231276,0,21
+278354,2101.411337,722.2509011,0,21
+278355,1832.980624,689.1457953,0,21
+278356,1927.207298,614.561713,0,21
+278357,1362.551011,600.7983504,0,21
+278358,1489.937533,518.8707002,0,21
+278359,1011.301399,504.9286374,0,21
+278360,983.7232079,442.0358687,0,21
+278361,956.0226435,391.912606,0,21
+278362,942.1230519,363.5232233,0,21
+278363,928.1940461,306.1810992,0,21
+278364,886.2076271,306.1829967,0,21
+278365,872.1452774,218.5397284,0,21
+278366,858.0489435,247.998294,0,21
+278367,829.7523893,173.8159451,0,21
+278368,815.5512921,158.7456142,0,21
+278369,772.7314259,128.322584,0,21
+278370,787.0412671,97.45804279,0,21
+278371,729.5765359,66.03320543,0,21
+278372,729.5766423,33.81633714,0,21
+278373,700.6129806,17.24299829,0,21
+278374,671.4889607,0,0,21
+278375,671.4889633,0,0,21
+278376,627.490802,0,0,21
+278377,627.4907816,0,0,21
+278378,583.100415,0,0,21
+278379,583.1004222,0,0,21
+278380,553.2788816,0,0,21
+278381,523.2646,0,0,21
+278382,523.2645297,0,0,21
+278383,477.86413,0,0,21
+278384,477.8641487,0,0,21
+278385,447.3307976,0,0,21
+278386,416.5706041,0,0,21
+278387,416.5705704,0,0,21
+278388,369.9762067,0,0,21
+278389,369.9761983,0,0,21
+278390,338.5873456,0,0,21
+278391,322.7880919,0,0,21
+278392,306.915322,0,0,21
+278393,274.9364856,0,0,21
+278394,258.8231977,0,0,21
+278395,242.6217754,0,0,21
+278396,209.9343741,0,0,21
+278397,193.4364503,0,0,21
+278398,176.8260731,0,0,21
+278399,160.0944158,0,0,21
+278400,126.2220266,0,0,21
+278401,117.6582253,0,0,21
+278402,91.69774807,0,0,21
+278403,74.13089531,0,0,21
+278404,56.30781026,0,0,21
+278405,38.15871494,0,0,21
+278406,9.970904965,0,0,21
+278407,0,0,0,21
+278408,0,0,0,21
+278409,0,0,0,21
+278410,0,0,0,21
+278411,0,0,0,21
+278412,0,0,0,21
+278413,0,0,0,21
+278414,0,0,0,21
+278415,0,0,0,21
+278416,0,0,0,21
+278417,0,0,0,21
+278418,0,0,0,21
+278419,0,0,0,21
+278420,0,0,0,21
+278421,0,0,0,21
+278422,0,0,0,21
+278423,0,0,0,21
+278424,0,0,0,21
+278425,0,0,0,21
+278426,0,0,0,21
+278427,0,0,0,21
+278428,0,0,0,21
+278429,0,0,0,21
+278430,0,0,0,21
+278431,0,0,0,21
+278432,0,0,0,21
+278433,0,0,0,21
+278434,0,0,0,21
+278435,0,0,0,21
+278436,0,0,0,21
+278437,0,0,0,21
+278438,0,0,0,21
+278439,0,0,0,21
+278440,0,0,0,21
+278441,0,0,0,21
+278442,0,0,0,21
+278443,0,0,0,21
+278444,0,0,0,21
+278445,0,0,0,21
+278446,0,0,0,21
+278447,0,0,0,21
+278448,0,0,0,21
+278449,0,0,0,21
+278450,0,0,0,21
+278451,0,0,0,21
+278452,0,0,0,21
+278453,0,0,0,21
+278454,0,0,0,21
+278455,0,0,0,21
+278456,0,0,0,21
+278457,0,0,0,21
+278458,0,0,0,21
+278459,0,0,0,21
+278460,0,0,0,21
+278461,0,0,0,21
+278462,0,0,0,21
+278463,0,0,0,21
+278464,0,0,0,21
+278465,0,0,0,21
+278466,0,0,0,21
+278467,0,0,0,21
+278468,0,0,0,21
+278469,0,0,0,21
+278470,0,0,0,21
+278471,0,0,0,21
+278472,0,0,0,21
+278473,0,0,0,21
+278474,0,0,0,21
+278475,0,0,0,21
+278476,0,0,0,21
+278477,0,0,0,21
+278478,0,0,0,21
+278479,0,0,0,21
+278480,0,0,0,21
+278481,0,0,0,21
+278482,0,0,0,21
+278483,0,0,0,21
+278484,0,0,0,21
+278485,0,0,0,21
+278486,0,0,0,21
+278487,0,0,0,21
+278488,0,0,0,21
+278489,0,0,0,21
+278490,0,0,0,21
+278491,0,0,0,21
+278492,0,0,0,21
+278493,0,0,0,21
+278494,0,0,0,21
+278495,0,0,0,21
+278496,0,0,0,21
+278497,0,0,0,21
+278498,0,0,0,21
+278499,0,0,0,21
+278500,0,0,0,21
+278501,0,0,0,21
+278502,0,0,0,21
+278503,0,0,0,21
+278504,0,0,0,21
+278505,0,0,0,21
+278506,0,0,0,21
+278507,0,0,0,21
+278508,0,0,0,21
+278509,0,0,0,21
+278510,0,0,0,21
+278511,0,0,0,21
+278512,0,0,0,21
+278513,0,0,0,21
+278514,0,0,0,21
+278515,0,0,0,21
+278516,0,0,0,21
+278517,0,0,0,21
+278518,0,0,0,21
+278519,0,0,0,21
+278520,0,0,0,21
+278521,0,0,0,21
+278522,0,0,0,21
+278523,0,0,0,21
+278524,0,0,0,21
+278525,0,0,0,21
+278526,0,0,0,21
+278527,0,0,0,21
+278528,0,0,0,21
+278529,0,0,0,21
+278530,0,0,0,21
+278531,0,0,0,21
+278532,0,0,0,21
+278533,0,0,0,21
+278534,0,0,0,21
+278535,0,0,0,21
+278536,0,0,0,21
+278537,0,0,0,21
+278538,0,0,0,21
+278539,0,0,0,21
+278540,0,0,0,21
+278541,0,0,0,21
+278542,0,0,0,21
+278543,0,0,0,21
+278544,0,0,0,21
+278545,0,0,0,21
+278546,0,0,0,21
+278547,0,0,0,21
+278548,0,0,0,21
+278549,0,0,0,21
+278550,0,0,0,21
+278551,0,0,0,21
+278552,0,0,0,21
+278553,0,0,0,21
+278554,0,0,0,21
+278555,0,0,0,21
+278556,0,0,0,21
+278557,0,0,0,21
+278558,0,0,0,21
+278559,0,0,0,21
+278560,0,0,0,21
+278561,0,0,0,21
+278562,0,0,0,21
+278563,0,0,0,21
+278564,0,0,0,21
+278565,0,0,0,21
+278566,0,0,0,21
+278567,0,0,0,21
+278568,0,0,0,21
+278569,0,0,0,21
+278570,0,0,0,21
+278571,0,0,0,21
+278572,0,0,0,21
+278573,0,0,0,21
+278574,0,0,0,21
+278575,0,0,0,21
+278576,0,0,0,21
+278577,0,0,0,21
+278578,0,0,0,21
+278579,0,0,0,21
+278580,0,0,0,21
+278581,0,0,0,21
+278582,0,0,0,21
+278583,0,0,0,21
+278584,0,0,0,21
+278585,0,0,0,21
+278586,0,0,0,21
+278587,0,0,0,21
+278588,0,0,0,21
+278589,0,0,0,21
+278590,0,0,0,21
+278591,0,0,0,21
+278592,0,0,0,21
+278593,0,0,0,21
+278594,0,0,0,21
+278595,0,0,0,21
+278596,0,0,0,21
+278597,0,0,0,21
+278598,0,0,0,21
+278599,0,0,0,21
+278600,0,0,0,21
+278601,0,0,0,21
+278602,0,0,0,21
+278603,0,0,0,21
+278604,0,0,0,21
+278605,0,0,0,21
+278606,0,0,0,21
+278607,0,0,0,21
+278608,0,0,0,21
+278609,0,0,0,21
+278610,0,0,0,21
+278611,0,0,0,21
+278612,0,0,0,21
+278613,0,0,0,21
+278614,0,0,0,21
+278615,0,0,0,21
+278616,0,0,0,21
+278617,0,0,0,21
+278618,0,0,0,21
+278619,0,0,0,21
+278620,0,0,0,21
+278621,0,0,0,21
+278622,0,0,0,21
+278623,0,0,0,21
+278624,0,0,0,21
+278625,0,0,0,21
+278626,0,0,0,21
+278627,0,0,0,21
+278628,0,0,0,21
+278629,0,0,0,21
+278630,0,0,0,21
+278631,0,0,0,21
+278632,0,0,0,21
+278633,0,0,0,21
+278634,0,0,0,21
+278635,0,0,0,21
+278636,0,0,0,21
+278637,0,0,0,21
+278638,0,0,0,21
+278639,0,0,0,21
+278640,0,0,0,21
+278641,0,0,0,21
+278642,0,0,0,21
+278643,0,0,0,21
+278644,0,0,0,21
+278645,0,0,0,21
+278646,0,0,0,21
+278647,0,0,0,21
+278648,0,0,0,21
+278649,0,0,0,21
+278650,0,0,0,21
+278651,0,0,0,21
+278652,0,0,0,21
+278653,0,0,0,21
+278654,0,0,0,21
+278655,0,0,0,21
+278656,0,0,0,21
+278657,0,0,0,21
+278658,0,0,0,21
+278659,0,0,0,21
+278660,0,0,0,21
+278661,0,0,0,21
+278662,0,0,0,21
+278663,0,0,0,21
+278664,0,0,0,21
+278665,0,0,0,21
+278666,0,0,0,21
+278667,0,0,0,21
+278668,0,0,0,21
+278669,0,0,0,21
+278670,0,0,0,21
+278671,0,0,0,21
+278672,0,0,0,21
+278673,0,0,0,21
+278674,0,0,0,21
+278675,0,0,0,21
+278676,0,0,0,21
+278677,0,0,0,21
+278678,0,0,0,21
+278679,0,0,0,21
+278680,0,0,0,21
+278681,0,0,0,21
+278682,0,0,0,21
+278683,0,0,0,21
+278684,0,0,0,21
+278685,0,0,0,21
+278686,0,0,0,21
+278687,0,0,0,21
+278688,0,0,0,21
+278689,0,0,0,21
+278690,0,0,0,21
+278691,0,0,0,21
+278692,0,0,0,21
+278693,0,0,0,21
+278694,0,0,0,21
+278695,0,0,0,21
+278696,0,0,0,21
+278697,0,0,0,21
+278698,0,0,0,21
+278699,0,0,0,21
+278700,0,0,0,21
+278701,0,0,0,21
+278702,0,0,0,21
+278703,0,0,0,21
+278704,0,0,0,21
+278705,0,0,0,21
+278706,0,0,0,21
+278707,0,0,0,21
+278708,0,0,0,21
+278709,0,0,0,21
+278710,0,0,0,21
+278711,0,0,0,21
+278712,0,0,0,21
+278713,0,0,0,21
+278714,0,0,0,21
+278715,0,0,0,21
+278716,0,0,0,21
+278717,0,0,0,21
+278718,0,0,0,21
+278719,0,0,0,21
+278720,0,0,0,21
+278721,0,0,0,21
+278722,0,0,0,21
+278723,0,0,0,21
+278724,0,0,0,21
+278725,0,0,0,21
+278726,0,0,0,21
+278727,0,0,0,21
+278728,0,0,0,21
+278729,0,0,0,21
+278730,0,0,0,21
+278731,0,0,0,21
+278732,0,0,0,21
+278733,0,0,0,21
+278734,0,0,0,21
+278735,0,0,0,21
+278736,0,0,0,21
+278737,0,0,0,21
+278738,0,0,0,21
+278739,0,0,0,21
+278740,0,0,0,21
+278741,0,0,0,21
+278742,0,0,0,21
+278743,0,0,0,21
+278744,0,0,0,21
+278745,0,0,0,21
+278746,0,0,0,21
+278747,0,0,0,21
+278748,0,0,0,21
+278749,0,0,0,21
+278750,0,0,0,21
+278751,0,0,0,21
+278752,0,0,0,21
+278753,0,0,0,21
+278754,0,0,0,21
+278755,0,0,0,21
+278756,0,0,0,21
+278757,0,0,0,21
+278758,0,0,0,21
+278759,0,0,0,21
+278760,0,0,0,21
+278761,0,0,0,21
+278762,0,0,0,21
+278763,0,0,0,21
+278764,0,0,0,21
+278765,0,0,0,21
+278766,0,0,0,21
+278767,0,0,0,21
+278768,0,0,0,21
+278769,0,0,0,21
+278770,0,0,0,21
+278771,0,0,0,21
+278772,0,0,0,21
+278773,0,0,0,21
+278774,0,0,0,21
+278775,0,0,0,21
+278776,0,0,0,21
+278777,0,0,0,21
+278778,0,0,0,21
+278779,0,0,0,21
+278780,0,0,0,21
+278781,0,0,0,21
+278782,0,0,0,21
+278783,0,0,0,21
+278784,0,0,0,21
+278785,0,0,0,21
+278786,0,0,0,21
+278787,0,0,0,21
+278788,0,0,0,21
+278789,0,0,0,21
+278790,0,0,0,21
+278791,0,0,0,21
+278792,0,0,0,21
+278793,0,0,0,21
+278794,0,0,0,21
+278795,0,0,0,21
+278796,0,0,0,21
+278797,0,0,0,21
+278798,0,0,0,21
+278799,0,0,0,21
+278800,0,0,0,21
+278801,0,0,0,21
+278802,0,0,0,21
+278803,0,0,0,21
+278804,0,0,0,21
+278805,0,0,0,21
+278806,0,0,0,21
+278807,0,0,0,21
+278808,0,0,0,21
+278809,0,0,0,21
+278810,0,0,0,21
+278811,0,0,0,21
+278812,0,0,0,21
+278813,0,0,0,21
+278814,0,0,0,21
+278815,0,0,0,21
+278816,0,0,0,21
+278817,0,0,0,21
+278818,0,0,0,21
+278819,0,0,0,21
+278820,0,0,0,21
+278821,0,0,0,21
+278822,0,0,0,21
+278823,0,0,0,21
+278824,0,0,0,21
+278825,0,0,0,21
+278826,0,0,0,21
+278827,0,0,0,21
+278828,0,0,0,21
+278829,0,0,0,21
+278830,0,0,0,21
+278831,0,0,0,21
+278832,0,0,0,21
+278833,0,0,0,21
+278834,0,0,0,21
+278835,0,0,0,21
+278836,0,0,0,21
+278837,0,0,0,21
+278838,0,0,0,21
+278839,0,0,0,21
+278840,0,0,0,21
+278841,0,0,0,21
+278842,0,0,0,21
+278843,0,0,0,21
+278844,0,0,0,21
+278845,0,0,0,21
+278846,0,0,0,21
+278847,0,0,0,21
+278848,0,0,0,21
+278849,0,0,0,21
+278850,0,0,0,21
+278851,0,0,0,21
+278852,0,0,0,21
+278853,0,0,0,21
+278854,0,0,0,21
+278855,0,0,0,21
+278856,0,0,0,21
+278857,0,0,0,21
+278858,0,0,0,21
+278859,0,0,0,21
+278860,0,0,0,21
+278861,0,0,0,21
+278862,0,0,0,21
+278863,0,0,0,21
+278864,0,0,0,21
+278865,0,0,0,21
+278866,0,0,0,21
+278867,0,0,0,21
+278868,0,0,0,21
+278869,0,0,0,21
+278870,0,0,0,21
+278871,0,0,0,21
+278872,0,0,0,21
+278873,0,0,0,21
+278874,0,0,0,21
+278875,0,0,0,21
+278876,0,0,0,21
+278877,0,0,0,21
+278878,0,0,0,21
+278879,0,0,0,21
+278880,0,0,0,21
+278881,0,0,0,21
+278882,0,0,0,21
+278883,0,0,0,21
+278884,0,0,0,21
+278885,0,0,0,21
+278886,0,0,0,21
+278887,0,0,0,21
+278888,0,0,0,21
+278889,0,0,0,21
+278890,0,0,0,21
+278891,0,0,0,21
+278892,0,0,0,21
+278893,0,0,0,21
+278894,0,0,0,21
+278895,0,0,0,21
+278896,0,0,0,21
+278897,0,0,0,21
+278898,0,0,0,21
+278899,0,0,0,21
+278900,0,0,0,21
+278901,0,0,0,21
+278902,0,0,0,21
+278903,0,0,0,21
+278904,0,0,0,21
+278905,0,0,0,21
+278906,0,0,0,21
+278907,0,0,0,21
+278908,0,0,0,21
+278909,0,0,0,21
+278910,0,0,0,21
+278911,0,0,0,21
+278912,0,0,0,21
+278913,0,0,0,21
+278914,0,0,0,21
+278915,0,0,0,21
+278916,0,0,0,21
+278917,0,0,0,21
+278918,0,0,0,21
+278919,0,0,0,21
+278920,0,0,0,21
+278921,0,0,0,21
+278922,0,0,0,21
+278923,0,0,0,21
+278924,0,0,0,21
+278925,0,0,0,21
+278926,0,0,0,21
+278927,0,0,0,21
+278928,0,0,0,21
+278929,0,0,0,21
+278930,0,0,0,21
+278931,0,0,0,21
+278932,0,0,0,21
+278933,0,0,0,21
+278934,0,0,0,21
+278935,0,0,0,21
+278936,0,0,0,21
+278937,0,0,0,21
+278938,0,0,0,21
+278939,0,0,0,21
+278940,0,0,0,21
+278941,0,0,0,21
+278942,0,0,0,21
+278943,0,0,0,21
+278944,0,0,0,21
+278945,0,0,0,21
+278946,0,0,0,21
+278947,0,0,0,21
+278948,0,0,0,21
+278949,0,0,0,21
+278950,0,0,0,21
+278951,0,0,0,21
+278952,0,0,0,21
+278953,0,0,0,21
+278954,0,0,0,21
+278955,0,0,0,21
+278956,0,0,0,21
+278957,0,0,0,21
+278958,0,0,0,21
+278959,0,0,0,21
+278960,0,0,0,21
+278961,0,0,0,21
+278962,0,0,0,21
+278963,0,0,0,21
+278964,0,0,0,21
+278965,0,0,0,21
+278966,0,0,0,21
+278967,0,0,0,21
+278968,0,0,0,21
+278969,0,0,0,21
+278970,0,0,0,21
+278971,0,0,0,21
+278972,0,0,0,21
+278973,0,0,0,21
+278974,0,0,0,21
+278975,0,0,0,21
+278976,0,0,0,21
+278977,0,0,0,21
+278978,0,0,0,21
+278979,0,0,0,21
+278980,0,0,0,21
+278981,0,0,0,21
+278982,0,0,0,21
+278983,0,0,0,21
+278984,0,0,0,21
+278985,0,0,0,21
+278986,0,0,0,21
+278987,0,0,0,21
+278988,0,0,0,21
+278989,0,0,0,21
+278990,0,0,0,21
+278991,0,0,0,21
+278992,0,0,0,21
+278993,0,0,0,21
+278994,0,0,0,21
+278995,0,0,0,21
+278996,0,0,0,21
+278997,0,0,0,21
+278998,0,0,0,21
+278999,0,0,0,21
+279000,0,0,0,21
+279001,0,0,0,21
+279002,0,0,0,21
+279003,0,0,0,21
+279004,0,0,0,21
+279005,0,0,0,21
+279006,0,0,0,21
+279007,0,0,0,21
+279008,0,0,0,21
+279009,0,0,0,21
+279010,0,0,0,21
+279011,0,0,0,21
+279012,0,0,0,21
+279013,0,0,0,21
+279014,0,0,0,21
+279015,0,0,0,21
+279016,0,0,0,21
+279017,0,0,0,21
+279018,0,0,0,21
+279019,0,0,0,21
+279020,0,0,0,21
+279021,0,0,0,21
+279022,0,0,0,21
+279023,0,0,0,21
+279024,0,0,0,21
+279025,0,0,0,21
+279026,0,0,0,21
+279027,0,0,0,21
+279028,0,0,0,21
+279029,0,0,0,21
+279030,0,0,0,21
+279031,0,0,0,21
+279032,0,0,0,21
+279033,0,0,0,21
+279034,0,0,0,21
+279035,0,0,0,21
+279036,0,0,0,21
+279037,0,0,0,21
+279038,0,0,0,21
+279039,0,0,0,21
+279040,0,0,0,21
+279041,0,0,0,21
+279042,0,0,0,21
+279043,0,0,0,21
+279044,0,0,0,21
+279045,0,0,0,21
+279046,0,0,0,21
+279047,0,0,0,21
+279048,0,0,0,21
+279049,0,0,0,21
+279050,0,0,0,21
+279051,0,0,0,21
+279052,0,0,0,21
+279053,0,0,0,21
+279054,0,0,0,21
+279055,0,0,0,21
+279056,0,0,0,21
+279057,0,0,0,21
+279058,0,0,0,21
+279059,0,0,0,21
+279060,0,0,0,21
+279061,0,0,0,21
+279062,0,0,0,21
+279063,0,0,0,21
+279064,0,0,0,21
+279065,0,0,0,21
+279066,0,0,0,21
+279067,0,0,0,21
+279068,0,0,0,21
+279069,0,0,0,21
+279070,0,0,0,21
+279071,0,0,0,21
+279072,0,0,0,21
+279073,0,0,0,21
+279074,0,0,0,21
+279075,0,0,0,21
+279076,0,0,0,21
+279077,0,0,0,21
+279078,0,0,0,21
+279079,0,0,0,21
+279080,0,0,0,21
+279081,0,0,0,21
+279082,0,0,0,21
+279083,0,0,0,21
+279084,0,0,0,21
+279085,0,0,0,21
+279086,0,0,0,21
+279087,0,0,0,21
+279088,0,0,0,21
+279089,0,0,0,21
+279090,0,0,0,21
+279091,0,0,0,21
+279092,0,0,0,21
+279093,0,0,0,21
+279094,0,0,0,21
+279095,0,0,0,21
+279096,0,0,0,21
+279097,0,0,0,21
+279098,0,0,0,21
+279099,0,0,0,21
+279100,0,0,0,21
+279101,0,0,0,21
+279102,0,0,0,21
+279103,0,0,0,21
+279104,0,0,0,21
+279105,0,0,0,21
+279106,0,0,0,21
+279107,0,0,0,21
+279108,0,0,0,21
+279109,0,0,0,21
+279110,0,0,0,21
+279111,0,0,0,21
+279112,0,0,0,21
+279113,0,0,0,21
+279114,0,0,0,21
+279115,0,0,0,21
+279116,0,0,0,21
+279117,0,0,0,21
+279118,0,0,0,21
+279119,0,0,0,21
+279120,0,0,0,21
+279121,0,0,0,21
+279122,0,0,0,21
+279123,0,0,0,21
+279124,0,0,0,21
+279125,0,0,0,21
+279126,0,0,0,21
+279127,0,0,0,21
+279128,0,0,0,21
+279129,0,0,0,21
+279130,0,0,0,21
+279131,0,0,0,21
+279132,0,0,0,21
+279133,0,0,0,21
+279134,0,0,0,21
+279135,0,0,0,21
+279136,0,0,0,21
+279137,0,0,0,21
+279138,0,0,0,21
+279139,0,0,0,21
+279140,0,0,0,21
+279141,0,0,0,21
+279142,0,0,0,21
+279143,0,0,0,21
+279144,0,0,0,21
+279145,0,0,0,21
+279146,0,0,0,21
+279147,0,0,0,21
+279148,0,0,0,21
+279149,0,0,0,21
+279150,0,0,0,21
+279151,0,0,0,21
+279152,0,0,0,21
+279153,0,0,0,21
+279154,0,0,0,21
+279155,0,0,0,21
+279156,0,0,0,21
+279157,0,0,0,21
+279158,0,0,0,21
+279159,0,0,0,21
+279160,0,0,0,21
+279161,0,0,0,21
+279162,0,0,0,21
+279163,0,0,0,21
+279164,0,0,0,21
+279165,0,0,0,21
+279166,0,0,0,21
+279167,0,0,0,21
+279168,0,0,0,21
+279169,0,0,0,21
+279170,0,0,0,21
+279171,0,0,0,21
+279172,0,0,0,21
+279173,0,0,0,21
+279174,0,0,0,21
+279175,0,0,0,21
+279176,0,0,0,21
+279177,0,0,0,21
+279178,0,0,0,21
+279179,0,0,0,21
+279180,0,0,0,21
+279181,0,0,0,21
+279182,0,0,0,21
+279183,0,0,0,21
+279184,0,0,0,21
+279185,333164.8885,359013.0489,657075.4202,21
+279186,0,0,0,21
+279187,0,0,0,21
+279188,0,0,0,21
+279189,0,0,0,21
+279190,0,0,0,21
+279191,0,0,0,21
+279192,0,0,0,21
+279193,0,0,0,21
+279194,0,0,0,21
+279195,0,0,0,21
+279196,0,0,0,21
+279197,0,0,0,21
+279198,0,0,0,21
+279199,0,0,0,21
+279200,0,0,0,21
+279201,0,0,0,21
+279202,0,0,0,21
+279203,0,0,0,21
+279204,0,0,0,21
+279205,0,0,0,21
+279206,0,0,0,21
+279207,0,0,0,21
+279208,0,0,0,21
+279209,0,0,0,21
+279210,0,0,0,21
+279211,0,0,0,21
+279212,0,0,0,21
+279213,0,0,0,21
+279214,0,0,0,21
+279215,0,0,0,21
+279216,0,0,0,21
+279217,0,0,0,21
+279218,0,0,0,21
+279219,333770.8527,360520.5108,657440.8614,21
+279220,0,0,0,21
+279221,0,0,0,21
+279222,0,0,0,21
+279223,0,0,0,21
+279224,0,0,0,21
+279225,0,0,0,21
+279226,0,0,0,21
+279227,0,0,0,21
+279228,0,0,0,21
+279229,0,0,0,21
+279230,0,0,0,21
+279231,0,0,0,21
+279232,0,0,0,21
+279233,0,0,0,21
+279234,0,0,0,21
+279235,0,0,0,21
+279236,0,0,0,21
+279237,0,0,0,21
+279238,0,0,0,21
+279239,0,0,0,21
+279240,0,0,0,15.6
+279241,0,0,0,15.6
+279242,0,0,0,15.6
+279243,0,0,0,15.6
+279244,0,0,0,15.6
+279245,0,0,0,15.6
+279246,0,0,0,15.6
+279247,0,0,0,15.6
+279248,0,0,0,15.6
+279249,0,0,0,15.6
+279250,0,0,0,15.6
+279251,0,0,0,15.6
+279252,0,0,0,15.6
+279253,334084.1917,363289.5107,658707.0137,15.6
+279254,0,0,0,15.6
+279255,0,0,0,15.6
+279256,0,0,0,15.6
+279257,0,0,0,15.6
+279258,0,0,0,15.6
+279259,0,0,0,15.6
+279260,0,0,0,15.6
+279261,0,0,0,15.6
+279262,0,0,0,15.6
+279263,0,0,0,15.6
+279264,0,0,0,15.6
+279265,0,0,0,15.6
+279266,0,0,0,15.6
+279267,0,0,0,15.6
+279268,0,0,0,15.6
+279269,0,0,0,15.6
+279270,0,0,0,15.6
+279271,0,0,0,15.6
+279272,0,0,0,15.6
+279273,0,0,0,15.6
+279274,0,0,0,15.6
+279275,0,0,0,15.6
+279276,0,0,0,15.6
+279277,0,0,0,15.6
+279278,0,0,0,15.6
+279279,0,0,0,15.6
+279280,0,0,0,15.6
+279281,0,0,0,15.6
+279282,0,0,0,15.6
+279283,0,0,0,15.6
+279284,0,0,0,15.6
+279285,0,0,0,15.6
+279286,0,0,0,15.6
+279287,335593.6073,361505.8924,658765.7158,15.6
+279288,0,0,0,15.6
+279289,0,0,0,15.6
+279290,0,0,0,15.6
+279291,0,0,0,15.6
+279292,0,0,0,15.6
+279293,0,0,0,15.6
+279294,0,0,0,15.6
+279295,0,0,0,15.6
+279296,0,0,0,15.6
+279297,0,0,0,15.6
+279298,0,0,0,15.6
+279299,0,0,0,15.6
+279300,0,0,0,15.6
+279301,0,0,0,15.6
+279302,0,0,0,15.6
+279303,0,0,0,15.6
+279304,0,0,0,15.6
+279305,0,0,0,15.6
+279306,0,0,0,15.6
+279307,0,0,0,15.6
+279308,0,0,0,15.6
+279309,0,0,0,15.6
+279310,0,0,0,15.6
+279311,0,0,0,15.6
+279312,0,0,0,15.6
+279313,0,0,0,15.6
+279314,0,0,0,15.6
+279315,0,0,0,15.6
+279316,0,0,0,15.6
+279317,0,0,0,15.6
+279318,0,0,0,15.6
+279319,0,0,0,15.6
+279320,0,0,0,15.6
+279321,334875.2892,363377.0474,658860.5448,15.6
+279322,0,0,0,15.6
+279323,0,0,0,15.6
+279324,0,0,0,15.6
+279325,0,0,0,15.6
+279326,0,0,0,15.6
+279327,0,0,0,15.6
+279328,0,0,0,15.6
+279329,0,0,0,15.6
+279330,0,0,0,15.6
+279331,0,0,0,15.6
+279332,0,0,0,15.6
+279333,0,0,0,15.6
+279334,0,0,0,15.6
+279335,0,0,0,15.6
+279336,0,0,0,15.6
+279337,0,0,0,15.6
+279338,0,0,0,15.6
+279339,0,0,0,15.6
+279340,0,0,0,15.6
+279341,0,0,0,15.6
+279342,0,0,0,15.6
+279343,0,0,0,15.6
+279344,0,0,0,15.6
+279345,0,0,0,15.6
+279346,0,0,0,15.6
+279347,0,0,0,15.6
+279348,0,0,0,15.6
+279349,0,0,0,15.6
+279350,0,0,0,15.6
+279351,0,0,0,15.6
+279352,0,0,0,15.6
+279353,0,0,0,15.6
+279354,0,0,0,15.6
+279355,336428.7897,361074.7122,658990.9656,15.6
+279356,0,0,0,15.6
+279357,0,0,0,15.6
+279358,0,0,0,15.6
+279359,0,0,0,15.6
+279360,0,0,0,15.6
+279361,0,0,0,15.6
+279362,0,0,0,15.6
+279363,0,0,0,15.6
+279364,0,0,0,15.6
+279365,0,0,0,15.6
+279366,0,0,0,15.6
+279367,0,0,0,15.6
+279368,0,0,0,15.6
+279369,0,0,0,15.6
+279370,0,0,0,15.6
+279371,0,0,0,15.6
+279372,0,0,0,15.6
+279373,0,0,0,15.6
+279374,0,0,0,15.6
+279375,0,0,0,15.6
+279376,0,0,0,15.6
+279377,0,0,0,15.6
+279378,0,0,0,15.6
+279379,0,0,0,15.6
+279380,0,0,0,15.6
+279381,0,0,0,15.6
+279382,0,0,0,15.6
+279383,0,0,0,15.6
+279384,0,0,0,15.6
+279385,0,0,0,15.6
+279386,0,0,0,15.6
+279387,0,0,0,15.6
+279388,0,0,0,15.6
+279389,0,363077.8837,658069.6643,15.6
+279390,335316.0865,0,0,15.6
+279391,0,0,0,15.6
+279392,0,0,0,15.6
+279393,0,0,0,15.6
+279394,0,0,0,15.6
+279395,0,0,0,15.6
+279396,0,0,0,15.6
+279397,0,0,0,15.6
+279398,0,0,0,15.6
+279399,0,0,0,15.6
+279400,0,0,0,15.6
+279401,0,0,0,15.6
+279402,0,0,0,15.6
+279403,0,0,0,15.6
+279404,0,0,0,15.6
+279405,0,0,0,15.6
+279406,0,0,0,15.6
+279407,0,0,0,15.6
+279408,0,0,0,15.6
+279409,0,0,0,15.6
+279410,0,0,0,15.6
+279411,0,0,0,15.6
+279412,0,0,0,15.6
+279413,0,0,0,15.6
+279414,0,0,0,15.6
+279415,0,0,0,15.6
+279416,0,0,0,15.6
+279417,0,0,0,15.6
+279418,0,0,0,15.6
+279419,0,0,0,15.6
+279420,0,0,0,15.6
+279421,0,0,0,15.6
+279422,0,0,0,15.6
+279423,0,360370.6439,658159.0837,15.6
+279424,0,0,0,15.6
+279425,336709.5789,0,0,15.6
+279426,0,0,0,15.6
+279427,0,0,0,15.6
+279428,0,0,0,15.6
+279429,0,0,0,15.6
+279430,0,0,0,15.6
+279431,0,0,0,15.6
+279432,0,0,0,15.6
+279433,0,0,0,15.6
+279434,0,0,0,15.6
+279435,0,0,0,15.6
+279436,0,0,0,15.6
+279437,0,0,0,15.6
+279438,0,0,0,15.6
+279439,0,0,0,15.6
+279440,0,0,0,15.6
+279441,0,0,0,15.6
+279442,0,0,0,15.6
+279443,0,0,0,15.6
+279444,0,0,0,15.6
+279445,0,0,0,15.6
+279446,0,0,0,15.6
+279447,0,0,0,15.6
+279448,0,0,0,15.6
+279449,0,0,0,15.6
+279450,0,0,0,15.6
+279451,0,0,0,15.6
+279452,0,0,0,15.6
+279453,0,0,0,15.6
+279454,0,0,0,15.6
+279455,0,0,0,15.6
+279456,0,0,0,15.6
+279457,0,363053.0932,658227.7151,15.6
+279458,0,0,0,15.6
+279459,0,0,0,15.6
+279460,335418.7768,0,0,15.6
+279461,0,0,0,15.6
+279462,0,0,0,15.6
+279463,0,0,0,15.6
+279464,0,0,0,15.6
+279465,0,0,0,15.6
+279466,0,0,0,15.6
+279467,0,0,0,15.6
+279468,0,0,0,15.6
+279469,0,0,0,15.6
+279470,0,0,0,15.6
+279471,0,0,0,15.6
+279472,0,0,0,15.6
+279473,0,0,0,15.6
+279474,0,0,0,15.6
+279475,0,0,0,15.6
+279476,0,0,0,15.6
+279477,0,0,0,15.6
+279478,0,0,0,15.6
+279479,0,0,0,15.6
+279480,0,0,0,15.6
+279481,0,0,0,15.6
+279482,0,0,0,15.6
+279483,0,0,0,15.6
+279484,0,0,0,15.6
+279485,0,0,0,15.6
+279486,0,0,0,15.6
+279487,0,0,0,15.6
+279488,0,0,0,15.6
+279489,0,0,0,15.6
+279490,0,0,0,15.6
+279491,0,360527.0964,658597.6986,15.6
+279492,0,0,0,15.6
+279493,0,0,0,15.6
+279494,0,0,0,15.6
+279495,336795.4459,0,0,15.6
+279496,0,0,0,15.6
+279497,0,0,0,15.6
+279498,0,0,0,15.6
+279499,0,0,0,15.6
+279500,0,0,0,15.6
+279501,0,0,0,15.6
+279502,0,0,0,15.6
+279503,0,0,0,15.6
+279504,0,0,0,15.6
+279505,0,0,0,15.6
+279506,0,0,0,15.6
+279507,0,0,0,15.6
+279508,0,0,0,15.6
+279509,0,0,0,15.6
+279510,0,0,0,15.6
+279511,0,0,0,15.6
+279512,0,0,0,15.6
+279513,0,0,0,15.6
+279514,0,0,0,15.6
+279515,0,0,0,15.6
+279516,0,0,0,15.6
+279517,0,0,0,15.6
+279518,0,0,0,15.6
+279519,0,0,0,15.6
+279520,0,0,0,15.6
+279521,0,0,0,15.6
+279522,0,0,0,15.6
+279523,0,0,0,15.6
+279524,0,0,0,15.6
+279525,0,369393.6618,658300.7878,15.6
+279526,0,0,0,15.6
+279527,0,0,0,15.6
+279528,0,0,0,15.6
+279529,0,0,0,15.6
+279530,335679.9963,0,0,15.6
+279531,0,0,0,15.6
+279532,0,0,0,15.6
+279533,0,0,0,15.6
+279534,0,0,0,15.6
+279535,0,0,0,15.6
+279536,0,0,0,15.6
+279537,0,0,0,15.6
+279538,0,0,0,15.6
+279539,0,0,0,15.6
+279540,0,0,0,15.6
+279541,0,0,0,15.6
+279542,0,0,0,15.6
+279543,0,0,0,15.6
+279544,0,0,0,15.6
+279545,0,0,0,15.6
+279546,0,0,0,15.6
+279547,0,0,0,15.6
+279548,0,0,0,15.6
+279549,0,0,0,15.6
+279550,0,0,0,15.6
+279551,0,0,0,15.6
+279552,0,0,0,15.6
+279553,0,0,0,15.6
+279554,0,0,0,15.6
+279555,0,0,0,15.6
+279556,0,0,0,15.6
+279557,0,0,0,15.6
+279558,0,0,658306.5538,15.6
+279559,0,369371.8572,0,15.6
+279560,0,0,0,15.6
+279561,0,0,0,15.6
+279562,0,0,0,15.6
+279563,0,0,0,15.6
+279564,336425.323,0,0,15.6
+279565,0,0,0,15.6
+279566,0,0,0,15.6
+279567,0,0,0,15.6
+279568,0,0,0,15.6
+279569,0,0,0,15.6
+279570,0,0,0,15.6
+279571,0,0,0,15.6
+279572,0,0,0,15.6
+279573,0,0,0,15.6
+279574,0,0,0,15.6
+279575,0,0,0,15.6
+279576,0,0,0,15.6
+279577,0,0,0,15.6
+279578,0,0,0,15.6
+279579,0,0,0,15.6
+279580,0,0,0,15.6
+279581,0,0,0,15.6
+279582,0,0,0,15.6
+279583,0,0,0,15.6
+279584,0,0,0,15.6
+279585,0,0,0,15.6
+279586,0,0,0,15.6
+279587,0,0,0,15.6
+279588,0,0,0,15.6
+279589,0,0,0,15.6
+279590,0,0,0,15.6
+279591,0,0,658032.6565,15.6
+279592,0,0,0,15.6
+279593,0,369371.96,0,15.6
+279594,0,0,0,15.6
+279595,0,0,0,15.6
+279596,0,0,0,15.6
+279597,0,0,0,15.6
+279598,336444.1998,0,0,15.6
+279599,0,0,0,15.6
+279600,0,0,0,17.8
+279601,0,0,0,17.8
+279602,0,0,0,17.8
+279603,0,0,0,17.8
+279604,0,0,0,17.8
+279605,0,0,0,17.8
+279606,0,0,0,17.8
+279607,0,0,0,17.8
+279608,0,0,0,17.8
+279609,0,0,0,17.8
+279610,0,0,0,17.8
+279611,0,0,0,17.8
+279612,0,0,0,17.8
+279613,0,0,0,17.8
+279614,0,0,0,17.8
+279615,0,0,0,17.8
+279616,0,0,0,17.8
+279617,0,0,0,17.8
+279618,0,0,0,17.8
+279619,0,0,0,17.8
+279620,0,0,0,17.8
+279621,0,0,0,17.8
+279622,0,0,0,17.8
+279623,0,0,0,17.8
+279624,0,0,657994.7307,17.8
+279625,0,0,0,17.8
+279626,0,0,0,17.8
+279627,0,369368.3207,0,17.8
+279628,0,0,0,17.8
+279629,0,0,0,17.8
+279630,0,0,0,17.8
+279631,0,0,0,17.8
+279632,336119.7162,0,0,17.8
+279633,0,0,0,17.8
+279634,0,0,0,17.8
+279635,0,0,0,17.8
+279636,0,0,0,17.8
+279637,0,0,0,17.8
+279638,0,0,0,17.8
+279639,0,0,0,17.8
+279640,0,0,0,17.8
+279641,0,0,0,17.8
+279642,0,0,0,17.8
+279643,0,448.1942265,0,17.8
+279644,0,334.9568463,0,17.8
+279645,0,391.9195445,0,17.8
+279646,0,420.1379629,0,17.8
+279647,0,476.0968182,0,17.8
+279648,0,503.8529773,0,17.8
+279649,0,531.4693045,0,17.8
+279650,0,558.9516827,0,17.8
+279651,0,586.3054185,0,17.8
+279652,0,640.6457767,0,17.8
+279653,0,640.6457901,0,17.8
+279654,0,0,0,17.8
+279655,0,0,0,17.8
+279656,0,0,0,17.8
+279657,0,0,657402.7392,17.8
+279658,0,0,0,17.8
+279659,0,0,0,17.8
+279660,0,0,0,20
+279661,2078.716926,523570.6893,0,20
+279662,0,19077.60774,0,20
+279663,0,31193.12521,0,20
+279664,0,74457.28191,0,20
+279665,0,54201.66815,0,20
+279666,323.7658424,56254.77095,0,20
+279667,13761.22434,57404.32557,0,20
+279668,13371.05592,57087.71288,0,20
+279669,10435.61078,57077.95016,0,20
+279670,20754.54698,57053.05431,0,20
+279671,19594.9006,57231.22903,0,20
+279672,19388.13066,56731.42397,0,20
+279673,19601.12992,57298.81525,0,20
+279674,19582.09507,56605.28469,0,20
+279675,19406.47776,56855.56337,0,20
+279676,19164.41101,56828.33815,0,20
+279677,19076.6933,56990.13387,0,20
+279678,18627.92398,56411.21593,0,20
+279679,18700.52788,56629.73522,0,20
+279680,18025.29697,56739.47036,0,20
+279681,18015.64058,56256.90555,0,20
+279682,17729.10183,56807.60674,0,20
+279683,17175.20401,56246.80535,0,20
+279684,17011.52688,56421.63292,0,20
+279685,16829.72804,56179.63568,0,20
+279686,16376.56731,56618.34525,0,20
+279687,16235.51605,55676.04791,0,20
+279688,16051.3063,56624.79219,0,20
+279689,15712.90011,55818.69974,0,20
+279690,15481.99429,56108.71649,0,20
+279691,15132.04834,55838.09261,0,20
+279692,14637.85006,56073.3788,0,20
+279693,14304.86247,55676.10626,0,20
+279694,13876.35506,55916.01479,0,20
+279695,13702.12806,55676.13252,0,20
+279696,13880.60084,55430.86058,0,20
+279697,13729.65912,55792.30448,0,20
+279698,13832.68597,55301.16797,0,20
+279699,13769.93988,55751.26862,0,20
+279700,13960.85338,55287.60374,0,20
+279701,13724.22005,55295.92496,0,20
+279702,13939.60008,55071.78897,0,20
+279703,13939.60001,55295.946,0,20
+279704,13962.69286,54936.82118,0,20
+279705,13962.69297,55412.11786,0,20
+279706,14208.62056,54584.46903,0,20
+279707,14034.0971,55277.08173,0,20
+279708,14215.87988,54565.02913,0,20
+279709,14065.42449,54926.13825,0,20
+279710,14346.55315,54565.04947,0,20
+279711,14181.58048,54604.58003,0,20
+279712,14294.2542,54527.18656,0,20
+279713,14283.33373,54573.32222,0,20
+279714,14312.20058,54108.46618,0,20
+279715,14423.01883,54540.80237,0,20
+279716,14312.20041,54167.89668,0,20
+279717,14433.93911,53922.29753,0,20
+279718,14333.10376,54181.4799,0,20
+279719,14561.24563,53921.97289,0,20
+279720,14370.92836,53979.58364,0,21
+279721,12415.07421,49172.24666,0,21
+279722,12195.80581,48707.1756,0,21
+279723,11973.94837,48428.38949,0,21
+279724,12136.09837,48011.35554,0,21
+279725,11951.12492,48201.669,0,21
+279726,11938.83023,47685.51057,0,21
+279727,11693.22557,47749.24681,0,21
+279728,11939.6781,47576.88033,0,21
+279729,11669.3956,47124.21022,0,21
+279730,11681.73122,47362.73644,0,21
+279731,11670.21297,47074.86802,0,21
+279732,11670.21288,46734.89958,0,21
+279733,11435.15907,47154.69953,0,21
+279734,11423.59168,46245.32497,0,21
+279735,11529.28047,46666.79341,0,21
+279736,11282.13195,46524.3516,0,21
+279737,11306.10593,46080.60369,0,21
+279738,11270.48945,46036.57035,0,21
+279739,11140.34311,45979.66467,0,21
+279740,11152.72016,45882.51784,0,21
+279741,11009.94285,45355.62019,0,21
+279742,11010.61859,45721.82114,0,21
+279743,10879.95523,45573.36905,0,21
+279744,10879.95525,44962.19438,0,21
+279745,10856.37501,45203.79612,0,21
+279746,10617.84649,44941.90623,0,21
+279747,10725.95451,45183.50804,0,21
+279748,10594.15408,44543.08932,0,21
+279749,10355.27164,44571.17274,0,21
+279750,10570.34613,44557.15131,0,21
+279751,10331.40468,44502.29204,0,21
+279752,10306.94356,43947.79439,0,21
+279753,10331.88721,44110.55545,0,21
+279754,10270.38976,43717.77862,0,21
+279755,10067.48254,43500.62764,0,21
+279756,10270.82132,43663.00958,0,21
+279757,10030.38078,42903.54686,0,21
+279758,10031.16778,43431.254,0,21
+279759,10006.13839,42671.13955,0,21
+279760,9765.453519,42820.14296,0,21
+279761,9993.9671,42302.05837,0,21
+279762,9728.389892,42458.81303,0,21
+279763,9848.933291,42130.85982,0,21
+279764,9703.508466,41803.15887,0,21
+279765,9607.581111,41754.12183,0,21
+279766,9666.179932,41754.13356,0,21
+279767,9461.546825,41131.09087,0,21
+279768,9532.643872,41397.56302,0,21
+279769,9168.231341,40917.06978,0,21
+279770,9239.543328,40882.05354,0,21
+279771,9130.363568,40456.70158,0,21
+279772,8885.90576,40667.61551,0,21
+279773,9066.907583,39896.93032,0,21
+279774,8860.391699,40667.92382,0,21
+279775,8822.177191,40041.23596,0,21
+279776,8796.56651,40185.97378,0,21
+279777,8686.426523,40006.01647,0,21
+279778,8537.784109,39398.27188,0,21
+279779,8744.81974,39769.56189,0,21
+279780,8277.315318,39327.73059,0,21
+279781,290.9672141,5906.588885,0,21
+279782,193.437326,4537.072743,0,21
+279783,176.8268827,3748.37892,0,21
+279784,143.2314319,3455.445088,0,21
+279785,109.0521138,3143.619694,0,21
+279786,100.3897872,2607.29612,0,21
+279787,74.13398244,2312.770922,0,21
+279788,38.15825164,1988.525177,0,21
+279789,38.15845521,1446.014903,0,21
+279790,0,1375.393961,0,21
+279791,0,1052.04832,0,21
+279792,0,1016.398364,0,21
+279793,0,961.6895008,0,21
+279794,0,935.2213849,0,21
+279795,0,856.9696537,0,21
+279796,0,843.6217501,0,21
+279797,0,770.4878169,0,21
+279798,0,750.7755073,0,21
+279799,0,686.7105972,0,21
+279800,0,656.3133351,0,21
+279801,0,601.7294169,0,21
+279802,0,553.376051,0,21
+279803,0,531.4702201,0,21
+279804,0,476.0974776,0,21
+279805,0,448.1948488,0,21
+279806,0,420.1384492,0,21
+279807,0,420.1384759,0,21
+279808,0,363.5298351,0,21
+279809,0,334.9570811,0,21
+279810,0,320.5983348,0,21
+279811,0,277.2096608,0,21
+279812,0,277.2095785,0,21
+279813,0,218.5427138,0,21
+279814,0,218.542716,0,21
+279815,0,203.7102577,0,21
+279816,0,158.7477968,0,21
+279817,0,158.7477836,0,21
+279818,0,128.3242564,0,21
+279819,0,97.45924468,0,21
+279820,0,66.03368069,0,21
+279821,0,66.03368054,0,21
+279822,0,0,0,21
+279823,0,0,0,21
+279824,0,0,0,21
+279825,0,0,0,21
+279826,0,0,0,21
+279827,0,0,0,21
+279828,0,0,0,21
+279829,0,0,0,21
+279830,0,0,0,21
+279831,0,0,0,21
+279832,0,0,0,21
+279833,0,0,0,21
+279834,0,0,0,21
+279835,0,0,0,21
+279836,0,0,0,21
+279837,0,0,0,21
+279838,0,0,0,21
+279839,0,0,0,21
+279840,0,0,0,21
+279841,0,0,0,21
+279842,0,0,0,21
+279843,0,0,0,21
+279844,0,0,0,21
+279845,0,0,0,21
+279846,0,0,0,21
+279847,0,0,0,21
+279848,0,0,0,21
+279849,0,0,0,21
+279850,0,0,0,21
+279851,0,0,0,21
+279852,0,0,0,21
+279853,0,0,0,21
+279854,0,0,0,21
+279855,0,0,0,21
+279856,0,0,0,21
+279857,0,0,0,21
+279858,0,0,0,21
+279859,0,0,0,21
+279860,0,0,0,21
+279861,0,0,0,21
+279862,0,0,0,21
+279863,0,0,0,21
+279864,0,0,0,21
+279865,0,0,0,21
+279866,0,0,0,21
+279867,0,0,0,21
+279868,0,0,0,21
+279869,0,0,0,21
+279870,0,0,0,21
+279871,0,0,0,21
+279872,0,0,0,21
+279873,0,0,0,21
+279874,0,0,0,21
+279875,0,0,0,21
+279876,0,0,0,21
+279877,0,0,0,21
+279878,0,0,0,21
+279879,0,0,0,21
+279880,0,0,0,21
+279881,0,0,0,21
+279882,0,0,0,21
+279883,0,0,0,21
+279884,0,0,0,21
+279885,0,0,0,21
+279886,0,0,0,21
+279887,0,0,0,21
+279888,0,0,0,21
+279889,0,0,0,21
+279890,0,0,0,21
+279891,0,0,0,21
+279892,0,0,0,21
+279893,0,0,0,21
+279894,0,0,0,21
+279895,0,0,0,21
+279896,0,0,0,21
+279897,0,0,0,21
+279898,0,0,0,21
+279899,0,0,0,21
+279900,0,0,0,21
+279901,0,0,0,21
+279902,0,0,0,21
+279903,0,0,0,21
+279904,0,0,0,21
+279905,0,0,0,21
+279906,0,0,0,21
+279907,0,0,0,21
+279908,0,0,0,21
+279909,0,0,0,21
+279910,0,0,0,21
+279911,0,0,0,21
+279912,0,0,0,21
+279913,0,0,0,21
+279914,0,0,0,21
+279915,0,0,0,21
+279916,0,0,0,21
+279917,0,0,0,21
+279918,0,0,0,21
+279919,0,0,0,21
+279920,0,0,0,21
+279921,0,0,0,21
+279922,0,0,0,21
+279923,0,0,0,21
+279924,0,0,0,21
+279925,0,0,0,21
+279926,0,0,0,21
+279927,0,0,0,21
+279928,0,0,0,21
+279929,0,0,0,21
+279930,0,0,0,21
+279931,0,0,0,21
+279932,0,0,0,21
+279933,0,0,0,21
+279934,0,0,0,21
+279935,0,0,0,21
+279936,0,0,0,21
+279937,0,0,0,21
+279938,0,0,0,21
+279939,0,0,0,21
+279940,0,0,0,21
+279941,0,0,0,21
+279942,0,0,0,21
+279943,0,0,0,21
+279944,0,0,0,21
+279945,0,0,0,21
+279946,0,0,0,21
+279947,0,0,0,21
+279948,0,0,0,21
+279949,0,0,0,21
+279950,0,0,0,21
+279951,0,0,0,21
+279952,0,0,0,21
+279953,0,0,0,21
+279954,0,0,0,21
+279955,0,0,0,21
+279956,0,0,0,21
+279957,0,0,0,21
+279958,0,0,0,21
+279959,0,0,0,21
+279960,0,0,0,21
+279961,0,0,0,21
+279962,0,0,0,21
+279963,0,0,0,21
+279964,0,0,0,21
+279965,0,0,0,21
+279966,0,0,0,21
+279967,0,0,0,21
+279968,0,0,0,21
+279969,0,0,0,21
+279970,0,0,0,21
+279971,0,0,0,21
+279972,0,0,0,21
+279973,0,0,0,21
+279974,0,0,0,21
+279975,0,0,0,21
+279976,0,0,0,21
+279977,0,0,0,21
+279978,0,0,0,21
+279979,0,0,0,21
+279980,0,0,0,21
+279981,0,0,0,21
+279982,0,0,0,21
+279983,0,0,0,21
+279984,0,0,0,21
+279985,0,0,0,21
+279986,0,0,0,21
+279987,0,0,0,21
+279988,0,0,0,21
+279989,0,0,0,21
+279990,0,0,0,21
+279991,0,0,0,21
+279992,0,0,0,21
+279993,0,0,0,21
+279994,0,0,0,21
+279995,0,0,0,21
+279996,0,0,0,21
+279997,0,0,0,21
+279998,0,0,0,21
+279999,0,0,0,21
+280000,0,0,0,21
+280001,0,0,0,21
+280002,0,0,0,21
+280003,0,0,0,21
+280004,0,0,0,21
+280005,0,0,0,21
+280006,0,0,0,21
+280007,0,0,0,21
+280008,0,0,0,21
+280009,0,0,0,21
+280010,0,0,0,21
+280011,0,0,0,21
+280012,0,0,0,21
+280013,0,0,0,21
+280014,0,0,0,21
+280015,0,0,0,21
+280016,0,0,0,21
+280017,0,0,0,21
+280018,0,0,0,21
+280019,0,0,0,21
+280020,0,0,0,21
+280021,0,0,0,21
+280022,0,0,0,21
+280023,0,0,0,21
+280024,0,0,0,21
+280025,0,0,0,21
+280026,0,0,0,21
+280027,0,0,0,21
+280028,0,0,0,21
+280029,0,0,0,21
+280030,0,0,0,21
+280031,0,0,0,21
+280032,0,0,0,21
+280033,0,0,0,21
+280034,0,0,0,21
+280035,0,0,0,21
+280036,0,0,0,21
+280037,0,0,0,21
+280038,0,0,0,21
+280039,0,0,0,21
+280040,0,0,0,21
+280041,0,0,0,21
+280042,0,0,0,21
+280043,0,0,0,21
+280044,0,0,0,21
+280045,0,0,0,21
+280046,0,0,0,21
+280047,0,0,0,21
+280048,0,0,0,21
+280049,0,0,0,21
+280050,0,0,0,21
+280051,0,0,0,21
+280052,0,0,0,21
+280053,0,0,0,21
+280054,0,0,0,21
+280055,0,0,0,21
+280056,0,0,0,21
+280057,0,0,0,21
+280058,0,0,0,21
+280059,0,0,0,21
+280060,0,0,0,21
+280061,0,0,0,21
+280062,0,0,0,21
+280063,0,0,0,21
+280064,0,0,0,21
+280065,0,0,0,21
+280066,0,0,0,21
+280067,0,0,0,21
+280068,0,0,0,21
+280069,0,0,0,21
+280070,0,0,0,21
+280071,0,0,0,21
+280072,0,0,0,21
+280073,0,0,0,21
+280074,0,0,0,21
+280075,0,0,0,21
+280076,0,0,0,21
+280077,0,0,0,21
+280078,0,0,0,21
+280079,0,0,0,21
+280080,0,0,0,21
+280081,0,0,0,21
+280082,0,0,0,21
+280083,0,0,0,21
+280084,0,0,0,21
+280085,0,0,0,21
+280086,0,0,0,21
+280087,0,0,0,21
+280088,0,0,0,21
+280089,0,0,0,21
+280090,0,0,0,21
+280091,0,0,0,21
+280092,0,0,0,21
+280093,0,0,0,21
+280094,0,0,0,21
+280095,0,0,0,21
+280096,0,0,0,21
+280097,0,0,0,21
+280098,0,0,0,21
+280099,0,0,0,21
+280100,0,0,0,21
+280101,0,0,0,21
+280102,0,0,0,21
+280103,0,0,0,21
+280104,0,0,0,21
+280105,0,0,0,21
+280106,0,0,0,21
+280107,0,0,0,21
+280108,0,0,0,21
+280109,0,0,0,21
+280110,0,0,0,21
+280111,0,0,0,21
+280112,0,0,0,21
+280113,0,0,0,21
+280114,0,0,0,21
+280115,0,0,0,21
+280116,0,0,0,21
+280117,0,0,0,21
+280118,0,0,0,21
+280119,0,0,0,21
+280120,0,0,0,21
+280121,0,0,0,21
+280122,0,0,0,21
+280123,0,0,0,21
+280124,0,0,0,21
+280125,0,0,0,21
+280126,0,0,0,21
+280127,0,0,0,21
+280128,0,0,0,21
+280129,0,0,0,21
+280130,0,0,0,21
+280131,0,0,0,21
+280132,0,0,0,21
+280133,0,0,0,21
+280134,0,0,0,21
+280135,0,0,0,21
+280136,0,0,0,21
+280137,0,0,0,21
+280138,0,0,0,21
+280139,0,0,0,21
+280140,0,0,0,21
+280141,0,0,0,21
+280142,0,0,0,21
+280143,0,0,0,21
+280144,0,0,0,21
+280145,0,0,0,21
+280146,0,0,0,21
+280147,0,0,0,21
+280148,0,0,0,21
+280149,0,0,0,21
+280150,0,0,0,21
+280151,0,0,0,21
+280152,0,0,0,21
+280153,0,0,0,21
+280154,0,0,0,21
+280155,0,0,0,21
+280156,0,0,0,21
+280157,0,0,0,21
+280158,0,0,0,21
+280159,0,0,0,21
+280160,0,0,0,21
+280161,0,0,0,21
+280162,0,0,0,21
+280163,0,0,0,21
+280164,0,0,0,21
+280165,0,0,0,21
+280166,0,0,0,21
+280167,0,0,0,21
+280168,0,0,0,21
+280169,0,0,0,21
+280170,0,0,0,21
+280171,0,0,0,21
+280172,0,0,0,21
+280173,0,0,0,21
+280174,0,0,0,21
+280175,0,0,0,21
+280176,0,0,0,21
+280177,0,0,0,21
+280178,0,0,0,21
+280179,0,0,0,21
+280180,0,0,0,21
+280181,0,0,0,21
+280182,0,0,0,21
+280183,0,0,0,21
+280184,0,0,0,21
+280185,0,0,0,21
+280186,0,0,0,21
+280187,0,0,0,21
+280188,0,0,0,21
+280189,0,0,0,21
+280190,0,0,0,21
+280191,0,0,0,21
+280192,0,0,0,21
+280193,0,0,0,21
+280194,0,0,0,21
+280195,0,0,0,21
+280196,0,0,0,21
+280197,0,0,0,21
+280198,0,0,0,21
+280199,0,0,0,21
+280200,0,0,0,21
+280201,0,0,0,21
+280202,0,0,0,21
+280203,0,0,0,21
+280204,0,0,0,21
+280205,0,0,0,21
+280206,0,0,0,21
+280207,0,0,0,21
+280208,0,0,0,21
+280209,0,0,0,21
+280210,0,0,0,21
+280211,0,0,0,21
+280212,0,0,0,21
+280213,0,0,0,21
+280214,0,0,0,21
+280215,0,0,0,21
+280216,0,0,0,21
+280217,0,0,0,21
+280218,0,0,0,21
+280219,0,0,0,21
+280220,0,0,0,21
+280221,0,0,0,21
+280222,0,0,0,21
+280223,0,0,0,21
+280224,0,0,0,21
+280225,0,0,0,21
+280226,0,0,0,21
+280227,0,0,0,21
+280228,0,0,0,21
+280229,0,0,0,21
+280230,0,0,0,21
+280231,0,0,0,21
+280232,0,0,0,21
+280233,0,0,0,21
+280234,0,0,0,21
+280235,0,0,0,21
+280236,0,0,0,21
+280237,0,0,0,21
+280238,0,0,0,21
+280239,0,0,0,21
+280240,0,0,0,21
+280241,0,0,0,21
+280242,0,0,0,21
+280243,0,0,0,21
+280244,0,0,0,21
+280245,0,0,0,21
+280246,0,0,0,21
+280247,0,0,0,21
+280248,0,0,0,21
+280249,0,0,0,21
+280250,0,0,0,21
+280251,0,0,0,21
+280252,0,0,0,21
+280253,0,0,0,21
+280254,0,0,0,21
+280255,0,0,0,21
+280256,0,0,0,21
+280257,0,0,0,21
+280258,0,0,0,21
+280259,0,0,0,21
+280260,0,0,0,21
+280261,0,0,0,21
+280262,0,0,0,21
+280263,0,0,0,21
+280264,0,0,0,21
+280265,0,0,0,21
+280266,0,0,0,21
+280267,0,0,0,21
+280268,0,0,0,21
+280269,0,0,0,21
+280270,0,0,0,21
+280271,0,0,0,21
+280272,0,0,0,21
+280273,0,0,0,21
+280274,0,0,0,21
+280275,0,0,0,21
+280276,0,0,0,21
+280277,0,0,0,21
+280278,0,0,0,21
+280279,0,0,0,21
+280280,0,0,0,21
+280281,0,0,0,21
+280282,0,0,0,21
+280283,0,0,0,21
+280284,0,0,0,21
+280285,0,0,0,21
+280286,0,0,0,21
+280287,0,0,0,21
+280288,0,0,0,21
+280289,0,0,0,21
+280290,0,0,0,21
+280291,0,0,0,21
+280292,0,0,0,21
+280293,0,0,0,21
+280294,0,0,0,21
+280295,0,0,0,21
+280296,0,0,0,21
+280297,0,0,0,21
+280298,0,0,0,21
+280299,0,0,0,21
+280300,0,0,0,21
+280301,0,0,0,21
+280302,0,0,0,21
+280303,0,0,0,21
+280304,0,0,0,21
+280305,0,0,0,21
+280306,0,0,0,21
+280307,0,0,0,21
+280308,0,0,0,21
+280309,0,0,0,21
+280310,0,0,0,21
+280311,0,0,0,21
+280312,0,0,0,21
+280313,0,0,0,21
+280314,0,0,0,21
+280315,0,0,0,21
+280316,0,0,0,21
+280317,0,0,0,21
+280318,0,0,0,21
+280319,0,0,0,21
+280320,0,0,0,21
+280321,0,0,0,21
+280322,0,0,0,21
+280323,0,0,0,21
+280324,0,0,0,21
+280325,0,0,0,21
+280326,0,0,0,21
+280327,0,0,0,21
+280328,0,0,0,21
+280329,0,0,0,21
+280330,0,0,0,21
+280331,0,0,0,21
+280332,0,0,0,21
+280333,0,0,0,21
+280334,0,0,0,21
+280335,0,0,0,21
+280336,0,0,0,21
+280337,0,0,0,21
+280338,0,0,0,21
+280339,0,0,0,21
+280340,0,0,0,21
+280341,0,0,0,21
+280342,0,0,0,21
+280343,0,0,0,21
+280344,0,0,0,21
+280345,0,0,0,21
+280346,0,0,0,21
+280347,0,0,0,21
+280348,0,0,0,21
+280349,0,0,0,21
+280350,0,0,0,21
+280351,0,0,0,21
+280352,0,0,0,21
+280353,0,0,0,21
+280354,0,0,0,21
+280355,0,0,0,21
+280356,0,0,0,21
+280357,0,0,0,21
+280358,0,0,0,21
+280359,0,0,0,21
+280360,0,0,0,21
+280361,0,0,0,21
+280362,0,0,0,21
+280363,0,0,0,21
+280364,0,0,0,21
+280365,0,0,0,21
+280366,0,0,0,21
+280367,0,0,0,21
+280368,0,0,0,21
+280369,0,0,0,21
+280370,0,0,0,21
+280371,0,0,0,21
+280372,0,0,0,21
+280373,0,0,0,21
+280374,0,0,0,21
+280375,0,0,0,21
+280376,0,0,0,21
+280377,0,0,0,21
+280378,0,0,0,21
+280379,0,0,0,21
+280380,0,0,0,21
+280381,0,0,0,21
+280382,0,0,0,21
+280383,0,0,0,21
+280384,0,0,0,21
+280385,0,0,0,21
+280386,0,0,0,21
+280387,0,0,0,21
+280388,0,0,0,21
+280389,0,0,0,21
+280390,0,0,0,21
+280391,0,0,0,21
+280392,0,0,0,21
+280393,0,0,0,21
+280394,0,0,0,21
+280395,0,0,0,21
+280396,0,0,0,21
+280397,0,0,0,21
+280398,0,0,0,21
+280399,0,0,0,21
+280400,0,0,0,21
+280401,0,0,0,21
+280402,0,0,0,21
+280403,0,0,0,21
+280404,0,0,0,21
+280405,0,0,0,21
+280406,0,0,0,21
+280407,0,0,0,21
+280408,0,0,0,21
+280409,0,0,0,21
+280410,0,0,0,21
+280411,0,0,0,21
+280412,0,0,0,21
+280413,0,0,0,21
+280414,0,0,0,21
+280415,0,0,0,21
+280416,0,0,0,21
+280417,0,0,0,21
+280418,0,0,0,21
+280419,0,0,0,21
+280420,0,0,0,21
+280421,0,0,0,21
+280422,0,0,0,21
+280423,0,0,0,21
+280424,0,0,0,21
+280425,0,0,0,21
+280426,0,0,0,21
+280427,0,0,0,21
+280428,0,0,0,21
+280429,0,0,0,21
+280430,0,0,0,21
+280431,0,0,0,21
+280432,0,0,0,21
+280433,0,0,0,21
+280434,0,0,0,21
+280435,0,0,0,21
+280436,0,0,0,21
+280437,0,0,0,21
+280438,0,0,0,21
+280439,0,0,0,21
+280440,0,0,0,21
+280441,0,0,0,21
+280442,0,0,0,21
+280443,0,0,0,21
+280444,0,0,0,21
+280445,0,0,0,21
+280446,0,0,0,21
+280447,0,0,0,21
+280448,0,0,0,21
+280449,0,0,0,21
+280450,0,0,0,21
+280451,0,0,0,21
+280452,0,0,0,21
+280453,0,0,0,21
+280454,0,0,0,21
+280455,0,0,0,21
+280456,0,0,0,21
+280457,0,0,0,21
+280458,0,0,0,21
+280459,0,0,0,21
+280460,0,0,0,21
+280461,0,0,0,21
+280462,0,0,0,21
+280463,0,0,0,21
+280464,0,0,0,21
+280465,0,0,0,21
+280466,0,0,0,21
+280467,0,0,0,21
+280468,0,0,0,21
+280469,0,0,0,21
+280470,0,0,0,21
+280471,0,0,0,21
+280472,0,0,0,21
+280473,0,0,0,21
+280474,0,0,0,21
+280475,0,0,0,21
+280476,0,0,0,21
+280477,0,0,0,21
+280478,0,0,0,21
+280479,0,0,0,21
+280480,0,0,0,21
+280481,0,0,0,21
+280482,0,0,0,21
+280483,0,0,0,21
+280484,0,0,0,21
+280485,0,0,0,21
+280486,0,0,0,21
+280487,0,0,0,21
+280488,0,0,0,21
+280489,0,0,0,21
+280490,0,0,0,21
+280491,0,0,0,21
+280492,0,0,0,21
+280493,0,0,0,21
+280494,0,0,0,21
+280495,0,0,0,21
+280496,0,0,0,21
+280497,0,0,0,21
+280498,0,0,0,21
+280499,0,0,0,21
+280500,0,0,0,21
+280501,0,0,0,21
+280502,0,0,0,21
+280503,0,0,0,21
+280504,0,0,0,21
+280505,0,0,0,21
+280506,0,0,0,21
+280507,0,0,0,21
+280508,0,0,0,21
+280509,0,0,0,21
+280510,0,0,0,21
+280511,0,0,0,21
+280512,0,0,0,21
+280513,0,0,0,21
+280514,0,0,0,21
+280515,0,0,0,21
+280516,0,0,0,21
+280517,0,0,0,21
+280518,0,0,0,21
+280519,0,0,0,21
+280520,0,0,0,21
+280521,0,0,0,21
+280522,0,0,0,21
+280523,0,0,0,21
+280524,0,0,0,21
+280525,0,0,0,21
+280526,0,0,0,21
+280527,0,0,0,21
+280528,0,0,0,21
+280529,0,0,0,21
+280530,0,0,0,21
+280531,0,0,0,21
+280532,0,0,0,21
+280533,0,0,0,21
+280534,0,0,0,21
+280535,0,0,0,21
+280536,0,0,0,21
+280537,0,0,0,21
+280538,0,0,0,21
+280539,0,0,0,21
+280540,0,0,0,21
+280541,0,0,0,21
+280542,0,0,0,21
+280543,0,0,0,21
+280544,0,0,0,21
+280545,0,0,0,21
+280546,0,0,0,21
+280547,0,0,0,21
+280548,0,0,0,21
+280549,0,0,0,21
+280550,0,0,0,21
+280551,0,0,0,21
+280552,0,0,0,21
+280553,0,0,0,21
+280554,0,0,0,21
+280555,0,0,0,21
+280556,0,0,0,21
+280557,0,0,0,21
+280558,0,0,0,21
+280559,0,0,0,21
+280560,0,0,0,21
+280561,0,0,0,21
+280562,0,0,0,21
+280563,0,0,0,21
+280564,0,0,0,21
+280565,0,0,0,21
+280566,0,0,0,21
+280567,0,0,0,21
+280568,0,0,0,21
+280569,0,0,0,21
+280570,0,0,0,21
+280571,0,0,0,21
+280572,0,0,0,21
+280573,0,0,0,21
+280574,0,0,0,21
+280575,0,0,0,21
+280576,0,0,0,21
+280577,0,0,0,21
+280578,0,0,0,21
+280579,0,0,0,21
+280580,0,0,0,21
+280581,0,0,0,21
+280582,0,0,0,21
+280583,0,0,0,21
+280584,0,0,0,21
+280585,0,0,0,21
+280586,0,0,0,21
+280587,0,0,0,21
+280588,0,0,0,21
+280589,0,0,0,21
+280590,0,0,0,21
+280591,0,0,0,21
+280592,0,0,0,21
+280593,0,0,0,21
+280594,0,0,0,21
+280595,0,0,0,21
+280596,0,0,0,21
+280597,0,0,0,21
+280598,0,0,0,21
+280599,0,0,0,21
+280600,0,0,0,21
+280601,0,0,0,21
+280602,0,0,0,21
+280603,0,0,0,21
+280604,0,0,0,21
+280605,0,0,0,21
+280606,0,0,0,21
+280607,0,535.041393,0,21
+280608,0,1036.585657,0,21
+280609,0,1036.585698,0,21
+280610,0,1036.585697,0,21
+280611,0,1361.71109,0,21
+280612,0,1522.152746,0,21
+280613,0,1522.152793,0,21
+280614,0,1839.42264,0,21
+280615,0,1839.422635,0,21
+280616,0,2152.463747,0,21
+280617,0,2152.463795,0,21
+280618,0,2307.569601,0,21
+280619,0,2633.799435,0,21
+280620,0,2963.440946,0,21
+280621,0,0,0,21
+280622,0,0,0,21
+280623,0,0,0,21
+280624,0,0,0,21
+280625,333409.1782,363260.8857,656565.2155,21
+280626,0,0,0,21
+280627,0,0,0,21
+280628,0,0,0,21
+280629,0,0,0,21
+280630,0,0,0,21
+280631,0,0,0,21
+280632,0,0,0,21
+280633,0,0,0,21
+280634,0,0,0,21
+280635,0,0,0,21
+280636,0,0,0,21
+280637,0,0,0,21
+280638,0,0,0,21
+280639,0,0,0,21
+280640,0,0,0,21
+280641,0,0,0,21
+280642,0,0,0,21
+280643,0,0,0,21
+280644,0,0,0,21
+280645,0,0,0,21
+280646,0,0,0,21
+280647,0,0,0,21
+280648,0,0,0,21
+280649,0,0,0,21
+280650,0,0,0,21
+280651,0,0,0,21
+280652,0,0,0,21
+280653,0,0,0,21
+280654,0,0,0,21
+280655,0,0,0,21
+280656,0,0,0,21
+280657,0,0,0,21
+280658,0,0,0,21
+280659,333174.9169,365084.0829,658065.5599,21
+280660,0,0,0,21
+280661,0,0,0,21
+280662,0,0,0,21
+280663,0,0,0,21
+280664,0,0,0,21
+280665,0,0,0,21
+280666,0,0,0,21
+280667,0,0,0,21
+280668,0,0,0,21
+280669,0,0,0,21
+280670,0,0,0,21
+280671,0,0,0,21
+280672,0,0,0,21
+280673,0,0,0,21
+280674,0,0,0,21
+280675,0,0,0,21
+280676,0,0,0,21
+280677,0,0,0,21
+280678,0,0,0,21
+280679,0,0,0,21
+280680,0,0,0,15.6
+280681,0,0,0,15.6
+280682,0,0,0,15.6
+280683,0,0,0,15.6
+280684,0,0,0,15.6
+280685,0,0,0,15.6
+280686,0,0,0,15.6
+280687,0,0,0,15.6
+280688,0,0,0,15.6
+280689,0,0,0,15.6
+280690,0,0,0,15.6
+280691,0,0,0,15.6
+280692,0,0,0,15.6
+280693,333662.5841,365538.3795,658799.9348,15.6
+280694,0,0,0,15.6
+280695,0,0,0,15.6
+280696,0,0,0,15.6
+280697,0,0,0,15.6
+280698,0,0,0,15.6
+280699,0,0,0,15.6
+280700,0,0,0,15.6
+280701,0,0,0,15.6
+280702,0,0,0,15.6
+280703,0,0,0,15.6
+280704,0,0,0,15.6
+280705,0,0,0,15.6
+280706,0,0,0,15.6
+280707,0,0,0,15.6
+280708,0,0,0,15.6
+280709,0,0,0,15.6
+280710,0,0,0,15.6
+280711,0,0,0,15.6
+280712,0,0,0,15.6
+280713,0,0,0,15.6
+280714,0,0,0,15.6
+280715,0,0,0,15.6
+280716,0,0,0,15.6
+280717,0,0,0,15.6
+280718,0,0,0,15.6
+280719,0,0,0,15.6
+280720,0,0,0,15.6
+280721,0,0,0,15.6
+280722,0,0,0,15.6
+280723,0,0,0,15.6
+280724,0,0,0,15.6
+280725,0,0,0,15.6
+280726,0,0,0,15.6
+280727,334226.5895,365438.181,659176.7783,15.6
+280728,0,0,0,15.6
+280729,0,0,0,15.6
+280730,0,0,0,15.6
+280731,0,0,0,15.6
+280732,0,0,0,15.6
+280733,0,0,0,15.6
+280734,0,0,0,15.6
+280735,0,0,0,15.6
+280736,0,0,0,15.6
+280737,0,0,0,15.6
+280738,0,0,0,15.6
+280739,0,0,0,15.6
+280740,0,0,0,15.6
+280741,0,0,0,15.6
+280742,0,0,0,15.6
+280743,0,0,0,15.6
+280744,0,0,0,15.6
+280745,0,0,0,15.6
+280746,0,0,0,15.6
+280747,0,0,0,15.6
+280748,0,0,0,15.6
+280749,0,0,0,15.6
+280750,0,0,0,15.6
+280751,0,0,0,15.6
+280752,0,0,0,15.6
+280753,0,0,0,15.6
+280754,0,0,0,15.6
+280755,0,0,0,15.6
+280756,0,0,0,15.6
+280757,0,0,0,15.6
+280758,0,0,0,15.6
+280759,0,0,0,15.6
+280760,0,0,0,15.6
+280761,335071.5073,365861.1436,659575.7483,15.6
+280762,0,0,0,15.6
+280763,0,0,0,15.6
+280764,0,0,0,15.6
+280765,0,0,0,15.6
+280766,0,0,0,15.6
+280767,0,0,0,15.6
+280768,0,0,0,15.6
+280769,0,0,0,15.6
+280770,0,0,0,15.6
+280771,0,0,0,15.6
+280772,0,0,0,15.6
+280773,0,0,0,15.6
+280774,0,0,0,15.6
+280775,0,0,0,15.6
+280776,0,0,0,15.6
+280777,0,0,0,15.6
+280778,0,0,0,15.6
+280779,0,0,0,15.6
+280780,0,0,0,15.6
+280781,0,0,0,15.6
+280782,0,0,0,15.6
+280783,0,0,0,15.6
+280784,0,0,0,15.6
+280785,0,0,0,15.6
+280786,0,0,0,15.6
+280787,0,0,0,15.6
+280788,0,0,0,15.6
+280789,0,0,0,15.6
+280790,0,0,0,15.6
+280791,0,0,0,15.6
+280792,0,0,0,15.6
+280793,0,0,0,15.6
+280794,0,0,0,15.6
+280795,334666.5077,366037.9944,660230.1322,15.6
+280796,0,0,0,15.6
+280797,0,0,0,15.6
+280798,0,0,0,15.6
+280799,0,0,0,15.6
+280800,0,0,0,15.6
+280801,0,0,0,15.6
+280802,0,0,0,15.6
+280803,0,0,0,15.6
+280804,0,0,0,15.6
+280805,0,0,0,15.6
+280806,0,0,0,15.6
+280807,0,0,0,15.6
+280808,0,0,0,15.6
+280809,0,0,0,15.6
+280810,0,0,0,15.6
+280811,0,0,0,15.6
+280812,0,0,0,15.6
+280813,0,0,0,15.6
+280814,0,0,0,15.6
+280815,0,0,0,15.6
+280816,0,0,0,15.6
+280817,0,0,0,15.6
+280818,0,0,0,15.6
+280819,0,0,0,15.6
+280820,0,0,0,15.6
+280821,0,0,0,15.6
+280822,0,0,0,15.6
+280823,0,0,0,15.6
+280824,0,0,0,15.6
+280825,0,0,0,15.6
+280826,0,0,0,15.6
+280827,0,0,0,15.6
+280828,0,0,0,15.6
+280829,336289.5632,365856.6872,660429.3557,15.6
+280830,0,0,0,15.6
+280831,0,0,0,15.6
+280832,0,0,0,15.6
+280833,0,0,0,15.6
+280834,0,0,0,15.6
+280835,0,0,0,15.6
+280836,0,0,0,15.6
+280837,0,0,0,15.6
+280838,0,0,0,15.6
+280839,0,0,0,15.6
+280840,0,0,0,15.6
+280841,0,0,0,15.6
+280842,0,0,0,15.6
+280843,0,0,0,15.6
+280844,0,0,0,15.6
+280845,0,0,0,15.6
+280846,0,0,0,15.6
+280847,0,0,0,15.6
+280848,0,0,0,15.6
+280849,0,0,0,15.6
+280850,0,0,0,15.6
+280851,0,0,0,15.6
+280852,0,0,0,15.6
+280853,0,0,0,15.6
+280854,0,0,0,15.6
+280855,0,0,0,15.6
+280856,0,0,0,15.6
+280857,0,0,0,15.6
+280858,0,0,0,15.6
+280859,0,0,0,15.6
+280860,0,0,0,15.6
+280861,0,0,0,15.6
+280862,0,0,0,15.6
+280863,335699.5438,366694.2075,660445.2072,15.6
+280864,0,0,0,15.6
+280865,0,0,0,15.6
+280866,0,0,0,15.6
+280867,0,0,0,15.6
+280868,0,0,0,15.6
+280869,0,0,0,15.6
+280870,0,0,0,15.6
+280871,0,0,0,15.6
+280872,0,0,0,15.6
+280873,0,0,0,15.6
+280874,0,0,0,15.6
+280875,0,0,0,15.6
+280876,0,0,0,15.6
+280877,0,0,0,15.6
+280878,0,0,0,15.6
+280879,0,0,0,15.6
+280880,0,0,0,15.6
+280881,0,0,0,15.6
+280882,0,0,0,15.6
+280883,0,0,0,15.6
+280884,0,0,0,15.6
+280885,0,0,0,15.6
+280886,0,0,0,15.6
+280887,0,0,0,15.6
+280888,0,0,0,15.6
+280889,0,0,0,15.6
+280890,0,0,0,15.6
+280891,0,0,0,15.6
+280892,0,0,0,15.6
+280893,0,0,0,15.6
+280894,0,0,0,15.6
+280895,0,0,0,15.6
+280896,0,0,0,15.6
+280897,0,365480.0208,660336.2755,15.6
+280898,336067.0327,0,0,15.6
+280899,0,0,0,15.6
+280900,0,0,0,15.6
+280901,0,0,0,15.6
+280902,0,0,0,15.6
+280903,0,0,0,15.6
+280904,0,0,0,15.6
+280905,0,0,0,15.6
+280906,0,0,0,15.6
+280907,0,0,0,15.6
+280908,0,0,0,15.6
+280909,0,0,0,15.6
+280910,0,0,0,15.6
+280911,0,0,0,15.6
+280912,0,0,0,15.6
+280913,0,0,0,15.6
+280914,0,0,0,15.6
+280915,0,0,0,15.6
+280916,0,0,0,15.6
+280917,0,0,0,15.6
+280918,0,0,0,15.6
+280919,0,0,0,15.6
+280920,0,0,0,15.6
+280921,0,0,0,15.6
+280922,0,0,0,15.6
+280923,0,0,0,15.6
+280924,0,0,0,15.6
+280925,0,0,0,15.6
+280926,0,0,0,15.6
+280927,0,0,0,15.6
+280928,0,0,0,15.6
+280929,0,0,0,15.6
+280930,0,0,0,15.6
+280931,0,366524.3008,659581.0525,15.6
+280932,0,0,0,15.6
+280933,337069.446,0,0,15.6
+280934,0,0,0,15.6
+280935,0,0,0,15.6
+280936,0,0,0,15.6
+280937,0,0,0,15.6
+280938,0,0,0,15.6
+280939,0,0,0,15.6
+280940,0,0,0,15.6
+280941,0,0,0,15.6
+280942,0,0,0,15.6
+280943,0,0,0,15.6
+280944,0,0,0,15.6
+280945,0,0,0,15.6
+280946,0,0,0,15.6
+280947,0,0,0,15.6
+280948,0,0,0,15.6
+280949,0,0,0,15.6
+280950,0,0,0,15.6
+280951,0,0,0,15.6
+280952,0,0,0,15.6
+280953,0,0,0,15.6
+280954,0,0,0,15.6
+280955,0,0,0,15.6
+280956,0,0,0,15.6
+280957,0,0,0,15.6
+280958,0,0,0,15.6
+280959,0,0,0,15.6
+280960,0,0,0,15.6
+280961,0,0,0,15.6
+280962,0,0,0,15.6
+280963,0,0,0,15.6
+280964,0,0,0,15.6
+280965,0,367162.2868,659745.5011,15.6
+280966,0,0,0,15.6
+280967,0,0,0,15.6
+280968,335757.9535,0,0,15.6
+280969,0,0,0,15.6
+280970,0,0,0,15.6
+280971,0,0,0,15.6
+280972,0,0,0,15.6
+280973,0,0,0,15.6
+280974,0,0,0,15.6
+280975,0,0,0,15.6
+280976,0,0,0,15.6
+280977,0,0,0,15.6
+280978,0,0,0,15.6
+280979,0,0,0,15.6
+280980,0,0,0,15.6
+280981,0,0,0,15.6
+280982,0,0,0,15.6
+280983,0,0,0,15.6
+280984,0,0,0,15.6
+280985,0,0,0,15.6
+280986,0,0,0,15.6
+280987,0,0,0,15.6
+280988,0,0,0,15.6
+280989,0,0,0,15.6
+280990,0,0,0,15.6
+280991,0,0,0,15.6
+280992,0,0,0,15.6
+280993,0,0,0,15.6
+280994,0,0,0,15.6
+280995,0,0,0,15.6
+280996,0,0,0,15.6
+280997,0,0,0,15.6
+280998,0,0,660120.9718,15.6
+280999,0,369417.3266,0,15.6
+281000,0,0,0,15.6
+281001,0,0,0,15.6
+281002,337138.1258,0,0,15.6
+281003,0,0,0,15.6
+281004,0,0,0,15.6
+281005,0,0,0,15.6
+281006,0,0,0,15.6
+281007,0,0,0,15.6
+281008,0,0,0,15.6
+281009,0,0,0,15.6
+281010,0,0,0,15.6
+281011,0,0,0,15.6
+281012,0,0,0,15.6
+281013,0,0,0,15.6
+281014,0,0,0,15.6
+281015,0,0,0,15.6
+281016,0,0,0,15.6
+281017,0,0,0,15.6
+281018,0,0,0,15.6
+281019,0,0,0,15.6
+281020,0,0,0,15.6
+281021,0,0,0,15.6
+281022,0,0,0,15.6
+281023,0,0,0,15.6
+281024,0,0,0,15.6
+281025,0,0,0,15.6
+281026,0,0,0,15.6
+281027,0,0,0,15.6
+281028,0,0,0,15.6
+281029,0,0,0,15.6
+281030,0,0,0,15.6
+281031,0,0,659857.3917,15.6
+281032,0,0,0,15.6
+281033,0,369417.7612,0,15.6
+281034,0,0,0,15.6
+281035,0,0,0,15.6
+281036,335973.34,0,0,15.6
+281037,0,0,0,15.6
+281038,0,0,0,15.6
+281039,0,0,0,15.6
+281040,0,0,0,17.8
+281041,0,0,0,17.8
+281042,0,0,0,17.8
+281043,0,0,0,17.8
+281044,0,0,0,17.8
+281045,0,0,0,17.8
+281046,0,0,0,17.8
+281047,0,0,0,17.8
+281048,0,0,0,17.8
+281049,0,0,0,17.8
+281050,0,0,0,17.8
+281051,0,0,0,17.8
+281052,0,0,0,17.8
+281053,0,0,0,17.8
+281054,0,0,0,17.8
+281055,0,0,0,17.8
+281056,0,0,0,17.8
+281057,0,0,0,17.8
+281058,0,0,0,17.8
+281059,0,0,0,17.8
+281060,0,0,0,17.8
+281061,0,0,0,17.8
+281062,0,0,0,17.8
+281063,0,0,0,17.8
+281064,0,0,660083.2972,17.8
+281065,0,0,0,17.8
+281066,0,0,0,17.8
+281067,0,369417.0025,0,17.8
+281068,0,0,0,17.8
+281069,0,0,0,17.8
+281070,337221.8816,0,0,17.8
+281071,0,0,0,17.8
+281072,0,0,0,17.8
+281073,0,0,0,17.8
+281074,0,0,0,17.8
+281075,0,0,0,17.8
+281076,0,0,0,17.8
+281077,0,0,0,17.8
+281078,0,0,0,17.8
+281079,0,0,0,17.8
+281080,0,0,0,17.8
+281081,0,0,0,17.8
+281082,0,0,0,17.8
+281083,0,0,0,17.8
+281084,0,0,0,17.8
+281085,0,0,0,17.8
+281086,0,0,0,17.8
+281087,0,0,0,17.8
+281088,0,0,0,17.8
+281089,0,0,0,17.8
+281090,0,0,0,17.8
+281091,0,0,0,17.8
+281092,0,0,0,17.8
+281093,0,0,0,17.8
+281094,0,0,0,17.8
+281095,0,0,0,17.8
+281096,0,0,0,17.8
+281097,0,0,0,17.8
+281098,0,0,660306.2486,17.8
+281099,0,0,0,17.8
+281100,0,0,0,20
+281101,337220.7333,405990.358,0,20
+281102,0,0,0,20
+281103,0,10008.34878,0,20
+281104,0,76199.9837,0,20
+281105,0,58998.7707,0,20
+281106,0,52795.62618,0,20
+281107,0,57961.49483,0,20
+281108,0,57994.82057,0,20
+281109,0,58812.38964,0,20
+281110,0,57939.0803,0,20
+281111,0,58634.8336,0,20
+281112,0,58454.81799,0,20
+281113,0,58444.91769,0,20
+281114,0,58523.71626,0,20
+281115,0,58661.85491,0,20
+281116,0,58394.28949,0,20
+281117,0,58462.94587,0,20
+281118,0,58606.17982,0,20
+281119,0,58495.511,0,20
+281120,0,58752.60901,0,20
+281121,0,58550.18711,0,20
+281122,0,58964.00514,0,20
+281123,0,58618.40623,0,20
+281124,0,58839.55316,0,20
+281125,0,59032.14822,0,20
+281126,0,58797.09948,0,20
+281127,0,59052.5129,0,20
+281128,0,58934.89052,0,20
+281129,0,59310.63667,0,20
+281130,0,58955.18953,0,20
+281131,0,59002.59243,0,20
+281132,0,59358.07998,0,20
+281133,0,59592.23337,0,20
+281134,0,59088.78328,0,20
+281135,0,59632.57707,0,20
+281136,0,59466.05863,0,20
+281137,0,59698.42121,0,20
+281138,0,59693.29503,0,20
+281139,0,59930.25156,0,20
+281140,0,59758.97563,0,20
+281141,0,60218.28533,0,20
+281142,0,59832.48847,0,20
+281143,0,60360.23544,0,20
+281144,56.53926056,60246.97475,0,20
+281145,19.63092271,60045.92398,0,20
+281146,38.31804438,60813.74216,0,20
+281147,38.31803319,60315.86155,0,20
+281148,47.47598892,60493.70983,0,20
+281149,38.31804493,60847.05697,0,20
+281150,56.53926085,60784.66841,0,20
+281151,38.3180441,60893.62784,0,20
+281152,56.53926106,60798.01247,0,20
+281153,47.47598845,60946.59276,0,20
+281154,56.5392611,61383.31689,0,20
+281155,38.31804433,60991.6438,0,20
+281156,56.53925104,61450.73508,0,20
+281157,56.5392617,61556.76158,0,20
+281158,38.31804488,61250.52382,0,20
+281159,56.53926126,61495.72103,0,20
+281160,38.31804423,61662.15904,0,21
+281161,56.53927238,61841.47269,0,21
+281162,47.47598952,61316.38191,0,21
+281163,10.01345864,61841.47026,0,21
+281164,0,61334.78497,0,21
+281165,0,61452.19648,0,21
+281166,0,61642.45894,0,21
+281167,0,61553.49195,0,21
+281168,0,61141.83803,0,21
+281169,9.970952617,61535.08406,0,21
+281170,65.25519527,61361.16384,0,21
+281171,38.158899,61347.97993,0,21
+281172,56.30807772,61380.80395,0,21
+281173,74.13125844,61225.18803,0,21
+281174,65.25519461,61211.53956,0,21
+281175,82.94363941,61366.32528,0,21
+281176,91.6981876,61272.42016,0,21
+281177,91.69819505,61032.88747,0,21
+281178,91.69819249,61181.08256,0,21
+281179,109.052117,61157.7379,0,21
+281180,109.0521084,61512.3017,0,21
+281181,126.2226559,61036.11347,0,21
+281182,117.6588106,63767.14511,0,21
+281183,126.2226491,62511.8891,0,21
+281184,143.2314898,63139.12474,0,21
+281185,143.2314849,63721.96866,0,21
+281186,143.2314906,63569.24735,0,21
+281187,143.23148,64017.26388,0,21
+281188,160.0952079,64323.14067,0,21
+281189,160.0952097,64665.32408,0,21
+281190,160.0952006,64604.04206,0,21
+281191,176.8269545,64845.42485,0,21
+281192,176.8269468,63774.78445,0,21
+281193,176.8269552,64076.12603,0,21
+281194,176.8269423,63134.66444,0,21
+281195,193.4374015,61855.37593,0,21
+281196,176.8269548,60945.88035,0,21
+281197,193.437392,60228.77246,0,21
+281198,201.6999692,59982.26701,0,21
+281199,193.4374037,60328.92326,0,21
+281200,209.9354036,59437.09498,0,21
+281201,193.4374029,59910.27263,0,21
+281202,209.9354185,59455.61571,0,21
+281203,209.9354066,59626.53916,0,21
+281204,209.935415,59228.48402,0,21
+281205,226.3283654,59418.51045,0,21
+281206,209.9354079,59047.82863,0,21
+281207,226.3284749,58560.16969,0,21
+281208,209.9353269,58807.33574,0,21
+281209,226.3284671,58417.23377,0,21
+281210,226.3284742,58071.01485,0,21
+281211,226.3283892,58194.74104,0,21
+281212,234.4876771,57829.75065,0,21
+281213,226.3284757,57790.2519,0,21
+281214,242.6228939,57784.35981,0,21
+281215,226.328469,57381.4252,0,21
+281216,242.6229844,57187.78468,0,21
+281217,226.3283913,57195.42812,0,21
+281218,242.6229773,57123.26445,0,21
+281219,242.6229855,56583.90195,0,21
+281220,242.6228957,56795.98852,0,21
+281221,0,47263.48679,0,21
+281222,0,46420.21371,0,21
+281223,0,46251.09617,0,21
+281224,0,45365.23992,0,21
+281225,0,45608.00239,0,21
+281226,0,44809.8111,0,21
+281227,0,44712.18263,0,21
+281228,0,44123.68852,0,21
+281229,0,43851.31584,0,21
+281230,0,43554.07667,0,21
+281231,0,43434.83534,0,21
+281232,0,42828.5335,0,21
+281233,0,42993.54505,0,21
+281234,0,42128.11661,0,21
+281235,0,42181.2292,0,21
+281236,0,41740.3052,0,21
+281237,0,41684.02565,0,21
+281238,0,41068.26438,0,21
+281239,0,41068.27131,0,21
+281240,0,40663.89691,0,21
+281241,0,40272.7976,0,21
+281242,0,40169.97451,0,21
+281243,0,39738.47939,0,21
+281244,0,39359.88053,0,21
+281245,0,39181.27447,0,21
+281246,0,39066.7662,0,21
+281247,0,38324.24466,0,21
+281248,0,38406.8171,0,21
+281249,0,37968.21787,0,21
+281250,0,37455.92992,0,21
+281251,0,37701.65727,0,21
+281252,0,36667.28219,0,21
+281253,0,37091.16214,0,21
+281254,0,36369.92477,0,21
+281255,0,36231.51722,0,21
+281256,0,35941.21539,0,21
+281257,0,35602.51453,0,21
+281258,0,35408.87362,0,21
+281259,0,35054.6927,0,21
+281260,0,34707.05575,0,21
+281261,0,34567.96831,0,21
+281262,0,34149.18377,0,21
+281263,0,33821.75512,0,21
+281264,0,33449.85091,0,21
+281265,0,33261.07633,0,21
+281266,0,32747.84299,0,21
+281267,0,32573.03249,0,21
+281268,0,32543.64587,0,21
+281269,0,32057.86027,0,21
+281270,0,31640.15751,0,21
+281271,0,31412.23594,0,21
+281272,0,30931.10461,0,21
+281273,0,30731.9097,0,21
+281274,0,30450.65253,0,21
+281275,0,30034.06123,0,21
+281276,0,29774.22825,0,21
+281277,0,29087.52859,0,21
+281278,0,29200.17777,0,21
+281279,0,28511.18047,0,21
+281280,0,28106.15047,0,21
+281281,0,28113.01104,0,21
+281282,0,27374.93373,0,21
+281283,0,27322.12384,0,21
+281284,0,26777.25083,0,21
+281285,0,26610.38834,0,21
+281286,0,26063.15113,0,21
+281287,0,25788.7521,0,21
+281288,0,25605.23807,0,21
+281289,0,24725.50369,0,21
+281290,0,24870.81967,0,21
+281291,0,24609.27675,0,21
+281292,0,23778.27943,0,21
+281293,0,23669.01381,0,21
+281294,0,23514.97762,0,21
+281295,0,22941.09005,0,21
+281296,0,22660.61253,0,21
+281297,0,22738.25947,0,21
+281298,0,22600.54332,0,21
+281299,0,22229.90417,0,21
+281300,0,21687.44989,0,21
+281301,0,21684.57572,0,21
+281302,0,21528.93329,0,21
+281303,0,20765.13351,0,21
+281304,0,20775.35759,0,21
+281305,0,20363.04001,0,21
+281306,0,19959.81702,0,21
+281307,0,19736.72962,0,21
+281308,0,19213.7984,0,21
+281309,0,19123.11266,0,21
+281310,0,18791.71085,0,21
+281311,0,18296.15945,0,21
+281312,0,18174.20742,0,21
+281313,0,17737.05463,0,21
+281314,0,17578.089,0,21
+281315,0,17239.89195,0,21
+281316,0,16803.42659,0,21
+281317,0,16622.70112,0,21
+281318,0,16192.07316,0,21
+281319,0,16192.51828,0,21
+281320,0,15697.66283,0,21
+281321,0,15441.36302,0,21
+281322,0,15032.20359,0,21
+281323,0,14685.55261,0,21
+281324,0,14556.35415,0,21
+281325,0,14142.03314,0,21
+281326,0,13641.61304,0,21
+281327,0,14033.88834,0,21
+281328,0,12902.75163,0,21
+281329,0,13389.48877,0,21
+281330,0,11759.60779,0,21
+281331,0,11714.76761,0,21
+281332,0,11211.90203,0,21
+281333,0,10579.15729,0,21
+281334,0,10536.99955,0,21
+281335,0,10124.8375,0,21
+281336,0,9631.950125,0,21
+281337,0,9188.583556,0,21
+281338,0,8951.479569,0,21
+281339,0,8503.945309,0,21
+281340,0,7993.859304,0,21
+281341,0,7399.220556,0,21
+281342,0,7124.170495,0,21
+281343,0,6417.103812,0,21
+281344,0,6289.81249,0,21
+281345,0,5796.014744,0,21
+281346,0,5365.042072,0,21
+281347,0,5445.598835,0,21
+281348,0,5123.062669,0,21
+281349,0,5234.258183,0,21
+281350,0,5033.374354,0,21
+281351,0,4976.033039,0,21
+281352,0,4833.71611,0,21
+281353,0,4758.914374,0,21
+281354,0,4555.106322,0,21
+281355,0,4541.879202,0,21
+281356,0,4463.003898,0,21
+281357,0,4305.453333,0,21
+281358,0,4208.323976,0,21
+281359,0,4064.548991,0,21
+281360,0,4013.712808,0,21
+281361,0,4030.536481,0,21
+281362,0,3869.153365,0,21
+281363,0,3852.274815,0,21
+281364,0,3707.105708,0,21
+281365,0,3707.105745,0,21
+281366,0,3690.171049,0,21
+281367,0,3527.376776,0,21
+281368,0,3397.908986,0,21
+281369,0,3510.325855,0,21
+281370,0,3380.916626,0,21
+281371,0,3199.609081,0,21
+281372,0,3363.868148,0,21
+281373,0,3034.572131,0,21
+281374,0,3034.572203,0,21
+281375,0,2885.955736,0,21
+281376,0,2868.718785,0,21
+281377,0,2851.416516,0,21
+281378,0,2551.765149,0,21
+281379,0,2684.639194,0,21
+281380,0,2534.395879,0,21
+281381,0,2365.827543,0,21
+281382,0,2365.827595,0,21
+281383,0,2178.659381,0,21
+281384,0,2196.243407,0,21
+281385,0,2025.572586,0,21
+281386,0,2007.912237,0,21
+281387,0,1853.732011,0,21
+281388,0,1835.9925,0,21
+281389,0,1662.799468,0,21
+281390,0,1523.939703,0,21
+281391,0,1635.90475,0,21
+281392,0,1330.066669,0,21
+281393,0,1312.069499,0,21
+281394,0,1152.266601,0,21
+281395,0,1134.175521,0,21
+281396,0,1115.985989,0,21
+281397,0,790.1980433,0,21
+281398,0,945.1201211,0,21
+281399,0,604.890332,0,21
+281400,0,744.2555076,0,21
+281401,0,586.4829184,0,21
+281402,0,586.486716,0,21
+281403,0,387.4524839,0,21
+281404,0,378.1129319,0,21
+281405,0,198.3947629,0,21
+281406,0,179.6127894,0,21
+281407,0,179.6127735,0,21
+281408,0,151.1593579,0,21
+281409,0,151.1592784,0,21
+281410,0,141.5925087,0,21
+281411,0,122.3213817,0,21
+281412,0,122.3213838,0,21
+281413,0,102.845964,0,21
+281414,0,83.13351063,0,21
+281415,0,102.8459694,0,21
+281416,0,63.13619976,0,21
+281417,0,63.13619825,0,21
+281418,0,42.77687951,0,21
+281419,0,42.77688315,0,21
+281420,0,21.90591325,0,21
+281421,0,21.90591187,0,21
+281422,0,0,0,21
+281423,0,0,0,21
+281424,0,0,0,21
+281425,0,0,0,21
+281426,0,0,0,21
+281427,0,0,0,21
+281428,0,0,0,21
+281429,0,0,0,21
+281430,0,0,0,21
+281431,0,0,0,21
+281432,0,0,0,21
+281433,0,0,0,21
+281434,0,0,0,21
+281435,0,0,0,21
+281436,0,0,0,21
+281437,0,0,0,21
+281438,0,0,0,21
+281439,0,0,0,21
+281440,0,0,0,21
+281441,0,0,0,21
+281442,0,0,0,21
+281443,0,0,0,21
+281444,0,0,0,21
+281445,0,0,0,21
+281446,0,0,0,21
+281447,0,0,0,21
+281448,0,0,0,21
+281449,0,0,0,21
+281450,0,0,0,21
+281451,0,0,0,21
+281452,0,0,0,21
+281453,0,0,0,21
+281454,0,0,0,21
+281455,0,0,0,21
+281456,0,0,0,21
+281457,0,0,0,21
+281458,0,0,0,21
+281459,0,0,0,21
+281460,0,0,0,21
+281461,0,0,0,21
+281462,0,0,0,21
+281463,0,0,0,21
+281464,0,0,0,21
+281465,0,0,0,21
+281466,0,0,0,21
+281467,0,0,0,21
+281468,0,0,0,21
+281469,0,0,0,21
+281470,0,0,0,21
+281471,0,0,0,21
+281472,0,0,0,21
+281473,0,0,0,21
+281474,0,0,0,21
+281475,0,0,0,21
+281476,0,0,0,21
+281477,0,0,0,21
+281478,0,0,0,21
+281479,0,0,0,21
+281480,0,0,0,21
+281481,0,0,0,21
+281482,0,0,0,21
+281483,0,0,0,21
+281484,0,0,0,21
+281485,0,0,0,21
+281486,0,0,0,21
+281487,0,0,0,21
+281488,0,0,0,21
+281489,0,0,0,21
+281490,0,0,0,21
+281491,0,0,0,21
+281492,0,0,0,21
+281493,0,0,0,21
+281494,0,0,0,21
+281495,0,0,0,21
+281496,0,0,0,21
+281497,0,0,0,21
+281498,0,0,0,21
+281499,0,0,0,21
+281500,0,0,0,21
+281501,0,0,0,21
+281502,0,0,0,21
+281503,0,0,0,21
+281504,0,0,0,21
+281505,0,0,0,21
+281506,0,0,0,21
+281507,0,0,0,21
+281508,0,0,0,21
+281509,0,0,0,21
+281510,0,0,0,21
+281511,0,0,0,21
+281512,0,0,0,21
+281513,0,0,0,21
+281514,0,0,0,21
+281515,0,0,0,21
+281516,0,0,0,21
+281517,0,0,0,21
+281518,0,0,0,21
+281519,0,0,0,21
+281520,0,0,0,21
+281521,0,0,0,21
+281522,0,0,0,21
+281523,0,0,0,21
+281524,0,0,0,21
+281525,0,0,0,21
+281526,0,0,0,21
+281527,0,0,0,21
+281528,0,0,0,21
+281529,0,0,0,21
+281530,0,0,0,21
+281531,0,0,0,21
+281532,0,0,0,21
+281533,0,0,0,21
+281534,0,0,0,21
+281535,0,0,0,21
+281536,0,0,0,21
+281537,0,0,0,21
+281538,0,0,0,21
+281539,0,0,0,21
+281540,0,0,0,21
+281541,0,0,0,21
+281542,0,0,0,21
+281543,0,0,0,21
+281544,0,0,0,21
+281545,0,0,0,21
+281546,0,0,0,21
+281547,0,0,0,21
+281548,0,0,0,21
+281549,0,0,0,21
+281550,0,0,0,21
+281551,0,0,0,21
+281552,0,0,0,21
+281553,0,0,0,21
+281554,0,0,0,21
+281555,0,0,0,21
+281556,0,0,0,21
+281557,0,0,0,21
+281558,0,0,0,21
+281559,0,0,0,21
+281560,0,0,0,21
+281561,0,0,0,21
+281562,0,0,0,21
+281563,0,0,0,21
+281564,0,0,0,21
+281565,0,0,0,21
+281566,0,0,0,21
+281567,0,0,0,21
+281568,0,0,0,21
+281569,0,0,0,21
+281570,0,0,0,21
+281571,0,0,0,21
+281572,0,0,0,21
+281573,0,0,0,21
+281574,0,0,0,21
+281575,0,0,0,21
+281576,0,0,0,21
+281577,0,0,0,21
+281578,0,0,0,21
+281579,0,0,0,21
+281580,0,0,0,21
+281581,0,0,0,21
+281582,0,0,0,21
+281583,0,0,0,21
+281584,0,0,0,21
+281585,0,0,0,21
+281586,0,0,0,21
+281587,0,0,0,21
+281588,0,179.7181027,0,21
+281589,0,1161.671764,0,21
+281590,0,681.9935976,0,21
+281591,0,1161.671774,0,21
+281592,0,1318.353302,0,21
+281593,0,1473.72426,0,21
+281594,0,1473.724267,0,21
+281595,0,1933.065022,0,21
+281596,0,1933.065035,0,21
+281597,0,2234.437663,0,21
+281598,0,2554.36734,0,21
+281599,0,2693.144887,0,21
+281600,0,2930.317581,0,21
+281601,0,3134.615141,0,21
+281602,0,3435.069585,0,21
+281603,0,3607.856195,0,21
+281604,0,3770.473707,0,21
+281605,0,4093.651741,0,21
+281606,0,4254.262381,0,21
+281607,0,4555.544164,0,21
+281608,0,4714.438207,0,21
+281609,0,5187.750103,0,21
+281610,0,5187.750213,0,21
+281611,0,5500.629933,0,21
+281612,0,5500.63006,0,21
+281613,0,5500.630188,0,21
+281614,0,5811.500183,0,21
+281615,0,5656.310811,0,21
+281616,0,5828.939119,0,21
+281617,0,5811.500627,0,21
+281618,0,5983.579662,0,21
+281619,0,5966.210396,0,21
+281620,0,6000.882236,0,21
+281621,0,6120.450272,0,21
+281622,0,6000.882566,0,21
+281623,0,6274.22986,0,21
+281624,0,6154.990016,0,21
+281625,0,6154.990194,0,21
+281626,0,6308.640449,0,21
+281627,0,6154.990506,0,21
+281628,0,6308.640959,0,21
+281629,0,6325.752918,0,21
+281630,0,6308.641605,0,21
+281631,0,6325.753297,0,21
+281632,0,6325.75357,0,21
+281633,0,6342.805007,0,21
+281634,0,6325.753897,0,21
+281635,0,6342.805147,0,21
+281636,0,6342.805398,0,21
+281637,0,6342.80572,0,21
+281638,0,6359.798366,0,21
+281639,0,6206.329011,0,21
+281640,0,6495.889976,0,21
+281641,0,6223.321862,0,21
+281642,0,6359.79917,0,21
+281643,0,6223.322282,0,21
+281644,0,6223.322494,0,21
+281645,0,6223.322232,0,21
+281646,0,6223.32292,0,21
+281647,0,6086.45278,0,21
+281648,0,6240.257802,0,21
+281649,0,5932.189739,0,21
+281650,0,6103.388236,0,21
+281651,0,5932.189825,0,21
+281652,0,5949.182701,0,21
+281653,0,5949.182901,0,21
+281654,0,5811.503042,0,21
+281655,0,5794.511124,0,21
+281656,0,5673.406845,0,21
+281657,0,5794.51127,0,21
+281658,0,5517.892116,0,21
+281659,0,5656.415018,0,21
+281660,0,5378.93435,0,21
+281661,0,5500.84137,0,21
+281662,0,5378.934889,0,21
+281663,0,5222.480634,0,21
+281664,0,5222.480978,0,21
+281665,0,5065.511077,0,21
+281666,0,5222.481119,0,21
+281667,0,4784.382992,0,21
+281668,0,5065.511523,0,21
+281669,0,4767.209616,0,21
+281670,0,4767.209898,0,21
+281671,0,4643.088991,0,21
+281672,0,4608.678825,0,21
+281673,0,4625.915966,0,21
+281674,0,4484.11726,0,21
+281675,0,4466.880501,0,21
+281676,0,4003.637095,0,21
+281677,0,3842.227323,0,21
+281678,0,3552.498427,0,21
+281679,0,3680.157574,0,21
+281680,0,3534.988459,0,21
+281681,0,3225.14205,0,21
+281682,0,3534.988603,0,21
+281683,0,3060.335257,0,21
+281684,0,3225.142274,0,21
+281685,0,3060.335364,0,21
+281686,0,2894.731523,0,21
+281687,0,2912.471214,0,21
+281688,0,2728.293167,0,21
+281689,0,2746.115202,0,21
+281690,0,2428.641791,0,21
+281691,0,2560.977793,0,21
+281692,0,2277.512149,0,21
+281693,0,2392.737067,0,21
+281694,0,2098.54313,0,21
+281695,0,1936.446213,0,21
+281696,0,2071.442042,0,21
+281697,0,1764.174786,0,21
+281698,0,1745.985095,0,21
+281699,0,1590.613973,0,21
+281700,0,1415.638568,0,21
+281701,0,1415.638641,0,21
+281702,0,1239.091303,0,21
+281703,0,1079.288468,0,21
+281704,0,1060.767414,0,21
+281705,0,808.0226706,0,21
+281706,0,716.333111,0,21
+281707,0,716.3331364,0,21
+281708,0,530.5370712,0,21
+281709,0,252.3284782,0,21
+281710,0,340.4016398,0,21
+281711,0,151.1592833,0,21
+281712,0,131.9807816,0,21
+281713,0,122.3213107,0,21
+281714,0,122.3213103,0,21
+281715,0,83.13345437,0,21
+281716,0,102.8458953,0,21
+281717,0,63.13614866,0,21
+281718,0,63.13615014,0,21
+281719,0,53.00847327,0,21
+281720,0,32.42041442,0,21
+281721,0,21.90589222,0,21
+281722,0,0,0,21
+281723,0,0,0,21
+281724,0,0,0,21
+281725,0,0,0,21
+281726,0,0,0,21
+281727,0,0,0,21
+281728,0,0,0,21
+281729,0,0,0,21
+281730,0,0,0,21
+281731,0,0,0,21
+281732,0,0,0,21
+281733,0,0,0,21
+281734,0,0,0,21
+281735,0,0,0,21
+281736,0,0,0,21
+281737,0,0,0,21
+281738,0,0,0,21
+281739,0,0,0,21
+281740,0,0,0,21
+281741,0,0,0,21
+281742,0,0,0,21
+281743,0,0,0,21
+281744,0,0,0,21
+281745,0,0,0,21
+281746,0,0,0,21
+281747,0,0,0,21
+281748,0,0,0,21
+281749,0,0,0,21
+281750,0,0,0,21
+281751,0,0,0,21
+281752,0,0,0,21
+281753,0,0,0,21
+281754,0,0,0,21
+281755,0,0,0,21
+281756,0,0,0,21
+281757,0,0,0,21
+281758,0,0,0,21
+281759,0,0,0,21
+281760,0,0,0,21
+281761,0,0,0,21
+281762,0,0,0,21
+281763,0,0,0,21
+281764,0,0,0,21
+281765,0,0,0,21
+281766,0,0,0,21
+281767,0,0,0,21
+281768,0,0,0,21
+281769,0,0,0,21
+281770,0,0,0,21
+281771,0,0,0,21
+281772,0,0,0,21
+281773,0,0,0,21
+281774,0,0,0,21
+281775,0,0,0,21
+281776,0,0,0,21
+281777,0,0,0,21
+281778,0,0,0,21
+281779,0,0,0,21
+281780,0,0,0,21
+281781,0,0,0,21
+281782,0,0,0,21
+281783,0,0,0,21
+281784,0,0,0,21
+281785,0,0,0,21
+281786,0,0,0,21
+281787,0,0,0,21
+281788,0,0,0,21
+281789,0,0,0,21
+281790,0,0,0,21
+281791,0,0,0,21
+281792,0,0,0,21
+281793,0,0,0,21
+281794,0,0,0,21
+281795,0,0,0,21
+281796,0,0,0,21
+281797,0,0,0,21
+281798,0,0,0,21
+281799,0,0,0,21
+281800,0,0,0,21
+281801,0,0,0,21
+281802,0,0,0,21
+281803,0,0,0,21
+281804,0,0,0,21
+281805,0,0,0,21
+281806,0,0,0,21
+281807,0,0,0,21
+281808,0,0,0,21
+281809,0,0,0,21
+281810,0,0,0,21
+281811,0,0,0,21
+281812,0,0,0,21
+281813,0,0,0,21
+281814,0,0,0,21
+281815,0,0,0,21
+281816,0,0,0,21
+281817,0,0,0,21
+281818,0,0,0,21
+281819,0,0,0,21
+281820,0,0,0,21
+281821,0,0,0,21
+281822,0,0,0,21
+281823,0,0,0,21
+281824,0,0,0,21
+281825,0,0,0,21
+281826,0,363209.8608,654827.2383,21
+281827,325791.2195,0,0,21
+281828,0,0,0,21
+281829,0,0,0,21
+281830,0,0,0,21
+281831,0,0,0,21
+281832,0,0,0,21
+281833,0,0,0,21
+281834,0,0,0,21
+281835,0,0,0,21
+281836,0,0,0,21
+281837,0,0,0,21
+281838,0,0,0,21
+281839,0,0,0,21
+281840,0,0,0,21
+281841,0,0,0,21
+281842,0,0,0,21
+281843,0,0,0,21
+281844,0,0,0,21
+281845,0,0,0,21
+281846,0,0,0,21
+281847,0,0,0,21
+281848,0,0,0,21
+281849,0,0,0,21
+281850,0,0,0,21
+281851,0,0,0,21
+281852,0,0,0,21
+281853,0,0,0,21
+281854,0,0,0,21
+281855,0,0,0,21
+281856,0,0,0,21
+281857,0,0,0,21
+281858,0,0,0,21
+281859,0,0,0,21
+281860,0,0,0,21
+281861,0,364561.051,656128.2973,21
+281862,0,0,0,21
+281863,327589.6074,0,0,21
+281864,0,0,0,21
+281865,0,0,0,21
+281866,0,0,0,21
+281867,0,0,0,21
+281868,0,0,0,21
+281869,0,0,0,21
+281870,0,0,0,21
+281871,0,0,0,21
+281872,0,0,0,21
+281873,0,0,0,21
+281874,0,0,0,21
+281875,0,0,0,21
+281876,0,0,0,21
+281877,0,0,0,21
+281878,0,0,0,21
+281879,0,0,0,21
+281880,0,0,0,21
+281881,0,0,0,21
+281882,0,0,0,21
+281883,0,0,0,21
+281884,0,0,0,21
+281885,0,0,0,21
+281886,0,0,0,21
+281887,0,0,0,21
+281888,0,0,0,21
+281889,0,0,0,21
+281890,0,0,0,21
+281891,0,0,0,21
+281892,0,0,0,21
+281893,0,0,0,21
+281894,0,0,0,21
+281895,0,0,0,21
+281896,0,365597.3886,656986.9853,21
+281897,0,0,0,21
+281898,0,0,0,21
+281899,329247.2604,0,0,21
+281900,0,0,0,21
+281901,0,0,0,21
+281902,0,0,0,21
+281903,0,0,0,21
+281904,0,0,0,21
+281905,0,0,0,21
+281906,0,0,0,21
+281907,0,0,0,21
+281908,0,0,0,21
+281909,0,0,0,21
+281910,0,0,0,21
+281911,0,0,0,21
+281912,0,0,0,21
+281913,0,0,0,21
+281914,0,0,0,21
+281915,0,0,0,21
+281916,0,0,0,21
+281917,0,0,0,21
+281918,0,0,0,21
+281919,0,0,0,21
+281920,0,0,0,21
+281921,0,0,0,21
+281922,0,0,0,21
+281923,0,0,0,21
+281924,0,0,0,21
+281925,0,0,0,21
+281926,0,0,0,21
+281927,0,0,0,21
+281928,0,0,0,21
+281929,0,0,0,21
+281930,0,0,0,21
+281931,0,366279.8344,657640.3066,21
+281932,0,0,0,21
+281933,0,0,0,21
+281934,0,0,0,21
+281935,330569.0597,0,0,21
+281936,0,0,0,21
+281937,0,0,0,21
+281938,0,0,0,21
+281939,0,0,0,21
+281940,0,0,0,21
+281941,0,0,0,21
+281942,0,0,0,21
+281943,0,0,0,21
+281944,0,0,0,21
+281945,0,0,0,21
+281946,0,0,0,21
+281947,0,0,0,21
+281948,0,0,0,21
+281949,0,0,0,21
+281950,0,0,0,21
+281951,0,0,0,21
+281952,0,0,0,21
+281953,0,0,0,21
+281954,0,0,0,21
+281955,0,0,0,21
+281956,0,0,0,21
+281957,0,0,0,21
+281958,0,0,0,21
+281959,0,0,0,21
+281960,0,0,0,21
+281961,0,0,0,21
+281962,0,0,0,21
+281963,0,0,0,21
+281964,0,0,0,21
+281965,0,0,0,21
+281966,0,366738.3613,658006.2372,21
+281967,0,0,0,21
+281968,0,0,0,21
+281969,0,0,0,21
+281970,0,0,0,21
+281971,331312.1184,0,0,21
+281972,0,0,0,21
+281973,0,0,0,21
+281974,0,0,0,21
+281975,0,0,0,21
+281976,0,0,0,21
+281977,0,0,0,21
+281978,0,0,0,21
+281979,0,0,0,21
+281980,0,0,0,21
+281981,0,0,0,21
+281982,0,0,0,21
+281983,0,0,0,21
+281984,0,0,0,21
+281985,0,0,0,21
+281986,0,0,0,21
+281987,0,0,0,21
+281988,0,0,0,21
+281989,0,0,0,21
+281990,0,0,0,21
+281991,0,0,0,21
+281992,0,0,0,21
+281993,0,0,0,21
+281994,0,0,0,21
+281995,0,0,0,21
+281996,0,0,0,21
+281997,0,0,0,21
+281998,0,0,0,21
+281999,0,0,0,21
+282000,0,0,0,21
+282001,0,367066.7402,658079.146,21
+282002,0,0,0,21
+282003,0,0,0,21
+282004,0,0,0,21
+282005,0,0,0,21
+282006,0,0,0,21
+282007,332058.7357,0,0,21
+282008,0,0,0,21
+282009,0,0,0,21
+282010,0,0,0,21
+282011,0,0,0,21
+282012,0,0,0,21
+282013,0,0,0,21
+282014,0,0,0,21
+282015,0,0,0,21
+282016,0,0,0,21
+282017,0,0,0,21
+282018,0,0,0,21
+282019,0,0,0,21
+282020,0,0,0,21
+282021,0,0,0,21
+282022,0,0,0,21
+282023,0,0,0,21
+282024,0,0,0,21
+282025,0,0,0,21
+282026,0,0,0,21
+282027,0,0,0,21
+282028,0,0,0,21
+282029,0,0,0,21
+282030,0,0,0,21
+282031,0,0,0,21
+282032,0,0,0,21
+282033,0,0,0,21
+282034,0,0,0,21
+282035,0,0,0,21
+282036,0,0,658140.5945,21
+282037,0,367268.1664,0,21
+282038,0,0,0,21
+282039,0,0,0,21
+282040,0,0,0,21
+282041,0,0,0,21
+282042,0,0,0,21
+282043,333061.8481,0,0,21
+282044,0,0,0,21
+282045,0,0,0,21
+282046,0,0,0,21
+282047,0,0,0,21
+282048,0,0,0,21
+282049,0,0,0,21
+282050,0,0,0,21
+282051,0,0,0,21
+282052,0,0,0,21
+282053,0,0,0,21
+282054,0,0,0,21
+282055,0,0,0,21
+282056,0,0,0,21
+282057,0,0,0,21
+282058,0,0,0,21
+282059,0,0,0,21
+282060,0,0,0,21
+282061,0,0,0,21
+282062,0,0,0,21
+282063,0,0,0,21
+282064,0,0,0,21
+282065,0,0,0,21
+282066,0,0,0,21
+282067,0,0,0,21
+282068,0,0,0,21
+282069,0,0,0,21
+282070,0,0,0,21
+282071,0,0,658202.5475,21
+282072,0,0,0,21
+282073,0,367474.9253,0,21
+282074,0,0,0,21
+282075,0,0,0,21
+282076,0,0,0,21
+282077,0,0,0,21
+282078,0,0,0,21
+282079,334217.5581,0,0,21
+282080,0,0,0,21
+282081,0,0,0,21
+282082,0,0,0,21
+282083,0,0,0,21
+282084,0,0,0,21
+282085,0,0,0,21
+282086,0,0,0,21
+282087,0,0,0,21
+282088,0,0,0,21
+282089,0,0,0,21
+282090,0,0,0,21
+282091,0,0,0,21
+282092,0,0,0,21
+282093,0,0,0,21
+282094,0,0,0,21
+282095,0,0,0,21
+282096,0,0,0,21
+282097,0,0,0,21
+282098,0,0,0,21
+282099,0,0,0,21
+282100,0,0,0,21
+282101,0,0,0,21
+282102,0,0,0,21
+282103,0,0,0,21
+282104,0,0,0,21
+282105,0,0,0,21
+282106,0,0,658214.3474,21
+282107,0,0,0,21
+282108,0,0,0,21
+282109,0,367639.649,0,21
+282110,0,0,0,21
+282111,0,0,0,21
+282112,0,0,0,21
+282113,0,0,0,21
+282114,0,0,0,21
+282115,334378.2497,0,0,21
+282116,0,0,0,21
+282117,0,0,0,21
+282118,0,0,0,21
+282119,0,0,0,21
+282120,0,0,0,15.6
+282121,0,0,0,15.6
+282122,0,0,0,15.6
+282123,0,0,0,15.6
+282124,0,0,0,15.6
+282125,0,0,0,15.6
+282126,0,0,0,15.6
+282127,0,0,0,15.6
+282128,0,0,0,15.6
+282129,0,0,0,15.6
+282130,0,0,0,15.6
+282131,0,0,0,15.6
+282132,0,0,0,15.6
+282133,0,0,0,15.6
+282134,0,0,0,15.6
+282135,0,0,0,15.6
+282136,0,0,0,15.6
+282137,0,0,0,15.6
+282138,0,0,0,15.6
+282139,0,0,0,15.6
+282140,0,0,0,15.6
+282141,0,0,658216.5788,15.6
+282142,0,0,0,15.6
+282143,0,0,0,15.6
+282144,0,0,0,15.6
+282145,0,367713.9026,0,15.6
+282146,0,0,0,15.6
+282147,0,0,0,15.6
+282148,0,0,0,15.6
+282149,0,0,0,15.6
+282150,0,0,0,15.6
+282151,334856.1216,0,0,15.6
+282152,0,0,0,15.6
+282153,0,0,0,15.6
+282154,0,0,0,15.6
+282155,0,0,0,15.6
+282156,0,0,0,15.6
+282157,0,0,0,15.6
+282158,0,0,0,15.6
+282159,0,0,0,15.6
+282160,0,0,0,15.6
+282161,0,0,0,15.6
+282162,0,0,0,15.6
+282163,0,0,0,15.6
+282164,0,0,0,15.6
+282165,0,0,0,15.6
+282166,0,0,0,15.6
+282167,0,0,0,15.6
+282168,0,0,0,15.6
+282169,0,0,0,15.6
+282170,0,0,0,15.6
+282171,0,0,0,15.6
+282172,0,0,0,15.6
+282173,0,0,0,15.6
+282174,0,0,0,15.6
+282175,0,0,0,15.6
+282176,0,0,658178.7252,15.6
+282177,0,0,0,15.6
+282178,0,0,0,15.6
+282179,0,0,0,15.6
+282180,0,0,0,15.6
+282181,0,367816.5031,0,15.6
+282182,0,0,0,15.6
+282183,0,0,0,15.6
+282184,0,0,0,15.6
+282185,0,0,0,15.6
+282186,0,0,0,15.6
+282187,336105.3057,0,0,15.6
+282188,0,0,0,15.6
+282189,0,0,0,15.6
+282190,0,0,0,15.6
+282191,0,0,0,15.6
+282192,0,0,0,15.6
+282193,0,0,0,15.6
+282194,0,0,0,15.6
+282195,0,0,0,15.6
+282196,0,0,0,15.6
+282197,0,0,0,15.6
+282198,0,0,0,15.6
+282199,0,0,0,15.6
+282200,0,0,0,15.6
+282201,0,0,0,15.6
+282202,0,0,0,15.6
+282203,0,0,0,15.6
+282204,0,0,0,15.6
+282205,0,0,0,15.6
+282206,0,0,0,15.6
+282207,0,0,0,15.6
+282208,0,0,0,15.6
+282209,0,0,0,15.6
+282210,0,0,0,15.6
+282211,0,0,657756.3155,15.6
+282212,0,0,0,15.6
+282213,0,0,0,15.6
+282214,0,0,0,15.6
+282215,0,0,0,15.6
+282216,0,0,0,15.6
+282217,0,367933.74,0,15.6
+282218,0,0,0,15.6
+282219,0,0,0,15.6
+282220,0,0,0,15.6
+282221,0,0,0,15.6
+282222,0,0,0,15.6
+282223,335404.2703,0,0,15.6
+282224,0,0,0,15.6
+282225,0,0,0,15.6
+282226,0,0,0,15.6
+282227,0,0,0,15.6
+282228,0,0,0,15.6
+282229,0,0,0,15.6
+282230,0,0,0,15.6
+282231,0,0,0,15.6
+282232,0,0,0,15.6
+282233,0,0,0,15.6
+282234,0,0,0,15.6
+282235,0,0,0,15.6
+282236,0,0,0,15.6
+282237,0,0,0,15.6
+282238,0,0,0,15.6
+282239,0,0,0,15.6
+282240,0,0,0,15.6
+282241,0,0,0,15.6
+282242,0,0,0,15.6
+282243,0,0,0,15.6
+282244,0,0,0,15.6
+282245,0,0,0,15.6
+282246,0,0,657764.794,15.6
+282247,0,0,0,15.6
+282248,0,0,0,15.6
+282249,0,0,0,15.6
+282250,0,0,0,15.6
+282251,0,0,0,15.6
+282252,0,0,0,15.6
+282253,0,368024.9931,0,15.6
+282254,0,0,0,15.6
+282255,0,0,0,15.6
+282256,0,0,0,15.6
+282257,0,0,0,15.6
+282258,0,0,0,15.6
+282259,336781.6451,0,0,15.6
+282260,0,0,0,15.6
+282261,0,0,0,15.6
+282262,0,0,0,15.6
+282263,0,0,0,15.6
+282264,0,0,0,15.6
+282265,0,0,0,15.6
+282266,0,0,0,15.6
+282267,0,0,0,15.6
+282268,0,0,0,15.6
+282269,0,0,0,15.6
+282270,0,0,0,15.6
+282271,0,0,0,15.6
+282272,0,0,0,15.6
+282273,0,0,0,15.6
+282274,0,0,0,15.6
+282275,0,0,0,15.6
+282276,0,0,0,15.6
+282277,0,0,0,15.6
+282278,0,0,0,15.6
+282279,0,0,0,15.6
+282280,0,0,0,15.6
+282281,0,0,657321.4183,15.6
+282282,0,0,0,15.6
+282283,0,0,0,15.6
+282284,0,0,0,15.6
+282285,0,0,0,15.6
+282286,0,0,0,15.6
+282287,0,0,0,15.6
+282288,0,0,0,15.6
+282289,0,368036.9952,0,15.6
+282290,0,0,0,15.6
+282291,0,0,0,15.6
+282292,0,0,0,15.6
+282293,0,0,0,15.6
+282294,0,0,0,15.6
+282295,335904.3917,0,0,15.6
+282296,0,0,0,15.6
+282297,0,0,0,15.6
+282298,0,0,0,15.6
+282299,0,0,0,15.6
+282300,0,0,0,15.6
+282301,0,0,0,15.6
+282302,0,0,0,15.6
+282303,0,0,0,15.6
+282304,0,0,0,15.6
+282305,0,0,0,15.6
+282306,0,0,0,15.6
+282307,0,0,0,15.6
+282308,0,0,0,15.6
+282309,0,0,0,15.6
+282310,0,0,0,15.6
+282311,0,0,0,15.6
+282312,0,0,0,15.6
+282313,0,0,0,15.6
+282314,0,0,0,15.6
+282315,0,0,0,15.6
+282316,0,0,657650.665,15.6
+282317,0,0,0,15.6
+282318,0,0,0,15.6
+282319,0,0,0,15.6
+282320,0,0,0,15.6
+282321,0,0,0,15.6
+282322,0,0,0,15.6
+282323,0,0,0,15.6
+282324,0,0,0,15.6
+282325,0,368045.4149,0,15.6
+282326,0,0,0,15.6
+282327,0,0,0,15.6
+282328,0,0,0,15.6
+282329,0,0,0,15.6
+282330,0,0,0,15.6
+282331,337157.381,0,0,15.6
+282332,0,0,0,15.6
+282333,0,0,0,15.6
+282334,0,0,0,15.6
+282335,0,0,0,15.6
+282336,0,0,0,15.6
+282337,0,0,0,15.6
+282338,0,0,0,15.6
+282339,0,0,0,15.6
+282340,0,0,0,15.6
+282341,0,0,0,15.6
+282342,0,0,0,15.6
+282343,0,0,0,15.6
+282344,0,0,0,15.6
+282345,0,0,0,15.6
+282346,0,0,0,15.6
+282347,0,0,0,15.6
+282348,0,0,0,15.6
+282349,0,0,0,15.6
+282350,0,0,658249.3732,15.6
+282351,0,0,0,15.6
+282352,0,0,0,15.6
+282353,0,0,0,15.6
+282354,0,0,0,15.6
+282355,0,0,0,15.6
+282356,0,0,0,15.6
+282357,0,0,0,15.6
+282358,0,0,0,15.6
+282359,0,0,0,15.6
+282360,0,0,0,15.6
+282361,0,368121.0945,0,15.6
+282362,0,0,0,15.6
+282363,0,0,0,15.6
+282364,0,0,0,15.6
+282365,0,0,0,15.6
+282366,0,0,0,15.6
+282367,0,0,0,15.6
+282368,336208.1368,0,0,15.6
+282369,0,0,0,15.6
+282370,0,0,0,15.6
+282371,0,0,0,15.6
+282372,0,0,0,15.6
+282373,0,0,0,15.6
+282374,0,0,0,15.6
+282375,0,0,0,15.6
+282376,0,0,0,15.6
+282377,0,0,0,15.6
+282378,0,0,0,15.6
+282379,0,0,0,15.6
+282380,0,0,0,15.6
+282381,0,0,0,15.6
+282382,0,0,0,15.6
+282383,0,0,0,15.6
+282384,0,0,657953.3828,15.6
+282385,0,0,0,15.6
+282386,0,0,0,15.6
+282387,0,0,0,15.6
+282388,0,0,0,15.6
+282389,0,0,0,15.6
+282390,0,0,0,15.6
+282391,0,0,0,15.6
+282392,0,0,0,15.6
+282393,0,0,0,15.6
+282394,0,0,0,15.6
+282395,0,0,0,15.6
+282396,0,0,0,15.6
+282397,0,368135.5422,0,15.6
+282398,0,0,0,15.6
+282399,0,0,0,15.6
+282400,0,0,0,15.6
+282401,0,0,0,15.6
+282402,0,0,0,15.6
+282403,0,0,0,15.6
+282404,0,0,0,15.6
+282405,337401.0516,0,0,15.6
+282406,0,0,0,15.6
+282407,0,0,0,15.6
+282408,0,0,0,15.6
+282409,0,0,0,15.6
+282410,0,0,0,15.6
+282411,0,0,0,15.6
+282412,0,0,0,15.6
+282413,0,0,0,15.6
+282414,0,0,0,15.6
+282415,0,0,0,15.6
+282416,0,0,0,15.6
+282417,0,0,0,15.6
+282418,0,0,657840.8273,15.6
+282419,0,0,0,15.6
+282420,0,0,0,15.6
+282421,0,0,0,15.6
+282422,0,0,0,15.6
+282423,0,0,0,15.6
+282424,0,0,0,15.6
+282425,0,0,0,15.6
+282426,0,0,0,15.6
+282427,0,0,0,15.6
+282428,0,0,0,15.6
+282429,0,0,0,15.6
+282430,0,0,0,15.6
+282431,0,0,0,15.6
+282432,0,0,0,15.6
+282433,0,369425.466,0,15.6
+282434,0,0,0,15.6
+282435,0,0,0,15.6
+282436,0,0,0,15.6
+282437,0,0,0,15.6
+282438,0,0,0,15.6
+282439,0,0,0,15.6
+282440,338005.9499,0,0,15.6
+282441,0,0,0,15.6
+282442,0,0,0,15.6
+282443,0,0,0,15.6
+282444,0,0,0,15.6
+282445,0,0,0,15.6
+282446,0,0,0,15.6
+282447,0,0,0,15.6
+282448,0,0,0,15.6
+282449,0,0,0,15.6
+282450,0,0,0,15.6
+282451,0,0,0,15.6
+282452,0,0,658234.6312,15.6
+282453,0,0,0,15.6
+282454,0,0,0,15.6
+282455,0,0,0,15.6
+282456,0,0,0,15.6
+282457,0,0,0,15.6
+282458,0,0,0,15.6
+282459,0,0,0,15.6
+282460,0,0,0,15.6
+282461,0,0,0,15.6
+282462,0,0,0,15.6
+282463,0,0,0,15.6
+282464,0,0,0,15.6
+282465,0,0,0,15.6
+282466,0,0,0,15.6
+282467,0,369425.5217,0,15.6
+282468,0,0,0,15.6
+282469,0,0,0,15.6
+282470,0,0,0,15.6
+282471,0,0,0,15.6
+282472,0,0,0,15.6
+282473,0,0,0,15.6
+282474,0,0,0,15.6
+282475,338356.9891,0,0,15.6
+282476,0,0,0,15.6
+282477,0,0,0,15.6
+282478,0,0,0,15.6
+282479,0,0,0,15.6
+282480,0,0,0,17.8
+282481,0,0,0,17.8
+282482,0,0,0,17.8
+282483,0,0,0,17.8
+282484,0,0,0,17.8
+282485,0,0,0,17.8
+282486,0,0,658307.7162,17.8
+282487,0,0,0,17.8
+282488,0,0,0,17.8
+282489,0,0,0,17.8
+282490,0,0,0,17.8
+282491,0,0,0,17.8
+282492,0,0,0,17.8
+282493,0,0,0,17.8
+282494,0,0,0,17.8
+282495,0,0,0,17.8
+282496,0,0,0,17.8
+282497,0,0,0,17.8
+282498,0,0,0,17.8
+282499,0,0,0,17.8
+282500,0,0,0,17.8
+282501,0,369425.7825,0,17.8
+282502,0,0,0,17.8
+282503,0,0,0,17.8
+282504,0,0,0,17.8
+282505,0,0,0,17.8
+282506,0,0,0,17.8
+282507,0,0,0,17.8
+282508,0,0,0,17.8
+282509,0,0,0,17.8
+282510,338561.7518,0,0,17.8
+282511,0,0,0,17.8
+282512,0,0,0,17.8
+282513,0,0,0,17.8
+282514,0,0,0,17.8
+282515,0,0,0,17.8
+282516,0,0,0,17.8
+282517,0,0,0,17.8
+282518,0,0,0,17.8
+282519,0,0,0,17.8
+282520,0,0,658419.0143,17.8
+282521,0,0,0,17.8
+282522,0,0,0,17.8
+282523,0,0,0,17.8
+282524,0,0,0,17.8
+282525,0,0,0,17.8
+282526,0,0,0,17.8
+282527,0,0,0,17.8
+282528,0,0,0,17.8
+282529,0,0,0,17.8
+282530,0,0,0,17.8
+282531,0,0,0,17.8
+282532,0,0,0,17.8
+282533,0,0,0,17.8
+282534,0,0,0,17.8
+282535,0,369425.8268,0,17.8
+282536,0,0,0,17.8
+282537,0,0,0,17.8
+282538,0,0,0,17.8
+282539,0,0,0,17.8
+282540,0,0,0,20
+282541,0,0,0,20
+282542,0,0,0,20
+282543,0,0,0,20
+282544,0,0,0,20
+282545,338714.1622,0,0,20
+282546,0,0,0,20
+282547,0,0,0,20
+282548,0,0,0,20
+282549,0,0,0,20
+282550,0,0,0,20
+282551,0,0,0,20
+282552,0,0,0,20
+282553,0,0,0,20
+282554,0,0,0,20
+282555,0,0,658651.7535,20
+282556,0,0,0,20
+282557,0,0,0,20
+282558,0,0,0,20
+282559,0,0,0,20
+282560,0,0,0,20
+282561,0,0,0,20
+282562,0,0,0,20
+282563,0,0,0,20
+282564,0,0,0,20
+282565,0,0,0,20
+282566,0,0,0,20
+282567,0,0,0,20
+282568,0,0,0,20
+282569,0,0,0,20
+282570,0,0,0,20
+282571,0,367303.6277,0,20
+282572,0,0,0,20
+282573,0,0,0,20
+282574,0,0,0,20
+282575,0,0,0,20
+282576,0,0,0,20
+282577,0,0,0,20
+282578,0,0,0,20
+282579,0,0,0,20
+282580,0,0,0,20
+282581,0,0,0,20
+282582,335398.1335,0,0,20
+282583,0,0,0,20
+282584,0,0,0,20
+282585,0,0,0,20
+282586,0,0,0,20
+282587,0,0,0,20
+282588,0,0,0,20
+282589,0,0,0,20
+282590,0,0,657877.5655,20
+282591,0,0,0,20
+282592,0,0,0,20
+282593,0,0,0,20
+282594,0,0,0,20
+282595,0,0,0,20
+282596,0,0,0,20
+282597,0,0,0,20
+282598,0,0,0,20
+282599,0,0,0,20
+282600,0,0,0,21
+282601,0,0,0,21
+282602,0,0,0,21
+282603,0,0,0,21
+282604,0,0,0,21
+282605,0,0,0,21
+282606,0,0,0,21
+282607,0,365326.9745,0,21
+282608,0,0,0,21
+282609,0,0,0,21
+282610,0,0,0,21
+282611,0,0,0,21
+282612,0,0,0,21
+282613,0,0,0,21
+282614,0,0,0,21
+282615,0,0,0,21
+282616,0,0,0,21
+282617,0,0,0,21
+282618,337484.9533,0,0,21
+282619,0,0,0,21
+282620,0,0,0,21
+282621,0,0,0,21
+282622,0,0,0,21
+282623,0,0,0,21
+282624,0,0,658300.1709,21
+282625,0,0,0,21
+282626,0,0,0,21
+282627,0,0,0,21
+282628,0,0,0,21
+282629,0,0,0,21
+282630,0,0,0,21
+282631,0,0,0,21
+282632,0,0,0,21
+282633,0,0,0,21
+282634,0,0,0,21
+282635,0,0,0,21
+282636,0,0,0,21
+282637,0,0,0,21
+282638,0,0,0,21
+282639,0,0,0,21
+282640,0,0,0,21
+282641,0,0,0,21
+282642,0,0,0,21
+282643,0,365690.3164,0,21
+282644,0,0,0,21
+282645,0,0,0,21
+282646,0,0,0,21
+282647,0,0,0,21
+282648,0,0,0,21
+282649,0,0,0,21
+282650,0,0,0,21
+282651,0,0,0,21
+282652,0,0,0,21
+282653,337076.5783,0,0,21
+282654,0,0,0,21
+282655,0,0,0,21
+282656,0,0,0,21
+282657,0,0,0,21
+282658,0,0,658163.268,21
+282659,0,0,0,21
+282660,0,0,0,21
+282661,0,0,0,21
+282662,0,0,0,21
+282663,0,0,0,21
+282664,0,0,0,21
+282665,0,0,0,21
+282666,0,0,0,21
+282667,0,0,0,21
+282668,0,0,0,21
+282669,0,0,0,21
+282670,0,0,0,21
+282671,0,0,0,21
+282672,0,0,0,21
+282673,0,0,0,21
+282674,0,0,0,21
+282675,0,0,0,21
+282676,0,0,0,21
+282677,0,0,0,21
+282678,0,0,0,21
+282679,0,365881.2839,0,21
+282680,0,0,0,21
+282681,0,0,0,21
+282682,0,0,0,21
+282683,0,0,0,21
+282684,0,0,0,21
+282685,0,0,0,21
+282686,0,0,0,21
+282687,0,0,0,21
+282688,337085.6178,0,0,21
+282689,0,0,0,21
+282690,0,0,0,21
+282691,0,0,0,21
+282692,0,0,658146.9953,21
+282693,0,0,0,21
+282694,0,0,0,21
+282695,0,0,0,21
+282696,0,0,0,21
+282697,0,0,0,21
+282698,0,0,0,21
+282699,0,0,0,21
+282700,0,0,0,21
+282701,0,0,0,21
+282702,0,0,0,21
+282703,0,0,0,21
+282704,0,0,0,21
+282705,0,0,0,21
+282706,0,0,0,21
+282707,0,0,0,21
+282708,0,0,0,21
+282709,0,0,0,21
+282710,0,0,0,21
+282711,0,0,0,21
+282712,0,0,0,21
+282713,0,0,0,21
+282714,0,365904.6748,0,21
+282715,0,0,0,21
+282716,0,0,0,21
+282717,0,0,0,21
+282718,0,0,0,21
+282719,0,0,0,21
+282720,0,0,0,21
+282721,0,0,0,21
+282722,0,0,0,21
+282723,0,0,0,21
+282724,336908.08,0,0,21
+282725,0,0,0,21
+282726,0,0,0,21
+282727,0,0,658528.0966,21
+282728,0,0,0,21
+282729,0,0,0,21
+282730,0,0,0,21
+282731,0,0,0,21
+282732,0,0,0,21
+282733,0,0,0,21
+282734,0,0,0,21
+282735,0,0,0,21
+282736,0,0,0,21
+282737,0,0,0,21
+282738,0,0,0,21
+282739,0,0,0,21
+282740,0,0,0,21
+282741,0,0,0,21
+282742,0,0,0,21
+282743,0,0,0,21
+282744,0,0,0,21
+282745,0,0,0,21
+282746,0,0,0,21
+282747,0,0,0,21
+282748,0,0,0,21
+282749,0,365904.0784,0,21
+282750,0,0,0,21
+282751,0,0,0,21
+282752,0,0,0,21
+282753,0,0,0,21
+282754,0,0,0,21
+282755,0,0,0,21
+282756,0,0,0,21
+282757,0,0,0,21
+282758,0,0,0,21
+282759,0,0,0,21
+282760,336426.857,0,0,21
+282761,0,0,0,21
+282762,0,0,658279.201,21
+282763,0,0,0,21
+282764,0,0,0,21
+282765,0,0,0,21
+282766,0,0,0,21
+282767,0,0,0,21
+282768,0,0,0,21
+282769,0,0,0,21
+282770,0,0,0,21
+282771,0,0,0,21
+282772,0,0,0,21
+282773,0,0,0,21
+282774,0,0,0,21
+282775,0,0,0,21
+282776,0,0,0,21
+282777,0,0,0,21
+282778,0,0,0,21
+282779,0,0,0,21
+282780,0,0,0,21
+282781,0,0,0,21
+282782,0,0,0,21
+282783,0,0,0,21
+282784,0,365858.3426,0,21
+282785,0,0,0,21
+282786,0,0,0,21
+282787,0,0,0,21
+282788,0,0,0,21
+282789,0,0,0,21
+282790,0,0,0,21
+282791,0,0,0,21
+282792,0,0,0,21
+282793,0,0,0,21
+282794,0,0,0,21
+282795,0,0,0,21
+282796,336181.0513,0,0,21
+282797,0,0,657890.7129,21
+282798,0,0,0,21
+282799,0,0,0,21
+282800,0,0,0,21
+282801,0,0,0,21
+282802,0,0,0,21
+282803,0,0,0,21
+282804,0,0,0,21
+282805,0,0,0,21
+282806,0,0,0,21
+282807,0,0,0,21
+282808,0,0,0,21
+282809,0,0,0,21
+282810,0,0,0,21
+282811,0,0,0,21
+282812,0,0,0,21
+282813,0,0,0,21
+282814,0,0,0,21
+282815,0,0,0,21
+282816,0,0,0,21
+282817,0,0,0,21
+282818,0,0,0,21
+282819,0,365854.3219,0,21
+282820,0,0,0,21
+282821,0,0,0,21
+282822,0,0,0,21
+282823,0,0,0,21
+282824,0,0,0,21
+282825,0,0,0,21
+282826,0,0,0,21
+282827,0,0,0,21
+282828,0,0,0,21
+282829,0,0,0,21
+282830,0,0,0,21
+282831,0,0,0,21
+282832,336210.9294,0,657260.3289,21
+282833,0,0,0,21
+282834,0,0,0,21
+282835,0,0,0,21
+282836,0,0,0,21
+282837,0,0,0,21
+282838,0,0,0,21
+282839,0,0,0,21
+282840,0,0,0,21
+282841,0,0,0,21
+282842,0,0,0,21
+282843,0,0,0,21
+282844,0,0,0,21
+282845,0,0,0,21
+282846,0,0,0,21
+282847,0,0,0,21
+282848,0,0,0,21
+282849,0,0,0,21
+282850,0,0,0,21
+282851,0,0,0,21
+282852,0,0,0,21
+282853,0,0,0,21
+282854,0,0,0,21
+282855,0,365996.2344,0,21
+282856,0,0,0,21
+282857,0,0,0,21
+282858,0,0,0,21
+282859,0,0,0,21
+282860,0,0,0,21
+282861,0,0,0,21
+282862,0,0,0,21
+282863,0,0,0,21
+282864,0,0,0,21
+282865,0,0,0,21
+282866,0,0,0,21
+282867,0,0,656814.1864,21
+282868,336130.4111,0,0,21
+282869,0,0,0,21
+282870,0,0,0,21
+282871,0,0,0,21
+282872,0,0,0,21
+282873,0,0,0,21
+282874,0,0,0,21
+282875,0,0,0,21
+282876,0,0,0,21
+282877,0,0,0,21
+282878,0,0,0,21
+282879,0,0,0,21
+282880,0,0,0,21
+282881,0,0,0,21
+282882,0,0,0,21
+282883,0,0,0,21
+282884,0,0,0,21
+282885,0,0,0,21
+282886,0,0,0,21
+282887,0,0,0,21
+282888,0,0,0,21
+282889,0,0,0,21
+282890,0,0,0,21
+282891,0,365789.7839,0,21
+282892,0,0,0,21
+282893,0,0,0,21
+282894,0,0,0,21
+282895,0,0,0,21
+282896,0,0,0,21
+282897,0,0,0,21
+282898,0,0,0,21
+282899,0,0,0,21
+282900,0,0,0,21
+282901,0,0,0,21
+282902,0,0,656873.9334,21
+282903,0,0,0,21
+282904,336257.6317,0,0,21
+282905,0,0,0,21
+282906,0,0,0,21
+282907,0,0,0,21
+282908,0,0,0,21
+282909,0,0,0,21
+282910,0,0,0,21
+282911,0,0,0,21
+282912,0,0,0,21
+282913,0,0,0,21
+282914,0,0,0,21
+282915,0,0,0,21
+282916,0,0,0,21
+282917,0,0,0,21
+282918,0,0,0,21
+282919,0,0,0,21
+282920,0,0,0,21
+282921,0,0,0,21
+282922,0,0,0,21
+282923,0,0,0,21
+282924,0,0,0,21
+282925,0,0,0,21
+282926,0,0,0,21
+282927,0,365934.7986,0,21
+282928,0,0,0,21
+282929,0,0,0,21
+282930,0,0,0,21
+282931,0,0,0,21
+282932,0,0,0,21
+282933,0,0,0,21
+282934,0,0,0,21
+282935,0,0,0,21
+282936,0,0,0,21
+282937,0,0,656770.8614,21
+282938,0,0,0,21
+282939,0,0,0,21
+282940,336321.7481,0,0,21
+282941,0,0,0,21
+282942,0,0,0,21
+282943,0,0,0,21
+282944,0,0,0,21
+282945,0,0,0,21
+282946,0,0,0,21
+282947,0,0,0,21
+282948,0,0,0,21
+282949,0,0,0,21
+282950,0,0,0,21
+282951,0,0,0,21
+282952,0,0,0,21
+282953,0,0,0,21
+282954,0,0,0,21
+282955,0,0,0,21
+282956,0,0,0,21
+282957,0,0,0,21
+282958,0,0,0,21
+282959,0,0,0,21
+282960,0,0,0,21
+282961,0,0,0,21
+282962,0,0,0,21
+282963,0,365945.7816,0,21
+282964,0,0,0,21
+282965,0,0,0,21
+282966,0,0,0,21
+282967,0,0,0,21
+282968,0,0,0,21
+282969,0,0,0,21
+282970,0,0,0,21
+282971,0,0,0,21
+282972,0,0,656717.1901,21
+282973,0,0,0,21
+282974,0,0,0,21
+282975,0,0,0,21
+282976,0,0,0,21
+282977,335901.7422,0,0,21
+282978,0,0,0,21
+282979,0,0,0,21
+282980,0,0,0,21
+282981,0,0,0,21
+282982,0,0,0,21
+282983,0,0,0,21
+282984,0,0,0,21
+282985,0,0,0,21
+282986,0,0,0,21
+282987,0,0,0,21
+282988,0,0,0,21
+282989,0,0,0,21
+282990,0,0,0,21
+282991,0,0,0,21
+282992,0,0,0,21
+282993,0,0,0,21
+282994,0,0,0,21
+282995,0,0,0,21
+282996,0,0,0,21
+282997,0,0,0,21
+282998,0,0,0,21
+282999,0,366218.5617,0,21
+283000,0,0,0,21
+283001,0,0,0,21
+283002,0,0,0,21
+283003,0,0,0,21
+283004,0,0,0,21
+283005,0,0,0,21
+283006,0,0,0,21
+283007,0,0,656715.713,21
+283008,0,0,0,21
+283009,0,0,0,21
+283010,0,0,0,21
+283011,0,0,0,21
+283012,0,0,0,21
+283013,0,0,0,21
+283014,336193.3886,0,0,21
+283015,0,0,0,21
+283016,0,0,0,21
+283017,0,0,0,21
+283018,0,0,0,21
+283019,0,0,0,21
+283020,0,0,0,21
+283021,0,0,0,21
+283022,0,0,0,21
+283023,0,0,0,21
+283024,0,0,0,21
+283025,0,0,0,21
+283026,0,0,0,21
+283027,0,0,0,21
+283028,0,0,0,21
+283029,0,0,0,21
+283030,0,0,0,21
+283031,0,0,0,21
+283032,0,0,0,21
+283033,0,0,0,21
+283034,0,0,0,21
+283035,0,366049.034,0,21
+283036,0,0,0,21
+283037,0,0,0,21
+283038,0,0,0,21
+283039,0,0,0,21
+283040,0,0,0,21
+283041,0,0,0,21
+283042,0,0,656889.3386,21
+283043,0,0,0,21
+283044,0,0,0,21
+283045,0,0,0,21
+283046,0,0,0,21
+283047,0,0,0,21
+283048,0,0,0,21
+283049,0,0,0,21
+283050,0,0,0,21
+283051,335931.6648,0,0,21
+283052,0,0,0,21
+283053,0,0,0,21
+283054,0,0,0,21
+283055,0,0,0,21
+283056,0,0,0,21
+283057,0,0,0,21
+283058,0,0,0,21
+283059,0,0,0,21
+283060,0,0,0,21
+283061,0,0,0,21
+283062,0,0,0,21
+283063,0,0,0,21
+283064,0,0,0,21
+283065,0,0,0,21
+283066,0,0,0,21
+283067,0,0,0,21
+283068,0,0,0,21
+283069,0,0,0,21
+283070,0,0,0,21
+283071,0,365821.4748,0,21
+283072,0,0,0,21
+283073,0,0,0,21
+283074,0,0,0,21
+283075,0,0,0,21
+283076,0,0,0,21
+283077,0,0,657684.1447,21
+283078,0,0,0,21
+283079,0,0,0,21
+283080,0,0,0,21
+283081,0,0,0,21
+283082,0,0,0,21
+283083,0,0,0,21
+283084,0,0,0,21
+283085,0,0,0,21
+283086,0,0,0,21
+283087,336365.7861,0,0,21
+283088,0,0,0,21
+283089,0,0,0,21
+283090,0,0,0,21
+283091,0,0,0,21
+283092,0,0,0,21
+283093,0,0,0,21
+283094,0,0,0,21
+283095,0,0,0,21
+283096,0,0,0,21
+283097,0,0,0,21
+283098,0,0,0,21
+283099,0,0,0,21
+283100,0,0,0,21
+283101,0,0,0,21
+283102,0,0,0,21
+283103,0,0,0,21
+283104,0,0,0,21
+283105,0,0,0,21
+283106,0,0,0,21
+283107,0,365926.8371,0,21
+283108,0,0,0,21
+283109,0,0,0,21
+283110,0,0,0,21
+283111,0,0,0,21
+283112,0,0,658618.4485,21
+283113,0,0,0,21
+283114,0,0,0,21
+283115,0,0,0,21
+283116,0,0,0,21
+283117,0,0,0,21
+283118,0,0,0,21
+283119,0,0,0,21
+283120,0,0,0,21
+283121,0,0,0,21
+283122,0,0,0,21
+283123,335660.4932,0,0,21
+283124,0,0,0,21
+283125,0,0,0,21
+283126,0,0,0,21
+283127,0,0,0,21
+283128,0,0,0,21
+283129,0,0,0,21
+283130,0,0,0,21
+283131,0,0,0,21
+283132,0,0,0,21
+283133,0,0,0,21
+283134,0,0,0,21
+283135,0,0,0,21
+283136,0,0,0,21
+283137,0,0,0,21
+283138,0,0,0,21
+283139,0,0,0,21
+283140,0,0,0,21
+283141,0,0,0,21
+283142,0,0,0,21
+283143,0,366495.1463,0,21
+283144,0,0,0,21
+283145,0,0,0,21
+283146,0,0,0,21
+283147,0,0,659475.5107,21
+283148,0,0,0,21
+283149,0,0,0,21
+283150,0,0,0,21
+283151,0,0,0,21
+283152,0,0,0,21
+283153,0,0,0,21
+283154,0,0,0,21
+283155,0,0,0,21
+283156,0,0,0,21
+283157,0,0,0,21
+283158,0,0,0,21
+283159,336090.8925,0,0,21
+283160,0,0,0,21
+283161,0,0,0,21
+283162,0,0,0,21
+283163,0,0,0,21
+283164,0,0,0,21
+283165,0,0,0,21
+283166,0,0,0,21
+283167,0,0,0,21
+283168,0,0,0,21
+283169,0,0,0,21
+283170,0,0,0,21
+283171,0,0,0,21
+283172,0,0,0,21
+283173,0,0,0,21
+283174,0,0,0,21
+283175,0,0,0,21
+283176,0,0,0,21
+283177,0,0,0,21
+283178,0,0,0,21
+283179,0,367091.396,0,21
+283180,0,0,0,21
+283181,0,0,0,21
+283182,0,0,660044.37,21
+283183,0,0,0,21
+283184,0,0,0,21
+283185,0,0,0,21
+283186,0,0,0,21
+283187,0,0,0,21
+283188,0,0,0,21
+283189,0,0,0,21
+283190,0,0,0,21
+283191,0,0,0,21
+283192,0,0,0,21
+283193,0,0,0,21
+283194,0,0,0,21
+283195,336360.6754,0,0,21
+283196,0,0,0,21
+283197,0,0,0,21
+283198,0,0,0,21
+283199,0,0,0,21
+283200,0,0,0,21
+283201,0,0,0,21
+283202,0,0,0,21
+283203,0,0,0,21
+283204,0,0,0,21
+283205,0,0,0,21
+283206,0,0,0,21
+283207,0,0,0,21
+283208,0,0,0,21
+283209,0,0,0,21
+283210,0,0,0,21
+283211,0,0,0,21
+283212,0,0,0,21
+283213,0,0,0,21
+283214,0,0,0,21
+283215,0,367348.0197,0,21
+283216,0,0,0,21
+283217,0,0,660384.6365,21
+283218,0,0,0,21
+283219,0,0,0,21
+283220,0,0,0,21
+283221,0,0,0,21
+283222,0,0,0,21
+283223,0,0,0,21
+283224,0,0,0,21
+283225,0,0,0,21
+283226,0,0,0,21
+283227,0,0,0,21
+283228,0,0,0,21
+283229,0,0,0,21
+283230,0,0,0,21
+283231,336513.095,0,0,21
+283232,0,0,0,21
+283233,0,0,0,21
+283234,0,0,0,21
+283235,0,0,0,21
+283236,0,0,0,21
+283237,0,0,0,21
+283238,0,0,0,21
+283239,0,0,0,21
+283240,0,0,0,21
+283241,0,0,0,21
+283242,0,0,0,21
+283243,0,0,0,21
+283244,0,0,0,21
+283245,0,0,0,21
+283246,0,0,0,21
+283247,0,0,0,21
+283248,0,0,0,21
+283249,0,0,0,21
+283250,0,0,0,21
+283251,0,366164.503,0,21
+283252,0,0,659809.3879,21
+283253,0,0,0,21
+283254,0,0,0,21
+283255,0,0,0,21
+283256,0,0,0,21
+283257,0,0,0,21
+283258,0,0,0,21
+283259,0,0,0,21
+283260,0,0,0,21
+283261,0,0,0,21
+283262,0,0,0,21
+283263,0,0,0,21
+283264,0,0,0,21
+283265,0,0,0,21
+283266,0,0,0,21
+283267,336055.163,0,0,21
+283268,0,0,0,21
+283269,0,0,0,21
+283270,0,0,0,21
+283271,0,0,0,21
+283272,0,0,0,21
+283273,0,0,0,21
+283274,0,0,0,21
+283275,0,0,0,21
+283276,0,0,0,21
+283277,0,0,0,21
+283278,0,0,0,21
+283279,0,0,0,21
+283280,0,0,0,21
+283281,0,0,0,21
+283282,0,0,0,21
+283283,0,0,0,21
+283284,0,0,0,21
+283285,0,0,0,21
+283286,0,0,0,21
+283287,0,365963.2371,660174.5701,21
+283288,0,0,0,21
+283289,0,0,0,21
+283290,0,0,0,21
+283291,0,0,0,21
+283292,0,0,0,21
+283293,0,0,0,21
+283294,0,0,0,21
+283295,0,0,0,21
+283296,0,0,0,21
+283297,0,0,0,21
+283298,0,0,0,21
+283299,0,0,0,21
+283300,0,0,0,21
+283301,0,0,0,21
+283302,0,0,0,21
+283303,335979.3381,0,0,21
+283304,0,0,0,21
+283305,0,0,0,21
+283306,0,0,0,21
+283307,0,0,0,21
+283308,0,0,0,21
+283309,0,0,0,21
+283310,0,0,0,21
+283311,0,0,0,21
+283312,0,0,0,21
+283313,0,0,0,21
+283314,0,0,0,21
+283315,0,0,0,21
+283316,0,0,0,21
+283317,0,0,0,21
+283318,0,0,0,21
+283319,0,0,0,21
+283320,0,0,0,21
+283321,0,0,0,21
+283322,0,0,660655.5245,21
+283323,0,365947.389,0,21
+283324,0,0,0,21
+283325,0,0,0,21
+283326,0,0,0,21
+283327,0,0,0,21
+283328,0,0,0,21
+283329,0,0,0,21
+283330,0,0,0,21
+283331,0,0,0,21
+283332,0,0,0,21
+283333,0,0,0,21
+283334,0,0,0,21
+283335,0,0,0,21
+283336,0,0,0,21
+283337,0,0,0,21
+283338,0,0,0,21
+283339,336030.5803,0,0,21
+283340,0,0,0,21
+283341,0,0,0,21
+283342,0,0,0,21
+283343,0,0,0,21
+283344,0,0,0,21
+283345,0,0,0,21
+283346,0,0,0,21
+283347,0,0,0,21
+283348,0,0,0,21
+283349,0,0,0,21
+283350,0,0,0,21
+283351,0,0,0,21
+283352,0,0,0,21
+283353,0,0,0,21
+283354,0,0,0,21
+283355,0,0,0,21
+283356,0,0,0,21
+283357,0,0,661178.3643,21
+283358,0,0,0,21
+283359,0,366113.4022,0,21
+283360,0,0,0,21
+283361,0,0,0,21
+283362,0,0,0,21
+283363,0,0,0,21
+283364,0,0,0,21
+283365,0,0,0,21
+283366,0,0,0,21
+283367,0,0,0,21
+283368,0,0,0,21
+283369,0,0,0,21
+283370,0,0,0,21
+283371,0,0,0,21
+283372,0,0,0,21
+283373,0,0,0,21
+283374,0,0,0,21
+283375,336305.8346,0,0,21
+283376,0,0,0,21
+283377,0,0,0,21
+283378,0,0,0,21
+283379,0,0,0,21
+283380,0,0,0,21
+283381,0,0,0,21
+283382,0,0,0,21
+283383,0,0,0,21
+283384,0,0,0,21
+283385,0,0,0,21
+283386,0,0,0,21
+283387,0,0,0,21
+283388,0,0,0,21
+283389,0,0,0,21
+283390,0,0,0,21
+283391,0,0,0,21
+283392,0,0,660619.7959,21
+283393,0,0,0,21
+283394,0,0,0,21
+283395,0,366574.0589,0,21
+283396,0,0,0,21
+283397,0,0,0,21
+283398,0,0,0,21
+283399,0,0,0,21
+283400,0,0,0,21
+283401,0,0,0,21
+283402,0,0,0,21
+283403,0,0,0,21
+283404,0,0,0,21
+283405,0,0,0,21
+283406,0,0,0,21
+283407,0,0,0,21
+283408,0,0,0,21
+283409,0,0,0,21
+283410,0,0,0,21
+283411,336043.9364,0,0,21
+283412,0,0,0,21
+283413,0,0,0,21
+283414,0,0,0,21
+283415,0,0,0,21
+283416,0,0,0,21
+283417,0,0,0,21
+283418,0,0,0,21
+283419,0,0,0,21
+283420,0,0,0,21
+283421,0,0,0,21
+283422,0,0,0,21
+283423,0,0,0,21
+283424,0,0,0,21
+283425,0,0,0,21
+283426,0,0,0,21
+283427,0,0,661250.5218,21
+283428,0,0,0,21
+283429,0,0,0,21
+283430,0,0,0,21
+283431,0,366199.9235,0,21
+283432,0,0,0,21
+283433,0,0,0,21
+283434,0,0,0,21
+283435,0,0,0,21
+283436,0,0,0,21
+283437,0,0,0,21
+283438,0,0,0,21
+283439,0,0,0,21
+283440,0,0,0,21
+283441,0,0,0,21
+283442,0,0,0,21
+283443,0,0,0,21
+283444,0,0,0,21
+283445,0,0,0,21
+283446,0,0,0,21
+283447,336494.0336,0,0,21
+283448,0,0,0,21
+283449,0,0,0,21
+283450,0,0,0,21
+283451,0,0,0,21
+283452,0,0,0,21
+283453,0,0,0,21
+283454,0,0,0,21
+283455,0,0,0,21
+283456,0,0,0,21
+283457,0,0,0,21
+283458,0,0,0,21
+283459,0,0,0,21
+283460,0,0,0,21
+283461,0,0,0,21
+283462,0,0,661423.5101,21
+283463,0,0,0,21
+283464,0,0,0,21
+283465,0,0,0,21
+283466,0,0,0,21
+283467,0,0,0,21
+283468,0,365634.6438,0,21
+283469,0,0,0,21
+283470,0,0,0,21
+283471,0,0,0,21
+283472,0,0,0,21
+283473,0,0,0,21
+283474,0,0,0,21
+283475,0,0,0,21
+283476,0,0,0,21
+283477,0,0,0,21
+283478,0,0,0,21
+283479,0,0,0,21
+283480,0,0,0,21
+283481,0,0,0,21
+283482,0,0,0,21
+283483,0,0,0,21
+283484,336487.6588,0,0,21
+283485,0,0,0,21
+283486,0,0,0,21
+283487,0,0,0,21
+283488,0,0,0,21
+283489,0,0,0,21
+283490,0,0,0,21
+283491,0,0,0,21
+283492,0,0,0,21
+283493,0,0,0,21
+283494,0,0,0,21
+283495,0,0,0,21
+283496,0,0,0,21
+283497,0,0,661651.6378,21
+283498,0,0,0,21
+283499,0,0,0,21
+283500,0,0,0,21
+283501,0,0,0,21
+283502,0,0,0,21
+283503,0,0,0,21
+283504,0,0,0,21
+283505,0,366721.008,0,21
+283506,0,0,0,21
+283507,0,0,0,21
+283508,0,0,0,21
+283509,0,0,0,21
+283510,0,0,0,21
+283511,0,0,0,21
+283512,0,0,0,21
+283513,0,0,0,21
+283514,0,0,0,21
+283515,0,0,0,21
+283516,0,0,0,21
+283517,0,0,0,21
+283518,0,0,0,21
+283519,0,0,0,21
+283520,336750.2754,0,0,21
+283521,0,0,0,21
+283522,0,0,0,21
+283523,0,0,0,21
+283524,0,0,0,21
+283525,0,0,0,21
+283526,0,0,0,21
+283527,0,0,0,21
+283528,0,0,0,21
+283529,0,0,0,21
+283530,0,0,0,21
+283531,0,0,0,21
+283532,0,0,661647.0897,21
+283533,0,0,0,21
+283534,0,0,0,21
+283535,0,0,0,21
+283536,0,0,0,21
+283537,0,0,0,21
+283538,0,0,0,21
+283539,0,0,0,21
+283540,0,0,0,21
+283541,0,367338.935,0,21
+283542,0,0,0,21
+283543,0,0,0,21
+283544,0,0,0,21
+283545,0,0,0,21
+283546,0,0,0,21
+283547,0,0,0,21
+283548,0,0,0,21
+283549,0,0,0,21
+283550,0,0,0,21
+283551,0,0,0,21
+283552,0,0,0,21
+283553,0,0,0,21
+283554,0,0,0,21
+283555,0,0,0,21
+283556,336225.5619,0,0,21
+283557,0,0,0,21
+283558,0,0,0,21
+283559,0,0,0,21
+283560,0,0,0,15.6
+283561,0,0,0,15.6
+283562,0,0,0,15.6
+283563,0,0,0,15.6
+283564,0,0,0,15.6
+283565,0,0,0,15.6
+283566,0,0,0,15.6
+283567,0,0,661676.8214,15.6
+283568,0,0,0,15.6
+283569,0,0,0,15.6
+283570,0,0,0,15.6
+283571,0,0,0,15.6
+283572,0,0,0,15.6
+283573,0,0,0,15.6
+283574,0,0,0,15.6
+283575,0,0,0,15.6
+283576,0,0,0,15.6
+283577,0,367656.1281,0,15.6
+283578,0,0,0,15.6
+283579,0,0,0,15.6
+283580,0,0,0,15.6
+283581,0,0,0,15.6
+283582,0,0,0,15.6
+283583,0,0,0,15.6
+283584,0,0,0,15.6
+283585,0,0,0,15.6
+283586,0,0,0,15.6
+283587,0,0,0,15.6
+283588,0,0,0,15.6
+283589,0,0,0,15.6
+283590,0,0,0,15.6
+283591,0,0,0,15.6
+283592,336550.577,0,0,15.6
+283593,0,0,0,15.6
+283594,0,0,0,15.6
+283595,0,0,0,15.6
+283596,0,0,0,15.6
+283597,0,0,0,15.6
+283598,0,0,0,15.6
+283599,0,0,0,15.6
+283600,0,0,0,15.6
+283601,0,0,0,15.6
+283602,0,0,661579.2532,15.6
+283603,0,0,0,15.6
+283604,0,0,0,15.6
+283605,0,0,0,15.6
+283606,0,0,0,15.6
+283607,0,0,0,15.6
+283608,0,0,0,15.6
+283609,0,0,0,15.6
+283610,0,0,0,15.6
+283611,0,0,0,15.6
+283612,0,0,0,15.6
+283613,0,367792.1906,0,15.6
+283614,0,0,0,15.6
+283615,0,0,0,15.6
+283616,0,0,0,15.6
+283617,0,0,0,15.6
+283618,0,0,0,15.6
+283619,0,0,0,15.6
+283620,0,0,0,15.6
+283621,0,0,0,15.6
+283622,0,0,0,15.6
+283623,0,0,0,15.6
+283624,0,0,0,15.6
+283625,0,0,0,15.6
+283626,0,0,0,15.6
+283627,336847.912,0,0,15.6
+283628,0,0,0,15.6
+283629,0,0,0,15.6
+283630,0,0,0,15.6
+283631,0,0,0,15.6
+283632,0,0,0,15.6
+283633,0,0,0,15.6
+283634,0,0,0,15.6
+283635,0,0,0,15.6
+283636,0,0,661760.6161,15.6
+283637,0,0,0,15.6
+283638,0,0,0,15.6
+283639,0,0,0,15.6
+283640,0,0,0,15.6
+283641,0,0,0,15.6
+283642,0,0,0,15.6
+283643,0,0,0,15.6
+283644,0,0,0,15.6
+283645,0,0,0,15.6
+283646,0,0,0,15.6
+283647,0,0,0,15.6
+283648,0,367859.0703,0,15.6
+283649,0,0,0,15.6
+283650,0,0,0,15.6
+283651,0,0,0,15.6
+283652,0,0,0,15.6
+283653,0,0,0,15.6
+283654,0,0,0,15.6
+283655,0,0,0,15.6
+283656,0,0,0,15.6
+283657,0,0,0,15.6
+283658,0,0,0,15.6
+283659,0,0,0,15.6
+283660,0,0,0,15.6
+283661,0,0,0,15.6
+283662,335582.0197,0,0,15.6
+283663,0,0,0,15.6
+283664,0,0,0,15.6
+283665,0,0,0,15.6
+283666,0,0,0,15.6
+283667,0,0,0,15.6
+283668,0,0,0,15.6
+283669,0,0,0,15.6
+283670,0,0,661819.6783,15.6
+283671,0,0,0,15.6
+283672,0,0,0,15.6
+283673,0,0,0,15.6
+283674,0,0,0,15.6
+283675,0,0,0,15.6
+283676,0,0,0,15.6
+283677,0,0,0,15.6
+283678,0,0,0,15.6
+283679,0,0,0,15.6
+283680,0,0,0,15.6
+283681,0,0,0,15.6
+283682,0,0,0,15.6
+283683,0,369425.378,0,15.6
+283684,0,0,0,15.6
+283685,0,0,0,15.6
+283686,0,0,0,15.6
+283687,0,0,0,15.6
+283688,0,0,0,15.6
+283689,0,0,0,15.6
+283690,0,0,0,15.6
+283691,0,0,0,15.6
+283692,0,0,0,15.6
+283693,0,0,0,15.6
+283694,0,0,0,15.6
+283695,0,0,0,15.6
+283696,0,0,0,15.6
+283697,337306.06,0,0,15.6
+283698,0,0,0,15.6
+283699,0,0,0,15.6
+283700,0,0,0,15.6
+283701,0,0,0,15.6
+283702,0,0,0,15.6
+283703,0,0,0,15.6
+283704,0,0,661786.5047,15.6
+283705,0,0,0,15.6
+283706,0,0,0,15.6
+283707,0,0,0,15.6
+283708,0,0,0,15.6
+283709,0,0,0,15.6
+283710,0,0,0,15.6
+283711,0,0,0,15.6
+283712,0,0,0,15.6
+283713,0,0,0,15.6
+283714,0,0,0,15.6
+283715,0,0,0,15.6
+283716,0,0,0,15.6
+283717,0,0,0,15.6
+283718,0,369426.7205,0,15.6
+283719,0,0,0,15.6
+283720,0,0,0,15.6
+283721,0,0,0,15.6
+283722,0,0,0,15.6
+283723,0,0,0,15.6
+283724,0,0,0,15.6
+283725,0,0,0,15.6
+283726,0,0,0,15.6
+283727,0,0,0,15.6
+283728,0,0,0,15.6
+283729,0,0,0,15.6
+283730,0,0,0,15.6
+283731,0,0,0,15.6
+283732,335465.9457,0,0,15.6
+283733,0,0,0,15.6
+283734,0,0,0,15.6
+283735,0,0,0,15.6
+283736,0,0,0,15.6
+283737,0,0,0,15.6
+283738,0,0,661385.362,15.6
+283739,0,0,0,15.6
+283740,0,0,0,15.6
+283741,0,3.46713279,0,15.6
+283742,0,0,0,15.6
+283743,0,0,0,15.6
+283744,0,285.0818111,0,15.6
+283745,0,0,0,15.6
+283746,0,0,0,15.6
+283747,0,0,0,15.6
+283748,0,0,0,15.6
+283749,0,0,0,15.6
+283750,0,0,0,15.6
+283751,0,0,0,15.6
+283752,0,3.39689643,0,15.6
+283753,0,369412.9097,0,15.6
+283754,0,71.56372791,0,15.6
+283755,0,0,0,15.6
+283756,0,0,0,15.6
+283757,0,0,0,15.6
+283758,0,3.372587849,0,15.6
+283759,0,0,0,15.6
+283760,0,0,0,15.6
+283761,0,74.19180876,0,15.6
+283762,0,0,0,15.6
+283763,0,0,0,15.6
+283764,0,0,0,15.6
+283765,0,2.160058901,0,15.6
+283766,0,0,0,15.6
+283767,337463.0446,0,0,15.6
+283768,0,0,0,15.6
+283769,0,0,0,15.6
+283770,0,0,0,15.6
+283771,0,0,0,15.6
+283772,0,0,661301.4411,15.6
+283773,0,0,0,15.6
+283774,0,0,0,15.6
+283775,0,0,0,15.6
+283776,0,0,0,15.6
+283777,0,0,0,15.6
+283778,0,0,0,15.6
+283779,0,0,0,15.6
+283780,0,0,0,15.6
+283781,0,0,0,15.6
+283782,0,0,0,15.6
+283783,0,0,0,15.6
+283784,0,0,0,15.6
+283785,0,0,0,15.6
+283786,0,0,0,15.6
+283787,0,0,0,15.6
+283788,0,369375.9522,0,15.6
+283789,0,0,0,15.6
+283790,0,0,0,15.6
+283791,0,3.653156487,0,15.6
+283792,0,0,0,15.6
+283793,0,3.446961367,0,15.6
+283794,0,0,0,15.6
+283795,0,4.003365816,0,15.6
+283796,0,0,0,15.6
+283797,0,0,0,15.6
+283798,0,66.03097074,0,15.6
+283799,0,0,0,15.6
+283800,0,0,0,15.6
+283801,0,0,0,15.6
+283802,335823.7507,0,0,15.6
+283803,0,0,0,15.6
+283804,0,0,0,15.6
+283805,0,0,0,15.6
+283806,0,0,661202.0178,15.6
+283807,0,0,0,15.6
+283808,0,0,0,15.6
+283809,0,0,0,15.6
+283810,0,0,0,15.6
+283811,0,0,0,15.6
+283812,0,3.285150011,0,15.6
+283813,0,0,0,15.6
+283814,0,0,0,15.6
+283815,0,69.39244278,0,15.6
+283816,0,0,0,15.6
+283817,0,0,0,15.6
+283818,0,0,0,15.6
+283819,0,0,0,15.6
+283820,0,0,0,15.6
+283821,0,0,0,15.6
+283822,0,0,0,15.6
+283823,0,369321.3023,0,15.6
+283824,0,0,0,15.6
+283825,0,0,0,15.6
+283826,0,0,0,15.6
+283827,0,0,0,15.6
+283828,0,0,0,15.6
+283829,0,0,0,15.6
+283830,0,0,0,15.6
+283831,0,0,0,15.6
+283832,0,0,0,15.6
+283833,0,0,0,15.6
+283834,0,0,0,15.6
+283835,0,0,0,15.6
+283836,0,0,0,15.6
+283837,337464.2927,2.775045498,0,15.6
+283838,0,0,0,15.6
+283839,0,0,0,15.6
+283840,0,307.6801438,660767.2329,15.6
+283841,0,0,0,15.6
+283842,0,0,0,15.6
+283843,0,0,0,15.6
+283844,0,0,0,15.6
+283845,0,0,0,15.6
+283846,0,0,0,15.6
+283847,0,0,0,15.6
+283848,0,0,0,15.6
+283849,0,0,0,15.6
+283850,0,0,0,15.6
+283851,0,0,0,15.6
+283852,0,0,0,15.6
+283853,0,0,0,15.6
+283854,0,0,0,15.6
+283855,0,0,0,15.6
+283856,0,0,0,15.6
+283857,0,0,0,15.6
+283858,0,369260.1162,0,15.6
+283859,0,0,0,15.6
+283860,0,0,0,15.6
+283861,0,0,0,15.6
+283862,0,0,0,15.6
+283863,0,0,0,15.6
+283864,0,0,0,15.6
+283865,0,0,0,15.6
+283866,0,0,0,15.6
+283867,0,0,0,15.6
+283868,0,0,0,15.6
+283869,0,0,0,15.6
+283870,0,0,0,15.6
+283871,0,0,0,15.6
+283872,336631.8574,0,0,15.6
+283873,0,0,0,15.6
+283874,0,0,661405.9409,15.6
+283875,0,0,0,15.6
+283876,0,0,0,15.6
+283877,0,0,0,15.6
+283878,0,0,0,15.6
+283879,0,0,0,15.6
+283880,0,0,0,15.6
+283881,0,0,0,15.6
+283882,0,0,0,15.6
+283883,0,0,0,15.6
+283884,0,0,0,15.6
+283885,0,0,0,15.6
+283886,0,0,0,15.6
+283887,0,0,0,15.6
+283888,0,0,0,15.6
+283889,0,0,0,15.6
+283890,0,0,0,15.6
+283891,0,0,0,15.6
+283892,0,0,0,15.6
+283893,0,369252.1458,0,15.6
+283894,0,0,0,15.6
+283895,0,0,0,15.6
+283896,0,0,0,15.6
+283897,0,0,0,15.6
+283898,0,0,0,15.6
+283899,0,0,0,15.6
+283900,0,0,0,15.6
+283901,0,0,0,15.6
+283902,0,0,0,15.6
+283903,0,0,0,15.6
+283904,0,0,0,15.6
+283905,0,0,0,15.6
+283906,0,0,0,15.6
+283907,337775.604,0,0,15.6
+283908,0,0,661333.6524,15.6
+283909,0,0,0,15.6
+283910,0,0,0,15.6
+283911,0,0,0,15.6
+283912,0,0,0,15.6
+283913,0,0,0,15.6
+283914,0,0,0,15.6
+283915,0,0,0,15.6
+283916,0,0,0,15.6
+283917,0,0,0,15.6
+283918,0,0,0,15.6
+283919,0,0,0,15.6
+283920,0,0,0,17.8
+283921,0,0,0,17.8
+283922,0,0,0,17.8
+283923,0,0,0,17.8
+283924,0,0,0,17.8
+283925,0,0,0,17.8
+283926,0,0,0,17.8
+283927,0,0,0,17.8
+283928,0,369249.3849,0,17.8
+283929,0,0,0,17.8
+283930,0,0,0,17.8
+283931,0,0,0,17.8
+283932,0,0,0,17.8
+283933,0,0,0,17.8
+283934,0,0,0,17.8
+283935,0,0,0,17.8
+283936,0,0,0,17.8
+283937,0,0,0,17.8
+283938,0,0,0,17.8
+283939,0,0,0,17.8
+283940,0,0,0,17.8
+283941,0,0,0,17.8
+283942,334537.2279,0,660951.7997,17.8
+283943,0,0,0,17.8
+283944,0,0,0,17.8
+283945,0,0,0,17.8
+283946,0,0,0,17.8
+283947,0,0,0,17.8
+283948,0,0,0,17.8
+283949,0,0,0,17.8
+283950,0,0,0,17.8
+283951,0,0,0,17.8
+283952,0,0,0,17.8
+283953,0,0,0,17.8
+283954,0,0,0,17.8
+283955,0,0,0,17.8
+283956,0,0,0,17.8
+283957,0,0,0,17.8
+283958,0,0,0,17.8
+283959,0,0,0,17.8
+283960,0,0,0,17.8
+283961,0,0,0,17.8
+283962,0,0,0,17.8
+283963,0,369248.2551,0,17.8
+283964,0,0,0,17.8
+283965,0,0,0,17.8
+283966,0,0,0,17.8
+283967,0,0,0,17.8
+283968,0,0,0,17.8
+283969,0,0,0,17.8
+283970,0,0,0,17.8
+283971,0,0,0,17.8
+283972,0,0,0,17.8
+283973,0,0,0,17.8
+283974,0,0,0,17.8
+283975,0,0,0,17.8
+283976,0,0,661936.5126,17.8
+283977,337357.0663,0,0,17.8
+283978,0,0,0,17.8
+283979,0,0,0,17.8
+283980,0,296.7142494,0,20
+283981,0,77005.58569,0,20
+283982,0,16216.49633,0,20
+283983,0,53206.98256,0,20
+283984,0,87249.54127,0,20
+283985,0,91294.49139,0,20
+283986,0,131392.2333,0,20
+283987,0,104155.1302,0,20
+283988,0,114809.2475,0,20
+283989,0,116411.2825,0,20
+283990,0,116258.3326,0,20
+283991,0,117205.6383,0,20
+283992,0,117775.2047,0,20
+283993,7734.489882,118306.2797,0,20
+283994,4812.368993,118551.9626,0,20
+283995,5389.461494,122280.9493,0,20
+283996,5845.512291,128773.9816,0,20
+283997,5958.784496,125124.4274,0,20
+283998,6184.470548,126668.6962,0,20
+283999,6296.892283,127925.1019,0,20
+284000,6409.038244,128007.4874,0,20
+284001,6409.038273,128664.0647,0,20
+284002,6813.587298,129396.3433,0,20
+284003,6653.582014,129629.3188,9896.944333,20
+284004,6905.577531,130196.7945,43556.26878,20
+284005,7006.688958,131034.2512,21618.66271,20
+284006,15206.13565,131152.8998,29752.00211,20
+284007,33152.67827,132002.9945,31621.77336,20
+284008,22230.62384,131934.4012,31649.95523,20
+284009,26309.198,132869.7903,32904.55728,20
+284010,28975.76921,133629.4221,34158.15305,20
+284011,27800.37488,133211.3723,35410.98561,20
+284012,28879.03282,133684.8239,36663.28677,20
+284013,28086.06797,134262.8653,36700.77975,20
+284014,29590.14883,133806.3101,37346.63856,20
+284015,28894.66686,134273.1652,39206.58516,20
+284016,29808.17169,134628.2728,39249.10995,20
+284017,28816.13576,134375.1314,40503.70938,20
+284018,28889.0415,134978.3654,40548.80523,20
+284019,28692.45654,134657.098,41805.07488,20
+284020,29164.45142,134639.6284,43061.82242,20
+284021,28608.38708,136743.3807,43793.45047,20
+284022,29438.06373,135601.5373,44611.06088,20
+284023,29438.06375,136609.5247,46829.4235,20
+284024,30561.88267,136352.9982,44481.67871,20
+284025,30561.8834,136587.4675,46950.61204,20
+284026,30561.88351,137035.3023,45801.68444,20
+284027,32794.85036,136821.3259,47066.90673,20
+284028,31680.76564,136952.2229,48333.2698,20
+284029,32794.85004,137207.9621,48394.95241,20
+284030,32794.85032,137216.7391,48456.51153,20
+284031,33350.13404,137095.2413,49727.24924,20
+284032,33904.26662,137583.8132,50999.42244,20
+284033,33904.26703,137340.9584,49857.52344,20
+284034,35009.13615,137565.0567,51132.8469,20
+284035,35009.13627,137244.4422,52409.73453,20
+284036,35009.1364,137989.882,51268.73227,20
+284037,35009.13596,137260.7557,53758.73725,20
+284038,36658.16081,137673.1086,52620.41625,20
+284039,36109.57251,137736.3488,52690.34247,20
+284040,36109.57184,137688.7902,55187.41802,21
+284041,17887.81881,126410.8933,30315.40905,21
+284042,14287.62429,125023.0954,26446.93646,21
+284043,13069.845,124508.0981,25810.37147,21
+284044,14287.62401,124077.2153,26480.55746,21
+284045,13069.84515,123583.7924,25187.20751,21
+284046,13069.84517,123268.1236,25202.51899,21
+284047,13069.8452,122371.4101,25217.81562,21
+284048,13069.8452,122328.7846,25890.23847,21
+284049,12457.26132,121756.8856,25248.7461,21
+284050,13069.84516,120957.0718,24604.57129,21
+284051,11842.07793,121380.9149,25278.85198,21
+284052,13069.84518,120042.0451,25294.07423,21
+284053,11842.07789,120111.2243,25309.28168,21
+284054,13069.84512,119288.2892,24000.80468,21
+284055,11842.07793,119176.8372,25338.88907,21
+284056,11842.07788,118488.9737,25354.05282,21
+284057,11842.07789,117791.5004,24043.04855,21
+284058,12457.26123,118065.1835,25383.57548,21
+284059,11842.07787,116767.2504,25398.69582,21
+284060,11842.07787,116838.8908,24085.17132,21
+284061,11224.17942,116403.2486,25428.13385,21
+284062,11842.07787,115399.0662,24112.94765,21
+284063,11842.07781,115397.5239,25457.51626,21
+284064,10603.43766,114852.5444,24140.67138,21
+284065,11842.0778,114523.804,25486.84299,21
+284066,11224.1794,113688.777,24168.34151,21
+284067,10603.43764,113396.1937,25516.1142,21
+284068,11842.07776,113082.2395,24195.96154,21
+284069,10603.43763,112144.1071,24878.09149,21
+284070,10603.43762,112037.3755,24223.17414,21
+284071,11224.17939,111725.2281,25574.11614,21
+284072,10603.43762,110912.8336,24250.68925,21
+284073,10603.4376,110675.8084,24934.37742,21
+284074,10603.43759,110019.9881,24277.79964,21
+284075,10603.43756,109552.4604,25631.90019,21
+284076,9979.709325,108941.7254,24305.21135,21
+284077,10603.43759,109039.4925,24318.54562,21
+284078,9352.833504,107835.2945,25675.00215,21
+284079,10603.43751,107561.5472,24345.88028,21
+284080,9979.709194,107069.0037,24359.17711,21
+284081,9352.833422,106996.5352,24372.46061,21
+284082,10603.43748,105681.4444,25732.03574,21
+284083,9352.833441,105924.8353,24399.69425,21
+284084,9352.833419,104979.5299,24412.94166,21
+284085,9979.709196,104736.5727,24426.17683,21
+284086,9352.83336,103917.243,24439.39988,21
+284087,9352.833358,103808.1735,25802.84429,21
+284088,9352.833404,103064.4607,23109.48438,21
+284089,9352.833398,102515.9961,25830.77522,21
+284090,8722.627659,102201.4709,23814.33703,21
+284091,9352.833348,101478.072,24505.67264,21
+284092,8722.627667,101171.0608,24518.82251,21
+284093,9352.822567,100106.4634,24531.96036,21
+284094,8088.532996,100356.0206,24545.0861,21
+284095,9353.008391,99325.56179,24558.19977,21
+284096,8088.786553,98983.33232,24571.30016,21
+284097,9352.782503,98348.92497,23903.17824,21
+284098,8088.840616,97996.33935,24597.12176,21
+284099,8088.840692,97109.57021,24610.18767,21
+284100,9352.783549,97188.56848,23257.00431,21
+284101,0,37657.51723,0,21
+284102,0,35084.91505,0,21
+284103,0,33836.24104,0,21
+284104,0,32989.98197,0,21
+284105,0,32174.7346,0,21
+284106,0,31336.18966,0,21
+284107,0,30678.22875,0,21
+284108,0,29920.69988,0,21
+284109,0,29347.83991,0,21
+284110,0,28745.99595,0,21
+284111,0,27862.49917,0,21
+284112,0,27320.62493,0,21
+284113,0,26956.96339,0,21
+284114,0,26133.72782,0,21
+284115,0,25372.09561,0,21
+284116,0,25228.20609,0,21
+284117,0,24130.46827,0,21
+284118,0,23877.38139,0,21
+284119,0,23034.05522,0,21
+284120,0,22578.79077,0,21
+284121,0,22037.89718,0,21
+284122,0,21471.44611,0,21
+284123,0,20937.61338,0,21
+284124,0,20172.59862,0,21
+284125,0,19844.14926,0,21
+284126,0,19367.2319,0,21
+284127,0,18770.82459,0,21
+284128,0,18282.80196,0,21
+284129,0,17715.46257,0,21
+284130,0,17323.13302,0,21
+284131,0,16729.02255,0,21
+284132,0,16269.60215,0,21
+284133,0,15669.91907,0,21
+284134,0,15472.10131,0,21
+284135,0,14600.03813,0,21
+284136,0,14572.03228,0,21
+284137,0,13744.78962,0,21
+284138,0,13377.73051,0,21
+284139,0,12921.68589,0,21
+284140,0,12595.20701,0,21
+284141,0,11810.37785,0,21
+284142,0,11601.82781,0,21
+284143,0,10887.71327,0,21
+284144,0,10856.89937,0,21
+284145,0,10122.18762,0,21
+284146,0,9887.288669,0,21
+284147,0,9805.677513,0,21
+284148,0,8866.365493,0,21
+284149,0,9029.203476,0,21
+284150,0,8538.117856,0,21
+284151,0,8072.044694,0,21
+284152,0,7724.298642,0,21
+284153,0,7480.707145,0,21
+284154,0,6960.800013,0,21
+284155,0,6668.365769,0,21
+284156,0,6381.183435,0,21
+284157,0,5850.140708,0,21
+284158,0,5551.331681,0,21
+284159,0,5257.435317,0,21
+284160,0,4728.084929,0,21
+284161,0,4404.586502,0,21
+284162,0,4404.589281,0,21
+284163,0,3992.737688,0,21
+284164,0,3797.280246,0,21
+284165,0,3291.302759,0,21
+284166,0,3188.542191,0,21
+284167,0,2939.605559,0,21
+284168,0,2557.773357,0,21
+284169,0,2581.333624,0,21
+284170,0,2477.511314,0,21
+284171,0,2470.306136,0,21
+284172,0,2413.451856,0,21
+284173,0,2373.007727,0,21
+284174,0,2325.180344,0,21
+284175,0,2308.514981,0,21
+284176,0,2243.746295,0,21
+284177,0,2178.691622,0,21
+284178,0,2178.691859,0,21
+284179,0,2096.468137,0,21
+284180,0,2072.116908,0,21
+284181,0,2030.769708,0,21
+284182,0,1981.757917,0,21
+284183,0,1947.714665,0,21
+284184,0,1873.718166,0,21
+284185,0,1856.607124,0,21
+284186,0,1814.637621,0,21
+284187,0,1747.606381,0,21
+284188,0,1722.606495,0,21
+284189,0,1680.234501,0,21
+284190,0,1612.511424,0,21
+284191,0,1595.072976,0,21
+284192,0,1544.42645,0,21
+284193,0,1501.480378,0,21
+284194,0,1483.896633,0,21
+284195,0,1407.12087,0,21
+284196,0,1397.392533,0,21
+284197,0,1337.872846,0,21
+284198,0,1302.31164,0,21
+284199,0,1276.391711,0,21
+284200,0,1232.477817,0,21
+284201,0,1232.477907,0,21
+284202,0,1188.386195,0,21
+284203,0,1117.833311,0,21
+284204,0,1117.833383,0,21
+284205,0,1046.803523,0,21
+284206,0,1001.941867,0,21
+284207,0,1001.941923,0,21
+284208,0,930.0923898,0,21
+284209,0,903.2086311,0,21
+284210,0,866.0411219,0,21
+284211,0,830.5812693,0,21
+284212,0,765.9224403,0,21
+284213,0,757.350257,0,21
+284214,0,719.6391516,0,21
+284215,0,636.7831565,0,21
+284216,0,645.4487081,0,21
+284217,0,575.7806968,0,21
+284218,0,542.4614856,0,21
+284219,0,514.2427749,0,21
+284220,0,466.3770482,0,21
+284221,0,311.1391909,0,21
+284222,0,231.58142,0,21
+284223,0,201.5253371,0,21
+284224,0,150.2306973,0,21
+284225,0,87.93983854,0,21
+284226,0,66.03394599,0,21
+284227,0,17.24314749,0,21
+284228,0,0,0,21
+284229,0,0,0,21
+284230,0,0,0,21
+284231,0,0,0,21
+284232,0,0,0,21
+284233,0,0,0,21
+284234,0,0,0,21
+284235,0,0,0,21
+284236,0,0,0,21
+284237,0,0,0,21
+284238,0,0,0,21
+284239,0,0,0,21
+284240,0,0,0,21
+284241,0,0,0,21
+284242,0,0,0,21
+284243,0,0,0,21
+284244,0,0,0,21
+284245,0,0,0,21
+284246,0,0,0,21
+284247,0,0,0,21
+284248,0,0,0,21
+284249,0,0,0,21
+284250,0,0,0,21
+284251,0,0,0,21
+284252,0,0,0,21
+284253,0,0,0,21
+284254,0,0,0,21
+284255,0,0,0,21
+284256,0,0,0,21
+284257,0,0,0,21
+284258,0,0,0,21
+284259,0,0,0,21
+284260,0,0,0,21
+284261,0,0,0,21
+284262,0,0,0,21
+284263,0,0,0,21
+284264,0,0,0,21
+284265,0,0,0,21
+284266,0,0,0,21
+284267,0,0,0,21
+284268,0,0,0,21
+284269,0,0,0,21
+284270,0,0,0,21
+284271,0,0,0,21
+284272,0,0,0,21
+284273,0,0,0,21
+284274,0,0,0,21
+284275,0,0,0,21
+284276,0,0,0,21
+284277,0,0,0,21
+284278,0,0,0,21
+284279,0,0,0,21
+284280,0,0,0,21
+284281,0,0,0,21
+284282,0,0,0,21
+284283,0,0,0,21
+284284,0,0,0,21
+284285,0,0,0,21
+284286,0,0,0,21
+284287,0,0,0,21
+284288,0,0,0,21
+284289,0,0,0,21
+284290,0,0,0,21
+284291,0,0,0,21
+284292,0,0,0,21
+284293,0,0,0,21
+284294,0,0,0,21
+284295,0,0,0,21
+284296,0,0,0,21
+284297,0,0,0,21
+284298,0,0,0,21
+284299,0,0,0,21
+284300,0,0,0,21
+284301,0,0,0,21
+284302,0,0,0,21
+284303,0,0,0,21
+284304,0,0,0,21
+284305,0,0,0,21
+284306,0,0,0,21
+284307,0,0,0,21
+284308,0,0,0,21
+284309,0,0,0,21
+284310,0,0,0,21
+284311,0,0,0,21
+284312,0,0,0,21
+284313,0,0,0,21
+284314,0,0,0,21
+284315,0,0,0,21
+284316,0,0,0,21
+284317,0,0,0,21
+284318,0,0,0,21
+284319,0,0,0,21
+284320,0,0,0,21
+284321,0,0,0,21
+284322,0,0,0,21
+284323,0,0,0,21
+284324,0,0,0,21
+284325,0,0,0,21
+284326,0,0,0,21
+284327,0,0,0,21
+284328,0,0,0,21
+284329,0,0,0,21
+284330,0,0,0,21
+284331,0,0,0,21
+284332,0,0,0,21
+284333,0,0,0,21
+284334,0,0,0,21
+284335,0,0,0,21
+284336,0,0,0,21
+284337,0,0,0,21
+284338,0,0,0,21
+284339,0,0,0,21
+284340,0,0,0,21
+284341,0,0,0,21
+284342,0,0,0,21
+284343,0,0,0,21
+284344,0,0,0,21
+284345,0,0,0,21
+284346,0,0,0,21
+284347,0,0,0,21
+284348,0,0,0,21
+284349,0,0,0,21
+284350,0,0,0,21
+284351,0,0,0,21
+284352,0,0,0,21
+284353,0,0,0,21
+284354,0,0,0,21
+284355,0,0,0,21
+284356,0,0,0,21
+284357,0,0,0,21
+284358,0,0,0,21
+284359,0,0,0,21
+284360,0,0,0,21
+284361,0,0,0,21
+284362,0,0,0,21
+284363,0,0,0,21
+284364,0,0,0,21
+284365,0,0,0,21
+284366,0,0,0,21
+284367,0,0,0,21
+284368,0,0,0,21
+284369,0,0,0,21
+284370,0,0,0,21
+284371,0,0,0,21
+284372,0,0,0,21
+284373,0,0,0,21
+284374,0,0,0,21
+284375,0,0,0,21
+284376,0,0,0,21
+284377,0,0,0,21
+284378,0,0,0,21
+284379,0,0,0,21
+284380,0,0,0,21
+284381,0,0,0,21
+284382,0,0,0,21
+284383,0,0,0,21
+284384,0,0,0,21
+284385,0,0,0,21
+284386,0,0,0,21
+284387,0,0,0,21
+284388,0,0,0,21
+284389,0,0,0,21
+284390,0,0,0,21
+284391,0,0,0,21
+284392,0,0,0,21
+284393,0,0,0,21
+284394,0,0,0,21
+284395,0,0,0,21
+284396,0,0,0,21
+284397,0,0,0,21
+284398,0,0,0,21
+284399,0,0,0,21
+284400,0,0,0,21
+284401,0,0,0,21
+284402,0,0,0,21
+284403,0,0,0,21
+284404,0,0,0,21
+284405,0,0,0,21
+284406,0,0,0,21
+284407,0,0,0,21
+284408,0,0,0,21
+284409,0,0,0,21
+284410,0,0,0,21
+284411,0,0,0,21
+284412,0,0,0,21
+284413,0,0,0,21
+284414,0,0,0,21
+284415,0,0,0,21
+284416,0,0,0,21
+284417,0,0,0,21
+284418,0,0,0,21
+284419,0,0,0,21
+284420,0,0,0,21
+284421,0,0,0,21
+284422,0,0,0,21
+284423,0,0,0,21
+284424,0,0,0,21
+284425,0,0,0,21
+284426,0,0,0,21
+284427,0,0,0,21
+284428,0,0,0,21
+284429,0,0,0,21
+284430,0,0,0,21
+284431,0,0,0,21
+284432,0,0,0,21
+284433,0,0,0,21
+284434,0,0,0,21
+284435,0,0,0,21
+284436,0,0,0,21
+284437,0,0,0,21
+284438,0,0,0,21
+284439,0,0,0,21
+284440,0,0,0,21
+284441,0,0,0,21
+284442,0,0,0,21
+284443,0,0,0,21
+284444,0,0,0,21
+284445,0,0,0,21
+284446,0,0,0,21
+284447,0,0,0,21
+284448,0,0,0,21
+284449,0,0,0,21
+284450,0,0,0,21
+284451,0,0,0,21
+284452,0,0,0,21
+284453,0,0,0,21
+284454,0,0,0,21
+284455,0,0,0,21
+284456,0,0,0,21
+284457,0,0,0,21
+284458,0,0,0,21
+284459,0,0,0,21
+284460,0,0,0,21
+284461,0,0,0,21
+284462,0,0,0,21
+284463,0,0,0,21
+284464,0,0,0,21
+284465,0,0,0,21
+284466,0,0,0,21
+284467,0,0,0,21
+284468,0,0,0,21
+284469,0,0,0,21
+284470,0,0,0,21
+284471,0,0,0,21
+284472,0,0,0,21
+284473,0,0,0,21
+284474,0,0,0,21
+284475,0,0,0,21
+284476,0,0,0,21
+284477,0,0,0,21
+284478,0,0,0,21
+284479,0,0,0,21
+284480,0,0,0,21
+284481,0,0,0,21
+284482,0,0,0,21
+284483,0,0,0,21
+284484,0,0,0,21
+284485,0,0,0,21
+284486,0,0,0,21
+284487,0,0,0,21
+284488,0,0,0,21
+284489,0,0,0,21
+284490,0,0,0,21
+284491,0,0,0,21
+284492,0,0,0,21
+284493,0,0,0,21
+284494,0,0,0,21
+284495,0,0,0,21
+284496,0,0,0,21
+284497,0,0,0,21
+284498,0,0,0,21
+284499,0,0,0,21
+284500,0,0,0,21
+284501,0,0,0,21
+284502,0,0,0,21
+284503,0,0,0,21
+284504,0,0,0,21
+284505,0,0,0,21
+284506,0,0,0,21
+284507,0,0,0,21
+284508,0,0,0,21
+284509,0,0,0,21
+284510,0,0,0,21
+284511,0,0,0,21
+284512,0,0,0,21
+284513,0,0,0,21
+284514,0,0,0,21
+284515,0,0,0,21
+284516,0,0,0,21
+284517,0,0,0,21
+284518,0,0,0,21
+284519,0,0,0,21
+284520,0,0,0,21
+284521,0,0,0,21
+284522,0,0,0,21
+284523,0,0,0,21
+284524,0,0,0,21
+284525,0,0,0,21
+284526,0,0,0,21
+284527,0,0,0,21
+284528,0,0,0,21
+284529,0,0,0,21
+284530,0,0,0,21
+284531,0,0,0,21
+284532,0,0,0,21
+284533,0,0,0,21
+284534,0,0,0,21
+284535,0,0,0,21
+284536,0,0,0,21
+284537,0,0,0,21
+284538,0,0,0,21
+284539,0,0,0,21
+284540,0,0,0,21
+284541,0,0,0,21
+284542,0,0,0,21
+284543,0,0,0,21
+284544,0,0,0,21
+284545,0,0,0,21
+284546,0,0,0,21
+284547,0,0,0,21
+284548,0,0,0,21
+284549,0,0,0,21
+284550,0,0,0,21
+284551,0,0,0,21
+284552,0,0,0,21
+284553,0,0,0,21
+284554,0,0,0,21
+284555,0,0,0,21
+284556,0,0,0,21
+284557,0,0,0,21
+284558,0,0,0,21
+284559,0,0,0,21
+284560,0,0,0,21
+284561,0,0,0,21
+284562,0,0,0,21
+284563,0,0,0,21
+284564,0,0,0,21
+284565,0,0,0,21
+284566,0,0,0,21
+284567,0,0,0,21
+284568,0,0,0,21
+284569,0,0,0,21
+284570,0,0,0,21
+284571,0,0,0,21
+284572,0,0,0,21
+284573,0,0,0,21
+284574,0,0,0,21
+284575,0,0,0,21
+284576,0,0,0,21
+284577,0,0,0,21
+284578,0,0,0,21
+284579,0,0,0,21
+284580,0,0,0,21
+284581,0,0,0,21
+284582,0,0,0,21
+284583,0,0,0,21
+284584,0,0,0,21
+284585,0,0,0,21
+284586,0,0,0,21
+284587,0,0,0,21
+284588,0,0,0,21
+284589,0,0,0,21
+284590,0,0,0,21
+284591,0,0,0,21
+284592,0,0,0,21
+284593,0,0,0,21
+284594,0,0,0,21
+284595,0,0,0,21
+284596,0,0,0,21
+284597,0,0,0,21
+284598,0,0,0,21
+284599,0,0,0,21
+284600,0,0,0,21
+284601,0,0,0,21
+284602,0,0,0,21
+284603,0,0,0,21
+284604,0,0,0,21
+284605,0,0,0,21
+284606,0,0,0,21
+284607,0,0,0,21
+284608,0,0,0,21
+284609,0,0,0,21
+284610,0,0,0,21
+284611,0,0,0,21
+284612,0,0,0,21
+284613,0,0,0,21
+284614,0,0,0,21
+284615,0,0,0,21
+284616,0,0,0,21
+284617,0,0,0,21
+284618,0,0,0,21
+284619,0,0,0,21
+284620,0,0,0,21
+284621,0,0,0,21
+284622,0,0,0,21
+284623,0,0,0,21
+284624,0,0,0,21
+284625,0,0,0,21
+284626,0,0,0,21
+284627,0,0,0,21
+284628,0,0,0,21
+284629,0,0,0,21
+284630,0,0,0,21
+284631,0,0,0,21
+284632,0,0,0,21
+284633,0,0,0,21
+284634,0,0,0,21
+284635,0,0,0,21
+284636,0,0,0,21
+284637,0,0,0,21
+284638,0,0,0,21
+284639,0,0,0,21
+284640,0,0,0,21
+284641,0,0,0,21
+284642,0,0,0,21
+284643,0,0,0,21
+284644,0,0,0,21
+284645,0,0,0,21
+284646,0,0,0,21
+284647,0,0,0,21
+284648,0,0,0,21
+284649,0,0,0,21
+284650,0,0,0,21
+284651,0,0,0,21
+284652,0,0,0,21
+284653,0,0,0,21
+284654,0,0,0,21
+284655,0,0,0,21
+284656,0,0,0,21
+284657,0,0,0,21
+284658,0,0,0,21
+284659,0,0,0,21
+284660,0,0,0,21
+284661,0,0,0,21
+284662,0,0,0,21
+284663,0,0,0,21
+284664,0,0,0,21
+284665,0,0,0,21
+284666,0,0,0,21
+284667,0,0,0,21
+284668,0,0,0,21
+284669,0,0,0,21
+284670,0,0,0,21
+284671,0,0,0,21
+284672,0,0,0,21
+284673,0,0,0,21
+284674,0,0,0,21
+284675,0,0,0,21
+284676,0,0,0,21
+284677,0,0,0,21
+284678,0,0,0,21
+284679,0,0,0,21
+284680,0,0,0,21
+284681,0,0,0,21
+284682,0,0,0,21
+284683,0,0,0,21
+284684,0,0,0,21
+284685,0,0,0,21
+284686,0,0,0,21
+284687,0,0,0,21
+284688,0,0,0,21
+284689,0,0,0,21
+284690,0,0,0,21
+284691,0,0,0,21
+284692,0,0,0,21
+284693,0,0,0,21
+284694,0,0,0,21
+284695,0,0,0,21
+284696,0,0,0,21
+284697,0,0,0,21
+284698,0,0,0,21
+284699,0,0,0,21
+284700,0,0,0,21
+284701,0,0,0,21
+284702,0,0,0,21
+284703,0,0,0,21
+284704,0,0,0,21
+284705,0,0,0,21
+284706,0,0,0,21
+284707,0,0,0,21
+284708,0,0,0,21
+284709,0,0,0,21
+284710,0,0,0,21
+284711,0,0,0,21
+284712,0,0,0,21
+284713,0,0,0,21
+284714,0,0,0,21
+284715,0,0,0,21
+284716,0,0,0,21
+284717,0,0,0,21
+284718,0,0,0,21
+284719,0,0,0,21
+284720,0,0,0,21
+284721,0,0,0,21
+284722,0,0,0,21
+284723,0,0,0,21
+284724,0,0,0,21
+284725,0,0,0,21
+284726,0,0,0,21
+284727,0,0,0,21
+284728,0,0,0,21
+284729,0,0,0,21
+284730,0,0,0,21
+284731,0,0,0,21
+284732,0,0,0,21
+284733,0,0,0,21
+284734,0,0,0,21
+284735,0,0,0,21
+284736,0,0,0,21
+284737,0,0,0,21
+284738,0,0,0,21
+284739,0,0,0,21
+284740,0,0,0,21
+284741,0,0,0,21
+284742,0,0,0,21
+284743,0,0,0,21
+284744,0,0,0,21
+284745,0,84.86132386,0,21
+284746,0,104.9785206,0,21
+284747,0,1566.945583,0,21
+284748,0,996.3932912,0,21
+284749,0,1448.581054,0,21
+284750,0,1829.731486,0,21
+284751,0,1923.99911,0,21
+284752,0,2141.346256,0,21
+284753,0,2338.112317,0,21
+284754,0,2533.563381,0,21
+284755,0,2746.556473,0,21
+284756,0,2930.235151,0,21
+284757,0,3150.058175,0,21
+284758,0,3331.687136,0,21
+284759,0,3558.714881,0,21
+284760,0,3738.07442,0,21
+284761,0,3953.722954,0,21
+284762,0,4104.196202,0,21
+284763,0,4345.085827,0,21
+284764,0,4494.261302,0,21
+284765,0,4566.597742,0,21
+284766,0,4881.039132,0,21
+284767,0,4952.756885,0,21
+284768,0,5246.97786,0,21
+284769,0,5291.517187,0,21
+284770,0,5504.282629,0,21
+284771,0,5663.3154,0,21
+284772,0,6006.131292,0,21
+284773,0,5887.757618,0,21
+284774,0,6220.52405,0,21
+284775,0,6407.910584,0,21
+284776,0,6451.364244,0,21
+284777,0,6763.541104,0,21
+284778,0,8866.692382,0,21
+284779,0,8689.201227,0,21
+284780,0,8994.249391,0,21
+284781,0,9760.30336,0,21
+284782,0,10092.95615,0,21
+284783,0,10445.25811,0,21
+284784,0,10880.56227,0,21
+284785,0,11322.21347,0,21
+284786,0,11677.48746,0,21
+284787,0,12009.88441,0,21
+284788,0,12501.08461,0,21
+284789,0,13154.89146,0,21
+284790,0,13196.65866,0,21
+284791,0,13724.05942,0,21
+284792,0,14078.38957,0,21
+284793,0,14531.7522,0,21
+284794,0,14635.10629,0,21
+284795,0,15402.9377,0,21
+284796,0,15197.51249,0,21
+284797,0,15640.50871,0,21
+284798,0,16239.59625,0,21
+284799,0,16215.0584,0,21
+284800,0,16813.21138,0,21
+284801,0,17005.64518,0,21
+284802,0,17464.99266,0,21
+284803,0,17775.18585,0,21
+284804,0,17873.16069,0,21
+284805,0,18406.24488,0,21
+284806,0,18398.20967,0,21
+284807,0,19050.06143,0,21
+284808,0,19159.62976,0,21
+284809,0,19626.35866,0,21
+284810,0,19823.86271,0,21
+284811,0,19932.93917,0,21
+284812,0,20569.60281,0,21
+284813,0,20788.52068,0,21
+284814,0,20820.46519,0,21
+284815,0,21295.55228,0,21
+284816,0,21592.60714,0,21
+284817,0,21910.01713,0,21
+284818,0,22097.06123,0,21
+284819,0,22313.54162,0,21
+284820,0,22553.25786,0,21
+284821,0,24533.96662,0,21
+284822,0,24588.58421,0,21
+284823,0,25256.86208,0,21
+284824,0,25522.81945,0,21
+284825,0,25894.04721,0,21
+284826,0,26256.75119,0,21
+284827,0,26416.17539,0,21
+284828,0,26979.67307,0,21
+284829,0,27204.11402,0,21
+284830,0,27536.85607,0,21
+284831,0,27915.26663,0,21
+284832,0,28254.33868,0,21
+284833,0,28304.09087,0,21
+284834,0,29160.36556,0,21
+284835,0,28921.58805,0,21
+284836,0,29474.14456,0,21
+284837,0,29830.9258,0,21
+284838,0,30050.21467,0,21
+284839,0,30341.79648,0,21
+284840,0,30843.6358,0,21
+284841,0,30969.32562,0,21
+284842,0,31225.93695,0,21
+284843,0,31735.66892,0,21
+284844,0,31373.84993,0,21
+284845,0,32473.33909,0,21
+284846,0,31943.2743,0,21
+284847,0,32613.0558,0,21
+284848,0,33193.04531,0,21
+284849,0,32672.66832,0,21
+284850,0,33880.38837,0,21
+284851,0,33369.40833,0,21
+284852,0,34441.47617,0,21
+284853,0,34201.93907,0,21
+284854,0,34816.27927,0,21
+284855,0,35114.49224,0,21
+284856,0,35313.49106,0,21
+284857,0,36007.67584,0,21
+284858,0,35992.99154,0,21
+284859,0,36501.67689,0,21
+284860,0,36728.39274,0,21
+284861,0,37122.34547,0,21
+284862,0,37682.1268,0,21
+284863,0,37745.69848,0,21
+284864,0,38312.17993,0,21
+284865,0,38988.87933,0,21
+284866,0,39064.17523,0,21
+284867,0,39335.52059,0,21
+284868,0,40120.70782,0,21
+284869,0,40272.92264,0,21
+284870,0,40571.16748,0,21
+284871,0,41183.60729,0,21
+284872,0,41391.14426,0,21
+284873,0,42292.35484,0,21
+284874,0,42258.09033,0,21
+284875,0,43129.58148,0,21
+284876,0,43175.82506,0,21
+284877,0,43714.23395,0,21
+284878,0,44245.52326,0,21
+284879,0,44465.71066,0,21
+284880,0,44911.90233,0,21
+284881,0,45225.59853,0,21
+284882,0,45755.04126,0,21
+284883,0,45832.2904,0,21
+284884,0,46210.99054,0,21
+284885,0,46713.04507,0,21
+284886,0,48727.18231,0,21
+284887,0,49037.20478,0,21
+284888,0,49686.50075,0,21
+284889,0,50528.87013,0,21
+284890,0,50840.4702,0,21
+284891,0,51875.46263,0,21
+284892,0,52156.39019,0,21
+284893,0,53113.7468,0,21
+284894,0,53473.87665,0,21
+284895,0,54342.75351,0,21
+284896,0,54641.15562,0,21
+284897,0,55652.6183,0,21
+284898,0,56158.09706,0,21
+284899,0,56432.05274,0,21
+284900,0,57558.13518,0,21
+284901,0,57851.86655,0,21
+284902,0,58542.27066,0,21
+284903,0,59122.3439,0,21
+284904,0,59538.2402,0,21
+284905,0,60611.86651,0,21
+284906,0,60702.07452,0,21
+284907,0,61711.18539,0,21
+284908,0,61940.46098,0,21
+284909,0,62606.23135,0,21
+284910,0,63763.00948,0,21
+284911,0,63267.09259,0,21
+284912,0,64476.45323,0,21
+284913,0,64475.16831,0,21
+284914,0,65052.82849,0,21
+284915,0,65734.44007,0,21
+284916,0,65504.29114,0,21
+284917,0,66666.60194,0,21
+284918,0,66626.53028,0,21
+284919,0,67091.73775,0,21
+284920,0,67581.69792,0,21
+284921,0,68046.67028,0,21
+284922,0,68088.37072,0,21
+284923,0,68978.80195,0,21
+284924,0,68810.66123,0,21
+284925,0,69783.91223,0,21
+284926,0,69529.08174,0,21
+284927,0,70079.83516,0,21
+284928,0,70846.75635,0,21
+284929,0,70688.39539,0,21
+284930,0,71244.48209,0,21
+284931,0,71475.29781,0,21
+284932,0,72024.40464,0,21
+284933,0,72228.85132,0,21
+284934,0,72356.38729,0,21
+284935,0,73156.41176,0,21
+284936,0,72894.12926,0,21
+284937,0,74070.97394,0,21
+284938,0,73678.26704,0,21
+284939,0,74230.05889,0,21
+284940,0,74351.89064,0,21
+284941,0,0,0,21
+284942,0,0,0,21
+284943,0,0,0,21
+284944,0,0,0,21
+284945,0,0,830689.0182,21
+284946,327611.3037,360765.4485,0,21
+284947,0,0,0,21
+284948,0,0,0,21
+284949,0,0,0,21
+284950,0,0,0,21
+284951,0,0,0,21
+284952,0,0,0,21
+284953,0,0,0,21
+284954,0,0,0,21
+284955,0,0,0,21
+284956,0,0,0,21
+284957,0,0,0,21
+284958,0,0,0,21
+284959,0,0,0,21
+284960,0,0,0,21
+284961,0,0,0,21
+284962,0,0,0,21
+284963,0,0,0,21
+284964,0,0,0,21
+284965,0,0,0,21
+284966,0,0,0,21
+284967,0,0,0,21
+284968,0,0,0,21
+284969,0,0,0,21
+284970,0,0,0,21
+284971,0,0,0,21
+284972,0,0,0,21
+284973,0,0,0,21
+284974,0,0,0,21
+284975,0,0,0,21
+284976,0,0,0,21
+284977,0,0,0,21
+284978,0,0,0,21
+284979,0,0,816132.6769,21
+284980,0,0,0,21
+284981,328056.2875,362945.0667,0,21
+284982,0,0,0,21
+284983,0,0,0,21
+284984,0,0,0,21
+284985,0,0,0,21
+284986,0,0,0,21
+284987,0,0,0,21
+284988,0,0,0,21
+284989,0,0,0,21
+284990,0,0,0,21
+284991,0,0,0,21
+284992,0,0,0,21
+284993,0,0,0,21
+284994,0,0,0,21
+284995,0,0,0,21
+284996,0,0,0,21
+284997,0,0,0,21
+284998,0,0,0,21
+284999,0,0,0,21
+285000,0,0,0,15.6
+285001,0,0,0,15.6
+285002,0,0,0,15.6
+285003,0,0,0,15.6
+285004,0,0,0,15.6
+285005,0,0,0,15.6
+285006,0,0,0,15.6
+285007,0,0,0,15.6
+285008,0,0,0,15.6
+285009,0,0,0,15.6
+285010,0,0,0,15.6
+285011,0,0,0,15.6
+285012,0,0,0,15.6
+285013,0,0,803257.9533,15.6
+285014,0,0,0,15.6
+285015,0,0,0,15.6
+285016,330098.4071,364302.4274,0,15.6
+285017,0,0,0,15.6
+285018,0,0,0,15.6
+285019,0,0,0,15.6
+285020,0,0,0,15.6
+285021,0,0,0,15.6
+285022,0,0,0,15.6
+285023,0,0,0,15.6
+285024,0,0,0,15.6
+285025,0,0,0,15.6
+285026,0,0,0,15.6
+285027,0,0,0,15.6
+285028,0,0,0,15.6
+285029,0,0,0,15.6
+285030,0,0,0,15.6
+285031,0,0,0,15.6
+285032,0,0,0,15.6
+285033,0,0,0,15.6
+285034,0,0,0,15.6
+285035,0,0,0,15.6
+285036,0,0,0,15.6
+285037,0,0,0,15.6
+285038,0,0,0,15.6
+285039,0,0,0,15.6
+285040,0,0,0,15.6
+285041,0,0,0,15.6
+285042,0,0,0,15.6
+285043,0,0,0,15.6
+285044,0,0,0,15.6
+285045,0,0,0,15.6
+285046,0,0,0,15.6
+285047,0,0,791211.9274,15.6
+285048,0,0,0,15.6
+285049,0,0,0,15.6
+285050,0,0,0,15.6
+285051,331049.1165,365138.9474,0,15.6
+285052,0,0,0,15.6
+285053,0,0,0,15.6
+285054,0,0,0,15.6
+285055,0,0,0,15.6
+285056,0,0,0,15.6
+285057,0,0,0,15.6
+285058,0,0,0,15.6
+285059,0,0,0,15.6
+285060,0,0,0,15.6
+285061,0,0,0,15.6
+285062,0,0,0,15.6
+285063,0,0,0,15.6
+285064,0,0,0,15.6
+285065,0,0,0,15.6
+285066,0,0,0,15.6
+285067,0,0,0,15.6
+285068,0,0,0,15.6
+285069,0,0,0,15.6
+285070,0,0,0,15.6
+285071,0,0,0,15.6
+285072,0,0,0,15.6
+285073,0,0,0,15.6
+285074,0,0,0,15.6
+285075,0,0,0,15.6
+285076,0,0,0,15.6
+285077,0,0,0,15.6
+285078,0,0,0,15.6
+285079,0,0,0,15.6
+285080,0,0,0,15.6
+285081,0,0,780072.8508,15.6
+285082,0,0,0,15.6
+285083,0,0,0,15.6
+285084,0,0,0,15.6
+285085,0,0,0,15.6
+285086,333434.9139,365112.7366,0,15.6
+285087,0,0,0,15.6
+285088,0,0,0,15.6
+285089,0,0,0,15.6
+285090,0,0,0,15.6
+285091,0,0,0,15.6
+285092,0,0,0,15.6
+285093,0,0,0,15.6
+285094,0,0,0,15.6
+285095,0,0,0,15.6
+285096,0,0,0,15.6
+285097,0,0,0,15.6
+285098,0,0,0,15.6
+285099,0,0,0,15.6
+285100,0,0,0,15.6
+285101,0,0,0,15.6
+285102,0,0,0,15.6
+285103,0,0,0,15.6
+285104,0,0,0,15.6
+285105,0,0,0,15.6
+285106,0,0,0,15.6
+285107,0,0,0,15.6
+285108,0,0,0,15.6
+285109,0,0,0,15.6
+285110,0,0,0,15.6
+285111,0,0,0,15.6
+285112,0,0,0,15.6
+285113,0,0,0,15.6
+285114,0,0,0,15.6
+285115,0,0,770022.1515,15.6
+285116,0,0,0,15.6
+285117,0,0,0,15.6
+285118,0,0,0,15.6
+285119,0,0,0,15.6
+285120,0,0,0,15.6
+285121,334802.7924,364680.2824,0,15.6
+285122,0,0,0,15.6
+285123,0,0,0,15.6
+285124,0,0,0,15.6
+285125,0,0,0,15.6
+285126,0,0,0,15.6
+285127,0,0,0,15.6
+285128,0,0,0,15.6
+285129,0,0,0,15.6
+285130,0,0,0,15.6
+285131,0,0,0,15.6
+285132,0,0,0,15.6
+285133,0,0,0,15.6
+285134,0,0,0,15.6
+285135,0,0,0,15.6
+285136,0,0,0,15.6
+285137,0,0,0,15.6
+285138,0,0,0,15.6
+285139,0,0,0,15.6
+285140,0,0,0,15.6
+285141,0,0,0,15.6
+285142,0,0,0,15.6
+285143,0,0,0,15.6
+285144,0,0,0,15.6
+285145,0,0,0,15.6
+285146,0,0,0,15.6
+285147,0,0,0,15.6
+285148,0,0,0,15.6
+285149,0,0,760204.5374,15.6
+285150,0,0,0,15.6
+285151,0,0,0,15.6
+285152,0,0,0,15.6
+285153,0,0,0,15.6
+285154,0,0,0,15.6
+285155,0,0,0,15.6
+285156,335701.0479,369417.4642,0,15.6
+285157,0,0,0,15.6
+285158,0,0,0,15.6
+285159,0,0,0,15.6
+285160,0,0,0,15.6
+285161,0,0,0,15.6
+285162,0,0,0,15.6
+285163,0,0,0,15.6
+285164,0,0,0,15.6
+285165,0,0,0,15.6
+285166,0,0,0,15.6
+285167,0,0,0,15.6
+285168,0,0,0,15.6
+285169,0,0,0,15.6
+285170,0,0,0,15.6
+285171,0,0,0,15.6
+285172,0,0,0,15.6
+285173,0,0,0,15.6
+285174,0,0,0,15.6
+285175,0,0,0,15.6
+285176,0,0,0,15.6
+285177,0,0,0,15.6
+285178,0,0,0,15.6
+285179,0,0,0,15.6
+285180,0,0,0,15.6
+285181,0,0,0,15.6
+285182,0,0,0,15.6
+285183,0,0,750956.8194,15.6
+285184,0,0,0,15.6
+285185,0,0,0,15.6
+285186,0,0,0,15.6
+285187,0,0,0,15.6
+285188,0,0,0,15.6
+285189,0,0,0,15.6
+285190,0,0,0,15.6
+285191,334601.88,369417.1216,0,15.6
+285192,0,0,0,15.6
+285193,0,0,0,15.6
+285194,0,0,0,15.6
+285195,0,0,0,15.6
+285196,0,0,0,15.6
+285197,0,0,0,15.6
+285198,0,0,0,15.6
+285199,0,0,0,15.6
+285200,0,0,0,15.6
+285201,0,0,0,15.6
+285202,0,0,0,15.6
+285203,0,0,0,15.6
+285204,0,0,0,15.6
+285205,0,0,0,15.6
+285206,0,0,0,15.6
+285207,0,0,0,15.6
+285208,0,0,0,15.6
+285209,0,0,0,15.6
+285210,0,0,0,15.6
+285211,0,0,0,15.6
+285212,0,0,0,15.6
+285213,0,0,0,15.6
+285214,0,0,0,15.6
+285215,0,0,0,15.6
+285216,0,0,0,15.6
+285217,0,0,743791.3875,15.6
+285218,0,0,0,15.6
+285219,0,0,0,15.6
+285220,0,0,0,15.6
+285221,0,0,0,15.6
+285222,0,0,0,15.6
+285223,0,0,0,15.6
+285224,0,0,0,15.6
+285225,0,0,0,15.6
+285226,335167.2892,369416.1234,0,15.6
+285227,0,0,0,15.6
+285228,0,0,0,15.6
+285229,0,0,0,15.6
+285230,0,0,0,15.6
+285231,0,0,0,15.6
+285232,0,0,0,15.6
+285233,0,0,0,15.6
+285234,0,0,0,15.6
+285235,0,0,0,15.6
+285236,0,0,0,15.6
+285237,0,0,0,15.6
+285238,0,0,0,15.6
+285239,0,0,0,15.6
+285240,0,0,0,15.6
+285241,0,0,0,15.6
+285242,0,0,0,15.6
+285243,0,0,0,15.6
+285244,0,0,0,15.6
+285245,0,0,0,15.6
+285246,0,0,0,15.6
+285247,0,0,0,15.6
+285248,0,0,0,15.6
+285249,0,0,0,15.6
+285250,0,0,0,15.6
+285251,0,0,736289.9527,15.6
+285252,0,0,0,15.6
+285253,0,0,0,15.6
+285254,0,0,0,15.6
+285255,0,0,0,15.6
+285256,0,0,0,15.6
+285257,0,0,0,15.6
+285258,0,0,0,15.6
+285259,0,0,0,15.6
+285260,0,0,0,15.6
+285261,336469.1626,369415.7106,0,15.6
+285262,0,0,0,15.6
+285263,0,0,0,15.6
+285264,0,0,0,15.6
+285265,0,0,0,15.6
+285266,0,0,0,15.6
+285267,0,0,0,15.6
+285268,0,0,0,15.6
+285269,0,0,0,15.6
+285270,0,0,0,15.6
+285271,0,0,0,15.6
+285272,0,0,0,15.6
+285273,0,0,0,15.6
+285274,0,0,0,15.6
+285275,0,0,0,15.6
+285276,0,0,0,15.6
+285277,0,0,0,15.6
+285278,0,0,0,15.6
+285279,0,0,0,15.6
+285280,0,0,0,15.6
+285281,0,0,0,15.6
+285282,0,0,0,15.6
+285283,0,0,0,15.6
+285284,0,0,0,15.6
+285285,0,0,729429.1289,15.6
+285286,0,0,0,15.6
+285287,0,0,0,15.6
+285288,0,0,0,15.6
+285289,0,0,0,15.6
+285290,0,0,0,15.6
+285291,0,0,0,15.6
+285292,0,0,0,15.6
+285293,0,0,0,15.6
+285294,0,0,0,15.6
+285295,0,0,0,15.6
+285296,337181.603,369415.6344,0,15.6
+285297,0,0,0,15.6
+285298,0,0,0,15.6
+285299,0,0,0,15.6
+285300,0,0,0,15.6
+285301,0,0,0,15.6
+285302,0,0,0,15.6
+285303,0,0,0,15.6
+285304,0,0,0,15.6
+285305,0,0,0,15.6
+285306,0,0,0,15.6
+285307,0,0,0,15.6
+285308,0,0,0,15.6
+285309,0,0,0,15.6
+285310,0,0,0,15.6
+285311,0,0,0,15.6
+285312,0,0,0,15.6
+285313,0,0,0,15.6
+285314,0,0,0,15.6
+285315,0,0,0,15.6
+285316,0,0,0,15.6
+285317,0,0,0,15.6
+285318,0,0,0,15.6
+285319,0,0,723813.122,15.6
+285320,0,0,0,15.6
+285321,0,0,0,15.6
+285322,0,0,0,15.6
+285323,0,0,0,15.6
+285324,0,0,0,15.6
+285325,0,0,0,15.6
+285326,0,0,0,15.6
+285327,0,0,0,15.6
+285328,0,0,0,15.6
+285329,0,0,0,15.6
+285330,335273.7621,0,0,15.6
+285331,0,369415.7327,0,15.6
+285332,0,0,0,15.6
+285333,0,0,0,15.6
+285334,0,0,0,15.6
+285335,0,0,0,15.6
+285336,0,0,0,15.6
+285337,0,0,0,15.6
+285338,0,0,0,15.6
+285339,0,0,0,15.6
+285340,0,0,0,15.6
+285341,0,0,0,15.6
+285342,0,0,0,15.6
+285343,0,0,0,15.6
+285344,0,0,0,15.6
+285345,0,0,0,15.6
+285346,0,0,0,15.6
+285347,0,0,0,15.6
+285348,0,0,0,15.6
+285349,0,0,0,15.6
+285350,0,0,0,15.6
+285351,0,0,0,15.6
+285352,0,0,0,15.6
+285353,0,0,718020.9772,15.6
+285354,0,0,0,15.6
+285355,0,0,0,15.6
+285356,0,0,0,15.6
+285357,0,0,0,15.6
+285358,0,0,0,15.6
+285359,0,0,0,15.6
+285360,0,0,0,17.8
+285361,0,0,0,17.8
+285362,0,0,0,17.8
+285363,0,0,0,17.8
+285364,336930.3138,0,0,17.8
+285365,0,369415.3855,0,17.8
+285366,0,0,0,17.8
+285367,0,257554.6448,0,17.8
+285368,0,0,0,17.8
+285369,0,0,0,17.8
+285370,0,0,0,17.8
+285371,0,0,0,17.8
+285372,0,0,0,17.8
+285373,0,0,0,17.8
+285374,0,0,0,17.8
+285375,0,0,0,17.8
+285376,0,0,0,17.8
+285377,0,0,0,17.8
+285378,0,0,0,17.8
+285379,0,0,0,17.8
+285380,0,0,0,17.8
+285381,0,0,0,17.8
+285382,0,8114.273686,0,17.8
+285383,0,24918.4879,0,17.8
+285384,0,13066.47279,0,17.8
+285385,0,28227.50141,0,17.8
+285386,0,23592.5028,0,17.8
+285387,0,25206.09494,712973.1201,17.8
+285388,0,25849.58154,0,17.8
+285389,0,26112.47167,0,17.8
+285390,0,27070.81587,0,17.8
+285391,0,27070.81451,0,17.8
+285392,0,27706.45595,0,17.8
+285393,0,29675.36899,0,17.8
+285394,0,29668.38051,0,17.8
+285395,0,30336.5033,0,17.8
+285396,0,30593.51912,0,17.8
+285397,0,31565.05475,0,17.8
+285398,337471.1952,31878.54125,0,17.8
+285399,0,401729.8905,0,17.8
+285400,0,32966.45827,0,17.8
+285401,0,33246.10513,0,17.8
+285402,0,33860.57126,0,17.8
+285403,0,34355.43589,0,17.8
+285404,0,34747.11952,0,17.8
+285405,0,0,0,17.8
+285406,0,0,0,17.8
+285407,0,0,0,17.8
+285408,0,0,0,17.8
+285409,0,0,0,17.8
+285410,0,0,0,17.8
+285411,0,0,0,17.8
+285412,0,0,0,17.8
+285413,0,0,0,17.8
+285414,0,0,0,17.8
+285415,0,0,0,17.8
+285416,0,0,0,17.8
+285417,0,0,0,17.8
+285418,0,0,0,17.8
+285419,0,0,0,17.8
+285420,0,0,0,20
+285421,43908.60768,41221.62762,708945.5093,20
+285422,0,10646.21312,0,20
+285423,1113.299904,113506.3889,0,20
+285424,1113.299901,130094.9535,0,20
+285425,1374.629137,119876.2939,0,20
+285426,1503.866529,120353.9032,0,20
+285427,1759.833657,125601.5142,0,20
+285428,2012.803523,125639.8334,0,20
+285429,3121.997707,125841.8677,0,20
+285430,3726.079185,126611.0385,0,20
+285431,3494.705789,125686.3045,0,20
+285432,3875.045046,126260.4868,0,20
+285433,4119.657901,126485.169,0,20
+285434,4159.364159,126062.2377,0,20
+285435,4522.610951,126959.936,0,20
+285436,4548.952311,126862.5705,0,20
+285437,4695.357378,126775.7334,0,20
+285438,4947.475525,127113.1687,0,20
+285439,5079.426932,127540.0583,0,20
+285440,5223.959904,127155.9731,0,20
+285441,5223.959915,127800.1438,0,20
+285442,5603.06934,127570.0391,0,20
+285443,5498.65818,127974.5337,0,20
+285444,5862.521162,128359.3504,0,20
+285445,5745.896766,127763.8985,0,20
+285446,6004.546998,128621.1489,0,20
+285447,6261.733413,128867.3142,0,20
+285448,6004.547012,128585.9363,0,20
+285449,6517.509725,128637.3656,0,20
+285450,6389.794649,129437.2471,0,20
+285451,6517.50973,128687.6773,0,20
+285452,6771.92474,129414.8563,0,20
+285453,6644.884544,128667.3642,0,20
+285454,6771.924736,129167.5279,0,20
+285455,6911.31551,128994.8312,0,20
+285456,6885.94534,128357.7832,0,20
+285457,7037.685236,129031.1031,0,20
+285458,7025.028031,128596.8506,0,20
+285459,7276.851084,128755.1067,0,20
+285460,7151.096618,128178.8281,0,20
+285461,7402.296115,128346.4324,0,20
+285462,7276.851147,128356.5319,0,20
+285463,7527.436136,127868.5938,0,20
+285464,7527.422731,128190.141,0,20
+285465,7527.430305,127760.8536,0,20
+285466,7664.816341,127844.1742,0,20
+285467,7751.695504,127555.1972,0,20
+285468,7677.34181,127407.1262,0,20
+285469,7776.811569,127196.5009,0,20
+285470,7999.992366,127621.7758,0,20
+285471,7801.840916,127148.8763,0,20
+285472,8012.51781,127396.1066,0,20
+285473,8025.021786,126411.2368,0,20
+285474,8025.021751,127335.1881,0,20
+285475,8025.021774,126385.7129,0,20
+285476,8272.091041,126601.5686,0,20
+285477,8025.021742,126109.4054,0,20
+285478,8272.091046,126389.8337,0,20
+285479,8272.0911,125843.2297,0,20
+285480,8259.629872,125816.1838,0,21
+285481,6657.617693,119101.109,0,21
+285482,6542.986,117638.8362,0,21
+285483,6274.530666,117437.2385,0,21
+285484,6530.261334,117054.0335,0,21
+285485,6287.301254,116573.349,0,21
+285486,6287.300925,116244.0346,0,21
+285487,6402.56904,115498.9571,0,21
+285488,6287.301303,115375.5795,0,21
+285489,6287.301022,114605.2006,0,21
+285490,6261.737117,114369.3811,0,21
+285491,6287.301266,114257.66,0,21
+285492,6287.301251,113032.9939,0,21
+285493,6146.140117,113476.4369,0,21
+285494,6274.530374,112353.1392,0,21
+285495,6158.933632,112832.607,0,21
+285496,6261.737127,111393.5865,0,21
+285497,6030.207128,111578.3041,0,21
+285498,6261.737009,111018.5737,0,21
+285499,6030.207422,110587.1256,0,21
+285500,6146.139823,110267.2892,0,21
+285501,6004.550332,109088.2888,0,21
+285502,6030.207415,109246.3382,0,21
+285503,6120.482834,108534.7412,0,21
+285504,5901.115537,108062.6272,0,21
+285505,6004.550432,107875.4392,0,21
+285506,6004.550424,107057.9416,0,21
+285507,5888.275082,107013.0725,0,21
+285508,5862.524268,106504.2135,0,21
+285509,5888.275199,105911.8174,0,21
+285510,5862.524121,105819.1494,0,21
+285511,5745.899804,104800.2206,0,21
+285512,5745.899783,104749.3932,0,21
+285513,5720.053499,104180.1969,0,21
+285514,5498.661025,103120.0268,0,21
+285515,5707.094546,103270.4909,0,21
+285516,5368.006319,102585.2195,0,21
+285517,5459.783477,101702.5097,0,21
+285518,5459.78347,100229.5823,0,21
+285519,5197.922097,98776.3424,0,21
+285520,5223.962532,98718.34139,0,21
+285521,5184.865225,97591.49439,0,21
+285522,5066.371814,97480.57534,0,21
+285523,4947.40867,96633.22495,0,21
+285524,4934.405727,95708.68461,0,21
+285525,4908.148922,95445.98148,0,21
+285526,4695.348133,94965.96101,0,21
+285527,4642.770743,93780.43959,0,21
+285528,4801.984439,93848.28668,0,21
+285529,4655.956401,92844.60007,0,21
+285530,4642.771813,91832.94897,0,21
+285531,4535.790567,92032.20743,0,21
+285532,4496.162359,90459.51356,0,21
+285533,4401.992874,90590.35917,0,21
+285534,4348.998897,89715.0038,0,21
+285535,4132.9164,89013.0571,0,21
+285536,4227.922209,88402.3483,0,21
+285537,4093.052846,88110.36761,0,21
+285538,3957.661547,86933.85645,0,21
+285539,3835.098792,86681.50862,0,21
+285540,3821.713385,85716.73642,0,21
+285541,0,38378.50485,0,21
+285542,0,35482.73868,0,21
+285543,0,34631.55397,0,21
+285544,0,33634.65133,0,21
+285545,0,33253.84978,0,21
+285546,0,32528.55433,0,21
+285547,0,31742.4621,0,21
+285548,0,31122.99729,0,21
+285549,0,30890.00938,0,21
+285550,0,29869.84879,0,21
+285551,0,29826.61558,0,21
+285552,0,28793.37385,0,21
+285553,0,28549.53364,0,21
+285554,0,27716.83921,0,21
+285555,0,27443.35138,0,21
+285556,0,26641.12766,0,21
+285557,0,26058.14291,0,21
+285558,0,25774.12976,0,21
+285559,0,25190.79681,0,21
+285560,0,24551.47461,0,21
+285561,0,24138.94662,0,21
+285562,0,23668.78511,0,21
+285563,0,23039.12983,0,21
+285564,0,22829.92774,0,21
+285565,0,22018.19289,0,21
+285566,0,21633.07727,0,21
+285567,0,21228.27875,0,21
+285568,0,20762.99551,0,21
+285569,0,20003.80131,0,21
+285570,0,19981.71619,0,21
+285571,0,19100.71335,0,21
+285572,0,18790.78422,0,21
+285573,0,18287.47082,0,21
+285574,0,17842.43591,0,21
+285575,0,17097.66304,0,21
+285576,0,16902.11937,0,21
+285577,0,16053.77447,0,21
+285578,0,16120.78408,0,21
+285579,0,15047.82435,0,21
+285580,0,14923.77954,0,21
+285581,0,14231.97889,0,21
+285582,0,13678.66305,0,21
+285583,0,13394.7055,0,21
+285584,0,12636.31985,0,21
+285585,0,12201.15599,0,21
+285586,0,11567.93092,0,21
+285587,0,11128.37253,0,21
+285588,0,10496.688,0,21
+285589,0,10067.38149,0,21
+285590,0,9450.627284,0,21
+285591,0,8914.634254,0,21
+285592,0,8610.645494,0,21
+285593,0,7637.769314,0,21
+285594,0,7423.395483,0,21
+285595,0,6823.811786,0,21
+285596,0,6230.919734,0,21
+285597,0,5673.506088,0,21
+285598,0,5219.92031,0,21
+285599,0,4709.551018,0,21
+285600,0,4199.457799,0,21
+285601,0,3654.1334,0,21
+285602,0,3381.953178,0,21
+285603,0,3048.695561,0,21
+285604,0,2510.902569,0,21
+285605,0,2711.351642,0,21
+285606,0,1841.974719,0,21
+285607,0,1984.00206,0,21
+285608,0,1757.951415,0,21
+285609,0,1690.460771,0,21
+285610,0,1648.049467,0,21
+285611,0,1622.613557,0,21
+285612,0,1537.224878,0,21
+285613,0,1494.317095,0,21
+285614,0,1425.427585,0,21
+285615,0,1390.831716,0,21
+285616,0,1312.599673,0,21
+285617,0,1295.089725,0,21
+285618,0,1216.256971,0,21
+285619,0,1181.013096,0,21
+285620,0,1083.567472,0,21
+285621,0,1083.567445,0,21
+285622,0,994.1794585,0,21
+285623,0,967.1841824,0,21
+285624,0,876.7554056,0,21
+285625,0,863.0941961,0,21
+285626,0,757.8194221,0,21
+285627,0,757.8194068,0,21
+285628,0,669.7482449,0,21
+285629,0,618.5329193,0,21
+285630,0,561.9242206,0,21
+285631,0,514.5695841,0,21
+285632,0,461.8940408,0,21
+285633,0,418.8025092,0,21
+285634,0,360.1355403,0,21
+285635,0,340.8644046,0,21
+285636,0,271.3589963,0,21
+285637,0,236.6080137,0,21
+285638,0,180.5929019,0,21
+285639,0,144.9632634,0,21
+285640,0,96.95271495,0,21
+285641,0,21.90587972,0,21
+285642,0,32.42039269,0,21
+285643,0,0,0,21
+285644,0,0,0,21
+285645,0,0,0,21
+285646,0,0,0,21
+285647,0,0,0,21
+285648,0,0,0,21
+285649,0,0,0,21
+285650,0,0,0,21
+285651,0,0,0,21
+285652,0,0,0,21
+285653,0,0,0,21
+285654,0,0,0,21
+285655,0,0,0,21
+285656,0,0,0,21
+285657,0,0,0,21
+285658,0,0,0,21
+285659,0,0,0,21
+285660,0,0,0,21
+285661,0,0,0,21
+285662,0,0,0,21
+285663,0,0,0,21
+285664,0,0,0,21
+285665,0,0,0,21
+285666,0,0,0,21
+285667,0,0,0,21
+285668,0,0,0,21
+285669,0,0,0,21
+285670,0,0,0,21
+285671,0,0,0,21
+285672,0,0,0,21
+285673,0,0,0,21
+285674,0,0,0,21
+285675,0,0,0,21
+285676,0,0,0,21
+285677,0,0,0,21
+285678,0,0,0,21
+285679,0,0,0,21
+285680,0,0,0,21
+285681,0,0,0,21
+285682,0,0,0,21
+285683,0,0,0,21
+285684,0,0,0,21
+285685,0,0,0,21
+285686,0,0,0,21
+285687,0,0,0,21
+285688,0,0,0,21
+285689,0,0,0,21
+285690,0,0,0,21
+285691,0,0,0,21
+285692,0,0,0,21
+285693,0,0,0,21
+285694,0,0,0,21
+285695,0,0,0,21
+285696,0,0,0,21
+285697,0,0,0,21
+285698,0,0,0,21
+285699,0,0,0,21
+285700,0,0,0,21
+285701,0,0,0,21
+285702,0,0,0,21
+285703,0,0,0,21
+285704,0,0,0,21
+285705,0,0,0,21
+285706,0,0,0,21
+285707,0,0,0,21
+285708,0,0,0,21
+285709,0,0,0,21
+285710,0,0,0,21
+285711,0,0,0,21
+285712,0,0,0,21
+285713,0,0,0,21
+285714,0,0,0,21
+285715,0,0,0,21
+285716,0,0,0,21
+285717,0,0,0,21
+285718,0,0,0,21
+285719,0,0,0,21
+285720,0,0,0,21
+285721,0,0,0,21
+285722,0,0,0,21
+285723,0,0,0,21
+285724,0,0,0,21
+285725,0,0,0,21
+285726,0,0,0,21
+285727,0,0,0,21
+285728,0,0,0,21
+285729,0,0,0,21
+285730,0,0,0,21
+285731,0,0,0,21
+285732,0,0,0,21
+285733,0,0,0,21
+285734,0,0,0,21
+285735,0,0,0,21
+285736,0,0,0,21
+285737,0,0,0,21
+285738,0,0,0,21
+285739,0,0,0,21
+285740,0,0,0,21
+285741,0,0,0,21
+285742,0,0,0,21
+285743,0,0,0,21
+285744,0,0,0,21
+285745,0,0,0,21
+285746,0,0,0,21
+285747,0,0,0,21
+285748,0,0,0,21
+285749,0,0,0,21
+285750,0,0,0,21
+285751,0,0,0,21
+285752,0,0,0,21
+285753,0,0,0,21
+285754,0,0,0,21
+285755,0,0,0,21
+285756,0,0,0,21
+285757,0,0,0,21
+285758,0,0,0,21
+285759,0,0,0,21
+285760,0,0,0,21
+285761,0,0,0,21
+285762,0,0,0,21
+285763,0,0,0,21
+285764,0,0,0,21
+285765,0,0,0,21
+285766,0,0,0,21
+285767,0,0,0,21
+285768,0,0,0,21
+285769,0,0,0,21
+285770,0,0,0,21
+285771,0,0,0,21
+285772,0,0,0,21
+285773,0,0,0,21
+285774,0,0,0,21
+285775,0,0,0,21
+285776,0,0,0,21
+285777,0,0,0,21
+285778,0,0,0,21
+285779,0,0,0,21
+285780,0,0,0,21
+285781,0,0,0,21
+285782,0,0,0,21
+285783,0,0,0,21
+285784,0,0,0,21
+285785,0,0,0,21
+285786,0,0,0,21
+285787,0,0,0,21
+285788,0,0,0,21
+285789,0,0,0,21
+285790,0,0,0,21
+285791,0,0,0,21
+285792,0,0,0,21
+285793,0,0,0,21
+285794,0,0,0,21
+285795,0,0,0,21
+285796,0,0,0,21
+285797,0,0,0,21
+285798,0,0,0,21
+285799,0,0,0,21
+285800,0,0,0,21
+285801,0,0,0,21
+285802,0,0,0,21
+285803,0,0,0,21
+285804,0,0,0,21
+285805,0,0,0,21
+285806,0,0,0,21
+285807,0,0,0,21
+285808,0,0,0,21
+285809,0,0,0,21
+285810,0,0,0,21
+285811,0,0,0,21
+285812,0,0,0,21
+285813,0,0,0,21
+285814,0,0,0,21
+285815,0,0,0,21
+285816,0,0,0,21
+285817,0,0,0,21
+285818,0,0,0,21
+285819,0,0,0,21
+285820,0,0,0,21
+285821,0,0,0,21
+285822,0,0,0,21
+285823,0,0,0,21
+285824,0,0,0,21
+285825,0,0,0,21
+285826,0,0,0,21
+285827,0,0,0,21
+285828,0,0,0,21
+285829,0,0,0,21
+285830,0,0,0,21
+285831,0,0,0,21
+285832,0,0,0,21
+285833,0,0,0,21
+285834,0,0,0,21
+285835,0,0,0,21
+285836,0,0,0,21
+285837,0,0,0,21
+285838,0,0,0,21
+285839,0,0,0,21
+285840,0,0,0,21
+285841,0,0,0,21
+285842,0,0,0,21
+285843,0,0,0,21
+285844,0,0,0,21
+285845,0,0,0,21
+285846,0,0,0,21
+285847,0,0,0,21
+285848,0,0,0,21
+285849,0,0,0,21
+285850,0,0,0,21
+285851,0,0,0,21
+285852,0,0,0,21
+285853,0,0,0,21
+285854,0,0,0,21
+285855,0,0,0,21
+285856,0,0,0,21
+285857,0,0,0,21
+285858,0,0,0,21
+285859,0,0,0,21
+285860,0,0,0,21
+285861,0,0,0,21
+285862,0,0,0,21
+285863,0,0,0,21
+285864,0,0,0,21
+285865,0,0,0,21
+285866,0,0,0,21
+285867,0,0,0,21
+285868,0,0,0,21
+285869,0,0,0,21
+285870,0,0,0,21
+285871,0,0,0,21
+285872,0,0,0,21
+285873,0,0,0,21
+285874,0,0,0,21
+285875,0,0,0,21
+285876,0,0,0,21
+285877,0,0,0,21
+285878,0,0,0,21
+285879,0,0,0,21
+285880,0,0,0,21
+285881,0,0,0,21
+285882,0,0,0,21
+285883,0,0,0,21
+285884,0,0,0,21
+285885,0,0,0,21
+285886,0,0,0,21
+285887,0,0,0,21
+285888,0,0,0,21
+285889,0,0,0,21
+285890,0,0,0,21
+285891,0,0,0,21
+285892,0,0,0,21
+285893,0,0,0,21
+285894,0,0,0,21
+285895,0,0,0,21
+285896,0,0,0,21
+285897,0,0,0,21
+285898,0,0,0,21
+285899,0,0,0,21
+285900,0,0,0,21
+285901,0,0,0,21
+285902,0,0,0,21
+285903,0,0,0,21
+285904,0,0,0,21
+285905,0,0,0,21
+285906,0,0,0,21
+285907,0,0,0,21
+285908,0,0,0,21
+285909,0,0,0,21
+285910,0,0,0,21
+285911,0,0,0,21
+285912,0,0,0,21
+285913,0,0,0,21
+285914,0,0,0,21
+285915,0,0,0,21
+285916,0,0,0,21
+285917,0,0,0,21
+285918,0,0,0,21
+285919,0,0,0,21
+285920,0,0,0,21
+285921,0,0,0,21
+285922,0,0,0,21
+285923,0,0,0,21
+285924,0,0,0,21
+285925,0,0,0,21
+285926,0,0,0,21
+285927,0,0,0,21
+285928,0,0,0,21
+285929,0,0,0,21
+285930,0,0,0,21
+285931,0,0,0,21
+285932,0,0,0,21
+285933,0,0,0,21
+285934,0,0,0,21
+285935,0,0,0,21
+285936,0,0,0,21
+285937,0,0,0,21
+285938,0,0,0,21
+285939,0,0,0,21
+285940,0,0,0,21
+285941,0,0,0,21
+285942,0,0,0,21
+285943,0,0,0,21
+285944,0,0,0,21
+285945,0,0,0,21
+285946,0,0,0,21
+285947,0,0,0,21
+285948,0,0,0,21
+285949,0,0,0,21
+285950,0,0,0,21
+285951,0,0,0,21
+285952,0,0,0,21
+285953,0,0,0,21
+285954,0,0,0,21
+285955,0,0,0,21
+285956,0,0,0,21
+285957,0,0,0,21
+285958,0,0,0,21
+285959,0,0,0,21
+285960,0,0,0,21
+285961,0,0,0,21
+285962,0,0,0,21
+285963,0,0,0,21
+285964,0,0,0,21
+285965,0,0,0,21
+285966,0,0,0,21
+285967,0,0,0,21
+285968,0,0,0,21
+285969,0,0,0,21
+285970,0,0,0,21
+285971,0,0,0,21
+285972,0,0,0,21
+285973,0,0,0,21
+285974,0,0,0,21
+285975,0,0,0,21
+285976,0,0,0,21
+285977,0,0,0,21
+285978,0,0,0,21
+285979,0,0,0,21
+285980,0,0,0,21
+285981,0,0,0,21
+285982,0,0,0,21
+285983,0,0,0,21
+285984,0,0,0,21
+285985,0,0,0,21
+285986,0,0,0,21
+285987,0,0,0,21
+285988,0,0,0,21
+285989,0,0,0,21
+285990,0,0,0,21
+285991,0,0,0,21
+285992,0,0,0,21
+285993,0,0,0,21
+285994,0,0,0,21
+285995,0,0,0,21
+285996,0,0,0,21
+285997,0,0,0,21
+285998,0,0,0,21
+285999,0,0,0,21
+286000,0,0,0,21
+286001,0,0,0,21
+286002,0,0,0,21
+286003,0,0,0,21
+286004,0,0,0,21
+286005,0,0,0,21
+286006,0,0,0,21
+286007,0,0,0,21
+286008,0,0,0,21
+286009,0,0,0,21
+286010,0,0,0,21
+286011,0,0,0,21
+286012,0,0,0,21
+286013,0,0,0,21
+286014,0,0,0,21
+286015,0,0,0,21
+286016,0,0,0,21
+286017,0,0,0,21
+286018,0,0,0,21
+286019,0,0,0,21
+286020,0,0,0,21
+286021,0,0,0,21
+286022,0,0,0,21
+286023,0,0,0,21
+286024,0,0,0,21
+286025,0,0,0,21
+286026,0,0,0,21
+286027,0,0,0,21
+286028,0,0,0,21
+286029,0,0,0,21
+286030,0,0,0,21
+286031,0,0,0,21
+286032,0,0,0,21
+286033,0,0,0,21
+286034,0,0,0,21
+286035,0,0,0,21
+286036,0,0,0,21
+286037,0,0,0,21
+286038,0,0,0,21
+286039,0,0,0,21
+286040,0,0,0,21
+286041,0,0,0,21
+286042,0,0,0,21
+286043,0,0,0,21
+286044,0,0,0,21
+286045,0,0,0,21
+286046,0,0,0,21
+286047,0,0,0,21
+286048,0,0,0,21
+286049,0,0,0,21
+286050,0,0,0,21
+286051,0,0,0,21
+286052,0,0,0,21
+286053,0,0,0,21
+286054,0,0,0,21
+286055,0,0,0,21
+286056,0,0,0,21
+286057,0,0,0,21
+286058,0,0,0,21
+286059,0,0,0,21
+286060,0,0,0,21
+286061,0,0,0,21
+286062,0,0,0,21
+286063,0,0,0,21
+286064,0,0,0,21
+286065,0,0,0,21
+286066,0,0,0,21
+286067,0,0,0,21
+286068,0,0,0,21
+286069,0,0,0,21
+286070,0,0,0,21
+286071,0,0,0,21
+286072,0,0,0,21
+286073,0,0,0,21
+286074,0,0,0,21
+286075,0,0,0,21
+286076,0,0,0,21
+286077,0,0,0,21
+286078,0,0,0,21
+286079,0,0,0,21
+286080,0,0,0,21
+286081,0,0,0,21
+286082,0,0,0,21
+286083,0,0,0,21
+286084,0,0,0,21
+286085,0,0,0,21
+286086,0,0,0,21
+286087,0,0,0,21
+286088,0,0,0,21
+286089,0,0,0,21
+286090,0,0,0,21
+286091,0,0,0,21
+286092,0,0,0,21
+286093,0,0,0,21
+286094,0,0,0,21
+286095,0,0,0,21
+286096,0,0,0,21
+286097,0,0,0,21
+286098,0,0,0,21
+286099,0,0,0,21
+286100,0,0,0,21
+286101,0,0,0,21
+286102,0,0,0,21
+286103,0,0,0,21
+286104,0,0,0,21
+286105,0,0,0,21
+286106,0,0,0,21
+286107,0,0,0,21
+286108,0,0,0,21
+286109,0,0,0,21
+286110,0,0,0,21
+286111,0,0,0,21
+286112,0,0,0,21
+286113,0,0,0,21
+286114,0,0,0,21
+286115,0,0,0,21
+286116,0,0,0,21
+286117,0,0,0,21
+286118,0,0,0,21
+286119,0,0,0,21
+286120,0,0,0,21
+286121,0,0,0,21
+286122,0,0,0,21
+286123,0,0,0,21
+286124,0,0,0,21
+286125,0,0,0,21
+286126,0,0,0,21
+286127,0,0,0,21
+286128,0,0,0,21
+286129,0,0,0,21
+286130,0,0,0,21
+286131,0,0,0,21
+286132,0,0,0,21
+286133,0,0,0,21
+286134,0,0,0,21
+286135,0,0,0,21
+286136,0,0,0,21
+286137,0,0,0,21
+286138,0,0,0,21
+286139,0,0,0,21
+286140,0,0,0,21
+286141,0,0,0,21
+286142,0,0,0,21
+286143,0,0,0,21
+286144,0,0,0,21
+286145,0,0,0,21
+286146,0,0,0,21
+286147,0,0,0,21
+286148,0,0,0,21
+286149,0,0,0,21
+286150,0,0,0,21
+286151,0,0,0,21
+286152,0,0,0,21
+286153,0,0,0,21
+286154,0,0,0,21
+286155,0,0,0,21
+286156,0,0,0,21
+286157,0,0,0,21
+286158,0,0,0,21
+286159,0,0,0,21
+286160,0,0,0,21
+286161,0,0,0,21
+286162,0,0,0,21
+286163,0,0,0,21
+286164,0,0,0,21
+286165,0,0,0,21
+286166,0,0,0,21
+286167,0,0,0,21
+286168,0,0,0,21
+286169,0,0,0,21
+286170,0,0,0,21
+286171,0,0,0,21
+286172,0,0,0,21
+286173,0,0,0,21
+286174,0,0,0,21
+286175,0,0,0,21
+286176,0,0,0,21
+286177,0,0,0,21
+286178,0,0,0,21
+286179,0,0,0,21
+286180,0,0,0,21
+286181,0,0,0,21
+286182,0,0,0,21
+286183,0,0,0,21
+286184,0,0,0,21
+286185,0,0,0,21
+286186,0,0,0,21
+286187,0,0,0,21
+286188,0,0,0,21
+286189,0,0,0,21
+286190,0,0,0,21
+286191,0,0,0,21
+286192,0,0,0,21
+286193,0,0,0,21
+286194,0,0,0,21
+286195,0,0,0,21
+286196,0,0,0,21
+286197,0,0,0,21
+286198,0,0,0,21
+286199,0,0,0,21
+286200,0,0,0,21
+286201,0,0,0,21
+286202,0,0,0,21
+286203,0,0,0,21
+286204,0,0,0,21
+286205,0,0,0,21
+286206,0,0,0,21
+286207,0,0,0,21
+286208,0,0,0,21
+286209,0,0,0,21
+286210,0,0,0,21
+286211,0,0,0,21
+286212,0,0,0,21
+286213,0,0,0,21
+286214,0,0,0,21
+286215,0,0,0,21
+286216,0,0,0,21
+286217,0,0,0,21
+286218,0,0,0,21
+286219,0,0,0,21
+286220,0,0,0,21
+286221,0,0,0,21
+286222,0,0,0,21
+286223,0,0,0,21
+286224,0,0,0,21
+286225,0,0,0,21
+286226,0,0,0,21
+286227,0,0,0,21
+286228,0,0,0,21
+286229,0,0,0,21
+286230,0,0,0,21
+286231,0,0,0,21
+286232,0,0,0,21
+286233,0,0,0,21
+286234,0,0,0,21
+286235,0,0,0,21
+286236,0,0,0,21
+286237,0,0,0,21
+286238,0,0,0,21
+286239,0,0,0,21
+286240,0,0,0,21
+286241,0,0,0,21
+286242,0,0,0,21
+286243,0,0,0,21
+286244,0,0,0,21
+286245,0,0,0,21
+286246,0,0,0,21
+286247,0,0,0,21
+286248,0,0,0,21
+286249,0,0,0,21
+286250,0,0,0,21
+286251,0,0,0,21
+286252,0,0,0,21
+286253,0,0,0,21
+286254,0,0,0,21
+286255,0,0,0,21
+286256,0,0,0,21
+286257,0,0,0,21
+286258,0,0,0,21
+286259,0,0,0,21
+286260,0,0,0,21
+286261,0,0,0,21
+286262,0,0,0,21
+286263,0,0,0,21
+286264,0,0,0,21
+286265,0,0,0,21
+286266,0,0,0,21
+286267,0,0,0,21
+286268,0,0,0,21
+286269,0,0,0,21
+286270,0,0,0,21
+286271,0,0,0,21
+286272,0,0,0,21
+286273,0,0,0,21
+286274,0,0,0,21
+286275,0,0,0,21
+286276,0,0,0,21
+286277,0,0,0,21
+286278,0,0,0,21
+286279,0,0,0,21
+286280,0,0,0,21
+286281,0,0,0,21
+286282,0,0,0,21
+286283,0,0,0,21
+286284,0,0,0,21
+286285,0,0,0,21
+286286,0,0,0,21
+286287,0,0,0,21
+286288,0,0,0,21
+286289,0,0,0,21
+286290,0,362.5219279,0,21
+286291,0,1199.907354,0,21
+286292,0,1036.585592,0,21
+286293,0,1036.58559,0,21
+286294,0,1522.152561,0,21
+286295,0,1522.152547,0,21
+286296,0,1681.356151,0,21
+286297,0,1996.434527,0,21
+286298,0,1996.434508,0,21
+286299,0,2152.46333,0,21
+286300,0,2461.804033,0,21
+286301,0,2461.804019,0,21
+286302,0,2615.214001,0,21
+286303,0,2919.716184,0,21
+286304,0,2919.716157,0,21
+286305,0,3070.876637,0,21
+286306,0,3371.162125,0,21
+286307,0,3371.16209,0,21
+286308,0,3520.337518,0,21
+286309,0,3816.863878,0,21
+286310,0,3816.863878,0,21
+286311,0,3816.863877,0,21
+286312,0,4111.084611,0,21
+286313,0,4111.084587,0,21
+286314,0,4257.372783,0,21
+286315,0,4548.379392,0,21
+286316,0,4548.379385,0,21
+286317,0,4693.124389,0,21
+286318,0,4837.381427,0,21
+286319,0,5045.612295,0,21
+286320,0,5411.845675,0,21
+286321,0,5239.417268,0,21
+286322,0,5705.989584,0,21
+286323,0,5725.381329,0,21
+286324,0,5886.158186,0,21
+286325,0,6055.861479,0,21
+286326,0,6336.878679,0,21
+286327,0,6234.227869,0,21
+286328,0,6672.612008,0,21
+286329,0,6672.612245,0,21
+286330,0,6848.732069,0,21
+286331,0,7005.831057,0,21
+286332,0,7300.480003,0,21
+286333,0,7162.465114,0,21
+286334,0,7629.666408,0,21
+286335,0,7611.671851,0,21
+286336,0,7647.581567,0,21
+286337,0,8075.2278,0,21
+286338,0,7938.968119,0,21
+286339,0,8391.017522,0,21
+286340,0,8677.030281,0,21
+286341,0,8693.831256,0,21
+286342,0,8970.487283,0,21
+286343,0,9125.611312,0,21
+286344,0,9448.947248,0,21
+286345,0,9540.823231,0,21
+286346,0,9657.268785,0,21
+286347,0,10134.71196,0,21
+286348,0,11563.24284,0,21
+286349,0,12400.21847,0,21
+286350,0,12469.40604,0,21
+286351,0,13041.747,0,21
+286352,0,13582.43494,0,21
+286353,0,14274.62172,0,21
+286354,0,14320.66123,0,21
+286355,0,15120.05738,0,21
+286356,0,15562.55917,0,21
+286357,0,15844.43802,0,21
+286358,0,16738.70619,0,21
+286359,0,18072.75325,0,21
+286360,0,18119.49224,0,21
+286361,0,19007.96686,0,21
+286362,0,19423.72953,0,21
+286363,0,20290.02327,0,21
+286364,0,20666.48279,0,21
+286365,0,21417.90626,0,21
+286366,0,21389.10415,0,21
+286367,0,21957.42714,0,21
+286368,0,22385.95482,0,21
+286369,0,23072.24149,0,21
+286370,0,23540.78174,0,21
+286371,0,24249.98808,0,21
+286372,0,24770.28882,0,21
+286373,0,25198.94195,0,21
+286374,0,25887.07372,0,21
+286375,0,26290.60556,0,21
+286376,0,27046.77431,0,21
+286377,0,27539.38719,0,21
+286378,0,28125.34607,0,21
+286379,0,28591.04807,0,21
+286380,0,29083.03848,0,21
+286381,0,0,0,21
+286382,0,0,0,21
+286383,0,0,0,21
+286384,0,0,0,21
+286385,330643.8258,360796.6667,701378.0243,21
+286386,0,0,0,21
+286387,0,0,0,21
+286388,0,0,0,21
+286389,0,0,0,21
+286390,0,0,0,21
+286391,0,0,0,21
+286392,0,0,0,21
+286393,0,0,0,21
+286394,0,0,0,21
+286395,0,0,0,21
+286396,0,0,0,21
+286397,0,0,0,21
+286398,0,0,0,21
+286399,0,0,0,21
+286400,0,0,0,21
+286401,0,0,0,21
+286402,0,0,0,21
+286403,0,0,0,21
+286404,0,0,0,21
+286405,0,0,0,21
+286406,0,0,0,21
+286407,0,0,0,21
+286408,0,0,0,21
+286409,0,0,0,21
+286410,0,0,0,21
+286411,0,0,0,21
+286412,0,0,0,21
+286413,0,0,0,21
+286414,0,0,0,21
+286415,0,0,0,21
+286416,0,0,0,21
+286417,0,0,0,21
+286418,0,0,0,21
+286419,330821.2367,362676.2723,697817.0689,21
+286420,0,0,0,21
+286421,0,0,0,21
+286422,0,0,0,21
+286423,0,0,0,21
+286424,0,0,0,21
+286425,0,0,0,21
+286426,0,0,0,21
+286427,0,0,0,21
+286428,0,0,0,21
+286429,0,0,0,21
+286430,0,0,0,21
+286431,0,0,0,21
+286432,0,0,0,21
+286433,0,0,0,21
+286434,0,0,0,21
+286435,0,0,0,21
+286436,0,0,0,21
+286437,0,0,0,21
+286438,0,0,0,21
+286439,0,0,0,21
+286440,0,0,0,15.6
+286441,0,0,0,15.6
+286442,0,0,0,15.6
+286443,0,0,0,15.6
+286444,0,0,0,15.6
+286445,0,0,0,15.6
+286446,0,0,0,15.6
+286447,0,0,0,15.6
+286448,0,0,0,15.6
+286449,0,0,0,15.6
+286450,0,0,0,15.6
+286451,0,0,0,15.6
+286452,0,0,0,15.6
+286453,331815.6015,363105.5646,694760.4915,15.6
+286454,0,0,0,15.6
+286455,0,0,0,15.6
+286456,0,0,0,15.6
+286457,0,0,0,15.6
+286458,0,0,0,15.6
+286459,0,0,0,15.6
+286460,0,0,0,15.6
+286461,0,0,0,15.6
+286462,0,0,0,15.6
+286463,0,0,0,15.6
+286464,0,0,0,15.6
+286465,0,0,0,15.6
+286466,0,0,0,15.6
+286467,0,0,0,15.6
+286468,0,0,0,15.6
+286469,0,0,0,15.6
+286470,0,0,0,15.6
+286471,0,0,0,15.6
+286472,0,0,0,15.6
+286473,0,0,0,15.6
+286474,0,0,0,15.6
+286475,0,0,0,15.6
+286476,0,0,0,15.6
+286477,0,0,0,15.6
+286478,0,0,0,15.6
+286479,0,0,0,15.6
+286480,0,0,0,15.6
+286481,0,0,0,15.6
+286482,0,0,0,15.6
+286483,0,0,0,15.6
+286484,0,0,0,15.6
+286485,0,0,0,15.6
+286486,0,0,0,15.6
+286487,332469.9681,363819.4525,691914.1033,15.6
+286488,0,0,0,15.6
+286489,0,0,0,15.6
+286490,0,0,0,15.6
+286491,0,0,0,15.6
+286492,0,0,0,15.6
+286493,0,0,0,15.6
+286494,0,0,0,15.6
+286495,0,0,0,15.6
+286496,0,0,0,15.6
+286497,0,0,0,15.6
+286498,0,0,0,15.6
+286499,0,0,0,15.6
+286500,0,0,0,15.6
+286501,0,0,0,15.6
+286502,0,0,0,15.6
+286503,0,0,0,15.6
+286504,0,0,0,15.6
+286505,0,0,0,15.6
+286506,0,0,0,15.6
+286507,0,0,0,15.6
+286508,0,0,0,15.6
+286509,0,0,0,15.6
+286510,0,0,0,15.6
+286511,0,0,0,15.6
+286512,0,0,0,15.6
+286513,0,0,0,15.6
+286514,0,0,0,15.6
+286515,0,0,0,15.6
+286516,0,0,0,15.6
+286517,0,0,0,15.6
+286518,0,0,0,15.6
+286519,0,0,0,15.6
+286520,0,0,0,15.6
+286521,333312.8203,369414.2959,688280.1069,15.6
+286522,0,0,0,15.6
+286523,0,0,0,15.6
+286524,0,0,0,15.6
+286525,0,0,0,15.6
+286526,0,0,0,15.6
+286527,0,0,0,15.6
+286528,0,0,0,15.6
+286529,0,0,0,15.6
+286530,0,0,0,15.6
+286531,0,0,0,15.6
+286532,0,0,0,15.6
+286533,0,0,0,15.6
+286534,0,0,0,15.6
+286535,0,0,0,15.6
+286536,0,0,0,15.6
+286537,0,0,0,15.6
+286538,0,0,0,15.6
+286539,0,0,0,15.6
+286540,0,0,0,15.6
+286541,0,0,0,15.6
+286542,0,0,0,15.6
+286543,0,0,0,15.6
+286544,0,0,0,15.6
+286545,0,0,0,15.6
+286546,0,0,0,15.6
+286547,0,0,0,15.6
+286548,0,0,0,15.6
+286549,0,0,0,15.6
+286550,0,0,0,15.6
+286551,0,0,0,15.6
+286552,0,0,0,15.6
+286553,0,0,0,15.6
+286554,0,0,0,15.6
+286555,334014.2152,369413.8108,685049.0676,15.6
+286556,0,0,0,15.6
+286557,0,0,0,15.6
+286558,0,0,0,15.6
+286559,0,0,0,15.6
+286560,0,0,0,15.6
+286561,0,0,0,15.6
+286562,0,0,0,15.6
+286563,0,0,0,15.6
+286564,0,0,0,15.6
+286565,0,0,0,15.6
+286566,0,0,0,15.6
+286567,0,0,0,15.6
+286568,0,0,0,15.6
+286569,0,0,0,15.6
+286570,0,0,0,15.6
+286571,0,0,0,15.6
+286572,0,0,0,15.6
+286573,0,0,0,15.6
+286574,0,0,0,15.6
+286575,0,0,0,15.6
+286576,0,0,0,15.6
+286577,0,0,0,15.6
+286578,0,0,0,15.6
+286579,0,0,0,15.6
+286580,0,0,0,15.6
+286581,0,0,0,15.6
+286582,0,0,0,15.6
+286583,0,0,0,15.6
+286584,0,0,0,15.6
+286585,0,0,0,15.6
+286586,0,0,0,15.6
+286587,0,0,0,15.6
+286588,0,0,0,15.6
+286589,0,0,683209.3808,15.6
+286590,334021.0962,369413.8573,0,15.6
+286591,0,0,0,15.6
+286592,0,0,0,15.6
+286593,0,0,0,15.6
+286594,0,0,0,15.6
+286595,0,0,0,15.6
+286596,0,0,0,15.6
+286597,0,0,0,15.6
+286598,0,0,0,15.6
+286599,0,0,0,15.6
+286600,0,0,0,15.6
+286601,0,0,0,15.6
+286602,0,0,0,15.6
+286603,0,0,0,15.6
+286604,0,0,0,15.6
+286605,0,0,0,15.6
+286606,0,0,0,15.6
+286607,0,0,0,15.6
+286608,0,0,0,15.6
+286609,0,0,0,15.6
+286610,0,0,0,15.6
+286611,0,0,0,15.6
+286612,0,0,0,15.6
+286613,0,0,0,15.6
+286614,0,0,0,15.6
+286615,0,0,0,15.6
+286616,0,0,0,15.6
+286617,0,0,0,15.6
+286618,0,0,0,15.6
+286619,0,0,0,15.6
+286620,0,0,0,15.6
+286621,0,68.93595686,0,15.6
+286622,0,0,0,15.6
+286623,0,0,680886.881,15.6
+286624,0,255262.6552,0,15.6
+286625,334517.5926,369408.3806,0,15.6
+286626,0,0,0,15.6
+286627,0,0,0,15.6
+286628,0,0,0,15.6
+286629,0,0,0,15.6
+286630,0,0,0,15.6
+286631,0,0,0,15.6
+286632,0,0,0,15.6
+286633,0,0,0,15.6
+286634,0,0,0,15.6
+286635,0,0,0,15.6
+286636,0,0,0,15.6
+286637,0,0,0,15.6
+286638,0,0,0,15.6
+286639,0,0,0,15.6
+286640,0,0,0,15.6
+286641,0,0,0,15.6
+286642,0,0,0,15.6
+286643,0,0,0,15.6
+286644,0,0,0,15.6
+286645,0,0,0,15.6
+286646,0,0,0,15.6
+286647,0,0,0,15.6
+286648,0,0,0,15.6
+286649,0,0,0,15.6
+286650,0,0,0,15.6
+286651,0,0,0,15.6
+286652,0,0,0,15.6
+286653,0,0,0,15.6
+286654,0,0,0,15.6
+286655,0,0,0,15.6
+286656,0,0,0,15.6
+286657,0,0,678180.9399,15.6
+286658,0,0,0,15.6
+286659,0,0,0,15.6
+286660,335317.0538,369370.8379,0,15.6
+286661,0,0,0,15.6
+286662,0,0,0,15.6
+286663,0,0,0,15.6
+286664,0,0,0,15.6
+286665,0,0,0,15.6
+286666,0,0,0,15.6
+286667,0,0,0,15.6
+286668,0,0,0,15.6
+286669,0,0,0,15.6
+286670,0,0,0,15.6
+286671,0,0,0,15.6
+286672,0,0,0,15.6
+286673,0,0,0,15.6
+286674,0,0,0,15.6
+286675,0,0,0,15.6
+286676,0,0,0,15.6
+286677,0,0,0,15.6
+286678,0,0,0,15.6
+286679,0,0,0,15.6
+286680,0,0,0,15.6
+286681,0,0,0,15.6
+286682,0,0,0,15.6
+286683,0,0,0,15.6
+286684,0,0,0,15.6
+286685,0,0,0,15.6
+286686,0,0,0,15.6
+286687,0,0,0,15.6
+286688,0,0,0,15.6
+286689,0,0,0,15.6
+286690,0,0,0,15.6
+286691,0,0,677141.1326,15.6
+286692,0,0,0,15.6
+286693,0,0,0,15.6
+286694,0,0,0,15.6
+286695,335197.1424,369336.5659,0,15.6
+286696,0,0,0,15.6
+286697,0,0,0,15.6
+286698,0,0,0,15.6
+286699,0,0,0,15.6
+286700,0,0,0,15.6
+286701,0,0,0,15.6
+286702,0,0,0,15.6
+286703,0,0,0,15.6
+286704,0,0,0,15.6
+286705,0,0,0,15.6
+286706,0,0,0,15.6
+286707,0,0,0,15.6
+286708,0,0,0,15.6
+286709,0,0,0,15.6
+286710,0,0,0,15.6
+286711,0,0,0,15.6
+286712,0,2.54497461,0,15.6
+286713,0,0,0,15.6
+286714,0,0,0,15.6
+286715,0,0,0,15.6
+286716,0,0,0,15.6
+286717,0,0,0,15.6
+286718,0,0,0,15.6
+286719,0,2.398552954,0,15.6
+286720,0,0,0,15.6
+286721,0,66.19556981,0,15.6
+286722,0,0,0,15.6
+286723,0,0,0,15.6
+286724,0,0,0,15.6
+286725,0,0,675230.6792,15.6
+286726,0,299.8772656,0,15.6
+286727,0,0,0,15.6
+286728,0,0,0,15.6
+286729,0,0,0,15.6
+286730,335952.6703,369306.7572,0,15.6
+286731,0,0,0,15.6
+286732,0,0,0,15.6
+286733,0,0,0,15.6
+286734,0,0,0,15.6
+286735,0,0,0,15.6
+286736,0,0,0,15.6
+286737,0,0,0,15.6
+286738,0,0,0,15.6
+286739,0,0,0,15.6
+286740,0,0,0,15.6
+286741,0,0,0,15.6
+286742,0,0,0,15.6
+286743,0,0,0,15.6
+286744,0,0,0,15.6
+286745,0,0,0,15.6
+286746,0,0,0,15.6
+286747,0,0,0,15.6
+286748,0,0,0,15.6
+286749,0,0,0,15.6
+286750,0,0,0,15.6
+286751,0,0,0,15.6
+286752,0,0,0,15.6
+286753,0,0,0,15.6
+286754,0,0,0,15.6
+286755,0,0,0,15.6
+286756,0,0,0,15.6
+286757,0,0,0,15.6
+286758,0,0,0,15.6
+286759,0,3.461627108,674151.3017,15.6
+286760,0,0,0,15.6
+286761,0,0,0,15.6
+286762,0,0,0,15.6
+286763,0,3.760420888,0,15.6
+286764,335725.7709,0,0,15.6
+286765,0,369297.7079,0,15.6
+286766,0,100.3223436,0,15.6
+286767,0,0,0,15.6
+286768,0,0,0,15.6
+286769,0,0,0,15.6
+286770,0,0,0,15.6
+286771,0,0,0,15.6
+286772,0,0,0,15.6
+286773,0,7.369776747,0,15.6
+286774,0,0,0,15.6
+286775,0,81.15281743,0,15.6
+286776,0,0,0,15.6
+286777,0,0,0,15.6
+286778,0,0,0,15.6
+286779,0,0,0,15.6
+286780,0,282.0739934,0,15.6
+286781,0,0,0,15.6
+286782,0,0,0,15.6
+286783,0,0,0,15.6
+286784,0,0,0,15.6
+286785,0,0,0,15.6
+286786,0,0,0,15.6
+286787,0,0,0,15.6
+286788,0,88.07116012,0,15.6
+286789,0,0,0,15.6
+286790,0,0,0,15.6
+286791,0,0,0,15.6
+286792,0,0,0,15.6
+286793,0,0,672319.4839,15.6
+286794,0,0,0,15.6
+286795,0,372.793995,0,15.6
+286796,0,0,0,15.6
+286797,0,0,0,15.6
+286798,336199.4103,0,0,15.6
+286799,0,369297.3809,0,15.6
+286800,0,0,0,17.8
+286801,0,0,0,17.8
+286802,0,0,0,17.8
+286803,0,0,0,17.8
+286804,0,0,0,17.8
+286805,0,0,0,17.8
+286806,0,0,0,17.8
+286807,0,0,0,17.8
+286808,0,0,0,17.8
+286809,0,0,0,17.8
+286810,0,0,0,17.8
+286811,0,0,0,17.8
+286812,0,0,0,17.8
+286813,0,0,0,17.8
+286814,0,0,0,17.8
+286815,0,0,0,17.8
+286816,0,0,0,17.8
+286817,0,0,0,17.8
+286818,0,0,0,17.8
+286819,0,0,0,17.8
+286820,0,0,0,17.8
+286821,0,0,0,17.8
+286822,0,0,0,17.8
+286823,0,0,0,17.8
+286824,0,0,0,17.8
+286825,0,0,0,17.8
+286826,0,0,0,17.8
+286827,0,0,671590.6137,17.8
+286828,0,0,0,17.8
+286829,0,0,0,17.8
+286830,0,0,0,17.8
+286831,0,0,0,17.8
+286832,336357.8305,0,0,17.8
+286833,0,369324.431,0,17.8
+286834,0,0,0,17.8
+286835,0,0,0,17.8
+286836,0,0,0,17.8
+286837,0,0,0,17.8
+286838,0,0,0,17.8
+286839,0,0,0,17.8
+286840,0,0,0,17.8
+286841,0,0,0,17.8
+286842,0,0,0,17.8
+286843,0,0,0,17.8
+286844,0,0,0,17.8
+286845,0,0,0,17.8
+286846,0,0,0,17.8
+286847,0,0,0,17.8
+286848,0,0,0,17.8
+286849,0,0,0,17.8
+286850,0,0,0,17.8
+286851,0,0,0,17.8
+286852,0,0,0,17.8
+286853,0,0,0,17.8
+286854,0,0,0,17.8
+286855,0,0,0,17.8
+286856,0,0,0,17.8
+286857,0,0,0,17.8
+286858,0,0,0,17.8
+286859,0,0,0,17.8
+286860,0,0,0,20
+286861,1734.030935,483876.7594,670205.375,20
+286862,0,0,0,20
+286863,0,4972.789828,0,20
+286864,185.8134914,134724.9854,0,20
+286865,494.1777494,114364.2815,0,20
+286866,259.6774709,95223.62241,0,20
+286867,323.7658993,102141.091,0,20
+286868,355.3412028,102460.3265,0,20
+286869,371.0218454,102547.9664,0,20
+286870,355.3412011,102583.715,0,20
+286871,402.180926,103375.2878,0,20
+286872,386.6343621,102972.8981,0,20
+286873,5461.837868,102562.8897,0,20
+286874,2448.408054,102886.1462,0,20
+286875,3467.033276,102995.4872,0,20
+286876,3718.299371,102404.9859,0,20
+286877,3718.299353,102621.8141,0,20
+286878,3990.598108,102690.4561,0,20
+286879,3975.354061,101776.0422,0,20
+286880,4141.139181,102924.0578,0,20
+286881,4357.599965,101806.2133,0,20
+286882,4260.935858,101911.1766,0,20
+286883,4514.384237,101882.1279,0,20
+286884,4648.00339,101889.8067,0,20
+286885,4632.975265,101595.0273,0,20
+286886,4796.115342,101437.8256,0,20
+286887,4955.329467,101278.3151,0,20
+286888,5140.466921,101240.3778,0,20
+286889,5105.546049,101107.1392,0,20
+286890,5287.28207,100742.1561,0,20
+286891,5421.207926,100924.2679,0,20
+286892,5537.617906,100422.5052,0,20
+286893,5452.999513,100330.6325,0,20
+286894,5818.083921,100210.6143,0,20
+286895,5601.009686,100221.5582,0,20
+286896,5857.871702,99512.28824,0,20
+286897,5872.562611,99777.16095,0,20
+286898,6119.619944,99531.63135,0,20
+286899,5911.997223,98880.97802,0,20
+286900,6150.710608,99101.60475,0,20
+286901,6288.272569,98879.70839,0,20
+286902,6175.188922,98290.80531,0,20
+286903,6433.591482,98776.84565,0,20
+286904,6351.440539,97648.89491,0,20
+286905,6449.792974,98344.59455,0,20
+286906,6580.066648,97512.87525,0,20
+286907,6496.451837,97665.98806,0,20
+286908,6724.471875,97097.85924,0,20
+286909,6625.086219,97061.86119,0,20
+286910,6770.7682,96899.09395,0,20
+286911,6868.459014,98281.65151,0,20
+286912,6786.567503,98299.87801,0,20
+286913,6898.764449,98400.67831,0,20
+286914,7027.835641,98673.39383,0,20
+286915,6944.684285,98428.77917,0,20
+286916,7043.564197,98212.20102,0,20
+286917,7057.956079,98277.63116,0,20
+286918,7186.600838,98050.57584,0,20
+286919,7216.547118,97935.23016,0,20
+286920,7186.600794,97556.20953,0,21
+286921,5435.639597,91140.37733,0,21
+286922,5138.762886,90051.91458,0,21
+286923,5272.622465,89701.39776,0,21
+286924,5138.762952,89157.10905,0,21
+286925,5037.322915,89155.813,0,21
+286926,5272.622548,88439.64548,0,21
+286927,5037.322986,88476.63804,0,21
+286928,5155.156193,88008.43143,0,21
+286929,5038.739467,87665.59556,0,21
+286930,5169.986068,87558.45993,0,21
+286931,5038.73943,87224.15051,0,21
+286932,5155.155788,86802.97297,0,21
+286933,4936.733101,86527.14064,0,21
+286934,5155.155974,86372.52012,0,21
+286935,5069.818923,86069.93497,0,21
+286936,5038.739325,85265.34889,0,21
+286937,5053.617555,84813.26691,0,21
+286938,4936.732943,84934.98193,0,21
+286939,5172.774082,84262.77319,0,21
+286940,4935.409513,84344.22634,0,21
+286941,4952.846502,83529.69151,0,21
+286942,5038.739358,83469.97678,0,21
+286943,4952.84633,83237.86518,0,21
+286944,4936.733012,82840.73128,0,21
+286945,4936.732649,82588.24451,0,21
+286946,4952.846333,82332.51161,0,21
+286947,4952.846349,81690.54723,0,21
+286948,4921.805973,81978.54202,0,21
+286949,4834.254927,81098.51693,0,21
+286950,4937.919283,81129.22498,0,21
+286951,4834.255255,80806.01848,0,21
+286952,4937.919343,80504.62306,0,21
+286953,4700.34463,79612.36989,0,21
+286954,4968.875847,79431.95911,0,21
+286955,4819.328222,77385.15744,0,21
+286956,4827.353242,76309.46335,0,21
+286957,4953.948492,76300.26569,0,21
+286958,4700.345155,75073.11204,0,21
+286959,4953.948842,74790.9934,0,21
+286960,4716.37446,74117.74931,0,21
+286961,4953.948935,73696.49318,0,21
+286962,4716.374226,72723.75237,0,21
+286963,4835.357453,72589.2599,0,21
+286964,4835.35777,71535.75519,0,21
+286965,4820.380642,70845.94723,0,21
+286966,4732.324052,70882.58374,0,21
+286967,4835.357522,69307.01417,0,21
+286968,4820.380416,69662.7548,0,21
+286969,4732.323984,68214.74243,0,21
+286970,4820.380656,67916.69892,0,21
+286971,4732.324089,67291.1042,0,21
+286972,4820.380495,66512.43713,0,21
+286973,4732.323713,66369.93722,0,21
+286974,4717.346926,65710.94571,0,21
+286975,4820.380677,66046.1959,0,21
+286976,4733.219884,65316.10602,0,21
+286977,4701.39724,65687.9887,0,21
+286978,4717.346645,64868.41815,0,21
+286979,4717.346719,65368.01202,0,21
+286980,4717.346967,64498.24102,0,21
+286981,0,29571.1663,0,21
+286982,0,26407.01033,0,21
+286983,0,25859.98263,0,21
+286984,0,24803.0864,0,21
+286985,0,24196.34334,0,21
+286986,0,23671.87766,0,21
+286987,0,22411.74683,0,21
+286988,0,22517.62856,0,21
+286989,0,21285.7186,0,21
+286990,0,21053.44845,0,21
+286991,0,20151.18426,0,21
+286992,0,19917.23323,0,21
+286993,0,18761.06055,0,21
+286994,0,18810.26589,0,21
+286995,0,17808.88779,0,21
+286996,0,17219.24158,0,21
+286997,0,16880.95313,0,21
+286998,0,16043.41774,0,21
+286999,0,15480.88177,0,21
+287000,0,14508.09809,0,21
+287001,0,14273.15136,0,21
+287002,0,13456.47433,0,21
+287003,0,13092.68775,0,21
+287004,0,12335.92142,0,21
+287005,0,11967.12348,0,21
+287006,0,11332.1563,0,21
+287007,0,10769.645,0,21
+287008,0,10397.45349,0,21
+287009,0,9627.88194,0,21
+287010,0,9328.973658,0,21
+287011,0,8541.606817,0,21
+287012,0,8468.996617,0,21
+287013,0,7641.014582,0,21
+287014,0,7256.288461,0,21
+287015,0,6787.467959,0,21
+287016,0,6510.93853,0,21
+287017,0,5659.495711,0,21
+287018,0,5486.440988,0,21
+287019,0,5004.817326,0,21
+287020,0,4492.041165,0,21
+287021,0,3839.499743,0,21
+287022,0,3839.499067,0,21
+287023,0,2802.509079,0,21
+287024,0,2894.292535,0,21
+287025,0,1861.467783,0,21
+287026,0,1729.942537,0,21
+287027,0,1587.914725,0,21
+287028,0,1528.268239,0,21
+287029,0,1433.258946,0,21
+287030,0,1459.351864,0,21
+287031,0,1346.637242,0,21
+287032,0,1329.464109,0,21
+287033,0,1276.625769,0,21
+287034,0,1232.822162,0,21
+287035,0,1171.482263,0,21
+287036,0,1144.707547,0,21
+287037,0,1073.392047,0,21
+287038,0,1042.342061,0,21
+287039,0,983.9595684,0,21
+287040,0,938.9464645,0,21
+287041,0,911.4658555,0,21
+287042,0,848.2898318,0,21
+287043,0,838.3555485,0,21
+287044,0,788.6948793,0,21
+287045,0,746.6691715,0,21
+287046,0,728.6725425,0,21
+287047,0,686.2817325,0,21
+287048,0,653.9742316,0,21
+287049,0,607.2126385,0,21
+287050,0,607.2127314,0,21
+287051,0,592.8541599,0,21
+287052,0,550.9641822,0,21
+287053,0,531.173182,0,21
+287054,0,465.0415434,0,21
+287055,0,483.5623042,0,21
+287056,0,416.9362987,0,21
+287057,0,420.7502444,0,21
+287058,0,353.4301778,0,21
+287059,0,357.1416023,0,21
+287060,0,319.4309067,0,21
+287061,0,267.6261526,0,21
+287062,0,289.0074482,0,21
+287063,0,207.6259492,0,21
+287064,0,213.8075874,0,21
+287065,0,156.1376522,0,21
+287066,0,156.1376614,0,21
+287067,0,129.8538356,0,21
+287068,0,102.8457097,0,21
+287069,0,83.13335153,0,21
+287070,0,83.13335573,0,21
+287071,0,83.13335943,0,21
+287072,0,42.77683986,0,21
+287073,0,42.77684106,0,21
+287074,0,42.77684222,0,21
+287075,0,0,0,21
+287076,0,11.16971408,0,21
+287077,0,0,0,21
+287078,0,0,0,21
+287079,0,0,0,21
+287080,0,0,0,21
+287081,0,0,0,21
+287082,0,0,0,21
+287083,0,0,0,21
+287084,0,0,0,21
+287085,0,0,0,21
+287086,0,0,0,21
+287087,0,0,0,21
+287088,0,0,0,21
+287089,0,0,0,21
+287090,0,0,0,21
+287091,0,0,0,21
+287092,0,0,0,21
+287093,0,0,0,21
+287094,0,0,0,21
+287095,0,0,0,21
+287096,0,0,0,21
+287097,0,0,0,21
+287098,0,0,0,21
+287099,0,0,0,21
+287100,0,0,0,21
+287101,0,0,0,21
+287102,0,0,0,21
+287103,0,0,0,21
+287104,0,0,0,21
+287105,0,0,0,21
+287106,0,0,0,21
+287107,0,0,0,21
+287108,0,0,0,21
+287109,0,0,0,21
+287110,0,0,0,21
+287111,0,0,0,21
+287112,0,0,0,21
+287113,0,0,0,21
+287114,0,0,0,21
+287115,0,0,0,21
+287116,0,0,0,21
+287117,0,0,0,21
+287118,0,0,0,21
+287119,0,0,0,21
+287120,0,0,0,21
+287121,0,0,0,21
+287122,0,0,0,21
+287123,0,0,0,21
+287124,0,0,0,21
+287125,0,0,0,21
+287126,0,0,0,21
+287127,0,0,0,21
+287128,0,0,0,21
+287129,0,0,0,21
+287130,0,0,0,21
+287131,0,0,0,21
+287132,0,0,0,21
+287133,0,0,0,21
+287134,0,0,0,21
+287135,0,0,0,21
+287136,0,0,0,21
+287137,0,0,0,21
+287138,0,0,0,21
+287139,0,0,0,21
+287140,0,0,0,21
+287141,0,0,0,21
+287142,0,0,0,21
+287143,0,0,0,21
+287144,0,0,0,21
+287145,0,0,0,21
+287146,0,0,0,21
+287147,0,0,0,21
+287148,0,0,0,21
+287149,0,0,0,21
+287150,0,0,0,21
+287151,0,0,0,21
+287152,0,0,0,21
+287153,0,0,0,21
+287154,0,0,0,21
+287155,0,0,0,21
+287156,0,0,0,21
+287157,0,0,0,21
+287158,0,0,0,21
+287159,0,0,0,21
+287160,0,0,0,21
+287161,0,0,0,21
+287162,0,0,0,21
+287163,0,0,0,21
+287164,0,0,0,21
+287165,0,0,0,21
+287166,0,0,0,21
+287167,0,0,0,21
+287168,0,0,0,21
+287169,0,0,0,21
+287170,0,0,0,21
+287171,0,0,0,21
+287172,0,0,0,21
+287173,0,0,0,21
+287174,0,0,0,21
+287175,0,0,0,21
+287176,0,0,0,21
+287177,0,0,0,21
+287178,0,0,0,21
+287179,0,0,0,21
+287180,0,0,0,21
+287181,0,0,0,21
+287182,0,0,0,21
+287183,0,0,0,21
+287184,0,0,0,21
+287185,0,0,0,21
+287186,0,0,0,21
+287187,0,0,0,21
+287188,0,0,0,21
+287189,0,0,0,21
+287190,0,0,0,21
+287191,0,0,0,21
+287192,0,0,0,21
+287193,0,0,0,21
+287194,0,0,0,21
+287195,0,0,0,21
+287196,0,0,0,21
+287197,0,0,0,21
+287198,0,0,0,21
+287199,0,0,0,21
+287200,0,0,0,21
+287201,0,0,0,21
+287202,0,0,0,21
+287203,0,0,0,21
+287204,0,0,0,21
+287205,0,0,0,21
+287206,0,0,0,21
+287207,0,0,0,21
+287208,0,0,0,21
+287209,0,0,0,21
+287210,0,0,0,21
+287211,0,0,0,21
+287212,0,0,0,21
+287213,0,0,0,21
+287214,0,0,0,21
+287215,0,0,0,21
+287216,0,0,0,21
+287217,0,0,0,21
+287218,0,0,0,21
+287219,0,0,0,21
+287220,0,0,0,21
+287221,0,0,0,21
+287222,0,0,0,21
+287223,0,0,0,21
+287224,0,0,0,21
+287225,0,0,0,21
+287226,0,0,0,21
+287227,0,0,0,21
+287228,0,0,0,21
+287229,0,0,0,21
+287230,0,0,0,21
+287231,0,0,0,21
+287232,0,0,0,21
+287233,0,0,0,21
+287234,0,0,0,21
+287235,0,0,0,21
+287236,0,0,0,21
+287237,0,0,0,21
+287238,0,0,0,21
+287239,0,0,0,21
+287240,0,0,0,21
+287241,0,0,0,21
+287242,0,0,0,21
+287243,0,0,0,21
+287244,0,0,0,21
+287245,0,0,0,21
+287246,0,0,0,21
+287247,0,0,0,21
+287248,0,0,0,21
+287249,0,0,0,21
+287250,0,0,0,21
+287251,0,0,0,21
+287252,0,0,0,21
+287253,0,0,0,21
+287254,0,0,0,21
+287255,0,0,0,21
+287256,0,0,0,21
+287257,0,0,0,21
+287258,0,0,0,21
+287259,0,0,0,21
+287260,0,0,0,21
+287261,0,0,0,21
+287262,0,0,0,21
+287263,0,0,0,21
+287264,0,0,0,21
+287265,0,0,0,21
+287266,0,0,0,21
+287267,0,0,0,21
+287268,0,0,0,21
+287269,0,0,0,21
+287270,0,0,0,21
+287271,0,0,0,21
+287272,0,0,0,21
+287273,0,0,0,21
+287274,0,0,0,21
+287275,0,0,0,21
+287276,0,0,0,21
+287277,0,0,0,21
+287278,0,0,0,21
+287279,0,0,0,21
+287280,0,0,0,21
+287281,0,0,0,21
+287282,0,0,0,21
+287283,0,0,0,21
+287284,0,0,0,21
+287285,0,0,0,21
+287286,0,0,0,21
+287287,0,0,0,21
+287288,0,0,0,21
+287289,0,0,0,21
+287290,0,0,0,21
+287291,0,0,0,21
+287292,0,0,0,21
+287293,0,0,0,21
+287294,0,0,0,21
+287295,0,0,0,21
+287296,0,0,0,21
+287297,0,0,0,21
+287298,0,0,0,21
+287299,0,0,0,21
+287300,0,0,0,21
+287301,0,0,0,21
+287302,0,0,0,21
+287303,0,0,0,21
+287304,0,0,0,21
+287305,0,0,0,21
+287306,0,0,0,21
+287307,0,0,0,21
+287308,0,0,0,21
+287309,0,0,0,21
+287310,0,0,0,21
+287311,0,0,0,21
+287312,0,0,0,21
+287313,0,0,0,21
+287314,0,0,0,21
+287315,0,0,0,21
+287316,0,0,0,21
+287317,0,0,0,21
+287318,0,0,0,21
+287319,0,0,0,21
+287320,0,0,0,21
+287321,0,0,0,21
+287322,0,0,0,21
+287323,0,0,0,21
+287324,0,0,0,21
+287325,0,0,0,21
+287326,0,0,0,21
+287327,0,0,0,21
+287328,0,0,0,21
+287329,0,0,0,21
+287330,0,0,0,21
+287331,0,0,0,21
+287332,0,0,0,21
+287333,0,0,0,21
+287334,0,0,0,21
+287335,0,0,0,21
+287336,0,0,0,21
+287337,0,0,0,21
+287338,0,0,0,21
+287339,0,0,0,21
+287340,0,0,0,21
+287341,0,0,0,21
+287342,0,0,0,21
+287343,0,0,0,21
+287344,0,0,0,21
+287345,0,0,0,21
+287346,0,0,0,21
+287347,0,0,0,21
+287348,0,0,0,21
+287349,0,0,0,21
+287350,0,0,0,21
+287351,0,0,0,21
+287352,0,0,0,21
+287353,0,0,0,21
+287354,0,0,0,21
+287355,0,0,0,21
+287356,0,0,0,21
+287357,0,0,0,21
+287358,0,0,0,21
+287359,0,0,0,21
+287360,0,0,0,21
+287361,0,0,0,21
+287362,0,0,0,21
+287363,0,0,0,21
+287364,0,0,0,21
+287365,0,0,0,21
+287366,0,0,0,21
+287367,0,0,0,21
+287368,0,0,0,21
+287369,0,0,0,21
+287370,0,0,0,21
+287371,0,0,0,21
+287372,0,0,0,21
+287373,0,0,0,21
+287374,0,0,0,21
+287375,0,0,0,21
+287376,0,0,0,21
+287377,0,0,0,21
+287378,0,0,0,21
+287379,0,0,0,21
+287380,0,0,0,21
+287381,0,0,0,21
+287382,0,0,0,21
+287383,0,0,0,21
+287384,0,0,0,21
+287385,0,0,0,21
+287386,0,0,0,21
+287387,0,0,0,21
+287388,0,0,0,21
+287389,0,0,0,21
+287390,0,0,0,21
+287391,0,0,0,21
+287392,0,0,0,21
+287393,0,0,0,21
+287394,0,0,0,21
+287395,0,0,0,21
+287396,0,0,0,21
+287397,0,0,0,21
+287398,0,0,0,21
+287399,0,0,0,21
+287400,0,0,0,21
+287401,0,0,0,21
+287402,0,0,0,21
+287403,0,0,0,21
+287404,0,0,0,21
+287405,0,0,0,21
+287406,0,0,0,21
+287407,0,0,0,21
+287408,0,0,0,21
+287409,0,0,0,21
+287410,0,0,0,21
+287411,0,0,0,21
+287412,0,0,0,21
+287413,0,0,0,21
+287414,0,0,0,21
+287415,0,0,0,21
+287416,0,0,0,21
+287417,0,0,0,21
+287418,0,0,0,21
+287419,0,0,0,21
+287420,0,0,0,21
+287421,0,0,0,21
+287422,0,0,0,21
+287423,0,0,0,21
+287424,0,0,0,21
+287425,0,0,0,21
+287426,0,0,0,21
+287427,0,0,0,21
+287428,0,0,0,21
+287429,0,0,0,21
+287430,0,0,0,21
+287431,0,0,0,21
+287432,0,0,0,21
+287433,0,0,0,21
+287434,0,0,0,21
+287435,0,0,0,21
+287436,0,0,0,21
+287437,0,0,0,21
+287438,0,0,0,21
+287439,0,0,0,21
+287440,0,0,0,21
+287441,0,0,0,21
+287442,0,0,0,21
+287443,0,0,0,21
+287444,0,0,0,21
+287445,0,0,0,21
+287446,0,0,0,21
+287447,0,0,0,21
+287448,0,0,0,21
+287449,0,0,0,21
+287450,0,0,0,21
+287451,0,0,0,21
+287452,0,0,0,21
+287453,0,0,0,21
+287454,0,0,0,21
+287455,0,0,0,21
+287456,0,0,0,21
+287457,0,0,0,21
+287458,0,0,0,21
+287459,0,0,0,21
+287460,0,0,0,21
+287461,0,0,0,21
+287462,0,0,0,21
+287463,0,0,0,21
+287464,0,0,0,21
+287465,0,0,0,21
+287466,0,0,0,21
+287467,0,0,0,21
+287468,0,0,0,21
+287469,0,0,0,21
+287470,0,0,0,21
+287471,0,0,0,21
+287472,0,0,0,21
+287473,0,0,0,21
+287474,0,0,0,21
+287475,0,0,0,21
+287476,0,0,0,21
+287477,0,0,0,21
+287478,0,0,0,21
+287479,0,0,0,21
+287480,0,0,0,21
+287481,0,0,0,21
+287482,0,0,0,21
+287483,0,0,0,21
+287484,0,0,0,21
+287485,0,0,0,21
+287486,0,0,0,21
+287487,0,0,0,21
+287488,0,0,0,21
+287489,0,0,0,21
+287490,0,0,0,21
+287491,0,0,0,21
+287492,0,0,0,21
+287493,0,0,0,21
+287494,0,0,0,21
+287495,0,0,0,21
+287496,0,0,0,21
+287497,0,0,0,21
+287498,0,0,0,21
+287499,0,0,0,21
+287500,0,0,0,21
+287501,0,0,0,21
+287502,0,0,0,21
+287503,0,0,0,21
+287504,0,0,0,21
+287505,0,0,0,21
+287506,0,0,0,21
+287507,0,0,0,21
+287508,0,0,0,21
+287509,0,0,0,21
+287510,0,0,0,21
+287511,0,0,0,21
+287512,0,0,0,21
+287513,0,0,0,21
+287514,0,0,0,21
+287515,0,0,0,21
+287516,0,0,0,21
+287517,0,0,0,21
+287518,0,0,0,21
+287519,0,0,0,21
+287520,0,0,0,21
+287521,0,0,0,21
+287522,0,0,0,21
+287523,0,0,0,21
+287524,0,0,0,21
+287525,0,0,0,21
+287526,0,0,0,21
+287527,0,0,0,21
+287528,0,0,0,21
+287529,0,0,0,21
+287530,0,0,0,21
+287531,0,0,0,21
+287532,0,0,0,21
+287533,0,0,0,21
+287534,0,0,0,21
+287535,0,0,0,21
+287536,0,0,0,21
+287537,0,0,0,21
+287538,0,0,0,21
+287539,0,0,0,21
+287540,0,0,0,21
+287541,0,0,0,21
+287542,0,0,0,21
+287543,0,0,0,21
+287544,0,0,0,21
+287545,0,0,0,21
+287546,0,0,0,21
+287547,0,0,0,21
+287548,0,0,0,21
+287549,0,0,0,21
+287550,0,0,0,21
+287551,0,0,0,21
+287552,0,0,0,21
+287553,0,0,0,21
+287554,0,0,0,21
+287555,0,0,0,21
+287556,0,0,0,21
+287557,0,0,0,21
+287558,0,0,0,21
+287559,0,0,0,21
+287560,0,0,0,21
+287561,0,0,0,21
+287562,0,0,0,21
+287563,0,0,0,21
+287564,0,0,0,21
+287565,0,0,0,21
+287566,0,0,0,21
+287567,0,0,0,21
+287568,0,0,0,21
+287569,0,0,0,21
+287570,0,0,0,21
+287571,0,0,0,21
+287572,0,0,0,21
+287573,0,0,0,21
+287574,0,0,0,21
+287575,0,0,0,21
+287576,0,0,0,21
+287577,0,0,0,21
+287578,0,0,0,21
+287579,0,0,0,21
+287580,0,0,0,21
+287581,0,0,0,21
+287582,0,0,0,21
+287583,0,0,0,21
+287584,0,0,0,21
+287585,0,0,0,21
+287586,0,0,0,21
+287587,0,0,0,21
+287588,0,0,0,21
+287589,0,0,0,21
+287590,0,0,0,21
+287591,0,0,0,21
+287592,0,0,0,21
+287593,0,0,0,21
+287594,0,0,0,21
+287595,0,0,0,21
+287596,0,0,0,21
+287597,0,0,0,21
+287598,0,0,0,21
+287599,0,0,0,21
+287600,0,0,0,21
+287601,0,0,0,21
+287602,0,0,0,21
+287603,0,0,0,21
+287604,0,0,0,21
+287605,0,0,0,21
+287606,0,0,0,21
+287607,0,0,0,21
+287608,0,0,0,21
+287609,0,0,0,21
+287610,0,0,0,21
+287611,0,0,0,21
+287612,0,0,0,21
+287613,0,0,0,21
+287614,0,0,0,21
+287615,0,0,0,21
+287616,0,0,0,21
+287617,0,0,0,21
+287618,0,0,0,21
+287619,0,0,0,21
+287620,0,0,0,21
+287621,0,0,0,21
+287622,0,0,0,21
+287623,0,0,0,21
+287624,0,0,0,21
+287625,0,0,0,21
+287626,0,0,0,21
+287627,0,0,0,21
+287628,0,0,0,21
+287629,0,0,0,21
+287630,0,0,0,21
+287631,0,0,0,21
+287632,0,0,0,21
+287633,0,0,0,21
+287634,0,0,0,21
+287635,0,0,0,21
+287636,0,0,0,21
+287637,0,0,0,21
+287638,0,0,0,21
+287639,0,0,0,21
+287640,0,0,0,21
+287641,0,0,0,21
+287642,0,0,0,21
+287643,0,0,0,21
+287644,0,0,0,21
+287645,0,0,0,21
+287646,0,0,0,21
+287647,0,0,0,21
+287648,0,0,0,21
+287649,0,0,0,21
+287650,0,0,0,21
+287651,0,0,0,21
+287652,0,0,0,21
+287653,0,0,0,21
+287654,0,0,0,21
+287655,0,0,0,21
+287656,0,0,0,21
+287657,0,0,0,21
+287658,0,0,0,21
+287659,0,0,0,21
+287660,0,0,0,21
+287661,0,0,0,21
+287662,0,0,0,21
+287663,0,0,0,21
+287664,0,0,0,21
+287665,0,0,0,21
+287666,0,0,0,21
+287667,0,0,0,21
+287668,0,0,0,21
+287669,0,0,0,21
+287670,0,0,0,21
+287671,0,0,0,21
+287672,0,0,0,21
+287673,0,0,0,21
+287674,0,0,0,21
+287675,0,0,0,21
+287676,0,0,0,21
+287677,0,0,0,21
+287678,0,0,0,21
+287679,0,0,0,21
+287680,0,0,0,21
+287681,0,0,0,21
+287682,0,0,0,21
+287683,0,0,0,21
+287684,0,0,0,21
+287685,0,0,0,21
+287686,0,0,0,21
+287687,0,0,0,21
+287688,0,0,0,21
+287689,0,0,0,21
+287690,0,0,0,21
+287691,0,0,0,21
+287692,0,0,0,21
+287693,0,0,0,21
+287694,0,0,0,21
+287695,0,0,0,21
+287696,0,0,0,21
+287697,0,0,0,21
+287698,0,0,0,21
+287699,0,0,0,21
+287700,0,0,0,21
+287701,0,0,0,21
+287702,0,0,0,21
+287703,0,0,0,21
+287704,0,0,0,21
+287705,0,0,0,21
+287706,0,0,0,21
+287707,0,0,0,21
+287708,0,0,0,21
+287709,0,0,0,21
+287710,0,0,0,21
+287711,0,0,0,21
+287712,0,0,0,21
+287713,0,0,0,21
+287714,0,0,0,21
+287715,0,0,0,21
+287716,0,0,0,21
+287717,0,0,0,21
+287718,0,0,0,21
+287719,0,0,0,21
+287720,0,0,0,21
+287721,0,0,0,21
+287722,0,0,0,21
+287723,0,0,0,21
+287724,0,0,0,21
+287725,0,0,0,21
+287726,0,0,0,21
+287727,0,0,0,21
+287728,0,0,0,21
+287729,0,0,0,21
+287730,0,0,0,21
+287731,0,0,0,21
+287732,0,0,0,21
+287733,0,0,0,21
+287734,0,0,0,21
+287735,0,0,0,21
+287736,0,0,0,21
+287737,0,0,0,21
+287738,0,0,0,21
+287739,0,0,0,21
+287740,0,0,0,21
+287741,0,0,0,21
+287742,0,0,0,21
+287743,0,0,0,21
+287744,0,0,0,21
+287745,0,0,0,21
+287746,0,0,0,21
+287747,0,0,0,21
+287748,0,0,0,21
+287749,0,0,0,21
+287750,0,0,0,21
+287751,0,0,0,21
+287752,0,0,0,21
+287753,0,0,0,21
+287754,0,0,0,21
+287755,0,0,0,21
+287756,0,0,0,21
+287757,0,0,0,21
+287758,0,0,0,21
+287759,0,0,0,21
+287760,0,0,0,21
+287761,0,0,0,21
+287762,0,0,0,21
+287763,0,0,0,21
+287764,0,0,0,21
+287765,0,0,0,21
+287766,0,0,0,21
+287767,0,0,0,21
+287768,0,0,0,21
+287769,0,0,0,21
+287770,0,0,0,21
+287771,0,0,0,21
+287772,0,0,0,21
+287773,0,0,0,21
+287774,0,0,0,21
+287775,0,0,0,21
+287776,0,0,0,21
+287777,0,0,0,21
+287778,0,0,0,21
+287779,0,0,0,21
+287780,0,0,0,21
+287781,0,0,0,21
+287782,0,0,0,21
+287783,0,0,0,21
+287784,0,0,0,21
+287785,0,0,0,21
+287786,0,0,0,21
+287787,0,0,0,21
+287788,0,0,0,21
+287789,0,0,0,21
+287790,0,0,0,21
+287791,0,0,0,21
+287792,0,0,0,21
+287793,0,0,0,21
+287794,0,0,0,21
+287795,0,0,0,21
+287796,0,0,0,21
+287797,0,0,0,21
+287798,0,0,0,21
+287799,0,0,0,21
+287800,0,185.6626839,0,21
+287801,0,1361.709064,0,21
+287802,0,1036.584599,0,21
+287803,0,1361.709121,0,21
+287804,0,1361.709132,0,21
+287805,0,1839.41888,0,21
+287806,0,1839.41892,0,21
+287807,0,1996.430522,0,21
+287808,0,2307.563626,0,21
+287809,0,2307.563659,0,21
+287810,0,2615.206948,0,21
+287811,0,2767.831473,0,21
+287812,0,2919.707321,0,21
+287813,0,3070.866853,0,21
+287814,0,3221.339053,0,21
+287815,0,3520.32452,0,21
+287816,0,3520.324635,0,21
+287817,0,3816.848439,0,21
+287818,0,3816.848663,0,21
+287819,0,4111.066944,0,21
+287820,0,4257.353702,0,21
+287821,0,0,0,21
+287822,0,0,0,21
+287823,0,0,0,21
+287824,0,0,0,21
+287825,328136.1438,365778.6514,667522.9916,21
+287826,0,0,0,21
+287827,0,0,0,21
+287828,0,0,0,21
+287829,0,0,0,21
+287830,0,0,0,21
+287831,0,0,0,21
+287832,0,0,0,21
+287833,0,0,0,21
+287834,0,0,0,21
+287835,0,0,0,21
+287836,0,0,0,21
+287837,0,0,0,21
+287838,0,0,0,21
+287839,0,0,0,21
+287840,0,0,0,21
+287841,0,0,0,21
+287842,0,0,0,21
+287843,0,0,0,21
+287844,0,0,0,21
+287845,0,0,0,21
+287846,0,0,0,21
+287847,0,0,0,21
+287848,0,0,0,21
+287849,0,0,0,21
+287850,0,0,0,21
+287851,0,0,0,21
+287852,0,0,0,21
+287853,0,0,0,21
+287854,0,0,0,21
+287855,0,0,0,21
+287856,0,0,0,21
+287857,0,0,0,21
+287858,0,0,0,21
+287859,328193.8927,366318.9085,667013.133,21
+287860,0,0,0,21
+287861,0,0,0,21
+287862,0,0,0,21
+287863,0,0,0,21
+287864,0,0,0,21
+287865,0,0,0,21
+287866,0,0,0,21
+287867,0,0,0,21
+287868,0,0,0,21
+287869,0,0,0,21
+287870,0,0,0,21
+287871,0,0,0,21
+287872,0,0,0,21
+287873,0,0,0,21
+287874,0,0,0,21
+287875,0,0,0,21
+287876,0,0,0,21
+287877,0,0,0,21
+287878,0,0,0,21
+287879,0,0,0,21
+287880,0,0,0,15.6
+287881,0,0,0,15.6
+287882,0,0,0,15.6
+287883,0,0,0,15.6
+287884,0,0,0,15.6
+287885,0,0,0,15.6
+287886,0,0,0,15.6
+287887,0,0,0,15.6
+287888,0,0,0,15.6
+287889,0,0,0,15.6
+287890,0,0,0,15.6
+287891,0,0,0,15.6
+287892,0,0,0,15.6
+287893,330177.5644,365780.414,666936.5919,15.6
+287894,0,0,0,15.6
+287895,0,0,0,15.6
+287896,0,0,0,15.6
+287897,0,0,0,15.6
+287898,0,0,0,15.6
+287899,0,0,0,15.6
+287900,0,0,0,15.6
+287901,0,0,0,15.6
+287902,0,0,0,15.6
+287903,0,0,0,15.6
+287904,0,0,0,15.6
+287905,0,0,0,15.6
+287906,0,0,0,15.6
+287907,0,0,0,15.6
+287908,0,0,0,15.6
+287909,0,0,0,15.6
+287910,0,0,0,15.6
+287911,0,0,0,15.6
+287912,0,0,0,15.6
+287913,0,0,0,15.6
+287914,0,0,0,15.6
+287915,0,0,0,15.6
+287916,0,0,0,15.6
+287917,0,0,0,15.6
+287918,0,0,0,15.6
+287919,0,0,0,15.6
+287920,0,0,0,15.6
+287921,0,0,0,15.6
+287922,0,0,0,15.6
+287923,0,0,0,15.6
+287924,0,0,0,15.6
+287925,0,0,0,15.6
+287926,0,0,0,15.6
+287927,331337.0253,366422.3622,666290.5007,15.6
+287928,0,0,0,15.6
+287929,0,0,0,15.6
+287930,0,0,0,15.6
+287931,0,0,0,15.6
+287932,0,0,0,15.6
+287933,0,0,0,15.6
+287934,0,0,0,15.6
+287935,0,0,0,15.6
+287936,0,0,0,15.6
+287937,0,0,0,15.6
+287938,0,0,0,15.6
+287939,0,0,0,15.6
+287940,0,0,0,15.6
+287941,0,0,0,15.6
+287942,0,0,0,15.6
+287943,0,0,0,15.6
+287944,0,0,0,15.6
+287945,0,0,0,15.6
+287946,0,0,0,15.6
+287947,0,0,0,15.6
+287948,0,0,0,15.6
+287949,0,0,0,15.6
+287950,0,0,0,15.6
+287951,0,0,0,15.6
+287952,0,0,0,15.6
+287953,0,0,0,15.6
+287954,0,0,0,15.6
+287955,0,0,0,15.6
+287956,0,0,0,15.6
+287957,0,0,0,15.6
+287958,0,0,0,15.6
+287959,0,0,0,15.6
+287960,0,0,0,15.6
+287961,332226.3359,367081.3376,665766.5286,15.6
+287962,0,0,0,15.6
+287963,0,0,0,15.6
+287964,0,0,0,15.6
+287965,0,0,0,15.6
+287966,0,0,0,15.6
+287967,0,0,0,15.6
+287968,0,0,0,15.6
+287969,0,0,0,15.6
+287970,0,0,0,15.6
+287971,0,0,0,15.6
+287972,0,0,0,15.6
+287973,0,0,0,15.6
+287974,0,0,0,15.6
+287975,0,0,0,15.6
+287976,0,0,0,15.6
+287977,0,0,0,15.6
+287978,0,0,0,15.6
+287979,0,0,0,15.6
+287980,0,0,0,15.6
+287981,0,0,0,15.6
+287982,0,0,0,15.6
+287983,0,0,0,15.6
+287984,0,0,0,15.6
+287985,0,0,0,15.6
+287986,0,0,0,15.6
+287987,0,0,0,15.6
+287988,0,0,0,15.6
+287989,0,0,0,15.6
+287990,0,0,0,15.6
+287991,0,0,0,15.6
+287992,0,0,0,15.6
+287993,0,0,0,15.6
+287994,0,0,0,15.6
+287995,333203.0317,366459.1985,665175.7964,15.6
+287996,0,0,0,15.6
+287997,0,0,0,15.6
+287998,0,0,0,15.6
+287999,0,0,0,15.6
+288000,0,0,0,15.6
+288001,0,0,0,15.6
+288002,0,0,0,15.6
+288003,0,0,0,15.6
+288004,0,0,0,15.6
+288005,0,0,0,15.6
+288006,0,0,0,15.6
+288007,0,0,0,15.6
+288008,0,0,0,15.6
+288009,0,0,0,15.6
+288010,0,0,0,15.6
+288011,0,0,0,15.6
+288012,0,0,0,15.6
+288013,0,0,0,15.6
+288014,0,0,0,15.6
+288015,0,0,0,15.6
+288016,0,0,0,15.6
+288017,0,0,0,15.6
+288018,0,0,0,15.6
+288019,0,0,0,15.6
+288020,0,0,0,15.6
+288021,0,0,0,15.6
+288022,0,0,0,15.6
+288023,0,0,0,15.6
+288024,0,0,0,15.6
+288025,0,0,0,15.6
+288026,0,0,0,15.6
+288027,0,0,0,15.6
+288028,0,0,0,15.6
+288029,334325.7759,367095.4903,663981.3167,15.6
+288030,0,0,0,15.6
+288031,0,0,0,15.6
+288032,0,0,0,15.6
+288033,0,0,0,15.6
+288034,0,0,0,15.6
+288035,0,0,0,15.6
+288036,0,0,0,15.6
+288037,0,0,0,15.6
+288038,0,0,0,15.6
+288039,0,0,0,15.6
+288040,0,0,0,15.6
+288041,0,0,0,15.6
+288042,0,0,0,15.6
+288043,0,0,0,15.6
+288044,0,0,0,15.6
+288045,0,0,0,15.6
+288046,0,0,0,15.6
+288047,0,0,0,15.6
+288048,0,0,0,15.6
+288049,0,0,0,15.6
+288050,0,0,0,15.6
+288051,0,0,0,15.6
+288052,0,0,0,15.6
+288053,0,0,0,15.6
+288054,0,0,0,15.6
+288055,0,0,0,15.6
+288056,0,0,0,15.6
+288057,0,0,0,15.6
+288058,0,0,0,15.6
+288059,0,0,0,15.6
+288060,0,0,0,15.6
+288061,0,0,0,15.6
+288062,0,0,0,15.6
+288063,334011.7298,366787.203,663289.6287,15.6
+288064,0,0,0,15.6
+288065,0,0,0,15.6
+288066,0,0,0,15.6
+288067,0,0,0,15.6
+288068,0,0,0,15.6
+288069,0,0,0,15.6
+288070,0,0,0,15.6
+288071,0,0,0,15.6
+288072,0,0,0,15.6
+288073,0,0,0,15.6
+288074,0,0,0,15.6
+288075,0,0,0,15.6
+288076,0,0,0,15.6
+288077,0,0,0,15.6
+288078,0,0,0,15.6
+288079,0,0,0,15.6
+288080,0,0,0,15.6
+288081,0,0,0,15.6
+288082,0,0,0,15.6
+288083,0,0,0,15.6
+288084,0,0,0,15.6
+288085,0,0,0,15.6
+288086,0,0,0,15.6
+288087,0,0,0,15.6
+288088,0,0,0,15.6
+288089,0,0,0,15.6
+288090,0,0,0,15.6
+288091,0,0,0,15.6
+288092,0,0,0,15.6
+288093,0,0,0,15.6
+288094,0,0,0,15.6
+288095,0,0,0,15.6
+288096,0,0,0,15.6
+288097,0,366900.2931,663406.266,15.6
+288098,334695.2008,0,0,15.6
+288099,0,0,0,15.6
+288100,0,0,0,15.6
+288101,0,0,0,15.6
+288102,0,0,0,15.6
+288103,0,0,0,15.6
+288104,0,0,0,15.6
+288105,0,0,0,15.6
+288106,0,0,0,15.6
+288107,0,0,0,15.6
+288108,0,0,0,15.6
+288109,0,0,0,15.6
+288110,0,0,0,15.6
+288111,0,0,0,15.6
+288112,0,0,0,15.6
+288113,0,0,0,15.6
+288114,0,0,0,15.6
+288115,0,0,0,15.6
+288116,0,0,0,15.6
+288117,0,0,0,15.6
+288118,0,0,0,15.6
+288119,0,0,0,15.6
+288120,0,0,0,15.6
+288121,0,0,0,15.6
+288122,0,0,0,15.6
+288123,0,0,0,15.6
+288124,0,0,0,15.6
+288125,0,0,0,15.6
+288126,0,0,0,15.6
+288127,0,0,0,15.6
+288128,0,0,0,15.6
+288129,0,0,0,15.6
+288130,0,0,0,15.6
+288131,0,367192.4516,662837.6779,15.6
+288132,0,0,0,15.6
+288133,335065.609,0,0,15.6
+288134,0,0,0,15.6
+288135,0,0,0,15.6
+288136,0,0,0,15.6
+288137,0,0,0,15.6
+288138,0,0,0,15.6
+288139,0,0,0,15.6
+288140,0,0,0,15.6
+288141,0,0,0,15.6
+288142,0,0,0,15.6
+288143,0,0,0,15.6
+288144,0,0,0,15.6
+288145,0,0,0,15.6
+288146,0,0,0,15.6
+288147,0,0,0,15.6
+288148,0,0,0,15.6
+288149,0,0,0,15.6
+288150,0,0,0,15.6
+288151,0,0,0,15.6
+288152,0,0,0,15.6
+288153,0,0,0,15.6
+288154,0,0,0,15.6
+288155,0,0,0,15.6
+288156,0,0,0,15.6
+288157,0,0,0,15.6
+288158,0,0,0,15.6
+288159,0,0,0,15.6
+288160,0,0,0,15.6
+288161,0,0,0,15.6
+288162,0,0,0,15.6
+288163,0,0,0,15.6
+288164,0,0,662531.3119,15.6
+288165,0,364927.9593,0,15.6
+288166,0,0,0,15.6
+288167,0,0,0,15.6
+288168,335160.2576,0,0,15.6
+288169,0,0,0,15.6
+288170,0,0,0,15.6
+288171,0,0,0,15.6
+288172,0,0,0,15.6
+288173,0,0,0,15.6
+288174,0,0,0,15.6
+288175,0,0,0,15.6
+288176,0,0,0,15.6
+288177,0,0,0,15.6
+288178,0,0,0,15.6
+288179,0,0,0,15.6
+288180,0,0,0,15.6
+288181,0,0,0,15.6
+288182,0,0,0,15.6
+288183,0,0,0,15.6
+288184,0,0,0,15.6
+288185,0,0,0,15.6
+288186,0,0,0,15.6
+288187,0,0,0,15.6
+288188,0,0,0,15.6
+288189,0,0,0,15.6
+288190,0,0,0,15.6
+288191,0,0,0,15.6
+288192,0,0,0,15.6
+288193,0,0,0,15.6
+288194,0,0,0,15.6
+288195,0,0,0,15.6
+288196,0,0,0,15.6
+288197,0,0,0,15.6
+288198,0,0,661569.7268,15.6
+288199,0,0,0,15.6
+288200,0,369427.8445,0,15.6
+288201,0,0,0,15.6
+288202,335276.4551,0,0,15.6
+288203,0,0,0,15.6
+288204,0,0,0,15.6
+288205,0,0,0,15.6
+288206,0,0,0,15.6
+288207,0,0,0,15.6
+288208,0,0,0,15.6
+288209,0,0,0,15.6
+288210,0,0,0,15.6
+288211,0,0,0,15.6
+288212,0,0,0,15.6
+288213,0,0,0,15.6
+288214,0,0,0,15.6
+288215,0,0,0,15.6
+288216,0,0,0,15.6
+288217,0,0,0,15.6
+288218,0,0,0,15.6
+288219,0,0,0,15.6
+288220,0,0,0,15.6
+288221,0,0,0,15.6
+288222,0,0,0,15.6
+288223,0,0,0,15.6
+288224,0,0,0,15.6
+288225,0,0,0,15.6
+288226,0,0,0,15.6
+288227,0,0,0,15.6
+288228,0,0,0,15.6
+288229,0,0,0,15.6
+288230,0,0,0,15.6
+288231,0,0,0,15.6
+288232,0,0,661927.8533,15.6
+288233,0,0,0,15.6
+288234,0,369427.6717,0,15.6
+288235,0,0,0,15.6
+288236,336160.6618,0,0,15.6
+288237,0,0,0,15.6
+288238,0,0,0,15.6
+288239,0,0,0,15.6
+288240,0,0,0,17.8
+288241,0,0,0,17.8
+288242,0,0,0,17.8
+288243,0,0,0,17.8
+288244,0,0,0,17.8
+288245,0,0,0,17.8
+288246,0,0,0,17.8
+288247,0,0,0,17.8
+288248,0,0,0,17.8
+288249,0,0,0,17.8
+288250,0,0,0,17.8
+288251,0,0,0,17.8
+288252,0,0,0,17.8
+288253,0,0,0,17.8
+288254,0,0,0,17.8
+288255,0,0,0,17.8
+288256,0,0,0,17.8
+288257,0,0,0,17.8
+288258,0,0,0,17.8
+288259,0,0,0,17.8
+288260,0,0,0,17.8
+288261,0,0,0,17.8
+288262,0,0,0,17.8
+288263,0,0,0,17.8
+288264,0,0,0,17.8
+288265,0,0,0,17.8
+288266,0,0,660967.8234,17.8
+288267,0,0,0,17.8
+288268,0,369427.2364,0,17.8
+288269,0,0,0,17.8
+288270,336302.8888,0,0,17.8
+288271,0,0,0,17.8
+288272,0,0,0,17.8
+288273,0,0,0,17.8
+288274,0,0,0,17.8
+288275,0,0,0,17.8
+288276,0,0,0,17.8
+288277,0,0,0,17.8
+288278,0,0,0,17.8
+288279,0,0,0,17.8
+288280,0,0,0,17.8
+288281,0,0,0,17.8
+288282,0,0,0,17.8
+288283,0,0,0,17.8
+288284,0,0,0,17.8
+288285,0,0,0,17.8
+288286,0,0,0,17.8
+288287,0,0,0,17.8
+288288,0,0,0,17.8
+288289,0,0,0,17.8
+288290,0,0,0,17.8
+288291,0,0,0,17.8
+288292,0,0,0,17.8
+288293,0,0,0,17.8
+288294,0,0,0,17.8
+288295,0,0,0,17.8
+288296,0,0,0,17.8
+288297,0,0,0,17.8
+288298,0,0,0,17.8
+288299,0,0,0,17.8
+288300,0,0,661190.9099,20
+288301,336737.7016,392971.052,0,20
+288302,0,0,0,20
+288303,0,0,0,20
+288304,0,519.2794384,0,20
+288305,0,6376.976588,0,20
+288306,0,2653.95419,0,20
+288307,0,3449.920849,0,20
+288308,0,22996.66678,0,20
+288309,0,27791.26473,0,20
+288310,0,21395.2092,0,20
+288311,0,28255.73195,0,20
+288312,0,35377.1224,0,20
+288313,0,31158.87926,0,20
+288314,0,32953.11405,0,20
+288315,0,33384.36349,0,20
+288316,0,34100.56694,0,20
+288317,0,34048.51923,0,20
+288318,0,34725.48129,0,20
+288319,0,34876.80562,0,20
+288320,0,35384.6016,0,20
+288321,0,35550.57652,0,20
+288322,0,35844.56758,0,20
+288323,0,36168.80957,0,20
+288324,0,36387.41805,0,20
+288325,0,36785.61902,0,20
+288326,0,36971.56487,0,20
+288327,0,37279.12634,0,20
+288328,0,37337.43494,0,20
+288329,0,37563.08486,0,20
+288330,0,38030.21364,0,20
+288331,0,37965.57053,0,20
+288332,0,38460.00751,0,20
+288333,0,38334.01197,0,20
+288334,0,38707.43495,0,20
+288335,0,39099.61734,0,20
+288336,0,39022.88783,0,20
+288337,0,39357.02071,0,20
+288338,0,39517.79024,118.1543339,20
+288339,0,39660.76115,126.1906796,20
+288340,0,39864.03214,134.1956825,20
+288341,0,40018.47211,150.1171331,20
+288342,0,40344.01408,181.6415747,20
+288343,0,40075.87567,181.6424845,20
+288344,0,40643.84992,212.7941934,20
+288345,0,40591.7346,228.2457213,20
+288346,0,40863.12107,0,20
+288347,0,40876.04715,0,20
+288348,0,41215.33617,0,20
+288349,0,41233.71805,0,20
+288350,0,41339.15056,0,20
+288351,0,41446.90377,0,20
+288352,0,41678.16557,0,20
+288353,0,41903.10591,0,20
+288354,0,41714.02384,0,20
+288355,0,42103.61064,0,20
+288356,0,42007.66091,0,20
+288357,0,42247.82307,0,20
+288358,0,42398.90809,0,20
+288359,0,42403.2054,0,20
+288360,0,42455.63813,0,21
+288361,0,38405.67235,0,21
+288362,0,37992.99557,0,21
+288363,0,37785.28965,0,21
+288364,0,38076.50064,0,21
+288365,0,37951.00707,0,21
+288366,0,38106.17945,0,21
+288367,0,38238.07302,0,21
+288368,0,38182.4227,0,21
+288369,0,38197.32948,0,21
+288370,0,38433.16364,0,21
+288371,0,38484.15686,0,21
+288372,0,38454.59837,0,21
+288373,0,38733.91953,0,21
+288374,0,38484.15859,0,21
+288375,0,38755.31303,0,21
+288376,0,38748.65527,0,21
+288377,0,38956.63361,0,21
+288378,0,38763.36268,0,21
+288379,0,38986.07817,0,21
+288380,0,38915.92137,0,21
+288381,0,39268.90303,0,21
+288382,0,38981.28001,0,21
+288383,0,39414.53673,0,21
+288384,0,39069.58589,0,21
+288385,0,39340.90799,0,21
+288386,0,39574.57515,0,21
+288387,0,39300.14383,0,21
+288388,0,39589.22564,0,21
+288389,0,39610.50648,0,21
+288390,0,39438.77925,0,21
+288391,0,39610.50489,0,21
+288392,0,39763.5308,0,21
+288393,0,39625.12746,0,21
+288394,0,39763.52926,0,21
+288395,0,39763.52851,0,21
+288396,0,39460.05635,0,21
+288397,0,39748.93074,0,21
+288398,0,39280.08999,0,21
+288399,0,39763.52566,0,21
+288400,0,39134.7656,0,21
+288401,0,39583.85916,0,21
+288402,0,39403.89361,0,21
+288403,0,39515.6754,0,21
+288404,0,39223.62608,0,21
+288405,0,39577.14378,0,21
+288406,0,39156.0436,0,21
+288407,0,39418.45937,0,21
+288408,0,39382.60853,0,21
+288409,0,38990.3444,0,21
+288410,0,39403.88911,0,21
+288411,0,39195.5904,0,21
+288412,0,39191.85361,0,21
+288413,0,39000.45146,0,21
+288414,0,38788.49112,0,21
+288415,0,38738.00669,0,21
+288416,0,38571.72853,0,21
+288417,0,38571.72814,0,21
+288418,0,38571.72775,0,21
+288419,0,38266.26839,0,21
+288420,0,38354.59364,0,21
+288421,0,5292.200168,0,21
+288422,0,3645.148565,0,21
+288423,0,2868.839447,0,21
+288424,0,2543.046714,0,21
+288425,0,1980.150042,0,21
+288426,0,1672.915465,0,21
+288427,0,1358.147941,0,21
+288428,0,730.7788848,0,21
+288429,0,730.7788948,0,21
+288430,0,635.4428496,0,21
+288431,0,608.2127918,0,21
+288432,0,558.953029,0,21
+288433,0,503.8540503,0,21
+288434,0,503.8540546,0,21
+288435,0,448.1950983,0,21
+288436,0,420.1386733,0,21
+288437,0,391.9201522,0,21
+288438,0,363.5300105,0,21
+288439,0,334.9572594,0,21
+288440,0,277.2102468,0,21
+288441,0,277.2102452,0,21
+288442,0,188.804239,0,21
+288443,0,203.7108311,0,21
+288444,0,143.5863032,0,21
+288445,0,128.324636,0,21
+288446,0,81.82717365,0,21
+288447,0,66.03389255,0,21
+288448,0,0,0,21
+288449,0,0,0,21
+288450,0,0,0,21
+288451,0,0,0,21
+288452,0,0,0,21
+288453,0,0,0,21
+288454,0,0,0,21
+288455,0,0,0,21
+288456,0,0,0,21
+288457,0,0,0,21
+288458,0,0,0,21
+288459,0,0,0,21
+288460,0,0,0,21
+288461,0,0,0,21
+288462,0,0,0,21
+288463,0,0,0,21
+288464,0,0,0,21
+288465,0,0,0,21
+288466,0,0,0,21
+288467,0,0,0,21
+288468,0,0,0,21
+288469,0,0,0,21
+288470,0,0,0,21
+288471,0,0,0,21
+288472,0,0,0,21
+288473,0,0,0,21
+288474,0,0,0,21
+288475,0,0,0,21
+288476,0,0,0,21
+288477,0,0,0,21
+288478,0,0,0,21
+288479,0,0,0,21
+288480,0,0,0,21
+288481,0,0,0,21
+288482,0,0,0,21
+288483,0,0,0,21
+288484,0,0,0,21
+288485,0,0,0,21
+288486,0,0,0,21
+288487,0,0,0,21
+288488,0,0,0,21
+288489,0,0,0,21
+288490,0,0,0,21
+288491,0,0,0,21
+288492,0,0,0,21
+288493,0,0,0,21
+288494,0,0,0,21
+288495,0,0,0,21
+288496,0,0,0,21
+288497,0,0,0,21
+288498,0,0,0,21
+288499,0,0,0,21
+288500,0,0,0,21
+288501,0,0,0,21
+288502,0,0,0,21
+288503,0,0,0,21
+288504,0,0,0,21
+288505,0,0,0,21
+288506,0,0,0,21
+288507,0,0,0,21
+288508,0,0,0,21
+288509,0,0,0,21
+288510,0,0,0,21
+288511,0,0,0,21
+288512,0,0,0,21
+288513,0,0,0,21
+288514,0,0,0,21
+288515,0,0,0,21
+288516,0,0,0,21
+288517,0,0,0,21
+288518,0,0,0,21
+288519,0,0,0,21
+288520,0,0,0,21
+288521,0,0,0,21
+288522,0,0,0,21
+288523,0,0,0,21
+288524,0,0,0,21
+288525,0,0,0,21
+288526,0,0,0,21
+288527,0,0,0,21
+288528,0,0,0,21
+288529,0,0,0,21
+288530,0,0,0,21
+288531,0,0,0,21
+288532,0,0,0,21
+288533,0,0,0,21
+288534,0,0,0,21
+288535,0,0,0,21
+288536,0,0,0,21
+288537,0,0,0,21
+288538,0,0,0,21
+288539,0,0,0,21
+288540,0,0,0,21
+288541,0,0,0,21
+288542,0,0,0,21
+288543,0,0,0,21
+288544,0,0,0,21
+288545,0,0,0,21
+288546,0,0,0,21
+288547,0,0,0,21
+288548,0,0,0,21
+288549,0,0,0,21
+288550,0,0,0,21
+288551,0,0,0,21
+288552,0,0,0,21
+288553,0,0,0,21
+288554,0,0,0,21
+288555,0,0,0,21
+288556,0,0,0,21
+288557,0,0,0,21
+288558,0,0,0,21
+288559,0,0,0,21
+288560,0,0,0,21
+288561,0,0,0,21
+288562,0,0,0,21
+288563,0,0,0,21
+288564,0,0,0,21
+288565,0,0,0,21
+288566,0,0,0,21
+288567,0,0,0,21
+288568,0,0,0,21
+288569,0,0,0,21
+288570,0,0,0,21
+288571,0,0,0,21
+288572,0,0,0,21
+288573,0,0,0,21
+288574,0,0,0,21
+288575,0,0,0,21
+288576,0,0,0,21
+288577,0,0,0,21
+288578,0,0,0,21
+288579,0,0,0,21
+288580,0,0,0,21
+288581,0,0,0,21
+288582,0,0,0,21
+288583,0,0,0,21
+288584,0,0,0,21
+288585,0,0,0,21
+288586,0,0,0,21
+288587,0,0,0,21
+288588,0,0,0,21
+288589,0,0,0,21
+288590,0,0,0,21
+288591,0,0,0,21
+288592,0,0,0,21
+288593,0,0,0,21
+288594,0,0,0,21
+288595,0,0,0,21
+288596,0,0,0,21
+288597,0,0,0,21
+288598,0,0,0,21
+288599,0,0,0,21
+288600,0,0,0,21
+288601,0,0,0,21
+288602,0,0,0,21
+288603,0,0,0,21
+288604,0,0,0,21
+288605,0,0,0,21
+288606,0,0,0,21
+288607,0,0,0,21
+288608,0,0,0,21
+288609,0,0,0,21
+288610,0,0,0,21
+288611,0,0,0,21
+288612,0,0,0,21
+288613,0,0,0,21
+288614,0,0,0,21
+288615,0,0,0,21
+288616,0,0,0,21
+288617,0,0,0,21
+288618,0,0,0,21
+288619,0,0,0,21
+288620,0,0,0,21
+288621,0,0,0,21
+288622,0,0,0,21
+288623,0,0,0,21
+288624,0,0,0,21
+288625,0,0,0,21
+288626,0,0,0,21
+288627,0,0,0,21
+288628,0,0,0,21
+288629,0,0,0,21
+288630,0,0,0,21
+288631,0,0,0,21
+288632,0,0,0,21
+288633,0,0,0,21
+288634,0,0,0,21
+288635,0,0,0,21
+288636,0,0,0,21
+288637,0,0,0,21
+288638,0,0,0,21
+288639,0,0,0,21
+288640,0,0,0,21
+288641,0,0,0,21
+288642,0,0,0,21
+288643,0,0,0,21
+288644,0,0,0,21
+288645,0,0,0,21
+288646,0,0,0,21
+288647,0,0,0,21
+288648,0,0,0,21
+288649,0,0,0,21
+288650,0,0,0,21
+288651,0,0,0,21
+288652,0,0,0,21
+288653,0,0,0,21
+288654,0,0,0,21
+288655,0,0,0,21
+288656,0,0,0,21
+288657,0,0,0,21
+288658,0,0,0,21
+288659,0,0,0,21
+288660,0,0,0,21
+288661,0,0,0,21
+288662,0,0,0,21
+288663,0,0,0,21
+288664,0,0,0,21
+288665,0,0,0,21
+288666,0,0,0,21
+288667,0,0,0,21
+288668,0,0,0,21
+288669,0,0,0,21
+288670,0,0,0,21
+288671,0,0,0,21
+288672,0,0,0,21
+288673,0,0,0,21
+288674,0,0,0,21
+288675,0,0,0,21
+288676,0,0,0,21
+288677,0,0,0,21
+288678,0,0,0,21
+288679,0,0,0,21
+288680,0,0,0,21
+288681,0,0,0,21
+288682,0,0,0,21
+288683,0,0,0,21
+288684,0,0,0,21
+288685,0,0,0,21
+288686,0,0,0,21
+288687,0,0,0,21
+288688,0,0,0,21
+288689,0,0,0,21
+288690,0,0,0,21
+288691,0,0,0,21
+288692,0,0,0,21
+288693,0,0,0,21
+288694,0,0,0,21
+288695,0,0,0,21
+288696,0,0,0,21
+288697,0,0,0,21
+288698,0,0,0,21
+288699,0,0,0,21
+288700,0,0,0,21
+288701,0,0,0,21
+288702,0,0,0,21
+288703,0,0,0,21
+288704,0,0,0,21
+288705,0,0,0,21
+288706,0,0,0,21
+288707,0,0,0,21
+288708,0,0,0,21
+288709,0,0,0,21
+288710,0,0,0,21
+288711,0,0,0,21
+288712,0,0,0,21
+288713,0,0,0,21
+288714,0,0,0,21
+288715,0,0,0,21
+288716,0,0,0,21
+288717,0,0,0,21
+288718,0,0,0,21
+288719,0,0,0,21
+288720,0,0,0,21
+288721,0,0,0,21
+288722,0,0,0,21
+288723,0,0,0,21
+288724,0,0,0,21
+288725,0,0,0,21
+288726,0,0,0,21
+288727,0,0,0,21
+288728,0,0,0,21
+288729,0,0,0,21
+288730,0,0,0,21
+288731,0,0,0,21
+288732,0,0,0,21
+288733,0,0,0,21
+288734,0,0,0,21
+288735,0,0,0,21
+288736,0,0,0,21
+288737,0,0,0,21
+288738,0,0,0,21
+288739,0,0,0,21
+288740,0,0,0,21
+288741,0,0,0,21
+288742,0,0,0,21
+288743,0,0,0,21
+288744,0,0,0,21
+288745,0,0,0,21
+288746,0,0,0,21
+288747,0,0,0,21
+288748,0,0,0,21
+288749,0,0,0,21
+288750,0,0,0,21
+288751,0,0,0,21
+288752,0,0,0,21
+288753,0,0,0,21
+288754,0,0,0,21
+288755,0,0,0,21
+288756,0,0,0,21
+288757,0,0,0,21
+288758,0,0,0,21
+288759,0,0,0,21
+288760,0,0,0,21
+288761,0,0,0,21
+288762,0,0,0,21
+288763,0,0,0,21
+288764,0,0,0,21
+288765,0,0,0,21
+288766,0,0,0,21
+288767,0,0,0,21
+288768,0,0,0,21
+288769,0,0,0,21
+288770,0,0,0,21
+288771,0,0,0,21
+288772,0,0,0,21
+288773,0,0,0,21
+288774,0,0,0,21
+288775,0,0,0,21
+288776,0,0,0,21
+288777,0,0,0,21
+288778,0,0,0,21
+288779,0,0,0,21
+288780,0,0,0,21
+288781,0,0,0,21
+288782,0,0,0,21
+288783,0,0,0,21
+288784,0,0,0,21
+288785,0,0,0,21
+288786,0,0,0,21
+288787,0,0,0,21
+288788,0,0,0,21
+288789,0,0,0,21
+288790,0,0,0,21
+288791,0,0,0,21
+288792,0,0,0,21
+288793,0,0,0,21
+288794,0,0,0,21
+288795,0,0,0,21
+288796,0,0,0,21
+288797,0,0,0,21
+288798,0,0,0,21
+288799,0,0,0,21
+288800,0,0,0,21
+288801,0,0,0,21
+288802,0,0,0,21
+288803,0,0,0,21
+288804,0,0,0,21
+288805,0,0,0,21
+288806,0,0,0,21
+288807,0,0,0,21
+288808,0,0,0,21
+288809,0,0,0,21
+288810,0,0,0,21
+288811,0,0,0,21
+288812,0,0,0,21
+288813,0,0,0,21
+288814,0,0,0,21
+288815,0,0,0,21
+288816,0,0,0,21
+288817,0,0,0,21
+288818,0,0,0,21
+288819,0,0,0,21
+288820,0,0,0,21
+288821,0,0,0,21
+288822,0,0,0,21
+288823,0,0,0,21
+288824,0,0,0,21
+288825,0,0,0,21
+288826,0,0,0,21
+288827,0,0,0,21
+288828,0,0,0,21
+288829,0,0,0,21
+288830,0,0,0,21
+288831,0,0,0,21
+288832,0,0,0,21
+288833,0,0,0,21
+288834,0,0,0,21
+288835,0,0,0,21
+288836,0,0,0,21
+288837,0,0,0,21
+288838,0,0,0,21
+288839,0,0,0,21
+288840,0,0,0,21
+288841,0,0,0,21
+288842,0,0,0,21
+288843,0,0,0,21
+288844,0,0,0,21
+288845,0,0,0,21
+288846,0,0,0,21
+288847,0,0,0,21
+288848,0,0,0,21
+288849,0,0,0,21
+288850,0,0,0,21
+288851,0,0,0,21
+288852,0,0,0,21
+288853,0,0,0,21
+288854,0,0,0,21
+288855,0,0,0,21
+288856,0,0,0,21
+288857,0,0,0,21
+288858,0,0,0,21
+288859,0,0,0,21
+288860,0,0,0,21
+288861,0,0,0,21
+288862,0,0,0,21
+288863,0,0,0,21
+288864,0,0,0,21
+288865,0,0,0,21
+288866,0,0,0,21
+288867,0,0,0,21
+288868,0,0,0,21
+288869,0,0,0,21
+288870,0,0,0,21
+288871,0,0,0,21
+288872,0,0,0,21
+288873,0,0,0,21
+288874,0,0,0,21
+288875,0,0,0,21
+288876,0,0,0,21
+288877,0,0,0,21
+288878,0,0,0,21
+288879,0,0,0,21
+288880,0,0,0,21
+288881,0,0,0,21
+288882,0,0,0,21
+288883,0,0,0,21
+288884,0,0,0,21
+288885,0,0,0,21
+288886,0,0,0,21
+288887,0,0,0,21
+288888,0,0,0,21
+288889,0,0,0,21
+288890,0,0,0,21
+288891,0,0,0,21
+288892,0,0,0,21
+288893,0,0,0,21
+288894,0,0,0,21
+288895,0,0,0,21
+288896,0,0,0,21
+288897,0,0,0,21
+288898,0,0,0,21
+288899,0,0,0,21
+288900,0,0,0,21
+288901,0,0,0,21
+288902,0,0,0,21
+288903,0,0,0,21
+288904,0,0,0,21
+288905,0,0,0,21
+288906,0,0,0,21
+288907,0,0,0,21
+288908,0,0,0,21
+288909,0,0,0,21
+288910,0,0,0,21
+288911,0,0,0,21
+288912,0,0,0,21
+288913,0,0,0,21
+288914,0,0,0,21
+288915,0,0,0,21
+288916,0,0,0,21
+288917,0,0,0,21
+288918,0,0,0,21
+288919,0,0,0,21
+288920,0,0,0,21
+288921,0,0,0,21
+288922,0,0,0,21
+288923,0,0,0,21
+288924,0,0,0,21
+288925,0,0,0,21
+288926,0,0,0,21
+288927,0,0,0,21
+288928,0,0,0,21
+288929,0,0,0,21
+288930,0,0,0,21
+288931,0,0,0,21
+288932,0,0,0,21
+288933,0,0,0,21
+288934,0,0,0,21
+288935,0,0,0,21
+288936,0,0,0,21
+288937,0,0,0,21
+288938,0,0,0,21
+288939,0,0,0,21
+288940,0,0,0,21
+288941,0,0,0,21
+288942,0,0,0,21
+288943,0,0,0,21
+288944,0,0,0,21
+288945,0,0,0,21
+288946,0,0,0,21
+288947,0,0,0,21
+288948,0,0,0,21
+288949,0,0,0,21
+288950,0,0,0,21
+288951,0,0,0,21
+288952,0,0,0,21
+288953,0,0,0,21
+288954,0,0,0,21
+288955,0,0,0,21
+288956,0,0,0,21
+288957,0,0,0,21
+288958,0,0,0,21
+288959,0,0,0,21
+288960,0,0,0,21
+288961,0,0,0,21
+288962,0,0,0,21
+288963,0,0,0,21
+288964,0,0,0,21
+288965,0,0,0,21
+288966,0,0,0,21
+288967,0,0,0,21
+288968,0,0,0,21
+288969,0,0,0,21
+288970,0,0,0,21
+288971,0,0,0,21
+288972,0,0,0,21
+288973,0,0,0,21
+288974,0,0,0,21
+288975,0,0,0,21
+288976,0,0,0,21
+288977,0,0,0,21
+288978,0,0,0,21
+288979,0,0,0,21
+288980,0,0,0,21
+288981,0,0,0,21
+288982,0,0,0,21
+288983,0,0,0,21
+288984,0,0,0,21
+288985,0,0,0,21
+288986,0,0,0,21
+288987,0,0,0,21
+288988,0,0,0,21
+288989,0,0,0,21
+288990,0,0,0,21
+288991,0,0,0,21
+288992,0,0,0,21
+288993,0,0,0,21
+288994,0,0,0,21
+288995,0,0,0,21
+288996,0,0,0,21
+288997,0,0,0,21
+288998,0,0,0,21
+288999,0,0,0,21
+289000,0,0,0,21
+289001,0,0,0,21
+289002,0,0,0,21
+289003,0,0,0,21
+289004,0,0,0,21
+289005,0,0,0,21
+289006,0,0,0,21
+289007,0,0,0,21
+289008,0,0,0,21
+289009,0,0,0,21
+289010,0,0,0,21
+289011,0,0,0,21
+289012,0,0,0,21
+289013,0,0,0,21
+289014,0,0,0,21
+289015,0,0,0,21
+289016,0,0,0,21
+289017,0,0,0,21
+289018,0,0,0,21
+289019,0,0,0,21
+289020,0,0,0,21
+289021,0,0,0,21
+289022,0,0,0,21
+289023,0,0,0,21
+289024,0,0,0,21
+289025,0,0,0,21
+289026,0,0,0,21
+289027,0,0,0,21
+289028,0,0,0,21
+289029,0,0,0,21
+289030,0,0,0,21
+289031,0,0,0,21
+289032,0,0,0,21
+289033,0,0,0,21
+289034,0,0,0,21
+289035,0,0,0,21
+289036,0,0,0,21
+289037,0,0,0,21
+289038,0,0,0,21
+289039,0,0,0,21
+289040,0,0,0,21
+289041,0,0,0,21
+289042,0,0,0,21
+289043,0,0,0,21
+289044,0,0,0,21
+289045,0,0,0,21
+289046,0,0,0,21
+289047,0,0,0,21
+289048,0,0,0,21
+289049,0,0,0,21
+289050,0,0,0,21
+289051,0,0,0,21
+289052,0,0,0,21
+289053,0,0,0,21
+289054,0,0,0,21
+289055,0,0,0,21
+289056,0,0,0,21
+289057,0,0,0,21
+289058,0,0,0,21
+289059,0,0,0,21
+289060,0,0,0,21
+289061,0,0,0,21
+289062,0,0,0,21
+289063,0,0,0,21
+289064,0,0,0,21
+289065,0,0,0,21
+289066,0,0,0,21
+289067,0,0,0,21
+289068,0,0,0,21
+289069,0,0,0,21
+289070,0,0,0,21
+289071,0,0,0,21
+289072,0,0,0,21
+289073,0,0,0,21
+289074,0,0,0,21
+289075,0,0,0,21
+289076,0,0,0,21
+289077,0,0,0,21
+289078,0,0,0,21
+289079,0,0,0,21
+289080,0,0,0,21
+289081,0,0,0,21
+289082,0,0,0,21
+289083,0,0,0,21
+289084,0,0,0,21
+289085,0,0,0,21
+289086,0,0,0,21
+289087,0,0,0,21
+289088,0,0,0,21
+289089,0,0,0,21
+289090,0,0,0,21
+289091,0,0,0,21
+289092,0,0,0,21
+289093,0,0,0,21
+289094,0,0,0,21
+289095,0,0,0,21
+289096,0,0,0,21
+289097,0,0,0,21
+289098,0,0,0,21
+289099,0,0,0,21
+289100,0,0,0,21
+289101,0,0,0,21
+289102,0,0,0,21
+289103,0,0,0,21
+289104,0,0,0,21
+289105,0,0,0,21
+289106,0,0,0,21
+289107,0,0,0,21
+289108,0,0,0,21
+289109,0,0,0,21
+289110,0,0,0,21
+289111,0,0,0,21
+289112,0,0,0,21
+289113,0,0,0,21
+289114,0,0,0,21
+289115,0,0,0,21
+289116,0,0,0,21
+289117,0,0,0,21
+289118,0,0,0,21
+289119,0,0,0,21
+289120,0,0,0,21
+289121,0,0,0,21
+289122,0,0,0,21
+289123,0,0,0,21
+289124,0,0,0,21
+289125,0,0,0,21
+289126,0,0,0,21
+289127,0,0,0,21
+289128,0,0,0,21
+289129,0,0,0,21
+289130,0,0,0,21
+289131,0,0,0,21
+289132,0,0,0,21
+289133,0,0,0,21
+289134,0,0,0,21
+289135,0,0,0,21
+289136,0,0,0,21
+289137,0,0,0,21
+289138,0,0,0,21
+289139,0,0,0,21
+289140,0,0,0,21
+289141,0,0,0,21
+289142,0,0,0,21
+289143,0,0,0,21
+289144,0,0,0,21
+289145,0,0,0,21
+289146,0,0,0,21
+289147,0,0,0,21
+289148,0,0,0,21
+289149,0,0,0,21
+289150,0,0,0,21
+289151,0,0,0,21
+289152,0,0,0,21
+289153,0,0,0,21
+289154,0,0,0,21
+289155,0,0,0,21
+289156,0,0,0,21
+289157,0,0,0,21
+289158,0,0,0,21
+289159,0,0,0,21
+289160,0,0,0,21
+289161,0,0,0,21
+289162,0,0,0,21
+289163,0,0,0,21
+289164,0,0,0,21
+289165,0,0,0,21
+289166,0,0,0,21
+289167,0,0,0,21
+289168,0,0,0,21
+289169,0,0,0,21
+289170,0,0,0,21
+289171,0,0,0,21
+289172,0,0,0,21
+289173,0,0,0,21
+289174,0,0,0,21
+289175,0,0,0,21
+289176,0,0,0,21
+289177,0,0,0,21
+289178,0,0,0,21
+289179,0,0,0,21
+289180,0,0,0,21
+289181,0,0,0,21
+289182,0,0,0,21
+289183,0,0,0,21
+289184,0,0,0,21
+289185,0,0,0,21
+289186,0,0,0,21
+289187,0,0,0,21
+289188,0,0,0,21
+289189,0,0,0,21
+289190,0,0,0,21
+289191,0,0,0,21
+289192,0,0,0,21
+289193,0,0,0,21
+289194,0,0,0,21
+289195,0,0,0,21
+289196,0,0,0,21
+289197,0,0,0,21
+289198,0,0,0,21
+289199,0,0,0,21
+289200,0,0,0,21
+289201,0,0,0,21
+289202,0,0,0,21
+289203,0,0,0,21
+289204,0,0,0,21
+289205,0,0,0,21
+289206,0,0,0,21
+289207,0,0,0,21
+289208,0,0,0,21
+289209,0,0,0,21
+289210,0,0,0,21
+289211,0,0,0,21
+289212,0,0,0,21
+289213,0,0,0,21
+289214,0,0,0,21
+289215,0,0,0,21
+289216,0,0,0,21
+289217,0,0,0,21
+289218,0,0,0,21
+289219,0,0,0,21
+289220,0,0,0,21
+289221,0,0,0,21
+289222,0,0,0,21
+289223,0,0,0,21
+289224,0,0,0,21
+289225,0,0,0,21
+289226,0,0,0,21
+289227,0,0,0,21
+289228,0,0,0,21
+289229,0,0,0,21
+289230,0,0,0,21
+289231,0,0,0,21
+289232,0,0,0,21
+289233,0,0,0,21
+289234,0,0,0,21
+289235,0,0,0,21
+289236,0,0,0,21
+289237,0,0,0,21
+289238,0,0,0,21
+289239,0,0,0,21
+289240,0,0,0,21
+289241,0,0,0,21
+289242,0,0,0,21
+289243,0,0,0,21
+289244,0,0,0,21
+289245,0,0,0,21
+289246,0,0,0,21
+289247,0,0,0,21
+289248,0,0,0,21
+289249,0,0,0,21
+289250,0,0,0,21
+289251,0,0,0,21
+289252,0,0,0,21
+289253,0,0,0,21
+289254,0,0,0,21
+289255,0,0,0,21
+289256,0,0,0,21
+289257,0,0,0,21
+289258,0,0,0,21
+289259,0,0,0,21
+289260,0,0,0,21
+289261,0,0,0,21
+289262,0,0,0,21
+289263,0,0,0,21
+289264,0,0,0,21
+289265,328138.4655,361344.192,658824.2528,21
+289266,0,0,0,21
+289267,0,0,0,21
+289268,0,0,0,21
+289269,0,0,0,21
+289270,0,0,0,21
+289271,0,0,0,21
+289272,0,0,0,21
+289273,0,0,0,21
+289274,0,0,0,21
+289275,0,0,0,21
+289276,0,0,0,21
+289277,0,0,0,21
+289278,0,0,0,21
+289279,0,0,0,21
+289280,0,0,0,21
+289281,0,0,0,21
+289282,0,0,0,21
+289283,0,0,0,21
+289284,0,0,0,21
+289285,0,0,0,21
+289286,0,0,0,21
+289287,0,0,0,21
+289288,0,0,0,21
+289289,0,0,0,21
+289290,0,0,0,21
+289291,0,0,0,21
+289292,0,0,0,21
+289293,0,0,0,21
+289294,0,0,0,21
+289295,0,0,0,21
+289296,0,0,0,21
+289297,0,0,0,21
+289298,0,0,0,21
+289299,328545.2204,363691.7904,659459.6118,21
+289300,0,0,0,21
+289301,0,0,0,21
+289302,0,0,0,21
+289303,0,0,0,21
+289304,0,0,0,21
+289305,0,0,0,21
+289306,0,0,0,21
+289307,0,0,0,21
+289308,0,0,0,21
+289309,0,0,0,21
+289310,0,0,0,21
+289311,0,0,0,21
+289312,0,0,0,21
+289313,0,0,0,21
+289314,0,0,0,21
+289315,0,0,0,21
+289316,0,0,0,21
+289317,0,0,0,21
+289318,0,0,0,21
+289319,0,0,0,21
+289320,0,0,0,15.6
+289321,0,0,0,15.6
+289322,0,0,0,15.6
+289323,0,0,0,15.6
+289324,0,0,0,15.6
+289325,0,0,0,15.6
+289326,0,0,0,15.6
+289327,0,0,0,15.6
+289328,0,0,0,15.6
+289329,0,0,0,15.6
+289330,0,0,0,15.6
+289331,0,0,0,15.6
+289332,0,0,0,15.6
+289333,330126.0268,362714.1355,660416.2277,15.6
+289334,0,0,0,15.6
+289335,0,0,0,15.6
+289336,0,0,0,15.6
+289337,0,0,0,15.6
+289338,0,0,0,15.6
+289339,0,0,0,15.6
+289340,0,0,0,15.6
+289341,0,0,0,15.6
+289342,0,0,0,15.6
+289343,0,0,0,15.6
+289344,0,0,0,15.6
+289345,0,0,0,15.6
+289346,0,0,0,15.6
+289347,0,0,0,15.6
+289348,0,0,0,15.6
+289349,0,0,0,15.6
+289350,0,0,0,15.6
+289351,0,0,0,15.6
+289352,0,0,0,15.6
+289353,0,0,0,15.6
+289354,0,0,0,15.6
+289355,0,0,0,15.6
+289356,0,0,0,15.6
+289357,0,0,0,15.6
+289358,0,0,0,15.6
+289359,0,0,0,15.6
+289360,0,0,0,15.6
+289361,0,0,0,15.6
+289362,0,0,0,15.6
+289363,0,0,0,15.6
+289364,0,0,0,15.6
+289365,0,0,0,15.6
+289366,0,0,0,15.6
+289367,331813.6844,363670.5997,660629.5223,15.6
+289368,0,0,0,15.6
+289369,0,0,0,15.6
+289370,0,0,0,15.6
+289371,0,0,0,15.6
+289372,0,0,0,15.6
+289373,0,0,0,15.6
+289374,0,0,0,15.6
+289375,0,0,0,15.6
+289376,0,0,0,15.6
+289377,0,0,0,15.6
+289378,0,0,0,15.6
+289379,0,0,0,15.6
+289380,0,0,0,15.6
+289381,0,0,0,15.6
+289382,0,0,0,15.6
+289383,0,0,0,15.6
+289384,0,0,0,15.6
+289385,0,0,0,15.6
+289386,0,0,0,15.6
+289387,0,0,0,15.6
+289388,0,0,0,15.6
+289389,0,0,0,15.6
+289390,0,0,0,15.6
+289391,0,0,0,15.6
+289392,0,0,0,15.6
+289393,0,0,0,15.6
+289394,0,0,0,15.6
+289395,0,0,0,15.6
+289396,0,0,0,15.6
+289397,0,0,0,15.6
+289398,0,0,0,15.6
+289399,0,0,0,15.6
+289400,0,0,0,15.6
+289401,332515.2393,362900.9785,660581.7706,15.6
+289402,0,0,0,15.6
+289403,0,0,0,15.6
+289404,0,0,0,15.6
+289405,0,0,0,15.6
+289406,0,0,0,15.6
+289407,0,0,0,15.6
+289408,0,0,0,15.6
+289409,0,0,0,15.6
+289410,0,0,0,15.6
+289411,0,0,0,15.6
+289412,0,0,0,15.6
+289413,0,0,0,15.6
+289414,0,0,0,15.6
+289415,0,0,0,15.6
+289416,0,0,0,15.6
+289417,0,0,0,15.6
+289418,0,0,0,15.6
+289419,0,0,0,15.6
+289420,0,0,0,15.6
+289421,0,0,0,15.6
+289422,0,0,0,15.6
+289423,0,0,0,15.6
+289424,0,0,0,15.6
+289425,0,0,0,15.6
+289426,0,0,0,15.6
+289427,0,0,0,15.6
+289428,0,0,0,15.6
+289429,0,0,0,15.6
+289430,0,0,0,15.6
+289431,0,0,0,15.6
+289432,0,0,0,15.6
+289433,0,0,0,15.6
+289434,0,0,0,15.6
+289435,333524.5148,364561.6242,660774.2498,15.6
+289436,0,0,0,15.6
+289437,0,0,0,15.6
+289438,0,0,0,15.6
+289439,0,0,0,15.6
+289440,0,0,0,15.6
+289441,0,0,0,15.6
+289442,0,0,0,15.6
+289443,0,0,0,15.6
+289444,0,0,0,15.6
+289445,0,0,0,15.6
+289446,0,0,0,15.6
+289447,0,0,0,15.6
+289448,0,0,0,15.6
+289449,0,0,0,15.6
+289450,0,0,0,15.6
+289451,0,0,0,15.6
+289452,0,0,0,15.6
+289453,0,0,0,15.6
+289454,0,0,0,15.6
+289455,0,0,0,15.6
+289456,0,0,0,15.6
+289457,0,0,0,15.6
+289458,0,0,0,15.6
+289459,0,0,0,15.6
+289460,0,0,0,15.6
+289461,0,0,0,15.6
+289462,0,0,0,15.6
+289463,0,0,0,15.6
+289464,0,0,0,15.6
+289465,0,0,0,15.6
+289466,0,0,0,15.6
+289467,0,0,0,15.6
+289468,0,0,0,15.6
+289469,334237.1203,365850.9762,660757.894,15.6
+289470,0,0,0,15.6
+289471,0,0,0,15.6
+289472,0,0,0,15.6
+289473,0,0,0,15.6
+289474,0,0,0,15.6
+289475,0,0,0,15.6
+289476,0,0,0,15.6
+289477,0,0,0,15.6
+289478,0,0,0,15.6
+289479,0,0,0,15.6
+289480,0,0,0,15.6
+289481,0,0,0,15.6
+289482,0,0,0,15.6
+289483,0,0,0,15.6
+289484,0,0,0,15.6
+289485,0,0,0,15.6
+289486,0,0,0,15.6
+289487,0,0,0,15.6
+289488,0,0,0,15.6
+289489,0,0,0,15.6
+289490,0,0,0,15.6
+289491,0,0,0,15.6
+289492,0,0,0,15.6
+289493,0,0,0,15.6
+289494,0,0,0,15.6
+289495,0,0,0,15.6
+289496,0,0,0,15.6
+289497,0,0,0,15.6
+289498,0,0,0,15.6
+289499,0,0,0,15.6
+289500,0,0,0,15.6
+289501,0,0,0,15.6
+289502,0,0,0,15.6
+289503,335091.336,369154.9202,660495.4975,15.6
+289504,0,0,0,15.6
+289505,0,0,0,15.6
+289506,0,0,0,15.6
+289507,0,0,0,15.6
+289508,0,0,0,15.6
+289509,0,0,0,15.6
+289510,0,0,0,15.6
+289511,0,0,0,15.6
+289512,0,0,0,15.6
+289513,0,0,0,15.6
+289514,0,0,0,15.6
+289515,0,0,0,15.6
+289516,0,0,0,15.6
+289517,0,0,0,15.6
+289518,0,0,0,15.6
+289519,0,0,0,15.6
+289520,0,0,0,15.6
+289521,0,0,0,15.6
+289522,0,0,0,15.6
+289523,0,0,0,15.6
+289524,0,0,0,15.6
+289525,0,0,0,15.6
+289526,0,0,0,15.6
+289527,0,0,0,15.6
+289528,0,0,0,15.6
+289529,0,0,0,15.6
+289530,0,0,0,15.6
+289531,0,0,0,15.6
+289532,0,0,0,15.6
+289533,0,0,0,15.6
+289534,0,0,0,15.6
+289535,0,0,0,15.6
+289536,0,0,0,15.6
+289537,335248.0389,369129.1995,660562.5037,15.6
+289538,0,0,0,15.6
+289539,0,0,0,15.6
+289540,0,0,0,15.6
+289541,0,0,0,15.6
+289542,0,0,0,15.6
+289543,0,0,0,15.6
+289544,0,0,0,15.6
+289545,0,0,0,15.6
+289546,0,0,0,15.6
+289547,0,0,0,15.6
+289548,0,0,0,15.6
+289549,0,0,0,15.6
+289550,0,0,0,15.6
+289551,0,0,0,15.6
+289552,0,0,0,15.6
+289553,0,0,0,15.6
+289554,0,0,0,15.6
+289555,0,0,0,15.6
+289556,0,0,0,15.6
+289557,0,0,0,15.6
+289558,0,0,0,15.6
+289559,0,0,0,15.6
+289560,0,0,0,15.6
+289561,0,0,0,15.6
+289562,0,0,0,15.6
+289563,0,115.3010529,0,15.6
+289564,0,0,0,15.6
+289565,0,0,0,15.6
+289566,0,0,0,15.6
+289567,0,109.4349498,0,15.6
+289568,0,0,0,15.6
+289569,0,0,0,15.6
+289570,0,0,0,15.6
+289571,0,369203.7555,660292.865,15.6
+289572,335664.4041,0,0,15.6
+289573,0,0,0,15.6
+289574,0,0,0,15.6
+289575,0,86.5306582,0,15.6
+289576,0,0,0,15.6
+289577,0,0,0,15.6
+289578,0,0,0,15.6
+289579,0,96.08756364,0,15.6
+289580,0,0,0,15.6
+289581,0,0,0,15.6
+289582,0,0,0,15.6
+289583,0,106.2103289,0,15.6
+289584,0,0,0,15.6
+289585,0,0,0,15.6
+289586,0,0,0,15.6
+289587,0,114.1459933,0,15.6
+289588,0,0,0,15.6
+289589,0,0,0,15.6
+289590,0,0,0,15.6
+289591,0,117.5283934,0,15.6
+289592,0,0,0,15.6
+289593,0,0,0,15.6
+289594,0,0,0,15.6
+289595,0,118.7787902,0,15.6
+289596,0,0,0,15.6
+289597,0,0,0,15.6
+289598,0,0,0,15.6
+289599,0,117.1255011,0,15.6
+289600,0,0,0,15.6
+289601,0,0,0,15.6
+289602,0,0,0,15.6
+289603,0,112.9625313,0,15.6
+289604,0,0,0,15.6
+289605,0,369067.9428,660248.8328,15.6
+289606,0,0,0,15.6
+289607,335729.9569,103.2875282,0,15.6
+289608,0,0,0,15.6
+289609,0,0,0,15.6
+289610,0,0,0,15.6
+289611,0,70.31445911,0,15.6
+289612,0,0,0,15.6
+289613,0,0,0,15.6
+289614,0,0,0,15.6
+289615,0,96.49773598,0,15.6
+289616,0,0,0,15.6
+289617,0,0,0,15.6
+289618,0,0,0,15.6
+289619,0,99.93078178,0,15.6
+289620,0,0,0,15.6
+289621,0,0,0,15.6
+289622,0,0,0,15.6
+289623,0,105.4423843,0,15.6
+289624,0,0,0,15.6
+289625,0,0,0,15.6
+289626,0,258465.7522,0,15.6
+289627,0,0,0,15.6
+289628,0,0,0,15.6
+289629,0,0,0,15.6
+289630,0,0,0,15.6
+289631,0,0,0,15.6
+289632,0,0,0,15.6
+289633,0,0,0,15.6
+289634,0,0,0,15.6
+289635,0,0,0,15.6
+289636,0,0,0,15.6
+289637,0,0,0,15.6
+289638,0,0,660116.2832,15.6
+289639,0,369068.8446,0,15.6
+289640,0,0,0,15.6
+289641,335796.6454,0,0,15.6
+289642,0,0,0,15.6
+289643,0,0,0,15.6
+289644,0,0,0,15.6
+289645,0,0,0,15.6
+289646,0,0,0,15.6
+289647,0,0,0,15.6
+289648,0,0,0,15.6
+289649,0,0,0,15.6
+289650,0,0,0,15.6
+289651,0,0,0,15.6
+289652,0,0,0,15.6
+289653,0,0,0,15.6
+289654,0,0,0,15.6
+289655,0,0,0,15.6
+289656,0,0,0,15.6
+289657,0,258867.256,0,15.6
+289658,0,0,0,15.6
+289659,0,0,0,15.6
+289660,0,0,0,15.6
+289661,0,0,0,15.6
+289662,0,0,0,15.6
+289663,0,0,0,15.6
+289664,0,0,0,15.6
+289665,0,0,0,15.6
+289666,0,0,0,15.6
+289667,0,0,0,15.6
+289668,0,0,0,15.6
+289669,0,0,0,15.6
+289670,0,0,0,15.6
+289671,0,0,660044.2955,15.6
+289672,0,0,0,15.6
+289673,0,369094.0509,0,15.6
+289674,0,0,0,15.6
+289675,335987.2702,0,0,15.6
+289676,0,0,0,15.6
+289677,0,0,0,15.6
+289678,0,0,0,15.6
+289679,0,0,0,15.6
+289680,0,0,0,17.8
+289681,0,18318.3217,0,17.8
+289682,0,0,0,17.8
+289683,0,0,0,17.8
+289684,0,0,0,17.8
+289685,0,0,0,17.8
+289686,0,0,0,17.8
+289687,0,0,0,17.8
+289688,0,0,0,17.8
+289689,0,0,0,17.8
+289690,0,0,0,17.8
+289691,0,0,0,17.8
+289692,0,0,0,17.8
+289693,0,0,0,17.8
+289694,0,0,0,17.8
+289695,0,0,0,17.8
+289696,0,0,0,17.8
+289697,0,0,0,17.8
+289698,0,0,0,17.8
+289699,0,0,0,17.8
+289700,0,0,0,17.8
+289701,0,0,0,17.8
+289702,0,259247.512,0,17.8
+289703,0,0,0,17.8
+289704,0,0,659963.7242,17.8
+289705,0,0,0,17.8
+289706,0,0,0,17.8
+289707,0,369081.62,0,17.8
+289708,0,0,0,17.8
+289709,336650.9644,0,0,17.8
+289710,0,0,0,17.8
+289711,0,0,0,17.8
+289712,0,0,0,17.8
+289713,0,0,0,17.8
+289714,0,0,0,17.8
+289715,0,0,0,17.8
+289716,0,0,0,17.8
+289717,0,0,0,17.8
+289718,0,0,0,17.8
+289719,0,0,0,17.8
+289720,0,0,0,17.8
+289721,0,0,0,17.8
+289722,0,0,0,17.8
+289723,0,2994.778866,0,17.8
+289724,0,4832.065005,0,17.8
+289725,0,3692.816292,0,17.8
+289726,0,4606.373165,0,17.8
+289727,0,6094.757828,0,17.8
+289728,0,5866.803986,0,17.8
+289729,0,6356.961136,0,17.8
+289730,0,6605.066757,0,17.8
+289731,0,7124.355624,0,17.8
+289732,0,7369.589161,0,17.8
+289733,0,7395.339917,0,17.8
+289734,0,8125.629537,0,17.8
+289735,0,8151.063701,0,17.8
+289736,0,8392.766815,0,17.8
+289737,0,1187.486305,660062.489,17.8
+289738,0,1237.693462,0,17.8
+289739,0,1237.69333,0,17.8
+289740,0,1312.482179,0,20
+289741,337117.1504,484794.1787,0,20
+289742,0,25978.19849,0,20
+289743,0,47732.25655,0,20
+289744,0,67553.58809,0,20
+289745,0,65621.82904,0,20
+289746,0,61016.42499,0,20
+289747,0,62280.0383,0,20
+289748,0,62556.38667,0,20
+289749,0,62047.8472,0,20
+289750,0,62564.2234,0,20
+289751,0,62192.04455,0,20
+289752,0,61788.67979,0,20
+289753,0,62252.80017,0,20
+289754,0,61426.63146,0,20
+289755,0,61914.70647,0,20
+289756,0,61507.3135,0,20
+289757,0,61631.43029,0,20
+289758,0,61390.79992,0,20
+289759,0,61279.6705,0,20
+289760,0,61181.32942,0,20
+289761,0,61181.32765,0,20
+289762,0,60981.86797,0,20
+289763,0,61078.57781,0,20
+289764,0,60627.41669,0,20
+289765,0,60873.23385,0,20
+289766,0,60944.94354,0,20
+289767,0,60403.17101,0,20
+289768,0,60672.94761,0,20
+289769,0,60052.09964,0,20
+289770,0,60636.82471,0,20
+289771,0,60182.34634,0,20
+289772,0,60164.26029,0,20
+289773,0,60233.90951,0,20
+289774,0,59807.90271,0,20
+289775,0,60177.9702,0,20
+289776,0,59520.47366,0,20
+289777,0,59710.35899,0,20
+289778,0,59932.6442,0,20
+289779,0,59385.77494,0,20
+289780,0,59501.4934,0,20
+289781,0,59343.2486,0,20
+289782,0,59278.65497,0,20
+289783,0,59343.25224,0,20
+289784,0,58700.40495,0,20
+289785,0,59446.06704,0,20
+289786,0,58663.08267,0,20
+289787,0,58700.40044,0,20
+289788,0,58742.1924,0,20
+289789,0,58644.62316,0,20
+289790,0,58664.19544,0,20
+289791,0,58284.27872,0,20
+289792,0,58298.62521,0,20
+289793,0,58303.34794,0,20
+289794,0,57904.65086,0,20
+289795,0,58298.615,0,20
+289796,0,57904.64605,0,20
+289797,0,57477.08298,0,20
+289798,0,57904.6435,0,20
+289799,0,57718.91086,0,20
+289800,0,57344.05466,0,21
+289801,0,52725.02931,0,21
+289802,0,52251.00532,0,21
+289803,0,51453.34833,0,21
+289804,0,51759.69569,0,21
+289805,0,50891.3137,0,21
+289806,0,51079.25047,0,21
+289807,0,50817.77971,0,21
+289808,0,50261.45674,0,21
+289809,0,50206.88579,0,21
+289810,0,49824.8763,0,21
+289811,0,49816.54622,0,21
+289812,0,49359.38826,0,21
+289813,0,49283.9223,0,21
+289814,0,48946.58233,0,21
+289815,0,48743.09,0,21
+289816,0,48500.66433,0,21
+289817,0,48382.30514,0,21
+289818,0,48050.53071,0,21
+289819,0,47718.01952,0,21
+289820,0,47844.61232,0,21
+289821,0,47043.10467,0,21
+289822,0,47626.48894,0,21
+289823,0,46622.03645,0,21
+289824,0,46972.89425,0,21
+289825,0,46441.65791,0,21
+289826,0,46272.2259,0,21
+289827,0,46215.16047,0,21
+289828,0,45691.73793,0,21
+289829,0,45288.48597,0,21
+289830,0,44981.65346,0,21
+289831,0,44887.58218,0,21
+289832,0,44210.99524,0,21
+289833,0,44471.29807,0,21
+289834,0,44031.00927,0,21
+289835,0,43807.71008,0,21
+289836,0,43698.73386,0,21
+289837,0,43417.54732,0,21
+289838,0,43176.74537,0,21
+289839,0,42779.25867,0,21
+289840,0,42966.83167,0,21
+289841,0,42533.70931,0,21
+289842,0,42327.05094,0,21
+289843,0,42343.39996,0,21
+289844,0,41618.70207,0,21
+289845,0,42039.81518,0,21
+289846,0,41333.46995,0,21
+289847,0,41562.94243,0,21
+289848,0,41028.76926,0,21
+289849,0,41138.76418,0,21
+289850,0,40673.88712,0,21
+289851,0,40478.50679,0,21
+289852,0,40617.79473,0,21
+289853,0,39941.18596,0,21
+289854,0,39976.63245,0,21
+289855,0,40066.17708,0,21
+289856,0,39402.28273,0,21
+289857,0,39423.23278,0,21
+289858,0,39202.2517,0,21
+289859,0,39062.14396,0,21
+289860,0,38987.2626,0,21
+289861,0,6359.482494,0,21
+289862,0,4780.765148,0,21
+289863,0,4469.079703,0,21
+289864,0,3955.008558,0,21
+289865,0,3382.759969,0,21
+289866,0,3138.94716,0,21
+289867,0,2782.650011,0,21
+289868,0,2410.611372,0,21
+289869,0,1973.582801,0,21
+289870,0,1900.577616,0,21
+289871,0,1377.229305,0,21
+289872,0,1064.204197,0,21
+289873,0,721.2854932,0,21
+289874,0,694.5114048,0,21
+289875,0,667.6291737,0,21
+289876,0,667.628995,0,21
+289877,0,586.2958264,0,21
+289878,0,599.9258297,0,21
+289879,0,558.9428272,0,21
+289880,0,531.4611635,0,21
+289881,0,489.9856148,0,21
+289882,0,476.090146,0,21
+289883,0,448.1882046,0,21
+289884,0,420.1323277,0,21
+289885,0,391.914476,0,21
+289886,0,363.5251067,0,21
+289887,0,334.9528451,0,21
+289888,0,306.1852184,0,21
+289889,0,291.7235688,0,21
+289890,0,247.9996651,0,21
+289891,0,247.9999309,0,21
+289892,0,188.8026158,0,21
+289893,0,188.8025756,0,21
+289894,0,158.7469938,0,21
+289895,0,128.3236615,0,21
+289896,0,97.4588471,0,21
+289897,0,97.45887412,0,21
+289898,0,33.81644476,0,21
+289899,0,50.04722429,0,21
+289900,0,0,0,21
+289901,0,0,0,21
+289902,0,0,0,21
+289903,0,0,0,21
+289904,0,0,0,21
+289905,0,0,0,21
+289906,0,0,0,21
+289907,0,0,0,21
+289908,0,0,0,21
+289909,0,0,0,21
+289910,0,0,0,21
+289911,0,0,0,21
+289912,0,0,0,21
+289913,0,0,0,21
+289914,0,0,0,21
+289915,0,0,0,21
+289916,0,0,0,21
+289917,0,0,0,21
+289918,0,0,0,21
+289919,0,0,0,21
+289920,0,0,0,21
+289921,0,0,0,21
+289922,0,0,0,21
+289923,0,0,0,21
+289924,0,0,0,21
+289925,0,0,0,21
+289926,0,0,0,21
+289927,0,0,0,21
+289928,0,0,0,21
+289929,0,0,0,21
+289930,0,0,0,21
+289931,0,0,0,21
+289932,0,0,0,21
+289933,0,0,0,21
+289934,0,0,0,21
+289935,0,0,0,21
+289936,0,0,0,21
+289937,0,0,0,21
+289938,0,0,0,21
+289939,0,0,0,21
+289940,0,0,0,21
+289941,0,0,0,21
+289942,0,0,0,21
+289943,0,0,0,21
+289944,0,0,0,21
+289945,0,0,0,21
+289946,0,0,0,21
+289947,0,0,0,21
+289948,0,0,0,21
+289949,0,0,0,21
+289950,0,0,0,21
+289951,0,0,0,21
+289952,0,0,0,21
+289953,0,0,0,21
+289954,0,0,0,21
+289955,0,0,0,21
+289956,0,0,0,21
+289957,0,0,0,21
+289958,0,0,0,21
+289959,0,0,0,21
+289960,0,0,0,21
+289961,0,0,0,21
+289962,0,0,0,21
+289963,0,0,0,21
+289964,0,0,0,21
+289965,0,0,0,21
+289966,0,0,0,21
+289967,0,0,0,21
+289968,0,0,0,21
+289969,0,0,0,21
+289970,0,0,0,21
+289971,0,0,0,21
+289972,0,0,0,21
+289973,0,0,0,21
+289974,0,0,0,21
+289975,0,0,0,21
+289976,0,0,0,21
+289977,0,0,0,21
+289978,0,0,0,21
+289979,0,0,0,21
+289980,0,0,0,21
+289981,0,0,0,21
+289982,0,0,0,21
+289983,0,0,0,21
+289984,0,0,0,21
+289985,0,0,0,21
+289986,0,0,0,21
+289987,0,0,0,21
+289988,0,0,0,21
+289989,0,0,0,21
+289990,0,0,0,21
+289991,0,0,0,21
+289992,0,0,0,21
+289993,0,0,0,21
+289994,0,0,0,21
+289995,0,0,0,21
+289996,0,0,0,21
+289997,0,0,0,21
+289998,0,0,0,21
+289999,0,0,0,21
+290000,0,0,0,21
+290001,0,0,0,21
+290002,0,0,0,21
+290003,0,0,0,21
+290004,0,0,0,21
+290005,0,0,0,21
+290006,0,0,0,21
+290007,0,0,0,21
+290008,0,0,0,21
+290009,0,0,0,21
+290010,0,0,0,21
+290011,0,0,0,21
+290012,0,0,0,21
+290013,0,0,0,21
+290014,0,0,0,21
+290015,0,0,0,21
+290016,0,0,0,21
+290017,0,0,0,21
+290018,0,0,0,21
+290019,0,0,0,21
+290020,0,0,0,21
+290021,0,0,0,21
+290022,0,0,0,21
+290023,0,0,0,21
+290024,0,0,0,21
+290025,0,0,0,21
+290026,0,0,0,21
+290027,0,0,0,21
+290028,0,0,0,21
+290029,0,0,0,21
+290030,0,0,0,21
+290031,0,0,0,21
+290032,0,0,0,21
+290033,0,0,0,21
+290034,0,0,0,21
+290035,0,0,0,21
+290036,0,0,0,21
+290037,0,0,0,21
+290038,0,0,0,21
+290039,0,0,0,21
+290040,0,0,0,21
+290041,0,0,0,21
+290042,0,0,0,21
+290043,0,0,0,21
+290044,0,0,0,21
+290045,0,0,0,21
+290046,0,0,0,21
+290047,0,0,0,21
+290048,0,0,0,21
+290049,0,0,0,21
+290050,0,0,0,21
+290051,0,0,0,21
+290052,0,0,0,21
+290053,0,0,0,21
+290054,0,0,0,21
+290055,0,0,0,21
+290056,0,0,0,21
+290057,0,0,0,21
+290058,0,0,0,21
+290059,0,0,0,21
+290060,0,0,0,21
+290061,0,0,0,21
+290062,0,0,0,21
+290063,0,0,0,21
+290064,0,0,0,21
+290065,0,0,0,21
+290066,0,0,0,21
+290067,0,0,0,21
+290068,0,0,0,21
+290069,0,0,0,21
+290070,0,0,0,21
+290071,0,0,0,21
+290072,0,0,0,21
+290073,0,0,0,21
+290074,0,0,0,21
+290075,0,0,0,21
+290076,0,0,0,21
+290077,0,0,0,21
+290078,0,0,0,21
+290079,0,0,0,21
+290080,0,0,0,21
+290081,0,0,0,21
+290082,0,0,0,21
+290083,0,0,0,21
+290084,0,0,0,21
+290085,0,0,0,21
+290086,0,0,0,21
+290087,0,0,0,21
+290088,0,0,0,21
+290089,0,0,0,21
+290090,0,0,0,21
+290091,0,0,0,21
+290092,0,0,0,21
+290093,0,0,0,21
+290094,0,0,0,21
+290095,0,0,0,21
+290096,0,0,0,21
+290097,0,0,0,21
+290098,0,0,0,21
+290099,0,0,0,21
+290100,0,0,0,21
+290101,0,0,0,21
+290102,0,0,0,21
+290103,0,0,0,21
+290104,0,0,0,21
+290105,0,0,0,21
+290106,0,0,0,21
+290107,0,0,0,21
+290108,0,0,0,21
+290109,0,0,0,21
+290110,0,0,0,21
+290111,0,0,0,21
+290112,0,0,0,21
+290113,0,0,0,21
+290114,0,0,0,21
+290115,0,0,0,21
+290116,0,0,0,21
+290117,0,0,0,21
+290118,0,0,0,21
+290119,0,0,0,21
+290120,0,0,0,21
+290121,0,0,0,21
+290122,0,0,0,21
+290123,0,0,0,21
+290124,0,0,0,21
+290125,0,0,0,21
+290126,0,0,0,21
+290127,0,0,0,21
+290128,0,0,0,21
+290129,0,0,0,21
+290130,0,0,0,21
+290131,0,0,0,21
+290132,0,0,0,21
+290133,0,0,0,21
+290134,0,0,0,21
+290135,0,0,0,21
+290136,0,0,0,21
+290137,0,0,0,21
+290138,0,0,0,21
+290139,0,0,0,21
+290140,0,0,0,21
+290141,0,0,0,21
+290142,0,0,0,21
+290143,0,0,0,21
+290144,0,0,0,21
+290145,0,0,0,21
+290146,0,0,0,21
+290147,0,0,0,21
+290148,0,0,0,21
+290149,0,0,0,21
+290150,0,0,0,21
+290151,0,0,0,21
+290152,0,0,0,21
+290153,0,0,0,21
+290154,0,0,0,21
+290155,0,0,0,21
+290156,0,0,0,21
+290157,0,0,0,21
+290158,0,0,0,21
+290159,0,0,0,21
+290160,0,0,0,21
+290161,0,0,0,21
+290162,0,0,0,21
+290163,0,0,0,21
+290164,0,0,0,21
+290165,0,0,0,21
+290166,0,0,0,21
+290167,0,0,0,21
+290168,0,0,0,21
+290169,0,0,0,21
+290170,0,0,0,21
+290171,0,0,0,21
+290172,0,0,0,21
+290173,0,0,0,21
+290174,0,0,0,21
+290175,0,0,0,21
+290176,0,0,0,21
+290177,0,0,0,21
+290178,0,0,0,21
+290179,0,0,0,21
+290180,0,0,0,21
+290181,0,0,0,21
+290182,0,0,0,21
+290183,0,0,0,21
+290184,0,0,0,21
+290185,0,0,0,21
+290186,0,0,0,21
+290187,0,0,0,21
+290188,0,0,0,21
+290189,0,0,0,21
+290190,0,0,0,21
+290191,0,0,0,21
+290192,0,0,0,21
+290193,0,0,0,21
+290194,0,0,0,21
+290195,0,0,0,21
+290196,0,0,0,21
+290197,0,0,0,21
+290198,0,0,0,21
+290199,0,0,0,21
+290200,0,0,0,21
+290201,0,0,0,21
+290202,0,0,0,21
+290203,0,0,0,21
+290204,0,0,0,21
+290205,0,0,0,21
+290206,0,0,0,21
+290207,0,0,0,21
+290208,0,0,0,21
+290209,0,0,0,21
+290210,0,0,0,21
+290211,0,0,0,21
+290212,0,0,0,21
+290213,0,0,0,21
+290214,0,0,0,21
+290215,0,0,0,21
+290216,0,0,0,21
+290217,0,0,0,21
+290218,0,0,0,21
+290219,0,0,0,21
+290220,0,0,0,21
+290221,0,0,0,21
+290222,0,0,0,21
+290223,0,0,0,21
+290224,0,0,0,21
+290225,0,0,0,21
+290226,0,0,0,21
+290227,0,0,0,21
+290228,0,0,0,21
+290229,0,0,0,21
+290230,0,0,0,21
+290231,0,0,0,21
+290232,0,0,0,21
+290233,0,0,0,21
+290234,0,0,0,21
+290235,0,0,0,21
+290236,0,0,0,21
+290237,0,0,0,21
+290238,0,0,0,21
+290239,0,0,0,21
+290240,0,0,0,21
+290241,0,0,0,21
+290242,0,0,0,21
+290243,0,0,0,21
+290244,0,0,0,21
+290245,0,0,0,21
+290246,0,0,0,21
+290247,0,0,0,21
+290248,0,0,0,21
+290249,0,0,0,21
+290250,0,0,0,21
+290251,0,0,0,21
+290252,0,0,0,21
+290253,0,0,0,21
+290254,0,0,0,21
+290255,0,0,0,21
+290256,0,0,0,21
+290257,0,0,0,21
+290258,0,0,0,21
+290259,0,0,0,21
+290260,0,0,0,21
+290261,0,0,0,21
+290262,0,0,0,21
+290263,0,0,0,21
+290264,0,0,0,21
+290265,0,0,0,21
+290266,0,0,0,21
+290267,0,0,0,21
+290268,0,0,0,21
+290269,0,0,0,21
+290270,0,0,0,21
+290271,0,0,0,21
+290272,0,0,0,21
+290273,0,0,0,21
+290274,0,0,0,21
+290275,0,0,0,21
+290276,0,0,0,21
+290277,0,0,0,21
+290278,0,0,0,21
+290279,0,0,0,21
+290280,0,0,0,21
+290281,0,0,0,21
+290282,0,0,0,21
+290283,0,0,0,21
+290284,0,0,0,21
+290285,0,0,0,21
+290286,0,0,0,21
+290287,0,0,0,21
+290288,0,0,0,21
+290289,0,0,0,21
+290290,0,0,0,21
+290291,0,0,0,21
+290292,0,0,0,21
+290293,0,0,0,21
+290294,0,0,0,21
+290295,0,0,0,21
+290296,0,0,0,21
+290297,0,0,0,21
+290298,0,0,0,21
+290299,0,0,0,21
+290300,0,0,0,21
+290301,0,0,0,21
+290302,0,0,0,21
+290303,0,0,0,21
+290304,0,0,0,21
+290305,0,0,0,21
+290306,0,0,0,21
+290307,0,0,0,21
+290308,0,0,0,21
+290309,0,0,0,21
+290310,0,0,0,21
+290311,0,0,0,21
+290312,0,0,0,21
+290313,0,0,0,21
+290314,0,0,0,21
+290315,0,0,0,21
+290316,0,0,0,21
+290317,0,0,0,21
+290318,0,0,0,21
+290319,0,0,0,21
+290320,0,0,0,21
+290321,0,0,0,21
+290322,0,0,0,21
+290323,0,0,0,21
+290324,0,0,0,21
+290325,0,0,0,21
+290326,0,0,0,21
+290327,0,0,0,21
+290328,0,0,0,21
+290329,0,0,0,21
+290330,0,0,0,21
+290331,0,0,0,21
+290332,0,0,0,21
+290333,0,0,0,21
+290334,0,0,0,21
+290335,0,0,0,21
+290336,0,0,0,21
+290337,0,0,0,21
+290338,0,0,0,21
+290339,0,0,0,21
+290340,0,0,0,21
+290341,0,0,0,21
+290342,0,0,0,21
+290343,0,0,0,21
+290344,0,0,0,21
+290345,0,0,0,21
+290346,0,0,0,21
+290347,0,0,0,21
+290348,0,0,0,21
+290349,0,0,0,21
+290350,0,0,0,21
+290351,0,0,0,21
+290352,0,0,0,21
+290353,0,0,0,21
+290354,0,0,0,21
+290355,0,0,0,21
+290356,0,0,0,21
+290357,0,0,0,21
+290358,0,0,0,21
+290359,0,0,0,21
+290360,0,0,0,21
+290361,0,0,0,21
+290362,0,0,0,21
+290363,0,0,0,21
+290364,0,0,0,21
+290365,0,0,0,21
+290366,0,0,0,21
+290367,0,0,0,21
+290368,0,0,0,21
+290369,0,0,0,21
+290370,0,0,0,21
+290371,0,0,0,21
+290372,0,0,0,21
+290373,0,0,0,21
+290374,0,0,0,21
+290375,0,0,0,21
+290376,0,0,0,21
+290377,0,0,0,21
+290378,0,0,0,21
+290379,0,0,0,21
+290380,0,0,0,21
+290381,0,0,0,21
+290382,0,0,0,21
+290383,0,0,0,21
+290384,0,0,0,21
+290385,0,0,0,21
+290386,0,0,0,21
+290387,0,0,0,21
+290388,0,0,0,21
+290389,0,0,0,21
+290390,0,0,0,21
+290391,0,0,0,21
+290392,0,0,0,21
+290393,0,0,0,21
+290394,0,0,0,21
+290395,0,0,0,21
+290396,0,0,0,21
+290397,0,0,0,21
+290398,0,0,0,21
+290399,0,0,0,21
+290400,0,0,0,21
+290401,0,0,0,21
+290402,0,0,0,21
+290403,0,0,0,21
+290404,0,0,0,21
+290405,0,0,0,21
+290406,0,0,0,21
+290407,0,0,0,21
+290408,0,0,0,21
+290409,0,0,0,21
+290410,0,0,0,21
+290411,0,0,0,21
+290412,0,0,0,21
+290413,0,0,0,21
+290414,0,0,0,21
+290415,0,0,0,21
+290416,0,0,0,21
+290417,0,0,0,21
+290418,0,0,0,21
+290419,0,0,0,21
+290420,0,0,0,21
+290421,0,0,0,21
+290422,0,0,0,21
+290423,0,0,0,21
+290424,0,0,0,21
+290425,0,0,0,21
+290426,0,0,0,21
+290427,0,0,0,21
+290428,0,0,0,21
+290429,0,0,0,21
+290430,0,0,0,21
+290431,0,0,0,21
+290432,0,0,0,21
+290433,0,0,0,21
+290434,0,0,0,21
+290435,0,0,0,21
+290436,0,0,0,21
+290437,0,0,0,21
+290438,0,0,0,21
+290439,0,0,0,21
+290440,0,0,0,21
+290441,0,0,0,21
+290442,0,0,0,21
+290443,0,0,0,21
+290444,0,0,0,21
+290445,0,0,0,21
+290446,0,0,0,21
+290447,0,0,0,21
+290448,0,0,0,21
+290449,0,0,0,21
+290450,0,0,0,21
+290451,0,0,0,21
+290452,0,0,0,21
+290453,0,0,0,21
+290454,0,0,0,21
+290455,0,0,0,21
+290456,0,0,0,21
+290457,0,0,0,21
+290458,0,0,0,21
+290459,0,0,0,21
+290460,0,0,0,21
+290461,0,0,0,21
+290462,0,0,0,21
+290463,0,0,0,21
+290464,0,0,0,21
+290465,0,0,0,21
+290466,0,0,0,21
+290467,0,0,0,21
+290468,0,0,0,21
+290469,0,0,0,21
+290470,0,0,0,21
+290471,0,0,0,21
+290472,0,0,0,21
+290473,0,0,0,21
+290474,0,0,0,21
+290475,0,0,0,21
+290476,0,0,0,21
+290477,0,0,0,21
+290478,0,0,0,21
+290479,0,0,0,21
+290480,0,0,0,21
+290481,0,0,0,21
+290482,0,0,0,21
+290483,0,0,0,21
+290484,0,0,0,21
+290485,0,0,0,21
+290486,0,0,0,21
+290487,0,0,0,21
+290488,0,0,0,21
+290489,0,0,0,21
+290490,0,0,0,21
+290491,0,0,0,21
+290492,0,0,0,21
+290493,0,0,0,21
+290494,0,0,0,21
+290495,0,0,0,21
+290496,0,0,0,21
+290497,0,0,0,21
+290498,0,0,0,21
+290499,0,0,0,21
+290500,0,0,0,21
+290501,0,0,0,21
+290502,0,0,0,21
+290503,0,0,0,21
+290504,0,0,0,21
+290505,0,0,0,21
+290506,0,0,0,21
+290507,0,0,0,21
+290508,0,0,0,21
+290509,0,0,0,21
+290510,0,0,0,21
+290511,0,0,0,21
+290512,0,0,0,21
+290513,0,0,0,21
+290514,0,0,0,21
+290515,0,0,0,21
+290516,0,0,0,21
+290517,0,0,0,21
+290518,0,0,0,21
+290519,0,0,0,21
+290520,0,0,0,21
+290521,0,0,0,21
+290522,0,0,0,21
+290523,0,0,0,21
+290524,0,0,0,21
+290525,0,0,0,21
+290526,0,0,0,21
+290527,0,0,0,21
+290528,0,0,0,21
+290529,0,0,0,21
+290530,0,0,0,21
+290531,0,0,0,21
+290532,0,0,0,21
+290533,0,0,0,21
+290534,0,0,0,21
+290535,0,0,0,21
+290536,0,0,0,21
+290537,0,0,0,21
+290538,0,0,0,21
+290539,0,0,0,21
+290540,0,0,0,21
+290541,0,0,0,21
+290542,0,0,0,21
+290543,0,0,0,21
+290544,0,0,0,21
+290545,0,0,0,21
+290546,0,0,0,21
+290547,0,0,0,21
+290548,0,0,0,21
+290549,0,0,0,21
+290550,0,0,0,21
+290551,0,0,0,21
+290552,0,0,0,21
+290553,0,0,0,21
+290554,0,0,0,21
+290555,0,0,0,21
+290556,0,0,0,21
+290557,0,0,0,21
+290558,0,0,0,21
+290559,0,0,0,21
+290560,0,0,0,21
+290561,0,0,0,21
+290562,0,0,0,21
+290563,0,0,0,21
+290564,0,0,0,21
+290565,0,0,0,21
+290566,0,0,0,21
+290567,0,0,0,21
+290568,0,0,0,21
+290569,0,0,0,21
+290570,0,0,0,21
+290571,0,0,0,21
+290572,0,0,0,21
+290573,0,0,0,21
+290574,0,0,0,21
+290575,0,0,0,21
+290576,0,0,0,21
+290577,0,0,0,21
+290578,0,0,0,21
+290579,0,0,0,21
+290580,0,0,0,21
+290581,0,0,0,21
+290582,0,0,0,21
+290583,0,0,0,21
+290584,0,0,0,21
+290585,0,0,0,21
+290586,0,0,0,21
+290587,0,0,0,21
+290588,0,0,0,21
+290589,0,0,0,21
+290590,0,0,0,21
+290591,0,0,0,21
+290592,0,0,0,21
+290593,0,0,0,21
+290594,0,0,0,21
+290595,0,0,0,21
+290596,0,0,0,21
+290597,0,0,0,21
+290598,0,0,0,21
+290599,0,0,0,21
+290600,0,0,0,21
+290601,0,0,0,21
+290602,0,0,0,21
+290603,0,0,0,21
+290604,0,0,0,21
+290605,0,0,0,21
+290606,0,0,0,21
+290607,0,0,0,21
+290608,0,0,0,21
+290609,0,0,0,21
+290610,0,0,0,21
+290611,0,0,0,21
+290612,0,0,0,21
+290613,0,0,0,21
+290614,0,0,0,21
+290615,0,0,0,21
+290616,0,0,0,21
+290617,0,0,0,21
+290618,0,0,0,21
+290619,0,0,0,21
+290620,0,0,0,21
+290621,0,0,0,21
+290622,0,0,0,21
+290623,0,0,0,21
+290624,0,0,0,21
+290625,0,0,0,21
+290626,0,0,0,21
+290627,0,0,0,21
+290628,0,0,0,21
+290629,0,0,0,21
+290630,0,0,0,21
+290631,0,0,0,21
+290632,0,0,0,21
+290633,0,0,0,21
+290634,0,0,0,21
+290635,0,0,0,21
+290636,0,0,0,21
+290637,0,0,0,21
+290638,0,0,0,21
+290639,0,0,0,21
+290640,0,0,0,21
+290641,0,0,0,21
+290642,0,0,0,21
+290643,0,0,0,21
+290644,0,0,0,21
+290645,0,0,0,21
+290646,0,0,0,21
+290647,0,0,0,21
+290648,0,0,0,21
+290649,0,0,0,21
+290650,0,0,0,21
+290651,0,0,0,21
+290652,0,0,0,21
+290653,0,0,0,21
+290654,0,0,0,21
+290655,0,0,0,21
+290656,0,0,0,21
+290657,0,0,0,21
+290658,0,0,0,21
+290659,0,0,0,21
+290660,0,0,0,21
+290661,0,0,0,21
+290662,0,0,0,21
+290663,0,0,0,21
+290664,0,0,0,21
+290665,0,0,0,21
+290666,0,0,0,21
+290667,0,0,0,21
+290668,0,0,0,21
+290669,0,0,0,21
+290670,0,0,0,21
+290671,0,0,0,21
+290672,0,0,0,21
+290673,0,0,0,21
+290674,0,0,0,21
+290675,0,0,0,21
+290676,0,0,0,21
+290677,0,0,0,21
+290678,0,0,0,21
+290679,0,0,0,21
+290680,0,0,0,21
+290681,0,0,0,21
+290682,0,0,0,21
+290683,0,0,0,21
+290684,0,0,0,21
+290685,0,0,0,21
+290686,0,0,0,21
+290687,0,0,0,21
+290688,0,0,0,21
+290689,0,0,0,21
+290690,0,0,0,21
+290691,0,0,0,21
+290692,0,0,0,21
+290693,0,0,0,21
+290694,0,0,0,21
+290695,0,0,0,21
+290696,0,0,0,21
+290697,0,0,0,21
+290698,0,0,0,21
+290699,0,0,0,21
+290700,0,0,0,21
+290701,0,0,0,21
+290702,0,0,0,21
+290703,0,0,0,21
+290704,0,0,0,21
+290705,328269.1186,364727.0729,657289.0506,21
+290706,0,0,0,21
+290707,0,0,0,21
+290708,0,0,0,21
+290709,0,0,0,21
+290710,0,0,0,21
+290711,0,0,0,21
+290712,0,0,0,21
+290713,0,0,0,21
+290714,0,0,0,21
+290715,0,0,0,21
+290716,0,0,0,21
+290717,0,0,0,21
+290718,0,0,0,21
+290719,0,0,0,21
+290720,0,0,0,21
+290721,0,0,0,21
+290722,0,0,0,21
+290723,0,0,0,21
+290724,0,0,0,21
+290725,0,0,0,21
+290726,0,0,0,21
+290727,0,0,0,21
+290728,0,0,0,21
+290729,0,0,0,21
+290730,0,0,0,21
+290731,0,0,0,21
+290732,0,0,0,21
+290733,0,0,0,21
+290734,0,0,0,21
+290735,0,0,0,21
+290736,0,0,0,21
+290737,0,0,0,21
+290738,0,0,0,21
+290739,328491.1212,364427.5943,658810.7252,21
+290740,0,0,0,21
+290741,0,0,0,21
+290742,0,0,0,21
+290743,0,0,0,21
+290744,0,0,0,21
+290745,0,0,0,21
+290746,0,0,0,21
+290747,0,0,0,21
+290748,0,0,0,21
+290749,0,0,0,21
+290750,0,0,0,21
+290751,0,0,0,21
+290752,0,0,0,21
+290753,0,0,0,21
+290754,0,0,0,21
+290755,0,0,0,21
+290756,0,0,0,21
+290757,0,0,0,21
+290758,0,0,0,21
+290759,0,0,0,21
+290760,0,0,0,15.6
+290761,0,0,0,15.6
+290762,0,0,0,15.6
+290763,0,0,0,15.6
+290764,0,0,0,15.6
+290765,0,0,0,15.6
+290766,0,0,0,15.6
+290767,0,0,0,15.6
+290768,0,0,0,15.6
+290769,0,0,0,15.6
+290770,0,0,0,15.6
+290771,0,0,0,15.6
+290772,0,0,0,15.6
+290773,330036.5301,364909.8013,659586.4657,15.6
+290774,0,0,0,15.6
+290775,0,0,0,15.6
+290776,0,0,0,15.6
+290777,0,0,0,15.6
+290778,0,0,0,15.6
+290779,0,0,0,15.6
+290780,0,0,0,15.6
+290781,0,0,0,15.6
+290782,0,0,0,15.6
+290783,0,0,0,15.6
+290784,0,0,0,15.6
+290785,0,0,0,15.6
+290786,0,0,0,15.6
+290787,0,0,0,15.6
+290788,0,0,0,15.6
+290789,0,0,0,15.6
+290790,0,0,0,15.6
+290791,0,0,0,15.6
+290792,0,0,0,15.6
+290793,0,0,0,15.6
+290794,0,0,0,15.6
+290795,0,0,0,15.6
+290796,0,0,0,15.6
+290797,0,0,0,15.6
+290798,0,0,0,15.6
+290799,0,0,0,15.6
+290800,0,0,0,15.6
+290801,0,0,0,15.6
+290802,0,0,0,15.6
+290803,0,0,0,15.6
+290804,0,0,0,15.6
+290805,0,0,0,15.6
+290806,0,0,0,15.6
+290807,331547.347,365650.5862,660107.3388,15.6
+290808,0,0,0,15.6
+290809,0,0,0,15.6
+290810,0,0,0,15.6
+290811,0,0,0,15.6
+290812,0,0,0,15.6
+290813,0,0,0,15.6
+290814,0,0,0,15.6
+290815,0,0,0,15.6
+290816,0,0,0,15.6
+290817,0,0,0,15.6
+290818,0,0,0,15.6
+290819,0,0,0,15.6
+290820,0,0,0,15.6
+290821,0,0,0,15.6
+290822,0,0,0,15.6
+290823,0,0,0,15.6
+290824,0,0,0,15.6
+290825,0,0,0,15.6
+290826,0,0,0,15.6
+290827,0,0,0,15.6
+290828,0,0,0,15.6
+290829,0,0,0,15.6
+290830,0,0,0,15.6
+290831,0,0,0,15.6
+290832,0,0,0,15.6
+290833,0,0,0,15.6
+290834,0,0,0,15.6
+290835,0,0,0,15.6
+290836,0,0,0,15.6
+290837,0,0,0,15.6
+290838,0,0,0,15.6
+290839,0,0,0,15.6
+290840,0,0,0,15.6
+290841,332428.2451,365685.2653,660674.5786,15.6
+290842,0,0,0,15.6
+290843,0,0,0,15.6
+290844,0,0,0,15.6
+290845,0,0,0,15.6
+290846,0,0,0,15.6
+290847,0,0,0,15.6
+290848,0,0,0,15.6
+290849,0,0,0,15.6
+290850,0,0,0,15.6
+290851,0,0,0,15.6
+290852,0,0,0,15.6
+290853,0,0,0,15.6
+290854,0,0,0,15.6
+290855,0,0,0,15.6
+290856,0,0,0,15.6
+290857,0,0,0,15.6
+290858,0,0,0,15.6
+290859,0,0,0,15.6
+290860,0,0,0,15.6
+290861,0,0,0,15.6
+290862,0,0,0,15.6
+290863,0,0,0,15.6
+290864,0,0,0,15.6
+290865,0,0,0,15.6
+290866,0,0,0,15.6
+290867,0,0,0,15.6
+290868,0,0,0,15.6
+290869,0,0,0,15.6
+290870,0,0,0,15.6
+290871,0,0,0,15.6
+290872,0,0,0,15.6
+290873,0,0,0,15.6
+290874,0,0,0,15.6
+290875,332872.4,367365.7835,661075.6048,15.6
+290876,0,0,0,15.6
+290877,0,0,0,15.6
+290878,0,0,0,15.6
+290879,0,0,0,15.6
+290880,0,0,0,15.6
+290881,0,0,0,15.6
+290882,0,0,0,15.6
+290883,0,0,0,15.6
+290884,0,0,0,15.6
+290885,0,0,0,15.6
+290886,0,0,0,15.6
+290887,0,0,0,15.6
+290888,0,0,0,15.6
+290889,0,0,0,15.6
+290890,0,0,0,15.6
+290891,0,0,0,15.6
+290892,0,0,0,15.6
+290893,0,0,0,15.6
+290894,0,0,0,15.6
+290895,0,0,0,15.6
+290896,0,0,0,15.6
+290897,0,0,0,15.6
+290898,0,0,0,15.6
+290899,0,0,0,15.6
+290900,0,0,0,15.6
+290901,0,0,0,15.6
+290902,0,0,0,15.6
+290903,0,0,0,15.6
+290904,0,0,0,15.6
+290905,0,0,0,15.6
+290906,0,0,0,15.6
+290907,0,0,0,15.6
+290908,0,0,0,15.6
+290909,334887.6285,365752.4973,660915.5639,15.6
+290910,0,0,0,15.6
+290911,0,0,0,15.6
+290912,0,0,0,15.6
+290913,0,0,0,15.6
+290914,0,0,0,15.6
+290915,0,0,0,15.6
+290916,0,0,0,15.6
+290917,0,0,0,15.6
+290918,0,0,0,15.6
+290919,0,0,0,15.6
+290920,0,0,0,15.6
+290921,0,0,0,15.6
+290922,0,0,0,15.6
+290923,0,0,0,15.6
+290924,0,0,0,15.6
+290925,0,0,0,15.6
+290926,0,0,0,15.6
+290927,0,0,0,15.6
+290928,0,0,0,15.6
+290929,0,0,0,15.6
+290930,0,0,0,15.6
+290931,0,0,0,15.6
+290932,0,0,0,15.6
+290933,0,0,0,15.6
+290934,0,0,0,15.6
+290935,0,0,0,15.6
+290936,0,0,0,15.6
+290937,0,0,0,15.6
+290938,0,0,0,15.6
+290939,0,0,0,15.6
+290940,0,0,0,15.6
+290941,0,0,0,15.6
+290942,0,0,0,15.6
+290943,334265.492,367240.9539,660954.2939,15.6
+290944,0,0,0,15.6
+290945,0,0,0,15.6
+290946,0,0,0,15.6
+290947,0,0,0,15.6
+290948,0,0,0,15.6
+290949,0,0,0,15.6
+290950,0,0,0,15.6
+290951,0,0,0,15.6
+290952,0,0,0,15.6
+290953,0,0,0,15.6
+290954,0,0,0,15.6
+290955,0,0,0,15.6
+290956,0,0,0,15.6
+290957,0,0,0,15.6
+290958,0,0,0,15.6
+290959,0,0,0,15.6
+290960,0,0,0,15.6
+290961,0,0,0,15.6
+290962,0,0,0,15.6
+290963,0,0,0,15.6
+290964,0,0,0,15.6
+290965,0,0,0,15.6
+290966,0,0,0,15.6
+290967,0,0,0,15.6
+290968,0,0,0,15.6
+290969,0,0,0,15.6
+290970,0,0,0,15.6
+290971,0,0,0,15.6
+290972,0,0,0,15.6
+290973,0,0,0,15.6
+290974,0,0,0,15.6
+290975,0,0,0,15.6
+290976,0,0,0,15.6
+290977,335972.7939,364309.8424,661249.8842,15.6
+290978,0,0,0,15.6
+290979,0,0,0,15.6
+290980,0,0,0,15.6
+290981,0,0,0,15.6
+290982,0,0,0,15.6
+290983,0,0,0,15.6
+290984,0,0,0,15.6
+290985,0,0,0,15.6
+290986,0,0,0,15.6
+290987,0,0,0,15.6
+290988,0,0,0,15.6
+290989,0,0,0,15.6
+290990,0,0,0,15.6
+290991,0,0,0,15.6
+290992,0,0,0,15.6
+290993,0,0,0,15.6
+290994,0,0,0,15.6
+290995,0,0,0,15.6
+290996,0,0,0,15.6
+290997,0,0,0,15.6
+290998,0,0,0,15.6
+290999,0,0,0,15.6
+291000,0,0,0,15.6
+291001,0,0,0,15.6
+291002,0,0,0,15.6
+291003,0,0,0,15.6
+291004,0,0,0,15.6
+291005,0,0,0,15.6
+291006,0,0,0,15.6
+291007,0,0,0,15.6
+291008,0,0,0,15.6
+291009,0,0,0,15.6
+291010,0,0,0,15.6
+291011,335272.9911,365762.1369,661105.7442,15.6
+291012,0,0,0,15.6
+291013,0,0,0,15.6
+291014,0,0,0,15.6
+291015,0,0,0,15.6
+291016,0,0,0,15.6
+291017,0,0,0,15.6
+291018,0,0,0,15.6
+291019,0,0,0,15.6
+291020,0,0,0,15.6
+291021,0,0,0,15.6
+291022,0,0,0,15.6
+291023,0,0,0,15.6
+291024,0,0,0,15.6
+291025,0,0,0,15.6
+291026,0,0,0,15.6
+291027,0,0,0,15.6
+291028,0,0,0,15.6
+291029,0,0,0,15.6
+291030,0,0,0,15.6
+291031,0,0,0,15.6
+291032,0,0,0,15.6
+291033,0,0,0,15.6
+291034,0,0,0,15.6
+291035,0,0,0,15.6
+291036,0,0,0,15.6
+291037,0,0,0,15.6
+291038,0,0,0,15.6
+291039,0,0,0,15.6
+291040,0,0,0,15.6
+291041,0,0,0,15.6
+291042,0,0,0,15.6
+291043,0,0,0,15.6
+291044,0,0,0,15.6
+291045,0,367322.7776,660917.0328,15.6
+291046,336549.1218,0,0,15.6
+291047,0,0,0,15.6
+291048,0,0,0,15.6
+291049,0,0,0,15.6
+291050,0,0,0,15.6
+291051,0,0,0,15.6
+291052,0,0,0,15.6
+291053,0,0,0,15.6
+291054,0,0,0,15.6
+291055,0,0,0,15.6
+291056,0,0,0,15.6
+291057,0,0,0,15.6
+291058,0,0,0,15.6
+291059,0,0,0,15.6
+291060,0,0,0,15.6
+291061,0,0,0,15.6
+291062,0,0,0,15.6
+291063,0,0,0,15.6
+291064,0,0,0,15.6
+291065,0,0,0,15.6
+291066,0,0,0,15.6
+291067,0,0,0,15.6
+291068,0,0,0,15.6
+291069,0,0,0,15.6
+291070,0,0,0,15.6
+291071,0,0,0,15.6
+291072,0,0,0,15.6
+291073,0,0,0,15.6
+291074,0,0,0,15.6
+291075,0,0,0,15.6
+291076,0,0,0,15.6
+291077,0,0,0,15.6
+291078,0,0,661025.2729,15.6
+291079,0,364627.4962,0,15.6
+291080,336216.5563,0,0,15.6
+291081,0,0,0,15.6
+291082,0,0,0,15.6
+291083,0,0,0,15.6
+291084,0,0,0,15.6
+291085,0,0,0,15.6
+291086,0,0,0,15.6
+291087,0,0,0,15.6
+291088,0,0,0,15.6
+291089,0,0,0,15.6
+291090,0,0,0,15.6
+291091,0,0,0,15.6
+291092,0,0,0,15.6
+291093,0,0,0,15.6
+291094,0,0,0,15.6
+291095,0,0,0,15.6
+291096,0,0,0,15.6
+291097,0,0,0,15.6
+291098,0,0,0,15.6
+291099,0,0,0,15.6
+291100,0,0,0,15.6
+291101,0,0,0,15.6
+291102,0,0,0,15.6
+291103,0,0,0,15.6
+291104,0,0,0,15.6
+291105,0,0,0,15.6
+291106,0,0,0,15.6
+291107,0,0,0,15.6
+291108,0,0,0,15.6
+291109,0,0,0,15.6
+291110,0,0,0,15.6
+291111,0,0,660819.3114,15.6
+291112,0,0,0,15.6
+291113,0,366587.0333,0,15.6
+291114,336379.9184,0,0,15.6
+291115,0,0,0,15.6
+291116,0,0,0,15.6
+291117,0,0,0,15.6
+291118,0,0,0,15.6
+291119,0,0,0,15.6
+291120,0,0,0,17.8
+291121,0,0,0,17.8
+291122,0,0,0,17.8
+291123,0,0,0,17.8
+291124,0,0,0,17.8
+291125,0,0,0,17.8
+291126,0,0,0,17.8
+291127,0,0,0,17.8
+291128,0,0,0,17.8
+291129,0,0,0,17.8
+291130,0,0,0,17.8
+291131,0,0,0,17.8
+291132,0,0,0,17.8
+291133,0,0,0,17.8
+291134,0,0,0,17.8
+291135,0,0,0,17.8
+291136,0,0,0,17.8
+291137,0,0,0,17.8
+291138,0,0,0,17.8
+291139,0,0,0,17.8
+291140,0,0,0,17.8
+291141,0,0,0,17.8
+291142,0,0,0,17.8
+291143,0,0,0,17.8
+291144,0,0,0,17.8
+291145,0,0,660837.5235,17.8
+291146,0,0,0,17.8
+291147,0,366935.6408,0,17.8
+291148,337336.8165,0,0,17.8
+291149,0,0,0,17.8
+291150,0,0,0,17.8
+291151,0,0,0,17.8
+291152,0,0,0,17.8
+291153,0,0,0,17.8
+291154,0,0,0,17.8
+291155,0,0,0,17.8
+291156,0,0,0,17.8
+291157,0,0,0,17.8
+291158,0,0,0,17.8
+291159,0,0,0,17.8
+291160,0,0,0,17.8
+291161,0,0,0,17.8
+291162,0,0,0,17.8
+291163,0,0,0,17.8
+291164,0,0,0,17.8
+291165,0,0,0,17.8
+291166,0,0,0,17.8
+291167,0,0,0,17.8
+291168,0,0,0,17.8
+291169,0,0,0,17.8
+291170,0,0,0,17.8
+291171,0,0,0,17.8
+291172,0,0,0,17.8
+291173,0,0,0,17.8
+291174,0,0,0,17.8
+291175,0,0,0,17.8
+291176,0,0,0,17.8
+291177,0,0,0,17.8
+291178,0,0,0,17.8
+291179,0,0,660394.5971,17.8
+291180,0,0,0,20
+291181,336540.8577,400209.0784,0,20
+291182,0,0,0,20
+291183,0,0,0,20
+291184,0,0,0,20
+291185,0,12297.63366,0,20
+291186,0,38425.77595,0,20
+291187,0,24372.51192,0,20
+291188,0,37456.45544,0,20
+291189,0,32425.60669,0,20
+291190,0,34724.22447,0,20
+291191,0,34780.17492,0,20
+291192,0,34816.59895,0,20
+291193,0,35001.46639,0,20
+291194,0,34831.89135,0,20
+291195,0,34966.59984,0,20
+291196,0,34824.86987,0,20
+291197,143.231482,34456.50447,0,20
+291198,242.6229608,35004.07595,0,20
+291199,176.8269184,34862.37844,0,20
+291200,242.6229583,34746.7686,0,20
+291201,258.8244616,34914.97171,0,20
+291202,290.9673218,34820.05935,0,20
+291203,290.9673204,34784.20201,0,20
+291204,322.7895477,34914.97504,0,20
+291205,338.58896,34799.36499,0,20
+291206,369.9779496,34857.46221,0,20
+291207,496.6850904,34836.6913,0,20
+291208,527.8105188,34746.0875,0,20
+291209,1398.572821,34947.56047,0,20
+291210,1432.553725,34599.03612,0,20
+291211,1495.390187,34836.69606,0,20
+291212,1631.464104,34851.79443,0,20
+291213,1942.964861,34732.60159,0,20
+291214,1960.756953,34866.86254,0,20
+291215,2138.713264,34689.278,0,20
+291216,2153.795169,34851.79919,0,20
+291217,2444.921846,34762.7696,0,20
+291218,2477.131169,34519.34508,0,20
+291219,2619.668078,34889.02189,0,20
+291220,2779.627342,34704.35013,0,20
+291221,2810.415302,34704.35139,0,20
+291222,3078.976691,34741.4983,0,20
+291223,2983.078029,34534.38613,0,20
+291224,3251.22107,34889.0285,0,20
+291225,3296.362739,34386.17021,0,20
+291226,3421.617994,34719.3924,0,20
+291227,3451.896448,34549.39524,0,20
+291228,3592.107854,34682.49954,0,20
+291229,3745.412715,34549.398,0,20
+291230,3746.312858,34571.51009,0,20
+291231,3928.913407,34364.06676,0,20
+291232,3922.099232,34571.51286,0,20
+291233,4189.82649,34178.40186,0,20
+291234,4097.06671,34571.51522,0,20
+291235,4219.590056,34178.40455,0,20
+291236,4371.291283,34364.07307,0,20
+291237,4385.676305,34215.4914,0,20
+291238,4415.998124,34178.40808,0,20
+291239,4657.871499,34052.15966,0,20
+291240,4551.905138,34178.41079,0,21
+291241,4702.400367,34193.61354,0,21
+291242,5141.315957,34215.63751,0,21
+291243,5428.387892,34193.52773,0,21
+291244,5304.09909,34044.57923,0,21
+291245,5577.821489,34445.27306,0,21
+291246,5848.374247,34252.65723,0,21
+291247,5743.504501,34208.47833,0,21
+291248,6146.649606,34504.40327,0,21
+291249,6012.386535,34223.39597,0,21
+291250,6309.124125,34504.40777,0,21
+291251,6413.277453,34326.13253,0,21
+291252,6462.894494,34378.66725,0,21
+291253,6707.854063,34512.14207,0,21
+291254,6719.710396,34534.21427,0,21
+291255,6867.820836,34311.25858,0,21
+291256,6997.982303,34533.7768,0,21
+291257,7144.214844,34325.14799,0,21
+291258,7144.910091,34659.98296,0,21
+291259,7402.529924,34362.73194,0,21
+291260,7290.701202,34637.41273,0,21
+291261,7690.551855,34488.35154,0,21
+291262,7549.004396,34348.00607,0,21
+291263,7591.49906,34792.36254,0,21
+291264,7953.658351,34287.16281,0,21
+291265,7845.921499,34132.33572,0,21
+291266,7967.556144,33790.17556,0,21
+291267,8109.570169,33930.80504,0,21
+291268,8117.284122,33618.0374,0,21
+291269,8366.356012,34095.3364,0,21
+291270,8263.467024,33556.41561,0,21
+291271,8394.056828,33782.91357,0,21
+291272,8506.296346,33743.78984,0,21
+291273,8533.325328,33721.63846,0,21
+291274,8520.161694,33758.64462,0,21
+291275,8650.406406,33721.64151,0,21
+291276,8672.631419,33861.99203,0,21
+291277,8789.671308,33743.79542,0,21
+291278,8664.210118,33876.8202,0,21
+291279,8928.289555,33847.14393,0,21
+291280,8802.813769,33898.97401,0,21
+291281,8804.062842,33862.00078,0,21
+291282,8941.473524,34024.22797,0,21
+291283,8933.937458,33862.00365,0,21
+291284,8941.473257,34024.22915,0,21
+291285,9072.516434,34002.07961,0,21
+291286,9057.54516,34024.23215,0,21
+291287,8970.217497,33979.88727,0,21
+291288,9187.676498,34024.23789,0,21
+291289,9079.515066,34149.24178,0,21
+291290,9086.288825,34119.69089,0,21
+291291,9187.676221,34024.24324,0,21
+291292,9093.866457,34266.64968,0,21
+291293,9202.028461,34127.09594,0,21
+291294,9107.608332,34178.81202,0,21
+291295,9311.325946,34229.66322,0,21
+291296,8984.529163,34303.57564,0,21
+291297,9325.067245,34229.66698,0,21
+291298,9108.178501,34303.57869,0,21
+291299,9325.067768,34244.46499,0,21
+291300,9093.866672,34303.58155,0,21
+291301,2946.848834,25500.3721,0,21
+291302,2736.103233,24932.93885,0,21
+291303,2490.829144,24634.50824,0,21
+291304,2476.246704,24525.89413,0,21
+291305,2446.140298,24253.16827,0,21
+291306,2329.460768,24156.62733,0,21
+291307,2152.296896,24043.4714,0,21
+291308,2314.836889,23973.52239,0,21
+291309,2152.29666,23673.1313,0,21
+291310,2003.229992,23712.15388,0,21
+291311,2152.296611,23364.49288,0,21
+291312,1868.519409,23450.09386,0,21
+291313,1988.521626,23216.00112,0,21
+291314,1838.130223,23426.53695,0,21
+291315,1839.058638,22768.6057,0,21
+291316,1701.992821,23301.93511,0,21
+291317,1671.489306,22504.88543,0,21
+291318,1687.240488,22596.27449,0,21
+291319,1533.693536,21957.96419,0,21
+291320,1518.897156,22021.04669,0,21
+291321,1503.072914,21732.31721,0,21
+291322,1379.103767,21756.09231,0,21
+291323,1332.537392,21622.18518,0,21
+291324,1363.279211,21340.70591,0,21
+291325,1190.1995,21396.07322,0,21
+291326,1175.311654,21137.88166,0,21
+291327,1190.199816,21222.23755,0,21
+291328,1013.387787,20910.67831,0,21
+291329,1013.387813,20963.91675,0,21
+291330,998.4526572,20752.48187,0,21
+291331,844.0420215,20626.02762,0,21
+291332,822.1656122,20508.8899,0,21
+291333,821.044359,20562.23624,0,21
+291334,812.9596539,20169.95718,0,21
+291335,799.0927523,19979.16405,0,21
+291336,796.7212076,20334.36951,0,21
+291337,766.7062728,19774.32715,0,21
+291338,782.9446351,19710.10333,0,21
+291339,750.3722869,19955.06234,0,21
+291340,750.3723355,19163.52148,0,21
+291341,735.2906515,19550.54128,0,21
+291342,735.2906243,19123.30986,0,21
+291343,718.8555814,19099.0211,0,21
+291344,703.72222,18756.88972,0,21
+291345,702.3126695,18509.54838,0,21
+291346,680.279183,18692.1044,0,21
+291347,687.1796172,18029.00089,0,21
+291348,655.3365274,18117.05709,0,21
+291349,655.3365068,17852.26769,0,21
+291350,640.0971939,17635.12992,0,21
+291351,638.5545958,17273.32006,0,21
+291352,623.3152152,17360.40216,0,21
+291353,608.0207923,17022.69165,0,21
+291354,606.3988201,16737.88863,0,21
+291355,591.1045664,16414.86076,0,21
+291356,558.6887441,16510.67406,0,21
+291357,591.1045479,15974.9596,0,21
+291358,541.4599309,16061.82292,0,21
+291359,558.689024,15705.08934,0,21
+291360,526.0504806,15524.66093,0,21
+291361,508.6348982,15390.74396,0,21
+291362,526.050469,15090.58201,0,21
+291363,508.6349706,14799.07778,0,21
+291364,493.1659835,14809.36027,0,21
+291365,475.5341881,14404.15148,0,21
+291366,484.3794142,14215.25849,0,21
+291367,460.0031758,14104.20893,0,21
+291368,457.6425521,13973.39479,0,21
+291369,460.0033266,13542.9344,0,21
+291370,417.4540211,13496.50263,0,21
+291371,442.1118497,13299.42341,0,21
+291372,408.2959124,13134.71358,0,21
+291373,408.2958847,12819.13467,0,21
+291374,408.2960806,12670.833,0,21
+291375,373.9485369,12637.75465,0,21
+291376,383.3640504,12226.20355,0,21
+291377,364.3309174,12031.14705,0,21
+291378,358.2199401,11979.04688,0,21
+291379,354.3176145,11583.98157,0,21
+291380,322.7896542,11574.46305,0,21
+291381,354.3174302,11334.97589,0,21
+291382,306.916832,10914.75025,0,21
+291383,338.589016,10918.28086,0,21
+291384,322.7896418,10660.09106,0,21
+291385,306.9168296,10483.02028,0,21
+291386,322.7896878,10250.29824,0,21
+291387,290.9672967,9987.153153,0,21
+291388,322.7896822,9557.575361,0,21
+291389,290.9673629,9574.453838,0,21
+291390,290.9672738,9159.962387,0,21
+291391,290.9673557,9027.723249,0,21
+291392,290.9673623,8858.815881,0,21
+291393,274.9377621,8252.492946,0,21
+291394,290.9673551,8323.233467,0,21
+291395,274.9378591,7804.022024,0,21
+291396,274.9378462,7902.339524,0,21
+291397,274.9377223,7259.248107,0,21
+291398,274.9378572,7242.137401,0,21
+291399,274.9378395,6804.265203,0,21
+291400,258.8244942,6540.678748,0,21
+291401,274.9378496,6131.67967,0,21
+291402,258.8244956,6233.259158,0,21
+291403,258.82448,5440.376454,0,21
+291404,258.8244942,5365.733722,0,21
+291405,258.8244874,4858.578816,0,21
+291406,242.6229872,4765.720706,0,21
+291407,258.8244777,4241.613821,0,21
+291408,242.6229867,3758.732059,0,21
+291409,258.8244886,3726.307907,0,21
+291410,242.6229865,3680.814311,0,21
+291411,242.6229711,3486.637663,0,21
+291412,242.6229852,3455.212197,0,21
+291413,242.6229804,3389.178549,0,21
+291414,226.3284767,3207.474619,0,21
+291415,242.6229574,3225.134925,0,21
+291416,226.3284758,3207.474984,0,21
+291417,242.6229759,2903.605196,0,21
+291418,226.3284753,3189.735765,0,21
+291419,226.3284717,2894.725558,0,21
+291420,226.3284655,2876.903853,0,21
+291421,209.935417,2710.428418,0,21
+291422,218.144642,2710.385437,0,21
+291423,209.9354181,2542.979351,0,21
+291424,193.4373504,2542.979121,0,21
+291425,209.935419,2524.887955,0,21
+291426,193.4373964,2374.644503,0,21
+291427,193.4374052,2524.88791,0,21
+291428,176.8269533,2196.191987,0,21
+291429,193.4374059,2356.455117,0,21
+291430,176.8269446,2187.031953,0,21
+291431,193.4374053,2187.032,0,21
+291432,160.0952098,2016.554163,0,21
+291433,176.8269578,2168.628393,0,21
+291434,168.4768543,1863.467521,0,21
+291435,160.0952124,1998.033487,0,21
+291436,160.0952093,1826.3001,0,21
+291437,160.0952136,1844.946725,0,21
+291438,160.0952016,1807.518303,0,21
+291439,143.2314927,1672.119921,0,21
+291440,143.2314934,1653.338124,0,21
+291441,151.6805962,1634.409017,0,21
+291442,143.2314935,1497.967076,0,21
+291443,126.2226551,1459.946946,0,21
+291444,143.2314936,1479.038025,0,21
+291445,126.22266,1283.994095,0,21
+291446,126.2226523,1303.265417,0,21
+291447,126.2226589,1283.994288,0,21
+291448,109.0520656,1125.850741,0,21
+291449,126.2226544,1264.518926,0,21
+291450,109.0521177,946.5723421,0,21
+291451,109.0520758,1086.662946,0,21
+291452,100.3996999,926.8601338,0,21
+291453,91.6981931,926.8601924,0,21
+291454,109.0521175,745.1297805,0,21
+291455,74.13124065,906.8621335,0,21
+291456,91.69819743,560.7156335,0,21
+291457,74.13125692,735.0029144,0,21
+291458,74.13125761,550.3592932,0,21
+291459,56.30807185,539.8448029,0,21
+291460,74.1312603,539.8447587,0,21
+291461,47.28032999,372.8305522,0,21
+291462,56.3080813,350.9246739,0,21
+291463,38.15889782,350.9247539,0,21
+291464,38.15889475,179.7183319,0,21
+291465,38.15887918,179.718343,0,21
+291466,19.5481555,179.7183548,0,21
+291467,28.92489177,0,0,21
+291468,9.970952692,179.7183757,0,21
+291469,19.5481671,0,0,21
+291470,0,0,0,21
+291471,0,0,0,21
+291472,0,0,0,21
+291473,0,0,0,21
+291474,0,0,0,21
+291475,0,0,0,21
+291476,0,0,0,21
+291477,0,0,0,21
+291478,0,0,0,21
+291479,0,0,0,21
+291480,0,0,0,21
+291481,0,0,0,21
+291482,0,0,0,21
+291483,0,0,0,21
+291484,0,0,0,21
+291485,0,0,0,21
+291486,0,0,0,21
+291487,0,0,0,21
+291488,0,0,0,21
+291489,0,0,0,21
+291490,0,0,0,21
+291491,0,0,0,21
+291492,0,0,0,21
+291493,0,0,0,21
+291494,0,0,0,21
+291495,0,0,0,21
+291496,0,0,0,21
+291497,0,0,0,21
+291498,0,0,0,21
+291499,0,0,0,21
+291500,0,0,0,21
+291501,0,0,0,21
+291502,0,0,0,21
+291503,0,0,0,21
+291504,0,0,0,21
+291505,0,0,0,21
+291506,0,0,0,21
+291507,0,0,0,21
+291508,0,0,0,21
+291509,0,0,0,21
+291510,0,0,0,21
+291511,0,0,0,21
+291512,0,0,0,21
+291513,0,0,0,21
+291514,0,0,0,21
+291515,0,0,0,21
+291516,0,0,0,21
+291517,0,0,0,21
+291518,0,0,0,21
+291519,0,0,0,21
+291520,0,0,0,21
+291521,0,0,0,21
+291522,0,0,0,21
+291523,0,0,0,21
+291524,0,0,0,21
+291525,0,0,0,21
+291526,0,0,0,21
+291527,0,0,0,21
+291528,0,0,0,21
+291529,0,0,0,21
+291530,0,0,0,21
+291531,0,0,0,21
+291532,0,0,0,21
+291533,0,0,0,21
+291534,0,0,0,21
+291535,0,0,0,21
+291536,0,0,0,21
+291537,0,0,0,21
+291538,0,0,0,21
+291539,0,0,0,21
+291540,0,0,0,21
+291541,0,0,0,21
+291542,0,0,0,21
+291543,0,0,0,21
+291544,0,0,0,21
+291545,0,0,0,21
+291546,0,0,0,21
+291547,0,0,0,21
+291548,0,0,0,21
+291549,0,0,0,21
+291550,0,0,0,21
+291551,0,0,0,21
+291552,0,0,0,21
+291553,0,0,0,21
+291554,0,0,0,21
+291555,0,0,0,21
+291556,0,0,0,21
+291557,0,0,0,21
+291558,0,0,0,21
+291559,0,0,0,21
+291560,0,0,0,21
+291561,0,0,0,21
+291562,0,0,0,21
+291563,0,0,0,21
+291564,0,0,0,21
+291565,0,0,0,21
+291566,0,0,0,21
+291567,0,0,0,21
+291568,0,0,0,21
+291569,0,0,0,21
+291570,0,0,0,21
+291571,0,0,0,21
+291572,0,0,0,21
+291573,0,0,0,21
+291574,0,0,0,21
+291575,0,0,0,21
+291576,0,0,0,21
+291577,0,0,0,21
+291578,0,0,0,21
+291579,0,0,0,21
+291580,0,0,0,21
+291581,0,0,0,21
+291582,0,0,0,21
+291583,0,0,0,21
+291584,0,0,0,21
+291585,0,0,0,21
+291586,0,0,0,21
+291587,0,0,0,21
+291588,0,0,0,21
+291589,0,0,0,21
+291590,0,0,0,21
+291591,0,0,0,21
+291592,0,0,0,21
+291593,0,0,0,21
+291594,0,0,0,21
+291595,0,0,0,21
+291596,0,0,0,21
+291597,0,0,0,21
+291598,0,0,0,21
+291599,0,0,0,21
+291600,0,0,0,21
+291601,0,0,0,21
+291602,0,0,0,21
+291603,0,0,0,21
+291604,0,0,0,21
+291605,0,0,0,21
+291606,0,0,0,21
+291607,0,0,0,21
+291608,0,0,0,21
+291609,0,0,0,21
+291610,0,0,0,21
+291611,0,0,0,21
+291612,0,0,0,21
+291613,0,0,0,21
+291614,0,0,0,21
+291615,0,0,0,21
+291616,0,0,0,21
+291617,0,0,0,21
+291618,0,0,0,21
+291619,0,0,0,21
+291620,0,0,0,21
+291621,0,0,0,21
+291622,0,0,0,21
+291623,0,0,0,21
+291624,0,0,0,21
+291625,0,0,0,21
+291626,0,0,0,21
+291627,0,0,0,21
+291628,0,0,0,21
+291629,0,0,0,21
+291630,0,0,0,21
+291631,0,0,0,21
+291632,0,0,0,21
+291633,0,0,0,21
+291634,0,0,0,21
+291635,0,0,0,21
+291636,0,0,0,21
+291637,0,0,0,21
+291638,0,0,0,21
+291639,0,0,0,21
+291640,0,0,0,21
+291641,0,0,0,21
+291642,0,0,0,21
+291643,0,0,0,21
+291644,0,0,0,21
+291645,0,0,0,21
+291646,0,0,0,21
+291647,0,0,0,21
+291648,0,0,0,21
+291649,0,0,0,21
+291650,0,0,0,21
+291651,0,0,0,21
+291652,0,0,0,21
+291653,0,0,0,21
+291654,0,0,0,21
+291655,0,0,0,21
+291656,0,0,0,21
+291657,0,0,0,21
+291658,0,0,0,21
+291659,0,0,0,21
+291660,0,0,0,21
+291661,0,0,0,21
+291662,0,0,0,21
+291663,0,0,0,21
+291664,0,0,0,21
+291665,0,0,0,21
+291666,0,0,0,21
+291667,0,0,0,21
+291668,0,0,0,21
+291669,0,0,0,21
+291670,0,0,0,21
+291671,0,0,0,21
+291672,0,0,0,21
+291673,0,0,0,21
+291674,0,0,0,21
+291675,0,0,0,21
+291676,0,0,0,21
+291677,0,0,0,21
+291678,0,0,0,21
+291679,0,0,0,21
+291680,0,0,0,21
+291681,0,0,0,21
+291682,0,0,0,21
+291683,0,0,0,21
+291684,0,0,0,21
+291685,0,0,0,21
+291686,0,0,0,21
+291687,0,0,0,21
+291688,0,0,0,21
+291689,0,0,0,21
+291690,0,0,0,21
+291691,0,0,0,21
+291692,0,0,0,21
+291693,0,0,0,21
+291694,0,0,0,21
+291695,0,0,0,21
+291696,0,0,0,21
+291697,0,0,0,21
+291698,0,0,0,21
+291699,0,0,0,21
+291700,0,0,0,21
+291701,0,0,0,21
+291702,0,0,0,21
+291703,0,0,0,21
+291704,0,0,0,21
+291705,0,0,0,21
+291706,0,0,0,21
+291707,0,0,0,21
+291708,0,0,0,21
+291709,0,0,0,21
+291710,0,0,0,21
+291711,0,0,0,21
+291712,0,0,0,21
+291713,0,0,0,21
+291714,0,0,0,21
+291715,0,0,0,21
+291716,0,0,0,21
+291717,0,0,0,21
+291718,0,0,0,21
+291719,0,0,0,21
+291720,0,0,0,21
+291721,0,0,0,21
+291722,0,0,0,21
+291723,0,0,0,21
+291724,0,0,0,21
+291725,0,0,0,21
+291726,0,0,0,21
+291727,0,0,0,21
+291728,0,0,0,21
+291729,0,0,0,21
+291730,0,0,0,21
+291731,0,0,0,21
+291732,0,0,0,21
+291733,0,0,0,21
+291734,0,0,0,21
+291735,0,0,0,21
+291736,0,0,0,21
+291737,0,0,0,21
+291738,0,0,0,21
+291739,0,0,0,21
+291740,0,0,0,21
+291741,0,0,0,21
+291742,0,0,0,21
+291743,0,0,0,21
+291744,0,0,0,21
+291745,0,0,0,21
+291746,0,0,0,21
+291747,0,0,0,21
+291748,0,0,0,21
+291749,0,0,0,21
+291750,0,0,0,21
+291751,0,0,0,21
+291752,0,0,0,21
+291753,0,0,0,21
+291754,0,0,0,21
+291755,0,0,0,21
+291756,0,0,0,21
+291757,0,0,0,21
+291758,0,0,0,21
+291759,0,0,0,21
+291760,0,0,0,21
+291761,0,0,0,21
+291762,0,0,0,21
+291763,0,0,0,21
+291764,0,0,0,21
+291765,0,0,0,21
+291766,0,0,0,21
+291767,0,0,0,21
+291768,0,0,0,21
+291769,0,0,0,21
+291770,0,0,0,21
+291771,0,0,0,21
+291772,0,0,0,21
+291773,0,0,0,21
+291774,0,0,0,21
+291775,0,0,0,21
+291776,0,0,0,21
+291777,0,0,0,21
+291778,0,0,0,21
+291779,0,0,0,21
+291780,0,0,0,21
+291781,0,0,0,21
+291782,0,0,0,21
+291783,0,0,0,21
+291784,0,0,0,21
+291785,0,0,0,21
+291786,0,0,0,21
+291787,0,0,0,21
+291788,0,0,0,21
+291789,0,0,0,21
+291790,0,0,0,21
+291791,0,0,0,21
+291792,0,0,0,21
+291793,0,0,0,21
+291794,0,0,0,21
+291795,0,0,0,21
+291796,0,0,0,21
+291797,0,0,0,21
+291798,0,0,0,21
+291799,0,0,0,21
+291800,0,0,0,21
+291801,0,0,0,21
+291802,0,0,0,21
+291803,0,0,0,21
+291804,0,0,0,21
+291805,0,0,0,21
+291806,0,0,0,21
+291807,0,0,0,21
+291808,0,0,0,21
+291809,0,0,0,21
+291810,0,0,0,21
+291811,0,0,0,21
+291812,0,0,0,21
+291813,0,0,0,21
+291814,0,0,0,21
+291815,0,0,0,21
+291816,0,0,0,21
+291817,0,0,0,21
+291818,0,0,0,21
+291819,0,0,0,21
+291820,0,0,0,21
+291821,0,0,0,21
+291822,0,0,0,21
+291823,0,0,0,21
+291824,0,0,0,21
+291825,0,0,0,21
+291826,0,0,0,21
+291827,0,0,0,21
+291828,0,0,0,21
+291829,0,0,0,21
+291830,0,0,0,21
+291831,0,0,0,21
+291832,0,0,0,21
+291833,0,0,0,21
+291834,0,0,0,21
+291835,0,0,0,21
+291836,0,0,0,21
+291837,0,0,0,21
+291838,0,0,0,21
+291839,0,0,0,21
+291840,0,0,0,21
+291841,0,0,0,21
+291842,0,0,0,21
+291843,0,0,0,21
+291844,0,0,0,21
+291845,0,0,0,21
+291846,0,0,0,21
+291847,0,0,0,21
+291848,0,0,0,21
+291849,0,0,0,21
+291850,0,0,0,21
+291851,0,0,0,21
+291852,0,0,0,21
+291853,0,0,0,21
+291854,0,0,0,21
+291855,0,0,0,21
+291856,0,0,0,21
+291857,0,0,0,21
+291858,0,0,0,21
+291859,0,0,0,21
+291860,0,0,0,21
+291861,0,0,0,21
+291862,0,0,0,21
+291863,0,0,0,21
+291864,0,0,0,21
+291865,0,0,0,21
+291866,0,0,0,21
+291867,0,0,0,21
+291868,0,0,0,21
+291869,0,0,0,21
+291870,0,0,0,21
+291871,0,0,0,21
+291872,0,0,0,21
+291873,0,0,0,21
+291874,0,0,0,21
+291875,0,0,0,21
+291876,0,0,0,21
+291877,0,0,0,21
+291878,0,0,0,21
+291879,0,0,0,21
+291880,0,0,0,21
+291881,0,0,0,21
+291882,0,0,0,21
+291883,0,0,0,21
+291884,0,0,0,21
+291885,0,0,0,21
+291886,0,0,0,21
+291887,0,0,0,21
+291888,0,0,0,21
+291889,0,0,0,21
+291890,0,0,0,21
+291891,0,0,0,21
+291892,0,0,0,21
+291893,0,0,0,21
+291894,0,0,0,21
+291895,0,0,0,21
+291896,0,0,0,21
+291897,0,0,0,21
+291898,0,0,0,21
+291899,0,0,0,21
+291900,0,0,0,21
+291901,0,0,0,21
+291902,0,0,0,21
+291903,0,0,0,21
+291904,0,0,0,21
+291905,0,0,0,21
+291906,0,366716.8951,654908.039,21
+291907,327623.4114,0,0,21
+291908,0,0,0,21
+291909,0,0,0,21
+291910,0,0,0,21
+291911,0,0,0,21
+291912,0,0,0,21
+291913,0,0,0,21
+291914,0,0,0,21
+291915,0,0,0,21
+291916,0,0,0,21
+291917,0,0,0,21
+291918,0,0,0,21
+291919,0,0,0,21
+291920,0,0,0,21
+291921,0,0,0,21
+291922,0,0,0,21
+291923,0,0,0,21
+291924,0,0,0,21
+291925,0,0,0,21
+291926,0,0,0,21
+291927,0,0,0,21
+291928,0,0,0,21
+291929,0,0,0,21
+291930,0,0,0,21
+291931,0,0,0,21
+291932,0,0,0,21
+291933,0,0,0,21
+291934,0,0,0,21
+291935,0,0,0,21
+291936,0,0,0,21
+291937,0,0,0,21
+291938,0,0,0,21
+291939,0,0,0,21
+291940,0,0,0,21
+291941,0,366737.0163,656830.2531,21
+291942,0,0,0,21
+291943,329938.1189,0,0,21
+291944,0,0,0,21
+291945,0,0,0,21
+291946,0,0,0,21
+291947,0,0,0,21
+291948,0,0,0,21
+291949,0,0,0,21
+291950,0,0,0,21
+291951,0,0,0,21
+291952,0,0,0,21
+291953,0,0,0,21
+291954,0,0,0,21
+291955,0,0,0,21
+291956,0,0,0,21
+291957,0,0,0,21
+291958,0,0,0,21
+291959,0,0,0,21
+291960,0,0,0,21
+291961,0,0,0,21
+291962,0,0,0,21
+291963,0,0,0,21
+291964,0,0,0,21
+291965,0,0,0,21
+291966,0,0,0,21
+291967,0,0,0,21
+291968,0,0,0,21
+291969,0,0,0,21
+291970,0,0,0,21
+291971,0,0,0,21
+291972,0,0,0,21
+291973,0,0,0,21
+291974,0,0,0,21
+291975,0,0,0,21
+291976,0,366102.6933,658033.3384,21
+291977,0,0,0,21
+291978,0,0,0,21
+291979,331828.6244,0,0,21
+291980,0,0,0,21
+291981,0,0,0,21
+291982,0,0,0,21
+291983,0,0,0,21
+291984,0,0,0,21
+291985,0,0,0,21
+291986,0,0,0,21
+291987,0,0,0,21
+291988,0,0,0,21
+291989,0,0,0,21
+291990,0,0,0,21
+291991,0,0,0,21
+291992,0,0,0,21
+291993,0,0,0,21
+291994,0,0,0,21
+291995,0,0,0,21
+291996,0,0,0,21
+291997,0,0,0,21
+291998,0,0,0,21
+291999,0,0,0,21
+292000,0,0,0,21
+292001,0,0,0,21
+292002,0,0,0,21
+292003,0,0,0,21
+292004,0,0,0,21
+292005,0,0,0,21
+292006,0,0,0,21
+292007,0,0,0,21
+292008,0,0,0,21
+292009,0,0,0,21
+292010,0,0,0,21
+292011,0,366161.4223,658188.1855,21
+292012,0,0,0,21
+292013,0,0,0,21
+292014,0,0,0,21
+292015,332576.2455,0,0,21
+292016,0,0,0,21
+292017,0,0,0,21
+292018,0,0,0,21
+292019,0,0,0,21
+292020,0,0,0,21
+292021,0,0,0,21
+292022,0,0,0,21
+292023,0,0,0,21
+292024,0,0,0,21
+292025,0,0,0,21
+292026,0,0,0,21
+292027,0,0,0,21
+292028,0,0,0,21
+292029,0,0,0,21
+292030,0,0,0,21
+292031,0,0,0,21
+292032,0,0,0,21
+292033,0,0,0,21
+292034,0,0,0,21
+292035,0,0,0,21
+292036,0,0,0,21
+292037,0,0,0,21
+292038,0,0,0,21
+292039,0,0,0,21
+292040,0,0,0,21
+292041,0,0,0,21
+292042,0,0,0,21
+292043,0,0,0,21
+292044,0,0,0,21
+292045,0,0,0,21
+292046,0,366520.3421,658769.1825,21
+292047,0,0,0,21
+292048,0,0,0,21
+292049,0,0,0,21
+292050,0,0,0,21
+292051,332207.6914,0,0,21
+292052,0,0,0,21
+292053,0,0,0,21
+292054,0,0,0,21
+292055,0,0,0,21
+292056,0,0,0,21
+292057,0,0,0,21
+292058,0,0,0,21
+292059,0,0,0,21
+292060,0,0,0,21
+292061,0,0,0,21
+292062,0,0,0,21
+292063,0,0,0,21
+292064,0,0,0,21
+292065,0,0,0,21
+292066,0,0,0,21
+292067,0,0,0,21
+292068,0,0,0,21
+292069,0,0,0,21
+292070,0,0,0,21
+292071,0,0,0,21
+292072,0,0,0,21
+292073,0,0,0,21
+292074,0,0,0,21
+292075,0,0,0,21
+292076,0,0,0,21
+292077,0,0,0,21
+292078,0,0,0,21
+292079,0,0,0,21
+292080,0,0,0,21
+292081,0,366278.6264,658557.9056,21
+292082,0,0,0,21
+292083,0,0,0,21
+292084,0,0,0,21
+292085,0,0,0,21
+292086,0,0,0,21
+292087,334173.4836,0,0,21
+292088,0,0,0,21
+292089,0,0,0,21
+292090,0,0,0,21
+292091,0,0,0,21
+292092,0,0,0,21
+292093,0,0,0,21
+292094,0,0,0,21
+292095,0,0,0,21
+292096,0,0,0,21
+292097,0,0,0,21
+292098,0,0,0,21
+292099,0,0,0,21
+292100,0,0,0,21
+292101,0,0,0,21
+292102,0,0,0,21
+292103,0,0,0,21
+292104,0,0,0,21
+292105,0,0,0,21
+292106,0,0,0,21
+292107,0,0,0,21
+292108,0,0,0,21
+292109,0,0,0,21
+292110,0,0,0,21
+292111,0,0,0,21
+292112,0,0,0,21
+292113,0,0,0,21
+292114,0,0,0,21
+292115,0,0,0,21
+292116,0,366391.0639,659064.8584,21
+292117,0,0,0,21
+292118,0,0,0,21
+292119,0,0,0,21
+292120,0,0,0,21
+292121,0,0,0,21
+292122,0,0,0,21
+292123,335473.7199,0,0,21
+292124,0,0,0,21
+292125,0,0,0,21
+292126,0,0,0,21
+292127,0,0,0,21
+292128,0,0,0,21
+292129,0,0,0,21
+292130,0,0,0,21
+292131,0,0,0,21
+292132,0,0,0,21
+292133,0,0,0,21
+292134,0,0,0,21
+292135,0,0,0,21
+292136,0,0,0,21
+292137,0,0,0,21
+292138,0,0,0,21
+292139,0,0,0,21
+292140,0,0,0,21
+292141,0,0,0,21
+292142,0,0,0,21
+292143,0,0,0,21
+292144,0,0,0,21
+292145,0,0,0,21
+292146,0,0,0,21
+292147,0,0,0,21
+292148,0,0,0,21
+292149,0,0,0,21
+292150,0,0,0,21
+292151,0,366468.3256,658899.7718,21
+292152,0,0,0,21
+292153,0,0,0,21
+292154,0,0,0,21
+292155,0,0,0,21
+292156,0,0,0,21
+292157,0,0,0,21
+292158,0,0,0,21
+292159,336355.3112,0,0,21
+292160,0,0,0,21
+292161,0,0,0,21
+292162,0,0,0,21
+292163,0,0,0,21
+292164,0,0,0,21
+292165,0,0,0,21
+292166,0,0,0,21
+292167,0,0,0,21
+292168,0,0,0,21
+292169,0,0,0,21
+292170,0,0,0,21
+292171,0,0,0,21
+292172,0,0,0,21
+292173,0,0,0,21
+292174,0,0,0,21
+292175,0,0,0,21
+292176,0,0,0,21
+292177,0,0,0,21
+292178,0,0,0,21
+292179,0,0,0,21
+292180,0,0,0,21
+292181,0,0,0,21
+292182,0,0,0,21
+292183,0,0,0,21
+292184,0,0,0,21
+292185,0,0,0,21
+292186,0,367202.8061,658875.283,21
+292187,0,0,0,21
+292188,0,0,0,21
+292189,0,0,0,21
+292190,0,0,0,21
+292191,0,0,0,21
+292192,0,0,0,21
+292193,0,0,0,21
+292194,0,0,0,21
+292195,336984.9198,0,0,21
+292196,0,0,0,21
+292197,0,0,0,21
+292198,0,0,0,21
+292199,0,0,0,21
+292200,0,0,0,15.6
+292201,0,0,0,15.6
+292202,0,0,0,15.6
+292203,0,0,0,15.6
+292204,0,0,0,15.6
+292205,0,0,0,15.6
+292206,0,0,0,15.6
+292207,0,0,0,15.6
+292208,0,0,0,15.6
+292209,0,0,0,15.6
+292210,0,0,0,15.6
+292211,0,0,0,15.6
+292212,0,0,0,15.6
+292213,0,0,0,15.6
+292214,0,0,0,15.6
+292215,0,0,0,15.6
+292216,0,0,0,15.6
+292217,0,0,0,15.6
+292218,0,0,0,15.6
+292219,0,0,0,15.6
+292220,0,0,0,15.6
+292221,0,367559.7231,658386.3757,15.6
+292222,0,0,0,15.6
+292223,0,0,0,15.6
+292224,0,0,0,15.6
+292225,0,0,0,15.6
+292226,0,0,0,15.6
+292227,0,0,0,15.6
+292228,0,0,0,15.6
+292229,0,0,0,15.6
+292230,0,0,0,15.6
+292231,337469.5701,0,0,15.6
+292232,0,0,0,15.6
+292233,0,0,0,15.6
+292234,0,0,0,15.6
+292235,0,0,0,15.6
+292236,0,0,0,15.6
+292237,0,0,0,15.6
+292238,0,0,0,15.6
+292239,0,0,0,15.6
+292240,0,0,0,15.6
+292241,0,0,0,15.6
+292242,0,0,0,15.6
+292243,0,0,0,15.6
+292244,0,0,0,15.6
+292245,0,0,0,15.6
+292246,0,0,0,15.6
+292247,0,0,0,15.6
+292248,0,0,0,15.6
+292249,0,0,0,15.6
+292250,0,0,0,15.6
+292251,0,0,0,15.6
+292252,0,0,0,15.6
+292253,0,0,0,15.6
+292254,0,0,0,15.6
+292255,0,0,0,15.6
+292256,0,367760.9208,659011.668,15.6
+292257,0,0,0,15.6
+292258,0,0,0,15.6
+292259,0,0,0,15.6
+292260,0,0,0,15.6
+292261,0,0,0,15.6
+292262,0,0,0,15.6
+292263,0,0,0,15.6
+292264,0,0,0,15.6
+292265,0,0,0,15.6
+292266,0,0,0,15.6
+292267,337842.4375,0,0,15.6
+292268,0,0,0,15.6
+292269,0,0,0,15.6
+292270,0,0,0,15.6
+292271,0,0,0,15.6
+292272,0,0,0,15.6
+292273,0,0,0,15.6
+292274,0,0,0,15.6
+292275,0,0,0,15.6
+292276,0,0,0,15.6
+292277,0,0,0,15.6
+292278,0,0,0,15.6
+292279,0,0,0,15.6
+292280,0,0,0,15.6
+292281,0,0,0,15.6
+292282,0,0,0,15.6
+292283,0,0,0,15.6
+292284,0,0,0,15.6
+292285,0,0,0,15.6
+292286,0,0,0,15.6
+292287,0,0,0,15.6
+292288,0,0,0,15.6
+292289,0,0,0,15.6
+292290,0,0,0,15.6
+292291,0,367910.5327,658509.0283,15.6
+292292,0,0,0,15.6
+292293,0,0,0,15.6
+292294,0,0,0,15.6
+292295,0,0,0,15.6
+292296,0,0,0,15.6
+292297,0,0,0,15.6
+292298,0,0,0,15.6
+292299,0,0,0,15.6
+292300,0,0,0,15.6
+292301,0,0,0,15.6
+292302,0,0,0,15.6
+292303,338112.5909,0,0,15.6
+292304,0,0,0,15.6
+292305,0,0,0,15.6
+292306,0,0,0,15.6
+292307,0,0,0,15.6
+292308,0,0,0,15.6
+292309,0,0,0,15.6
+292310,0,0,0,15.6
+292311,0,0,0,15.6
+292312,0,0,0,15.6
+292313,0,0,0,15.6
+292314,0,0,0,15.6
+292315,0,0,0,15.6
+292316,0,0,0,15.6
+292317,0,0,0,15.6
+292318,0,0,0,15.6
+292319,0,0,0,15.6
+292320,0,0,0,15.6
+292321,0,0,0,15.6
+292322,0,0,0,15.6
+292323,0,0,0,15.6
+292324,0,0,0,15.6
+292325,0,0,0,15.6
+292326,0,0,658918.9968,15.6
+292327,0,367955.4103,0,15.6
+292328,0,0,0,15.6
+292329,0,0,0,15.6
+292330,0,0,0,15.6
+292331,0,0,0,15.6
+292332,0,0,0,15.6
+292333,0,0,0,15.6
+292334,0,0,0,15.6
+292335,0,0,0,15.6
+292336,0,0,0,15.6
+292337,0,0,0,15.6
+292338,0,0,0,15.6
+292339,338309.5849,0,0,15.6
+292340,0,0,0,15.6
+292341,0,0,0,15.6
+292342,0,0,0,15.6
+292343,0,0,0,15.6
+292344,0,0,0,15.6
+292345,0,0,0,15.6
+292346,0,0,0,15.6
+292347,0,0,0,15.6
+292348,0,0,0,15.6
+292349,0,0,0,15.6
+292350,0,0,0,15.6
+292351,0,0,0,15.6
+292352,0,0,0,15.6
+292353,0,0,0,15.6
+292354,0,0,0,15.6
+292355,0,0,0,15.6
+292356,0,0,0,15.6
+292357,0,0,0,15.6
+292358,0,0,0,15.6
+292359,0,0,0,15.6
+292360,0,0,0,15.6
+292361,0,0,658973.0362,15.6
+292362,0,0,0,15.6
+292363,0,368016.6835,0,15.6
+292364,0,0,0,15.6
+292365,0,0,0,15.6
+292366,0,0,0,15.6
+292367,0,0,0,15.6
+292368,0,0,0,15.6
+292369,0,0,0,15.6
+292370,0,0,0,15.6
+292371,0,0,0,15.6
+292372,0,0,0,15.6
+292373,0,0,0,15.6
+292374,0,0,0,15.6
+292375,338449.2227,0,0,15.6
+292376,0,0,0,15.6
+292377,0,0,0,15.6
+292378,0,0,0,15.6
+292379,0,0,0,15.6
+292380,0,0,0,15.6
+292381,0,0,0,15.6
+292382,0,0,0,15.6
+292383,0,0,0,15.6
+292384,0,0,0,15.6
+292385,0,0,0,15.6
+292386,0,0,0,15.6
+292387,0,0,0,15.6
+292388,0,0,0,15.6
+292389,0,0,0,15.6
+292390,0,0,0,15.6
+292391,0,0,0,15.6
+292392,0,0,0,15.6
+292393,0,0,0,15.6
+292394,0,0,0,15.6
+292395,0,0,0,15.6
+292396,0,0,658434.2825,15.6
+292397,0,0,0,15.6
+292398,0,0,0,15.6
+292399,0,368005.768,0,15.6
+292400,0,0,0,15.6
+292401,0,0,0,15.6
+292402,0,0,0,15.6
+292403,0,0,0,15.6
+292404,0,0,0,15.6
+292405,0,0,0,15.6
+292406,0,0,0,15.6
+292407,0,0,0,15.6
+292408,0,0,0,15.6
+292409,0,0,0,15.6
+292410,0,0,0,15.6
+292411,0,0,0,15.6
+292412,338526.233,0,0,15.6
+292413,0,0,0,15.6
+292414,0,0,0,15.6
+292415,0,0,0,15.6
+292416,0,0,0,15.6
+292417,0,0,0,15.6
+292418,0,0,0,15.6
+292419,0,0,0,15.6
+292420,0,0,0,15.6
+292421,0,0,0,15.6
+292422,0,0,0,15.6
+292423,0,0,0,15.6
+292424,0,0,0,15.6
+292425,0,0,0,15.6
+292426,0,0,0,15.6
+292427,0,0,0,15.6
+292428,0,0,0,15.6
+292429,0,0,0,15.6
+292430,0,0,658682.7051,15.6
+292431,0,0,0,15.6
+292432,0,0,0,15.6
+292433,0,0,0,15.6
+292434,0,0,0,15.6
+292435,0,369425.9228,0,15.6
+292436,0,0,0,15.6
+292437,0,0,0,15.6
+292438,0,0,0,15.6
+292439,0,0,0,15.6
+292440,0,0,0,15.6
+292441,0,0,0,15.6
+292442,0,0,0,15.6
+292443,0,0,0,15.6
+292444,0,0,0,15.6
+292445,0,0,0,15.6
+292446,0,0,0,15.6
+292447,0,0,0,15.6
+292448,0,0,0,15.6
+292449,338644.4912,0,0,15.6
+292450,0,0,0,15.6
+292451,0,0,0,15.6
+292452,0,0,0,15.6
+292453,0,0,0,15.6
+292454,0,0,0,15.6
+292455,0,0,0,15.6
+292456,0,0,0,15.6
+292457,0,0,0,15.6
+292458,0,0,0,15.6
+292459,0,0,0,15.6
+292460,0,0,0,15.6
+292461,0,0,0,15.6
+292462,0,0,0,15.6
+292463,0,0,0,15.6
+292464,0,0,657681.9355,15.6
+292465,0,0,0,15.6
+292466,0,0,0,15.6
+292467,0,0,0,15.6
+292468,0,0,0,15.6
+292469,0,0,0,15.6
+292470,0,0,0,15.6
+292471,0,369425.6573,0,15.6
+292472,0,0,0,15.6
+292473,0,0,0,15.6
+292474,0,0,0,15.6
+292475,0,0,0,15.6
+292476,0,0,0,15.6
+292477,0,0,0,15.6
+292478,0,0,0,15.6
+292479,0,0,0,15.6
+292480,0,0,0,15.6
+292481,0,0,0,15.6
+292482,0,0,0,15.6
+292483,0,0,0,15.6
+292484,0,0,0,15.6
+292485,0,0,0,15.6
+292486,338767.1104,0,0,15.6
+292487,0,0,0,15.6
+292488,0,0,0,15.6
+292489,0,0,0,15.6
+292490,0,0,0,15.6
+292491,0,0,0,15.6
+292492,0,0,0,15.6
+292493,0,0,0,15.6
+292494,0,0,0,15.6
+292495,0,0,0,15.6
+292496,0,0,0,15.6
+292497,0,0,0,15.6
+292498,0,0,658355.0372,15.6
+292499,0,0,0,15.6
+292500,0,0,0,15.6
+292501,0,0,0,15.6
+292502,0,0,0,15.6
+292503,0,0,0,15.6
+292504,0,0,0,15.6
+292505,0,0,0,15.6
+292506,0,0,0,15.6
+292507,0,369424.7898,0,15.6
+292508,0,0,0,15.6
+292509,0,0,0,15.6
+292510,0,0,0,15.6
+292511,0,0,0,15.6
+292512,0,0,0,15.6
+292513,0,0,0,15.6
+292514,0,0,0,15.6
+292515,0,0,0,15.6
+292516,0,0,0,15.6
+292517,0,0,0,15.6
+292518,0,0,0,15.6
+292519,0,0,0,15.6
+292520,0,0,0,15.6
+292521,337899.9279,0,0,15.6
+292522,0,0,0,15.6
+292523,0,0,0,15.6
+292524,0,0,0,15.6
+292525,0,0,0,15.6
+292526,0,0,0,15.6
+292527,0,0,0,15.6
+292528,0,0,0,15.6
+292529,0,0,0,15.6
+292530,0,0,0,15.6
+292531,0,0,0,15.6
+292532,0,0,658659.3055,15.6
+292533,0,0,0,15.6
+292534,0,0,0,15.6
+292535,0,0,0,15.6
+292536,0,0,0,15.6
+292537,0,0,0,15.6
+292538,0,0,0,15.6
+292539,0,0,0,15.6
+292540,0,0,0,15.6
+292541,0,369424.3768,0,15.6
+292542,0,0,0,15.6
+292543,0,0,0,15.6
+292544,0,0,0,15.6
+292545,0,0,0,15.6
+292546,0,0,0,15.6
+292547,0,0,0,15.6
+292548,0,0,0,15.6
+292549,0,0,0,15.6
+292550,0,0,0,15.6
+292551,0,0,0,15.6
+292552,0,0,0,15.6
+292553,0,0,0,15.6
+292554,0,0,0,15.6
+292555,0,0,0,15.6
+292556,335799.5423,0,0,15.6
+292557,0,0,0,15.6
+292558,0,0,0,15.6
+292559,0,0,0,15.6
+292560,0,0,0,17.8
+292561,0,0,0,17.8
+292562,0,0,0,17.8
+292563,0,0,0,17.8
+292564,0,0,0,17.8
+292565,0,0,0,17.8
+292566,0,0,657953.5417,17.8
+292567,0,0,0,17.8
+292568,0,0,0,17.8
+292569,0,0,0,17.8
+292570,0,0,0,17.8
+292571,0,0,0,17.8
+292572,0,0,0,17.8
+292573,0,0,0,17.8
+292574,0,0,0,17.8
+292575,0,369423.9609,0,17.8
+292576,0,0,0,17.8
+292577,0,0,0,17.8
+292578,0,0,0,17.8
+292579,0,0,0,17.8
+292580,0,0,0,17.8
+292581,0,0,0,17.8
+292582,0,0,0,17.8
+292583,0,0,0,17.8
+292584,0,0,0,17.8
+292585,0,0,0,17.8
+292586,0,0,0,17.8
+292587,0,0,0,17.8
+292588,0,0,0,17.8
+292589,0,0,0,17.8
+292590,0,0,0,17.8
+292591,337851.77,0,0,17.8
+292592,0,0,0,17.8
+292593,0,0,0,17.8
+292594,0,0,0,17.8
+292595,0,0,0,17.8
+292596,0,0,0,17.8
+292597,0,0,0,17.8
+292598,0,0,0,17.8
+292599,0,0,0,17.8
+292600,0,0,658269.2809,17.8
+292601,0,0,0,17.8
+292602,0,0,0,17.8
+292603,0,0,0,17.8
+292604,0,0,0,17.8
+292605,0,0,0,17.8
+292606,0,0,0,17.8
+292607,0,0,0,17.8
+292608,0,0,0,17.8
+292609,0,365776.835,0,17.8
+292610,0,0,0,17.8
+292611,0,0,0,17.8
+292612,0,0,0,17.8
+292613,0,0,0,17.8
+292614,0,0,0,17.8
+292615,0,0,0,17.8
+292616,0,0,0,17.8
+292617,0,0,0,17.8
+292618,0,0,0,17.8
+292619,0,0,0,17.8
+292620,0,0,0,20
+292621,0,0,0,20
+292622,0,0,0,20
+292623,0,0,0,20
+292624,0,0,0,20
+292625,0,0,0,20
+292626,338378.8389,0,0,20
+292627,0,0,0,20
+292628,0,0,0,20
+292629,0,0,0,20
+292630,0,0,0,20
+292631,0,0,0,20
+292632,0,0,0,20
+292633,0,0,0,20
+292634,0,0,0,20
+292635,0,0,658282.5505,20
+292636,0,0,0,20
+292637,0,0,0,20
+292638,0,0,0,20
+292639,0,0,0,20
+292640,0,0,0,20
+292641,0,0,0,20
+292642,0,0,0,20
+292643,0,0,0,20
+292644,0,0,0,20
+292645,0,366029.5197,0,20
+292646,0,0,0,20
+292647,0,0,0,20
+292648,0,0,0,20
+292649,0,0,0,20
+292650,0,0,0,20
+292651,0,0,0,20
+292652,0,0,0,20
+292653,0,0,0,20
+292654,0,0,0,20
+292655,0,0,0,20
+292656,0,0,0,20
+292657,0,0,0,20
+292658,0,0,0,20
+292659,0,0,0,20
+292660,0,0,0,20
+292661,0,0,0,20
+292662,0,0,0,20
+292663,337231.2487,0,0,20
+292664,0,0,0,20
+292665,0,0,0,20
+292666,0,0,0,20
+292667,0,0,0,20
+292668,0,0,0,20
+292669,0,0,0,20
+292670,0,0,658196.6033,20
+292671,0,0,0,20
+292672,0,0,0,20
+292673,0,0,0,20
+292674,0,0,0,20
+292675,0,0,0,20
+292676,0,0,0,20
+292677,0,0,0,20
+292678,0,0,0,20
+292679,0,0,0,20
+292680,0,0,0,21
+292681,0,365816.4948,0,21
+292682,0,0,0,21
+292683,0,0,0,21
+292684,0,0,0,21
+292685,0,0,0,21
+292686,0,0,0,21
+292687,0,0,0,21
+292688,0,0,0,21
+292689,0,0,0,21
+292690,0,0,0,21
+292691,0,0,0,21
+292692,0,0,0,21
+292693,0,0,0,21
+292694,0,0,0,21
+292695,0,0,0,21
+292696,0,0,0,21
+292697,0,0,0,21
+292698,0,0,0,21
+292699,335989.7954,0,0,21
+292700,0,0,0,21
+292701,0,0,0,21
+292702,0,0,0,21
+292703,0,0,0,21
+292704,0,0,658261.6269,21
+292705,0,0,0,21
+292706,0,0,0,21
+292707,0,0,0,21
+292708,0,0,0,21
+292709,0,0,0,21
+292710,0,0,0,21
+292711,0,0,0,21
+292712,0,0,0,21
+292713,0,0,0,21
+292714,0,0,0,21
+292715,0,0,0,21
+292716,0,0,0,21
+292717,0,366069.6041,0,21
+292718,0,0,0,21
+292719,0,0,0,21
+292720,0,0,0,21
+292721,0,0,0,21
+292722,0,0,0,21
+292723,0,0,0,21
+292724,0,0,0,21
+292725,0,0,0,21
+292726,0,0,0,21
+292727,0,0,0,21
+292728,0,0,0,21
+292729,0,0,0,21
+292730,0,0,0,21
+292731,0,0,0,21
+292732,0,0,0,21
+292733,0,0,0,21
+292734,0,0,0,21
+292735,337519.7449,0,0,21
+292736,0,0,0,21
+292737,0,0,0,21
+292738,0,0,658414.1541,21
+292739,0,0,0,21
+292740,0,0,0,21
+292741,0,0,0,21
+292742,0,0,0,21
+292743,0,0,0,21
+292744,0,0,0,21
+292745,0,0,0,21
+292746,0,0,0,21
+292747,0,0,0,21
+292748,0,0,0,21
+292749,0,0,0,21
+292750,0,0,0,21
+292751,0,0,0,21
+292752,0,0,0,21
+292753,0,365901.5983,0,21
+292754,0,0,0,21
+292755,0,0,0,21
+292756,0,0,0,21
+292757,0,0,0,21
+292758,0,0,0,21
+292759,0,0,0,21
+292760,0,0,0,21
+292761,0,0,0,21
+292762,0,0,0,21
+292763,0,0,0,21
+292764,0,0,0,21
+292765,0,0,0,21
+292766,0,0,0,21
+292767,0,0,0,21
+292768,0,0,0,21
+292769,0,0,0,21
+292770,0,0,0,21
+292771,338059.9416,0,0,21
+292772,0,0,0,21
+292773,0,0,658511.7572,21
+292774,0,0,0,21
+292775,0,0,0,21
+292776,0,0,0,21
+292777,0,0,0,21
+292778,0,0,0,21
+292779,0,0,0,21
+292780,0,0,0,21
+292781,0,0,0,21
+292782,0,0,0,21
+292783,0,0,0,21
+292784,0,0,0,21
+292785,0,0,0,21
+292786,0,0,0,21
+292787,0,0,0,21
+292788,0,366121.6302,0,21
+292789,0,0,0,21
+292790,0,0,0,21
+292791,0,0,0,21
+292792,0,0,0,21
+292793,0,0,0,21
+292794,0,0,0,21
+292795,0,0,0,21
+292796,0,0,0,21
+292797,0,0,0,21
+292798,0,0,0,21
+292799,0,0,0,21
+292800,0,0,0,21
+292801,0,0,0,21
+292802,0,0,0,21
+292803,0,0,0,21
+292804,0,0,0,21
+292805,0,0,0,21
+292806,0,0,0,21
+292807,336169.5283,0,0,21
+292808,0,0,658277.4599,21
+292809,0,0,0,21
+292810,0,0,0,21
+292811,0,0,0,21
+292812,0,0,0,21
+292813,0,0,0,21
+292814,0,0,0,21
+292815,0,0,0,21
+292816,0,0,0,21
+292817,0,0,0,21
+292818,0,0,0,21
+292819,0,0,0,21
+292820,0,0,0,21
+292821,0,0,0,21
+292822,0,0,0,21
+292823,0,366118.0093,0,21
+292824,0,0,0,21
+292825,0,0,0,21
+292826,0,0,0,21
+292827,0,0,0,21
+292828,0,0,0,21
+292829,0,0,0,21
+292830,0,0,0,21
+292831,0,0,0,21
+292832,0,0,0,21
+292833,0,0,0,21
+292834,0,0,0,21
+292835,0,0,0,21
+292836,0,0,0,21
+292837,0,0,0,21
+292838,0,0,0,21
+292839,0,0,0,21
+292840,0,0,0,21
+292841,0,0,0,21
+292842,0,0,0,21
+292843,335367.4136,0,657926.0206,21
+292844,0,0,0,21
+292845,0,0,0,21
+292846,0,0,0,21
+292847,0,0,0,21
+292848,0,0,0,21
+292849,0,0,0,21
+292850,0,0,0,21
+292851,0,0,0,21
+292852,0,0,0,21
+292853,0,0,0,21
+292854,0,0,0,21
+292855,0,0,0,21
+292856,0,0,0,21
+292857,0,0,0,21
+292858,0,366272.5576,0,21
+292859,0,0,0,21
+292860,0,0,0,21
+292861,0,0,0,21
+292862,0,0,0,21
+292863,0,0,0,21
+292864,0,0,0,21
+292865,0,0,0,21
+292866,0,0,0,21
+292867,0,0,0,21
+292868,0,0,0,21
+292869,0,0,0,21
+292870,0,0,0,21
+292871,0,0,0,21
+292872,0,0,0,21
+292873,0,0,0,21
+292874,0,0,0,21
+292875,0,0,0,21
+292876,0,0,0,21
+292877,0,0,0,21
+292878,0,0,657721.9897,21
+292879,335672.1991,0,0,21
+292880,0,0,0,21
+292881,0,0,0,21
+292882,0,0,0,21
+292883,0,0,0,21
+292884,0,0,0,21
+292885,0,0,0,21
+292886,0,0,0,21
+292887,0,0,0,21
+292888,0,0,0,21
+292889,0,0,0,21
+292890,0,0,0,21
+292891,0,0,0,21
+292892,0,0,0,21
+292893,0,366329.8283,0,21
+292894,0,0,0,21
+292895,0,0,0,21
+292896,0,0,0,21
+292897,0,0,0,21
+292898,0,0,0,21
+292899,0,0,0,21
+292900,0,0,0,21
+292901,0,0,0,21
+292902,0,0,0,21
+292903,0,0,0,21
+292904,0,0,0,21
+292905,0,0,0,21
+292906,0,0,0,21
+292907,0,0,0,21
+292908,0,0,0,21
+292909,0,0,0,21
+292910,0,0,0,21
+292911,0,0,0,21
+292912,0,0,0,21
+292913,0,0,657685.2494,21
+292914,0,0,0,21
+292915,336492.9061,0,0,21
+292916,0,0,0,21
+292917,0,0,0,21
+292918,0,0,0,21
+292919,0,0,0,21
+292920,0,0,0,21
+292921,0,0,0,21
+292922,0,0,0,21
+292923,0,0,0,21
+292924,0,0,0,21
+292925,0,0,0,21
+292926,0,0,0,21
+292927,0,0,0,21
+292928,0,0,0,21
+292929,0,366243.3846,0,21
+292930,0,0,0,21
+292931,0,0,0,21
+292932,0,0,0,21
+292933,0,0,0,21
+292934,0,0,0,21
+292935,0,0,0,21
+292936,0,0,0,21
+292937,0,0,0,21
+292938,0,0,0,21
+292939,0,0,0,21
+292940,0,0,0,21
+292941,0,0,0,21
+292942,0,0,0,21
+292943,0,0,0,21
+292944,0,0,0,21
+292945,0,0,0,21
+292946,0,0,0,21
+292947,0,0,0,21
+292948,0,0,657551.8843,21
+292949,0,0,0,21
+292950,0,0,0,21
+292951,335970.0275,0,0,21
+292952,0,0,0,21
+292953,0,0,0,21
+292954,0,0,0,21
+292955,0,0,0,21
+292956,0,0,0,21
+292957,0,0,0,21
+292958,0,0,0,21
+292959,0,0,0,21
+292960,0,0,0,21
+292961,0,0,0,21
+292962,0,0,0,21
+292963,0,0,0,21
+292964,0,0,0,21
+292965,0,366461.7801,0,21
+292966,0,0,0,21
+292967,0,0,0,21
+292968,0,0,0,21
+292969,0,0,0,21
+292970,0,0,0,21
+292971,0,0,0,21
+292972,0,0,0,21
+292973,0,0,0,21
+292974,0,0,0,21
+292975,0,0,0,21
+292976,0,0,0,21
+292977,0,0,0,21
+292978,0,0,0,21
+292979,0,0,0,21
+292980,0,0,0,21
+292981,0,0,0,21
+292982,0,0,0,21
+292983,0,0,656754.391,21
+292984,0,0,0,21
+292985,0,0,0,21
+292986,0,0,0,21
+292987,336205.0757,0,0,21
+292988,0,0,0,21
+292989,0,0,0,21
+292990,0,0,0,21
+292991,0,0,0,21
+292992,0,0,0,21
+292993,0,0,0,21
+292994,0,0,0,21
+292995,0,0,0,21
+292996,0,0,0,21
+292997,0,0,0,21
+292998,0,0,0,21
+292999,0,0,0,21
+293000,0,0,0,21
+293001,0,366294.597,0,21
+293002,0,0,0,21
+293003,0,0,0,21
+293004,0,0,0,21
+293005,0,0,0,21
+293006,0,0,0,21
+293007,0,0,0,21
+293008,0,0,0,21
+293009,0,0,0,21
+293010,0,0,0,21
+293011,0,0,0,21
+293012,0,0,0,21
+293013,0,0,0,21
+293014,0,0,0,21
+293015,0,0,0,21
+293016,0,0,0,21
+293017,0,0,0,21
+293018,0,0,656155.1478,21
+293019,0,0,0,21
+293020,0,0,0,21
+293021,0,0,0,21
+293022,0,0,0,21
+293023,336309.9462,0,0,21
+293024,0,0,0,21
+293025,0,0,0,21
+293026,0,0,0,21
+293027,0,0,0,21
+293028,0,0,0,21
+293029,0,0,0,21
+293030,0,0,0,21
+293031,0,0,0,21
+293032,0,0,0,21
+293033,0,0,0,21
+293034,0,0,0,21
+293035,0,0,0,21
+293036,0,0,0,21
+293037,0,366593.0239,0,21
+293038,0,0,0,21
+293039,0,0,0,21
+293040,0,0,0,21
+293041,0,0,0,21
+293042,0,0,0,21
+293043,0,0,0,21
+293044,0,0,0,21
+293045,0,0,0,21
+293046,0,0,0,21
+293047,0,0,0,21
+293048,0,0,0,21
+293049,0,0,0,21
+293050,0,0,0,21
+293051,0,0,0,21
+293052,0,0,0,21
+293053,0,0,656142.8845,21
+293054,0,0,0,21
+293055,0,0,0,21
+293056,0,0,0,21
+293057,0,0,0,21
+293058,0,0,0,21
+293059,0,0,0,21
+293060,335982.5732,0,0,21
+293061,0,0,0,21
+293062,0,0,0,21
+293063,0,0,0,21
+293064,0,0,0,21
+293065,0,0,0,21
+293066,0,0,0,21
+293067,0,0,0,21
+293068,0,0,0,21
+293069,0,0,0,21
+293070,0,0,0,21
+293071,0,0,0,21
+293072,0,0,0,21
+293073,0,366744.1516,0,21
+293074,0,0,0,21
+293075,0,0,0,21
+293076,0,0,0,21
+293077,0,0,0,21
+293078,0,0,0,21
+293079,0,0,0,21
+293080,0,0,0,21
+293081,0,0,0,21
+293082,0,0,0,21
+293083,0,0,0,21
+293084,0,0,0,21
+293085,0,0,0,21
+293086,0,0,0,21
+293087,0,0,0,21
+293088,0,0,656041.8853,21
+293089,0,0,0,21
+293090,0,0,0,21
+293091,0,0,0,21
+293092,0,0,0,21
+293093,0,0,0,21
+293094,0,0,0,21
+293095,0,0,0,21
+293096,0,0,0,21
+293097,335879.7561,0,0,21
+293098,0,0,0,21
+293099,0,0,0,21
+293100,0,0,0,21
+293101,0,0,0,21
+293102,0,0,0,21
+293103,0,0,0,21
+293104,0,0,0,21
+293105,0,0,0,21
+293106,0,0,0,21
+293107,0,0,0,21
+293108,0,0,0,21
+293109,0,367124.3124,0,21
+293110,0,0,0,21
+293111,0,0,0,21
+293112,0,0,0,21
+293113,0,0,0,21
+293114,0,0,0,21
+293115,0,0,0,21
+293116,0,0,0,21
+293117,0,0,0,21
+293118,0,0,0,21
+293119,0,0,0,21
+293120,0,0,0,21
+293121,0,0,0,21
+293122,0,0,0,21
+293123,0,0,656106.228,21
+293124,0,0,0,21
+293125,0,0,0,21
+293126,0,0,0,21
+293127,0,0,0,21
+293128,0,0,0,21
+293129,0,0,0,21
+293130,0,0,0,21
+293131,0,0,0,21
+293132,0,0,0,21
+293133,0,0,0,21
+293134,335622.5547,0,0,21
+293135,0,0,0,21
+293136,0,0,0,21
+293137,0,0,0,21
+293138,0,0,0,21
+293139,0,0,0,21
+293140,0,0,0,21
+293141,0,0,0,21
+293142,0,0,0,21
+293143,0,0,0,21
+293144,0,0,0,21
+293145,0,367150.5343,0,21
+293146,0,0,0,21
+293147,0,0,0,21
+293148,0,0,0,21
+293149,0,0,0,21
+293150,0,0,0,21
+293151,0,0,0,21
+293152,0,0,0,21
+293153,0,0,0,21
+293154,0,0,0,21
+293155,0,0,0,21
+293156,0,0,0,21
+293157,0,0,0,21
+293158,0,0,656348.8218,21
+293159,0,0,0,21
+293160,0,0,0,21
+293161,0,0,0,21
+293162,0,0,0,21
+293163,0,0,0,21
+293164,0,0,0,21
+293165,0,0,0,21
+293166,0,0,0,21
+293167,0,0,0,21
+293168,0,0,0,21
+293169,0,0,0,21
+293170,335778.7985,0,0,21
+293171,0,0,0,21
+293172,0,0,0,21
+293173,0,0,0,21
+293174,0,0,0,21
+293175,0,0,0,21
+293176,0,0,0,21
+293177,0,0,0,21
+293178,0,0,0,21
+293179,0,0,0,21
+293180,0,0,0,21
+293181,0,366486.7458,0,21
+293182,0,0,0,21
+293183,0,0,0,21
+293184,0,0,0,21
+293185,0,0,0,21
+293186,0,0,0,21
+293187,0,0,0,21
+293188,0,0,0,21
+293189,0,0,0,21
+293190,0,0,0,21
+293191,0,0,0,21
+293192,0,0,0,21
+293193,0,0,656497.8295,21
+293194,0,0,0,21
+293195,0,0,0,21
+293196,0,0,0,21
+293197,0,0,0,21
+293198,0,0,0,21
+293199,0,0,0,21
+293200,0,0,0,21
+293201,0,0,0,21
+293202,0,0,0,21
+293203,0,0,0,21
+293204,0,0,0,21
+293205,0,0,0,21
+293206,335994.5391,0,0,21
+293207,0,0,0,21
+293208,0,0,0,21
+293209,0,0,0,21
+293210,0,0,0,21
+293211,0,0,0,21
+293212,0,0,0,21
+293213,0,0,0,21
+293214,0,0,0,21
+293215,0,0,0,21
+293216,0,0,0,21
+293217,0,366767.449,0,21
+293218,0,0,0,21
+293219,0,0,0,21
+293220,0,0,0,21
+293221,0,0,0,21
+293222,0,0,0,21
+293223,0,0,0,21
+293224,0,0,0,21
+293225,0,0,0,21
+293226,0,0,0,21
+293227,0,0,0,21
+293228,0,0,656623.2027,21
+293229,0,0,0,21
+293230,0,0,0,21
+293231,0,0,0,21
+293232,0,0,0,21
+293233,0,0,0,21
+293234,0,0,0,21
+293235,0,0,0,21
+293236,0,0,0,21
+293237,0,0,0,21
+293238,0,0,0,21
+293239,0,0,0,21
+293240,0,0,0,21
+293241,0,0,0,21
+293242,335658.9757,0,0,21
+293243,0,0,0,21
+293244,0,0,0,21
+293245,0,0,0,21
+293246,0,0,0,21
+293247,0,0,0,21
+293248,0,0,0,21
+293249,0,0,0,21
+293250,0,0,0,21
+293251,0,0,0,21
+293252,0,0,0,21
+293253,0,366504.1215,0,21
+293254,0,0,0,21
+293255,0,0,0,21
+293256,0,0,0,21
+293257,0,0,0,21
+293258,0,0,0,21
+293259,0,0,0,21
+293260,0,0,0,21
+293261,0,0,0,21
+293262,0,0,0,21
+293263,0,0,656652.3517,21
+293264,0,0,0,21
+293265,0,0,0,21
+293266,0,0,0,21
+293267,0,0,0,21
+293268,0,0,0,21
+293269,0,0,0,21
+293270,0,0,0,21
+293271,0,0,0,21
+293272,0,0,0,21
+293273,0,0,0,21
+293274,0,0,0,21
+293275,0,0,0,21
+293276,0,0,0,21
+293277,0,0,0,21
+293278,335693.4019,0,0,21
+293279,0,0,0,21
+293280,0,0,0,21
+293281,0,0,0,21
+293282,0,0,0,21
+293283,0,0,0,21
+293284,0,0,0,21
+293285,0,0,0,21
+293286,0,0,0,21
+293287,0,0,0,21
+293288,0,366484.929,0,21
+293289,0,0,0,21
+293290,0,0,0,21
+293291,0,0,0,21
+293292,0,0,0,21
+293293,0,0,0,21
+293294,0,0,0,21
+293295,0,0,0,21
+293296,0,0,0,21
+293297,0,0,0,21
+293298,0,0,656704.7887,21
+293299,0,0,0,21
+293300,0,0,0,21
+293301,0,0,0,21
+293302,0,0,0,21
+293303,0,0,0,21
+293304,0,0,0,21
+293305,0,0,0,21
+293306,0,0,0,21
+293307,0,0,0,21
+293308,0,0,0,21
+293309,0,0,0,21
+293310,0,0,0,21
+293311,0,0,0,21
+293312,0,0,0,21
+293313,0,0,0,21
+293314,335579.2915,0,0,21
+293315,0,0,0,21
+293316,0,0,0,21
+293317,0,0,0,21
+293318,0,0,0,21
+293319,0,0,0,21
+293320,0,0,0,21
+293321,0,0,0,21
+293322,0,0,0,21
+293323,0,366414.6079,0,21
+293324,0,0,0,21
+293325,0,0,0,21
+293326,0,0,0,21
+293327,0,0,0,21
+293328,0,0,0,21
+293329,0,0,0,21
+293330,0,0,0,21
+293331,0,0,0,21
+293332,0,0,0,21
+293333,0,0,656890.5529,21
+293334,0,0,0,21
+293335,0,0,0,21
+293336,0,0,0,21
+293337,0,0,0,21
+293338,0,0,0,21
+293339,0,0,0,21
+293340,0,0,0,21
+293341,0,0,0,21
+293342,0,0,0,21
+293343,0,0,0,21
+293344,0,0,0,21
+293345,0,0,0,21
+293346,0,0,0,21
+293347,0,0,0,21
+293348,0,0,0,21
+293349,0,0,0,21
+293350,335596.1688,0,0,21
+293351,0,0,0,21
+293352,0,0,0,21
+293353,0,0,0,21
+293354,0,0,0,21
+293355,0,0,0,21
+293356,0,0,0,21
+293357,0,0,0,21
+293358,0,365978.17,0,21
+293359,0,0,0,21
+293360,0,0,0,21
+293361,0,0,0,21
+293362,0,0,0,21
+293363,0,0,0,21
+293364,0,0,0,21
+293365,0,0,0,21
+293366,0,0,0,21
+293367,0,0,0,21
+293368,0,0,657285.7531,21
+293369,0,0,0,21
+293370,0,0,0,21
+293371,0,0,0,21
+293372,0,0,0,21
+293373,0,0,0,21
+293374,0,0,0,21
+293375,0,0,0,21
+293376,0,0,0,21
+293377,0,0,0,21
+293378,0,0,0,21
+293379,0,0,0,21
+293380,0,0,0,21
+293381,0,0,0,21
+293382,0,0,0,21
+293383,0,0,0,21
+293384,0,0,0,21
+293385,0,0,0,21
+293386,335507.8116,0,0,21
+293387,0,0,0,21
+293388,0,0,0,21
+293389,0,0,0,21
+293390,0,0,0,21
+293391,0,0,0,21
+293392,0,0,0,21
+293393,0,366329.8422,0,21
+293394,0,0,0,21
+293395,0,0,0,21
+293396,0,0,0,21
+293397,0,0,0,21
+293398,0,0,0,21
+293399,0,0,0,21
+293400,0,0,0,21
+293401,0,0,0,21
+293402,0,0,0,21
+293403,0,0,657721.604,21
+293404,0,0,0,21
+293405,0,0,0,21
+293406,0,0,0,21
+293407,0,0,0,21
+293408,0,0,0,21
+293409,0,0,0,21
+293410,0,0,0,21
+293411,0,0,0,21
+293412,0,0,0,21
+293413,0,0,0,21
+293414,0,0,0,21
+293415,0,0,0,21
+293416,0,0,0,21
+293417,0,0,0,21
+293418,0,0,0,21
+293419,0,0,0,21
+293420,0,0,0,21
+293421,0,0,0,21
+293422,335528.1597,0,0,21
+293423,0,0,0,21
+293424,0,0,0,21
+293425,0,0,0,21
+293426,0,0,0,21
+293427,0,0,0,21
+293428,0,366419.518,0,21
+293429,0,0,0,21
+293430,0,0,0,21
+293431,0,0,0,21
+293432,0,0,0,21
+293433,0,0,0,21
+293434,0,0,0,21
+293435,0,0,0,21
+293436,0,0,0,21
+293437,0,0,0,21
+293438,0,0,657666.5496,21
+293439,0,0,0,21
+293440,0,0,0,21
+293441,0,0,0,21
+293442,0,0,0,21
+293443,0,0,0,21
+293444,0,0,0,21
+293445,0,0,0,21
+293446,0,0,0,21
+293447,0,0,0,21
+293448,0,0,0,21
+293449,0,0,0,21
+293450,0,0,0,21
+293451,0,0,0,21
+293452,0,0,0,21
+293453,0,0,0,21
+293454,0,0,0,21
+293455,0,0,0,21
+293456,0,0,0,21
+293457,0,0,0,21
+293458,335690.8913,0,0,21
+293459,0,0,0,21
+293460,0,0,0,21
+293461,0,0,0,21
+293462,0,0,0,21
+293463,0,365460.7571,0,21
+293464,0,0,0,21
+293465,0,0,0,21
+293466,0,0,0,21
+293467,0,0,0,21
+293468,0,0,0,21
+293469,0,0,0,21
+293470,0,0,0,21
+293471,0,0,0,21
+293472,0,0,0,21
+293473,0,0,658601.6442,21
+293474,0,0,0,21
+293475,0,0,0,21
+293476,0,0,0,21
+293477,0,0,0,21
+293478,0,0,0,21
+293479,0,0,0,21
+293480,0,0,0,21
+293481,0,0,0,21
+293482,0,0,0,21
+293483,0,0,0,21
+293484,0,0,0,21
+293485,0,0,0,21
+293486,0,0,0,21
+293487,0,0,0,21
+293488,0,0,0,21
+293489,0,0,0,21
+293490,0,0,0,21
+293491,0,0,0,21
+293492,0,0,0,21
+293493,0,0,0,21
+293494,335696.2395,0,0,21
+293495,0,0,0,21
+293496,0,0,0,21
+293497,0,0,0,21
+293498,0,365708.6477,0,21
+293499,0,0,0,21
+293500,0,0,0,21
+293501,0,0,0,21
+293502,0,0,0,21
+293503,0,0,0,21
+293504,0,0,0,21
+293505,0,0,0,21
+293506,0,0,0,21
+293507,0,0,0,21
+293508,0,0,659155.18,21
+293509,0,0,0,21
+293510,0,0,0,21
+293511,0,0,0,21
+293512,0,0,0,21
+293513,0,0,0,21
+293514,0,0,0,21
+293515,0,0,0,21
+293516,0,0,0,21
+293517,0,0,0,21
+293518,0,0,0,21
+293519,0,0,0,21
+293520,0,0,0,21
+293521,0,0,0,21
+293522,0,0,0,21
+293523,0,0,0,21
+293524,0,0,0,21
+293525,0,0,0,21
+293526,0,0,0,21
+293527,0,0,0,21
+293528,0,0,0,21
+293529,0,0,0,21
+293530,0,0,0,21
+293531,335683.2668,0,0,21
+293532,0,0,0,21
+293533,0,0,0,21
+293534,0,366219.7902,0,21
+293535,0,0,0,21
+293536,0,0,0,21
+293537,0,0,0,21
+293538,0,0,0,21
+293539,0,0,0,21
+293540,0,0,0,21
+293541,0,0,0,21
+293542,0,0,0,21
+293543,0,0,659523.2815,21
+293544,0,0,0,21
+293545,0,0,0,21
+293546,0,0,0,21
+293547,0,0,0,21
+293548,0,0,0,21
+293549,0,0,0,21
+293550,0,0,0,21
+293551,0,0,0,21
+293552,0,0,0,21
+293553,0,0,0,21
+293554,0,0,0,21
+293555,0,0,0,21
+293556,0,0,0,21
+293557,0,0,0,21
+293558,0,0,0,21
+293559,0,0,0,21
+293560,0,0,0,21
+293561,0,0,0,21
+293562,0,0,0,21
+293563,0,0,0,21
+293564,0,0,0,21
+293565,0,0,0,21
+293566,0,0,0,21
+293567,0,0,0,21
+293568,337228.7118,0,0,21
+293569,0,0,0,21
+293570,0,366970.9828,0,21
+293571,0,0,0,21
+293572,0,0,0,21
+293573,0,0,0,21
+293574,0,0,0,21
+293575,0,0,0,21
+293576,0,0,0,21
+293577,0,0,0,21
+293578,0,0,659596.9624,21
+293579,0,0,0,21
+293580,0,0,0,21
+293581,0,0,0,21
+293582,0,0,0,21
+293583,0,0,0,21
+293584,0,0,0,21
+293585,0,0,0,21
+293586,0,0,0,21
+293587,0,0,0,21
+293588,0,0,0,21
+293589,0,0,0,21
+293590,0,0,0,21
+293591,0,0,0,21
+293592,0,0,0,21
+293593,0,0,0,21
+293594,0,0,0,21
+293595,0,0,0,21
+293596,0,0,0,21
+293597,0,0,0,21
+293598,0,0,0,21
+293599,0,0,0,21
+293600,0,0,0,21
+293601,0,0,0,21
+293602,0,0,0,21
+293603,0,0,0,21
+293604,336021.2384,0,0,21
+293605,0,0,0,21
+293606,0,367465.0827,0,21
+293607,0,0,0,21
+293608,0,0,0,21
+293609,0,0,0,21
+293610,0,0,0,21
+293611,0,0,0,21
+293612,0,0,0,21
+293613,0,0,660041.4938,21
+293614,0,0,0,21
+293615,0,0,0,21
+293616,0,0,0,21
+293617,0,0,0,21
+293618,0,0,0,21
+293619,0,0,0,21
+293620,0,0,0,21
+293621,0,0,0,21
+293622,0,0,0,21
+293623,0,0,0,21
+293624,0,0,0,21
+293625,0,0,0,21
+293626,0,0,0,21
+293627,0,0,0,21
+293628,0,0,0,21
+293629,0,0,0,21
+293630,0,0,0,21
+293631,0,0,0,21
+293632,0,0,0,21
+293633,0,0,0,21
+293634,0,0,0,21
+293635,0,0,0,21
+293636,0,0,0,21
+293637,0,0,0,21
+293638,0,0,0,21
+293639,0,0,0,21
+293640,337164.5525,0,0,15.6
+293641,0,0,0,15.6
+293642,0,367706.9185,0,15.6
+293643,0,0,0,15.6
+293644,0,0,0,15.6
+293645,0,0,0,15.6
+293646,0,0,0,15.6
+293647,0,0,0,15.6
+293648,0,0,659885.1775,15.6
+293649,0,0,0,15.6
+293650,0,0,0,15.6
+293651,0,0,0,15.6
+293652,0,0,0,15.6
+293653,0,0,0,15.6
+293654,0,0,0,15.6
+293655,0,0,0,15.6
+293656,0,0,0,15.6
+293657,0,0,0,15.6
+293658,0,0,0,15.6
+293659,0,0,0,15.6
+293660,0,0,0,15.6
+293661,0,0,0,15.6
+293662,0,0,0,15.6
+293663,0,0,0,15.6
+293664,0,0,0,15.6
+293665,0,0,0,15.6
+293666,0,0,0,15.6
+293667,0,0,0,15.6
+293668,0,0,0,15.6
+293669,0,0,0,15.6
+293670,0,0,0,15.6
+293671,0,0,0,15.6
+293672,0,0,0,15.6
+293673,0,0,0,15.6
+293674,0,0,0,15.6
+293675,0,0,0,15.6
+293676,337920.1342,0,0,15.6
+293677,0,0,0,15.6
+293678,0,367867.608,0,15.6
+293679,0,0,0,15.6
+293680,0,0,0,15.6
+293681,0,0,0,15.6
+293682,0,0,0,15.6
+293683,0,0,660476.6494,15.6
+293684,0,0,0,15.6
+293685,0,0,0,15.6
+293686,0,0,0,15.6
+293687,0,0,0,15.6
+293688,0,0,0,15.6
+293689,0,0,0,15.6
+293690,0,0,0,15.6
+293691,0,0,0,15.6
+293692,0,0,0,15.6
+293693,0,0,0,15.6
+293694,0,0,0,15.6
+293695,0,0,0,15.6
+293696,0,0,0,15.6
+293697,0,0,0,15.6
+293698,0,0,0,15.6
+293699,0,0,0,15.6
+293700,0,0,0,15.6
+293701,0,0,0,15.6
+293702,0,0,0,15.6
+293703,0,0,0,15.6
+293704,0,0,0,15.6
+293705,0,0,0,15.6
+293706,0,0,0,15.6
+293707,0,0,0,15.6
+293708,0,0,0,15.6
+293709,0,0,0,15.6
+293710,0,0,0,15.6
+293711,338337.4607,0,0,15.6
+293712,0,0,0,15.6
+293713,0,367944.7857,0,15.6
+293714,0,0,0,15.6
+293715,0,0,0,15.6
+293716,0,0,0,15.6
+293717,0,0,660939.6946,15.6
+293718,0,0,0,15.6
+293719,0,0,0,15.6
+293720,0,0,0,15.6
+293721,0,0,0,15.6
+293722,0,0,0,15.6
+293723,0,0,0,15.6
+293724,0,0,0,15.6
+293725,0,0,0,15.6
+293726,0,0,0,15.6
+293727,0,0,0,15.6
+293728,0,0,0,15.6
+293729,0,0,0,15.6
+293730,0,0,0,15.6
+293731,0,0,0,15.6
+293732,0,0,0,15.6
+293733,0,0,0,15.6
+293734,0,0,0,15.6
+293735,0,0,0,15.6
+293736,0,0,0,15.6
+293737,0,0,0,15.6
+293738,0,0,0,15.6
+293739,0,0,0,15.6
+293740,0,0,0,15.6
+293741,0,0,0,15.6
+293742,0,0,0,15.6
+293743,0,0,0,15.6
+293744,0,0,0,15.6
+293745,0,0,0,15.6
+293746,338611.7301,0,0,15.6
+293747,0,0,0,15.6
+293748,0,367941.4188,0,15.6
+293749,0,0,0,15.6
+293750,0,0,0,15.6
+293751,0,0,661354.1308,15.6
+293752,0,0,0,15.6
+293753,0,0,0,15.6
+293754,0,0,0,15.6
+293755,0,0,0,15.6
+293756,0,0,0,15.6
+293757,0,0,0,15.6
+293758,0,0,0,15.6
+293759,0,0,0,15.6
+293760,0,0,0,15.6
+293761,0,0,0,15.6
+293762,0,0,0,15.6
+293763,0,0,0,15.6
+293764,0,0,0,15.6
+293765,0,0,0,15.6
+293766,0,0,0,15.6
+293767,0,0,0,15.6
+293768,0,0,0,15.6
+293769,0,0,0,15.6
+293770,0,0,0,15.6
+293771,0,0,0,15.6
+293772,0,0,0,15.6
+293773,0,0,0,15.6
+293774,0,0,0,15.6
+293775,0,0,0,15.6
+293776,0,0,0,15.6
+293777,0,0,0,15.6
+293778,0,0,0,15.6
+293779,0,0,0,15.6
+293780,0,0,0,15.6
+293781,338797.9094,0,0,15.6
+293782,0,0,0,15.6
+293783,0,367991.7248,0,15.6
+293784,0,0,0,15.6
+293785,0,0,660961.5505,15.6
+293786,0,0,0,15.6
+293787,0,0,0,15.6
+293788,0,0,0,15.6
+293789,0,0,0,15.6
+293790,0,0,0,15.6
+293791,0,0,0,15.6
+293792,0,0,0,15.6
+293793,0,0,0,15.6
+293794,0,0,0,15.6
+293795,0,0,0,15.6
+293796,0,0,0,15.6
+293797,0,0,0,15.6
+293798,0,0,0,15.6
+293799,0,0,0,15.6
+293800,0,0,0,15.6
+293801,0,0,0,15.6
+293802,0,0,0,15.6
+293803,0,0,0,15.6
+293804,0,0,0,15.6
+293805,0,0,0,15.6
+293806,0,0,0,15.6
+293807,0,0,0,15.6
+293808,0,0,0,15.6
+293809,0,0,0,15.6
+293810,0,0,0,15.6
+293811,0,0,0,15.6
+293812,0,0,0,15.6
+293813,0,0,0,15.6
+293814,0,0,0,15.6
+293815,0,0,0,15.6
+293816,338911.2235,0,0,15.6
+293817,0,0,0,15.6
+293818,0,368063.649,0,15.6
+293819,0,0,661913.3699,15.6
+293820,0,0,0,15.6
+293821,0,0,0,15.6
+293822,0,0,0,15.6
+293823,0,0,0,15.6
+293824,0,0,0,15.6
+293825,0,0,0,15.6
+293826,0,0,0,15.6
+293827,0,0,0,15.6
+293828,0,0,0,15.6
+293829,0,0,0,15.6
+293830,0,0,0,15.6
+293831,0,0,0,15.6
+293832,0,0,0,15.6
+293833,0,0,0,15.6
+293834,0,0,0,15.6
+293835,0,0,0,15.6
+293836,0,0,0,15.6
+293837,0,0,0,15.6
+293838,0,0,0,15.6
+293839,0,0,0,15.6
+293840,0,0,0,15.6
+293841,0,0,0,15.6
+293842,0,0,0,15.6
+293843,0,0,0,15.6
+293844,0,0,0,15.6
+293845,0,0,0,15.6
+293846,0,0,0,15.6
+293847,0,0,0,15.6
+293848,0,0,0,15.6
+293849,0,0,0,15.6
+293850,0,0,0,15.6
+293851,338987.7306,0,0,15.6
+293852,0,0,0,15.6
+293853,0,368064.3047,660768.2893,15.6
+293854,0,0,0,15.6
+293855,0,0,0,15.6
+293856,0,0,0,15.6
+293857,0,0,0,15.6
+293858,0,0,0,15.6
+293859,0,0,0,15.6
+293860,0,0,0,15.6
+293861,0,0,0,15.6
+293862,0,0,0,15.6
+293863,0,0,0,15.6
+293864,0,0,0,15.6
+293865,0,0,0,15.6
+293866,0,0,0,15.6
+293867,0,0,0,15.6
+293868,0,0,0,15.6
+293869,0,0,0,15.6
+293870,0,0,0,15.6
+293871,0,0,0,15.6
+293872,0,0,0,15.6
+293873,0,0,0,15.6
+293874,0,0,0,15.6
+293875,0,0,0,15.6
+293876,0,0,0,15.6
+293877,0,0,0,15.6
+293878,0,0,0,15.6
+293879,0,0,0,15.6
+293880,0,0,0,15.6
+293881,0,0,0,15.6
+293882,0,0,0,15.6
+293883,0,0,0,15.6
+293884,0,0,0,15.6
+293885,0,0,0,15.6
+293886,339024.1508,0,0,15.6
+293887,0,0,661452.9455,15.6
+293888,0,368036.6297,0,15.6
+293889,0,0,0,15.6
+293890,0,0,0,15.6
+293891,0,0,0,15.6
+293892,0,0,0,15.6
+293893,0,0,0,15.6
+293894,0,0,0,15.6
+293895,0,0,0,15.6
+293896,0,0,0,15.6
+293897,0,0,0,15.6
+293898,0,0,0,15.6
+293899,0,0,0,15.6
+293900,0,0,0,15.6
+293901,0,0,0,15.6
+293902,0,0,0,15.6
+293903,0,0,0,15.6
+293904,0,0,0,15.6
+293905,0,0,0,15.6
+293906,0,0,0,15.6
+293907,0,0,0,15.6
+293908,0,0,0,15.6
+293909,0,0,0,15.6
+293910,0,0,0,15.6
+293911,0,0,0,15.6
+293912,0,0,0,15.6
+293913,0,0,0,15.6
+293914,0,0,0,15.6
+293915,0,0,0,15.6
+293916,0,0,0,15.6
+293917,0,0,0,15.6
+293918,0,0,0,15.6
+293919,0,0,0,15.6
+293920,0,0,0,15.6
+293921,339087.201,0,661669.3943,15.6
+293922,0,0,0,15.6
+293923,0,368101.7572,0,15.6
+293924,0,0,0,15.6
+293925,0,0,0,15.6
+293926,0,0,0,15.6
+293927,0,0,0,15.6
+293928,0,0,0,15.6
+293929,0,0,0,15.6
+293930,0,0,0,15.6
+293931,0,0,0,15.6
+293932,0,0,0,15.6
+293933,0,0,0,15.6
+293934,0,0,0,15.6
+293935,0,0,0,15.6
+293936,0,0,0,15.6
+293937,0,0,0,15.6
+293938,0,0,0,15.6
+293939,0,0,0,15.6
+293940,0,0,0,15.6
+293941,0,0,0,15.6
+293942,0,0,0,15.6
+293943,0,0,0,15.6
+293944,0,0,0,15.6
+293945,0,0,0,15.6
+293946,0,0,0,15.6
+293947,0,0,0,15.6
+293948,0,0,0,15.6
+293949,0,0,0,15.6
+293950,0,0,0,15.6
+293951,0,0,0,15.6
+293952,0,0,0,15.6
+293953,0,0,0,15.6
+293954,0,0,0,15.6
+293955,0,0,661926.8535,15.6
+293956,339141.0962,0,0,15.6
+293957,0,0,0,15.6
+293958,0,368126.9213,0,15.6
+293959,0,0,0,15.6
+293960,0,0,0,15.6
+293961,0,0,0,15.6
+293962,0,0,0,15.6
+293963,0,0,0,15.6
+293964,0,0,0,15.6
+293965,0,0,0,15.6
+293966,0,0,0,15.6
+293967,0,0,0,15.6
+293968,0,0,0,15.6
+293969,0,0,0,15.6
+293970,0,0,0,15.6
+293971,0,0,0,15.6
+293972,0,0,0,15.6
+293973,0,0,0,15.6
+293974,0,0,0,15.6
+293975,0,0,0,15.6
+293976,0,0,0,15.6
+293977,0,0,0,15.6
+293978,0,0,0,15.6
+293979,0,0,0,15.6
+293980,0,0,0,15.6
+293981,0,0,0,15.6
+293982,0,0,0,15.6
+293983,0,0,0,15.6
+293984,0,0,0,15.6
+293985,0,0,0,15.6
+293986,0,0,0,15.6
+293987,0,0,0,15.6
+293988,0,0,0,15.6
+293989,0,0,662098.3276,15.6
+293990,0,0,0,15.6
+293991,339166.1076,0,0,15.6
+293992,0,0,0,15.6
+293993,0,368081.6043,0,15.6
+293994,0,0,0,15.6
+293995,0,0,0,15.6
+293996,0,0,0,15.6
+293997,0,0,0,15.6
+293998,0,0,0,15.6
+293999,0,0,0,15.6
+294000,0,0,0,17.8
+294001,0,0,0,17.8
+294002,0,0,0,17.8
+294003,0,0,0,17.8
+294004,0,0,0,17.8
+294005,0,0,0,17.8
+294006,0,0,0,17.8
+294007,0,0,0,17.8
+294008,0,0,0,17.8
+294009,0,0,0,17.8
+294010,0,0,0,17.8
+294011,0,0,0,17.8
+294012,0,0,0,17.8
+294013,0,0,0,17.8
+294014,0,0,0,17.8
+294015,0,0,0,17.8
+294016,0,0,0,17.8
+294017,0,0,0,17.8
+294018,0,0,0,17.8
+294019,0,0,0,17.8
+294020,0,0,0,17.8
+294021,0,0,0,17.8
+294022,0,0,0,17.8
+294023,0,0,662233.9201,17.8
+294024,0,0,0,17.8
+294025,0,0,0,17.8
+294026,339154.2829,0,0,17.8
+294027,0,0,0,17.8
+294028,0,368148.5617,0,17.8
+294029,0,0,0,17.8
+294030,0,0,0,17.8
+294031,0,0,0,17.8
+294032,0,0,0,17.8
+294033,0,0,0,17.8
+294034,0,0,0,17.8
+294035,0,0,0,17.8
+294036,0,0,0,17.8
+294037,0,0,0,17.8
+294038,0,0,0,17.8
+294039,0,0,0,17.8
+294040,0,0,0,17.8
+294041,0,0,0,17.8
+294042,0,0,0,17.8
+294043,0,0,0,17.8
+294044,0,0,0,17.8
+294045,0,0,0,17.8
+294046,0,0,0,17.8
+294047,0,0,0,17.8
+294048,0,0,0,17.8
+294049,0,0,0,17.8
+294050,0,0,0,17.8
+294051,0,0,0,17.8
+294052,0,0,0,17.8
+294053,0,0,0,17.8
+294054,0,0,0,17.8
+294055,0,0,0,17.8
+294056,0,0,0,17.8
+294057,0,0,662350.533,17.8
+294058,0,0,0,17.8
+294059,0,0,0,17.8
+294060,0,0,0,20
+294061,348144.809,367892.9731,0,20
+294062,0,0,0,20
+294063,0,0,0,20
+294064,2657.682006,0,0,20
+294065,2414.090321,0,0,20
+294066,5088.603056,6365.994869,0,20
+294067,3162.383003,21110.89873,0,20
+294068,4350.051207,11621.53022,0,20
+294069,26019.80758,26309.16722,0,20
+294070,12472.35765,26183.75478,0,20
+294071,16739.74753,25840.42216,0,20
+294072,17193.97639,27091.50341,0,20
+294073,17308.1857,28301.35724,0,20
+294074,17435.20387,28650.16083,0,20
+294075,18594.88243,29190.06253,0,20
+294076,18512.79065,29948.9242,0,20
+294077,19272.69091,30270.47317,0,20
+294078,19179.53919,30922.80527,0,20
+294079,19484.01778,31371.52361,0,20
+294080,19696.14379,31852.25997,0,20
+294081,19900.64919,32393.95058,0,20
+294082,20082.47527,32782.56897,0,20
+294083,23215.25551,33104.04669,0,20
+294084,22646.14472,33619.2157,0,20
+294085,23050.83412,34166.32757,0,20
+294086,23709.64004,34311.28515,0,20
+294087,24118.78446,34991.63672,0,20
+294088,24479.96358,35050.61722,0,20
+294089,25145.38625,35417.00771,0,20
+294090,25180.80056,36170.14114,0,20
+294091,25552.39185,36100.68806,0,20
+294092,25387.42616,36567.97132,0,20
+294093,25683.98018,36799.37218,0,20
+294094,24799.9107,37444.35684,0,20
+294095,24502.86685,37470.4997,0,20
+294096,24327.77289,37912.78787,0,20
+294097,24661.76377,38011.5927,0,20
+294098,24243.05408,38791.34514,0,20
+294099,24417.81926,38512.94336,101.9337804,20
+294100,24001.78229,39181.80718,165.849709,20
+294101,24219.39082,39172.16379,150.0463283,20
+294102,23868.01236,39700.51441,181.5550437,20
+294103,23982.20741,39852.18446,197.1668477,20
+294104,23637.44326,40125.93153,228.134347,20
+294105,23624.788,40232.98284,243.5009965,20
+294106,23370.42258,39995.05081,258.7947052,20
+294107,23246.92512,40657.33024,274.0189918,20
+294108,23018.35491,40557.4995,181.5618235,20
+294109,22855.015,40845.40618,142.1104954,20
+294110,22615.47448,41189.41763,165.8587438,20
+294111,22369.2713,41169.14942,157.970013,20
+294112,22067.55284,41526.79899,165.8601983,20
+294113,20754.17068,41577.50517,181.56584,20
+294114,20299.00942,41968.48832,181.5667344,20
+294115,19857.81971,41902.06622,197.1796378,20
+294116,19479.82659,42205.85334,197.1806916,20
+294117,19147.6214,42392.20679,197.1817522,20
+294118,18730.13337,42638.79848,228.1516962,20
+294119,18280.84399,42580.9747,212.7094436,20
+294120,17870.51716,42978.96366,228.1544488,21
+294121,13337.22732,38309.28817,60.81041077,21
+294122,12495.44436,37837.8595,35.45911007,21
+294123,11743.85979,37551.64027,52.42963714,21
+294124,11092.86352,38010.26576,35.45919051,21
+294125,11015.61782,37533.45587,43.98279789,21
+294126,10971.6612,37533.45749,52.4298181,21
+294127,10912.09496,37720.38998,35.45931141,21
+294128,10923.37471,37415.99742,52.42993859,21
+294129,10795.81084,37428.99221,52.43001096,21
+294130,10693.40285,37476.25498,52.43008283,21
+294131,10866.89734,37436.39776,52.43015481,21
+294132,10475.25758,37431.35736,52.43022645,21
+294133,10697.67053,37389.90626,52.43029857,21
+294134,10465.93255,37311.49771,52.4303699,21
+294135,10463.34709,37206.54253,60.81150424,21
+294136,10282.32047,36704.17593,60.81160122,21
+294137,10453.74249,37052.34818,69.13457434,21
+294138,10124.86715,36766.36738,69.13470001,21
+294139,10185.16782,36848.01912,69.13482632,21
+294140,10039.60828,36473.21598,85.62890674,21
+294141,10248.58934,36829.5009,69.13510773,21
+294142,10004.49558,36559.27879,85.62925923,21
+294143,10005.50309,36517.30741,85.62945325,21
+294144,10067.99042,36559.28226,93.80940036,21
+294145,9981.481096,36393.49431,85.62986032,21
+294146,10045.86753,36252.12399,93.80984772,21
+294147,9911.059124,36513.77611,93.8100823,21
+294148,9888.719024,36041.64298,101.9498107,21
+294149,9898.988623,36212.43782,85.63071044,21
+294150,9830.065286,36116.40579,101.9503204,21
+294151,9741.513768,36159.21333,69.1367348,21
+294152,9805.677843,35662.20999,35.4609332,21
+294153,9794.571853,35689.60295,0,21
+294154,9524.453961,35661.07769,0,21
+294155,9757.995869,35201.94437,0,21
+294156,9600.767682,35201.94573,0,21
+294157,9488.747279,35134.6951,0,21
+294158,9651.368823,34693.70996,0,21
+294159,9417.911167,34780.4092,0,21
+294160,9405.462597,34419.38455,0,21
+294161,9356.926668,34578.11261,0,21
+294162,9345.549577,33914.66848,0,21
+294163,9321.568252,34003.51368,0,21
+294164,9149.015578,34007.69534,0,21
+294165,9149.762792,33868.13161,0,21
+294166,9218.44609,33933.82066,0,21
+294167,8976.036726,33618.00751,0,21
+294168,8928.576527,33307.08839,0,21
+294169,9027.370113,33347.67283,0,21
+294170,8865.936124,33071.52417,0,21
+294171,8566.436533,33001.42504,0,21
+294172,8622.450125,32504.02254,0,21
+294173,8465.926774,32960.07589,0,21
+294174,8452.871738,32087.71922,0,21
+294175,8388.871689,32257.10441,0,21
+294176,8151.741559,32018.53962,0,21
+294177,8337.068529,31861.52919,0,21
+294178,8056.164634,31520.828,0,21
+294179,8046.492217,31465.90641,0,21
+294180,7995.003994,31240.80215,0,21
+294181,508.1852325,1685.759977,0,21
+294182,447.3327726,1498.614414,0,21
+294183,385.5724838,1385.818376,0,21
+294184,385.5724824,1352.228132,0,21
+294185,354.3175142,1281.903451,0,21
+294186,322.789607,1211.089121,0,21
+294187,306.9167615,1207.608667,0,21
+294188,290.9672967,1105.592345,0,21
+294189,258.8244422,1088.418858,0,21
+294190,242.6229445,1016.34477,0,21
+294191,226.328439,999.0424654,0,21
+294192,209.9353842,926.2996425,0,21
+294193,176.8269332,894.9282273,0,21
+294194,176.8269315,849.4273973,0,21
+294195,143.2314754,789.5782146,0,21
+294196,126.2226465,771.9329177,0,21
+294197,109.0521087,711.5311064,0,21
+294198,91.69818927,673.9641273,0,21
+294199,74.13125511,632.7257289,0,21
+294200,56.30806666,556.5419042,0,21
+294201,38.15889413,553.0847784,0,21
+294202,9.970952615,494.1592131,0,21
+294203,0,442.7694789,0,21
+294204,0,394.3097609,0,21
+294205,0,363.8861464,0,21
+294206,0,311.3473127,0,21
+294207,0,264.4280055,0,21
+294208,0,261.4416803,0,21
+294209,0,229.6602758,0,21
+294210,0,177.9263274,0,21
+294211,0,131.9802126,0,21
+294212,0,122.319585,0,21
+294213,0,93.02111756,0,21
+294214,0,83.13297399,0,21
+294215,0,63.13579287,0,21
+294216,0,63.13577938,0,21
+294217,0,32.42022325,0,21
+294218,0,32.42021483,0,21
+294219,0,0,0,21
+294220,0,11.16963944,0,21
+294221,0,0,0,21
+294222,0,0,0,21
+294223,0,0,0,21
+294224,0,0,0,21
+294225,0,0,0,21
+294226,0,0,0,21
+294227,0,0,0,21
+294228,0,0,0,21
+294229,0,0,0,21
+294230,0,0,0,21
+294231,0,0,0,21
+294232,0,0,0,21
+294233,0,0,0,21
+294234,0,0,0,21
+294235,0,0,0,21
+294236,0,0,0,21
+294237,0,0,0,21
+294238,0,0,0,21
+294239,0,0,0,21
+294240,0,0,0,21
+294241,0,0,0,21
+294242,0,0,0,21
+294243,0,0,0,21
+294244,0,0,0,21
+294245,0,0,0,21
+294246,0,0,0,21
+294247,0,0,0,21
+294248,0,0,0,21
+294249,0,0,0,21
+294250,0,0,0,21
+294251,0,0,0,21
+294252,0,0,0,21
+294253,0,0,0,21
+294254,0,0,0,21
+294255,0,0,0,21
+294256,0,0,0,21
+294257,0,0,0,21
+294258,0,0,0,21
+294259,0,0,0,21
+294260,0,0,0,21
+294261,0,0,0,21
+294262,0,0,0,21
+294263,0,0,0,21
+294264,0,0,0,21
+294265,0,0,0,21
+294266,0,0,0,21
+294267,0,0,0,21
+294268,0,0,0,21
+294269,0,0,0,21
+294270,0,0,0,21
+294271,0,0,0,21
+294272,0,0,0,21
+294273,0,0,0,21
+294274,0,0,0,21
+294275,0,0,0,21
+294276,0,0,0,21
+294277,0,0,0,21
+294278,0,0,0,21
+294279,0,0,0,21
+294280,0,0,0,21
+294281,0,0,0,21
+294282,0,0,0,21
+294283,0,0,0,21
+294284,0,0,0,21
+294285,0,0,0,21
+294286,0,0,0,21
+294287,0,0,0,21
+294288,0,0,0,21
+294289,0,0,0,21
+294290,0,0,0,21
+294291,0,0,0,21
+294292,0,0,0,21
+294293,0,0,0,21
+294294,0,0,0,21
+294295,0,0,0,21
+294296,0,0,0,21
+294297,0,0,0,21
+294298,0,0,0,21
+294299,0,0,0,21
+294300,0,0,0,21
+294301,0,0,0,21
+294302,0,0,0,21
+294303,0,0,0,21
+294304,0,0,0,21
+294305,0,0,0,21
+294306,0,0,0,21
+294307,0,0,0,21
+294308,0,0,0,21
+294309,0,0,0,21
+294310,0,0,0,21
+294311,0,0,0,21
+294312,0,0,0,21
+294313,0,0,0,21
+294314,0,0,0,21
+294315,0,0,0,21
+294316,0,0,0,21
+294317,0,0,0,21
+294318,0,0,0,21
+294319,0,0,0,21
+294320,0,0,0,21
+294321,0,0,0,21
+294322,0,0,0,21
+294323,0,0,0,21
+294324,0,0,0,21
+294325,0,0,0,21
+294326,0,0,0,21
+294327,0,0,0,21
+294328,0,0,0,21
+294329,0,0,0,21
+294330,0,0,0,21
+294331,0,0,0,21
+294332,0,0,0,21
+294333,0,0,0,21
+294334,0,0,0,21
+294335,0,0,0,21
+294336,0,0,0,21
+294337,0,0,0,21
+294338,0,0,0,21
+294339,0,0,0,21
+294340,0,0,0,21
+294341,0,0,0,21
+294342,0,0,0,21
+294343,0,0,0,21
+294344,0,0,0,21
+294345,0,0,0,21
+294346,0,0,0,21
+294347,0,0,0,21
+294348,0,0,0,21
+294349,0,0,0,21
+294350,0,0,0,21
+294351,0,0,0,21
+294352,0,0,0,21
+294353,0,0,0,21
+294354,0,0,0,21
+294355,0,0,0,21
+294356,0,0,0,21
+294357,0,0,0,21
+294358,0,0,0,21
+294359,0,0,0,21
+294360,0,0,0,21
+294361,0,0,0,21
+294362,0,0,0,21
+294363,0,0,0,21
+294364,0,0,0,21
+294365,0,0,0,21
+294366,0,0,0,21
+294367,0,0,0,21
+294368,0,0,0,21
+294369,0,0,0,21
+294370,0,0,0,21
+294371,0,0,0,21
+294372,0,0,0,21
+294373,0,0,0,21
+294374,0,0,0,21
+294375,0,0,0,21
+294376,0,0,0,21
+294377,0,0,0,21
+294378,0,0,0,21
+294379,0,0,0,21
+294380,0,0,0,21
+294381,0,0,0,21
+294382,0,0,0,21
+294383,0,0,0,21
+294384,0,0,0,21
+294385,0,0,0,21
+294386,0,0,0,21
+294387,0,0,0,21
+294388,0,0,0,21
+294389,0,0,0,21
+294390,0,0,0,21
+294391,0,0,0,21
+294392,0,0,0,21
+294393,0,0,0,21
+294394,0,0,0,21
+294395,0,0,0,21
+294396,0,0,0,21
+294397,0,0,0,21
+294398,0,0,0,21
+294399,0,0,0,21
+294400,0,0,0,21
+294401,0,0,0,21
+294402,0,0,0,21
+294403,0,0,0,21
+294404,0,0,0,21
+294405,0,0,0,21
+294406,0,0,0,21
+294407,0,0,0,21
+294408,0,0,0,21
+294409,0,0,0,21
+294410,0,0,0,21
+294411,0,0,0,21
+294412,0,0,0,21
+294413,0,0,0,21
+294414,0,0,0,21
+294415,0,0,0,21
+294416,0,0,0,21
+294417,0,0,0,21
+294418,0,0,0,21
+294419,0,0,0,21
+294420,0,0,0,21
+294421,0,0,0,21
+294422,0,0,0,21
+294423,0,0,0,21
+294424,0,0,0,21
+294425,0,0,0,21
+294426,0,0,0,21
+294427,0,0,0,21
+294428,0,0,0,21
+294429,0,0,0,21
+294430,0,0,0,21
+294431,0,0,0,21
+294432,0,0,0,21
+294433,0,0,0,21
+294434,0,0,0,21
+294435,0,0,0,21
+294436,0,0,0,21
+294437,0,0,0,21
+294438,0,0,0,21
+294439,0,0,0,21
+294440,0,0,0,21
+294441,0,0,0,21
+294442,0,0,0,21
+294443,0,0,0,21
+294444,0,0,0,21
+294445,0,0,0,21
+294446,0,0,0,21
+294447,0,0,0,21
+294448,0,0,0,21
+294449,0,0,0,21
+294450,0,0,0,21
+294451,0,0,0,21
+294452,0,0,0,21
+294453,0,0,0,21
+294454,0,0,0,21
+294455,0,0,0,21
+294456,0,0,0,21
+294457,0,0,0,21
+294458,0,0,0,21
+294459,0,0,0,21
+294460,0,0,0,21
+294461,0,0,0,21
+294462,0,0,0,21
+294463,0,0,0,21
+294464,0,0,0,21
+294465,0,0,0,21
+294466,0,0,0,21
+294467,0,0,0,21
+294468,0,0,0,21
+294469,0,0,0,21
+294470,0,0,0,21
+294471,0,0,0,21
+294472,0,0,0,21
+294473,0,0,0,21
+294474,0,0,0,21
+294475,0,0,0,21
+294476,0,0,0,21
+294477,0,0,0,21
+294478,0,0,0,21
+294479,0,0,0,21
+294480,0,0,0,21
+294481,0,0,0,21
+294482,0,0,0,21
+294483,0,0,0,21
+294484,0,0,0,21
+294485,0,0,0,21
+294486,0,0,0,21
+294487,0,0,0,21
+294488,0,0,0,21
+294489,0,0,0,21
+294490,0,0,0,21
+294491,0,0,0,21
+294492,0,0,0,21
+294493,0,0,0,21
+294494,0,0,0,21
+294495,0,0,0,21
+294496,0,0,0,21
+294497,0,0,0,21
+294498,0,0,0,21
+294499,0,0,0,21
+294500,0,0,0,21
+294501,0,0,0,21
+294502,0,0,0,21
+294503,0,0,0,21
+294504,0,0,0,21
+294505,0,0,0,21
+294506,0,0,0,21
+294507,0,0,0,21
+294508,0,0,0,21
+294509,0,0,0,21
+294510,0,0,0,21
+294511,0,0,0,21
+294512,0,0,0,21
+294513,0,0,0,21
+294514,0,0,0,21
+294515,0,0,0,21
+294516,0,0,0,21
+294517,0,0,0,21
+294518,0,0,0,21
+294519,0,0,0,21
+294520,0,0,0,21
+294521,0,0,0,21
+294522,0,0,0,21
+294523,0,0,0,21
+294524,0,0,0,21
+294525,0,0,0,21
+294526,0,0,0,21
+294527,0,0,0,21
+294528,0,0,0,21
+294529,0,0,0,21
+294530,0,0,0,21
+294531,0,0,0,21
+294532,0,0,0,21
+294533,0,0,0,21
+294534,0,0,0,21
+294535,0,0,0,21
+294536,0,0,0,21
+294537,0,0,0,21
+294538,0,0,0,21
+294539,0,0,0,21
+294540,0,0,0,21
+294541,0,0,0,21
+294542,0,0,0,21
+294543,0,0,0,21
+294544,0,0,0,21
+294545,0,0,0,21
+294546,0,0,0,21
+294547,0,0,0,21
+294548,0,0,0,21
+294549,0,0,0,21
+294550,0,0,0,21
+294551,0,0,0,21
+294552,0,0,0,21
+294553,0,0,0,21
+294554,0,0,0,21
+294555,0,0,0,21
+294556,0,0,0,21
+294557,0,0,0,21
+294558,0,0,0,21
+294559,0,0,0,21
+294560,0,0,0,21
+294561,0,0,0,21
+294562,0,0,0,21
+294563,0,0,0,21
+294564,0,0,0,21
+294565,0,0,0,21
+294566,0,0,0,21
+294567,0,0,0,21
+294568,0,0,0,21
+294569,0,0,0,21
+294570,0,0,0,21
+294571,0,0,0,21
+294572,0,0,0,21
+294573,0,0,0,21
+294574,0,0,0,21
+294575,0,0,0,21
+294576,0,0,0,21
+294577,0,0,0,21
+294578,0,0,0,21
+294579,0,0,0,21
+294580,0,0,0,21
+294581,0,0,0,21
+294582,0,0,0,21
+294583,0,0,0,21
+294584,0,0,0,21
+294585,0,0,0,21
+294586,0,0,0,21
+294587,0,0,0,21
+294588,0,0,0,21
+294589,0,0,0,21
+294590,0,0,0,21
+294591,0,0,0,21
+294592,0,0,0,21
+294593,0,0,0,21
+294594,0,0,0,21
+294595,0,0,0,21
+294596,0,0,0,21
+294597,0,0,0,21
+294598,0,0,0,21
+294599,0,0,0,21
+294600,0,0,0,21
+294601,0,0,0,21
+294602,0,0,0,21
+294603,0,0,0,21
+294604,0,0,0,21
+294605,0,0,0,21
+294606,0,0,0,21
+294607,0,0,0,21
+294608,0,0,0,21
+294609,0,0,0,21
+294610,0,0,0,21
+294611,0,0,0,21
+294612,0,0,0,21
+294613,0,0,0,21
+294614,0,0,0,21
+294615,0,0,0,21
+294616,0,0,0,21
+294617,0,0,0,21
+294618,0,0,0,21
+294619,0,0,0,21
+294620,0,0,0,21
+294621,0,0,0,21
+294622,0,0,0,21
+294623,0,0,0,21
+294624,0,0,0,21
+294625,0,0,0,21
+294626,0,0,0,21
+294627,0,0,0,21
+294628,0,0,0,21
+294629,0,0,0,21
+294630,0,0,0,21
+294631,0,0,0,21
+294632,0,0,0,21
+294633,0,0,0,21
+294634,0,0,0,21
+294635,0,0,0,21
+294636,0,0,0,21
+294637,0,0,0,21
+294638,0,0,0,21
+294639,0,0,0,21
+294640,0,0,0,21
+294641,0,0,0,21
+294642,0,0,0,21
+294643,0,0,0,21
+294644,0,0,0,21
+294645,0,0,0,21
+294646,0,0,0,21
+294647,0,0,0,21
+294648,0,0,0,21
+294649,0,0,0,21
+294650,0,0,0,21
+294651,0,0,0,21
+294652,0,0,0,21
+294653,0,0,0,21
+294654,0,0,0,21
+294655,0,0,0,21
+294656,0,0,0,21
+294657,0,0,0,21
+294658,0,0,0,21
+294659,0,0,0,21
+294660,0,0,0,21
+294661,0,0,0,21
+294662,0,0,0,21
+294663,0,0,0,21
+294664,0,0,0,21
+294665,0,0,0,21
+294666,0,0,0,21
+294667,0,0,0,21
+294668,0,0,0,21
+294669,0,0,0,21
+294670,0,0,0,21
+294671,0,0,0,21
+294672,0,0,0,21
+294673,0,0,0,21
+294674,0,0,0,21
+294675,0,0,0,21
+294676,0,0,0,21
+294677,0,0,0,21
+294678,0,0,0,21
+294679,0,0,0,21
+294680,0,0,0,21
+294681,0,0,0,21
+294682,0,0,0,21
+294683,0,0,0,21
+294684,0,0,0,21
+294685,0,0,0,21
+294686,0,0,0,21
+294687,0,0,0,21
+294688,0,0,0,21
+294689,0,0,0,21
+294690,0,0,0,21
+294691,0,0,0,21
+294692,0,0,0,21
+294693,0,0,0,21
+294694,0,0,0,21
+294695,0,0,0,21
+294696,0,0,0,21
+294697,0,0,0,21
+294698,0,0,0,21
+294699,0,0,0,21
+294700,0,0,0,21
+294701,0,0,0,21
+294702,0,0,0,21
+294703,0,0,0,21
+294704,0,0,0,21
+294705,0,0,0,21
+294706,0,0,0,21
+294707,0,0,0,21
+294708,0,0,0,21
+294709,0,0,0,21
+294710,0,0,0,21
+294711,0,0,0,21
+294712,0,0,0,21
+294713,0,0,0,21
+294714,0,0,0,21
+294715,0,0,0,21
+294716,0,0,0,21
+294717,0,0,0,21
+294718,0,0,0,21
+294719,0,0,0,21
+294720,0,0,0,21
+294721,0,0,0,21
+294722,0,0,0,21
+294723,0,0,0,21
+294724,0,0,0,21
+294725,0,0,0,21
+294726,0,0,0,21
+294727,0,0,0,21
+294728,0,0,0,21
+294729,0,0,0,21
+294730,0,0,0,21
+294731,0,0,0,21
+294732,0,0,0,21
+294733,0,0,0,21
+294734,0,0,0,21
+294735,0,0,0,21
+294736,0,0,0,21
+294737,0,0,0,21
+294738,0,0,0,21
+294739,0,0,0,21
+294740,0,0,0,21
+294741,0,0,0,21
+294742,0,0,0,21
+294743,0,0,0,21
+294744,0,0,0,21
+294745,0,0,0,21
+294746,0,0,0,21
+294747,0,0,0,21
+294748,0,0,0,21
+294749,0,0,0,21
+294750,0,0,0,21
+294751,0,0,0,21
+294752,0,0,0,21
+294753,0,0,0,21
+294754,0,0,0,21
+294755,0,0,0,21
+294756,0,0,0,21
+294757,0,0,0,21
+294758,0,0,0,21
+294759,0,0,0,21
+294760,0,0,0,21
+294761,0,0,0,21
+294762,0,0,0,21
+294763,0,0,0,21
+294764,0,0,0,21
+294765,0,0,0,21
+294766,0,0,0,21
+294767,0,0,0,21
+294768,0,0,0,21
+294769,0,0,0,21
+294770,0,0,0,21
+294771,0,0,0,21
+294772,0,0,0,21
+294773,0,0,0,21
+294774,0,0,0,21
+294775,0,0,0,21
+294776,0,0,0,21
+294777,0,0,0,21
+294778,0,0,0,21
+294779,0,0,0,21
+294780,0,0,0,21
+294781,0,0,0,21
+294782,0,0,0,21
+294783,0,0,0,21
+294784,0,0,0,21
+294785,0,0,0,21
+294786,0,0,0,21
+294787,0,0,0,21
+294788,0,0,0,21
+294789,0,0,0,21
+294790,0,0,0,21
+294791,0,0,0,21
+294792,0,0,0,21
+294793,0,0,0,21
+294794,0,0,0,21
+294795,0,0,0,21
+294796,0,0,0,21
+294797,0,0,0,21
+294798,0,0,0,21
+294799,0,0,0,21
+294800,0,0,0,21
+294801,0,0,0,21
+294802,0,0,0,21
+294803,0,0,0,21
+294804,0,0,0,21
+294805,0,0,0,21
+294806,0,0,0,21
+294807,0,0,0,21
+294808,0,0,0,21
+294809,0,0,0,21
+294810,0,0,0,21
+294811,0,0,0,21
+294812,0,0,0,21
+294813,0,0,0,21
+294814,0,0,0,21
+294815,0,0,0,21
+294816,0,0,0,21
+294817,0,0,0,21
+294818,0,0,0,21
+294819,0,0,0,21
+294820,0,0,0,21
+294821,0,0,0,21
+294822,0,0,0,21
+294823,0,0,0,21
+294824,0,0,0,21
+294825,0,0,0,21
+294826,0,0,0,21
+294827,0,0,0,21
+294828,0,0,0,21
+294829,0,0,0,21
+294830,0,0,0,21
+294831,0,0,0,21
+294832,0,0,0,21
+294833,0,0,0,21
+294834,0,0,0,21
+294835,0,0,0,21
+294836,0,0,0,21
+294837,0,0,0,21
+294838,0,0,0,21
+294839,0,0,0,21
+294840,0,0,0,21
+294841,0,0,0,21
+294842,0,0,0,21
+294843,0,0,0,21
+294844,0,0,0,21
+294845,0,0,0,21
+294846,0,0,0,21
+294847,0,0,0,21
+294848,0,0,0,21
+294849,0,0,0,21
+294850,0,0,0,21
+294851,0,0,0,21
+294852,0,0,0,21
+294853,0,0,0,21
+294854,0,0,0,21
+294855,0,0,0,21
+294856,0,0,0,21
+294857,0,0,0,21
+294858,0,0,0,21
+294859,0,0,0,21
+294860,0,0,0,21
+294861,0,0,0,21
+294862,0,0,0,21
+294863,0,0,0,21
+294864,0,0,0,21
+294865,0,0,0,21
+294866,0,0,0,21
+294867,0,0,0,21
+294868,0,0,0,21
+294869,0,0,0,21
+294870,0,0,0,21
+294871,0,0,0,21
+294872,0,0,0,21
+294873,0,0,0,21
+294874,0,0,0,21
+294875,0,0,0,21
+294876,0,0,0,21
+294877,0,0,0,21
+294878,0,0,0,21
+294879,0,0,0,21
+294880,0,0,0,21
+294881,0,0,0,21
+294882,0,0,0,21
+294883,0,0,0,21
+294884,0,0,0,21
+294885,0,0,0,21
+294886,0,0,0,21
+294887,0,0,0,21
+294888,0,0,0,21
+294889,0,0,0,21
+294890,0,0,0,21
+294891,0,0,0,21
+294892,0,0,0,21
+294893,0,0,0,21
+294894,0,0,0,21
+294895,0,0,0,21
+294896,0,0,0,21
+294897,0,0,0,21
+294898,0,0,0,21
+294899,0,0,0,21
+294900,0,0,0,21
+294901,0,0,0,21
+294902,0,0,0,21
+294903,0,0,0,21
+294904,0,0,0,21
+294905,0,0,0,21
+294906,0,0,0,21
+294907,0,0,0,21
+294908,0,0,0,21
+294909,0,0,0,21
+294910,0,0,0,21
+294911,0,0,0,21
+294912,0,0,0,21
+294913,0,0,0,21
+294914,0,0,0,21
+294915,0,0,0,21
+294916,0,0,0,21
+294917,0,0,0,21
+294918,0,0,0,21
+294919,0,0,0,21
+294920,0,0,0,21
+294921,0,0,0,21
+294922,0,0,0,21
+294923,0,0,0,21
+294924,0,0,0,21
+294925,0,0,0,21
+294926,0,0,0,21
+294927,0,0,0,21
+294928,0,0,0,21
+294929,0,0,0,21
+294930,0,0,0,21
+294931,0,0,0,21
+294932,0,0,0,21
+294933,0,0,0,21
+294934,0,0,0,21
+294935,0,0,0,21
+294936,0,0,0,21
+294937,0,0,0,21
+294938,0,0,0,21
+294939,0,0,0,21
+294940,0,0,0,21
+294941,0,0,0,21
+294942,0,0,0,21
+294943,0,0,0,21
+294944,0,0,0,21
+294945,0,0,0,21
+294946,0,0,0,21
+294947,0,0,0,21
+294948,0,0,0,21
+294949,0,0,0,21
+294950,0,0,0,21
+294951,0,0,0,21
+294952,0,0,0,21
+294953,0,0,0,21
+294954,0,0,0,21
+294955,0,0,0,21
+294956,0,0,0,21
+294957,0,0,0,21
+294958,0,0,0,21
+294959,0,0,0,21
+294960,0,0,0,21
+294961,0,0,0,21
+294962,0,0,0,21
+294963,0,0,0,21
+294964,0,0,0,21
+294965,0,0,0,21
+294966,0,0,0,21
+294967,0,0,0,21
+294968,0,0,0,21
+294969,0,0,0,21
+294970,0,0,0,21
+294971,0,0,0,21
+294972,0,0,0,21
+294973,0,0,0,21
+294974,0,0,0,21
+294975,0,0,0,21
+294976,0,0,0,21
+294977,0,0,0,21
+294978,0,0,0,21
+294979,0,0,0,21
+294980,0,0,0,21
+294981,0,0,0,21
+294982,0,0,0,21
+294983,0,0,0,21
+294984,0,0,0,21
+294985,0,0,0,21
+294986,0,0,0,21
+294987,0,185.6626977,0,21
+294988,0,1361.711002,0,21
+294989,0,871.5414438,0,21
+294990,0,1118.44771,0,21
+294991,0,1361.711055,0,21
+294992,0,1522.152534,0,21
+294993,0,1681.356274,0,21
+294994,0,1839.42243,0,21
+294995,0,1839.422462,0,21
+294996,0,2152.463596,0,21
+294997,0,2307.569287,0,21
+294998,0,2461.804275,0,21
+294999,0,2461.804276,0,21
+295000,0,2767.83974,0,21
+295001,0,2767.839672,0,21
+295002,0,3070.877018,0,21
+295003,0,3070.877053,0,21
+295004,0,3371.162551,0,21
+295005,0,3371.162589,0,21
+295006,0,3520.338073,0,21
+295007,0,3668.898579,0,21
+295008,0,3816.864485,0,21
+295009,0,3964.254325,0,21
+295010,0,4111.085281,0,21
+295011,0,4257.373546,0,21
+295012,0,4257.37355,0,21
+295013,0,4548.380206,0,21
+295014,0,4693.125706,0,21
+295015,0,4693.12572,0,21
+295016,0,4837.382365,0,21
+295017,0,5124.475011,0,21
+295018,0,4981.16191,0,21
+295019,0,5409.742299,0,21
+295020,0,5267.331931,0,21
+295021,0,0,0,21
+295022,0,0,0,21
+295023,0,0,0,21
+295024,0,0,0,21
+295025,0,362728.0205,660839.6957,21
+295026,332562.1351,0,0,21
+295027,0,0,0,21
+295028,0,0,0,21
+295029,0,0,0,21
+295030,0,0,0,21
+295031,0,0,0,21
+295032,0,0,0,21
+295033,0,0,0,21
+295034,0,0,0,21
+295035,0,0,0,21
+295036,0,0,0,21
+295037,0,0,0,21
+295038,0,0,0,21
+295039,0,0,0,21
+295040,0,0,0,21
+295041,0,0,0,21
+295042,0,0,0,21
+295043,0,0,0,21
+295044,0,0,0,21
+295045,0,0,0,21
+295046,0,0,0,21
+295047,0,0,0,21
+295048,0,0,0,21
+295049,0,0,0,21
+295050,0,0,0,21
+295051,0,0,0,21
+295052,0,0,0,21
+295053,0,0,0,21
+295054,0,0,0,21
+295055,0,0,0,21
+295056,0,0,0,21
+295057,0,0,0,21
+295058,0,0,0,21
+295059,0,363673.3954,661351.3382,21
+295060,0,0,0,21
+295061,332565.7031,0,0,21
+295062,0,0,0,21
+295063,0,0,0,21
+295064,0,0,0,21
+295065,0,0,0,21
+295066,0,0,0,21
+295067,0,0,0,21
+295068,0,0,0,21
+295069,0,0,0,21
+295070,0,0,0,21
+295071,0,0,0,21
+295072,0,0,0,21
+295073,0,0,0,21
+295074,0,0,0,21
+295075,0,0,0,21
+295076,0,0,0,21
+295077,0,0,0,21
+295078,0,0,0,21
+295079,0,0,0,21
+295080,0,0,0,15.6
+295081,0,0,0,15.6
+295082,0,0,0,15.6
+295083,0,0,0,15.6
+295084,0,0,0,15.6
+295085,0,0,0,15.6
+295086,0,0,0,15.6
+295087,0,0,0,15.6
+295088,0,0,0,15.6
+295089,0,0,0,15.6
+295090,0,0,0,15.6
+295091,0,0,0,15.6
+295092,0,0,0,15.6
+295093,0,364891.4415,661514.6381,15.6
+295094,0,0,0,15.6
+295095,0,0,0,15.6
+295096,334363.2311,0,0,15.6
+295097,0,0,0,15.6
+295098,0,0,0,15.6
+295099,0,0,0,15.6
+295100,0,0,0,15.6
+295101,0,0,0,15.6
+295102,0,0,0,15.6
+295103,0,0,0,15.6
+295104,0,0,0,15.6
+295105,0,0,0,15.6
+295106,0,0,0,15.6
+295107,0,0,0,15.6
+295108,0,0,0,15.6
+295109,0,0,0,15.6
+295110,0,0,0,15.6
+295111,0,0,0,15.6
+295112,0,0,0,15.6
+295113,0,0,0,15.6
+295114,0,0,0,15.6
+295115,0,0,0,15.6
+295116,0,0,0,15.6
+295117,0,0,0,15.6
+295118,0,0,0,15.6
+295119,0,0,0,15.6
+295120,0,0,0,15.6
+295121,0,0,0,15.6
+295122,0,0,0,15.6
+295123,0,0,0,15.6
+295124,0,0,0,15.6
+295125,0,0,0,15.6
+295126,0,0,0,15.6
+295127,0,364787.0986,661858.8866,15.6
+295128,0,0,0,15.6
+295129,0,0,0,15.6
+295130,0,0,0,15.6
+295131,333493.6179,0,0,15.6
+295132,0,0,0,15.6
+295133,0,0,0,15.6
+295134,0,0,0,15.6
+295135,0,0,0,15.6
+295136,0,0,0,15.6
+295137,0,0,0,15.6
+295138,0,0,0,15.6
+295139,0,0,0,15.6
+295140,0,0,0,15.6
+295141,0,0,0,15.6
+295142,0,0,0,15.6
+295143,0,0,0,15.6
+295144,0,0,0,15.6
+295145,0,0,0,15.6
+295146,0,0,0,15.6
+295147,0,0,0,15.6
+295148,0,0,0,15.6
+295149,0,0,0,15.6
+295150,0,0,0,15.6
+295151,0,0,0,15.6
+295152,0,0,0,15.6
+295153,0,0,0,15.6
+295154,0,0,0,15.6
+295155,0,0,0,15.6
+295156,0,0,0,15.6
+295157,0,0,0,15.6
+295158,0,0,0,15.6
+295159,0,0,0,15.6
+295160,0,0,0,15.6
+295161,0,0,662663.122,15.6
+295162,0,365538.0298,0,15.6
+295163,0,0,0,15.6
+295164,0,0,0,15.6
+295165,0,0,0,15.6
+295166,335487.2056,0,0,15.6
+295167,0,0,0,15.6
+295168,0,0,0,15.6
+295169,0,0,0,15.6
+295170,0,0,0,15.6
+295171,0,0,0,15.6
+295172,0,0,0,15.6
+295173,0,0,0,15.6
+295174,0,0,0,15.6
+295175,0,0,0,15.6
+295176,0,0,0,15.6
+295177,0,0,0,15.6
+295178,0,0,0,15.6
+295179,0,0,0,15.6
+295180,0,0,0,15.6
+295181,0,0,0,15.6
+295182,0,0,0,15.6
+295183,0,0,0,15.6
+295184,0,0,0,15.6
+295185,0,0,0,15.6
+295186,0,0,0,15.6
+295187,0,0,0,15.6
+295188,0,0,0,15.6
+295189,0,0,0,15.6
+295190,0,0,0,15.6
+295191,0,0,0,15.6
+295192,0,0,0,15.6
+295193,0,0,0,15.6
+295194,0,0,0,15.6
+295195,0,0,662725.597,15.6
+295196,0,0,0,15.6
+295197,0,366296.4776,0,15.6
+295198,0,0,0,15.6
+295199,0,0,0,15.6
+295200,0,0,0,15.6
+295201,334394.5466,0,0,15.6
+295202,0,0,0,15.6
+295203,0,0,0,15.6
+295204,0,0,0,15.6
+295205,0,0,0,15.6
+295206,0,0,0,15.6
+295207,0,0,0,15.6
+295208,0,0,0,15.6
+295209,0,0,0,15.6
+295210,0,0,0,15.6
+295211,0,0,0,15.6
+295212,0,0,0,15.6
+295213,0,0,0,15.6
+295214,0,0,0,15.6
+295215,0,0,0,15.6
+295216,0,0,0,15.6
+295217,0,0,0,15.6
+295218,0,0,0,15.6
+295219,0,0,0,15.6
+295220,0,0,0,15.6
+295221,0,0,0,15.6
+295222,0,0,0,15.6
+295223,0,0,0,15.6
+295224,0,0,0,15.6
+295225,0,0,0,15.6
+295226,0,0,0,15.6
+295227,0,0,0,15.6
+295228,0,0,0,15.6
+295229,0,0,663710.4138,15.6
+295230,0,0,0,15.6
+295231,0,0,0,15.6
+295232,0,365319.4206,0,15.6
+295233,0,0,0,15.6
+295234,0,0,0,15.6
+295235,0,0,0,15.6
+295236,335840.8212,0,0,15.6
+295237,0,0,0,15.6
+295238,0,0,0,15.6
+295239,0,0,0,15.6
+295240,0,0,0,15.6
+295241,0,0,0,15.6
+295242,0,0,0,15.6
+295243,0,0,0,15.6
+295244,0,0,0,15.6
+295245,0,0,0,15.6
+295246,0,0,0,15.6
+295247,0,0,0,15.6
+295248,0,0,0,15.6
+295249,0,0,0,15.6
+295250,0,0,0,15.6
+295251,0,0,0,15.6
+295252,0,0,0,15.6
+295253,0,0,0,15.6
+295254,0,0,0,15.6
+295255,0,0,0,15.6
+295256,0,0,0,15.6
+295257,0,0,0,15.6
+295258,0,0,0,15.6
+295259,0,0,0,15.6
+295260,0,0,0,15.6
+295261,0,0,0,15.6
+295262,0,0,0,15.6
+295263,0,0,663595.0752,15.6
+295264,0,0,0,15.6
+295265,0,0,0,15.6
+295266,0,0,0,15.6
+295267,0,366229.0891,0,15.6
+295268,0,0,0,15.6
+295269,0,0,0,15.6
+295270,0,0,0,15.6
+295271,336351.9984,0,0,15.6
+295272,0,0,0,15.6
+295273,0,0,0,15.6
+295274,0,0,0,15.6
+295275,0,0,0,15.6
+295276,0,0,0,15.6
+295277,0,0,0,15.6
+295278,0,0,0,15.6
+295279,0,0,0,15.6
+295280,0,0,0,15.6
+295281,0,0,0,15.6
+295282,0,0,0,15.6
+295283,0,0,0,15.6
+295284,0,0,0,15.6
+295285,0,0,0,15.6
+295286,0,0,0,15.6
+295287,0,0,0,15.6
+295288,0,0,0,15.6
+295289,0,0,0,15.6
+295290,0,0,0,15.6
+295291,0,0,0,15.6
+295292,0,0,0,15.6
+295293,0,0,0,15.6
+295294,0,0,0,15.6
+295295,0,0,0,15.6
+295296,0,0,0,15.6
+295297,0,0,663321.3228,15.6
+295298,0,0,0,15.6
+295299,0,0,0,15.6
+295300,0,0,0,15.6
+295301,0,0,0,15.6
+295302,0,366751.4475,0,15.6
+295303,0,0,0,15.6
+295304,0,0,0,15.6
+295305,0,0,0,15.6
+295306,335417.4691,0,0,15.6
+295307,0,0,0,15.6
+295308,0,0,0,15.6
+295309,0,0,0,15.6
+295310,0,0,0,15.6
+295311,0,0,0,15.6
+295312,0,0,0,15.6
+295313,0,0,0,15.6
+295314,0,0,0,15.6
+295315,0,0,0,15.6
+295316,0,0,0,15.6
+295317,0,0,0,15.6
+295318,0,0,0,15.6
+295319,0,0,0,15.6
+295320,0,0,0,15.6
+295321,0,0,0,15.6
+295322,0,0,0,15.6
+295323,0,0,0,15.6
+295324,0,0,0,15.6
+295325,0,0,0,15.6
+295326,0,0,0,15.6
+295327,0,0,0,15.6
+295328,0,0,0,15.6
+295329,0,0,0,15.6
+295330,0,0,0,15.6
+295331,0,0,663617.8376,15.6
+295332,0,0,0,15.6
+295333,0,0,0,15.6
+295334,0,0,0,15.6
+295335,0,0,0,15.6
+295336,0,0,0,15.6
+295337,0,365390.1816,0,15.6
+295338,0,0,0,15.6
+295339,0,0,0,15.6
+295340,0,0,0,15.6
+295341,336777.8238,0,0,15.6
+295342,0,0,0,15.6
+295343,0,0,0,15.6
+295344,0,0,0,15.6
+295345,0,0,0,15.6
+295346,0,0,0,15.6
+295347,0,0,0,15.6
+295348,0,0,0,15.6
+295349,0,0,0,15.6
+295350,0,0,0,15.6
+295351,0,0,0,15.6
+295352,0,0,0,15.6
+295353,0,0,0,15.6
+295354,0,0,0,15.6
+295355,0,0,0,15.6
+295356,0,0,0,15.6
+295357,0,0,0,15.6
+295358,0,0,0,15.6
+295359,0,0,0,15.6
+295360,0,0,0,15.6
+295361,0,0,0,15.6
+295362,0,0,0,15.6
+295363,0,0,0,15.6
+295364,0,0,0,15.6
+295365,0,0,663541.1183,15.6
+295366,0,0,0,15.6
+295367,0,0,0,15.6
+295368,0,0,0,15.6
+295369,0,0,0,15.6
+295370,0,0,0,15.6
+295371,0,0,0,15.6
+295372,0,366477.3297,0,15.6
+295373,0,0,0,15.6
+295374,0,0,0,15.6
+295375,0,0,0,15.6
+295376,335455.0463,0,0,15.6
+295377,0,0,0,15.6
+295378,0,0,0,15.6
+295379,0,0,0,15.6
+295380,0,0,0,15.6
+295381,0,0,0,15.6
+295382,0,0,0,15.6
+295383,0,0,0,15.6
+295384,0,0,0,15.6
+295385,0,0,0,15.6
+295386,0,0,0,15.6
+295387,0,0,0,15.6
+295388,0,0,0,15.6
+295389,0,0,0,15.6
+295390,0,0,0,15.6
+295391,0,0,0,15.6
+295392,0,0,0,15.6
+295393,0,0,0,15.6
+295394,0,0,0,15.6
+295395,0,0,0,15.6
+295396,0,0,0,15.6
+295397,0,0,0,15.6
+295398,0,0,0,15.6
+295399,0,0,664672.1292,15.6
+295400,0,0,0,15.6
+295401,0,0,0,15.6
+295402,0,0,0,15.6
+295403,0,0,0,15.6
+295404,0,0,0,15.6
+295405,0,0,0,15.6
+295406,0,0,0,15.6
+295407,0,367123.3419,0,15.6
+295408,0,0,0,15.6
+295409,0,0,0,15.6
+295410,336490.3934,0,0,15.6
+295411,0,0,0,15.6
+295412,0,0,0,15.6
+295413,0,0,0,15.6
+295414,0,0,0,15.6
+295415,0,0,0,15.6
+295416,0,0,0,15.6
+295417,0,0,0,15.6
+295418,0,0,0,15.6
+295419,0,0,0,15.6
+295420,0,0,0,15.6
+295421,0,0,0,15.6
+295422,0,0,0,15.6
+295423,0,0,0,15.6
+295424,0,0,0,15.6
+295425,0,0,0,15.6
+295426,0,0,0,15.6
+295427,0,0,0,15.6
+295428,0,0,0,15.6
+295429,0,0,0,15.6
+295430,0,0,0,15.6
+295431,0,0,0,15.6
+295432,0,0,0,15.6
+295433,0,0,663165.1637,15.6
+295434,0,0,0,15.6
+295435,0,0,0,15.6
+295436,0,0,0,15.6
+295437,0,0,0,15.6
+295438,0,0,0,15.6
+295439,0,0,0,15.6
+295440,0,0,0,17.8
+295441,0,365984.5083,0,17.8
+295442,0,185.6626973,0,17.8
+295443,0,1681.35624,0,17.8
+295444,337477.8809,0,0,17.8
+295445,0,0,0,17.8
+295446,0,0,0,17.8
+295447,0,0,0,17.8
+295448,0,0,0,17.8
+295449,0,0,0,17.8
+295450,0,0,0,17.8
+295451,0,0,0,17.8
+295452,0,0,0,17.8
+295453,0,0,0,17.8
+295454,0,0,0,17.8
+295455,0,0,0,17.8
+295456,0,0,0,17.8
+295457,0,0,0,17.8
+295458,0,0,0,17.8
+295459,0,0,0,17.8
+295460,0,0,0,17.8
+295461,0,0,0,17.8
+295462,0,0,0,17.8
+295463,0,0,0,17.8
+295464,0,0,0,17.8
+295465,0,0,0,17.8
+295466,0,0,0,17.8
+295467,0,0,663970.6749,17.8
+295468,0,0,0,17.8
+295469,0,0,0,17.8
+295470,0,0,0,17.8
+295471,0,0,0,17.8
+295472,0,0,0,17.8
+295473,0,0,0,17.8
+295474,0,0,0,17.8
+295475,0,367102.9826,0,17.8
+295476,0,0,0,17.8
+295477,0,0,0,17.8
+295478,335871.8411,0,0,17.8
+295479,0,0,0,17.8
+295480,0,0,0,17.8
+295481,0,0,0,17.8
+295482,0,0,0,17.8
+295483,0,0,0,17.8
+295484,0,0,0,17.8
+295485,0,0,0,17.8
+295486,0,0,0,17.8
+295487,0,0,0,17.8
+295488,0,0,0,17.8
+295489,0,0,0,17.8
+295490,0,0,0,17.8
+295491,0,0,0,17.8
+295492,0,0,0,17.8
+295493,0,0,0,17.8
+295494,0,0,0,17.8
+295495,0,0,0,17.8
+295496,0,0,0,17.8
+295497,0,0,0,17.8
+295498,0,0,0,17.8
+295499,0,0,0,17.8
+295500,0,0,0,20
+295501,12046.2272,0,665067.2256,20
+295502,0,0,0,20
+295503,0,0,0,20
+295504,0,0,0,20
+295505,14990.95828,0,0,20
+295506,26250.35437,3816.864435,0,20
+295507,17020.02051,50483.40206,0,20
+295508,32846.50893,47917.15834,0,20
+295509,32092.12316,40464.08675,0,20
+295510,30384.41994,48455.50928,0,20
+295511,31503.17733,56871.48467,0,20
+295512,31799.98931,56751.20003,0,20
+295513,31682.53624,56168.85082,0,20
+295514,32494.66871,57630.70488,0,20
+295515,31984.85812,59024.77716,0,20
+295516,32175.43531,59563.33205,0,20
+295517,32152.0347,59830.53896,0,20
+295518,31989.51513,60914.18484,0,20
+295519,32002.02814,61168.24862,0,20
+295520,32098.6416,61975.88585,0,20
+295521,32036.51714,62537.23675,0,20
+295522,32184.87073,62792.33286,0,20
+295523,31880.48353,63370.28575,0,20
+295524,31847.67916,64259.29034,0,20
+295525,32011.84494,63971.60542,0,20
+295526,31650.71666,65124.63055,0,20
+295527,31850.63227,65226.41875,0,20
+295528,31651.29723,65729.04932,0,20
+295529,31472.53214,66348.75511,0,20
+295530,31459.12488,66438.48468,0,20
+295531,31461.30868,67021.74823,0,20
+295532,31235.95694,67469.42766,0,20
+295533,31084.84935,67694.13743,0,20
+295534,30994.26313,68271.35285,0,20
+295535,31080.29432,68626.57365,0,20
+295536,30860.0812,68940.04374,0,20
+295537,30865.05887,69295.34984,0,20
+295538,31763.98533,69582.41983,0,20
+295539,31934.2372,70195.32833,0,20
+295540,31934.36551,70042.61661,0,20
+295541,31958.19098,71133.72533,0,20
+295542,31752.04302,70573.44326,0,20
+295543,32000.21504,71598.38582,0,20
+295544,31874.14065,71656.95078,0,20
+295545,31796.32558,71676.88001,0,20
+295546,31825.1382,72531.80978,0,20
+295547,31834.38929,72441.49213,0,20
+295548,31810.70641,72964.45694,0,20
+295549,31675.2427,72990.91026,0,20
+295550,31844.64686,73175.77832,0,20
+295551,31756.60595,74058.52657,0,20
+295552,31682.76432,73588.16537,0,20
+295553,31688.06636,74290.16539,0,20
+295554,31689.09615,74385.82249,0,20
+295555,31465.90512,74623.55626,0,20
+295556,31614.36268,74966.71396,0,20
+295557,31599.60265,75059.19817,0,20
+295558,31272.02047,75534.13849,0,20
+295559,31720.50754,75518.83996,0,20
+295560,31319.94464,75930.13303,0,21
+295561,27405.0217,69535.73174,0,21
+295562,26865.78,69465.63882,0,21
+295563,26712.70101,68791.17452,0,21
+295564,26736.96071,69390.12377,0,21
+295565,26462.38297,69254.3539,0,21
+295566,26088.43059,69425.63093,0,21
+295567,26474.50959,69390.00178,0,21
+295568,25862.80106,69751.0689,0,21
+295569,26036.98836,69430.45772,0,21
+295570,25930.71344,69880.21943,0,21
+295571,25612.16042,69910.93321,0,21
+295572,25602.1014,69923.07218,0,21
+295573,25409.16126,69923.95482,0,21
+295574,25569.59857,70422.55104,0,21
+295575,25064.43154,70005.06695,0,21
+295576,25353.33547,70657.02825,0,21
+295577,24835.18013,70243.43023,0,21
+295578,25020.43659,70671.2551,0,21
+295579,24913.25509,70686.85448,0,21
+295580,24604.98207,70713.01989,0,21
+295581,24645.01962,70872.92249,0,21
+295582,24482.90754,70829.49119,0,21
+295583,24336.67772,70933.30573,0,21
+295584,24315.07799,71254.64914,0,21
+295585,24200.76159,71314.82479,0,21
+295586,23907.89641,71105.0786,0,21
+295587,23943.27885,71428.34156,0,21
+295588,23869.93053,71365.80071,0,21
+295589,23713.51412,71839.78389,0,21
+295590,23533.9967,71486.18912,0,21
+295591,23252.49282,71609.99343,0,21
+295592,22761.23736,71857.3197,0,21
+295593,22752.83055,71755.53015,0,21
+295594,22026.34094,71881.63599,0,21
+295595,21735.04538,72120.36861,0,21
+295596,21268.93271,71637.44209,0,21
+295597,20981.93301,72160.9198,0,21
+295598,20349.46502,71990.71892,0,21
+295599,19987.25236,72182.11512,0,21
+295600,19435.80407,71763.08755,0,21
+295601,19142.20545,72520.56913,0,21
+295602,18406.20051,71963.4381,0,21
+295603,18317.3178,72554.43853,0,21
+295604,17329.51224,72005.9008,0,21
+295605,17123.19584,72468.54113,0,21
+295606,16557.45784,72419.7038,0,21
+295607,16012.05753,72253.14312,0,21
+295608,15425.65437,72625.82944,0,21
+295609,15071.87232,72176.1584,0,21
+295610,14356.34465,72729.47099,0,21
+295611,14175.01242,72281.71582,0,21
+295612,14213.72269,72708.37236,0,21
+295613,13932.7645,72303.95186,0,21
+295614,13893.79982,72896.24859,0,21
+295615,13664.31048,72451.97551,0,21
+295616,13545.03072,72331.83914,0,21
+295617,13524.83046,73143.84051,0,21
+295618,13192.69077,72353.23837,0,21
+295619,13284.80611,72649.68028,0,21
+295620,12903.83458,72649.70836,0,21
+295621,729.5817961,23951.26681,0,21
+295622,642.2039285,20541.64108,0,21
+295623,612.7429336,19672.99626,0,21
+295624,568.2166057,19059.38287,0,21
+295625,553.2817374,18448.69142,0,21
+295626,523.2670818,17749.03262,0,21
+295627,493.0520644,17235.75418,0,21
+295628,462.627184,16981.47495,0,21
+295629,462.6271847,16185.1657,0,21
+295630,401.1033165,15720.10989,0,21
+295631,416.5724498,15645.57633,0,21
+295632,369.9779025,15028.46487,0,21
+295633,338.5889108,14835.72647,0,21
+295634,338.58891,14409.46379,0,21
+295635,306.9167483,14096.71611,0,21
+295636,274.9377898,13971.67153,0,21
+295637,258.8244359,13464.62698,0,21
+295638,242.6229359,13023.49219,0,21
+295639,209.9353825,13040.86176,0,21
+295640,193.4373735,12445.14477,0,21
+295641,176.8269304,12376.20108,0,21
+295642,126.2226458,11878.47113,0,21
+295643,143.231475,11794.86743,0,21
+295644,82.94363566,11200.29212,0,21
+295645,74.13125533,11233.68533,0,21
+295646,56.30808095,10767.9358,0,21
+295647,19.54816681,10542.2371,0,21
+295648,0,10452.90237,0,21
+295649,0,9705.072493,0,21
+295650,0,9773.286856,0,21
+295651,0,9765.708655,0,21
+295652,0,9080.441763,0,21
+295653,0,8947.355809,0,21
+295654,0,8886.653209,0,21
+295655,0,8656.542373,0,21
+295656,0,8085.515435,0,21
+295657,0,8034.729493,0,21
+295658,0,8060.302152,0,21
+295659,0,7604.205983,0,21
+295660,0,7353.943337,0,21
+295661,0,7415.755531,0,21
+295662,0,6928.425973,0,21
+295663,0,6729.79271,0,21
+295664,0,6704.532181,0,21
+295665,0,6300.631973,0,21
+295666,0,6267.716565,0,21
+295667,0,5861.379184,0,21
+295668,0,5958.141045,0,21
+295669,0,5428.063105,0,21
+295670,0,5495.66898,0,21
+295671,0,5115.887902,0,21
+295672,0,5153.653367,0,21
+295673,0,4684.346771,0,21
+295674,0,4876.031596,0,21
+295675,0,4461.502768,0,21
+295676,0,4026.198723,0,21
+295677,0,4424.729607,0,21
+295678,0,3731.355666,0,21
+295679,0,3944.772448,0,21
+295680,0,3540.443305,0,21
+295681,0,3512.521043,0,21
+295682,0,3206.04236,0,21
+295683,0,3048.740406,0,21
+295684,0,2893.817072,0,21
+295685,0,2559.384295,0,21
+295686,0,2718.697773,0,21
+295687,0,2070.244879,0,21
+295688,0,2533.107034,0,21
+295689,0,1719.880899,0,21
+295690,0,2060.761045,0,21
+295691,0,1511.550488,0,21
+295692,0,1641.594804,0,21
+295693,0,1492.459492,0,21
+295694,0,1296.711868,0,21
+295695,0,1473.419244,0,21
+295696,0,1065.107515,0,21
+295697,0,1231.751933,0,21
+295698,0,1250.770213,0,21
+295699,0,990.4449959,0,21
+295700,0,999.8382112,0,21
+295701,0,963.3933892,0,21
+295702,0,953.796065,0,21
+295703,0,934.0836274,0,21
+295704,0,907.4901306,0,21
+295705,0,887.4935458,0,21
+295706,0,887.7776872,0,21
+295707,0,831.2302153,0,21
+295708,0,840.6693778,0,21
+295709,0,794.1928495,0,21
+295710,0,811.0644075,0,21
+295711,0,756.8004983,0,21
+295712,0,753.9392937,0,21
+295713,0,726.5850707,0,21
+295714,0,692.9866672,0,21
+295715,0,692.5950494,0,21
+295716,0,668.872418,0,21
+295717,0,624.4494003,0,21
+295718,0,620.7155871,0,21
+295719,0,589.7233186,0,21
+295720,0,599.8877327,0,21
+295721,0,540.5515467,0,21
+295722,0,526.6188066,0,21
+295723,0,519.770151,0,21
+295724,0,498.6399708,0,21
+295725,0,481.2953046,0,21
+295726,0,463.8105237,0,21
+295727,0,456.5528777,0,21
+295728,0,414.286059,0,21
+295729,0,442.5048222,0,21
+295730,0,391.9216959,0,21
+295731,0,374.9350922,0,21
+295732,0,391.921697,0,21
+295733,0,334.9583832,0,21
+295734,0,363.5313337,0,21
+295735,0,334.9583828,0,21
+295736,0,334.9583809,0,21
+295737,0,334.9583826,0,21
+295738,0,306.1900053,0,21
+295739,0,291.727898,0,21
+295740,0,306.1900045,0,21
+295741,0,218.543772,0,21
+295742,0,248.0031042,0,21
+295743,0,3724.049522,0,21
+295744,0,5199.706186,0,21
+295745,0,3259.681811,0,21
+295746,0,3857.703457,0,21
+295747,0,3857.703481,0,21
+295748,0,3827.647371,0,21
+295749,0,3842.717819,0,21
+295750,0,3679.086782,0,21
+295751,0,3648.663118,0,21
+295752,0,3812.485391,0,21
+295753,0,3499.48763,0,21
+295754,0,3617.79794,0,21
+295755,0,3499.487627,0,21
+295756,0,3602.165535,0,21
+295757,0,3318.810112,0,21
+295758,0,3437.196742,0,21
+295759,0,3287.384417,0,21
+295760,0,3437.196744,0,21
+295761,0,3120.924767,0,21
+295762,0,3255.167102,0,21
+295763,0,3104.69386,0,21
+295764,0,3088.120342,0,21
+295765,0,3088.120365,0,21
+295766,0,3070.8772,0,21
+295767,0,2919.716706,0,21
+295768,0,2919.71668,0,21
+295769,0,2919.716703,0,21
+295770,0,2767.83984,0,21
+295771,0,2767.839854,0,21
+295772,0,2615.2144,0,21
+295773,0,2615.21441,0,21
+295774,0,2307.569382,0,21
+295775,0,2307.569394,0,21
+295776,0,2152.463602,0,21
+295777,0,2152.463614,0,21
+295778,0,1839.422484,0,21
+295779,0,1839.422491,0,21
+295780,0,1681.356302,0,21
+295781,0,1522.1527,0,21
+295782,0,1361.711004,0,21
+295783,0,1361.711011,0,21
+295784,0,1036.585647,0,21
+295785,0,1036.585652,0,21
+295786,0,704.4956734,0,21
+295787,0,704.495674,0,21
+295788,0,535.0413807,0,21
+295789,0,362.5219346,0,21
+295790,0,185.6626982,0,21
+295791,0,0,0,21
+295792,0,0,0,21
+295793,0,0,0,21
+295794,0,0,0,21
+295795,0,0,0,21
+295796,0,0,0,21
+295797,0,0,0,21
+295798,0,0,0,21
+295799,0,0,0,21
+295800,0,0,0,21
+295801,0,0,0,21
+295802,0,0,0,21
+295803,0,0,0,21
+295804,0,0,0,21
+295805,0,0,0,21
+295806,0,0,0,21
+295807,0,0,0,21
+295808,0,0,0,21
+295809,0,0,0,21
+295810,0,0,0,21
+295811,0,0,0,21
+295812,0,0,0,21
+295813,0,0,0,21
+295814,0,0,0,21
+295815,0,0,0,21
+295816,0,0,0,21
+295817,0,0,0,21
+295818,0,0,0,21
+295819,0,0,0,21
+295820,0,0,0,21
+295821,0,0,0,21
+295822,0,0,0,21
+295823,0,0,0,21
+295824,0,0,0,21
+295825,0,0,0,21
+295826,0,0,0,21
+295827,0,0,0,21
+295828,0,0,0,21
+295829,0,0,0,21
+295830,0,0,0,21
+295831,0,0,0,21
+295832,0,0,0,21
+295833,0,0,0,21
+295834,0,0,0,21
+295835,0,0,0,21
+295836,0,0,0,21
+295837,0,0,0,21
+295838,0,0,0,21
+295839,0,0,0,21
+295840,0,0,0,21
+295841,0,0,0,21
+295842,0,0,0,21
+295843,0,0,0,21
+295844,0,0,0,21
+295845,0,0,0,21
+295846,0,0,0,21
+295847,0,0,0,21
+295848,0,0,0,21
+295849,0,0,0,21
+295850,0,0,0,21
+295851,0,0,0,21
+295852,0,0,0,21
+295853,0,0,0,21
+295854,0,0,0,21
+295855,0,0,0,21
+295856,0,0,0,21
+295857,0,0,0,21
+295858,0,0,0,21
+295859,0,0,0,21
+295860,0,0,0,21
+295861,0,0,0,21
+295862,0,0,0,21
+295863,0,0,0,21
+295864,0,0,0,21
+295865,0,0,0,21
+295866,0,0,0,21
+295867,0,0,0,21
+295868,0,0,0,21
+295869,0,0,0,21
+295870,0,0,0,21
+295871,0,0,0,21
+295872,0,0,0,21
+295873,0,0,0,21
+295874,0,0,0,21
+295875,0,0,0,21
+295876,0,0,0,21
+295877,0,0,0,21
+295878,0,0,0,21
+295879,0,0,0,21
+295880,0,0,0,21
+295881,0,0,0,21
+295882,0,0,0,21
+295883,0,0,0,21
+295884,0,0,0,21
+295885,0,0,0,21
+295886,0,0,0,21
+295887,0,0,0,21
+295888,0,0,0,21
+295889,0,0,0,21
+295890,0,0,0,21
+295891,0,0,0,21
+295892,0,0,0,21
+295893,0,0,0,21
+295894,0,0,0,21
+295895,0,0,0,21
+295896,0,0,0,21
+295897,0,0,0,21
+295898,0,0,0,21
+295899,0,0,0,21
+295900,0,0,0,21
+295901,0,0,0,21
+295902,0,0,0,21
+295903,0,0,0,21
+295904,0,0,0,21
+295905,0,0,0,21
+295906,0,0,0,21
+295907,0,0,0,21
+295908,0,0,0,21
+295909,0,0,0,21
+295910,0,0,0,21
+295911,0,0,0,21
+295912,0,0,0,21
+295913,0,0,0,21
+295914,0,0,0,21
+295915,0,0,0,21
+295916,0,0,0,21
+295917,0,0,0,21
+295918,0,0,0,21
+295919,0,0,0,21
+295920,0,0,0,21
+295921,0,0,0,21
+295922,0,0,0,21
+295923,0,0,0,21
+295924,0,0,0,21
+295925,0,0,0,21
+295926,0,0,0,21
+295927,0,0,0,21
+295928,0,0,0,21
+295929,0,0,0,21
+295930,0,0,0,21
+295931,0,0,0,21
+295932,0,0,0,21
+295933,0,0,0,21
+295934,0,0,0,21
+295935,0,0,0,21
+295936,0,0,0,21
+295937,0,0,0,21
+295938,0,0,0,21
+295939,0,0,0,21
+295940,0,0,0,21
+295941,0,0,0,21
+295942,0,0,0,21
+295943,0,0,0,21
+295944,0,0,0,21
+295945,0,0,0,21
+295946,0,0,0,21
+295947,0,0,0,21
+295948,0,0,0,21
+295949,0,0,0,21
+295950,0,0,0,21
+295951,0,0,0,21
+295952,0,0,0,21
+295953,0,0,0,21
+295954,0,0,0,21
+295955,0,0,0,21
+295956,0,0,0,21
+295957,0,0,0,21
+295958,0,0,0,21
+295959,0,0,0,21
+295960,0,0,0,21
+295961,0,0,0,21
+295962,0,0,0,21
+295963,0,0,0,21
+295964,0,0,0,21
+295965,0,0,0,21
+295966,0,0,0,21
+295967,0,0,0,21
+295968,0,0,0,21
+295969,0,0,0,21
+295970,0,0,0,21
+295971,0,0,0,21
+295972,0,0,0,21
+295973,0,0,0,21
+295974,0,0,0,21
+295975,0,0,0,21
+295976,0,0,0,21
+295977,0,0,0,21
+295978,0,0,0,21
+295979,0,0,0,21
+295980,0,0,0,21
+295981,0,0,0,21
+295982,0,0,0,21
+295983,0,0,0,21
+295984,0,0,0,21
+295985,0,0,0,21
+295986,0,0,0,21
+295987,0,0,0,21
+295988,0,0,0,21
+295989,0,0,0,21
+295990,0,0,0,21
+295991,0,0,0,21
+295992,0,0,0,21
+295993,0,0,0,21
+295994,0,0,0,21
+295995,0,0,0,21
+295996,0,0,0,21
+295997,0,0,0,21
+295998,0,0,0,21
+295999,0,0,0,21
+296000,0,0,0,21
+296001,0,0,0,21
+296002,0,0,0,21
+296003,0,0,0,21
+296004,0,0,0,21
+296005,0,0,0,21
+296006,0,0,0,21
+296007,0,0,0,21
+296008,0,0,0,21
+296009,0,0,0,21
+296010,0,0,0,21
+296011,0,0,0,21
+296012,0,0,0,21
+296013,0,0,0,21
+296014,0,0,0,21
+296015,0,0,0,21
+296016,0,0,0,21
+296017,0,0,0,21
+296018,0,0,0,21
+296019,0,0,0,21
+296020,0,0,0,21
+296021,0,0,0,21
+296022,0,0,0,21
+296023,0,0,0,21
+296024,0,0,0,21
+296025,0,0,0,21
+296026,0,0,0,21
+296027,0,0,0,21
+296028,0,0,0,21
+296029,0,0,0,21
+296030,0,0,0,21
+296031,0,0,0,21
+296032,0,0,0,21
+296033,0,0,0,21
+296034,0,0,0,21
+296035,0,0,0,21
+296036,0,0,0,21
+296037,0,0,0,21
+296038,0,0,0,21
+296039,0,0,0,21
+296040,0,0,0,21
+296041,0,0,0,21
+296042,0,0,0,21
+296043,0,0,0,21
+296044,0,0,0,21
+296045,0,0,0,21
+296046,0,0,0,21
+296047,0,0,0,21
+296048,0,0,0,21
+296049,0,0,0,21
+296050,0,0,0,21
+296051,0,0,0,21
+296052,0,0,0,21
+296053,0,0,0,21
+296054,0,0,0,21
+296055,0,0,0,21
+296056,0,0,0,21
+296057,0,0,0,21
+296058,0,0,0,21
+296059,0,0,0,21
+296060,0,0,0,21
+296061,0,0,0,21
+296062,0,0,0,21
+296063,0,0,0,21
+296064,0,0,0,21
+296065,0,0,0,21
+296066,0,0,0,21
+296067,0,0,0,21
+296068,0,0,0,21
+296069,0,0,0,21
+296070,0,0,0,21
+296071,0,0,0,21
+296072,0,0,0,21
+296073,0,0,0,21
+296074,0,0,0,21
+296075,0,0,0,21
+296076,0,0,0,21
+296077,0,0,0,21
+296078,0,0,0,21
+296079,0,0,0,21
+296080,0,0,0,21
+296081,0,0,0,21
+296082,0,0,0,21
+296083,0,0,0,21
+296084,0,0,0,21
+296085,0,0,0,21
+296086,0,0,0,21
+296087,0,0,0,21
+296088,0,0,0,21
+296089,0,0,0,21
+296090,0,0,0,21
+296091,0,0,0,21
+296092,0,0,0,21
+296093,0,0,0,21
+296094,0,0,0,21
+296095,0,0,0,21
+296096,0,0,0,21
+296097,0,0,0,21
+296098,0,0,0,21
+296099,0,0,0,21
+296100,0,0,0,21
+296101,0,0,0,21
+296102,0,0,0,21
+296103,0,0,0,21
+296104,0,0,0,21
+296105,0,0,0,21
+296106,0,0,0,21
+296107,0,0,0,21
+296108,0,0,0,21
+296109,0,0,0,21
+296110,0,0,0,21
+296111,0,0,0,21
+296112,0,0,0,21
+296113,0,0,0,21
+296114,0,0,0,21
+296115,0,0,0,21
+296116,0,0,0,21
+296117,0,0,0,21
+296118,0,0,0,21
+296119,0,0,0,21
+296120,0,0,0,21
+296121,0,0,0,21
+296122,0,0,0,21
+296123,0,0,0,21
+296124,0,0,0,21
+296125,0,0,0,21
+296126,0,0,0,21
+296127,0,0,0,21
+296128,0,0,0,21
+296129,0,0,0,21
+296130,0,0,0,21
+296131,0,0,0,21
+296132,0,0,0,21
+296133,0,0,0,21
+296134,0,0,0,21
+296135,0,0,0,21
+296136,0,0,0,21
+296137,0,0,0,21
+296138,0,0,0,21
+296139,0,0,0,21
+296140,0,0,0,21
+296141,0,0,0,21
+296142,0,0,0,21
+296143,0,0,0,21
+296144,0,0,0,21
+296145,0,0,0,21
+296146,0,0,0,21
+296147,0,0,0,21
+296148,0,0,0,21
+296149,0,0,0,21
+296150,0,0,0,21
+296151,0,0,0,21
+296152,0,0,0,21
+296153,0,0,0,21
+296154,0,0,0,21
+296155,0,0,0,21
+296156,0,0,0,21
+296157,0,0,0,21
+296158,0,0,0,21
+296159,0,0,0,21
+296160,0,0,0,21
+296161,0,0,0,21
+296162,0,0,0,21
+296163,0,0,0,21
+296164,0,0,0,21
+296165,0,0,0,21
+296166,0,0,0,21
+296167,0,0,0,21
+296168,0,0,0,21
+296169,0,0,0,21
+296170,0,0,0,21
+296171,0,0,0,21
+296172,0,0,0,21
+296173,0,0,0,21
+296174,0,0,0,21
+296175,0,0,0,21
+296176,0,0,0,21
+296177,0,0,0,21
+296178,0,0,0,21
+296179,0,0,0,21
+296180,0,0,0,21
+296181,0,0,0,21
+296182,0,0,0,21
+296183,0,0,0,21
+296184,0,0,0,21
+296185,0,0,0,21
+296186,0,0,0,21
+296187,0,0,0,21
+296188,0,0,0,21
+296189,0,0,0,21
+296190,0,0,0,21
+296191,0,0,0,21
+296192,0,0,0,21
+296193,0,0,0,21
+296194,0,0,0,21
+296195,0,0,0,21
+296196,0,0,0,21
+296197,0,0,0,21
+296198,0,0,0,21
+296199,0,0,0,21
+296200,0,0,0,21
+296201,0,0,0,21
+296202,0,0,0,21
+296203,0,0,0,21
+296204,0,0,0,21
+296205,0,0,0,21
+296206,0,0,0,21
+296207,0,0,0,21
+296208,0,0,0,21
+296209,0,0,0,21
+296210,0,0,0,21
+296211,0,0,0,21
+296212,0,0,0,21
+296213,0,0,0,21
+296214,0,0,0,21
+296215,0,0,0,21
+296216,0,0,0,21
+296217,0,0,0,21
+296218,0,0,0,21
+296219,0,0,0,21
+296220,0,0,0,21
+296221,0,0,0,21
+296222,0,0,0,21
+296223,0,0,0,21
+296224,0,0,0,21
+296225,0,0,0,21
+296226,0,0,0,21
+296227,0,0,0,21
+296228,0,0,0,21
+296229,0,0,0,21
+296230,0,0,0,21
+296231,0,0,0,21
+296232,0,0,0,21
+296233,0,0,0,21
+296234,0,0,0,21
+296235,0,0,0,21
+296236,0,0,0,21
+296237,0,0,0,21
+296238,0,0,0,21
+296239,0,0,0,21
+296240,0,0,0,21
+296241,0,0,0,21
+296242,0,0,0,21
+296243,0,0,0,21
+296244,0,871.5414715,0,21
+296245,0,1036.585687,0,21
+296246,0,871.541444,0,21
+296247,0,1361.711104,0,21
+296248,0,1199.907494,0,21
+296249,0,1681.356404,0,21
+296250,0,1522.152812,0,21
+296251,0,1839.42263,0,21
+296252,0,1996.434897,0,21
+296253,0,2152.463828,0,21
+296254,0,2307.569608,0,21
+296255,0,2461.804617,0,21
+296256,0,2615.214737,0,21
+296257,0,2767.840167,0,21
+296258,0,3070.877589,0,21
+296259,0,3070.877675,0,21
+296260,0,3221.350909,0,21
+296261,0,3520.338791,0,21
+296262,0,3668.899539,0,21
+296263,0,3668.899465,0,21
+296264,0,3964.255271,0,21
+296265,0,4111.086506,0,21
+296266,0,4257.374718,0,21
+296267,0,4403.135111,0,21
+296268,0,4548.381689,0,21
+296269,0,4837.383952,0,21
+296270,0,4837.383912,0,21
+296271,0,4981.163634,0,21
+296272,0,5267.333777,0,21
+296273,0,5409.744235,0,21
+296274,0,5474.19586,0,21
+296275,0,5837.776903,0,21
+296276,0,5959.237649,0,21
+296277,0,6119.612325,0,21
+296278,0,6298.706318,0,21
+296279,0,6448.212148,0,21
+296280,0,6616.308531,0,21
+296281,0,6894.195528,0,21
+296282,0,6793.096567,0,21
+296283,0,7208.247641,0,21
+296284,0,7098.171147,0,21
+296285,0,7383.099498,0,21
+296286,0,7401.541761,0,21
+296287,0,7694.13254,0,21
+296288,0,7712.384724,0,21
+296289,0,7848.986324,0,21
+296290,0,8021.486752,0,21
+296291,0,8157.410637,0,21
+296292,0,8184.372673,0,21
+296293,0,8464.175371,0,21
+296294,0,8616.953553,0,21
+296295,0,8634.717189,0,21
+296296,0,8778.191143,0,21
+296297,0,8938.953301,0,21
+296298,0,9072.944913,0,21
+296299,0,9224.180817,0,21
+296300,0,9392.46762,0,21
+296301,0,9525.5432,0,21
+296302,0,9692.977055,0,21
+296303,0,9684.336169,0,21
+296304,0,9974.885381,0,21
+296305,0,10123.96421,0,21
+296306,0,10141.08472,0,21
+296307,0,10289.76216,0,21
+296308,0,10552.14335,0,21
+296309,0,10586.10628,0,21
+296310,0,10586.10624,0,21
+296311,0,10881.12513,0,21
+296312,0,10994.50008,0,21
+296313,0,10897.92269,0,21
+296314,0,11304.5326,0,21
+296315,0,11174.84673,0,21
+296316,0,11450.65031,0,21
+296317,0,11615.0889,0,21
+296318,0,11755.20327,0,21
+296319,0,11991.81021,0,21
+296320,0,11877.61069,0,21
+296321,0,12338.21913,0,21
+296322,0,12081.20044,0,21
+296323,0,12556.56211,0,21
+296324,0,12412.02095,0,21
+296325,0,14573.72306,0,21
+296326,0,14188.95868,0,21
+296327,0,14629.68262,0,21
+296328,0,15143.68033,0,21
+296329,0,15428.34649,0,21
+296330,0,15722.25898,0,21
+296331,0,16229.57495,0,21
+296332,0,16381.71947,0,21
+296333,0,16549.40546,0,21
+296334,0,17530.15723,0,21
+296335,0,17215.47246,0,21
+296336,0,17846.25082,0,21
+296337,0,18338.01596,0,21
+296338,0,18160.57064,0,21
+296339,0,18976.93939,0,21
+296340,0,18920.23711,0,21
+296341,0,20932.07115,0,21
+296342,0,21236.71989,0,21
+296343,0,21617.2913,0,21
+296344,0,22324.49184,0,21
+296345,0,22619.59501,0,21
+296346,0,23001.5344,0,21
+296347,0,23495.63727,0,21
+296348,0,23648.83902,0,21
+296349,0,24468.15378,0,21
+296350,0,24282.78194,0,21
+296351,0,25221.04603,0,21
+296352,0,25371.00069,0,21
+296353,0,25735.76264,0,21
+296354,0,26240.77421,0,21
+296355,0,26481.82646,0,21
+296356,0,26950.53335,0,21
+296357,0,27370.28443,0,21
+296358,0,27482.30316,0,21
+296359,0,28155.49904,0,21
+296360,0,28244.28402,0,21
+296361,0,28914.38951,0,21
+296362,0,29039.11828,0,21
+296363,0,29439.98829,0,21
+296364,0,29958.53743,0,21
+296365,0,30073.0295,0,21
+296366,0,30481.18318,0,21
+296367,0,31061.267,0,21
+296368,0,31145.65893,0,21
+296369,0,31648.13077,0,21
+296370,0,31866.85808,0,21
+296371,0,32247.49836,0,21
+296372,0,32785.92956,0,21
+296373,0,32772.49739,0,21
+296374,0,33239.6707,0,21
+296375,0,33951.32353,0,21
+296376,0,33821.2613,0,21
+296377,0,34451.62618,0,21
+296378,0,34531.25587,0,21
+296379,0,35301.98987,0,21
+296380,0,35249.77763,0,21
+296381,0,35696.61951,0,21
+296382,0,36069.86041,0,21
+296383,0,36539.23147,0,21
+296384,0,36666.96595,0,21
+296385,0,36809.13746,0,21
+296386,0,37794.15567,0,21
+296387,0,37439.07416,0,21
+296388,0,38100.12841,0,21
+296389,0,38523.98437,0,21
+296390,0,38393.03951,0,21
+296391,0,39239.09113,0,21
+296392,0,39323.55004,0,21
+296393,0,40004.80443,0,21
+296394,0,39990.03569,0,21
+296395,0,40519.46297,0,21
+296396,0,40955.12984,0,21
+296397,0,40967.1065,0,21
+296398,0,41703.94322,0,21
+296399,0,41829.57473,0,21
+296400,0,42426.94615,0,21
+296401,0,42248.10795,0,21
+296402,0,42989.88202,0,21
+296403,0,43188.10138,0,21
+296404,0,43277.01076,0,21
+296405,0,43934.73855,0,21
+296406,0,43784.13822,0,21
+296407,0,44571.85709,0,21
+296408,0,44517.82247,0,21
+296409,0,44961.30128,0,21
+296410,0,45222.73309,0,21
+296411,0,47548.39981,0,21
+296412,0,46887.85277,0,21
+296413,0,47683.98385,0,21
+296414,0,48291.31456,0,21
+296415,0,48791.5189,0,21
+296416,0,49393.47045,0,21
+296417,0,49674.3528,0,21
+296418,0,50361.3953,0,21
+296419,0,50539.77111,0,21
+296420,0,51711.24582,0,21
+296421,0,51351.71721,0,21
+296422,0,52676.6145,0,21
+296423,0,52495.47882,0,21
+296424,0,53319.9613,0,21
+296425,0,53855.24195,0,21
+296426,0,54279.7223,0,21
+296427,0,54627.58488,0,21
+296428,0,55049.29983,0,21
+296429,0,55739.64949,0,21
+296430,0,56414.50724,0,21
+296431,0,56118.92379,0,21
+296432,0,57251.6735,0,21
+296433,0,57464.05788,0,21
+296434,0,57523.74642,0,21
+296435,0,58540.17443,0,21
+296436,0,58494.33194,0,21
+296437,0,59026.20299,0,21
+296438,0,59329.99631,0,21
+296439,0,60095.35847,0,21
+296440,0,59888.27255,0,21
+296441,0,60649.50252,0,21
+296442,0,61020.255,0,21
+296443,0,61392.93688,0,21
+296444,0,61718.25085,0,21
+296445,0,62122.59316,0,21
+296446,0,62615.42879,0,21
+296447,0,62714.87509,0,21
+296448,0,63217.20134,0,21
+296449,0,63465.12552,0,21
+296450,0,64145.46091,0,21
+296451,0,64090.00598,0,21
+296452,0,64632.24572,0,21
+296453,0,65182.26276,0,21
+296454,0,65134.48964,0,21
+296455,0,65830.77167,0,21
+296456,0,65965.49394,0,21
+296457,0,66538.43065,0,21
+296458,0,66680.9978,0,21
+296459,0,67059.59026,0,21
+296460,0,67305.47066,0,21
+296461,0,0,0,21
+296462,0,0,0,21
+296463,0,0,0,21
+296464,0,0,0,21
+296465,332080.5479,360849.1906,658972.8942,21
+296466,0,0,0,21
+296467,0,0,0,21
+296468,0,0,0,21
+296469,0,0,0,21
+296470,0,0,0,21
+296471,0,0,0,21
+296472,0,0,0,21
+296473,0,0,0,21
+296474,0,0,0,21
+296475,0,0,0,21
+296476,0,0,0,21
+296477,0,0,0,21
+296478,0,0,0,21
+296479,0,0,0,21
+296480,0,0,0,21
+296481,0,0,0,21
+296482,0,0,0,21
+296483,0,0,0,21
+296484,0,0,0,21
+296485,0,0,0,21
+296486,0,0,0,21
+296487,0,0,0,21
+296488,0,0,0,21
+296489,0,0,0,21
+296490,0,0,0,21
+296491,0,0,0,21
+296492,0,0,0,21
+296493,0,0,0,21
+296494,0,0,0,21
+296495,0,0,0,21
+296496,0,0,0,21
+296497,0,0,0,21
+296498,0,0,0,21
+296499,331634.6609,362986.9396,658920.8272,21
+296500,0,0,0,21
+296501,0,0,0,21
+296502,0,0,0,21
+296503,0,0,0,21
+296504,0,0,0,21
+296505,0,0,0,21
+296506,0,0,0,21
+296507,0,0,0,21
+296508,0,0,0,21
+296509,0,0,0,21
+296510,0,0,0,21
+296511,0,0,0,21
+296512,0,0,0,21
+296513,0,0,0,21
+296514,0,0,0,21
+296515,0,0,0,21
+296516,0,0,0,21
+296517,0,0,0,21
+296518,0,0,0,21
+296519,0,0,0,21
+296520,0,0,0,15.6
+296521,0,0,0,15.6
+296522,0,0,0,15.6
+296523,0,0,0,15.6
+296524,0,0,0,15.6
+296525,0,0,0,15.6
+296526,0,0,0,15.6
+296527,0,0,0,15.6
+296528,0,0,0,15.6
+296529,0,0,0,15.6
+296530,0,0,0,15.6
+296531,0,0,0,15.6
+296532,0,0,0,15.6
+296533,332461.2131,363801.0178,658874.6678,15.6
+296534,0,0,0,15.6
+296535,0,0,0,15.6
+296536,0,0,0,15.6
+296537,0,0,0,15.6
+296538,0,0,0,15.6
+296539,0,0,0,15.6
+296540,0,0,0,15.6
+296541,0,0,0,15.6
+296542,0,0,0,15.6
+296543,0,0,0,15.6
+296544,0,0,0,15.6
+296545,0,0,0,15.6
+296546,0,0,0,15.6
+296547,0,0,0,15.6
+296548,0,0,0,15.6
+296549,0,0,0,15.6
+296550,0,0,0,15.6
+296551,0,0,0,15.6
+296552,0,0,0,15.6
+296553,0,0,0,15.6
+296554,0,0,0,15.6
+296555,0,0,0,15.6
+296556,0,0,0,15.6
+296557,0,0,0,15.6
+296558,0,0,0,15.6
+296559,0,0,0,15.6
+296560,0,0,0,15.6
+296561,0,0,0,15.6
+296562,0,0,0,15.6
+296563,0,0,0,15.6
+296564,0,0,0,15.6
+296565,0,0,0,15.6
+296566,0,0,0,15.6
+296567,333121.0893,364208.3318,658702.3482,15.6
+296568,0,0,0,15.6
+296569,0,0,0,15.6
+296570,0,0,0,15.6
+296571,0,0,0,15.6
+296572,0,0,0,15.6
+296573,0,0,0,15.6
+296574,0,0,0,15.6
+296575,0,0,0,15.6
+296576,0,0,0,15.6
+296577,0,0,0,15.6
+296578,0,0,0,15.6
+296579,0,0,0,15.6
+296580,0,0,0,15.6
+296581,0,0,0,15.6
+296582,0,0,0,15.6
+296583,0,0,0,15.6
+296584,0,0,0,15.6
+296585,0,0,0,15.6
+296586,0,0,0,15.6
+296587,0,0,0,15.6
+296588,0,0,0,15.6
+296589,0,0,0,15.6
+296590,0,0,0,15.6
+296591,0,0,0,15.6
+296592,0,0,0,15.6
+296593,0,0,0,15.6
+296594,0,0,0,15.6
+296595,0,0,0,15.6
+296596,0,0,0,15.6
+296597,0,0,0,15.6
+296598,0,0,0,15.6
+296599,0,0,0,15.6
+296600,0,0,0,15.6
+296601,0,365317.101,658363.3038,15.6
+296602,334490.2701,0,0,15.6
+296603,0,0,0,15.6
+296604,0,0,0,15.6
+296605,0,0,0,15.6
+296606,0,0,0,15.6
+296607,0,0,0,15.6
+296608,0,0,0,15.6
+296609,0,0,0,15.6
+296610,0,0,0,15.6
+296611,0,0,0,15.6
+296612,0,0,0,15.6
+296613,0,0,0,15.6
+296614,0,0,0,15.6
+296615,0,0,0,15.6
+296616,0,0,0,15.6
+296617,0,0,0,15.6
+296618,0,0,0,15.6
+296619,0,0,0,15.6
+296620,0,0,0,15.6
+296621,0,0,0,15.6
+296622,0,0,0,15.6
+296623,0,0,0,15.6
+296624,0,0,0,15.6
+296625,0,0,0,15.6
+296626,0,0,0,15.6
+296627,0,0,0,15.6
+296628,0,0,0,15.6
+296629,0,0,0,15.6
+296630,0,0,0,15.6
+296631,0,0,0,15.6
+296632,0,0,0,15.6
+296633,0,0,0,15.6
+296634,0,0,0,15.6
+296635,0,364775.6192,658608.6415,15.6
+296636,0,0,0,15.6
+296637,334177.2174,0,0,15.6
+296638,0,0,0,15.6
+296639,0,0,0,15.6
+296640,0,0,0,15.6
+296641,0,0,0,15.6
+296642,0,0,0,15.6
+296643,0,0,0,15.6
+296644,0,0,0,15.6
+296645,0,0,0,15.6
+296646,0,0,0,15.6
+296647,0,0,0,15.6
+296648,0,0,0,15.6
+296649,0,0,0,15.6
+296650,0,0,0,15.6
+296651,0,0,0,15.6
+296652,0,0,0,15.6
+296653,0,0,0,15.6
+296654,0,0,0,15.6
+296655,0,0,0,15.6
+296656,0,0,0,15.6
+296657,0,0,0,15.6
+296658,0,0,0,15.6
+296659,0,0,0,15.6
+296660,0,0,0,15.6
+296661,0,0,0,15.6
+296662,0,0,0,15.6
+296663,0,0,0,15.6
+296664,0,0,0,15.6
+296665,0,0,0,15.6
+296666,0,0,0,15.6
+296667,0,0,0,15.6
+296668,0,0,0,15.6
+296669,0,0,658398.4194,15.6
+296670,0,365091.4199,0,15.6
+296671,0,0,0,15.6
+296672,334404.292,0,0,15.6
+296673,0,0,0,15.6
+296674,0,0,0,15.6
+296675,0,0,0,15.6
+296676,0,0,0,15.6
+296677,0,0,0,15.6
+296678,0,0,0,15.6
+296679,0,0,0,15.6
+296680,0,0,0,15.6
+296681,0,0,0,15.6
+296682,0,0,0,15.6
+296683,0,0,0,15.6
+296684,0,0,0,15.6
+296685,0,0,0,15.6
+296686,0,0,0,15.6
+296687,0,0,0,15.6
+296688,0,0,0,15.6
+296689,0,0,0,15.6
+296690,0,0,0,15.6
+296691,0,0,0,15.6
+296692,0,0,0,15.6
+296693,0,0,0,15.6
+296694,0,0,0,15.6
+296695,0,0,0,15.6
+296696,0,0,0,15.6
+296697,0,0,0,15.6
+296698,0,0,0,15.6
+296699,0,0,0,15.6
+296700,0,0,0,15.6
+296701,0,0,0,15.6
+296702,0,0,0,15.6
+296703,0,0,658311.3301,15.6
+296704,0,0,0,15.6
+296705,0,366173.9194,0,15.6
+296706,0,0,0,15.6
+296707,335738.2533,0,0,15.6
+296708,0,0,0,15.6
+296709,0,0,0,15.6
+296710,0,0,0,15.6
+296711,0,0,0,15.6
+296712,0,0,0,15.6
+296713,0,0,0,15.6
+296714,0,0,0,15.6
+296715,0,0,0,15.6
+296716,0,0,0,15.6
+296717,0,0,0,15.6
+296718,0,0,0,15.6
+296719,0,0,0,15.6
+296720,0,0,0,15.6
+296721,0,0,0,15.6
+296722,0,0,0,15.6
+296723,0,0,0,15.6
+296724,0,0,0,15.6
+296725,0,0,0,15.6
+296726,0,0,0,15.6
+296727,0,0,0,15.6
+296728,0,0,0,15.6
+296729,0,0,0,15.6
+296730,0,0,0,15.6
+296731,0,0,0,15.6
+296732,0,0,0,15.6
+296733,0,0,0,15.6
+296734,0,0,0,15.6
+296735,0,0,0,15.6
+296736,0,0,0,15.6
+296737,0,0,657735.1586,15.6
+296738,0,0,0,15.6
+296739,0,0,0,15.6
+296740,0,365833.7614,0,15.6
+296741,0,0,0,15.6
+296742,335068.15,0,0,15.6
+296743,0,0,0,15.6
+296744,0,0,0,15.6
+296745,0,0,0,15.6
+296746,0,0,0,15.6
+296747,0,0,0,15.6
+296748,0,0,0,15.6
+296749,0,0,0,15.6
+296750,0,0,0,15.6
+296751,0,0,0,15.6
+296752,0,0,0,15.6
+296753,0,0,0,15.6
+296754,0,0,0,15.6
+296755,0,0,0,15.6
+296756,0,0,0,15.6
+296757,0,0,0,15.6
+296758,0,0,0,15.6
+296759,0,0,0,15.6
+296760,0,0,0,15.6
+296761,0,0,0,15.6
+296762,0,0,0,15.6
+296763,0,0,0,15.6
+296764,0,0,0,15.6
+296765,0,0,0,15.6
+296766,0,0,0,15.6
+296767,0,0,0,15.6
+296768,0,0,0,15.6
+296769,0,0,0,15.6
+296770,0,0,0,15.6
+296771,0,0,657733.6001,15.6
+296772,0,0,0,15.6
+296773,0,0,0,15.6
+296774,0,0,0,15.6
+296775,0,365560.3659,0,15.6
+296776,0,0,0,15.6
+296777,336647.2579,0,0,15.6
+296778,0,0,0,15.6
+296779,0,0,0,15.6
+296780,0,0,0,15.6
+296781,0,0,0,15.6
+296782,0,0,0,15.6
+296783,0,0,0,15.6
+296784,0,0,0,15.6
+296785,0,0,0,15.6
+296786,0,0,0,15.6
+296787,0,0,0,15.6
+296788,0,0,0,15.6
+296789,0,0,0,15.6
+296790,0,0,0,15.6
+296791,0,0,0,15.6
+296792,0,0,0,15.6
+296793,0,0,0,15.6
+296794,0,0,0,15.6
+296795,0,0,0,15.6
+296796,0,0,0,15.6
+296797,0,0,0,15.6
+296798,0,0,0,15.6
+296799,0,0,0,15.6
+296800,0,0,0,15.6
+296801,0,0,0,15.6
+296802,0,0,0,15.6
+296803,0,0,0,15.6
+296804,0,0,0,15.6
+296805,0,0,657643.0281,15.6
+296806,0,0,0,15.6
+296807,0,0,0,15.6
+296808,0,0,0,15.6
+296809,0,0,0,15.6
+296810,0,369426.8795,0,15.6
+296811,0,0,0,15.6
+296812,335256.4524,0,0,15.6
+296813,0,0,0,15.6
+296814,0,0,0,15.6
+296815,0,0,0,15.6
+296816,0,0,0,15.6
+296817,0,0,0,15.6
+296818,0,0,0,15.6
+296819,0,0,0,15.6
+296820,0,0,0,15.6
+296821,0,0,0,15.6
+296822,0,0,0,15.6
+296823,0,0,0,15.6
+296824,0,0,0,15.6
+296825,0,0,0,15.6
+296826,0,0,0,15.6
+296827,0,0,0,15.6
+296828,0,0,0,15.6
+296829,0,0,0,15.6
+296830,0,0,0,15.6
+296831,0,0,0,15.6
+296832,0,0,0,15.6
+296833,0,0,0,15.6
+296834,0,0,0,15.6
+296835,0,0,0,15.6
+296836,0,0,0,15.6
+296837,0,0,0,15.6
+296838,0,0,0,15.6
+296839,0,0,657618.0553,15.6
+296840,0,0,0,15.6
+296841,0,0,0,15.6
+296842,0,0,0,15.6
+296843,0,0,0,15.6
+296844,0,0,0,15.6
+296845,0,369427.3429,0,15.6
+296846,336987.6251,0,0,15.6
+296847,0,0,0,15.6
+296848,0,0,0,15.6
+296849,0,0,0,15.6
+296850,0,0,0,15.6
+296851,0,0,0,15.6
+296852,0,0,0,15.6
+296853,0,0,0,15.6
+296854,0,0,0,15.6
+296855,0,0,0,15.6
+296856,0,0,0,15.6
+296857,0,0,0,15.6
+296858,0,0,0,15.6
+296859,0,0,0,15.6
+296860,0,0,0,15.6
+296861,0,0,0,15.6
+296862,0,0,0,15.6
+296863,0,0,0,15.6
+296864,0,0,0,15.6
+296865,0,0,0,15.6
+296866,0,0,0,15.6
+296867,0,0,0,15.6
+296868,0,0,0,15.6
+296869,0,0,0,15.6
+296870,0,0,0,15.6
+296871,0,0,0,15.6
+296872,0,0,0,15.6
+296873,0,0,657559.0487,15.6
+296874,0,0,0,15.6
+296875,0,0,0,15.6
+296876,0,0,0,15.6
+296877,0,0,0,15.6
+296878,0,0,0,15.6
+296879,0,369427.4194,0,15.6
+296880,336760.6673,0,0,17.8
+296881,0,0,0,17.8
+296882,0,0,0,17.8
+296883,0,0,0,17.8
+296884,0,0,0,17.8
+296885,0,0,0,17.8
+296886,0,0,0,17.8
+296887,0,0,0,17.8
+296888,0,0,0,17.8
+296889,0,0,0,17.8
+296890,0,0,0,17.8
+296891,0,0,0,17.8
+296892,0,0,0,17.8
+296893,0,0,0,17.8
+296894,0,0,0,17.8
+296895,0,0,0,17.8
+296896,0,0,0,17.8
+296897,0,0,0,17.8
+296898,0,0,0,17.8
+296899,0,0,0,17.8
+296900,0,0,0,17.8
+296901,0,0,0,17.8
+296902,0,0,0,17.8
+296903,0,0,0,17.8
+296904,0,0,0,17.8
+296905,0,0,0,17.8
+296906,0,0,0,17.8
+296907,0,0,657513.0878,17.8
+296908,0,0,0,17.8
+296909,0,0,0,17.8
+296910,0,0,0,17.8
+296911,0,0,0,17.8
+296912,0,0,0,17.8
+296913,0,369427.032,0,17.8
+296914,336129.4534,0,0,17.8
+296915,0,0,0,17.8
+296916,0,0,0,17.8
+296917,0,0,0,17.8
+296918,0,0,0,17.8
+296919,0,0,0,17.8
+296920,0,0,0,17.8
+296921,0,0,0,17.8
+296922,0,0,0,17.8
+296923,0,0,0,17.8
+296924,0,0,0,17.8
+296925,0,0,0,17.8
+296926,0,0,0,17.8
+296927,0,0,0,17.8
+296928,0,0,0,17.8
+296929,0,0,0,17.8
+296930,0,0,0,17.8
+296931,0,0,0,17.8
+296932,0,0,0,17.8
+296933,0,0,0,17.8
+296934,0,0,0,17.8
+296935,0,0,0,17.8
+296936,0,0,0,17.8
+296937,0,0,0,17.8
+296938,0,0,0,17.8
+296939,0,0,0,17.8
+296940,0,0,0,20
+296941,0,37951.29054,657479.6665,20
+296942,0,0,0,20
+296943,0,0,0,20
+296944,0,94195.35298,0,20
+296945,0,111062.747,0,20
+296946,0,105011.7263,0,20
+296947,0,101340.5032,0,20
+296948,0,107995.3273,0,20
+296949,355.3412411,108425.8873,0,20
+296950,1292.022587,109208.8391,0,20
+296951,628.5510415,108669.2106,0,20
+296952,872.6439014,110028.4786,0,20
+296953,5334.735665,110041.6692,0,20
+296954,6290.089209,110903.0288,0,20
+296955,4890.626806,111002.6179,0,20
+296956,5944.808771,110920.9246,0,20
+296957,6019.938517,111616.8233,0,20
+296958,6489.174028,111494.4347,0,20
+296959,6511.375875,112226.2765,0,20
+296960,6751.083991,111984.9912,0,20
+296961,6867.35471,112810.5691,0,20
+296962,7024.731936,112570.0803,0,20
+296963,7026.725555,112845.7159,0,20
+296964,7425.512591,113153.8038,0,20
+296965,7312.528121,113373.1624,0,20
+296966,7569.338831,113542.647,0,20
+296967,7598.547419,113675.0757,0,20
+296968,7836.82124,114506.056,0,20
+296969,7853.874772,113568.9964,0,20
+296970,7993.129444,114782.0558,0,20
+296971,7884.408473,114134.5652,0,20
+296972,7646.102027,114347.6555,0,20
+296973,7521.008736,114579.3484,0,20
+296974,7167.349611,114110.2835,0,20
+296975,6941.763915,114217.7913,0,20
+296976,6151.862093,114291.0751,0,20
+296977,5419.651342,114156.2887,0,20
+296978,5302.48988,113699.3317,0,20
+296979,4871.691836,114312.4305,0,20
+296980,4388.626153,113507.9444,0,20
+296981,4267.254324,113854.0754,0,20
+296982,3700.152838,113411.8112,0,20
+296983,3450.406714,113509.3173,0,20
+296984,2913.127228,113325.7207,0,20
+296985,2739.069253,112954.6887,0,20
+296986,2066.939661,113190.389,0,20
+296987,1749.562447,112714.7296,0,20
+296988,1448.725455,112625.3408,0,20
+296989,974.9698063,112452.5005,0,20
+296990,920.6087359,112156.816,0,20
+296991,909.9663013,112200.1654,0,20
+296992,771.266727,111903.1444,0,20
+296993,716.6345829,111692.708,0,20
+296994,671.2503338,111154.1864,0,20
+296995,642.203879,111608.9296,0,20
+296996,656.8697866,110898.6464,0,20
+296997,642.2038688,110924.1373,0,20
+296998,671.4936377,110620.0727,0,20
+296999,642.2038664,110352.8181,0,20
+297000,671.4936279,110090.9865,0,21
+297001,523.2672968,103121.3377,0,21
+297002,493.0519991,101935.7956,0,21
+297003,493.0521205,101693.1353,0,21
+297004,493.0521089,100826.3324,0,21
+297005,493.0521128,100906.6647,0,21
+297006,508.1852386,100277.6144,0,21
+297007,493.0518464,99653.13513,0,21
+297008,493.0521154,99222.78149,0,21
+297009,493.0521089,98989.78451,0,21
+297010,508.1852477,98513.59061,0,21
+297011,493.0519328,98242.9627,0,21
+297012,493.0521171,97378.81079,0,21
+297013,493.0521214,97477.4648,0,21
+297014,508.1852466,96864.59075,0,21
+297015,493.0521185,96206.29885,0,21
+297016,493.0521202,96298.32231,0,21
+297017,508.1852444,95460.75035,0,21
+297018,477.8665465,94826.59104,0,21
+297019,508.1852425,95086.32429,0,21
+297020,493.051973,94265.64763,0,21
+297021,493.0521214,94012.09872,0,21
+297022,493.0521097,93308.1791,0,21
+297023,493.0521178,93136.92271,0,21
+297024,493.0521186,92656.47687,0,21
+297025,493.0521175,91954.24574,0,21
+297026,477.8665471,92223.63516,0,21
+297027,493.052118,91033.667,0,21
+297028,493.0520822,91048.40353,0,21
+297029,477.866553,90489.12641,0,21
+297030,477.8665433,90012.9633,0,21
+297031,493.052121,89892.78583,0,21
+297032,477.8665488,89672.46739,0,21
+297033,493.0521212,89325.11219,0,21
+297034,477.866548,89262.71345,0,21
+297035,493.052119,89167.23271,0,21
+297036,477.8665261,89023.77834,0,21
+297037,493.052126,88699.42013,0,21
+297038,493.0521168,88658.83831,0,21
+297039,493.052122,88205.61353,0,21
+297040,493.0521219,88672.5154,0,21
+297041,493.0521209,88391.36297,0,21
+297042,493.0521204,87878.28464,0,21
+297043,493.0521127,88265.64569,0,21
+297044,508.185254,88074.49232,0,21
+297045,493.052118,87607.62657,0,21
+297046,508.1852487,87813.51739,0,21
+297047,493.0521237,88289.88512,0,21
+297048,508.1852495,87681.55217,0,21
+297049,508.1852477,87912.35273,0,21
+297050,493.0521149,88004.33002,0,21
+297051,523.267097,87383.18123,0,21
+297052,493.0521262,87712.56608,0,21
+297053,523.2671493,87626.25189,0,21
+297054,508.185249,87489.02522,0,21
+297055,508.185249,87304.11278,0,21
+297056,523.2671512,87367.80051,0,21
+297057,523.2671014,87420.39732,0,21
+297058,523.2671522,87335.73717,0,21
+297059,523.2671486,86859.74622,0,21
+297060,523.2671515,87336.66003,0,21
+297061,0,37822.27784,0,21
+297062,0,34660.09814,0,21
+297063,0,33756.5579,0,21
+297064,0,33089.4807,0,21
+297065,0,32501.98128,0,21
+297066,0,31777.75741,0,21
+297067,0,31330.88147,0,21
+297068,0,30749.4892,0,21
+297069,0,30511.73307,0,21
+297070,0,29752.56222,0,21
+297071,0,29406.03498,0,21
+297072,0,29182.04513,0,21
+297073,0,28403.65758,0,21
+297074,0,28281.50522,0,21
+297075,0,27780.08015,0,21
+297076,0,27141.9145,0,21
+297077,0,27362.32298,0,21
+297078,0,26376.45817,0,21
+297079,0,26332.58608,0,21
+297080,0,25796.7583,0,21
+297081,0,25490.07525,0,21
+297082,0,25030.41626,0,21
+297083,0,25037.04966,0,21
+297084,0,24345.28231,0,21
+297085,0,23992.60532,0,21
+297086,0,23932.68781,0,21
+297087,0,23382.29886,0,21
+297088,0,23237.18391,0,21
+297089,0,22843.03064,0,21
+297090,0,22472.15994,0,21
+297091,0,22218.46019,0,21
+297092,0,21758.87254,0,21
+297093,0,21372.44081,0,21
+297094,0,21113.48695,0,21
+297095,0,20449.73897,0,21
+297096,0,20394.34552,0,21
+297097,0,19649.39507,0,21
+297098,0,19447.20871,0,21
+297099,0,19291.18837,0,21
+297100,0,18529.38558,0,21
+297101,0,18121.95876,0,21
+297102,0,17920.79152,0,21
+297103,0,17558.47579,0,21
+297104,0,16960.44351,0,21
+297105,0,16565.7448,0,21
+297106,0,16566.32353,0,21
+297107,0,15595.47704,0,21
+297108,0,15431.2406,0,21
+297109,0,15337.45655,0,21
+297110,0,14442.40634,0,21
+297111,0,14485.23739,0,21
+297112,0,13866.49171,0,21
+297113,0,13428.71571,0,21
+297114,0,13376.07284,0,21
+297115,0,12626.17067,0,21
+297116,0,12408.93443,0,21
+297117,0,12186.38632,0,21
+297118,0,11658.25354,0,21
+297119,0,11568.73078,0,21
+297120,0,11052.65991,0,21
+297121,0,10533.22651,0,21
+297122,0,9980.58384,0,21
+297123,0,9446.246289,0,21
+297124,0,9246.187831,0,21
+297125,0,8997.858344,0,21
+297126,0,8176.611667,0,21
+297127,0,8247.21759,0,21
+297128,0,7709.804816,0,21
+297129,0,7219.172331,0,21
+297130,0,6900.295965,0,21
+297131,0,6736.602588,0,21
+297132,0,5853.175663,0,21
+297133,0,5954.186193,0,21
+297134,0,5538.97877,0,21
+297135,0,4808.094715,0,21
+297136,0,5023.383555,0,21
+297137,0,4505.73084,0,21
+297138,0,4209.668718,0,21
+297139,0,4209.668827,0,21
+297140,0,3664.744149,0,21
+297141,0,3664.744239,0,21
+297142,0,3336.917228,0,21
+297143,0,2866.946256,0,21
+297144,0,3041.430155,0,21
+297145,0,2531.702977,0,21
+297146,0,2237.025782,0,21
+297147,0,2192.751181,0,21
+297148,0,1644.348173,0,21
+297149,0,1635.290653,0,21
+297150,0,1298.750398,0,21
+297151,0,1117.300845,0,21
+297152,0,975.2730762,0,21
+297153,0,930.0938238,0,21
+297154,0,903.2100047,0,21
+297155,0,839.0468261,0,21
+297156,0,830.5824004,0,21
+297157,0,793.1538423,0,21
+297158,0,738.5692058,0,21
+297159,0,719.6400097,0,21
+297160,0,692.1571503,0,21
+297161,0,645.4493618,0,21
+297162,0,598.4215599,0,21
+297163,0,584.4888174,0,21
+297164,0,537.0345437,0,21
+297165,0,503.2740346,0,21
+297166,0,437.8043645,0,21
+297167,0,369.3262214,0,21
+297168,0,369.3262193,0,21
+297169,0,311.1392992,0,21
+297170,0,240.449694,0,21
+297171,0,261.3206492,0,21
+297172,0,184.9886663,0,21
+297173,0,143.5865298,0,21
+297174,0,128.3248219,0,21
+297175,0,97.45966204,0,21
+297176,0,66.03394773,0,21
+297177,0,33.81665042,0,21
+297178,0,17.24314683,0,21
+297179,0,0,0,21
+297180,0,0,0,21
+297181,0,0,0,21
+297182,0,0,0,21
+297183,0,0,0,21
+297184,0,0,0,21
+297185,0,0,0,21
+297186,0,0,0,21
+297187,0,0,0,21
+297188,0,0,0,21
+297189,0,0,0,21
+297190,0,0,0,21
+297191,0,0,0,21
+297192,0,0,0,21
+297193,0,0,0,21
+297194,0,0,0,21
+297195,0,0,0,21
+297196,0,0,0,21
+297197,0,0,0,21
+297198,0,0,0,21
+297199,0,0,0,21
+297200,0,0,0,21
+297201,0,0,0,21
+297202,0,0,0,21
+297203,0,0,0,21
+297204,0,0,0,21
+297205,0,0,0,21
+297206,0,0,0,21
+297207,0,0,0,21
+297208,0,0,0,21
+297209,0,0,0,21
+297210,0,0,0,21
+297211,0,0,0,21
+297212,0,0,0,21
+297213,0,0,0,21
+297214,0,0,0,21
+297215,0,0,0,21
+297216,0,0,0,21
+297217,0,0,0,21
+297218,0,0,0,21
+297219,0,0,0,21
+297220,0,0,0,21
+297221,0,0,0,21
+297222,0,0,0,21
+297223,0,0,0,21
+297224,0,0,0,21
+297225,0,0,0,21
+297226,0,0,0,21
+297227,0,0,0,21
+297228,0,0,0,21
+297229,0,0,0,21
+297230,0,0,0,21
+297231,0,0,0,21
+297232,0,0,0,21
+297233,0,0,0,21
+297234,0,0,0,21
+297235,0,0,0,21
+297236,0,0,0,21
+297237,0,0,0,21
+297238,0,0,0,21
+297239,0,0,0,21
+297240,0,0,0,21
+297241,0,0,0,21
+297242,0,0,0,21
+297243,0,0,0,21
+297244,0,0,0,21
+297245,0,0,0,21
+297246,0,0,0,21
+297247,0,0,0,21
+297248,0,0,0,21
+297249,0,0,0,21
+297250,0,0,0,21
+297251,0,0,0,21
+297252,0,0,0,21
+297253,0,0,0,21
+297254,0,0,0,21
+297255,0,0,0,21
+297256,0,0,0,21
+297257,0,0,0,21
+297258,0,0,0,21
+297259,0,0,0,21
+297260,0,0,0,21
+297261,0,0,0,21
+297262,0,0,0,21
+297263,0,0,0,21
+297264,0,0,0,21
+297265,0,0,0,21
+297266,0,0,0,21
+297267,0,0,0,21
+297268,0,0,0,21
+297269,0,0,0,21
+297270,0,0,0,21
+297271,0,0,0,21
+297272,0,0,0,21
+297273,0,0,0,21
+297274,0,0,0,21
+297275,0,0,0,21
+297276,0,0,0,21
+297277,0,0,0,21
+297278,0,0,0,21
+297279,0,0,0,21
+297280,0,0,0,21
+297281,0,0,0,21
+297282,0,0,0,21
+297283,0,0,0,21
+297284,0,0,0,21
+297285,0,0,0,21
+297286,0,0,0,21
+297287,0,0,0,21
+297288,0,0,0,21
+297289,0,0,0,21
+297290,0,0,0,21
+297291,0,0,0,21
+297292,0,0,0,21
+297293,0,0,0,21
+297294,0,0,0,21
+297295,0,0,0,21
+297296,0,0,0,21
+297297,0,0,0,21
+297298,0,0,0,21
+297299,0,0,0,21
+297300,0,0,0,21
+297301,0,0,0,21
+297302,0,0,0,21
+297303,0,0,0,21
+297304,0,0,0,21
+297305,0,0,0,21
+297306,0,0,0,21
+297307,0,0,0,21
+297308,0,0,0,21
+297309,0,0,0,21
+297310,0,0,0,21
+297311,0,0,0,21
+297312,0,0,0,21
+297313,0,0,0,21
+297314,0,0,0,21
+297315,0,0,0,21
+297316,0,0,0,21
+297317,0,0,0,21
+297318,0,0,0,21
+297319,0,0,0,21
+297320,0,0,0,21
+297321,0,0,0,21
+297322,0,0,0,21
+297323,0,0,0,21
+297324,0,0,0,21
+297325,0,0,0,21
+297326,0,0,0,21
+297327,0,0,0,21
+297328,0,0,0,21
+297329,0,0,0,21
+297330,0,0,0,21
+297331,0,0,0,21
+297332,0,0,0,21
+297333,0,0,0,21
+297334,0,0,0,21
+297335,0,0,0,21
+297336,0,0,0,21
+297337,0,0,0,21
+297338,0,0,0,21
+297339,0,0,0,21
+297340,0,0,0,21
+297341,0,0,0,21
+297342,0,0,0,21
+297343,0,0,0,21
+297344,0,0,0,21
+297345,0,0,0,21
+297346,0,0,0,21
+297347,0,0,0,21
+297348,0,0,0,21
+297349,0,0,0,21
+297350,0,0,0,21
+297351,0,0,0,21
+297352,0,0,0,21
+297353,0,0,0,21
+297354,0,0,0,21
+297355,0,0,0,21
+297356,0,0,0,21
+297357,0,0,0,21
+297358,0,0,0,21
+297359,0,0,0,21
+297360,0,0,0,21
+297361,0,0,0,21
+297362,0,0,0,21
+297363,0,0,0,21
+297364,0,0,0,21
+297365,0,0,0,21
+297366,0,0,0,21
+297367,0,0,0,21
+297368,0,0,0,21
+297369,0,0,0,21
+297370,0,0,0,21
+297371,0,0,0,21
+297372,0,0,0,21
+297373,0,0,0,21
+297374,0,0,0,21
+297375,0,0,0,21
+297376,0,0,0,21
+297377,0,0,0,21
+297378,0,0,0,21
+297379,0,0,0,21
+297380,0,0,0,21
+297381,0,0,0,21
+297382,0,0,0,21
+297383,0,0,0,21
+297384,0,0,0,21
+297385,0,0,0,21
+297386,0,0,0,21
+297387,0,0,0,21
+297388,0,0,0,21
+297389,0,0,0,21
+297390,0,0,0,21
+297391,0,0,0,21
+297392,0,0,0,21
+297393,0,0,0,21
+297394,0,0,0,21
+297395,0,0,0,21
+297396,0,0,0,21
+297397,0,0,0,21
+297398,0,0,0,21
+297399,0,0,0,21
+297400,0,0,0,21
+297401,0,0,0,21
+297402,0,0,0,21
+297403,0,0,0,21
+297404,0,0,0,21
+297405,0,0,0,21
+297406,0,0,0,21
+297407,0,0,0,21
+297408,0,0,0,21
+297409,0,0,0,21
+297410,0,0,0,21
+297411,0,0,0,21
+297412,0,0,0,21
+297413,0,0,0,21
+297414,0,0,0,21
+297415,0,0,0,21
+297416,0,0,0,21
+297417,0,0,0,21
+297418,0,0,0,21
+297419,0,0,0,21
+297420,0,0,0,21
+297421,0,0,0,21
+297422,0,0,0,21
+297423,0,0,0,21
+297424,0,0,0,21
+297425,0,0,0,21
+297426,0,0,0,21
+297427,0,0,0,21
+297428,0,0,0,21
+297429,0,0,0,21
+297430,0,0,0,21
+297431,0,0,0,21
+297432,0,0,0,21
+297433,0,0,0,21
+297434,0,0,0,21
+297435,0,0,0,21
+297436,0,0,0,21
+297437,0,0,0,21
+297438,0,0,0,21
+297439,0,0,0,21
+297440,0,0,0,21
+297441,0,0,0,21
+297442,0,0,0,21
+297443,0,0,0,21
+297444,0,0,0,21
+297445,0,0,0,21
+297446,0,0,0,21
+297447,0,0,0,21
+297448,0,0,0,21
+297449,0,0,0,21
+297450,0,0,0,21
+297451,0,0,0,21
+297452,0,0,0,21
+297453,0,0,0,21
+297454,0,0,0,21
+297455,0,0,0,21
+297456,0,0,0,21
+297457,0,0,0,21
+297458,0,0,0,21
+297459,0,0,0,21
+297460,0,0,0,21
+297461,0,0,0,21
+297462,0,0,0,21
+297463,0,0,0,21
+297464,0,0,0,21
+297465,0,0,0,21
+297466,0,0,0,21
+297467,0,0,0,21
+297468,0,0,0,21
+297469,0,0,0,21
+297470,0,0,0,21
+297471,0,0,0,21
+297472,0,0,0,21
+297473,0,0,0,21
+297474,0,0,0,21
+297475,0,0,0,21
+297476,0,0,0,21
+297477,0,0,0,21
+297478,0,0,0,21
+297479,0,0,0,21
+297480,0,0,0,21
+297481,0,0,0,21
+297482,0,0,0,21
+297483,0,0,0,21
+297484,0,0,0,21
+297485,0,0,0,21
+297486,0,0,0,21
+297487,0,0,0,21
+297488,0,0,0,21
+297489,0,0,0,21
+297490,0,0,0,21
+297491,0,0,0,21
+297492,0,0,0,21
+297493,0,0,0,21
+297494,0,0,0,21
+297495,0,0,0,21
+297496,0,0,0,21
+297497,0,0,0,21
+297498,0,0,0,21
+297499,0,0,0,21
+297500,0,0,0,21
+297501,0,0,0,21
+297502,0,0,0,21
+297503,0,0,0,21
+297504,0,0,0,21
+297505,0,0,0,21
+297506,0,0,0,21
+297507,0,0,0,21
+297508,0,0,0,21
+297509,0,0,0,21
+297510,0,0,0,21
+297511,0,0,0,21
+297512,0,0,0,21
+297513,0,0,0,21
+297514,0,0,0,21
+297515,0,0,0,21
+297516,0,0,0,21
+297517,0,0,0,21
+297518,0,0,0,21
+297519,0,0,0,21
+297520,0,0,0,21
+297521,0,0,0,21
+297522,0,0,0,21
+297523,0,0,0,21
+297524,0,0,0,21
+297525,0,0,0,21
+297526,0,0,0,21
+297527,0,0,0,21
+297528,0,0,0,21
+297529,0,0,0,21
+297530,0,0,0,21
+297531,0,0,0,21
+297532,0,0,0,21
+297533,0,0,0,21
+297534,0,0,0,21
+297535,0,0,0,21
+297536,0,0,0,21
+297537,0,0,0,21
+297538,0,0,0,21
+297539,0,0,0,21
+297540,0,0,0,21
+297541,0,0,0,21
+297542,0,0,0,21
+297543,0,0,0,21
+297544,0,0,0,21
+297545,0,0,0,21
+297546,0,0,0,21
+297547,0,0,0,21
+297548,0,0,0,21
+297549,0,0,0,21
+297550,0,0,0,21
+297551,0,0,0,21
+297552,0,0,0,21
+297553,0,0,0,21
+297554,0,0,0,21
+297555,0,0,0,21
+297556,0,0,0,21
+297557,0,0,0,21
+297558,0,0,0,21
+297559,0,0,0,21
+297560,0,0,0,21
+297561,0,0,0,21
+297562,0,0,0,21
+297563,0,0,0,21
+297564,0,0,0,21
+297565,0,0,0,21
+297566,0,0,0,21
+297567,0,0,0,21
+297568,0,0,0,21
+297569,0,0,0,21
+297570,0,0,0,21
+297571,0,0,0,21
+297572,0,0,0,21
+297573,0,0,0,21
+297574,0,0,0,21
+297575,0,0,0,21
+297576,0,0,0,21
+297577,0,0,0,21
+297578,0,0,0,21
+297579,0,0,0,21
+297580,0,0,0,21
+297581,0,0,0,21
+297582,0,0,0,21
+297583,0,0,0,21
+297584,0,0,0,21
+297585,0,0,0,21
+297586,0,0,0,21
+297587,0,0,0,21
+297588,0,0,0,21
+297589,0,0,0,21
+297590,0,0,0,21
+297591,0,0,0,21
+297592,0,0,0,21
+297593,0,0,0,21
+297594,0,0,0,21
+297595,0,0,0,21
+297596,0,0,0,21
+297597,0,0,0,21
+297598,0,0,0,21
+297599,0,0,0,21
+297600,0,0,0,21
+297601,0,0,0,21
+297602,0,0,0,21
+297603,0,0,0,21
+297604,0,0,0,21
+297605,0,0,0,21
+297606,0,0,0,21
+297607,0,0,0,21
+297608,0,0,0,21
+297609,0,0,0,21
+297610,0,0,0,21
+297611,0,0,0,21
+297612,0,0,0,21
+297613,0,0,0,21
+297614,0,0,0,21
+297615,0,0,0,21
+297616,0,0,0,21
+297617,0,0,0,21
+297618,0,0,0,21
+297619,0,0,0,21
+297620,0,0,0,21
+297621,0,0,0,21
+297622,0,0,0,21
+297623,0,0,0,21
+297624,0,0,0,21
+297625,0,0,0,21
+297626,0,0,0,21
+297627,0,0,0,21
+297628,0,0,0,21
+297629,0,0,0,21
+297630,0,0,0,21
+297631,0,0,0,21
+297632,0,0,0,21
+297633,0,0,0,21
+297634,0,0,0,21
+297635,0,0,0,21
+297636,0,0,0,21
+297637,0,0,0,21
+297638,0,0,0,21
+297639,0,0,0,21
+297640,0,0,0,21
+297641,0,0,0,21
+297642,0,0,0,21
+297643,0,0,0,21
+297644,0,0,0,21
+297645,0,0,0,21
+297646,0,0,0,21
+297647,0,0,0,21
+297648,0,0,0,21
+297649,0,0,0,21
+297650,0,0,0,21
+297651,0,0,0,21
+297652,0,0,0,21
+297653,0,0,0,21
+297654,0,0,0,21
+297655,0,0,0,21
+297656,0,0,0,21
+297657,0,0,0,21
+297658,0,0,0,21
+297659,0,0,0,21
+297660,0,0,0,21
+297661,0,0,0,21
+297662,0,0,0,21
+297663,0,0,0,21
+297664,0,0,0,21
+297665,0,0,0,21
+297666,0,0,0,21
+297667,0,0,0,21
+297668,0,0,0,21
+297669,0,0,0,21
+297670,0,0,0,21
+297671,0,0,0,21
+297672,0,0,0,21
+297673,0,0,0,21
+297674,0,0,0,21
+297675,0,0,0,21
+297676,0,0,0,21
+297677,0,0,0,21
+297678,0,0,0,21
+297679,0,0,0,21
+297680,0,0,0,21
+297681,0,0,0,21
+297682,0,0,0,21
+297683,0,0,0,21
+297684,0,0,0,21
+297685,0,0,0,21
+297686,0,0,0,21
+297687,0,0,0,21
+297688,0,0,0,21
+297689,0,0,0,21
+297690,0,0,0,21
+297691,0,0,0,21
+297692,0,0,0,21
+297693,0,0,0,21
+297694,0,0,0,21
+297695,0,0,0,21
+297696,0,0,0,21
+297697,0,0,0,21
+297698,0,0,0,21
+297699,0,0,0,21
+297700,0,871.5414381,0,21
+297701,0,1199.907417,0,21
+297702,0,1118.447766,0,21
+297703,0,1361.71109,0,21
+297704,0,1681.356465,0,21
+297705,0,1681.356428,0,21
+297706,0,1839.422618,0,21
+297707,0,2152.46378,0,21
+297708,0,2152.463722,0,21
+297709,0,2461.804526,0,21
+297710,0,2615.214491,0,21
+297711,0,2615.214404,0,21
+297712,0,2919.716621,0,21
+297713,0,2919.71632,0,21
+297714,0,3221.350148,0,21
+297715,0,3371.162344,0,21
+297716,0,3371.16219,0,21
+297717,0,3668.897997,0,21
+297718,0,3668.897813,0,21
+297719,0,3964.253198,0,21
+297720,0,3964.252964,0,21
+297721,0,4257.374872,0,21
+297722,0,4403.13639,0,21
+297723,0,4548.383772,0,21
+297724,0,4837.387288,0,21
+297725,0,4981.1681,0,21
+297726,0,5124.482645,0,21
+297727,0,5267.341147,0,21
+297728,0,5551.71253,0,21
+297729,0,5693.263761,0,21
+297730,0,5834.387813,0,21
+297731,0,6159.076123,0,21
+297732,0,6438.617013,0,21
+297733,0,6539.346791,0,21
+297734,0,6707.631865,0,21
+297735,0,7161.102743,0,21
+297736,0,7042.039644,0,21
+297737,0,7483.202835,0,21
+297738,0,7501.855546,0,21
+297739,0,7812.392509,0,21
+297740,0,8084.57642,0,21
+297741,0,8139.336716,0,21
+297742,0,8410.192371,0,21
+297743,0,8581.203919,0,21
+297744,0,8724.791102,0,21
+297745,0,9037.636919,0,21
+297746,0,9171.3194,0,21
+297747,0,9340.009935,0,21
+297748,0,9490.639505,0,21
+297749,0,9790.807373,0,21
+297750,0,9922.996916,0,21
+297751,0,10106.7916,0,21
+297752,0,10221.16814,0,21
+297753,0,10535.085,0,21
+297754,0,10535.08539,0,21
+297755,0,10830.42694,0,21
+297756,0,10847.38128,0,21
+297757,0,11217.48254,0,21
+297758,0,11687.93365,0,21
+297759,0,11825.89963,0,21
+297760,0,11906.39349,0,21
+297761,0,14004.7387,0,21
+297762,0,16790.97576,0,21
+297763,0,15864.24287,0,21
+297764,0,17364.41039,0,21
+297765,0,17789.49268,0,21
+297766,0,18820.69367,0,21
+297767,0,19396.8655,0,21
+297768,0,20223.71488,0,21
+297769,0,20944.9398,0,21
+297770,0,21645.6567,0,21
+297771,0,22483.38641,0,21
+297772,0,23138.47663,0,21
+297773,0,23644.60067,0,21
+297774,0,24588.88324,0,21
+297775,0,25640.43958,0,21
+297776,0,25841.0986,0,21
+297777,0,27129.79785,0,21
+297778,0,27175.36522,0,21
+297779,0,28178.80923,0,21
+297780,0,29110.42721,0,21
+297781,0,30726.33506,0,21
+297782,0,32254.31378,0,21
+297783,0,32142.16949,0,21
+297784,0,32962.85393,0,21
+297785,0,33413.02408,0,21
+297786,0,34023.10177,0,21
+297787,0,34104.64202,0,21
+297788,0,35266.23214,0,21
+297789,0,34995.54186,0,21
+297790,0,35770.17071,0,21
+297791,0,36248.36742,0,21
+297792,0,36521.32803,0,21
+297793,0,37254.16639,0,21
+297794,0,37303.30523,0,21
+297795,0,37738.45932,0,21
+297796,0,38493.01675,0,21
+297797,0,38506.39278,0,21
+297798,0,39325.48121,0,21
+297799,0,39325.48217,0,21
+297800,0,39884.14542,0,21
+297801,0,39956.89315,0,21
+297802,0,40583.57494,0,21
+297803,0,40738.00321,0,21
+297804,0,41258.69622,0,21
+297805,0,41556.81256,0,21
+297806,0,41802.66084,0,21
+297807,0,42347.9153,0,21
+297808,0,42625.61722,0,21
+297809,0,42859.64367,0,21
+297810,0,43374.98296,0,21
+297811,0,43405.66537,0,21
+297812,0,44136.88215,0,21
+297813,0,44335.0802,0,21
+297814,0,44801.5579,0,21
+297815,0,44966.52622,0,21
+297816,0,45535.17818,0,21
+297817,0,45971.79646,0,21
+297818,0,46006.99617,0,21
+297819,0,46642.92065,0,21
+297820,0,47145.18155,0,21
+297821,0,47028.44239,0,21
+297822,0,47853.14418,0,21
+297823,0,47878.9316,0,21
+297824,0,48535.67291,0,21
+297825,0,48715.86741,0,21
+297826,0,49170.21424,0,21
+297827,0,49216.28476,0,21
+297828,0,50079.98348,0,21
+297829,0,50052.25332,0,21
+297830,0,50359.72923,0,21
+297831,0,50909.55085,0,21
+297832,0,51303.96836,0,21
+297833,0,51434.76657,0,21
+297834,0,51747.9159,0,21
+297835,0,52145.2117,0,21
+297836,0,52573.96445,0,21
+297837,0,52993.38731,0,21
+297838,0,52780.73884,0,21
+297839,0,53815.01988,0,21
+297840,0,53610.20619,0,21
+297841,0,54147.44822,0,21
+297842,0,55104.12556,0,21
+297843,0,54940.4237,0,21
+297844,0,55793.18727,0,21
+297845,0,55944.97271,0,21
+297846,0,56884.38345,0,21
+297847,0,56640.32651,0,21
+297848,0,57804.38473,0,21
+297849,0,57790.51323,0,21
+297850,0,58523.57663,0,21
+297851,0,58888.14632,0,21
+297852,0,59039.23042,0,21
+297853,0,59849.52897,0,21
+297854,0,60309.54218,0,21
+297855,0,60683.96931,0,21
+297856,0,60951.03446,0,21
+297857,0,61753.33905,0,21
+297858,0,62093.74248,0,21
+297859,0,62165.52398,0,21
+297860,0,63273.36711,0,21
+297861,0,63302.78455,0,21
+297862,0,63666.41992,0,21
+297863,0,64477.62297,0,21
+297864,0,64527.89687,0,21
+297865,0,65286.70306,0,21
+297866,0,65560.67488,0,21
+297867,0,66132.26816,0,21
+297868,0,66601.19523,0,21
+297869,0,66837.91021,0,21
+297870,0,67554.26193,0,21
+297871,0,67971.76131,0,21
+297872,0,68023.80226,0,21
+297873,0,68736.61803,0,21
+297874,0,69155.20986,0,21
+297875,0,69616.42328,0,21
+297876,0,69969.85801,0,21
+297877,0,70167.28091,0,21
+297878,0,70758.14217,0,21
+297879,0,71444.59973,0,21
+297880,0,71113.68865,0,21
+297881,0,72456.18383,0,21
+297882,0,72175.23836,0,21
+297883,0,72812.19892,0,21
+297884,0,73273.24214,0,21
+297885,0,73456.1432,0,21
+297886,0,74430.39892,0,21
+297887,0,73749.71494,0,21
+297888,0,74722.79692,0,21
+297889,0,75153.32448,0,21
+297890,0,75423.16439,0,21
+297891,0,75781.33273,0,21
+297892,0,76471.83922,0,21
+297893,0,76284.18476,0,21
+297894,0,77390.59538,0,21
+297895,0,77181.97941,0,21
+297896,0,77751.30727,0,21
+297897,0,78389.89711,0,21
+297898,0,78347.50999,0,21
+297899,0,79251.19018,0,21
+297900,0,79065.94958,0,21
+297901,0,0,0,21
+297902,0,0,0,21
+297903,0,0,0,21
+297904,0,0,0,21
+297905,327896.9013,361492.373,655848.8355,21
+297906,0,0,0,21
+297907,0,0,0,21
+297908,0,0,0,21
+297909,0,0,0,21
+297910,0,0,0,21
+297911,0,0,0,21
+297912,0,0,0,21
+297913,0,0,0,21
+297914,0,0,0,21
+297915,0,0,0,21
+297916,0,0,0,21
+297917,0,0,0,21
+297918,0,0,0,21
+297919,0,0,0,21
+297920,0,0,0,21
+297921,0,0,0,21
+297922,0,0,0,21
+297923,0,0,0,21
+297924,0,0,0,21
+297925,0,0,0,21
+297926,0,0,0,21
+297927,0,0,0,21
+297928,0,0,0,21
+297929,0,0,0,21
+297930,0,0,0,21
+297931,0,0,0,21
+297932,0,0,0,21
+297933,0,0,0,21
+297934,0,0,0,21
+297935,0,0,0,21
+297936,0,0,0,21
+297937,0,0,0,21
+297938,0,0,0,21
+297939,328708.2123,363580.3964,655966.8694,21
+297940,0,0,0,21
+297941,0,0,0,21
+297942,0,0,0,21
+297943,0,0,0,21
+297944,0,0,0,21
+297945,0,0,0,21
+297946,0,0,0,21
+297947,0,0,0,21
+297948,0,0,0,21
+297949,0,0,0,21
+297950,0,0,0,21
+297951,0,0,0,21
+297952,0,0,0,21
+297953,0,0,0,21
+297954,0,0,0,21
+297955,0,0,0,21
+297956,0,0,0,21
+297957,0,0,0,21
+297958,0,0,0,21
+297959,0,0,0,21
+297960,0,0,0,15.6
+297961,0,0,0,15.6
+297962,0,0,0,15.6
+297963,0,0,0,15.6
+297964,0,0,0,15.6
+297965,0,0,0,15.6
+297966,0,0,0,15.6
+297967,0,0,0,15.6
+297968,0,0,0,15.6
+297969,0,0,0,15.6
+297970,0,0,0,15.6
+297971,0,0,0,15.6
+297972,0,0,0,15.6
+297973,330621.7815,364334.2416,656031.8111,15.6
+297974,0,0,0,15.6
+297975,0,0,0,15.6
+297976,0,0,0,15.6
+297977,0,0,0,15.6
+297978,0,0,0,15.6
+297979,0,0,0,15.6
+297980,0,0,0,15.6
+297981,0,0,0,15.6
+297982,0,0,0,15.6
+297983,0,0,0,15.6
+297984,0,0,0,15.6
+297985,0,0,0,15.6
+297986,0,0,0,15.6
+297987,0,0,0,15.6
+297988,0,0,0,15.6
+297989,0,0,0,15.6
+297990,0,0,0,15.6
+297991,0,0,0,15.6
+297992,0,0,0,15.6
+297993,0,0,0,15.6
+297994,0,0,0,15.6
+297995,0,0,0,15.6
+297996,0,0,0,15.6
+297997,0,0,0,15.6
+297998,0,0,0,15.6
+297999,0,0,0,15.6
+298000,0,0,0,15.6
+298001,0,0,0,15.6
+298002,0,0,0,15.6
+298003,0,0,0,15.6
+298004,0,0,0,15.6
+298005,0,0,0,15.6
+298006,0,0,0,15.6
+298007,331024.19,364145.0705,655970.1584,15.6
+298008,0,0,0,15.6
+298009,0,0,0,15.6
+298010,0,0,0,15.6
+298011,0,0,0,15.6
+298012,0,0,0,15.6
+298013,0,0,0,15.6
+298014,0,0,0,15.6
+298015,0,0,0,15.6
+298016,0,0,0,15.6
+298017,0,0,0,15.6
+298018,0,0,0,15.6
+298019,0,0,0,15.6
+298020,0,0,0,15.6
+298021,0,0,0,15.6
+298022,0,0,0,15.6
+298023,0,0,0,15.6
+298024,0,0,0,15.6
+298025,0,0,0,15.6
+298026,0,0,0,15.6
+298027,0,0,0,15.6
+298028,0,0,0,15.6
+298029,0,0,0,15.6
+298030,0,0,0,15.6
+298031,0,0,0,15.6
+298032,0,0,0,15.6
+298033,0,0,0,15.6
+298034,0,0,0,15.6
+298035,0,0,0,15.6
+298036,0,0,0,15.6
+298037,0,0,0,15.6
+298038,0,0,0,15.6
+298039,0,0,0,15.6
+298040,0,0,0,15.6
+298041,333146.9187,365370.7138,655748.6571,15.6
+298042,0,0,0,15.6
+298043,0,0,0,15.6
+298044,0,0,0,15.6
+298045,0,0,0,15.6
+298046,0,0,0,15.6
+298047,0,0,0,15.6
+298048,0,0,0,15.6
+298049,0,0,0,15.6
+298050,0,0,0,15.6
+298051,0,0,0,15.6
+298052,0,0,0,15.6
+298053,0,0,0,15.6
+298054,0,0,0,15.6
+298055,0,0,0,15.6
+298056,0,0,0,15.6
+298057,0,0,0,15.6
+298058,0,0,0,15.6
+298059,0,0,0,15.6
+298060,0,0,0,15.6
+298061,0,0,0,15.6
+298062,0,0,0,15.6
+298063,0,0,0,15.6
+298064,0,0,0,15.6
+298065,0,0,0,15.6
+298066,0,0,0,15.6
+298067,0,0,0,15.6
+298068,0,0,0,15.6
+298069,0,0,0,15.6
+298070,0,0,0,15.6
+298071,0,0,0,15.6
+298072,0,0,0,15.6
+298073,0,0,0,15.6
+298074,0,0,0,15.6
+298075,332690.323,365549.8467,655594.4229,15.6
+298076,0,0,0,15.6
+298077,0,0,0,15.6
+298078,0,0,0,15.6
+298079,0,0,0,15.6
+298080,0,0,0,15.6
+298081,0,0,0,15.6
+298082,0,0,0,15.6
+298083,0,0,0,15.6
+298084,0,0,0,15.6
+298085,0,0,0,15.6
+298086,0,0,0,15.6
+298087,0,0,0,15.6
+298088,0,0,0,15.6
+298089,0,0,0,15.6
+298090,0,0,0,15.6
+298091,0,0,0,15.6
+298092,0,0,0,15.6
+298093,0,0,0,15.6
+298094,0,0,0,15.6
+298095,0,0,0,15.6
+298096,0,0,0,15.6
+298097,0,0,0,15.6
+298098,0,0,0,15.6
+298099,0,0,0,15.6
+298100,0,0,0,15.6
+298101,0,0,0,15.6
+298102,0,0,0,15.6
+298103,0,0,0,15.6
+298104,0,0,0,15.6
+298105,0,0,0,15.6
+298106,0,0,0,15.6
+298107,0,0,0,15.6
+298108,0,0,0,15.6
+298109,0,365153.0813,655378.5512,15.6
+298110,334488.0551,0,0,15.6
+298111,0,0,0,15.6
+298112,0,0,0,15.6
+298113,0,0,0,15.6
+298114,0,0,0,15.6
+298115,0,0,0,15.6
+298116,0,0,0,15.6
+298117,0,0,0,15.6
+298118,0,0,0,15.6
+298119,0,0,0,15.6
+298120,0,0,0,15.6
+298121,0,0,0,15.6
+298122,0,0,0,15.6
+298123,0,0,0,15.6
+298124,0,0,0,15.6
+298125,0,0,0,15.6
+298126,0,0,0,15.6
+298127,0,0,0,15.6
+298128,0,0,0,15.6
+298129,0,0,0,15.6
+298130,0,0,0,15.6
+298131,0,0,0,15.6
+298132,0,0,0,15.6
+298133,0,0,0,15.6
+298134,0,0,0,15.6
+298135,0,0,0,15.6
+298136,0,0,0,15.6
+298137,0,0,0,15.6
+298138,0,0,0,15.6
+298139,0,0,0,15.6
+298140,0,0,0,15.6
+298141,0,0,0,15.6
+298142,0,0,0,15.6
+298143,0,0,655205.6338,15.6
+298144,0,366157.0647,0,15.6
+298145,333759.0513,0,0,15.6
+298146,0,0,0,15.6
+298147,0,0,0,15.6
+298148,0,0,0,15.6
+298149,0,0,0,15.6
+298150,0,0,0,15.6
+298151,0,0,0,15.6
+298152,0,0,0,15.6
+298153,0,0,0,15.6
+298154,0,0,0,15.6
+298155,0,0,0,15.6
+298156,0,0,0,15.6
+298157,0,0,0,15.6
+298158,0,0,0,15.6
+298159,0,0,0,15.6
+298160,0,0,0,15.6
+298161,0,0,0,15.6
+298162,0,0,0,15.6
+298163,0,0,0,15.6
+298164,0,0,0,15.6
+298165,0,0,0,15.6
+298166,0,0,0,15.6
+298167,0,0,0,15.6
+298168,0,0,0,15.6
+298169,0,0,0,15.6
+298170,0,0,0,15.6
+298171,0,0,0,15.6
+298172,0,0,0,15.6
+298173,0,0,0,15.6
+298174,0,0,0,15.6
+298175,0,0,0,15.6
+298176,0,0,0,15.6
+298177,0,0,655322.4823,15.6
+298178,0,0,0,15.6
+298179,0,366765.8502,0,15.6
+298180,335717.1065,0,0,15.6
+298181,0,0,0,15.6
+298182,0,0,0,15.6
+298183,0,0,0,15.6
+298184,0,0,0,15.6
+298185,0,0,0,15.6
+298186,0,0,0,15.6
+298187,0,0,0,15.6
+298188,0,0,0,15.6
+298189,0,0,0,15.6
+298190,0,0,0,15.6
+298191,0,0,0,15.6
+298192,0,0,0,15.6
+298193,0,0,0,15.6
+298194,0,0,0,15.6
+298195,0,0,0,15.6
+298196,0,0,0,15.6
+298197,0,0,0,15.6
+298198,0,0,0,15.6
+298199,0,0,0,15.6
+298200,0,0,0,15.6
+298201,0,0,0,15.6
+298202,0,0,0,15.6
+298203,0,0,0,15.6
+298204,0,0,0,15.6
+298205,0,0,0,15.6
+298206,0,0,0,15.6
+298207,0,0,0,15.6
+298208,0,0,0,15.6
+298209,0,0,0,15.6
+298210,0,0,0,15.6
+298211,0,0,655391.4896,15.6
+298212,0,0,0,15.6
+298213,0,0,0,15.6
+298214,0,364938.8173,0,15.6
+298215,334645.674,0,0,15.6
+298216,0,0,0,15.6
+298217,0,0,0,15.6
+298218,0,0,0,15.6
+298219,0,0,0,15.6
+298220,0,0,0,15.6
+298221,0,0,0,15.6
+298222,0,0,0,15.6
+298223,0,0,0,15.6
+298224,0,0,0,15.6
+298225,0,0,0,15.6
+298226,0,0,0,15.6
+298227,0,0,0,15.6
+298228,0,0,0,15.6
+298229,0,0,0,15.6
+298230,0,0,0,15.6
+298231,0,0,0,15.6
+298232,0,0,0,15.6
+298233,0,0,0,15.6
+298234,0,0,0,15.6
+298235,0,0,0,15.6
+298236,0,0,0,15.6
+298237,0,0,0,15.6
+298238,0,0,0,15.6
+298239,0,0,0,15.6
+298240,0,0,0,15.6
+298241,0,0,0,15.6
+298242,0,0,0,15.6
+298243,0,0,0,15.6
+298244,0,0,0,15.6
+298245,0,0,655402.4367,15.6
+298246,0,0,0,15.6
+298247,0,0,0,15.6
+298248,0,0,0,15.6
+298249,0,366227.5273,0,15.6
+298250,335994.023,0,0,15.6
+298251,0,0,0,15.6
+298252,0,0,0,15.6
+298253,0,0,0,15.6
+298254,0,0,0,15.6
+298255,0,0,0,15.6
+298256,0,0,0,15.6
+298257,0,0,0,15.6
+298258,0,0,0,15.6
+298259,0,0,0,15.6
+298260,0,0,0,15.6
+298261,0,0,0,15.6
+298262,0,0,0,15.6
+298263,0,0,0,15.6
+298264,0,0,0,15.6
+298265,0,0,0,15.6
+298266,0,0,0,15.6
+298267,0,0,0,15.6
+298268,0,0,0,15.6
+298269,0,0,0,15.6
+298270,0,0,0,15.6
+298271,0,0,0,15.6
+298272,0,0,0,15.6
+298273,0,0,0,15.6
+298274,0,0,0,15.6
+298275,0,0,0,15.6
+298276,0,0,0,15.6
+298277,0,0,0,15.6
+298278,0,0,655664.0336,15.6
+298279,0,0,0,15.6
+298280,0,0,0,15.6
+298281,0,0,0,15.6
+298282,0,0,0,15.6
+298283,0,0,0,15.6
+298284,335363.5314,366936.9581,0,15.6
+298285,0,0,0,15.6
+298286,0,0,0,15.6
+298287,0,0,0,15.6
+298288,0,0,0,15.6
+298289,0,0,0,15.6
+298290,0,0,0,15.6
+298291,0,0,0,15.6
+298292,0,0,0,15.6
+298293,0,0,0,15.6
+298294,0,0,0,15.6
+298295,0,0,0,15.6
+298296,0,0,0,15.6
+298297,0,0,0,15.6
+298298,0,0,0,15.6
+298299,0,0,0,15.6
+298300,0,0,0,15.6
+298301,0,0,0,15.6
+298302,0,0,0,15.6
+298303,0,0,0,15.6
+298304,0,0,0,15.6
+298305,0,0,0,15.6
+298306,0,0,0,15.6
+298307,0,0,0,15.6
+298308,0,0,0,15.6
+298309,0,0,0,15.6
+298310,0,0,0,15.6
+298311,0,0,0,15.6
+298312,0,0,655847.7894,15.6
+298313,0,0,0,15.6
+298314,0,0,0,15.6
+298315,0,0,0,15.6
+298316,0,0,0,15.6
+298317,0,0,0,15.6
+298318,336102.6024,365612.775,0,15.6
+298319,0,0,0,15.6
+298320,0,0,0,17.8
+298321,0,144610.7368,0,17.8
+298322,0,0,0,17.8
+298323,0,0,0,17.8
+298324,0,17017.49947,0,17.8
+298325,0,34903.75492,0,17.8
+298326,0,19959.13,0,17.8
+298327,0,23669.35447,0,17.8
+298328,0,23903.55484,0,17.8
+298329,0,24282.46851,0,17.8
+298330,0,24235.94035,0,17.8
+298331,0,24203.60502,0,17.8
+298332,0,24476.08087,0,17.8
+298333,0,24568.36129,0,17.8
+298334,0,24569.20832,0,17.8
+298335,0,0,0,17.8
+298336,0,0,0,17.8
+298337,0,0,0,17.8
+298338,0,0,0,17.8
+298339,0,0,0,17.8
+298340,0,0,0,17.8
+298341,0,0,0,17.8
+298342,0,0,0,17.8
+298343,0,0,0,17.8
+298344,0,0,0,17.8
+298345,0,0,655998.1325,17.8
+298346,0,0,0,17.8
+298347,0,0,0,17.8
+298348,0,0,0,17.8
+298349,0,0,0,17.8
+298350,0,0,0,17.8
+298351,0,0,0,17.8
+298352,335657.523,369425.3546,0,17.8
+298353,0,0,0,17.8
+298354,0,0,0,17.8
+298355,0,0,0,17.8
+298356,0,0,0,17.8
+298357,0,0,0,17.8
+298358,0,0,0,17.8
+298359,0,0,0,17.8
+298360,0,0,0,17.8
+298361,0,0,0,17.8
+298362,0,0,0,17.8
+298363,0,0,0,17.8
+298364,0,0,0,17.8
+298365,0,0,0,17.8
+298366,0,0,0,17.8
+298367,0,0,0,17.8
+298368,0,0,0,17.8
+298369,0,0,0,17.8
+298370,0,0,0,17.8
+298371,0,0,0,17.8
+298372,0,0,0,17.8
+298373,0,0,0,17.8
+298374,0,0,0,17.8
+298375,0,0,0,17.8
+298376,0,0,0,17.8
+298377,0,0,0,17.8
+298378,0,0,0,17.8
+298379,0,0,656022.9194,17.8
+298380,0,0,0,20
+298381,1144.752585,11045.17058,0,20
+298382,0,0,0,20
+298383,0,0,0,20
+298384,0,6412.2294,0,20
+298385,1265.82779,112997.7399,0,20
+298386,2303.634293,65179.76356,0,20
+298387,2605.215794,71218.12366,0,20
+298388,2129.821158,76732.63729,0,20
+298389,10501.06862,97306.12121,0,20
+298390,8638.407805,91718.402,0,20
+298391,8185.732169,92278.3611,0,20
+298392,8763.8328,94608.58261,0,20
+298393,8889.316355,95213.91855,0,20
+298394,8888.85086,95570.31514,0,20
+298395,8790.303011,97139.06909,0,20
+298396,9749.727622,96912.70782,0,20
+298397,12282.16308,98551.8928,0,20
+298398,10675.13376,98495.65903,0,20
+298399,11439.33446,100445.071,0,20
+298400,11452.36683,101022.6932,0,20
+298401,11812.27846,101815.3591,0,20
+298402,11819.71561,102868.8301,0,20
+298403,11846.42063,103247.8767,0,20
+298404,12178.11661,103822.2597,0,20
+298405,12101.6578,104580.341,0,20
+298406,12459.08846,105228.0028,0,20
+298407,12316.11129,105863.5647,0,20
+298408,12592.18898,106230.8759,0,20
+298409,12475.10241,107069.492,0,20
+298410,12830.79836,107667.2617,0,20
+298411,12594.4088,108106.0133,0,20
+298412,12587.3045,107975.0814,0,20
+298413,12606.26318,108958.9875,0,20
+298414,12354.26384,108545.3697,0,20
+298415,12353.07125,109082.6608,0,20
+298416,12336.30553,109660.3821,0,20
+298417,12112.71815,109166.8959,0,20
+298418,12237.86489,110136.788,0,20
+298419,12093.39097,109989.4247,0,20
+298420,12096.27153,110060.9861,0,20
+298421,11967.88385,110561.5861,0,20
+298422,11865.633,111077.7872,0,20
+298423,11839.88491,110622.2849,0,20
+298424,11595.23385,111339.0217,0,20
+298425,11723.25559,110861.1594,0,20
+298426,11464.08678,111806.3408,0,20
+298427,11463.13131,111268.1012,0,20
+298428,11189.09505,111888.3046,0,20
+298429,11329.98138,111462.7122,0,20
+298430,10952.05491,111963.4037,0,20
+298431,10934.77507,111875.2324,0,20
+298432,10801.84973,112462.1035,0,20
+298433,10562.66805,111930.1647,0,20
+298434,10650.61051,112586.0627,0,20
+298435,10293.80561,112963.7035,0,20
+298436,10260.50509,112766.5785,0,20
+298437,10124.8238,112621.4361,0,20
+298438,9880.26652,113101.8414,0,20
+298439,9864.705374,113040.3004,0,20
+298440,9466.995087,112806.4633,0,21
+298441,6058.403915,106725.2877,0,21
+298442,5346.165774,105497.5444,0,21
+298443,5194.804861,105442.7374,0,21
+298444,4725.128758,104866.1946,0,21
+298445,4710.10064,104871.3863,0,21
+298446,4544.678633,104792.6753,0,21
+298447,4527.404188,104195.6321,0,21
+298448,4423.951584,103920.3168,0,21
+298449,4254.343517,104444.0073,0,21
+298450,4214.640661,103087.7812,0,21
+298451,4206.640848,103896.3573,0,21
+298452,4038.126919,103017.0973,0,21
+298453,4128.64955,102990.6547,0,21
+298454,4005.554615,102891.2946,0,21
+298455,3810.659569,102550.0833,0,21
+298456,4048.997308,102260.9608,0,21
+298457,3768.271569,102284.7416,0,21
+298458,3751.041922,101489.7494,0,21
+298459,3689.445624,102025.4818,0,21
+298460,3698.103823,101338.1659,0,21
+298461,3510.418471,101204.0666,0,21
+298462,3490.787067,100645.0683,0,21
+298463,3490.787632,100950.8949,0,21
+298464,3490.787651,100343.6096,0,21
+298465,3339.299825,100155.8759,0,21
+298466,3490.787085,99796.73176,0,21
+298467,3213.834337,99804.75685,0,21
+298468,3339.299908,99566.51568,0,21
+298469,3339.29982,99004.46544,0,21
+298470,3074.332652,99015.5132,0,21
+298471,3325.931393,98398.52493,0,21
+298472,3074.333207,98164.29517,0,21
+298473,3060.937376,96795.85673,0,21
+298474,3187.069536,96054.4858,0,21
+298475,2920.676879,93727.61545,0,21
+298476,3047.514236,93782.51462,0,21
+298477,2920.676802,93137.26399,0,21
+298478,2907.225416,91862.65623,0,21
+298479,2779.640969,91559.98683,0,21
+298480,2893.747101,90949.65785,0,21
+298481,2779.64089,89883.85733,0,21
+298482,2752.65455,89494.06957,0,21
+298483,2624.27284,88763.02367,0,21
+298484,2752.655084,87657.07818,0,21
+298485,2481.499876,87812.49506,0,21
+298486,2610.736849,85841.13224,0,21
+298487,2467.935845,86290.72183,0,21
+298488,2481.499967,84763.63027,0,21
+298489,2454.342731,82942.21185,0,21
+298490,2324.180963,81944.45773,0,21
+298491,2310.559288,80780.47126,0,21
+298492,2193.013534,80127.56363,0,21
+298493,2296.907535,78700.02185,0,21
+298494,2179.390771,78468.82991,0,21
+298495,2019.781734,76842.96317,0,21
+298496,2152.05828,76651.1988,0,21
+298497,2019.781633,75059.07108,0,21
+298498,1886.267387,74502.81103,0,21
+298499,1992.328741,73190.6976,0,21
+298500,1723.895569,72539.43052,0,21
+298501,0,36579.16044,0,21
+298502,0,34000.57653,0,21
+298503,0,33278.84828,0,21
+298504,0,32612.73158,0,21
+298505,0,31907.46468,0,21
+298506,0,31539.06236,0,21
+298507,0,30562.30473,0,21
+298508,0,30488.57406,0,21
+298509,0,29597.22952,0,21
+298510,0,29139.82425,0,21
+298511,0,28879.87225,0,21
+298512,0,28030.01984,0,21
+298513,0,27496.00496,0,21
+298514,0,26769.75621,0,21
+298515,0,26251.92905,0,21
+298516,0,25820.86127,0,21
+298517,0,25307.71867,0,21
+298518,0,24757.16285,0,21
+298519,0,24217.81294,0,21
+298520,0,24018.73633,0,21
+298521,0,23253.95632,0,21
+298522,0,22904.62555,0,21
+298523,0,22195.85066,0,21
+298524,0,22149.79444,0,21
+298525,0,21338.77715,0,21
+298526,0,20909.60538,0,21
+298527,0,20576.2282,0,21
+298528,0,20084.57132,0,21
+298529,0,19460.07086,0,21
+298530,0,19467.83769,0,21
+298531,0,18985.26379,0,21
+298532,0,18496.28706,0,21
+298533,0,18210.28198,0,21
+298534,0,17750.04083,0,21
+298535,0,17454.67941,0,21
+298536,0,17004.09965,0,21
+298537,0,16749.43042,0,21
+298538,0,16257.58043,0,21
+298539,0,16062.60542,0,21
+298540,0,15506.93548,0,21
+298541,0,15198.00884,0,21
+298542,0,14663.24587,0,21
+298543,0,14267.54658,0,21
+298544,0,14153.6501,0,21
+298545,0,13247.60467,0,21
+298546,0,13333.3363,0,21
+298547,0,12370.14351,0,21
+298548,0,11901.18281,0,21
+298549,0,11315.89482,0,21
+298550,0,11233.86653,0,21
+298551,0,10644.55305,0,21
+298552,0,10200.84064,0,21
+298553,0,9797.632594,0,21
+298554,0,9278.571509,0,21
+298555,0,9106.898562,0,21
+298556,0,8608.40532,0,21
+298557,0,8057.923311,0,21
+298558,0,7890.401247,0,21
+298559,0,7361.249606,0,21
+298560,0,6823.817768,0,21
+298561,0,6606.15543,0,21
+298562,0,6155.803608,0,21
+298563,0,5743.54037,0,21
+298564,0,5384.952938,0,21
+298565,0,4793.867726,0,21
+298566,0,4520.001562,0,21
+298567,0,4056.138771,0,21
+298568,0,3775.478556,0,21
+298569,0,3309.26506,0,21
+298570,0,2854.544124,0,21
+298571,0,2647.286865,0,21
+298572,0,2495.376641,0,21
+298573,0,2110.548001,0,21
+298574,0,2091.928398,0,21
+298575,0,1870.234497,0,21
+298576,0,2019.855695,0,21
+298577,0,1426.786148,0,21
+298578,0,1625.648117,0,21
+298579,0,1463.722791,0,21
+298580,0,1158.085944,0,21
+298581,0,1242.017578,0,21
+298582,0,894.6750537,0,21
+298583,0,894.6755883,0,21
+298584,0,836.9287936,0,21
+298585,0,607.076806,0,21
+298586,0,562.984037,0,21
+298587,0,482.3524831,0,21
+298588,0,418.7704198,0,21
+298589,0,356.479973,0,21
+298590,0,319.9970561,0,21
+298591,0,296.9379137,0,21
+298592,0,235.5609228,0,21
+298593,0,217.0399326,0,21
+298594,0,207.7329713,0,21
+298595,0,189.0201738,0,21
+298596,0,179.6116436,0,21
+298597,0,141.5916659,0,21
+298598,0,160.6825962,0,21
+298599,0,102.8453152,0,21
+298600,0,122.3206249,0,21
+298601,0,83.13298929,0,21
+298602,0,83.13299349,0,21
+298603,0,63.13579973,0,21
+298604,0,42.77661807,0,21
+298605,0,21.9057767,0,21
+298606,0,21.90577793,0,21
+298607,0,0,0,21
+298608,0,11.16966475,0,21
+298609,0,0,0,21
+298610,0,0,0,21
+298611,0,0,0,21
+298612,0,0,0,21
+298613,0,0,0,21
+298614,0,0,0,21
+298615,0,0,0,21
+298616,0,0,0,21
+298617,0,0,0,21
+298618,0,0,0,21
+298619,0,0,0,21
+298620,0,0,0,21
+298621,0,0,0,21
+298622,0,0,0,21
+298623,0,0,0,21
+298624,0,0,0,21
+298625,0,0,0,21
+298626,0,0,0,21
+298627,0,0,0,21
+298628,0,0,0,21
+298629,0,0,0,21
+298630,0,0,0,21
+298631,0,0,0,21
+298632,0,0,0,21
+298633,0,0,0,21
+298634,0,0,0,21
+298635,0,0,0,21
+298636,0,0,0,21
+298637,0,0,0,21
+298638,0,0,0,21
+298639,0,0,0,21
+298640,0,0,0,21
+298641,0,0,0,21
+298642,0,0,0,21
+298643,0,0,0,21
+298644,0,0,0,21
+298645,0,0,0,21
+298646,0,0,0,21
+298647,0,0,0,21
+298648,0,0,0,21
+298649,0,0,0,21
+298650,0,0,0,21
+298651,0,0,0,21
+298652,0,0,0,21
+298653,0,0,0,21
+298654,0,0,0,21
+298655,0,0,0,21
+298656,0,0,0,21
+298657,0,0,0,21
+298658,0,0,0,21
+298659,0,0,0,21
+298660,0,0,0,21
+298661,0,0,0,21
+298662,0,0,0,21
+298663,0,0,0,21
+298664,0,0,0,21
+298665,0,0,0,21
+298666,0,0,0,21
+298667,0,0,0,21
+298668,0,0,0,21
+298669,0,0,0,21
+298670,0,0,0,21
+298671,0,0,0,21
+298672,0,0,0,21
+298673,0,0,0,21
+298674,0,0,0,21
+298675,0,0,0,21
+298676,0,0,0,21
+298677,0,0,0,21
+298678,0,0,0,21
+298679,0,0,0,21
+298680,0,0,0,21
+298681,0,0,0,21
+298682,0,0,0,21
+298683,0,0,0,21
+298684,0,0,0,21
+298685,0,0,0,21
+298686,0,0,0,21
+298687,0,0,0,21
+298688,0,0,0,21
+298689,0,0,0,21
+298690,0,0,0,21
+298691,0,0,0,21
+298692,0,0,0,21
+298693,0,0,0,21
+298694,0,0,0,21
+298695,0,0,0,21
+298696,0,0,0,21
+298697,0,0,0,21
+298698,0,0,0,21
+298699,0,0,0,21
+298700,0,0,0,21
+298701,0,0,0,21
+298702,0,0,0,21
+298703,0,0,0,21
+298704,0,0,0,21
+298705,0,0,0,21
+298706,0,0,0,21
+298707,0,0,0,21
+298708,0,0,0,21
+298709,0,0,0,21
+298710,0,0,0,21
+298711,0,0,0,21
+298712,0,0,0,21
+298713,0,0,0,21
+298714,0,0,0,21
+298715,0,0,0,21
+298716,0,0,0,21
+298717,0,0,0,21
+298718,0,0,0,21
+298719,0,0,0,21
+298720,0,0,0,21
+298721,0,0,0,21
+298722,0,0,0,21
+298723,0,0,0,21
+298724,0,0,0,21
+298725,0,0,0,21
+298726,0,0,0,21
+298727,0,0,0,21
+298728,0,0,0,21
+298729,0,0,0,21
+298730,0,0,0,21
+298731,0,0,0,21
+298732,0,0,0,21
+298733,0,0,0,21
+298734,0,0,0,21
+298735,0,0,0,21
+298736,0,0,0,21
+298737,0,0,0,21
+298738,0,0,0,21
+298739,0,0,0,21
+298740,0,0,0,21
+298741,0,0,0,21
+298742,0,0,0,21
+298743,0,0,0,21
+298744,0,0,0,21
+298745,0,0,0,21
+298746,0,0,0,21
+298747,0,0,0,21
+298748,0,0,0,21
+298749,0,0,0,21
+298750,0,0,0,21
+298751,0,0,0,21
+298752,0,0,0,21
+298753,0,0,0,21
+298754,0,0,0,21
+298755,0,0,0,21
+298756,0,0,0,21
+298757,0,0,0,21
+298758,0,0,0,21
+298759,0,0,0,21
+298760,0,0,0,21
+298761,0,0,0,21
+298762,0,0,0,21
+298763,0,0,0,21
+298764,0,0,0,21
+298765,0,0,0,21
+298766,0,0,0,21
+298767,0,0,0,21
+298768,0,0,0,21
+298769,0,0,0,21
+298770,0,0,0,21
+298771,0,0,0,21
+298772,0,0,0,21
+298773,0,0,0,21
+298774,0,0,0,21
+298775,0,0,0,21
+298776,0,0,0,21
+298777,0,0,0,21
+298778,0,0,0,21
+298779,0,0,0,21
+298780,0,0,0,21
+298781,0,0,0,21
+298782,0,0,0,21
+298783,0,0,0,21
+298784,0,0,0,21
+298785,0,0,0,21
+298786,0,0,0,21
+298787,0,0,0,21
+298788,0,0,0,21
+298789,0,0,0,21
+298790,0,0,0,21
+298791,0,0,0,21
+298792,0,0,0,21
+298793,0,0,0,21
+298794,0,0,0,21
+298795,0,0,0,21
+298796,0,0,0,21
+298797,0,0,0,21
+298798,0,0,0,21
+298799,0,0,0,21
+298800,0,0,0,21
+298801,0,0,0,21
+298802,0,0,0,21
+298803,0,0,0,21
+298804,0,0,0,21
+298805,0,0,0,21
+298806,0,0,0,21
+298807,0,0,0,21
+298808,0,0,0,21
+298809,0,0,0,21
+298810,0,0,0,21
+298811,0,0,0,21
+298812,0,0,0,21
+298813,0,0,0,21
+298814,0,0,0,21
+298815,0,0,0,21
+298816,0,0,0,21
+298817,0,0,0,21
+298818,0,0,0,21
+298819,0,0,0,21
+298820,0,0,0,21
+298821,0,0,0,21
+298822,0,0,0,21
+298823,0,0,0,21
+298824,0,0,0,21
+298825,0,0,0,21
+298826,0,0,0,21
+298827,0,0,0,21
+298828,0,0,0,21
+298829,0,0,0,21
+298830,0,0,0,21
+298831,0,0,0,21
+298832,0,0,0,21
+298833,0,0,0,21
+298834,0,0,0,21
+298835,0,0,0,21
+298836,0,0,0,21
+298837,0,0,0,21
+298838,0,0,0,21
+298839,0,0,0,21
+298840,0,0,0,21
+298841,0,0,0,21
+298842,0,0,0,21
+298843,0,0,0,21
+298844,0,0,0,21
+298845,0,0,0,21
+298846,0,0,0,21
+298847,0,0,0,21
+298848,0,0,0,21
+298849,0,0,0,21
+298850,0,0,0,21
+298851,0,0,0,21
+298852,0,0,0,21
+298853,0,0,0,21
+298854,0,0,0,21
+298855,0,0,0,21
+298856,0,0,0,21
+298857,0,0,0,21
+298858,0,0,0,21
+298859,0,0,0,21
+298860,0,0,0,21
+298861,0,0,0,21
+298862,0,0,0,21
+298863,0,0,0,21
+298864,0,0,0,21
+298865,0,0,0,21
+298866,0,0,0,21
+298867,0,0,0,21
+298868,0,0,0,21
+298869,0,0,0,21
+298870,0,0,0,21
+298871,0,0,0,21
+298872,0,0,0,21
+298873,0,0,0,21
+298874,0,0,0,21
+298875,0,0,0,21
+298876,0,0,0,21
+298877,0,0,0,21
+298878,0,0,0,21
+298879,0,0,0,21
+298880,0,0,0,21
+298881,0,0,0,21
+298882,0,0,0,21
+298883,0,0,0,21
+298884,0,0,0,21
+298885,0,0,0,21
+298886,0,0,0,21
+298887,0,0,0,21
+298888,0,0,0,21
+298889,0,0,0,21
+298890,0,0,0,21
+298891,0,0,0,21
+298892,0,0,0,21
+298893,0,0,0,21
+298894,0,0,0,21
+298895,0,0,0,21
+298896,0,0,0,21
+298897,0,0,0,21
+298898,0,0,0,21
+298899,0,0,0,21
+298900,0,0,0,21
+298901,0,0,0,21
+298902,0,0,0,21
+298903,0,0,0,21
+298904,0,0,0,21
+298905,0,0,0,21
+298906,0,0,0,21
+298907,0,0,0,21
+298908,0,0,0,21
+298909,0,0,0,21
+298910,0,0,0,21
+298911,0,0,0,21
+298912,0,0,0,21
+298913,0,0,0,21
+298914,0,0,0,21
+298915,0,0,0,21
+298916,0,0,0,21
+298917,0,0,0,21
+298918,0,0,0,21
+298919,0,0,0,21
+298920,0,0,0,21
+298921,0,0,0,21
+298922,0,0,0,21
+298923,0,0,0,21
+298924,0,0,0,21
+298925,0,0,0,21
+298926,0,0,0,21
+298927,0,0,0,21
+298928,0,0,0,21
+298929,0,0,0,21
+298930,0,0,0,21
+298931,0,0,0,21
+298932,0,0,0,21
+298933,0,0,0,21
+298934,0,0,0,21
+298935,0,0,0,21
+298936,0,0,0,21
+298937,0,0,0,21
+298938,0,0,0,21
+298939,0,0,0,21
+298940,0,0,0,21
+298941,0,0,0,21
+298942,0,0,0,21
+298943,0,0,0,21
+298944,0,0,0,21
+298945,0,0,0,21
+298946,0,0,0,21
+298947,0,0,0,21
+298948,0,0,0,21
+298949,0,0,0,21
+298950,0,0,0,21
+298951,0,0,0,21
+298952,0,0,0,21
+298953,0,0,0,21
+298954,0,0,0,21
+298955,0,0,0,21
+298956,0,0,0,21
+298957,0,0,0,21
+298958,0,0,0,21
+298959,0,0,0,21
+298960,0,0,0,21
+298961,0,0,0,21
+298962,0,0,0,21
+298963,0,0,0,21
+298964,0,0,0,21
+298965,0,0,0,21
+298966,0,0,0,21
+298967,0,0,0,21
+298968,0,0,0,21
+298969,0,0,0,21
+298970,0,0,0,21
+298971,0,0,0,21
+298972,0,0,0,21
+298973,0,0,0,21
+298974,0,0,0,21
+298975,0,0,0,21
+298976,0,0,0,21
+298977,0,0,0,21
+298978,0,0,0,21
+298979,0,0,0,21
+298980,0,0,0,21
+298981,0,0,0,21
+298982,0,0,0,21
+298983,0,0,0,21
+298984,0,0,0,21
+298985,0,0,0,21
+298986,0,0,0,21
+298987,0,0,0,21
+298988,0,0,0,21
+298989,0,0,0,21
+298990,0,0,0,21
+298991,0,0,0,21
+298992,0,0,0,21
+298993,0,0,0,21
+298994,0,0,0,21
+298995,0,0,0,21
+298996,0,0,0,21
+298997,0,0,0,21
+298998,0,0,0,21
+298999,0,0,0,21
+299000,0,0,0,21
+299001,0,0,0,21
+299002,0,0,0,21
+299003,0,0,0,21
+299004,0,0,0,21
+299005,0,0,0,21
+299006,0,0,0,21
+299007,0,0,0,21
+299008,0,0,0,21
+299009,0,0,0,21
+299010,0,0,0,21
+299011,0,0,0,21
+299012,0,0,0,21
+299013,0,0,0,21
+299014,0,0,0,21
+299015,0,0,0,21
+299016,0,0,0,21
+299017,0,0,0,21
+299018,0,0,0,21
+299019,0,0,0,21
+299020,0,0,0,21
+299021,0,0,0,21
+299022,0,0,0,21
+299023,0,0,0,21
+299024,0,0,0,21
+299025,0,0,0,21
+299026,0,0,0,21
+299027,0,0,0,21
+299028,0,0,0,21
+299029,0,0,0,21
+299030,0,0,0,21
+299031,0,0,0,21
+299032,0,0,0,21
+299033,0,0,0,21
+299034,0,0,0,21
+299035,0,0,0,21
+299036,0,0,0,21
+299037,0,0,0,21
+299038,0,0,0,21
+299039,0,0,0,21
+299040,0,0,0,21
+299041,0,0,0,21
+299042,0,0,0,21
+299043,0,0,0,21
+299044,0,0,0,21
+299045,0,0,0,21
+299046,0,0,0,21
+299047,0,0,0,21
+299048,0,0,0,21
+299049,0,0,0,21
+299050,0,0,0,21
+299051,0,0,0,21
+299052,0,0,0,21
+299053,0,0,0,21
+299054,0,0,0,21
+299055,0,0,0,21
+299056,0,0,0,21
+299057,0,0,0,21
+299058,0,0,0,21
+299059,0,0,0,21
+299060,0,0,0,21
+299061,0,0,0,21
+299062,0,0,0,21
+299063,0,0,0,21
+299064,0,0,0,21
+299065,0,0,0,21
+299066,0,0,0,21
+299067,0,0,0,21
+299068,0,0,0,21
+299069,0,0,0,21
+299070,0,0,0,21
+299071,0,0,0,21
+299072,0,0,0,21
+299073,0,0,0,21
+299074,0,0,0,21
+299075,0,0,0,21
+299076,0,0,0,21
+299077,0,0,0,21
+299078,0,0,0,21
+299079,0,0,0,21
+299080,0,0,0,21
+299081,0,0,0,21
+299082,0,0,0,21
+299083,0,0,0,21
+299084,0,0,0,21
+299085,0,0,0,21
+299086,0,0,0,21
+299087,0,0,0,21
+299088,0,0,0,21
+299089,0,0,0,21
+299090,0,0,0,21
+299091,0,0,0,21
+299092,0,0,0,21
+299093,0,0,0,21
+299094,0,0,0,21
+299095,0,0,0,21
+299096,0,0,0,21
+299097,0,0,0,21
+299098,0,0,0,21
+299099,0,0,0,21
+299100,0,0,0,21
+299101,0,0,0,21
+299102,0,0,0,21
+299103,0,0,0,21
+299104,0,0,0,21
+299105,0,0,0,21
+299106,0,0,0,21
+299107,0,0,0,21
+299108,0,0,0,21
+299109,0,0,0,21
+299110,0,0,0,21
+299111,0,0,0,21
+299112,0,0,0,21
+299113,0,0,0,21
+299114,0,0,0,21
+299115,0,0,0,21
+299116,0,0,0,21
+299117,0,0,0,21
+299118,0,0,0,21
+299119,0,0,0,21
+299120,0,0,0,21
+299121,0,0,0,21
+299122,0,0,0,21
+299123,0,0,0,21
+299124,0,0,0,21
+299125,0,0,0,21
+299126,0,0,0,21
+299127,0,0,0,21
+299128,0,0,0,21
+299129,0,0,0,21
+299130,0,0,0,21
+299131,0,0,0,21
+299132,0,0,0,21
+299133,0,0,0,21
+299134,0,0,0,21
+299135,0,0,0,21
+299136,0,0,0,21
+299137,0,0,0,21
+299138,0,0,0,21
+299139,0,0,0,21
+299140,0,0,0,21
+299141,0,0,0,21
+299142,0,0,0,21
+299143,0,0,0,21
+299144,0,0,0,21
+299145,0,0,0,21
+299146,0,0,0,21
+299147,0,0,0,21
+299148,0,0,0,21
+299149,0,0,0,21
+299150,0,0,0,21
+299151,0,0,0,21
+299152,0,0,0,21
+299153,0,0,0,21
+299154,0,0,0,21
+299155,0,0,0,21
+299156,0,0,0,21
+299157,0,0,0,21
+299158,0,0,0,21
+299159,0,0,0,21
+299160,0,0,0,21
+299161,0,0,0,21
+299162,0,0,0,21
+299163,0,0,0,21
+299164,0,0,0,21
+299165,0,0,0,21
+299166,0,0,0,21
+299167,0,0,0,21
+299168,0,0,0,21
+299169,0,0,0,21
+299170,0,0,0,21
+299171,0,0,0,21
+299172,0,0,0,21
+299173,0,0,0,21
+299174,0,0,0,21
+299175,0,0,0,21
+299176,0,0,0,21
+299177,0,0,0,21
+299178,0,0,0,21
+299179,0,0,0,21
+299180,0,0,0,21
+299181,0,0,0,21
+299182,0,0,0,21
+299183,0,0,0,21
+299184,0,0,0,21
+299185,0,0,0,21
+299186,0,0,0,21
+299187,0,0,0,21
+299188,0,0,0,21
+299189,0,0,0,21
+299190,0,0,0,21
+299191,0,0,0,21
+299192,0,0,0,21
+299193,0,0,0,21
+299194,0,0,0,21
+299195,0,0,0,21
+299196,0,0,0,21
+299197,0,0,0,21
+299198,0,0,0,21
+299199,0,0,0,21
+299200,0,0,0,21
+299201,0,0,0,21
+299202,0,0,0,21
+299203,0,0,0,21
+299204,0,0,0,21
+299205,0,0,0,21
+299206,0,0,0,21
+299207,0,0,0,21
+299208,0,0,0,21
+299209,0,0,0,21
+299210,0,0,0,21
+299211,0,0,0,21
+299212,0,0,0,21
+299213,0,0,0,21
+299214,0,0,0,21
+299215,0,0,0,21
+299216,0,0,0,21
+299217,0,0,0,21
+299218,0,0,0,21
+299219,0,0,0,21
+299220,0,0,0,21
+299221,0,0,0,21
+299222,0,0,0,21
+299223,0,0,0,21
+299224,0,0,0,21
+299225,0,0,0,21
+299226,0,0,0,21
+299227,0,0,0,21
+299228,0,0,0,21
+299229,0,0,0,21
+299230,0,0,0,21
+299231,0,0,0,21
+299232,0,0,0,21
+299233,0,0,0,21
+299234,0,0,0,21
+299235,0,0,0,21
+299236,0,0,0,21
+299237,0,0,0,21
+299238,0,0,0,21
+299239,0,0,0,21
+299240,0,0,0,21
+299241,0,0,0,21
+299242,0,0,0,21
+299243,0,0,0,21
+299244,0,0,0,21
+299245,0,0,0,21
+299246,0,0,0,21
+299247,0,0,0,21
+299248,0,0,0,21
+299249,0,0,0,21
+299250,0,0,0,21
+299251,0,0,0,21
+299252,0,0,0,21
+299253,0,0,0,21
+299254,0,0,0,21
+299255,0,0,0,21
+299256,0,0,0,21
+299257,0,0,0,21
+299258,0,0,0,21
+299259,0,0,0,21
+299260,0,0,0,21
+299261,0,0,0,21
+299262,0,0,0,21
+299263,0,0,0,21
+299264,0,0,0,21
+299265,0,0,0,21
+299266,0,0,0,21
+299267,0,0,0,21
+299268,0,0,0,21
+299269,0,0,0,21
+299270,0,0,0,21
+299271,0,0,0,21
+299272,0,0,0,21
+299273,0,0,0,21
+299274,0,0,0,21
+299275,0,0,0,21
+299276,0,0,0,21
+299277,0,0,0,21
+299278,0,0,0,21
+299279,0,0,0,21
+299280,0,0,0,21
+299281,0,0,0,21
+299282,0,0,0,21
+299283,0,0,0,21
+299284,0,0,0,21
+299285,0,0,0,21
+299286,0,0,0,21
+299287,0,0,0,21
+299288,0,0,0,21
+299289,0,0,0,21
+299290,0,0,0,21
+299291,0,0,0,21
+299292,0,0,0,21
+299293,0,0,0,21
+299294,0,0,0,21
+299295,0,0,0,21
+299296,0,0,0,21
+299297,0,0,0,21
+299298,0,0,0,21
+299299,0,0,0,21
+299300,0,0,0,21
+299301,0,0,0,21
+299302,0,0,0,21
+299303,0,0,0,21
+299304,0,1036.583775,0,21
+299305,0,1199.904861,0,21
+299306,0,1361.707615,0,21
+299307,0,1522.148407,0,21
+299308,0,1839.416046,0,21
+299309,0,1839.416082,0,21
+299310,0,2307.559015,0,21
+299311,0,2307.559072,0,21
+299312,0,2461.792627,0,21
+299313,0,2767.824971,0,21
+299314,0,2919.699936,0,21
+299315,0,3070.858645,0,21
+299316,0,3221.330043,0,21
+299317,0,3520.313949,0,21
+299318,0,3520.313867,0,21
+299319,0,3816.835966,0,21
+299320,0,3816.836195,0,21
+299321,0,4257.337851,0,21
+299322,0,4111.052634,0,21
+299323,0,4548.339972,0,21
+299324,0,4548.340078,0,21
+299325,0,4837.337114,0,21
+299326,0,4837.33741,0,21
+299327,0,5124.424494,0,21
+299328,0,5267.278711,0,21
+299329,0,5409.686406,0,21
+299330,0,5551.656678,0,21
+299331,0,5693.198261,0,21
+299332,0,5834.319081,0,21
+299333,0,6115.330433,0,21
+299334,0,6115.33111,0,21
+299335,0,6394.750028,0,21
+299336,0,6394.750549,0,21
+299337,0,6672.630445,0,21
+299338,0,6672.63104,0,21
+299339,0,7063.96402,0,21
+299340,0,7240.946742,0,21
+299341,0,0,0,21
+299342,0,0,0,21
+299343,0,0,0,21
+299344,0,0,0,21
+299345,328551.5567,362552.5511,654705.7782,21
+299346,0,0,0,21
+299347,0,0,0,21
+299348,0,0,0,21
+299349,0,0,0,21
+299350,0,0,0,21
+299351,0,0,0,21
+299352,0,0,0,21
+299353,0,0,0,21
+299354,0,0,0,21
+299355,0,0,0,21
+299356,0,0,0,21
+299357,0,0,0,21
+299358,0,0,0,21
+299359,0,0,0,21
+299360,0,0,0,21
+299361,0,0,0,21
+299362,0,0,0,21
+299363,0,0,0,21
+299364,0,0,0,21
+299365,0,0,0,21
+299366,0,0,0,21
+299367,0,0,0,21
+299368,0,0,0,21
+299369,0,0,0,21
+299370,0,0,0,21
+299371,0,0,0,21
+299372,0,0,0,21
+299373,0,0,0,21
+299374,0,0,0,21
+299375,0,0,0,21
+299376,0,0,0,21
+299377,0,0,0,21
+299378,0,0,0,21
+299379,329048.5441,364038.8922,655582.958,21
+299380,0,0,0,21
+299381,0,0,0,21
+299382,0,0,0,21
+299383,0,0,0,21
+299384,0,0,0,21
+299385,0,0,0,21
+299386,0,0,0,21
+299387,0,0,0,21
+299388,0,0,0,21
+299389,0,0,0,21
+299390,0,0,0,21
+299391,0,0,0,21
+299392,0,0,0,21
+299393,0,0,0,21
+299394,0,0,0,21
+299395,0,0,0,21
+299396,0,0,0,21
+299397,0,0,0,21
+299398,0,0,0,21
+299399,0,0,0,21
+299400,0,0,0,15.6
+299401,0,0,0,15.6
+299402,0,0,0,15.6
+299403,0,0,0,15.6
+299404,0,0,0,15.6
+299405,0,0,0,15.6
+299406,0,0,0,15.6
+299407,0,0,0,15.6
+299408,0,0,0,15.6
+299409,0,0,0,15.6
+299410,0,0,0,15.6
+299411,0,0,0,15.6
+299412,0,0,0,15.6
+299413,331305.9414,366163.8859,656519.5723,15.6
+299414,0,0,0,15.6
+299415,0,0,0,15.6
+299416,0,0,0,15.6
+299417,0,0,0,15.6
+299418,0,0,0,15.6
+299419,0,0,0,15.6
+299420,0,0,0,15.6
+299421,0,0,0,15.6
+299422,0,0,0,15.6
+299423,0,0,0,15.6
+299424,0,0,0,15.6
+299425,0,0,0,15.6
+299426,0,0,0,15.6
+299427,0,0,0,15.6
+299428,0,0,0,15.6
+299429,0,0,0,15.6
+299430,0,0,0,15.6
+299431,0,0,0,15.6
+299432,0,0,0,15.6
+299433,0,0,0,15.6
+299434,0,0,0,15.6
+299435,0,0,0,15.6
+299436,0,0,0,15.6
+299437,0,0,0,15.6
+299438,0,0,0,15.6
+299439,0,0,0,15.6
+299440,0,0,0,15.6
+299441,0,0,0,15.6
+299442,0,0,0,15.6
+299443,0,0,0,15.6
+299444,0,0,0,15.6
+299445,0,0,0,15.6
+299446,0,0,0,15.6
+299447,331637.2756,364840.0956,656524.7002,15.6
+299448,0,0,0,15.6
+299449,0,0,0,15.6
+299450,0,0,0,15.6
+299451,0,0,0,15.6
+299452,0,0,0,15.6
+299453,0,0,0,15.6
+299454,0,0,0,15.6
+299455,0,0,0,15.6
+299456,0,0,0,15.6
+299457,0,0,0,15.6
+299458,0,0,0,15.6
+299459,0,0,0,15.6
+299460,0,0,0,15.6
+299461,0,0,0,15.6
+299462,0,0,0,15.6
+299463,0,0,0,15.6
+299464,0,0,0,15.6
+299465,0,0,0,15.6
+299466,0,0,0,15.6
+299467,0,0,0,15.6
+299468,0,0,0,15.6
+299469,0,0,0,15.6
+299470,0,0,0,15.6
+299471,0,0,0,15.6
+299472,0,0,0,15.6
+299473,0,0,0,15.6
+299474,0,0,0,15.6
+299475,0,0,0,15.6
+299476,0,0,0,15.6
+299477,0,0,0,15.6
+299478,0,0,0,15.6
+299479,0,0,0,15.6
+299480,0,0,0,15.6
+299481,333618.1452,366398.8574,656802.5868,15.6
+299482,0,0,0,15.6
+299483,0,0,0,15.6
+299484,0,0,0,15.6
+299485,0,0,0,15.6
+299486,0,0,0,15.6
+299487,0,0,0,15.6
+299488,0,0,0,15.6
+299489,0,0,0,15.6
+299490,0,0,0,15.6
+299491,0,0,0,15.6
+299492,0,0,0,15.6
+299493,0,0,0,15.6
+299494,0,0,0,15.6
+299495,0,0,0,15.6
+299496,0,0,0,15.6
+299497,0,0,0,15.6
+299498,0,0,0,15.6
+299499,0,0,0,15.6
+299500,0,0,0,15.6
+299501,0,0,0,15.6
+299502,0,0,0,15.6
+299503,0,0,0,15.6
+299504,0,0,0,15.6
+299505,0,0,0,15.6
+299506,0,0,0,15.6
+299507,0,0,0,15.6
+299508,0,0,0,15.6
+299509,0,0,0,15.6
+299510,0,0,0,15.6
+299511,0,0,0,15.6
+299512,0,0,0,15.6
+299513,0,0,0,15.6
+299514,0,0,0,15.6
+299515,333734.7262,366549.1839,656895.555,15.6
+299516,0,0,0,15.6
+299517,0,0,0,15.6
+299518,0,0,0,15.6
+299519,0,0,0,15.6
+299520,0,0,0,15.6
+299521,0,0,0,15.6
+299522,0,0,0,15.6
+299523,0,0,0,15.6
+299524,0,0,0,15.6
+299525,0,0,0,15.6
+299526,0,0,0,15.6
+299527,0,0,0,15.6
+299528,0,0,0,15.6
+299529,0,0,0,15.6
+299530,0,0,0,15.6
+299531,0,0,0,15.6
+299532,0,0,0,15.6
+299533,0,0,0,15.6
+299534,0,0,0,15.6
+299535,0,0,0,15.6
+299536,0,0,0,15.6
+299537,0,0,0,15.6
+299538,0,0,0,15.6
+299539,0,0,0,15.6
+299540,0,0,0,15.6
+299541,0,0,0,15.6
+299542,0,0,0,15.6
+299543,0,0,0,15.6
+299544,0,0,0,15.6
+299545,0,0,0,15.6
+299546,0,0,0,15.6
+299547,0,0,0,15.6
+299548,0,0,0,15.6
+299549,335317.489,364677.2371,657453.0544,15.6
+299550,0,0,0,15.6
+299551,0,0,0,15.6
+299552,0,0,0,15.6
+299553,0,0,0,15.6
+299554,0,0,0,15.6
+299555,0,0,0,15.6
+299556,0,0,0,15.6
+299557,0,0,0,15.6
+299558,0,0,0,15.6
+299559,0,0,0,15.6
+299560,0,0,0,15.6
+299561,0,0,0,15.6
+299562,0,0,0,15.6
+299563,0,0,0,15.6
+299564,0,0,0,15.6
+299565,0,0,0,15.6
+299566,0,0,0,15.6
+299567,0,0,0,15.6
+299568,0,0,0,15.6
+299569,0,0,0,15.6
+299570,0,0,0,15.6
+299571,0,0,0,15.6
+299572,0,0,0,15.6
+299573,0,0,0,15.6
+299574,0,0,0,15.6
+299575,0,0,0,15.6
+299576,0,0,0,15.6
+299577,0,0,0,15.6
+299578,0,0,0,15.6
+299579,0,0,0,15.6
+299580,0,0,0,15.6
+299581,0,0,0,15.6
+299582,0,0,0,15.6
+299583,334657.2062,369418.7631,656987.1702,15.6
+299584,0,0,0,15.6
+299585,0,0,0,15.6
+299586,0,0,0,15.6
+299587,0,0,0,15.6
+299588,0,0,0,15.6
+299589,0,0,0,15.6
+299590,0,0,0,15.6
+299591,0,0,0,15.6
+299592,0,0,0,15.6
+299593,0,0,0,15.6
+299594,0,0,0,15.6
+299595,0,0,0,15.6
+299596,0,0,0,15.6
+299597,0,0,0,15.6
+299598,0,0,0,15.6
+299599,0,0,0,15.6
+299600,0,0,0,15.6
+299601,0,0,0,15.6
+299602,0,0,0,15.6
+299603,0,0,0,15.6
+299604,0,0,0,15.6
+299605,0,0,0,15.6
+299606,0,0,0,15.6
+299607,0,0,0,15.6
+299608,0,0,0,15.6
+299609,0,0,0,15.6
+299610,0,0,0,15.6
+299611,0,0,0,15.6
+299612,0,0,0,15.6
+299613,0,0,0,15.6
+299614,0,0,0,15.6
+299615,0,0,0,15.6
+299616,0,0,0,15.6
+299617,0,369415.7626,657781.4899,15.6
+299618,336173.2598,0,0,15.6
+299619,0,0,0,15.6
+299620,0,0,0,15.6
+299621,0,0,0,15.6
+299622,0,0,0,15.6
+299623,0,0,0,15.6
+299624,0,0,0,15.6
+299625,0,0,0,15.6
+299626,0,0,0,15.6
+299627,0,0,0,15.6
+299628,0,0,0,15.6
+299629,0,0,0,15.6
+299630,0,0,0,15.6
+299631,0,0,0,15.6
+299632,0,0,0,15.6
+299633,0,0,0,15.6
+299634,0,0,0,15.6
+299635,0,0,0,15.6
+299636,0,0,0,15.6
+299637,0,0,0,15.6
+299638,0,0,0,15.6
+299639,0,0,0,15.6
+299640,0,0,0,15.6
+299641,0,0,0,15.6
+299642,0,0,0,15.6
+299643,0,0,0,15.6
+299644,0,0,0,15.6
+299645,0,0,0,15.6
+299646,0,0,0,15.6
+299647,0,0,0,15.6
+299648,0,0,0,15.6
+299649,0,0,0,15.6
+299650,0,0,0,15.6
+299651,0,369394.7428,657516.8241,15.6
+299652,0,0,0,15.6
+299653,335305.0096,0,0,15.6
+299654,0,0,0,15.6
+299655,0,0,0,15.6
+299656,0,0,0,15.6
+299657,0,0,0,15.6
+299658,0,0,0,15.6
+299659,0,0,0,15.6
+299660,0,0,0,15.6
+299661,0,0,0,15.6
+299662,0,0,0,15.6
+299663,0,0,0,15.6
+299664,0,0,0,15.6
+299665,0,0,0,15.6
+299666,0,0,0,15.6
+299667,0,0,0,15.6
+299668,0,0,0,15.6
+299669,0,0,0,15.6
+299670,0,0,0,15.6
+299671,0,0,0,15.6
+299672,0,0,0,15.6
+299673,0,0,0,15.6
+299674,0,0,0,15.6
+299675,0,0,0,15.6
+299676,0,0,0,15.6
+299677,0,0,0,15.6
+299678,0,0,0,15.6
+299679,0,0,0,15.6
+299680,0,0,0,15.6
+299681,0,0,0,15.6
+299682,0,0,0,15.6
+299683,0,0,0,15.6
+299684,0,0,0,15.6
+299685,0,369339.7419,658132.4875,15.6
+299686,0,0,0,15.6
+299687,0,0,0,15.6
+299688,336825.6436,0,0,15.6
+299689,0,0,0,15.6
+299690,0,0,0,15.6
+299691,0,0,0,15.6
+299692,0,0,0,15.6
+299693,0,0,0,15.6
+299694,0,0,0,15.6
+299695,0,0,0,15.6
+299696,0,0,0,15.6
+299697,0,0,0,15.6
+299698,0,0,0,15.6
+299699,0,0,0,15.6
+299700,0,0,0,15.6
+299701,0,0,0,15.6
+299702,0,0,0,15.6
+299703,0,0,0,15.6
+299704,0,0,0,15.6
+299705,0,0,0,15.6
+299706,0,0,0,15.6
+299707,0,0,0,15.6
+299708,0,0,0,15.6
+299709,0,0,0,15.6
+299710,0,0,0,15.6
+299711,0,0,0,15.6
+299712,0,0,0,15.6
+299713,0,0,0,15.6
+299714,0,0,0,15.6
+299715,0,0,0,15.6
+299716,0,0,0,15.6
+299717,0,0,0,15.6
+299718,0,0,0,15.6
+299719,0,0,657787.6222,15.6
+299720,0,369315.4711,0,15.6
+299721,0,0,0,15.6
+299722,335128.6377,0,0,15.6
+299723,0,0,0,15.6
+299724,0,0,0,15.6
+299725,0,0,0,15.6
+299726,0,0,0,15.6
+299727,0,0,0,15.6
+299728,0,0,0,15.6
+299729,0,0,0,15.6
+299730,0,0,0,15.6
+299731,0,0,0,15.6
+299732,0,0,0,15.6
+299733,0,0,0,15.6
+299734,0,0,0,15.6
+299735,0,0,0,15.6
+299736,0,0,0,15.6
+299737,0,0,0,15.6
+299738,0,0,0,15.6
+299739,0,0,0,15.6
+299740,0,0,0,15.6
+299741,0,0,0,15.6
+299742,0,0,0,15.6
+299743,0,0,0,15.6
+299744,0,0,0,15.6
+299745,0,0,0,15.6
+299746,0,0,0,15.6
+299747,0,0,0,15.6
+299748,0,0,0,15.6
+299749,0,0,0,15.6
+299750,0,0,0,15.6
+299751,0,0,0,15.6
+299752,0,0,0,15.6
+299753,0,0,658950.5378,15.6
+299754,0,369315.4363,0,15.6
+299755,0,0,0,15.6
+299756,336899.4113,0,0,15.6
+299757,0,0,0,15.6
+299758,0,0,0,15.6
+299759,0,0,0,15.6
+299760,0,0,0,17.8
+299761,0,0,0,17.8
+299762,0,0,0,17.8
+299763,0,0,0,17.8
+299764,0,0,0,17.8
+299765,0,0,0,17.8
+299766,0,0,0,17.8
+299767,0,0,0,17.8
+299768,0,0,0,17.8
+299769,0,0,0,17.8
+299770,0,0,0,17.8
+299771,0,0,0,17.8
+299772,0,0,0,17.8
+299773,0,0,0,17.8
+299774,0,0,0,17.8
+299775,0,0,0,17.8
+299776,0,0,0,17.8
+299777,0,0,0,17.8
+299778,0,0,0,17.8
+299779,0,0,0,17.8
+299780,0,0,0,17.8
+299781,0,0,0,17.8
+299782,0,0,0,17.8
+299783,0,0,0,17.8
+299784,0,0,0,17.8
+299785,0,0,0,17.8
+299786,0,0,0,17.8
+299787,0,0,658077.9837,17.8
+299788,0,369339.3688,0,17.8
+299789,0,0,0,17.8
+299790,335424.5095,0,0,17.8
+299791,0,0,0,17.8
+299792,0,0,0,17.8
+299793,0,0,0,17.8
+299794,0,0,0,17.8
+299795,0,0,0,17.8
+299796,0,0,0,17.8
+299797,0,0,0,17.8
+299798,0,0,0,17.8
+299799,0,0,0,17.8
+299800,0,0,0,17.8
+299801,0,0,0,17.8
+299802,0,0,0,17.8
+299803,0,0,0,17.8
+299804,0,0,0,17.8
+299805,0,0,0,17.8
+299806,0,0,0,17.8
+299807,0,0,0,17.8
+299808,0,0,0,17.8
+299809,0,0,0,17.8
+299810,0,5056.801429,0,17.8
+299811,0,2759.272517,0,17.8
+299812,0,3922.94402,0,17.8
+299813,0,4151.87309,0,17.8
+299814,0,4606.405023,0,17.8
+299815,0,4832.100816,0,17.8
+299816,0,5503.368445,0,17.8
+299817,0,5280.548888,0,17.8
+299818,0,6166.578073,0,17.8
+299819,0,5946.358366,0,17.8
+299820,0,0,0,20
+299821,337212.9804,751123.1066,659270.7265,20
+299822,0,0,0,20
+299823,0,0,0,20
+299824,0,26730.67872,0,20
+299825,0,108066.5799,0,20
+299826,0,49321.6811,0,20
+299827,0,63211.02122,0,20
+299828,0,64031.70511,0,20
+299829,0,64019.51786,0,20
+299830,1414.735936,63940.23734,0,20
+299831,2089.630305,63786.69947,0,20
+299832,1398.321967,63441.34845,0,20
+299833,1771.059961,63467.32285,679.0116057,20
+299834,7261.179712,63064.02127,564.927446,20
+299835,5082.702873,62958.22715,1178.831502,20
+299836,5725.999436,63189.6998,866.713969,20
+299837,6095.940377,62429.51376,1026.279896,20
+299838,6241.107589,62756.92781,1083.157623,20
+299839,6399.909623,62445.72399,1111.500583,20
+299840,6648.31263,62357.26951,1153.899046,20
+299841,9054.98084,61849.75682,1182.062002,20
+299842,8323.294652,62117.52984,1210.157174,20
+299843,8951.887033,61832.34284,1266.101283,20
+299844,9094.28549,61573.80163,1280.097465,20
+299845,9613.656403,61245.59105,1321.828325,20
+299846,9764.757764,61321.6246,1335.762744,20
+299847,10108.61021,61227.27842,1391.124781,20
+299848,10158.75709,60719.34546,1391.180433,20
+299849,10659.60954,60940.31202,1446.298369,20
+299850,10646.24106,60437.14732,1473.798727,20
+299851,11170.47907,60539.94991,1487.558605,20
+299852,11036.00701,60129.28999,1542.265772,20
+299853,11552.18244,60390.79304,1670.36613,20
+299854,11431.98691,59822.24249,3140.776595,20
+299855,11924.43888,60145.05062,2394.838948,20
+299856,11812.43023,59514.19532,2922.905773,20
+299857,12196.86677,59557.4487,3100.34116,20
+299858,12316.17317,59509.77892,3209.505875,20
+299859,12553.26247,59273.75901,3385.500117,20
+299860,12692.25409,59224.88157,3520.393748,20
+299861,12823.83356,58926.3157,3654.79718,20
+299862,12955.11955,58938.77607,3828.836336,20
+299863,13302.74251,58680.66802,4067.807513,20
+299864,13092.87804,58442.82231,4095.022914,20
+299865,13681.29932,58694.65412,4254.065264,20
+299866,13439.9029,57984.19965,4372.737319,20
+299867,13837.97689,58369.1732,4648.167907,20
+299868,13928.25949,57737.73832,4648.777716,20
+299869,13837.97688,58187.51572,4819.34938,20
+299870,14188.39909,57569.45297,4936.521767,20
+299871,14194.67022,57574.20897,4677.229555,20
+299872,14331.15283,57411.748,4677.792304,20
+299873,14550.53585,57291.52002,4848.370785,20
+299874,14576.95956,57277.57012,4809.329625,20
+299875,14679.52577,56830.17434,4992.724672,20
+299876,14706.23081,57025.90979,5225.563974,20
+299877,14937.67906,57211.12715,5123.570076,20
+299878,14808.48958,56848.95675,5266.649565,20
+299879,15188.44445,57093.79608,5498.171958,20
+299880,15181.85263,56533.73312,5423.267846,21
+299881,11678.98971,52217.91928,3529.958903,21
+299882,11665.66815,51525.20592,3259.69183,21
+299883,11306.02632,51118.25521,3382.113669,21
+299884,11410.3018,51236.00105,3287.302564,21
+299885,11292.35171,50725.66624,3517.809118,21
+299886,11306.02623,50622.09159,3410.086411,21
+299887,11518.03775,50366.37831,3558.926199,21
+299888,11058.00251,50449.13469,3532.312669,21
+299889,11419.01043,49770.4094,3694.112535,21
+299890,11171.27453,49943.2205,3694.492172,21
+299891,11292.35075,49611.33664,3708.301513,21
+299892,11149.33478,49304.70381,3815.731382,21
+299893,11192.75402,49611.3498,3843.038136,21
+299894,11257.18299,48963.86445,3976.837199,21
+299895,11071.67646,48922.26736,3857.318578,21
+299896,11130.80326,48963.44676,4110.595299,21
+299897,11171.27367,48514.35369,3858.172367,21
+299898,11044.63337,48548.48544,4257.432057,21
+299899,11157.90576,48342.93617,4005.898379,21
+299900,10895.97508,48265.28173,4139.330704,21
+299901,11058.00182,47958.1783,4272.27047,21
+299902,11017.53103,47901.70939,4153.702034,21
+299903,10909.68182,47704.7444,4405.282156,21
+299904,10909.37107,47741.23467,4154.688185,21
+299905,10903.96716,47324.66313,4433.068914,21
+299906,10895.97495,47256.26551,4420.314815,21
+299907,10782.41143,47283.36597,4420.825666,21
+299908,10755.24906,47100.30405,4448.091239,21
+299909,10782.41109,46798.21789,4566.978751,21
+299910,10646.93799,46612.92717,4435.809339,21
+299911,10768.67221,46755.31363,4594.80254,21
+299912,10627.93755,46291.39585,4699.914924,21
+299913,10524.05894,46225.2867,4450.925045,21
+299914,10513.77752,45953.54094,4714.482659,21
+299915,10605.97498,45585.59312,4597.123928,21
+299916,10405.17801,45812.47278,4729.052829,21
+299917,10377.955,45060.95098,4716.31557,21
+299918,10492.115,45330.42905,4612.267485,21
+299919,10255.39184,44919.56606,4835.157638,21
+299920,10236.20457,44751.50933,4613.471647,21
+299921,10255.39149,44663.52495,4863.095058,21
+299922,10228.10736,44103.70665,4732.763001,21
+299923,9998.865288,44278.78186,4746.695748,21
+299924,10228.10701,43671.40973,4851.705751,21
+299925,9985.357994,43664.94011,4774.594485,21
+299926,9976.707084,43614.86615,4839.619287,21
+299927,9971.518493,43263.34384,4762.561226,21
+299928,9848.423477,42898.04722,4894.256763,21
+299929,9848.423681,42610.66285,4854.931996,21
+299930,9821.014549,42963.31802,4777.770099,21
+299931,9733.331633,41998.0991,4973.63801,21
+299932,9568.709783,42330.75365,4779.051895,21
+299933,9705.550753,41763.86094,4897.529787,21
+299934,9453.296835,41696.09931,4858.173035,21
+299935,9554.802342,41463.83184,4898.843337,21
+299936,9453.296504,41146.51513,4781.603741,21
+299937,9425.447254,40983.3037,4990.970801,21
+299938,9199.423073,40667.33015,4769.564611,21
+299939,9411.85388,40624.73536,4888.082174,21
+299940,9055.816014,40259.36037,4902.115234,21
+299941,0,7083.78125,0,21
+299942,0,5289.348521,0,21
+299943,0,4509.017154,0,21
+299944,0,4463.652103,0,21
+299945,0,3905.305648,0,21
+299946,0,3167.5014,0,21
+299947,0,3100.677298,0,21
+299948,0,2806.769558,0,21
+299949,0,2001.93058,0,21
+299950,0,2001.930124,0,21
+299951,0,1416.159312,0,21
+299952,0,1287.420699,0,21
+299953,0,864.8217682,0,21
+299954,0,531.4697897,0,21
+299955,0,531.469818,0,21
+299956,0,476.0975419,0,21
+299957,0,476.0971958,0,21
+299958,0,420.1382251,0,21
+299959,0,420.1385378,0,21
+299960,0,349.2668834,0,21
+299961,0,349.2668969,0,21
+299962,0,306.189045,0,21
+299963,0,277.2102432,0,21
+299964,0,248.0023129,0,21
+299965,0,218.5431513,0,21
+299966,0,173.8186628,0,21
+299967,0,158.7482815,0,21
+299968,0,128.3246713,0,21
+299969,0,81.82720356,0,21
+299970,0,66.03391353,0,21
+299971,0,33.81662316,0,21
+299972,0,0,0,21
+299973,0,0,0,21
+299974,0,0,0,21
+299975,0,0,0,21
+299976,0,0,0,21
+299977,0,0,0,21
+299978,0,0,0,21
+299979,0,0,0,21
+299980,0,0,0,21
+299981,0,0,0,21
+299982,0,0,0,21
+299983,0,0,0,21
+299984,0,0,0,21
+299985,0,0,0,21
+299986,0,0,0,21
+299987,0,0,0,21
+299988,0,0,0,21
+299989,0,0,0,21
+299990,0,0,0,21
+299991,0,0,0,21
+299992,0,0,0,21
+299993,0,0,0,21
+299994,0,0,0,21
+299995,0,0,0,21
+299996,0,0,0,21
+299997,0,0,0,21
+299998,0,0,0,21
+299999,0,0,0,21
+300000,0,0,0,21
+300001,0,0,0,21
+300002,0,0,0,21
+300003,0,0,0,21
+300004,0,0,0,21
+300005,0,0,0,21
+300006,0,0,0,21
+300007,0,0,0,21
+300008,0,0,0,21
+300009,0,0,0,21
+300010,0,0,0,21
+300011,0,0,0,21
+300012,0,0,0,21
+300013,0,0,0,21
+300014,0,0,0,21
+300015,0,0,0,21
+300016,0,0,0,21
+300017,0,0,0,21
+300018,0,0,0,21
+300019,0,0,0,21
+300020,0,0,0,21
+300021,0,0,0,21
+300022,0,0,0,21
+300023,0,0,0,21
+300024,0,0,0,21
+300025,0,0,0,21
+300026,0,0,0,21
+300027,0,0,0,21
+300028,0,0,0,21
+300029,0,0,0,21
+300030,0,0,0,21
+300031,0,0,0,21
+300032,0,0,0,21
+300033,0,0,0,21
+300034,0,0,0,21
+300035,0,0,0,21
+300036,0,0,0,21
+300037,0,0,0,21
+300038,0,0,0,21
+300039,0,0,0,21
+300040,0,0,0,21
+300041,0,0,0,21
+300042,0,0,0,21
+300043,0,0,0,21
+300044,0,0,0,21
+300045,0,0,0,21
+300046,0,0,0,21
+300047,0,0,0,21
+300048,0,0,0,21
+300049,0,0,0,21
+300050,0,0,0,21
+300051,0,0,0,21
+300052,0,0,0,21
+300053,0,0,0,21
+300054,0,0,0,21
+300055,0,0,0,21
+300056,0,0,0,21
+300057,0,0,0,21
+300058,0,0,0,21
+300059,0,0,0,21
+300060,0,0,0,21
+300061,0,0,0,21
+300062,0,0,0,21
+300063,0,0,0,21
+300064,0,0,0,21
+300065,0,0,0,21
+300066,0,0,0,21
+300067,0,0,0,21
+300068,0,0,0,21
+300069,0,0,0,21
+300070,0,0,0,21
+300071,0,0,0,21
+300072,0,0,0,21
+300073,0,0,0,21
+300074,0,0,0,21
+300075,0,0,0,21
+300076,0,0,0,21
+300077,0,0,0,21
+300078,0,0,0,21
+300079,0,0,0,21
+300080,0,0,0,21
+300081,0,0,0,21
+300082,0,0,0,21
+300083,0,0,0,21
+300084,0,0,0,21
+300085,0,0,0,21
+300086,0,0,0,21
+300087,0,0,0,21
+300088,0,0,0,21
+300089,0,0,0,21
+300090,0,0,0,21
+300091,0,0,0,21
+300092,0,0,0,21
+300093,0,0,0,21
+300094,0,0,0,21
+300095,0,0,0,21
+300096,0,0,0,21
+300097,0,0,0,21
+300098,0,0,0,21
+300099,0,0,0,21
+300100,0,0,0,21
+300101,0,0,0,21
+300102,0,0,0,21
+300103,0,0,0,21
+300104,0,0,0,21
+300105,0,0,0,21
+300106,0,0,0,21
+300107,0,0,0,21
+300108,0,0,0,21
+300109,0,0,0,21
+300110,0,0,0,21
+300111,0,0,0,21
+300112,0,0,0,21
+300113,0,0,0,21
+300114,0,0,0,21
+300115,0,0,0,21
+300116,0,0,0,21
+300117,0,0,0,21
+300118,0,0,0,21
+300119,0,0,0,21
+300120,0,0,0,21
+300121,0,0,0,21
+300122,0,0,0,21
+300123,0,0,0,21
+300124,0,0,0,21
+300125,0,0,0,21
+300126,0,0,0,21
+300127,0,0,0,21
+300128,0,0,0,21
+300129,0,0,0,21
+300130,0,0,0,21
+300131,0,0,0,21
+300132,0,0,0,21
+300133,0,0,0,21
+300134,0,0,0,21
+300135,0,0,0,21
+300136,0,0,0,21
+300137,0,0,0,21
+300138,0,0,0,21
+300139,0,0,0,21
+300140,0,0,0,21
+300141,0,0,0,21
+300142,0,0,0,21
+300143,0,0,0,21
+300144,0,0,0,21
+300145,0,0,0,21
+300146,0,0,0,21
+300147,0,0,0,21
+300148,0,0,0,21
+300149,0,0,0,21
+300150,0,0,0,21
+300151,0,0,0,21
+300152,0,0,0,21
+300153,0,0,0,21
+300154,0,0,0,21
+300155,0,0,0,21
+300156,0,0,0,21
+300157,0,0,0,21
+300158,0,0,0,21
+300159,0,0,0,21
+300160,0,0,0,21
+300161,0,0,0,21
+300162,0,0,0,21
+300163,0,0,0,21
+300164,0,0,0,21
+300165,0,0,0,21
+300166,0,0,0,21
+300167,0,0,0,21
+300168,0,0,0,21
+300169,0,0,0,21
+300170,0,0,0,21
+300171,0,0,0,21
+300172,0,0,0,21
+300173,0,0,0,21
+300174,0,0,0,21
+300175,0,0,0,21
+300176,0,0,0,21
+300177,0,0,0,21
+300178,0,0,0,21
+300179,0,0,0,21
+300180,0,0,0,21
+300181,0,0,0,21
+300182,0,0,0,21
+300183,0,0,0,21
+300184,0,0,0,21
+300185,0,0,0,21
+300186,0,0,0,21
+300187,0,0,0,21
+300188,0,0,0,21
+300189,0,0,0,21
+300190,0,0,0,21
+300191,0,0,0,21
+300192,0,0,0,21
+300193,0,0,0,21
+300194,0,0,0,21
+300195,0,0,0,21
+300196,0,0,0,21
+300197,0,0,0,21
+300198,0,0,0,21
+300199,0,0,0,21
+300200,0,0,0,21
+300201,0,0,0,21
+300202,0,0,0,21
+300203,0,0,0,21
+300204,0,0,0,21
+300205,0,0,0,21
+300206,0,0,0,21
+300207,0,0,0,21
+300208,0,0,0,21
+300209,0,0,0,21
+300210,0,0,0,21
+300211,0,0,0,21
+300212,0,0,0,21
+300213,0,0,0,21
+300214,0,0,0,21
+300215,0,0,0,21
+300216,0,0,0,21
+300217,0,0,0,21
+300218,0,0,0,21
+300219,0,0,0,21
+300220,0,0,0,21
+300221,0,0,0,21
+300222,0,0,0,21
+300223,0,0,0,21
+300224,0,0,0,21
+300225,0,0,0,21
+300226,0,0,0,21
+300227,0,0,0,21
+300228,0,0,0,21
+300229,0,0,0,21
+300230,0,0,0,21
+300231,0,0,0,21
+300232,0,0,0,21
+300233,0,0,0,21
+300234,0,0,0,21
+300235,0,0,0,21
+300236,0,0,0,21
+300237,0,0,0,21
+300238,0,0,0,21
+300239,0,0,0,21
+300240,0,0,0,21
+300241,0,0,0,21
+300242,0,0,0,21
+300243,0,0,0,21
+300244,0,0,0,21
+300245,0,0,0,21
+300246,0,0,0,21
+300247,0,0,0,21
+300248,0,0,0,21
+300249,0,0,0,21
+300250,0,0,0,21
+300251,0,0,0,21
+300252,0,0,0,21
+300253,0,0,0,21
+300254,0,0,0,21
+300255,0,0,0,21
+300256,0,0,0,21
+300257,0,0,0,21
+300258,0,0,0,21
+300259,0,0,0,21
+300260,0,0,0,21
+300261,0,0,0,21
+300262,0,0,0,21
+300263,0,0,0,21
+300264,0,0,0,21
+300265,0,0,0,21
+300266,0,0,0,21
+300267,0,0,0,21
+300268,0,0,0,21
+300269,0,0,0,21
+300270,0,0,0,21
+300271,0,0,0,21
+300272,0,0,0,21
+300273,0,0,0,21
+300274,0,0,0,21
+300275,0,0,0,21
+300276,0,0,0,21
+300277,0,0,0,21
+300278,0,0,0,21
+300279,0,0,0,21
+300280,0,0,0,21
+300281,0,0,0,21
+300282,0,0,0,21
+300283,0,0,0,21
+300284,0,0,0,21
+300285,0,0,0,21
+300286,0,0,0,21
+300287,0,0,0,21
+300288,0,0,0,21
+300289,0,0,0,21
+300290,0,0,0,21
+300291,0,0,0,21
+300292,0,0,0,21
+300293,0,0,0,21
+300294,0,0,0,21
+300295,0,0,0,21
+300296,0,0,0,21
+300297,0,0,0,21
+300298,0,0,0,21
+300299,0,0,0,21
+300300,0,0,0,21
+300301,0,0,0,21
+300302,0,0,0,21
+300303,0,0,0,21
+300304,0,0,0,21
+300305,0,0,0,21
+300306,0,0,0,21
+300307,0,0,0,21
+300308,0,0,0,21
+300309,0,0,0,21
+300310,0,0,0,21
+300311,0,0,0,21
+300312,0,0,0,21
+300313,0,0,0,21
+300314,0,0,0,21
+300315,0,0,0,21
+300316,0,0,0,21
+300317,0,0,0,21
+300318,0,0,0,21
+300319,0,0,0,21
+300320,0,0,0,21
+300321,0,0,0,21
+300322,0,0,0,21
+300323,0,0,0,21
+300324,0,0,0,21
+300325,0,0,0,21
+300326,0,0,0,21
+300327,0,0,0,21
+300328,0,0,0,21
+300329,0,0,0,21
+300330,0,0,0,21
+300331,0,0,0,21
+300332,0,0,0,21
+300333,0,0,0,21
+300334,0,0,0,21
+300335,0,0,0,21
+300336,0,0,0,21
+300337,0,0,0,21
+300338,0,0,0,21
+300339,0,0,0,21
+300340,0,0,0,21
+300341,0,0,0,21
+300342,0,0,0,21
+300343,0,0,0,21
+300344,0,0,0,21
+300345,0,0,0,21
+300346,0,0,0,21
+300347,0,0,0,21
+300348,0,0,0,21
+300349,0,0,0,21
+300350,0,0,0,21
+300351,0,0,0,21
+300352,0,0,0,21
+300353,0,0,0,21
+300354,0,0,0,21
+300355,0,0,0,21
+300356,0,0,0,21
+300357,0,0,0,21
+300358,0,0,0,21
+300359,0,0,0,21
+300360,0,0,0,21
+300361,0,0,0,21
+300362,0,0,0,21
+300363,0,0,0,21
+300364,0,0,0,21
+300365,0,0,0,21
+300366,0,0,0,21
+300367,0,0,0,21
+300368,0,0,0,21
+300369,0,0,0,21
+300370,0,0,0,21
+300371,0,0,0,21
+300372,0,0,0,21
+300373,0,0,0,21
+300374,0,0,0,21
+300375,0,0,0,21
+300376,0,0,0,21
+300377,0,0,0,21
+300378,0,0,0,21
+300379,0,0,0,21
+300380,0,0,0,21
+300381,0,0,0,21
+300382,0,0,0,21
+300383,0,0,0,21
+300384,0,0,0,21
+300385,0,0,0,21
+300386,0,0,0,21
+300387,0,0,0,21
+300388,0,0,0,21
+300389,0,0,0,21
+300390,0,0,0,21
+300391,0,0,0,21
+300392,0,0,0,21
+300393,0,0,0,21
+300394,0,0,0,21
+300395,0,0,0,21
+300396,0,0,0,21
+300397,0,0,0,21
+300398,0,0,0,21
+300399,0,0,0,21
+300400,0,0,0,21
+300401,0,0,0,21
+300402,0,0,0,21
+300403,0,0,0,21
+300404,0,0,0,21
+300405,0,0,0,21
+300406,0,0,0,21
+300407,0,0,0,21
+300408,0,0,0,21
+300409,0,0,0,21
+300410,0,0,0,21
+300411,0,0,0,21
+300412,0,0,0,21
+300413,0,0,0,21
+300414,0,0,0,21
+300415,0,0,0,21
+300416,0,0,0,21
+300417,0,0,0,21
+300418,0,0,0,21
+300419,0,0,0,21
+300420,0,0,0,21
+300421,0,0,0,21
+300422,0,0,0,21
+300423,0,0,0,21
+300424,0,0,0,21
+300425,0,0,0,21
+300426,0,0,0,21
+300427,0,0,0,21
+300428,0,0,0,21
+300429,0,0,0,21
+300430,0,0,0,21
+300431,0,0,0,21
+300432,0,0,0,21
+300433,0,0,0,21
+300434,0,0,0,21
+300435,0,0,0,21
+300436,0,0,0,21
+300437,0,0,0,21
+300438,0,0,0,21
+300439,0,0,0,21
+300440,0,0,0,21
+300441,0,0,0,21
+300442,0,0,0,21
+300443,0,0,0,21
+300444,0,0,0,21
+300445,0,0,0,21
+300446,0,0,0,21
+300447,0,0,0,21
+300448,0,0,0,21
+300449,0,0,0,21
+300450,0,0,0,21
+300451,0,0,0,21
+300452,0,0,0,21
+300453,0,0,0,21
+300454,0,0,0,21
+300455,0,0,0,21
+300456,0,0,0,21
+300457,0,0,0,21
+300458,0,0,0,21
+300459,0,0,0,21
+300460,0,0,0,21
+300461,0,0,0,21
+300462,0,0,0,21
+300463,0,0,0,21
+300464,0,0,0,21
+300465,0,0,0,21
+300466,0,0,0,21
+300467,0,0,0,21
+300468,0,0,0,21
+300469,0,0,0,21
+300470,0,0,0,21
+300471,0,0,0,21
+300472,0,0,0,21
+300473,0,0,0,21
+300474,0,0,0,21
+300475,0,0,0,21
+300476,0,0,0,21
+300477,0,0,0,21
+300478,0,0,0,21
+300479,0,0,0,21
+300480,0,0,0,21
+300481,0,0,0,21
+300482,0,0,0,21
+300483,0,0,0,21
+300484,0,0,0,21
+300485,0,0,0,21
+300486,0,0,0,21
+300487,0,0,0,21
+300488,0,0,0,21
+300489,0,0,0,21
+300490,0,0,0,21
+300491,0,0,0,21
+300492,0,0,0,21
+300493,0,0,0,21
+300494,0,0,0,21
+300495,0,0,0,21
+300496,0,0,0,21
+300497,0,0,0,21
+300498,0,0,0,21
+300499,0,0,0,21
+300500,0,0,0,21
+300501,0,0,0,21
+300502,0,0,0,21
+300503,0,0,0,21
+300504,0,0,0,21
+300505,0,0,0,21
+300506,0,0,0,21
+300507,0,0,0,21
+300508,0,0,0,21
+300509,0,0,0,21
+300510,0,0,0,21
+300511,0,0,0,21
+300512,0,0,0,21
+300513,0,0,0,21
+300514,0,0,0,21
+300515,0,0,0,21
+300516,0,0,0,21
+300517,0,0,0,21
+300518,0,0,0,21
+300519,0,0,0,21
+300520,0,0,0,21
+300521,0,0,0,21
+300522,0,0,0,21
+300523,0,0,0,21
+300524,0,0,0,21
+300525,0,0,0,21
+300526,0,0,0,21
+300527,0,0,0,21
+300528,0,0,0,21
+300529,0,0,0,21
+300530,0,0,0,21
+300531,0,0,0,21
+300532,0,0,0,21
+300533,0,0,0,21
+300534,0,0,0,21
+300535,0,0,0,21
+300536,0,0,0,21
+300537,0,0,0,21
+300538,0,0,0,21
+300539,0,0,0,21
+300540,0,0,0,21
+300541,0,0,0,21
+300542,0,0,0,21
+300543,0,0,0,21
+300544,0,0,0,21
+300545,0,0,0,21
+300546,0,0,0,21
+300547,0,0,0,21
+300548,0,0,0,21
+300549,0,0,0,21
+300550,0,0,0,21
+300551,0,0,0,21
+300552,0,0,0,21
+300553,0,0,0,21
+300554,0,0,0,21
+300555,0,0,0,21
+300556,0,0,0,21
+300557,0,0,0,21
+300558,0,0,0,21
+300559,0,0,0,21
+300560,0,0,0,21
+300561,0,0,0,21
+300562,0,0,0,21
+300563,0,0,0,21
+300564,0,0,0,21
+300565,0,0,0,21
+300566,0,0,0,21
+300567,0,0,0,21
+300568,0,0,0,21
+300569,0,0,0,21
+300570,0,0,0,21
+300571,0,0,0,21
+300572,0,0,0,21
+300573,0,0,0,21
+300574,0,0,0,21
+300575,0,0,0,21
+300576,0,0,0,21
+300577,0,0,0,21
+300578,0,0,0,21
+300579,0,0,0,21
+300580,0,0,0,21
+300581,0,0,0,21
+300582,0,0,0,21
+300583,0,0,0,21
+300584,0,0,0,21
+300585,0,0,0,21
+300586,0,0,0,21
+300587,0,0,0,21
+300588,0,0,0,21
+300589,0,0,0,21
+300590,0,0,0,21
+300591,0,0,0,21
+300592,0,0,0,21
+300593,0,0,0,21
+300594,0,0,0,21
+300595,0,0,0,21
+300596,0,0,0,21
+300597,0,0,0,21
+300598,0,0,0,21
+300599,0,0,0,21
+300600,0,0,0,21
+300601,0,0,0,21
+300602,0,0,0,21
+300603,0,0,0,21
+300604,0,0,0,21
+300605,0,0,0,21
+300606,0,0,0,21
+300607,0,0,0,21
+300608,0,0,0,21
+300609,0,0,0,21
+300610,0,0,0,21
+300611,0,0,0,21
+300612,0,0,0,21
+300613,0,0,0,21
+300614,0,0,0,21
+300615,0,0,0,21
+300616,0,0,0,21
+300617,0,0,0,21
+300618,0,0,0,21
+300619,0,0,0,21
+300620,0,0,0,21
+300621,0,0,0,21
+300622,0,0,0,21
+300623,0,0,0,21
+300624,0,0,0,21
+300625,0,0,0,21
+300626,0,0,0,21
+300627,0,0,0,21
+300628,0,0,0,21
+300629,0,0,0,21
+300630,0,0,0,21
+300631,0,0,0,21
+300632,0,0,0,21
+300633,0,0,0,21
+300634,0,0,0,21
+300635,0,0,0,21
+300636,0,0,0,21
+300637,0,0,0,21
+300638,0,0,0,21
+300639,0,0,0,21
+300640,0,0,0,21
+300641,0,0,0,21
+300642,0,0,0,21
+300643,0,0,0,21
+300644,0,0,0,21
+300645,0,0,0,21
+300646,0,0,0,21
+300647,0,0,0,21
+300648,0,0,0,21
+300649,0,0,0,21
+300650,0,0,0,21
+300651,0,0,0,21
+300652,0,0,0,21
+300653,0,0,0,21
+300654,0,0,0,21
+300655,0,0,0,21
+300656,0,0,0,21
+300657,0,0,0,21
+300658,0,0,0,21
+300659,0,0,0,21
+300660,0,0,0,21
+300661,0,0,0,21
+300662,0,0,0,21
+300663,0,0,0,21
+300664,0,0,0,21
+300665,0,0,0,21
+300666,0,0,0,21
+300667,0,0,0,21
+300668,0,0,0,21
+300669,0,0,0,21
+300670,0,0,0,21
+300671,0,0,0,21
+300672,0,0,0,21
+300673,0,0,0,21
+300674,0,0,0,21
+300675,0,0,0,21
+300676,0,0,0,21
+300677,0,0,0,21
+300678,0,0,0,21
+300679,0,0,0,21
+300680,0,0,0,21
+300681,0,0,0,21
+300682,0,0,0,21
+300683,0,0,0,21
+300684,0,0,0,21
+300685,0,0,0,21
+300686,0,0,0,21
+300687,0,0,0,21
+300688,0,0,0,21
+300689,0,0,0,21
+300690,0,0,0,21
+300691,0,0,0,21
+300692,0,0,0,21
+300693,0,0,0,21
+300694,0,0,0,21
+300695,0,0,0,21
+300696,0,0,0,21
+300697,0,0,0,21
+300698,0,0,0,21
+300699,0,0,0,21
+300700,0,0,0,21
+300701,0,0,0,21
+300702,0,0,0,21
+300703,0,0,0,21
+300704,0,0,0,21
+300705,0,0,0,21
+300706,0,0,0,21
+300707,0,0,0,21
+300708,0,0,0,21
+300709,0,0,0,21
+300710,0,0,0,21
+300711,0,0,0,21
+300712,0,0,0,21
+300713,0,0,0,21
+300714,0,0,0,21
+300715,0,0,0,21
+300716,0,0,0,21
+300717,0,0,0,21
+300718,0,0,0,21
+300719,0,0,0,21
+300720,0,0,0,21
+300721,0,0,0,21
+300722,0,0,0,21
+300723,0,0,0,21
+300724,0,0,0,21
+300725,0,0,0,21
+300726,0,0,0,21
+300727,0,0,0,21
+300728,0,0,0,21
+300729,0,0,0,21
+300730,0,0,0,21
+300731,0,1522.148796,0,21
+300732,0,788.289311,0,21
+300733,126.2226529,1199.905068,0,21
+300734,929.4244846,1522.148757,0,21
+300735,690.4122712,1522.148777,0,21
+300736,836.814877,1839.416583,0,21
+300737,998.5247255,1839.416561,0,21
+300738,1133.23545,2152.45536,0,21
+300739,1150.099105,2152.455282,0,21
+300740,1300.284897,2461.793307,0,21
+300741,1449.222827,2615.201817,0,21
+300742,1449.22282,2615.201711,0,21
+300743,1743.781263,2919.70062,0,21
+300744,1597.024501,3070.859317,0,21
+300745,1905.770079,3221.330516,0,21
+300746,1889.568654,3221.330432,0,21
+300747,2034.450918,3668.872276,0,21
+300748,2194.512596,3520.313905,0,21
+300749,2178.482978,3816.835708,0,21
+300750,2337.662089,3964.222832,0,21
+300751,2337.662181,4111.051383,0,21
+300752,2621.726423,4257.336875,0,21
+300753,2480.05464,4403.094141,0,21
+300754,2762.710288,4403.094113,0,21
+300755,2762.710263,4837.333701,0,21
+300756,2778.370795,4693.079621,0,21
+300757,3062.359812,4981.109358,0,21
+300758,3134.791466,4981.109295,102.9011916,21
+300759,3132.690366,5267.272445,94.6826644,21
+300760,3412.375181,5267.27194,102.9017142,21
+300761,3306.761194,5551.648222,119.2291876,21
+300762,3576.359921,5551.647884,135.4236253,21
+300763,3600.303833,5693.188017,151.4985575,21
+300764,3617.368043,5834.307648,151.4991547,21
+300765,3893.172744,6115.31712,201.3057199,21
+300766,3771.613084,5975.014479,300.6746734,21
+300767,4061.479691,6255.220213,284.1520427,21
+300768,4062.951911,6394.732368,332.1376445,21
+300769,4093.27036,6577.530263,1281.055954,21
+300770,4230.466545,6688.134827,801.3348453,21
+300771,4373.998785,6915.964015,1079.24236,21
+300772,4382.203271,6974.976519,1247.396801,21
+300773,4533.366072,7112.986443,1375.085345,21
+300774,4564.587057,7416.835107,1437.088554,21
+300775,4683.972095,7289.102232,1563.942265,21
+300776,4715.055114,7737.838404,1594.729164,21
+300777,4967.51765,7601.24198,1876.258864,21
+300778,4872.987651,7911.511263,1766.606069,21
+300779,5014.399866,7911.510342,2046.469161,21
+300780,5132.607863,8219.999848,2076.782415,21
+300781,0,0,0,21
+300782,0,0,0,21
+300783,0,0,0,21
+300784,0,0,0,21
+300785,327446.3518,362913.798,682185.3839,21
+300786,0,0,0,21
+300787,0,0,0,21
+300788,0,0,0,21
+300789,0,0,0,21
+300790,0,0,0,21
+300791,0,0,0,21
+300792,0,0,0,21
+300793,0,0,0,21
+300794,0,0,0,21
+300795,0,0,0,21
+300796,0,0,0,21
+300797,0,0,0,21
+300798,0,0,0,21
+300799,0,0,0,21
+300800,0,0,0,21
+300801,0,0,0,21
+300802,0,0,0,21
+300803,0,0,0,21
+300804,0,0,0,21
+300805,0,0,0,21
+300806,0,0,0,21
+300807,0,0,0,21
+300808,0,0,0,21
+300809,0,0,0,21
+300810,0,0,0,21
+300811,0,0,0,21
+300812,0,0,0,21
+300813,0,0,0,21
+300814,0,0,0,21
+300815,0,0,0,21
+300816,0,0,0,21
+300817,0,0,0,21
+300818,0,0,0,21
+300819,328655.6953,366131.9563,681890.3297,21
+300820,0,0,0,21
+300821,0,0,0,21
+300822,0,0,0,21
+300823,0,0,0,21
+300824,0,0,0,21
+300825,0,0,0,21
+300826,0,0,0,21
+300827,0,0,0,21
+300828,0,0,0,21
+300829,0,0,0,21
+300830,0,0,0,21
+300831,0,0,0,21
+300832,0,0,0,21
+300833,0,0,0,21
+300834,0,0,0,21
+300835,0,0,0,21
+300836,0,0,0,21
+300837,0,0,0,21
+300838,0,0,0,21
+300839,0,0,0,21
+300840,0,0,0,15.6
+300841,0,0,0,15.6
+300842,0,0,0,15.6
+300843,0,0,0,15.6
+300844,0,0,0,15.6
+300845,0,0,0,15.6
+300846,0,0,0,15.6
+300847,0,0,0,15.6
+300848,0,0,0,15.6
+300849,0,0,0,15.6
+300850,0,0,0,15.6
+300851,0,0,0,15.6
+300852,0,0,0,15.6
+300853,330337.7227,364674.3771,680721.8799,15.6
+300854,0,0,0,15.6
+300855,0,0,0,15.6
+300856,0,0,0,15.6
+300857,0,0,0,15.6
+300858,0,0,0,15.6
+300859,0,0,0,15.6
+300860,0,0,0,15.6
+300861,0,0,0,15.6
+300862,0,0,0,15.6
+300863,0,0,0,15.6
+300864,0,0,0,15.6
+300865,0,0,0,15.6
+300866,0,0,0,15.6
+300867,0,0,0,15.6
+300868,0,0,0,15.6
+300869,0,0,0,15.6
+300870,0,0,0,15.6
+300871,0,0,0,15.6
+300872,0,0,0,15.6
+300873,0,0,0,15.6
+300874,0,0,0,15.6
+300875,0,0,0,15.6
+300876,0,0,0,15.6
+300877,0,0,0,15.6
+300878,0,0,0,15.6
+300879,0,0,0,15.6
+300880,0,0,0,15.6
+300881,0,0,0,15.6
+300882,0,0,0,15.6
+300883,0,0,0,15.6
+300884,0,0,0,15.6
+300885,0,0,0,15.6
+300886,0,0,0,15.6
+300887,331759.6474,367163.444,679352.5601,15.6
+300888,0,0,0,15.6
+300889,0,0,0,15.6
+300890,0,0,0,15.6
+300891,0,0,0,15.6
+300892,0,0,0,15.6
+300893,0,0,0,15.6
+300894,0,0,0,15.6
+300895,0,0,0,15.6
+300896,0,0,0,15.6
+300897,0,0,0,15.6
+300898,0,0,0,15.6
+300899,0,0,0,15.6
+300900,0,0,0,15.6
+300901,0,0,0,15.6
+300902,0,0,0,15.6
+300903,0,0,0,15.6
+300904,0,0,0,15.6
+300905,0,0,0,15.6
+300906,0,0,0,15.6
+300907,0,0,0,15.6
+300908,0,0,0,15.6
+300909,0,0,0,15.6
+300910,0,0,0,15.6
+300911,0,0,0,15.6
+300912,0,0,0,15.6
+300913,0,0,0,15.6
+300914,0,0,0,15.6
+300915,0,0,0,15.6
+300916,0,0,0,15.6
+300917,0,0,0,15.6
+300918,0,0,0,15.6
+300919,0,0,0,15.6
+300920,0,0,0,15.6
+300921,332550.2483,364304.7381,678448.1113,15.6
+300922,0,0,0,15.6
+300923,0,0,0,15.6
+300924,0,0,0,15.6
+300925,0,0,0,15.6
+300926,0,0,0,15.6
+300927,0,0,0,15.6
+300928,0,0,0,15.6
+300929,0,0,0,15.6
+300930,0,0,0,15.6
+300931,0,0,0,15.6
+300932,0,0,0,15.6
+300933,0,0,0,15.6
+300934,0,0,0,15.6
+300935,0,0,0,15.6
+300936,0,0,0,15.6
+300937,0,0,0,15.6
+300938,0,0,0,15.6
+300939,0,0,0,15.6
+300940,0,0,0,15.6
+300941,0,0,0,15.6
+300942,0,0,0,15.6
+300943,0,0,0,15.6
+300944,0,0,0,15.6
+300945,0,0,0,15.6
+300946,0,0,0,15.6
+300947,0,0,0,15.6
+300948,0,0,0,15.6
+300949,0,0,0,15.6
+300950,0,0,0,15.6
+300951,0,0,0,15.6
+300952,0,0,0,15.6
+300953,0,0,0,15.6
+300954,0,0,0,15.6
+300955,333686.5702,366643.0104,677380.6398,15.6
+300956,0,0,0,15.6
+300957,0,0,0,15.6
+300958,0,0,0,15.6
+300959,0,0,0,15.6
+300960,0,0,0,15.6
+300961,0,0,0,15.6
+300962,0,0,0,15.6
+300963,0,0,0,15.6
+300964,0,0,0,15.6
+300965,0,0,0,15.6
+300966,0,0,0,15.6
+300967,0,0,0,15.6
+300968,0,0,0,15.6
+300969,0,0,0,15.6
+300970,0,0,0,15.6
+300971,0,0,0,15.6
+300972,0,0,0,15.6
+300973,0,0,0,15.6
+300974,0,0,0,15.6
+300975,0,0,0,15.6
+300976,0,0,0,15.6
+300977,0,0,0,15.6
+300978,0,0,0,15.6
+300979,0,0,0,15.6
+300980,0,0,0,15.6
+300981,0,0,0,15.6
+300982,0,0,0,15.6
+300983,0,0,0,15.6
+300984,0,0,0,15.6
+300985,0,0,0,15.6
+300986,0,0,0,15.6
+300987,0,0,0,15.6
+300988,0,0,0,15.6
+300989,0,365796.3101,676192.2586,15.6
+300990,333979.1107,0,0,15.6
+300991,0,0,0,15.6
+300992,0,0,0,15.6
+300993,0,0,0,15.6
+300994,0,0,0,15.6
+300995,0,0,0,15.6
+300996,0,0,0,15.6
+300997,0,0,0,15.6
+300998,0,0,0,15.6
+300999,0,0,0,15.6
+301000,0,0,0,15.6
+301001,0,0,0,15.6
+301002,0,0,0,15.6
+301003,0,0,0,15.6
+301004,0,0,0,15.6
+301005,0,0,0,15.6
+301006,0,0,0,15.6
+301007,0,0,0,15.6
+301008,0,0,0,15.6
+301009,0,0,0,15.6
+301010,0,0,0,15.6
+301011,0,0,0,15.6
+301012,0,0,0,15.6
+301013,0,0,0,15.6
+301014,0,0,0,15.6
+301015,0,0,0,15.6
+301016,0,0,0,15.6
+301017,0,0,0,15.6
+301018,0,0,0,15.6
+301019,0,0,0,15.6
+301020,0,0,0,15.6
+301021,0,0,0,15.6
+301022,0,0,0,15.6
+301023,0,364726.4689,676295.3802,15.6
+301024,0,0,0,15.6
+301025,335471.8583,0,0,15.6
+301026,0,0,0,15.6
+301027,0,0,0,15.6
+301028,0,0,0,15.6
+301029,0,0,0,15.6
+301030,0,0,0,15.6
+301031,0,0,0,15.6
+301032,0,0,0,15.6
+301033,0,0,0,15.6
+301034,0,0,0,15.6
+301035,0,0,0,15.6
+301036,0,0,0,15.6
+301037,0,0,0,15.6
+301038,0,0,0,15.6
+301039,0,0,0,15.6
+301040,0,0,0,15.6
+301041,0,0,0,15.6
+301042,0,0,0,15.6
+301043,0,0,0,15.6
+301044,0,0,0,15.6
+301045,0,0,0,15.6
+301046,0,0,0,15.6
+301047,0,0,0,15.6
+301048,0,0,0,15.6
+301049,0,0,0,15.6
+301050,0,0,0,15.6
+301051,0,0,0,15.6
+301052,0,0,0,15.6
+301053,0,0,0,15.6
+301054,0,0,0,15.6
+301055,0,0,0,15.6
+301056,0,0,0,15.6
+301057,0,367415.4654,673614.7706,15.6
+301058,0,0,0,15.6
+301059,0,0,0,15.6
+301060,334946.2451,0,0,15.6
+301061,0,0,0,15.6
+301062,0,0,0,15.6
+301063,0,0,0,15.6
+301064,0,0,0,15.6
+301065,0,0,0,15.6
+301066,0,0,0,15.6
+301067,0,0,0,15.6
+301068,0,0,0,15.6
+301069,0,0,0,15.6
+301070,0,0,0,15.6
+301071,0,0,0,15.6
+301072,0,0,0,15.6
+301073,0,0,0,15.6
+301074,0,0,0,15.6
+301075,0,0,0,15.6
+301076,0,0,0,15.6
+301077,0,0,0,15.6
+301078,0,0,0,15.6
+301079,0,0,0,15.6
+301080,0,0,0,15.6
+301081,0,0,0,15.6
+301082,0,0,0,15.6
+301083,0,0,0,15.6
+301084,0,0,0,15.6
+301085,0,0,0,15.6
+301086,0,0,0,15.6
+301087,0,0,0,15.6
+301088,0,0,0,15.6
+301089,0,0,0,15.6
+301090,0,0,0,15.6
+301091,0,366570.4805,673840.0108,15.6
+301092,0,0,0,15.6
+301093,0,0,0,15.6
+301094,0,0,0,15.6
+301095,336244.1407,0,0,15.6
+301096,0,0,0,15.6
+301097,0,0,0,15.6
+301098,0,0,0,15.6
+301099,0,0,0,15.6
+301100,0,0,0,15.6
+301101,0,0,0,15.6
+301102,0,0,0,15.6
+301103,0,0,0,15.6
+301104,0,0,0,15.6
+301105,0,0,0,15.6
+301106,0,0,0,15.6
+301107,0,0,0,15.6
+301108,0,0,0,15.6
+301109,0,0,0,15.6
+301110,0,0,0,15.6
+301111,0,0,0,15.6
+301112,0,0,0,15.6
+301113,0,0,0,15.6
+301114,0,0,0,15.6
+301115,0,0,0,15.6
+301116,0,0,0,15.6
+301117,0,0,0,15.6
+301118,0,0,0,15.6
+301119,0,0,0,15.6
+301120,0,0,0,15.6
+301121,0,0,0,15.6
+301122,0,0,0,15.6
+301123,0,0,0,15.6
+301124,0,0,0,15.6
+301125,0,364198.5065,673305.6168,15.6
+301126,0,0,0,15.6
+301127,0,0,0,15.6
+301128,0,0,0,15.6
+301129,0,0,0,15.6
+301130,334952.8451,0,0,15.6
+301131,0,0,0,15.6
+301132,0,0,0,15.6
+301133,0,0,0,15.6
+301134,0,0,0,15.6
+301135,0,0,0,15.6
+301136,0,0,0,15.6
+301137,0,0,0,15.6
+301138,0,0,0,15.6
+301139,0,0,0,15.6
+301140,0,0,0,15.6
+301141,0,0,0,15.6
+301142,0,0,0,15.6
+301143,0,0,0,15.6
+301144,0,0,0,15.6
+301145,0,0,0,15.6
+301146,0,0,0,15.6
+301147,0,0,0,15.6
+301148,0,0,0,15.6
+301149,0,0,0,15.6
+301150,0,0,0,15.6
+301151,0,0,0,15.6
+301152,0,0,0,15.6
+301153,0,0,0,15.6
+301154,0,0,0,15.6
+301155,0,0,0,15.6
+301156,0,0,0,15.6
+301157,0,0,0,15.6
+301158,0,0,0,15.6
+301159,0,0,670985.3531,15.6
+301160,0,366700.6725,0,15.6
+301161,0,0,0,15.6
+301162,0,0,0,15.6
+301163,0,0,0,15.6
+301164,336394.5074,0,0,15.6
+301165,0,0,0,15.6
+301166,0,0,0,15.6
+301167,0,0,0,15.6
+301168,0,0,0,15.6
+301169,0,0,0,15.6
+301170,0,0,0,15.6
+301171,0,0,0,15.6
+301172,0,0,0,15.6
+301173,0,0,0,15.6
+301174,0,0,0,15.6
+301175,0,0,0,15.6
+301176,0,0,0,15.6
+301177,0,0,0,15.6
+301178,0,0,0,15.6
+301179,0,0,0,15.6
+301180,0,0,0,15.6
+301181,0,0,0,15.6
+301182,0,0,0,15.6
+301183,0,0,0,15.6
+301184,0,0,0,15.6
+301185,0,0,0,15.6
+301186,0,0,0,15.6
+301187,0,0,0,15.6
+301188,0,0,0,15.6
+301189,0,0,0,15.6
+301190,0,0,0,15.6
+301191,0,0,0,15.6
+301192,0,0,0,15.6
+301193,0,0,671509.2677,15.6
+301194,0,368007.8286,0,15.6
+301195,0,0,0,15.6
+301196,0,0,0,15.6
+301197,0,0,0,15.6
+301198,337004.719,0,0,15.6
+301199,0,0,0,15.6
+301200,0,0,0,17.8
+301201,0,0,0,17.8
+301202,0,0,0,17.8
+301203,0,0,0,17.8
+301204,0,0,0,17.8
+301205,0,0,0,17.8
+301206,0,0,0,17.8
+301207,0,0,0,17.8
+301208,0,0,0,17.8
+301209,0,0,0,17.8
+301210,0,0,0,17.8
+301211,0,0,0,17.8
+301212,0,0,0,17.8
+301213,0,0,0,17.8
+301214,0,0,0,17.8
+301215,0,0,0,17.8
+301216,0,0,0,17.8
+301217,0,0,0,17.8
+301218,0,0,0,17.8
+301219,0,0,0,17.8
+301220,0,0,0,17.8
+301221,0,0,0,17.8
+301222,0,0,0,17.8
+301223,0,0,0,17.8
+301224,0,0,0,17.8
+301225,0,0,0,17.8
+301226,0,0,0,17.8
+301227,0,0,670549.0931,17.8
+301228,0,365024.4076,0,17.8
+301229,0,0,0,17.8
+301230,0,0,0,17.8
+301231,0,0,0,17.8
+301232,335777.2554,0,0,17.8
+301233,0,0,0,17.8
+301234,0,0,0,17.8
+301235,0,0,0,17.8
+301236,0,0,0,17.8
+301237,0,0,0,17.8
+301238,0,0,0,17.8
+301239,0,0,0,17.8
+301240,0,0,0,17.8
+301241,0,0,0,17.8
+301242,0,0,0,17.8
+301243,0,0,0,17.8
+301244,0,0,0,17.8
+301245,0,0,0,17.8
+301246,0,0,0,17.8
+301247,0,0,0,17.8
+301248,0,0,0,17.8
+301249,0,0,0,17.8
+301250,0,0,0,17.8
+301251,0,0,0,17.8
+301252,0,0,0,17.8
+301253,0,0,0,17.8
+301254,0,0,0,17.8
+301255,0,0,0,17.8
+301256,0,0,0,17.8
+301257,0,0,0,17.8
+301258,0,0,0,17.8
+301259,0,0,0,17.8
+301260,0,0,0,20
+301261,0,367068.7581,668773.3562,20
+301262,0,90.55141348,0,20
+301263,0,659.370898,0,20
+301264,0,276.7607928,0,20
+301265,0,433.5857742,9285.477487,20
+301266,0,34254.46735,20695.12462,20
+301267,0,58078.6628,11948.1164,20
+301268,0,45917.1098,16236.02035,20
+301269,1517.383192,48911.50777,16589.61941,20
+301270,10380.59524,51068.32277,17446.15323,20
+301271,11704.71732,51639.58596,26406.547,20
+301272,9248.764344,51667.86249,21378.11791,20
+301273,11102.41159,52048.8746,23144.75418,20
+301274,15700.50187,51980.63209,23235.77166,20
+301275,16093.12866,52326.56989,23875.12599,20
+301276,15536.91185,52377.39094,23749.71874,20
+301277,16638.47333,52415.57113,24186.18158,20
+301278,16859.30195,52398.27912,24061.80944,20
+301279,17252.03473,52673.21751,24688.76684,20
+301280,17616.28751,53033.91003,24586.33173,20
+301281,17983.7573,52514.93303,24893.80161,20
+301282,18115.04087,53281.86641,25162.43253,20
+301283,18706.43441,52791.33224,25312.37325,20
+301284,18837.01474,53103.3923,25380.84799,20
+301285,19200.19671,53344.43928,25803.37985,20
+301286,19360.03257,52851.84146,25668.16174,20
+301287,19786.48283,53733.34354,26320.58386,20
+301288,19961.8998,52944.79614,26076.90967,20
+301289,20386.42314,52978.37823,26397.09333,20
+301290,20424.3175,52773.76871,26675.51694,20
+301291,20681.93587,52794.47651,26711.08922,20
+301292,21114.47745,53329.36244,27283.67743,20
+301293,21141.68276,53299.00501,27279.86563,20
+301294,21386.72604,53477.27918,27434.03418,20
+301295,21508.76435,53350.00907,27753.46197,20
+301296,21843.5671,53348.66404,27904.52981,20
+301297,21975.47352,53477.28855,28062.50952,20
+301298,21990.90994,53158.05149,28366.20644,20
+301299,22328.72083,53399.54722,28403.1869,20
+301300,22572.63259,53511.66753,28806.2171,20
+301301,22570.69579,53173.19398,28675.46299,20
+301302,22820.29473,53526.78351,29230.57695,20
+301303,22919.743,53078.91817,29104.92921,20
+301304,23171.11184,53528.04262,29613.64348,20
+301305,23162.54003,53186.94908,29800.75694,20
+301306,23409.13129,53298.27451,29921.54915,20
+301307,23524.75046,53167.6715,30276.03846,20
+301308,23730.57917,53392.48183,30299.17506,20
+301309,23669.64058,52954.25789,30584.74809,20
+301310,23978.15076,53349.44957,30849.60558,20
+301311,24103.88302,52981.58131,30983.47306,20
+301312,24015.9234,53196.27376,30104.44913,20
+301313,24429.73571,53236.1458,29981.86733,20
+301314,24260.83198,52989.64124,30224.47907,20
+301315,24454.85163,52875.92322,30416.26145,20
+301316,24692.11159,53216.78794,30280.08001,20
+301317,24705.36039,52989.6505,30744.7605,20
+301318,24704.6371,52870.15316,30506.42569,20
+301319,24938.49216,52819.353,31020.92317,20
+301320,25141.12594,52870.1594,30917.7038,21
+301321,24954.94117,52983.52217,30933.84672,21
+301322,25166.27911,52705.88936,31298.12501,21
+301323,25260.15763,52636.88083,31569.18223,21
+301324,25191.22269,52629.10085,31467.47532,21
+301325,25291.07829,52864.02419,31586.92426,21
+301326,25474.93276,52663.24838,31826.38314,21
+301327,25216.18894,52446.437,32059.6904,21
+301328,25605.00963,52856.24746,31937.80719,21
+301329,25521.01965,52175.17174,32314.65269,21
+301330,25621.35037,52757.36578,32281.00577,21
+301331,25533.43803,52275.37262,32544.91405,21
+301332,25633.85269,52466.08406,32815.27987,21
+301333,25726.24059,52355.63902,32716.45087,21
+301334,25651.02665,52315.4841,32927.96253,21
+301335,25848.87786,52255.63826,32976.17534,21
+301336,25743.7472,52275.37828,33278.46597,21
+301337,25869.99074,52275.37921,33140.72035,21
+301338,25843.43696,52255.64106,33671.62704,21
+301339,25866.88704,51912.72372,33492.05385,21
+301340,25980.21534,52141.81468,33750.39701,21
+301341,25758.69661,52084.31413,33875.67291,21
+301342,26079.57591,51912.7259,33885.07276,21
+301343,25875.84551,52007.97155,33966.57222,21
+301344,26049.79589,51892.22519,34440.28392,21
+301345,26000.15744,51906.51453,34329.20521,21
+301346,25962.9144,51665.05538,34196.05067,21
+301347,26203.92156,51872.38342,34905.55041,21
+301348,25867.14498,51779.05786,34329.27533,21
+301349,26087.08612,51624.60056,34880.61856,21
+301350,26091.90847,51548.92536,34776.57654,21
+301351,26066.02946,51604.06623,35066.76096,21
+301352,25883.10162,51906.51778,34895.69743,21
+301353,26153.02144,51301.14298,35138.02693,21
+301354,25762.18523,51831.89654,35349.69231,21
+301355,25840.82708,51540.91543,35146.79788,21
+301356,25840.72852,51831.89775,35318.72329,21
+301357,25831.97723,51583.02658,35584.95967,21
+301358,25518.60564,51638.23409,35411.17396,21
+301359,25810.70855,51542.60439,35707.78963,21
+301360,25389.02374,51920.12856,35709.04965,21
+301361,25605.52568,51738.60508,35818.95878,21
+301362,25371.10697,51576.15997,35836.94904,21
+301363,25249.67766,51900.17681,35771.93151,21
+301364,25366.94447,51562.55785,36158.33367,21
+301365,25118.76651,51900.17365,35981.1577,21
+301366,25035.1936,51576.16639,36051.59022,21
+301367,25087.91135,51900.17438,36292.78123,21
+301368,24791.06936,51576.16676,36347.60182,21
+301369,24760.0797,51900.17401,36277.322,21
+301370,24667.19158,51669.8685,36328.68054,21
+301371,24716.05406,51287.34465,36637.13259,21
+301372,24434.31938,51488.70699,36499.96751,21
+301373,24291.29059,50922.26071,36589.76546,21
+301374,24279.00489,51354.03787,36615.55159,21
+301375,24145.90774,51056.36643,36925.93358,21
+301376,23943.98929,51217.49187,36675.46921,21
+301377,23923.42585,51150.83826,36788.43966,21
+301378,23794.83982,51101.1341,37025.26278,21
+301379,23669.83436,51115.84299,36834.01955,21
+301380,23576.58688,51074.29028,37119.19743,21
+301381,16508.63992,42174.56617,26669.75976,21
+301382,16144.74073,41616.2987,26131.57053,21
+301383,15677.12517,41218.70238,25735.07665,21
+301384,15783.14233,41218.70521,25772.58341,21
+301385,15183.23793,41183.03338,25379.40062,21
+301386,15297.55355,40958.13862,25532.21266,21
+301387,15047.32073,40819.75492,25290.02854,21
+301388,14699.82281,40943.93813,25042.97489,21
+301389,14699.8227,40798.24247,25277.79046,21
+301390,14659.9636,40559.15079,24839.35432,21
+301391,14209.01437,40544.9253,24786.18913,21
+301392,14200.53507,40537.60162,24734.50429,21
+301393,13942.88111,40180.39561,24798.0882,21
+301394,13822.97007,40537.59982,24344.70996,21
+301395,13702.51811,40123.00837,24461.35531,21
+301396,13457.54966,40355.48836,24369.24474,21
+301397,13439.54747,40003.15158,24315.01142,21
+301398,12956.61897,40137.25524,24160.38475,21
+301399,13076.47614,39495.78261,23829.45153,21
+301400,12830.766,39642.81724,24144.89108,21
+301401,12677.51787,39276.36723,23840.09123,21
+301402,12348.16513,39325.16695,23669.91101,21
+301403,12420.68778,39085.24349,23836.29086,21
+301404,12076.58648,39182.98176,23446.11162,21
+301405,12067.02737,39056.66387,23695.15232,21
+301406,11686.61817,38794.17048,23202.62806,21
+301407,11680.51141,39056.66142,23580.71931,21
+301408,11545.45515,38772.38586,23072.50217,21
+301409,11174.1328,38730.63096,23129.18035,21
+301410,11302.88602,38758.05709,23164.22382,21
+301411,10770.19917,38546.38579,22938.67842,21
+301412,10418.85978,38722.00196,22802.62855,21
+301413,9999.180648,38219.48294,22799.37891,21
+301414,9733.899812,38537.99459,22649.18588,21
+301415,9112.734573,38147.12405,22555.90622,21
+301416,8830.376379,38112.06714,22418.04202,21
+301417,8426.811303,37962.13233,22267.92123,21
+301418,7096.795635,38309.90311,22213.14991,21
+301419,6643.998321,37706.16999,22084.29434,21
+301420,5839.667955,37597.89704,21832.88351,21
+301421,5801.109169,37647.92359,22003.80653,21
+301422,4974.968516,37404.63152,21649.19255,21
+301423,4639.14272,37240.5174,21620.8599,21
+301424,4028.173104,37232.92487,21518.11113,21
+301425,3982.886879,36739.4755,21259.57557,21
+301426,3704.262929,37010.42954,21359.28014,21
+301427,3628.301221,36508.62436,21113.16388,21
+301428,3609.304017,36787.52764,21108.93241,21
+301429,3299.469188,36127.03722,20603.66155,21
+301430,3234.872645,36097.66456,21083.77063,21
+301431,3074.762382,36127.045,20565.1558,21
+301432,3025.373243,35814.29965,20572.51483,21
+301433,2721.59676,35541.67306,20324.79245,21
+301434,2828.803517,35656.13501,20409.64283,21
+301435,2560.451174,34825.4137,20161.40962,21
+301436,2404.110899,34825.27829,20055.43418,21
+301437,2546.488223,34562.13649,20010.4897,21
+301438,2130.683409,34250.66513,19747.89775,21
+301439,2260.844737,34372.65258,19658.80561,21
+301440,2116.620927,33893.56969,19596.37974,21
+301441,1957.225147,33498.17565,19357.56905,21
+301442,1839.07997,33941.33963,19485.253,21
+301443,1677.269335,32970.89454,19075.9683,21
+301444,1663.068036,33401.01825,19227.83472,21
+301445,1528.148415,32573.88479,19089.81181,21
+301446,1363.083844,32858.91617,18703.30698,21
+301447,1224.558092,32344.38989,19076.74339,21
+301448,1210.247983,32306.90122,18571.94349,21
+301449,895.872566,31953.98467,18710.59758,21
+301450,1054.86222,31761.13932,18426.5749,21
+301451,715.1202603,31700.53857,18308.16337,21
+301452,729.5823902,31213.52046,18440.92842,21
+301453,700.6181667,31338.13745,18151.85498,21
+301454,686.0767686,30641.0026,17925.87392,21
+301455,671.4942747,31114.95421,18028.52094,21
+301456,671.4941754,30276.44993,17783.54079,21
+301457,642.2040978,30418.51388,17872.09942,21
+301458,627.4957072,30005.24636,17517.53791,21
+301459,627.4957096,30028.45411,17368.3083,21
+301460,597.9466672,29500.35414,17500.11006,21
+301461,597.9464171,29575.44362,17351.42227,21
+301462,568.2170026,29266.09744,17106.13064,21
+301463,568.2170074,29251.21789,17089.06893,21
+301464,553.2820327,28725.06747,16946.87251,21
+301465,523.2671271,28834.43228,16702.32858,21
+301466,523.2674124,28113.66869,16801.2534,21
+301467,508.1854988,28663.20107,16555.7555,21
+301468,493.0522829,27693.27887,16517.88631,21
+301469,462.6271778,27950.356,16275.83174,21
+301470,477.8667668,27646.00745,16280.68388,21
+301471,431.9819094,27167.15641,16123.47215,21
+301472,447.3329112,27158.48481,16089.83525,21
+301473,431.9816643,27030.08467,15750.876,21
+301474,416.5726477,26571.08854,15951.34299,21
+301475,416.5726513,26340.48458,15587.44832,21
+301476,401.1034397,26292.66035,15563.4223,21
+301477,385.5724096,25764.87989,15523.98827,21
+301478,385.5726249,25716.83353,15308.04472,21
+301479,369.9780548,25282.35506,15283.03446,21
+301480,369.9779956,25108.32875,15109.03158,21
+301481,338.589042,24702.1901,15012.04218,21
+301482,354.3176295,24512.48439,14822.64129,21
+301483,338.5890186,24104.34309,14739.87929,21
+301484,322.7895607,24040.3614,14695.28087,21
+301485,322.7897028,23479.44423,14553.50976,21
+301486,306.9168459,23107.25907,14396.58603,21
+301487,298.9518506,22906.74157,14304.4736,21
+301488,290.9673836,22366.09303,14242.36422,21
+301489,290.9673677,22275.38801,13998.96317,21
+301490,258.8245046,21467.68524,13977.92532,21
+301491,274.9377791,21665.86823,13829.71905,21
+301492,258.8245101,20705.62173,13847.9049,21
+301493,242.6229911,20705.62574,13567.71538,21
+301494,242.6229956,19875.61318,13541.28425,21
+301495,226.3284361,19723.10834,13319.45068,21
+301496,226.328481,19054.50867,13396.18397,21
+301497,226.3284831,18705.46322,13025.48639,21
+301498,193.4373571,18399.58216,13147.27354,21
+301499,209.9354285,17655.99263,12986.93863,21
+301500,201.6999707,17148.76985,12744.88027,21
+301501,176.8269583,16494.34324,15326.14786,21
+301502,176.8269189,15785.57935,15227.84786,21
+301503,160.0952095,15234.05522,15169.05462,21
+301504,160.0952108,14722.71194,14786.76796,21
+301505,143.2314525,13852.43658,15060.09723,21
+301506,126.2226614,13413.16784,14643.36223,21
+301507,143.2314889,12772.19055,14527.87614,21
+301508,109.0521172,12092.16304,14605.69565,21
+301509,109.0520937,11385.71045,14233.74842,21
+301510,91.69819686,10593.64209,14341.66648,21
+301511,100.3996936,10110.96363,13953.23379,21
+301512,74.13125838,9483.539325,13941.49446,21
+301513,74.13123156,9438.84724,13929.79396,21
+301514,74.1312599,9344.943983,13539.26662,21
+301515,38.15889742,9132.962841,13767.45978,21
+301516,56.30808139,9148.82737,13240.22883,21
+301517,38.15888918,9002.582856,13363.58785,21
+301518,19.54816699,8970.735858,13110.59115,21
+301519,38.15889758,8725.016254,13078.15732,21
+301520,0,8970.73619,12930.06815,21
+301521,0,8561.797015,12654.92029,21
+301522,0,8693.088961,12657.70003,21
+301523,0,8545.772644,12350.25631,21
+301524,0,8529.706189,12526.73457,21
+301525,0,8398.102687,12058.67732,21
+301526,0,8250.076331,12099.91225,21
+301527,0,8381.995304,11885.99978,21
+301528,0,8101.686515,11807.3341,21
+301529,0,8085.492219,11601.27283,21
+301530,0,7952.92933,11527.71934,21
+301531,0,8069.270021,11302.97103,21
+301532,0,7670.589986,10751.15299,21
+301533,0,7787.533603,10737.58937,21
+301534,0,7771.206716,10447.15283,21
+301535,0,7504.415888,10310.15759,21
+301536,0,7488.042533,10002.45442,21
+301537,0,7471.622442,9988.598446,21
+301538,0,7337.715157,9586.491466,21
+301539,0,7186.990867,9400.717761,21
+301540,0,7186.990849,9386.5708,21
+301541,0,7153.911203,8840.154569,21
+301542,0,6900.89154,8825.606471,21
+301543,0,7002.684894,8638.040849,21
+301544,0,6748.980011,8228.788272,21
+301545,0,6834.322757,8198.11758,21
+301546,0,6596.655445,7897.860557,21
+301547,0,6546.504393,7612.089999,21
+301548,0,6427.184099,7325.565398,21
+301549,0,6410.414505,7277.922199,21
+301550,0,6257.115894,6845.272933,21
+301551,0,6240.237513,6813.229618,21
+301552,0,6103.368582,6377.734608,21
+301553,0,5966.098832,6232.123502,21
+301554,0,6069.441625,5890.347432,21
+301555,0,5794.493473,5760.079803,21
+301556,0,5794.493882,5416.117531,21
+301557,0,5622.23593,5276.136843,21
+301558,0,5622.235904,4937.890187,21
+301559,0,5483.714489,4655.412306,21
+301560,0,5327.584624,4472.508418,21
+301561,0,5587.753038,1655.781013,21
+301562,0,5188.183751,1186.888966,21
+301563,0,5293.047347,1119.929784,21
+301564,0,5310.34965,909.8301482,21
+301565,0,4996.419465,876.0647013,21
+301566,0,5136.276798,842.1975768,21
+301567,0,4996.419671,774.1355593,21
+301568,0,4838.657798,722.5211265,21
+301569,0,4821.147962,705.637482,21
+301570,0,4978.960781,636.0167062,21
+301571,0,4978.976615,601.9682769,21
+301572,0,4838.657567,540.4274669,21
+301573,0,4943.887551,514.3057219,21
+301574,0,4680.345677,434.6409626,21
+301575,0,4662.761974,425.5388173,21
+301576,0,4645.101911,336.4476555,21
+301577,0,4653.941797,317.8631493,21
+301578,0,4344.271925,262.5188659,21
+301579,0,4645.102068,217.4371116,21
+301580,0,4184.134188,170.2600615,21
+301581,0,4326.450681,113.7110554,21
+301582,0,4326.450731,113.7113213,21
+301583,0,4023.376154,76.94994056,21
+301584,0,4308.543179,58.27959046,21
+301585,0,3861.977452,39.34881206,21
+301586,0,4005.379291,10.18200567,21
+301587,0,3987.28834,0,21
+301588,0,3699.916347,0,21
+301589,0,3825.697162,0,21
+301590,0,3681.726714,0,21
+301591,0,3663.431725,0,21
+301592,0,3518.872854,0,21
+301593,0,3518.872919,0,21
+301594,0,3500.46919,0,21
+301595,0,3355.300714,0,21
+301596,0,3336.779728,0,21
+301597,0,3336.779722,0,21
+301598,0,3190.978635,0,21
+301599,0,3172.332081,0,21
+301600,0,3172.332058,0,21
+301601,0,3007.090391,0,21
+301602,0,3016.498964,0,21
+301603,0,2997.64493,0,21
+301604,0,2841.015105,0,21
+301605,0,2997.645001,0,21
+301606,0,2674.060336,0,21
+301607,0,2841.014964,0,21
+301608,0,2654.788972,0,21
+301609,0,2674.060131,0,21
+301610,0,2506.172916,0,21
+301611,0,2654.788881,0,21
+301612,0,2337.289869,0,21
+301613,0,2506.172708,0,21
+301614,0,2466.984641,0,21
+301615,0,2187.046479,0,21
+301616,0,2317.57711,0,21
+301617,0,2307.617816,0,21
+301618,0,2167.333824,0,21
+301619,0,2137.208611,0,21
+301620,0,1996.206886,0,21
+301621,0,5776.554756,0,21
+301622,0,5913.670672,0,21
+301623,0,5913.66212,0,21
+301624,0,6068.113873,0,21
+301625,0,5913.661238,0,21
+301626,0,5931.244678,0,21
+301627,0,6050.528909,0,21
+301628,0,5913.660374,0,21
+301629,0,6050.528418,0,21
+301630,0,5913.659901,0,21
+301631,0,6050.527996,0,21
+301632,0,5895.999179,0,21
+301633,0,5913.658973,0,21
+301634,0,6032.866844,0,21
+301635,0,5895.998234,0,21
+301636,0,5895.997932,0,21
+301637,0,5895.997591,0,21
+301638,0,6032.86555,0,21
+301639,0,5740.988507,0,21
+301640,0,6032.864887,0,21
+301641,0,5740.987768,0,21
+301642,0,5878.239148,0,21
+301643,0,5878.246388,0,21
+301644,0,5740.728727,0,21
+301645,0,5878.35851,0,21
+301646,0,5860.35624,0,21
+301647,0,5740.981373,0,21
+301648,0,5723.127804,0,21
+301649,0,5860.396539,0,21
+301650,0,5732.049864,0,21
+301651,0,5723.117526,0,21
+301652,0,5705.207825,0,21
+301653,0,5714.172301,0,21
+301654,0,5429.437037,0,21
+301655,0,5705.206982,0,21
+301656,0,5411.439542,0,21
+301657,0,5549.525454,0,21
+301658,0,5411.42327,0,21
+301659,0,5411.423686,0,21
+301660,0,5393.333126,0,21
+301661,0,5254.814252,0,21
+301662,0,5236.624889,0,21
+301663,0,5254.814112,0,21
+301664,0,5097.670233,0,21
+301665,0,5079.376807,0,21
+301666,0,5097.670038,0,21
+301667,0,5079.376634,0,21
+301668,0,4790.934404,0,21
+301669,0,5070.188925,0,21
+301670,0,4781.717797,0,21
+301671,0,4781.717611,0,21
+301672,0,4763.196893,0,21
+301673,0,4622.87518,0,21
+301674,0,4763.196849,0,21
+301675,0,4472.76814,0,21
+301676,0,4463.428729,0,21
+301677,0,4604.22879,0,21
+301678,0,4303.355871,0,21
+301679,0,4444.646925,0,21
+301680,0,4161.560264,0,21
+301681,0,4425.719004,0,21
+301682,0,4009.800439,0,21
+301683,0,4133.106974,0,21
+301684,0,4123.540333,0,21
+301685,0,3838.377375,0,21
+301686,0,3961.955039,0,21
+301687,0,3828.765725,0,21
+301688,0,3799.631308,0,21
+301689,0,3522.028216,0,21
+301690,0,3789.807343,0,21
+301691,0,3347.994259,0,21
+301692,0,3492.551095,0,21
+301693,0,3492.551075,0,21
+301694,0,3162.471651,0,21
+301695,0,3327.997192,0,21
+301696,0,3026.90373,0,21
+301697,0,3152.115299,0,21
+301698,0,2995.801519,0,21
+301699,0,2859.858169,0,21
+301700,0,2827.438181,0,21
+301701,0,2838.607745,0,21
+301702,0,2532.432298,0,21
+301703,0,2680.294004,0,21
+301704,0,2532.432274,0,21
+301705,0,2532.432245,0,21
+301706,0,2234.412675,0,21
+301707,0,2532.432272,0,21
+301708,0,2084.171454,0,21
+301709,0,2234.412632,0,21
+301710,0,2084.171421,0,21
+301711,0,2084.176673,0,21
+301712,0,1933.04993,0,21
+301713,0,1933.050098,0,21
+301714,0,1933.050268,0,21
+301715,0,1780.977889,0,21
+301716,0,1627.892714,0,21
+301717,0,1780.978102,0,21
+301718,0,1627.89311,0,21
+301719,0,1473.714394,0,21
+301720,0,1627.893362,0,21
+301721,0,1318.344816,0,21
+301722,0,1473.714648,0,21
+301723,0,1318.344947,0,21
+301724,0,1318.345164,0,21
+301725,0,1161.664858,0,21
+301726,0,1161.664923,0,21
+301727,0,1161.664984,0,21
+301728,0,1003.522757,0,21
+301729,0,1003.522796,0,21
+301730,0,843.7212143,0,21
+301731,0,1003.523023,159.4390425,21
+301732,0,681.9901251,463.4827403,21
+301733,0,843.7213651,312.9270334,21
+301734,0,681.9901966,463.4888302,21
+301735,0,681.9902222,463.49245,21
+301736,0,517.9358071,611.9937117,21
+301737,0,681.9903658,463.5008094,21
+301738,0,350.9226791,758.8840536,21
+301739,0,434.854552,612.0126388,21
+301740,0,350.9227144,758.901685,21
+301741,0,0,1617.1006,21
+301742,0,179.7173192,1617.14491,21
+301743,0,0,1617.18922,21
+301744,0,0,1757.389332,21
+301745,0,0,1476.414235,21
+301746,0,0,1757.485952,21
+301747,0,0,1617.370054,21
+301748,0,0,1617.414349,21
+301749,0,0,1757.634915,21
+301750,0,0,1617.506597,21
+301751,0,0,1617.550887,21
+301752,0,0,1617.595122,21
+301753,0,0,1757.832167,21
+301754,0,0,1476.783248,21
+301755,0,0,1757.928736,21
+301756,0,0,1617.775919,21
+301757,0,0,1476.903968,21
+301758,0,0,1758.073592,21
+301759,0,0,1476.984426,21
+301760,0,0,1617.949268,21
+301761,0,0,1617.993533,21
+301762,0,0,1477.101783,21
+301763,0,0,1618.07835,21
+301764,0,0,1477.178892,21
+301765,0,0,1618.163152,21
+301766,0,0,1477.255997,21
+301767,0,0,1477.292807,21
+301768,0,0,1477.329731,21
+301769,0,0,1477.36653,21
+301770,0,0,1477.403407,21
+301771,0,0,1335.707071,21
+301772,0,0,1335.737131,21
+301773,0,0,1193.19614,21
+301774,0,0,1049.731246,21
+301775,0,0,1049.749843,21
+301776,0,0,905.2540208,21
+301777,0,0,905.2678082,21
+301778,0,0,612.5813609,21
+301779,0,0,759.6125782,21
+301780,0,0,463.9473652,21
+301781,0,0,81.04901885,21
+301782,0,0,0,21
+301783,0,0,0,21
+301784,0,0,0,21
+301785,0,0,0,21
+301786,0,0,0,21
+301787,0,0,0,21
+301788,0,0,0,21
+301789,0,0,0,21
+301790,0,0,0,21
+301791,0,0,0,21
+301792,0,0,0,21
+301793,0,0,0,21
+301794,0,0,0,21
+301795,0,0,0,21
+301796,0,0,0,21
+301797,0,0,0,21
+301798,0,0,0,21
+301799,0,0,0,21
+301800,0,0,0,21
+301801,0,0,0,21
+301802,0,0,0,21
+301803,0,0,0,21
+301804,0,0,0,21
+301805,0,0,0,21
+301806,0,0,0,21
+301807,0,0,0,21
+301808,0,0,0,21
+301809,0,0,0,21
+301810,0,0,0,21
+301811,0,0,0,21
+301812,0,0,0,21
+301813,0,0,0,21
+301814,0,0,0,21
+301815,0,0,0,21
+301816,0,0,0,21
+301817,0,0,0,21
+301818,0,0,0,21
+301819,0,0,0,21
+301820,0,0,0,21
+301821,0,0,0,21
+301822,0,0,0,21
+301823,0,0,0,21
+301824,0,0,0,21
+301825,0,0,0,21
+301826,0,0,0,21
+301827,0,0,0,21
+301828,0,0,0,21
+301829,0,0,0,21
+301830,0,0,0,21
+301831,0,0,0,21
+301832,0,0,0,21
+301833,0,0,0,21
+301834,0,0,0,21
+301835,0,0,0,21
+301836,0,0,0,21
+301837,0,0,0,21
+301838,0,0,0,21
+301839,0,0,0,21
+301840,0,0,0,21
+301841,0,0,0,21
+301842,0,0,0,21
+301843,0,0,0,21
+301844,0,0,0,21
+301845,0,0,0,21
+301846,0,0,0,21
+301847,0,0,0,21
+301848,0,0,0,21
+301849,0,0,0,21
+301850,0,0,0,21
+301851,0,0,0,21
+301852,0,0,0,21
+301853,0,0,0,21
+301854,0,0,0,21
+301855,0,0,0,21
+301856,0,0,0,21
+301857,0,0,0,21
+301858,0,0,0,21
+301859,0,0,0,21
+301860,0,0,0,21
+301861,0,0,0,21
+301862,0,0,0,21
+301863,0,0,0,21
+301864,0,0,0,21
+301865,0,0,0,21
+301866,0,0,0,21
+301867,0,0,0,21
+301868,0,0,0,21
+301869,0,0,0,21
+301870,0,0,0,21
+301871,0,0,0,21
+301872,0,0,0,21
+301873,0,0,0,21
+301874,0,0,0,21
+301875,0,0,0,21
+301876,0,0,0,21
+301877,0,0,0,21
+301878,0,0,0,21
+301879,0,0,0,21
+301880,0,0,0,21
+301881,0,0,0,21
+301882,0,0,0,21
+301883,0,0,0,21
+301884,0,0,0,21
+301885,0,0,0,21
+301886,0,0,0,21
+301887,0,0,0,21
+301888,0,0,0,21
+301889,0,0,0,21
+301890,0,0,0,21
+301891,0,0,0,21
+301892,0,0,0,21
+301893,0,0,0,21
+301894,0,0,0,21
+301895,0,0,0,21
+301896,0,0,0,21
+301897,0,0,0,21
+301898,0,0,0,21
+301899,0,0,0,21
+301900,0,0,0,21
+301901,0,0,0,21
+301902,0,0,0,21
+301903,0,0,0,21
+301904,0,0,0,21
+301905,0,0,0,21
+301906,0,0,0,21
+301907,0,0,0,21
+301908,0,0,0,21
+301909,0,0,0,21
+301910,0,0,0,21
+301911,0,0,0,21
+301912,0,0,0,21
+301913,0,0,0,21
+301914,0,0,0,21
+301915,0,0,0,21
+301916,0,0,0,21
+301917,0,0,0,21
+301918,0,0,0,21
+301919,0,0,0,21
+301920,0,0,0,21
+301921,0,0,0,21
+301922,0,0,0,21
+301923,0,0,0,21
+301924,0,0,0,21
+301925,0,0,0,21
+301926,0,0,0,21
+301927,0,0,0,21
+301928,0,0,0,21
+301929,0,0,0,21
+301930,0,0,0,21
+301931,0,0,0,21
+301932,0,0,0,21
+301933,0,0,0,21
+301934,0,0,0,21
+301935,0,0,0,21
+301936,0,0,0,21
+301937,0,0,0,21
+301938,0,0,0,21
+301939,0,0,0,21
+301940,0,0,0,21
+301941,0,0,0,21
+301942,0,0,0,21
+301943,0,0,0,21
+301944,0,0,0,21
+301945,0,0,0,21
+301946,0,0,0,21
+301947,0,0,0,21
+301948,0,0,0,21
+301949,0,0,0,21
+301950,0,0,0,21
+301951,0,0,0,21
+301952,0,0,0,21
+301953,0,0,0,21
+301954,0,0,0,21
+301955,0,0,0,21
+301956,0,0,0,21
+301957,0,0,0,21
+301958,0,0,0,21
+301959,0,0,0,21
+301960,0,0,0,21
+301961,0,0,0,21
+301962,0,0,0,21
+301963,0,0,0,21
+301964,0,0,0,21
+301965,0,0,0,21
+301966,0,0,0,21
+301967,0,0,0,21
+301968,0,0,0,21
+301969,0,0,0,21
+301970,0,0,0,21
+301971,0,0,0,21
+301972,0,0,0,21
+301973,0,0,0,21
+301974,0,0,0,21
+301975,0,0,0,21
+301976,0,0,0,21
+301977,0,0,0,21
+301978,0,0,0,21
+301979,0,0,0,21
+301980,0,0,0,21
+301981,0,0,0,21
+301982,0,0,0,21
+301983,0,0,0,21
+301984,0,0,0,21
+301985,0,0,0,21
+301986,0,366647.1976,980242.7426,21
+301987,327417.5618,0,0,21
+301988,0,0,0,21
+301989,0,0,0,21
+301990,0,0,0,21
+301991,0,0,0,21
+301992,0,0,0,21
+301993,0,0,0,21
+301994,0,0,0,21
+301995,0,0,0,21
+301996,0,0,0,21
+301997,0,0,0,21
+301998,0,0,0,21
+301999,0,0,0,21
+302000,0,0,0,21
+302001,0,0,0,21
+302002,0,0,0,21
+302003,0,0,0,21
+302004,0,0,0,21
+302005,0,0,0,21
+302006,0,0,0,21
+302007,0,0,0,21
+302008,0,0,0,21
+302009,0,0,0,21
+302010,0,0,0,21
+302011,0,0,0,21
+302012,0,0,0,21
+302013,0,0,0,21
+302014,0,0,0,21
+302015,0,0,0,21
+302016,0,0,0,21
+302017,0,0,0,21
+302018,0,0,0,21
+302019,0,0,0,21
+302020,0,0,0,21
+302021,0,365777.8676,952375.8757,21
+302022,0,0,0,21
+302023,328697.2824,0,0,21
+302024,0,0,0,21
+302025,0,0,0,21
+302026,0,0,0,21
+302027,0,0,0,21
+302028,0,0,0,21
+302029,0,0,0,21
+302030,0,0,0,21
+302031,0,0,0,21
+302032,0,0,0,21
+302033,0,0,0,21
+302034,0,0,0,21
+302035,0,0,0,21
+302036,0,0,0,21
+302037,0,0,0,21
+302038,0,0,0,21
+302039,0,0,0,21
+302040,0,0,0,21
+302041,0,0,0,21
+302042,0,0,0,21
+302043,0,0,0,21
+302044,0,0,0,21
+302045,0,0,0,21
+302046,0,0,0,21
+302047,0,0,0,21
+302048,0,0,0,21
+302049,0,0,0,21
+302050,0,0,0,21
+302051,0,0,0,21
+302052,0,0,0,21
+302053,0,0,0,21
+302054,0,0,0,21
+302055,0,0,0,21
+302056,0,365992.4833,926880.5714,21
+302057,0,0,0,21
+302058,0,0,0,21
+302059,329754.8712,0,0,21
+302060,0,0,0,21
+302061,0,0,0,21
+302062,0,0,0,21
+302063,0,0,0,21
+302064,0,0,0,21
+302065,0,0,0,21
+302066,0,0,0,21
+302067,0,0,0,21
+302068,0,0,0,21
+302069,0,0,0,21
+302070,0,0,0,21
+302071,0,0,0,21
+302072,0,0,0,21
+302073,0,0,0,21
+302074,0,0,0,21
+302075,0,0,0,21
+302076,0,0,0,21
+302077,0,0,0,21
+302078,0,0,0,21
+302079,0,0,0,21
+302080,0,0,0,21
+302081,0,0,0,21
+302082,0,0,0,21
+302083,0,0,0,21
+302084,0,0,0,21
+302085,0,0,0,21
+302086,0,0,0,21
+302087,0,0,0,21
+302088,0,0,0,21
+302089,0,0,0,21
+302090,0,0,0,21
+302091,0,365885.5682,903516.5772,21
+302092,0,0,0,21
+302093,0,0,0,21
+302094,0,0,0,21
+302095,330811.5096,0,0,21
+302096,0,0,0,21
+302097,0,0,0,21
+302098,0,0,0,21
+302099,0,0,0,21
+302100,0,0,0,21
+302101,0,0,0,21
+302102,0,0,0,21
+302103,0,0,0,21
+302104,0,0,0,21
+302105,0,0,0,21
+302106,0,0,0,21
+302107,0,0,0,21
+302108,0,0,0,21
+302109,0,0,0,21
+302110,0,0,0,21
+302111,0,0,0,21
+302112,0,0,0,21
+302113,0,0,0,21
+302114,0,0,0,21
+302115,0,0,0,21
+302116,0,0,0,21
+302117,0,0,0,21
+302118,0,0,0,21
+302119,0,0,0,21
+302120,0,0,0,21
+302121,0,0,0,21
+302122,0,0,0,21
+302123,0,0,0,21
+302124,0,0,0,21
+302125,0,0,0,21
+302126,0,366336.2803,882269.285,21
+302127,0,0,0,21
+302128,0,0,0,21
+302129,0,0,0,21
+302130,0,0,0,21
+302131,331807.2136,0,0,21
+302132,0,0,0,21
+302133,0,0,0,21
+302134,0,0,0,21
+302135,0,0,0,21
+302136,0,0,0,21
+302137,0,0,0,21
+302138,0,0,0,21
+302139,0,0,0,21
+302140,0,0,0,21
+302141,0,0,0,21
+302142,0,0,0,21
+302143,0,0,0,21
+302144,0,0,0,21
+302145,0,0,0,21
+302146,0,0,0,21
+302147,0,0,0,21
+302148,0,0,0,21
+302149,0,0,0,21
+302150,0,0,0,21
+302151,0,0,0,21
+302152,0,0,0,21
+302153,0,0,0,21
+302154,0,0,0,21
+302155,0,0,0,21
+302156,0,0,0,21
+302157,0,0,0,21
+302158,0,0,0,21
+302159,0,0,0,21
+302160,0,0,0,21
+302161,0,366297.53,863023.964,21
+302162,0,0,0,21
+302163,0,0,0,21
+302164,0,0,0,21
+302165,0,0,0,21
+302166,0,0,0,21
+302167,332498.4569,0,0,21
+302168,0,0,0,21
+302169,0,0,0,21
+302170,0,0,0,21
+302171,0,0,0,21
+302172,0,0,0,21
+302173,0,0,0,21
+302174,0,0,0,21
+302175,0,0,0,21
+302176,0,0,0,21
+302177,0,0,0,21
+302178,0,0,0,21
+302179,0,0,0,21
+302180,0,0,0,21
+302181,0,0,0,21
+302182,0,0,0,21
+302183,0,0,0,21
+302184,0,0,0,21
+302185,0,0,0,21
+302186,0,0,0,21
+302187,0,0,0,21
+302188,0,0,0,21
+302189,0,0,0,21
+302190,0,0,0,21
+302191,0,0,0,21
+302192,0,0,0,21
+302193,0,0,0,21
+302194,0,0,0,21
+302195,0,0,0,21
+302196,0,366281.1996,845513.7362,21
+302197,0,0,0,21
+302198,0,0,0,21
+302199,0,0,0,21
+302200,0,0,0,21
+302201,0,0,0,21
+302202,0,0,0,21
+302203,333481.1021,0,0,21
+302204,0,0,0,21
+302205,0,0,0,21
+302206,0,0,0,21
+302207,0,0,0,21
+302208,0,0,0,21
+302209,0,0,0,21
+302210,0,0,0,21
+302211,0,0,0,21
+302212,0,0,0,21
+302213,0,0,0,21
+302214,0,0,0,21
+302215,0,0,0,21
+302216,0,0,0,21
+302217,0,0,0,21
+302218,0,0,0,21
+302219,0,0,0,21
+302220,0,0,0,21
+302221,0,0,0,21
+302222,0,0,0,21
+302223,0,0,0,21
+302224,0,0,0,21
+302225,0,0,0,21
+302226,0,0,0,21
+302227,0,0,0,21
+302228,0,0,0,21
+302229,0,0,0,21
+302230,0,0,0,21
+302231,0,366441.9316,829527.7585,21
+302232,0,0,0,21
+302233,0,0,0,21
+302234,0,0,0,21
+302235,0,0,0,21
+302236,0,0,0,21
+302237,0,0,0,21
+302238,0,0,0,21
+302239,334922.3555,0,0,21
+302240,0,0,0,21
+302241,0,0,0,21
+302242,0,0,0,21
+302243,0,0,0,21
+302244,0,0,0,21
+302245,0,0,0,21
+302246,0,0,0,21
+302247,0,0,0,21
+302248,0,0,0,21
+302249,0,0,0,21
+302250,0,0,0,21
+302251,0,0,0,21
+302252,0,0,0,21
+302253,0,0,0,21
+302254,0,0,0,21
+302255,0,0,0,21
+302256,0,0,0,21
+302257,0,0,0,21
+302258,0,0,0,21
+302259,0,0,0,21
+302260,0,0,0,21
+302261,0,0,0,21
+302262,0,0,0,21
+302263,0,0,0,21
+302264,0,0,0,21
+302265,0,0,0,21
+302266,0,366326.8268,814816.0377,21
+302267,0,0,0,21
+302268,0,0,0,21
+302269,0,0,0,21
+302270,0,0,0,21
+302271,0,0,0,21
+302272,0,0,0,21
+302273,0,0,0,21
+302274,0,0,0,21
+302275,334388.5443,0,0,21
+302276,0,0,0,21
+302277,0,0,0,21
+302278,0,0,0,21
+302279,0,0,0,21
+302280,0,0,0,15.6
+302281,0,0,0,15.6
+302282,0,0,0,15.6
+302283,0,0,0,15.6
+302284,0,0,0,15.6
+302285,0,0,0,15.6
+302286,0,0,0,15.6
+302287,0,0,0,15.6
+302288,0,0,0,15.6
+302289,0,0,0,15.6
+302290,0,0,0,15.6
+302291,0,0,0,15.6
+302292,0,0,0,15.6
+302293,0,0,0,15.6
+302294,0,0,0,15.6
+302295,0,0,0,15.6
+302296,0,0,0,15.6
+302297,0,0,0,15.6
+302298,0,0,0,15.6
+302299,0,0,0,15.6
+302300,0,0,0,15.6
+302301,0,367159.6159,801337.3875,15.6
+302302,0,0,0,15.6
+302303,0,0,0,15.6
+302304,0,0,0,15.6
+302305,0,0,0,15.6
+302306,0,0,0,15.6
+302307,0,0,0,15.6
+302308,0,0,0,15.6
+302309,0,0,0,15.6
+302310,0,0,0,15.6
+302311,334800.6752,0,0,15.6
+302312,0,0,0,15.6
+302313,0,0,0,15.6
+302314,0,0,0,15.6
+302315,0,0,0,15.6
+302316,0,0,0,15.6
+302317,0,0,0,15.6
+302318,0,0,0,15.6
+302319,0,0,0,15.6
+302320,0,0,0,15.6
+302321,0,0,0,15.6
+302322,0,0,0,15.6
+302323,0,0,0,15.6
+302324,0,0,0,15.6
+302325,0,0,0,15.6
+302326,0,0,0,15.6
+302327,0,0,0,15.6
+302328,0,0,0,15.6
+302329,0,0,0,15.6
+302330,0,0,0,15.6
+302331,0,0,0,15.6
+302332,0,0,0,15.6
+302333,0,0,0,15.6
+302334,0,0,0,15.6
+302335,0,0,0,15.6
+302336,0,0,0,15.6
+302337,0,367516.7053,788960.1434,15.6
+302338,0,0,0,15.6
+302339,0,0,0,15.6
+302340,0,0,0,15.6
+302341,0,0,0,15.6
+302342,0,0,0,15.6
+302343,0,0,0,15.6
+302344,0,0,0,15.6
+302345,0,0,0,15.6
+302346,0,0,0,15.6
+302347,335410.454,0,0,15.6
+302348,0,0,0,15.6
+302349,0,0,0,15.6
+302350,0,0,0,15.6
+302351,0,0,0,15.6
+302352,0,0,0,15.6
+302353,0,0,0,15.6
+302354,0,0,0,15.6
+302355,0,0,0,15.6
+302356,0,0,0,15.6
+302357,0,0,0,15.6
+302358,0,0,0,15.6
+302359,0,0,0,15.6
+302360,0,0,0,15.6
+302361,0,0,0,15.6
+302362,0,0,0,15.6
+302363,0,0,0,15.6
+302364,0,0,0,15.6
+302365,0,0,0,15.6
+302366,0,0,0,15.6
+302367,0,0,0,15.6
+302368,0,0,0,15.6
+302369,0,0,0,15.6
+302370,0,0,0,15.6
+302371,0,0,0,15.6
+302372,0,0,0,15.6
+302373,0,367729.7799,777840.7835,15.6
+302374,0,0,0,15.6
+302375,0,0,0,15.6
+302376,0,0,0,15.6
+302377,0,0,0,15.6
+302378,0,0,0,15.6
+302379,0,0,0,15.6
+302380,0,0,0,15.6
+302381,0,0,0,15.6
+302382,0,0,0,15.6
+302383,336765.3597,0,0,15.6
+302384,0,0,0,15.6
+302385,0,0,0,15.6
+302386,0,0,0,15.6
+302387,0,0,0,15.6
+302388,0,0,0,15.6
+302389,0,0,0,15.6
+302390,0,0,0,15.6
+302391,0,0,0,15.6
+302392,0,0,0,15.6
+302393,0,0,0,15.6
+302394,0,0,0,15.6
+302395,0,0,0,15.6
+302396,0,0,0,15.6
+302397,0,0,0,15.6
+302398,0,0,0,15.6
+302399,0,0,0,15.6
+302400,0,0,0,15.6
+302401,0,0,0,15.6
+302402,0,0,0,15.6
+302403,0,0,0,15.6
+302404,0,0,0,15.6
+302405,0,0,0,15.6
+302406,0,0,0,15.6
+302407,0,0,0,15.6
+302408,0,0,0,15.6
+302409,0,367857.9996,767839.2852,15.6
+302410,0,0,0,15.6
+302411,0,0,0,15.6
+302412,0,0,0,15.6
+302413,0,0,0,15.6
+302414,0,0,0,15.6
+302415,0,0,0,15.6
+302416,0,0,0,15.6
+302417,0,0,0,15.6
+302418,0,0,0,15.6
+302419,337525.6005,0,0,15.6
+302420,0,0,0,15.6
+302421,0,0,0,15.6
+302422,0,0,0,15.6
+302423,0,0,0,15.6
+302424,0,0,0,15.6
+302425,0,0,0,15.6
+302426,0,0,0,15.6
+302427,0,0,0,15.6
+302428,0,0,0,15.6
+302429,0,0,0,15.6
+302430,0,0,0,15.6
+302431,0,0,0,15.6
+302432,0,0,0,15.6
+302433,0,0,0,15.6
+302434,0,0,0,15.6
+302435,0,0,0,15.6
+302436,0,0,0,15.6
+302437,0,0,0,15.6
+302438,0,0,0,15.6
+302439,0,0,0,15.6
+302440,0,0,0,15.6
+302441,0,0,0,15.6
+302442,0,0,0,15.6
+302443,0,0,0,15.6
+302444,0,0,0,15.6
+302445,0,367943.2104,758648.7155,15.6
+302446,0,0,0,15.6
+302447,0,0,0,15.6
+302448,0,0,0,15.6
+302449,0,0,0,15.6
+302450,0,0,0,15.6
+302451,0,0,0,15.6
+302452,0,0,0,15.6
+302453,0,0,0,15.6
+302454,0,0,0,15.6
+302455,0,0,0,15.6
+302456,337951.8691,0,0,15.6
+302457,0,0,0,15.6
+302458,0,0,0,15.6
+302459,0,0,0,15.6
+302460,0,0,0,15.6
+302461,0,0,0,15.6
+302462,0,0,0,15.6
+302463,0,0,0,15.6
+302464,0,0,0,15.6
+302465,0,0,0,15.6
+302466,0,0,0,15.6
+302467,0,0,0,15.6
+302468,0,0,0,15.6
+302469,0,0,0,15.6
+302470,0,0,0,15.6
+302471,0,0,0,15.6
+302472,0,0,0,15.6
+302473,0,0,0,15.6
+302474,0,0,0,15.6
+302475,0,0,0,15.6
+302476,0,0,0,15.6
+302477,0,0,0,15.6
+302478,0,0,0,15.6
+302479,0,0,0,15.6
+302480,0,0,0,15.6
+302481,0,367561.9727,750229.2298,15.6
+302482,0,0,0,15.6
+302483,0,0,0,15.6
+302484,0,0,0,15.6
+302485,0,0,0,15.6
+302486,0,0,0,15.6
+302487,0,0,0,15.6
+302488,0,0,0,15.6
+302489,0,0,0,15.6
+302490,0,0,0,15.6
+302491,0,0,0,15.6
+302492,0,0,0,15.6
+302493,338271.78,0,0,15.6
+302494,0,0,0,15.6
+302495,0,0,0,15.6
+302496,0,0,0,15.6
+302497,0,0,0,15.6
+302498,0,0,0,15.6
+302499,0,0,0,15.6
+302500,0,0,0,15.6
+302501,0,0,0,15.6
+302502,0,0,0,15.6
+302503,0,0,0,15.6
+302504,0,0,0,15.6
+302505,0,0,0,15.6
+302506,0,0,0,15.6
+302507,0,0,0,15.6
+302508,0,0,0,15.6
+302509,0,0,0,15.6
+302510,0,0,0,15.6
+302511,0,0,0,15.6
+302512,0,0,0,15.6
+302513,0,0,0,15.6
+302514,0,0,0,15.6
+302515,0,0,742484.5365,15.6
+302516,0,0,0,15.6
+302517,0,367610.8169,0,15.6
+302518,0,0,0,15.6
+302519,0,0,0,15.6
+302520,0,0,0,15.6
+302521,0,0,0,15.6
+302522,0,0,0,15.6
+302523,0,0,0,15.6
+302524,0,0,0,15.6
+302525,0,0,0,15.6
+302526,0,0,0,15.6
+302527,0,0,0,15.6
+302528,0,0,0,15.6
+302529,0,0,0,15.6
+302530,338472.7848,0,0,15.6
+302531,0,0,0,15.6
+302532,0,0,0,15.6
+302533,0,0,0,15.6
+302534,0,0,0,15.6
+302535,0,0,0,15.6
+302536,0,0,0,15.6
+302537,0,0,0,15.6
+302538,0,0,0,15.6
+302539,0,0,0,15.6
+302540,0,0,0,15.6
+302541,0,0,0,15.6
+302542,0,0,0,15.6
+302543,0,0,0,15.6
+302544,0,0,0,15.6
+302545,0,0,0,15.6
+302546,0,0,0,15.6
+302547,0,0,0,15.6
+302548,0,0,0,15.6
+302549,0,0,735079.9209,15.6
+302550,0,0,0,15.6
+302551,0,0,0,15.6
+302552,0,0,0,15.6
+302553,0,367686.4068,0,15.6
+302554,0,0,0,15.6
+302555,0,0,0,15.6
+302556,0,0,0,15.6
+302557,0,0,0,15.6
+302558,0,0,0,15.6
+302559,0,0,0,15.6
+302560,0,0,0,15.6
+302561,0,0,0,15.6
+302562,0,0,0,15.6
+302563,0,0,0,15.6
+302564,0,0,0,15.6
+302565,338577.721,0,0,15.6
+302566,0,0,0,15.6
+302567,0,0,0,15.6
+302568,0,0,0,15.6
+302569,0,0,0,15.6
+302570,0,0,0,15.6
+302571,0,0,0,15.6
+302572,0,0,0,15.6
+302573,0,0,0,15.6
+302574,0,0,0,15.6
+302575,0,0,0,15.6
+302576,0,0,0,15.6
+302577,0,0,0,15.6
+302578,0,0,0,15.6
+302579,0,0,0,15.6
+302580,0,0,0,15.6
+302581,0,0,0,15.6
+302582,0,0,0,15.6
+302583,0,0,727982.8018,15.6
+302584,0,0,0,15.6
+302585,0,0,0,15.6
+302586,0,0,0,15.6
+302587,0,0,0,15.6
+302588,0,0,0,15.6
+302589,0,367760.0789,0,15.6
+302590,0,0,0,15.6
+302591,0,0,0,15.6
+302592,0,0,0,15.6
+302593,0,0,0,15.6
+302594,0,0,0,15.6
+302595,0,0,0,15.6
+302596,0,0,0,15.6
+302597,0,0,0,15.6
+302598,0,0,0,15.6
+302599,0,0,0,15.6
+302600,338695.2395,0,0,15.6
+302601,0,0,0,15.6
+302602,0,0,0,15.6
+302603,0,0,0,15.6
+302604,0,0,0,15.6
+302605,0,0,0,15.6
+302606,0,0,0,15.6
+302607,0,0,0,15.6
+302608,0,0,0,15.6
+302609,0,0,0,15.6
+302610,0,0,0,15.6
+302611,0,0,0,15.6
+302612,0,0,0,15.6
+302613,0,0,0,15.6
+302614,0,0,0,15.6
+302615,0,0,0,15.6
+302616,0,0,0,15.6
+302617,0,0,721679.4179,15.6
+302618,0,0,0,15.6
+302619,0,0,0,15.6
+302620,0,0,0,15.6
+302621,0,0,0,15.6
+302622,0,0,0,15.6
+302623,0,367771.8405,0,15.6
+302624,0,0,0,15.6
+302625,0,0,0,15.6
+302626,0,0,0,15.6
+302627,0,0,0,15.6
+302628,0,0,0,15.6
+302629,0,0,0,15.6
+302630,0,0,0,15.6
+302631,0,0,0,15.6
+302632,0,0,0,15.6
+302633,0,0,0,15.6
+302634,0,0,0,15.6
+302635,338788.8764,0,0,15.6
+302636,0,0,0,15.6
+302637,0,0,0,15.6
+302638,0,0,0,15.6
+302639,0,0,0,15.6
+302640,0,0,0,17.8
+302641,0,0,0,17.8
+302642,0,0,0,17.8
+302643,0,0,0,17.8
+302644,0,0,0,17.8
+302645,0,0,0,17.8
+302646,0,0,0,17.8
+302647,0,0,0,17.8
+302648,0,0,0,17.8
+302649,0,0,0,17.8
+302650,0,0,0,17.8
+302651,0,0,716044.1141,17.8
+302652,0,0,0,17.8
+302653,0,0,0,17.8
+302654,0,0,0,17.8
+302655,0,0,0,17.8
+302656,0,0,0,17.8
+302657,0,367768.733,0,17.8
+302658,0,0,0,17.8
+302659,0,0,0,17.8
+302660,0,0,0,17.8
+302661,0,0,0,17.8
+302662,0,0,0,17.8
+302663,0,0,0,17.8
+302664,0,0,0,17.8
+302665,0,0,0,17.8
+302666,0,0,0,17.8
+302667,0,0,0,17.8
+302668,0,0,0,17.8
+302669,0,0,0,17.8
+302670,338847.1177,0,0,17.8
+302671,0,0,0,17.8
+302672,0,0,0,17.8
+302673,0,0,0,17.8
+302674,0,0,0,17.8
+302675,0,0,0,17.8
+302676,0,0,0,17.8
+302677,0,0,0,17.8
+302678,0,0,0,17.8
+302679,0,0,0,17.8
+302680,0,0,0,17.8
+302681,0,0,0,17.8
+302682,0,0,0,17.8
+302683,0,0,0,17.8
+302684,0,0,0,17.8
+302685,0,0,710928.099,17.8
+302686,0,0,0,17.8
+302687,0,0,0,17.8
+302688,0,0,0,17.8
+302689,0,0,0,17.8
+302690,0,0,0,17.8
+302691,0,367836.5864,0,17.8
+302692,0,0,0,17.8
+302693,0,0,0,17.8
+302694,0,0,0,17.8
+302695,0,0,0,17.8
+302696,0,0,0,17.8
+302697,0,0,0,17.8
+302698,0,0,0,17.8
+302699,0,0,0,17.8
+302700,0,0,0,20
+302701,0,0,0,20
+302702,0,0,0,20
+302703,0,0,0,20
+302704,0,0,0,20
+302705,338917.3801,0,0,20
+302706,0,0,0,20
+302707,0,0,0,20
+302708,0,0,0,20
+302709,0,0,0,20
+302710,0,0,0,20
+302711,0,0,0,20
+302712,0,0,0,20
+302713,0,0,0,20
+302714,0,0,0,20
+302715,0,0,0,20
+302716,0,0,0,20
+302717,0,0,0,20
+302718,0,0,0,20
+302719,0,0,0,20
+302720,0,0,0,20
+302721,0,0,706049.0952,20
+302722,0,0,0,20
+302723,0,0,0,20
+302724,0,0,0,20
+302725,0,0,0,20
+302726,0,0,0,20
+302727,0,367814.394,0,20
+302728,0,0,0,20
+302729,0,0,0,20
+302730,0,0,0,20
+302731,0,0,0,20
+302732,0,0,0,20
+302733,0,0,0,20
+302734,0,0,0,20
+302735,0,0,0,20
+302736,0,0,0,20
+302737,0,0,0,20
+302738,0,0,0,20
+302739,0,0,0,20
+302740,0,0,0,20
+302741,0,0,0,20
+302742,338925.2565,0,0,20
+302743,0,0,0,20
+302744,0,0,0,20
+302745,0,0,0,20
+302746,0,0,0,20
+302747,0,0,0,20
+302748,0,0,0,20
+302749,0,0,0,20
+302750,0,0,0,20
+302751,0,0,0,20
+302752,0,0,0,20
+302753,0,0,0,20
+302754,0,0,0,20
+302755,0,0,0,20
+302756,0,0,701352.5894,20
+302757,0,0,0,20
+302758,0,0,0,20
+302759,0,0,0,20
+302760,0,0,0,21
+302761,0,0,0,21
+302762,0,0,0,21
+302763,0,367776.8751,0,21
+302764,0,0,0,21
+302765,0,0,0,21
+302766,0,0,0,21
+302767,0,0,0,21
+302768,0,0,0,21
+302769,0,0,0,21
+302770,0,0,0,21
+302771,0,0,0,21
+302772,0,0,0,21
+302773,0,0,0,21
+302774,0,0,0,21
+302775,0,0,0,21
+302776,0,0,0,21
+302777,0,0,0,21
+302778,338942.9902,0,0,21
+302779,0,0,0,21
+302780,0,0,0,21
+302781,0,0,0,21
+302782,0,0,0,21
+302783,0,0,0,21
+302784,0,0,0,21
+302785,0,0,0,21
+302786,0,0,0,21
+302787,0,0,0,21
+302788,0,0,0,21
+302789,0,0,0,21
+302790,0,0,0,21
+302791,0,0,697491.8946,21
+302792,0,0,0,21
+302793,0,0,0,21
+302794,0,0,0,21
+302795,0,0,0,21
+302796,0,0,0,21
+302797,0,0,0,21
+302798,0,0,0,21
+302799,0,367731.9077,0,21
+302800,0,0,0,21
+302801,0,0,0,21
+302802,0,0,0,21
+302803,0,0,0,21
+302804,0,0,0,21
+302805,0,0,0,21
+302806,0,0,0,21
+302807,0,0,0,21
+302808,0,0,0,21
+302809,0,0,0,21
+302810,0,0,0,21
+302811,0,0,0,21
+302812,0,0,0,21
+302813,0,0,0,21
+302814,338915.7273,0,0,21
+302815,0,0,0,21
+302816,0,0,0,21
+302817,0,0,0,21
+302818,0,0,0,21
+302819,0,0,0,21
+302820,0,0,0,21
+302821,0,0,0,21
+302822,0,0,0,21
+302823,0,0,0,21
+302824,0,0,0,21
+302825,0,0,0,21
+302826,0,0,693751.0223,21
+302827,0,0,0,21
+302828,0,0,0,21
+302829,0,0,0,21
+302830,0,0,0,21
+302831,0,0,0,21
+302832,0,0,0,21
+302833,0,0,0,21
+302834,0,367774.7837,0,21
+302835,0,0,0,21
+302836,0,0,0,21
+302837,0,0,0,21
+302838,0,0,0,21
+302839,0,0,0,21
+302840,0,0,0,21
+302841,0,0,0,21
+302842,0,0,0,21
+302843,0,0,0,21
+302844,0,0,0,21
+302845,0,0,0,21
+302846,0,0,0,21
+302847,0,0,0,21
+302848,0,0,0,21
+302849,0,0,0,21
+302850,335711.6265,0,0,21
+302851,0,0,0,21
+302852,0,0,0,21
+302853,0,0,0,21
+302854,0,0,0,21
+302855,0,0,0,21
+302856,0,0,0,21
+302857,0,0,0,21
+302858,0,0,0,21
+302859,0,0,0,21
+302860,0,0,0,21
+302861,0,0,690196.2221,21
+302862,0,0,0,21
+302863,0,0,0,21
+302864,0,0,0,21
+302865,0,0,0,21
+302866,0,0,0,21
+302867,0,0,0,21
+302868,0,0,0,21
+302869,0,367818.3768,0,21
+302870,0,0,0,21
+302871,0,0,0,21
+302872,0,0,0,21
+302873,0,0,0,21
+302874,0,0,0,21
+302875,0,0,0,21
+302876,0,0,0,21
+302877,0,0,0,21
+302878,0,0,0,21
+302879,0,0,0,21
+302880,0,0,0,21
+302881,0,0,0,21
+302882,0,0,0,21
+302883,0,0,0,21
+302884,0,0,0,21
+302885,0,0,0,21
+302886,334286.6045,0,0,21
+302887,0,0,0,21
+302888,0,0,0,21
+302889,0,0,0,21
+302890,0,0,0,21
+302891,0,0,0,21
+302892,0,0,0,21
+302893,0,0,0,21
+302894,0,0,0,21
+302895,0,0,0,21
+302896,0,0,686761.7046,21
+302897,0,0,0,21
+302898,0,0,0,21
+302899,0,0,0,21
+302900,0,0,0,21
+302901,0,0,0,21
+302902,0,0,0,21
+302903,0,0,0,21
+302904,0,367824.0798,0,21
+302905,0,0,0,21
+302906,0,0,0,21
+302907,0,0,0,21
+302908,0,0,0,21
+302909,0,0,0,21
+302910,0,0,0,21
+302911,0,0,0,21
+302912,0,0,0,21
+302913,0,0,0,21
+302914,0,0,0,21
+302915,0,0,0,21
+302916,0,0,0,21
+302917,0,0,0,21
+302918,0,0,0,21
+302919,0,0,0,21
+302920,0,0,0,21
+302921,0,0,0,21
+302922,335498.3106,0,0,21
+302923,0,0,0,21
+302924,0,0,0,21
+302925,0,0,0,21
+302926,0,0,0,21
+302927,0,0,0,21
+302928,0,0,0,21
+302929,0,0,0,21
+302930,0,0,0,21
+302931,0,0,683238.3254,21
+302932,0,0,0,21
+302933,0,0,0,21
+302934,0,0,0,21
+302935,0,0,0,21
+302936,0,0,0,21
+302937,0,0,0,21
+302938,0,0,0,21
+302939,0,367820.7276,0,21
+302940,0,0,0,21
+302941,0,0,0,21
+302942,0,0,0,21
+302943,0,0,0,21
+302944,0,0,0,21
+302945,0,0,0,21
+302946,0,0,0,21
+302947,0,0,0,21
+302948,0,0,0,21
+302949,0,0,0,21
+302950,0,0,0,21
+302951,0,0,0,21
+302952,0,0,0,21
+302953,0,0,0,21
+302954,0,0,0,21
+302955,0,0,0,21
+302956,0,0,0,21
+302957,0,0,0,21
+302958,336012.5299,0,0,21
+302959,0,0,0,21
+302960,0,0,0,21
+302961,0,0,0,21
+302962,0,0,0,21
+302963,0,0,0,21
+302964,0,0,0,21
+302965,0,0,0,21
+302966,0,0,680577.38,21
+302967,0,0,0,21
+302968,0,0,0,21
+302969,0,0,0,21
+302970,0,0,0,21
+302971,0,0,0,21
+302972,0,0,0,21
+302973,0,0,0,21
+302974,0,364957.3429,0,21
+302975,0,0,0,21
+302976,0,0,0,21
+302977,0,0,0,21
+302978,0,0,0,21
+302979,0,0,0,21
+302980,0,0,0,21
+302981,0,0,0,21
+302982,0,0,0,21
+302983,0,0,0,21
+302984,0,0,0,21
+302985,0,0,0,21
+302986,0,0,0,21
+302987,0,0,0,21
+302988,0,0,0,21
+302989,0,0,0,21
+302990,0,0,0,21
+302991,0,0,0,21
+302992,0,0,0,21
+302993,0,0,0,21
+302994,335569.6868,0,0,21
+302995,0,0,0,21
+302996,0,0,0,21
+302997,0,0,0,21
+302998,0,0,0,21
+302999,0,0,0,21
+303000,0,0,0,21
+303001,0,0,678627.397,21
+303002,0,0,0,21
+303003,0,0,0,21
+303004,0,0,0,21
+303005,0,0,0,21
+303006,0,0,0,21
+303007,0,0,0,21
+303008,0,0,0,21
+303009,0,0,0,21
+303010,0,366170.8162,0,21
+303011,0,0,0,21
+303012,0,0,0,21
+303013,0,0,0,21
+303014,0,0,0,21
+303015,0,0,0,21
+303016,0,0,0,21
+303017,0,0,0,21
+303018,0,0,0,21
+303019,0,0,0,21
+303020,0,0,0,21
+303021,0,0,0,21
+303022,0,0,0,21
+303023,0,0,0,21
+303024,0,0,0,21
+303025,0,0,0,21
+303026,0,0,0,21
+303027,0,0,0,21
+303028,0,0,0,21
+303029,0,0,0,21
+303030,335698.2137,0,0,21
+303031,0,0,0,21
+303032,0,0,0,21
+303033,0,0,0,21
+303034,0,0,0,21
+303035,0,0,0,21
+303036,0,0,676380.5148,21
+303037,0,0,0,21
+303038,0,0,0,21
+303039,0,0,0,21
+303040,0,0,0,21
+303041,0,0,0,21
+303042,0,0,0,21
+303043,0,0,0,21
+303044,0,0,0,21
+303045,0,0,0,21
+303046,0,366390.0982,0,21
+303047,0,0,0,21
+303048,0,0,0,21
+303049,0,0,0,21
+303050,0,0,0,21
+303051,0,0,0,21
+303052,0,0,0,21
+303053,0,0,0,21
+303054,0,0,0,21
+303055,0,0,0,21
+303056,0,0,0,21
+303057,0,0,0,21
+303058,0,0,0,21
+303059,0,0,0,21
+303060,0,0,0,21
+303061,0,0,0,21
+303062,0,0,0,21
+303063,0,0,0,21
+303064,0,0,0,21
+303065,0,0,0,21
+303066,335702.0842,0,0,21
+303067,0,0,0,21
+303068,0,0,0,21
+303069,0,0,0,21
+303070,0,0,0,21
+303071,0,0,674432.13,21
+303072,0,0,0,21
+303073,0,0,0,21
+303074,0,0,0,21
+303075,0,0,0,21
+303076,0,0,0,21
+303077,0,0,0,21
+303078,0,0,0,21
+303079,0,0,0,21
+303080,0,0,0,21
+303081,0,0,0,21
+303082,0,366886.0455,0,21
+303083,0,0,0,21
+303084,0,0,0,21
+303085,0,0,0,21
+303086,0,0,0,21
+303087,0,0,0,21
+303088,0,0,0,21
+303089,0,0,0,21
+303090,0,0,0,21
+303091,0,0,0,21
+303092,0,0,0,21
+303093,0,0,0,21
+303094,0,0,0,21
+303095,0,0,0,21
+303096,0,0,0,21
+303097,0,0,0,21
+303098,0,0,0,21
+303099,0,0,0,21
+303100,0,0,0,21
+303101,0,0,0,21
+303102,336072.8491,0,0,21
+303103,0,0,0,21
+303104,0,0,0,21
+303105,0,0,0,21
+303106,0,0,672622.3385,21
+303107,0,0,0,21
+303108,0,0,0,21
+303109,0,0,0,21
+303110,0,0,0,21
+303111,0,0,0,21
+303112,0,0,0,21
+303113,0,0,0,21
+303114,0,0,0,21
+303115,0,0,0,21
+303116,0,0,0,21
+303117,0,0,0,21
+303118,0,366071.4108,0,21
+303119,0,0,0,21
+303120,0,0,0,21
+303121,0,0,0,21
+303122,0,0,0,21
+303123,0,0,0,21
+303124,0,0,0,21
+303125,0,0,0,21
+303126,0,0,0,21
+303127,0,0,0,21
+303128,0,0,0,21
+303129,0,0,0,21
+303130,0,0,0,21
+303131,0,0,0,21
+303132,0,0,0,21
+303133,0,0,0,21
+303134,0,0,0,21
+303135,0,0,0,21
+303136,0,0,0,21
+303137,0,0,0,21
+303138,0,0,0,21
+303139,336215.8767,0,0,21
+303140,0,0,0,21
+303141,0,0,0,21
+303142,0,0,670918.5713,21
+303143,0,0,0,21
+303144,0,0,0,21
+303145,0,0,0,21
+303146,0,0,0,21
+303147,0,0,0,21
+303148,0,0,0,21
+303149,0,0,0,21
+303150,0,0,0,21
+303151,0,0,0,21
+303152,0,0,0,21
+303153,0,0,0,21
+303154,0,366177.5045,0,21
+303155,0,0,0,21
+303156,0,0,0,21
+303157,0,0,0,21
+303158,0,0,0,21
+303159,0,0,0,21
+303160,0,0,0,21
+303161,0,0,0,21
+303162,0,0,0,21
+303163,0,0,0,21
+303164,0,0,0,21
+303165,0,0,0,21
+303166,0,0,0,21
+303167,0,0,0,21
+303168,0,0,0,21
+303169,0,0,0,21
+303170,0,0,0,21
+303171,0,0,0,21
+303172,0,0,0,21
+303173,0,0,0,21
+303174,0,0,0,21
+303175,0,0,0,21
+303176,335919.3082,0,0,21
+303177,0,0,0,21
+303178,0,0,669388.5362,21
+303179,0,0,0,21
+303180,0,0,0,21
+303181,0,0,0,21
+303182,0,0,0,21
+303183,0,0,0,21
+303184,0,0,0,21
+303185,0,0,0,21
+303186,0,0,0,21
+303187,0,0,0,21
+303188,0,0,0,21
+303189,0,0,0,21
+303190,0,366126.4026,0,21
+303191,0,0,0,21
+303192,0,0,0,21
+303193,0,0,0,21
+303194,0,0,0,21
+303195,0,0,0,21
+303196,0,0,0,21
+303197,0,0,0,21
+303198,0,0,0,21
+303199,0,0,0,21
+303200,0,0,0,21
+303201,0,0,0,21
+303202,0,0,0,21
+303203,0,0,0,21
+303204,0,0,0,21
+303205,0,0,0,21
+303206,0,0,0,21
+303207,0,0,0,21
+303208,0,0,0,21
+303209,0,0,0,21
+303210,0,0,0,21
+303211,0,0,0,21
+303212,0,0,0,21
+303213,336361.6653,0,668332.8223,21
+303214,0,0,0,21
+303215,0,0,0,21
+303216,0,0,0,21
+303217,0,0,0,21
+303218,0,0,0,21
+303219,0,0,0,21
+303220,0,0,0,21
+303221,0,0,0,21
+303222,0,0,0,21
+303223,0,0,0,21
+303224,0,0,0,21
+303225,0,0,0,21
+303226,0,366158.0135,0,21
+303227,0,0,0,21
+303228,0,0,0,21
+303229,0,0,0,21
+303230,0,0,0,21
+303231,0,0,0,21
+303232,0,0,0,21
+303233,0,0,0,21
+303234,0,0,0,21
+303235,0,0,0,21
+303236,0,0,0,21
+303237,0,0,0,21
+303238,0,0,0,21
+303239,0,0,0,21
+303240,0,0,0,21
+303241,0,0,0,21
+303242,0,0,0,21
+303243,0,0,0,21
+303244,0,0,0,21
+303245,0,0,0,21
+303246,0,0,0,21
+303247,0,0,0,21
+303248,0,0,667555.5917,21
+303249,336261.2176,0,0,21
+303250,0,0,0,21
+303251,0,0,0,21
+303252,0,0,0,21
+303253,0,0,0,21
+303254,0,0,0,21
+303255,0,0,0,21
+303256,0,0,0,21
+303257,0,0,0,21
+303258,0,0,0,21
+303259,0,0,0,21
+303260,0,0,0,21
+303261,0,0,0,21
+303262,0,366187.9858,0,21
+303263,0,0,0,21
+303264,0,0,0,21
+303265,0,0,0,21
+303266,0,0,0,21
+303267,0,0,0,21
+303268,0,0,0,21
+303269,0,0,0,21
+303270,0,0,0,21
+303271,0,0,0,21
+303272,0,0,0,21
+303273,0,0,0,21
+303274,0,0,0,21
+303275,0,0,0,21
+303276,0,0,0,21
+303277,0,0,0,21
+303278,0,0,0,21
+303279,0,0,0,21
+303280,0,0,0,21
+303281,0,0,0,21
+303282,0,0,0,21
+303283,0,0,666715.3807,21
+303284,0,0,0,21
+303285,335894.4921,0,0,21
+303286,0,0,0,21
+303287,0,0,0,21
+303288,0,0,0,21
+303289,0,0,0,21
+303290,0,0,0,21
+303291,0,0,0,21
+303292,0,0,0,21
+303293,0,0,0,21
+303294,0,0,0,21
+303295,0,0,0,21
+303296,0,0,0,21
+303297,0,0,0,21
+303298,0,366196.598,0,21
+303299,0,0,0,21
+303300,0,0,0,21
+303301,0,0,0,21
+303302,0,0,0,21
+303303,0,0,0,21
+303304,0,0,0,21
+303305,0,0,0,21
+303306,0,0,0,21
+303307,0,0,0,21
+303308,0,0,0,21
+303309,0,0,0,21
+303310,0,0,0,21
+303311,0,0,0,21
+303312,0,0,0,21
+303313,0,0,0,21
+303314,0,0,0,21
+303315,0,0,0,21
+303316,0,0,0,21
+303317,0,0,0,21
+303318,0,0,665889.7476,21
+303319,0,0,0,21
+303320,0,0,0,21
+303321,335571.4212,0,0,21
+303322,0,0,0,21
+303323,0,0,0,21
+303324,0,0,0,21
+303325,0,0,0,21
+303326,0,0,0,21
+303327,0,0,0,21
+303328,0,0,0,21
+303329,0,0,0,21
+303330,0,0,0,21
+303331,0,0,0,21
+303332,0,0,0,21
+303333,0,0,0,21
+303334,0,365968.5617,0,21
+303335,0,0,0,21
+303336,0,0,0,21
+303337,0,0,0,21
+303338,0,0,0,21
+303339,0,0,0,21
+303340,0,0,0,21
+303341,0,0,0,21
+303342,0,0,0,21
+303343,0,0,0,21
+303344,0,0,0,21
+303345,0,0,0,21
+303346,0,0,0,21
+303347,0,0,0,21
+303348,0,0,0,21
+303349,0,0,0,21
+303350,0,0,0,21
+303351,0,0,0,21
+303352,0,0,0,21
+303353,0,0,665106.5638,21
+303354,0,0,0,21
+303355,0,0,0,21
+303356,0,0,0,21
+303357,335736.437,0,0,21
+303358,0,0,0,21
+303359,0,0,0,21
+303360,0,0,0,21
+303361,0,0,0,21
+303362,0,0,0,21
+303363,0,0,0,21
+303364,0,0,0,21
+303365,0,0,0,21
+303366,0,0,0,21
+303367,0,0,0,21
+303368,0,0,0,21
+303369,0,365933.3321,0,21
+303370,0,0,0,21
+303371,0,0,0,21
+303372,0,0,0,21
+303373,0,0,0,21
+303374,0,0,0,21
+303375,0,0,0,21
+303376,0,0,0,21
+303377,0,0,0,21
+303378,0,0,0,21
+303379,0,0,0,21
+303380,0,0,0,21
+303381,0,0,0,21
+303382,0,0,0,21
+303383,0,0,0,21
+303384,0,0,0,21
+303385,0,0,0,21
+303386,0,0,0,21
+303387,0,0,0,21
+303388,0,0,664367.8077,21
+303389,0,0,0,21
+303390,0,0,0,21
+303391,0,0,0,21
+303392,0,0,0,21
+303393,336208.0805,0,0,21
+303394,0,0,0,21
+303395,0,0,0,21
+303396,0,0,0,21
+303397,0,0,0,21
+303398,0,0,0,21
+303399,0,0,0,21
+303400,0,0,0,21
+303401,0,0,0,21
+303402,0,0,0,21
+303403,0,0,0,21
+303404,0,0,0,21
+303405,0,365801.7461,0,21
+303406,0,0,0,21
+303407,0,0,0,21
+303408,0,0,0,21
+303409,0,0,0,21
+303410,0,0,0,21
+303411,0,0,0,21
+303412,0,0,0,21
+303413,0,0,0,21
+303414,0,0,0,21
+303415,0,0,0,21
+303416,0,0,0,21
+303417,0,0,0,21
+303418,0,0,0,21
+303419,0,0,0,21
+303420,0,0,0,21
+303421,0,0,0,21
+303422,0,0,0,21
+303423,0,0,663155.9181,21
+303424,0,0,0,21
+303425,0,0,0,21
+303426,0,0,0,21
+303427,0,0,0,21
+303428,0,0,0,21
+303429,335806.371,0,0,21
+303430,0,0,0,21
+303431,0,0,0,21
+303432,0,0,0,21
+303433,0,0,0,21
+303434,0,0,0,21
+303435,0,0,0,21
+303436,0,0,0,21
+303437,0,0,0,21
+303438,0,0,0,21
+303439,0,0,0,21
+303440,0,0,0,21
+303441,0,365885.6122,0,21
+303442,0,0,0,21
+303443,0,0,0,21
+303444,0,0,0,21
+303445,0,0,0,21
+303446,0,0,0,21
+303447,0,0,0,21
+303448,0,0,0,21
+303449,0,0,0,21
+303450,0,0,0,21
+303451,0,0,0,21
+303452,0,0,0,21
+303453,0,0,0,21
+303454,0,0,0,21
+303455,0,0,0,21
+303456,0,0,0,21
+303457,0,0,0,21
+303458,0,0,662244.0317,21
+303459,0,0,0,21
+303460,0,0,0,21
+303461,0,0,0,21
+303462,0,0,0,21
+303463,0,0,0,21
+303464,0,0,0,21
+303465,335823.6149,0,0,21
+303466,0,0,0,21
+303467,0,0,0,21
+303468,0,0,0,21
+303469,0,0,0,21
+303470,0,0,0,21
+303471,0,0,0,21
+303472,0,0,0,21
+303473,0,0,0,21
+303474,0,0,0,21
+303475,0,0,0,21
+303476,0,0,0,21
+303477,0,365845.9824,0,21
+303478,0,0,0,21
+303479,0,0,0,21
+303480,0,0,0,21
+303481,0,0,0,21
+303482,0,0,0,21
+303483,0,0,0,21
+303484,0,0,0,21
+303485,0,0,0,21
+303486,0,0,0,21
+303487,0,0,0,21
+303488,0,0,0,21
+303489,0,0,0,21
+303490,0,0,0,21
+303491,0,0,0,21
+303492,0,0,0,21
+303493,0,0,662010.6894,21
+303494,0,0,0,21
+303495,0,0,0,21
+303496,0,0,0,21
+303497,0,0,0,21
+303498,0,0,0,21
+303499,0,0,0,21
+303500,0,0,0,21
+303501,335830.4419,0,0,21
+303502,0,0,0,21
+303503,0,0,0,21
+303504,0,0,0,21
+303505,0,0,0,21
+303506,0,0,0,21
+303507,0,0,0,21
+303508,0,0,0,21
+303509,0,0,0,21
+303510,0,0,0,21
+303511,0,0,0,21
+303512,0,0,0,21
+303513,0,365876.6791,0,21
+303514,0,0,0,21
+303515,0,0,0,21
+303516,0,0,0,21
+303517,0,0,0,21
+303518,0,0,0,21
+303519,0,0,0,21
+303520,0,0,0,21
+303521,0,0,0,21
+303522,0,0,0,21
+303523,0,0,0,21
+303524,0,0,0,21
+303525,0,0,0,21
+303526,0,0,0,21
+303527,0,0,0,21
+303528,0,0,661324.775,21
+303529,0,0,0,21
+303530,0,0,0,21
+303531,0,0,0,21
+303532,0,0,0,21
+303533,0,0,0,21
+303534,0,0,0,21
+303535,0,0,0,21
+303536,0,0,0,21
+303537,335949.2865,0,0,21
+303538,0,0,0,21
+303539,0,0,0,21
+303540,0,0,0,21
+303541,0,0,0,21
+303542,0,0,0,21
+303543,0,0,0,21
+303544,0,0,0,21
+303545,0,0,0,21
+303546,0,0,0,21
+303547,0,0,0,21
+303548,0,0,0,21
+303549,0,366543.8599,0,21
+303550,0,0,0,21
+303551,0,0,0,21
+303552,0,0,0,21
+303553,0,0,0,21
+303554,0,0,0,21
+303555,0,0,0,21
+303556,0,0,0,21
+303557,0,0,0,21
+303558,0,0,0,21
+303559,0,0,0,21
+303560,0,0,0,21
+303561,0,0,0,21
+303562,0,0,0,21
+303563,0,0,660439.5572,21
+303564,0,0,0,21
+303565,0,0,0,21
+303566,0,0,0,21
+303567,0,0,0,21
+303568,0,0,0,21
+303569,0,0,0,21
+303570,0,0,0,21
+303571,0,0,0,21
+303572,0,0,0,21
+303573,336111.5102,0,0,21
+303574,0,0,0,21
+303575,0,0,0,21
+303576,0,0,0,21
+303577,0,0,0,21
+303578,0,0,0,21
+303579,0,0,0,21
+303580,0,0,0,21
+303581,0,0,0,21
+303582,0,0,0,21
+303583,0,0,0,21
+303584,0,0,0,21
+303585,0,366978.1905,0,21
+303586,0,0,0,21
+303587,0,0,0,21
+303588,0,0,0,21
+303589,0,0,0,21
+303590,0,0,0,21
+303591,0,0,0,21
+303592,0,0,0,21
+303593,0,0,0,21
+303594,0,0,0,21
+303595,0,0,0,21
+303596,0,0,0,21
+303597,0,0,0,21
+303598,0,0,659538.5732,21
+303599,0,0,0,21
+303600,0,0,0,21
+303601,0,0,0,21
+303602,0,0,0,21
+303603,0,0,0,21
+303604,0,0,0,21
+303605,0,0,0,21
+303606,0,0,0,21
+303607,0,0,0,21
+303608,0,0,0,21
+303609,0,0,0,21
+303610,336754.3391,0,0,21
+303611,0,0,0,21
+303612,0,0,0,21
+303613,0,0,0,21
+303614,0,0,0,21
+303615,0,0,0,21
+303616,0,0,0,21
+303617,0,0,0,21
+303618,0,0,0,21
+303619,0,0,0,21
+303620,0,0,0,21
+303621,0,0,0,21
+303622,0,366201.7464,0,21
+303623,0,0,0,21
+303624,0,0,0,21
+303625,0,0,0,21
+303626,0,0,0,21
+303627,0,0,0,21
+303628,0,0,0,21
+303629,0,0,0,21
+303630,0,0,0,21
+303631,0,0,0,21
+303632,0,0,0,21
+303633,0,0,658994.1455,21
+303634,0,0,0,21
+303635,0,0,0,21
+303636,0,0,0,21
+303637,0,0,0,21
+303638,0,0,0,21
+303639,0,0,0,21
+303640,0,0,0,21
+303641,0,0,0,21
+303642,0,0,0,21
+303643,0,0,0,21
+303644,0,0,0,21
+303645,0,0,0,21
+303646,0,0,0,21
+303647,336161.8711,0,0,21
+303648,0,0,0,21
+303649,0,0,0,21
+303650,0,0,0,21
+303651,0,0,0,21
+303652,0,0,0,21
+303653,0,0,0,21
+303654,0,0,0,21
+303655,0,0,0,21
+303656,0,0,0,21
+303657,0,0,0,21
+303658,0,0,0,21
+303659,0,366958.4846,0,21
+303660,0,0,0,21
+303661,0,0,0,21
+303662,0,0,0,21
+303663,0,0,0,21
+303664,0,0,0,21
+303665,0,0,0,21
+303666,0,0,0,21
+303667,0,0,0,21
+303668,0,0,658100.7154,21
+303669,0,0,0,21
+303670,0,0,0,21
+303671,0,0,0,21
+303672,0,0,0,21
+303673,0,0,0,21
+303674,0,0,0,21
+303675,0,0,0,21
+303676,0,0,0,21
+303677,0,0,0,21
+303678,0,0,0,21
+303679,0,0,0,21
+303680,0,0,0,21
+303681,0,0,0,21
+303682,0,0,0,21
+303683,335671.6114,0,0,21
+303684,0,0,0,21
+303685,0,0,0,21
+303686,0,0,0,21
+303687,0,0,0,21
+303688,0,0,0,21
+303689,0,0,0,21
+303690,0,0,0,21
+303691,0,0,0,21
+303692,0,0,0,21
+303693,0,0,0,21
+303694,0,0,0,21
+303695,0,366229.4391,0,21
+303696,0,0,0,21
+303697,0,0,0,21
+303698,0,0,0,21
+303699,0,0,0,21
+303700,0,0,0,21
+303701,0,0,0,21
+303702,0,0,0,21
+303703,0,0,658504.7034,21
+303704,0,0,0,21
+303705,0,0,0,21
+303706,0,0,0,21
+303707,0,0,0,21
+303708,0,0,0,21
+303709,0,0,0,21
+303710,0,0,0,21
+303711,0,0,0,21
+303712,0,0,0,21
+303713,0,0,0,21
+303714,0,0,0,21
+303715,0,0,0,21
+303716,0,0,0,21
+303717,0,0,0,21
+303718,0,0,0,21
+303719,336910.9679,0,0,21
+303720,0,0,0,15.6
+303721,0,0,0,15.6
+303722,0,0,0,15.6
+303723,0,0,0,15.6
+303724,0,0,0,15.6
+303725,0,0,0,15.6
+303726,0,0,0,15.6
+303727,0,0,0,15.6
+303728,0,0,0,15.6
+303729,0,0,0,15.6
+303730,0,0,0,15.6
+303731,0,369201.3398,0,15.6
+303732,0,0,0,15.6
+303733,0,0,0,15.6
+303734,0,0,0,15.6
+303735,0,0,0,15.6
+303736,0,0,0,15.6
+303737,0,0,0,15.6
+303738,0,0,658320.6088,15.6
+303739,0,0,0,15.6
+303740,0,0,0,15.6
+303741,0,0,0,15.6
+303742,0,0,0,15.6
+303743,0,0,0,15.6
+303744,0,0,0,15.6
+303745,0,0,0,15.6
+303746,0,0,0,15.6
+303747,0,0,0,15.6
+303748,0,0,0,15.6
+303749,0,0,0,15.6
+303750,0,0,0,15.6
+303751,0,0,0,15.6
+303752,0,0,0,15.6
+303753,0,0,0,15.6
+303754,0,0,0,15.6
+303755,336317.4121,0,0,15.6
+303756,0,0,0,15.6
+303757,0,0,0,15.6
+303758,0,0,0,15.6
+303759,0,0,0,15.6
+303760,0,0,0,15.6
+303761,0,0,0,15.6
+303762,0,0,0,15.6
+303763,0,0,0,15.6
+303764,0,0,0,15.6
+303765,0,0,0,15.6
+303766,0,0,0,15.6
+303767,0,369258.6396,0,15.6
+303768,0,0,0,15.6
+303769,0,0,0,15.6
+303770,0,0,0,15.6
+303771,0,0,0,15.6
+303772,0,0,0,15.6
+303773,0,0,658377.7715,15.6
+303774,0,0,0,15.6
+303775,0,0,0,15.6
+303776,0,0,0,15.6
+303777,0,0,0,15.6
+303778,0,0,0,15.6
+303779,0,0,0,15.6
+303780,0,0,0,15.6
+303781,0,0,0,15.6
+303782,0,0,0,15.6
+303783,0,0,0,15.6
+303784,0,0,0,15.6
+303785,0,0,0,15.6
+303786,0,0,0,15.6
+303787,0,0,0,15.6
+303788,0,0,0,15.6
+303789,0,0,0,15.6
+303790,337360.7726,0,0,15.6
+303791,0,0,0,15.6
+303792,0,0,0,15.6
+303793,0,0,0,15.6
+303794,0,0,0,15.6
+303795,0,0,0,15.6
+303796,0,0,0,15.6
+303797,0,0,0,15.6
+303798,0,0,0,15.6
+303799,0,0,0,15.6
+303800,0,0,0,15.6
+303801,0,0,0,15.6
+303802,0,369219.4355,0,15.6
+303803,0,0,0,15.6
+303804,0,0,0,15.6
+303805,0,0,0,15.6
+303806,0,0,0,15.6
+303807,0,0,657850.8348,15.6
+303808,0,0,0,15.6
+303809,0,0,0,15.6
+303810,0,0,0,15.6
+303811,0,0,0,15.6
+303812,0,0,0,15.6
+303813,0,0,0,15.6
+303814,0,0,0,15.6
+303815,0,0,0,15.6
+303816,0,0,0,15.6
+303817,0,0,0,15.6
+303818,0,0,0,15.6
+303819,0,0,0,15.6
+303820,0,0,0,15.6
+303821,0,0,0,15.6
+303822,0,0,0,15.6
+303823,0,0,0,15.6
+303824,0,0,0,15.6
+303825,338081.4174,0,0,15.6
+303826,0,0,0,15.6
+303827,0,0,0,15.6
+303828,0,0,0,15.6
+303829,0,0,0,15.6
+303830,0,0,0,15.6
+303831,0,0,0,15.6
+303832,0,0,0,15.6
+303833,0,0,0,15.6
+303834,0,0,0,15.6
+303835,0,0,0,15.6
+303836,0,0,0,15.6
+303837,0,369133.0267,0,15.6
+303838,0,0,0,15.6
+303839,0,0,0,15.6
+303840,0,0,0,15.6
+303841,0,0,657890.1676,15.6
+303842,0,0,0,15.6
+303843,0,0,0,15.6
+303844,0,0,0,15.6
+303845,0,0,0,15.6
+303846,0,0,0,15.6
+303847,0,0,0,15.6
+303848,0,0,0,15.6
+303849,0,0,0,15.6
+303850,0,0,0,15.6
+303851,0,0,0,15.6
+303852,0,0,0,15.6
+303853,0,0,0,15.6
+303854,0,0,0,15.6
+303855,0,0,0,15.6
+303856,0,0,0,15.6
+303857,0,0,0,15.6
+303858,0,0,0,15.6
+303859,0,0,0,15.6
+303860,338468.7366,0,0,15.6
+303861,0,0,0,15.6
+303862,0,0,0,15.6
+303863,0,0,0,15.6
+303864,0,0,0,15.6
+303865,0,0,0,15.6
+303866,0,0,0,15.6
+303867,0,0,0,15.6
+303868,0,0,0,15.6
+303869,0,0,0,15.6
+303870,0,0,0,15.6
+303871,0,7.760483911,0,15.6
+303872,0,369095.218,0,15.6
+303873,0,114.1143158,0,15.6
+303874,0,0,0,15.6
+303875,0,0,0,15.6
+303876,0,0,657889.7212,15.6
+303877,0,2.775596845,0,15.6
+303878,0,0,0,15.6
+303879,0,67.73528023,0,15.6
+303880,0,0,0,15.6
+303881,0,0,0,15.6
+303882,0,0,0,15.6
+303883,0,0,0,15.6
+303884,0,89.14265526,0,15.6
+303885,0,0,0,15.6
+303886,0,0,0,15.6
+303887,0,0,0,15.6
+303888,0,0,0,15.6
+303889,0,0,0,15.6
+303890,0,7.419534399,0,15.6
+303891,0,0,0,15.6
+303892,0,125.4612272,0,15.6
+303893,0,0,0,15.6
+303894,0,0,0,15.6
+303895,338697.0538,0,0,15.6
+303896,0,0,0,15.6
+303897,0,289.3983117,0,15.6
+303898,0,0,0,15.6
+303899,0,0,0,15.6
+303900,0,0,0,15.6
+303901,0,0,0,15.6
+303902,0,256141.0004,0,15.6
+303903,0,0,0,15.6
+303904,0,0,0,15.6
+303905,0,0,0,15.6
+303906,0,0,0,15.6
+303907,0,369077.4767,0,15.6
+303908,0,251840.1956,0,15.6
+303909,0,0,0,15.6
+303910,0,0,0,15.6
+303911,0,0,657607.4274,15.6
+303912,0,0,0,15.6
+303913,0,0,0,15.6
+303914,0,0,0,15.6
+303915,0,0,0,15.6
+303916,0,0,0,15.6
+303917,0,0,0,15.6
+303918,0,0,0,15.6
+303919,0,0,0,15.6
+303920,0,0,0,15.6
+303921,0,0,0,15.6
+303922,0,0,0,15.6
+303923,0,0,0,15.6
+303924,0,0,0,15.6
+303925,0,0,0,15.6
+303926,0,0,0,15.6
+303927,0,0,0,15.6
+303928,0,0,0,15.6
+303929,0,0,0,15.6
+303930,338841.845,0,0,15.6
+303931,0,0,0,15.6
+303932,0,0,0,15.6
+303933,0,0,0,15.6
+303934,0,0,0,15.6
+303935,0,0,0,15.6
+303936,0,0,0,15.6
+303937,0,0,0,15.6
+303938,0,0,0,15.6
+303939,0,0,0,15.6
+303940,0,0,0,15.6
+303941,0,0,0,15.6
+303942,0,369105.3161,0,15.6
+303943,0,0,0,15.6
+303944,0,0,0,15.6
+303945,0,0,0,15.6
+303946,0,0,658376.6937,15.6
+303947,0,0,0,15.6
+303948,0,0,0,15.6
+303949,0,0,0,15.6
+303950,0,0,0,15.6
+303951,0,0,0,15.6
+303952,0,0,0,15.6
+303953,0,0,0,15.6
+303954,0,0,0,15.6
+303955,0,0,0,15.6
+303956,0,0,0,15.6
+303957,0,0,0,15.6
+303958,0,0,0,15.6
+303959,0,0,0,15.6
+303960,0,0,0,15.6
+303961,0,0,0,15.6
+303962,0,0,0,15.6
+303963,0,0,0,15.6
+303964,0,0,0,15.6
+303965,338938.2476,0,0,15.6
+303966,0,0,0,15.6
+303967,0,0,0,15.6
+303968,0,0,0,15.6
+303969,0,0,0,15.6
+303970,0,0,0,15.6
+303971,0,0,0,15.6
+303972,0,0,0,15.6
+303973,0,0,0,15.6
+303974,0,0,0,15.6
+303975,0,0,0,15.6
+303976,0,0,0,15.6
+303977,0,369092.7864,0,15.6
+303978,0,0,0,15.6
+303979,0,0,0,15.6
+303980,0,0,0,15.6
+303981,0,0,658797.8531,15.6
+303982,0,0,0,15.6
+303983,0,0,0,15.6
+303984,0,0,0,15.6
+303985,0,0,0,15.6
+303986,0,0,0,15.6
+303987,0,0,0,15.6
+303988,0,0,0,15.6
+303989,0,0,0,15.6
+303990,0,0,0,15.6
+303991,0,0,0,15.6
+303992,0,0,0,15.6
+303993,0,0,0,15.6
+303994,0,0,0,15.6
+303995,0,0,0,15.6
+303996,0,0,0,15.6
+303997,0,0,0,15.6
+303998,0,0,0,15.6
+303999,0,0,0,15.6
+304000,338988.5595,0,0,15.6
+304001,0,0,0,15.6
+304002,0,0,0,15.6
+304003,0,0,0,15.6
+304004,0,0,0,15.6
+304005,0,0,0,15.6
+304006,0,0,0,15.6
+304007,0,0,0,15.6
+304008,0,0,0,15.6
+304009,0,0,0,15.6
+304010,0,0,0,15.6
+304011,0,0,0,15.6
+304012,0,369043.0781,0,15.6
+304013,0,0,0,15.6
+304014,0,7.773293374,0,15.6
+304015,0,0,0,15.6
+304016,0,0,658064.7943,15.6
+304017,0,125.4321619,0,15.6
+304018,0,0,0,15.6
+304019,0,0,0,15.6
+304020,0,0,0,15.6
+304021,0,0,0,15.6
+304022,0,0,0,15.6
+304023,0,0,0,15.6
+304024,0,0,0,15.6
+304025,0,0,0,15.6
+304026,0,0,0,15.6
+304027,0,96.32773769,0,15.6
+304028,0,0,0,15.6
+304029,0,0,0,15.6
+304030,0,0,0,15.6
+304031,0,0,0,15.6
+304032,0,0,0,15.6
+304033,0,2.77341803,0,15.6
+304034,0,0,0,15.6
+304035,339042.0122,69.01967135,0,15.6
+304036,0,0,0,15.6
+304037,0,0,0,15.6
+304038,0,0,0,15.6
+304039,0,0,0,15.6
+304040,0,0,0,15.6
+304041,0,3.07469345,0,15.6
+304042,0,0,0,15.6
+304043,0,68.74653006,0,15.6
+304044,0,0,0,15.6
+304045,0,0,0,15.6
+304046,0,0,0,15.6
+304047,0,369028.1356,0,15.6
+304048,0,0,0,15.6
+304049,0,0,0,15.6
+304050,0,0,0,15.6
+304051,0,0,658598.9047,15.6
+304052,0,0,0,15.6
+304053,0,0,0,15.6
+304054,0,0,0,15.6
+304055,0,0,0,15.6
+304056,0,0,0,15.6
+304057,0,0,0,15.6
+304058,0,0,0,15.6
+304059,0,0,0,15.6
+304060,0,0,0,15.6
+304061,0,0,0,15.6
+304062,0,0,0,15.6
+304063,0,0,0,15.6
+304064,0,0,0,15.6
+304065,0,0,0,15.6
+304066,0,0,0,15.6
+304067,0,0,0,15.6
+304068,0,0,0,15.6
+304069,0,0,0,15.6
+304070,339101.4067,0,0,15.6
+304071,0,0,0,15.6
+304072,0,0,0,15.6
+304073,0,0,0,15.6
+304074,0,0,0,15.6
+304075,0,0,0,15.6
+304076,0,0,0,15.6
+304077,0,0,0,15.6
+304078,0,0,0,15.6
+304079,0,0,0,15.6
+304080,0,0,0,17.8
+304081,0,56663.7163,0,17.8
+304082,0,373442.0012,0,17.8
+304083,0,16677.90691,0,17.8
+304084,0,27746.94466,0,17.8
+304085,0,20038.79942,0,17.8
+304086,0,21619.94574,659160.6258,17.8
+304087,0,21643.80106,0,17.8
+304088,0,21632.63825,0,17.8
+304089,0,21661.42813,0,17.8
+304090,0,22692.6424,0,17.8
+304091,0,22162.45849,0,17.8
+304092,0,22313.71443,0,17.8
+304093,0,22341.80451,0,17.8
+304094,0,22355.66136,0,17.8
+304095,0,22364.34403,0,17.8
+304096,0,22420.99318,0,17.8
+304097,0,22370.81955,0,17.8
+304098,0,22432.13454,0,17.8
+304099,0,22393.20778,0,17.8
+304100,0,22434.05114,0,17.8
+304101,0,22435.1687,0,17.8
+304102,0,22455.89536,0,17.8
+304103,0,22411.88998,0,17.8
+304104,0,22474.65339,0,17.8
+304105,339135.6329,22433.51251,0,17.8
+304106,0,22458.18427,0,17.8
+304107,0,19803.25289,0,17.8
+304108,0,19772.26011,0,17.8
+304109,0,19753.21879,0,17.8
+304110,0,19744.98471,0,17.8
+304111,0,0,0,17.8
+304112,0,0,0,17.8
+304113,0,0,0,17.8
+304114,0,0,0,17.8
+304115,0,0,0,17.8
+304116,0,0,0,17.8
+304117,0,368995.1404,0,17.8
+304118,0,0,0,17.8
+304119,0,2.810533237,0,17.8
+304120,0,0,659493.9111,17.8
+304121,0,0,0,17.8
+304122,0,123.5851403,0,17.8
+304123,0,0,0,17.8
+304124,0,0,0,17.8
+304125,0,0,0,17.8
+304126,0,0,0,17.8
+304127,0,0,0,17.8
+304128,0,0,0,17.8
+304129,0,0,0,17.8
+304130,0,0,0,17.8
+304131,0,3.968843878,0,17.8
+304132,0,0,0,17.8
+304133,0,0,0,17.8
+304134,0,298.4386753,0,17.8
+304135,0,0,0,17.8
+304136,0,0,0,17.8
+304137,0,0,0,17.8
+304138,0,0,0,17.8
+304139,0,0,0,17.8
+304140,339150.5887,0,0,20
+304141,1541.645632,65210.97201,286.0307145,20
+304142,1630.406869,2173.758681,0,20
+304143,1212.900977,110753.8573,0,20
+304144,1438.509353,63678.5837,0,20
+304145,1477.402582,108489.736,11.39100871,20
+304146,2961.943135,127132.9873,74.41637051,20
+304147,3717.63571,106904.2792,43.52604076,20
+304148,20638.66254,114830.0772,64.21583537,20
+304149,15170.13815,115202.0255,64.21594527,20
+304150,15183.13194,115054.1772,64.21604092,20
+304151,17322.15794,114775.3551,84.53768084,20
+304152,17711.37464,114845.695,84.53787337,20
+304153,17734.08182,114679.3479,94.58706866,20
+304154,18057.88552,114462.1159,94.58729959,20
+304155,18332.21718,113942.4811,104.5714792,20
+304156,18347.31447,114304.1454,104.5717868,20
+304157,18800.35987,113882.6504,114.4963487,20
+304158,18828.18895,113885.1522,124.3657571,20
+304159,19264.32888,113508.2549,124.3661676,20
+304160,19112.24836,113230.1148,124.3666057,20
+304161,19618.3146,113222.0776,143.9542236,20
+304162,19587.09968,112906.3398,134.1852264,20
+304163,19969.46932,112939.1373,143.9552839,20
+304164,10550.89887,112751.5428,153.6799998,20
+304165,8166.095134,112264.2779,153.680682,20
+304166,6867.658797,112453.5225,153.6812959,20
+304167,6095.774336,112046.8548,173.0037024,20
+304168,5298.41035,112246.2055,163.3639804,20
+304169,4296.080069,111931.9168,1470.994196,20
+304170,3699.208294,112084.0347,2209.088207,20
+304171,2871.829865,111582.0271,1716.509372,20
+304172,2223.75325,112231.6302,2338.290744,20
+304173,2201.042256,111496.348,2447.777815,20
+304174,2739.154176,111248.9785,2703.448743,20
+304175,3995.093984,111895.4534,2938.304514,20
+304176,3306.774646,111412.4576,3045.722871,20
+304177,3776.703782,111286.6109,3306.749518,20
+304178,4029.633698,111350.0233,3518.877209,20
+304179,4067.328417,110921.0189,3653.070081,20
+304180,4479.915093,111326.3407,4116.335384,20
+304181,4673.023936,110495.431,4237.727316,20
+304182,4789.492148,111272.7683,4307.911003,20
+304183,5121.951999,110429.4466,4672.393769,20
+304184,5109.847232,110669.4696,4810.296682,20
+304185,5560.17945,110559.8594,4952.001515,20
+304186,5534.78015,110394.7569,5202.601381,20
+304187,5862.211057,110317.6749,5335.625208,20
+304188,5980.974206,110466.3615,5582.831541,20
+304189,6136.727196,109954.7657,5726.161869,20
+304190,6281.083084,110344.9082,5850.457425,20
+304191,6552.186517,109576.3142,6095.685086,20
+304192,6578.233655,110275.925,6245.290289,20
+304193,6836.197044,109445.8089,5959.67359,20
+304194,6860.675558,109647.2604,6090.723533,20
+304195,7106.254449,109441.429,6220.411961,20
+304196,7258.024081,109527.3194,6222.469676,20
+304197,7283.316143,109384.6191,6470.829866,20
+304198,7525.876281,109048.9733,6472.794048,20
+304199,7652.490294,108908.9687,6602.078767,20
+304200,7689.337108,109214.5886,6840.484996,21
+304201,5666.341747,102160.9582,4492.708579,21
+304202,5468.666179,101422.6382,4693.447582,21
+304203,5468.487388,100777.5822,142.1569325,21
+304204,5562.042855,101166.0918,0,21
+304205,5466.994272,100341.3647,0,21
+304206,5548.848398,100281.0684,0,21
+304207,5691.29585,100352.1637,0,21
+304208,5534.949243,99763.1206,0,21
+304209,5679.019745,99999.64717,0,21
+304210,5783.463394,99407.89576,0,21
+304211,5652.657938,99230.49508,0,21
+304212,5756.922299,99479.23389,0,21
+304213,5774.880055,98855.83479,0,21
+304214,5848.219579,98477.34173,0,21
+304215,5755.308055,98701.36049,0,21
+304216,5935.78759,98328.11743,0,21
+304217,5753.355562,98578.03881,0,21
+304218,5923.399652,97418.62018,0,21
+304219,5948.627724,97730.59804,0,21
+304220,5936.239797,97029.12479,0,21
+304221,5936.239787,97111.2986,0,21
+304222,5936.239782,96829.60607,0,21
+304223,6041.15906,96268.97177,0,21
+304224,5923.812795,96746.1862,0,21
+304225,6145.673436,96176.68306,0,21
+304226,5911.34572,95675.50481,0,21
+304227,6132.83326,96035.51544,0,21
+304228,5899.104041,95489.97437,0,21
+304229,6120.325117,95282.03781,0,21
+304230,6120.614916,95388.42317,0,21
+304231,6003.633455,94912.71335,0,21
+304232,6095.180929,94556.07779,0,21
+304233,6095.382546,94886.82052,0,21
+304234,6095.180914,94389.55356,0,21
+304235,6212.139191,94102.79786,0,21
+304236,6069.67875,94051.6509,0,21
+304237,6186.590033,93698.72066,0,21
+304238,6069.857588,93707.01949,0,21
+304239,6290.083287,93180.00256,0,21
+304240,6057.125234,93547.2484,0,21
+304241,6264.410357,92662.63484,0,21
+304242,6160.968078,92806.00758,0,21
+304243,6251.524493,92778.83807,0,21
+304244,6135.249461,92214.75847,0,21
+304245,6238.660824,92415.58778,0,21
+304246,6238.58335,91867.81706,0,21
+304247,6212.72086,91757.03528,0,21
+304248,6212.720852,91448.67118,0,21
+304249,6225.584501,91467.63964,0,21
+304250,6173.651703,91200.69957,0,21
+304251,6186.466019,91026.87251,0,21
+304252,6289.54752,90804.88402,0,21
+304253,6173.36004,90379.01758,0,21
+304254,6147.17583,90538.5483,0,21
+304255,6378.715337,90254.97176,0,21
+304256,6004.666198,89957.42544,0,21
+304257,6365.381121,89676.95009,0,21
+304258,6094.023363,89482.09413,0,21
+304259,6223.458028,89472.6388,0,21
+304260,6209.956127,89294.34022,0,21
+304261,193.4213422,39784.97734,0,21
+304262,126.2195405,37701.69824,0,21
+304263,82.94407216,36505.62995,0,21
+304264,65.2546014,35908.72231,0,21
+304265,38.1586894,35519.47231,0,21
+304266,19.54806329,34551.57387,0,21
+304267,0,34260.97895,0,21
+304268,0,33730.75498,0,21
+304269,0,33064.1137,0,21
+304270,0,32869.92703,0,21
+304271,0,31881.97516,0,21
+304272,0,32222.79589,0,21
+304273,0,31062.17954,0,21
+304274,0,30615.1105,0,21
+304275,0,30446.90459,0,21
+304276,0,30102.95212,0,21
+304277,0,29295.23104,0,21
+304278,0,29147.7065,0,21
+304279,0,28520.37764,0,21
+304280,0,28332.29203,0,21
+304281,0,27679.23848,0,21
+304282,0,27502.85512,0,21
+304283,0,26710.19308,0,21
+304284,0,26714.27668,0,21
+304285,0,26058.75951,0,21
+304286,0,25528.17302,0,21
+304287,0,25574.24244,0,21
+304288,0,24738.01821,0,21
+304289,0,24357.23322,0,21
+304290,0,24029.83561,0,21
+304291,0,23587.71761,0,21
+304292,0,22908.57585,0,21
+304293,0,22907.13772,0,21
+304294,0,22109.29033,0,21
+304295,0,21635.25055,0,21
+304296,0,21413.18138,0,21
+304297,0,20603.83054,0,21
+304298,0,20510.45227,0,21
+304299,0,19767.90472,0,21
+304300,0,19431.47925,0,21
+304301,0,19073.55685,0,21
+304302,0,18425.71351,0,21
+304303,0,18237.88047,0,21
+304304,0,17822.00889,0,21
+304305,0,17145.03871,0,21
+304306,0,17019.66418,0,21
+304307,0,16486.06459,0,21
+304308,0,16149.26929,0,21
+304309,0,15675.65719,0,21
+304310,0,15243.23845,0,21
+304311,0,15001.97715,0,21
+304312,0,14244.22115,0,21
+304313,0,14316.44693,0,21
+304314,0,13770.34511,0,21
+304315,0,13273.0812,0,21
+304316,0,13258.48682,0,21
+304317,0,12444.86986,0,21
+304318,0,12204.04013,0,21
+304319,0,11999.00874,0,21
+304320,0,11493.09894,0,21
+304321,0,11086.30245,0,21
+304322,0,10893.20714,0,21
+304323,0,10142.02064,0,21
+304324,0,10171.94504,0,21
+304325,0,9320.144894,0,21
+304326,0,9429.488152,0,21
+304327,0,8606.246545,0,21
+304328,0,8346.264973,0,21
+304329,0,8116.159997,0,21
+304330,0,7621.376408,0,21
+304331,0,7202.421737,0,21
+304332,0,6673.307672,0,21
+304333,0,6433.830553,0,21
+304334,0,6159.174159,0,21
+304335,0,5626.808425,0,21
+304336,0,5339.145966,0,21
+304337,0,5278.72856,0,21
+304338,0,4732.847272,0,21
+304339,0,4436.864758,0,21
+304340,0,4000.346079,0,21
+304341,0,3809.149756,0,21
+304342,0,3219.459692,0,21
+304343,0,3165.431761,0,21
+304344,0,3080.56091,0,21
+304345,0,3064.960398,0,21
+304346,0,2956.221315,0,21
+304347,0,2940.547788,0,21
+304348,0,2854.474956,0,21
+304349,0,2815.168296,0,21
+304350,0,2728.387147,0,21
+304351,0,2688.786803,0,21
+304352,0,2625.210614,0,21
+304353,0,2537.31733,0,21
+304354,0,2497.2627,0,21
+304355,0,2408.590486,0,21
+304356,0,2359.829648,0,21
+304357,0,2262.623661,0,21
+304358,0,2229.46832,0,21
+304359,0,2147.687056,0,21
+304360,0,2047.828221,0,21
+304361,0,2015.397992,0,21
+304362,0,1914.402889,0,21
+304363,0,1847.174677,0,21
+304364,0,1737.464112,0,21
+304365,0,1685.711003,0,21
+304366,0,1617.193257,0,21
+304367,0,1495.428856,0,21
+304368,0,1442.192328,0,21
+304369,0,1355.456806,0,21
+304370,0,1230.155775,0,21
+304371,0,1175.05777,0,21
+304372,0,1072.011105,0,21
+304373,0,989.4990876,0,21
+304374,0,881.4449934,0,21
+304375,0,793.0397428,0,21
+304376,0,701.6956453,0,21
+304377,0,587.6675969,0,21
+304378,0,570.424506,0,21
+304379,0,536.3822739,0,21
+304380,0,536.3822725,0,21
+304381,0,502.0972616,0,21
+304382,0,467.560601,0,21
+304383,0,484.8622784,0,21
+304384,0,432.7536295,0,21
+304385,0,450.1918515,0,21
+304386,0,432.7546766,0,21
+304387,0,415.2452383,0,21
+304388,0,397.661773,0,21
+304389,0,397.6617354,0,21
+304390,0,362.2627871,0,21
+304391,0,380.0018369,0,21
+304392,0,344.4412935,0,21
+304393,0,326.5340353,0,21
+304394,0,326.534047,0,21
+304395,0,308.5372037,0,21
+304396,0,308.537194,0,21
+304397,0,272.2572154,0,21
+304398,0,272.2572121,0,21
+304399,0,253.9639114,0,21
+304400,0,253.9639232,0,21
+304401,0,217.0397311,0,21
+304402,0,226.3152447,0,21
+304403,0,198.3934129,0,21
+304404,0,198.3934163,0,21
+304405,0,170.1664384,0,21
+304406,0,160.682712,0,21
+304407,0,160.6827156,0,21
+304408,0,122.3208677,0,21
+304409,0,141.5919022,0,21
+304410,0,102.8455928,0,21
+304411,0,93.02161298,0,21
+304412,0,83.13329389,0,21
+304413,0,83.13329609,0,21
+304414,0,42.77682046,0,21
+304415,0,42.77682273,0,21
+304416,0,42.77682325,0,21
+304417,0,0,0,21
+304418,0,21.90589708,0,21
+304419,0,0,0,21
+304420,0,0,0,21
+304421,0,0,0,21
+304422,0,0,0,21
+304423,0,0,0,21
+304424,0,0,0,21
+304425,0,0,0,21
+304426,0,0,0,21
+304427,0,0,0,21
+304428,0,0,0,21
+304429,0,0,0,21
+304430,0,0,0,21
+304431,0,0,0,21
+304432,0,0,0,21
+304433,0,0,0,21
+304434,0,0,0,21
+304435,0,0,0,21
+304436,0,0,0,21
+304437,0,0,0,21
+304438,0,0,0,21
+304439,0,0,0,21
+304440,0,0,0,21
+304441,0,0,0,21
+304442,0,0,0,21
+304443,0,0,0,21
+304444,0,0,0,21
+304445,0,0,0,21
+304446,0,0,0,21
+304447,0,0,0,21
+304448,0,0,0,21
+304449,0,0,0,21
+304450,0,0,0,21
+304451,0,0,0,21
+304452,0,0,0,21
+304453,0,0,0,21
+304454,0,0,0,21
+304455,0,0,0,21
+304456,0,0,0,21
+304457,0,0,0,21
+304458,0,0,0,21
+304459,0,0,0,21
+304460,0,0,0,21
+304461,0,0,0,21
+304462,0,0,0,21
+304463,0,0,0,21
+304464,0,0,0,21
+304465,0,0,0,21
+304466,0,0,0,21
+304467,0,0,0,21
+304468,0,0,0,21
+304469,0,0,0,21
+304470,0,0,0,21
+304471,0,0,0,21
+304472,0,0,0,21
+304473,0,0,0,21
+304474,0,0,0,21
+304475,0,0,0,21
+304476,0,0,0,21
+304477,0,0,0,21
+304478,0,0,0,21
+304479,0,0,0,21
+304480,0,0,0,21
+304481,0,0,0,21
+304482,0,0,0,21
+304483,0,0,0,21
+304484,0,0,0,21
+304485,0,0,0,21
+304486,0,0,0,21
+304487,0,0,0,21
+304488,0,0,0,21
+304489,0,0,0,21
+304490,0,0,0,21
+304491,0,0,0,21
+304492,0,0,0,21
+304493,0,0,0,21
+304494,0,0,0,21
+304495,0,0,0,21
+304496,0,0,0,21
+304497,0,0,0,21
+304498,0,0,0,21
+304499,0,0,0,21
+304500,0,0,0,21
+304501,0,0,0,21
+304502,0,0,0,21
+304503,0,0,0,21
+304504,0,0,0,21
+304505,0,0,0,21
+304506,0,0,0,21
+304507,0,0,0,21
+304508,0,0,0,21
+304509,0,0,0,21
+304510,0,0,0,21
+304511,0,0,0,21
+304512,0,0,0,21
+304513,0,0,0,21
+304514,0,0,0,21
+304515,0,0,0,21
+304516,0,0,0,21
+304517,0,0,0,21
+304518,0,0,0,21
+304519,0,0,0,21
+304520,0,0,0,21
+304521,0,0,0,21
+304522,0,0,0,21
+304523,0,0,0,21
+304524,0,0,0,21
+304525,0,0,0,21
+304526,0,0,0,21
+304527,0,0,0,21
+304528,0,0,0,21
+304529,0,0,0,21
+304530,0,0,0,21
+304531,0,0,0,21
+304532,0,0,0,21
+304533,0,0,0,21
+304534,0,0,0,21
+304535,0,0,0,21
+304536,0,0,0,21
+304537,0,0,0,21
+304538,0,0,0,21
+304539,0,0,0,21
+304540,0,0,0,21
+304541,0,0,0,21
+304542,0,0,0,21
+304543,0,0,0,21
+304544,0,0,0,21
+304545,0,0,0,21
+304546,0,0,0,21
+304547,0,0,0,21
+304548,0,0,0,21
+304549,0,0,0,21
+304550,0,0,0,21
+304551,0,0,0,21
+304552,0,0,0,21
+304553,0,0,0,21
+304554,0,0,0,21
+304555,0,0,0,21
+304556,0,0,0,21
+304557,0,0,0,21
+304558,0,0,0,21
+304559,0,0,0,21
+304560,0,0,0,21
+304561,0,0,0,21
+304562,0,0,0,21
+304563,0,0,0,21
+304564,0,0,0,21
+304565,0,0,0,21
+304566,0,0,0,21
+304567,0,0,0,21
+304568,0,0,0,21
+304569,0,0,0,21
+304570,0,0,0,21
+304571,0,0,0,21
+304572,0,0,0,21
+304573,0,0,0,21
+304574,0,0,0,21
+304575,0,0,0,21
+304576,0,0,0,21
+304577,0,0,0,21
+304578,0,0,0,21
+304579,0,0,0,21
+304580,0,0,0,21
+304581,0,0,0,21
+304582,0,0,0,21
+304583,0,0,0,21
+304584,0,0,0,21
+304585,0,0,0,21
+304586,0,0,0,21
+304587,0,0,0,21
+304588,0,0,0,21
+304589,0,0,0,21
+304590,0,0,0,21
+304591,0,0,0,21
+304592,0,0,0,21
+304593,0,0,0,21
+304594,0,0,0,21
+304595,0,0,0,21
+304596,0,0,0,21
+304597,0,0,0,21
+304598,0,0,0,21
+304599,0,0,0,21
+304600,0,0,0,21
+304601,0,0,0,21
+304602,0,0,0,21
+304603,0,0,0,21
+304604,0,0,0,21
+304605,0,0,0,21
+304606,0,0,0,21
+304607,0,0,0,21
+304608,0,0,0,21
+304609,0,0,0,21
+304610,0,0,0,21
+304611,0,0,0,21
+304612,0,0,0,21
+304613,0,0,0,21
+304614,0,0,0,21
+304615,0,0,0,21
+304616,0,0,0,21
+304617,0,0,0,21
+304618,0,0,0,21
+304619,0,0,0,21
+304620,0,0,0,21
+304621,0,0,0,21
+304622,0,0,0,21
+304623,0,0,0,21
+304624,0,0,0,21
+304625,0,0,0,21
+304626,0,0,0,21
+304627,0,0,0,21
+304628,0,0,0,21
+304629,0,0,0,21
+304630,0,0,0,21
+304631,0,0,0,21
+304632,0,0,0,21
+304633,0,0,0,21
+304634,0,0,0,21
+304635,0,0,0,21
+304636,0,0,0,21
+304637,0,0,0,21
+304638,0,0,0,21
+304639,0,0,0,21
+304640,0,0,0,21
+304641,0,0,0,21
+304642,0,0,0,21
+304643,0,0,0,21
+304644,0,0,0,21
+304645,0,0,0,21
+304646,0,0,0,21
+304647,0,0,0,21
+304648,0,0,0,21
+304649,0,0,0,21
+304650,0,0,0,21
+304651,0,0,0,21
+304652,0,0,0,21
+304653,0,0,0,21
+304654,0,0,0,21
+304655,0,0,0,21
+304656,0,0,0,21
+304657,0,0,0,21
+304658,0,0,0,21
+304659,0,0,0,21
+304660,0,0,0,21
+304661,0,0,0,21
+304662,0,0,0,21
+304663,0,0,0,21
+304664,0,0,0,21
+304665,0,0,0,21
+304666,0,0,0,21
+304667,0,0,0,21
+304668,0,0,0,21
+304669,0,0,0,21
+304670,0,0,0,21
+304671,0,0,0,21
+304672,0,0,0,21
+304673,0,0,0,21
+304674,0,0,0,21
+304675,0,0,0,21
+304676,0,0,0,21
+304677,0,0,0,21
+304678,0,0,0,21
+304679,0,0,0,21
+304680,0,0,0,21
+304681,0,0,0,21
+304682,0,0,0,21
+304683,0,0,0,21
+304684,0,0,0,21
+304685,0,0,0,21
+304686,0,0,0,21
+304687,0,0,0,21
+304688,0,0,0,21
+304689,0,0,0,21
+304690,0,0,0,21
+304691,0,0,0,21
+304692,0,0,0,21
+304693,0,0,0,21
+304694,0,0,0,21
+304695,0,0,0,21
+304696,0,0,0,21
+304697,0,0,0,21
+304698,0,0,0,21
+304699,0,0,0,21
+304700,0,0,0,21
+304701,0,0,0,21
+304702,0,0,0,21
+304703,0,0,0,21
+304704,0,0,0,21
+304705,0,0,0,21
+304706,0,0,0,21
+304707,0,0,0,21
+304708,0,0,0,21
+304709,0,0,0,21
+304710,0,0,0,21
+304711,0,0,0,21
+304712,0,0,0,21
+304713,0,0,0,21
+304714,0,0,0,21
+304715,0,0,0,21
+304716,0,0,0,21
+304717,0,0,0,21
+304718,0,0,0,21
+304719,0,0,0,21
+304720,0,0,0,21
+304721,0,0,0,21
+304722,0,0,0,21
+304723,0,0,0,21
+304724,0,0,0,21
+304725,0,0,0,21
+304726,0,0,0,21
+304727,0,0,0,21
+304728,0,0,0,21
+304729,0,0,0,21
+304730,0,0,0,21
+304731,0,0,0,21
+304732,0,0,0,21
+304733,0,0,0,21
+304734,0,0,0,21
+304735,0,0,0,21
+304736,0,0,0,21
+304737,0,0,0,21
+304738,0,0,0,21
+304739,0,0,0,21
+304740,0,0,0,21
+304741,0,0,0,21
+304742,0,0,0,21
+304743,0,0,0,21
+304744,0,0,0,21
+304745,0,0,0,21
+304746,0,0,0,21
+304747,0,0,0,21
+304748,0,0,0,21
+304749,0,0,0,21
+304750,0,0,0,21
+304751,0,0,0,21
+304752,0,0,0,21
+304753,0,0,0,21
+304754,0,0,0,21
+304755,0,0,0,21
+304756,0,0,0,21
+304757,0,0,0,21
+304758,0,0,0,21
+304759,0,0,0,21
+304760,0,0,0,21
+304761,0,0,0,21
+304762,0,0,0,21
+304763,0,0,0,21
+304764,0,0,0,21
+304765,0,0,0,21
+304766,0,0,0,21
+304767,0,0,0,21
+304768,0,0,0,21
+304769,0,0,0,21
+304770,0,0,0,21
+304771,0,0,0,21
+304772,0,0,0,21
+304773,0,0,0,21
+304774,0,0,0,21
+304775,0,0,0,21
+304776,0,0,0,21
+304777,0,0,0,21
+304778,0,0,0,21
+304779,0,0,0,21
+304780,0,0,0,21
+304781,0,0,0,21
+304782,0,0,0,21
+304783,0,0,0,21
+304784,0,0,0,21
+304785,0,0,0,21
+304786,0,0,0,21
+304787,0,0,0,21
+304788,0,0,0,21
+304789,0,0,0,21
+304790,0,0,0,21
+304791,0,0,0,21
+304792,0,0,0,21
+304793,0,0,0,21
+304794,0,0,0,21
+304795,0,0,0,21
+304796,0,0,0,21
+304797,0,0,0,21
+304798,0,0,0,21
+304799,0,0,0,21
+304800,0,0,0,21
+304801,0,0,0,21
+304802,0,0,0,21
+304803,0,0,0,21
+304804,0,0,0,21
+304805,0,0,0,21
+304806,0,0,0,21
+304807,0,0,0,21
+304808,0,0,0,21
+304809,0,0,0,21
+304810,0,0,0,21
+304811,0,0,0,21
+304812,0,0,0,21
+304813,0,0,0,21
+304814,0,0,0,21
+304815,0,0,0,21
+304816,0,0,0,21
+304817,0,0,0,21
+304818,0,0,0,21
+304819,0,0,0,21
+304820,0,0,0,21
+304821,0,0,0,21
+304822,0,0,0,21
+304823,0,0,0,21
+304824,0,0,0,21
+304825,0,0,0,21
+304826,0,0,0,21
+304827,0,0,0,21
+304828,0,0,0,21
+304829,0,0,0,21
+304830,0,0,0,21
+304831,0,0,0,21
+304832,0,0,0,21
+304833,0,0,0,21
+304834,0,0,0,21
+304835,0,0,0,21
+304836,0,0,0,21
+304837,0,0,0,21
+304838,0,0,0,21
+304839,0,0,0,21
+304840,0,0,0,21
+304841,0,0,0,21
+304842,0,0,0,21
+304843,0,0,0,21
+304844,0,0,0,21
+304845,0,0,0,21
+304846,0,0,0,21
+304847,0,0,0,21
+304848,0,0,0,21
+304849,0,0,0,21
+304850,0,0,0,21
+304851,0,0,0,21
+304852,0,0,0,21
+304853,0,0,0,21
+304854,0,0,0,21
+304855,0,0,0,21
+304856,0,0,0,21
+304857,0,0,0,21
+304858,0,0,0,21
+304859,0,0,0,21
+304860,0,0,0,21
+304861,0,0,0,21
+304862,0,0,0,21
+304863,0,0,0,21
+304864,0,0,0,21
+304865,0,0,0,21
+304866,0,0,0,21
+304867,0,0,0,21
+304868,0,0,0,21
+304869,0,0,0,21
+304870,0,0,0,21
+304871,0,0,0,21
+304872,0,0,0,21
+304873,0,0,0,21
+304874,0,0,0,21
+304875,0,0,0,21
+304876,0,0,0,21
+304877,0,0,0,21
+304878,0,0,0,21
+304879,0,0,0,21
+304880,0,0,0,21
+304881,0,0,0,21
+304882,0,0,0,21
+304883,0,0,0,21
+304884,0,0,0,21
+304885,0,0,0,21
+304886,0,0,0,21
+304887,0,0,0,21
+304888,0,0,0,21
+304889,0,0,0,21
+304890,0,0,0,21
+304891,0,0,0,21
+304892,0,0,0,21
+304893,0,0,0,21
+304894,0,0,0,21
+304895,0,0,0,21
+304896,0,0,0,21
+304897,0,0,0,21
+304898,0,0,0,21
+304899,0,0,0,21
+304900,0,0,0,21
+304901,0,0,0,21
+304902,0,0,0,21
+304903,0,0,0,21
+304904,0,0,0,21
+304905,0,0,0,21
+304906,0,0,0,21
+304907,0,0,0,21
+304908,0,0,0,21
+304909,0,0,0,21
+304910,0,0,0,21
+304911,0,0,0,21
+304912,0,0,0,21
+304913,0,0,0,21
+304914,0,0,0,21
+304915,0,0,0,21
+304916,0,0,0,21
+304917,0,0,0,21
+304918,0,0,0,21
+304919,0,0,0,21
+304920,0,0,0,21
+304921,0,0,0,21
+304922,0,0,0,21
+304923,0,0,0,21
+304924,0,0,0,21
+304925,0,0,0,21
+304926,0,0,0,21
+304927,0,0,0,21
+304928,0,0,0,21
+304929,0,0,0,21
+304930,0,0,0,21
+304931,0,0,0,21
+304932,0,0,0,21
+304933,0,0,0,21
+304934,0,0,0,21
+304935,0,0,0,21
+304936,0,0,0,21
+304937,0,0,0,21
+304938,0,0,0,21
+304939,0,0,0,21
+304940,0,0,0,21
+304941,0,0,0,21
+304942,0,0,0,21
+304943,0,0,0,21
+304944,0,0,0,21
+304945,0,0,0,21
+304946,0,0,0,21
+304947,0,0,0,21
+304948,0,0,0,21
+304949,0,0,0,21
+304950,0,0,0,21
+304951,0,0,0,21
+304952,0,0,0,21
+304953,0,0,0,21
+304954,0,0,0,21
+304955,0,0,0,21
+304956,0,0,0,21
+304957,0,0,0,21
+304958,0,0,0,21
+304959,0,0,0,21
+304960,0,0,0,21
+304961,0,0,0,21
+304962,0,0,0,21
+304963,0,0,0,21
+304964,0,0,0,21
+304965,0,0,0,21
+304966,0,0,0,21
+304967,0,0,0,21
+304968,0,0,0,21
+304969,0,0,0,21
+304970,0,0,0,21
+304971,0,0,0,21
+304972,0,0,0,21
+304973,0,0,0,21
+304974,0,0,0,21
+304975,0,0,0,21
+304976,0,0,0,21
+304977,0,0,0,21
+304978,0,0,0,21
+304979,0,0,0,21
+304980,0,0,0,21
+304981,0,0,0,21
+304982,0,0,0,21
+304983,0,0,0,21
+304984,0,0,0,21
+304985,0,0,0,21
+304986,0,0,0,21
+304987,0,0,0,21
+304988,0,0,0,21
+304989,0,0,0,21
+304990,0,0,0,21
+304991,0,0,0,21
+304992,0,0,0,21
+304993,0,0,0,21
+304994,0,0,0,21
+304995,0,0,0,21
+304996,0,0,0,21
+304997,0,0,0,21
+304998,0,0,0,21
+304999,0,0,0,21
+305000,0,0,0,21
+305001,0,0,0,21
+305002,0,0,0,21
+305003,0,0,0,21
+305004,0,0,0,21
+305005,0,0,0,21
+305006,0,0,0,21
+305007,0,0,0,21
+305008,0,0,0,21
+305009,0,0,0,21
+305010,0,0,0,21
+305011,0,0,0,21
+305012,0,0,0,21
+305013,0,0,0,21
+305014,0,0,0,21
+305015,0,0,0,21
+305016,0,0,0,21
+305017,0,0,0,21
+305018,0,0,0,21
+305019,0,0,0,21
+305020,0,0,0,21
+305021,0,0,0,21
+305022,0,0,0,21
+305023,0,0,0,21
+305024,0,0,0,21
+305025,0,0,0,21
+305026,0,0,0,21
+305027,0,0,0,21
+305028,0,0,0,21
+305029,0,0,0,21
+305030,0,0,0,21
+305031,0,0,0,21
+305032,0,0,0,21
+305033,0,0,0,21
+305034,0,0,0,21
+305035,0,0,0,21
+305036,0,0,0,21
+305037,0,0,0,21
+305038,0,0,0,21
+305039,0,0,0,21
+305040,0,0,0,21
+305041,0,0,0,21
+305042,0,0,0,21
+305043,0,0,0,21
+305044,0,0,0,21
+305045,0,0,0,21
+305046,0,0,0,21
+305047,0,0,0,21
+305048,0,0,0,21
+305049,0,0,0,21
+305050,0,0,0,21
+305051,0,0,0,21
+305052,0,0,0,21
+305053,0,0,0,21
+305054,0,0,0,21
+305055,0,0,0,21
+305056,0,0,0,21
+305057,0,0,0,21
+305058,0,0,0,21
+305059,0,0,0,21
+305060,0,0,0,21
+305061,0,0,0,21
+305062,0,0,0,21
+305063,0,0,0,21
+305064,0,0,0,21
+305065,0,0,0,21
+305066,0,0,0,21
+305067,0,0,0,21
+305068,0,0,0,21
+305069,0,0,0,21
+305070,0,0,0,21
+305071,0,0,0,21
+305072,0,0,0,21
+305073,0,0,0,21
+305074,0,0,0,21
+305075,0,0,0,21
+305076,0,0,0,21
+305077,0,0,0,21
+305078,0,0,0,21
+305079,0,0,0,21
+305080,0,0,0,21
+305081,0,0,0,21
+305082,0,0,0,21
+305083,0,0,0,21
+305084,0,1036.583046,0,21
+305085,0,1199.903838,0,21
+305086,0,1036.583027,0,21
+305087,0,1522.146699,0,21
+305088,0,1681.3489,0,21
+305089,0,1839.413575,0,21
+305090,0,1996.424092,0,21
+305091,0,2152.4511,0,21
+305092,0,2307.554934,0,21
+305093,0,2615.195525,0,21
+305094,0,2767.818575,0,21
+305095,0,2767.818596,0,21
+305096,0,3221.321165,0,21
+305097,0,3070.850778,0,21
+305098,0,3520.303001,0,21
+305099,0,3520.303228,0,21
+305100,0,3816.822987,0,21
+305101,0,0,0,21
+305102,0,0,0,21
+305103,0,0,0,21
+305104,0,0,0,21
+305105,0,360154.4313,665658.6457,21
+305106,328950.552,0,0,21
+305107,0,0,0,21
+305108,0,0,0,21
+305109,0,0,0,21
+305110,0,0,0,21
+305111,0,0,0,21
+305112,0,0,0,21
+305113,0,0,0,21
+305114,0,0,0,21
+305115,0,0,0,21
+305116,0,0,0,21
+305117,0,0,0,21
+305118,0,0,0,21
+305119,0,0,0,21
+305120,0,0,0,21
+305121,0,0,0,21
+305122,0,0,0,21
+305123,0,0,0,21
+305124,0,0,0,21
+305125,0,0,0,21
+305126,0,0,0,21
+305127,0,0,0,21
+305128,0,0,0,21
+305129,0,0,0,21
+305130,0,0,0,21
+305131,0,0,0,21
+305132,0,0,0,21
+305133,0,0,0,21
+305134,0,0,0,21
+305135,0,0,0,21
+305136,0,0,0,21
+305137,0,0,0,21
+305138,0,0,0,21
+305139,0,361396.9973,664918.1038,21
+305140,0,0,0,21
+305141,328639.9818,0,0,21
+305142,0,0,0,21
+305143,0,0,0,21
+305144,0,0,0,21
+305145,0,0,0,21
+305146,0,0,0,21
+305147,0,0,0,21
+305148,0,0,0,21
+305149,0,0,0,21
+305150,0,0,0,21
+305151,0,0,0,21
+305152,0,0,0,21
+305153,0,0,0,21
+305154,0,0,0,21
+305155,0,0,0,21
+305156,0,0,0,21
+305157,0,0,0,21
+305158,0,0,0,21
+305159,0,0,0,21
+305160,0,0,0,15.6
+305161,0,0,0,15.6
+305162,0,0,0,15.6
+305163,0,0,0,15.6
+305164,0,0,0,15.6
+305165,0,0,0,15.6
+305166,0,0,0,15.6
+305167,0,0,0,15.6
+305168,0,0,0,15.6
+305169,0,0,0,15.6
+305170,0,0,0,15.6
+305171,0,0,0,15.6
+305172,0,0,0,15.6
+305173,0,360324.8367,663906.0071,15.6
+305174,0,0,0,15.6
+305175,0,0,0,15.6
+305176,329918.6806,0,0,15.6
+305177,0,0,0,15.6
+305178,0,0,0,15.6
+305179,0,0,0,15.6
+305180,0,0,0,15.6
+305181,0,0,0,15.6
+305182,0,0,0,15.6
+305183,0,0,0,15.6
+305184,0,0,0,15.6
+305185,0,0,0,15.6
+305186,0,0,0,15.6
+305187,0,0,0,15.6
+305188,0,0,0,15.6
+305189,0,0,0,15.6
+305190,0,0,0,15.6
+305191,0,0,0,15.6
+305192,0,0,0,15.6
+305193,0,0,0,15.6
+305194,0,0,0,15.6
+305195,0,0,0,15.6
+305196,0,0,0,15.6
+305197,0,0,0,15.6
+305198,0,0,0,15.6
+305199,0,0,0,15.6
+305200,0,0,0,15.6
+305201,0,0,0,15.6
+305202,0,0,0,15.6
+305203,0,0,0,15.6
+305204,0,0,0,15.6
+305205,0,0,0,15.6
+305206,0,0,0,15.6
+305207,0,361666.2392,663090.4674,15.6
+305208,0,0,0,15.6
+305209,0,0,0,15.6
+305210,0,0,0,15.6
+305211,331224.8984,0,0,15.6
+305212,0,0,0,15.6
+305213,0,0,0,15.6
+305214,0,0,0,15.6
+305215,0,0,0,15.6
+305216,0,0,0,15.6
+305217,0,0,0,15.6
+305218,0,0,0,15.6
+305219,0,0,0,15.6
+305220,0,0,0,15.6
+305221,0,0,0,15.6
+305222,0,0,0,15.6
+305223,0,0,0,15.6
+305224,0,0,0,15.6
+305225,0,0,0,15.6
+305226,0,0,0,15.6
+305227,0,0,0,15.6
+305228,0,0,0,15.6
+305229,0,0,0,15.6
+305230,0,0,0,15.6
+305231,0,0,0,15.6
+305232,0,0,0,15.6
+305233,0,0,0,15.6
+305234,0,0,0,15.6
+305235,0,0,0,15.6
+305236,0,0,0,15.6
+305237,0,0,0,15.6
+305238,0,0,0,15.6
+305239,0,0,0,15.6
+305240,0,0,0,15.6
+305241,0,0,662712.1297,15.6
+305242,0,362610.475,0,15.6
+305243,0,0,0,15.6
+305244,0,0,0,15.6
+305245,0,0,0,15.6
+305246,332945.7701,0,0,15.6
+305247,0,0,0,15.6
+305248,0,0,0,15.6
+305249,0,0,0,15.6
+305250,0,0,0,15.6
+305251,0,0,0,15.6
+305252,0,0,0,15.6
+305253,0,0,0,15.6
+305254,0,0,0,15.6
+305255,0,0,0,15.6
+305256,0,0,0,15.6
+305257,0,0,0,15.6
+305258,0,0,0,15.6
+305259,0,0,0,15.6
+305260,0,0,0,15.6
+305261,0,0,0,15.6
+305262,0,0,0,15.6
+305263,0,0,0,15.6
+305264,0,0,0,15.6
+305265,0,0,0,15.6
+305266,0,0,0,15.6
+305267,0,0,0,15.6
+305268,0,0,0,15.6
+305269,0,0,0,15.6
+305270,0,0,0,15.6
+305271,0,0,0,15.6
+305272,0,0,0,15.6
+305273,0,0,0,15.6
+305274,0,0,0,15.6
+305275,0,0,662431.0052,15.6
+305276,0,0,0,15.6
+305277,0,363886.938,0,15.6
+305278,0,0,0,15.6
+305279,0,0,0,15.6
+305280,0,0,0,15.6
+305281,332829.4523,0,0,15.6
+305282,0,0,0,15.6
+305283,0,0,0,15.6
+305284,0,0,0,15.6
+305285,0,0,0,15.6
+305286,0,0,0,15.6
+305287,0,0,0,15.6
+305288,0,0,0,15.6
+305289,0,0,0,15.6
+305290,0,0,0,15.6
+305291,0,0,0,15.6
+305292,0,0,0,15.6
+305293,0,0,0,15.6
+305294,0,0,0,15.6
+305295,0,0,0,15.6
+305296,0,0,0,15.6
+305297,0,0,0,15.6
+305298,0,0,0,15.6
+305299,0,0,0,15.6
+305300,0,0,0,15.6
+305301,0,0,0,15.6
+305302,0,0,0,15.6
+305303,0,0,0,15.6
+305304,0,0,0,15.6
+305305,0,0,0,15.6
+305306,0,0,0,15.6
+305307,0,0,0,15.6
+305308,0,0,0,15.6
+305309,0,0,662457.9769,15.6
+305310,0,0,0,15.6
+305311,0,0,0,15.6
+305312,0,364438.8145,0,15.6
+305313,0,0,0,15.6
+305314,0,0,0,15.6
+305315,0,0,0,15.6
+305316,334618.7817,0,0,15.6
+305317,0,0,0,15.6
+305318,0,0,0,15.6
+305319,0,0,0,15.6
+305320,0,0,0,15.6
+305321,0,0,0,15.6
+305322,0,0,0,15.6
+305323,0,0,0,15.6
+305324,0,0,0,15.6
+305325,0,0,0,15.6
+305326,0,0,0,15.6
+305327,0,0,0,15.6
+305328,0,0,0,15.6
+305329,0,0,0,15.6
+305330,0,0,0,15.6
+305331,0,0,0,15.6
+305332,0,0,0,15.6
+305333,0,0,0,15.6
+305334,0,0,0,15.6
+305335,0,0,0,15.6
+305336,0,0,0,15.6
+305337,0,0,0,15.6
+305338,0,0,0,15.6
+305339,0,0,0,15.6
+305340,0,0,0,15.6
+305341,0,0,0,15.6
+305342,0,0,0,15.6
+305343,0,0,662409.5896,15.6
+305344,0,0,0,15.6
+305345,0,0,0,15.6
+305346,0,0,0,15.6
+305347,0,364784.03,0,15.6
+305348,0,0,0,15.6
+305349,0,0,0,15.6
+305350,0,0,0,15.6
+305351,335885.8678,0,0,15.6
+305352,0,0,0,15.6
+305353,0,0,0,15.6
+305354,0,0,0,15.6
+305355,0,0,0,15.6
+305356,0,0,0,15.6
+305357,0,0,0,15.6
+305358,0,0,0,15.6
+305359,0,0,0,15.6
+305360,0,0,0,15.6
+305361,0,0,0,15.6
+305362,0,0,0,15.6
+305363,0,0,0,15.6
+305364,0,0,0,15.6
+305365,0,0,0,15.6
+305366,0,0,0,15.6
+305367,0,0,0,15.6
+305368,0,0,0,15.6
+305369,0,0,0,15.6
+305370,0,0,0,15.6
+305371,0,0,0,15.6
+305372,0,0,0,15.6
+305373,0,0,0,15.6
+305374,0,0,0,15.6
+305375,0,0,0,15.6
+305376,0,0,0,15.6
+305377,0,0,662654.8548,15.6
+305378,0,0,0,15.6
+305379,0,0,0,15.6
+305380,0,0,0,15.6
+305381,0,0,0,15.6
+305382,0,360933.855,0,15.6
+305383,0,0,0,15.6
+305384,0,0,0,15.6
+305385,0,0,0,15.6
+305386,336691.6333,0,0,15.6
+305387,0,0,0,15.6
+305388,0,0,0,15.6
+305389,0,0,0,15.6
+305390,0,0,0,15.6
+305391,0,0,0,15.6
+305392,0,0,0,15.6
+305393,0,0,0,15.6
+305394,0,0,0,15.6
+305395,0,0,0,15.6
+305396,0,0,0,15.6
+305397,0,0,0,15.6
+305398,0,0,0,15.6
+305399,0,0,0,15.6
+305400,0,0,0,15.6
+305401,0,0,0,15.6
+305402,0,0,0,15.6
+305403,0,0,0,15.6
+305404,0,0,0,15.6
+305405,0,0,0,15.6
+305406,0,0,0,15.6
+305407,0,0,0,15.6
+305408,0,0,0,15.6
+305409,0,0,0,15.6
+305410,0,0,0,15.6
+305411,0,0,0,15.6
+305412,0,0,661453.0382,15.6
+305413,0,0,0,15.6
+305414,0,0,0,15.6
+305415,0,0,0,15.6
+305416,0,0,0,15.6
+305417,0,361337.8248,0,15.6
+305418,0,0,0,15.6
+305419,0,0,0,15.6
+305420,0,0,0,15.6
+305421,334781.8825,0,0,15.6
+305422,0,0,0,15.6
+305423,0,0,0,15.6
+305424,0,0,0,15.6
+305425,0,0,0,15.6
+305426,0,0,0,15.6
+305427,0,0,0,15.6
+305428,0,0,0,15.6
+305429,0,0,0,15.6
+305430,0,0,0,15.6
+305431,0,0,0,15.6
+305432,0,0,0,15.6
+305433,0,0,0,15.6
+305434,0,0,0,15.6
+305435,0,0,0,15.6
+305436,0,0,0,15.6
+305437,0,0,0,15.6
+305438,0,0,0,15.6
+305439,0,0,0,15.6
+305440,0,0,0,15.6
+305441,0,0,0,15.6
+305442,0,0,0,15.6
+305443,0,0,0,15.6
+305444,0,0,0,15.6
+305445,0,0,0,15.6
+305446,0,0,0,15.6
+305447,0,0,660381.3429,15.6
+305448,0,0,0,15.6
+305449,0,0,0,15.6
+305450,0,0,0,15.6
+305451,0,0,0,15.6
+305452,0,369389.4956,0,15.6
+305453,0,0,0,15.6
+305454,0,0,0,15.6
+305455,0,0,0,15.6
+305456,336300.506,0,0,15.6
+305457,0,0,0,15.6
+305458,0,0,0,15.6
+305459,0,0,0,15.6
+305460,0,0,0,15.6
+305461,0,0,0,15.6
+305462,0,0,0,15.6
+305463,0,0,0,15.6
+305464,0,0,0,15.6
+305465,0,0,0,15.6
+305466,0,0,0,15.6
+305467,0,0,0,15.6
+305468,0,0,0,15.6
+305469,0,0,0,15.6
+305470,0,0,0,15.6
+305471,0,0,0,15.6
+305472,0,0,0,15.6
+305473,0,0,0,15.6
+305474,0,0,0,15.6
+305475,0,0,0,15.6
+305476,0,0,0,15.6
+305477,0,0,0,15.6
+305478,0,0,0,15.6
+305479,0,0,0,15.6
+305480,0,0,0,15.6
+305481,0,0,660711.0639,15.6
+305482,0,0,0,15.6
+305483,0,0,0,15.6
+305484,0,0,0,15.6
+305485,0,0,0,15.6
+305486,0,0,0,15.6
+305487,0,369390.172,0,15.6
+305488,0,0,0,15.6
+305489,0,0,0,15.6
+305490,337174.0549,0,0,15.6
+305491,0,0,0,15.6
+305492,0,0,0,15.6
+305493,0,0,0,15.6
+305494,0,0,0,15.6
+305495,0,0,0,15.6
+305496,0,0,0,15.6
+305497,0,0,0,15.6
+305498,0,0,0,15.6
+305499,0,0,0,15.6
+305500,0,0,0,15.6
+305501,0,0,0,15.6
+305502,0,0,0,15.6
+305503,0,0,0,15.6
+305504,0,0,0,15.6
+305505,0,0,0,15.6
+305506,0,0,0,15.6
+305507,0,0,0,15.6
+305508,0,0,0,15.6
+305509,0,0,0,15.6
+305510,0,0,0,15.6
+305511,0,0,0,15.6
+305512,0,0,0,15.6
+305513,0,0,0,15.6
+305514,0,0,0,15.6
+305515,0,0,660482.0895,15.6
+305516,0,0,0,15.6
+305517,0,0,0,15.6
+305518,0,0,0,15.6
+305519,0,0,0,15.6
+305520,0,0,0,17.8
+305521,0,423015.6909,0,17.8
+305522,0,0,0,17.8
+305523,0,0,0,17.8
+305524,340412.7204,11197.28746,0,17.8
+305525,0,12968.68928,0,17.8
+305526,0,9375.867694,0,17.8
+305527,0,10552.84237,0,17.8
+305528,0,10940.29062,0,17.8
+305529,0,11068.91732,0,17.8
+305530,0,11325.40649,0,17.8
+305531,0,11453.26969,0,17.8
+305532,0,11580.88249,0,17.8
+305533,0,11962.24558,0,17.8
+305534,0,11835.3681,0,17.8
+305535,0,13272.09301,0,17.8
+305536,0,15802.91552,0,17.8
+305537,0,14750.70219,0,17.8
+305538,0,0,0,17.8
+305539,0,0,0,17.8
+305540,0,0,0,17.8
+305541,0,0,0,17.8
+305542,0,0,0,17.8
+305543,0,0,0,17.8
+305544,0,0,0,17.8
+305545,0,0,0,17.8
+305546,0,0,0,17.8
+305547,0,0,0,17.8
+305548,0,0,0,17.8
+305549,0,0,660576.6762,17.8
+305550,0,0,0,17.8
+305551,0,0,0,17.8
+305552,0,0,0,17.8
+305553,0,0,0,17.8
+305554,0,0,0,17.8
+305555,0,369366.2977,0,17.8
+305556,0,0,0,17.8
+305557,0,0,0,17.8
+305558,340413.277,0,0,17.8
+305559,0,0,0,17.8
+305560,0,14.80019284,0,17.8
+305561,0,0,0,17.8
+305562,0,0,0,17.8
+305563,0,0,0,17.8
+305564,0,0,0,17.8
+305565,0,0,0,17.8
+305566,0,0,0,17.8
+305567,0,0,0,17.8
+305568,0,0,0,17.8
+305569,0,0,0,17.8
+305570,0,0,0,17.8
+305571,0,0,0,17.8
+305572,0,0,0,17.8
+305573,0,0,0,17.8
+305574,0,0,0,17.8
+305575,0,0,0,17.8
+305576,0,0,0,17.8
+305577,0,0,0,17.8
+305578,0,0,0,17.8
+305579,0,0,0,17.8
+305580,0,0,0,20
+305581,16266.95534,0,660498.8339,20
+305582,0,0,0,20
+305583,1733.973965,509.9388754,0,20
+305584,19638.46014,6872.803604,0,20
+305585,36826.23614,14557.92337,0,20
+305586,24952.78808,54820.22943,0,20
+305587,28835.79972,31570.6552,0,20
+305588,30826.23446,38391.79488,0,20
+305589,32763.98632,57772.35867,0,20
+305590,41449.14421,62239.90227,0,20
+305591,39579.8025,57113.0198,0,20
+305592,39271.0275,60476.01562,0,20
+305593,40595.29306,61344.70678,0,20
+305594,41069.50015,61988.40375,0,20
+305595,41248.31247,63046.61103,0,20
+305596,41602.37986,64980.92272,0,20
+305597,41878.63353,66174.64841,0,20
+305598,42219.46091,66779.29393,0,20
+305599,42562.27356,67471.65572,0,20
+305600,42818.69074,67751.33494,0,20
+305601,43275.50893,68160.97703,0,20
+305602,43318.21191,68681.71553,0,20
+305603,43590.45162,69352.34395,0,20
+305604,42787.95402,69587.24661,0,20
+305605,43059.96522,70441.13794,0,20
+305606,43044.11621,70814.37511,0,20
+305607,43255.88315,71100.35433,0,20
+305608,43683.73542,71718.06772,0,20
+305609,43645.90731,72044.26194,0,20
+305610,43767.51689,72728.5245,0,20
+305611,44190.69072,72987.2677,0,20
+305612,43406.05414,72924.33482,0,20
+305613,43642.55707,73017.98201,0,20
+305614,43426.12477,73331.19047,0,20
+305615,43060.36386,73599.28518,0,20
+305616,43050.71959,73215.67662,0,20
+305617,42666.13051,73612.86942,0,20
+305618,42471.87747,73655.35571,0,20
+305619,42173.74173,73788.67317,0,20
+305620,40943.72488,73542.34626,0,20
+305621,40718.57731,73810.7626,0,20
+305622,40026.93399,73696.56461,0,20
+305623,40101.09942,73918.03533,0,20
+305624,39679.87331,73589.16845,0,20
+305625,39230.25299,73837.38072,0,20
+305626,38944.31069,73580.99542,0,20
+305627,38782.67105,73751.96996,0,20
+305628,38184.0947,73509.39353,0,20
+305629,38014.2914,73502.64871,0,20
+305630,37520.60972,73437.83381,0,20
+305631,37217.2618,73362.55121,0,20
+305632,36923.90692,73461.35741,0,20
+305633,36350.41506,72967.31341,0,20
+305634,36091.6958,73129.53233,0,20
+305635,35675.22733,73136.79078,0,20
+305636,35372.75013,73008.79744,0,20
+305637,34717.53236,72700.43047,0,20
+305638,34570.66128,72565.71284,0,20
+305639,33862.76575,72285.34567,0,20
+305640,33283.3001,71973.83084,0,21
+305641,29171.73863,65277.87659,0,21
+305642,28320.67386,64111.18841,0,21
+305643,27857.32057,64454.8283,0,21
+305644,27366.60082,63774.27788,0,21
+305645,27013.62027,63916.56563,0,21
+305646,26334.71848,63544.74889,0,21
+305647,26090.80039,63466.92045,0,21
+305648,25608.24162,63402.13507,0,21
+305649,25032.01515,62937.76663,0,21
+305650,24856.43741,63041.85834,0,21
+305651,24184.64485,62779.38759,0,21
+305652,23912.83659,62728.29821,0,21
+305653,23291.65795,62296.62791,0,21
+305654,23023.70928,62548.82468,0,21
+305655,22429.26188,62091.76274,0,21
+305656,22130.15863,62365.91579,0,21
+305657,21532.75195,61452.50836,0,21
+305658,21200.39002,61694.81396,0,21
+305659,20624.38995,62069.44184,0,21
+305660,20188.77425,60783.90309,0,21
+305661,19767.94382,61799.87485,0,21
+305662,19229.35883,60779.58568,0,21
+305663,18482.08883,61141.7368,0,21
+305664,18343.3824,60553.17597,0,21
+305665,16648.14031,60866.25724,0,21
+305666,16108.23929,60114.82246,0,21
+305667,16036.56114,60579.07786,0,21
+305668,15765.69633,59895.09839,0,21
+305669,15900.55457,60047.15754,0,21
+305670,15617.51783,59627.93913,0,21
+305671,15537.42576,59553.86498,0,21
+305672,15508.93431,59319.13226,0,21
+305673,15419.52942,59379.76603,0,21
+305674,15130.53252,58747.39244,0,21
+305675,15281.66444,58884.61457,0,21
+305676,14993.67141,58420.49007,0,21
+305677,14911.0397,58438.68681,0,21
+305678,14741.89539,57780.15342,0,21
+305679,14766.43007,57808.29603,0,21
+305680,14526.0967,57806.38715,0,21
+305681,14504.26104,57035.53987,0,21
+305682,14563.82362,57063.93513,0,21
+305683,14240.49537,56979.57182,0,21
+305684,14403.84869,56414.01867,0,21
+305685,14185.97302,54904.08205,0,21
+305686,14163.08529,54394.37259,0,21
+305687,14129.15758,53174.61757,0,21
+305688,14130.36876,53793.23557,0,21
+305689,13842.96486,53132.99605,0,21
+305690,13865.32537,52511.7845,0,21
+305691,13798.3265,52532.49052,0,21
+305692,13820.83652,51867.14536,0,21
+305693,13533.15025,51790.49719,0,21
+305694,13543.97208,51089.2759,0,21
+305695,13499.02516,51005.45695,0,21
+305696,13371.9346,50223.3423,0,21
+305697,13349.4107,50482.60539,0,21
+305698,13186.69823,49592.9617,0,21
+305699,13188.56833,49321.58259,0,21
+305700,12931.05859,49022.27888,0,21
+305701,900.245181,11058.39537,0,21
+305702,787.0491494,9313.48909,0,21
+305703,758.3919423,9072.299504,0,21
+305704,744.0036957,8789.780535,0,21
+305705,700.6180664,8553.265336,0,21
+305706,700.6180662,8071.305076,0,21
+305707,642.2040499,7802.207727,0,21
+305708,656.8699743,7767.669506,0,21
+305709,612.7430463,7314.741322,0,21
+305710,597.9464072,7256.351074,0,21
+305711,583.1045826,7007.875623,0,21
+305712,538.2989839,6531.624121,0,21
+305713,553.2818185,6705.820478,0,21
+305714,493.0521272,5992.118045,0,21
+305715,508.1852505,6209.744369,0,21
+305716,462.6272383,5696.375089,0,21
+305717,462.6272374,5685.030646,0,21
+305718,416.5724925,5405.516411,0,21
+305719,416.5724905,5163.960833,0,21
+305720,385.5724956,4896.82665,0,21
+305721,369.9779296,4854.689228,0,21
+305722,354.3175198,4619.170217,0,21
+305723,322.7896139,4315.430769,0,21
+305724,306.9167629,4076.620699,0,21
+305725,290.967299,4034.118209,0,21
+305726,258.824445,3793.448999,0,21
+305727,242.6229492,3483.535248,0,21
+305728,226.3284455,3483.535344,0,21
+305729,209.9353895,2948.069227,0,21
+305730,176.8269359,3152.580604,0,21
+305731,160.0951948,2672.821489,0,21
+305732,143.2314774,2586.372018,0,21
+305733,126.2226471,2375.490176,0,21
+305734,91.6981903,2159.9267,0,21
+305735,74.13125555,2014.275928,0,21
+305736,65.25519419,1739.627087,0,21
+305737,38.15889807,1392.261517,0,21
+305738,9.970952551,1392.261571,0,21
+305739,0,1348.192382,0,21
+305740,0,1322.980205,0,21
+305741,0,1288.170647,0,21
+305742,0,1278.603976,0,21
+305743,0,1218.197001,0,21
+305744,0,1208.537621,0,21
+305745,0,1157.434366,0,21
+305746,0,1163.54989,0,21
+305747,0,1112.288485,0,21
+305748,0,1066.824214,0,21
+305749,0,1066.824243,0,21
+305750,0,1005.110866,0,21
+305751,0,995.0729084,0,21
+305752,0,969.0672684,0,21
+305753,0,922.6141123,0,21
+305754,0,922.6142595,0,21
+305755,0,849.2814732,0,21
+305756,0,859.7961239,0,21
+305757,0,812.1744478,0,21
+305758,0,774.5367861,0,21
+305759,0,785.7066312,0,21
+305760,0,721.2995303,0,21
+305761,0,721.2994915,0,21
+305762,0,694.5244312,0,21
+305763,0,640.6459602,0,21
+305764,0,640.6458713,0,21
+305765,0,586.3053615,0,21
+305766,0,586.3052405,0,21
+305767,0,531.4694971,0,21
+305768,0,531.4694977,0,21
+305769,0,489.9929337,0,21
+305770,0,462.1644279,0,21
+305771,0,448.1944047,0,21
+305772,0,391.9196425,0,21
+305773,0,391.9196427,0,21
+305774,0,391.9196429,0,21
+305775,0,349.266828,0,21
+305776,0,334.9569108,0,21
+305777,0,334.9569109,0,21
+305778,0,277.2100317,0,21
+305779,0,262.6360906,0,21
+305780,0,248.0023302,0,21
+305781,0,203.7107284,0,21
+305782,0,188.8041692,0,21
+305783,0,173.8185765,0,21
+305784,0,128.3246219,0,21
+305785,0,128.3246219,0,21
+305786,0,97.4595506,0,21
+305787,0,66.03389907,0,21
+305788,0,33.81663859,0,21
+305789,0,33.81663856,0,21
+305790,0,0,0,21
+305791,0,0,0,21
+305792,0,0,0,21
+305793,0,0,0,21
+305794,0,0,0,21
+305795,0,0,0,21
+305796,0,0,0,21
+305797,0,0,0,21
+305798,0,0,0,21
+305799,0,0,0,21
+305800,0,0,0,21
+305801,0,0,0,21
+305802,0,0,0,21
+305803,0,0,0,21
+305804,0,0,0,21
+305805,0,0,0,21
+305806,0,0,0,21
+305807,0,0,0,21
+305808,0,0,0,21
+305809,0,0,0,21
+305810,0,0,0,21
+305811,0,0,0,21
+305812,0,0,0,21
+305813,0,0,0,21
+305814,0,0,0,21
+305815,0,0,0,21
+305816,0,0,0,21
+305817,0,0,0,21
+305818,0,0,0,21
+305819,0,0,0,21
+305820,0,0,0,21
+305821,0,0,0,21
+305822,0,0,0,21
+305823,0,0,0,21
+305824,0,0,0,21
+305825,0,0,0,21
+305826,0,0,0,21
+305827,0,0,0,21
+305828,0,0,0,21
+305829,0,0,0,21
+305830,0,0,0,21
+305831,0,0,0,21
+305832,0,0,0,21
+305833,0,0,0,21
+305834,0,0,0,21
+305835,0,0,0,21
+305836,0,0,0,21
+305837,0,0,0,21
+305838,0,0,0,21
+305839,0,0,0,21
+305840,0,0,0,21
+305841,0,0,0,21
+305842,0,0,0,21
+305843,0,0,0,21
+305844,0,0,0,21
+305845,0,0,0,21
+305846,0,0,0,21
+305847,0,0,0,21
+305848,0,0,0,21
+305849,0,0,0,21
+305850,0,0,0,21
+305851,0,0,0,21
+305852,0,0,0,21
+305853,0,0,0,21
+305854,0,0,0,21
+305855,0,0,0,21
+305856,0,0,0,21
+305857,0,0,0,21
+305858,0,0,0,21
+305859,0,0,0,21
+305860,0,0,0,21
+305861,0,0,0,21
+305862,0,0,0,21
+305863,0,0,0,21
+305864,0,0,0,21
+305865,0,0,0,21
+305866,0,0,0,21
+305867,0,0,0,21
+305868,0,0,0,21
+305869,0,0,0,21
+305870,0,0,0,21
+305871,0,0,0,21
+305872,0,0,0,21
+305873,0,0,0,21
+305874,0,0,0,21
+305875,0,0,0,21
+305876,0,0,0,21
+305877,0,0,0,21
+305878,0,0,0,21
+305879,0,0,0,21
+305880,0,0,0,21
+305881,0,0,0,21
+305882,0,0,0,21
+305883,0,0,0,21
+305884,0,0,0,21
+305885,0,0,0,21
+305886,0,0,0,21
+305887,0,0,0,21
+305888,0,0,0,21
+305889,0,0,0,21
+305890,0,0,0,21
+305891,0,0,0,21
+305892,0,0,0,21
+305893,0,0,0,21
+305894,0,0,0,21
+305895,0,0,0,21
+305896,0,0,0,21
+305897,0,0,0,21
+305898,0,0,0,21
+305899,0,0,0,21
+305900,0,0,0,21
+305901,0,0,0,21
+305902,0,0,0,21
+305903,0,0,0,21
+305904,0,0,0,21
+305905,0,0,0,21
+305906,0,0,0,21
+305907,0,0,0,21
+305908,0,0,0,21
+305909,0,0,0,21
+305910,0,0,0,21
+305911,0,0,0,21
+305912,0,0,0,21
+305913,0,0,0,21
+305914,0,0,0,21
+305915,0,0,0,21
+305916,0,0,0,21
+305917,0,0,0,21
+305918,0,0,0,21
+305919,0,0,0,21
+305920,0,0,0,21
+305921,0,0,0,21
+305922,0,0,0,21
+305923,0,0,0,21
+305924,0,0,0,21
+305925,0,0,0,21
+305926,0,0,0,21
+305927,0,0,0,21
+305928,0,0,0,21
+305929,0,0,0,21
+305930,0,0,0,21
+305931,0,0,0,21
+305932,0,0,0,21
+305933,0,0,0,21
+305934,0,0,0,21
+305935,0,0,0,21
+305936,0,0,0,21
+305937,0,0,0,21
+305938,0,0,0,21
+305939,0,0,0,21
+305940,0,0,0,21
+305941,0,0,0,21
+305942,0,0,0,21
+305943,0,0,0,21
+305944,0,0,0,21
+305945,0,0,0,21
+305946,0,0,0,21
+305947,0,0,0,21
+305948,0,0,0,21
+305949,0,0,0,21
+305950,0,0,0,21
+305951,0,0,0,21
+305952,0,0,0,21
+305953,0,0,0,21
+305954,0,0,0,21
+305955,0,0,0,21
+305956,0,0,0,21
+305957,0,0,0,21
+305958,0,0,0,21
+305959,0,0,0,21
+305960,0,0,0,21
+305961,0,0,0,21
+305962,0,0,0,21
+305963,0,0,0,21
+305964,0,0,0,21
+305965,0,0,0,21
+305966,0,0,0,21
+305967,0,0,0,21
+305968,0,0,0,21
+305969,0,0,0,21
+305970,0,0,0,21
+305971,0,0,0,21
+305972,0,0,0,21
+305973,0,0,0,21
+305974,0,0,0,21
+305975,0,0,0,21
+305976,0,0,0,21
+305977,0,0,0,21
+305978,0,0,0,21
+305979,0,0,0,21
+305980,0,0,0,21
+305981,0,0,0,21
+305982,0,0,0,21
+305983,0,0,0,21
+305984,0,0,0,21
+305985,0,0,0,21
+305986,0,0,0,21
+305987,0,0,0,21
+305988,0,0,0,21
+305989,0,0,0,21
+305990,0,0,0,21
+305991,0,0,0,21
+305992,0,0,0,21
+305993,0,0,0,21
+305994,0,0,0,21
+305995,0,0,0,21
+305996,0,0,0,21
+305997,0,0,0,21
+305998,0,0,0,21
+305999,0,0,0,21
+306000,0,0,0,21
+306001,0,0,0,21
+306002,0,0,0,21
+306003,0,0,0,21
+306004,0,0,0,21
+306005,0,0,0,21
+306006,0,0,0,21
+306007,0,0,0,21
+306008,0,0,0,21
+306009,0,0,0,21
+306010,0,0,0,21
+306011,0,0,0,21
+306012,0,0,0,21
+306013,0,0,0,21
+306014,0,0,0,21
+306015,0,0,0,21
+306016,0,0,0,21
+306017,0,0,0,21
+306018,0,0,0,21
+306019,0,0,0,21
+306020,0,0,0,21
+306021,0,0,0,21
+306022,0,0,0,21
+306023,0,0,0,21
+306024,0,0,0,21
+306025,0,0,0,21
+306026,0,0,0,21
+306027,0,0,0,21
+306028,0,0,0,21
+306029,0,0,0,21
+306030,0,0,0,21
+306031,0,0,0,21
+306032,0,0,0,21
+306033,0,0,0,21
+306034,0,0,0,21
+306035,0,0,0,21
+306036,0,0,0,21
+306037,0,0,0,21
+306038,0,0,0,21
+306039,0,0,0,21
+306040,0,0,0,21
+306041,0,0,0,21
+306042,0,0,0,21
+306043,0,0,0,21
+306044,0,0,0,21
+306045,0,0,0,21
+306046,0,0,0,21
+306047,0,0,0,21
+306048,0,0,0,21
+306049,0,0,0,21
+306050,0,0,0,21
+306051,0,0,0,21
+306052,0,0,0,21
+306053,0,0,0,21
+306054,0,0,0,21
+306055,0,0,0,21
+306056,0,0,0,21
+306057,0,0,0,21
+306058,0,0,0,21
+306059,0,0,0,21
+306060,0,0,0,21
+306061,0,0,0,21
+306062,0,0,0,21
+306063,0,0,0,21
+306064,0,0,0,21
+306065,0,0,0,21
+306066,0,0,0,21
+306067,0,0,0,21
+306068,0,0,0,21
+306069,0,0,0,21
+306070,0,0,0,21
+306071,0,0,0,21
+306072,0,0,0,21
+306073,0,0,0,21
+306074,0,0,0,21
+306075,0,0,0,21
+306076,0,0,0,21
+306077,0,0,0,21
+306078,0,0,0,21
+306079,0,0,0,21
+306080,0,0,0,21
+306081,0,0,0,21
+306082,0,0,0,21
+306083,0,0,0,21
+306084,0,0,0,21
+306085,0,0,0,21
+306086,0,0,0,21
+306087,0,0,0,21
+306088,0,0,0,21
+306089,0,0,0,21
+306090,0,0,0,21
+306091,0,0,0,21
+306092,0,0,0,21
+306093,0,0,0,21
+306094,0,0,0,21
+306095,0,0,0,21
+306096,0,0,0,21
+306097,0,0,0,21
+306098,0,0,0,21
+306099,0,0,0,21
+306100,0,0,0,21
+306101,0,0,0,21
+306102,0,0,0,21
+306103,0,0,0,21
+306104,0,0,0,21
+306105,0,0,0,21
+306106,0,0,0,21
+306107,0,0,0,21
+306108,0,0,0,21
+306109,0,0,0,21
+306110,0,0,0,21
+306111,0,0,0,21
+306112,0,0,0,21
+306113,0,0,0,21
+306114,0,0,0,21
+306115,0,0,0,21
+306116,0,0,0,21
+306117,0,0,0,21
+306118,0,0,0,21
+306119,0,0,0,21
+306120,0,0,0,21
+306121,0,0,0,21
+306122,0,0,0,21
+306123,0,0,0,21
+306124,0,0,0,21
+306125,0,0,0,21
+306126,0,0,0,21
+306127,0,0,0,21
+306128,0,0,0,21
+306129,0,0,0,21
+306130,0,0,0,21
+306131,0,0,0,21
+306132,0,0,0,21
+306133,0,0,0,21
+306134,0,0,0,21
+306135,0,0,0,21
+306136,0,0,0,21
+306137,0,0,0,21
+306138,0,0,0,21
+306139,0,0,0,21
+306140,0,0,0,21
+306141,0,0,0,21
+306142,0,0,0,21
+306143,0,0,0,21
+306144,0,0,0,21
+306145,0,0,0,21
+306146,0,0,0,21
+306147,0,0,0,21
+306148,0,0,0,21
+306149,0,0,0,21
+306150,0,0,0,21
+306151,0,0,0,21
+306152,0,0,0,21
+306153,0,0,0,21
+306154,0,0,0,21
+306155,0,0,0,21
+306156,0,0,0,21
+306157,0,0,0,21
+306158,0,0,0,21
+306159,0,0,0,21
+306160,0,0,0,21
+306161,0,0,0,21
+306162,0,0,0,21
+306163,0,0,0,21
+306164,0,0,0,21
+306165,0,0,0,21
+306166,0,0,0,21
+306167,0,0,0,21
+306168,0,0,0,21
+306169,0,0,0,21
+306170,0,0,0,21
+306171,0,0,0,21
+306172,0,0,0,21
+306173,0,0,0,21
+306174,0,0,0,21
+306175,0,0,0,21
+306176,0,0,0,21
+306177,0,0,0,21
+306178,0,0,0,21
+306179,0,0,0,21
+306180,0,0,0,21
+306181,0,0,0,21
+306182,0,0,0,21
+306183,0,0,0,21
+306184,0,0,0,21
+306185,0,0,0,21
+306186,0,0,0,21
+306187,0,0,0,21
+306188,0,0,0,21
+306189,0,0,0,21
+306190,0,0,0,21
+306191,0,0,0,21
+306192,0,0,0,21
+306193,0,0,0,21
+306194,0,0,0,21
+306195,0,0,0,21
+306196,0,0,0,21
+306197,0,0,0,21
+306198,0,0,0,21
+306199,0,0,0,21
+306200,0,0,0,21
+306201,0,0,0,21
+306202,0,0,0,21
+306203,0,0,0,21
+306204,0,0,0,21
+306205,0,0,0,21
+306206,0,0,0,21
+306207,0,0,0,21
+306208,0,0,0,21
+306209,0,0,0,21
+306210,0,0,0,21
+306211,0,0,0,21
+306212,0,0,0,21
+306213,0,0,0,21
+306214,0,0,0,21
+306215,0,0,0,21
+306216,0,0,0,21
+306217,0,0,0,21
+306218,0,0,0,21
+306219,0,0,0,21
+306220,0,0,0,21
+306221,0,0,0,21
+306222,0,0,0,21
+306223,0,0,0,21
+306224,0,0,0,21
+306225,0,0,0,21
+306226,0,0,0,21
+306227,0,0,0,21
+306228,0,0,0,21
+306229,0,0,0,21
+306230,0,0,0,21
+306231,0,0,0,21
+306232,0,0,0,21
+306233,0,0,0,21
+306234,0,0,0,21
+306235,0,0,0,21
+306236,0,0,0,21
+306237,0,0,0,21
+306238,0,0,0,21
+306239,0,0,0,21
+306240,0,0,0,21
+306241,0,0,0,21
+306242,0,0,0,21
+306243,0,0,0,21
+306244,0,0,0,21
+306245,0,0,0,21
+306246,0,0,0,21
+306247,0,0,0,21
+306248,0,0,0,21
+306249,0,0,0,21
+306250,0,0,0,21
+306251,0,0,0,21
+306252,0,0,0,21
+306253,0,0,0,21
+306254,0,0,0,21
+306255,0,0,0,21
+306256,0,0,0,21
+306257,0,0,0,21
+306258,0,0,0,21
+306259,0,0,0,21
+306260,0,0,0,21
+306261,0,0,0,21
+306262,0,0,0,21
+306263,0,0,0,21
+306264,0,0,0,21
+306265,0,0,0,21
+306266,0,0,0,21
+306267,0,0,0,21
+306268,0,0,0,21
+306269,0,0,0,21
+306270,0,0,0,21
+306271,0,0,0,21
+306272,0,0,0,21
+306273,0,0,0,21
+306274,0,0,0,21
+306275,0,0,0,21
+306276,0,0,0,21
+306277,0,0,0,21
+306278,0,0,0,21
+306279,0,0,0,21
+306280,0,0,0,21
+306281,0,0,0,21
+306282,0,0,0,21
+306283,0,0,0,21
+306284,0,0,0,21
+306285,0,0,0,21
+306286,0,0,0,21
+306287,0,0,0,21
+306288,0,0,0,21
+306289,0,0,0,21
+306290,0,0,0,21
+306291,0,0,0,21
+306292,0,0,0,21
+306293,0,0,0,21
+306294,0,0,0,21
+306295,0,0,0,21
+306296,0,0,0,21
+306297,0,0,0,21
+306298,0,0,0,21
+306299,0,0,0,21
+306300,0,0,0,21
+306301,0,0,0,21
+306302,0,0,0,21
+306303,0,0,0,21
+306304,0,0,0,21
+306305,0,0,0,21
+306306,0,0,0,21
+306307,0,0,0,21
+306308,0,0,0,21
+306309,0,0,0,21
+306310,0,0,0,21
+306311,0,0,0,21
+306312,0,0,0,21
+306313,0,0,0,21
+306314,0,0,0,21
+306315,0,0,0,21
+306316,0,0,0,21
+306317,0,0,0,21
+306318,0,0,0,21
+306319,0,0,0,21
+306320,0,0,0,21
+306321,0,0,0,21
+306322,0,0,0,21
+306323,0,0,0,21
+306324,0,0,0,21
+306325,0,0,0,21
+306326,0,0,0,21
+306327,0,0,0,21
+306328,0,0,0,21
+306329,0,0,0,21
+306330,0,0,0,21
+306331,0,0,0,21
+306332,0,0,0,21
+306333,0,0,0,21
+306334,0,0,0,21
+306335,0,0,0,21
+306336,0,0,0,21
+306337,0,0,0,21
+306338,0,0,0,21
+306339,0,0,0,21
+306340,0,0,0,21
+306341,0,0,0,21
+306342,0,0,0,21
+306343,0,0,0,21
+306344,0,0,0,21
+306345,0,0,0,21
+306346,0,0,0,21
+306347,0,0,0,21
+306348,0,0,0,21
+306349,0,0,0,21
+306350,0,0,0,21
+306351,0,0,0,21
+306352,0,0,0,21
+306353,0,0,0,21
+306354,0,0,0,21
+306355,0,0,0,21
+306356,0,0,0,21
+306357,0,0,0,21
+306358,0,0,0,21
+306359,0,0,0,21
+306360,0,0,0,21
+306361,0,0,0,21
+306362,0,0,0,21
+306363,0,0,0,21
+306364,0,0,0,21
+306365,0,0,0,21
+306366,0,0,0,21
+306367,0,0,0,21
+306368,0,0,0,21
+306369,0,0,0,21
+306370,0,0,0,21
+306371,0,0,0,21
+306372,0,0,0,21
+306373,0,0,0,21
+306374,0,0,0,21
+306375,0,0,0,21
+306376,0,0,0,21
+306377,0,0,0,21
+306378,0,0,0,21
+306379,0,0,0,21
+306380,0,0,0,21
+306381,0,0,0,21
+306382,0,0,0,21
+306383,0,0,0,21
+306384,0,0,0,21
+306385,0,0,0,21
+306386,0,0,0,21
+306387,0,0,0,21
+306388,0,0,0,21
+306389,0,0,0,21
+306390,0,0,0,21
+306391,0,0,0,21
+306392,0,0,0,21
+306393,0,0,0,21
+306394,0,0,0,21
+306395,0,0,0,21
+306396,0,0,0,21
+306397,0,0,0,21
+306398,0,0,0,21
+306399,0,0,0,21
+306400,0,0,0,21
+306401,0,0,0,21
+306402,0,0,0,21
+306403,0,0,0,21
+306404,0,0,0,21
+306405,0,0,0,21
+306406,0,0,0,21
+306407,0,0,0,21
+306408,0,0,0,21
+306409,0,0,0,21
+306410,0,0,0,21
+306411,0,0,0,21
+306412,0,0,0,21
+306413,0,0,0,21
+306414,0,0,0,21
+306415,0,0,0,21
+306416,0,0,0,21
+306417,0,0,0,21
+306418,0,0,0,21
+306419,0,0,0,21
+306420,0,0,0,21
+306421,0,0,0,21
+306422,0,0,0,21
+306423,0,0,0,21
+306424,0,0,0,21
+306425,0,0,0,21
+306426,0,0,0,21
+306427,0,0,0,21
+306428,0,0,0,21
+306429,0,0,0,21
+306430,0,0,0,21
+306431,0,0,0,21
+306432,0,0,0,21
+306433,0,0,0,21
+306434,0,0,0,21
+306435,0,0,0,21
+306436,0,0,0,21
+306437,0,0,0,21
+306438,0,0,0,21
+306439,0,0,0,21
+306440,0,0,0,21
+306441,0,0,0,21
+306442,0,0,0,21
+306443,0,0,0,21
+306444,0,0,0,21
+306445,0,0,0,21
+306446,0,0,0,21
+306447,0,0,0,21
+306448,0,0,0,21
+306449,0,0,0,21
+306450,0,0,0,21
+306451,0,0,0,21
+306452,0,0,0,21
+306453,0,0,0,21
+306454,0,0,0,21
+306455,0,0,0,21
+306456,0,0,0,21
+306457,0,0,0,21
+306458,0,0,0,21
+306459,0,0,0,21
+306460,0,0,0,21
+306461,0,0,0,21
+306462,0,0,0,21
+306463,0,0,0,21
+306464,0,0,0,21
+306465,0,0,0,21
+306466,0,0,0,21
+306467,0,185.6631804,0,21
+306468,0,1522.152576,0,21
+306469,0,871.5425518,0,21
+306470,0,1361.710424,0,21
+306471,0,1522.148358,0,21
+306472,0,1681.350908,0,21
+306473,0,1839.415945,0,21
+306474,0,1996.427064,0,21
+306475,0,2152.454602,0,21
+306476,0,2461.792403,0,21
+306477,0,2461.792376,0,21
+306478,0,2767.824584,0,21
+306479,0,2767.824645,0,21
+306480,0,3070.858285,0,21
+306481,0,3221.329273,0,21
+306482,0,3371.139639,0,21
+306483,0,3520.312926,0,21
+306484,0,3668.871213,0,21
+306485,0,3816.834587,0,21
+306486,0,4111.050522,0,21
+306487,0,4111.050573,0,21
+306488,0,4403.093738,0,21
+306489,0,4403.093952,0,21
+306490,0,4693.079842,0,21
+306491,0,4837.333587,0,21
+306492,0,4981.110123,0,21
+306493,0,4981.110037,0,21
+306494,0,5409.680616,0,21
+306495,0,5267.273764,0,21
+306496,0,5551.650273,0,21
+306497,0,5834.311411,0,21
+306498,0,5857.183025,0,21
+306499,0,6230.264715,0,21
+306500,0,6279.313333,0,21
+306501,0,6419.217879,0,21
+306502,0,6755.345926,0,21
+306503,0,6745.85396,0,21
+306504,0,7060.75961,0,21
+306505,0,7208.13913,0,21
+306506,0,7245.336577,0,21
+306507,0,7538.721944,0,21
+306508,0,7812.261202,0,21
+306509,0,7730.42421,0,21
+306510,0,8139.194978,0,21
+306511,0,8157.272489,0,21
+306512,0,8464.026184,0,21
+306513,0,8464.02635,0,21
+306514,0,8634.562211,0,21
+306515,0,8921.166339,0,21
+306516,0,8929.985576,0,21
+306517,0,9090.326357,0,21
+306518,0,9374.86193,0,21
+306519,0,9392.283774,0,21
+306520,0,9692.780803,0,21
+306521,0,9684.139966,0,21
+306522,0,9859.671434,0,21
+306523,0,9991.85505,0,21
+306524,0,10289.5411,0,21
+306525,0,10289.54118,0,21
+306526,0,10454.82785,0,21
+306527,0,10602.77219,0,21
+306528,0,10880.87634,0,21
+306529,0,10880.87635,0,21
+306530,0,10931.11598,0,21
+306531,0,11320.9594,0,21
+306532,0,11337.607,0,21
+306533,0,11483.62005,0,21
+306534,0,11645.82764,0,21
+306535,0,11774.71722,0,21
+306536,0,11791.17634,0,21
+306537,0,12209.08412,0,21
+306538,0,12080.96416,0,21
+306539,0,12369.55754,0,21
+306540,0,12513.4129,0,21
+306541,0,0,0,21
+306542,0,0,0,21
+306543,0,0,0,21
+306544,0,0,0,21
+306545,334816.873,362532.792,658011.7215,21
+306546,0,0,0,21
+306547,0,0,0,21
+306548,0,0,0,21
+306549,0,0,0,21
+306550,0,0,0,21
+306551,0,0,0,21
+306552,0,0,0,21
+306553,0,0,0,21
+306554,0,0,0,21
+306555,0,0,0,21
+306556,0,0,0,21
+306557,0,0,0,21
+306558,0,0,0,21
+306559,0,0,0,21
+306560,0,0,0,21
+306561,0,0,0,21
+306562,0,0,0,21
+306563,0,0,0,21
+306564,0,0,0,21
+306565,0,0,0,21
+306566,0,0,0,21
+306567,0,0,0,21
+306568,0,0,0,21
+306569,0,0,0,21
+306570,0,0,0,21
+306571,0,0,0,21
+306572,0,0,0,21
+306573,0,0,0,21
+306574,0,0,0,21
+306575,0,0,0,21
+306576,0,0,0,21
+306577,0,0,0,21
+306578,0,0,0,21
+306579,333783.8204,365532.2557,658792.0418,21
+306580,0,0,0,21
+306581,0,0,0,21
+306582,0,0,0,21
+306583,0,0,0,21
+306584,0,0,0,21
+306585,0,0,0,21
+306586,0,0,0,21
+306587,0,0,0,21
+306588,0,0,0,21
+306589,0,0,0,21
+306590,0,0,0,21
+306591,0,0,0,21
+306592,0,0,0,21
+306593,0,0,0,21
+306594,0,0,0,21
+306595,0,0,0,21
+306596,0,0,0,21
+306597,0,0,0,21
+306598,0,0,0,21
+306599,0,0,0,21
+306600,0,0,0,15.6
+306601,0,0,0,15.6
+306602,0,0,0,15.6
+306603,0,0,0,15.6
+306604,0,0,0,15.6
+306605,0,0,0,15.6
+306606,0,0,0,15.6
+306607,0,0,0,15.6
+306608,0,0,0,15.6
+306609,0,0,0,15.6
+306610,0,0,0,15.6
+306611,0,0,0,15.6
+306612,0,0,0,15.6
+306613,336669.0636,365511.7485,659040.1947,15.6
+306614,0,0,0,15.6
+306615,0,0,0,15.6
+306616,0,0,0,15.6
+306617,0,0,0,15.6
+306618,0,0,0,15.6
+306619,0,0,0,15.6
+306620,0,0,0,15.6
+306621,0,0,0,15.6
+306622,0,0,0,15.6
+306623,0,0,0,15.6
+306624,0,0,0,15.6
+306625,0,0,0,15.6
+306626,0,0,0,15.6
+306627,0,0,0,15.6
+306628,0,0,0,15.6
+306629,0,0,0,15.6
+306630,0,0,0,15.6
+306631,0,0,0,15.6
+306632,0,0,0,15.6
+306633,0,0,0,15.6
+306634,0,0,0,15.6
+306635,0,0,0,15.6
+306636,0,0,0,15.6
+306637,0,0,0,15.6
+306638,0,0,0,15.6
+306639,0,0,0,15.6
+306640,0,0,0,15.6
+306641,0,0,0,15.6
+306642,0,0,0,15.6
+306643,0,0,0,15.6
+306644,0,0,0,15.6
+306645,0,0,0,15.6
+306646,0,0,0,15.6
+306647,334316.787,367163.8981,659004.2188,15.6
+306648,0,0,0,15.6
+306649,0,0,0,15.6
+306650,0,0,0,15.6
+306651,0,0,0,15.6
+306652,0,0,0,15.6
+306653,0,0,0,15.6
+306654,0,0,0,15.6
+306655,0,0,0,15.6
+306656,0,0,0,15.6
+306657,0,0,0,15.6
+306658,0,0,0,15.6
+306659,0,0,0,15.6
+306660,0,0,0,15.6
+306661,0,0,0,15.6
+306662,0,0,0,15.6
+306663,0,0,0,15.6
+306664,0,0,0,15.6
+306665,0,0,0,15.6
+306666,0,0,0,15.6
+306667,0,0,0,15.6
+306668,0,0,0,15.6
+306669,0,0,0,15.6
+306670,0,0,0,15.6
+306671,0,0,0,15.6
+306672,0,0,0,15.6
+306673,0,0,0,15.6
+306674,0,0,0,15.6
+306675,0,0,0,15.6
+306676,0,0,0,15.6
+306677,0,0,0,15.6
+306678,0,0,0,15.6
+306679,0,0,0,15.6
+306680,0,0,0,15.6
+306681,336882.8364,366998.6663,659244.8795,15.6
+306682,0,0,0,15.6
+306683,0,0,0,15.6
+306684,0,0,0,15.6
+306685,0,0,0,15.6
+306686,0,0,0,15.6
+306687,0,0,0,15.6
+306688,0,0,0,15.6
+306689,0,0,0,15.6
+306690,0,0,0,15.6
+306691,0,0,0,15.6
+306692,0,0,0,15.6
+306693,0,0,0,15.6
+306694,0,0,0,15.6
+306695,0,0,0,15.6
+306696,0,0,0,15.6
+306697,0,0,0,15.6
+306698,0,0,0,15.6
+306699,0,0,0,15.6
+306700,0,0,0,15.6
+306701,0,0,0,15.6
+306702,0,0,0,15.6
+306703,0,0,0,15.6
+306704,0,0,0,15.6
+306705,0,0,0,15.6
+306706,0,0,0,15.6
+306707,0,0,0,15.6
+306708,0,0,0,15.6
+306709,0,0,0,15.6
+306710,0,0,0,15.6
+306711,0,0,0,15.6
+306712,0,0,0,15.6
+306713,0,0,0,15.6
+306714,0,0,0,15.6
+306715,334923.7781,366427.8516,659148.985,15.6
+306716,0,0,0,15.6
+306717,0,0,0,15.6
+306718,0,0,0,15.6
+306719,0,0,0,15.6
+306720,0,0,0,15.6
+306721,0,0,0,15.6
+306722,0,0,0,15.6
+306723,0,0,0,15.6
+306724,0,0,0,15.6
+306725,0,0,0,15.6
+306726,0,0,0,15.6
+306727,0,0,0,15.6
+306728,0,0,0,15.6
+306729,0,0,0,15.6
+306730,0,0,0,15.6
+306731,0,0,0,15.6
+306732,0,0,0,15.6
+306733,0,0,0,15.6
+306734,0,0,0,15.6
+306735,0,0,0,15.6
+306736,0,0,0,15.6
+306737,0,0,0,15.6
+306738,0,0,0,15.6
+306739,0,0,0,15.6
+306740,0,0,0,15.6
+306741,0,0,0,15.6
+306742,0,0,0,15.6
+306743,0,0,0,15.6
+306744,0,0,0,15.6
+306745,0,0,0,15.6
+306746,0,0,0,15.6
+306747,0,0,0,15.6
+306748,0,0,0,15.6
+306749,336542.7454,366795.5585,659630.7747,15.6
+306750,0,0,0,15.6
+306751,0,0,0,15.6
+306752,0,0,0,15.6
+306753,0,0,0,15.6
+306754,0,0,0,15.6
+306755,0,0,0,15.6
+306756,0,0,0,15.6
+306757,0,0,0,15.6
+306758,0,0,0,15.6
+306759,0,0,0,15.6
+306760,0,0,0,15.6
+306761,0,0,0,15.6
+306762,0,0,0,15.6
+306763,0,0,0,15.6
+306764,0,0,0,15.6
+306765,0,0,0,15.6
+306766,0,0,0,15.6
+306767,0,0,0,15.6
+306768,0,0,0,15.6
+306769,0,0,0,15.6
+306770,0,0,0,15.6
+306771,0,0,0,15.6
+306772,0,0,0,15.6
+306773,0,0,0,15.6
+306774,0,0,0,15.6
+306775,0,0,0,15.6
+306776,0,0,0,15.6
+306777,0,0,0,15.6
+306778,0,0,0,15.6
+306779,0,0,0,15.6
+306780,0,0,0,15.6
+306781,0,0,0,15.6
+306782,0,0,0,15.6
+306783,336963.0391,369387.9931,659610.2577,15.6
+306784,0,0,0,15.6
+306785,0,0,0,15.6
+306786,0,0,0,15.6
+306787,0,0,0,15.6
+306788,0,0,0,15.6
+306789,0,0,0,15.6
+306790,0,0,0,15.6
+306791,0,0,0,15.6
+306792,0,0,0,15.6
+306793,0,0,0,15.6
+306794,0,0,0,15.6
+306795,0,0,0,15.6
+306796,0,0,0,15.6
+306797,0,0,0,15.6
+306798,0,0,0,15.6
+306799,0,0,0,15.6
+306800,0,0,0,15.6
+306801,0,0,0,15.6
+306802,0,0,0,15.6
+306803,0,0,0,15.6
+306804,0,0,0,15.6
+306805,0,0,0,15.6
+306806,0,0,0,15.6
+306807,0,0,0,15.6
+306808,0,0,0,15.6
+306809,0,0,0,15.6
+306810,0,0,0,15.6
+306811,0,0,0,15.6
+306812,0,0,0,15.6
+306813,0,0,0,15.6
+306814,0,0,0,15.6
+306815,0,0,0,15.6
+306816,0,0,0,15.6
+306817,335552.0834,369387.87,658666.3546,15.6
+306818,0,0,0,15.6
+306819,0,0,0,15.6
+306820,0,0,0,15.6
+306821,0,0,0,15.6
+306822,0,0,0,15.6
+306823,0,0,0,15.6
+306824,0,0,0,15.6
+306825,0,0,0,15.6
+306826,0,0,0,15.6
+306827,0,0,0,15.6
+306828,0,0,0,15.6
+306829,0,0,0,15.6
+306830,0,0,0,15.6
+306831,0,0,0,15.6
+306832,0,0,0,15.6
+306833,0,0,0,15.6
+306834,0,0,0,15.6
+306835,0,0,0,15.6
+306836,0,0,0,15.6
+306837,0,0,0,15.6
+306838,0,0,0,15.6
+306839,0,0,0,15.6
+306840,0,0,0,15.6
+306841,0,0,0,15.6
+306842,0,0,0,15.6
+306843,0,0,0,15.6
+306844,0,0,0,15.6
+306845,0,0,0,15.6
+306846,0,0,0,15.6
+306847,0,0,0,15.6
+306848,0,0,0,15.6
+306849,0,0,0,15.6
+306850,0,0,0,15.6
+306851,0,369377.3792,658470.6214,15.6
+306852,337763.0859,0,0,15.6
+306853,0,0,0,15.6
+306854,0,0,0,15.6
+306855,0,0,0,15.6
+306856,0,0,0,15.6
+306857,0,0,0,15.6
+306858,0,0,0,15.6
+306859,0,0,0,15.6
+306860,0,0,0,15.6
+306861,0,0,0,15.6
+306862,0,0,0,15.6
+306863,0,0,0,15.6
+306864,0,0,0,15.6
+306865,0,0,0,15.6
+306866,0,0,0,15.6
+306867,0,0,0,15.6
+306868,0,0,0,15.6
+306869,0,0,0,15.6
+306870,0,0,0,15.6
+306871,0,0,0,15.6
+306872,0,0,0,15.6
+306873,0,0,0,15.6
+306874,0,0,0,15.6
+306875,0,0,0,15.6
+306876,0,0,0,15.6
+306877,0,0,0,15.6
+306878,0,0,0,15.6
+306879,0,0,0,15.6
+306880,0,0,0,15.6
+306881,0,0,0,15.6
+306882,0,0,0,15.6
+306883,0,0,0,15.6
+306884,0,0,0,15.6
+306885,0,369323.8185,658598.5148,15.6
+306886,0,0,0,15.6
+306887,334262.8653,0,0,15.6
+306888,0,0,0,15.6
+306889,0,0,0,15.6
+306890,0,0,0,15.6
+306891,0,0,0,15.6
+306892,0,0,0,15.6
+306893,0,0,0,15.6
+306894,0,0,0,15.6
+306895,0,0,0,15.6
+306896,0,0,0,15.6
+306897,0,0,0,15.6
+306898,0,0,0,15.6
+306899,0,0,0,15.6
+306900,0,0,0,15.6
+306901,0,0,0,15.6
+306902,0,0,0,15.6
+306903,0,0,0,15.6
+306904,0,0,0,15.6
+306905,0,0,0,15.6
+306906,0,0,0,15.6
+306907,0,0,0,15.6
+306908,0,0,0,15.6
+306909,0,0,0,15.6
+306910,0,0,0,15.6
+306911,0,0,0,15.6
+306912,0,0,0,15.6
+306913,0,0,0,15.6
+306914,0,0,0,15.6
+306915,0,0,0,15.6
+306916,0,0,0,15.6
+306917,0,0,0,15.6
+306918,0,0,659027.6043,15.6
+306919,0,369296.2883,0,15.6
+306920,0,0,0,15.6
+306921,337237.0341,0,0,15.6
+306922,0,0,0,15.6
+306923,0,0,0,15.6
+306924,0,0,0,15.6
+306925,0,0,0,15.6
+306926,0,0,0,15.6
+306927,0,0,0,15.6
+306928,0,0,0,15.6
+306929,0,0,0,15.6
+306930,0,0,0,15.6
+306931,0,0,0,15.6
+306932,0,0,0,15.6
+306933,0,0,0,15.6
+306934,0,0,0,15.6
+306935,0,0,0,15.6
+306936,0,0,0,15.6
+306937,0,0,0,15.6
+306938,0,0,0,15.6
+306939,0,0,0,15.6
+306940,0,0,0,15.6
+306941,0,0,0,15.6
+306942,0,0,0,15.6
+306943,0,0,0,15.6
+306944,0,0,0,15.6
+306945,0,0,0,15.6
+306946,0,0,0,15.6
+306947,0,0,0,15.6
+306948,0,0,0,15.6
+306949,0,0,0,15.6
+306950,0,0,0,15.6
+306951,0,0,658613.7148,15.6
+306952,0,0,0,15.6
+306953,0,369288.9722,0,15.6
+306954,0,0,0,15.6
+306955,335596.6354,0,0,15.6
+306956,0,0,0,15.6
+306957,0,0,0,15.6
+306958,0,0,0,15.6
+306959,0,0,0,15.6
+306960,0,0,0,17.8
+306961,28391.65786,0,0,17.8
+306962,0,0,0,17.8
+306963,0,0,0,17.8
+306964,8168.309301,0,0,17.8
+306965,6854.802522,0,0,17.8
+306966,6071.666677,0,0,17.8
+306967,6743.729312,0,0,17.8
+306968,6965.617614,0,0,17.8
+306969,7186.482705,0,0,17.8
+306970,7406.348048,0,0,17.8
+306971,7515.912415,0,0,17.8
+306972,7951.778791,0,0,17.8
+306973,7951.779049,0,0,17.8
+306974,8276.234797,0,0,17.8
+306975,0,0,0,17.8
+306976,0,0,0,17.8
+306977,0,0,0,17.8
+306978,0,0,0,17.8
+306979,0,0,0,17.8
+306980,0,0,0,17.8
+306981,0,0,0,17.8
+306982,0,0,0,17.8
+306983,0,0,0,17.8
+306984,0,0,658743.0126,17.8
+306985,0,0,0,17.8
+306986,0,0,0,17.8
+306987,0,369315.6349,0,17.8
+306988,0,0,0,17.8
+306989,340401.5898,0,0,17.8
+306990,0,0,0,17.8
+306991,0,0,0,17.8
+306992,0,0,0,17.8
+306993,0,184.1199776,0,17.8
+306994,0,82.66361748,0,17.8
+306995,0,121.4109362,0,17.8
+306996,0,121.4109606,0,17.8
+306997,0,134.1186442,0,17.8
+306998,0,134.1184527,0,17.8
+306999,0,4827.182931,0,17.8
+307000,0,21252.49658,0,17.8
+307001,0,10166.56412,0,17.8
+307002,0,2307.55586,0,17.8
+307003,0,0,0,17.8
+307004,0,0,0,17.8
+307005,0,0,0,17.8
+307006,0,8114.235274,0,17.8
+307007,0,6604.584003,0,17.8
+307008,0,6385.973764,0,17.8
+307009,0,7255.856099,0,17.8
+307010,0,7686.418898,0,17.8
+307011,0,7900.663734,0,17.8
+307012,0,8114.237067,0,17.8
+307013,0,8539.423128,0,17.8
+307014,0,8327.152966,0,17.8
+307015,0,8751.061973,0,17.8
+307016,0,8751.062346,0,17.8
+307017,0,9172.488519,659073.1503,17.8
+307018,0,9172.488936,0,17.8
+307019,0,9591.520117,0,17.8
+307020,0,9591.520586,0,20
+307021,356347.7898,1085433.574,0,20
+307022,2296.779551,0,0,20
+307023,29844.63001,0,0,20
+307024,42888.61357,4064.289162,0,20
+307025,37379.8378,107328.2222,0,20
+307026,39648.23336,69014.08425,0,20
+307027,66192.54549,73304.81744,0,20
+307028,50985.03055,70551.38825,0,20
+307029,56089.53286,72758.94271,0,20
+307030,56590.34676,71997.50271,0,20
+307031,56230.11273,71109.49981,0,20
+307032,55946.57449,70641.68105,0,20
+307033,56507.19668,69404.19659,0,20
+307034,56565.72957,69143.78578,0,20
+307035,60418.70548,68746.85681,0,20
+307036,60292.17194,69069.04458,0,20
+307037,60250.27496,68863.39116,0,20
+307038,61333.42191,68314.73682,0,20
+307039,64502.26229,69096.32336,0,20
+307040,63220.56497,68328.34205,0,20
+307041,64135.75778,68582.1099,0,20
+307042,64528.2608,68373.0273,0,20
+307043,65064.59891,68324.35279,0,20
+307044,55441.67373,68355.49081,0,20
+307045,53041.2379,68369.03051,0,20
+307046,51791.8098,67838.98913,0,20
+307047,51105.30338,68364.97609,0,20
+307048,50152.45985,68095.39019,0,20
+307049,49409.26343,67866.00157,0,20
+307050,48997.12673,67937.35403,0,20
+307051,47728.85336,67897.01423,0,20
+307052,47551.15912,67592.93257,0,20
+307053,46391.88259,67770.90214,0,20
+307054,45676.2069,67403.39176,0,20
+307055,44755.05889,67770.90506,0,20
+307056,44035.9878,67100.99958,0,20
+307057,43081.90643,67606.40841,0,20
+307058,42394.62252,67266.12399,0,20
+307059,40835.47368,66917.93713,0,20
+307060,40673.82447,67317.38925,0,20
+307061,39306.09381,66733.00477,0,20
+307062,38559.69024,66743.97919,0,20
+307063,37764.83825,66697.72592,0,20
+307064,37153.22708,66198.43416,0,20
+307065,35718.57453,66149.71908,0,20
+307066,35553.37743,66070.12431,0,20
+307067,35674.29789,65960.27192,0,20
+307068,35389.9577,66070.12798,0,20
+307069,35428.02097,65608.14362,0,20
+307070,35589.67527,65831.23188,0,20
+307071,35233.17708,65312.06418,0,20
+307072,35545.4962,65683.68115,0,20
+307073,35321.32088,64996.1806,0,20
+307074,35057.54732,65238.64046,0,20
+307075,35622.39926,65276.60804,0,20
+307076,35418.88628,64700.28289,0,20
+307077,35256.38989,64941.75383,0,20
+307078,35235.19933,64365.75891,0,20
+307079,35302.71143,64700.28672,0,20
+307080,35018.18828,64347.91649,0,21
+307081,27730.63833,59577.88012,0,21
+307082,26908.14155,59292.7014,0,21
+307083,26453.98146,59402.42346,0,21
+307084,25834.23563,58623.98792,0,21
+307085,25674.97828,59236.57451,0,21
+307086,25536.94516,58328.02228,0,21
+307087,25262.0446,58625.73946,0,21
+307088,25092.10671,58227.57457,0,21
+307089,24887.20059,58109.91532,0,21
+307090,24661.57958,58395.6942,0,21
+307091,24307.47784,57682.65183,0,21
+307092,24396.86678,57935.97238,0,21
+307093,23986.20421,57745.63451,0,21
+307094,23707.09183,57436.0793,0,21
+307095,23509.33067,57399.27391,0,21
+307096,23553.02382,57403.25241,0,21
+307097,22922.04309,57341.25443,0,21
+307098,22845.49594,57013.02909,0,21
+307099,22217.03687,56820.65386,0,21
+307100,22146.04754,56993.82164,0,21
+307101,21756.57195,56541.13077,0,21
+307102,21678.22829,56587.00404,0,21
+307103,21486.25704,56541.1261,0,21
+307104,21266.49272,56287.73983,0,21
+307105,21226.33958,56337.60284,0,21
+307106,21184.30845,55954.68162,0,21
+307107,20933.20451,55987.97331,0,21
+307108,20913.12371,55948.83601,0,21
+307109,20649.22142,55482.92977,0,21
+307110,20629.03369,55763.79756,0,21
+307111,20578.21257,55334.0732,0,21
+307112,20343.49005,55392.9437,0,21
+307113,20302.79042,55162.05325,0,21
+307114,20059.6044,54929.27382,0,21
+307115,20015.90343,54936.73469,0,21
+307116,19965.31913,54936.73301,0,21
+307117,19761.33654,54576.3821,0,21
+307118,19687.70172,54563.52482,0,21
+307119,19462.8732,54299.27354,0,21
+307120,19624.98976,54363.32916,0,21
+307121,19163.23335,54060.9568,0,21
+307122,19238.90335,54091.91238,0,21
+307123,19100.5163,53839.11878,0,21
+307124,18850.99065,53918.80357,0,21
+307125,19003.19073,53536.04638,0,21
+307126,18593.13096,53495.65109,0,21
+307127,18701.74964,53529.12567,0,21
+307128,18298.93919,53043.83806,0,21
+307129,18443.27949,53455.03205,0,21
+307130,18201.82199,52906.86945,0,21
+307131,18182.08187,52910.07219,0,21
+307132,17897.6243,52866.07149,0,21
+307133,17897.47412,52495.67446,0,21
+307134,17625.02237,52866.06559,0,21
+307135,17701.50121,52852.31764,0,21
+307136,17448.97787,52474.26781,0,21
+307137,17329.21403,52697.07697,0,21
+307138,17261.93155,52206.632,0,21
+307139,17031.96812,52434.47742,0,21
+307140,17097.05052,51868.41692,0,21
+307141,1557.75679,17883.88398,0,21
+307142,1038.71576,15107.31419,0,21
+307143,997.5254891,14177.58608,0,21
+307144,983.7035365,13904.60993,0,21
+307145,969.8746826,12530.72036,0,21
+307146,928.1829145,12538.54614,0,21
+307147,928.1830746,11476.22001,0,21
+307148,900.2263209,11269.95445,0,21
+307149,872.136269,10903.67366,0,21
+307150,858.0403329,10198.90765,0,21
+307151,843.9099286,9568.589098,0,21
+307152,815.5438022,8893.419934,0,21
+307153,801.3073108,8461.832164,0,21
+307154,787.0346356,8028.042182,0,21
+307155,758.3782716,7512.77033,0,21
+307156,743.9936918,7255.897198,0,21
+307157,729.570803,6983.420359,0,21
+307158,700.6076584,6474.802102,0,21
+307159,700.6077362,6224.10903,0,21
+307160,671.4842787,5954.574599,0,21
+307161,642.195207,5640.696863,0,21
+307162,642.1952693,5156.370205,0,21
+307163,612.7349182,4907.027198,0,21
+307164,612.7349776,4812.629153,0,21
+307165,568.2095134,4092.224681,0,21
+307166,568.2096103,4283.860979,0,21
+307167,538.2924808,3521.008755,0,21
+307168,523.260946,3484.08468,0,21
+307169,508.1793378,2913.635486,0,21
+307170,493.0464868,2930.301962,0,21
+307171,462.6225609,2331.217701,0,21
+307172,462.6227049,2071.1508,0,21
+307173,431.9776653,1918.276657,0,21
+307174,401.0997044,1440.678266,0,21
+307175,416.5687107,1148.802015,0,21
+307176,369.9747216,824.1424688,0,21
+307177,354.3145153,777.6552538,0,21
+307178,354.3145851,723.7770697,0,21
+307179,322.7870353,703.7799297,0,21
+307180,306.9143624,629.0804836,0,21
+307181,290.9650732,601.7268266,0,21
+307182,258.8225201,528.8464818,0,21
+307183,258.8225364,503.8516016,0,21
+307184,234.4859858,448.1930387,0,21
+307185,209.9339342,448.1930642,0,21
+307186,209.933942,391.9184578,0,21
+307187,160.0941267,377.7455819,0,21
+307188,176.8257542,334.955898,0,21
+307189,134.7452644,306.1878616,0,21
+307190,126.2218426,277.2091981,0,21
+307191,109.0514258,248.0015904,0,21
+307192,82.94312144,218.5425075,0,21
+307193,74.13079947,188.8035992,0,21
+307194,47.2800398,158.7477127,0,21
+307195,38.15866645,128.3242259,0,21
+307196,0,112.9528911,0,21
+307197,0,66.03369077,0,21
+307198,0,33.81653076,0,21
+307199,0,33.81653146,0,21
+307200,0,0,0,21
+307201,0,0,0,21
+307202,0,0,0,21
+307203,0,0,0,21
+307204,0,0,0,21
+307205,0,0,0,21
+307206,0,0,0,21
+307207,0,0,0,21
+307208,0,0,0,21
+307209,0,0,0,21
+307210,0,0,0,21
+307211,0,0,0,21
+307212,0,0,0,21
+307213,0,0,0,21
+307214,0,0,0,21
+307215,0,0,0,21
+307216,0,0,0,21
+307217,0,0,0,21
+307218,0,0,0,21
+307219,0,0,0,21
+307220,0,0,0,21
+307221,0,0,0,21
+307222,0,0,0,21
+307223,0,0,0,21
+307224,0,0,0,21
+307225,0,0,0,21
+307226,0,0,0,21
+307227,0,0,0,21
+307228,0,0,0,21
+307229,0,0,0,21
+307230,0,0,0,21
+307231,0,0,0,21
+307232,0,0,0,21
+307233,0,0,0,21
+307234,0,0,0,21
+307235,0,0,0,21
+307236,0,0,0,21
+307237,0,0,0,21
+307238,0,0,0,21
+307239,0,0,0,21
+307240,0,0,0,21
+307241,0,0,0,21
+307242,0,0,0,21
+307243,0,0,0,21
+307244,0,0,0,21
+307245,0,0,0,21
+307246,0,0,0,21
+307247,0,0,0,21
+307248,0,0,0,21
+307249,0,0,0,21
+307250,0,0,0,21
+307251,0,0,0,21
+307252,0,0,0,21
+307253,0,0,0,21
+307254,0,0,0,21
+307255,0,0,0,21
+307256,0,0,0,21
+307257,0,0,0,21
+307258,0,0,0,21
+307259,0,0,0,21
+307260,0,0,0,21
+307261,0,0,0,21
+307262,0,0,0,21
+307263,0,0,0,21
+307264,0,0,0,21
+307265,0,0,0,21
+307266,0,0,0,21
+307267,0,0,0,21
+307268,0,0,0,21
+307269,0,0,0,21
+307270,0,0,0,21
+307271,0,0,0,21
+307272,0,0,0,21
+307273,0,0,0,21
+307274,0,0,0,21
+307275,0,0,0,21
+307276,0,0,0,21
+307277,0,0,0,21
+307278,0,0,0,21
+307279,0,0,0,21
+307280,0,0,0,21
+307281,0,0,0,21
+307282,0,0,0,21
+307283,0,0,0,21
+307284,0,0,0,21
+307285,0,0,0,21
+307286,0,0,0,21
+307287,0,0,0,21
+307288,0,0,0,21
+307289,0,0,0,21
+307290,0,0,0,21
+307291,0,0,0,21
+307292,0,0,0,21
+307293,0,0,0,21
+307294,0,0,0,21
+307295,0,0,0,21
+307296,0,0,0,21
+307297,0,0,0,21
+307298,0,0,0,21
+307299,0,0,0,21
+307300,0,0,0,21
+307301,0,0,0,21
+307302,0,0,0,21
+307303,0,0,0,21
+307304,0,0,0,21
+307305,0,0,0,21
+307306,0,0,0,21
+307307,0,0,0,21
+307308,0,0,0,21
+307309,0,0,0,21
+307310,0,0,0,21
+307311,0,0,0,21
+307312,0,0,0,21
+307313,0,0,0,21
+307314,0,0,0,21
+307315,0,0,0,21
+307316,0,0,0,21
+307317,0,0,0,21
+307318,0,0,0,21
+307319,0,0,0,21
+307320,0,0,0,21
+307321,0,0,0,21
+307322,0,0,0,21
+307323,0,0,0,21
+307324,0,0,0,21
+307325,0,0,0,21
+307326,0,0,0,21
+307327,0,0,0,21
+307328,0,0,0,21
+307329,0,0,0,21
+307330,0,0,0,21
+307331,0,0,0,21
+307332,0,0,0,21
+307333,0,0,0,21
+307334,0,0,0,21
+307335,0,0,0,21
+307336,0,0,0,21
+307337,0,0,0,21
+307338,0,0,0,21
+307339,0,0,0,21
+307340,0,0,0,21
+307341,0,0,0,21
+307342,0,0,0,21
+307343,0,0,0,21
+307344,0,0,0,21
+307345,0,0,0,21
+307346,0,0,0,21
+307347,0,0,0,21
+307348,0,0,0,21
+307349,0,0,0,21
+307350,0,0,0,21
+307351,0,0,0,21
+307352,0,0,0,21
+307353,0,0,0,21
+307354,0,0,0,21
+307355,0,0,0,21
+307356,0,0,0,21
+307357,0,0,0,21
+307358,0,0,0,21
+307359,0,0,0,21
+307360,0,0,0,21
+307361,0,0,0,21
+307362,0,0,0,21
+307363,0,0,0,21
+307364,0,0,0,21
+307365,0,0,0,21
+307366,0,0,0,21
+307367,0,0,0,21
+307368,0,0,0,21
+307369,0,0,0,21
+307370,0,0,0,21
+307371,0,0,0,21
+307372,0,0,0,21
+307373,0,0,0,21
+307374,0,0,0,21
+307375,0,0,0,21
+307376,0,0,0,21
+307377,0,0,0,21
+307378,0,0,0,21
+307379,0,0,0,21
+307380,0,0,0,21
+307381,0,0,0,21
+307382,0,0,0,21
+307383,0,0,0,21
+307384,0,0,0,21
+307385,0,0,0,21
+307386,0,0,0,21
+307387,0,0,0,21
+307388,0,0,0,21
+307389,0,0,0,21
+307390,0,0,0,21
+307391,0,0,0,21
+307392,0,0,0,21
+307393,0,0,0,21
+307394,0,0,0,21
+307395,0,0,0,21
+307396,0,0,0,21
+307397,0,0,0,21
+307398,0,0,0,21
+307399,0,0,0,21
+307400,0,0,0,21
+307401,0,0,0,21
+307402,0,0,0,21
+307403,0,0,0,21
+307404,0,0,0,21
+307405,0,0,0,21
+307406,0,0,0,21
+307407,0,0,0,21
+307408,0,0,0,21
+307409,0,0,0,21
+307410,0,0,0,21
+307411,0,0,0,21
+307412,0,0,0,21
+307413,0,0,0,21
+307414,0,0,0,21
+307415,0,0,0,21
+307416,0,0,0,21
+307417,0,0,0,21
+307418,0,0,0,21
+307419,0,0,0,21
+307420,0,0,0,21
+307421,0,0,0,21
+307422,0,0,0,21
+307423,0,0,0,21
+307424,0,0,0,21
+307425,0,0,0,21
+307426,0,0,0,21
+307427,0,0,0,21
+307428,0,0,0,21
+307429,0,0,0,21
+307430,0,0,0,21
+307431,0,0,0,21
+307432,0,0,0,21
+307433,0,0,0,21
+307434,0,0,0,21
+307435,0,0,0,21
+307436,0,0,0,21
+307437,0,0,0,21
+307438,0,0,0,21
+307439,0,0,0,21
+307440,0,0,0,21
+307441,0,0,0,21
+307442,0,0,0,21
+307443,0,0,0,21
+307444,0,0,0,21
+307445,0,0,0,21
+307446,0,0,0,21
+307447,0,0,0,21
+307448,0,0,0,21
+307449,0,0,0,21
+307450,0,0,0,21
+307451,0,0,0,21
+307452,0,0,0,21
+307453,0,0,0,21
+307454,0,0,0,21
+307455,0,0,0,21
+307456,0,0,0,21
+307457,0,0,0,21
+307458,0,0,0,21
+307459,0,0,0,21
+307460,0,0,0,21
+307461,0,0,0,21
+307462,0,0,0,21
+307463,0,0,0,21
+307464,0,0,0,21
+307465,0,0,0,21
+307466,0,0,0,21
+307467,0,0,0,21
+307468,0,0,0,21
+307469,0,0,0,21
+307470,0,0,0,21
+307471,0,0,0,21
+307472,0,0,0,21
+307473,0,0,0,21
+307474,0,0,0,21
+307475,0,0,0,21
+307476,0,0,0,21
+307477,0,0,0,21
+307478,0,0,0,21
+307479,0,0,0,21
+307480,0,0,0,21
+307481,0,0,0,21
+307482,0,0,0,21
+307483,0,0,0,21
+307484,0,0,0,21
+307485,0,0,0,21
+307486,0,0,0,21
+307487,0,0,0,21
+307488,0,0,0,21
+307489,0,0,0,21
+307490,0,0,0,21
+307491,0,0,0,21
+307492,0,0,0,21
+307493,0,0,0,21
+307494,0,0,0,21
+307495,0,0,0,21
+307496,0,0,0,21
+307497,0,0,0,21
+307498,0,0,0,21
+307499,0,0,0,21
+307500,0,0,0,21
+307501,0,0,0,21
+307502,0,0,0,21
+307503,0,0,0,21
+307504,0,0,0,21
+307505,0,0,0,21
+307506,0,0,0,21
+307507,0,0,0,21
+307508,0,0,0,21
+307509,0,0,0,21
+307510,0,0,0,21
+307511,0,0,0,21
+307512,0,0,0,21
+307513,0,0,0,21
+307514,0,0,0,21
+307515,0,0,0,21
+307516,0,0,0,21
+307517,0,0,0,21
+307518,0,0,0,21
+307519,0,0,0,21
+307520,0,0,0,21
+307521,0,0,0,21
+307522,0,0,0,21
+307523,0,0,0,21
+307524,0,0,0,21
+307525,0,0,0,21
+307526,0,0,0,21
+307527,0,0,0,21
+307528,0,0,0,21
+307529,0,0,0,21
+307530,0,0,0,21
+307531,0,0,0,21
+307532,0,0,0,21
+307533,0,0,0,21
+307534,0,0,0,21
+307535,0,0,0,21
+307536,0,0,0,21
+307537,0,0,0,21
+307538,0,0,0,21
+307539,0,0,0,21
+307540,0,0,0,21
+307541,0,0,0,21
+307542,0,0,0,21
+307543,0,0,0,21
+307544,0,0,0,21
+307545,0,0,0,21
+307546,0,0,0,21
+307547,0,0,0,21
+307548,0,0,0,21
+307549,0,0,0,21
+307550,0,0,0,21
+307551,0,0,0,21
+307552,0,0,0,21
+307553,0,0,0,21
+307554,0,0,0,21
+307555,0,0,0,21
+307556,0,0,0,21
+307557,0,0,0,21
+307558,0,0,0,21
+307559,0,0,0,21
+307560,0,0,0,21
+307561,0,0,0,21
+307562,0,0,0,21
+307563,0,0,0,21
+307564,0,0,0,21
+307565,0,0,0,21
+307566,0,0,0,21
+307567,0,0,0,21
+307568,0,0,0,21
+307569,0,0,0,21
+307570,0,0,0,21
+307571,0,0,0,21
+307572,0,0,0,21
+307573,0,0,0,21
+307574,0,0,0,21
+307575,0,0,0,21
+307576,0,0,0,21
+307577,0,0,0,21
+307578,0,0,0,21
+307579,0,0,0,21
+307580,0,0,0,21
+307581,0,0,0,21
+307582,0,0,0,21
+307583,0,0,0,21
+307584,0,0,0,21
+307585,0,0,0,21
+307586,0,0,0,21
+307587,0,0,0,21
+307588,0,0,0,21
+307589,0,0,0,21
+307590,0,0,0,21
+307591,0,0,0,21
+307592,0,0,0,21
+307593,0,0,0,21
+307594,0,0,0,21
+307595,0,0,0,21
+307596,0,0,0,21
+307597,0,0,0,21
+307598,0,0,0,21
+307599,0,0,0,21
+307600,0,0,0,21
+307601,0,0,0,21
+307602,0,0,0,21
+307603,0,0,0,21
+307604,0,0,0,21
+307605,0,0,0,21
+307606,0,0,0,21
+307607,0,0,0,21
+307608,0,0,0,21
+307609,0,0,0,21
+307610,0,0,0,21
+307611,0,0,0,21
+307612,0,0,0,21
+307613,0,0,0,21
+307614,0,0,0,21
+307615,0,0,0,21
+307616,0,0,0,21
+307617,0,0,0,21
+307618,0,0,0,21
+307619,0,0,0,21
+307620,0,0,0,21
+307621,0,0,0,21
+307622,0,0,0,21
+307623,0,0,0,21
+307624,0,0,0,21
+307625,0,0,0,21
+307626,0,0,0,21
+307627,0,0,0,21
+307628,0,0,0,21
+307629,0,0,0,21
+307630,0,0,0,21
+307631,0,0,0,21
+307632,0,0,0,21
+307633,0,0,0,21
+307634,0,0,0,21
+307635,0,0,0,21
+307636,0,0,0,21
+307637,0,0,0,21
+307638,0,0,0,21
+307639,0,0,0,21
+307640,0,0,0,21
+307641,0,0,0,21
+307642,0,0,0,21
+307643,0,0,0,21
+307644,0,0,0,21
+307645,0,0,0,21
+307646,0,0,0,21
+307647,0,0,0,21
+307648,0,0,0,21
+307649,0,0,0,21
+307650,0,0,0,21
+307651,0,0,0,21
+307652,0,0,0,21
+307653,0,0,0,21
+307654,0,0,0,21
+307655,0,0,0,21
+307656,0,0,0,21
+307657,0,0,0,21
+307658,0,0,0,21
+307659,0,0,0,21
+307660,0,0,0,21
+307661,0,0,0,21
+307662,0,0,0,21
+307663,0,0,0,21
+307664,0,0,0,21
+307665,0,0,0,21
+307666,0,0,0,21
+307667,0,0,0,21
+307668,0,0,0,21
+307669,0,0,0,21
+307670,0,0,0,21
+307671,0,0,0,21
+307672,0,0,0,21
+307673,0,0,0,21
+307674,0,0,0,21
+307675,0,0,0,21
+307676,0,0,0,21
+307677,0,0,0,21
+307678,0,0,0,21
+307679,0,0,0,21
+307680,0,0,0,21
+307681,0,0,0,21
+307682,0,0,0,21
+307683,0,0,0,21
+307684,0,0,0,21
+307685,0,0,0,21
+307686,0,0,0,21
+307687,0,0,0,21
+307688,0,0,0,21
+307689,0,0,0,21
+307690,0,0,0,21
+307691,0,0,0,21
+307692,0,0,0,21
+307693,0,0,0,21
+307694,0,0,0,21
+307695,0,0,0,21
+307696,0,0,0,21
+307697,0,0,0,21
+307698,0,0,0,21
+307699,0,0,0,21
+307700,0,0,0,21
+307701,0,0,0,21
+307702,0,0,0,21
+307703,0,0,0,21
+307704,0,0,0,21
+307705,0,0,0,21
+307706,0,0,0,21
+307707,0,0,0,21
+307708,0,0,0,21
+307709,0,0,0,21
+307710,0,0,0,21
+307711,0,0,0,21
+307712,0,0,0,21
+307713,0,0,0,21
+307714,0,0,0,21
+307715,0,0,0,21
+307716,0,0,0,21
+307717,0,0,0,21
+307718,0,0,0,21
+307719,0,0,0,21
+307720,0,0,0,21
+307721,0,0,0,21
+307722,0,0,0,21
+307723,0,0,0,21
+307724,0,0,0,21
+307725,0,0,0,21
+307726,0,0,0,21
+307727,0,0,0,21
+307728,0,0,0,21
+307729,0,0,0,21
+307730,0,0,0,21
+307731,0,0,0,21
+307732,0,0,0,21
+307733,0,0,0,21
+307734,0,0,0,21
+307735,0,0,0,21
+307736,0,0,0,21
+307737,0,0,0,21
+307738,0,0,0,21
+307739,0,0,0,21
+307740,0,0,0,21
+307741,0,0,0,21
+307742,0,0,0,21
+307743,0,0,0,21
+307744,0,0,0,21
+307745,0,0,0,21
+307746,0,0,0,21
+307747,0,0,0,21
+307748,0,0,0,21
+307749,0,0,0,21
+307750,0,0,0,21
+307751,0,0,0,21
+307752,0,0,0,21
+307753,0,0,0,21
+307754,0,0,0,21
+307755,0,0,0,21
+307756,0,0,0,21
+307757,0,0,0,21
+307758,0,0,0,21
+307759,0,0,0,21
+307760,0,0,0,21
+307761,0,0,0,21
+307762,0,0,0,21
+307763,0,0,0,21
+307764,0,0,0,21
+307765,0,0,0,21
+307766,0,0,0,21
+307767,0,0,0,21
+307768,0,0,0,21
+307769,0,0,0,21
+307770,0,0,0,21
+307771,0,0,0,21
+307772,0,0,0,21
+307773,0,0,0,21
+307774,0,0,0,21
+307775,0,0,0,21
+307776,0,0,0,21
+307777,0,0,0,21
+307778,0,0,0,21
+307779,0,0,0,21
+307780,0,0,0,21
+307781,0,0,0,21
+307782,0,0,0,21
+307783,0,0,0,21
+307784,0,0,0,21
+307785,0,0,0,21
+307786,0,0,0,21
+307787,0,0,0,21
+307788,0,0,0,21
+307789,0,0,0,21
+307790,0,0,0,21
+307791,0,0,0,21
+307792,0,0,0,21
+307793,0,0,0,21
+307794,0,0,0,21
+307795,0,0,0,21
+307796,0,0,0,21
+307797,0,0,0,21
+307798,0,0,0,21
+307799,0,0,0,21
+307800,0,0,0,21
+307801,0,0,0,21
+307802,0,0,0,21
+307803,0,0,0,21
+307804,0,0,0,21
+307805,0,0,0,21
+307806,0,0,0,21
+307807,0,0,0,21
+307808,0,0,0,21
+307809,0,0,0,21
+307810,0,0,0,21
+307811,0,0,0,21
+307812,0,0,0,21
+307813,0,0,0,21
+307814,0,0,0,21
+307815,0,0,0,21
+307816,0,0,0,21
+307817,0,0,0,21
+307818,0,0,0,21
+307819,0,0,0,21
+307820,0,0,0,21
+307821,0,0,0,21
+307822,0,0,0,21
+307823,0,0,0,21
+307824,0,0,0,21
+307825,0,0,0,21
+307826,0,0,0,21
+307827,0,0,0,21
+307828,0,0,0,21
+307829,0,0,0,21
+307830,0,0,0,21
+307831,0,0,0,21
+307832,0,0,0,21
+307833,0,0,0,21
+307834,0,0,0,21
+307835,0,0,0,21
+307836,0,0,0,21
+307837,0,0,0,21
+307838,0,0,0,21
+307839,0,0,0,21
+307840,0,0,0,21
+307841,0,0,0,21
+307842,0,0,0,21
+307843,0,0,0,21
+307844,0,0,0,21
+307845,0,0,0,21
+307846,0,0,0,21
+307847,0,0,0,21
+307848,0,0,0,21
+307849,0,0,0,21
+307850,0,0,0,21
+307851,0,0,0,21
+307852,0,0,0,21
+307853,0,0,0,21
+307854,0,0,0,21
+307855,0,0,0,21
+307856,0,0,0,21
+307857,0,0,0,21
+307858,0,0,0,21
+307859,0,0,0,21
+307860,0,0,0,21
+307861,0,0,0,21
+307862,0,0,0,21
+307863,0,0,0,21
+307864,0,0,0,21
+307865,0,0,0,21
+307866,0,0,0,21
+307867,0,0,0,21
+307868,0,0,0,21
+307869,0,0,0,21
+307870,0,0,0,21
+307871,0,0,0,21
+307872,0,0,0,21
+307873,0,0,0,21
+307874,0,0,0,21
+307875,0,0,0,21
+307876,0,0,0,21
+307877,0,0,0,21
+307878,0,0,0,21
+307879,0,0,0,21
+307880,0,0,0,21
+307881,0,0,0,21
+307882,0,0,0,21
+307883,0,0,0,21
+307884,0,0,0,21
+307885,0,0,0,21
+307886,0,0,0,21
+307887,0,0,0,21
+307888,0,0,0,21
+307889,0,0,0,21
+307890,0,0,0,21
+307891,0,0,0,21
+307892,0,0,0,21
+307893,0,0,0,21
+307894,0,0,0,21
+307895,0,0,0,21
+307896,0,0,0,21
+307897,0,0,0,21
+307898,0,0,0,21
+307899,0,0,0,21
+307900,0,0,0,21
+307901,0,0,0,21
+307902,0,0,0,21
+307903,0,0,0,21
+307904,0,0,0,21
+307905,0,0,0,21
+307906,0,0,0,21
+307907,0,0,0,21
+307908,0,0,0,21
+307909,0,0,0,21
+307910,0,0,0,21
+307911,0,0,0,21
+307912,0,0,0,21
+307913,0,0,0,21
+307914,0,0,0,21
+307915,0,0,0,21
+307916,0,0,0,21
+307917,0,0,0,21
+307918,0,0,0,21
+307919,0,0,0,21
+307920,0,0,0,21
+307921,0,0,0,21
+307922,0,0,0,21
+307923,0,0,0,21
+307924,0,0,0,21
+307925,0,0,0,21
+307926,0,0,0,21
+307927,0,0,0,21
+307928,0,0,0,21
+307929,0,0,0,21
+307930,0,0,0,21
+307931,0,0,0,21
+307932,0,0,0,21
+307933,0,0,0,21
+307934,0,0,0,21
+307935,0,0,0,21
+307936,0,0,0,21
+307937,0,0,0,21
+307938,0,0,0,21
+307939,0,0,0,21
+307940,0,0,0,21
+307941,0,0,0,21
+307942,0,0,0,21
+307943,0,0,0,21
+307944,0,0,0,21
+307945,0,0,0,21
+307946,0,0,0,21
+307947,0,0,0,21
+307948,0,0,0,21
+307949,0,0,0,21
+307950,0,0,0,21
+307951,0,0,0,21
+307952,0,0,0,21
+307953,0,0,0,21
+307954,0,0,0,21
+307955,0,0,0,21
+307956,0,0,0,21
+307957,0,0,0,21
+307958,0,0,0,21
+307959,0,0,0,21
+307960,0,0,0,21
+307961,0,0,0,21
+307962,0,0,0,21
+307963,0,0,0,21
+307964,0,0,0,21
+307965,0,0,0,21
+307966,0,0,0,21
+307967,0,0,0,21
+307968,0,0,0,21
+307969,0,0,0,21
+307970,0,0,0,21
+307971,0,704.4950421,0,21
+307972,0,1036.584201,0,21
+307973,0,954.2928712,0,21
+307974,0,1199.905441,0,21
+307975,0,1361.70842,0,21
+307976,0,1361.708391,0,21
+307977,0,1681.352199,0,21
+307978,0,1839.41755,0,21
+307979,0,1839.417529,0,21
+307980,0,1996.428854,0,21
+307981,0,0,0,21
+307982,0,0,0,21
+307983,0,0,0,21
+307984,0,0,0,21
+307985,333453.2875,364710.3882,657076.0219,21
+307986,0,0,0,21
+307987,0,0,0,21
+307988,0,0,0,21
+307989,0,0,0,21
+307990,0,0,0,21
+307991,0,0,0,21
+307992,0,0,0,21
+307993,0,0,0,21
+307994,0,0,0,21
+307995,0,0,0,21
+307996,0,0,0,21
+307997,0,0,0,21
+307998,0,0,0,21
+307999,0,0,0,21
+308000,0,0,0,21
+308001,0,0,0,21
+308002,0,0,0,21
+308003,0,0,0,21
+308004,0,0,0,21
+308005,0,0,0,21
+308006,0,0,0,21
+308007,0,0,0,21
+308008,0,0,0,21
+308009,0,0,0,21
+308010,0,0,0,21
+308011,0,0,0,21
+308012,0,0,0,21
+308013,0,0,0,21
+308014,0,0,0,21
+308015,0,0,0,21
+308016,0,0,0,21
+308017,0,0,0,21
+308018,0,0,0,21
+308019,332569.8293,366343.2838,657583.9546,21
+308020,0,0,0,21
+308021,0,0,0,21
+308022,0,0,0,21
+308023,0,0,0,21
+308024,0,0,0,21
+308025,0,0,0,21
+308026,0,0,0,21
+308027,0,0,0,21
+308028,0,0,0,21
+308029,0,0,0,21
+308030,0,0,0,21
+308031,0,0,0,21
+308032,0,0,0,21
+308033,0,0,0,21
+308034,0,0,0,21
+308035,0,0,0,21
+308036,0,0,0,21
+308037,0,0,0,21
+308038,0,0,0,21
+308039,0,0,0,21
+308040,0,0,0,15.6
+308041,0,0,0,15.6
+308042,0,0,0,15.6
+308043,0,0,0,15.6
+308044,0,0,0,15.6
+308045,0,0,0,15.6
+308046,0,0,0,15.6
+308047,0,0,0,15.6
+308048,0,0,0,15.6
+308049,0,0,0,15.6
+308050,0,0,0,15.6
+308051,0,0,0,15.6
+308052,0,0,0,15.6
+308053,333339.042,367154.6148,657810.1679,15.6
+308054,0,0,0,15.6
+308055,0,0,0,15.6
+308056,0,0,0,15.6
+308057,0,0,0,15.6
+308058,0,0,0,15.6
+308059,0,0,0,15.6
+308060,0,0,0,15.6
+308061,0,0,0,15.6
+308062,0,0,0,15.6
+308063,0,0,0,15.6
+308064,0,0,0,15.6
+308065,0,0,0,15.6
+308066,0,0,0,15.6
+308067,0,0,0,15.6
+308068,0,0,0,15.6
+308069,0,0,0,15.6
+308070,0,0,0,15.6
+308071,0,0,0,15.6
+308072,0,0,0,15.6
+308073,0,0,0,15.6
+308074,0,0,0,15.6
+308075,0,0,0,15.6
+308076,0,0,0,15.6
+308077,0,0,0,15.6
+308078,0,0,0,15.6
+308079,0,0,0,15.6
+308080,0,0,0,15.6
+308081,0,0,0,15.6
+308082,0,0,0,15.6
+308083,0,0,0,15.6
+308084,0,0,0,15.6
+308085,0,0,0,15.6
+308086,0,0,0,15.6
+308087,335023.9806,366597.7035,657768.399,15.6
+308088,0,0,0,15.6
+308089,0,0,0,15.6
+308090,0,0,0,15.6
+308091,0,0,0,15.6
+308092,0,0,0,15.6
+308093,0,0,0,15.6
+308094,0,0,0,15.6
+308095,0,0,0,15.6
+308096,0,0,0,15.6
+308097,0,0,0,15.6
+308098,0,0,0,15.6
+308099,0,0,0,15.6
+308100,0,0,0,15.6
+308101,0,0,0,15.6
+308102,0,0,0,15.6
+308103,0,0,0,15.6
+308104,0,0,0,15.6
+308105,0,0,0,15.6
+308106,0,0,0,15.6
+308107,0,0,0,15.6
+308108,0,0,0,15.6
+308109,0,0,0,15.6
+308110,0,0,0,15.6
+308111,0,0,0,15.6
+308112,0,0,0,15.6
+308113,0,0,0,15.6
+308114,0,0,0,15.6
+308115,0,0,0,15.6
+308116,0,0,0,15.6
+308117,0,0,0,15.6
+308118,0,0,0,15.6
+308119,0,0,0,15.6
+308120,0,0,0,15.6
+308121,333973.8344,367140.0003,658205.2964,15.6
+308122,0,0,0,15.6
+308123,0,0,0,15.6
+308124,0,0,0,15.6
+308125,0,0,0,15.6
+308126,0,0,0,15.6
+308127,0,0,0,15.6
+308128,0,0,0,15.6
+308129,0,0,0,15.6
+308130,0,0,0,15.6
+308131,0,0,0,15.6
+308132,0,0,0,15.6
+308133,0,0,0,15.6
+308134,0,0,0,15.6
+308135,0,0,0,15.6
+308136,0,0,0,15.6
+308137,0,0,0,15.6
+308138,0,0,0,15.6
+308139,0,0,0,15.6
+308140,0,0,0,15.6
+308141,0,0,0,15.6
+308142,0,0,0,15.6
+308143,0,0,0,15.6
+308144,0,0,0,15.6
+308145,0,0,0,15.6
+308146,0,0,0,15.6
+308147,0,0,0,15.6
+308148,0,0,0,15.6
+308149,0,0,0,15.6
+308150,0,0,0,15.6
+308151,0,0,0,15.6
+308152,0,0,0,15.6
+308153,0,0,0,15.6
+308154,0,0,0,15.6
+308155,335472.2283,366639.2073,657777.2365,15.6
+308156,0,0,0,15.6
+308157,0,0,0,15.6
+308158,0,0,0,15.6
+308159,0,0,0,15.6
+308160,0,0,0,15.6
+308161,0,0,0,15.6
+308162,0,0,0,15.6
+308163,0,0,0,15.6
+308164,0,0,0,15.6
+308165,0,0,0,15.6
+308166,0,0,0,15.6
+308167,0,0,0,15.6
+308168,0,0,0,15.6
+308169,0,0,0,15.6
+308170,0,0,0,15.6
+308171,0,0,0,15.6
+308172,0,0,0,15.6
+308173,0,0,0,15.6
+308174,0,0,0,15.6
+308175,0,0,0,15.6
+308176,0,0,0,15.6
+308177,0,0,0,15.6
+308178,0,0,0,15.6
+308179,0,0,0,15.6
+308180,0,0,0,15.6
+308181,0,0,0,15.6
+308182,0,0,0,15.6
+308183,0,0,0,15.6
+308184,0,0,0,15.6
+308185,0,0,0,15.6
+308186,0,0,0,15.6
+308187,0,0,0,15.6
+308188,0,0,0,15.6
+308189,336297.297,367226.7642,657418.4957,15.6
+308190,0,0,0,15.6
+308191,0,0,0,15.6
+308192,0,0,0,15.6
+308193,0,0,0,15.6
+308194,0,0,0,15.6
+308195,0,0,0,15.6
+308196,0,0,0,15.6
+308197,0,0,0,15.6
+308198,0,0,0,15.6
+308199,0,0,0,15.6
+308200,0,0,0,15.6
+308201,0,0,0,15.6
+308202,0,0,0,15.6
+308203,0,0,0,15.6
+308204,0,0,0,15.6
+308205,0,0,0,15.6
+308206,0,0,0,15.6
+308207,0,0,0,15.6
+308208,0,0,0,15.6
+308209,0,0,0,15.6
+308210,0,0,0,15.6
+308211,0,0,0,15.6
+308212,0,0,0,15.6
+308213,0,0,0,15.6
+308214,0,0,0,15.6
+308215,0,0,0,15.6
+308216,0,0,0,15.6
+308217,0,0,0,15.6
+308218,0,0,0,15.6
+308219,0,0,0,15.6
+308220,0,0,0,15.6
+308221,0,0,0,15.6
+308222,0,0,0,15.6
+308223,340351.6515,366201.2282,657194.3023,15.6
+308224,0,0,0,15.6
+308225,0,0,0,15.6
+308226,0,0,0,15.6
+308227,0,0,0,15.6
+308228,0,0,0,15.6
+308229,0,0,0,15.6
+308230,0,0,0,15.6
+308231,0,0,0,15.6
+308232,0,0,0,15.6
+308233,0,0,0,15.6
+308234,0,0,0,15.6
+308235,0,0,0,15.6
+308236,0,0,0,15.6
+308237,0,0,0,15.6
+308238,0,0,0,15.6
+308239,0,0,0,15.6
+308240,0,0,0,15.6
+308241,0,0,0,15.6
+308242,0,0,0,15.6
+308243,0,0,0,15.6
+308244,0,0,0,15.6
+308245,0,0,0,15.6
+308246,0,0,0,15.6
+308247,0,0,0,15.6
+308248,0,0,0,15.6
+308249,0,0,0,15.6
+308250,0,0,0,15.6
+308251,0,0,0,15.6
+308252,0,0,0,15.6
+308253,0,0,0,15.6
+308254,0,0,0,15.6
+308255,0,0,0,15.6
+308256,0,0,0,15.6
+308257,340324.5006,367248.1265,657012.2567,15.6
+308258,0,0,0,15.6
+308259,0,0,0,15.6
+308260,0,0,0,15.6
+308261,0,0,0,15.6
+308262,0,0,0,15.6
+308263,0,0,0,15.6
+308264,0,0,0,15.6
+308265,0,0,0,15.6
+308266,0,0,0,15.6
+308267,0,0,0,15.6
+308268,0,0,0,15.6
+308269,0,0,0,15.6
+308270,0,0,0,15.6
+308271,0,0,0,15.6
+308272,0,0,0,15.6
+308273,0,0,0,15.6
+308274,0,0,0,15.6
+308275,0,0,0,15.6
+308276,0,0,0,15.6
+308277,0,0,0,15.6
+308278,0,0,0,15.6
+308279,0,0,0,15.6
+308280,0,0,0,15.6
+308281,0,0,0,15.6
+308282,0,0,0,15.6
+308283,0,0,0,15.6
+308284,0,0,0,15.6
+308285,0,0,0,15.6
+308286,0,0,0,15.6
+308287,0,0,0,15.6
+308288,0,0,0,15.6
+308289,0,0,0,15.6
+308290,0,0,0,15.6
+308291,340297.62,367329.3834,656888.728,15.6
+308292,0,0,0,15.6
+308293,0,0,0,15.6
+308294,0,0,0,15.6
+308295,0,0,0,15.6
+308296,0,0,0,15.6
+308297,0,0,0,15.6
+308298,0,0,0,15.6
+308299,0,0,0,15.6
+308300,0,0,0,15.6
+308301,0,0,0,15.6
+308302,0,0,0,15.6
+308303,0,0,0,15.6
+308304,0,0,0,15.6
+308305,0,0,0,15.6
+308306,0,0,0,15.6
+308307,0,0,0,15.6
+308308,0,0,0,15.6
+308309,0,0,0,15.6
+308310,0,0,0,15.6
+308311,0,0,0,15.6
+308312,0,0,0,15.6
+308313,0,0,0,15.6
+308314,0,0,0,15.6
+308315,0,0,0,15.6
+308316,0,0,0,15.6
+308317,0,0,0,15.6
+308318,0,0,0,15.6
+308319,0,0,0,15.6
+308320,0,0,0,15.6
+308321,0,0,0,15.6
+308322,0,0,0,15.6
+308323,0,0,0,15.6
+308324,0,0,0,15.6
+308325,340270.953,365936.9099,657173.3376,15.6
+308326,0,0,0,15.6
+308327,0,0,0,15.6
+308328,0,0,0,15.6
+308329,0,0,0,15.6
+308330,0,0,0,15.6
+308331,0,0,0,15.6
+308332,0,0,0,15.6
+308333,0,0,0,15.6
+308334,0,0,0,15.6
+308335,0,0,0,15.6
+308336,0,0,0,15.6
+308337,0,0,0,15.6
+308338,0,0,0,15.6
+308339,0,0,0,15.6
+308340,0,0,0,15.6
+308341,0,0,0,15.6
+308342,0,0,0,15.6
+308343,0,0,0,15.6
+308344,0,0,0,15.6
+308345,0,0,0,15.6
+308346,0,0,0,15.6
+308347,0,0,0,15.6
+308348,0,0,0,15.6
+308349,0,0,0,15.6
+308350,0,0,0,15.6
+308351,0,0,0,15.6
+308352,0,0,0,15.6
+308353,0,0,0,15.6
+308354,0,0,0,15.6
+308355,0,0,0,15.6
+308356,0,0,0,15.6
+308357,0,0,0,15.6
+308358,0,0,657913.6331,15.6
+308359,340258.1326,367234.513,0,15.6
+308360,0,0,0,15.6
+308361,0,0,0,15.6
+308362,0,0,0,15.6
+308363,0,0,0,15.6
+308364,0,0,0,15.6
+308365,0,0,0,15.6
+308366,0,0,0,15.6
+308367,0,0,0,15.6
+308368,0,0,0,15.6
+308369,0,0,0,15.6
+308370,0,0,0,15.6
+308371,0,0,0,15.6
+308372,0,0,0,15.6
+308373,0,0,0,15.6
+308374,0,0,0,15.6
+308375,0,0,0,15.6
+308376,0,0,0,15.6
+308377,0,0,0,15.6
+308378,0,0,0,15.6
+308379,0,0,0,15.6
+308380,0,0,0,15.6
+308381,0,0,0,15.6
+308382,0,0,0,15.6
+308383,0,0,0,15.6
+308384,0,0,0,15.6
+308385,0,0,0,15.6
+308386,0,0,0,15.6
+308387,0,0,0,15.6
+308388,0,0,0,15.6
+308389,0,0,0,15.6
+308390,0,0,0,15.6
+308391,0,0,656912.4267,15.6
+308392,0,0,0,15.6
+308393,340255.801,365935.2328,0,15.6
+308394,0,0,0,15.6
+308395,0,0,0,15.6
+308396,0,0,0,15.6
+308397,0,0,0,15.6
+308398,0,0,0,15.6
+308399,0,0,0,15.6
+308400,0,0,0,17.8
+308401,0,0,0,17.8
+308402,0,0,0,17.8
+308403,0,0,0,17.8
+308404,0,0,0,17.8
+308405,0,0,0,17.8
+308406,0,0,0,17.8
+308407,0,0,0,17.8
+308408,0,0,0,17.8
+308409,0,0,0,17.8
+308410,0,0,0,17.8
+308411,0,0,0,17.8
+308412,0,0,0,17.8
+308413,0,0,0,17.8
+308414,0,0,0,17.8
+308415,0,0,0,17.8
+308416,0,0,0,17.8
+308417,0,0,0,17.8
+308418,0,0,0,17.8
+308419,0,0,0,17.8
+308420,0,0,0,17.8
+308421,0,0,0,17.8
+308422,0,0,0,17.8
+308423,0,0,0,17.8
+308424,0,0,657670.18,17.8
+308425,0,0,0,17.8
+308426,0,0,0,17.8
+308427,340255.3084,366980.338,0,17.8
+308428,0,0,0,17.8
+308429,0,0,0,17.8
+308430,0,0,0,17.8
+308431,0,0,0,17.8
+308432,0,0,0,17.8
+308433,0,0,0,17.8
+308434,0,0,0,17.8
+308435,0,0,0,17.8
+308436,0,0,0,17.8
+308437,0,0,0,17.8
+308438,23846.19999,0,0,17.8
+308439,9554.15198,0,0,17.8
+308440,13909.61707,0,0,17.8
+308441,14396.06723,0,0,17.8
+308442,14492.90059,0,0,17.8
+308443,14686.11684,0,0,17.8
+308444,14878.73694,0,0,17.8
+308445,15070.76647,0,0,17.8
+308446,15166.56137,0,0,17.8
+308447,15262.21065,0,0,17.8
+308448,15643.36527,0,0,17.8
+308449,15453.07498,0,0,17.8
+308450,15833.08532,0,0,17.8
+308451,16022.24091,0,0,17.8
+308452,15927.73307,0,0,17.8
+308453,16210.83645,0,0,17.8
+308454,16304.92576,0,0,17.8
+308455,16398.87688,0,0,17.8
+308456,16586.36704,0,0,17.8
+308457,16773.31125,0,658086.1145,17.8
+308458,16773.31104,0,0,17.8
+308459,16959.71373,0,0,17.8
+308460,16959.71351,0,0,20
+308461,1204605.516,415327.5712,0,20
+308462,6018.259912,19182.76766,0,20
+308463,12458.81666,14573.41559,0,20
+308464,71893.32086,30699.03865,0,20
+308465,98310.48079,41699.05867,0,20
+308466,117707.0478,38943.33181,0,20
+308467,90428.49446,49543.48428,0,20
+308468,99689.1483,45186.93043,0,20
+308469,100149.7612,47870.37101,0,20
+308470,100911.2671,48565.93608,0,20
+308471,100870.1364,49574.93706,0,20
+308472,100979.3872,50034.17929,0,20
+308473,99552.79475,51188.29937,0,20
+308474,99300.93593,51571.95989,0,20
+308475,98943.66308,52420.85912,0,20
+308476,99761.70458,52715.02496,0,20
+308477,99104.9238,53423.01969,0,20
+308478,99808.52881,54435.86637,0,20
+308479,99482.7846,54357.80648,0,20
+308480,99501.35497,55662.60407,0,20
+308481,100159.5884,55798.98489,0,20
+308482,100014.6273,56285.99975,0,20
+308483,99809.82142,57025.23303,0,20
+308484,96724.25282,57308.71254,0,20
+308485,95802.93348,58086.63652,0,20
+308486,95513.57391,58529.80073,0,20
+308487,95593.96013,58911.43431,0,20
+308488,95321.8891,59428.82675,0,20
+308489,95141.35222,59727.18745,0,20
+308490,95181.35532,60721.04935,0,20
+308491,94900.29124,60560.65696,0,20
+308492,94451.4209,61096.31322,0,20
+308493,94217.08447,61679.23629,0,20
+308494,93514.95618,61572.31508,0,20
+308495,93485.05139,62011.46545,0,20
+308496,92966.47839,62628.04839,0,20
+308497,91208.82773,62788.08476,0,20
+308498,90312.00873,63175.24133,0,20
+308499,90089.11163,63472.7362,0,20
+308500,88894.92624,63684.69177,0,20
+308501,89012.61597,63984.3001,0,20
+308502,87809.45386,64314.07212,0,20
+308503,87903.49249,64664.64759,0,20
+308504,86907.83756,64899.1525,0,20
+308505,87091.90133,64828.34497,0,20
+308506,85779.97123,65596.10022,0,20
+308507,85907.74924,65352.56324,0,20
+308508,85523.4298,65894.18314,0,20
+308509,84353.75349,66392.7294,0,20
+308510,84394.22382,65728.01353,0,20
+308511,83656.30895,67014.61912,0,20
+308512,83246.40047,66564.65964,0,20
+308513,82462.60044,66951.9811,0,20
+308514,82202.08131,66959.84204,0,20
+308515,81657.35499,67261.62252,0,20
+308516,80673.80768,67842.54859,0,20
+308517,81066.98496,67592.14935,0,20
+308518,79333.60206,68105.83692,0,20
+308519,79552.68358,67910.31555,0,20
+308520,79063.40588,68437.70777,0,21
+308521,69529.65712,61992.85666,0,21
+308522,66188.75065,61360.80082,0,21
+308523,64512.38889,61343.63378,0,21
+308524,63535.67568,61454.11146,0,21
+308525,62059.54962,61051.54552,0,21
+308526,61462.93772,61473.55301,0,21
+308527,59768.13831,60986.45683,0,21
+308528,59018.31984,61448.65641,0,21
+308529,57709.06901,61072.64027,0,21
+308530,56536.50736,61418.34917,0,21
+308531,55434.11812,61183.59516,0,21
+308532,54074.60839,61421.47171,0,21
+308533,53021.40685,61025.67671,0,21
+308534,51910.58538,61465.11969,0,21
+308535,50429.66197,61208.68969,0,21
+308536,49568.50593,61293.48085,0,21
+308537,48054.01949,61174.29185,0,21
+308538,47006.22393,61178.93094,0,21
+308539,45579.03758,61420.92351,0,21
+308540,45013.22104,61159.3033,0,21
+308541,44521.97312,61198.16951,0,21
+308542,43916.30217,61285.07286,0,21
+308543,43551.62265,61194.37354,0,21
+308544,42793.09369,61251.53101,0,21
+308545,42643.94336,61170.23176,0,21
+308546,41769.50945,61272.76818,0,21
+308547,41463.50245,61129.27827,0,21
+308548,40714.79392,61175.86567,0,21
+308549,40308.79264,60889.26126,0,21
+308550,39911.1392,61125.34128,0,21
+308551,39052.76628,61267.44002,0,21
+308552,38798.43724,60877.9705,0,21
+308553,38295.00906,61092.11985,0,21
+308554,37908.41844,61224.06692,0,21
+308555,37298.02075,60671.2638,0,21
+308556,37015.2342,61524.57375,0,21
+308557,36398.80578,60639.20684,0,21
+308558,35980.08962,60884.82807,0,21
+308559,35590.69,61320.37791,0,21
+308560,34988.76489,60679.81474,0,21
+308561,34866.8619,61285.60623,0,21
+308562,34054.75044,60676.75437,0,21
+308563,33742.4297,61060.61182,0,21
+308564,33304.6458,60901.96487,0,21
+308565,32912.69385,60802.27569,0,21
+308566,32488.96312,60814.98462,0,21
+308567,31760.20011,61229.59988,0,21
+308568,31631.6439,60374.993,0,21
+308569,31028.14089,61218.85694,0,21
+308570,30745.76179,60415.11847,0,21
+308571,29955.60187,60770.44885,0,21
+308572,29943.05248,60958.05868,0,21
+308573,29365.548,60431.14146,0,21
+308574,28804.56644,60610.58023,0,21
+308575,28641.89288,60879.34402,0,21
+308576,27950.73208,60382.1071,0,21
+308577,28167.47968,60398.0275,0,21
+308578,27490.64599,60773.23349,0,21
+308579,27343.59268,60265.18841,0,21
+308580,27114.65514,60539.89629,0,21
+308581,5802.20943,12559.69157,0,21
+308582,4469.665878,9694.181235,0,21
+308583,4147.293798,8630.505757,0,21
+308584,3595.904672,8427.977137,0,21
+308585,3492.799237,7803.649306,0,21
+308586,2928.856979,7279.412279,0,21
+308587,2719.829361,6611.640686,0,21
+308588,2403.297297,6464.188596,0,21
+308589,2175.470766,6181.003026,0,21
+308590,1737.437172,5201.458879,0,21
+308591,1512.878703,5520.019531,0,21
+308592,1174.220474,4457.21591,0,21
+308593,1147.348797,4450.156783,0,21
+308594,1147.349076,4191.569587,0,21
+308595,1093.268069,3444.918401,0,21
+308596,1093.268324,3271.35184,0,21
+308597,1052.404639,3061.051083,0,21
+308598,1038.724451,2564.4627,0,21
+308599,1011.27348,2104.816905,0,21
+308600,983.7000668,2034.029953,0,21
+308601,969.8667776,1874.9104,0,21
+308602,942.1050128,1565.162469,0,21
+308603,914.2143528,1609.514328,0,21
+308604,900.2198892,1502.717737,0,21
+308605,872.1304779,1502.717874,0,21
+308606,843.9047014,1430.678316,0,21
+308607,829.7397163,1413.713747,0,21
+308608,801.3030665,1384.48029,0,21
+308609,787.0306213,1305.362595,0,21
+308610,743.9903994,1313.641802,0,21
+308611,743.9905149,1239.705554,0,21
+308612,700.6051605,1230.97295,0,21
+308613,671.4821286,1148.940769,0,21
+308614,656.8588929,1157.207548,0,21
+308615,612.7335546,1094.086504,0,21
+308616,612.7336269,1088.010425,0,21
+308617,568.2087387,1019.897359,0,21
+308618,553.2743595,1019.397511,0,21
+308619,523.2605828,990.8948581,0,21
+308620,523.2607023,916.9119397,0,21
+308621,462.60023,925.2430055,0,21
+308622,477.8673524,870.9016147,0,21
+308623,416.5648821,844.8050287,0,21
+308624,431.9742321,818.1938767,0,21
+308625,369.9726468,784.0911021,0,21
+308626,385.5668727,764.9994989,0,21
+308627,338.5844073,689.1191135,0,21
+308628,322.7854343,697.4646681,0,21
+308629,290.9637634,689.1191187,0,21
+308630,274.9345962,601.3102286,0,21
+308631,258.8215415,600.1146548,0,21
+308632,226.3260694,601.3102402,0,21
+308633,209.9332681,513.1622012,0,21
+308634,176.8252753,531.3305007,0,21
+308635,160.0937483,503.273822,0,21
+308636,143.2302461,475.0550828,0,21
+308637,117.6578545,459.0603038,0,21
+308638,91.69749635,426.6674218,0,21
+308639,74.13071884,430.7570297,0,21
+308640,56.30769025,377.7351741,0,21
+308641,19.5480434,406.3081256,0,21
+308642,19.54805055,328.0958545,0,21
+308643,0,367.3787489,0,21
+308644,0,299.11687,0,21
+308645,0,306.1899682,0,21
+308646,0,299.11687,0,21
+308647,0,248.0030812,0,21
+308648,0,277.2109793,0,21
+308649,0,218.543753,0,21
+308650,0,248.0030772,0,21
+308651,0,188.8045893,0,21
+308652,0,218.5437494,0,21
+308653,0,188.8045896,0,21
+308654,0,188.8045866,0,21
+308655,0,158.7484982,0,21
+308656,0,158.7484955,0,21
+308657,0,158.7484977,0,21
+308658,0,128.324804,0,21
+308659,0,128.3248063,0,21
+308660,0,112.9533811,0,21
+308661,0,97.45965304,0,21
+308662,0,97.45965105,0,21
+308663,0,66.03394336,0,21
+308664,0,81.827251,0,21
+308665,0,66.03394321,0,21
+308666,0,33.81664862,0,21
+308667,0,33.81664911,0,21
+308668,0,33.81664867,0,21
+308669,0,17.24314641,0,21
+308670,0,0,0,21
+308671,0,0,0,21
+308672,0,0,0,21
+308673,0,0,0,21
+308674,0,0,0,21
+308675,0,0,0,21
+308676,0,0,0,21
+308677,0,0,0,21
+308678,0,0,0,21
+308679,0,0,0,21
+308680,0,0,0,21
+308681,0,0,0,21
+308682,0,0,0,21
+308683,0,0,0,21
+308684,0,0,0,21
+308685,0,0,0,21
+308686,0,0,0,21
+308687,0,0,0,21
+308688,0,0,0,21
+308689,0,0,0,21
+308690,0,0,0,21
+308691,0,0,0,21
+308692,0,0,0,21
+308693,0,0,0,21
+308694,0,0,0,21
+308695,0,0,0,21
+308696,0,0,0,21
+308697,0,0,0,21
+308698,0,0,0,21
+308699,0,0,0,21
+308700,0,0,0,21
+308701,0,0,0,21
+308702,0,0,0,21
+308703,0,0,0,21
+308704,0,0,0,21
+308705,0,0,0,21
+308706,0,0,0,21
+308707,0,0,0,21
+308708,0,0,0,21
+308709,0,0,0,21
+308710,0,0,0,21
+308711,0,0,0,21
+308712,0,0,0,21
+308713,0,0,0,21
+308714,0,0,0,21
+308715,0,0,0,21
+308716,0,0,0,21
+308717,0,0,0,21
+308718,0,0,0,21
+308719,0,0,0,21
+308720,0,0,0,21
+308721,0,0,0,21
+308722,0,0,0,21
+308723,0,0,0,21
+308724,0,0,0,21
+308725,0,0,0,21
+308726,0,0,0,21
+308727,0,0,0,21
+308728,0,0,0,21
+308729,0,0,0,21
+308730,0,0,0,21
+308731,0,0,0,21
+308732,0,0,0,21
+308733,0,0,0,21
+308734,0,0,0,21
+308735,0,0,0,21
+308736,0,0,0,21
+308737,0,0,0,21
+308738,0,0,0,21
+308739,0,0,0,21
+308740,0,0,0,21
+308741,0,0,0,21
+308742,0,0,0,21
+308743,0,0,0,21
+308744,0,0,0,21
+308745,0,0,0,21
+308746,0,0,0,21
+308747,0,0,0,21
+308748,0,0,0,21
+308749,0,0,0,21
+308750,0,0,0,21
+308751,0,0,0,21
+308752,0,0,0,21
+308753,0,0,0,21
+308754,0,0,0,21
+308755,0,0,0,21
+308756,0,0,0,21
+308757,0,0,0,21
+308758,0,0,0,21
+308759,0,0,0,21
+308760,0,0,0,21
+308761,0,0,0,21
+308762,0,0,0,21
+308763,0,0,0,21
+308764,0,0,0,21
+308765,0,0,0,21
+308766,0,0,0,21
+308767,0,0,0,21
+308768,0,0,0,21
+308769,0,0,0,21
+308770,0,0,0,21
+308771,0,0,0,21
+308772,0,0,0,21
+308773,0,0,0,21
+308774,0,0,0,21
+308775,0,0,0,21
+308776,0,0,0,21
+308777,0,0,0,21
+308778,0,0,0,21
+308779,0,0,0,21
+308780,0,0,0,21
+308781,0,0,0,21
+308782,0,0,0,21
+308783,0,0,0,21
+308784,0,0,0,21
+308785,0,0,0,21
+308786,0,0,0,21
+308787,0,0,0,21
+308788,0,0,0,21
+308789,0,0,0,21
+308790,0,0,0,21
+308791,0,0,0,21
+308792,0,0,0,21
+308793,0,0,0,21
+308794,0,0,0,21
+308795,0,0,0,21
+308796,0,0,0,21
+308797,0,0,0,21
+308798,0,0,0,21
+308799,0,0,0,21
+308800,0,0,0,21
+308801,0,0,0,21
+308802,0,0,0,21
+308803,0,0,0,21
+308804,0,0,0,21
+308805,0,0,0,21
+308806,0,0,0,21
+308807,0,0,0,21
+308808,0,0,0,21
+308809,0,0,0,21
+308810,0,0,0,21
+308811,0,0,0,21
+308812,0,0,0,21
+308813,0,0,0,21
+308814,0,0,0,21
+308815,0,0,0,21
+308816,0,0,0,21
+308817,0,0,0,21
+308818,0,0,0,21
+308819,0,0,0,21
+308820,0,0,0,21
+308821,0,0,0,21
+308822,0,0,0,21
+308823,0,0,0,21
+308824,0,0,0,21
+308825,0,0,0,21
+308826,0,0,0,21
+308827,0,0,0,21
+308828,0,0,0,21
+308829,0,0,0,21
+308830,0,0,0,21
+308831,0,0,0,21
+308832,0,0,0,21
+308833,0,0,0,21
+308834,0,0,0,21
+308835,0,0,0,21
+308836,0,0,0,21
+308837,0,0,0,21
+308838,0,0,0,21
+308839,0,0,0,21
+308840,0,0,0,21
+308841,0,0,0,21
+308842,0,0,0,21
+308843,0,0,0,21
+308844,0,0,0,21
+308845,0,0,0,21
+308846,0,0,0,21
+308847,0,0,0,21
+308848,0,0,0,21
+308849,0,0,0,21
+308850,0,0,0,21
+308851,0,0,0,21
+308852,0,0,0,21
+308853,0,0,0,21
+308854,0,0,0,21
+308855,0,0,0,21
+308856,0,0,0,21
+308857,0,0,0,21
+308858,0,0,0,21
+308859,0,0,0,21
+308860,0,0,0,21
+308861,0,0,0,21
+308862,0,0,0,21
+308863,0,0,0,21
+308864,0,0,0,21
+308865,0,0,0,21
+308866,0,0,0,21
+308867,0,0,0,21
+308868,0,0,0,21
+308869,0,0,0,21
+308870,0,0,0,21
+308871,0,0,0,21
+308872,0,0,0,21
+308873,0,0,0,21
+308874,0,0,0,21
+308875,0,0,0,21
+308876,0,0,0,21
+308877,0,0,0,21
+308878,0,0,0,21
+308879,0,0,0,21
+308880,0,0,0,21
+308881,0,0,0,21
+308882,0,0,0,21
+308883,0,0,0,21
+308884,0,0,0,21
+308885,0,0,0,21
+308886,0,0,0,21
+308887,0,0,0,21
+308888,0,0,0,21
+308889,0,0,0,21
+308890,0,0,0,21
+308891,0,0,0,21
+308892,0,0,0,21
+308893,0,0,0,21
+308894,0,0,0,21
+308895,0,0,0,21
+308896,0,0,0,21
+308897,0,0,0,21
+308898,0,0,0,21
+308899,0,0,0,21
+308900,0,0,0,21
+308901,0,0,0,21
+308902,0,0,0,21
+308903,0,0,0,21
+308904,0,0,0,21
+308905,0,0,0,21
+308906,0,0,0,21
+308907,0,0,0,21
+308908,0,0,0,21
+308909,0,0,0,21
+308910,0,0,0,21
+308911,0,0,0,21
+308912,0,0,0,21
+308913,0,0,0,21
+308914,0,0,0,21
+308915,0,0,0,21
+308916,0,0,0,21
+308917,0,0,0,21
+308918,0,0,0,21
+308919,0,0,0,21
+308920,0,0,0,21
+308921,0,0,0,21
+308922,0,0,0,21
+308923,0,0,0,21
+308924,0,0,0,21
+308925,0,0,0,21
+308926,0,0,0,21
+308927,0,0,0,21
+308928,0,0,0,21
+308929,0,0,0,21
+308930,0,0,0,21
+308931,0,0,0,21
+308932,0,0,0,21
+308933,0,0,0,21
+308934,0,0,0,21
+308935,0,0,0,21
+308936,0,0,0,21
+308937,0,0,0,21
+308938,0,0,0,21
+308939,0,0,0,21
+308940,0,0,0,21
+308941,0,0,0,21
+308942,0,0,0,21
+308943,0,0,0,21
+308944,0,0,0,21
+308945,0,0,0,21
+308946,0,0,0,21
+308947,0,0,0,21
+308948,0,0,0,21
+308949,0,0,0,21
+308950,0,0,0,21
+308951,0,0,0,21
+308952,0,0,0,21
+308953,0,0,0,21
+308954,0,0,0,21
+308955,0,0,0,21
+308956,0,0,0,21
+308957,0,0,0,21
+308958,0,0,0,21
+308959,0,0,0,21
+308960,0,0,0,21
+308961,0,0,0,21
+308962,0,0,0,21
+308963,0,0,0,21
+308964,0,0,0,21
+308965,0,0,0,21
+308966,0,0,0,21
+308967,0,0,0,21
+308968,0,0,0,21
+308969,0,0,0,21
+308970,0,0,0,21
+308971,0,0,0,21
+308972,0,0,0,21
+308973,0,0,0,21
+308974,0,0,0,21
+308975,0,0,0,21
+308976,0,0,0,21
+308977,0,0,0,21
+308978,0,0,0,21
+308979,0,0,0,21
+308980,0,0,0,21
+308981,0,0,0,21
+308982,0,0,0,21
+308983,0,0,0,21
+308984,0,0,0,21
+308985,0,0,0,21
+308986,0,0,0,21
+308987,0,0,0,21
+308988,0,0,0,21
+308989,0,0,0,21
+308990,0,0,0,21
+308991,0,0,0,21
+308992,0,0,0,21
+308993,0,0,0,21
+308994,0,0,0,21
+308995,0,0,0,21
+308996,0,0,0,21
+308997,0,0,0,21
+308998,0,0,0,21
+308999,0,0,0,21
+309000,0,0,0,21
+309001,0,0,0,21
+309002,0,0,0,21
+309003,0,0,0,21
+309004,0,0,0,21
+309005,0,0,0,21
+309006,0,0,0,21
+309007,0,0,0,21
+309008,0,0,0,21
+309009,0,0,0,21
+309010,0,0,0,21
+309011,0,0,0,21
+309012,0,0,0,21
+309013,0,0,0,21
+309014,0,0,0,21
+309015,0,0,0,21
+309016,0,0,0,21
+309017,0,0,0,21
+309018,0,0,0,21
+309019,0,0,0,21
+309020,0,0,0,21
+309021,0,0,0,21
+309022,0,0,0,21
+309023,0,0,0,21
+309024,0,0,0,21
+309025,0,0,0,21
+309026,0,0,0,21
+309027,0,0,0,21
+309028,0,0,0,21
+309029,0,0,0,21
+309030,0,0,0,21
+309031,0,0,0,21
+309032,0,0,0,21
+309033,0,0,0,21
+309034,0,0,0,21
+309035,0,0,0,21
+309036,0,0,0,21
+309037,0,0,0,21
+309038,0,0,0,21
+309039,0,0,0,21
+309040,0,0,0,21
+309041,0,0,0,21
+309042,0,0,0,21
+309043,0,0,0,21
+309044,0,0,0,21
+309045,0,0,0,21
+309046,0,0,0,21
+309047,0,0,0,21
+309048,0,0,0,21
+309049,0,0,0,21
+309050,0,0,0,21
+309051,0,0,0,21
+309052,0,0,0,21
+309053,0,0,0,21
+309054,0,0,0,21
+309055,0,0,0,21
+309056,0,0,0,21
+309057,0,0,0,21
+309058,0,0,0,21
+309059,0,0,0,21
+309060,0,0,0,21
+309061,0,0,0,21
+309062,0,0,0,21
+309063,0,0,0,21
+309064,0,0,0,21
+309065,0,0,0,21
+309066,0,0,0,21
+309067,0,0,0,21
+309068,0,0,0,21
+309069,0,0,0,21
+309070,0,0,0,21
+309071,0,0,0,21
+309072,0,0,0,21
+309073,0,0,0,21
+309074,0,0,0,21
+309075,0,0,0,21
+309076,0,0,0,21
+309077,0,0,0,21
+309078,0,0,0,21
+309079,0,0,0,21
+309080,0,0,0,21
+309081,0,0,0,21
+309082,0,0,0,21
+309083,0,0,0,21
+309084,0,0,0,21
+309085,0,0,0,21
+309086,0,0,0,21
+309087,0,0,0,21
+309088,0,0,0,21
+309089,0,0,0,21
+309090,0,0,0,21
+309091,0,0,0,21
+309092,0,0,0,21
+309093,0,0,0,21
+309094,0,0,0,21
+309095,0,0,0,21
+309096,0,0,0,21
+309097,0,0,0,21
+309098,0,0,0,21
+309099,0,0,0,21
+309100,0,0,0,21
+309101,0,0,0,21
+309102,0,0,0,21
+309103,0,0,0,21
+309104,0,0,0,21
+309105,0,0,0,21
+309106,0,0,0,21
+309107,0,0,0,21
+309108,0,0,0,21
+309109,0,0,0,21
+309110,0,0,0,21
+309111,0,0,0,21
+309112,0,0,0,21
+309113,0,0,0,21
+309114,0,0,0,21
+309115,0,0,0,21
+309116,0,0,0,21
+309117,0,0,0,21
+309118,0,0,0,21
+309119,0,0,0,21
+309120,0,0,0,21
+309121,0,0,0,21
+309122,0,0,0,21
+309123,0,0,0,21
+309124,0,0,0,21
+309125,0,0,0,21
+309126,0,0,0,21
+309127,0,0,0,21
+309128,0,0,0,21
+309129,0,0,0,21
+309130,0,0,0,21
+309131,0,0,0,21
+309132,0,0,0,21
+309133,0,0,0,21
+309134,0,0,0,21
+309135,0,0,0,21
+309136,0,0,0,21
+309137,0,0,0,21
+309138,0,0,0,21
+309139,0,0,0,21
+309140,0,0,0,21
+309141,0,0,0,21
+309142,0,0,0,21
+309143,0,0,0,21
+309144,0,0,0,21
+309145,0,0,0,21
+309146,0,0,0,21
+309147,0,0,0,21
+309148,0,0,0,21
+309149,0,0,0,21
+309150,0,0,0,21
+309151,0,0,0,21
+309152,0,0,0,21
+309153,0,0,0,21
+309154,0,0,0,21
+309155,0,0,0,21
+309156,0,0,0,21
+309157,0,0,0,21
+309158,0,0,0,21
+309159,0,0,0,21
+309160,0,0,0,21
+309161,0,0,0,21
+309162,0,0,0,21
+309163,0,0,0,21
+309164,0,0,0,21
+309165,0,0,0,21
+309166,0,0,0,21
+309167,0,0,0,21
+309168,0,0,0,21
+309169,0,0,0,21
+309170,0,0,0,21
+309171,0,0,0,21
+309172,0,0,0,21
+309173,0,0,0,21
+309174,0,0,0,21
+309175,0,0,0,21
+309176,0,0,0,21
+309177,0,0,0,21
+309178,0,0,0,21
+309179,0,0,0,21
+309180,0,0,0,21
+309181,0,0,0,21
+309182,0,0,0,21
+309183,0,0,0,21
+309184,0,0,0,21
+309185,0,0,0,21
+309186,0,0,0,21
+309187,0,0,0,21
+309188,0,0,0,21
+309189,0,0,0,21
+309190,0,0,0,21
+309191,0,0,0,21
+309192,0,0,0,21
+309193,0,0,0,21
+309194,0,0,0,21
+309195,0,0,0,21
+309196,0,0,0,21
+309197,0,0,0,21
+309198,0,0,0,21
+309199,0,0,0,21
+309200,0,0,0,21
+309201,0,0,0,21
+309202,0,0,0,21
+309203,0,0,0,21
+309204,0,0,0,21
+309205,0,0,0,21
+309206,0,0,0,21
+309207,0,0,0,21
+309208,0,0,0,21
+309209,0,0,0,21
+309210,0,0,0,21
+309211,0,0,0,21
+309212,0,0,0,21
+309213,0,0,0,21
+309214,0,0,0,21
+309215,0,0,0,21
+309216,0,0,0,21
+309217,0,0,0,21
+309218,0,0,0,21
+309219,0,0,0,21
+309220,0,0,0,21
+309221,0,0,0,21
+309222,0,0,0,21
+309223,0,0,0,21
+309224,0,0,0,21
+309225,0,0,0,21
+309226,0,0,0,21
+309227,0,0,0,21
+309228,0,0,0,21
+309229,0,0,0,21
+309230,0,0,0,21
+309231,0,0,0,21
+309232,0,0,0,21
+309233,0,0,0,21
+309234,0,0,0,21
+309235,0,0,0,21
+309236,0,0,0,21
+309237,0,0,0,21
+309238,0,0,0,21
+309239,0,0,0,21
+309240,0,0,0,21
+309241,0,0,0,21
+309242,0,0,0,21
+309243,0,0,0,21
+309244,0,0,0,21
+309245,0,0,0,21
+309246,0,0,0,21
+309247,0,0,0,21
+309248,0,0,0,21
+309249,0,0,0,21
+309250,0,0,0,21
+309251,0,0,0,21
+309252,0,0,0,21
+309253,0,0,0,21
+309254,0,0,0,21
+309255,0,0,0,21
+309256,0,0,0,21
+309257,0,0,0,21
+309258,0,0,0,21
+309259,0,0,0,21
+309260,0,0,0,21
+309261,0,0,0,21
+309262,0,0,0,21
+309263,0,535.0412753,0,21
+309264,0,871.5411108,0,21
+309265,0,704.4954768,0,21
+309266,0,1036.585195,0,21
+309267,0,1036.585194,0,21
+309268,0,1199.906819,0,21
+309269,0,1361.710194,0,21
+309270,0,1361.710194,0,21
+309271,0,1601.901359,0,21
+309272,0,1681.355039,0,21
+309273,0,1839.420958,0,21
+309274,0,1839.420966,0,21
+309275,0,2152.461477,0,21
+309276,0,2152.461496,0,21
+309277,0,2461.801587,0,21
+309278,0,2307.566958,0,21
+309279,0,2615.211255,0,21
+309280,0,2767.8363,0,21
+309281,0,2767.836323,0,21
+309282,0,3070.872835,0,21
+309283,0,3070.872863,0,21
+309284,0,3221.345676,0,21
+309285,0,3371.157576,0,21
+309286,0,3371.157613,0,21
+309287,0,3668.892705,0,21
+309288,0,3668.892733,0,21
+309289,0,3816.858142,0,21
+309290,0,3964.247483,0,21
+309291,0,4111.078006,0,21
+309292,0,4111.078065,0,21
+309293,0,4403.125547,0,21
+309294,0,4487.986965,0,21
+309295,0,4673.223392,0,21
+309296,0,4788.069381,0,21
+309297,0,4981.887514,0,21
+309298,0,4981.887534,0,21
+309299,0,5307.766491,0,21
+309300,0,5379.958581,0,21
+309301,0,6229.591335,0,21
+309302,0,6482.217658,0,21
+309303,0,6721.888471,0,21
+309304,0,6746.676009,0,21
+309305,0,7091.461283,0,21
+309306,0,7138.103564,0,21
+309307,0,7444.207476,0,21
+309308,0,9678.784975,0,21
+309309,0,9508.10542,0,21
+309310,0,10061.9342,0,21
+309311,0,10262.95809,0,21
+309312,0,10944.93194,0,21
+309313,0,11364.1,0,21
+309314,0,11854.33663,0,21
+309315,0,12219.80608,0,21
+309316,0,12547.25081,0,21
+309317,0,13112.67488,0,21
+309318,0,13148.18841,0,21
+309319,0,14809.96021,0,21
+309320,0,15373.62249,0,21
+309321,0,15446.76259,0,21
+309322,0,16555.97016,0,21
+309323,0,16742.94389,0,21
+309324,0,17539.72153,0,21
+309325,0,17888.57945,0,21
+309326,0,18703.70354,0,21
+309327,0,19111.43232,0,21
+309328,0,19716.14151,0,21
+309329,0,20103.96309,0,21
+309330,0,20802.25767,0,21
+309331,0,21237.35549,0,21
+309332,0,21872.21597,0,21
+309333,0,22240.33043,0,21
+309334,0,22736.00014,0,21
+309335,0,23308.76455,0,21
+309336,0,23704.72784,0,21
+309337,0,24252.00833,0,21
+309338,0,24806.02779,0,21
+309339,0,25295.69549,0,21
+309340,0,25424.60647,0,21
+309341,0,26508.04483,0,21
+309342,0,26449.57347,0,21
+309343,0,27210.7729,0,21
+309344,0,27641.8567,0,21
+309345,0,27876.47256,0,21
+309346,0,28736.5217,0,21
+309347,0,28833.11885,0,21
+309348,0,29383.22044,0,21
+309349,0,30032.66649,0,21
+309350,0,30385.52869,0,21
+309351,0,30588.29508,0,21
+309352,0,31346.26509,0,21
+309353,0,31481.24511,0,21
+309354,0,32278.75873,0,21
+309355,0,32643.08377,0,21
+309356,0,32707.66313,0,21
+309357,0,33654.70373,0,21
+309358,0,33743.2727,0,21
+309359,0,34224.12604,0,21
+309360,0,34766.43844,0,21
+309361,0,35102.72752,0,21
+309362,0,35628.15647,0,21
+309363,0,35816.41356,0,21
+309364,0,36417.8304,0,21
+309365,0,36689.63421,0,21
+309366,0,37054.34398,0,21
+309367,0,37824.08133,0,21
+309368,0,37847.56417,0,21
+309369,0,38241.62335,0,21
+309370,0,38829.02916,0,21
+309371,0,39268.18102,0,21
+309372,0,39442.93074,0,21
+309373,0,39884.09161,0,21
+309374,0,40413.04999,0,21
+309375,0,40618.43316,0,21
+309376,0,41238.43486,0,21
+309377,0,41634.07162,0,21
+309378,0,41780.385,0,21
+309379,0,42144.99369,0,21
+309380,0,42752.3153,0,21
+309381,0,42959.88287,0,21
+309382,0,43600.2046,0,21
+309383,0,43532.56238,0,21
+309384,0,44410.27096,0,21
+309385,0,44468.05416,0,21
+309386,0,44695.37314,0,21
+309387,0,45573.67485,0,21
+309388,0,45456.22089,0,21
+309389,0,45887.3308,0,21
+309390,0,46705.75559,0,21
+309391,0,46652.50383,0,21
+309392,0,46690.18835,0,21
+309393,0,47584.24967,0,21
+309394,0,47719.70585,0,21
+309395,0,48220.43747,0,21
+309396,0,48033.76645,0,21
+309397,0,48830.34574,0,21
+309398,0,48948.53508,0,21
+309399,0,49374.16705,0,21
+309400,0,49325.81813,0,21
+309401,0,49968.86673,0,21
+309402,0,50389.87752,0,21
+309403,0,50101.26251,0,21
+309404,0,51068.52531,0,21
+309405,0,50923.48956,0,21
+309406,0,51397.05503,0,21
+309407,0,51587.99399,0,21
+309408,0,52198.70048,0,21
+309409,0,51813.29797,0,21
+309410,0,52787.02361,0,21
+309411,0,52804.5215,0,21
+309412,0,52809.13547,0,21
+309413,0,53688.46101,0,21
+309414,0,53279.07534,0,21
+309415,0,54358.15483,0,21
+309416,0,53858.90228,0,21
+309417,0,54706.24203,0,21
+309418,0,54682.96454,0,21
+309419,0,55006.6093,0,21
+309420,0,55165.89314,0,21
+309421,0,0,0,21
+309422,0,0,0,21
+309423,0,0,0,21
+309424,0,0,655797.6874,21
+309425,328190.4225,363338.4346,0,21
+309426,0,0,0,21
+309427,0,0,0,21
+309428,0,0,0,21
+309429,0,0,0,21
+309430,0,0,0,21
+309431,0,0,0,21
+309432,0,0,0,21
+309433,0,0,0,21
+309434,0,0,0,21
+309435,0,0,0,21
+309436,0,0,0,21
+309437,0,0,0,21
+309438,0,0,0,21
+309439,0,0,0,21
+309440,0,0,0,21
+309441,0,0,0,21
+309442,0,0,0,21
+309443,0,0,0,21
+309444,0,0,0,21
+309445,0,0,0,21
+309446,0,0,0,21
+309447,0,0,0,21
+309448,0,0,0,21
+309449,0,0,0,21
+309450,0,0,0,21
+309451,0,0,0,21
+309452,0,0,0,21
+309453,0,0,0,21
+309454,0,0,0,21
+309455,0,0,0,21
+309456,0,0,0,21
+309457,0,0,0,21
+309458,0,0,655901.6628,21
+309459,328963.9451,364950.9833,0,21
+309460,0,0,0,21
+309461,0,0,0,21
+309462,0,0,0,21
+309463,0,0,0,21
+309464,0,0,0,21
+309465,0,0,0,21
+309466,0,0,0,21
+309467,0,0,0,21
+309468,0,0,0,21
+309469,0,0,0,21
+309470,0,0,0,21
+309471,0,0,0,21
+309472,0,0,0,21
+309473,0,0,0,21
+309474,0,0,0,21
+309475,0,0,0,21
+309476,0,0,0,21
+309477,0,0,0,21
+309478,0,0,0,21
+309479,0,0,0,21
+309480,0,0,0,15.6
+309481,0,0,0,15.6
+309482,0,0,0,15.6
+309483,0,0,0,15.6
+309484,0,0,0,15.6
+309485,0,0,0,15.6
+309486,0,0,0,15.6
+309487,0,0,0,15.6
+309488,0,0,0,15.6
+309489,0,0,0,15.6
+309490,0,0,0,15.6
+309491,0,0,0,15.6
+309492,0,0,655971.2849,15.6
+309493,328781.9265,364836.4778,0,15.6
+309494,0,0,0,15.6
+309495,0,0,0,15.6
+309496,0,0,0,15.6
+309497,0,0,0,15.6
+309498,0,0,0,15.6
+309499,0,0,0,15.6
+309500,0,0,0,15.6
+309501,0,0,0,15.6
+309502,0,0,0,15.6
+309503,0,0,0,15.6
+309504,0,0,0,15.6
+309505,0,0,0,15.6
+309506,0,0,0,15.6
+309507,0,0,0,15.6
+309508,0,0,0,15.6
+309509,0,0,0,15.6
+309510,0,0,0,15.6
+309511,0,0,0,15.6
+309512,0,0,0,15.6
+309513,0,0,0,15.6
+309514,0,0,0,15.6
+309515,0,0,0,15.6
+309516,0,0,0,15.6
+309517,0,0,0,15.6
+309518,0,0,0,15.6
+309519,0,0,0,15.6
+309520,0,0,0,15.6
+309521,0,0,0,15.6
+309522,0,0,0,15.6
+309523,0,0,0,15.6
+309524,0,0,0,15.6
+309525,0,0,0,15.6
+309526,0,0,655981.4781,15.6
+309527,331166.8986,365769.5502,0,15.6
+309528,0,0,0,15.6
+309529,0,0,0,15.6
+309530,0,0,0,15.6
+309531,0,0,0,15.6
+309532,0,0,0,15.6
+309533,0,0,0,15.6
+309534,0,0,0,15.6
+309535,0,0,0,15.6
+309536,0,0,0,15.6
+309537,0,0,0,15.6
+309538,0,0,0,15.6
+309539,0,0,0,15.6
+309540,0,0,0,15.6
+309541,0,0,0,15.6
+309542,0,0,0,15.6
+309543,0,0,0,15.6
+309544,0,0,0,15.6
+309545,0,0,0,15.6
+309546,0,0,0,15.6
+309547,0,0,0,15.6
+309548,0,0,0,15.6
+309549,0,0,0,15.6
+309550,0,0,0,15.6
+309551,0,0,0,15.6
+309552,0,0,0,15.6
+309553,0,0,0,15.6
+309554,0,0,0,15.6
+309555,0,0,0,15.6
+309556,0,0,0,15.6
+309557,0,0,0,15.6
+309558,0,0,0,15.6
+309559,0,0,0,15.6
+309560,0,0,656139.6887,15.6
+309561,329609.5108,365509.752,0,15.6
+309562,0,0,0,15.6
+309563,0,0,0,15.6
+309564,0,0,0,15.6
+309565,0,0,0,15.6
+309566,0,0,0,15.6
+309567,0,0,0,15.6
+309568,0,0,0,15.6
+309569,0,0,0,15.6
+309570,0,0,0,15.6
+309571,0,0,0,15.6
+309572,0,0,0,15.6
+309573,0,0,0,15.6
+309574,0,0,0,15.6
+309575,0,0,0,15.6
+309576,0,0,0,15.6
+309577,0,0,0,15.6
+309578,0,0,0,15.6
+309579,0,0,0,15.6
+309580,0,0,0,15.6
+309581,0,0,0,15.6
+309582,0,0,0,15.6
+309583,0,0,0,15.6
+309584,0,0,0,15.6
+309585,0,0,0,15.6
+309586,0,0,0,15.6
+309587,0,0,0,15.6
+309588,0,0,0,15.6
+309589,0,0,0,15.6
+309590,0,0,0,15.6
+309591,0,0,0,15.6
+309592,0,0,0,15.6
+309593,0,0,0,15.6
+309594,0,0,656270.3488,15.6
+309595,330864.5233,365741.6081,0,15.6
+309596,0,0,0,15.6
+309597,0,0,0,15.6
+309598,0,0,0,15.6
+309599,0,0,0,15.6
+309600,0,0,0,15.6
+309601,0,0,0,15.6
+309602,0,0,0,15.6
+309603,0,0,0,15.6
+309604,0,0,0,15.6
+309605,0,0,0,15.6
+309606,0,0,0,15.6
+309607,0,0,0,15.6
+309608,0,0,0,15.6
+309609,0,0,0,15.6
+309610,0,0,0,15.6
+309611,0,0,0,15.6
+309612,0,0,0,15.6
+309613,0,0,0,15.6
+309614,0,0,0,15.6
+309615,0,0,0,15.6
+309616,0,0,0,15.6
+309617,0,0,0,15.6
+309618,0,0,0,15.6
+309619,0,0,0,15.6
+309620,0,0,0,15.6
+309621,0,0,0,15.6
+309622,0,0,0,15.6
+309623,0,0,0,15.6
+309624,0,0,0,15.6
+309625,0,0,0,15.6
+309626,0,0,0,15.6
+309627,0,0,0,15.6
+309628,0,0,656136.4174,15.6
+309629,329885.4865,366623.4685,0,15.6
+309630,0,0,0,15.6
+309631,0,0,0,15.6
+309632,0,0,0,15.6
+309633,0,0,0,15.6
+309634,0,0,0,15.6
+309635,0,0,0,15.6
+309636,0,0,0,15.6
+309637,0,0,0,15.6
+309638,0,0,0,15.6
+309639,0,0,0,15.6
+309640,0,0,0,15.6
+309641,0,0,0,15.6
+309642,0,0,0,15.6
+309643,0,0,0,15.6
+309644,0,0,0,15.6
+309645,0,0,0,15.6
+309646,0,0,0,15.6
+309647,0,0,0,15.6
+309648,0,0,0,15.6
+309649,0,0,0,15.6
+309650,0,0,0,15.6
+309651,0,0,0,15.6
+309652,0,0,0,15.6
+309653,0,0,0,15.6
+309654,0,0,0,15.6
+309655,0,0,0,15.6
+309656,0,0,0,15.6
+309657,0,0,0,15.6
+309658,0,0,0,15.6
+309659,0,0,0,15.6
+309660,0,0,0,15.6
+309661,0,0,0,15.6
+309662,0,0,655274.8951,15.6
+309663,330690.8102,365867.9349,0,15.6
+309664,0,0,0,15.6
+309665,0,0,0,15.6
+309666,0,0,0,15.6
+309667,0,0,0,15.6
+309668,0,0,0,15.6
+309669,0,0,0,15.6
+309670,0,0,0,15.6
+309671,0,0,0,15.6
+309672,0,0,0,15.6
+309673,0,0,0,15.6
+309674,0,0,0,15.6
+309675,0,0,0,15.6
+309676,0,0,0,15.6
+309677,0,0,0,15.6
+309678,0,0,0,15.6
+309679,0,0,0,15.6
+309680,0,0,0,15.6
+309681,0,0,0,15.6
+309682,0,0,0,15.6
+309683,0,0,0,15.6
+309684,0,0,0,15.6
+309685,0,0,0,15.6
+309686,0,0,0,15.6
+309687,0,0,0,15.6
+309688,0,0,0,15.6
+309689,0,0,0,15.6
+309690,0,0,0,15.6
+309691,0,0,0,15.6
+309692,0,0,0,15.6
+309693,0,0,0,15.6
+309694,0,0,0,15.6
+309695,0,0,0,15.6
+309696,0,0,655794.1683,15.6
+309697,333082.3488,366650.8721,0,15.6
+309698,0,0,0,15.6
+309699,0,0,0,15.6
+309700,0,0,0,15.6
+309701,0,0,0,15.6
+309702,0,0,0,15.6
+309703,0,0,0,15.6
+309704,0,0,0,15.6
+309705,0,0,0,15.6
+309706,0,0,0,15.6
+309707,0,0,0,15.6
+309708,0,0,0,15.6
+309709,0,0,0,15.6
+309710,0,0,0,15.6
+309711,0,0,0,15.6
+309712,0,0,0,15.6
+309713,0,0,0,15.6
+309714,0,0,0,15.6
+309715,0,0,0,15.6
+309716,0,0,0,15.6
+309717,0,0,0,15.6
+309718,0,0,0,15.6
+309719,0,0,0,15.6
+309720,0,0,0,15.6
+309721,0,0,0,15.6
+309722,0,0,0,15.6
+309723,0,0,0,15.6
+309724,0,0,0,15.6
+309725,0,0,0,15.6
+309726,0,0,0,15.6
+309727,0,0,0,15.6
+309728,0,0,0,15.6
+309729,0,0,0,15.6
+309730,0,0,656331.6117,15.6
+309731,329747.9127,367147.6823,0,15.6
+309732,0,0,0,15.6
+309733,0,0,0,15.6
+309734,0,0,0,15.6
+309735,0,0,0,15.6
+309736,0,0,0,15.6
+309737,0,0,0,15.6
+309738,0,0,0,15.6
+309739,0,0,0,15.6
+309740,0,0,0,15.6
+309741,0,0,0,15.6
+309742,0,0,0,15.6
+309743,0,0,0,15.6
+309744,0,0,0,15.6
+309745,0,0,0,15.6
+309746,0,0,0,15.6
+309747,0,0,0,15.6
+309748,0,0,0,15.6
+309749,0,0,0,15.6
+309750,0,0,0,15.6
+309751,0,0,0,15.6
+309752,0,0,0,15.6
+309753,0,0,0,15.6
+309754,0,0,0,15.6
+309755,0,0,0,15.6
+309756,0,0,0,15.6
+309757,0,0,0,15.6
+309758,0,0,0,15.6
+309759,0,0,0,15.6
+309760,0,0,0,15.6
+309761,0,0,0,15.6
+309762,0,0,0,15.6
+309763,0,0,0,15.6
+309764,0,0,656267.292,15.6
+309765,333461.8108,366137.3978,0,15.6
+309766,0,0,0,15.6
+309767,0,0,0,15.6
+309768,0,0,0,15.6
+309769,0,0,0,15.6
+309770,0,0,0,15.6
+309771,0,0,0,15.6
+309772,0,0,0,15.6
+309773,0,0,0,15.6
+309774,0,0,0,15.6
+309775,0,0,0,15.6
+309776,0,0,0,15.6
+309777,0,0,0,15.6
+309778,0,0,0,15.6
+309779,0,0,0,15.6
+309780,0,0,0,15.6
+309781,0,0,0,15.6
+309782,0,0,0,15.6
+309783,0,0,0,15.6
+309784,0,0,0,15.6
+309785,0,0,0,15.6
+309786,0,0,0,15.6
+309787,0,0,0,15.6
+309788,0,0,0,15.6
+309789,0,0,0,15.6
+309790,0,0,0,15.6
+309791,0,0,0,15.6
+309792,0,0,0,15.6
+309793,0,0,0,15.6
+309794,0,0,0,15.6
+309795,0,0,0,15.6
+309796,0,0,0,15.6
+309797,0,0,655790.0985,15.6
+309798,0,0,0,15.6
+309799,328925.6667,366837.786,0,15.6
+309800,0,0,0,15.6
+309801,0,0,0,15.6
+309802,0,0,0,15.6
+309803,0,0,0,15.6
+309804,0,0,0,15.6
+309805,0,0,0,15.6
+309806,0,0,0,15.6
+309807,0,0,0,15.6
+309808,0,0,0,15.6
+309809,0,0,0,15.6
+309810,0,0,0,15.6
+309811,0,0,0,15.6
+309812,0,0,0,15.6
+309813,0,0,0,15.6
+309814,0,0,0,15.6
+309815,0,0,0,15.6
+309816,0,0,0,15.6
+309817,0,0,0,15.6
+309818,0,0,0,15.6
+309819,0,0,0,15.6
+309820,0,0,0,15.6
+309821,0,0,0,15.6
+309822,0,0,0,15.6
+309823,0,0,0,15.6
+309824,0,0,0,15.6
+309825,0,0,0,15.6
+309826,0,0,0,15.6
+309827,0,0,0,15.6
+309828,0,0,0,15.6
+309829,0,0,0,15.6
+309830,0,0,656231.4799,15.6
+309831,0,0,0,15.6
+309832,0,0,0,15.6
+309833,340360.0922,367256.7386,0,15.6
+309834,0,0,0,15.6
+309835,0,0,0,15.6
+309836,0,0,0,15.6
+309837,0,0,0,15.6
+309838,0,0,0,15.6
+309839,0,0,0,15.6
+309840,0,0,0,17.8
+309841,0,48107.2829,0,17.8
+309842,0,17940.12906,0,17.8
+309843,0,18967.61063,0,17.8
+309844,0,35334.67066,0,17.8
+309845,0,31523.01318,0,17.8
+309846,0,32383.39487,0,17.8
+309847,0,34108.95439,0,17.8
+309848,0,34761.33329,0,17.8
+309849,0,36132.68117,0,17.8
+309850,0,34441.20213,0,17.8
+309851,0,35226.98687,0,17.8
+309852,0,35814.23091,0,17.8
+309853,0,36461.08201,0,17.8
+309854,0,37034.49894,0,17.8
+309855,0,37626.23243,0,17.8
+309856,0,38258.01537,0,17.8
+309857,0,38765.5886,0,17.8
+309858,0,39352.37993,0,17.8
+309859,0,39979.17602,0,17.8
+309860,0,40170.88433,0,17.8
+309861,0,40934.93487,0,17.8
+309862,0,0,0,17.8
+309863,0,0,656613.582,17.8
+309864,0,0,0,17.8
+309865,0,0,0,17.8
+309866,5044.095128,0,0,17.8
+309867,349908.4457,369419.3301,0,17.8
+309868,5958.663316,0,0,17.8
+309869,7734.279218,0,0,17.8
+309870,7951.7364,0,0,17.8
+309871,8168.265708,0,0,17.8
+309872,8383.885251,0,0,17.8
+309873,8598.61221,0,0,17.8
+309874,8812.462918,0,0,17.8
+309875,9025.452919,0,0,17.8
+309876,9237.597033,0,0,17.8
+309877,9343.356328,0,0,17.8
+309878,9659.403556,0,0,17.8
+309879,9659.403558,0,0,17.8
+309880,10077.98842,0,0,17.8
+309881,9973.63878,0,0,17.8
+309882,10389.87164,0,0,17.8
+309883,10389.87164,0,0,17.8
+309884,10700.0357,0,0,17.8
+309885,10700.0357,0,0,17.8
+309886,10905.87452,0,0,17.8
+309887,0,0,0,17.8
+309888,0,0,0,17.8
+309889,0,0,0,17.8
+309890,0,0,0,17.8
+309891,0,0,0,17.8
+309892,0,0,0,17.8
+309893,0,0,0,17.8
+309894,0,0,0,17.8
+309895,0,0,0,17.8
+309896,0,0,655975.4692,17.8
+309897,0,0,0,17.8
+309898,0,0,0,17.8
+309899,0,0,0,17.8
+309900,0,0,0,20
+309901,351485.6979,369419.4033,0,20
+309902,27615.8572,0,0,20
+309903,44022.4814,1111.666655,0,20
+309904,31670.58132,96071.59023,0,20
+309905,65933.55027,127173.8872,0,20
+309906,59798.30369,89788.29985,0,20
+309907,56751.50485,104341.9835,0,20
+309908,59891.02127,105740.1765,0,20
+309909,59936.70926,107011.7506,0,20
+309910,68131.84007,106461.6414,0,20
+309911,72007.86135,107315.2235,0,20
+309912,72514.64776,107516.7938,0,20
+309913,71904.13,107923.9186,0,20
+309914,71303.32299,107790.4856,0,20
+309915,71696.84012,108396.5759,0,20
+309916,71349.69848,108846.6682,0,20
+309917,72208.15042,108634.2251,0,20
+309918,72169.7488,109144.814,0,20
+309919,72718.36752,109957.9436,0,20
+309920,72960.79975,109616.7349,0,20
+309921,73177.7787,110236.645,0,20
+309922,73467.54095,110625.0166,0,20
+309923,73848.91849,110654.6561,0,20
+309924,66110.03658,111165.6084,0,20
+309925,63682.65633,111037.3086,0,20
+309926,63469.37913,111545.9499,0,20
+309927,62414.5763,111802.4859,0,20
+309928,61575.84129,111932.198,0,20
+309929,61750.09808,112391.4676,0,20
+309930,60494.14335,112239.7183,0,20
+309931,60099.79425,112452.7049,0,20
+309932,59484.11277,112467.0836,0,20
+309933,58660.8552,112259.1673,0,20
+309934,57882.50373,112037.1012,0,20
+309935,57506.52545,111939.3928,0,20
+309936,56558.53373,111846.8805,0,20
+309937,56028.01572,111790.4632,0,20
+309938,55435.97904,111530.519,0,20
+309939,54593.16767,111249.9073,0,20
+309940,53818.97008,111042.9255,0,20
+309941,52394.40972,110989.1667,0,20
+309942,51353.49117,111017.7518,0,20
+309943,50604.36175,110374.8711,0,20
+309944,49625.061,110389.8662,0,20
+309945,49161.0617,109863.304,0,20
+309946,47966.55132,110234.3267,0,20
+309947,47483.51097,109216.3656,0,20
+309948,46679.26999,109494.72,0,20
+309949,45493.15393,109251.4101,0,20
+309950,45175.99373,108680.9298,0,20
+309951,43735.66706,108519.7594,0,20
+309952,43401.71994,108349.0093,0,20
+309953,42224.98524,108011.9361,0,20
+309954,42057.1656,107737.9042,0,20
+309955,42118.68959,107556.2029,0,20
+309956,41906.56308,107152.4053,0,20
+309957,41805.80962,107075.4726,0,20
+309958,41953.24319,106114.9301,0,20
+309959,41705.16899,106565.4369,0,20
+309960,41630.93949,105801.1625,0,21
+309961,34687.53408,98964.60438,0,21
+309962,33247.81362,98610.89299,0,21
+309963,33053.12165,97550.50478,0,21
+309964,32530.42879,97191.49261,0,21
+309965,32039.13202,97102.17766,0,21
+309966,31880.66748,96538.40368,0,21
+309967,31359.68415,96339.86736,0,21
+309968,30906.67523,95601.44301,0,21
+309969,30648.94637,95613.63203,0,21
+309970,30471.7716,95260.24445,0,21
+309971,29683.15848,94412.20177,0,21
+309972,29458.93577,94783.5997,0,21
+309973,29129.84485,93889.27197,0,21
+309974,28513.93879,93841.4258,0,21
+309975,28372.90291,93227.05479,0,21
+309976,27776.33656,93029.25408,0,21
+309977,27603.63247,92623.76334,0,21
+309978,27417.10533,92615.75467,0,21
+309979,26989.21694,91658.44442,0,21
+309980,26878.54851,91879.66939,0,21
+309981,26781.87557,90923.78104,0,21
+309982,26258.87668,90994.97644,0,21
+309983,26228.92813,90770.95663,0,21
+309984,25807.55289,90166.59905,0,21
+309985,25775.513,89761.30945,0,21
+309986,25235.98898,89543.06181,0,21
+309987,25405.92513,89263.93367,0,21
+309988,24682.40535,88711.29432,0,21
+309989,24721.73484,88709.58195,0,21
+309990,24513.21647,87721.20741,0,21
+309991,24150.95711,88308.0592,0,21
+309992,23863.3826,87572.1017,0,21
+309993,23769.47944,87865.97142,0,21
+309994,23379.97135,87550.59123,0,21
+309995,23100.97335,87376.99987,0,21
+309996,23090.18808,87306.012,0,21
+309997,22537.4558,87201.40167,0,21
+309998,22694.00032,86919.69946,0,21
+309999,22158.88742,87075.23426,0,21
+310000,21910.88012,86945.0632,0,21
+310001,21852.52977,86940.55992,0,21
+310002,21511.46622,86588.3224,0,21
+310003,21280.84647,86719.90854,0,21
+310004,20989.38602,86484.42973,0,21
+310005,20690.27515,86404.47336,0,21
+310006,20585.00716,86802.43321,0,21
+310007,20606.04995,86025.6979,0,21
+310008,20332.28402,86299.81589,0,21
+310009,20331.61915,86339.34975,0,21
+310010,20248.0565,86261.49388,0,21
+310011,20066.81582,85681.1477,0,21
+310012,20004.21255,86282.19619,0,21
+310013,19758.56059,85777.44011,0,21
+310014,19844.07489,85808.64934,0,21
+310015,19599.68962,85744.54297,0,21
+310016,19459.68471,85787.67002,0,21
+310017,19428.63269,85704.54401,0,21
+310018,19395.15877,85414.47073,0,21
+310019,19172.78009,85690.68016,0,21
+310020,19008.68853,85228.01921,0,21
+310021,3200.421512,37306.64569,0,21
+310022,2074.298612,33194.21747,0,21
+310023,1764.910647,32987.8083,0,21
+310024,1236.013956,31808.26905,0,21
+310025,997.5089613,31095.97308,0,21
+310026,942.0558439,30597.61375,0,21
+310027,942.0959446,30003.10381,0,21
+310028,900.2329378,29210.88076,0,21
+310029,886.1827292,29141.14241,0,21
+310030,858.0323481,27957.34915,0,21
+310031,829.7371855,28029.96941,0,21
+310032,815.5367404,27122.55576,0,21
+310033,787.0278732,26635.09865,0,21
+310034,758.3720359,26310.4002,0,21
+310035,743.9877201,25949.75713,0,21
+310036,715.1033838,25058.72101,0,21
+310037,700.6023285,24992.27595,0,21
+310038,656.855915,24509.1917,0,21
+310039,656.8559546,23787.96584,0,21
+310040,627.4824351,23574.92967,0,21
+310041,597.9345705,22993.77767,0,21
+310042,583.0932541,22827.21102,0,21
+310043,553.2714574,21919.11648,0,21
+310044,553.2714796,21903.41908,0,21
+310045,508.1762584,21508.475,0,21
+310046,493.0436103,20810.7967,0,21
+310047,477.8584815,20553.54954,0,21
+310048,447.3255184,20377.09967,0,21
+310049,431.9748631,19551.95144,0,21
+310050,401.0972217,19246.43239,0,21
+310051,385.5670056,19069.4313,0,21
+310052,354.3127853,18090.76515,0,21
+310053,354.3128185,17737.05956,0,21
+310054,306.9129734,17339.92003,0,21
+310055,290.9638091,16611.34719,0,21
+310056,274.9345906,16507.55095,0,21
+310057,258.8215054,15830.69992,0,21
+310058,209.9332037,15610.44581,0,21
+310059,226.3260412,15047.60827,0,21
+310060,168.4752201,14739.87657,0,21
+310061,160.0936765,14350.81002,0,21
+310062,143.2301602,13771.90017,0,21
+310063,126.2215212,13316.08717,0,21
+310064,91.69742794,13271.56345,0,21
+310065,74.13066088,12291.95859,0,21
+310066,56.30764283,12385.09425,0,21
+310067,19.548024,11468.45155,0,21
+310068,19.548024,11499.15461,0,21
+310069,0,10818.22945,0,21
+310070,0,10478.98949,0,21
+310071,0,9925.289712,0,21
+310072,0,9749.558697,0,21
+310073,0,9238.841943,0,21
+310074,0,8821.6077,0,21
+310075,0,8272.969325,0,21
+310076,0,8151.655562,0,21
+310077,0,7556.885268,0,21
+310078,0,6943.450715,0,21
+310079,0,6851.21117,0,21
+310080,0,6471.291392,0,21
+310081,0,5618.313825,0,21
+310082,0,5495.204417,0,21
+310083,0,4899.851743,0,21
+310084,0,4453.108638,0,21
+310085,0,4163.033538,0,21
+310086,0,3528.512046,0,21
+310087,0,3185.980457,0,21
+310088,0,2945.802239,0,21
+310089,0,2421.533648,0,21
+310090,0,2360.68604,0,21
+310091,0,1812.739771,0,21
+310092,0,1477.197058,0,21
+310093,0,1477.197067,0,21
+310094,0,1127.984389,0,21
+310095,0,1065.752469,0,21
+310096,0,1056.798758,0,21
+310097,0,976.188037,0,21
+310098,0,953.6488321,0,21
+310099,0,903.9903407,0,21
+310100,0,849.4056761,0,21
+310101,0,799.1973708,0,21
+310102,0,757.822771,0,21
+310103,0,711.6624174,0,21
+310104,0,665.2384441,0,21
+310105,0,637.1817567,0,21
+310106,0,571.5344441,0,21
+310107,0,514.5711231,0,21
+310108,0,486.1176868,0,21
+310109,0,433.3204278,0,21
+310110,0,379.9838953,0,21
+310111,0,350.8490117,0,21
+310112,0,276.6648426,0,21
+310113,0,256.9523979,0,21
+310114,0,181.3332887,0,21
+310115,0,160.5958065,0,21
+310116,0,71.95343149,0,21
+310117,0,55.72254118,0,21
+310118,0,0,0,21
+310119,0,0,0,21
+310120,0,0,0,21
+310121,0,0,0,21
+310122,0,0,0,21
+310123,0,0,0,21
+310124,0,0,0,21
+310125,0,0,0,21
+310126,0,0,0,21
+310127,0,0,0,21
+310128,0,0,0,21
+310129,0,0,0,21
+310130,0,0,0,21
+310131,0,0,0,21
+310132,0,0,0,21
+310133,0,0,0,21
+310134,0,0,0,21
+310135,0,0,0,21
+310136,0,0,0,21
+310137,0,0,0,21
+310138,0,0,0,21
+310139,0,0,0,21
+310140,0,0,0,21
+310141,0,0,0,21
+310142,0,0,0,21
+310143,0,0,0,21
+310144,0,0,0,21
+310145,0,0,0,21
+310146,0,0,0,21
+310147,0,0,0,21
+310148,0,0,0,21
+310149,0,0,0,21
+310150,0,0,0,21
+310151,0,0,0,21
+310152,0,0,0,21
+310153,0,0,0,21
+310154,0,0,0,21
+310155,0,0,0,21
+310156,0,0,0,21
+310157,0,0,0,21
+310158,0,0,0,21
+310159,0,0,0,21
+310160,0,0,0,21
+310161,0,0,0,21
+310162,0,0,0,21
+310163,0,0,0,21
+310164,0,0,0,21
+310165,0,0,0,21
+310166,0,0,0,21
+310167,0,0,0,21
+310168,0,0,0,21
+310169,0,0,0,21
+310170,0,0,0,21
+310171,0,0,0,21
+310172,0,0,0,21
+310173,0,0,0,21
+310174,0,0,0,21
+310175,0,0,0,21
+310176,0,0,0,21
+310177,0,0,0,21
+310178,0,0,0,21
+310179,0,0,0,21
+310180,0,0,0,21
+310181,0,0,0,21
+310182,0,0,0,21
+310183,0,0,0,21
+310184,0,0,0,21
+310185,0,0,0,21
+310186,0,0,0,21
+310187,0,0,0,21
+310188,0,0,0,21
+310189,0,0,0,21
+310190,0,0,0,21
+310191,0,0,0,21
+310192,0,0,0,21
+310193,0,0,0,21
+310194,0,0,0,21
+310195,0,0,0,21
+310196,0,0,0,21
+310197,0,0,0,21
+310198,0,0,0,21
+310199,0,0,0,21
+310200,0,0,0,21
+310201,0,0,0,21
+310202,0,0,0,21
+310203,0,0,0,21
+310204,0,0,0,21
+310205,0,0,0,21
+310206,0,0,0,21
+310207,0,0,0,21
+310208,0,0,0,21
+310209,0,0,0,21
+310210,0,0,0,21
+310211,0,0,0,21
+310212,0,0,0,21
+310213,0,0,0,21
+310214,0,0,0,21
+310215,0,0,0,21
+310216,0,0,0,21
+310217,0,0,0,21
+310218,0,0,0,21
+310219,0,0,0,21
+310220,0,0,0,21
+310221,0,0,0,21
+310222,0,0,0,21
+310223,0,0,0,21
+310224,0,0,0,21
+310225,0,0,0,21
+310226,0,0,0,21
+310227,0,0,0,21
+310228,0,0,0,21
+310229,0,0,0,21
+310230,0,0,0,21
+310231,0,0,0,21
+310232,0,0,0,21
+310233,0,0,0,21
+310234,0,0,0,21
+310235,0,0,0,21
+310236,0,0,0,21
+310237,0,0,0,21
+310238,0,0,0,21
+310239,0,0,0,21
+310240,0,0,0,21
+310241,0,0,0,21
+310242,0,0,0,21
+310243,0,0,0,21
+310244,0,0,0,21
+310245,0,0,0,21
+310246,0,0,0,21
+310247,0,0,0,21
+310248,0,0,0,21
+310249,0,0,0,21
+310250,0,0,0,21
+310251,0,0,0,21
+310252,0,0,0,21
+310253,0,0,0,21
+310254,0,0,0,21
+310255,0,0,0,21
+310256,0,0,0,21
+310257,0,0,0,21
+310258,0,0,0,21
+310259,0,0,0,21
+310260,0,0,0,21
+310261,0,0,0,21
+310262,0,0,0,21
+310263,0,0,0,21
+310264,0,0,0,21
+310265,0,0,0,21
+310266,0,0,0,21
+310267,0,0,0,21
+310268,0,0,0,21
+310269,0,0,0,21
+310270,0,0,0,21
+310271,0,0,0,21
+310272,0,0,0,21
+310273,0,0,0,21
+310274,0,0,0,21
+310275,0,0,0,21
+310276,0,0,0,21
+310277,0,0,0,21
+310278,0,0,0,21
+310279,0,0,0,21
+310280,0,0,0,21
+310281,0,0,0,21
+310282,0,0,0,21
+310283,0,0,0,21
+310284,0,0,0,21
+310285,0,0,0,21
+310286,0,0,0,21
+310287,0,0,0,21
+310288,0,0,0,21
+310289,0,0,0,21
+310290,0,0,0,21
+310291,0,0,0,21
+310292,0,0,0,21
+310293,0,0,0,21
+310294,0,0,0,21
+310295,0,0,0,21
+310296,0,0,0,21
+310297,0,0,0,21
+310298,0,0,0,21
+310299,0,0,0,21
+310300,0,0,0,21
+310301,0,0,0,21
+310302,0,0,0,21
+310303,0,0,0,21
+310304,0,0,0,21
+310305,0,0,0,21
+310306,0,0,0,21
+310307,0,0,0,21
+310308,0,0,0,21
+310309,0,0,0,21
+310310,0,0,0,21
+310311,0,0,0,21
+310312,0,0,0,21
+310313,0,0,0,21
+310314,0,0,0,21
+310315,0,0,0,21
+310316,0,0,0,21
+310317,0,0,0,21
+310318,0,0,0,21
+310319,0,0,0,21
+310320,0,0,0,21
+310321,0,0,0,21
+310322,0,0,0,21
+310323,0,0,0,21
+310324,0,0,0,21
+310325,0,0,0,21
+310326,0,0,0,21
+310327,0,0,0,21
+310328,0,0,0,21
+310329,0,0,0,21
+310330,0,0,0,21
+310331,0,0,0,21
+310332,0,0,0,21
+310333,0,0,0,21
+310334,0,0,0,21
+310335,0,0,0,21
+310336,0,0,0,21
+310337,0,0,0,21
+310338,0,0,0,21
+310339,0,0,0,21
+310340,0,0,0,21
+310341,0,0,0,21
+310342,0,0,0,21
+310343,0,0,0,21
+310344,0,0,0,21
+310345,0,0,0,21
+310346,0,0,0,21
+310347,0,0,0,21
+310348,0,0,0,21
+310349,0,0,0,21
+310350,0,0,0,21
+310351,0,0,0,21
+310352,0,0,0,21
+310353,0,0,0,21
+310354,0,0,0,21
+310355,0,0,0,21
+310356,0,0,0,21
+310357,0,0,0,21
+310358,0,0,0,21
+310359,0,0,0,21
+310360,0,0,0,21
+310361,0,0,0,21
+310362,0,0,0,21
+310363,0,0,0,21
+310364,0,0,0,21
+310365,0,0,0,21
+310366,0,0,0,21
+310367,0,0,0,21
+310368,0,0,0,21
+310369,0,0,0,21
+310370,0,0,0,21
+310371,0,0,0,21
+310372,0,0,0,21
+310373,0,0,0,21
+310374,0,0,0,21
+310375,0,0,0,21
+310376,0,0,0,21
+310377,0,0,0,21
+310378,0,0,0,21
+310379,0,0,0,21
+310380,0,0,0,21
+310381,0,0,0,21
+310382,0,0,0,21
+310383,0,0,0,21
+310384,0,0,0,21
+310385,0,0,0,21
+310386,0,0,0,21
+310387,0,0,0,21
+310388,0,0,0,21
+310389,0,0,0,21
+310390,0,0,0,21
+310391,0,0,0,21
+310392,0,0,0,21
+310393,0,0,0,21
+310394,0,0,0,21
+310395,0,0,0,21
+310396,0,0,0,21
+310397,0,0,0,21
+310398,0,0,0,21
+310399,0,0,0,21
+310400,0,0,0,21
+310401,0,0,0,21
+310402,0,0,0,21
+310403,0,0,0,21
+310404,0,0,0,21
+310405,0,0,0,21
+310406,0,0,0,21
+310407,0,0,0,21
+310408,0,0,0,21
+310409,0,0,0,21
+310410,0,0,0,21
+310411,0,0,0,21
+310412,0,0,0,21
+310413,0,0,0,21
+310414,0,0,0,21
+310415,0,0,0,21
+310416,0,0,0,21
+310417,0,0,0,21
+310418,0,0,0,21
+310419,0,0,0,21
+310420,0,0,0,21
+310421,0,0,0,21
+310422,0,0,0,21
+310423,0,0,0,21
+310424,0,0,0,21
+310425,0,0,0,21
+310426,0,0,0,21
+310427,0,0,0,21
+310428,0,0,0,21
+310429,0,0,0,21
+310430,0,0,0,21
+310431,0,0,0,21
+310432,0,0,0,21
+310433,0,0,0,21
+310434,0,0,0,21
+310435,0,0,0,21
+310436,0,0,0,21
+310437,0,0,0,21
+310438,0,0,0,21
+310439,0,0,0,21
+310440,0,0,0,21
+310441,0,0,0,21
+310442,0,0,0,21
+310443,0,0,0,21
+310444,0,0,0,21
+310445,0,0,0,21
+310446,0,0,0,21
+310447,0,0,0,21
+310448,0,0,0,21
+310449,0,0,0,21
+310450,0,0,0,21
+310451,0,0,0,21
+310452,0,0,0,21
+310453,0,0,0,21
+310454,0,0,0,21
+310455,0,0,0,21
+310456,0,0,0,21
+310457,0,0,0,21
+310458,0,0,0,21
+310459,0,0,0,21
+310460,0,0,0,21
+310461,0,0,0,21
+310462,0,0,0,21
+310463,0,0,0,21
+310464,0,0,0,21
+310465,0,0,0,21
+310466,0,0,0,21
+310467,0,0,0,21
+310468,0,0,0,21
+310469,0,0,0,21
+310470,0,0,0,21
+310471,0,0,0,21
+310472,0,0,0,21
+310473,0,0,0,21
+310474,0,0,0,21
+310475,0,0,0,21
+310476,0,0,0,21
+310477,0,0,0,21
+310478,0,0,0,21
+310479,0,0,0,21
+310480,0,0,0,21
+310481,0,0,0,21
+310482,0,0,0,21
+310483,0,0,0,21
+310484,0,0,0,21
+310485,0,0,0,21
+310486,0,0,0,21
+310487,0,0,0,21
+310488,0,0,0,21
+310489,0,0,0,21
+310490,0,0,0,21
+310491,0,0,0,21
+310492,0,0,0,21
+310493,0,0,0,21
+310494,0,0,0,21
+310495,0,0,0,21
+310496,0,0,0,21
+310497,0,0,0,21
+310498,0,0,0,21
+310499,0,0,0,21
+310500,0,0,0,21
+310501,0,0,0,21
+310502,0,0,0,21
+310503,0,0,0,21
+310504,0,0,0,21
+310505,0,0,0,21
+310506,0,0,0,21
+310507,0,0,0,21
+310508,0,0,0,21
+310509,0,0,0,21
+310510,0,0,0,21
+310511,0,0,0,21
+310512,0,0,0,21
+310513,0,0,0,21
+310514,0,0,0,21
+310515,0,0,0,21
+310516,0,0,0,21
+310517,0,0,0,21
+310518,0,0,0,21
+310519,0,0,0,21
+310520,0,0,0,21
+310521,0,0,0,21
+310522,0,0,0,21
+310523,0,0,0,21
+310524,0,0,0,21
+310525,0,0,0,21
+310526,0,0,0,21
+310527,0,0,0,21
+310528,0,0,0,21
+310529,0,0,0,21
+310530,0,0,0,21
+310531,0,0,0,21
+310532,0,0,0,21
+310533,0,0,0,21
+310534,0,0,0,21
+310535,0,0,0,21
+310536,0,0,0,21
+310537,0,0,0,21
+310538,0,0,0,21
+310539,0,0,0,21
+310540,0,0,0,21
+310541,0,0,0,21
+310542,0,0,0,21
+310543,0,0,0,21
+310544,0,0,0,21
+310545,0,0,0,21
+310546,0,0,0,21
+310547,0,0,0,21
+310548,0,0,0,21
+310549,0,0,0,21
+310550,0,0,0,21
+310551,0,0,0,21
+310552,0,0,0,21
+310553,0,0,0,21
+310554,0,0,0,21
+310555,0,0,0,21
+310556,0,0,0,21
+310557,0,0,0,21
+310558,0,0,0,21
+310559,0,0,0,21
+310560,0,0,0,21
+310561,0,0,0,21
+310562,0,0,0,21
+310563,0,0,0,21
+310564,0,0,0,21
+310565,0,0,0,21
+310566,0,0,0,21
+310567,0,0,0,21
+310568,0,0,0,21
+310569,0,0,0,21
+310570,0,0,0,21
+310571,0,0,0,21
+310572,0,0,0,21
+310573,0,0,0,21
+310574,0,0,0,21
+310575,0,0,0,21
+310576,0,0,0,21
+310577,0,0,0,21
+310578,0,0,0,21
+310579,0,0,0,21
+310580,0,0,0,21
+310581,0,0,0,21
+310582,0,0,0,21
+310583,0,0,0,21
+310584,0,0,0,21
+310585,0,0,0,21
+310586,0,0,0,21
+310587,0,0,0,21
+310588,0,0,0,21
+310589,0,0,0,21
+310590,0,0,0,21
+310591,0,0,0,21
+310592,0,0,0,21
+310593,0,0,0,21
+310594,0,0,0,21
+310595,0,0,0,21
+310596,0,0,0,21
+310597,0,0,0,21
+310598,0,0,0,21
+310599,0,0,0,21
+310600,0,0,0,21
+310601,0,0,0,21
+310602,0,0,0,21
+310603,0,0,0,21
+310604,0,0,0,21
+310605,0,0,0,21
+310606,0,0,0,21
+310607,0,0,0,21
+310608,0,0,0,21
+310609,0,0,0,21
+310610,0,0,0,21
+310611,0,0,0,21
+310612,0,0,0,21
+310613,0,0,0,21
+310614,0,0,0,21
+310615,0,0,0,21
+310616,0,0,0,21
+310617,0,0,0,21
+310618,0,0,0,21
+310619,0,0,0,21
+310620,0,0,0,21
+310621,0,0,0,21
+310622,0,0,0,21
+310623,0,0,0,21
+310624,0,0,0,21
+310625,0,0,0,21
+310626,0,0,0,21
+310627,0,0,0,21
+310628,0,0,0,21
+310629,0,0,0,21
+310630,0,0,0,21
+310631,0,0,0,21
+310632,0,0,0,21
+310633,0,0,0,21
+310634,0,0,0,21
+310635,0,0,0,21
+310636,0,0,0,21
+310637,0,0,0,21
+310638,0,0,0,21
+310639,0,0,0,21
+310640,0,0,0,21
+310641,0,0,0,21
+310642,0,0,0,21
+310643,0,0,0,21
+310644,0,0,0,21
+310645,0,0,0,21
+310646,0,0,0,21
+310647,0,0,0,21
+310648,0,0,0,21
+310649,0,0,0,21
+310650,0,0,0,21
+310651,0,0,0,21
+310652,0,0,0,21
+310653,0,0,0,21
+310654,0,0,0,21
+310655,0,0,0,21
+310656,0,0,0,21
+310657,0,0,0,21
+310658,0,0,0,21
+310659,0,0,0,21
+310660,0,0,0,21
+310661,0,0,0,21
+310662,0,0,0,21
+310663,0,0,0,21
+310664,0,0,0,21
+310665,0,0,0,21
+310666,0,0,0,21
+310667,0,0,0,21
+310668,0,0,0,21
+310669,0,0,0,21
+310670,0,0,0,21
+310671,0,0,0,21
+310672,0,0,0,21
+310673,0,0,0,21
+310674,0,0,0,21
+310675,0,0,0,21
+310676,0,0,0,21
+310677,0,0,0,21
+310678,0,0,0,21
+310679,0,0,0,21
+310680,0,0,0,21
+310681,0,0,0,21
+310682,0,0,0,21
+310683,0,0,0,21
+310684,0,0,0,21
+310685,0,0,0,21
+310686,0,0,0,21
+310687,0,0,0,21
+310688,0,0,0,21
+310689,0,0,0,21
+310690,0,0,0,21
+310691,0,0,0,21
+310692,0,0,0,21
+310693,0,0,0,21
+310694,0,0,0,21
+310695,0,0,0,21
+310696,0,0,0,21
+310697,0,0,0,21
+310698,0,0,0,21
+310699,0,0,0,21
+310700,0,0,0,21
+310701,0,0,0,21
+310702,0,0,0,21
+310703,0,0,0,21
+310704,0,0,0,21
+310705,0,0,0,21
+310706,0,0,0,21
+310707,0,0,0,21
+310708,0,0,0,21
+310709,0,0,0,21
+310710,0,0,0,21
+310711,0,0,0,21
+310712,0,0,0,21
+310713,0,0,0,21
+310714,0,0,0,21
+310715,0,0,0,21
+310716,0,0,0,21
+310717,0,0,0,21
+310718,0,0,0,21
+310719,0,0,0,21
+310720,0,0,0,21
+310721,0,0,0,21
+310722,0,0,0,21
+310723,0,0,0,21
+310724,0,0,0,21
+310725,0,0,0,21
+310726,0,0,0,21
+310727,0,0,0,21
+310728,0,0,0,21
+310729,0,0,0,21
+310730,0,0,0,21
+310731,0,0,0,21
+310732,0,0,0,21
+310733,0,0,0,21
+310734,0,0,0,21
+310735,0,0,0,21
+310736,0,0,0,21
+310737,0,0,0,21
+310738,0,0,0,21
+310739,0,0,0,21
+310740,0,0,0,21
+310741,0,0,0,21
+310742,0,0,0,21
+310743,0,0,0,21
+310744,0,0,0,21
+310745,0,0,0,21
+310746,0,0,0,21
+310747,0,0,0,21
+310748,0,0,0,21
+310749,0,0,0,21
+310750,0,0,0,21
+310751,0,0,0,21
+310752,0,0,0,21
+310753,0,0,0,21
+310754,0,0,0,21
+310755,0,0,0,21
+310756,0,0,0,21
+310757,0,0,0,21
+310758,0,0,0,21
+310759,0,0,0,21
+310760,0,0,0,21
+310761,0,0,0,21
+310762,0,0,0,21
+310763,0,0,0,21
+310764,0,0,0,21
+310765,0,0,0,21
+310766,0,0,0,21
+310767,0,0,0,21
+310768,0,0,0,21
+310769,0,0,0,21
+310770,0,0,0,21
+310771,0,0,0,21
+310772,0,0,0,21
+310773,0,0,0,21
+310774,0,0,0,21
+310775,0,0,0,21
+310776,0,0,0,21
+310777,0,0,0,21
+310778,0,0,0,21
+310779,0,0,0,21
+310780,0,0,0,21
+310781,0,0,0,21
+310782,0,0,0,21
+310783,0,0,0,21
+310784,0,0,0,21
+310785,0,0,0,21
+310786,0,0,0,21
+310787,0,0,0,21
+310788,0,0,0,21
+310789,0,0,0,21
+310790,0,0,0,21
+310791,0,1199.907759,0,21
+310792,0,788.2904895,0,21
+310793,0,1036.585971,0,21
+310794,0,1361.711503,0,21
+310795,0,1199.907897,0,21
+310796,0,1681.356972,0,21
+310797,0,1681.357182,0,21
+310798,0,1839.423585,0,21
+310799,0,1839.423669,0,21
+310800,0,2307.571261,0,21
+310801,0,2152.461549,0,21
+310802,0,2461.805559,0,21
+310803,0,2461.805508,0,21
+310804,0,2767.841242,0,21
+310805,0,2767.841159,0,21
+310806,0,2919.718087,0,21
+310807,0,3221.352152,0,21
+310808,0,3070.878638,0,21
+310809,0,3520.340132,0,21
+310810,0,3371.164372,0,21
+310811,0,3668.90059,0,21
+310812,0,3816.866477,0,21
+310813,0,3816.86642,0,21
+310814,0,4111.087156,0,21
+310815,0,4111.087257,0,21
+310816,0,4257.375449,0,21
+310817,0,4403.135724,0,21
+310818,0,4548.381998,0,21
+310819,0,4693.127136,0,21
+310820,0,4693.127047,0,21
+310821,0,4981.163201,0,21
+310822,0,4981.162866,0,21
+310823,0,5124.475732,0,21
+310824,0,5267.332377,0,21
+310825,0,5551.715225,0,21
+310826,0,5409.741639,0,21
+310827,0,5693.259008,0,21
+310828,0,5693.258543,0,21
+310829,0,5975.093232,0,21
+310830,0,5975.09251,0,21
+310831,0,6115.398317,0,21
+310832,0,6279.390012,0,21
+310833,0,6479.683531,0,21
+310834,0,6529.529661,0,21
+310835,0,6817.222064,0,21
+310836,0,6717.254834,0,21
+310837,0,6975.078779,0,21
+310838,0,7032.565351,0,21
+310839,0,7151.560874,0,21
+310840,0,7327.120126,0,21
+310841,0,7336.517335,0,21
+310842,0,7620.129361,0,21
+310843,0,7520.379551,0,21
+310844,0,7793.925956,0,21
+310845,0,7939.418178,0,21
+310846,0,7830.711658,0,21
+310847,0,8256.735575,0,21
+310848,0,8121.143426,0,21
+310849,0,8292.972671,0,21
+310850,0,8419.206502,0,21
+310851,0,8581.166549,0,21
+310852,0,8599.080438,0,21
+310853,0,8751.535687,0,21
+310854,0,8885.836895,0,21
+310855,0,8903.598881,0,21
+310856,0,9072.900667,0,21
+310857,0,9188.95897,0,21
+310858,0,9357.507807,0,21
+310859,0,9241.617092,0,21
+310860,0,9640.840766,0,21
+310861,0,0,0,21
+310862,0,0,0,21
+310863,0,0,0,21
+310864,0,0,655574.2558,21
+310865,334600.7095,364780.9739,0,21
+310866,0,0,0,21
+310867,0,0,0,21
+310868,0,0,0,21
+310869,0,0,0,21
+310870,0,0,0,21
+310871,0,0,0,21
+310872,0,0,0,21
+310873,0,0,0,21
+310874,0,0,0,21
+310875,0,0,0,21
+310876,0,0,0,21
+310877,0,0,0,21
+310878,0,0,0,21
+310879,0,0,0,21
+310880,0,0,0,21
+310881,0,0,0,21
+310882,0,0,0,21
+310883,0,0,0,21
+310884,0,0,0,21
+310885,0,0,0,21
+310886,0,0,0,21
+310887,0,0,0,21
+310888,0,0,0,21
+310889,0,0,0,21
+310890,0,0,0,21
+310891,0,0,0,21
+310892,0,0,0,21
+310893,0,0,0,21
+310894,0,0,0,21
+310895,0,0,0,21
+310896,0,0,0,21
+310897,0,0,0,21
+310898,0,0,655739.7125,21
+310899,334734.7849,365713.6861,0,21
+310900,0,0,0,21
+310901,0,0,0,21
+310902,0,0,0,21
+310903,0,0,0,21
+310904,0,0,0,21
+310905,0,0,0,21
+310906,0,0,0,21
+310907,0,0,0,21
+310908,0,0,0,21
+310909,0,0,0,21
+310910,0,0,0,21
+310911,0,0,0,21
+310912,0,0,0,21
+310913,0,0,0,21
+310914,0,0,0,21
+310915,0,0,0,21
+310916,0,0,0,21
+310917,0,0,0,21
+310918,0,0,0,21
+310919,0,0,0,21
+310920,0,0,0,15.6
+310921,0,0,0,15.6
+310922,0,0,0,15.6
+310923,0,0,0,15.6
+310924,0,0,0,15.6
+310925,0,0,0,15.6
+310926,0,0,0,15.6
+310927,0,0,0,15.6
+310928,0,0,0,15.6
+310929,0,0,0,15.6
+310930,0,0,0,15.6
+310931,0,0,0,15.6
+310932,0,0,655813.0486,15.6
+310933,334855.9585,364811.5916,0,15.6
+310934,0,0,0,15.6
+310935,0,0,0,15.6
+310936,0,0,0,15.6
+310937,0,0,0,15.6
+310938,0,0,0,15.6
+310939,0,0,0,15.6
+310940,0,0,0,15.6
+310941,0,0,0,15.6
+310942,0,0,0,15.6
+310943,0,0,0,15.6
+310944,0,0,0,15.6
+310945,0,0,0,15.6
+310946,0,0,0,15.6
+310947,0,0,0,15.6
+310948,0,0,0,15.6
+310949,0,0,0,15.6
+310950,0,0,0,15.6
+310951,0,0,0,15.6
+310952,0,0,0,15.6
+310953,0,0,0,15.6
+310954,0,0,0,15.6
+310955,0,0,0,15.6
+310956,0,0,0,15.6
+310957,0,0,0,15.6
+310958,0,0,0,15.6
+310959,0,0,0,15.6
+310960,0,0,0,15.6
+310961,0,0,0,15.6
+310962,0,0,0,15.6
+310963,0,0,0,15.6
+310964,0,0,0,15.6
+310965,0,0,0,15.6
+310966,0,0,655931.4253,15.6
+310967,335147.6745,365819.7886,0,15.6
+310968,0,0,0,15.6
+310969,0,0,0,15.6
+310970,0,0,0,15.6
+310971,0,0,0,15.6
+310972,0,0,0,15.6
+310973,0,0,0,15.6
+310974,0,0,0,15.6
+310975,0,0,0,15.6
+310976,0,0,0,15.6
+310977,0,0,0,15.6
+310978,0,0,0,15.6
+310979,0,0,0,15.6
+310980,0,0,0,15.6
+310981,0,0,0,15.6
+310982,0,0,0,15.6
+310983,0,0,0,15.6
+310984,0,0,0,15.6
+310985,0,0,0,15.6
+310986,0,0,0,15.6
+310987,0,0,0,15.6
+310988,0,0,0,15.6
+310989,0,0,0,15.6
+310990,0,0,0,15.6
+310991,0,0,0,15.6
+310992,0,0,0,15.6
+310993,0,0,0,15.6
+310994,0,0,0,15.6
+310995,0,0,0,15.6
+310996,0,0,0,15.6
+310997,0,0,0,15.6
+310998,0,0,0,15.6
+310999,0,0,0,15.6
+311000,0,0,656017.5192,15.6
+311001,335789.5174,365772.8444,0,15.6
+311002,0,0,0,15.6
+311003,0,0,0,15.6
+311004,0,0,0,15.6
+311005,0,0,0,15.6
+311006,0,0,0,15.6
+311007,0,0,0,15.6
+311008,0,0,0,15.6
+311009,0,0,0,15.6
+311010,0,0,0,15.6
+311011,0,0,0,15.6
+311012,0,0,0,15.6
+311013,0,0,0,15.6
+311014,0,0,0,15.6
+311015,0,0,0,15.6
+311016,0,0,0,15.6
+311017,0,0,0,15.6
+311018,0,0,0,15.6
+311019,0,0,0,15.6
+311020,0,0,0,15.6
+311021,0,0,0,15.6
+311022,0,0,0,15.6
+311023,0,0,0,15.6
+311024,0,0,0,15.6
+311025,0,0,0,15.6
+311026,0,0,0,15.6
+311027,0,0,0,15.6
+311028,0,0,0,15.6
+311029,0,0,0,15.6
+311030,0,0,0,15.6
+311031,0,0,0,15.6
+311032,0,0,0,15.6
+311033,0,0,0,15.6
+311034,0,0,656039.3769,15.6
+311035,335417.7589,366658.9525,0,15.6
+311036,0,0,0,15.6
+311037,0,0,0,15.6
+311038,0,0,0,15.6
+311039,0,0,0,15.6
+311040,0,0,0,15.6
+311041,0,0,0,15.6
+311042,0,0,0,15.6
+311043,0,0,0,15.6
+311044,0,0,0,15.6
+311045,0,0,0,15.6
+311046,0,0,0,15.6
+311047,0,0,0,15.6
+311048,0,0,0,15.6
+311049,0,0,0,15.6
+311050,0,0,0,15.6
+311051,0,0,0,15.6
+311052,0,0,0,15.6
+311053,0,0,0,15.6
+311054,0,0,0,15.6
+311055,0,0,0,15.6
+311056,0,0,0,15.6
+311057,0,0,0,15.6
+311058,0,0,0,15.6
+311059,0,0,0,15.6
+311060,0,0,0,15.6
+311061,0,0,0,15.6
+311062,0,0,0,15.6
+311063,0,0,0,15.6
+311064,0,0,0,15.6
+311065,0,0,0,15.6
+311066,0,0,0,15.6
+311067,0,0,0,15.6
+311068,0,0,655914.0439,15.6
+311069,336160.1506,366168.7685,0,15.6
+311070,0,0,0,15.6
+311071,0,0,0,15.6
+311072,0,0,0,15.6
+311073,0,0,0,15.6
+311074,0,0,0,15.6
+311075,0,0,0,15.6
+311076,0,0,0,15.6
+311077,0,0,0,15.6
+311078,0,0,0,15.6
+311079,0,0,0,15.6
+311080,0,0,0,15.6
+311081,0,0,0,15.6
+311082,0,0,0,15.6
+311083,0,0,0,15.6
+311084,0,0,0,15.6
+311085,0,0,0,15.6
+311086,0,0,0,15.6
+311087,0,0,0,15.6
+311088,0,0,0,15.6
+311089,0,0,0,15.6
+311090,0,0,0,15.6
+311091,0,0,0,15.6
+311092,0,0,0,15.6
+311093,0,0,0,15.6
+311094,0,0,0,15.6
+311095,0,0,0,15.6
+311096,0,0,0,15.6
+311097,0,0,0,15.6
+311098,0,0,0,15.6
+311099,0,0,0,15.6
+311100,0,0,0,15.6
+311101,0,0,0,15.6
+311102,0,0,655442.3748,15.6
+311103,337336.3937,366196.4263,0,15.6
+311104,0,0,0,15.6
+311105,0,0,0,15.6
+311106,0,0,0,15.6
+311107,0,0,0,15.6
+311108,0,0,0,15.6
+311109,0,0,0,15.6
+311110,0,0,0,15.6
+311111,0,0,0,15.6
+311112,0,0,0,15.6
+311113,0,0,0,15.6
+311114,0,0,0,15.6
+311115,0,0,0,15.6
+311116,0,0,0,15.6
+311117,0,0,0,15.6
+311118,0,0,0,15.6
+311119,0,0,0,15.6
+311120,0,0,0,15.6
+311121,0,0,0,15.6
+311122,0,0,0,15.6
+311123,0,0,0,15.6
+311124,0,0,0,15.6
+311125,0,0,0,15.6
+311126,0,0,0,15.6
+311127,0,0,0,15.6
+311128,0,0,0,15.6
+311129,0,0,0,15.6
+311130,0,0,0,15.6
+311131,0,0,0,15.6
+311132,0,0,0,15.6
+311133,0,0,0,15.6
+311134,0,0,0,15.6
+311135,0,0,0,15.6
+311136,0,0,655398.2385,15.6
+311137,335592.1002,366998.3267,0,15.6
+311138,0,0,0,15.6
+311139,0,0,0,15.6
+311140,0,0,0,15.6
+311141,0,0,0,15.6
+311142,0,0,0,15.6
+311143,0,0,0,15.6
+311144,0,0,0,15.6
+311145,0,0,0,15.6
+311146,0,0,0,15.6
+311147,0,0,0,15.6
+311148,0,0,0,15.6
+311149,0,0,0,15.6
+311150,0,0,0,15.6
+311151,0,0,0,15.6
+311152,0,0,0,15.6
+311153,0,0,0,15.6
+311154,0,0,0,15.6
+311155,0,0,0,15.6
+311156,0,0,0,15.6
+311157,0,0,0,15.6
+311158,0,0,0,15.6
+311159,0,0,0,15.6
+311160,0,0,0,15.6
+311161,0,0,0,15.6
+311162,0,0,0,15.6
+311163,0,0,0,15.6
+311164,0,0,0,15.6
+311165,0,0,0,15.6
+311166,0,0,0,15.6
+311167,0,0,0,15.6
+311168,0,0,0,15.6
+311169,0,0,0,15.6
+311170,0,0,655932.3296,15.6
+311171,336951.2157,366638.3176,0,15.6
+311172,0,0,0,15.6
+311173,0,0,0,15.6
+311174,0,0,0,15.6
+311175,0,0,0,15.6
+311176,0,0,0,15.6
+311177,0,0,0,15.6
+311178,0,0,0,15.6
+311179,0,0,0,15.6
+311180,0,0,0,15.6
+311181,0,0,0,15.6
+311182,0,0,0,15.6
+311183,0,0,0,15.6
+311184,0,0,0,15.6
+311185,0,0,0,15.6
+311186,0,0,0,15.6
+311187,0,0,0,15.6
+311188,0,0,0,15.6
+311189,0,0,0,15.6
+311190,0,0,0,15.6
+311191,0,0,0,15.6
+311192,0,0,0,15.6
+311193,0,0,0,15.6
+311194,0,0,0,15.6
+311195,0,0,0,15.6
+311196,0,0,0,15.6
+311197,0,0,0,15.6
+311198,0,0,0,15.6
+311199,0,0,0,15.6
+311200,0,0,0,15.6
+311201,0,0,0,15.6
+311202,0,0,0,15.6
+311203,0,0,0,15.6
+311204,0,0,656268.3193,15.6
+311205,336354.4869,366281.5144,0,15.6
+311206,0,0,0,15.6
+311207,0,0,0,15.6
+311208,0,0,0,15.6
+311209,0,0,0,15.6
+311210,0,0,0,15.6
+311211,0,0,0,15.6
+311212,0,0,0,15.6
+311213,0,0,0,15.6
+311214,0,0,0,15.6
+311215,0,0,0,15.6
+311216,0,0,0,15.6
+311217,0,0,0,15.6
+311218,0,0,0,15.6
+311219,0,0,0,15.6
+311220,0,0,0,15.6
+311221,0,0,0,15.6
+311222,0,0,0,15.6
+311223,0,0,0,15.6
+311224,0,0,0,15.6
+311225,0,0,0,15.6
+311226,0,0,0,15.6
+311227,0,0,0,15.6
+311228,0,0,0,15.6
+311229,0,0,0,15.6
+311230,0,0,0,15.6
+311231,0,0,0,15.6
+311232,0,0,0,15.6
+311233,0,0,0,15.6
+311234,0,0,0,15.6
+311235,0,0,0,15.6
+311236,0,0,0,15.6
+311237,0,0,656070.8261,15.6
+311238,0,0,0,15.6
+311239,336180.9048,366966.8593,0,15.6
+311240,0,0,0,15.6
+311241,0,0,0,15.6
+311242,0,0,0,15.6
+311243,0,0,0,15.6
+311244,0,0,0,15.6
+311245,0,0,0,15.6
+311246,0,0,0,15.6
+311247,0,0,0,15.6
+311248,0,0,0,15.6
+311249,0,0,0,15.6
+311250,0,0,0,15.6
+311251,0,0,0,15.6
+311252,0,0,0,15.6
+311253,0,0,0,15.6
+311254,0,0,0,15.6
+311255,0,0,0,15.6
+311256,0,0,0,15.6
+311257,0,0,0,15.6
+311258,0,0,0,15.6
+311259,0,0,0,15.6
+311260,0,0,0,15.6
+311261,0,0,0,15.6
+311262,0,0,0,15.6
+311263,0,0,0,15.6
+311264,0,0,0,15.6
+311265,0,0,0,15.6
+311266,0,0,0,15.6
+311267,0,0,0,15.6
+311268,0,0,0,15.6
+311269,0,0,0,15.6
+311270,0,0,656857.6329,15.6
+311271,0,0,0,15.6
+311272,0,0,0,15.6
+311273,337453.1431,367323.9353,0,15.6
+311274,0,0,0,15.6
+311275,0,0,0,15.6
+311276,0,0,0,15.6
+311277,0,0,0,15.6
+311278,0,0,0,15.6
+311279,0,0,0,15.6
+311280,0,0,0,17.8
+311281,0,0,0,17.8
+311282,0,0,0,17.8
+311283,0,0,0,17.8
+311284,0,0,0,17.8
+311285,0,0,0,17.8
+311286,0,0,0,17.8
+311287,0,0,0,17.8
+311288,0,0,0,17.8
+311289,0,0,0,17.8
+311290,0,0,0,17.8
+311291,0,0,0,17.8
+311292,0,0,0,17.8
+311293,0,0,0,17.8
+311294,0,0,0,17.8
+311295,0,0,0,17.8
+311296,0,0,0,17.8
+311297,0,0,0,17.8
+311298,0,0,0,17.8
+311299,0,1996.429384,0,17.8
+311300,0,3964.231684,0,17.8
+311301,0,2767.829152,0,17.8
+311302,0,3668.87937,0,17.8
+311303,0,3964.231723,656514.3647,17.8
+311304,0,4257.347301,0,17.8
+311305,0,4548.349978,0,17.8
+311306,0,4693.093452,0,17.8
+311307,336075.4679,370356.9661,0,17.8
+311308,0,5409.698796,0,17.8
+311309,0,5551.669433,0,17.8
+311310,0,5834.332647,0,17.8
+311311,0,5975.041371,0,17.8
+311312,0,6394.764754,0,17.8
+311313,0,0,0,17.8
+311314,0,0,0,17.8
+311315,0,0,0,17.8
+311316,0,0,0,17.8
+311317,0,0,0,17.8
+311318,0,0,0,17.8
+311319,0,0,0,17.8
+311320,0,0,0,17.8
+311321,0,0,0,17.8
+311322,0,0,0,17.8
+311323,0,0,0,17.8
+311324,0,0,0,17.8
+311325,0,0,0,17.8
+311326,0,0,0,17.8
+311327,0,0,0,17.8
+311328,0,0,0,17.8
+311329,0,0,0,17.8
+311330,0,0,0,17.8
+311331,0,0,0,17.8
+311332,0,0,0,17.8
+311333,0,0,0,17.8
+311334,0,0,0,17.8
+311335,0,0,0,17.8
+311336,0,0,656503.4273,17.8
+311337,0,0,0,17.8
+311338,0,0,0,17.8
+311339,0,0,0,17.8
+311340,0,0,0,20
+311341,344297.5267,371208.0038,0,20
+311342,0,0,0,20
+311343,0,0,0,20
+311344,0,0,0,20
+311345,21649.48174,0,0,20
+311346,24051.19971,5725.316762,0,20
+311347,17387.5158,51598.59346,0,20
+311348,20626.5031,37848.0352,0,20
+311349,20857.61208,39248.97351,0,20
+311350,21926.75772,41719.61377,0,20
+311351,22062.37967,42658.43851,0,20
+311352,22044.70007,42969.80943,0,20
+311353,27517.42188,43222.60161,0,20
+311354,26662.75006,43379.03014,0,20
+311355,25867.63975,43748.73083,0,20
+311356,26413.24864,43926.90684,0,20
+311357,26649.84156,44176.28357,0,20
+311358,26865.40001,44216.5039,0,20
+311359,27061.56934,44560.19322,0,20
+311360,27172.3196,44665.00359,0,20
+311361,27625.10975,44950.76698,0,20
+311362,27730.80994,44893.03298,0,20
+311363,28133.77077,45318.44884,0,20
+311364,24229.16182,45083.91707,0,20
+311365,23590.80321,45625.48555,0,20
+311366,23683.45095,45473.55876,0,20
+311367,23265.10119,45743.69916,0,20
+311368,23229.03307,45721.55002,0,20
+311369,23063.20043,46008.23708,0,20
+311370,22959.30314,45817.22159,0,20
+311371,22582.0129,46400.88696,0,20
+311372,22309.37767,45846.44765,0,20
+311373,21662.66924,46577.83464,0,20
+311374,21362.77346,46380.10662,0,20
+311375,20735.40757,46278.36069,0,20
+311376,20464.82143,46882.67245,0,20
+311377,19663.16721,46336.75773,0,20
+311378,19280.93435,46875.35505,0,20
+311379,17589.93219,46373.18154,0,20
+311380,16759.06831,46955.7384,0,20
+311381,15823.02653,46563.02635,0,20
+311382,15312.45821,46969.83877,0,20
+311383,14351.9634,46816.94006,0,20
+311384,13687.89239,46788.35673,0,20
+311385,12956.03614,46838.6892,0,20
+311386,12259.87334,47034.8936,0,20
+311387,11574.82165,46831.73249,0,20
+311388,10809.42025,46845.41567,0,20
+311389,10099.66309,46983.92478,0,20
+311390,9930.737903,47078.27295,0,20
+311391,10074.51877,46495.72053,0,20
+311392,9815.793017,47266.35359,0,20
+311393,9990.893882,46707.08439,0,20
+311394,9996.827157,47091.55747,0,20
+311395,9996.097377,46530.59147,0,20
+311396,10141.77287,47011.53293,0,20
+311397,10166.59574,46895.37972,0,20
+311398,10141.77323,46777.07907,0,20
+311399,10299.21345,46893.07193,0,20
+311400,10191.92652,46559.28681,0,21
+311401,10311.11893,46914.09589,0,21
+311402,10299.28096,46359.47738,0,21
+311403,10336.50716,46753.51806,0,21
+311404,10311.19943,46287.92651,0,21
+311405,10273.8766,46578.18031,0,21
+311406,10165.73783,46148.18593,0,21
+311407,10261.09902,46556.68311,0,21
+311408,10177.65639,45877.08682,0,21
+311409,10261.83015,46287.95522,0,21
+311410,10056.55675,45993.80926,0,21
+311411,10260.94608,45993.8143,0,21
+311412,10273.60327,45717.14685,0,21
+311413,10025.2836,45993.82135,0,21
+311414,10260.71465,45548.18908,0,21
+311415,10139.72711,45584.03115,0,21
+311416,10115.12156,45481.40959,0,21
+311417,10139.35383,45628.81144,0,21
+311418,10095.58557,45010.72719,0,21
+311419,10114.33326,45335.35251,0,21
+311420,9980.29137,45187.77429,0,21
+311421,10196.59926,44946.27464,0,21
+311422,9967.736385,44776.37534,0,21
+311423,9929.157079,44946.28353,0,21
+311424,9954.449266,44658.91274,0,21
+311425,10024.7039,44452.91065,0,21
+311426,9915.616027,44268.07076,0,21
+311427,9768.277544,44136.05707,0,21
+311428,9890.025159,44114.43595,0,21
+311429,9844.209689,43779.97345,0,21
+311430,9633.306019,43878.53503,0,21
+311431,9811.338451,43579.87324,0,21
+311432,9728.134337,43522.45126,0,21
+311433,9567.960845,43958.18266,0,21
+311434,9758.818248,43343.97656,0,21
+311435,9564.569991,43508.08421,0,21
+311436,9522.228506,43462.03782,0,21
+311437,9512.370928,43522.47369,0,21
+311438,9589.155498,43165.21738,0,21
+311439,9376.307942,43522.48293,0,21
+311440,9472.612026,43165.22653,0,21
+311441,9447.692049,43322.3437,0,21
+311442,9339.134147,43165.23583,0,21
+311443,9351.410247,43522.50188,0,21
+311444,9301.792212,42986.17284,0,21
+311445,9326.454551,43165.25006,0,21
+311446,9180.206504,43225.78404,0,21
+311447,9301.792241,43143.59493,0,21
+311448,9167.504347,43179.61881,0,21
+311449,9155.077415,43047.02111,0,21
+311450,9155.312356,43165.27451,0,21
+311451,9032.921775,43165.2795,0,21
+311452,9117.560999,42742.20712,0,21
+311453,8898.270229,43283.34235,0,21
+311454,9104.835747,43047.04611,0,21
+311455,8873.12564,43193.98213,0,21
+311456,8847.739301,42986.23198,0,21
+311457,8847.739084,43179.66437,0,21
+311458,8835.054197,43179.66959,0,21
+311459,8809.540009,42821.23202,0,21
+311460,8699.627247,42928.6315,0,21
+311461,5026.182965,34734.69479,0,21
+311462,4761.97722,33514.96943,0,21
+311463,4509.48992,33748.32116,0,21
+311464,4509.490766,33601.64761,0,21
+311465,4482.505251,33435.86699,0,21
+311466,4241.725652,33492.34741,0,21
+311467,4120.648713,33413.23936,0,21
+311468,4214.532363,33288.96259,0,21
+311469,3971.962804,33435.87947,0,21
+311470,3836.35688,33164.45,0,21
+311471,3944.745477,33413.25223,0,21
+311472,3700.146264,33115.17703,0,21
+311473,3686.486346,33288.97888,0,21
+311474,3549.676995,33100.21001,0,21
+311475,3426.088983,33100.21335,0,21
+311476,3398.604812,33303.96267,0,21
+311477,3288.126658,32911.09066,0,21
+311478,3260.613069,33288.9959,0,21
+311479,3121.979128,32801.55185,0,21
+311480,3010.317536,33413.28303,0,21
+311481,2968.814542,32801.55859,0,21
+311482,2856.548363,33413.29007,0,21
+311483,2715.845997,32801.56538,0,21
+311484,2688.018487,33122.87804,0,21
+311485,2574.364047,33130.1647,0,21
+311486,2546.471937,32911.12131,0,21
+311487,2404.095185,33179.48171,0,21
+311488,2274.858453,33073.01615,0,21
+311489,2260.82988,32990.71584,0,21
+311490,2116.606983,33050.38921,0,21
+311491,2116.607572,32990.72278,0,21
+311492,1824.937538,32911.14197,0,21
+311493,1957.21345,32627.05312,0,21
+311494,1677.258745,32536.73057,0,21
+311495,1796.570804,32259.85043,0,21
+311496,1513.902284,32237.12853,0,21
+311497,1513.902246,32046.91428,0,21
+311498,1348.76533,31869.10315,0,21
+311499,1210.240257,31708.56012,0,21
+311500,1334.418221,31464.74978,0,21
+311501,1040.47033,31037.71276,0,21
+311502,881.4436218,31441.89136,0,21
+311503,1011.585008,30600.95956,0,21
+311504,715.115156,30851.16464,0,21
+311505,686.0719028,30169.76932,0,21
+311506,686.071924,30437.21337,0,21
+311507,671.489542,29895.02464,0,21
+311508,642.1999872,29879.92997,0,21
+311509,656.8657573,29469.99482,0,21
+311510,627.4913799,29499.15064,0,21
+311511,612.7392072,29008.0784,0,21
+311512,612.73917,28893.89834,0,21
+311513,583.1009515,28625.46593,0,21
+311514,583.1009422,28534.19598,0,21
+311515,568.2131236,28046.71658,0,21
+311516,538.2956891,28061.91181,0,21
+311517,553.2784441,27616.47103,0,21
+311518,523.2639842,27489.18195,0,21
+311519,508.1821487,26936.69879,0,21
+311520,493.0491338,27254.0893,0,21
+311521,477.8636462,26359.83349,0,21
+311522,462.6246744,26542.31014,0,21
+311523,447.3308137,26114.56566,0,21
+311524,431.9799179,25780.77216,0,21
+311525,401.10164,25620.55092,0,21
+311526,416.5706734,25191.24875,0,21
+311527,369.9763199,25030.5698,0,21
+311528,369.9763287,24599.38447,0,21
+311529,338.5874757,24485.84583,0,21
+311530,338.5874612,23852.02805,0,21
+311531,306.9154338,23891.33987,0,21
+311532,306.9154245,23447.82998,0,21
+311533,274.936614,23125.1393,0,21
+311534,258.8233515,22718.99265,0,21
+311535,242.6219267,22491.11646,0,21
+311536,226.3274878,22101.56743,0,21
+311537,209.9345,21962.54577,0,21
+311538,193.4365603,21291.12909,0,21
+311539,176.82619,21357.61354,0,21
+311540,143.2308978,20591.78354,0,21
+311541,151.679956,20502.94348,0,21
+311542,109.0516684,19964.8902,0,21
+311543,109.0516686,19931.51765,0,21
+311544,74.13095781,18984.39021,0,21
+311545,74.13095435,19301.46017,0,21
+311546,38.15874511,18406.04945,0,21
+311547,38.15874557,18315.94868,0,21
+311548,0,17876.28021,0,21
+311549,0,17372.97182,0,21
+311550,0,17118.60737,0,21
+311551,0,16639.21196,0,21
+311552,0,16381.73503,0,21
+311553,0,16007.67005,0,21
+311554,0,15858.2411,0,21
+311555,0,15423.31028,0,21
+311556,0,15213.09173,0,21
+311557,0,14650.4213,0,21
+311558,0,14733.57442,0,21
+311559,0,13894.4843,0,21
+311560,0,13956.04969,0,21
+311561,0,13645.90887,0,21
+311562,0,13084.83679,0,21
+311563,0,12608.42909,0,21
+311564,0,12566.3091,0,21
+311565,0,12313.39471,0,21
+311566,0,11329.21923,0,21
+311567,0,11787.94146,0,21
+311568,0,10646.94464,0,21
+311569,0,10753.62976,0,21
+311570,0,10230.62025,0,21
+311571,0,9830.542277,0,21
+311572,0,9412.108322,0,21
+311573,0,9038.088173,0,21
+311574,0,7895.706048,0,21
+311575,0,7045.50199,0,21
+311576,0,6601.659642,0,21
+311577,0,6545.051116,0,21
+311578,0,6500.195604,0,21
+311579,0,6304.769705,0,21
+311580,0,6259.23417,0,21
+311581,0,6061.939797,0,21
+311582,0,5830.144961,0,21
+311583,0,5661.110029,0,21
+311584,0,5735.6368,0,21
+311585,0,5546.395767,0,21
+311586,0,5406.993455,0,21
+311587,0,5406.993441,0,21
+311588,0,5390.478067,0,21
+311589,0,5234.056036,0,21
+311590,0,4952.928944,0,21
+311591,0,5060.452508,0,21
+311592,0,4795.021062,0,21
+311593,0,4919.649736,0,21
+311594,0,4619.84134,0,21
+311595,0,4761.639269,0,21
+311596,0,4460.754936,0,21
+311597,0,4603.071628,0,21
+311598,0,4443.931369,0,21
+311599,0,4301.080365,0,21
+311600,0,4301.080311,0,21
+311601,0,4267.266839,0,21
+311602,0,3996.825204,0,21
+311603,0,4106.858008,0,21
+311604,0,3979.900138,0,21
+311605,0,3945.846002,0,21
+311606,0,3673.17143,0,21
+311607,0,3928.736858,0,21
+311608,0,3510.278035,0,21
+311609,0,3621.815697,0,21
+311610,0,3493.210937,0,21
+311611,0,3458.789876,0,21
+311612,0,3165.191584,0,21
+311613,0,3147.889654,0,21
+311614,0,2982.656794,0,21
+311615,0,2816.602371,0,21
+311616,0,2816.602431,0,21
+311617,0,2499.442114,0,21
+311618,0,2464.198393,0,21
+311619,0,2330.729488,0,21
+311620,0,2143.256088,0,21
+311621,0,1972.347828,0,21
+311622,0,1972.347858,0,21
+311623,0,1626.89232,0,21
+311624,0,1626.892472,0,21
+311625,0,1452.120122,0,21
+311626,0,1275.78732,0,21
+311627,0,1097.691142,0,21
+311628,0,935.9590909,0,21
+311629,0,899.0344346,0,21
+311630,0,567.9651944,0,21
+311631,0,539.9453436,0,21
+311632,0,359.3306298,0,21
+311633,0,252.3285262,0,21
+311634,0,141.5923865,0,21
+311635,0,141.5923863,0,21
+311636,0,102.8458441,0,21
+311637,0,102.8458468,0,21
+311638,0,73.1742592,0,21
+311639,0,63.13614015,0,21
+311640,0,42.77684669,0,21
+311641,0,42.77689132,0,21
+311642,0,32.42042934,0,21
+311643,0,21.90609043,0,21
+311644,0,0,0,21
+311645,0,11.16971811,0,21
+311646,0,0,0,21
+311647,0,0,0,21
+311648,0,0,0,21
+311649,0,0,0,21
+311650,0,0,0,21
+311651,0,0,0,21
+311652,0,0,0,21
+311653,0,0,0,21
+311654,0,0,0,21
+311655,0,0,0,21
+311656,0,0,0,21
+311657,0,0,0,21
+311658,0,0,0,21
+311659,0,0,0,21
+311660,0,0,0,21
+311661,0,0,0,21
+311662,0,0,0,21
+311663,0,0,0,21
+311664,0,0,0,21
+311665,0,0,0,21
+311666,0,0,0,21
+311667,0,0,0,21
+311668,0,0,0,21
+311669,0,0,0,21
+311670,0,0,0,21
+311671,0,0,0,21
+311672,0,0,0,21
+311673,0,0,0,21
+311674,0,0,0,21
+311675,0,0,0,21
+311676,0,0,0,21
+311677,0,0,0,21
+311678,0,0,0,21
+311679,0,0,0,21
+311680,0,0,0,21
+311681,0,0,0,21
+311682,0,0,0,21
+311683,0,0,0,21
+311684,0,0,0,21
+311685,0,0,0,21
+311686,0,0,0,21
+311687,0,0,0,21
+311688,0,0,0,21
+311689,0,0,0,21
+311690,0,0,0,21
+311691,0,0,0,21
+311692,0,0,0,21
+311693,0,0,0,21
+311694,0,0,0,21
+311695,0,0,0,21
+311696,0,0,0,21
+311697,0,0,0,21
+311698,0,0,0,21
+311699,0,0,0,21
+311700,0,0,0,21
+311701,0,0,0,21
+311702,0,0,0,21
+311703,0,0,0,21
+311704,0,0,0,21
+311705,0,0,0,21
+311706,0,0,0,21
+311707,0,0,0,21
+311708,0,0,0,21
+311709,0,0,0,21
+311710,0,0,0,21
+311711,0,0,0,21
+311712,0,0,0,21
+311713,0,0,0,21
+311714,0,32.42036833,0,21
+311715,0,414.0600653,0,21
+311716,0,745.1287488,0,21
+311717,0,745.128762,0,21
+311718,0,765.1259476,0,21
+311719,0,926.8576907,0,21
+311720,0,1096.548084,0,21
+311721,0,1106.372108,0,21
+311722,0,1274.279786,0,21
+311723,0,1283.990002,0,21
+311724,0,1440.670719,0,21
+311725,0,1615.311888,0,21
+311726,0,1459.941704,0,21
+311727,0,1941.667197,0,21
+311728,0,1634.40264,0,21
+311729,0,2093.739703,0,21
+311730,0,1979.377851,0,21
+311731,0,1951.150854,0,21
+311732,0,2112.668532,0,21
+311733,0,2131.450315,0,21
+311734,0,1951.150699,0,21
+311735,0,2112.668326,0,21
+311736,0,1979.37751,0,21
+311737,0,2093.739397,0,21
+311738,0,1979.377311,0,21
+311739,0,1941.666542,0,21
+311740,0,1979.377444,0,21
+311741,0,1941.666338,0,21
+311742,0,1960.595401,0,21
+311743,0,1951.150093,0,21
+311744,0,1798.064561,0,21
+311745,0,1788.580862,0,21
+311746,0,1960.595198,0,21
+311747,0,1624.877668,0,21
+311748,0,1788.580712,0,21
+311749,0,1788.580657,0,21
+311750,0,1479.031861,0,21
+311751,0,1769.48973,0,21
+311752,0,1469.507635,0,21
+311753,0,1615.310762,0,21
+311754,0,1459.94088,0,21
+311755,0,1459.940872,0,21
+311756,0,1293.648672,0,21
+311757,0,1450.329139,0,21
+311758,0,1283.989216,0,21
+311759,0,1125.846728,0,21
+311760,0,1283.989186,0,21
+311761,0,1125.846758,0,21
+311762,0,1274.278864,0,21
+311763,0,1125.846778,0,21
+311764,0,1116.136415,0,21
+311765,0,1125.846735,0,21
+311766,0,946.5695274,0,21
+311767,0,1125.846664,0,21
+311768,0,946.5694572,0,21
+311769,0,1026.69266,0,21
+311770,0,946.5694614,0,21
+311771,0,946.5694676,0,21
+311772,0,784.8379615,0,21
+311773,0,946.5694761,0,21
+311774,0,775.0139558,0,21
+311775,0,601.0708191,0,21
+311776,0,414.0599747,0,21
+311777,0,581.073573,0,21
+311778,0,242.8540414,0,21
+311779,0,414.059938,0,21
+311780,0,222.4948125,0,21
+311781,0,329.105447,0,21
+311782,0,222.4947796,0,21
+311783,0,42.77676848,0,21
+311784,0,212.1383956,0,21
+311785,0,42.77679017,0,21
+311786,0,21.90587476,0,21
+311787,0,32.42037455,0,21
+311788,0,21.90587291,0,21
+311789,0,21.90587258,0,21
+311790,0,11.16970054,0,21
+311791,0,21.90587082,0,21
+311792,0,0,0,21
+311793,0,21.9058685,0,21
+311794,0,21.90587721,0,21
+311795,0,0,0,21
+311796,0,21.90587705,0,21
+311797,0,21.90587808,0,21
+311798,0,21.90587785,0,21
+311799,0,11.16970316,0,21
+311800,0,21.90587734,0,21
+311801,0,21.90587741,0,21
+311802,0,21.90587815,0,21
+311803,0,21.90587275,0,21
+311804,0,21.90587801,0,21
+311805,0,42.77679272,0,21
+311806,0,21.90587805,0,21
+311807,0,21.90587735,0,21
+311808,0,42.77679175,0,21
+311809,0,21.90587773,0,21
+311810,0,42.77679238,0,21
+311811,0,42.77678417,0,21
+311812,0,32.4203846,0,21
+311813,0,42.77679206,0,21
+311814,0,42.77679187,0,21
+311815,0,42.77679064,0,21
+311816,0,53.00838916,0,21
+311817,0,42.77679108,0,21
+311818,0,63.13602802,0,21
+311819,0,42.77678393,0,21
+311820,0,63.1360275,0,21
+311821,0,42.77679462,0,21
+311822,0,42.77679451,0,21
+311823,0,63.13603036,0,21
+311824,0,32.4203862,0,21
+311825,0,42.77679468,0,21
+311826,0,53.0083934,0,21
+311827,0,42.77678395,0,21
+311828,0,42.7767946,0,21
+311829,0,32.42036364,0,21
+311830,0,42.77676574,0,21
+311831,0,42.77679484,0,21
+311832,0,32.42038617,0,21
+311833,0,42.77679458,0,21
+311834,0,21.90587973,0,21
+311835,0,42.77678761,0,21
+311836,0,32.42038681,0,21
+311837,0,32.42036567,0,21
+311838,0,32.4203667,0,21
+311839,0,21.90587988,0,21
+311840,0,42.77679432,0,21
+311841,0,21.90587974,0,21
+311842,0,21.90587993,0,21
+311843,0,42.776789,0,21
+311844,0,11.16970504,0,21
+311845,0,32.42036701,0,21
+311846,0,21.90586699,0,21
+311847,0,21.90587904,0,21
+311848,0,21.90587359,0,21
+311849,0,21.9058753,0,21
+311850,0,21.90587893,0,21
+311851,0,21.90587436,0,21
+311852,0,21.90587266,0,21
+311853,0,21.90587929,0,21
+311854,0,21.90587963,0,21
+311855,0,21.90587963,0,21
+311856,0,21.90588006,0,21
+311857,0,21.90587892,0,21
+311858,0,32.4203864,0,21
+311859,0,21.90587943,0,21
+311860,0,21.90587927,0,21
+311861,0,42.77679522,0,21
+311862,0,21.90587993,0,21
+311863,0,21.90587916,0,21
+311864,0,42.77678264,0,21
+311865,0,21.90587735,0,21
+311866,0,42.7767938,0,21
+311867,0,21.90587434,0,21
+311868,0,42.77678424,0,21
+311869,0,42.77679468,0,21
+311870,0,32.42038713,0,21
+311871,0,42.77679536,0,21
+311872,0,42.77679632,0,21
+311873,0,42.77679545,0,21
+311874,0,42.77678622,0,21
+311875,0,53.00837481,0,21
+311876,0,42.77679534,0,21
+311877,0,53.00838397,0,21
+311878,0,53.00836846,0,21
+311879,0,63.13603441,0,21
+311880,0,42.77678793,0,21
+311881,0,73.17408216,0,21
+311882,0,63.13603559,0,21
+311883,0,63.1360241,0,21
+311884,0,83.13320019,0,21
+311885,0,73.17412083,0,21
+311886,0,83.13323447,0,21
+311887,0,83.13319978,0,21
+311888,0,83.13325047,0,21
+311889,0,102.8455572,0,21
+311890,0,83.13319292,0,21
+311891,0,102.8455765,0,21
+311892,0,282.5635962,0,21
+311893,0,282.5636114,0,21
+311894,0,388.2903149,0,21
+311895,0,282.5636162,0,21
+311896,0,473.2448006,0,21
+311897,0,473.2447834,0,21
+311898,0,473.2447769,0,21
+311899,0,492.5158324,0,21
+311900,0,640.2584031,0,21
+311901,0,669.0960826,0,21
+311902,0,659.5294516,0,21
+311903,0,659.5294415,0,21
+311904,0,842.6750259,0,21
+311905,0,678.6202718,0,21
+311906,0,1004.406514,0,21
+311907,0,842.6751015,0,21
+311908,0,861.6040975,0,21
+311909,0,1023.33551,0,21
+311910,0,1023.33552,0,21
+311911,0,1183.137378,0,21
+311912,0,1042.117226,0,21
+311913,0,1201.919119,0,21
+311914,0,1032.744,0,21
+311915,0,1360.061447,0,21
+311916,0,1220.565461,0,21
+311917,0,1201.919148,0,21
+311918,0,1378.707758,0,21
+311919,0,1220.565494,0,21
+311920,0,1378.707843,0,21
+311921,0,1378.707758,0,21
+311922,0,1553.909008,0,21
+311923,0,1378.707881,0,21
+311924,0,1397.228656,0,21
+311925,0,1553.909046,0,21
+311926,0,1553.909052,0,21
+311927,0,1572.312554,0,21
+311928,0,1553.909084,0,21
+311929,0,1727.682242,0,21
+311930,0,1572.312595,0,21
+311931,0,1727.682278,0,21
+311932,0,1727.68229,0,21
+311933,0,1745.975534,0,21
+311934,0,1736.842378,0,21
+311935,0,1900.154422,0,21
+311936,0,1745.975731,0,21
+311937,0,1900.154573,0,21
+311938,0,1918.343769,0,21
+311939,0,1900.154477,0,21
+311940,0,1918.343806,0,21
+311941,0,1918.343411,0,21
+311942,0,2071.428516,0,21
+311943,0,1936.434081,0,21
+311944,0,2071.428472,0,21
+311945,0,2089.518951,0,21
+311946,0,2071.428379,0,21
+311947,0,2107.515862,0,21
+311948,0,2071.428313,0,21
+311949,0,2259.587754,0,21
+311950,0,2089.518684,0,21
+311951,0,2259.587885,0,21
+311952,0,2089.518774,0,21
+311953,0,2268.552164,0,21
+311954,0,2259.587645,0,21
+311955,0,2259.587574,0,21
+311956,0,2259.587489,0,21
+311957,0,2428.622076,0,21
+311958,0,2259.587346,0,21
+311959,0,2428.621928,0,21
+311960,0,2277.494588,0,21
+311961,0,2428.621952,0,21
+311962,0,2428.621758,0,21
+311963,0,2446.443296,0,21
+311964,0,2428.621773,0,21
+311965,0,2446.443019,0,21
+311966,0,2596.684059,0,21
+311967,0,2446.442868,0,21
+311968,0,2596.683875,0,21
+311969,0,2446.442814,0,21
+311970,0,2614.422756,0,21
+311971,0,2596.683657,0,21
+311972,0,2781.487512,0,21
+311973,0,2614.422541,0,21
+311974,0,2930.101032,0,21
+311975,0,2781.487161,0,21
+311976,0,3095.545325,0,21
+311977,0,2947.684061,0,21
+311978,0,3113.054369,0,21
+311979,0,3242.68844,0,21
+311980,0,3130.492464,0,21
+311981,0,3424.092554,0,21
+311982,0,3424.092447,0,21
+311983,0,3441.461086,0,21
+311984,0,3587.259279,0,21
+311985,0,3604.56078,0,21
+311986,0,3749.725935,0,21
+311987,0,3911.517618,0,21
+311988,0,3766.961891,0,21
+311989,0,4170.116431,0,21
+311990,0,4231.404641,0,21
+311991,0,4248.515318,0,21
+311992,0,4549.830212,0,21
+311993,0,4468.757934,0,21
+311994,0,4785.670722,0,21
+311995,0,4655.696899,0,21
+311996,0,4988.301975,0,21
+311997,0,5031.68947,0,21
+311998,0,5204.213836,0,21
+311999,0,5232.786473,0,21
+312000,0,5390.406525,0,21
+312001,0,0,0,21
+312002,0,0,0,21
+312003,0,0,0,21
+312004,0,0,0,21
+312005,0,0,0,21
+312006,0,0,0,21
+312007,0,0,0,21
+312008,0,0,0,21
+312009,0,0,0,21
+312010,0,0,0,21
+312011,0,0,0,21
+312012,0,0,0,21
+312013,0,0,0,21
+312014,0,0,0,21
+312015,0,0,0,21
+312016,0,0,0,21
+312017,0,0,0,21
+312018,0,0,0,21
+312019,0,0,0,21
+312020,0,0,0,21
+312021,0,0,0,21
+312022,0,0,0,21
+312023,0,0,0,21
+312024,0,0,0,21
+312025,0,0,0,21
+312026,0,0,0,21
+312027,0,0,0,21
+312028,0,0,0,21
+312029,0,0,0,21
+312030,0,0,0,21
+312031,0,0,0,21
+312032,0,0,0,21
+312033,0,0,0,21
+312034,0,0,0,21
+312035,0,0,0,21
+312036,0,0,0,21
+312037,0,0,0,21
+312038,0,0,0,21
+312039,0,0,0,21
+312040,0,0,0,21
+312041,0,0,0,21
+312042,0,0,0,21
+312043,0,0,0,21
+312044,0,0,0,21
+312045,0,0,0,21
+312046,0,0,0,21
+312047,0,0,0,21
+312048,0,0,0,21
+312049,0,0,0,21
+312050,0,0,0,21
+312051,0,0,0,21
+312052,0,0,0,21
+312053,0,0,0,21
+312054,0,0,0,21
+312055,0,0,0,21
+312056,0,0,0,21
+312057,0,0,0,21
+312058,0,0,0,21
+312059,0,0,0,21
+312060,0,0,0,21
+312061,0,0,0,21
+312062,0,0,0,21
+312063,0,0,0,21
+312064,0,0,0,21
+312065,0,0,654232.8992,21
+312066,335683.4454,368826.4295,0,21
+312067,0,0,0,21
+312068,0,0,0,21
+312069,0,0,0,21
+312070,0,0,0,21
+312071,0,0,0,21
+312072,0,0,0,21
+312073,0,0,0,21
+312074,0,0,0,21
+312075,0,0,0,21
+312076,0,0,0,21
+312077,0,0,0,21
+312078,0,0,0,21
+312079,0,0,0,21
+312080,0,0,0,21
+312081,0,0,0,21
+312082,0,0,0,21
+312083,0,0,0,21
+312084,0,0,0,21
+312085,0,0,0,21
+312086,0,0,0,21
+312087,0,0,0,21
+312088,0,0,0,21
+312089,0,0,0,21
+312090,0,0,0,21
+312091,0,0,0,21
+312092,0,0,0,21
+312093,0,0,0,21
+312094,0,0,0,21
+312095,0,0,0,21
+312096,0,0,0,21
+312097,0,0,0,21
+312098,0,0,0,21
+312099,0,0,655224.5438,21
+312100,0,0,0,21
+312101,335667.1839,369148.8123,0,21
+312102,0,0,0,21
+312103,0,0,0,21
+312104,0,0,0,21
+312105,0,0,0,21
+312106,0,0,0,21
+312107,0,0,0,21
+312108,0,0,0,21
+312109,0,0,0,21
+312110,0,0,0,21
+312111,0,0,0,21
+312112,0,0,0,21
+312113,0,0,0,21
+312114,0,0,0,21
+312115,0,0,0,21
+312116,0,0,0,21
+312117,0,0,0,21
+312118,0,0,0,21
+312119,0,0,0,21
+312120,0,0,0,21
+312121,0,0,0,21
+312122,0,0,0,21
+312123,0,0,0,21
+312124,0,0,0,21
+312125,0,0,0,21
+312126,0,0,0,21
+312127,0,0,0,21
+312128,0,0,0,21
+312129,0,0,0,21
+312130,0,0,0,21
+312131,0,0,0,21
+312132,0,0,0,21
+312133,0,0,656317.9815,21
+312134,0,0,0,21
+312135,0,0,0,21
+312136,335944.9973,369153.5118,0,21
+312137,0,0,0,21
+312138,0,0,0,21
+312139,0,0,0,21
+312140,0,0,0,21
+312141,0,0,0,21
+312142,0,0,0,21
+312143,0,0,0,21
+312144,0,0,0,21
+312145,0,0,0,21
+312146,0,0,0,21
+312147,0,0,0,21
+312148,0,0,0,21
+312149,0,0,0,21
+312150,0,0,0,21
+312151,0,0,0,21
+312152,0,0,0,21
+312153,0,0,0,21
+312154,0,0,0,21
+312155,0,0,0,21
+312156,0,0,0,21
+312157,0,0,0,21
+312158,0,0,0,21
+312159,0,0,0,21
+312160,0,0,0,21
+312161,0,0,0,21
+312162,0,0,0,21
+312163,0,0,0,21
+312164,0,0,0,21
+312165,0,0,0,21
+312166,0,0,0,21
+312167,0,0,0,21
+312168,0,0,656772.7566,21
+312169,0,0,0,21
+312170,0,0,0,21
+312171,335695.0992,369153.5137,0,21
+312172,0,0,0,21
+312173,0,0,0,21
+312174,0,0,0,21
+312175,0,0,0,21
+312176,0,0,0,21
+312177,0,0,0,21
+312178,0,0,0,21
+312179,0,0,0,21
+312180,0,0,0,21
+312181,0,0,0,21
+312182,0,0,0,21
+312183,0,0,0,21
+312184,0,0,0,21
+312185,0,0,0,21
+312186,0,0,0,21
+312187,0,0,0,21
+312188,0,0,0,21
+312189,0,0,0,21
+312190,0,0,0,21
+312191,0,0,0,21
+312192,0,0,0,21
+312193,0,0,0,21
+312194,0,0,0,21
+312195,0,0,0,21
+312196,0,0,0,21
+312197,0,0,0,21
+312198,0,0,0,21
+312199,0,0,0,21
+312200,0,0,0,21
+312201,0,0,0,21
+312202,0,0,0,21
+312203,0,0,656991.5324,21
+312204,0,0,0,21
+312205,0,0,0,21
+312206,335530.8312,358238.6615,0,21
+312207,0,0,0,21
+312208,0,0,0,21
+312209,0,0,0,21
+312210,0,0,0,21
+312211,0,0,0,21
+312212,0,0,0,21
+312213,0,0,0,21
+312214,0,0,0,21
+312215,0,0,0,21
+312216,0,0,0,21
+312217,0,0,0,21
+312218,0,0,0,21
+312219,0,0,0,21
+312220,0,0,0,21
+312221,0,0,0,21
+312222,0,0,0,21
+312223,0,0,0,21
+312224,0,0,0,21
+312225,0,0,0,21
+312226,0,0,0,21
+312227,0,0,0,21
+312228,0,0,0,21
+312229,0,0,0,21
+312230,0,0,0,21
+312231,0,0,0,21
+312232,0,0,0,21
+312233,0,0,0,21
+312234,0,0,0,21
+312235,0,0,0,21
+312236,0,0,0,21
+312237,0,0,0,21
+312238,0,0,656922.105,21
+312239,0,0,0,21
+312240,0,0,0,21
+312241,335446.2511,358392.8199,0,21
+312242,0,0,0,21
+312243,0,0,0,21
+312244,0,0,0,21
+312245,0,0,0,21
+312246,0,0,0,21
+312247,0,0,0,21
+312248,0,0,0,21
+312249,0,0,0,21
+312250,0,0,0,21
+312251,0,0,0,21
+312252,0,0,0,21
+312253,0,0,0,21
+312254,0,0,0,21
+312255,0,0,0,21
+312256,0,0,0,21
+312257,0,0,0,21
+312258,0,0,0,21
+312259,0,0,0,21
+312260,0,0,0,21
+312261,0,0,0,21
+312262,0,0,0,21
+312263,0,0,0,21
+312264,0,0,0,21
+312265,0,0,0,21
+312266,0,0,0,21
+312267,0,0,0,21
+312268,0,0,0,21
+312269,0,0,0,21
+312270,0,0,0,21
+312271,0,0,0,21
+312272,0,0,0,21
+312273,0,0,656364.3955,21
+312274,0,0,0,21
+312275,0,0,0,21
+312276,336010.4364,358410.8374,0,21
+312277,0,0,0,21
+312278,0,0,0,21
+312279,0,0,0,21
+312280,0,0,0,21
+312281,0,0,0,21
+312282,0,0,0,21
+312283,0,0,0,21
+312284,0,0,0,21
+312285,0,0,0,21
+312286,0,0,0,21
+312287,0,0,0,21
+312288,0,0,0,21
+312289,0,0,0,21
+312290,0,0,0,21
+312291,0,0,0,21
+312292,0,0,0,21
+312293,0,0,0,21
+312294,0,0,0,21
+312295,0,0,0,21
+312296,0,0,0,21
+312297,0,0,0,21
+312298,0,0,0,21
+312299,0,0,0,21
+312300,0,0,0,21
+312301,0,0,0,21
+312302,0,0,0,21
+312303,0,0,0,21
+312304,0,0,0,21
+312305,0,0,0,21
+312306,0,0,0,21
+312307,0,0,0,21
+312308,0,0,656080.3913,21
+312309,0,0,0,21
+312310,0,0,0,21
+312311,336315.1272,358426.6015,0,21
+312312,0,0,0,21
+312313,0,0,0,21
+312314,0,0,0,21
+312315,0,0,0,21
+312316,0,0,0,21
+312317,0,0,0,21
+312318,0,0,0,21
+312319,0,0,0,21
+312320,0,0,0,21
+312321,0,0,0,21
+312322,0,0,0,21
+312323,0,0,0,21
+312324,0,0,0,21
+312325,0,0,0,21
+312326,0,0,0,21
+312327,0,0,0,21
+312328,0,0,0,21
+312329,0,0,0,21
+312330,0,0,0,21
+312331,0,0,0,21
+312332,0,0,0,21
+312333,0,0,0,21
+312334,0,0,0,21
+312335,0,0,0,21
+312336,0,0,0,21
+312337,0,0,0,21
+312338,0,0,0,21
+312339,0,0,0,21
+312340,0,0,0,21
+312341,0,0,0,21
+312342,0,0,0,21
+312343,0,0,655903.5921,21
+312344,0,0,0,21
+312345,0,0,0,21
+312346,335950.729,358653.0205,0,21
+312347,0,0,0,21
+312348,0,0,0,21
+312349,0,0,0,21
+312350,0,0,0,21
+312351,0,0,0,21
+312352,0,0,0,21
+312353,0,0,0,21
+312354,0,0,0,21
+312355,0,0,0,21
+312356,0,0,0,21
+312357,0,0,0,21
+312358,0,0,0,21
+312359,0,0,0,21
+312360,0,0,0,15.6
+312361,0,0,0,15.6
+312362,0,0,0,15.6
+312363,0,0,0,15.6
+312364,0,0,0,15.6
+312365,0,0,0,15.6
+312366,0,0,0,15.6
+312367,0,0,0,15.6
+312368,0,0,0,15.6
+312369,0,0,0,15.6
+312370,0,0,0,15.6
+312371,0,0,0,15.6
+312372,0,0,0,15.6
+312373,0,0,0,15.6
+312374,0,0,0,15.6
+312375,0,0,0,15.6
+312376,0,0,0,15.6
+312377,0,0,0,15.6
+312378,0,0,656702.3525,15.6
+312379,0,0,0,15.6
+312380,0,0,0,15.6
+312381,336450.8021,358827.099,0,15.6
+312382,0,0,0,15.6
+312383,0,0,0,15.6
+312384,0,0,0,15.6
+312385,0,0,0,15.6
+312386,0,0,0,15.6
+312387,0,0,0,15.6
+312388,0,0,0,15.6
+312389,0,0,0,15.6
+312390,0,0,0,15.6
+312391,0,0,0,15.6
+312392,0,0,0,15.6
+312393,0,0,0,15.6
+312394,0,0,0,15.6
+312395,0,0,0,15.6
+312396,0,0,0,15.6
+312397,0,0,0,15.6
+312398,0,0,0,15.6
+312399,0,0,0,15.6
+312400,0,0,0,15.6
+312401,0,0,0,15.6
+312402,0,0,0,15.6
+312403,0,0,0,15.6
+312404,0,0,0,15.6
+312405,0,0,0,15.6
+312406,0,0,0,15.6
+312407,0,0,0,15.6
+312408,0,0,0,15.6
+312409,0,0,0,15.6
+312410,0,0,0,15.6
+312411,0,0,0,15.6
+312412,0,0,0,15.6
+312413,0,0,656504.2002,15.6
+312414,0,0,0,15.6
+312415,0,0,0,15.6
+312416,337747.0269,358944.56,0,15.6
+312417,0,0,0,15.6
+312418,0,0,0,15.6
+312419,0,0,0,15.6
+312420,0,0,0,15.6
+312421,0,0,0,15.6
+312422,0,0,0,15.6
+312423,0,0,0,15.6
+312424,0,0,0,15.6
+312425,0,0,0,15.6
+312426,0,0,0,15.6
+312427,0,0,0,15.6
+312428,0,0,0,15.6
+312429,0,0,0,15.6
+312430,0,0,0,15.6
+312431,0,0,0,15.6
+312432,0,0,0,15.6
+312433,0,0,0,15.6
+312434,0,0,0,15.6
+312435,0,0,0,15.6
+312436,0,0,0,15.6
+312437,0,0,0,15.6
+312438,0,0,0,15.6
+312439,0,0,0,15.6
+312440,0,0,0,15.6
+312441,0,0,0,15.6
+312442,0,0,0,15.6
+312443,0,0,0,15.6
+312444,0,0,0,15.6
+312445,0,0,0,15.6
+312446,0,0,0,15.6
+312447,0,0,0,15.6
+312448,0,0,656140.9836,15.6
+312449,0,0,0,15.6
+312450,0,0,0,15.6
+312451,338216.0888,358843.5035,0,15.6
+312452,0,0,0,15.6
+312453,0,0,0,15.6
+312454,0,0,0,15.6
+312455,0,0,0,15.6
+312456,0,0,0,15.6
+312457,0,0,0,15.6
+312458,0,0,0,15.6
+312459,0,0,0,15.6
+312460,0,0,0,15.6
+312461,0,0,0,15.6
+312462,0,0,0,15.6
+312463,0,0,0,15.6
+312464,0,0,0,15.6
+312465,0,0,0,15.6
+312466,0,0,0,15.6
+312467,0,0,0,15.6
+312468,0,0,0,15.6
+312469,0,0,0,15.6
+312470,0,0,0,15.6
+312471,0,0,0,15.6
+312472,0,0,0,15.6
+312473,0,0,0,15.6
+312474,0,0,0,15.6
+312475,0,0,0,15.6
+312476,0,0,0,15.6
+312477,0,0,0,15.6
+312478,0,0,0,15.6
+312479,0,0,0,15.6
+312480,0,0,0,15.6
+312481,0,0,0,15.6
+312482,0,0,0,15.6
+312483,0,0,656857.536,15.6
+312484,0,0,0,15.6
+312485,0,0,0,15.6
+312486,338530.7057,358833.7574,0,15.6
+312487,0,0,0,15.6
+312488,0,0,0,15.6
+312489,0,0,0,15.6
+312490,0,0,0,15.6
+312491,0,0,0,15.6
+312492,0,0,0,15.6
+312493,0,0,0,15.6
+312494,0,0,0,15.6
+312495,0,0,0,15.6
+312496,0,0,0,15.6
+312497,0,0,0,15.6
+312498,0,0,0,15.6
+312499,0,0,0,15.6
+312500,0,0,0,15.6
+312501,0,0,0,15.6
+312502,0,0,0,15.6
+312503,0,0,0,15.6
+312504,0,0,0,15.6
+312505,0,0,0,15.6
+312506,0,0,0,15.6
+312507,0,0,0,15.6
+312508,0,0,0,15.6
+312509,0,0,0,15.6
+312510,0,0,0,15.6
+312511,0,0,0,15.6
+312512,0,0,0,15.6
+312513,0,0,0,15.6
+312514,0,0,0,15.6
+312515,0,0,0,15.6
+312516,0,0,0,15.6
+312517,0,0,0,15.6
+312518,0,0,656055.2652,15.6
+312519,0,0,0,15.6
+312520,0,0,0,15.6
+312521,338725.2328,358970.8053,0,15.6
+312522,0,0,0,15.6
+312523,0,0,0,15.6
+312524,0,0,0,15.6
+312525,0,0,0,15.6
+312526,0,0,0,15.6
+312527,0,0,0,15.6
+312528,0,0,0,15.6
+312529,0,0,0,15.6
+312530,0,0,0,15.6
+312531,0,0,0,15.6
+312532,0,0,0,15.6
+312533,0,0,0,15.6
+312534,0,0,0,15.6
+312535,0,0,0,15.6
+312536,0,0,0,15.6
+312537,0,0,0,15.6
+312538,0,0,0,15.6
+312539,0,0,0,15.6
+312540,0,0,0,15.6
+312541,0,0,0,15.6
+312542,0,0,0,15.6
+312543,0,0,0,15.6
+312544,0,0,0,15.6
+312545,0,0,0,15.6
+312546,0,0,0,15.6
+312547,0,0,0,15.6
+312548,0,0,0,15.6
+312549,0,0,0,15.6
+312550,0,0,0,15.6
+312551,0,0,0,15.6
+312552,0,0,0,15.6
+312553,0,0,656499.9105,15.6
+312554,0,0,0,15.6
+312555,0,0,0,15.6
+312556,338857.3828,359095.7819,0,15.6
+312557,0,0,0,15.6
+312558,0,0,0,15.6
+312559,0,0,0,15.6
+312560,0,0,0,15.6
+312561,0,0,0,15.6
+312562,0,0,0,15.6
+312563,0,0,0,15.6
+312564,0,0,0,15.6
+312565,0,0,0,15.6
+312566,0,0,0,15.6
+312567,0,0,0,15.6
+312568,0,0,0,15.6
+312569,0,0,0,15.6
+312570,0,0,0,15.6
+312571,0,0,0,15.6
+312572,0,0,0,15.6
+312573,0,0,0,15.6
+312574,0,0,0,15.6
+312575,0,0,0,15.6
+312576,0,0,0,15.6
+312577,0,0,0,15.6
+312578,0,0,0,15.6
+312579,0,0,0,15.6
+312580,0,0,0,15.6
+312581,0,0,0,15.6
+312582,0,0,0,15.6
+312583,0,0,0,15.6
+312584,0,0,0,15.6
+312585,0,0,0,15.6
+312586,0,0,0,15.6
+312587,0,0,655631.0274,15.6
+312588,0,0,0,15.6
+312589,0,0,0,15.6
+312590,0,0,0,15.6
+312591,338951.1903,359122.5033,0,15.6
+312592,0,0,0,15.6
+312593,0,0,0,15.6
+312594,0,0,0,15.6
+312595,0,0,0,15.6
+312596,0,0,0,15.6
+312597,0,0,0,15.6
+312598,0,0,0,15.6
+312599,0,0,0,15.6
+312600,0,0,0,15.6
+312601,0,0,0,15.6
+312602,0,0,0,15.6
+312603,0,0,0,15.6
+312604,0,0,0,15.6
+312605,0,0,0,15.6
+312606,0,0,0,15.6
+312607,0,0,0,15.6
+312608,0,0,0,15.6
+312609,0,0,0,15.6
+312610,0,0,0,15.6
+312611,0,0,0,15.6
+312612,0,0,0,15.6
+312613,0,0,0,15.6
+312614,0,0,0,15.6
+312615,0,0,0,15.6
+312616,0,0,0,15.6
+312617,0,0,0,15.6
+312618,0,0,0,15.6
+312619,0,0,0,15.6
+312620,0,0,0,15.6
+312621,0,0,655963.3387,15.6
+312622,0,0,0,15.6
+312623,0,0,0,15.6
+312624,0,0,0,15.6
+312625,0,0,0,15.6
+312626,339021.5209,359019.9042,0,15.6
+312627,0,0,0,15.6
+312628,0,0,0,15.6
+312629,0,0,0,15.6
+312630,0,0,0,15.6
+312631,0,0,0,15.6
+312632,0,0,0,15.6
+312633,0,0,0,15.6
+312634,0,0,0,15.6
+312635,0,0,0,15.6
+312636,0,0,0,15.6
+312637,0,0,0,15.6
+312638,0,0,0,15.6
+312639,0,0,0,15.6
+312640,0,0,0,15.6
+312641,0,0,0,15.6
+312642,0,0,0,15.6
+312643,0,0,0,15.6
+312644,0,0,0,15.6
+312645,0,0,0,15.6
+312646,0,0,0,15.6
+312647,0,0,0,15.6
+312648,0,0,0,15.6
+312649,0,0,0,15.6
+312650,0,0,0,15.6
+312651,0,0,0,15.6
+312652,0,0,0,15.6
+312653,0,0,0,15.6
+312654,0,0,0,15.6
+312655,0,0,655698.6666,15.6
+312656,0,0,0,15.6
+312657,0,0,0,15.6
+312658,0,0,0,15.6
+312659,0,0,0,15.6
+312660,339034.2902,0,0,15.6
+312661,0,358982.5568,0,15.6
+312662,0,0,0,15.6
+312663,0,0,0,15.6
+312664,0,0,0,15.6
+312665,0,0,0,15.6
+312666,0,0,0,15.6
+312667,0,0,0,15.6
+312668,0,0,0,15.6
+312669,0,0,0,15.6
+312670,0,0,0,15.6
+312671,0,0,0,15.6
+312672,0,0,0,15.6
+312673,0,0,0,15.6
+312674,0,0,0,15.6
+312675,0,0,0,15.6
+312676,0,0,0,15.6
+312677,0,0,0,15.6
+312678,0,0,0,15.6
+312679,0,0,0,15.6
+312680,0,0,0,15.6
+312681,0,0,0,15.6
+312682,0,0,0,15.6
+312683,0,0,0,15.6
+312684,0,0,0,15.6
+312685,0,0,0,15.6
+312686,0,0,0,15.6
+312687,0,0,0,15.6
+312688,0,0,0,15.6
+312689,0,0,656263.781,15.6
+312690,0,0,0,15.6
+312691,0,0,0,15.6
+312692,0,0,0,15.6
+312693,0,0,0,15.6
+312694,339048.1982,0,0,15.6
+312695,0,0,0,15.6
+312696,0,369428.1839,0,15.6
+312697,0,0,0,15.6
+312698,0,0,0,15.6
+312699,0,0,0,15.6
+312700,0,0,0,15.6
+312701,0,0,0,15.6
+312702,0,0,0,15.6
+312703,0,0,0,15.6
+312704,0,0,0,15.6
+312705,0,0,0,15.6
+312706,0,0,0,15.6
+312707,0,0,0,15.6
+312708,0,0,0,15.6
+312709,0,0,0,15.6
+312710,0,0,0,15.6
+312711,0,0,0,15.6
+312712,0,0,0,15.6
+312713,0,0,0,15.6
+312714,0,0,0,15.6
+312715,0,0,0,15.6
+312716,0,0,0,15.6
+312717,0,0,0,15.6
+312718,0,0,0,15.6
+312719,0,0,0,15.6
+312720,0,0,0,17.8
+312721,0,0,0,17.8
+312722,0,0,0,17.8
+312723,0,0,656153.748,17.8
+312724,0,0,0,17.8
+312725,0,0,0,17.8
+312726,0,0,0,17.8
+312727,0,0,0,17.8
+312728,339066.4852,0,0,17.8
+312729,0,0,0,17.8
+312730,0,369428.6582,0,17.8
+312731,0,0,0,17.8
+312732,0,0,0,17.8
+312733,0,0,0,17.8
+312734,0,0,0,17.8
+312735,0,0,0,17.8
+312736,0,0,0,17.8
+312737,0,0,0,17.8
+312738,0,0,0,17.8
+312739,0,0,0,17.8
+312740,0,0,0,17.8
+312741,0,0,0,17.8
+312742,0,0,0,17.8
+312743,0,0,0,17.8
+312744,0,0,0,17.8
+312745,0,0,0,17.8
+312746,0,0,0,17.8
+312747,0,0,0,17.8
+312748,0,0,0,17.8
+312749,0,0,0,17.8
+312750,0,0,0,17.8
+312751,0,0,0,17.8
+312752,0,0,0,17.8
+312753,0,0,0,17.8
+312754,0,0,0,17.8
+312755,0,0,0,17.8
+312756,0,0,0,17.8
+312757,0,0,656233.9179,17.8
+312758,0,0,0,17.8
+312759,0,0,0,17.8
+312760,0,0,0,17.8
+312761,0,0,0,17.8
+312762,339098.9649,0,0,17.8
+312763,0,0,0,17.8
+312764,0,369428.4247,0,17.8
+312765,0,0,0,17.8
+312766,0,0,0,17.8
+312767,0,0,0,17.8
+312768,0,0,0,17.8
+312769,0,0,0,17.8
+312770,0,0,0,17.8
+312771,0,0,0,17.8
+312772,0,0,0,17.8
+312773,0,0,0,17.8
+312774,0,0,0,17.8
+312775,0,0,0,17.8
+312776,0,0,0,17.8
+312777,0,0,0,17.8
+312778,0,0,0,17.8
+312779,0,0,0,17.8
+312780,0,0,0,20
+312781,0,0,0,20
+312782,0,0,0,20
+312783,0,0,0,20
+312784,0,0,0,20
+312785,0,0,0,20
+312786,0,0,0,20
+312787,0,0,0,20
+312788,0,0,0,20
+312789,0,0,0,20
+312790,0,0,0,20
+312791,0,0,656260.2544,20
+312792,0,0,0,20
+312793,0,0,0,20
+312794,0,0,0,20
+312795,0,0,0,20
+312796,0,0,0,20
+312797,0,0,0,20
+312798,339086.6707,0,0,20
+312799,0,0,0,20
+312800,0,369426.8072,0,20
+312801,0,0,0,20
+312802,0,0,0,20
+312803,0,0,0,20
+312804,0,0,0,20
+312805,0,0,0,20
+312806,0,0,0,20
+312807,0,0,0,20
+312808,0,0,0,20
+312809,0,0,0,20
+312810,0,0,0,20
+312811,0,0,0,20
+312812,0,0,0,20
+312813,0,0,0,20
+312814,0,0,0,20
+312815,0,0,0,20
+312816,0,0,0,20
+312817,0,0,0,20
+312818,0,0,0,20
+312819,0,0,0,20
+312820,0,0,0,20
+312821,0,0,0,20
+312822,0,0,0,20
+312823,0,0,0,20
+312824,0,0,0,20
+312825,0,0,0,20
+312826,0,0,655819.4909,20
+312827,0,0,0,20
+312828,0,0,0,20
+312829,0,0,0,20
+312830,0,0,0,20
+312831,0,0,0,20
+312832,0,0,0,20
+312833,0,0,0,20
+312834,339058.1571,0,0,20
+312835,0,0,0,20
+312836,0,369323.1098,0,20
+312837,0,0,0,20
+312838,0,0,0,20
+312839,0,0,0,20
+312840,0,0,0,21
+312841,0,0,0,21
+312842,0,0,0,21
+312843,0,0,0,21
+312844,0,0,0,21
+312845,0,0,0,21
+312846,0,0,0,21
+312847,0,0,0,21
+312848,0,0,0,21
+312849,0,0,0,21
+312850,0,0,0,21
+312851,0,0,0,21
+312852,0,0,0,21
+312853,0,0,0,21
+312854,0,0,0,21
+312855,0,0,0,21
+312856,0,0,0,21
+312857,0,0,0,21
+312858,0,0,0,21
+312859,0,0,0,21
+312860,0,0,655758.3484,21
+312861,0,0,0,21
+312862,0,0,0,21
+312863,0,0,0,21
+312864,0,0,0,21
+312865,0,0,0,21
+312866,0,0,0,21
+312867,0,0,0,21
+312868,0,0,0,21
+312869,339036.2164,0,0,21
+312870,0,0,0,21
+312871,0,0,0,21
+312872,0,364044.6971,0,21
+312873,0,0,0,21
+312874,0,0,0,21
+312875,0,0,0,21
+312876,0,0,0,21
+312877,0,0,0,21
+312878,0,0,0,21
+312879,0,0,0,21
+312880,0,0,0,21
+312881,0,0,0,21
+312882,0,0,0,21
+312883,0,0,0,21
+312884,0,0,0,21
+312885,0,0,0,21
+312886,0,0,0,21
+312887,0,0,0,21
+312888,0,0,0,21
+312889,0,0,0,21
+312890,0,0,0,21
+312891,0,0,0,21
+312892,0,0,0,21
+312893,0,0,0,21
+312894,0,0,656493.3555,21
+312895,0,0,0,21
+312896,0,0,0,21
+312897,0,0,0,21
+312898,0,0,0,21
+312899,0,0,0,21
+312900,0,0,0,21
+312901,0,0,0,21
+312902,0,0,0,21
+312903,0,0,0,21
+312904,335438.0229,0,0,21
+312905,0,0,0,21
+312906,0,0,0,21
+312907,0,0,0,21
+312908,0,366166.0403,0,21
+312909,0,0,0,21
+312910,0,0,0,21
+312911,0,0,0,21
+312912,0,0,0,21
+312913,0,0,0,21
+312914,0,0,0,21
+312915,0,0,0,21
+312916,0,0,0,21
+312917,0,0,0,21
+312918,0,0,0,21
+312919,0,0,0,21
+312920,0,0,0,21
+312921,0,0,0,21
+312922,0,0,0,21
+312923,0,0,0,21
+312924,0,0,0,21
+312925,0,0,0,21
+312926,0,0,0,21
+312927,0,0,0,21
+312928,0,0,656351.5425,21
+312929,0,0,0,21
+312930,0,0,0,21
+312931,0,0,0,21
+312932,0,0,0,21
+312933,0,0,0,21
+312934,0,0,0,21
+312935,0,0,0,21
+312936,0,0,0,21
+312937,0,0,0,21
+312938,0,0,0,21
+312939,335310.2382,0,0,21
+312940,0,0,0,21
+312941,0,0,0,21
+312942,0,0,0,21
+312943,0,367269.625,0,21
+312944,0,0,0,21
+312945,0,0,0,21
+312946,0,0,0,21
+312947,0,0,0,21
+312948,0,0,0,21
+312949,0,0,0,21
+312950,0,0,0,21
+312951,0,0,0,21
+312952,0,0,0,21
+312953,0,0,0,21
+312954,0,0,0,21
+312955,0,0,0,21
+312956,0,0,0,21
+312957,0,0,0,21
+312958,0,0,0,21
+312959,0,0,0,21
+312960,0,0,0,21
+312961,0,0,0,21
+312962,0,0,656270.5225,21
+312963,0,0,0,21
+312964,0,0,0,21
+312965,0,0,0,21
+312966,0,0,0,21
+312967,0,0,0,21
+312968,0,0,0,21
+312969,0,0,0,21
+312970,0,0,0,21
+312971,0,0,0,21
+312972,0,0,0,21
+312973,0,0,0,21
+312974,334372.1842,0,0,21
+312975,0,0,0,21
+312976,0,0,0,21
+312977,0,0,0,21
+312978,0,367906.3816,0,21
+312979,0,0,0,21
+312980,0,0,0,21
+312981,0,0,0,21
+312982,0,0,0,21
+312983,0,0,0,21
+312984,0,0,0,21
+312985,0,0,0,21
+312986,0,0,0,21
+312987,0,0,0,21
+312988,0,0,0,21
+312989,0,0,0,21
+312990,0,0,0,21
+312991,0,0,0,21
+312992,0,0,0,21
+312993,0,0,0,21
+312994,0,0,0,21
+312995,0,0,0,21
+312996,0,0,655959.4494,21
+312997,0,0,0,21
+312998,0,0,0,21
+312999,0,0,0,21
+313000,0,0,0,21
+313001,0,0,0,21
+313002,0,0,0,21
+313003,0,0,0,21
+313004,0,0,0,21
+313005,0,0,0,21
+313006,0,0,0,21
+313007,0,0,0,21
+313008,0,0,0,21
+313009,334649.5244,0,0,21
+313010,0,0,0,21
+313011,0,0,0,21
+313012,0,0,0,21
+313013,0,364076.6148,0,21
+313014,0,0,0,21
+313015,0,0,0,21
+313016,0,0,0,21
+313017,0,0,0,21
+313018,0,0,0,21
+313019,0,0,0,21
+313020,0,0,0,21
+313021,0,0,0,21
+313022,0,0,0,21
+313023,0,0,0,21
+313024,0,0,0,21
+313025,0,0,0,21
+313026,0,0,0,21
+313027,0,0,0,21
+313028,0,0,0,21
+313029,0,0,0,21
+313030,0,0,655570.3028,21
+313031,0,0,0,21
+313032,0,0,0,21
+313033,0,0,0,21
+313034,0,0,0,21
+313035,0,0,0,21
+313036,0,0,0,21
+313037,0,0,0,21
+313038,0,0,0,21
+313039,0,0,0,21
+313040,0,0,0,21
+313041,0,0,0,21
+313042,0,0,0,21
+313043,0,0,0,21
+313044,335276.0204,0,0,21
+313045,0,0,0,21
+313046,0,0,0,21
+313047,0,0,0,21
+313048,0,366095.3289,0,21
+313049,0,0,0,21
+313050,0,0,0,21
+313051,0,0,0,21
+313052,0,0,0,21
+313053,0,0,0,21
+313054,0,0,0,21
+313055,0,0,0,21
+313056,0,0,0,21
+313057,0,0,0,21
+313058,0,0,0,21
+313059,0,0,0,21
+313060,0,0,0,21
+313061,0,0,0,21
+313062,0,0,0,21
+313063,0,0,0,21
+313064,0,0,655509.7659,21
+313065,0,0,0,21
+313066,0,0,0,21
+313067,0,0,0,21
+313068,0,0,0,21
+313069,0,0,0,21
+313070,0,0,0,21
+313071,0,0,0,21
+313072,0,0,0,21
+313073,0,0,0,21
+313074,0,0,0,21
+313075,0,0,0,21
+313076,0,0,0,21
+313077,0,0,0,21
+313078,0,0,0,21
+313079,335873.5145,0,0,21
+313080,0,0,0,21
+313081,0,0,0,21
+313082,0,0,0,21
+313083,0,365231.1643,0,21
+313084,0,0,0,21
+313085,0,0,0,21
+313086,0,0,0,21
+313087,0,0,0,21
+313088,0,0,0,21
+313089,0,0,0,21
+313090,0,0,0,21
+313091,0,0,0,21
+313092,0,0,0,21
+313093,0,0,0,21
+313094,0,0,0,21
+313095,0,0,0,21
+313096,0,0,0,21
+313097,0,0,0,21
+313098,0,0,0,21
+313099,0,0,655643.5585,21
+313100,0,0,0,21
+313101,0,0,0,21
+313102,0,0,0,21
+313103,0,0,0,21
+313104,0,0,0,21
+313105,0,0,0,21
+313106,0,0,0,21
+313107,0,0,0,21
+313108,0,0,0,21
+313109,0,0,0,21
+313110,0,0,0,21
+313111,0,0,0,21
+313112,0,0,0,21
+313113,0,0,0,21
+313114,335641.218,0,0,21
+313115,0,0,0,21
+313116,0,0,0,21
+313117,0,0,0,21
+313118,0,0,0,21
+313119,0,365950.9198,0,21
+313120,0,0,0,21
+313121,0,0,0,21
+313122,0,0,0,21
+313123,0,0,0,21
+313124,0,0,0,21
+313125,0,0,0,21
+313126,0,0,0,21
+313127,0,0,0,21
+313128,0,0,0,21
+313129,0,0,0,21
+313130,0,0,0,21
+313131,0,0,0,21
+313132,0,0,0,21
+313133,0,0,0,21
+313134,0,0,655841.3746,21
+313135,0,0,0,21
+313136,0,0,0,21
+313137,0,0,0,21
+313138,0,0,0,21
+313139,0,0,0,21
+313140,0,0,0,21
+313141,0,0,0,21
+313142,0,0,0,21
+313143,0,0,0,21
+313144,0,0,0,21
+313145,0,0,0,21
+313146,0,0,0,21
+313147,0,0,0,21
+313148,0,0,0,21
+313149,335745.467,0,0,21
+313150,0,0,0,21
+313151,0,0,0,21
+313152,0,0,0,21
+313153,0,0,0,21
+313154,0,0,0,21
+313155,0,366413.0115,0,21
+313156,0,0,0,21
+313157,0,0,0,21
+313158,0,0,0,21
+313159,0,0,0,21
+313160,0,0,0,21
+313161,0,0,0,21
+313162,0,0,0,21
+313163,0,0,0,21
+313164,0,0,0,21
+313165,0,0,0,21
+313166,0,0,0,21
+313167,0,0,0,21
+313168,0,0,0,21
+313169,0,0,656025.031,21
+313170,0,0,0,21
+313171,0,0,0,21
+313172,0,0,0,21
+313173,0,0,0,21
+313174,0,0,0,21
+313175,0,0,0,21
+313176,0,0,0,21
+313177,0,0,0,21
+313178,0,0,0,21
+313179,0,0,0,21
+313180,0,0,0,21
+313181,0,0,0,21
+313182,0,0,0,21
+313183,0,0,0,21
+313184,335985.9298,0,0,21
+313185,0,0,0,21
+313186,0,0,0,21
+313187,0,0,0,21
+313188,0,0,0,21
+313189,0,0,0,21
+313190,0,0,0,21
+313191,0,367152.1694,0,21
+313192,0,0,0,21
+313193,0,0,0,21
+313194,0,0,0,21
+313195,0,0,0,21
+313196,0,0,0,21
+313197,0,0,0,21
+313198,0,0,0,21
+313199,0,0,0,21
+313200,0,0,0,21
+313201,0,0,0,21
+313202,0,0,0,21
+313203,0,0,0,21
+313204,0,0,656169.1869,21
+313205,0,0,0,21
+313206,0,0,0,21
+313207,0,0,0,21
+313208,0,0,0,21
+313209,0,0,0,21
+313210,0,0,0,21
+313211,0,0,0,21
+313212,0,0,0,21
+313213,0,0,0,21
+313214,0,0,0,21
+313215,0,0,0,21
+313216,0,0,0,21
+313217,0,0,0,21
+313218,0,0,0,21
+313219,0,0,0,21
+313220,336202.1763,0,0,21
+313221,0,0,0,21
+313222,0,0,0,21
+313223,0,0,0,21
+313224,0,0,0,21
+313225,0,0,0,21
+313226,0,0,0,21
+313227,0,367220.3282,0,21
+313228,0,0,0,21
+313229,0,0,0,21
+313230,0,0,0,21
+313231,0,0,0,21
+313232,0,0,0,21
+313233,0,0,0,21
+313234,0,0,0,21
+313235,0,0,0,21
+313236,0,0,0,21
+313237,0,0,0,21
+313238,0,0,0,21
+313239,0,0,656477.3204,21
+313240,0,0,0,21
+313241,0,0,0,21
+313242,0,0,0,21
+313243,0,0,0,21
+313244,0,0,0,21
+313245,0,0,0,21
+313246,0,0,0,21
+313247,0,0,0,21
+313248,0,0,0,21
+313249,0,0,0,21
+313250,0,0,0,21
+313251,0,0,0,21
+313252,0,0,0,21
+313253,0,0,0,21
+313254,0,0,0,21
+313255,0,0,0,21
+313256,336070.9659,0,0,21
+313257,0,0,0,21
+313258,0,0,0,21
+313259,0,0,0,21
+313260,0,0,0,21
+313261,0,0,0,21
+313262,0,0,0,21
+313263,0,366701.542,0,21
+313264,0,0,0,21
+313265,0,0,0,21
+313266,0,0,0,21
+313267,0,0,0,21
+313268,0,0,0,21
+313269,0,0,0,21
+313270,0,0,0,21
+313271,0,0,0,21
+313272,0,0,0,21
+313273,0,0,0,21
+313274,0,0,656671.576,21
+313275,0,0,0,21
+313276,0,0,0,21
+313277,0,0,0,21
+313278,0,0,0,21
+313279,0,0,0,21
+313280,0,0,0,21
+313281,0,0,0,21
+313282,0,0,0,21
+313283,0,0,0,21
+313284,0,0,0,21
+313285,0,0,0,21
+313286,0,0,0,21
+313287,0,0,0,21
+313288,0,0,0,21
+313289,0,0,0,21
+313290,0,0,0,21
+313291,0,0,0,21
+313292,335737.7054,0,0,21
+313293,0,0,0,21
+313294,0,0,0,21
+313295,0,0,0,21
+313296,0,0,0,21
+313297,0,0,0,21
+313298,0,0,0,21
+313299,0,366568.8414,0,21
+313300,0,0,0,21
+313301,0,0,0,21
+313302,0,0,0,21
+313303,0,0,0,21
+313304,0,0,0,21
+313305,0,0,0,21
+313306,0,0,0,21
+313307,0,0,0,21
+313308,0,0,0,21
+313309,0,0,655841.7472,21
+313310,0,0,0,21
+313311,0,0,0,21
+313312,0,0,0,21
+313313,0,0,0,21
+313314,0,0,0,21
+313315,0,0,0,21
+313316,0,0,0,21
+313317,0,0,0,21
+313318,0,0,0,21
+313319,0,0,0,21
+313320,0,0,0,21
+313321,0,0,0,21
+313322,0,0,0,21
+313323,0,0,0,21
+313324,0,0,0,21
+313325,0,0,0,21
+313326,0,0,0,21
+313327,336152.6349,0,0,21
+313328,0,0,0,21
+313329,0,0,0,21
+313330,0,0,0,21
+313331,0,0,0,21
+313332,0,0,0,21
+313333,0,0,0,21
+313334,0,0,0,21
+313335,0,366209.9588,0,21
+313336,0,0,0,21
+313337,0,0,0,21
+313338,0,0,0,21
+313339,0,0,0,21
+313340,0,0,0,21
+313341,0,0,0,21
+313342,0,0,0,21
+313343,0,0,656477.7697,21
+313344,0,0,0,21
+313345,0,0,0,21
+313346,0,0,0,21
+313347,0,0,0,21
+313348,0,0,0,21
+313349,0,0,0,21
+313350,0,0,0,21
+313351,0,0,0,21
+313352,0,0,0,21
+313353,0,0,0,21
+313354,0,0,0,21
+313355,0,0,0,21
+313356,0,0,0,21
+313357,0,0,0,21
+313358,0,0,0,21
+313359,0,0,0,21
+313360,0,0,0,21
+313361,0,0,0,21
+313362,336089.811,0,0,21
+313363,0,0,0,21
+313364,0,0,0,21
+313365,0,0,0,21
+313366,0,0,0,21
+313367,0,0,0,21
+313368,0,0,0,21
+313369,0,0,0,21
+313370,0,0,0,21
+313371,0,366268.8066,0,21
+313372,0,0,0,21
+313373,0,0,0,21
+313374,0,0,0,21
+313375,0,0,0,21
+313376,0,0,0,21
+313377,0,0,656645.6513,21
+313378,0,0,0,21
+313379,0,0,0,21
+313380,0,0,0,21
+313381,0,0,0,21
+313382,0,0,0,21
+313383,0,0,0,21
+313384,0,0,0,21
+313385,0,0,0,21
+313386,0,0,0,21
+313387,0,0,0,21
+313388,0,0,0,21
+313389,0,0,0,21
+313390,0,0,0,21
+313391,0,0,0,21
+313392,0,0,0,21
+313393,0,0,0,21
+313394,0,0,0,21
+313395,0,0,0,21
+313396,0,0,0,21
+313397,335957.8869,0,0,21
+313398,0,0,0,21
+313399,0,0,0,21
+313400,0,0,0,21
+313401,0,0,0,21
+313402,0,0,0,21
+313403,0,0,0,21
+313404,0,0,0,21
+313405,0,0,0,21
+313406,0,0,0,21
+313407,0,365965.0788,0,21
+313408,0,0,0,21
+313409,0,0,0,21
+313410,0,0,0,21
+313411,0,0,656659.3991,21
+313412,0,0,0,21
+313413,0,0,0,21
+313414,0,0,0,21
+313415,0,0,0,21
+313416,0,0,0,21
+313417,0,0,0,21
+313418,0,0,0,21
+313419,0,0,0,21
+313420,0,0,0,21
+313421,0,0,0,21
+313422,0,0,0,21
+313423,0,0,0,21
+313424,0,0,0,21
+313425,0,0,0,21
+313426,0,0,0,21
+313427,0,0,0,21
+313428,0,0,0,21
+313429,0,0,0,21
+313430,0,0,0,21
+313431,0,0,0,21
+313432,335872.8078,0,0,21
+313433,0,0,0,21
+313434,0,0,0,21
+313435,0,0,0,21
+313436,0,0,0,21
+313437,0,0,0,21
+313438,0,0,0,21
+313439,0,0,0,21
+313440,0,0,0,21
+313441,0,0,0,21
+313442,0,366650.8894,0,21
+313443,0,0,0,21
+313444,0,0,0,21
+313445,0,0,656613.4852,21
+313446,0,0,0,21
+313447,0,0,0,21
+313448,0,0,0,21
+313449,0,0,0,21
+313450,0,0,0,21
+313451,0,0,0,21
+313452,0,0,0,21
+313453,0,0,0,21
+313454,0,0,0,21
+313455,0,0,0,21
+313456,0,0,0,21
+313457,0,0,0,21
+313458,0,0,0,21
+313459,0,0,0,21
+313460,0,0,0,21
+313461,0,0,0,21
+313462,0,0,0,21
+313463,0,0,0,21
+313464,0,0,0,21
+313465,0,0,0,21
+313466,0,0,0,21
+313467,336049.806,0,0,21
+313468,0,0,0,21
+313469,0,0,0,21
+313470,0,0,0,21
+313471,0,0,0,21
+313472,0,0,0,21
+313473,0,0,0,21
+313474,0,0,0,21
+313475,0,0,0,21
+313476,0,0,0,21
+313477,0,367179.1298,0,21
+313478,0,0,0,21
+313479,0,0,657104.8776,21
+313480,0,0,0,21
+313481,0,0,0,21
+313482,0,0,0,21
+313483,0,0,0,21
+313484,0,0,0,21
+313485,0,0,0,21
+313486,0,0,0,21
+313487,0,0,0,21
+313488,0,0,0,21
+313489,0,0,0,21
+313490,0,0,0,21
+313491,0,0,0,21
+313492,0,0,0,21
+313493,0,0,0,21
+313494,0,0,0,21
+313495,0,0,0,21
+313496,0,0,0,21
+313497,0,0,0,21
+313498,0,0,0,21
+313499,0,0,0,21
+313500,0,0,0,21
+313501,0,0,0,21
+313502,335871.4646,0,0,21
+313503,0,0,0,21
+313504,0,0,0,21
+313505,0,0,0,21
+313506,0,0,0,21
+313507,0,0,0,21
+313508,0,0,0,21
+313509,0,0,0,21
+313510,0,0,0,21
+313511,0,0,0,21
+313512,0,367486.1314,0,21
+313513,0,0,657741.6302,21
+313514,0,0,0,21
+313515,0,0,0,21
+313516,0,0,0,21
+313517,0,0,0,21
+313518,0,0,0,21
+313519,0,0,0,21
+313520,0,0,0,21
+313521,0,0,0,21
+313522,0,0,0,21
+313523,0,0,0,21
+313524,0,0,0,21
+313525,0,0,0,21
+313526,0,0,0,21
+313527,0,0,0,21
+313528,0,0,0,21
+313529,0,0,0,21
+313530,0,0,0,21
+313531,0,0,0,21
+313532,0,0,0,21
+313533,0,0,0,21
+313534,0,0,0,21
+313535,0,0,0,21
+313536,0,0,0,21
+313537,335904.5768,0,0,21
+313538,0,0,0,21
+313539,0,0,0,21
+313540,0,0,0,21
+313541,0,0,0,21
+313542,0,0,0,21
+313543,0,0,0,21
+313544,0,0,0,21
+313545,0,0,0,21
+313546,0,0,0,21
+313547,0,367688.0119,658389.7158,21
+313548,0,0,0,21
+313549,0,0,0,21
+313550,0,0,0,21
+313551,0,0,0,21
+313552,0,0,0,21
+313553,0,0,0,21
+313554,0,0,0,21
+313555,0,0,0,21
+313556,0,0,0,21
+313557,0,0,0,21
+313558,0,0,0,21
+313559,0,0,0,21
+313560,0,0,0,21
+313561,0,0,0,21
+313562,0,0,0,21
+313563,0,0,0,21
+313564,0,0,0,21
+313565,0,0,0,21
+313566,0,0,0,21
+313567,0,0,0,21
+313568,0,0,0,21
+313569,0,0,0,21
+313570,0,0,0,21
+313571,0,0,0,21
+313572,335980.6416,0,0,21
+313573,0,0,0,21
+313574,0,0,0,21
+313575,0,0,0,21
+313576,0,0,0,21
+313577,0,0,0,21
+313578,0,0,0,21
+313579,0,0,0,21
+313580,0,0,0,21
+313581,0,0,658791.3749,21
+313582,0,367777.725,0,21
+313583,0,0,0,21
+313584,0,0,0,21
+313585,0,0,0,21
+313586,0,0,0,21
+313587,0,0,0,21
+313588,0,0,0,21
+313589,0,0,0,21
+313590,0,0,0,21
+313591,0,0,0,21
+313592,0,0,0,21
+313593,0,0,0,21
+313594,0,0,0,21
+313595,0,0,0,21
+313596,0,0,0,21
+313597,0,0,0,21
+313598,0,0,0,21
+313599,0,0,0,21
+313600,0,0,0,21
+313601,0,0,0,21
+313602,0,0,0,21
+313603,0,0,0,21
+313604,0,0,0,21
+313605,0,0,0,21
+313606,0,0,0,21
+313607,335979.0176,0,0,21
+313608,0,0,0,21
+313609,0,0,0,21
+313610,0,0,0,21
+313611,0,0,0,21
+313612,0,0,0,21
+313613,0,0,0,21
+313614,0,0,0,21
+313615,0,0,658719.8739,21
+313616,0,0,0,21
+313617,0,367842.3491,0,21
+313618,0,0,0,21
+313619,0,0,0,21
+313620,0,0,0,21
+313621,0,0,0,21
+313622,0,0,0,21
+313623,0,0,0,21
+313624,0,0,0,21
+313625,0,0,0,21
+313626,0,0,0,21
+313627,0,0,0,21
+313628,0,0,0,21
+313629,0,0,0,21
+313630,0,0,0,21
+313631,0,0,0,21
+313632,0,0,0,21
+313633,0,0,0,21
+313634,0,0,0,21
+313635,0,0,0,21
+313636,0,0,0,21
+313637,0,0,0,21
+313638,0,0,0,21
+313639,0,0,0,21
+313640,0,0,0,21
+313641,0,0,0,21
+313642,336332.023,0,0,21
+313643,0,0,0,21
+313644,0,0,0,21
+313645,0,0,0,21
+313646,0,0,0,21
+313647,0,0,0,21
+313648,0,0,0,21
+313649,0,0,658409.1389,21
+313650,0,0,0,21
+313651,0,0,0,21
+313652,0,367910.5211,0,21
+313653,0,0,0,21
+313654,0,0,0,21
+313655,0,0,0,21
+313656,0,0,0,21
+313657,0,0,0,21
+313658,0,0,0,21
+313659,0,0,0,21
+313660,0,0,0,21
+313661,0,0,0,21
+313662,0,0,0,21
+313663,0,0,0,21
+313664,0,0,0,21
+313665,0,0,0,21
+313666,0,0,0,21
+313667,0,0,0,21
+313668,0,0,0,21
+313669,0,0,0,21
+313670,0,0,0,21
+313671,0,0,0,21
+313672,0,0,0,21
+313673,0,0,0,21
+313674,0,0,0,21
+313675,0,0,0,21
+313676,0,0,0,21
+313677,336093.0498,0,0,21
+313678,0,0,0,21
+313679,0,0,0,21
+313680,0,0,0,21
+313681,0,0,0,21
+313682,0,0,0,21
+313683,0,0,657970.3686,21
+313684,0,0,0,21
+313685,0,0,0,21
+313686,0,0,0,21
+313687,0,0,0,21
+313688,0,368018.6604,0,21
+313689,0,0,0,21
+313690,0,0,0,21
+313691,0,0,0,21
+313692,0,0,0,21
+313693,0,0,0,21
+313694,0,0,0,21
+313695,0,0,0,21
+313696,0,0,0,21
+313697,0,0,0,21
+313698,0,0,0,21
+313699,0,0,0,21
+313700,0,0,0,21
+313701,0,0,0,21
+313702,0,0,0,21
+313703,0,0,0,21
+313704,0,0,0,21
+313705,0,0,0,21
+313706,0,0,0,21
+313707,0,0,0,21
+313708,0,0,0,21
+313709,0,0,0,21
+313710,0,0,0,21
+313711,0,0,0,21
+313712,0,0,0,21
+313713,336725.582,0,0,21
+313714,0,0,0,21
+313715,0,0,0,21
+313716,0,0,0,21
+313717,0,0,0,21
+313718,0,0,657517.4404,21
+313719,0,0,0,21
+313720,0,0,0,21
+313721,0,0,0,21
+313722,0,0,0,21
+313723,0,0,0,21
+313724,0,368079.6224,0,21
+313725,0,0,0,21
+313726,0,0,0,21
+313727,0,0,0,21
+313728,0,0,0,21
+313729,0,0,0,21
+313730,0,0,0,21
+313731,0,0,0,21
+313732,0,0,0,21
+313733,0,0,0,21
+313734,0,0,0,21
+313735,0,0,0,21
+313736,0,0,0,21
+313737,0,0,0,21
+313738,0,0,0,21
+313739,0,0,0,21
+313740,0,0,0,21
+313741,0,0,0,21
+313742,0,0,0,21
+313743,0,0,0,21
+313744,0,0,0,21
+313745,0,0,0,21
+313746,0,0,0,21
+313747,0,0,0,21
+313748,336165.2528,0,0,21
+313749,0,0,0,21
+313750,0,0,0,21
+313751,0,0,0,21
+313752,0,0,657183.6648,21
+313753,0,0,0,21
+313754,0,0,0,21
+313755,0,0,0,21
+313756,0,0,0,21
+313757,0,0,0,21
+313758,0,0,0,21
+313759,0,0,0,21
+313760,0,369415.0131,0,21
+313761,0,0,0,21
+313762,0,0,0,21
+313763,0,0,0,21
+313764,0,0,0,21
+313765,0,0,0,21
+313766,0,0,0,21
+313767,0,0,0,21
+313768,0,0,0,21
+313769,0,0,0,21
+313770,0,0,0,21
+313771,0,0,0,21
+313772,0,0,0,21
+313773,0,0,0,21
+313774,0,0,0,21
+313775,0,0,0,21
+313776,0,0,0,21
+313777,0,0,0,21
+313778,0,0,0,21
+313779,0,0,0,21
+313780,0,0,0,21
+313781,0,0,0,21
+313782,0,0,0,21
+313783,336086.0016,0,0,21
+313784,0,0,0,21
+313785,0,0,0,21
+313786,0,0,657003.583,21
+313787,0,0,0,21
+313788,0,0,0,21
+313789,0,0,0,21
+313790,0,0,0,21
+313791,0,0,0,21
+313792,0,0,0,21
+313793,0,0,0,21
+313794,0,0,0,21
+313795,0,369410.0166,0,21
+313796,0,0,0,21
+313797,0,0,0,21
+313798,0,0,0,21
+313799,0,0,0,21
+313800,0,0,0,15.6
+313801,0,0,0,15.6
+313802,0,0,0,15.6
+313803,0,0,0,15.6
+313804,0,0,0,15.6
+313805,0,0,0,15.6
+313806,0,0,0,15.6
+313807,0,0,0,15.6
+313808,0,0,0,15.6
+313809,0,0,0,15.6
+313810,0,0,0,15.6
+313811,0,0,0,15.6
+313812,0,0,0,15.6
+313813,0,0,0,15.6
+313814,0,0,0,15.6
+313815,0,0,0,15.6
+313816,0,0,0,15.6
+313817,0,0,0,15.6
+313818,337318.0374,0,0,15.6
+313819,0,0,0,15.6
+313820,0,0,656842.047,15.6
+313821,0,0,0,15.6
+313822,0,0,0,15.6
+313823,0,0,0,15.6
+313824,0,0,0,15.6
+313825,0,0,0,15.6
+313826,0,0,0,15.6
+313827,0,0,0,15.6
+313828,0,0,0,15.6
+313829,0,0,0,15.6
+313830,0,369414.5219,0,15.6
+313831,0,0,0,15.6
+313832,0,0,0,15.6
+313833,0,0,0,15.6
+313834,0,0,0,15.6
+313835,0,0,0,15.6
+313836,0,0,0,15.6
+313837,0,0,0,15.6
+313838,0,0,0,15.6
+313839,0,0,0,15.6
+313840,0,0,0,15.6
+313841,0,0,0,15.6
+313842,0,0,0,15.6
+313843,0,0,0,15.6
+313844,0,0,0,15.6
+313845,0,0,0,15.6
+313846,0,0,0,15.6
+313847,0,0,0,15.6
+313848,0,0,0,15.6
+313849,0,0,0,15.6
+313850,0,0,0,15.6
+313851,0,0,0,15.6
+313852,0,0,0,15.6
+313853,335853.8889,0,0,15.6
+313854,0,0,656347.433,15.6
+313855,0,0,0,15.6
+313856,0,0,0,15.6
+313857,0,0,0,15.6
+313858,0,0,0,15.6
+313859,0,0,0,15.6
+313860,0,0,0,15.6
+313861,0,0,0,15.6
+313862,0,0,0,15.6
+313863,0,0,0,15.6
+313864,0,0,0,15.6
+313865,0,369415.3858,0,15.6
+313866,0,0,0,15.6
+313867,0,0,0,15.6
+313868,0,0,0,15.6
+313869,0,0,0,15.6
+313870,0,0,0,15.6
+313871,0,0,0,15.6
+313872,0,0,0,15.6
+313873,0,0,0,15.6
+313874,0,0,0,15.6
+313875,0,0,0,15.6
+313876,0,0,0,15.6
+313877,0,0,0,15.6
+313878,0,0,0,15.6
+313879,0,0,0,15.6
+313880,0,0,0,15.6
+313881,0,0,0,15.6
+313882,0,0,0,15.6
+313883,0,0,0,15.6
+313884,0,0,0,15.6
+313885,0,0,0,15.6
+313886,0,0,0,15.6
+313887,337373.8497,0,0,15.6
+313888,0,0,655917.285,15.6
+313889,0,0,0,15.6
+313890,0,0,0,15.6
+313891,0,0,0,15.6
+313892,0,0,0,15.6
+313893,0,0,0,15.6
+313894,0,0,0,15.6
+313895,0,0,0,15.6
+313896,0,0,0,15.6
+313897,0,0,0,15.6
+313898,0,0,0,15.6
+313899,0,0,0,15.6
+313900,0,369413.6424,0,15.6
+313901,0,0,0,15.6
+313902,0,0,0,15.6
+313903,0,0,0,15.6
+313904,0,0,0,15.6
+313905,0,0,0,15.6
+313906,0,0,0,15.6
+313907,0,0,0,15.6
+313908,0,0,0,15.6
+313909,0,0,0,15.6
+313910,0,0,0,15.6
+313911,0,0,0,15.6
+313912,0,0,0,15.6
+313913,0,0,0,15.6
+313914,0,0,0,15.6
+313915,0,0,0,15.6
+313916,0,0,0,15.6
+313917,0,0,0,15.6
+313918,0,0,0,15.6
+313919,0,0,0,15.6
+313920,0,0,0,15.6
+313921,0,0,0,15.6
+313922,338041.3076,0,656361.1134,15.6
+313923,0,0,0,15.6
+313924,0,0,0,15.6
+313925,0,0,0,15.6
+313926,0,0,0,15.6
+313927,0,0,0,15.6
+313928,0,0,0,15.6
+313929,0,0,0,15.6
+313930,0,0,0,15.6
+313931,0,0,0,15.6
+313932,0,0,0,15.6
+313933,0,0,0,15.6
+313934,0,0,0,15.6
+313935,0,369412.9168,0,15.6
+313936,0,0,0,15.6
+313937,0,0,0,15.6
+313938,0,0,0,15.6
+313939,0,0,0,15.6
+313940,0,0,0,15.6
+313941,0,0,0,15.6
+313942,0,0,0,15.6
+313943,0,0,0,15.6
+313944,0,0,0,15.6
+313945,0,0,0,15.6
+313946,0,0,0,15.6
+313947,0,0,0,15.6
+313948,0,0,0,15.6
+313949,0,0,0,15.6
+313950,0,0,0,15.6
+313951,0,0,0,15.6
+313952,0,0,0,15.6
+313953,0,0,0,15.6
+313954,0,0,0,15.6
+313955,0,0,0,15.6
+313956,0,0,656337.0126,15.6
+313957,335043.4047,0,0,15.6
+313958,0,0,0,15.6
+313959,0,0,0,15.6
+313960,0,0,0,15.6
+313961,0,0,0,15.6
+313962,0,0,0,15.6
+313963,0,0,0,15.6
+313964,0,0,0,15.6
+313965,0,0,0,15.6
+313966,0,0,0,15.6
+313967,0,0,0,15.6
+313968,0,0,0,15.6
+313969,0,0,0,15.6
+313970,0,369417.7368,0,15.6
+313971,0,0,0,15.6
+313972,0,0,0,15.6
+313973,0,0,0,15.6
+313974,0,0,0,15.6
+313975,0,0,0,15.6
+313976,0,0,0,15.6
+313977,0,0,0,15.6
+313978,0,0,0,15.6
+313979,0,0,0,15.6
+313980,0,0,0,15.6
+313981,0,0,0,15.6
+313982,0,0,0,15.6
+313983,0,0,0,15.6
+313984,0,0,0,15.6
+313985,0,0,0,15.6
+313986,0,0,0,15.6
+313987,0,0,0,15.6
+313988,0,0,0,15.6
+313989,0,0,0,15.6
+313990,0,0,655201.0827,15.6
+313991,0,0,0,15.6
+313992,337214.0061,0,0,15.6
+313993,0,0,0,15.6
+313994,0,0,0,15.6
+313995,0,0,0,15.6
+313996,0,0,0,15.6
+313997,0,0,0,15.6
+313998,0,0,0,15.6
+313999,0,0,0,15.6
+314000,0,0,0,15.6
+314001,0,0,0,15.6
+314002,0,0,0,15.6
+314003,0,0,0,15.6
+314004,0,0,0,15.6
+314005,0,369412.7156,0,15.6
+314006,0,0,0,15.6
+314007,0,0,0,15.6
+314008,0,0,0,15.6
+314009,0,0,0,15.6
+314010,0,0,0,15.6
+314011,0,0,0,15.6
+314012,0,0,0,15.6
+314013,0,0,0,15.6
+314014,0,0,0,15.6
+314015,0,0,0,15.6
+314016,0,0,0,15.6
+314017,0,0,0,15.6
+314018,0,0,0,15.6
+314019,0,0,0,15.6
+314020,0,0,0,15.6
+314021,0,0,0,15.6
+314022,0,0,0,15.6
+314023,0,0,0,15.6
+314024,0,0,655594.9029,15.6
+314025,0,0,0,15.6
+314026,0,0,0,15.6
+314027,338025.0705,0,0,15.6
+314028,0,0,0,15.6
+314029,0,0,0,15.6
+314030,0,0,0,15.6
+314031,0,0,0,15.6
+314032,0,0,0,15.6
+314033,0,0,0,15.6
+314034,0,0,0,15.6
+314035,0,0,0,15.6
+314036,0,0,0,15.6
+314037,0,0,0,15.6
+314038,0,0,0,15.6
+314039,0,0,0,15.6
+314040,0,369413.0209,0,15.6
+314041,0,0,0,15.6
+314042,0,0,0,15.6
+314043,0,0,0,15.6
+314044,0,0,0,15.6
+314045,0,0,0,15.6
+314046,0,0,0,15.6
+314047,0,0,0,15.6
+314048,0,0,0,15.6
+314049,0,0,0,15.6
+314050,0,0,0,15.6
+314051,0,0,0,15.6
+314052,0,0,0,15.6
+314053,0,0,0,15.6
+314054,0,0,0,15.6
+314055,0,0,0,15.6
+314056,0,0,0,15.6
+314057,0,0,0,15.6
+314058,0,0,656020.8362,15.6
+314059,0,0,0,15.6
+314060,0,0,0,15.6
+314061,0,0,0,15.6
+314062,338428.5708,0,0,15.6
+314063,0,0,0,15.6
+314064,0,0,0,15.6
+314065,0,0,0,15.6
+314066,0,0,0,15.6
+314067,0,0,0,15.6
+314068,0,0,0,15.6
+314069,0,0,0,15.6
+314070,0,0,0,15.6
+314071,0,0,0,15.6
+314072,0,0,0,15.6
+314073,0,0,0,15.6
+314074,0,0,0,15.6
+314075,0,369411.8477,0,15.6
+314076,0,0,0,15.6
+314077,0,0,0,15.6
+314078,0,0,0,15.6
+314079,0,0,0,15.6
+314080,0,0,0,15.6
+314081,0,0,0,15.6
+314082,0,0,0,15.6
+314083,0,0,0,15.6
+314084,0,0,0,15.6
+314085,0,0,0,15.6
+314086,0,0,0,15.6
+314087,0,0,0,15.6
+314088,0,0,0,15.6
+314089,0,0,0,15.6
+314090,0,0,0,15.6
+314091,0,0,0,15.6
+314092,0,0,655336.5129,15.6
+314093,0,0,0,15.6
+314094,0,0,0,15.6
+314095,0,0,0,15.6
+314096,0,0,0,15.6
+314097,338648.6898,0,0,15.6
+314098,0,0,0,15.6
+314099,0,0,0,15.6
+314100,0,0,0,15.6
+314101,0,0,0,15.6
+314102,0,0,0,15.6
+314103,0,0,0,15.6
+314104,0,0,0,15.6
+314105,0,0,0,15.6
+314106,0,0,0,15.6
+314107,0,0,0,15.6
+314108,0,0,0,15.6
+314109,0,0,0,15.6
+314110,0,369413.6397,0,15.6
+314111,0,0,0,15.6
+314112,0,0,0,15.6
+314113,0,0,0,15.6
+314114,0,0,0,15.6
+314115,0,0,0,15.6
+314116,0,0,0,15.6
+314117,0,0,0,15.6
+314118,0,0,0,15.6
+314119,0,0,0,15.6
+314120,0,0,0,15.6
+314121,0,0,0,15.6
+314122,0,0,0,15.6
+314123,0,0,0,15.6
+314124,0,0,0,15.6
+314125,0,0,0,15.6
+314126,0,0,656004.4997,15.6
+314127,0,0,0,15.6
+314128,0,0,0,15.6
+314129,0,0,0,15.6
+314130,0,0,0,15.6
+314131,0,0,0,15.6
+314132,338780.5449,0,0,15.6
+314133,0,0,0,15.6
+314134,0,0,0,15.6
+314135,0,0,0,15.6
+314136,0,0,0,15.6
+314137,0,0,0,15.6
+314138,0,0,0,15.6
+314139,0,0,0,15.6
+314140,0,0,0,15.6
+314141,0,0,0,15.6
+314142,0,0,0,15.6
+314143,0,0,0,15.6
+314144,0,0,0,15.6
+314145,0,369413.5767,0,15.6
+314146,0,0,0,15.6
+314147,0,0,0,15.6
+314148,0,0,0,15.6
+314149,0,0,0,15.6
+314150,0,0,0,15.6
+314151,0,0,0,15.6
+314152,0,0,0,15.6
+314153,0,0,0,15.6
+314154,0,0,0,15.6
+314155,0,0,0,15.6
+314156,0,0,0,15.6
+314157,0,0,0,15.6
+314158,0,0,0,15.6
+314159,0,0,0,15.6
+314160,0,0,655359.5029,17.8
+314161,0,419041.2293,0,17.8
+314162,0,0,0,17.8
+314163,0,0,0,17.8
+314164,0,0,0,17.8
+314165,0,0,0,17.8
+314166,0,0,0,17.8
+314167,338878.9139,0,0,17.8
+314168,0,0,0,17.8
+314169,0,0,0,17.8
+314170,0,0,0,17.8
+314171,0,0,0,17.8
+314172,0,0,0,17.8
+314173,0,0,0,17.8
+314174,0,0,0,17.8
+314175,0,0,0,17.8
+314176,0,0,0,17.8
+314177,0,0,0,17.8
+314178,0,0,0,17.8
+314179,0,0,0,17.8
+314180,0,369413.1508,0,17.8
+314181,0,0,0,17.8
+314182,0,0,0,17.8
+314183,0,0,0,17.8
+314184,0,0,0,17.8
+314185,0,0,0,17.8
+314186,0,0,0,17.8
+314187,0,0,0,17.8
+314188,0,0,0,17.8
+314189,0,0,0,17.8
+314190,0,0,0,17.8
+314191,0,0,0,17.8
+314192,0,0,0,17.8
+314193,0,0,0,17.8
+314194,0,0,655993.1448,17.8
+314195,0,0,0,17.8
+314196,0,1179.31569,0,17.8
+314197,0,1277.001992,0,17.8
+314198,0,999.4496814,0,17.8
+314199,0,1159.592825,0,17.8
+314200,0,1179.315658,0,17.8
+314201,0,1179.31565,0,17.8
+314202,338959.4453,1090.05668,0,17.8
+314203,0,1060.008164,0,17.8
+314204,0,1039.891155,0,17.8
+314205,0,1060.008151,0,17.8
+314206,0,1060.008144,0,17.8
+314207,0,1049.95818,0,17.8
+314208,0,1060.00813,0,17.8
+314209,0,1039.891122,0,17.8
+314210,0,1060.008116,0,17.8
+314211,0,1060.008109,0,17.8
+314212,0,1049.958146,0,17.8
+314213,0,1060.008095,0,17.8
+314214,0,1096.548643,0,17.8
+314215,0,370728.2945,0,17.8
+314216,0,1193.255152,0,17.8
+314217,0,1266.120231,0,17.8
+314218,0,1276.170198,0,17.8
+314219,0,0,0,17.8
+314220,0,0,0,20
+314221,1655.523744,66919.02464,0,20
+314222,0,10709.25818,0,20
+314223,685.7567262,118377.95,0,20
+314224,594.4707914,178373.2593,0,20
+314225,594.4707203,115043.6543,0,20
+314226,609.8219266,135389.933,0,20
+314227,594.4707426,136243.1048,0,20
+314228,625.1169968,152721.5966,0,20
+314229,609.8219217,141932.485,0,20
+314230,609.8219186,145656.9856,0,20
+314231,625.1168656,145529.0944,0,20
+314232,625.1169949,145414.7644,0,20
+314233,625.116995,145924.4787,0,20
+314234,640.3570116,145780.9438,0,20
+314235,625.1169962,145758.7763,0,20
+314236,640.3570393,145984.7168,0,20
+314237,625.1169995,145837.9159,0,20
+314238,609.8218849,146139.2985,44669.52193,20
+314239,625.1169931,146023.0609,47078.41473,20
+314240,609.8219187,146420.427,37638.8274,20
+314241,778.4009411,146366.9487,43653.16873,20
+314242,3773.413269,146447.2687,46075.02839,20
+314243,2272.062309,146861.4019,46135.65984,20
+314244,3294.039279,146730.0881,46196.17313,20
+314245,3153.472698,147089.5907,48620.31785,20
+314246,3601.201445,146910.1847,48687.05385,20
+314247,3878.484566,147357.7874,49934.07653,20
+314248,4017.795703,147357.2802,50003.86497,20
+314249,4291.898334,147446.705,51254.27748,20
+314250,4548.83271,147772.5813,51327.1573,20
+314251,4685.213244,147455.0438,53759.2468,20
+314252,4804.598432,147955.3284,52658.7502,20
+314253,4947.290464,147942.9656,53916.45126,20
+314254,5058.397017,147702.8702,55176.30329,20
+314255,5058.397007,148007.3478,54076.24438,20
+314256,5302.596963,148093.7924,56520.99228,20
+314257,5176.877203,148179.9237,56606.77233,20
+314258,5294.876474,148351.1473,56692.34856,20
+314259,5529.429956,148139.87,57962.05175,20
+314260,5287.038446,148470.8302,58050.8772,20
+314261,5513.863043,150384.765,59324.83642,20
+314262,5531.334999,149424.8541,59416.9362,20
+314263,5607.035124,149902.765,59508.80663,20
+314264,5616.324707,149716.7215,60788.90786,20
+314265,5640.856555,150495.7173,60884.06602,20
+314266,5618.506083,150265.9802,60978.98292,20
+314267,5767.135477,150421.8752,62265.33509,20
+314268,5659.303035,150977.0224,62363.55065,20
+314269,5791.931899,150345.6069,63654.47675,20
+314270,5776.90758,151441.0082,62560.97394,20
+314271,5923.979284,150472.4929,65338.52662,20
+314272,5675.674812,151548.7583,63986.80794,20
+314273,5933.060427,150928.5682,67288.08299,20
+314274,5924.133997,151360.8385,65265.00861,20
+314275,5939.988056,151645.7796,68032.64538,20
+314276,5823.577452,151424.6946,66942.42802,20
+314277,5939.566035,151964.1938,68384.2821,20
+314278,5954.225978,151524.5066,68394.1575,20
+314279,5938.981809,152159.5387,69624.72377,20
+314280,5953.479286,151840.5194,68766.28595,21
+314281,4077.995758,141297.6591,43774.16239,21
+314282,3645.131567,140315.459,39984.63091,21
+314283,3627.650645,139550.7525,38734.32295,21
+314284,3749.053111,139594.1897,40056.9754,21
+314285,3519.270709,139394.8695,37510.41155,21
+314286,3590.725424,139419.9237,38837.23165,21
+314287,3484.700049,138622.8782,38871.43275,21
+314288,3472.183159,139243.2394,37608.30546,21
+314289,3474.170021,138548.2395,38938.60033,21
+314290,3453.043025,138755.8144,37672.9781,21
+314291,3330.013405,138729.4573,37704.7237,21
+314292,3309.714792,138022.114,37736.42292,21
+314293,3326.009384,138265.6336,37768.0758,21
+314294,3299.158095,138318.1203,37799.68271,21
+314295,3207.867082,137663.4513,37831.24323,21
+314296,3299.158158,137988.1125,36551.85744,21
+314297,3083.76853,137789.7998,37893.19331,21
+314298,3183.742534,137559.0967,37924.61761,21
+314299,3207.918927,137717.5632,36641.64469,21
+314300,3067.706958,137000.9534,36670.82742,21
+314301,3083.820362,137571.2388,38016.56212,21
+314302,2943.007619,136834.391,36730.05722,21
+314303,3083.820354,137404.6033,36759.11566,21
+314304,2959.037085,136528.8084,36788.13338,21
+314305,2943.007683,136959.0883,36817.11041,21
+314306,2833.781842,136283.9619,36846.04655,21
+314307,2942.79875,136861.4008,36874.94223,21
+314308,2707.909293,136182.3498,36903.79726,21
+314309,2817.543449,136097.4529,35602.75103,21
+314310,2707.620419,136380.6699,36960.40516,21
+314311,2817.543468,135786.0579,36989.14004,21
+314312,2707.620399,136267.9909,35684.69834,21
+314313,2707.620456,135787.0205,37045.51307,21
+314314,2707.620377,135697.8568,35738.82846,21
+314315,2833.492922,135770.039,35765.3699,21
+314316,2581.100899,135757.567,37129.29561,21
+314317,2849.36579,135712.5187,34476.30735,21
+314318,2723.493167,135373.6055,37184.30799,21
+314319,2715.751289,135655.4977,35872.10127,21
+314320,2865.165052,135590.382,35898.46265,21
+314321,2707.620462,135002.6229,35251.75958,21
+314322,2739.292487,135659.2734,35950.61364,21
+314323,2723.49331,134938.342,35976.86897,21
+314324,2739.292598,135434.894,34652.77072,21
+314325,2723.49331,135166.4849,36028.34594,21
+314326,2739.292584,134832.3161,36054.49632,21
+314327,2739.292629,135159.7207,34727.19442,21
+314328,2739.292552,134967.7929,36105.76806,21
+314329,2739.292635,134716.8793,34776.35,21
+314330,2731.137867,135137.1213,34800.43735,21
+314331,2739.292629,134668.6251,36181.96175,21
+314332,2755.021069,134818.6312,34168.4332,21
+314333,2612.773117,134417.6361,34872.94979,21
+314334,2857.010342,134693.1146,35577.71911,21
+314335,2628.501725,134361.113,34921.28228,21
+314336,2739.292485,134693.1447,34262.2213,21
+314337,2738.687262,134426.4131,34968.61065,21
+314338,2755.021174,134187.9603,34992.44869,21
+314339,2612.773121,134460.2571,33646.20928,21
+314340,2738.687218,133922.1406,35039.15565,21
+314341,0,72012.79772,0,21
+314342,0,68243.92863,0,21
+314343,0,67387.46598,0,21
+314344,0,66703.00929,0,21
+314345,0,65711.2885,0,21
+314346,0,65383.66342,0,21
+314347,0,64432.03778,0,21
+314348,0,63933.4393,0,21
+314349,0,63431.93228,0,21
+314350,0,62693.08176,0,21
+314351,0,62505.81439,0,21
+314352,0,61426.59019,0,21
+314353,0,61248.19857,0,21
+314354,0,60648.74417,0,21
+314355,0,60168.02574,0,21
+314356,0,59593.72893,0,21
+314357,0,59384.48199,0,21
+314358,0,58561.23012,0,21
+314359,0,58235.02458,0,21
+314360,0,57495.57387,0,21
+314361,0,57458.98453,0,21
+314362,0,56979.42539,0,21
+314363,0,56202.46573,0,21
+314364,0,55956.99485,0,21
+314365,0,55371.5144,0,21
+314366,0,55296.30224,0,21
+314367,0,54461.2558,0,21
+314368,0,54173.56645,0,21
+314369,0,53976.04789,0,21
+314370,0,53280.51728,0,21
+314371,0,53024.26473,0,21
+314372,0,52447.65429,0,21
+314373,0,52199.33135,0,21
+314374,0,51719.3683,0,21
+314375,0,51290.80769,0,21
+314376,0,50915.07143,0,21
+314377,0,50239.8074,0,21
+314378,0,50141.2413,0,21
+314379,0,49581.94741,0,21
+314380,0,49228.06355,0,21
+314381,0,48902.13799,0,21
+314382,0,48172.76743,0,21
+314383,0,48130.95439,0,21
+314384,0,47707.59411,0,21
+314385,0,47083.11483,0,21
+314386,0,46810.31224,0,21
+314387,0,46185.65754,0,21
+314388,0,46375.7383,0,21
+314389,0,45365.58395,0,21
+314390,0,45294.66601,0,21
+314391,0,44974.54116,0,21
+314392,0,44443.6356,0,21
+314393,0,44064.98648,0,21
+314394,0,43699.63162,0,21
+314395,0,43166.59577,0,21
+314396,0,43433.56999,0,21
+314397,0,42354.65748,0,21
+314398,0,42158.40839,0,21
+314399,0,41964.08138,0,21
+314400,0,41614.63269,0,21
+314401,0,40855.20559,0,21
+314402,0,40962.54934,0,21
+314403,0,40444.086,0,21
+314404,0,39795.95875,0,21
+314405,0,39945.04251,0,21
+314406,0,39115.00301,0,21
+314407,0,39044.42152,0,21
+314408,0,38521.93858,0,21
+314409,0,38352.02047,0,21
+314410,0,37807.44381,0,21
+314411,0,37625.80215,0,21
+314412,0,37204.9747,0,21
+314413,0,37055.81752,0,21
+314414,0,36255.83395,0,21
+314415,0,36409.17319,0,21
+314416,0,35942.80907,0,21
+314417,0,35682.8588,0,21
+314418,0,35057.5317,0,21
+314419,0,35303.8956,0,21
+314420,0,34194.6595,0,21
+314421,0,34634.45551,0,21
+314422,0,33970.52293,0,21
+314423,0,33642.86892,0,21
+314424,0,33223.23016,0,21
+314425,0,33418.42751,0,21
+314426,0,32581.00466,0,21
+314427,0,32402.36216,0,21
+314428,0,32273.63157,0,21
+314429,0,31610.7994,0,21
+314430,0,31770.59251,0,21
+314431,0,31087.88521,0,21
+314432,0,31155.28701,0,21
+314433,0,30596.67445,0,21
+314434,0,30523.97701,0,21
+314435,0,30247.6278,0,21
+314436,0,29869.15212,0,21
+314437,0,29649.39329,0,21
+314438,0,29438.9585,0,21
+314439,0,29064.47537,0,21
+314440,0,29056.13071,0,21
+314441,0,28437.20648,0,21
+314442,0,28719.16402,0,21
+314443,0,27888.52933,0,21
+314444,0,27829.49068,0,21
+314445,0,27844.67176,0,21
+314446,0,27431.71055,0,21
+314447,0,27005.83492,0,21
+314448,0,27175.46383,0,21
+314449,0,26467.81716,0,21
+314450,0,26712.38875,0,21
+314451,0,26106.03765,0,21
+314452,0,25935.56122,0,21
+314453,0,25765.05219,0,21
+314454,0,25633.23525,0,21
+314455,0,25359.25352,0,21
+314456,0,25124.10059,0,21
+314457,0,24677.06778,0,21
+314458,0,24672.72899,0,21
+314459,0,24518.13986,0,21
+314460,0,24430.34886,0,21
+314461,0,29533.76885,0,21
+314462,0,29265.96056,0,21
+314463,0,29278.53987,0,21
+314464,0,29228.52727,0,21
+314465,0,29095.17736,0,21
+314466,0,28848.70895,0,21
+314467,0,28712.91324,0,21
+314468,0,28656.96322,0,21
+314469,0,28478.23364,0,21
+314470,0,28384.65863,0,21
+314471,0,28140.46406,0,21
+314472,0,28140.04384,0,21
+314473,0,27867.25109,0,21
+314474,0,28008.32084,0,21
+314475,0,27438.77325,0,21
+314476,0,27592.66093,0,21
+314477,0,27565.16659,0,21
+314478,0,27052.1479,0,21
+314479,0,27164.13434,0,21
+314480,0,27260.6128,0,21
+314481,0,26539.91266,0,21
+314482,0,26955.57364,0,21
+314483,0,26501.54704,0,21
+314484,0,26228.37449,0,21
+314485,0,26797.55554,0,21
+314486,0,25839.34761,0,21
+314487,0,26151.93082,0,21
+314488,0,25912.71109,0,21
+314489,0,25651.11968,0,21
+314490,0,25859.07984,0,21
+314491,0,25254.97588,0,21
+314492,0,25566.86945,0,21
+314493,0,25117.39668,0,21
+314494,0,25059.07207,0,21
+314495,0,25162.17326,0,21
+314496,0,24552.81951,0,21
+314497,0,25004.7954,0,21
+314498,0,24244.76592,0,21
+314499,0,24401.79244,0,21
+314500,0,24417.47002,0,21
+314501,0,24000.92579,0,21
+314502,0,23881.35287,0,21
+314503,0,23834.89024,0,21
+314504,0,23637.89483,0,21
+314505,0,23653.54156,0,21
+314506,0,23354.69787,0,21
+314507,0,23366.61915,0,21
+314508,0,22973.31276,0,21
+314509,0,23297.09579,0,21
+314510,0,22557.81749,0,21
+314511,0,23046.7428,0,21
+314512,0,22238.60484,0,21
+314513,0,22647.3427,0,21
+314514,0,22240.97352,0,21
+314515,0,22088.66575,0,21
+314516,0,21944.65871,0,21
+314517,0,22057.58017,0,21
+314518,0,21528.55805,0,21
+314519,0,21785.56435,0,21
+314520,0,21239.13872,0,21
+314521,0,16232.74809,0,21
+314522,0,15030.17812,0,21
+314523,0,15600.29755,0,21
+314524,0,15151.17794,0,21
+314525,0,14791.32381,0,21
+314526,0,14644.44781,0,21
+314527,0,14396.13247,0,21
+314528,0,14347.14644,0,21
+314529,0,13941.79281,0,21
+314530,0,13911.38292,0,21
+314531,0,13479.71474,0,21
+314532,0,13480.64415,0,21
+314533,0,13179.54885,0,21
+314534,0,13024.97814,0,21
+314535,0,12853.68068,0,21
+314536,0,12606.47991,0,21
+314537,0,12420.17373,0,21
+314538,0,12255.34955,0,21
+314539,0,11843.63172,0,21
+314540,0,11974.65178,0,21
+314541,0,11638.84454,0,21
+314542,0,11403.80502,0,21
+314543,0,11049.14023,0,21
+314544,0,11223.51741,0,21
+314545,0,10732.64334,0,21
+314546,0,10638.07672,0,21
+314547,0,10575.21943,0,21
+314548,0,10002.15663,0,21
+314549,0,10010.77236,0,21
+314550,0,9938.04335,0,21
+314551,0,9577.159736,0,21
+314552,0,9345.559759,0,21
+314553,0,9344.813463,0,21
+314554,0,8923.736986,0,21
+314555,0,8882.432256,0,21
+314556,0,8562.093841,0,21
+314557,0,8319.609589,0,21
+314558,0,8352.648883,0,21
+314559,0,7828.32075,0,21
+314560,0,7874.741277,0,21
+314561,0,7504.906938,0,21
+314562,0,7457.723181,0,21
+314563,0,7089.677967,0,21
+314564,0,6974.964666,0,21
+314565,0,6623.429353,0,21
+314566,0,6770.594783,0,21
+314567,0,6434.299516,0,21
+314568,0,6402.063372,0,21
+314569,0,6212.892841,0,21
+314570,0,6196.340958,0,21
+314571,0,6031.085656,0,21
+314572,0,5840.365638,0,21
+314573,0,5823.766284,0,21
+314574,0,5616.440088,0,21
+314575,0,5606.386941,0,21
+314576,0,5280.83531,0,21
+314577,0,5407.282513,0,21
+314578,0,5044.673602,0,21
+314579,0,5045.204897,0,21
+314580,0,4842.996996,0,21
+314581,0,17235.31622,0,21
+314582,0,20899.98489,0,21
+314583,0,23234.34645,0,21
+314584,0,21174.03607,0,21
+314585,0,21380.24875,0,21
+314586,0,21840.4804,0,21
+314587,0,21340.82192,0,21
+314588,0,21733.09736,0,21
+314589,0,21065.80436,0,21
+314590,0,21450.50227,0,21
+314591,0,21411.53113,0,21
+314592,0,20939.46895,0,21
+314593,0,21167.92679,0,21
+314594,0,21153.04167,0,21
+314595,0,20899.8956,0,21
+314596,0,21018.92063,0,21
+314597,0,20852.78837,0,21
+314598,0,20774.63092,0,21
+314599,0,20718.93493,0,21
+314600,0,20570.33989,0,21
+314601,0,20497.29652,0,21
+314602,0,20569.89541,0,21
+314603,0,20450.02339,0,21
+314604,0,20396.83168,0,21
+314605,0,20069.15784,0,21
+314606,0,20388.81838,0,21
+314607,0,19896.05988,0,21
+314608,0,20284.63195,0,21
+314609,0,19745.67385,0,21
+314610,0,19856.20442,0,21
+314611,0,19738.12689,0,21
+314612,0,19164.93121,0,21
+314613,0,19149.4245,0,21
+314614,0,18505.56271,0,21
+314615,0,18700.97835,0,21
+314616,0,17647.71568,0,21
+314617,0,17759.66384,0,21
+314618,0,17337.08453,0,21
+314619,0,17161.46044,0,21
+314620,0,16197.1667,0,21
+314621,0,16600.17712,0,21
+314622,0,15366.66893,0,21
+314623,0,15574.30061,0,21
+314624,0,15011.41398,0,21
+314625,0,14600.80511,0,21
+314626,0,14127.29495,0,21
+314627,0,13995.89789,0,21
+314628,0,13072.96025,0,21
+314629,0,12951.63305,0,21
+314630,0,12451.1181,0,21
+314631,0,12155.13549,0,21
+314632,0,12065.02772,0,21
+314633,0,11779.79509,0,21
+314634,0,11567.79575,0,21
+314635,0,11100.60552,0,21
+314636,0,11198.32885,0,21
+314637,0,10688.49204,0,21
+314638,0,10683.49996,0,21
+314639,0,10302.02916,0,21
+314640,0,10004.36704,0,21
+314641,0,1306.66806,0,21
+314642,0,1193.490035,0,21
+314643,0,1147.661256,0,21
+314644,0,1053.723038,0,21
+314645,0,1018.62928,0,21
+314646,0,942.0000196,0,21
+314647,0,858.5962707,0,21
+314648,0,810.2044531,0,21
+314649,0,743.559768,0,21
+314650,0,679.8571606,0,21
+314651,0,608.4597973,0,21
+314652,0,526.7258649,0,21
+314653,0,507.5676856,0,21
+314654,0,417.9576652,0,21
+314655,0,398.4804244,0,21
+314656,0,351.7488565,0,21
+314657,0,351.16838,0,21
+314658,0,283.255724,0,21
+314659,0,284.5909948,0,21
+314660,0,225.1347776,0,21
+314661,0,204.3534018,0,21
+314662,0,165.991275,0,21
+314663,0,144.6855799,0,21
+314664,0,114.249589,0,21
+314665,0,73.17424726,0,21
+314666,0,73.17424756,0,21
+314667,0,42.77683763,0,21
+314668,0,42.77683773,0,21
+314669,0,11.16970784,0,21
+314670,0,0,0,21
+314671,0,0,0,21
+314672,0,0,0,21
+314673,0,0,0,21
+314674,0,0,0,21
+314675,0,0,0,21
+314676,0,0,0,21
+314677,0,0,0,21
+314678,0,0,0,21
+314679,0,0,0,21
+314680,0,0,0,21
+314681,0,0,0,21
+314682,0,0,0,21
+314683,0,0,0,21
+314684,0,0,0,21
+314685,0,0,0,21
+314686,0,0,0,21
+314687,0,0,0,21
+314688,0,0,0,21
+314689,0,0,0,21
+314690,0,0,0,21
+314691,0,0,0,21
+314692,0,0,0,21
+314693,0,0,0,21
+314694,0,0,0,21
+314695,0,0,0,21
+314696,0,0,0,21
+314697,0,0,0,21
+314698,0,0,0,21
+314699,0,0,0,21
+314700,0,0,0,21
+314701,0,0,0,21
+314702,0,0,0,21
+314703,0,0,0,21
+314704,0,0,0,21
+314705,0,0,0,21
+314706,0,0,0,21
+314707,0,0,0,21
+314708,0,0,0,21
+314709,0,0,0,21
+314710,0,0,0,21
+314711,0,0,0,21
+314712,0,0,0,21
+314713,0,0,0,21
+314714,0,0,0,21
+314715,0,0,0,21
+314716,0,0,0,21
+314717,0,0,0,21
+314718,0,0,0,21
+314719,0,0,0,21
+314720,0,0,0,21
+314721,0,0,0,21
+314722,0,0,0,21
+314723,0,0,0,21
+314724,0,0,0,21
+314725,0,0,0,21
+314726,0,0,0,21
+314727,0,0,0,21
+314728,0,0,0,21
+314729,0,0,0,21
+314730,0,0,0,21
+314731,0,0,0,21
+314732,0,0,0,21
+314733,0,0,0,21
+314734,0,0,0,21
+314735,0,0,0,21
+314736,0,0,0,21
+314737,0,0,0,21
+314738,0,0,0,21
+314739,0,0,0,21
+314740,0,0,0,21
+314741,0,0,0,21
+314742,0,0,0,21
+314743,0,0,0,21
+314744,0,0,0,21
+314745,0,0,0,21
+314746,0,0,0,21
+314747,0,0,0,21
+314748,0,0,0,21
+314749,0,0,0,21
+314750,0,0,0,21
+314751,0,0,0,21
+314752,0,0,0,21
+314753,0,0,0,21
+314754,0,0,0,21
+314755,0,0,0,21
+314756,0,0,0,21
+314757,0,0,0,21
+314758,0,0,0,21
+314759,0,0,0,21
+314760,0,0,0,21
+314761,0,0,0,21
+314762,0,0,0,21
+314763,0,0,0,21
+314764,0,0,0,21
+314765,0,0,0,21
+314766,0,0,0,21
+314767,0,0,0,21
+314768,0,0,0,21
+314769,0,0,0,21
+314770,0,0,0,21
+314771,0,0,0,21
+314772,0,0,0,21
+314773,0,0,0,21
+314774,0,0,0,21
+314775,0,0,0,21
+314776,0,0,0,21
+314777,0,0,0,21
+314778,0,0,0,21
+314779,0,0,0,21
+314780,0,0,0,21
+314781,0,0,0,21
+314782,0,0,0,21
+314783,0,0,0,21
+314784,0,0,0,21
+314785,0,0,0,21
+314786,0,0,0,21
+314787,0,0,0,21
+314788,0,0,0,21
+314789,0,0,0,21
+314790,0,0,0,21
+314791,0,0,0,21
+314792,0,0,0,21
+314793,0,0,0,21
+314794,0,0,0,21
+314795,0,0,0,21
+314796,0,0,0,21
+314797,0,0,0,21
+314798,0,0,0,21
+314799,0,0,0,21
+314800,0,0,0,21
+314801,0,0,0,21
+314802,0,0,0,21
+314803,0,0,0,21
+314804,0,0,0,21
+314805,0,0,0,21
+314806,0,0,0,21
+314807,0,0,0,21
+314808,0,0,0,21
+314809,0,0,0,21
+314810,0,0,0,21
+314811,0,0,0,21
+314812,0,0,0,21
+314813,0,0,0,21
+314814,0,0,0,21
+314815,0,0,0,21
+314816,0,0,0,21
+314817,0,0,0,21
+314818,0,0,0,21
+314819,0,0,0,21
+314820,0,0,0,21
+314821,0,0,0,21
+314822,0,0,0,21
+314823,0,0,0,21
+314824,0,0,0,21
+314825,0,0,0,21
+314826,0,0,0,21
+314827,0,0,0,21
+314828,0,0,0,21
+314829,0,0,0,21
+314830,0,0,0,21
+314831,0,0,0,21
+314832,0,0,0,21
+314833,0,0,0,21
+314834,0,0,0,21
+314835,0,0,0,21
+314836,0,0,0,21
+314837,0,0,0,21
+314838,0,0,0,21
+314839,0,0,0,21
+314840,0,0,0,21
+314841,0,0,0,21
+314842,0,0,0,21
+314843,0,0,0,21
+314844,0,0,0,21
+314845,0,0,0,21
+314846,0,0,0,21
+314847,0,0,0,21
+314848,0,0,0,21
+314849,0,0,0,21
+314850,0,0,0,21
+314851,0,0,0,21
+314852,0,0,0,21
+314853,0,0,0,21
+314854,0,0,0,21
+314855,0,0,0,21
+314856,0,0,0,21
+314857,0,0,0,21
+314858,0,0,0,21
+314859,0,0,0,21
+314860,0,0,0,21
+314861,0,0,0,21
+314862,0,0,0,21
+314863,0,0,0,21
+314864,0,0,0,21
+314865,0,0,0,21
+314866,0,0,0,21
+314867,0,0,0,21
+314868,0,0,0,21
+314869,0,0,0,21
+314870,0,0,0,21
+314871,0,0,0,21
+314872,0,0,0,21
+314873,0,0,0,21
+314874,0,0,0,21
+314875,0,0,0,21
+314876,0,0,0,21
+314877,0,0,0,21
+314878,0,0,0,21
+314879,0,0,0,21
+314880,0,0,0,21
+314881,0,0,0,21
+314882,0,0,0,21
+314883,0,0,0,21
+314884,0,0,0,21
+314885,0,0,0,21
+314886,0,0,0,21
+314887,0,0,0,21
+314888,0,0,0,21
+314889,0,0,0,21
+314890,0,0,0,21
+314891,0,0,0,21
+314892,0,0,0,21
+314893,0,0,0,21
+314894,0,0,0,21
+314895,0,0,0,21
+314896,0,0,0,21
+314897,0,0,0,21
+314898,0,0,0,21
+314899,0,0,0,21
+314900,0,0,0,21
+314901,0,0,0,21
+314902,0,0,0,21
+314903,0,0,0,21
+314904,0,0,0,21
+314905,0,0,0,21
+314906,0,0,0,21
+314907,0,0,0,21
+314908,0,0,0,21
+314909,0,0,0,21
+314910,0,0,0,21
+314911,0,0,0,21
+314912,0,0,0,21
+314913,0,0,0,21
+314914,0,0,0,21
+314915,0,1036.583725,0,21
+314916,0,1036.583713,0,21
+314917,0,1036.5837,0,21
+314918,0,1199.90479,0,21
+314919,0,1607.009563,0,21
+314920,0,1646.999961,0,21
+314921,0,1944.394306,0,21
+314922,0,1895.227723,0,21
+314923,0,2150.702025,0,21
+314924,0,2471.550447,0,21
+314925,0,2345.353498,0,21
+314926,0,2664.25203,0,21
+314927,0,2664.251949,0,21
+314928,0,3008.190123,0,21
+314929,0,3026.95678,0,21
+314930,0,3169.46288,0,21
+314931,0,3348.642574,0,21
+314932,0,3517.658277,0,21
+314933,0,3536.100346,0,21
+314934,0,3835.083533,0,21
+314935,0,3853.42817,0,21
+314936,0,4020.238063,0,21
+314937,0,4186.363764,0,21
+314938,0,4186.363568,0,21
+314939,0,4516.64993,0,21
+314940,0,4507.662613,0,21
+314941,0,7958.587377,0,21
+314942,0,8537.740863,0,21
+314943,0,8689.973872,0,21
+314944,0,8706.57245,0,21
+314945,0,9127.929784,0,21
+314946,0,9009.82063,0,21
+314947,0,9295.191205,0,21
+314948,0,9445.589233,0,21
+314949,0,9445.589604,0,21
+314950,0,9745.330197,0,21
+314951,0,9745.329686,0,21
+314952,0,10043.68828,0,21
+314953,0,10027.4502,0,21
+314954,0,10208.51149,0,21
+314955,0,10324.54085,0,21
+314956,0,10620.30632,0,21
+314957,0,10356.80566,0,21
+314958,0,10914.77338,0,21
+314959,0,10767.70022,0,21
+314960,0,10946.71397,0,21
+314961,0,11192.01712,0,21
+314962,0,11093.39008,0,21
+314963,0,11514.77832,0,21
+314964,0,11602.75987,0,21
+314965,0,11676.43153,0,21
+314966,0,11806.10939,0,21
+314967,0,11995.41496,0,21
+314968,0,12023.4347,0,21
+314969,0,12281.47237,0,21
+314970,0,12349.80342,0,21
+314971,0,12512.37497,0,21
+314972,0,12658.93752,0,21
+314973,0,12820.75963,0,21
+314974,0,13015.64782,0,21
+314975,0,13145.54475,0,21
+314976,0,13337.16959,0,21
+314977,0,13356.94263,0,21
+314978,0,13657.25024,0,21
+314979,0,13947.19404,0,21
+314980,0,13724.93638,0,21
+314981,0,14279.9094,0,21
+314982,0,14153.99267,0,21
+314983,0,15169.4892,0,21
+314984,0,16240.8447,0,21
+314985,0,15840.65441,0,21
+314986,0,16723.66636,0,21
+314987,0,16758.96718,0,21
+314988,0,17523.8267,0,21
+314989,0,17540.49194,0,21
+314990,0,18266.4457,0,21
+314991,0,18314.56844,0,21
+314992,0,19032.94084,0,21
+314993,0,19049.36086,0,21
+314994,0,19663.24659,0,21
+314995,0,19951.97902,0,21
+314996,0,20243.76645,0,21
+314997,0,20980.63405,0,21
+314998,0,21047.14075,0,21
+314999,0,21429.34649,0,21
+315000,0,22109.72486,0,21
+315001,0,22176.83505,0,21
+315002,0,22883.91999,0,21
+315003,0,23158.01253,0,21
+315004,0,23912.68302,0,21
+315005,0,24119.7184,0,21
+315006,0,24601.27677,0,21
+315007,0,25225.61822,0,21
+315008,0,25326.55573,0,21
+315009,0,26155.33592,0,21
+315010,0,26150.7807,0,21
+315011,0,26886.72604,0,21
+315012,0,27221.87275,0,21
+315013,0,27571.89656,0,21
+315014,0,28281.34072,0,21
+315015,0,28267.64024,0,21
+315016,0,29128.48055,0,21
+315017,0,29305.35744,0,21
+315018,0,29804.38329,0,21
+315019,0,30132.67133,0,21
+315020,0,30717.02128,0,21
+315021,0,30956.29047,0,21
+315022,0,31612.80482,0,21
+315023,0,31875.86359,0,21
+315024,0,32198.40851,0,21
+315025,0,34934.61664,0,21
+315026,0,35971.63725,0,21
+315027,0,35994.25442,0,21
+315028,0,37105.99728,0,21
+315029,0,38296.83093,0,21
+315030,0,38717.36456,0,21
+315031,0,39238.35159,0,21
+315032,0,40399.30493,0,21
+315033,0,40537.41327,0,21
+315034,0,41101.65862,0,21
+315035,0,42036.07725,0,21
+315036,0,42374.1772,0,21
+315037,0,42628.57704,0,21
+315038,0,43573.54229,0,21
+315039,0,43811.06847,0,21
+315040,0,44111.81179,0,21
+315041,0,44926.28418,0,21
+315042,0,45281.14152,0,21
+315043,0,45907.5597,0,21
+315044,0,45934.76178,0,21
+315045,0,46895.76899,0,21
+315046,0,47182.99421,0,21
+315047,0,47900.91494,0,21
+315048,0,47695.03869,0,21
+315049,0,48902.33796,0,21
+315050,0,48672.34461,0,21
+315051,0,49617.15636,0,21
+315052,0,49803.75798,0,21
+315053,0,49938.51487,0,21
+315054,0,50941.65812,0,21
+315055,0,50930.21338,0,21
+315056,0,51152.61479,0,21
+315057,0,51824.89863,0,21
+315058,0,51881.91948,0,21
+315059,0,52460.6861,0,21
+315060,0,52847.60384,0,21
+315061,0,54798.18926,0,21
+315062,0,55592.23283,0,21
+315063,0,56147.96891,0,21
+315064,0,56784.52898,0,21
+315065,0,56638.48654,0,21
+315066,0,57668.29637,0,21
+315067,0,57672.02859,0,21
+315068,0,58178.2152,0,21
+315069,0,58657.5729,0,21
+315070,0,58772.68132,0,21
+315071,0,59438.98976,0,21
+315072,0,59851.79061,0,21
+315073,0,59950.56258,0,21
+315074,0,60534.05345,0,21
+315075,0,60769.16968,0,21
+315076,0,61121.17989,0,21
+315077,0,61484.73661,0,21
+315078,0,61831.06894,0,21
+315079,0,62287.52169,0,21
+315080,0,62646.50832,0,21
+315081,0,62898.8447,0,21
+315082,0,63514.64293,0,21
+315083,0,63587.50639,0,21
+315084,0,63786.2034,0,21
+315085,0,64388.30774,0,21
+315086,0,64509.6561,0,21
+315087,0,64784.90881,0,21
+315088,0,65218.37914,0,21
+315089,0,65433.64705,0,21
+315090,0,65723.79207,0,21
+315091,0,66126.2959,0,21
+315092,0,66336.59991,0,21
+315093,0,66600.62326,0,21
+315094,0,67358.05932,0,21
+315095,0,67368.91921,0,21
+315096,0,67767.22375,0,21
+315097,0,68147.72751,0,21
+315098,0,68710.67424,0,21
+315099,0,68986.34381,0,21
+315100,0,69247.64028,0,21
+315101,0,69601.66257,0,21
+315102,0,70376.63517,0,21
+315103,0,70080.28001,0,21
+315104,0,70895.54464,0,21
+315105,0,71142.40268,0,21
+315106,0,71633.11923,0,21
+315107,0,71695.45325,0,21
+315108,0,72212.74742,0,21
+315109,0,72689.37752,0,21
+315110,0,72793.1787,0,21
+315111,0,73328.63791,0,21
+315112,0,73628.62326,0,21
+315113,0,74044.50945,0,21
+315114,0,74105.9028,0,21
+315115,0,74747.55741,0,21
+315116,0,75094.59757,0,21
+315117,0,75161.16823,0,21
+315118,0,75610.81272,0,21
+315119,0,76139.30644,0,21
+315120,0,76215.26987,0,21
+315121,0,76729.50769,0,21
+315122,0,77100.2564,0,21
+315123,0,77411.55875,0,21
+315124,0,77812.31538,0,21
+315125,0,78153.11325,0,21
+315126,0,78504.66713,0,21
+315127,0,78746.37056,0,21
+315128,0,79358.39227,0,21
+315129,0,79521.28498,0,21
+315130,0,80011.37648,0,21
+315131,0,80457.69677,0,21
+315132,0,80468.72456,0,21
+315133,0,81115.56534,0,21
+315134,0,81516.20973,0,21
+315135,0,81434.58739,0,21
+315136,0,82378.74643,0,21
+315137,0,82502.75595,0,21
+315138,0,82762.63402,0,21
+315139,0,83415.18807,0,21
+315140,0,83572.11562,0,21
+315141,0,83881.65364,0,21
+315142,0,84365.82242,0,21
+315143,0,84589.99987,0,21
+315144,0,85045.84363,0,21
+315145,0,85308.23306,0,21
+315146,0,85720.59347,0,21
+315147,0,85991.98926,0,21
+315148,0,86644.28735,0,21
+315149,0,86936.09213,0,21
+315150,0,87234.14431,0,21
+315151,0,87438.30423,0,21
+315152,0,87710.48683,0,21
+315153,0,88360.90185,0,21
+315154,855.2932339,88248.97803,0,21
+315155,719.1560635,88621.20478,0,21
+315156,719.1560661,89319.53246,0,21
+315157,990.0038828,89122.8396,0,21
+315158,1123.457914,89583.97111,0,21
+315159,1123.457972,90229.46541,0,21
+315160,1387.089073,89793.20292,0,21
+315161,1255.78538,90870.72857,0,21
+315162,1646.945511,90584.166,0,21
+315163,1517.452606,90995.70404,0,21
+315164,1775.626326,91654.36458,0,21
+315165,1775.62632,91253.55285,0,21
+315166,2030.745173,92095.15003,0,21
+315167,1903.54498,92379.70545,0,21
+315168,2283.137089,92206.40008,0,21
+315169,2157.264714,92787.93183,0,21
+315170,2283.137194,93100.52675,0,21
+315171,2533.057392,93070.01783,0,21
+315172,2533.057306,93548.97582,0,21
+315173,2533.057282,93999.85747,0,21
+315174,2780.710161,93583.65105,0,21
+315175,2903.739835,94818.68588,0,21
+315176,2780.710158,94352.04025,0,21
+315177,3148.297039,94881.88596,0,21
+315178,3026.263115,94927.66028,0,21
+315179,3269.856979,95403.8528,0,21
+315180,3269.856978,95647.53959,0,21
+315181,0,0,0,21
+315182,0,0,0,21
+315183,0,0,0,21
+315184,0,0,0,21
+315185,328306.4594,362357.1604,898796.6143,21
+315186,0,0,0,21
+315187,0,0,0,21
+315188,0,0,0,21
+315189,0,0,0,21
+315190,0,0,0,21
+315191,0,0,0,21
+315192,0,0,0,21
+315193,0,0,0,21
+315194,0,0,0,21
+315195,0,0,0,21
+315196,0,0,0,21
+315197,0,0,0,21
+315198,0,0,0,21
+315199,0,0,0,21
+315200,0,0,0,21
+315201,0,0,0,21
+315202,0,0,0,21
+315203,0,0,0,21
+315204,0,0,0,21
+315205,0,0,0,21
+315206,0,0,0,21
+315207,0,0,0,21
+315208,0,0,0,21
+315209,0,0,0,21
+315210,0,0,0,21
+315211,0,0,0,21
+315212,0,0,0,21
+315213,0,0,0,21
+315214,0,0,0,21
+315215,0,0,0,21
+315216,0,0,0,21
+315217,0,0,0,21
+315218,0,0,0,21
+315219,330472.7796,366836.7543,878540.1563,21
+315220,0,0,0,21
+315221,0,0,0,21
+315222,0,0,0,21
+315223,0,0,0,21
+315224,0,0,0,21
+315225,0,0,0,21
+315226,0,0,0,21
+315227,0,0,0,21
+315228,0,0,0,21
+315229,0,0,0,21
+315230,0,0,0,21
+315231,0,0,0,21
+315232,0,0,0,21
+315233,0,0,0,21
+315234,0,0,0,21
+315235,0,0,0,21
+315236,0,0,0,21
+315237,0,0,0,21
+315238,0,0,0,21
+315239,0,0,0,21
+315240,0,0,0,15.6
+315241,0,0,0,15.6
+315242,0,0,0,15.6
+315243,0,0,0,15.6
+315244,0,0,0,15.6
+315245,0,0,0,15.6
+315246,0,0,0,15.6
+315247,0,0,0,15.6
+315248,0,0,0,15.6
+315249,0,0,0,15.6
+315250,0,0,0,15.6
+315251,0,0,0,15.6
+315252,0,0,0,15.6
+315253,329978.6651,367309.0858,858977.1851,15.6
+315254,0,0,0,15.6
+315255,0,0,0,15.6
+315256,0,0,0,15.6
+315257,0,0,0,15.6
+315258,0,0,0,15.6
+315259,0,0,0,15.6
+315260,0,0,0,15.6
+315261,0,0,0,15.6
+315262,0,0,0,15.6
+315263,0,0,0,15.6
+315264,0,0,0,15.6
+315265,0,0,0,15.6
+315266,0,0,0,15.6
+315267,0,0,0,15.6
+315268,0,0,0,15.6
+315269,0,0,0,15.6
+315270,0,0,0,15.6
+315271,0,0,0,15.6
+315272,0,0,0,15.6
+315273,0,0,0,15.6
+315274,0,0,0,15.6
+315275,0,0,0,15.6
+315276,0,0,0,15.6
+315277,0,0,0,15.6
+315278,0,0,0,15.6
+315279,0,0,0,15.6
+315280,0,0,0,15.6
+315281,0,0,0,15.6
+315282,0,0,0,15.6
+315283,0,0,0,15.6
+315284,0,0,0,15.6
+315285,0,0,0,15.6
+315286,0,0,0,15.6
+315287,332096.6891,0,841347.1669,15.6
+315288,0,367494.6121,0,15.6
+315289,0,0,0,15.6
+315290,0,0,0,15.6
+315291,0,0,0,15.6
+315292,0,0,0,15.6
+315293,0,0,0,15.6
+315294,0,0,0,15.6
+315295,0,0,0,15.6
+315296,0,0,0,15.6
+315297,0,0,0,15.6
+315298,0,0,0,15.6
+315299,0,0,0,15.6
+315300,0,0,0,15.6
+315301,0,0,0,15.6
+315302,0,0,0,15.6
+315303,0,0,0,15.6
+315304,0,0,0,15.6
+315305,0,0,0,15.6
+315306,0,0,0,15.6
+315307,0,0,0,15.6
+315308,0,0,0,15.6
+315309,0,0,0,15.6
+315310,0,0,0,15.6
+315311,0,0,0,15.6
+315312,0,0,0,15.6
+315313,0,0,0,15.6
+315314,0,0,0,15.6
+315315,0,0,0,15.6
+315316,0,0,0,15.6
+315317,0,0,0,15.6
+315318,0,0,0,15.6
+315319,0,0,0,15.6
+315320,0,0,0,15.6
+315321,333853.5482,0,825629.415,15.6
+315322,0,0,0,15.6
+315323,0,367625.3571,0,15.6
+315324,0,0,0,15.6
+315325,0,0,0,15.6
+315326,0,0,0,15.6
+315327,0,0,0,15.6
+315328,0,0,0,15.6
+315329,0,0,0,15.6
+315330,0,0,0,15.6
+315331,0,0,0,15.6
+315332,0,0,0,15.6
+315333,0,0,0,15.6
+315334,0,0,0,15.6
+315335,0,0,0,15.6
+315336,0,0,0,15.6
+315337,0,0,0,15.6
+315338,0,0,0,15.6
+315339,0,0,0,15.6
+315340,0,0,0,15.6
+315341,0,0,0,15.6
+315342,0,0,0,15.6
+315343,0,0,0,15.6
+315344,0,0,0,15.6
+315345,0,0,0,15.6
+315346,0,0,0,15.6
+315347,0,0,0,15.6
+315348,0,0,0,15.6
+315349,0,0,0,15.6
+315350,0,0,0,15.6
+315351,0,0,0,15.6
+315352,0,0,0,15.6
+315353,0,0,0,15.6
+315354,0,0,0,15.6
+315355,0,0,811037.9672,15.6
+315356,333030.775,0,0,15.6
+315357,0,0,0,15.6
+315358,0,363443.3966,0,15.6
+315359,0,0,0,15.6
+315360,0,0,0,15.6
+315361,0,0,0,15.6
+315362,0,0,0,15.6
+315363,0,0,0,15.6
+315364,0,0,0,15.6
+315365,0,0,0,15.6
+315366,0,0,0,15.6
+315367,0,0,0,15.6
+315368,0,0,0,15.6
+315369,0,0,0,15.6
+315370,0,0,0,15.6
+315371,0,0,0,15.6
+315372,0,0,0,15.6
+315373,0,0,0,15.6
+315374,0,0,0,15.6
+315375,0,0,0,15.6
+315376,0,0,0,15.6
+315377,0,0,0,15.6
+315378,0,0,0,15.6
+315379,0,0,0,15.6
+315380,0,0,0,15.6
+315381,0,0,0,15.6
+315382,0,0,0,15.6
+315383,0,0,0,15.6
+315384,0,0,0,15.6
+315385,0,0,0,15.6
+315386,0,0,0,15.6
+315387,0,0,0,15.6
+315388,0,0,0,15.6
+315389,0,0,797881.5602,15.6
+315390,0,0,0,15.6
+315391,334846.6232,0,0,15.6
+315392,0,0,0,15.6
+315393,0,367660.7098,0,15.6
+315394,0,0,0,15.6
+315395,0,0,0,15.6
+315396,0,0,0,15.6
+315397,0,0,0,15.6
+315398,0,0,0,15.6
+315399,0,0,0,15.6
+315400,0,0,0,15.6
+315401,0,0,0,15.6
+315402,0,0,0,15.6
+315403,0,0,0,15.6
+315404,0,0,0,15.6
+315405,0,0,0,15.6
+315406,0,0,0,15.6
+315407,0,0,0,15.6
+315408,0,0,0,15.6
+315409,0,0,0,15.6
+315410,0,0,0,15.6
+315411,0,0,0,15.6
+315412,0,0,0,15.6
+315413,0,0,0,15.6
+315414,0,0,0,15.6
+315415,0,0,0,15.6
+315416,0,0,0,15.6
+315417,0,0,0,15.6
+315418,0,0,0,15.6
+315419,0,0,0,15.6
+315420,0,0,0,15.6
+315421,0,0,0,15.6
+315422,0,0,0,15.6
+315423,0,0,785490.3965,15.6
+315424,0,0,0,15.6
+315425,0,0,0,15.6
+315426,334507.1356,0,0,15.6
+315427,0,0,0,15.6
+315428,0,367467.9618,0,15.6
+315429,0,0,0,15.6
+315430,0,0,0,15.6
+315431,0,0,0,15.6
+315432,0,0,0,15.6
+315433,0,0,0,15.6
+315434,0,0,0,15.6
+315435,0,0,0,15.6
+315436,0,0,0,15.6
+315437,0,0,0,15.6
+315438,0,0,0,15.6
+315439,0,0,0,15.6
+315440,0,0,0,15.6
+315441,0,0,0,15.6
+315442,0,0,0,15.6
+315443,0,0,0,15.6
+315444,0,0,0,15.6
+315445,0,0,0,15.6
+315446,0,0,0,15.6
+315447,0,0,0,15.6
+315448,0,0,0,15.6
+315449,0,0,0,15.6
+315450,0,0,0,15.6
+315451,0,0,0,15.6
+315452,0,0,0,15.6
+315453,0,0,0,15.6
+315454,0,0,0,15.6
+315455,0,0,0,15.6
+315456,0,0,0,15.6
+315457,0,0,774286.0259,15.6
+315458,0,0,0,15.6
+315459,0,0,0,15.6
+315460,0,0,0,15.6
+315461,335329.8847,0,0,15.6
+315462,0,0,0,15.6
+315463,0,367679.8725,0,15.6
+315464,0,0,0,15.6
+315465,0,0,0,15.6
+315466,0,0,0,15.6
+315467,0,0,0,15.6
+315468,0,0,0,15.6
+315469,0,0,0,15.6
+315470,0,0,0,15.6
+315471,0,0,0,15.6
+315472,0,0,0,15.6
+315473,0,0,0,15.6
+315474,0,0,0,15.6
+315475,0,0,0,15.6
+315476,0,0,0,15.6
+315477,0,0,0,15.6
+315478,0,0,0,15.6
+315479,0,0,0,15.6
+315480,0,0,0,15.6
+315481,0,0,0,15.6
+315482,0,0,0,15.6
+315483,0,0,0,15.6
+315484,0,0,0,15.6
+315485,0,0,0,15.6
+315486,0,0,0,15.6
+315487,0,0,0,15.6
+315488,0,0,0,15.6
+315489,0,0,0,15.6
+315490,0,0,0,15.6
+315491,0,0,763555.7484,15.6
+315492,0,0,0,15.6
+315493,0,0,0,15.6
+315494,0,0,0,15.6
+315495,0,0,0,15.6
+315496,336561.3346,0,0,15.6
+315497,0,0,0,15.6
+315498,0,365833.5555,0,15.6
+315499,0,0,0,15.6
+315500,0,0,0,15.6
+315501,0,0,0,15.6
+315502,0,0,0,15.6
+315503,0,0,0,15.6
+315504,0,0,0,15.6
+315505,0,0,0,15.6
+315506,0,0,0,15.6
+315507,0,0,0,15.6
+315508,0,0,0,15.6
+315509,0,0,0,15.6
+315510,0,0,0,15.6
+315511,0,0,0,15.6
+315512,0,0,0,15.6
+315513,0,0,0,15.6
+315514,0,0,0,15.6
+315515,0,0,0,15.6
+315516,0,0,0,15.6
+315517,0,0,0,15.6
+315518,0,0,0,15.6
+315519,0,0,0,15.6
+315520,0,0,0,15.6
+315521,0,0,0,15.6
+315522,0,0,0,15.6
+315523,0,0,0,15.6
+315524,0,0,0,15.6
+315525,0,0,754722.7705,15.6
+315526,0,0,0,15.6
+315527,0,0,0,15.6
+315528,0,0,0,15.6
+315529,0,0,0,15.6
+315530,0,0,0,15.6
+315531,335153.3273,0,0,15.6
+315532,0,0,0,15.6
+315533,0,365176.3242,0,15.6
+315534,0,0,0,15.6
+315535,0,0,0,15.6
+315536,0,0,0,15.6
+315537,0,0,0,15.6
+315538,0,0,0,15.6
+315539,0,0,0,15.6
+315540,0,0,0,15.6
+315541,0,0,0,15.6
+315542,0,0,0,15.6
+315543,0,0,0,15.6
+315544,0,0,0,15.6
+315545,0,0,0,15.6
+315546,0,0,0,15.6
+315547,0,0,0,15.6
+315548,0,0,0,15.6
+315549,0,0,0,15.6
+315550,0,0,0,15.6
+315551,0,0,0,15.6
+315552,0,0,0,15.6
+315553,0,0,0,15.6
+315554,0,0,0,15.6
+315555,0,0,0,15.6
+315556,0,0,0,15.6
+315557,0,0,0,15.6
+315558,0,0,0,15.6
+315559,0,0,746553.1424,15.6
+315560,0,0,0,15.6
+315561,0,0,0,15.6
+315562,0,0,0,15.6
+315563,0,0,0,15.6
+315564,0,0,0,15.6
+315565,336812.6011,0,0,15.6
+315566,0,0,0,15.6
+315567,0,369389.2109,0,15.6
+315568,0,0,0,15.6
+315569,0,0,0,15.6
+315570,0,0,0,15.6
+315571,0,0,0,15.6
+315572,0,0,0,15.6
+315573,0,0,0,15.6
+315574,0,0,0,15.6
+315575,0,0,0,15.6
+315576,0,0,0,15.6
+315577,0,0,0,15.6
+315578,0,0,0,15.6
+315579,0,0,0,15.6
+315580,0,0,0,15.6
+315581,0,0,0,15.6
+315582,0,0,0,15.6
+315583,0,0,0,15.6
+315584,0,0,0,15.6
+315585,0,0,0,15.6
+315586,0,0,0,15.6
+315587,0,0,0,15.6
+315588,0,0,0,15.6
+315589,0,0,0,15.6
+315590,0,0,0,15.6
+315591,0,0,0,15.6
+315592,0,0,0,15.6
+315593,0,0,739390.5496,15.6
+315594,0,0,0,15.6
+315595,0,0,0,15.6
+315596,0,0,0,15.6
+315597,0,0,0,15.6
+315598,0,0,0,15.6
+315599,337006.6466,0,0,15.6
+315600,0,0,0,17.8
+315601,0,369389.3344,0,17.8
+315602,0,0,0,17.8
+315603,0,0,0,17.8
+315604,0,0,0,17.8
+315605,0,0,0,17.8
+315606,0,0,0,17.8
+315607,0,0,0,17.8
+315608,0,0,0,17.8
+315609,0,0,0,17.8
+315610,0,0,0,17.8
+315611,0,0,0,17.8
+315612,0,0,0,17.8
+315613,0,0,0,17.8
+315614,0,0,0,17.8
+315615,0,0,0,17.8
+315616,0,0,0,17.8
+315617,0,0,0,17.8
+315618,0,0,0,17.8
+315619,0,0,0,17.8
+315620,0,0,0,17.8
+315621,0,0,0,17.8
+315622,0,0,0,17.8
+315623,0,0,0,17.8
+315624,0,0,0,17.8
+315625,0,292.9149889,0,17.8
+315626,0,968.9403598,0,17.8
+315627,0,499.9878431,732118.6873,17.8
+315628,0,664.8652562,0,17.8
+315629,0,697.1563285,0,17.8
+315630,0,686.4160859,0,17.8
+315631,0,707.8732948,0,17.8
+315632,0,707.8732482,0,17.8
+315633,335723.1216,707.8732017,0,17.8
+315634,0,729.2388957,0,17.8
+315635,0,370118.6179,0,17.8
+315636,0,729.2387973,0,17.8
+315637,0,750.5150025,0,17.8
+315638,0,739.8878875,0,17.8
+315639,0,750.5148986,0,17.8
+315640,0,771.7035257,0,17.8
+315641,0,750.514795,0,17.8
+315642,0,488.7734612,0,17.8
+315643,0,397.9151128,0,17.8
+315644,0,420.8297229,0,17.8
+315645,0,374.85715,0,17.8
+315646,0,0,0,17.8
+315647,0,0,0,17.8
+315648,0,0,0,17.8
+315649,0,0,0,17.8
+315650,0,16142.23412,0,17.8
+315651,0,30145.349,0,17.8
+315652,0,64952.85608,0,17.8
+315653,0,42002.07869,0,17.8
+315654,0,50997.97617,0,17.8
+315655,0,51597.72884,0,17.8
+315656,0,52257.46854,0,17.8
+315657,0,52686.38664,0,17.8
+315658,0,53161.52122,0,17.8
+315659,0,53462.28846,0,17.8
+315660,0,54298.46522,0,20
+315661,10336.70219,1054482.225,726291.3413,20
+315662,0,10482.38358,0,20
+315663,523.2672144,21498.36259,0,20
+315664,3726.724081,78952.24409,0,20
+315665,3094.495072,232093.0016,0,20
+315666,2599.043989,117141.409,0,20
+315667,2817.949088,151633.4739,0,20
+315668,2856.323676,151783.8839,0,20
+315669,2856.32366,150049.1766,0,20
+315670,14108.75493,151830.0638,0,20
+315671,12058.18451,150783.6227,0,20
+315672,11927.16108,151714.5217,0,20
+315673,12613.41412,151236.3822,0,20
+315674,12976.86085,151551.2902,0,20
+315675,13299.71909,151040.4865,0,20
+315676,13332.68266,151381.0844,0,20
+315677,13554.96161,151885.2328,0,20
+315678,13563.91024,151136.2996,0,20
+315679,13659.12362,151854.414,0,20
+315680,13788.02531,151334.7615,0,20
+315681,15265.60547,151896.8016,0,20
+315682,16284.23698,151616.9215,0,20
+315683,16144.18936,152108.0262,0,20
+315684,16169.07844,152232.1711,0,20
+315685,16760.82171,151938.2226,0,20
+315686,16773.61521,152445.4488,0,20
+315687,17380.35903,152713.5335,0,20
+315688,17380.35892,152517.6821,0,20
+315689,17853.58159,152603.4154,0,20
+315690,18127.09286,153436.128,0,20
+315691,17975.87322,152590.4024,0,20
+315692,17701.28142,152457.9489,0,20
+315693,17128.84669,150629.6495,0,20
+315694,17299.33213,149449.031,0,20
+315695,16703.8871,148972.4368,0,20
+315696,16651.57141,148041.8961,102.8195159,20
+315697,16179.20369,147639.5024,151.4485569,20
+315698,15210.37857,146551.2034,135.3596367,20
+315699,14694.01967,146255.5888,183.3216695,20
+315700,14238.37453,144649.9458,183.3224745,20
+315701,13839.3943,144629.4055,199.1215342,20
+315702,13249.06088,143474.2997,246.0355692,20
+315703,12972.77358,142734.6192,230.4748514,20
+315704,12354.54941,140496.0631,276.9560175,20
+315705,11947.26074,139536.848,276.9579931,20
+315706,11302.0727,138169.1926,307.6228239,20
+315707,10773.93097,137928.034,461.5028262,20
+315708,10469.86095,136555.8736,442.5481118,20
+315709,9927.977248,135774.1806,507.0756234,20
+315710,9235.904919,134820.2211,514.0070233,20
+315711,9044.432097,134368.2311,569.5602428,20
+315712,8196.8409,134263.2002,592.5795829,20
+315713,7959.306457,133185.8642,623.515876,20
+315714,7622.474226,131853.992,662.2479329,20
+315715,7687.522088,1